From 7d102a5040c1d3bada2b896bad33fadee76fc065 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 14:29:33 +0530 Subject: [PATCH 01/12] feat(tools): add administrative area gazetteer builder Resolves an OpenAgriNet AdministrativeAreaReference (codeScheme, areaCode, areaLevel) to a name, parent chain and coordinate via a cached CSV snapshot, so coverageAreas resolution needs no live API or database. Two stages: build_gazetteer.py pulls LGD codes and names (GODL-India) into a dated snapshot: 25,097 rows across Country, State, District, Block and PostalCode. join_geometry.py joins published boundary layers onto those LGD codes and fills latitude, longitude, bbox and provenance. Boundary geometry has two selectable sources. Survey of India is the default because it is openly licensed; --source lgd uses BharatMaps geometry, which resolves Block level as well but is not openly licensed. Every row records which layer supplied its point, and the manifest records the licence. The join keys on LGD codes only, never names: 117 areas join on a stable code while the boundary layer spells the name differently. Points are area-weighted centroids with an interior-point fallback for concave shapes; unmatched rows inherit their parent's point, marked as such in point_method. Standalone build-time utility. Adds no Go package and is not imported by the adapter runtime. Stdlib Python only. See tools/gazetteer/README.md for execution steps, per-source detail, the stored schema, measured coverage and known data-quality outliers. --- tools/gazetteer/.gitignore | 4 + tools/gazetteer/README.md | 422 +++++++++++++++ tools/gazetteer/build_gazetteer.py | 346 +++++++++++++ tools/gazetteer/join_geometry.py | 799 +++++++++++++++++++++++++++++ 4 files changed, 1571 insertions(+) create mode 100644 tools/gazetteer/.gitignore create mode 100644 tools/gazetteer/README.md create mode 100644 tools/gazetteer/build_gazetteer.py create mode 100644 tools/gazetteer/join_geometry.py diff --git a/tools/gazetteer/.gitignore b/tools/gazetteer/.gitignore new file mode 100644 index 00000000..be1ff0e2 --- /dev/null +++ b/tools/gazetteer/.gitignore @@ -0,0 +1,4 @@ +# Generated snapshots and the boundary-layer download cache. Both are +# reproducible by re-running build_gazetteer.py and join_geometry.py, and the +# cache alone is ~500 MB. +data/ diff --git a/tools/gazetteer/README.md b/tools/gazetteer/README.md new file mode 100644 index 00000000..b5e2719b --- /dev/null +++ b/tools/gazetteer/README.md @@ -0,0 +1,422 @@ +# Administrative area gazetteer + +Resolves an OpenAgriNet `AdministrativeAreaReference` to a name, a parent chain +and a coordinate, using a cached CSV instead of a live API call. + +```json +{ "codeScheme": "LGD", "areaCode": "466", "areaLevel": "District" } +``` + +becomes + +``` +LGD,466,District,Ahilyanagar,LGD,27,522,02Sep2026,, +19.205391,74.675231,centroid,73.614375,18.329871,75.582971,19.995188, +SOI_Districts,2023-12-11 +``` + +(one line in the file; wrapped here to fit) + +`coverageAreas` in the OpenAgriNet schema packs is a `oneOf` between a coded +`AdministrativeAreaReference` and a Beckn `GeoJSONGeometry`. Publishers prefer +the coded form: it is short, stable and human-checkable. Consumers that need to +draw a map or run a distance filter need coordinates. This tool is the bridge, +built as a refreshable snapshot rather than a service so that resolution has no +runtime dependency. + +### Where this fits + +The `AdministrativeAreaReference` contract itself lives in the +[`network-specs`](https://github.com/OpenAgriNet/network-specs) repository, under +`schema/AgricultureResource/v0.1/attributes.yaml`. This tool only produces the +lookup table; it does not define or validate the schema. + +It is a standalone build-time utility, **not part of the adapter runtime**. It is +Python in an otherwise Go repository, deliberately: it is stdlib-only, invoked by +hand or from CI when a refresh is wanted, and links nothing into the adapter +binary. Nothing under `cmd/` or `pkg/` imports it, and it adds no Go package, so +Go compilation is untouched. The output is a CSV any language can read. + +Stdlib Python only, no pip install. Requires `bsdtar` (the default `tar` on +macOS) or `7z` to unpack `.7z` archives. Developed against Python 3.13. + +--- + +## Quick start + +Two stages, run in order: + +```bash +cd tools/gazetteer + +# Stage 1 - codes, names, parent chain. ~30 s, writes a dated directory. +python3 build_gazetteer.py + +# Stage 2 - joins boundary geometry onto those codes and fills coordinates. +# First run downloads ~150 MB (SOI) and caches it. ~2 min warm. +python3 join_geometry.py +``` + +Result: + +``` +data/gazetteer/ + lgd-2026-09-02/ dated snapshot, never overwritten + gazetteer.csv 25,097 rows, 6.3 MB + manifest.json provenance, coverage, data-quality report + latest -> lgd-2026-09-02 stable path for consumers + .cache/ downloaded boundary layers, ~500 MB, safe to delete +``` + +To refresh, re-run both stages. Each run writes its own dated directory and +never touches an earlier one, so a Resource published against an older snapshot +still resolves. Only the `latest` symlink moves. + +### Options + +| Flag | Stage | Default | Effect | +|---|---|---|---| +| `--date 02Sep2026` | 1 | latest available | pin a specific LGD snapshot | +| `--out DIR` | 1 | `data/gazetteer` | output root | +| `--with-villages` | 1 | off | adds ~670k Village rows; no geometry exists for them | +| `--source soi\|lgd` | 2 | `soi` | which boundary source to join (see below) | +| `--gazetteer DIR` | 2 | `data/gazetteer/latest` | snapshot to fill in place | +| `--cache DIR` | 2 | `data/gazetteer/.cache` | where boundary layers are kept | +| `--with-geometry` | 2 | off | also write `boundaries.geojsonl` (335 MB) | +| `--no-inherit` | 2 | off | leave unmatched rows empty instead of borrowing the parent point | + +Stage 2 is idempotent and re-runnable against an existing snapshot. It clears +every geometry column before joining, so switching `--source` fully replaces the +previous provenance rather than leaving a mixture. + +--- + +## Stage 1 - `build_gazetteer.py` + +### What it pulls + +| Source | Value | +|---|---| +| Authority | **LGD (Local Government Directory)**, Ministry of Panchayati Raj — | +| Accessed via | `github.com/ramSeraph/opendata`, release tag `lgd-latest-extra1` | +| Licence | GODL-India | +| Why the mirror | `lgdirectory.gov.in` has no bulk export or documented API; the mirror re-extracts it daily and publishes dated `.csv.7z` assets. The `.gov.in` origin is recorded in the manifest either way. | + +Four components are pulled by default, one optional: + +| Component | Rows | Becomes `area_level` | Code field used | +|---|---|---|---| +| `states` | 36 | `State` | State Code | +| `districts` | 784 | `District` | District Code | +| `subdistricts` | 7,092 | `Block` | Sub-district Code | +| `pincode_villages` | ~670k | `PostalCode` (17,184 unique) | Pincode | +| `villages` *(opt-in)* | ~670k | `Village` | Village Code | + +Plus one synthetic row: `ISO-3166-1 / IN / Country / India`, so a country-wide +`coverageAreas` entry resolves through the same lookup. + +`pincode_villages` is village-grained, so many rows share one pincode. It is +collapsed to one row per pincode, keeping the district as the parent — pincodes +are postal routes, not areas, and have no boundary data anywhere in this +pipeline. + +Two safeguards, both there because LGD's own column naming drifts: + +- Header names are normalised to letters and digits only. `Sub-district Code`, + `Sub-District Code` and `SubDistrict Code` all occur across files, as do + `District Name(In English)` and `District Name (In English)`. +- If any expected level parses to zero rows the run **fails** rather than + publishing a snapshot with a level silently missing. + +The snapshot date is the newest date for which *every* component is published. +Components are not always released in lockstep, and a half-published day would +otherwise mix a stale `districts` file into an otherwise current gazetteer. + +--- + +## Stage 2 - `join_geometry.py` + +Joins published administrative boundary polygons onto the LGD codes from stage 1 +and writes a representative point plus a bounding box for each area. + +**The join key is always the LGD code carried inside the boundary layer. Names +are never used to join.** Codes are stable; names are not. LGD district 466 is +`Ahilyanagar` today and `Ahmednagar` in every boundary layer published so far. +117 areas (SOI) or 319 (LGD) join on a stable code while carrying a different +name upstream — see *Name drift* below. + +### Sources + +Both sources are mirrored from `github.com/ramSeraph/indian_admin_boundaries` +releases, because neither `.gov.in` origin is scriptable: `mapservice.gov.in` +returns `{"error":{"code":499,"message":"Token Required"}}`, and `data.gov.in` +serves a JavaScript application rather than fetchable assets. The upstream +`.gov.in` origin is recorded in the manifest for every run. + +#### `--source soi` (default) + +| Field | Value | +|---|---| +| Authority | **Survey of India** — | +| Licence | **open** | +| Vintage | 2023-12-11 | + +| Level | Layer asset | Features | Code field read | Name field read | +|---|---|---|---|---| +| State | `SOI_States` | 40 | `State_LGD` | `STATE` | +| District | `SOI_Districts` | 742 | `DISTRICT_L` | `District` | + +The 4 extra features in `SOI_States` are disputed-boundary polygons +(`DISPUTED (MADHYA PRADESH & GUJARĀT)` and three similar) carrying +`State_LGD = 0`. Code `0` is explicitly skipped when joining, so they never +attach to an area — but they *are* included in the national extent, which is +correct, since they are Indian territory. + +`SOI_Subdistricts` exists but carries only `TEHSIL_C`, a census-style code, with +no LGD field. **Block therefore cannot be joined from SOI at all** and every +Block row falls back to inheriting its district's point. + +#### `--source lgd` + +| Field | Value | +|---|---| +| Authority | **BharatMaps / NIC** — `mapservice.gov.in/gismapservice/rest/services/BharatMapService/Admin_Boundary_GramPanchayat/MapServer` | +| Licence | **restricted — the upstream is not openly licensed** | +| Vintage | 2023-12-11 (states, districts), 2023-11-23 (subdistricts) | + +| Level | Layer asset | Features | Code field read | Name field read | +|---|---|---|---|---| +| State | `LGD_States` | 36 | `State_LGD` | `STNAME` | +| District | `LGD_Districts` | 785 | `dist_lgd` | `dtname` | +| Block | `LGD_Subdistricts` | 6,471 | `subdt_lgd` | `sdtname` | + +Materially better coverage — it is the only source here that can resolve Block — +but it is not open data. **Confirm licence terms before publishing derived +coordinates from this source.** This is why `soi` is the default: the open +source is what you get unless someone deliberately asks for the other one. + +### How a point is chosen + +1. **Centroid.** Area-weighted polygon centroid via the shoelace formula, with + holes subtracted and every part of a multipart shape weighted by its true + area. Computed on lon/lat treated as a plane. +2. **Interior fallback.** If that centroid falls outside the shape — normal for + a crescent-shaped district or an island group — a grid scan finds an interior + point near the largest part's centroid instead. 6 areas needed this. +3. **Country.** The `ISO-3166-1 / IN` row has no polygon of its own, so it is + derived from the union of all state geometry. +4. **Parent inheritance.** Anything still unresolved borrows its parent's point, + walked in level order so the chain works: a Block can inherit from a District + that itself only inherited from its State. Disable with `--no-inherit`. + +The planar lon/lat approximation is deliberate. Across a single Indian district +the error is well under a kilometre — irrelevant for a lookup hint, and this +point is a hint, not a measurement. Do not use these coordinates for area +calculation or as a survey reference. + +--- + +## What gets stored + +### `gazetteer.csv` + +18 columns. The first 9 are written by stage 1, the last 9 by stage 2. + +| Column | Written by | Meaning | +|---|---|---| +| `code_scheme` | 1 | matches `AdministrativeAreaReference.codeScheme` — `LGD`, `ISO-3166-1` or `IN-PIN` | +| `area_code` | 1 | matches `.areaCode` | +| `area_level` | 1 | matches `.areaLevel` — `Country`/`State`/`District`/`Block`/`Village`/`PostalCode` | +| `area_name` | 1 | matches `.areaName`, as LGD spells it | +| `parent_scheme` | 1 | scheme of the parent, for the inheritance fallback | +| `parent_code` | 1 | code of the parent | +| `census_2011_code` | 1 | crosswalk for joining census-coded boundary files | +| `snapshot_date` | 1 | LGD snapshot this row came from | +| `source_url` | 1 | exact asset the row was parsed from | +| `latitude` | 2 | representative point, WGS84 decimal degrees | +| `longitude` | 2 | " | +| `point_method` | 2 | how the point was derived — vocabulary below | +| `bbox_west` | 2 | bounding box of the area's geometry | +| `bbox_south` | 2 | " | +| `bbox_east` | 2 | " | +| `bbox_north` | 2 | " | +| `geometry_source` | 2 | which boundary layer supplied the point, e.g. `SOI_Districts` | +| `boundary_vintage` | 2 | publication date of that layer | + +`geometry_source` is the column to check before trusting or redistributing a +coordinate — it names the exact layer, and therefore the licence, per row. + +#### `point_method` vocabulary + +| Value | Meaning | +|---|---| +| `centroid` | area-weighted centroid, inside the shape | +| `interior_grid` | centroid fell outside the shape; an interior point was substituted | +| `centroid_outside_shape` | centroid fell outside and no interior point was found; the centroid was kept | +| `aggregate:State` | derived from the union of all states — only the country row | +| `inherited:` | borrowed from an ancestor at ``; the point describes the parent, not this area | + +An `inherited:*` point is a coarse locator, correct only to the granularity of +the level it names. A `PostalCode` row reading `inherited:District` sits at its +district's centre, which may be tens of kilometres from the actual post office. +Filter on `point_method` when precision matters. + +### `manifest.json` + +Provenance and a self-assessment for each snapshot. Stage 1 writes the +top-level keys; stage 2 adds the `geometry` block. + +| Key | Contents | +|---|---| +| `snapshot_date`, `lgd_snapshot` | ISO date and the LGD asset date it came from | +| `provenance` | LGD authority URL, mirror and licence | +| `components` | exact download URL per component | +| `row_count`, `rows_by_level` | what was produced | +| `geometry_populated` | whether stage 2 has run | +| `geometry.source`, `.source_label`, `.licence`, `.upstream`, `.mirror` | which boundary source and **under what licence** | +| `geometry.layers` | asset name and vintage per level | +| `geometry.join_key`, `.point_definition` | how the join and the point were computed | +| `geometry.coverage` | per level: total, matched, inherited, empty | +| `geometry.name_drift_count` | areas joined on code but named differently upstream | +| `geometry.parent_containment_check` | rows checked, violations, and the full outlier list | + +### `boundaries.geojsonl` (optional, `--with-geometry`) + +One GeoJSON feature per line, for every joined area, with the gazetteer's +`code_scheme` / `area_code` / `area_level` injected into each feature's +properties. 6,953 features / 335 MB under `--source lgd`. Only worth generating +if you actually need to draw or intersect polygons; the CSV point plus bbox +covers lookup and coarse filtering. + +### `.cache/` + +Downloaded `.7z` archives and the layers extracted from them, ~500 MB +(`LGD_Subdistricts.geojsonl` alone is 263 MB). Safe to delete at any time; the +next run re-downloads. A cached layer is validated by reading its tail before +being reused — a download truncated by an interrupted run is detected and +refetched rather than silently producing a smaller join. + +--- + +## Measured coverage + +`--source soi` (open, the default): + +| Level | Rows | Joined | Inherited | Empty | Joined % | +|---|---|---|---|---|---| +| Country | 1 | 1 | 0 | 0 | 100.0% | +| State | 36 | 36 | 0 | 0 | 100.0% | +| District | 784 | 728 | 56 | 0 | 92.9% | +| Block | 7,092 | 0 | 7,092 | 0 | 0.0% | +| PostalCode | 17,184 | 0 | 17,184 | 0 | 0.0% | + +`--source lgd` (restricted): + +| Level | Rows | Joined | Inherited | Empty | Joined % | +|---|---|---|---|---|---| +| Country | 1 | 1 | 0 | 0 | 100.0% | +| State | 36 | 36 | 0 | 0 | 100.0% | +| District | 784 | 771 | 13 | 0 | 98.3% | +| Block | 7,092 | 6,117 | 975 | 0 | 86.3% | +| PostalCode | 17,184 | 0 | 17,184 | 0 | 0.0% | + +Every row resolves to *some* coordinate under both sources; none are empty. The +gap between the two is Block: 6,117 real block-level points versus none. + +`PostalCode` never joins under either source, because no source here publishes +pincode boundaries. Those 17,184 rows always carry their district's point. + +Districts that do not join are mostly recent splits — the boundary layers are +from 2023 and LGD has created districts since. They inherit their state's point. + +--- + +## Data quality + +### Name drift + +117 areas (SOI) or 319 (LGD) join on a stable code while the boundary layer +spells the name differently: + +``` +State LGD 35 gazetteer='Andaman And Nicobar Islands' boundary='ANDAMAN & NICOBAR' +District LGD 502 gazetteer='Ananthapuramu' boundary='ANANTAPUR' +District LGD 291 gazetteer='Kamrup' boundary='KAMRUP RURAL' +``` + +Every one of these would have failed a name-based join. They are reported, not +corrected: LGD's spelling is authoritative for the gazetteer. Pure diacritic +differences (`GUJARĀT` vs `Gujarat`) are folded out before counting, so the +reported figure is genuine drift rather than transliteration noise. + +### Parent containment + +Every joined point is checked against its parent's bounding box. Under `soi`, +764/764 are clean. Under `lgd`, 7 of 6,866 fall outside: + +| Level | Code | Name | Parent | km outside | Assessment | +|---|---|---|---|---|---| +| District | 766 | Mauganj | Madhya Pradesh | 1,069 | **upstream error** — polygon sits in Arunachal Pradesh | +| Block | 3477 | Mauganj | Mauganj (766) | 1,211 | artifact of 766; the block itself is correctly near Rewa | +| Block | 3478 | Naigarhi | Mauganj (766) | 1,210 | artifact of 766 | +| Block | 3476 | Hanumana | Mauganj (766) | 1,182 | artifact of 766 | +| Block | 2109 | Katlichara | Hailakandi | 251 | **upstream error** | +| Block | 5908 | Yanam | Puducherry | 577 | **correct** — genuine Puducherry exclave | +| Block | 5913 | Mahe | Puducherry | 441 | **correct** — genuine Puducherry exclave | + +**Outliers are reported, never repaired.** The two situations produce an +identical signal and cannot be told apart automatically: district 766's polygon +really is in the wrong state, while Mahe and Yanam really are hundreds of +kilometres from Puducherry proper. Substituting the parent's point would fix the +first case and corrupt the second. The full list goes to the manifest for a +human to adjudicate. + +All points under both sources fall inside India's plausible envelope +(6.0–37.5 N, 68.0–97.5 E). + +--- + +## Licence summary + +| Source | Levels resolvable | Licence | Publishable? | +|---|---|---|---| +| LGD codes and names (stage 1) | all | GODL-India | yes | +| Survey of India boundaries | State, District | open | yes | +| BharatMaps / NIC boundaries | State, District, **Block** | restricted | **confirm first** | + +Stage 2 defaults to `soi` so an ordinary run produces openly licensed +coordinates. Choosing `--source lgd` buys Block-level precision and takes on a +licence question; the manifest records that choice, its licence string and a +warning on every run, and `geometry_source` records it per row. + +--- + +## Troubleshooting + +| Symptom | Cause and fix | +|---|---| +| `no gazetteer at .../gazetteer.csv` | stage 2 ran before stage 1; run `build_gazetteer.py` | +| `no single date has all core components published` | LGD mirror is mid-publish; retry later or pin `--date` | +| `no rows produced for: ` | LGD renamed a column; extend the candidates in `pick()` | +| `: no areas carried field ''` | the boundary layer's schema changed; check `SOURCES` in `join_geometry.py` | +| `cached copy is truncated, refetching` | informational; a prior download was interrupted and is being repaired | +| `extracted file is truncated` | delete the named `.7z` and `.geojsonl` from `.cache/` and retry | +| `need bsdtar or 7z to extract .7z` | install `p7zip`; macOS's stock `tar` already handles it | + +Large layers take minutes to download and extract. `LGD_Subdistricts` is 263 MB +extracted; allow several minutes on a cold cache and do not interrupt it. + +--- + +## Limits + +- **Vintage mismatch is structural.** Codes refresh daily; boundaries are from + 2023. New districts will keep appearing with no polygon to join, and will + inherit their state's point until the boundary layers are republished. +- **No Village geometry** from any source here, even with `--with-villages`. +- **No PostalCode geometry** from any source here. +- Points are lookup hints computed on a planar lon/lat approximation. Not for + measurement, area calculation or survey use. +- Boundary layers are mirrored from GitHub, not fetched from `.gov.in`, because + the government endpoints are not scriptable. The `.gov.in` origin is recorded + in the manifest; the mirror is the delivery mechanism, not the authority. diff --git a/tools/gazetteer/build_gazetteer.py b/tools/gazetteer/build_gazetteer.py new file mode 100644 index 00000000..a6d3f82a --- /dev/null +++ b/tools/gazetteer/build_gazetteer.py @@ -0,0 +1,346 @@ +#!/usr/bin/env python3 +"""Build a dated LGD gazetteer CSV for OpenAgriNet coverageAreas resolution. + +Pulls LGD (Local Government Directory) snapshots and flattens them into one CSV +shaped like AdministrativeAreaReference, so a coded coverageAreas entry can be +resolved by lookup instead of a live API call. + + (codeScheme, areaCode, areaLevel) -> areaName, parent, census codes + +Re-run to refresh. Each run writes its own dated directory and never touches an +earlier one, so a resource published against an older snapshot still resolves. + +Geometry is NOT populated here. The lat/lon, bbox and point_method columns are +written empty and filled by join_geometry.py, which joins published boundary +layers onto these codes. Splitting the stages keeps the code snapshot (refreshed +daily) independent of the boundary layers (refreshed every year or two). + +Usage: + python3 build_gazetteer.py # latest available snapshot + python3 build_gazetteer.py --date 02Sep2026 # a specific snapshot + python3 build_gazetteer.py --out data/gazetteer + python3 build_gazetteer.py --with-villages # adds ~670k village rows + +Stdlib only. Requires bsdtar (default `tar` on macOS) or 7z for .7z extraction. +""" + +import argparse +import csv +import datetime as dt +import json +import shutil +import subprocess +import sys +import tempfile +import urllib.error +import urllib.request +from pathlib import Path + +REPO = "ramSeraph/opendata" +TAG = "lgd-latest-extra1" +BASE = f"https://github.com/{REPO}/releases/download/{TAG}" +API = f"https://api.github.com/repos/{REPO}/releases/tags/{TAG}" + +# LGD is the upstream authority; this mirror extracts it daily. +PROVENANCE = "https://lgdirectory.gov.in/ (via https://github.com/ramSeraph/opendata, GODL-India)" + +# Components pulled by default. Villages are opt-in: 670k rows, rarely needed +# for coverage matching, and no geometry exists for them anyway. +CORE = ["states", "districts", "subdistricts", "pincode_villages"] +OPTIONAL = ["villages"] + +OUT_COLUMNS = [ + "code_scheme", # matches AdministrativeAreaReference.codeScheme + "area_code", # matches .areaCode + "area_level", # matches .areaLevel + "area_name", # matches .areaName + "parent_scheme", # fallback chain for unresolvable children + "parent_code", + "census_2011_code", # crosswalk to census-coded boundary files + "snapshot_date", + "source_url", + # Everything below is written empty here and filled by join_geometry.py. + "latitude", + "longitude", + "point_method", # centroid | interior_grid | inherited: + "bbox_west", + "bbox_south", + "bbox_east", + "bbox_north", + "geometry_source", # which boundary layer supplied the point + "boundary_vintage", +] + + +def log(msg): + print(f" {msg}", file=sys.stderr) + + +def fetch_json(url): + req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) + with urllib.request.urlopen(req, timeout=60) as r: + return json.load(r) + + +def latest_snapshot_date(): + """Newest date present across all core components. + + Components are not always published in lockstep, so take the newest date + that every core component actually has. A half-published day would + otherwise produce a gazetteer with a stale districts file silently mixed in. + """ + try: + assets = [a["name"] for a in fetch_json(API)["assets"]] + except urllib.error.URLError as e: + sys.exit(f"could not reach GitHub releases API: {e}") + + per_component = {} + for name in assets: + # e.g. "districts.02Sep2026.csv.7z" + parts = name.split(".") + if len(parts) < 3 or parts[0] not in CORE: + continue + try: + parsed = dt.datetime.strptime(parts[1], "%d%b%Y").date() + except ValueError: + continue # monthly archives use "Sep2026"; skip them + per_component.setdefault(parts[0], set()).add(parsed) + + missing = [c for c in CORE if c not in per_component] + if missing: + sys.exit(f"no dated snapshots found for: {', '.join(missing)}") + + common = set.intersection(*per_component.values()) + if not common: + sys.exit("no single date has all core components published") + return max(common).strftime("%d%b%Y") + + +def extract(archive, dest): + """Extract a .7z. bsdtar (macOS default tar) handles it; 7z is the fallback. + + GNU unzip cannot read these archives, which is why neither is attempted. + """ + for cmd in (["tar", "-xf", str(archive), "-C", str(dest)], + ["7z", "x", f"-o{dest}", "-y", str(archive)], + ["7zz", "x", f"-o{dest}", "-y", str(archive)]): + if shutil.which(cmd[0]) is None: + continue + if subprocess.run(cmd, capture_output=True).returncode == 0: + return + sys.exit("need bsdtar or 7z to extract .7z archives") + + +def download_component(component, date, workdir): + url = f"{BASE}/{component}.{date}.csv.7z" + archive = workdir / f"{component}.7z" + req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) + try: + with urllib.request.urlopen(req, timeout=300) as r, open(archive, "wb") as f: + shutil.copyfileobj(r, f) + except urllib.error.HTTPError as e: + sys.exit(f"{component} {date} not available ({e.code}): {url}") + + extract(archive, workdir) + csvs = list(workdir.glob(f"{component}.{date}.csv")) + if not csvs: + sys.exit(f"{component}: no CSV inside archive") + log(f"{component:<18} {sum(1 for _ in open(csvs[0], encoding='utf-8', errors='replace')) - 1:>7,} rows") + return csvs[0], url + + +def norm(header): + """Reduce a header to letters and digits only, lowercased. + + LGD spells the same column differently in every file: "Sub-district Code", + "Sub-District Code" and "SubDistrict Code" all occur, as do + "District Name(In English)" and "District Name (In English)". Normalising + both sides makes lookups survive that, and survive future drift. + """ + return "".join(ch for ch in header.lower() if ch.isalnum()) + + +def read_csv(path): + with open(path, encoding="utf-8", errors="replace", newline="") as f: + for row in csv.DictReader(f): + yield {norm(k): (v or "").strip() for k, v in row.items() if k} + + +def pick(row, *candidates): + """First non-empty matching column, matched on normalised names.""" + for c in candidates: + v = row.get(norm(c), "") + if v: + return v + return "" + + +def row_out(scheme, code, level, name, parent_scheme="", parent_code="", + census="", date="", url=""): + return { + "code_scheme": scheme, + "area_code": code, + "area_level": level, + "area_name": name, + "parent_scheme": parent_scheme, + "parent_code": parent_code, + "census_2011_code": census, + "snapshot_date": date, + "source_url": url, + "latitude": "", + "longitude": "", + "point_method": "", + "bbox_west": "", + "bbox_south": "", + "bbox_east": "", + "bbox_north": "", + "geometry_source": "", + "boundary_vintage": "", + } + + +def build(date, outdir, with_villages): + components = CORE + (OPTIONAL if with_villages else []) + rows = [] + sources = {} + + with tempfile.TemporaryDirectory() as tmp: + workdir = Path(tmp) + log(f"snapshot {date}") + files = {} + for c in components: + files[c], sources[c] = download_component(c, date, workdir) + + # ISO-3166-1: one row, so the country code in your examples resolves too. + rows.append(row_out("ISO-3166-1", "IN", "Country", "India", + date=date, url="static")) + + # --- states --- + for r in read_csv(files["states"]): + code = pick(r, "State Code") + if not code: + continue + rows.append(row_out( + "LGD", code, "State", + pick(r, "State Name (In English)", "State Name"), + "ISO-3166-1", "IN", + pick(r, "Census 2011 Code"), date, sources["states"])) + + # --- districts --- + for r in read_csv(files["districts"]): + code = pick(r, "District Code") + if not code: + continue + rows.append(row_out( + "LGD", code, "District", + pick(r, "District Name(In English)", "District Name"), + "LGD", pick(r, "State Code"), + pick(r, "Census 2011 Code"), date, sources["districts"])) + + # --- subdistricts (maps to areaLevel "Block") --- + for r in read_csv(files["subdistricts"]): + code = pick(r, "Sub-district Code") + if not code: + continue + rows.append(row_out( + "LGD", code, "Block", + pick(r, "Sub-district Name"), + "LGD", pick(r, "District Code"), + pick(r, "Census 2011 Code"), date, sources["subdistricts"])) + + # --- villages (opt-in) --- + if with_villages: + for r in read_csv(files["villages"]): + code = pick(r, "Village Code") + if not code: + continue + rows.append(row_out( + "LGD", code, "Village", + pick(r, "Village Name (In English)"), + "LGD", pick(r, "Sub-District Code"), + pick(r, "Census 2011 Code"), date, sources["villages"])) + + # --- pincodes --- + # pincode_villages is village-grained: many rows share one pincode. + # Collapse to one row per pincode and keep the district as its parent, + # which is the usable fallback since pincodes have no boundary data. + pins = {} + for r in read_csv(files["pincode_villages"]): + pin = pick(r, "Pincode") + if not pin or not pin.isdigit(): + continue + if pin not in pins: + pins[pin] = (pick(r, "District Code"), pick(r, "District Name")) + for pin, (dcode, dname) in sorted(pins.items()): + rows.append(row_out( + "IN-PIN", pin, "PostalCode", dname, + "LGD", dcode, "", date, sources["pincode_villages"])) + log(f"{'pincodes (unique)':<18} {len(pins):>7,} rows") + + # A component that parsed to zero rows means LGD renamed a column, not that + # the level is genuinely empty. Fail rather than publish a gazetteer with a + # silently missing level. + by_level = {} + for r in rows: + by_level[r["area_level"]] = by_level.get(r["area_level"], 0) + 1 + + expected = ["Country", "State", "District", "Block", "PostalCode"] + if with_villages: + expected.append("Village") + empty = [lvl for lvl in expected if not by_level.get(lvl)] + if empty: + sys.exit(f"no rows produced for: {', '.join(empty)} — " + "LGD column names likely changed; check pick() candidates") + + # --- write --- + stamp = dt.datetime.strptime(date, "%d%b%Y").date().isoformat() + target = Path(outdir) / f"lgd-{stamp}" + target.mkdir(parents=True, exist_ok=True) + out = target / "gazetteer.csv" + + with open(out, "w", encoding="utf-8", newline="") as f: + w = csv.DictWriter(f, fieldnames=OUT_COLUMNS) + w.writeheader() + w.writerows(rows) + + manifest = { + "snapshot_date": stamp, + "lgd_snapshot": date, + "generated_by": "build_gazetteer.py", + "provenance": PROVENANCE, + "components": sources, + "row_count": len(rows), + "rows_by_level": by_level, + "geometry_populated": False, + "notes": "Codes only. Geometry columns are filled by join_geometry.py, " + "which adds a `geometry` block to this manifest recording the " + "boundary source, its licence and the coverage achieved.", + } + (target / "manifest.json").write_text(json.dumps(manifest, indent=2) + "\n") + + # Stable path for consumers that just want current data. + latest = Path(outdir) / "latest" + if latest.is_symlink() or latest.exists(): + latest.unlink() + latest.symlink_to(target.name) + + print(f"\n{out} ({len(rows):,} rows)") + for level, n in sorted(by_level.items(), key=lambda kv: -kv[1]): + print(f" {level:<12} {n:>7,}") + print(f"\nmanifest: {target / 'manifest.json'}") + print(f"latest: {latest} -> {target.name}") + + +def main(): + p = argparse.ArgumentParser(description=__doc__, + formatter_class=argparse.RawDescriptionHelpFormatter) + p.add_argument("--date", help="LGD snapshot, e.g. 02Sep2026 (default: latest)") + p.add_argument("--out", default="data/gazetteer", help="output directory") + p.add_argument("--with-villages", action="store_true", + help="include ~670k village rows") + a = p.parse_args() + build(a.date or latest_snapshot_date(), a.out, a.with_villages) + + +if __name__ == "__main__": + main() diff --git a/tools/gazetteer/join_geometry.py b/tools/gazetteer/join_geometry.py new file mode 100644 index 00000000..4c817568 --- /dev/null +++ b/tools/gazetteer/join_geometry.py @@ -0,0 +1,799 @@ +#!/usr/bin/env python3 +"""Stage 2: attach coordinates to a gazetteer built by build_gazetteer.py. + +Stage 1 produces codes without geometry, because LGD's directory dumps carry no +boundaries. This stage joins boundary layers onto those codes and fills in +latitude, longitude and a bounding box, so an AdministrativeAreaReference such as + + {"codeScheme": "LGD", "areaCode": "466", "areaLevel": "District"} + +resolves to a coordinate without a live API call. + +The join key is always the LGD code carried inside the boundary layer itself. +Names are never used to join. Over a hundred areas currently have a stable LGD +code but a different name in the boundary files than in current LGD (LGD 466 is +"Ahilyanagar" today and "Ahmednagar" in every published boundary layer), so a +name join would silently drop them. + +Sources + --source soi Survey of India, openly licensed. State + District only. + --source lgd LGD codes on BharatMaps geometry. Adds Block, better District + coverage, but the upstream is not openly licensed. + +Levels a source cannot cover are not left blank: they inherit their nearest +resolved ancestor's point, recorded in point_method as inherited:, so +every row resolves to something and the provenance stays visible. Pass +--no-inherit to leave them empty instead. + +Usage + python3 join_geometry.py + python3 join_geometry.py --source lgd + python3 join_geometry.py --gazetteer data/gazetteer/latest + python3 join_geometry.py --source lgd --with-geometry + +Stdlib only. Requires bsdtar (default `tar` on macOS) or 7z to extract .7z. +""" + +import argparse +import csv +import datetime as dt +import json +import math +import shutil +import subprocess +import sys +import unicodedata +import urllib.error +import urllib.request +from pathlib import Path + +REPO = "ramSeraph/indian_admin_boundaries" +BASE = f"https://github.com/{REPO}/releases/download" + +# Each level maps to (release tag, asset stem, LGD code field, name field). +# The code field is the join key; the name field is only read to report name +# drift, never to match on. +SOURCES = { + "soi": { + "label": "Survey of India", + "licence": "open", + "upstream": "https://onlinemaps.surveyofindia.gov.in/Digital_Product_Show.aspx", + "note": "SOI_Subdistricts carries no LGD code, so Block cannot be joined " + "from this source.", + "layers": { + "State": ("states", "SOI_States", "State_LGD", "STATE"), + "District": ("districts", "SOI_Districts", "DISTRICT_L", "District"), + }, + }, + "lgd": { + "label": "LGD codes on BharatMaps geometry", + "licence": "restricted - upstream is not openly licensed", + "upstream": "https://mapservice.gov.in/gismapservice/rest/services/" + "BharatMapService/Admin_Boundary_GramPanchayat/MapServer", + "note": "Broader coverage than SOI. Confirm licence terms before " + "publishing derived coordinates.", + "layers": { + "State": ("states", "LGD_States", "State_LGD", "STNAME"), + "District": ("districts", "LGD_Districts", "dist_lgd", "dtname"), + "Block": ("subdistricts", "LGD_Subdistricts", "subdt_lgd", "sdtname"), + }, + }, +} + +# Written by stage 1 as empty strings and filled here. Kept in sync with +# build_gazetteer.py OUT_COLUMNS. +GEO_COLUMNS = ["latitude", "longitude", "point_method", + "bbox_west", "bbox_south", "bbox_east", "bbox_north", + "geometry_source", "boundary_vintage"] + +# Child level -> parent level, used when a level has no geometry of its own. +# Ordered parent-first so the inheritance pass can walk down in one sweep. +PARENT_LEVEL = {"State": "Country", "District": "State", + "Block": "District", "PostalCode": "District", + "Village": "Block"} + +LEVEL_ORDER = ["Country", "State", "District", "Block", "Village", "PostalCode"] + + +def log(msg): + print(f" {msg}", file=sys.stderr) + + +def simplify_name(name): + """Fold a place name to letters and digits, for comparison only. + + SOI writes names in transliterated capitals with macrons ("GUJARĀT", + "ARUNĀCHAL PRADESH") where LGD writes plain ASCII title case. Comparing raw + strings flags several hundred of those as renames and buries the genuine + ones, so accents, case, spacing and punctuation are all removed before + deciding whether a name really differs. + """ + decomposed = unicodedata.normalize("NFKD", name) + stripped = "".join(c for c in decomposed if not unicodedata.combining(c)) + return "".join(c for c in stripped.lower() if c.isalnum()) + + +# --- geometry, planar on lon/lat degrees ------------------------------------ +# +# Every calculation below treats lon/lat as a flat plane. Over a single Indian +# district the distortion is far smaller than the difference between one +# defensible representative point and another, and the output is a lookup hint +# rather than a measurement. Areas are therefore only ever used as relative +# weights between parts of the same shape, never reported as real areas. + +def closed(ring): + """Ensure the ring's last vertex repeats its first.""" + if len(ring) >= 2 and (ring[0][0] != ring[-1][0] or ring[0][1] != ring[-1][1]): + return list(ring) + [ring[0]] + return ring + + +def ring_area_centroid(ring): + """Signed shoelace area and centroid of one closed ring.""" + ring = closed(ring) + a = cx = cy = 0.0 + for i in range(len(ring) - 1): + x0, y0 = ring[i][0], ring[i][1] + x1, y1 = ring[i + 1][0], ring[i + 1][1] + cross = x0 * y1 - x1 * y0 + a += cross + cx += (x0 + x1) * cross + cy += (y0 + y1) * cross + a *= 0.5 + if a == 0.0: + # Degenerate or zero-width ring: fall back to the vertex mean so a + # sliver polygon still yields a usable point instead of a crash. + pts = ring[:-1] or ring + return 0.0, (sum(p[0] for p in pts) / len(pts), + sum(p[1] for p in pts) / len(pts)) + return a, (cx / (6.0 * a), cy / (6.0 * a)) + + +def polygon_centroid(rings): + """Area and centroid of one polygon, subtracting its holes. + + Ring winding in published Indian boundary data does not reliably follow the + GeoJSON right-hand rule, so orientation is ignored: ring 0 is taken as the + outer ring and contributes positively, every later ring is a hole and + contributes negatively. + """ + total = sx = sy = 0.0 + for i, ring in enumerate(rings): + a, (cx, cy) = ring_area_centroid(ring) + w = abs(a) if i == 0 else -abs(a) + total += w + sx += cx * w + sy += cy * w + if total == 0.0: + _, c = ring_area_centroid(rings[0]) + return 0.0, c + return abs(total), (sx / total, sy / total) + + +def shape_parts(geom): + """[(area, centroid, rings)] for each polygon in a Polygon/MultiPolygon.""" + t = (geom or {}).get("type") + if t == "Polygon": + polys = [geom["coordinates"]] + elif t == "MultiPolygon": + polys = geom["coordinates"] + else: + return [] + parts = [] + for rings in polys: + if not rings or not rings[0]: + continue + area, centroid = polygon_centroid(rings) + parts.append((area, centroid, rings)) + return parts + + +def point_in_ring(pt, ring): + """Ray-casting test for a point against one closed ring.""" + ring = closed(ring) + x, y = pt + inside = False + for i in range(len(ring) - 1): + x0, y0 = ring[i][0], ring[i][1] + x1, y1 = ring[i + 1][0], ring[i + 1][1] + if (y0 > y) != (y1 > y): + xint = x0 + (y - y0) * (x1 - x0) / (y1 - y0) + if x < xint: + inside = not inside + return inside + + +def point_in_polygon(pt, rings): + if not point_in_ring(pt, rings[0]): + return False + return not any(point_in_ring(pt, r) for r in rings[1:]) + + +def interior_point(rings, target, grid=48): + """An interior point of `rings`, as close to `target` as practical. + + The area-weighted centroid of a crescent-shaped district, or of an island + group like Andaman & Nicobar, can land in the sea. When that happens, scan a + coarse grid over the shape's bounding box and keep the interior sample + nearest the centroid, so the published coordinate is at least on land inside + the correct area. + """ + xs = [p[0] for p in rings[0]] + ys = [p[1] for p in rings[0]] + west, east, south, north = min(xs), max(xs), min(ys), max(ys) + best = None + best_d = None + for i in range(1, grid): + x = west + (east - west) * i / grid + for j in range(1, grid): + y = south + (north - south) * j / grid + if not point_in_polygon((x, y), rings): + continue + d = (x - target[0]) ** 2 + (y - target[1]) ** 2 + if best_d is None or d < best_d: + best, best_d = (x, y), d + return best + + +class Accumulator: + """Area-weighted point and union bbox over one or more shapes. + + A handful of areas are published as several features sharing one LGD code + (29 of 6,360 LGD subdistricts), and the country point is derived from every + state at once. Both need the same accumulation, so geometry is folded in + incrementally and only the largest single part is retained for the + interiority test, which keeps memory flat regardless of input size. + """ + + __slots__ = ("area", "sx", "sy", "bbox", "best_area", "best_rings", + "best_centroid", "features") + + def __init__(self): + self.area = self.sx = self.sy = 0.0 + self.bbox = None + self.best_area = -1.0 + self.best_rings = None + self.best_centroid = None + self.features = 0 + + def add(self, geom): + parts = shape_parts(geom) + if not parts: + return False + self.features += 1 + for area, (cx, cy), rings in parts: + self.area += area + self.sx += cx * area + self.sy += cy * area + if area > self.best_area: + self.best_area, self.best_rings, self.best_centroid = area, rings, (cx, cy) + xs = [p[0] for p in rings[0]] + ys = [p[1] for p in rings[0]] + box = (min(xs), min(ys), max(xs), max(ys)) + if self.bbox is None: + self.bbox = box + else: + w, s, e, n = self.bbox + self.bbox = (min(w, box[0]), min(s, box[1]), + max(e, box[2]), max(n, box[3])) + return True + + def result(self, check_interior=True): + """(lon, lat, bbox, method) or None if nothing usable was added.""" + if self.bbox is None or self.best_rings is None: + return None + if self.area > 0.0: + lon, lat = self.sx / self.area, self.sy / self.area + else: + lon, lat = self.best_centroid + method = "centroid" + if check_interior and not point_in_polygon((lon, lat), self.best_rings): + # For a multipart shape the all-parts centroid can sit outside every + # individual part, so re-aim at the largest part before scanning. + target = self.best_centroid + if point_in_polygon(target, self.best_rings): + lon, lat = target + else: + alt = interior_point(self.best_rings, target) + if alt is None: + method = "centroid_outside_shape" + else: + lon, lat = alt + method = "interior_grid" + return lon, lat, self.bbox, method + + +# --- fetching --------------------------------------------------------------- + +def extract(archive, dest): + for cmd in (["tar", "-xf", str(archive), "-C", str(dest)], + ["7z", "x", f"-o{dest}", "-y", str(archive)], + ["7zz", "x", f"-o{dest}", "-y", str(archive)]): + if shutil.which(cmd[0]) is None: + continue + if subprocess.run(cmd, capture_output=True).returncode == 0: + return + sys.exit("need bsdtar or 7z to extract .7z archives") + + +def _tail_is_valid(path): + """True if the file's last non-empty line parses as JSON. + + Guards against a cached .geojsonl left truncated by an interrupted + extraction. Such a file reads fine for thousands of lines and then simply + stops, which would silently join fewer areas rather than fail. + + Only the tail is read, but the window has to grow until it provably holds a + whole line: LGD_States packs 36 features into 25 MB, so one line can exceed + any fixed window and the last fragment would fail to parse even though the + file is intact. Reading until two newlines are in view, or until the start of + the file is reached, guarantees the final segment is a complete line. + """ + try: + size = path.stat().st_size + if size == 0: + return False + window = 1 << 20 + with open(path, "rb") as f: + while True: + offset = max(0, size - window) + f.seek(offset) + tail = f.read() + if offset == 0 or tail.count(b"\n") >= 2 or window >= (1 << 30): + break + window *= 4 + except OSError: + return False + lines = [ln for ln in tail.split(b"\n") if ln.strip()] + if not lines: + return False + try: + json.loads(lines[-1].decode("utf-8", "replace")) + return True + except ValueError: + return False + + +def ensure_layer(tag, stem, cache): + """Download and extract one boundary layer, reusing a valid cached copy.""" + cache.mkdir(parents=True, exist_ok=True) + out = cache / f"{stem}.geojsonl" + # A symlink whose target is gone still occupies the name, so exists() is + # False while extract() would follow the link into a missing directory and + # fail. Clear it and treat the layer as absent. + if out.is_symlink() and not out.exists(): + log(f"{stem:<20} cached symlink is dangling, refetching") + out.unlink() + if out.exists() and _tail_is_valid(out): + log(f"{stem:<20} cached") + return out + if out.exists(): + log(f"{stem:<20} cached copy is truncated, refetching") + out.unlink() + + archive = cache / f"{stem}.geojsonl.7z" + if not archive.exists(): + url = f"{BASE}/{tag}/{stem}.geojsonl.7z" + req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) + try: + with urllib.request.urlopen(req, timeout=900) as r, open(archive, "wb") as f: + shutil.copyfileobj(r, f) + except urllib.error.HTTPError as e: + sys.exit(f"{stem} not available ({e.code}): {url}") + except urllib.error.URLError as e: + sys.exit(f"{stem} download failed: {e}") + log(f"{stem:<20} downloaded {archive.stat().st_size / 1e6:,.1f} MB") + + extract(archive, cache) + if not out.exists(): + sys.exit(f"{stem}: no {stem}.geojsonl inside archive") + if not _tail_is_valid(out): + sys.exit(f"{stem}: extracted file is truncated; " + f"delete {archive} and {out} and retry") + return out + + +def layer_vintage(path): + """The layer's own publication date, taken from the archived mtime. + + The .7z preserves the timestamp the boundary file was built upstream, which + is the date that matters for provenance. It is not the date this script ran, + and the two are usually years apart. + """ + try: + return dt.datetime.fromtimestamp(path.stat().st_mtime).date().isoformat() + except OSError: + return "" + + +def load_points(path, code_field, name_field): + """code -> (lon, lat, bbox, method, name), one entry per LGD code.""" + accs = {} + names = {} + skipped = 0 + for line in open(path, encoding="utf-8", errors="replace"): + if not line.strip(): + continue + feat = json.loads(line) + props = feat.get("properties") or {} + code = props.get(code_field) + if code in (None, "", " ", 0, "0"): + skipped += 1 + continue + code = str(code).strip() + acc = accs.get(code) + if acc is None: + acc = accs[code] = Accumulator() + if not acc.add(feat.get("geometry")): + skipped += 1 + continue + names.setdefault(code, str(props.get(name_field) or "").strip()) + + out = {} + for code, acc in accs.items(): + res = acc.result() + if res is None: + skipped += 1 + continue + lon, lat, bbox, method = res + out[code] = (lon, lat, bbox, method, names.get(code, "")) + return out, skipped + + +def country_point(path): + """Point and bbox for the whole country, from the union of all states. + + The ISO-3166-1 row has no LGD polygon of its own. Deriving it from state + geometry means a country-wide coverageArea still resolves instead of being + the one blank row in the file. The interiority test is skipped: a national + point weighted across all states is meaningful even though it need not fall + inside the single largest state. + """ + acc = Accumulator() + for line in open(path, encoding="utf-8", errors="replace"): + if line.strip(): + acc.add(json.loads(line).get("geometry")) + res = acc.result(check_interior=False) + if res is None: + return None + lon, lat, bbox, _ = res + return lon, lat, bbox, "aggregate:State" + + +# --- join ------------------------------------------------------------------- + +def set_point(row, lat, lon, bbox, method, source_layer, vintage): + row.update({ + "latitude": f"{lat:.6f}", + "longitude": f"{lon:.6f}", + "point_method": method, + "bbox_west": f"{bbox[0]:.6f}", + "bbox_south": f"{bbox[1]:.6f}", + "bbox_east": f"{bbox[2]:.6f}", + "bbox_north": f"{bbox[3]:.6f}", + "geometry_source": source_layer, + "boundary_vintage": vintage, + }) + + +def run(source, gazdir, cache, with_geometry, inherit): + conf = SOURCES[source] + gazdir = Path(gazdir).resolve() + cache = Path(cache) + gaz_csv = gazdir / "gazetteer.csv" + if not gaz_csv.exists(): + sys.exit(f"no gazetteer at {gaz_csv} - run build_gazetteer.py first") + + with open(gaz_csv, encoding="utf-8", newline="") as f: + reader = csv.DictReader(f) + rows = list(reader) + columns = list(reader.fieldnames or []) + if not rows: + sys.exit(f"{gaz_csv} has no rows") + for c in GEO_COLUMNS: + if c not in columns: + columns.append(c) + + # Clear every geometry column before joining. Without this, a second run + # against an already-populated CSV keeps rows the new source cannot supply: + # switching from lgd to soi would leave 6,117 Block points still sourced + # from LGD_Subdistricts while the manifest declares the licence as open. + for r in rows: + for c in GEO_COLUMNS: + r[c] = "" + + log(f"source {conf['label']} ({conf['licence']})") + log(f"{len(rows):,} gazetteer rows from {gaz_csv}") + + points, vintages, layer_paths = {}, {}, {} + for level, (tag, stem, code_field, name_field) in conf["layers"].items(): + path = ensure_layer(tag, stem, cache) + pts, skipped = load_points(path, code_field, name_field) + # Zero coded areas means the upstream renamed its code column, not that + # the level is genuinely empty. Fail rather than silently publish a + # gazetteer where a whole level fell back to its parent. + if not pts: + sys.exit(f"{stem}: no areas carried field {code_field!r} - the " + f"upstream schema likely changed; check SOURCES[{source!r}]") + points[level] = pts + vintages[level] = stem + layer_paths[level] = path + log(f"{stem:<20} {len(pts):,} coded areas, vintage {layer_vintage(path)}" + + (f", {skipped:,} features without a usable code or geometry" + if skipped else "")) + + dates = {lvl: layer_vintage(p) for lvl, p in layer_paths.items()} + stats = {} + for r in rows: + stats.setdefault(r["area_level"], + {"total": 0, "matched": 0, "inherited": 0, "empty": 0}) + stats[r["area_level"]]["total"] += 1 + + # Pass 1: direct joins on the LGD code carried in the boundary layer. + drift = [] + resolved = {} + for r in rows: + level = r["area_level"] + pts = points.get(level) + if not pts or r["code_scheme"] != "LGD": + continue + hit = pts.get(r["area_code"]) + if not hit: + continue + lon, lat, bbox, method, bname = hit + set_point(r, lat, lon, bbox, method, vintages[level], dates[level]) + stats[level]["matched"] += 1 + resolved[(r["code_scheme"], r["area_code"], level)] = (lat, lon, bbox, level) + if bname and r["area_name"] and simplify_name(bname) != simplify_name(r["area_name"]): + drift.append((level, r["area_code"], r["area_name"], bname)) + + # Pass 2: the country row, derived from the union of all state geometry. + if "State" in layer_paths: + agg = country_point(layer_paths["State"]) + if agg: + lon, lat, bbox, method = agg + for r in rows: + if r["area_level"] != "Country" or r["latitude"]: + continue + set_point(r, lat, lon, bbox, method, vintages["State"], dates["State"]) + stats["Country"]["matched"] += 1 + resolved[(r["code_scheme"], r["area_code"], "Country")] = \ + (lat, lon, bbox, "Country") + + # Pass 3: inherit downward for anything still unresolved. + # + # This walks parent-to-child in level order so it completes in one sweep. A + # Block whose District itself only inherited from a State still resolves, + # and point_method records the level the geometry actually came from rather + # than the immediate parent. + if inherit: + by_level = {} + for r in rows: + by_level.setdefault(r["area_level"], []).append(r) + for level in LEVEL_ORDER: + parent = PARENT_LEVEL.get(level) + if parent is None: + continue + for r in by_level.get(level, []): + if r["latitude"]: + continue + hit = resolved.get((r.get("parent_scheme"), r.get("parent_code"), parent)) + if not hit: + continue + lat, lon, bbox, origin = hit + set_point(r, lat, lon, bbox, f"inherited:{origin}", + vintages.get(origin, ""), dates.get(origin, "")) + stats[level]["inherited"] += 1 + resolved[(r["code_scheme"], r["area_code"], level)] = \ + (lat, lon, bbox, origin) + + for r in rows: + if not r["latitude"]: + stats[r["area_level"]]["empty"] += 1 + + with open(gaz_csv, "w", encoding="utf-8", newline="") as f: + w = csv.DictWriter(f, fieldnames=columns) + w.writeheader() + w.writerows(rows) + + containment = check_containment(rows) + if with_geometry: + write_geometry(conf, gazdir, cache, rows) + update_manifest(source, conf, gazdir, stats, vintages, dates, drift, + inherit, containment) + report(gaz_csv, stats, drift, conf, containment) + return stats + + +def check_containment(rows): + """Flag directly-joined points that fall outside their parent's bbox. + + An independent check on the join itself: a District point sitting outside + its own State's box means the code matched the wrong polygon upstream. The + comparison is against the parent's bounding box rather than its outline, so + a coastline simplified differently between two layers does not register. + + Outliers are reported, never repaired. Two different situations produce the + same signal and cannot be told apart automatically: + + - a genuine upstream error, such as LGD district 766 (Mauganj, Madhya + Pradesh) whose published polygon sits in Arunachal Pradesh, roughly + 1,000 km from the state it belongs to + - a legitimate exclave, such as the Puducherry blocks Mahe and Yanam, + which really are several hundred km from Puducherry proper + + Substituting a parent point would fix the first and corrupt the second, so + the full list goes to the manifest for a human to adjudicate. + """ + boxes = {} + for r in rows: + if r["latitude"] and not r["point_method"].startswith("inherited"): + boxes[(r["code_scheme"], r["area_code"], r["area_level"])] = r + + checked = 0 + outliers = [] + for r in rows: + if not r["latitude"] or r["point_method"].startswith("inherited"): + continue + parent = boxes.get((r.get("parent_scheme"), r.get("parent_code"), + PARENT_LEVEL.get(r["area_level"]))) + if not parent: + continue + checked += 1 + lon, lat = float(r["longitude"]), float(r["latitude"]) + west, south = float(parent["bbox_west"]), float(parent["bbox_south"]) + east, north = float(parent["bbox_east"]), float(parent["bbox_north"]) + # A degree of slack absorbs differing border simplification between two + # independently produced layers. + pad = 1.0 + if (west - pad <= lon <= east + pad) and (south - pad <= lat <= north + pad): + continue + dx = max(west - lon, 0.0, lon - east) + dy = max(south - lat, 0.0, lat - north) + km = math.hypot(dx * 111.0 * math.cos(math.radians(lat)), dy * 111.0) + outliers.append({ + "level": r["area_level"], + "code_scheme": r["code_scheme"], + "area_code": r["area_code"], + "area_name": r["area_name"], + "latitude": r["latitude"], + "longitude": r["longitude"], + "parent_code": r.get("parent_code", ""), + "parent_name": parent["area_name"], + "km_outside_parent_bbox": round(km), + }) + outliers.sort(key=lambda o: -o["km_outside_parent_bbox"]) + return {"checked": checked, "violations": len(outliers), "outliers": outliers} + + +def write_geometry(conf, gazdir, cache, rows): + """Emit boundaries.geojsonl for areas that joined to a real polygon.""" + wanted = {} + for r in rows: + if r["latitude"] and not r["point_method"].startswith("inherited"): + if r["area_level"] in conf["layers"]: + wanted.setdefault(r["area_level"], {})[r["area_code"]] = r["area_name"] + + out = gazdir / "boundaries.geojsonl" + written = 0 + with open(out, "w", encoding="utf-8") as fout: + for level, (_tag, stem, code_field, _name) in conf["layers"].items(): + keep = wanted.get(level) or {} + if not keep: + continue + path = cache / f"{stem}.geojsonl" + for line in open(path, encoding="utf-8", errors="replace"): + if not line.strip(): + continue + feat = json.loads(line) + code = feat.get("properties", {}).get(code_field) + if code in (None, "", " ", 0, "0"): + continue + code = str(code).strip() + if code not in keep: + continue + # Every feature for a code is kept, so an area published as two + # polygons stays complete for point-in-polygon use. + fout.write(json.dumps({ + "type": "Feature", + "properties": {"code_scheme": "LGD", "area_code": code, + "area_level": level, "area_name": keep[code], + "geometry_source": stem}, + "geometry": feat.get("geometry"), + }, separators=(",", ":")) + "\n") + written += 1 + log(f"boundaries.geojsonl {written:,} features, " + f"{out.stat().st_size / 1e6:,.1f} MB") + + +def update_manifest(source, conf, gazdir, stats, vintages, dates, drift, + inherit, containment): + path = gazdir / "manifest.json" + m = json.loads(path.read_text()) if path.exists() else {} + m["geometry_populated"] = True + m["geometry"] = { + "source": source, + "source_label": conf["label"], + "licence": conf["licence"], + "upstream": conf["upstream"], + "note": conf["note"], + "mirror": f"https://github.com/{REPO}/releases", + "layers": {lvl: {"asset": vintages[lvl], "vintage": dates.get(lvl, "")} + for lvl in vintages}, + "join_key": "LGD code carried in the boundary layer; names are never " + "used to join", + "point_definition": "Area-weighted centroid computed on lon/lat as a " + "plane, holes subtracted. If that point falls " + "outside the shape, an interior point near the " + "largest part's centroid is substituted. See " + "point_method per row.", + "parent_inheritance": inherit, + "coverage": stats, + "name_drift_count": len(drift), + "parent_containment_check": containment, + } + path.write_text(json.dumps(m, indent=2) + "\n") + + +def report(gaz_csv, stats, drift, conf, containment): + print(f"\n{gaz_csv}") + print(f"\n{'level':<12}{'rows':>8}{'joined':>9}{'inherited':>11}" + f"{'empty':>8}{'joined %':>10}") + for level in LEVEL_ORDER + [k for k in stats if k not in LEVEL_ORDER]: + s = stats.get(level) + if not s: + continue + pct = 100.0 * s["matched"] / s["total"] if s["total"] else 0.0 + print(f"{level:<12}{s['total']:>8,}{s['matched']:>9,}" + f"{s['inherited']:>11,}{s['empty']:>8,}{pct:>9.1f}%") + + c = containment + if c["checked"]: + print(f"\nparent containment: {c['checked'] - c['violations']:,}/" + f"{c['checked']:,} joined points fall inside their parent's box") + for o in c["outliers"][:8]: + print(f" {o['level']:<9}LGD {o['area_code']:<6}{o['area_name'][:24]:<26}" + f"~{o['km_outside_parent_bbox']:,} km outside {o['parent_name'][:20]}") + if c["violations"]: + print(" Reported, not corrected: these are either upstream polygon " + "errors or\n genuine exclaves, and the two are " + "indistinguishable automatically.") + print(" Full list in manifest.json under " + "geometry.parent_containment_check.") + + if drift: + print(f"\n{len(drift)} areas joined on a stable code but carry a " + f"different name upstream:") + for level, code, ours, theirs in drift[:8]: + print(f" {level:<9} LGD {code:<6} gazetteer={ours!r} boundary={theirs!r}") + if len(drift) > 8: + print(f" ... and {len(drift) - 8} more") + print(" These are why the join uses codes, not names.") + + empty_levels = [lvl for lvl, s in stats.items() + if s["total"] and not s["matched"] and lvl != "Country"] + if empty_levels: + print(f"\nNo geometry joined for: {', '.join(sorted(empty_levels))}") + print(f" {conf['note']}") + + +def main(): + p = argparse.ArgumentParser( + description=__doc__, + formatter_class=argparse.RawDescriptionHelpFormatter) + p.add_argument("--source", choices=sorted(SOURCES), default="soi", + help="boundary source (default: soi, the openly licensed one)") + p.add_argument("--gazetteer", default="data/gazetteer/latest", + help="directory holding gazetteer.csv from stage 1") + p.add_argument("--cache", default="data/gazetteer/.cache", + help="where boundary downloads are kept between runs") + p.add_argument("--with-geometry", action="store_true", + help="also write boundaries.geojsonl for point-in-polygon use") + p.add_argument("--no-inherit", action="store_true", + help="leave unjoinable levels empty instead of using a parent point") + a = p.parse_args() + run(a.source, a.gazetteer, a.cache, a.with_geometry, not a.no_inherit) + + +if __name__ == "__main__": + main() From 16f71554650b930294754ca06add506a4efac340 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 14:40:45 +0530 Subject: [PATCH 02/12] docs(tools): trim gazetteer README to run steps plus source appendix Reduce the README to what an operator needs: the purpose, the single refresh command, and an appendix stating which source fills which columns. 422 lines down to 138. Also fix a defect the rewrite surfaced while verifying the refresh command: build_gazetteer.py caught only HTTPError, so a dropped TLS connection during a download produced a raw traceback instead of a message. Both stages now catch URLError, retry transient failures with backoff, and remove any partial file. HTTP status errors are still fatal without retry, since a 404 means the asset is genuinely not published. --- tools/gazetteer/README.md | 478 ++++++----------------------- tools/gazetteer/build_gazetteer.py | 35 ++- tools/gazetteer/join_geometry.py | 26 +- 3 files changed, 145 insertions(+), 394 deletions(-) diff --git a/tools/gazetteer/README.md b/tools/gazetteer/README.md index b5e2719b..49df442e 100644 --- a/tools/gazetteer/README.md +++ b/tools/gazetteer/README.md @@ -1,422 +1,138 @@ # Administrative area gazetteer -Resolves an OpenAgriNet `AdministrativeAreaReference` to a name, a parent chain -and a coordinate, using a cached CSV instead of a live API call. +Builds a CSV that resolves an OpenAgriNet `AdministrativeAreaReference` +(`codeScheme`, `areaCode`, `areaLevel`) to a name, parent and coordinate, so +`coverageAreas` can be resolved by lookup instead of a live API call. -```json -{ "codeScheme": "LGD", "areaCode": "466", "areaLevel": "District" } -``` - -becomes - -``` -LGD,466,District,Ahilyanagar,LGD,27,522,02Sep2026,, -19.205391,74.675231,centroid,73.614375,18.329871,75.582971,19.995188, -SOI_Districts,2023-12-11 -``` - -(one line in the file; wrapped here to fit) - -`coverageAreas` in the OpenAgriNet schema packs is a `oneOf` between a coded -`AdministrativeAreaReference` and a Beckn `GeoJSONGeometry`. Publishers prefer -the coded form: it is short, stable and human-checkable. Consumers that need to -draw a map or run a distance filter need coordinates. This tool is the bridge, -built as a refreshable snapshot rather than a service so that resolution has no -runtime dependency. - -### Where this fits - -The `AdministrativeAreaReference` contract itself lives in the -[`network-specs`](https://github.com/OpenAgriNet/network-specs) repository, under -`schema/AgricultureResource/v0.1/attributes.yaml`. This tool only produces the -lookup table; it does not define or validate the schema. - -It is a standalone build-time utility, **not part of the adapter runtime**. It is -Python in an otherwise Go repository, deliberately: it is stdlib-only, invoked by -hand or from CI when a refresh is wanted, and links nothing into the adapter -binary. Nothing under `cmd/` or `pkg/` imports it, and it adds no Go package, so -Go compilation is untouched. The output is a CSV any language can read. +Standalone build-time utility. Not a plugin, not part of the adapter runtime, +adds no Go package. Stdlib Python only. -Stdlib Python only, no pip install. Requires `bsdtar` (the default `tar` on -macOS) or `7z` to unpack `.7z` archives. Developed against Python 3.13. - ---- - -## Quick start - -Two stages, run in order: +## Steps to run ```bash cd tools/gazetteer - -# Stage 1 - codes, names, parent chain. ~30 s, writes a dated directory. -python3 build_gazetteer.py - -# Stage 2 - joins boundary geometry onto those codes and fills coordinates. -# First run downloads ~150 MB (SOI) and caches it. ~2 min warm. -python3 join_geometry.py -``` - -Result: - -``` -data/gazetteer/ - lgd-2026-09-02/ dated snapshot, never overwritten - gazetteer.csv 25,097 rows, 6.3 MB - manifest.json provenance, coverage, data-quality report - latest -> lgd-2026-09-02 stable path for consumers - .cache/ downloaded boundary layers, ~500 MB, safe to delete +python3 build_gazetteer.py && python3 join_geometry.py ``` -To refresh, re-run both stages. Each run writes its own dated directory and -never touches an earlier one, so a Resource published against an older snapshot -still resolves. Only the `latest` symlink moves. +That is the full refresh. Stage 1 pulls codes and names, stage 2 fills +coordinates. First run downloads ~150 MB and caches it; later runs reuse the +cache. -### Options - -| Flag | Stage | Default | Effect | -|---|---|---|---| -| `--date 02Sep2026` | 1 | latest available | pin a specific LGD snapshot | -| `--out DIR` | 1 | `data/gazetteer` | output root | -| `--with-villages` | 1 | off | adds ~670k Village rows; no geometry exists for them | -| `--source soi\|lgd` | 2 | `soi` | which boundary source to join (see below) | -| `--gazetteer DIR` | 2 | `data/gazetteer/latest` | snapshot to fill in place | -| `--cache DIR` | 2 | `data/gazetteer/.cache` | where boundary layers are kept | -| `--with-geometry` | 2 | off | also write `boundaries.geojsonl` (335 MB) | -| `--no-inherit` | 2 | off | leave unmatched rows empty instead of borrowing the parent point | - -Stage 2 is idempotent and re-runnable against an existing snapshot. It clears -every geometry column before joining, so switching `--source` fully replaces the -previous provenance rather than leaving a mixture. - ---- +Output — `data/gazetteer/latest/`: -## Stage 1 - `build_gazetteer.py` - -### What it pulls - -| Source | Value | +| File | Contents | |---|---| -| Authority | **LGD (Local Government Directory)**, Ministry of Panchayati Raj — | -| Accessed via | `github.com/ramSeraph/opendata`, release tag `lgd-latest-extra1` | -| Licence | GODL-India | -| Why the mirror | `lgdirectory.gov.in` has no bulk export or documented API; the mirror re-extracts it daily and publishes dated `.csv.7z` assets. The `.gov.in` origin is recorded in the manifest either way. | - -Four components are pulled by default, one optional: - -| Component | Rows | Becomes `area_level` | Code field used | -|---|---|---|---| -| `states` | 36 | `State` | State Code | -| `districts` | 784 | `District` | District Code | -| `subdistricts` | 7,092 | `Block` | Sub-district Code | -| `pincode_villages` | ~670k | `PostalCode` (17,184 unique) | Pincode | -| `villages` *(opt-in)* | ~670k | `Village` | Village Code | +| `gazetteer.csv` | 25,097 rows: Country, State, District, Block, PostalCode | +| `manifest.json` | source URLs, licence, coverage achieved, data-quality report | -Plus one synthetic row: `ISO-3166-1 / IN / Country / India`, so a country-wide -`coverageAreas` entry resolves through the same lookup. +Each run writes a new dated directory and moves the `latest` symlink. Earlier +snapshots are never overwritten, so a Resource published against an older one +still resolves. `data/` is gitignored; delete it any time and re-run. -`pincode_villages` is village-grained, so many rows share one pincode. It is -collapsed to one row per pincode, keeping the district as the parent — pincodes -are postal routes, not areas, and have no boundary data anywhere in this -pipeline. - -Two safeguards, both there because LGD's own column naming drifts: +### Options -- Header names are normalised to letters and digits only. `Sub-district Code`, - `Sub-District Code` and `SubDistrict Code` all occur across files, as do - `District Name(In English)` and `District Name (In English)`. -- If any expected level parses to zero rows the run **fails** rather than - publishing a snapshot with a level silently missing. +Defaults are correct for a normal refresh. Only these matter: -The snapshot date is the newest date for which *every* component is published. -Components are not always released in lockstep, and a half-published day would -otherwise mix a stale `districts` file into an otherwise current gazetteer. +| Flag | Effect | +|---|---| +| `join_geometry.py --source lgd` | use BharatMaps geometry: adds Block-level points, but **not openly licensed** | +| `build_gazetteer.py --with-villages` | add ~670k Village rows (no geometry exists for them) | +| `join_geometry.py --with-geometry` | also write `boundaries.geojsonl` (335 MB polygons) | --- -## Stage 2 - `join_geometry.py` - -Joins published administrative boundary polygons onto the LGD codes from stage 1 -and writes a representative point plus a bounding box for each area. - -**The join key is always the LGD code carried inside the boundary layer. Names -are never used to join.** Codes are stable; names are not. LGD district 466 is -`Ahilyanagar` today and `Ahmednagar` in every boundary layer published so far. -117 areas (SOI) or 319 (LGD) join on a stable code while carrying a different -name upstream — see *Name drift* below. +# Appendix — sources and columns -### Sources - -Both sources are mirrored from `github.com/ramSeraph/indian_admin_boundaries` -releases, because neither `.gov.in` origin is scriptable: `mapservice.gov.in` -returns `{"error":{"code":499,"message":"Token Required"}}`, and `data.gov.in` -serves a JavaScript application rather than fetchable assets. The upstream -`.gov.in` origin is recorded in the manifest for every run. +## Stage 1 — `build_gazetteer.py` -#### `--source soi` (default) +**Source:** LGD (Local Government Directory), Ministry of Panchayati Raj — +, via the `ramSeraph/opendata` daily mirror. +Licence GODL-India. *Purpose: the authoritative list of area codes and names.* -| Field | Value | +| Column | Purpose | |---|---| -| Authority | **Survey of India** — | -| Licence | **open** | -| Vintage | 2023-12-11 | +| `code_scheme` | `LGD`, `ISO-3166-1` or `IN-PIN` — matches `.codeScheme` | +| `area_code` | matches `.areaCode` | +| `area_level` | `Country` / `State` / `District` / `Block` / `Village` / `PostalCode` | +| `area_name` | matches `.areaName`, as LGD spells it | +| `parent_scheme`, `parent_code` | parent area, used as the coordinate fallback | +| `census_2011_code` | crosswalk for joining census-coded files | +| `snapshot_date`, `source_url` | which LGD snapshot and asset the row came from | -| Level | Layer asset | Features | Code field read | Name field read | -|---|---|---|---|---| -| State | `SOI_States` | 40 | `State_LGD` | `STATE` | -| District | `SOI_Districts` | 742 | `DISTRICT_L` | `District` | +Pulled per level: `states` → State, `districts` → District, `subdistricts` → +Block, `pincode_villages` → PostalCode (collapsed to one row per pincode), plus +one synthetic `ISO-3166-1 / IN` Country row. -The 4 extra features in `SOI_States` are disputed-boundary polygons -(`DISPUTED (MADHYA PRADESH & GUJARĀT)` and three similar) carrying -`State_LGD = 0`. Code `0` is explicitly skipped when joining, so they never -attach to an area — but they *are* included in the national extent, which is -correct, since they are Indian territory. +## Stage 2 — `join_geometry.py` -`SOI_Subdistricts` exists but carries only `TEHSIL_C`, a census-style code, with -no LGD field. **Block therefore cannot be joined from SOI at all** and every -Block row falls back to inheriting its district's point. +Joins boundary polygons onto the LGD codes from stage 1. **Keys on LGD codes +only, never names** — 117 areas join on a stable code while the boundary layer +spells the name differently (LGD 466 is `Ahilyanagar`, every boundary layer says +`Ahmednagar`). *Purpose: give each area a coordinate and a bounding box.* -#### `--source lgd` +Fills these columns, whichever source is used: -| Field | Value | +| Column | Purpose | |---|---| -| Authority | **BharatMaps / NIC** — `mapservice.gov.in/gismapservice/rest/services/BharatMapService/Admin_Boundary_GramPanchayat/MapServer` | -| Licence | **restricted — the upstream is not openly licensed** | -| Vintage | 2023-12-11 (states, districts), 2023-11-23 (subdistricts) | - -| Level | Layer asset | Features | Code field read | Name field read | -|---|---|---|---|---| -| State | `LGD_States` | 36 | `State_LGD` | `STNAME` | -| District | `LGD_Districts` | 785 | `dist_lgd` | `dtname` | -| Block | `LGD_Subdistricts` | 6,471 | `subdt_lgd` | `sdtname` | - -Materially better coverage — it is the only source here that can resolve Block — -but it is not open data. **Confirm licence terms before publishing derived -coordinates from this source.** This is why `soi` is the default: the open -source is what you get unless someone deliberately asks for the other one. - -### How a point is chosen - -1. **Centroid.** Area-weighted polygon centroid via the shoelace formula, with - holes subtracted and every part of a multipart shape weighted by its true - area. Computed on lon/lat treated as a plane. -2. **Interior fallback.** If that centroid falls outside the shape — normal for - a crescent-shaped district or an island group — a grid scan finds an interior - point near the largest part's centroid instead. 6 areas needed this. -3. **Country.** The `ISO-3166-1 / IN` row has no polygon of its own, so it is - derived from the union of all state geometry. -4. **Parent inheritance.** Anything still unresolved borrows its parent's point, - walked in level order so the chain works: a Block can inherit from a District - that itself only inherited from its State. Disable with `--no-inherit`. - -The planar lon/lat approximation is deliberate. Across a single Indian district -the error is well under a kilometre — irrelevant for a lookup hint, and this -point is a hint, not a measurement. Do not use these coordinates for area -calculation or as a survey reference. +| `latitude`, `longitude` | representative point, WGS84 | +| `bbox_west`, `bbox_south`, `bbox_east`, `bbox_north` | extent of the area | +| `point_method` | how the point was derived — see below | +| `geometry_source` | which boundary layer supplied it, i.e. **which licence applies** | +| `boundary_vintage` | publication date of that layer | ---- +`point_method` values: `centroid` (area-weighted, inside the shape), +`interior_grid` (centroid fell outside; interior point substituted), +`aggregate:State` (country row), `inherited:` (borrowed from an ancestor — +a coarse locator only, correct to that level's granularity). -## What gets stored - -### `gazetteer.csv` +### Sources -18 columns. The first 9 are written by stage 1, the last 9 by stage 2. +`--source soi` — **default, openly licensed.** Survey of India, +. Vintage 2023-12-11. -| Column | Written by | Meaning | +| Level | Layer | Code field read | |---|---|---| -| `code_scheme` | 1 | matches `AdministrativeAreaReference.codeScheme` — `LGD`, `ISO-3166-1` or `IN-PIN` | -| `area_code` | 1 | matches `.areaCode` | -| `area_level` | 1 | matches `.areaLevel` — `Country`/`State`/`District`/`Block`/`Village`/`PostalCode` | -| `area_name` | 1 | matches `.areaName`, as LGD spells it | -| `parent_scheme` | 1 | scheme of the parent, for the inheritance fallback | -| `parent_code` | 1 | code of the parent | -| `census_2011_code` | 1 | crosswalk for joining census-coded boundary files | -| `snapshot_date` | 1 | LGD snapshot this row came from | -| `source_url` | 1 | exact asset the row was parsed from | -| `latitude` | 2 | representative point, WGS84 decimal degrees | -| `longitude` | 2 | " | -| `point_method` | 2 | how the point was derived — vocabulary below | -| `bbox_west` | 2 | bounding box of the area's geometry | -| `bbox_south` | 2 | " | -| `bbox_east` | 2 | " | -| `bbox_north` | 2 | " | -| `geometry_source` | 2 | which boundary layer supplied the point, e.g. `SOI_Districts` | -| `boundary_vintage` | 2 | publication date of that layer | - -`geometry_source` is the column to check before trusting or redistributing a -coordinate — it names the exact layer, and therefore the licence, per row. - -#### `point_method` vocabulary - -| Value | Meaning | -|---|---| -| `centroid` | area-weighted centroid, inside the shape | -| `interior_grid` | centroid fell outside the shape; an interior point was substituted | -| `centroid_outside_shape` | centroid fell outside and no interior point was found; the centroid was kept | -| `aggregate:State` | derived from the union of all states — only the country row | -| `inherited:` | borrowed from an ancestor at ``; the point describes the parent, not this area | - -An `inherited:*` point is a coarse locator, correct only to the granularity of -the level it names. A `PostalCode` row reading `inherited:District` sits at its -district's centre, which may be tens of kilometres from the actual post office. -Filter on `point_method` when precision matters. - -### `manifest.json` - -Provenance and a self-assessment for each snapshot. Stage 1 writes the -top-level keys; stage 2 adds the `geometry` block. - -| Key | Contents | -|---|---| -| `snapshot_date`, `lgd_snapshot` | ISO date and the LGD asset date it came from | -| `provenance` | LGD authority URL, mirror and licence | -| `components` | exact download URL per component | -| `row_count`, `rows_by_level` | what was produced | -| `geometry_populated` | whether stage 2 has run | -| `geometry.source`, `.source_label`, `.licence`, `.upstream`, `.mirror` | which boundary source and **under what licence** | -| `geometry.layers` | asset name and vintage per level | -| `geometry.join_key`, `.point_definition` | how the join and the point were computed | -| `geometry.coverage` | per level: total, matched, inherited, empty | -| `geometry.name_drift_count` | areas joined on code but named differently upstream | -| `geometry.parent_containment_check` | rows checked, violations, and the full outlier list | - -### `boundaries.geojsonl` (optional, `--with-geometry`) - -One GeoJSON feature per line, for every joined area, with the gazetteer's -`code_scheme` / `area_code` / `area_level` injected into each feature's -properties. 6,953 features / 335 MB under `--source lgd`. Only worth generating -if you actually need to draw or intersect polygons; the CSV point plus bbox -covers lookup and coarse filtering. - -### `.cache/` - -Downloaded `.7z` archives and the layers extracted from them, ~500 MB -(`LGD_Subdistricts.geojsonl` alone is 263 MB). Safe to delete at any time; the -next run re-downloads. A cached layer is validated by reading its tail before -being reused — a download truncated by an interrupted run is detected and -refetched rather than silently producing a smaller join. - ---- - -## Measured coverage - -`--source soi` (open, the default): +| State | `SOI_States` | `State_LGD` | +| District | `SOI_Districts` | `DISTRICT_L` | -| Level | Rows | Joined | Inherited | Empty | Joined % | -|---|---|---|---|---|---| -| Country | 1 | 1 | 0 | 0 | 100.0% | -| State | 36 | 36 | 0 | 0 | 100.0% | -| District | 784 | 728 | 56 | 0 | 92.9% | -| Block | 7,092 | 0 | 7,092 | 0 | 0.0% | -| PostalCode | 17,184 | 0 | 17,184 | 0 | 0.0% | +`SOI_Subdistricts` carries no LGD field, so **Block cannot be joined from SOI** +and inherits its district's point. -`--source lgd` (restricted): +`--source lgd` — **not openly licensed; confirm terms before publishing derived +coordinates.** BharatMaps / NIC, `mapservice.gov.in`. Vintage 2023-11/12. -| Level | Rows | Joined | Inherited | Empty | Joined % | -|---|---|---|---|---|---| -| Country | 1 | 1 | 0 | 0 | 100.0% | -| State | 36 | 36 | 0 | 0 | 100.0% | -| District | 784 | 771 | 13 | 0 | 98.3% | -| Block | 7,092 | 6,117 | 975 | 0 | 86.3% | -| PostalCode | 17,184 | 0 | 17,184 | 0 | 0.0% | - -Every row resolves to *some* coordinate under both sources; none are empty. The -gap between the two is Block: 6,117 real block-level points versus none. - -`PostalCode` never joins under either source, because no source here publishes -pincode boundaries. Those 17,184 rows always carry their district's point. - -Districts that do not join are mostly recent splits — the boundary layers are -from 2023 and LGD has created districts since. They inherit their state's point. - ---- - -## Data quality - -### Name drift - -117 areas (SOI) or 319 (LGD) join on a stable code while the boundary layer -spells the name differently: - -``` -State LGD 35 gazetteer='Andaman And Nicobar Islands' boundary='ANDAMAN & NICOBAR' -District LGD 502 gazetteer='Ananthapuramu' boundary='ANANTAPUR' -District LGD 291 gazetteer='Kamrup' boundary='KAMRUP RURAL' -``` - -Every one of these would have failed a name-based join. They are reported, not -corrected: LGD's spelling is authoritative for the gazetteer. Pure diacritic -differences (`GUJARĀT` vs `Gujarat`) are folded out before counting, so the -reported figure is genuine drift rather than transliteration noise. - -### Parent containment - -Every joined point is checked against its parent's bounding box. Under `soi`, -764/764 are clean. Under `lgd`, 7 of 6,866 fall outside: - -| Level | Code | Name | Parent | km outside | Assessment | -|---|---|---|---|---|---| -| District | 766 | Mauganj | Madhya Pradesh | 1,069 | **upstream error** — polygon sits in Arunachal Pradesh | -| Block | 3477 | Mauganj | Mauganj (766) | 1,211 | artifact of 766; the block itself is correctly near Rewa | -| Block | 3478 | Naigarhi | Mauganj (766) | 1,210 | artifact of 766 | -| Block | 3476 | Hanumana | Mauganj (766) | 1,182 | artifact of 766 | -| Block | 2109 | Katlichara | Hailakandi | 251 | **upstream error** | -| Block | 5908 | Yanam | Puducherry | 577 | **correct** — genuine Puducherry exclave | -| Block | 5913 | Mahe | Puducherry | 441 | **correct** — genuine Puducherry exclave | - -**Outliers are reported, never repaired.** The two situations produce an -identical signal and cannot be told apart automatically: district 766's polygon -really is in the wrong state, while Mahe and Yanam really are hundreds of -kilometres from Puducherry proper. Substituting the parent's point would fix the -first case and corrupt the second. The full list goes to the manifest for a -human to adjudicate. +| Level | Layer | Code field read | +|---|---|---| +| State | `LGD_States` | `State_LGD` | +| District | `LGD_Districts` | `dist_lgd` | +| Block | `LGD_Subdistricts` | `subdt_lgd` | -All points under both sources fall inside India's plausible envelope -(6.0–37.5 N, 68.0–97.5 E). +Both are mirrored from `ramSeraph/indian_admin_boundaries` because neither +`.gov.in` origin is scriptable — `mapservice.gov.in` requires a token and +`data.gov.in` serves a JavaScript app. The `.gov.in` origin is recorded in the +manifest. ---- +### Coverage -## Licence summary - -| Source | Levels resolvable | Licence | Publishable? | +| Level | Rows | `soi` joined | `lgd` joined | |---|---|---|---| -| LGD codes and names (stage 1) | all | GODL-India | yes | -| Survey of India boundaries | State, District | open | yes | -| BharatMaps / NIC boundaries | State, District, **Block** | restricted | **confirm first** | - -Stage 2 defaults to `soi` so an ordinary run produces openly licensed -coordinates. Choosing `--source lgd` buys Block-level precision and takes on a -licence question; the manifest records that choice, its licence string and a -warning on every run, and `geometry_source` records it per row. - ---- - -## Troubleshooting - -| Symptom | Cause and fix | -|---|---| -| `no gazetteer at .../gazetteer.csv` | stage 2 ran before stage 1; run `build_gazetteer.py` | -| `no single date has all core components published` | LGD mirror is mid-publish; retry later or pin `--date` | -| `no rows produced for: ` | LGD renamed a column; extend the candidates in `pick()` | -| `: no areas carried field ''` | the boundary layer's schema changed; check `SOURCES` in `join_geometry.py` | -| `cached copy is truncated, refetching` | informational; a prior download was interrupted and is being repaired | -| `extracted file is truncated` | delete the named `.7z` and `.geojsonl` from `.cache/` and retry | -| `need bsdtar or 7z to extract .7z` | install `p7zip`; macOS's stock `tar` already handles it | - -Large layers take minutes to download and extract. `LGD_Subdistricts` is 263 MB -extracted; allow several minutes on a cold cache and do not interrupt it. - ---- - -## Limits - -- **Vintage mismatch is structural.** Codes refresh daily; boundaries are from - 2023. New districts will keep appearing with no polygon to join, and will - inherit their state's point until the boundary layers are republished. -- **No Village geometry** from any source here, even with `--with-villages`. -- **No PostalCode geometry** from any source here. -- Points are lookup hints computed on a planar lon/lat approximation. Not for - measurement, area calculation or survey use. -- Boundary layers are mirrored from GitHub, not fetched from `.gov.in`, because - the government endpoints are not scriptable. The `.gov.in` origin is recorded - in the manifest; the mirror is the delivery mechanism, not the authority. +| State | 36 | 36 | 36 | +| District | 784 | 728 | 771 | +| Block | 7,092 | 0 | 6,117 | +| PostalCode | 17,184 | 0 | 0 | + +No row is ever left empty — anything unjoined inherits its parent's point. +PostalCode never joins because no source publishes pincode boundaries. +Unjoined districts are recent splits that postdate the 2023 boundary layers. + +### Known outliers + +Under `--source lgd`, 7 of 6,866 points fall outside their parent's box. Two are +genuine upstream errors (district 766 Mauganj's polygon sits in Arunachal +Pradesh; block 2109 Katlichara), three are knock-ons of 766, and two are correct +— Mahe and Yanam really are exclaves of Puducherry. They are reported in the +manifest, never auto-corrected: repairing the errors would corrupt the exclaves. +`--source soi` is clean at 764/764. + +Points are lookup hints computed on a planar lon/lat approximation. Not for +measurement or survey use. diff --git a/tools/gazetteer/build_gazetteer.py b/tools/gazetteer/build_gazetteer.py index a6d3f82a..87de28de 100644 --- a/tools/gazetteer/build_gazetteer.py +++ b/tools/gazetteer/build_gazetteer.py @@ -32,6 +32,7 @@ import subprocess import sys import tempfile +import time import urllib.error import urllib.request from pathlib import Path @@ -131,15 +132,37 @@ def extract(archive, dest): sys.exit("need bsdtar or 7z to extract .7z archives") +def fetch_to_file(url, dest, what, attempts=3): + """Download url to dest, retrying transient network failures. + + A refresh pulls several large archives from a CDN, and a single dropped + TLS connection would otherwise abort the whole run. HTTP status errors are + not retried: a 404 means the asset genuinely is not published, and asking + again will not change that. + """ + req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) + for attempt in range(1, attempts + 1): + try: + with urllib.request.urlopen(req, timeout=300) as r, open(dest, "wb") as f: + shutil.copyfileobj(r, f) + return + except urllib.error.HTTPError as e: + sys.exit(f"{what} not available ({e.code}): {url}") + except (urllib.error.URLError, TimeoutError, OSError) as e: + dest.unlink(missing_ok=True) # never leave a partial file behind + if attempt == attempts: + sys.exit(f"{what}: download failed after {attempts} attempts " + f"({e}): {url}") + wait = 2 ** attempt + log(f"{what}: {e} - retrying in {wait}s " + f"({attempt}/{attempts - 1} retries used)") + time.sleep(wait) + + def download_component(component, date, workdir): url = f"{BASE}/{component}.{date}.csv.7z" archive = workdir / f"{component}.7z" - req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) - try: - with urllib.request.urlopen(req, timeout=300) as r, open(archive, "wb") as f: - shutil.copyfileobj(r, f) - except urllib.error.HTTPError as e: - sys.exit(f"{component} {date} not available ({e.code}): {url}") + fetch_to_file(url, archive, f"{component} {date}") extract(archive, workdir) csvs = list(workdir.glob(f"{component}.{date}.csv")) diff --git a/tools/gazetteer/join_geometry.py b/tools/gazetteer/join_geometry.py index 4c817568..20d27ad4 100644 --- a/tools/gazetteer/join_geometry.py +++ b/tools/gazetteer/join_geometry.py @@ -42,6 +42,7 @@ import shutil import subprocess import sys +import time import unicodedata import urllib.error import urllib.request @@ -375,13 +376,24 @@ def ensure_layer(tag, stem, cache): if not archive.exists(): url = f"{BASE}/{tag}/{stem}.geojsonl.7z" req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) - try: - with urllib.request.urlopen(req, timeout=900) as r, open(archive, "wb") as f: - shutil.copyfileobj(r, f) - except urllib.error.HTTPError as e: - sys.exit(f"{stem} not available ({e.code}): {url}") - except urllib.error.URLError as e: - sys.exit(f"{stem} download failed: {e}") + # Retry transient failures. These layers are up to 263 MB, so a dropped + # connection part-way through is likely enough to be worth handling + # rather than aborting a refresh that has already done real work. + for attempt in range(1, 4): + try: + with urllib.request.urlopen(req, timeout=900) as r, \ + open(archive, "wb") as f: + shutil.copyfileobj(r, f) + break + except urllib.error.HTTPError as e: + sys.exit(f"{stem} not available ({e.code}): {url}") + except (urllib.error.URLError, TimeoutError, OSError) as e: + archive.unlink(missing_ok=True) + if attempt == 3: + sys.exit(f"{stem}: download failed after 3 attempts ({e})") + wait = 2 ** attempt + log(f"{stem}: {e} - retrying in {wait}s") + time.sleep(wait) log(f"{stem:<20} downloaded {archive.stat().st_size / 1e6:,.1f} MB") extract(archive, cache) From e482e91a98adeb02c859c0da76f18793aeb78284 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 14:43:08 +0530 Subject: [PATCH 03/12] chore(tools): commit the generated gazetteer snapshot Adds the built lookup table so consumers can use it without running the pipeline: 25,097 rows resolving Country, State, District, Block and PostalCode to a name, parent and coordinate. Geometry is from Survey of India (openly licensed); every row records its source layer in geometry_source. The download cache (~500 MB) and the optional boundaries.geojsonl export (335 MB) remain gitignored, as both are reproducible from the scripts. --- tools/gazetteer/.gitignore | 10 +- tools/gazetteer/data/gazetteer/latest | 1 + .../gazetteer/lgd-2026-09-02/gazetteer.csv | 25098 ++++++++++++++++ .../gazetteer/lgd-2026-09-02/manifest.json | 81 + 4 files changed, 25186 insertions(+), 4 deletions(-) create mode 120000 tools/gazetteer/data/gazetteer/latest create mode 100644 tools/gazetteer/data/gazetteer/lgd-2026-09-02/gazetteer.csv create mode 100644 tools/gazetteer/data/gazetteer/lgd-2026-09-02/manifest.json diff --git a/tools/gazetteer/.gitignore b/tools/gazetteer/.gitignore index be1ff0e2..25418852 100644 --- a/tools/gazetteer/.gitignore +++ b/tools/gazetteer/.gitignore @@ -1,4 +1,6 @@ -# Generated snapshots and the boundary-layer download cache. Both are -# reproducible by re-running build_gazetteer.py and join_geometry.py, and the -# cache alone is ~500 MB. -data/ +# Boundary-layer download cache: ~500 MB and fully re-downloadable by re-running +# join_geometry.py. Never commit this. +data/gazetteer/.cache/ + +# Optional polygon export, written only with --with-geometry: 335 MB. +boundaries.geojsonl diff --git a/tools/gazetteer/data/gazetteer/latest b/tools/gazetteer/data/gazetteer/latest new file mode 120000 index 00000000..01db3ce4 --- /dev/null +++ b/tools/gazetteer/data/gazetteer/latest @@ -0,0 +1 @@ +lgd-2026-09-02 \ No newline at end of file diff --git a/tools/gazetteer/data/gazetteer/lgd-2026-09-02/gazetteer.csv b/tools/gazetteer/data/gazetteer/lgd-2026-09-02/gazetteer.csv new file mode 100644 index 00000000..d93fd9b0 --- /dev/null +++ b/tools/gazetteer/data/gazetteer/lgd-2026-09-02/gazetteer.csv @@ -0,0 +1,25098 @@ +code_scheme,area_code,area_level,area_name,parent_scheme,parent_code,census_2011_code,snapshot_date,source_url,latitude,longitude,point_method,bbox_west,bbox_south,bbox_east,bbox_north,geometry_source,boundary_vintage +ISO-3166-1,IN,Country,India,,,,02Sep2026,static,23.382088,79.485000,aggregate:State,68.177512,6.752783,97.412897,37.088342,SOI_States,2023-12-11 +LGD,35,State,Andaman And Nicobar Islands,ISO-3166-1,IN,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,12.603196,92.829514,centroid,92.195893,6.752783,94.267398,13.677059,SOI_States,2023-12-11 +LGD,28,State,Andhra Pradesh,ISO-3166-1,IN,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,15.753511,79.962484,centroid,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,12,State,Arunachal Pradesh,ISO-3166-1,IN,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,28.035268,94.673960,centroid,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,18,State,Assam,ISO-3166-1,IN,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.355278,92.827110,centroid,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +LGD,10,State,Bihar,ISO-3166-1,IN,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,25.678945,85.609012,centroid,83.320216,24.286006,88.293796,27.521777,SOI_States,2023-12-11 +LGD,4,State,Chandigarh,ISO-3166-1,IN,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_States,2023-12-11 +LGD,22,State,Chhattisgarh,ISO-3166-1,IN,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,21.265915,82.041059,centroid,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,7,State,Delhi,ISO-3166-1,IN,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,28.643370,77.115437,centroid,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,30,State,Goa,ISO-3166-1,IN,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,15.365280,74.049474,centroid,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +LGD,24,State,Gujarat,ISO-3166-1,IN,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,22.692625,71.595166,centroid,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,6,State,Haryana,ISO-3166-1,IN,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,29.197675,76.340342,centroid,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +LGD,2,State,Himachal Pradesh,ISO-3166-1,IN,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,31.925300,77.248411,centroid,75.594593,30.377336,79.008917,33.256426,SOI_States,2023-12-11 +LGD,1,State,Jammu And Kashmir,ISO-3166-1,IN,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,33.675618,74.859285,centroid,73.396060,32.276005,76.779413,35.130068,SOI_States,2023-12-11 +LGD,20,State,Jharkhand,ISO-3166-1,IN,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.656374,85.564266,centroid,83.329346,21.970129,87.962825,25.349181,SOI_States,2023-12-11 +LGD,29,State,Karnataka,ISO-3166-1,IN,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,14.710573,76.167282,centroid,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +LGD,32,State,Kerala,ISO-3166-1,IN,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.452100,76.407182,centroid,74.864337,8.293018,77.412396,12.795535,SOI_States,2023-12-11 +LGD,37,State,Ladakh,ISO-3166-1,IN,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,34.948731,76.794070,centroid,72.512762,32.335694,80.345084,37.088342,SOI_States,2023-12-11 +LGD,31,State,Lakshadweep,ISO-3166-1,IN,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_States,2023-12-11 +LGD,23,State,Madhya Pradesh,ISO-3166-1,IN,23,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.538142,78.289776,centroid,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,27,State,Maharashtra,ISO-3166-1,IN,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,19.451683,76.107454,centroid,72.641991,15.606085,80.897684,22.030269,SOI_States,2023-12-11 +LGD,14,State,Manipur,ISO-3166-1,IN,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,24.733858,93.878817,centroid,92.969434,23.832848,94.744890,25.692090,SOI_States,2023-12-11 +LGD,17,State,Meghalaya,ISO-3166-1,IN,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,25.535419,91.278401,centroid,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 +LGD,15,State,Mizoram,ISO-3166-1,IN,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.306959,92.831811,centroid,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +LGD,13,State,Nagaland,ISO-3166-1,IN,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.062153,94.466308,centroid,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,21,State,Odisha,ISO-3166-1,IN,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,20.511652,84.426842,centroid,81.388378,17.812450,87.486135,22.567507,SOI_States,2023-12-11 +LGD,34,State,Puducherry,ISO-3166-1,IN,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.933465,79.802983,centroid,75.526556,10.827383,82.310616,16.763695,SOI_States,2023-12-11 +LGD,3,State,Punjab,ISO-3166-1,IN,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.842128,75.415888,centroid,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +LGD,8,State,Rajasthan,ISO-3166-1,IN,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.584176,73.849855,centroid,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,11,State,Sikkim,ISO-3166-1,IN,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,27.570188,88.473019,centroid,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +LGD,33,State,Tamil Nadu,ISO-3166-1,IN,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,11.015873,78.407996,centroid,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +LGD,36,State,Telangana,ISO-3166-1,IN,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,17.800653,79.009116,centroid,77.235761,15.836003,81.322641,19.916807,SOI_States,2023-12-11 +LGD,38,State,The Dadra And Nagar Haveli And Daman And Diu,ISO-3166-1,IN,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,20.191077,73.058434,interior_grid,70.870788,20.047018,73.218192,20.771437,SOI_States,2023-12-11 +LGD,16,State,Tripura,ISO-3166-1,IN,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.745620,91.740747,centroid,91.149198,22.938351,92.332057,24.531867,SOI_States,2023-12-11 +LGD,5,State,Uttarakhand,ISO-3166-1,IN,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.156322,79.207366,centroid,77.572316,28.722831,81.046605,31.462080,SOI_States,2023-12-11 +LGD,9,State,Uttar Pradesh,ISO-3166-1,IN,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.923320,80.565958,centroid,77.083948,23.870110,84.634660,30.406276,SOI_States,2023-12-11 +LGD,19,State,West Bengal,ISO-3166-1,IN,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.808568,87.988173,centroid,85.819673,21.527082,89.882602,27.221067,SOI_States,2023-12-11 +LGD,603,District,Nicobars,LGD,35,638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,7.024826,93.799023,centroid,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 +LGD,632,District,North And Middle Andaman,LGD,35,639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.842528,92.870475,centroid,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +LGD,602,District,South Andamans,LGD,35,640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.523693,92.648491,centroid,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +LGD,745,District,Alluri Sitharama Raju,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,744,District,Anakapalli,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,502,District,Ananthapuramu,LGD,28,553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.493043,77.566974,centroid,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,753,District,Annamayya,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,750,District,Bapatla,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,503,District,Chittoor,LGD,28,554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.464938,79.005997,centroid,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,747,District,Dr. B.R. Ambedkar Konaseema,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,505,District,East Godavari,LGD,28,545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.272008,81.893276,centroid,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,748,District,Eluru,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,506,District,Guntur,LGD,28,548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.293106,80.078833,centroid,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,746,District,Kakinada,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,510,District,Krishna,LGD,28,547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.555707,80.797994,centroid,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,511,District,Kurnool,LGD,28,552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.535569,78.012995,centroid,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,790,District,Markapuram,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,755,District,Nandyal,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,749,District,Ntr,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,751,District,Palnadu,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,743,District,Parvathipuram Manyam,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,791,District,Polavaram,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,517,District,Prakasam,LGD,28,549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.616202,79.515203,centroid,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,519,District,Srikakulam,LGD,28,542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.597701,84.022731,centroid,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,515,District,Sri Potti Sriramulu Nellore,LGD,28,550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.418363,79.738935,centroid,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,754,District,Sri Sathya Sai,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,752,District,Tirupati,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,520,District,Visakhapatnam,LGD,28,544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.893416,82.693925,centroid,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,521,District,Vizianagaram,LGD,28,543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.472878,83.385198,centroid,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,523,District,West Godavari,LGD,28,546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.931401,81.387360,centroid,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,504,District,Y.S.R. Kadapa,LGD,28,551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.463753,78.780374,centroid,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,628,District,Anjaw,LGD,12,260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.066616,96.856247,centroid,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,787,District,Bichom,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,229,District,Changlang,LGD,12,253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.369957,96.353040,centroid,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,230,District,Dibang Valley,LGD,12,257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.868333,95.909961,centroid,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 +LGD,231,District,East Kameng,LGD,12,247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.587861,92.917506,centroid,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,232,District,East Siang,LGD,12,251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.048218,95.354000,centroid,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +LGD,718,District,Kamle,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.741518,94.078176,centroid,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 +LGD,786,District,Keyi Panyor,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,677,District,Kra Daadi,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.017789,93.672960,centroid,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +LGD,233,District,Kurung Kumey,LGD,12,256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.002616,93.206931,centroid,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,724,District,Leparada,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.925491,94.716086,centroid,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 +LGD,234,District,Lohit,LGD,12,259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.929436,96.300479,centroid,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 +LGD,666,District,Longding,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.855201,95.327659,centroid,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 +LGD,235,District,Lower Dibang Valley,LGD,12,258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.254737,95.821628,centroid,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +LGD,719,District,Lower Siang,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.775244,94.694459,centroid,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,236,District,Lower Subansiri,LGD,12,255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.588340,93.776522,centroid,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11 +LGD,678,District,Namsai,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.701176,96.043183,centroid,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 +LGD,723,District,Pakke Kessang,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.105402,93.035255,centroid,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 +LGD,237,District,Papum Pare,LGD,12,248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.270137,93.596281,centroid,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,725,District,Shi Yomi,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.676965,94.260983,centroid,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 +LGD,679,District,Siang,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.404385,94.808912,centroid,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,238,District,Tawang,LGD,12,245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.662208,91.965169,centroid,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,239,District,Tirap,LGD,12,254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.024225,95.543181,centroid,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,240,District,Upper Siang,LGD,12,252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.832949,94.915294,centroid,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,241,District,Upper Subansiri,LGD,12,249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.289938,93.929551,centroid,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,242,District,West Kameng,LGD,12,246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.291857,92.393051,centroid,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,243,District,West Siang,LGD,12,250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.159942,94.613450,interior_grid,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,739,District,Bajali,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +LGD,616,District,Baksa,LGD,18,324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.660208,91.351220,centroid,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +LGD,280,District,Barpeta,LGD,18,303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.341730,91.003652,centroid,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +LGD,705,District,Biswanath,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.812104,93.312825,centroid,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +LGD,281,District,Bongaigaon,LGD,18,319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.354045,90.614044,centroid,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +LGD,282,District,Cachar,LGD,18,316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.812469,92.854835,centroid,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +LGD,708,District,Charaideo,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.067765,95.059768,centroid,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +LGD,612,District,Chirang,LGD,18,320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.659673,90.595862,centroid,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +LGD,283,District,Darrang,LGD,18,325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.447690,92.029452,centroid,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +LGD,284,District,Dhemaji,LGD,18,308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.589777,94.774961,centroid,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +LGD,285,District,Dhubri,LGD,18,301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.142595,90.042012,interior_grid,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,286,District,Dibrugarh,LGD,18,310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.366986,95.053106,centroid,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +LGD,299,District,Dima Hasao,LGD,18,315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.377940,93.030966,centroid,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +LGD,287,District,Goalpara,LGD,18,302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.050242,90.607466,centroid,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +LGD,288,District,Golaghat,LGD,18,313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.443087,93.831353,centroid,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +LGD,289,District,Hailakandi,LGD,18,318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.497097,92.587787,centroid,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +LGD,709,District,Hojai,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.978201,92.979926,centroid,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +LGD,290,District,Jorhat,LGD,18,312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.695491,94.276417,centroid,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +LGD,291,District,Kamrup,LGD,18,321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.100380,91.416295,centroid,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,618,District,Kamrup Metro,LGD,18,322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.128528,91.891940,centroid,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +LGD,292,District,Karbi Anglong,LGD,18,314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.156857,93.404795,centroid,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +LGD,294,District,Kokrajhar,LGD,18,300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.492770,90.118799,centroid,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +LGD,295,District,Lakhimpur,LGD,18,307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.174006,94.140707,centroid,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +LGD,706,District,Majuli,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.938190,94.171745,centroid,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 +LGD,296,District,Marigaon,LGD,18,304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.281812,92.284050,centroid,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +LGD,297,District,Nagaon,LGD,18,305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.362398,92.753571,centroid,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +LGD,298,District,Nalbari,LGD,18,323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.370536,91.382421,centroid,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +LGD,300,District,Sivasagar,LGD,18,311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.970450,94.664944,centroid,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +LGD,301,District,Sonitpur,LGD,18,306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.758534,92.651006,centroid,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +LGD,707,District,South Salmara Mancachar,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.778073,89.931723,centroid,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 +LGD,293,District,Sribhumi,LGD,18,317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.579503,92.379052,centroid,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +LGD,756,District,Tamulpur,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +LGD,302,District,Tinsukia,LGD,18,309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.579952,95.619579,centroid,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +LGD,617,District,Udalguri,LGD,18,326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.730123,92.031407,centroid,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +LGD,710,District,West Karbi Anglong,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.849996,92.532969,centroid,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11 +LGD,188,District,Araria,LGD,10,209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.198668,87.363318,centroid,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,611,District,Arwal,LGD,10,240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.163235,84.677455,centroid,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +LGD,189,District,Aurangabad,LGD,10,235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.790895,84.408740,centroid,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,190,District,Banka,LGD,10,225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.854081,86.837107,centroid,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,191,District,Begusarai,LGD,10,222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.496664,86.129714,centroid,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,192,District,Bhagalpur,LGD,10,224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.269569,87.082847,centroid,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,193,District,Bhojpur,LGD,10,231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.470829,84.542485,centroid,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,194,District,Buxar,LGD,10,232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.491965,84.099685,centroid,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,195,District,Darbhanga,LGD,10,215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.084387,86.054245,centroid,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,196,District,Gaya,LGD,10,236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.696793,84.934254,centroid,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,197,District,Gopalganj,LGD,10,217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.443845,84.373836,centroid,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,198,District,Jamui,LGD,10,238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.783624,86.293785,centroid,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,199,District,Jehanabad,LGD,10,239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.155070,85.016832,centroid,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +LGD,200,District,Kaimur (Bhabua),LGD,10,233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.991849,83.605603,centroid,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,201,District,Katihar,LGD,10,212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.548653,87.640579,centroid,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,202,District,Khagaria,LGD,10,223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.511006,86.601532,centroid,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +LGD,203,District,Kishanganj,LGD,10,210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.296361,87.935551,centroid,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +LGD,204,District,Lakhisarai,LGD,10,227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.161234,86.136725,centroid,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +LGD,205,District,Madhepura,LGD,10,213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.822712,86.898913,centroid,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,206,District,Madhubani,LGD,10,207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.402234,86.221843,centroid,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,207,District,Munger,LGD,10,226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.210030,86.526055,centroid,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,208,District,Muzaffarpur,LGD,10,216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.152133,85.328539,centroid,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,209,District,Nalanda,LGD,10,229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.219052,85.450164,centroid,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,210,District,Nawada,LGD,10,237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.811001,85.589668,centroid,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,211,District,Pashchim Champaran,LGD,10,203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.079822,84.338905,centroid,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,212,District,Patna,LGD,10,230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.455947,85.223570,centroid,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,213,District,Purbi Champaran,LGD,10,204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.618344,84.921996,centroid,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,214,District,Purnia,LGD,10,211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.815393,87.405089,centroid,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,215,District,Rohtas,LGD,10,234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.979822,84.025967,centroid,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,216,District,Saharsa,LGD,10,214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.814227,86.590738,centroid,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,217,District,Samastipur,LGD,10,221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.772996,85.865723,centroid,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,218,District,Saran,LGD,10,219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.905685,84.823193,centroid,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,219,District,Sheikhpura,LGD,10,228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.123650,85.838344,centroid,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +LGD,220,District,Sheohar,LGD,10,205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.497836,85.301880,centroid,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +LGD,221,District,Sitamarhi,LGD,10,206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.585083,85.552608,centroid,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,222,District,Siwan,LGD,10,218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.161266,84.386962,centroid,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,223,District,Supaul,LGD,10,208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.245094,86.808186,centroid,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,224,District,Vaishali,LGD,10,220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.763071,85.368195,centroid,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,44,District,Chandigarh,LGD,4,55,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11 +LGD,646,District,Balod,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.741641,81.188372,centroid,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +LGD,644,District,Balodabazar-Bhatapara,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.582031,82.327512,centroid,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,649,District,Balrampur-Ramanujganj,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.592678,83.501241,centroid,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,374,District,Bastar,LGD,22,414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.095835,81.867804,centroid,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,650,District,Bemetara,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.660879,81.469869,centroid,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,636,District,Bijapur,LGD,22,417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.860867,80.800554,centroid,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +LGD,375,District,Bilaspur,LGD,22,406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.179960,82.115906,centroid,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,376,District,Dakshin Bastar Dantewada,LGD,22,416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.804749,81.390283,centroid,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +LGD,377,District,Dhamtari,LGD,22,412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.555245,81.808854,centroid,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +LGD,378,District,Durg,LGD,22,409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.220343,81.383275,centroid,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +LGD,645,District,Gariyaband,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.448083,82.235234,centroid,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +LGD,734,District,Gaurela-Pendra-Marwahi,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.804965,81.998854,centroid,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 +LGD,379,District,Janjgir-Champa,LGD,22,405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.921350,82.592276,centroid,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,380,District,Jashpur,LGD,22,402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.801105,83.862511,centroid,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,382,District,Kabeerdham,LGD,22,407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.092525,81.222508,centroid,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,759,District,Khairagarh-Chhuikhadan-Gandai,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,643,District,Kondagaon,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.745701,81.664919,centroid,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +LGD,383,District,Korba,LGD,22,404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.534684,82.608204,centroid,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,384,District,Korea,LGD,22,400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.469802,82.235279,centroid,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +LGD,385,District,Mahasamund,LGD,22,411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.207969,82.608312,centroid,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +LGD,760,District,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,761,District,Mohla-Manpur-Ambagarh Chouki,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,647,District,Mungeli,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.240399,81.730560,centroid,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +LGD,637,District,Narayanpur,LGD,22,415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.570198,81.085072,centroid,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 +LGD,386,District,Raigarh,LGD,22,403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.085227,83.303068,centroid,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,387,District,Raipur,LGD,22,410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.285804,81.820087,centroid,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,388,District,Rajnandgaon,LGD,22,408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.039397,80.820053,centroid,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +LGD,762,District,Sakti,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,763,District,Sarangarh-Bilaigarh,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,642,District,Sukma,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.272188,81.365650,centroid,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +LGD,648,District,Surajpur,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.401996,82.883600,centroid,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,389,District,Surguja,LGD,22,401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.928368,83.227178,centroid,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,381,District,Uttar Bastar Kanker,LGD,22,413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.137568,81.122709,centroid,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,77,District,Central,LGD,7,95,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.681583,77.224161,centroid,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11 +LGD,796,District,Central North,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,78,District,East,LGD,7,93,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.622088,77.304590,centroid,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 +LGD,79,District,New Delhi,LGD,7,94,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.577155,77.148588,centroid,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11 +LGD,80,District,North,LGD,7,91,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.793505,77.107739,centroid,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 +LGD,81,District,North East,LGD,7,92,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.722615,77.256547,centroid,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 +LGD,82,District,North West,LGD,7,90,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.725251,77.043125,centroid,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 +LGD,795,District,Old Delhi,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,794,District,Outer North,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,83,District,South,LGD,7,98,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.481463,77.190717,centroid,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +LGD,670,District,South East,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.542227,77.272944,centroid,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 +LGD,84,District,South West,LGD,7,97,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.576241,76.967730,centroid,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +LGD,85,District,West,LGD,7,96,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.655426,77.063965,centroid,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 +LGD,793,District,Kushavati,LGD,30,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +LGD,551,District,North Goa,LGD,30,585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.549741,73.976654,centroid,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +LGD,552,District,South Goa,LGD,30,586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.200426,74.114554,centroid,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +LGD,438,District,Ahmedabad,LGD,24,474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.756916,72.243635,centroid,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,439,District,Amreli,LGD,24,480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.425061,71.242250,centroid,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,440,District,Anand,LGD,24,482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.426788,72.750860,centroid,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,672,District,Arvalli,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.460770,73.333057,centroid,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,441,District,Banas Kantha,LGD,24,469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.287309,72.023840,centroid,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,442,District,Bharuch,LGD,24,488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.781624,72.940813,centroid,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,443,District,Bhavnagar,LGD,24,481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.567255,71.890807,centroid,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,676,District,Botad,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.111237,71.675173,centroid,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +LGD,668,District,Chhotaudepur,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.219363,73.873322,centroid,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +LGD,445,District,Dahod,LGD,24,485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.860252,74.112368,centroid,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,444,District,Dangs,LGD,24,489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.804932,73.700704,centroid,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +LGD,674,District,Devbhumi Dwarka,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.123915,69.460359,centroid,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +LGD,446,District,Gandhinagar,LGD,24,473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.255060,72.691828,centroid,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +LGD,675,District,Gir Somnath,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.904305,70.754896,centroid,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +LGD,447,District,Jamnagar,LGD,24,477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.284992,70.195152,centroid,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +LGD,448,District,Junagadh,LGD,24,479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.322204,70.484799,centroid,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,449,District,Kachchh,LGD,24,468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.649743,69.939927,centroid,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,450,District,Kheda,LGD,24,483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.837464,72.950496,centroid,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,451,District,Mahesana,LGD,24,471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.609492,72.466734,centroid,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,669,District,Mahisagar,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.187631,73.647054,centroid,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,673,District,Morbi,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.834967,70.903505,centroid,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +LGD,452,District,Narmada,LGD,24,487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.736946,73.644961,centroid,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +LGD,453,District,Navsari,LGD,24,490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.815302,73.092556,centroid,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +LGD,454,District,Panch Mahals,LGD,24,484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.719962,73.625560,centroid,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,455,District,Patan,LGD,24,470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.770377,71.758662,centroid,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,456,District,Porbandar,LGD,24,478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.654830,69.777118,centroid,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +LGD,457,District,Rajkot,LGD,24,476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.025462,70.744479,centroid,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,458,District,Sabar Kantha,LGD,24,472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.804138,73.036193,centroid,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,459,District,Surat,LGD,24,492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.268923,73.071114,centroid,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,460,District,Surendranagar,LGD,24,475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.765832,71.593076,centroid,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,641,District,Tapi,LGD,24,493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.191623,73.626694,centroid,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,461,District,Vadodara,LGD,24,486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.248056,73.239088,centroid,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,462,District,Valsad,LGD,24,491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.418149,73.120123,centroid,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,789,District,Vav-Tharad,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,58,District,Ambala,LGD,6,70,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.328333,76.938819,centroid,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +LGD,59,District,Bhiwani,LGD,6,81,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.779986,75.890362,centroid,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +LGD,701,District,Charkhi Dadri,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.576821,76.153473,centroid,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +LGD,60,District,Faridabad,LGD,6,88,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.352029,77.342381,centroid,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,61,District,Fatehabad,LGD,6,78,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.568879,75.576977,centroid,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +LGD,62,District,Gurugram,LGD,6,86,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.369140,76.939969,centroid,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,792,District,Hansi,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +LGD,63,District,Hisar,LGD,6,80,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.211695,75.822441,centroid,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +LGD,64,District,Jhajjar,LGD,6,83,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.604827,76.648173,centroid,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +LGD,65,District,Jind,LGD,6,77,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.435165,76.303632,centroid,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +LGD,66,District,Kaithal,LGD,6,73,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.811241,76.413852,centroid,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +LGD,67,District,Karnal,LGD,6,74,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.688952,76.887790,centroid,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,68,District,Kurukshetra,LGD,6,72,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.038696,76.784940,centroid,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +LGD,69,District,Mahendragarh,LGD,6,84,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.171027,76.138339,centroid,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +LGD,604,District,Nuh,LGD,6,87,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.985194,77.050196,centroid,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +LGD,619,District,Palwal,LGD,6,89,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.062991,77.334914,centroid,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +LGD,70,District,Panchkula,LGD,6,69,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.686460,76.977506,centroid,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +LGD,71,District,Panipat,LGD,6,75,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.337959,76.928109,centroid,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +LGD,72,District,Rewari,LGD,6,85,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.240787,76.536358,centroid,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,73,District,Rohtak,LGD,6,82,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.912077,76.530277,centroid,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +LGD,74,District,Sirsa,LGD,6,79,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.615601,74.900793,centroid,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +LGD,75,District,Sonipat,LGD,6,76,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.056549,76.874796,centroid,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +LGD,76,District,Yamunanagar,LGD,6,71,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.234263,77.302286,centroid,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +LGD,15,District,Bilaspur,LGD,2,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.370997,76.670218,centroid,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +LGD,16,District,Chamba,LGD,2,23,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.674760,76.348210,centroid,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,17,District,Hamirpur,LGD,2,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.667072,76.525513,centroid,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,18,District,Kangra,LGD,2,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.108262,76.315594,centroid,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,19,District,Kinnaur,LGD,2,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.595321,78.413983,centroid,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +LGD,20,District,Kullu,LGD,2,26,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.902180,77.398851,centroid,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,21,District,Lahaul And Spiti,LGD,2,25,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.480058,77.616702,centroid,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +LGD,22,District,Mandi,LGD,2,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.636785,76.991568,centroid,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,23,District,Shimla,LGD,2,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.197358,77.632010,centroid,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,24,District,Sirmaur,LGD,2,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.666819,77.430921,centroid,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,25,District,Solan,LGD,2,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.045294,76.909556,centroid,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,26,District,Una,LGD,2,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.579300,76.209866,centroid,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,1,District,Anantnag,LGD,1,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.826532,75.324713,centroid,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,623,District,Bandipora,LGD,1,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.587294,74.876122,centroid,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +LGD,3,District,Baramulla,LGD,1,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.158233,74.302510,centroid,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,2,District,Budgam,LGD,1,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.918231,74.634582,centroid,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,4,District,Doda,LGD,1,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.093287,75.714680,centroid,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,626,District,Ganderbal,LGD,1,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.262056,75.032361,centroid,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +LGD,5,District,Jammu,LGD,1,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.804977,74.746861,centroid,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,7,District,Kathua,LGD,1,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.574591,75.583408,centroid,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,620,District,Kishtwar,LGD,1,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.549896,75.971004,centroid,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,622,District,Kulgam,LGD,1,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.606434,74.860001,centroid,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +LGD,8,District,Kupwara,LGD,1,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.521364,74.207221,centroid,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,10,District,Poonch,LGD,1,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.783995,74.017819,centroid,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +LGD,11,District,Pulwama,LGD,1,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.940691,75.016857,centroid,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,12,District,Rajouri,LGD,1,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.278226,74.380875,centroid,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,621,District,Ramban,LGD,1,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.307671,75.189864,centroid,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,627,District,Reasi,LGD,1,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.238912,74.831425,centroid,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,624,District,Samba,LGD,1,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.581686,75.090492,centroid,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +LGD,625,District,Shopian,LGD,1,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.735213,74.818533,centroid,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +LGD,13,District,Srinagar,LGD,1,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.114653,74.821269,centroid,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +LGD,14,District,Udhampur,LGD,1,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.898827,75.296952,centroid,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,322,District,Bokaro,LGD,20,355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.694742,85.996538,centroid,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,323,District,Chatra,LGD,20,347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.164478,84.891481,centroid,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,324,District,Deoghar,LGD,20,350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.328324,86.740210,centroid,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,325,District,Dhanbad,LGD,20,354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.826760,86.472253,centroid,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,326,District,Dumka,LGD,20,362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.319558,87.266417,centroid,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,327,District,East Singhbum,LGD,20,357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.582489,86.451427,centroid,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,328,District,Garhwa,LGD,20,346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.103698,83.698491,centroid,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,329,District,Giridih,LGD,20,349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.293575,86.110998,centroid,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,330,District,Godda,LGD,20,351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.858838,87.308684,centroid,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,331,District,Gumla,LGD,20,366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.103200,84.532365,centroid,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,332,District,Hazaribagh,LGD,20,360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.062077,85.425876,centroid,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,333,District,Jamtara,LGD,20,363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.975652,86.907467,centroid,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +LGD,606,District,Khunti,LGD,20,365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.994324,85.262599,centroid,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 +LGD,334,District,Koderma,LGD,20,348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.500046,85.667996,centroid,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +LGD,335,District,Latehar,LGD,20,359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.716982,84.444799,centroid,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,336,District,Lohardaga,LGD,20,356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.475720,84.671773,centroid,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +LGD,337,District,Pakur,LGD,20,353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.564154,87.662615,centroid,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +LGD,338,District,Palamu,LGD,20,358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.199754,84.168881,centroid,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,607,District,Ramgarh,LGD,20,361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.634171,85.564362,centroid,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +LGD,339,District,Ranchi,LGD,20,364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.328674,85.375279,centroid,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,340,District,Sahebganj,LGD,20,352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.010776,87.678156,centroid,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,341,District,Saraikela Kharsawan,LGD,20,369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.847376,85.950299,centroid,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,342,District,Simdega,LGD,20,367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.581800,84.564239,centroid,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,343,District,West Singhbhum,LGD,20,368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.420670,85.518106,centroid,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,524,District,Bagalkote,LGD,29,556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.221360,75.625545,centroid,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,528,District,Ballari,LGD,29,565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.110053,76.532663,centroid,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +LGD,527,District,Belagavi,LGD,29,555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.120633,74.823078,centroid,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,526,District,Bengaluru Rural,LGD,29,583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.227244,77.574079,centroid,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +LGD,631,District,Bengaluru South,LGD,29,584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.679132,77.335368,centroid,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +LGD,525,District,Bengaluru Urban,LGD,29,572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.951773,77.593709,centroid,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +LGD,529,District,Bidar,LGD,29,558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.952944,77.225064,centroid,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,531,District,Chamarajanagar,LGD,29,578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.958215,77.097666,centroid,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +LGD,630,District,Chikkaballapura,LGD,29,582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.578012,77.835250,centroid,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,532,District,Chikkamagaluru,LGD,29,570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.454630,75.690643,centroid,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,533,District,Chitradurga,LGD,29,566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.168582,76.515192,centroid,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +LGD,534,District,Dakshina Kannada,LGD,29,575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.853124,75.250904,centroid,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,535,District,Davanagere,LGD,29,567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.408738,75.954074,centroid,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +LGD,536,District,Dharwad,LGD,29,562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.390180,75.152300,centroid,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,537,District,Gadag,LGD,29,561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.431463,75.665251,centroid,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +LGD,539,District,Hassan,LGD,29,574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.996418,76.107830,centroid,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,540,District,Haveri,LGD,29,564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.738833,75.416481,centroid,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,538,District,Kalaburagi,LGD,29,579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.260450,76.868950,centroid,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,541,District,Kodagu,LGD,29,576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.325015,75.801291,centroid,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +LGD,542,District,Kolar,LGD,29,581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.139716,78.217875,centroid,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +LGD,543,District,Koppal,LGD,29,560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.562534,76.221462,centroid,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +LGD,544,District,Mandya,LGD,29,573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.611423,76.797236,centroid,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +LGD,545,District,Mysuru,LGD,29,577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.210442,76.440368,centroid,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,546,District,Raichur,LGD,29,559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.090678,76.891761,centroid,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,547,District,Shivamogga,LGD,29,568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.043206,75.220165,centroid,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +LGD,548,District,Tumakuru,LGD,29,571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.521638,76.946204,centroid,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,549,District,Udupi,LGD,29,569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.498278,74.871960,centroid,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +LGD,550,District,Uttara Kannada,LGD,29,563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.791505,74.619576,centroid,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,738,District,Vijayanagara,LGD,29,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +LGD,530,District,Vijayapura,LGD,29,557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.794485,75.952820,centroid,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,635,District,Yadgir,LGD,29,580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.626858,76.912489,centroid,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +LGD,554,District,Alappuzha,LGD,32,598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.428387,76.447041,centroid,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +LGD,555,District,Ernakulam,LGD,32,595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.084494,76.546013,centroid,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +LGD,556,District,Idukki,LGD,32,596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.839668,77.056847,centroid,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +LGD,557,District,Kannur,LGD,32,589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.001100,75.523524,centroid,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +LGD,558,District,Kasaragod,LGD,32,588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.462369,75.151022,centroid,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +LGD,559,District,Kollam,LGD,32,600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.962527,76.871728,centroid,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +LGD,560,District,Kottayam,LGD,32,597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.637751,76.650700,centroid,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +LGD,561,District,Kozhikode,LGD,32,591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.485645,75.833309,centroid,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +LGD,562,District,Malappuram,LGD,32,592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.133326,76.154377,centroid,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +LGD,563,District,Palakkad,LGD,32,593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.795647,76.556398,centroid,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +LGD,564,District,Pathanamthitta,LGD,32,599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.284934,76.926426,centroid,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +LGD,565,District,Thiruvananthapuram,LGD,32,601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.609470,77.012216,centroid,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +LGD,566,District,Thrissur,LGD,32,594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.471945,76.314555,centroid,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +LGD,567,District,Wayanad,LGD,32,590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.712508,76.097753,centroid,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +LGD,6,District,Kargil,LGD,37,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.902845,76.494643,centroid,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +LGD,9,District,Leh Ladakh,LGD,37,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,35.043894,76.821315,centroid,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,553,District,Lakshadweep District,LGD,31,587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,667,District,Agar-Malwa,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.826490,76.071034,centroid,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +LGD,639,District,Alirajpur,LGD,23,465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.314414,74.363886,centroid,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +LGD,390,District,Anuppur,LGD,23,461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.056856,81.682706,centroid,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +LGD,391,District,Ashoknagar,LGD,23,459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.609385,77.875356,centroid,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,392,District,Balaghat,LGD,23,457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.880796,80.359833,centroid,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,393,District,Barwani,LGD,23,441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.788217,75.020879,centroid,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,394,District,Betul,LGD,23,447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.878491,77.871242,centroid,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,395,District,Bhind,LGD,23,420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.421879,78.721245,centroid,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,396,District,Bhopal,LGD,23,444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.470159,77.390757,centroid,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +LGD,397,District,Burhanpur,LGD,23,467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.370677,76.369160,centroid,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +LGD,398,District,Chhatarpur,LGD,23,425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.798140,79.665843,centroid,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,399,District,Chhindwara,LGD,23,455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.122543,78.854128,centroid,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,400,District,Damoh,LGD,23,428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.812319,79.526831,centroid,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,401,District,Datia,LGD,23,422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.801368,78.598029,centroid,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +LGD,402,District,Dewas,LGD,23,437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.744198,76.456861,centroid,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,403,District,Dhar,LGD,23,438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.497955,75.103968,centroid,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,404,District,Dindori,LGD,23,453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.889989,81.051289,centroid,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +LGD,406,District,Guna,LGD,23,458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.555940,77.198633,centroid,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,407,District,Gwalior,LGD,23,421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.039596,78.146084,centroid,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,408,District,Harda,LGD,23,448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.232408,77.123520,centroid,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +LGD,410,District,Indore,LGD,23,439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.713138,75.782221,centroid,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,411,District,Jabalpur,LGD,23,451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.234003,79.975911,centroid,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,412,District,Jhabua,LGD,23,464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.892390,74.671552,centroid,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +LGD,413,District,Katni,LGD,23,450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.752838,80.401399,centroid,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,405,District,Khandwa (East Nimar),LGD,23,466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.935151,76.568398,centroid,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,414,District,Khargone (West Nimar),LGD,23,440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.918639,75.771495,centroid,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,784,District,Maihar,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,415,District,Mandla,LGD,23,454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.639254,80.512199,centroid,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +LGD,416,District,Mandsaur,LGD,23,433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.204426,75.405140,centroid,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,766,District,MAUGANJ,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,417,District,Morena,LGD,23,419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.413015,77.868115,centroid,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,409,District,Narmadapuram,LGD,23,449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.590666,77.990687,centroid,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,418,District,Narsimhapur,LGD,23,452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.936237,79.087885,centroid,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +LGD,419,District,Neemuch,LGD,23,432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.590871,75.141734,centroid,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +LGD,722,District,Niwari,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.284792,78.748152,centroid,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +LGD,785,District,Pandhurna,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,420,District,Panna,LGD,23,426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.421056,80.189010,centroid,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,421,District,Raisen,LGD,23,446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.220061,78.120590,centroid,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,422,District,Rajgarh,LGD,23,442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.861158,76.732433,centroid,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,423,District,Ratlam,LGD,23,434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.502339,75.088589,centroid,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,424,District,Rewa,LGD,23,430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.755316,81.587224,centroid,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,425,District,Sagar,LGD,23,427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.850043,78.759732,centroid,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,426,District,Satna,LGD,23,429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.528700,80.830748,centroid,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,427,District,Sehore,LGD,23,445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.987637,77.127430,centroid,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,428,District,Seoni,LGD,23,456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.316960,79.689162,centroid,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,429,District,Shahdol,LGD,23,460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.629442,81.473493,centroid,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +LGD,430,District,Shajapur,LGD,23,436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.383975,76.559497,centroid,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +LGD,431,District,Sheopur,LGD,23,418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.754479,77.007246,centroid,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +LGD,432,District,Shivpuri,LGD,23,423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.365539,77.805373,centroid,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,433,District,Sidhi,LGD,23,462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.220619,81.834023,centroid,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,638,District,Singrauli,LGD,23,463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.215913,82.419945,centroid,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,434,District,Tikamgarh,LGD,23,424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.883196,79.016107,centroid,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,435,District,Ujjain,LGD,23,435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.330883,75.669034,centroid,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,436,District,Umaria,LGD,23,431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.562793,80.973190,centroid,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +LGD,437,District,Vidisha,LGD,23,443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.892313,77.813112,centroid,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,466,District,Ahilyanagar,LGD,27,522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.205391,74.675231,centroid,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,467,District,Akola,LGD,27,501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.748005,77.056016,centroid,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +LGD,468,District,Amravati,LGD,27,503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.187565,77.570354,centroid,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,470,District,Beed,LGD,27,523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.946660,75.838225,centroid,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,471,District,Bhandara,LGD,27,506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.115620,79.763152,centroid,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +LGD,472,District,Buldhana,LGD,27,500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.510807,76.407133,centroid,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,473,District,Chandrapur,LGD,27,509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.118386,79.440540,centroid,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,469,District,Chhatrapati Sambhajinagar,LGD,27,515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.027442,75.279761,centroid,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,488,District,Dharashiv,LGD,27,525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.188746,76.036898,centroid,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,474,District,Dhule,LGD,27,498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.110370,74.600494,centroid,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +LGD,475,District,Gadchiroli,LGD,27,508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.787912,80.240432,centroid,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,476,District,Gondia,LGD,27,507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.165306,80.217855,centroid,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,477,District,Hingoli,LGD,27,512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.637480,77.100455,centroid,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +LGD,478,District,Jalgaon,LGD,27,499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.932545,75.487940,centroid,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,479,District,Jalna,LGD,27,514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.807495,75.980338,centroid,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,480,District,Kolhapur,LGD,27,530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.471481,74.158638,centroid,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,481,District,Latur,LGD,27,524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.373766,76.759511,centroid,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,482,District,Mumbai,LGD,27,519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.989036,72.838017,centroid,72.792496,18.893405,72.881476,19.053004,SOI_Districts,2023-12-11 +LGD,483,District,Mumbai Suburban,LGD,27,518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.131779,72.884497,centroid,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +LGD,484,District,Nagpur,LGD,27,505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.178155,79.085030,centroid,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,485,District,Nanded,LGD,27,511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.112445,77.617827,centroid,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,486,District,Nandurbar,LGD,27,497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.550193,74.216834,centroid,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +LGD,487,District,Nashik,LGD,27,516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.259820,74.070699,centroid,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,665,District,Palghar,LGD,27,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.793763,73.012184,centroid,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,489,District,Parbhani,LGD,27,513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.268248,76.690859,centroid,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,490,District,Pune,LGD,27,521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.571118,74.067998,centroid,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,491,District,Raigad,LGD,27,520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.510062,73.221458,centroid,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,492,District,Ratnagiri,LGD,27,528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.274418,73.454737,centroid,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,493,District,Sangli,LGD,27,531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.113762,74.767913,centroid,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,494,District,Satara,LGD,27,527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.670029,74.172659,centroid,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,495,District,Sindhudurg,LGD,27,529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.134008,73.737764,centroid,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,496,District,Solapur,LGD,27,526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.790589,75.483125,centroid,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,497,District,Thane,LGD,27,517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.361103,73.319543,centroid,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +LGD,498,District,Wardha,LGD,27,504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.797145,78.585883,centroid,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,499,District,Washim,LGD,27,502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.234103,77.216372,centroid,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +LGD,500,District,Yavatmal,LGD,27,510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.083546,78.161025,centroid,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,252,District,Bishnupur,LGD,14,275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.535799,93.797905,centroid,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 +LGD,253,District,Chandel,LGD,14,280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.124837,94.007495,centroid,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +LGD,254,District,Churachandpur,LGD,14,274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.277193,93.602918,centroid,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,255,District,Imphal East,LGD,14,278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.832705,94.013173,centroid,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +LGD,256,District,Imphal West,LGD,14,277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.803266,93.872958,centroid,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +LGD,713,District,Jiribam,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.681775,93.152020,centroid,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 +LGD,711,District,Kakching,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.427861,93.917808,centroid,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11 +LGD,717,District,Kamjong,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.824838,94.432038,centroid,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 +LGD,712,District,Kangpokpi,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.992920,93.947737,centroid,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,714,District,Noney,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.677348,93.455938,centroid,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 +LGD,715,District,Pherzawl,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.304682,93.220554,centroid,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 +LGD,257,District,Senapati,LGD,14,272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.398440,94.124914,centroid,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +LGD,258,District,Tamenglong,LGD,14,273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.053484,93.550469,centroid,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 +LGD,716,District,Tengnoupal,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.412591,94.222784,centroid,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11 +LGD,259,District,Thoubal,LGD,14,276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.615553,94.009519,centroid,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 +LGD,260,District,Ukhrul,LGD,14,279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.237716,94.429581,centroid,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 +LGD,740,District,Eastern West Khasi Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 +LGD,273,District,East Garo Hills,LGD,17,294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.618628,90.630370,centroid,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +LGD,657,District,East Jaintia Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.265690,92.463884,centroid,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 +LGD,274,District,East Khasi Hills,LGD,17,298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.383453,91.800191,centroid,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,656,District,North Garo Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.850532,90.665283,centroid,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 +LGD,276,District,Ri Bhoi,LGD,17,297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.873612,91.884129,centroid,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +LGD,277,District,South Garo Hills,LGD,17,295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.300548,90.593840,centroid,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +LGD,663,District,South West Garo Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.446276,89.989664,centroid,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 +LGD,658,District,South West Khasi Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.312380,91.245827,centroid,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 +LGD,278,District,West Garo Hills,LGD,17,293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.641756,90.197735,centroid,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,275,District,West Jaintia Hills,LGD,17,299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.485083,92.281958,centroid,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 +LGD,279,District,West Khasi Hills,LGD,17,296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.598255,91.261737,centroid,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 +LGD,261,District,Aizawl,LGD,15,283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.848541,92.890177,centroid,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +LGD,262,District,Champhai,LGD,15,284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.540546,93.231068,centroid,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 +LGD,726,District,Hnahthial,LGD,15,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +LGD,728,District,Khawzawl,LGD,15,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +LGD,263,District,Kolasib,LGD,15,282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.141417,92.720432,centroid,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 +LGD,264,District,Lawngtlai,LGD,15,287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.432755,92.765933,centroid,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 +LGD,265,District,Lunglei,LGD,15,286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.972505,92.720138,centroid,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 +LGD,266,District,Mamit,LGD,15,281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.755528,92.463997,centroid,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +LGD,727,District,Saitual,LGD,15,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +LGD,268,District,Serchhip,LGD,15,285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.308820,92.941508,centroid,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 +LGD,267,District,Siaha,LGD,15,288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.291740,93.001449,centroid,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11 +LGD,758,District,Chumoukedima,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,244,District,Dimapur,LGD,13,265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.781128,93.794081,centroid,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11 +LGD,614,District,Kiphire,LGD,13,269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.842745,94.821768,centroid,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,245,District,Kohima,LGD,13,270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.771761,94.108881,centroid,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +LGD,615,District,Longleng,LGD,13,268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.552081,94.795531,centroid,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +LGD,788,District,Meluri,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,246,District,Mokokchung,LGD,13,262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.472284,94.528963,centroid,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,247,District,Mon,LGD,13,261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.677812,95.016718,centroid,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,764,District,Niuland,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,736,District,Noklak,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,613,District,Peren,LGD,13,271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.508382,93.624084,centroid,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +LGD,248,District,Phek,LGD,13,266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.647194,94.534539,centroid,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,765,District,Shamator,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,757,District,Tseminyu,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,249,District,Tuensang,LGD,13,267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.166672,94.887560,centroid,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +LGD,250,District,Wokha,LGD,13,264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.188371,94.191816,centroid,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,251,District,Zunheboto,LGD,13,263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.999722,94.483933,centroid,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,344,District,Anugola,LGD,21,384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.986355,84.905206,centroid,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,345,District,Balangir,LGD,21,393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.589427,83.171651,centroid,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,346,District,Baleshwar,LGD,21,377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.494441,86.906311,centroid,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,347,District,Baragada,LGD,21,370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.219614,83.349141,centroid,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,348,District,Bhadrak,LGD,21,378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.983044,86.625018,centroid,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +LGD,349,District,Boudh,LGD,21,391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.644444,84.172873,centroid,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +LGD,351,District,Debagada,LGD,21,373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.467033,84.785302,centroid,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 +LGD,352,District,Dhenkanal,LGD,21,383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.826874,85.523896,centroid,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,353,District,Gajapati,LGD,21,389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.184171,84.161163,centroid,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +LGD,354,District,Ganjam,LGD,21,388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.624456,84.672465,centroid,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,355,District,Jagatsinghapur,LGD,21,380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.218649,86.335211,centroid,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,356,District,Jajpur,LGD,21,382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.856145,86.149442,centroid,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,357,District,Jharsuguda,LGD,21,371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.807224,83.946640,centroid,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +LGD,358,District,Kalahandi,LGD,21,395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.867583,83.107938,centroid,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,359,District,Kandhamala,LGD,21,390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.128180,84.045937,centroid,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,350,District,Kataka,LGD,21,381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.453340,85.696462,centroid,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,360,District,Kendrapada,LGD,21,379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.552578,86.609881,centroid,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,361,District,Kendujhar,LGD,21,375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.537820,85.702386,centroid,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,362,District,Khordha,LGD,21,386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.091062,85.514274,centroid,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,363,District,Koraput,LGD,21,398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.812874,82.719717,centroid,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,364,District,Malkangiri,LGD,21,399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.257715,81.950493,centroid,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +LGD,365,District,Mayurbhanj,LGD,21,376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.895372,86.408568,centroid,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,366,District,Nabarangpur,LGD,21,397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.576483,82.334523,centroid,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,367,District,Nayagada,LGD,21,385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.213177,84.997802,centroid,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,368,District,Nuapada,LGD,21,394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.466045,82.576879,centroid,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +LGD,369,District,Puri,LGD,21,387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.879081,85.725732,centroid,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,370,District,Rayagada,LGD,21,396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.363492,83.512441,centroid,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,371,District,Sambalpur,LGD,21,372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.452534,84.273391,centroid,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,372,District,Subarnapur,LGD,21,392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.930816,83.822370,centroid,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +LGD,373,District,Sundaragada,LGD,21,374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.099526,84.494844,interior_grid,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,598,District,Karaikal,LGD,34,637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.933424,79.802948,centroid,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +LGD,600,District,Puducherry,LGD,34,635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.916989,79.766405,centroid,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +LGD,27,District,Amritsar,LGD,3,49,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.705642,74.899424,centroid,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +LGD,605,District,Barnala,LGD,3,54,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.387784,75.498635,centroid,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +LGD,28,District,Bathinda,LGD,3,46,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.183238,75.040269,centroid,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +LGD,29,District,Faridkot,LGD,3,45,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.613481,74.777318,centroid,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +LGD,30,District,Fatehgarh Sahib,LGD,3,40,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.642697,76.375469,centroid,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +LGD,651,District,Fazilka,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.277026,74.163643,centroid,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +LGD,31,District,Ferozepur,LGD,3,43,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.912989,74.703010,centroid,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +LGD,32,District,Gurdaspur,LGD,3,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.916470,75.291003,centroid,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +LGD,33,District,Hoshiarpur,LGD,3,38,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.625016,75.857919,centroid,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +LGD,34,District,Jalandhar,LGD,3,37,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.212738,75.565804,centroid,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +LGD,35,District,Kapurthala,LGD,3,36,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.354438,75.400042,centroid,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +LGD,36,District,Ludhiana,LGD,3,41,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.805395,75.832732,centroid,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +LGD,737,District,Malerkotla,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +LGD,37,District,Mansa,LGD,3,47,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.907347,75.438503,centroid,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +LGD,38,District,Moga,LGD,3,42,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.761814,75.170324,centroid,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +LGD,662,District,Pathankot,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.296307,75.616245,centroid,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +LGD,41,District,Patiala,LGD,3,48,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.281721,76.350755,centroid,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +LGD,42,District,Rupnagar,LGD,3,51,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.062049,76.487646,centroid,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +LGD,43,District,Sangrur,LGD,3,53,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.211970,75.869115,centroid,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +LGD,608,District,S.A.S Nagar,LGD,3,52,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.680921,76.739758,centroid,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +LGD,40,District,Shahid Bhagat Singh Nagar,LGD,3,39,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.110048,76.154318,centroid,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +LGD,39,District,Sri Muktsar Sahib,LGD,3,44,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.299843,74.538399,centroid,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +LGD,609,District,Tarn Taran,LGD,3,50,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.336494,74.840379,centroid,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +LGD,86,District,Ajmer,LGD,8,119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.233499,74.773091,centroid,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,87,District,Alwar,LGD,8,104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.590899,76.601627,centroid,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,775,District,Balotra,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,88,District,Banswara,LGD,8,125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.476390,74.361987,centroid,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,89,District,Baran,LGD,8,128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.995630,76.747835,centroid,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,90,District,Barmer,LGD,8,115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.734986,71.474795,centroid,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,774,District,Beawar,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,91,District,Bharatpur,LGD,8,105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.247765,77.276538,centroid,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,92,District,Bhilwara,LGD,8,122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.481644,74.726677,centroid,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,93,District,Bikaner,LGD,8,101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.177209,73.174572,centroid,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,94,District,Bundi,LGD,8,121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.485609,75.790630,centroid,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +LGD,95,District,Chittorgarh,LGD,8,126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.822240,74.775399,centroid,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,96,District,Churu,LGD,8,102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.345118,74.696405,centroid,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,97,District,Dausa,LGD,8,109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.857579,76.510297,centroid,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,767,District,Deeg,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,98,District,Dholpur,LGD,8,106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.680863,77.702142,centroid,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,768,District,Didwana-Kuchaman,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,99,District,Dungarpur,LGD,8,124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.731872,73.853138,centroid,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,100,District,Ganganagar,LGD,8,99,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.395945,73.570535,centroid,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,101,District,Hanumangarh,LGD,8,100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.265979,74.561463,centroid,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,102,District,Jaipur,LGD,8,110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.976650,75.719841,centroid,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,103,District,Jaisalmer,LGD,8,114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.075201,70.901037,centroid,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +LGD,104,District,Jalore,LGD,8,116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.099518,72.211683,centroid,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,105,District,Jhalawar,LGD,8,129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.335986,76.193443,centroid,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,106,District,Jhunjhunu,LGD,8,103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.092715,75.549656,centroid,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,107,District,Jodhpur,LGD,8,113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.747773,72.785854,centroid,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,108,District,Karauli,LGD,8,107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.523079,76.958707,centroid,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,770,District,Khairthal-Tijara,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,109,District,Kota,LGD,8,127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.109266,76.106084,centroid,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +LGD,782,District,Kotputli-Behror,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,110,District,Nagaur,LGD,8,112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.065964,74.175488,centroid,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,111,District,Pali,LGD,8,118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.706921,73.519596,centroid,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,772,District,Phalodi,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,629,District,Pratapgarh,LGD,8,131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.029241,74.650304,centroid,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +LGD,112,District,Rajsamand,LGD,8,123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.227968,73.891708,centroid,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,777,District,Salumbar,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,113,District,Sawai Madhopur,LGD,8,108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.217244,76.460987,centroid,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,114,District,Sikar,LGD,8,111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.634011,75.288276,centroid,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,115,District,Sirohi,LGD,8,117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.761751,72.776047,centroid,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +LGD,116,District,Tonk,LGD,8,120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.148317,75.665959,centroid,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,117,District,Udaipur,LGD,8,130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.418699,73.689784,centroid,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,225,District,Gangtok,LGD,11,244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.292057,88.673069,centroid,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +LGD,228,District,Gyalshing,LGD,11,242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.348415,88.175462,centroid,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 +LGD,226,District,Mangan,LGD,11,241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.743446,88.528275,centroid,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 +LGD,227,District,Namchi,LGD,11,243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.286440,88.384824,centroid,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +LGD,741,District,Pakyong,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +LGD,742,District,Soreng,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +LGD,610,District,Ariyalur,LGD,33,616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.162551,79.242972,centroid,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +LGD,730,District,Chengalpattu,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.582979,79.999171,centroid,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,568,District,Chennai,LGD,33,603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.100428,80.234893,centroid,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,569,District,Coimbatore,LGD,33,632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.878062,76.975747,centroid,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,570,District,Cuddalore,LGD,33,617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.535937,79.450508,centroid,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,571,District,Dharmapuri,LGD,33,630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.100517,78.193248,centroid,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +LGD,572,District,Dindigul,LGD,33,612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.391669,77.819666,centroid,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,573,District,Erode,LGD,33,610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.479549,77.380254,centroid,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,729,District,Kallakurichi,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.803600,79.034514,centroid,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +LGD,574,District,Kancheepuram,LGD,33,604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.832664,79.849732,centroid,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +LGD,575,District,Kanniyakumari,LGD,33,629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.308118,77.359590,centroid,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +LGD,576,District,Karur,LGD,33,613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.844322,78.134624,centroid,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +LGD,577,District,Krishnagiri,LGD,33,631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.490160,78.032355,centroid,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,578,District,Madurai,LGD,33,623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.922720,78.005214,centroid,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,735,District,Mayiladuthurai,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +LGD,579,District,Nagapattinam,LGD,33,618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.841301,79.737891,centroid,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +LGD,580,District,Namakkal,LGD,33,609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.318778,78.135667,centroid,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,581,District,Perambalur,LGD,33,615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.275076,78.891647,centroid,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +LGD,582,District,Pudukkottai,LGD,33,621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.360782,78.879400,centroid,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,583,District,Ramanathapuram,LGD,33,626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.437609,78.685761,centroid,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,731,District,Ranipet,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.949902,79.461686,centroid,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +LGD,584,District,Salem,LGD,33,608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.690215,78.137146,centroid,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,585,District,Sivaganga,LGD,33,622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.916501,78.596076,centroid,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,733,District,Tenkasi,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.092518,77.459924,centroid,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,586,District,Thanjavur,LGD,33,620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.670696,79.241463,centroid,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,588,District,Theni,LGD,33,624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.891794,77.438407,centroid,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +LGD,587,District,The Nilgiris,LGD,33,611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.453320,76.626115,centroid,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +LGD,589,District,Thiruvallur,LGD,33,602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.244045,79.932765,centroid,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,590,District,Thiruvarur,LGD,33,619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.679399,79.533581,centroid,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,594,District,Thoothukkudi,LGD,33,627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.901449,77.997628,centroid,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,591,District,Tiruchirappalli,LGD,33,614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.891184,78.570397,centroid,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,592,District,Tirunelveli,LGD,33,628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.575007,77.590408,centroid,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,732,District,Tirupathur,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.593927,78.655115,centroid,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +LGD,634,District,Tiruppur,LGD,33,633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.838977,77.407267,centroid,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,593,District,Tiruvannamalai,LGD,33,606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.432635,79.166497,centroid,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,595,District,Vellore,LGD,33,605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.914206,78.965876,centroid,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +LGD,596,District,Viluppuram,LGD,33,607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.139718,79.540604,centroid,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,597,District,Virudhunagar,LGD,33,625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.492324,77.905719,centroid,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,501,District,Adilabad,LGD,36,532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.519916,78.565982,centroid,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,690,District,Bhadradri Kothagudem,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.690454,80.716493,centroid,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,686,District,Hanumakonda,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.046534,79.463730,centroid,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,507,District,Hyderabad,LGD,36,536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.395112,78.470167,centroid,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,681,District,Jagitial,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.832238,78.877896,centroid,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,689,District,Jangoan,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.727859,79.284325,centroid,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,687,District,Jayashankar Bhupalapally,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.506030,79.924365,centroid,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,695,District,Jogulamba Gadwal,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.071697,77.780993,centroid,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,685,District,Kamareddy,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.324814,78.061681,centroid,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,508,District,Karimnagar,LGD,36,534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.380033,79.245348,centroid,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,509,District,Khammam,LGD,36,541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.205947,80.365131,centroid,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,699,District,Kumuram Bheem Asifabad,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.357095,79.419802,centroid,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,688,District,Mahabubabad,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.675222,79.996276,centroid,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,512,District,Mahabubnagar,LGD,36,538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.751490,78.013247,centroid,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,684,District,Mancherial,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.991463,79.512315,centroid,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,513,District,Medak,LGD,36,535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.953209,78.265038,centroid,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,700,District,Medchal Malkajgiri,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.544214,78.557696,centroid,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,720,District,Mulugu,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.291487,80.337459,centroid,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,694,District,Nagarkurnool,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.382246,78.595988,centroid,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,514,District,Nalgonda,LGD,36,539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.876525,79.193064,centroid,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,721,District,Narayanpet,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.638254,77.582727,centroid,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,680,District,Nirmal,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.113181,78.314942,centroid,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,516,District,Nizamabad,LGD,36,533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.701604,78.211364,centroid,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,682,District,Peddapalli,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.620155,79.453681,centroid,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,683,District,Rajanna Sircilla,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.414096,78.763447,centroid,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,518,District,Ranga Reddy,LGD,36,537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.130963,78.412504,centroid,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,691,District,Sangareddy,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.785340,77.874129,centroid,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,692,District,Siddipet,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.021641,78.855083,centroid,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,696,District,Suryapet,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.080643,79.754395,centroid,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,698,District,Vikarabad,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.246310,77.750811,centroid,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,693,District,Wanaparthy,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.287718,78.049507,centroid,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,522,District,Warangal,LGD,36,540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.919204,79.737482,centroid,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,697,District,Yadadri Bhuvanagiri,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.451240,78.978697,centroid,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,465,District,Dadra And Nagar Haveli,LGD,38,496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.191077,73.058434,interior_grid,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11 +LGD,463,District,Daman,LGD,38,495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.414235,72.852713,centroid,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11 +LGD,464,District,Diu,LGD,38,494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.721261,70.937137,centroid,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11 +LGD,269,District,Dhalai,LGD,16,291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.837087,91.924036,centroid,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +LGD,654,District,Gomati,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.511621,91.627811,centroid,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +LGD,652,District,Khowai,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.943724,91.660954,centroid,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 +LGD,270,District,North Tripura,LGD,16,292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.097014,92.210814,centroid,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +LGD,653,District,Sepahijala,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.585052,91.331523,centroid,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +LGD,271,District,South Tripura,LGD,16,290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.200333,91.577175,centroid,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +LGD,655,District,Unakoti,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.204434,92.041151,centroid,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +LGD,272,District,West Tripura,LGD,16,289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.886599,91.399302,centroid,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +LGD,45,District,Almora,LGD,5,64,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.690751,79.504039,centroid,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,46,District,Bageshwar,LGD,5,63,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.996405,79.858939,centroid,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +LGD,47,District,Chamoli,LGD,5,57,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.495149,79.577047,centroid,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,48,District,Champawat,LGD,5,65,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.281123,80.069053,centroid,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +LGD,49,District,Dehradun,LGD,5,60,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.472166,77.967550,centroid,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,50,District,Haridwar,LGD,5,68,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.881397,77.996044,centroid,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +LGD,51,District,Nainital,LGD,5,66,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.317293,79.463201,centroid,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,52,District,Pauri Garhwal,LGD,5,61,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.879961,78.763766,centroid,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,53,District,Pithoragarh,LGD,5,62,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.113997,80.345565,centroid,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,54,District,Rudraprayag,LGD,5,58,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.506914,79.052455,centroid,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +LGD,55,District,Tehri Garhwal,LGD,5,59,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.436550,78.535529,centroid,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,56,District,Udham Singh Nagar,LGD,5,67,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.041948,79.470845,centroid,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,57,District,Uttarkashi,LGD,5,56,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.971870,78.607019,centroid,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,118,District,Agra,LGD,9,146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.036251,78.076398,centroid,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +LGD,119,District,Aligarh,LGD,9,143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.926465,78.065301,centroid,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +LGD,121,District,Ambedkar Nagar,LGD,9,178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.418558,82.666105,centroid,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +LGD,640,District,Amethi,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.323815,81.668704,centroid,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +LGD,154,District,Amroha,LGD,9,137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.835642,78.368246,centroid,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +LGD,122,District,Auraiya,LGD,9,162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.658178,79.479116,centroid,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +LGD,140,District,Ayodhya,LGD,9,177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.657554,81.997104,centroid,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +LGD,123,District,Azamgarh,LGD,9,191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.045498,83.067296,centroid,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,124,District,Baghpat,LGD,9,139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.056937,77.308508,centroid,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +LGD,125,District,Bahraich,LGD,9,180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.698230,81.492806,centroid,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +LGD,126,District,Ballia,LGD,9,193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.876254,84.102614,centroid,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +LGD,127,District,Balrampur,LGD,9,182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.483685,82.375229,centroid,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +LGD,128,District,Banda,LGD,9,170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.470939,80.557396,centroid,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +LGD,129,District,Bara Banki,LGD,9,176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.939037,81.332417,centroid,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +LGD,130,District,Bareilly,LGD,9,150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.457976,79.431403,centroid,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +LGD,131,District,Basti,LGD,9,185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.820038,82.625709,centroid,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +LGD,179,District,Bhadohi,LGD,9,198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.347933,82.464128,centroid,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +LGD,132,District,Bijnor,LGD,9,134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.386207,78.388853,centroid,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +LGD,133,District,Budaun,LGD,9,149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.077854,79.041570,centroid,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +LGD,134,District,Bulandshahr,LGD,9,142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.362548,78.014505,centroid,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +LGD,135,District,Chandauli,LGD,9,196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.141544,83.258105,centroid,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +LGD,136,District,Chitrakoot,LGD,9,171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.206227,81.077462,centroid,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +LGD,137,District,Deoria,LGD,9,190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.425350,83.834585,centroid,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +LGD,138,District,Etah,LGD,9,201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.515541,78.717419,centroid,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +LGD,139,District,Etawah,LGD,9,161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.764067,79.094854,centroid,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +LGD,141,District,Farrukhabad,LGD,9,159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.431334,79.458667,centroid,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +LGD,142,District,Fatehpur,LGD,9,172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.874894,80.807709,centroid,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +LGD,143,District,Firozabad,LGD,9,147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.187236,78.526428,centroid,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +LGD,144,District,Gautam Buddha Nagar,LGD,9,141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.394059,77.555973,centroid,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +LGD,145,District,Ghaziabad,LGD,9,140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.767749,77.476015,centroid,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +LGD,146,District,Ghazipur,LGD,9,195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.623962,83.555544,centroid,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +LGD,147,District,Gonda,LGD,9,183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.083387,82.025294,centroid,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +LGD,148,District,Gorakhpur,LGD,9,188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.656068,83.359032,centroid,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +LGD,149,District,Hamirpur,LGD,9,168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.751017,79.865350,centroid,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +LGD,661,District,Hapur,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.722383,77.893127,centroid,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +LGD,150,District,Hardoi,LGD,9,155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.330336,80.161580,centroid,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +LGD,163,District,Hathras,LGD,9,144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.581716,78.164440,centroid,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +LGD,151,District,Jalaun,LGD,9,165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.091193,79.385801,centroid,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +LGD,152,District,Jaunpur,LGD,9,194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.746298,82.574976,centroid,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +LGD,153,District,Jhansi,LGD,9,166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.508105,78.950857,centroid,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +LGD,155,District,Kannauj,LGD,9,160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.013601,79.688690,centroid,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +LGD,156,District,Kanpur Dehat,LGD,9,163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.439637,79.852934,centroid,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +LGD,157,District,Kanpur Nagar,LGD,9,164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.391080,80.208199,centroid,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +LGD,633,District,Kasganj,LGD,9,202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.773327,78.846070,centroid,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +LGD,158,District,Kaushambi,LGD,9,174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.498460,81.415008,centroid,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +LGD,159,District,Kheri,LGD,9,153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.120956,80.666926,centroid,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +LGD,160,District,Kushinagar,LGD,9,189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.862754,83.933846,centroid,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +LGD,161,District,Lalitpur,LGD,9,167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.653500,78.561958,centroid,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +LGD,162,District,Lucknow,LGD,9,157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.841979,80.905490,centroid,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +LGD,165,District,Mahoba,LGD,9,169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.362800,79.726003,centroid,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +LGD,164,District,Mahrajganj,LGD,9,187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.200551,83.530436,centroid,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +LGD,166,District,Mainpuri,LGD,9,148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.182445,79.052108,centroid,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +LGD,167,District,Mathura,LGD,9,145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.597491,77.625895,centroid,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +LGD,168,District,Mau,LGD,9,192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.047456,83.561786,centroid,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +LGD,169,District,Meerut,LGD,9,138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.036373,77.782697,centroid,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +LGD,170,District,Mirzapur,LGD,9,199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.986648,82.607360,centroid,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +LGD,171,District,Moradabad,LGD,9,135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.885592,78.802924,centroid,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +LGD,172,District,Muzaffarnagar,LGD,9,133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.415637,77.725288,centroid,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +LGD,173,District,Pilibhit,LGD,9,151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.530755,79.994583,centroid,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +LGD,174,District,Pratapgarh,LGD,9,173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.872737,81.829069,centroid,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +LGD,120,District,Prayagraj,LGD,9,175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.304012,81.960159,centroid,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,175,District,Rae Bareli,LGD,9,158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.203741,81.190943,centroid,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +LGD,176,District,Rampur,LGD,9,136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.809845,79.115097,centroid,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +LGD,177,District,Saharanpur,LGD,9,132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.951033,77.546779,centroid,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +LGD,659,District,Sambhal,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.451892,78.558077,centroid,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +LGD,178,District,Sant Kabir Nagar,LGD,9,186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.775547,83.027224,centroid,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +LGD,180,District,Shahjahanpur,LGD,9,152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.950761,79.822072,centroid,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +LGD,660,District,Shamli,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.500323,77.282363,centroid,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 +LGD,181,District,Shrawasti,LGD,9,181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.718462,81.903444,centroid,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +LGD,182,District,Siddharthnagar,LGD,9,184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.270196,82.873251,centroid,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +LGD,183,District,Sitapur,LGD,9,154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.517096,80.852222,centroid,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +LGD,184,District,Sonbhadra,LGD,9,200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.407995,83.051909,centroid,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +LGD,185,District,Sultanpur,LGD,9,179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.261948,82.193868,centroid,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +LGD,186,District,Unnao,LGD,9,156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.609367,80.560562,centroid,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +LGD,187,District,Varanasi,LGD,9,197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.388275,82.913960,centroid,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +LGD,664,District,Alipurduar,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.632685,89.463034,centroid,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +LGD,305,District,Bankura,LGD,19,339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.139199,87.136273,centroid,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,307,District,Birbhum,LGD,19,334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.954375,87.663303,centroid,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,308,District,Cooch Behar,LGD,19,329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.292614,89.347816,centroid,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,310,District,Dakshin Dinajpur,LGD,19,331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.367223,88.575495,centroid,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,309,District,Darjeeling,LGD,19,327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.850567,88.262039,centroid,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,312,District,Hooghly,LGD,19,338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.884920,88.076193,centroid,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,313,District,Howrah,LGD,19,341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.521490,88.063397,centroid,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,314,District,Jalpaiguri,LGD,19,328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.682626,88.763845,centroid,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,703,District,Jhargram,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.363242,86.955347,centroid,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,702,District,Kalimpong,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.034545,88.630890,centroid,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +LGD,315,District,Kolkata,LGD,19,342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.526744,88.356008,centroid,88.233628,22.452029,88.461078,22.618825,SOI_Districts,2023-12-11 +LGD,316,District,Malda,LGD,19,332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.136916,88.090580,centroid,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,319,District,Murshidabad,LGD,19,333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.162777,88.230649,centroid,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,320,District,Nadia,LGD,19,336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.479814,88.516695,centroid,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,303,District,North 24 Parganas,LGD,19,337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.727142,88.730133,centroid,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,704,District,Paschim Bardhaman,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.636453,87.199152,centroid,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,318,District,Paschim Medinipur,LGD,19,344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.439193,87.417304,centroid,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,306,District,Purba Bardhaman,LGD,19,335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.356167,87.963711,centroid,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,317,District,Purba Medinipur,LGD,19,345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.031560,87.772887,centroid,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,321,District,Purulia,LGD,19,340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.276707,86.421546,centroid,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,304,District,South 24 Parganas,LGD,19,343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.057938,88.552900,centroid,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,311,District,Uttar Dinajpur,LGD,19,330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.845938,88.106307,interior_grid,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,2925,Block,Aali,LGD,360,2925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,6087,Block,Aalo Hq,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,7346,Block,Aamabeda,LGD,381,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,7146,Block,Aau,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,6612,Block,Abapura,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,3728,Block,Abdasa,LGD,449,3728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,6319,Block,Abdullapurmet,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,3331,Block,Abhanpur,LGD,387,3331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,238,Block,Abohar,LGD,651,238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +LGD,1750,Block,Aboi,LGD,247,1750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,7600,Block,Abrama,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,595,Block,Abu Road,LGD,115,595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +LGD,4004,Block,Achalpur,LGD,468,4004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,4579,Block,Achampet,LGD,694,4579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,4981,Block,Achanta,LGD,523,4981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,6518,Block,Adajan,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,393,Block,Adampur,LGD,63,393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +LGD,7192,Block,Adampur,LGD,34,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +LGD,1032,Block,Adapur,LGD,213,1032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,7571,Block,Adarsh Nagar,LGD,80,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 +LGD,6304,Block,Adavidevulapalli,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,7255,Block,Adbhar,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,6310,Block,Adda Guduru,LGD,697,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,4586,Block,Addakal,LGD,512,4586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,5112,Block,Addanki,LGD,517,5112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,4887,Block,Addateegala,LGD,791,4887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7024,Block,Adhartal,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,1456,Block,Adhaura,LGD,200,1456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,6345,Block,Adibadri,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,6221,Block,Adilabad Rural,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,4306,Block,Adilabad Urban,LGD,501,4306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,2752,Block,Adityapur(Gamharia),LGD,341,2752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,7334,Block,Adokgre,LGD,656,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 +LGD,5271,Block,Adoni,LGD,511,5271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,7563,Block,Adoni-2,LGD,511,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5683,Block,Adoor,LGD,564,5683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +LGD,5581,Block,Afzalpur,LGD,538,5581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,5354,Block,Agali,LGD,754,5354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7452,Block,Agalpur,LGD,345,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,2006,Block,Agamoni,LGD,285,2006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,3518,Block,Agar,LGD,667,3518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +LGD,5884,Block,Agastheeswaram,LGD,575,5884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +LGD,5626,Block,Agatti,LGD,553,5626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,1771,Block,Aghunato,LGD,251,1771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,1432,Block,Agiaon,LGD,193,1432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,5005,Block,Agiripalli,LGD,748,5005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,766,Block,Agra,LGD,118,766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +LGD,4062,Block,Aheri,LGD,475,4062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,7331,Block,Ahiwara,LGD,378,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +LGD,4228,Block,Ahmadpur,LGD,481,4228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,6856,Block,Ahmedgarh,LGD,737,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +LGD,586,Block,Ahore,LGD,104,586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,3921,Block,Ahwa,LGD,444,3921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +LGD,1904,Block,Aibawk,LGD,261,1904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +LGD,4933,Block,Ainavilli,LGD,747,4933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1781,Block,Aitepyong,LGD,250,1781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,6810,Block,Ajas,LGD,623,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +LGD,3435,Block,Ajaygarh,LGD,420,3435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,7241,Block,Ajgarbahar,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,6877,Block,Ajitmal,LGD,122,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +LGD,7078,Block,Ajjampura,LGD,532,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,607,Block,Ajmer,LGD,86,607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,255,Block,Ajnala,LGD,27,255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +LGD,4292,Block,Ajra,LGD,480,4292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,3278,Block,Akaltara,LGD,379,3278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,845,Block,Akbarpur,LGD,156,845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +LGD,1519,Block,Akbarpur,LGD,210,1519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,910,Block,Akbarpur,LGD,121,910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +LGD,7524,Block,Akberpet-Bhoompally,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,78,Block,Akhnoor,LGD,5,78,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,4975,Block,Akividu,LGD,523,4975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,4254,Block,Akkalkot,LGD,496,4254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,3950,Block,Akkalkuwa,LGD,486,3950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +LGD,6285,Block,Akkannapet,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,680,Block,Aklera,LGD,105,680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,3991,Block,Akola,LGD,467,3991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +LGD,4201,Block,Akole,LGD,466,4201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,1472,Block,Akorhi Gola,LGD,215,1472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,3989,Block,Akot,LGD,467,3989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +LGD,3951,Block,Akrani,LGD,486,3951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +LGD,1774,Block,Akuhaito,LGD,251,1774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,1768,Block,Akuluto,LGD,251,1768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,4617,Block,Alair,LGD,697,4617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,1169,Block,Alamnagar,LGD,205,1169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,6900,Block,Alampur,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,4612,Block,Alampur,LGD,695,4612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,4925,Block,Alamuru,LGD,747,4925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5580,Block,Aland,LGD,538,5580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,5704,Block,Alandur,LGD,568,5704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,5824,Block,Alangudi,LGD,582,5824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,5875,Block,Alangulam,LGD,733,5875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,5951,Block,Alathur,LGD,581,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +LGD,5651,Block,Alathur,LGD,563,5651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +LGD,1322,Block,Alauli,LGD,202,1322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +LGD,2715,Block,Albert Ekka(Jari),LGD,331,2715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,6409,Block,Alewa,LGD,65,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +LGD,2106,Block,Algapur,LGD,289,2106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +LGD,4177,Block,Alibag,LGD,491,4177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,1007,Block,Aliganj,LGD,138,1007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +LGD,7371,Block,Aligarh,LGD,116,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,1187,Block,Alinagar,LGD,195,1187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,2173,Block,Alipurduar - I,LGD,664,2173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +LGD,2174,Block,Alipurduar - II,LGD,664,2174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +LGD,3713,Block,Alirajpur,LGD,639,3713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +LGD,4470,Block,Alladurg,LGD,513,4470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,5298,Block,Allagadda,LGD,755,5298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,890,Block,Allahabad,LGD,120,890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,6267,Block,Allapalli,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,908,Block,Allapur,LGD,121,908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +LGD,4940,Block,Allavaram,LGD,747,4940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5167,Block,Allur,LGD,515,5167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,7123,Block,Almel,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,330,Block,Almora,LGD,45,330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,7081,Block,Alnavar,LGD,536,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,1759,Block,Alongkima,LGD,246,1759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,7528,Block,Aloor,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,6809,Block,Aloosa,LGD,623,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +LGD,3502,Block,Alot,LGD,423,3502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,5274,Block,Alur,LGD,511,5274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5557,Block,Alur,LGD,539,5557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,5658,Block,Aluva,LGD,555,5658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +LGD,6328,Block,Alwal,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,499,Block,Alwar,LGD,87,499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,5361,Block,Amadagur,LGD,754,5361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4798,Block,Amadalavalasa,LGD,519,4798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,1836,Block,Amahator,LGD,614,1836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,4941,Block,Amalapuram,LGD,747,4941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3969,Block,Amalner,LGD,478,3969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,4563,Block,Amangal,LGD,518,4563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,3439,Block,Amanganj,LGD,420,3439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,5351,Block,Amarapuram,LGD,754,5351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5052,Block,Amaravathi,LGD,751,5052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6290,Block,Amarchintha,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,7122,Block,Amargarh,LGD,737,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +LGD,6867,Block,Amariya,LGD,173,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +LGD,3468,Block,Amarpatan,LGD,784,3468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,6695,Block,Amarpur,LGD,654,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +LGD,1346,Block,Amarpur,LGD,190,1346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,5086,Block,Amarthalur,LGD,750,5086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3648,Block,Amarwara,LGD,399,3648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,1499,Block,Amas,LGD,196,1499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,148,Block,Amb,LGD,26,148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,2768,Block,Ambabhona,LGD,347,2768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,4129,Block,Ambad,LGD,479,4129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,3310,Block,Ambagarh Chouki,LGD,761,3310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,3385,Block,Ambah,LGD,417,3385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,4935,Block,Ambajipeta,LGD,747,4935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,359,Block,Ambala,LGD,58,359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +LGD,6406,Block,Ambala Cantonment,LGD,58,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +LGD,5674,Block,Ambalappuzha,LGD,554,5674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +LGD,4170,Block,Ambarnath,LGD,497,4170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +LGD,5878,Block,Ambasamudram,LGD,592,5878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,6697,Block,Ambassa,LGD,269,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +LGD,5700,Block,Ambattur,LGD,568,5700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,4188,Block,Ambegaon,LGD,490,4188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,4225,Block,Ambejogai,LGD,470,4225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,547,Block,Amber,LGD,102,547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,4502,Block,Amberpet,LGD,507,4502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,7552,Block,Ambika,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,3247,Block,Ambikapur,LGD,389,3247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,5719,Block,Ambur,LGD,732,5719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +LGD,1157,Block,Amdabad,LGD,201,1157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,2322,Block,Amdanga,LGD,303,2322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,6276,Block,Ameenpur,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,4497,Block,Ameerpet,LGD,507,4497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,641,Block,Amet,LGD,112,641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,914,Block,Amethi,LGD,640,914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +LGD,4047,Block,Amgaon,LGD,476,4047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,2072,Block,Amguri,LGD,300,2072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +LGD,5620,Block,Amini,LGD,553,5620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,7161,Block,Aminjikarai,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,3736,Block,Amirgadh,LGD,441,3736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,3605,Block,Amla,LGD,394,3605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,1998,Block,Amlarem,LGD,275,1998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 +LGD,7307,Block,Amlipadar,LGD,645,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +LGD,222,Block,Amloh,LGD,30,222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +LGD,1261,Block,Amnour,LGD,218,1261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,3914,Block,Amod,LGD,442,3914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,1138,Block,Amour,LGD,214,1138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,4578,Block,Amrabad,LGD,694,4578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,2574,Block,Amrapara,LGD,337,2574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +LGD,4009,Block,Amravati,LGD,468,4009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,3843,Block,Amreli,LGD,439,3843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,7432,Block,Amreli-City,LGD,439,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,831,Block,Amritpur,LGD,141,831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +LGD,256,Block,Amritsar -I,LGD,27,256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +LGD,257,Block,Amritsar- II,LGD,27,257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +LGD,730,Block,Amroha,LGD,154,730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +LGD,2400,Block,Amta - I,LGD,313,2400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,2399,Block,Amta - II,LGD,313,2399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,5964,Block,Anaicut,LGD,595,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +LGD,6643,Block,Anaimalai,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,4871,Block,Anakapalli,LGD,744,4871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2854,Block,Anandapur,LGD,361,2854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,4863,Block,Anandapuram,LGD,520,4863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,6530,Block,Anand City,LGD,440,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,2734,Block,Anandpur,LGD,343,2734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,6061,Block,Anandpuri,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,262,Block,Anandpur Sahib,LGD,42,262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +LGD,3864,Block,Anand Rural,LGD,440,3864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,5330,Block,Anantapur Rural,LGD,502,5330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,7426,Block,Anantapur Urban,LGD,502,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,6302,Block,Ananthagiri,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,4845,Block,Ananthagiri,LGD,745,4845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5173,Block,Ananthasagaram,LGD,515,5173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,55,Block,Anantnag,LGD,1,55,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,6822,Block,Anantnag East (Mattan),LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,4917,Block,Anaparthi,LGD,505,4917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,6662,Block,Anchetty,LGD,577,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,2272,Block,Andal,LGD,704,2272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,1243,Block,Andar,LGD,222,1243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,7179,Block,Andheri,LGD,483,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +LGD,7140,Block,Andhi,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,1096,Block,Andhratharhi,LGD,206,1096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,5983,Block,Andimadam,LGD,610,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +LGD,5846,Block,Andipatti,LGD,588,5846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +LGD,4479,Block,Andole,LGD,691,4479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,5627,Block,Andrott,LGD,553,5627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,5545,Block,Anekal,LGD,525,5545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +LGD,1720,Block,Anelih,LGD,230,1720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 +LGD,2686,Block,Angara,LGD,339,2686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,1754,Block,Angjangyang,LGD,247,1754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,121,Block,Ani,LGD,20,121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,1718,Block,Anini,LGD,230,1718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 +LGD,3557,Block,Anjad,LGD,393,3557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,4003,Block,Anjangaon Surji,LGD,468,4003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,3725,Block,Anjar,LGD,449,3725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,3868,Block,Anklav,LGD,440,3868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,3918,Block,Anklesvar,LGD,442,3918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,5484,Block,Ankola,LGD,550,5484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,6268,Block,Annapureddypalli,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,7080,Block,Annigeri,LGD,536,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,5955,Block,Annur,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,671,Block,Anta,LGD,89,671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,3353,Block,Antagarh,LGD,381,3353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,7362,Block,Antali,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,6214,Block,Anthergaon,LGD,682,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,5969,Block,Anthiyur,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,3011,Block,Anugola,LGD,344,3011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,5165,Block,Anumasamudrampeta,LGD,515,5165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,4660,Block,Anumula,LGD,514,4660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,462,Block,Anupgarh,LGD,100,462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,3694,Block,Anuppur,LGD,390,3694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +LGD,748,Block,Anupshahr,LGD,134,748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +LGD,786,Block,Aonla,LGD,130,786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +LGD,1793,Block,Aquqhnaqua,LGD,764,1793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,6659,Block,Arain,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,7403,Block,Arakera,LGD,546,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,5715,Block,Arakonam,LGD,731,5715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +LGD,4844,Block,Araku Valley,LGD,745,4844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2340,Block,Arambag,LGD,312,2340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,3330,Block,Arang,LGD,387,3330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,5721,Block,Arani,LGD,593,5721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,5826,Block,Aranthangi,LGD,582,5826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,1116,Block,Araria,LGD,188,1116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,5768,Block,Aravakurichi,LGD,576,5768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +LGD,5716,Block,Arcot,LGD,731,5716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +LGD,4099,Block,Ardhapur,LGD,485,4099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,5116,Block,Ardhaveedu,LGD,790,5116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1045,Block,Areraj,LGD,213,1045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,7553,Block,Areth,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,1377,Block,Ariari,LGD,219,1377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +LGD,6795,Block,Aripal,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,5787,Block,Ariyalur,LGD,610,5787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +LGD,7253,Block,Arjunda,LGD,646,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +LGD,4050,Block,Arjuni Morgaon,LGD,476,4050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,5558,Block,Arkalgud,LGD,539,5558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,158,Block,Arki,LGD,25,158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,4360,Block,Armoor,LGD,516,4360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,4053,Block,Armori,LGD,475,4053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,6740,Block,Arnas,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,4088,Block,Arni,LGD,500,4088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,6717,Block,Arnia,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,700,Block,Arnod,LGD,629,700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +LGD,3682,Block,Aron,LGD,406,3682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,1422,Block,Arrah,LGD,193,1422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,2389,Block,Arsha,LGD,321,2389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,5555,Block,Arsikere,LGD,539,5555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,6922,Block,Arthuna,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,5853,Block,Aruppukkottai,LGD,597,5853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,4017,Block,Arvi,LGD,498,4017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,1542,Block,Arwal,LGD,611,1542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +LGD,1361,Block,Asarganj,LGD,207,1361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,6512,Block,Asarva,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,3686,Block,Ashoknagar,LGD,391,3686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,3584,Block,Ashta,LGD,427,3584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,4215,Block,Ashti,LGD,470,4215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,4015,Block,Ashti,LGD,498,4015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,4319,Block,Asifabad,LGD,699,4319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,4506,Block,Asif Nagar,LGD,507,4506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,3078,Block,Asika,LGD,354,3078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,627,Block,Asind,LGD,92,627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,6055,Block,Asnawar,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,5275,Block,Aspari,LGD,511,5275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,647,Block,Aspur,LGD,99,647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,373,Block,Assandh,LGD,67,373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,6752,Block,Assar,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,3060,Block,Astaranga,LGD,369,3060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,1385,Block,Asthawan,LGD,209,1385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,1770,Block,Asuto,LGD,251,1770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,4728,Block,Aswapuram,LGD,690,4728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,4749,Block,Aswaraopeta,LGD,690,4749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,873,Block,Atarra,LGD,128,873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +LGD,5050,Block,Atchampet,LGD,751,5050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4878,Block,Atchuthapuram,LGD,744,4878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6457,Block,Ateli,LGD,69,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +LGD,3391,Block,Ater,LGD,395,3391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,2950,Block,Athagada,LGD,350,2950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,7116,Block,Athani,LGD,285,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,1853,Block,Athibung,LGD,613,1853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +LGD,4694,Block,Athmakur,LGD,686,4694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,1415,Block,Athmalgola,LGD,212,1415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,3017,Block,Athmallik,LGD,344,3017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,3599,Block,Athner,LGD,394,3599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,5434,Block,Athni,LGD,527,5434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,71,Block,Atholi (Paddar),LGD,620,71,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,5994,Block,Athoor,LGD,572,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,4998,Block,Atlapragada Konduru,LGD,749,4998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5227,Block,Atlur,LGD,504,5227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,5164,Block,Atmakur,LGD,515,5164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5322,Block,Atmakur,LGD,502,5322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,4592,Block,Atmakur,LGD,693,4592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,5265,Block,Atmakur,LGD,755,5265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4626,Block,Atmakur (M),LGD,697,4626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,4622,Block,Atmakur (S),LGD,696,4622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,1773,Block,Atoizu,LGD,251,1773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,4300,Block,Atpadi,LGD,493,4300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,754,Block,Atrauli,LGD,119,754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +LGD,4919,Block,Atreyapuram,LGD,747,4919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1493,Block,Atri,LGD,196,1493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,673,Block,Atru,LGD,89,673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,2769,Block,Attabira,LGD,347,2769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,4973,Block,Attili,LGD,523,4973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,5743,Block,Attur,LGD,584,5743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,4113,Block,Aundha (Nagnath),LGD,477,4113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +LGD,7278,Block,Aundhi,LGD,761,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,5456,Block,Aurad,LGD,529,5456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,1207,Block,Aurai,LGD,208,1207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,999,Block,Aurai,LGD,179,999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +LGD,842,Block,Auraiya,LGD,122,842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +LGD,1481,Block,Aurangabad,LGD,189,1481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,4232,Block,Ausa,LGD,481,4232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,2277,Block,Ausgram - I,LGD,306,2277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2276,Block,Ausgram - II,LGD,306,2276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,134,Block,Aut,LGD,22,134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,6621,Block,Avadi,LGD,589,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,5037,Block,Avanigadda,LGD,510,5037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,6510,Block,Avantipur Barodia,LGD,430,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +LGD,5903,Block,Avinashi,LGD,634,5903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,5828,Block,Avudayarkoil,LGD,582,5828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,49,Block,Awantipora,LGD,11,49,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,7163,Block,Ayanavaram,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,966,Block,Azamgarh,LGD,123,966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,1148,Block,Azamnagar,LGD,201,1148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,2127,Block,Azara,LGD,618,2127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +LGD,258,Block,Baba Bakala,LGD,27,258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +LGD,6454,Block,Babain St,LGD,68,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +LGD,7069,Block,Babaleshwar,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,872,Block,Baberu,LGD,128,872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +LGD,3840,Block,Babra,LGD,439,3840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,1088,Block,Babubarhi,LGD,206,1088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,4080,Block,Babulgaon,LGD,500,4080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,4674,Block,Bachannapet,LGD,689,4674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,1310,Block,Bachhwara,LGD,191,1310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,6315,Block,Bachupally,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,6998,Block,Badagaon (Dhasan),LGD,434,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,3431,Block,Bada Malhera,LGD,398,3431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,2946,Block,Badamba,LGD,350,2946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,5446,Block,Badami,LGD,524,5446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,4820,Block,Badangi,LGD,521,4820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,7573,Block,Badarpur,LGD,670,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 +LGD,2102,Block,Badarpur,LGD,293,2102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +LGD,3412,Block,Badarwas,LGD,432,3412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,2882,Block,Badasahi,LGD,365,2882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,162,Block,Baddi,LGD,25,162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,6509,Block,Bade Bacheli,LGD,376,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +LGD,3356,Block,Baderajpur,LGD,643,3356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +LGD,6903,Block,Badgaon,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,403,Block,Badhra,LGD,701,403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +LGD,3595,Block,Badi,LGD,421,3595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,6407,Block,Badkhal,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,982,Block,Badlapur,LGD,152,982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +LGD,6444,Block,Badli,LGD,64,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +LGD,7570,Block,Badli,LGD,80,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 +LGD,3514,Block,Badnagar,LGD,435,3514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,4128,Block,Badnapur,LGD,479,4128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,3532,Block,Badnawar,LGD,403,3532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,6066,Block,Badnor,LGD,774,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3517,Block,Badod,LGD,667,3517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +LGD,3383,Block,Badoda,LGD,431,3383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +LGD,6421,Block,Badshahpur St,LGD,62,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,2328,Block,Baduria,LGD,303,2328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,5210,Block,Badvel,LGD,504,5210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,3623,Block,Badwara,LGD,413,3623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,186,Block,Bagachnogi,LGD,22,186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,1019,Block,Bagaha,LGD,211,1019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,5447,Block,Bagalkot,LGD,524,5447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,2139,Block,Baganpara,LGD,616,2139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +LGD,3844,Block,Bagasara,LGD,439,3844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,7347,Block,Bagbahar,LGD,380,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,3343,Block,Bagbahra,LGD,385,3343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +LGD,2316,Block,Bagda,LGD,303,2316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,5598,Block,Bagepalli,LGD,630,5598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,323,Block,Bageshwar,LGD,46,323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +LGD,232,Block,Bagha Purana,LGD,38,232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +LGD,2020,Block,Baghbor,LGD,280,2020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +LGD,1977,Block,Baghmara,LGD,277,1977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +LGD,2582,Block,Baghmara-Cum-Katras,LGD,325,2582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,736,Block,Baghpat,LGD,124,736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +LGD,1783,Block,Baghty,LGD,250,1783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,3255,Block,Bagicha,LGD,380,3255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,653,Block,Bagidora,LGD,88,653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,4145,Block,Baglan,LGD,487,4145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,3529,Block,Bagli,LGD,402,3529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,2392,Block,Bagmundi,LGD,321,2392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,2408,Block,Bagnan - I,LGD,313,2408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,2409,Block,Bagnan - II,LGD,313,2409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,2541,Block,Bagodar,LGD,329,2541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,589,Block,Bagora,LGD,104,589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,6588,Block,Bagra Circle,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,2005,Block,Bagribari,LGD,294,2005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +LGD,7174,Block,Bagshad,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,6341,Block,Bagwalipokhar,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,770,Block,Bah,LGD,118,770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +LGD,1125,Block,Bahadurganj,LGD,203,1125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +LGD,408,Block,Bahadurgarh,LGD,64,408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +LGD,6978,Block,Bahadurpur,LGD,391,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,1189,Block,Bahadurpur,LGD,195,1189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,4508,Block,Bahadurpura,LGD,507,4508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,2859,Block,Bahalda,LGD,365,2859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,6432,Block,Bahal St,LGD,59,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +LGD,7500,Block,Bahanaga,LGD,346,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,2614,Block,Baharagora,LGD,327,2614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,6072,Block,Bahari,LGD,433,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,1192,Block,Baheri,LGD,195,1192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,784,Block,Baheri,LGD,130,784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +LGD,6479,Block,Bahin St,LGD,619,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +LGD,3625,Block,Bahoriband,LGD,413,3625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,5912,Block,Bahour,LGD,600,5912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +LGD,921,Block,Bahraich,LGD,125,921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +LGD,7134,Block,Bahrawanda,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,6707,Block,Bahu,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,3674,Block,Baihar,LGD,392,3674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,112,Block,Baijnath,LGD,18,112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,7135,Block,Baijupara,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,3232,Block,Baikunthpur,LGD,384,3232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +LGD,1228,Block,Baikunthpur,LGD,197,1228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,5440,Block,Bailahongala,LGD,527,5440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,7066,Block,Bainduru,LGD,549,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +LGD,6534,Block,Bairad,LGD,432,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,5423,Block,Baireddipalle,LGD,503,5423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,1063,Block,Bairgania,LGD,221,1063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,1029,Block,Bairia,LGD,211,1029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,980,Block,Bairia,LGD,126,980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +LGD,1139,Block,Baisa,LGD,214,1139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,1140,Block,Baisi,LGD,214,1140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,6071,Block,Bajag,LGD,404,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +LGD,2024,Block,Bajali (Pt),LGD,739,2024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +LGD,6544,Block,Bajengdoba,LGD,656,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 +LGD,6913,Block,Bajju,LGD,93,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,3505,Block,Bajna,LGD,423,3505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,1075,Block,Bajpatti,LGD,221,1075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,348,Block,Bajpur,LGD,56,348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,6666,Block,Bakani,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,3364,Block,Bakavand,LGD,374,3364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,1316,Block,Bakhri,LGD,191,1316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,1414,Block,Bakhtiarpur,LGD,212,1414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,820,Block,Bakshi Ka Talab,LGD,162,820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +LGD,219,Block,Balachaur,LGD,40,219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +LGD,2345,Block,Balagarh,LGD,312,2345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,3672,Block,Balaghat,LGD,392,3672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,6778,Block,Balakote,LGD,10,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +LGD,4517,Block,Balanagar,LGD,700,4517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,4557,Block,Balanagar,LGD,512,4557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,3142,Block,Balangir,LGD,345,3142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,6323,Block,Balapur,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,3990,Block,Balapur,LGD,467,3990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +LGD,2393,Block,Balarampur,LGD,321,2393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,3871,Block,Balasinor,LGD,669,3871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,5188,Block,Balayapalli,LGD,752,5188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3421,Block,Baldeogarh,LGD,434,3421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,6868,Block,Baldirai,LGD,185,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +LGD,131,Block,Baldwara,LGD,22,131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,6564,Block,Balemu Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,6049,Block,Balesar,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,7510,Block,Baleshwar,LGD,346,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,6374,Block,Balganga,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,7360,Block,Balghat,LGD,108,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,6947,Block,Balh,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,605,Block,Bali,LGD,111,605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,1319,Block,Balia,LGD,191,1319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,3042,Block,Balianta,LGD,362,3042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,2893,Block,Baliapal,LGD,346,2893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,2586,Block,Baliapur,LGD,325,2586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,135,Block,Bali Chowki,LGD,22,135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,3119,Block,Baliguda,LGD,359,3119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,2014,Block,Balijana,LGD,287,2014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +LGD,1592,Block,Balijan Adc,LGD,237,1592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,4815,Block,Balijipeta,LGD,743,4815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2943,Block,Balikuda,LGD,355,2943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,3043,Block,Balipatna,LGD,362,3043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,7468,Block,Balisankara,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,4361,Block,Balkonda,LGD,516,4361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,426,Block,Ballabgarh,LGD,60,426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,6452,Block,Ballah St,LGD,67,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,5500,Block,Ballari,LGD,528,5500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +LGD,4074,Block,Ballarpur,LGD,473,4074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,978,Block,Ballia,LGD,126,978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +LGD,5105,Block,Ballikurava,LGD,517,5105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,2403,Block,Bally Jagachha,LGD,313,2403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,4597,Block,Balmoor,LGD,694,4597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,3321,Block,Balod,LGD,646,3321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +LGD,3279,Block,Baloda,LGD,379,3279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,3326,Block,Balodabazar,LGD,644,3326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,3237,Block,Balrampur,LGD,649,3237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,925,Block,Balrampur,LGD,127,925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +LGD,1146,Block,Balrampur,LGD,201,1146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,6442,Block,Balsamand St,LGD,63,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +LGD,2640,Block,Balumath,LGD,335,2640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,2204,Block,Balurghat,LGD,310,2204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,2215,Block,Bamangola,LGD,316,2215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,527,Block,Bamanwas,LGD,113,527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,7461,Block,Bamara,LGD,371,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,1586,Block,Bameng Adc,LGD,231,1586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,7265,Block,Bamhnidih,LGD,379,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,7564,Block,Bamhori,LGD,421,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,7112,Block,Bamor,LGD,417,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,3678,Block,Bamori,LGD,406,3678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,6102,Block,Bana Eac,LGD,787,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,5288,Block,Banaganapalli,LGD,755,5288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3054,Block,Banapur,LGD,362,3054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,7118,Block,Banarhat,LGD,314,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,3010,Block,Banarpal,LGD,344,3010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,3446,Block,Banda,LGD,425,3446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,871,Block,Banda,LGD,128,871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +LGD,7420,Block,Bandari,LGD,425,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,7353,Block,Bande,LGD,381,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,6603,Block,Banderdewa Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,2730,Block,Bandgaon,LGD,343,2730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,3482,Block,Bandhavgarh,LGD,436,3482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +LGD,3205,Block,Bandhugaon,LGD,363,3205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,5283,Block,Bandi Atmakur,LGD,755,5283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7210,Block,Bandikui,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,41,Block,Bandipora,LGD,623,41,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +LGD,4509,Block,Bandlaguda,LGD,507,4509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,1210,Block,Bandra,LGD,208,1210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,2830,Block,Banei,LGD,373,2830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,2137,Block,Banekuchi,LGD,298,2137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +LGD,630,Block,Banera,LGD,92,630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,5993,Block,Banga,LGD,40,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +LGD,149,Block,Bangana,LGD,26,149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,6356,Block,Bangapani,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,5593,Block,Bangarapet,LGD,542,5593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +LGD,6160,Block,Bangarmau,LGD,186,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +LGD,5429,Block,Bangarupalem,LGD,503,5429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,2875,Block,Bangiriposi,LGD,365,2875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,3150,Block,Bangomunda,LGD,345,3150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,29,Block,Bani,LGD,7,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,1252,Block,Baniapur,LGD,218,1252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,66,Block,Banihal,LGD,621,66,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,120,Block,Banjar,LGD,20,120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,1035,Block,Banjaria,LGD,213,1035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1350,Block,Banka,LGD,190,1350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,1037,Block,Bankatwa,LGD,213,1037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1500,Block,Banke Bazar,LGD,196,1500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,3619,Block,Bankhedi,LGD,409,3619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,2948,Block,Banki,LGD,350,2948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,2361,Block,Bankura - I,LGD,305,2361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,2362,Block,Bankura - II,LGD,305,2362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,1180,Block,Banma Itahri,LGD,216,1180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,1128,Block,Banmankhi,LGD,214,1128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,2727,Block,Bano,LGD,342,2727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,3926,Block,Bansda,LGD,453,3926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +LGD,979,Block,Bansdih,LGD,126,979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +LGD,952,Block,Bansgaon,LGD,148,952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +LGD,934,Block,Bansi,LGD,182,934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +LGD,2206,Block,Bansihari,LGD,310,2206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,2726,Block,Bansjor,LGD,342,2726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,7493,Block,Banspal,LGD,361,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,500,Block,Bansur,LGD,782,500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,4383,Block,Banswada,LGD,685,4383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,652,Block,Banswara,LGD,88,652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,2911,Block,Banta,LGD,348,2911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +LGD,5019,Block,Bantumilli,LGD,510,5019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,5562,Block,Bantval,LGD,534,5562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,4532,Block,Bantwaram,LGD,698,4532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,6047,Block,Baori,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,6048,Block,Bap,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5093,Block,Bapatla,LGD,750,5093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6916,Block,Bapini,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,6462,Block,Bapoli,LGD,71,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +LGD,5004,Block,Bapulapadu,LGD,510,5004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,891,Block,Bara,LGD,120,891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,2269,Block,Barabani,LGD,704,2269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,2394,Block,Barabazar,LGD,321,2394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,1510,Block,Barachatti,LGD,196,1510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,2765,Block,Baragada,LGD,347,2765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,2812,Block,Baragaon,LGD,373,2812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,1349,Block,Barahat,LGD,190,1349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,1365,Block,Barahiya,LGD,204,1365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +LGD,3594,Block,Baraily,LGD,421,3594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,6377,Block,Barakot,LGD,48,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +LGD,5935,Block,Barama,LGD,616,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +LGD,4199,Block,Baramati,LGD,490,4199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,3271,Block,Baramkela,LGD,763,3271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,35,Block,Baramulla,LGD,3,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,672,Block,Baran,LGD,89,672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,2951,Block,Barang,LGD,350,2951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,7361,Block,Barapal,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,360,Block,Barara,LGD,58,360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +LGD,1153,Block,Barari,LGD,201,1153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,2325,Block,Barasat - I,LGD,303,2325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,2326,Block,Barasat - II,LGD,303,2326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,1226,Block,Barauli,LGD,197,1226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,1312,Block,Barauni,LGD,191,1312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,735,Block,Baraut,LGD,124,735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +LGD,2135,Block,Barbhag,LGD,298,2135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +LGD,1372,Block,Barbigha,LGD,219,1372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +LGD,2834,Block,Barbil,LGD,361,2834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,6798,Block,Barbugh Imam Sahib,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +LGD,5610,Block,Bardez,LGD,551,5610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +LGD,2500,Block,Bardiha,LGD,328,2500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,3940,Block,Bardoli,LGD,459,3940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,787,Block,Bareilly,LGD,130,787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +LGD,6329,Block,Bargarh,LGD,328,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,7423,Block,Bargawan,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,3665,Block,Barghat,LGD,428,3665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,6613,Block,Bargur,LGD,577,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,1417,Block,Barh,LGD,212,1417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,2567,Block,Barhait,LGD,340,2567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,961,Block,Barhaj,LGD,137,961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +LGD,1437,Block,Barhampur,LGD,194,1437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,1423,Block,Barhara,LGD,193,1423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,1129,Block,Barhara,LGD,214,1129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,1231,Block,Barharia,LGD,222,1231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,2572,Block,Barharwa,LGD,340,2572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,1528,Block,Barhat,LGD,198,1528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,3622,Block,Barhi,LGD,413,3622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,2645,Block,Barhi,LGD,332,2645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,516,Block,Bari,LGD,98,516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,2985,Block,Bari,LGD,356,2985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,1357,Block,Bariarpur,LGD,207,1357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,6596,Block,Bari Basip Circle,LGD,239,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,6720,Block,Bari Brahamana,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +LGD,2872,Block,Baripada,LGD,365,2872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,1620,Block,Baririjo Circle,LGD,241,1620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,664,Block,Bari Sadri,LGD,95,664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,2641,Block,Bariyatu,LGD,335,2641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,2363,Block,Barjora,LGD,305,2363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,2657,Block,Barkagaon,LGD,332,2657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,2650,Block,Barkatha,LGD,332,2650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,2134,Block,Barkhetri,LGD,298,2134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +LGD,2801,Block,Barkot,LGD,351,2801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 +LGD,582,Block,Barmer,LGD,90,582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,7131,Block,Barmer Gramin,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,2018,Block,Barnagar (Pt),LGD,280,2018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +LGD,275,Block,Barnala,LGD,605,275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +LGD,7224,Block,Barnala,LGD,113,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,6405,Block,Barnigad,LGD,57,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,102,Block,Baroh,LGD,18,102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,7001,Block,Baroni,LGD,401,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +LGD,2763,Block,Barpali,LGD,347,2763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,7233,Block,Barpali,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,2022,Block,Barpeta,LGD,280,2022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +LGD,2323,Block,Barrackpur - I,LGD,303,2323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,2324,Block,Barrackpur - II,LGD,303,2324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,144,Block,Barsar,LGD,17,144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,4246,Block,Barshi,LGD,496,4246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,3994,Block,Barshitakli,LGD,467,3994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +LGD,1147,Block,Barsoi,LGD,201,1147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,7232,Block,Barsur,LGD,376,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +LGD,2422,Block,Baruipur,LGD,304,2422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,1482,Block,Barun,LGD,189,1482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,1200,Block,Baruraj (Motipur),LGD,208,1200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,2636,Block,Barwadih,LGD,335,2636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,3545,Block,Barwaha,LGD,414,3545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,6440,Block,Barwala,LGD,63,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +LGD,3786,Block,Barwala,LGD,676,3786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +LGD,6460,Block,Barwala St,LGD,70,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +LGD,3554,Block,Barwani,LGD,393,3554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,7372,Block,Basai Nawab,LGD,98,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,6736,Block,Basantgarh,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,2434,Block,Basanti,LGD,304,2434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,1234,Block,Basantpur,LGD,222,1234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,1102,Block,Basantpur,LGD,223,1102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,6205,Block,Basar,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,1636,Block,Basar Adc,LGD,724,1636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 +LGD,5454,Block,Basavakalyan,LGD,529,5454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,5452,Block,Basavana Bagevadi,LGD,530,5452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,515,Block,Baseri,LGD,98,515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,2560,Block,Bashant Rai*,LGD,330,2560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,4535,Block,Basheerabad,LGD,698,4535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,2711,Block,Basia,LGD,331,2711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,2329,Block,Basirhat - I,LGD,303,2329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,2330,Block,Basirhat - II,LGD,303,2330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,2143,Block,Baska,LGD,616,2143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +LGD,3339,Block,Basna,LGD,385,3339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +LGD,3573,Block,Basoda,LGD,437,3573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,28,Block,Basohli,LGD,7,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,1082,Block,Basopatti,LGD,206,1082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,6408,Block,Bass,LGD,792,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +LGD,549,Block,Bassi,LGD,102,549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,7133,Block,Bassi,LGD,95,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,220,Block,Bassi Pathana,LGD,30,220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +LGD,2895,Block,Basta,LGD,346,2895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,3362,Block,Bastanar,LGD,374,3362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,3363,Block,Bastar,LGD,374,3363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,939,Block,Basti,LGD,131,939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +LGD,2915,Block,Basudevpur,LGD,348,2915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +LGD,6334,Block,Basukedar,LGD,54,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +LGD,533,Block,Baswa,LGD,97,533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,7339,Block,Batabari,LGD,278,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,7363,Block,Batadoo,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,203,Block,Batala,LGD,32,203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +LGD,5337,Block,Bathalapalli,LGD,754,5337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,245,Block,Bathinda,LGD,28,245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +LGD,1069,Block,Bathnaha,LGD,221,1069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,3456,Block,Batiyagarh,LGD,400,3456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,6761,Block,Batote,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,3253,Block,Batouli,LGD,389,3253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,1355,Block,Bausi,LGD,190,1355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,3784,Block,Bavla,LGD,438,3784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,415,Block,Bawal,LGD,72,415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,7582,Block,Bawana,LGD,794,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,397,Block,Bawani Khera,LGD,59,397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +LGD,3772,Block,Bayad,LGD,672,3772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,513,Block,Bayana,LGD,91,513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,578,Block,Baytoo,LGD,90,578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,4742,Block,Bayyaram,LGD,688,4742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,4323,Block,Bazarhatnoor,LGD,501,4323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,609,Block,Beawar,LGD,774,609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3758,Block,Becharaji,LGD,451,3758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,4221,Block,Beed,LGD,470,4221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,5391,Block,Beerongi Kothakota,LGD,753,5391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6212,Block,Beerpur,LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,3381,Block,Beerpur,LGD,431,3381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +LGD,5,Block,Beerwah,LGD,2,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,3592,Block,Begamganj,LGD,421,3592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,657,Block,Begun,LGD,95,657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,3035,Block,Begunia,LGD,362,3035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,1314,Block,Begusarai,LGD,191,1314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,701,Block,Behat,LGD,177,701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +LGD,1427,Block,Behea,LGD,193,1427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,493,Block,Behror,LGD,782,493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,4437,Block,Bejjanki,LGD,692,4437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,4317,Block,Bejjur,LGD,699,4317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,4308,Block,Bela,LGD,501,4308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,1489,Block,Belaganj,LGD,196,1489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,5438,Block,Belagavi,LGD,527,5438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,7316,Block,Belargaon,LGD,377,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +LGD,1416,Block,Belchhi,LGD,212,1416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,2244,Block,Beldanga - I,LGD,319,2244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2245,Block,Beldanga - II,LGD,319,2245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,1326,Block,Beldaur,LGD,202,1326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +LGD,7243,Block,Belgahna,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,1352,Block,Belhar,LGD,190,1352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,7489,Block,Bellaguntha,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,5049,Block,Bellamkonda,LGD,751,5049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4350,Block,Bellampally,LGD,684,4350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,6687,Block,Belonia,LGD,271,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +LGD,3147,Block,Belpara,LGD,345,3147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,1072,Block,Belsand,LGD,221,1072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,5563,Block,Beltangadi,LGD,534,5563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,7281,Block,Beltara,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,975,Block,Belthara Road,LGD,126,975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +LGD,5318,Block,Beluguppa,LGD,502,5318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5554,Block,Belur,LGD,539,5554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,3312,Block,Bemetara,LGD,650,3312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,1393,Block,Ben,LGD,209,1393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,2537,Block,Bengabad,LGD,329,2537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,5544,Block,Bengaluru East,LGD,525,5544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +LGD,5542,Block,Bengaluru North,LGD,525,5542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +LGD,5543,Block,Bengaluru South,LGD,525,5543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +LGD,2113,Block,Bengtol,LGD,612,2113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +LGD,1091,Block,Benipatti,LGD,206,1091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,1188,Block,Benipur,LGD,195,1188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,3689,Block,Beohari,LGD,429,3689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +LGD,3580,Block,Berasia,LGD,396,3580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +LGD,2241,Block,Berhampore,LGD,319,2241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,3093,Block,Berhampur,LGD,354,3093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,407,Block,Beri,LGD,64,407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +LGD,318,Block,Berinag,LGD,53,318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,6776,Block,Beri Pattan,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,3315,Block,Berla,LGD,650,3315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,2590,Block,Bermo,LGD,322,2590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,2695,Block,Bero,LGD,339,2695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,5131,Block,Bestavaripeta,LGD,790,5131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,339,Block,Betalghat,LGD,51,339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,1966,Block,Betasing,LGD,663,1966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 +LGD,5279,Block,Bethamcherla,LGD,755,5279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2881,Block,Betnoti,LGD,365,2881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,1028,Block,Bettiah,LGD,211,1028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,3600,Block,Betul,LGD,394,3600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,6989,Block,Betul Nagar,LGD,394,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,3742,Block,Bhabhar,LGD,789,3742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,1453,Block,Bhabua,LGD,200,1453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,3724,Block,Bhachau,LGD,449,3724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,65,Block,Bhaderwah,LGD,4,65,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,662,Block,Bhadesar,LGD,95,662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,3971,Block,Bhadgaon,LGD,478,3971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,997,Block,Bhadohi,LGD,179,997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +LGD,472,Block,Bhadra,LGD,101,472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,4730,Block,Bhadrachalam,LGD,690,4730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,7217,Block,Bhadrajun,LGD,104,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,2914,Block,Bhadrak,LGD,348,2914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +LGD,4070,Block,Bhadravati,LGD,473,4070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,5521,Block,Bhadravati,LGD,547,5521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +LGD,130,Block,Bhadrota,LGD,22,130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,2231,Block,Bhagawangola - I,LGD,319,2231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2232,Block,Bhagawangola - II,LGD,319,2232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2480,Block,Bhagawanpur - I,LGD,317,2480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2479,Block,Bhagawanpur - II,LGD,317,2479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,6747,Block,Bhagwa,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,1308,Block,Bhagwanpur,LGD,191,1308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,6022,Block,Bhagwanpur,LGD,50,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +LGD,1271,Block,Bhagwanpur,LGD,224,1271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,1455,Block,Bhagwanpur,LGD,200,1455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,3552,Block,Bhagwanpura,LGD,414,3552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,1235,Block,Bhagwanpur Hat,LGD,222,1235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,4339,Block,Bhainsa,LGD,680,4339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,3598,Block,Bhainsdehi,LGD,394,3598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,3379,Block,Bhairamgarh,LGD,636,3379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +LGD,3587,Block,Bhairunda,LGD,427,3587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,7328,Block,Bhaisma,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,3244,Block,Bhaiyathan,LGD,648,3244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,7315,Block,Bhakhara,LGD,377,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +LGD,86,Block,Bhalai,LGD,16,86,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,6753,Block,Bhalessa (Gandoh),LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,5455,Block,Bhalki,LGD,529,5455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,6755,Block,Bhalla,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,6561,Block,Bhalukpong Eac,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,6709,Block,Bhalwal,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,4771,Block,Bhamini,LGD,743,4771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4061,Block,Bhamragad,LGD,475,4061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,4039,Block,Bhandara,LGD,471,4039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +LGD,7373,Block,Bhandarej,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,1782,Block,Bhandari,LGD,250,1782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,2513,Block,Bhandaria,LGD,328,2513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,2912,Block,Bhandari Pokhari,LGD,348,2912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +LGD,3406,Block,Bhander,LGD,401,3406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +LGD,2603,Block,Bhandra,LGD,336,2603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +LGD,2418,Block,Bhangar - I,LGD,304,2418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2419,Block,Bhangar - II,LGD,304,2419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,7209,Block,Bhanipura,LGD,96,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,6040,Block,Bhaniyana,LGD,103,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +LGD,333,Block,Bhanoli,LGD,45,333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,937,Block,Bhanpur,LGD,131,937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +LGD,3492,Block,Bhanpura,LGD,416,3492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,7312,Block,Bhanpuri,LGD,374,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,3349,Block,Bhanupratappur,LGD,381,3349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,3820,Block,Bhanvad,LGD,674,3820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +LGD,7482,Block,Bhapur,LGD,367,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,153,Block,Bharari,LGD,15,153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +LGD,6746,Block,Bharath Bagla,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,511,Block,Bharatpur,LGD,91,511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,3231,Block,Bharatpur,LGD,760,3231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,2247,Block,Bharatpur - I,LGD,319,2247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2246,Block,Bharatpur - II,LGD,319,2246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,1114,Block,Bhargama,LGD,188,1114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,92,Block,Bharmour,LGD,16,92,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,2709,Block,Bharno,LGD,331,2709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,7414,Block,Bharoli,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,839,Block,Bharthana,LGD,139,839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +LGD,3916,Block,Bharuch,LGD,442,3916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,7597,Block,Bharuch City,LGD,442,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,147,Block,Bharwain,LGD,26,147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,3325,Block,Bhatapara,LGD,644,3325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,2286,Block,Bhatar,LGD,306,2286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,7276,Block,Bhatgaon,LGD,763,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,7310,Block,Bhatgaon,LGD,648,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,5488,Block,Bhatkal,LGD,550,5488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,4010,Block,Bhatkuli,LGD,468,4010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,2767,Block,Bhatli,LGD,347,2767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,963,Block,Bhatpar Rani,LGD,137,963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +LGD,5089,Block,Bhattiprolu,LGD,750,5089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,88,Block,Bhattiyat,LGD,16,88,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,6436,Block,Bhattukalan St,LGD,61,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +LGD,283,Block,Bhatwari,LGD,57,283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,5750,Block,Bhavani,LGD,573,5750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,3854,Block,Bhavnagar,LGD,443,3854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,7444,Block,Bhavnagar City,LGD,443,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,6855,Block,Bhawanigarh,LGD,43,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +LGD,1130,Block,Bhawanipur,LGD,214,1130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,6939,Block,Bhawarna,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,2496,Block,Bhawnathpur,LGD,328,2496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,2002,Block,Bhawraguri,LGD,294,2002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +LGD,2764,Block,Bheden,LGD,347,2764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,4448,Block,Bheemadevarpalli,LGD,686,4448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,4963,Block,Bheemadole,LGD,748,4963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6228,Block,Bheemaram,LGD,684,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,7541,Block,Bheemaram (20),LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,4364,Block,Bheemgal,LGD,516,4364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,4328,Block,Bheemini,LGD,684,4328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,6223,Block,Bheempur,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,4865,Block,Bheemunipatnam,LGD,520,4865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,7203,Block,Bhella,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,3828,Block,Bhesan,LGD,448,3828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,3549,Block,Bhikangaon,LGD,414,3549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,6853,Block,Bhikhiwind,LGD,609,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +LGD,325,Block,Bhikiasain,LGD,45,325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,4391,Block,Bhiknoor,LGD,685,4391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,7329,Block,Bhilai-3,LGD,378,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +LGD,3764,Block,Bhiloda,LGD,672,3764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,634,Block,Bhilwara,LGD,92,634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,639,Block,Bhim,LGD,112,639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,4984,Block,Bhimavaram,LGD,523,4984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,7299,Block,Bhimbhauri,LGD,650,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,7027,Block,Bhimpur,LGD,394,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,612,Block,Bhinay,LGD,86,612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,3392,Block,Bhind,LGD,395,3392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,6917,Block,Bhinder,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,6994,Block,Bhind Nagar,LGD,395,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,923,Block,Bhinga,LGD,181,923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +LGD,588,Block,Bhinmal,LGD,104,588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,1022,Block,Bhitaha,LGD,211,1022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,3401,Block,Bhitarwar,LGD,407,3401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,911,Block,Bhiti,LGD,121,911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +LGD,4166,Block,Bhiwandi,LGD,497,4166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +LGD,398,Block,Bhiwani,LGD,59,398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +LGD,4036,Block,Bhiwapur,LGD,484,4036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,777,Block,Bhogaon,LGD,166,777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +LGD,4840,Block,Bhogapuram,LGD,521,4840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,846,Block,Bhognipur,LGD,156,846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +LGD,2891,Block,Bhograi,LGD,346,2891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,6543,Block,Bhoirymbong,LGD,276,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +LGD,4102,Block,Bhokar,LGD,485,4102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,4125,Block,Bhokardan,LGD,479,4125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,6744,Block,Bhomag,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,4628,Block,Bhongir,LGD,697,4628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,4574,Block,Bhoothpur,LGD,512,4574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,569,Block,Bhopalgarh,LGD,107,569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,3376,Block,Bhopalpattnam,LGD,636,3376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +LGD,4198,Block,Bhor,LGD,490,4198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,7529,Block,Bhoraj,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,146,Block,Bhoranj,LGD,17,146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,1217,Block,Bhorey,LGD,197,1217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,6885,Block,Bhota,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,7400,Block,Bhothiya,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,2990,Block,Bhuban,LGD,352,2990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,7498,Block,Bhubaneswar,LGD,362,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,4291,Block,Bhudargad,LGD,480,4291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,3726,Block,Bhuj,LGD,449,3726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,205,Block,Bhulath,LGD,35,205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +LGD,4237,Block,Bhum,LGD,488,4237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,6437,Block,Bhuna St,LGD,61,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +LGD,6887,Block,Bhuntar,LGD,20,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,4682,Block,Bhupalpally,LGD,687,4682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,6057,Block,Bhupalsagar,LGD,95,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,2027,Block,Bhuragaon,LGD,296,2027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +LGD,3965,Block,Bhusawal,LGD,478,3965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,6665,Block,Bhusawar,LGD,91,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,6645,Block,Bhuvanagiri,LGD,570,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,3566,Block,Biaora,LGD,422,3566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,1299,Block,Bibhutpur,LGD,217,1299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,4629,Block,Bibinagar,LGD,697,4629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,6242,Block,Bibipet,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,4916,Block,Biccavolu,LGD,505,4916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,6058,Block,Bichhiwara,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,3645,Block,Bichhiya,LGD,415,3645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +LGD,3657,Block,Bichhua,LGD,399,3657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,4374,Block,Bichkunda,LGD,685,4374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,7013,Block,Bicholi Hapsi,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,5612,Block,Bicholim,LGD,551,5612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +LGD,5457,Block,Bidar,LGD,529,5457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,6426,Block,Bidasar,LGD,96,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,841,Block,Bidhuna,LGD,122,841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +LGD,1280,Block,Bidupur,LGD,224,1280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,818,Block,Bighapur,LGD,186,818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +LGD,1386,Block,Bihar,LGD,209,1386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,1166,Block,Bihariganj,LGD,205,1166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,7245,Block,Biharpur,LGD,648,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,1330,Block,Bihpur,LGD,192,1330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,2049,Block,Bihpuria,LGD,295,2049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +LGD,1403,Block,Bihta,LGD,212,1403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,1216,Block,Bijaipur,LGD,197,1216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,3378,Block,Bijapur,LGD,636,3378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +LGD,7476,Block,Bijatala,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,3433,Block,Bijawar,LGD,398,3433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,54,Block,Bijbehara,LGD,1,54,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,2762,Block,Bijepur,LGD,347,2762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,4584,Block,Bijinapally,LGD,694,4584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,2115,Block,Bijni,LGD,612,2115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +LGD,713,Block,Bijnor,LGD,132,713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +LGD,638,Block,Bijoliya,LGD,92,638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,7580,Block,Bijwasan,LGD,84,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +LGD,473,Block,Bikaner,LGD,93,473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,906,Block,Bikapur,LGD,140,906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +LGD,1405,Block,Bikram,LGD,212,1405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,1461,Block,Bikramganj,LGD,215,1461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,3329,Block,Bilaigarh,LGD,763,3329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,573,Block,Bilara,LGD,107,573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,720,Block,Bilari,LGD,171,720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +LGD,6018,Block,Bilasipara Pt,LGD,285,2009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,3295,Block,Bilaspur,LGD,375,3295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,725,Block,Bilaspur,LGD,176,725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +LGD,6974,Block,Bilaspur,LGD,436,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +LGD,362,Block,Bilaspur,LGD,76,362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +LGD,156,Block,Bilaspur Sadar,LGD,15,156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +LGD,1652,Block,Bilat Circle,LGD,232,1652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +LGD,5444,Block,Bilgi,LGD,524,5444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,812,Block,Bilgram,LGD,150,812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +LGD,3297,Block,Bilha,LGD,375,3297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,848,Block,Bilhaur,LGD,157,848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +LGD,1900,Block,Bilkhawthlir,LGD,263,1900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 +LGD,27,Block,Billawar,LGD,7,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,4105,Block,Biloli,LGD,485,4105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,780,Block,Bilsi,LGD,133,780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +LGD,3443,Block,Bina,LGD,425,3443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,1383,Block,Bind,LGD,209,1383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,877,Block,Bindki,LGD,142,877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +LGD,3135,Block,Binika,LGD,372,3135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +LGD,2984,Block,Binjharpur,LGD,356,2984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,2442,Block,Binpur - I,LGD,703,2442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,2441,Block,Binpur - II,LGD,703,2441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,3137,Block,Biramaharajpur,LGD,372,3137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +LGD,2816,Block,Biramitrapur,LGD,373,2816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,1193,Block,Biraul,LGD,195,1193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,6892,Block,Birhu Kalan,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,2941,Block,Biridi,LGD,355,2941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,4375,Block,Birkur,LGD,685,4375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,2540,Block,Birni,LGD,329,2540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,6354,Block,Bironkhal,LGD,52,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,1313,Block,Birpur,LGD,191,1313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,7033,Block,Birsa,LGD,392,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,3463,Block,Birsinghpur,LGD,426,3463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,791,Block,Bisalpur,LGD,173,791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +LGD,779,Block,Bisauli,LGD,133,779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +LGD,1092,Block,Bisfi,LGD,206,1092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,6699,Block,Bishalgarh,LGD,653,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +LGD,3175,Block,Bishamakatak,LGD,370,3175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,81,Block,Bishnah,LGD,5,81,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,1874,Block,Bishnupur,LGD,252,1874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 +LGD,2415,Block,Bishnupur - I,LGD,304,2415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2416,Block,Bishnupur - II,LGD,304,2416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2624,Block,Bishrampur,LGD,338,2624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,2652,Block,Bishungarh,LGD,332,2652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,2706,Block,Bishunpur,LGD,331,2706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,2502,Block,Bishunpura,LGD,328,2502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,2864,Block,Bisoi,LGD,365,2864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,2818,Block,Bisra,LGD,373,2818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,7218,Block,Bissau,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,806,Block,Biswan,LGD,183,806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +LGD,2045,Block,Biswanath,LGD,705,2045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +LGD,1303,Block,Bithan,LGD,217,1303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,5621,Block,Bitra,LGD,553,5621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,5209,Block,B.Kodur,LGD,504,5209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,6815,Block,Bk Pora,LGD,2,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,2557,Block,Boarijor,LGD,330,2557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,4324,Block,Boath,LGD,501,4324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,4816,Block,Bobbili,LGD,521,4816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,1206,Block,Bochaha,LGD,208,1206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,6020,Block,Bodeli,LGD,668,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +LGD,3157,Block,Boden,LGD,368,3157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +LGD,4370,Block,Bodhan,LGD,516,4370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,1505,Block,Bodh Gaya,LGD,196,1505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,5842,Block,Bodinayakanur,LGD,588,5842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +LGD,3299,Block,Bodla,LGD,382,3299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,7250,Block,Bodri,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,3964,Block,Bodvad,LGD,478,3964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,5159,Block,Bogole,LGD,515,5159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,4429,Block,Boinpalli,LGD,683,4429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,3211,Block,Boipariguda,LGD,363,3211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,2111,Block,Boitamari,LGD,281,2111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +LGD,2082,Block,Bokakhat,LGD,288,2082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +LGD,1079,Block,Bokhara,LGD,221,1079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,2124,Block,Boko,LGD,291,2124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,3034,Block,Bolagad,LGD,362,3034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,2722,Block,Bolba,LGD,342,2722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,1643,Block,Boleng Adc,LGD,679,1643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,5061,Block,Bollapalli,LGD,751,5061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2264,Block,Bolpur Sriniketan,LGD,307,2264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,4550,Block,Bomaraspeta,LGD,698,4550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,6568,Block,Bomdila Hq,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,4613,Block,Bommalaramaram,LGD,697,4613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,5307,Block,Bommanahal,LGD,502,5307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,4765,Block,Bonakal,LGD,509,4765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,4829,Block,Bondapalli,LGD,521,4829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,6433,Block,Bondkalan St,LGD,701,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +LGD,2110,Block,Bongaigaon (Pt),LGD,281,2110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +LGD,2317,Block,Bongaon,LGD,303,2317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,6557,Block,Bongkhar Circle,LGD,238,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,38,Block,Boniyar,LGD,3,38,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,529,Block,Bonli,LGD,113,529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,2605,Block,Boram,LGD,327,2605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,1683,Block,Bordumsa Adc,LGD,229,1683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,6594,Block,Borduria Circle,LGD,239,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,7330,Block,Bori,LGD,378,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +LGD,3200,Block,Boriguma,LGD,363,3200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,2566,Block,Borio,LGD,340,2566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,7181,Block,Borivali,LGD,483,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +LGD,6490,Block,Borobekra,LGD,713,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 +LGD,3867,Block,Borsad,LGD,440,3867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,6013,Block,Borum,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,3850,Block,Botad,LGD,676,3850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +LGD,7435,Block,Botad City,LGD,676,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +LGD,1846,Block,Botsa,LGD,245,1846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +LGD,3130,Block,Boudh,LGD,349,3130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +LGD,4630,Block,B Pochampally,LGD,697,4630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,3067,Block,Brahmagiri,LGD,369,3067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,5205,Block,Brahmamgarimattam,LGD,504,5205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4067,Block,Brahmapuri,LGD,473,4067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,5320,Block,Brahmasamudram,LGD,502,5320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,7068,Block,Brahmavara,LGD,549,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +LGD,5380,Block,Buchinaidu Kandriga,LGD,752,5380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5170,Block,Buchireddipalem,LGD,515,5170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5966,Block,Budalur,LGD,586,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,782,Block,Budaun,LGD,133,782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +LGD,7,Block,Budgam,LGD,2,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,2413,Block,Budge Budge - I,LGD,304,2413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2414,Block,Budge Budge - II,LGD,304,2414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,709,Block,Budhana,LGD,172,709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +LGD,248,Block,Budhlada,LGD,37,248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +LGD,3588,Block,Budni,LGD,427,3588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,6213,Block,Buggaram,LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,3072,Block,Buguda,LGD,354,3072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,489,Block,Buhana,LGD,106,489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,5345,Block,Bukkapatnam,LGD,754,5345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5329,Block,Bukkaraya Samudram,LGD,502,5329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,746,Block,Bulandshahr,LGD,134,746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +LGD,3984,Block,Buldana,LGD,472,3984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,626,Block,Bundi,LGD,94,626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +LGD,2698,Block,Bundu,LGD,339,2698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,2397,Block,Bundwan,LGD,321,2397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,1912,Block,Bunghmun,LGD,265,1912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 +LGD,6488,Block,Bungte Chiru,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,1918,Block,Bungtlang South,LGD,264,1918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 +LGD,6770,Block,Bunjwah,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,6847,Block,Buragaon Eac,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,7569,Block,Burari,LGD,80,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 +LGD,2289,Block,Burdwan - I,LGD,306,2289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2290,Block,Burdwan - II,LGD,306,2290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,4736,Block,Burgampahad,LGD,690,4736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,964,Block,Burhanpur,LGD,123,964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,3719,Block,Burhanpur,LGD,397,3719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +LGD,6972,Block,Burhanpur Nagar,LGD,397,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +LGD,6988,Block,Burhar,LGD,429,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +LGD,4794,Block,Burja,LGD,519,4794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,2682,Block,Burmu,LGD,339,2682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,2248,Block,Burwan,LGD,319,2248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,4873,Block,Butchayyapeta,LGD,744,4873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4948,Block,Buttayagudem,LGD,748,4948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1441,Block,Buxar,LGD,194,1441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,3434,Block,Buxwaha,LGD,398,3434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,5493,Block,Byadgi,LGD,540,5493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,948,Block,Campierganj,LGD,148,948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +LGD,5619,Block,Canacona,LGD,793,5619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +LGD,2420,Block,Canning - I,LGD,304,2420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2421,Block,Canning - II,LGD,304,2421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,5916,Block,Car Nicobar,LGD,603,5916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 +LGD,5256,Block,C.Belagal,LGD,511,5256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,2065,Block,Chabua,LGD,286,2065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +LGD,3683,Block,Chachaura,LGD,406,3683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,7560,Block,Chachian,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,137,Block,Chachyot,LGD,22,137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,7070,Block,Chadchan,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,6897,Block,Chadiyar,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,8,Block,Chadoora,LGD,2,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,5303,Block,Chagalamarri,LGD,755,5303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4959,Block,Chagallu,LGD,505,4959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,1739,Block,Chaglagam Circle,LGD,628,1739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,2739,Block,Chaibasa,LGD,343,2739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,887,Block,Chail,LGD,158,887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +LGD,1452,Block,Chainpur,LGD,200,1452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,2634,Block,Chainpur,LGD,338,2634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,2713,Block,Chainpur,LGD,331,2713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,1534,Block,Chakai,LGD,198,1534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,3116,Block,Chakapada,LGD,359,3116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,840,Block,Chakarnagar,LGD,139,840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +LGD,2314,Block,Chakdah,LGD,320,2314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,994,Block,Chakia,LGD,135,994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +LGD,1051,Block,Chakia(Pipra),LGD,213,1051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,6036,Block,Chakisain,LGD,52,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,1436,Block,Chakki,LGD,194,1436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,1895,Block,Chakpikarong,LGD,253,1895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +LGD,2731,Block,Chakradharpur,LGD,343,2731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,300,Block,Chakrata,LGD,49,300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,5234,Block,Chakrayapet,LGD,504,5234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,550,Block,Chaksu,LGD,102,550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,2613,Block,Chakulia,LGD,327,2613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,4230,Block,Chakur,LGD,481,4230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,5939,Block,Chalakkudy,LGD,566,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +LGD,7340,Block,Chalgali,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,3972,Block,Chalisgaon,LGD,478,3972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,2651,Block,Chalkusa,LGD,332,2651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,5504,Block,Challakere,LGD,533,5504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +LGD,5035,Block,Challapalli,LGD,510,5035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,5577,Block,Chamarajanagar,LGD,531,5577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +LGD,2122,Block,Chamaria,LGD,291,2122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,90,Block,Chamba,LGD,16,90,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,1709,Block,Chambang Circle,LGD,677,1709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +LGD,265,Block,Chamkaur Sahib,LGD,42,265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +LGD,285,Block,Chamoli,LGD,47,285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,4058,Block,Chamorshi,LGD,475,4058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,3281,Block,Champa,LGD,379,3281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,334,Block,Champawat,LGD,48,334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +LGD,1908,Block,Champhai,LGD,262,1908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 +LGD,6489,Block,Champhai,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,2839,Block,Champua,LGD,361,2839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,7374,Block,Chamu,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,1353,Block,Chanan,LGD,190,1353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,1369,Block,Chanan*,LGD,204,1369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +LGD,3750,Block,Chanasma,LGD,455,3750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,2210,Block,Chanchal - I,LGD,316,2210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,2211,Block,Chanchal - II,LGD,316,2211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,1451,Block,Chand,LGD,200,1451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,6996,Block,Chand,LGD,399,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,3190,Block,Chandahandi,LGD,366,3190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,4652,Block,Chandampeta,LGD,514,4652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,2596,Block,Chandankiyari,LGD,322,2596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,5008,Block,Chandarlapadu,LGD,749,5008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,993,Block,Chandauli,LGD,135,993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +LGD,722,Block,Chandausi,LGD,659,722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +LGD,2919,Block,Chandbali,LGD,348,2919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +LGD,1894,Block,Chandel,LGD,253,1894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +LGD,3685,Block,Chanderi,LGD,391,3685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,4294,Block,Chandgad,LGD,480,4294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,1381,Block,Chandi,LGD,209,1381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,3483,Block,Chandia,LGD,436,3483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +LGD,277,Block,Chandigarh,LGD,44,277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.729350,76.780565,inherited:District,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11 +LGD,2748,Block,Chandil,LGD,341,2748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,2481,Block,Chandipur,LGD,317,2481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2351,Block,Chanditala - I,LGD,312,2351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,2352,Block,Chanditala - II,LGD,312,2352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,3426,Block,Chandla,LGD,398,3426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,7574,Block,Chandni Chowk,LGD,795,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,7254,Block,Chando,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,716,Block,Chandpur,LGD,132,716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +LGD,5384,Block,Chandragiri,LGD,752,5384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2446,Block,Chandrakona - I,LGD,318,2446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,2447,Block,Chandrakona - II,LGD,318,2447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,3174,Block,Chandrapur,LGD,370,3174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,7354,Block,Chandrapur,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,2131,Block,Chandrapur,LGD,618,2131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +LGD,4071,Block,Chandrapur,LGD,473,4071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,2589,Block,Chandrapura,LGD,322,2589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,5145,Block,Chandra Sekhara Puram,LGD,790,5145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3711,Block,Chandra Shekhar Azad Nagar,LGD,639,3711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +LGD,4747,Block,Chandrugonda,LGD,690,4747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,4655,Block,Chandur,LGD,514,4655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,6669,Block,Chandur,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,4005,Block,Chandurbazar,LGD,468,4005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,4013,Block,Chandur Railway,LGD,468,4013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,4419,Block,Chandurthi,LGD,683,4419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,4148,Block,Chandvad,LGD,487,4148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,2643,Block,Chandwa,LGD,335,2643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,2530,Block,Chandwara,LGD,334,2530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +LGD,5671,Block,Changanassery,LGD,560,5671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +LGD,1671,Block,Changlang Hq,LGD,229,1671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,1780,Block,Changpang,LGD,250,1780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,1761,Block,Changtongya,LGD,246,1761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,2694,Block,Chanho,LGD,339,2694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,5514,Block,Channagiri,LGD,535,5514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +LGD,5607,Block,Channapatna,LGD,631,5607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +LGD,6802,Block,Channapora/Natipora,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +LGD,5560,Block,Channarayapatna,LGD,539,5560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,1025,Block,Chanpatia,LGD,211,1025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,5213,Block,Chapad,LGD,504,5213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,6019,Block,Chapar Pt,LGD,285,2010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,2305,Block,Chapra,LGD,320,2305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,1258,Block,Chapra,LGD,218,1258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,6293,Block,Charakonda,LGD,694,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,3348,Block,Charama,LGD,381,3348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,9,Block,Charar- E- Shrief,LGD,2,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,1076,Block,Charaut,LGD,221,1076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,1815,Block,Chare,LGD,249,1815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +LGD,2042,Block,Chariduar,LGD,301,2042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +LGD,869,Block,Charkhari,LGD,165,869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +LGD,4510,Block,Charminar,LGD,507,4510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,1430,Block,Charpokhari,LGD,193,1430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,2595,Block,Chas,LGD,322,2595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,6738,Block,Chassana,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,2518,Block,Chatra,LGD,323,2518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,5001,Block,Chatrai,LGD,748,5001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,312,Block,Chaubatta Khal,LGD,52,312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,1438,Block,Chaugain,LGD,194,1438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,326,Block,Chaukhutiya,LGD,45,326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,185,Block,Chaupal,LGD,23,185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,2644,Block,Chauparan,LGD,332,2644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,3650,Block,Chaurai,LGD,399,3650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,951,Block,Chauri Chaura,LGD,148,951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +LGD,1170,Block,Chausa,LGD,205,1170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,1442,Block,Chausa,LGD,194,1442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,1325,Block,Chautham,LGD,202,1325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +LGD,530,Block,Chauth Ka Barwara,LGD,113,530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,5653,Block,Chavakkad,LGD,566,5653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +LGD,1916,Block,Chawngte,LGD,264,1916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 +LGD,1590,Block,Chayangtajo Adc,LGD,231,1590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,5079,Block,Chebrolu,LGD,506,5079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,7375,Block,Chechat,LGD,109,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +LGD,4858,Block,Cheedikada,LGD,744,4858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4827,Block,Cheepurupalli,LGD,521,4827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,4466,Block,Chegunta,LGD,513,4466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,1273,Block,Chehra Kalan,LGD,224,1273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,5172,Block,Chejerla,LGD,515,5172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,7407,Block,Chelur,LGD,630,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,1753,Block,Chen,LGD,247,1753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,73,Block,Chenani,LGD,14,73,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,1468,Block,Chenari,LGD,215,1468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,2021,Block,Chenga,LGD,280,2021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +LGD,5706,Block,Chengalpattu,LGD,730,5706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,5725,Block,Chengam,LGD,593,5725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,5677,Block,Chengannur,LGD,554,5677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +LGD,4712,Block,Chennaraopet,LGD,522,4712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,5347,Block,Chennekothapalli,LGD,754,5347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4356,Block,Chennur,LGD,684,4356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,5226,Block,Chennur,LGD,504,5226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,6648,Block,Cheranmahadevi,LGD,592,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,1307,Block,Cheria Bariarpur,LGD,191,1307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,4672,Block,Cherial,LGD,692,4672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,4726,Block,Cherla,LGD,690,4726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,5673,Block,Cherthala,LGD,554,5673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +LGD,5090,Block,Cherukupalli,LGD,750,5090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1827,Block,Chessore,LGD,765,1827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1614,Block,Chetam Peer Yapu Circle,LGD,241,1614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,1807,Block,Chetheba,LGD,248,1807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,5622,Block,Chetlat,LGD,553,5622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,6617,Block,Chetpet,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,4529,Block,Chevella,LGD,518,4529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,1376,Block,Chewara,LGD,219,1376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +LGD,5722,Block,Cheyyar,LGD,593,5722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,5711,Block,Cheyyur,LGD,730,5711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,676,Block,Chhabra,LGD,89,676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,363,Block,Chhachhrauli,LGD,76,363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +LGD,7424,Block,Chhaigaon Makhan,LGD,405,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,7240,Block,Chhal,LGD,386,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,3660,Block,Chhapara,LGD,428,3660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,761,Block,Chhata,LGD,167,761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +LGD,1103,Block,Chhatapur,LGD,223,1103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,479,Block,Chhatargarh,LGD,93,479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,2620,Block,Chhatarpur,LGD,338,2620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,7587,Block,Chhatarpur,LGD,83,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +LGD,3429,Block,Chhatarpur,LGD,398,3429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,7006,Block,Chhatarpur Nagar,LGD,398,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,2359,Block,Chhatna,LGD,305,2359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,4137,Block,Chhatrapati Sambhajinagar,LGD,469,4137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,3085,Block,Chhatrapur,LGD,354,3085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,6950,Block,Chhatri,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,70,Block,Chhatroo,LGD,620,70,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,2120,Block,Chhaygaon,LGD,291,2120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,3014,Block,Chhendipada,LGD,344,3014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,833,Block,Chhibramau,LGD,155,833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +LGD,3374,Block,Chhindgarh,LGD,642,3374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +LGD,3654,Block,Chhindwara,LGD,399,3654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,7020,Block,Chhindwara Nagar,LGD,399,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,677,Block,Chhipabarod,LGD,89,677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,1305,Block,Chhorahi,LGD,191,1305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,3901,Block,Chhota Udaipur,LGD,668,3901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +LGD,7318,Block,Chhotedongar,LGD,637,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 +LGD,7364,Block,Chhoti Khatoo,LGD,768,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,698,Block,Chhoti Sadri,LGD,629,698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +LGD,6042,Block,Chhoti Sarwan,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,3302,Block,Chhuikhadan,LGD,759,3302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,3336,Block,Chhura,LGD,645,3336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +LGD,3306,Block,Chhuriya,LGD,388,3306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +LGD,3601,Block,Chicholi,LGD,394,3601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,5791,Block,Chidambaram,LGD,570,5791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,1845,Block,Chiephobozou,LGD,245,1845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +LGD,4442,Block,Chigurumamidi,LGD,508,4442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,7545,Block,Chikada,LGD,452,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +LGD,4002,Block,Chikhaldara,LGD,468,4002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,6059,Block,Chikhali,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,3925,Block,Chikhli,LGD,453,3925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +LGD,3983,Block,Chikhli,LGD,472,3983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,7487,Block,Chikiti,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,5596,Block,Chikkaballapura,LGD,630,5596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,5530,Block,Chikkamagaluru,LGD,532,5530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,5532,Block,Chiknayakanhalli,LGD,548,5532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,5433,Block,Chikodi,LGD,527,5433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,5070,Block,Chilakaluripet H/O.Purushotha Patnam,LGD,751,5070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5366,Block,Chilamathur,LGD,754,5366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7497,Block,Chilika,LGD,362,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,6483,Block,Chilivai Phaibung,LGD,257,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +LGD,4667,Block,Chilkur,LGD,696,4667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,5190,Block,Chillakur,LGD,515,5190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,6754,Block,Chilly Pingal,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,6274,Block,Chilpched,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,6259,Block,Chilpur,LGD,689,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,5128,Block,Chimakurthy,LGD,517,5128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,4065,Block,Chimur,LGD,473,4065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,5125,Block,Chinaganjam,LGD,750,5125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5583,Block,Chincholi,LGD,538,5583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,1887,Block,Chingai,LGD,260,1887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 +LGD,1822,Block,Chingmei,LGD,249,1822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +LGD,2507,Block,Chinia,LGD,328,2507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,4587,Block,Chinnachintakunta,LGD,512,4587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,5385,Block,Chinnagottigallu,LGD,752,5385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6254,Block,Chinnagudur,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,4460,Block,Chinnakodur,LGD,692,4460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,5236,Block,Chinnamandem,LGD,753,5236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6287,Block,Chinnambavi,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,5977,Block,Chinnasalem,LGD,729,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +LGD,3402,Block,Chinour,LGD,407,3402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,2346,Block,Chinsurah - Magra,LGD,312,2346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,6314,Block,Chintalamanepally,LGD,699,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,4944,Block,Chintalapudi,LGD,748,4944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5600,Block,Chintamani,LGD,630,5600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,4760,Block,Chinthakani,LGD,509,4760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,5231,Block,Chinthakommadinne,LGD,504,5231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,6303,Block,Chinthalapalem,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,4849,Block,Chinthapalli,LGD,745,4849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4650,Block,Chinthapally,LGD,514,4650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4732,Block,Chinturu,LGD,791,4732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,282,Block,Chinyali Saur,LGD,57,282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,4269,Block,Chiplun,LGD,492,4269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,5291,Block,Chippagiri,LGD,511,5291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,1040,Block,Chiraia,LGD,213,1040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,5123,Block,Chirala,LGD,750,5123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6758,Block,Chiralla,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,488,Block,Chirawa,LGD,106,488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,5689,Block,Chirayinkeezhu,LGD,565,5689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +LGD,192,Block,Chirgaon,LGD,23,192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,7268,Block,Chirmiri,LGD,760,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,7084,Block,Chitaguppa,LGD,529,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,6046,Block,Chitalwana,LGD,104,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,2664,Block,Chitarpur,LGD,607,2664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +LGD,5505,Block,Chitradurga,LGD,533,5505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +LGD,6799,Block,Chitragam,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +LGD,3223,Block,Chitrakonda,LGD,364,3223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +LGD,3703,Block,Chitrangi,LGD,638,3703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,5193,Block,Chittamur,LGD,752,5193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5585,Block,Chittapur,LGD,538,5585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,5421,Block,Chittoor Rural,LGD,503,5421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,7427,Block,Chittoor Urban,LGD,503,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,659,Block,Chittorgarh,LGD,95,659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,5650,Block,Chittur,LGD,563,5650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +LGD,5245,Block,Chitvel,LGD,752,5245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4633,Block,Chityal,LGD,514,4633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4681,Block,Chityal,LGD,687,4681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,4639,Block,Chivemla,LGD,696,4639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,1812,Block,Chizami,LGD,248,1812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,4872,Block,Chodavaram,LGD,744,4872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,584,Block,Chohtan,LGD,90,584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,1975,Block,Chokpot,LGD,277,1975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +LGD,541,Block,Chomu,LGD,102,541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,1731,Block,Chongkham Eac,LGD,678,1731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 +LGD,3960,Block,Chopda,LGD,478,3960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,4424,Block,Choppadandi,LGD,508,4424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,2191,Block,Chopra,LGD,311,2191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,3938,Block,Chorasi,LGD,459,3938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,3794,Block,Chotila,LGD,460,3794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,4631,Block,Choutuppal,LGD,697,4631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,7186,Block,Chowdapur,LGD,698,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,5413,Block,Chowdepalle,LGD,753,5413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6703,Block,Chowki Choura,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,7188,Block,Chowtakur,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,1806,Block,Chozuba,LGD,248,1806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,1762,Block,Chuchuyimlang,LGD,246,1762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,3796,Block,Chuda,LGD,460,3796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,1791,Block,Chukitong,LGD,250,1791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,1797,Block,Chumukedima,LGD,758,1797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1003,Block,Chunar,LGD,170,1003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +LGD,6376,Block,Chunchupalli,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,1547,Block,Chungthang,LGD,226,1547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 +LGD,5987,Block,Chunlikha,LGD,757,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1871,Block,Churachandpur,LGD,254,1871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,84,Block,Churah,LGD,16,84,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,2658,Block,Churchu,LGD,332,2658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,3698,Block,Churhat,LGD,433,3698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,484,Block,Churu,LGD,96,484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,7039,Block,City Center,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,5897,Block,Coimbatore North,LGD,569,5897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,5898,Block,Coimbatore South,LGD,569,5898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,929,Block,Colonelganj,LGD,147,929,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +LGD,2488,Block,Contai - I,LGD,317,2488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2490,Block,Contai - III,LGD,317,2490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2183,Block,Cooch Behar - I,LGD,308,2183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,2184,Block,Cooch Behar - II,LGD,308,2184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,5758,Block,Coonoor,LGD,587,5758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +LGD,5789,Block,Cuddalore,LGD,570,5789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,5117,Block,Cumbum,LGD,790,5117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2962,Block,Cuttack,LGD,350,2962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,3905,Block,Dabhoi,LGD,461,3905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,3284,Block,Dabhra,LGD,762,3284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,3400,Block,Dabra,LGD,407,3400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,3192,Block,Dabugan,LGD,366,3192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,389,Block,Dabwali,LGD,74,389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +LGD,5045,Block,Dachepalli,LGD,751,5045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6765,Block,Dachhan,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,171,Block,Dadahu,LGD,24,171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,1687,Block,Dadam Circle,LGD,239,1687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,6918,Block,Dadasiba,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,1963,Block,Dadenggiri,LGD,278,1963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,2659,Block,Dadi,LGD,332,2659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,3949,Block,Dadra & Nagar Haveli,LGD,465,3949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11 +LGD,402,Block,Dadri,LGD,701,402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +LGD,742,Block,Dadri,LGD,144,742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +LGD,6926,Block,Dag,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,5166,Block,Dagadarthi,LGD,515,5166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,1141,Block,Dagarua,LGD,214,1141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,4158,Block,Dahanu,LGD,665,4158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,4329,Block,Dahegoan,LGD,699,4329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,3537,Block,Dahi,LGD,403,3537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,6464,Block,Dahina St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,5186,Block,Dakkili,LGD,752,5186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2149,Block,Dalgaon (Pt),LGD,283,2149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +LGD,87,Block,Dalhousie,LGD,16,87,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,827,Block,Dalmau,LGD,175,827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +LGD,3497,Block,Daloda,LGD,416,3497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,7151,Block,Dalot,LGD,629,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +LGD,1297,Block,Dalsinghsarai,LGD,217,1297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,1969,Block,Dalu,LGD,278,1969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,3948,Block,Daman,LGD,463,3948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11 +LGD,4553,Block,Damargidda,LGD,721,4553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,1971,Block,Dambo Rongjeng,LGD,273,1971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +LGD,6591,Block,Dambuen Circle,LGD,230,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 +LGD,1725,Block,Dambuk Adc,LGD,235,1725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +LGD,6375,Block,Damera,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,4663,Block,Dameracherla,LGD,514,4663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,1714,Block,Damin Circle,LGD,233,1714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,4750,Block,Dammapeta,LGD,690,4750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,3458,Block,Damoh,LGD,400,3458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,6999,Block,Damyanti Nagar,LGD,400,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,2510,Block,Danda,LGD,328,2510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,2506,Block,Dandai,LGD,328,2506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,1317,Block,Dandari,LGD,191,1317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,7064,Block,Dandeli,LGD,550,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,4348,Block,Dandepally,LGD,684,4348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,1150,Block,Dandkhora,LGD,201,1150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,7475,Block,Dangadi,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,6827,Block,Dangarpora,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,7110,Block,Dangtal Revenue Circle,LGD,281,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +LGD,1412,Block,Daniawan,LGD,212,1412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,6712,Block,Dansal,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,3737,Block,Danta,LGD,441,3737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,2467,Block,Dantan - I,LGD,318,2467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,2468,Block,Dantan - II,LGD,318,2468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,554,Block,Danta Ramgarh,LGD,114,554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,3369,Block,Dantewada,LGD,376,3369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +LGD,6255,Block,Danthalapalle,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,3735,Block,Dantiwada,LGD,441,3735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,4267,Block,Dapoli,LGD,492,4267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,1615,Block,Daporijo Hq,LGD,241,1615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,1628,Block,Darak Circle,LGD,243,1628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,1242,Block,Darauli,LGD,222,1242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,1246,Block,Daraundha,LGD,222,1246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,3366,Block,Darbha,LGD,374,3366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,1184,Block,Darbhanga,LGD,195,1184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,6901,Block,Dareeni,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,21,Block,Darhal,LGD,12,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,7357,Block,Darhi,LGD,650,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,1264,Block,Dariapur,LGD,218,1264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,7261,Block,Darima,LGD,389,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,3125,Block,Daringbadi,LGD,359,3125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,1637,Block,Daring Circle,LGD,724,1637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 +LGD,2154,Block,Darjeeling Pulbazar,LGD,309,2154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,159,Block,Darlaghat,LGD,25,159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,1902,Block,Darlawn,LGD,261,1902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +LGD,7474,Block,Darpan,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,7266,Block,Darri,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,5114,Block,Darsi,LGD,517,5114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,2649,Block,Daru,LGD,332,2649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,4083,Block,Darwha,LGD,500,4083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,4011,Block,Daryapur,LGD,468,4011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,3790,Block,Dasada,LGD,460,3790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,3202,Block,Dasamantapur,LGD,363,3202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,3023,Block,Dasapalla,LGD,367,3023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,7473,Block,Dasarathpur,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,3782,Block,Daskroi,LGD,438,3782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,2449,Block,Daspur - I,LGD,318,2449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,2450,Block,Daspur - II,LGD,318,2450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,6207,Block,Dasturabad,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,214,Block,Dasua,LGD,33,214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +LGD,783,Block,Dataganj,LGD,133,783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +LGD,3405,Block,Datia,LGD,401,3405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +LGD,6991,Block,Datia Nagar,LGD,401,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +LGD,4823,Block,Dattirajeru,LGD,521,4823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,1476,Block,Daudnagar,LGD,189,1476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,4195,Block,Daund,LGD,490,4195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,3322,Block,Daundi,LGD,646,3322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +LGD,3320,Block,Daundilohara,LGD,646,3320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +LGD,7251,Block,Daura-Kochali,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,536,Block,Dausa,LGD,97,536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,5512,Block,Davanagere,LGD,535,5512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +LGD,1459,Block,Dawath,LGD,215,1459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,6415,Block,Dayalpur St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,2800,Block,Debagarh,LGD,351,2800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 +LGD,749,Block,Debai,LGD,134,749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +LGD,7021,Block,Debeyar Co Circle,LGD,231,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,2462,Block,Debra,LGD,318,2462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,6937,Block,Dechoo,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3911,Block,Dediapada,LGD,452,3911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +LGD,6842,Block,Deed Circle,LGD,786,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,508,Block,Deeg,LGD,767,508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3740,Block,Deesa,LGD,441,3740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,7437,Block,Deesa City,LGD,441,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,563,Block,Degana,LGD,110,563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,2327,Block,Deganga,LGD,303,2327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,4110,Block,Deglur,LGD,485,4110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,7223,Block,Deh,LGD,110,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,6958,Block,Deha,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,6949,Block,Dehar,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,3776,Block,Dehgam,LGD,446,3776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +LGD,304,Block,Dehradun,LGD,49,304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,103,Block,Dehra Gopipur,LGD,18,103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,1473,Block,Dehri,LGD,215,1473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,3056,Block,Delanga,LGD,369,3056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,7154,Block,Deldar,LGD,115,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +LGD,452,Block,Delhi Cantonment,LGD,79,452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11 +LGD,6935,Block,Delwara,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,6546,Block,Demdema,LGD,278,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,4967,Block,Denduluru,LGD,748,4967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4839,Block,Denkada,LGD,521,4839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,5892,Block,Denkanikottai,LGD,577,5892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,6398,Block,Dentam,LGD,228,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 +LGD,1485,Block,Deo,LGD,189,1485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,704,Block,Deoband,LGD,177,704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +LGD,3741,Block,Deodar,LGD,789,3741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,7453,Block,Deogaon,LGD,345,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,640,Block,Deogarh,LGD,112,640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,2545,Block,Deoghar,LGD,324,2545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,4144,Block,Deola,LGD,487,4144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,3985,Block,Deolgaon Raja,LGD,472,3985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,4020,Block,Deoli,LGD,498,4020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,620,Block,Deoli,LGD,116,620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,7588,Block,Deoli,LGD,83,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +LGD,1684,Block,Deomali Adc,LGD,239,1684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,4234,Block,Deoni,LGD,481,4234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,4051,Block,Deori,LGD,476,4051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,2534,Block,Deori,LGD,329,2534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,3453,Block,Deori,LGD,425,3453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,7010,Block,Deori,LGD,421,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,959,Block,Deoria,LGD,137,959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +LGD,3704,Block,Deosar,LGD,638,3704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,3540,Block,Depalpur,LGD,410,3540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,204,Block,Dera Baba Nanak,LGD,32,204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +LGD,268,Block,Dera Bassi,LGD,608,268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +LGD,2930,Block,Derabish,LGD,360,2930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,844,Block,Derapur,LGD,156,844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +LGD,2084,Block,Dergaon,LGD,288,2084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +LGD,4052,Block,Desaiganj (Vadasa),LGD,475,4052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,6569,Block,Desali Circle,LGD,235,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +LGD,6035,Block,Desar,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,2489,Block,Deshopran,LGD,317,2489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,1281,Block,Desri,LGD,224,1281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,603,Block,Desuri,LGD,111,603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,3778,Block,Detroj-Rampura,LGD,438,3778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,5460,Block,Devadurga,LGD,546,5460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,5831,Block,Devakottai,LGD,585,5831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,6424,Block,Devalthal,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,5603,Block,Devanahalli,LGD,526,5603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +LGD,5276,Block,Devanakonda,LGD,511,5276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,7071,Block,Devara Hipparagi,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,4573,Block,Devarakadra,LGD,512,4573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,4653,Block,Devarakonda,LGD,514,4653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4957,Block,Devarapalle,LGD,505,4957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,4859,Block,Devarapalli,LGD,744,4859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4701,Block,Devaruppula,LGD,689,4701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,3338,Block,Devbhog,LGD,645,3338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +LGD,3437,Block,Devendranagar,LGD,420,3437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,4275,Block,Devgad,LGD,495,4275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,3895,Block,Devgadbaria,LGD,445,3895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,5664,Block,Devikulam,LGD,556,5664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +LGD,4885,Block,Devipatnam,LGD,791,4885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2549,Block,Devipur,LGD,324,2549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,7298,Block,Devkar,LGD,650,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,294,Block,Devprayag,LGD,55,294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,60,Block,Devsar,LGD,622,60,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +LGD,6347,Block,Dewal,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,3526,Block,Dewas,LGD,402,3526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,7031,Block,Dewas Nagar,LGD,402,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,1039,Block,Dhaka,LGD,213,1039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,2053,Block,Dhakuakhana (Pt-I),LGD,295,2053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +LGD,2611,Block,Dhalbhumgarh,LGD,327,2611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,7175,Block,Dhalwan,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,4014,Block,Dhamangaon Railway,LGD,468,4014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,1132,Block,Dhamdaha,LGD,214,1132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,3316,Block,Dhamdha,LGD,378,3316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +LGD,6964,Block,Dhami,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,2913,Block,Dhamnagar,LGD,348,2913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +LGD,715,Block,Dhampur,LGD,132,715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +LGD,3346,Block,Dhamtari,LGD,377,3346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +LGD,7577,Block,Dhamwari,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,1409,Block,Dhanarua,LGD,212,1409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,6912,Block,Dhanau,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,298,Block,Dhanaulti,LGD,55,298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,729,Block,Dhanaura,LGD,154,729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +LGD,2584,Block,Dhanbad-Cum-Kenduadih-Cum-Jagata,LGD,325,2584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,3787,Block,Dhandhuka,LGD,438,3787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,6448,Block,Dhand St,LGD,66,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +LGD,3734,Block,Dhanera,LGD,441,3734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,2343,Block,Dhaniakhali,LGD,312,2343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,3662,Block,Dhanora,LGD,428,3662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,7320,Block,Dhanora,LGD,643,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +LGD,4056,Block,Dhanora,LGD,475,4056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,3896,Block,Dhanpur,LGD,445,3896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,1798,Block,Dhansiripar,LGD,758,1798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,3770,Block,Dhansura,LGD,672,3770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,4572,Block,Dhanwada,LGD,721,4572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,2535,Block,Dhanwar,LGD,329,2535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,3534,Block,Dhar,LGD,403,3534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,3079,Block,Dharakote,LGD,354,3079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,3168,Block,Dharamgarh,LGD,358,3168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,3263,Block,Dharamjaigarh,LGD,386,3263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,5996,Block,Dharamkot,LGD,38,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +LGD,3928,Block,Dharampur,LGD,462,3928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,3539,Block,Dharampuri,LGD,403,3539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,3968,Block,Dharangaon,LGD,478,3968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,5902,Block,Dharapuram,LGD,634,5902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,4240,Block,Dharashiv,LGD,488,4240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,5931,Block,Dharbandora,LGD,793,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +LGD,316,Block,Dharchula,LGD,53,316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,1359,Block,Dharhara,LGD,207,1359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,341,Block,Dhari,LGD,51,341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,3845,Block,Dhari,LGD,439,3845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,696,Block,Dhariawad,LGD,629,696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +LGD,200,Block,Dhar Kalan,LGD,662,200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +LGD,4104,Block,Dharmabad,LGD,485,4104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,6691,Block,Dharmanagar,LGD,270,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +LGD,4397,Block,Dharmapuri,LGD,681,4397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,5888,Block,Dharmapuri,LGD,571,5888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +LGD,4411,Block,Dharmaram,LGD,682,4411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,4677,Block,Dharmasagar,LGD,686,4677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,2979,Block,Dharmasala,LGD,356,2979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,5336,Block,Dharmavaram,LGD,754,5336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,127,Block,Dharmpur,LGD,22,127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,99,Block,Dharmsala,LGD,18,99,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,4001,Block,Dharni,LGD,468,4001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,7544,Block,Dharnidhar,LGD,789,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,4591,Block,Dharoor,LGD,695,4591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,4378,Block,Dharpally,LGD,516,4378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,7292,Block,Dharsiwa,LGD,387,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,6463,Block,Dharuhera St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,4223,Block,Dharur,LGD,470,4223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,4531,Block,Dharur,LGD,698,4531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,5473,Block,Dharwad,LGD,536,5473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,6944,Block,Dharwala,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,145,Block,Dhatwal,LGD,17,145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,6414,Block,Dhauj St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,6032,Block,Dhaulana,LGD,661,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +LGD,6338,Block,Dhaulchhina,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,6365,Block,Dhauntari,LGD,57,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,802,Block,Dhaurahara,LGD,159,802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +LGD,2041,Block,Dhekiajuli (Pt),LGD,301,2041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +LGD,2055,Block,Dhemaji,LGD,284,2055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +LGD,2999,Block,Dhenkanal Sadar,LGD,352,2999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,3626,Block,Dhimarkheda,LGD,413,3626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,2034,Block,Dhing,LGD,297,2034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +LGD,109,Block,Dhira,LGD,18,109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,5304,Block,D.Hirehal,LGD,502,5304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,6387,Block,Dhod,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,6167,Block,Dholera,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,1211,Block,Dholi (Moraul),LGD,208,1211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,3783,Block,Dholka,LGD,438,3783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,518,Block,Dholpur,LGD,98,518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,5289,Block,Dhone,LGD,755,5289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7189,Block,Dhoolmitta,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,309,Block,Dhoomakot,LGD,52,309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,3810,Block,Dhoraji,LGD,457,3810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,6050,Block,Dhorimanna,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,61,Block,D H Pora,LGD,622,61,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +LGD,3789,Block,Dhrangadhra,LGD,460,3789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,3816,Block,Dhrol,LGD,447,3816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +LGD,6014,Block,Dhubri,LGD,285,2008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,7402,Block,Dhulcot,LGD,397,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +LGD,3959,Block,Dhule,LGD,474,3959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +LGD,2176,Block,Dhupguri,LGD,314,2176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,1348,Block,Dhuraiya,LGD,190,1348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,270,Block,Dhuri,LGD,43,270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +LGD,2504,Block,Dhurki,LGD,328,2504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,6342,Block,Dhyari,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,2426,Block,Diamond Harbour - I,LGD,304,2426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2427,Block,Diamond Harbour - II,LGD,304,2427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2064,Block,Dibrugarh East,LGD,286,2064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +LGD,2063,Block,Dibrugarh West,LGD,286,2063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +LGD,4377,Block,Dichpally,LGD,516,4377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,7449,Block,Didarganj,LGD,212,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,317,Block,Didihat,LGD,53,317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,558,Block,Didwana,LGD,768,558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3096,Block,Digapahandi,LGD,354,3096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,1122,Block,Dighalbank,LGD,203,1122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +LGD,7394,Block,Dighora,LGD,434,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,1266,Block,Dighwara,LGD,218,1266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,5919,Block,Diglipur,LGD,632,5919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +LGD,666,Block,Digod,LGD,109,666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +LGD,4084,Block,Digras,LGD,500,4084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,4343,Block,Dilawarpur,LGD,680,4343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,1796,Block,Dimapur Sadar,LGD,244,1796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11 +LGD,2070,Block,Dimow,LGD,300,2070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +LGD,6860,Block,Dinanagar,LGD,32,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +LGD,1399,Block,Dinapur-Cum-Khagaul,LGD,212,1399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,1458,Block,Dinara,LGD,215,1458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,5980,Block,Dindiguleast,LGD,572,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,5979,Block,Dindigulwest,LGD,572,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,4149,Block,Dindori,LGD,487,4149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,3640,Block,Dindori,LGD,404,3640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +LGD,6726,Block,Dinga Amb,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,2187,Block,Dinhata - I,LGD,308,2187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,2188,Block,Dinhata - II,LGD,308,2188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,2089,Block,Diphu,LGD,292,2089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +LGD,7293,Block,Dipka,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,1566,Block,Dirang Adc,LGD,242,1566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,6852,Block,Dirba,LGD,43,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +LGD,7231,Block,Diskit,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,2129,Block,Dispur,LGD,618,2129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +LGD,6099,Block,Dissing Passo Circle,LGD,723,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 +LGD,3947,Block,Diu,LGD,464,3947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11 +LGD,1682,Block,Diyun Eac,LGD,229,1682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,1504,Block,Dobhi,LGD,196,1504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,2039,Block,Doboka,LGD,709,2039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +LGD,62,Block,Doda,LGD,4,62,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,4282,Block,Dodamarg,LGD,495,4282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,5602,Block,Doddaballapura,LGD,526,5602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +LGD,193,Block,Dodra Kwar,LGD,23,193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,3893,Block,Dohad,LGD,445,3893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,1598,Block,Doimukh Sdo,LGD,237,1598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,6335,Block,Doiwala,LGD,49,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,3615,Block,Dolariya,LGD,409,3615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,1701,Block,Dollungmukh Circle,LGD,718,1701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 +LGD,6200,Block,Dolvan,LGD,641,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,4537,Block,Doma,LGD,698,4537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,4392,Block,Domakonda,LGD,685,4392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,936,Block,Domariyaganj,LGD,182,936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +LGD,2528,Block,Domchanch,LGD,334,2528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +LGD,2402,Block,Domjur,LGD,313,2402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,2235,Block,Domkal,LGD,319,2235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,7501,Block,Dompada,LGD,350,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,5102,Block,Donakonda,LGD,517,5102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,3307,Block,Dongargaon,LGD,388,3307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +LGD,3304,Block,Dongargarh,LGD,388,3304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +LGD,6824,Block,Dongiwacha,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,7525,Block,Dongli,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,2088,Block,Donka,LGD,710,2088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11 +LGD,7530,Block,Donkeshwar,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,2060,Block,Doom Dooma,LGD,302,2060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +LGD,6910,Block,Dooni,LGD,116,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,58,Block,Dooru,LGD,1,58,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,7422,Block,Doraha,LGD,427,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,5196,Block,Doravarisatram,LGD,752,5196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4722,Block,Dornakal,LGD,688,4722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,5100,Block,Dornala,LGD,790,5100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7355,Block,Dornapal,LGD,642,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +LGD,5299,Block,Dornipadu,LGD,755,5299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2003,Block,Dotma,LGD,294,2003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +LGD,4552,Block,Doulathabad,LGD,698,4552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,4465,Block,Doultabad,LGD,692,4465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,7137,Block,Dovda,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,6769,Block,Drabshala,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,6786,Block,Dragmulla,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,3544,Block,Dr. Ambedkar Nagar Mhow,LGD,410,3544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,6191,Block,Drass,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +LGD,4458,Block,Dubbak,LGD,692,4458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,2266,Block,Dubrajpur,LGD,307,2266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,7419,Block,Dudhamania,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,6849,Block,Dudhan Sadhan,LGD,41,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +LGD,1006,Block,Dudhi,LGD,184,1006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +LGD,2016,Block,Dudhnai,LGD,287,2016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +LGD,6027,Block,Dudu,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,6550,Block,Dudunghar Circle,LGD,238,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,7540,Block,Dudyal,LGD,698,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,5076,Block,Duggirala,LGD,506,5076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,4693,Block,Duggondi,LGD,522,4693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,6331,Block,Dugnakuri,LGD,46,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +LGD,6891,Block,Dulahar,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,3260,Block,Duldula,LGD,380,3260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,1406,Block,Dulhin Bazar,LGD,212,1406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,2663,Block,Dulmi,LGD,607,2663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +LGD,1502,Block,Dumaria,LGD,196,1502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,2610,Block,Dumaria,LGD,327,2610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,4843,Block,Dumbriguda,LGD,745,4843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2673,Block,Dumka,LGD,326,2673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,4729,Block,Dummugudem,LGD,690,4729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,1617,Block,Dumporijo Adc,LGD,241,1617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,1074,Block,Dumra,LGD,221,1074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,1440,Block,Dumraon,LGD,194,1440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,2543,Block,Dumri,LGD,329,2543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,2714,Block,Dumri,LGD,331,2714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,1061,Block,Dumri Katsari,LGD,220,1061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +LGD,281,Block,Dunda,LGD,57,281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,646,Block,Dungarpur,LGD,99,646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,661,Block,Dungla,LGD,95,661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,7158,Block,Durbuk,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,3317,Block,Durg,LGD,378,3317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +LGD,2274,Block,Durgapur Faridpur,LGD,704,2274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,1450,Block,Durgawati,LGD,200,1450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,5042,Block,Durgi,LGD,751,5042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3350,Block,Durgkondal,LGD,381,3350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,5162,Block,Duttalur,LGD,515,5162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5203,Block,Duvvur,LGD,504,5203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,329,Block,Dwarahat,LGD,45,329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,4955,Block,Dwarakatirumala,LGD,748,4955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7592,Block,Dwarka,LGD,84,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +LGD,6402,Block,Dzongu,LGD,226,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 +LGD,1911,Block,East Lungdar,LGD,268,1911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 +LGD,5738,Block,Edappadi,LGD,584,5738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,5071,Block,Edlapadu,LGD,751,5071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6201,Block,Egarkund,LGD,325,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,7164,Block,Egmore,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,2491,Block,Egra - I,LGD,317,2491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2492,Block,Egra - II,LGD,317,2492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,6803,Block,Eidgah,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +LGD,1391,Block,Ekangarsarai,LGD,209,1391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,1254,Block,Ekma,LGD,218,1254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,4410,Block,Eligaid,LGD,682,4410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,4449,Block,Elkathurthy,LGD,686,4449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,6234,Block,Ellandakunta,LGD,508,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,392,Block,Ellenabad,LGD,74,392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +LGD,4966,Block,Eluru Rural,LGD,748,4966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7428,Block,Eluru Urban,LGD,748,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7539,Block,Endapalli,LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,1790,Block,Englan,LGD,250,1790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,2218,Block,English Bazar,LGD,316,2218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,4753,Block,Enkoor,LGD,509,4753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,6633,Block,Eral,LGD,594,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,3967,Block,Erandol,LGD,478,3967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,2705,Block,Erki(Tamar Ii),LGD,606,2705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 +LGD,5641,Block,Ernad,LGD,562,5641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +LGD,5753,Block,Erode,LGD,573,5753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,2938,Block,Ersama,LGD,355,2938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,1008,Block,Etah,LGD,138,1008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +LGD,1719,Block,Etalin,LGD,230,1719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 +LGD,4060,Block,Etapalli,LGD,475,4060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,838,Block,Etawah,LGD,139,838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +LGD,4806,Block,Etcherla,LGD,519,4806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,765,Block,Etmadpur,LGD,118,765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +LGD,5863,Block,Ettayapuram,LGD,594,5863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,4685,Block,Eturunagaram,LGD,720,4685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,7558,Block,Fagvel,LGD,450,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,905,Block,Faizabad,LGD,140,905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +LGD,2175,Block,Falakata,LGD,664,2175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +LGD,1142,Block,Falka,LGD,201,1142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,2425,Block,Falta,LGD,304,2425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2223,Block,Farakka,LGD,319,2223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,425,Block,Faridabad,LGD,60,425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,242,Block,Faridkot,LGD,29,242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +LGD,789,Block,Faridpur,LGD,130,789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +LGD,4559,Block,Farooqnagar,LGD,518,4559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,832,Block,Farrukhabad,LGD,141,832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +LGD,418,Block,Farrukhnagar,LGD,62,418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,3261,Block,Farsabahar,LGD,380,3261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,769,Block,Fatehabad,LGD,118,769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +LGD,388,Block,Fatehabad,LGD,61,388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +LGD,576,Block,Fatehgarh,LGD,103,576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +LGD,7191,Block,Fatehgarh Churian,LGD,32,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +LGD,221,Block,Fatehgarh Sahib,LGD,30,221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +LGD,95,Block,Fatehpur,LGD,18,95,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,878,Block,Fatehpur,LGD,142,878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +LGD,2680,Block,Fatehpur,LGD,333,2680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +LGD,551,Block,Fatehpur,LGD,114,551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,1508,Block,Fatehpur,LGD,196,1508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,896,Block,Fatehpur,LGD,129,896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +LGD,369,Block,Fatehpur Pundri,LGD,66,369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +LGD,3890,Block,Fatepura,LGD,445,3890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,1411,Block,Fatwah,LGD,212,1411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,237,Block,Fazilka,LGD,651,237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +LGD,423,Block,Ferozepur Jhirka,LGD,604,423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +LGD,5922,Block,Ferrargunj,LGD,602,5922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +LGD,7343,Block,Fingeshwar,LGD,645,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +LGD,772,Block,Firozabad,LGD,143,772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +LGD,235,Block,Firozpur,LGD,31,235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +LGD,1113,Block,Forbesganj,LGD,188,1113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,6780,Block,Frisal,LGD,622,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +LGD,753,Block,Gabhana,LGD,119,753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +LGD,5470,Block,Gadag,LGD,537,5470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +LGD,350,Block,Gadarpur,LGD,56,350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,3635,Block,Gadarwara,LGD,418,3635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +LGD,4057,Block,Gadchiroli,LGD,475,4057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,5006,Block,Gaddamanugu Konduru,LGD,749,5006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3852,Block,Gadhada,LGD,676,3852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +LGD,4293,Block,Gadhinglaj,LGD,480,4293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,6225,Block,Gadiguda,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,7273,Block,Gadiras,LGD,642,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +LGD,5281,Block,Gadivemula,LGD,755,5281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6906,Block,Gadraroad,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,4603,Block,Gadwal,LGD,695,4603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,4288,Block,Gaganbawada,LGD,480,4288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,6893,Block,Gagret,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,1209,Block,Gaighat,LGD,208,1209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,2318,Block,Gaighata,LGD,303,2318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,3591,Block,Gairatganj,LGD,421,3591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,289,Block,Gairsain,LGD,47,289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,2759,Block,Gaisilet,LGD,347,2759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,6372,Block,Gaja,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,4825,Block,Gajapathinagaram,LGD,521,4825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,7082,Block,Gajendragad,LGD,537,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +LGD,7376,Block,Gajsinghpur,LGD,100,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,4869,Block,Gajuwaka,LGD,520,4869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,4483,Block,Gajwel,LGD,692,4483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,5235,Block,Galiveedu,LGD,753,5235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6060,Block,Galiyakot,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,142,Block,Galore,LGD,17,142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,2287,Block,Galsi - I,LGD,306,2287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2288,Block,Galsi - II,LGD,306,2288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,6025,Block,Galteshwar,LGD,450,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,1968,Block,Gambegre,LGD,278,1968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,4433,Block,Gambhiraopet,LGD,683,4433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,1158,Block,Gamharia,LGD,205,1158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,4996,Block,Gampalagudem,LGD,749,4996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7138,Block,Gamri Ahara,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,6336,Block,Ganai Gangoli,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,4974,Block,Ganapavaram,LGD,523,4974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,379,Block,Ganaur,LGD,75,379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +LGD,7264,Block,Gandai,LGD,759,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,5820,Block,Gandarvakkottai,LGD,582,5820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,4538,Block,Gandeed,LGD,512,4538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,4904,Block,Gandepalli,LGD,746,4904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,47,Block,Ganderbal,LGD,626,47,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +LGD,3924,Block,Gandevi,LGD,453,3924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +LGD,2538,Block,Gandey,LGD,329,2538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,4382,Block,Gandhari,LGD,685,4382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,3731,Block,Gandhidham,LGD,449,3731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,3775,Block,Gandhinagar,LGD,446,3775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +LGD,439,Block,Gandhi Nagar,LGD,78,439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 +LGD,3535,Block,Gandhwani,LGD,403,3535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,2991,Block,Gandia,LGD,352,2991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,6316,Block,Gandimaisamma Dundigal,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,6320,Block,Gandipet,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,5342,Block,Gandlapenta,LGD,754,5342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4422,Block,Gangadhara,LGD,508,4422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,5420,Block,Gangadhara Nellore,LGD,503,5420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,6610,Block,Gangadtalai,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,2358,Block,Gangajalghati,LGD,305,2358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,4122,Block,Gangakhed,LGD,489,4122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,7263,Block,Gangaloor,LGD,636,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +LGD,458,Block,Ganganagar,LGD,100,458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,526,Block,Gangapur,LGD,113,526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,4140,Block,Gangapur,LGD,469,4140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,6253,Block,Gangaram,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,2201,Block,Gangarampur,LGD,310,2201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,6921,Block,Gangath,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,5744,Block,Gangavalli,LGD,584,5744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,4894,Block,Gangavaram,LGD,791,4894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5417,Block,Gangavaram,LGD,503,5417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5466,Block,Gangawati,LGD,543,5466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +LGD,684,Block,Gangdhar,LGD,105,684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,319,Block,Gangolihat,LGD,53,319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,656,Block,Gangrar,LGD,95,656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,1710,Block,Gangte Circle,LGD,677,1710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +LGD,1553,Block,Gangtok,LGD,225,1553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +LGD,4797,Block,Ganguvarisigadam,LGD,519,4797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,3022,Block,Gania,LGD,367,3022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,3086,Block,Ganjam,LGD,354,3086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,5012,Block,Gannavaram,LGD,510,5012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,6232,Block,Ganneruvaram,LGD,508,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,6611,Block,Ganora,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,4830,Block,Gantyada,LGD,521,4830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,4801,Block,Gara,LGD,519,4801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,7499,Block,Garadpur,LGD,360,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,857,Block,Garautha,LGD,153,857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +LGD,3894,Block,Garbada,LGD,445,3894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,2444,Block,Garbeta - I,LGD,318,2444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,2443,Block,Garbeta - II,LGD,318,2443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,2445,Block,Garbeta - III,LGD,318,2445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,3450,Block,Garhakota,LGD,425,3450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,1431,Block,Garhani,LGD,193,1431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,6392,Block,Garhbor,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,651,Block,Garhi,LGD,88,651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,741,Block,Garhmukteshwar,LGD,661,741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +LGD,1306,Block,Garhpura,LGD,191,1306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,217,Block,Garhshankar,LGD,33,217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +LGD,2509,Block,Garhwa,LGD,328,2509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,3857,Block,Gariadhar,LGD,443,3857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,4666,Block,Garidepally,LGD,696,4666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,4826,Block,Garividi,LGD,521,4826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,3335,Block,Gariyaband,LGD,645,3335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +LGD,1265,Block,Garkha,LGD,218,1265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,4743,Block,Garla,LGD,688,4743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,5324,Block,Garladinne,LGD,502,5324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,3494,Block,Garoth,LGD,416,3494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,2638,Block,Garu,LGD,335,2638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,324,Block,Garud,LGD,46,324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +LGD,6029,Block,Garudeshwar,LGD,452,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +LGD,4811,Block,Garugubilli,LGD,743,4811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1976,Block,Gasuapara,LGD,277,1976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +LGD,7526,Block,Gattuppal,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,1015,Block,Gaunaha,LGD,211,1015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,6416,Block,Gaunchi St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,5595,Block,Gauribidanur,LGD,630,5595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,913,Block,Gauriganj,LGD,640,913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +LGD,3424,Block,Gaurihar,LGD,398,3424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,7115,Block,Gauripur,LGD,285,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,743,Block,Gautam Buddha Nagar,LGD,144,743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +LGD,2532,Block,Gawan,LGD,329,2532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,1495,Block,Gaya Town C.D.Block,LGD,196,1495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,2214,Block,Gazole,LGD,316,2214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,4707,Block,Geesugonda,LGD,522,4707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,1665,Block,Geku Eac,LGD,240,1665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,1661,Block,Gelling Circle,LGD,240,1661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,1638,Block,Gensi Eac,LGD,719,1638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,4218,Block,Georai,LGD,470,4218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,6559,Block,Gepen Circle,LGD,718,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 +LGD,6343,Block,Ghaat,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,2707,Block,Ghaghra,LGD,331,2707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,6721,Block,Ghagwal,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +LGD,1160,Block,Ghailarh,LGD,205,1160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,6888,Block,Ghanari,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,943,Block,Ghanghata,LGD,178,943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +LGD,4585,Block,Ghanpur,LGD,693,4585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,4683,Block,Ghanpur (Mulug),LGD,687,4683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,4676,Block,Ghanpur (Station),LGD,689,4676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,293,Block,Ghansali,LGD,55,293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,3661,Block,Ghansaur,LGD,428,3661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,4130,Block,Ghansawangi,LGD,479,4130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,1194,Block,Ghanshyampur,LGD,195,1194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,5033,Block,Ghantasala,LGD,510,5033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,7221,Block,Ghantiyali,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,374,Block,Gharaunda,LGD,67,374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,3265,Block,Gharghoda,LGD,386,3265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,463,Block,Gharsana,LGD,100,463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,7377,Block,Ghasa,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,2853,Block,Ghasipura,LGD,361,2853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,2448,Block,Ghatal,LGD,318,2448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,850,Block,Ghatampur,LGD,157,850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +LGD,4089,Block,Ghatanji,LGD,500,4089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,2850,Block,Ghatgaon,LGD,361,2850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,1776,Block,Ghathashi,LGD,251,1776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,7026,Block,Ghatigaon,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,3511,Block,Ghatiya,LGD,435,3511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,4523,Block,Ghatkesar,LGD,700,4523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,1375,Block,Ghat Kusumbha,LGD,219,1375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +LGD,6513,Block,Ghatlodiya,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,650,Block,Ghatol,LGD,88,650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,2607,Block,Ghatshila,LGD,327,2607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,4605,Block,Ghattu,LGD,695,4605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,739,Block,Ghaziabad,LGD,145,739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +LGD,989,Block,Ghazipur,LGD,146,989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +LGD,6873,Block,Ghiror,LGD,166,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +LGD,3602,Block,Ghoda Dongri,LGD,394,3602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,3855,Block,Ghogha,LGD,443,3855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,3887,Block,Ghoghamba,LGD,454,3887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,1098,Block,Ghoghardiha,LGD,206,1098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,2138,Block,Ghograpar (Pt),LGD,298,2138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +LGD,1038,Block,Ghorasahan,LGD,213,1038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1004,Block,Ghorawal,LGD,184,1004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +LGD,1539,Block,Ghoshi,LGD,199,1539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +LGD,971,Block,Ghosi,LGD,168,971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +LGD,1419,Block,Ghoswari,LGD,212,1419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,3644,Block,Ghughari,LGD,415,3644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +LGD,152,Block,Ghumarwin,LGD,15,152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +LGD,7352,Block,Ghumka,LGD,388,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +LGD,7490,Block,Ghumusar,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,3432,Block,Ghuwara,LGD,398,3432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,1613,Block,Giba Circle,LGD,241,1613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,6907,Block,Gida,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3370,Block,Gidam,LGD,376,3370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +LGD,5133,Block,Giddalur,LGD,790,5133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,240,Block,Gidderbaha,LGD,39,240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +LGD,1531,Block,Gidhaur,LGD,198,1531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,2522,Block,Gidhaur,LGD,323,2522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,5728,Block,Gingee,LGD,596,5728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,3399,Block,Gird,LGD,407,3399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,6199,Block,Gir Gadhda,LGD,675,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +LGD,1396,Block,Giriak,LGD,209,1396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,2539,Block,Giridih,LGD,329,2539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,689,Block,Girwa,LGD,117,689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,6551,Block,Gite Ripa Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,4848,Block,G.Madugula,LGD,745,4848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2193,Block,Goalpokher - I,LGD,311,2193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,2194,Block,Goalpokher - II,LGD,311,2194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,5751,Block,Gobichettipalayam,LGD,573,5751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,2583,Block,Gobindpur,LGD,325,2583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,1518,Block,Gobindpur,LGD,210,1518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,2754,Block,Gobindpur(Rajnagar),LGD,341,2754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,7259,Block,Gobra Nawapara,LGD,387,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,2561,Block,Godda,LGD,330,2561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,7546,Block,Godhar,LGD,669,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,7598,Block,Godharacity,LGD,454,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,3885,Block,Godhra,LGD,454,3885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,2058,Block,Gogamukh,LGD,284,2058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +LGD,3551,Block,Gogaon,LGD,414,3551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,2338,Block,Goghat - I,LGD,312,2338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,2339,Block,Goghat - II,LGD,312,2339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,1327,Block,Gogri,LGD,202,1327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +LGD,686,Block,Gogunda,LGD,117,686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,1478,Block,Goh,LGD,189,1478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,3395,Block,Gohad,LGD,395,3395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,378,Block,Gohana,LGD,75,378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +LGD,3593,Block,Goharganj,LGD,421,3593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,6979,Block,Gohparu,LGD,429,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +LGD,2047,Block,Gohpur,LGD,705,2047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +LGD,1738,Block,Goiliang Circle,LGD,628,1738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,2733,Block,Goilkera,LGD,343,2733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,5436,Block,Gokak,LGD,527,5436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,7584,Block,Gokalpur,LGD,81,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 +LGD,4897,Block,Gokavaram,LGD,505,4897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,954,Block,Gola,LGD,148,954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +LGD,2665,Block,Gola,LGD,607,2665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +LGD,2085,Block,Golaghat,LGD,288,2085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +LGD,799,Block,Gola Gokaran Nath,LGD,159,799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +LGD,6015,Block,Golakganj Pt,LGD,285,2007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,3167,Block,Golamunda,LGD,358,3167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,4507,Block,Golconda,LGD,507,4507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,4412,Block,Gollapalli,LGD,681,4412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,4902,Block,Gollaprolu,LGD,746,4902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2606,Block,Golmuri-Cum-Jugsalai,LGD,327,2606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,4853,Block,Golugonda,LGD,744,4853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2591,Block,Gomia,LGD,322,2591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,928,Block,Gonda,LGD,147,928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +LGD,3807,Block,Gondal,LGD,457,3807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,7439,Block,Gondal City,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,6686,Block,Gonda Twisa,LGD,269,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +LGD,4046,Block,Gondiya,LGD,476,4046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,4078,Block,Gondpipri,LGD,473,4078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,5270,Block,Gonegandla,LGD,511,5270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,6763,Block,Gool,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,5310,Block,Gooty,LGD,502,5310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,3062,Block,Gop,LGD,369,3062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,7480,Block,Gopabandhunagar,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,3699,Block,Gopadbanas,LGD,433,3699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,6838,Block,Gopalapatnam,LGD,520,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,4951,Block,Gopalapuram,LGD,505,4951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,1224,Block,Gopalganj,LGD,197,1224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,4596,Block,Gopalpeta,LGD,693,4596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,1334,Block,Gopalpur,LGD,192,1334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,5211,Block,Gopavaram,LGD,504,5211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,2457,Block,Gopiballavpur - I,LGD,703,2457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,2456,Block,Gopiballavpur - II,LGD,703,2456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,2669,Block,Gopikandar,LGD,326,2669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,1196,Block,Gora Bauram,LGD,195,1196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,1342,Block,Goradih,LGD,192,1342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,7011,Block,Gorakhpur,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,950,Block,Gorakhpur,LGD,148,950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +LGD,5362,Block,Gorantla,LGD,754,5362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1272,Block,Goraul,LGD,224,1272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,4045,Block,Goregaon,LGD,476,4045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,2141,Block,Goreswar,LGD,756,2141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +LGD,1232,Block,Goriakothi,LGD,222,1232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,6471,Block,Goriwala St,LGD,74,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +LGD,3394,Block,Gormi,LGD,395,3394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,2121,Block,Goroimari,LGD,291,2121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,2158,Block,Gorubathan,LGD,702,2158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +LGD,2435,Block,Gosaba,LGD,304,2435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,5287,Block,Gospadu,LGD,755,5287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2001,Block,Gossaigaon,LGD,294,2001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +LGD,3634,Block,Gotegaon,LGD,418,3634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +LGD,6832,Block,Govardhan,LGD,167,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +LGD,4688,Block,Govindaraopet,LGD,720,4688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,6383,Block,Govindgarh,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,7554,Block,Govindguru Limdi,LGD,445,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,5918,Block,Great Nicobar,LGD,603,5918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 +LGD,5538,Block,Gubbi,LGD,548,5538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,5755,Block,Gudalur,LGD,587,5755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +LGD,3184,Block,Gudari,LGD,370,3184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,3114,Block,G.Udayagiri,LGD,359,3114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,4850,Block,Gudem Kotha Veedhi,LGD,745,4850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7144,Block,Gudhagorji,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,581,Block,Gudha Malani,LGD,775,581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5597,Block,Gudibanda,LGD,630,5597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,5352,Block,Gudibanda,LGD,754,5352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4310,Block,Gudihatnoor,LGD,501,4310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,5431,Block,Gudipala,LGD,503,5431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,7527,Block,Gudipally,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,5021,Block,Gudivada,LGD,510,5021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,5712,Block,Gudiyatham,LGD,595,5712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +LGD,5029,Block,Gudlavalleru,LGD,510,5029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,5151,Block,Gudluru,LGD,517,5151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,2729,Block,Gudri,LGD,343,2729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,5426,Block,Gudupalle,LGD,503,5426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,4711,Block,Gudur,LGD,688,4711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,5184,Block,Gudur,LGD,515,5184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5257,Block,Gudur,LGD,511,5257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5031,Block,Guduru,LGD,510,5031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,4270,Block,Guhagar,LGD,492,4270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,367,Block,Guhla,LGD,66,367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +LGD,7169,Block,Guindy,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,6700,Block,Gujiliamparai,LGD,572,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,3578,Block,Gulabganj,LGD,437,3578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,3520,Block,Gulana,LGD,430,3520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +LGD,7061,Block,Guledgudda,LGD,524,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,2712,Block,Gumla,LGD,331,2712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,7505,Block,Gumma,LGD,353,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +LGD,6277,Block,Gummadidala,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,5319,Block,Gummagatta,LGD,502,5319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,4808,Block,Gummalakshmipuram,LGD,743,4808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5693,Block,Gummidipoondi,LGD,589,5693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,6602,Block,Gumto Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,3677,Block,Guna,LGD,406,3677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,6609,Block,Guna Nagar,LGD,406,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,6806,Block,Gund,LGD,626,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +LGD,4618,Block,Gundala,LGD,697,4618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,4741,Block,Gundala,LGD,690,4741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,3319,Block,Gunderdehi,LGD,646,3319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +LGD,4651,Block,Gundlapally,LGD,514,4651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,5576,Block,Gundlupet,LGD,531,5576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +LGD,6749,Block,Gundna,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,7523,Block,Gundumal,LGD,721,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,778,Block,Gunnaur,LGD,659,778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +LGD,3438,Block,Gunnor,LGD,420,3438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,5309,Block,Guntakal,LGD,502,5309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,6833,Block,Guntur East,LGD,506,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,5074,Block,Guntur West,LGD,506,5074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,3183,Block,Gunupur,LGD,370,3183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,5044,Block,Gurajala,LGD,751,5044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1497,Block,Guraru,LGD,196,1497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,2612,Block,Gurbandha,LGD,327,2612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,202,Block,Gurdaspur,LGD,32,202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +LGD,40,Block,Gurez,LGD,623,40,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +LGD,417,Block,Gurgaon,LGD,62,417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,3481,Block,Gurh,LGD,424,3481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,4828,Block,Gurla,LGD,521,4828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,7094,Block,Gurmitakal,LGD,635,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +LGD,5370,Block,Gurramkonda,LGD,753,5370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4657,Block,Gurrampode,LGD,514,4657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,7562,Block,Gurthedu,LGD,791,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1498,Block,Gurua,LGD,196,1498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,6011,Block,Guruharsahai,LGD,31,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +LGD,2828,Block,Gurundia,LGD,373,2828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,3323,Block,Gurur,LGD,646,3323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +LGD,1241,Block,Guthani,LGD,222,1241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,2128,Block,Guwahati,LGD,618,2128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +LGD,7395,Block,Gwalior Gramin,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,1165,Block,Gwalpara,LGD,205,1165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,1549,Block,Gyalshing,LGD,228,1549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 +LGD,998,Block,Gyanpur,LGD,179,998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +LGD,3577,Block,Gyaraspur,LGD,437,3577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,1588,Block,Gyawe Purang Circle,LGD,231,1588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,2216,Block,Habibpur,LGD,316,2216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,2320,Block,Habra - I,LGD,303,2320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,2321,Block,Habra - II,LGD,303,2321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,7555,Block,Hadad,LGD,441,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,5496,Block,Hadagalli,LGD,738,5496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +LGD,7378,Block,Hadan,LGD,93,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,4098,Block,Hadgaon,LGD,485,4098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,2093,Block,Haflong,LGD,299,2093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +LGD,5497,Block,Hagaribommanahalli,LGD,738,5497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +LGD,901,Block,Haidergarh,LGD,129,901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +LGD,2616,Block,Haidernagar,LGD,338,2616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,2107,Block,Hailakandi,LGD,289,2107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +LGD,6811,Block,Hajin,LGD,623,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +LGD,6227,Block,Hajipur,LGD,684,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,1278,Block,Hajipur,LGD,224,1278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,2119,Block,Hajo,LGD,291,2119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,5273,Block,Halaharvi,LGD,511,5273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,2483,Block,Haldia,LGD,317,2483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2179,Block,Haldibari,LGD,308,2179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,342,Block,Haldwani,LGD,51,342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,5480,Block,Haliyal,LGD,550,5480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,3888,Block,Halol,LGD,454,3888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,1371,Block,Halsi,LGD,204,1371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +LGD,3788,Block,Halvad,LGD,673,3788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +LGD,6068,Block,Hameergarh,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,143,Block,Hamirpur,LGD,17,143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,864,Block,Hamirpur,LGD,149,864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +LGD,4695,Block,Hanamkonda,LGD,686,4695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,893,Block,Handia,LGD,120,893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,3609,Block,Handiya,LGD,408,3609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +LGD,2,Block,Handwara,LGD,8,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,5491,Block,Hangal,LGD,540,5491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,194,Block,Hangrang,LGD,19,194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +LGD,396,Block,Hansi,LGD,792,396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +LGD,2310,Block,Hanskhali,LGD,320,2310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,3919,Block,Hansot,LGD,442,3919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,3476,Block,Hanumana,LGD,766,3476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,468,Block,Hanumangarh,LGD,101,468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,1190,Block,Hanumannagar,LGD,195,1190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,5130,Block,Hanumanthuni Padu,LGD,790,5130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7077,Block,Hanur,LGD,531,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +LGD,4555,Block,Hanwada,LGD,512,4555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,6039,Block,Haochong,LGD,714,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 +LGD,740,Block,Hapur,LGD,661,740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +LGD,3132,Block,Harabhanga,LGD,349,3132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +LGD,5510,Block,Harapanahalli,LGD,738,5510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +LGD,97,Block,Harchakian,LGD,18,97,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,3608,Block,Harda,LGD,408,3608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +LGD,7271,Block,Hardibazar,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,811,Block,Hardoi,LGD,150,811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +LGD,354,Block,Hardwar,LGD,50,354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +LGD,2851,Block,Harichandanpur,LGD,361,2851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,5509,Block,Harihar,LGD,535,5509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +LGD,2618,Block,Hariharganj,LGD,338,2618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,2242,Block,Hariharpara,LGD,319,2242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,3748,Block,Harij,LGD,455,3748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,2315,Block,Haringhata,LGD,320,2315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,2348,Block,Haripal,LGD,312,2348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,6920,Block,Haripur,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,6953,Block,Haripurdhar,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,2207,Block,Harirampur,LGD,310,2207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,2208,Block,Harischandrapur - I,LGD,316,2208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,2209,Block,Harischandrapur - II,LGD,316,2209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,2151,Block,Harisinga,LGD,617,2151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +LGD,1081,Block,Harlakhi,LGD,206,1081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,6800,Block,Harmain,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +LGD,1380,Block,Harnaut,LGD,209,1380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,2331,Block,Haroa,LGD,303,2331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,7196,Block,Harohalli,LGD,631,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +LGD,151,Block,Haroli,LGD,26,151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,3649,Block,Harrai,LGD,399,3649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,938,Block,Harraiya,LGD,131,938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +LGD,6423,Block,Harsaru St,LGD,62,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,1043,Block,Harsidhi,LGD,213,1043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,7208,Block,Harsoli,LGD,770,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3714,Block,Harsud,LGD,405,3714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,5886,Block,Harur,LGD,571,5886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +LGD,1144,Block,Hasanganj,LGD,201,1144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,815,Block,Hasanganj,LGD,186,815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +LGD,4678,Block,Hasanparthy,LGD,686,4678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,1302,Block,Hasanpur,LGD,217,1302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,731,Block,Hasanpur,LGD,154,731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +LGD,1245,Block,Hasanpura,LGD,222,1245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,2336,Block,Hasnabad,LGD,303,2336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,7327,Block,Hasoud,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,1477,Block,Haspura,LGD,189,1477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,5556,Block,Hassan,LGD,539,5556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,6478,Block,Hassanpur St,LGD,619,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +LGD,956,Block,Hata,LGD,160,956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +LGD,7494,Block,Hatadihi,LGD,361,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,2738,Block,Hat Gamharia,LGD,343,2738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,428,Block,Hathin,LGD,619,428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +LGD,4489,Block,Hathnoora,LGD,691,4489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,759,Block,Hathras,LGD,163,759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +LGD,1221,Block,Hathua,LGD,197,1221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,4285,Block,Hatkanangle,LGD,480,4285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,3541,Block,Hatod,LGD,410,3541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,3530,Block,Hatpiplya,LGD,402,3530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,3454,Block,Hatta,LGD,400,3454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,4193,Block,Haveli,LGD,490,4193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,16,Block,Haveli,LGD,10,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +LGD,6270,Block,Havelighanapur,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,5492,Block,Haveri,LGD,540,5492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,1743,Block,Hawai Hq,LGD,628,1743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,1191,Block,Hayaghat,LGD,195,1191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,4525,Block,Hayathnagar,LGD,518,4525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,1736,Block,Hayuliang Adc,LGD,628,1736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,2653,Block,Hazaribag,LGD,332,2653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,7065,Block,Hebri,LGD,549,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +LGD,5573,Block,Heggadadevankote,LGD,545,5573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,2046,Block,Helem,LGD,705,2046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +LGD,2804,Block,Hemgir,LGD,373,2804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,2197,Block,Hemtabad,LGD,311,2197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,6502,Block,Henglep,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,2642,Block,Herhanj,LGD,335,2642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,2203,Block,Hilli,LGD,310,2203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,1390,Block,Hilsa,LGD,209,1390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,3766,Block,Himatnagar,LGD,458,3766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,4503,Block,Himayatnagar,LGD,507,4503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,4097,Block,Himayatnagar,LGD,485,4097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,522,Block,Hindaun,LGD,108,522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,2997,Block,Hindol,LGD,352,2997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,622,Block,Hindoli,LGD,94,622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +LGD,5364,Block,Hindupur,LGD,754,5364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2337,Block,Hingalganj,LGD,303,2337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,4021,Block,Hinganghat,LGD,498,4021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,4033,Block,Hingna,LGD,484,4033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,4112,Block,Hingoli,LGD,477,4112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +LGD,3090,Block,Hinjili,LGD,354,3090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,4783,Block,Hiramandalam,LGD,519,4783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,31,Block,Hiranagar,LGD,7,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,2575,Block,Hiranpur,LGD,337,2575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +LGD,2374,Block,Hirbandh,LGD,305,2374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,5494,Block,Hirekerur,LGD,540,5494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,5508,Block,Hiriyur,LGD,533,5508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +LGD,394,Block,Hisar,LGD,63,394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +LGD,1520,Block,Hisua,LGD,210,1520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,1915,Block,Hnahthial,LGD,726,1915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +LGD,429,Block,Hodal,LGD,619,429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +LGD,2038,Block,Hojai,LGD,709,2038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +LGD,5272,Block,Holagunda,LGD,511,5272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5506,Block,Holalkere,LGD,533,5506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +LGD,5559,Block,Hole Narsipur,LGD,539,5559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,91,Block,Holi,LGD,16,91,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,5458,Block,Homnabad,LGD,529,5458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,5487,Block,Honavar,LGD,550,5487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,5513,Block,Honnali,LGD,535,5513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +LGD,5604,Block,Hosakote,LGD,526,5604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +LGD,5518,Block,Hosanagara,LGD,547,5518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +LGD,5498,Block,Hosapete,LGD,738,5498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +LGD,5631,Block,Hosdurg,LGD,558,5631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +LGD,5507,Block,Hosdurga,LGD,533,5507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +LGD,3614,Block,Hoshangabad,LGD,409,3614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,7045,Block,Hoshangabad Nagar,LGD,409,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,216,Block,Hoshiarpur,LGD,33,216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +LGD,5890,Block,Hosur,LGD,577,5890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,5475,Block,Hubballi,LGD,536,5475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,7079,Block,Hubballi Urban,LGD,536,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,5437,Block,Hukkeri,LGD,527,5437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,4846,Block,Hukumpeta,LGD,745,4846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1541,Block,Hulasganj,LGD,199,1541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +LGD,7086,Block,Hulsoor,LGD,529,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,7096,Block,Hunasagi,LGD,635,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +LGD,5448,Block,Hungund,LGD,524,5448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,6075,Block,Hunli Sdo,LGD,235,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +LGD,5570,Block,Hunsur,LGD,545,5570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,1746,Block,Hunta,LGD,247,1746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,2386,Block,Hura,LGD,321,2386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,628,Block,Hurda,LGD,92,628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,4444,Block,Husnabad,LGD,692,4444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,2615,Block,Hussainabad,LGD,338,2615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,1238,Block,Hussainganj,LGD,222,1238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,3479,Block,Huzur,LGD,424,3479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,3581,Block,Huzur,LGD,396,3581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +LGD,4446,Block,Huzurabad,LGD,508,4446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,4669,Block,Huzurnagar,LGD,696,4669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,7041,Block,Huzur Nagar,LGD,424,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,4546,Block,Ibrahimpatnam,LGD,518,4546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,4393,Block,Ibrahimpatnam,LGD,681,4393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,5009,Block,Ibrahimpatnam,LGD,749,5009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2749,Block,Ichagarh,LGD,341,2749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,2647,Block,Ichak,LGD,332,2647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,4778,Block,Ichchapuram,LGD,519,4778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,3586,Block,Ichhawar,LGD,427,3586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,4322,Block,Ichoda,LGD,501,4322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,3763,Block,Idar,LGD,458,3763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,5942,Block,Idukki,LGD,556,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +LGD,4606,Block,Ieeja,LGD,695,4606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,4153,Block,Igatpuri,LGD,487,4153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,756,Block,Iglas,LGD,119,756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +LGD,924,Block,Ikauna,LGD,181,924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +LGD,5834,Block,Ilayangudi,LGD,585,5834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,7062,Block,Ilkal,LGD,524,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,2265,Block,Illambazar,LGD,307,2265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,4436,Block,Illanthakunta,LGD,683,4436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,5818,Block,Iluppur,LGD,582,5818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,1501,Block,Imamganj,LGD,196,1501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,6249,Block,Inavole,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,6236,Block,Indalwai,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,4200,Block,Indapur,LGD,490,4200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,4311,Block,Inderavelly,LGD,501,4311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,3404,Block,Indergarh,LGD,401,3404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +LGD,5450,Block,Indi,LGD,530,5450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,94,Block,Indora,LGD,18,94,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,2360,Block,Indpur,LGD,305,2360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,624,Block,Indragarh,LGD,94,624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +LGD,371,Block,Indri,LGD,67,371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,7172,Block,Indri,LGD,604,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +LGD,5179,Block,Indukurpet,LGD,515,5179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,2366,Block,Indus,LGD,305,2366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,5110,Block,Inkollu,LGD,750,5110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7538,Block,Inugurthy,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,4931,Block,I. Polavaram,LGD,747,4931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5065,Block,Ipuru,LGD,751,5065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4979,Block,Iragavaram,LGD,523,4979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,5411,Block,Irala,LGD,503,5411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5937,Block,Iritty,LGD,557,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +LGD,3684,Block,Isagarh,LGD,391,3684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,1251,Block,Ishupur,LGD,218,1251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,1525,Block,Islamnagar Aliganj,LGD,198,1525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,1392,Block,Islampur,LGD,209,1392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,2192,Block,Islampur,LGD,311,2192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,6487,Block,Island,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,6453,Block,Ismailabad St,LGD,68,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +LGD,1337,Block,Ismailpur,LGD,192,1337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,6889,Block,Ispur,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,376,Block,Israna,LGD,71,376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +LGD,2199,Block,Itahar,LGD,311,2199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,6604,Block,Itanagar Eac,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,1444,Block,Itarhi,LGD,194,1444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,3613,Block,Itarsi,LGD,409,3613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,4607,Block,Itikyala,LGD,695,4607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,2520,Block,Itkhori,LGD,323,2520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,2696,Block,Itki,LGD,339,2696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,935,Block,Itwa,LGD,182,935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +LGD,3631,Block,Jabalpur,LGD,411,3631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,3459,Block,Jabera,LGD,400,3459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,4567,Block,Jadcherla,LGD,512,4567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,4126,Block,Jafrabad,LGD,479,4126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,3848,Block,Jafrabad,LGD,439,3848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,361,Block,Jagadhri,LGD,76,361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +LGD,5511,Block,Jagalur,LGD,535,5511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +LGD,3073,Block,Jagannath Prasad,LGD,354,3073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,2743,Block,Jagannathpur,LGD,343,2743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,7356,Block,Jagargunda,LGD,642,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +LGD,2401,Block,Jagatballavpur,LGD,313,2401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,2940,Block,Jagatsinghapur,LGD,355,2940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,3360,Block,Jagdalpur,LGD,374,3360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,4484,Block,Jagdevpur,LGD,692,4484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,1343,Block,Jagdishpur,LGD,192,1343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,1428,Block,Jagdishpur,LGD,193,1428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,4991,Block,Jaggaiahpeta,LGD,749,4991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4898,Block,Jaggampeta,LGD,746,4898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4414,Block,Jagitial,LGD,681,4414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,6211,Block,Jagitial Rural,LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,230,Block,Jagraon,LGD,36,230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +LGD,636,Block,Jahazpur,LGD,92,636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,7413,Block,Jahu,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,3286,Block,Jaijaipur,LGD,762,3286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,2529,Block,Jainagar,LGD,334,2529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +LGD,1083,Block,Jainagar,LGD,206,1083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,4307,Block,Jainath,LGD,501,4307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,4320,Block,Jainoor,LGD,699,4320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,332,Block,Jainti,LGD,45,332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,4355,Block,Jaipur,LGD,684,4355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,2378,Block,Jaipur,LGD,321,2378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,546,Block,Jaipur,LGD,102,546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,6582,Block,Jairampur Adc,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,574,Block,Jaisalmer,LGD,103,574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +LGD,6984,Block,Jaisinagar,LGD,425,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,3690,Block,Jaisinghnagar,LGD,429,3690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +LGD,110,Block,Jaisinghpur,LGD,18,110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,916,Block,Jaisinghpur,LGD,185,916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +LGD,597,Block,Jaitaran,LGD,774,597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3695,Block,Jaithari,LGD,390,3695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +LGD,3692,Block,Jaitpur,LGD,429,3692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +LGD,243,Block,Jaitu,LGD,29,243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +LGD,4623,Block,Jajireddygudem,LGD,696,4623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,2977,Block,Jajpur,LGD,356,2977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,6438,Block,Jakhal St,LGD,61,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +LGD,1848,Block,Jakhama,LGD,245,1848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +LGD,987,Block,Jakhania,LGD,146,987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +LGD,296,Block,Jakhani Dhar,LGD,55,296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,6373,Block,Jakhanikhal,LGD,52,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,292,Block,Jakholi*,LGD,54,292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +LGD,4366,Block,Jakranpally,LGD,516,4366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,5157,Block,Jaladanki,LGD,515,5157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,2140,Block,Jalah,LGD,616,2140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +LGD,236,Block,Jalalabad,LGD,651,236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +LGD,796,Block,Jalalabad,LGD,180,796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +LGD,1137,Block,Jalalgarh,LGD,214,1137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,6340,Block,Jalali,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,3923,Block,Jalalpore,LGD,453,3923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +LGD,1256,Block,Jalalpur,LGD,218,1256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,909,Block,Jalalpur,LGD,121,909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +LGD,212,Block,Jalandhar - I,LGD,34,212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +LGD,213,Block,Jalandhar - II,LGD,34,213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +LGD,2234,Block,Jalangi,LGD,319,2234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,852,Block,Jalaun,LGD,151,852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +LGD,2725,Block,Jaldega,LGD,342,2725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,1181,Block,Jale,LGD,195,1181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,1009,Block,Jalesar,LGD,138,1009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +LGD,2890,Block,Jaleswar,LGD,346,2890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,3966,Block,Jalgaon,LGD,478,3966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,3975,Block,Jalgaon (Jamod),LGD,472,3975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,4229,Block,Jalkot,LGD,481,4229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,4127,Block,Jalna,LGD,479,4127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,6961,Block,Jalog,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,587,Block,Jalore,LGD,104,587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,2178,Block,Jalpaiguri,LGD,314,2178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,7379,Block,Jalsu,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,1852,Block,Jalukie,LGD,613,1852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +LGD,4792,Block,Jalumuru,LGD,519,4792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,2674,Block,Jama,LGD,326,2674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,3651,Block,Jamai (Junnardeo),LGD,399,3651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,1358,Block,Jamalpur,LGD,207,1358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,2295,Block,Jamalpur,LGD,306,2295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2792,Block,Jamankira,LGD,371,2792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,2455,Block,Jamboni,LGD,703,2455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,3889,Block,Jambughoda,LGD,454,3889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,3913,Block,Jambusar,LGD,442,3913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,2860,Block,Jamda,LGD,365,2860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,4835,Block,Jami,LGD,521,4835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,6563,Block,Jamiri Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,3821,Block,Jamjodhpur,LGD,447,3821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +LGD,3808,Block,Jamkandorna,LGD,457,3808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,5443,Block,Jamkhandi,LGD,524,5443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,4214,Block,Jamkhed,LGD,466,4214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,5215,Block,Jammalamadugu,LGD,504,5215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4440,Block,Jammikunta,LGD,508,4440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,79,Block,Jammu,LGD,5,79,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,6708,Block,Jammu North,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,6706,Block,Jammu South,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,6718,Block,Jammu West,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,6525,Block,Jamnagar City,LGD,447,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +LGD,3814,Block,Jamnagar Rural,LGD,447,3814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +LGD,3974,Block,Jamner,LGD,478,3974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,6677,Block,Jampuijala,LGD,653,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +LGD,2678,Block,Jamtara,LGD,333,2678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +LGD,2536,Block,Jamua,LGD,329,2536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,1527,Block,Jamui,LGD,198,1527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,6164,Block,Jamunaha,LGD,181,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +LGD,6631,Block,Jamunamarathoor,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,2270,Block,Jamuria,LGD,704,2270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,548,Block,Jamwaramgarh,LGD,102,548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,7590,Block,Janakpuri,LGD,85,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 +LGD,1276,Block,Jandaha,LGD,224,1276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,1561,Block,Jang Adc,LGD,238,1561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,4953,Block,Jangareddigudem,LGD,748,4953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2353,Block,Jangipara,LGD,312,2353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,6957,Block,Jangla,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,4699,Block,Jangoan,LGD,689,4699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,7572,Block,Jangpura,LGD,670,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 +LGD,3277,Block,Janjgir,LGD,379,3277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,4334,Block,Jannaram,LGD,684,4334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,7380,Block,Janoothar,LGD,767,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,711,Block,Jansath,LGD,172,711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +LGD,4263,Block,Jaoli,LGD,494,4263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,3501,Block,Jaora,LGD,423,3501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,7311,Block,Jarhagaon,LGD,647,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +LGD,7283,Block,Jari,LGD,20,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,2594,Block,Jaridih,LGD,322,2594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,2667,Block,Jarmundi,LGD,326,2667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,3806,Block,Jasdan,LGD,457,3806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,2867,Block,Jashipur,LGD,365,2867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,3257,Block,Jashpur,LGD,380,3257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,347,Block,Jaspur,LGD,56,347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,773,Block,Jasrana,LGD,143,773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +LGD,7365,Block,Jasrasar,LGD,93,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,105,Block,Jaswan,LGD,18,105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,836,Block,Jaswantnagar,LGD,139,836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +LGD,6044,Block,Jaswantpura,LGD,104,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,4304,Block,Jat,LGD,493,4304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,3049,Block,Jatani,LGD,362,3049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,3418,Block,Jatara,LGD,434,3418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,984,Block,Jaunpur,LGD,152,984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +LGD,3472,Block,Jawa,LGD,424,3472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,3487,Block,Jawad,LGD,419,3487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +LGD,104,Block,Jawalamukhi,LGD,18,104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,96,Block,Jawali,LGD,18,96,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,3585,Block,Jawar,LGD,427,3585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,4160,Block,Jawhar,LGD,665,4160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,559,Block,Jayal,LGD,110,559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,3170,Block,Jayapatna,LGD,358,3170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,2431,Block,Jaynagar - I,LGD,304,2431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2432,Block,Jaynagar - II,LGD,304,2432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2368,Block,Jaypur,LGD,305,2368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,4947,Block,Jeelugu Milli,LGD,748,4947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3563,Block,Jeerapur,LGD,422,3563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,1536,Block,Jehanabad,LGD,199,1536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +LGD,1664,Block,Jengging Circle,LGD,240,1664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,6203,Block,Jesar,LGD,443,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,6481,Block,Jessami,LGD,260,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 +LGD,3811,Block,Jetpur,LGD,457,3811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,7440,Block,Jetpur City,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,3900,Block,Jetpur Pavi,LGD,668,3900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +LGD,5586,Block,Jevargi,LGD,538,5586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,744,Block,Jewar,LGD,144,744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +LGD,3209,Block,Jeypore,LGD,363,3209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,3709,Block,Jhabua,LGD,412,3709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +LGD,688,Block,Jhadol,LGD,117,688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,3917,Block,Jhagadia,LGD,442,3917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,1530,Block,Jhajha,LGD,198,1530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,409,Block,Jhajjar,LGD,64,409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +LGD,2390,Block,Jhalda - I,LGD,321,2390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,2391,Block,Jhalda - II,LGD,321,2391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,7229,Block,Jhallara,LGD,777,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3891,Block,Jhalod,LGD,445,3891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,679,Block,Jhalrapatan,LGD,105,679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,154,Block,Jhanduta,LGD,15,154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +LGD,1097,Block,Jhanjharpur,LGD,206,1097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,860,Block,Jhansi,LGD,153,860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +LGD,7220,Block,Jhanwar,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,4476,Block,Jharasangam,LGD,691,4476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,2756,Block,Jharbandh,LGD,347,2756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,6983,Block,Jharda,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,2454,Block,Jhargram,LGD,703,2454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,2585,Block,Jharia-Cum-Jorapokhar-Cum-Sindri,LGD,325,2585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,3191,Block,Jharigan,LGD,366,3191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,2776,Block,Jharsuguda,LGD,357,2776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +LGD,2742,Block,Jhinkpani,LGD,343,2742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,3553,Block,Jhiranya,LGD,414,3553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,6070,Block,Jhonthripal,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,2840,Block,Jhumpura,LGD,361,2840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,487,Block,Jhunjhunu,LGD,106,487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,6346,Block,Jilasu,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,6322,Block,Jilled Chowdergudem,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,383,Block,Jind,LGD,65,383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +LGD,4493,Block,Jinnaram,LGD,691,4493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,4117,Block,Jintur,LGD,489,4117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,3490,Block,Jiran,LGD,419,3490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +LGD,1986,Block,Jirang,LGD,276,1986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +LGD,6679,Block,Jirania,LGD,272,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +LGD,1883,Block,Jiribam,LGD,713,1883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 +LGD,4076,Block,Jiwati,LGD,473,4076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,4810,Block,Jiyyammavalasa,LGD,743,4810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3712,Block,Jobat,LGD,639,3712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +LGD,7141,Block,Jobner,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,570,Block,Jodhpur,LGD,107,570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,3815,Block,Jodiya,LGD,447,3815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +LGD,1024,Block,Jogapatti,LGD,211,1024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,124,Block,Jogindarnagar,LGD,22,124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,1120,Block,Jokihat,LGD,188,1120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,6890,Block,Jol,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,6606,Block,Jomlo Mobuk Circle,LGD,679,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,2057,Block,Jonai,LGD,284,2057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +LGD,2159,Block,Jorebunglow Sukiapokhri,LGD,309,2159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,6399,Block,Jorethang,LGD,227,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +LGD,2078,Block,Jorhat East,LGD,290,2078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +LGD,2077,Block,Jorhat West,LGD,290,2077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +LGD,284,Block,Joshimath,LGD,47,284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,6366,Block,Joshiyara,LGD,57,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,6021,Block,Jotana,LGD,451,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,3388,Block,Joura,LGD,417,3388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,6701,Block,Jourian,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,5111,Block,J.Pangulur,LGD,517,5111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,188,Block,Jubbal,LGD,23,188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,2794,Block,Jujomura,LGD,371,2794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,4373,Block,Jukkal,LGD,685,4373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,384,Block,Julana,LGD,65,384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +LGD,4409,Block,Julapalli,LGD,682,4409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,4746,Block,Julurpadu,LGD,690,4746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,3827,Block,Junagadh,LGD,448,3827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,6517,Block,Junagadh City,LGD,448,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,3166,Block,Junagarh,LGD,358,3166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,183,Block,Junga,LGD,23,183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,3543,Block,Juni Indore,LGD,410,3543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,4187,Block,Junnar,LGD,490,4187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,5262,Block,Jupadu Bunglow,LGD,755,5262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7381,Block,Jurhara,LGD,767,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,6401,Block,Kabi,LGD,226,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 +LGD,3080,Block,Kabisuryanagar,LGD,354,3080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,7366,Block,Kachhola,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,7104,Block,Kadaba,LGD,534,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,5859,Block,Kadaladi,LGD,583,5859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,2051,Block,Kadam,LGD,295,2051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +LGD,3880,Block,Kadana,LGD,669,3880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,5230,Block,Kadapa,LGD,504,5230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,5772,Block,Kadavur,LGD,576,5772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +LGD,6619,Block,Kadayampatti,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,6639,Block,Kadayanallur,LGD,733,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,4335,Block,Kaddam Peddur,LGD,680,4335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,4298,Block,Kadegaon,LGD,493,4298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,3759,Block,Kadi,LGD,451,3759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,4918,Block,Kadiam,LGD,505,4918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,918,Block,Kadipur,LGD,185,918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +LGD,6422,Block,Kadipur St,LGD,62,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,5343,Block,Kadiri,LGD,754,5343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5624,Block,Kadmat,LGD,553,5624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,6324,Block,Kadthal,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,5529,Block,Kadur,LGD,532,5529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,7551,Block,Kadval,LGD,668,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +LGD,1145,Block,Kadwa,LGD,201,1145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,6332,Block,Kafligair,LGD,46,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +LGD,4290,Block,Kagal,LGD,480,4290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,4318,Block,Kagaznagar,LGD,699,4318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,7100,Block,Kagwad,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,1336,Block,Kahalgaon,LGD,192,1336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,6756,Block,Kahara,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,1174,Block,Kahara,LGD,216,1174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,4222,Block,Kaij,LGD,470,4222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,5016,Block,Kaikaluru,LGD,748,5016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3389,Block,Kailaras,LGD,417,3389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,6682,Block,Kailashahar,LGD,655,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +LGD,830,Block,Kaimganj,LGD,141,830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +LGD,706,Block,Kairana,LGD,660,706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 +LGD,2600,Block,Kairo,LGD,336,2600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +LGD,922,Block,Kaiserganj,LGD,125,922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +LGD,368,Block,Kaithal,LGD,66,368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +LGD,4923,Block,Kajuluru,LGD,746,4923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6793,Block,Kakapora,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,3059,Block,Kakatpur,LGD,369,3059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,1878,Block,Kakching,LGD,711,1878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11 +LGD,2437,Block,Kakdwip,LGD,304,2437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,4913,Block,Kakinada (Rural),LGD,746,4913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4914,Block,Kakinada (Urban),LGD,746,4914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6943,Block,Kakira,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,1537,Block,Kako,LGD,199,1537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +LGD,6601,Block,Kakoi Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,5083,Block,Kakumanu,LGD,506,5083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,5582,Block,Kalaburagi,LGD,538,5582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,344,Block,Kaladhungi,LGD,51,344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,7087,Block,Kalagi,LGD,538,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,7507,Block,Kalahandi,LGD,358,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,6427,Block,Kalaigaon,LGD,617,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +LGD,6644,Block,Kalaiyarkoil,LGD,585,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,5371,Block,Kalakada,LGD,753,5371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,24,Block,Kalakote,LGD,12,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,1570,Block,Kalaktang Adc,LGD,242,1570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,4239,Block,Kalamb,LGD,488,4239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,4081,Block,Kalamb,LGD,500,4081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,4025,Block,Kalameshwar,LGD,484,4025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,4114,Block,Kalamnuri,LGD,477,4114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +LGD,7508,Block,Kalampur,LGD,358,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,6882,Block,Kalan,LGD,180,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +LGD,6859,Block,Kalanaur,LGD,32,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +LGD,6467,Block,Kalanaur,LGD,73,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +LGD,6469,Block,Kalanwali,LGD,74,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +LGD,3523,Block,Kalapipal,LGD,430,3523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +LGD,7194,Block,Kalasa,LGD,532,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,5207,Block,Kalasapadu,LGD,504,5207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,5959,Block,Kalasapakkam,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,3817,Block,Kalavad,LGD,447,3817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +LGD,7059,Block,Kalavai,LGD,731,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +LGD,6446,Block,Kalayat,LGD,66,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +LGD,7284,Block,Kalbog,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,2171,Block,Kalchini,LGD,664,2171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +LGD,1543,Block,Kaler,LGD,611,1543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +LGD,2019,Block,Kalgachia,LGD,280,2019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +LGD,5476,Block,Kalghatgi,LGD,536,5476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,4453,Block,Kalher,LGD,691,4453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,2031,Block,Kaliabor,LGD,297,2031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +LGD,2220,Block,Kaliachak - I,LGD,316,2220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,2221,Block,Kaliachak - II,LGD,316,2221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,2222,Block,Kaliachak - III,LGD,316,2222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,2198,Block,Kaliaganj,LGD,311,2198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,5017,Block,Kalidindi,LGD,748,5017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2303,Block,Kaliganj,LGD,320,2303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,5160,Block,Kaligiri,LGD,515,5160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5387,Block,Kalikiri,LGD,753,5387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3227,Block,Kalimela,LGD,364,3227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +LGD,2156,Block,Kalimpong -I,LGD,702,2156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +LGD,6866,Block,Kalinagar,LGD,173,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +LGD,356,Block,Kalka,LGD,70,356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +LGD,456,Block,Kalkaji,LGD,670,456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 +LGD,5882,Block,Kalkulam,LGD,575,5882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +LGD,4985,Block,Kalla,LGD,523,4985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,5734,Block,Kallakkurichi,LGD,729,5734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +LGD,6615,Block,Kalligudi,LGD,578,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,5258,Block,Kallur,LGD,511,5258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,4763,Block,Kalluru,LGD,509,4763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,2293,Block,Kalna - I,LGD,306,2293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2294,Block,Kalna - II,LGD,306,2294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,3886,Block,Kalol,LGD,454,3886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,6938,Block,Kalol,LGD,15,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +LGD,7438,Block,Kalol City,LGD,446,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +LGD,3773,Block,Kalol Gandhinagar,LGD,446,3773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +LGD,6297,Block,Kaloor Thimmandoddi,LGD,695,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,197,Block,Kalpa,LGD,19,197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +LGD,5628,Block,Kalpeni,LGD,553,5628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,853,Block,Kalpi,LGD,151,853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +LGD,302,Block,Kalsi,LGD,49,302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,1090,Block,Kaluahi,LGD,206,1090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,5174,Block,Kaluvoya,LGD,515,5174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,7055,Block,Kalvarayan Hills,LGD,729,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +LGD,4576,Block,Kalwakurthy,LGD,694,4576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,4143,Block,Kalwan,LGD,487,4143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,7215,Block,Kalwar,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,4168,Block,Kalyan,LGD,497,4168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +LGD,5321,Block,Kalyanadurg,LGD,502,5321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,3176,Block,Kalyanasingpur,LGD,370,3176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,6966,Block,Kalyani,LGD,320,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,1048,Block,Kalyanpur,LGD,213,1048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,3819,Block,Kalyanpur,LGD,674,3819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +LGD,7130,Block,Kalyanpur,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,1284,Block,Kalyanpur,LGD,217,1284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,2988,Block,Kamakshyanagar,LGD,352,2988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,7090,Block,Kamalapur,LGD,538,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,4447,Block,Kamalapur,LGD,686,4447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,5224,Block,Kamalapuram,LGD,504,5224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,7085,Block,Kamalnagar,LGD,529,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +LGD,6681,Block,Kamalpur,LGD,269,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +LGD,2118,Block,Kamalpur,LGD,291,2118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,506,Block,Kaman,LGD,767,506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,4400,Block,Kamanpur,LGD,682,4400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,4390,Block,Kamareddy,LGD,685,4390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,4954,Block,Kamavarapukota,LGD,748,4954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6585,Block,Kamba Adc,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,5334,Block,Kambadur,LGD,502,5334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5372,Block,Kambhamvaripalle,LGD,753,5372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2710,Block,Kamdara,LGD,331,2710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,6567,Block,Kamengbari Doimara Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,4745,Block,Kamepalli,LGD,509,4745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,1889,Block,Kamjong,LGD,717,1889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 +LGD,4363,Block,Kammarpally,LGD,516,4363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,7107,Block,Kampli,LGD,528,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +LGD,1700,Block,Kamporijo Circle,LGD,718,1700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 +LGD,4030,Block,Kamptee,LGD,484,4030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,2037,Block,Kampur,LGD,297,2037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +LGD,174,Block,Kamrau,LGD,24,174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,3936,Block,Kamrej,LGD,459,3936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,5858,Block,Kamuthi,LGD,583,5858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,7012,Block,Kanadia,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,4656,Block,Kanagal,LGD,514,4656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,5335,Block,Kanaganipalli,LGD,754,5335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7091,Block,Kanakagiri,LGD,543,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +LGD,5608,Block,Kanakapura,LGD,631,5608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +LGD,6425,Block,Kanalichhina,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,7466,Block,Kanas,LGD,369,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,5661,Block,Kanayannur,LGD,555,5661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +LGD,6685,Block,Kanchanpur,LGD,270,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +LGD,5707,Block,Kancheepuram,LGD,574,5707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +LGD,5007,Block,Kanchikacherla,LGD,749,5007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4777,Block,Kanchili,LGD,519,4777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,322,Block,Kanda,LGD,46,322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +LGD,6651,Block,Kandachipuram,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,166,Block,Kandaghat,LGD,25,166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,7495,Block,Kandhamal,LGD,359,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,4108,Block,Kandhar,LGD,485,4108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,2498,Block,Kandi,LGD,328,2498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,6275,Block,Kandi,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,2240,Block,Kandi,LGD,319,2240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,6360,Block,Kandisaur,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,4545,Block,Kandukur,LGD,518,4545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,5148,Block,Kandukuru,LGD,517,5148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,5306,Block,Kanekal,LGD,502,5306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,46,Block,Kangan,LGD,626,46,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +LGD,6495,Block,Kangchup Geljang,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,5901,Block,Kangeyam,LGD,634,5901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,6572,Block,Kangku Circle,LGD,719,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,6884,Block,Kangoo,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,1861,Block,Kangpokpi,LGD,712,1861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,100,Block,Kangra,LGD,18,100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,4450,Block,Kangti,LGD,691,4450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,6500,Block,Kangvai,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,2519,Block,Kanha Chatti,LGD,323,2519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,5136,Block,Kanigiri,LGD,790,5136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3003,Block,Kaniha,LGD,344,3003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,6458,Block,Kanina,LGD,69,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +LGD,7486,Block,Kanisi,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,5672,Block,Kanjirappally,LGD,560,5672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +LGD,2989,Block,Kankadahad,LGD,352,2989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,4277,Block,Kankavli,LGD,495,4277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,2684,Block,Kanke,LGD,339,2684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,3351,Block,Kanker,LGD,381,3351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,5023,Block,Kankipadu,LGD,510,5023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,3743,Block,Kankrej,LGD,441,3743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,2275,Block,Kanksa,LGD,704,2275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,4133,Block,Kannad,LGD,469,4133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,6251,Block,Kannaigudem,LGD,720,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,834,Block,Kannauj,LGD,155,834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +LGD,6229,Block,Kannepally,LGD,684,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,3527,Block,Kannod,LGD,402,3527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,5633,Block,Kannur,LGD,557,5633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +LGD,6929,Block,Kanod,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,849,Block,Kanpur,LGD,157,849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +LGD,3256,Block,Kansabel,LGD,380,3256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,3149,Block,Kantabanji,LGD,345,3149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,3127,Block,Kantamal,LGD,349,3127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +LGD,6608,Block,Kantang Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,7502,Block,Kantapada,LGD,350,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,718,Block,Kanth,LGD,171,718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +LGD,1204,Block,Kanti,LGD,208,1204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,1688,Block,Kanubari Adc,LGD,666,1688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 +LGD,6054,Block,Kanwas,LGD,109,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +LGD,3869,Block,Kapadvanj,LGD,450,3869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,660,Block,Kapasan,LGD,95,660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,4928,Block,Kapileswarapuram,LGD,505,4928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,321,Block,Kapkot,LGD,46,321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +LGD,6317,Block,Kapra,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,3930,Block,Kaprada,LGD,462,3930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,6879,Block,Kaptanganj,LGD,160,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +LGD,2885,Block,Kaptipada,LGD,365,2885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,7067,Block,Kapu,LGD,549,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +LGD,7348,Block,Kapu,LGD,386,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,206,Block,Kapurthala,LGD,35,206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +LGD,4265,Block,Karad,LGD,494,4265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,3384,Block,Karahal,LGD,431,3384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +LGD,5914,Block,Karaikal,LGD,598,5914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +LGD,5830,Block,Karaikkudi,LGD,585,5830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,1378,Block,Karai Parsurai,LGD,209,1378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,6269,Block,Karakagudem,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,1462,Block,Karakat,LGD,215,1462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,5825,Block,Karambakudi,LGD,582,5825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,5109,Block,Karamchedu,LGD,750,5109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2195,Block,Karandighi,LGD,311,2195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,3997,Block,Karanja,LGD,499,3997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +LGD,4016,Block,Karanja,LGD,498,4016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,2870,Block,Karanjia,LGD,365,2870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,457,Block,Karanpur,LGD,100,457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,4922,Block,Karapa,LGD,746,4922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7092,Block,Karatagi,LGD,543,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +LGD,523,Block,Karauli,LGD,108,523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,6083,Block,Karawal Nagar,LGD,81,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 +LGD,6690,Block,Karbook,LGD,654,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +LGD,892,Block,Karchhana,LGD,120,892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,3637,Block,Kareli,LGD,418,3637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +LGD,5046,Block,Karempudi,LGD,751,5046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6064,Block,Karera,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,3410,Block,Karera,LGD,432,3410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,1467,Block,Kargahar,LGD,215,1467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,13,Block,Kargil,LGD,6,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +LGD,776,Block,Karhal,LGD,166,776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +LGD,5851,Block,Kariapatti,LGD,597,5851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,6202,Block,Kariasol,LGD,325,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,6622,Block,Karimangalam,LGD,571,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +LGD,2101,Block,Karimganj,LGD,293,2101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +LGD,6231,Block,Karimnagar,LGD,508,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,4428,Block,Karimnagar Rural,LGD,508,4428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,2299,Block,Karimpur - I,LGD,320,2299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,2300,Block,Karimpur - II,LGD,320,2300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,3907,Block,Karjan,LGD,461,3907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,4174,Block,Karjat,LGD,491,4174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,4213,Block,Karjat,LGD,466,4213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,5524,Block,Karkal,LGD,549,5524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +LGD,6533,Block,Karkeli,LGD,436,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +LGD,7509,Block,Karlamunda,LGD,358,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,5092,Block,Karlapalem,LGD,750,5092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4244,Block,Karmala,LGD,496,4244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,2677,Block,Karma Tanr Vidyasagar*,LGD,333,2677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +LGD,3,Block,Karnah,LGD,8,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,372,Block,Karnal,LGD,67,372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,287,Block,Karnaprayag,LGD,47,287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,447,Block,Karol Bagh,LGD,77,447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11 +LGD,2552,Block,Karon,LGD,324,2552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,7344,Block,Karpawand,LGD,374,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,1544,Block,Karpi,LGD,611,1544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +LGD,2700,Block,Karra,LGD,606,2700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 +LGD,139,Block,Karsog,LGD,22,139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,3276,Block,Kartala,LGD,383,3276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,5676,Block,Karthikappally,LGD,554,5676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +LGD,5684,Block,Karunagappally,LGD,559,5684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +LGD,5769,Block,Karur,LGD,576,5769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +LGD,5408,Block,Karvetinagar,LGD,503,5408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,4287,Block,Karvir,LGD,480,4287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,5478,Block,Karwar,LGD,550,5478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,875,Block,Karwi,LGD,136,875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +LGD,5630,Block,Kasaragod,LGD,558,5630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +LGD,164,Block,Kasauli,LGD,25,164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,1135,Block,Kasba,LGD,214,1135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,3328,Block,Kasdol,LGD,644,3328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,1010,Block,Kasganj,LGD,633,1010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +LGD,1514,Block,Kashi Chak,LGD,210,1514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,2385,Block,Kashipur,LGD,321,2385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,3177,Block,Kashipur,LGD,370,3177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,346,Block,Kashipur,LGD,56,346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,6748,Block,Kashtigarh,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,6834,Block,Kasimabad,LGD,146,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +LGD,4876,Block,Kasimkota,LGD,744,4876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3104,Block,Kasinagar,LGD,353,3104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +LGD,4349,Block,Kasipet,LGD,684,4349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,2593,Block,Kasmar,LGD,322,2593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,1891,Block,Kasom Khullen,LGD,717,1891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 +LGD,3547,Block,Kasrawad,LGD,414,3547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,957,Block,Kasya,LGD,160,957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +LGD,2655,Block,Katamdag,LGD,332,2655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,1668,Block,Katan Circle,LGD,240,1668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,3667,Block,Katangi,LGD,392,3667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,4402,Block,Kataram,LGD,687,4402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,6519,Block,Katargam,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,3371,Block,Katekalyan,LGD,376,3371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +LGD,3272,Block,Katghora,LGD,383,3272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,2670,Block,Kathikund,LGD,326,2670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,3872,Block,Kathlal,LGD,450,3872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,4418,Block,Kathlapur,LGD,681,4418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,30,Block,Kathua,LGD,7,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,504,Block,Kathumar,LGD,87,504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,2096,Block,Katigora,LGD,282,2096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +LGD,1151,Block,Katihar,LGD,201,1151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,1215,Block,Katiya,LGD,197,1215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,2654,Block,Katkamsandi,LGD,332,2654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,2109,Block,Katlichara,LGD,289,2109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +LGD,7567,Block,Katngi,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,7028,Block,Katni Nagar,LGD,413,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,4024,Block,Katol,LGD,484,4024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,1354,Block,Katoria,LGD,190,1354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,6945,Block,Katoula,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,5713,Block,Katpadi,LGD,595,5713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +LGD,6741,Block,Katra,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,1208,Block,Katra,LGD,208,1208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,4943,Block,Katrenikona,LGD,747,4943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1397,Block,Katrisarai,LGD,209,1397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,5945,Block,Kattakkada,LGD,565,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +LGD,4635,Block,Kattangur,LGD,514,4635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,6980,Block,Katthiwara,LGD,639,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +LGD,5792,Block,Kattumannarkoil,LGD,570,5792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,2281,Block,Katwa - I,LGD,306,2281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2282,Block,Katwa - II,LGD,306,2282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,5158,Block,Kavali,LGD,515,5158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,3902,Block,Kavant,LGD,668,3902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +LGD,5625,Block,Kavaratti,LGD,553,5625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,4303,Block,Kavathemahankal,LGD,493,4303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,4779,Block,Kaviti,LGD,519,4779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,1516,Block,Kawakol,LGD,210,1516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,3298,Block,Kawardha,LGD,382,3298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,6829,Block,Kawarhama,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,7342,Block,Kawrtethawveng,LGD,266,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +LGD,6628,Block,Kayathar,LGD,594,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,1627,Block,Kaying Eac,LGD,679,1627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,1854,Block,Kebai Khelma,LGD,613,1854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +LGD,1646,Block,Kebang Circle,LGD,679,1646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,6092,Block,Keegam,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +LGD,4522,Block,Keesara,LGD,700,4522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,1886,Block,Keirao Bitra,LGD,255,1886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +LGD,614,Block,Kekri,LGD,86,614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,4090,Block,Kelapur,LGD,500,4090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,7269,Block,Kelhari,LGD,760,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,6091,Block,Keller,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +LGD,2927,Block,Kendrapara,LGD,360,2927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,3663,Block,Keolari,LGD,428,3663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,7492,Block,Keonjhar,LGD,361,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,1183,Block,Keotiranway,LGD,195,1183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,986,Block,Kerakat,LGD,152,986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +LGD,4313,Block,Kerameri,LGD,699,4313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,6782,Block,Keran,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,2656,Block,Keredari,LGD,332,2656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,2721,Block,Kersai,LGD,342,2721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,4717,Block,Kesamudram,LGD,688,4717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,1047,Block,Kesaria,LGD,213,1047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1439,Block,Kesath,LGD,194,1439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,4561,Block,Keshampet,LGD,518,4561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,2466,Block,Keshiary,LGD,318,2466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,3355,Block,Keshkal,LGD,643,3355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +LGD,3831,Block,Keshod,LGD,448,3831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,625,Block,Keshoraipatan,LGD,94,625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +LGD,2451,Block,Keshpur,LGD,318,2451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,3159,Block,Kesinga,LGD,358,3159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,3452,Block,Kesli,LGD,425,3452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,2497,Block,Ketar*,LGD,328,2497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,4637,Block,Kethepally,LGD,514,4637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,2279,Block,Ketugram - I,LGD,306,2279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2280,Block,Ketugram - II,LGD,306,2280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,1847,Block,Kezocha,LGD,245,1847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +LGD,4929,Block,K Gangavaram,LGD,747,4929,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3508,Block,Khacharod,LGD,435,3508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,6878,Block,Khadda,LGD,160,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +LGD,3235,Block,Khadganva,LGD,760,3235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,7277,Block,Khadgaon,LGD,761,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,261,Block,Khadur Sahib,LGD,609,261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +LGD,4,Block,Khag,LGD,2,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,879,Block,Khaga,LGD,142,879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +LGD,1323,Block,Khagaria,LGD,202,1323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +LGD,752,Block,Khair,LGD,119,752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +LGD,2906,Block,Khaira,LGD,346,2906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,1532,Block,Khaira,LGD,198,1532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,3303,Block,Khairagarh,LGD,759,3303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,4505,Block,Khairatabad,LGD,507,4505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,3670,Block,Khairlanji,LGD,392,3670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,7469,Block,Khairput,LGD,364,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +LGD,7207,Block,Khairthal,LGD,770,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,1089,Block,Khajauli,LGD,206,1089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,5212,Block,Khajipeta,LGD,504,5212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,953,Block,Khajni,LGD,148,953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +LGD,3113,Block,Khajuripada,LGD,359,3113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,478,Block,Khajuwala,LGD,93,478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,3720,Block,Khaknar,LGD,397,3720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +LGD,4175,Block,Khalapur,LGD,491,4175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,942,Block,Khalilabad,LGD,178,942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +LGD,7485,Block,Khallikote,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,12,Block,Khaltsi,LGD,9,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,3715,Block,Khalwa,LGD,405,3715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,223,Block,Khamanon,LGD,30,223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +LGD,3847,Block,Khambha,LGD,439,3847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,3813,Block,Khambhalia,LGD,674,3813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +LGD,3866,Block,Khambhat,LGD,440,3866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,3981,Block,Khamgaon,LGD,472,3981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,4756,Block,Khammam (Rural),LGD,509,4756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,6326,Block,Khammam Urban,LGD,509,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,6393,Block,Khamnor,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,2354,Block,Khanakul - I,LGD,312,2354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,2355,Block,Khanakul - II,LGD,312,2355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,4347,Block,Khanapur,LGD,680,4347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,4299,Block,Khanapur,LGD,493,4299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,5439,Block,Khanapur,LGD,527,5439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,4709,Block,Khanapur,LGD,522,4709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,2297,Block,Khandaghosh,LGD,306,2297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,4257,Block,Khandala,LGD,494,4257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,3026,Block,Khandapada,LGD,367,3026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,532,Block,Khandar,LGD,113,532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,6384,Block,Khandela,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,3716,Block,Khandwa,LGD,405,3716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,7019,Block,Khandwa Nagar,LGD,405,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,3414,Block,Khaniyadhana,LGD,432,3414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,225,Block,Khanna,LGD,36,225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +LGD,678,Block,Khanpur,LGD,105,678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,1287,Block,Khanpur,LGD,217,1287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,3879,Block,Khanpur,LGD,669,3879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,6472,Block,Khanpur St,LGD,75,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +LGD,6,Block,Khansahib,LGD,2,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,6801,Block,Khanyar,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +LGD,3145,Block,Khaprakhol,LGD,345,3145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,1360,Block,Kharagpur,LGD,207,1360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,2460,Block,Kharagpur - I,LGD,318,2460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,2461,Block,Kharagpur - II,LGD,318,2461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,6704,Block,Kharah Balli,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,266,Block,Kharar,LGD,608,266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +LGD,2495,Block,Kharaundhi,LGD,328,2495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,3422,Block,Khargapur,LGD,434,3422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,3550,Block,Khargone,LGD,414,3550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,7029,Block,Khargone Nagar,LGD,414,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,2239,Block,Khargram,LGD,319,2239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,6759,Block,Khari,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,3156,Block,Khariar,LGD,368,3156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +LGD,2165,Block,Kharibari,LGD,309,2165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,1331,Block,Kharik,LGD,192,1331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,381,Block,Kharkhoda,LGD,75,381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +LGD,1972,Block,Kharkutta,LGD,656,1972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 +LGD,7262,Block,Kharora,LGD,387,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,1681,Block,Kharsang Circle,LGD,229,1681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,2747,Block,Kharsawan,LGD,341,2747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,3269,Block,Kharsia,LGD,386,3269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,7159,Block,Kharu,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,1992,Block,Khatarshnong Laitkroh,LGD,274,1992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,710,Block,Khatauli,LGD,172,710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +LGD,4260,Block,Khatav,LGD,494,4260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,3531,Block,Khategaon,LGD,402,3531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,352,Block,Khatima,LGD,56,352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,2373,Block,Khatra,LGD,305,2373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,6771,Block,Khawas,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,1909,Block,Khawbung,LGD,262,1909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 +LGD,1907,Block,Khawzawl,LGD,728,1907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +LGD,6247,Block,Khazipet,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,4268,Block,Khed,LGD,492,4268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,4190,Block,Khed,LGD,490,4190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,3874,Block,Kheda,LGD,450,3874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,3760,Block,Khedbrahma,LGD,458,3760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,561,Block,Kheenvsar,LGD,110,561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,2486,Block,Khejuri - I,LGD,317,2486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2487,Block,Khejuri - II,LGD,317,2487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,737,Block,Khekada,LGD,124,737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +LGD,2683,Block,Khelari,LGD,339,2683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,6605,Block,Khenawa Circle,LGD,231,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,6496,Block,Khengjoy,LGD,253,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +LGD,768,Block,Kheragarh,LGD,118,768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +LGD,3752,Block,Kheralu,LGD,451,3752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,6195,Block,Khergam,LGD,453,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +LGD,6419,Block,Kheri Jalab St,LGD,792,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +LGD,695,Block,Kherwara,LGD,117,695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,490,Block,Khetri,LGD,106,490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,1811,Block,Khezhakeno,LGD,248,1811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,6246,Block,Khila Warangal,LGD,522,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,3564,Block,Khilchipur,LGD,422,3564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,1669,Block,Khimiyang Eac,LGD,229,1669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,3606,Block,Khirkiya,LGD,408,3606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +LGD,1490,Block,Khizirsarai,LGD,196,1490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,6828,Block,Khoie,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,6428,Block,Khoirabari,LGD,617,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +LGD,1842,Block,Khongsa,LGD,614,1842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,1686,Block,Khonsa Hq,LGD,239,1686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,3036,Block,Khordha,LGD,362,3036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,6038,Block,Khoupum,LGD,714,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 +LGD,6714,Block,Khour,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,6684,Block,Khowai,LGD,652,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 +LGD,2267,Block,Khoyrasol,LGD,307,2267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,1304,Block,Khudabandpur,LGD,191,1304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,7015,Block,Khudel,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,6993,Block,Khujner,LGD,422,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,4138,Block,Khuldabad,LGD,469,4138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,2083,Block,Khumtai,LGD,288,2083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +LGD,107,Block,Khundian,LGD,18,107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,2883,Block,Khunta,LGD,365,2883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,2704,Block,Khunti,LGD,606,2704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 +LGD,2732,Block,Khuntpani,LGD,343,2732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,3444,Block,Khurai,LGD,425,3444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,751,Block,Khurja,LGD,134,751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +LGD,1413,Block,Khusrupur,LGD,212,1413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,1802,Block,Khuza,LGD,248,1802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,1741,Block,Kibithoo Circle,LGD,628,1741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,349,Block,Kichha,LGD,56,349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,5991,Block,Kikruma,LGD,248,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,6654,Block,Kilakarai,LGD,583,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,6673,Block,Killiyoor,LGD,575,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +LGD,7396,Block,Killod,LGD,405,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,6630,Block,Kilpennathur,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,5623,Block,Kiltan,LGD,553,5623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,5800,Block,Kilvelur,LGD,579,5800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +LGD,1605,Block,Kimin Sdo,LGD,237,1605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,5956,Block,Kinathukadavu,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,4096,Block,Kinwat,LGD,485,4096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,1837,Block,Kiphire Sadar,LGD,614,1837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,767,Block,Kiraoli,LGD,118,767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +LGD,7594,Block,Kirari,LGD,82,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 +LGD,1195,Block,Kiratpur,LGD,195,1195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,4899,Block,Kirlampudi,LGD,746,4899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7506,Block,Kirmira,LGD,357,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +LGD,3673,Block,Kirnapur,LGD,392,3673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,6361,Block,Kirtinagar,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,1127,Block,Kishanganj,LGD,203,1127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +LGD,674,Block,Kishanganj,LGD,89,674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,1167,Block,Kishanganj,LGD,205,1167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,606,Block,Kishangarh,LGD,86,606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,497,Block,Kishangarhbas,LGD,770,497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,6026,Block,Kishangarh Renwal,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,2960,Block,Kishannagar,LGD,350,2960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,1107,Block,Kishanpur,LGD,223,1107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,6872,Block,Kishni,LGD,166,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +LGD,3016,Block,Kishorenagar,LGD,344,3016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,68,Block,Kishtwar,LGD,620,68,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,2597,Block,Kisko,LGD,336,2597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +LGD,1560,Block,Kitpi Circle,LGD,238,1560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,7043,Block,Kittur,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,1838,Block,Kiusam,LGD,614,1838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,4860,Block,K.Kotapadu,LGD,744,4860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7496,Block,K. Nuagaon,LGD,359,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,1126,Block,Kochadhamin,LGD,203,1126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +LGD,1457,Block,Kochas,LGD,215,1457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,5660,Block,Kochi,LGD,555,5660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +LGD,2782,Block,Kochinda,LGD,371,2782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,4668,Block,Kodad,LGD,696,4668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,5766,Block,Kodaikanal,LGD,572,5766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,4600,Block,Kodair,LGD,694,4600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,4702,Block,Kodakandla,LGD,689,4702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,3082,Block,Kodala,LGD,354,3082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,4549,Block,Kodangal,LGD,698,4549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,5169,Block,Kodavalur,LGD,515,5169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,2527,Block,Koderma,LGD,334,2527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +LGD,4420,Block,Kodimial,LGD,681,4420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,3837,Block,Kodinar,LGD,675,3837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +LGD,3194,Block,Kodinga,LGD,366,3194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,6637,Block,Kodumudi,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,5269,Block,Kodumur,LGD,511,5269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5655,Block,Kodungallur,LGD,566,5655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +LGD,5249,Block,Kodur,LGD,752,5249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5039,Block,Koduru,LGD,510,5039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,4443,Block,Koheda,LGD,692,4443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,1849,Block,Kohima Sadar,LGD,245,1849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +LGD,4475,Block,Kohir,LGD,691,4475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,7321,Block,Kohkameta,LGD,637,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 +LGD,2826,Block,Koida,LGD,373,2826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,755,Block,Koil,LGD,119,755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +LGD,5296,Block,Koilakuntla,LGD,755,5296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4569,Block,Koilkonda,LGD,512,4569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,1424,Block,Koilwar,LGD,193,1424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,3169,Block,Kokasara,LGD,358,3169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,57,Block,Kokernag,LGD,1,57,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,6403,Block,Kokrajhar,LGD,294,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +LGD,2779,Block,Kolabira,LGD,357,2779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +LGD,2471,Block,Kolaghat,LGD,317,2471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,7034,Block,Kolar,LGD,396,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +LGD,5591,Block,Kolar,LGD,542,5591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +LGD,3411,Block,Kolaras,LGD,432,3411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,7002,Block,Kolar Gold Field,LGD,542,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +LGD,7514,Block,Kolathur,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,476,Block,Kolayat,LGD,93,476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,2724,Block,Kolebira,LGD,342,2724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,7072,Block,Kolhar,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,5301,Block,Kolimigundla,LGD,755,5301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5688,Block,Kollam,LGD,559,5688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +LGD,4609,Block,Kollapur,LGD,694,4609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,5579,Block,Kollegal,LGD,531,5579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +LGD,6625,Block,Kolli Hills,LGD,580,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,5077,Block,Kollipara,LGD,506,5077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,5088,Block,Kolluru,LGD,750,5088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7512,Block,Kolnara,LGD,370,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,6130,Block,Koloriang Hq,LGD,233,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,7322,Block,Komakhan,LGD,385,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +LGD,4807,Block,Komarada,LGD,743,4807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5134,Block,Komarolu,LGD,790,5134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6586,Block,Kombo Circle,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,3155,Block,Komna,LGD,368,3155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +LGD,6284,Block,Komuravelli,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,5119,Block,Konakanamitla,LGD,790,5119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4431,Block,Konaraopet,LGD,683,4431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,855,Block,Konch,LGD,151,855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +LGD,1487,Block,Konch,LGD,196,1487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,3357,Block,Kondagaon,LGD,643,3357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +LGD,6307,Block,Kondamallepally,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4462,Block,Kondapak,LGD,692,4462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,5137,Block,Kondapi,LGD,517,5137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,4491,Block,Kondapur,LGD,691,4491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,5199,Block,Kondapuram,LGD,504,5199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,5156,Block,Kondapuram,LGD,515,5156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5941,Block,Kondotty,LGD,562,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +LGD,4558,Block,Kondurg,LGD,518,4558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,4761,Block,Konijerla,LGD,509,4761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,5943,Block,Konni,LGD,564,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +LGD,3373,Block,Konta,LGD,642,3373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +LGD,6627,Block,Koothanallur,LGD,590,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,4203,Block,Kopargaon,LGD,466,4203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,5526,Block,Koppa,LGD,532,5526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,5467,Block,Koppal,LGD,543,5467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +LGD,6574,Block,Kora Circle,LGD,719,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,895,Block,Koraon,LGD,120,895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,3207,Block,Koraput,LGD,363,3207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,5536,Block,Koratagere,LGD,548,5536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,3275,Block,Korba,LGD,383,3275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,4055,Block,Korchi,LGD,475,4055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,4261,Block,Koregaon,LGD,494,4261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,1143,Block,Korha,LGD,201,1143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,5122,Block,Korisapadu,LGD,517,5122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,1727,Block,Koronu Circle,LGD,235,1727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +LGD,4075,Block,Korpana,LGD,473,4075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,4905,Block,Korukonda,LGD,505,4905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,4416,Block,Korutla,LGD,681,4416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,4551,Block,Kosgi,LGD,721,4551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,5251,Block,Kosigi,LGD,511,5251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,413,Block,Kosli,LGD,72,413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,338,Block,Kosya Kutauli,LGD,51,338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,5191,Block,Kota,LGD,515,5191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,3291,Block,Kota,LGD,375,3291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,4791,Block,Kotabommali,LGD,519,4791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,7275,Block,Kotadol,LGD,760,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,3123,Block,Kotagarh,LGD,359,3123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,4371,Block,Kotagiri,LGD,516,4371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,5757,Block,Kotagiri,LGD,587,5757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +LGD,4889,Block,Kotananduru,LGD,746,4889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4351,Block,Kotapally,LGD,684,4351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,3467,Block,Kotar,LGD,426,3467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,4874,Block,Kotauratla,LGD,744,4874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3805,Block,Kotda Sangani,LGD,457,3805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,313,Block,Kotdwara,LGD,52,313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,6312,Block,Kotepally,LGD,698,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,6851,Block,Koteranka,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,6956,Block,Kotgarh,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,5346,Block,Kothacheruvu,LGD,754,5346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4710,Block,Kothaguda,LGD,688,4710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,4738,Block,Kothagudem,LGD,690,4738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,4593,Block,Kothakota,LGD,693,4593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,5663,Block,Kothamangalam,LGD,555,5663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +LGD,5263,Block,Kothapalle,LGD,755,5263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6230,Block,Kothapally,LGD,508,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,7537,Block,Kothapally (15),LGD,721,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,7531,Block,Kothapallygori,LGD,687,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,5140,Block,Kotha Patnam,LGD,517,5140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,4927,Block,Kothapeta,LGD,747,4927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4834,Block,Kothavalasa,LGD,521,4834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,3461,Block,Kothi,LGD,426,3461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,7007,Block,Kothi Mahal,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,7556,Block,Kothmba,LGD,669,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,4560,Block,Kothur,LGD,518,4560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,4772,Block,Kothuru,LGD,519,4772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,5984,Block,Kotkapura,LGD,29,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +LGD,495,Block,Kotkasim,LGD,770,495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,189,Block,Kotkhai,LGD,23,189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,6028,Block,Kotkhawda,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,6896,Block,Kotla,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,128,Block,Kotli,LGD,22,128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,3693,Block,Kotma,LGD,390,3693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +LGD,3199,Block,Kotpad,LGD,363,3199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,538,Block,Kotputli,LGD,782,538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,687,Block,Kotra,LGD,117,687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,635,Block,Kotri,LGD,92,635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,5687,Block,Kottarakkara,LGD,559,5687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +LGD,5670,Block,Kottayam,LGD,560,5670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +LGD,7108,Block,Kotturu,LGD,738,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +LGD,2367,Block,Kotulpur,LGD,305,2367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,1049,Block,Kotwa,LGD,213,1049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,7522,Block,Koukuntla,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,4316,Block,Koutala,LGD,699,4316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,5862,Block,Kovilpatti,LGD,594,5862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,5178,Block,Kovur,LGD,515,5178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,4958,Block,Kovvur,LGD,505,4958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,4480,Block,Kowdipally,LGD,513,4480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,5252,Block,Kowthalam,LGD,511,5252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,2117,Block,Koya,LGD,291,2117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,5639,Block,Koyilandi,LGD,561,5639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +LGD,7345,Block,Koylibeda,LGD,381,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,1648,Block,Koyu Eac,LGD,719,1648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,4952,Block,Koyyalagudem,LGD,748,4952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4851,Block,Koyyuru,LGD,745,4851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5682,Block,Kozhenchery,LGD,564,5682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +LGD,5640,Block,Kozhikode,LGD,561,5640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +LGD,6783,Block,Kralpora,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,7119,Block,Kranti,LGD,314,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,36,Block,Kreeri,LGD,3,36,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,163,Block,Krishangarh,LGD,25,163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,6264,Block,Krishna,LGD,721,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,2309,Block,Krishnaganj,LGD,320,2309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,2308,Block,Krishnagar - I,LGD,320,2308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,2306,Block,Krishnagar - II,LGD,320,2306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,5891,Block,Krishnagiri,LGD,577,5891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,5277,Block,Krishnagiri,LGD,511,5277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5571,Block,Krishnarajanagara,LGD,545,5571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,5546,Block,Krishnarajpet,LGD,544,5546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +LGD,5770,Block,Krishnarayapuram,LGD,576,5770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +LGD,1133,Block,Krityanand Nagar,LGD,214,1133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,1721,Block,Kronli (Arzoo Circle),LGD,230,1721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 +LGD,5051,Block,Krosuru,LGD,751,5051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3069,Block,Krushna Prasad,LGD,369,3069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,5018,Block,Kruthivennu,LGD,510,5018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,3372,Block,Kuakonda,LGD,376,3372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +LGD,4338,Block,Kubeer,LGD,680,4338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,1763,Block,Kubolong,LGD,246,1763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,2746,Block,Kuchai,LGD,341,2746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,1219,Block,Kuchaikote,LGD,197,1219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,6065,Block,Kuchaman City,LGD,768,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5323,Block,Kudair,LGD,502,5323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,4280,Block,Kudal,LGD,495,4280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,5804,Block,Kudavasal,LGD,590,5804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,7219,Block,Kudi Bhagtasni,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,5502,Block,Kudligi,LGD,738,5502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +LGD,1448,Block,Kudra,LGD,200,1448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,7470,Block,Kudumuluguma,LGD,364,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +LGD,4035,Block,Kuhi,LGD,484,4035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,1794,Block,Kuhoboto,LGD,764,1794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,2936,Block,Kujang,LGD,355,2936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,7093,Block,Kukanoor,LGD,543,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +LGD,6169,Block,Kukarmunda,LGD,641,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,6327,Block,Kukatpally,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,7351,Block,Kukdur,LGD,382,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,7314,Block,Kukrel,LGD,377,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +LGD,2750,Block,Kukru,LGD,341,2750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,3536,Block,Kukshi,LGD,403,3536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,7484,Block,Kukudakhandi,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,4735,Block,Kukunoor,LGD,748,4735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7521,Block,Kukunoorpally,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,6439,Block,Kulan St,LGD,61,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +LGD,5819,Block,Kulathur,LGD,582,5819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,4468,Block,Kulcharam,LGD,513,4468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,59,Block,Kulgam,LGD,622,59,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +LGD,7458,Block,Kuliana,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,5771,Block,Kulithalai,LGD,576,5771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +LGD,4539,Block,Kulkacharla,LGD,698,4539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,118,Block,Kullu,LGD,20,118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,868,Block,Kulpahar,LGD,165,868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +LGD,2428,Block,Kulpi,LGD,304,2428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2433,Block,Kultali,LGD,304,2433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,6634,Block,Kumarapalayam,LGD,580,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,5382,Block,Kumara Venkata Bhupala Puram,LGD,752,5382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7350,Block,Kumarda,LGD,388,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +LGD,2744,Block,Kumardungi,LGD,343,2744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,2202,Block,Kumarganj,LGD,310,2202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,6694,Block,Kumarghat,LGD,655,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +LGD,2172,Block,Kumargram,LGD,664,2172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +LGD,1163,Block,Kumarkhand,LGD,205,1163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,179,Block,Kumarsain,LGD,23,179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,5811,Block,Kumbakonam,LGD,586,5811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,642,Block,Kumbhalgarh,LGD,112,642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,3681,Block,Kumbhraj,LGD,406,3681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,510,Block,Kumher,LGD,767,510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5485,Block,Kumta,LGD,550,5485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,4731,Block,Kunavaram,LGD,791,4731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7323,Block,Kunda,LGD,382,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,881,Block,Kunda,LGD,174,881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +LGD,2516,Block,Kunda,LGD,323,2516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,5759,Block,Kundah,LGD,587,5759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +LGD,7382,Block,Kundal,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,3633,Block,Kundam,LGD,411,3633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,5522,Block,Kundapura,LGD,549,5522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +LGD,5477,Block,Kundgol,LGD,536,5477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,2681,Block,Kundhit,LGD,333,2681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +LGD,7057,Block,Kundrathur,LGD,574,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +LGD,3210,Block,Kundura,LGD,363,3210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,5333,Block,Kundurpi,LGD,502,5333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5541,Block,Kunigal,LGD,548,5541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,7056,Block,Kunihar,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,3839,Block,Kunkavav Vadia,LGD,439,3839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,3259,Block,Kunkuri,LGD,380,3259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,5976,Block,Kunnam,LGD,581,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +LGD,6598,Block,Kunnamkulam,LGD,566,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +LGD,5657,Block,Kunnathunad,LGD,555,5657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +LGD,5685,Block,Kunnathur,LGD,559,5685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +LGD,4337,Block,Kuntala,LGD,680,4337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,6928,Block,Kunwariya,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,6830,Block,Kunzer,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,5427,Block,Kuppam,LGD,503,5427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,6962,Block,Kupvi,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,1,Block,Kupwara,LGD,8,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,5389,Block,Kurabalakota,LGD,753,5389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7156,Block,Kurabar,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,3666,Block,Kurai,LGD,428,3666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,4721,Block,Kuravi,LGD,688,4721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,6874,Block,Kurawali,LGD,166,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +LGD,2720,Block,Kurdeg,LGD,342,2720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,1213,Block,Kurhani,LGD,208,1213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,5103,Block,Kurichedu,LGD,517,5103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,5790,Block,Kurinjipadi,LGD,570,5790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,4054,Block,Kurkheda,LGD,475,4054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,7180,Block,Kurla,LGD,483,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +LGD,5259,Block,Kurnool Rural,LGD,511,5259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,7183,Block,Kurnool Urban,LGD,511,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,1117,Block,Kursakatta,LGD,188,1117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,1155,Block,Kursela,LGD,201,1155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,2161,Block,Kurseong,LGD,309,2161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,1546,Block,Kurtha,LGD,611,1546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +LGD,2599,Block,Kuru,LGD,336,2599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +LGD,3344,Block,Kurud,LGD,377,3344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +LGD,7109,Block,Kurugodu,LGD,528,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +LGD,4809,Block,Kurupam,LGD,743,4809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3572,Block,Kurwai,LGD,437,3572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,654,Block,Kushalgarh,LGD,88,654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,7124,Block,Kushalnagar,LGD,541,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +LGD,1197,Block,Kusheshwar Asthan,LGD,195,1197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,1198,Block,Kusheshwar Asthan Purbi,LGD,195,1198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,2200,Block,Kushmundi,LGD,310,2200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,5465,Block,Kushtagi,LGD,543,5465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +LGD,3702,Block,Kusmi,LGD,433,3702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,3240,Block,Kusmi(Samri),LGD,649,3240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,4755,Block,Kusumanchi,LGD,509,4755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,7478,Block,Kusumi,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,5797,Block,Kuthalam,LGD,735,5797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +LGD,3824,Block,Kutiyana,LGD,456,3824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +LGD,2813,Block,Kutra,LGD,373,2813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,7260,Block,Kutru,LGD,636,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +LGD,5675,Block,Kuttanad,LGD,554,5675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +LGD,1484,Block,Kutumba,LGD,189,1484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,7052,Block,K V Kuppam,LGD,595,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +LGD,2262,Block,Labpur,LGD,307,2262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,552,Block,Lachhmangarh,LGD,114,552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,503,Block,Lachhmangarh,LGD,87,503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,6098,Block,Lada Circle,LGD,787,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,1084,Block,Ladania,LGD,206,1084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,125,Block,Lad Bharol,LGD,22,125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,557,Block,Ladnu,LGD,768,557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,667,Block,Ladpura,LGD,109,667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +LGD,6410,Block,Ladwa,LGD,68,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +LGD,6902,Block,Lagru,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,3398,Block,Lahar,LGD,395,3398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,2028,Block,Laharighat,LGD,296,2028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +LGD,805,Block,Laharpur,LGD,183,805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +LGD,1253,Block,Lahladpur,LGD,218,1253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,115,Block,Lahul,LGD,21,115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +LGD,2827,Block,Lahunipara,LGD,373,2827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,2778,Block,Laikera,LGD,357,2778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +LGD,3264,Block,Lailunga,LGD,386,3264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,1694,Block,Laju Sdo,LGD,239,1694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,4043,Block,Lakhandur,LGD,471,4043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +LGD,6168,Block,Lakhani,LGD,789,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,4041,Block,Lakhani,LGD,471,4041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +LGD,6468,Block,Lakhan Majra St,LGD,73,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +LGD,3248,Block,Lakhanpur,LGD,389,3248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,2771,Block,Lakhanpur,LGD,357,2771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +LGD,801,Block,Lakhimpur,LGD,159,801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +LGD,2013,Block,Lakhipur,LGD,287,2013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +LGD,2100,Block,Lakhipur,LGD,282,2100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +LGD,1368,Block,Lakhisarai,LGD,204,1368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +LGD,3659,Block,Lakhnadon,LGD,428,3659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,1099,Block,Lakhnaur,LGD,206,1099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,3722,Block,Lakhpat,LGD,449,3722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,3791,Block,Lakhtar,LGD,460,3791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,4833,Block,Lakkavarapukota,LGD,521,4833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,5240,Block,Lakkireddipalli,LGD,753,5240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1233,Block,Lakri Nabiganj,LGD,222,1233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,355,Block,Laksar,LGD,50,355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +LGD,1529,Block,Lakshmipur,LGD,198,1529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,3203,Block,Lakshmipur,LGD,363,3203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,2108,Block,Lala,LGD,289,2108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +LGD,7301,Block,Lal Bahadur Nagar,LGD,388,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +LGD,3671,Block,Lalbarra,LGD,392,3671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,6351,Block,Laldhang,LGD,50,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +LGD,880,Block,Lalganj,LGD,174,880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +LGD,969,Block,Lalganj,LGD,123,969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,826,Block,Lalganj,LGD,175,826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +LGD,1001,Block,Lalganj,LGD,170,1001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +LGD,1270,Block,Lalganj,LGD,224,1270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,2229,Block,Lalgola,LGD,319,2229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,5777,Block,Lalgudi,LGD,591,5777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,862,Block,Lalitpur,LGD,161,862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +LGD,345,Block,Lalkuan,LGD,51,345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,6792,Block,Lalpora,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,3818,Block,Lalpur,LGD,447,3818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +LGD,7258,Block,Lalpur Thana,LGD,647,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +LGD,537,Block,Lalsot,LGD,97,537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,917,Block,Lambhua,LGD,185,917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +LGD,7285,Block,Lambloo,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,6368,Block,Lamgada,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,1881,Block,Lamphelpat,LGD,256,1881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +LGD,1879,Block,Lamsang,LGD,256,1879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +LGD,7399,Block,Lamta,LGD,392,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,6789,Block,Langate,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,4273,Block,Lanja,LGD,492,4273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,3676,Block,Lanji,LGD,392,3676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,3162,Block,Lanjigarh,LGD,358,3162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,2040,Block,Lanka,LGD,709,2040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +LGD,310,Block,Lansdowne,LGD,52,310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,2697,Block,Lapung,LGD,339,2697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,45,Block,Lar,LGD,626,45,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +LGD,6820,Block,Larnoo,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,6774,Block,Laroka,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,691,Block,Lasadiya,LGD,777,691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,1997,Block,Laskein,LGD,275,1997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 +LGD,2639,Block,Latehar,LGD,335,2639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,3570,Block,Lateri,LGD,437,3570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,1733,Block,Lathao Circle,LGD,678,1733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 +LGD,3841,Block,Lathi,LGD,439,3841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,2823,Block,Lathikata,LGD,373,2823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,7236,Block,Latori,LGD,648,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,6737,Block,Latti,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,4226,Block,Latur,LGD,481,4226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,1085,Block,Laukaha,LGD,206,1085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,1086,Block,Laukahi,LGD,206,1086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,1018,Block,Lauriya,LGD,211,1018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,2157,Block,Lava,LGD,702,2157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +LGD,7246,Block,Lavan,LGD,644,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,7050,Block,Lavaold,LGD,702,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +LGD,4804,Block,Laveru,LGD,519,4804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,3425,Block,Lavkush Nagar,LGD,398,3425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,2517,Block,Lawalaung,LGD,323,2517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,6909,Block,Lawan,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,1917,Block,Lawngtlai,LGD,264,1917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 +LGD,1689,Block,Lawnu Circle,LGD,666,1689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 +LGD,4345,Block,Laxmanchanda,LGD,680,4345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,7083,Block,Laxmeshwar,LGD,537,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +LGD,6266,Block,Laxmidevipalli,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,4787,Block,Laxminarasupeta,LGD,519,4787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,10,Block,Leh,LGD,9,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,273,Block,Lehra,LGD,43,273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +LGD,1735,Block,Lekang Mahadevpur Circle,LGD,678,1735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 +LGD,5365,Block,Lepakshi,LGD,754,5365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2805,Block,Lephripara,LGD,373,2805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,1603,Block,Leporiang Circle,LGD,237,1603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,6555,Block,Lhou Circle,LGD,238,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,6497,Block,Lhungtin,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,6536,Block,Lidhora,LGD,434,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,1640,Block,Likabali Sdo,LGD,719,1640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,3842,Block,Lilia,LGD,439,3842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,1876,Block,Lilong,LGD,259,1876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 +LGD,3797,Block,Limbdi,LGD,460,3797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,1608,Block,Limeking Circle,LGD,241,1608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,3892,Block,Limkheda,LGD,445,3892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,4598,Block,Lingal,LGD,694,4598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,5218,Block,Lingala,LGD,504,5218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4700,Block,Lingalaghanpur,LGD,689,4700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,4388,Block,Lingampet,LGD,685,4388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,4945,Block,Lingapalem,LGD,748,4945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6311,Block,Lingapur,LGD,699,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,5150,Block,Lingasamudram,LGD,517,5150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,5459,Block,Lingasugur,LGD,546,5459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,1632,Block,Liromoba Eac,LGD,243,1632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,2573,Block,Litipara,LGD,337,2573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +LGD,5924,Block,Little Andaman,LGD,602,5924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +LGD,6482,Block,LM,LGD,260,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 +LGD,3804,Block,Lodhika,LGD,457,3804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,4107,Block,Loha,LGD,485,4107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,336,Block,Lohaghat,LGD,48,336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +LGD,6729,Block,Lohai Malhar,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,3361,Block,Lohandiguda,LGD,374,3361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,4242,Block,Lohara,LGD,488,4242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,2601,Block,Lohardaga,LGD,336,2601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +LGD,7450,Block,Loharghat,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,401,Block,Loharu,LGD,59,401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +LGD,6391,Block,Lohawat,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3141,Block,Loisinga,LGD,345,3141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,4342,Block,Lokeswaram,LGD,680,4342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,6791,Block,Lolab (Sogam),LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,3987,Block,Lonar,LGD,472,3987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,1758,Block,Longchem,LGD,246,1758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,6074,Block,Longding Hq,LGD,666,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 +LGD,1816,Block,Longkhim,LGD,249,1816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +LGD,1833,Block,Longleng,LGD,615,1833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +LGD,6491,Block,Longmai,LGD,714,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 +LGD,1840,Block,Longmatra,LGD,614,1840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,6597,Block,Longo Circle,LGD,239,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,1751,Block,Longshen,LGD,247,1751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,6692,Block,Longtharai Valley,LGD,269,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +LGD,6089,Block,Loni,LGD,145,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +LGD,7341,Block,Lopoke,LGD,27,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +LGD,3290,Block,Lormi,LGD,647,3290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +LGD,1786,Block,Lotsu,LGD,250,1786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,227,Block,Ludhiana (East),LGD,36,227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +LGD,228,Block,Ludhiana (West),LGD,36,228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +LGD,1557,Block,Lumla Adc,LGD,238,1557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,7337,Block,Lumshnong,LGD,657,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 +LGD,3882,Block,Lunawada,LGD,669,3882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,3251,Block,Lundra,LGD,389,3251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,1914,Block,Lunglei,LGD,265,1914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 +LGD,1913,Block,Lungsen,LGD,265,1913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 +LGD,572,Block,Luni,LGD,107,572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,475,Block,Lunkaransar,LGD,93,475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,4353,Block,Luxettipet,LGD,684,4353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,6578,Block,Lyngok Longtoi Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,6767,Block,Machail,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,4380,Block,Machareddy,LGD,685,4380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,5048,Block,Machavaram,LGD,751,5048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5040,Block,Macherla,LGD,751,5040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3212,Block,Machh Kund,LGD,363,3212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,983,Block,Machhlishahr,LGD,152,983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +LGD,6339,Block,Machhor,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,1892,Block,Machi,LGD,716,1892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11 +LGD,6785,Block,Machil,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,7429,Block,Machilipatnam North,LGD,510,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,5034,Block,Machilipatnam South,LGD,510,5034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,6987,Block,Mada,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,5350,Block,Madakasira,LGD,754,5350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5392,Block,Madanapalle,LGD,753,5392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6289,Block,Madanapur,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,6362,Block,Madannegi,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,1486,Block,Madanpur,LGD,189,1486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,3160,Block,Madanpur Rampur,LGD,358,3160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,2170,Block,Madarihat,LGD,664,2170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +LGD,5907,Block,Madathukulam,LGD,634,5907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,5292,Block,Maddikera (East),LGD,511,5292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5127,Block,Maddipadu,LGD,517,5127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,6300,Block,Maddirala,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,5551,Block,Maddur,LGD,544,5551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +LGD,4673,Block,Maddur,LGD,692,4673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,4554,Block,Maddur,LGD,721,4554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,4564,Block,Madgul,LGD,518,4564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,4245,Block,Madha,LGD,496,4245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,1100,Block,Madhepur,LGD,206,1100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,1161,Block,Madhepura,LGD,205,1161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,4766,Block,Madhira,LGD,509,4766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,851,Block,Madhogarh,LGD,151,851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +LGD,7139,Block,Madhorajpura,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,972,Block,Madhuban,LGD,168,972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +LGD,1055,Block,Madhuban,LGD,213,1055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1093,Block,Madhubani,LGD,206,1093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,1021,Block,Madhubani,LGD,211,1021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,5535,Block,Madhugiri,LGD,548,5535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,2550,Block,Madhupur,LGD,324,2550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,1080,Block,Madhwapur,LGD,206,1080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,5566,Block,Madikeri,LGD,541,5566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +LGD,4372,Block,Madnoor,LGD,685,4372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,4857,Block,Madugula,LGD,744,4857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6305,Block,Madugulapally,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,5986,Block,Madukkari,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,5960,Block,Madurai East,LGD,578,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,5836,Block,Madurai North,LGD,578,5836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,5841,Block,Madurai South,LGD,578,5841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,5961,Block,Madurai West,LGD,578,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,5710,Block,Maduranthakam,LGD,730,5710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,5981,Block,Maduravoyal,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,7410,Block,Madwas,LGD,433,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,5605,Block,Magadi,LGD,631,5605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +LGD,6814,Block,Magam,LGD,2,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,4590,Block,Maganoor,LGD,721,4590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,3345,Block,Magarlod,LGD,377,3345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +LGD,2424,Block,Magrahat - I,LGD,304,2424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2423,Block,Magrahat - II,LGD,304,2423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,4255,Block,Mahabaleshwar,LGD,494,4255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,4718,Block,Mahabubabad,LGD,688,4718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,6258,Block,Mahabubnagar Rural,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,4568,Block,Mahabubnagar Urban,LGD,512,4568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,4185,Block,Mahad,LGD,491,4185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,4403,Block,Mahadevpur,LGD,687,4403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,2558,Block,Mahagama,LGD,330,2558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,4087,Block,Mahagaon,LGD,500,4087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,2933,Block,Mahakalapada,LGD,360,2933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,404,Block,Maham,LGD,73,404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +LGD,5285,Block,Mahanandi,LGD,755,5285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2956,Block,Mahanga,LGD,350,2956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,6725,Block,Mahanpur,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,823,Block,Maharajganj,LGD,175,823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +LGD,947,Block,Maharajganj,LGD,164,947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +LGD,1236,Block,Maharajganj,LGD,222,1236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,3428,Block,Maharajpur,LGD,398,3428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,6837,Block,Maharanipeta,LGD,520,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,3341,Block,Mahasamund,LGD,385,3341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +LGD,920,Block,Mahasi,LGD,125,920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +LGD,763,Block,Mahavan,LGD,167,763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +LGD,5913,Block,Mahe,LGD,600,5913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +LGD,411,Block,Mahendragarh,LGD,69,411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +LGD,3757,Block,Mahesana,LGD,451,3757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,7441,Block,Mahesana City,LGD,451,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,2577,Block,Maheshpur,LGD,337,2577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +LGD,3546,Block,Maheshwar,LGD,414,3546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,4544,Block,Maheshwaram,LGD,518,4544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,3510,Block,Mahidpur,LGD,435,3510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,2475,Block,Mahisadal,LGD,317,2475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,1173,Block,Mahishi,LGD,216,1173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,2075,Block,Mahmora,LGD,708,2075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +LGD,807,Block,Mahmudabad,LGD,183,807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +LGD,1283,Block,Mahnar,LGD,224,1283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,870,Block,Mahoba,LGD,165,870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +LGD,6880,Block,Maholi,LGD,183,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +LGD,6850,Block,Mahore,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,863,Block,Mahroni,LGD,161,863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +LGD,1275,Block,Mahua,LGD,224,1275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,2637,Block,Mahuadanr,LGD,335,2637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,3877,Block,Mahudha,LGD,450,3877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,4095,Block,Mahur,LGD,485,4095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,3941,Block,Mahuva,LGD,459,3941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,3860,Block,Mahuva,LGD,443,3860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,534,Block,Mahwa,LGD,97,534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,3470,Block,Maihar,LGD,784,3470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,1016,Block,Mainatanr,LGD,211,1016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,3254,Block,Mainpat,LGD,389,3254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,3337,Block,Mainpur,LGD,645,3337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +LGD,775,Block,Mainpuri,LGD,166,775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +LGD,6702,Block,Maira Mandrian,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,1982,Block,Mairang,LGD,740,1982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 +LGD,1240,Block,Mairwa,LGD,222,1240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,6871,Block,Maitha,LGD,156,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +LGD,4219,Block,Majalgaon,LGD,470,4219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,75,Block,Majalta,LGD,14,75,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,3701,Block,Majhauli,LGD,433,3701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,1027,Block,Majhaulia,LGD,211,1027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,6919,Block,Majheen,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,2745,Block,Majhgaon,LGD,343,2745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,3462,Block,Majhgawan,LGD,426,3462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,2499,Block,Majhiaon,LGD,328,2499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,3628,Block,Majholi,LGD,411,3628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,6854,Block,Majitha,LGD,27,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +LGD,1065,Block,Majorganj,LGD,221,1065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,7121,Block,Majra,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,2076,Block,Majuli,LGD,706,2076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 +LGD,3937,Block,Majura,LGD,459,3937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,4875,Block,Makavarapalem,LGD,744,4875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3358,Block,Makdi,LGD,643,3358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +LGD,6995,Block,Makdon,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,1262,Block,Maker,LGD,218,1262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,3616,Block,Makhan Nagar,LGD,409,3616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,1540,Block,Makhdumpur,LGD,199,1540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +LGD,4813,Block,Makkuva,LGD,743,4813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4367,Block,Makloor,LGD,516,4367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,565,Block,Makrana,LGD,768,565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,6969,Block,Makridi,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,3680,Block,Maksoodangarh,LGD,406,3680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,4589,Block,Makthal,LGD,721,4589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,2167,Block,Mal,LGD,314,2167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,6382,Block,Malakhera,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,528,Block,Malarna Doongar,LGD,113,528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,5552,Block,Malavalli,LGD,544,5552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +LGD,2217,Block,Maldah (Old),LGD,316,2217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,4604,Block,Maldakal,LGD,695,4604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,4146,Block,Malegaon,LGD,487,4146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,3995,Block,Malegaon,LGD,499,3995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +LGD,269,Block,Malerkotla,LGD,737,269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +LGD,7014,Block,Malharganj,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,3493,Block,Malhargarh,LGD,416,3493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,4405,Block,Malharrao,LGD,687,4405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,3833,Block,Malia Hatina,LGD,448,3833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,819,Block,Malihabad,LGD,162,819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +LGD,4938,Block,Malikipuram,LGD,747,4938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3798,Block,Maliya,LGD,673,3798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +LGD,4521,Block,Malkajgiri,LGD,700,4521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,3220,Block,Malkangiri,LGD,364,3220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +LGD,3979,Block,Malkapur,LGD,472,3979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,3285,Block,Malkharoda,LGD,762,3285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,7536,Block,Mallampally,LGD,720,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,5680,Block,Mallappally,LGD,564,5680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +LGD,4394,Block,Mallapur,LGD,681,4394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,4413,Block,Mallial,LGD,681,4413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,239,Block,Malout,LGD,39,239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +LGD,3771,Block,Malpur,LGD,672,3771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,615,Block,Malpura,LGD,116,615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,4250,Block,Malshiras,LGD,496,4250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,6370,Block,Malsisar,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,3445,Block,Malthon,LGD,425,3445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,5592,Block,Malur,LGD,542,5592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +LGD,7589,Block,Malviya Nagar,LGD,83,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +LGD,4278,Block,Malwan,LGD,495,4278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,4346,Block,Mamada,LGD,680,4346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,7165,Block,Mambalam,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,4936,Block,Mamidikuduru,LGD,747,4936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6967,Block,Mamlig,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,4259,Block,Man,LGD,494,4259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,5776,Block,Manachanallur,LGD,591,5776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,4427,Block,Manakondur,LGD,508,4427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,117,Block,Manali,LGD,20,117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,5833,Block,Manamadurai,LGD,585,5833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,5827,Block,Manamelkudi,LGD,582,5827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,5635,Block,Mananthavady,LGD,567,5635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +LGD,5781,Block,Manapparai,LGD,591,5781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,3491,Block,Manasa,LGD,419,3491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +LGD,2628,Block,Manatu,LGD,338,2628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,3825,Block,Manavadar,LGD,448,3825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,3538,Block,Manawar,LGD,403,3538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,2395,Block,Manbazar - I,LGD,321,2395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,2396,Block,Manbazar - II,LGD,321,2396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,6348,Block,Manch,LGD,48,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +LGD,4547,Block,Manchal,LGD,518,4547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,1737,Block,Manchal Circle,LGD,628,1737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,7404,Block,Manchenahalli,LGD,630,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,4354,Block,Mancherial,LGD,684,4354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,631,Block,Mandal,LGD,92,631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,6713,Block,Mandal,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,3777,Block,Mandal,LGD,438,3777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,637,Block,Mandalgarh,LGD,92,637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,4352,Block,Mandamarri,LGD,684,4352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,4266,Block,Mandangad,LGD,492,4266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,6970,Block,Mandap,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,4920,Block,Mandapeta,LGD,505,4920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,2693,Block,Mandar,LGD,339,2693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,4776,Block,Mandasa,LGD,519,4776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,5015,Block,Mandavalli,LGD,748,5015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7145,Block,Mandawa,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,6914,Block,Mandawar,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,7383,Block,Mandhan,LGD,782,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,133,Block,Mandi,LGD,22,133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,17,Block,Mandi,LGD,10,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +LGD,2429,Block,Mandirbazar,LGD,304,2429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,7308,Block,Mandir Hasoud,LGD,387,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,3643,Block,Mandla,LGD,415,3643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +LGD,524,Block,Mandrayal,LGD,108,524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,2565,Block,Mandro,LGD,340,2565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,3496,Block,Mandsaur,LGD,416,3496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,7005,Block,Mandsaur Nagar,LGD,416,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,2661,Block,Mandu,LGD,607,2661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +LGD,3729,Block,Mandvi,LGD,449,3729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,3935,Block,Mandvi,LGD,459,3935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,5550,Block,Mandya,LGD,544,5550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +LGD,3234,Block,Manendragarh,LGD,760,3234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,1398,Block,Maner,LGD,212,1398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,419,Block,Manesar,LGD,62,419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,7465,Block,Maneswar,LGD,371,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,6466,Block,Manethi St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,5055,Block,Mangalagiri,LGD,506,5055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,7178,Block,Mangalbarey,LGD,742,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +LGD,2148,Block,Mangaldoi (Pt),LGD,283,2148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +LGD,5561,Block,Mangaluru,LGD,534,5561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,4252,Block,Mangalvedhe,LGD,496,4252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,1548,Block,Mangan,LGD,226,1548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 +LGD,4181,Block,Mangaon,LGD,491,4181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,4686,Block,Mangapet,LGD,720,4686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,3474,Block,Mangawan,LGD,424,3474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,1828,Block,Mangko,LGD,765,1828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1764,Block,Mangkolemba,LGD,246,1764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,2278,Block,Mangolkote,LGD,306,2278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,670,Block,Mangrol,LGD,89,670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,3933,Block,Mangrol,LGD,459,3933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,3832,Block,Mangrol,LGD,448,3832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,3996,Block,Mangrulpir,LGD,499,3996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +LGD,1185,Block,Manigachhi,LGD,195,1185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,1156,Block,Manihari,LGD,201,1156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,2635,Block,Manika,LGD,335,2635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +LGD,2219,Block,Manikchak,LGD,316,2219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,5930,Block,Manikpur,LGD,136,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +LGD,7199,Block,Manikpur,LGD,281,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +LGD,6515,Block,Maninagar,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,6933,Block,Maniya,LGD,98,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,6772,Block,Manjakote,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,5932,Block,Manjeswaram,LGD,558,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +LGD,1225,Block,Manjha,LGD,197,1225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,886,Block,Manjhanpur,LGD,158,886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +LGD,2741,Block,Manjhari,LGD,343,2741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,1255,Block,Manjhi,LGD,218,1255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,2012,Block,Mankachar,LGD,707,2012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 +LGD,931,Block,Mankapur,LGD,147,931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +LGD,6779,Block,Mankote,LGD,10,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +LGD,5985,Block,Manmangalam,LGD,576,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +LGD,1673,Block,Manmao Eac,LGD,229,1673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,5808,Block,Mannargudi,LGD,590,5808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,5648,Block,Mannarkad,LGD,563,5648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +LGD,6273,Block,Manoharabad,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,2735,Block,Manoharpur,LGD,343,2735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,681,Block,Manohar Thana,LGD,105,681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,4451,Block,Manoor,LGD,691,4451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,4611,Block,Manopad,LGD,695,4611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,3258,Block,Manora,LGD,380,3258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,3998,Block,Manora,LGD,499,3998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +LGD,1494,Block,Manpur,LGD,196,1494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,3309,Block,Manpur,LGD,761,3309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,3484,Block,Manpur,LGD,436,3484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +LGD,249,Block,Mansa,LGD,37,249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +LGD,3774,Block,Mansa,LGD,446,3774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +LGD,1152,Block,Mansahi,LGD,201,1152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,1324,Block,Mansi,LGD,202,1324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +LGD,1309,Block,Mansurchak,LGD,191,1309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,2285,Block,Manteswar,LGD,306,2285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,4132,Block,Mantha,LGD,479,4132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,4401,Block,Manthani,LGD,682,4401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,5250,Block,Mantralayam,LGD,511,5250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5183,Block,Manubolu,LGD,515,5183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,4727,Block,Manuguru,LGD,690,4727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,6647,Block,Manur,LGD,592,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,5462,Block,Manvi,LGD,546,5462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,4119,Block,Manwath,LGD,489,4119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,6650,Block,Marakanam,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,1108,Block,Marauna,LGD,223,1108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,7319,Block,Mardapal,LGD,643,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +LGD,4884,Block,Maredumilli,LGD,791,4884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4092,Block,Maregaon,LGD,500,4092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,2062,Block,Margherita,LGD,302,2062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +LGD,2551,Block,Margo Munda,LGD,324,2551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,6715,Block,Marh,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,1260,Block,Marhaura,LGD,218,1260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,6731,Block,Marheen,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,985,Block,Mariahu,LGD,152,985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +LGD,2081,Block,Mariani,LGD,290,2081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +LGD,2029,Block,Marigaon,LGD,296,2029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +LGD,1002,Block,Marihan,LGD,170,1002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +LGD,6263,Block,Marikal,LGD,721,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,4720,Block,Maripeda,LGD,688,4720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,1666,Block,Mariyang Adc,LGD,240,1666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,2531,Block,Markacho,LGD,334,2531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +LGD,5115,Block,Markapuram,LGD,790,5115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6282,Block,Markook,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,6751,Block,Marmat,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,6554,Block,Maro Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,4512,Block,Marpalle,LGD,698,4512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,4500,Block,Marredpally,LGD,507,4500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,7297,Block,Marri Bangla(Deori),LGD,646,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +LGD,4649,Block,Marriguda,LGD,514,4649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,5163,Block,Marripadu,LGD,515,5163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5129,Block,Marripudi,LGD,517,5129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,2932,Block,Marsaghai,LGD,360,2932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,6165,Block,Martinganjon,LGD,123,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,5106,Block,Martur,LGD,750,5106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5954,Block,Marungapuri,LGD,591,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,69,Block,Marwah,LGD,620,69,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,3288,Block,Marwahi,LGD,734,3288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 +LGD,1203,Block,Marwan,LGD,208,1203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,602,Block,Marwar Junction,LGD,111,602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,7190,Block,Masaipet,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,2675,Block,Masalia,LGD,326,2675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,6379,Block,Masalpur,LGD,108,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,1408,Block,Masaurhi,LGD,212,1408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,1248,Block,Mashrakh,LGD,218,1248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,7101,Block,Maski,LGD,546,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,3296,Block,Masturi,LGD,375,3296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,610,Block,Masuda,LGD,774,610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,762,Block,Mat,LGD,167,762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +LGD,3875,Block,Matar,LGD,450,3875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,410,Block,Matenhail,LGD,64,410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +LGD,2181,Block,Mathabhanga - I,LGD,308,2181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,2182,Block,Mathabhanga-II,LGD,308,2182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,5701,Block,Mathavaram,LGD,568,5701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,3221,Block,Mathili,LGD,364,3221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +LGD,764,Block,Mathura,LGD,167,764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +LGD,2430,Block,Mathurapur - I,LGD,304,2430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2436,Block,Mathurapur - II,LGD,304,2436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2015,Block,Matia,LGD,287,2015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +LGD,7581,Block,Matiala,LGD,84,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +LGD,2168,Block,Matiali,LGD,314,2168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,2162,Block,Matigara,LGD,309,2162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,1320,Block,Matihani,LGD,191,1320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,6412,Block,Matlauda,LGD,71,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +LGD,4670,Block,Mattampally,LGD,696,4670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,876,Block,Mau,LGD,136,876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +LGD,7000,Block,Mau,LGD,395,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,4029,Block,Mauda,LGD,484,4029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,867,Block,Maudaha,LGD,149,867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +LGD,3477,Block,Mauganj,LGD,766,3477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,7222,Block,Maulasar,LGD,768,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,973,Block,Maunath Bhanjan,LGD,168,973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +LGD,6858,Block,Maur,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +LGD,859,Block,Mauranipur,LGD,153,859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +LGD,543,Block,Mauzamabad,LGD,102,543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,6222,Block,Mavala,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,5678,Block,Mavelikkara,LGD,554,5678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +LGD,685,Block,Mavli,LGD,117,685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,4191,Block,Mawal,LGD,490,4191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,733,Block,Mawana,LGD,169,733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +LGD,7456,Block,Mawhati,LGD,276,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +LGD,1991,Block,Mawkynrew,LGD,274,1991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,1984,Block,Mawkyrwat,LGD,658,1984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 +LGD,6540,Block,Mawlai,LGD,274,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,6541,Block,Mawpat,LGD,274,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,1988,Block,Mawphlang,LGD,274,1988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,1990,Block,Mawryngkneng,LGD,274,1990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,1979,Block,Mawshynrut,LGD,279,1979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 +LGD,1993,Block,Mawsynram,LGD,274,1993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,1981,Block,Mawthadraishan,LGD,740,1981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 +LGD,5920,Block,Mayabunder,LGD,632,5920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +LGD,5796,Block,Mayiladuthurai,LGD,735,5796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +LGD,2177,Block,Maynaguri,LGD,314,2177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,2026,Block,Mayong,LGD,296,2026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +LGD,2255,Block,Mayureswar - I,LGD,307,2255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2256,Block,Mayureswar - II,LGD,307,2256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2521,Block,Mayur Hand,LGD,323,2521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,2153,Block,Mazbat,LGD,617,2153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +LGD,6369,Block,Mdawara,LGD,161,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +LGD,1656,Block,Mebo Adc,LGD,232,1656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +LGD,1622,Block,Mechuka Adc,LGD,725,1622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 +LGD,4456,Block,Medak,LGD,513,4456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,4519,Block,Medchal,LGD,700,4519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,5073,Block,Medikonduru,LGD,506,5073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,2633,Block,Medininagar(Daltonganj),LGD,338,2633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,4415,Block,Medipalli,LGD,681,4415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,6318,Block,Medipally,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,1799,Block,Medziphema,LGD,758,1799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,5668,Block,Meenachil,LGD,560,5668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +LGD,785,Block,Meerganj,LGD,130,785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +LGD,734,Block,Meerut,LGD,169,734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +LGD,3708,Block,Meghnagar,LGD,412,3708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +LGD,3765,Block,Meghraj,LGD,672,3765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,7409,Block,Mehal Kalan,LGD,605,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +LGD,6894,Block,Mehatpur,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,941,Block,Mehdawal,LGD,178,941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +LGD,2555,Block,Meherma,LGD,330,2555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,3393,Block,Mehgaon,LGD,395,3393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,3982,Block,Mehkar,LGD,472,3982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,3873,Block,Mehmedabad,LGD,450,3873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,970,Block,Mehnagar,LGD,123,970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,6080,Block,Mehrauli,LGD,83,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +LGD,1057,Block,Mehsi,LGD,213,1057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,894,Block,Meja,LGD,120,894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,2357,Block,Mejhia,LGD,305,2357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,2180,Block,Mekliganj,LGD,308,2180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,4774,Block,Meliaputti,LGD,519,4774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,4671,Block,Mellachervu,LGD,696,4671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,6652,Block,Melmalaiyanur,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,5835,Block,Melur,LGD,578,5835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,1803,Block,Meluri,LGD,788,1803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,2291,Block,Memari - I,LGD,306,2291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2292,Block,Memari - II,LGD,306,2292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,3830,Block,Mendarda,LGD,448,3830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,18,Block,Mendhar,LGD,10,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +LGD,6237,Block,Mendora,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,1604,Block,Mengio Eac,LGD,237,1604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,4824,Block,Mentada,LGD,521,4824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,4822,Block,Merakamudidam,LGD,521,4822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,2508,Block,Meral (Pipra Kalan),LGD,328,2508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,1765,Block,Merangmen,LGD,246,1765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,562,Block,Merta,LGD,110,562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,1522,Block,Meskaur,LGD,210,1522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,1740,Block,Metengliang Circle,LGD,628,1740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,4417,Block,Metpalli,LGD,681,4417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,5895,Block,Mettupalayam,LGD,569,5895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,5736,Block,Mettur,LGD,584,5736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,4184,Block,Mhasla,LGD,491,4184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,1680,Block,Miao Adc,LGD,229,1680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,4566,Block,Midjil,LGD,512,4566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,2453,Block,Midnapore,LGD,318,2453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,5267,Block,Midthur,LGD,755,5267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1659,Block,Migging Circle,LGD,240,1659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,6862,Block,Mihinpurwa Motipur,LGD,125,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +LGD,3397,Block,Mihona,LGD,395,3397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,2030,Block,Mikirbheta,LGD,296,2030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +LGD,728,Block,Milak,LGD,176,728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +LGD,903,Block,Milkipur,LGD,140,903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +LGD,2333,Block,Minakhan,LGD,303,2333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,1205,Block,Minapur,LGD,208,1205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,5629,Block,Minicoy,LGD,553,5629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +LGD,1717,Block,Mipi,LGD,230,1717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 +LGD,4302,Block,Miraj,LGD,493,4302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,4464,Block,Mirdoddi,LGD,692,4464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,2160,Block,Mirik,LGD,309,2160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,4664,Block,Miryalaguda,LGD,514,4664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,1000,Block,Mirzapur,LGD,170,1000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +LGD,803,Block,Misrikh,LGD,183,803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +LGD,6875,Block,Mitauli,LGD,159,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +LGD,7152,Block,Mitrapura,LGD,113,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,6636,Block,Modakkurichi,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,1538,Block,Modanganj,LGD,199,1538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +LGD,3769,Block,Modasa,LGD,672,3769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,432,Block,Model Town,LGD,796,432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,738,Block,Modinagar,LGD,145,738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +LGD,233,Block,Moga,LGD,38,233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +LGD,4986,Block,Mogalthur,LGD,523,4986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,6278,Block,Mogudampally,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,4680,Block,Mogullapally,LGD,687,4680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,4038,Block,Mohadi,LGD,471,4038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +LGD,6750,Block,Mohalla,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,990,Block,Mohammadabad,LGD,146,990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +LGD,7187,Block,Mohammadabad,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,2257,Block,Mohammad Bazar,LGD,307,2257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2617,Block,Mohammad Ganj,LGD,338,2617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,7520,Block,Mohammadnagar,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,800,Block,Mohammdi,LGD,159,800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +LGD,3101,Block,Mohana,LGD,353,3101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +LGD,3419,Block,Mohangarh,LGD,434,3419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,1449,Block,Mohania,LGD,200,1449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,822,Block,Mohanlalganj,LGD,162,822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +LGD,1509,Block,Mohanpur,LGD,196,1509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,1293,Block,Mohanpur,LGD,217,1293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,6689,Block,Mohanpur,LGD,272,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +LGD,2546,Block,Mohanpur,LGD,324,2546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,2469,Block,Mohanpur,LGD,318,2469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,6635,Block,Mohanur,LGD,580,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,1294,Block,Mohiuddinagar,LGD,217,1294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,3655,Block,Mohkhed,LGD,399,3655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,3308,Block,Mohla,LGD,761,3308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,6435,Block,Mohna St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,4248,Block,Mohol,LGD,496,4248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,4528,Block,Moinabad,LGD,518,4528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,1875,Block,Moirang,LGD,252,1875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 +LGD,1420,Block,Mokameh,LGD,212,1420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,4161,Block,Mokhada,LGD,665,4161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,5503,Block,Molakalmuru,LGD,533,5503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +LGD,3521,Block,Moman Badodiya,LGD,430,3521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +LGD,4513,Block,Mominpet,LGD,698,4513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,1623,Block,Monigong Eac,LGD,725,1623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 +LGD,1748,Block,Mon Sadar,LGD,247,1748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,1757,Block,Monyakshu,LGD,247,1757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,7102,Block,Moodubidire,LGD,534,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,274,Block,Moonak,LGD,43,274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +LGD,6260,Block,Moosapet,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,5036,Block,Mopidevi,LGD,510,5036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,1667,Block,Mopom Adipasi Circle,LGD,240,1667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,1755,Block,Mopong,LGD,247,1755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,2878,Block,Morada,LGD,365,2878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,719,Block,Moradabad,LGD,171,719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +LGD,2067,Block,Moran,LGD,286,2067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +LGD,196,Block,Morang,LGD,19,196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +LGD,2086,Block,Morangi,LGD,288,2086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +LGD,7038,Block,Morar,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,7443,Block,Morbi City,LGD,673,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +LGD,6498,Block,Moreh,LGD,716,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11 +LGD,3387,Block,Morena,LGD,417,3387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,7047,Block,Morena Nagar,LGD,417,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,279,Block,Mori,LGD,57,279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,6857,Block,Morinda,LGD,42,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +LGD,5615,Block,Mormugao,LGD,552,5615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +LGD,6461,Block,Morni St,LGD,70,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +LGD,4006,Block,Morshi,LGD,468,4006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,4362,Block,Morthad,LGD,516,4362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,3799,Block,Morvi,LGD,673,3799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +LGD,1291,Block,Morwa,LGD,217,1291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,3884,Block,Morwa (Hadaf),LGD,454,3884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,6668,Block,Mosara,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,6309,Block,Motakonduru,LGD,697,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,3980,Block,Motala,LGD,472,3980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,856,Block,Moth,LGD,153,856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +LGD,4640,Block,Mothey,LGD,696,4640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,4625,Block,Mothkur,LGD,697,4625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,1041,Block,Motihari,LGD,213,1041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,3230,Block,Motu,LGD,364,3230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +LGD,6734,Block,Moungri,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,5032,Block,Movva,LGD,510,5032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,2476,Block,Moyna,LGD,317,2476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,6504,Block,Mualnuam,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,7099,Block,Mudalgi,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,5216,Block,Muddanur,LGD,504,5216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,5453,Block,Muddebihal,LGD,530,5453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,5445,Block,Mudhol,LGD,524,5445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,4341,Block,Mudhole,LGD,680,4341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,5531,Block,Mudigere,LGD,532,5531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,4758,Block,Mudigonda,LGD,509,4758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,5339,Block,Mudigubba,LGD,754,5339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5020,Block,Mudinepalle,LGD,748,5020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4101,Block,Mudkhed,LGD,485,4101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,6671,Block,Muduchinthalapally,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,5857,Block,Mudukulathur,LGD,583,5857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,6764,Block,Mugal Maidan,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,6235,Block,Mugpal,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,974,Block,Muhammadabad Gohna,LGD,168,974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +LGD,1492,Block,Muhra,LGD,196,1492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,7300,Block,Mukdega,LGD,386,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,215,Block,Mukerian,LGD,33,215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +LGD,4109,Block,Mukhed,LGD,485,4109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,3963,Block,Muktainagar (Edlabad),LGD,478,3963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,1563,Block,Mukto Circle,LGD,238,1563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,5656,Block,Mukundapuram,LGD,566,5656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +LGD,4072,Block,Mul,LGD,473,4072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,6839,Block,Mulagada,LGD,520,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,5367,Block,Mulakalacheruvu,LGD,753,5367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6430,Block,Mulana St,LGD,58,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +LGD,5594,Block,Mulbagal,LGD,542,5594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +LGD,4059,Block,Mulchera,LGD,475,4059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,3793,Block,Muli,LGD,460,3793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,4748,Block,Mulkalapally,LGD,690,4748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,7198,Block,Mulki,LGD,534,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,4192,Block,Mulshi,LGD,490,4192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,3604,Block,Multai,LGD,394,3604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,113,Block,Multhan,LGD,18,113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,4486,Block,Mulug,LGD,692,4486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,4689,Block,Mulug,LGD,720,4689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,4932,Block,Mummidivaram,LGD,747,4932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4642,Block,Munagala,LGD,696,4642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,4877,Block,Munagapaka,LGD,744,4877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4841,Block,Munchingi Puttu,LGD,745,4841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5472,Block,Mundargi,LGD,537,5472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +LGD,494,Block,Mundawar,LGD,770,494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5482,Block,Mundgod,LGD,550,5482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,7411,Block,Mundi,LGD,405,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,7583,Block,Mundka,LGD,794,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,5113,Block,Mundlamuru,LGD,517,5113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,3730,Block,Mundra,LGD,449,3730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,6378,Block,Mundwa,LGD,110,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,3688,Block,Mungaoli,LGD,391,3688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,3292,Block,Mungeli,LGD,647,3292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +LGD,1356,Block,Munger,LGD,207,1356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,3173,Block,Muniguda,LGD,370,3173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,4477,Block,Munipally,LGD,691,4477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,315,Block,Munsiari,LGD,53,315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,4647,Block,Munugode,LGD,514,4647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,6238,Block,Mupkal,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,5068,Block,Muppalla,LGD,751,5068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2249,Block,Murarai - I,LGD,307,2249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2250,Block,Murarai - II,LGD,307,2250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,4171,Block,Murbad,LGD,497,4171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +LGD,2703,Block,Murhu,LGD,606,2703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 +LGD,7454,Block,Muribahal,LGD,345,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,1164,Block,Murliganj,LGD,205,1164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,2237,Block,Murshidabad Jiaganj,LGD,319,2237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,3992,Block,Murtijapur,LGD,467,3992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +LGD,4178,Block,Murud,LGD,491,4178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,3620,Block,Murwara Or Katni,LGD,413,3620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,2609,Block,Musabani,LGD,327,2609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,912,Block,Musafirkhana,LGD,640,912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +LGD,1212,Block,Musahri,LGD,208,1212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,4501,Block,Musheerabad,LGD,507,4501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,5774,Block,Musiri,LGD,591,5774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,7393,Block,Mussoorie,LGD,49,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,4434,Block,Mustabad,LGD,683,4434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,5002,Block,Musunuru,LGD,748,5002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4404,Block,Mutharam Mahadevpur,LGD,687,4404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,4406,Block,Mutharam (Manthani),LGD,682,4406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,5181,Block,Muthukur,LGD,515,5181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,7408,Block,Muthupettai,LGD,590,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,5662,Block,Muvattupuzha,LGD,555,5662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +LGD,708,Block,Muzaffarnagar,LGD,172,708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +LGD,7170,Block,Mylapore,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,4995,Block,Mylavaram,LGD,749,4995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5200,Block,Mylavaram,LGD,504,5200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,1989,Block,Mylliem,LGD,274,1989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,5572,Block,Mysuru,LGD,545,5572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,2307,Block,Nabadwip,LGD,320,2307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,2238,Block,Nabagram,LGD,319,2238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,3196,Block,Nabarangapur P.S,LGD,366,3196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,252,Block,Nabha,LGD,41,252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +LGD,1483,Block,Nabinagar,LGD,189,1483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,1609,Block,Nacho Sdo,LGD,241,1609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,141,Block,Nadaun,LGD,17,141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,509,Block,Nadbai,LGD,91,509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,5069,Block,Nadendla,LGD,751,5069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3876,Block,Nadiad,LGD,450,3876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,6531,Block,Nadiad City,LGD,450,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,4641,Block,Nadigudem,LGD,696,4641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,6547,Block,Nadikuda,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,521,Block,Nadoti,LGD,108,521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,7416,Block,Naduar,LGD,301,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +LGD,2044,Block,Na-Duar,LGD,705,2044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +LGD,1568,Block,Nafra Adc,LGD,787,1568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,5403,Block,Nagalapuram,LGD,752,5403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6280,Block,Nagalgidda,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,5547,Block,Nagamangala,LGD,544,5547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +LGD,2035,Block,Nagaon,LGD,297,2035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +LGD,5799,Block,Nagapattinam,LGD,579,5799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +LGD,4209,Block,Nagar,LGD,466,4209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,507,Block,Nagar,LGD,767,507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5095,Block,Nagaram,LGD,750,5095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6298,Block,Nagaram,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,2123,Block,Nagarbera,LGD,291,2123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,7155,Block,Nagarfort,LGD,116,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,5406,Block,Nagari,LGD,503,5406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,4583,Block,Nagarkurnool,LGD,694,4583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,1379,Block,Nagar Nausa,LGD,209,1379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,2503,Block,Nagaruntari,LGD,328,2503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,560,Block,Nagaur,LGD,110,560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,5038,Block,Nagayalanka,LGD,510,5038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,4066,Block,Nagbhid,LGD,473,4066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,3509,Block,Nagda,LGD,435,3509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,714,Block,Nagina,LGD,132,714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +LGD,6477,Block,Nagina St,LGD,604,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +LGD,1744,Block,Naginimora,LGD,247,1744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,4387,Block,Nagireddypet,LGD,685,4387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,3464,Block,Nagod,LGD,426,3464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,4031,Block,Nagpur (Rural),LGD,484,4031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,4032,Block,Nagpur (Urban),LGD,484,4032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,1259,Block,Nagra,LGD,218,1259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,2169,Block,Nagrakata,LGD,314,2169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,2692,Block,Nagri,LGD,339,2692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,3347,Block,Nagri,LGD,377,3347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +LGD,6727,Block,Nagri Parole,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,6711,Block,Nagrota,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,101,Block,Nagrota Bagwan,LGD,18,101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,6895,Block,Nagrota Surian,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,6768,Block,Nagseni,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,5126,Block,Naguluppala Padu,LGD,517,5126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,172,Block,Nahan,LGD,24,172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,2069,Block,Naharkatiya,LGD,286,2069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +LGD,1596,Block,Naharlagun Eac,LGD,237,1596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,6465,Block,Nahar St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,5194,Block,Naidupet,LGD,752,5194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4106,Block,Naigaon (Khairgaon),LGD,485,4106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,3478,Block,Naigarhi,LGD,766,3478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,155,Block,Naina Devi,LGD,15,155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +LGD,6337,Block,Nainbag,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,340,Block,Nainital,LGD,51,340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,3646,Block,Nainpur,LGD,415,3646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +LGD,623,Block,Nainwa,LGD,94,623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +LGD,6973,Block,Nai Sarai,LGD,391,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,451,Block,Najafgarh,LGD,84,451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +LGD,712,Block,Najibabad,LGD,132,712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +LGD,2304,Block,Nakashipara,LGD,320,2304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,3727,Block,Nakhatrana,LGD,449,3727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,4880,Block,Nakkapalli,LGD,744,4880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,210,Block,Nakodar,LGD,34,210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +LGD,4636,Block,Nakrekal,LGD,514,4636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,2798,Block,Naktideul,LGD,371,2798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,703,Block,Nakur,LGD,177,703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +LGD,2679,Block,Nala,LGD,333,2679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +LGD,161,Block,Nalagarh,LGD,25,161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,2136,Block,Nalbari,LGD,298,2136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +LGD,4646,Block,Nalgonda,LGD,514,4646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,2251,Block,Nalhati - I,LGD,307,2251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2252,Block,Nalhati - II,LGD,307,2252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,3516,Block,Nalkheda,LGD,667,3516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +LGD,4692,Block,Nallabelli,LGD,522,4692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,5359,Block,Nallachervu,LGD,754,5359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4956,Block,Nallajerla,LGD,505,4956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,5344,Block,Nallamada,LGD,754,5344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6623,Block,Nallampalli,LGD,571,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +LGD,5747,Block,Namakkal,LGD,580,5747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,6638,Block,Nambiyur,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,1873,Block,Nambol,LGD,252,1873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 +LGD,5341,Block,Nambulapulakunta,LGD,754,5341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1551,Block,Namchi,LGD,227,1551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +LGD,7335,Block,Namdong,LGD,275,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 +LGD,157,Block,Namhol,LGD,15,157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +LGD,2439,Block,Namkhana,LGD,304,2439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2690,Block,Namkum,LGD,339,2690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,4654,Block,Nampally,LGD,514,4654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4504,Block,Nampally,LGD,507,4504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,1676,Block,Nampong Sdo,LGD,229,1676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,1732,Block,Namsai Hq,LGD,678,1732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 +LGD,1831,Block,Namsang,LGD,615,1831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +LGD,6115,Block,Namsing Circle,LGD,232,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +LGD,7542,Block,Namthang,LGD,227,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +LGD,6580,Block,Namtok Eac,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,6364,Block,Nanakmatta,LGD,56,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,7547,Block,Nanapodha,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,5917,Block,Nancowry,LGD,603,5917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 +LGD,7481,Block,Nandahandi,LGD,366,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,2474,Block,Nanda Kumar,LGD,317,2474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,5243,Block,Nandalur,LGD,504,5243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,3214,Block,Nandapur,LGD,363,3214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,5255,Block,Nandavaram,LGD,511,5255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,4100,Block,Nanded,LGD,485,4100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,4147,Block,Nandgaon,LGD,487,4147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,4012,Block,Nandgaon-Khandeshwar,LGD,468,4012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,7248,Block,Nandghat,LGD,650,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,4782,Block,Nandigam,LGD,519,4782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,6321,Block,Nandigama,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,4993,Block,Nandigama,LGD,749,4993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2484,Block,Nandigram - I,LGD,317,2484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2485,Block,Nandigram - II,LGD,317,2485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,5260,Block,Nandikotkur,LGD,755,5260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4359,Block,Nandipet,LGD,516,4359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,5014,Block,Nandivada,LGD,510,5014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,3910,Block,Nandod,LGD,452,3910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +LGD,6344,Block,Nandprayag,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,3978,Block,Nandura,LGD,472,3978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,3954,Block,Nandurbar,LGD,486,3954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +LGD,5284,Block,Nandyal Rural,LGD,755,5284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7425,Block,Nandyal Urban,LGD,755,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,263,Block,Nangal,LGD,42,263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +LGD,6456,Block,Nangal Chawdhary,LGD,69,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +LGD,6053,Block,Nangal Rajawatan,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,7595,Block,Nangloi Jat,LGD,82,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 +LGD,4461,Block,Nangnoor,LGD,692,4461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,5879,Block,Nanguneri,LGD,592,5879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,7313,Block,Nangur,LGD,374,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,5574,Block,Nanjangud,LGD,545,5574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,178,Block,Nankhari,LGD,23,178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,5805,Block,Nannilam,LGD,590,5805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,2263,Block,Nanoor,LGD,307,2263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,919,Block,Nanpara,LGD,125,919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +LGD,1078,Block,Nanpur,LGD,221,1078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,2050,Block,Naobaicha,LGD,295,2050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +LGD,1315,Block,Naokothi,LGD,191,1315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,6954,Block,Narag,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,358,Block,Naraingarh,LGD,58,358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +LGD,874,Block,Naraini,LGD,128,874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +LGD,3161,Block,Narala,LGD,358,3161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,4799,Block,Narasannapeta,LGD,519,4799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,4987,Block,Narasapuram,LGD,523,4987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,5067,Block,Narasaraopet,LGD,751,5067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5527,Block,Narasimharajapura,LGD,532,5527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,6670,Block,Narayanaraopet,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,5400,Block,Narayanavanam,LGD,752,5400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6333,Block,Narayanbagar,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,3642,Block,Narayanganj,LGD,415,3642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +LGD,2465,Block,Narayangarh,LGD,318,2465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,4452,Block,Narayankhed,LGD,691,4452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,3204,Block,Narayanpatana,LGD,363,3204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,4570,Block,Narayanpet,LGD,721,4570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,2048,Block,Narayanpur,LGD,295,2048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +LGD,2676,Block,Narayanpur,LGD,333,2676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +LGD,1329,Block,Narayanpur,LGD,192,1329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,3367,Block,Narayanpur,LGD,637,3367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 +LGD,6936,Block,Narayanpur,LGD,782,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,4648,Block,Narayanpur,LGD,697,4648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,6813,Block,Narbal,LGD,2,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +LGD,1511,Block,Nardiganj,LGD,210,1511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,430,Block,Narela,LGD,794,430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,299,Block,Narendra Nagar,LGD,55,299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,5468,Block,Nargund,LGD,537,5468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +LGD,3352,Block,Narharpur,LGD,381,3352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,1521,Block,Narhat,LGD,210,1521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,1651,Block,Nari Adc,LGD,719,1651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,1036,Block,Narkatia,LGD,213,1036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1017,Block,Narkatiaganj,LGD,211,1017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,4634,Block,Narketpally,LGD,514,4634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4023,Block,Narkhed,LGD,484,4023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,4675,Block,Narmetta,LGD,689,4675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,412,Block,Narnaul,LGD,69,412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +LGD,395,Block,Narnaund,LGD,792,395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +LGD,4312,Block,Narnoor,LGD,501,4312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,5328,Block,Narpala,LGD,502,5328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,1112,Block,Narpatganj,LGD,188,1112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,4708,Block,Narsampet,LGD,522,4708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,6352,Block,Narsan,LGD,50,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +LGD,4488,Block,Narsapur,LGD,513,4488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,6208,Block,Narsapur G,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,3636,Block,Narsimhapur,LGD,418,3636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +LGD,4719,Block,Narsimhulapet,LGD,688,4719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,3568,Block,Narsinghgarh,LGD,422,3568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,2944,Block,Narsinghpur,LGD,350,2944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,6272,Block,Narsingi,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,4854,Block,Narsipatnam,LGD,744,4854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4588,Block,Narwa,LGD,721,4588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,6163,Block,Narwal,LGD,157,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +LGD,382,Block,Narwana,LGD,65,382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +LGD,3409,Block,Narwar,LGD,432,3409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,7202,Block,Narwav,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,4152,Block,Nashik,LGD,487,4152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,611,Block,Nasirabad,LGD,86,611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,6226,Block,Naspur,LGD,684,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,1463,Block,Nasriganj,LGD,215,1463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,6244,Block,Nasurullabad,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,3903,Block,Nasvadi,LGD,668,3903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +LGD,3575,Block,Nateran,LGD,437,3575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,5763,Block,Natham,LGD,572,5763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,4852,Block,Nathavaram,LGD,744,4852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,645,Block,Nathdwara,LGD,112,645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,1339,Block,Nathnagar,LGD,192,1339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,6470,Block,Nathusari Chopta,LGD,74,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +LGD,5963,Block,Natrampalli,LGD,732,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +LGD,1404,Block,Naubatpur,LGD,212,1404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,1332,Block,Naugachhia,LGD,192,1332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,7129,Block,Nauganwa,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,2942,Block,Naugaon,LGD,355,2942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,933,Block,Naugarh,LGD,182,933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +LGD,6870,Block,Naugarh,LGD,135,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +LGD,6831,Block,Naugawan Sadat,LGD,154,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +LGD,1469,Block,Nauhatta,LGD,215,1469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,1171,Block,Nauhatta,LGD,216,1171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,1030,Block,Nautan,LGD,211,1030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,1229,Block,Nautan,LGD,222,1229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,944,Block,Nautanwa,LGD,164,944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +LGD,5474,Block,Navalgund,LGD,536,5474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +LGD,4358,Block,Navipet,LGD,516,4358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,3922,Block,Navsari,LGD,453,3922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +LGD,566,Block,Nawa,LGD,768,566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,2625,Block,Nawa Bazar,LGD,338,2625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,788,Block,Nawabganj,LGD,130,788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +LGD,898,Block,Nawabganj,LGD,129,898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +LGD,4556,Block,Nawabpet,LGD,512,4556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,4514,Block,Nawabpet,LGD,698,4514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,1512,Block,Nawada,LGD,210,1512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,2588,Block,Nawadih,LGD,322,2588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,2621,Block,Nawadiha Bazar/Nawadiha*,LGD,338,2621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,3311,Block,Nawagarh,LGD,650,3311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,3280,Block,Nawagarh,LGD,379,3280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,491,Block,Nawalgarh,LGD,106,491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,1445,Block,Nawanagar,LGD,194,1445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,218,Block,Nawanshahr,LGD,40,218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +LGD,3955,Block,Nawapur,LGD,486,3955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +LGD,2243,Block,Nawda,LGD,319,2243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2163,Block,Naxalbari,LGD,309,2163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,7267,Block,Naya Baradwar,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,7157,Block,Nayagaon,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,3028,Block,Nayagarh,LGD,367,3028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,2458,Block,Nayagram,LGD,703,2458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,2073,Block,Nazira,LGD,300,2073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +LGD,7153,Block,Nechhwa,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,5690,Block,Nedumangad,LGD,565,5690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +LGD,5807,Block,Needamangalam,LGD,590,5807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,1491,Block,Neem Chak Bathani,LGD,196,1491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,556,Block,Neem Ka Thana,LGD,114,556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,6380,Block,Neemrana,LGD,782,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3489,Block,Neemuch,LGD,419,3489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +LGD,7035,Block,Neemuch Nagar,LGD,419,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +LGD,5060,Block,Nekarikallu,LGD,751,5060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4713,Block,Nekkonda,LGD,522,4713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,4759,Block,Nelakondapalli,LGD,509,4759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,5601,Block,Nelamangala,LGD,526,5601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +LGD,4716,Block,Nellikudur,LGD,688,4716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,4837,Block,Nellimarla,LGD,521,4837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,5177,Block,Nellore Rural,LGD,515,5177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,7182,Block,Nellore Urban,LGD,515,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,6664,Block,Nemili,LGD,731,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +LGD,4331,Block,Nennel,LGD,684,4331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,3721,Block,Nepanagar,LGD,397,3721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +LGD,4079,Block,Ner,LGD,500,4079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,4325,Block,Neradigonda,LGD,501,4325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,4665,Block,Nereducherla,LGD,696,4665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,6308,Block,Neredugommu,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,187,Block,Nerwa,LGD,23,187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,6170,Block,Netrang,LGD,442,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,2383,Block,Neturia,LGD,321,2383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,4206,Block,Nevasa,LGD,466,4206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,7593,Block,New Delhi,LGD,79,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11 +LGD,6575,Block,New Seren Circle,LGD,719,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,5692,Block,Neyyattinkara,LGD,565,5692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +LGD,1906,Block,Ngopa,LGD,727,1906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +LGD,1818,Block,Ngoungchung,LGD,249,1818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +LGD,2967,Block,Niali,LGD,350,2967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,198,Block,Nichar,LGD,19,198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +LGD,945,Block,Nichlaul,LGD,164,945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +LGD,4960,Block,Nidadavole,LGD,505,4960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,7075,Block,Nidagundi,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,4968,Block,Nidamarru,LGD,748,4968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4661,Block,Nidmanoor,LGD,514,4661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,6451,Block,Nigdu St,LGD,67,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,797,Block,Nighasan,LGD,159,797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +LGD,231,Block,Nihal Singhwala,LGD,38,231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +LGD,1795,Block,Nihokhu,LGD,764,1795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,138,Block,Nihri,LGD,22,138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,6587,Block,Nikte Kodum Circle,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,2903,Block,Nilagiri,LGD,346,2903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,5767,Block,Nilakkottai,LGD,572,5767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,2632,Block,Nilambar-Pitambarpur(Lesliganj),LGD,338,2632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,2103,Block,Nilambazar,LGD,293,2103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +LGD,5642,Block,Nilambur,LGD,562,5642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +LGD,4233,Block,Nilanga,LGD,481,4233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,6552,Block,Nilling Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,370,Block,Nilokheri,LGD,67,370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,3058,Block,Nimapada,LGD,369,3058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,663,Block,Nimbahera,LGD,95,663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,2751,Block,Nimdih,LGD,341,2751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,5393,Block,Nimmanapalle,LGD,753,5393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5404,Block,Nindra,LGD,503,5404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,4155,Block,Niphad,LGD,487,4155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,7105,Block,Nippani,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,7211,Block,Nirjharna,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,1101,Block,Nirmali,LGD,223,1101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,6210,Block,Nirmal Rural,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,4344,Block,Nirmal U,LGD,680,4344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,122,Block,Nirmand,LGD,20,122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,2587,Block,Nirsa-Cum-Chirkunda,LGD,325,2587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,2958,Block,Nischintakoili,LGD,350,2958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,6450,Block,Nising St,LGD,67,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +LGD,6886,Block,Nither,LGD,20,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,1792,Block,Niuland,LGD,764,1792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,617,Block,Niwai,LGD,116,617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,3560,Block,Niwali,LGD,393,3560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,3415,Block,Niwari,LGD,722,3415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +LGD,3641,Block,Niwas,LGD,415,3641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +LGD,967,Block,Nizamabad,LGD,123,967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,4368,Block,Nizamabad North,LGD,516,4368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,6233,Block,Nizamabad Rural,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,6385,Block,Nizamabad South,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,5094,Block,Nizampatnam,LGD,750,5094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6271,Block,Nizampet,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,7535,Block,Nizampet (28),LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,4385,Block,Nizamsagar,LGD,685,4385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,3942,Block,Nizar,LGD,641,3942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,2736,Block,Noamundi,LGD,343,2736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,471,Block,Nohar,LGD,101,471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,168,Block,Nohra,LGD,24,168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,1466,Block,Nokha,LGD,215,1466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,477,Block,Nokha,LGD,93,477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,7132,Block,Nokhra,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,1823,Block,Nokhu,LGD,736,1823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1821,Block,Noklak,LGD,736,1821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1814,Block,Noksen,LGD,249,1814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +LGD,1980,Block,Nongstoin,LGD,279,1980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 +LGD,1387,Block,Noorsarai,LGD,209,1387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,2126,Block,North Guwahati,LGD,291,2126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,2052,Block,North Lakhimpur,LGD,295,2052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +LGD,3427,Block,Nowgong,LGD,398,3427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,3486,Block,Nowrozabad,LGD,436,3486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +LGD,25,Block,Nowshera,LGD,12,25,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,1855,Block,Nsong,LGD,613,1855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +LGD,7504,Block,Nuagad,LGD,353,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +LGD,3025,Block,Nuagaon,LGD,367,3025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,1447,Block,Nuaon,LGD,200,1447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,3154,Block,Nuapada,LGD,368,3154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +LGD,422,Block,Nuh,LGD,604,422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +LGD,1867,Block,Nungba,LGD,714,1867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 +LGD,93,Block,Nurpur,LGD,18,93,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,4621,Block,Nuthanakal,LGD,696,4621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,5063,Block,Nuzendla,LGD,751,5063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5003,Block,Nuzividu,LGD,748,5003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4473,Block,Nyalkal,LGD,691,4473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,7076,Block,Nyamathi,LGD,535,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +LGD,1706,Block,Nyapin Adc,LGD,233,1706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,6844,Block,Nyobia Circle,LGD,233,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,7162,Block,Nyoma,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,1480,Block,Obra,LGD,189,1480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,7127,Block,Obra,LGD,184,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +LGD,7384,Block,Obri,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,5358,Block,Obuladevaracheruvu,LGD,754,5358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5248,Block,Obulavaripalle,LGD,752,5248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3031,Block,Odagaon,LGD,367,3031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,7503,Block,Odapada,LGD,352,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,5761,Block,Oddanchatram,LGD,572,5761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,4426,Block,Odela,LGD,682,4426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,3243,Block,Odgi,LGD,648,3243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,7557,Block,Ogad,LGD,441,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,6350,Block,Okhalkanda,LGD,51,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,3812,Block,Okhamandal,LGD,674,3812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +LGD,6107,Block,Old Ziro Sdo,LGD,236,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11 +LGD,3932,Block,Olpad,LGD,459,3932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,5737,Block,Omalur,LGD,584,5737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,4243,Block,Omarga,LGD,488,4243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,2370,Block,Onda,LGD,305,2370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,5139,Block,Ongole Rural,LGD,517,5139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,7430,Block,Ongole Urban,LGD,517,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,1766,Block,Ongpangkong,LGD,246,1766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,5989,Block,Ongpangkong (N),LGD,246,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,854,Block,Orai,LGD,151,854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +LGD,5815,Block,Orathanadu,LGD,586,5815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,3416,Block,Orchha,LGD,722,3416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +LGD,3368,Block,Orchha,LGD,637,3368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 +LGD,2685,Block,Ormanjhi,LGD,339,2685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,5268,Block,Orvakal,LGD,511,5268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,568,Block,Osian,LGD,107,568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,5865,Block,Ottapidaram,LGD,594,5865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,5647,Block,Ottappalam,LGD,563,5647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +LGD,5910,Block,Oulgaret,LGD,600,5910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +LGD,2905,Block,Oupada,LGD,346,2905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,5295,Block,Owk,LGD,755,5295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1654,Block,Oyan Circle,LGD,232,1654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +LGD,5189,Block,Ozili,LGD,752,5189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1218,Block,Pach Deuri,LGD,197,1218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,169,Block,Pachhad,LGD,24,169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,2133,Block,Pachim Nalbari,LGD,298,2133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +LGD,4818,Block,Pachipenta,LGD,743,4818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3973,Block,Pachora,LGD,478,3973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,3569,Block,Pachore,LGD,422,3569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,579,Block,Pachpadra,LGD,775,579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,682,Block,Pachpahar,LGD,105,682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,7349,Block,Pachpedi,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,1237,Block,Pachrukhi,LGD,222,1237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,2757,Block,Padampur,LGD,347,2757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,460,Block,Padampur,LGD,100,460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,6294,Block,Padara,LGD,694,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,3802,Block,Paddhari,LGD,457,3802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,4847,Block,Paderu,LGD,745,4847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,123,Block,Padhar,LGD,22,123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,2646,Block,Padma,LGD,332,2646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,4864,Block,Padmanabham,LGD,520,4864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,3185,Block,Padmapur,LGD,370,3185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,3906,Block,Padra,LGD,461,3906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,955,Block,Padrauna,LGD,160,955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +LGD,2627,Block,Padwa,LGD,338,2627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,5261,Block,Pagidyala,LGD,755,5261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,53,Block,Pahalgam,LGD,1,53,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,505,Block,Pahari,LGD,767,505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,1044,Block,Paharpur,LGD,213,1044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,6194,Block,Pahloo,LGD,622,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +LGD,2755,Block,Paikmal,LGD,347,2755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,6157,Block,Pailani,LGD,128,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +LGD,4141,Block,Paithan,LGD,469,4141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,6955,Block,Pajhota,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,5396,Block,Pakala,LGD,752,5396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2719,Block,Pakar Tanr,LGD,342,2719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,2576,Block,Pakaur,LGD,337,2576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +LGD,3354,Block,Pakhanjur,LGD,381,3354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,1581,Block,Pakke Kessang Eac,LGD,723,1581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 +LGD,6848,Block,Pakoti Circle,LGD,231,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,1515,Block,Pakribarawan,LGD,210,1515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,1052,Block,Pakri Dayal,LGD,213,1052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,2578,Block,Pakuria,LGD,337,2578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +LGD,1554,Block,Pakyong,LGD,741,1554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +LGD,4977,Block,Palacoderu,LGD,523,4977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,4988,Block,Palacole,LGD,523,4988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,6301,Block,Palakeedu,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,5649,Block,Palakkad,LGD,563,5649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +LGD,5885,Block,Palakkodu,LGD,571,5885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +LGD,4784,Block,Palakonda,LGD,743,4784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6215,Block,Palakurthy,LGD,682,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,4697,Block,Palakurthy,LGD,689,4697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,3000,Block,Palalahada,LGD,344,3000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,4123,Block,Palam,LGD,489,4123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,5422,Block,Palamaner,LGD,503,5422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,111,Block,Palampur,LGD,18,111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,5760,Block,Palani,LGD,572,5760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,3739,Block,Palanpur,LGD,441,3739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,7436,Block,Palanpur City,LGD,441,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,3327,Block,Palari,LGD,644,3327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,4775,Block,Palasa,LGD,519,4775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,5432,Block,Palasamudram,LGD,503,5432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,2125,Block,Palasbari,LGD,291,2125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,1119,Block,Palasi,LGD,188,1119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,5877,Block,Palayamkottai,LGD,592,5877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,7212,Block,Paldewal,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,3420,Block,Palera,LGD,434,3420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,4163,Block,Palghar,LGD,665,4163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,6418,Block,Palhawas St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,3274,Block,Pali,LGD,383,3274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,6881,Block,Pali,LGD,161,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +LGD,3485,Block,Pali,LGD,436,3485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +LGD,601,Block,Pali,LGD,111,601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,798,Block,Palia,LGD,159,798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +LGD,1407,Block,Paliganj,LGD,212,1407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,6250,Block,Palimela,LGD,687,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,1703,Block,Palin Circle,LGD,677,1703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +LGD,3858,Block,Palitana,LGD,443,3858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,2717,Block,Palkot,LGD,331,2717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,5905,Block,Palladam,LGD,634,5905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,6629,Block,Pallavaram,LGD,730,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,1660,Block,Palling Circle,LGD,240,1660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,5697,Block,Pallipattu,LGD,589,5697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,7213,Block,Pallu,LGD,101,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,2554,Block,Palojori,LGD,324,2554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,3939,Block,Palsana,LGD,459,3939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,4297,Block,Palus,LGD,493,4297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,4737,Block,Palvoncha,LGD,690,4737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,427,Block,Palwal,LGD,619,427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +LGD,7519,Block,Palwancha,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,5028,Block,Pamarru,LGD,510,5028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,3283,Block,Pamgarh,LGD,379,3283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,5315,Block,Pamidi,LGD,502,5315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5026,Block,Pamidimukkala,LGD,510,5026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,48,Block,Pampore,LGD,11,48,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,5266,Block,Pamulapadu,LGD,755,5266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5146,Block,Pamur,LGD,790,5146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3632,Block,Panagar,LGD,411,3632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,1249,Block,Panapur,LGD,218,1249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,6735,Block,Panchari,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,357,Block,Panchkula,LGD,70,357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +LGD,2405,Block,Panchla,LGD,313,2405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,6899,Block,Panchrukhi,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,2273,Block,Pandabeswar,LGD,704,2273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,1418,Block,Pandarak,LGD,212,1418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,3301,Block,Pandariya,LGD,382,3301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,1094,Block,Pandaul,LGD,206,1094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,5548,Block,Pandavapura,LGD,544,5548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +LGD,3718,Block,Pandhana,LGD,405,3718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,4249,Block,Pandharpur,LGD,496,4249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,3658,Block,Pandhurna,LGD,785,3658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,6869,Block,Pandit Deendayal Upadhyay Nagar,LGD,135,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +LGD,2622,Block,Pandu,LGD,338,2622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,2344,Block,Pandua,LGD,312,2344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,4601,Block,Pangal,LGD,693,4601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,1692,Block,Pangchao Sdo,LGD,666,1692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 +LGD,83,Block,Pangi,LGD,16,83,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,1645,Block,Pangin Eac,LGD,679,1645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,6951,Block,Pangna,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,4284,Block,Panhala,LGD,480,4284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,375,Block,Panipat,LGD,71,375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +LGD,6678,Block,Panisagar,LGD,270,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +LGD,6940,Block,Panjehra,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,6358,Block,Pankhu,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,2630,Block,Panki,LGD,338,2630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,3436,Block,Panna,LGD,420,3436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,7463,Block,Panposh,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,5788,Block,Panruti,LGD,570,5788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,3559,Block,Pansemal,LGD,393,3559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,2470,Block,Panskura,LGD,317,2470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,1824,Block,Panso,LGD,736,1824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,6804,Block,Pantha Chowk,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +LGD,5754,Block,Panthalur,LGD,587,5754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +LGD,4173,Block,Panvel,LGD,491,4173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,5280,Block,Panyam,LGD,755,5280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1859,Block,Paomata,LGD,257,1859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +LGD,173,Block,Paonta Sahib,LGD,24,173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,6924,Block,Paota,LGD,782,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5812,Block,Papanasam,LGD,586,5812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,4455,Block,Papannapet,LGD,513,4455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,3193,Block,Paparahandi,LGD,366,3193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,7367,Block,Paparda,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,5887,Block,Pappireddipatti,LGD,571,5887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +LGD,2380,Block,Para,LGD,321,2380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,1496,Block,Paraiya,LGD,196,1496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,2987,Block,Parajang,LGD,352,2987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +LGD,3105,Block,Paralakhemundi,LGD,353,3105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +LGD,5856,Block,Paramakudi,LGD,583,5856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,5748,Block,Paramathi-Velur,LGD,580,5748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,4236,Block,Paranda,LGD,488,4236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,1602,Block,Parang Circle,LGD,237,1602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,3652,Block,Parasia,LGD,399,3652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,3675,Block,Paraswada,LGD,392,3675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,4870,Block,Paravada,LGD,744,4870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5659,Block,Paravur,LGD,555,5659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +LGD,1389,Block,Parbalpur,LGD,209,1389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,564,Block,Parbatsar,LGD,768,564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,1328,Block,Parbatta,LGD,202,1328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +LGD,4118,Block,Parbhani,LGD,489,4118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,6841,Block,Parbuk Sdo,LGD,235,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +LGD,5108,Block,Parchur,LGD,750,5108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7601,Block,Pardi,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,4540,Block,Pargi,LGD,698,4540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,6705,Block,Pargwal,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,5355,Block,Parigi,LGD,754,5355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1067,Block,Parihar,LGD,221,1067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,4679,Block,Parkal,LGD,686,4679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,4224,Block,Parli,LGD,470,4224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,4211,Block,Parner,LGD,466,4211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,3970,Block,Parola,LGD,478,3970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,1201,Block,Paroo,LGD,208,1201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,1263,Block,Parsa,LGD,218,1263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,1071,Block,Parsauni,LGD,221,1071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,4027,Block,Parseoni,LGD,484,4027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,4131,Block,Partur,LGD,479,4131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +LGD,4714,Block,Parvathagiri,LGD,522,4714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,4812,Block,Parvathipuram,LGD,743,4812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7126,Block,Parwanoo,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,7237,Block,Pasan,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,6118,Block,Pasighat Hq,LGD,232,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +LGD,6846,Block,Passa Valley Circle,LGD,723,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 +LGD,1053,Block,Patahi,LGD,213,1053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,2604,Block,Patamda,LGD,327,2604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,2626,Block,Patan,LGD,338,2626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,4264,Block,Patan,LGD,494,4264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,3629,Block,Patan,LGD,411,3629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,7227,Block,Patan,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,3747,Block,Patan,LGD,455,3747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,3318,Block,Patan,LGD,378,3318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +LGD,2843,Block,Patana,LGD,361,2843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,4494,Block,Patancheru,LGD,691,4494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,7433,Block,Patan City,LGD,455,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,3835,Block,Patan-Veraval,LGD,675,3835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +LGD,1176,Block,Patarghat,LGD,216,1176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,416,Block,Pataudi,LGD,62,416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,448,Block,Patel Nagar,LGD,77,448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11 +LGD,1274,Block,Patepur,LGD,224,1274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,3455,Block,Patera,LGD,400,3455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,1269,Block,Paterhi Belsar,LGD,224,1269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,3262,Block,Pathalgaon,LGD,380,3262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,2523,Block,Pathalgora,LGD,323,2523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,5686,Block,Pathanapuram,LGD,559,5686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +LGD,201,Block,Pathankot,LGD,662,201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +LGD,4773,Block,Pathapatnam,LGD,519,4773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,4208,Block,Pathardi,LGD,466,4208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,2559,Block,Pathargama,LGD,330,2559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,6971,Block,Pathari,LGD,437,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,3457,Block,Patharia,LGD,400,3457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,3293,Block,Pathariya,LGD,647,3293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +LGD,2104,Block,Patharkandi,LGD,293,2104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +LGD,2440,Block,Patharpratima,LGD,304,2440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,2571,Block,Pathna,LGD,340,2571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,2146,Block,Pathorighat (Pt),LGD,283,2146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +LGD,4120,Block,Pathri,LGD,489,4120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,335,Block,Pati,LGD,48,335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +LGD,3555,Block,Pati,LGD,393,3555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,253,Block,Patiala,LGD,41,253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +LGD,1012,Block,Patiyali,LGD,633,1012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +LGD,7447,Block,Patliputra,LGD,212,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,7309,Block,Patna,LGD,384,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +LGD,7448,Block,Patna City,LGD,212,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,3144,Block,Patnagarh,LGD,345,3144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,1400,Block,Patna Rural,LGD,212,1400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,4216,Block,Patoda,LGD,470,4216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,7368,Block,Patodi,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,1292,Block,Patori,LGD,217,1292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,7585,Block,Patparganj,LGD,78,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 +LGD,251,Block,Patran,LGD,41,251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +LGD,7483,Block,Patrapur,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,2365,Block,Patrasayer,LGD,305,2365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,2660,Block,Patratu,LGD,607,2660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +LGD,1880,Block,Patsoi,LGD,256,1880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +LGD,5940,Block,Pattambi,LGD,563,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +LGD,2926,Block,Pattamundai,LGD,360,2926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,34,Block,Pattan,LGD,3,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,260,Block,Patti,LGD,609,260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +LGD,883,Block,Patti,LGD,174,883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +LGD,5290,Block,Pattikonda,LGD,511,5290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5816,Block,Pattukkottai,LGD,586,5816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,6140,Block,Patuk Adc,LGD,233,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,3993,Block,Patur,LGD,467,3993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +LGD,4042,Block,Pauni,LGD,471,4042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +LGD,307,Block,Pauri,LGD,52,307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,5534,Block,Pavagada,LGD,548,5534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,3440,Block,Pawai,LGD,420,3440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,6363,Block,Pawkidevi,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,6861,Block,Payagpur,LGD,125,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +LGD,4881,Block,Payakaraopeta,LGD,744,4881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,226,Block,Payal,LGD,36,226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +LGD,1612,Block,Payeng Circle,LGD,241,1612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,6607,Block,Payum Circle,LGD,679,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,6599,Block,Payyannur,LGD,557,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +LGD,5294,Block,Peapully,LGD,755,5294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4602,Block,Pebbair,LGD,693,4602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,4842,Block,Peda Bayalu,LGD,745,4842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5144,Block,Pedacherlo Palle,LGD,790,5144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4868,Block,Pedagantyada,LGD,520,4868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,5075,Block,Pedakakani,LGD,506,5075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,5057,Block,Pedakurapadu,LGD,751,5057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5030,Block,Pedana,LGD,510,5030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,5082,Block,Pedanandipadu,LGD,506,5082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,4965,Block,Pedapadu,LGD,748,4965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5022,Block,Pedaparupudi,LGD,510,5022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,4915,Block,Pedapudi,LGD,746,4915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4964,Block,Pedavegi,LGD,748,4964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4658,Block,Pedda Adesherlapally,LGD,514,4658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,5101,Block,Peddaaraveedu,LGD,790,5101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5253,Block,Pedda Kadubur,LGD,511,5253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,6245,Block,Pedda Kodapgal,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,4599,Block,Peddakothapally,LGD,694,4599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,4594,Block,Peddamandadi,LGD,693,4594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,5369,Block,Peddamandyam,LGD,753,5369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5201,Block,Peddamudiam,LGD,504,5201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4408,Block,Peddapalli,LGD,682,4408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,5416,Block,Peddapanjani,LGD,503,5416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5314,Block,Peddapappur,LGD,502,5314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,4903,Block,Peddapuram,LGD,746,4903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5390,Block,Pedda Thippasamudram,LGD,753,5390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5311,Block,Peddavaduguru,LGD,502,5311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,6256,Block,Peddavangara,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,4659,Block,Peddavoora,LGD,514,4659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4533,Block,Peddemul,LGD,698,4533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,1851,Block,Pedi (Ngwalwa),LGD,613,1851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +LGD,7051,Block,Pedong,LGD,702,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +LGD,697,Block,Peepalkhoont,LGD,629,697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +LGD,616,Block,Peeplu,LGD,116,616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,5667,Block,Peerumade,LGD,556,5667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +LGD,608,Block,Peesangan,LGD,86,608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,4421,Block,Pegadapalli,LGD,681,4421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,365,Block,Pehowa,LGD,68,365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +LGD,5195,Block,Pellakur,LGD,752,5195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6206,Block,Pembi,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,4176,Block,Pen,LGD,491,4176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,5244,Block,Penagalur,LGD,752,5244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5024,Block,Penamaluru,LGD,510,5024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,6313,Block,Penchicalpet,LGD,699,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,5232,Block,Pendlimarry,LGD,504,5232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,3289,Block,Pendra,LGD,734,3289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 +LGD,3287,Block,Pendra Road,LGD,734,3287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 +LGD,4862,Block,Pendurthi,LGD,520,4862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,5889,Block,Pennagaram,LGD,571,5889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +LGD,4643,Block,Penpahad,LGD,696,4643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,4969,Block,Pentapadu,LGD,523,4969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,6292,Block,Pentlavelli,LGD,694,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,4752,Block,Penuballi,LGD,509,4752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,4992,Block,Penuganchiprolu,LGD,749,4992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4980,Block,Penugonda,LGD,523,4980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,5356,Block,Penukonda,LGD,754,5356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4978,Block,Penumantra,LGD,523,4978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,5409,Block,Penumur,LGD,503,5409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5839,Block,Peraiyur,LGD,578,5839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,5973,Block,Perambalur,LGD,581,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +LGD,7166,Block,Perambur,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,4971,Block,Peravali,LGD,505,4971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,5817,Block,Peravurani,LGD,586,5817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,1857,Block,Peren,LGD,613,1857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +LGD,5643,Block,Perinthalmanna,LGD,562,5643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +LGD,5843,Block,Periyakulam,LGD,588,5843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +LGD,6663,Block,Pernambut,LGD,595,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +LGD,5609,Block,Pernem,LGD,551,5609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +LGD,5752,Block,Perundurai,LGD,573,5752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,5957,Block,Perur,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,2598,Block,Peshrar,LGD,336,2598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +LGD,2592,Block,Peterwar,LGD,322,2592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +LGD,4150,Block,Peth,LGD,487,4150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,6618,Block,Pethanaickanpalayam,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,3865,Block,Petlad,LGD,440,3865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,3707,Block,Petlawad,LGD,412,3707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +LGD,1809,Block,Pfutsero,LGD,248,1809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,4934,Block,P.Gannavaram,LGD,747,4934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,544,Block,Phagi,LGD,102,544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,208,Block,Phagwara,LGD,35,208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +LGD,7385,Block,Phalasiyan,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,567,Block,Phalodi,LGD,772,567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,7214,Block,Phalsoond,LGD,103,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +LGD,4258,Block,Phaltan,LGD,494,4258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,2164,Block,Phansidewa,LGD,309,2164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,3359,Block,Pharasgaon,LGD,643,3359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +LGD,946,Block,Pharenda,LGD,164,946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +LGD,1707,Block,Phassang Circle,LGD,233,1707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,1801,Block,Phek Sadar,LGD,248,1801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,1054,Block,Phenhara,LGD,213,1054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,6757,Block,Phigsoo,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,211,Block,Phillaur,LGD,34,211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +LGD,5072,Block,Phirangipuram,LGD,506,5072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,3118,Block,Phiringia,LGD,359,3118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,1805,Block,Phokhungri,LGD,788,1805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1752,Block,Phomching,LGD,247,1752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,6067,Block,Phooliya Kalan,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,1804,Block,Phor,LGD,788,1804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,4136,Block,Phulambri,LGD,469,4136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,542,Block,Phulera (Hq.Sambhar),LGD,102,542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,1351,Block,Phulidumar,LGD,190,1351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,1903,Block,Phullen,LGD,727,1903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +LGD,2090,Block,Phuloni,LGD,292,2090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +LGD,1087,Block,Phulparas,LGD,206,1087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,889,Block,Phulpur,LGD,120,889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,968,Block,Phulpur,LGD,123,968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,1402,Block,Phulwari,LGD,212,1402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,1220,Block,Phulwaria,LGD,197,1220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,1890,Block,Phungyar,LGD,717,1890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 +LGD,5401,Block,Pichatur,LGD,752,5401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7412,Block,Pichhor,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,3413,Block,Pichhore,LGD,432,3413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,6590,Block,Pidi Circle,LGD,725,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 +LGD,5047,Block,Piduguralla,LGD,751,5047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7386,Block,Pilani,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,5386,Block,Pileru,LGD,753,5386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,469,Block,Pilibanga,LGD,101,469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,790,Block,Pilibhit,LGD,173,790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +LGD,6445,Block,Pillukhera St,LGD,65,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +LGD,4725,Block,Pinapaka,LGD,690,4725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,995,Block,Pindra,LGD,187,995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +LGD,594,Block,Pindwara,LGD,115,594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +LGD,2463,Block,Pingla,LGD,318,2463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,665,Block,Pipalda,LGD,109,665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +LGD,7324,Block,Pipariya,LGD,382,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,3618,Block,Pipariya,LGD,409,3618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,1366,Block,Pipariya,LGD,204,1366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +LGD,6051,Block,Pipar Shahar,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,3057,Block,Pipili,LGD,369,3057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,3500,Block,Piploda,LGD,423,3500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,1110,Block,Pipra,LGD,223,1110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,2619,Block,Pipra,LGD,338,2619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,7036,Block,Piprai,LGD,391,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,1050,Block,Piprakothi,LGD,213,1050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1059,Block,Piprarhi,LGD,220,1059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +LGD,1020,Block,Piprasi,LGD,211,1020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,1715,Block,Pipsorang Circle,LGD,677,1715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +LGD,1587,Block,Pipu Dipu Circle,LGD,231,1587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,683,Block,Pirawa,LGD,105,683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,5569,Block,Piriyapatna,LGD,545,5569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,1429,Block,Piro,LGD,193,1429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,1335,Block,Pirpainti,LGD,192,1335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,2544,Block,Pirtanr,LGD,329,2544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,6119,Block,Pistana Circle,LGD,786,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,7042,Block,Pithampur,LGD,403,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,4911,Block,Pithapuram,LGD,746,4911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3342,Block,Pithora,LGD,385,3342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +LGD,320,Block,Pithoragarh,LGD,53,320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,4384,Block,Pitlam,LGD,685,4384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,5091,Block,Pittalavanipalem,LGD,750,5091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6121,Block,Piyong Circle,LGD,678,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 +LGD,6100,Block,Pizirang Veo Circle,LGD,723,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 +LGD,5893,Block,Pochampalli,LGD,577,5893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,5176,Block,Podalakur,LGD,515,5176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5120,Block,Podili,LGD,790,5120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4982,Block,Poduru,LGD,523,4982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,6760,Block,Pogal Paristan,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,3407,Block,Pohri,LGD,432,3407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,575,Block,Pokaran,LGD,103,575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +LGD,286,Block,Pokhari,LGD,47,286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,4186,Block,Poladpur,LGD,491,4186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,4800,Block,Polaki,LGD,519,4800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,3081,Block,Polasara,LGD,354,3081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,4949,Block,Polavaram,LGD,748,4949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6511,Block,Polaykala,LGD,430,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +LGD,2347,Block,Polba - Dadpur,LGD,312,2347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,5899,Block,Pollachi,LGD,569,5899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,6845,Block,Polosang Circle,LGD,233,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,5724,Block,Polur,LGD,593,5724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,4073,Block,Pombhurna,LGD,473,4073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,5614,Block,Ponda,LGD,552,5614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +LGD,7270,Block,Pondi(Bachra),LGD,384,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +LGD,4803,Block,Ponduru,LGD,519,4803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,5143,Block,Ponnaluru,LGD,517,5143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,5823,Block,Ponnamaravathi,LGD,582,5823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,7125,Block,Ponnampet,LGD,541,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +LGD,5646,Block,Ponnani,LGD,562,5646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +LGD,5694,Block,Ponneri,LGD,589,5694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,5084,Block,Ponnur,LGD,506,5084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,195,Block,Poo,LGD,19,195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +LGD,474,Block,Poogal,LGD,93,474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,5699,Block,Poonamallee,LGD,589,5699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,337,Block,Poornagiri,LGD,48,337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +LGD,4838,Block,Poosapatirega,LGD,521,4838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,7445,Block,Porabandar City,LGD,456,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +LGD,3822,Block,Porbandar,LGD,456,3822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +LGD,2562,Block,Poreyahat,LGD,330,2562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,1885,Block,Porompat,LGD,255,1885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +LGD,3386,Block,Porsa,LGD,417,3386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,5923,Block,Port Blair,LGD,602,5923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +LGD,5208,Block,Porumamilla,LGD,504,5208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,6088,Block,Poshina,LGD,458,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,2477,Block,Potashpur - I,LGD,317,2477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2478,Block,Potashpur - II,LGD,317,2478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,7534,Block,Pothangal,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,1124,Block,Pothia,LGD,203,1124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +LGD,2608,Block,Potka,LGD,327,2608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +LGD,3218,Block,Pottangi,LGD,363,3218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,7568,Block,Pounda,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,3273,Block,Poundi-Uproda,LGD,383,3273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +LGD,6742,Block,Pouni,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,793,Block,Powayan,LGD,180,793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +LGD,7022,Block,Prabhatpttan,LGD,394,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,6905,Block,Pragpur,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,1149,Block,Pranpur,LGD,201,1149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,3767,Block,Prantij,LGD,458,3767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,1104,Block,Pratapganj,LGD,223,1104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,699,Block,Pratapgarh,LGD,629,699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +LGD,882,Block,Pratapgarh,LGD,174,882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +LGD,7387,Block,Pratapgarh,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,295,Block,Pratapnagar,LGD,55,295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,6417,Block,Pratap Nagar St,LGD,76,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +LGD,3239,Block,Pratappur,LGD,648,3239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,2515,Block,Pratappur,LGD,323,2515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,5081,Block,Prathipadu,LGD,506,5081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,4900,Block,Prathipadu,LGD,746,4900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3246,Block,Premnagar,LGD,648,3246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,3417,Block,Prithvipur,LGD,722,3417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +LGD,5214,Block,Proddutur,LGD,504,5214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,7415,Block,Pub Mangaldai,LGD,283,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +LGD,1616,Block,Puchi Geko Circle,LGD,718,1616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 +LGD,5909,Block,Puducherry,LGD,600,5909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +LGD,5821,Block,Pudukkottai,LGD,582,5821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,4541,Block,Pudur,LGD,698,4541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,6676,Block,Pugalur,LGD,576,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +LGD,1775,Block,Pughoboto,LGD,251,1775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,7455,Block,Puintala,LGD,345,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,6942,Block,Pukhri,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,5395,Block,Pulicherla,LGD,503,5395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5219,Block,Pulivendula,LGD,504,5219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4478,Block,Pulkal,LGD,691,4478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,6349,Block,Pulla Gumdesh,LGD,48,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +LGD,5098,Block,Pullalacheruvu,LGD,790,5098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5247,Block,Pullampeta,LGD,752,5247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,51,Block,Pulwama,LGD,11,51,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,6584,Block,Pumao Circle,LGD,666,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 +LGD,6521,Block,Puna,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,424,Block,Punahana,LGD,604,424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +LGD,5947,Block,Punalur,LGD,559,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +LGD,3717,Block,Punasa,LGD,405,3717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +LGD,2388,Block,Puncha,LGD,321,2388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,4194,Block,Pune City,LGD,490,4194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,5415,Block,Punganuru,LGD,753,5415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1841,Block,Pungro,LGD,614,1841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,1410,Block,Punpun,LGD,212,1410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,1077,Block,Pupri,LGD,221,1077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,1168,Block,Puraini,LGD,205,1168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,7418,Block,Purakhasia,LGD,663,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 +LGD,4196,Block,Purandhar,LGD,490,4196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,792,Block,Puranpur,LGD,173,792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +LGD,7167,Block,Purasawalkam,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,278,Block,Puraula,LGD,57,278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,2283,Block,Purbasthali - I,LGD,306,2283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2284,Block,Purbasthali - II,LGD,306,2284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2580,Block,Purbi Tundi*,LGD,325,2580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,7467,Block,Puri,LGD,369,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,4124,Block,Purna,LGD,489,4124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,1058,Block,Purnahiya,LGD,220,1058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +LGD,1134,Block,Purnia East,LGD,214,1134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,2341,Block,Pursura,LGD,312,2341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,1860,Block,Purul,LGD,257,1860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +LGD,2387,Block,Purulia - I,LGD,321,2387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,2379,Block,Purulia - II,LGD,321,2379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,3089,Block,Purushottampur,LGD,354,3089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,817,Block,Purwa,LGD,186,817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +LGD,1289,Block,Pusa,LGD,217,1289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,4085,Block,Pusad,LGD,500,4085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,6655,Block,Pushkar,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,3696,Block,Pushparajgarh,LGD,390,3696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +LGD,3268,Block,Pusour,LGD,386,3268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,5410,Block,Puthalapattu,LGD,503,5410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5326,Block,Putlur,LGD,502,5326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5357,Block,Puttaparthy,LGD,754,5357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5564,Block,Puttur,LGD,534,5564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,5407,Block,Puttur,LGD,752,5407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1995,Block,Pynursla,LGD,274,1995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,7205,Block,Qalamabad,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,6788,Block,Qaziabad (Kralgund),LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,6817,Block,Qazigund,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,6773,Block,Qila Darhal,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,6193,Block,Qoimoh,LGD,622,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +LGD,5617,Block,Quepem,LGD,793,5617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +LGD,4518,Block,Qutballapur,LGD,700,4518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,7543,Block,Raah,LGD,789,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,7063,Block,Rabakavi Banahatti,LGD,524,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,7177,Block,Rabdang,LGD,225,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +LGD,5132,Block,Racherla,LGD,790,5132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6474,Block,Radaur,LGD,76,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +LGD,4289,Block,Radhanagari,LGD,480,4289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,3745,Block,Radhanpur,LGD,455,3745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,5880,Block,Radhapuram,LGD,592,5880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,825,Block,Rae Bareli,LGD,175,825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +LGD,33,Block,Rafiabad,LGD,3,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,1479,Block,Rafiganj,LGD,189,1479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +LGD,6129,Block,Raga Adc,LGD,718,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 +LGD,3679,Block,Raghogarh,LGD,406,3679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +LGD,1105,Block,Raghopur,LGD,223,1105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,1279,Block,Raghopur,LGD,224,1279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,4757,Block,Raghunadhapalem,LGD,509,4757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,7513,Block,Raghunathapur,LGD,355,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,2227,Block,Raghunathganj - I,LGD,319,2227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2228,Block,Raghunathganj - II,LGD,319,2228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,7257,Block,Raghunathnagar,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,1244,Block,Raghunathpur,LGD,222,1244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,2382,Block,Raghunathpur - I,LGD,321,2382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,2381,Block,Raghunathpur - II,LGD,321,2381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,7111,Block,Raghurajnagar (Nagriya),LGD,426,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,4698,Block,Ragunathpally,LGD,689,4698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,2036,Block,Raha,LGD,297,2036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +LGD,3448,Block,Rahatgarh,LGD,425,3448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,2687,Block,Rahe,LGD,339,2687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,4204,Block,Rahta,LGD,466,4204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,1382,Block,Rahui,LGD,209,1382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,4210,Block,Rahuri,LGD,466,4210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,6932,Block,Rahuwas,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,5461,Block,Raichur,LGD,546,5461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,2716,Block,Raidih,LGD,331,2716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,2196,Block,Raiganj,LGD,311,2196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +LGD,3267,Block,Raigarh,LGD,386,3267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,3187,Block,Raighar,LGD,366,3187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,4395,Block,Raikal,LGD,681,4395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,3126,Block,Raikia,LGD,359,3126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,4472,Block,Raikode,LGD,691,4472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,229,Block,Raikot,LGD,36,229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +LGD,644,Block,Railmagra,LGD,112,644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,2296,Block,Raina - I,LGD,306,2296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,2298,Block,Raina - II,LGD,306,2298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +LGD,6283,Block,Raipole,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,2376,Block,Raipur,LGD,305,2376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,632,Block,Raipur,LGD,92,632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,6925,Block,Raipur,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,3332,Block,Raipur,LGD,387,3332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,598,Block,Raipur,LGD,774,598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3442,Block,Raipura,LGD,420,3442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,3480,Block,Raipur Karchuliyan,LGD,424,3480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,6411,Block,Raipur Rani,LGD,70,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +LGD,2797,Block,Rairakhol,LGD,371,2797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,2865,Block,Rairangpur,LGD,365,2865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,3590,Block,Raisen,LGD,421,3590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,461,Block,Raisinghnagar,LGD,100,461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,6473,Block,Rai St,LGD,75,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +LGD,7359,Block,Raithal,LGD,94,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +LGD,2814,Block,Rajagangapur,LGD,373,2814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,7288,Block,Raja Ka Talab,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,519,Block,Rajakhera,LGD,98,519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,7388,Block,Rajaldesar,LGD,96,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,4796,Block,Rajam,LGD,521,4796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,4907,Block,Rajamahendravaram Rural,LGD,505,4907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,4906,Block,Rajamahendravaram Urban,LGD,505,4906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,6241,Block,Rajampet,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,5246,Block,Rajampet,LGD,504,5246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4908,Block,Rajanagaram,LGD,505,4908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,1277,Block,Raja Pakar,LGD,224,1277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,5847,Block,Rajapalayam,LGD,597,5847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,4615,Block,Rajapeta,LGD,697,4615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,6261,Block,Rajapur,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +LGD,4274,Block,Rajapur,LGD,492,4274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,6156,Block,Rajapur,LGD,136,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +LGD,2332,Block,Rajarhat,LGD,303,2332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,6653,Block,Rajasingamangalam,LGD,583,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,6093,Block,Rajatalab,LGD,187,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +LGD,1524,Block,Rajauli,LGD,210,1524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,1347,Block,Rajaun,LGD,190,1347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,6447,Block,Rajaund St,LGD,66,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +LGD,4888,Block,Rajavommangi,LGD,791,4888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4527,Block,Rajendranagar,LGD,518,4527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,2166,Block,Rajganj,LGD,314,2166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +LGD,167,Block,Rajgarh,LGD,24,167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,482,Block,Rajgarh,LGD,96,482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,502,Block,Rajgarh,LGD,87,502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,3565,Block,Rajgarh,LGD,422,3565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,6762,Block,Rajgarh,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,280,Block,Rajgarhi,LGD,57,280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,1394,Block,Rajgir,LGD,209,1394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,3333,Block,Rajim,LGD,645,3333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +LGD,2922,Block,Rajkanika,LGD,360,2922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,3803,Block,Rajkot,LGD,457,3803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,6520,Block,Rajkot East,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,6524,Block,Rajkot South,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,6523,Block,Rajkot West,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,2569,Block,Rajmahal,LGD,340,2569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,2923,Block,Rajnagar,LGD,360,2923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +LGD,3430,Block,Rajnagar,LGD,398,3430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,2258,Block,Rajnagar,LGD,307,2258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,1095,Block,Rajnagar,LGD,206,1095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +LGD,3305,Block,Rajnandgaon,LGD,388,3305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +LGD,6296,Block,Rajoli,LGD,695,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,22,Block,Rajouri,LGD,12,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,449,Block,Rajouri Garden,LGD,85,449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 +LGD,6796,Block,Rajpora,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,1443,Block,Rajpur,LGD,194,1443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,3558,Block,Rajpur,LGD,393,3558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,1464,Block,Rajpur,LGD,215,1464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,3250,Block,Rajpur,LGD,649,3250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,254,Block,Rajpura,LGD,41,254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +LGD,6719,Block,Rajpura,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +LGD,643,Block,Rajsamand,LGD,112,643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,3849,Block,Rajula,LGD,439,3849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,5059,Block,Rajupalem,LGD,751,5059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5202,Block,Rajupalem,LGD,504,5202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4077,Block,Rajura,LGD,473,4077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,106,Block,Rakkar,LGD,18,106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,1787,Block,Ralan,LGD,250,1787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,4091,Block,Ralegaon,LGD,500,4091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,7004,Block,Rama,LGD,412,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +LGD,4819,Block,Ramabhadrapuram,LGD,521,4819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,5398,Block,Ramachandrapuram,LGD,752,5398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4924,Block,Ramachandrapuram,LGD,747,4924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4423,Block,Ramadugu,LGD,508,4423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,5348,Block,Ramagiri,LGD,754,5348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6216,Block,Ramagiri,LGD,682,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,4399,Block,Ramagundam,LGD,682,4399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,5428,Block,Ramakuppam,LGD,503,5428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5606,Block,Ramanagara,LGD,631,5606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +LGD,7511,Block,Ramanaguda,LGD,370,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,5860,Block,Ramanathapuram,LGD,583,5860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,4632,Block,Ramannapet,LGD,697,4632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,3236,Block,Ramanujganj,LGD,649,3236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,3245,Block,Ramanujnagar,LGD,648,3245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,5241,Block,Ramapuram,LGD,753,5241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6243,Block,Ramareddy,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,5414,Block,Ramasamudram,LGD,753,5414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4457,Block,Ramayampet,LGD,513,4457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,67,Block,Ramban,LGD,621,67,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,4883,Block,Rambilli,LGD,744,4883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7333,Block,Rambrai,LGD,279,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 +LGD,7238,Block,Ramchandrapur,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,4495,Block,Ramchandrapuram,LGD,691,4495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,5442,Block,Ramdurg,LGD,527,5442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,5861,Block,Rameswaram,LGD,583,5861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,668,Block,Ramganj Mandi,LGD,109,668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +LGD,2668,Block,Ramgarh,LGD,326,2668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,6724,Block,Ramgarh,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +LGD,2662,Block,Ramgarh,LGD,607,2662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +LGD,498,Block,Ramgarh,LGD,87,498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,6353,Block,Ramgarh,LGD,51,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,6325,Block,Ramgarh,LGD,338,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,1446,Block,Ramgarh,LGD,200,1446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,7216,Block,Ramgarh,LGD,103,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +LGD,1370,Block,Ramgarh Chowk,LGD,204,1370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +LGD,6908,Block,Ramgarh Pachwara,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,6388,Block,Ramgarh Shekhawati,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,1033,Block,Ramgarhwa,LGD,213,1033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,6787,Block,Ramhal (Tarathpora),LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,2512,Block,Ramkanda,LGD,328,2512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,6728,Block,Ramkote,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +LGD,2105,Block,Ramkrishna Nagar,LGD,293,2105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +LGD,2501,Block,Ramna,LGD,328,2501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,74,Block,Ramnagar,LGD,14,74,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,3469,Block,Ramnagar,LGD,784,3469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,1014,Block,Ramnagar,LGD,211,1014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,343,Block,Ramnagar,LGD,51,343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +LGD,897,Block,Ramnagar,LGD,129,897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +LGD,2493,Block,Ramnagar - I,LGD,317,2493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,2494,Block,Ramnagar - II,LGD,317,2494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,4895,Block,Rampachodavaram,LGD,791,4895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1454,Block,Rampur,LGD,200,1454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +LGD,3134,Block,Rampur,LGD,372,3134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +LGD,177,Block,Rampur,LGD,23,177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,726,Block,Rampur,LGD,176,726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +LGD,7032,Block,Rampura,LGD,419,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +LGD,7391,Block,Rampura Dabri,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,244,Block,Rampura Phul,LGD,28,244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +LGD,3466,Block,Rampur Baghelan,LGD,426,3466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,2253,Block,Rampurhat - I,LGD,307,2253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2254,Block,Rampurhat - II,LGD,307,2254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,705,Block,Rampur Maniharan,LGD,177,705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +LGD,3697,Block,Rampur Naikin,LGD,433,3697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,900,Block,Ramsanehighat,LGD,129,900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +LGD,583,Block,Ramsar,LGD,90,583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,160,Block,Ramshahr,LGD,25,160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,7201,Block,Ramsoo,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +LGD,4028,Block,Ramtek,LGD,484,4028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,2312,Block,Ranaghat - I,LGD,320,2312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,2313,Block,Ranaghat - II,LGD,320,2313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,3710,Block,Ranapur,LGD,412,3710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +LGD,3033,Block,Ranapur,LGD,367,3033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +LGD,4805,Block,Ranastalam,LGD,519,4805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,3823,Block,Ranavav,LGD,456,3823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +LGD,4909,Block,Rangampeta,LGD,505,4909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,5921,Block,Rangat,LGD,632,5921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +LGD,5934,Block,Rangia,LGD,291,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +LGD,2017,Block,Rangjuli,LGD,287,2017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +LGD,2155,Block,Rangli Rangliot,LGD,309,2155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +LGD,6396,Block,Rangpo,LGD,741,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +LGD,1333,Block,Rangra Chowk,LGD,192,1333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,6898,Block,Rani,LGD,111,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,2702,Block,Rania,LGD,606,2702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 +LGD,391,Block,Rania,LGD,74,391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +LGD,2375,Block,Ranibandh,LGD,305,2375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,5495,Block,Ranibennur,LGD,540,5495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,884,Block,Raniganj,LGD,174,884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +LGD,2271,Block,Raniganj,LGD,704,2271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,1115,Block,Raniganj,LGD,188,1115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,328,Block,Ranikhet,LGD,45,328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,1983,Block,Ranikor,LGD,658,1983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 +LGD,2236,Block,Raninagar - I,LGD,319,2236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2233,Block,Raninagar - II,LGD,319,2233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2672,Block,Ranishwar,LGD,326,2672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,591,Block,Raniwara,LGD,104,591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,7025,Block,Ranjhi,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,2511,Block,Ranka,LGD,328,2511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,5681,Block,Ranni,LGD,564,5681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +LGD,6976,Block,Rannod,LGD,432,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,3785,Block,Ranpur,LGD,676,3785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +LGD,3506,Block,Raoti,LGD,423,3506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,3723,Block,Rapar,LGD,449,3723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +LGD,5331,Block,Rapthadu,LGD,502,5331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5175,Block,Rapur,LGD,515,5175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,7369,Block,Rarah,LGD,767,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,2868,Block,Raruan,LGD,365,2868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,2879,Block,Rasgobindpur,LGD,365,2879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,655,Block,Rashmi,LGD,95,655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,5746,Block,Rasipuram,LGD,580,5746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,977,Block,Rasra,LGD,126,977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +LGD,843,Block,Rasulabad,LGD,156,843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +LGD,7471,Block,Rasulpur,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,485,Block,Ratangarh,LGD,96,485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,7239,Block,Ratanpur,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,865,Block,Rath,LGD,149,865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +LGD,386,Block,Ratia,LGD,61,386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +LGD,3507,Block,Ratlam,LGD,423,3507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,7009,Block,Ratlam Nagar,LGD,423,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,4271,Block,Ratnagiri,LGD,492,4271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,1535,Block,Ratni Faridpur,LGD,199,1535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +LGD,7106,Block,Rattihalli,LGD,540,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,2691,Block,Ratu,LGD,339,2691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,2212,Block,Ratua - I,LGD,316,2212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,2213,Block,Ratua - II,LGD,316,2213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +LGD,7016,Block,Rau,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,1552,Block,Ravangla,LGD,227,1552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +LGD,3962,Block,Raver,LGD,478,3962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,4856,Block,Ravikamatham,LGD,744,4856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4926,Block,Ravulapalem,LGD,747,4926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,658,Block,Rawatbhata,LGD,95,658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +LGD,470,Block,Rawatsar,LGD,101,470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,6915,Block,Rawla,LGD,100,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,1031,Block,Raxaul,LGD,213,1031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,5239,Block,Rayachoti,LGD,753,5239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5305,Block,Rayadurg,LGD,502,5305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,3181,Block,Rayagada,LGD,370,3181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +LGD,3107,Block,Rayagada,LGD,353,3107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +LGD,4703,Block,Rayaparthy,LGD,522,4703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,4921,Block,Rayavaram,LGD,505,4921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,5435,Block,Raybag,LGD,527,5435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,1813,Block,Razieba,LGD,248,1813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,4937,Block,Razole,LGD,747,4937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,2803,Block,Reamal,LGD,351,2803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 +LGD,77,Block,Reasi,LGD,627,77,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,4327,Block,Rebbena,LGD,699,4327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,1647,Block,Rebo Perging Circle,LGD,679,1647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,4999,Block,Reddigudem,LGD,749,4999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7226,Block,Reengus,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,4786,Block,Regidi Amadalavalasa,LGD,521,4786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,4471,Block,Regode,LGD,513,4471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,4690,Block,Regonda,LGD,687,4690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,3611,Block,Rehatgaon,LGD,408,3611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +LGD,3451,Block,Rehli,LGD,425,3451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,3589,Block,Rehti,LGD,427,3589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,1898,Block,Reiek,LGD,266,1898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +LGD,2902,Block,Remuna,LGD,346,2902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,4227,Block,Renapur,LGD,481,4227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,7272,Block,Rengakharkala,LGD,382,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,2785,Block,Rengali,LGD,371,2785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,6381,Block,Reni,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,5376,Block,Renigunta,LGD,752,5376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4357,Block,Renjal,LGD,516,4357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,5043,Block,Rentachintala,LGD,751,5043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,170,Block,Renuka,LGD,24,170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,6577,Block,Renuk Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,596,Block,Reodar,LGD,115,596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +LGD,5096,Block,Repalle,LGD,750,5096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6545,Block,Rerapara,LGD,663,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 +LGD,1970,Block,Resubelpara,LGD,656,1970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 +LGD,6286,Block,Revally,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,1257,Block,Revelganj,LGD,218,1257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,6952,Block,Rewalsar,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,414,Block,Rewari,LGD,72,414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +LGD,7287,Block,Rey,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,6101,Block,Richukrong Circle,LGD,231,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,1070,Block,Riga,LGD,221,1070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,1644,Block,Riga Eac,LGD,679,1644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,6355,Block,Rikhanikhal,LGD,52,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,7336,Block,Ri Muliang,LGD,279,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 +LGD,694,Block,Rishabhdeo,LGD,117,694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,305,Block,Rishikesh,LGD,49,305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,4000,Block,Risod,LGD,499,4000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +LGD,3621,Block,Rithi,LGD,413,3621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,6069,Block,Riyan Bari,LGD,110,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,6674,Block,R K Pet,LGD,589,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,1005,Block,Robertsganj,LGD,184,1005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +LGD,5349,Block,Roddam,LGD,754,5349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1517,Block,Roh,LGD,210,1517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,4179,Block,Roha,LGD,491,4179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,600,Block,Rohat,LGD,111,600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,6077,Block,Rohini,LGD,82,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 +LGD,191,Block,Rohru,LGD,23,191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,405,Block,Rohtak,LGD,73,405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +LGD,1475,Block,Rohtas,LGD,215,1475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,1724,Block,Roing Hq,LGD,235,1724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +LGD,5353,Block,Rolla,LGD,754,5353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4855,Block,Rolugunta,LGD,744,4855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5066,Block,Rompicharla,LGD,751,5066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5373,Block,Rompicherla,LGD,503,5373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5469,Block,Ron,LGD,537,5469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +LGD,3396,Block,Ron,LGD,395,3396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +LGD,1978,Block,Rongara,LGD,277,1978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +LGD,1555,Block,Rongli,LGD,741,1555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +LGD,1965,Block,Rongram,LGD,278,1965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,176,Block,Ronhat,LGD,24,176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,6657,Block,Roopangarh,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,353,Block,Roorkee,LGD,50,353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +LGD,1300,Block,Rosera,LGD,217,1300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,7462,Block,Rourkela,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,4891,Block,Rowthulapudi,LGD,746,4891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,80,Block,R. S. Pura,LGD,5,80,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,902,Block,Rudauli,LGD,140,902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +LGD,7389,Block,Rudawal,LGD,91,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,3102,Block,R.Udayagiri,LGD,353,3102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +LGD,940,Block,Rudhauli,LGD,131,940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +LGD,6219,Block,Rudrangi,LGD,683,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,291,Block,Rudraprayag,LGD,54,291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +LGD,960,Block,Rudrapur,LGD,137,960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +LGD,6030,Block,Rudrapur,LGD,56,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,5297,Block,Rudravaram,LGD,755,5297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6240,Block,Rudrur,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,1653,Block,Ruksin Adc,LGD,232,1653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +LGD,1630,Block,Rumgong Adc,LGD,679,1630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +LGD,1073,Block,Runisaidpur,LGD,221,1073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,2033,Block,Rupahi,LGD,297,2033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +LGD,6560,Block,Rupa Sdo,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,1131,Block,Rupauli,LGD,214,1131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,514,Block,Rupbas,LGD,91,514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,264,Block,Rup Nagar,LGD,42,264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +LGD,7561,Block,Saach,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,3390,Block,Sabalgarh,LGD,417,3390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +LGD,2464,Block,Sabang,LGD,318,2464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,3781,Block,Sabarmati,LGD,438,3781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,4861,Block,Sabbavaram,LGD,744,4861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6062,Block,Sabla,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,1338,Block,Sabour,LGD,192,1338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,6688,Block,Sabroom,LGD,271,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +LGD,760,Block,Sadabad,LGD,163,760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +LGD,4049,Block,Sadak-Arjuni,LGD,476,4049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,821,Block,Sadar,LGD,162,821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +LGD,6696,Block,Sadar,LGD,272,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +LGD,7575,Block,Sadar Bazar,LGD,795,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,4381,Block,Sadashivanagar,LGD,685,4381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,4490,Block,Sadasivpet,LGD,691,4490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,6475,Block,Sadhaura St,LGD,76,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +LGD,2059,Block,Sadiya,LGD,302,2059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +LGD,459,Block,Sadulshahar,LGD,100,459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,7291,Block,Sadwan,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,385,Block,Safidon,LGD,65,385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +LGD,814,Block,Safipur,LGD,186,814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +LGD,1601,Block,Sagalee Adc,LGD,237,1601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,3449,Block,Sagar,LGD,425,3449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,2438,Block,Sagar,LGD,304,2438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,5515,Block,Sagar,LGD,547,5515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +LGD,2230,Block,Sagardighi,LGD,319,2230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,7030,Block,Sagar Nagar,LGD,425,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,3912,Block,Sagbara,LGD,452,3912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +LGD,2505,Block,Sagma,LGD,328,2505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +LGD,6840,Block,Sago,LGD,724,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 +LGD,965,Block,Sagri,LGD,123,965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +LGD,648,Block,Sagwara,LGD,99,648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,6499,Block,Sahamphung,LGD,717,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 +LGD,1434,Block,Sahar,LGD,193,1434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,633,Block,Sahara,LGD,92,633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,702,Block,Saharanpur,LGD,177,702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +LGD,7491,Block,Saharapada,LGD,361,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,3300,Block,Sahaspur Lohara,LGD,382,3300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +LGD,6429,Block,Saha St,LGD,58,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +LGD,781,Block,Sahaswan,LGD,133,781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +LGD,1011,Block,Sahawar,LGD,633,1011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +LGD,1282,Block,Sahdai Buzurg,LGD,224,1282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,1199,Block,Sahebganj,LGD,208,1199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,1318,Block,Sahebpur Kamal,LGD,191,1318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,2564,Block,Sahibganj,LGD,340,2564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,2473,Block,Sahid Matangini,LGD,317,2473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,949,Block,Sahjanwa,LGD,148,949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +LGD,7451,Block,Saho,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,4511,Block,Saidabad,LGD,507,4511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,988,Block,Saidpur,LGD,146,988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +LGD,837,Block,Saifai,LGD,139,837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +LGD,7003,Block,Saikheda,LGD,418,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +LGD,6501,Block,Saikot,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,6493,Block,Saikul,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,3504,Block,Sailana,LGD,423,3504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,119,Block,Sainj,LGD,20,119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +LGD,3148,Block,Saintala,LGD,345,3148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,7136,Block,Sainthal,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,2261,Block,Sainthia,LGD,307,2261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2000,Block,Saipung,LGD,657,2000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 +LGD,1862,Block,Saitu-Gamphazol,LGD,712,1862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,3313,Block,Saja,LGD,650,3313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,6043,Block,Sajjangarh,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +LGD,992,Block,Sakaldiha,LGD,135,992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +LGD,4939,Block,Sakhinetipalli,LGD,747,4939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5553,Block,Sakleshpur,LGD,539,5553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +LGD,7252,Block,Sakola,LGD,734,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 +LGD,4040,Block,Sakoli,LGD,471,4040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +LGD,1214,Block,Sakra,LGD,208,1214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,1808,Block,Sakraba,LGD,248,1808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,3958,Block,Sakri,LGD,474,3958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +LGD,1834,Block,Sakshi,LGD,615,1834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +LGD,3282,Block,Sakti,LGD,762,3282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,2268,Block,Salanpur,LGD,704,2268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +LGD,2452,Block,Salbani,LGD,318,2452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +LGD,5616,Block,Salcete,LGD,552,5616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +LGD,4048,Block,Salekasa,LGD,476,4048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,5740,Block,Salem,LGD,584,5740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,962,Block,Salempur,LGD,137,962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +LGD,5970,Block,Salem South,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,5971,Block,Salem West,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,2957,Block,Salepur,LGD,350,2957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,6443,Block,Salhawas St,LGD,64,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +LGD,7294,Block,Salhewara,LGD,759,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,7230,Block,Saligrama,LGD,545,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,1179,Block,Salkhua,LGD,216,1179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,6818,Block,Sallar,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,829,Block,Salon,LGD,175,829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +LGD,7532,Block,Saloora,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,2356,Block,Saltora,LGD,305,2356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,692,Block,Salumbar,LGD,777,692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,85,Block,Saluni,LGD,16,85,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,4817,Block,Salur,LGD,743,4817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7143,Block,Sam,LGD,103,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +LGD,2032,Block,Samaguri,LGD,297,2032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +LGD,377,Block,Samalkha,LGD,71,377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +LGD,4910,Block,Samalkota,LGD,746,4910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,250,Block,Samana,LGD,41,250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +LGD,1974,Block,Samanda,LGD,273,1974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +LGD,1288,Block,Samastipur,LGD,217,1288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,82,Block,Samba,LGD,624,82,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +LGD,7464,Block,Sambalpur,LGD,371,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +LGD,5237,Block,Sambepalle,LGD,753,5237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,721,Block,Sambhal,LGD,659,721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +LGD,6904,Block,Samdari,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,1154,Block,Sameli,LGD,201,1154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +LGD,3749,Block,Sami,LGD,455,3749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,1401,Block,Sampatchak,LGD,212,1401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +LGD,406,Block,Sampla,LGD,73,406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +LGD,224,Block,Samrala,LGD,36,224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +LGD,7242,Block,Samri,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,2224,Block,Samserganj,LGD,319,2224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,4022,Block,Samudrapur,LGD,498,4022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,6505,Block,Samulamlan,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,7488,Block,Sanakhemundi,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,3780,Block,Sanand,LGD,438,3780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,6997,Block,Sanawad,LGD,414,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,590,Block,Sanchore,LGD,104,590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,1425,Block,Sandesh,LGD,193,1425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,2334,Block,Sandeshkhali - I,LGD,303,2334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,2335,Block,Sandeshkhali - II,LGD,303,2335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,126,Block,Sandhol,LGD,22,126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,813,Block,Sandila,LGD,150,813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +LGD,5501,Block,Sandur,LGD,528,5501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +LGD,6503,Block,Sangaikot,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,5171,Block,Sangam,LGD,515,5171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,4272,Block,Sangameshwar,LGD,492,4272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +LGD,4202,Block,Sangamner,LGD,466,4202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,545,Block,Sanganer,LGD,102,545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,4492,Block,Sangareddy,LGD,691,4492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,466,Block,Sangaria,LGD,101,466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,1919,Block,Sangau,LGD,264,1919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 +LGD,6600,Block,Sangdupota Basar Nello Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,4705,Block,Sangem,LGD,522,4705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,199,Block,Sangla,LGD,19,199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +LGD,669,Block,Sangod,LGD,109,669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +LGD,4251,Block,Sangole,LGD,496,4251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,1046,Block,Sangrampur,LGD,213,1046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1364,Block,Sangrampur,LGD,207,1364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,3976,Block,Sangrampur,LGD,472,3976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,1705,Block,Sangram Sdo,LGD,233,1705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,271,Block,Sangrur,LGD,43,271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +LGD,1819,Block,Sangsangnyu,LGD,249,1819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +LGD,5618,Block,Sanguem,LGD,793,5618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +LGD,1785,Block,Sanis,LGD,250,1785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,5300,Block,Sanjamala,LGD,755,5300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6204,Block,Sanjeli,LGD,445,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,1465,Block,Sanjhauli,LGD,215,1465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,7149,Block,Sanjoo,LGD,110,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +LGD,5871,Block,Sankarankoil,LGD,733,5871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,5733,Block,Sankarapuram,LGD,729,5733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +LGD,5739,Block,Sankari,LGD,584,5739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,7235,Block,Sankari,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,6404,Block,Sankari,LGD,57,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +LGD,4892,Block,Sankhavaram,LGD,746,4892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3904,Block,Sankheda,LGD,668,3904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +LGD,14,Block,Sankoo,LGD,6,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +LGD,2459,Block,Sankrail,LGD,703,2459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +LGD,2404,Block,Sankrail,LGD,313,2404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,7234,Block,Sanna,LGD,380,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,3744,Block,Santalpur,LGD,455,3744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,4790,Block,Santhabommali,LGD,519,4790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,4795,Block,Santhakaviti,LGD,521,4795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,5104,Block,Santhamaguluru,LGD,517,5104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,5138,Block,Santhanuthala Padu,LGD,517,5138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,5425,Block,Santhipuram,LGD,503,5425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,2311,Block,Santipur,LGD,320,2311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,6683,Block,Santirbazar,LGD,271,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +LGD,3881,Block,Santrampur,LGD,669,3881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,2384,Block,Santuri,LGD,321,2384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +LGD,3542,Block,Sanwer,LGD,410,3542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +LGD,7054,Block,Sapekhati,LGD,708,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +LGD,525,Block,Sapotra,LGD,108,525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,1778,Block,Saptiqa,LGD,251,1778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,693,Block,Sarada,LGD,777,693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,7274,Block,Saragaon,LGD,379,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,7098,Block,Saraguru,LGD,545,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,6959,Block,Sarahan,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,6986,Block,Sarai,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,1106,Block,Saraigarh Bhaptiyahi,LGD,223,1106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,2753,Block,Saraikela,LGD,341,2753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +LGD,3340,Block,Saraipali,LGD,385,3340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +LGD,1295,Block,Sarairanjan,LGD,217,1295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,1202,Block,Saraiya,LGD,208,1202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +LGD,2666,Block,Saraiyahat,LGD,326,2666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,4396,Block,Sarangapur,LGD,681,4396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,4336,Block,Sarangapur,LGD,680,4336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,3270,Block,Sarangarh,LGD,763,3270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,3567,Block,Sarangpur,LGD,422,3567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,7479,Block,Saraskana,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,6196,Block,Saraswati,LGD,455,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,6476,Block,Saraswati Nagar St,LGD,76,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +LGD,2553,Block,Sarath,LGD,324,2553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,4788,Block,Saravakota,LGD,519,4788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,6960,Block,Sarawati Nagar,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,7370,Block,Sardargarh,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +LGD,3533,Block,Sardarpur,LGD,403,3533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +LGD,483,Block,Sardarshahar,LGD,96,483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,732,Block,Sardhana,LGD,169,732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +LGD,247,Block,Sardulgarh,LGD,37,247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +LGD,2377,Block,Sarenga,LGD,305,2377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,7326,Block,Sargaon,LGD,647,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +LGD,866,Block,Sarila,LGD,149,866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +LGD,7244,Block,Sariya,LGD,763,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,129,Block,Sarkaghat,LGD,22,129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,1712,Block,Sarli Circle,LGD,233,1712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 +LGD,6389,Block,Sarmathura,LGD,98,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,1384,Block,Sarmera,LGD,209,1384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,6094,Block,Sarojani Nagar,LGD,162,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +LGD,7325,Block,Sarona,LGD,381,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +LGD,4526,Block,Saroornagar,LGD,518,4526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,7401,Block,Sarsiwa,LGD,763,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +LGD,2023,Block,Sarthebari,LGD,280,2023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +LGD,4793,Block,Sarubujjili,LGD,519,4793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,2087,Block,Sarupathar,LGD,288,2087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +LGD,2025,Block,Sarupeta (Pt),LGD,739,2025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +LGD,2547,Block,Sarwan,LGD,324,2547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,613,Block,Sarwar,LGD,86,613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,1471,Block,Sasaram,LGD,215,1471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,267,Block,Sas Nagar (Mohali),LGD,608,267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +LGD,757,Block,Sasni,LGD,163,757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +LGD,7160,Block,Saspol,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,7397,Block,Satai,LGD,398,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +LGD,1777,Block,Satakha,LGD,251,1777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,4262,Block,Satara,LGD,494,4262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,5613,Block,Satari,LGD,551,5613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +LGD,1172,Block,Satar Kataiya,LGD,216,1172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,2631,Block,Satbarwa,LGD,338,2631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,2526,Block,Satgawan,LGD,334,2526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +LGD,7559,Block,Sathamba,LGD,672,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,5869,Block,Sathankulam,LGD,594,5869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,7515,Block,Sathnala,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,4751,Block,Sathupalli,LGD,509,4751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,5749,Block,Sathyamangalam,LGD,573,5749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,3751,Block,Satlasana,LGD,451,3751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,6459,Block,Satnali St,LGD,69,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +LGD,1779,Block,Satoi,LGD,251,1779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,311,Block,Satpuli,LGD,52,311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,5058,Block,Sattenapalli,LGD,751,5058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5854,Block,Sattur,LGD,597,5854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,3528,Block,Satwas,LGD,402,3528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,3064,Block,Satyabadi,LGD,369,3064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +LGD,5402,Block,Satyavedu,LGD,752,5402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1175,Block,Saur Bazar,LGD,216,1175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,3656,Block,Sausar,LGD,785,3656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +LGD,5441,Block,Savadatti,LGD,527,5441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,5064,Block,Savalyapuram H/O Kanamarlapudi,LGD,751,5064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5490,Block,Savanur,LGD,540,5490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,3846,Block,Savar Kundla,LGD,439,3846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +LGD,3897,Block,Savli,LGD,461,3897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,4026,Block,Savner,LGD,484,4026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,1591,Block,Sawa Circle,LGD,231,1591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,531,Block,Sawai Madhopur,LGD,113,531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,4068,Block,Sawali,LGD,473,4068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,4281,Block,Sawantwadi,LGD,495,4281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,6660,Block,Sawar,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,810,Block,Sawayajpur,LGD,150,810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +LGD,1884,Block,Sawombung,LGD,255,1884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +LGD,3795,Block,Sayla,LGD,460,3795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,585,Block,Sayla,LGD,104,585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +LGD,7390,Block,Sayra,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,1850,Block,Sechu-Zubza,LGD,245,1850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +LGD,4498,Block,Secunderabad,LGD,507,4498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,5584,Block,Sedam,LGD,538,5584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,6045,Block,Sedwa,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,7247,Block,Seepat,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,7518,Block,Seerole,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,6836,Block,Seethammadhara,LGD,520,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,4770,Block,Seethampeta,LGD,743,4770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4896,Block,Seethanagaram,LGD,505,4896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,4814,Block,Seethanagaram,LGD,743,4814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5153,Block,Seetharamapuram,LGD,515,5153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,3548,Block,Segaon,LGD,414,3548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +LGD,6553,Block,Segi Gusar Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,3582,Block,Sehore,LGD,427,3582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,7008,Block,Sehore Nagar,LGD,427,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,6104,Block,Seijosa Adc,LGD,723,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 +LGD,6927,Block,Sekhala,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,1800,Block,Sekruzu,LGD,248,1800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,4018,Block,Seloo,LGD,498,4018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,1962,Block,Selsella,LGD,278,1962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,4116,Block,Selu,LGD,489,4116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,6911,Block,Semari,LGD,777,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3475,Block,Semaria,LGD,424,3475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,6632,Block,Sendamangalam,LGD,580,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,3561,Block,Sendhwa,LGD,393,3561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,5785,Block,Sendurai,LGD,610,5785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +LGD,4111,Block,Sengaon,LGD,477,4111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +LGD,2602,Block,Senha,LGD,336,2602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +LGD,3403,Block,Seondha,LGD,401,3403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +LGD,3664,Block,Seoni,LGD,428,3664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,3612,Block,Seoni Malwa,LGD,409,3612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,7018,Block,Seoni Nagar,LGD,428,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +LGD,517,Block,Sepau,LGD,98,517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +LGD,1584,Block,Seppa Hq,LGD,231,1584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 +LGD,2350,Block,Serampur Uttarpara,LGD,312,2350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,1910,Block,Serchhip,LGD,268,1910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 +LGD,4516,Block,Serilingampally,LGD,518,4516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,7147,Block,Setrawa,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5332,Block,Settur,LGD,502,5332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,6835,Block,Sewarai,LGD,146,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +LGD,1835,Block,Seyochung,LGD,614,1835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,4542,Block,Shabad,LGD,518,4542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,3687,Block,Shadhora,LGD,391,3687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +LGD,727,Block,Shahabad,LGD,176,727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +LGD,7088,Block,Shahabad,LGD,538,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,809,Block,Shahabad,LGD,150,809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +LGD,3953,Block,Shahade,LGD,486,3953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +LGD,4167,Block,Shahapur,LGD,497,4167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +LGD,364,Block,Shahbad,LGD,68,364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +LGD,675,Block,Shahbad,LGD,89,675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +LGD,6816,Block,Shahbad Bala,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,437,Block,Shahdara,LGD,81,437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 +LGD,981,Block,Shahganj,LGD,152,981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +LGD,3447,Block,Shahgarh,LGD,425,3447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +LGD,795,Block,Shahjahanpur,LGD,180,795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +LGD,209,Block,Shahkot,LGD,34,209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +LGD,1341,Block,Shahkund,LGD,192,1341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,3441,Block,Shahnagar,LGD,420,3441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,6794,Block,Shahoora (Litter),LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,5588,Block,Shahpur,LGD,635,5588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +LGD,98,Block,Shahpur,LGD,18,98,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,3603,Block,Shahpur,LGD,394,3603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +LGD,1421,Block,Shahpur,LGD,193,1421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,629,Block,Shahpura,LGD,92,629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +LGD,3639,Block,Shahpura,LGD,404,3639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +LGD,540,Block,Shahpura,LGD,102,540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,3630,Block,Shahpura,LGD,411,3630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,4283,Block,Shahuwadi,LGD,480,4283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,6431,Block,Shahzadpur St,LGD,58,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +LGD,4496,Block,Shaikpet,LGD,507,4496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,3519,Block,Shajapur,LGD,430,3519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +LGD,6192,Block,Shakar Chiktan,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +LGD,7578,Block,Shakur Basti,LGD,796,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,4624,Block,Shaligouraram,LGD,514,4624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,2514,Block,Shaligram Ram Narayanpur(Hunterganj),LGD,323,2514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,7579,Block,Shalimar Bagh,LGD,796,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +LGD,7338,Block,Shallang,LGD,279,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 +LGD,6367,Block,Shama,LGD,46,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +LGD,7457,Block,Shamakhunta,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,1825,Block,Shamator,LGD,765,1825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1345,Block,Shambhuganj,LGD,190,1345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +LGD,3495,Block,Shamgarh,LGD,416,3495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,1321,Block,Shamho Akha Kurha,LGD,191,1321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,4520,Block,Shamirpet,LGD,700,4520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,7548,Block,Shamlaji,LGD,672,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +LGD,707,Block,Shamli,LGD,660,707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 +LGD,4543,Block,Shamshabad,LGD,518,4543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,3576,Block,Shamshabad,LGD,437,3576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,1747,Block,Shangnyu,LGD,247,1747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,56,Block,Shangus,LGD,1,56,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,4454,Block,Shankarampet (A),LGD,513,4454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,4467,Block,Shankarampet (R),LGD,513,4467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,4441,Block,Shankarapatnam,LGD,508,4441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,3241,Block,Shankargarh,LGD,649,3241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,4515,Block,Shankarpalle,LGD,518,4515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,1162,Block,Shankarpur,LGD,205,1162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,6197,Block,Shankheshvar,LGD,455,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,4691,Block,Shayampet,LGD,686,4691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,3977,Block,Shegaon,LGD,472,3977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,3883,Block,Shehera,LGD,454,3883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +LGD,1374,Block,Sheikhpura,LGD,219,1374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +LGD,1373,Block,Shekhopur Sarai,LGD,219,1373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +LGD,1994,Block,Shella Bholaganj,LGD,274,1994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,5874,Block,Shenkottai,LGD,733,5874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,577,Block,Sheo,LGD,90,577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +LGD,592,Block,Sheoganj,LGD,115,592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +LGD,1060,Block,Sheohar,LGD,220,1060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +LGD,3382,Block,Sheopur,LGD,431,3382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +LGD,1470,Block,Sheosagar,LGD,215,1470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,3092,Block,Sheragada,LGD,354,3092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,6566,Block,Shergaon Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,571,Block,Shergarh,LGD,107,571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,1503,Block,Sherghati,LGD,196,1503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,7305,Block,Shergole,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +LGD,4207,Block,Shevgaon,LGD,466,4207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,5489,Block,Shiggaon,LGD,540,5489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +LGD,2671,Block,Shikaripara,LGD,326,2671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +LGD,5517,Block,Shikarpur,LGD,547,5517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +LGD,750,Block,Shikarpur,LGD,134,750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +LGD,774,Block,Shikohabad,LGD,143,774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +LGD,175,Block,Shillai,LGD,24,175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +LGD,181,Block,Shimla ( Rural ),LGD,23,181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,182,Block,Shimla (Urban),LGD,23,182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,5471,Block,Shirahatti,LGD,537,5471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +LGD,4295,Block,Shirala,LGD,493,4295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,4286,Block,Shirol,LGD,480,4286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +LGD,3956,Block,Shirpur,LGD,474,3956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +LGD,4189,Block,Shirur,LGD,490,4189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,4231,Block,Shirur Anantpal,LGD,481,4231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,4217,Block,Shirur (Kasar),LGD,470,4217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,1286,Block,Shivaji Nagar,LGD,217,1286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,5520,Block,Shivamogga,LGD,547,5520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +LGD,4487,Block,Shivampet,LGD,513,4487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,7565,Block,Shivpur,LGD,409,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,3408,Block,Shivpuri,LGD,432,3408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,7044,Block,Shivpuri Nagar,LGD,432,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +LGD,7256,Block,Shivrinarayan,LGD,379,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +LGD,932,Block,Shohratgarh,LGD,182,932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +LGD,5705,Block,Sholinganallur,LGD,568,5705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,7060,Block,Sholinghur,LGD,731,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +LGD,6641,Block,Shoolagiri,LGD,577,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,52,Block,Shopian,LGD,625,52,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +LGD,5587,Block,Shorapur,LGD,635,5587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +LGD,4212,Block,Shrigonda,LGD,466,4212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,555,Block,Shrimadhopur,LGD,114,555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,7148,Block,Shrimahaveer Ji,LGD,108,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,4205,Block,Shrirampur,LGD,466,4205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +LGD,5549,Block,Shrirangapattana,LGD,544,5549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +LGD,4183,Block,Shrivardhan,LGD,491,4183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,3522,Block,Shujalpur,LGD,430,3522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +LGD,3583,Block,Shyampur,LGD,427,3583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +LGD,2410,Block,Shyampur - I,LGD,313,2410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,2411,Block,Shyampur - II,LGD,313,2411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,1921,Block,Siaha,LGD,267,1921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11 +LGD,747,Block,Siana,LGD,134,747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +LGD,6573,Block,Sibe Circle,LGD,719,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 +LGD,2071,Block,Sibsagar,LGD,300,2071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +LGD,5486,Block,Siddapur,LGD,550,5486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,6281,Block,Siddipet Rural,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,4459,Block,Siddipet Urban,LGD,692,4459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,808,Block,Sidhauli,LGD,183,808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +LGD,1013,Block,Sidhaw,LGD,211,1013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,6931,Block,Sidhmukh,LGD,96,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,5229,Block,Sidhout,LGD,504,5229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,3746,Block,Sidhpur,LGD,455,3746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +LGD,1227,Block,Sidhwalia,LGD,197,1227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,5599,Block,Sidlaghatta,LGD,630,5599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +LGD,2114,Block,Sidli,LGD,612,2114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +LGD,3700,Block,Sihawal,LGD,433,3700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +LGD,3856,Block,Sihor,LGD,443,3856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,3627,Block,Sihora,LGD,411,3627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +LGD,89,Block,Sihunta,LGD,16,89,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,7332,Block,Siju,LGD,277,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +LGD,976,Block,Sikanderpur,LGD,126,976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +LGD,847,Block,Sikandra,LGD,156,847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +LGD,1526,Block,Sikandra,LGD,198,1526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,745,Block,Sikandrabad,LGD,134,745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +LGD,758,Block,Sikandra Rao,LGD,163,758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +LGD,553,Block,Sikar,LGD,114,553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,7228,Block,Sikar Gramin,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +LGD,535,Block,Sikrai,LGD,97,535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +LGD,6930,Block,Sikri,LGD,767,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,1026,Block,Sikta,LGD,211,1026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,1118,Block,Sikti,LGD,188,1118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +LGD,1395,Block,Silao,LGD,209,1395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,2097,Block,Silchar,LGD,282,2097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +LGD,2688,Block,Silli,LGD,339,2688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,4135,Block,Sillod,LGD,469,4135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,2091,Block,Silonijan,LGD,292,2091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +LGD,6843,Block,Silsango Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,3596,Block,Silwani,LGD,421,3596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,649,Block,Simalwara,LGD,99,649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +LGD,2524,Block,Simaria,LGD,323,2524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,6975,Block,Simaria,LGD,420,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +LGD,2718,Block,Simdega,LGD,342,2718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,3324,Block,Simga,LGD,644,3324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,5217,Block,Simhadripuram,LGD,504,5217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,3215,Block,Similiguda,LGD,363,3215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +LGD,2372,Block,Simlapal,LGD,305,2372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,1435,Block,Simri,LGD,194,1435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +LGD,1178,Block,Simri Bakhtiarpur,LGD,216,1178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,2908,Block,Simulia,LGD,346,2908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,3158,Block,Sinapali,LGD,368,3158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +LGD,4069,Block,Sindewahi,LGD,473,4069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,5451,Block,Sindgi,LGD,530,5451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,6052,Block,Sindhari,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,5463,Block,Sindhnur,LGD,546,5463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,3957,Block,Sindkhede,LGD,474,3957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +LGD,3986,Block,Sindkhed Raja,LGD,472,3986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +LGD,1662,Block,Singa Circle,LGD,240,1662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,5995,Block,Singampunari,LGD,585,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,5325,Block,Singanamala,LGD,502,5325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5149,Block,Singarayakonda,LGD,517,5149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,4744,Block,Singareni,LGD,509,4744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,1573,Block,Singchung Adc,LGD,242,1573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,1159,Block,Singheshwar,LGD,205,1159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +LGD,1301,Block,Singhia,LGD,217,1301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,7204,Block,Singhpora,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,1182,Block,Singhwara,LGD,195,1182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,1872,Block,Singngat,LGD,254,1872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,3488,Block,Singoli,LGD,419,3488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +LGD,3705,Block,Singrauli,LGD,638,3705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,7040,Block,Singrauli Nagar,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +LGD,2349,Block,Singur,LGD,312,2349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,6480,Block,Singvad,LGD,445,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,4154,Block,Sinnar,LGD,487,4154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,3908,Block,Sinor,LGD,461,3908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,6777,Block,Siot,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,2147,Block,Sipajhar,LGD,283,2147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +LGD,5533,Block,Sira,LGD,548,5533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,3607,Block,Sirali,LGD,408,3607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +LGD,885,Block,Sirathu,LGD,158,885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +LGD,899,Block,Sirauli Gauspur,LGD,129,899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +LGD,4435,Block,Sircilla,LGD,683,4435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,1523,Block,Sirdala,LGD,210,1523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,6279,Block,Sirgapoor,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,4379,Block,Sirikonda,LGD,516,4379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,6224,Block,Sirikonda,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,5795,Block,Sirkali,LGD,735,5795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +LGD,3473,Block,Sirmour,LGD,424,3473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,593,Block,Sirohi,LGD,115,593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +LGD,4063,Block,Sironcha,LGD,475,4063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +LGD,3571,Block,Sironj,LGD,437,3571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,4315,Block,Sirpur (T),LGD,699,4315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,4326,Block,Sirpur U,LGD,699,4326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,390,Block,Sirsa,LGD,74,390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +LGD,6161,Block,Sirsaganj,LGD,143,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +LGD,5483,Block,Sirsi,LGD,550,5483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,5499,Block,Siruguppa,LGD,528,5499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +LGD,5286,Block,Sirvel,LGD,755,5286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7097,Block,Sirwar,LGD,546,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +LGD,2708,Block,Sisai,LGD,331,2708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +LGD,2056,Block,Sissibargaon,LGD,284,2056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +LGD,1247,Block,Siswan,LGD,222,1247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,2189,Block,Sitai,LGD,308,2189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,2190,Block,Sitalkuchi,LGD,308,2190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,3498,Block,Sitamau,LGD,416,3498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,3252,Block,Sitapur,LGD,389,3252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,804,Block,Sitapur,LGD,183,804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +LGD,351,Block,Sitarganj,LGD,56,351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +LGD,1839,Block,Sitimi,LGD,614,1839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +LGD,5832,Block,Sivaganga,LGD,585,5832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,5870,Block,Sivagiri,LGD,733,5870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,5849,Block,Sivakasi,LGD,597,5849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,1230,Block,Siwan,LGD,222,1230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,580,Block,Siwana,LGD,775,580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,400,Block,Siwani,LGD,59,400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +LGD,6449,Block,Siwan St,LGD,66,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +LGD,1610,Block,Siyum Adc,LGD,241,1610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,6977,Block,Sleemnabad,LGD,413,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,5204,Block,S.Mydukur,LGD,504,5204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,6209,Block,Soan,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,5394,Block,Sodam,LGD,753,5394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4134,Block,Soegaon,LGD,469,4134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,1685,Block,Soha Circle,LGD,239,1685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +LGD,3617,Block,Sohagpur,LGD,409,3617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +LGD,3691,Block,Sohagpur,LGD,429,3691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +LGD,904,Block,Sohawal,LGD,140,904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +LGD,2761,Block,Sohela,LGD,347,2761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +LGD,6542,Block,Sohiong,LGD,274,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +LGD,420,Block,Sohna,LGD,62,420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,599,Block,Sojat,LGD,111,599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,3862,Block,Sojitra,LGD,440,3862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,165,Block,Solan,LGD,25,165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +LGD,4247,Block,Solapur North,LGD,496,4247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,4253,Block,Solapur South,LGD,496,4253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +LGD,5412,Block,Somala,LGD,753,5412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5363,Block,Somandepalli,LGD,754,5363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,331,Block,Someshwar,LGD,45,331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,4780,Block,Sompeta,LGD,519,4780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,5567,Block,Somvarpet,LGD,541,5567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +LGD,2689,Block,Sonahatu,LGD,339,2689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,2099,Block,Sonai,LGD,282,2099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +LGD,7296,Block,Sonakhan,LGD,644,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,7516,Block,Sonala,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,2364,Block,Sonamukhi,LGD,305,2364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,6680,Block,Sonamura,LGD,653,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +LGD,3139,Block,Sonapur,LGD,372,3139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +LGD,2130,Block,Sonapur,LGD,618,2130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +LGD,2548,Block,Sona Rai Tharhi,LGD,324,2548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +LGD,2074,Block,Sonari,LGD,708,2074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +LGD,7602,Block,Sonari Part,LGD,300,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +LGD,2417,Block,Sonarpur,LGD,304,2417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,42,Block,Sonawari,LGD,623,42,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +LGD,1177,Block,Sonbarsa,LGD,216,1177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +LGD,1066,Block,Sonbarsa,LGD,221,1066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,1545,Block,Sonbhadra Banshi Suryapur,LGD,611,1545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +LGD,6981,Block,Sondawa,LGD,639,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +LGD,1267,Block,Sonepur,LGD,218,1267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,3944,Block,Songadh,LGD,641,3944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,1973,Block,Songsak,LGD,273,1973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +LGD,6484,Block,Song Song,LGD,257,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +LGD,3233,Block,Sonhat,LGD,384,3233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +LGD,1344,Block,Sonhaula,LGD,192,1344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,380,Block,Sonipat,LGD,75,380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +LGD,3525,Block,Sonkatch,LGD,402,3525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,1533,Block,Sono,LGD,198,1533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +LGD,4121,Block,Sonpeth,LGD,489,4121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +LGD,2728,Block,Sonua,LGD,343,2728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,32,Block,Sopore,LGD,3,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,2907,Block,Sora,LGD,346,2907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +LGD,5516,Block,Sorab,LGD,547,5516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +LGD,888,Block,Soraon,LGD,120,888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +LGD,1550,Block,Soreng,LGD,742,1550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +LGD,1820,Block,Sotokur,LGD,765,1820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,2011,Block,South Salmara,LGD,707,2011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 +LGD,7417,Block,South Salmara Pt,LGD,285,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +LGD,7421,Block,Soyatkala,LGD,667,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +LGD,116,Block,Spiti,LGD,21,116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +LGD,4882,Block,S.Rayavaram,LGD,744,4882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5206,Block,Sri Avadhutha Kasinayana,LGD,504,5206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,480,Block,Sridungargarh,LGD,93,480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +LGD,6819,Block,Srigufwara,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +LGD,2112,Block,Srijangram,LGD,281,2112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +LGD,4802,Block,Srikakulam,LGD,519,4802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,5378,Block,Srikalahasti,LGD,752,5378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,241,Block,Sri Muktsar Sahib,LGD,39,241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +LGD,6646,Block,Srimushnam,LGD,570,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,306,Block,Srinagar,LGD,52,306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,1136,Block,Srinagar,LGD,214,1136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +LGD,6805,Block,Srinagar Central,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +LGD,43,Block,Srinagar North,LGD,13,43,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +LGD,44,Block,Srinagar South,LGD,13,44,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +LGD,5525,Block,Sringeri,LGD,532,5525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,5590,Block,Srinivaspur,LGD,542,5590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +LGD,5702,Block,Sriperumbudur,LGD,574,5702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +LGD,4407,Block,Srirampur,LGD,682,4407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,5778,Block,Srirangam,LGD,591,5778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,6288,Block,Srirangapur,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,5419,Block,Srirangarajapuram,LGD,503,5419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,6538,Block,Srisailam,LGD,755,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5867,Block,Srivaikuntam,LGD,594,5867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,5848,Block,Srivilliputhur,LGD,597,5848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,4831,Block,Srungavarapukota,LGD,521,4831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,6506,Block,Suangdoh,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,723,Block,Suar,LGD,176,723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +LGD,2054,Block,Subansiri (Pt-I),LGD,295,2054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +LGD,7460,Block,Subdega,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,6024,Block,Subir,LGD,444,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +LGD,6716,Block,Suchetgarh,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +LGD,4180,Block,Sudhagad,LGD,491,4180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,1034,Block,Sugauli,LGD,213,1034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,7150,Block,Suhagpura,LGD,629,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +LGD,7249,Block,Suhela,LGD,644,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,6166,Block,Suigam,LGD,789,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,486,Block,Sujangarh,LGD,96,486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,6265,Block,Sujathanagar,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,7549,Block,Sukhsar,LGD,445,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +LGD,2969,Block,Sukinda,LGD,356,2969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,3375,Block,Sukma,LGD,642,3375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +LGD,7477,Block,Sukruli,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,7048,Block,Sulah,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,2877,Block,Suliapada,LGD,365,2877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,5197,Block,Sullurpeta,LGD,752,5197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,327,Block,Sult,LGD,45,327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,1340,Block,Sultanganj,LGD,192,1340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +LGD,7566,Block,Sultan-Ganj,LGD,421,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,6532,Block,Sultanpur,LGD,421,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,915,Block,Sultanpur,LGD,185,915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +LGD,207,Block,Sultanpur Lodhi,LGD,35,207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +LGD,4425,Block,Sulthanabad,LGD,682,4425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +LGD,5636,Block,Sulthanbathery,LGD,567,5636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +LGD,5896,Block,Sulur,LGD,569,5896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,5565,Block,Sulya,LGD,534,5565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,604,Block,Sumerpur,LGD,111,604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +LGD,11,Block,Sumoor,LGD,9,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +LGD,272,Block,Sunam,LGD,43,272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +LGD,2809,Block,Sundargarh,LGD,373,2809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,132,Block,Sundarnagar,LGD,22,132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,2563,Block,Sundarpahari,LGD,330,2563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,26,Block,Sunderbani,LGD,12,26,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,6667,Block,Sunel,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +LGD,1784,Block,Sungro,LGD,250,1784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,180,Block,Sunni,LGD,23,180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,1728,Block,Sunpura Circle,LGD,234,1728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 +LGD,5479,Block,Supa,LGD,550,5479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,1109,Block,Supaul,LGD,223,1109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,1064,Block,Suppi,LGD,221,1064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,3076,Block,Surada,LGD,354,3076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +LGD,6371,Block,Surajgarh,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,1367,Block,Surajgarha,LGD,204,1367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +LGD,3242,Block,Surajpur,LGD,648,3242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +LGD,19,Block,Surankote,LGD,10,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +LGD,465,Block,Suratgarh,LGD,100,465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,7442,Block,Surendranagar City,LGD,460,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,4142,Block,Surgana,LGD,487,4142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,2259,Block,Suri - I,LGD,307,2259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2260,Block,Suri - II,LGD,307,2260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +LGD,2542,Block,Suriya,LGD,329,2542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,6934,Block,Suroth,LGD,108,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,1068,Block,Sursand,LGD,221,1068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +LGD,1769,Block,Suruhuto,LGD,251,1769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,4638,Block,Suryapet,LGD,696,4638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,1460,Block,Suryapura,LGD,215,1460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,3515,Block,Susner,LGD,667,3515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +LGD,2482,Block,Sutahata,LGD,317,2482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,6992,Block,Suthaliya,LGD,422,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +LGD,2225,Block,Suti - I,LGD,319,2225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,2226,Block,Suti - II,LGD,319,2226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +LGD,3836,Block,Sutrapada,LGD,675,3836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +LGD,3499,Block,Suwasara,LGD,416,3499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +LGD,2319,Block,Swarupnagar,LGD,303,2319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +LGD,6330,Block,Syalde,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +LGD,5185,Block,Sydapuram,LGD,515,5185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5198,Block,Tada,LGD,752,5198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5054,Block,Tadepalli,LGD,506,5054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,4961,Block,Tadepalligudem,LGD,523,4961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,5056,Block,Tadikonda,LGD,506,5056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,5338,Block,Tadimarri,LGD,754,5338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5313,Block,Tadipatri,LGD,502,5313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,4582,Block,Tadoor,LGD,694,4582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,6508,Block,Tadubi,LGD,257,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +LGD,4687,Block,Tadvai,LGD,720,4687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,4389,Block,Tadwai,LGD,685,4389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,858,Block,Tahrauli,LGD,153,858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +LGD,7306,Block,Taisuru,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +LGD,1290,Block,Tajpur,LGD,217,1290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,6158,Block,Takha,LGD,139,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +LGD,3294,Block,Takhatpur,LGD,375,3294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +LGD,6963,Block,Taklech,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,6549,Block,Taksing Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,3503,Block,Tal,LGD,423,3503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +LGD,4182,Block,Tala,LGD,491,4182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,3006,Block,Talacher,LGD,344,3006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +LGD,3859,Block,Talaja,LGD,443,3859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,3834,Block,Talala,LGD,675,3834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +LGD,4309,Block,Talamadugu,LGD,501,4309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,5652,Block,Talappilly,LGD,566,5652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +LGD,4157,Block,Talasari,LGD,665,4157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,7225,Block,Talawara,LGD,113,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,861,Block,Talbehat,LGD,161,861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +LGD,2371,Block,Taldangra,LGD,305,2371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,6033,Block,Talera,LGD,94,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +LGD,1716,Block,Tali Adc,LGD,677,1716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +LGD,1611,Block,Taliha Adc,LGD,241,1611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +LGD,7073,Block,Talikoti,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,5632,Block,Taliparamba,LGD,557,5632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +LGD,2568,Block,Taljhari,LGD,340,2568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,4950,Block,Tallapudi,LGD,505,4950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,4930,Block,Tallarevu,LGD,746,4930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3768,Block,Talod,LGD,458,3768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,3952,Block,Talode,LGD,486,3952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +LGD,5340,Block,Talupula,LGD,754,5340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,246,Block,Talwandi Sabo,LGD,28,246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +LGD,2699,Block,Tamar I,LGD,339,2699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +LGD,5703,Block,Tambaram,LGD,730,5703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,1866,Block,Tamenglong,LGD,258,1866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 +LGD,1865,Block,Tamenglong North,LGD,258,1865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 +LGD,1864,Block,Tamenglong West,LGD,258,1864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 +LGD,3647,Block,Tamia,LGD,399,3647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,958,Block,Tamkuhi Raj,LGD,160,958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +LGD,1830,Block,Tamlu,LGD,615,1830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +LGD,2472,Block,Tamluk,LGD,317,2472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +LGD,3266,Block,Tamnar,LGD,386,3266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +LGD,4305,Block,Tamsi,LGD,501,4305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,2144,Block,Tamulpur,LGD,756,2144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +LGD,5360,Block,Tanakal,LGD,754,5360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,724,Block,Tanda,LGD,176,724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +LGD,907,Block,Tanda,LGD,121,907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +LGD,7193,Block,Tanda,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +LGD,4332,Block,Tandur,LGD,684,4332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,4534,Block,Tandur,LGD,698,4534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,2525,Block,Tandwa,LGD,323,2525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +LGD,7459,Block,Tangarpali,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +LGD,3052,Block,Tangi,LGD,362,3052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +LGD,2955,Block,Tangi-Choudwar,LGD,350,2955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,39,Block,Tangmarg,LGD,3,39,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,5141,Block,Tangutur,LGD,517,5141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,3800,Block,Tankara,LGD,673,3800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +LGD,1506,Block,Tan Kuppa,LGD,196,1506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,4340,Block,Tanoor,LGD,680,4340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +LGD,7037,Block,Tansen,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +LGD,2740,Block,Tantnagar,LGD,343,2740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,6658,Block,Tantoti,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +LGD,4972,Block,Tanuku,LGD,523,4972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,421,Block,Taoru,LGD,604,421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +LGD,276,Block,Tapa,LGD,605,276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +LGD,2205,Block,Tapan,LGD,310,2205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +LGD,7603,Block,Tapkara,LGD,380,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +LGD,6941,Block,Tapri,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +LGD,7128,Block,Tapukara,LGD,770,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,930,Block,Tarabganj,LGD,147,930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +LGD,1250,Block,Taraiya,LGD,218,1250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +LGD,2342,Block,Tarakeswar,LGD,312,2342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +LGD,1711,Block,Tarak Lengdi Cicle,LGD,677,1711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +LGD,3512,Block,Tarana,LGD,435,3512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,481,Block,Taranagar,LGD,96,481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +LGD,3861,Block,Tarapur,LGD,440,3861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,1362,Block,Tarapur,LGD,207,1362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,1433,Block,Tarari,LGD,193,1433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,1595,Block,Taraso Circle,LGD,237,1595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,3140,Block,Tarbha,LGD,372,3140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +LGD,1186,Block,Tardih,LGD,195,1186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +LGD,2629,Block,Tarhasi,LGD,338,2629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,1062,Block,Tariani Chowk,LGD,220,1062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +LGD,5528,Block,Tarikere,LGD,532,5528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +LGD,5118,Block,Tarlupadu,LGD,790,5118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,259,Block,Tarn Taran,LGD,609,259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +LGD,6775,Block,Taryath,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,4301,Block,Tasgaon,LGD,493,4301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,6656,Block,Tatgarh,LGD,774,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,2648,Block,Tati Jhariya,LGD,332,2648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +LGD,6589,Block,Tato Eac,LGD,725,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 +LGD,6883,Block,Tauni Devi Bamson,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,1559,Block,Tawang Hq,LGD,238,1559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,1311,Block,Teghra,LGD,191,1311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +LGD,2301,Block,Tehatta - I,LGD,320,2301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,2302,Block,Tehatta - II,LGD,320,2302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +LGD,7113,Block,Tehla,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,297,Block,Tehri,LGD,55,297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +LGD,6357,Block,Tejam,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,4789,Block,Tekkali,LGD,519,4789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,4469,Block,Tekmal,LGD,513,4469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,4739,Block,Tekulapalli,LGD,690,4739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,6248,Block,Tekumatla,LGD,687,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +LGD,3988,Block,Telhara,LGD,467,3988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +LGD,6698,Block,Teliamura,LGD,652,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 +LGD,7286,Block,Telka,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +LGD,4581,Block,Telkapally,LGD,694,4581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,2848,Block,Telkoi,LGD,361,2848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +LGD,5078,Block,Tenali,LGD,506,5078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,3460,Block,Tendukheda,LGD,400,3460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +LGD,3638,Block,Tendukheda,LGD,418,3638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +LGD,2066,Block,Tengakhat,LGD,286,2066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +LGD,1893,Block,Tengnoupal,LGD,716,1893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11 +LGD,1856,Block,Tening,LGD,613,1856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +LGD,5873,Block,Tenkasi,LGD,733,5873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,3197,Block,Tentulikhunti,LGD,366,3197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,2079,Block,Teok,LGD,290,2079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +LGD,3471,Block,Teonthar,LGD,424,3471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +LGD,7398,Block,Terdal,LGD,524,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +LGD,1121,Block,Terhagachh,LGD,203,1121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +LGD,1056,Block,Tetaria,LGD,213,1056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,1363,Block,Tetiha Bambor,LGD,207,1363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +LGD,2043,Block,Tezpur,LGD,301,2043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +LGD,1729,Block,Tezu Hq,LGD,234,1729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 +LGD,7184,Block,Thachi,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,1996,Block,Thadlaskein,LGD,275,1996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 +LGD,308,Block,Thailisain,LGD,52,308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,1023,Block,Thakrahan,LGD,211,1023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +LGD,6745,Block,Thakrakote,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,7289,Block,Thakurdwara,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,717,Block,Thakurdwara,LGD,171,717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +LGD,2556,Block,Thakurgangti,LGD,330,2556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +LGD,1123,Block,Thakurganj,LGD,203,1123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +LGD,2871,Block,Thakurmunda,LGD,365,2871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,2412,Block,Thakurpukur Mahestola,LGD,304,2412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +LGD,6359,Block,Thal,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +LGD,7120,Block,Thalaivasal,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,4562,Block,Thalakondapally,LGD,518,4562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,5634,Block,Thalassery,LGD,557,5634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +LGD,6539,Block,Thalavadi,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +LGD,4762,Block,Thallada,LGD,509,4762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,5121,Block,Thallur,LGD,517,5121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,5938,Block,Thamarassery,LGD,561,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +LGD,5368,Block,Thamballapalle,LGD,753,5368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,501,Block,Thanagazi,LGD,87,501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +LGD,20,Block,Thana Mandi,LGD,12,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +LGD,3706,Block,Thandla,LGD,412,3706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +LGD,5726,Block,Thandrampet,LGD,593,5726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,4165,Block,Thane,LGD,497,4165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +LGD,366,Block,Thanesar,LGD,68,366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +LGD,6037,Block,Thangadh,LGD,460,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,6217,Block,Thangallapalli,LGD,683,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,5814,Block,Thanjavur,LGD,586,5814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,3314,Block,Thankhamariya,LGD,650,3314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +LGD,1869,Block,Thanlon,LGD,715,1869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 +LGD,3733,Block,Tharad,LGD,789,3733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,288,Block,Tharali,LGD,47,288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +LGD,5798,Block,Tharangambadi,LGD,735,5798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +LGD,6257,Block,Tharigoppula,LGD,689,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,1388,Block,Tharthari,LGD,209,1388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +LGD,3878,Block,Thasra,LGD,450,3878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,63,Block,Thathri,LGD,4,63,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +LGD,5418,Block,Thavanampalle,LGD,503,5418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,1223,Block,Thawe,LGD,197,1223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,7049,Block,Thelamara,LGD,301,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +LGD,6565,Block,Thembang Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,5844,Block,Theni,LGD,588,5844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +LGD,184,Block,Theog,LGD,23,184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,4821,Block,Therlam,LGD,521,4821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,2723,Block,Thethaitangar,LGD,342,2723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +LGD,3556,Block,Thikri,LGD,393,3556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,4575,Block,Thimmajipet,LGD,694,4575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,4438,Block,Thimmapur LMD,LGD,508,4438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,6556,Block,Thingbu Circle,LGD,238,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,1899,Block,Thingdawl,LGD,263,1899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 +LGD,1905,Block,Thingsulthliah,LGD,261,1905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +LGD,4645,Block,Thipparthy,LGD,514,4645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,5801,Block,Thirukkuvalai,LGD,579,5801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +LGD,4619,Block,Thirumalagiri,LGD,696,4619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,5840,Block,Thirumangalam,LGD,578,5840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,5822,Block,Thirumayam,LGD,582,5822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,5915,Block,Thirunallar,LGD,598,5915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +LGD,5962,Block,Thirupparankundram,LGD,578,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,5829,Block,Thiruppathur,LGD,585,5829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,5965,Block,Thiruppuvanam,LGD,585,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +LGD,5809,Block,Thiruthuraipoondi,LGD,590,5809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,5813,Block,Thiruvaiyaru,LGD,586,5813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,5679,Block,Thiruvalla,LGD,564,5679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +LGD,5698,Block,Thiruvallur,LGD,589,5698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,5691,Block,Thiruvananthapuram,LGD,565,5691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +LGD,5806,Block,Thiruvarur,LGD,590,5806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,6672,Block,Thiruvattar,LGD,575,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +LGD,7053,Block,Thiruvennainallur,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,5780,Block,Thiruverumbur,LGD,591,5780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,5810,Block,Thiruvidaimarudur,LGD,586,5810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,7406,Block,Thiruvonam,LGD,586,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +LGD,5666,Block,Thodupuzha,LGD,556,5666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +LGD,4463,Block,Thoguta,LGD,692,4463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,4901,Block,Thondangi,LGD,746,4901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5221,Block,Thondur,LGD,504,5221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,1829,Block,Thonoknyu,LGD,736,1829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,5866,Block,Thoothukkudi,LGD,594,5866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,4715,Block,Thorrur,LGD,688,4715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +LGD,5180,Block,Thotapalligudur,LGD,515,5180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5025,Block,Thotlavalluru,LGD,510,5025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,5379,Block,Thottambedu,LGD,752,5379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5773,Block,Thottiyam,LGD,591,5773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,1877,Block,Thoubal,LGD,259,1877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 +LGD,5883,Block,Thovala,LGD,575,5883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +LGD,5654,Block,Thrissur,LGD,566,5654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +LGD,1575,Block,Thrizino Adc,LGD,242,1575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +LGD,3171,Block,Thuamul Rampur,LGD,358,3171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +LGD,5053,Block,Thulluru,LGD,506,5053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,136,Block,Thunag,LGD,22,136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,4620,Block,Thungaturthy,LGD,696,4620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +LGD,5775,Block,Thuraiyur,LGD,591,5775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,108,Block,Thural,LGD,18,108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +LGD,4614,Block,Thurkapally,LGD,697,4614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,6739,Block,Thuroo,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +LGD,467,Block,Tibbi,LGD,101,467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +LGD,6434,Block,Tigaon St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +LGD,2949,Block,Tigiria,LGD,350,2949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +LGD,2917,Block,Tihidi,LGD,348,2917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +LGD,6946,Block,Tihra,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,2132,Block,Tihu (Pt),LGD,298,2132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +LGD,496,Block,Tijara,LGD,770,496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3115,Block,Tikabali,LGD,359,3115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,3423,Block,Tikamgarh,LGD,434,3423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +LGD,190,Block,Tikar,LGD,23,190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +LGD,1488,Block,Tikari,LGD,196,1488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,6581,Block,Tikhak Rima Putok Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,6948,Block,Tikken,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +LGD,7074,Block,Tikota,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,1964,Block,Tikrikilla,LGD,278,1964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +LGD,3909,Block,Tilakwada,LGD,452,3909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +LGD,3334,Block,Tilda,LGD,387,3334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +LGD,794,Block,Tilhar,LGD,180,794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +LGD,824,Block,Tiloi,LGD,640,824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +LGD,1474,Block,Tilouthu,LGD,215,1474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +LGD,3610,Block,Timarni,LGD,408,3610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +LGD,1726,Block,Tinali Paglam Circle,LGD,235,1726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +LGD,5729,Block,Tindivanam,LGD,596,5729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,2068,Block,Tingkhong,LGD,286,2068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +LGD,2061,Block,Tinsukia,LGD,302,2061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +LGD,6390,Block,Tinwari,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +LGD,4008,Block,Tiosa,LGD,468,4008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,1920,Block,Tipa,LGD,267,1920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11 +LGD,1868,Block,Tipaimukh,LGD,715,1868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 +LGD,5539,Block,Tiptur,LGD,548,5539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,140,Block,Tira Sujanpur,LGD,17,140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +LGD,1635,Block,Tirbin Eac,LGD,724,1635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 +LGD,2858,Block,Tiring,LGD,365,2858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,3668,Block,Tirodi,LGD,392,3668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,4044,Block,Tirora,LGD,476,4044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +LGD,5519,Block,Tirthahalli,LGD,547,5519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +LGD,2939,Block,Tirtol,LGD,355,2939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +LGD,5868,Block,Tiruchendur,LGD,594,5868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,5745,Block,Tiruchengode,LGD,580,5745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +LGD,6620,Block,Tiruchirappalli East,LGD,591,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,5779,Block,Tiruchirappalli West,LGD,591,5779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +LGD,5852,Block,Tiruchuli,LGD,597,5852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,5709,Block,Tirukalukundram,LGD,730,5709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,5732,Block,Tirukkoyilur,LGD,729,5732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +LGD,5575,Block,Tirumakudal - Narsipur,LGD,545,5575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +LGD,6306,Block,Tirumalagiri Sagar,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4754,Block,Tirumalayapalem,LGD,509,4754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,4499,Block,Tirumalgiri,LGD,507,4499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +LGD,5876,Block,Tirunelveli,LGD,592,5876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,5720,Block,Tirupathur,LGD,732,5720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +LGD,5375,Block,Tirupati (Rural),LGD,752,5375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5383,Block,Tirupati (Urban),LGD,752,5383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5958,Block,Tiruporur,LGD,730,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,5967,Block,Tiruppurnorth,LGD,634,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,5968,Block,Tiruppursouth,LGD,634,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,5644,Block,Tirur,LGD,562,5644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +LGD,5645,Block,Tirurangadi,LGD,562,5645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +LGD,5696,Block,Tiruttani,LGD,589,5696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,5855,Block,Tiruvadanai,LGD,583,5855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +LGD,5727,Block,Tiruvannamalai,LGD,593,5727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,6642,Block,Tiruvengadam,LGD,733,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,5982,Block,Tiruvottiyur,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,4997,Block,Tiruvuru,LGD,749,4997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,835,Block,Tirwa,LGD,155,835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +LGD,4333,Block,Tiryani,LGD,699,4333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,6649,Block,Tisayanvilai,LGD,592,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +LGD,2533,Block,Tisri,LGD,329,2533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +LGD,5611,Block,Tiswadi,LGD,551,5611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +LGD,2080,Block,Titabor,LGD,290,2080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +LGD,3152,Block,Titlagarh,LGD,345,3152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,5794,Block,Tittakudi,LGD,570,5794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,1745,Block,Tizit,LGD,247,1745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,7358,Block,Tlabung,LGD,265,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 +LGD,1901,Block,Tlangnuam,LGD,261,1901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +LGD,4946,Block,T.Narasapuram,LGD,748,4946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1756,Block,Tobu,LGD,247,1756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,520,Block,Todabhim,LGD,108,520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +LGD,619,Block,Todaraisingh,LGD,116,619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,387,Block,Tohana,LGD,61,387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +LGD,3365,Block,Tokapal,LGD,374,3365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +LGD,5988,Block,Tokiye,LGD,251,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,7168,Block,Tondiarpet,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,7317,Block,Tongpal,LGD,642,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +LGD,618,Block,Tonk,LGD,116,618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,3524,Block,Tonk Khurd,LGD,402,3524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,2737,Block,Tonto,LGD,343,2737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +LGD,7142,Block,Toonga,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +LGD,4482,Block,Toopran,LGD,513,4482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,2581,Block,Topchanchi,LGD,325,2581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,2701,Block,Torpa,LGD,606,2701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 +LGD,1600,Block,Toru Circle,LGD,237,1600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +LGD,399,Block,Tosham,LGD,59,399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +LGD,50,Block,Tral,LGD,11,50,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +LGD,6784,Block,Trehgam,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,7176,Block,Tribal Taluk Office Attappadi,LGD,563,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +LGD,1111,Block,Tribeniganj,LGD,223,1111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +LGD,4151,Block,Trimbakeshwar,LGD,487,4151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,5099,Block,Tripuranthakam,LGD,790,5099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4662,Block,Tripuraram,LGD,514,4662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,1843,Block,Tseminyu,LGD,757,1843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1844,Block,Tsogin,LGD,757,1844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,5238,Block,T.Sundupalle,LGD,504,5238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,5085,Block,Tsunduru,LGD,750,5085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5990,Block,Tsurangkong,LGD,246,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,1826,Block,Tsurungto,LGD,765,1826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,1817,Block,Tuensang Sadar,LGD,249,1817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +LGD,2185,Block,Tufanganj - I,LGD,308,2185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,2186,Block,Tufanganj - II,LGD,308,2186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +LGD,5293,Block,Tuggali,LGD,511,5293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,1870,Block,Tuibong,LGD,254,1870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +LGD,6812,Block,Tulail,LGD,623,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +LGD,1760,Block,Tuli,LGD,246,1760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +LGD,4241,Block,Tuljapur,LGD,488,4241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,6807,Block,Tullamulla Khirbhawani,LGD,626,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +LGD,926,Block,Tulsipur,LGD,127,926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +LGD,5537,Block,Tumakuru,LGD,548,5537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,4037,Block,Tumsar,LGD,471,4037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +LGD,3121,Block,Tumudibandha,LGD,359,3121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +LGD,7295,Block,Tundara,LGD,644,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +LGD,2579,Block,Tundi,LGD,325,2579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +LGD,771,Block,Tundla,LGD,143,771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +LGD,4890,Block,Tuni,LGD,746,4890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,1042,Block,Turkaulia,LGD,213,1042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +LGD,5540,Block,Turuvekere,LGD,548,5540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +LGD,3143,Block,Tusura,LGD,345,3143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +LGD,1658,Block,Tuting Adc,LGD,240,1658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,6492,Block,T Vaichong,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +LGD,3574,Block,Tyonda,LGD,437,3574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,301,Block,Tyuni,LGD,49,301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,6413,Block,Uchana,LGD,65,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +LGD,6923,Block,Uchchain,LGD,91,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,3943,Block,Uchchhal,LGD,641,3943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,1222,Block,Uchkagaon,LGD,197,1222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +LGD,6693,Block,Udaipur,LGD,654,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +LGD,114,Block,Udaipur,LGD,21,114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +LGD,3597,Block,Udaipura,LGD,421,3597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +LGD,492,Block,Udaipurwati,LGD,106,492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +LGD,2884,Block,Udala,LGD,365,2884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +LGD,2152,Block,Udalguri,LGD,617,2152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +LGD,2098,Block,Udarbond,LGD,282,2098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +LGD,5154,Block,Udayagiri,LGD,515,5154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5786,Block,Udayarpalayam,LGD,610,5786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +LGD,6535,Block,Udaynagar,LGD,402,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +LGD,2398,Block,Udaynarayanpur,LGD,313,2398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,3249,Block,Udaypur,LGD,389,3249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +LGD,4235,Block,Udgir,LGD,481,4235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +LGD,5756,Block,Udhagamandalam,LGD,587,5756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +LGD,72,Block,Udhampur,LGD,14,72,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +LGD,6522,Block,Udhna,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,2570,Block,Udhwa,LGD,340,2570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +LGD,5906,Block,Udumalaipettai,LGD,634,5906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,5665,Block,Udumbanchola,LGD,556,5665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +LGD,5523,Block,Udupi,LGD,549,5523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +LGD,1426,Block,Udwant Nagar,LGD,193,1426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +LGD,7114,Block,Ujani Majuli Circle,LGD,706,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 +LGD,1298,Block,Ujiarpur,LGD,217,1298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,3513,Block,Ujjain,LGD,435,3513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,7046,Block,Ujjain Nagar,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,7550,Block,Ukai,LGD,641,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,290,Block,Ukhimath,LGD,54,290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +LGD,1888,Block,Ukhrul,LGD,260,1888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 +LGD,6441,Block,Uklana St,LGD,63,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +LGD,4912,Block,U.Kothapalli,LGD,746,4912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5152,Block,Ulavapadu,LGD,517,5152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,4169,Block,Ulhasnagar,LGD,497,4169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +LGD,7197,Block,Ullala,LGD,534,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +LGD,2407,Block,Uluberia - I,LGD,313,2407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,2406,Block,Uluberia - II,LGD,313,2406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +LGD,3136,Block,Ulunda,LGD,372,3136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +LGD,5735,Block,Ulundurpettai,LGD,729,5735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +LGD,4086,Block,Umarkhed,LGD,500,4086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,3189,Block,Umarkote,LGD,366,3189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +LGD,3934,Block,Umarpada,LGD,459,3934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +LGD,3931,Block,Umbergaon,LGD,462,3931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,1985,Block,Umling,LGD,276,1985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +LGD,3853,Block,Umrala,LGD,443,3853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,4034,Block,Umred,LGD,484,4034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +LGD,3653,Block,Umreth,LGD,399,3653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +LGD,3863,Block,Umreth,LGD,440,3863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +LGD,4103,Block,Umri,LGD,485,4103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +LGD,1987,Block,Umsning,LGD,276,1987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +LGD,6159,Block,Un,LGD,660,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 +LGD,150,Block,Una,LGD,26,150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +LGD,3838,Block,Una,LGD,675,3838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +LGD,828,Block,Unchahar,LGD,175,828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +LGD,3465,Block,Unchehara,LGD,426,3465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +LGD,6299,Block,Undavelly,LGD,695,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,4976,Block,Undi,LGD,523,4976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,4970,Block,Undrajavaram,LGD,505,4970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +LGD,4962,Block,Unguturu,LGD,748,4962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5013,Block,Unguturu,LGD,510,5013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,7434,Block,Unhel,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +LGD,621,Block,Uniara,LGD,116,621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +LGD,3753,Block,Unjha,LGD,451,3753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,816,Block,Unnao,LGD,186,816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +LGD,2623,Block,Untari Road,LGD,338,2623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +LGD,3809,Block,Upleta,LGD,457,3809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,4524,Block,Uppal,LGD,700,4524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +LGD,4942,Block,Uppalaguptam,LGD,747,4942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4580,Block,Uppununthala,LGD,694,4580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,4172,Block,Uran,LGD,491,4172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +LGD,5317,Block,Uravakonda,LGD,502,5317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,37,Block,Uri,LGD,3,37,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,6295,Block,Urkonda,LGD,694,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,5838,Block,Usilampatti,LGD,578,5838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,3377,Block,Usur,LGD,636,3377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +LGD,5845,Block,Uthamapalayam,LGD,588,5845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +LGD,5894,Block,Uthangarai,LGD,577,5894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +LGD,5708,Block,Uthiramerur,LGD,574,5708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +LGD,5695,Block,Uthukkottai,LGD,589,5695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +LGD,6616,Block,Uthukuli,LGD,634,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +LGD,4571,Block,Utkoor,LGD,721,4571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +LGD,4321,Block,Utnoor,LGD,501,4321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +LGD,927,Block,Utraula,LGD,127,927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +LGD,5302,Block,Uyyalawada,LGD,755,5302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3762,Block,Vadali,LGD,458,3762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,5399,Block,Vadamalapet,LGD,752,5399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3738,Block,Vadgam,LGD,441,3738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +LGD,5837,Block,Vadipatti,LGD,578,5837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +LGD,3755,Block,Vadnagar,LGD,451,3755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,6529,Block,Vadodara East,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,6527,Block,Vadodara North,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,3898,Block,Vadodara Rural,LGD,461,3898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,6526,Block,Vadodara South,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,6528,Block,Vadodara West,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,3899,Block,Vaghodia,LGD,461,3899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +LGD,3915,Block,Vagra,LGD,442,3915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,4276,Block,Vaibhavvadi,LGD,495,4276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,4139,Block,Vaijapur,LGD,469,4139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +LGD,5669,Block,Vaikom,LGD,560,5669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +LGD,4365,Block,Vailpoor,LGD,516,4365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,1268,Block,Vaishali,LGD,224,1268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +LGD,5316,Block,Vajrakarur,LGD,502,5316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,4781,Block,Vajrapukotturu,LGD,519,4781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +LGD,5192,Block,Vakadu,LGD,752,5192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5803,Block,Valangaiman,LGD,590,5803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +LGD,3920,Block,Valia,LGD,442,3920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +LGD,4627,Block,Valigonda,LGD,697,4627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,3851,Block,Vallabhipur,LGD,443,3851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +LGD,690,Block,Vallabhnagar,LGD,117,690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +LGD,5225,Block,Vallur,LGD,504,5225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,5388,Block,Valmikipuram,LGD,753,5388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3946,Block,Valod,LGD,641,3946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,5900,Block,Valparai,LGD,569,5900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +LGD,3927,Block,Valsad,LGD,462,3927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,7599,Block,Valsad City,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,7405,Block,Vanapuram,LGD,729,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +LGD,7058,Block,Vandalur,LGD,730,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +LGD,5723,Block,Vandavasi,LGD,593,5723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,6507,Block,Vangai Range,LGD,715,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 +LGD,4785,Block,Vangara,LGD,521,4785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,4577,Block,Vangoor,LGD,694,4577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,5718,Block,Vaniyambadi,LGD,732,5718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +LGD,3826,Block,Vanthali,LGD,448,3826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,5730,Block,Vanur,LGD,596,5730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,6031,Block,Vapi,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,7596,Block,Vapi City,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +LGD,5381,Block,Varadaiahpalem,LGD,752,5381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,996,Block,Varanasi Sadar,LGD,187,996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +LGD,4733,Block,Vararamachandrapuram,LGD,791,4733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5155,Block,Varikuntapadu,LGD,515,5155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5946,Block,Varkala,LGD,565,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +LGD,3562,Block,Varla,LGD,393,3562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +LGD,4376,Block,Varni,LGD,516,4376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,4164,Block,Vasai,LGD,665,4164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,4115,Block,Vasmath,LGD,477,4115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +LGD,6034,Block,Vaso,LGD,450,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +LGD,5638,Block,Vatakara,LGD,561,5638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +LGD,6291,Block,Vatpally,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,4990,Block,Vatsavai,LGD,749,4990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5080,Block,Vatticherukuru,LGD,506,5080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +LGD,6516,Block,Vatva,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,3732,Block,Vav,LGD,789,3732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +LGD,5742,Block,Vazhapadi,LGD,584,5742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,5802,Block,Vedaranyam,LGD,579,5802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +LGD,5762,Block,Vedasandur,LGD,572,5762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +LGD,5397,Block,Vedurukuppam,LGD,503,5397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,4439,Block,Veenavanka,LGD,508,4439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,5242,Block,Veeraballe,LGD,504,5242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4769,Block,Veeraghattam,LGD,743,4769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5872,Block,Veerakeralamputhur,LGD,733,5872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +LGD,5222,Block,Veerapunayunipalle,LGD,504,5222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4983,Block,Veeravasaram,LGD,523,4983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,6220,Block,Veernapalli,LGD,683,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,4994,Block,Veerullapadu,LGD,749,4994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6514,Block,Vejalpur,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,7171,Block,Velachery,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +LGD,6252,Block,Velair,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +LGD,4734,Block,Velairpadu,LGD,748,4734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4565,Block,Veldanda,LGD,694,4565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +LGD,5041,Block,Veldurthy,LGD,751,5041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5278,Block,Veldurthy,LGD,511,5278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,4398,Block,Velgatur,LGD,681,4398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +LGD,4197,Block,Velhe,LGD,490,4197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +LGD,5135,Block,Veligandla,LGD,790,5135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5933,Block,Vellarikkundu,LGD,558,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +LGD,5717,Block,Vellore,LGD,595,5717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +LGD,5282,Block,Velugodu,LGD,755,5282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4330,Block,Vemanpally,LGD,684,4330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +LGD,6624,Block,Vembakkam,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +LGD,6640,Block,Vembakottai,LGD,597,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,5233,Block,Vempalli,LGD,504,5233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4768,Block,Vemsoor,LGD,509,4768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,5220,Block,Vemula,LGD,504,5220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4644,Block,Vemulapally,LGD,514,4644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +LGD,4430,Block,Vemulawada,LGD,683,4430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,6218,Block,Vemulawada Rural,LGD,683,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,5087,Block,Vemuru,LGD,750,5087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4279,Block,Vengurla,LGD,495,4279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +LGD,5182,Block,Venkatachalam,LGD,515,5182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5187,Block,Venkatagiri,LGD,752,5187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5424,Block,Venkatagirikota,LGD,503,5424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,4684,Block,Venkatapur,LGD,720,4684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,4724,Block,Venkatapuram,LGD,720,4724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,4832,Block,Vepada,LGD,521,4832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,5974,Block,Veppanthattai,LGD,581,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +LGD,5953,Block,Veppur,LGD,570,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,7446,Block,Veraval City,LGD,675,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +LGD,5124,Block,Vetapalem,LGD,750,5124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5308,Block,Vidapanakal,LGD,502,5308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5168,Block,Vidavalur,LGD,515,5168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,3579,Block,Vidisha,LGD,437,3579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,7017,Block,Vidisha Nagar,LGD,437,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +LGD,1296,Block,Vidyapati Nagar,LGD,217,1296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,6661,Block,Vijainagar,LGD,774,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,464,Block,Vijainagar,LGD,100,464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +LGD,3756,Block,Vijapur,LGD,451,3756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,5449,Block,Vijayapura,LGD,530,5449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +LGD,5405,Block,Vijayapuram,LGD,503,5405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5010,Block,Vijayawada Central,LGD,749,5010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6863,Block,Vijayawada East,LGD,749,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6864,Block,Vijayawada North,LGD,749,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5011,Block,Vijayawada (Rural),LGD,749,5011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6865,Block,Vijayawada West,LGD,749,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,3761,Block,Vijaynagar,LGD,458,3761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +LGD,3380,Block,Vijaypur,LGD,431,3380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +LGD,6722,Block,Vijaypur,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +LGD,3624,Block,Vijayraghavgarh,LGD,413,3624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +LGD,1679,Block,Vijoynagar Eac,LGD,229,1679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,4530,Block,Vikarabad,LGD,698,4530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,303,Block,Vikas Nagar,LGD,49,303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +LGD,7591,Block,Vikaspuri,LGD,85,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 +LGD,4159,Block,Vikramgad,LGD,665,4159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,5978,Block,Vikravandi,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,5864,Block,Vilathikulam,LGD,594,5864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +LGD,5881,Block,Vilavancode,LGD,575,5881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +LGD,7206,Block,Villgam,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,5911,Block,Villianur,LGD,600,5911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +LGD,5731,Block,Viluppuram,LGD,596,5731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +LGD,6198,Block,Vinchchiya,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +LGD,5161,Block,Vinjamur,LGD,515,5161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +LGD,5062,Block,Vinukonda,LGD,751,5062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5568,Block,Virajpet,LGD,541,5568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +LGD,6614,Block,Viralimalai,LGD,582,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +LGD,3779,Block,Viramgam,LGD,438,3779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +LGD,539,Block,Viratnagar,LGD,782,539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +LGD,3870,Block,Virpur,LGD,669,3870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +LGD,5793,Block,Virudhachalam,LGD,570,5793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +LGD,5850,Block,Virudhunagar,LGD,597,5850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,4866,Block,Visakhapatnam (Rural),LGD,520,4866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +LGD,3829,Block,Visavadar,LGD,448,3829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +LGD,2369,Block,Vishnupur,LGD,305,2369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +LGD,7586,Block,Vishwas Nagar,LGD,78,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 +LGD,3754,Block,Visnagar,LGD,451,3754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +LGD,5000,Block,Vissannapeta,LGD,749,5000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4836,Block,Vizianagaram Rural,LGD,521,4836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,7431,Block,Vizianagaram Urban,LGD,521,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +LGD,1767,Block,V.K.,LGD,251,1767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +LGD,5147,Block,Voletivaripalem,LGD,517,5147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,5228,Block,Vontimitta,LGD,504,5228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,4445,Block,V.Saidapur,LGD,508,4445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +LGD,5027,Block,Vuyyuru,LGD,510,5027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +LGD,3945,Block,Vyara,LGD,641,3945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +LGD,7472,Block,Vyasanagar,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +LGD,5637,Block,Vythiri,LGD,567,5637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +LGD,4162,Block,Wada,LGD,665,4162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +LGD,7095,Block,Wadagera,LGD,635,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +LGD,4610,Block,Waddepally,LGD,695,4610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,3792,Block,Wadhwan,LGD,460,3792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +LGD,3238,Block,Wadrafnagar,LGD,649,3238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +LGD,4220,Block,Wadwani,LGD,470,4220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +LGD,6023,Block,Waghai,LGD,444,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +LGD,6823,Block,Wagoora,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,4256,Block,Wai,LGD,494,4256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +LGD,6486,Block,Waikhong,LGD,711,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11 +LGD,4723,Block,Wajedu,LGD,720,4723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +LGD,1749,Block,Wakching,LGD,247,1749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +LGD,6012,Block,Wakka Sdo,LGD,666,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 +LGD,6808,Block,Wakoora,LGD,626,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +LGD,1730,Block,Wakro Circle,LGD,234,1730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 +LGD,6626,Block,Walajabad,LGD,574,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +LGD,5714,Block,Wallajah,LGD,731,5714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +LGD,1742,Block,Walong Circle,LGD,628,1742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +LGD,4296,Block,Walwa,LGD,493,4296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +LGD,4595,Block,Wanaparthy,LGD,693,4595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,1882,Block,Wangoi,LGD,256,1882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +LGD,4094,Block,Wani,LGD,500,4094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,3801,Block,Wankaner,LGD,673,3801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +LGD,4314,Block,Wankidi,LGD,699,4314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +LGD,1999,Block,Wapung,LGD,657,1999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 +LGD,4706,Block,Warangal,LGD,522,4706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,3669,Block,Waraseoni,LGD,392,3669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +LGD,4019,Block,Wardha,LGD,498,4019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +LGD,4704,Block,Wardhannapet,LGD,522,4704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +LGD,4485,Block,Wargal,LGD,692,4485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +LGD,1513,Block,Warisaliganj,LGD,210,1513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +LGD,1285,Block,Warisnagar,LGD,217,1285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +LGD,4064,Block,Warora,LGD,473,4064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +LGD,4007,Block,Warud,LGD,468,4007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +LGD,6766,Block,Warwan,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +LGD,4238,Block,Washi,LGD,488,4238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +LGD,3999,Block,Washim,LGD,499,3999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +LGD,6825,Block,Watergam,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,6675,Block,Watrap,LGD,597,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +LGD,6386,Block,Wazeerpur,LGD,113,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +LGD,6420,Block,Wazirabad St,LGD,62,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +LGD,1507,Block,Wazirganj,LGD,196,1507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +LGD,4608,Block,Weepangandla,LGD,693,4608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,512,Block,Weir,LGD,91,512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +LGD,1897,Block,West Phaileng,LGD,266,1897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +LGD,5992,Block,Weziho,LGD,788,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +LGD,6485,Block,Willong,LGD,257,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +LGD,1789,Block,Wokha Sadar,LGD,250,1789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,1788,Block,Wozhuro,LGD,250,1788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +LGD,4764,Block,Wyra,LGD,509,4764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,4548,Block,Yacharam,LGD,518,4548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +LGD,1697,Block,Yachuli Adc,LGD,786,1697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,4616,Block,Yadagirigutta,LGD,697,4616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +LGD,5430,Block,Yadamarri,LGD,503,5430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +LGD,5589,Block,Yadgir,LGD,635,5589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +LGD,5312,Block,Yadiki,LGD,502,5312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,7089,Block,Yadrami,LGD,538,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +LGD,314,Block,Yamkeshwar,LGD,52,314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +LGD,6082,Block,Yamuna Vihar,LGD,81,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 +LGD,5908,Block,Yanam,LGD,600,5908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +LGD,6400,Block,Yangang,LGD,227,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +LGD,1704,Block,Yangte Circle,LGD,677,1704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +LGD,7195,Block,Yaragatti,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +LGD,6781,Block,Yaripora,LGD,622,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +LGD,6579,Block,Yatdam Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +LGD,4082,Block,Yavatmal,LGD,500,4082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,3961,Block,Yawal,LGD,478,3961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +LGD,1698,Block,Yazali Circle,LGD,786,1698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +LGD,4369,Block,Yedapally,LGD,516,4369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,5107,Block,Yeddana Pudi,LGD,750,5107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,7533,Block,Yedula,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +LGD,7103,Block,Yelahanka,LGD,525,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +LGD,4536,Block,Yelal,LGD,698,4536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +LGD,4989,Block,Yelamanchili,LGD,523,4989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +LGD,4879,Block,Yelamanchili,LGD,744,4879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5578,Block,Yelandur,LGD,531,5578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +LGD,5464,Block,Yelbarga,LGD,543,5464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +LGD,4481,Block,Yeldurthy,LGD,513,4481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +LGD,4893,Block,Yeleswaram,LGD,746,4893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4740,Block,Yellandu,LGD,690,4740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +LGD,5327,Block,Yellanur,LGD,502,5327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +LGD,5481,Block,Yellapur,LGD,550,5481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +LGD,4432,Block,Yellareddipet,LGD,683,4432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +LGD,4386,Block,Yellareddy,LGD,685,4386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +LGD,5254,Block,Yemmiganur,LGD,511,5254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +LGD,5741,Block,Yercaud,LGD,584,5741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +LGD,6239,Block,Yergatla,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +LGD,5377,Block,Yerpedu,LGD,752,5377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5097,Block,Yerragondapalem,LGD,790,5097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,5223,Block,Yerraguntla,LGD,504,5223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +LGD,7517,Block,Yerravalli,LGD,695,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +LGD,5374,Block,Yerravaripalem,LGD,752,5374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4767,Block,Yerrupalem,LGD,509,4767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +LGD,6063,Block,Yetapaka,LGD,791,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,4156,Block,Yevla,LGD,487,4156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +LGD,1663,Block,Yingkiong Circle,LGD,240,1663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +LGD,1633,Block,Yomcha Adc,LGD,243,1633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 +LGD,1832,Block,Yongnyah,LGD,615,1832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +LGD,4886,Block,Y. Ramavaram,LGD,791,4886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +LGD,6397,Block,Yuksom,LGD,228,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 +LGD,6790,Block,Zachaldara,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +LGD,4696,Block,Zaffergadh,LGD,689,4696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +LGD,4474,Block,Zahirabad,LGD,691,4474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +LGD,6797,Block,Zainapora,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +LGD,6826,Block,Zaingeer,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +LGD,991,Block,Zamania,LGD,146,991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +LGD,15,Block,Zanskar,LGD,6,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +LGD,4093,Block,Zari-Jamani,LGD,500,4093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +LGD,5142,Block,Zarugumalli,LGD,517,5142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +LGD,1896,Block,Zawlnuam,LGD,266,1896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +LGD,1556,Block,Zemithang Circle,LGD,238,1556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +LGD,1967,Block,Zikzak,LGD,663,1967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 +LGD,234,Block,Zira,LGD,31,234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +LGD,1239,Block,Ziradei,LGD,222,1239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +LGD,1695,Block,Ziro Hq,LGD,236,1695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11 +LGD,1810,Block,Zuketsa,LGD,248,1810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +LGD,1772,Block,Zunheboto Sadar,LGD,251,1772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +IN-PIN,110010,PostalCode,New Delhi,LGD,79,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11 +IN-PIN,110024,PostalCode,South East,LGD,670,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 +IN-PIN,110025,PostalCode,South East,LGD,670,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 +IN-PIN,110030,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +IN-PIN,110031,PostalCode,East,LGD,78,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 +IN-PIN,110032,PostalCode,North East,LGD,81,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 +IN-PIN,110036,PostalCode,North,LGD,80,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 +IN-PIN,110037,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +IN-PIN,110038,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +IN-PIN,110039,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +IN-PIN,110040,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +IN-PIN,110041,PostalCode,North West,LGD,82,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 +IN-PIN,110042,PostalCode,North,LGD,80,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 +IN-PIN,110043,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +IN-PIN,110044,PostalCode,South East,LGD,670,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 +IN-PIN,110047,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +IN-PIN,110053,PostalCode,North East,LGD,81,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 +IN-PIN,110057,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +IN-PIN,110059,PostalCode,West,LGD,85,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 +IN-PIN,110061,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +IN-PIN,110068,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +IN-PIN,110071,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +IN-PIN,110072,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +IN-PIN,110073,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +IN-PIN,110074,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +IN-PIN,110076,PostalCode,South East,LGD,670,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 +IN-PIN,110080,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 +IN-PIN,110081,PostalCode,North West,LGD,82,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 +IN-PIN,110082,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +IN-PIN,110084,PostalCode,North,LGD,80,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 +IN-PIN,110085,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +IN-PIN,110086,PostalCode,North West,LGD,82,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 +IN-PIN,110090,PostalCode,North,LGD,80,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 +IN-PIN,110093,PostalCode,East,LGD,78,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 +IN-PIN,110094,PostalCode,North East,LGD,81,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 +IN-PIN,110096,PostalCode,East,LGD,78,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 +IN-PIN,110097,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 +IN-PIN,110099,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 +IN-PIN,121001,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121002,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121003,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121004,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121005,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121006,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121007,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121010,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121012,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121013,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121101,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121102,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 +IN-PIN,121103,PostalCode,Palwal,LGD,619,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +IN-PIN,121105,PostalCode,Palwal,LGD,619,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +IN-PIN,121106,PostalCode,Palwal,LGD,619,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +IN-PIN,121107,PostalCode,Palwal,LGD,619,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 +IN-PIN,122001,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122003,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122004,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122050,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122101,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122102,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122103,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122104,PostalCode,Nuh,LGD,604,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +IN-PIN,122105,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122107,PostalCode,Nuh,LGD,604,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +IN-PIN,122108,PostalCode,Nuh,LGD,604,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +IN-PIN,122413,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122414,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122502,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122503,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122504,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122505,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122506,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 +IN-PIN,122508,PostalCode,Nuh,LGD,604,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 +IN-PIN,123001,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +IN-PIN,123021,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +IN-PIN,123023,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +IN-PIN,123024,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +IN-PIN,123027,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +IN-PIN,123028,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +IN-PIN,123029,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +IN-PIN,123034,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 +IN-PIN,123035,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123101,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123102,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123103,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123106,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123110,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123301,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123302,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123303,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123401,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123411,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123412,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,123501,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 +IN-PIN,124001,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124010,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124021,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124022,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124102,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124103,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124104,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124105,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124106,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124107,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124108,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124109,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124111,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124112,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124113,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124142,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124146,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124201,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124202,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124303,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124401,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124404,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124406,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124411,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124412,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124501,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124504,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124505,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124506,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124507,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124508,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,124513,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124514,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 +IN-PIN,124515,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 +IN-PIN,125001,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +IN-PIN,125004,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +IN-PIN,125005,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +IN-PIN,125006,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +IN-PIN,125007,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 +IN-PIN,125033,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +IN-PIN,125037,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +IN-PIN,125038,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +IN-PIN,125039,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +IN-PIN,125042,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +IN-PIN,125044,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +IN-PIN,125047,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125048,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125049,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +IN-PIN,125050,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125051,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125052,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125053,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125054,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125055,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125058,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125060,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125075,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125076,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125077,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125078,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125101,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125102,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125103,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125104,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125106,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125110,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125111,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125112,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125113,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125120,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125121,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 +IN-PIN,125133,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 +IN-PIN,125201,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 +IN-PIN,125450,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,126101,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126102,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126110,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126111,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126112,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126113,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126114,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126115,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126116,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126125,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126152,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 +IN-PIN,126214,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,126469,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,127021,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127022,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +IN-PIN,127025,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +IN-PIN,127026,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +IN-PIN,127027,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127028,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127029,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127030,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127031,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127032,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127035,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127040,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127041,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127042,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +IN-PIN,127043,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127045,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127046,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127111,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127114,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127201,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127306,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +IN-PIN,127307,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +IN-PIN,127308,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127309,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127310,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +IN-PIN,127311,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 +IN-PIN,127312,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 +IN-PIN,131001,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131021,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131022,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131023,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131024,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131027,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131028,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131029,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131039,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131101,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131102,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131103,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131301,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131302,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131304,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131305,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131306,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131402,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131403,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131408,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,131409,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 +IN-PIN,132001,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132022,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132023,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132024,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132036,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132037,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132039,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132040,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132041,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132046,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132054,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132101,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132102,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132104,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132105,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132106,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132107,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132108,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132113,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132114,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132115,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132116,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132117,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,132122,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132140,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132145,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 +IN-PIN,132157,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 +IN-PIN,133001,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133004,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133005,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133006,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133008,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133101,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133102,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133103,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,133104,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133201,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133202,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133203,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133204,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,133205,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133206,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,133301,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,133302,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,134003,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,134005,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,134007,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,134008,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,134102,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,134103,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,134107,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,134109,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,134117,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,134118,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,134201,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,134202,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,134203,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,134204,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,134205,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 +IN-PIN,135001,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,135002,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,135003,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,135004,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,135021,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,135101,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,135102,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,135103,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,135106,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 +IN-PIN,135133,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 +IN-PIN,136020,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136021,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136026,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136027,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136030,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136033,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136034,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136035,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136038,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136042,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136043,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136044,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136117,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 +IN-PIN,136118,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136119,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136128,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136129,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136130,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136131,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136132,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136135,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136136,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,136156,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 +IN-PIN,140001,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140101,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140102,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140103,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140108,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140109,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140110,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140111,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140112,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140113,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140114,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140115,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140116,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140117,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140118,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140119,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140123,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140124,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140125,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140126,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140127,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140128,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140133,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 +IN-PIN,140201,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140301,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140306,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140307,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140308,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140401,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,140402,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140405,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140406,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140407,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140408,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140412,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140413,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140417,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,140501,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140506,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140507,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140601,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,140602,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140603,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140604,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,140701,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140702,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140802,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,140901,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,141001,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141003,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141007,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141008,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141010,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141012,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141013,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141014,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141015,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141101,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141102,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141103,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141104,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141105,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141107,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141108,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141109,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141110,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141112,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141113,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141114,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141115,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141116,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141117,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141118,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141119,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141120,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141121,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141122,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141123,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141125,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,141126,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141127,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141201,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141202,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141203,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141204,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141205,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141206,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141401,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141411,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,141412,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141413,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141414,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141415,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141416,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141417,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141418,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141419,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141421,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141422,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,141801,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,142001,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142002,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142003,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142011,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142021,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142022,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142023,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142024,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142025,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142026,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142027,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142029,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142030,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142031,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142032,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142033,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142034,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142035,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142036,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 +IN-PIN,142037,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142038,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142039,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142040,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142041,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142042,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,142043,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,142044,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,142045,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142046,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142047,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,142048,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142049,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142050,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,142052,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,142053,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142054,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142055,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142056,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142058,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 +IN-PIN,142060,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,143001,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143008,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143009,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143022,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143101,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143102,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143103,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143105,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143107,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143108,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143109,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143110,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143111,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143112,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143113,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143114,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143115,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143116,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143117,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143118,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143119,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143149,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143201,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143202,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143203,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143204,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143205,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143301,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143302,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143303,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143304,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143305,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143401,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143402,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143406,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143407,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143408,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143409,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143410,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143411,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143412,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143413,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143414,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143415,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143416,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143417,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 +IN-PIN,143419,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143501,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143502,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143503,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143504,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143505,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143506,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143507,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143511,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143512,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143513,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143514,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143515,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143516,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143517,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143518,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143519,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143520,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143521,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143525,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143526,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143527,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143528,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143529,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143530,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143531,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143532,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143533,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143534,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +IN-PIN,143601,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143602,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143603,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,143604,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143605,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,143606,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 +IN-PIN,144001,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144002,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144003,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144004,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144005,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144008,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144020,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144021,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144022,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144024,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144025,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144026,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144027,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144028,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144029,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144030,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144031,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144032,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144033,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144034,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144035,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144036,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144037,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144038,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144039,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144040,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144041,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144042,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144043,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144044,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144101,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144102,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144103,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144104,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144105,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144106,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144201,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144202,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144204,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144207,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144208,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144209,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144210,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144211,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144212,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144213,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144214,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144216,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144221,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144222,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144223,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144224,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144301,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144302,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144303,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144305,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144306,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144311,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144401,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144402,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144403,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144404,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144405,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144406,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144407,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144408,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144409,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144410,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144411,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144415,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144416,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144417,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144418,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144419,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144421,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144422,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144501,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144502,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144503,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144504,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144505,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144506,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144507,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144508,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144509,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144510,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144511,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144512,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144513,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144514,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144515,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144516,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144517,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144518,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144519,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144520,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144521,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144522,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144523,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144524,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144525,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144526,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144527,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144528,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144529,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144530,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144531,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144532,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,144533,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 +IN-PIN,144601,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144602,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144603,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144606,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144620,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144621,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144622,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144623,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144624,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144625,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144626,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144628,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144629,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144630,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144631,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144632,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144633,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144701,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144702,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144703,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144801,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144802,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144803,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144804,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,144805,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144806,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 +IN-PIN,144819,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 +IN-PIN,145001,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +IN-PIN,145022,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +IN-PIN,145023,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +IN-PIN,145024,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,145025,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +IN-PIN,145026,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 +IN-PIN,145027,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +IN-PIN,145029,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +IN-PIN,145101,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 +IN-PIN,146021,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146023,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146024,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146101,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146102,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146103,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146104,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146105,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146106,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146107,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146108,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146109,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146110,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146111,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146112,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146113,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146114,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146115,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,146116,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 +IN-PIN,147001,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147002,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147004,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,147005,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147006,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,147007,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147021,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147101,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147102,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147103,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147104,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,147105,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147111,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147201,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 +IN-PIN,147202,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,147203,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,147301,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 +IN-PIN,148001,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148002,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148017,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148018,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +IN-PIN,148019,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +IN-PIN,148020,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148021,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +IN-PIN,148022,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +IN-PIN,148023,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 +IN-PIN,148024,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148025,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148026,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148027,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148028,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148029,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148030,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148031,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148033,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148034,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148035,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 +IN-PIN,148100,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148101,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148102,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148103,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148104,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148105,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148106,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148107,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148108,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,148109,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 +IN-PIN,151002,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151004,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151005,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151101,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151102,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151103,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151104,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151105,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151106,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151108,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151111,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151201,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151202,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151203,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151204,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151205,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151206,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151207,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151208,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151209,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151210,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,151211,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,151212,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151213,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151214,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,151301,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151302,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151401,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151501,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +IN-PIN,151502,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +IN-PIN,151503,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +IN-PIN,151504,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151505,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151506,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151507,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +IN-PIN,151508,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 +IN-PIN,151509,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151510,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,151511,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 +IN-PIN,152002,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,152003,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,152004,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,152005,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,152020,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152021,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,152022,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152023,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,152024,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152025,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,152026,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,152028,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 +IN-PIN,152031,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 +IN-PIN,152032,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,152033,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152101,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,152107,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,152112,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,152113,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,152114,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,152115,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 +IN-PIN,152116,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152117,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152118,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152121,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152122,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152123,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152124,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152128,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,152132,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 +IN-PIN,160014,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,160055,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,160059,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,160071,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,160104,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 +IN-PIN,171001,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171002,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171003,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171004,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171005,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171006,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171007,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171008,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171009,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171011,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171012,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171013,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171014,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171018,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171019,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171102,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,171103,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171201,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171202,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171203,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171204,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171205,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171206,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171207,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171208,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171209,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171210,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171211,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171212,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171213,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171214,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171215,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171216,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171217,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171218,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171219,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171220,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171221,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171222,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171223,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171224,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171225,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171226,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,171301,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172001,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,172002,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,172021,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172022,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172023,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,172024,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172025,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,172026,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,172027,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172028,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172029,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172030,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172031,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172032,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,172033,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,172034,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172101,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172102,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 +IN-PIN,172103,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172104,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172105,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172106,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172107,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172108,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172109,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172110,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172111,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172112,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172113,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +IN-PIN,172114,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +IN-PIN,172115,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172116,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172117,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +IN-PIN,172118,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 +IN-PIN,172201,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,173001,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173021,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173022,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173023,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173024,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173025,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173026,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173027,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173029,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173030,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173032,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173033,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173101,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173104,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173201,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173202,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173204,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173205,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173206,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173207,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173208,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173209,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173210,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173211,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173212,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173213,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173214,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173215,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173217,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173218,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173220,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173221,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173222,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173223,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173225,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173229,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 +IN-PIN,173233,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173235,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,173236,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,174001,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174002,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174003,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174004,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174005,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174011,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174012,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174013,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174015,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174017,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174021,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174023,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174024,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174026,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174027,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174028,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174029,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174030,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174031,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174032,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174033,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174034,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174035,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174036,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174101,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,174102,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,174103,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 +IN-PIN,174201,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174301,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174302,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174303,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174304,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,174305,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,174306,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174307,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174308,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174309,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,174310,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 +IN-PIN,174311,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,174312,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,174314,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174315,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174316,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174317,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174319,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174320,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174321,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174405,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,174503,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,174505,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,174507,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,175001,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175002,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175003,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175004,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175005,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175006,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175007,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175008,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175009,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175010,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175011,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175012,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175013,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,175014,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175015,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175016,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175017,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175018,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175019,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175020,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175021,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175023,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175024,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175025,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175026,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175027,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175028,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175029,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175030,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175031,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175032,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175033,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175034,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175035,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175036,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175037,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175038,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175039,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175040,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175042,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175045,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175046,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175047,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175048,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175049,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175050,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175051,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175052,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175075,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175101,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175102,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175103,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175104,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175105,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175106,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175121,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175123,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175124,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,175125,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175126,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175128,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175129,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175130,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175131,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175132,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +IN-PIN,175133,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +IN-PIN,175134,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175136,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175138,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175139,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +IN-PIN,175140,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +IN-PIN,175141,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,175142,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 +IN-PIN,175143,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 +IN-PIN,176001,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176002,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176021,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176022,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176023,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176025,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176026,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176027,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176028,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176029,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176030,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176031,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176032,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176033,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176036,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176037,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176038,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176039,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176040,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176041,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176042,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176043,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176044,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176045,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176047,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176048,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176049,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176051,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176052,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176053,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176054,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176055,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176056,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176057,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176058,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176059,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176060,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176061,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176062,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176063,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176064,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176065,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176066,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176071,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176073,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176075,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176076,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176077,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176081,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176082,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176083,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176084,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176085,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176086,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176087,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176088,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176089,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176090,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 +IN-PIN,176091,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176092,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176093,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176094,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176095,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176096,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176097,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176098,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176101,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176102,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176103,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176107,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176108,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176109,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176110,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176111,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,176115,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176125,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176128,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176200,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176201,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176202,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176203,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176204,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176205,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176206,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176207,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176208,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176209,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176210,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176211,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176213,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176214,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176215,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176216,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176217,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176218,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176219,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176225,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176301,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176302,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176303,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176304,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176305,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176306,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176308,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176309,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176310,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176311,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176312,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176313,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176314,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176315,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176316,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176317,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176318,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176319,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176320,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176321,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176323,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176324,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176325,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176326,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 +IN-PIN,176401,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176402,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176403,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176501,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176502,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,176601,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177001,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177006,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177007,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177020,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177021,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177022,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177023,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177024,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177025,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177026,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177027,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177028,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177029,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177031,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177033,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177034,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177038,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177039,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177040,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177041,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177042,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177043,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177044,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177045,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177048,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177101,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177103,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177104,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177105,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177106,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177107,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177108,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177109,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177110,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177111,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177112,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177113,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177114,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177117,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 +IN-PIN,177118,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177119,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177201,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177202,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177203,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177204,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177205,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177206,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177207,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177208,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177209,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177210,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177211,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177212,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177213,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177219,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177220,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 +IN-PIN,177301,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177401,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177501,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,177601,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 +IN-PIN,180001,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180002,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180003,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180006,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180009,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180010,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180011,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180015,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180017,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180019,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,180020,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181101,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181102,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181111,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181121,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181122,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181123,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181131,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181132,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181133,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +IN-PIN,181141,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +IN-PIN,181145,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +IN-PIN,181152,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181201,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181202,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181203,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181205,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181206,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181207,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181221,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,181224,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 +IN-PIN,182101,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182104,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182121,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182122,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182124,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182125,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182126,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182127,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182128,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182141,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182142,PostalCode,Ramban,LGD,621,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +IN-PIN,182143,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182144,PostalCode,Ramban,LGD,621,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +IN-PIN,182145,PostalCode,Ramban,LGD,621,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +IN-PIN,182146,PostalCode,Ramban,LGD,621,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 +IN-PIN,182147,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182148,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182161,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 +IN-PIN,182201,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182202,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182203,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182204,PostalCode,Kishtwar,LGD,620,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +IN-PIN,182205,PostalCode,Kishtwar,LGD,620,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 +IN-PIN,182207,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182221,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182222,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 +IN-PIN,182301,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +IN-PIN,182311,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +IN-PIN,182312,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +IN-PIN,182313,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +IN-PIN,182315,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +IN-PIN,182320,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +IN-PIN,184102,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184104,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184120,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +IN-PIN,184121,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 +IN-PIN,184141,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184142,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184143,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184144,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184148,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184151,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184152,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184201,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184202,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184203,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184204,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184205,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184206,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,184210,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 +IN-PIN,185101,PostalCode,Poonch,LGD,10,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +IN-PIN,185102,PostalCode,Poonch,LGD,10,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +IN-PIN,185121,PostalCode,Poonch,LGD,10,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +IN-PIN,185131,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185132,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185133,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185135,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185151,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185152,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185153,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185154,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 +IN-PIN,185155,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185156,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185201,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185202,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185203,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185211,PostalCode,Poonch,LGD,10,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 +IN-PIN,185212,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185233,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,185234,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 +IN-PIN,190001,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190002,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190003,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190004,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190005,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190006,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190008,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190010,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190011,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190012,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190014,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190015,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190017,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190018,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +IN-PIN,190019,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190020,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190024,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,190025,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,191101,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,191102,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,191103,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,191111,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +IN-PIN,191112,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +IN-PIN,191113,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +IN-PIN,191121,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 +IN-PIN,191131,PostalCode,Ganderbal,LGD,626,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +IN-PIN,191201,PostalCode,Ganderbal,LGD,626,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +IN-PIN,191202,PostalCode,Ganderbal,LGD,626,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 +IN-PIN,192101,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192121,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,192122,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,192123,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,192124,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192125,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192126,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192129,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192201,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192202,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192211,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192212,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192221,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,192231,PostalCode,Kulgam,LGD,622,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +IN-PIN,192232,PostalCode,Kulgam,LGD,622,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +IN-PIN,192233,PostalCode,Kulgam,LGD,622,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 +IN-PIN,192301,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,192302,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,192303,PostalCode,Shopian,LGD,625,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 +IN-PIN,192304,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,192305,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,192401,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 +IN-PIN,193101,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193103,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193108,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193109,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193121,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +IN-PIN,193122,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193123,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193201,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193221,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +IN-PIN,193222,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +IN-PIN,193223,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +IN-PIN,193224,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +IN-PIN,193225,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +IN-PIN,193301,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193302,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 +IN-PIN,193303,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193306,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 +IN-PIN,193401,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193402,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193404,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 +IN-PIN,193411,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 +IN-PIN,193501,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +IN-PIN,193502,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +IN-PIN,193503,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +IN-PIN,193504,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +IN-PIN,193505,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 +IN-PIN,194101,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +IN-PIN,194102,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +IN-PIN,194103,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +IN-PIN,194104,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +IN-PIN,194106,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +IN-PIN,194107,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +IN-PIN,194109,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +IN-PIN,194201,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +IN-PIN,194202,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +IN-PIN,194301,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +IN-PIN,194302,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +IN-PIN,194303,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 +IN-PIN,194401,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 +IN-PIN,201001,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201002,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201003,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201004,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201005,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201007,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201008,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201009,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201010,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201013,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201014,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201015,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201020,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201102,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201201,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201204,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201206,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,201301,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201303,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201304,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201305,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201306,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201307,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201309,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201310,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201311,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201312,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201313,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201314,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201316,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,201318,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,202001,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202002,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202121,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202122,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202123,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202124,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202125,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202126,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202127,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202128,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202129,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202130,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202131,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202132,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202133,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202134,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202135,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202136,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202137,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202138,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202139,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202140,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202141,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202142,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202143,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202145,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202150,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202155,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202165,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202280,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202281,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,202282,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,203001,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203002,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203129,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203131,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203132,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203135,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,203141,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203150,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203155,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,203201,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,203202,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203203,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203205,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203206,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203207,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,203209,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 +IN-PIN,203389,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203390,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203391,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203392,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203393,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203394,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203395,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203396,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203397,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203398,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203399,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203401,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203402,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203403,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203405,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203407,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203408,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203409,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203411,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,203412,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 +IN-PIN,204101,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,204102,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +IN-PIN,204211,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +IN-PIN,204212,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +IN-PIN,204213,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,204214,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +IN-PIN,204215,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,204216,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 +IN-PIN,204217,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +IN-PIN,205001,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205119,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205121,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,205247,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205261,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205262,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205263,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205264,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205265,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205267,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205268,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205301,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205303,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,205304,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 +IN-PIN,206001,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206002,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206003,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206120,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206121,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206122,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206123,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206124,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206125,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206126,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206127,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206128,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206129,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206130,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206131,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206241,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206242,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206243,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206244,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206245,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206246,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206247,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206248,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206249,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206250,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206251,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206252,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,206253,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 +IN-PIN,206255,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 +IN-PIN,207001,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207002,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207003,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207120,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207121,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207122,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207123,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +IN-PIN,207124,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +IN-PIN,207125,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207241,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +IN-PIN,207242,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +IN-PIN,207243,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207244,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207245,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +IN-PIN,207246,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207247,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207248,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207249,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207250,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207301,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207302,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207401,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,207402,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +IN-PIN,207403,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 +IN-PIN,208002,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208003,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208004,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208007,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208008,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208010,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208011,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208012,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208013,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208014,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208016,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208017,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208019,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208020,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208021,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208022,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208023,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208024,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,208027,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209101,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209111,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209112,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209115,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209121,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209125,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209202,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209203,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209204,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209205,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209206,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209208,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209209,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209210,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209214,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209217,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209301,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209302,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209303,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209304,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209305,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209306,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209307,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209308,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209310,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209311,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209312,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 +IN-PIN,209401,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209402,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 +IN-PIN,209501,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209502,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209503,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209504,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209505,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209601,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209602,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209621,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209622,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209625,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209651,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209652,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209720,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209721,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209722,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209723,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209724,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209725,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209726,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209727,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209728,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209729,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209731,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209732,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209733,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209734,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209735,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209736,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209738,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209739,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209743,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209745,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209747,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 +IN-PIN,209749,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 +IN-PIN,209801,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209821,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209825,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209827,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209831,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209841,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209859,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209860,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209861,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209862,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209863,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209864,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209865,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209866,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209867,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209868,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209869,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,209870,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209871,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,209881,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 +IN-PIN,210001,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210120,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210121,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210122,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210123,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210125,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210126,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210128,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210129,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210201,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210202,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210203,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210204,PostalCode,Chitrakoot,LGD,136,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +IN-PIN,210205,PostalCode,Chitrakoot,LGD,136,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +IN-PIN,210206,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210207,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210208,PostalCode,Chitrakoot,LGD,136,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +IN-PIN,210209,PostalCode,Chitrakoot,LGD,136,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 +IN-PIN,210301,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210341,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210421,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +IN-PIN,210422,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210423,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +IN-PIN,210424,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,210425,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210426,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +IN-PIN,210427,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +IN-PIN,210428,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210429,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210430,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210431,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210432,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210433,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 +IN-PIN,210501,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210502,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210504,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210505,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210506,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 +IN-PIN,210507,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 +IN-PIN,211003,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211007,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211008,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211010,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211011,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211012,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211013,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211015,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211016,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,211019,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212104,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212106,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212107,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212108,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212109,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212111,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212201,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212202,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212203,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212204,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212205,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212206,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212207,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212208,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212212,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212213,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212214,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212216,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212217,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212218,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 +IN-PIN,212301,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212302,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212303,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212305,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212306,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212307,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212401,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212402,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212404,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212405,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212502,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212503,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,212507,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,212601,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212620,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212621,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212622,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212631,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212635,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212641,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212645,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212650,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212651,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212652,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212653,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212654,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212655,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212656,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212657,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212658,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212659,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212661,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212663,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212664,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,212665,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 +IN-PIN,214387,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,221001,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221002,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221003,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221004,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221005,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221006,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221007,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221008,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,221009,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,221010,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221011,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221101,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,221103,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221104,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221105,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221106,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221107,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221108,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221109,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221110,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,221111,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,221112,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221115,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,221116,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,221201,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221202,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221204,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221206,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221207,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221208,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221301,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221302,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221303,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221304,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221305,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221306,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221307,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221308,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221309,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221310,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221311,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221313,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221314,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221401,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221402,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221403,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221404,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221405,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 +IN-PIN,221406,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221409,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 +IN-PIN,221502,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,221503,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,221505,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,221507,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,221508,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,221601,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,221602,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,221603,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,221701,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,221705,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,221706,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,221709,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,221711,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,221712,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,221713,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,221715,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,221716,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,221717,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,221718,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,222001,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222002,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222003,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222105,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222109,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222125,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222126,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222127,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222128,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222129,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222131,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222132,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222133,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222135,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222136,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222137,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222138,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222139,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222141,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222142,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222143,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222144,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222145,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222146,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222149,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222161,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222162,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222165,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222170,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222175,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222180,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222181,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222201,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222202,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222203,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,222301,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,222302,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,222303,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,223101,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,223102,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,223103,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,223104,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,223105,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 +IN-PIN,223221,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,223222,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,223223,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,223224,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,223225,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,223226,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,223227,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,224001,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224116,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224117,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224118,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224119,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224120,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224121,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224122,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224123,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224125,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224126,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224127,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224129,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224132,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224133,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224135,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224137,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224139,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224141,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224143,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224145,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224146,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224147,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224149,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224151,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224152,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224153,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224155,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224157,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224158,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224159,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224161,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224164,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224168,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224171,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224172,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224176,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224181,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224182,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224183,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224186,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224188,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224189,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224190,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224195,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224201,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224202,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224203,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224204,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224205,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224206,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224207,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224208,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224209,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224210,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224225,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224227,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224228,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224229,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224230,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224231,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224232,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,224234,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224235,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224238,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 +IN-PIN,224284,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 +IN-PIN,224923,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +IN-PIN,225001,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225003,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225119,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225120,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225121,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225122,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225123,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225124,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225125,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225126,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225201,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225202,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225203,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225204,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225205,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225206,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225207,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225208,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225301,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225302,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225303,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225304,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225305,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225306,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225401,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225403,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225404,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225405,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225409,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225412,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225413,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225414,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225415,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,225416,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 +IN-PIN,226002,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226003,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226004,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226005,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226006,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226008,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226009,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226010,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226011,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226012,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226013,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226015,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226016,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226017,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226018,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226020,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226021,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226022,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226024,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226026,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226028,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226029,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226031,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226101,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226102,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226103,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226104,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226201,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226202,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226203,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226301,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226302,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226303,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226401,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,226501,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 +IN-PIN,227304,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,227405,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227406,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227407,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227408,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227409,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227411,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227412,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227413,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227801,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227805,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227806,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,227807,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227808,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,227809,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227811,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227812,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,227813,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227814,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,227815,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227816,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,227817,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,228001,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,228118,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228119,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228120,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228121,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,228125,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,228131,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228132,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228133,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228141,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228142,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228145,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228151,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228155,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228159,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,228161,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228171,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,228172,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 +IN-PIN,229001,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229010,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229103,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229121,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229122,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229123,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229124,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229125,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229126,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229127,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229128,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229129,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229130,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229135,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229201,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229202,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229203,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229204,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229205,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229206,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229207,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229208,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229209,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229210,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229211,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229212,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229215,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229216,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229301,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229302,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229303,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229304,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229305,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229306,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229307,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229308,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229309,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229310,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229311,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229316,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229401,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229402,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229404,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229405,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229406,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 +IN-PIN,229408,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,229410,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,229411,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,229412,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 +IN-PIN,229413,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,229801,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,229802,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 +IN-PIN,230001,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230002,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230121,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230124,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230125,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230126,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230127,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230128,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230129,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230130,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230131,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230132,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230133,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230134,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230135,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230136,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230137,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230138,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230139,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230141,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230142,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230143,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230144,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230201,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230202,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230204,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230301,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230302,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230304,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230306,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230401,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230402,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230403,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230404,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230405,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230501,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230502,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,230503,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 +IN-PIN,231001,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231205,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231206,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231207,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231208,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231209,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231210,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231211,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231212,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231213,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231215,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231216,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231217,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231218,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231219,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231220,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231221,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231222,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231223,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231224,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231225,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231226,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 +IN-PIN,231301,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231302,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231303,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231304,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231305,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231306,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231307,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231309,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231312,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231313,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231314,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,231501,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 +IN-PIN,232101,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232102,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232103,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232104,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232105,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232106,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232107,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232108,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232109,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232110,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232111,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232118,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232120,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 +IN-PIN,232325,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232326,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232327,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232328,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232329,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232330,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232331,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232332,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232333,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232336,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232339,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232340,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,232341,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233001,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233002,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233221,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233222,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233223,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233224,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233225,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233226,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233227,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233228,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233229,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233230,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233231,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233232,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233233,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233234,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233300,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233301,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233302,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233303,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233304,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233305,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233306,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233307,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233310,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,233311,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,241001,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241121,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241122,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241123,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241124,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241125,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241126,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241127,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241201,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241202,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241203,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241204,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241301,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241302,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241303,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241304,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241305,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241401,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241402,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241403,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241404,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241405,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241406,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,241407,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 +IN-PIN,242001,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242021,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +IN-PIN,242042,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242127,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242220,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242221,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242223,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242226,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242301,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242303,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242305,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242306,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,242307,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242401,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242405,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242406,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 +IN-PIN,242407,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,243001,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243003,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243004,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243005,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243006,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243122,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243123,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243126,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243201,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243202,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243203,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243301,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243302,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243303,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243401,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243402,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243403,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243501,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243502,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243503,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243504,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243505,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243506,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,243601,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243630,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243631,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243632,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243633,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243634,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243635,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243636,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243637,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243638,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243639,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243641,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243720,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243722,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243723,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243724,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243725,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243726,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,243727,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +IN-PIN,243751,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 +IN-PIN,244001,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244102,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244103,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244104,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244105,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244221,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244222,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244225,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244231,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244235,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244236,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244241,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244242,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244251,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244255,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244301,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244302,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +IN-PIN,244303,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +IN-PIN,244304,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244401,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244402,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244410,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +IN-PIN,244411,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244412,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 +IN-PIN,244413,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244414,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244415,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244501,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 +IN-PIN,244504,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244601,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244602,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 +IN-PIN,244701,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +IN-PIN,244712,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,244713,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,244715,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,244716,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,244717,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,244720,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,244901,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +IN-PIN,244921,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +IN-PIN,244922,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +IN-PIN,244924,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +IN-PIN,244925,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 +IN-PIN,245101,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +IN-PIN,245201,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,245205,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +IN-PIN,245206,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,245207,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +IN-PIN,245208,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +IN-PIN,245301,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 +IN-PIN,245304,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 +IN-PIN,246001,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,246113,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246121,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246123,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246124,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246125,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246127,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246128,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246129,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246130,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246131,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246141,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246144,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246146,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246147,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246148,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246149,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246155,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246159,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246161,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246162,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246163,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246164,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246165,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246166,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246167,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246169,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246171,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246172,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246173,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246174,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246175,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246176,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246177,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246178,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246179,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246193,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246194,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246275,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246276,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246277,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246278,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246279,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246285,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,246401,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246419,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246421,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246422,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246424,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246425,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246426,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246427,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246428,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246429,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246431,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246435,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246439,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246440,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246441,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246442,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246443,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246444,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246445,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246446,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246448,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246449,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246453,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246455,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246469,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246471,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246472,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246473,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246474,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246475,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246481,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246482,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246483,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246486,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246487,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246488,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 +IN-PIN,246495,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,246701,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246721,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246722,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246723,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246724,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246725,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246726,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246727,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246728,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246729,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246731,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246732,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246733,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246734,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246735,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246736,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246737,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246745,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246746,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246747,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246749,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246761,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246762,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,246763,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,246764,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 +IN-PIN,247001,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247002,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247120,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247121,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247122,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247129,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247231,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247232,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247340,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247341,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247342,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247343,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247451,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247452,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247453,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247551,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247554,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247656,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247661,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247662,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247663,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247665,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247666,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247667,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247668,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247669,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 +IN-PIN,247670,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247671,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,247771,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,247772,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,247773,PostalCode,Shamli,LGD,660,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 +IN-PIN,247774,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,247775,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,247776,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,247777,PostalCode,Shamli,LGD,660,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 +IN-PIN,247778,PostalCode,Shamli,LGD,660,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 +IN-PIN,248001,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248002,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248003,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248005,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248007,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248008,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248009,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248013,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248019,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248121,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248123,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248124,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248140,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248143,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248145,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248158,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248165,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248179,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248196,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248197,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,248199,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,249001,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,249121,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249122,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249123,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249124,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249125,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249126,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249127,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,249128,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249130,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,249131,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,249132,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249135,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249136,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249137,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249141,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249145,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249146,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249151,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249152,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249155,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249161,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 +IN-PIN,249165,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249171,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249175,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249180,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249181,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249185,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249186,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249192,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249193,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249194,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 +IN-PIN,249196,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249199,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 +IN-PIN,249202,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,249204,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,249205,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,249301,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,249302,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,249304,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 +IN-PIN,249306,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,249401,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,249402,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 +IN-PIN,249404,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,249405,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,249407,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,249408,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 +IN-PIN,250001,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250002,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250004,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250005,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250101,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250103,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250104,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250106,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250110,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250205,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250221,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250222,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250223,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250341,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250342,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250344,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250345,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250401,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250402,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250404,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250406,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250501,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250502,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 +IN-PIN,250601,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250606,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250609,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250611,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250615,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250617,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250619,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250620,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250621,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250622,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250623,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250625,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,250626,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 +IN-PIN,251001,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251002,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251003,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251201,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251202,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251203,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251301,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251305,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251306,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251307,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251308,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251309,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251310,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251311,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251314,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251315,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251316,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251318,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251319,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251320,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,251327,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 +IN-PIN,261001,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261121,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261125,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261131,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261135,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261136,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261141,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261145,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261151,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261201,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261202,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261203,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261204,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261205,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261206,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261207,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261208,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261301,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261302,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261303,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261401,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261402,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261403,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261404,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261405,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 +IN-PIN,261501,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,261502,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,261505,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,261506,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262001,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262121,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262122,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262123,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262124,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262201,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262202,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262203,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262302,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262305,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 +IN-PIN,262308,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,262309,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262310,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262311,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,262401,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,262402,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,262405,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,262406,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,262407,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 +IN-PIN,262501,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262502,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262520,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262521,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262522,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262523,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262524,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262525,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262526,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262527,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262528,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262529,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262530,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262531,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262532,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262533,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262534,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262540,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262541,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262542,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262543,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262544,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262545,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262546,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262547,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262550,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262551,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262552,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262553,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262554,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262555,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262561,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262572,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262576,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 +IN-PIN,262580,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 +IN-PIN,262701,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262702,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262721,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262722,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262723,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262724,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262725,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262726,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262727,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262728,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262801,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262802,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,262803,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262804,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262805,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262901,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262902,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262903,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262904,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262905,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262906,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262907,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,262908,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 +IN-PIN,263001,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263126,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263127,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263128,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263132,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263134,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263135,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263136,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263137,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263138,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263139,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263140,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263142,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263145,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,263148,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,263149,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,263150,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,263151,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,263152,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,263153,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,263156,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263157,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263158,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263159,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 +IN-PIN,263160,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 +IN-PIN,263601,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263619,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263620,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263621,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263622,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263623,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263624,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263625,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263626,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263628,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263629,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263630,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263631,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263632,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263633,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263634,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263635,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263636,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263637,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263638,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263639,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263640,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263641,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263642,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263643,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263645,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263646,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263651,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263652,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263653,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263655,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263656,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263658,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263659,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263660,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263661,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263663,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263664,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263665,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263667,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263676,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263678,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,263679,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 +IN-PIN,263680,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 +IN-PIN,271001,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271002,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271003,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271122,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271123,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271124,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271125,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271126,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271129,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271201,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271203,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271205,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271206,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271207,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271208,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271210,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271301,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271302,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271303,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271305,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271306,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271307,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271309,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271310,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271311,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271312,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271313,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,271319,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271401,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271403,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271502,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271503,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271504,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 +IN-PIN,271602,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271603,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271604,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271607,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271609,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271801,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271802,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271803,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +IN-PIN,271804,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +IN-PIN,271806,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271821,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271824,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271825,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271830,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271831,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +IN-PIN,271835,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271840,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +IN-PIN,271841,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271845,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 +IN-PIN,271851,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271855,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271861,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 +IN-PIN,271865,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271870,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271871,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271872,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271875,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271881,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271882,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271901,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271902,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271903,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,271904,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 +IN-PIN,272001,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272002,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272123,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272124,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272125,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272126,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272127,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272128,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272129,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272130,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272131,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272148,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272150,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272151,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272152,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272153,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272154,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272155,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272161,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272162,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272163,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272164,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272165,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272171,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272172,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272173,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272175,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272176,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272177,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272178,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272181,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272182,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272189,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272190,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272191,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272192,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272193,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272194,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272195,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272199,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272201,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272202,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272203,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272204,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272205,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272206,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272207,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272208,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 +IN-PIN,272270,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272271,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 +IN-PIN,272301,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,272302,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 +IN-PIN,273001,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273002,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273004,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273006,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273007,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273008,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273010,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273013,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273014,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273015,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273016,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273017,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273151,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273152,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273155,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273157,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273158,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273161,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273162,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273163,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273164,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273165,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273201,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273202,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273203,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273207,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273209,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273211,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273212,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273213,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273301,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273302,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273303,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273304,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273305,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273306,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273308,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273309,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273310,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273311,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 +IN-PIN,273401,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273402,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273403,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273404,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273405,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273406,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273407,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273408,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273409,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273411,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273412,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,273413,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 +IN-PIN,274001,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274149,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274182,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274201,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274202,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274203,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274204,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274205,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274206,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274207,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274208,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274301,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274302,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274303,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274304,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274305,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274306,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274307,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274308,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274309,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274401,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274402,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274404,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274405,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274406,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274407,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274408,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274409,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274501,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274502,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274505,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274506,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274508,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274509,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274601,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274602,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274603,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274701,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274702,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274703,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274704,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274705,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274801,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274802,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 +IN-PIN,274806,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,274807,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 +IN-PIN,275101,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275102,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275103,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275105,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275201,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,275202,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,275203,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,275204,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,275205,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 +IN-PIN,275301,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275302,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275303,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275304,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275305,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275306,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,275307,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,276001,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276121,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276122,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276123,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276124,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276125,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276126,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276127,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276128,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276129,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276131,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276135,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276136,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276137,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276138,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276139,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276140,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276141,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276142,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276143,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276201,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276202,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276203,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276204,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276205,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276206,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276207,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276208,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276288,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276301,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276302,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276303,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276304,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276305,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276306,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,276402,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276403,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,276404,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,276405,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 +IN-PIN,276406,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 +IN-PIN,277001,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277121,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277123,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277124,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277201,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277202,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277203,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277204,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277205,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277207,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277208,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277209,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277210,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277211,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277213,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277214,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277216,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277219,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277301,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277302,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277303,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277304,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277401,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277402,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277403,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277501,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277502,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277503,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277504,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,277506,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 +IN-PIN,281001,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281003,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281004,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281005,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281006,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281104,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 +IN-PIN,281121,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281122,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281123,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281201,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281202,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281203,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281204,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281205,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281206,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281301,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281302,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +IN-PIN,281303,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281305,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281306,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +IN-PIN,281307,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 +IN-PIN,281308,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281401,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281403,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281404,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281405,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281406,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281501,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281502,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,281504,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 +IN-PIN,282001,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,282002,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,282004,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,282005,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,282006,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,282007,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,282009,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,282010,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283101,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283102,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283103,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283104,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283105,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283110,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283111,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283112,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283113,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283114,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283115,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283119,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283121,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283122,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283123,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283124,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283125,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283126,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283130,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283135,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283136,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283141,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283142,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283145,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283151,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283152,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283201,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283202,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 +IN-PIN,283203,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283204,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283205,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283206,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,283207,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 +IN-PIN,284001,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284002,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284003,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284120,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284121,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284122,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284123,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,284124,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284126,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284127,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284128,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284135,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284136,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284201,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284202,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284203,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284204,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284205,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284206,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284301,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284302,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284303,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284304,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,284305,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284306,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,284401,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284402,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284403,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284404,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284405,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284406,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,284419,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 +IN-PIN,284501,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 +IN-PIN,285001,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285121,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285122,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285123,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285124,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285125,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285126,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285127,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285128,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285129,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285130,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285201,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285202,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285203,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285204,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285205,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285206,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,285223,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 +IN-PIN,301001,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301018,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301019,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301020,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301021,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301022,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301023,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301024,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301025,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301026,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301027,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301028,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301030,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301035,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301401,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301402,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301404,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301405,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301406,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301407,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301408,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301409,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301410,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301411,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301412,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301413,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301414,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301415,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301418,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301427,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301604,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,301701,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301702,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301703,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301704,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301705,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301706,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301707,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301708,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301709,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301713,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,301714,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,302001,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302002,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302003,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302004,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302006,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302012,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302013,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302015,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302016,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302017,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302018,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302019,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302020,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302021,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302022,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302026,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302027,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302028,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302029,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302031,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302033,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302034,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302037,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302038,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302039,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302041,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302042,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302044,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302046,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,302048,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303001,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303002,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303003,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303004,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303005,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303006,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303007,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303008,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303009,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303012,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303102,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,303103,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303104,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303105,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,303106,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,303107,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,303108,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,303109,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303110,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,303119,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303120,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303123,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303124,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303301,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303302,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303303,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303304,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303305,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303313,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303315,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303323,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303325,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303326,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303327,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303328,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303338,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303348,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303501,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303502,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303503,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303505,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303506,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303507,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303508,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303509,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303510,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303511,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,303601,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303602,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303603,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303604,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303701,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303702,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303704,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303706,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303712,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303801,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303803,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303804,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303805,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303806,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303807,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303901,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303903,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303904,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303905,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,303908,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 +IN-PIN,304001,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304021,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304022,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304023,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,304024,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,304025,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304026,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,304501,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304502,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304503,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304504,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304505,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304507,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304801,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304802,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304803,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,304804,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 +IN-PIN,305001,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305002,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305003,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305004,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305005,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305012,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305021,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305022,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305023,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305024,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305025,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305026,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,305201,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305202,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305203,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305204,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305205,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305206,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305207,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305401,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305402,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305403,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305404,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305405,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305406,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305407,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305408,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305412,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305415,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305601,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305621,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305622,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305623,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305624,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305625,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305627,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305628,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305629,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305630,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305631,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305801,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305802,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305811,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305812,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305813,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305814,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305815,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305816,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305819,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 +IN-PIN,305901,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305921,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305922,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305923,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305924,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305925,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305926,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,305927,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306001,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306021,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306022,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306023,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306101,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306102,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306103,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306104,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306105,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306114,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306115,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306116,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306119,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306126,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306301,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306302,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306303,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306304,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306305,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306306,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306307,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306308,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306401,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306421,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306422,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306501,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306502,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306503,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306504,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306601,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306602,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306603,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306701,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306702,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306703,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306704,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306705,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306706,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306707,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306708,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306709,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,306901,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306902,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,306912,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 +IN-PIN,307001,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307019,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307022,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307023,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307024,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307025,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,307026,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307027,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307028,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307029,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,307030,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,307031,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307032,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307043,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307501,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307510,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307511,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307512,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307513,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307514,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,307515,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,307801,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307802,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 +IN-PIN,307803,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,311001,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311011,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311021,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311022,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311023,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311024,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311025,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311026,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311030,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311201,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311202,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311203,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311204,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,311301,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,311302,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,311401,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311402,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311403,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311404,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311407,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311408,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311601,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311602,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311603,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311604,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311605,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311606,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311801,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311802,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311803,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311804,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311805,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,311806,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 +IN-PIN,312001,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312021,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312022,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312023,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312024,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312025,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312027,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312201,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312202,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312203,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312204,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312205,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312206,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312207,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312401,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312402,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312403,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312404,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312601,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312602,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312603,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312604,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312605,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312606,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312612,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312613,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312614,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312615,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312616,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312619,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312620,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,312623,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312624,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312625,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312626,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312628,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312629,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 +IN-PIN,312901,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,313001,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313003,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,313011,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313022,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,313024,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313026,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313027,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313031,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,313038,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313201,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313202,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313203,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,313204,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313205,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,313206,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313207,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313211,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313301,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313321,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313322,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313323,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313324,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313325,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313327,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313328,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313329,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313330,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313331,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313332,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313333,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313334,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313341,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313342,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313601,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,313602,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,313603,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313604,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313701,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313702,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313703,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313704,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 +IN-PIN,313705,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,313706,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313708,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,313801,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313802,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313803,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313804,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313805,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313901,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313902,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313903,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313904,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313905,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,313906,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 +IN-PIN,314001,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314011,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314021,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314022,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314023,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314024,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314025,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314026,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314027,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,314028,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314029,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314030,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314031,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314032,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,314034,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,314035,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314036,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314037,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314038,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314401,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314402,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314403,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314404,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314406,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314801,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,314804,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 +IN-PIN,321001,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321021,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321022,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,321023,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,321024,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,321025,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321026,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321028,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321201,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,321202,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321203,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321204,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,321205,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,321206,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,321301,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321302,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321303,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321401,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321402,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321403,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321404,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321405,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321406,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321407,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321408,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321409,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321410,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321411,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321601,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321602,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321605,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,321606,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,321607,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,321608,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,321609,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,321610,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,321611,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,321612,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,321613,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,321614,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321615,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,321633,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 +IN-PIN,321642,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 +IN-PIN,322001,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322023,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322024,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322025,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322026,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322027,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322028,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322029,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322030,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322033,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322034,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322201,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322202,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322203,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322204,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322205,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322211,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322212,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322213,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322214,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322215,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322216,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322218,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322219,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322220,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322230,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322234,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322236,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322238,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322240,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 +IN-PIN,322241,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322242,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322243,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322249,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322251,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322252,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322254,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322255,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 +IN-PIN,322701,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322702,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322703,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,322704,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 +IN-PIN,323001,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323021,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323022,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323023,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323024,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323025,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323026,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323301,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323304,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,323306,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,323307,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 +IN-PIN,323601,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323602,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323603,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323613,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323614,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323615,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323616,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323801,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323802,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,323803,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 +IN-PIN,324001,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324002,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324003,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324004,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324005,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324006,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324007,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324008,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324009,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,324010,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325001,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325003,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325004,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325009,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325201,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325202,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325203,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325204,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325205,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325206,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325207,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325208,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325209,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325214,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325215,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325216,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325217,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325218,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325219,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325220,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325221,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325222,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325223,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325224,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,325601,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,325602,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,326001,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326021,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326022,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326023,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326033,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326034,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326035,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326036,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326037,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326038,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326039,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326501,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326502,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326512,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326513,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326514,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326515,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326516,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 +IN-PIN,326517,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,326518,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,326519,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,326520,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,326529,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 +IN-PIN,326530,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 +IN-PIN,327001,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327021,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327022,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327023,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327024,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327025,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327026,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327027,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327031,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327032,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327034,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327601,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327602,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327603,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327604,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327605,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327606,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,327801,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 +IN-PIN,328001,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328021,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328022,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328023,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328024,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328025,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328026,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328027,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328029,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328030,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328031,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,328041,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 +IN-PIN,331001,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331021,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331022,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331023,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331024,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,331025,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,331026,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,331027,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,331028,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,331029,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331031,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331301,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331302,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331303,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331304,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331305,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331402,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331403,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331411,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331501,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331502,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331503,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331504,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331505,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331506,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331507,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331517,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331518,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331701,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331801,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,331802,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 +IN-PIN,331803,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,331811,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,332001,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332002,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332021,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332023,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332024,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332025,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332026,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332027,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332028,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332029,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332030,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332031,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332041,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332042,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332301,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332302,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332303,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332304,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332305,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332307,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332311,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332312,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332315,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332316,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332317,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332318,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332401,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332402,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332403,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332404,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332405,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332406,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332411,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332601,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332602,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332603,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332701,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332702,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332703,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332705,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332706,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332707,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332708,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332709,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332710,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332711,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332712,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332713,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332714,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332715,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332716,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,332718,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332719,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332721,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332722,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332742,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 +IN-PIN,332746,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333001,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333010,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333011,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333012,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333020,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333021,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333022,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333023,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333024,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333025,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333026,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333027,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333028,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333029,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333030,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333031,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333032,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333033,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333034,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333035,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333036,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333041,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333042,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333053,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333055,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333302,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333303,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333304,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333305,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333307,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333308,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333501,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333502,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333503,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333504,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333514,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333515,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333516,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333517,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333701,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333702,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333704,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333705,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333707,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,333801,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 +IN-PIN,334001,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334021,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334022,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334023,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334024,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334201,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334202,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334302,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334303,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334305,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334402,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334601,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334602,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334603,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334604,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334801,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334802,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334803,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334804,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,334808,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 +IN-PIN,335001,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335002,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335021,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335022,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335024,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335025,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335027,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335037,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335038,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335039,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335040,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335041,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335042,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335051,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335061,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335062,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335063,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335064,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335065,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335073,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335501,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335502,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335503,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335504,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335511,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335512,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335513,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335521,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335522,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335523,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335524,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335525,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335526,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335701,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335702,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335703,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335704,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335707,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335708,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335711,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335801,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 +IN-PIN,335802,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335803,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335804,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335805,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,335901,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 +IN-PIN,341001,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341020,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341021,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341022,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341023,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341024,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341025,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341026,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341027,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341028,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341029,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341030,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341031,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341301,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341302,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341303,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341304,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341305,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341306,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341309,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341316,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341317,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341318,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341319,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341501,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341502,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341503,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341504,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341505,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341506,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341507,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341508,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341509,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341510,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341511,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341512,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341513,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341514,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341515,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,341516,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341517,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341518,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341519,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341520,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341533,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341542,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,341551,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,342001,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342005,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342008,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342012,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342013,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342014,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342015,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342021,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342022,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342023,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342024,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342025,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342027,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342028,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342029,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342030,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342037,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342301,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,342302,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342303,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342304,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342305,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342306,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342307,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,342308,PostalCode,Phalodi,LGD,772,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,342309,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342310,PostalCode,Phalodi,LGD,772,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,342311,PostalCode,Phalodi,LGD,772,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,342312,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342314,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342601,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342602,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342603,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342604,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342605,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342606,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342801,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342802,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342901,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 +IN-PIN,342902,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 +IN-PIN,343001,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343002,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343021,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343022,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343023,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343024,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343025,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343027,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343028,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343029,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343030,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343032,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343039,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343040,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343041,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343042,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343048,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,343049,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 +IN-PIN,344001,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344011,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344012,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344021,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344022,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344024,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344025,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344026,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344027,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344031,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344032,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344033,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344034,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344035,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344037,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344043,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344044,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344501,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344502,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344701,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344702,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344703,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344704,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344705,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344706,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 +IN-PIN,344708,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344801,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,344802,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 +IN-PIN,345001,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345021,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345022,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345023,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345024,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345025,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345026,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345027,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345028,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345031,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345033,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,345034,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 +IN-PIN,360002,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360003,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,360004,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360005,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360006,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360020,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360021,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360022,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360023,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360024,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360025,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360026,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360028,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360030,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360035,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,360040,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360045,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,360050,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,360055,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360060,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360070,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360110,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,360311,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360320,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360325,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360330,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360360,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360370,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360375,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360380,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360405,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360410,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360421,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360430,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360440,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360450,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360452,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360460,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360465,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,360470,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360480,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,360485,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,360490,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,360510,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,360515,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,360520,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,360530,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,360531,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,360540,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,360545,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +IN-PIN,360550,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +IN-PIN,360570,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +IN-PIN,360575,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +IN-PIN,360576,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 +IN-PIN,360579,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,360590,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361001,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361002,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361006,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361007,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361010,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361011,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361012,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361013,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361110,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361120,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361130,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361140,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361160,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361162,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361170,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361210,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361220,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361230,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361240,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361250,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361280,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,361305,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361306,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361310,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361315,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361320,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361325,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361330,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361335,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361345,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361347,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,361350,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 +IN-PIN,362001,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,362002,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362011,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362015,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362020,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362030,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362037,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362110,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362120,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362130,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362135,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362140,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362150,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362205,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362215,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362220,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362222,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362225,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362227,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362230,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362240,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362245,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362250,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362255,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362260,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362263,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362265,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362268,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362275,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362310,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362315,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362510,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362520,PostalCode,Diu,LGD,464,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11 +IN-PIN,362530,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362550,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362560,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362565,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362570,PostalCode,Diu,LGD,464,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11 +IN-PIN,362610,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362620,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362625,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362630,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362640,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362650,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 +IN-PIN,362710,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,362720,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 +IN-PIN,363020,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363030,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363040,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363110,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363115,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363310,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363320,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363330,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363351,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363410,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +IN-PIN,363421,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,363423,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,363427,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363430,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,363435,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363440,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363510,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363520,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 +IN-PIN,363530,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363621,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363623,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363630,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363641,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363642,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363643,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363650,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363655,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 +IN-PIN,363660,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363670,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 +IN-PIN,363745,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363750,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363755,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363760,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363765,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363775,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,363780,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 +IN-PIN,364001,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364002,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364004,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364050,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364060,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364070,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364081,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364110,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364120,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364130,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364135,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364140,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364145,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364150,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364210,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364230,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364240,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364250,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364260,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364265,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364270,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,364275,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364280,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364290,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364295,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364310,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364313,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364320,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364330,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364505,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364510,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364515,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,364521,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,364522,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,364525,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,364530,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,364710,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +IN-PIN,364720,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +IN-PIN,364730,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,364740,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364750,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +IN-PIN,364760,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 +IN-PIN,364765,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +IN-PIN,365220,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365410,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365421,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365430,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365435,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365440,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365450,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365455,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365456,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365460,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365480,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365535,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365540,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365541,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365550,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365555,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365560,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365601,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365610,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365620,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365630,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365635,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365640,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365645,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365650,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,365730,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 +IN-PIN,370001,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370015,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370020,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370030,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370040,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370105,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370110,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370115,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370130,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370135,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370140,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370145,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370150,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370155,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370160,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370165,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370201,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370205,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370210,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370405,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370410,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370415,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370421,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370425,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370427,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370430,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370435,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370445,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370450,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370455,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370460,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370465,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370475,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370485,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370490,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370510,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370601,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370605,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370610,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370615,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370620,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370625,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370627,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370630,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370640,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370645,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370650,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370655,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370660,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370665,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370670,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,370675,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 +IN-PIN,380001,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380005,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380006,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380007,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380009,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380013,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380015,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380016,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380021,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380022,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380023,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380026,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380028,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380049,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380050,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380051,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380052,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380054,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380055,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380058,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380059,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380060,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,380061,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382007,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382016,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382028,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382042,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382055,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382110,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382115,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382120,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382130,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382140,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382145,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382150,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382170,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382210,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382213,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382220,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382225,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382230,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382240,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382245,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382250,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382255,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +IN-PIN,382260,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382265,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382305,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382308,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382315,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382320,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382321,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382330,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382345,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382355,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382405,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382415,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382418,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382421,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382422,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382423,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382424,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382425,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382426,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382427,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382428,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382430,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382433,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382435,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382443,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382445,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382449,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382450,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 +IN-PIN,382455,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382460,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382463,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382465,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382470,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382475,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382480,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382481,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382610,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382620,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382630,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382640,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382650,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382721,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382722,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,382725,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382729,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382735,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382740,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382810,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382835,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382845,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,382855,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,383001,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383002,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383010,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383030,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383110,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383120,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383205,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383210,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383215,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383220,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383225,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383230,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383235,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383240,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383245,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383246,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383250,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383251,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383255,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383260,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383270,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383275,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383276,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383305,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383307,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383310,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383315,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383316,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383317,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383320,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383325,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383330,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383335,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383340,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383345,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383350,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383355,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383410,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383421,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383422,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383430,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383434,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383440,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383450,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 +IN-PIN,383460,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,383462,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 +IN-PIN,384001,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384002,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384003,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384005,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384110,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384120,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384130,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384135,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384140,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384151,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384160,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384170,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384220,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384221,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384225,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384229,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384230,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384240,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384241,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384245,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384246,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384255,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384260,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384265,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384266,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384272,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384275,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384285,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384290,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,384305,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384310,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384315,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384320,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384325,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384330,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384335,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384340,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384345,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384355,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384360,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384410,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384412,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384415,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 +IN-PIN,384421,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384430,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384435,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384440,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384441,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 +IN-PIN,384445,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384450,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384455,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384460,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384465,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384470,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384515,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384520,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384530,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384540,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384550,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384560,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384565,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,384570,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 +IN-PIN,385001,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385010,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385110,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385120,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385130,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385135,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385210,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385310,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385320,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385330,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +IN-PIN,385340,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,385350,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,385360,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 +IN-PIN,385410,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385421,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385505,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385510,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385515,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385520,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385530,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385535,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385540,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385545,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385550,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385555,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385560,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 +IN-PIN,385565,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +IN-PIN,385566,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +IN-PIN,385570,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +IN-PIN,385575,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 +IN-PIN,387001,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387002,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387110,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387115,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,387120,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387130,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387210,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,387220,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387230,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387240,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,387305,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387310,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,387315,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387320,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387325,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387330,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387335,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387340,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387345,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,387350,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387355,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387360,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387365,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387370,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387375,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,387380,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,387430,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387510,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387520,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387530,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,387540,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387550,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387560,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387570,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387610,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387620,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387630,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387635,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387640,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387650,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,387710,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,388001,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388110,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388130,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388140,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388150,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388160,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388170,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388180,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388205,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388210,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388215,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388220,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388225,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,388230,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,388235,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388245,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,388250,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 +IN-PIN,388255,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388260,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,388265,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,388270,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,388305,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388307,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388310,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388315,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388320,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388325,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388330,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388335,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388340,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388345,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388350,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388355,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388360,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388365,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388370,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388410,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388421,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388430,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388440,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388450,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388460,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388465,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388470,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388480,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388510,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388520,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388530,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388540,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388543,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388545,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388550,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388560,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388570,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388580,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388590,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388610,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388620,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388625,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388630,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388640,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 +IN-PIN,388710,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,388713,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389002,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389110,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,389115,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389120,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389130,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389140,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389146,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389151,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389152,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389154,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389155,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389160,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389170,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389172,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389175,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389180,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389210,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,389220,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,389230,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,389235,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,389250,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,389260,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 +IN-PIN,389310,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389320,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389330,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389350,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389370,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,389380,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389382,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 +IN-PIN,389390,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 +IN-PIN,390001,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390003,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390004,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390009,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390010,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390011,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390012,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390013,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390014,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390019,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390020,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390022,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390023,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390024,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,390025,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391101,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391105,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391107,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391110,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391115,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391120,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +IN-PIN,391125,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391130,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391135,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391140,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391145,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391150,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391152,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391156,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391160,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391165,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391168,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391170,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 +IN-PIN,391210,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391220,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391240,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391243,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391244,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391250,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391310,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391320,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391330,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391340,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391350,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391410,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391421,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391430,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391440,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391445,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391450,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391510,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391520,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391530,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391740,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391745,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391760,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391761,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391770,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391774,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391775,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391776,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391780,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,391810,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392001,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392011,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392012,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392020,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392025,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392030,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392035,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392040,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392110,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392130,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392140,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392155,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392180,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,392210,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,392220,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,392310,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,393010,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,393020,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,393025,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +IN-PIN,393030,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,393040,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +IN-PIN,393041,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +IN-PIN,393050,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +IN-PIN,393105,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 +IN-PIN,393110,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,393115,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,393125,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,393130,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,393135,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,393140,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +IN-PIN,393151,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +IN-PIN,393155,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 +IN-PIN,394101,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394105,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394107,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394110,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,394112,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394115,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,394116,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,394120,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,394125,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,394130,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394140,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394150,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394155,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394160,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394163,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394170,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394180,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394185,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394190,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394210,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394221,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394230,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394235,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394240,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394246,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394248,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394250,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394270,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394305,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394310,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394315,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394317,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394320,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394325,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394327,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394330,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394335,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394340,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394345,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394350,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394352,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394355,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394370,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394375,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394380,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394405,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394410,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394421,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394430,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394440,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394445,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394510,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394516,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394517,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394520,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394530,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394540,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394550,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394601,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394620,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394630,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394635,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394640,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394650,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394651,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394652,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394655,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394660,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394670,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394680,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 +IN-PIN,394690,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,394710,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +IN-PIN,394715,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +IN-PIN,394716,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +IN-PIN,394720,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +IN-PIN,394730,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 +IN-PIN,394810,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 +IN-PIN,395001,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395002,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395003,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395004,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395005,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395006,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395007,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395008,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395009,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395010,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395011,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395012,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395013,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395017,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,395023,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,396001,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396007,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396020,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396030,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396035,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396040,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396045,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396050,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396051,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396055,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396060,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396065,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396066,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396067,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396105,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396110,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396115,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396120,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396125,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396126,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396130,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396135,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396140,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396145,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396150,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396155,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396165,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396170,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396180,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396185,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396191,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396193,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396195,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396210,PostalCode,Daman,LGD,463,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11 +IN-PIN,396215,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396220,PostalCode,Dadra And Nagar Haveli,LGD,465,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11 +IN-PIN,396230,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396235,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396240,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396310,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396321,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396325,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396350,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396360,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396370,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396375,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396380,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396385,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 +IN-PIN,396403,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396406,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396409,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396412,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396415,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396418,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396421,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396427,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396430,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396433,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396436,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396439,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396445,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396450,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396460,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396463,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396466,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396469,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396472,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396475,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396510,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 +IN-PIN,396521,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396530,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396540,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396560,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396570,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396580,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,396590,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 +IN-PIN,400042,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400043,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400049,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400050,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400051,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400052,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400053,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400057,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400059,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400060,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400061,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400063,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400064,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400065,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400066,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400067,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400068,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400069,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400070,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400071,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400072,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400074,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400076,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400078,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400079,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400080,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400081,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400083,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400086,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400087,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400088,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400091,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400092,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400093,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400095,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400096,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400097,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400098,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400099,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400101,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400102,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400103,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400104,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400601,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400602,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400603,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400605,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400606,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400607,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400608,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400612,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400615,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400701,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400702,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,400703,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,400704,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,400706,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400707,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,400708,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400709,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,400710,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,401101,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401102,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401103,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401106,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,401107,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,401201,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401202,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401203,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401204,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401206,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,401207,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401208,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401301,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401302,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401303,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401304,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401305,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,401401,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401402,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401403,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401404,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401405,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401501,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401502,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401503,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401504,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401601,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401602,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401603,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401604,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401605,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401606,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401607,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401608,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401701,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401702,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,401703,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,402101,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402102,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402103,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402104,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402105,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402106,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402107,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402108,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402109,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402110,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402111,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402112,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402113,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402114,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402115,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402116,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402117,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402120,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402122,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402126,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402201,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402202,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402203,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402204,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402207,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402208,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402209,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402301,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402302,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402303,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402304,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402305,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402306,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402307,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402308,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402309,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402401,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402402,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402403,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,402404,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,403001,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403002,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403005,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403006,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403101,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403102,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403103,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403104,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403105,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403106,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403107,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403108,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403110,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403114,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403115,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403202,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403204,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403401,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403402,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403403,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403404,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403406,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403410,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403501,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403502,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403503,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403504,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403505,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403506,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403507,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403508,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403509,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403510,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403511,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403512,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403513,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403515,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403516,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403517,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403523,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403524,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403527,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403529,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403530,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 +IN-PIN,403601,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403701,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403702,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403703,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403704,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403705,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403706,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403707,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403708,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403709,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403710,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403711,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403712,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403713,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403714,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403715,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403716,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403717,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403718,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403719,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403720,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403721,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403722,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403723,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403724,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403725,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403728,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 +IN-PIN,403731,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403801,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403803,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,403806,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 +IN-PIN,410101,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410201,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410202,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410203,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410205,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410206,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 +IN-PIN,410207,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410208,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410209,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410210,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410216,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410218,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410220,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410221,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410222,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,410301,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410401,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410402,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410403,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410405,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410406,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410501,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410502,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410503,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410504,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410505,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410506,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410507,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410508,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410509,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410510,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410511,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410512,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410513,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410515,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,410516,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411001,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411006,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411012,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411014,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411015,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411017,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411019,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411020,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411021,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411023,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411024,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411025,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411026,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411027,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411028,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411031,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411033,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411035,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411036,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411038,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411040,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411041,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411043,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411044,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411045,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411046,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411047,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411048,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411051,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411052,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411057,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411058,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411060,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411061,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411062,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411067,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411068,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411069,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411070,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,411073,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412101,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412102,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412103,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412104,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412105,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412106,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412107,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412108,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412109,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412110,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412112,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412115,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412201,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412202,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412203,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412204,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412205,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412206,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412207,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412208,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412209,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412210,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412211,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412212,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412213,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412214,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412215,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412216,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412218,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412219,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412220,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412301,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412303,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412304,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412305,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412306,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412307,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412308,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412311,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412312,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412401,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412402,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412403,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412404,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412405,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412406,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412408,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412409,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412411,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412412,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,412801,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,412802,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,412803,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,412804,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,412805,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,412806,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,413001,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413002,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413004,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413006,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413007,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413008,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413101,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413102,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413103,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413104,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413105,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413106,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413107,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413108,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413109,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413110,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413111,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413112,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413113,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413114,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413115,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413116,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413118,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413120,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413130,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413132,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413133,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,413201,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413202,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413203,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413204,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413205,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413206,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413207,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,413208,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413209,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413210,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413211,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413212,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413213,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413214,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413215,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413216,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413217,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413218,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413219,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413220,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413221,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413222,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413223,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413224,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413226,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413227,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413228,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413229,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,413248,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413249,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,413250,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413251,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413252,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413253,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413255,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413301,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413302,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413303,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413304,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413305,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413306,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413307,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413308,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413309,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413310,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413314,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413315,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413317,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413319,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413322,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413324,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413401,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413402,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413403,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413404,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413405,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413406,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413409,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413410,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413411,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413412,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 +IN-PIN,413502,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413503,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413504,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413505,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413506,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413507,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413508,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413509,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413510,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413511,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413512,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413513,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413514,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413515,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413516,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413517,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413518,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413519,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413520,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413521,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413522,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413523,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413524,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413525,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413526,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413527,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413528,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413529,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413530,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413531,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413532,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413534,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413544,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413581,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413582,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413601,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413602,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413603,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413604,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413605,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413606,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413607,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,413608,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413623,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413624,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 +IN-PIN,413701,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413702,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413703,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413704,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413705,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413706,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413707,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413708,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413709,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413710,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413711,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413712,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413713,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413714,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413715,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413716,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413717,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413718,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413719,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413720,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413721,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413722,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413723,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413725,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413726,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413728,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413736,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413737,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413738,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413739,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,413801,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 +IN-PIN,414001,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414002,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414003,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414005,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414006,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414101,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414102,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414103,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414105,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414106,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414111,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414113,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414201,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414202,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,414203,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,414204,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,414205,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,414208,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,414301,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414302,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414303,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414304,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414305,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414306,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414401,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414402,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414403,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414501,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414502,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414503,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414504,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414505,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414601,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414602,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414603,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414604,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414605,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414606,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414607,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414609,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,414701,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,415001,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415002,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415003,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415004,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415010,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415011,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415012,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415013,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415014,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415015,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415019,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415020,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415021,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415022,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415023,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415101,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,415102,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415103,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415104,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415105,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415106,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415107,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415108,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415109,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415110,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415111,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415112,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415114,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415115,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415116,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415122,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415124,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415202,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415203,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415205,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415206,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415207,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415208,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415209,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415211,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415212,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415213,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 +IN-PIN,415214,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415301,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415302,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415303,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415304,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415305,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415306,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415307,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415308,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415309,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415310,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415311,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415312,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415313,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415315,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415401,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415402,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415403,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415404,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415405,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415406,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415407,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415408,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415409,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415410,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415411,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415412,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415413,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415414,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415415,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,415501,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415502,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415503,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415504,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415505,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415506,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415507,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415508,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415509,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415510,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415511,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415512,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415513,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415514,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415515,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415516,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415517,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415518,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415519,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415520,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415521,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415522,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415523,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415524,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415525,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415526,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415527,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415528,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415530,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415536,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415537,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415538,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415539,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415540,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 +IN-PIN,415601,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415602,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415603,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415604,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415605,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415606,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415607,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415608,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415609,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415610,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415611,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415612,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415613,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415614,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415615,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415616,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415617,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415619,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415620,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415621,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415626,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415628,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415629,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415634,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415637,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415639,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415640,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415641,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415643,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415701,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415702,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415703,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415705,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415706,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415708,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415709,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415710,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415711,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415712,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415713,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415714,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415715,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415716,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415717,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415718,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415719,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415720,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415722,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415724,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415726,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415727,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415728,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415729,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415730,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415801,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415802,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415803,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415804,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415805,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415806,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,415807,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416001,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416004,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416005,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416006,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416010,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416011,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416013,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416101,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416102,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416103,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416104,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416105,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416106,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416107,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416108,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416109,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416110,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416111,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416112,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416113,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416114,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416115,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416118,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416119,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416120,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416121,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416122,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416138,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416143,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416145,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416201,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416202,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416203,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416204,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416205,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416206,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416207,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416208,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416209,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416210,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416211,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416212,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416213,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416214,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416215,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416216,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416218,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416219,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416220,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416221,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416223,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416229,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416230,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416231,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416232,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416234,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416235,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416236,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416301,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416302,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416303,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416304,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416305,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416306,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416307,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416308,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416309,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416310,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416311,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416312,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416313,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416314,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416315,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416316,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416401,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416402,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416403,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416404,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416405,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416406,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416407,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416408,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416409,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416410,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416411,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416412,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416413,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416414,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416415,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416416,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416417,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416418,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416419,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416420,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416436,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 +IN-PIN,416501,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416502,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416503,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416504,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416505,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416506,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416507,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416508,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416509,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416510,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416511,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416512,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416513,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416514,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416515,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416516,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416517,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416518,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416519,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416520,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416521,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416522,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416523,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416524,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416525,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416526,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416527,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416528,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416529,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416531,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416534,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416549,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416550,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416551,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416552,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 +IN-PIN,416601,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416602,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416603,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416604,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416605,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416606,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416608,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416609,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416610,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416611,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416612,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416613,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416614,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416615,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416616,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416620,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416623,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416626,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416628,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416630,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416632,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416701,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416702,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416703,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416704,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416705,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416707,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416709,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416712,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416713,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 +IN-PIN,416801,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416803,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416804,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416805,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416806,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416807,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416810,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416811,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416812,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,416813,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 +IN-PIN,421002,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421101,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421102,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421103,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421201,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421202,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421203,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421204,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421207,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421301,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421302,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421303,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,421305,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421306,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421308,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421311,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421312,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 +IN-PIN,421401,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421402,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421403,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421501,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421502,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421503,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421505,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421506,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421601,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421602,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,421605,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 +IN-PIN,422001,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422003,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422004,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422006,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422007,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422009,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422010,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422013,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422101,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422102,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422103,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422104,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422105,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422112,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422113,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422201,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422202,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422203,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422204,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422205,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422206,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422207,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422208,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422209,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422210,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422211,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422212,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422213,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422214,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422215,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422222,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422301,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422302,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422303,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422304,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422305,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422306,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422308,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422401,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422402,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422403,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422502,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422601,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422602,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422603,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422604,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422605,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422606,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,422608,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422610,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422611,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422620,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,422622,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423101,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423102,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423104,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423105,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423106,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423107,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423108,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423109,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423110,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423111,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423117,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423201,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423202,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423203,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423204,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423205,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423206,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423208,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423212,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423213,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423301,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423302,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423303,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423401,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423402,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423403,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423501,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423502,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,423601,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423602,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423603,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423604,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423605,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423607,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 +IN-PIN,423701,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,423702,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,423703,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,424001,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424002,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424005,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424006,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424101,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424102,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424103,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424104,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424105,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424106,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424107,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424108,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424109,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 +IN-PIN,424119,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424201,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424202,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424203,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424204,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424205,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424206,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424207,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424208,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,424301,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424302,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424303,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424304,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424305,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424306,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424307,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424308,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424309,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424310,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424311,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,424318,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425002,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425003,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425101,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425102,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425103,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425104,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425105,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425107,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425108,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425109,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425110,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425111,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425112,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425113,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425114,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425115,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425116,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425201,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425203,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425301,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425302,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425303,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425304,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425305,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425306,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425307,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425308,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425309,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425310,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425311,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425327,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425401,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425402,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425403,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425404,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425405,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425406,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425407,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425408,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425409,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425410,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425411,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425412,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425413,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425414,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425415,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425416,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425417,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425418,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425419,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425420,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425421,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425422,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425423,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425424,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425426,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425427,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425428,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 +IN-PIN,425432,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425442,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425444,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425452,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 +IN-PIN,425501,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425502,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425503,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425504,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425505,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425506,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425507,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425508,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,425524,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 +IN-PIN,431001,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431002,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431004,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431005,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431006,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431007,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431008,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431010,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431101,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431102,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431103,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431104,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431105,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431107,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431109,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431110,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431111,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431112,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431113,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431114,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431115,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431116,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431117,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431118,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431120,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431121,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431122,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431123,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431124,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431125,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431126,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431127,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431128,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431129,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431130,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431131,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431132,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431133,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431134,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431135,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431136,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431137,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431142,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431143,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431144,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431147,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431148,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431150,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431151,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431152,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431153,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431154,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431202,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 +IN-PIN,431204,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431205,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431206,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431207,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431208,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431209,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431211,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431212,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431213,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431214,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431215,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431401,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431402,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431501,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431502,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431503,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431504,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431505,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431506,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431507,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 +IN-PIN,431508,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431509,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431510,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431511,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431512,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431513,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431514,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431515,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431516,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431517,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431518,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431519,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431521,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431522,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 +IN-PIN,431523,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431530,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 +IN-PIN,431536,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431537,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431540,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431541,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431542,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431601,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431602,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431603,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431604,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431605,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431606,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431701,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431702,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431703,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431704,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431705,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431707,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431708,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431709,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431710,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431711,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431712,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 +IN-PIN,431713,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431714,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431715,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431716,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431717,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431718,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431719,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431720,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 +IN-PIN,431721,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431722,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431723,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431724,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431731,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431736,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431741,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431742,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431743,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431745,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431746,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431750,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431801,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431802,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431803,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431804,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431805,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431806,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431807,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431808,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431809,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431810,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,431811,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 +IN-PIN,440001,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440002,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440003,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440005,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440007,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440008,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440010,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440012,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440013,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440014,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440018,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440022,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440023,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440024,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440025,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440026,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440027,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440030,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440033,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440034,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440035,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440036,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,440037,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441001,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441002,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441101,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441102,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441103,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441104,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441105,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441106,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441107,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441108,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441109,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441110,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441111,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441112,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441113,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441122,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441123,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441201,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441202,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441203,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441204,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441205,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441206,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441207,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,441208,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,441209,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,441210,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441212,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441214,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441215,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441217,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,441221,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441222,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441223,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441224,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441225,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441226,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,441301,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441302,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441303,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441304,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441305,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441306,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441401,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441404,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441501,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441502,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 +IN-PIN,441601,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441614,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441701,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441702,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441801,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441802,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441803,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441804,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441805,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441806,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441807,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +IN-PIN,441809,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441901,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +IN-PIN,441902,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +IN-PIN,441903,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441904,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441905,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441906,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441907,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441908,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441909,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441910,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441911,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +IN-PIN,441912,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441913,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441914,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441915,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,441916,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 +IN-PIN,441924,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 +IN-PIN,442001,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442101,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442102,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442104,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442105,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442106,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442107,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442111,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442201,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442202,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442203,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442301,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442302,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442304,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442305,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442306,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442307,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 +IN-PIN,442401,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442402,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442403,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442404,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442406,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442503,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442504,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442505,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442507,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442603,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442604,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442605,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442606,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442701,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442702,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442703,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442704,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442705,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442707,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442709,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442710,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,442902,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442903,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442904,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442905,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442906,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442907,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442908,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442914,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442916,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442917,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442918,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 +IN-PIN,442919,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 +IN-PIN,443001,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443002,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443101,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443102,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443103,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443104,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443106,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443112,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443201,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443202,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443203,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443204,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443206,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443301,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443302,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443303,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443304,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443308,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443401,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443402,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443403,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,443404,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444001,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444002,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444003,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444004,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444005,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444006,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444101,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444102,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444103,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444104,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444105,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444106,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444107,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444108,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444109,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444110,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444111,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444117,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444126,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444201,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444202,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444203,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444204,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444301,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444302,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444303,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444304,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444306,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444311,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444312,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 +IN-PIN,444401,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444402,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444403,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +IN-PIN,444404,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +IN-PIN,444405,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444407,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444409,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +IN-PIN,444501,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444502,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444503,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444504,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +IN-PIN,444505,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +IN-PIN,444506,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +IN-PIN,444507,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +IN-PIN,444510,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 +IN-PIN,444511,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 +IN-PIN,444602,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444604,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444605,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444606,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444701,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444702,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444704,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444705,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444706,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444707,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444708,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444709,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444710,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444711,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444717,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444719,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444720,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444723,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444801,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444802,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444803,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444804,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444805,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444806,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444807,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444808,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444809,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444810,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444813,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444901,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444902,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444903,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444904,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444905,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444906,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444907,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444908,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,444915,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 +IN-PIN,445001,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445002,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445101,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445102,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445103,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445105,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445106,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445109,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445110,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445201,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445202,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445203,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445204,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445205,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445206,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445207,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445209,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445210,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445211,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445215,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445216,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445230,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445301,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445302,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445303,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445304,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445305,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445306,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445307,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445308,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445324,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445401,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,445402,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 +IN-PIN,450001,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,450051,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450110,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450112,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450114,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450116,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450117,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450119,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450221,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +IN-PIN,450331,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +IN-PIN,450332,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +IN-PIN,450337,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450445,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +IN-PIN,450551,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450554,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450661,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +IN-PIN,450771,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450881,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,450991,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,451001,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451111,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451113,PostalCode,Khargone (West Nimar),LGD,414,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +IN-PIN,451115,PostalCode,Khargone (West Nimar),LGD,414,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +IN-PIN,451220,PostalCode,Khargone (West Nimar),LGD,414,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +IN-PIN,451221,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451224,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451225,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451228,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451331,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +IN-PIN,451332,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 +IN-PIN,451335,PostalCode,Khargone (West Nimar),LGD,414,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 +IN-PIN,451440,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451441,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 +IN-PIN,451442,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451447,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451449,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451551,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451556,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451660,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451666,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451770,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,451881,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 +IN-PIN,452001,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452002,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452003,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452006,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452007,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452010,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452011,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452012,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452015,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452016,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,452020,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453001,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453111,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453112,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453115,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453220,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453331,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453441,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453551,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453552,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453555,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453661,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,453771,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 +IN-PIN,454001,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454010,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454111,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454116,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454221,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454331,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454335,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454441,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454446,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454449,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454552,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454660,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454665,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454773,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454774,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,454775,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 +IN-PIN,455001,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455111,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455115,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455116,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455118,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455221,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455223,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455227,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455332,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455336,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455339,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455440,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,455459,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 +IN-PIN,456001,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456003,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456006,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456010,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456221,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456222,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456224,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456313,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456331,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456335,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456337,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456440,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456441,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +IN-PIN,456443,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456550,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456661,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456664,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456665,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456668,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456770,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456771,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,456776,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 +IN-PIN,457001,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457114,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457118,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457119,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457222,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457226,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457331,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457333,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457336,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457339,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457340,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457441,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457550,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457555,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 +IN-PIN,457661,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +IN-PIN,457770,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +IN-PIN,457772,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +IN-PIN,457773,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +IN-PIN,457775,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +IN-PIN,457777,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +IN-PIN,457779,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 +IN-PIN,457882,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +IN-PIN,457885,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +IN-PIN,457887,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +IN-PIN,457888,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +IN-PIN,457990,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +IN-PIN,457993,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 +IN-PIN,458001,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458002,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458110,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458113,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458116,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458118,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458220,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458226,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458228,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458330,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458336,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458339,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458389,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458441,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458468,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458470,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 +IN-PIN,458553,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458556,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458558,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458664,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458667,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458669,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458771,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458775,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458778,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458880,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458883,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458888,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458895,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,458990,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 +IN-PIN,460001,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460004,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460110,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460220,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460225,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460330,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460440,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460443,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460447,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460449,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460551,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460553,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460554,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460557,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460661,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460663,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460665,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460666,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,460668,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 +IN-PIN,461001,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461005,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461110,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461111,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461115,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461116,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461122,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461221,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461223,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461228,PostalCode,Harda,LGD,408,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +IN-PIN,461331,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,461335,PostalCode,Harda,LGD,408,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +IN-PIN,461441,PostalCode,Harda,LGD,408,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 +IN-PIN,461446,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461551,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461661,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461668,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461771,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461775,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461881,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,461990,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 +IN-PIN,462001,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462010,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462016,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462022,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462023,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462026,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462030,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462036,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462037,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462038,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462039,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462040,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462041,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462042,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462043,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462044,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462045,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462046,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462047,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462101,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,462120,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,463106,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,463111,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,464001,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464111,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464113,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464114,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464220,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464221,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464224,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464226,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464228,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464240,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,464258,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464331,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464334,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464337,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 +IN-PIN,464551,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464570,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464573,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464651,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464661,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464665,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464668,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464671,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464672,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464770,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464774,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464881,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464884,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464886,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464986,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464990,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,464993,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 +IN-PIN,465001,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465106,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465110,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465113,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465116,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465118,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465220,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465223,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465226,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465227,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465230,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +IN-PIN,465333,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465335,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465337,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465339,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 +IN-PIN,465441,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +IN-PIN,465445,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +IN-PIN,465447,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +IN-PIN,465449,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +IN-PIN,465550,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 +IN-PIN,465661,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465667,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465669,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465674,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465677,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465679,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465680,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465683,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465685,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465687,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465689,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465691,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,465693,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,465697,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 +IN-PIN,466001,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466111,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466113,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466114,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466115,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466116,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466118,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466120,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466125,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466221,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466331,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 +IN-PIN,466445,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466446,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466651,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466661,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,466665,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 +IN-PIN,470001,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470002,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470004,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470021,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470051,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470113,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470115,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470117,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470118,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470119,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470120,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470125,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470221,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470223,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470226,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470227,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470228,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470229,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470232,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470235,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470335,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470337,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470339,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470340,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470441,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470442,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470661,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470663,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470664,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470666,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470669,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 +IN-PIN,470672,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470673,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470675,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470771,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470772,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470775,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470880,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,470881,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 +IN-PIN,471001,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471101,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471105,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471111,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471201,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471301,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471311,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471313,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471315,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471318,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471405,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471408,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471411,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471501,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471510,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471515,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471516,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471525,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471606,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,471625,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 +IN-PIN,472001,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +IN-PIN,472005,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +IN-PIN,472010,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +IN-PIN,472101,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +IN-PIN,472111,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,472115,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +IN-PIN,472118,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +IN-PIN,472221,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +IN-PIN,472246,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +IN-PIN,472331,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 +IN-PIN,472336,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +IN-PIN,472337,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +IN-PIN,472339,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +IN-PIN,472442,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +IN-PIN,472445,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +IN-PIN,472447,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 +IN-PIN,473001,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473101,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473105,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473110,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473111,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473113,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473115,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473118,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473222,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473226,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473249,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473287,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 +IN-PIN,473330,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473331,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473332,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473335,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473440,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473443,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473444,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473445,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473446,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 +IN-PIN,473551,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473585,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473660,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473662,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473665,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473770,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473774,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473775,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473781,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473793,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473865,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473880,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473885,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473990,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,473995,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 +IN-PIN,474001,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,474002,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,474003,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,474004,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,474005,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,474006,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,474010,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,474020,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,475001,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,475002,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,475005,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,475110,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,475115,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,475220,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,475330,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 +IN-PIN,475335,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,475336,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,475661,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,475671,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,475673,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,475675,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,475682,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,475685,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,475686,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 +IN-PIN,476001,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476111,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476115,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476134,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476219,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476221,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476224,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476228,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476229,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476332,PostalCode,Sheopur,LGD,431,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +IN-PIN,476335,PostalCode,Sheopur,LGD,431,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +IN-PIN,476337,PostalCode,Sheopur,LGD,431,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +IN-PIN,476339,PostalCode,Sheopur,LGD,431,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 +IN-PIN,476355,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,476444,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,476554,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 +IN-PIN,477001,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477105,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477111,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477116,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477117,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477222,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477227,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477331,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477332,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477333,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477335,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477441,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477445,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477446,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477447,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477449,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477555,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477557,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,477660,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 +IN-PIN,480001,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480003,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480105,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,480106,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,480107,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480108,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480109,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,480110,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480111,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480112,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480115,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480221,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480223,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480224,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480331,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480334,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,480337,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,480338,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,480441,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480449,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480551,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480555,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480557,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480559,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 +IN-PIN,480661,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480667,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480771,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480880,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480881,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480882,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480884,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480886,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480887,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480888,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480990,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480991,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480994,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480996,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480997,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,480999,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 +IN-PIN,481001,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481051,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481102,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481105,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481111,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481115,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481116,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481117,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481222,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481224,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481226,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481331,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481332,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481335,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481337,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481441,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481445,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481449,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481551,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481556,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 +IN-PIN,481661,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481662,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481663,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481664,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481665,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481666,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481668,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481672,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481768,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481771,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481776,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481778,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481879,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481880,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481882,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481883,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481884,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481885,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481990,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481995,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,481996,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 +IN-PIN,481998,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 +IN-PIN,482001,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482002,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482003,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482004,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482005,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482008,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482009,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482010,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482011,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482021,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482051,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,482056,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483001,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483053,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483105,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483110,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483113,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483119,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483220,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483222,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483225,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483330,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483331,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,483332,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483334,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483336,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483440,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,483442,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,483501,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 +IN-PIN,483770,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,483773,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,483775,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,483880,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,483990,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,484001,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +IN-PIN,484110,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +IN-PIN,484113,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484116,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484224,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484330,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484334,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484336,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484440,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484444,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484446,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484447,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484551,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +IN-PIN,484555,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +IN-PIN,484660,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +IN-PIN,484661,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +IN-PIN,484664,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +IN-PIN,484665,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 +IN-PIN,484669,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +IN-PIN,484770,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +IN-PIN,484771,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +IN-PIN,484774,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +IN-PIN,484776,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 +IN-PIN,484881,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484886,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,484887,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 +IN-PIN,485001,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485111,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485112,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485113,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485114,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485115,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,485221,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485226,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485227,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485331,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485334,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485441,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485446,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485447,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485551,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485661,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485666,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 +IN-PIN,485771,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,485772,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,485773,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 +IN-PIN,485774,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,485775,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,485778,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,485881,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486001,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486003,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486005,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486006,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486111,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486114,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486115,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486117,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486123,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486220,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486223,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486226,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486331,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486333,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486335,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486338,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486340,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486341,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 +IN-PIN,486440,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486441,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486445,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486446,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486447,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486448,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486450,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486550,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486553,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486556,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 +IN-PIN,486661,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +IN-PIN,486666,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +IN-PIN,486669,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +IN-PIN,486670,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +IN-PIN,486675,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +IN-PIN,486771,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +IN-PIN,486775,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +IN-PIN,486776,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 +IN-PIN,486881,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +IN-PIN,486882,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +IN-PIN,486884,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +IN-PIN,486886,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +IN-PIN,486887,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +IN-PIN,486889,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +IN-PIN,486890,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 +IN-PIN,487001,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487110,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487114,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487118,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487221,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487225,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487330,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487334,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487337,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487441,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487551,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487555,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487661,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487770,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487771,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487777,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,487881,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 +IN-PIN,488001,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488050,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488059,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488220,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488222,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488333,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488441,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488442,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488443,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488446,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,488448,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 +IN-PIN,490001,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490006,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490011,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490020,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490021,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490022,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490023,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490024,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490025,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,490036,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +IN-PIN,490042,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,491001,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,491107,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,491111,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 +IN-PIN,491221,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491222,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491223,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491225,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491226,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491227,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491228,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491229,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,491230,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491331,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +IN-PIN,491332,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +IN-PIN,491335,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +IN-PIN,491336,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +IN-PIN,491337,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +IN-PIN,491338,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +IN-PIN,491340,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +IN-PIN,491441,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +IN-PIN,491443,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +IN-PIN,491444,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,491445,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,491557,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +IN-PIN,491558,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +IN-PIN,491559,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +IN-PIN,491661,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 +IN-PIN,491665,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491666,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,491668,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,491771,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 +IN-PIN,491881,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,491885,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,491888,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +IN-PIN,491993,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 +IN-PIN,491995,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +IN-PIN,491996,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 +IN-PIN,492001,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,492003,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,492012,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,492013,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,492014,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,492015,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,492018,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,492099,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,492101,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,492109,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,492112,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493101,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493111,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493113,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493114,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,493116,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,493118,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493195,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493196,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493221,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,493222,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,493225,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493228,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493229,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493331,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493332,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493335,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493338,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493344,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493441,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493445,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +IN-PIN,493448,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +IN-PIN,493449,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +IN-PIN,493526,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493551,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 +IN-PIN,493554,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +IN-PIN,493555,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +IN-PIN,493558,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 +IN-PIN,493559,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 +IN-PIN,493661,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493662,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493663,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493770,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493773,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493776,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493778,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493881,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +IN-PIN,493885,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493887,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +IN-PIN,493888,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +IN-PIN,493889,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,493890,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +IN-PIN,493891,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +IN-PIN,493992,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +IN-PIN,493996,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 +IN-PIN,494001,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494010,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494111,PostalCode,Sukma,LGD,642,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +IN-PIN,494114,PostalCode,Sukma,LGD,642,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +IN-PIN,494115,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494122,PostalCode,Sukma,LGD,642,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 +IN-PIN,494221,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494222,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494223,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494224,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494226,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494228,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494229,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494230,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494237,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494331,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494332,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +IN-PIN,494333,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,494334,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,494335,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +IN-PIN,494336,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,494337,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,494347,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 +IN-PIN,494441,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494442,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494444,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +IN-PIN,494446,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +IN-PIN,494447,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +IN-PIN,494448,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +IN-PIN,494449,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 +IN-PIN,494450,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 +IN-PIN,494552,PostalCode,Dakshin Bastar Dantewada,LGD,376,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +IN-PIN,494553,PostalCode,Dakshin Bastar Dantewada,LGD,376,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +IN-PIN,494556,PostalCode,Dakshin Bastar Dantewada,LGD,376,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 +IN-PIN,494635,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494661,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494665,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +IN-PIN,494669,PostalCode,Narayanpur,LGD,637,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 +IN-PIN,494670,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,494771,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +IN-PIN,494776,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 +IN-PIN,494777,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 +IN-PIN,495001,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495003,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495004,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495006,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495009,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495112,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495113,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495115,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495116,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495117,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 +IN-PIN,495118,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 +IN-PIN,495119,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 +IN-PIN,495220,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495222,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495224,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495330,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495334,PostalCode,Mungeli,LGD,647,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +IN-PIN,495335,PostalCode,Mungeli,LGD,647,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 +IN-PIN,495442,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495444,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495445,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495446,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495447,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495448,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495449,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495450,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495452,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495454,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495455,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495550,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495551,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495552,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495553,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495554,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495555,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495556,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495557,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495559,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495660,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495661,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495663,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495668,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 +IN-PIN,495669,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495671,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495674,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495677,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495682,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495683,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495684,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 +IN-PIN,495686,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495687,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 +IN-PIN,495688,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,495689,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,495690,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,495691,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,495692,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,495695,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,496001,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496005,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496100,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496107,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496108,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496109,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496111,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496113,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496115,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496116,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496118,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496220,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496223,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496224,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496225,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496227,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496242,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496245,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496330,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496331,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496334,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496336,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496338,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 +IN-PIN,496440,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496445,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,496450,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,496551,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,496554,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,496661,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,496665,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 +IN-PIN,497001,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +IN-PIN,497101,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +IN-PIN,497111,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +IN-PIN,497116,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +IN-PIN,497117,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 +IN-PIN,497118,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +IN-PIN,497119,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +IN-PIN,497220,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +IN-PIN,497223,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +IN-PIN,497224,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +IN-PIN,497225,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 +IN-PIN,497226,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +IN-PIN,497229,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +IN-PIN,497231,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +IN-PIN,497235,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +IN-PIN,497331,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +IN-PIN,497333,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 +IN-PIN,497335,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +IN-PIN,497339,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +IN-PIN,497442,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,497447,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,497448,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,497449,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +IN-PIN,497450,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 +IN-PIN,497557,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,497778,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 +IN-PIN,500001,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500002,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500003,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500004,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500005,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500006,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500007,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500008,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500009,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500010,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500011,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500012,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500013,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500014,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500015,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500016,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500017,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500018,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500020,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500026,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500028,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500029,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500030,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500031,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500036,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500037,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500038,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500039,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500043,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500044,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500045,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500047,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500048,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500052,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500053,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500055,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500056,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500058,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500059,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500060,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500061,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500064,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500068,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500070,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500072,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500073,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500075,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500076,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500078,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500080,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500082,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500083,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500085,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500086,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500087,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500088,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500089,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500090,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500091,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500092,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500097,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500098,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500100,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500101,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500102,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,500104,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 +IN-PIN,500112,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,500113,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501101,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501102,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501106,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501111,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501121,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501141,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501142,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501143,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501144,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501158,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501202,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501203,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501218,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501301,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,501302,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,501359,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501401,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 +IN-PIN,501501,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501502,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 +IN-PIN,501503,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501504,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501505,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501506,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501508,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501509,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501510,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,501512,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,502001,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502032,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502101,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502102,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502103,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502107,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502108,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502109,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502110,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502113,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502114,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502115,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502117,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502125,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502130,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502210,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502221,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502228,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502246,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502247,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502248,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502249,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502251,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502255,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502256,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502257,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502267,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502269,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502270,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502271,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502273,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502276,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502277,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502278,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502279,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502280,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502281,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502285,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502286,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,502287,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502290,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502291,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502293,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502294,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502295,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502296,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502300,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502301,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502302,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502303,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502305,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502306,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502307,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502310,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502311,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502312,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502313,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502314,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502316,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502318,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502319,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502321,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502325,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502329,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502331,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502334,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502335,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502336,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,502345,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502371,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 +IN-PIN,502372,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502375,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,502381,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 +IN-PIN,503001,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503003,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503101,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503102,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503108,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503110,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503111,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503112,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503114,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503120,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503122,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503123,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503124,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503125,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503144,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503145,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503164,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503165,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503175,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503180,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503185,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503186,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503187,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503188,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503201,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503202,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503206,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503207,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503212,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503213,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503217,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503218,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503219,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503223,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503224,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503225,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503230,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503235,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503245,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503246,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503301,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503302,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503305,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503306,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503307,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503308,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503309,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503310,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,503311,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 +IN-PIN,503321,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 +IN-PIN,504001,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504002,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504101,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504102,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504103,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504104,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504105,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504106,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504109,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504110,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504201,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504202,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504203,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504204,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504205,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504206,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504207,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504209,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504214,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504215,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504216,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504218,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504219,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504220,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504231,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504251,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504272,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504273,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504292,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504293,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504294,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504295,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504296,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504297,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504299,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 +IN-PIN,504301,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504302,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 +IN-PIN,504304,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504306,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504307,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504308,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504309,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504310,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 +IN-PIN,504311,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504312,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504313,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504323,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,504346,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 +IN-PIN,505001,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505101,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,505102,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,505122,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,505129,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505152,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505153,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505162,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505172,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505174,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505184,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,505185,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505186,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505187,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505188,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505208,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505209,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505212,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505301,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505302,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505303,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505304,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505305,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505306,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505307,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505325,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505326,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505327,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505330,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505331,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505401,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505402,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505403,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505404,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505405,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505415,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505416,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505425,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505445,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505450,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505451,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505452,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505453,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505454,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505455,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505460,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505462,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505466,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,505467,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505468,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505469,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505470,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505471,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,505472,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505473,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,505474,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505475,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505476,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,505480,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,505481,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505490,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505497,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,505498,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,505501,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505502,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505503,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,505504,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,505505,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505514,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505524,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505525,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 +IN-PIN,505526,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505527,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505528,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 +IN-PIN,505529,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505530,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 +IN-PIN,505531,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,505532,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 +IN-PIN,506001,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506002,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506003,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506005,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506006,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506007,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506008,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506009,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506015,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506101,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506102,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506103,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506104,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506105,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506112,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506122,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506132,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506134,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506135,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506142,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506143,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506144,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506145,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506146,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506151,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506163,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506164,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506165,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +IN-PIN,506166,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506167,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506168,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,506169,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,506170,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,506172,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +IN-PIN,506175,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506201,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506221,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506222,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506223,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506224,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506244,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506252,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506301,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506302,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506303,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506310,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506313,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506314,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506315,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506316,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506317,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506318,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506319,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506324,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506329,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506330,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506331,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506332,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506333,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506342,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506343,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +IN-PIN,506344,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +IN-PIN,506345,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,506347,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +IN-PIN,506348,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,506349,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506350,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506352,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +IN-PIN,506355,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 +IN-PIN,506356,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 +IN-PIN,506365,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506366,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506367,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 +IN-PIN,506368,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506369,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 +IN-PIN,506370,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506371,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,506381,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,506391,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 +IN-PIN,507002,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507003,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507101,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507111,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507112,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507114,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507115,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507116,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507117,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507118,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507120,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507122,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507123,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507124,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507126,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507127,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507128,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507133,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507136,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 +IN-PIN,507137,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507140,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507157,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507158,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507159,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507160,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507161,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507163,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507164,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507165,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507166,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507167,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507168,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507169,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507170,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507171,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507182,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507183,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507201,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507202,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507203,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507204,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507208,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507209,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507210,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507211,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 +IN-PIN,507301,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507302,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507303,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507304,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507305,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,507306,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507315,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507316,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 +IN-PIN,507318,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 +IN-PIN,508001,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508002,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508004,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508101,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508105,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508111,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508112,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508113,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508114,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508115,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508116,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508117,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508126,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508201,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508202,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508204,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508205,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508206,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508207,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508208,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508210,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508211,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508212,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508213,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508214,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508217,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508218,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508221,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508223,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508224,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508233,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508234,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508238,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508243,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508244,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508245,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508246,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508247,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508248,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508250,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508252,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508253,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508254,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508255,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508256,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508257,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508258,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508266,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508277,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508278,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508279,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508280,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 +IN-PIN,508284,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508285,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508286,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 +IN-PIN,508355,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508373,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508374,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508376,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,508377,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 +IN-PIN,509002,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509102,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509104,PostalCode,Wanaparthy,LGD,693,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +IN-PIN,509105,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509106,PostalCode,Wanaparthy,LGD,693,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +IN-PIN,509110,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509120,PostalCode,Wanaparthy,LGD,693,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 +IN-PIN,509125,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509126,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509127,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509128,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509129,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509130,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509131,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509132,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509133,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509135,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509152,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509153,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 +IN-PIN,509201,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509202,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509203,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509204,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509205,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509206,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509207,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509208,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509209,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509210,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509215,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509216,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509217,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509219,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509228,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509235,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509301,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509302,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509311,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509320,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509321,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509324,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509325,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509326,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509327,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509334,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509335,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509336,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509337,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509338,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509339,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509340,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509349,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509350,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509351,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509352,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509353,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509357,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509358,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509360,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509371,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509375,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509376,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509380,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509381,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509382,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509385,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509401,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,509406,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509407,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509408,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509409,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 +IN-PIN,509410,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 +IN-PIN,509411,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 +IN-PIN,509412,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 +IN-PIN,515001,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515002,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515004,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515101,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515110,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515122,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515123,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515124,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515133,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515134,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515144,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515154,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515159,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515164,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515201,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515202,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515211,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515212,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515231,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515241,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515261,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515271,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515281,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515286,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515291,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515301,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515303,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515305,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515311,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515321,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515331,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515341,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515401,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515402,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515405,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515408,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515411,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515413,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515414,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515415,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515425,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515435,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515445,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515455,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515465,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515501,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515511,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515521,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515531,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515541,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515551,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515556,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515561,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515571,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515581,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515591,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515601,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515611,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515621,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515631,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515641,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515651,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515661,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515672,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,515701,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515711,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515721,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515722,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515731,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515741,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515751,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515761,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515763,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515765,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515766,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515767,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515774,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515775,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515787,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515803,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515812,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515822,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515832,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515842,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515863,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515865,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515867,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515870,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515871,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,515872,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,516001,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516003,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516101,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516104,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516107,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516108,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516115,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516127,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516128,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516130,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516150,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516151,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516162,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516172,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516173,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516175,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516193,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516203,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516213,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516215,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516216,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516217,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516218,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516227,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516228,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516233,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516247,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516267,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516268,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516269,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516289,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516293,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516309,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516310,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516312,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516321,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516329,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516330,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516339,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516349,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516350,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516355,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516356,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516359,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516360,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516361,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516362,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516380,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516390,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516391,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516396,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516401,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516411,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516421,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516431,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516432,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516433,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516434,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516439,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516444,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516454,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516464,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 +IN-PIN,516474,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516484,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516501,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516502,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516503,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 +IN-PIN,516504,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,516505,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517001,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517002,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517101,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517102,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517112,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517113,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517123,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517124,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517125,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517126,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517127,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517128,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517129,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517130,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517131,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517132,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517152,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517167,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517172,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517192,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517193,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517194,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517213,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517214,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517234,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517235,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517236,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517237,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517247,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517257,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517277,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517280,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517291,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517297,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517299,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517305,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517319,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517326,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517350,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517370,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517390,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517391,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517401,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517403,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517408,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517415,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517416,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517417,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517418,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517422,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517423,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517424,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517425,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517426,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517429,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517432,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517502,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517503,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517504,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517505,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517506,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517507,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517520,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517526,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517536,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517541,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517551,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517561,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517569,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517571,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517581,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517582,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517583,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517584,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517586,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517587,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517588,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517589,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517590,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517591,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517592,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517599,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 +IN-PIN,517619,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517620,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517640,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517641,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517642,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517643,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517644,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517645,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,517646,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518001,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518002,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518003,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518004,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518007,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518010,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518101,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518102,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518112,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518122,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518123,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518124,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518134,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518135,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518145,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518155,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518165,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518166,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518176,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518186,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518196,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518206,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518216,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518217,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518218,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518220,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518221,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518222,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518225,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518301,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518302,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518308,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518313,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518323,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518333,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518343,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518344,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518345,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518346,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518347,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518348,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518349,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518350,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518360,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518380,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518385,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518390,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518395,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518396,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518401,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518405,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518411,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518412,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518422,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518432,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518442,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518452,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518462,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518463,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518464,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518465,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518466,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518467,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518468,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 +IN-PIN,518502,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518508,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518510,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518511,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518512,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518513,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518523,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518533,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518543,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518553,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518563,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518573,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518583,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518593,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518594,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518598,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518599,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,518674,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,520001,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,520004,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,520007,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,520008,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,520010,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,520011,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,520012,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,520015,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521002,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521003,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521004,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521101,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521102,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521104,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521105,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521106,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521107,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521108,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521109,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521110,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521111,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521120,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521121,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521122,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521125,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521126,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521130,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521131,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521132,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521133,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521134,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521135,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521136,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521137,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521138,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521139,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521148,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521149,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521150,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521151,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521153,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521156,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521157,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521158,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521162,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521163,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521164,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521165,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521170,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521175,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521178,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521180,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521181,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521182,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521183,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521184,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521185,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521190,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521202,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521207,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521211,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521212,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521213,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521214,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521215,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521225,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521226,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521227,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521228,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521229,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521230,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521231,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521235,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521241,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521245,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521246,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521247,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521250,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521256,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521260,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521261,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521263,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521286,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521301,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521311,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521312,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521321,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521322,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521323,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521324,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521325,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521326,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521327,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521328,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521329,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521330,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521331,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521332,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521333,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521340,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521343,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521344,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521345,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521356,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521366,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521369,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521390,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,521401,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521402,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521403,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521456,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,521457,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522001,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522003,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522005,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522007,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522009,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522015,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522016,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522017,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522018,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522019,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522020,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522034,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522101,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522102,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522111,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522112,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522113,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522124,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522201,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522202,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522211,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522212,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522213,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522233,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522234,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522235,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522236,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522237,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522240,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522256,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522257,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522258,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522259,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522261,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522262,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522264,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522265,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522268,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522301,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522302,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522303,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522304,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522305,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522306,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522307,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522308,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522309,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522310,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522311,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522312,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522313,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522314,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522315,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522316,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522317,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522318,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522324,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522325,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522329,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522330,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522341,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522401,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522402,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522403,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522408,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522409,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522410,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522411,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522412,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522413,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522414,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522415,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522421,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522426,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522435,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522436,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522437,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522438,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522501,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522502,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522503,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522508,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522509,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522529,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522549,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522603,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 +IN-PIN,522611,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522612,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522613,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522614,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522615,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522616,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522617,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522619,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522626,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522646,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522647,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522649,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522657,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522658,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522659,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522660,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522661,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,522663,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523001,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523101,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523104,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523105,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523108,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523109,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523110,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523111,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523112,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523113,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523114,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523115,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523116,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523117,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523135,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523157,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523165,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523167,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523168,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523169,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523170,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523171,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523180,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523181,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523182,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523183,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523184,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523185,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523186,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523187,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523190,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523201,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523211,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523212,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523213,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523214,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523223,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523224,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523225,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523226,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523227,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523228,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523230,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523240,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523241,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523245,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523246,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523247,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523252,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523253,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523254,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523260,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523261,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523262,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523263,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523264,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523265,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523270,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523271,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523272,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523273,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523274,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523279,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523280,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523281,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523286,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523291,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523292,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523301,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523302,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523303,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523304,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 +IN-PIN,523305,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523315,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523320,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523326,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523327,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523328,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523329,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523330,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523331,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523332,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523333,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523334,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523335,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523336,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523346,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523356,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523357,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523367,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523368,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523369,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523370,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523371,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523372,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,523373,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524001,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524002,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524003,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524004,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524101,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524121,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524123,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524124,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524126,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524127,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524129,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524131,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524132,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524134,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524137,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524142,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524152,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524201,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524203,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524221,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524222,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524223,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524224,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524225,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524226,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524227,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524228,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524230,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524234,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524236,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524239,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524240,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524302,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524303,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524304,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524305,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524306,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524307,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524308,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524309,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524310,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524311,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524312,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524313,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524314,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524315,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524316,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524317,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524318,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524320,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524321,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524322,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524323,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524324,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524341,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524342,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524343,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524344,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524345,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524346,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524366,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524401,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524402,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524403,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524404,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524405,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524406,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524407,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524408,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524409,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524410,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524411,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524412,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524413,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524414,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 +IN-PIN,524415,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,524421,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,530003,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530004,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530005,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530008,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530011,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530012,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530013,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530016,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530018,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530022,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530026,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530027,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530028,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530031,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530040,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530041,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530044,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530045,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530046,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,530047,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530048,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530049,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,530051,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530052,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,530053,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531001,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531002,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531011,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531019,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531020,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531021,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531022,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531023,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531024,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531025,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531026,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531027,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531028,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531029,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531030,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531031,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531032,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531033,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531034,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531035,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531036,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531040,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531055,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531060,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531061,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531075,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531077,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531081,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531082,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531083,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531084,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531085,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531087,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531111,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531113,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531114,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531115,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531116,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531117,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531118,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531126,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531127,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531133,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531149,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531151,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531162,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,531163,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,531173,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,531219,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,532001,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532005,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532122,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,532123,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,532127,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532148,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532168,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532185,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532186,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532187,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532190,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532195,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532201,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532203,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532204,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532211,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532212,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532213,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532214,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532215,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532216,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532218,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532219,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532220,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532221,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532222,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532242,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532243,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532263,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532264,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532284,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532290,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532291,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532292,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532312,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532322,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532401,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532402,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532403,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532404,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532405,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532406,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532407,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532408,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532409,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532410,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532421,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532425,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532426,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532427,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532428,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532429,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532430,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532432,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532440,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,532443,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,532445,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532455,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,532456,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,532457,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532458,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,532459,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532460,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,532461,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,532462,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,532474,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,532484,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,533002,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533004,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533005,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533006,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533016,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533101,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533102,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533103,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533105,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533107,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533124,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533125,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533126,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533201,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533210,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533211,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533212,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533213,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533214,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533215,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533216,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533217,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533218,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533220,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533221,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533222,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533223,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533228,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533229,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533232,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533233,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533234,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533235,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533236,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533237,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533238,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533239,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533240,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533241,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533242,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533244,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533247,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533248,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533249,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533250,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533251,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533252,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533253,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533254,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533256,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533260,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533261,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533262,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533263,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533264,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533274,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533284,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533285,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533286,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533287,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533288,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533289,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533290,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533291,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533292,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533293,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533294,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533295,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533296,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533297,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533305,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533306,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533307,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533308,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533309,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533340,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533341,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533342,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533343,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533344,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533345,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533346,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533347,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533348,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533349,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533350,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533351,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533352,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533354,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533355,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533401,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533406,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533407,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533408,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533428,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533429,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533430,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533431,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533432,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533433,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533434,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533435,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533436,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533437,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,533440,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533444,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533445,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533446,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533447,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533448,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533449,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533450,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533451,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533461,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533462,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533463,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533464,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533468,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533483,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,533577,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534002,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534003,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534004,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534005,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534007,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534101,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534102,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534111,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534112,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534122,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534123,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534124,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534126,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534134,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534145,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534146,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534156,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534165,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534166,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534176,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534186,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534195,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534196,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534197,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534198,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534199,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534201,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534202,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534204,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534206,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534207,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534208,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534209,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534210,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534211,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534216,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534217,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534218,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534222,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534225,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534227,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534230,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534235,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534236,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534237,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534238,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534239,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534240,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534243,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534244,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534245,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534247,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534250,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534265,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534266,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534267,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534268,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534269,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534275,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534280,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534281,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 +IN-PIN,534301,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534302,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534305,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534311,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534312,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534313,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534315,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534316,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534318,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534320,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534324,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534326,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534327,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534328,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534329,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534330,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534331,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534338,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 +IN-PIN,534340,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534341,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534342,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534350,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534401,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534406,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534411,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534416,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534425,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534426,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534427,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534432,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534435,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534437,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534442,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534444,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534447,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534448,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534449,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534450,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534451,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 +IN-PIN,534452,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534455,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534456,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534460,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534461,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534462,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534467,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,534475,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535001,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535003,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535004,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535005,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 +IN-PIN,535006,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535101,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535102,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535124,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535125,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 +IN-PIN,535126,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535128,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535145,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535148,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535160,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535161,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535183,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535204,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535213,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535214,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535215,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535216,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535217,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535218,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535220,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535221,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535240,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535250,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535260,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535270,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535273,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535280,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535281,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535463,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535501,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535502,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535521,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535522,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535523,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535524,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535525,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535526,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535527,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535534,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535546,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535547,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535557,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535558,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535559,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535568,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535573,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535578,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535579,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535580,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535581,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535582,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 +IN-PIN,535591,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535592,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535593,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,535594,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 +IN-PIN,560003,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560004,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560008,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,560010,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560012,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560013,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560015,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560022,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560023,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560026,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560027,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560029,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560030,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560032,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560034,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560035,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560040,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560041,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560050,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560054,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560056,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560057,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560058,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560060,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560061,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560062,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560064,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,560068,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560070,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560072,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560073,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560074,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560076,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560078,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560079,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560081,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560082,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560083,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,560085,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560088,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560089,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560090,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560091,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560095,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560098,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560099,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560100,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560102,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560105,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,560107,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,560108,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560109,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560110,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560111,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560112,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560114,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,560116,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 +IN-PIN,561101,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,561201,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,561202,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,561203,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,561206,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,561207,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,561208,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,561209,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,561210,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,561211,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,561212,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,561213,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,562101,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,562102,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,562103,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,562104,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,562108,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562109,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562112,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562117,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562119,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562120,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,562121,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562126,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562127,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,562128,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562131,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 +IN-PIN,562138,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562159,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562160,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,562161,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,563101,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563113,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563114,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563116,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563117,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563123,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,563124,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,563125,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,563126,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563127,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563128,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,563129,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563130,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563131,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563132,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563133,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563134,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563135,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563136,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563137,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563138,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563139,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563146,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,563159,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 +IN-PIN,563161,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,563162,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 +IN-PIN,570003,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,570008,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,570010,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,570018,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,570019,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,570026,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,570028,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,570030,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,570033,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571101,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571102,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571103,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571104,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571105,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571106,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571107,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571108,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571109,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571110,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571111,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571114,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571115,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571116,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571117,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571118,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571119,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571120,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571121,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571122,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571123,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571124,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571125,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571126,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571127,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571128,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571129,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571130,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571134,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571187,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571189,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571201,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571211,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571212,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571213,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571214,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571215,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571216,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571217,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571218,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571219,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571231,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571232,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571234,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571235,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571236,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571237,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571247,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571248,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571249,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571250,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571251,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571252,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571253,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571254,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 +IN-PIN,571301,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571302,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571311,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571312,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571313,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571314,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571315,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571316,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571320,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571342,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571401,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571402,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571403,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571404,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571405,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571415,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571416,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571417,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571418,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571419,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571421,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571422,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571423,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571424,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571425,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571426,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571427,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571428,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571429,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,571430,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571431,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571432,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571433,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 +IN-PIN,571434,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571435,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571436,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571438,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571439,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571440,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571441,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571442,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571443,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571444,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571445,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571446,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571448,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571450,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571455,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571457,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571463,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571475,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571476,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571477,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571478,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571490,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 +IN-PIN,571601,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571602,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571603,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571604,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571605,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571606,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571607,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571610,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571617,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 +IN-PIN,571802,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571807,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571811,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,571812,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 +IN-PIN,572101,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572102,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572103,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572104,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572105,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572106,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572107,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572111,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572112,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572113,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572114,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572115,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572116,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572117,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572118,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572119,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572120,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572121,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572122,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572123,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572124,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572125,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572126,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572127,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572128,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572129,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572130,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572132,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572133,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572134,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572135,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572136,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572137,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572138,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572139,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572140,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572141,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572142,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572168,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572175,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572201,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572211,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572212,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572213,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572214,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572215,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572216,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572217,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572218,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572219,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572220,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572221,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572222,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572223,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572224,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572225,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572226,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572227,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,572228,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 +IN-PIN,573101,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573102,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573103,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573111,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573112,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573113,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573115,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573116,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573117,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573118,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573119,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573120,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573121,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573122,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573123,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573124,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573125,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573126,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573127,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573128,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573129,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573130,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573131,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573133,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573134,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573135,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573136,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573137,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573141,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573142,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573144,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573162,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573164,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573165,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573201,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573202,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573210,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573211,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573212,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573213,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573214,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573215,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573216,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573217,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573218,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573219,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573220,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573225,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,573226,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 +IN-PIN,574101,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574102,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574103,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574104,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574105,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574106,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574107,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574108,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574109,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574110,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574111,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574112,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574113,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574114,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574115,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574116,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574117,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574118,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574119,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574122,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574129,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574141,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574142,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574143,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574144,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574145,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574146,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574148,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574150,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574151,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574153,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574154,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574197,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574198,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574199,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574201,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574202,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574203,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574210,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574211,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574212,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574213,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574214,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574216,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574217,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574218,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574219,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574220,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574221,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574222,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574223,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574224,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574225,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574226,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574227,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574228,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574229,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574230,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574231,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574232,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574233,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574234,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574235,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574236,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574237,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574238,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574239,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574240,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574241,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574242,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574243,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574244,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,574248,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574253,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574259,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574260,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574265,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574267,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574274,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574279,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574285,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574313,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574314,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574323,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574324,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574325,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574326,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574327,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574328,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,574509,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575001,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575002,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575003,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575004,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575005,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575006,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575007,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575008,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575009,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575010,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575011,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575013,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575014,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575015,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575017,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575018,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575019,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575020,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575022,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575023,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575028,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575029,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,575030,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 +IN-PIN,576102,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576103,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576105,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576106,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576107,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576111,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576112,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576113,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576114,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576115,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576117,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576120,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576121,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576122,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576124,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576201,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576210,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576211,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576212,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576213,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576214,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576215,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576216,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576217,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576218,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576219,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576220,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576221,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576222,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576223,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576224,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576225,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576226,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576227,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576228,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576229,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576230,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576231,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576232,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576233,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576234,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576235,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576247,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576257,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576282,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,576283,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 +IN-PIN,577001,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577002,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577003,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577004,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577005,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577006,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577007,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577008,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577101,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577102,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577111,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577112,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577113,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577114,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577115,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577116,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577117,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577120,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577121,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577122,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577123,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577124,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577125,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577126,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577127,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577128,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577129,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577130,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577131,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577132,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577133,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577134,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577135,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577136,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577138,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577139,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577140,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577144,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577145,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577146,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577160,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577168,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577175,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577179,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577180,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577181,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577182,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577201,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577202,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577203,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577204,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577205,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577211,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577213,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577214,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577215,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577216,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577217,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577218,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577219,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577220,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577221,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577222,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577223,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577224,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577225,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577226,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577227,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577228,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577229,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577230,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577231,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577232,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577233,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577243,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577245,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577301,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577302,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577401,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577411,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577412,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577413,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577414,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577415,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577416,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577417,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577418,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577419,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577421,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577422,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577423,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577424,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577425,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577426,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577427,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577428,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577429,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577430,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577431,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577432,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577433,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577434,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577435,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577436,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577451,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577452,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577453,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 +IN-PIN,577501,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577502,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577511,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577512,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577513,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577514,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577515,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577516,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577517,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577518,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577519,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577520,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577521,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577522,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577523,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577524,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577525,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577526,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577527,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577528,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577529,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577530,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577531,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577532,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577533,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577534,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577535,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577536,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577537,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577538,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577539,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577540,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577541,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577542,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577543,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577544,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577545,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577546,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577547,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577548,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577549,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577550,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 +IN-PIN,577551,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577552,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577553,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577554,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577555,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577556,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577557,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577558,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577566,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577589,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,577596,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577597,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577598,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577599,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 +IN-PIN,577601,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,580001,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580005,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580006,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580007,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580008,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580009,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580011,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580021,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580023,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580024,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580025,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580026,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580027,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580028,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580030,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580031,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580112,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580114,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,580118,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581101,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581102,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581103,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581104,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581105,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581106,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581107,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581108,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581109,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581110,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581111,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581112,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581113,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581115,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581116,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581117,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581118,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581119,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 +IN-PIN,581120,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581121,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581123,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581126,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581128,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581129,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581145,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581148,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581186,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581187,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581193,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581195,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581196,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581197,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581198,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581199,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581201,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581202,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581203,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581204,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581205,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581206,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581207,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581208,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581209,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,581210,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581211,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581212,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581213,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,581301,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581302,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581303,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581304,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581306,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581307,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581308,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581314,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581315,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581316,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581317,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581318,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581319,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581320,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581321,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581322,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581323,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581324,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581325,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581326,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581327,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581328,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581329,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581330,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581331,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581332,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581333,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581334,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581335,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581336,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581337,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581338,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581339,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581340,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581341,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581342,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581343,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581344,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581345,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581346,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581347,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581348,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581349,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581350,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581351,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581352,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581353,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581354,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581355,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581356,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581357,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581358,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581359,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581360,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581361,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581362,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581363,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581365,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581384,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581396,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581400,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581402,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581403,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581411,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581412,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581421,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581423,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581440,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581450,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,581453,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 +IN-PIN,582102,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582103,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582111,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582112,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582113,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582114,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582115,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582116,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582117,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582118,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582119,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582120,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582201,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,582202,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582203,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582204,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582205,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582206,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582207,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582208,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 +IN-PIN,582209,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582210,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,582211,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 +IN-PIN,583101,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583102,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583103,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583104,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583111,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583112,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583113,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583114,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583115,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583116,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583117,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583118,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583119,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583120,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583121,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583122,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583123,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583124,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583125,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583126,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583127,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583128,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583129,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583130,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583131,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583132,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583134,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583135,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583136,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583137,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583152,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583154,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583155,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583201,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 +IN-PIN,583211,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583212,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583213,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583214,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583216,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583217,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 +IN-PIN,583218,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583219,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583220,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583221,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583222,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583223,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583224,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583226,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583227,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583228,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583229,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583230,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583231,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583232,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583233,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583234,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583235,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583236,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583237,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583238,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583239,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 +IN-PIN,583268,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583277,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583278,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583279,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583280,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583281,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583282,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583283,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583284,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583285,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583286,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583287,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,583288,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 +IN-PIN,584102,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584103,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584104,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584111,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584113,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584115,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584116,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584118,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584120,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584122,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584123,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584124,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584125,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584126,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584127,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584128,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584129,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584132,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584133,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584134,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584135,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584136,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584138,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584139,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584140,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584143,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584167,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584170,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584202,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,584203,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 +IN-PIN,585102,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585103,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585104,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585105,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585106,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585107,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585202,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585210,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585211,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585212,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585213,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585214,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585215,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585216,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585217,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585218,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585219,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585220,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585221,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585222,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585223,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585224,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585225,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585226,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585227,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585228,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585236,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585237,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585265,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585287,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585290,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585291,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585292,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585301,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585302,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585303,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585304,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585305,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585306,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585307,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585308,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585309,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585310,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585311,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585312,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585313,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585314,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585315,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585316,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585317,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585318,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585319,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585320,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585321,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585322,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585323,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585324,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585325,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 +IN-PIN,585326,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585327,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585328,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585329,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585330,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585331,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585353,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585355,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 +IN-PIN,585401,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585402,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585403,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585404,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585411,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585412,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585413,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585414,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585416,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585417,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585418,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585419,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585421,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585436,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585437,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585443,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585444,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585445,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585446,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585447,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,585448,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 +IN-PIN,586103,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586104,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586108,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586109,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586111,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586112,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586113,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586114,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586115,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586116,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586117,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586118,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586119,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586120,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586121,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586122,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586123,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586124,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586125,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586127,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586128,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586129,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586130,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586170,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586201,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586202,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586203,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586204,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586205,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586206,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586207,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586208,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586209,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586210,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586211,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586212,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586213,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586214,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586215,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586216,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,586217,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 +IN-PIN,587102,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587103,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587104,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587111,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587112,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587113,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587114,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587115,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587116,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587117,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587118,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587119,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587120,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587121,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587122,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587124,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587125,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587154,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587155,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587156,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587157,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587201,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587202,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587203,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587204,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587205,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587206,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587207,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587301,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587311,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587312,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587313,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587314,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587315,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587316,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587330,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,587331,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 +IN-PIN,590001,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590003,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590005,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590008,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590010,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590014,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590015,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590016,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590018,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,590020,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591101,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591102,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591103,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591104,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591106,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591107,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591108,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591109,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591110,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591111,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591112,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591113,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591114,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591115,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591117,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591118,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591119,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591120,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591121,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591122,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591123,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591124,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591125,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591126,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591127,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591128,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591129,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591130,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591131,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591136,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591143,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591147,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591156,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591173,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591201,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591211,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591212,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591213,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591214,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591215,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591216,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591217,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591218,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591219,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591220,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591221,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591222,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591223,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591224,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591225,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591226,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591227,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591228,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591229,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591230,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591231,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591232,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591233,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591234,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591235,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591236,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591237,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591238,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591239,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591240,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591241,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591242,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591243,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591244,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591246,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591247,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591248,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591254,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591263,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591265,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591287,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591301,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591302,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591303,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591304,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591305,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591306,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591309,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591310,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591311,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591312,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591313,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591315,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591316,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591317,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591340,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591344,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591345,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,591346,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 +IN-PIN,600001,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600003,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600004,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600005,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600006,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600007,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600008,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600011,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600014,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600015,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600016,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600017,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600019,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600020,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600021,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600023,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600024,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600030,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600032,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600033,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600037,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600040,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600041,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600042,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600043,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600044,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600045,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600047,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600048,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600049,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600050,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600051,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600052,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600053,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600054,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600055,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600056,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,600057,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600058,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600060,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600061,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600062,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600063,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600064,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600066,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600067,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600068,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600069,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,600070,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600071,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600072,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600073,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600074,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600075,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600076,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600077,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600078,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600081,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600084,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600085,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600086,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600087,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600088,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600089,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600090,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600091,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600092,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600093,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600094,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600095,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600096,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600097,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600099,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600100,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600103,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600106,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600107,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600113,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600115,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600116,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600118,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600119,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600120,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600122,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,600123,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600124,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,600125,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 +IN-PIN,600126,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600127,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600128,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,600129,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600130,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600131,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,600132,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,601101,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601102,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601103,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601201,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601202,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601203,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601204,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601205,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601206,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,601301,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,602001,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,602002,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,602003,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,602021,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,602023,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,602024,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,602025,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,602026,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,602105,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,602106,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,602108,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,602117,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,603001,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603002,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603003,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603101,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603102,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603103,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603104,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603105,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603106,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603107,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603108,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603109,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603110,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603111,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603112,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603201,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603202,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603203,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603204,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603209,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603210,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603301,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603302,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603303,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603304,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603305,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603306,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603307,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603308,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603309,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603310,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603311,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603312,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603313,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603314,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603319,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603401,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603402,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,603403,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,603405,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,603406,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,604001,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604101,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604102,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604151,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604152,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604153,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604154,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604201,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604202,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604203,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604204,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604205,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604206,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604207,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604208,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604210,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604301,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604302,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604303,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 +IN-PIN,604304,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604305,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604306,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604307,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,604401,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604402,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604403,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604404,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604405,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604406,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604407,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,604408,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604409,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604410,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604501,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604502,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604503,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604504,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604505,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,604601,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,605001,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605004,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605006,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605007,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605008,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605009,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605010,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605013,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605014,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605102,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605103,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605104,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605105,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605106,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605107,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605108,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605109,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605110,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605111,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605201,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605202,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605203,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605301,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605302,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605401,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605402,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605403,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605501,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605502,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,605601,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605602,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605651,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605652,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605701,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605702,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605751,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605752,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605754,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605755,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605756,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605757,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605758,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,605759,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605766,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605801,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605802,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,605803,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606001,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606003,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606102,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606103,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606104,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606105,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606106,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606107,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606108,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606109,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606110,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606111,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606115,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606201,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606202,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606203,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606204,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606205,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606206,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606207,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606208,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606209,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606213,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606301,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606302,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606303,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606304,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606305,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,606401,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606402,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,606601,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606603,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606604,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606611,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606701,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606702,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606703,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606704,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606705,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606706,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606707,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606708,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606709,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606710,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606751,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606752,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606753,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606754,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606755,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606801,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606802,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606803,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606804,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606805,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606806,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606807,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606808,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606811,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606901,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606902,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606903,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606904,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606905,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606906,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606907,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,606908,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,607001,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607002,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607003,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607004,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607005,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607006,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607101,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607102,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607103,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607104,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607105,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607106,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607107,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,607108,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607109,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607112,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607201,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,607202,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,607203,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 +IN-PIN,607204,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,607205,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607209,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 +IN-PIN,607301,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607302,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607303,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607308,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607401,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607402,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,607403,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,607801,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607802,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607803,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607804,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607805,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,607807,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608001,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608002,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608102,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608201,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608301,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608302,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608303,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608304,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608305,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608306,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608401,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608501,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608502,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608601,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608602,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608701,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608702,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608703,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,608704,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608801,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 +IN-PIN,608901,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,609001,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609003,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609101,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609102,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609103,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609104,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609105,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609106,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609107,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609108,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609109,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609110,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609111,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609112,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609113,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609114,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609115,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609116,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609117,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609118,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609201,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609202,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609203,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609204,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609205,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609301,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609302,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609303,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609304,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609305,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609306,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609307,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609308,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609309,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609310,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609311,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609312,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609313,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609314,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609401,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609402,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609403,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609404,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609405,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,609501,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609502,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,609503,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,609504,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,609601,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,609602,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,609603,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,609604,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,609605,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,609606,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,609607,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,609608,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,609609,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,609701,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,609702,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,609703,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,609704,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,609801,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609802,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,609803,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609804,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,609805,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609806,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609807,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,609808,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609810,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,609811,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,610001,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610003,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610004,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610005,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,610101,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,610102,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610103,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610104,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610105,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610106,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,610107,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,610109,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610201,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,610202,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610203,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,610204,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,610205,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610206,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,610207,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611001,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611002,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 +IN-PIN,611003,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611101,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611102,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611103,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611104,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611105,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611106,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611108,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611109,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611110,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611111,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,611112,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,612001,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612002,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612101,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612102,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612103,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612104,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612105,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612106,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612201,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,612202,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612203,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 +IN-PIN,612204,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612301,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612302,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612303,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612401,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612402,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612501,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612502,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612503,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612504,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612601,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,612602,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612603,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,612604,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612605,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612610,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612701,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612702,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612703,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612801,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612802,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,612803,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,612804,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,612901,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,612902,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,612903,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,612904,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,612905,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,612906,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,613001,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613002,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613003,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613004,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613005,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613006,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613010,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613101,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613102,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613103,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613104,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613105,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613201,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613202,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613203,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613204,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613205,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613301,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,613303,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613401,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613402,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613403,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613501,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613502,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613503,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613504,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613601,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613602,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,613701,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,613702,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,613703,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,613704,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,613705,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614001,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614013,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614014,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614015,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614016,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614017,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614018,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614019,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614020,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614101,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614102,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614103,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614201,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614202,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614203,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614204,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614205,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614206,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614207,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614208,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614210,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614211,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614301,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614302,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614303,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614401,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614402,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614403,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614404,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614601,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614602,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614612,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614613,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614614,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614615,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614616,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614617,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614618,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614619,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614620,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614621,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614622,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614623,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614624,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614625,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614626,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614628,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614629,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614630,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614701,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614702,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614703,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614704,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614705,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614706,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614707,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614708,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614710,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614711,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614712,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614713,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614714,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614715,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614716,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614717,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614723,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614738,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 +IN-PIN,614801,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614802,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614803,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614804,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614805,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,614806,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614807,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614808,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614809,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614810,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 +IN-PIN,614901,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614902,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614903,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614904,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614905,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,614906,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 +IN-PIN,620002,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620003,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620004,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620005,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620006,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620007,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620008,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620009,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620010,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620011,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620012,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620013,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620015,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620016,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620017,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620019,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620020,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620021,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620025,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620027,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620101,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,620102,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621001,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621002,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621003,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621004,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621005,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621006,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621007,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621008,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621009,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621010,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621011,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621012,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621014,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621101,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621102,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621103,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621104,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621105,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621106,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621107,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621108,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621109,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621110,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621111,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621112,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621113,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621114,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621115,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621116,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621117,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621118,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621119,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621133,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621202,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621203,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621204,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621205,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621206,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621207,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621208,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621209,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621210,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621211,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621212,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621213,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621214,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621215,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621216,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621217,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621218,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621219,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621220,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621301,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,621302,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621305,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,621306,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621307,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621308,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,621310,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621311,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,621312,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,621313,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,621314,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621315,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621316,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,621601,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621651,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621652,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621653,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621701,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621702,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621703,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621704,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621705,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621706,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621707,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621708,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621709,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621710,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621711,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621712,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,621713,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621714,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621715,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621716,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621717,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 +IN-PIN,621718,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621719,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621722,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621729,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621730,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621731,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621801,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621802,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621803,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621804,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621805,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621806,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,621851,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 +IN-PIN,622001,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622002,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622003,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622004,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622101,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622102,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622103,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622104,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622201,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622202,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622203,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622204,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622209,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622301,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622302,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622303,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622304,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622401,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622402,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622403,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622404,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622407,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622409,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622411,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622412,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622422,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622501,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622502,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622503,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622504,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622505,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622506,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622507,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,622515,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 +IN-PIN,623115,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623120,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623135,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623308,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623315,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623401,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623402,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623403,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623404,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623406,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623407,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623409,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623502,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623503,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623504,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623512,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623513,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623514,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623515,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623516,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623517,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623518,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623521,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623522,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623523,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623524,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623525,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623526,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623527,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623528,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623530,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623531,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623532,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623533,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623534,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623536,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623537,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623538,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623601,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623603,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623604,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623605,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623608,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623701,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623703,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623704,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623705,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623706,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623708,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623711,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,623712,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,624002,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624003,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624004,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624005,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624101,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624103,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624201,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624202,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624204,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624206,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624208,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624210,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624211,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624212,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624215,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624216,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624219,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624220,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624301,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624302,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624303,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624304,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624306,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624307,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624308,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624401,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624402,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624403,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624601,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624610,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624612,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624613,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624614,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624615,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624616,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624617,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624618,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624619,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624620,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624621,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624622,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624701,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624702,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624703,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624704,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624705,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624706,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624707,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624708,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624709,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624710,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624711,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624712,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624801,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,624802,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 +IN-PIN,625001,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625002,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625003,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625005,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625006,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625007,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625008,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625009,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625012,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625014,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625016,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625017,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625018,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625019,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625020,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625021,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625022,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625023,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625101,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625102,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625103,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625104,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625105,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625106,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625107,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625108,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625109,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625110,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625122,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625201,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625203,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625205,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625207,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625214,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625218,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625221,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625234,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625301,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625402,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625501,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625503,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625512,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625513,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625514,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625515,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625516,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625517,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625518,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625520,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625521,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625522,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625523,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625524,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625525,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625526,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625527,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625528,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625529,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625530,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625531,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625532,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625533,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625534,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625535,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625536,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625537,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625540,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625552,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625556,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625562,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625579,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625582,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625601,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625602,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625604,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625605,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 +IN-PIN,625701,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625702,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625703,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625704,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625705,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625706,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625707,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,625708,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 +IN-PIN,626001,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626002,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626003,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626004,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626005,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626101,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626102,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626103,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626104,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626105,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626106,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626107,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626109,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626110,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626111,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626112,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626113,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626114,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626115,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626116,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626117,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626118,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626119,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626121,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626122,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,626123,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626124,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626125,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626126,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626127,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626128,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626129,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626130,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626131,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626132,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626133,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626134,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626136,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626137,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626138,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626139,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626140,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626141,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626142,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626149,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626161,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626188,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626189,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626201,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626202,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,626203,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626204,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626205,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626607,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,626612,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 +IN-PIN,627001,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627002,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627005,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627007,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627011,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627012,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627101,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627102,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627103,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627104,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627106,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627108,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627109,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627110,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627111,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627112,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627113,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627114,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627115,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627116,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627117,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627118,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627119,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627120,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627127,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627151,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627152,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627201,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627202,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627351,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627352,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,627353,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627354,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627355,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627356,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627357,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627358,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627359,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627401,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627412,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627413,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627414,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627415,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627416,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627417,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627418,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627421,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627423,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627424,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627425,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627426,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627451,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627452,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627501,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627502,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627601,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627602,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627651,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627652,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627654,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627657,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 +IN-PIN,627713,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627719,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627751,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627753,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627754,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627755,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627756,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627757,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627758,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627759,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627760,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627761,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627764,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627802,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627803,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627804,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627805,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627806,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627807,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627808,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627809,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627811,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627812,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627813,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627814,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627818,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627851,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627852,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627853,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627854,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627855,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627856,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627857,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627858,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627859,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627860,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627861,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627862,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,627951,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,627953,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,628001,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628002,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628005,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628101,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628102,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628103,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628104,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628105,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628151,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628152,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628201,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628202,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628203,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628204,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628205,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628206,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628207,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628208,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628209,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628210,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628211,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628212,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628213,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628215,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628216,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628218,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628229,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628251,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628252,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628301,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628302,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628303,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628304,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628401,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628402,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628502,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,628503,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628552,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,628601,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628612,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628613,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628614,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628615,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628616,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628617,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628618,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628619,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628620,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628621,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628622,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628623,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628653,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628656,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628701,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628702,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628703,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628704,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628712,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628714,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628716,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628718,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628720,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628721,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 +IN-PIN,628722,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628752,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628753,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628801,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628802,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628809,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628851,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628901,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628902,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628903,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628904,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628905,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628906,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628907,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628908,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,628952,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 +IN-PIN,629001,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629002,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629003,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629004,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629101,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629102,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629151,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629152,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629153,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629154,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629156,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629157,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629158,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629159,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629160,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629161,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629162,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629163,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629164,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629165,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629167,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629168,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629170,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629171,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629172,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629173,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629174,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629175,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629176,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629177,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629178,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629179,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629180,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629193,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629201,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629202,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629203,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629204,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629251,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629252,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629301,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629302,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629401,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629402,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629403,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629501,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629502,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629601,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629602,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629701,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629702,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629703,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629704,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629801,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629802,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629803,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629804,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629810,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629851,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629852,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,629901,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 +IN-PIN,630002,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630003,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630101,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630103,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630104,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630105,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630106,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630107,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630108,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630201,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630202,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630203,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630204,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630205,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630206,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630207,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630208,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630210,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630211,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630212,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630301,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630302,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630303,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630305,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630306,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630307,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630309,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630311,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630312,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,630313,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630314,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630321,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630405,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630408,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630410,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630411,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630501,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630502,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630551,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630552,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630553,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630554,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630555,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630556,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630557,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630558,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630559,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630561,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630562,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630602,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630606,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630609,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630610,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630611,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630612,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630702,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630709,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,630710,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 +IN-PIN,630713,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 +IN-PIN,631001,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631002,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631003,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631004,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631051,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631052,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631101,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631102,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631151,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,631201,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631202,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631203,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631204,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631205,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631206,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631207,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631208,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631209,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631210,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631211,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631212,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631213,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631301,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631302,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631303,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631304,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631402,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 +IN-PIN,631501,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631502,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631551,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631552,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631553,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631561,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631601,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631603,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631604,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631605,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631606,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 +IN-PIN,631701,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,631702,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632001,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632002,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632004,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632006,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632007,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632008,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632009,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632010,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632011,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632012,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632013,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632014,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632055,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632057,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632058,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632059,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632101,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632102,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632103,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632104,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632105,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632106,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632107,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632113,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632114,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632201,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632202,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632203,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632204,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632209,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632301,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632311,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632312,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632313,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632314,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632315,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632316,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632317,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632318,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632319,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632326,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 +IN-PIN,632401,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632404,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632405,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632501,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632502,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632503,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632504,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632505,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632506,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632507,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632508,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632509,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632510,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632511,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632512,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632513,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632514,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632515,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632516,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632517,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632518,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632519,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632520,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632521,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632531,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 +IN-PIN,632601,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632602,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,632603,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,632604,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,635001,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635002,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635101,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635102,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635103,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635104,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635105,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635106,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635107,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635108,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635109,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635110,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635111,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635112,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635113,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635114,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635115,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635116,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635117,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635118,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635119,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635120,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635121,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635122,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635123,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635124,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635126,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635130,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635201,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635202,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635203,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635204,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635205,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635206,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635207,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635301,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635302,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635303,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635304,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635305,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,635306,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635307,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 +IN-PIN,635601,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635602,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635651,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635652,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635653,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635654,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635655,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635701,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635702,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635703,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635710,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635751,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635752,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635754,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635801,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635802,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635803,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,635804,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635805,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635806,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,635807,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635808,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635809,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,635810,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,635811,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635812,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635813,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 +IN-PIN,635814,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635815,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635851,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635852,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635853,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635854,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,635901,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 +IN-PIN,636005,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636008,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636010,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636011,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636012,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636013,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636015,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636030,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636101,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636102,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636103,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636104,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636105,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636106,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636107,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636108,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636109,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636110,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636111,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636112,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,636113,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,636114,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636115,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636116,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636117,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636118,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,636119,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636121,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636122,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636138,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636139,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636140,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636141,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636142,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,636201,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636202,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,636203,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,636204,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636301,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,636302,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636303,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636304,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636305,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636306,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636307,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636308,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636309,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636351,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636352,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636354,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636403,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636404,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636451,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636452,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636453,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636454,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636455,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636457,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636458,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636501,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636502,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636503,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636601,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636602,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,636701,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636704,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636705,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636803,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636804,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636805,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636806,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636807,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636808,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636809,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636810,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636811,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636813,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636902,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636903,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636904,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636905,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636906,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,636907,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 +IN-PIN,637001,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637002,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637003,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637013,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637014,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637015,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637017,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637018,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637019,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637020,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637021,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637101,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,637102,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,637105,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,637107,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,637201,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637202,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637203,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637204,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637205,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637206,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637207,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637208,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637209,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637210,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637211,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637212,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637213,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637214,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637215,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637216,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637301,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,637302,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637303,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637304,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637401,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637402,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637403,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637404,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637405,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637406,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637407,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637408,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637409,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637410,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637411,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637412,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637415,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637501,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,637502,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,637503,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,637504,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 +IN-PIN,637505,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,638001,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638002,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638003,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638004,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638005,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638007,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,638008,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638009,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638012,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638051,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638052,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638053,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638054,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638055,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638056,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638057,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638101,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638102,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638103,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638104,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638105,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638106,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638107,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638108,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638109,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638110,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638111,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638112,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638115,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638116,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638151,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638152,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638153,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638154,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638181,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,638182,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,638183,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 +IN-PIN,638301,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638311,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638312,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638313,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638314,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638315,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638316,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638401,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,638402,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638451,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638452,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638453,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638454,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638455,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638456,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638457,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638458,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638459,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,638460,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,638461,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638462,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638476,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638501,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638502,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638503,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638504,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638505,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638506,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638656,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638657,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638660,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638661,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638672,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638673,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638701,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638702,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638703,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638706,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,638751,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638752,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,638812,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,639001,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639002,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639003,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639004,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639005,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639006,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639007,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639008,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639101,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,639102,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639103,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639104,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639105,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639107,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639108,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639109,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639110,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639111,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639112,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,639113,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639114,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639115,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 +IN-PIN,639116,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639117,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639118,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639119,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639120,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639136,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639201,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639202,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639203,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639205,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639206,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,639207,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 +IN-PIN,641001,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641005,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641006,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641007,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641008,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641009,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641010,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641015,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641016,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641017,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641019,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641020,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641022,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641024,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641026,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641027,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641028,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641029,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641030,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641031,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641032,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641034,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641035,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641039,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641041,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641045,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641047,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641048,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641049,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641050,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641062,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641101,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641103,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641104,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641105,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641107,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641108,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641109,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641110,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641111,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641112,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641113,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641114,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641201,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641202,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641302,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641305,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641401,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641402,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641407,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641602,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641603,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641604,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641605,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641606,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641607,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641652,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641653,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641654,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641655,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641658,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641659,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641662,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641663,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641664,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641665,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 +IN-PIN,641666,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641667,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641668,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641669,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641670,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641671,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,641687,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,641697,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642001,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642002,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642003,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642004,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642005,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642006,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642007,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642101,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642102,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642103,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642104,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642105,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642107,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642109,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642110,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642111,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642112,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642113,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642114,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642120,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642122,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642123,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642126,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642128,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642129,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642132,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642134,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642154,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642201,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642202,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 +IN-PIN,642203,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642204,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642205,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642206,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,642207,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 +IN-PIN,643003,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,643202,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,643204,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,643205,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,643218,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,643231,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,643238,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,643239,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,643242,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 +IN-PIN,670001,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670002,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670003,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670004,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670005,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670006,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670008,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670009,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670010,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670104,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670105,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670106,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670107,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670141,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670142,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670143,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670301,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670303,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670304,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670305,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670306,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670307,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670309,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670331,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670353,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670502,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670511,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670521,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670561,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670563,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670571,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670581,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670582,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670591,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670592,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670593,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670594,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670595,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670601,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670602,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670604,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670611,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670612,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670613,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670621,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670622,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670631,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670633,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670642,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670643,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670644,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,670645,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,670646,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,670650,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670651,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670662,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670671,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670672,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670673,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670674,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670676,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670692,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670693,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670694,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670701,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670702,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670703,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670705,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670706,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,670721,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,670731,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,670741,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,671121,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671122,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671123,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671124,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671310,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671312,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671313,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671314,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671315,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671316,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671317,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671318,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671319,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671320,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671321,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671322,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671323,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671324,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671326,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671348,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671351,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671531,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671532,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671533,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671534,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671541,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671542,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671543,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671551,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,671552,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 +IN-PIN,673001,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673003,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673004,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673005,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673007,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673008,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673010,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673015,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673016,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673017,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673019,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673021,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673101,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673102,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673104,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673121,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673122,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673123,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673301,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673303,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673304,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673305,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673306,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673307,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673309,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673310,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 +IN-PIN,673311,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,673313,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,673314,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673315,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673316,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 +IN-PIN,673317,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673323,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673328,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673501,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673502,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673503,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673504,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673505,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673506,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673507,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673508,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673509,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673513,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673517,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673521,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673522,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673523,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673524,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673525,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673526,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673527,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673528,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673529,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673541,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673542,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673571,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673572,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673573,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673574,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673575,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673576,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673577,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673579,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673580,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673581,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673582,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673585,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673586,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673591,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673592,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673593,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673595,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673596,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 +IN-PIN,673601,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673602,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673603,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673604,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673611,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673612,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673613,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673614,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673616,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673620,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673631,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673633,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673634,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673635,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673637,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673638,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673639,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673640,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673641,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673642,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,673655,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,673661,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 +IN-PIN,676101,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676102,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676104,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676106,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676108,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676109,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676121,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676122,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676123,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676301,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676302,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676303,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676304,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676305,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676306,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676307,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676312,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676317,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676320,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676501,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676503,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676504,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676505,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676506,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676507,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676508,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676509,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676517,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676519,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676521,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676523,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676525,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676528,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676541,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676542,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676551,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676552,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676553,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,676561,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,678001,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678004,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678006,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678007,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678008,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678101,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678102,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678103,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678501,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678502,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678503,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678504,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678505,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678506,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678507,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678508,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678510,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678532,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678533,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678534,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678541,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678542,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678543,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678544,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678545,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678546,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678551,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678552,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678553,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678555,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678556,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678557,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678571,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678572,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678573,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678574,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678581,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678582,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678583,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678592,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678593,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678594,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678595,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678597,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678598,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678601,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678611,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678612,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678613,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678621,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678622,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678623,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678624,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678631,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678633,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678641,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678642,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678651,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678671,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678682,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678683,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678684,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678686,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678687,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678701,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678702,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678703,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678705,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678706,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678721,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678722,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,678731,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679101,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679104,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679105,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,679106,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,679121,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679301,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679303,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679304,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679307,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679309,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679313,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679321,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679322,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679323,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679324,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679325,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679326,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679327,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679328,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679329,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679330,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679331,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679332,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679333,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679334,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679335,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679336,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679337,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679338,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679339,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679340,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679341,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679357,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679501,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679502,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679503,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679504,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679505,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679512,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679513,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679515,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679522,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679523,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679531,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,679532,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,679533,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679534,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679536,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679551,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 +IN-PIN,679562,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,679563,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,679564,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,679571,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679572,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679573,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679575,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679576,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679578,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679579,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679580,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679581,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679582,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679583,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,679585,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 +IN-PIN,680001,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680002,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680003,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680005,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680007,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680008,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680010,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680012,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680013,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680014,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680026,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680027,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680028,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680101,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680102,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680104,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680121,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680122,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680123,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680125,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680301,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680302,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680304,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680305,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680306,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680308,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680309,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680310,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680311,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680312,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680317,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680501,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680502,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680503,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680505,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680506,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680507,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680508,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680509,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680510,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680511,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680512,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680514,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680515,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680517,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680518,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680519,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680521,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680523,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680541,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680542,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680543,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680544,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680545,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680546,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680551,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680552,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680553,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680555,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680561,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680562,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680563,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680564,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680565,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680567,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680569,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680570,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680571,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680581,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680582,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680583,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680584,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680585,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680586,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680587,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680588,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680589,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680590,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680591,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680594,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680596,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680601,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680602,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680604,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680613,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680614,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680615,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680616,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680617,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680618,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680620,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680623,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680631,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680641,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680651,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680652,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680653,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680654,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680655,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680661,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680662,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680663,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680664,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680665,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680666,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680667,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,680668,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680669,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680671,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680681,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680682,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680683,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680684,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680686,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680687,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680689,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680691,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680697,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680699,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680701,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680702,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680703,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680712,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680721,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680722,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680724,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680731,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680732,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680733,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680734,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680741,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,680751,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 +IN-PIN,682001,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682002,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682004,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682005,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682008,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682010,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682011,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682017,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682021,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682024,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682027,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682030,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682034,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682038,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682301,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682303,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682304,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682305,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682307,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682308,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682309,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682310,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682312,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682313,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682314,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682315,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682316,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682317,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682501,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682502,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682504,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682505,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682506,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682507,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682508,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682509,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,682551,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,682552,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,682553,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,682554,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,682555,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,682556,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,682557,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,682558,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,682559,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 +IN-PIN,683101,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683105,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683106,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683110,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683112,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683502,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683511,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683512,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683513,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683514,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683516,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683517,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683519,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683522,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683541,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683542,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683544,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683545,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683546,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683549,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683550,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683556,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683562,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683565,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683571,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683572,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683574,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683575,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683576,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683577,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683578,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683579,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683580,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683581,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683585,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,683587,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,685501,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685503,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685505,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685507,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685509,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685511,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685512,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685514,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685515,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685531,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685532,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685533,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685535,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685551,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685552,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685553,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685554,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685561,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685562,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685563,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685565,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685566,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685571,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685581,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685582,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685583,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685585,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685586,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685587,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685588,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685589,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685590,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685591,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685595,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685601,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685602,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685603,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685604,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685605,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685606,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685607,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685608,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685609,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685612,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685613,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685614,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685615,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685616,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685618,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685619,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,685620,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 +IN-PIN,686002,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686003,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686005,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686008,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686010,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686011,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686012,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686015,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686016,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686019,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686020,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686022,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686102,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,686103,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686104,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686105,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686122,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686123,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686143,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686144,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686146,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686502,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686503,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686504,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686506,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686507,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686509,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686510,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,686511,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,686512,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686513,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686514,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686516,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686518,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686519,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686522,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686532,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686534,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,686536,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686537,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686538,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686539,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686540,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686541,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686542,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686543,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686544,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686547,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,686561,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686563,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686564,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686571,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686573,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686574,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686576,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686577,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686579,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686580,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686582,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686584,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686586,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686602,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686603,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686605,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686606,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686607,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686610,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686611,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686612,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686613,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686631,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686632,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686633,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686634,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686636,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686637,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686651,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686652,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 +IN-PIN,686661,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686662,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686663,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686664,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686665,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686667,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686668,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686669,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686670,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686671,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686672,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686673,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686681,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686691,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686692,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,686693,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 +IN-PIN,688001,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688003,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688004,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688005,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688006,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688011,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688014,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688501,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688502,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688503,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688504,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688505,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688506,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688521,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688522,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688523,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688524,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688525,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688526,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688527,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688528,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688529,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688530,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688531,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688532,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688533,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688534,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688535,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688536,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688537,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688539,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688540,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688541,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688561,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688562,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,688570,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689102,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689103,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689106,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689108,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689109,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689110,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689115,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689121,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689501,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689502,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689503,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689505,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689506,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689508,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689509,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689512,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689514,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689515,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689531,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689533,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689542,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689543,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689544,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689549,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689572,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689573,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689574,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689581,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689582,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689583,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689584,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689585,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689586,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689592,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689595,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689611,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689621,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689622,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689623,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689624,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,689625,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689641,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689642,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689643,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689646,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689647,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689648,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689650,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689652,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689656,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689662,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689663,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689666,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689667,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689668,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689672,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689673,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689674,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689678,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689691,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689693,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689694,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689695,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,689696,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,689699,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,689711,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,690101,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690103,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690104,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690105,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690107,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690110,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690501,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690502,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690503,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690504,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690505,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690506,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690507,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690508,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690509,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690513,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690514,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690515,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690516,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690517,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690518,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690519,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690520,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690521,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690522,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690523,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690524,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690525,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690526,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690527,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690532,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690533,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690534,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690535,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690536,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690540,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690542,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690548,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690558,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690559,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690561,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690572,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 +IN-PIN,690573,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,690574,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691001,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691004,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691005,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691010,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691011,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691015,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691301,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691302,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691303,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691306,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691307,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691308,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691309,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691310,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691311,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691312,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691322,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691331,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691332,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691333,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691500,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691501,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691502,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691503,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691505,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691506,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691507,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691508,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691509,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691516,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691520,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691521,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691522,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691524,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,691525,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,691526,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,691532,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691533,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691534,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691535,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691536,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691537,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691538,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691540,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691551,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,691553,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,691554,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,691555,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,691556,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 +IN-PIN,691559,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691560,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691571,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691572,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691573,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691574,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691576,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691577,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691578,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691581,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691582,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691583,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691584,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691601,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,691602,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 +IN-PIN,695002,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695003,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695004,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695005,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695012,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695013,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695014,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695019,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695024,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695026,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695027,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695032,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695042,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695043,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695101,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695102,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695103,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695121,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695122,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695123,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695124,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695125,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695126,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695132,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695133,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695141,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695142,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695143,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695144,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695145,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695146,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695301,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695302,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695303,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695304,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695305,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695306,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695308,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695309,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695310,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695311,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695313,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695316,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695317,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695318,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695501,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695502,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695504,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695505,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695506,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695507,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695521,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695525,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695526,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695527,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695528,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695541,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695542,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695543,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695551,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695562,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695563,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695564,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695568,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695571,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695572,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695573,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695574,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695575,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695582,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695584,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695586,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695587,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695588,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695589,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695601,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695602,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695603,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695604,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695605,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695606,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695607,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695608,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695609,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695610,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695611,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695612,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695614,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,695615,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 +IN-PIN,700102,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700110,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700113,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700119,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700121,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700122,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700124,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700125,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700126,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700128,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700130,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700132,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700135,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700136,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700137,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,700144,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,700150,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,700155,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700156,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700160,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,700162,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,711104,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711109,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711114,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711115,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711201,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711204,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711205,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711225,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711226,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711301,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711302,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711303,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711304,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711305,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711306,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711307,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711309,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711310,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711312,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711313,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711314,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711315,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711316,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711317,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711322,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711331,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711401,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711403,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711404,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711405,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711408,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,711409,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711410,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,711411,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711412,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711413,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,711414,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 +IN-PIN,712101,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712102,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712103,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712104,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712105,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712121,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712122,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712123,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712124,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712134,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712135,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712138,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712146,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712147,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712148,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712149,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712152,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712203,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712204,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712222,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712223,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712234,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712245,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712246,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712248,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712250,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712301,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712302,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712303,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712304,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712305,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712306,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712308,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712311,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712401,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712402,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712403,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712404,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712405,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712406,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712407,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712408,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712409,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712410,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712412,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712413,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712414,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712415,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712416,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712417,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712501,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712502,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712503,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712504,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712512,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712513,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712514,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712515,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712601,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712602,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712611,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712612,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712613,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712614,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712615,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712616,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712617,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712701,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712702,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,712706,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,713101,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713102,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713103,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713104,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713121,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713122,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713123,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,713124,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713125,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713126,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713127,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713128,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713129,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713130,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713131,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713132,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713140,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713141,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713142,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,713143,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713144,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713145,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713146,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713147,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713148,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713149,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713150,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713151,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713152,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713153,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713154,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713166,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713204,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713205,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713206,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713211,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713212,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713315,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713321,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713322,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713323,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713330,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713334,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713335,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713336,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713337,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713338,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713339,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713341,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713342,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713346,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713347,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713357,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713358,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713359,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713362,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713363,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713369,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713376,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713378,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713381,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713384,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713385,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713386,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 +IN-PIN,713401,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713403,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713404,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713405,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713406,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713407,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713408,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713409,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713420,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713421,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713422,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713423,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713424,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713426,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713427,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713428,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713502,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,713512,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713513,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713514,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713515,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713519,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,713520,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 +IN-PIN,721101,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721102,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721121,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721122,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721124,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721125,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721126,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721127,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721128,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721129,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721130,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721131,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721133,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721134,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721135,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721136,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721137,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721139,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721140,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721144,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721145,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721146,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721147,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721148,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721149,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721150,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721151,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721152,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721153,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721154,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721155,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721156,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721157,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721158,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721160,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721161,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721166,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721172,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721201,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721211,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721212,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 +IN-PIN,721222,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721232,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721242,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721253,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721260,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721301,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721303,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721304,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721305,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721306,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721401,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721402,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721403,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721404,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721405,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721406,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721420,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721422,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721423,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721424,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721425,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721426,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721427,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721428,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721429,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721430,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721431,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721432,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721433,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721434,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721435,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721436,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721437,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721438,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721439,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721440,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721441,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721442,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721443,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721444,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721445,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721446,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721447,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721448,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721449,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721450,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721451,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721452,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721453,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721454,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721455,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721456,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721457,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721458,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721463,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721467,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721501,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721503,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721504,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721505,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721506,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721507,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721513,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721514,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721515,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721516,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721517,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 +IN-PIN,721601,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721602,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721603,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721624,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721625,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721626,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721627,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721628,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721629,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721631,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721632,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721633,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721634,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721635,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721637,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721641,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 +IN-PIN,721642,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721644,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721645,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721646,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721647,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721648,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721649,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721650,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721651,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721652,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721653,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721654,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721655,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721656,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721658,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,721659,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 +IN-PIN,722102,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722121,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722122,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722132,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722133,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722134,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722135,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722136,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722137,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722138,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722139,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722140,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722141,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722142,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722143,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722144,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722146,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722147,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722148,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722149,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722150,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722151,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722152,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722153,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722154,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722155,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722156,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722157,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722158,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722160,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722161,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722162,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722164,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722173,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722201,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722202,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722203,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722204,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722205,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722206,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722207,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,722208,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,723101,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723102,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723103,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723104,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723121,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 +IN-PIN,723126,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723127,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723128,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723129,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723130,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723131,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723132,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723133,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723142,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723143,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723145,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723146,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723147,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723148,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723149,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723151,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723152,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723153,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723154,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723155,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723156,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723201,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723202,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723212,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723213,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,723215,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 +IN-PIN,731101,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731102,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731103,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731104,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731121,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731123,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731124,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731125,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731126,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731127,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731129,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731130,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731132,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731201,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731202,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731204,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731213,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731214,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731215,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731216,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731219,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731220,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731221,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731222,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731223,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731233,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731234,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731235,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731236,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731237,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731238,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731240,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731241,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731242,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731243,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731244,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731245,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731301,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731302,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731303,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,731304,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 +IN-PIN,732101,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732102,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732103,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732121,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732122,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732123,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732124,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732125,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732126,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732127,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732128,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732138,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732139,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732140,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732141,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732142,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732144,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732201,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732202,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732203,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732204,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732205,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732206,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732207,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732208,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732209,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732210,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732215,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,732216,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 +IN-PIN,733101,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733102,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733103,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733121,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733123,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733124,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733125,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733126,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733127,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733128,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733129,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733130,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733132,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733133,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733134,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733140,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733141,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733142,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733143,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733145,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 +IN-PIN,733156,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733201,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733202,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733207,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733208,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733209,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733210,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,733215,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 +IN-PIN,734002,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734003,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734008,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734009,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734010,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734011,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734012,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734013,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734014,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734101,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734102,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734104,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734105,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734201,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734203,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734213,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734214,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734215,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734216,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734217,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734218,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734219,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734220,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734221,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734222,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734223,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734224,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734226,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734301,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +IN-PIN,734311,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +IN-PIN,734312,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734313,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734314,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +IN-PIN,734315,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +IN-PIN,734316,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +IN-PIN,734423,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734424,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734425,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734426,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734427,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734429,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734434,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 +IN-PIN,734501,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,734503,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +IN-PIN,735102,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735121,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735122,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,735132,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735133,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735134,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735135,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735202,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735203,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735204,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735205,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735206,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735207,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735208,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735209,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735210,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735211,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735212,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735213,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735214,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735215,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735216,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735217,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735218,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735219,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735220,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735221,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735222,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735223,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735224,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735225,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735227,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735228,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,735229,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735230,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735231,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 +IN-PIN,735233,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735301,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,735302,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,735303,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,735304,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,735305,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 +IN-PIN,736121,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736122,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736123,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736131,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736133,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736134,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736135,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736145,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736146,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736156,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736157,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736158,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736159,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736160,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736165,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736167,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736168,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736169,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736170,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736171,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736172,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736176,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736179,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 +IN-PIN,736182,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736201,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736202,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736203,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736204,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736205,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736206,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736207,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,736208,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 +IN-PIN,737101,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737102,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737103,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737106,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737107,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737111,PostalCode,Gyalshing,LGD,228,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 +IN-PIN,737113,PostalCode,Gyalshing,LGD,228,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 +IN-PIN,737116,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737120,PostalCode,Mangan,LGD,226,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 +IN-PIN,737121,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737126,PostalCode,Namchi,LGD,227,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +IN-PIN,737128,PostalCode,Namchi,LGD,227,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +IN-PIN,737131,PostalCode,Pakyong,LGD,741,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +IN-PIN,737132,PostalCode,Pakyong,LGD,741,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +IN-PIN,737133,PostalCode,Pakyong,LGD,741,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 +IN-PIN,737134,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737135,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 +IN-PIN,737139,PostalCode,Namchi,LGD,227,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 +IN-PIN,741101,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741102,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741103,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741121,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741122,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741123,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741124,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741125,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741126,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741127,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741137,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741138,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741139,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741140,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741150,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741151,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741152,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741153,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741154,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741155,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741156,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,741157,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741158,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741160,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741161,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741162,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741163,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741164,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741165,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741166,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741167,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741181,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741201,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741202,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741221,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741222,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741223,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741238,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741245,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741246,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741247,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741248,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741249,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741250,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741251,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741253,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741254,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741255,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741256,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741257,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741301,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741302,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741313,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741315,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741316,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741317,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741401,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741402,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741404,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741501,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741502,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741503,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741504,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741505,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741506,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741507,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741508,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,741509,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 +IN-PIN,742101,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742102,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742104,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742113,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742121,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742122,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742123,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742132,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742133,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742134,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742135,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742136,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742137,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742138,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742140,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742147,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742148,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742149,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742151,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742159,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742161,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742163,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742164,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742165,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742166,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742168,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742174,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742175,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742184,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742187,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742189,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742201,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742202,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742212,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742213,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742223,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742224,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742225,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742226,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742227,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742235,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742236,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742237,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742302,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742303,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742304,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742305,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742306,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742308,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742401,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742402,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742404,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742405,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742406,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742407,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742408,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742409,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,742410,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 +IN-PIN,743122,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743126,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743127,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743130,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743135,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743144,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743145,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743166,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743193,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743221,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743222,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743232,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743233,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743234,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743235,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743245,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743247,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743248,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743249,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743251,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743252,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743262,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743263,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743270,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743271,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743272,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743273,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743286,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743287,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743289,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743290,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743291,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743292,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743293,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743294,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743297,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743312,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743318,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743329,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743330,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743331,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743332,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743336,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743337,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743338,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743345,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743347,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743348,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743349,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743351,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743354,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743355,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743356,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743357,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743363,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743368,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743370,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743371,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743372,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743373,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743374,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743375,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743376,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743377,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743378,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743383,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743387,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743395,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743399,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743401,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743405,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743411,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743412,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743422,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743423,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743424,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743425,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743426,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743427,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743428,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743429,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743435,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743437,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743438,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743439,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743442,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743445,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743446,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743456,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743502,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743503,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743504,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743513,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743609,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743610,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 +IN-PIN,743611,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743701,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743702,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743704,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743710,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,743711,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 +IN-PIN,744101,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +IN-PIN,744103,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +IN-PIN,744104,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +IN-PIN,744105,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +IN-PIN,744201,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +IN-PIN,744202,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +IN-PIN,744203,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +IN-PIN,744204,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +IN-PIN,744205,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +IN-PIN,744206,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +IN-PIN,744207,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 +IN-PIN,744209,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +IN-PIN,744210,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +IN-PIN,744211,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 +IN-PIN,744301,PostalCode,Nicobars,LGD,603,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 +IN-PIN,744302,PostalCode,Nicobars,LGD,603,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 +IN-PIN,744303,PostalCode,Nicobars,LGD,603,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 +IN-PIN,744304,PostalCode,Nicobars,LGD,603,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 +IN-PIN,751002,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,751017,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,751019,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,751021,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,751024,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,751028,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,751029,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,751030,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,751031,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752002,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752004,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752010,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752011,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752012,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752013,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752014,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752015,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752016,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752017,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752018,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752019,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752020,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752021,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752022,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752023,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752024,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752025,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752026,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752027,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752030,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752031,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752032,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752034,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752035,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752038,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752045,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752046,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752050,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752054,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752055,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752056,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752057,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752060,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752061,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752062,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752063,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752064,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752065,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752066,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752068,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752069,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752070,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752077,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752078,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752079,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752080,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752081,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752082,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752083,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752084,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752085,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752089,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752090,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752091,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752092,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752093,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752094,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 +IN-PIN,752100,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752101,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752102,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752103,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,752104,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752105,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752106,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752107,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,752108,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752109,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752110,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752111,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752113,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752114,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752116,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752118,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752119,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,752120,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,752121,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 +IN-PIN,753006,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,753011,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754001,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754002,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754003,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754004,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754005,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754006,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754007,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754008,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754009,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754010,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754011,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754012,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 +IN-PIN,754018,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754022,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754023,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,754024,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,754025,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754027,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754028,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754029,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754030,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754031,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754032,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754034,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754035,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754037,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754071,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754082,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,754100,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754102,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754103,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754104,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754105,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754106,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754107,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754108,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754109,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754110,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754111,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754112,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754113,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754114,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754119,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754130,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754131,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754132,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754133,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754134,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754135,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754136,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754137,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754138,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754139,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754140,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754141,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754142,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754153,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754160,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754162,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754200,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754201,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754202,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754203,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754204,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754205,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,754206,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754207,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754208,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754209,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754210,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754211,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754212,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754213,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754214,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,754215,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754216,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754217,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754218,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754219,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754220,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754221,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754222,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754223,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754224,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754225,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754227,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754228,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754231,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754239,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754240,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754244,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754245,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754246,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754248,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754250,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754253,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754289,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,754290,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754292,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,754293,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754294,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 +IN-PIN,754295,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754296,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,754297,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754298,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,754299,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 +IN-PIN,755001,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755003,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755004,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755006,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755008,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755009,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755010,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755011,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755012,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755013,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755014,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755015,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755016,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755017,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755018,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755019,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755020,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755022,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755023,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755025,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755026,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755027,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755036,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755043,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755044,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755050,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,755061,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 +IN-PIN,755062,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 +IN-PIN,756002,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756003,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756019,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756020,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756021,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756023,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756024,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756025,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756026,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756027,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756028,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756029,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756033,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756034,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756035,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756036,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756037,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756038,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756039,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756040,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756041,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756042,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756043,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756044,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756045,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756046,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756047,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756048,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756049,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756051,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756056,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756058,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756059,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756060,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756079,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756080,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756081,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756083,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756084,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756085,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756086,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756087,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756088,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756089,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756100,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756101,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756111,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756112,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756114,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756115,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756116,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756117,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756118,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756119,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756120,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756121,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756122,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756123,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756124,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756125,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756126,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756127,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756128,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756129,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756130,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756131,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756132,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756133,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756134,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,756135,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756137,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756138,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756139,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756144,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756162,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756163,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756164,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756165,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756166,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756167,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756168,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756171,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756181,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 +IN-PIN,756182,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,757001,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757002,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757003,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757014,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757016,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757017,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757018,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757019,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757020,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757021,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757022,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757023,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757024,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757025,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757026,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757028,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757029,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757030,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757031,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757032,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757033,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757034,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757035,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757036,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757037,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757038,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757039,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757040,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757041,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757042,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757043,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757045,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757046,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757047,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757048,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757049,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757050,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757051,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757052,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757053,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757054,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757055,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757056,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757073,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757074,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757075,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757077,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757079,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757081,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757082,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 +IN-PIN,757083,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757084,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757085,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757086,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757087,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757091,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757092,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757093,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757100,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757101,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757102,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757103,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757104,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757105,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757106,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,757107,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 +IN-PIN,758002,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758013,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758014,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758015,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758016,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758017,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758018,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758019,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758020,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758021,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758022,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758023,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758025,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758026,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758027,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758028,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758029,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758030,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758031,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758032,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758034,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758035,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758036,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758037,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758038,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758041,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758043,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758044,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758045,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758046,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758047,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758076,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758078,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758079,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758080,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758081,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758082,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758083,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758084,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758085,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758086,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,758087,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 +IN-PIN,759001,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759013,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759014,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759015,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759016,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759017,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759018,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759019,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759020,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759021,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759022,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759023,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759024,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759025,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759026,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759027,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759028,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759029,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759037,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759039,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759040,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759100,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759101,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759102,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759103,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759105,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759106,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759107,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759111,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759116,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759117,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759118,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759119,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759120,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759121,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 +IN-PIN,759122,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759123,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759124,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759125,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759126,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759127,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759128,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759129,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759130,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759132,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759141,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759143,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759145,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759146,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759147,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759148,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759149,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759150,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,759151,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 +IN-PIN,760002,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,760003,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,760007,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,760008,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,760010,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761001,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761002,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761003,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761004,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761005,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761006,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761007,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761008,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761009,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761010,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761011,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761012,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761013,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761014,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761015,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761016,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761017,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761018,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761019,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761020,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761026,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761027,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761028,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761029,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761030,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761031,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761032,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761035,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761037,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761041,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761042,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761043,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761045,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761052,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761054,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761055,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761100,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761101,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761102,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761103,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761104,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761105,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761106,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761107,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761108,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761109,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761110,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761114,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761118,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761121,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761123,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761126,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761131,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 +IN-PIN,761200,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761201,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761206,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761207,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761208,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761209,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761210,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761211,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761212,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761213,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761214,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761215,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,761217,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,762001,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762002,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762010,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762011,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762012,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762013,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762014,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762015,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762016,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762017,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762018,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762019,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762020,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762021,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762022,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762023,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762024,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762026,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762027,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762028,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762029,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762030,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 +IN-PIN,762100,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762101,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762102,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762103,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762104,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762105,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762106,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762107,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762109,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762110,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,762112,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 +IN-PIN,763001,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,763002,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,763003,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,763008,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764002,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764003,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764005,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764006,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764011,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764014,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764020,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764021,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764027,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764028,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764036,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764037,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764039,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764040,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764041,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764042,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764043,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764044,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +IN-PIN,764045,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +IN-PIN,764051,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +IN-PIN,764052,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +IN-PIN,764056,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764057,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764058,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764061,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764062,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,764070,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764071,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764072,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764073,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764074,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764075,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764076,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764077,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764078,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764081,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,764085,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,764086,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +IN-PIN,764087,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 +IN-PIN,764088,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 +IN-PIN,765002,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765013,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 +IN-PIN,765015,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765016,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765017,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 +IN-PIN,765018,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765019,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765020,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765021,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765022,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765023,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765024,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765025,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765026,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765029,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765033,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,765034,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 +IN-PIN,766002,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766003,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766011,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766012,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766013,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766014,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766015,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766016,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766017,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766018,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766019,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766020,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766023,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766026,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766027,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766028,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766029,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766031,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766032,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766036,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766037,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766100,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766101,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766102,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766103,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766104,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +IN-PIN,766105,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +IN-PIN,766106,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +IN-PIN,766107,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +IN-PIN,766108,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +IN-PIN,766110,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 +IN-PIN,766111,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +IN-PIN,766118,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 +IN-PIN,767002,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767016,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +IN-PIN,767017,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +IN-PIN,767018,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +IN-PIN,767019,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +IN-PIN,767020,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767021,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767022,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767023,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +IN-PIN,767024,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767025,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767026,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767027,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767028,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767029,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767030,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767032,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767033,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767035,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767038,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767039,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767040,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767041,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767045,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +IN-PIN,767046,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767048,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767060,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767061,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767062,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 +IN-PIN,767065,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767066,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767067,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767068,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,767071,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 +IN-PIN,768005,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768006,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768016,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768017,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768024,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768025,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768027,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768029,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768030,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768031,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768032,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768033,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768034,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768035,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768036,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768037,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768038,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768039,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768040,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768042,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768045,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768048,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768049,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768050,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768052,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768053,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768102,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768103,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768104,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768105,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768106,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768107,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768108,PostalCode,Debagada,LGD,351,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 +IN-PIN,768109,PostalCode,Debagada,LGD,351,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 +IN-PIN,768110,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768111,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768112,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768113,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768115,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 +IN-PIN,768118,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768119,PostalCode,Debagada,LGD,351,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 +IN-PIN,768121,PostalCode,Debagada,LGD,351,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 +IN-PIN,768200,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768201,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768202,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768204,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768210,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768211,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768212,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768213,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768214,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768215,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768216,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768217,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768219,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768220,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768221,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768222,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768224,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768225,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768226,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768227,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 +IN-PIN,768228,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,768234,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,769003,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,769004,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,769012,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,769016,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,769042,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,769043,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770002,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770011,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770012,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770013,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770014,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770015,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770016,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770017,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770018,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770019,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770020,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770021,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770022,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 +IN-PIN,770023,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770024,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770025,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770031,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770033,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770034,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770035,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770036,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770037,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770038,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770039,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770040,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770041,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770042,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770043,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770044,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770046,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770048,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770051,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770052,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770070,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770072,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770073,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770074,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770075,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,770076,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 +IN-PIN,781004,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,781017,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,781023,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,781026,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,781028,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781029,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,781030,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781031,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781101,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781102,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781120,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781121,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781122,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781123,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781124,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781126,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781127,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781129,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781131,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,781133,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781134,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781136,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781137,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781138,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781141,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781150,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,781171,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,781301,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781302,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781303,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781304,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781305,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781306,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781307,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781308,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781309,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781310,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781311,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781312,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781313,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781314,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781315,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781316,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781317,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781318,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781319,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781320,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781321,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781325,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781326,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781327,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781328,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781329,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781330,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781333,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781334,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781335,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781337,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781338,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 +IN-PIN,781339,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781340,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781341,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781343,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781344,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781346,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781347,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781348,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781349,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781350,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781351,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781352,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781353,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781354,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781355,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781360,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781364,PostalCode,Tamulpur,LGD,756,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781365,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781366,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781367,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781368,PostalCode,Tamulpur,LGD,756,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781369,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781370,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781371,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781372,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781373,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781374,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781375,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 +IN-PIN,781376,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781377,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 +IN-PIN,781378,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 +IN-PIN,781380,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781381,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,781382,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 +IN-PIN,782001,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782002,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782003,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782101,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782102,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782103,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782104,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782105,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782106,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782120,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782121,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782122,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782123,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782124,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782125,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782126,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782127,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782128,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782135,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782136,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782137,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782138,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782139,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782140,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782141,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782142,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782143,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782144,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 +IN-PIN,782401,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,782402,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,782403,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 +IN-PIN,782410,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782411,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782412,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782413,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 +IN-PIN,782426,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782427,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782428,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782429,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782435,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782439,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782440,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782441,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782442,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782445,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782446,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782447,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 +IN-PIN,782448,PostalCode,West Karbi Anglong,LGD,710,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11 +IN-PIN,782450,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782461,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782462,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782470,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782480,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782481,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782482,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782485,PostalCode,West Karbi Anglong,LGD,710,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11 +IN-PIN,782486,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,782490,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 +IN-PIN,783101,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783120,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783121,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783123,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783124,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783125,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783126,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783127,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783128,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783129,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783130,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783131,PostalCode,South Salmara Mancachar,LGD,707,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 +IN-PIN,783132,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783133,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 +IN-PIN,783134,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783135,PostalCode,South Salmara Mancachar,LGD,707,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 +IN-PIN,783136,PostalCode,South Salmara Mancachar,LGD,707,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 +IN-PIN,783301,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783323,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783324,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783325,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783330,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783331,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783333,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783334,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783335,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783336,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783337,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783339,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783345,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783346,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783347,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783348,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783349,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783350,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783354,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783360,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783361,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783369,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783370,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783371,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 +IN-PIN,783372,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783373,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783375,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783376,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 +IN-PIN,783380,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783381,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783382,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783383,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783384,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783385,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783386,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783388,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783389,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783390,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783391,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783392,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,783393,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 +IN-PIN,783394,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 +IN-PIN,784001,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784010,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784025,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784026,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784027,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784028,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784101,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784102,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784103,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784104,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784105,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784110,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784111,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784112,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784113,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784114,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784115,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784116,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784117,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784125,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784144,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784145,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784146,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784147,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784148,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784149,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784150,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784153,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784154,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784160,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,784161,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,784163,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,784164,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,784165,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,784166,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784167,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784168,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784169,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784170,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784171,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784172,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784173,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784174,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784175,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784176,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784177,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784178,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784179,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784180,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784182,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784184,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784189,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 +IN-PIN,784190,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784501,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784502,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784504,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784505,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784506,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784507,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784508,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784509,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 +IN-PIN,784510,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784513,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784514,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784521,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784522,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784523,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784524,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784525,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,784526,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784527,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784528,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 +IN-PIN,784529,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 +IN-PIN,785001,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785004,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785006,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785007,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785008,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785009,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785010,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785013,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785014,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785015,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785101,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785102,PostalCode,Majuli,LGD,706,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 +IN-PIN,785104,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785105,PostalCode,Majuli,LGD,706,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 +IN-PIN,785106,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785107,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785108,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785110,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785111,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785112,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785601,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785602,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785603,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785609,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785610,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785611,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785612,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785613,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785614,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785615,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785616,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785618,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785619,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785621,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785622,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785625,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785626,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785630,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785631,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785632,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785633,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785634,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785635,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785636,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785640,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785661,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785662,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785663,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785664,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785665,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785666,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785667,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785669,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785670,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785671,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785672,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785673,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785674,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785675,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,785676,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,785680,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785681,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785682,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785683,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785684,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785685,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785686,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785687,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785688,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785689,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785690,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785691,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785692,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785693,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785696,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785697,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785698,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 +IN-PIN,785699,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785700,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 +IN-PIN,785701,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 +IN-PIN,785702,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785703,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,785705,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 +IN-PIN,786001,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786002,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786003,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786004,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786006,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786007,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786008,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786010,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786012,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786101,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786103,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786125,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786126,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786145,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786146,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786147,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786148,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786150,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786151,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786152,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786153,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786154,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786155,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786156,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786157,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786158,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786159,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786160,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786170,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786171,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786173,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786174,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786179,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786181,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786182,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786183,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786184,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786187,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786188,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786189,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786190,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786191,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786192,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786601,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 +IN-PIN,786602,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786610,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786611,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786612,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786613,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786614,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786621,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,786692,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 +IN-PIN,787023,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,787026,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787031,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,787032,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,787033,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,787034,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787035,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787051,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,787052,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,787053,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787054,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,787055,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 +IN-PIN,787056,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787057,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787058,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787059,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787060,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787061,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,787110,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 +IN-PIN,788001,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788002,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788003,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788004,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788005,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788006,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788007,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788009,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788010,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788011,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788013,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788015,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788025,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788026,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788030,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788031,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788098,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788099,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788101,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788102,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788103,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788104,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788106,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788107,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788108,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +IN-PIN,788111,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788112,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788113,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788114,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788115,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788116,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788117,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788119,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788120,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788121,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788123,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788126,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788127,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788150,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788152,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788155,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788156,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788160,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788161,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788162,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788163,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788164,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788165,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788166,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788168,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 +IN-PIN,788701,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788709,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788710,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788711,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788712,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788713,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788722,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788723,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788724,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788725,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788726,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788727,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788728,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788734,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788735,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788736,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788737,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788738,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788781,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788802,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788804,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788805,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788806,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 +IN-PIN,788815,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788816,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 +IN-PIN,788818,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +IN-PIN,788819,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +IN-PIN,788820,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +IN-PIN,788830,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +IN-PIN,788831,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +IN-PIN,788832,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +IN-PIN,788931,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 +IN-PIN,790001,PostalCode,Bichom,LGD,787,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +IN-PIN,790002,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +IN-PIN,790003,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +IN-PIN,790101,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +IN-PIN,790102,PostalCode,Bichom,LGD,787,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +IN-PIN,790103,PostalCode,Pakke Kessang,LGD,723,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 +IN-PIN,790104,PostalCode,Tawang,LGD,238,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +IN-PIN,790105,PostalCode,Tawang,LGD,238,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +IN-PIN,790106,PostalCode,Tawang,LGD,238,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 +IN-PIN,790114,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +IN-PIN,790116,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 +IN-PIN,791001,PostalCode,Siang,LGD,679,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +IN-PIN,791002,PostalCode,Upper Siang,LGD,240,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +IN-PIN,791003,PostalCode,Shi Yomi,LGD,725,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 +IN-PIN,791101,PostalCode,Leparada,LGD,724,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 +IN-PIN,791102,PostalCode,East Siang,LGD,232,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +IN-PIN,791103,PostalCode,Siang,LGD,679,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 +IN-PIN,791104,PostalCode,East Siang,LGD,232,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +IN-PIN,791105,PostalCode,Upper Siang,LGD,240,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 +IN-PIN,791110,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +IN-PIN,791111,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +IN-PIN,791112,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +IN-PIN,791113,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +IN-PIN,791114,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +IN-PIN,791118,PostalCode,Kra Daadi,LGD,677,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 +IN-PIN,791119,PostalCode,Keyi Panyor,LGD,786,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 +IN-PIN,791120,PostalCode,Kamle,LGD,718,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 +IN-PIN,791121,PostalCode,East Siang,LGD,232,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 +IN-PIN,791122,PostalCode,Upper Subansiri,LGD,241,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 +IN-PIN,791123,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 +IN-PIN,792001,PostalCode,Lohit,LGD,234,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 +IN-PIN,792056,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +IN-PIN,792101,PostalCode,Dibang Valley,LGD,230,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 +IN-PIN,792102,PostalCode,Lohit,LGD,234,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 +IN-PIN,792103,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +IN-PIN,792104,PostalCode,Anjaw,LGD,628,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 +IN-PIN,792105,PostalCode,Namsai,LGD,678,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 +IN-PIN,792110,PostalCode,Lower Dibang Valley,LGD,235,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 +IN-PIN,792111,PostalCode,Lohit,LGD,234,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 +IN-PIN,792120,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +IN-PIN,792121,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +IN-PIN,792122,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +IN-PIN,792123,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +IN-PIN,792124,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 +IN-PIN,792129,PostalCode,Tirap,LGD,239,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +IN-PIN,792130,PostalCode,Tirap,LGD,239,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 +IN-PIN,792131,PostalCode,Longding,LGD,666,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 +IN-PIN,793001,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793003,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793004,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793005,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793006,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793009,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793010,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793012,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793014,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793015,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793017,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793018,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793019,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793021,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793022,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793101,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,793102,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,793103,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,793104,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,793105,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,793106,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793107,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793108,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793109,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793110,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793112,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793113,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793114,PostalCode,South West Khasi Hills,LGD,658,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 +IN-PIN,793115,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793116,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,793119,PostalCode,Eastern West Khasi Hills,LGD,740,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 +IN-PIN,793120,PostalCode,Eastern West Khasi Hills,LGD,740,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 +IN-PIN,793121,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 +IN-PIN,793122,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,793123,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 +IN-PIN,793126,PostalCode,South West Khasi Hills,LGD,658,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 +IN-PIN,793150,PostalCode,West Jaintia Hills,LGD,275,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 +IN-PIN,793151,PostalCode,West Jaintia Hills,LGD,275,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 +IN-PIN,793160,PostalCode,East Jaintia Hills,LGD,657,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 +IN-PIN,793161,PostalCode,West Jaintia Hills,LGD,275,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 +IN-PIN,793200,PostalCode,East Jaintia Hills,LGD,657,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 +IN-PIN,793210,PostalCode,East Jaintia Hills,LGD,657,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 +IN-PIN,794001,PostalCode,South West Garo Hills,LGD,663,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 +IN-PIN,794002,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794003,PostalCode,West Garo Hills,LGD,278,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +IN-PIN,794004,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794005,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794101,PostalCode,West Garo Hills,LGD,278,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 +IN-PIN,794102,PostalCode,South Garo Hills,LGD,277,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +IN-PIN,794103,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794104,PostalCode,South Garo Hills,LGD,277,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +IN-PIN,794105,PostalCode,South Garo Hills,LGD,277,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +IN-PIN,794106,PostalCode,South West Garo Hills,LGD,663,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 +IN-PIN,794108,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794109,PostalCode,South Garo Hills,LGD,277,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 +IN-PIN,794110,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794111,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794112,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794113,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794114,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 +IN-PIN,794115,PostalCode,North Garo Hills,LGD,656,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 +IN-PIN,795001,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795002,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795003,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795004,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +IN-PIN,795005,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795006,PostalCode,Pherzawl,LGD,715,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 +IN-PIN,795007,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +IN-PIN,795008,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795009,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +IN-PIN,795010,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795101,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +IN-PIN,795102,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +IN-PIN,795103,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +IN-PIN,795104,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +IN-PIN,795105,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +IN-PIN,795106,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +IN-PIN,795107,PostalCode,Kangpokpi,LGD,712,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +IN-PIN,795112,PostalCode,Kangpokpi,LGD,712,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +IN-PIN,795113,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +IN-PIN,795114,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795115,PostalCode,Jiribam,LGD,713,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 +IN-PIN,795116,PostalCode,Jiribam,LGD,713,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 +IN-PIN,795117,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +IN-PIN,795118,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795125,PostalCode,Tamenglong,LGD,258,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 +IN-PIN,795126,PostalCode,Bishnupur,LGD,252,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 +IN-PIN,795127,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +IN-PIN,795128,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +IN-PIN,795129,PostalCode,Kangpokpi,LGD,712,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 +IN-PIN,795130,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795131,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +IN-PIN,795132,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +IN-PIN,795134,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +IN-PIN,795135,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 +IN-PIN,795136,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +IN-PIN,795138,PostalCode,Thoubal,LGD,259,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 +IN-PIN,795139,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +IN-PIN,795140,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795141,PostalCode,Noney,LGD,714,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 +IN-PIN,795142,PostalCode,Kamjong,LGD,717,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 +IN-PIN,795144,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +IN-PIN,795145,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795146,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 +IN-PIN,795147,PostalCode,Noney,LGD,714,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 +IN-PIN,795148,PostalCode,Thoubal,LGD,259,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 +IN-PIN,795149,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 +IN-PIN,795150,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 +IN-PIN,795158,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 +IN-PIN,795159,PostalCode,Noney,LGD,714,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 +IN-PIN,796001,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796005,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796015,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796017,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796070,PostalCode,Kolasib,LGD,263,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 +IN-PIN,796081,PostalCode,Kolasib,LGD,263,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 +IN-PIN,796091,PostalCode,Kolasib,LGD,263,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 +IN-PIN,796101,PostalCode,Kolasib,LGD,263,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 +IN-PIN,796111,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796161,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796181,PostalCode,Serchhip,LGD,268,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 +IN-PIN,796184,PostalCode,Serchhip,LGD,268,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 +IN-PIN,796186,PostalCode,Hnahthial,LGD,726,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +IN-PIN,796190,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796261,PostalCode,Saitual,LGD,727,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +IN-PIN,796290,PostalCode,Saitual,LGD,727,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +IN-PIN,796291,PostalCode,Champhai,LGD,262,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 +IN-PIN,796310,PostalCode,Khawzawl,LGD,728,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +IN-PIN,796320,PostalCode,Champhai,LGD,262,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 +IN-PIN,796321,PostalCode,Champhai,LGD,262,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 +IN-PIN,796370,PostalCode,Khawzawl,LGD,728,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +IN-PIN,796410,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796421,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 +IN-PIN,796431,PostalCode,Mamit,LGD,266,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +IN-PIN,796441,PostalCode,Mamit,LGD,266,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +IN-PIN,796470,PostalCode,Mamit,LGD,266,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +IN-PIN,796501,PostalCode,Mamit,LGD,266,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 +IN-PIN,796571,PostalCode,Hnahthial,LGD,726,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +IN-PIN,796691,PostalCode,Lunglei,LGD,265,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 +IN-PIN,796701,PostalCode,Hnahthial,LGD,726,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 +IN-PIN,796751,PostalCode,Lunglei,LGD,265,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 +IN-PIN,796770,PostalCode,Lawngtlai,LGD,264,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 +IN-PIN,796891,PostalCode,Lawngtlai,LGD,264,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 +IN-PIN,796901,PostalCode,Lawngtlai,LGD,264,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 +IN-PIN,797002,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +IN-PIN,797003,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +IN-PIN,797004,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +IN-PIN,797006,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +IN-PIN,797099,PostalCode,Wokha,LGD,250,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +IN-PIN,797101,PostalCode,Peren,LGD,613,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +IN-PIN,797103,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,797104,PostalCode,Phek,LGD,248,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +IN-PIN,797105,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +IN-PIN,797106,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,797107,PostalCode,Phek,LGD,248,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +IN-PIN,797108,PostalCode,Phek,LGD,248,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 +IN-PIN,797109,PostalCode,Tseminyu,LGD,757,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,797110,PostalCode,Peren,LGD,613,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 +IN-PIN,797111,PostalCode,Wokha,LGD,250,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 +IN-PIN,797112,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,797113,PostalCode,Dimapur,LGD,244,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11 +IN-PIN,797114,PostalCode,Meluri,LGD,788,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,797115,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,797116,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,797118,PostalCode,Dimapur,LGD,244,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11 +IN-PIN,797120,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 +IN-PIN,798601,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +IN-PIN,798602,PostalCode,Mon,LGD,247,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +IN-PIN,798603,PostalCode,Mon,LGD,247,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +IN-PIN,798604,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +IN-PIN,798607,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +IN-PIN,798611,PostalCode,Kiphire,LGD,614,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 +IN-PIN,798612,PostalCode,Noklak,LGD,736,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,798613,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +IN-PIN,798614,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +IN-PIN,798615,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 +IN-PIN,798616,PostalCode,Tuensang,LGD,249,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 +IN-PIN,798618,PostalCode,Longleng,LGD,615,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +IN-PIN,798620,PostalCode,Zunheboto,LGD,251,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +IN-PIN,798621,PostalCode,Mon,LGD,247,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 +IN-PIN,798622,PostalCode,Longleng,LGD,615,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +IN-PIN,798625,PostalCode,Longleng,LGD,615,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 +IN-PIN,798626,PostalCode,Noklak,LGD,736,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,798627,PostalCode,Zunheboto,LGD,251,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 +IN-PIN,798628,PostalCode,Shamator,LGD,765,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 +IN-PIN,799001,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799002,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799003,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799004,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799006,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799008,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799009,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799011,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +IN-PIN,799012,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799013,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +IN-PIN,799015,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799035,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799045,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799101,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +IN-PIN,799102,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +IN-PIN,799103,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +IN-PIN,799104,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799105,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +IN-PIN,799113,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +IN-PIN,799114,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +IN-PIN,799115,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +IN-PIN,799120,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +IN-PIN,799125,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 +IN-PIN,799130,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +IN-PIN,799131,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +IN-PIN,799132,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 +IN-PIN,799141,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799142,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799143,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799144,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799145,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799150,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799153,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799155,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799156,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799157,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 +IN-PIN,799201,PostalCode,Khowai,LGD,652,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 +IN-PIN,799203,PostalCode,Khowai,LGD,652,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 +IN-PIN,799204,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799205,PostalCode,Khowai,LGD,652,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 +IN-PIN,799207,PostalCode,Khowai,LGD,652,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 +IN-PIN,799210,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799211,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799212,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 +IN-PIN,799250,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799251,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799253,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799254,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799256,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799260,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799261,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799262,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799263,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +IN-PIN,799264,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +IN-PIN,799266,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799269,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799270,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799271,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 +IN-PIN,799273,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799275,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799277,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +IN-PIN,799278,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799279,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +IN-PIN,799280,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +IN-PIN,799281,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +IN-PIN,799282,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +IN-PIN,799284,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799285,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799286,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799287,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799288,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799289,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 +IN-PIN,799290,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 +IN-PIN,800001,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800002,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800003,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800004,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800005,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800006,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800007,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800008,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800009,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800011,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800012,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800013,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800014,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800016,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800019,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800020,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800025,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800026,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800027,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800030,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,800033,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801102,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801103,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801104,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801108,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801109,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801110,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801111,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801112,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801113,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801301,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,801302,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,801303,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,801304,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,801305,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,801306,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,801307,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,801503,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,801505,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,802101,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802102,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802111,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802112,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802114,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802115,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802116,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802117,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802118,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802119,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802120,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802122,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802123,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802125,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802126,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802127,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802129,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802130,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802131,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802132,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,802133,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802134,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802135,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802136,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 +IN-PIN,802152,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802154,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802155,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802156,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802157,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802158,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802159,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802160,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802161,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802162,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802163,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802164,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802165,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802166,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802183,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802201,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802202,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802203,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802204,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802205,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802206,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802207,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802208,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802209,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802210,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802211,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802212,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802213,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802214,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802215,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802216,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802217,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802218,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802219,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802220,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802221,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802222,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802223,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802226,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,802301,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802302,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802311,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802312,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802313,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802314,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802316,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802351,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,802352,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 +IN-PIN,803101,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803107,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803108,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803109,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803110,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803111,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803113,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803114,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803115,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803116,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803117,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803118,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803119,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803120,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803201,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803202,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803203,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803211,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803212,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803213,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803214,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803215,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803216,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,803221,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803301,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803302,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803303,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803306,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,803307,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,804401,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +IN-PIN,804402,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +IN-PIN,804403,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,804404,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804405,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,804406,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804407,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804408,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804417,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804418,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804419,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +IN-PIN,804421,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +IN-PIN,804422,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804423,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +IN-PIN,804425,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804429,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804432,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,804451,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,804452,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,804453,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,804454,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 +IN-PIN,805101,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805102,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805103,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805104,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805105,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,805106,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805107,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805108,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805109,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805110,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805111,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805112,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805113,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805114,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805121,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805122,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805123,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805124,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805125,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805126,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805127,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805128,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,805129,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,805130,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805131,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,805132,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,805141,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 +IN-PIN,811101,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,811102,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,811103,PostalCode,Sheikhpura,LGD,219,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +IN-PIN,811104,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 +IN-PIN,811105,PostalCode,Sheikhpura,LGD,219,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 +IN-PIN,811106,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +IN-PIN,811107,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +IN-PIN,811112,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +IN-PIN,811201,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +IN-PIN,811202,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +IN-PIN,811211,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +IN-PIN,811212,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +IN-PIN,811213,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +IN-PIN,811214,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +IN-PIN,811301,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811302,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +IN-PIN,811303,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811304,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +IN-PIN,811305,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811307,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811308,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811309,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +IN-PIN,811311,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 +IN-PIN,811312,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811313,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811314,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811315,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811316,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,811317,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 +IN-PIN,812001,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,812002,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,812003,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,812004,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,812005,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,812006,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,812007,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,813101,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813102,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813103,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813104,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813105,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813106,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813107,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813108,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813109,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813110,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813201,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +IN-PIN,813202,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813203,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,813204,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,813205,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813206,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,813207,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813209,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,813210,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813211,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813212,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,813213,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,813214,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,813221,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 +IN-PIN,813222,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,814101,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814103,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814110,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814111,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814112,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814114,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814115,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814116,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814119,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814120,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814131,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,814133,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +IN-PIN,814141,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814145,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814146,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814147,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +IN-PIN,814148,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814149,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814150,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814151,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814152,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814153,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814155,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +IN-PIN,814156,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +IN-PIN,814157,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,814158,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,814160,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 +IN-PIN,814166,PostalCode,Jamtara,LGD,333,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +IN-PIN,815301,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815302,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815311,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815312,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815313,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815314,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815315,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815316,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815317,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815318,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,815351,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,815353,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,815354,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,815355,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,815357,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 +IN-PIN,815359,PostalCode,Jamtara,LGD,333,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 +IN-PIN,816101,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +IN-PIN,816104,PostalCode,Pakur,LGD,337,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +IN-PIN,816106,PostalCode,Pakur,LGD,337,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +IN-PIN,816107,PostalCode,Pakur,LGD,337,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +IN-PIN,816108,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +IN-PIN,816109,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +IN-PIN,816110,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +IN-PIN,816117,PostalCode,Pakur,LGD,337,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 +IN-PIN,816118,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 +IN-PIN,816120,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +IN-PIN,816129,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 +IN-PIN,821015,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821101,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821102,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821103,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821104,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821105,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821106,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821107,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821108,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821109,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821110,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821111,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821112,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821113,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821114,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821115,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821301,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821304,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821305,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821306,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821307,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821308,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821309,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 +IN-PIN,821310,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821311,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,821312,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 +IN-PIN,822102,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,822110,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822111,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822112,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822113,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +IN-PIN,822114,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822115,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822116,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +IN-PIN,822117,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +IN-PIN,822118,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +IN-PIN,822119,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,822120,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822121,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822122,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +IN-PIN,822123,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,822124,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822125,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822126,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,822128,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822129,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822131,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +IN-PIN,822132,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 +IN-PIN,822133,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,822134,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 +IN-PIN,823001,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,823002,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,823003,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,823311,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824101,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824103,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824111,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824112,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824113,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824114,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824115,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824118,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824120,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824121,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824122,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824123,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824124,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824125,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824126,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824127,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 +IN-PIN,824129,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824143,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824201,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824202,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824203,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824205,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824206,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824207,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824208,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824209,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824211,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824217,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824219,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824220,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824221,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824231,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824232,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824233,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824236,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 +IN-PIN,824301,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824302,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824303,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,824304,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 +IN-PIN,825101,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,825102,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,825103,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,825106,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825108,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825109,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825132,PostalCode,Koderma,LGD,334,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +IN-PIN,825167,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,825301,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825302,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825303,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825311,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825312,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,825313,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825314,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,825315,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825316,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,825318,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825319,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825320,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825321,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,825322,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825323,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825324,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825325,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,825326,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,825329,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825330,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825336,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825401,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,825402,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825403,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,825404,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,825405,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825406,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825407,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825408,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,825409,PostalCode,Koderma,LGD,334,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +IN-PIN,825410,PostalCode,Koderma,LGD,334,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +IN-PIN,825411,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825412,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825413,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,825414,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,825415,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,825418,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 +IN-PIN,825421,PostalCode,Koderma,LGD,334,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 +IN-PIN,826001,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,826004,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,826006,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,827010,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,827013,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,827014,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,827302,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,828101,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828103,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828104,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828105,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828109,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828113,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828114,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828116,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828121,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828125,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828128,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828129,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828134,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,828142,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828201,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828202,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828203,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828204,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828205,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828206,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828207,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828303,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,828304,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828305,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828306,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828307,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828401,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828402,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 +IN-PIN,828403,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,828404,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829101,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,829102,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829103,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829104,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829105,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829106,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,829107,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829108,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829109,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,829110,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829111,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829112,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829113,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829114,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829116,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829117,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829118,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829119,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829121,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829122,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829123,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829124,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 +IN-PIN,829125,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829126,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829127,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829128,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829132,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829133,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829134,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829135,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829143,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829144,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829149,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,829150,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 +IN-PIN,829201,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 +IN-PIN,829202,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,829203,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,829204,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,829205,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +IN-PIN,829206,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,829207,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,829208,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +IN-PIN,829209,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +IN-PIN,829210,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +IN-PIN,829301,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 +IN-PIN,831001,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,831002,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,831004,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,831013,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,832101,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,832104,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,832105,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,832108,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,832112,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,832113,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,832301,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,832302,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,832303,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,832304,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 +IN-PIN,832401,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,832402,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,832403,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,832404,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,833101,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,833102,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833103,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833104,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,833105,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833201,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833203,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833204,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833214,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833215,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833216,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,833217,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 +IN-PIN,833219,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 +IN-PIN,834001,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 +IN-PIN,835201,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +IN-PIN,835206,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +IN-PIN,835207,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +IN-PIN,835210,PostalCode,Khunti,LGD,606,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 +IN-PIN,835211,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +IN-PIN,835212,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +IN-PIN,835213,PostalCode,Lohardaga,LGD,336,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +IN-PIN,835218,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 +IN-PIN,835220,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +IN-PIN,835223,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +IN-PIN,835226,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +IN-PIN,835228,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 +IN-PIN,835232,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +IN-PIN,835302,PostalCode,Lohardaga,LGD,336,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 +IN-PIN,835325,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +IN-PIN,835824,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 +IN-PIN,841101,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,841201,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841202,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841203,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841204,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841205,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841206,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841207,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841208,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841209,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841210,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841211,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841212,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841213,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841214,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841215,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841216,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841217,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841218,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841219,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841220,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841221,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841222,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841224,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841225,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841226,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841227,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841228,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841231,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841232,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841233,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841234,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841235,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841236,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841237,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841238,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841239,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841240,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841241,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841243,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841245,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841286,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841301,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841302,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 +IN-PIN,841305,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841311,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841312,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841313,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841316,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841401,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841402,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841403,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841404,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841405,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841406,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841408,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841409,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841410,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841411,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841412,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841414,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841415,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841417,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841418,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841419,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841421,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841422,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841423,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841424,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841425,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841426,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841427,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841428,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841434,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841435,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841436,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841437,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841438,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841440,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841441,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841442,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841443,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841446,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841447,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841460,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 +IN-PIN,841501,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841502,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841503,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841504,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,841508,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 +IN-PIN,841509,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 +IN-PIN,842001,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,842002,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,842003,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,842004,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,842006,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843101,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843102,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843103,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843104,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843105,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843106,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843107,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843108,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843109,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843111,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843112,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843113,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843114,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,843115,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843116,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843117,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843118,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843119,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843120,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843121,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843122,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843123,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843124,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843125,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843126,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843127,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843128,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843129,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843131,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +IN-PIN,843132,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843301,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +IN-PIN,843302,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843311,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843312,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843313,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843314,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843315,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843316,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +IN-PIN,843317,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843318,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843319,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843320,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843321,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843322,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843323,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843324,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843325,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +IN-PIN,843326,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843327,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +IN-PIN,843328,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,843329,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +IN-PIN,843330,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843331,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843332,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843333,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 +IN-PIN,843334,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +IN-PIN,843335,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 +IN-PIN,843360,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,844101,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844102,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844111,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844112,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,844113,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844114,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844118,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,844120,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,844121,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844122,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844124,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844127,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,844128,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844502,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844503,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844504,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844505,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844506,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844508,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,844509,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 +IN-PIN,845101,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845103,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845104,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845105,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845106,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845107,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845301,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845302,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845303,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845304,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845305,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845306,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845307,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845401,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845402,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845411,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845412,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845413,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845415,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845416,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845417,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845418,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845419,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845420,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845422,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845424,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845425,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845426,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845428,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845430,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845432,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845433,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845434,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845435,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845436,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845437,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845438,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845439,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845441,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845449,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845450,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845451,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845452,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845453,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845454,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845455,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,845456,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845457,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845458,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 +IN-PIN,845459,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 +IN-PIN,846001,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,846002,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,846003,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,846004,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,846005,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,846006,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,846007,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,846009,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,846010,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847101,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847102,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847103,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847104,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847105,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847106,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847107,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847108,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847109,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847115,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847121,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847122,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847123,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847201,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847202,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847203,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847204,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847211,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847212,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847213,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847214,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847215,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847222,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847223,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847224,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847225,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847226,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847227,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847228,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847229,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847230,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847231,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847232,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847233,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847234,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847235,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847236,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847238,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847239,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847240,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847301,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847302,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847303,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847304,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847305,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847306,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847307,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847308,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847337,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847401,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847402,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847403,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847404,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847405,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847407,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847408,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847409,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847410,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847411,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847421,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 +IN-PIN,847422,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847423,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847424,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847427,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847428,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847429,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,847451,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,847452,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,848101,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848102,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848103,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848104,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848113,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848114,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848115,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848117,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848121,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,848122,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848125,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 +IN-PIN,848127,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848129,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848130,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848131,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848132,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848133,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848134,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848160,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848201,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,848202,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,848203,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,848204,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,848205,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848206,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848207,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848208,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848209,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848210,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848211,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848213,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 +IN-PIN,848216,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848236,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848301,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848302,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848501,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848502,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848503,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848504,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848505,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,848506,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 +IN-PIN,851101,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851111,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851112,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851113,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851116,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851117,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851118,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851120,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851121,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851126,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851127,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851128,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851129,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851130,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851131,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851132,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851133,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851134,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851135,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851201,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,851202,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,851203,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,851204,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,851205,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,851206,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,851210,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851211,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851214,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,851216,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,851217,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,851218,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 +IN-PIN,852101,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852105,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852106,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852107,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852108,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852109,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852110,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852111,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852112,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852113,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852114,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852115,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852116,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852121,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852122,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852123,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852124,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852125,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852126,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852127,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852128,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852129,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852130,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852131,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852132,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852133,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852134,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852137,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852138,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852139,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852161,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 +IN-PIN,852202,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852212,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852213,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852214,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852215,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852216,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852217,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,852218,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,852219,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852220,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 +IN-PIN,852221,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 +IN-PIN,853201,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,853202,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,853203,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,853204,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 +IN-PIN,853205,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 +IN-PIN,854101,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854102,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854103,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854104,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854105,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854106,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854107,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854108,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854110,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854112,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854113,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854114,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854115,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854116,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854117,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854201,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854202,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854203,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854204,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854205,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854301,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854304,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854305,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854306,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854311,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854312,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854315,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854316,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854317,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,854318,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854325,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854326,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854327,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854329,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854330,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 +IN-PIN,854331,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854332,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854333,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854334,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854335,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854336,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 +IN-PIN,854338,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,854339,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,854340,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 +IN-PIN,855101,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,855102,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,855105,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,855106,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +IN-PIN,855107,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +IN-PIN,855108,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +IN-PIN,855113,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,855114,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 +IN-PIN,855115,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +IN-PIN,855116,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +IN-PIN,855117,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 diff --git a/tools/gazetteer/data/gazetteer/lgd-2026-09-02/manifest.json b/tools/gazetteer/data/gazetteer/lgd-2026-09-02/manifest.json new file mode 100644 index 00000000..49aaaab2 --- /dev/null +++ b/tools/gazetteer/data/gazetteer/lgd-2026-09-02/manifest.json @@ -0,0 +1,81 @@ +{ + "snapshot_date": "2026-09-02", + "lgd_snapshot": "02Sep2026", + "generated_by": "build_gazetteer.py", + "provenance": "https://lgdirectory.gov.in/ (via https://github.com/ramSeraph/opendata, GODL-India)", + "components": { + "states": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z", + "districts": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z", + "subdistricts": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z", + "pincode_villages": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z" + }, + "row_count": 25097, + "rows_by_level": { + "Country": 1, + "State": 36, + "District": 784, + "Block": 7092, + "PostalCode": 17184 + }, + "geometry_populated": true, + "notes": "Codes only. Geometry columns are filled by join_geometry.py, which adds a `geometry` block to this manifest recording the boundary source, its licence and the coverage achieved.", + "geometry": { + "source": "soi", + "source_label": "Survey of India", + "licence": "open", + "upstream": "https://onlinemaps.surveyofindia.gov.in/Digital_Product_Show.aspx", + "note": "SOI_Subdistricts carries no LGD code, so Block cannot be joined from this source.", + "mirror": "https://github.com/ramSeraph/indian_admin_boundaries/releases", + "layers": { + "State": { + "asset": "SOI_States", + "vintage": "2023-12-11" + }, + "District": { + "asset": "SOI_Districts", + "vintage": "2023-12-11" + } + }, + "join_key": "LGD code carried in the boundary layer; names are never used to join", + "point_definition": "Area-weighted centroid computed on lon/lat as a plane, holes subtracted. If that point falls outside the shape, an interior point near the largest part's centroid is substituted. See point_method per row.", + "parent_inheritance": true, + "coverage": { + "Country": { + "total": 1, + "matched": 1, + "inherited": 0, + "empty": 0 + }, + "State": { + "total": 36, + "matched": 36, + "inherited": 0, + "empty": 0 + }, + "District": { + "total": 784, + "matched": 728, + "inherited": 56, + "empty": 0 + }, + "Block": { + "total": 7092, + "matched": 0, + "inherited": 7092, + "empty": 0 + }, + "PostalCode": { + "total": 17184, + "matched": 0, + "inherited": 17184, + "empty": 0 + } + }, + "name_drift_count": 117, + "parent_containment_check": { + "checked": 764, + "violations": 0, + "outliers": [] + } + } +} From f313e0d4fefe3a169c21000a601911ac41b08cb7 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 14:47:42 +0530 Subject: [PATCH 04/12] docs(tools): reduce gazetteer README to refresh command and source appendix --- tools/gazetteer/README.md | 135 ++++---------------------------------- 1 file changed, 14 insertions(+), 121 deletions(-) diff --git a/tools/gazetteer/README.md b/tools/gazetteer/README.md index 49df442e..3a0212e2 100644 --- a/tools/gazetteer/README.md +++ b/tools/gazetteer/README.md @@ -1,138 +1,31 @@ # Administrative area gazetteer -Builds a CSV that resolves an OpenAgriNet `AdministrativeAreaReference` -(`codeScheme`, `areaCode`, `areaLevel`) to a name, parent and coordinate, so -`coverageAreas` can be resolved by lookup instead of a live API call. +Builds `gazetteer.csv`, which resolves an OpenAgriNet `AdministrativeAreaReference` +(`codeScheme`, `areaCode`, `areaLevel`) to a name, parent and coordinate. -Standalone build-time utility. Not a plugin, not part of the adapter runtime, -adds no Go package. Stdlib Python only. - -## Steps to run +## Refresh ```bash cd tools/gazetteer python3 build_gazetteer.py && python3 join_geometry.py ``` -That is the full refresh. Stage 1 pulls codes and names, stage 2 fills -coordinates. First run downloads ~150 MB and caches it; later runs reuse the -cache. - -Output — `data/gazetteer/latest/`: - -| File | Contents | -|---|---| -| `gazetteer.csv` | 25,097 rows: Country, State, District, Block, PostalCode | -| `manifest.json` | source URLs, licence, coverage achieved, data-quality report | - -Each run writes a new dated directory and moves the `latest` symlink. Earlier -snapshots are never overwritten, so a Resource published against an older one -still resolves. `data/` is gitignored; delete it any time and re-run. +Writes `data/gazetteer/latest/gazetteer.csv` — 25,097 rows covering Country, +State, District, Block and PostalCode. -### Options - -Defaults are correct for a normal refresh. Only these matter: - -| Flag | Effect | -|---|---| -| `join_geometry.py --source lgd` | use BharatMaps geometry: adds Block-level points, but **not openly licensed** | -| `build_gazetteer.py --with-villages` | add ~670k Village rows (no geometry exists for them) | -| `join_geometry.py --with-geometry` | also write `boundaries.geojsonl` (335 MB polygons) | +Add `--source lgd` to `join_geometry.py` for Block-level coordinates; that +source is not openly licensed. --- # Appendix — sources and columns -## Stage 1 — `build_gazetteer.py` - -**Source:** LGD (Local Government Directory), Ministry of Panchayati Raj — -, via the `ramSeraph/opendata` daily mirror. -Licence GODL-India. *Purpose: the authoritative list of area codes and names.* - -| Column | Purpose | -|---|---| -| `code_scheme` | `LGD`, `ISO-3166-1` or `IN-PIN` — matches `.codeScheme` | -| `area_code` | matches `.areaCode` | -| `area_level` | `Country` / `State` / `District` / `Block` / `Village` / `PostalCode` | -| `area_name` | matches `.areaName`, as LGD spells it | -| `parent_scheme`, `parent_code` | parent area, used as the coordinate fallback | -| `census_2011_code` | crosswalk for joining census-coded files | -| `snapshot_date`, `source_url` | which LGD snapshot and asset the row came from | - -Pulled per level: `states` → State, `districts` → District, `subdistricts` → -Block, `pincode_villages` → PostalCode (collapsed to one row per pincode), plus -one synthetic `ISO-3166-1 / IN` Country row. - -## Stage 2 — `join_geometry.py` - -Joins boundary polygons onto the LGD codes from stage 1. **Keys on LGD codes -only, never names** — 117 areas join on a stable code while the boundary layer -spells the name differently (LGD 466 is `Ahilyanagar`, every boundary layer says -`Ahmednagar`). *Purpose: give each area a coordinate and a bounding box.* - -Fills these columns, whichever source is used: - -| Column | Purpose | -|---|---| -| `latitude`, `longitude` | representative point, WGS84 | -| `bbox_west`, `bbox_south`, `bbox_east`, `bbox_north` | extent of the area | -| `point_method` | how the point was derived — see below | -| `geometry_source` | which boundary layer supplied it, i.e. **which licence applies** | -| `boundary_vintage` | publication date of that layer | - -`point_method` values: `centroid` (area-weighted, inside the shape), -`interior_grid` (centroid fell outside; interior point substituted), -`aggregate:State` (country row), `inherited:` (borrowed from an ancestor — -a coarse locator only, correct to that level's granularity). - -### Sources - -`--source soi` — **default, openly licensed.** Survey of India, -. Vintage 2023-12-11. - -| Level | Layer | Code field read | -|---|---|---| -| State | `SOI_States` | `State_LGD` | -| District | `SOI_Districts` | `DISTRICT_L` | - -`SOI_Subdistricts` carries no LGD field, so **Block cannot be joined from SOI** -and inherits its district's point. - -`--source lgd` — **not openly licensed; confirm terms before publishing derived -coordinates.** BharatMaps / NIC, `mapservice.gov.in`. Vintage 2023-11/12. - -| Level | Layer | Code field read | +| Source | Licence | Columns it fills | |---|---|---| -| State | `LGD_States` | `State_LGD` | -| District | `LGD_Districts` | `dist_lgd` | -| Block | `LGD_Subdistricts` | `subdt_lgd` | - -Both are mirrored from `ramSeraph/indian_admin_boundaries` because neither -`.gov.in` origin is scriptable — `mapservice.gov.in` requires a token and -`data.gov.in` serves a JavaScript app. The `.gov.in` origin is recorded in the -manifest. - -### Coverage - -| Level | Rows | `soi` joined | `lgd` joined | -|---|---|---|---| -| State | 36 | 36 | 36 | -| District | 784 | 728 | 771 | -| Block | 7,092 | 0 | 6,117 | -| PostalCode | 17,184 | 0 | 0 | - -No row is ever left empty — anything unjoined inherits its parent's point. -PostalCode never joins because no source publishes pincode boundaries. -Unjoined districts are recent splits that postdate the 2023 boundary layers. - -### Known outliers - -Under `--source lgd`, 7 of 6,866 points fall outside their parent's box. Two are -genuine upstream errors (district 766 Mauganj's polygon sits in Arunachal -Pradesh; block 2109 Katlichara), three are knock-ons of 766, and two are correct -— Mahe and Yanam really are exclaves of Puducherry. They are reported in the -manifest, never auto-corrected: repairing the errors would corrupt the exclaves. -`--source soi` is clean at 764/764. +| **LGD**, Ministry of Panchayati Raj — | GODL-India | `code_scheme`, `area_code`, `area_level`, `area_name`, `parent_scheme`, `parent_code`, `census_2011_code`, `snapshot_date`, `source_url` | +| **Survey of India** *(default)* — | open | `latitude`, `longitude`, `bbox_west`, `bbox_south`, `bbox_east`, `bbox_north`, `point_method`, `geometry_source`, `boundary_vintage` — State and District only | +| **BharatMaps / NIC** *(`--source lgd`)* — `mapservice.gov.in` | **not open** | the same geometry columns, and additionally resolves Block | -Points are lookup hints computed on a planar lon/lat approximation. Not for -measurement or survey use. +Geometry joins on the LGD code carried inside each boundary layer, never on +names. Rows with no boundary match inherit their parent's coordinate, flagged in +`point_method`. From b925c981010e8ae55c74a2e8d4e0e5449fed17ee Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 14:48:40 +0530 Subject: [PATCH 05/12] docs(tools): strip gazetteer README to command and source table --- tools/gazetteer/README.md | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/tools/gazetteer/README.md b/tools/gazetteer/README.md index 3a0212e2..32ee6afb 100644 --- a/tools/gazetteer/README.md +++ b/tools/gazetteer/README.md @@ -13,19 +13,17 @@ python3 build_gazetteer.py && python3 join_geometry.py Writes `data/gazetteer/latest/gazetteer.csv` — 25,097 rows covering Country, State, District, Block and PostalCode. -Add `--source lgd` to `join_geometry.py` for Block-level coordinates; that -source is not openly licensed. +Add `--source lgd` to `join_geometry.py` for Block-level coordinates. --- # Appendix — sources and columns -| Source | Licence | Columns it fills | -|---|---|---| -| **LGD**, Ministry of Panchayati Raj — | GODL-India | `code_scheme`, `area_code`, `area_level`, `area_name`, `parent_scheme`, `parent_code`, `census_2011_code`, `snapshot_date`, `source_url` | -| **Survey of India** *(default)* — | open | `latitude`, `longitude`, `bbox_west`, `bbox_south`, `bbox_east`, `bbox_north`, `point_method`, `geometry_source`, `boundary_vintage` — State and District only | -| **BharatMaps / NIC** *(`--source lgd`)* — `mapservice.gov.in` | **not open** | the same geometry columns, and additionally resolves Block | +| Source | Columns it fills | +|---|---| +| **LGD**, Ministry of Panchayati Raj — | `code_scheme`, `area_code`, `area_level`, `area_name`, `parent_scheme`, `parent_code`, `census_2011_code`, `snapshot_date`, `source_url` | +| **Survey of India** *(default)* — | `latitude`, `longitude`, `bbox_west`, `bbox_south`, `bbox_east`, `bbox_north`, `point_method`, `geometry_source`, `boundary_vintage` — State and District only | +| **BharatMaps / NIC** *(`--source lgd`)* — `mapservice.gov.in` | the same geometry columns, and additionally resolves Block | -Geometry joins on the LGD code carried inside each boundary layer, never on -names. Rows with no boundary match inherit their parent's coordinate, flagged in -`point_method`. +Provenance, licence and coverage for each run are recorded in +`manifest.json` alongside the CSV. From 181fb46a9f2fd958ef1b9f29aae217f0561104dc Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 14:51:46 +0530 Subject: [PATCH 06/12] refactor(tools): rename gazetteer to area-lookups "Gazetteer" is the standard geospatial term but needs looking up, so the tool is renamed to say what it does. The word is removed everywhere rather than only in the directory name, so nothing is left half-renamed: tools/gazetteer/ -> tools/area-lookups/ build_gazetteer.py -> build_areas.py data/gazetteer/ -> data/areas/ gazetteer.csv -> areas.csv --gazetteer -> --areas No behaviour change. Verified the pipeline still runs: 25,097 rows, State 36/36, District 728/784, containment 764/764 clean. --- tools/{gazetteer => area-lookups}/.gitignore | 0 tools/{gazetteer => area-lookups}/README.md | 0 .../{gazetteer/build_gazetteer.py => area-lookups/build_areas.py} | 0 .../{gazetteer/data/gazetteer => area-lookups/data/areas}/latest | 0 .../data/areas/lgd-2026-09-02/areas.csv} | 0 .../data/areas}/lgd-2026-09-02/manifest.json | 0 tools/{gazetteer => area-lookups}/join_geometry.py | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename tools/{gazetteer => area-lookups}/.gitignore (100%) rename tools/{gazetteer => area-lookups}/README.md (100%) rename tools/{gazetteer/build_gazetteer.py => area-lookups/build_areas.py} (100%) rename tools/{gazetteer/data/gazetteer => area-lookups/data/areas}/latest (100%) rename tools/{gazetteer/data/gazetteer/lgd-2026-09-02/gazetteer.csv => area-lookups/data/areas/lgd-2026-09-02/areas.csv} (100%) rename tools/{gazetteer/data/gazetteer => area-lookups/data/areas}/lgd-2026-09-02/manifest.json (100%) rename tools/{gazetteer => area-lookups}/join_geometry.py (100%) diff --git a/tools/gazetteer/.gitignore b/tools/area-lookups/.gitignore similarity index 100% rename from tools/gazetteer/.gitignore rename to tools/area-lookups/.gitignore diff --git a/tools/gazetteer/README.md b/tools/area-lookups/README.md similarity index 100% rename from tools/gazetteer/README.md rename to tools/area-lookups/README.md diff --git a/tools/gazetteer/build_gazetteer.py b/tools/area-lookups/build_areas.py similarity index 100% rename from tools/gazetteer/build_gazetteer.py rename to tools/area-lookups/build_areas.py diff --git a/tools/gazetteer/data/gazetteer/latest b/tools/area-lookups/data/areas/latest similarity index 100% rename from tools/gazetteer/data/gazetteer/latest rename to tools/area-lookups/data/areas/latest diff --git a/tools/gazetteer/data/gazetteer/lgd-2026-09-02/gazetteer.csv b/tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv similarity index 100% rename from tools/gazetteer/data/gazetteer/lgd-2026-09-02/gazetteer.csv rename to tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv diff --git a/tools/gazetteer/data/gazetteer/lgd-2026-09-02/manifest.json b/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json similarity index 100% rename from tools/gazetteer/data/gazetteer/lgd-2026-09-02/manifest.json rename to tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json diff --git a/tools/gazetteer/join_geometry.py b/tools/area-lookups/join_geometry.py similarity index 100% rename from tools/gazetteer/join_geometry.py rename to tools/area-lookups/join_geometry.py From 2969492b5a890e35fdd2a6e771c57bf70afedac9 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 14:52:49 +0530 Subject: [PATCH 07/12] chore(tools): regenerate area lookup snapshot after rename Full refresh re-run with the renamed scripts, which also verifies stage 1's download path end to end. manifest.json now records build_areas.py as its generator. --- tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json b/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json index 49aaaab2..7bdf193c 100644 --- a/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json +++ b/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json @@ -1,7 +1,7 @@ { "snapshot_date": "2026-09-02", "lgd_snapshot": "02Sep2026", - "generated_by": "build_gazetteer.py", + "generated_by": "build_areas.py", "provenance": "https://lgdirectory.gov.in/ (via https://github.com/ramSeraph/opendata, GODL-India)", "components": { "states": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z", From a80073c3283fff9a9d35f81860514a5c2e3f0934 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 14:53:37 +0530 Subject: [PATCH 08/12] fix(tools): commit the rename's content changes The rename commit staged the path moves but not the in-file edits, leaving join_geometry.py defaulting to the old data/gazetteer path and still exposing --gazetteer. This carries the actual content: renamed flags, defaults, docstrings and User-Agent. --- tools/area-lookups/.gitignore | 2 +- tools/area-lookups/README.md | 12 ++++----- tools/area-lookups/build_areas.py | 24 ++++++++--------- tools/area-lookups/join_geometry.py | 40 ++++++++++++++--------------- 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/tools/area-lookups/.gitignore b/tools/area-lookups/.gitignore index 25418852..cc09e0eb 100644 --- a/tools/area-lookups/.gitignore +++ b/tools/area-lookups/.gitignore @@ -1,6 +1,6 @@ # Boundary-layer download cache: ~500 MB and fully re-downloadable by re-running # join_geometry.py. Never commit this. -data/gazetteer/.cache/ +data/areas/.cache/ # Optional polygon export, written only with --with-geometry: 335 MB. boundaries.geojsonl diff --git a/tools/area-lookups/README.md b/tools/area-lookups/README.md index 32ee6afb..74f0cd1a 100644 --- a/tools/area-lookups/README.md +++ b/tools/area-lookups/README.md @@ -1,17 +1,17 @@ -# Administrative area gazetteer +# Administrative area lookup -Builds `gazetteer.csv`, which resolves an OpenAgriNet `AdministrativeAreaReference` +Builds `areas.csv`, which resolves an OpenAgriNet `AdministrativeAreaReference` (`codeScheme`, `areaCode`, `areaLevel`) to a name, parent and coordinate. ## Refresh ```bash -cd tools/gazetteer -python3 build_gazetteer.py && python3 join_geometry.py +cd tools/area-lookups +python3 build_areas.py && python3 join_geometry.py ``` -Writes `data/gazetteer/latest/gazetteer.csv` — 25,097 rows covering Country, -State, District, Block and PostalCode. +Writes `data/areas/latest/areas.csv` — 25,097 rows covering Country, State, +District, Block and PostalCode. Add `--source lgd` to `join_geometry.py` for Block-level coordinates. diff --git a/tools/area-lookups/build_areas.py b/tools/area-lookups/build_areas.py index 87de28de..4e9d294d 100644 --- a/tools/area-lookups/build_areas.py +++ b/tools/area-lookups/build_areas.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -"""Build a dated LGD gazetteer CSV for OpenAgriNet coverageAreas resolution. +"""Build a dated LGD area lookup table CSV for OpenAgriNet coverageAreas resolution. Pulls LGD (Local Government Directory) snapshots and flattens them into one CSV shaped like AdministrativeAreaReference, so a coded coverageAreas entry can be @@ -16,10 +16,10 @@ daily) independent of the boundary layers (refreshed every year or two). Usage: - python3 build_gazetteer.py # latest available snapshot - python3 build_gazetteer.py --date 02Sep2026 # a specific snapshot - python3 build_gazetteer.py --out data/gazetteer - python3 build_gazetteer.py --with-villages # adds ~670k village rows + python3 build_areas.py # latest available snapshot + python3 build_areas.py --date 02Sep2026 # a specific snapshot + python3 build_areas.py --out data/areas + python3 build_areas.py --with-villages # adds ~670k village rows Stdlib only. Requires bsdtar (default `tar` on macOS) or 7z for .7z extraction. """ @@ -78,7 +78,7 @@ def log(msg): def fetch_json(url): - req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) + req = urllib.request.Request(url, headers={"User-Agent": "oan-area-lookup"}) with urllib.request.urlopen(req, timeout=60) as r: return json.load(r) @@ -88,7 +88,7 @@ def latest_snapshot_date(): Components are not always published in lockstep, so take the newest date that every core component actually has. A half-published day would - otherwise produce a gazetteer with a stale districts file silently mixed in. + otherwise produce a area lookup table with a stale districts file silently mixed in. """ try: assets = [a["name"] for a in fetch_json(API)["assets"]] @@ -140,7 +140,7 @@ def fetch_to_file(url, dest, what, attempts=3): not retried: a 404 means the asset genuinely is not published, and asking again will not change that. """ - req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) + req = urllib.request.Request(url, headers={"User-Agent": "oan-area-lookup"}) for attempt in range(1, attempts + 1): try: with urllib.request.urlopen(req, timeout=300) as r, open(dest, "wb") as f: @@ -301,7 +301,7 @@ def build(date, outdir, with_villages): log(f"{'pincodes (unique)':<18} {len(pins):>7,} rows") # A component that parsed to zero rows means LGD renamed a column, not that - # the level is genuinely empty. Fail rather than publish a gazetteer with a + # the level is genuinely empty. Fail rather than publish a area lookup table with a # silently missing level. by_level = {} for r in rows: @@ -319,7 +319,7 @@ def build(date, outdir, with_villages): stamp = dt.datetime.strptime(date, "%d%b%Y").date().isoformat() target = Path(outdir) / f"lgd-{stamp}" target.mkdir(parents=True, exist_ok=True) - out = target / "gazetteer.csv" + out = target / "areas.csv" with open(out, "w", encoding="utf-8", newline="") as f: w = csv.DictWriter(f, fieldnames=OUT_COLUMNS) @@ -329,7 +329,7 @@ def build(date, outdir, with_villages): manifest = { "snapshot_date": stamp, "lgd_snapshot": date, - "generated_by": "build_gazetteer.py", + "generated_by": "build_areas.py", "provenance": PROVENANCE, "components": sources, "row_count": len(rows), @@ -358,7 +358,7 @@ def main(): p = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter) p.add_argument("--date", help="LGD snapshot, e.g. 02Sep2026 (default: latest)") - p.add_argument("--out", default="data/gazetteer", help="output directory") + p.add_argument("--out", default="data/areas", help="output directory") p.add_argument("--with-villages", action="store_true", help="include ~670k village rows") a = p.parse_args() diff --git a/tools/area-lookups/join_geometry.py b/tools/area-lookups/join_geometry.py index 20d27ad4..3be5a3ec 100644 --- a/tools/area-lookups/join_geometry.py +++ b/tools/area-lookups/join_geometry.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -"""Stage 2: attach coordinates to a gazetteer built by build_gazetteer.py. +"""Stage 2: attach coordinates to a area lookup table built by build_areas.py. Stage 1 produces codes without geometry, because LGD's directory dumps carry no boundaries. This stage joins boundary layers onto those codes and fills in @@ -28,7 +28,7 @@ Usage python3 join_geometry.py python3 join_geometry.py --source lgd - python3 join_geometry.py --gazetteer data/gazetteer/latest + python3 join_geometry.py --areas data/areas/latest python3 join_geometry.py --source lgd --with-geometry Stdlib only. Requires bsdtar (default `tar` on macOS) or 7z to extract .7z. @@ -82,7 +82,7 @@ } # Written by stage 1 as empty strings and filled here. Kept in sync with -# build_gazetteer.py OUT_COLUMNS. +# build_areas.py OUT_COLUMNS. GEO_COLUMNS = ["latitude", "longitude", "point_method", "bbox_west", "bbox_south", "bbox_east", "bbox_north", "geometry_source", "boundary_vintage"] @@ -375,7 +375,7 @@ def ensure_layer(tag, stem, cache): archive = cache / f"{stem}.geojsonl.7z" if not archive.exists(): url = f"{BASE}/{tag}/{stem}.geojsonl.7z" - req = urllib.request.Request(url, headers={"User-Agent": "oan-gazetteer"}) + req = urllib.request.Request(url, headers={"User-Agent": "oan-area-lookup"}) # Retry transient failures. These layers are up to 263 MB, so a dropped # connection part-way through is likely enough to be worth handling # rather than aborting a refresh that has already done real work. @@ -492,16 +492,16 @@ def run(source, gazdir, cache, with_geometry, inherit): conf = SOURCES[source] gazdir = Path(gazdir).resolve() cache = Path(cache) - gaz_csv = gazdir / "gazetteer.csv" - if not gaz_csv.exists(): - sys.exit(f"no gazetteer at {gaz_csv} - run build_gazetteer.py first") + areas_csv = gazdir / "areas.csv" + if not areas_csv.exists(): + sys.exit(f"no area lookup table at {areas_csv} - run build_areas.py first") - with open(gaz_csv, encoding="utf-8", newline="") as f: + with open(areas_csv, encoding="utf-8", newline="") as f: reader = csv.DictReader(f) rows = list(reader) columns = list(reader.fieldnames or []) if not rows: - sys.exit(f"{gaz_csv} has no rows") + sys.exit(f"{areas_csv} has no rows") for c in GEO_COLUMNS: if c not in columns: columns.append(c) @@ -515,7 +515,7 @@ def run(source, gazdir, cache, with_geometry, inherit): r[c] = "" log(f"source {conf['label']} ({conf['licence']})") - log(f"{len(rows):,} gazetteer rows from {gaz_csv}") + log(f"{len(rows):,} rows from {areas_csv}") points, vintages, layer_paths = {}, {}, {} for level, (tag, stem, code_field, name_field) in conf["layers"].items(): @@ -523,7 +523,7 @@ def run(source, gazdir, cache, with_geometry, inherit): pts, skipped = load_points(path, code_field, name_field) # Zero coded areas means the upstream renamed its code column, not that # the level is genuinely empty. Fail rather than silently publish a - # gazetteer where a whole level fell back to its parent. + # area lookup table where a whole level fell back to its parent. if not pts: sys.exit(f"{stem}: no areas carried field {code_field!r} - the " f"upstream schema likely changed; check SOURCES[{source!r}]") @@ -603,7 +603,7 @@ def run(source, gazdir, cache, with_geometry, inherit): if not r["latitude"]: stats[r["area_level"]]["empty"] += 1 - with open(gaz_csv, "w", encoding="utf-8", newline="") as f: + with open(areas_csv, "w", encoding="utf-8", newline="") as f: w = csv.DictWriter(f, fieldnames=columns) w.writeheader() w.writerows(rows) @@ -613,7 +613,7 @@ def run(source, gazdir, cache, with_geometry, inherit): write_geometry(conf, gazdir, cache, rows) update_manifest(source, conf, gazdir, stats, vintages, dates, drift, inherit, containment) - report(gaz_csv, stats, drift, conf, containment) + report(areas_csv, stats, drift, conf, containment) return stats @@ -747,8 +747,8 @@ def update_manifest(source, conf, gazdir, stats, vintages, dates, drift, path.write_text(json.dumps(m, indent=2) + "\n") -def report(gaz_csv, stats, drift, conf, containment): - print(f"\n{gaz_csv}") +def report(areas_csv, stats, drift, conf, containment): + print(f"\n{areas_csv}") print(f"\n{'level':<12}{'rows':>8}{'joined':>9}{'inherited':>11}" f"{'empty':>8}{'joined %':>10}") for level in LEVEL_ORDER + [k for k in stats if k not in LEVEL_ORDER]: @@ -777,7 +777,7 @@ def report(gaz_csv, stats, drift, conf, containment): print(f"\n{len(drift)} areas joined on a stable code but carry a " f"different name upstream:") for level, code, ours, theirs in drift[:8]: - print(f" {level:<9} LGD {code:<6} gazetteer={ours!r} boundary={theirs!r}") + print(f" {level:<9} LGD {code:<6} ours={ours!r} boundary={theirs!r}") if len(drift) > 8: print(f" ... and {len(drift) - 8} more") print(" These are why the join uses codes, not names.") @@ -795,16 +795,16 @@ def main(): formatter_class=argparse.RawDescriptionHelpFormatter) p.add_argument("--source", choices=sorted(SOURCES), default="soi", help="boundary source (default: soi, the openly licensed one)") - p.add_argument("--gazetteer", default="data/gazetteer/latest", - help="directory holding gazetteer.csv from stage 1") - p.add_argument("--cache", default="data/gazetteer/.cache", + p.add_argument("--areas", default="data/areas/latest", + help="directory holding areas.csv from stage 1") + p.add_argument("--cache", default="data/areas/.cache", help="where boundary downloads are kept between runs") p.add_argument("--with-geometry", action="store_true", help="also write boundaries.geojsonl for point-in-polygon use") p.add_argument("--no-inherit", action="store_true", help="leave unjoinable levels empty instead of using a parent point") a = p.parse_args() - run(a.source, a.gazetteer, a.cache, a.with_geometry, not a.no_inherit) + run(a.source, a.areas, a.cache, a.with_geometry, not a.no_inherit) if __name__ == "__main__": From 47be13a1d6f4d61382745fe5fcdd303e0a5b0840 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 15:23:53 +0530 Subject: [PATCH 09/12] feat #10: ship boundary polygons and validate the area lookup A coded coverageArea is an area, not a point, so resolving one to a centroid cannot answer whether a location falls inside it. Add areas.geojsonl: one simplified outline per area, keyed identically to areas.csv, with has_polygon in the CSV so a consumer can tell an outline exists without opening it. Simplification is tolerance-scaled per part, holding the district layer to 11 MB against 460 MB at full fidelity for a 0.23% worst-case area error. Add validate.py as a third stage. It reimplements point-in-polygon rather than importing it, so a bug in the join cannot pass by agreeing with itself, and it exits non-zero to gate a refresh. It found four defects in the CSV, all fixed here: - parent_code was ambiguous. An LGD code is unique within a level, not across levels: 765 codes name a State, a District and a Block at once, so walking a parent chain resolved the wrong area. Add parent_level. - Hairline slivers inflated bounding boxes. A 0.1 m2 splinter stretched Hailakandi 41 km into a neighbour and a 1 m2 spike pulled Kancheepuram's western edge out 16 km, both of which would make a bbox prefilter match points well outside the area. Parts are now floored on area, not extent. - Genuine small parts were dropped by simplification, silently losing extent. The tolerance now backs off rather than discarding a part. - Sundaragada's point sat outside its own simplified outline, and 62 child Blocks had already inherited the pre-correction coordinate. Points are re-derived from the shipped outline before inheritance runs. Both sources and every flag combination now pass validation. --- tools/area-lookups/.gitignore | 4 + tools/area-lookups/README.md | 43 +- tools/area-lookups/build_areas.py | 13 + .../data/areas/lgd-2026-09-02/areas.csv | 50196 ++++++++-------- .../data/areas/lgd-2026-09-02/areas.geojsonl | 764 + .../data/areas/lgd-2026-09-02/manifest.json | 20 + tools/area-lookups/join_geometry.py | 414 +- tools/area-lookups/validate.py | 363 + 8 files changed, 26687 insertions(+), 25130 deletions(-) create mode 100644 tools/area-lookups/data/areas/lgd-2026-09-02/areas.geojsonl create mode 100644 tools/area-lookups/validate.py diff --git a/tools/area-lookups/.gitignore b/tools/area-lookups/.gitignore index cc09e0eb..222fd517 100644 --- a/tools/area-lookups/.gitignore +++ b/tools/area-lookups/.gitignore @@ -4,3 +4,7 @@ data/areas/.cache/ # Optional polygon export, written only with --with-geometry: 335 MB. boundaries.geojsonl + +# Bytecode from importing the modules directly, e.g. when spot-checking a +# geometry helper in a REPL. +__pycache__/ diff --git a/tools/area-lookups/README.md b/tools/area-lookups/README.md index 74f0cd1a..315e8b13 100644 --- a/tools/area-lookups/README.md +++ b/tools/area-lookups/README.md @@ -1,19 +1,22 @@ # Administrative area lookup -Builds `areas.csv`, which resolves an OpenAgriNet `AdministrativeAreaReference` -(`codeScheme`, `areaCode`, `areaLevel`) to a name, parent and coordinate. +Builds `areas.csv` and `areas.geojsonl`, which resolve an OpenAgriNet +`AdministrativeAreaReference` (`codeScheme`, `areaCode`, `areaLevel`) to a name, +parent, coordinate and boundary outline. ## Refresh ```bash cd tools/area-lookups -python3 build_areas.py && python3 join_geometry.py +python3 build_areas.py && python3 join_geometry.py && python3 validate.py ``` -Writes `data/areas/latest/areas.csv` — 25,097 rows covering Country, State, -District, Block and PostalCode. +Writes `data/areas/latest/` — 25,097 rows covering Country, State, District, +Block and PostalCode, plus 764 polygons. `validate.py` exits non-zero if the +output is not usable, so the refresh is gated on it. -Add `--source lgd` to `join_geometry.py` for Block-level coordinates. +Add `--source lgd` to `join_geometry.py` for Block coordinates and 6,924 +polygons. --- @@ -21,9 +24,29 @@ Add `--source lgd` to `join_geometry.py` for Block-level coordinates. | Source | Columns it fills | |---|---| -| **LGD**, Ministry of Panchayati Raj — | `code_scheme`, `area_code`, `area_level`, `area_name`, `parent_scheme`, `parent_code`, `census_2011_code`, `snapshot_date`, `source_url` | -| **Survey of India** *(default)* — | `latitude`, `longitude`, `bbox_west`, `bbox_south`, `bbox_east`, `bbox_north`, `point_method`, `geometry_source`, `boundary_vintage` — State and District only | +| **LGD**, Ministry of Panchayati Raj — | `code_scheme`, `area_code`, `area_level`, `area_name`, `parent_scheme`, `parent_code`, `parent_level`, `census_2011_code`, `snapshot_date`, `source_url` | +| **Survey of India** *(default)* — | `latitude`, `longitude`, `bbox_west`, `bbox_south`, `bbox_east`, `bbox_north`, `point_method`, `geometry_source`, `boundary_vintage`, `has_polygon` — State and District only | | **BharatMaps / NIC** *(`--source lgd`)* — `mapservice.gov.in` | the same geometry columns, and additionally resolves Block | -Provenance, licence and coverage for each run are recorded in -`manifest.json` alongside the CSV. +Two files, joined on the same `(code_scheme, area_code, area_level)` key: + +| File | Holds | +|---|---| +| `areas.csv` | one row per area: identity, parent, a representative point, a bounding box | +| `areas.geojsonl` | one simplified `Polygon`/`MultiPolygon` per area, for containment tests | + +`parent_code` is only meaningful together with `parent_level`: an LGD code is +unique within a level, not across levels, and 765 codes in this file name a +State, a District and a Block at once. + +`has_polygon` says whether an outline exists, so a consumer can tell from the +CSV alone without opening the second file. It is `false` for PostalCode at every +setting, because no boundary source publishes pincode geometry. + +`point_method` says where a coordinate came from. `centroid` and +`interior_grid` are the area's own geometry; `inherited:` is an +ancestor's point reused. Most rows are inherited, so check this before treating +a coordinate as specific to the area. + +Provenance, licence, coverage and every validation anomaly for a run are +recorded in `manifest.json` alongside the data. diff --git a/tools/area-lookups/build_areas.py b/tools/area-lookups/build_areas.py index 4e9d294d..ab2deabd 100644 --- a/tools/area-lookups/build_areas.py +++ b/tools/area-lookups/build_areas.py @@ -57,6 +57,7 @@ "area_name", # matches .areaName "parent_scheme", # fallback chain for unresolvable children "parent_code", + "parent_level", # required: LGD codes repeat across levels "census_2011_code", # crosswalk to census-coded boundary files "snapshot_date", "source_url", @@ -70,6 +71,7 @@ "bbox_north", "geometry_source", # which boundary layer supplied the point "boundary_vintage", + "has_polygon", # is a real outline present in areas.geojsonl? ] @@ -198,6 +200,15 @@ def pick(row, *candidates): return "" +# Child level -> parent level. Recorded per row because an LGD code is only +# unique within its level: code 35 is simultaneously the State Andaman And +# Nicobar Islands, the District Kapurthala and the Block Baramulla. Without +# this column a consumer walking parent_code cannot tell which one is meant, +# and 765 of the codes in this file are ambiguous that way. +PARENT_LEVEL = {"State": "Country", "District": "State", "Block": "District", + "PostalCode": "District", "Village": "Block"} + + def row_out(scheme, code, level, name, parent_scheme="", parent_code="", census="", date="", url=""): return { @@ -207,6 +218,7 @@ def row_out(scheme, code, level, name, parent_scheme="", parent_code="", "area_name": name, "parent_scheme": parent_scheme, "parent_code": parent_code, + "parent_level": PARENT_LEVEL.get(level, ""), "census_2011_code": census, "snapshot_date": date, "source_url": url, @@ -219,6 +231,7 @@ def row_out(scheme, code, level, name, parent_scheme="", parent_code="", "bbox_north": "", "geometry_source": "", "boundary_vintage": "", + "has_polygon": "", } diff --git a/tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv b/tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv index d93fd9b0..f7071312 100644 --- a/tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv +++ b/tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv @@ -1,25098 +1,25098 @@ -code_scheme,area_code,area_level,area_name,parent_scheme,parent_code,census_2011_code,snapshot_date,source_url,latitude,longitude,point_method,bbox_west,bbox_south,bbox_east,bbox_north,geometry_source,boundary_vintage -ISO-3166-1,IN,Country,India,,,,02Sep2026,static,23.382088,79.485000,aggregate:State,68.177512,6.752783,97.412897,37.088342,SOI_States,2023-12-11 -LGD,35,State,Andaman And Nicobar Islands,ISO-3166-1,IN,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,12.603196,92.829514,centroid,92.195893,6.752783,94.267398,13.677059,SOI_States,2023-12-11 -LGD,28,State,Andhra Pradesh,ISO-3166-1,IN,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,15.753511,79.962484,centroid,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,12,State,Arunachal Pradesh,ISO-3166-1,IN,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,28.035268,94.673960,centroid,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,18,State,Assam,ISO-3166-1,IN,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.355278,92.827110,centroid,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -LGD,10,State,Bihar,ISO-3166-1,IN,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,25.678945,85.609012,centroid,83.320216,24.286006,88.293796,27.521777,SOI_States,2023-12-11 -LGD,4,State,Chandigarh,ISO-3166-1,IN,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_States,2023-12-11 -LGD,22,State,Chhattisgarh,ISO-3166-1,IN,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,21.265915,82.041059,centroid,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,7,State,Delhi,ISO-3166-1,IN,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,28.643370,77.115437,centroid,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,30,State,Goa,ISO-3166-1,IN,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,15.365280,74.049474,centroid,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -LGD,24,State,Gujarat,ISO-3166-1,IN,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,22.692625,71.595166,centroid,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,6,State,Haryana,ISO-3166-1,IN,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,29.197675,76.340342,centroid,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -LGD,2,State,Himachal Pradesh,ISO-3166-1,IN,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,31.925300,77.248411,centroid,75.594593,30.377336,79.008917,33.256426,SOI_States,2023-12-11 -LGD,1,State,Jammu And Kashmir,ISO-3166-1,IN,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,33.675618,74.859285,centroid,73.396060,32.276005,76.779413,35.130068,SOI_States,2023-12-11 -LGD,20,State,Jharkhand,ISO-3166-1,IN,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.656374,85.564266,centroid,83.329346,21.970129,87.962825,25.349181,SOI_States,2023-12-11 -LGD,29,State,Karnataka,ISO-3166-1,IN,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,14.710573,76.167282,centroid,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -LGD,32,State,Kerala,ISO-3166-1,IN,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.452100,76.407182,centroid,74.864337,8.293018,77.412396,12.795535,SOI_States,2023-12-11 -LGD,37,State,Ladakh,ISO-3166-1,IN,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,34.948731,76.794070,centroid,72.512762,32.335694,80.345084,37.088342,SOI_States,2023-12-11 -LGD,31,State,Lakshadweep,ISO-3166-1,IN,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_States,2023-12-11 -LGD,23,State,Madhya Pradesh,ISO-3166-1,IN,23,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.538142,78.289776,centroid,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,27,State,Maharashtra,ISO-3166-1,IN,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,19.451683,76.107454,centroid,72.641991,15.606085,80.897684,22.030269,SOI_States,2023-12-11 -LGD,14,State,Manipur,ISO-3166-1,IN,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,24.733858,93.878817,centroid,92.969434,23.832848,94.744890,25.692090,SOI_States,2023-12-11 -LGD,17,State,Meghalaya,ISO-3166-1,IN,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,25.535419,91.278401,centroid,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 -LGD,15,State,Mizoram,ISO-3166-1,IN,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.306959,92.831811,centroid,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -LGD,13,State,Nagaland,ISO-3166-1,IN,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.062153,94.466308,centroid,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,21,State,Odisha,ISO-3166-1,IN,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,20.511652,84.426842,centroid,81.388378,17.812450,87.486135,22.567507,SOI_States,2023-12-11 -LGD,34,State,Puducherry,ISO-3166-1,IN,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.933465,79.802983,centroid,75.526556,10.827383,82.310616,16.763695,SOI_States,2023-12-11 -LGD,3,State,Punjab,ISO-3166-1,IN,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.842128,75.415888,centroid,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -LGD,8,State,Rajasthan,ISO-3166-1,IN,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.584176,73.849855,centroid,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,11,State,Sikkim,ISO-3166-1,IN,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,27.570188,88.473019,centroid,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -LGD,33,State,Tamil Nadu,ISO-3166-1,IN,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,11.015873,78.407996,centroid,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -LGD,36,State,Telangana,ISO-3166-1,IN,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,17.800653,79.009116,centroid,77.235761,15.836003,81.322641,19.916807,SOI_States,2023-12-11 -LGD,38,State,The Dadra And Nagar Haveli And Daman And Diu,ISO-3166-1,IN,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,20.191077,73.058434,interior_grid,70.870788,20.047018,73.218192,20.771437,SOI_States,2023-12-11 -LGD,16,State,Tripura,ISO-3166-1,IN,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.745620,91.740747,centroid,91.149198,22.938351,92.332057,24.531867,SOI_States,2023-12-11 -LGD,5,State,Uttarakhand,ISO-3166-1,IN,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.156322,79.207366,centroid,77.572316,28.722831,81.046605,31.462080,SOI_States,2023-12-11 -LGD,9,State,Uttar Pradesh,ISO-3166-1,IN,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.923320,80.565958,centroid,77.083948,23.870110,84.634660,30.406276,SOI_States,2023-12-11 -LGD,19,State,West Bengal,ISO-3166-1,IN,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.808568,87.988173,centroid,85.819673,21.527082,89.882602,27.221067,SOI_States,2023-12-11 -LGD,603,District,Nicobars,LGD,35,638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,7.024826,93.799023,centroid,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 -LGD,632,District,North And Middle Andaman,LGD,35,639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.842528,92.870475,centroid,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -LGD,602,District,South Andamans,LGD,35,640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.523693,92.648491,centroid,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -LGD,745,District,Alluri Sitharama Raju,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,744,District,Anakapalli,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,502,District,Ananthapuramu,LGD,28,553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.493043,77.566974,centroid,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,753,District,Annamayya,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,750,District,Bapatla,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,503,District,Chittoor,LGD,28,554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.464938,79.005997,centroid,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,747,District,Dr. B.R. Ambedkar Konaseema,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,505,District,East Godavari,LGD,28,545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.272008,81.893276,centroid,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,748,District,Eluru,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,506,District,Guntur,LGD,28,548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.293106,80.078833,centroid,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,746,District,Kakinada,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,510,District,Krishna,LGD,28,547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.555707,80.797994,centroid,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,511,District,Kurnool,LGD,28,552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.535569,78.012995,centroid,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,790,District,Markapuram,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,755,District,Nandyal,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,749,District,Ntr,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,751,District,Palnadu,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,743,District,Parvathipuram Manyam,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,791,District,Polavaram,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,517,District,Prakasam,LGD,28,549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.616202,79.515203,centroid,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,519,District,Srikakulam,LGD,28,542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.597701,84.022731,centroid,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,515,District,Sri Potti Sriramulu Nellore,LGD,28,550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.418363,79.738935,centroid,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,754,District,Sri Sathya Sai,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,752,District,Tirupati,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,520,District,Visakhapatnam,LGD,28,544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.893416,82.693925,centroid,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,521,District,Vizianagaram,LGD,28,543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.472878,83.385198,centroid,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,523,District,West Godavari,LGD,28,546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.931401,81.387360,centroid,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,504,District,Y.S.R. Kadapa,LGD,28,551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.463753,78.780374,centroid,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,628,District,Anjaw,LGD,12,260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.066616,96.856247,centroid,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,787,District,Bichom,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,229,District,Changlang,LGD,12,253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.369957,96.353040,centroid,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,230,District,Dibang Valley,LGD,12,257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.868333,95.909961,centroid,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 -LGD,231,District,East Kameng,LGD,12,247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.587861,92.917506,centroid,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,232,District,East Siang,LGD,12,251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.048218,95.354000,centroid,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -LGD,718,District,Kamle,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.741518,94.078176,centroid,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 -LGD,786,District,Keyi Panyor,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,677,District,Kra Daadi,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.017789,93.672960,centroid,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -LGD,233,District,Kurung Kumey,LGD,12,256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.002616,93.206931,centroid,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,724,District,Leparada,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.925491,94.716086,centroid,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 -LGD,234,District,Lohit,LGD,12,259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.929436,96.300479,centroid,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 -LGD,666,District,Longding,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.855201,95.327659,centroid,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 -LGD,235,District,Lower Dibang Valley,LGD,12,258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.254737,95.821628,centroid,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -LGD,719,District,Lower Siang,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.775244,94.694459,centroid,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,236,District,Lower Subansiri,LGD,12,255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.588340,93.776522,centroid,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11 -LGD,678,District,Namsai,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.701176,96.043183,centroid,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 -LGD,723,District,Pakke Kessang,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.105402,93.035255,centroid,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 -LGD,237,District,Papum Pare,LGD,12,248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.270137,93.596281,centroid,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,725,District,Shi Yomi,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.676965,94.260983,centroid,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 -LGD,679,District,Siang,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.404385,94.808912,centroid,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,238,District,Tawang,LGD,12,245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.662208,91.965169,centroid,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,239,District,Tirap,LGD,12,254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.024225,95.543181,centroid,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,240,District,Upper Siang,LGD,12,252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.832949,94.915294,centroid,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,241,District,Upper Subansiri,LGD,12,249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.289938,93.929551,centroid,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,242,District,West Kameng,LGD,12,246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.291857,92.393051,centroid,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,243,District,West Siang,LGD,12,250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.159942,94.613450,interior_grid,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,739,District,Bajali,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -LGD,616,District,Baksa,LGD,18,324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.660208,91.351220,centroid,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -LGD,280,District,Barpeta,LGD,18,303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.341730,91.003652,centroid,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -LGD,705,District,Biswanath,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.812104,93.312825,centroid,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -LGD,281,District,Bongaigaon,LGD,18,319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.354045,90.614044,centroid,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -LGD,282,District,Cachar,LGD,18,316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.812469,92.854835,centroid,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -LGD,708,District,Charaideo,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.067765,95.059768,centroid,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -LGD,612,District,Chirang,LGD,18,320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.659673,90.595862,centroid,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -LGD,283,District,Darrang,LGD,18,325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.447690,92.029452,centroid,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -LGD,284,District,Dhemaji,LGD,18,308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.589777,94.774961,centroid,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -LGD,285,District,Dhubri,LGD,18,301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.142595,90.042012,interior_grid,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,286,District,Dibrugarh,LGD,18,310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.366986,95.053106,centroid,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -LGD,299,District,Dima Hasao,LGD,18,315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.377940,93.030966,centroid,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -LGD,287,District,Goalpara,LGD,18,302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.050242,90.607466,centroid,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -LGD,288,District,Golaghat,LGD,18,313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.443087,93.831353,centroid,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -LGD,289,District,Hailakandi,LGD,18,318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.497097,92.587787,centroid,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -LGD,709,District,Hojai,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.978201,92.979926,centroid,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -LGD,290,District,Jorhat,LGD,18,312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.695491,94.276417,centroid,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -LGD,291,District,Kamrup,LGD,18,321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.100380,91.416295,centroid,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,618,District,Kamrup Metro,LGD,18,322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.128528,91.891940,centroid,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -LGD,292,District,Karbi Anglong,LGD,18,314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.156857,93.404795,centroid,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -LGD,294,District,Kokrajhar,LGD,18,300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.492770,90.118799,centroid,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -LGD,295,District,Lakhimpur,LGD,18,307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.174006,94.140707,centroid,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -LGD,706,District,Majuli,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.938190,94.171745,centroid,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 -LGD,296,District,Marigaon,LGD,18,304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.281812,92.284050,centroid,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -LGD,297,District,Nagaon,LGD,18,305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.362398,92.753571,centroid,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -LGD,298,District,Nalbari,LGD,18,323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.370536,91.382421,centroid,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -LGD,300,District,Sivasagar,LGD,18,311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.970450,94.664944,centroid,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -LGD,301,District,Sonitpur,LGD,18,306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.758534,92.651006,centroid,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -LGD,707,District,South Salmara Mancachar,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.778073,89.931723,centroid,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 -LGD,293,District,Sribhumi,LGD,18,317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.579503,92.379052,centroid,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -LGD,756,District,Tamulpur,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -LGD,302,District,Tinsukia,LGD,18,309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.579952,95.619579,centroid,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -LGD,617,District,Udalguri,LGD,18,326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.730123,92.031407,centroid,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -LGD,710,District,West Karbi Anglong,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.849996,92.532969,centroid,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11 -LGD,188,District,Araria,LGD,10,209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.198668,87.363318,centroid,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,611,District,Arwal,LGD,10,240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.163235,84.677455,centroid,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -LGD,189,District,Aurangabad,LGD,10,235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.790895,84.408740,centroid,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,190,District,Banka,LGD,10,225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.854081,86.837107,centroid,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,191,District,Begusarai,LGD,10,222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.496664,86.129714,centroid,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,192,District,Bhagalpur,LGD,10,224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.269569,87.082847,centroid,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,193,District,Bhojpur,LGD,10,231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.470829,84.542485,centroid,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,194,District,Buxar,LGD,10,232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.491965,84.099685,centroid,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,195,District,Darbhanga,LGD,10,215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.084387,86.054245,centroid,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,196,District,Gaya,LGD,10,236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.696793,84.934254,centroid,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,197,District,Gopalganj,LGD,10,217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.443845,84.373836,centroid,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,198,District,Jamui,LGD,10,238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.783624,86.293785,centroid,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,199,District,Jehanabad,LGD,10,239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.155070,85.016832,centroid,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -LGD,200,District,Kaimur (Bhabua),LGD,10,233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.991849,83.605603,centroid,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,201,District,Katihar,LGD,10,212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.548653,87.640579,centroid,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,202,District,Khagaria,LGD,10,223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.511006,86.601532,centroid,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -LGD,203,District,Kishanganj,LGD,10,210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.296361,87.935551,centroid,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -LGD,204,District,Lakhisarai,LGD,10,227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.161234,86.136725,centroid,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -LGD,205,District,Madhepura,LGD,10,213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.822712,86.898913,centroid,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,206,District,Madhubani,LGD,10,207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.402234,86.221843,centroid,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,207,District,Munger,LGD,10,226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.210030,86.526055,centroid,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,208,District,Muzaffarpur,LGD,10,216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.152133,85.328539,centroid,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,209,District,Nalanda,LGD,10,229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.219052,85.450164,centroid,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,210,District,Nawada,LGD,10,237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.811001,85.589668,centroid,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,211,District,Pashchim Champaran,LGD,10,203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.079822,84.338905,centroid,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,212,District,Patna,LGD,10,230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.455947,85.223570,centroid,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,213,District,Purbi Champaran,LGD,10,204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.618344,84.921996,centroid,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,214,District,Purnia,LGD,10,211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.815393,87.405089,centroid,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,215,District,Rohtas,LGD,10,234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.979822,84.025967,centroid,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,216,District,Saharsa,LGD,10,214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.814227,86.590738,centroid,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,217,District,Samastipur,LGD,10,221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.772996,85.865723,centroid,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,218,District,Saran,LGD,10,219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.905685,84.823193,centroid,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,219,District,Sheikhpura,LGD,10,228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.123650,85.838344,centroid,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -LGD,220,District,Sheohar,LGD,10,205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.497836,85.301880,centroid,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -LGD,221,District,Sitamarhi,LGD,10,206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.585083,85.552608,centroid,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,222,District,Siwan,LGD,10,218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.161266,84.386962,centroid,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,223,District,Supaul,LGD,10,208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.245094,86.808186,centroid,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,224,District,Vaishali,LGD,10,220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.763071,85.368195,centroid,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,44,District,Chandigarh,LGD,4,55,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11 -LGD,646,District,Balod,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.741641,81.188372,centroid,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -LGD,644,District,Balodabazar-Bhatapara,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.582031,82.327512,centroid,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,649,District,Balrampur-Ramanujganj,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.592678,83.501241,centroid,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,374,District,Bastar,LGD,22,414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.095835,81.867804,centroid,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,650,District,Bemetara,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.660879,81.469869,centroid,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,636,District,Bijapur,LGD,22,417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.860867,80.800554,centroid,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -LGD,375,District,Bilaspur,LGD,22,406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.179960,82.115906,centroid,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,376,District,Dakshin Bastar Dantewada,LGD,22,416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.804749,81.390283,centroid,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -LGD,377,District,Dhamtari,LGD,22,412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.555245,81.808854,centroid,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -LGD,378,District,Durg,LGD,22,409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.220343,81.383275,centroid,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -LGD,645,District,Gariyaband,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.448083,82.235234,centroid,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -LGD,734,District,Gaurela-Pendra-Marwahi,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.804965,81.998854,centroid,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 -LGD,379,District,Janjgir-Champa,LGD,22,405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.921350,82.592276,centroid,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,380,District,Jashpur,LGD,22,402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.801105,83.862511,centroid,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,382,District,Kabeerdham,LGD,22,407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.092525,81.222508,centroid,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,759,District,Khairagarh-Chhuikhadan-Gandai,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,643,District,Kondagaon,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.745701,81.664919,centroid,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -LGD,383,District,Korba,LGD,22,404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.534684,82.608204,centroid,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,384,District,Korea,LGD,22,400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.469802,82.235279,centroid,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -LGD,385,District,Mahasamund,LGD,22,411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.207969,82.608312,centroid,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -LGD,760,District,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,761,District,Mohla-Manpur-Ambagarh Chouki,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,647,District,Mungeli,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.240399,81.730560,centroid,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -LGD,637,District,Narayanpur,LGD,22,415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.570198,81.085072,centroid,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 -LGD,386,District,Raigarh,LGD,22,403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.085227,83.303068,centroid,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,387,District,Raipur,LGD,22,410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.285804,81.820087,centroid,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,388,District,Rajnandgaon,LGD,22,408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.039397,80.820053,centroid,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -LGD,762,District,Sakti,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,763,District,Sarangarh-Bilaigarh,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,642,District,Sukma,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.272188,81.365650,centroid,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -LGD,648,District,Surajpur,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.401996,82.883600,centroid,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,389,District,Surguja,LGD,22,401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.928368,83.227178,centroid,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,381,District,Uttar Bastar Kanker,LGD,22,413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.137568,81.122709,centroid,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,77,District,Central,LGD,7,95,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.681583,77.224161,centroid,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11 -LGD,796,District,Central North,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,78,District,East,LGD,7,93,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.622088,77.304590,centroid,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 -LGD,79,District,New Delhi,LGD,7,94,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.577155,77.148588,centroid,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11 -LGD,80,District,North,LGD,7,91,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.793505,77.107739,centroid,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 -LGD,81,District,North East,LGD,7,92,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.722615,77.256547,centroid,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 -LGD,82,District,North West,LGD,7,90,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.725251,77.043125,centroid,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 -LGD,795,District,Old Delhi,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,794,District,Outer North,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,83,District,South,LGD,7,98,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.481463,77.190717,centroid,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -LGD,670,District,South East,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.542227,77.272944,centroid,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 -LGD,84,District,South West,LGD,7,97,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.576241,76.967730,centroid,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -LGD,85,District,West,LGD,7,96,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.655426,77.063965,centroid,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 -LGD,793,District,Kushavati,LGD,30,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -LGD,551,District,North Goa,LGD,30,585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.549741,73.976654,centroid,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -LGD,552,District,South Goa,LGD,30,586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.200426,74.114554,centroid,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -LGD,438,District,Ahmedabad,LGD,24,474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.756916,72.243635,centroid,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,439,District,Amreli,LGD,24,480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.425061,71.242250,centroid,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,440,District,Anand,LGD,24,482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.426788,72.750860,centroid,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,672,District,Arvalli,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.460770,73.333057,centroid,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,441,District,Banas Kantha,LGD,24,469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.287309,72.023840,centroid,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,442,District,Bharuch,LGD,24,488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.781624,72.940813,centroid,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,443,District,Bhavnagar,LGD,24,481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.567255,71.890807,centroid,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,676,District,Botad,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.111237,71.675173,centroid,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -LGD,668,District,Chhotaudepur,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.219363,73.873322,centroid,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -LGD,445,District,Dahod,LGD,24,485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.860252,74.112368,centroid,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,444,District,Dangs,LGD,24,489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.804932,73.700704,centroid,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -LGD,674,District,Devbhumi Dwarka,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.123915,69.460359,centroid,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -LGD,446,District,Gandhinagar,LGD,24,473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.255060,72.691828,centroid,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -LGD,675,District,Gir Somnath,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.904305,70.754896,centroid,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -LGD,447,District,Jamnagar,LGD,24,477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.284992,70.195152,centroid,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -LGD,448,District,Junagadh,LGD,24,479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.322204,70.484799,centroid,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,449,District,Kachchh,LGD,24,468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.649743,69.939927,centroid,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,450,District,Kheda,LGD,24,483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.837464,72.950496,centroid,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,451,District,Mahesana,LGD,24,471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.609492,72.466734,centroid,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,669,District,Mahisagar,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.187631,73.647054,centroid,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,673,District,Morbi,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.834967,70.903505,centroid,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -LGD,452,District,Narmada,LGD,24,487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.736946,73.644961,centroid,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -LGD,453,District,Navsari,LGD,24,490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.815302,73.092556,centroid,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -LGD,454,District,Panch Mahals,LGD,24,484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.719962,73.625560,centroid,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,455,District,Patan,LGD,24,470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.770377,71.758662,centroid,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,456,District,Porbandar,LGD,24,478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.654830,69.777118,centroid,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -LGD,457,District,Rajkot,LGD,24,476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.025462,70.744479,centroid,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,458,District,Sabar Kantha,LGD,24,472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.804138,73.036193,centroid,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,459,District,Surat,LGD,24,492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.268923,73.071114,centroid,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,460,District,Surendranagar,LGD,24,475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.765832,71.593076,centroid,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,641,District,Tapi,LGD,24,493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.191623,73.626694,centroid,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,461,District,Vadodara,LGD,24,486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.248056,73.239088,centroid,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,462,District,Valsad,LGD,24,491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.418149,73.120123,centroid,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,789,District,Vav-Tharad,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,58,District,Ambala,LGD,6,70,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.328333,76.938819,centroid,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -LGD,59,District,Bhiwani,LGD,6,81,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.779986,75.890362,centroid,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -LGD,701,District,Charkhi Dadri,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.576821,76.153473,centroid,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -LGD,60,District,Faridabad,LGD,6,88,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.352029,77.342381,centroid,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,61,District,Fatehabad,LGD,6,78,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.568879,75.576977,centroid,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -LGD,62,District,Gurugram,LGD,6,86,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.369140,76.939969,centroid,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,792,District,Hansi,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -LGD,63,District,Hisar,LGD,6,80,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.211695,75.822441,centroid,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -LGD,64,District,Jhajjar,LGD,6,83,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.604827,76.648173,centroid,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -LGD,65,District,Jind,LGD,6,77,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.435165,76.303632,centroid,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -LGD,66,District,Kaithal,LGD,6,73,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.811241,76.413852,centroid,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -LGD,67,District,Karnal,LGD,6,74,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.688952,76.887790,centroid,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,68,District,Kurukshetra,LGD,6,72,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.038696,76.784940,centroid,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -LGD,69,District,Mahendragarh,LGD,6,84,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.171027,76.138339,centroid,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -LGD,604,District,Nuh,LGD,6,87,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.985194,77.050196,centroid,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -LGD,619,District,Palwal,LGD,6,89,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.062991,77.334914,centroid,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -LGD,70,District,Panchkula,LGD,6,69,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.686460,76.977506,centroid,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -LGD,71,District,Panipat,LGD,6,75,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.337959,76.928109,centroid,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -LGD,72,District,Rewari,LGD,6,85,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.240787,76.536358,centroid,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,73,District,Rohtak,LGD,6,82,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.912077,76.530277,centroid,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -LGD,74,District,Sirsa,LGD,6,79,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.615601,74.900793,centroid,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -LGD,75,District,Sonipat,LGD,6,76,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.056549,76.874796,centroid,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -LGD,76,District,Yamunanagar,LGD,6,71,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.234263,77.302286,centroid,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -LGD,15,District,Bilaspur,LGD,2,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.370997,76.670218,centroid,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -LGD,16,District,Chamba,LGD,2,23,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.674760,76.348210,centroid,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,17,District,Hamirpur,LGD,2,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.667072,76.525513,centroid,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,18,District,Kangra,LGD,2,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.108262,76.315594,centroid,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,19,District,Kinnaur,LGD,2,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.595321,78.413983,centroid,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -LGD,20,District,Kullu,LGD,2,26,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.902180,77.398851,centroid,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,21,District,Lahaul And Spiti,LGD,2,25,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.480058,77.616702,centroid,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -LGD,22,District,Mandi,LGD,2,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.636785,76.991568,centroid,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,23,District,Shimla,LGD,2,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.197358,77.632010,centroid,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,24,District,Sirmaur,LGD,2,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.666819,77.430921,centroid,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,25,District,Solan,LGD,2,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.045294,76.909556,centroid,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,26,District,Una,LGD,2,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.579300,76.209866,centroid,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,1,District,Anantnag,LGD,1,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.826532,75.324713,centroid,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,623,District,Bandipora,LGD,1,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.587294,74.876122,centroid,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -LGD,3,District,Baramulla,LGD,1,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.158233,74.302510,centroid,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,2,District,Budgam,LGD,1,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.918231,74.634582,centroid,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,4,District,Doda,LGD,1,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.093287,75.714680,centroid,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,626,District,Ganderbal,LGD,1,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.262056,75.032361,centroid,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -LGD,5,District,Jammu,LGD,1,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.804977,74.746861,centroid,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,7,District,Kathua,LGD,1,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.574591,75.583408,centroid,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,620,District,Kishtwar,LGD,1,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.549896,75.971004,centroid,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,622,District,Kulgam,LGD,1,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.606434,74.860001,centroid,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -LGD,8,District,Kupwara,LGD,1,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.521364,74.207221,centroid,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,10,District,Poonch,LGD,1,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.783995,74.017819,centroid,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -LGD,11,District,Pulwama,LGD,1,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.940691,75.016857,centroid,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,12,District,Rajouri,LGD,1,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.278226,74.380875,centroid,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,621,District,Ramban,LGD,1,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.307671,75.189864,centroid,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,627,District,Reasi,LGD,1,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.238912,74.831425,centroid,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,624,District,Samba,LGD,1,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.581686,75.090492,centroid,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -LGD,625,District,Shopian,LGD,1,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.735213,74.818533,centroid,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -LGD,13,District,Srinagar,LGD,1,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.114653,74.821269,centroid,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -LGD,14,District,Udhampur,LGD,1,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.898827,75.296952,centroid,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,322,District,Bokaro,LGD,20,355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.694742,85.996538,centroid,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,323,District,Chatra,LGD,20,347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.164478,84.891481,centroid,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,324,District,Deoghar,LGD,20,350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.328324,86.740210,centroid,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,325,District,Dhanbad,LGD,20,354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.826760,86.472253,centroid,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,326,District,Dumka,LGD,20,362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.319558,87.266417,centroid,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,327,District,East Singhbum,LGD,20,357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.582489,86.451427,centroid,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,328,District,Garhwa,LGD,20,346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.103698,83.698491,centroid,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,329,District,Giridih,LGD,20,349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.293575,86.110998,centroid,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,330,District,Godda,LGD,20,351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.858838,87.308684,centroid,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,331,District,Gumla,LGD,20,366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.103200,84.532365,centroid,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,332,District,Hazaribagh,LGD,20,360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.062077,85.425876,centroid,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,333,District,Jamtara,LGD,20,363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.975652,86.907467,centroid,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -LGD,606,District,Khunti,LGD,20,365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.994324,85.262599,centroid,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 -LGD,334,District,Koderma,LGD,20,348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.500046,85.667996,centroid,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -LGD,335,District,Latehar,LGD,20,359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.716982,84.444799,centroid,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,336,District,Lohardaga,LGD,20,356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.475720,84.671773,centroid,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -LGD,337,District,Pakur,LGD,20,353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.564154,87.662615,centroid,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -LGD,338,District,Palamu,LGD,20,358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.199754,84.168881,centroid,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,607,District,Ramgarh,LGD,20,361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.634171,85.564362,centroid,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -LGD,339,District,Ranchi,LGD,20,364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.328674,85.375279,centroid,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,340,District,Sahebganj,LGD,20,352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.010776,87.678156,centroid,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,341,District,Saraikela Kharsawan,LGD,20,369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.847376,85.950299,centroid,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,342,District,Simdega,LGD,20,367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.581800,84.564239,centroid,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,343,District,West Singhbhum,LGD,20,368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.420670,85.518106,centroid,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,524,District,Bagalkote,LGD,29,556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.221360,75.625545,centroid,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,528,District,Ballari,LGD,29,565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.110053,76.532663,centroid,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -LGD,527,District,Belagavi,LGD,29,555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.120633,74.823078,centroid,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,526,District,Bengaluru Rural,LGD,29,583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.227244,77.574079,centroid,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -LGD,631,District,Bengaluru South,LGD,29,584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.679132,77.335368,centroid,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -LGD,525,District,Bengaluru Urban,LGD,29,572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.951773,77.593709,centroid,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -LGD,529,District,Bidar,LGD,29,558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.952944,77.225064,centroid,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,531,District,Chamarajanagar,LGD,29,578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.958215,77.097666,centroid,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -LGD,630,District,Chikkaballapura,LGD,29,582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.578012,77.835250,centroid,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,532,District,Chikkamagaluru,LGD,29,570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.454630,75.690643,centroid,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,533,District,Chitradurga,LGD,29,566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.168582,76.515192,centroid,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -LGD,534,District,Dakshina Kannada,LGD,29,575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.853124,75.250904,centroid,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,535,District,Davanagere,LGD,29,567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.408738,75.954074,centroid,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -LGD,536,District,Dharwad,LGD,29,562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.390180,75.152300,centroid,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,537,District,Gadag,LGD,29,561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.431463,75.665251,centroid,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -LGD,539,District,Hassan,LGD,29,574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.996418,76.107830,centroid,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,540,District,Haveri,LGD,29,564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.738833,75.416481,centroid,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,538,District,Kalaburagi,LGD,29,579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.260450,76.868950,centroid,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,541,District,Kodagu,LGD,29,576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.325015,75.801291,centroid,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -LGD,542,District,Kolar,LGD,29,581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.139716,78.217875,centroid,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -LGD,543,District,Koppal,LGD,29,560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.562534,76.221462,centroid,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -LGD,544,District,Mandya,LGD,29,573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.611423,76.797236,centroid,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -LGD,545,District,Mysuru,LGD,29,577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.210442,76.440368,centroid,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,546,District,Raichur,LGD,29,559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.090678,76.891761,centroid,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,547,District,Shivamogga,LGD,29,568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.043206,75.220165,centroid,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -LGD,548,District,Tumakuru,LGD,29,571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.521638,76.946204,centroid,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,549,District,Udupi,LGD,29,569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.498278,74.871960,centroid,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -LGD,550,District,Uttara Kannada,LGD,29,563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.791505,74.619576,centroid,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,738,District,Vijayanagara,LGD,29,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -LGD,530,District,Vijayapura,LGD,29,557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.794485,75.952820,centroid,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,635,District,Yadgir,LGD,29,580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.626858,76.912489,centroid,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -LGD,554,District,Alappuzha,LGD,32,598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.428387,76.447041,centroid,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -LGD,555,District,Ernakulam,LGD,32,595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.084494,76.546013,centroid,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -LGD,556,District,Idukki,LGD,32,596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.839668,77.056847,centroid,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -LGD,557,District,Kannur,LGD,32,589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.001100,75.523524,centroid,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -LGD,558,District,Kasaragod,LGD,32,588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.462369,75.151022,centroid,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -LGD,559,District,Kollam,LGD,32,600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.962527,76.871728,centroid,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -LGD,560,District,Kottayam,LGD,32,597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.637751,76.650700,centroid,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -LGD,561,District,Kozhikode,LGD,32,591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.485645,75.833309,centroid,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -LGD,562,District,Malappuram,LGD,32,592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.133326,76.154377,centroid,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -LGD,563,District,Palakkad,LGD,32,593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.795647,76.556398,centroid,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -LGD,564,District,Pathanamthitta,LGD,32,599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.284934,76.926426,centroid,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -LGD,565,District,Thiruvananthapuram,LGD,32,601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.609470,77.012216,centroid,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -LGD,566,District,Thrissur,LGD,32,594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.471945,76.314555,centroid,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -LGD,567,District,Wayanad,LGD,32,590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.712508,76.097753,centroid,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -LGD,6,District,Kargil,LGD,37,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.902845,76.494643,centroid,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -LGD,9,District,Leh Ladakh,LGD,37,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,35.043894,76.821315,centroid,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,553,District,Lakshadweep District,LGD,31,587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,667,District,Agar-Malwa,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.826490,76.071034,centroid,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -LGD,639,District,Alirajpur,LGD,23,465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.314414,74.363886,centroid,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -LGD,390,District,Anuppur,LGD,23,461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.056856,81.682706,centroid,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -LGD,391,District,Ashoknagar,LGD,23,459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.609385,77.875356,centroid,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,392,District,Balaghat,LGD,23,457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.880796,80.359833,centroid,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,393,District,Barwani,LGD,23,441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.788217,75.020879,centroid,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,394,District,Betul,LGD,23,447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.878491,77.871242,centroid,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,395,District,Bhind,LGD,23,420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.421879,78.721245,centroid,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,396,District,Bhopal,LGD,23,444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.470159,77.390757,centroid,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -LGD,397,District,Burhanpur,LGD,23,467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.370677,76.369160,centroid,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -LGD,398,District,Chhatarpur,LGD,23,425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.798140,79.665843,centroid,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,399,District,Chhindwara,LGD,23,455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.122543,78.854128,centroid,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,400,District,Damoh,LGD,23,428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.812319,79.526831,centroid,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,401,District,Datia,LGD,23,422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.801368,78.598029,centroid,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -LGD,402,District,Dewas,LGD,23,437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.744198,76.456861,centroid,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,403,District,Dhar,LGD,23,438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.497955,75.103968,centroid,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,404,District,Dindori,LGD,23,453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.889989,81.051289,centroid,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -LGD,406,District,Guna,LGD,23,458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.555940,77.198633,centroid,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,407,District,Gwalior,LGD,23,421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.039596,78.146084,centroid,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,408,District,Harda,LGD,23,448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.232408,77.123520,centroid,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -LGD,410,District,Indore,LGD,23,439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.713138,75.782221,centroid,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,411,District,Jabalpur,LGD,23,451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.234003,79.975911,centroid,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,412,District,Jhabua,LGD,23,464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.892390,74.671552,centroid,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -LGD,413,District,Katni,LGD,23,450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.752838,80.401399,centroid,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,405,District,Khandwa (East Nimar),LGD,23,466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.935151,76.568398,centroid,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,414,District,Khargone (West Nimar),LGD,23,440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.918639,75.771495,centroid,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,784,District,Maihar,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,415,District,Mandla,LGD,23,454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.639254,80.512199,centroid,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -LGD,416,District,Mandsaur,LGD,23,433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.204426,75.405140,centroid,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,766,District,MAUGANJ,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,417,District,Morena,LGD,23,419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.413015,77.868115,centroid,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,409,District,Narmadapuram,LGD,23,449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.590666,77.990687,centroid,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,418,District,Narsimhapur,LGD,23,452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.936237,79.087885,centroid,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -LGD,419,District,Neemuch,LGD,23,432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.590871,75.141734,centroid,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -LGD,722,District,Niwari,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.284792,78.748152,centroid,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -LGD,785,District,Pandhurna,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,420,District,Panna,LGD,23,426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.421056,80.189010,centroid,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,421,District,Raisen,LGD,23,446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.220061,78.120590,centroid,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,422,District,Rajgarh,LGD,23,442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.861158,76.732433,centroid,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,423,District,Ratlam,LGD,23,434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.502339,75.088589,centroid,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,424,District,Rewa,LGD,23,430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.755316,81.587224,centroid,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,425,District,Sagar,LGD,23,427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.850043,78.759732,centroid,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,426,District,Satna,LGD,23,429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.528700,80.830748,centroid,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,427,District,Sehore,LGD,23,445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.987637,77.127430,centroid,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,428,District,Seoni,LGD,23,456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.316960,79.689162,centroid,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,429,District,Shahdol,LGD,23,460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.629442,81.473493,centroid,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -LGD,430,District,Shajapur,LGD,23,436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.383975,76.559497,centroid,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -LGD,431,District,Sheopur,LGD,23,418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.754479,77.007246,centroid,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -LGD,432,District,Shivpuri,LGD,23,423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.365539,77.805373,centroid,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,433,District,Sidhi,LGD,23,462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.220619,81.834023,centroid,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,638,District,Singrauli,LGD,23,463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.215913,82.419945,centroid,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,434,District,Tikamgarh,LGD,23,424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.883196,79.016107,centroid,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,435,District,Ujjain,LGD,23,435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.330883,75.669034,centroid,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,436,District,Umaria,LGD,23,431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.562793,80.973190,centroid,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -LGD,437,District,Vidisha,LGD,23,443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.892313,77.813112,centroid,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,466,District,Ahilyanagar,LGD,27,522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.205391,74.675231,centroid,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,467,District,Akola,LGD,27,501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.748005,77.056016,centroid,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -LGD,468,District,Amravati,LGD,27,503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.187565,77.570354,centroid,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,470,District,Beed,LGD,27,523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.946660,75.838225,centroid,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,471,District,Bhandara,LGD,27,506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.115620,79.763152,centroid,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -LGD,472,District,Buldhana,LGD,27,500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.510807,76.407133,centroid,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,473,District,Chandrapur,LGD,27,509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.118386,79.440540,centroid,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,469,District,Chhatrapati Sambhajinagar,LGD,27,515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.027442,75.279761,centroid,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,488,District,Dharashiv,LGD,27,525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.188746,76.036898,centroid,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,474,District,Dhule,LGD,27,498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.110370,74.600494,centroid,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -LGD,475,District,Gadchiroli,LGD,27,508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.787912,80.240432,centroid,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,476,District,Gondia,LGD,27,507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.165306,80.217855,centroid,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,477,District,Hingoli,LGD,27,512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.637480,77.100455,centroid,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -LGD,478,District,Jalgaon,LGD,27,499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.932545,75.487940,centroid,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,479,District,Jalna,LGD,27,514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.807495,75.980338,centroid,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,480,District,Kolhapur,LGD,27,530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.471481,74.158638,centroid,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,481,District,Latur,LGD,27,524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.373766,76.759511,centroid,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,482,District,Mumbai,LGD,27,519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.989036,72.838017,centroid,72.792496,18.893405,72.881476,19.053004,SOI_Districts,2023-12-11 -LGD,483,District,Mumbai Suburban,LGD,27,518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.131779,72.884497,centroid,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -LGD,484,District,Nagpur,LGD,27,505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.178155,79.085030,centroid,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,485,District,Nanded,LGD,27,511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.112445,77.617827,centroid,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,486,District,Nandurbar,LGD,27,497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.550193,74.216834,centroid,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -LGD,487,District,Nashik,LGD,27,516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.259820,74.070699,centroid,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,665,District,Palghar,LGD,27,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.793763,73.012184,centroid,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,489,District,Parbhani,LGD,27,513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.268248,76.690859,centroid,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,490,District,Pune,LGD,27,521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.571118,74.067998,centroid,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,491,District,Raigad,LGD,27,520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.510062,73.221458,centroid,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,492,District,Ratnagiri,LGD,27,528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.274418,73.454737,centroid,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,493,District,Sangli,LGD,27,531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.113762,74.767913,centroid,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,494,District,Satara,LGD,27,527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.670029,74.172659,centroid,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,495,District,Sindhudurg,LGD,27,529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.134008,73.737764,centroid,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,496,District,Solapur,LGD,27,526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.790589,75.483125,centroid,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,497,District,Thane,LGD,27,517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.361103,73.319543,centroid,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -LGD,498,District,Wardha,LGD,27,504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.797145,78.585883,centroid,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,499,District,Washim,LGD,27,502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.234103,77.216372,centroid,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -LGD,500,District,Yavatmal,LGD,27,510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.083546,78.161025,centroid,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,252,District,Bishnupur,LGD,14,275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.535799,93.797905,centroid,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 -LGD,253,District,Chandel,LGD,14,280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.124837,94.007495,centroid,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -LGD,254,District,Churachandpur,LGD,14,274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.277193,93.602918,centroid,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,255,District,Imphal East,LGD,14,278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.832705,94.013173,centroid,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -LGD,256,District,Imphal West,LGD,14,277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.803266,93.872958,centroid,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -LGD,713,District,Jiribam,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.681775,93.152020,centroid,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 -LGD,711,District,Kakching,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.427861,93.917808,centroid,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11 -LGD,717,District,Kamjong,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.824838,94.432038,centroid,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 -LGD,712,District,Kangpokpi,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.992920,93.947737,centroid,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,714,District,Noney,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.677348,93.455938,centroid,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 -LGD,715,District,Pherzawl,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.304682,93.220554,centroid,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 -LGD,257,District,Senapati,LGD,14,272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.398440,94.124914,centroid,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -LGD,258,District,Tamenglong,LGD,14,273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.053484,93.550469,centroid,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 -LGD,716,District,Tengnoupal,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.412591,94.222784,centroid,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11 -LGD,259,District,Thoubal,LGD,14,276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.615553,94.009519,centroid,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 -LGD,260,District,Ukhrul,LGD,14,279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.237716,94.429581,centroid,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 -LGD,740,District,Eastern West Khasi Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 -LGD,273,District,East Garo Hills,LGD,17,294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.618628,90.630370,centroid,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -LGD,657,District,East Jaintia Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.265690,92.463884,centroid,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 -LGD,274,District,East Khasi Hills,LGD,17,298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.383453,91.800191,centroid,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,656,District,North Garo Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.850532,90.665283,centroid,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 -LGD,276,District,Ri Bhoi,LGD,17,297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.873612,91.884129,centroid,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -LGD,277,District,South Garo Hills,LGD,17,295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.300548,90.593840,centroid,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -LGD,663,District,South West Garo Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.446276,89.989664,centroid,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 -LGD,658,District,South West Khasi Hills,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.312380,91.245827,centroid,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 -LGD,278,District,West Garo Hills,LGD,17,293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.641756,90.197735,centroid,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,275,District,West Jaintia Hills,LGD,17,299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.485083,92.281958,centroid,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 -LGD,279,District,West Khasi Hills,LGD,17,296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.598255,91.261737,centroid,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 -LGD,261,District,Aizawl,LGD,15,283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.848541,92.890177,centroid,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -LGD,262,District,Champhai,LGD,15,284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.540546,93.231068,centroid,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 -LGD,726,District,Hnahthial,LGD,15,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -LGD,728,District,Khawzawl,LGD,15,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -LGD,263,District,Kolasib,LGD,15,282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.141417,92.720432,centroid,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 -LGD,264,District,Lawngtlai,LGD,15,287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.432755,92.765933,centroid,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 -LGD,265,District,Lunglei,LGD,15,286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.972505,92.720138,centroid,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 -LGD,266,District,Mamit,LGD,15,281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.755528,92.463997,centroid,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -LGD,727,District,Saitual,LGD,15,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -LGD,268,District,Serchhip,LGD,15,285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.308820,92.941508,centroid,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 -LGD,267,District,Siaha,LGD,15,288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.291740,93.001449,centroid,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11 -LGD,758,District,Chumoukedima,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,244,District,Dimapur,LGD,13,265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.781128,93.794081,centroid,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11 -LGD,614,District,Kiphire,LGD,13,269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.842745,94.821768,centroid,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,245,District,Kohima,LGD,13,270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.771761,94.108881,centroid,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -LGD,615,District,Longleng,LGD,13,268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.552081,94.795531,centroid,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -LGD,788,District,Meluri,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,246,District,Mokokchung,LGD,13,262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.472284,94.528963,centroid,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,247,District,Mon,LGD,13,261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.677812,95.016718,centroid,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,764,District,Niuland,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,736,District,Noklak,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,613,District,Peren,LGD,13,271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.508382,93.624084,centroid,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -LGD,248,District,Phek,LGD,13,266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.647194,94.534539,centroid,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,765,District,Shamator,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,757,District,Tseminyu,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,249,District,Tuensang,LGD,13,267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.166672,94.887560,centroid,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -LGD,250,District,Wokha,LGD,13,264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.188371,94.191816,centroid,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,251,District,Zunheboto,LGD,13,263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.999722,94.483933,centroid,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,344,District,Anugola,LGD,21,384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.986355,84.905206,centroid,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,345,District,Balangir,LGD,21,393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.589427,83.171651,centroid,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,346,District,Baleshwar,LGD,21,377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.494441,86.906311,centroid,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,347,District,Baragada,LGD,21,370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.219614,83.349141,centroid,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,348,District,Bhadrak,LGD,21,378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.983044,86.625018,centroid,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -LGD,349,District,Boudh,LGD,21,391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.644444,84.172873,centroid,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -LGD,351,District,Debagada,LGD,21,373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.467033,84.785302,centroid,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 -LGD,352,District,Dhenkanal,LGD,21,383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.826874,85.523896,centroid,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,353,District,Gajapati,LGD,21,389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.184171,84.161163,centroid,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -LGD,354,District,Ganjam,LGD,21,388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.624456,84.672465,centroid,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,355,District,Jagatsinghapur,LGD,21,380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.218649,86.335211,centroid,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,356,District,Jajpur,LGD,21,382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.856145,86.149442,centroid,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,357,District,Jharsuguda,LGD,21,371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.807224,83.946640,centroid,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -LGD,358,District,Kalahandi,LGD,21,395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.867583,83.107938,centroid,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,359,District,Kandhamala,LGD,21,390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.128180,84.045937,centroid,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,350,District,Kataka,LGD,21,381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.453340,85.696462,centroid,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,360,District,Kendrapada,LGD,21,379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.552578,86.609881,centroid,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,361,District,Kendujhar,LGD,21,375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.537820,85.702386,centroid,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,362,District,Khordha,LGD,21,386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.091062,85.514274,centroid,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,363,District,Koraput,LGD,21,398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.812874,82.719717,centroid,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,364,District,Malkangiri,LGD,21,399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.257715,81.950493,centroid,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -LGD,365,District,Mayurbhanj,LGD,21,376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.895372,86.408568,centroid,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,366,District,Nabarangpur,LGD,21,397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.576483,82.334523,centroid,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,367,District,Nayagada,LGD,21,385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.213177,84.997802,centroid,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,368,District,Nuapada,LGD,21,394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.466045,82.576879,centroid,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -LGD,369,District,Puri,LGD,21,387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.879081,85.725732,centroid,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,370,District,Rayagada,LGD,21,396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.363492,83.512441,centroid,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,371,District,Sambalpur,LGD,21,372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.452534,84.273391,centroid,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,372,District,Subarnapur,LGD,21,392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.930816,83.822370,centroid,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -LGD,373,District,Sundaragada,LGD,21,374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.099526,84.494844,interior_grid,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,598,District,Karaikal,LGD,34,637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.933424,79.802948,centroid,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -LGD,600,District,Puducherry,LGD,34,635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.916989,79.766405,centroid,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -LGD,27,District,Amritsar,LGD,3,49,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.705642,74.899424,centroid,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -LGD,605,District,Barnala,LGD,3,54,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.387784,75.498635,centroid,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -LGD,28,District,Bathinda,LGD,3,46,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.183238,75.040269,centroid,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -LGD,29,District,Faridkot,LGD,3,45,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.613481,74.777318,centroid,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -LGD,30,District,Fatehgarh Sahib,LGD,3,40,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.642697,76.375469,centroid,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -LGD,651,District,Fazilka,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.277026,74.163643,centroid,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -LGD,31,District,Ferozepur,LGD,3,43,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.912989,74.703010,centroid,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -LGD,32,District,Gurdaspur,LGD,3,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.916470,75.291003,centroid,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -LGD,33,District,Hoshiarpur,LGD,3,38,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.625016,75.857919,centroid,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -LGD,34,District,Jalandhar,LGD,3,37,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.212738,75.565804,centroid,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -LGD,35,District,Kapurthala,LGD,3,36,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.354438,75.400042,centroid,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -LGD,36,District,Ludhiana,LGD,3,41,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.805395,75.832732,centroid,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -LGD,737,District,Malerkotla,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -LGD,37,District,Mansa,LGD,3,47,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.907347,75.438503,centroid,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -LGD,38,District,Moga,LGD,3,42,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.761814,75.170324,centroid,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -LGD,662,District,Pathankot,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.296307,75.616245,centroid,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -LGD,41,District,Patiala,LGD,3,48,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.281721,76.350755,centroid,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -LGD,42,District,Rupnagar,LGD,3,51,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.062049,76.487646,centroid,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -LGD,43,District,Sangrur,LGD,3,53,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.211970,75.869115,centroid,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -LGD,608,District,S.A.S Nagar,LGD,3,52,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.680921,76.739758,centroid,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -LGD,40,District,Shahid Bhagat Singh Nagar,LGD,3,39,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.110048,76.154318,centroid,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -LGD,39,District,Sri Muktsar Sahib,LGD,3,44,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.299843,74.538399,centroid,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -LGD,609,District,Tarn Taran,LGD,3,50,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.336494,74.840379,centroid,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -LGD,86,District,Ajmer,LGD,8,119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.233499,74.773091,centroid,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,87,District,Alwar,LGD,8,104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.590899,76.601627,centroid,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,775,District,Balotra,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,88,District,Banswara,LGD,8,125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.476390,74.361987,centroid,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,89,District,Baran,LGD,8,128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.995630,76.747835,centroid,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,90,District,Barmer,LGD,8,115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.734986,71.474795,centroid,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,774,District,Beawar,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,91,District,Bharatpur,LGD,8,105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.247765,77.276538,centroid,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,92,District,Bhilwara,LGD,8,122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.481644,74.726677,centroid,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,93,District,Bikaner,LGD,8,101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.177209,73.174572,centroid,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,94,District,Bundi,LGD,8,121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.485609,75.790630,centroid,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -LGD,95,District,Chittorgarh,LGD,8,126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.822240,74.775399,centroid,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,96,District,Churu,LGD,8,102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.345118,74.696405,centroid,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,97,District,Dausa,LGD,8,109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.857579,76.510297,centroid,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,767,District,Deeg,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,98,District,Dholpur,LGD,8,106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.680863,77.702142,centroid,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,768,District,Didwana-Kuchaman,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,99,District,Dungarpur,LGD,8,124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.731872,73.853138,centroid,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,100,District,Ganganagar,LGD,8,99,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.395945,73.570535,centroid,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,101,District,Hanumangarh,LGD,8,100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.265979,74.561463,centroid,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,102,District,Jaipur,LGD,8,110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.976650,75.719841,centroid,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,103,District,Jaisalmer,LGD,8,114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.075201,70.901037,centroid,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -LGD,104,District,Jalore,LGD,8,116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.099518,72.211683,centroid,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,105,District,Jhalawar,LGD,8,129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.335986,76.193443,centroid,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,106,District,Jhunjhunu,LGD,8,103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.092715,75.549656,centroid,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,107,District,Jodhpur,LGD,8,113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.747773,72.785854,centroid,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,108,District,Karauli,LGD,8,107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.523079,76.958707,centroid,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,770,District,Khairthal-Tijara,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,109,District,Kota,LGD,8,127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.109266,76.106084,centroid,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -LGD,782,District,Kotputli-Behror,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,110,District,Nagaur,LGD,8,112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.065964,74.175488,centroid,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,111,District,Pali,LGD,8,118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.706921,73.519596,centroid,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,772,District,Phalodi,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,629,District,Pratapgarh,LGD,8,131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.029241,74.650304,centroid,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -LGD,112,District,Rajsamand,LGD,8,123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.227968,73.891708,centroid,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,777,District,Salumbar,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,113,District,Sawai Madhopur,LGD,8,108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.217244,76.460987,centroid,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,114,District,Sikar,LGD,8,111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.634011,75.288276,centroid,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,115,District,Sirohi,LGD,8,117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.761751,72.776047,centroid,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -LGD,116,District,Tonk,LGD,8,120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.148317,75.665959,centroid,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,117,District,Udaipur,LGD,8,130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.418699,73.689784,centroid,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,225,District,Gangtok,LGD,11,244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.292057,88.673069,centroid,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -LGD,228,District,Gyalshing,LGD,11,242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.348415,88.175462,centroid,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 -LGD,226,District,Mangan,LGD,11,241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.743446,88.528275,centroid,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 -LGD,227,District,Namchi,LGD,11,243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.286440,88.384824,centroid,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -LGD,741,District,Pakyong,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -LGD,742,District,Soreng,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -LGD,610,District,Ariyalur,LGD,33,616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.162551,79.242972,centroid,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -LGD,730,District,Chengalpattu,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.582979,79.999171,centroid,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,568,District,Chennai,LGD,33,603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.100428,80.234893,centroid,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,569,District,Coimbatore,LGD,33,632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.878062,76.975747,centroid,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,570,District,Cuddalore,LGD,33,617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.535937,79.450508,centroid,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,571,District,Dharmapuri,LGD,33,630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.100517,78.193248,centroid,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -LGD,572,District,Dindigul,LGD,33,612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.391669,77.819666,centroid,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,573,District,Erode,LGD,33,610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.479549,77.380254,centroid,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,729,District,Kallakurichi,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.803600,79.034514,centroid,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -LGD,574,District,Kancheepuram,LGD,33,604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.832664,79.849732,centroid,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -LGD,575,District,Kanniyakumari,LGD,33,629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.308118,77.359590,centroid,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -LGD,576,District,Karur,LGD,33,613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.844322,78.134624,centroid,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -LGD,577,District,Krishnagiri,LGD,33,631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.490160,78.032355,centroid,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,578,District,Madurai,LGD,33,623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.922720,78.005214,centroid,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,735,District,Mayiladuthurai,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -LGD,579,District,Nagapattinam,LGD,33,618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.841301,79.737891,centroid,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -LGD,580,District,Namakkal,LGD,33,609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.318778,78.135667,centroid,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,581,District,Perambalur,LGD,33,615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.275076,78.891647,centroid,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -LGD,582,District,Pudukkottai,LGD,33,621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.360782,78.879400,centroid,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,583,District,Ramanathapuram,LGD,33,626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.437609,78.685761,centroid,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,731,District,Ranipet,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.949902,79.461686,centroid,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -LGD,584,District,Salem,LGD,33,608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.690215,78.137146,centroid,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,585,District,Sivaganga,LGD,33,622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.916501,78.596076,centroid,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,733,District,Tenkasi,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.092518,77.459924,centroid,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,586,District,Thanjavur,LGD,33,620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.670696,79.241463,centroid,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,588,District,Theni,LGD,33,624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.891794,77.438407,centroid,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -LGD,587,District,The Nilgiris,LGD,33,611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.453320,76.626115,centroid,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -LGD,589,District,Thiruvallur,LGD,33,602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.244045,79.932765,centroid,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,590,District,Thiruvarur,LGD,33,619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.679399,79.533581,centroid,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,594,District,Thoothukkudi,LGD,33,627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.901449,77.997628,centroid,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,591,District,Tiruchirappalli,LGD,33,614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.891184,78.570397,centroid,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,592,District,Tirunelveli,LGD,33,628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.575007,77.590408,centroid,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,732,District,Tirupathur,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.593927,78.655115,centroid,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -LGD,634,District,Tiruppur,LGD,33,633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.838977,77.407267,centroid,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,593,District,Tiruvannamalai,LGD,33,606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.432635,79.166497,centroid,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,595,District,Vellore,LGD,33,605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.914206,78.965876,centroid,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -LGD,596,District,Viluppuram,LGD,33,607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.139718,79.540604,centroid,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,597,District,Virudhunagar,LGD,33,625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.492324,77.905719,centroid,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,501,District,Adilabad,LGD,36,532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.519916,78.565982,centroid,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,690,District,Bhadradri Kothagudem,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.690454,80.716493,centroid,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,686,District,Hanumakonda,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.046534,79.463730,centroid,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,507,District,Hyderabad,LGD,36,536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.395112,78.470167,centroid,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,681,District,Jagitial,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.832238,78.877896,centroid,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,689,District,Jangoan,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.727859,79.284325,centroid,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,687,District,Jayashankar Bhupalapally,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.506030,79.924365,centroid,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,695,District,Jogulamba Gadwal,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.071697,77.780993,centroid,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,685,District,Kamareddy,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.324814,78.061681,centroid,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,508,District,Karimnagar,LGD,36,534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.380033,79.245348,centroid,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,509,District,Khammam,LGD,36,541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.205947,80.365131,centroid,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,699,District,Kumuram Bheem Asifabad,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.357095,79.419802,centroid,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,688,District,Mahabubabad,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.675222,79.996276,centroid,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,512,District,Mahabubnagar,LGD,36,538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.751490,78.013247,centroid,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,684,District,Mancherial,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.991463,79.512315,centroid,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,513,District,Medak,LGD,36,535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.953209,78.265038,centroid,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,700,District,Medchal Malkajgiri,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.544214,78.557696,centroid,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,720,District,Mulugu,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.291487,80.337459,centroid,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,694,District,Nagarkurnool,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.382246,78.595988,centroid,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,514,District,Nalgonda,LGD,36,539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.876525,79.193064,centroid,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,721,District,Narayanpet,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.638254,77.582727,centroid,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,680,District,Nirmal,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.113181,78.314942,centroid,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,516,District,Nizamabad,LGD,36,533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.701604,78.211364,centroid,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,682,District,Peddapalli,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.620155,79.453681,centroid,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,683,District,Rajanna Sircilla,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.414096,78.763447,centroid,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,518,District,Ranga Reddy,LGD,36,537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.130963,78.412504,centroid,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,691,District,Sangareddy,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.785340,77.874129,centroid,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,692,District,Siddipet,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.021641,78.855083,centroid,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,696,District,Suryapet,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.080643,79.754395,centroid,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,698,District,Vikarabad,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.246310,77.750811,centroid,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,693,District,Wanaparthy,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.287718,78.049507,centroid,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,522,District,Warangal,LGD,36,540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.919204,79.737482,centroid,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,697,District,Yadadri Bhuvanagiri,LGD,36,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.451240,78.978697,centroid,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,465,District,Dadra And Nagar Haveli,LGD,38,496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.191077,73.058434,interior_grid,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11 -LGD,463,District,Daman,LGD,38,495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.414235,72.852713,centroid,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11 -LGD,464,District,Diu,LGD,38,494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.721261,70.937137,centroid,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11 -LGD,269,District,Dhalai,LGD,16,291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.837087,91.924036,centroid,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -LGD,654,District,Gomati,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.511621,91.627811,centroid,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -LGD,652,District,Khowai,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.943724,91.660954,centroid,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 -LGD,270,District,North Tripura,LGD,16,292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.097014,92.210814,centroid,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -LGD,653,District,Sepahijala,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.585052,91.331523,centroid,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -LGD,271,District,South Tripura,LGD,16,290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.200333,91.577175,centroid,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -LGD,655,District,Unakoti,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.204434,92.041151,centroid,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -LGD,272,District,West Tripura,LGD,16,289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.886599,91.399302,centroid,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -LGD,45,District,Almora,LGD,5,64,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.690751,79.504039,centroid,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,46,District,Bageshwar,LGD,5,63,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.996405,79.858939,centroid,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -LGD,47,District,Chamoli,LGD,5,57,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.495149,79.577047,centroid,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,48,District,Champawat,LGD,5,65,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.281123,80.069053,centroid,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -LGD,49,District,Dehradun,LGD,5,60,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.472166,77.967550,centroid,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,50,District,Haridwar,LGD,5,68,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.881397,77.996044,centroid,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -LGD,51,District,Nainital,LGD,5,66,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.317293,79.463201,centroid,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,52,District,Pauri Garhwal,LGD,5,61,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.879961,78.763766,centroid,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,53,District,Pithoragarh,LGD,5,62,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.113997,80.345565,centroid,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,54,District,Rudraprayag,LGD,5,58,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.506914,79.052455,centroid,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -LGD,55,District,Tehri Garhwal,LGD,5,59,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.436550,78.535529,centroid,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,56,District,Udham Singh Nagar,LGD,5,67,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.041948,79.470845,centroid,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,57,District,Uttarkashi,LGD,5,56,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.971870,78.607019,centroid,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,118,District,Agra,LGD,9,146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.036251,78.076398,centroid,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -LGD,119,District,Aligarh,LGD,9,143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.926465,78.065301,centroid,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -LGD,121,District,Ambedkar Nagar,LGD,9,178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.418558,82.666105,centroid,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -LGD,640,District,Amethi,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.323815,81.668704,centroid,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -LGD,154,District,Amroha,LGD,9,137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.835642,78.368246,centroid,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -LGD,122,District,Auraiya,LGD,9,162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.658178,79.479116,centroid,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -LGD,140,District,Ayodhya,LGD,9,177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.657554,81.997104,centroid,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -LGD,123,District,Azamgarh,LGD,9,191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.045498,83.067296,centroid,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,124,District,Baghpat,LGD,9,139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.056937,77.308508,centroid,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -LGD,125,District,Bahraich,LGD,9,180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.698230,81.492806,centroid,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -LGD,126,District,Ballia,LGD,9,193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.876254,84.102614,centroid,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -LGD,127,District,Balrampur,LGD,9,182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.483685,82.375229,centroid,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -LGD,128,District,Banda,LGD,9,170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.470939,80.557396,centroid,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -LGD,129,District,Bara Banki,LGD,9,176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.939037,81.332417,centroid,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -LGD,130,District,Bareilly,LGD,9,150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.457976,79.431403,centroid,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -LGD,131,District,Basti,LGD,9,185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.820038,82.625709,centroid,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -LGD,179,District,Bhadohi,LGD,9,198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.347933,82.464128,centroid,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -LGD,132,District,Bijnor,LGD,9,134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.386207,78.388853,centroid,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -LGD,133,District,Budaun,LGD,9,149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.077854,79.041570,centroid,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -LGD,134,District,Bulandshahr,LGD,9,142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.362548,78.014505,centroid,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -LGD,135,District,Chandauli,LGD,9,196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.141544,83.258105,centroid,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -LGD,136,District,Chitrakoot,LGD,9,171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.206227,81.077462,centroid,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -LGD,137,District,Deoria,LGD,9,190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.425350,83.834585,centroid,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -LGD,138,District,Etah,LGD,9,201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.515541,78.717419,centroid,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -LGD,139,District,Etawah,LGD,9,161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.764067,79.094854,centroid,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -LGD,141,District,Farrukhabad,LGD,9,159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.431334,79.458667,centroid,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -LGD,142,District,Fatehpur,LGD,9,172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.874894,80.807709,centroid,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -LGD,143,District,Firozabad,LGD,9,147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.187236,78.526428,centroid,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -LGD,144,District,Gautam Buddha Nagar,LGD,9,141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.394059,77.555973,centroid,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -LGD,145,District,Ghaziabad,LGD,9,140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.767749,77.476015,centroid,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -LGD,146,District,Ghazipur,LGD,9,195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.623962,83.555544,centroid,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -LGD,147,District,Gonda,LGD,9,183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.083387,82.025294,centroid,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -LGD,148,District,Gorakhpur,LGD,9,188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.656068,83.359032,centroid,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -LGD,149,District,Hamirpur,LGD,9,168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.751017,79.865350,centroid,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -LGD,661,District,Hapur,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.722383,77.893127,centroid,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -LGD,150,District,Hardoi,LGD,9,155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.330336,80.161580,centroid,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -LGD,163,District,Hathras,LGD,9,144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.581716,78.164440,centroid,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -LGD,151,District,Jalaun,LGD,9,165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.091193,79.385801,centroid,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -LGD,152,District,Jaunpur,LGD,9,194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.746298,82.574976,centroid,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -LGD,153,District,Jhansi,LGD,9,166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.508105,78.950857,centroid,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -LGD,155,District,Kannauj,LGD,9,160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.013601,79.688690,centroid,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -LGD,156,District,Kanpur Dehat,LGD,9,163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.439637,79.852934,centroid,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -LGD,157,District,Kanpur Nagar,LGD,9,164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.391080,80.208199,centroid,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -LGD,633,District,Kasganj,LGD,9,202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.773327,78.846070,centroid,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -LGD,158,District,Kaushambi,LGD,9,174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.498460,81.415008,centroid,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -LGD,159,District,Kheri,LGD,9,153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.120956,80.666926,centroid,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -LGD,160,District,Kushinagar,LGD,9,189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.862754,83.933846,centroid,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -LGD,161,District,Lalitpur,LGD,9,167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.653500,78.561958,centroid,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -LGD,162,District,Lucknow,LGD,9,157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.841979,80.905490,centroid,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -LGD,165,District,Mahoba,LGD,9,169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.362800,79.726003,centroid,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -LGD,164,District,Mahrajganj,LGD,9,187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.200551,83.530436,centroid,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -LGD,166,District,Mainpuri,LGD,9,148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.182445,79.052108,centroid,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -LGD,167,District,Mathura,LGD,9,145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.597491,77.625895,centroid,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -LGD,168,District,Mau,LGD,9,192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.047456,83.561786,centroid,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -LGD,169,District,Meerut,LGD,9,138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.036373,77.782697,centroid,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -LGD,170,District,Mirzapur,LGD,9,199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.986648,82.607360,centroid,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -LGD,171,District,Moradabad,LGD,9,135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.885592,78.802924,centroid,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -LGD,172,District,Muzaffarnagar,LGD,9,133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.415637,77.725288,centroid,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -LGD,173,District,Pilibhit,LGD,9,151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.530755,79.994583,centroid,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -LGD,174,District,Pratapgarh,LGD,9,173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.872737,81.829069,centroid,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -LGD,120,District,Prayagraj,LGD,9,175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.304012,81.960159,centroid,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,175,District,Rae Bareli,LGD,9,158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.203741,81.190943,centroid,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -LGD,176,District,Rampur,LGD,9,136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.809845,79.115097,centroid,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -LGD,177,District,Saharanpur,LGD,9,132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.951033,77.546779,centroid,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -LGD,659,District,Sambhal,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.451892,78.558077,centroid,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -LGD,178,District,Sant Kabir Nagar,LGD,9,186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.775547,83.027224,centroid,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -LGD,180,District,Shahjahanpur,LGD,9,152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.950761,79.822072,centroid,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -LGD,660,District,Shamli,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.500323,77.282363,centroid,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 -LGD,181,District,Shrawasti,LGD,9,181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.718462,81.903444,centroid,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -LGD,182,District,Siddharthnagar,LGD,9,184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.270196,82.873251,centroid,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -LGD,183,District,Sitapur,LGD,9,154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.517096,80.852222,centroid,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -LGD,184,District,Sonbhadra,LGD,9,200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.407995,83.051909,centroid,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -LGD,185,District,Sultanpur,LGD,9,179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.261948,82.193868,centroid,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -LGD,186,District,Unnao,LGD,9,156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.609367,80.560562,centroid,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -LGD,187,District,Varanasi,LGD,9,197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.388275,82.913960,centroid,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -LGD,664,District,Alipurduar,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.632685,89.463034,centroid,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -LGD,305,District,Bankura,LGD,19,339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.139199,87.136273,centroid,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,307,District,Birbhum,LGD,19,334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.954375,87.663303,centroid,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,308,District,Cooch Behar,LGD,19,329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.292614,89.347816,centroid,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,310,District,Dakshin Dinajpur,LGD,19,331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.367223,88.575495,centroid,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,309,District,Darjeeling,LGD,19,327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.850567,88.262039,centroid,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,312,District,Hooghly,LGD,19,338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.884920,88.076193,centroid,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,313,District,Howrah,LGD,19,341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.521490,88.063397,centroid,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,314,District,Jalpaiguri,LGD,19,328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.682626,88.763845,centroid,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,703,District,Jhargram,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.363242,86.955347,centroid,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,702,District,Kalimpong,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.034545,88.630890,centroid,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -LGD,315,District,Kolkata,LGD,19,342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.526744,88.356008,centroid,88.233628,22.452029,88.461078,22.618825,SOI_Districts,2023-12-11 -LGD,316,District,Malda,LGD,19,332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.136916,88.090580,centroid,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,319,District,Murshidabad,LGD,19,333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.162777,88.230649,centroid,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,320,District,Nadia,LGD,19,336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.479814,88.516695,centroid,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,303,District,North 24 Parganas,LGD,19,337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.727142,88.730133,centroid,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,704,District,Paschim Bardhaman,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.636453,87.199152,centroid,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,318,District,Paschim Medinipur,LGD,19,344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.439193,87.417304,centroid,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,306,District,Purba Bardhaman,LGD,19,335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.356167,87.963711,centroid,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,317,District,Purba Medinipur,LGD,19,345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.031560,87.772887,centroid,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,321,District,Purulia,LGD,19,340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.276707,86.421546,centroid,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,304,District,South 24 Parganas,LGD,19,343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.057938,88.552900,centroid,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,311,District,Uttar Dinajpur,LGD,19,330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.845938,88.106307,interior_grid,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,2925,Block,Aali,LGD,360,2925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,6087,Block,Aalo Hq,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,7346,Block,Aamabeda,LGD,381,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,7146,Block,Aau,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,6612,Block,Abapura,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,3728,Block,Abdasa,LGD,449,3728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,6319,Block,Abdullapurmet,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,3331,Block,Abhanpur,LGD,387,3331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,238,Block,Abohar,LGD,651,238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -LGD,1750,Block,Aboi,LGD,247,1750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,7600,Block,Abrama,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,595,Block,Abu Road,LGD,115,595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -LGD,4004,Block,Achalpur,LGD,468,4004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,4579,Block,Achampet,LGD,694,4579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,4981,Block,Achanta,LGD,523,4981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,6518,Block,Adajan,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,393,Block,Adampur,LGD,63,393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -LGD,7192,Block,Adampur,LGD,34,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -LGD,1032,Block,Adapur,LGD,213,1032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,7571,Block,Adarsh Nagar,LGD,80,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 -LGD,6304,Block,Adavidevulapalli,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,7255,Block,Adbhar,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,6310,Block,Adda Guduru,LGD,697,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,4586,Block,Addakal,LGD,512,4586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,5112,Block,Addanki,LGD,517,5112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,4887,Block,Addateegala,LGD,791,4887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7024,Block,Adhartal,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,1456,Block,Adhaura,LGD,200,1456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,6345,Block,Adibadri,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,6221,Block,Adilabad Rural,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,4306,Block,Adilabad Urban,LGD,501,4306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,2752,Block,Adityapur(Gamharia),LGD,341,2752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,7334,Block,Adokgre,LGD,656,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 -LGD,5271,Block,Adoni,LGD,511,5271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,7563,Block,Adoni-2,LGD,511,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5683,Block,Adoor,LGD,564,5683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -LGD,5581,Block,Afzalpur,LGD,538,5581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,5354,Block,Agali,LGD,754,5354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7452,Block,Agalpur,LGD,345,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,2006,Block,Agamoni,LGD,285,2006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,3518,Block,Agar,LGD,667,3518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -LGD,5884,Block,Agastheeswaram,LGD,575,5884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -LGD,5626,Block,Agatti,LGD,553,5626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,1771,Block,Aghunato,LGD,251,1771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,1432,Block,Agiaon,LGD,193,1432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,5005,Block,Agiripalli,LGD,748,5005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,766,Block,Agra,LGD,118,766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -LGD,4062,Block,Aheri,LGD,475,4062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,7331,Block,Ahiwara,LGD,378,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -LGD,4228,Block,Ahmadpur,LGD,481,4228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,6856,Block,Ahmedgarh,LGD,737,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -LGD,586,Block,Ahore,LGD,104,586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,3921,Block,Ahwa,LGD,444,3921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -LGD,1904,Block,Aibawk,LGD,261,1904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -LGD,4933,Block,Ainavilli,LGD,747,4933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1781,Block,Aitepyong,LGD,250,1781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,6810,Block,Ajas,LGD,623,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -LGD,3435,Block,Ajaygarh,LGD,420,3435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,7241,Block,Ajgarbahar,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,6877,Block,Ajitmal,LGD,122,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -LGD,7078,Block,Ajjampura,LGD,532,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,607,Block,Ajmer,LGD,86,607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,255,Block,Ajnala,LGD,27,255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -LGD,4292,Block,Ajra,LGD,480,4292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,3278,Block,Akaltara,LGD,379,3278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,845,Block,Akbarpur,LGD,156,845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -LGD,1519,Block,Akbarpur,LGD,210,1519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,910,Block,Akbarpur,LGD,121,910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -LGD,7524,Block,Akberpet-Bhoompally,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,78,Block,Akhnoor,LGD,5,78,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,4975,Block,Akividu,LGD,523,4975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,4254,Block,Akkalkot,LGD,496,4254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,3950,Block,Akkalkuwa,LGD,486,3950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -LGD,6285,Block,Akkannapet,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,680,Block,Aklera,LGD,105,680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,3991,Block,Akola,LGD,467,3991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -LGD,4201,Block,Akole,LGD,466,4201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,1472,Block,Akorhi Gola,LGD,215,1472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,3989,Block,Akot,LGD,467,3989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -LGD,3951,Block,Akrani,LGD,486,3951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -LGD,1774,Block,Akuhaito,LGD,251,1774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,1768,Block,Akuluto,LGD,251,1768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,4617,Block,Alair,LGD,697,4617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,1169,Block,Alamnagar,LGD,205,1169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,6900,Block,Alampur,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,4612,Block,Alampur,LGD,695,4612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,4925,Block,Alamuru,LGD,747,4925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5580,Block,Aland,LGD,538,5580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,5704,Block,Alandur,LGD,568,5704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,5824,Block,Alangudi,LGD,582,5824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,5875,Block,Alangulam,LGD,733,5875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,5951,Block,Alathur,LGD,581,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -LGD,5651,Block,Alathur,LGD,563,5651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -LGD,1322,Block,Alauli,LGD,202,1322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -LGD,2715,Block,Albert Ekka(Jari),LGD,331,2715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,6409,Block,Alewa,LGD,65,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -LGD,2106,Block,Algapur,LGD,289,2106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -LGD,4177,Block,Alibag,LGD,491,4177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,1007,Block,Aliganj,LGD,138,1007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -LGD,7371,Block,Aligarh,LGD,116,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,1187,Block,Alinagar,LGD,195,1187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,2173,Block,Alipurduar - I,LGD,664,2173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -LGD,2174,Block,Alipurduar - II,LGD,664,2174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -LGD,3713,Block,Alirajpur,LGD,639,3713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -LGD,4470,Block,Alladurg,LGD,513,4470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,5298,Block,Allagadda,LGD,755,5298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,890,Block,Allahabad,LGD,120,890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,6267,Block,Allapalli,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,908,Block,Allapur,LGD,121,908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -LGD,4940,Block,Allavaram,LGD,747,4940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5167,Block,Allur,LGD,515,5167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,7123,Block,Almel,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,330,Block,Almora,LGD,45,330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,7081,Block,Alnavar,LGD,536,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,1759,Block,Alongkima,LGD,246,1759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,7528,Block,Aloor,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,6809,Block,Aloosa,LGD,623,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -LGD,3502,Block,Alot,LGD,423,3502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,5274,Block,Alur,LGD,511,5274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5557,Block,Alur,LGD,539,5557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,5658,Block,Aluva,LGD,555,5658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -LGD,6328,Block,Alwal,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,499,Block,Alwar,LGD,87,499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,5361,Block,Amadagur,LGD,754,5361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4798,Block,Amadalavalasa,LGD,519,4798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,1836,Block,Amahator,LGD,614,1836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,4941,Block,Amalapuram,LGD,747,4941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3969,Block,Amalner,LGD,478,3969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,4563,Block,Amangal,LGD,518,4563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,3439,Block,Amanganj,LGD,420,3439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,5351,Block,Amarapuram,LGD,754,5351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5052,Block,Amaravathi,LGD,751,5052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6290,Block,Amarchintha,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,7122,Block,Amargarh,LGD,737,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -LGD,6867,Block,Amariya,LGD,173,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -LGD,3468,Block,Amarpatan,LGD,784,3468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,6695,Block,Amarpur,LGD,654,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -LGD,1346,Block,Amarpur,LGD,190,1346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,5086,Block,Amarthalur,LGD,750,5086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3648,Block,Amarwara,LGD,399,3648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,1499,Block,Amas,LGD,196,1499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,148,Block,Amb,LGD,26,148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,2768,Block,Ambabhona,LGD,347,2768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,4129,Block,Ambad,LGD,479,4129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,3310,Block,Ambagarh Chouki,LGD,761,3310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,3385,Block,Ambah,LGD,417,3385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,4935,Block,Ambajipeta,LGD,747,4935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,359,Block,Ambala,LGD,58,359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -LGD,6406,Block,Ambala Cantonment,LGD,58,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -LGD,5674,Block,Ambalappuzha,LGD,554,5674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -LGD,4170,Block,Ambarnath,LGD,497,4170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -LGD,5878,Block,Ambasamudram,LGD,592,5878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,6697,Block,Ambassa,LGD,269,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -LGD,5700,Block,Ambattur,LGD,568,5700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,4188,Block,Ambegaon,LGD,490,4188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,4225,Block,Ambejogai,LGD,470,4225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,547,Block,Amber,LGD,102,547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,4502,Block,Amberpet,LGD,507,4502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,7552,Block,Ambika,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,3247,Block,Ambikapur,LGD,389,3247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,5719,Block,Ambur,LGD,732,5719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -LGD,1157,Block,Amdabad,LGD,201,1157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,2322,Block,Amdanga,LGD,303,2322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,6276,Block,Ameenpur,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,4497,Block,Ameerpet,LGD,507,4497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,641,Block,Amet,LGD,112,641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,914,Block,Amethi,LGD,640,914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -LGD,4047,Block,Amgaon,LGD,476,4047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,2072,Block,Amguri,LGD,300,2072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -LGD,5620,Block,Amini,LGD,553,5620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,7161,Block,Aminjikarai,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,3736,Block,Amirgadh,LGD,441,3736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,3605,Block,Amla,LGD,394,3605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,1998,Block,Amlarem,LGD,275,1998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 -LGD,7307,Block,Amlipadar,LGD,645,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -LGD,222,Block,Amloh,LGD,30,222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -LGD,1261,Block,Amnour,LGD,218,1261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,3914,Block,Amod,LGD,442,3914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,1138,Block,Amour,LGD,214,1138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,4578,Block,Amrabad,LGD,694,4578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,2574,Block,Amrapara,LGD,337,2574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -LGD,4009,Block,Amravati,LGD,468,4009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,3843,Block,Amreli,LGD,439,3843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,7432,Block,Amreli-City,LGD,439,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,831,Block,Amritpur,LGD,141,831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -LGD,256,Block,Amritsar -I,LGD,27,256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -LGD,257,Block,Amritsar- II,LGD,27,257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -LGD,730,Block,Amroha,LGD,154,730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -LGD,2400,Block,Amta - I,LGD,313,2400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,2399,Block,Amta - II,LGD,313,2399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,5964,Block,Anaicut,LGD,595,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -LGD,6643,Block,Anaimalai,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,4871,Block,Anakapalli,LGD,744,4871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2854,Block,Anandapur,LGD,361,2854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,4863,Block,Anandapuram,LGD,520,4863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,6530,Block,Anand City,LGD,440,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,2734,Block,Anandpur,LGD,343,2734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,6061,Block,Anandpuri,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,262,Block,Anandpur Sahib,LGD,42,262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -LGD,3864,Block,Anand Rural,LGD,440,3864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,5330,Block,Anantapur Rural,LGD,502,5330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,7426,Block,Anantapur Urban,LGD,502,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,6302,Block,Ananthagiri,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,4845,Block,Ananthagiri,LGD,745,4845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5173,Block,Ananthasagaram,LGD,515,5173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,55,Block,Anantnag,LGD,1,55,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,6822,Block,Anantnag East (Mattan),LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,4917,Block,Anaparthi,LGD,505,4917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,6662,Block,Anchetty,LGD,577,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,2272,Block,Andal,LGD,704,2272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,1243,Block,Andar,LGD,222,1243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,7179,Block,Andheri,LGD,483,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -LGD,7140,Block,Andhi,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,1096,Block,Andhratharhi,LGD,206,1096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,5983,Block,Andimadam,LGD,610,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -LGD,5846,Block,Andipatti,LGD,588,5846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -LGD,4479,Block,Andole,LGD,691,4479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,5627,Block,Andrott,LGD,553,5627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,5545,Block,Anekal,LGD,525,5545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -LGD,1720,Block,Anelih,LGD,230,1720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 -LGD,2686,Block,Angara,LGD,339,2686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,1754,Block,Angjangyang,LGD,247,1754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,121,Block,Ani,LGD,20,121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,1718,Block,Anini,LGD,230,1718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 -LGD,3557,Block,Anjad,LGD,393,3557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,4003,Block,Anjangaon Surji,LGD,468,4003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,3725,Block,Anjar,LGD,449,3725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,3868,Block,Anklav,LGD,440,3868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,3918,Block,Anklesvar,LGD,442,3918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,5484,Block,Ankola,LGD,550,5484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,6268,Block,Annapureddypalli,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,7080,Block,Annigeri,LGD,536,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,5955,Block,Annur,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,671,Block,Anta,LGD,89,671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,3353,Block,Antagarh,LGD,381,3353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,7362,Block,Antali,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,6214,Block,Anthergaon,LGD,682,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,5969,Block,Anthiyur,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,3011,Block,Anugola,LGD,344,3011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,5165,Block,Anumasamudrampeta,LGD,515,5165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,4660,Block,Anumula,LGD,514,4660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,462,Block,Anupgarh,LGD,100,462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,3694,Block,Anuppur,LGD,390,3694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -LGD,748,Block,Anupshahr,LGD,134,748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -LGD,786,Block,Aonla,LGD,130,786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -LGD,1793,Block,Aquqhnaqua,LGD,764,1793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,6659,Block,Arain,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,7403,Block,Arakera,LGD,546,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,5715,Block,Arakonam,LGD,731,5715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -LGD,4844,Block,Araku Valley,LGD,745,4844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2340,Block,Arambag,LGD,312,2340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,3330,Block,Arang,LGD,387,3330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,5721,Block,Arani,LGD,593,5721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,5826,Block,Aranthangi,LGD,582,5826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,1116,Block,Araria,LGD,188,1116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,5768,Block,Aravakurichi,LGD,576,5768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -LGD,5716,Block,Arcot,LGD,731,5716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -LGD,4099,Block,Ardhapur,LGD,485,4099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,5116,Block,Ardhaveedu,LGD,790,5116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1045,Block,Areraj,LGD,213,1045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,7553,Block,Areth,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,1377,Block,Ariari,LGD,219,1377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -LGD,6795,Block,Aripal,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,5787,Block,Ariyalur,LGD,610,5787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -LGD,7253,Block,Arjunda,LGD,646,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -LGD,4050,Block,Arjuni Morgaon,LGD,476,4050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,5558,Block,Arkalgud,LGD,539,5558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,158,Block,Arki,LGD,25,158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,4360,Block,Armoor,LGD,516,4360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,4053,Block,Armori,LGD,475,4053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,6740,Block,Arnas,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,4088,Block,Arni,LGD,500,4088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,6717,Block,Arnia,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,700,Block,Arnod,LGD,629,700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -LGD,3682,Block,Aron,LGD,406,3682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,1422,Block,Arrah,LGD,193,1422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,2389,Block,Arsha,LGD,321,2389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,5555,Block,Arsikere,LGD,539,5555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,6922,Block,Arthuna,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,5853,Block,Aruppukkottai,LGD,597,5853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,4017,Block,Arvi,LGD,498,4017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,1542,Block,Arwal,LGD,611,1542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -LGD,1361,Block,Asarganj,LGD,207,1361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,6512,Block,Asarva,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,3686,Block,Ashoknagar,LGD,391,3686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,3584,Block,Ashta,LGD,427,3584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,4215,Block,Ashti,LGD,470,4215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,4015,Block,Ashti,LGD,498,4015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,4319,Block,Asifabad,LGD,699,4319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,4506,Block,Asif Nagar,LGD,507,4506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,3078,Block,Asika,LGD,354,3078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,627,Block,Asind,LGD,92,627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,6055,Block,Asnawar,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,5275,Block,Aspari,LGD,511,5275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,647,Block,Aspur,LGD,99,647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,373,Block,Assandh,LGD,67,373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,6752,Block,Assar,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,3060,Block,Astaranga,LGD,369,3060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,1385,Block,Asthawan,LGD,209,1385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,1770,Block,Asuto,LGD,251,1770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,4728,Block,Aswapuram,LGD,690,4728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,4749,Block,Aswaraopeta,LGD,690,4749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,873,Block,Atarra,LGD,128,873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -LGD,5050,Block,Atchampet,LGD,751,5050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4878,Block,Atchuthapuram,LGD,744,4878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6457,Block,Ateli,LGD,69,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -LGD,3391,Block,Ater,LGD,395,3391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,2950,Block,Athagada,LGD,350,2950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,7116,Block,Athani,LGD,285,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,1853,Block,Athibung,LGD,613,1853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -LGD,4694,Block,Athmakur,LGD,686,4694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,1415,Block,Athmalgola,LGD,212,1415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,3017,Block,Athmallik,LGD,344,3017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,3599,Block,Athner,LGD,394,3599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,5434,Block,Athni,LGD,527,5434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,71,Block,Atholi (Paddar),LGD,620,71,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,5994,Block,Athoor,LGD,572,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,4998,Block,Atlapragada Konduru,LGD,749,4998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5227,Block,Atlur,LGD,504,5227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,5164,Block,Atmakur,LGD,515,5164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5322,Block,Atmakur,LGD,502,5322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,4592,Block,Atmakur,LGD,693,4592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,5265,Block,Atmakur,LGD,755,5265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4626,Block,Atmakur (M),LGD,697,4626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,4622,Block,Atmakur (S),LGD,696,4622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,1773,Block,Atoizu,LGD,251,1773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,4300,Block,Atpadi,LGD,493,4300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,754,Block,Atrauli,LGD,119,754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -LGD,4919,Block,Atreyapuram,LGD,747,4919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1493,Block,Atri,LGD,196,1493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,673,Block,Atru,LGD,89,673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,2769,Block,Attabira,LGD,347,2769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,4973,Block,Attili,LGD,523,4973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,5743,Block,Attur,LGD,584,5743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,4113,Block,Aundha (Nagnath),LGD,477,4113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -LGD,7278,Block,Aundhi,LGD,761,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,5456,Block,Aurad,LGD,529,5456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,1207,Block,Aurai,LGD,208,1207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,999,Block,Aurai,LGD,179,999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -LGD,842,Block,Auraiya,LGD,122,842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -LGD,1481,Block,Aurangabad,LGD,189,1481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,4232,Block,Ausa,LGD,481,4232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,2277,Block,Ausgram - I,LGD,306,2277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2276,Block,Ausgram - II,LGD,306,2276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,134,Block,Aut,LGD,22,134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,6621,Block,Avadi,LGD,589,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,5037,Block,Avanigadda,LGD,510,5037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,6510,Block,Avantipur Barodia,LGD,430,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -LGD,5903,Block,Avinashi,LGD,634,5903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,5828,Block,Avudayarkoil,LGD,582,5828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,49,Block,Awantipora,LGD,11,49,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,7163,Block,Ayanavaram,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,966,Block,Azamgarh,LGD,123,966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,1148,Block,Azamnagar,LGD,201,1148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,2127,Block,Azara,LGD,618,2127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -LGD,258,Block,Baba Bakala,LGD,27,258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -LGD,6454,Block,Babain St,LGD,68,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -LGD,7069,Block,Babaleshwar,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,872,Block,Baberu,LGD,128,872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -LGD,3840,Block,Babra,LGD,439,3840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,1088,Block,Babubarhi,LGD,206,1088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,4080,Block,Babulgaon,LGD,500,4080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,4674,Block,Bachannapet,LGD,689,4674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,1310,Block,Bachhwara,LGD,191,1310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,6315,Block,Bachupally,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,6998,Block,Badagaon (Dhasan),LGD,434,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,3431,Block,Bada Malhera,LGD,398,3431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,2946,Block,Badamba,LGD,350,2946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,5446,Block,Badami,LGD,524,5446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,4820,Block,Badangi,LGD,521,4820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,7573,Block,Badarpur,LGD,670,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 -LGD,2102,Block,Badarpur,LGD,293,2102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -LGD,3412,Block,Badarwas,LGD,432,3412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,2882,Block,Badasahi,LGD,365,2882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,162,Block,Baddi,LGD,25,162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,6509,Block,Bade Bacheli,LGD,376,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -LGD,3356,Block,Baderajpur,LGD,643,3356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -LGD,6903,Block,Badgaon,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,403,Block,Badhra,LGD,701,403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -LGD,3595,Block,Badi,LGD,421,3595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,6407,Block,Badkhal,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,982,Block,Badlapur,LGD,152,982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -LGD,6444,Block,Badli,LGD,64,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -LGD,7570,Block,Badli,LGD,80,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 -LGD,3514,Block,Badnagar,LGD,435,3514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,4128,Block,Badnapur,LGD,479,4128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,3532,Block,Badnawar,LGD,403,3532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,6066,Block,Badnor,LGD,774,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3517,Block,Badod,LGD,667,3517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -LGD,3383,Block,Badoda,LGD,431,3383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -LGD,6421,Block,Badshahpur St,LGD,62,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,2328,Block,Baduria,LGD,303,2328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,5210,Block,Badvel,LGD,504,5210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,3623,Block,Badwara,LGD,413,3623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,186,Block,Bagachnogi,LGD,22,186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,1019,Block,Bagaha,LGD,211,1019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,5447,Block,Bagalkot,LGD,524,5447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,2139,Block,Baganpara,LGD,616,2139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -LGD,3844,Block,Bagasara,LGD,439,3844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,7347,Block,Bagbahar,LGD,380,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,3343,Block,Bagbahra,LGD,385,3343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -LGD,2316,Block,Bagda,LGD,303,2316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,5598,Block,Bagepalli,LGD,630,5598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,323,Block,Bageshwar,LGD,46,323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -LGD,232,Block,Bagha Purana,LGD,38,232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -LGD,2020,Block,Baghbor,LGD,280,2020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -LGD,1977,Block,Baghmara,LGD,277,1977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -LGD,2582,Block,Baghmara-Cum-Katras,LGD,325,2582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,736,Block,Baghpat,LGD,124,736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -LGD,1783,Block,Baghty,LGD,250,1783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,3255,Block,Bagicha,LGD,380,3255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,653,Block,Bagidora,LGD,88,653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,4145,Block,Baglan,LGD,487,4145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,3529,Block,Bagli,LGD,402,3529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,2392,Block,Bagmundi,LGD,321,2392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,2408,Block,Bagnan - I,LGD,313,2408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,2409,Block,Bagnan - II,LGD,313,2409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,2541,Block,Bagodar,LGD,329,2541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,589,Block,Bagora,LGD,104,589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,6588,Block,Bagra Circle,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,2005,Block,Bagribari,LGD,294,2005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -LGD,7174,Block,Bagshad,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,6341,Block,Bagwalipokhar,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,770,Block,Bah,LGD,118,770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -LGD,1125,Block,Bahadurganj,LGD,203,1125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -LGD,408,Block,Bahadurgarh,LGD,64,408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -LGD,6978,Block,Bahadurpur,LGD,391,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,1189,Block,Bahadurpur,LGD,195,1189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,4508,Block,Bahadurpura,LGD,507,4508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,2859,Block,Bahalda,LGD,365,2859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,6432,Block,Bahal St,LGD,59,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -LGD,7500,Block,Bahanaga,LGD,346,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,2614,Block,Baharagora,LGD,327,2614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,6072,Block,Bahari,LGD,433,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,1192,Block,Baheri,LGD,195,1192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,784,Block,Baheri,LGD,130,784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -LGD,6479,Block,Bahin St,LGD,619,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -LGD,3625,Block,Bahoriband,LGD,413,3625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,5912,Block,Bahour,LGD,600,5912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -LGD,921,Block,Bahraich,LGD,125,921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -LGD,7134,Block,Bahrawanda,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,6707,Block,Bahu,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,3674,Block,Baihar,LGD,392,3674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,112,Block,Baijnath,LGD,18,112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,7135,Block,Baijupara,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,3232,Block,Baikunthpur,LGD,384,3232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -LGD,1228,Block,Baikunthpur,LGD,197,1228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,5440,Block,Bailahongala,LGD,527,5440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,7066,Block,Bainduru,LGD,549,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -LGD,6534,Block,Bairad,LGD,432,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,5423,Block,Baireddipalle,LGD,503,5423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,1063,Block,Bairgania,LGD,221,1063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,1029,Block,Bairia,LGD,211,1029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,980,Block,Bairia,LGD,126,980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -LGD,1139,Block,Baisa,LGD,214,1139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,1140,Block,Baisi,LGD,214,1140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,6071,Block,Bajag,LGD,404,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -LGD,2024,Block,Bajali (Pt),LGD,739,2024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -LGD,6544,Block,Bajengdoba,LGD,656,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 -LGD,6913,Block,Bajju,LGD,93,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,3505,Block,Bajna,LGD,423,3505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,1075,Block,Bajpatti,LGD,221,1075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,348,Block,Bajpur,LGD,56,348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,6666,Block,Bakani,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,3364,Block,Bakavand,LGD,374,3364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,1316,Block,Bakhri,LGD,191,1316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,1414,Block,Bakhtiarpur,LGD,212,1414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,820,Block,Bakshi Ka Talab,LGD,162,820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -LGD,219,Block,Balachaur,LGD,40,219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -LGD,2345,Block,Balagarh,LGD,312,2345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,3672,Block,Balaghat,LGD,392,3672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,6778,Block,Balakote,LGD,10,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -LGD,4517,Block,Balanagar,LGD,700,4517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,4557,Block,Balanagar,LGD,512,4557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,3142,Block,Balangir,LGD,345,3142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,6323,Block,Balapur,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,3990,Block,Balapur,LGD,467,3990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -LGD,2393,Block,Balarampur,LGD,321,2393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,3871,Block,Balasinor,LGD,669,3871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,5188,Block,Balayapalli,LGD,752,5188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3421,Block,Baldeogarh,LGD,434,3421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,6868,Block,Baldirai,LGD,185,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -LGD,131,Block,Baldwara,LGD,22,131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,6564,Block,Balemu Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,6049,Block,Balesar,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,7510,Block,Baleshwar,LGD,346,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,6374,Block,Balganga,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,7360,Block,Balghat,LGD,108,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,6947,Block,Balh,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,605,Block,Bali,LGD,111,605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,1319,Block,Balia,LGD,191,1319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,3042,Block,Balianta,LGD,362,3042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,2893,Block,Baliapal,LGD,346,2893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,2586,Block,Baliapur,LGD,325,2586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,135,Block,Bali Chowki,LGD,22,135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,3119,Block,Baliguda,LGD,359,3119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,2014,Block,Balijana,LGD,287,2014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -LGD,1592,Block,Balijan Adc,LGD,237,1592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,4815,Block,Balijipeta,LGD,743,4815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2943,Block,Balikuda,LGD,355,2943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,3043,Block,Balipatna,LGD,362,3043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,7468,Block,Balisankara,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,4361,Block,Balkonda,LGD,516,4361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,426,Block,Ballabgarh,LGD,60,426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,6452,Block,Ballah St,LGD,67,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,5500,Block,Ballari,LGD,528,5500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -LGD,4074,Block,Ballarpur,LGD,473,4074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,978,Block,Ballia,LGD,126,978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -LGD,5105,Block,Ballikurava,LGD,517,5105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,2403,Block,Bally Jagachha,LGD,313,2403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,4597,Block,Balmoor,LGD,694,4597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,3321,Block,Balod,LGD,646,3321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -LGD,3279,Block,Baloda,LGD,379,3279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,3326,Block,Balodabazar,LGD,644,3326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,3237,Block,Balrampur,LGD,649,3237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,925,Block,Balrampur,LGD,127,925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -LGD,1146,Block,Balrampur,LGD,201,1146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,6442,Block,Balsamand St,LGD,63,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -LGD,2640,Block,Balumath,LGD,335,2640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,2204,Block,Balurghat,LGD,310,2204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,2215,Block,Bamangola,LGD,316,2215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,527,Block,Bamanwas,LGD,113,527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,7461,Block,Bamara,LGD,371,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,1586,Block,Bameng Adc,LGD,231,1586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,7265,Block,Bamhnidih,LGD,379,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,7564,Block,Bamhori,LGD,421,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,7112,Block,Bamor,LGD,417,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,3678,Block,Bamori,LGD,406,3678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,6102,Block,Bana Eac,LGD,787,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,5288,Block,Banaganapalli,LGD,755,5288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3054,Block,Banapur,LGD,362,3054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,7118,Block,Banarhat,LGD,314,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,3010,Block,Banarpal,LGD,344,3010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,3446,Block,Banda,LGD,425,3446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,871,Block,Banda,LGD,128,871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -LGD,7420,Block,Bandari,LGD,425,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,7353,Block,Bande,LGD,381,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,6603,Block,Banderdewa Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,2730,Block,Bandgaon,LGD,343,2730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,3482,Block,Bandhavgarh,LGD,436,3482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -LGD,3205,Block,Bandhugaon,LGD,363,3205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,5283,Block,Bandi Atmakur,LGD,755,5283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7210,Block,Bandikui,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,41,Block,Bandipora,LGD,623,41,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -LGD,4509,Block,Bandlaguda,LGD,507,4509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,1210,Block,Bandra,LGD,208,1210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,2830,Block,Banei,LGD,373,2830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,2137,Block,Banekuchi,LGD,298,2137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -LGD,630,Block,Banera,LGD,92,630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,5993,Block,Banga,LGD,40,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -LGD,149,Block,Bangana,LGD,26,149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,6356,Block,Bangapani,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,5593,Block,Bangarapet,LGD,542,5593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -LGD,6160,Block,Bangarmau,LGD,186,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -LGD,5429,Block,Bangarupalem,LGD,503,5429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,2875,Block,Bangiriposi,LGD,365,2875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,3150,Block,Bangomunda,LGD,345,3150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,29,Block,Bani,LGD,7,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,1252,Block,Baniapur,LGD,218,1252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,66,Block,Banihal,LGD,621,66,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,120,Block,Banjar,LGD,20,120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,1035,Block,Banjaria,LGD,213,1035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1350,Block,Banka,LGD,190,1350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,1037,Block,Bankatwa,LGD,213,1037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1500,Block,Banke Bazar,LGD,196,1500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,3619,Block,Bankhedi,LGD,409,3619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,2948,Block,Banki,LGD,350,2948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,2361,Block,Bankura - I,LGD,305,2361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,2362,Block,Bankura - II,LGD,305,2362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,1180,Block,Banma Itahri,LGD,216,1180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,1128,Block,Banmankhi,LGD,214,1128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,2727,Block,Bano,LGD,342,2727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,3926,Block,Bansda,LGD,453,3926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -LGD,979,Block,Bansdih,LGD,126,979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -LGD,952,Block,Bansgaon,LGD,148,952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -LGD,934,Block,Bansi,LGD,182,934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -LGD,2206,Block,Bansihari,LGD,310,2206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,2726,Block,Bansjor,LGD,342,2726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,7493,Block,Banspal,LGD,361,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,500,Block,Bansur,LGD,782,500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,4383,Block,Banswada,LGD,685,4383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,652,Block,Banswara,LGD,88,652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,2911,Block,Banta,LGD,348,2911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -LGD,5019,Block,Bantumilli,LGD,510,5019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,5562,Block,Bantval,LGD,534,5562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,4532,Block,Bantwaram,LGD,698,4532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,6047,Block,Baori,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,6048,Block,Bap,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5093,Block,Bapatla,LGD,750,5093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6916,Block,Bapini,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,6462,Block,Bapoli,LGD,71,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -LGD,5004,Block,Bapulapadu,LGD,510,5004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,891,Block,Bara,LGD,120,891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,2269,Block,Barabani,LGD,704,2269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,2394,Block,Barabazar,LGD,321,2394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,1510,Block,Barachatti,LGD,196,1510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,2765,Block,Baragada,LGD,347,2765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,2812,Block,Baragaon,LGD,373,2812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,1349,Block,Barahat,LGD,190,1349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,1365,Block,Barahiya,LGD,204,1365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -LGD,3594,Block,Baraily,LGD,421,3594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,6377,Block,Barakot,LGD,48,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -LGD,5935,Block,Barama,LGD,616,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -LGD,4199,Block,Baramati,LGD,490,4199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,3271,Block,Baramkela,LGD,763,3271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,35,Block,Baramulla,LGD,3,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,672,Block,Baran,LGD,89,672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,2951,Block,Barang,LGD,350,2951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,7361,Block,Barapal,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,360,Block,Barara,LGD,58,360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -LGD,1153,Block,Barari,LGD,201,1153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,2325,Block,Barasat - I,LGD,303,2325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,2326,Block,Barasat - II,LGD,303,2326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,1226,Block,Barauli,LGD,197,1226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,1312,Block,Barauni,LGD,191,1312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,735,Block,Baraut,LGD,124,735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -LGD,2135,Block,Barbhag,LGD,298,2135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -LGD,1372,Block,Barbigha,LGD,219,1372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -LGD,2834,Block,Barbil,LGD,361,2834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,6798,Block,Barbugh Imam Sahib,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -LGD,5610,Block,Bardez,LGD,551,5610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -LGD,2500,Block,Bardiha,LGD,328,2500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,3940,Block,Bardoli,LGD,459,3940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,787,Block,Bareilly,LGD,130,787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -LGD,6329,Block,Bargarh,LGD,328,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,7423,Block,Bargawan,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,3665,Block,Barghat,LGD,428,3665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,6613,Block,Bargur,LGD,577,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,1417,Block,Barh,LGD,212,1417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,2567,Block,Barhait,LGD,340,2567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,961,Block,Barhaj,LGD,137,961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -LGD,1437,Block,Barhampur,LGD,194,1437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,1423,Block,Barhara,LGD,193,1423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,1129,Block,Barhara,LGD,214,1129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,1231,Block,Barharia,LGD,222,1231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,2572,Block,Barharwa,LGD,340,2572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,1528,Block,Barhat,LGD,198,1528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,3622,Block,Barhi,LGD,413,3622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,2645,Block,Barhi,LGD,332,2645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,516,Block,Bari,LGD,98,516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,2985,Block,Bari,LGD,356,2985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,1357,Block,Bariarpur,LGD,207,1357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,6596,Block,Bari Basip Circle,LGD,239,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,6720,Block,Bari Brahamana,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -LGD,2872,Block,Baripada,LGD,365,2872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,1620,Block,Baririjo Circle,LGD,241,1620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,664,Block,Bari Sadri,LGD,95,664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,2641,Block,Bariyatu,LGD,335,2641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,2363,Block,Barjora,LGD,305,2363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,2657,Block,Barkagaon,LGD,332,2657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,2650,Block,Barkatha,LGD,332,2650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,2134,Block,Barkhetri,LGD,298,2134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -LGD,2801,Block,Barkot,LGD,351,2801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 -LGD,582,Block,Barmer,LGD,90,582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,7131,Block,Barmer Gramin,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,2018,Block,Barnagar (Pt),LGD,280,2018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -LGD,275,Block,Barnala,LGD,605,275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -LGD,7224,Block,Barnala,LGD,113,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,6405,Block,Barnigad,LGD,57,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,102,Block,Baroh,LGD,18,102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,7001,Block,Baroni,LGD,401,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -LGD,2763,Block,Barpali,LGD,347,2763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,7233,Block,Barpali,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,2022,Block,Barpeta,LGD,280,2022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -LGD,2323,Block,Barrackpur - I,LGD,303,2323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,2324,Block,Barrackpur - II,LGD,303,2324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,144,Block,Barsar,LGD,17,144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,4246,Block,Barshi,LGD,496,4246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,3994,Block,Barshitakli,LGD,467,3994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -LGD,1147,Block,Barsoi,LGD,201,1147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,7232,Block,Barsur,LGD,376,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -LGD,2422,Block,Baruipur,LGD,304,2422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,1482,Block,Barun,LGD,189,1482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,1200,Block,Baruraj (Motipur),LGD,208,1200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,2636,Block,Barwadih,LGD,335,2636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,3545,Block,Barwaha,LGD,414,3545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,6440,Block,Barwala,LGD,63,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -LGD,3786,Block,Barwala,LGD,676,3786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -LGD,6460,Block,Barwala St,LGD,70,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -LGD,3554,Block,Barwani,LGD,393,3554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,7372,Block,Basai Nawab,LGD,98,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,6736,Block,Basantgarh,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,2434,Block,Basanti,LGD,304,2434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,1234,Block,Basantpur,LGD,222,1234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,1102,Block,Basantpur,LGD,223,1102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,6205,Block,Basar,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,1636,Block,Basar Adc,LGD,724,1636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 -LGD,5454,Block,Basavakalyan,LGD,529,5454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,5452,Block,Basavana Bagevadi,LGD,530,5452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,515,Block,Baseri,LGD,98,515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,2560,Block,Bashant Rai*,LGD,330,2560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,4535,Block,Basheerabad,LGD,698,4535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,2711,Block,Basia,LGD,331,2711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,2329,Block,Basirhat - I,LGD,303,2329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,2330,Block,Basirhat - II,LGD,303,2330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,2143,Block,Baska,LGD,616,2143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -LGD,3339,Block,Basna,LGD,385,3339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -LGD,3573,Block,Basoda,LGD,437,3573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,28,Block,Basohli,LGD,7,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,1082,Block,Basopatti,LGD,206,1082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,6408,Block,Bass,LGD,792,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -LGD,549,Block,Bassi,LGD,102,549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,7133,Block,Bassi,LGD,95,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,220,Block,Bassi Pathana,LGD,30,220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -LGD,2895,Block,Basta,LGD,346,2895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,3362,Block,Bastanar,LGD,374,3362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,3363,Block,Bastar,LGD,374,3363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,939,Block,Basti,LGD,131,939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -LGD,2915,Block,Basudevpur,LGD,348,2915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -LGD,6334,Block,Basukedar,LGD,54,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -LGD,533,Block,Baswa,LGD,97,533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,7339,Block,Batabari,LGD,278,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,7363,Block,Batadoo,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,203,Block,Batala,LGD,32,203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -LGD,5337,Block,Bathalapalli,LGD,754,5337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,245,Block,Bathinda,LGD,28,245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -LGD,1069,Block,Bathnaha,LGD,221,1069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,3456,Block,Batiyagarh,LGD,400,3456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,6761,Block,Batote,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,3253,Block,Batouli,LGD,389,3253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,1355,Block,Bausi,LGD,190,1355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,3784,Block,Bavla,LGD,438,3784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,415,Block,Bawal,LGD,72,415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,7582,Block,Bawana,LGD,794,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,397,Block,Bawani Khera,LGD,59,397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -LGD,3772,Block,Bayad,LGD,672,3772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,513,Block,Bayana,LGD,91,513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,578,Block,Baytoo,LGD,90,578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,4742,Block,Bayyaram,LGD,688,4742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,4323,Block,Bazarhatnoor,LGD,501,4323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,609,Block,Beawar,LGD,774,609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3758,Block,Becharaji,LGD,451,3758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,4221,Block,Beed,LGD,470,4221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,5391,Block,Beerongi Kothakota,LGD,753,5391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6212,Block,Beerpur,LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,3381,Block,Beerpur,LGD,431,3381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -LGD,5,Block,Beerwah,LGD,2,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,3592,Block,Begamganj,LGD,421,3592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,657,Block,Begun,LGD,95,657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,3035,Block,Begunia,LGD,362,3035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,1314,Block,Begusarai,LGD,191,1314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,701,Block,Behat,LGD,177,701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -LGD,1427,Block,Behea,LGD,193,1427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,493,Block,Behror,LGD,782,493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,4437,Block,Bejjanki,LGD,692,4437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,4317,Block,Bejjur,LGD,699,4317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,4308,Block,Bela,LGD,501,4308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,1489,Block,Belaganj,LGD,196,1489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,5438,Block,Belagavi,LGD,527,5438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,7316,Block,Belargaon,LGD,377,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -LGD,1416,Block,Belchhi,LGD,212,1416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,2244,Block,Beldanga - I,LGD,319,2244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2245,Block,Beldanga - II,LGD,319,2245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,1326,Block,Beldaur,LGD,202,1326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -LGD,7243,Block,Belgahna,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,1352,Block,Belhar,LGD,190,1352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,7489,Block,Bellaguntha,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,5049,Block,Bellamkonda,LGD,751,5049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4350,Block,Bellampally,LGD,684,4350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,6687,Block,Belonia,LGD,271,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -LGD,3147,Block,Belpara,LGD,345,3147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,1072,Block,Belsand,LGD,221,1072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,5563,Block,Beltangadi,LGD,534,5563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,7281,Block,Beltara,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,975,Block,Belthara Road,LGD,126,975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -LGD,5318,Block,Beluguppa,LGD,502,5318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5554,Block,Belur,LGD,539,5554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,3312,Block,Bemetara,LGD,650,3312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,1393,Block,Ben,LGD,209,1393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,2537,Block,Bengabad,LGD,329,2537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,5544,Block,Bengaluru East,LGD,525,5544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -LGD,5542,Block,Bengaluru North,LGD,525,5542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -LGD,5543,Block,Bengaluru South,LGD,525,5543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -LGD,2113,Block,Bengtol,LGD,612,2113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -LGD,1091,Block,Benipatti,LGD,206,1091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,1188,Block,Benipur,LGD,195,1188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,3689,Block,Beohari,LGD,429,3689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -LGD,3580,Block,Berasia,LGD,396,3580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -LGD,2241,Block,Berhampore,LGD,319,2241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,3093,Block,Berhampur,LGD,354,3093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,407,Block,Beri,LGD,64,407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -LGD,318,Block,Berinag,LGD,53,318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,6776,Block,Beri Pattan,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,3315,Block,Berla,LGD,650,3315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,2590,Block,Bermo,LGD,322,2590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,2695,Block,Bero,LGD,339,2695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,5131,Block,Bestavaripeta,LGD,790,5131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,339,Block,Betalghat,LGD,51,339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,1966,Block,Betasing,LGD,663,1966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 -LGD,5279,Block,Bethamcherla,LGD,755,5279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2881,Block,Betnoti,LGD,365,2881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,1028,Block,Bettiah,LGD,211,1028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,3600,Block,Betul,LGD,394,3600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,6989,Block,Betul Nagar,LGD,394,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,3742,Block,Bhabhar,LGD,789,3742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,1453,Block,Bhabua,LGD,200,1453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,3724,Block,Bhachau,LGD,449,3724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,65,Block,Bhaderwah,LGD,4,65,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,662,Block,Bhadesar,LGD,95,662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,3971,Block,Bhadgaon,LGD,478,3971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,997,Block,Bhadohi,LGD,179,997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -LGD,472,Block,Bhadra,LGD,101,472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,4730,Block,Bhadrachalam,LGD,690,4730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,7217,Block,Bhadrajun,LGD,104,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,2914,Block,Bhadrak,LGD,348,2914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -LGD,4070,Block,Bhadravati,LGD,473,4070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,5521,Block,Bhadravati,LGD,547,5521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -LGD,130,Block,Bhadrota,LGD,22,130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,2231,Block,Bhagawangola - I,LGD,319,2231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2232,Block,Bhagawangola - II,LGD,319,2232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2480,Block,Bhagawanpur - I,LGD,317,2480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2479,Block,Bhagawanpur - II,LGD,317,2479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,6747,Block,Bhagwa,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,1308,Block,Bhagwanpur,LGD,191,1308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,6022,Block,Bhagwanpur,LGD,50,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -LGD,1271,Block,Bhagwanpur,LGD,224,1271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,1455,Block,Bhagwanpur,LGD,200,1455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,3552,Block,Bhagwanpura,LGD,414,3552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,1235,Block,Bhagwanpur Hat,LGD,222,1235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,4339,Block,Bhainsa,LGD,680,4339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,3598,Block,Bhainsdehi,LGD,394,3598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,3379,Block,Bhairamgarh,LGD,636,3379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -LGD,3587,Block,Bhairunda,LGD,427,3587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,7328,Block,Bhaisma,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,3244,Block,Bhaiyathan,LGD,648,3244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,7315,Block,Bhakhara,LGD,377,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -LGD,86,Block,Bhalai,LGD,16,86,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,6753,Block,Bhalessa (Gandoh),LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,5455,Block,Bhalki,LGD,529,5455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,6755,Block,Bhalla,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,6561,Block,Bhalukpong Eac,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,6709,Block,Bhalwal,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,4771,Block,Bhamini,LGD,743,4771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4061,Block,Bhamragad,LGD,475,4061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,4039,Block,Bhandara,LGD,471,4039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -LGD,7373,Block,Bhandarej,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,1782,Block,Bhandari,LGD,250,1782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,2513,Block,Bhandaria,LGD,328,2513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,2912,Block,Bhandari Pokhari,LGD,348,2912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -LGD,3406,Block,Bhander,LGD,401,3406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -LGD,2603,Block,Bhandra,LGD,336,2603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -LGD,2418,Block,Bhangar - I,LGD,304,2418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2419,Block,Bhangar - II,LGD,304,2419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,7209,Block,Bhanipura,LGD,96,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,6040,Block,Bhaniyana,LGD,103,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -LGD,333,Block,Bhanoli,LGD,45,333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,937,Block,Bhanpur,LGD,131,937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -LGD,3492,Block,Bhanpura,LGD,416,3492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,7312,Block,Bhanpuri,LGD,374,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,3349,Block,Bhanupratappur,LGD,381,3349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,3820,Block,Bhanvad,LGD,674,3820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -LGD,7482,Block,Bhapur,LGD,367,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,153,Block,Bharari,LGD,15,153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -LGD,6746,Block,Bharath Bagla,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,511,Block,Bharatpur,LGD,91,511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,3231,Block,Bharatpur,LGD,760,3231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,2247,Block,Bharatpur - I,LGD,319,2247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2246,Block,Bharatpur - II,LGD,319,2246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,1114,Block,Bhargama,LGD,188,1114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,92,Block,Bharmour,LGD,16,92,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,2709,Block,Bharno,LGD,331,2709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,7414,Block,Bharoli,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,839,Block,Bharthana,LGD,139,839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -LGD,3916,Block,Bharuch,LGD,442,3916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,7597,Block,Bharuch City,LGD,442,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,147,Block,Bharwain,LGD,26,147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,3325,Block,Bhatapara,LGD,644,3325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,2286,Block,Bhatar,LGD,306,2286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,7276,Block,Bhatgaon,LGD,763,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,7310,Block,Bhatgaon,LGD,648,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,5488,Block,Bhatkal,LGD,550,5488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,4010,Block,Bhatkuli,LGD,468,4010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,2767,Block,Bhatli,LGD,347,2767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,963,Block,Bhatpar Rani,LGD,137,963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -LGD,5089,Block,Bhattiprolu,LGD,750,5089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,88,Block,Bhattiyat,LGD,16,88,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,6436,Block,Bhattukalan St,LGD,61,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -LGD,283,Block,Bhatwari,LGD,57,283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,5750,Block,Bhavani,LGD,573,5750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,3854,Block,Bhavnagar,LGD,443,3854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,7444,Block,Bhavnagar City,LGD,443,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,6855,Block,Bhawanigarh,LGD,43,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -LGD,1130,Block,Bhawanipur,LGD,214,1130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,6939,Block,Bhawarna,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,2496,Block,Bhawnathpur,LGD,328,2496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,2002,Block,Bhawraguri,LGD,294,2002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -LGD,2764,Block,Bheden,LGD,347,2764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,4448,Block,Bheemadevarpalli,LGD,686,4448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,4963,Block,Bheemadole,LGD,748,4963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6228,Block,Bheemaram,LGD,684,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,7541,Block,Bheemaram (20),LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,4364,Block,Bheemgal,LGD,516,4364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,4328,Block,Bheemini,LGD,684,4328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,6223,Block,Bheempur,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,4865,Block,Bheemunipatnam,LGD,520,4865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,7203,Block,Bhella,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,3828,Block,Bhesan,LGD,448,3828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,3549,Block,Bhikangaon,LGD,414,3549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,6853,Block,Bhikhiwind,LGD,609,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -LGD,325,Block,Bhikiasain,LGD,45,325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,4391,Block,Bhiknoor,LGD,685,4391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,7329,Block,Bhilai-3,LGD,378,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -LGD,3764,Block,Bhiloda,LGD,672,3764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,634,Block,Bhilwara,LGD,92,634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,639,Block,Bhim,LGD,112,639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,4984,Block,Bhimavaram,LGD,523,4984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,7299,Block,Bhimbhauri,LGD,650,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,7027,Block,Bhimpur,LGD,394,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,612,Block,Bhinay,LGD,86,612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,3392,Block,Bhind,LGD,395,3392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,6917,Block,Bhinder,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,6994,Block,Bhind Nagar,LGD,395,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,923,Block,Bhinga,LGD,181,923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -LGD,588,Block,Bhinmal,LGD,104,588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,1022,Block,Bhitaha,LGD,211,1022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,3401,Block,Bhitarwar,LGD,407,3401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,911,Block,Bhiti,LGD,121,911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -LGD,4166,Block,Bhiwandi,LGD,497,4166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -LGD,398,Block,Bhiwani,LGD,59,398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -LGD,4036,Block,Bhiwapur,LGD,484,4036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,777,Block,Bhogaon,LGD,166,777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -LGD,4840,Block,Bhogapuram,LGD,521,4840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,846,Block,Bhognipur,LGD,156,846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -LGD,2891,Block,Bhograi,LGD,346,2891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,6543,Block,Bhoirymbong,LGD,276,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -LGD,4102,Block,Bhokar,LGD,485,4102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,4125,Block,Bhokardan,LGD,479,4125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,6744,Block,Bhomag,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,4628,Block,Bhongir,LGD,697,4628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,4574,Block,Bhoothpur,LGD,512,4574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,569,Block,Bhopalgarh,LGD,107,569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,3376,Block,Bhopalpattnam,LGD,636,3376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -LGD,4198,Block,Bhor,LGD,490,4198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,7529,Block,Bhoraj,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,146,Block,Bhoranj,LGD,17,146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,1217,Block,Bhorey,LGD,197,1217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,6885,Block,Bhota,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,7400,Block,Bhothiya,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,2990,Block,Bhuban,LGD,352,2990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,7498,Block,Bhubaneswar,LGD,362,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,4291,Block,Bhudargad,LGD,480,4291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,3726,Block,Bhuj,LGD,449,3726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,205,Block,Bhulath,LGD,35,205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -LGD,4237,Block,Bhum,LGD,488,4237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,6437,Block,Bhuna St,LGD,61,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -LGD,6887,Block,Bhuntar,LGD,20,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,4682,Block,Bhupalpally,LGD,687,4682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,6057,Block,Bhupalsagar,LGD,95,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,2027,Block,Bhuragaon,LGD,296,2027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -LGD,3965,Block,Bhusawal,LGD,478,3965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,6665,Block,Bhusawar,LGD,91,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,6645,Block,Bhuvanagiri,LGD,570,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,3566,Block,Biaora,LGD,422,3566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,1299,Block,Bibhutpur,LGD,217,1299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,4629,Block,Bibinagar,LGD,697,4629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,6242,Block,Bibipet,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,4916,Block,Biccavolu,LGD,505,4916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,6058,Block,Bichhiwara,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,3645,Block,Bichhiya,LGD,415,3645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -LGD,3657,Block,Bichhua,LGD,399,3657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,4374,Block,Bichkunda,LGD,685,4374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,7013,Block,Bicholi Hapsi,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,5612,Block,Bicholim,LGD,551,5612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -LGD,5457,Block,Bidar,LGD,529,5457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,6426,Block,Bidasar,LGD,96,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,841,Block,Bidhuna,LGD,122,841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -LGD,1280,Block,Bidupur,LGD,224,1280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,818,Block,Bighapur,LGD,186,818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -LGD,1386,Block,Bihar,LGD,209,1386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,1166,Block,Bihariganj,LGD,205,1166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,7245,Block,Biharpur,LGD,648,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,1330,Block,Bihpur,LGD,192,1330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,2049,Block,Bihpuria,LGD,295,2049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -LGD,1403,Block,Bihta,LGD,212,1403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,1216,Block,Bijaipur,LGD,197,1216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,3378,Block,Bijapur,LGD,636,3378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -LGD,7476,Block,Bijatala,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,3433,Block,Bijawar,LGD,398,3433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,54,Block,Bijbehara,LGD,1,54,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,2762,Block,Bijepur,LGD,347,2762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,4584,Block,Bijinapally,LGD,694,4584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,2115,Block,Bijni,LGD,612,2115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -LGD,713,Block,Bijnor,LGD,132,713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -LGD,638,Block,Bijoliya,LGD,92,638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,7580,Block,Bijwasan,LGD,84,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -LGD,473,Block,Bikaner,LGD,93,473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,906,Block,Bikapur,LGD,140,906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -LGD,1405,Block,Bikram,LGD,212,1405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,1461,Block,Bikramganj,LGD,215,1461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,3329,Block,Bilaigarh,LGD,763,3329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,573,Block,Bilara,LGD,107,573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,720,Block,Bilari,LGD,171,720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -LGD,6018,Block,Bilasipara Pt,LGD,285,2009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,3295,Block,Bilaspur,LGD,375,3295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,725,Block,Bilaspur,LGD,176,725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -LGD,6974,Block,Bilaspur,LGD,436,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -LGD,362,Block,Bilaspur,LGD,76,362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -LGD,156,Block,Bilaspur Sadar,LGD,15,156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -LGD,1652,Block,Bilat Circle,LGD,232,1652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -LGD,5444,Block,Bilgi,LGD,524,5444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,812,Block,Bilgram,LGD,150,812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -LGD,3297,Block,Bilha,LGD,375,3297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,848,Block,Bilhaur,LGD,157,848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -LGD,1900,Block,Bilkhawthlir,LGD,263,1900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 -LGD,27,Block,Billawar,LGD,7,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,4105,Block,Biloli,LGD,485,4105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,780,Block,Bilsi,LGD,133,780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -LGD,3443,Block,Bina,LGD,425,3443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,1383,Block,Bind,LGD,209,1383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,877,Block,Bindki,LGD,142,877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -LGD,3135,Block,Binika,LGD,372,3135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -LGD,2984,Block,Binjharpur,LGD,356,2984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,2442,Block,Binpur - I,LGD,703,2442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,2441,Block,Binpur - II,LGD,703,2441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,3137,Block,Biramaharajpur,LGD,372,3137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -LGD,2816,Block,Biramitrapur,LGD,373,2816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,1193,Block,Biraul,LGD,195,1193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,6892,Block,Birhu Kalan,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,2941,Block,Biridi,LGD,355,2941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,4375,Block,Birkur,LGD,685,4375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,2540,Block,Birni,LGD,329,2540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,6354,Block,Bironkhal,LGD,52,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,1313,Block,Birpur,LGD,191,1313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,7033,Block,Birsa,LGD,392,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,3463,Block,Birsinghpur,LGD,426,3463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,791,Block,Bisalpur,LGD,173,791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -LGD,779,Block,Bisauli,LGD,133,779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -LGD,1092,Block,Bisfi,LGD,206,1092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,6699,Block,Bishalgarh,LGD,653,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -LGD,3175,Block,Bishamakatak,LGD,370,3175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,81,Block,Bishnah,LGD,5,81,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,1874,Block,Bishnupur,LGD,252,1874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 -LGD,2415,Block,Bishnupur - I,LGD,304,2415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2416,Block,Bishnupur - II,LGD,304,2416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2624,Block,Bishrampur,LGD,338,2624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,2652,Block,Bishungarh,LGD,332,2652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,2706,Block,Bishunpur,LGD,331,2706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,2502,Block,Bishunpura,LGD,328,2502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,2864,Block,Bisoi,LGD,365,2864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,2818,Block,Bisra,LGD,373,2818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,7218,Block,Bissau,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,806,Block,Biswan,LGD,183,806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -LGD,2045,Block,Biswanath,LGD,705,2045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -LGD,1303,Block,Bithan,LGD,217,1303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,5621,Block,Bitra,LGD,553,5621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,5209,Block,B.Kodur,LGD,504,5209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,6815,Block,Bk Pora,LGD,2,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,2557,Block,Boarijor,LGD,330,2557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,4324,Block,Boath,LGD,501,4324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,4816,Block,Bobbili,LGD,521,4816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,1206,Block,Bochaha,LGD,208,1206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,6020,Block,Bodeli,LGD,668,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -LGD,3157,Block,Boden,LGD,368,3157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -LGD,4370,Block,Bodhan,LGD,516,4370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,1505,Block,Bodh Gaya,LGD,196,1505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,5842,Block,Bodinayakanur,LGD,588,5842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -LGD,3299,Block,Bodla,LGD,382,3299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,7250,Block,Bodri,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,3964,Block,Bodvad,LGD,478,3964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,5159,Block,Bogole,LGD,515,5159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,4429,Block,Boinpalli,LGD,683,4429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,3211,Block,Boipariguda,LGD,363,3211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,2111,Block,Boitamari,LGD,281,2111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -LGD,2082,Block,Bokakhat,LGD,288,2082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -LGD,1079,Block,Bokhara,LGD,221,1079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,2124,Block,Boko,LGD,291,2124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,3034,Block,Bolagad,LGD,362,3034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,2722,Block,Bolba,LGD,342,2722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,1643,Block,Boleng Adc,LGD,679,1643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,5061,Block,Bollapalli,LGD,751,5061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2264,Block,Bolpur Sriniketan,LGD,307,2264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,4550,Block,Bomaraspeta,LGD,698,4550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,6568,Block,Bomdila Hq,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,4613,Block,Bommalaramaram,LGD,697,4613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,5307,Block,Bommanahal,LGD,502,5307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,4765,Block,Bonakal,LGD,509,4765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,4829,Block,Bondapalli,LGD,521,4829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,6433,Block,Bondkalan St,LGD,701,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -LGD,2110,Block,Bongaigaon (Pt),LGD,281,2110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -LGD,2317,Block,Bongaon,LGD,303,2317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,6557,Block,Bongkhar Circle,LGD,238,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,38,Block,Boniyar,LGD,3,38,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,529,Block,Bonli,LGD,113,529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,2605,Block,Boram,LGD,327,2605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,1683,Block,Bordumsa Adc,LGD,229,1683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,6594,Block,Borduria Circle,LGD,239,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,7330,Block,Bori,LGD,378,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -LGD,3200,Block,Boriguma,LGD,363,3200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,2566,Block,Borio,LGD,340,2566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,7181,Block,Borivali,LGD,483,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -LGD,6490,Block,Borobekra,LGD,713,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 -LGD,3867,Block,Borsad,LGD,440,3867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,6013,Block,Borum,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,3850,Block,Botad,LGD,676,3850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -LGD,7435,Block,Botad City,LGD,676,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -LGD,1846,Block,Botsa,LGD,245,1846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -LGD,3130,Block,Boudh,LGD,349,3130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -LGD,4630,Block,B Pochampally,LGD,697,4630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,3067,Block,Brahmagiri,LGD,369,3067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,5205,Block,Brahmamgarimattam,LGD,504,5205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4067,Block,Brahmapuri,LGD,473,4067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,5320,Block,Brahmasamudram,LGD,502,5320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,7068,Block,Brahmavara,LGD,549,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -LGD,5380,Block,Buchinaidu Kandriga,LGD,752,5380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5170,Block,Buchireddipalem,LGD,515,5170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5966,Block,Budalur,LGD,586,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,782,Block,Budaun,LGD,133,782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -LGD,7,Block,Budgam,LGD,2,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,2413,Block,Budge Budge - I,LGD,304,2413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2414,Block,Budge Budge - II,LGD,304,2414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,709,Block,Budhana,LGD,172,709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -LGD,248,Block,Budhlada,LGD,37,248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -LGD,3588,Block,Budni,LGD,427,3588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,6213,Block,Buggaram,LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,3072,Block,Buguda,LGD,354,3072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,489,Block,Buhana,LGD,106,489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,5345,Block,Bukkapatnam,LGD,754,5345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5329,Block,Bukkaraya Samudram,LGD,502,5329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,746,Block,Bulandshahr,LGD,134,746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -LGD,3984,Block,Buldana,LGD,472,3984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,626,Block,Bundi,LGD,94,626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -LGD,2698,Block,Bundu,LGD,339,2698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,2397,Block,Bundwan,LGD,321,2397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,1912,Block,Bunghmun,LGD,265,1912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 -LGD,6488,Block,Bungte Chiru,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,1918,Block,Bungtlang South,LGD,264,1918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 -LGD,6770,Block,Bunjwah,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,6847,Block,Buragaon Eac,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,7569,Block,Burari,LGD,80,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 -LGD,2289,Block,Burdwan - I,LGD,306,2289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2290,Block,Burdwan - II,LGD,306,2290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,4736,Block,Burgampahad,LGD,690,4736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,964,Block,Burhanpur,LGD,123,964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,3719,Block,Burhanpur,LGD,397,3719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -LGD,6972,Block,Burhanpur Nagar,LGD,397,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -LGD,6988,Block,Burhar,LGD,429,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -LGD,4794,Block,Burja,LGD,519,4794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,2682,Block,Burmu,LGD,339,2682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,2248,Block,Burwan,LGD,319,2248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,4873,Block,Butchayyapeta,LGD,744,4873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4948,Block,Buttayagudem,LGD,748,4948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1441,Block,Buxar,LGD,194,1441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,3434,Block,Buxwaha,LGD,398,3434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,5493,Block,Byadgi,LGD,540,5493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,948,Block,Campierganj,LGD,148,948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -LGD,5619,Block,Canacona,LGD,793,5619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -LGD,2420,Block,Canning - I,LGD,304,2420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2421,Block,Canning - II,LGD,304,2421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,5916,Block,Car Nicobar,LGD,603,5916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 -LGD,5256,Block,C.Belagal,LGD,511,5256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,2065,Block,Chabua,LGD,286,2065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -LGD,3683,Block,Chachaura,LGD,406,3683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,7560,Block,Chachian,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,137,Block,Chachyot,LGD,22,137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,7070,Block,Chadchan,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,6897,Block,Chadiyar,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,8,Block,Chadoora,LGD,2,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,5303,Block,Chagalamarri,LGD,755,5303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4959,Block,Chagallu,LGD,505,4959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,1739,Block,Chaglagam Circle,LGD,628,1739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,2739,Block,Chaibasa,LGD,343,2739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,887,Block,Chail,LGD,158,887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -LGD,1452,Block,Chainpur,LGD,200,1452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,2634,Block,Chainpur,LGD,338,2634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,2713,Block,Chainpur,LGD,331,2713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,1534,Block,Chakai,LGD,198,1534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,3116,Block,Chakapada,LGD,359,3116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,840,Block,Chakarnagar,LGD,139,840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -LGD,2314,Block,Chakdah,LGD,320,2314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,994,Block,Chakia,LGD,135,994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -LGD,1051,Block,Chakia(Pipra),LGD,213,1051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,6036,Block,Chakisain,LGD,52,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,1436,Block,Chakki,LGD,194,1436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,1895,Block,Chakpikarong,LGD,253,1895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -LGD,2731,Block,Chakradharpur,LGD,343,2731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,300,Block,Chakrata,LGD,49,300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,5234,Block,Chakrayapet,LGD,504,5234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,550,Block,Chaksu,LGD,102,550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,2613,Block,Chakulia,LGD,327,2613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,4230,Block,Chakur,LGD,481,4230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,5939,Block,Chalakkudy,LGD,566,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -LGD,7340,Block,Chalgali,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,3972,Block,Chalisgaon,LGD,478,3972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,2651,Block,Chalkusa,LGD,332,2651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,5504,Block,Challakere,LGD,533,5504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -LGD,5035,Block,Challapalli,LGD,510,5035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,5577,Block,Chamarajanagar,LGD,531,5577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -LGD,2122,Block,Chamaria,LGD,291,2122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,90,Block,Chamba,LGD,16,90,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,1709,Block,Chambang Circle,LGD,677,1709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -LGD,265,Block,Chamkaur Sahib,LGD,42,265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -LGD,285,Block,Chamoli,LGD,47,285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,4058,Block,Chamorshi,LGD,475,4058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,3281,Block,Champa,LGD,379,3281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,334,Block,Champawat,LGD,48,334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -LGD,1908,Block,Champhai,LGD,262,1908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 -LGD,6489,Block,Champhai,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,2839,Block,Champua,LGD,361,2839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,7374,Block,Chamu,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,1353,Block,Chanan,LGD,190,1353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,1369,Block,Chanan*,LGD,204,1369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -LGD,3750,Block,Chanasma,LGD,455,3750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,2210,Block,Chanchal - I,LGD,316,2210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,2211,Block,Chanchal - II,LGD,316,2211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,1451,Block,Chand,LGD,200,1451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,6996,Block,Chand,LGD,399,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,3190,Block,Chandahandi,LGD,366,3190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,4652,Block,Chandampeta,LGD,514,4652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,2596,Block,Chandankiyari,LGD,322,2596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,5008,Block,Chandarlapadu,LGD,749,5008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,993,Block,Chandauli,LGD,135,993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -LGD,722,Block,Chandausi,LGD,659,722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -LGD,2919,Block,Chandbali,LGD,348,2919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -LGD,1894,Block,Chandel,LGD,253,1894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -LGD,3685,Block,Chanderi,LGD,391,3685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,4294,Block,Chandgad,LGD,480,4294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,1381,Block,Chandi,LGD,209,1381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,3483,Block,Chandia,LGD,436,3483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -LGD,277,Block,Chandigarh,LGD,44,277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.729350,76.780565,inherited:District,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11 -LGD,2748,Block,Chandil,LGD,341,2748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,2481,Block,Chandipur,LGD,317,2481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2351,Block,Chanditala - I,LGD,312,2351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,2352,Block,Chanditala - II,LGD,312,2352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,3426,Block,Chandla,LGD,398,3426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,7574,Block,Chandni Chowk,LGD,795,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,7254,Block,Chando,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,716,Block,Chandpur,LGD,132,716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -LGD,5384,Block,Chandragiri,LGD,752,5384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2446,Block,Chandrakona - I,LGD,318,2446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,2447,Block,Chandrakona - II,LGD,318,2447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,3174,Block,Chandrapur,LGD,370,3174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,7354,Block,Chandrapur,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,2131,Block,Chandrapur,LGD,618,2131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -LGD,4071,Block,Chandrapur,LGD,473,4071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,2589,Block,Chandrapura,LGD,322,2589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,5145,Block,Chandra Sekhara Puram,LGD,790,5145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3711,Block,Chandra Shekhar Azad Nagar,LGD,639,3711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -LGD,4747,Block,Chandrugonda,LGD,690,4747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,4655,Block,Chandur,LGD,514,4655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,6669,Block,Chandur,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,4005,Block,Chandurbazar,LGD,468,4005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,4013,Block,Chandur Railway,LGD,468,4013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,4419,Block,Chandurthi,LGD,683,4419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,4148,Block,Chandvad,LGD,487,4148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,2643,Block,Chandwa,LGD,335,2643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,2530,Block,Chandwara,LGD,334,2530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -LGD,5671,Block,Changanassery,LGD,560,5671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -LGD,1671,Block,Changlang Hq,LGD,229,1671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,1780,Block,Changpang,LGD,250,1780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,1761,Block,Changtongya,LGD,246,1761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,2694,Block,Chanho,LGD,339,2694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,5514,Block,Channagiri,LGD,535,5514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -LGD,5607,Block,Channapatna,LGD,631,5607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -LGD,6802,Block,Channapora/Natipora,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -LGD,5560,Block,Channarayapatna,LGD,539,5560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,1025,Block,Chanpatia,LGD,211,1025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,5213,Block,Chapad,LGD,504,5213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,6019,Block,Chapar Pt,LGD,285,2010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,2305,Block,Chapra,LGD,320,2305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,1258,Block,Chapra,LGD,218,1258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,6293,Block,Charakonda,LGD,694,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,3348,Block,Charama,LGD,381,3348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,9,Block,Charar- E- Shrief,LGD,2,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,1076,Block,Charaut,LGD,221,1076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,1815,Block,Chare,LGD,249,1815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -LGD,2042,Block,Chariduar,LGD,301,2042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -LGD,869,Block,Charkhari,LGD,165,869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -LGD,4510,Block,Charminar,LGD,507,4510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,1430,Block,Charpokhari,LGD,193,1430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,2595,Block,Chas,LGD,322,2595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,6738,Block,Chassana,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,2518,Block,Chatra,LGD,323,2518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,5001,Block,Chatrai,LGD,748,5001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,312,Block,Chaubatta Khal,LGD,52,312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,1438,Block,Chaugain,LGD,194,1438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,326,Block,Chaukhutiya,LGD,45,326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,185,Block,Chaupal,LGD,23,185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,2644,Block,Chauparan,LGD,332,2644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,3650,Block,Chaurai,LGD,399,3650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,951,Block,Chauri Chaura,LGD,148,951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -LGD,1170,Block,Chausa,LGD,205,1170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,1442,Block,Chausa,LGD,194,1442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,1325,Block,Chautham,LGD,202,1325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -LGD,530,Block,Chauth Ka Barwara,LGD,113,530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,5653,Block,Chavakkad,LGD,566,5653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -LGD,1916,Block,Chawngte,LGD,264,1916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 -LGD,1590,Block,Chayangtajo Adc,LGD,231,1590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,5079,Block,Chebrolu,LGD,506,5079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,7375,Block,Chechat,LGD,109,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -LGD,4858,Block,Cheedikada,LGD,744,4858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4827,Block,Cheepurupalli,LGD,521,4827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,4466,Block,Chegunta,LGD,513,4466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,1273,Block,Chehra Kalan,LGD,224,1273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,5172,Block,Chejerla,LGD,515,5172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,7407,Block,Chelur,LGD,630,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,1753,Block,Chen,LGD,247,1753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,73,Block,Chenani,LGD,14,73,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,1468,Block,Chenari,LGD,215,1468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,2021,Block,Chenga,LGD,280,2021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -LGD,5706,Block,Chengalpattu,LGD,730,5706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,5725,Block,Chengam,LGD,593,5725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,5677,Block,Chengannur,LGD,554,5677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -LGD,4712,Block,Chennaraopet,LGD,522,4712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,5347,Block,Chennekothapalli,LGD,754,5347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4356,Block,Chennur,LGD,684,4356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,5226,Block,Chennur,LGD,504,5226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,6648,Block,Cheranmahadevi,LGD,592,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,1307,Block,Cheria Bariarpur,LGD,191,1307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,4672,Block,Cherial,LGD,692,4672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,4726,Block,Cherla,LGD,690,4726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,5673,Block,Cherthala,LGD,554,5673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -LGD,5090,Block,Cherukupalli,LGD,750,5090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1827,Block,Chessore,LGD,765,1827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1614,Block,Chetam Peer Yapu Circle,LGD,241,1614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,1807,Block,Chetheba,LGD,248,1807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,5622,Block,Chetlat,LGD,553,5622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,6617,Block,Chetpet,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,4529,Block,Chevella,LGD,518,4529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,1376,Block,Chewara,LGD,219,1376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -LGD,5722,Block,Cheyyar,LGD,593,5722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,5711,Block,Cheyyur,LGD,730,5711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,676,Block,Chhabra,LGD,89,676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,363,Block,Chhachhrauli,LGD,76,363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -LGD,7424,Block,Chhaigaon Makhan,LGD,405,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,7240,Block,Chhal,LGD,386,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,3660,Block,Chhapara,LGD,428,3660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,761,Block,Chhata,LGD,167,761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -LGD,1103,Block,Chhatapur,LGD,223,1103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,479,Block,Chhatargarh,LGD,93,479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,2620,Block,Chhatarpur,LGD,338,2620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,7587,Block,Chhatarpur,LGD,83,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -LGD,3429,Block,Chhatarpur,LGD,398,3429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,7006,Block,Chhatarpur Nagar,LGD,398,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,2359,Block,Chhatna,LGD,305,2359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,4137,Block,Chhatrapati Sambhajinagar,LGD,469,4137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,3085,Block,Chhatrapur,LGD,354,3085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,6950,Block,Chhatri,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,70,Block,Chhatroo,LGD,620,70,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,2120,Block,Chhaygaon,LGD,291,2120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,3014,Block,Chhendipada,LGD,344,3014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,833,Block,Chhibramau,LGD,155,833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -LGD,3374,Block,Chhindgarh,LGD,642,3374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -LGD,3654,Block,Chhindwara,LGD,399,3654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,7020,Block,Chhindwara Nagar,LGD,399,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,677,Block,Chhipabarod,LGD,89,677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,1305,Block,Chhorahi,LGD,191,1305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,3901,Block,Chhota Udaipur,LGD,668,3901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -LGD,7318,Block,Chhotedongar,LGD,637,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 -LGD,7364,Block,Chhoti Khatoo,LGD,768,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,698,Block,Chhoti Sadri,LGD,629,698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -LGD,6042,Block,Chhoti Sarwan,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,3302,Block,Chhuikhadan,LGD,759,3302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,3336,Block,Chhura,LGD,645,3336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -LGD,3306,Block,Chhuriya,LGD,388,3306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -LGD,3601,Block,Chicholi,LGD,394,3601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,5791,Block,Chidambaram,LGD,570,5791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,1845,Block,Chiephobozou,LGD,245,1845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -LGD,4442,Block,Chigurumamidi,LGD,508,4442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,7545,Block,Chikada,LGD,452,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -LGD,4002,Block,Chikhaldara,LGD,468,4002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,6059,Block,Chikhali,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,3925,Block,Chikhli,LGD,453,3925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -LGD,3983,Block,Chikhli,LGD,472,3983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,7487,Block,Chikiti,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,5596,Block,Chikkaballapura,LGD,630,5596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,5530,Block,Chikkamagaluru,LGD,532,5530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,5532,Block,Chiknayakanhalli,LGD,548,5532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,5433,Block,Chikodi,LGD,527,5433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,5070,Block,Chilakaluripet H/O.Purushotha Patnam,LGD,751,5070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5366,Block,Chilamathur,LGD,754,5366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7497,Block,Chilika,LGD,362,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,6483,Block,Chilivai Phaibung,LGD,257,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -LGD,4667,Block,Chilkur,LGD,696,4667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,5190,Block,Chillakur,LGD,515,5190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,6754,Block,Chilly Pingal,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,6274,Block,Chilpched,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,6259,Block,Chilpur,LGD,689,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,5128,Block,Chimakurthy,LGD,517,5128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,4065,Block,Chimur,LGD,473,4065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,5125,Block,Chinaganjam,LGD,750,5125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5583,Block,Chincholi,LGD,538,5583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,1887,Block,Chingai,LGD,260,1887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 -LGD,1822,Block,Chingmei,LGD,249,1822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -LGD,2507,Block,Chinia,LGD,328,2507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,4587,Block,Chinnachintakunta,LGD,512,4587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,5385,Block,Chinnagottigallu,LGD,752,5385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6254,Block,Chinnagudur,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,4460,Block,Chinnakodur,LGD,692,4460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,5236,Block,Chinnamandem,LGD,753,5236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6287,Block,Chinnambavi,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,5977,Block,Chinnasalem,LGD,729,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -LGD,3402,Block,Chinour,LGD,407,3402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,2346,Block,Chinsurah - Magra,LGD,312,2346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,6314,Block,Chintalamanepally,LGD,699,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,4944,Block,Chintalapudi,LGD,748,4944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5600,Block,Chintamani,LGD,630,5600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,4760,Block,Chinthakani,LGD,509,4760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,5231,Block,Chinthakommadinne,LGD,504,5231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,6303,Block,Chinthalapalem,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,4849,Block,Chinthapalli,LGD,745,4849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4650,Block,Chinthapally,LGD,514,4650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4732,Block,Chinturu,LGD,791,4732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,282,Block,Chinyali Saur,LGD,57,282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,4269,Block,Chiplun,LGD,492,4269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,5291,Block,Chippagiri,LGD,511,5291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,1040,Block,Chiraia,LGD,213,1040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,5123,Block,Chirala,LGD,750,5123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6758,Block,Chiralla,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,488,Block,Chirawa,LGD,106,488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,5689,Block,Chirayinkeezhu,LGD,565,5689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -LGD,192,Block,Chirgaon,LGD,23,192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,7268,Block,Chirmiri,LGD,760,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,7084,Block,Chitaguppa,LGD,529,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,6046,Block,Chitalwana,LGD,104,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,2664,Block,Chitarpur,LGD,607,2664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -LGD,5505,Block,Chitradurga,LGD,533,5505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -LGD,6799,Block,Chitragam,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -LGD,3223,Block,Chitrakonda,LGD,364,3223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -LGD,3703,Block,Chitrangi,LGD,638,3703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,5193,Block,Chittamur,LGD,752,5193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5585,Block,Chittapur,LGD,538,5585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,5421,Block,Chittoor Rural,LGD,503,5421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,7427,Block,Chittoor Urban,LGD,503,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,659,Block,Chittorgarh,LGD,95,659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,5650,Block,Chittur,LGD,563,5650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -LGD,5245,Block,Chitvel,LGD,752,5245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4633,Block,Chityal,LGD,514,4633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4681,Block,Chityal,LGD,687,4681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,4639,Block,Chivemla,LGD,696,4639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,1812,Block,Chizami,LGD,248,1812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,4872,Block,Chodavaram,LGD,744,4872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,584,Block,Chohtan,LGD,90,584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,1975,Block,Chokpot,LGD,277,1975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -LGD,541,Block,Chomu,LGD,102,541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,1731,Block,Chongkham Eac,LGD,678,1731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 -LGD,3960,Block,Chopda,LGD,478,3960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,4424,Block,Choppadandi,LGD,508,4424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,2191,Block,Chopra,LGD,311,2191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,3938,Block,Chorasi,LGD,459,3938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,3794,Block,Chotila,LGD,460,3794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,4631,Block,Choutuppal,LGD,697,4631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,7186,Block,Chowdapur,LGD,698,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,5413,Block,Chowdepalle,LGD,753,5413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6703,Block,Chowki Choura,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,7188,Block,Chowtakur,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,1806,Block,Chozuba,LGD,248,1806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,1762,Block,Chuchuyimlang,LGD,246,1762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,3796,Block,Chuda,LGD,460,3796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,1791,Block,Chukitong,LGD,250,1791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,1797,Block,Chumukedima,LGD,758,1797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1003,Block,Chunar,LGD,170,1003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -LGD,6376,Block,Chunchupalli,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,1547,Block,Chungthang,LGD,226,1547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 -LGD,5987,Block,Chunlikha,LGD,757,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1871,Block,Churachandpur,LGD,254,1871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,84,Block,Churah,LGD,16,84,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,2658,Block,Churchu,LGD,332,2658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,3698,Block,Churhat,LGD,433,3698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,484,Block,Churu,LGD,96,484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,7039,Block,City Center,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,5897,Block,Coimbatore North,LGD,569,5897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,5898,Block,Coimbatore South,LGD,569,5898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,929,Block,Colonelganj,LGD,147,929,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -LGD,2488,Block,Contai - I,LGD,317,2488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2490,Block,Contai - III,LGD,317,2490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2183,Block,Cooch Behar - I,LGD,308,2183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,2184,Block,Cooch Behar - II,LGD,308,2184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,5758,Block,Coonoor,LGD,587,5758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -LGD,5789,Block,Cuddalore,LGD,570,5789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,5117,Block,Cumbum,LGD,790,5117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2962,Block,Cuttack,LGD,350,2962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,3905,Block,Dabhoi,LGD,461,3905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,3284,Block,Dabhra,LGD,762,3284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,3400,Block,Dabra,LGD,407,3400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,3192,Block,Dabugan,LGD,366,3192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,389,Block,Dabwali,LGD,74,389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -LGD,5045,Block,Dachepalli,LGD,751,5045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6765,Block,Dachhan,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,171,Block,Dadahu,LGD,24,171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,1687,Block,Dadam Circle,LGD,239,1687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,6918,Block,Dadasiba,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,1963,Block,Dadenggiri,LGD,278,1963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,2659,Block,Dadi,LGD,332,2659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,3949,Block,Dadra & Nagar Haveli,LGD,465,3949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11 -LGD,402,Block,Dadri,LGD,701,402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -LGD,742,Block,Dadri,LGD,144,742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -LGD,6926,Block,Dag,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,5166,Block,Dagadarthi,LGD,515,5166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,1141,Block,Dagarua,LGD,214,1141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,4158,Block,Dahanu,LGD,665,4158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,4329,Block,Dahegoan,LGD,699,4329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,3537,Block,Dahi,LGD,403,3537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,6464,Block,Dahina St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,5186,Block,Dakkili,LGD,752,5186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2149,Block,Dalgaon (Pt),LGD,283,2149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -LGD,87,Block,Dalhousie,LGD,16,87,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,827,Block,Dalmau,LGD,175,827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -LGD,3497,Block,Daloda,LGD,416,3497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,7151,Block,Dalot,LGD,629,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -LGD,1297,Block,Dalsinghsarai,LGD,217,1297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,1969,Block,Dalu,LGD,278,1969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,3948,Block,Daman,LGD,463,3948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11 -LGD,4553,Block,Damargidda,LGD,721,4553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,1971,Block,Dambo Rongjeng,LGD,273,1971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -LGD,6591,Block,Dambuen Circle,LGD,230,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 -LGD,1725,Block,Dambuk Adc,LGD,235,1725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -LGD,6375,Block,Damera,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,4663,Block,Dameracherla,LGD,514,4663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,1714,Block,Damin Circle,LGD,233,1714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,4750,Block,Dammapeta,LGD,690,4750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,3458,Block,Damoh,LGD,400,3458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,6999,Block,Damyanti Nagar,LGD,400,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,2510,Block,Danda,LGD,328,2510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,2506,Block,Dandai,LGD,328,2506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,1317,Block,Dandari,LGD,191,1317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,7064,Block,Dandeli,LGD,550,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,4348,Block,Dandepally,LGD,684,4348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,1150,Block,Dandkhora,LGD,201,1150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,7475,Block,Dangadi,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,6827,Block,Dangarpora,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,7110,Block,Dangtal Revenue Circle,LGD,281,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -LGD,1412,Block,Daniawan,LGD,212,1412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,6712,Block,Dansal,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,3737,Block,Danta,LGD,441,3737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,2467,Block,Dantan - I,LGD,318,2467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,2468,Block,Dantan - II,LGD,318,2468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,554,Block,Danta Ramgarh,LGD,114,554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,3369,Block,Dantewada,LGD,376,3369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -LGD,6255,Block,Danthalapalle,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,3735,Block,Dantiwada,LGD,441,3735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,4267,Block,Dapoli,LGD,492,4267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,1615,Block,Daporijo Hq,LGD,241,1615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,1628,Block,Darak Circle,LGD,243,1628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,1242,Block,Darauli,LGD,222,1242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,1246,Block,Daraundha,LGD,222,1246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,3366,Block,Darbha,LGD,374,3366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,1184,Block,Darbhanga,LGD,195,1184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,6901,Block,Dareeni,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,21,Block,Darhal,LGD,12,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,7357,Block,Darhi,LGD,650,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,1264,Block,Dariapur,LGD,218,1264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,7261,Block,Darima,LGD,389,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,3125,Block,Daringbadi,LGD,359,3125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,1637,Block,Daring Circle,LGD,724,1637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 -LGD,2154,Block,Darjeeling Pulbazar,LGD,309,2154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,159,Block,Darlaghat,LGD,25,159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,1902,Block,Darlawn,LGD,261,1902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -LGD,7474,Block,Darpan,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,7266,Block,Darri,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,5114,Block,Darsi,LGD,517,5114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,2649,Block,Daru,LGD,332,2649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,4083,Block,Darwha,LGD,500,4083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,4011,Block,Daryapur,LGD,468,4011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,3790,Block,Dasada,LGD,460,3790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,3202,Block,Dasamantapur,LGD,363,3202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,3023,Block,Dasapalla,LGD,367,3023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,7473,Block,Dasarathpur,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,3782,Block,Daskroi,LGD,438,3782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,2449,Block,Daspur - I,LGD,318,2449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,2450,Block,Daspur - II,LGD,318,2450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,6207,Block,Dasturabad,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,214,Block,Dasua,LGD,33,214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -LGD,783,Block,Dataganj,LGD,133,783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -LGD,3405,Block,Datia,LGD,401,3405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -LGD,6991,Block,Datia Nagar,LGD,401,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -LGD,4823,Block,Dattirajeru,LGD,521,4823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,1476,Block,Daudnagar,LGD,189,1476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,4195,Block,Daund,LGD,490,4195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,3322,Block,Daundi,LGD,646,3322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -LGD,3320,Block,Daundilohara,LGD,646,3320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -LGD,7251,Block,Daura-Kochali,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,536,Block,Dausa,LGD,97,536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,5512,Block,Davanagere,LGD,535,5512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -LGD,1459,Block,Dawath,LGD,215,1459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,6415,Block,Dayalpur St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,2800,Block,Debagarh,LGD,351,2800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 -LGD,749,Block,Debai,LGD,134,749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -LGD,7021,Block,Debeyar Co Circle,LGD,231,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,2462,Block,Debra,LGD,318,2462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,6937,Block,Dechoo,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3911,Block,Dediapada,LGD,452,3911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -LGD,6842,Block,Deed Circle,LGD,786,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,508,Block,Deeg,LGD,767,508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3740,Block,Deesa,LGD,441,3740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,7437,Block,Deesa City,LGD,441,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,563,Block,Degana,LGD,110,563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,2327,Block,Deganga,LGD,303,2327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,4110,Block,Deglur,LGD,485,4110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,7223,Block,Deh,LGD,110,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,6958,Block,Deha,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,6949,Block,Dehar,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,3776,Block,Dehgam,LGD,446,3776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -LGD,304,Block,Dehradun,LGD,49,304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,103,Block,Dehra Gopipur,LGD,18,103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,1473,Block,Dehri,LGD,215,1473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,3056,Block,Delanga,LGD,369,3056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,7154,Block,Deldar,LGD,115,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -LGD,452,Block,Delhi Cantonment,LGD,79,452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11 -LGD,6935,Block,Delwara,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,6546,Block,Demdema,LGD,278,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,4967,Block,Denduluru,LGD,748,4967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4839,Block,Denkada,LGD,521,4839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,5892,Block,Denkanikottai,LGD,577,5892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,6398,Block,Dentam,LGD,228,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 -LGD,1485,Block,Deo,LGD,189,1485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,704,Block,Deoband,LGD,177,704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -LGD,3741,Block,Deodar,LGD,789,3741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,7453,Block,Deogaon,LGD,345,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,640,Block,Deogarh,LGD,112,640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,2545,Block,Deoghar,LGD,324,2545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,4144,Block,Deola,LGD,487,4144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,3985,Block,Deolgaon Raja,LGD,472,3985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,4020,Block,Deoli,LGD,498,4020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,620,Block,Deoli,LGD,116,620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,7588,Block,Deoli,LGD,83,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -LGD,1684,Block,Deomali Adc,LGD,239,1684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,4234,Block,Deoni,LGD,481,4234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,4051,Block,Deori,LGD,476,4051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,2534,Block,Deori,LGD,329,2534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,3453,Block,Deori,LGD,425,3453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,7010,Block,Deori,LGD,421,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,959,Block,Deoria,LGD,137,959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -LGD,3704,Block,Deosar,LGD,638,3704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,3540,Block,Depalpur,LGD,410,3540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,204,Block,Dera Baba Nanak,LGD,32,204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -LGD,268,Block,Dera Bassi,LGD,608,268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -LGD,2930,Block,Derabish,LGD,360,2930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,844,Block,Derapur,LGD,156,844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -LGD,2084,Block,Dergaon,LGD,288,2084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -LGD,4052,Block,Desaiganj (Vadasa),LGD,475,4052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,6569,Block,Desali Circle,LGD,235,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -LGD,6035,Block,Desar,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,2489,Block,Deshopran,LGD,317,2489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,1281,Block,Desri,LGD,224,1281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,603,Block,Desuri,LGD,111,603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,3778,Block,Detroj-Rampura,LGD,438,3778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,5460,Block,Devadurga,LGD,546,5460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,5831,Block,Devakottai,LGD,585,5831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,6424,Block,Devalthal,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,5603,Block,Devanahalli,LGD,526,5603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -LGD,5276,Block,Devanakonda,LGD,511,5276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,7071,Block,Devara Hipparagi,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,4573,Block,Devarakadra,LGD,512,4573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,4653,Block,Devarakonda,LGD,514,4653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4957,Block,Devarapalle,LGD,505,4957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,4859,Block,Devarapalli,LGD,744,4859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4701,Block,Devaruppula,LGD,689,4701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,3338,Block,Devbhog,LGD,645,3338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -LGD,3437,Block,Devendranagar,LGD,420,3437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,4275,Block,Devgad,LGD,495,4275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,3895,Block,Devgadbaria,LGD,445,3895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,5664,Block,Devikulam,LGD,556,5664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -LGD,4885,Block,Devipatnam,LGD,791,4885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2549,Block,Devipur,LGD,324,2549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,7298,Block,Devkar,LGD,650,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,294,Block,Devprayag,LGD,55,294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,60,Block,Devsar,LGD,622,60,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -LGD,6347,Block,Dewal,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,3526,Block,Dewas,LGD,402,3526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,7031,Block,Dewas Nagar,LGD,402,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,1039,Block,Dhaka,LGD,213,1039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,2053,Block,Dhakuakhana (Pt-I),LGD,295,2053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -LGD,2611,Block,Dhalbhumgarh,LGD,327,2611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,7175,Block,Dhalwan,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,4014,Block,Dhamangaon Railway,LGD,468,4014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,1132,Block,Dhamdaha,LGD,214,1132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,3316,Block,Dhamdha,LGD,378,3316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -LGD,6964,Block,Dhami,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,2913,Block,Dhamnagar,LGD,348,2913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -LGD,715,Block,Dhampur,LGD,132,715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -LGD,3346,Block,Dhamtari,LGD,377,3346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -LGD,7577,Block,Dhamwari,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,1409,Block,Dhanarua,LGD,212,1409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,6912,Block,Dhanau,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,298,Block,Dhanaulti,LGD,55,298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,729,Block,Dhanaura,LGD,154,729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -LGD,2584,Block,Dhanbad-Cum-Kenduadih-Cum-Jagata,LGD,325,2584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,3787,Block,Dhandhuka,LGD,438,3787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,6448,Block,Dhand St,LGD,66,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -LGD,3734,Block,Dhanera,LGD,441,3734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,2343,Block,Dhaniakhali,LGD,312,2343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,3662,Block,Dhanora,LGD,428,3662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,7320,Block,Dhanora,LGD,643,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -LGD,4056,Block,Dhanora,LGD,475,4056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,3896,Block,Dhanpur,LGD,445,3896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,1798,Block,Dhansiripar,LGD,758,1798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,3770,Block,Dhansura,LGD,672,3770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,4572,Block,Dhanwada,LGD,721,4572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,2535,Block,Dhanwar,LGD,329,2535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,3534,Block,Dhar,LGD,403,3534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,3079,Block,Dharakote,LGD,354,3079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,3168,Block,Dharamgarh,LGD,358,3168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,3263,Block,Dharamjaigarh,LGD,386,3263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,5996,Block,Dharamkot,LGD,38,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -LGD,3928,Block,Dharampur,LGD,462,3928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,3539,Block,Dharampuri,LGD,403,3539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,3968,Block,Dharangaon,LGD,478,3968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,5902,Block,Dharapuram,LGD,634,5902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,4240,Block,Dharashiv,LGD,488,4240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,5931,Block,Dharbandora,LGD,793,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -LGD,316,Block,Dharchula,LGD,53,316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,1359,Block,Dharhara,LGD,207,1359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,341,Block,Dhari,LGD,51,341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,3845,Block,Dhari,LGD,439,3845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,696,Block,Dhariawad,LGD,629,696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -LGD,200,Block,Dhar Kalan,LGD,662,200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -LGD,4104,Block,Dharmabad,LGD,485,4104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,6691,Block,Dharmanagar,LGD,270,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -LGD,4397,Block,Dharmapuri,LGD,681,4397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,5888,Block,Dharmapuri,LGD,571,5888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -LGD,4411,Block,Dharmaram,LGD,682,4411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,4677,Block,Dharmasagar,LGD,686,4677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,2979,Block,Dharmasala,LGD,356,2979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,5336,Block,Dharmavaram,LGD,754,5336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,127,Block,Dharmpur,LGD,22,127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,99,Block,Dharmsala,LGD,18,99,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,4001,Block,Dharni,LGD,468,4001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,7544,Block,Dharnidhar,LGD,789,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,4591,Block,Dharoor,LGD,695,4591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,4378,Block,Dharpally,LGD,516,4378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,7292,Block,Dharsiwa,LGD,387,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,6463,Block,Dharuhera St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,4223,Block,Dharur,LGD,470,4223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,4531,Block,Dharur,LGD,698,4531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,5473,Block,Dharwad,LGD,536,5473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,6944,Block,Dharwala,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,145,Block,Dhatwal,LGD,17,145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,6414,Block,Dhauj St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,6032,Block,Dhaulana,LGD,661,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -LGD,6338,Block,Dhaulchhina,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,6365,Block,Dhauntari,LGD,57,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,802,Block,Dhaurahara,LGD,159,802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -LGD,2041,Block,Dhekiajuli (Pt),LGD,301,2041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -LGD,2055,Block,Dhemaji,LGD,284,2055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -LGD,2999,Block,Dhenkanal Sadar,LGD,352,2999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,3626,Block,Dhimarkheda,LGD,413,3626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,2034,Block,Dhing,LGD,297,2034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -LGD,109,Block,Dhira,LGD,18,109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,5304,Block,D.Hirehal,LGD,502,5304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,6387,Block,Dhod,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,6167,Block,Dholera,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,1211,Block,Dholi (Moraul),LGD,208,1211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,3783,Block,Dholka,LGD,438,3783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,518,Block,Dholpur,LGD,98,518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,5289,Block,Dhone,LGD,755,5289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7189,Block,Dhoolmitta,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,309,Block,Dhoomakot,LGD,52,309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,3810,Block,Dhoraji,LGD,457,3810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,6050,Block,Dhorimanna,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,61,Block,D H Pora,LGD,622,61,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -LGD,3789,Block,Dhrangadhra,LGD,460,3789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,3816,Block,Dhrol,LGD,447,3816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -LGD,6014,Block,Dhubri,LGD,285,2008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,7402,Block,Dhulcot,LGD,397,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -LGD,3959,Block,Dhule,LGD,474,3959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -LGD,2176,Block,Dhupguri,LGD,314,2176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,1348,Block,Dhuraiya,LGD,190,1348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,270,Block,Dhuri,LGD,43,270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -LGD,2504,Block,Dhurki,LGD,328,2504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,6342,Block,Dhyari,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,2426,Block,Diamond Harbour - I,LGD,304,2426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2427,Block,Diamond Harbour - II,LGD,304,2427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2064,Block,Dibrugarh East,LGD,286,2064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -LGD,2063,Block,Dibrugarh West,LGD,286,2063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -LGD,4377,Block,Dichpally,LGD,516,4377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,7449,Block,Didarganj,LGD,212,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,317,Block,Didihat,LGD,53,317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,558,Block,Didwana,LGD,768,558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3096,Block,Digapahandi,LGD,354,3096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,1122,Block,Dighalbank,LGD,203,1122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -LGD,7394,Block,Dighora,LGD,434,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,1266,Block,Dighwara,LGD,218,1266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,5919,Block,Diglipur,LGD,632,5919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -LGD,666,Block,Digod,LGD,109,666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -LGD,4084,Block,Digras,LGD,500,4084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,4343,Block,Dilawarpur,LGD,680,4343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,1796,Block,Dimapur Sadar,LGD,244,1796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11 -LGD,2070,Block,Dimow,LGD,300,2070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -LGD,6860,Block,Dinanagar,LGD,32,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -LGD,1399,Block,Dinapur-Cum-Khagaul,LGD,212,1399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,1458,Block,Dinara,LGD,215,1458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,5980,Block,Dindiguleast,LGD,572,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,5979,Block,Dindigulwest,LGD,572,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,4149,Block,Dindori,LGD,487,4149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,3640,Block,Dindori,LGD,404,3640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -LGD,6726,Block,Dinga Amb,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,2187,Block,Dinhata - I,LGD,308,2187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,2188,Block,Dinhata - II,LGD,308,2188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,2089,Block,Diphu,LGD,292,2089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -LGD,7293,Block,Dipka,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,1566,Block,Dirang Adc,LGD,242,1566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,6852,Block,Dirba,LGD,43,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -LGD,7231,Block,Diskit,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,2129,Block,Dispur,LGD,618,2129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -LGD,6099,Block,Dissing Passo Circle,LGD,723,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 -LGD,3947,Block,Diu,LGD,464,3947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11 -LGD,1682,Block,Diyun Eac,LGD,229,1682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,1504,Block,Dobhi,LGD,196,1504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,2039,Block,Doboka,LGD,709,2039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -LGD,62,Block,Doda,LGD,4,62,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,4282,Block,Dodamarg,LGD,495,4282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,5602,Block,Doddaballapura,LGD,526,5602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -LGD,193,Block,Dodra Kwar,LGD,23,193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,3893,Block,Dohad,LGD,445,3893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,1598,Block,Doimukh Sdo,LGD,237,1598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,6335,Block,Doiwala,LGD,49,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,3615,Block,Dolariya,LGD,409,3615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,1701,Block,Dollungmukh Circle,LGD,718,1701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 -LGD,6200,Block,Dolvan,LGD,641,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,4537,Block,Doma,LGD,698,4537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,4392,Block,Domakonda,LGD,685,4392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,936,Block,Domariyaganj,LGD,182,936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -LGD,2528,Block,Domchanch,LGD,334,2528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -LGD,2402,Block,Domjur,LGD,313,2402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,2235,Block,Domkal,LGD,319,2235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,7501,Block,Dompada,LGD,350,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,5102,Block,Donakonda,LGD,517,5102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,3307,Block,Dongargaon,LGD,388,3307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -LGD,3304,Block,Dongargarh,LGD,388,3304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -LGD,6824,Block,Dongiwacha,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,7525,Block,Dongli,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,2088,Block,Donka,LGD,710,2088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11 -LGD,7530,Block,Donkeshwar,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,2060,Block,Doom Dooma,LGD,302,2060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -LGD,6910,Block,Dooni,LGD,116,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,58,Block,Dooru,LGD,1,58,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,7422,Block,Doraha,LGD,427,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,5196,Block,Doravarisatram,LGD,752,5196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4722,Block,Dornakal,LGD,688,4722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,5100,Block,Dornala,LGD,790,5100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7355,Block,Dornapal,LGD,642,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -LGD,5299,Block,Dornipadu,LGD,755,5299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2003,Block,Dotma,LGD,294,2003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -LGD,4552,Block,Doulathabad,LGD,698,4552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,4465,Block,Doultabad,LGD,692,4465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,7137,Block,Dovda,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,6769,Block,Drabshala,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,6786,Block,Dragmulla,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,3544,Block,Dr. Ambedkar Nagar Mhow,LGD,410,3544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,6191,Block,Drass,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -LGD,4458,Block,Dubbak,LGD,692,4458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,2266,Block,Dubrajpur,LGD,307,2266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,7419,Block,Dudhamania,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,6849,Block,Dudhan Sadhan,LGD,41,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -LGD,1006,Block,Dudhi,LGD,184,1006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -LGD,2016,Block,Dudhnai,LGD,287,2016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -LGD,6027,Block,Dudu,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,6550,Block,Dudunghar Circle,LGD,238,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,7540,Block,Dudyal,LGD,698,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,5076,Block,Duggirala,LGD,506,5076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,4693,Block,Duggondi,LGD,522,4693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,6331,Block,Dugnakuri,LGD,46,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -LGD,6891,Block,Dulahar,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,3260,Block,Duldula,LGD,380,3260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,1406,Block,Dulhin Bazar,LGD,212,1406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,2663,Block,Dulmi,LGD,607,2663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -LGD,1502,Block,Dumaria,LGD,196,1502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,2610,Block,Dumaria,LGD,327,2610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,4843,Block,Dumbriguda,LGD,745,4843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2673,Block,Dumka,LGD,326,2673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,4729,Block,Dummugudem,LGD,690,4729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,1617,Block,Dumporijo Adc,LGD,241,1617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,1074,Block,Dumra,LGD,221,1074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,1440,Block,Dumraon,LGD,194,1440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,2543,Block,Dumri,LGD,329,2543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,2714,Block,Dumri,LGD,331,2714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,1061,Block,Dumri Katsari,LGD,220,1061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -LGD,281,Block,Dunda,LGD,57,281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,646,Block,Dungarpur,LGD,99,646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,661,Block,Dungla,LGD,95,661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,7158,Block,Durbuk,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,3317,Block,Durg,LGD,378,3317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -LGD,2274,Block,Durgapur Faridpur,LGD,704,2274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,1450,Block,Durgawati,LGD,200,1450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,5042,Block,Durgi,LGD,751,5042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3350,Block,Durgkondal,LGD,381,3350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,5162,Block,Duttalur,LGD,515,5162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5203,Block,Duvvur,LGD,504,5203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,329,Block,Dwarahat,LGD,45,329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,4955,Block,Dwarakatirumala,LGD,748,4955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7592,Block,Dwarka,LGD,84,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -LGD,6402,Block,Dzongu,LGD,226,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 -LGD,1911,Block,East Lungdar,LGD,268,1911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 -LGD,5738,Block,Edappadi,LGD,584,5738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,5071,Block,Edlapadu,LGD,751,5071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6201,Block,Egarkund,LGD,325,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,7164,Block,Egmore,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,2491,Block,Egra - I,LGD,317,2491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2492,Block,Egra - II,LGD,317,2492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,6803,Block,Eidgah,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -LGD,1391,Block,Ekangarsarai,LGD,209,1391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,1254,Block,Ekma,LGD,218,1254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,4410,Block,Eligaid,LGD,682,4410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,4449,Block,Elkathurthy,LGD,686,4449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,6234,Block,Ellandakunta,LGD,508,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,392,Block,Ellenabad,LGD,74,392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -LGD,4966,Block,Eluru Rural,LGD,748,4966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7428,Block,Eluru Urban,LGD,748,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7539,Block,Endapalli,LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,1790,Block,Englan,LGD,250,1790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,2218,Block,English Bazar,LGD,316,2218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,4753,Block,Enkoor,LGD,509,4753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,6633,Block,Eral,LGD,594,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,3967,Block,Erandol,LGD,478,3967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,2705,Block,Erki(Tamar Ii),LGD,606,2705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 -LGD,5641,Block,Ernad,LGD,562,5641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -LGD,5753,Block,Erode,LGD,573,5753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,2938,Block,Ersama,LGD,355,2938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,1008,Block,Etah,LGD,138,1008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -LGD,1719,Block,Etalin,LGD,230,1719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 -LGD,4060,Block,Etapalli,LGD,475,4060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,838,Block,Etawah,LGD,139,838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -LGD,4806,Block,Etcherla,LGD,519,4806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,765,Block,Etmadpur,LGD,118,765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -LGD,5863,Block,Ettayapuram,LGD,594,5863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,4685,Block,Eturunagaram,LGD,720,4685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,7558,Block,Fagvel,LGD,450,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,905,Block,Faizabad,LGD,140,905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -LGD,2175,Block,Falakata,LGD,664,2175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -LGD,1142,Block,Falka,LGD,201,1142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,2425,Block,Falta,LGD,304,2425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2223,Block,Farakka,LGD,319,2223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,425,Block,Faridabad,LGD,60,425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,242,Block,Faridkot,LGD,29,242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -LGD,789,Block,Faridpur,LGD,130,789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -LGD,4559,Block,Farooqnagar,LGD,518,4559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,832,Block,Farrukhabad,LGD,141,832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -LGD,418,Block,Farrukhnagar,LGD,62,418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,3261,Block,Farsabahar,LGD,380,3261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,769,Block,Fatehabad,LGD,118,769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -LGD,388,Block,Fatehabad,LGD,61,388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -LGD,576,Block,Fatehgarh,LGD,103,576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -LGD,7191,Block,Fatehgarh Churian,LGD,32,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -LGD,221,Block,Fatehgarh Sahib,LGD,30,221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -LGD,95,Block,Fatehpur,LGD,18,95,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,878,Block,Fatehpur,LGD,142,878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -LGD,2680,Block,Fatehpur,LGD,333,2680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -LGD,551,Block,Fatehpur,LGD,114,551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,1508,Block,Fatehpur,LGD,196,1508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,896,Block,Fatehpur,LGD,129,896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -LGD,369,Block,Fatehpur Pundri,LGD,66,369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -LGD,3890,Block,Fatepura,LGD,445,3890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,1411,Block,Fatwah,LGD,212,1411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,237,Block,Fazilka,LGD,651,237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -LGD,423,Block,Ferozepur Jhirka,LGD,604,423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -LGD,5922,Block,Ferrargunj,LGD,602,5922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -LGD,7343,Block,Fingeshwar,LGD,645,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -LGD,772,Block,Firozabad,LGD,143,772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -LGD,235,Block,Firozpur,LGD,31,235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -LGD,1113,Block,Forbesganj,LGD,188,1113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,6780,Block,Frisal,LGD,622,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -LGD,753,Block,Gabhana,LGD,119,753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -LGD,5470,Block,Gadag,LGD,537,5470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -LGD,350,Block,Gadarpur,LGD,56,350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,3635,Block,Gadarwara,LGD,418,3635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -LGD,4057,Block,Gadchiroli,LGD,475,4057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,5006,Block,Gaddamanugu Konduru,LGD,749,5006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3852,Block,Gadhada,LGD,676,3852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -LGD,4293,Block,Gadhinglaj,LGD,480,4293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,6225,Block,Gadiguda,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,7273,Block,Gadiras,LGD,642,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -LGD,5281,Block,Gadivemula,LGD,755,5281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6906,Block,Gadraroad,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,4603,Block,Gadwal,LGD,695,4603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,4288,Block,Gaganbawada,LGD,480,4288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,6893,Block,Gagret,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,1209,Block,Gaighat,LGD,208,1209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,2318,Block,Gaighata,LGD,303,2318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,3591,Block,Gairatganj,LGD,421,3591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,289,Block,Gairsain,LGD,47,289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,2759,Block,Gaisilet,LGD,347,2759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,6372,Block,Gaja,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,4825,Block,Gajapathinagaram,LGD,521,4825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,7082,Block,Gajendragad,LGD,537,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -LGD,7376,Block,Gajsinghpur,LGD,100,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,4869,Block,Gajuwaka,LGD,520,4869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,4483,Block,Gajwel,LGD,692,4483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,5235,Block,Galiveedu,LGD,753,5235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6060,Block,Galiyakot,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,142,Block,Galore,LGD,17,142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,2287,Block,Galsi - I,LGD,306,2287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2288,Block,Galsi - II,LGD,306,2288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,6025,Block,Galteshwar,LGD,450,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,1968,Block,Gambegre,LGD,278,1968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,4433,Block,Gambhiraopet,LGD,683,4433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,1158,Block,Gamharia,LGD,205,1158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,4996,Block,Gampalagudem,LGD,749,4996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7138,Block,Gamri Ahara,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,6336,Block,Ganai Gangoli,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,4974,Block,Ganapavaram,LGD,523,4974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,379,Block,Ganaur,LGD,75,379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -LGD,7264,Block,Gandai,LGD,759,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,5820,Block,Gandarvakkottai,LGD,582,5820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,4538,Block,Gandeed,LGD,512,4538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,4904,Block,Gandepalli,LGD,746,4904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,47,Block,Ganderbal,LGD,626,47,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -LGD,3924,Block,Gandevi,LGD,453,3924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -LGD,2538,Block,Gandey,LGD,329,2538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,4382,Block,Gandhari,LGD,685,4382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,3731,Block,Gandhidham,LGD,449,3731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,3775,Block,Gandhinagar,LGD,446,3775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -LGD,439,Block,Gandhi Nagar,LGD,78,439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 -LGD,3535,Block,Gandhwani,LGD,403,3535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,2991,Block,Gandia,LGD,352,2991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,6316,Block,Gandimaisamma Dundigal,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,6320,Block,Gandipet,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,5342,Block,Gandlapenta,LGD,754,5342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4422,Block,Gangadhara,LGD,508,4422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,5420,Block,Gangadhara Nellore,LGD,503,5420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,6610,Block,Gangadtalai,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,2358,Block,Gangajalghati,LGD,305,2358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,4122,Block,Gangakhed,LGD,489,4122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,7263,Block,Gangaloor,LGD,636,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -LGD,458,Block,Ganganagar,LGD,100,458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,526,Block,Gangapur,LGD,113,526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,4140,Block,Gangapur,LGD,469,4140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,6253,Block,Gangaram,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,2201,Block,Gangarampur,LGD,310,2201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,6921,Block,Gangath,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,5744,Block,Gangavalli,LGD,584,5744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,4894,Block,Gangavaram,LGD,791,4894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5417,Block,Gangavaram,LGD,503,5417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5466,Block,Gangawati,LGD,543,5466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -LGD,684,Block,Gangdhar,LGD,105,684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,319,Block,Gangolihat,LGD,53,319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,656,Block,Gangrar,LGD,95,656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,1710,Block,Gangte Circle,LGD,677,1710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -LGD,1553,Block,Gangtok,LGD,225,1553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -LGD,4797,Block,Ganguvarisigadam,LGD,519,4797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,3022,Block,Gania,LGD,367,3022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,3086,Block,Ganjam,LGD,354,3086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,5012,Block,Gannavaram,LGD,510,5012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,6232,Block,Ganneruvaram,LGD,508,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,6611,Block,Ganora,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,4830,Block,Gantyada,LGD,521,4830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,4801,Block,Gara,LGD,519,4801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,7499,Block,Garadpur,LGD,360,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,857,Block,Garautha,LGD,153,857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -LGD,3894,Block,Garbada,LGD,445,3894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,2444,Block,Garbeta - I,LGD,318,2444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,2443,Block,Garbeta - II,LGD,318,2443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,2445,Block,Garbeta - III,LGD,318,2445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,3450,Block,Garhakota,LGD,425,3450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,1431,Block,Garhani,LGD,193,1431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,6392,Block,Garhbor,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,651,Block,Garhi,LGD,88,651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,741,Block,Garhmukteshwar,LGD,661,741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -LGD,1306,Block,Garhpura,LGD,191,1306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,217,Block,Garhshankar,LGD,33,217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -LGD,2509,Block,Garhwa,LGD,328,2509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,3857,Block,Gariadhar,LGD,443,3857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,4666,Block,Garidepally,LGD,696,4666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,4826,Block,Garividi,LGD,521,4826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,3335,Block,Gariyaband,LGD,645,3335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -LGD,1265,Block,Garkha,LGD,218,1265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,4743,Block,Garla,LGD,688,4743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,5324,Block,Garladinne,LGD,502,5324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,3494,Block,Garoth,LGD,416,3494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,2638,Block,Garu,LGD,335,2638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,324,Block,Garud,LGD,46,324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -LGD,6029,Block,Garudeshwar,LGD,452,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -LGD,4811,Block,Garugubilli,LGD,743,4811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1976,Block,Gasuapara,LGD,277,1976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -LGD,7526,Block,Gattuppal,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,1015,Block,Gaunaha,LGD,211,1015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,6416,Block,Gaunchi St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,5595,Block,Gauribidanur,LGD,630,5595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,913,Block,Gauriganj,LGD,640,913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -LGD,3424,Block,Gaurihar,LGD,398,3424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,7115,Block,Gauripur,LGD,285,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,743,Block,Gautam Buddha Nagar,LGD,144,743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -LGD,2532,Block,Gawan,LGD,329,2532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,1495,Block,Gaya Town C.D.Block,LGD,196,1495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,2214,Block,Gazole,LGD,316,2214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,4707,Block,Geesugonda,LGD,522,4707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,1665,Block,Geku Eac,LGD,240,1665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,1661,Block,Gelling Circle,LGD,240,1661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,1638,Block,Gensi Eac,LGD,719,1638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,4218,Block,Georai,LGD,470,4218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,6559,Block,Gepen Circle,LGD,718,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 -LGD,6343,Block,Ghaat,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,2707,Block,Ghaghra,LGD,331,2707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,6721,Block,Ghagwal,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -LGD,1160,Block,Ghailarh,LGD,205,1160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,6888,Block,Ghanari,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,943,Block,Ghanghata,LGD,178,943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -LGD,4585,Block,Ghanpur,LGD,693,4585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,4683,Block,Ghanpur (Mulug),LGD,687,4683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,4676,Block,Ghanpur (Station),LGD,689,4676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,293,Block,Ghansali,LGD,55,293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,3661,Block,Ghansaur,LGD,428,3661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,4130,Block,Ghansawangi,LGD,479,4130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,1194,Block,Ghanshyampur,LGD,195,1194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,5033,Block,Ghantasala,LGD,510,5033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,7221,Block,Ghantiyali,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,374,Block,Gharaunda,LGD,67,374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,3265,Block,Gharghoda,LGD,386,3265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,463,Block,Gharsana,LGD,100,463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,7377,Block,Ghasa,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,2853,Block,Ghasipura,LGD,361,2853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,2448,Block,Ghatal,LGD,318,2448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,850,Block,Ghatampur,LGD,157,850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -LGD,4089,Block,Ghatanji,LGD,500,4089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,2850,Block,Ghatgaon,LGD,361,2850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,1776,Block,Ghathashi,LGD,251,1776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,7026,Block,Ghatigaon,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,3511,Block,Ghatiya,LGD,435,3511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,4523,Block,Ghatkesar,LGD,700,4523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,1375,Block,Ghat Kusumbha,LGD,219,1375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -LGD,6513,Block,Ghatlodiya,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,650,Block,Ghatol,LGD,88,650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,2607,Block,Ghatshila,LGD,327,2607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,4605,Block,Ghattu,LGD,695,4605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,739,Block,Ghaziabad,LGD,145,739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -LGD,989,Block,Ghazipur,LGD,146,989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -LGD,6873,Block,Ghiror,LGD,166,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -LGD,3602,Block,Ghoda Dongri,LGD,394,3602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,3855,Block,Ghogha,LGD,443,3855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,3887,Block,Ghoghamba,LGD,454,3887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,1098,Block,Ghoghardiha,LGD,206,1098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,2138,Block,Ghograpar (Pt),LGD,298,2138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -LGD,1038,Block,Ghorasahan,LGD,213,1038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1004,Block,Ghorawal,LGD,184,1004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -LGD,1539,Block,Ghoshi,LGD,199,1539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -LGD,971,Block,Ghosi,LGD,168,971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -LGD,1419,Block,Ghoswari,LGD,212,1419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,3644,Block,Ghughari,LGD,415,3644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -LGD,152,Block,Ghumarwin,LGD,15,152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -LGD,7352,Block,Ghumka,LGD,388,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -LGD,7490,Block,Ghumusar,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,3432,Block,Ghuwara,LGD,398,3432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,1613,Block,Giba Circle,LGD,241,1613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,6907,Block,Gida,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3370,Block,Gidam,LGD,376,3370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -LGD,5133,Block,Giddalur,LGD,790,5133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,240,Block,Gidderbaha,LGD,39,240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -LGD,1531,Block,Gidhaur,LGD,198,1531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,2522,Block,Gidhaur,LGD,323,2522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,5728,Block,Gingee,LGD,596,5728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,3399,Block,Gird,LGD,407,3399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,6199,Block,Gir Gadhda,LGD,675,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -LGD,1396,Block,Giriak,LGD,209,1396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,2539,Block,Giridih,LGD,329,2539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,689,Block,Girwa,LGD,117,689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,6551,Block,Gite Ripa Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,4848,Block,G.Madugula,LGD,745,4848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2193,Block,Goalpokher - I,LGD,311,2193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,2194,Block,Goalpokher - II,LGD,311,2194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,5751,Block,Gobichettipalayam,LGD,573,5751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,2583,Block,Gobindpur,LGD,325,2583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,1518,Block,Gobindpur,LGD,210,1518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,2754,Block,Gobindpur(Rajnagar),LGD,341,2754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,7259,Block,Gobra Nawapara,LGD,387,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,2561,Block,Godda,LGD,330,2561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,7546,Block,Godhar,LGD,669,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,7598,Block,Godharacity,LGD,454,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,3885,Block,Godhra,LGD,454,3885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,2058,Block,Gogamukh,LGD,284,2058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -LGD,3551,Block,Gogaon,LGD,414,3551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,2338,Block,Goghat - I,LGD,312,2338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,2339,Block,Goghat - II,LGD,312,2339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,1327,Block,Gogri,LGD,202,1327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -LGD,686,Block,Gogunda,LGD,117,686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,1478,Block,Goh,LGD,189,1478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,3395,Block,Gohad,LGD,395,3395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,378,Block,Gohana,LGD,75,378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -LGD,3593,Block,Goharganj,LGD,421,3593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,6979,Block,Gohparu,LGD,429,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -LGD,2047,Block,Gohpur,LGD,705,2047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -LGD,1738,Block,Goiliang Circle,LGD,628,1738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,2733,Block,Goilkera,LGD,343,2733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,5436,Block,Gokak,LGD,527,5436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,7584,Block,Gokalpur,LGD,81,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 -LGD,4897,Block,Gokavaram,LGD,505,4897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,954,Block,Gola,LGD,148,954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -LGD,2665,Block,Gola,LGD,607,2665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -LGD,2085,Block,Golaghat,LGD,288,2085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -LGD,799,Block,Gola Gokaran Nath,LGD,159,799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -LGD,6015,Block,Golakganj Pt,LGD,285,2007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,3167,Block,Golamunda,LGD,358,3167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,4507,Block,Golconda,LGD,507,4507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,4412,Block,Gollapalli,LGD,681,4412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,4902,Block,Gollaprolu,LGD,746,4902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2606,Block,Golmuri-Cum-Jugsalai,LGD,327,2606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,4853,Block,Golugonda,LGD,744,4853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2591,Block,Gomia,LGD,322,2591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,928,Block,Gonda,LGD,147,928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -LGD,3807,Block,Gondal,LGD,457,3807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,7439,Block,Gondal City,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,6686,Block,Gonda Twisa,LGD,269,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -LGD,4046,Block,Gondiya,LGD,476,4046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,4078,Block,Gondpipri,LGD,473,4078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,5270,Block,Gonegandla,LGD,511,5270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,6763,Block,Gool,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,5310,Block,Gooty,LGD,502,5310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,3062,Block,Gop,LGD,369,3062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,7480,Block,Gopabandhunagar,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,3699,Block,Gopadbanas,LGD,433,3699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,6838,Block,Gopalapatnam,LGD,520,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,4951,Block,Gopalapuram,LGD,505,4951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,1224,Block,Gopalganj,LGD,197,1224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,4596,Block,Gopalpeta,LGD,693,4596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,1334,Block,Gopalpur,LGD,192,1334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,5211,Block,Gopavaram,LGD,504,5211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,2457,Block,Gopiballavpur - I,LGD,703,2457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,2456,Block,Gopiballavpur - II,LGD,703,2456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,2669,Block,Gopikandar,LGD,326,2669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,1196,Block,Gora Bauram,LGD,195,1196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,1342,Block,Goradih,LGD,192,1342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,7011,Block,Gorakhpur,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,950,Block,Gorakhpur,LGD,148,950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -LGD,5362,Block,Gorantla,LGD,754,5362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1272,Block,Goraul,LGD,224,1272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,4045,Block,Goregaon,LGD,476,4045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,2141,Block,Goreswar,LGD,756,2141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -LGD,1232,Block,Goriakothi,LGD,222,1232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,6471,Block,Goriwala St,LGD,74,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -LGD,3394,Block,Gormi,LGD,395,3394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,2121,Block,Goroimari,LGD,291,2121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,2158,Block,Gorubathan,LGD,702,2158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -LGD,2435,Block,Gosaba,LGD,304,2435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,5287,Block,Gospadu,LGD,755,5287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2001,Block,Gossaigaon,LGD,294,2001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -LGD,3634,Block,Gotegaon,LGD,418,3634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -LGD,6832,Block,Govardhan,LGD,167,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -LGD,4688,Block,Govindaraopet,LGD,720,4688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,6383,Block,Govindgarh,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,7554,Block,Govindguru Limdi,LGD,445,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,5918,Block,Great Nicobar,LGD,603,5918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 -LGD,5538,Block,Gubbi,LGD,548,5538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,5755,Block,Gudalur,LGD,587,5755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -LGD,3184,Block,Gudari,LGD,370,3184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,3114,Block,G.Udayagiri,LGD,359,3114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,4850,Block,Gudem Kotha Veedhi,LGD,745,4850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7144,Block,Gudhagorji,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,581,Block,Gudha Malani,LGD,775,581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5597,Block,Gudibanda,LGD,630,5597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,5352,Block,Gudibanda,LGD,754,5352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4310,Block,Gudihatnoor,LGD,501,4310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,5431,Block,Gudipala,LGD,503,5431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,7527,Block,Gudipally,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,5021,Block,Gudivada,LGD,510,5021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,5712,Block,Gudiyatham,LGD,595,5712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -LGD,5029,Block,Gudlavalleru,LGD,510,5029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,5151,Block,Gudluru,LGD,517,5151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,2729,Block,Gudri,LGD,343,2729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,5426,Block,Gudupalle,LGD,503,5426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,4711,Block,Gudur,LGD,688,4711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,5184,Block,Gudur,LGD,515,5184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5257,Block,Gudur,LGD,511,5257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5031,Block,Guduru,LGD,510,5031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,4270,Block,Guhagar,LGD,492,4270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,367,Block,Guhla,LGD,66,367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -LGD,7169,Block,Guindy,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,6700,Block,Gujiliamparai,LGD,572,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,3578,Block,Gulabganj,LGD,437,3578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,3520,Block,Gulana,LGD,430,3520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -LGD,7061,Block,Guledgudda,LGD,524,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,2712,Block,Gumla,LGD,331,2712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,7505,Block,Gumma,LGD,353,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -LGD,6277,Block,Gummadidala,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,5319,Block,Gummagatta,LGD,502,5319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,4808,Block,Gummalakshmipuram,LGD,743,4808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5693,Block,Gummidipoondi,LGD,589,5693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,6602,Block,Gumto Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,3677,Block,Guna,LGD,406,3677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,6609,Block,Guna Nagar,LGD,406,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,6806,Block,Gund,LGD,626,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -LGD,4618,Block,Gundala,LGD,697,4618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,4741,Block,Gundala,LGD,690,4741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,3319,Block,Gunderdehi,LGD,646,3319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -LGD,4651,Block,Gundlapally,LGD,514,4651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,5576,Block,Gundlupet,LGD,531,5576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -LGD,6749,Block,Gundna,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,7523,Block,Gundumal,LGD,721,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,778,Block,Gunnaur,LGD,659,778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -LGD,3438,Block,Gunnor,LGD,420,3438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,5309,Block,Guntakal,LGD,502,5309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,6833,Block,Guntur East,LGD,506,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,5074,Block,Guntur West,LGD,506,5074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,3183,Block,Gunupur,LGD,370,3183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,5044,Block,Gurajala,LGD,751,5044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1497,Block,Guraru,LGD,196,1497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,2612,Block,Gurbandha,LGD,327,2612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,202,Block,Gurdaspur,LGD,32,202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -LGD,40,Block,Gurez,LGD,623,40,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -LGD,417,Block,Gurgaon,LGD,62,417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,3481,Block,Gurh,LGD,424,3481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,4828,Block,Gurla,LGD,521,4828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,7094,Block,Gurmitakal,LGD,635,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -LGD,5370,Block,Gurramkonda,LGD,753,5370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4657,Block,Gurrampode,LGD,514,4657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,7562,Block,Gurthedu,LGD,791,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1498,Block,Gurua,LGD,196,1498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,6011,Block,Guruharsahai,LGD,31,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -LGD,2828,Block,Gurundia,LGD,373,2828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,3323,Block,Gurur,LGD,646,3323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -LGD,1241,Block,Guthani,LGD,222,1241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,2128,Block,Guwahati,LGD,618,2128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -LGD,7395,Block,Gwalior Gramin,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,1165,Block,Gwalpara,LGD,205,1165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,1549,Block,Gyalshing,LGD,228,1549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 -LGD,998,Block,Gyanpur,LGD,179,998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -LGD,3577,Block,Gyaraspur,LGD,437,3577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,1588,Block,Gyawe Purang Circle,LGD,231,1588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,2216,Block,Habibpur,LGD,316,2216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,2320,Block,Habra - I,LGD,303,2320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,2321,Block,Habra - II,LGD,303,2321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,7555,Block,Hadad,LGD,441,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,5496,Block,Hadagalli,LGD,738,5496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -LGD,7378,Block,Hadan,LGD,93,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,4098,Block,Hadgaon,LGD,485,4098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,2093,Block,Haflong,LGD,299,2093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -LGD,5497,Block,Hagaribommanahalli,LGD,738,5497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -LGD,901,Block,Haidergarh,LGD,129,901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -LGD,2616,Block,Haidernagar,LGD,338,2616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,2107,Block,Hailakandi,LGD,289,2107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -LGD,6811,Block,Hajin,LGD,623,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -LGD,6227,Block,Hajipur,LGD,684,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,1278,Block,Hajipur,LGD,224,1278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,2119,Block,Hajo,LGD,291,2119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,5273,Block,Halaharvi,LGD,511,5273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,2483,Block,Haldia,LGD,317,2483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2179,Block,Haldibari,LGD,308,2179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,342,Block,Haldwani,LGD,51,342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,5480,Block,Haliyal,LGD,550,5480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,3888,Block,Halol,LGD,454,3888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,1371,Block,Halsi,LGD,204,1371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -LGD,3788,Block,Halvad,LGD,673,3788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -LGD,6068,Block,Hameergarh,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,143,Block,Hamirpur,LGD,17,143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,864,Block,Hamirpur,LGD,149,864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -LGD,4695,Block,Hanamkonda,LGD,686,4695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,893,Block,Handia,LGD,120,893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,3609,Block,Handiya,LGD,408,3609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -LGD,2,Block,Handwara,LGD,8,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,5491,Block,Hangal,LGD,540,5491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,194,Block,Hangrang,LGD,19,194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -LGD,396,Block,Hansi,LGD,792,396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -LGD,2310,Block,Hanskhali,LGD,320,2310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,3919,Block,Hansot,LGD,442,3919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,3476,Block,Hanumana,LGD,766,3476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,468,Block,Hanumangarh,LGD,101,468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,1190,Block,Hanumannagar,LGD,195,1190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,5130,Block,Hanumanthuni Padu,LGD,790,5130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7077,Block,Hanur,LGD,531,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -LGD,4555,Block,Hanwada,LGD,512,4555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,6039,Block,Haochong,LGD,714,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 -LGD,740,Block,Hapur,LGD,661,740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -LGD,3132,Block,Harabhanga,LGD,349,3132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -LGD,5510,Block,Harapanahalli,LGD,738,5510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -LGD,97,Block,Harchakian,LGD,18,97,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,3608,Block,Harda,LGD,408,3608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -LGD,7271,Block,Hardibazar,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,811,Block,Hardoi,LGD,150,811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -LGD,354,Block,Hardwar,LGD,50,354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -LGD,2851,Block,Harichandanpur,LGD,361,2851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,5509,Block,Harihar,LGD,535,5509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -LGD,2618,Block,Hariharganj,LGD,338,2618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,2242,Block,Hariharpara,LGD,319,2242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,3748,Block,Harij,LGD,455,3748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,2315,Block,Haringhata,LGD,320,2315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,2348,Block,Haripal,LGD,312,2348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,6920,Block,Haripur,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,6953,Block,Haripurdhar,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,2207,Block,Harirampur,LGD,310,2207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,2208,Block,Harischandrapur - I,LGD,316,2208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,2209,Block,Harischandrapur - II,LGD,316,2209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,2151,Block,Harisinga,LGD,617,2151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -LGD,1081,Block,Harlakhi,LGD,206,1081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,6800,Block,Harmain,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -LGD,1380,Block,Harnaut,LGD,209,1380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,2331,Block,Haroa,LGD,303,2331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,7196,Block,Harohalli,LGD,631,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -LGD,151,Block,Haroli,LGD,26,151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,3649,Block,Harrai,LGD,399,3649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,938,Block,Harraiya,LGD,131,938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -LGD,6423,Block,Harsaru St,LGD,62,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,1043,Block,Harsidhi,LGD,213,1043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,7208,Block,Harsoli,LGD,770,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3714,Block,Harsud,LGD,405,3714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,5886,Block,Harur,LGD,571,5886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -LGD,1144,Block,Hasanganj,LGD,201,1144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,815,Block,Hasanganj,LGD,186,815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -LGD,4678,Block,Hasanparthy,LGD,686,4678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,1302,Block,Hasanpur,LGD,217,1302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,731,Block,Hasanpur,LGD,154,731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -LGD,1245,Block,Hasanpura,LGD,222,1245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,2336,Block,Hasnabad,LGD,303,2336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,7327,Block,Hasoud,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,1477,Block,Haspura,LGD,189,1477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,5556,Block,Hassan,LGD,539,5556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,6478,Block,Hassanpur St,LGD,619,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -LGD,956,Block,Hata,LGD,160,956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -LGD,7494,Block,Hatadihi,LGD,361,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,2738,Block,Hat Gamharia,LGD,343,2738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,428,Block,Hathin,LGD,619,428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -LGD,4489,Block,Hathnoora,LGD,691,4489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,759,Block,Hathras,LGD,163,759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -LGD,1221,Block,Hathua,LGD,197,1221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,4285,Block,Hatkanangle,LGD,480,4285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,3541,Block,Hatod,LGD,410,3541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,3530,Block,Hatpiplya,LGD,402,3530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,3454,Block,Hatta,LGD,400,3454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,4193,Block,Haveli,LGD,490,4193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,16,Block,Haveli,LGD,10,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -LGD,6270,Block,Havelighanapur,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,5492,Block,Haveri,LGD,540,5492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,1743,Block,Hawai Hq,LGD,628,1743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,1191,Block,Hayaghat,LGD,195,1191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,4525,Block,Hayathnagar,LGD,518,4525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,1736,Block,Hayuliang Adc,LGD,628,1736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,2653,Block,Hazaribag,LGD,332,2653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,7065,Block,Hebri,LGD,549,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -LGD,5573,Block,Heggadadevankote,LGD,545,5573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,2046,Block,Helem,LGD,705,2046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -LGD,2804,Block,Hemgir,LGD,373,2804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,2197,Block,Hemtabad,LGD,311,2197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,6502,Block,Henglep,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,2642,Block,Herhanj,LGD,335,2642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,2203,Block,Hilli,LGD,310,2203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,1390,Block,Hilsa,LGD,209,1390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,3766,Block,Himatnagar,LGD,458,3766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,4503,Block,Himayatnagar,LGD,507,4503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,4097,Block,Himayatnagar,LGD,485,4097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,522,Block,Hindaun,LGD,108,522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,2997,Block,Hindol,LGD,352,2997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,622,Block,Hindoli,LGD,94,622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -LGD,5364,Block,Hindupur,LGD,754,5364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2337,Block,Hingalganj,LGD,303,2337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,4021,Block,Hinganghat,LGD,498,4021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,4033,Block,Hingna,LGD,484,4033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,4112,Block,Hingoli,LGD,477,4112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -LGD,3090,Block,Hinjili,LGD,354,3090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,4783,Block,Hiramandalam,LGD,519,4783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,31,Block,Hiranagar,LGD,7,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,2575,Block,Hiranpur,LGD,337,2575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -LGD,2374,Block,Hirbandh,LGD,305,2374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,5494,Block,Hirekerur,LGD,540,5494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,5508,Block,Hiriyur,LGD,533,5508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -LGD,394,Block,Hisar,LGD,63,394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -LGD,1520,Block,Hisua,LGD,210,1520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,1915,Block,Hnahthial,LGD,726,1915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -LGD,429,Block,Hodal,LGD,619,429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -LGD,2038,Block,Hojai,LGD,709,2038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -LGD,5272,Block,Holagunda,LGD,511,5272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5506,Block,Holalkere,LGD,533,5506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -LGD,5559,Block,Hole Narsipur,LGD,539,5559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,91,Block,Holi,LGD,16,91,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,5458,Block,Homnabad,LGD,529,5458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,5487,Block,Honavar,LGD,550,5487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,5513,Block,Honnali,LGD,535,5513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -LGD,5604,Block,Hosakote,LGD,526,5604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -LGD,5518,Block,Hosanagara,LGD,547,5518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -LGD,5498,Block,Hosapete,LGD,738,5498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -LGD,5631,Block,Hosdurg,LGD,558,5631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -LGD,5507,Block,Hosdurga,LGD,533,5507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -LGD,3614,Block,Hoshangabad,LGD,409,3614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,7045,Block,Hoshangabad Nagar,LGD,409,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,216,Block,Hoshiarpur,LGD,33,216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -LGD,5890,Block,Hosur,LGD,577,5890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,5475,Block,Hubballi,LGD,536,5475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,7079,Block,Hubballi Urban,LGD,536,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,5437,Block,Hukkeri,LGD,527,5437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,4846,Block,Hukumpeta,LGD,745,4846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1541,Block,Hulasganj,LGD,199,1541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -LGD,7086,Block,Hulsoor,LGD,529,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,7096,Block,Hunasagi,LGD,635,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -LGD,5448,Block,Hungund,LGD,524,5448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,6075,Block,Hunli Sdo,LGD,235,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -LGD,5570,Block,Hunsur,LGD,545,5570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,1746,Block,Hunta,LGD,247,1746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,2386,Block,Hura,LGD,321,2386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,628,Block,Hurda,LGD,92,628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,4444,Block,Husnabad,LGD,692,4444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,2615,Block,Hussainabad,LGD,338,2615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,1238,Block,Hussainganj,LGD,222,1238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,3479,Block,Huzur,LGD,424,3479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,3581,Block,Huzur,LGD,396,3581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -LGD,4446,Block,Huzurabad,LGD,508,4446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,4669,Block,Huzurnagar,LGD,696,4669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,7041,Block,Huzur Nagar,LGD,424,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,4546,Block,Ibrahimpatnam,LGD,518,4546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,4393,Block,Ibrahimpatnam,LGD,681,4393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,5009,Block,Ibrahimpatnam,LGD,749,5009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2749,Block,Ichagarh,LGD,341,2749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,2647,Block,Ichak,LGD,332,2647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,4778,Block,Ichchapuram,LGD,519,4778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,3586,Block,Ichhawar,LGD,427,3586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,4322,Block,Ichoda,LGD,501,4322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,3763,Block,Idar,LGD,458,3763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,5942,Block,Idukki,LGD,556,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -LGD,4606,Block,Ieeja,LGD,695,4606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,4153,Block,Igatpuri,LGD,487,4153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,756,Block,Iglas,LGD,119,756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -LGD,924,Block,Ikauna,LGD,181,924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -LGD,5834,Block,Ilayangudi,LGD,585,5834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,7062,Block,Ilkal,LGD,524,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,2265,Block,Illambazar,LGD,307,2265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,4436,Block,Illanthakunta,LGD,683,4436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,5818,Block,Iluppur,LGD,582,5818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,1501,Block,Imamganj,LGD,196,1501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,6249,Block,Inavole,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,6236,Block,Indalwai,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,4200,Block,Indapur,LGD,490,4200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,4311,Block,Inderavelly,LGD,501,4311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,3404,Block,Indergarh,LGD,401,3404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -LGD,5450,Block,Indi,LGD,530,5450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,94,Block,Indora,LGD,18,94,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,2360,Block,Indpur,LGD,305,2360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,624,Block,Indragarh,LGD,94,624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -LGD,371,Block,Indri,LGD,67,371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,7172,Block,Indri,LGD,604,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -LGD,5179,Block,Indukurpet,LGD,515,5179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,2366,Block,Indus,LGD,305,2366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,5110,Block,Inkollu,LGD,750,5110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7538,Block,Inugurthy,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,4931,Block,I. Polavaram,LGD,747,4931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5065,Block,Ipuru,LGD,751,5065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4979,Block,Iragavaram,LGD,523,4979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,5411,Block,Irala,LGD,503,5411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5937,Block,Iritty,LGD,557,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -LGD,3684,Block,Isagarh,LGD,391,3684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,1251,Block,Ishupur,LGD,218,1251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,1525,Block,Islamnagar Aliganj,LGD,198,1525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,1392,Block,Islampur,LGD,209,1392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,2192,Block,Islampur,LGD,311,2192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,6487,Block,Island,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,6453,Block,Ismailabad St,LGD,68,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -LGD,1337,Block,Ismailpur,LGD,192,1337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,6889,Block,Ispur,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,376,Block,Israna,LGD,71,376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -LGD,2199,Block,Itahar,LGD,311,2199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,6604,Block,Itanagar Eac,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,1444,Block,Itarhi,LGD,194,1444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,3613,Block,Itarsi,LGD,409,3613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,4607,Block,Itikyala,LGD,695,4607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,2520,Block,Itkhori,LGD,323,2520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,2696,Block,Itki,LGD,339,2696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,935,Block,Itwa,LGD,182,935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -LGD,3631,Block,Jabalpur,LGD,411,3631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,3459,Block,Jabera,LGD,400,3459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,4567,Block,Jadcherla,LGD,512,4567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,4126,Block,Jafrabad,LGD,479,4126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,3848,Block,Jafrabad,LGD,439,3848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,361,Block,Jagadhri,LGD,76,361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -LGD,5511,Block,Jagalur,LGD,535,5511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -LGD,3073,Block,Jagannath Prasad,LGD,354,3073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,2743,Block,Jagannathpur,LGD,343,2743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,7356,Block,Jagargunda,LGD,642,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -LGD,2401,Block,Jagatballavpur,LGD,313,2401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,2940,Block,Jagatsinghapur,LGD,355,2940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,3360,Block,Jagdalpur,LGD,374,3360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,4484,Block,Jagdevpur,LGD,692,4484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,1343,Block,Jagdishpur,LGD,192,1343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,1428,Block,Jagdishpur,LGD,193,1428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,4991,Block,Jaggaiahpeta,LGD,749,4991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4898,Block,Jaggampeta,LGD,746,4898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4414,Block,Jagitial,LGD,681,4414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,6211,Block,Jagitial Rural,LGD,681,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,230,Block,Jagraon,LGD,36,230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -LGD,636,Block,Jahazpur,LGD,92,636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,7413,Block,Jahu,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,3286,Block,Jaijaipur,LGD,762,3286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,2529,Block,Jainagar,LGD,334,2529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -LGD,1083,Block,Jainagar,LGD,206,1083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,4307,Block,Jainath,LGD,501,4307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,4320,Block,Jainoor,LGD,699,4320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,332,Block,Jainti,LGD,45,332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,4355,Block,Jaipur,LGD,684,4355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,2378,Block,Jaipur,LGD,321,2378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,546,Block,Jaipur,LGD,102,546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,6582,Block,Jairampur Adc,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,574,Block,Jaisalmer,LGD,103,574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -LGD,6984,Block,Jaisinagar,LGD,425,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,3690,Block,Jaisinghnagar,LGD,429,3690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -LGD,110,Block,Jaisinghpur,LGD,18,110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,916,Block,Jaisinghpur,LGD,185,916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -LGD,597,Block,Jaitaran,LGD,774,597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3695,Block,Jaithari,LGD,390,3695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -LGD,3692,Block,Jaitpur,LGD,429,3692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -LGD,243,Block,Jaitu,LGD,29,243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -LGD,4623,Block,Jajireddygudem,LGD,696,4623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,2977,Block,Jajpur,LGD,356,2977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,6438,Block,Jakhal St,LGD,61,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -LGD,1848,Block,Jakhama,LGD,245,1848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -LGD,987,Block,Jakhania,LGD,146,987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -LGD,296,Block,Jakhani Dhar,LGD,55,296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,6373,Block,Jakhanikhal,LGD,52,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,292,Block,Jakholi*,LGD,54,292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -LGD,4366,Block,Jakranpally,LGD,516,4366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,5157,Block,Jaladanki,LGD,515,5157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,2140,Block,Jalah,LGD,616,2140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -LGD,236,Block,Jalalabad,LGD,651,236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -LGD,796,Block,Jalalabad,LGD,180,796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -LGD,1137,Block,Jalalgarh,LGD,214,1137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,6340,Block,Jalali,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,3923,Block,Jalalpore,LGD,453,3923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -LGD,1256,Block,Jalalpur,LGD,218,1256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,909,Block,Jalalpur,LGD,121,909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -LGD,212,Block,Jalandhar - I,LGD,34,212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -LGD,213,Block,Jalandhar - II,LGD,34,213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -LGD,2234,Block,Jalangi,LGD,319,2234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,852,Block,Jalaun,LGD,151,852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -LGD,2725,Block,Jaldega,LGD,342,2725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,1181,Block,Jale,LGD,195,1181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,1009,Block,Jalesar,LGD,138,1009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -LGD,2890,Block,Jaleswar,LGD,346,2890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,3966,Block,Jalgaon,LGD,478,3966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,3975,Block,Jalgaon (Jamod),LGD,472,3975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,4229,Block,Jalkot,LGD,481,4229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,4127,Block,Jalna,LGD,479,4127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,6961,Block,Jalog,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,587,Block,Jalore,LGD,104,587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,2178,Block,Jalpaiguri,LGD,314,2178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,7379,Block,Jalsu,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,1852,Block,Jalukie,LGD,613,1852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -LGD,4792,Block,Jalumuru,LGD,519,4792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,2674,Block,Jama,LGD,326,2674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,3651,Block,Jamai (Junnardeo),LGD,399,3651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,1358,Block,Jamalpur,LGD,207,1358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,2295,Block,Jamalpur,LGD,306,2295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2792,Block,Jamankira,LGD,371,2792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,2455,Block,Jamboni,LGD,703,2455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,3889,Block,Jambughoda,LGD,454,3889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,3913,Block,Jambusar,LGD,442,3913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,2860,Block,Jamda,LGD,365,2860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,4835,Block,Jami,LGD,521,4835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,6563,Block,Jamiri Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,3821,Block,Jamjodhpur,LGD,447,3821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -LGD,3808,Block,Jamkandorna,LGD,457,3808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,5443,Block,Jamkhandi,LGD,524,5443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,4214,Block,Jamkhed,LGD,466,4214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,5215,Block,Jammalamadugu,LGD,504,5215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4440,Block,Jammikunta,LGD,508,4440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,79,Block,Jammu,LGD,5,79,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,6708,Block,Jammu North,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,6706,Block,Jammu South,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,6718,Block,Jammu West,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,6525,Block,Jamnagar City,LGD,447,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -LGD,3814,Block,Jamnagar Rural,LGD,447,3814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -LGD,3974,Block,Jamner,LGD,478,3974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,6677,Block,Jampuijala,LGD,653,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -LGD,2678,Block,Jamtara,LGD,333,2678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -LGD,2536,Block,Jamua,LGD,329,2536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,1527,Block,Jamui,LGD,198,1527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,6164,Block,Jamunaha,LGD,181,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -LGD,6631,Block,Jamunamarathoor,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,2270,Block,Jamuria,LGD,704,2270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,548,Block,Jamwaramgarh,LGD,102,548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,7590,Block,Janakpuri,LGD,85,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 -LGD,1276,Block,Jandaha,LGD,224,1276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,1561,Block,Jang Adc,LGD,238,1561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,4953,Block,Jangareddigudem,LGD,748,4953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2353,Block,Jangipara,LGD,312,2353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,6957,Block,Jangla,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,4699,Block,Jangoan,LGD,689,4699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,7572,Block,Jangpura,LGD,670,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 -LGD,3277,Block,Janjgir,LGD,379,3277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,4334,Block,Jannaram,LGD,684,4334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,7380,Block,Janoothar,LGD,767,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,711,Block,Jansath,LGD,172,711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -LGD,4263,Block,Jaoli,LGD,494,4263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,3501,Block,Jaora,LGD,423,3501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,7311,Block,Jarhagaon,LGD,647,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -LGD,7283,Block,Jari,LGD,20,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,2594,Block,Jaridih,LGD,322,2594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,2667,Block,Jarmundi,LGD,326,2667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,3806,Block,Jasdan,LGD,457,3806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,2867,Block,Jashipur,LGD,365,2867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,3257,Block,Jashpur,LGD,380,3257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,347,Block,Jaspur,LGD,56,347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,773,Block,Jasrana,LGD,143,773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -LGD,7365,Block,Jasrasar,LGD,93,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,105,Block,Jaswan,LGD,18,105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,836,Block,Jaswantnagar,LGD,139,836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -LGD,6044,Block,Jaswantpura,LGD,104,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,4304,Block,Jat,LGD,493,4304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,3049,Block,Jatani,LGD,362,3049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,3418,Block,Jatara,LGD,434,3418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,984,Block,Jaunpur,LGD,152,984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -LGD,3472,Block,Jawa,LGD,424,3472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,3487,Block,Jawad,LGD,419,3487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -LGD,104,Block,Jawalamukhi,LGD,18,104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,96,Block,Jawali,LGD,18,96,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,3585,Block,Jawar,LGD,427,3585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,4160,Block,Jawhar,LGD,665,4160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,559,Block,Jayal,LGD,110,559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,3170,Block,Jayapatna,LGD,358,3170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,2431,Block,Jaynagar - I,LGD,304,2431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2432,Block,Jaynagar - II,LGD,304,2432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2368,Block,Jaypur,LGD,305,2368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,4947,Block,Jeelugu Milli,LGD,748,4947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3563,Block,Jeerapur,LGD,422,3563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,1536,Block,Jehanabad,LGD,199,1536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -LGD,1664,Block,Jengging Circle,LGD,240,1664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,6203,Block,Jesar,LGD,443,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,6481,Block,Jessami,LGD,260,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 -LGD,3811,Block,Jetpur,LGD,457,3811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,7440,Block,Jetpur City,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,3900,Block,Jetpur Pavi,LGD,668,3900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -LGD,5586,Block,Jevargi,LGD,538,5586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,744,Block,Jewar,LGD,144,744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -LGD,3209,Block,Jeypore,LGD,363,3209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,3709,Block,Jhabua,LGD,412,3709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -LGD,688,Block,Jhadol,LGD,117,688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,3917,Block,Jhagadia,LGD,442,3917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,1530,Block,Jhajha,LGD,198,1530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,409,Block,Jhajjar,LGD,64,409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -LGD,2390,Block,Jhalda - I,LGD,321,2390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,2391,Block,Jhalda - II,LGD,321,2391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,7229,Block,Jhallara,LGD,777,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3891,Block,Jhalod,LGD,445,3891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,679,Block,Jhalrapatan,LGD,105,679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,154,Block,Jhanduta,LGD,15,154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -LGD,1097,Block,Jhanjharpur,LGD,206,1097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,860,Block,Jhansi,LGD,153,860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -LGD,7220,Block,Jhanwar,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,4476,Block,Jharasangam,LGD,691,4476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,2756,Block,Jharbandh,LGD,347,2756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,6983,Block,Jharda,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,2454,Block,Jhargram,LGD,703,2454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,2585,Block,Jharia-Cum-Jorapokhar-Cum-Sindri,LGD,325,2585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,3191,Block,Jharigan,LGD,366,3191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,2776,Block,Jharsuguda,LGD,357,2776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -LGD,2742,Block,Jhinkpani,LGD,343,2742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,3553,Block,Jhiranya,LGD,414,3553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,6070,Block,Jhonthripal,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,2840,Block,Jhumpura,LGD,361,2840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,487,Block,Jhunjhunu,LGD,106,487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,6346,Block,Jilasu,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,6322,Block,Jilled Chowdergudem,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,383,Block,Jind,LGD,65,383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -LGD,4493,Block,Jinnaram,LGD,691,4493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,4117,Block,Jintur,LGD,489,4117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,3490,Block,Jiran,LGD,419,3490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -LGD,1986,Block,Jirang,LGD,276,1986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -LGD,6679,Block,Jirania,LGD,272,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -LGD,1883,Block,Jiribam,LGD,713,1883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 -LGD,4076,Block,Jiwati,LGD,473,4076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,4810,Block,Jiyyammavalasa,LGD,743,4810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3712,Block,Jobat,LGD,639,3712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -LGD,7141,Block,Jobner,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,570,Block,Jodhpur,LGD,107,570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,3815,Block,Jodiya,LGD,447,3815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -LGD,1024,Block,Jogapatti,LGD,211,1024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,124,Block,Jogindarnagar,LGD,22,124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,1120,Block,Jokihat,LGD,188,1120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,6890,Block,Jol,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,6606,Block,Jomlo Mobuk Circle,LGD,679,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,2057,Block,Jonai,LGD,284,2057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -LGD,2159,Block,Jorebunglow Sukiapokhri,LGD,309,2159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,6399,Block,Jorethang,LGD,227,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -LGD,2078,Block,Jorhat East,LGD,290,2078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -LGD,2077,Block,Jorhat West,LGD,290,2077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -LGD,284,Block,Joshimath,LGD,47,284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,6366,Block,Joshiyara,LGD,57,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,6021,Block,Jotana,LGD,451,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,3388,Block,Joura,LGD,417,3388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,6701,Block,Jourian,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,5111,Block,J.Pangulur,LGD,517,5111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,188,Block,Jubbal,LGD,23,188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,2794,Block,Jujomura,LGD,371,2794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,4373,Block,Jukkal,LGD,685,4373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,384,Block,Julana,LGD,65,384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -LGD,4409,Block,Julapalli,LGD,682,4409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,4746,Block,Julurpadu,LGD,690,4746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,3827,Block,Junagadh,LGD,448,3827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,6517,Block,Junagadh City,LGD,448,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,3166,Block,Junagarh,LGD,358,3166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,183,Block,Junga,LGD,23,183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,3543,Block,Juni Indore,LGD,410,3543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,4187,Block,Junnar,LGD,490,4187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,5262,Block,Jupadu Bunglow,LGD,755,5262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7381,Block,Jurhara,LGD,767,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,6401,Block,Kabi,LGD,226,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 -LGD,3080,Block,Kabisuryanagar,LGD,354,3080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,7366,Block,Kachhola,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,7104,Block,Kadaba,LGD,534,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,5859,Block,Kadaladi,LGD,583,5859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,2051,Block,Kadam,LGD,295,2051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -LGD,3880,Block,Kadana,LGD,669,3880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,5230,Block,Kadapa,LGD,504,5230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,5772,Block,Kadavur,LGD,576,5772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -LGD,6619,Block,Kadayampatti,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,6639,Block,Kadayanallur,LGD,733,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,4335,Block,Kaddam Peddur,LGD,680,4335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,4298,Block,Kadegaon,LGD,493,4298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,3759,Block,Kadi,LGD,451,3759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,4918,Block,Kadiam,LGD,505,4918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,918,Block,Kadipur,LGD,185,918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -LGD,6422,Block,Kadipur St,LGD,62,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,5343,Block,Kadiri,LGD,754,5343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5624,Block,Kadmat,LGD,553,5624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,6324,Block,Kadthal,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,5529,Block,Kadur,LGD,532,5529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,7551,Block,Kadval,LGD,668,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -LGD,1145,Block,Kadwa,LGD,201,1145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,6332,Block,Kafligair,LGD,46,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -LGD,4290,Block,Kagal,LGD,480,4290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,4318,Block,Kagaznagar,LGD,699,4318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,7100,Block,Kagwad,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,1336,Block,Kahalgaon,LGD,192,1336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,6756,Block,Kahara,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,1174,Block,Kahara,LGD,216,1174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,4222,Block,Kaij,LGD,470,4222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,5016,Block,Kaikaluru,LGD,748,5016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3389,Block,Kailaras,LGD,417,3389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,6682,Block,Kailashahar,LGD,655,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -LGD,830,Block,Kaimganj,LGD,141,830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -LGD,706,Block,Kairana,LGD,660,706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 -LGD,2600,Block,Kairo,LGD,336,2600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -LGD,922,Block,Kaiserganj,LGD,125,922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -LGD,368,Block,Kaithal,LGD,66,368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -LGD,4923,Block,Kajuluru,LGD,746,4923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6793,Block,Kakapora,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,3059,Block,Kakatpur,LGD,369,3059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,1878,Block,Kakching,LGD,711,1878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11 -LGD,2437,Block,Kakdwip,LGD,304,2437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,4913,Block,Kakinada (Rural),LGD,746,4913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4914,Block,Kakinada (Urban),LGD,746,4914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6943,Block,Kakira,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,1537,Block,Kako,LGD,199,1537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -LGD,6601,Block,Kakoi Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,5083,Block,Kakumanu,LGD,506,5083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,5582,Block,Kalaburagi,LGD,538,5582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,344,Block,Kaladhungi,LGD,51,344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,7087,Block,Kalagi,LGD,538,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,7507,Block,Kalahandi,LGD,358,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,6427,Block,Kalaigaon,LGD,617,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -LGD,6644,Block,Kalaiyarkoil,LGD,585,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,5371,Block,Kalakada,LGD,753,5371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,24,Block,Kalakote,LGD,12,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,1570,Block,Kalaktang Adc,LGD,242,1570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,4239,Block,Kalamb,LGD,488,4239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,4081,Block,Kalamb,LGD,500,4081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,4025,Block,Kalameshwar,LGD,484,4025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,4114,Block,Kalamnuri,LGD,477,4114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -LGD,7508,Block,Kalampur,LGD,358,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,6882,Block,Kalan,LGD,180,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -LGD,6859,Block,Kalanaur,LGD,32,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -LGD,6467,Block,Kalanaur,LGD,73,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -LGD,6469,Block,Kalanwali,LGD,74,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -LGD,3523,Block,Kalapipal,LGD,430,3523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -LGD,7194,Block,Kalasa,LGD,532,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,5207,Block,Kalasapadu,LGD,504,5207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,5959,Block,Kalasapakkam,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,3817,Block,Kalavad,LGD,447,3817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -LGD,7059,Block,Kalavai,LGD,731,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -LGD,6446,Block,Kalayat,LGD,66,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -LGD,7284,Block,Kalbog,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,2171,Block,Kalchini,LGD,664,2171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -LGD,1543,Block,Kaler,LGD,611,1543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -LGD,2019,Block,Kalgachia,LGD,280,2019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -LGD,5476,Block,Kalghatgi,LGD,536,5476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,4453,Block,Kalher,LGD,691,4453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,2031,Block,Kaliabor,LGD,297,2031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -LGD,2220,Block,Kaliachak - I,LGD,316,2220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,2221,Block,Kaliachak - II,LGD,316,2221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,2222,Block,Kaliachak - III,LGD,316,2222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,2198,Block,Kaliaganj,LGD,311,2198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,5017,Block,Kalidindi,LGD,748,5017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2303,Block,Kaliganj,LGD,320,2303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,5160,Block,Kaligiri,LGD,515,5160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5387,Block,Kalikiri,LGD,753,5387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3227,Block,Kalimela,LGD,364,3227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -LGD,2156,Block,Kalimpong -I,LGD,702,2156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -LGD,6866,Block,Kalinagar,LGD,173,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -LGD,356,Block,Kalka,LGD,70,356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -LGD,456,Block,Kalkaji,LGD,670,456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 -LGD,5882,Block,Kalkulam,LGD,575,5882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -LGD,4985,Block,Kalla,LGD,523,4985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,5734,Block,Kallakkurichi,LGD,729,5734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -LGD,6615,Block,Kalligudi,LGD,578,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,5258,Block,Kallur,LGD,511,5258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,4763,Block,Kalluru,LGD,509,4763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,2293,Block,Kalna - I,LGD,306,2293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2294,Block,Kalna - II,LGD,306,2294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,3886,Block,Kalol,LGD,454,3886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,6938,Block,Kalol,LGD,15,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -LGD,7438,Block,Kalol City,LGD,446,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -LGD,3773,Block,Kalol Gandhinagar,LGD,446,3773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -LGD,6297,Block,Kaloor Thimmandoddi,LGD,695,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,197,Block,Kalpa,LGD,19,197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -LGD,5628,Block,Kalpeni,LGD,553,5628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,853,Block,Kalpi,LGD,151,853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -LGD,302,Block,Kalsi,LGD,49,302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,1090,Block,Kaluahi,LGD,206,1090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,5174,Block,Kaluvoya,LGD,515,5174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,7055,Block,Kalvarayan Hills,LGD,729,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -LGD,4576,Block,Kalwakurthy,LGD,694,4576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,4143,Block,Kalwan,LGD,487,4143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,7215,Block,Kalwar,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,4168,Block,Kalyan,LGD,497,4168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -LGD,5321,Block,Kalyanadurg,LGD,502,5321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,3176,Block,Kalyanasingpur,LGD,370,3176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,6966,Block,Kalyani,LGD,320,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,1048,Block,Kalyanpur,LGD,213,1048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,3819,Block,Kalyanpur,LGD,674,3819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -LGD,7130,Block,Kalyanpur,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,1284,Block,Kalyanpur,LGD,217,1284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,2988,Block,Kamakshyanagar,LGD,352,2988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,7090,Block,Kamalapur,LGD,538,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,4447,Block,Kamalapur,LGD,686,4447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,5224,Block,Kamalapuram,LGD,504,5224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,7085,Block,Kamalnagar,LGD,529,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -LGD,6681,Block,Kamalpur,LGD,269,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -LGD,2118,Block,Kamalpur,LGD,291,2118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,506,Block,Kaman,LGD,767,506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,4400,Block,Kamanpur,LGD,682,4400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,4390,Block,Kamareddy,LGD,685,4390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,4954,Block,Kamavarapukota,LGD,748,4954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6585,Block,Kamba Adc,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,5334,Block,Kambadur,LGD,502,5334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5372,Block,Kambhamvaripalle,LGD,753,5372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2710,Block,Kamdara,LGD,331,2710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,6567,Block,Kamengbari Doimara Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,4745,Block,Kamepalli,LGD,509,4745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,1889,Block,Kamjong,LGD,717,1889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 -LGD,4363,Block,Kammarpally,LGD,516,4363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,7107,Block,Kampli,LGD,528,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -LGD,1700,Block,Kamporijo Circle,LGD,718,1700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 -LGD,4030,Block,Kamptee,LGD,484,4030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,2037,Block,Kampur,LGD,297,2037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -LGD,174,Block,Kamrau,LGD,24,174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,3936,Block,Kamrej,LGD,459,3936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,5858,Block,Kamuthi,LGD,583,5858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,7012,Block,Kanadia,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,4656,Block,Kanagal,LGD,514,4656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,5335,Block,Kanaganipalli,LGD,754,5335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7091,Block,Kanakagiri,LGD,543,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -LGD,5608,Block,Kanakapura,LGD,631,5608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -LGD,6425,Block,Kanalichhina,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,7466,Block,Kanas,LGD,369,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,5661,Block,Kanayannur,LGD,555,5661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -LGD,6685,Block,Kanchanpur,LGD,270,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -LGD,5707,Block,Kancheepuram,LGD,574,5707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -LGD,5007,Block,Kanchikacherla,LGD,749,5007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4777,Block,Kanchili,LGD,519,4777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,322,Block,Kanda,LGD,46,322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -LGD,6651,Block,Kandachipuram,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,166,Block,Kandaghat,LGD,25,166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,7495,Block,Kandhamal,LGD,359,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,4108,Block,Kandhar,LGD,485,4108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,2498,Block,Kandi,LGD,328,2498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,6275,Block,Kandi,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,2240,Block,Kandi,LGD,319,2240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,6360,Block,Kandisaur,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,4545,Block,Kandukur,LGD,518,4545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,5148,Block,Kandukuru,LGD,517,5148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,5306,Block,Kanekal,LGD,502,5306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,46,Block,Kangan,LGD,626,46,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -LGD,6495,Block,Kangchup Geljang,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,5901,Block,Kangeyam,LGD,634,5901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,6572,Block,Kangku Circle,LGD,719,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,6884,Block,Kangoo,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,1861,Block,Kangpokpi,LGD,712,1861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,100,Block,Kangra,LGD,18,100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,4450,Block,Kangti,LGD,691,4450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,6500,Block,Kangvai,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,2519,Block,Kanha Chatti,LGD,323,2519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,5136,Block,Kanigiri,LGD,790,5136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3003,Block,Kaniha,LGD,344,3003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,6458,Block,Kanina,LGD,69,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -LGD,7486,Block,Kanisi,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,5672,Block,Kanjirappally,LGD,560,5672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -LGD,2989,Block,Kankadahad,LGD,352,2989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,4277,Block,Kankavli,LGD,495,4277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,2684,Block,Kanke,LGD,339,2684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,3351,Block,Kanker,LGD,381,3351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,5023,Block,Kankipadu,LGD,510,5023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,3743,Block,Kankrej,LGD,441,3743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,2275,Block,Kanksa,LGD,704,2275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,4133,Block,Kannad,LGD,469,4133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,6251,Block,Kannaigudem,LGD,720,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,834,Block,Kannauj,LGD,155,834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -LGD,6229,Block,Kannepally,LGD,684,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,3527,Block,Kannod,LGD,402,3527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,5633,Block,Kannur,LGD,557,5633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -LGD,6929,Block,Kanod,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,849,Block,Kanpur,LGD,157,849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -LGD,3256,Block,Kansabel,LGD,380,3256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,3149,Block,Kantabanji,LGD,345,3149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,3127,Block,Kantamal,LGD,349,3127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -LGD,6608,Block,Kantang Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,7502,Block,Kantapada,LGD,350,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,718,Block,Kanth,LGD,171,718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -LGD,1204,Block,Kanti,LGD,208,1204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,1688,Block,Kanubari Adc,LGD,666,1688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 -LGD,6054,Block,Kanwas,LGD,109,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -LGD,3869,Block,Kapadvanj,LGD,450,3869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,660,Block,Kapasan,LGD,95,660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,4928,Block,Kapileswarapuram,LGD,505,4928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,321,Block,Kapkot,LGD,46,321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -LGD,6317,Block,Kapra,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,3930,Block,Kaprada,LGD,462,3930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,6879,Block,Kaptanganj,LGD,160,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -LGD,2885,Block,Kaptipada,LGD,365,2885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,7067,Block,Kapu,LGD,549,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -LGD,7348,Block,Kapu,LGD,386,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,206,Block,Kapurthala,LGD,35,206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -LGD,4265,Block,Karad,LGD,494,4265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,3384,Block,Karahal,LGD,431,3384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -LGD,5914,Block,Karaikal,LGD,598,5914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -LGD,5830,Block,Karaikkudi,LGD,585,5830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,1378,Block,Karai Parsurai,LGD,209,1378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,6269,Block,Karakagudem,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,1462,Block,Karakat,LGD,215,1462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,5825,Block,Karambakudi,LGD,582,5825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,5109,Block,Karamchedu,LGD,750,5109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2195,Block,Karandighi,LGD,311,2195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,3997,Block,Karanja,LGD,499,3997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -LGD,4016,Block,Karanja,LGD,498,4016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,2870,Block,Karanjia,LGD,365,2870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,457,Block,Karanpur,LGD,100,457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,4922,Block,Karapa,LGD,746,4922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7092,Block,Karatagi,LGD,543,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -LGD,523,Block,Karauli,LGD,108,523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,6083,Block,Karawal Nagar,LGD,81,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 -LGD,6690,Block,Karbook,LGD,654,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -LGD,892,Block,Karchhana,LGD,120,892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,3637,Block,Kareli,LGD,418,3637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -LGD,5046,Block,Karempudi,LGD,751,5046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6064,Block,Karera,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,3410,Block,Karera,LGD,432,3410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,1467,Block,Kargahar,LGD,215,1467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,13,Block,Kargil,LGD,6,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -LGD,776,Block,Karhal,LGD,166,776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -LGD,5851,Block,Kariapatti,LGD,597,5851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,6202,Block,Kariasol,LGD,325,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,6622,Block,Karimangalam,LGD,571,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -LGD,2101,Block,Karimganj,LGD,293,2101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -LGD,6231,Block,Karimnagar,LGD,508,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,4428,Block,Karimnagar Rural,LGD,508,4428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,2299,Block,Karimpur - I,LGD,320,2299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,2300,Block,Karimpur - II,LGD,320,2300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,3907,Block,Karjan,LGD,461,3907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,4174,Block,Karjat,LGD,491,4174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,4213,Block,Karjat,LGD,466,4213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,5524,Block,Karkal,LGD,549,5524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -LGD,6533,Block,Karkeli,LGD,436,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -LGD,7509,Block,Karlamunda,LGD,358,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,5092,Block,Karlapalem,LGD,750,5092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4244,Block,Karmala,LGD,496,4244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,2677,Block,Karma Tanr Vidyasagar*,LGD,333,2677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -LGD,3,Block,Karnah,LGD,8,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,372,Block,Karnal,LGD,67,372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,287,Block,Karnaprayag,LGD,47,287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,447,Block,Karol Bagh,LGD,77,447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11 -LGD,2552,Block,Karon,LGD,324,2552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,7344,Block,Karpawand,LGD,374,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,1544,Block,Karpi,LGD,611,1544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -LGD,2700,Block,Karra,LGD,606,2700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 -LGD,139,Block,Karsog,LGD,22,139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,3276,Block,Kartala,LGD,383,3276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,5676,Block,Karthikappally,LGD,554,5676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -LGD,5684,Block,Karunagappally,LGD,559,5684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -LGD,5769,Block,Karur,LGD,576,5769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -LGD,5408,Block,Karvetinagar,LGD,503,5408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,4287,Block,Karvir,LGD,480,4287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,5478,Block,Karwar,LGD,550,5478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,875,Block,Karwi,LGD,136,875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -LGD,5630,Block,Kasaragod,LGD,558,5630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -LGD,164,Block,Kasauli,LGD,25,164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,1135,Block,Kasba,LGD,214,1135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,3328,Block,Kasdol,LGD,644,3328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,1010,Block,Kasganj,LGD,633,1010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -LGD,1514,Block,Kashi Chak,LGD,210,1514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,2385,Block,Kashipur,LGD,321,2385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,3177,Block,Kashipur,LGD,370,3177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,346,Block,Kashipur,LGD,56,346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,6748,Block,Kashtigarh,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,6834,Block,Kasimabad,LGD,146,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -LGD,4876,Block,Kasimkota,LGD,744,4876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3104,Block,Kasinagar,LGD,353,3104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -LGD,4349,Block,Kasipet,LGD,684,4349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,2593,Block,Kasmar,LGD,322,2593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,1891,Block,Kasom Khullen,LGD,717,1891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 -LGD,3547,Block,Kasrawad,LGD,414,3547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,957,Block,Kasya,LGD,160,957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -LGD,2655,Block,Katamdag,LGD,332,2655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,1668,Block,Katan Circle,LGD,240,1668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,3667,Block,Katangi,LGD,392,3667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,4402,Block,Kataram,LGD,687,4402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,6519,Block,Katargam,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,3371,Block,Katekalyan,LGD,376,3371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -LGD,3272,Block,Katghora,LGD,383,3272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,2670,Block,Kathikund,LGD,326,2670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,3872,Block,Kathlal,LGD,450,3872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,4418,Block,Kathlapur,LGD,681,4418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,30,Block,Kathua,LGD,7,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,504,Block,Kathumar,LGD,87,504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,2096,Block,Katigora,LGD,282,2096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -LGD,1151,Block,Katihar,LGD,201,1151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,1215,Block,Katiya,LGD,197,1215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,2654,Block,Katkamsandi,LGD,332,2654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,2109,Block,Katlichara,LGD,289,2109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -LGD,7567,Block,Katngi,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,7028,Block,Katni Nagar,LGD,413,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,4024,Block,Katol,LGD,484,4024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,1354,Block,Katoria,LGD,190,1354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,6945,Block,Katoula,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,5713,Block,Katpadi,LGD,595,5713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -LGD,6741,Block,Katra,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,1208,Block,Katra,LGD,208,1208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,4943,Block,Katrenikona,LGD,747,4943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1397,Block,Katrisarai,LGD,209,1397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,5945,Block,Kattakkada,LGD,565,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -LGD,4635,Block,Kattangur,LGD,514,4635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,6980,Block,Katthiwara,LGD,639,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -LGD,5792,Block,Kattumannarkoil,LGD,570,5792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,2281,Block,Katwa - I,LGD,306,2281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2282,Block,Katwa - II,LGD,306,2282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,5158,Block,Kavali,LGD,515,5158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,3902,Block,Kavant,LGD,668,3902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -LGD,5625,Block,Kavaratti,LGD,553,5625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,4303,Block,Kavathemahankal,LGD,493,4303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,4779,Block,Kaviti,LGD,519,4779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,1516,Block,Kawakol,LGD,210,1516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,3298,Block,Kawardha,LGD,382,3298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,6829,Block,Kawarhama,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,7342,Block,Kawrtethawveng,LGD,266,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -LGD,6628,Block,Kayathar,LGD,594,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,1627,Block,Kaying Eac,LGD,679,1627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,1854,Block,Kebai Khelma,LGD,613,1854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -LGD,1646,Block,Kebang Circle,LGD,679,1646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,6092,Block,Keegam,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -LGD,4522,Block,Keesara,LGD,700,4522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,1886,Block,Keirao Bitra,LGD,255,1886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -LGD,614,Block,Kekri,LGD,86,614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,4090,Block,Kelapur,LGD,500,4090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,7269,Block,Kelhari,LGD,760,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,6091,Block,Keller,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -LGD,2927,Block,Kendrapara,LGD,360,2927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,3663,Block,Keolari,LGD,428,3663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,7492,Block,Keonjhar,LGD,361,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,1183,Block,Keotiranway,LGD,195,1183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,986,Block,Kerakat,LGD,152,986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -LGD,4313,Block,Kerameri,LGD,699,4313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,6782,Block,Keran,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,2656,Block,Keredari,LGD,332,2656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,2721,Block,Kersai,LGD,342,2721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,4717,Block,Kesamudram,LGD,688,4717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,1047,Block,Kesaria,LGD,213,1047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1439,Block,Kesath,LGD,194,1439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,4561,Block,Keshampet,LGD,518,4561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,2466,Block,Keshiary,LGD,318,2466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,3355,Block,Keshkal,LGD,643,3355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -LGD,3831,Block,Keshod,LGD,448,3831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,625,Block,Keshoraipatan,LGD,94,625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -LGD,2451,Block,Keshpur,LGD,318,2451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,3159,Block,Kesinga,LGD,358,3159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,3452,Block,Kesli,LGD,425,3452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,2497,Block,Ketar*,LGD,328,2497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,4637,Block,Kethepally,LGD,514,4637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,2279,Block,Ketugram - I,LGD,306,2279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2280,Block,Ketugram - II,LGD,306,2280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,1847,Block,Kezocha,LGD,245,1847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -LGD,4929,Block,K Gangavaram,LGD,747,4929,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3508,Block,Khacharod,LGD,435,3508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,6878,Block,Khadda,LGD,160,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -LGD,3235,Block,Khadganva,LGD,760,3235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,7277,Block,Khadgaon,LGD,761,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,261,Block,Khadur Sahib,LGD,609,261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -LGD,4,Block,Khag,LGD,2,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,879,Block,Khaga,LGD,142,879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -LGD,1323,Block,Khagaria,LGD,202,1323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -LGD,752,Block,Khair,LGD,119,752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -LGD,2906,Block,Khaira,LGD,346,2906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,1532,Block,Khaira,LGD,198,1532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,3303,Block,Khairagarh,LGD,759,3303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,4505,Block,Khairatabad,LGD,507,4505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,3670,Block,Khairlanji,LGD,392,3670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,7469,Block,Khairput,LGD,364,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -LGD,7207,Block,Khairthal,LGD,770,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,1089,Block,Khajauli,LGD,206,1089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,5212,Block,Khajipeta,LGD,504,5212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,953,Block,Khajni,LGD,148,953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -LGD,3113,Block,Khajuripada,LGD,359,3113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,478,Block,Khajuwala,LGD,93,478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,3720,Block,Khaknar,LGD,397,3720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -LGD,4175,Block,Khalapur,LGD,491,4175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,942,Block,Khalilabad,LGD,178,942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -LGD,7485,Block,Khallikote,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,12,Block,Khaltsi,LGD,9,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,3715,Block,Khalwa,LGD,405,3715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,223,Block,Khamanon,LGD,30,223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -LGD,3847,Block,Khambha,LGD,439,3847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,3813,Block,Khambhalia,LGD,674,3813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -LGD,3866,Block,Khambhat,LGD,440,3866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,3981,Block,Khamgaon,LGD,472,3981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,4756,Block,Khammam (Rural),LGD,509,4756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,6326,Block,Khammam Urban,LGD,509,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,6393,Block,Khamnor,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,2354,Block,Khanakul - I,LGD,312,2354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,2355,Block,Khanakul - II,LGD,312,2355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,4347,Block,Khanapur,LGD,680,4347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,4299,Block,Khanapur,LGD,493,4299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,5439,Block,Khanapur,LGD,527,5439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,4709,Block,Khanapur,LGD,522,4709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,2297,Block,Khandaghosh,LGD,306,2297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,4257,Block,Khandala,LGD,494,4257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,3026,Block,Khandapada,LGD,367,3026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,532,Block,Khandar,LGD,113,532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,6384,Block,Khandela,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,3716,Block,Khandwa,LGD,405,3716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,7019,Block,Khandwa Nagar,LGD,405,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,3414,Block,Khaniyadhana,LGD,432,3414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,225,Block,Khanna,LGD,36,225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -LGD,678,Block,Khanpur,LGD,105,678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,1287,Block,Khanpur,LGD,217,1287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,3879,Block,Khanpur,LGD,669,3879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,6472,Block,Khanpur St,LGD,75,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -LGD,6,Block,Khansahib,LGD,2,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,6801,Block,Khanyar,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -LGD,3145,Block,Khaprakhol,LGD,345,3145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,1360,Block,Kharagpur,LGD,207,1360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,2460,Block,Kharagpur - I,LGD,318,2460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,2461,Block,Kharagpur - II,LGD,318,2461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,6704,Block,Kharah Balli,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,266,Block,Kharar,LGD,608,266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -LGD,2495,Block,Kharaundhi,LGD,328,2495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,3422,Block,Khargapur,LGD,434,3422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,3550,Block,Khargone,LGD,414,3550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,7029,Block,Khargone Nagar,LGD,414,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,2239,Block,Khargram,LGD,319,2239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,6759,Block,Khari,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,3156,Block,Khariar,LGD,368,3156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -LGD,2165,Block,Kharibari,LGD,309,2165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,1331,Block,Kharik,LGD,192,1331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,381,Block,Kharkhoda,LGD,75,381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -LGD,1972,Block,Kharkutta,LGD,656,1972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 -LGD,7262,Block,Kharora,LGD,387,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,1681,Block,Kharsang Circle,LGD,229,1681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,2747,Block,Kharsawan,LGD,341,2747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,3269,Block,Kharsia,LGD,386,3269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,7159,Block,Kharu,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,1992,Block,Khatarshnong Laitkroh,LGD,274,1992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,710,Block,Khatauli,LGD,172,710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -LGD,4260,Block,Khatav,LGD,494,4260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,3531,Block,Khategaon,LGD,402,3531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,352,Block,Khatima,LGD,56,352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,2373,Block,Khatra,LGD,305,2373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,6771,Block,Khawas,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,1909,Block,Khawbung,LGD,262,1909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 -LGD,1907,Block,Khawzawl,LGD,728,1907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -LGD,6247,Block,Khazipet,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,4268,Block,Khed,LGD,492,4268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,4190,Block,Khed,LGD,490,4190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,3874,Block,Kheda,LGD,450,3874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,3760,Block,Khedbrahma,LGD,458,3760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,561,Block,Kheenvsar,LGD,110,561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,2486,Block,Khejuri - I,LGD,317,2486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2487,Block,Khejuri - II,LGD,317,2487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,737,Block,Khekada,LGD,124,737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -LGD,2683,Block,Khelari,LGD,339,2683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,6605,Block,Khenawa Circle,LGD,231,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,6496,Block,Khengjoy,LGD,253,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -LGD,768,Block,Kheragarh,LGD,118,768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -LGD,3752,Block,Kheralu,LGD,451,3752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,6195,Block,Khergam,LGD,453,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -LGD,6419,Block,Kheri Jalab St,LGD,792,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -LGD,695,Block,Kherwara,LGD,117,695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,490,Block,Khetri,LGD,106,490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,1811,Block,Khezhakeno,LGD,248,1811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,6246,Block,Khila Warangal,LGD,522,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,3564,Block,Khilchipur,LGD,422,3564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,1669,Block,Khimiyang Eac,LGD,229,1669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,3606,Block,Khirkiya,LGD,408,3606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -LGD,1490,Block,Khizirsarai,LGD,196,1490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,6828,Block,Khoie,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,6428,Block,Khoirabari,LGD,617,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -LGD,1842,Block,Khongsa,LGD,614,1842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,1686,Block,Khonsa Hq,LGD,239,1686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,3036,Block,Khordha,LGD,362,3036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,6038,Block,Khoupum,LGD,714,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 -LGD,6714,Block,Khour,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,6684,Block,Khowai,LGD,652,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 -LGD,2267,Block,Khoyrasol,LGD,307,2267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,1304,Block,Khudabandpur,LGD,191,1304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,7015,Block,Khudel,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,6993,Block,Khujner,LGD,422,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,4138,Block,Khuldabad,LGD,469,4138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,2083,Block,Khumtai,LGD,288,2083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -LGD,107,Block,Khundian,LGD,18,107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,2883,Block,Khunta,LGD,365,2883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,2704,Block,Khunti,LGD,606,2704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 -LGD,2732,Block,Khuntpani,LGD,343,2732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,3444,Block,Khurai,LGD,425,3444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,751,Block,Khurja,LGD,134,751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -LGD,1413,Block,Khusrupur,LGD,212,1413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,1802,Block,Khuza,LGD,248,1802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,1741,Block,Kibithoo Circle,LGD,628,1741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,349,Block,Kichha,LGD,56,349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,5991,Block,Kikruma,LGD,248,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,6654,Block,Kilakarai,LGD,583,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,6673,Block,Killiyoor,LGD,575,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -LGD,7396,Block,Killod,LGD,405,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,6630,Block,Kilpennathur,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,5623,Block,Kiltan,LGD,553,5623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,5800,Block,Kilvelur,LGD,579,5800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -LGD,1605,Block,Kimin Sdo,LGD,237,1605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,5956,Block,Kinathukadavu,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,4096,Block,Kinwat,LGD,485,4096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,1837,Block,Kiphire Sadar,LGD,614,1837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,767,Block,Kiraoli,LGD,118,767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -LGD,7594,Block,Kirari,LGD,82,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 -LGD,1195,Block,Kiratpur,LGD,195,1195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,4899,Block,Kirlampudi,LGD,746,4899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7506,Block,Kirmira,LGD,357,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -LGD,3673,Block,Kirnapur,LGD,392,3673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,6361,Block,Kirtinagar,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,1127,Block,Kishanganj,LGD,203,1127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -LGD,674,Block,Kishanganj,LGD,89,674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,1167,Block,Kishanganj,LGD,205,1167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,606,Block,Kishangarh,LGD,86,606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,497,Block,Kishangarhbas,LGD,770,497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,6026,Block,Kishangarh Renwal,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,2960,Block,Kishannagar,LGD,350,2960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,1107,Block,Kishanpur,LGD,223,1107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,6872,Block,Kishni,LGD,166,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -LGD,3016,Block,Kishorenagar,LGD,344,3016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,68,Block,Kishtwar,LGD,620,68,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,2597,Block,Kisko,LGD,336,2597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -LGD,1560,Block,Kitpi Circle,LGD,238,1560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,7043,Block,Kittur,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,1838,Block,Kiusam,LGD,614,1838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,4860,Block,K.Kotapadu,LGD,744,4860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7496,Block,K. Nuagaon,LGD,359,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,1126,Block,Kochadhamin,LGD,203,1126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -LGD,1457,Block,Kochas,LGD,215,1457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,5660,Block,Kochi,LGD,555,5660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -LGD,2782,Block,Kochinda,LGD,371,2782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,4668,Block,Kodad,LGD,696,4668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,5766,Block,Kodaikanal,LGD,572,5766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,4600,Block,Kodair,LGD,694,4600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,4702,Block,Kodakandla,LGD,689,4702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,3082,Block,Kodala,LGD,354,3082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,4549,Block,Kodangal,LGD,698,4549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,5169,Block,Kodavalur,LGD,515,5169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,2527,Block,Koderma,LGD,334,2527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -LGD,4420,Block,Kodimial,LGD,681,4420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,3837,Block,Kodinar,LGD,675,3837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -LGD,3194,Block,Kodinga,LGD,366,3194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,6637,Block,Kodumudi,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,5269,Block,Kodumur,LGD,511,5269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5655,Block,Kodungallur,LGD,566,5655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -LGD,5249,Block,Kodur,LGD,752,5249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5039,Block,Koduru,LGD,510,5039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,4443,Block,Koheda,LGD,692,4443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,1849,Block,Kohima Sadar,LGD,245,1849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -LGD,4475,Block,Kohir,LGD,691,4475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,7321,Block,Kohkameta,LGD,637,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 -LGD,2826,Block,Koida,LGD,373,2826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,755,Block,Koil,LGD,119,755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -LGD,5296,Block,Koilakuntla,LGD,755,5296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4569,Block,Koilkonda,LGD,512,4569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,1424,Block,Koilwar,LGD,193,1424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,3169,Block,Kokasara,LGD,358,3169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,57,Block,Kokernag,LGD,1,57,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,6403,Block,Kokrajhar,LGD,294,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -LGD,2779,Block,Kolabira,LGD,357,2779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -LGD,2471,Block,Kolaghat,LGD,317,2471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,7034,Block,Kolar,LGD,396,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -LGD,5591,Block,Kolar,LGD,542,5591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -LGD,3411,Block,Kolaras,LGD,432,3411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,7002,Block,Kolar Gold Field,LGD,542,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -LGD,7514,Block,Kolathur,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,476,Block,Kolayat,LGD,93,476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,2724,Block,Kolebira,LGD,342,2724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,7072,Block,Kolhar,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,5301,Block,Kolimigundla,LGD,755,5301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5688,Block,Kollam,LGD,559,5688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -LGD,4609,Block,Kollapur,LGD,694,4609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,5579,Block,Kollegal,LGD,531,5579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -LGD,6625,Block,Kolli Hills,LGD,580,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,5077,Block,Kollipara,LGD,506,5077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,5088,Block,Kolluru,LGD,750,5088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7512,Block,Kolnara,LGD,370,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,6130,Block,Koloriang Hq,LGD,233,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,7322,Block,Komakhan,LGD,385,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -LGD,4807,Block,Komarada,LGD,743,4807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5134,Block,Komarolu,LGD,790,5134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6586,Block,Kombo Circle,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,3155,Block,Komna,LGD,368,3155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -LGD,6284,Block,Komuravelli,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,5119,Block,Konakanamitla,LGD,790,5119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4431,Block,Konaraopet,LGD,683,4431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,855,Block,Konch,LGD,151,855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -LGD,1487,Block,Konch,LGD,196,1487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,3357,Block,Kondagaon,LGD,643,3357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -LGD,6307,Block,Kondamallepally,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4462,Block,Kondapak,LGD,692,4462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,5137,Block,Kondapi,LGD,517,5137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,4491,Block,Kondapur,LGD,691,4491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,5199,Block,Kondapuram,LGD,504,5199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,5156,Block,Kondapuram,LGD,515,5156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5941,Block,Kondotty,LGD,562,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -LGD,4558,Block,Kondurg,LGD,518,4558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,4761,Block,Konijerla,LGD,509,4761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,5943,Block,Konni,LGD,564,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -LGD,3373,Block,Konta,LGD,642,3373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -LGD,6627,Block,Koothanallur,LGD,590,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,4203,Block,Kopargaon,LGD,466,4203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,5526,Block,Koppa,LGD,532,5526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,5467,Block,Koppal,LGD,543,5467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -LGD,6574,Block,Kora Circle,LGD,719,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,895,Block,Koraon,LGD,120,895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,3207,Block,Koraput,LGD,363,3207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,5536,Block,Koratagere,LGD,548,5536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,3275,Block,Korba,LGD,383,3275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,4055,Block,Korchi,LGD,475,4055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,4261,Block,Koregaon,LGD,494,4261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,1143,Block,Korha,LGD,201,1143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,5122,Block,Korisapadu,LGD,517,5122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,1727,Block,Koronu Circle,LGD,235,1727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -LGD,4075,Block,Korpana,LGD,473,4075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,4905,Block,Korukonda,LGD,505,4905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,4416,Block,Korutla,LGD,681,4416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,4551,Block,Kosgi,LGD,721,4551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,5251,Block,Kosigi,LGD,511,5251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,413,Block,Kosli,LGD,72,413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,338,Block,Kosya Kutauli,LGD,51,338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,5191,Block,Kota,LGD,515,5191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,3291,Block,Kota,LGD,375,3291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,4791,Block,Kotabommali,LGD,519,4791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,7275,Block,Kotadol,LGD,760,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,3123,Block,Kotagarh,LGD,359,3123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,4371,Block,Kotagiri,LGD,516,4371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,5757,Block,Kotagiri,LGD,587,5757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -LGD,4889,Block,Kotananduru,LGD,746,4889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4351,Block,Kotapally,LGD,684,4351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,3467,Block,Kotar,LGD,426,3467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,4874,Block,Kotauratla,LGD,744,4874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3805,Block,Kotda Sangani,LGD,457,3805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,313,Block,Kotdwara,LGD,52,313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,6312,Block,Kotepally,LGD,698,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,6851,Block,Koteranka,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,6956,Block,Kotgarh,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,5346,Block,Kothacheruvu,LGD,754,5346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4710,Block,Kothaguda,LGD,688,4710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,4738,Block,Kothagudem,LGD,690,4738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,4593,Block,Kothakota,LGD,693,4593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,5663,Block,Kothamangalam,LGD,555,5663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -LGD,5263,Block,Kothapalle,LGD,755,5263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6230,Block,Kothapally,LGD,508,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,7537,Block,Kothapally (15),LGD,721,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,7531,Block,Kothapallygori,LGD,687,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,5140,Block,Kotha Patnam,LGD,517,5140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,4927,Block,Kothapeta,LGD,747,4927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4834,Block,Kothavalasa,LGD,521,4834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,3461,Block,Kothi,LGD,426,3461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,7007,Block,Kothi Mahal,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,7556,Block,Kothmba,LGD,669,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,4560,Block,Kothur,LGD,518,4560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,4772,Block,Kothuru,LGD,519,4772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,5984,Block,Kotkapura,LGD,29,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -LGD,495,Block,Kotkasim,LGD,770,495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,189,Block,Kotkhai,LGD,23,189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,6028,Block,Kotkhawda,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,6896,Block,Kotla,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,128,Block,Kotli,LGD,22,128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,3693,Block,Kotma,LGD,390,3693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -LGD,3199,Block,Kotpad,LGD,363,3199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,538,Block,Kotputli,LGD,782,538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,687,Block,Kotra,LGD,117,687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,635,Block,Kotri,LGD,92,635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,5687,Block,Kottarakkara,LGD,559,5687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -LGD,5670,Block,Kottayam,LGD,560,5670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -LGD,7108,Block,Kotturu,LGD,738,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -LGD,2367,Block,Kotulpur,LGD,305,2367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,1049,Block,Kotwa,LGD,213,1049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,7522,Block,Koukuntla,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,4316,Block,Koutala,LGD,699,4316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,5862,Block,Kovilpatti,LGD,594,5862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,5178,Block,Kovur,LGD,515,5178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,4958,Block,Kovvur,LGD,505,4958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,4480,Block,Kowdipally,LGD,513,4480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,5252,Block,Kowthalam,LGD,511,5252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,2117,Block,Koya,LGD,291,2117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,5639,Block,Koyilandi,LGD,561,5639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -LGD,7345,Block,Koylibeda,LGD,381,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,1648,Block,Koyu Eac,LGD,719,1648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,4952,Block,Koyyalagudem,LGD,748,4952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4851,Block,Koyyuru,LGD,745,4851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5682,Block,Kozhenchery,LGD,564,5682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -LGD,5640,Block,Kozhikode,LGD,561,5640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -LGD,6783,Block,Kralpora,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,7119,Block,Kranti,LGD,314,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,36,Block,Kreeri,LGD,3,36,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,163,Block,Krishangarh,LGD,25,163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,6264,Block,Krishna,LGD,721,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,2309,Block,Krishnaganj,LGD,320,2309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,2308,Block,Krishnagar - I,LGD,320,2308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,2306,Block,Krishnagar - II,LGD,320,2306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,5891,Block,Krishnagiri,LGD,577,5891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,5277,Block,Krishnagiri,LGD,511,5277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5571,Block,Krishnarajanagara,LGD,545,5571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,5546,Block,Krishnarajpet,LGD,544,5546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -LGD,5770,Block,Krishnarayapuram,LGD,576,5770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -LGD,1133,Block,Krityanand Nagar,LGD,214,1133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,1721,Block,Kronli (Arzoo Circle),LGD,230,1721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 -LGD,5051,Block,Krosuru,LGD,751,5051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3069,Block,Krushna Prasad,LGD,369,3069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,5018,Block,Kruthivennu,LGD,510,5018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,3372,Block,Kuakonda,LGD,376,3372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -LGD,4338,Block,Kubeer,LGD,680,4338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,1763,Block,Kubolong,LGD,246,1763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,2746,Block,Kuchai,LGD,341,2746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,1219,Block,Kuchaikote,LGD,197,1219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,6065,Block,Kuchaman City,LGD,768,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5323,Block,Kudair,LGD,502,5323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,4280,Block,Kudal,LGD,495,4280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,5804,Block,Kudavasal,LGD,590,5804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,7219,Block,Kudi Bhagtasni,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,5502,Block,Kudligi,LGD,738,5502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -LGD,1448,Block,Kudra,LGD,200,1448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,7470,Block,Kudumuluguma,LGD,364,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -LGD,4035,Block,Kuhi,LGD,484,4035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,1794,Block,Kuhoboto,LGD,764,1794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,2936,Block,Kujang,LGD,355,2936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,7093,Block,Kukanoor,LGD,543,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -LGD,6169,Block,Kukarmunda,LGD,641,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,6327,Block,Kukatpally,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,7351,Block,Kukdur,LGD,382,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,7314,Block,Kukrel,LGD,377,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -LGD,2750,Block,Kukru,LGD,341,2750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,3536,Block,Kukshi,LGD,403,3536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,7484,Block,Kukudakhandi,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,4735,Block,Kukunoor,LGD,748,4735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7521,Block,Kukunoorpally,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,6439,Block,Kulan St,LGD,61,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -LGD,5819,Block,Kulathur,LGD,582,5819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,4468,Block,Kulcharam,LGD,513,4468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,59,Block,Kulgam,LGD,622,59,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -LGD,7458,Block,Kuliana,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,5771,Block,Kulithalai,LGD,576,5771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -LGD,4539,Block,Kulkacharla,LGD,698,4539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,118,Block,Kullu,LGD,20,118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,868,Block,Kulpahar,LGD,165,868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -LGD,2428,Block,Kulpi,LGD,304,2428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2433,Block,Kultali,LGD,304,2433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,6634,Block,Kumarapalayam,LGD,580,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,5382,Block,Kumara Venkata Bhupala Puram,LGD,752,5382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7350,Block,Kumarda,LGD,388,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -LGD,2744,Block,Kumardungi,LGD,343,2744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,2202,Block,Kumarganj,LGD,310,2202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,6694,Block,Kumarghat,LGD,655,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -LGD,2172,Block,Kumargram,LGD,664,2172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -LGD,1163,Block,Kumarkhand,LGD,205,1163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,179,Block,Kumarsain,LGD,23,179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,5811,Block,Kumbakonam,LGD,586,5811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,642,Block,Kumbhalgarh,LGD,112,642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,3681,Block,Kumbhraj,LGD,406,3681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,510,Block,Kumher,LGD,767,510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5485,Block,Kumta,LGD,550,5485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,4731,Block,Kunavaram,LGD,791,4731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7323,Block,Kunda,LGD,382,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,881,Block,Kunda,LGD,174,881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -LGD,2516,Block,Kunda,LGD,323,2516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,5759,Block,Kundah,LGD,587,5759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -LGD,7382,Block,Kundal,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,3633,Block,Kundam,LGD,411,3633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,5522,Block,Kundapura,LGD,549,5522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -LGD,5477,Block,Kundgol,LGD,536,5477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,2681,Block,Kundhit,LGD,333,2681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -LGD,7057,Block,Kundrathur,LGD,574,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -LGD,3210,Block,Kundura,LGD,363,3210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,5333,Block,Kundurpi,LGD,502,5333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5541,Block,Kunigal,LGD,548,5541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,7056,Block,Kunihar,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,3839,Block,Kunkavav Vadia,LGD,439,3839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,3259,Block,Kunkuri,LGD,380,3259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,5976,Block,Kunnam,LGD,581,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -LGD,6598,Block,Kunnamkulam,LGD,566,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -LGD,5657,Block,Kunnathunad,LGD,555,5657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -LGD,5685,Block,Kunnathur,LGD,559,5685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -LGD,4337,Block,Kuntala,LGD,680,4337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,6928,Block,Kunwariya,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,6830,Block,Kunzer,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,5427,Block,Kuppam,LGD,503,5427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,6962,Block,Kupvi,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,1,Block,Kupwara,LGD,8,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,5389,Block,Kurabalakota,LGD,753,5389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7156,Block,Kurabar,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,3666,Block,Kurai,LGD,428,3666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,4721,Block,Kuravi,LGD,688,4721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,6874,Block,Kurawali,LGD,166,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -LGD,2720,Block,Kurdeg,LGD,342,2720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,1213,Block,Kurhani,LGD,208,1213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,5103,Block,Kurichedu,LGD,517,5103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,5790,Block,Kurinjipadi,LGD,570,5790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,4054,Block,Kurkheda,LGD,475,4054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,7180,Block,Kurla,LGD,483,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -LGD,5259,Block,Kurnool Rural,LGD,511,5259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,7183,Block,Kurnool Urban,LGD,511,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,1117,Block,Kursakatta,LGD,188,1117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,1155,Block,Kursela,LGD,201,1155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,2161,Block,Kurseong,LGD,309,2161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,1546,Block,Kurtha,LGD,611,1546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -LGD,2599,Block,Kuru,LGD,336,2599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -LGD,3344,Block,Kurud,LGD,377,3344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -LGD,7109,Block,Kurugodu,LGD,528,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -LGD,4809,Block,Kurupam,LGD,743,4809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3572,Block,Kurwai,LGD,437,3572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,654,Block,Kushalgarh,LGD,88,654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,7124,Block,Kushalnagar,LGD,541,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -LGD,1197,Block,Kusheshwar Asthan,LGD,195,1197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,1198,Block,Kusheshwar Asthan Purbi,LGD,195,1198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,2200,Block,Kushmundi,LGD,310,2200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,5465,Block,Kushtagi,LGD,543,5465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -LGD,3702,Block,Kusmi,LGD,433,3702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,3240,Block,Kusmi(Samri),LGD,649,3240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,4755,Block,Kusumanchi,LGD,509,4755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,7478,Block,Kusumi,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,5797,Block,Kuthalam,LGD,735,5797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -LGD,3824,Block,Kutiyana,LGD,456,3824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -LGD,2813,Block,Kutra,LGD,373,2813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,7260,Block,Kutru,LGD,636,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -LGD,5675,Block,Kuttanad,LGD,554,5675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -LGD,1484,Block,Kutumba,LGD,189,1484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,7052,Block,K V Kuppam,LGD,595,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -LGD,2262,Block,Labpur,LGD,307,2262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,552,Block,Lachhmangarh,LGD,114,552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,503,Block,Lachhmangarh,LGD,87,503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,6098,Block,Lada Circle,LGD,787,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,1084,Block,Ladania,LGD,206,1084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,125,Block,Lad Bharol,LGD,22,125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,557,Block,Ladnu,LGD,768,557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,667,Block,Ladpura,LGD,109,667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -LGD,6410,Block,Ladwa,LGD,68,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -LGD,6902,Block,Lagru,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,3398,Block,Lahar,LGD,395,3398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,2028,Block,Laharighat,LGD,296,2028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -LGD,805,Block,Laharpur,LGD,183,805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -LGD,1253,Block,Lahladpur,LGD,218,1253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,115,Block,Lahul,LGD,21,115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -LGD,2827,Block,Lahunipara,LGD,373,2827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,2778,Block,Laikera,LGD,357,2778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -LGD,3264,Block,Lailunga,LGD,386,3264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,1694,Block,Laju Sdo,LGD,239,1694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,4043,Block,Lakhandur,LGD,471,4043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -LGD,6168,Block,Lakhani,LGD,789,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,4041,Block,Lakhani,LGD,471,4041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -LGD,6468,Block,Lakhan Majra St,LGD,73,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -LGD,3248,Block,Lakhanpur,LGD,389,3248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,2771,Block,Lakhanpur,LGD,357,2771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -LGD,801,Block,Lakhimpur,LGD,159,801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -LGD,2013,Block,Lakhipur,LGD,287,2013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -LGD,2100,Block,Lakhipur,LGD,282,2100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -LGD,1368,Block,Lakhisarai,LGD,204,1368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -LGD,3659,Block,Lakhnadon,LGD,428,3659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,1099,Block,Lakhnaur,LGD,206,1099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,3722,Block,Lakhpat,LGD,449,3722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,3791,Block,Lakhtar,LGD,460,3791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,4833,Block,Lakkavarapukota,LGD,521,4833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,5240,Block,Lakkireddipalli,LGD,753,5240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1233,Block,Lakri Nabiganj,LGD,222,1233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,355,Block,Laksar,LGD,50,355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -LGD,1529,Block,Lakshmipur,LGD,198,1529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,3203,Block,Lakshmipur,LGD,363,3203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,2108,Block,Lala,LGD,289,2108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -LGD,7301,Block,Lal Bahadur Nagar,LGD,388,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -LGD,3671,Block,Lalbarra,LGD,392,3671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,6351,Block,Laldhang,LGD,50,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -LGD,880,Block,Lalganj,LGD,174,880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -LGD,969,Block,Lalganj,LGD,123,969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,826,Block,Lalganj,LGD,175,826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -LGD,1001,Block,Lalganj,LGD,170,1001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -LGD,1270,Block,Lalganj,LGD,224,1270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,2229,Block,Lalgola,LGD,319,2229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,5777,Block,Lalgudi,LGD,591,5777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,862,Block,Lalitpur,LGD,161,862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -LGD,345,Block,Lalkuan,LGD,51,345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,6792,Block,Lalpora,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,3818,Block,Lalpur,LGD,447,3818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -LGD,7258,Block,Lalpur Thana,LGD,647,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -LGD,537,Block,Lalsot,LGD,97,537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,917,Block,Lambhua,LGD,185,917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -LGD,7285,Block,Lambloo,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,6368,Block,Lamgada,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,1881,Block,Lamphelpat,LGD,256,1881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -LGD,1879,Block,Lamsang,LGD,256,1879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -LGD,7399,Block,Lamta,LGD,392,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,6789,Block,Langate,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,4273,Block,Lanja,LGD,492,4273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,3676,Block,Lanji,LGD,392,3676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,3162,Block,Lanjigarh,LGD,358,3162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,2040,Block,Lanka,LGD,709,2040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -LGD,310,Block,Lansdowne,LGD,52,310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,2697,Block,Lapung,LGD,339,2697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,45,Block,Lar,LGD,626,45,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -LGD,6820,Block,Larnoo,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,6774,Block,Laroka,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,691,Block,Lasadiya,LGD,777,691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,1997,Block,Laskein,LGD,275,1997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 -LGD,2639,Block,Latehar,LGD,335,2639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,3570,Block,Lateri,LGD,437,3570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,1733,Block,Lathao Circle,LGD,678,1733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 -LGD,3841,Block,Lathi,LGD,439,3841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,2823,Block,Lathikata,LGD,373,2823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,7236,Block,Latori,LGD,648,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,6737,Block,Latti,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,4226,Block,Latur,LGD,481,4226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,1085,Block,Laukaha,LGD,206,1085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,1086,Block,Laukahi,LGD,206,1086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,1018,Block,Lauriya,LGD,211,1018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,2157,Block,Lava,LGD,702,2157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -LGD,7246,Block,Lavan,LGD,644,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,7050,Block,Lavaold,LGD,702,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -LGD,4804,Block,Laveru,LGD,519,4804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,3425,Block,Lavkush Nagar,LGD,398,3425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,2517,Block,Lawalaung,LGD,323,2517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,6909,Block,Lawan,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,1917,Block,Lawngtlai,LGD,264,1917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 -LGD,1689,Block,Lawnu Circle,LGD,666,1689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 -LGD,4345,Block,Laxmanchanda,LGD,680,4345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,7083,Block,Laxmeshwar,LGD,537,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -LGD,6266,Block,Laxmidevipalli,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,4787,Block,Laxminarasupeta,LGD,519,4787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,10,Block,Leh,LGD,9,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,273,Block,Lehra,LGD,43,273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -LGD,1735,Block,Lekang Mahadevpur Circle,LGD,678,1735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 -LGD,5365,Block,Lepakshi,LGD,754,5365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2805,Block,Lephripara,LGD,373,2805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,1603,Block,Leporiang Circle,LGD,237,1603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,6555,Block,Lhou Circle,LGD,238,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,6497,Block,Lhungtin,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,6536,Block,Lidhora,LGD,434,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,1640,Block,Likabali Sdo,LGD,719,1640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,3842,Block,Lilia,LGD,439,3842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,1876,Block,Lilong,LGD,259,1876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 -LGD,3797,Block,Limbdi,LGD,460,3797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,1608,Block,Limeking Circle,LGD,241,1608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,3892,Block,Limkheda,LGD,445,3892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,4598,Block,Lingal,LGD,694,4598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,5218,Block,Lingala,LGD,504,5218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4700,Block,Lingalaghanpur,LGD,689,4700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,4388,Block,Lingampet,LGD,685,4388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,4945,Block,Lingapalem,LGD,748,4945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6311,Block,Lingapur,LGD,699,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,5150,Block,Lingasamudram,LGD,517,5150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,5459,Block,Lingasugur,LGD,546,5459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,1632,Block,Liromoba Eac,LGD,243,1632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,2573,Block,Litipara,LGD,337,2573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -LGD,5924,Block,Little Andaman,LGD,602,5924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -LGD,6482,Block,LM,LGD,260,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 -LGD,3804,Block,Lodhika,LGD,457,3804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,4107,Block,Loha,LGD,485,4107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,336,Block,Lohaghat,LGD,48,336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -LGD,6729,Block,Lohai Malhar,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,3361,Block,Lohandiguda,LGD,374,3361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,4242,Block,Lohara,LGD,488,4242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,2601,Block,Lohardaga,LGD,336,2601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -LGD,7450,Block,Loharghat,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,401,Block,Loharu,LGD,59,401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -LGD,6391,Block,Lohawat,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3141,Block,Loisinga,LGD,345,3141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,4342,Block,Lokeswaram,LGD,680,4342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,6791,Block,Lolab (Sogam),LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,3987,Block,Lonar,LGD,472,3987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,1758,Block,Longchem,LGD,246,1758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,6074,Block,Longding Hq,LGD,666,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 -LGD,1816,Block,Longkhim,LGD,249,1816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -LGD,1833,Block,Longleng,LGD,615,1833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -LGD,6491,Block,Longmai,LGD,714,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 -LGD,1840,Block,Longmatra,LGD,614,1840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,6597,Block,Longo Circle,LGD,239,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,1751,Block,Longshen,LGD,247,1751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,6692,Block,Longtharai Valley,LGD,269,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -LGD,6089,Block,Loni,LGD,145,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -LGD,7341,Block,Lopoke,LGD,27,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -LGD,3290,Block,Lormi,LGD,647,3290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -LGD,1786,Block,Lotsu,LGD,250,1786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,227,Block,Ludhiana (East),LGD,36,227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -LGD,228,Block,Ludhiana (West),LGD,36,228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -LGD,1557,Block,Lumla Adc,LGD,238,1557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,7337,Block,Lumshnong,LGD,657,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 -LGD,3882,Block,Lunawada,LGD,669,3882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,3251,Block,Lundra,LGD,389,3251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,1914,Block,Lunglei,LGD,265,1914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 -LGD,1913,Block,Lungsen,LGD,265,1913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 -LGD,572,Block,Luni,LGD,107,572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,475,Block,Lunkaransar,LGD,93,475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,4353,Block,Luxettipet,LGD,684,4353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,6578,Block,Lyngok Longtoi Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,6767,Block,Machail,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,4380,Block,Machareddy,LGD,685,4380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,5048,Block,Machavaram,LGD,751,5048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5040,Block,Macherla,LGD,751,5040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3212,Block,Machh Kund,LGD,363,3212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,983,Block,Machhlishahr,LGD,152,983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -LGD,6339,Block,Machhor,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,1892,Block,Machi,LGD,716,1892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11 -LGD,6785,Block,Machil,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,7429,Block,Machilipatnam North,LGD,510,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,5034,Block,Machilipatnam South,LGD,510,5034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,6987,Block,Mada,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,5350,Block,Madakasira,LGD,754,5350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5392,Block,Madanapalle,LGD,753,5392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6289,Block,Madanapur,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,6362,Block,Madannegi,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,1486,Block,Madanpur,LGD,189,1486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,3160,Block,Madanpur Rampur,LGD,358,3160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,2170,Block,Madarihat,LGD,664,2170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -LGD,5907,Block,Madathukulam,LGD,634,5907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,5292,Block,Maddikera (East),LGD,511,5292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5127,Block,Maddipadu,LGD,517,5127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,6300,Block,Maddirala,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,5551,Block,Maddur,LGD,544,5551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -LGD,4673,Block,Maddur,LGD,692,4673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,4554,Block,Maddur,LGD,721,4554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,4564,Block,Madgul,LGD,518,4564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,4245,Block,Madha,LGD,496,4245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,1100,Block,Madhepur,LGD,206,1100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,1161,Block,Madhepura,LGD,205,1161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,4766,Block,Madhira,LGD,509,4766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,851,Block,Madhogarh,LGD,151,851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -LGD,7139,Block,Madhorajpura,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,972,Block,Madhuban,LGD,168,972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -LGD,1055,Block,Madhuban,LGD,213,1055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1093,Block,Madhubani,LGD,206,1093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,1021,Block,Madhubani,LGD,211,1021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,5535,Block,Madhugiri,LGD,548,5535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,2550,Block,Madhupur,LGD,324,2550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,1080,Block,Madhwapur,LGD,206,1080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,5566,Block,Madikeri,LGD,541,5566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -LGD,4372,Block,Madnoor,LGD,685,4372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,4857,Block,Madugula,LGD,744,4857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6305,Block,Madugulapally,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,5986,Block,Madukkari,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,5960,Block,Madurai East,LGD,578,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,5836,Block,Madurai North,LGD,578,5836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,5841,Block,Madurai South,LGD,578,5841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,5961,Block,Madurai West,LGD,578,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,5710,Block,Maduranthakam,LGD,730,5710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,5981,Block,Maduravoyal,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,7410,Block,Madwas,LGD,433,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,5605,Block,Magadi,LGD,631,5605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -LGD,6814,Block,Magam,LGD,2,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,4590,Block,Maganoor,LGD,721,4590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,3345,Block,Magarlod,LGD,377,3345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -LGD,2424,Block,Magrahat - I,LGD,304,2424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2423,Block,Magrahat - II,LGD,304,2423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,4255,Block,Mahabaleshwar,LGD,494,4255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,4718,Block,Mahabubabad,LGD,688,4718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,6258,Block,Mahabubnagar Rural,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,4568,Block,Mahabubnagar Urban,LGD,512,4568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,4185,Block,Mahad,LGD,491,4185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,4403,Block,Mahadevpur,LGD,687,4403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,2558,Block,Mahagama,LGD,330,2558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,4087,Block,Mahagaon,LGD,500,4087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,2933,Block,Mahakalapada,LGD,360,2933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,404,Block,Maham,LGD,73,404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -LGD,5285,Block,Mahanandi,LGD,755,5285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2956,Block,Mahanga,LGD,350,2956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,6725,Block,Mahanpur,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,823,Block,Maharajganj,LGD,175,823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -LGD,947,Block,Maharajganj,LGD,164,947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -LGD,1236,Block,Maharajganj,LGD,222,1236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,3428,Block,Maharajpur,LGD,398,3428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,6837,Block,Maharanipeta,LGD,520,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,3341,Block,Mahasamund,LGD,385,3341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -LGD,920,Block,Mahasi,LGD,125,920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -LGD,763,Block,Mahavan,LGD,167,763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -LGD,5913,Block,Mahe,LGD,600,5913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -LGD,411,Block,Mahendragarh,LGD,69,411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -LGD,3757,Block,Mahesana,LGD,451,3757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,7441,Block,Mahesana City,LGD,451,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,2577,Block,Maheshpur,LGD,337,2577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -LGD,3546,Block,Maheshwar,LGD,414,3546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,4544,Block,Maheshwaram,LGD,518,4544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,3510,Block,Mahidpur,LGD,435,3510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,2475,Block,Mahisadal,LGD,317,2475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,1173,Block,Mahishi,LGD,216,1173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,2075,Block,Mahmora,LGD,708,2075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -LGD,807,Block,Mahmudabad,LGD,183,807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -LGD,1283,Block,Mahnar,LGD,224,1283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,870,Block,Mahoba,LGD,165,870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -LGD,6880,Block,Maholi,LGD,183,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -LGD,6850,Block,Mahore,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,863,Block,Mahroni,LGD,161,863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -LGD,1275,Block,Mahua,LGD,224,1275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,2637,Block,Mahuadanr,LGD,335,2637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,3877,Block,Mahudha,LGD,450,3877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,4095,Block,Mahur,LGD,485,4095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,3941,Block,Mahuva,LGD,459,3941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,3860,Block,Mahuva,LGD,443,3860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,534,Block,Mahwa,LGD,97,534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,3470,Block,Maihar,LGD,784,3470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,1016,Block,Mainatanr,LGD,211,1016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,3254,Block,Mainpat,LGD,389,3254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,3337,Block,Mainpur,LGD,645,3337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -LGD,775,Block,Mainpuri,LGD,166,775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -LGD,6702,Block,Maira Mandrian,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,1982,Block,Mairang,LGD,740,1982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 -LGD,1240,Block,Mairwa,LGD,222,1240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,6871,Block,Maitha,LGD,156,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -LGD,4219,Block,Majalgaon,LGD,470,4219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,75,Block,Majalta,LGD,14,75,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,3701,Block,Majhauli,LGD,433,3701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,1027,Block,Majhaulia,LGD,211,1027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,6919,Block,Majheen,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,2745,Block,Majhgaon,LGD,343,2745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,3462,Block,Majhgawan,LGD,426,3462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,2499,Block,Majhiaon,LGD,328,2499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,3628,Block,Majholi,LGD,411,3628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,6854,Block,Majitha,LGD,27,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -LGD,1065,Block,Majorganj,LGD,221,1065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,7121,Block,Majra,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,2076,Block,Majuli,LGD,706,2076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 -LGD,3937,Block,Majura,LGD,459,3937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,4875,Block,Makavarapalem,LGD,744,4875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3358,Block,Makdi,LGD,643,3358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -LGD,6995,Block,Makdon,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,1262,Block,Maker,LGD,218,1262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,3616,Block,Makhan Nagar,LGD,409,3616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,1540,Block,Makhdumpur,LGD,199,1540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -LGD,4813,Block,Makkuva,LGD,743,4813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4367,Block,Makloor,LGD,516,4367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,565,Block,Makrana,LGD,768,565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,6969,Block,Makridi,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,3680,Block,Maksoodangarh,LGD,406,3680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,4589,Block,Makthal,LGD,721,4589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,2167,Block,Mal,LGD,314,2167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,6382,Block,Malakhera,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,528,Block,Malarna Doongar,LGD,113,528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,5552,Block,Malavalli,LGD,544,5552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -LGD,2217,Block,Maldah (Old),LGD,316,2217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,4604,Block,Maldakal,LGD,695,4604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,4146,Block,Malegaon,LGD,487,4146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,3995,Block,Malegaon,LGD,499,3995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -LGD,269,Block,Malerkotla,LGD,737,269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -LGD,7014,Block,Malharganj,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,3493,Block,Malhargarh,LGD,416,3493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,4405,Block,Malharrao,LGD,687,4405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,3833,Block,Malia Hatina,LGD,448,3833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,819,Block,Malihabad,LGD,162,819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -LGD,4938,Block,Malikipuram,LGD,747,4938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3798,Block,Maliya,LGD,673,3798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -LGD,4521,Block,Malkajgiri,LGD,700,4521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,3220,Block,Malkangiri,LGD,364,3220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -LGD,3979,Block,Malkapur,LGD,472,3979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,3285,Block,Malkharoda,LGD,762,3285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,7536,Block,Mallampally,LGD,720,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,5680,Block,Mallappally,LGD,564,5680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -LGD,4394,Block,Mallapur,LGD,681,4394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,4413,Block,Mallial,LGD,681,4413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,239,Block,Malout,LGD,39,239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -LGD,3771,Block,Malpur,LGD,672,3771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,615,Block,Malpura,LGD,116,615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,4250,Block,Malshiras,LGD,496,4250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,6370,Block,Malsisar,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,3445,Block,Malthon,LGD,425,3445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,5592,Block,Malur,LGD,542,5592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -LGD,7589,Block,Malviya Nagar,LGD,83,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -LGD,4278,Block,Malwan,LGD,495,4278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,4346,Block,Mamada,LGD,680,4346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,7165,Block,Mambalam,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,4936,Block,Mamidikuduru,LGD,747,4936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6967,Block,Mamlig,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,4259,Block,Man,LGD,494,4259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,5776,Block,Manachanallur,LGD,591,5776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,4427,Block,Manakondur,LGD,508,4427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,117,Block,Manali,LGD,20,117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,5833,Block,Manamadurai,LGD,585,5833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,5827,Block,Manamelkudi,LGD,582,5827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,5635,Block,Mananthavady,LGD,567,5635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -LGD,5781,Block,Manapparai,LGD,591,5781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,3491,Block,Manasa,LGD,419,3491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -LGD,2628,Block,Manatu,LGD,338,2628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,3825,Block,Manavadar,LGD,448,3825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,3538,Block,Manawar,LGD,403,3538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,2395,Block,Manbazar - I,LGD,321,2395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,2396,Block,Manbazar - II,LGD,321,2396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,6348,Block,Manch,LGD,48,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -LGD,4547,Block,Manchal,LGD,518,4547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,1737,Block,Manchal Circle,LGD,628,1737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,7404,Block,Manchenahalli,LGD,630,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,4354,Block,Mancherial,LGD,684,4354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,631,Block,Mandal,LGD,92,631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,6713,Block,Mandal,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,3777,Block,Mandal,LGD,438,3777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,637,Block,Mandalgarh,LGD,92,637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,4352,Block,Mandamarri,LGD,684,4352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,4266,Block,Mandangad,LGD,492,4266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,6970,Block,Mandap,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,4920,Block,Mandapeta,LGD,505,4920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,2693,Block,Mandar,LGD,339,2693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,4776,Block,Mandasa,LGD,519,4776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,5015,Block,Mandavalli,LGD,748,5015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7145,Block,Mandawa,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,6914,Block,Mandawar,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,7383,Block,Mandhan,LGD,782,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,133,Block,Mandi,LGD,22,133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,17,Block,Mandi,LGD,10,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -LGD,2429,Block,Mandirbazar,LGD,304,2429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,7308,Block,Mandir Hasoud,LGD,387,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,3643,Block,Mandla,LGD,415,3643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -LGD,524,Block,Mandrayal,LGD,108,524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,2565,Block,Mandro,LGD,340,2565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,3496,Block,Mandsaur,LGD,416,3496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,7005,Block,Mandsaur Nagar,LGD,416,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,2661,Block,Mandu,LGD,607,2661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -LGD,3729,Block,Mandvi,LGD,449,3729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,3935,Block,Mandvi,LGD,459,3935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,5550,Block,Mandya,LGD,544,5550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -LGD,3234,Block,Manendragarh,LGD,760,3234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,1398,Block,Maner,LGD,212,1398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,419,Block,Manesar,LGD,62,419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,7465,Block,Maneswar,LGD,371,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,6466,Block,Manethi St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,5055,Block,Mangalagiri,LGD,506,5055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,7178,Block,Mangalbarey,LGD,742,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -LGD,2148,Block,Mangaldoi (Pt),LGD,283,2148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -LGD,5561,Block,Mangaluru,LGD,534,5561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,4252,Block,Mangalvedhe,LGD,496,4252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,1548,Block,Mangan,LGD,226,1548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 -LGD,4181,Block,Mangaon,LGD,491,4181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,4686,Block,Mangapet,LGD,720,4686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,3474,Block,Mangawan,LGD,424,3474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,1828,Block,Mangko,LGD,765,1828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1764,Block,Mangkolemba,LGD,246,1764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,2278,Block,Mangolkote,LGD,306,2278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,670,Block,Mangrol,LGD,89,670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,3933,Block,Mangrol,LGD,459,3933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,3832,Block,Mangrol,LGD,448,3832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,3996,Block,Mangrulpir,LGD,499,3996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -LGD,1185,Block,Manigachhi,LGD,195,1185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,1156,Block,Manihari,LGD,201,1156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,2635,Block,Manika,LGD,335,2635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -LGD,2219,Block,Manikchak,LGD,316,2219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,5930,Block,Manikpur,LGD,136,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -LGD,7199,Block,Manikpur,LGD,281,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -LGD,6515,Block,Maninagar,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,6933,Block,Maniya,LGD,98,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,6772,Block,Manjakote,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,5932,Block,Manjeswaram,LGD,558,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -LGD,1225,Block,Manjha,LGD,197,1225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,886,Block,Manjhanpur,LGD,158,886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -LGD,2741,Block,Manjhari,LGD,343,2741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,1255,Block,Manjhi,LGD,218,1255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,2012,Block,Mankachar,LGD,707,2012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 -LGD,931,Block,Mankapur,LGD,147,931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -LGD,6779,Block,Mankote,LGD,10,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -LGD,5985,Block,Manmangalam,LGD,576,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -LGD,1673,Block,Manmao Eac,LGD,229,1673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,5808,Block,Mannargudi,LGD,590,5808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,5648,Block,Mannarkad,LGD,563,5648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -LGD,6273,Block,Manoharabad,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,2735,Block,Manoharpur,LGD,343,2735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,681,Block,Manohar Thana,LGD,105,681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,4451,Block,Manoor,LGD,691,4451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,4611,Block,Manopad,LGD,695,4611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,3258,Block,Manora,LGD,380,3258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,3998,Block,Manora,LGD,499,3998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -LGD,1494,Block,Manpur,LGD,196,1494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,3309,Block,Manpur,LGD,761,3309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,3484,Block,Manpur,LGD,436,3484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -LGD,249,Block,Mansa,LGD,37,249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -LGD,3774,Block,Mansa,LGD,446,3774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -LGD,1152,Block,Mansahi,LGD,201,1152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,1324,Block,Mansi,LGD,202,1324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -LGD,1309,Block,Mansurchak,LGD,191,1309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,2285,Block,Manteswar,LGD,306,2285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,4132,Block,Mantha,LGD,479,4132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,4401,Block,Manthani,LGD,682,4401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,5250,Block,Mantralayam,LGD,511,5250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5183,Block,Manubolu,LGD,515,5183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,4727,Block,Manuguru,LGD,690,4727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,6647,Block,Manur,LGD,592,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,5462,Block,Manvi,LGD,546,5462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,4119,Block,Manwath,LGD,489,4119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,6650,Block,Marakanam,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,1108,Block,Marauna,LGD,223,1108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,7319,Block,Mardapal,LGD,643,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -LGD,4884,Block,Maredumilli,LGD,791,4884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4092,Block,Maregaon,LGD,500,4092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,2062,Block,Margherita,LGD,302,2062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -LGD,2551,Block,Margo Munda,LGD,324,2551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,6715,Block,Marh,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,1260,Block,Marhaura,LGD,218,1260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,6731,Block,Marheen,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,985,Block,Mariahu,LGD,152,985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -LGD,2081,Block,Mariani,LGD,290,2081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -LGD,2029,Block,Marigaon,LGD,296,2029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -LGD,1002,Block,Marihan,LGD,170,1002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -LGD,6263,Block,Marikal,LGD,721,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,4720,Block,Maripeda,LGD,688,4720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,1666,Block,Mariyang Adc,LGD,240,1666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,2531,Block,Markacho,LGD,334,2531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -LGD,5115,Block,Markapuram,LGD,790,5115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6282,Block,Markook,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,6751,Block,Marmat,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,6554,Block,Maro Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,4512,Block,Marpalle,LGD,698,4512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,4500,Block,Marredpally,LGD,507,4500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,7297,Block,Marri Bangla(Deori),LGD,646,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -LGD,4649,Block,Marriguda,LGD,514,4649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,5163,Block,Marripadu,LGD,515,5163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5129,Block,Marripudi,LGD,517,5129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,2932,Block,Marsaghai,LGD,360,2932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,6165,Block,Martinganjon,LGD,123,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,5106,Block,Martur,LGD,750,5106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5954,Block,Marungapuri,LGD,591,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,69,Block,Marwah,LGD,620,69,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,3288,Block,Marwahi,LGD,734,3288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 -LGD,1203,Block,Marwan,LGD,208,1203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,602,Block,Marwar Junction,LGD,111,602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,7190,Block,Masaipet,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,2675,Block,Masalia,LGD,326,2675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,6379,Block,Masalpur,LGD,108,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,1408,Block,Masaurhi,LGD,212,1408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,1248,Block,Mashrakh,LGD,218,1248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,7101,Block,Maski,LGD,546,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,3296,Block,Masturi,LGD,375,3296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,610,Block,Masuda,LGD,774,610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,762,Block,Mat,LGD,167,762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -LGD,3875,Block,Matar,LGD,450,3875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,410,Block,Matenhail,LGD,64,410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -LGD,2181,Block,Mathabhanga - I,LGD,308,2181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,2182,Block,Mathabhanga-II,LGD,308,2182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,5701,Block,Mathavaram,LGD,568,5701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,3221,Block,Mathili,LGD,364,3221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -LGD,764,Block,Mathura,LGD,167,764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -LGD,2430,Block,Mathurapur - I,LGD,304,2430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2436,Block,Mathurapur - II,LGD,304,2436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2015,Block,Matia,LGD,287,2015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -LGD,7581,Block,Matiala,LGD,84,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -LGD,2168,Block,Matiali,LGD,314,2168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,2162,Block,Matigara,LGD,309,2162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,1320,Block,Matihani,LGD,191,1320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,6412,Block,Matlauda,LGD,71,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -LGD,4670,Block,Mattampally,LGD,696,4670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,876,Block,Mau,LGD,136,876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -LGD,7000,Block,Mau,LGD,395,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,4029,Block,Mauda,LGD,484,4029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,867,Block,Maudaha,LGD,149,867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -LGD,3477,Block,Mauganj,LGD,766,3477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,7222,Block,Maulasar,LGD,768,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,973,Block,Maunath Bhanjan,LGD,168,973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -LGD,6858,Block,Maur,LGD,28,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -LGD,859,Block,Mauranipur,LGD,153,859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -LGD,543,Block,Mauzamabad,LGD,102,543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,6222,Block,Mavala,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,5678,Block,Mavelikkara,LGD,554,5678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -LGD,685,Block,Mavli,LGD,117,685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,4191,Block,Mawal,LGD,490,4191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,733,Block,Mawana,LGD,169,733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -LGD,7456,Block,Mawhati,LGD,276,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -LGD,1991,Block,Mawkynrew,LGD,274,1991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,1984,Block,Mawkyrwat,LGD,658,1984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 -LGD,6540,Block,Mawlai,LGD,274,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,6541,Block,Mawpat,LGD,274,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,1988,Block,Mawphlang,LGD,274,1988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,1990,Block,Mawryngkneng,LGD,274,1990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,1979,Block,Mawshynrut,LGD,279,1979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 -LGD,1993,Block,Mawsynram,LGD,274,1993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,1981,Block,Mawthadraishan,LGD,740,1981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 -LGD,5920,Block,Mayabunder,LGD,632,5920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -LGD,5796,Block,Mayiladuthurai,LGD,735,5796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -LGD,2177,Block,Maynaguri,LGD,314,2177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,2026,Block,Mayong,LGD,296,2026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -LGD,2255,Block,Mayureswar - I,LGD,307,2255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2256,Block,Mayureswar - II,LGD,307,2256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2521,Block,Mayur Hand,LGD,323,2521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,2153,Block,Mazbat,LGD,617,2153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -LGD,6369,Block,Mdawara,LGD,161,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -LGD,1656,Block,Mebo Adc,LGD,232,1656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -LGD,1622,Block,Mechuka Adc,LGD,725,1622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 -LGD,4456,Block,Medak,LGD,513,4456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,4519,Block,Medchal,LGD,700,4519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,5073,Block,Medikonduru,LGD,506,5073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,2633,Block,Medininagar(Daltonganj),LGD,338,2633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,4415,Block,Medipalli,LGD,681,4415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,6318,Block,Medipally,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,1799,Block,Medziphema,LGD,758,1799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,5668,Block,Meenachil,LGD,560,5668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -LGD,785,Block,Meerganj,LGD,130,785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -LGD,734,Block,Meerut,LGD,169,734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -LGD,3708,Block,Meghnagar,LGD,412,3708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -LGD,3765,Block,Meghraj,LGD,672,3765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,7409,Block,Mehal Kalan,LGD,605,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -LGD,6894,Block,Mehatpur,LGD,26,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,941,Block,Mehdawal,LGD,178,941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -LGD,2555,Block,Meherma,LGD,330,2555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,3393,Block,Mehgaon,LGD,395,3393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,3982,Block,Mehkar,LGD,472,3982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,3873,Block,Mehmedabad,LGD,450,3873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,970,Block,Mehnagar,LGD,123,970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,6080,Block,Mehrauli,LGD,83,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -LGD,1057,Block,Mehsi,LGD,213,1057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,894,Block,Meja,LGD,120,894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,2357,Block,Mejhia,LGD,305,2357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,2180,Block,Mekliganj,LGD,308,2180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,4774,Block,Meliaputti,LGD,519,4774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,4671,Block,Mellachervu,LGD,696,4671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,6652,Block,Melmalaiyanur,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,5835,Block,Melur,LGD,578,5835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,1803,Block,Meluri,LGD,788,1803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,2291,Block,Memari - I,LGD,306,2291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2292,Block,Memari - II,LGD,306,2292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,3830,Block,Mendarda,LGD,448,3830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,18,Block,Mendhar,LGD,10,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -LGD,6237,Block,Mendora,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,1604,Block,Mengio Eac,LGD,237,1604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,4824,Block,Mentada,LGD,521,4824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,4822,Block,Merakamudidam,LGD,521,4822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,2508,Block,Meral (Pipra Kalan),LGD,328,2508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,1765,Block,Merangmen,LGD,246,1765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,562,Block,Merta,LGD,110,562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,1522,Block,Meskaur,LGD,210,1522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,1740,Block,Metengliang Circle,LGD,628,1740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,4417,Block,Metpalli,LGD,681,4417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,5895,Block,Mettupalayam,LGD,569,5895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,5736,Block,Mettur,LGD,584,5736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,4184,Block,Mhasla,LGD,491,4184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,1680,Block,Miao Adc,LGD,229,1680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,4566,Block,Midjil,LGD,512,4566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,2453,Block,Midnapore,LGD,318,2453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,5267,Block,Midthur,LGD,755,5267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1659,Block,Migging Circle,LGD,240,1659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,6862,Block,Mihinpurwa Motipur,LGD,125,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -LGD,3397,Block,Mihona,LGD,395,3397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,2030,Block,Mikirbheta,LGD,296,2030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -LGD,728,Block,Milak,LGD,176,728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -LGD,903,Block,Milkipur,LGD,140,903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -LGD,2333,Block,Minakhan,LGD,303,2333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,1205,Block,Minapur,LGD,208,1205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,5629,Block,Minicoy,LGD,553,5629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -LGD,1717,Block,Mipi,LGD,230,1717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 -LGD,4302,Block,Miraj,LGD,493,4302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,4464,Block,Mirdoddi,LGD,692,4464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,2160,Block,Mirik,LGD,309,2160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,4664,Block,Miryalaguda,LGD,514,4664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,1000,Block,Mirzapur,LGD,170,1000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -LGD,803,Block,Misrikh,LGD,183,803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -LGD,6875,Block,Mitauli,LGD,159,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -LGD,7152,Block,Mitrapura,LGD,113,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,6636,Block,Modakkurichi,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,1538,Block,Modanganj,LGD,199,1538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -LGD,3769,Block,Modasa,LGD,672,3769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,432,Block,Model Town,LGD,796,432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,738,Block,Modinagar,LGD,145,738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -LGD,233,Block,Moga,LGD,38,233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -LGD,4986,Block,Mogalthur,LGD,523,4986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,6278,Block,Mogudampally,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,4680,Block,Mogullapally,LGD,687,4680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,4038,Block,Mohadi,LGD,471,4038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -LGD,6750,Block,Mohalla,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,990,Block,Mohammadabad,LGD,146,990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -LGD,7187,Block,Mohammadabad,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,2257,Block,Mohammad Bazar,LGD,307,2257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2617,Block,Mohammad Ganj,LGD,338,2617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,7520,Block,Mohammadnagar,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,800,Block,Mohammdi,LGD,159,800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -LGD,3101,Block,Mohana,LGD,353,3101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -LGD,3419,Block,Mohangarh,LGD,434,3419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,1449,Block,Mohania,LGD,200,1449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,822,Block,Mohanlalganj,LGD,162,822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -LGD,1509,Block,Mohanpur,LGD,196,1509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,1293,Block,Mohanpur,LGD,217,1293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,6689,Block,Mohanpur,LGD,272,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -LGD,2546,Block,Mohanpur,LGD,324,2546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,2469,Block,Mohanpur,LGD,318,2469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,6635,Block,Mohanur,LGD,580,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,1294,Block,Mohiuddinagar,LGD,217,1294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,3655,Block,Mohkhed,LGD,399,3655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,3308,Block,Mohla,LGD,761,3308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,6435,Block,Mohna St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,4248,Block,Mohol,LGD,496,4248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,4528,Block,Moinabad,LGD,518,4528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,1875,Block,Moirang,LGD,252,1875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 -LGD,1420,Block,Mokameh,LGD,212,1420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,4161,Block,Mokhada,LGD,665,4161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,5503,Block,Molakalmuru,LGD,533,5503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -LGD,3521,Block,Moman Badodiya,LGD,430,3521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -LGD,4513,Block,Mominpet,LGD,698,4513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,1623,Block,Monigong Eac,LGD,725,1623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 -LGD,1748,Block,Mon Sadar,LGD,247,1748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,1757,Block,Monyakshu,LGD,247,1757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,7102,Block,Moodubidire,LGD,534,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,274,Block,Moonak,LGD,43,274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -LGD,6260,Block,Moosapet,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,5036,Block,Mopidevi,LGD,510,5036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,1667,Block,Mopom Adipasi Circle,LGD,240,1667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,1755,Block,Mopong,LGD,247,1755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,2878,Block,Morada,LGD,365,2878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,719,Block,Moradabad,LGD,171,719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -LGD,2067,Block,Moran,LGD,286,2067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -LGD,196,Block,Morang,LGD,19,196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -LGD,2086,Block,Morangi,LGD,288,2086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -LGD,7038,Block,Morar,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,7443,Block,Morbi City,LGD,673,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -LGD,6498,Block,Moreh,LGD,716,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11 -LGD,3387,Block,Morena,LGD,417,3387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,7047,Block,Morena Nagar,LGD,417,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,279,Block,Mori,LGD,57,279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,6857,Block,Morinda,LGD,42,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -LGD,5615,Block,Mormugao,LGD,552,5615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -LGD,6461,Block,Morni St,LGD,70,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -LGD,4006,Block,Morshi,LGD,468,4006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,4362,Block,Morthad,LGD,516,4362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,3799,Block,Morvi,LGD,673,3799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -LGD,1291,Block,Morwa,LGD,217,1291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,3884,Block,Morwa (Hadaf),LGD,454,3884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,6668,Block,Mosara,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,6309,Block,Motakonduru,LGD,697,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,3980,Block,Motala,LGD,472,3980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,856,Block,Moth,LGD,153,856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -LGD,4640,Block,Mothey,LGD,696,4640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,4625,Block,Mothkur,LGD,697,4625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,1041,Block,Motihari,LGD,213,1041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,3230,Block,Motu,LGD,364,3230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -LGD,6734,Block,Moungri,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,5032,Block,Movva,LGD,510,5032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,2476,Block,Moyna,LGD,317,2476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,6504,Block,Mualnuam,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,7099,Block,Mudalgi,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,5216,Block,Muddanur,LGD,504,5216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,5453,Block,Muddebihal,LGD,530,5453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,5445,Block,Mudhol,LGD,524,5445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,4341,Block,Mudhole,LGD,680,4341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,5531,Block,Mudigere,LGD,532,5531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,4758,Block,Mudigonda,LGD,509,4758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,5339,Block,Mudigubba,LGD,754,5339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5020,Block,Mudinepalle,LGD,748,5020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4101,Block,Mudkhed,LGD,485,4101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,6671,Block,Muduchinthalapally,LGD,700,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,5857,Block,Mudukulathur,LGD,583,5857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,6764,Block,Mugal Maidan,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,6235,Block,Mugpal,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,974,Block,Muhammadabad Gohna,LGD,168,974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -LGD,1492,Block,Muhra,LGD,196,1492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,7300,Block,Mukdega,LGD,386,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,215,Block,Mukerian,LGD,33,215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -LGD,4109,Block,Mukhed,LGD,485,4109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,3963,Block,Muktainagar (Edlabad),LGD,478,3963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,1563,Block,Mukto Circle,LGD,238,1563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,5656,Block,Mukundapuram,LGD,566,5656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -LGD,4072,Block,Mul,LGD,473,4072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,6839,Block,Mulagada,LGD,520,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,5367,Block,Mulakalacheruvu,LGD,753,5367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6430,Block,Mulana St,LGD,58,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -LGD,5594,Block,Mulbagal,LGD,542,5594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -LGD,4059,Block,Mulchera,LGD,475,4059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,3793,Block,Muli,LGD,460,3793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,4748,Block,Mulkalapally,LGD,690,4748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,7198,Block,Mulki,LGD,534,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,4192,Block,Mulshi,LGD,490,4192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,3604,Block,Multai,LGD,394,3604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,113,Block,Multhan,LGD,18,113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,4486,Block,Mulug,LGD,692,4486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,4689,Block,Mulug,LGD,720,4689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,4932,Block,Mummidivaram,LGD,747,4932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4642,Block,Munagala,LGD,696,4642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,4877,Block,Munagapaka,LGD,744,4877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4841,Block,Munchingi Puttu,LGD,745,4841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5472,Block,Mundargi,LGD,537,5472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -LGD,494,Block,Mundawar,LGD,770,494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5482,Block,Mundgod,LGD,550,5482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,7411,Block,Mundi,LGD,405,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,7583,Block,Mundka,LGD,794,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,5113,Block,Mundlamuru,LGD,517,5113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,3730,Block,Mundra,LGD,449,3730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,6378,Block,Mundwa,LGD,110,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,3688,Block,Mungaoli,LGD,391,3688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,3292,Block,Mungeli,LGD,647,3292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -LGD,1356,Block,Munger,LGD,207,1356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,3173,Block,Muniguda,LGD,370,3173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,4477,Block,Munipally,LGD,691,4477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,315,Block,Munsiari,LGD,53,315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,4647,Block,Munugode,LGD,514,4647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,6238,Block,Mupkal,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,5068,Block,Muppalla,LGD,751,5068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2249,Block,Murarai - I,LGD,307,2249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2250,Block,Murarai - II,LGD,307,2250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,4171,Block,Murbad,LGD,497,4171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -LGD,2703,Block,Murhu,LGD,606,2703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 -LGD,7454,Block,Muribahal,LGD,345,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,1164,Block,Murliganj,LGD,205,1164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,2237,Block,Murshidabad Jiaganj,LGD,319,2237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,3992,Block,Murtijapur,LGD,467,3992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -LGD,4178,Block,Murud,LGD,491,4178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,3620,Block,Murwara Or Katni,LGD,413,3620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,2609,Block,Musabani,LGD,327,2609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,912,Block,Musafirkhana,LGD,640,912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -LGD,1212,Block,Musahri,LGD,208,1212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,4501,Block,Musheerabad,LGD,507,4501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,5774,Block,Musiri,LGD,591,5774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,7393,Block,Mussoorie,LGD,49,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,4434,Block,Mustabad,LGD,683,4434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,5002,Block,Musunuru,LGD,748,5002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4404,Block,Mutharam Mahadevpur,LGD,687,4404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,4406,Block,Mutharam (Manthani),LGD,682,4406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,5181,Block,Muthukur,LGD,515,5181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,7408,Block,Muthupettai,LGD,590,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,5662,Block,Muvattupuzha,LGD,555,5662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -LGD,708,Block,Muzaffarnagar,LGD,172,708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -LGD,7170,Block,Mylapore,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,4995,Block,Mylavaram,LGD,749,4995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5200,Block,Mylavaram,LGD,504,5200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,1989,Block,Mylliem,LGD,274,1989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,5572,Block,Mysuru,LGD,545,5572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,2307,Block,Nabadwip,LGD,320,2307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,2238,Block,Nabagram,LGD,319,2238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,3196,Block,Nabarangapur P.S,LGD,366,3196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,252,Block,Nabha,LGD,41,252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -LGD,1483,Block,Nabinagar,LGD,189,1483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,1609,Block,Nacho Sdo,LGD,241,1609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,141,Block,Nadaun,LGD,17,141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,509,Block,Nadbai,LGD,91,509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,5069,Block,Nadendla,LGD,751,5069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3876,Block,Nadiad,LGD,450,3876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,6531,Block,Nadiad City,LGD,450,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,4641,Block,Nadigudem,LGD,696,4641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,6547,Block,Nadikuda,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,521,Block,Nadoti,LGD,108,521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,7416,Block,Naduar,LGD,301,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -LGD,2044,Block,Na-Duar,LGD,705,2044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -LGD,1568,Block,Nafra Adc,LGD,787,1568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,5403,Block,Nagalapuram,LGD,752,5403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6280,Block,Nagalgidda,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,5547,Block,Nagamangala,LGD,544,5547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -LGD,2035,Block,Nagaon,LGD,297,2035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -LGD,5799,Block,Nagapattinam,LGD,579,5799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -LGD,4209,Block,Nagar,LGD,466,4209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,507,Block,Nagar,LGD,767,507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5095,Block,Nagaram,LGD,750,5095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6298,Block,Nagaram,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,2123,Block,Nagarbera,LGD,291,2123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,7155,Block,Nagarfort,LGD,116,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,5406,Block,Nagari,LGD,503,5406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,4583,Block,Nagarkurnool,LGD,694,4583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,1379,Block,Nagar Nausa,LGD,209,1379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,2503,Block,Nagaruntari,LGD,328,2503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,560,Block,Nagaur,LGD,110,560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,5038,Block,Nagayalanka,LGD,510,5038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,4066,Block,Nagbhid,LGD,473,4066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,3509,Block,Nagda,LGD,435,3509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,714,Block,Nagina,LGD,132,714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -LGD,6477,Block,Nagina St,LGD,604,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -LGD,1744,Block,Naginimora,LGD,247,1744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,4387,Block,Nagireddypet,LGD,685,4387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,3464,Block,Nagod,LGD,426,3464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,4031,Block,Nagpur (Rural),LGD,484,4031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,4032,Block,Nagpur (Urban),LGD,484,4032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,1259,Block,Nagra,LGD,218,1259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,2169,Block,Nagrakata,LGD,314,2169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,2692,Block,Nagri,LGD,339,2692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,3347,Block,Nagri,LGD,377,3347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -LGD,6727,Block,Nagri Parole,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,6711,Block,Nagrota,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,101,Block,Nagrota Bagwan,LGD,18,101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,6895,Block,Nagrota Surian,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,6768,Block,Nagseni,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,5126,Block,Naguluppala Padu,LGD,517,5126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,172,Block,Nahan,LGD,24,172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,2069,Block,Naharkatiya,LGD,286,2069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -LGD,1596,Block,Naharlagun Eac,LGD,237,1596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,6465,Block,Nahar St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,5194,Block,Naidupet,LGD,752,5194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4106,Block,Naigaon (Khairgaon),LGD,485,4106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,3478,Block,Naigarhi,LGD,766,3478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,155,Block,Naina Devi,LGD,15,155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -LGD,6337,Block,Nainbag,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,340,Block,Nainital,LGD,51,340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,3646,Block,Nainpur,LGD,415,3646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -LGD,623,Block,Nainwa,LGD,94,623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -LGD,6973,Block,Nai Sarai,LGD,391,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,451,Block,Najafgarh,LGD,84,451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -LGD,712,Block,Najibabad,LGD,132,712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -LGD,2304,Block,Nakashipara,LGD,320,2304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,3727,Block,Nakhatrana,LGD,449,3727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,4880,Block,Nakkapalli,LGD,744,4880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,210,Block,Nakodar,LGD,34,210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -LGD,4636,Block,Nakrekal,LGD,514,4636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,2798,Block,Naktideul,LGD,371,2798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,703,Block,Nakur,LGD,177,703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -LGD,2679,Block,Nala,LGD,333,2679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -LGD,161,Block,Nalagarh,LGD,25,161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,2136,Block,Nalbari,LGD,298,2136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -LGD,4646,Block,Nalgonda,LGD,514,4646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,2251,Block,Nalhati - I,LGD,307,2251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2252,Block,Nalhati - II,LGD,307,2252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,3516,Block,Nalkheda,LGD,667,3516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -LGD,4692,Block,Nallabelli,LGD,522,4692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,5359,Block,Nallachervu,LGD,754,5359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4956,Block,Nallajerla,LGD,505,4956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,5344,Block,Nallamada,LGD,754,5344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6623,Block,Nallampalli,LGD,571,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -LGD,5747,Block,Namakkal,LGD,580,5747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,6638,Block,Nambiyur,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,1873,Block,Nambol,LGD,252,1873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 -LGD,5341,Block,Nambulapulakunta,LGD,754,5341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1551,Block,Namchi,LGD,227,1551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -LGD,7335,Block,Namdong,LGD,275,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 -LGD,157,Block,Namhol,LGD,15,157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -LGD,2439,Block,Namkhana,LGD,304,2439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2690,Block,Namkum,LGD,339,2690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,4654,Block,Nampally,LGD,514,4654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4504,Block,Nampally,LGD,507,4504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,1676,Block,Nampong Sdo,LGD,229,1676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,1732,Block,Namsai Hq,LGD,678,1732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 -LGD,1831,Block,Namsang,LGD,615,1831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -LGD,6115,Block,Namsing Circle,LGD,232,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -LGD,7542,Block,Namthang,LGD,227,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -LGD,6580,Block,Namtok Eac,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,6364,Block,Nanakmatta,LGD,56,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,7547,Block,Nanapodha,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,5917,Block,Nancowry,LGD,603,5917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 -LGD,7481,Block,Nandahandi,LGD,366,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,2474,Block,Nanda Kumar,LGD,317,2474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,5243,Block,Nandalur,LGD,504,5243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,3214,Block,Nandapur,LGD,363,3214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,5255,Block,Nandavaram,LGD,511,5255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,4100,Block,Nanded,LGD,485,4100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,4147,Block,Nandgaon,LGD,487,4147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,4012,Block,Nandgaon-Khandeshwar,LGD,468,4012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,7248,Block,Nandghat,LGD,650,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,4782,Block,Nandigam,LGD,519,4782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,6321,Block,Nandigama,LGD,518,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,4993,Block,Nandigama,LGD,749,4993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2484,Block,Nandigram - I,LGD,317,2484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2485,Block,Nandigram - II,LGD,317,2485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,5260,Block,Nandikotkur,LGD,755,5260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4359,Block,Nandipet,LGD,516,4359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,5014,Block,Nandivada,LGD,510,5014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,3910,Block,Nandod,LGD,452,3910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -LGD,6344,Block,Nandprayag,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,3978,Block,Nandura,LGD,472,3978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,3954,Block,Nandurbar,LGD,486,3954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -LGD,5284,Block,Nandyal Rural,LGD,755,5284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7425,Block,Nandyal Urban,LGD,755,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,263,Block,Nangal,LGD,42,263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -LGD,6456,Block,Nangal Chawdhary,LGD,69,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -LGD,6053,Block,Nangal Rajawatan,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,7595,Block,Nangloi Jat,LGD,82,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 -LGD,4461,Block,Nangnoor,LGD,692,4461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,5879,Block,Nanguneri,LGD,592,5879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,7313,Block,Nangur,LGD,374,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,5574,Block,Nanjangud,LGD,545,5574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,178,Block,Nankhari,LGD,23,178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,5805,Block,Nannilam,LGD,590,5805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,2263,Block,Nanoor,LGD,307,2263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,919,Block,Nanpara,LGD,125,919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -LGD,1078,Block,Nanpur,LGD,221,1078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,2050,Block,Naobaicha,LGD,295,2050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -LGD,1315,Block,Naokothi,LGD,191,1315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,6954,Block,Narag,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,358,Block,Naraingarh,LGD,58,358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -LGD,874,Block,Naraini,LGD,128,874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -LGD,3161,Block,Narala,LGD,358,3161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,4799,Block,Narasannapeta,LGD,519,4799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,4987,Block,Narasapuram,LGD,523,4987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,5067,Block,Narasaraopet,LGD,751,5067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5527,Block,Narasimharajapura,LGD,532,5527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,6670,Block,Narayanaraopet,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,5400,Block,Narayanavanam,LGD,752,5400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6333,Block,Narayanbagar,LGD,47,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,3642,Block,Narayanganj,LGD,415,3642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -LGD,2465,Block,Narayangarh,LGD,318,2465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,4452,Block,Narayankhed,LGD,691,4452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,3204,Block,Narayanpatana,LGD,363,3204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,4570,Block,Narayanpet,LGD,721,4570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,2048,Block,Narayanpur,LGD,295,2048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -LGD,2676,Block,Narayanpur,LGD,333,2676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -LGD,1329,Block,Narayanpur,LGD,192,1329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,3367,Block,Narayanpur,LGD,637,3367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 -LGD,6936,Block,Narayanpur,LGD,782,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,4648,Block,Narayanpur,LGD,697,4648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,6813,Block,Narbal,LGD,2,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -LGD,1511,Block,Nardiganj,LGD,210,1511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,430,Block,Narela,LGD,794,430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,299,Block,Narendra Nagar,LGD,55,299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,5468,Block,Nargund,LGD,537,5468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -LGD,3352,Block,Narharpur,LGD,381,3352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,1521,Block,Narhat,LGD,210,1521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,1651,Block,Nari Adc,LGD,719,1651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,1036,Block,Narkatia,LGD,213,1036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1017,Block,Narkatiaganj,LGD,211,1017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,4634,Block,Narketpally,LGD,514,4634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4023,Block,Narkhed,LGD,484,4023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,4675,Block,Narmetta,LGD,689,4675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,412,Block,Narnaul,LGD,69,412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -LGD,395,Block,Narnaund,LGD,792,395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -LGD,4312,Block,Narnoor,LGD,501,4312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,5328,Block,Narpala,LGD,502,5328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,1112,Block,Narpatganj,LGD,188,1112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,4708,Block,Narsampet,LGD,522,4708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,6352,Block,Narsan,LGD,50,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -LGD,4488,Block,Narsapur,LGD,513,4488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,6208,Block,Narsapur G,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,3636,Block,Narsimhapur,LGD,418,3636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -LGD,4719,Block,Narsimhulapet,LGD,688,4719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,3568,Block,Narsinghgarh,LGD,422,3568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,2944,Block,Narsinghpur,LGD,350,2944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,6272,Block,Narsingi,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,4854,Block,Narsipatnam,LGD,744,4854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4588,Block,Narwa,LGD,721,4588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,6163,Block,Narwal,LGD,157,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -LGD,382,Block,Narwana,LGD,65,382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -LGD,3409,Block,Narwar,LGD,432,3409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,7202,Block,Narwav,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,4152,Block,Nashik,LGD,487,4152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,611,Block,Nasirabad,LGD,86,611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,6226,Block,Naspur,LGD,684,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,1463,Block,Nasriganj,LGD,215,1463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,6244,Block,Nasurullabad,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,3903,Block,Nasvadi,LGD,668,3903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -LGD,3575,Block,Nateran,LGD,437,3575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,5763,Block,Natham,LGD,572,5763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,4852,Block,Nathavaram,LGD,744,4852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,645,Block,Nathdwara,LGD,112,645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,1339,Block,Nathnagar,LGD,192,1339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,6470,Block,Nathusari Chopta,LGD,74,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -LGD,5963,Block,Natrampalli,LGD,732,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -LGD,1404,Block,Naubatpur,LGD,212,1404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,1332,Block,Naugachhia,LGD,192,1332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,7129,Block,Nauganwa,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,2942,Block,Naugaon,LGD,355,2942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,933,Block,Naugarh,LGD,182,933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -LGD,6870,Block,Naugarh,LGD,135,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -LGD,6831,Block,Naugawan Sadat,LGD,154,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -LGD,1469,Block,Nauhatta,LGD,215,1469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,1171,Block,Nauhatta,LGD,216,1171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,1030,Block,Nautan,LGD,211,1030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,1229,Block,Nautan,LGD,222,1229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,944,Block,Nautanwa,LGD,164,944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -LGD,5474,Block,Navalgund,LGD,536,5474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -LGD,4358,Block,Navipet,LGD,516,4358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,3922,Block,Navsari,LGD,453,3922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -LGD,566,Block,Nawa,LGD,768,566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,2625,Block,Nawa Bazar,LGD,338,2625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,788,Block,Nawabganj,LGD,130,788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -LGD,898,Block,Nawabganj,LGD,129,898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -LGD,4556,Block,Nawabpet,LGD,512,4556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,4514,Block,Nawabpet,LGD,698,4514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,1512,Block,Nawada,LGD,210,1512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,2588,Block,Nawadih,LGD,322,2588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,2621,Block,Nawadiha Bazar/Nawadiha*,LGD,338,2621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,3311,Block,Nawagarh,LGD,650,3311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,3280,Block,Nawagarh,LGD,379,3280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,491,Block,Nawalgarh,LGD,106,491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,1445,Block,Nawanagar,LGD,194,1445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,218,Block,Nawanshahr,LGD,40,218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -LGD,3955,Block,Nawapur,LGD,486,3955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -LGD,2243,Block,Nawda,LGD,319,2243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2163,Block,Naxalbari,LGD,309,2163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,7267,Block,Naya Baradwar,LGD,762,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,7157,Block,Nayagaon,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,3028,Block,Nayagarh,LGD,367,3028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,2458,Block,Nayagram,LGD,703,2458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,2073,Block,Nazira,LGD,300,2073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -LGD,7153,Block,Nechhwa,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,5690,Block,Nedumangad,LGD,565,5690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -LGD,5807,Block,Needamangalam,LGD,590,5807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,1491,Block,Neem Chak Bathani,LGD,196,1491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,556,Block,Neem Ka Thana,LGD,114,556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,6380,Block,Neemrana,LGD,782,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3489,Block,Neemuch,LGD,419,3489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -LGD,7035,Block,Neemuch Nagar,LGD,419,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -LGD,5060,Block,Nekarikallu,LGD,751,5060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4713,Block,Nekkonda,LGD,522,4713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,4759,Block,Nelakondapalli,LGD,509,4759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,5601,Block,Nelamangala,LGD,526,5601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -LGD,4716,Block,Nellikudur,LGD,688,4716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,4837,Block,Nellimarla,LGD,521,4837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,5177,Block,Nellore Rural,LGD,515,5177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,7182,Block,Nellore Urban,LGD,515,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,6664,Block,Nemili,LGD,731,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -LGD,4331,Block,Nennel,LGD,684,4331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,3721,Block,Nepanagar,LGD,397,3721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -LGD,4079,Block,Ner,LGD,500,4079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,4325,Block,Neradigonda,LGD,501,4325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,4665,Block,Nereducherla,LGD,696,4665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,6308,Block,Neredugommu,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,187,Block,Nerwa,LGD,23,187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,6170,Block,Netrang,LGD,442,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,2383,Block,Neturia,LGD,321,2383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,4206,Block,Nevasa,LGD,466,4206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,7593,Block,New Delhi,LGD,79,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11 -LGD,6575,Block,New Seren Circle,LGD,719,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,5692,Block,Neyyattinkara,LGD,565,5692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -LGD,1906,Block,Ngopa,LGD,727,1906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -LGD,1818,Block,Ngoungchung,LGD,249,1818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -LGD,2967,Block,Niali,LGD,350,2967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,198,Block,Nichar,LGD,19,198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -LGD,945,Block,Nichlaul,LGD,164,945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -LGD,4960,Block,Nidadavole,LGD,505,4960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,7075,Block,Nidagundi,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,4968,Block,Nidamarru,LGD,748,4968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4661,Block,Nidmanoor,LGD,514,4661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,6451,Block,Nigdu St,LGD,67,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,797,Block,Nighasan,LGD,159,797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -LGD,231,Block,Nihal Singhwala,LGD,38,231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -LGD,1795,Block,Nihokhu,LGD,764,1795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,138,Block,Nihri,LGD,22,138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,6587,Block,Nikte Kodum Circle,LGD,243,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,2903,Block,Nilagiri,LGD,346,2903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,5767,Block,Nilakkottai,LGD,572,5767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,2632,Block,Nilambar-Pitambarpur(Lesliganj),LGD,338,2632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,2103,Block,Nilambazar,LGD,293,2103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -LGD,5642,Block,Nilambur,LGD,562,5642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -LGD,4233,Block,Nilanga,LGD,481,4233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,6552,Block,Nilling Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,370,Block,Nilokheri,LGD,67,370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,3058,Block,Nimapada,LGD,369,3058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,663,Block,Nimbahera,LGD,95,663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,2751,Block,Nimdih,LGD,341,2751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,5393,Block,Nimmanapalle,LGD,753,5393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5404,Block,Nindra,LGD,503,5404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,4155,Block,Niphad,LGD,487,4155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,7105,Block,Nippani,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,7211,Block,Nirjharna,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,1101,Block,Nirmali,LGD,223,1101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,6210,Block,Nirmal Rural,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,4344,Block,Nirmal U,LGD,680,4344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,122,Block,Nirmand,LGD,20,122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,2587,Block,Nirsa-Cum-Chirkunda,LGD,325,2587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,2958,Block,Nischintakoili,LGD,350,2958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,6450,Block,Nising St,LGD,67,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -LGD,6886,Block,Nither,LGD,20,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,1792,Block,Niuland,LGD,764,1792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,617,Block,Niwai,LGD,116,617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,3560,Block,Niwali,LGD,393,3560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,3415,Block,Niwari,LGD,722,3415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -LGD,3641,Block,Niwas,LGD,415,3641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -LGD,967,Block,Nizamabad,LGD,123,967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,4368,Block,Nizamabad North,LGD,516,4368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,6233,Block,Nizamabad Rural,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,6385,Block,Nizamabad South,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,5094,Block,Nizampatnam,LGD,750,5094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6271,Block,Nizampet,LGD,513,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,7535,Block,Nizampet (28),LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,4385,Block,Nizamsagar,LGD,685,4385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,3942,Block,Nizar,LGD,641,3942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,2736,Block,Noamundi,LGD,343,2736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,471,Block,Nohar,LGD,101,471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,168,Block,Nohra,LGD,24,168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,1466,Block,Nokha,LGD,215,1466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,477,Block,Nokha,LGD,93,477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,7132,Block,Nokhra,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,1823,Block,Nokhu,LGD,736,1823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1821,Block,Noklak,LGD,736,1821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1814,Block,Noksen,LGD,249,1814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -LGD,1980,Block,Nongstoin,LGD,279,1980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 -LGD,1387,Block,Noorsarai,LGD,209,1387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,2126,Block,North Guwahati,LGD,291,2126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,2052,Block,North Lakhimpur,LGD,295,2052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -LGD,3427,Block,Nowgong,LGD,398,3427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,3486,Block,Nowrozabad,LGD,436,3486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -LGD,25,Block,Nowshera,LGD,12,25,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,1855,Block,Nsong,LGD,613,1855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -LGD,7504,Block,Nuagad,LGD,353,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -LGD,3025,Block,Nuagaon,LGD,367,3025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,1447,Block,Nuaon,LGD,200,1447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,3154,Block,Nuapada,LGD,368,3154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -LGD,422,Block,Nuh,LGD,604,422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -LGD,1867,Block,Nungba,LGD,714,1867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 -LGD,93,Block,Nurpur,LGD,18,93,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,4621,Block,Nuthanakal,LGD,696,4621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,5063,Block,Nuzendla,LGD,751,5063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5003,Block,Nuzividu,LGD,748,5003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4473,Block,Nyalkal,LGD,691,4473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,7076,Block,Nyamathi,LGD,535,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -LGD,1706,Block,Nyapin Adc,LGD,233,1706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,6844,Block,Nyobia Circle,LGD,233,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,7162,Block,Nyoma,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,1480,Block,Obra,LGD,189,1480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,7127,Block,Obra,LGD,184,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -LGD,7384,Block,Obri,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,5358,Block,Obuladevaracheruvu,LGD,754,5358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5248,Block,Obulavaripalle,LGD,752,5248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3031,Block,Odagaon,LGD,367,3031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,7503,Block,Odapada,LGD,352,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,5761,Block,Oddanchatram,LGD,572,5761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,4426,Block,Odela,LGD,682,4426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,3243,Block,Odgi,LGD,648,3243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,7557,Block,Ogad,LGD,441,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,6350,Block,Okhalkanda,LGD,51,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,3812,Block,Okhamandal,LGD,674,3812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -LGD,6107,Block,Old Ziro Sdo,LGD,236,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11 -LGD,3932,Block,Olpad,LGD,459,3932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,5737,Block,Omalur,LGD,584,5737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,4243,Block,Omarga,LGD,488,4243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,2370,Block,Onda,LGD,305,2370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,5139,Block,Ongole Rural,LGD,517,5139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,7430,Block,Ongole Urban,LGD,517,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,1766,Block,Ongpangkong,LGD,246,1766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,5989,Block,Ongpangkong (N),LGD,246,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,854,Block,Orai,LGD,151,854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -LGD,5815,Block,Orathanadu,LGD,586,5815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,3416,Block,Orchha,LGD,722,3416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -LGD,3368,Block,Orchha,LGD,637,3368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 -LGD,2685,Block,Ormanjhi,LGD,339,2685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,5268,Block,Orvakal,LGD,511,5268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,568,Block,Osian,LGD,107,568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,5865,Block,Ottapidaram,LGD,594,5865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,5647,Block,Ottappalam,LGD,563,5647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -LGD,5910,Block,Oulgaret,LGD,600,5910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -LGD,2905,Block,Oupada,LGD,346,2905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,5295,Block,Owk,LGD,755,5295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1654,Block,Oyan Circle,LGD,232,1654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -LGD,5189,Block,Ozili,LGD,752,5189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1218,Block,Pach Deuri,LGD,197,1218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,169,Block,Pachhad,LGD,24,169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,2133,Block,Pachim Nalbari,LGD,298,2133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -LGD,4818,Block,Pachipenta,LGD,743,4818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3973,Block,Pachora,LGD,478,3973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,3569,Block,Pachore,LGD,422,3569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,579,Block,Pachpadra,LGD,775,579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,682,Block,Pachpahar,LGD,105,682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,7349,Block,Pachpedi,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,1237,Block,Pachrukhi,LGD,222,1237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,2757,Block,Padampur,LGD,347,2757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,460,Block,Padampur,LGD,100,460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,6294,Block,Padara,LGD,694,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,3802,Block,Paddhari,LGD,457,3802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,4847,Block,Paderu,LGD,745,4847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,123,Block,Padhar,LGD,22,123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,2646,Block,Padma,LGD,332,2646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,4864,Block,Padmanabham,LGD,520,4864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,3185,Block,Padmapur,LGD,370,3185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,3906,Block,Padra,LGD,461,3906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,955,Block,Padrauna,LGD,160,955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -LGD,2627,Block,Padwa,LGD,338,2627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,5261,Block,Pagidyala,LGD,755,5261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,53,Block,Pahalgam,LGD,1,53,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,505,Block,Pahari,LGD,767,505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,1044,Block,Paharpur,LGD,213,1044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,6194,Block,Pahloo,LGD,622,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -LGD,2755,Block,Paikmal,LGD,347,2755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,6157,Block,Pailani,LGD,128,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -LGD,4141,Block,Paithan,LGD,469,4141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,6955,Block,Pajhota,LGD,24,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,5396,Block,Pakala,LGD,752,5396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2719,Block,Pakar Tanr,LGD,342,2719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,2576,Block,Pakaur,LGD,337,2576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -LGD,3354,Block,Pakhanjur,LGD,381,3354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,1581,Block,Pakke Kessang Eac,LGD,723,1581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 -LGD,6848,Block,Pakoti Circle,LGD,231,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,1515,Block,Pakribarawan,LGD,210,1515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,1052,Block,Pakri Dayal,LGD,213,1052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,2578,Block,Pakuria,LGD,337,2578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -LGD,1554,Block,Pakyong,LGD,741,1554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -LGD,4977,Block,Palacoderu,LGD,523,4977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,4988,Block,Palacole,LGD,523,4988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,6301,Block,Palakeedu,LGD,696,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,5649,Block,Palakkad,LGD,563,5649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -LGD,5885,Block,Palakkodu,LGD,571,5885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -LGD,4784,Block,Palakonda,LGD,743,4784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6215,Block,Palakurthy,LGD,682,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,4697,Block,Palakurthy,LGD,689,4697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,3000,Block,Palalahada,LGD,344,3000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,4123,Block,Palam,LGD,489,4123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,5422,Block,Palamaner,LGD,503,5422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,111,Block,Palampur,LGD,18,111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,5760,Block,Palani,LGD,572,5760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,3739,Block,Palanpur,LGD,441,3739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,7436,Block,Palanpur City,LGD,441,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,3327,Block,Palari,LGD,644,3327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,4775,Block,Palasa,LGD,519,4775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,5432,Block,Palasamudram,LGD,503,5432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,2125,Block,Palasbari,LGD,291,2125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,1119,Block,Palasi,LGD,188,1119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,5877,Block,Palayamkottai,LGD,592,5877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,7212,Block,Paldewal,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,3420,Block,Palera,LGD,434,3420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,4163,Block,Palghar,LGD,665,4163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,6418,Block,Palhawas St,LGD,72,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,3274,Block,Pali,LGD,383,3274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,6881,Block,Pali,LGD,161,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -LGD,3485,Block,Pali,LGD,436,3485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -LGD,601,Block,Pali,LGD,111,601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,798,Block,Palia,LGD,159,798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -LGD,1407,Block,Paliganj,LGD,212,1407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,6250,Block,Palimela,LGD,687,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,1703,Block,Palin Circle,LGD,677,1703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -LGD,3858,Block,Palitana,LGD,443,3858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,2717,Block,Palkot,LGD,331,2717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,5905,Block,Palladam,LGD,634,5905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,6629,Block,Pallavaram,LGD,730,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,1660,Block,Palling Circle,LGD,240,1660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,5697,Block,Pallipattu,LGD,589,5697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,7213,Block,Pallu,LGD,101,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,2554,Block,Palojori,LGD,324,2554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,3939,Block,Palsana,LGD,459,3939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,4297,Block,Palus,LGD,493,4297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,4737,Block,Palvoncha,LGD,690,4737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,427,Block,Palwal,LGD,619,427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -LGD,7519,Block,Palwancha,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,5028,Block,Pamarru,LGD,510,5028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,3283,Block,Pamgarh,LGD,379,3283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,5315,Block,Pamidi,LGD,502,5315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5026,Block,Pamidimukkala,LGD,510,5026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,48,Block,Pampore,LGD,11,48,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,5266,Block,Pamulapadu,LGD,755,5266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5146,Block,Pamur,LGD,790,5146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3632,Block,Panagar,LGD,411,3632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,1249,Block,Panapur,LGD,218,1249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,6735,Block,Panchari,LGD,14,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,357,Block,Panchkula,LGD,70,357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -LGD,2405,Block,Panchla,LGD,313,2405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,6899,Block,Panchrukhi,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,2273,Block,Pandabeswar,LGD,704,2273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,1418,Block,Pandarak,LGD,212,1418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,3301,Block,Pandariya,LGD,382,3301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,1094,Block,Pandaul,LGD,206,1094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,5548,Block,Pandavapura,LGD,544,5548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -LGD,3718,Block,Pandhana,LGD,405,3718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,4249,Block,Pandharpur,LGD,496,4249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,3658,Block,Pandhurna,LGD,785,3658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,6869,Block,Pandit Deendayal Upadhyay Nagar,LGD,135,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -LGD,2622,Block,Pandu,LGD,338,2622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,2344,Block,Pandua,LGD,312,2344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,4601,Block,Pangal,LGD,693,4601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,1692,Block,Pangchao Sdo,LGD,666,1692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 -LGD,83,Block,Pangi,LGD,16,83,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,1645,Block,Pangin Eac,LGD,679,1645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,6951,Block,Pangna,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,4284,Block,Panhala,LGD,480,4284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,375,Block,Panipat,LGD,71,375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -LGD,6678,Block,Panisagar,LGD,270,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -LGD,6940,Block,Panjehra,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,6358,Block,Pankhu,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,2630,Block,Panki,LGD,338,2630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,3436,Block,Panna,LGD,420,3436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,7463,Block,Panposh,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,5788,Block,Panruti,LGD,570,5788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,3559,Block,Pansemal,LGD,393,3559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,2470,Block,Panskura,LGD,317,2470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,1824,Block,Panso,LGD,736,1824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,6804,Block,Pantha Chowk,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -LGD,5754,Block,Panthalur,LGD,587,5754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -LGD,4173,Block,Panvel,LGD,491,4173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,5280,Block,Panyam,LGD,755,5280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1859,Block,Paomata,LGD,257,1859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -LGD,173,Block,Paonta Sahib,LGD,24,173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,6924,Block,Paota,LGD,782,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5812,Block,Papanasam,LGD,586,5812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,4455,Block,Papannapet,LGD,513,4455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,3193,Block,Paparahandi,LGD,366,3193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,7367,Block,Paparda,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,5887,Block,Pappireddipatti,LGD,571,5887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -LGD,2380,Block,Para,LGD,321,2380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,1496,Block,Paraiya,LGD,196,1496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,2987,Block,Parajang,LGD,352,2987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -LGD,3105,Block,Paralakhemundi,LGD,353,3105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -LGD,5856,Block,Paramakudi,LGD,583,5856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,5748,Block,Paramathi-Velur,LGD,580,5748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,4236,Block,Paranda,LGD,488,4236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,1602,Block,Parang Circle,LGD,237,1602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,3652,Block,Parasia,LGD,399,3652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,3675,Block,Paraswada,LGD,392,3675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,4870,Block,Paravada,LGD,744,4870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5659,Block,Paravur,LGD,555,5659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -LGD,1389,Block,Parbalpur,LGD,209,1389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,564,Block,Parbatsar,LGD,768,564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,1328,Block,Parbatta,LGD,202,1328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -LGD,4118,Block,Parbhani,LGD,489,4118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,6841,Block,Parbuk Sdo,LGD,235,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -LGD,5108,Block,Parchur,LGD,750,5108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7601,Block,Pardi,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,4540,Block,Pargi,LGD,698,4540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,6705,Block,Pargwal,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,5355,Block,Parigi,LGD,754,5355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1067,Block,Parihar,LGD,221,1067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,4679,Block,Parkal,LGD,686,4679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,4224,Block,Parli,LGD,470,4224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,4211,Block,Parner,LGD,466,4211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,3970,Block,Parola,LGD,478,3970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,1201,Block,Paroo,LGD,208,1201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,1263,Block,Parsa,LGD,218,1263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,1071,Block,Parsauni,LGD,221,1071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,4027,Block,Parseoni,LGD,484,4027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,4131,Block,Partur,LGD,479,4131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -LGD,4714,Block,Parvathagiri,LGD,522,4714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,4812,Block,Parvathipuram,LGD,743,4812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7126,Block,Parwanoo,LGD,25,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,7237,Block,Pasan,LGD,383,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,6118,Block,Pasighat Hq,LGD,232,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -LGD,6846,Block,Passa Valley Circle,LGD,723,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 -LGD,1053,Block,Patahi,LGD,213,1053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,2604,Block,Patamda,LGD,327,2604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,2626,Block,Patan,LGD,338,2626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,4264,Block,Patan,LGD,494,4264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,3629,Block,Patan,LGD,411,3629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,7227,Block,Patan,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,3747,Block,Patan,LGD,455,3747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,3318,Block,Patan,LGD,378,3318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -LGD,2843,Block,Patana,LGD,361,2843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,4494,Block,Patancheru,LGD,691,4494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,7433,Block,Patan City,LGD,455,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,3835,Block,Patan-Veraval,LGD,675,3835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -LGD,1176,Block,Patarghat,LGD,216,1176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,416,Block,Pataudi,LGD,62,416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,448,Block,Patel Nagar,LGD,77,448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11 -LGD,1274,Block,Patepur,LGD,224,1274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,3455,Block,Patera,LGD,400,3455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,1269,Block,Paterhi Belsar,LGD,224,1269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,3262,Block,Pathalgaon,LGD,380,3262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,2523,Block,Pathalgora,LGD,323,2523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,5686,Block,Pathanapuram,LGD,559,5686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -LGD,201,Block,Pathankot,LGD,662,201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -LGD,4773,Block,Pathapatnam,LGD,519,4773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,4208,Block,Pathardi,LGD,466,4208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,2559,Block,Pathargama,LGD,330,2559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,6971,Block,Pathari,LGD,437,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,3457,Block,Patharia,LGD,400,3457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,3293,Block,Pathariya,LGD,647,3293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -LGD,2104,Block,Patharkandi,LGD,293,2104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -LGD,2440,Block,Patharpratima,LGD,304,2440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,2571,Block,Pathna,LGD,340,2571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,2146,Block,Pathorighat (Pt),LGD,283,2146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -LGD,4120,Block,Pathri,LGD,489,4120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,335,Block,Pati,LGD,48,335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -LGD,3555,Block,Pati,LGD,393,3555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,253,Block,Patiala,LGD,41,253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -LGD,1012,Block,Patiyali,LGD,633,1012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -LGD,7447,Block,Patliputra,LGD,212,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,7309,Block,Patna,LGD,384,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -LGD,7448,Block,Patna City,LGD,212,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,3144,Block,Patnagarh,LGD,345,3144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,1400,Block,Patna Rural,LGD,212,1400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,4216,Block,Patoda,LGD,470,4216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,7368,Block,Patodi,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,1292,Block,Patori,LGD,217,1292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,7585,Block,Patparganj,LGD,78,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 -LGD,251,Block,Patran,LGD,41,251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -LGD,7483,Block,Patrapur,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,2365,Block,Patrasayer,LGD,305,2365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,2660,Block,Patratu,LGD,607,2660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -LGD,1880,Block,Patsoi,LGD,256,1880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -LGD,5940,Block,Pattambi,LGD,563,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -LGD,2926,Block,Pattamundai,LGD,360,2926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,34,Block,Pattan,LGD,3,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,260,Block,Patti,LGD,609,260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -LGD,883,Block,Patti,LGD,174,883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -LGD,5290,Block,Pattikonda,LGD,511,5290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5816,Block,Pattukkottai,LGD,586,5816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,6140,Block,Patuk Adc,LGD,233,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,3993,Block,Patur,LGD,467,3993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -LGD,4042,Block,Pauni,LGD,471,4042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -LGD,307,Block,Pauri,LGD,52,307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,5534,Block,Pavagada,LGD,548,5534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,3440,Block,Pawai,LGD,420,3440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,6363,Block,Pawkidevi,LGD,55,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,6861,Block,Payagpur,LGD,125,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -LGD,4881,Block,Payakaraopeta,LGD,744,4881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,226,Block,Payal,LGD,36,226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -LGD,1612,Block,Payeng Circle,LGD,241,1612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,6607,Block,Payum Circle,LGD,679,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,6599,Block,Payyannur,LGD,557,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -LGD,5294,Block,Peapully,LGD,755,5294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4602,Block,Pebbair,LGD,693,4602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,4842,Block,Peda Bayalu,LGD,745,4842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5144,Block,Pedacherlo Palle,LGD,790,5144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4868,Block,Pedagantyada,LGD,520,4868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,5075,Block,Pedakakani,LGD,506,5075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,5057,Block,Pedakurapadu,LGD,751,5057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5030,Block,Pedana,LGD,510,5030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,5082,Block,Pedanandipadu,LGD,506,5082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,4965,Block,Pedapadu,LGD,748,4965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5022,Block,Pedaparupudi,LGD,510,5022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,4915,Block,Pedapudi,LGD,746,4915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4964,Block,Pedavegi,LGD,748,4964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4658,Block,Pedda Adesherlapally,LGD,514,4658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,5101,Block,Peddaaraveedu,LGD,790,5101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5253,Block,Pedda Kadubur,LGD,511,5253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,6245,Block,Pedda Kodapgal,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,4599,Block,Peddakothapally,LGD,694,4599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,4594,Block,Peddamandadi,LGD,693,4594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,5369,Block,Peddamandyam,LGD,753,5369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5201,Block,Peddamudiam,LGD,504,5201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4408,Block,Peddapalli,LGD,682,4408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,5416,Block,Peddapanjani,LGD,503,5416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5314,Block,Peddapappur,LGD,502,5314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,4903,Block,Peddapuram,LGD,746,4903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5390,Block,Pedda Thippasamudram,LGD,753,5390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5311,Block,Peddavaduguru,LGD,502,5311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,6256,Block,Peddavangara,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,4659,Block,Peddavoora,LGD,514,4659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4533,Block,Peddemul,LGD,698,4533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,1851,Block,Pedi (Ngwalwa),LGD,613,1851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -LGD,7051,Block,Pedong,LGD,702,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -LGD,697,Block,Peepalkhoont,LGD,629,697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -LGD,616,Block,Peeplu,LGD,116,616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,5667,Block,Peerumade,LGD,556,5667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -LGD,608,Block,Peesangan,LGD,86,608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,4421,Block,Pegadapalli,LGD,681,4421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,365,Block,Pehowa,LGD,68,365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -LGD,5195,Block,Pellakur,LGD,752,5195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6206,Block,Pembi,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,4176,Block,Pen,LGD,491,4176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,5244,Block,Penagalur,LGD,752,5244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5024,Block,Penamaluru,LGD,510,5024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,6313,Block,Penchicalpet,LGD,699,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,5232,Block,Pendlimarry,LGD,504,5232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,3289,Block,Pendra,LGD,734,3289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 -LGD,3287,Block,Pendra Road,LGD,734,3287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 -LGD,4862,Block,Pendurthi,LGD,520,4862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,5889,Block,Pennagaram,LGD,571,5889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -LGD,4643,Block,Penpahad,LGD,696,4643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,4969,Block,Pentapadu,LGD,523,4969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,6292,Block,Pentlavelli,LGD,694,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,4752,Block,Penuballi,LGD,509,4752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,4992,Block,Penuganchiprolu,LGD,749,4992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4980,Block,Penugonda,LGD,523,4980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,5356,Block,Penukonda,LGD,754,5356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4978,Block,Penumantra,LGD,523,4978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,5409,Block,Penumur,LGD,503,5409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5839,Block,Peraiyur,LGD,578,5839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,5973,Block,Perambalur,LGD,581,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -LGD,7166,Block,Perambur,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,4971,Block,Peravali,LGD,505,4971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,5817,Block,Peravurani,LGD,586,5817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,1857,Block,Peren,LGD,613,1857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -LGD,5643,Block,Perinthalmanna,LGD,562,5643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -LGD,5843,Block,Periyakulam,LGD,588,5843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -LGD,6663,Block,Pernambut,LGD,595,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -LGD,5609,Block,Pernem,LGD,551,5609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -LGD,5752,Block,Perundurai,LGD,573,5752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,5957,Block,Perur,LGD,569,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,2598,Block,Peshrar,LGD,336,2598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -LGD,2592,Block,Peterwar,LGD,322,2592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -LGD,4150,Block,Peth,LGD,487,4150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,6618,Block,Pethanaickanpalayam,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,3865,Block,Petlad,LGD,440,3865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,3707,Block,Petlawad,LGD,412,3707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -LGD,1809,Block,Pfutsero,LGD,248,1809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,4934,Block,P.Gannavaram,LGD,747,4934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,544,Block,Phagi,LGD,102,544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,208,Block,Phagwara,LGD,35,208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -LGD,7385,Block,Phalasiyan,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,567,Block,Phalodi,LGD,772,567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,7214,Block,Phalsoond,LGD,103,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -LGD,4258,Block,Phaltan,LGD,494,4258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,2164,Block,Phansidewa,LGD,309,2164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,3359,Block,Pharasgaon,LGD,643,3359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -LGD,946,Block,Pharenda,LGD,164,946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -LGD,1707,Block,Phassang Circle,LGD,233,1707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,1801,Block,Phek Sadar,LGD,248,1801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,1054,Block,Phenhara,LGD,213,1054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,6757,Block,Phigsoo,LGD,4,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,211,Block,Phillaur,LGD,34,211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -LGD,5072,Block,Phirangipuram,LGD,506,5072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,3118,Block,Phiringia,LGD,359,3118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,1805,Block,Phokhungri,LGD,788,1805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1752,Block,Phomching,LGD,247,1752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,6067,Block,Phooliya Kalan,LGD,92,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,1804,Block,Phor,LGD,788,1804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,4136,Block,Phulambri,LGD,469,4136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,542,Block,Phulera (Hq.Sambhar),LGD,102,542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,1351,Block,Phulidumar,LGD,190,1351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,1903,Block,Phullen,LGD,727,1903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -LGD,2090,Block,Phuloni,LGD,292,2090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -LGD,1087,Block,Phulparas,LGD,206,1087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,889,Block,Phulpur,LGD,120,889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,968,Block,Phulpur,LGD,123,968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,1402,Block,Phulwari,LGD,212,1402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,1220,Block,Phulwaria,LGD,197,1220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,1890,Block,Phungyar,LGD,717,1890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 -LGD,5401,Block,Pichatur,LGD,752,5401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7412,Block,Pichhor,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,3413,Block,Pichhore,LGD,432,3413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,6590,Block,Pidi Circle,LGD,725,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 -LGD,5047,Block,Piduguralla,LGD,751,5047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7386,Block,Pilani,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,5386,Block,Pileru,LGD,753,5386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,469,Block,Pilibanga,LGD,101,469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,790,Block,Pilibhit,LGD,173,790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -LGD,6445,Block,Pillukhera St,LGD,65,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -LGD,4725,Block,Pinapaka,LGD,690,4725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,995,Block,Pindra,LGD,187,995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -LGD,594,Block,Pindwara,LGD,115,594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -LGD,2463,Block,Pingla,LGD,318,2463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,665,Block,Pipalda,LGD,109,665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -LGD,7324,Block,Pipariya,LGD,382,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,3618,Block,Pipariya,LGD,409,3618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,1366,Block,Pipariya,LGD,204,1366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -LGD,6051,Block,Pipar Shahar,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,3057,Block,Pipili,LGD,369,3057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,3500,Block,Piploda,LGD,423,3500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,1110,Block,Pipra,LGD,223,1110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,2619,Block,Pipra,LGD,338,2619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,7036,Block,Piprai,LGD,391,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,1050,Block,Piprakothi,LGD,213,1050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1059,Block,Piprarhi,LGD,220,1059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -LGD,1020,Block,Piprasi,LGD,211,1020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,1715,Block,Pipsorang Circle,LGD,677,1715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -LGD,1587,Block,Pipu Dipu Circle,LGD,231,1587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,683,Block,Pirawa,LGD,105,683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,5569,Block,Piriyapatna,LGD,545,5569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,1429,Block,Piro,LGD,193,1429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,1335,Block,Pirpainti,LGD,192,1335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,2544,Block,Pirtanr,LGD,329,2544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,6119,Block,Pistana Circle,LGD,786,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,7042,Block,Pithampur,LGD,403,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,4911,Block,Pithapuram,LGD,746,4911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3342,Block,Pithora,LGD,385,3342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -LGD,320,Block,Pithoragarh,LGD,53,320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,4384,Block,Pitlam,LGD,685,4384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,5091,Block,Pittalavanipalem,LGD,750,5091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6121,Block,Piyong Circle,LGD,678,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 -LGD,6100,Block,Pizirang Veo Circle,LGD,723,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 -LGD,5893,Block,Pochampalli,LGD,577,5893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,5176,Block,Podalakur,LGD,515,5176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5120,Block,Podili,LGD,790,5120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4982,Block,Poduru,LGD,523,4982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,6760,Block,Pogal Paristan,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,3407,Block,Pohri,LGD,432,3407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,575,Block,Pokaran,LGD,103,575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -LGD,286,Block,Pokhari,LGD,47,286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,4186,Block,Poladpur,LGD,491,4186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,4800,Block,Polaki,LGD,519,4800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,3081,Block,Polasara,LGD,354,3081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,4949,Block,Polavaram,LGD,748,4949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6511,Block,Polaykala,LGD,430,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -LGD,2347,Block,Polba - Dadpur,LGD,312,2347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,5899,Block,Pollachi,LGD,569,5899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,6845,Block,Polosang Circle,LGD,233,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,5724,Block,Polur,LGD,593,5724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,4073,Block,Pombhurna,LGD,473,4073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,5614,Block,Ponda,LGD,552,5614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -LGD,7270,Block,Pondi(Bachra),LGD,384,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -LGD,4803,Block,Ponduru,LGD,519,4803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,5143,Block,Ponnaluru,LGD,517,5143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,5823,Block,Ponnamaravathi,LGD,582,5823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,7125,Block,Ponnampet,LGD,541,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -LGD,5646,Block,Ponnani,LGD,562,5646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -LGD,5694,Block,Ponneri,LGD,589,5694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,5084,Block,Ponnur,LGD,506,5084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,195,Block,Poo,LGD,19,195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -LGD,474,Block,Poogal,LGD,93,474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,5699,Block,Poonamallee,LGD,589,5699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,337,Block,Poornagiri,LGD,48,337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -LGD,4838,Block,Poosapatirega,LGD,521,4838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,7445,Block,Porabandar City,LGD,456,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -LGD,3822,Block,Porbandar,LGD,456,3822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -LGD,2562,Block,Poreyahat,LGD,330,2562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,1885,Block,Porompat,LGD,255,1885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -LGD,3386,Block,Porsa,LGD,417,3386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,5923,Block,Port Blair,LGD,602,5923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -LGD,5208,Block,Porumamilla,LGD,504,5208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,6088,Block,Poshina,LGD,458,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,2477,Block,Potashpur - I,LGD,317,2477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2478,Block,Potashpur - II,LGD,317,2478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,7534,Block,Pothangal,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,1124,Block,Pothia,LGD,203,1124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -LGD,2608,Block,Potka,LGD,327,2608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -LGD,3218,Block,Pottangi,LGD,363,3218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,7568,Block,Pounda,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,3273,Block,Poundi-Uproda,LGD,383,3273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -LGD,6742,Block,Pouni,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,793,Block,Powayan,LGD,180,793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -LGD,7022,Block,Prabhatpttan,LGD,394,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,6905,Block,Pragpur,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,1149,Block,Pranpur,LGD,201,1149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,3767,Block,Prantij,LGD,458,3767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,1104,Block,Pratapganj,LGD,223,1104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,699,Block,Pratapgarh,LGD,629,699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -LGD,882,Block,Pratapgarh,LGD,174,882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -LGD,7387,Block,Pratapgarh,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,295,Block,Pratapnagar,LGD,55,295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,6417,Block,Pratap Nagar St,LGD,76,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -LGD,3239,Block,Pratappur,LGD,648,3239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,2515,Block,Pratappur,LGD,323,2515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,5081,Block,Prathipadu,LGD,506,5081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,4900,Block,Prathipadu,LGD,746,4900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3246,Block,Premnagar,LGD,648,3246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,3417,Block,Prithvipur,LGD,722,3417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -LGD,5214,Block,Proddutur,LGD,504,5214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,7415,Block,Pub Mangaldai,LGD,283,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -LGD,1616,Block,Puchi Geko Circle,LGD,718,1616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 -LGD,5909,Block,Puducherry,LGD,600,5909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -LGD,5821,Block,Pudukkottai,LGD,582,5821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,4541,Block,Pudur,LGD,698,4541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,6676,Block,Pugalur,LGD,576,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -LGD,1775,Block,Pughoboto,LGD,251,1775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,7455,Block,Puintala,LGD,345,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,6942,Block,Pukhri,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,5395,Block,Pulicherla,LGD,503,5395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5219,Block,Pulivendula,LGD,504,5219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4478,Block,Pulkal,LGD,691,4478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,6349,Block,Pulla Gumdesh,LGD,48,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -LGD,5098,Block,Pullalacheruvu,LGD,790,5098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5247,Block,Pullampeta,LGD,752,5247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,51,Block,Pulwama,LGD,11,51,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,6584,Block,Pumao Circle,LGD,666,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 -LGD,6521,Block,Puna,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,424,Block,Punahana,LGD,604,424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -LGD,5947,Block,Punalur,LGD,559,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -LGD,3717,Block,Punasa,LGD,405,3717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -LGD,2388,Block,Puncha,LGD,321,2388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,4194,Block,Pune City,LGD,490,4194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,5415,Block,Punganuru,LGD,753,5415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1841,Block,Pungro,LGD,614,1841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,1410,Block,Punpun,LGD,212,1410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,1077,Block,Pupri,LGD,221,1077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,1168,Block,Puraini,LGD,205,1168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,7418,Block,Purakhasia,LGD,663,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 -LGD,4196,Block,Purandhar,LGD,490,4196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,792,Block,Puranpur,LGD,173,792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -LGD,7167,Block,Purasawalkam,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,278,Block,Puraula,LGD,57,278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,2283,Block,Purbasthali - I,LGD,306,2283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2284,Block,Purbasthali - II,LGD,306,2284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2580,Block,Purbi Tundi*,LGD,325,2580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,7467,Block,Puri,LGD,369,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,4124,Block,Purna,LGD,489,4124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,1058,Block,Purnahiya,LGD,220,1058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -LGD,1134,Block,Purnia East,LGD,214,1134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,2341,Block,Pursura,LGD,312,2341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,1860,Block,Purul,LGD,257,1860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -LGD,2387,Block,Purulia - I,LGD,321,2387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,2379,Block,Purulia - II,LGD,321,2379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,3089,Block,Purushottampur,LGD,354,3089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,817,Block,Purwa,LGD,186,817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -LGD,1289,Block,Pusa,LGD,217,1289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,4085,Block,Pusad,LGD,500,4085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,6655,Block,Pushkar,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,3696,Block,Pushparajgarh,LGD,390,3696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -LGD,3268,Block,Pusour,LGD,386,3268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,5410,Block,Puthalapattu,LGD,503,5410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5326,Block,Putlur,LGD,502,5326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5357,Block,Puttaparthy,LGD,754,5357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5564,Block,Puttur,LGD,534,5564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,5407,Block,Puttur,LGD,752,5407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1995,Block,Pynursla,LGD,274,1995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,7205,Block,Qalamabad,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,6788,Block,Qaziabad (Kralgund),LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,6817,Block,Qazigund,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,6773,Block,Qila Darhal,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,6193,Block,Qoimoh,LGD,622,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -LGD,5617,Block,Quepem,LGD,793,5617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -LGD,4518,Block,Qutballapur,LGD,700,4518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,7543,Block,Raah,LGD,789,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,7063,Block,Rabakavi Banahatti,LGD,524,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,7177,Block,Rabdang,LGD,225,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -LGD,5132,Block,Racherla,LGD,790,5132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6474,Block,Radaur,LGD,76,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -LGD,4289,Block,Radhanagari,LGD,480,4289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,3745,Block,Radhanpur,LGD,455,3745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,5880,Block,Radhapuram,LGD,592,5880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,825,Block,Rae Bareli,LGD,175,825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -LGD,33,Block,Rafiabad,LGD,3,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,1479,Block,Rafiganj,LGD,189,1479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -LGD,6129,Block,Raga Adc,LGD,718,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 -LGD,3679,Block,Raghogarh,LGD,406,3679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -LGD,1105,Block,Raghopur,LGD,223,1105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,1279,Block,Raghopur,LGD,224,1279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,4757,Block,Raghunadhapalem,LGD,509,4757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,7513,Block,Raghunathapur,LGD,355,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,2227,Block,Raghunathganj - I,LGD,319,2227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2228,Block,Raghunathganj - II,LGD,319,2228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,7257,Block,Raghunathnagar,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,1244,Block,Raghunathpur,LGD,222,1244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,2382,Block,Raghunathpur - I,LGD,321,2382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,2381,Block,Raghunathpur - II,LGD,321,2381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,7111,Block,Raghurajnagar (Nagriya),LGD,426,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,4698,Block,Ragunathpally,LGD,689,4698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,2036,Block,Raha,LGD,297,2036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -LGD,3448,Block,Rahatgarh,LGD,425,3448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,2687,Block,Rahe,LGD,339,2687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,4204,Block,Rahta,LGD,466,4204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,1382,Block,Rahui,LGD,209,1382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,4210,Block,Rahuri,LGD,466,4210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,6932,Block,Rahuwas,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,5461,Block,Raichur,LGD,546,5461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,2716,Block,Raidih,LGD,331,2716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,2196,Block,Raiganj,LGD,311,2196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -LGD,3267,Block,Raigarh,LGD,386,3267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,3187,Block,Raighar,LGD,366,3187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,4395,Block,Raikal,LGD,681,4395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,3126,Block,Raikia,LGD,359,3126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,4472,Block,Raikode,LGD,691,4472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,229,Block,Raikot,LGD,36,229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -LGD,644,Block,Railmagra,LGD,112,644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,2296,Block,Raina - I,LGD,306,2296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,2298,Block,Raina - II,LGD,306,2298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -LGD,6283,Block,Raipole,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,2376,Block,Raipur,LGD,305,2376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,632,Block,Raipur,LGD,92,632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,6925,Block,Raipur,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,3332,Block,Raipur,LGD,387,3332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,598,Block,Raipur,LGD,774,598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3442,Block,Raipura,LGD,420,3442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,3480,Block,Raipur Karchuliyan,LGD,424,3480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,6411,Block,Raipur Rani,LGD,70,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -LGD,2797,Block,Rairakhol,LGD,371,2797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,2865,Block,Rairangpur,LGD,365,2865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,3590,Block,Raisen,LGD,421,3590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,461,Block,Raisinghnagar,LGD,100,461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,6473,Block,Rai St,LGD,75,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -LGD,7359,Block,Raithal,LGD,94,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -LGD,2814,Block,Rajagangapur,LGD,373,2814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,7288,Block,Raja Ka Talab,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,519,Block,Rajakhera,LGD,98,519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,7388,Block,Rajaldesar,LGD,96,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,4796,Block,Rajam,LGD,521,4796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,4907,Block,Rajamahendravaram Rural,LGD,505,4907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,4906,Block,Rajamahendravaram Urban,LGD,505,4906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,6241,Block,Rajampet,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,5246,Block,Rajampet,LGD,504,5246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4908,Block,Rajanagaram,LGD,505,4908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,1277,Block,Raja Pakar,LGD,224,1277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,5847,Block,Rajapalayam,LGD,597,5847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,4615,Block,Rajapeta,LGD,697,4615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,6261,Block,Rajapur,LGD,512,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -LGD,4274,Block,Rajapur,LGD,492,4274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,6156,Block,Rajapur,LGD,136,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -LGD,2332,Block,Rajarhat,LGD,303,2332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,6653,Block,Rajasingamangalam,LGD,583,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,6093,Block,Rajatalab,LGD,187,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -LGD,1524,Block,Rajauli,LGD,210,1524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,1347,Block,Rajaun,LGD,190,1347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,6447,Block,Rajaund St,LGD,66,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -LGD,4888,Block,Rajavommangi,LGD,791,4888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4527,Block,Rajendranagar,LGD,518,4527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,2166,Block,Rajganj,LGD,314,2166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -LGD,167,Block,Rajgarh,LGD,24,167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,482,Block,Rajgarh,LGD,96,482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,502,Block,Rajgarh,LGD,87,502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,3565,Block,Rajgarh,LGD,422,3565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,6762,Block,Rajgarh,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,280,Block,Rajgarhi,LGD,57,280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,1394,Block,Rajgir,LGD,209,1394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,3333,Block,Rajim,LGD,645,3333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -LGD,2922,Block,Rajkanika,LGD,360,2922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,3803,Block,Rajkot,LGD,457,3803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,6520,Block,Rajkot East,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,6524,Block,Rajkot South,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,6523,Block,Rajkot West,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,2569,Block,Rajmahal,LGD,340,2569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,2923,Block,Rajnagar,LGD,360,2923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -LGD,3430,Block,Rajnagar,LGD,398,3430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,2258,Block,Rajnagar,LGD,307,2258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,1095,Block,Rajnagar,LGD,206,1095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -LGD,3305,Block,Rajnandgaon,LGD,388,3305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -LGD,6296,Block,Rajoli,LGD,695,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,22,Block,Rajouri,LGD,12,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,449,Block,Rajouri Garden,LGD,85,449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 -LGD,6796,Block,Rajpora,LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,1443,Block,Rajpur,LGD,194,1443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,3558,Block,Rajpur,LGD,393,3558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,1464,Block,Rajpur,LGD,215,1464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,3250,Block,Rajpur,LGD,649,3250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,254,Block,Rajpura,LGD,41,254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -LGD,6719,Block,Rajpura,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -LGD,643,Block,Rajsamand,LGD,112,643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,3849,Block,Rajula,LGD,439,3849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,5059,Block,Rajupalem,LGD,751,5059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5202,Block,Rajupalem,LGD,504,5202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4077,Block,Rajura,LGD,473,4077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,106,Block,Rakkar,LGD,18,106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,1787,Block,Ralan,LGD,250,1787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,4091,Block,Ralegaon,LGD,500,4091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,7004,Block,Rama,LGD,412,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -LGD,4819,Block,Ramabhadrapuram,LGD,521,4819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,5398,Block,Ramachandrapuram,LGD,752,5398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4924,Block,Ramachandrapuram,LGD,747,4924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4423,Block,Ramadugu,LGD,508,4423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,5348,Block,Ramagiri,LGD,754,5348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6216,Block,Ramagiri,LGD,682,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,4399,Block,Ramagundam,LGD,682,4399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,5428,Block,Ramakuppam,LGD,503,5428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5606,Block,Ramanagara,LGD,631,5606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -LGD,7511,Block,Ramanaguda,LGD,370,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,5860,Block,Ramanathapuram,LGD,583,5860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,4632,Block,Ramannapet,LGD,697,4632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,3236,Block,Ramanujganj,LGD,649,3236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,3245,Block,Ramanujnagar,LGD,648,3245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,5241,Block,Ramapuram,LGD,753,5241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6243,Block,Ramareddy,LGD,685,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,5414,Block,Ramasamudram,LGD,753,5414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4457,Block,Ramayampet,LGD,513,4457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,67,Block,Ramban,LGD,621,67,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,4883,Block,Rambilli,LGD,744,4883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7333,Block,Rambrai,LGD,279,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 -LGD,7238,Block,Ramchandrapur,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,4495,Block,Ramchandrapuram,LGD,691,4495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,5442,Block,Ramdurg,LGD,527,5442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,5861,Block,Rameswaram,LGD,583,5861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,668,Block,Ramganj Mandi,LGD,109,668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -LGD,2668,Block,Ramgarh,LGD,326,2668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,6724,Block,Ramgarh,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -LGD,2662,Block,Ramgarh,LGD,607,2662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -LGD,498,Block,Ramgarh,LGD,87,498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,6353,Block,Ramgarh,LGD,51,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,6325,Block,Ramgarh,LGD,338,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,1446,Block,Ramgarh,LGD,200,1446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,7216,Block,Ramgarh,LGD,103,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -LGD,1370,Block,Ramgarh Chowk,LGD,204,1370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -LGD,6908,Block,Ramgarh Pachwara,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,6388,Block,Ramgarh Shekhawati,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,1033,Block,Ramgarhwa,LGD,213,1033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,6787,Block,Ramhal (Tarathpora),LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,2512,Block,Ramkanda,LGD,328,2512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,6728,Block,Ramkote,LGD,7,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -LGD,2105,Block,Ramkrishna Nagar,LGD,293,2105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -LGD,2501,Block,Ramna,LGD,328,2501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,74,Block,Ramnagar,LGD,14,74,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,3469,Block,Ramnagar,LGD,784,3469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,1014,Block,Ramnagar,LGD,211,1014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,343,Block,Ramnagar,LGD,51,343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -LGD,897,Block,Ramnagar,LGD,129,897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -LGD,2493,Block,Ramnagar - I,LGD,317,2493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,2494,Block,Ramnagar - II,LGD,317,2494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,4895,Block,Rampachodavaram,LGD,791,4895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1454,Block,Rampur,LGD,200,1454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -LGD,3134,Block,Rampur,LGD,372,3134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -LGD,177,Block,Rampur,LGD,23,177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,726,Block,Rampur,LGD,176,726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -LGD,7032,Block,Rampura,LGD,419,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -LGD,7391,Block,Rampura Dabri,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,244,Block,Rampura Phul,LGD,28,244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -LGD,3466,Block,Rampur Baghelan,LGD,426,3466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,2253,Block,Rampurhat - I,LGD,307,2253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2254,Block,Rampurhat - II,LGD,307,2254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,705,Block,Rampur Maniharan,LGD,177,705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -LGD,3697,Block,Rampur Naikin,LGD,433,3697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,900,Block,Ramsanehighat,LGD,129,900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -LGD,583,Block,Ramsar,LGD,90,583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,160,Block,Ramshahr,LGD,25,160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,7201,Block,Ramsoo,LGD,621,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -LGD,4028,Block,Ramtek,LGD,484,4028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,2312,Block,Ranaghat - I,LGD,320,2312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,2313,Block,Ranaghat - II,LGD,320,2313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,3710,Block,Ranapur,LGD,412,3710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -LGD,3033,Block,Ranapur,LGD,367,3033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -LGD,4805,Block,Ranastalam,LGD,519,4805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,3823,Block,Ranavav,LGD,456,3823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -LGD,4909,Block,Rangampeta,LGD,505,4909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,5921,Block,Rangat,LGD,632,5921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -LGD,5934,Block,Rangia,LGD,291,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -LGD,2017,Block,Rangjuli,LGD,287,2017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -LGD,2155,Block,Rangli Rangliot,LGD,309,2155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -LGD,6396,Block,Rangpo,LGD,741,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -LGD,1333,Block,Rangra Chowk,LGD,192,1333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,6898,Block,Rani,LGD,111,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,2702,Block,Rania,LGD,606,2702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 -LGD,391,Block,Rania,LGD,74,391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -LGD,2375,Block,Ranibandh,LGD,305,2375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,5495,Block,Ranibennur,LGD,540,5495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,884,Block,Raniganj,LGD,174,884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -LGD,2271,Block,Raniganj,LGD,704,2271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,1115,Block,Raniganj,LGD,188,1115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,328,Block,Ranikhet,LGD,45,328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,1983,Block,Ranikor,LGD,658,1983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 -LGD,2236,Block,Raninagar - I,LGD,319,2236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2233,Block,Raninagar - II,LGD,319,2233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2672,Block,Ranishwar,LGD,326,2672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,591,Block,Raniwara,LGD,104,591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,7025,Block,Ranjhi,LGD,411,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,2511,Block,Ranka,LGD,328,2511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,5681,Block,Ranni,LGD,564,5681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -LGD,6976,Block,Rannod,LGD,432,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,3785,Block,Ranpur,LGD,676,3785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -LGD,3506,Block,Raoti,LGD,423,3506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,3723,Block,Rapar,LGD,449,3723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -LGD,5331,Block,Rapthadu,LGD,502,5331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5175,Block,Rapur,LGD,515,5175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,7369,Block,Rarah,LGD,767,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,2868,Block,Raruan,LGD,365,2868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,2879,Block,Rasgobindpur,LGD,365,2879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,655,Block,Rashmi,LGD,95,655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,5746,Block,Rasipuram,LGD,580,5746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,977,Block,Rasra,LGD,126,977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -LGD,843,Block,Rasulabad,LGD,156,843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -LGD,7471,Block,Rasulpur,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,485,Block,Ratangarh,LGD,96,485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,7239,Block,Ratanpur,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,865,Block,Rath,LGD,149,865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -LGD,386,Block,Ratia,LGD,61,386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -LGD,3507,Block,Ratlam,LGD,423,3507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,7009,Block,Ratlam Nagar,LGD,423,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,4271,Block,Ratnagiri,LGD,492,4271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,1535,Block,Ratni Faridpur,LGD,199,1535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -LGD,7106,Block,Rattihalli,LGD,540,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,2691,Block,Ratu,LGD,339,2691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,2212,Block,Ratua - I,LGD,316,2212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,2213,Block,Ratua - II,LGD,316,2213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -LGD,7016,Block,Rau,LGD,410,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,1552,Block,Ravangla,LGD,227,1552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -LGD,3962,Block,Raver,LGD,478,3962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,4856,Block,Ravikamatham,LGD,744,4856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4926,Block,Ravulapalem,LGD,747,4926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,658,Block,Rawatbhata,LGD,95,658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -LGD,470,Block,Rawatsar,LGD,101,470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,6915,Block,Rawla,LGD,100,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,1031,Block,Raxaul,LGD,213,1031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,5239,Block,Rayachoti,LGD,753,5239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5305,Block,Rayadurg,LGD,502,5305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,3181,Block,Rayagada,LGD,370,3181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -LGD,3107,Block,Rayagada,LGD,353,3107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -LGD,4703,Block,Rayaparthy,LGD,522,4703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,4921,Block,Rayavaram,LGD,505,4921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,5435,Block,Raybag,LGD,527,5435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,1813,Block,Razieba,LGD,248,1813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,4937,Block,Razole,LGD,747,4937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,2803,Block,Reamal,LGD,351,2803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 -LGD,77,Block,Reasi,LGD,627,77,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,4327,Block,Rebbena,LGD,699,4327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,1647,Block,Rebo Perging Circle,LGD,679,1647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,4999,Block,Reddigudem,LGD,749,4999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7226,Block,Reengus,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,4786,Block,Regidi Amadalavalasa,LGD,521,4786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,4471,Block,Regode,LGD,513,4471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,4690,Block,Regonda,LGD,687,4690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,3611,Block,Rehatgaon,LGD,408,3611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -LGD,3451,Block,Rehli,LGD,425,3451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,3589,Block,Rehti,LGD,427,3589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,1898,Block,Reiek,LGD,266,1898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -LGD,2902,Block,Remuna,LGD,346,2902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,4227,Block,Renapur,LGD,481,4227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,7272,Block,Rengakharkala,LGD,382,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,2785,Block,Rengali,LGD,371,2785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,6381,Block,Reni,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,5376,Block,Renigunta,LGD,752,5376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4357,Block,Renjal,LGD,516,4357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,5043,Block,Rentachintala,LGD,751,5043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,170,Block,Renuka,LGD,24,170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,6577,Block,Renuk Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,596,Block,Reodar,LGD,115,596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -LGD,5096,Block,Repalle,LGD,750,5096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6545,Block,Rerapara,LGD,663,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 -LGD,1970,Block,Resubelpara,LGD,656,1970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 -LGD,6286,Block,Revally,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,1257,Block,Revelganj,LGD,218,1257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,6952,Block,Rewalsar,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,414,Block,Rewari,LGD,72,414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -LGD,7287,Block,Rey,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,6101,Block,Richukrong Circle,LGD,231,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,1070,Block,Riga,LGD,221,1070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,1644,Block,Riga Eac,LGD,679,1644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,6355,Block,Rikhanikhal,LGD,52,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,7336,Block,Ri Muliang,LGD,279,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 -LGD,694,Block,Rishabhdeo,LGD,117,694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,305,Block,Rishikesh,LGD,49,305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,4000,Block,Risod,LGD,499,4000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -LGD,3621,Block,Rithi,LGD,413,3621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,6069,Block,Riyan Bari,LGD,110,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,6674,Block,R K Pet,LGD,589,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,1005,Block,Robertsganj,LGD,184,1005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -LGD,5349,Block,Roddam,LGD,754,5349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1517,Block,Roh,LGD,210,1517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,4179,Block,Roha,LGD,491,4179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,600,Block,Rohat,LGD,111,600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,6077,Block,Rohini,LGD,82,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 -LGD,191,Block,Rohru,LGD,23,191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,405,Block,Rohtak,LGD,73,405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -LGD,1475,Block,Rohtas,LGD,215,1475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,1724,Block,Roing Hq,LGD,235,1724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -LGD,5353,Block,Rolla,LGD,754,5353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4855,Block,Rolugunta,LGD,744,4855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5066,Block,Rompicharla,LGD,751,5066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5373,Block,Rompicherla,LGD,503,5373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5469,Block,Ron,LGD,537,5469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -LGD,3396,Block,Ron,LGD,395,3396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -LGD,1978,Block,Rongara,LGD,277,1978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -LGD,1555,Block,Rongli,LGD,741,1555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -LGD,1965,Block,Rongram,LGD,278,1965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,176,Block,Ronhat,LGD,24,176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,6657,Block,Roopangarh,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,353,Block,Roorkee,LGD,50,353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -LGD,1300,Block,Rosera,LGD,217,1300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,7462,Block,Rourkela,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,4891,Block,Rowthulapudi,LGD,746,4891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,80,Block,R. S. Pura,LGD,5,80,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,902,Block,Rudauli,LGD,140,902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -LGD,7389,Block,Rudawal,LGD,91,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,3102,Block,R.Udayagiri,LGD,353,3102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -LGD,940,Block,Rudhauli,LGD,131,940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -LGD,6219,Block,Rudrangi,LGD,683,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,291,Block,Rudraprayag,LGD,54,291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -LGD,960,Block,Rudrapur,LGD,137,960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -LGD,6030,Block,Rudrapur,LGD,56,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,5297,Block,Rudravaram,LGD,755,5297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6240,Block,Rudrur,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,1653,Block,Ruksin Adc,LGD,232,1653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -LGD,1630,Block,Rumgong Adc,LGD,679,1630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -LGD,1073,Block,Runisaidpur,LGD,221,1073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,2033,Block,Rupahi,LGD,297,2033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -LGD,6560,Block,Rupa Sdo,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,1131,Block,Rupauli,LGD,214,1131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,514,Block,Rupbas,LGD,91,514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,264,Block,Rup Nagar,LGD,42,264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -LGD,7561,Block,Saach,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,3390,Block,Sabalgarh,LGD,417,3390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -LGD,2464,Block,Sabang,LGD,318,2464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,3781,Block,Sabarmati,LGD,438,3781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,4861,Block,Sabbavaram,LGD,744,4861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6062,Block,Sabla,LGD,99,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,1338,Block,Sabour,LGD,192,1338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,6688,Block,Sabroom,LGD,271,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -LGD,760,Block,Sadabad,LGD,163,760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -LGD,4049,Block,Sadak-Arjuni,LGD,476,4049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,821,Block,Sadar,LGD,162,821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -LGD,6696,Block,Sadar,LGD,272,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -LGD,7575,Block,Sadar Bazar,LGD,795,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,4381,Block,Sadashivanagar,LGD,685,4381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,4490,Block,Sadasivpet,LGD,691,4490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,6475,Block,Sadhaura St,LGD,76,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -LGD,2059,Block,Sadiya,LGD,302,2059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -LGD,459,Block,Sadulshahar,LGD,100,459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,7291,Block,Sadwan,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,385,Block,Safidon,LGD,65,385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -LGD,814,Block,Safipur,LGD,186,814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -LGD,1601,Block,Sagalee Adc,LGD,237,1601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,3449,Block,Sagar,LGD,425,3449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,2438,Block,Sagar,LGD,304,2438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,5515,Block,Sagar,LGD,547,5515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -LGD,2230,Block,Sagardighi,LGD,319,2230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,7030,Block,Sagar Nagar,LGD,425,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,3912,Block,Sagbara,LGD,452,3912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -LGD,2505,Block,Sagma,LGD,328,2505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -LGD,6840,Block,Sago,LGD,724,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 -LGD,965,Block,Sagri,LGD,123,965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -LGD,648,Block,Sagwara,LGD,99,648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,6499,Block,Sahamphung,LGD,717,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 -LGD,1434,Block,Sahar,LGD,193,1434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,633,Block,Sahara,LGD,92,633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,702,Block,Saharanpur,LGD,177,702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -LGD,7491,Block,Saharapada,LGD,361,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,3300,Block,Sahaspur Lohara,LGD,382,3300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -LGD,6429,Block,Saha St,LGD,58,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -LGD,781,Block,Sahaswan,LGD,133,781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -LGD,1011,Block,Sahawar,LGD,633,1011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -LGD,1282,Block,Sahdai Buzurg,LGD,224,1282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,1199,Block,Sahebganj,LGD,208,1199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,1318,Block,Sahebpur Kamal,LGD,191,1318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,2564,Block,Sahibganj,LGD,340,2564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,2473,Block,Sahid Matangini,LGD,317,2473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,949,Block,Sahjanwa,LGD,148,949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -LGD,7451,Block,Saho,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,4511,Block,Saidabad,LGD,507,4511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,988,Block,Saidpur,LGD,146,988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -LGD,837,Block,Saifai,LGD,139,837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -LGD,7003,Block,Saikheda,LGD,418,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -LGD,6501,Block,Saikot,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,6493,Block,Saikul,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,3504,Block,Sailana,LGD,423,3504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,119,Block,Sainj,LGD,20,119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -LGD,3148,Block,Saintala,LGD,345,3148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,7136,Block,Sainthal,LGD,97,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,2261,Block,Sainthia,LGD,307,2261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2000,Block,Saipung,LGD,657,2000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 -LGD,1862,Block,Saitu-Gamphazol,LGD,712,1862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,3313,Block,Saja,LGD,650,3313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,6043,Block,Sajjangarh,LGD,88,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -LGD,992,Block,Sakaldiha,LGD,135,992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -LGD,4939,Block,Sakhinetipalli,LGD,747,4939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5553,Block,Sakleshpur,LGD,539,5553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -LGD,7252,Block,Sakola,LGD,734,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 -LGD,4040,Block,Sakoli,LGD,471,4040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -LGD,1214,Block,Sakra,LGD,208,1214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,1808,Block,Sakraba,LGD,248,1808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,3958,Block,Sakri,LGD,474,3958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -LGD,1834,Block,Sakshi,LGD,615,1834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -LGD,3282,Block,Sakti,LGD,762,3282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,2268,Block,Salanpur,LGD,704,2268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -LGD,2452,Block,Salbani,LGD,318,2452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -LGD,5616,Block,Salcete,LGD,552,5616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -LGD,4048,Block,Salekasa,LGD,476,4048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,5740,Block,Salem,LGD,584,5740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,962,Block,Salempur,LGD,137,962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -LGD,5970,Block,Salem South,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,5971,Block,Salem West,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,2957,Block,Salepur,LGD,350,2957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,6443,Block,Salhawas St,LGD,64,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -LGD,7294,Block,Salhewara,LGD,759,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,7230,Block,Saligrama,LGD,545,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,1179,Block,Salkhua,LGD,216,1179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,6818,Block,Sallar,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,829,Block,Salon,LGD,175,829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -LGD,7532,Block,Saloora,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,2356,Block,Saltora,LGD,305,2356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,692,Block,Salumbar,LGD,777,692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,85,Block,Saluni,LGD,16,85,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,4817,Block,Salur,LGD,743,4817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7143,Block,Sam,LGD,103,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -LGD,2032,Block,Samaguri,LGD,297,2032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -LGD,377,Block,Samalkha,LGD,71,377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -LGD,4910,Block,Samalkota,LGD,746,4910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,250,Block,Samana,LGD,41,250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -LGD,1974,Block,Samanda,LGD,273,1974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -LGD,1288,Block,Samastipur,LGD,217,1288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,82,Block,Samba,LGD,624,82,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -LGD,7464,Block,Sambalpur,LGD,371,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -LGD,5237,Block,Sambepalle,LGD,753,5237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,721,Block,Sambhal,LGD,659,721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -LGD,6904,Block,Samdari,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,1154,Block,Sameli,LGD,201,1154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -LGD,3749,Block,Sami,LGD,455,3749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,1401,Block,Sampatchak,LGD,212,1401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -LGD,406,Block,Sampla,LGD,73,406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -LGD,224,Block,Samrala,LGD,36,224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -LGD,7242,Block,Samri,LGD,649,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,2224,Block,Samserganj,LGD,319,2224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,4022,Block,Samudrapur,LGD,498,4022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,6505,Block,Samulamlan,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,7488,Block,Sanakhemundi,LGD,354,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,3780,Block,Sanand,LGD,438,3780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,6997,Block,Sanawad,LGD,414,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,590,Block,Sanchore,LGD,104,590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,1425,Block,Sandesh,LGD,193,1425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,2334,Block,Sandeshkhali - I,LGD,303,2334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,2335,Block,Sandeshkhali - II,LGD,303,2335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,126,Block,Sandhol,LGD,22,126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,813,Block,Sandila,LGD,150,813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -LGD,5501,Block,Sandur,LGD,528,5501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -LGD,6503,Block,Sangaikot,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,5171,Block,Sangam,LGD,515,5171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,4272,Block,Sangameshwar,LGD,492,4272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -LGD,4202,Block,Sangamner,LGD,466,4202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,545,Block,Sanganer,LGD,102,545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,4492,Block,Sangareddy,LGD,691,4492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,466,Block,Sangaria,LGD,101,466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,1919,Block,Sangau,LGD,264,1919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 -LGD,6600,Block,Sangdupota Basar Nello Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,4705,Block,Sangem,LGD,522,4705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,199,Block,Sangla,LGD,19,199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -LGD,669,Block,Sangod,LGD,109,669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -LGD,4251,Block,Sangole,LGD,496,4251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,1046,Block,Sangrampur,LGD,213,1046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1364,Block,Sangrampur,LGD,207,1364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,3976,Block,Sangrampur,LGD,472,3976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,1705,Block,Sangram Sdo,LGD,233,1705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,271,Block,Sangrur,LGD,43,271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -LGD,1819,Block,Sangsangnyu,LGD,249,1819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -LGD,5618,Block,Sanguem,LGD,793,5618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -LGD,1785,Block,Sanis,LGD,250,1785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,5300,Block,Sanjamala,LGD,755,5300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6204,Block,Sanjeli,LGD,445,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,1465,Block,Sanjhauli,LGD,215,1465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,7149,Block,Sanjoo,LGD,110,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -LGD,5871,Block,Sankarankoil,LGD,733,5871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,5733,Block,Sankarapuram,LGD,729,5733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -LGD,5739,Block,Sankari,LGD,584,5739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,7235,Block,Sankari,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,6404,Block,Sankari,LGD,57,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -LGD,4892,Block,Sankhavaram,LGD,746,4892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3904,Block,Sankheda,LGD,668,3904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -LGD,14,Block,Sankoo,LGD,6,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -LGD,2459,Block,Sankrail,LGD,703,2459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -LGD,2404,Block,Sankrail,LGD,313,2404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,7234,Block,Sanna,LGD,380,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,3744,Block,Santalpur,LGD,455,3744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,4790,Block,Santhabommali,LGD,519,4790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,4795,Block,Santhakaviti,LGD,521,4795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,5104,Block,Santhamaguluru,LGD,517,5104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,5138,Block,Santhanuthala Padu,LGD,517,5138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,5425,Block,Santhipuram,LGD,503,5425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,2311,Block,Santipur,LGD,320,2311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,6683,Block,Santirbazar,LGD,271,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -LGD,3881,Block,Santrampur,LGD,669,3881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,2384,Block,Santuri,LGD,321,2384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -LGD,3542,Block,Sanwer,LGD,410,3542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -LGD,7054,Block,Sapekhati,LGD,708,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -LGD,525,Block,Sapotra,LGD,108,525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,1778,Block,Saptiqa,LGD,251,1778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,693,Block,Sarada,LGD,777,693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,7274,Block,Saragaon,LGD,379,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,7098,Block,Saraguru,LGD,545,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,6959,Block,Sarahan,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,6986,Block,Sarai,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,1106,Block,Saraigarh Bhaptiyahi,LGD,223,1106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,2753,Block,Saraikela,LGD,341,2753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -LGD,3340,Block,Saraipali,LGD,385,3340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -LGD,1295,Block,Sarairanjan,LGD,217,1295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,1202,Block,Saraiya,LGD,208,1202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -LGD,2666,Block,Saraiyahat,LGD,326,2666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,4396,Block,Sarangapur,LGD,681,4396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,4336,Block,Sarangapur,LGD,680,4336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,3270,Block,Sarangarh,LGD,763,3270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,3567,Block,Sarangpur,LGD,422,3567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,7479,Block,Saraskana,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,6196,Block,Saraswati,LGD,455,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,6476,Block,Saraswati Nagar St,LGD,76,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -LGD,2553,Block,Sarath,LGD,324,2553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,4788,Block,Saravakota,LGD,519,4788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,6960,Block,Sarawati Nagar,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,7370,Block,Sardargarh,LGD,112,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -LGD,3533,Block,Sardarpur,LGD,403,3533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -LGD,483,Block,Sardarshahar,LGD,96,483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,732,Block,Sardhana,LGD,169,732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -LGD,247,Block,Sardulgarh,LGD,37,247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -LGD,2377,Block,Sarenga,LGD,305,2377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,7326,Block,Sargaon,LGD,647,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -LGD,866,Block,Sarila,LGD,149,866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -LGD,7244,Block,Sariya,LGD,763,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,129,Block,Sarkaghat,LGD,22,129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,1712,Block,Sarli Circle,LGD,233,1712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11 -LGD,6389,Block,Sarmathura,LGD,98,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,1384,Block,Sarmera,LGD,209,1384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,6094,Block,Sarojani Nagar,LGD,162,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -LGD,7325,Block,Sarona,LGD,381,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -LGD,4526,Block,Saroornagar,LGD,518,4526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,7401,Block,Sarsiwa,LGD,763,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -LGD,2023,Block,Sarthebari,LGD,280,2023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -LGD,4793,Block,Sarubujjili,LGD,519,4793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,2087,Block,Sarupathar,LGD,288,2087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -LGD,2025,Block,Sarupeta (Pt),LGD,739,2025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -LGD,2547,Block,Sarwan,LGD,324,2547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,613,Block,Sarwar,LGD,86,613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,1471,Block,Sasaram,LGD,215,1471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,267,Block,Sas Nagar (Mohali),LGD,608,267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -LGD,757,Block,Sasni,LGD,163,757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -LGD,7160,Block,Saspol,LGD,9,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,7397,Block,Satai,LGD,398,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -LGD,1777,Block,Satakha,LGD,251,1777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,4262,Block,Satara,LGD,494,4262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,5613,Block,Satari,LGD,551,5613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -LGD,1172,Block,Satar Kataiya,LGD,216,1172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,2631,Block,Satbarwa,LGD,338,2631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,2526,Block,Satgawan,LGD,334,2526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -LGD,7559,Block,Sathamba,LGD,672,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,5869,Block,Sathankulam,LGD,594,5869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,7515,Block,Sathnala,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,4751,Block,Sathupalli,LGD,509,4751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,5749,Block,Sathyamangalam,LGD,573,5749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,3751,Block,Satlasana,LGD,451,3751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,6459,Block,Satnali St,LGD,69,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -LGD,1779,Block,Satoi,LGD,251,1779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,311,Block,Satpuli,LGD,52,311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,5058,Block,Sattenapalli,LGD,751,5058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5854,Block,Sattur,LGD,597,5854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,3528,Block,Satwas,LGD,402,3528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,3064,Block,Satyabadi,LGD,369,3064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -LGD,5402,Block,Satyavedu,LGD,752,5402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1175,Block,Saur Bazar,LGD,216,1175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,3656,Block,Sausar,LGD,785,3656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -LGD,5441,Block,Savadatti,LGD,527,5441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,5064,Block,Savalyapuram H/O Kanamarlapudi,LGD,751,5064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5490,Block,Savanur,LGD,540,5490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,3846,Block,Savar Kundla,LGD,439,3846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -LGD,3897,Block,Savli,LGD,461,3897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,4026,Block,Savner,LGD,484,4026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,1591,Block,Sawa Circle,LGD,231,1591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,531,Block,Sawai Madhopur,LGD,113,531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,4068,Block,Sawali,LGD,473,4068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,4281,Block,Sawantwadi,LGD,495,4281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,6660,Block,Sawar,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,810,Block,Sawayajpur,LGD,150,810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -LGD,1884,Block,Sawombung,LGD,255,1884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -LGD,3795,Block,Sayla,LGD,460,3795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,585,Block,Sayla,LGD,104,585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -LGD,7390,Block,Sayra,LGD,117,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,1850,Block,Sechu-Zubza,LGD,245,1850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -LGD,4498,Block,Secunderabad,LGD,507,4498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,5584,Block,Sedam,LGD,538,5584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,6045,Block,Sedwa,LGD,90,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,7247,Block,Seepat,LGD,375,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,7518,Block,Seerole,LGD,688,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,6836,Block,Seethammadhara,LGD,520,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,4770,Block,Seethampeta,LGD,743,4770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4896,Block,Seethanagaram,LGD,505,4896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,4814,Block,Seethanagaram,LGD,743,4814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5153,Block,Seetharamapuram,LGD,515,5153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,3548,Block,Segaon,LGD,414,3548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -LGD,6553,Block,Segi Gusar Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,3582,Block,Sehore,LGD,427,3582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,7008,Block,Sehore Nagar,LGD,427,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,6104,Block,Seijosa Adc,LGD,723,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 -LGD,6927,Block,Sekhala,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,1800,Block,Sekruzu,LGD,248,1800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,4018,Block,Seloo,LGD,498,4018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,1962,Block,Selsella,LGD,278,1962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,4116,Block,Selu,LGD,489,4116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,6911,Block,Semari,LGD,777,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3475,Block,Semaria,LGD,424,3475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,6632,Block,Sendamangalam,LGD,580,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,3561,Block,Sendhwa,LGD,393,3561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,5785,Block,Sendurai,LGD,610,5785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -LGD,4111,Block,Sengaon,LGD,477,4111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -LGD,2602,Block,Senha,LGD,336,2602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -LGD,3403,Block,Seondha,LGD,401,3403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -LGD,3664,Block,Seoni,LGD,428,3664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,3612,Block,Seoni Malwa,LGD,409,3612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,7018,Block,Seoni Nagar,LGD,428,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -LGD,517,Block,Sepau,LGD,98,517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -LGD,1584,Block,Seppa Hq,LGD,231,1584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11 -LGD,2350,Block,Serampur Uttarpara,LGD,312,2350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,1910,Block,Serchhip,LGD,268,1910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 -LGD,4516,Block,Serilingampally,LGD,518,4516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,7147,Block,Setrawa,LGD,772,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5332,Block,Settur,LGD,502,5332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,6835,Block,Sewarai,LGD,146,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -LGD,1835,Block,Seyochung,LGD,614,1835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,4542,Block,Shabad,LGD,518,4542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,3687,Block,Shadhora,LGD,391,3687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -LGD,727,Block,Shahabad,LGD,176,727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -LGD,7088,Block,Shahabad,LGD,538,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,809,Block,Shahabad,LGD,150,809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -LGD,3953,Block,Shahade,LGD,486,3953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -LGD,4167,Block,Shahapur,LGD,497,4167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -LGD,364,Block,Shahbad,LGD,68,364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -LGD,675,Block,Shahbad,LGD,89,675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -LGD,6816,Block,Shahbad Bala,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,437,Block,Shahdara,LGD,81,437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 -LGD,981,Block,Shahganj,LGD,152,981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -LGD,3447,Block,Shahgarh,LGD,425,3447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -LGD,795,Block,Shahjahanpur,LGD,180,795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -LGD,209,Block,Shahkot,LGD,34,209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -LGD,1341,Block,Shahkund,LGD,192,1341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,3441,Block,Shahnagar,LGD,420,3441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,6794,Block,Shahoora (Litter),LGD,11,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,5588,Block,Shahpur,LGD,635,5588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -LGD,98,Block,Shahpur,LGD,18,98,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,3603,Block,Shahpur,LGD,394,3603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -LGD,1421,Block,Shahpur,LGD,193,1421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,629,Block,Shahpura,LGD,92,629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -LGD,3639,Block,Shahpura,LGD,404,3639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -LGD,540,Block,Shahpura,LGD,102,540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,3630,Block,Shahpura,LGD,411,3630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,4283,Block,Shahuwadi,LGD,480,4283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,6431,Block,Shahzadpur St,LGD,58,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -LGD,4496,Block,Shaikpet,LGD,507,4496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,3519,Block,Shajapur,LGD,430,3519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -LGD,6192,Block,Shakar Chiktan,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -LGD,7578,Block,Shakur Basti,LGD,796,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,4624,Block,Shaligouraram,LGD,514,4624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,2514,Block,Shaligram Ram Narayanpur(Hunterganj),LGD,323,2514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,7579,Block,Shalimar Bagh,LGD,796,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -LGD,7338,Block,Shallang,LGD,279,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11 -LGD,6367,Block,Shama,LGD,46,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -LGD,7457,Block,Shamakhunta,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,1825,Block,Shamator,LGD,765,1825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1345,Block,Shambhuganj,LGD,190,1345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -LGD,3495,Block,Shamgarh,LGD,416,3495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,1321,Block,Shamho Akha Kurha,LGD,191,1321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,4520,Block,Shamirpet,LGD,700,4520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,7548,Block,Shamlaji,LGD,672,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -LGD,707,Block,Shamli,LGD,660,707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 -LGD,4543,Block,Shamshabad,LGD,518,4543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,3576,Block,Shamshabad,LGD,437,3576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,1747,Block,Shangnyu,LGD,247,1747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,56,Block,Shangus,LGD,1,56,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,4454,Block,Shankarampet (A),LGD,513,4454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,4467,Block,Shankarampet (R),LGD,513,4467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,4441,Block,Shankarapatnam,LGD,508,4441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,3241,Block,Shankargarh,LGD,649,3241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,4515,Block,Shankarpalle,LGD,518,4515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,1162,Block,Shankarpur,LGD,205,1162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,6197,Block,Shankheshvar,LGD,455,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,4691,Block,Shayampet,LGD,686,4691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,3977,Block,Shegaon,LGD,472,3977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,3883,Block,Shehera,LGD,454,3883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -LGD,1374,Block,Sheikhpura,LGD,219,1374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -LGD,1373,Block,Shekhopur Sarai,LGD,219,1373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -LGD,1994,Block,Shella Bholaganj,LGD,274,1994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,5874,Block,Shenkottai,LGD,733,5874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,577,Block,Sheo,LGD,90,577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -LGD,592,Block,Sheoganj,LGD,115,592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -LGD,1060,Block,Sheohar,LGD,220,1060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -LGD,3382,Block,Sheopur,LGD,431,3382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -LGD,1470,Block,Sheosagar,LGD,215,1470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,3092,Block,Sheragada,LGD,354,3092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,6566,Block,Shergaon Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,571,Block,Shergarh,LGD,107,571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,1503,Block,Sherghati,LGD,196,1503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,7305,Block,Shergole,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -LGD,4207,Block,Shevgaon,LGD,466,4207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,5489,Block,Shiggaon,LGD,540,5489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -LGD,2671,Block,Shikaripara,LGD,326,2671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -LGD,5517,Block,Shikarpur,LGD,547,5517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -LGD,750,Block,Shikarpur,LGD,134,750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -LGD,774,Block,Shikohabad,LGD,143,774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -LGD,175,Block,Shillai,LGD,24,175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -LGD,181,Block,Shimla ( Rural ),LGD,23,181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,182,Block,Shimla (Urban),LGD,23,182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,5471,Block,Shirahatti,LGD,537,5471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -LGD,4295,Block,Shirala,LGD,493,4295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,4286,Block,Shirol,LGD,480,4286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -LGD,3956,Block,Shirpur,LGD,474,3956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -LGD,4189,Block,Shirur,LGD,490,4189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,4231,Block,Shirur Anantpal,LGD,481,4231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,4217,Block,Shirur (Kasar),LGD,470,4217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,1286,Block,Shivaji Nagar,LGD,217,1286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,5520,Block,Shivamogga,LGD,547,5520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -LGD,4487,Block,Shivampet,LGD,513,4487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,7565,Block,Shivpur,LGD,409,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,3408,Block,Shivpuri,LGD,432,3408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,7044,Block,Shivpuri Nagar,LGD,432,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -LGD,7256,Block,Shivrinarayan,LGD,379,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -LGD,932,Block,Shohratgarh,LGD,182,932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -LGD,5705,Block,Sholinganallur,LGD,568,5705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,7060,Block,Sholinghur,LGD,731,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -LGD,6641,Block,Shoolagiri,LGD,577,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,52,Block,Shopian,LGD,625,52,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -LGD,5587,Block,Shorapur,LGD,635,5587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -LGD,4212,Block,Shrigonda,LGD,466,4212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,555,Block,Shrimadhopur,LGD,114,555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,7148,Block,Shrimahaveer Ji,LGD,108,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,4205,Block,Shrirampur,LGD,466,4205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -LGD,5549,Block,Shrirangapattana,LGD,544,5549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -LGD,4183,Block,Shrivardhan,LGD,491,4183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,3522,Block,Shujalpur,LGD,430,3522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -LGD,3583,Block,Shyampur,LGD,427,3583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -LGD,2410,Block,Shyampur - I,LGD,313,2410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,2411,Block,Shyampur - II,LGD,313,2411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,1921,Block,Siaha,LGD,267,1921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11 -LGD,747,Block,Siana,LGD,134,747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -LGD,6573,Block,Sibe Circle,LGD,719,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11 -LGD,2071,Block,Sibsagar,LGD,300,2071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -LGD,5486,Block,Siddapur,LGD,550,5486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,6281,Block,Siddipet Rural,LGD,692,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,4459,Block,Siddipet Urban,LGD,692,4459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,808,Block,Sidhauli,LGD,183,808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -LGD,1013,Block,Sidhaw,LGD,211,1013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,6931,Block,Sidhmukh,LGD,96,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,5229,Block,Sidhout,LGD,504,5229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,3746,Block,Sidhpur,LGD,455,3746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -LGD,1227,Block,Sidhwalia,LGD,197,1227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,5599,Block,Sidlaghatta,LGD,630,5599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -LGD,2114,Block,Sidli,LGD,612,2114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -LGD,3700,Block,Sihawal,LGD,433,3700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -LGD,3856,Block,Sihor,LGD,443,3856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,3627,Block,Sihora,LGD,411,3627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -LGD,89,Block,Sihunta,LGD,16,89,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,7332,Block,Siju,LGD,277,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -LGD,976,Block,Sikanderpur,LGD,126,976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -LGD,847,Block,Sikandra,LGD,156,847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -LGD,1526,Block,Sikandra,LGD,198,1526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,745,Block,Sikandrabad,LGD,134,745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -LGD,758,Block,Sikandra Rao,LGD,163,758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -LGD,553,Block,Sikar,LGD,114,553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,7228,Block,Sikar Gramin,LGD,114,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -LGD,535,Block,Sikrai,LGD,97,535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -LGD,6930,Block,Sikri,LGD,767,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,1026,Block,Sikta,LGD,211,1026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,1118,Block,Sikti,LGD,188,1118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -LGD,1395,Block,Silao,LGD,209,1395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,2097,Block,Silchar,LGD,282,2097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -LGD,2688,Block,Silli,LGD,339,2688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,4135,Block,Sillod,LGD,469,4135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,2091,Block,Silonijan,LGD,292,2091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -LGD,6843,Block,Silsango Circle,LGD,237,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,3596,Block,Silwani,LGD,421,3596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,649,Block,Simalwara,LGD,99,649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -LGD,2524,Block,Simaria,LGD,323,2524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,6975,Block,Simaria,LGD,420,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -LGD,2718,Block,Simdega,LGD,342,2718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,3324,Block,Simga,LGD,644,3324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,5217,Block,Simhadripuram,LGD,504,5217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,3215,Block,Similiguda,LGD,363,3215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -LGD,2372,Block,Simlapal,LGD,305,2372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,1435,Block,Simri,LGD,194,1435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -LGD,1178,Block,Simri Bakhtiarpur,LGD,216,1178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,2908,Block,Simulia,LGD,346,2908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,3158,Block,Sinapali,LGD,368,3158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -LGD,4069,Block,Sindewahi,LGD,473,4069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,5451,Block,Sindgi,LGD,530,5451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,6052,Block,Sindhari,LGD,775,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,5463,Block,Sindhnur,LGD,546,5463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,3957,Block,Sindkhede,LGD,474,3957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -LGD,3986,Block,Sindkhed Raja,LGD,472,3986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -LGD,1662,Block,Singa Circle,LGD,240,1662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,5995,Block,Singampunari,LGD,585,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,5325,Block,Singanamala,LGD,502,5325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5149,Block,Singarayakonda,LGD,517,5149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,4744,Block,Singareni,LGD,509,4744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,1573,Block,Singchung Adc,LGD,242,1573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,1159,Block,Singheshwar,LGD,205,1159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -LGD,1301,Block,Singhia,LGD,217,1301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,7204,Block,Singhpora,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,1182,Block,Singhwara,LGD,195,1182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,1872,Block,Singngat,LGD,254,1872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,3488,Block,Singoli,LGD,419,3488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -LGD,3705,Block,Singrauli,LGD,638,3705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,7040,Block,Singrauli Nagar,LGD,638,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -LGD,2349,Block,Singur,LGD,312,2349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,6480,Block,Singvad,LGD,445,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,4154,Block,Sinnar,LGD,487,4154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,3908,Block,Sinor,LGD,461,3908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,6777,Block,Siot,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,2147,Block,Sipajhar,LGD,283,2147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -LGD,5533,Block,Sira,LGD,548,5533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,3607,Block,Sirali,LGD,408,3607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -LGD,885,Block,Sirathu,LGD,158,885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -LGD,899,Block,Sirauli Gauspur,LGD,129,899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -LGD,4435,Block,Sircilla,LGD,683,4435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,1523,Block,Sirdala,LGD,210,1523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,6279,Block,Sirgapoor,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,4379,Block,Sirikonda,LGD,516,4379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,6224,Block,Sirikonda,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,5795,Block,Sirkali,LGD,735,5795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -LGD,3473,Block,Sirmour,LGD,424,3473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,593,Block,Sirohi,LGD,115,593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -LGD,4063,Block,Sironcha,LGD,475,4063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -LGD,3571,Block,Sironj,LGD,437,3571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,4315,Block,Sirpur (T),LGD,699,4315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,4326,Block,Sirpur U,LGD,699,4326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,390,Block,Sirsa,LGD,74,390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -LGD,6161,Block,Sirsaganj,LGD,143,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -LGD,5483,Block,Sirsi,LGD,550,5483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,5499,Block,Siruguppa,LGD,528,5499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -LGD,5286,Block,Sirvel,LGD,755,5286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7097,Block,Sirwar,LGD,546,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -LGD,2708,Block,Sisai,LGD,331,2708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -LGD,2056,Block,Sissibargaon,LGD,284,2056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -LGD,1247,Block,Siswan,LGD,222,1247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,2189,Block,Sitai,LGD,308,2189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,2190,Block,Sitalkuchi,LGD,308,2190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,3498,Block,Sitamau,LGD,416,3498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,3252,Block,Sitapur,LGD,389,3252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,804,Block,Sitapur,LGD,183,804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -LGD,351,Block,Sitarganj,LGD,56,351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -LGD,1839,Block,Sitimi,LGD,614,1839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -LGD,5832,Block,Sivaganga,LGD,585,5832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,5870,Block,Sivagiri,LGD,733,5870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,5849,Block,Sivakasi,LGD,597,5849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,1230,Block,Siwan,LGD,222,1230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,580,Block,Siwana,LGD,775,580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,400,Block,Siwani,LGD,59,400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -LGD,6449,Block,Siwan St,LGD,66,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -LGD,1610,Block,Siyum Adc,LGD,241,1610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,6977,Block,Sleemnabad,LGD,413,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,5204,Block,S.Mydukur,LGD,504,5204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,6209,Block,Soan,LGD,680,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,5394,Block,Sodam,LGD,753,5394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4134,Block,Soegaon,LGD,469,4134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,1685,Block,Soha Circle,LGD,239,1685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -LGD,3617,Block,Sohagpur,LGD,409,3617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -LGD,3691,Block,Sohagpur,LGD,429,3691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -LGD,904,Block,Sohawal,LGD,140,904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -LGD,2761,Block,Sohela,LGD,347,2761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -LGD,6542,Block,Sohiong,LGD,274,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -LGD,420,Block,Sohna,LGD,62,420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,599,Block,Sojat,LGD,111,599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,3862,Block,Sojitra,LGD,440,3862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,165,Block,Solan,LGD,25,165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -LGD,4247,Block,Solapur North,LGD,496,4247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,4253,Block,Solapur South,LGD,496,4253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -LGD,5412,Block,Somala,LGD,753,5412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5363,Block,Somandepalli,LGD,754,5363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,331,Block,Someshwar,LGD,45,331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,4780,Block,Sompeta,LGD,519,4780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,5567,Block,Somvarpet,LGD,541,5567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -LGD,2689,Block,Sonahatu,LGD,339,2689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,2099,Block,Sonai,LGD,282,2099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -LGD,7296,Block,Sonakhan,LGD,644,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,7516,Block,Sonala,LGD,501,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,2364,Block,Sonamukhi,LGD,305,2364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,6680,Block,Sonamura,LGD,653,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -LGD,3139,Block,Sonapur,LGD,372,3139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -LGD,2130,Block,Sonapur,LGD,618,2130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -LGD,2548,Block,Sona Rai Tharhi,LGD,324,2548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -LGD,2074,Block,Sonari,LGD,708,2074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -LGD,7602,Block,Sonari Part,LGD,300,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -LGD,2417,Block,Sonarpur,LGD,304,2417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,42,Block,Sonawari,LGD,623,42,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -LGD,1177,Block,Sonbarsa,LGD,216,1177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -LGD,1066,Block,Sonbarsa,LGD,221,1066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,1545,Block,Sonbhadra Banshi Suryapur,LGD,611,1545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -LGD,6981,Block,Sondawa,LGD,639,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -LGD,1267,Block,Sonepur,LGD,218,1267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,3944,Block,Songadh,LGD,641,3944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,1973,Block,Songsak,LGD,273,1973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -LGD,6484,Block,Song Song,LGD,257,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -LGD,3233,Block,Sonhat,LGD,384,3233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -LGD,1344,Block,Sonhaula,LGD,192,1344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,380,Block,Sonipat,LGD,75,380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -LGD,3525,Block,Sonkatch,LGD,402,3525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,1533,Block,Sono,LGD,198,1533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -LGD,4121,Block,Sonpeth,LGD,489,4121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -LGD,2728,Block,Sonua,LGD,343,2728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,32,Block,Sopore,LGD,3,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,2907,Block,Sora,LGD,346,2907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -LGD,5516,Block,Sorab,LGD,547,5516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -LGD,888,Block,Soraon,LGD,120,888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -LGD,1550,Block,Soreng,LGD,742,1550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -LGD,1820,Block,Sotokur,LGD,765,1820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,2011,Block,South Salmara,LGD,707,2011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 -LGD,7417,Block,South Salmara Pt,LGD,285,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -LGD,7421,Block,Soyatkala,LGD,667,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -LGD,116,Block,Spiti,LGD,21,116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -LGD,4882,Block,S.Rayavaram,LGD,744,4882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5206,Block,Sri Avadhutha Kasinayana,LGD,504,5206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,480,Block,Sridungargarh,LGD,93,480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -LGD,6819,Block,Srigufwara,LGD,1,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -LGD,2112,Block,Srijangram,LGD,281,2112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -LGD,4802,Block,Srikakulam,LGD,519,4802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,5378,Block,Srikalahasti,LGD,752,5378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,241,Block,Sri Muktsar Sahib,LGD,39,241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -LGD,6646,Block,Srimushnam,LGD,570,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,306,Block,Srinagar,LGD,52,306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,1136,Block,Srinagar,LGD,214,1136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -LGD,6805,Block,Srinagar Central,LGD,13,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -LGD,43,Block,Srinagar North,LGD,13,43,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -LGD,44,Block,Srinagar South,LGD,13,44,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -LGD,5525,Block,Sringeri,LGD,532,5525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,5590,Block,Srinivaspur,LGD,542,5590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -LGD,5702,Block,Sriperumbudur,LGD,574,5702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -LGD,4407,Block,Srirampur,LGD,682,4407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,5778,Block,Srirangam,LGD,591,5778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,6288,Block,Srirangapur,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,5419,Block,Srirangarajapuram,LGD,503,5419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,6538,Block,Srisailam,LGD,755,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5867,Block,Srivaikuntam,LGD,594,5867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,5848,Block,Srivilliputhur,LGD,597,5848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,4831,Block,Srungavarapukota,LGD,521,4831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,6506,Block,Suangdoh,LGD,254,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,723,Block,Suar,LGD,176,723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -LGD,2054,Block,Subansiri (Pt-I),LGD,295,2054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -LGD,7460,Block,Subdega,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,6024,Block,Subir,LGD,444,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -LGD,6716,Block,Suchetgarh,LGD,5,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -LGD,4180,Block,Sudhagad,LGD,491,4180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,1034,Block,Sugauli,LGD,213,1034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,7150,Block,Suhagpura,LGD,629,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -LGD,7249,Block,Suhela,LGD,644,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,6166,Block,Suigam,LGD,789,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,486,Block,Sujangarh,LGD,96,486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,6265,Block,Sujathanagar,LGD,690,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,7549,Block,Sukhsar,LGD,445,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -LGD,2969,Block,Sukinda,LGD,356,2969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,3375,Block,Sukma,LGD,642,3375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -LGD,7477,Block,Sukruli,LGD,365,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,7048,Block,Sulah,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,2877,Block,Suliapada,LGD,365,2877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,5197,Block,Sullurpeta,LGD,752,5197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,327,Block,Sult,LGD,45,327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,1340,Block,Sultanganj,LGD,192,1340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -LGD,7566,Block,Sultan-Ganj,LGD,421,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,6532,Block,Sultanpur,LGD,421,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,915,Block,Sultanpur,LGD,185,915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -LGD,207,Block,Sultanpur Lodhi,LGD,35,207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -LGD,4425,Block,Sulthanabad,LGD,682,4425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -LGD,5636,Block,Sulthanbathery,LGD,567,5636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -LGD,5896,Block,Sulur,LGD,569,5896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,5565,Block,Sulya,LGD,534,5565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,604,Block,Sumerpur,LGD,111,604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -LGD,11,Block,Sumoor,LGD,9,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -LGD,272,Block,Sunam,LGD,43,272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -LGD,2809,Block,Sundargarh,LGD,373,2809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,132,Block,Sundarnagar,LGD,22,132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,2563,Block,Sundarpahari,LGD,330,2563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,26,Block,Sunderbani,LGD,12,26,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,6667,Block,Sunel,LGD,105,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -LGD,1784,Block,Sungro,LGD,250,1784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,180,Block,Sunni,LGD,23,180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,1728,Block,Sunpura Circle,LGD,234,1728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 -LGD,5479,Block,Supa,LGD,550,5479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,1109,Block,Supaul,LGD,223,1109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,1064,Block,Suppi,LGD,221,1064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,3076,Block,Surada,LGD,354,3076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -LGD,6371,Block,Surajgarh,LGD,106,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,1367,Block,Surajgarha,LGD,204,1367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -LGD,3242,Block,Surajpur,LGD,648,3242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -LGD,19,Block,Surankote,LGD,10,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -LGD,465,Block,Suratgarh,LGD,100,465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,7442,Block,Surendranagar City,LGD,460,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,4142,Block,Surgana,LGD,487,4142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,2259,Block,Suri - I,LGD,307,2259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2260,Block,Suri - II,LGD,307,2260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -LGD,2542,Block,Suriya,LGD,329,2542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,6934,Block,Suroth,LGD,108,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,1068,Block,Sursand,LGD,221,1068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -LGD,1769,Block,Suruhuto,LGD,251,1769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,4638,Block,Suryapet,LGD,696,4638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,1460,Block,Suryapura,LGD,215,1460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,3515,Block,Susner,LGD,667,3515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -LGD,2482,Block,Sutahata,LGD,317,2482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,6992,Block,Suthaliya,LGD,422,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -LGD,2225,Block,Suti - I,LGD,319,2225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,2226,Block,Suti - II,LGD,319,2226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -LGD,3836,Block,Sutrapada,LGD,675,3836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -LGD,3499,Block,Suwasara,LGD,416,3499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -LGD,2319,Block,Swarupnagar,LGD,303,2319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -LGD,6330,Block,Syalde,LGD,45,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -LGD,5185,Block,Sydapuram,LGD,515,5185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5198,Block,Tada,LGD,752,5198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5054,Block,Tadepalli,LGD,506,5054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,4961,Block,Tadepalligudem,LGD,523,4961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,5056,Block,Tadikonda,LGD,506,5056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,5338,Block,Tadimarri,LGD,754,5338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5313,Block,Tadipatri,LGD,502,5313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,4582,Block,Tadoor,LGD,694,4582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,6508,Block,Tadubi,LGD,257,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -LGD,4687,Block,Tadvai,LGD,720,4687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,4389,Block,Tadwai,LGD,685,4389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,858,Block,Tahrauli,LGD,153,858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -LGD,7306,Block,Taisuru,LGD,6,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -LGD,1290,Block,Tajpur,LGD,217,1290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,6158,Block,Takha,LGD,139,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -LGD,3294,Block,Takhatpur,LGD,375,3294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -LGD,6963,Block,Taklech,LGD,23,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,6549,Block,Taksing Circle,LGD,241,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,3503,Block,Tal,LGD,423,3503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -LGD,4182,Block,Tala,LGD,491,4182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,3006,Block,Talacher,LGD,344,3006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -LGD,3859,Block,Talaja,LGD,443,3859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,3834,Block,Talala,LGD,675,3834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -LGD,4309,Block,Talamadugu,LGD,501,4309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,5652,Block,Talappilly,LGD,566,5652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -LGD,4157,Block,Talasari,LGD,665,4157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,7225,Block,Talawara,LGD,113,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,861,Block,Talbehat,LGD,161,861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -LGD,2371,Block,Taldangra,LGD,305,2371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,6033,Block,Talera,LGD,94,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -LGD,1716,Block,Tali Adc,LGD,677,1716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -LGD,1611,Block,Taliha Adc,LGD,241,1611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -LGD,7073,Block,Talikoti,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,5632,Block,Taliparamba,LGD,557,5632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -LGD,2568,Block,Taljhari,LGD,340,2568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,4950,Block,Tallapudi,LGD,505,4950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,4930,Block,Tallarevu,LGD,746,4930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3768,Block,Talod,LGD,458,3768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,3952,Block,Talode,LGD,486,3952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -LGD,5340,Block,Talupula,LGD,754,5340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,246,Block,Talwandi Sabo,LGD,28,246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -LGD,2699,Block,Tamar I,LGD,339,2699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -LGD,5703,Block,Tambaram,LGD,730,5703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,1866,Block,Tamenglong,LGD,258,1866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 -LGD,1865,Block,Tamenglong North,LGD,258,1865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 -LGD,1864,Block,Tamenglong West,LGD,258,1864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 -LGD,3647,Block,Tamia,LGD,399,3647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,958,Block,Tamkuhi Raj,LGD,160,958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -LGD,1830,Block,Tamlu,LGD,615,1830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -LGD,2472,Block,Tamluk,LGD,317,2472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -LGD,3266,Block,Tamnar,LGD,386,3266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -LGD,4305,Block,Tamsi,LGD,501,4305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,2144,Block,Tamulpur,LGD,756,2144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -LGD,5360,Block,Tanakal,LGD,754,5360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,724,Block,Tanda,LGD,176,724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -LGD,907,Block,Tanda,LGD,121,907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -LGD,7193,Block,Tanda,LGD,33,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -LGD,4332,Block,Tandur,LGD,684,4332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,4534,Block,Tandur,LGD,698,4534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,2525,Block,Tandwa,LGD,323,2525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -LGD,7459,Block,Tangarpali,LGD,373,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -LGD,3052,Block,Tangi,LGD,362,3052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -LGD,2955,Block,Tangi-Choudwar,LGD,350,2955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,39,Block,Tangmarg,LGD,3,39,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,5141,Block,Tangutur,LGD,517,5141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,3800,Block,Tankara,LGD,673,3800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -LGD,1506,Block,Tan Kuppa,LGD,196,1506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,4340,Block,Tanoor,LGD,680,4340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -LGD,7037,Block,Tansen,LGD,407,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -LGD,2740,Block,Tantnagar,LGD,343,2740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,6658,Block,Tantoti,LGD,86,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -LGD,4972,Block,Tanuku,LGD,523,4972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,421,Block,Taoru,LGD,604,421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -LGD,276,Block,Tapa,LGD,605,276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -LGD,2205,Block,Tapan,LGD,310,2205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -LGD,7603,Block,Tapkara,LGD,380,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -LGD,6941,Block,Tapri,LGD,19,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -LGD,7128,Block,Tapukara,LGD,770,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,930,Block,Tarabganj,LGD,147,930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -LGD,1250,Block,Taraiya,LGD,218,1250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -LGD,2342,Block,Tarakeswar,LGD,312,2342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -LGD,1711,Block,Tarak Lengdi Cicle,LGD,677,1711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -LGD,3512,Block,Tarana,LGD,435,3512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,481,Block,Taranagar,LGD,96,481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -LGD,3861,Block,Tarapur,LGD,440,3861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,1362,Block,Tarapur,LGD,207,1362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,1433,Block,Tarari,LGD,193,1433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,1595,Block,Taraso Circle,LGD,237,1595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,3140,Block,Tarbha,LGD,372,3140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -LGD,1186,Block,Tardih,LGD,195,1186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -LGD,2629,Block,Tarhasi,LGD,338,2629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,1062,Block,Tariani Chowk,LGD,220,1062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -LGD,5528,Block,Tarikere,LGD,532,5528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -LGD,5118,Block,Tarlupadu,LGD,790,5118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,259,Block,Tarn Taran,LGD,609,259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -LGD,6775,Block,Taryath,LGD,12,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,4301,Block,Tasgaon,LGD,493,4301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,6656,Block,Tatgarh,LGD,774,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,2648,Block,Tati Jhariya,LGD,332,2648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -LGD,6589,Block,Tato Eac,LGD,725,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 -LGD,6883,Block,Tauni Devi Bamson,LGD,17,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,1559,Block,Tawang Hq,LGD,238,1559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,1311,Block,Teghra,LGD,191,1311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -LGD,2301,Block,Tehatta - I,LGD,320,2301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,2302,Block,Tehatta - II,LGD,320,2302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -LGD,7113,Block,Tehla,LGD,87,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,297,Block,Tehri,LGD,55,297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -LGD,6357,Block,Tejam,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,4789,Block,Tekkali,LGD,519,4789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,4469,Block,Tekmal,LGD,513,4469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,4739,Block,Tekulapalli,LGD,690,4739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,6248,Block,Tekumatla,LGD,687,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -LGD,3988,Block,Telhara,LGD,467,3988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -LGD,6698,Block,Teliamura,LGD,652,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 -LGD,7286,Block,Telka,LGD,16,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -LGD,4581,Block,Telkapally,LGD,694,4581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,2848,Block,Telkoi,LGD,361,2848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -LGD,5078,Block,Tenali,LGD,506,5078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,3460,Block,Tendukheda,LGD,400,3460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -LGD,3638,Block,Tendukheda,LGD,418,3638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -LGD,2066,Block,Tengakhat,LGD,286,2066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -LGD,1893,Block,Tengnoupal,LGD,716,1893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11 -LGD,1856,Block,Tening,LGD,613,1856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -LGD,5873,Block,Tenkasi,LGD,733,5873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,3197,Block,Tentulikhunti,LGD,366,3197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,2079,Block,Teok,LGD,290,2079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -LGD,3471,Block,Teonthar,LGD,424,3471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -LGD,7398,Block,Terdal,LGD,524,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -LGD,1121,Block,Terhagachh,LGD,203,1121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -LGD,1056,Block,Tetaria,LGD,213,1056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,1363,Block,Tetiha Bambor,LGD,207,1363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -LGD,2043,Block,Tezpur,LGD,301,2043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -LGD,1729,Block,Tezu Hq,LGD,234,1729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 -LGD,7184,Block,Thachi,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,1996,Block,Thadlaskein,LGD,275,1996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 -LGD,308,Block,Thailisain,LGD,52,308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,1023,Block,Thakrahan,LGD,211,1023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -LGD,6745,Block,Thakrakote,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,7289,Block,Thakurdwara,LGD,18,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,717,Block,Thakurdwara,LGD,171,717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -LGD,2556,Block,Thakurgangti,LGD,330,2556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -LGD,1123,Block,Thakurganj,LGD,203,1123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -LGD,2871,Block,Thakurmunda,LGD,365,2871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,2412,Block,Thakurpukur Mahestola,LGD,304,2412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -LGD,6359,Block,Thal,LGD,53,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -LGD,7120,Block,Thalaivasal,LGD,584,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,4562,Block,Thalakondapally,LGD,518,4562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,5634,Block,Thalassery,LGD,557,5634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -LGD,6539,Block,Thalavadi,LGD,573,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -LGD,4762,Block,Thallada,LGD,509,4762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,5121,Block,Thallur,LGD,517,5121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,5938,Block,Thamarassery,LGD,561,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -LGD,5368,Block,Thamballapalle,LGD,753,5368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,501,Block,Thanagazi,LGD,87,501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -LGD,20,Block,Thana Mandi,LGD,12,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -LGD,3706,Block,Thandla,LGD,412,3706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -LGD,5726,Block,Thandrampet,LGD,593,5726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,4165,Block,Thane,LGD,497,4165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -LGD,366,Block,Thanesar,LGD,68,366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -LGD,6037,Block,Thangadh,LGD,460,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,6217,Block,Thangallapalli,LGD,683,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,5814,Block,Thanjavur,LGD,586,5814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,3314,Block,Thankhamariya,LGD,650,3314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -LGD,1869,Block,Thanlon,LGD,715,1869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 -LGD,3733,Block,Tharad,LGD,789,3733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,288,Block,Tharali,LGD,47,288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -LGD,5798,Block,Tharangambadi,LGD,735,5798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -LGD,6257,Block,Tharigoppula,LGD,689,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,1388,Block,Tharthari,LGD,209,1388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -LGD,3878,Block,Thasra,LGD,450,3878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,63,Block,Thathri,LGD,4,63,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -LGD,5418,Block,Thavanampalle,LGD,503,5418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,1223,Block,Thawe,LGD,197,1223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,7049,Block,Thelamara,LGD,301,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -LGD,6565,Block,Thembang Circle,LGD,242,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,5844,Block,Theni,LGD,588,5844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -LGD,184,Block,Theog,LGD,23,184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,4821,Block,Therlam,LGD,521,4821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,2723,Block,Thethaitangar,LGD,342,2723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -LGD,3556,Block,Thikri,LGD,393,3556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,4575,Block,Thimmajipet,LGD,694,4575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,4438,Block,Thimmapur LMD,LGD,508,4438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,6556,Block,Thingbu Circle,LGD,238,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,1899,Block,Thingdawl,LGD,263,1899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 -LGD,1905,Block,Thingsulthliah,LGD,261,1905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -LGD,4645,Block,Thipparthy,LGD,514,4645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,5801,Block,Thirukkuvalai,LGD,579,5801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -LGD,4619,Block,Thirumalagiri,LGD,696,4619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,5840,Block,Thirumangalam,LGD,578,5840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,5822,Block,Thirumayam,LGD,582,5822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,5915,Block,Thirunallar,LGD,598,5915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -LGD,5962,Block,Thirupparankundram,LGD,578,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,5829,Block,Thiruppathur,LGD,585,5829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,5965,Block,Thiruppuvanam,LGD,585,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -LGD,5809,Block,Thiruthuraipoondi,LGD,590,5809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,5813,Block,Thiruvaiyaru,LGD,586,5813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,5679,Block,Thiruvalla,LGD,564,5679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -LGD,5698,Block,Thiruvallur,LGD,589,5698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,5691,Block,Thiruvananthapuram,LGD,565,5691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -LGD,5806,Block,Thiruvarur,LGD,590,5806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,6672,Block,Thiruvattar,LGD,575,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -LGD,7053,Block,Thiruvennainallur,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,5780,Block,Thiruverumbur,LGD,591,5780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,5810,Block,Thiruvidaimarudur,LGD,586,5810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,7406,Block,Thiruvonam,LGD,586,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -LGD,5666,Block,Thodupuzha,LGD,556,5666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -LGD,4463,Block,Thoguta,LGD,692,4463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,4901,Block,Thondangi,LGD,746,4901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5221,Block,Thondur,LGD,504,5221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,1829,Block,Thonoknyu,LGD,736,1829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,5866,Block,Thoothukkudi,LGD,594,5866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,4715,Block,Thorrur,LGD,688,4715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -LGD,5180,Block,Thotapalligudur,LGD,515,5180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5025,Block,Thotlavalluru,LGD,510,5025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,5379,Block,Thottambedu,LGD,752,5379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5773,Block,Thottiyam,LGD,591,5773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,1877,Block,Thoubal,LGD,259,1877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 -LGD,5883,Block,Thovala,LGD,575,5883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -LGD,5654,Block,Thrissur,LGD,566,5654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -LGD,1575,Block,Thrizino Adc,LGD,242,1575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -LGD,3171,Block,Thuamul Rampur,LGD,358,3171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -LGD,5053,Block,Thulluru,LGD,506,5053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,136,Block,Thunag,LGD,22,136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,4620,Block,Thungaturthy,LGD,696,4620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -LGD,5775,Block,Thuraiyur,LGD,591,5775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,108,Block,Thural,LGD,18,108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -LGD,4614,Block,Thurkapally,LGD,697,4614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,6739,Block,Thuroo,LGD,627,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -LGD,467,Block,Tibbi,LGD,101,467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -LGD,6434,Block,Tigaon St,LGD,60,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -LGD,2949,Block,Tigiria,LGD,350,2949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -LGD,2917,Block,Tihidi,LGD,348,2917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -LGD,6946,Block,Tihra,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,2132,Block,Tihu (Pt),LGD,298,2132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -LGD,496,Block,Tijara,LGD,770,496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3115,Block,Tikabali,LGD,359,3115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,3423,Block,Tikamgarh,LGD,434,3423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -LGD,190,Block,Tikar,LGD,23,190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -LGD,1488,Block,Tikari,LGD,196,1488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,6581,Block,Tikhak Rima Putok Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,6948,Block,Tikken,LGD,22,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -LGD,7074,Block,Tikota,LGD,530,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,1964,Block,Tikrikilla,LGD,278,1964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -LGD,3909,Block,Tilakwada,LGD,452,3909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -LGD,3334,Block,Tilda,LGD,387,3334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -LGD,794,Block,Tilhar,LGD,180,794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -LGD,824,Block,Tiloi,LGD,640,824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -LGD,1474,Block,Tilouthu,LGD,215,1474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -LGD,3610,Block,Timarni,LGD,408,3610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -LGD,1726,Block,Tinali Paglam Circle,LGD,235,1726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -LGD,5729,Block,Tindivanam,LGD,596,5729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,2068,Block,Tingkhong,LGD,286,2068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -LGD,2061,Block,Tinsukia,LGD,302,2061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -LGD,6390,Block,Tinwari,LGD,107,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -LGD,4008,Block,Tiosa,LGD,468,4008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,1920,Block,Tipa,LGD,267,1920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11 -LGD,1868,Block,Tipaimukh,LGD,715,1868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 -LGD,5539,Block,Tiptur,LGD,548,5539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,140,Block,Tira Sujanpur,LGD,17,140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -LGD,1635,Block,Tirbin Eac,LGD,724,1635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 -LGD,2858,Block,Tiring,LGD,365,2858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,3668,Block,Tirodi,LGD,392,3668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,4044,Block,Tirora,LGD,476,4044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -LGD,5519,Block,Tirthahalli,LGD,547,5519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -LGD,2939,Block,Tirtol,LGD,355,2939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -LGD,5868,Block,Tiruchendur,LGD,594,5868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,5745,Block,Tiruchengode,LGD,580,5745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -LGD,6620,Block,Tiruchirappalli East,LGD,591,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,5779,Block,Tiruchirappalli West,LGD,591,5779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -LGD,5852,Block,Tiruchuli,LGD,597,5852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,5709,Block,Tirukalukundram,LGD,730,5709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,5732,Block,Tirukkoyilur,LGD,729,5732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -LGD,5575,Block,Tirumakudal - Narsipur,LGD,545,5575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -LGD,6306,Block,Tirumalagiri Sagar,LGD,514,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4754,Block,Tirumalayapalem,LGD,509,4754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,4499,Block,Tirumalgiri,LGD,507,4499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -LGD,5876,Block,Tirunelveli,LGD,592,5876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,5720,Block,Tirupathur,LGD,732,5720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -LGD,5375,Block,Tirupati (Rural),LGD,752,5375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5383,Block,Tirupati (Urban),LGD,752,5383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5958,Block,Tiruporur,LGD,730,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,5967,Block,Tiruppurnorth,LGD,634,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,5968,Block,Tiruppursouth,LGD,634,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,5644,Block,Tirur,LGD,562,5644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -LGD,5645,Block,Tirurangadi,LGD,562,5645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -LGD,5696,Block,Tiruttani,LGD,589,5696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,5855,Block,Tiruvadanai,LGD,583,5855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -LGD,5727,Block,Tiruvannamalai,LGD,593,5727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,6642,Block,Tiruvengadam,LGD,733,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,5982,Block,Tiruvottiyur,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,4997,Block,Tiruvuru,LGD,749,4997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,835,Block,Tirwa,LGD,155,835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -LGD,4333,Block,Tiryani,LGD,699,4333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,6649,Block,Tisayanvilai,LGD,592,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -LGD,2533,Block,Tisri,LGD,329,2533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -LGD,5611,Block,Tiswadi,LGD,551,5611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -LGD,2080,Block,Titabor,LGD,290,2080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -LGD,3152,Block,Titlagarh,LGD,345,3152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,5794,Block,Tittakudi,LGD,570,5794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,1745,Block,Tizit,LGD,247,1745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,7358,Block,Tlabung,LGD,265,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 -LGD,1901,Block,Tlangnuam,LGD,261,1901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -LGD,4946,Block,T.Narasapuram,LGD,748,4946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1756,Block,Tobu,LGD,247,1756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,520,Block,Todabhim,LGD,108,520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -LGD,619,Block,Todaraisingh,LGD,116,619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,387,Block,Tohana,LGD,61,387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -LGD,3365,Block,Tokapal,LGD,374,3365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -LGD,5988,Block,Tokiye,LGD,251,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,7168,Block,Tondiarpet,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,7317,Block,Tongpal,LGD,642,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -LGD,618,Block,Tonk,LGD,116,618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,3524,Block,Tonk Khurd,LGD,402,3524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,2737,Block,Tonto,LGD,343,2737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -LGD,7142,Block,Toonga,LGD,102,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -LGD,4482,Block,Toopran,LGD,513,4482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,2581,Block,Topchanchi,LGD,325,2581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,2701,Block,Torpa,LGD,606,2701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 -LGD,1600,Block,Toru Circle,LGD,237,1600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -LGD,399,Block,Tosham,LGD,59,399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -LGD,50,Block,Tral,LGD,11,50,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -LGD,6784,Block,Trehgam,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,7176,Block,Tribal Taluk Office Attappadi,LGD,563,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -LGD,1111,Block,Tribeniganj,LGD,223,1111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -LGD,4151,Block,Trimbakeshwar,LGD,487,4151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,5099,Block,Tripuranthakam,LGD,790,5099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4662,Block,Tripuraram,LGD,514,4662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,1843,Block,Tseminyu,LGD,757,1843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1844,Block,Tsogin,LGD,757,1844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,5238,Block,T.Sundupalle,LGD,504,5238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,5085,Block,Tsunduru,LGD,750,5085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5990,Block,Tsurangkong,LGD,246,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,1826,Block,Tsurungto,LGD,765,1826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,1817,Block,Tuensang Sadar,LGD,249,1817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -LGD,2185,Block,Tufanganj - I,LGD,308,2185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,2186,Block,Tufanganj - II,LGD,308,2186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -LGD,5293,Block,Tuggali,LGD,511,5293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,1870,Block,Tuibong,LGD,254,1870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -LGD,6812,Block,Tulail,LGD,623,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -LGD,1760,Block,Tuli,LGD,246,1760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -LGD,4241,Block,Tuljapur,LGD,488,4241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,6807,Block,Tullamulla Khirbhawani,LGD,626,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -LGD,926,Block,Tulsipur,LGD,127,926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -LGD,5537,Block,Tumakuru,LGD,548,5537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,4037,Block,Tumsar,LGD,471,4037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -LGD,3121,Block,Tumudibandha,LGD,359,3121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -LGD,7295,Block,Tundara,LGD,644,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -LGD,2579,Block,Tundi,LGD,325,2579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -LGD,771,Block,Tundla,LGD,143,771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -LGD,4890,Block,Tuni,LGD,746,4890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,1042,Block,Turkaulia,LGD,213,1042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -LGD,5540,Block,Turuvekere,LGD,548,5540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -LGD,3143,Block,Tusura,LGD,345,3143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -LGD,1658,Block,Tuting Adc,LGD,240,1658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,6492,Block,T Vaichong,LGD,712,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -LGD,3574,Block,Tyonda,LGD,437,3574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,301,Block,Tyuni,LGD,49,301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,6413,Block,Uchana,LGD,65,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -LGD,6923,Block,Uchchain,LGD,91,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,3943,Block,Uchchhal,LGD,641,3943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,1222,Block,Uchkagaon,LGD,197,1222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -LGD,6693,Block,Udaipur,LGD,654,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -LGD,114,Block,Udaipur,LGD,21,114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -LGD,3597,Block,Udaipura,LGD,421,3597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -LGD,492,Block,Udaipurwati,LGD,106,492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -LGD,2884,Block,Udala,LGD,365,2884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -LGD,2152,Block,Udalguri,LGD,617,2152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -LGD,2098,Block,Udarbond,LGD,282,2098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -LGD,5154,Block,Udayagiri,LGD,515,5154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5786,Block,Udayarpalayam,LGD,610,5786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -LGD,6535,Block,Udaynagar,LGD,402,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -LGD,2398,Block,Udaynarayanpur,LGD,313,2398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,3249,Block,Udaypur,LGD,389,3249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -LGD,4235,Block,Udgir,LGD,481,4235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -LGD,5756,Block,Udhagamandalam,LGD,587,5756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -LGD,72,Block,Udhampur,LGD,14,72,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -LGD,6522,Block,Udhna,LGD,459,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,2570,Block,Udhwa,LGD,340,2570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -LGD,5906,Block,Udumalaipettai,LGD,634,5906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,5665,Block,Udumbanchola,LGD,556,5665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -LGD,5523,Block,Udupi,LGD,549,5523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -LGD,1426,Block,Udwant Nagar,LGD,193,1426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -LGD,7114,Block,Ujani Majuli Circle,LGD,706,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 -LGD,1298,Block,Ujiarpur,LGD,217,1298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,3513,Block,Ujjain,LGD,435,3513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,7046,Block,Ujjain Nagar,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,7550,Block,Ukai,LGD,641,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,290,Block,Ukhimath,LGD,54,290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -LGD,1888,Block,Ukhrul,LGD,260,1888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11 -LGD,6441,Block,Uklana St,LGD,63,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -LGD,4912,Block,U.Kothapalli,LGD,746,4912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5152,Block,Ulavapadu,LGD,517,5152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,4169,Block,Ulhasnagar,LGD,497,4169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -LGD,7197,Block,Ullala,LGD,534,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -LGD,2407,Block,Uluberia - I,LGD,313,2407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,2406,Block,Uluberia - II,LGD,313,2406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -LGD,3136,Block,Ulunda,LGD,372,3136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -LGD,5735,Block,Ulundurpettai,LGD,729,5735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -LGD,4086,Block,Umarkhed,LGD,500,4086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,3189,Block,Umarkote,LGD,366,3189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -LGD,3934,Block,Umarpada,LGD,459,3934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -LGD,3931,Block,Umbergaon,LGD,462,3931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,1985,Block,Umling,LGD,276,1985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -LGD,3853,Block,Umrala,LGD,443,3853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,4034,Block,Umred,LGD,484,4034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -LGD,3653,Block,Umreth,LGD,399,3653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -LGD,3863,Block,Umreth,LGD,440,3863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -LGD,4103,Block,Umri,LGD,485,4103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -LGD,1987,Block,Umsning,LGD,276,1987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -LGD,6159,Block,Un,LGD,660,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 -LGD,150,Block,Una,LGD,26,150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -LGD,3838,Block,Una,LGD,675,3838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -LGD,828,Block,Unchahar,LGD,175,828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -LGD,3465,Block,Unchehara,LGD,426,3465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -LGD,6299,Block,Undavelly,LGD,695,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,4976,Block,Undi,LGD,523,4976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,4970,Block,Undrajavaram,LGD,505,4970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -LGD,4962,Block,Unguturu,LGD,748,4962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5013,Block,Unguturu,LGD,510,5013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,7434,Block,Unhel,LGD,435,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -LGD,621,Block,Uniara,LGD,116,621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -LGD,3753,Block,Unjha,LGD,451,3753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,816,Block,Unnao,LGD,186,816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -LGD,2623,Block,Untari Road,LGD,338,2623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -LGD,3809,Block,Upleta,LGD,457,3809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,4524,Block,Uppal,LGD,700,4524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -LGD,4942,Block,Uppalaguptam,LGD,747,4942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4580,Block,Uppununthala,LGD,694,4580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,4172,Block,Uran,LGD,491,4172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -LGD,5317,Block,Uravakonda,LGD,502,5317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,37,Block,Uri,LGD,3,37,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,6295,Block,Urkonda,LGD,694,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,5838,Block,Usilampatti,LGD,578,5838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,3377,Block,Usur,LGD,636,3377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -LGD,5845,Block,Uthamapalayam,LGD,588,5845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -LGD,5894,Block,Uthangarai,LGD,577,5894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -LGD,5708,Block,Uthiramerur,LGD,574,5708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -LGD,5695,Block,Uthukkottai,LGD,589,5695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -LGD,6616,Block,Uthukuli,LGD,634,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -LGD,4571,Block,Utkoor,LGD,721,4571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -LGD,4321,Block,Utnoor,LGD,501,4321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -LGD,927,Block,Utraula,LGD,127,927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -LGD,5302,Block,Uyyalawada,LGD,755,5302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3762,Block,Vadali,LGD,458,3762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,5399,Block,Vadamalapet,LGD,752,5399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3738,Block,Vadgam,LGD,441,3738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -LGD,5837,Block,Vadipatti,LGD,578,5837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -LGD,3755,Block,Vadnagar,LGD,451,3755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,6529,Block,Vadodara East,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,6527,Block,Vadodara North,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,3898,Block,Vadodara Rural,LGD,461,3898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,6526,Block,Vadodara South,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,6528,Block,Vadodara West,LGD,461,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,3899,Block,Vaghodia,LGD,461,3899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -LGD,3915,Block,Vagra,LGD,442,3915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,4276,Block,Vaibhavvadi,LGD,495,4276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,4139,Block,Vaijapur,LGD,469,4139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -LGD,5669,Block,Vaikom,LGD,560,5669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -LGD,4365,Block,Vailpoor,LGD,516,4365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,1268,Block,Vaishali,LGD,224,1268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -LGD,5316,Block,Vajrakarur,LGD,502,5316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,4781,Block,Vajrapukotturu,LGD,519,4781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -LGD,5192,Block,Vakadu,LGD,752,5192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5803,Block,Valangaiman,LGD,590,5803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -LGD,3920,Block,Valia,LGD,442,3920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -LGD,4627,Block,Valigonda,LGD,697,4627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,3851,Block,Vallabhipur,LGD,443,3851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -LGD,690,Block,Vallabhnagar,LGD,117,690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -LGD,5225,Block,Vallur,LGD,504,5225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,5388,Block,Valmikipuram,LGD,753,5388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3946,Block,Valod,LGD,641,3946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,5900,Block,Valparai,LGD,569,5900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -LGD,3927,Block,Valsad,LGD,462,3927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,7599,Block,Valsad City,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,7405,Block,Vanapuram,LGD,729,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -LGD,7058,Block,Vandalur,LGD,730,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -LGD,5723,Block,Vandavasi,LGD,593,5723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,6507,Block,Vangai Range,LGD,715,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 -LGD,4785,Block,Vangara,LGD,521,4785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,4577,Block,Vangoor,LGD,694,4577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,5718,Block,Vaniyambadi,LGD,732,5718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -LGD,3826,Block,Vanthali,LGD,448,3826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,5730,Block,Vanur,LGD,596,5730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,6031,Block,Vapi,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,7596,Block,Vapi City,LGD,462,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -LGD,5381,Block,Varadaiahpalem,LGD,752,5381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,996,Block,Varanasi Sadar,LGD,187,996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -LGD,4733,Block,Vararamachandrapuram,LGD,791,4733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5155,Block,Varikuntapadu,LGD,515,5155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5946,Block,Varkala,LGD,565,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -LGD,3562,Block,Varla,LGD,393,3562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -LGD,4376,Block,Varni,LGD,516,4376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,4164,Block,Vasai,LGD,665,4164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,4115,Block,Vasmath,LGD,477,4115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -LGD,6034,Block,Vaso,LGD,450,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -LGD,5638,Block,Vatakara,LGD,561,5638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -LGD,6291,Block,Vatpally,LGD,691,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,4990,Block,Vatsavai,LGD,749,4990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5080,Block,Vatticherukuru,LGD,506,5080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -LGD,6516,Block,Vatva,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,3732,Block,Vav,LGD,789,3732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -LGD,5742,Block,Vazhapadi,LGD,584,5742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,5802,Block,Vedaranyam,LGD,579,5802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -LGD,5762,Block,Vedasandur,LGD,572,5762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -LGD,5397,Block,Vedurukuppam,LGD,503,5397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,4439,Block,Veenavanka,LGD,508,4439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,5242,Block,Veeraballe,LGD,504,5242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4769,Block,Veeraghattam,LGD,743,4769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5872,Block,Veerakeralamputhur,LGD,733,5872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -LGD,5222,Block,Veerapunayunipalle,LGD,504,5222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4983,Block,Veeravasaram,LGD,523,4983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,6220,Block,Veernapalli,LGD,683,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,4994,Block,Veerullapadu,LGD,749,4994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6514,Block,Vejalpur,LGD,438,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,7171,Block,Velachery,LGD,568,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -LGD,6252,Block,Velair,LGD,686,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -LGD,4734,Block,Velairpadu,LGD,748,4734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4565,Block,Veldanda,LGD,694,4565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -LGD,5041,Block,Veldurthy,LGD,751,5041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5278,Block,Veldurthy,LGD,511,5278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,4398,Block,Velgatur,LGD,681,4398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -LGD,4197,Block,Velhe,LGD,490,4197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -LGD,5135,Block,Veligandla,LGD,790,5135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5933,Block,Vellarikkundu,LGD,558,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -LGD,5717,Block,Vellore,LGD,595,5717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -LGD,5282,Block,Velugodu,LGD,755,5282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4330,Block,Vemanpally,LGD,684,4330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -LGD,6624,Block,Vembakkam,LGD,593,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -LGD,6640,Block,Vembakottai,LGD,597,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,5233,Block,Vempalli,LGD,504,5233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4768,Block,Vemsoor,LGD,509,4768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,5220,Block,Vemula,LGD,504,5220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4644,Block,Vemulapally,LGD,514,4644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -LGD,4430,Block,Vemulawada,LGD,683,4430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,6218,Block,Vemulawada Rural,LGD,683,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,5087,Block,Vemuru,LGD,750,5087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4279,Block,Vengurla,LGD,495,4279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -LGD,5182,Block,Venkatachalam,LGD,515,5182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5187,Block,Venkatagiri,LGD,752,5187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5424,Block,Venkatagirikota,LGD,503,5424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,4684,Block,Venkatapur,LGD,720,4684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,4724,Block,Venkatapuram,LGD,720,4724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,4832,Block,Vepada,LGD,521,4832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,5974,Block,Veppanthattai,LGD,581,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -LGD,5953,Block,Veppur,LGD,570,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,7446,Block,Veraval City,LGD,675,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -LGD,5124,Block,Vetapalem,LGD,750,5124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5308,Block,Vidapanakal,LGD,502,5308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5168,Block,Vidavalur,LGD,515,5168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,3579,Block,Vidisha,LGD,437,3579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,7017,Block,Vidisha Nagar,LGD,437,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -LGD,1296,Block,Vidyapati Nagar,LGD,217,1296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,6661,Block,Vijainagar,LGD,774,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,464,Block,Vijainagar,LGD,100,464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -LGD,3756,Block,Vijapur,LGD,451,3756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,5449,Block,Vijayapura,LGD,530,5449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -LGD,5405,Block,Vijayapuram,LGD,503,5405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5010,Block,Vijayawada Central,LGD,749,5010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6863,Block,Vijayawada East,LGD,749,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6864,Block,Vijayawada North,LGD,749,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5011,Block,Vijayawada (Rural),LGD,749,5011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6865,Block,Vijayawada West,LGD,749,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,3761,Block,Vijaynagar,LGD,458,3761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -LGD,3380,Block,Vijaypur,LGD,431,3380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -LGD,6722,Block,Vijaypur,LGD,624,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -LGD,3624,Block,Vijayraghavgarh,LGD,413,3624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -LGD,1679,Block,Vijoynagar Eac,LGD,229,1679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,4530,Block,Vikarabad,LGD,698,4530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,303,Block,Vikas Nagar,LGD,49,303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -LGD,7591,Block,Vikaspuri,LGD,85,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 -LGD,4159,Block,Vikramgad,LGD,665,4159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,5978,Block,Vikravandi,LGD,596,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,5864,Block,Vilathikulam,LGD,594,5864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -LGD,5881,Block,Vilavancode,LGD,575,5881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -LGD,7206,Block,Villgam,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,5911,Block,Villianur,LGD,600,5911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -LGD,5731,Block,Viluppuram,LGD,596,5731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -LGD,6198,Block,Vinchchiya,LGD,457,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -LGD,5161,Block,Vinjamur,LGD,515,5161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -LGD,5062,Block,Vinukonda,LGD,751,5062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5568,Block,Virajpet,LGD,541,5568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -LGD,6614,Block,Viralimalai,LGD,582,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -LGD,3779,Block,Viramgam,LGD,438,3779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -LGD,539,Block,Viratnagar,LGD,782,539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -LGD,3870,Block,Virpur,LGD,669,3870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -LGD,5793,Block,Virudhachalam,LGD,570,5793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -LGD,5850,Block,Virudhunagar,LGD,597,5850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,4866,Block,Visakhapatnam (Rural),LGD,520,4866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -LGD,3829,Block,Visavadar,LGD,448,3829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -LGD,2369,Block,Vishnupur,LGD,305,2369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -LGD,7586,Block,Vishwas Nagar,LGD,78,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 -LGD,3754,Block,Visnagar,LGD,451,3754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -LGD,5000,Block,Vissannapeta,LGD,749,5000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4836,Block,Vizianagaram Rural,LGD,521,4836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,7431,Block,Vizianagaram Urban,LGD,521,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -LGD,1767,Block,V.K.,LGD,251,1767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -LGD,5147,Block,Voletivaripalem,LGD,517,5147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,5228,Block,Vontimitta,LGD,504,5228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,4445,Block,V.Saidapur,LGD,508,4445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -LGD,5027,Block,Vuyyuru,LGD,510,5027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -LGD,3945,Block,Vyara,LGD,641,3945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -LGD,7472,Block,Vyasanagar,LGD,356,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -LGD,5637,Block,Vythiri,LGD,567,5637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -LGD,4162,Block,Wada,LGD,665,4162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -LGD,7095,Block,Wadagera,LGD,635,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -LGD,4610,Block,Waddepally,LGD,695,4610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,3792,Block,Wadhwan,LGD,460,3792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -LGD,3238,Block,Wadrafnagar,LGD,649,3238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -LGD,4220,Block,Wadwani,LGD,470,4220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -LGD,6023,Block,Waghai,LGD,444,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -LGD,6823,Block,Wagoora,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,4256,Block,Wai,LGD,494,4256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -LGD,6486,Block,Waikhong,LGD,711,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11 -LGD,4723,Block,Wajedu,LGD,720,4723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -LGD,1749,Block,Wakching,LGD,247,1749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -LGD,6012,Block,Wakka Sdo,LGD,666,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 -LGD,6808,Block,Wakoora,LGD,626,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -LGD,1730,Block,Wakro Circle,LGD,234,1730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 -LGD,6626,Block,Walajabad,LGD,574,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -LGD,5714,Block,Wallajah,LGD,731,5714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -LGD,1742,Block,Walong Circle,LGD,628,1742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -LGD,4296,Block,Walwa,LGD,493,4296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -LGD,4595,Block,Wanaparthy,LGD,693,4595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,1882,Block,Wangoi,LGD,256,1882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -LGD,4094,Block,Wani,LGD,500,4094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,3801,Block,Wankaner,LGD,673,3801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -LGD,4314,Block,Wankidi,LGD,699,4314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -LGD,1999,Block,Wapung,LGD,657,1999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 -LGD,4706,Block,Warangal,LGD,522,4706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,3669,Block,Waraseoni,LGD,392,3669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -LGD,4019,Block,Wardha,LGD,498,4019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -LGD,4704,Block,Wardhannapet,LGD,522,4704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -LGD,4485,Block,Wargal,LGD,692,4485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -LGD,1513,Block,Warisaliganj,LGD,210,1513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -LGD,1285,Block,Warisnagar,LGD,217,1285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -LGD,4064,Block,Warora,LGD,473,4064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -LGD,4007,Block,Warud,LGD,468,4007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -LGD,6766,Block,Warwan,LGD,620,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -LGD,4238,Block,Washi,LGD,488,4238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -LGD,3999,Block,Washim,LGD,499,3999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -LGD,6825,Block,Watergam,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,6675,Block,Watrap,LGD,597,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -LGD,6386,Block,Wazeerpur,LGD,113,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -LGD,6420,Block,Wazirabad St,LGD,62,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -LGD,1507,Block,Wazirganj,LGD,196,1507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -LGD,4608,Block,Weepangandla,LGD,693,4608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,512,Block,Weir,LGD,91,512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -LGD,1897,Block,West Phaileng,LGD,266,1897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -LGD,5992,Block,Weziho,LGD,788,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -LGD,6485,Block,Willong,LGD,257,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -LGD,1789,Block,Wokha Sadar,LGD,250,1789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,1788,Block,Wozhuro,LGD,250,1788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -LGD,4764,Block,Wyra,LGD,509,4764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,4548,Block,Yacharam,LGD,518,4548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -LGD,1697,Block,Yachuli Adc,LGD,786,1697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,4616,Block,Yadagirigutta,LGD,697,4616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -LGD,5430,Block,Yadamarri,LGD,503,5430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -LGD,5589,Block,Yadgir,LGD,635,5589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -LGD,5312,Block,Yadiki,LGD,502,5312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,7089,Block,Yadrami,LGD,538,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -LGD,314,Block,Yamkeshwar,LGD,52,314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -LGD,6082,Block,Yamuna Vihar,LGD,81,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 -LGD,5908,Block,Yanam,LGD,600,5908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -LGD,6400,Block,Yangang,LGD,227,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -LGD,1704,Block,Yangte Circle,LGD,677,1704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -LGD,7195,Block,Yaragatti,LGD,527,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -LGD,6781,Block,Yaripora,LGD,622,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -LGD,6579,Block,Yatdam Circle,LGD,229,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -LGD,4082,Block,Yavatmal,LGD,500,4082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,3961,Block,Yawal,LGD,478,3961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -LGD,1698,Block,Yazali Circle,LGD,786,1698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -LGD,4369,Block,Yedapally,LGD,516,4369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,5107,Block,Yeddana Pudi,LGD,750,5107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,7533,Block,Yedula,LGD,693,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -LGD,7103,Block,Yelahanka,LGD,525,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -LGD,4536,Block,Yelal,LGD,698,4536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -LGD,4989,Block,Yelamanchili,LGD,523,4989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -LGD,4879,Block,Yelamanchili,LGD,744,4879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5578,Block,Yelandur,LGD,531,5578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -LGD,5464,Block,Yelbarga,LGD,543,5464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -LGD,4481,Block,Yeldurthy,LGD,513,4481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -LGD,4893,Block,Yeleswaram,LGD,746,4893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4740,Block,Yellandu,LGD,690,4740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -LGD,5327,Block,Yellanur,LGD,502,5327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -LGD,5481,Block,Yellapur,LGD,550,5481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -LGD,4432,Block,Yellareddipet,LGD,683,4432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -LGD,4386,Block,Yellareddy,LGD,685,4386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -LGD,5254,Block,Yemmiganur,LGD,511,5254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -LGD,5741,Block,Yercaud,LGD,584,5741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -LGD,6239,Block,Yergatla,LGD,516,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -LGD,5377,Block,Yerpedu,LGD,752,5377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5097,Block,Yerragondapalem,LGD,790,5097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,5223,Block,Yerraguntla,LGD,504,5223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -LGD,7517,Block,Yerravalli,LGD,695,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -LGD,5374,Block,Yerravaripalem,LGD,752,5374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4767,Block,Yerrupalem,LGD,509,4767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -LGD,6063,Block,Yetapaka,LGD,791,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,4156,Block,Yevla,LGD,487,4156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -LGD,1663,Block,Yingkiong Circle,LGD,240,1663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -LGD,1633,Block,Yomcha Adc,LGD,243,1633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11 -LGD,1832,Block,Yongnyah,LGD,615,1832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -LGD,4886,Block,Y. Ramavaram,LGD,791,4886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -LGD,6397,Block,Yuksom,LGD,228,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 -LGD,6790,Block,Zachaldara,LGD,8,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -LGD,4696,Block,Zaffergadh,LGD,689,4696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -LGD,4474,Block,Zahirabad,LGD,691,4474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -LGD,6797,Block,Zainapora,LGD,625,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -LGD,6826,Block,Zaingeer,LGD,3,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -LGD,991,Block,Zamania,LGD,146,991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -LGD,15,Block,Zanskar,LGD,6,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -LGD,4093,Block,Zari-Jamani,LGD,500,4093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -LGD,5142,Block,Zarugumalli,LGD,517,5142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -LGD,1896,Block,Zawlnuam,LGD,266,1896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -LGD,1556,Block,Zemithang Circle,LGD,238,1556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -LGD,1967,Block,Zikzak,LGD,663,1967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 -LGD,234,Block,Zira,LGD,31,234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -LGD,1239,Block,Ziradei,LGD,222,1239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -LGD,1695,Block,Ziro Hq,LGD,236,1695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11 -LGD,1810,Block,Zuketsa,LGD,248,1810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -LGD,1772,Block,Zunheboto Sadar,LGD,251,1772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -IN-PIN,110010,PostalCode,New Delhi,LGD,79,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11 -IN-PIN,110024,PostalCode,South East,LGD,670,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 -IN-PIN,110025,PostalCode,South East,LGD,670,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 -IN-PIN,110030,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -IN-PIN,110031,PostalCode,East,LGD,78,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 -IN-PIN,110032,PostalCode,North East,LGD,81,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 -IN-PIN,110036,PostalCode,North,LGD,80,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 -IN-PIN,110037,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -IN-PIN,110038,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -IN-PIN,110039,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -IN-PIN,110040,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -IN-PIN,110041,PostalCode,North West,LGD,82,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 -IN-PIN,110042,PostalCode,North,LGD,80,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 -IN-PIN,110043,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -IN-PIN,110044,PostalCode,South East,LGD,670,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 -IN-PIN,110047,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -IN-PIN,110053,PostalCode,North East,LGD,81,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 -IN-PIN,110057,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -IN-PIN,110059,PostalCode,West,LGD,85,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11 -IN-PIN,110061,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -IN-PIN,110068,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -IN-PIN,110071,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -IN-PIN,110072,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -IN-PIN,110073,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -IN-PIN,110074,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -IN-PIN,110076,PostalCode,South East,LGD,670,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11 -IN-PIN,110080,PostalCode,South,LGD,83,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11 -IN-PIN,110081,PostalCode,North West,LGD,82,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 -IN-PIN,110082,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -IN-PIN,110084,PostalCode,North,LGD,80,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 -IN-PIN,110085,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -IN-PIN,110086,PostalCode,North West,LGD,82,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11 -IN-PIN,110090,PostalCode,North,LGD,80,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11 -IN-PIN,110093,PostalCode,East,LGD,78,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 -IN-PIN,110094,PostalCode,North East,LGD,81,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11 -IN-PIN,110096,PostalCode,East,LGD,78,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11 -IN-PIN,110097,PostalCode,South West,LGD,84,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11 -IN-PIN,110099,PostalCode,Outer North,LGD,794,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11 -IN-PIN,121001,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121002,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121003,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121004,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121005,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121006,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121007,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121010,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121012,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121013,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121101,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121102,PostalCode,Faridabad,LGD,60,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11 -IN-PIN,121103,PostalCode,Palwal,LGD,619,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -IN-PIN,121105,PostalCode,Palwal,LGD,619,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -IN-PIN,121106,PostalCode,Palwal,LGD,619,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -IN-PIN,121107,PostalCode,Palwal,LGD,619,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11 -IN-PIN,122001,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122003,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122004,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122050,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122101,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122102,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122103,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122104,PostalCode,Nuh,LGD,604,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -IN-PIN,122105,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122107,PostalCode,Nuh,LGD,604,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -IN-PIN,122108,PostalCode,Nuh,LGD,604,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -IN-PIN,122413,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122414,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122502,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122503,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122504,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122505,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122506,PostalCode,Gurugram,LGD,62,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11 -IN-PIN,122508,PostalCode,Nuh,LGD,604,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11 -IN-PIN,123001,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -IN-PIN,123021,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -IN-PIN,123023,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -IN-PIN,123024,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -IN-PIN,123027,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -IN-PIN,123028,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -IN-PIN,123029,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -IN-PIN,123034,PostalCode,Mahendragarh,LGD,69,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11 -IN-PIN,123035,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123101,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123102,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123103,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123106,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123110,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123301,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123302,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123303,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123401,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123411,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123412,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,123501,PostalCode,Rewari,LGD,72,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11 -IN-PIN,124001,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124010,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124021,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124022,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124102,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124103,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124104,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124105,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124106,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124107,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124108,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124109,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124111,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124112,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124113,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124142,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124146,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124201,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124202,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124303,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124401,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124404,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124406,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124411,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124412,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124501,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124504,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124505,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124506,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124507,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124508,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,124513,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124514,PostalCode,Rohtak,LGD,73,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11 -IN-PIN,124515,PostalCode,Jhajjar,LGD,64,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11 -IN-PIN,125001,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -IN-PIN,125004,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -IN-PIN,125005,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -IN-PIN,125006,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -IN-PIN,125007,PostalCode,Hisar,LGD,63,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11 -IN-PIN,125033,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -IN-PIN,125037,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -IN-PIN,125038,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -IN-PIN,125039,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -IN-PIN,125042,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -IN-PIN,125044,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -IN-PIN,125047,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125048,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125049,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -IN-PIN,125050,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125051,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125052,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125053,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125054,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125055,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125058,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125060,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125075,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125076,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125077,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125078,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125101,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125102,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125103,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125104,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125106,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125110,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125111,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125112,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125113,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125120,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125121,PostalCode,Hansi,LGD,792,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11 -IN-PIN,125133,PostalCode,Fatehabad,LGD,61,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11 -IN-PIN,125201,PostalCode,Sirsa,LGD,74,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11 -IN-PIN,125450,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,126101,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126102,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126110,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126111,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126112,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126113,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126114,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126115,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126116,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126125,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126152,PostalCode,Jind,LGD,65,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11 -IN-PIN,126214,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,126469,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,127021,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127022,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -IN-PIN,127025,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -IN-PIN,127026,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -IN-PIN,127027,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127028,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127029,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127030,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127031,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127032,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127035,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127040,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127041,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127042,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -IN-PIN,127043,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127045,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127046,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127111,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127114,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127201,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127306,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -IN-PIN,127307,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -IN-PIN,127308,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127309,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127310,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -IN-PIN,127311,PostalCode,Bhiwani,LGD,59,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11 -IN-PIN,127312,PostalCode,Charkhi Dadri,LGD,701,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11 -IN-PIN,131001,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131021,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131022,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131023,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131024,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131027,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131028,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131029,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131039,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131101,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131102,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131103,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131301,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131302,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131304,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131305,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131306,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131402,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131403,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131408,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,131409,PostalCode,Sonipat,LGD,75,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11 -IN-PIN,132001,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132022,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132023,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132024,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132036,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132037,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132039,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132040,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132041,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132046,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132054,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132101,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132102,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132104,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132105,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132106,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132107,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132108,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132113,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132114,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132115,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132116,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132117,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,132122,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132140,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132145,PostalCode,Panipat,LGD,71,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11 -IN-PIN,132157,PostalCode,Karnal,LGD,67,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11 -IN-PIN,133001,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133004,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133005,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133006,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133008,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133101,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133102,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133103,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,133104,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133201,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133202,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133203,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133204,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,133205,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133206,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,133301,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,133302,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,134003,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,134005,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,134007,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,134008,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,134102,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,134103,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,134107,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,134109,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,134117,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,134118,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,134201,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,134202,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,134203,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,134204,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,134205,PostalCode,Panchkula,LGD,70,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11 -IN-PIN,135001,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,135002,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,135003,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,135004,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,135021,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,135101,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,135102,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,135103,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,135106,PostalCode,Yamunanagar,LGD,76,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11 -IN-PIN,135133,PostalCode,Ambala,LGD,58,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11 -IN-PIN,136020,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136021,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136026,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136027,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136030,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136033,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136034,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136035,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136038,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136042,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136043,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136044,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136117,PostalCode,Kaithal,LGD,66,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11 -IN-PIN,136118,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136119,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136128,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136129,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136130,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136131,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136132,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136135,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136136,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,136156,PostalCode,Kurukshetra,LGD,68,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11 -IN-PIN,140001,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140101,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140102,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140103,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140108,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140109,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140110,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140111,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140112,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140113,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140114,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140115,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140116,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140117,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140118,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140119,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140123,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140124,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140125,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140126,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140127,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140128,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140133,PostalCode,Rupnagar,LGD,42,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11 -IN-PIN,140201,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140301,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140306,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140307,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140308,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140401,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,140402,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140405,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140406,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140407,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140408,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140412,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140413,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140417,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,140501,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140506,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140507,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140601,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,140602,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140603,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140604,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,140701,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140702,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140802,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,140901,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,141001,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141003,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141007,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141008,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141010,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141012,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141013,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141014,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141015,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141101,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141102,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141103,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141104,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141105,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141107,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141108,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141109,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141110,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141112,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141113,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141114,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141115,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141116,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141117,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141118,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141119,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141120,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141121,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141122,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141123,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141125,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,141126,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141127,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141201,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141202,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141203,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141204,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141205,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141206,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141401,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141411,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,141412,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141413,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141414,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141415,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141416,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141417,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141418,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141419,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141421,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141422,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,141801,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,142001,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142002,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142003,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142011,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142021,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142022,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142023,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142024,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142025,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142026,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142027,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142029,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142030,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142031,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142032,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142033,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142034,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142035,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142036,PostalCode,Ludhiana,LGD,36,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11 -IN-PIN,142037,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142038,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142039,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142040,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142041,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142042,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,142043,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,142044,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,142045,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142046,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142047,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,142048,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142049,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142050,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,142052,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,142053,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142054,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142055,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142056,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142058,PostalCode,Moga,LGD,38,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11 -IN-PIN,142060,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,143001,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143008,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143009,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143022,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143101,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143102,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143103,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143105,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143107,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143108,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143109,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143110,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143111,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143112,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143113,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143114,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143115,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143116,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143117,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143118,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143119,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143149,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143201,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143202,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143203,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143204,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143205,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143301,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143302,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143303,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143304,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143305,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143401,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143402,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143406,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143407,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143408,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143409,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143410,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143411,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143412,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143413,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143414,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143415,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143416,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143417,PostalCode,Tarn Taran,LGD,609,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11 -IN-PIN,143419,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143501,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143502,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143503,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143504,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143505,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143506,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143507,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143511,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143512,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143513,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143514,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143515,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143516,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143517,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143518,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143519,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143520,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143521,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143525,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143526,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143527,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143528,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143529,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143530,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143531,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143532,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143533,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143534,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -IN-PIN,143601,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143602,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143603,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,143604,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143605,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,143606,PostalCode,Amritsar,LGD,27,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11 -IN-PIN,144001,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144002,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144003,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144004,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144005,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144008,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144020,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144021,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144022,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144024,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144025,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144026,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144027,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144028,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144029,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144030,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144031,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144032,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144033,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144034,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144035,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144036,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144037,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144038,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144039,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144040,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144041,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144042,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144043,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144044,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144101,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144102,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144103,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144104,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144105,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144106,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144201,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144202,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144204,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144207,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144208,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144209,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144210,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144211,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144212,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144213,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144214,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144216,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144221,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144222,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144223,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144224,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144301,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144302,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144303,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144305,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144306,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144311,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144401,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144402,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144403,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144404,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144405,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144406,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144407,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144408,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144409,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144410,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144411,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144415,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144416,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144417,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144418,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144419,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144421,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144422,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144501,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144502,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144503,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144504,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144505,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144506,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144507,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144508,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144509,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144510,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144511,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144512,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144513,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144514,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144515,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144516,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144517,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144518,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144519,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144520,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144521,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144522,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144523,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144524,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144525,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144526,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144527,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144528,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144529,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144530,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144531,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144532,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,144533,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11 -IN-PIN,144601,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144602,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144603,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144606,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144620,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144621,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144622,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144623,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144624,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144625,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144626,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144628,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144629,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144630,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144631,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144632,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144633,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144701,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144702,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144703,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144801,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144802,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144803,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144804,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,144805,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144806,PostalCode,Jalandhar,LGD,34,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11 -IN-PIN,144819,PostalCode,Kapurthala,LGD,35,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11 -IN-PIN,145001,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -IN-PIN,145022,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -IN-PIN,145023,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -IN-PIN,145024,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,145025,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -IN-PIN,145026,PostalCode,Gurdaspur,LGD,32,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11 -IN-PIN,145027,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -IN-PIN,145029,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -IN-PIN,145101,PostalCode,Pathankot,LGD,662,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11 -IN-PIN,146021,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146023,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146024,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146101,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146102,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146103,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146104,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146105,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146106,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146107,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146108,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146109,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146110,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146111,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146112,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146113,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146114,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146115,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,146116,PostalCode,Hoshiarpur,LGD,33,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11 -IN-PIN,147001,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147002,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147004,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,147005,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147006,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,147007,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147021,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147101,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147102,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147103,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147104,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,147105,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147111,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147201,PostalCode,Patiala,LGD,41,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11 -IN-PIN,147202,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,147203,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,147301,PostalCode,Fatehgarh Sahib,LGD,30,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11 -IN-PIN,148001,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148002,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148017,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148018,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -IN-PIN,148019,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -IN-PIN,148020,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148021,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -IN-PIN,148022,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -IN-PIN,148023,PostalCode,Malerkotla,LGD,737,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11 -IN-PIN,148024,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148025,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148026,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148027,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148028,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148029,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148030,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148031,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148033,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148034,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148035,PostalCode,Sangrur,LGD,43,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11 -IN-PIN,148100,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148101,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148102,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148103,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148104,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148105,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148106,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148107,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148108,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,148109,PostalCode,Barnala,LGD,605,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11 -IN-PIN,151002,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151004,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151005,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151101,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151102,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151103,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151104,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151105,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151106,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151108,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151111,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151201,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151202,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151203,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151204,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151205,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151206,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151207,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151208,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151209,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151210,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,151211,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,151212,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151213,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151214,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,151301,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151302,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151401,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151501,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -IN-PIN,151502,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -IN-PIN,151503,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -IN-PIN,151504,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151505,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151506,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151507,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -IN-PIN,151508,PostalCode,Mansa,LGD,37,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11 -IN-PIN,151509,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151510,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,151511,PostalCode,Bathinda,LGD,28,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11 -IN-PIN,152002,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,152003,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,152004,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,152005,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,152020,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152021,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,152022,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152023,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,152024,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152025,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,152026,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,152028,PostalCode,Ferozepur,LGD,31,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11 -IN-PIN,152031,PostalCode,Faridkot,LGD,29,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11 -IN-PIN,152032,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,152033,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152101,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,152107,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,152112,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,152113,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,152114,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,152115,PostalCode,Sri Muktsar Sahib,LGD,39,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11 -IN-PIN,152116,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152117,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152118,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152121,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152122,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152123,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152124,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152128,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,152132,PostalCode,Fazilka,LGD,651,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11 -IN-PIN,160014,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,160055,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,160059,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,160071,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,160104,PostalCode,S.A.S Nagar,LGD,608,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11 -IN-PIN,171001,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171002,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171003,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171004,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171005,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171006,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171007,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171008,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171009,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171011,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171012,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171013,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171014,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171018,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171019,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171102,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,171103,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171201,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171202,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171203,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171204,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171205,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171206,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171207,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171208,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171209,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171210,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171211,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171212,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171213,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171214,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171215,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171216,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171217,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171218,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171219,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171220,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171221,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171222,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171223,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171224,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171225,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171226,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,171301,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172001,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,172002,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,172021,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172022,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172023,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,172024,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172025,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,172026,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,172027,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172028,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172029,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172030,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172031,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172032,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,172033,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,172034,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172101,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172102,PostalCode,Shimla,LGD,23,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11 -IN-PIN,172103,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172104,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172105,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172106,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172107,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172108,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172109,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172110,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172111,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172112,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172113,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -IN-PIN,172114,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -IN-PIN,172115,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172116,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172117,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -IN-PIN,172118,PostalCode,Kinnaur,LGD,19,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11 -IN-PIN,172201,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,173001,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173021,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173022,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173023,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173024,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173025,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173026,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173027,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173029,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173030,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173032,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173033,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173101,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173104,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173201,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173202,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173204,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173205,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173206,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173207,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173208,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173209,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173210,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173211,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173212,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173213,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173214,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173215,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173217,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173218,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173220,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173221,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173222,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173223,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173225,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173229,PostalCode,Sirmaur,LGD,24,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11 -IN-PIN,173233,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173235,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,173236,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,174001,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174002,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174003,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174004,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174005,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174011,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174012,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174013,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174015,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174017,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174021,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174023,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174024,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174026,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174027,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174028,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174029,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174030,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174031,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174032,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174033,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174034,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174035,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174036,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174101,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,174102,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,174103,PostalCode,Solan,LGD,25,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11 -IN-PIN,174201,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174301,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174302,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174303,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174304,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,174305,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,174306,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174307,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174308,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174309,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,174310,PostalCode,Bilaspur,LGD,15,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11 -IN-PIN,174311,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,174312,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,174314,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174315,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174316,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174317,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174319,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174320,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174321,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174405,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,174503,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,174505,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,174507,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,175001,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175002,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175003,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175004,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175005,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175006,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175007,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175008,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175009,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175010,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175011,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175012,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175013,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,175014,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175015,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175016,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175017,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175018,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175019,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175020,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175021,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175023,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175024,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175025,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175026,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175027,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175028,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175029,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175030,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175031,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175032,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175033,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175034,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175035,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175036,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175037,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175038,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175039,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175040,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175042,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175045,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175046,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175047,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175048,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175049,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175050,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175051,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175052,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175075,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175101,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175102,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175103,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175104,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175105,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175106,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175121,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175123,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175124,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,175125,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175126,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175128,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175129,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175130,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175131,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175132,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -IN-PIN,175133,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -IN-PIN,175134,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175136,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175138,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175139,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -IN-PIN,175140,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -IN-PIN,175141,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,175142,PostalCode,Lahaul And Spiti,LGD,21,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11 -IN-PIN,175143,PostalCode,Kullu,LGD,20,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11 -IN-PIN,176001,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176002,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176021,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176022,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176023,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176025,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176026,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176027,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176028,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176029,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176030,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176031,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176032,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176033,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176036,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176037,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176038,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176039,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176040,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176041,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176042,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176043,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176044,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176045,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176047,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176048,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176049,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176051,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176052,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176053,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176054,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176055,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176056,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176057,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176058,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176059,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176060,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176061,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176062,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176063,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176064,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176065,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176066,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176071,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176073,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176075,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176076,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176077,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176081,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176082,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176083,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176084,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176085,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176086,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176087,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176088,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176089,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176090,PostalCode,Mandi,LGD,22,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11 -IN-PIN,176091,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176092,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176093,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176094,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176095,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176096,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176097,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176098,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176101,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176102,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176103,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176107,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176108,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176109,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176110,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176111,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,176115,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176125,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176128,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176200,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176201,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176202,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176203,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176204,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176205,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176206,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176207,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176208,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176209,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176210,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176211,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176213,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176214,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176215,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176216,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176217,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176218,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176219,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176225,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176301,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176302,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176303,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176304,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176305,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176306,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176308,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176309,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176310,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176311,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176312,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176313,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176314,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176315,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176316,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176317,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176318,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176319,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176320,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176321,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176323,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176324,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176325,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176326,PostalCode,Chamba,LGD,16,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11 -IN-PIN,176401,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176402,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176403,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176501,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176502,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,176601,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177001,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177006,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177007,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177020,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177021,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177022,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177023,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177024,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177025,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177026,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177027,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177028,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177029,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177031,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177033,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177034,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177038,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177039,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177040,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177041,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177042,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177043,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177044,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177045,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177048,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177101,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177103,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177104,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177105,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177106,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177107,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177108,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177109,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177110,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177111,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177112,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177113,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177114,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177117,PostalCode,Kangra,LGD,18,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11 -IN-PIN,177118,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177119,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177201,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177202,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177203,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177204,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177205,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177206,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177207,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177208,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177209,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177210,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177211,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177212,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177213,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177219,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177220,PostalCode,Una,LGD,26,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11 -IN-PIN,177301,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177401,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177501,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,177601,PostalCode,Hamirpur,LGD,17,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11 -IN-PIN,180001,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180002,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180003,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180006,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180009,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180010,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180011,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180015,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180017,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180019,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,180020,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181101,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181102,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181111,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181121,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181122,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181123,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181131,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181132,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181133,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -IN-PIN,181141,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -IN-PIN,181145,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -IN-PIN,181152,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181201,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181202,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181203,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181205,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181206,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181207,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181221,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,181224,PostalCode,Jammu,LGD,5,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11 -IN-PIN,182101,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182104,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182121,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182122,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182124,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182125,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182126,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182127,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182128,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182141,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182142,PostalCode,Ramban,LGD,621,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -IN-PIN,182143,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182144,PostalCode,Ramban,LGD,621,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -IN-PIN,182145,PostalCode,Ramban,LGD,621,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -IN-PIN,182146,PostalCode,Ramban,LGD,621,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11 -IN-PIN,182147,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182148,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182161,PostalCode,Udhampur,LGD,14,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11 -IN-PIN,182201,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182202,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182203,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182204,PostalCode,Kishtwar,LGD,620,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -IN-PIN,182205,PostalCode,Kishtwar,LGD,620,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11 -IN-PIN,182207,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182221,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182222,PostalCode,Doda,LGD,4,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11 -IN-PIN,182301,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -IN-PIN,182311,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -IN-PIN,182312,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -IN-PIN,182313,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -IN-PIN,182315,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -IN-PIN,182320,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -IN-PIN,184102,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184104,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184120,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -IN-PIN,184121,PostalCode,Samba,LGD,624,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11 -IN-PIN,184141,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184142,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184143,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184144,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184148,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184151,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184152,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184201,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184202,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184203,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184204,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184205,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184206,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,184210,PostalCode,Kathua,LGD,7,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11 -IN-PIN,185101,PostalCode,Poonch,LGD,10,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -IN-PIN,185102,PostalCode,Poonch,LGD,10,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -IN-PIN,185121,PostalCode,Poonch,LGD,10,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -IN-PIN,185131,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185132,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185133,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185135,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185151,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185152,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185153,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185154,PostalCode,Reasi,LGD,627,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11 -IN-PIN,185155,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185156,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185201,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185202,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185203,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185211,PostalCode,Poonch,LGD,10,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11 -IN-PIN,185212,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185233,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,185234,PostalCode,Rajouri,LGD,12,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11 -IN-PIN,190001,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190002,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190003,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190004,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190005,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190006,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190008,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190010,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190011,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190012,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190014,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190015,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190017,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190018,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -IN-PIN,190019,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190020,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190024,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,190025,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,191101,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,191102,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,191103,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,191111,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -IN-PIN,191112,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -IN-PIN,191113,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -IN-PIN,191121,PostalCode,Srinagar,LGD,13,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11 -IN-PIN,191131,PostalCode,Ganderbal,LGD,626,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -IN-PIN,191201,PostalCode,Ganderbal,LGD,626,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -IN-PIN,191202,PostalCode,Ganderbal,LGD,626,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11 -IN-PIN,192101,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192121,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,192122,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,192123,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,192124,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192125,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192126,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192129,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192201,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192202,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192211,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192212,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192221,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,192231,PostalCode,Kulgam,LGD,622,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -IN-PIN,192232,PostalCode,Kulgam,LGD,622,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -IN-PIN,192233,PostalCode,Kulgam,LGD,622,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11 -IN-PIN,192301,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,192302,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,192303,PostalCode,Shopian,LGD,625,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11 -IN-PIN,192304,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,192305,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,192401,PostalCode,Anantnag,LGD,1,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11 -IN-PIN,193101,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193103,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193108,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193109,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193121,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -IN-PIN,193122,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193123,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193201,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193221,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -IN-PIN,193222,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -IN-PIN,193223,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -IN-PIN,193224,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -IN-PIN,193225,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -IN-PIN,193301,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193302,PostalCode,Kupwara,LGD,8,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11 -IN-PIN,193303,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193306,PostalCode,Pulwama,LGD,11,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11 -IN-PIN,193401,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193402,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193404,PostalCode,Baramulla,LGD,3,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11 -IN-PIN,193411,PostalCode,Budgam,LGD,2,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11 -IN-PIN,193501,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -IN-PIN,193502,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -IN-PIN,193503,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -IN-PIN,193504,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -IN-PIN,193505,PostalCode,Bandipora,LGD,623,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11 -IN-PIN,194101,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -IN-PIN,194102,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -IN-PIN,194103,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -IN-PIN,194104,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -IN-PIN,194106,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -IN-PIN,194107,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -IN-PIN,194109,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -IN-PIN,194201,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -IN-PIN,194202,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -IN-PIN,194301,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -IN-PIN,194302,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -IN-PIN,194303,PostalCode,Kargil,LGD,6,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11 -IN-PIN,194401,PostalCode,Leh Ladakh,LGD,9,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11 -IN-PIN,201001,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201002,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201003,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201004,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201005,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201007,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201008,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201009,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201010,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201013,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201014,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201015,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201020,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201102,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201201,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201204,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201206,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,201301,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201303,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201304,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201305,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201306,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201307,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201309,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201310,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201311,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201312,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201313,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201314,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201316,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,201318,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,202001,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202002,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202121,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202122,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202123,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202124,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202125,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202126,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202127,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202128,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202129,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202130,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202131,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202132,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202133,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202134,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202135,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202136,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202137,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202138,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202139,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202140,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202141,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202142,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202143,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202145,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202150,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202155,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202165,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202280,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202281,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,202282,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,203001,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203002,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203129,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203131,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203132,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203135,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,203141,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203150,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203155,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,203201,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,203202,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203203,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203205,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203206,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203207,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,203209,PostalCode,Gautam Buddha Nagar,LGD,144,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11 -IN-PIN,203389,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203390,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203391,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203392,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203393,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203394,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203395,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203396,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203397,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203398,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203399,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203401,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203402,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203403,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203405,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203407,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203408,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203409,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203411,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,203412,PostalCode,Bulandshahr,LGD,134,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11 -IN-PIN,204101,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,204102,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -IN-PIN,204211,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -IN-PIN,204212,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -IN-PIN,204213,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,204214,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -IN-PIN,204215,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,204216,PostalCode,Aligarh,LGD,119,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11 -IN-PIN,204217,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -IN-PIN,205001,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205119,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205121,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,205247,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205261,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205262,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205263,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205264,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205265,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205267,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205268,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205301,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205303,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,205304,PostalCode,Mainpuri,LGD,166,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11 -IN-PIN,206001,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206002,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206003,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206120,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206121,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206122,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206123,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206124,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206125,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206126,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206127,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206128,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206129,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206130,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206131,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206241,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206242,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206243,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206244,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206245,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206246,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206247,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206248,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206249,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206250,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206251,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206252,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,206253,PostalCode,Etawah,LGD,139,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11 -IN-PIN,206255,PostalCode,Auraiya,LGD,122,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11 -IN-PIN,207001,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207002,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207003,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207120,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207121,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207122,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207123,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -IN-PIN,207124,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -IN-PIN,207125,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207241,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -IN-PIN,207242,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -IN-PIN,207243,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207244,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207245,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -IN-PIN,207246,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207247,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207248,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207249,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207250,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207301,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207302,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207401,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,207402,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -IN-PIN,207403,PostalCode,Kasganj,LGD,633,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11 -IN-PIN,208002,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208003,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208004,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208007,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208008,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208010,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208011,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208012,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208013,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208014,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208016,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208017,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208019,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208020,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208021,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208022,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208023,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208024,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,208027,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209101,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209111,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209112,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209115,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209121,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209125,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209202,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209203,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209204,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209205,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209206,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209208,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209209,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209210,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209214,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209217,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209301,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209302,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209303,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209304,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209305,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209306,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209307,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209308,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209310,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209311,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209312,PostalCode,Kanpur Dehat,LGD,156,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11 -IN-PIN,209401,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209402,PostalCode,Kanpur Nagar,LGD,157,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11 -IN-PIN,209501,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209502,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209503,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209504,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209505,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209601,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209602,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209621,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209622,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209625,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209651,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209652,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209720,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209721,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209722,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209723,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209724,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209725,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209726,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209727,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209728,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209729,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209731,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209732,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209733,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209734,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209735,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209736,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209738,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209739,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209743,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209745,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209747,PostalCode,Kannauj,LGD,155,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11 -IN-PIN,209749,PostalCode,Farrukhabad,LGD,141,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11 -IN-PIN,209801,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209821,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209825,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209827,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209831,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209841,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209859,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209860,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209861,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209862,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209863,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209864,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209865,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209866,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209867,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209868,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209869,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,209870,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209871,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,209881,PostalCode,Unnao,LGD,186,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11 -IN-PIN,210001,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210120,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210121,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210122,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210123,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210125,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210126,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210128,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210129,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210201,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210202,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210203,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210204,PostalCode,Chitrakoot,LGD,136,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -IN-PIN,210205,PostalCode,Chitrakoot,LGD,136,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -IN-PIN,210206,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210207,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210208,PostalCode,Chitrakoot,LGD,136,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -IN-PIN,210209,PostalCode,Chitrakoot,LGD,136,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11 -IN-PIN,210301,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210341,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210421,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -IN-PIN,210422,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210423,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -IN-PIN,210424,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,210425,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210426,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -IN-PIN,210427,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -IN-PIN,210428,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210429,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210430,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210431,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210432,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210433,PostalCode,Mahoba,LGD,165,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11 -IN-PIN,210501,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210502,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210504,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210505,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210506,PostalCode,Hamirpur,LGD,149,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11 -IN-PIN,210507,PostalCode,Banda,LGD,128,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11 -IN-PIN,211003,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211007,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211008,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211010,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211011,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211012,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211013,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211015,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211016,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,211019,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212104,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212106,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212107,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212108,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212109,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212111,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212201,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212202,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212203,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212204,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212205,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212206,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212207,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212208,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212212,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212213,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212214,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212216,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212217,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212218,PostalCode,Kaushambi,LGD,158,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11 -IN-PIN,212301,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212302,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212303,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212305,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212306,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212307,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212401,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212402,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212404,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212405,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212502,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212503,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,212507,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,212601,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212620,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212621,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212622,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212631,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212635,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212641,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212645,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212650,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212651,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212652,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212653,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212654,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212655,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212656,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212657,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212658,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212659,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212661,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212663,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212664,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,212665,PostalCode,Fatehpur,LGD,142,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11 -IN-PIN,214387,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,221001,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221002,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221003,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221004,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221005,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221006,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221007,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221008,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,221009,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,221010,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221011,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221101,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,221103,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221104,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221105,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221106,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221107,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221108,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221109,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221110,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,221111,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,221112,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221115,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,221116,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,221201,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221202,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221204,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221206,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221207,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221208,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221301,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221302,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221303,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221304,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221305,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221306,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221307,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221308,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221309,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221310,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221311,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221313,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221314,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221401,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221402,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221403,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221404,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221405,PostalCode,Varanasi,LGD,187,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11 -IN-PIN,221406,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221409,PostalCode,Bhadohi,LGD,179,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11 -IN-PIN,221502,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,221503,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,221505,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,221507,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,221508,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,221601,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,221602,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,221603,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,221701,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,221705,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,221706,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,221709,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,221711,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,221712,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,221713,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,221715,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,221716,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,221717,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,221718,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,222001,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222002,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222003,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222105,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222109,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222125,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222126,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222127,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222128,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222129,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222131,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222132,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222133,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222135,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222136,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222137,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222138,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222139,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222141,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222142,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222143,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222144,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222145,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222146,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222149,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222161,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222162,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222165,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222170,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222175,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222180,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222181,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222201,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222202,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222203,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,222301,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,222302,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,222303,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,223101,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,223102,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,223103,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,223104,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,223105,PostalCode,Jaunpur,LGD,152,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11 -IN-PIN,223221,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,223222,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,223223,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,223224,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,223225,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,223226,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,223227,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,224001,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224116,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224117,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224118,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224119,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224120,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224121,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224122,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224123,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224125,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224126,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224127,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224129,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224132,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224133,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224135,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224137,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224139,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224141,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224143,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224145,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224146,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224147,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224149,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224151,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224152,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224153,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224155,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224157,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224158,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224159,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224161,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224164,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224168,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224171,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224172,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224176,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224181,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224182,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224183,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224186,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224188,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224189,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224190,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224195,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224201,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224202,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224203,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224204,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224205,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224206,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224207,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224208,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224209,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224210,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224225,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224227,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224228,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224229,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224230,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224231,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224232,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,224234,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224235,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224238,PostalCode,Ambedkar Nagar,LGD,121,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11 -IN-PIN,224284,PostalCode,Ayodhya,LGD,140,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11 -IN-PIN,224923,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -IN-PIN,225001,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225003,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225119,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225120,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225121,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225122,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225123,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225124,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225125,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225126,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225201,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225202,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225203,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225204,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225205,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225206,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225207,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225208,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225301,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225302,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225303,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225304,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225305,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225306,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225401,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225403,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225404,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225405,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225409,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225412,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225413,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225414,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225415,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,225416,PostalCode,Bara Banki,LGD,129,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11 -IN-PIN,226002,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226003,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226004,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226005,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226006,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226008,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226009,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226010,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226011,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226012,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226013,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226015,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226016,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226017,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226018,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226020,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226021,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226022,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226024,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226026,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226028,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226029,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226031,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226101,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226102,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226103,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226104,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226201,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226202,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226203,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226301,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226302,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226303,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226401,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,226501,PostalCode,Lucknow,LGD,162,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11 -IN-PIN,227304,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,227405,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227406,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227407,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227408,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227409,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227411,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227412,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227413,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227801,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227805,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227806,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,227807,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227808,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,227809,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227811,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227812,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,227813,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227814,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,227815,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227816,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,227817,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,228001,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,228118,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228119,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228120,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228121,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,228125,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,228131,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228132,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228133,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228141,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228142,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228145,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228151,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228155,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228159,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,228161,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228171,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,228172,PostalCode,Sultanpur,LGD,185,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11 -IN-PIN,229001,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229010,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229103,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229121,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229122,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229123,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229124,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229125,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229126,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229127,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229128,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229129,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229130,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229135,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229201,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229202,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229203,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229204,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229205,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229206,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229207,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229208,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229209,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229210,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229211,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229212,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229215,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229216,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229301,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229302,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229303,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229304,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229305,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229306,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229307,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229308,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229309,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229310,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229311,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229316,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229401,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229402,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229404,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229405,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229406,PostalCode,Rae Bareli,LGD,175,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11 -IN-PIN,229408,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,229410,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,229411,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,229412,PostalCode,Prayagraj,LGD,120,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11 -IN-PIN,229413,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,229801,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,229802,PostalCode,Amethi,LGD,640,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11 -IN-PIN,230001,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230002,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230121,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230124,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230125,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230126,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230127,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230128,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230129,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230130,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230131,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230132,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230133,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230134,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230135,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230136,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230137,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230138,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230139,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230141,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230142,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230143,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230144,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230201,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230202,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230204,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230301,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230302,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230304,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230306,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230401,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230402,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230403,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230404,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230405,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230501,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230502,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,230503,PostalCode,Pratapgarh,LGD,174,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11 -IN-PIN,231001,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231205,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231206,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231207,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231208,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231209,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231210,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231211,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231212,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231213,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231215,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231216,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231217,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231218,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231219,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231220,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231221,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231222,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231223,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231224,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231225,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231226,PostalCode,Sonbhadra,LGD,184,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11 -IN-PIN,231301,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231302,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231303,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231304,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231305,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231306,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231307,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231309,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231312,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231313,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231314,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,231501,PostalCode,Mirzapur,LGD,170,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11 -IN-PIN,232101,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232102,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232103,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232104,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232105,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232106,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232107,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232108,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232109,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232110,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232111,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232118,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232120,PostalCode,Chandauli,LGD,135,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11 -IN-PIN,232325,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232326,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232327,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232328,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232329,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232330,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232331,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232332,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232333,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232336,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232339,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232340,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,232341,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233001,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233002,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233221,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233222,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233223,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233224,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233225,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233226,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233227,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233228,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233229,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233230,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233231,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233232,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233233,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233234,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233300,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233301,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233302,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233303,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233304,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233305,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233306,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233307,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233310,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,233311,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,241001,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241121,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241122,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241123,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241124,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241125,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241126,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241127,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241201,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241202,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241203,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241204,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241301,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241302,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241303,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241304,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241305,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241401,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241402,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241403,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241404,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241405,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241406,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,241407,PostalCode,Hardoi,LGD,150,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11 -IN-PIN,242001,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242021,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -IN-PIN,242042,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242127,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242220,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242221,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242223,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242226,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242301,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242303,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242305,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242306,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,242307,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242401,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242405,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242406,PostalCode,Shahjahanpur,LGD,180,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11 -IN-PIN,242407,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,243001,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243003,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243004,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243005,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243006,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243122,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243123,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243126,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243201,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243202,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243203,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243301,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243302,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243303,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243401,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243402,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243403,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243501,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243502,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243503,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243504,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243505,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243506,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,243601,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243630,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243631,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243632,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243633,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243634,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243635,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243636,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243637,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243638,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243639,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243641,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243720,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243722,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243723,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243724,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243725,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243726,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,243727,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -IN-PIN,243751,PostalCode,Budaun,LGD,133,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11 -IN-PIN,244001,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244102,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244103,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244104,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244105,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244221,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244222,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244225,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244231,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244235,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244236,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244241,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244242,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244251,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244255,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244301,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244302,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -IN-PIN,244303,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -IN-PIN,244304,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244401,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244402,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244410,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -IN-PIN,244411,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244412,PostalCode,Sambhal,LGD,659,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11 -IN-PIN,244413,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244414,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244415,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244501,PostalCode,Amroha,LGD,154,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11 -IN-PIN,244504,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244601,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244602,PostalCode,Moradabad,LGD,171,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11 -IN-PIN,244701,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -IN-PIN,244712,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,244713,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,244715,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,244716,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,244717,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,244720,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,244901,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -IN-PIN,244921,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -IN-PIN,244922,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -IN-PIN,244924,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -IN-PIN,244925,PostalCode,Rampur,LGD,176,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11 -IN-PIN,245101,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -IN-PIN,245201,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,245205,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -IN-PIN,245206,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,245207,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -IN-PIN,245208,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -IN-PIN,245301,PostalCode,Hapur,LGD,661,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11 -IN-PIN,245304,PostalCode,Ghaziabad,LGD,145,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11 -IN-PIN,246001,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,246113,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246121,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246123,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246124,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246125,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246127,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246128,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246129,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246130,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246131,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246141,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246144,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246146,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246147,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246148,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246149,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246155,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246159,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246161,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246162,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246163,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246164,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246165,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246166,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246167,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246169,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246171,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246172,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246173,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246174,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246175,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246176,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246177,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246178,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246179,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246193,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246194,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246275,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246276,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246277,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246278,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246279,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246285,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,246401,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246419,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246421,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246422,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246424,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246425,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246426,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246427,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246428,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246429,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246431,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246435,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246439,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246440,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246441,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246442,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246443,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246444,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246445,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246446,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246448,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246449,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246453,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246455,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246469,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246471,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246472,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246473,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246474,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246475,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246481,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246482,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246483,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246486,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246487,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246488,PostalCode,Chamoli,LGD,47,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11 -IN-PIN,246495,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,246701,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246721,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246722,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246723,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246724,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246725,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246726,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246727,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246728,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246729,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246731,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246732,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246733,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246734,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246735,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246736,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246737,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246745,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246746,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246747,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246749,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246761,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246762,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,246763,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,246764,PostalCode,Bijnor,LGD,132,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11 -IN-PIN,247001,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247002,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247120,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247121,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247122,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247129,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247231,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247232,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247340,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247341,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247342,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247343,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247451,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247452,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247453,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247551,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247554,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247656,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247661,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247662,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247663,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247665,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247666,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247667,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247668,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247669,PostalCode,Saharanpur,LGD,177,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11 -IN-PIN,247670,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247671,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,247771,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,247772,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,247773,PostalCode,Shamli,LGD,660,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 -IN-PIN,247774,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,247775,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,247776,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,247777,PostalCode,Shamli,LGD,660,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 -IN-PIN,247778,PostalCode,Shamli,LGD,660,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11 -IN-PIN,248001,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248002,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248003,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248005,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248007,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248008,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248009,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248013,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248019,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248121,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248123,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248124,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248140,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248143,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248145,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248158,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248165,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248179,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248196,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248197,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,248199,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,249001,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,249121,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249122,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249123,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249124,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249125,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249126,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249127,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,249128,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249130,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,249131,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,249132,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249135,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249136,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249137,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249141,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249145,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249146,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249151,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249152,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249155,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249161,PostalCode,Rudraprayag,LGD,54,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11 -IN-PIN,249165,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249171,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249175,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249180,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249181,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249185,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249186,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249192,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249193,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249194,PostalCode,Uttarkashi,LGD,57,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11 -IN-PIN,249196,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249199,PostalCode,Tehri Garhwal,LGD,55,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11 -IN-PIN,249202,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,249204,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,249205,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,249301,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,249302,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,249304,PostalCode,Pauri Garhwal,LGD,52,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11 -IN-PIN,249306,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,249401,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,249402,PostalCode,Dehradun,LGD,49,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11 -IN-PIN,249404,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,249405,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,249407,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,249408,PostalCode,Haridwar,LGD,50,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11 -IN-PIN,250001,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250002,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250004,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250005,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250101,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250103,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250104,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250106,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250110,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250205,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250221,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250222,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250223,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250341,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250342,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250344,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250345,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250401,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250402,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250404,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250406,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250501,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250502,PostalCode,Meerut,LGD,169,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11 -IN-PIN,250601,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250606,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250609,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250611,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250615,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250617,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250619,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250620,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250621,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250622,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250623,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250625,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,250626,PostalCode,Baghpat,LGD,124,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11 -IN-PIN,251001,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251002,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251003,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251201,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251202,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251203,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251301,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251305,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251306,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251307,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251308,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251309,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251310,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251311,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251314,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251315,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251316,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251318,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251319,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251320,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,251327,PostalCode,Muzaffarnagar,LGD,172,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11 -IN-PIN,261001,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261121,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261125,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261131,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261135,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261136,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261141,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261145,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261151,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261201,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261202,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261203,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261204,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261205,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261206,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261207,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261208,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261301,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261302,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261303,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261401,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261402,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261403,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261404,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261405,PostalCode,Sitapur,LGD,183,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11 -IN-PIN,261501,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,261502,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,261505,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,261506,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262001,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262121,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262122,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262123,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262124,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262201,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262202,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262203,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262302,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262305,PostalCode,Pilibhit,LGD,173,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11 -IN-PIN,262308,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,262309,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262310,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262311,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,262401,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,262402,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,262405,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,262406,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,262407,PostalCode,Bareilly,LGD,130,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11 -IN-PIN,262501,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262502,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262520,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262521,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262522,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262523,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262524,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262525,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262526,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262527,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262528,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262529,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262530,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262531,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262532,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262533,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262534,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262540,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262541,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262542,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262543,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262544,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262545,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262546,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262547,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262550,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262551,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262552,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262553,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262554,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262555,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262561,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262572,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262576,PostalCode,Pithoragarh,LGD,53,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11 -IN-PIN,262580,PostalCode,Champawat,LGD,48,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11 -IN-PIN,262701,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262702,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262721,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262722,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262723,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262724,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262725,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262726,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262727,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262728,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262801,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262802,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,262803,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262804,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262805,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262901,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262902,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262903,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262904,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262905,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262906,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262907,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,262908,PostalCode,Kheri,LGD,159,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11 -IN-PIN,263001,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263126,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263127,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263128,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263132,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263134,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263135,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263136,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263137,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263138,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263139,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263140,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263142,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263145,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,263148,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,263149,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,263150,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,263151,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,263152,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,263153,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,263156,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263157,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263158,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263159,PostalCode,Nainital,LGD,51,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11 -IN-PIN,263160,PostalCode,Udham Singh Nagar,LGD,56,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11 -IN-PIN,263601,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263619,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263620,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263621,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263622,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263623,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263624,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263625,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263626,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263628,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263629,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263630,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263631,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263632,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263633,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263634,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263635,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263636,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263637,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263638,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263639,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263640,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263641,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263642,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263643,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263645,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263646,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263651,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263652,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263653,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263655,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263656,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263658,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263659,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263660,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263661,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263663,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263664,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263665,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263667,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263676,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263678,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,263679,PostalCode,Bageshwar,LGD,46,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11 -IN-PIN,263680,PostalCode,Almora,LGD,45,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11 -IN-PIN,271001,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271002,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271003,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271122,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271123,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271124,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271125,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271126,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271129,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271201,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271203,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271205,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271206,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271207,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271208,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271210,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271301,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271302,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271303,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271305,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271306,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271307,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271309,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271310,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271311,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271312,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271313,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,271319,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271401,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271403,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271502,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271503,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271504,PostalCode,Gonda,LGD,147,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11 -IN-PIN,271602,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271603,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271604,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271607,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271609,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271801,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271802,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271803,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -IN-PIN,271804,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -IN-PIN,271806,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271821,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271824,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271825,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271830,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271831,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -IN-PIN,271835,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271840,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -IN-PIN,271841,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271845,PostalCode,Shrawasti,LGD,181,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11 -IN-PIN,271851,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271855,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271861,PostalCode,Balrampur,LGD,127,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11 -IN-PIN,271865,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271870,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271871,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271872,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271875,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271881,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271882,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271901,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271902,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271903,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,271904,PostalCode,Bahraich,LGD,125,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11 -IN-PIN,272001,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272002,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272123,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272124,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272125,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272126,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272127,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272128,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272129,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272130,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272131,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272148,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272150,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272151,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272152,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272153,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272154,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272155,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272161,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272162,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272163,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272164,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272165,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272171,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272172,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272173,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272175,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272176,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272177,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272178,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272181,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272182,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272189,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272190,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272191,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272192,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272193,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272194,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272195,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272199,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272201,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272202,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272203,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272204,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272205,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272206,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272207,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272208,PostalCode,Siddharthnagar,LGD,182,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11 -IN-PIN,272270,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272271,PostalCode,Sant Kabir Nagar,LGD,178,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11 -IN-PIN,272301,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,272302,PostalCode,Basti,LGD,131,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11 -IN-PIN,273001,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273002,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273004,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273006,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273007,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273008,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273010,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273013,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273014,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273015,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273016,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273017,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273151,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273152,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273155,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273157,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273158,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273161,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273162,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273163,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273164,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273165,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273201,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273202,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273203,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273207,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273209,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273211,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273212,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273213,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273301,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273302,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273303,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273304,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273305,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273306,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273308,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273309,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273310,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273311,PostalCode,Mahrajganj,LGD,164,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11 -IN-PIN,273401,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273402,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273403,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273404,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273405,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273406,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273407,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273408,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273409,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273411,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273412,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,273413,PostalCode,Gorakhpur,LGD,148,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11 -IN-PIN,274001,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274149,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274182,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274201,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274202,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274203,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274204,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274205,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274206,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274207,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274208,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274301,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274302,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274303,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274304,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274305,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274306,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274307,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274308,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274309,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274401,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274402,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274404,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274405,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274406,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274407,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274408,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274409,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274501,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274502,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274505,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274506,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274508,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274509,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274601,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274602,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274603,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274701,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274702,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274703,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274704,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274705,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274801,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274802,PostalCode,Kushinagar,LGD,160,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11 -IN-PIN,274806,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,274807,PostalCode,Deoria,LGD,137,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11 -IN-PIN,275101,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275102,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275103,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275105,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275201,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,275202,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,275203,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,275204,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,275205,PostalCode,Ghazipur,LGD,146,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11 -IN-PIN,275301,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275302,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275303,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275304,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275305,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275306,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,275307,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,276001,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276121,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276122,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276123,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276124,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276125,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276126,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276127,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276128,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276129,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276131,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276135,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276136,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276137,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276138,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276139,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276140,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276141,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276142,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276143,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276201,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276202,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276203,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276204,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276205,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276206,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276207,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276208,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276288,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276301,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276302,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276303,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276304,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276305,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276306,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,276402,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276403,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,276404,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,276405,PostalCode,Mau,LGD,168,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11 -IN-PIN,276406,PostalCode,Azamgarh,LGD,123,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11 -IN-PIN,277001,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277121,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277123,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277124,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277201,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277202,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277203,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277204,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277205,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277207,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277208,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277209,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277210,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277211,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277213,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277214,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277216,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277219,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277301,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277302,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277303,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277304,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277401,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277402,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277403,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277501,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277502,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277503,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277504,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,277506,PostalCode,Ballia,LGD,126,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11 -IN-PIN,281001,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281003,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281004,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281005,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281006,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281104,PostalCode,Etah,LGD,138,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11 -IN-PIN,281121,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281122,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281123,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281201,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281202,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281203,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281204,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281205,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281206,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281301,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281302,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -IN-PIN,281303,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281305,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281306,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -IN-PIN,281307,PostalCode,Hathras,LGD,163,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11 -IN-PIN,281308,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281401,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281403,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281404,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281405,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281406,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281501,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281502,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,281504,PostalCode,Mathura,LGD,167,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11 -IN-PIN,282001,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,282002,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,282004,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,282005,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,282006,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,282007,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,282009,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,282010,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283101,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283102,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283103,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283104,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283105,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283110,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283111,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283112,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283113,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283114,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283115,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283119,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283121,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283122,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283123,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283124,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283125,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283126,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283130,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283135,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283136,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283141,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283142,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283145,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283151,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283152,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283201,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283202,PostalCode,Agra,LGD,118,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11 -IN-PIN,283203,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283204,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283205,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283206,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,283207,PostalCode,Firozabad,LGD,143,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11 -IN-PIN,284001,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284002,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284003,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284120,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284121,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284122,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284123,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,284124,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284126,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284127,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284128,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284135,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284136,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284201,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284202,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284203,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284204,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284205,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284206,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284301,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284302,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284303,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284304,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,284305,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284306,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,284401,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284402,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284403,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284404,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284405,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284406,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,284419,PostalCode,Jhansi,LGD,153,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11 -IN-PIN,284501,PostalCode,Lalitpur,LGD,161,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11 -IN-PIN,285001,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285121,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285122,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285123,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285124,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285125,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285126,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285127,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285128,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285129,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285130,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285201,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285202,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285203,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285204,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285205,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285206,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,285223,PostalCode,Jalaun,LGD,151,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11 -IN-PIN,301001,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301018,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301019,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301020,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301021,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301022,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301023,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301024,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301025,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301026,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301027,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301028,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301030,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301035,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301401,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301402,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301404,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301405,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301406,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301407,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301408,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301409,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301410,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301411,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301412,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301413,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301414,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301415,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301418,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301427,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301604,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,301701,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301702,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301703,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301704,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301705,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301706,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301707,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301708,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301709,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301713,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,301714,PostalCode,Khairthal-Tijara,LGD,770,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,302001,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302002,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302003,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302004,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302006,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302012,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302013,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302015,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302016,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302017,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302018,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302019,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302020,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302021,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302022,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302026,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302027,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302028,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302029,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302031,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302033,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302034,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302037,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302038,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302039,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302041,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302042,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302044,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302046,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,302048,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303001,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303002,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303003,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303004,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303005,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303006,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303007,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303008,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303009,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303012,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303102,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,303103,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303104,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303105,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,303106,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,303107,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,303108,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,303109,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303110,PostalCode,Kotputli-Behror,LGD,782,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,303119,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303120,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303123,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303124,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303301,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303302,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303303,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303304,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303305,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303313,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303315,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303323,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303325,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303326,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303327,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303328,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303338,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303348,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303501,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303502,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303503,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303505,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303506,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303507,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303508,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303509,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303510,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303511,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,303601,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303602,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303603,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303604,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303701,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303702,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303704,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303706,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303712,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303801,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303803,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303804,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303805,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303806,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303807,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303901,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303903,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303904,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303905,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,303908,PostalCode,Jaipur,LGD,102,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11 -IN-PIN,304001,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304021,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304022,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304023,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,304024,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,304025,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304026,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,304501,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304502,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304503,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304504,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304505,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304507,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304801,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304802,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304803,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,304804,PostalCode,Tonk,LGD,116,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11 -IN-PIN,305001,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305002,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305003,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305004,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305005,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305012,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305021,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305022,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305023,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305024,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305025,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305026,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,305201,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305202,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305203,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305204,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305205,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305206,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305207,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305401,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305402,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305403,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305404,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305405,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305406,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305407,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305408,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305412,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305415,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305601,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305621,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305622,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305623,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305624,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305625,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305627,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305628,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305629,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305630,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305631,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305801,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305802,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305811,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305812,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305813,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305814,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305815,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305816,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305819,PostalCode,Ajmer,LGD,86,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11 -IN-PIN,305901,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305921,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305922,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305923,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305924,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305925,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305926,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,305927,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306001,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306021,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306022,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306023,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306101,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306102,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306103,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306104,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306105,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306114,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306115,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306116,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306119,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306126,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306301,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306302,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306303,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306304,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306305,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306306,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306307,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306308,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306401,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306421,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306422,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306501,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306502,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306503,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306504,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306601,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306602,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306603,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306701,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306702,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306703,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306704,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306705,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306706,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306707,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306708,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306709,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,306901,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306902,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,306912,PostalCode,Pali,LGD,111,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11 -IN-PIN,307001,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307019,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307022,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307023,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307024,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307025,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,307026,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307027,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307028,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307029,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,307030,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,307031,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307032,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307043,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307501,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307510,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307511,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307512,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307513,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307514,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,307515,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,307801,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307802,PostalCode,Sirohi,LGD,115,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11 -IN-PIN,307803,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,311001,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311011,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311021,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311022,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311023,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311024,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311025,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311026,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311030,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311201,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311202,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311203,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311204,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,311301,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,311302,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,311401,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311402,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311403,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311404,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311407,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311408,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311601,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311602,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311603,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311604,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311605,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311606,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311801,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311802,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311803,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311804,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311805,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,311806,PostalCode,Bhilwara,LGD,92,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11 -IN-PIN,312001,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312021,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312022,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312023,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312024,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312025,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312027,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312201,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312202,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312203,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312204,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312205,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312206,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312207,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312401,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312402,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312403,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312404,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312601,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312602,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312603,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312604,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312605,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312606,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312612,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312613,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312614,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312615,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312616,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312619,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312620,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,312623,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312624,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312625,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312626,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312628,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312629,PostalCode,Pratapgarh,LGD,629,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11 -IN-PIN,312901,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,313001,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313003,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,313011,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313022,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,313024,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313026,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313027,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313031,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,313038,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313201,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313202,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313203,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,313204,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313205,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,313206,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313207,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313211,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313301,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313321,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313322,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313323,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313324,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313325,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313327,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313328,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313329,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313330,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313331,PostalCode,Beawar,LGD,774,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313332,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313333,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313334,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313341,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313342,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313601,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,313602,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,313603,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313604,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313701,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313702,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313703,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313704,PostalCode,Rajsamand,LGD,112,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11 -IN-PIN,313705,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,313706,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313708,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,313801,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313802,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313803,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313804,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313805,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313901,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313902,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313903,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313904,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313905,PostalCode,Salumbar,LGD,777,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,313906,PostalCode,Udaipur,LGD,117,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11 -IN-PIN,314001,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314011,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314021,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314022,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314023,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314024,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314025,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314026,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314027,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,314028,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314029,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314030,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314031,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314032,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,314034,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,314035,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314036,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314037,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314038,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314401,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314402,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314403,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314404,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314406,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314801,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,314804,PostalCode,Dungarpur,LGD,99,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11 -IN-PIN,321001,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321021,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321022,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,321023,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,321024,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,321025,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321026,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321028,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321201,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,321202,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321203,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321204,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,321205,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,321206,PostalCode,Deeg,LGD,767,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,321301,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321302,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321303,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321401,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321402,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321403,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321404,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321405,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321406,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321407,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321408,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321409,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321410,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321411,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321601,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321602,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321605,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,321606,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,321607,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,321608,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,321609,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,321610,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,321611,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,321612,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,321613,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,321614,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321615,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,321633,PostalCode,Alwar,LGD,87,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11 -IN-PIN,321642,PostalCode,Bharatpur,LGD,91,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11 -IN-PIN,322001,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322023,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322024,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322025,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322026,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322027,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322028,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322029,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322030,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322033,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322034,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322201,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322202,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322203,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322204,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322205,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322211,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322212,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322213,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322214,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322215,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322216,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322218,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322219,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322220,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322230,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322234,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322236,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322238,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322240,PostalCode,Dausa,LGD,97,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11 -IN-PIN,322241,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322242,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322243,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322249,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322251,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322252,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322254,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322255,PostalCode,Karauli,LGD,108,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11 -IN-PIN,322701,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322702,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322703,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,322704,PostalCode,Sawai Madhopur,LGD,113,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11 -IN-PIN,323001,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323021,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323022,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323023,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323024,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323025,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323026,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323301,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323304,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,323306,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,323307,PostalCode,Chittorgarh,LGD,95,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11 -IN-PIN,323601,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323602,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323603,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323613,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323614,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323615,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323616,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323801,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323802,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,323803,PostalCode,Bundi,LGD,94,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11 -IN-PIN,324001,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324002,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324003,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324004,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324005,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324006,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324007,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324008,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324009,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,324010,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325001,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325003,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325004,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325009,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325201,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325202,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325203,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325204,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325205,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325206,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325207,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325208,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325209,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325214,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325215,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325216,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325217,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325218,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325219,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325220,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325221,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325222,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325223,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325224,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,325601,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,325602,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,326001,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326021,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326022,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326023,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326033,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326034,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326035,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326036,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326037,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326038,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326039,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326501,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326502,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326512,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326513,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326514,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326515,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326516,PostalCode,Jhalawar,LGD,105,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11 -IN-PIN,326517,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,326518,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,326519,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,326520,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,326529,PostalCode,Baran,LGD,89,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11 -IN-PIN,326530,PostalCode,Kota,LGD,109,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11 -IN-PIN,327001,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327021,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327022,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327023,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327024,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327025,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327026,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327027,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327031,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327032,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327034,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327601,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327602,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327603,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327604,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327605,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327606,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,327801,PostalCode,Banswara,LGD,88,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11 -IN-PIN,328001,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328021,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328022,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328023,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328024,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328025,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328026,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328027,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328029,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328030,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328031,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,328041,PostalCode,Dholpur,LGD,98,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11 -IN-PIN,331001,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331021,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331022,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331023,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331024,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,331025,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,331026,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,331027,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,331028,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,331029,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331031,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331301,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331302,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331303,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331304,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331305,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331402,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331403,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331411,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331501,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331502,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331503,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331504,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331505,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331506,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331507,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331517,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331518,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331701,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331801,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,331802,PostalCode,Churu,LGD,96,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11 -IN-PIN,331803,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,331811,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,332001,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332002,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332021,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332023,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332024,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332025,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332026,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332027,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332028,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332029,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332030,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332031,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332041,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332042,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332301,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332302,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332303,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332304,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332305,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332307,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332311,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332312,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332315,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332316,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332317,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332318,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332401,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332402,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332403,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332404,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332405,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332406,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332411,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332601,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332602,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332603,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332701,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332702,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332703,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332705,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332706,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332707,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332708,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332709,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332710,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332711,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332712,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332713,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332714,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332715,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332716,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,332718,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332719,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332721,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332722,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332742,PostalCode,Sikar,LGD,114,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11 -IN-PIN,332746,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333001,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333010,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333011,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333012,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333020,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333021,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333022,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333023,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333024,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333025,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333026,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333027,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333028,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333029,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333030,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333031,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333032,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333033,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333034,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333035,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333036,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333041,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333042,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333053,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333055,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333302,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333303,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333304,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333305,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333307,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333308,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333501,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333502,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333503,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333504,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333514,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333515,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333516,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333517,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333701,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333702,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333704,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333705,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333707,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,333801,PostalCode,Jhunjhunu,LGD,106,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11 -IN-PIN,334001,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334021,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334022,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334023,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334024,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334201,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334202,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334302,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334303,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334305,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334402,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334601,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334602,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334603,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334604,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334801,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334802,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334803,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334804,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,334808,PostalCode,Bikaner,LGD,93,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11 -IN-PIN,335001,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335002,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335021,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335022,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335024,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335025,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335027,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335037,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335038,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335039,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335040,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335041,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335042,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335051,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335061,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335062,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335063,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335064,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335065,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335073,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335501,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335502,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335503,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335504,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335511,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335512,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335513,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335521,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335522,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335523,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335524,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335525,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335526,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335701,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335702,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335703,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335704,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335707,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335708,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335711,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335801,PostalCode,Hanumangarh,LGD,101,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11 -IN-PIN,335802,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335803,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335804,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335805,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,335901,PostalCode,Ganganagar,LGD,100,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11 -IN-PIN,341001,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341020,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341021,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341022,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341023,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341024,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341025,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341026,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341027,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341028,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341029,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341030,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341031,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341301,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341302,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341303,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341304,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341305,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341306,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341309,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341316,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341317,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341318,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341319,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341501,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341502,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341503,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341504,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341505,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341506,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341507,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341508,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341509,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341510,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341511,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341512,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341513,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341514,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341515,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,341516,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341517,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341518,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341519,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341520,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341533,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341542,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,341551,PostalCode,Didwana-Kuchaman,LGD,768,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,342001,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342005,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342008,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342012,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342013,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342014,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342015,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342021,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342022,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342023,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342024,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342025,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342027,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342028,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342029,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342030,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342037,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342301,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,342302,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342303,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342304,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342305,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342306,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342307,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,342308,PostalCode,Phalodi,LGD,772,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,342309,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342310,PostalCode,Phalodi,LGD,772,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,342311,PostalCode,Phalodi,LGD,772,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,342312,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342314,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342601,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342602,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342603,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342604,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342605,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342606,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342801,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342802,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342901,PostalCode,Jodhpur,LGD,107,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11 -IN-PIN,342902,PostalCode,Nagaur,LGD,110,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11 -IN-PIN,343001,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343002,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343021,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343022,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343023,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343024,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343025,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343027,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343028,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343029,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343030,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343032,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343039,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343040,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343041,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343042,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343048,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,343049,PostalCode,Jalore,LGD,104,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11 -IN-PIN,344001,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344011,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344012,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344021,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344022,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344024,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344025,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344026,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344027,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344031,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344032,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344033,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344034,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344035,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344037,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344043,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344044,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344501,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344502,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344701,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344702,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344703,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344704,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344705,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344706,PostalCode,Barmer,LGD,90,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11 -IN-PIN,344708,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344801,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,344802,PostalCode,Balotra,LGD,775,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11 -IN-PIN,345001,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345021,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345022,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345023,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345024,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345025,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345026,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345027,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345028,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345031,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345033,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,345034,PostalCode,Jaisalmer,LGD,103,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11 -IN-PIN,360002,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360003,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,360004,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360005,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360006,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360020,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360021,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360022,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360023,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360024,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360025,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360026,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360028,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360030,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360035,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,360040,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360045,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,360050,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,360055,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360060,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360070,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360110,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,360311,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360320,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360325,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360330,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360360,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360370,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360375,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360380,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360405,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360410,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360421,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360430,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360440,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360450,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360452,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360460,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360465,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,360470,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360480,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,360485,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,360490,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,360510,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,360515,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,360520,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,360530,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,360531,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,360540,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,360545,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -IN-PIN,360550,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -IN-PIN,360570,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -IN-PIN,360575,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -IN-PIN,360576,PostalCode,Porbandar,LGD,456,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11 -IN-PIN,360579,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,360590,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361001,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361002,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361006,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361007,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361010,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361011,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361012,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361013,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361110,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361120,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361130,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361140,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361160,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361162,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361170,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361210,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361220,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361230,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361240,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361250,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361280,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,361305,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361306,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361310,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361315,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361320,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361325,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361330,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361335,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361345,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361347,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,361350,PostalCode,Devbhumi Dwarka,LGD,674,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11 -IN-PIN,362001,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,362002,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362011,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362015,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362020,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362030,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362037,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362110,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362120,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362130,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362135,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362140,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362150,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362205,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362215,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362220,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362222,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362225,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362227,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362230,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362240,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362245,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362250,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362255,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362260,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362263,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362265,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362268,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362275,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362310,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362315,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362510,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362520,PostalCode,Diu,LGD,464,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11 -IN-PIN,362530,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362550,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362560,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362565,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362570,PostalCode,Diu,LGD,464,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11 -IN-PIN,362610,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362620,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362625,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362630,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362640,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362650,PostalCode,Junagadh,LGD,448,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11 -IN-PIN,362710,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,362720,PostalCode,Gir Somnath,LGD,675,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11 -IN-PIN,363020,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363030,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363040,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363110,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363115,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363310,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363320,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363330,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363351,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363410,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -IN-PIN,363421,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,363423,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,363427,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363430,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,363435,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363440,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363510,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363520,PostalCode,Rajkot,LGD,457,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11 -IN-PIN,363530,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363621,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363623,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363630,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363641,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363642,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363643,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363650,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363655,PostalCode,Jamnagar,LGD,447,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11 -IN-PIN,363660,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363670,PostalCode,Morbi,LGD,673,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11 -IN-PIN,363745,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363750,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363755,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363760,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363765,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363775,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,363780,PostalCode,Surendranagar,LGD,460,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11 -IN-PIN,364001,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364002,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364004,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364050,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364060,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364070,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364081,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364110,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364120,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364130,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364135,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364140,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364145,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364150,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364210,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364230,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364240,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364250,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364260,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364265,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364270,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,364275,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364280,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364290,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364295,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364310,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364313,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364320,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364330,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364505,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364510,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364515,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,364521,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,364522,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,364525,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,364530,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,364710,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -IN-PIN,364720,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -IN-PIN,364730,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,364740,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364750,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -IN-PIN,364760,PostalCode,Bhavnagar,LGD,443,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11 -IN-PIN,364765,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -IN-PIN,365220,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365410,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365421,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365430,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365435,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365440,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365450,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365455,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365456,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365460,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365480,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365535,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365540,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365541,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365550,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365555,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365560,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365601,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365610,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365620,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365630,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365635,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365640,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365645,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365650,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,365730,PostalCode,Amreli,LGD,439,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11 -IN-PIN,370001,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370015,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370020,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370030,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370040,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370105,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370110,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370115,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370130,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370135,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370140,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370145,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370150,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370155,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370160,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370165,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370201,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370205,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370210,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370405,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370410,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370415,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370421,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370425,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370427,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370430,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370435,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370445,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370450,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370455,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370460,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370465,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370475,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370485,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370490,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370510,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370601,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370605,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370610,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370615,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370620,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370625,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370627,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370630,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370640,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370645,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370650,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370655,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370660,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370665,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370670,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,370675,PostalCode,Kachchh,LGD,449,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11 -IN-PIN,380001,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380005,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380006,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380007,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380009,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380013,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380015,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380016,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380021,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380022,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380023,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380026,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380028,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380049,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380050,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380051,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380052,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380054,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380055,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380058,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380059,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380060,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,380061,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382007,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382016,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382028,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382042,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382055,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382110,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382115,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382120,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382130,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382140,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382145,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382150,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382170,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382210,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382213,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382220,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382225,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382230,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382240,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382245,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382250,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382255,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -IN-PIN,382260,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382265,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382305,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382308,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382315,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382320,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382321,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382330,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382345,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382355,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382405,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382415,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382418,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382421,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382422,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382423,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382424,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382425,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382426,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382427,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382428,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382430,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382433,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382435,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382443,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382445,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382449,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382450,PostalCode,Botad,LGD,676,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11 -IN-PIN,382455,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382460,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382463,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382465,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382470,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382475,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382480,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382481,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382610,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382620,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382630,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382640,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382650,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382721,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382722,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,382725,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382729,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382735,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382740,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382810,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382835,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382845,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,382855,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,383001,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383002,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383010,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383030,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383110,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383120,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383205,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383210,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383215,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383220,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383225,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383230,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383235,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383240,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383245,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383246,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383250,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383251,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383255,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383260,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383270,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383275,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383276,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383305,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383307,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383310,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383315,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383316,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383317,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383320,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383325,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383330,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383335,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383340,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383345,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383350,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383355,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383410,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383421,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383422,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383430,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383434,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383440,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383450,PostalCode,Arvalli,LGD,672,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11 -IN-PIN,383460,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,383462,PostalCode,Sabar Kantha,LGD,458,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11 -IN-PIN,384001,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384002,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384003,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384005,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384110,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384120,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384130,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384135,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384140,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384151,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384160,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384170,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384220,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384221,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384225,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384229,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384230,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384240,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384241,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384245,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384246,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384255,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384260,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384265,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384266,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384272,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384275,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384285,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384290,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,384305,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384310,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384315,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384320,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384325,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384330,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384335,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384340,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384345,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384355,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384360,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384410,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384412,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384415,PostalCode,Ahmedabad,LGD,438,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11 -IN-PIN,384421,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384430,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384435,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384440,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384441,PostalCode,Gandhinagar,LGD,446,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11 -IN-PIN,384445,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384450,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384455,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384460,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384465,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384470,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384515,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384520,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384530,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384540,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384550,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384560,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384565,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,384570,PostalCode,Mahesana,LGD,451,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11 -IN-PIN,385001,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385010,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385110,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385120,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385130,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385135,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385210,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385310,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385320,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385330,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -IN-PIN,385340,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,385350,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,385360,PostalCode,Patan,LGD,455,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11 -IN-PIN,385410,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385421,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385505,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385510,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385515,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385520,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385530,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385535,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385540,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385545,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385550,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385555,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385560,PostalCode,Banas Kantha,LGD,441,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11 -IN-PIN,385565,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -IN-PIN,385566,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -IN-PIN,385570,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -IN-PIN,385575,PostalCode,Vav-Tharad,LGD,789,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11 -IN-PIN,387001,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387002,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387110,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387115,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,387120,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387130,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387210,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,387220,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387230,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387240,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,387305,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387310,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,387315,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387320,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387325,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387330,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387335,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387340,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387345,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,387350,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387355,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387360,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387365,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387370,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387375,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,387380,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,387430,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387510,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387520,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387530,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,387540,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387550,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387560,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387570,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387610,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387620,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387630,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387635,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387640,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387650,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,387710,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,388001,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388110,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388130,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388140,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388150,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388160,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388170,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388180,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388205,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388210,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388215,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388220,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388225,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,388230,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,388235,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388245,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,388250,PostalCode,Kheda,LGD,450,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11 -IN-PIN,388255,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388260,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,388265,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,388270,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,388305,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388307,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388310,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388315,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388320,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388325,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388330,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388335,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388340,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388345,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388350,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388355,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388360,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388365,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388370,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388410,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388421,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388430,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388440,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388450,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388460,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388465,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388470,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388480,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388510,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388520,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388530,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388540,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388543,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388545,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388550,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388560,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388570,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388580,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388590,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388610,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388620,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388625,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388630,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388640,PostalCode,Anand,LGD,440,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11 -IN-PIN,388710,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,388713,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389002,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389110,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,389115,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389120,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389130,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389140,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389146,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389151,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389152,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389154,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389155,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389160,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389170,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389172,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389175,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389180,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389210,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,389220,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,389230,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,389235,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,389250,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,389260,PostalCode,Mahisagar,LGD,669,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11 -IN-PIN,389310,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389320,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389330,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389350,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389370,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,389380,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389382,PostalCode,Dahod,LGD,445,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11 -IN-PIN,389390,PostalCode,Panch Mahals,LGD,454,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11 -IN-PIN,390001,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390003,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390004,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390009,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390010,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390011,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390012,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390013,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390014,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390019,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390020,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390022,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390023,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390024,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,390025,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391101,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391105,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391107,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391110,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391115,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391120,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -IN-PIN,391125,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391130,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391135,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391140,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391145,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391150,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391152,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391156,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391160,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391165,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391168,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391170,PostalCode,Chhotaudepur,LGD,668,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11 -IN-PIN,391210,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391220,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391240,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391243,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391244,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391250,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391310,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391320,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391330,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391340,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391350,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391410,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391421,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391430,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391440,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391445,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391450,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391510,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391520,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391530,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391740,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391745,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391760,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391761,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391770,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391774,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391775,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391776,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391780,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,391810,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392001,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392011,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392012,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392020,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392025,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392030,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392035,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392040,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392110,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392130,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392140,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392155,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392180,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,392210,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,392220,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,392310,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,393010,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,393020,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,393025,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -IN-PIN,393030,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,393040,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -IN-PIN,393041,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -IN-PIN,393050,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -IN-PIN,393105,PostalCode,Vadodara,LGD,461,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11 -IN-PIN,393110,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,393115,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,393125,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,393130,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,393135,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,393140,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -IN-PIN,393151,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -IN-PIN,393155,PostalCode,Narmada,LGD,452,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11 -IN-PIN,394101,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394105,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394107,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394110,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,394112,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394115,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,394116,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,394120,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,394125,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,394130,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394140,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394150,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394155,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394160,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394163,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394170,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394180,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394185,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394190,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394210,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394221,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394230,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394235,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394240,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394246,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394248,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394250,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394270,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394305,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394310,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394315,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394317,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394320,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394325,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394327,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394330,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394335,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394340,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394345,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394350,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394352,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394355,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394370,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394375,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394380,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394405,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394410,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394421,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394430,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394440,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394445,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394510,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394516,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394517,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394520,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394530,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394540,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394550,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394601,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394620,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394630,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394635,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394640,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394650,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394651,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394652,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394655,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394660,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394670,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394680,PostalCode,Tapi,LGD,641,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11 -IN-PIN,394690,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,394710,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -IN-PIN,394715,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -IN-PIN,394716,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -IN-PIN,394720,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -IN-PIN,394730,PostalCode,Dangs,LGD,444,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11 -IN-PIN,394810,PostalCode,Bharuch,LGD,442,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11 -IN-PIN,395001,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395002,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395003,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395004,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395005,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395006,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395007,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395008,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395009,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395010,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395011,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395012,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395013,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395017,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,395023,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,396001,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396007,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396020,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396030,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396035,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396040,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396045,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396050,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396051,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396055,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396060,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396065,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396066,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396067,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396105,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396110,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396115,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396120,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396125,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396126,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396130,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396135,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396140,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396145,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396150,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396155,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396165,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396170,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396180,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396185,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396191,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396193,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396195,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396210,PostalCode,Daman,LGD,463,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11 -IN-PIN,396215,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396220,PostalCode,Dadra And Nagar Haveli,LGD,465,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11 -IN-PIN,396230,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396235,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396240,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396310,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396321,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396325,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396350,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396360,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396370,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396375,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396380,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396385,PostalCode,Valsad,LGD,462,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11 -IN-PIN,396403,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396406,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396409,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396412,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396415,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396418,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396421,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396427,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396430,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396433,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396436,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396439,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396445,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396450,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396460,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396463,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396466,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396469,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396472,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396475,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396510,PostalCode,Surat,LGD,459,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11 -IN-PIN,396521,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396530,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396540,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396560,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396570,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396580,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,396590,PostalCode,Navsari,LGD,453,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11 -IN-PIN,400042,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400043,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400049,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400050,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400051,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400052,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400053,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400057,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400059,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400060,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400061,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400063,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400064,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400065,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400066,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400067,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400068,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400069,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400070,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400071,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400072,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400074,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400076,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400078,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400079,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400080,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400081,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400083,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400086,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400087,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400088,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400091,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400092,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400093,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400095,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400096,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400097,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400098,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400099,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400101,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400102,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400103,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400104,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400601,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400602,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400603,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400605,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400606,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400607,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400608,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400612,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400615,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400701,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400702,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,400703,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,400704,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,400706,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400707,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,400708,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400709,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,400710,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,401101,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401102,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401103,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401106,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,401107,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,401201,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401202,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401203,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401204,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401206,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,401207,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401208,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401301,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401302,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401303,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401304,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401305,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,401401,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401402,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401403,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401404,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401405,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401501,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401502,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401503,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401504,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401601,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401602,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401603,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401604,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401605,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401606,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401607,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401608,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401701,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401702,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,401703,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,402101,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402102,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402103,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402104,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402105,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402106,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402107,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402108,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402109,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402110,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402111,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402112,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402113,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402114,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402115,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402116,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402117,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402120,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402122,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402126,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402201,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402202,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402203,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402204,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402207,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402208,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402209,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402301,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402302,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402303,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402304,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402305,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402306,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402307,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402308,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402309,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402401,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402402,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402403,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,402404,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,403001,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403002,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403005,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403006,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403101,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403102,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403103,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403104,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403105,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403106,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403107,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403108,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403110,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403114,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403115,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403202,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403204,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403401,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403402,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403403,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403404,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403406,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403410,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403501,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403502,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403503,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403504,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403505,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403506,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403507,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403508,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403509,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403510,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403511,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403512,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403513,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403515,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403516,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403517,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403523,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403524,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403527,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403529,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403530,PostalCode,North Goa,LGD,551,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11 -IN-PIN,403601,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403701,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403702,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403703,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403704,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403705,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403706,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403707,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403708,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403709,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403710,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403711,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403712,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403713,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403714,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403715,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403716,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403717,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403718,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403719,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403720,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403721,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403722,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403723,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403724,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403725,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403728,PostalCode,Kushavati,LGD,793,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11 -IN-PIN,403731,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403801,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403803,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,403806,PostalCode,South Goa,LGD,552,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11 -IN-PIN,410101,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410201,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410202,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410203,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410205,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410206,PostalCode,Mumbai Suburban,LGD,483,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11 -IN-PIN,410207,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410208,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410209,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410210,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410216,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410218,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410220,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410221,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410222,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,410301,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410401,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410402,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410403,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410405,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410406,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410501,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410502,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410503,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410504,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410505,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410506,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410507,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410508,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410509,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410510,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410511,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410512,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410513,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410515,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,410516,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411001,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411006,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411012,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411014,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411015,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411017,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411019,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411020,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411021,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411023,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411024,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411025,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411026,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411027,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411028,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411031,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411033,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411035,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411036,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411038,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411040,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411041,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411043,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411044,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411045,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411046,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411047,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411048,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411051,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411052,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411057,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411058,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411060,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411061,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411062,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411067,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411068,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411069,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411070,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,411073,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412101,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412102,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412103,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412104,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412105,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412106,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412107,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412108,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412109,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412110,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412112,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412115,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412201,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412202,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412203,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412204,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412205,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412206,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412207,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412208,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412209,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412210,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412211,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412212,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412213,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412214,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412215,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412216,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412218,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412219,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412220,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412301,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412303,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412304,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412305,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412306,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412307,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412308,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412311,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412312,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412401,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412402,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412403,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412404,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412405,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412406,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412408,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412409,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412411,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412412,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,412801,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,412802,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,412803,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,412804,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,412805,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,412806,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,413001,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413002,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413004,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413006,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413007,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413008,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413101,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413102,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413103,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413104,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413105,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413106,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413107,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413108,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413109,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413110,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413111,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413112,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413113,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413114,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413115,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413116,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413118,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413120,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413130,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413132,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413133,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,413201,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413202,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413203,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413204,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413205,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413206,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413207,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,413208,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413209,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413210,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413211,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413212,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413213,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413214,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413215,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413216,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413217,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413218,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413219,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413220,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413221,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413222,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413223,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413224,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413226,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413227,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413228,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413229,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,413248,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413249,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,413250,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413251,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413252,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413253,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413255,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413301,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413302,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413303,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413304,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413305,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413306,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413307,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413308,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413309,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413310,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413314,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413315,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413317,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413319,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413322,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413324,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413401,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413402,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413403,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413404,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413405,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413406,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413409,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413410,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413411,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413412,PostalCode,Solapur,LGD,496,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11 -IN-PIN,413502,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413503,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413504,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413505,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413506,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413507,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413508,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413509,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413510,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413511,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413512,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413513,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413514,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413515,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413516,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413517,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413518,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413519,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413520,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413521,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413522,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413523,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413524,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413525,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413526,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413527,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413528,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413529,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413530,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413531,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413532,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413534,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413544,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413581,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413582,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413601,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413602,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413603,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413604,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413605,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413606,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413607,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,413608,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413623,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413624,PostalCode,Dharashiv,LGD,488,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11 -IN-PIN,413701,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413702,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413703,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413704,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413705,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413706,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413707,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413708,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413709,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413710,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413711,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413712,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413713,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413714,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413715,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413716,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413717,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413718,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413719,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413720,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413721,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413722,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413723,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413725,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413726,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413728,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413736,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413737,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413738,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413739,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,413801,PostalCode,Pune,LGD,490,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11 -IN-PIN,414001,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414002,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414003,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414005,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414006,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414101,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414102,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414103,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414105,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414106,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414111,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414113,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414201,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414202,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,414203,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,414204,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,414205,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,414208,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,414301,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414302,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414303,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414304,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414305,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414306,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414401,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414402,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414403,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414501,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414502,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414503,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414504,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414505,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414601,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414602,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414603,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414604,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414605,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414606,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414607,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414609,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,414701,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,415001,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415002,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415003,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415004,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415010,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415011,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415012,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415013,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415014,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415015,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415019,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415020,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415021,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415022,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415023,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415101,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,415102,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415103,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415104,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415105,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415106,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415107,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415108,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415109,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415110,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415111,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415112,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415114,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415115,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415116,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415122,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415124,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415202,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415203,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415205,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415206,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415207,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415208,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415209,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415211,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415212,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415213,PostalCode,Raigad,LGD,491,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11 -IN-PIN,415214,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415301,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415302,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415303,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415304,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415305,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415306,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415307,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415308,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415309,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415310,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415311,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415312,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415313,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415315,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415401,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415402,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415403,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415404,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415405,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415406,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415407,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415408,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415409,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415410,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415411,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415412,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415413,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415414,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415415,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,415501,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415502,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415503,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415504,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415505,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415506,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415507,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415508,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415509,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415510,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415511,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415512,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415513,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415514,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415515,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415516,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415517,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415518,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415519,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415520,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415521,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415522,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415523,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415524,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415525,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415526,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415527,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415528,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415530,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415536,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415537,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415538,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415539,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415540,PostalCode,Satara,LGD,494,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11 -IN-PIN,415601,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415602,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415603,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415604,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415605,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415606,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415607,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415608,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415609,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415610,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415611,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415612,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415613,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415614,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415615,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415616,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415617,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415619,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415620,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415621,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415626,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415628,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415629,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415634,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415637,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415639,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415640,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415641,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415643,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415701,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415702,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415703,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415705,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415706,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415708,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415709,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415710,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415711,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415712,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415713,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415714,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415715,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415716,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415717,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415718,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415719,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415720,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415722,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415724,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415726,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415727,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415728,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415729,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415730,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415801,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415802,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415803,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415804,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415805,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415806,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,415807,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416001,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416004,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416005,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416006,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416010,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416011,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416013,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416101,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416102,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416103,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416104,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416105,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416106,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416107,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416108,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416109,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416110,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416111,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416112,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416113,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416114,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416115,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416118,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416119,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416120,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416121,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416122,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416138,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416143,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416145,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416201,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416202,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416203,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416204,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416205,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416206,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416207,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416208,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416209,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416210,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416211,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416212,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416213,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416214,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416215,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416216,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416218,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416219,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416220,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416221,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416223,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416229,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416230,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416231,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416232,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416234,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416235,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416236,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416301,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416302,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416303,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416304,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416305,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416306,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416307,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416308,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416309,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416310,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416311,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416312,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416313,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416314,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416315,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416316,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416401,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416402,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416403,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416404,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416405,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416406,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416407,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416408,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416409,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416410,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416411,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416412,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416413,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416414,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416415,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416416,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416417,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416418,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416419,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416420,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416436,PostalCode,Sangli,LGD,493,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11 -IN-PIN,416501,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416502,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416503,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416504,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416505,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416506,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416507,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416508,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416509,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416510,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416511,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416512,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416513,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416514,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416515,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416516,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416517,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416518,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416519,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416520,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416521,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416522,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416523,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416524,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416525,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416526,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416527,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416528,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416529,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416531,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416534,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416549,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416550,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416551,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416552,PostalCode,Kolhapur,LGD,480,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11 -IN-PIN,416601,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416602,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416603,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416604,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416605,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416606,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416608,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416609,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416610,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416611,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416612,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416613,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416614,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416615,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416616,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416620,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416623,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416626,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416628,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416630,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416632,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416701,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416702,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416703,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416704,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416705,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416707,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416709,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416712,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416713,PostalCode,Ratnagiri,LGD,492,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11 -IN-PIN,416801,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416803,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416804,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416805,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416806,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416807,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416810,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416811,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416812,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,416813,PostalCode,Sindhudurg,LGD,495,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11 -IN-PIN,421002,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421101,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421102,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421103,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421201,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421202,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421203,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421204,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421207,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421301,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421302,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421303,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,421305,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421306,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421308,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421311,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421312,PostalCode,Palghar,LGD,665,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11 -IN-PIN,421401,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421402,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421403,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421501,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421502,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421503,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421505,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421506,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421601,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421602,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,421605,PostalCode,Thane,LGD,497,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11 -IN-PIN,422001,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422003,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422004,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422006,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422007,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422009,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422010,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422013,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422101,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422102,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422103,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422104,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422105,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422112,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422113,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422201,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422202,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422203,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422204,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422205,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422206,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422207,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422208,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422209,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422210,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422211,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422212,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422213,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422214,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422215,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422222,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422301,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422302,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422303,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422304,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422305,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422306,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422308,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422401,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422402,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422403,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422502,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422601,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422602,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422603,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422604,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422605,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422606,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,422608,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422610,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422611,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422620,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,422622,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423101,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423102,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423104,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423105,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423106,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423107,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423108,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423109,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423110,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423111,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423117,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423201,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423202,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423203,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423204,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423205,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423206,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423208,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423212,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423213,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423301,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423302,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423303,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423401,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423402,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423403,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423501,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423502,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,423601,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423602,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423603,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423604,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423605,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423607,PostalCode,Ahilyanagar,LGD,466,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11 -IN-PIN,423701,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,423702,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,423703,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,424001,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424002,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424005,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424006,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424101,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424102,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424103,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424104,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424105,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424106,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424107,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424108,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424109,PostalCode,Nashik,LGD,487,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11 -IN-PIN,424119,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424201,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424202,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424203,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424204,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424205,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424206,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424207,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424208,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,424301,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424302,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424303,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424304,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424305,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424306,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424307,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424308,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424309,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424310,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424311,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,424318,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425002,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425003,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425101,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425102,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425103,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425104,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425105,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425107,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425108,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425109,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425110,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425111,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425112,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425113,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425114,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425115,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425116,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425201,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425203,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425301,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425302,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425303,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425304,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425305,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425306,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425307,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425308,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425309,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425310,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425311,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425327,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425401,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425402,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425403,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425404,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425405,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425406,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425407,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425408,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425409,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425410,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425411,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425412,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425413,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425414,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425415,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425416,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425417,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425418,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425419,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425420,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425421,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425422,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425423,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425424,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425426,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425427,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425428,PostalCode,Dhule,LGD,474,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11 -IN-PIN,425432,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425442,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425444,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425452,PostalCode,Nandurbar,LGD,486,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11 -IN-PIN,425501,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425502,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425503,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425504,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425505,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425506,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425507,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425508,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,425524,PostalCode,Jalgaon,LGD,478,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11 -IN-PIN,431001,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431002,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431004,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431005,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431006,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431007,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431008,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431010,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431101,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431102,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431103,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431104,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431105,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431107,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431109,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431110,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431111,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431112,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431113,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431114,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431115,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431116,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431117,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431118,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431120,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431121,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431122,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431123,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431124,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431125,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431126,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431127,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431128,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431129,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431130,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431131,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431132,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431133,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431134,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431135,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431136,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431137,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431142,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431143,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431144,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431147,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431148,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431150,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431151,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431152,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431153,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431154,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431202,PostalCode,Chhatrapati Sambhajinagar,LGD,469,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11 -IN-PIN,431204,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431205,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431206,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431207,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431208,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431209,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431211,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431212,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431213,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431214,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431215,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431401,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431402,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431501,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431502,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431503,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431504,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431505,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431506,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431507,PostalCode,Jalna,LGD,479,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11 -IN-PIN,431508,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431509,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431510,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431511,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431512,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431513,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431514,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431515,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431516,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431517,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431518,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431519,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431521,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431522,PostalCode,Latur,LGD,481,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11 -IN-PIN,431523,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431530,PostalCode,Beed,LGD,470,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11 -IN-PIN,431536,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431537,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431540,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431541,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431542,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431601,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431602,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431603,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431604,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431605,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431606,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431701,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431702,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431703,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431704,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431705,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431707,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431708,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431709,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431710,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431711,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431712,PostalCode,Hingoli,LGD,477,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11 -IN-PIN,431713,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431714,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431715,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431716,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431717,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431718,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431719,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431720,PostalCode,Parbhani,LGD,489,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11 -IN-PIN,431721,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431722,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431723,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431724,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431731,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431736,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431741,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431742,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431743,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431745,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431746,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431750,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431801,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431802,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431803,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431804,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431805,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431806,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431807,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431808,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431809,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431810,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,431811,PostalCode,Nanded,LGD,485,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11 -IN-PIN,440001,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440002,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440003,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440005,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440007,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440008,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440010,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440012,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440013,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440014,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440018,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440022,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440023,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440024,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440025,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440026,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440027,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440030,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440033,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440034,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440035,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440036,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,440037,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441001,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441002,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441101,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441102,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441103,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441104,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441105,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441106,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441107,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441108,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441109,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441110,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441111,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441112,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441113,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441122,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441123,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441201,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441202,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441203,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441204,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441205,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441206,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441207,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,441208,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,441209,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,441210,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441212,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441214,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441215,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441217,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,441221,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441222,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441223,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441224,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441225,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441226,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,441301,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441302,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441303,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441304,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441305,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441306,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441401,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441404,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441501,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441502,PostalCode,Nagpur,LGD,484,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11 -IN-PIN,441601,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441614,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441701,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441702,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441801,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441802,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441803,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441804,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441805,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441806,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441807,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -IN-PIN,441809,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441901,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -IN-PIN,441902,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -IN-PIN,441903,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441904,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441905,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441906,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441907,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441908,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441909,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441910,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441911,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -IN-PIN,441912,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441913,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441914,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441915,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,441916,PostalCode,Gondia,LGD,476,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11 -IN-PIN,441924,PostalCode,Bhandara,LGD,471,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11 -IN-PIN,442001,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442101,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442102,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442104,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442105,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442106,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442107,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442111,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442201,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442202,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442203,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442301,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442302,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442304,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442305,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442306,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442307,PostalCode,Wardha,LGD,498,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11 -IN-PIN,442401,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442402,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442403,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442404,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442406,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442503,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442504,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442505,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442507,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442603,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442604,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442605,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442606,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442701,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442702,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442703,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442704,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442705,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442707,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442709,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442710,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,442902,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442903,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442904,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442905,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442906,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442907,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442908,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442914,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442916,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442917,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442918,PostalCode,Chandrapur,LGD,473,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11 -IN-PIN,442919,PostalCode,Gadchiroli,LGD,475,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11 -IN-PIN,443001,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443002,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443101,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443102,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443103,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443104,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443106,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443112,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443201,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443202,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443203,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443204,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443206,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443301,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443302,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443303,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443304,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443308,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443401,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443402,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443403,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,443404,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444001,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444002,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444003,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444004,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444005,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444006,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444101,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444102,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444103,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444104,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444105,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444106,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444107,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444108,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444109,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444110,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444111,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444117,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444126,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444201,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444202,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444203,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444204,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444301,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444302,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444303,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444304,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444306,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444311,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444312,PostalCode,Buldhana,LGD,472,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11 -IN-PIN,444401,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444402,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444403,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -IN-PIN,444404,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -IN-PIN,444405,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444407,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444409,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -IN-PIN,444501,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444502,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444503,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444504,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -IN-PIN,444505,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -IN-PIN,444506,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -IN-PIN,444507,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -IN-PIN,444510,PostalCode,Washim,LGD,499,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11 -IN-PIN,444511,PostalCode,Akola,LGD,467,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11 -IN-PIN,444602,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444604,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444605,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444606,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444701,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444702,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444704,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444705,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444706,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444707,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444708,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444709,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444710,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444711,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444717,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444719,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444720,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444723,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444801,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444802,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444803,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444804,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444805,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444806,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444807,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444808,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444809,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444810,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444813,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444901,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444902,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444903,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444904,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444905,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444906,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444907,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444908,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,444915,PostalCode,Amravati,LGD,468,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11 -IN-PIN,445001,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445002,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445101,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445102,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445103,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445105,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445106,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445109,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445110,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445201,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445202,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445203,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445204,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445205,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445206,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445207,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445209,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445210,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445211,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445215,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445216,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445230,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445301,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445302,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445303,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445304,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445305,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445306,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445307,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445308,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445324,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445401,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,445402,PostalCode,Yavatmal,LGD,500,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11 -IN-PIN,450001,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,450051,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450110,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450112,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450114,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450116,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450117,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450119,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450221,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -IN-PIN,450331,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -IN-PIN,450332,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -IN-PIN,450337,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450445,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -IN-PIN,450551,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450554,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450661,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -IN-PIN,450771,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450881,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,450991,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,451001,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451111,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451113,PostalCode,Khargone (West Nimar),LGD,414,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -IN-PIN,451115,PostalCode,Khargone (West Nimar),LGD,414,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -IN-PIN,451220,PostalCode,Khargone (West Nimar),LGD,414,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -IN-PIN,451221,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451224,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451225,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451228,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451331,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -IN-PIN,451332,PostalCode,Khandwa (East Nimar),LGD,405,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11 -IN-PIN,451335,PostalCode,Khargone (West Nimar),LGD,414,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11 -IN-PIN,451440,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451441,PostalCode,Burhanpur,LGD,397,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11 -IN-PIN,451442,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451447,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451449,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451551,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451556,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451660,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451666,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451770,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,451881,PostalCode,Barwani,LGD,393,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11 -IN-PIN,452001,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452002,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452003,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452006,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452007,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452010,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452011,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452012,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452015,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452016,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,452020,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453001,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453111,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453112,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453115,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453220,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453331,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453441,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453551,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453552,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453555,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453661,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,453771,PostalCode,Indore,LGD,410,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11 -IN-PIN,454001,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454010,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454111,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454116,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454221,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454331,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454335,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454441,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454446,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454449,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454552,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454660,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454665,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454773,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454774,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,454775,PostalCode,Dhar,LGD,403,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11 -IN-PIN,455001,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455111,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455115,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455116,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455118,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455221,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455223,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455227,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455332,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455336,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455339,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455440,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,455459,PostalCode,Dewas,LGD,402,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11 -IN-PIN,456001,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456003,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456006,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456010,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456221,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456222,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456224,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456313,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456331,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456335,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456337,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456440,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456441,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -IN-PIN,456443,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456550,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456661,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456664,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456665,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456668,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456770,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456771,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,456776,PostalCode,Ujjain,LGD,435,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11 -IN-PIN,457001,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457114,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457118,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457119,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457222,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457226,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457331,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457333,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457336,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457339,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457340,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457441,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457550,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457555,PostalCode,Ratlam,LGD,423,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11 -IN-PIN,457661,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -IN-PIN,457770,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -IN-PIN,457772,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -IN-PIN,457773,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -IN-PIN,457775,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -IN-PIN,457777,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -IN-PIN,457779,PostalCode,Jhabua,LGD,412,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11 -IN-PIN,457882,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -IN-PIN,457885,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -IN-PIN,457887,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -IN-PIN,457888,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -IN-PIN,457990,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -IN-PIN,457993,PostalCode,Alirajpur,LGD,639,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11 -IN-PIN,458001,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458002,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458110,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458113,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458116,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458118,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458220,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458226,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458228,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458330,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458336,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458339,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458389,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458441,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458468,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458470,PostalCode,Neemuch,LGD,419,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11 -IN-PIN,458553,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458556,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458558,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458664,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458667,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458669,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458771,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458775,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458778,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458880,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458883,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458888,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458895,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,458990,PostalCode,Mandsaur,LGD,416,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11 -IN-PIN,460001,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460004,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460110,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460220,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460225,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460330,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460440,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460443,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460447,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460449,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460551,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460553,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460554,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460557,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460661,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460663,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460665,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460666,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,460668,PostalCode,Betul,LGD,394,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11 -IN-PIN,461001,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461005,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461110,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461111,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461115,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461116,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461122,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461221,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461223,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461228,PostalCode,Harda,LGD,408,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -IN-PIN,461331,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,461335,PostalCode,Harda,LGD,408,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -IN-PIN,461441,PostalCode,Harda,LGD,408,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11 -IN-PIN,461446,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461551,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461661,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461668,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461771,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461775,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461881,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,461990,PostalCode,Narmadapuram,LGD,409,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11 -IN-PIN,462001,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462010,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462016,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462022,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462023,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462026,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462030,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462036,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462037,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462038,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462039,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462040,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462041,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462042,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462043,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462044,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462045,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462046,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462047,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462101,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,462120,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,463106,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,463111,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,464001,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464111,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464113,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464114,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464220,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464221,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464224,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464226,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464228,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464240,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,464258,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464331,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464334,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464337,PostalCode,Vidisha,LGD,437,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11 -IN-PIN,464551,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464570,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464573,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464651,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464661,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464665,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464668,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464671,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464672,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464770,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464774,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464881,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464884,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464886,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464986,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464990,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,464993,PostalCode,Raisen,LGD,421,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11 -IN-PIN,465001,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465106,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465110,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465113,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465116,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465118,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465220,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465223,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465226,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465227,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465230,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -IN-PIN,465333,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465335,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465337,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465339,PostalCode,Shajapur,LGD,430,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11 -IN-PIN,465441,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -IN-PIN,465445,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -IN-PIN,465447,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -IN-PIN,465449,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -IN-PIN,465550,PostalCode,Agar-Malwa,LGD,667,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11 -IN-PIN,465661,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465667,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465669,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465674,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465677,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465679,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465680,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465683,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465685,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465687,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465689,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465691,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,465693,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,465697,PostalCode,Rajgarh,LGD,422,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11 -IN-PIN,466001,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466111,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466113,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466114,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466115,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466116,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466118,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466120,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466125,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466221,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466331,PostalCode,Bhopal,LGD,396,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11 -IN-PIN,466445,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466446,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466651,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466661,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,466665,PostalCode,Sehore,LGD,427,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11 -IN-PIN,470001,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470002,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470004,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470021,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470051,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470113,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470115,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470117,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470118,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470119,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470120,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470125,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470221,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470223,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470226,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470227,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470228,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470229,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470232,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470235,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470335,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470337,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470339,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470340,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470441,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470442,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470661,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470663,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470664,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470666,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470669,PostalCode,Sagar,LGD,425,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11 -IN-PIN,470672,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470673,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470675,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470771,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470772,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470775,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470880,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,470881,PostalCode,Damoh,LGD,400,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11 -IN-PIN,471001,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471101,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471105,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471111,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471201,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471301,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471311,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471313,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471315,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471318,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471405,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471408,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471411,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471501,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471510,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471515,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471516,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471525,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471606,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,471625,PostalCode,Chhatarpur,LGD,398,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11 -IN-PIN,472001,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -IN-PIN,472005,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -IN-PIN,472010,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -IN-PIN,472101,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -IN-PIN,472111,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,472115,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -IN-PIN,472118,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -IN-PIN,472221,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -IN-PIN,472246,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -IN-PIN,472331,PostalCode,Tikamgarh,LGD,434,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11 -IN-PIN,472336,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -IN-PIN,472337,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -IN-PIN,472339,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -IN-PIN,472442,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -IN-PIN,472445,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -IN-PIN,472447,PostalCode,Niwari,LGD,722,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11 -IN-PIN,473001,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473101,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473105,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473110,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473111,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473113,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473115,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473118,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473222,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473226,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473249,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473287,PostalCode,Guna,LGD,406,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11 -IN-PIN,473330,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473331,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473332,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473335,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473440,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473443,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473444,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473445,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473446,PostalCode,Ashoknagar,LGD,391,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11 -IN-PIN,473551,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473585,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473660,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473662,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473665,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473770,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473774,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473775,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473781,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473793,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473865,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473880,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473885,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473990,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,473995,PostalCode,Shivpuri,LGD,432,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11 -IN-PIN,474001,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,474002,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,474003,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,474004,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,474005,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,474006,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,474010,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,474020,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,475001,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,475002,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,475005,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,475110,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,475115,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,475220,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,475330,PostalCode,Gwalior,LGD,407,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11 -IN-PIN,475335,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,475336,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,475661,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,475671,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,475673,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,475675,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,475682,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,475685,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,475686,PostalCode,Datia,LGD,401,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11 -IN-PIN,476001,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476111,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476115,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476134,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476219,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476221,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476224,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476228,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476229,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476332,PostalCode,Sheopur,LGD,431,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -IN-PIN,476335,PostalCode,Sheopur,LGD,431,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -IN-PIN,476337,PostalCode,Sheopur,LGD,431,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -IN-PIN,476339,PostalCode,Sheopur,LGD,431,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11 -IN-PIN,476355,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,476444,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,476554,PostalCode,Morena,LGD,417,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11 -IN-PIN,477001,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477105,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477111,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477116,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477117,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477222,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477227,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477331,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477332,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477333,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477335,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477441,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477445,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477446,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477447,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477449,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477555,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477557,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,477660,PostalCode,Bhind,LGD,395,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11 -IN-PIN,480001,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480003,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480105,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,480106,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,480107,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480108,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480109,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,480110,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480111,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480112,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480115,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480221,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480223,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480224,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480331,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480334,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,480337,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,480338,PostalCode,Pandhurna,LGD,785,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,480441,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480449,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480551,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480555,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480557,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480559,PostalCode,Chhindwara,LGD,399,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11 -IN-PIN,480661,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480667,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480771,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480880,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480881,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480882,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480884,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480886,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480887,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480888,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480990,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480991,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480994,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480996,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480997,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,480999,PostalCode,Seoni,LGD,428,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11 -IN-PIN,481001,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481051,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481102,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481105,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481111,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481115,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481116,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481117,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481222,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481224,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481226,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481331,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481332,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481335,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481337,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481441,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481445,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481449,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481551,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481556,PostalCode,Balaghat,LGD,392,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11 -IN-PIN,481661,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481662,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481663,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481664,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481665,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481666,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481668,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481672,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481768,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481771,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481776,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481778,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481879,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481880,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481882,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481883,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481884,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481885,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481990,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481995,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,481996,PostalCode,Dindori,LGD,404,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11 -IN-PIN,481998,PostalCode,Mandla,LGD,415,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11 -IN-PIN,482001,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482002,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482003,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482004,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482005,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482008,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482009,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482010,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482011,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482021,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482051,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,482056,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483001,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483053,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483105,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483110,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483113,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483119,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483220,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483222,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483225,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483330,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483331,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,483332,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483334,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483336,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483440,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,483442,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,483501,PostalCode,Jabalpur,LGD,411,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11 -IN-PIN,483770,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,483773,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,483775,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,483880,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,483990,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,484001,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -IN-PIN,484110,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -IN-PIN,484113,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484116,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484224,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484330,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484334,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484336,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484440,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484444,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484446,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484447,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484551,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -IN-PIN,484555,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -IN-PIN,484660,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -IN-PIN,484661,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -IN-PIN,484664,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -IN-PIN,484665,PostalCode,Umaria,LGD,436,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11 -IN-PIN,484669,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -IN-PIN,484770,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -IN-PIN,484771,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -IN-PIN,484774,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -IN-PIN,484776,PostalCode,Shahdol,LGD,429,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11 -IN-PIN,484881,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484886,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,484887,PostalCode,Anuppur,LGD,390,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11 -IN-PIN,485001,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485111,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485112,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485113,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485114,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485115,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,485221,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485226,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485227,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485331,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485334,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485441,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485446,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485447,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485551,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485661,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485666,PostalCode,Satna,LGD,426,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11 -IN-PIN,485771,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,485772,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,485773,PostalCode,Katni,LGD,413,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11 -IN-PIN,485774,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,485775,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,485778,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,485881,PostalCode,Maihar,LGD,784,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486001,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486003,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486005,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486006,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486111,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486114,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486115,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486117,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486123,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486220,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486223,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486226,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486331,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486333,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486335,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486338,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486340,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486341,PostalCode,MAUGANJ,LGD,766,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11 -IN-PIN,486440,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486441,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486445,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486446,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486447,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486448,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486450,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486550,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486553,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486556,PostalCode,Rewa,LGD,424,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11 -IN-PIN,486661,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -IN-PIN,486666,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -IN-PIN,486669,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -IN-PIN,486670,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -IN-PIN,486675,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -IN-PIN,486771,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -IN-PIN,486775,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -IN-PIN,486776,PostalCode,Sidhi,LGD,433,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11 -IN-PIN,486881,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -IN-PIN,486882,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -IN-PIN,486884,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -IN-PIN,486886,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -IN-PIN,486887,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -IN-PIN,486889,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -IN-PIN,486890,PostalCode,Singrauli,LGD,638,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11 -IN-PIN,487001,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487110,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487114,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487118,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487221,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487225,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487330,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487334,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487337,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487441,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487551,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487555,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487661,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487770,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487771,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487777,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,487881,PostalCode,Narsimhapur,LGD,418,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11 -IN-PIN,488001,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488050,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488059,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488220,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488222,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488333,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488441,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488442,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488443,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488446,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,488448,PostalCode,Panna,LGD,420,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11 -IN-PIN,490001,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490006,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490011,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490020,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490021,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490022,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490023,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490024,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490025,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,490036,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -IN-PIN,490042,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,491001,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,491107,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,491111,PostalCode,Durg,LGD,378,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11 -IN-PIN,491221,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491222,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491223,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491225,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491226,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491227,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491228,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491229,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,491230,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491331,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -IN-PIN,491332,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -IN-PIN,491335,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -IN-PIN,491336,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -IN-PIN,491337,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -IN-PIN,491338,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -IN-PIN,491340,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -IN-PIN,491441,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -IN-PIN,491443,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -IN-PIN,491444,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,491445,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,491557,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -IN-PIN,491558,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -IN-PIN,491559,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -IN-PIN,491661,PostalCode,Rajnandgaon,LGD,388,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11 -IN-PIN,491665,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491666,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,491668,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,491771,PostalCode,Balod,LGD,646,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11 -IN-PIN,491881,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,491885,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,491888,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -IN-PIN,491993,PostalCode,Bemetara,LGD,650,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11 -IN-PIN,491995,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -IN-PIN,491996,PostalCode,Kabeerdham,LGD,382,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11 -IN-PIN,492001,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,492003,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,492012,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,492013,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,492014,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,492015,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,492018,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,492099,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,492101,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,492109,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,492112,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493101,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493111,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493113,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493114,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,493116,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,493118,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493195,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493196,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493221,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,493222,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,493225,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493228,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493229,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493331,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493332,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493335,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493338,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493344,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493441,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493445,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -IN-PIN,493448,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -IN-PIN,493449,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -IN-PIN,493526,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493551,PostalCode,Balodabazar-Bhatapara,LGD,644,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11 -IN-PIN,493554,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -IN-PIN,493555,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -IN-PIN,493558,PostalCode,Mahasamund,LGD,385,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11 -IN-PIN,493559,PostalCode,Raipur,LGD,387,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11 -IN-PIN,493661,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493662,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493663,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493770,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493773,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493776,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493778,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493881,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -IN-PIN,493885,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493887,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -IN-PIN,493888,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -IN-PIN,493889,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,493890,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -IN-PIN,493891,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -IN-PIN,493992,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -IN-PIN,493996,PostalCode,Gariyaband,LGD,645,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11 -IN-PIN,494001,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494010,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494111,PostalCode,Sukma,LGD,642,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -IN-PIN,494114,PostalCode,Sukma,LGD,642,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -IN-PIN,494115,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494122,PostalCode,Sukma,LGD,642,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11 -IN-PIN,494221,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494222,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494223,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494224,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494226,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494228,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494229,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494230,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494237,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494331,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494332,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -IN-PIN,494333,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,494334,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,494335,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -IN-PIN,494336,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,494337,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,494347,PostalCode,Dhamtari,LGD,377,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11 -IN-PIN,494441,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494442,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494444,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -IN-PIN,494446,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -IN-PIN,494447,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -IN-PIN,494448,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -IN-PIN,494449,PostalCode,Bastar,LGD,374,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11 -IN-PIN,494450,PostalCode,Bijapur,LGD,636,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11 -IN-PIN,494552,PostalCode,Dakshin Bastar Dantewada,LGD,376,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -IN-PIN,494553,PostalCode,Dakshin Bastar Dantewada,LGD,376,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -IN-PIN,494556,PostalCode,Dakshin Bastar Dantewada,LGD,376,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11 -IN-PIN,494635,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494661,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494665,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -IN-PIN,494669,PostalCode,Narayanpur,LGD,637,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11 -IN-PIN,494670,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,494771,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -IN-PIN,494776,PostalCode,Uttar Bastar Kanker,LGD,381,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11 -IN-PIN,494777,PostalCode,Kondagaon,LGD,643,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11 -IN-PIN,495001,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495003,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495004,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495006,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495009,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495112,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495113,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495115,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495116,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495117,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 -IN-PIN,495118,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 -IN-PIN,495119,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11 -IN-PIN,495220,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495222,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495224,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495330,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495334,PostalCode,Mungeli,LGD,647,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -IN-PIN,495335,PostalCode,Mungeli,LGD,647,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11 -IN-PIN,495442,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495444,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495445,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495446,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495447,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495448,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495449,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495450,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495452,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495454,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495455,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495550,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495551,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495552,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495553,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495554,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495555,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495556,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495557,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495559,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495660,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495661,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495663,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495668,PostalCode,Bilaspur,LGD,375,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11 -IN-PIN,495669,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495671,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495674,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495677,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495682,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495683,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495684,PostalCode,Korba,LGD,383,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11 -IN-PIN,495686,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495687,PostalCode,Janjgir-Champa,LGD,379,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11 -IN-PIN,495688,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,495689,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,495690,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,495691,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,495692,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,495695,PostalCode,Sakti,LGD,762,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,496001,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496005,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496100,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496107,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496108,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496109,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496111,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496113,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496115,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496116,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496118,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496220,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496223,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496224,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496225,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496227,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496242,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496245,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496330,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496331,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496334,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496336,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496338,PostalCode,Jashpur,LGD,380,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11 -IN-PIN,496440,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496445,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,496450,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,496551,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,496554,PostalCode,Sarangarh-Bilaigarh,LGD,763,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,496661,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,496665,PostalCode,Raigarh,LGD,386,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11 -IN-PIN,497001,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -IN-PIN,497101,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -IN-PIN,497111,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -IN-PIN,497116,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -IN-PIN,497117,PostalCode,Surguja,LGD,389,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11 -IN-PIN,497118,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -IN-PIN,497119,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -IN-PIN,497220,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -IN-PIN,497223,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -IN-PIN,497224,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -IN-PIN,497225,PostalCode,Balrampur-Ramanujganj,LGD,649,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11 -IN-PIN,497226,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -IN-PIN,497229,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -IN-PIN,497231,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -IN-PIN,497235,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -IN-PIN,497331,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -IN-PIN,497333,PostalCode,Surajpur,LGD,648,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11 -IN-PIN,497335,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -IN-PIN,497339,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -IN-PIN,497442,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,497447,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,497448,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,497449,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -IN-PIN,497450,PostalCode,Korea,LGD,384,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11 -IN-PIN,497557,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,497778,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11 -IN-PIN,500001,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500002,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500003,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500004,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500005,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500006,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500007,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500008,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500009,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500010,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500011,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500012,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500013,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500014,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500015,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500016,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500017,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500018,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500020,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500026,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500028,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500029,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500030,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500031,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500036,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500037,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500038,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500039,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500043,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500044,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500045,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500047,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500048,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500052,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500053,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500055,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500056,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500058,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500059,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500060,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500061,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500064,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500068,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500070,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500072,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500073,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500075,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500076,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500078,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500080,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500082,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500083,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500085,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500086,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500087,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500088,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500089,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500090,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500091,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500092,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500097,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500098,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500100,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500101,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500102,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,500104,PostalCode,Hyderabad,LGD,507,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11 -IN-PIN,500112,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,500113,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501101,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501102,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501106,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501111,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501121,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501141,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501142,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501143,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501144,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501158,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501202,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501203,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501218,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501301,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,501302,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,501359,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501401,PostalCode,Medchal Malkajgiri,LGD,700,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11 -IN-PIN,501501,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501502,PostalCode,Vikarabad,LGD,698,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11 -IN-PIN,501503,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501504,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501505,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501506,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501508,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501509,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501510,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,501512,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,502001,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502032,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502101,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502102,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502103,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502107,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502108,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502109,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502110,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502113,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502114,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502115,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502117,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502125,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502130,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502210,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502221,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502228,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502246,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502247,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502248,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502249,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502251,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502255,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502256,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502257,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502267,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502269,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502270,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502271,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502273,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502276,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502277,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502278,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502279,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502280,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502281,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502285,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502286,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,502287,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502290,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502291,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502293,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502294,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502295,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502296,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502300,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502301,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502302,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502303,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502305,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502306,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502307,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502310,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502311,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502312,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502313,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502314,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502316,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502318,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502319,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502321,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502325,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502329,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502331,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502334,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502335,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502336,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,502345,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502371,PostalCode,Sangareddy,LGD,691,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11 -IN-PIN,502372,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502375,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,502381,PostalCode,Medak,LGD,513,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11 -IN-PIN,503001,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503003,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503101,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503102,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503108,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503110,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503111,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503112,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503114,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503120,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503122,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503123,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503124,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503125,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503144,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503145,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503164,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503165,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503175,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503180,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503185,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503186,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503187,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503188,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503201,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503202,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503206,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503207,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503212,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503213,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503217,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503218,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503219,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503223,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503224,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503225,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503230,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503235,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503245,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503246,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503301,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503302,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503305,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503306,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503307,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503308,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503309,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503310,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,503311,PostalCode,Nizamabad,LGD,516,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11 -IN-PIN,503321,PostalCode,Kamareddy,LGD,685,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11 -IN-PIN,504001,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504002,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504101,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504102,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504103,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504104,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504105,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504106,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504109,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504110,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504201,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504202,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504203,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504204,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504205,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504206,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504207,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504209,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504214,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504215,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504216,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504218,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504219,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504220,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504231,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504251,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504272,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504273,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504292,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504293,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504294,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504295,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504296,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504297,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504299,PostalCode,Kumuram Bheem Asifabad,LGD,699,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11 -IN-PIN,504301,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504302,PostalCode,Mancherial,LGD,684,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11 -IN-PIN,504304,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504306,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504307,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504308,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504309,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504310,PostalCode,Nirmal,LGD,680,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11 -IN-PIN,504311,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504312,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504313,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504323,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,504346,PostalCode,Adilabad,LGD,501,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11 -IN-PIN,505001,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505101,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,505102,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,505122,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,505129,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505152,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505153,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505162,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505172,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505174,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505184,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,505185,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505186,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505187,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505188,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505208,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505209,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505212,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505301,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505302,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505303,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505304,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505305,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505306,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505307,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505325,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505326,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505327,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505330,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505331,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505401,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505402,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505403,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505404,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505405,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505415,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505416,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505425,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505445,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505450,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505451,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505452,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505453,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505454,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505455,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505460,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505462,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505466,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,505467,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505468,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505469,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505470,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505471,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,505472,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505473,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,505474,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505475,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505476,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,505480,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,505481,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505490,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505497,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,505498,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,505501,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505502,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505503,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,505504,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,505505,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505514,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505524,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505525,PostalCode,Peddapalli,LGD,682,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11 -IN-PIN,505526,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505527,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505528,PostalCode,Rajanna Sircilla,LGD,683,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11 -IN-PIN,505529,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505530,PostalCode,Karimnagar,LGD,508,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11 -IN-PIN,505531,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,505532,PostalCode,Jagitial,LGD,681,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11 -IN-PIN,506001,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506002,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506003,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506005,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506006,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506007,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506008,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506009,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506015,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506101,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506102,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506103,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506104,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506105,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506112,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506122,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506132,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506134,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506135,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506142,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506143,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506144,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506145,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506146,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506151,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506163,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506164,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506165,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -IN-PIN,506166,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506167,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506168,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,506169,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,506170,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,506172,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -IN-PIN,506175,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506201,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506221,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506222,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506223,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506224,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506244,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506252,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506301,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506302,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506303,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506310,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506313,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506314,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506315,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506316,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506317,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506318,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506319,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506324,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506329,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506330,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506331,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506332,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506333,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506342,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506343,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -IN-PIN,506344,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -IN-PIN,506345,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,506347,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -IN-PIN,506348,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,506349,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506350,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506352,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -IN-PIN,506355,PostalCode,Siddipet,LGD,692,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11 -IN-PIN,506356,PostalCode,Jayashankar Bhupalapally,LGD,687,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11 -IN-PIN,506365,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506366,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506367,PostalCode,Jangoan,LGD,689,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11 -IN-PIN,506368,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506369,PostalCode,Warangal,LGD,522,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11 -IN-PIN,506370,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506371,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,506381,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,506391,PostalCode,Hanumakonda,LGD,686,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11 -IN-PIN,507002,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507003,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507101,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507111,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507112,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507114,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507115,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507116,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507117,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507118,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507120,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507122,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507123,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507124,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507126,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507127,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507128,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507133,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507136,PostalCode,Mulugu,LGD,720,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11 -IN-PIN,507137,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507140,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507157,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507158,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507159,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507160,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507161,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507163,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507164,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507165,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507166,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507167,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507168,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507169,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507170,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507171,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507182,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507183,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507201,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507202,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507203,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507204,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507208,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507209,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507210,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507211,PostalCode,Mahabubabad,LGD,688,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11 -IN-PIN,507301,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507302,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507303,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507304,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507305,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,507306,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507315,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507316,PostalCode,Bhadradri Kothagudem,LGD,690,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11 -IN-PIN,507318,PostalCode,Khammam,LGD,509,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11 -IN-PIN,508001,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508002,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508004,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508101,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508105,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508111,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508112,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508113,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508114,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508115,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508116,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508117,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508126,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508201,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508202,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508204,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508205,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508206,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508207,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508208,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508210,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508211,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508212,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508213,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508214,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508217,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508218,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508221,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508223,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508224,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508233,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508234,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508238,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508243,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508244,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508245,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508246,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508247,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508248,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508250,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508252,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508253,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508254,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508255,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508256,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508257,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508258,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508266,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508277,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508278,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508279,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508280,PostalCode,Suryapet,LGD,696,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11 -IN-PIN,508284,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508285,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508286,PostalCode,Yadadri Bhuvanagiri,LGD,697,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11 -IN-PIN,508355,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508373,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508374,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508376,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,508377,PostalCode,Nalgonda,LGD,514,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11 -IN-PIN,509002,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509102,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509104,PostalCode,Wanaparthy,LGD,693,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -IN-PIN,509105,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509106,PostalCode,Wanaparthy,LGD,693,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -IN-PIN,509110,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509120,PostalCode,Wanaparthy,LGD,693,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11 -IN-PIN,509125,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509126,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509127,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509128,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509129,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509130,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509131,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509132,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509133,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509135,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509152,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509153,PostalCode,Jogulamba Gadwal,LGD,695,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11 -IN-PIN,509201,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509202,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509203,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509204,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509205,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509206,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509207,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509208,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509209,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509210,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509215,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509216,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509217,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509219,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509228,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509235,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509301,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509302,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509311,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509320,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509321,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509324,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509325,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509326,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509327,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509334,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509335,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509336,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509337,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509338,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509339,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509340,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509349,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509350,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509351,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509352,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509353,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509357,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509358,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509360,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509371,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509375,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509376,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509380,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509381,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509382,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509385,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509401,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,509406,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509407,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509408,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509409,PostalCode,Mahabubnagar,LGD,512,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11 -IN-PIN,509410,PostalCode,Ranga Reddy,LGD,518,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11 -IN-PIN,509411,PostalCode,Narayanpet,LGD,721,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11 -IN-PIN,509412,PostalCode,Nagarkurnool,LGD,694,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11 -IN-PIN,515001,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515002,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515004,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515101,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515110,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515122,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515123,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515124,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515133,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515134,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515144,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515154,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515159,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515164,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515201,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515202,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515211,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515212,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515231,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515241,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515261,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515271,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515281,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515286,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515291,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515301,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515303,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515305,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515311,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515321,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515331,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515341,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515401,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515402,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515405,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515408,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515411,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515413,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515414,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515415,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515425,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515435,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515445,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515455,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515465,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515501,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515511,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515521,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515531,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515541,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515551,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515556,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515561,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515571,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515581,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515591,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515601,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515611,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515621,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515631,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515641,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515651,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515661,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515672,PostalCode,Sri Sathya Sai,LGD,754,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,515701,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515711,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515721,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515722,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515731,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515741,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515751,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515761,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515763,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515765,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515766,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515767,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515774,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515775,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515787,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515803,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515812,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515822,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515832,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515842,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515863,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515865,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515867,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515870,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515871,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,515872,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,516001,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516003,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516101,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516104,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516107,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516108,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516115,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516127,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516128,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516130,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516150,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516151,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516162,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516172,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516173,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516175,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516193,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516203,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516213,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516215,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516216,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516217,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516218,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516227,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516228,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516233,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516247,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516267,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516268,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516269,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516289,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516293,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516309,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516310,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516312,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516321,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516329,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516330,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516339,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516349,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516350,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516355,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516356,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516359,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516360,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516361,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516362,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516380,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516390,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516391,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516396,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516401,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516411,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516421,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516431,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516432,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516433,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516434,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516439,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516444,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516454,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516464,PostalCode,Ananthapuramu,LGD,502,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11 -IN-PIN,516474,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516484,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516501,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516502,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516503,PostalCode,Y.S.R. Kadapa,LGD,504,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11 -IN-PIN,516504,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,516505,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517001,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517002,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517101,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517102,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517112,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517113,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517123,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517124,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517125,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517126,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517127,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517128,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517129,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517130,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517131,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517132,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517152,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517167,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517172,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517192,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517193,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517194,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517213,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517214,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517234,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517235,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517236,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517237,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517247,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517257,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517277,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517280,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517291,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517297,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517299,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517305,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517319,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517326,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517350,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517370,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517390,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517391,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517401,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517403,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517408,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517415,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517416,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517417,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517418,PostalCode,Annamayya,LGD,753,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517422,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517423,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517424,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517425,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517426,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517429,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517432,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517502,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517503,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517504,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517505,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517506,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517507,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517520,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517526,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517536,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517541,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517551,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517561,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517569,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517571,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517581,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517582,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517583,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517584,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517586,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517587,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517588,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517589,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517590,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517591,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517592,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517599,PostalCode,Chittoor,LGD,503,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11 -IN-PIN,517619,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517620,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517640,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517641,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517642,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517643,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517644,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517645,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,517646,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518001,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518002,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518003,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518004,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518007,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518010,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518101,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518102,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518112,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518122,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518123,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518124,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518134,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518135,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518145,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518155,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518165,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518166,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518176,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518186,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518196,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518206,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518216,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518217,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518218,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518220,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518221,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518222,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518225,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518301,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518302,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518308,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518313,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518323,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518333,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518343,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518344,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518345,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518346,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518347,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518348,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518349,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518350,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518360,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518380,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518385,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518390,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518395,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518396,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518401,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518405,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518411,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518412,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518422,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518432,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518442,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518452,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518462,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518463,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518464,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518465,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518466,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518467,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518468,PostalCode,Kurnool,LGD,511,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11 -IN-PIN,518502,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518508,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518510,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518511,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518512,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518513,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518523,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518533,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518543,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518553,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518563,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518573,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518583,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518593,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518594,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518598,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518599,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,518674,PostalCode,Nandyal,LGD,755,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,520001,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,520004,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,520007,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,520008,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,520010,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,520011,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,520012,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,520015,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521002,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521003,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521004,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521101,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521102,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521104,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521105,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521106,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521107,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521108,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521109,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521110,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521111,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521120,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521121,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521122,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521125,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521126,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521130,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521131,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521132,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521133,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521134,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521135,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521136,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521137,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521138,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521139,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521148,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521149,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521150,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521151,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521153,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521156,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521157,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521158,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521162,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521163,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521164,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521165,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521170,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521175,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521178,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521180,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521181,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521182,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521183,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521184,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521185,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521190,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521202,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521207,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521211,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521212,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521213,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521214,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521215,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521225,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521226,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521227,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521228,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521229,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521230,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521231,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521235,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521241,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521245,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521246,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521247,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521250,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521256,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521260,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521261,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521263,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521286,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521301,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521311,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521312,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521321,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521322,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521323,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521324,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521325,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521326,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521327,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521328,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521329,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521330,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521331,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521332,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521333,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521340,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521343,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521344,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521345,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521356,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521366,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521369,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521390,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,521401,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521402,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521403,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521456,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,521457,PostalCode,Ntr,LGD,749,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522001,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522003,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522005,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522007,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522009,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522015,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522016,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522017,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522018,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522019,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522020,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522034,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522101,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522102,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522111,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522112,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522113,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522124,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522201,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522202,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522211,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522212,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522213,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522233,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522234,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522235,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522236,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522237,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522240,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522256,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522257,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522258,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522259,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522261,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522262,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522264,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522265,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522268,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522301,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522302,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522303,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522304,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522305,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522306,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522307,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522308,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522309,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522310,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522311,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522312,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522313,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522314,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522315,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522316,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522317,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522318,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522324,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522325,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522329,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522330,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522341,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522401,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522402,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522403,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522408,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522409,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522410,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522411,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522412,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522413,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522414,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522415,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522421,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522426,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522435,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522436,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522437,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522438,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522501,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522502,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522503,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522508,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522509,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522529,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522549,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522603,PostalCode,Guntur,LGD,506,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11 -IN-PIN,522611,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522612,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522613,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522614,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522615,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522616,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522617,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522619,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522626,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522646,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522647,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522649,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522657,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522658,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522659,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522660,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522661,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,522663,PostalCode,Palnadu,LGD,751,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523001,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523101,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523104,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523105,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523108,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523109,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523110,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523111,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523112,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523113,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523114,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523115,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523116,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523117,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523135,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523157,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523165,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523167,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523168,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523169,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523170,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523171,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523180,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523181,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523182,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523183,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523184,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523185,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523186,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523187,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523190,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523201,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523211,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523212,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523213,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523214,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523223,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523224,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523225,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523226,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523227,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523228,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523230,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523240,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523241,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523245,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523246,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523247,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523252,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523253,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523254,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523260,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523261,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523262,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523263,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523264,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523265,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523270,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523271,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523272,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523273,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523274,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523279,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523280,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523281,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523286,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523291,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523292,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523301,PostalCode,Bapatla,LGD,750,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523302,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523303,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523304,PostalCode,Prakasam,LGD,517,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11 -IN-PIN,523305,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523315,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523320,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523326,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523327,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523328,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523329,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523330,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523331,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523332,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523333,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523334,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523335,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523336,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523346,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523356,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523357,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523367,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523368,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523369,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523370,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523371,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523372,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,523373,PostalCode,Markapuram,LGD,790,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524001,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524002,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524003,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524004,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524101,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524121,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524123,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524124,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524126,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524127,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524129,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524131,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524132,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524134,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524137,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524142,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524152,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524201,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524203,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524221,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524222,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524223,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524224,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524225,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524226,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524227,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524228,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524230,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524234,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524236,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524239,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524240,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524302,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524303,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524304,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524305,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524306,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524307,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524308,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524309,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524310,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524311,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524312,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524313,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524314,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524315,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524316,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524317,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524318,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524320,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524321,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524322,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524323,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524324,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524341,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524342,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524343,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524344,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524345,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524346,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524366,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524401,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524402,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524403,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524404,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524405,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524406,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524407,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524408,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524409,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524410,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524411,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524412,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524413,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524414,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11 -IN-PIN,524415,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,524421,PostalCode,Tirupati,LGD,752,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,530003,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530004,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530005,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530008,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530011,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530012,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530013,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530016,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530018,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530022,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530026,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530027,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530028,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530031,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530040,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530041,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530044,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530045,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530046,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,530047,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530048,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530049,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,530051,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530052,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,530053,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531001,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531002,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531011,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531019,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531020,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531021,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531022,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531023,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531024,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531025,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531026,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531027,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531028,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531029,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531030,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531031,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531032,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531033,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531034,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531035,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531036,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531040,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531055,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531060,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531061,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531075,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531077,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531081,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531082,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531083,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531084,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531085,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531087,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531111,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531113,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531114,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531115,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531116,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531117,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531118,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531126,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531127,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531133,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531149,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531151,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531162,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,531163,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,531173,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,531219,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,532001,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532005,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532122,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,532123,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,532127,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532148,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532168,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532185,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532186,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532187,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532190,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532195,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532201,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532203,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532204,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532211,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532212,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532213,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532214,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532215,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532216,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532218,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532219,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532220,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532221,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532222,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532242,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532243,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532263,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532264,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532284,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532290,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532291,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532292,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532312,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532322,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532401,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532402,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532403,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532404,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532405,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532406,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532407,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532408,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532409,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532410,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532421,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532425,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532426,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532427,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532428,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532429,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532430,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532432,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532440,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,532443,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,532445,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532455,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,532456,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,532457,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532458,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,532459,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532460,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,532461,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,532462,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,532474,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,532484,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,533002,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533004,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533005,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533006,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533016,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533101,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533102,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533103,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533105,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533107,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533124,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533125,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533126,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533201,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533210,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533211,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533212,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533213,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533214,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533215,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533216,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533217,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533218,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533220,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533221,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533222,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533223,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533228,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533229,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533232,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533233,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533234,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533235,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533236,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533237,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533238,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533239,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533240,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533241,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533242,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533244,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533247,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533248,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533249,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533250,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533251,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533252,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533253,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533254,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533256,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533260,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533261,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533262,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533263,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533264,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533274,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533284,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533285,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533286,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533287,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533288,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533289,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533290,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533291,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533292,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533293,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533294,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533295,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533296,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533297,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533305,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533306,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533307,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533308,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533309,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533340,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533341,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533342,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533343,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533344,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533345,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533346,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533347,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533348,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533349,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533350,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533351,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533352,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533354,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533355,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533401,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533406,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533407,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533408,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533428,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533429,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533430,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533431,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533432,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533433,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533434,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533435,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533436,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533437,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,533440,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533444,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533445,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533446,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533447,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533448,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533449,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533450,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533451,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533461,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533462,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533463,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533464,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533468,PostalCode,Kakinada,LGD,746,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533483,PostalCode,Polavaram,LGD,791,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,533577,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534002,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534003,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534004,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534005,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534007,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534101,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534102,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534111,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534112,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534122,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534123,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534124,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534126,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534134,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534145,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534146,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534156,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534165,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534166,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534176,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534186,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534195,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534196,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534197,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534198,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534199,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534201,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534202,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534204,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534206,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534207,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534208,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534209,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534210,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534211,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534216,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534217,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534218,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534222,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534225,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534227,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534230,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534235,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534236,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534237,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534238,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534239,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534240,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534243,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534244,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534245,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534247,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534250,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534265,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534266,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534267,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534268,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534269,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534275,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534280,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534281,PostalCode,Krishna,LGD,510,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11 -IN-PIN,534301,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534302,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534305,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534311,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534312,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534313,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534315,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534316,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534318,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534320,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534324,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534326,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534327,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534328,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534329,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534330,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534331,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534338,PostalCode,West Godavari,LGD,523,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11 -IN-PIN,534340,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534341,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534342,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534350,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534401,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534406,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534411,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534416,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534425,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534426,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534427,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534432,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534435,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534437,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534442,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534444,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534447,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534448,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534449,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534450,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534451,PostalCode,East Godavari,LGD,505,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11 -IN-PIN,534452,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534455,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534456,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534460,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534461,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534462,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534467,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,534475,PostalCode,Eluru,LGD,748,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535001,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535003,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535004,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535005,PostalCode,Visakhapatnam,LGD,520,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11 -IN-PIN,535006,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535101,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535102,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535124,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535125,PostalCode,Srikakulam,LGD,519,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11 -IN-PIN,535126,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535128,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535145,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535148,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535160,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535161,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535183,PostalCode,Anakapalli,LGD,744,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535204,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535213,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535214,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535215,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535216,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535217,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535218,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535220,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535221,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535240,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535250,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535260,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535270,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535273,PostalCode,Alluri Sitharama Raju,LGD,745,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535280,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535281,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535463,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535501,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535502,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535521,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535522,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535523,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535524,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535525,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535526,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535527,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535534,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535546,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535547,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535557,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535558,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535559,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535568,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535573,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535578,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535579,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535580,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535581,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535582,PostalCode,Vizianagaram,LGD,521,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11 -IN-PIN,535591,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535592,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535593,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,535594,PostalCode,Parvathipuram Manyam,LGD,743,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11 -IN-PIN,560003,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560004,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560008,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,560010,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560012,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560013,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560015,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560022,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560023,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560026,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560027,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560029,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560030,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560032,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560034,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560035,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560040,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560041,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560050,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560054,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560056,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560057,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560058,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560060,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560061,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560062,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560064,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,560068,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560070,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560072,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560073,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560074,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560076,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560078,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560079,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560081,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560082,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560083,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,560085,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560088,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560089,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560090,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560091,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560095,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560098,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560099,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560100,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560102,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560105,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,560107,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,560108,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560109,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560110,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560111,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560112,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560114,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,560116,PostalCode,Bengaluru Urban,LGD,525,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11 -IN-PIN,561101,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,561201,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,561202,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,561203,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,561206,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,561207,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,561208,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,561209,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,561210,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,561211,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,561212,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,561213,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,562101,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,562102,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,562103,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,562104,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,562108,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562109,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562112,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562117,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562119,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562120,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,562121,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562126,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562127,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,562128,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562131,PostalCode,Bengaluru Rural,LGD,526,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11 -IN-PIN,562138,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562159,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562160,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,562161,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,563101,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563113,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563114,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563116,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563117,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563123,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,563124,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,563125,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,563126,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563127,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563128,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,563129,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563130,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563131,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563132,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563133,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563134,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563135,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563136,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563137,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563138,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563139,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563146,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,563159,PostalCode,Chikkaballapura,LGD,630,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11 -IN-PIN,563161,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,563162,PostalCode,Kolar,LGD,542,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11 -IN-PIN,570003,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,570008,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,570010,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,570018,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,570019,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,570026,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,570028,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,570030,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,570033,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571101,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571102,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571103,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571104,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571105,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571106,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571107,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571108,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571109,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571110,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571111,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571114,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571115,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571116,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571117,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571118,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571119,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571120,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571121,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571122,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571123,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571124,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571125,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571126,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571127,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571128,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571129,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571130,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571134,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571187,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571189,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571201,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571211,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571212,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571213,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571214,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571215,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571216,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571217,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571218,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571219,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571231,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571232,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571234,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571235,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571236,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571237,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571247,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571248,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571249,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571250,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571251,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571252,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571253,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571254,PostalCode,Kodagu,LGD,541,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11 -IN-PIN,571301,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571302,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571311,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571312,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571313,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571314,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571315,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571316,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571320,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571342,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571401,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571402,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571403,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571404,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571405,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571415,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571416,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571417,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571418,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571419,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571421,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571422,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571423,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571424,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571425,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571426,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571427,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571428,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571429,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,571430,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571431,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571432,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571433,PostalCode,Bengaluru South,LGD,631,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11 -IN-PIN,571434,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571435,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571436,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571438,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571439,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571440,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571441,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571442,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571443,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571444,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571445,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571446,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571448,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571450,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571455,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571457,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571463,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571475,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571476,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571477,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571478,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571490,PostalCode,Chamarajanagar,LGD,531,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11 -IN-PIN,571601,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571602,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571603,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571604,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571605,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571606,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571607,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571610,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571617,PostalCode,Mysuru,LGD,545,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11 -IN-PIN,571802,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571807,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571811,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,571812,PostalCode,Mandya,LGD,544,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11 -IN-PIN,572101,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572102,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572103,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572104,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572105,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572106,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572107,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572111,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572112,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572113,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572114,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572115,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572116,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572117,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572118,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572119,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572120,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572121,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572122,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572123,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572124,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572125,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572126,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572127,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572128,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572129,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572130,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572132,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572133,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572134,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572135,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572136,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572137,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572138,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572139,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572140,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572141,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572142,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572168,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572175,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572201,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572211,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572212,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572213,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572214,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572215,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572216,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572217,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572218,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572219,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572220,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572221,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572222,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572223,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572224,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572225,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572226,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572227,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,572228,PostalCode,Tumakuru,LGD,548,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11 -IN-PIN,573101,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573102,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573103,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573111,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573112,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573113,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573115,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573116,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573117,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573118,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573119,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573120,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573121,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573122,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573123,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573124,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573125,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573126,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573127,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573128,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573129,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573130,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573131,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573133,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573134,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573135,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573136,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573137,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573141,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573142,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573144,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573162,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573164,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573165,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573201,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573202,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573210,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573211,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573212,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573213,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573214,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573215,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573216,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573217,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573218,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573219,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573220,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573225,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,573226,PostalCode,Hassan,LGD,539,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11 -IN-PIN,574101,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574102,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574103,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574104,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574105,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574106,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574107,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574108,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574109,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574110,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574111,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574112,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574113,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574114,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574115,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574116,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574117,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574118,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574119,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574122,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574129,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574141,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574142,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574143,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574144,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574145,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574146,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574148,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574150,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574151,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574153,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574154,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574197,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574198,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574199,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574201,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574202,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574203,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574210,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574211,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574212,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574213,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574214,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574216,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574217,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574218,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574219,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574220,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574221,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574222,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574223,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574224,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574225,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574226,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574227,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574228,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574229,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574230,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574231,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574232,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574233,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574234,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574235,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574236,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574237,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574238,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574239,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574240,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574241,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574242,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574243,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574244,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,574248,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574253,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574259,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574260,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574265,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574267,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574274,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574279,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574285,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574313,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574314,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574323,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574324,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574325,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574326,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574327,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574328,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,574509,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575001,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575002,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575003,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575004,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575005,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575006,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575007,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575008,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575009,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575010,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575011,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575013,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575014,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575015,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575017,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575018,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575019,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575020,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575022,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575023,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575028,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575029,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,575030,PostalCode,Dakshina Kannada,LGD,534,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11 -IN-PIN,576102,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576103,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576105,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576106,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576107,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576111,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576112,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576113,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576114,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576115,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576117,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576120,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576121,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576122,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576124,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576201,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576210,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576211,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576212,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576213,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576214,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576215,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576216,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576217,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576218,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576219,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576220,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576221,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576222,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576223,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576224,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576225,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576226,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576227,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576228,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576229,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576230,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576231,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576232,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576233,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576234,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576235,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576247,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576257,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576282,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,576283,PostalCode,Udupi,LGD,549,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11 -IN-PIN,577001,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577002,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577003,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577004,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577005,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577006,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577007,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577008,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577101,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577102,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577111,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577112,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577113,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577114,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577115,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577116,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577117,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577120,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577121,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577122,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577123,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577124,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577125,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577126,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577127,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577128,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577129,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577130,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577131,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577132,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577133,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577134,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577135,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577136,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577138,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577139,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577140,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577144,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577145,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577146,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577160,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577168,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577175,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577179,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577180,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577181,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577182,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577201,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577202,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577203,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577204,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577205,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577211,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577213,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577214,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577215,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577216,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577217,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577218,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577219,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577220,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577221,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577222,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577223,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577224,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577225,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577226,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577227,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577228,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577229,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577230,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577231,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577232,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577233,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577243,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577245,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577301,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577302,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577401,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577411,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577412,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577413,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577414,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577415,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577416,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577417,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577418,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577419,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577421,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577422,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577423,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577424,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577425,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577426,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577427,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577428,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577429,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577430,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577431,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577432,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577433,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577434,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577435,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577436,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577451,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577452,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577453,PostalCode,Shivamogga,LGD,547,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11 -IN-PIN,577501,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577502,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577511,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577512,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577513,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577514,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577515,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577516,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577517,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577518,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577519,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577520,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577521,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577522,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577523,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577524,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577525,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577526,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577527,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577528,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577529,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577530,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577531,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577532,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577533,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577534,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577535,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577536,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577537,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577538,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577539,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577540,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577541,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577542,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577543,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577544,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577545,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577546,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577547,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577548,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577549,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577550,PostalCode,Chikkamagaluru,LGD,532,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11 -IN-PIN,577551,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577552,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577553,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577554,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577555,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577556,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577557,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577558,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577566,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577589,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,577596,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577597,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577598,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577599,PostalCode,Chitradurga,LGD,533,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11 -IN-PIN,577601,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,580001,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580005,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580006,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580007,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580008,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580009,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580011,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580021,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580023,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580024,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580025,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580026,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580027,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580028,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580030,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580031,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580112,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580114,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,580118,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581101,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581102,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581103,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581104,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581105,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581106,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581107,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581108,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581109,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581110,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581111,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581112,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581113,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581115,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581116,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581117,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581118,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581119,PostalCode,Davanagere,LGD,535,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11 -IN-PIN,581120,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581121,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581123,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581126,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581128,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581129,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581145,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581148,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581186,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581187,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581193,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581195,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581196,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581197,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581198,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581199,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581201,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581202,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581203,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581204,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581205,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581206,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581207,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581208,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581209,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,581210,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581211,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581212,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581213,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,581301,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581302,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581303,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581304,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581306,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581307,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581308,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581314,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581315,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581316,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581317,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581318,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581319,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581320,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581321,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581322,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581323,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581324,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581325,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581326,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581327,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581328,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581329,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581330,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581331,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581332,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581333,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581334,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581335,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581336,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581337,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581338,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581339,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581340,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581341,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581342,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581343,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581344,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581345,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581346,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581347,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581348,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581349,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581350,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581351,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581352,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581353,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581354,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581355,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581356,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581357,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581358,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581359,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581360,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581361,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581362,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581363,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581365,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581384,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581396,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581400,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581402,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581403,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581411,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581412,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581421,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581423,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581440,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581450,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,581453,PostalCode,Uttara Kannada,LGD,550,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11 -IN-PIN,582102,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582103,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582111,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582112,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582113,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582114,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582115,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582116,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582117,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582118,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582119,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582120,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582201,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,582202,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582203,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582204,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582205,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582206,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582207,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582208,PostalCode,Dharwad,LGD,536,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11 -IN-PIN,582209,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582210,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,582211,PostalCode,Gadag,LGD,537,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11 -IN-PIN,583101,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583102,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583103,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583104,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583111,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583112,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583113,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583114,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583115,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583116,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583117,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583118,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583119,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583120,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583121,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583122,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583123,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583124,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583125,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583126,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583127,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583128,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583129,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583130,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583131,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583132,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583134,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583135,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583136,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583137,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583152,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583154,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583155,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583201,PostalCode,Ballari,LGD,528,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11 -IN-PIN,583211,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583212,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583213,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583214,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583216,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583217,PostalCode,Haveri,LGD,540,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11 -IN-PIN,583218,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583219,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583220,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583221,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583222,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583223,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583224,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583226,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583227,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583228,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583229,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583230,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583231,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583232,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583233,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583234,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583235,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583236,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583237,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583238,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583239,PostalCode,Vijayanagara,LGD,738,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11 -IN-PIN,583268,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583277,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583278,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583279,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583280,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583281,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583282,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583283,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583284,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583285,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583286,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583287,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,583288,PostalCode,Koppal,LGD,543,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11 -IN-PIN,584102,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584103,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584104,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584111,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584113,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584115,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584116,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584118,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584120,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584122,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584123,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584124,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584125,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584126,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584127,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584128,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584129,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584132,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584133,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584134,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584135,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584136,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584138,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584139,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584140,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584143,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584167,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584170,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584202,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,584203,PostalCode,Raichur,LGD,546,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11 -IN-PIN,585102,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585103,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585104,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585105,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585106,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585107,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585202,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585210,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585211,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585212,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585213,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585214,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585215,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585216,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585217,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585218,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585219,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585220,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585221,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585222,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585223,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585224,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585225,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585226,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585227,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585228,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585236,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585237,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585265,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585287,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585290,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585291,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585292,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585301,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585302,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585303,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585304,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585305,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585306,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585307,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585308,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585309,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585310,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585311,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585312,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585313,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585314,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585315,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585316,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585317,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585318,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585319,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585320,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585321,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585322,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585323,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585324,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585325,PostalCode,Kalaburagi,LGD,538,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11 -IN-PIN,585326,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585327,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585328,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585329,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585330,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585331,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585353,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585355,PostalCode,Yadgir,LGD,635,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11 -IN-PIN,585401,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585402,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585403,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585404,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585411,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585412,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585413,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585414,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585416,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585417,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585418,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585419,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585421,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585436,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585437,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585443,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585444,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585445,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585446,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585447,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,585448,PostalCode,Bidar,LGD,529,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11 -IN-PIN,586103,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586104,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586108,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586109,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586111,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586112,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586113,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586114,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586115,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586116,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586117,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586118,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586119,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586120,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586121,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586122,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586123,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586124,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586125,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586127,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586128,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586129,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586130,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586170,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586201,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586202,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586203,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586204,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586205,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586206,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586207,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586208,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586209,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586210,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586211,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586212,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586213,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586214,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586215,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586216,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,586217,PostalCode,Vijayapura,LGD,530,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11 -IN-PIN,587102,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587103,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587104,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587111,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587112,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587113,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587114,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587115,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587116,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587117,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587118,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587119,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587120,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587121,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587122,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587124,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587125,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587154,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587155,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587156,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587157,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587201,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587202,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587203,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587204,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587205,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587206,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587207,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587301,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587311,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587312,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587313,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587314,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587315,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587316,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587330,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,587331,PostalCode,Bagalkote,LGD,524,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11 -IN-PIN,590001,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590003,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590005,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590008,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590010,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590014,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590015,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590016,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590018,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,590020,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591101,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591102,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591103,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591104,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591106,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591107,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591108,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591109,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591110,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591111,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591112,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591113,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591114,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591115,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591117,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591118,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591119,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591120,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591121,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591122,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591123,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591124,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591125,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591126,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591127,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591128,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591129,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591130,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591131,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591136,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591143,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591147,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591156,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591173,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591201,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591211,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591212,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591213,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591214,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591215,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591216,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591217,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591218,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591219,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591220,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591221,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591222,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591223,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591224,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591225,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591226,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591227,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591228,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591229,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591230,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591231,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591232,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591233,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591234,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591235,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591236,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591237,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591238,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591239,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591240,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591241,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591242,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591243,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591244,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591246,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591247,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591248,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591254,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591263,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591265,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591287,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591301,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591302,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591303,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591304,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591305,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591306,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591309,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591310,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591311,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591312,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591313,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591315,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591316,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591317,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591340,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591344,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591345,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,591346,PostalCode,Belagavi,LGD,527,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11 -IN-PIN,600001,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600003,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600004,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600005,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600006,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600007,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600008,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600011,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600014,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600015,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600016,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600017,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600019,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600020,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600021,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600023,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600024,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600030,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600032,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600033,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600037,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600040,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600041,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600042,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600043,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600044,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600045,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600047,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600048,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600049,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600050,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600051,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600052,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600053,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600054,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600055,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600056,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,600057,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600058,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600060,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600061,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600062,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600063,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600064,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600066,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600067,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600068,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600069,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,600070,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600071,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600072,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600073,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600074,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600075,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600076,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600077,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600078,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600081,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600084,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600085,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600086,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600087,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600088,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600089,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600090,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600091,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600092,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600093,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600094,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600095,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600096,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600097,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600099,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600100,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600103,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600106,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600107,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600113,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600115,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600116,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600118,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600119,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600120,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600122,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,600123,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600124,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,600125,PostalCode,Chennai,LGD,568,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11 -IN-PIN,600126,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600127,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600128,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,600129,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600130,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600131,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,600132,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,601101,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601102,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601103,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601201,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601202,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601203,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601204,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601205,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601206,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,601301,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,602001,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,602002,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,602003,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,602021,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,602023,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,602024,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,602025,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,602026,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,602105,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,602106,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,602108,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,602117,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,603001,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603002,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603003,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603101,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603102,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603103,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603104,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603105,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603106,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603107,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603108,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603109,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603110,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603111,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603112,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603201,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603202,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603203,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603204,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603209,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603210,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603301,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603302,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603303,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603304,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603305,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603306,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603307,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603308,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603309,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603310,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603311,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603312,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603313,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603314,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603319,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603401,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603402,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,603403,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,603405,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,603406,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,604001,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604101,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604102,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604151,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604152,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604153,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604154,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604201,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604202,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604203,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604204,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604205,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604206,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604207,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604208,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604210,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604301,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604302,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604303,PostalCode,Chengalpattu,LGD,730,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11 -IN-PIN,604304,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604305,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604306,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604307,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,604401,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604402,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604403,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604404,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604405,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604406,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604407,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,604408,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604409,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604410,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604501,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604502,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604503,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604504,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604505,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,604601,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,605001,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605004,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605006,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605007,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605008,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605009,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605010,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605013,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605014,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605102,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605103,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605104,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605105,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605106,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605107,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605108,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605109,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605110,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605111,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605201,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605202,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605203,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605301,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605302,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605401,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605402,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605403,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605501,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605502,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,605601,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605602,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605651,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605652,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605701,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605702,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605751,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605752,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605754,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605755,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605756,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605757,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605758,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,605759,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605766,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605801,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605802,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,605803,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606001,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606003,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606102,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606103,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606104,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606105,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606106,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606107,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606108,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606109,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606110,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606111,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606115,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606201,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606202,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606203,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606204,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606205,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606206,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606207,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606208,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606209,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606213,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606301,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606302,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606303,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606304,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606305,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,606401,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606402,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,606601,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606603,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606604,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606611,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606701,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606702,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606703,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606704,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606705,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606706,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606707,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606708,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606709,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606710,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606751,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606752,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606753,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606754,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606755,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606801,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606802,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606803,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606804,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606805,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606806,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606807,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606808,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606811,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606901,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606902,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606903,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606904,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606905,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606906,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606907,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,606908,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,607001,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607002,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607003,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607004,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607005,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607006,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607101,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607102,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607103,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607104,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607105,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607106,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607107,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,607108,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607109,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607112,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607201,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,607202,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,607203,PostalCode,Viluppuram,LGD,596,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11 -IN-PIN,607204,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,607205,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607209,PostalCode,Kallakurichi,LGD,729,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11 -IN-PIN,607301,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607302,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607303,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607308,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607401,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607402,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,607403,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,607801,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607802,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607803,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607804,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607805,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,607807,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608001,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608002,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608102,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608201,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608301,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608302,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608303,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608304,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608305,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608306,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608401,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608501,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608502,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608601,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608602,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608701,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608702,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608703,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,608704,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608801,PostalCode,Cuddalore,LGD,570,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11 -IN-PIN,608901,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,609001,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609003,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609101,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609102,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609103,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609104,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609105,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609106,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609107,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609108,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609109,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609110,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609111,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609112,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609113,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609114,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609115,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609116,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609117,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609118,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609201,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609202,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609203,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609204,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609205,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609301,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609302,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609303,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609304,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609305,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609306,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609307,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609308,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609309,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609310,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609311,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609312,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609313,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609314,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609401,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609402,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609403,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609404,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609405,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,609501,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609502,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,609503,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,609504,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,609601,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,609602,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,609603,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,609604,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,609605,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,609606,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,609607,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,609608,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,609609,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,609701,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,609702,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,609703,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,609704,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,609801,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609802,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,609803,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609804,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,609805,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609806,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609807,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,609808,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609810,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,609811,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,610001,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610003,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610004,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610005,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,610101,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,610102,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610103,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610104,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610105,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610106,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,610107,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,610109,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610201,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,610202,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610203,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,610204,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,610205,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610206,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,610207,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611001,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611002,PostalCode,Karaikal,LGD,598,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11 -IN-PIN,611003,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611101,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611102,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611103,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611104,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611105,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611106,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611108,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611109,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611110,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611111,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,611112,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,612001,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612002,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612101,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612102,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612103,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612104,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612105,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612106,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612201,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,612202,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612203,PostalCode,Mayiladuthurai,LGD,735,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11 -IN-PIN,612204,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612301,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612302,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612303,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612401,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612402,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612501,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612502,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612503,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612504,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612601,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,612602,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612603,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,612604,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612605,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612610,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612701,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612702,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612703,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612801,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612802,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,612803,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,612804,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,612901,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,612902,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,612903,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,612904,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,612905,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,612906,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,613001,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613002,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613003,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613004,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613005,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613006,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613010,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613101,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613102,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613103,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613104,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613105,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613201,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613202,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613203,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613204,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613205,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613301,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,613303,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613401,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613402,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613403,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613501,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613502,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613503,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613504,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613601,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613602,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,613701,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,613702,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,613703,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,613704,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,613705,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614001,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614013,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614014,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614015,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614016,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614017,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614018,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614019,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614020,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614101,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614102,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614103,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614201,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614202,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614203,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614204,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614205,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614206,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614207,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614208,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614210,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614211,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614301,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614302,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614303,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614401,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614402,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614403,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614404,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614601,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614602,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614612,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614613,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614614,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614615,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614616,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614617,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614618,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614619,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614620,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614621,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614622,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614623,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614624,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614625,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614626,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614628,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614629,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614630,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614701,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614702,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614703,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614704,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614705,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614706,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614707,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614708,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614710,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614711,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614712,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614713,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614714,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614715,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614716,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614717,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614723,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614738,PostalCode,Thiruvarur,LGD,590,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11 -IN-PIN,614801,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614802,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614803,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614804,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614805,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,614806,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614807,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614808,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614809,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614810,PostalCode,Nagapattinam,LGD,579,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11 -IN-PIN,614901,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614902,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614903,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614904,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614905,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,614906,PostalCode,Thanjavur,LGD,586,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11 -IN-PIN,620002,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620003,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620004,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620005,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620006,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620007,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620008,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620009,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620010,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620011,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620012,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620013,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620015,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620016,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620017,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620019,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620020,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620021,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620025,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620027,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620101,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,620102,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621001,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621002,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621003,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621004,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621005,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621006,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621007,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621008,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621009,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621010,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621011,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621012,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621014,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621101,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621102,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621103,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621104,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621105,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621106,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621107,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621108,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621109,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621110,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621111,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621112,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621113,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621114,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621115,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621116,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621117,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621118,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621119,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621133,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621202,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621203,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621204,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621205,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621206,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621207,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621208,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621209,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621210,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621211,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621212,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621213,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621214,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621215,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621216,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621217,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621218,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621219,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621220,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621301,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,621302,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621305,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,621306,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621307,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621308,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,621310,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621311,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,621312,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,621313,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,621314,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621315,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621316,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,621601,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621651,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621652,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621653,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621701,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621702,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621703,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621704,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621705,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621706,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621707,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621708,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621709,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621710,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621711,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621712,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,621713,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621714,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621715,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621716,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621717,PostalCode,Perambalur,LGD,581,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11 -IN-PIN,621718,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621719,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621722,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621729,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621730,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621731,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621801,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621802,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621803,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621804,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621805,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621806,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,621851,PostalCode,Ariyalur,LGD,610,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11 -IN-PIN,622001,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622002,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622003,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622004,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622101,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622102,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622103,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622104,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622201,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622202,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622203,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622204,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622209,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622301,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622302,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622303,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622304,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622401,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622402,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622403,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622404,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622407,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622409,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622411,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622412,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622422,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622501,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622502,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622503,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622504,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622505,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622506,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622507,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,622515,PostalCode,Pudukkottai,LGD,582,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11 -IN-PIN,623115,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623120,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623135,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623308,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623315,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623401,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623402,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623403,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623404,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623406,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623407,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623409,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623502,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623503,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623504,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623512,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623513,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623514,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623515,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623516,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623517,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623518,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623521,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623522,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623523,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623524,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623525,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623526,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623527,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623528,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623530,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623531,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623532,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623533,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623534,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623536,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623537,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623538,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623601,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623603,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623604,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623605,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623608,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623701,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623703,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623704,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623705,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623706,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623708,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623711,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,623712,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,624002,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624003,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624004,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624005,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624101,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624103,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624201,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624202,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624204,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624206,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624208,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624210,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624211,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624212,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624215,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624216,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624219,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624220,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624301,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624302,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624303,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624304,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624306,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624307,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624308,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624401,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624402,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624403,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624601,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624610,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624612,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624613,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624614,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624615,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624616,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624617,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624618,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624619,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624620,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624621,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624622,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624701,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624702,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624703,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624704,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624705,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624706,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624707,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624708,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624709,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624710,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624711,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624712,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624801,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,624802,PostalCode,Dindigul,LGD,572,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11 -IN-PIN,625001,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625002,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625003,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625005,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625006,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625007,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625008,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625009,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625012,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625014,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625016,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625017,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625018,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625019,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625020,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625021,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625022,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625023,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625101,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625102,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625103,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625104,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625105,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625106,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625107,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625108,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625109,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625110,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625122,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625201,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625203,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625205,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625207,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625214,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625218,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625221,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625234,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625301,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625402,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625501,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625503,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625512,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625513,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625514,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625515,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625516,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625517,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625518,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625520,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625521,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625522,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625523,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625524,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625525,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625526,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625527,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625528,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625529,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625530,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625531,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625532,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625533,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625534,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625535,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625536,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625537,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625540,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625552,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625556,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625562,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625579,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625582,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625601,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625602,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625604,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625605,PostalCode,Theni,LGD,588,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11 -IN-PIN,625701,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625702,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625703,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625704,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625705,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625706,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625707,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,625708,PostalCode,Madurai,LGD,578,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11 -IN-PIN,626001,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626002,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626003,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626004,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626005,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626101,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626102,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626103,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626104,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626105,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626106,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626107,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626109,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626110,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626111,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626112,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626113,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626114,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626115,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626116,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626117,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626118,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626119,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626121,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626122,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,626123,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626124,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626125,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626126,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626127,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626128,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626129,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626130,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626131,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626132,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626133,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626134,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626136,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626137,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626138,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626139,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626140,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626141,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626142,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626149,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626161,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626188,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626189,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626201,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626202,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,626203,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626204,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626205,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626607,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,626612,PostalCode,Virudhunagar,LGD,597,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11 -IN-PIN,627001,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627002,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627005,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627007,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627011,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627012,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627101,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627102,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627103,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627104,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627106,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627108,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627109,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627110,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627111,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627112,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627113,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627114,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627115,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627116,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627117,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627118,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627119,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627120,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627127,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627151,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627152,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627201,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627202,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627351,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627352,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,627353,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627354,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627355,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627356,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627357,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627358,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627359,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627401,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627412,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627413,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627414,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627415,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627416,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627417,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627418,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627421,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627423,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627424,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627425,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627426,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627451,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627452,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627501,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627502,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627601,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627602,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627651,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627652,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627654,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627657,PostalCode,Tirunelveli,LGD,592,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11 -IN-PIN,627713,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627719,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627751,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627753,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627754,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627755,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627756,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627757,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627758,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627759,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627760,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627761,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627764,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627802,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627803,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627804,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627805,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627806,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627807,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627808,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627809,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627811,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627812,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627813,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627814,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627818,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627851,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627852,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627853,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627854,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627855,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627856,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627857,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627858,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627859,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627860,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627861,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627862,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,627951,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,627953,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,628001,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628002,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628005,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628101,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628102,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628103,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628104,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628105,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628151,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628152,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628201,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628202,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628203,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628204,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628205,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628206,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628207,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628208,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628209,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628210,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628211,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628212,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628213,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628215,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628216,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628218,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628229,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628251,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628252,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628301,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628302,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628303,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628304,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628401,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628402,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628502,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,628503,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628552,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,628601,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628612,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628613,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628614,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628615,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628616,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628617,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628618,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628619,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628620,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628621,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628622,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628623,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628653,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628656,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628701,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628702,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628703,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628704,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628712,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628714,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628716,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628718,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628720,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628721,PostalCode,Tenkasi,LGD,733,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11 -IN-PIN,628722,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628752,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628753,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628801,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628802,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628809,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628851,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628901,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628902,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628903,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628904,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628905,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628906,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628907,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628908,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,628952,PostalCode,Thoothukkudi,LGD,594,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11 -IN-PIN,629001,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629002,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629003,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629004,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629101,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629102,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629151,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629152,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629153,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629154,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629156,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629157,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629158,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629159,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629160,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629161,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629162,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629163,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629164,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629165,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629167,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629168,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629170,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629171,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629172,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629173,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629174,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629175,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629176,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629177,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629178,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629179,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629180,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629193,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629201,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629202,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629203,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629204,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629251,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629252,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629301,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629302,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629401,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629402,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629403,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629501,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629502,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629601,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629602,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629701,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629702,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629703,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629704,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629801,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629802,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629803,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629804,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629810,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629851,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629852,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,629901,PostalCode,Kanniyakumari,LGD,575,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11 -IN-PIN,630002,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630003,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630101,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630103,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630104,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630105,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630106,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630107,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630108,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630201,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630202,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630203,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630204,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630205,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630206,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630207,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630208,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630210,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630211,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630212,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630301,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630302,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630303,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630305,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630306,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630307,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630309,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630311,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630312,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,630313,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630314,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630321,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630405,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630408,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630410,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630411,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630501,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630502,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630551,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630552,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630553,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630554,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630555,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630556,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630557,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630558,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630559,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630561,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630562,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630602,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630606,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630609,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630610,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630611,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630612,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630702,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630709,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,630710,PostalCode,Ramanathapuram,LGD,583,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11 -IN-PIN,630713,PostalCode,Sivaganga,LGD,585,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11 -IN-PIN,631001,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631002,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631003,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631004,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631051,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631052,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631101,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631102,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631151,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,631201,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631202,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631203,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631204,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631205,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631206,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631207,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631208,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631209,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631210,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631211,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631212,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631213,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631301,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631302,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631303,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631304,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631402,PostalCode,Thiruvallur,LGD,589,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11 -IN-PIN,631501,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631502,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631551,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631552,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631553,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631561,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631601,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631603,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631604,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631605,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631606,PostalCode,Kancheepuram,LGD,574,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.408359,12.409553,80.267827,13.056176,SOI_Districts,2023-12-11 -IN-PIN,631701,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,631702,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632001,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632002,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632004,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632006,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632007,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632008,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632009,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632010,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632011,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632012,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632013,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632014,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632055,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632057,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632058,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632059,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632101,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632102,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632103,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632104,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632105,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632106,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632107,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632113,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632114,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632201,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632202,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632203,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632204,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632209,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632301,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632311,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632312,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632313,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632314,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632315,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632316,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632317,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632318,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632319,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632326,PostalCode,Tiruvannamalai,LGD,593,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11 -IN-PIN,632401,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632404,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632405,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632501,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632502,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632503,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632504,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632505,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632506,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632507,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632508,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632509,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632510,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632511,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632512,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632513,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632514,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632515,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632516,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632517,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632518,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632519,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632520,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632521,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632531,PostalCode,Ranipet,LGD,731,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11 -IN-PIN,632601,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632602,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,632603,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,632604,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,635001,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635002,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635101,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635102,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635103,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635104,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635105,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635106,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635107,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635108,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635109,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635110,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635111,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635112,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635113,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635114,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635115,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635116,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635117,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635118,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635119,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635120,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635121,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635122,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635123,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635124,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635126,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635130,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635201,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635202,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635203,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635204,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635205,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635206,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635207,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635301,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635302,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635303,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635304,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635305,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,635306,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635307,PostalCode,Krishnagiri,LGD,577,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11 -IN-PIN,635601,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635602,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635651,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635652,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635653,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635654,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635655,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635701,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635702,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635703,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635710,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635751,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635752,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635754,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635801,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635802,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635803,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,635804,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635805,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635806,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,635807,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635808,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635809,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,635810,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,635811,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635812,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635813,PostalCode,Vellore,LGD,595,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11 -IN-PIN,635814,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635815,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635851,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635852,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635853,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635854,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,635901,PostalCode,Tirupathur,LGD,732,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.257929,78.917978,12.910674,SOI_Districts,2023-12-11 -IN-PIN,636005,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636008,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636010,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636011,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636012,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636013,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636015,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636030,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636101,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636102,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636103,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636104,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636105,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636106,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636107,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636108,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636109,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636110,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636111,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636112,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,636113,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,636114,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636115,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636116,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636117,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636118,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,636119,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636121,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636122,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636138,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636139,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636140,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636141,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636142,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,636201,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636202,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,636203,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,636204,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636301,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,636302,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636303,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636304,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636305,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636306,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636307,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636308,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636309,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636351,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636352,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636354,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636403,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636404,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636451,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636452,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636453,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636454,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636455,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636457,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636458,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636501,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636502,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636503,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636601,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636602,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,636701,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636704,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636705,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636803,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636804,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636805,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636806,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636807,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636808,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636809,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636810,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636811,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636813,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636902,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636903,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636904,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636905,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636906,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,636907,PostalCode,Dharmapuri,LGD,571,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11 -IN-PIN,637001,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637002,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637003,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637013,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637014,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637015,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637017,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637018,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637019,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637020,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637021,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637101,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,637102,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,637105,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,637107,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,637201,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637202,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637203,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637204,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637205,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637206,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637207,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637208,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637209,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637210,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637211,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637212,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637213,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637214,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637215,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637216,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637301,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,637302,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637303,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637304,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637401,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637402,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637403,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637404,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637405,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637406,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637407,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637408,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637409,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637410,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637411,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637412,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637415,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637501,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,637502,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,637503,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,637504,PostalCode,Salem,LGD,584,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11 -IN-PIN,637505,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,638001,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638002,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638003,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638004,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638005,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638007,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,638008,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638009,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638012,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638051,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638052,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638053,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638054,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638055,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638056,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638057,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638101,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638102,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638103,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638104,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638105,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638106,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638107,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638108,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638109,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638110,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638111,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638112,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638115,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638116,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638151,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638152,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638153,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638154,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638181,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,638182,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,638183,PostalCode,Namakkal,LGD,580,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11 -IN-PIN,638301,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638311,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638312,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638313,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638314,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638315,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638316,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638401,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,638402,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638451,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638452,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638453,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638454,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638455,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638456,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638457,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638458,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638459,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,638460,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,638461,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638462,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638476,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638501,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638502,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638503,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638504,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638505,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638506,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638656,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638657,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638660,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638661,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638672,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638673,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638701,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638702,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638703,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638706,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,638751,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638752,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,638812,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,639001,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639002,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639003,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639004,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639005,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639006,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639007,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639008,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639101,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,639102,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639103,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639104,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639105,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639107,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639108,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639109,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639110,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639111,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639112,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,639113,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639114,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639115,PostalCode,Tiruchirappalli,LGD,591,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11 -IN-PIN,639116,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639117,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639118,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639119,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639120,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639136,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639201,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639202,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639203,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639205,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639206,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,639207,PostalCode,Karur,LGD,576,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11 -IN-PIN,641001,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641005,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641006,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641007,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641008,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641009,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641010,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641015,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641016,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641017,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641019,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641020,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641022,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641024,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641026,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641027,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641028,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641029,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641030,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641031,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641032,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641034,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641035,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641039,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641041,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641045,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641047,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641048,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641049,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641050,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641062,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641101,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641103,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641104,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641105,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641107,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641108,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641109,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641110,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641111,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641112,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641113,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641114,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641201,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641202,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641302,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641305,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641401,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641402,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641407,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641602,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641603,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641604,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641605,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641606,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641607,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641652,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641653,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641654,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641655,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641658,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641659,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641662,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641663,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641664,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641665,PostalCode,Erode,LGD,573,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11 -IN-PIN,641666,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641667,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641668,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641669,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641670,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641671,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,641687,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,641697,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642001,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642002,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642003,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642004,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642005,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642006,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642007,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642101,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642102,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642103,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642104,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642105,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642107,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642109,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642110,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642111,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642112,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642113,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642114,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642120,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642122,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642123,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642126,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642128,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642129,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642132,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642134,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642154,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642201,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642202,PostalCode,Coimbatore,LGD,569,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11 -IN-PIN,642203,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642204,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642205,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642206,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,642207,PostalCode,Tiruppur,LGD,634,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11 -IN-PIN,643003,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,643202,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,643204,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,643205,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,643218,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,643231,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,643238,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,643239,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,643242,PostalCode,The Nilgiris,LGD,587,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11 -IN-PIN,670001,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670002,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670003,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670004,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670005,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670006,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670008,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670009,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670010,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670104,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670105,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670106,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670107,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670141,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670142,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670143,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670301,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670303,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670304,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670305,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670306,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670307,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670309,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670331,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670353,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670502,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670511,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670521,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670561,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670563,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670571,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670581,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670582,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670591,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670592,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670593,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670594,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670595,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670601,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670602,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670604,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670611,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670612,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670613,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670621,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670622,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670631,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670633,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670642,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670643,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670644,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,670645,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,670646,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,670650,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670651,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670662,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670671,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670672,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670673,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670674,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670676,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670692,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670693,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670694,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670701,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670702,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670703,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670705,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670706,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,670721,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,670731,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,670741,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,671121,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671122,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671123,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671124,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671310,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671312,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671313,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671314,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671315,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671316,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671317,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671318,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671319,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671320,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671321,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671322,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671323,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671324,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671326,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671348,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671351,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671531,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671532,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671533,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671534,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671541,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671542,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671543,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671551,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,671552,PostalCode,Kasaragod,LGD,558,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11 -IN-PIN,673001,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673003,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673004,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673005,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673007,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673008,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673010,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673015,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673016,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673017,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673019,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673021,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673101,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673102,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673104,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673121,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673122,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673123,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673301,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673303,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673304,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673305,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673306,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673307,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673309,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673310,PostalCode,Puducherry,LGD,600,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11 -IN-PIN,673311,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,673313,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,673314,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673315,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673316,PostalCode,Kannur,LGD,557,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11 -IN-PIN,673317,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673323,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673328,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673501,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673502,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673503,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673504,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673505,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673506,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673507,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673508,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673509,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673513,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673517,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673521,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673522,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673523,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673524,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673525,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673526,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673527,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673528,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673529,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673541,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673542,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673571,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673572,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673573,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673574,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673575,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673576,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673577,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673579,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673580,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673581,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673582,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673585,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673586,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673591,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673592,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673593,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673595,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673596,PostalCode,Wayanad,LGD,567,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11 -IN-PIN,673601,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673602,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673603,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673604,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673611,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673612,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673613,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673614,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673616,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673620,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673631,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673633,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673634,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673635,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673637,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673638,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673639,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673640,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673641,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673642,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,673655,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,673661,PostalCode,Kozhikode,LGD,561,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11 -IN-PIN,676101,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676102,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676104,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676106,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676108,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676109,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676121,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676122,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676123,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676301,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676302,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676303,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676304,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676305,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676306,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676307,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676312,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676317,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676320,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676501,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676503,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676504,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676505,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676506,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676507,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676508,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676509,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676517,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676519,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676521,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676523,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676525,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676528,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676541,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676542,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676551,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676552,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676553,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,676561,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,678001,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678004,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678006,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678007,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678008,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678101,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678102,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678103,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678501,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678502,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678503,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678504,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678505,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678506,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678507,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678508,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678510,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678532,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678533,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678534,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678541,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678542,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678543,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678544,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678545,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678546,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678551,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678552,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678553,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678555,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678556,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678557,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678571,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678572,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678573,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678574,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678581,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678582,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678583,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678592,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678593,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678594,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678595,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678597,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678598,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678601,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678611,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678612,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678613,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678621,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678622,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678623,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678624,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678631,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678633,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678641,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678642,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678651,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678671,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678682,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678683,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678684,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678686,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678687,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678701,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678702,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678703,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678705,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678706,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678721,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678722,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,678731,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679101,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679104,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679105,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,679106,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,679121,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679301,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679303,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679304,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679307,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679309,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679313,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679321,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679322,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679323,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679324,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679325,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679326,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679327,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679328,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679329,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679330,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679331,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679332,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679333,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679334,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679335,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679336,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679337,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679338,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679339,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679340,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679341,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679357,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679501,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679502,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679503,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679504,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679505,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679512,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679513,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679515,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679522,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679523,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679531,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,679532,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,679533,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679534,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679536,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679551,PostalCode,Palakkad,LGD,563,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11 -IN-PIN,679562,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,679563,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,679564,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,679571,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679572,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679573,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679575,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679576,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679578,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679579,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679580,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679581,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679582,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679583,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,679585,PostalCode,Malappuram,LGD,562,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11 -IN-PIN,680001,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680002,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680003,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680005,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680007,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680008,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680010,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680012,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680013,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680014,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680026,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680027,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680028,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680101,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680102,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680104,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680121,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680122,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680123,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680125,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680301,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680302,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680304,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680305,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680306,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680308,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680309,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680310,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680311,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680312,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680317,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680501,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680502,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680503,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680505,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680506,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680507,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680508,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680509,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680510,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680511,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680512,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680514,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680515,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680517,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680518,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680519,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680521,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680523,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680541,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680542,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680543,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680544,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680545,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680546,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680551,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680552,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680553,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680555,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680561,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680562,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680563,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680564,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680565,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680567,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680569,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680570,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680571,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680581,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680582,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680583,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680584,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680585,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680586,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680587,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680588,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680589,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680590,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680591,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680594,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680596,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680601,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680602,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680604,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680613,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680614,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680615,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680616,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680617,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680618,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680620,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680623,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680631,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680641,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680651,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680652,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680653,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680654,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680655,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680661,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680662,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680663,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680664,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680665,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680666,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680667,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,680668,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680669,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680671,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680681,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680682,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680683,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680684,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680686,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680687,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680689,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680691,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680697,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680699,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680701,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680702,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680703,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680712,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680721,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680722,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680724,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680731,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680732,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680733,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680734,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680741,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,680751,PostalCode,Thrissur,LGD,566,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11 -IN-PIN,682001,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682002,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682004,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682005,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682008,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682010,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682011,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682017,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682021,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682024,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682027,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682030,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682034,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682038,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682301,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682303,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682304,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682305,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682307,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682308,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682309,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682310,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682312,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682313,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682314,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682315,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682316,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682317,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682501,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682502,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682504,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682505,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682506,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682507,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682508,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682509,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,682551,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,682552,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,682553,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,682554,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,682555,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,682556,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,682557,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,682558,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,682559,PostalCode,Lakshadweep District,LGD,553,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11 -IN-PIN,683101,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683105,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683106,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683110,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683112,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683502,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683511,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683512,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683513,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683514,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683516,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683517,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683519,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683522,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683541,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683542,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683544,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683545,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683546,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683549,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683550,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683556,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683562,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683565,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683571,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683572,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683574,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683575,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683576,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683577,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683578,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683579,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683580,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683581,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683585,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,683587,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,685501,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685503,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685505,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685507,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685509,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685511,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685512,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685514,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685515,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685531,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685532,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685533,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685535,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685551,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685552,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685553,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685554,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685561,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685562,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685563,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685565,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685566,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685571,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685581,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685582,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685583,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685585,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685586,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685587,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685588,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685589,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685590,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685591,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685595,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685601,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685602,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685603,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685604,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685605,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685606,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685607,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685608,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685609,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685612,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685613,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685614,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685615,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685616,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685618,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685619,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,685620,PostalCode,Idukki,LGD,556,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11 -IN-PIN,686002,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686003,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686005,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686008,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686010,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686011,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686012,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686015,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686016,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686019,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686020,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686022,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686102,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,686103,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686104,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686105,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686122,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686123,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686143,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686144,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686146,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686502,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686503,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686504,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686506,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686507,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686509,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686510,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,686511,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,686512,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686513,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686514,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686516,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686518,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686519,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686522,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686532,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686534,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,686536,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686537,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686538,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686539,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686540,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686541,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686542,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686543,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686544,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686547,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,686561,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686563,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686564,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686571,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686573,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686574,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686576,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686577,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686579,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686580,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686582,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686584,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686586,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686602,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686603,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686605,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686606,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686607,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686610,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686611,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686612,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686613,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686631,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686632,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686633,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686634,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686636,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686637,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686651,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686652,PostalCode,Kottayam,LGD,560,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11 -IN-PIN,686661,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686662,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686663,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686664,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686665,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686667,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686668,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686669,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686670,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686671,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686672,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686673,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686681,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686691,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686692,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,686693,PostalCode,Ernakulam,LGD,555,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11 -IN-PIN,688001,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688003,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688004,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688005,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688006,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688011,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688014,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688501,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688502,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688503,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688504,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688505,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688506,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688521,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688522,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688523,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688524,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688525,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688526,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688527,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688528,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688529,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688530,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688531,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688532,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688533,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688534,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688535,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688536,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688537,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688539,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688540,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688541,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688561,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688562,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,688570,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689102,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689103,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689106,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689108,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689109,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689110,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689115,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689121,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689501,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689502,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689503,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689505,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689506,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689508,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689509,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689512,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689514,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689515,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689531,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689533,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689542,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689543,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689544,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689549,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689572,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689573,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689574,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689581,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689582,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689583,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689584,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689585,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689586,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689592,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689595,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689611,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689621,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689622,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689623,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689624,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,689625,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689641,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689642,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689643,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689646,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689647,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689648,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689650,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689652,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689656,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689662,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689663,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689666,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689667,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689668,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689672,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689673,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689674,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689678,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689691,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689693,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689694,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689695,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,689696,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,689699,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,689711,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,690101,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690103,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690104,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690105,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690107,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690110,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690501,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690502,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690503,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690504,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690505,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690506,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690507,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690508,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690509,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690513,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690514,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690515,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690516,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690517,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690518,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690519,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690520,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690521,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690522,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690523,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690524,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690525,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690526,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690527,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690532,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690533,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690534,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690535,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690536,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690540,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690542,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690548,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690558,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690559,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690561,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690572,PostalCode,Alappuzha,LGD,554,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11 -IN-PIN,690573,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,690574,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691001,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691004,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691005,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691010,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691011,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691015,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691301,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691302,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691303,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691306,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691307,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691308,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691309,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691310,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691311,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691312,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691322,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691331,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691332,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691333,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691500,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691501,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691502,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691503,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691505,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691506,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691507,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691508,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691509,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691516,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691520,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691521,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691522,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691524,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,691525,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,691526,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,691532,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691533,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691534,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691535,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691536,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691537,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691538,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691540,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691551,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,691553,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,691554,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,691555,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,691556,PostalCode,Pathanamthitta,LGD,564,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11 -IN-PIN,691559,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691560,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691571,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691572,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691573,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691574,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691576,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691577,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691578,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691581,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691582,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691583,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691584,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691601,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,691602,PostalCode,Kollam,LGD,559,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11 -IN-PIN,695002,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695003,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695004,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695005,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695012,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695013,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695014,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695019,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695024,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695026,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695027,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695032,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695042,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695043,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695101,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695102,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695103,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695121,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695122,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695123,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695124,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695125,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695126,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695132,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695133,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695141,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695142,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695143,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695144,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695145,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695146,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695301,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695302,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695303,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695304,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695305,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695306,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695308,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695309,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695310,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695311,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695313,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695316,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695317,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695318,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695501,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695502,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695504,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695505,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695506,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695507,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695521,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695525,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695526,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695527,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695528,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695541,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695542,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695543,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695551,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695562,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695563,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695564,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695568,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695571,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695572,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695573,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695574,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695575,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695582,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695584,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695586,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695587,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695588,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695589,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695601,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695602,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695603,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695604,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695605,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695606,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695607,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695608,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695609,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695610,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695611,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695612,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695614,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,695615,PostalCode,Thiruvananthapuram,LGD,565,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11 -IN-PIN,700102,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700110,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700113,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700119,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700121,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700122,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700124,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700125,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700126,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700128,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700130,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700132,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700135,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700136,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700137,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,700144,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,700150,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,700155,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700156,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700160,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,700162,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,711104,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711109,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711114,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711115,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711201,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711204,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711205,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711225,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711226,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711301,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711302,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711303,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711304,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711305,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711306,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711307,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711309,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711310,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711312,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711313,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711314,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711315,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711316,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711317,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711322,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711331,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711401,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711403,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711404,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711405,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711408,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,711409,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711410,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,711411,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711412,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711413,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,711414,PostalCode,Howrah,LGD,313,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11 -IN-PIN,712101,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712102,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712103,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712104,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712105,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712121,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712122,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712123,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712124,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712134,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712135,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712138,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712146,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712147,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712148,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712149,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712152,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712203,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712204,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712222,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712223,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712234,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712245,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712246,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712248,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712250,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712301,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712302,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712303,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712304,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712305,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712306,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712308,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712311,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712401,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712402,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712403,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712404,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712405,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712406,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712407,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712408,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712409,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712410,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712412,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712413,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712414,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712415,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712416,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712417,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712501,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712502,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712503,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712504,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712512,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712513,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712514,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712515,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712601,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712602,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712611,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712612,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712613,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712614,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712615,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712616,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712617,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712701,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712702,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,712706,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,713101,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713102,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713103,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713104,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713121,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713122,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713123,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,713124,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713125,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713126,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713127,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713128,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713129,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713130,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713131,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713132,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713140,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713141,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713142,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,713143,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713144,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713145,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713146,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713147,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713148,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713149,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713150,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713151,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713152,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713153,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713154,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713166,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713204,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713205,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713206,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713211,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713212,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713315,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713321,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713322,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713323,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713330,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713334,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713335,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713336,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713337,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713338,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713339,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713341,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713342,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713346,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713347,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713357,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713358,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713359,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713362,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713363,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713369,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713376,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713378,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713381,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713384,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713385,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713386,PostalCode,Paschim Bardhaman,LGD,704,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11 -IN-PIN,713401,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713403,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713404,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713405,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713406,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713407,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713408,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713409,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713420,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713421,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713422,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713423,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713424,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713426,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713427,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713428,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713502,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,713512,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713513,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713514,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713515,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713519,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,713520,PostalCode,Purba Bardhaman,LGD,306,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11 -IN-PIN,721101,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721102,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721121,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721122,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721124,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721125,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721126,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721127,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721128,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721129,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721130,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721131,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721133,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721134,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721135,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721136,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721137,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721139,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721140,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721144,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721145,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721146,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721147,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721148,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721149,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721150,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721151,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721152,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721153,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721154,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721155,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721156,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721157,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721158,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721160,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721161,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721166,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721172,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721201,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721211,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721212,PostalCode,Hooghly,LGD,312,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11 -IN-PIN,721222,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721232,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721242,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721253,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721260,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721301,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721303,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721304,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721305,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721306,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721401,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721402,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721403,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721404,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721405,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721406,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721420,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721422,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721423,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721424,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721425,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721426,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721427,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721428,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721429,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721430,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721431,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721432,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721433,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721434,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721435,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721436,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721437,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721438,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721439,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721440,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721441,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721442,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721443,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721444,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721445,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721446,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721447,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721448,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721449,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721450,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721451,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721452,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721453,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721454,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721455,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721456,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721457,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721458,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721463,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721467,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721501,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721503,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721504,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721505,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721506,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721507,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721513,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721514,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721515,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721516,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721517,PostalCode,Jhargram,LGD,703,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11 -IN-PIN,721601,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721602,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721603,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721624,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721625,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721626,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721627,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721628,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721629,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721631,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721632,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721633,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721634,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721635,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721637,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721641,PostalCode,Paschim Medinipur,LGD,318,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11 -IN-PIN,721642,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721644,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721645,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721646,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721647,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721648,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721649,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721650,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721651,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721652,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721653,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721654,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721655,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721656,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721658,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,721659,PostalCode,Purba Medinipur,LGD,317,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11 -IN-PIN,722102,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722121,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722122,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722132,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722133,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722134,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722135,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722136,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722137,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722138,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722139,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722140,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722141,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722142,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722143,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722144,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722146,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722147,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722148,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722149,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722150,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722151,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722152,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722153,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722154,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722155,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722156,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722157,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722158,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722160,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722161,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722162,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722164,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722173,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722201,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722202,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722203,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722204,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722205,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722206,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722207,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,722208,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,723101,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723102,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723103,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723104,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723121,PostalCode,Bankura,LGD,305,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11 -IN-PIN,723126,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723127,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723128,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723129,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723130,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723131,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723132,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723133,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723142,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723143,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723145,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723146,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723147,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723148,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723149,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723151,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723152,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723153,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723154,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723155,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723156,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723201,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723202,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723212,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723213,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,723215,PostalCode,Purulia,LGD,321,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11 -IN-PIN,731101,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731102,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731103,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731104,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731121,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731123,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731124,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731125,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731126,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731127,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731129,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731130,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731132,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731201,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731202,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731204,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731213,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731214,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731215,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731216,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731219,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731220,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731221,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731222,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731223,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731233,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731234,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731235,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731236,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731237,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731238,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731240,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731241,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731242,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731243,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731244,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731245,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731301,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731302,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731303,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,731304,PostalCode,Birbhum,LGD,307,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11 -IN-PIN,732101,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732102,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732103,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732121,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732122,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732123,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732124,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732125,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732126,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732127,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732128,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732138,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732139,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732140,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732141,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732142,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732144,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732201,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732202,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732203,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732204,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732205,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732206,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732207,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732208,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732209,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732210,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732215,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,732216,PostalCode,Malda,LGD,316,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11 -IN-PIN,733101,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733102,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733103,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733121,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733123,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733124,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733125,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733126,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733127,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733128,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733129,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733130,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733132,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733133,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733134,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733140,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733141,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733142,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733143,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733145,PostalCode,Dakshin Dinajpur,LGD,310,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11 -IN-PIN,733156,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733201,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733202,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733207,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733208,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733209,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733210,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,733215,PostalCode,Uttar Dinajpur,LGD,311,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11 -IN-PIN,734002,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734003,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734008,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734009,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734010,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734011,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734012,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734013,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734014,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734101,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734102,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734104,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734105,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734201,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734203,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734213,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734214,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734215,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734216,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734217,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734218,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734219,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734220,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734221,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734222,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734223,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734224,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734226,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734301,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -IN-PIN,734311,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -IN-PIN,734312,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734313,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734314,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -IN-PIN,734315,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -IN-PIN,734316,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -IN-PIN,734423,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734424,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734425,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734426,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734427,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734429,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734434,PostalCode,Darjeeling,LGD,309,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11 -IN-PIN,734501,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,734503,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -IN-PIN,735102,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735121,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735122,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,735132,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735133,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735134,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735135,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735202,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735203,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735204,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735205,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735206,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735207,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735208,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735209,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735210,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735211,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735212,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735213,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735214,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735215,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735216,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735217,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735218,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735219,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735220,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735221,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735222,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735223,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735224,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735225,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735227,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735228,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,735229,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735230,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735231,PostalCode,Kalimpong,LGD,702,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11 -IN-PIN,735233,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735301,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,735302,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,735303,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,735304,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,735305,PostalCode,Jalpaiguri,LGD,314,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11 -IN-PIN,736121,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736122,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736123,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736131,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736133,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736134,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736135,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736145,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736146,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736156,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736157,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736158,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736159,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736160,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736165,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736167,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736168,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736169,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736170,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736171,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736172,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736176,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736179,PostalCode,Cooch Behar,LGD,308,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11 -IN-PIN,736182,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736201,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736202,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736203,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736204,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736205,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736206,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736207,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,736208,PostalCode,Alipurduar,LGD,664,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11 -IN-PIN,737101,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737102,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737103,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737106,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737107,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737111,PostalCode,Gyalshing,LGD,228,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 -IN-PIN,737113,PostalCode,Gyalshing,LGD,228,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11 -IN-PIN,737116,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737120,PostalCode,Mangan,LGD,226,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11 -IN-PIN,737121,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737126,PostalCode,Namchi,LGD,227,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -IN-PIN,737128,PostalCode,Namchi,LGD,227,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -IN-PIN,737131,PostalCode,Pakyong,LGD,741,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -IN-PIN,737132,PostalCode,Pakyong,LGD,741,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -IN-PIN,737133,PostalCode,Pakyong,LGD,741,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11 -IN-PIN,737134,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737135,PostalCode,Gangtok,LGD,225,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11 -IN-PIN,737139,PostalCode,Namchi,LGD,227,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11 -IN-PIN,741101,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741102,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741103,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741121,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741122,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741123,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741124,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741125,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741126,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741127,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741137,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741138,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741139,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741140,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741150,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741151,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741152,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741153,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741154,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741155,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741156,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,741157,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741158,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741160,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741161,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741162,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741163,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741164,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741165,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741166,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741167,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741181,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741201,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741202,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741221,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741222,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741223,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741238,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741245,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741246,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741247,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741248,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741249,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741250,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741251,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741253,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741254,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741255,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741256,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741257,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741301,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741302,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741313,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741315,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741316,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741317,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741401,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741402,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741404,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741501,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741502,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741503,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741504,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741505,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741506,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741507,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741508,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,741509,PostalCode,Nadia,LGD,320,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11 -IN-PIN,742101,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742102,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742104,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742113,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742121,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742122,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742123,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742132,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742133,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742134,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742135,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742136,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742137,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742138,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742140,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742147,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742148,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742149,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742151,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742159,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742161,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742163,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742164,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742165,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742166,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742168,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742174,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742175,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742184,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742187,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742189,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742201,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742202,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742212,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742213,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742223,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742224,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742225,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742226,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742227,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742235,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742236,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742237,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742302,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742303,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742304,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742305,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742306,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742308,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742401,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742402,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742404,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742405,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742406,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742407,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742408,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742409,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,742410,PostalCode,Murshidabad,LGD,319,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11 -IN-PIN,743122,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743126,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743127,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743130,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743135,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743144,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743145,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743166,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743193,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743221,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743222,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743232,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743233,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743234,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743235,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743245,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743247,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743248,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743249,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743251,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743252,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743262,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743263,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743270,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743271,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743272,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743273,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743286,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743287,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743289,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743290,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743291,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743292,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743293,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743294,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743297,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743312,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743318,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743329,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743330,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743331,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743332,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743336,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743337,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743338,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743345,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743347,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743348,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743349,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743351,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743354,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743355,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743356,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743357,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743363,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743368,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743370,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743371,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743372,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743373,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743374,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743375,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743376,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743377,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743378,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743383,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743387,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743395,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743399,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743401,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743405,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743411,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743412,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743422,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743423,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743424,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743425,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743426,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743427,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743428,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743429,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743435,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743437,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743438,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743439,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743442,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743445,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743446,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743456,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743502,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743503,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743504,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743513,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743609,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743610,PostalCode,South 24 Parganas,LGD,304,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11 -IN-PIN,743611,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743701,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743702,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743704,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743710,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,743711,PostalCode,North 24 Parganas,LGD,303,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11 -IN-PIN,744101,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -IN-PIN,744103,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -IN-PIN,744104,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -IN-PIN,744105,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -IN-PIN,744201,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -IN-PIN,744202,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -IN-PIN,744203,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -IN-PIN,744204,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -IN-PIN,744205,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -IN-PIN,744206,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -IN-PIN,744207,PostalCode,South Andamans,LGD,602,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11 -IN-PIN,744209,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -IN-PIN,744210,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -IN-PIN,744211,PostalCode,North And Middle Andaman,LGD,632,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11 -IN-PIN,744301,PostalCode,Nicobars,LGD,603,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 -IN-PIN,744302,PostalCode,Nicobars,LGD,603,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 -IN-PIN,744303,PostalCode,Nicobars,LGD,603,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 -IN-PIN,744304,PostalCode,Nicobars,LGD,603,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11 -IN-PIN,751002,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,751017,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,751019,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,751021,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,751024,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,751028,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,751029,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,751030,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,751031,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752002,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752004,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752010,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752011,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752012,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752013,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752014,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752015,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752016,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752017,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752018,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752019,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752020,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752021,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752022,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752023,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752024,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752025,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752026,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752027,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752030,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752031,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752032,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752034,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752035,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752038,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752045,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752046,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752050,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752054,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752055,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752056,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752057,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752060,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752061,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752062,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752063,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752064,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752065,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752066,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752068,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752069,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752070,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752077,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752078,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752079,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752080,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752081,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752082,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752083,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752084,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752085,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752089,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752090,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752091,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752092,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752093,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752094,PostalCode,Nayagada,LGD,367,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11 -IN-PIN,752100,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752101,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752102,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752103,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,752104,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752105,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752106,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752107,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,752108,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752109,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752110,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752111,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752113,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752114,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752116,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752118,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752119,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,752120,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,752121,PostalCode,Puri,LGD,369,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11 -IN-PIN,753006,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,753011,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754001,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754002,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754003,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754004,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754005,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754006,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754007,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754008,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754009,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754010,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754011,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754012,PostalCode,Khordha,LGD,362,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11 -IN-PIN,754018,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754022,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754023,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,754024,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,754025,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754027,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754028,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754029,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754030,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754031,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754032,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754034,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754035,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754037,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754071,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754082,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,754100,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754102,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754103,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754104,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754105,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754106,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754107,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754108,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754109,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754110,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754111,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754112,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754113,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754114,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754119,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754130,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754131,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754132,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754133,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754134,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754135,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754136,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754137,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754138,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754139,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754140,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754141,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754142,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754153,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754160,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754162,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754200,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754201,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754202,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754203,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754204,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754205,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,754206,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754207,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754208,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754209,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754210,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754211,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754212,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754213,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754214,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,754215,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754216,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754217,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754218,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754219,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754220,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754221,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754222,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754223,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754224,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754225,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754227,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754228,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754231,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754239,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754240,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754244,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754245,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754246,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754248,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754250,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754253,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754289,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,754290,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754292,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,754293,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754294,PostalCode,Jagatsinghapur,LGD,355,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11 -IN-PIN,754295,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754296,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,754297,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754298,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,754299,PostalCode,Kataka,LGD,350,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11 -IN-PIN,755001,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755003,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755004,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755006,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755008,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755009,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755010,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755011,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755012,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755013,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755014,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755015,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755016,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755017,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755018,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755019,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755020,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755022,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755023,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755025,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755026,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755027,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755036,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755043,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755044,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755050,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,755061,PostalCode,Kendrapada,LGD,360,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11 -IN-PIN,755062,PostalCode,Jajpur,LGD,356,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11 -IN-PIN,756002,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756003,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756019,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756020,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756021,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756023,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756024,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756025,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756026,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756027,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756028,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756029,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756033,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756034,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756035,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756036,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756037,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756038,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756039,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756040,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756041,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756042,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756043,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756044,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756045,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756046,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756047,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756048,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756049,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756051,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756056,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756058,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756059,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756060,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756079,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756080,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756081,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756083,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756084,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756085,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756086,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756087,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756088,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756089,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756100,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756101,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756111,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756112,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756114,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756115,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756116,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756117,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756118,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756119,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756120,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756121,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756122,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756123,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756124,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756125,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756126,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756127,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756128,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756129,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756130,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756131,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756132,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756133,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756134,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,756135,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756137,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756138,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756139,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756144,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756162,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756163,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756164,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756165,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756166,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756167,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756168,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756171,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756181,PostalCode,Bhadrak,LGD,348,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11 -IN-PIN,756182,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,757001,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757002,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757003,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757014,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757016,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757017,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757018,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757019,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757020,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757021,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757022,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757023,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757024,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757025,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757026,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757028,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757029,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757030,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757031,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757032,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757033,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757034,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757035,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757036,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757037,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757038,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757039,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757040,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757041,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757042,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757043,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757045,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757046,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757047,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757048,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757049,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757050,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757051,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757052,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757053,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757054,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757055,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757056,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757073,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757074,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757075,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757077,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757079,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757081,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757082,PostalCode,Baleshwar,LGD,346,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11 -IN-PIN,757083,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757084,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757085,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757086,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757087,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757091,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757092,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757093,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757100,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757101,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757102,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757103,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757104,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757105,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757106,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,757107,PostalCode,Mayurbhanj,LGD,365,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11 -IN-PIN,758002,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758013,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758014,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758015,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758016,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758017,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758018,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758019,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758020,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758021,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758022,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758023,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758025,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758026,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758027,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758028,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758029,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758030,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758031,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758032,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758034,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758035,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758036,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758037,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758038,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758041,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758043,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758044,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758045,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758046,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758047,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758076,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758078,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758079,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758080,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758081,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758082,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758083,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758084,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758085,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758086,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,758087,PostalCode,Kendujhar,LGD,361,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11 -IN-PIN,759001,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759013,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759014,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759015,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759016,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759017,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759018,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759019,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759020,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759021,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759022,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759023,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759024,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759025,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759026,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759027,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759028,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759029,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759037,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759039,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759040,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759100,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759101,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759102,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759103,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759105,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759106,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759107,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759111,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759116,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759117,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759118,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759119,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759120,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759121,PostalCode,Dhenkanal,LGD,352,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11 -IN-PIN,759122,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759123,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759124,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759125,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759126,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759127,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759128,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759129,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759130,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759132,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759141,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759143,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759145,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759146,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759147,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759148,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759149,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759150,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,759151,PostalCode,Anugola,LGD,344,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11 -IN-PIN,760002,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,760003,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,760007,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,760008,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,760010,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761001,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761002,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761003,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761004,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761005,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761006,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761007,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761008,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761009,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761010,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761011,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761012,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761013,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761014,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761015,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761016,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761017,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761018,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761019,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761020,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761026,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761027,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761028,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761029,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761030,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761031,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761032,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761035,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761037,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761041,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761042,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761043,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761045,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761052,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761054,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761055,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761100,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761101,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761102,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761103,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761104,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761105,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761106,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761107,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761108,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761109,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761110,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761114,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761118,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761121,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761123,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761126,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761131,PostalCode,Ganjam,LGD,354,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11 -IN-PIN,761200,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761201,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761206,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761207,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761208,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761209,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761210,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761211,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761212,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761213,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761214,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761215,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,761217,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,762001,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762002,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762010,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762011,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762012,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762013,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762014,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762015,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762016,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762017,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762018,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762019,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762020,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762021,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762022,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762023,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762024,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762026,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762027,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762028,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762029,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762030,PostalCode,Boudh,LGD,349,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11 -IN-PIN,762100,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762101,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762102,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762103,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762104,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762105,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762106,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762107,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762109,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762110,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,762112,PostalCode,Kandhamala,LGD,359,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11 -IN-PIN,763001,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,763002,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,763003,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,763008,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764002,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764003,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764005,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764006,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764011,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764014,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764020,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764021,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764027,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764028,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764036,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764037,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764039,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764040,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764041,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764042,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764043,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764044,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -IN-PIN,764045,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -IN-PIN,764051,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -IN-PIN,764052,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -IN-PIN,764056,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764057,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764058,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764061,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764062,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,764070,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764071,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764072,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764073,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764074,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764075,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764076,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764077,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764078,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764081,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,764085,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,764086,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -IN-PIN,764087,PostalCode,Malkangiri,LGD,364,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11 -IN-PIN,764088,PostalCode,Nabarangpur,LGD,366,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11 -IN-PIN,765002,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765013,PostalCode,Koraput,LGD,363,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11 -IN-PIN,765015,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765016,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765017,PostalCode,Gajapati,LGD,353,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11 -IN-PIN,765018,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765019,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765020,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765021,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765022,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765023,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765024,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765025,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765026,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765029,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765033,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,765034,PostalCode,Rayagada,LGD,370,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11 -IN-PIN,766002,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766003,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766011,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766012,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766013,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766014,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766015,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766016,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766017,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766018,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766019,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766020,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766023,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766026,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766027,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766028,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766029,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766031,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766032,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766036,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766037,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766100,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766101,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766102,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766103,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766104,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -IN-PIN,766105,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -IN-PIN,766106,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -IN-PIN,766107,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -IN-PIN,766108,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -IN-PIN,766110,PostalCode,Kalahandi,LGD,358,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11 -IN-PIN,766111,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -IN-PIN,766118,PostalCode,Nuapada,LGD,368,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11 -IN-PIN,767002,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767016,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -IN-PIN,767017,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -IN-PIN,767018,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -IN-PIN,767019,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -IN-PIN,767020,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767021,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767022,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767023,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -IN-PIN,767024,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767025,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767026,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767027,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767028,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767029,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767030,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767032,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767033,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767035,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767038,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767039,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767040,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767041,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767045,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -IN-PIN,767046,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767048,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767060,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767061,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767062,PostalCode,Subarnapur,LGD,372,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11 -IN-PIN,767065,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767066,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767067,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767068,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,767071,PostalCode,Balangir,LGD,345,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11 -IN-PIN,768005,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768006,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768016,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768017,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768024,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768025,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768027,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768029,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768030,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768031,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768032,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768033,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768034,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768035,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768036,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768037,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768038,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768039,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768040,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768042,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768045,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768048,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768049,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768050,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768052,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768053,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768102,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768103,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768104,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768105,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768106,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768107,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768108,PostalCode,Debagada,LGD,351,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 -IN-PIN,768109,PostalCode,Debagada,LGD,351,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 -IN-PIN,768110,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768111,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768112,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768113,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768115,PostalCode,Baragada,LGD,347,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11 -IN-PIN,768118,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768119,PostalCode,Debagada,LGD,351,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 -IN-PIN,768121,PostalCode,Debagada,LGD,351,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11 -IN-PIN,768200,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768201,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768202,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768204,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768210,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768211,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768212,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768213,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768214,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768215,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768216,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768217,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768219,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768220,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768221,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768222,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768224,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768225,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768226,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768227,PostalCode,Sambalpur,LGD,371,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11 -IN-PIN,768228,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,768234,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,769003,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,769004,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,769012,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,769016,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,769042,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,769043,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770002,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770011,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770012,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770013,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770014,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770015,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770016,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770017,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770018,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770019,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770020,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770021,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770022,PostalCode,Jharsuguda,LGD,357,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11 -IN-PIN,770023,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770024,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770025,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770031,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770033,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770034,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770035,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770036,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770037,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770038,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770039,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770040,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770041,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770042,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770043,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770044,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770046,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770048,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770051,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770052,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770070,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770072,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770073,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770074,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770075,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,770076,PostalCode,Sundaragada,LGD,373,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.099526,84.494844,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11 -IN-PIN,781004,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,781017,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,781023,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,781026,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,781028,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781029,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,781030,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781031,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781101,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781102,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781120,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781121,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781122,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781123,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781124,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781126,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781127,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781129,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781131,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,781133,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781134,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781136,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781137,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781138,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781141,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781150,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,781171,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,781301,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781302,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781303,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781304,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781305,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781306,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781307,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781308,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781309,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781310,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781311,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781312,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781313,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781314,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781315,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781316,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781317,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781318,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781319,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781320,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781321,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781325,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781326,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781327,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781328,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781329,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781330,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781333,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781334,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781335,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781337,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781338,PostalCode,Barpeta,LGD,280,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11 -IN-PIN,781339,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781340,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781341,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781343,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781344,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781346,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781347,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781348,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781349,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781350,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781351,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781352,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781353,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781354,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781355,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781360,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781364,PostalCode,Tamulpur,LGD,756,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781365,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781366,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781367,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781368,PostalCode,Tamulpur,LGD,756,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781369,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781370,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781371,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781372,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781373,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781374,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781375,PostalCode,Bajali,LGD,739,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11 -IN-PIN,781376,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781377,PostalCode,Baksa,LGD,616,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11 -IN-PIN,781378,PostalCode,Nalbari,LGD,298,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11 -IN-PIN,781380,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781381,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,781382,PostalCode,Kamrup,LGD,291,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11 -IN-PIN,782001,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782002,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782003,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782101,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782102,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782103,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782104,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782105,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782106,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782120,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782121,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782122,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782123,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782124,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782125,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782126,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782127,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782128,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782135,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782136,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782137,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782138,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782139,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782140,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782141,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782142,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782143,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782144,PostalCode,Nagaon,LGD,297,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11 -IN-PIN,782401,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,782402,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,782403,PostalCode,Kamrup Metro,LGD,618,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11 -IN-PIN,782410,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782411,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782412,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782413,PostalCode,Marigaon,LGD,296,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11 -IN-PIN,782426,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782427,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782428,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782429,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782435,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782439,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782440,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782441,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782442,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782445,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782446,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782447,PostalCode,Hojai,LGD,709,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11 -IN-PIN,782448,PostalCode,West Karbi Anglong,LGD,710,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11 -IN-PIN,782450,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782461,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782462,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782470,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782480,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782481,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782482,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782485,PostalCode,West Karbi Anglong,LGD,710,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11 -IN-PIN,782486,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,782490,PostalCode,Karbi Anglong,LGD,292,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11 -IN-PIN,783101,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783120,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783121,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783123,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783124,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783125,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783126,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783127,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783128,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783129,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783130,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783131,PostalCode,South Salmara Mancachar,LGD,707,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 -IN-PIN,783132,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783133,PostalCode,Goalpara,LGD,287,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11 -IN-PIN,783134,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783135,PostalCode,South Salmara Mancachar,LGD,707,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 -IN-PIN,783136,PostalCode,South Salmara Mancachar,LGD,707,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11 -IN-PIN,783301,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783323,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783324,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783325,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783330,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783331,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783333,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783334,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783335,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783336,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783337,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783339,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783345,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783346,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783347,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783348,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783349,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783350,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783354,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783360,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783361,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783369,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783370,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783371,PostalCode,Dhubri,LGD,285,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11 -IN-PIN,783372,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783373,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783375,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783376,PostalCode,Kokrajhar,LGD,294,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11 -IN-PIN,783380,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783381,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783382,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783383,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783384,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783385,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783386,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783388,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783389,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783390,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783391,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783392,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,783393,PostalCode,Chirang,LGD,612,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11 -IN-PIN,783394,PostalCode,Bongaigaon,LGD,281,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11 -IN-PIN,784001,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784010,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784025,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784026,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784027,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784028,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784101,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784102,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784103,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784104,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784105,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784110,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784111,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784112,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784113,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784114,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784115,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784116,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784117,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784125,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784144,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784145,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784146,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784147,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784148,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784149,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784150,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784153,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784154,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784160,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,784161,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,784163,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,784164,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,784165,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,784166,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784167,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784168,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784169,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784170,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784171,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784172,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784173,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784174,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784175,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784176,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784177,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784178,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784179,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784180,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784182,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784184,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784189,PostalCode,Biswanath,LGD,705,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11 -IN-PIN,784190,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784501,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784502,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784504,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784505,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784506,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784507,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784508,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784509,PostalCode,Sonitpur,LGD,301,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11 -IN-PIN,784510,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784513,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784514,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784521,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784522,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784523,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784524,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784525,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,784526,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784527,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784528,PostalCode,Udalguri,LGD,617,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11 -IN-PIN,784529,PostalCode,Darrang,LGD,283,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11 -IN-PIN,785001,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785004,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785006,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785007,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785008,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785009,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785010,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785013,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785014,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785015,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785101,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785102,PostalCode,Majuli,LGD,706,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 -IN-PIN,785104,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785105,PostalCode,Majuli,LGD,706,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11 -IN-PIN,785106,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785107,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785108,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785110,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785111,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785112,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785601,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785602,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785603,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785609,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785610,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785611,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785612,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785613,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785614,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785615,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785616,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785618,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785619,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785621,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785622,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785625,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785626,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785630,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785631,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785632,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785633,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785634,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785635,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785636,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785640,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785661,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785662,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785663,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785664,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785665,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785666,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785667,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785669,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785670,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785671,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785672,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785673,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785674,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785675,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,785676,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,785680,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785681,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785682,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785683,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785684,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785685,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785686,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785687,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785688,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785689,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785690,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785691,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785692,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785693,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785696,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785697,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785698,PostalCode,Charaideo,LGD,708,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11 -IN-PIN,785699,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785700,PostalCode,Jorhat,LGD,290,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11 -IN-PIN,785701,PostalCode,Sivasagar,LGD,300,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11 -IN-PIN,785702,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785703,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,785705,PostalCode,Golaghat,LGD,288,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11 -IN-PIN,786001,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786002,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786003,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786004,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786006,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786007,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786008,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786010,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786012,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786101,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786103,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786125,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786126,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786145,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786146,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786147,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786148,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786150,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786151,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786152,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786153,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786154,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786155,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786156,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786157,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786158,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786159,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786160,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786170,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786171,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786173,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786174,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786179,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786181,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786182,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786183,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786184,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786187,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786188,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786189,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786190,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786191,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786192,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786601,PostalCode,Tinsukia,LGD,302,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11 -IN-PIN,786602,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786610,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786611,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786612,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786613,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786614,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786621,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,786692,PostalCode,Dibrugarh,LGD,286,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11 -IN-PIN,787023,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,787026,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787031,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,787032,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,787033,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,787034,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787035,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787051,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,787052,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,787053,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787054,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,787055,PostalCode,Lakhimpur,LGD,295,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.521054,SOI_Districts,2023-12-11 -IN-PIN,787056,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787057,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787058,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787059,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787060,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787061,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,787110,PostalCode,Dhemaji,LGD,284,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11 -IN-PIN,788001,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788002,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788003,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788004,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788005,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788006,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788007,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788009,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788010,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788011,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788013,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788015,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788025,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788026,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788030,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788031,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788098,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788099,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788101,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788102,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788103,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788104,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788106,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788107,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788108,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -IN-PIN,788111,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788112,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788113,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788114,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788115,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788116,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788117,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788119,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788120,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788121,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788123,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788126,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788127,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788150,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788152,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788155,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788156,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788160,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788161,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788162,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788163,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788164,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788165,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788166,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788168,PostalCode,Hailakandi,LGD,289,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,23.762641,92.780603,24.879442,SOI_Districts,2023-12-11 -IN-PIN,788701,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788709,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788710,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788711,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788712,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788713,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788722,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788723,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788724,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788725,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788726,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788727,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788728,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788734,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788735,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788736,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788737,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788738,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788781,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788802,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788804,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788805,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788806,PostalCode,Sribhumi,LGD,293,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11 -IN-PIN,788815,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788816,PostalCode,Cachar,LGD,282,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11 -IN-PIN,788818,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -IN-PIN,788819,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -IN-PIN,788820,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -IN-PIN,788830,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -IN-PIN,788831,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -IN-PIN,788832,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -IN-PIN,788931,PostalCode,Dima Hasao,LGD,299,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11 -IN-PIN,790001,PostalCode,Bichom,LGD,787,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -IN-PIN,790002,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -IN-PIN,790003,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -IN-PIN,790101,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -IN-PIN,790102,PostalCode,Bichom,LGD,787,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -IN-PIN,790103,PostalCode,Pakke Kessang,LGD,723,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11 -IN-PIN,790104,PostalCode,Tawang,LGD,238,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -IN-PIN,790105,PostalCode,Tawang,LGD,238,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -IN-PIN,790106,PostalCode,Tawang,LGD,238,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11 -IN-PIN,790114,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -IN-PIN,790116,PostalCode,West Kameng,LGD,242,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11 -IN-PIN,791001,PostalCode,Siang,LGD,679,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -IN-PIN,791002,PostalCode,Upper Siang,LGD,240,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -IN-PIN,791003,PostalCode,Shi Yomi,LGD,725,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11 -IN-PIN,791101,PostalCode,Leparada,LGD,724,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11 -IN-PIN,791102,PostalCode,East Siang,LGD,232,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -IN-PIN,791103,PostalCode,Siang,LGD,679,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11 -IN-PIN,791104,PostalCode,East Siang,LGD,232,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -IN-PIN,791105,PostalCode,Upper Siang,LGD,240,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11 -IN-PIN,791110,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -IN-PIN,791111,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -IN-PIN,791112,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -IN-PIN,791113,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -IN-PIN,791114,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -IN-PIN,791118,PostalCode,Kra Daadi,LGD,677,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11 -IN-PIN,791119,PostalCode,Keyi Panyor,LGD,786,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11 -IN-PIN,791120,PostalCode,Kamle,LGD,718,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11 -IN-PIN,791121,PostalCode,East Siang,LGD,232,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11 -IN-PIN,791122,PostalCode,Upper Subansiri,LGD,241,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11 -IN-PIN,791123,PostalCode,Papum Pare,LGD,237,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11 -IN-PIN,792001,PostalCode,Lohit,LGD,234,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 -IN-PIN,792056,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -IN-PIN,792101,PostalCode,Dibang Valley,LGD,230,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11 -IN-PIN,792102,PostalCode,Lohit,LGD,234,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 -IN-PIN,792103,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -IN-PIN,792104,PostalCode,Anjaw,LGD,628,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11 -IN-PIN,792105,PostalCode,Namsai,LGD,678,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11 -IN-PIN,792110,PostalCode,Lower Dibang Valley,LGD,235,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11 -IN-PIN,792111,PostalCode,Lohit,LGD,234,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11 -IN-PIN,792120,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -IN-PIN,792121,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -IN-PIN,792122,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -IN-PIN,792123,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -IN-PIN,792124,PostalCode,Changlang,LGD,229,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11 -IN-PIN,792129,PostalCode,Tirap,LGD,239,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -IN-PIN,792130,PostalCode,Tirap,LGD,239,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11 -IN-PIN,792131,PostalCode,Longding,LGD,666,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11 -IN-PIN,793001,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793003,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793004,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793005,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793006,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793009,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793010,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793012,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793014,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793015,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793017,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793018,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793019,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793021,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793022,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793101,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,793102,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,793103,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,793104,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,793105,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,793106,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793107,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793108,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793109,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793110,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793112,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793113,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793114,PostalCode,South West Khasi Hills,LGD,658,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 -IN-PIN,793115,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793116,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,793119,PostalCode,Eastern West Khasi Hills,LGD,740,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 -IN-PIN,793120,PostalCode,Eastern West Khasi Hills,LGD,740,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11 -IN-PIN,793121,PostalCode,East Khasi Hills,LGD,274,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11 -IN-PIN,793122,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,793123,PostalCode,Ri Bhoi,LGD,276,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11 -IN-PIN,793126,PostalCode,South West Khasi Hills,LGD,658,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11 -IN-PIN,793150,PostalCode,West Jaintia Hills,LGD,275,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 -IN-PIN,793151,PostalCode,West Jaintia Hills,LGD,275,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 -IN-PIN,793160,PostalCode,East Jaintia Hills,LGD,657,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 -IN-PIN,793161,PostalCode,West Jaintia Hills,LGD,275,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11 -IN-PIN,793200,PostalCode,East Jaintia Hills,LGD,657,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 -IN-PIN,793210,PostalCode,East Jaintia Hills,LGD,657,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11 -IN-PIN,794001,PostalCode,South West Garo Hills,LGD,663,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 -IN-PIN,794002,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794003,PostalCode,West Garo Hills,LGD,278,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -IN-PIN,794004,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794005,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794101,PostalCode,West Garo Hills,LGD,278,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11 -IN-PIN,794102,PostalCode,South Garo Hills,LGD,277,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -IN-PIN,794103,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794104,PostalCode,South Garo Hills,LGD,277,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -IN-PIN,794105,PostalCode,South Garo Hills,LGD,277,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -IN-PIN,794106,PostalCode,South West Garo Hills,LGD,663,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11 -IN-PIN,794108,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794109,PostalCode,South Garo Hills,LGD,277,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11 -IN-PIN,794110,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794111,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794112,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794113,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794114,PostalCode,East Garo Hills,LGD,273,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11 -IN-PIN,794115,PostalCode,North Garo Hills,LGD,656,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11 -IN-PIN,795001,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795002,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795003,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795004,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -IN-PIN,795005,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795006,PostalCode,Pherzawl,LGD,715,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11 -IN-PIN,795007,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -IN-PIN,795008,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795009,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -IN-PIN,795010,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795101,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -IN-PIN,795102,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -IN-PIN,795103,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -IN-PIN,795104,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -IN-PIN,795105,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -IN-PIN,795106,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -IN-PIN,795107,PostalCode,Kangpokpi,LGD,712,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -IN-PIN,795112,PostalCode,Kangpokpi,LGD,712,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -IN-PIN,795113,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -IN-PIN,795114,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795115,PostalCode,Jiribam,LGD,713,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 -IN-PIN,795116,PostalCode,Jiribam,LGD,713,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11 -IN-PIN,795117,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -IN-PIN,795118,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795125,PostalCode,Tamenglong,LGD,258,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11 -IN-PIN,795126,PostalCode,Bishnupur,LGD,252,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11 -IN-PIN,795127,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -IN-PIN,795128,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -IN-PIN,795129,PostalCode,Kangpokpi,LGD,712,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11 -IN-PIN,795130,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795131,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -IN-PIN,795132,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -IN-PIN,795134,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -IN-PIN,795135,PostalCode,Chandel,LGD,253,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11 -IN-PIN,795136,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -IN-PIN,795138,PostalCode,Thoubal,LGD,259,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 -IN-PIN,795139,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -IN-PIN,795140,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795141,PostalCode,Noney,LGD,714,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 -IN-PIN,795142,PostalCode,Kamjong,LGD,717,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11 -IN-PIN,795144,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -IN-PIN,795145,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795146,PostalCode,Imphal West,LGD,256,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11 -IN-PIN,795147,PostalCode,Noney,LGD,714,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 -IN-PIN,795148,PostalCode,Thoubal,LGD,259,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11 -IN-PIN,795149,PostalCode,Imphal East,LGD,255,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11 -IN-PIN,795150,PostalCode,Senapati,LGD,257,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11 -IN-PIN,795158,PostalCode,Churachandpur,LGD,254,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11 -IN-PIN,795159,PostalCode,Noney,LGD,714,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11 -IN-PIN,796001,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796005,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796015,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796017,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796070,PostalCode,Kolasib,LGD,263,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 -IN-PIN,796081,PostalCode,Kolasib,LGD,263,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 -IN-PIN,796091,PostalCode,Kolasib,LGD,263,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 -IN-PIN,796101,PostalCode,Kolasib,LGD,263,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11 -IN-PIN,796111,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796161,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796181,PostalCode,Serchhip,LGD,268,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 -IN-PIN,796184,PostalCode,Serchhip,LGD,268,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11 -IN-PIN,796186,PostalCode,Hnahthial,LGD,726,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -IN-PIN,796190,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796261,PostalCode,Saitual,LGD,727,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -IN-PIN,796290,PostalCode,Saitual,LGD,727,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -IN-PIN,796291,PostalCode,Champhai,LGD,262,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 -IN-PIN,796310,PostalCode,Khawzawl,LGD,728,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -IN-PIN,796320,PostalCode,Champhai,LGD,262,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 -IN-PIN,796321,PostalCode,Champhai,LGD,262,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11 -IN-PIN,796370,PostalCode,Khawzawl,LGD,728,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -IN-PIN,796410,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796421,PostalCode,Aizawl,LGD,261,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11 -IN-PIN,796431,PostalCode,Mamit,LGD,266,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -IN-PIN,796441,PostalCode,Mamit,LGD,266,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -IN-PIN,796470,PostalCode,Mamit,LGD,266,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -IN-PIN,796501,PostalCode,Mamit,LGD,266,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11 -IN-PIN,796571,PostalCode,Hnahthial,LGD,726,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -IN-PIN,796691,PostalCode,Lunglei,LGD,265,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 -IN-PIN,796701,PostalCode,Hnahthial,LGD,726,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11 -IN-PIN,796751,PostalCode,Lunglei,LGD,265,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11 -IN-PIN,796770,PostalCode,Lawngtlai,LGD,264,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 -IN-PIN,796891,PostalCode,Lawngtlai,LGD,264,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 -IN-PIN,796901,PostalCode,Lawngtlai,LGD,264,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11 -IN-PIN,797002,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -IN-PIN,797003,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -IN-PIN,797004,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -IN-PIN,797006,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -IN-PIN,797099,PostalCode,Wokha,LGD,250,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -IN-PIN,797101,PostalCode,Peren,LGD,613,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -IN-PIN,797103,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,797104,PostalCode,Phek,LGD,248,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -IN-PIN,797105,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -IN-PIN,797106,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,797107,PostalCode,Phek,LGD,248,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -IN-PIN,797108,PostalCode,Phek,LGD,248,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11 -IN-PIN,797109,PostalCode,Tseminyu,LGD,757,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,797110,PostalCode,Peren,LGD,613,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11 -IN-PIN,797111,PostalCode,Wokha,LGD,250,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11 -IN-PIN,797112,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,797113,PostalCode,Dimapur,LGD,244,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11 -IN-PIN,797114,PostalCode,Meluri,LGD,788,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,797115,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,797116,PostalCode,Chumoukedima,LGD,758,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,797118,PostalCode,Dimapur,LGD,244,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11 -IN-PIN,797120,PostalCode,Kohima,LGD,245,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11 -IN-PIN,798601,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -IN-PIN,798602,PostalCode,Mon,LGD,247,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -IN-PIN,798603,PostalCode,Mon,LGD,247,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -IN-PIN,798604,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -IN-PIN,798607,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -IN-PIN,798611,PostalCode,Kiphire,LGD,614,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11 -IN-PIN,798612,PostalCode,Noklak,LGD,736,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,798613,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -IN-PIN,798614,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -IN-PIN,798615,PostalCode,Mokokchung,LGD,246,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11 -IN-PIN,798616,PostalCode,Tuensang,LGD,249,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11 -IN-PIN,798618,PostalCode,Longleng,LGD,615,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -IN-PIN,798620,PostalCode,Zunheboto,LGD,251,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -IN-PIN,798621,PostalCode,Mon,LGD,247,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11 -IN-PIN,798622,PostalCode,Longleng,LGD,615,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -IN-PIN,798625,PostalCode,Longleng,LGD,615,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11 -IN-PIN,798626,PostalCode,Noklak,LGD,736,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,798627,PostalCode,Zunheboto,LGD,251,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11 -IN-PIN,798628,PostalCode,Shamator,LGD,765,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11 -IN-PIN,799001,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799002,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799003,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799004,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799006,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799008,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799009,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799011,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -IN-PIN,799012,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799013,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -IN-PIN,799015,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799035,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799045,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799101,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -IN-PIN,799102,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -IN-PIN,799103,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -IN-PIN,799104,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799105,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -IN-PIN,799113,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -IN-PIN,799114,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -IN-PIN,799115,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -IN-PIN,799120,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -IN-PIN,799125,PostalCode,Gomati,LGD,654,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11 -IN-PIN,799130,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -IN-PIN,799131,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -IN-PIN,799132,PostalCode,Sepahijala,LGD,653,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11 -IN-PIN,799141,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799142,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799143,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799144,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799145,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799150,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799153,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799155,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799156,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799157,PostalCode,South Tripura,LGD,271,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11 -IN-PIN,799201,PostalCode,Khowai,LGD,652,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 -IN-PIN,799203,PostalCode,Khowai,LGD,652,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 -IN-PIN,799204,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799205,PostalCode,Khowai,LGD,652,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 -IN-PIN,799207,PostalCode,Khowai,LGD,652,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11 -IN-PIN,799210,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799211,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799212,PostalCode,West Tripura,LGD,272,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11 -IN-PIN,799250,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799251,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799253,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799254,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799256,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799260,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799261,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799262,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799263,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -IN-PIN,799264,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -IN-PIN,799266,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799269,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799270,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799271,PostalCode,North Tripura,LGD,270,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11 -IN-PIN,799273,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799275,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799277,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -IN-PIN,799278,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799279,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -IN-PIN,799280,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -IN-PIN,799281,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -IN-PIN,799282,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -IN-PIN,799284,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799285,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799286,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799287,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799288,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799289,PostalCode,Dhalai,LGD,269,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11 -IN-PIN,799290,PostalCode,Unakoti,LGD,655,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11 -IN-PIN,800001,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800002,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800003,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800004,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800005,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800006,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800007,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800008,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800009,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800011,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800012,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800013,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800014,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800016,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800019,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800020,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800025,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800026,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800027,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800030,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,800033,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801102,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801103,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801104,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801108,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801109,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801110,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801111,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801112,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801113,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801301,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,801302,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,801303,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,801304,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,801305,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,801306,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,801307,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,801503,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,801505,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,802101,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802102,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802111,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802112,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802114,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802115,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802116,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802117,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802118,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802119,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802120,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802122,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802123,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802125,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802126,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802127,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802129,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802130,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802131,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802132,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,802133,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802134,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802135,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802136,PostalCode,Buxar,LGD,194,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11 -IN-PIN,802152,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802154,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802155,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802156,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802157,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802158,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802159,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802160,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802161,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802162,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802163,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802164,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802165,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802166,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802183,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802201,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802202,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802203,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802204,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802205,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802206,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802207,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802208,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802209,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802210,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802211,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802212,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802213,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802214,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802215,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802216,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802217,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802218,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802219,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802220,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802221,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802222,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802223,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802226,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,802301,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802302,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802311,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802312,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802313,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802314,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802316,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802351,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,802352,PostalCode,Bhojpur,LGD,193,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11 -IN-PIN,803101,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803107,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803108,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803109,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803110,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803111,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803113,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803114,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803115,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803116,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803117,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803118,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803119,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803120,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803201,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803202,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803203,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803211,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803212,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803213,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803214,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803215,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803216,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,803221,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803301,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803302,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803303,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803306,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,803307,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,804401,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -IN-PIN,804402,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -IN-PIN,804403,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,804404,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804405,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,804406,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804407,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804408,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804417,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804418,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804419,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -IN-PIN,804421,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -IN-PIN,804422,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804423,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -IN-PIN,804425,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804429,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804432,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,804451,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,804452,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,804453,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,804454,PostalCode,Jehanabad,LGD,199,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11 -IN-PIN,805101,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805102,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805103,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805104,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805105,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,805106,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805107,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805108,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805109,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805110,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805111,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805112,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805113,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805114,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805121,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805122,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805123,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805124,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805125,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805126,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805127,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805128,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,805129,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,805130,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805131,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,805132,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,805141,PostalCode,Nawada,LGD,210,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11 -IN-PIN,811101,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,811102,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,811103,PostalCode,Sheikhpura,LGD,219,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -IN-PIN,811104,PostalCode,Nalanda,LGD,209,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11 -IN-PIN,811105,PostalCode,Sheikhpura,LGD,219,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11 -IN-PIN,811106,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -IN-PIN,811107,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -IN-PIN,811112,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -IN-PIN,811201,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -IN-PIN,811202,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -IN-PIN,811211,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -IN-PIN,811212,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -IN-PIN,811213,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -IN-PIN,811214,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -IN-PIN,811301,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811302,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -IN-PIN,811303,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811304,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -IN-PIN,811305,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811307,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811308,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811309,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -IN-PIN,811311,PostalCode,Lakhisarai,LGD,204,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11 -IN-PIN,811312,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811313,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811314,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811315,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811316,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,811317,PostalCode,Jamui,LGD,198,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11 -IN-PIN,812001,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,812002,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,812003,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,812004,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,812005,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,812006,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,812007,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,813101,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813102,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813103,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813104,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813105,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813106,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813107,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813108,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813109,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813110,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813201,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -IN-PIN,813202,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813203,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,813204,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,813205,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813206,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,813207,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813209,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,813210,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813211,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813212,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,813213,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,813214,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,813221,PostalCode,Munger,LGD,207,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11 -IN-PIN,813222,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,814101,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814103,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814110,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814111,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814112,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814114,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814115,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814116,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814119,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814120,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814131,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,814133,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -IN-PIN,814141,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814145,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814146,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814147,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -IN-PIN,814148,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814149,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814150,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814151,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814152,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814153,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814155,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -IN-PIN,814156,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -IN-PIN,814157,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,814158,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,814160,PostalCode,Godda,LGD,330,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11 -IN-PIN,814166,PostalCode,Jamtara,LGD,333,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -IN-PIN,815301,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815302,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815311,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815312,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815313,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815314,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815315,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815316,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815317,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815318,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,815351,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,815353,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,815354,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,815355,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,815357,PostalCode,Deoghar,LGD,324,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11 -IN-PIN,815359,PostalCode,Jamtara,LGD,333,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11 -IN-PIN,816101,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -IN-PIN,816104,PostalCode,Pakur,LGD,337,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -IN-PIN,816106,PostalCode,Pakur,LGD,337,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -IN-PIN,816107,PostalCode,Pakur,LGD,337,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -IN-PIN,816108,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -IN-PIN,816109,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -IN-PIN,816110,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -IN-PIN,816117,PostalCode,Pakur,LGD,337,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11 -IN-PIN,816118,PostalCode,Dumka,LGD,326,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11 -IN-PIN,816120,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -IN-PIN,816129,PostalCode,Sahebganj,LGD,340,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11 -IN-PIN,821015,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821101,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821102,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821103,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821104,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821105,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821106,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821107,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821108,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821109,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821110,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821111,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821112,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821113,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821114,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821115,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821301,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821304,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821305,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821306,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821307,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821308,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821309,PostalCode,Kaimur (Bhabua),LGD,200,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11 -IN-PIN,821310,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821311,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,821312,PostalCode,Rohtas,LGD,215,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11 -IN-PIN,822102,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,822110,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822111,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822112,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822113,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -IN-PIN,822114,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822115,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822116,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -IN-PIN,822117,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -IN-PIN,822118,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -IN-PIN,822119,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,822120,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822121,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822122,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -IN-PIN,822123,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,822124,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822125,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822126,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,822128,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822129,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822131,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -IN-PIN,822132,PostalCode,Palamu,LGD,338,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11 -IN-PIN,822133,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,822134,PostalCode,Garhwa,LGD,328,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11 -IN-PIN,823001,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,823002,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,823003,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,823311,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824101,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824103,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824111,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824112,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824113,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824114,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824115,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824118,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824120,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824121,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824122,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824123,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824124,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824125,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824126,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824127,PostalCode,Arwal,LGD,611,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11 -IN-PIN,824129,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824143,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824201,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824202,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824203,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824205,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824206,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824207,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824208,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824209,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824211,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824217,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824219,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824220,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824221,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824231,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824232,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824233,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824236,PostalCode,Gaya,LGD,196,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11 -IN-PIN,824301,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824302,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824303,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,824304,PostalCode,Aurangabad,LGD,189,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11 -IN-PIN,825101,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,825102,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,825103,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,825106,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825108,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825109,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825132,PostalCode,Koderma,LGD,334,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -IN-PIN,825167,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,825301,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825302,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825303,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825311,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825312,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,825313,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825314,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,825315,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825316,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,825318,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825319,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825320,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825321,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,825322,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825323,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825324,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825325,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,825326,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,825329,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825330,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825336,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825401,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,825402,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825403,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,825404,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,825405,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825406,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825407,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825408,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,825409,PostalCode,Koderma,LGD,334,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -IN-PIN,825410,PostalCode,Koderma,LGD,334,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -IN-PIN,825411,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825412,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825413,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,825414,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,825415,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,825418,PostalCode,Giridih,LGD,329,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11 -IN-PIN,825421,PostalCode,Koderma,LGD,334,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11 -IN-PIN,826001,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,826004,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,826006,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,827010,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,827013,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,827014,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,827302,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,828101,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828103,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828104,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828105,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828109,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828113,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828114,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828116,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828121,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828125,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828128,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828129,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828134,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,828142,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828201,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828202,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828203,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828204,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828205,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828206,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828207,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828303,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,828304,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828305,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828306,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828307,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828401,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828402,PostalCode,Dhanbad,LGD,325,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11 -IN-PIN,828403,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,828404,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829101,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,829102,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829103,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829104,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829105,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829106,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,829107,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829108,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829109,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,829110,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829111,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829112,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829113,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829114,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829116,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829117,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829118,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829119,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829121,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829122,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829123,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829124,PostalCode,Hazaribagh,LGD,332,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11 -IN-PIN,829125,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829126,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829127,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829128,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829132,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829133,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829134,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829135,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829143,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829144,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829149,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,829150,PostalCode,Ramgarh,LGD,607,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11 -IN-PIN,829201,PostalCode,Chatra,LGD,323,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11 -IN-PIN,829202,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,829203,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,829204,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,829205,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -IN-PIN,829206,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,829207,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,829208,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -IN-PIN,829209,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -IN-PIN,829210,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -IN-PIN,829301,PostalCode,Bokaro,LGD,322,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11 -IN-PIN,831001,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,831002,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,831004,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,831013,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,832101,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,832104,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,832105,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,832108,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,832112,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,832113,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,832301,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,832302,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,832303,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,832304,PostalCode,East Singhbum,LGD,327,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11 -IN-PIN,832401,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,832402,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,832403,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,832404,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,833101,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,833102,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833103,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833104,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,833105,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833201,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833203,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833204,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833214,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833215,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833216,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,833217,PostalCode,West Singhbhum,LGD,343,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11 -IN-PIN,833219,PostalCode,Saraikela Kharsawan,LGD,341,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11 -IN-PIN,834001,PostalCode,Ranchi,LGD,339,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11 -IN-PIN,835201,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -IN-PIN,835206,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -IN-PIN,835207,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -IN-PIN,835210,PostalCode,Khunti,LGD,606,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11 -IN-PIN,835211,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -IN-PIN,835212,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -IN-PIN,835213,PostalCode,Lohardaga,LGD,336,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -IN-PIN,835218,PostalCode,Latehar,LGD,335,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11 -IN-PIN,835220,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -IN-PIN,835223,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -IN-PIN,835226,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -IN-PIN,835228,PostalCode,Simdega,LGD,342,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11 -IN-PIN,835232,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -IN-PIN,835302,PostalCode,Lohardaga,LGD,336,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11 -IN-PIN,835325,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -IN-PIN,835824,PostalCode,Gumla,LGD,331,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11 -IN-PIN,841101,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,841201,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841202,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841203,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841204,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841205,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841206,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841207,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841208,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841209,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841210,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841211,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841212,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841213,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841214,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841215,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841216,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841217,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841218,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841219,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841220,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841221,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841222,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841224,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841225,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841226,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841227,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841228,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841231,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841232,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841233,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841234,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841235,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841236,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841237,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841238,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841239,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841240,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841241,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841243,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841245,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841286,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841301,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841302,PostalCode,Patna,LGD,212,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11 -IN-PIN,841305,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841311,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841312,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841313,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841316,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841401,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841402,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841403,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841404,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841405,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841406,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841408,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841409,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841410,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841411,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841412,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841414,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841415,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841417,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841418,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841419,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841421,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841422,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841423,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841424,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841425,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841426,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841427,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841428,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841434,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841435,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841436,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841437,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841438,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841440,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841441,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841442,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841443,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841446,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841447,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841460,PostalCode,Saran,LGD,218,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11 -IN-PIN,841501,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841502,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841503,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841504,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,841508,PostalCode,Gopalganj,LGD,197,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11 -IN-PIN,841509,PostalCode,Siwan,LGD,222,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11 -IN-PIN,842001,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,842002,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,842003,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,842004,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,842006,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843101,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843102,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843103,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843104,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843105,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843106,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843107,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843108,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843109,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843111,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843112,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843113,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843114,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,843115,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843116,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843117,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843118,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843119,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843120,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843121,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843122,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843123,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843124,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843125,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843126,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843127,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843128,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843129,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843131,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -IN-PIN,843132,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843301,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -IN-PIN,843302,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843311,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843312,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843313,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843314,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843315,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843316,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -IN-PIN,843317,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843318,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843319,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843320,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843321,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843322,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843323,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843324,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843325,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -IN-PIN,843326,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843327,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -IN-PIN,843328,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,843329,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -IN-PIN,843330,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843331,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843332,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843333,PostalCode,Sitamarhi,LGD,221,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11 -IN-PIN,843334,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -IN-PIN,843335,PostalCode,Sheohar,LGD,220,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11 -IN-PIN,843360,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,844101,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844102,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844111,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844112,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,844113,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844114,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844118,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,844120,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,844121,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844122,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844124,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844127,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,844128,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844502,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844503,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844504,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844505,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844506,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844508,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,844509,PostalCode,Vaishali,LGD,224,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11 -IN-PIN,845101,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845103,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845104,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845105,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845106,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845107,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845301,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845302,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845303,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845304,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845305,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845306,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845307,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845401,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845402,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845411,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845412,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845413,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845415,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845416,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845417,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845418,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845419,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845420,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845422,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845424,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845425,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845426,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845428,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845430,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845432,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845433,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845434,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845435,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845436,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845437,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845438,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845439,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845441,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845449,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845450,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845451,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845452,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845453,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845454,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845455,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,845456,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845457,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845458,PostalCode,Purbi Champaran,LGD,213,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11 -IN-PIN,845459,PostalCode,Pashchim Champaran,LGD,211,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11 -IN-PIN,846001,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,846002,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,846003,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,846004,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,846005,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,846006,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,846007,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,846009,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,846010,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847101,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847102,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847103,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847104,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847105,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847106,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847107,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847108,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847109,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847115,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847121,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847122,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847123,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847201,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847202,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847203,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847204,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847211,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847212,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847213,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847214,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847215,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847222,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847223,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847224,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847225,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847226,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847227,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847228,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847229,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847230,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847231,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847232,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847233,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847234,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847235,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847236,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847238,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847239,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847240,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847301,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847302,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847303,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847304,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847305,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847306,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847307,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847308,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847337,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847401,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847402,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847403,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847404,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847405,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847407,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847408,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847409,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847410,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847411,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847421,PostalCode,Madhubani,LGD,206,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11 -IN-PIN,847422,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847423,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847424,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847427,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847428,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847429,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,847451,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,847452,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,848101,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848102,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848103,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848104,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848113,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848114,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848115,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848117,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848121,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,848122,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848125,PostalCode,Muzaffarpur,LGD,208,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11 -IN-PIN,848127,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848129,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848130,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848131,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848132,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848133,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848134,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848160,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848201,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,848202,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,848203,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,848204,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,848205,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848206,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848207,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848208,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848209,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848210,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848211,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848213,PostalCode,Darbhanga,LGD,195,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11 -IN-PIN,848216,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848236,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848301,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848302,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848501,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848502,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848503,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848504,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848505,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,848506,PostalCode,Samastipur,LGD,217,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11 -IN-PIN,851101,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851111,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851112,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851113,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851116,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851117,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851118,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851120,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851121,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851126,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851127,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851128,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851129,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851130,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851131,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851132,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851133,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851134,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851135,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851201,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,851202,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,851203,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,851204,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,851205,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,851206,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,851210,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851211,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851214,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,851216,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,851217,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,851218,PostalCode,Begusarai,LGD,191,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11 -IN-PIN,852101,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852105,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852106,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852107,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852108,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852109,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852110,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852111,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852112,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852113,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852114,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852115,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852116,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852121,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852122,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852123,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852124,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852125,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852126,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852127,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852128,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852129,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852130,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852131,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852132,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852133,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852134,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852137,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852138,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852139,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852161,PostalCode,Khagaria,LGD,202,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11 -IN-PIN,852202,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852212,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852213,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852214,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852215,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852216,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852217,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,852218,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,852219,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852220,PostalCode,Madhepura,LGD,205,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11 -IN-PIN,852221,PostalCode,Saharsa,LGD,216,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11 -IN-PIN,853201,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,853202,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,853203,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,853204,PostalCode,Banka,LGD,190,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11 -IN-PIN,853205,PostalCode,Bhagalpur,LGD,192,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11 -IN-PIN,854101,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854102,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854103,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854104,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854105,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854106,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854107,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854108,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854110,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854112,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854113,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854114,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854115,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854116,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854117,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854201,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854202,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854203,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854204,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854205,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854301,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854304,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854305,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854306,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854311,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854312,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854315,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854316,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854317,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,854318,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854325,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854326,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854327,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854329,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854330,PostalCode,Purnia,LGD,214,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11 -IN-PIN,854331,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854332,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854333,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854334,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854335,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854336,PostalCode,Araria,LGD,188,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11 -IN-PIN,854338,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,854339,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,854340,PostalCode,Supaul,LGD,223,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11 -IN-PIN,855101,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,855102,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,855105,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,855106,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -IN-PIN,855107,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -IN-PIN,855108,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -IN-PIN,855113,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,855114,PostalCode,Katihar,LGD,201,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11 -IN-PIN,855115,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -IN-PIN,855116,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 -IN-PIN,855117,PostalCode,Kishanganj,LGD,203,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11 +code_scheme,area_code,area_level,area_name,parent_scheme,parent_code,parent_level,census_2011_code,snapshot_date,source_url,latitude,longitude,point_method,bbox_west,bbox_south,bbox_east,bbox_north,geometry_source,boundary_vintage,has_polygon +ISO-3166-1,IN,Country,India,,,,,02Sep2026,static,23.382088,79.485000,aggregate:State,68.177512,6.752783,97.412897,37.088342,SOI_States,2023-12-11,false +LGD,35,State,Andaman And Nicobar Islands,ISO-3166-1,IN,Country,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,12.603196,92.829514,centroid,92.195893,6.752783,94.267398,13.677059,SOI_States,2023-12-11,true +LGD,28,State,Andhra Pradesh,ISO-3166-1,IN,Country,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,15.753511,79.962484,centroid,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,true +LGD,12,State,Arunachal Pradesh,ISO-3166-1,IN,Country,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,28.035268,94.673960,centroid,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,true +LGD,18,State,Assam,ISO-3166-1,IN,Country,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.355278,92.827110,centroid,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,true +LGD,10,State,Bihar,ISO-3166-1,IN,Country,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,25.678945,85.609012,centroid,83.320216,24.286006,88.293796,27.521777,SOI_States,2023-12-11,true +LGD,4,State,Chandigarh,ISO-3166-1,IN,Country,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_States,2023-12-11,true +LGD,22,State,Chhattisgarh,ISO-3166-1,IN,Country,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,21.265915,82.041059,centroid,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,true +LGD,7,State,Delhi,ISO-3166-1,IN,Country,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,28.643370,77.115437,centroid,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,true +LGD,30,State,Goa,ISO-3166-1,IN,Country,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,15.365280,74.049474,centroid,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,true +LGD,24,State,Gujarat,ISO-3166-1,IN,Country,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,22.692625,71.595166,centroid,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,true +LGD,6,State,Haryana,ISO-3166-1,IN,Country,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,29.197675,76.340342,centroid,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,true +LGD,2,State,Himachal Pradesh,ISO-3166-1,IN,Country,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,31.925300,77.248411,centroid,75.594593,30.377336,79.008917,33.256426,SOI_States,2023-12-11,true +LGD,1,State,Jammu And Kashmir,ISO-3166-1,IN,Country,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,33.675618,74.859285,centroid,73.396060,32.276005,76.779413,35.130068,SOI_States,2023-12-11,true +LGD,20,State,Jharkhand,ISO-3166-1,IN,Country,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.656374,85.564266,centroid,83.329346,21.970129,87.962825,25.349181,SOI_States,2023-12-11,true +LGD,29,State,Karnataka,ISO-3166-1,IN,Country,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,14.710573,76.167282,centroid,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,true +LGD,32,State,Kerala,ISO-3166-1,IN,Country,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.452100,76.407182,centroid,74.864337,8.293018,77.412396,12.795535,SOI_States,2023-12-11,true +LGD,37,State,Ladakh,ISO-3166-1,IN,Country,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,34.948731,76.794070,centroid,72.512762,32.335694,80.345084,37.088342,SOI_States,2023-12-11,true +LGD,31,State,Lakshadweep,ISO-3166-1,IN,Country,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_States,2023-12-11,true +LGD,23,State,Madhya Pradesh,ISO-3166-1,IN,Country,23,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.538142,78.289776,centroid,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,true +LGD,27,State,Maharashtra,ISO-3166-1,IN,Country,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,19.451683,76.107454,centroid,72.641991,15.606085,80.897684,22.030269,SOI_States,2023-12-11,true +LGD,14,State,Manipur,ISO-3166-1,IN,Country,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,24.733858,93.878817,centroid,92.969434,23.832848,94.744890,25.692090,SOI_States,2023-12-11,true +LGD,17,State,Meghalaya,ISO-3166-1,IN,Country,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,25.535419,91.278401,centroid,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,true +LGD,15,State,Mizoram,ISO-3166-1,IN,Country,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.306959,92.831811,centroid,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,true +LGD,13,State,Nagaland,ISO-3166-1,IN,Country,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.062153,94.466308,centroid,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,true +LGD,21,State,Odisha,ISO-3166-1,IN,Country,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,20.511652,84.426842,centroid,81.388378,17.812450,87.486135,22.567507,SOI_States,2023-12-11,true +LGD,34,State,Puducherry,ISO-3166-1,IN,Country,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.933465,79.802983,centroid,75.526556,10.827383,82.310616,16.763695,SOI_States,2023-12-11,true +LGD,3,State,Punjab,ISO-3166-1,IN,Country,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.842128,75.415888,centroid,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,true +LGD,8,State,Rajasthan,ISO-3166-1,IN,Country,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.584176,73.849855,centroid,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,true +LGD,11,State,Sikkim,ISO-3166-1,IN,Country,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,27.570188,88.473019,centroid,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,true +LGD,33,State,Tamil Nadu,ISO-3166-1,IN,Country,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,11.015873,78.407996,centroid,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,true +LGD,36,State,Telangana,ISO-3166-1,IN,Country,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,17.800653,79.009116,centroid,77.235761,15.836003,81.322641,19.916807,SOI_States,2023-12-11,true +LGD,38,State,The Dadra And Nagar Haveli And Daman And Diu,ISO-3166-1,IN,Country,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,20.191077,73.058434,interior_grid,70.870788,20.047018,73.218192,20.771437,SOI_States,2023-12-11,true +LGD,16,State,Tripura,ISO-3166-1,IN,Country,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.745620,91.740747,centroid,91.149198,22.938351,92.332057,24.531867,SOI_States,2023-12-11,true +LGD,5,State,Uttarakhand,ISO-3166-1,IN,Country,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.156322,79.207366,centroid,77.572316,28.722831,81.046605,31.462080,SOI_States,2023-12-11,true +LGD,9,State,Uttar Pradesh,ISO-3166-1,IN,Country,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.923320,80.565958,centroid,77.083948,23.870110,84.634660,30.406276,SOI_States,2023-12-11,true +LGD,19,State,West Bengal,ISO-3166-1,IN,Country,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.808568,87.988173,centroid,85.819673,21.527082,89.882602,27.221067,SOI_States,2023-12-11,true +LGD,603,District,Nicobars,LGD,35,State,638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,7.024826,93.799023,centroid,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,true +LGD,632,District,North And Middle Andaman,LGD,35,State,639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.842528,92.870475,centroid,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,true +LGD,602,District,South Andamans,LGD,35,State,640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.523693,92.648491,centroid,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,true +LGD,745,District,Alluri Sitharama Raju,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,744,District,Anakapalli,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,502,District,Ananthapuramu,LGD,28,State,553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.493043,77.566974,centroid,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,true +LGD,753,District,Annamayya,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,750,District,Bapatla,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,503,District,Chittoor,LGD,28,State,554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.464938,79.005997,centroid,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,true +LGD,747,District,Dr. B.R. Ambedkar Konaseema,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,505,District,East Godavari,LGD,28,State,545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.272008,81.893276,centroid,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,true +LGD,748,District,Eluru,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,506,District,Guntur,LGD,28,State,548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.293106,80.078833,centroid,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,true +LGD,746,District,Kakinada,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,510,District,Krishna,LGD,28,State,547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.555707,80.797994,centroid,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,true +LGD,511,District,Kurnool,LGD,28,State,552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.535569,78.012995,centroid,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,true +LGD,790,District,Markapuram,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,755,District,Nandyal,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,749,District,Ntr,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,751,District,Palnadu,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,743,District,Parvathipuram Manyam,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,791,District,Polavaram,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,517,District,Prakasam,LGD,28,State,549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.616202,79.515203,centroid,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,true +LGD,519,District,Srikakulam,LGD,28,State,542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.597701,84.022731,centroid,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,true +LGD,515,District,Sri Potti Sriramulu Nellore,LGD,28,State,550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.418363,79.738935,centroid,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,true +LGD,754,District,Sri Sathya Sai,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,752,District,Tirupati,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,520,District,Visakhapatnam,LGD,28,State,544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.893416,82.693925,centroid,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,true +LGD,521,District,Vizianagaram,LGD,28,State,543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.472878,83.385198,centroid,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,true +LGD,523,District,West Godavari,LGD,28,State,546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.931401,81.387360,centroid,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,true +LGD,504,District,Y.S.R. Kadapa,LGD,28,State,551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.463753,78.780374,centroid,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,true +LGD,628,District,Anjaw,LGD,12,State,260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.066616,96.856247,centroid,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,true +LGD,787,District,Bichom,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,229,District,Changlang,LGD,12,State,253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.369957,96.353040,centroid,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,true +LGD,230,District,Dibang Valley,LGD,12,State,257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.868333,95.909961,centroid,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,true +LGD,231,District,East Kameng,LGD,12,State,247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.587861,92.917506,centroid,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,true +LGD,232,District,East Siang,LGD,12,State,251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.048218,95.354000,centroid,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,true +LGD,718,District,Kamle,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.741518,94.078176,centroid,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,true +LGD,786,District,Keyi Panyor,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,677,District,Kra Daadi,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.017789,93.672960,centroid,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,true +LGD,233,District,Kurung Kumey,LGD,12,State,256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.002616,93.206931,centroid,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,true +LGD,724,District,Leparada,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.925491,94.716086,centroid,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,true +LGD,234,District,Lohit,LGD,12,State,259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.929436,96.300479,centroid,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,true +LGD,666,District,Longding,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.855201,95.327659,centroid,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,true +LGD,235,District,Lower Dibang Valley,LGD,12,State,258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.254737,95.821628,centroid,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,true +LGD,719,District,Lower Siang,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.775244,94.694459,centroid,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,true +LGD,236,District,Lower Subansiri,LGD,12,State,255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.588340,93.776522,centroid,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,true +LGD,678,District,Namsai,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.701176,96.043183,centroid,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,true +LGD,723,District,Pakke Kessang,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.105402,93.035255,centroid,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,true +LGD,237,District,Papum Pare,LGD,12,State,248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.270137,93.596281,centroid,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,true +LGD,725,District,Shi Yomi,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.676965,94.260983,centroid,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,true +LGD,679,District,Siang,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.404385,94.808912,centroid,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,true +LGD,238,District,Tawang,LGD,12,State,245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.662208,91.965169,centroid,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,true +LGD,239,District,Tirap,LGD,12,State,254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.024225,95.543181,centroid,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,true +LGD,240,District,Upper Siang,LGD,12,State,252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.832949,94.915294,centroid,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,true +LGD,241,District,Upper Subansiri,LGD,12,State,249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.289938,93.929551,centroid,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,true +LGD,242,District,West Kameng,LGD,12,State,246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.291857,92.393051,centroid,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,true +LGD,243,District,West Siang,LGD,12,State,250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.159942,94.613450,interior_grid,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,true +LGD,739,District,Bajali,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +LGD,616,District,Baksa,LGD,18,State,324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.660208,91.351220,centroid,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,true +LGD,280,District,Barpeta,LGD,18,State,303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.341730,91.003652,centroid,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,true +LGD,705,District,Biswanath,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.812104,93.312825,centroid,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,true +LGD,281,District,Bongaigaon,LGD,18,State,319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.354045,90.614044,centroid,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,true +LGD,282,District,Cachar,LGD,18,State,316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.812469,92.854835,centroid,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,true +LGD,708,District,Charaideo,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.067765,95.059768,centroid,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,true +LGD,612,District,Chirang,LGD,18,State,320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.659673,90.595862,centroid,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,true +LGD,283,District,Darrang,LGD,18,State,325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.447690,92.029452,centroid,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,true +LGD,284,District,Dhemaji,LGD,18,State,308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.589777,94.774961,centroid,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,true +LGD,285,District,Dhubri,LGD,18,State,301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.142595,90.042012,interior_grid,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,true +LGD,286,District,Dibrugarh,LGD,18,State,310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.366986,95.053106,centroid,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,true +LGD,299,District,Dima Hasao,LGD,18,State,315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.377940,93.030966,centroid,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,true +LGD,287,District,Goalpara,LGD,18,State,302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.050242,90.607466,centroid,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,true +LGD,288,District,Golaghat,LGD,18,State,313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.443087,93.831353,centroid,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,true +LGD,289,District,Hailakandi,LGD,18,State,318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.497097,92.587787,centroid,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,true +LGD,709,District,Hojai,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.978201,92.979926,centroid,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,true +LGD,290,District,Jorhat,LGD,18,State,312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.695491,94.276417,centroid,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,true +LGD,291,District,Kamrup,LGD,18,State,321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.100380,91.416295,centroid,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,true +LGD,618,District,Kamrup Metro,LGD,18,State,322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.128528,91.891940,centroid,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,true +LGD,292,District,Karbi Anglong,LGD,18,State,314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.156857,93.404795,centroid,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,true +LGD,294,District,Kokrajhar,LGD,18,State,300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.492770,90.118799,centroid,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,true +LGD,295,District,Lakhimpur,LGD,18,State,307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.174006,94.140707,centroid,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,true +LGD,706,District,Majuli,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.938190,94.171745,centroid,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,true +LGD,296,District,Marigaon,LGD,18,State,304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.281812,92.284050,centroid,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,true +LGD,297,District,Nagaon,LGD,18,State,305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.362398,92.753571,centroid,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,true +LGD,298,District,Nalbari,LGD,18,State,323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.370536,91.382421,centroid,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,true +LGD,300,District,Sivasagar,LGD,18,State,311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.970450,94.664944,centroid,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,true +LGD,301,District,Sonitpur,LGD,18,State,306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.758534,92.651006,centroid,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,true +LGD,707,District,South Salmara Mancachar,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.778073,89.931723,centroid,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,true +LGD,293,District,Sribhumi,LGD,18,State,317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.579503,92.379052,centroid,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,true +LGD,756,District,Tamulpur,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +LGD,302,District,Tinsukia,LGD,18,State,309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.579952,95.619579,centroid,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,true +LGD,617,District,Udalguri,LGD,18,State,326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.730123,92.031407,centroid,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,true +LGD,710,District,West Karbi Anglong,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.849996,92.532969,centroid,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,true +LGD,188,District,Araria,LGD,10,State,209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.198668,87.363318,centroid,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,true +LGD,611,District,Arwal,LGD,10,State,240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.163235,84.677455,centroid,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,true +LGD,189,District,Aurangabad,LGD,10,State,235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.790895,84.408740,centroid,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,true +LGD,190,District,Banka,LGD,10,State,225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.854081,86.837107,centroid,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,true +LGD,191,District,Begusarai,LGD,10,State,222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.496664,86.129714,centroid,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,true +LGD,192,District,Bhagalpur,LGD,10,State,224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.269569,87.082847,centroid,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,true +LGD,193,District,Bhojpur,LGD,10,State,231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.470829,84.542485,centroid,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,true +LGD,194,District,Buxar,LGD,10,State,232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.491965,84.099685,centroid,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,true +LGD,195,District,Darbhanga,LGD,10,State,215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.084387,86.054245,centroid,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,true +LGD,196,District,Gaya,LGD,10,State,236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.696793,84.934254,centroid,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,true +LGD,197,District,Gopalganj,LGD,10,State,217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.443845,84.373836,centroid,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,true +LGD,198,District,Jamui,LGD,10,State,238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.783624,86.293785,centroid,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,true +LGD,199,District,Jehanabad,LGD,10,State,239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.155070,85.016832,centroid,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,true +LGD,200,District,Kaimur (Bhabua),LGD,10,State,233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.991849,83.605603,centroid,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,true +LGD,201,District,Katihar,LGD,10,State,212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.548653,87.640579,centroid,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,true +LGD,202,District,Khagaria,LGD,10,State,223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.511006,86.601532,centroid,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,true +LGD,203,District,Kishanganj,LGD,10,State,210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.296361,87.935551,centroid,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,true +LGD,204,District,Lakhisarai,LGD,10,State,227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.161234,86.136725,centroid,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,true +LGD,205,District,Madhepura,LGD,10,State,213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.822712,86.898913,centroid,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,true +LGD,206,District,Madhubani,LGD,10,State,207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.402234,86.221843,centroid,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,true +LGD,207,District,Munger,LGD,10,State,226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.210030,86.526055,centroid,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,true +LGD,208,District,Muzaffarpur,LGD,10,State,216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.152133,85.328539,centroid,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,true +LGD,209,District,Nalanda,LGD,10,State,229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.219052,85.450164,centroid,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,true +LGD,210,District,Nawada,LGD,10,State,237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.811001,85.589668,centroid,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,true +LGD,211,District,Pashchim Champaran,LGD,10,State,203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.079822,84.338905,centroid,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,true +LGD,212,District,Patna,LGD,10,State,230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.455947,85.223570,centroid,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,true +LGD,213,District,Purbi Champaran,LGD,10,State,204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.618344,84.921996,centroid,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,true +LGD,214,District,Purnia,LGD,10,State,211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.815393,87.405089,centroid,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,true +LGD,215,District,Rohtas,LGD,10,State,234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.979822,84.025967,centroid,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,true +LGD,216,District,Saharsa,LGD,10,State,214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.814227,86.590738,centroid,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,true +LGD,217,District,Samastipur,LGD,10,State,221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.772996,85.865723,centroid,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,true +LGD,218,District,Saran,LGD,10,State,219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.905685,84.823193,centroid,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,true +LGD,219,District,Sheikhpura,LGD,10,State,228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.123650,85.838344,centroid,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,true +LGD,220,District,Sheohar,LGD,10,State,205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.497836,85.301880,centroid,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,true +LGD,221,District,Sitamarhi,LGD,10,State,206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.585083,85.552608,centroid,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,true +LGD,222,District,Siwan,LGD,10,State,218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.161266,84.386962,centroid,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,true +LGD,223,District,Supaul,LGD,10,State,208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.245094,86.808186,centroid,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,true +LGD,224,District,Vaishali,LGD,10,State,220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.763071,85.368195,centroid,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,true +LGD,44,District,Chandigarh,LGD,4,State,55,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11,true +LGD,646,District,Balod,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.741641,81.188372,centroid,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,true +LGD,644,District,Balodabazar-Bhatapara,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.582031,82.327512,centroid,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,true +LGD,649,District,Balrampur-Ramanujganj,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.592678,83.501241,centroid,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,true +LGD,374,District,Bastar,LGD,22,State,414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.095835,81.867804,centroid,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,true +LGD,650,District,Bemetara,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.660879,81.469869,centroid,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,true +LGD,636,District,Bijapur,LGD,22,State,417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.860867,80.800554,centroid,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,true +LGD,375,District,Bilaspur,LGD,22,State,406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.179960,82.115906,centroid,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,true +LGD,376,District,Dakshin Bastar Dantewada,LGD,22,State,416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.804749,81.390283,centroid,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,true +LGD,377,District,Dhamtari,LGD,22,State,412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.555245,81.808854,centroid,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,true +LGD,378,District,Durg,LGD,22,State,409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.220343,81.383275,centroid,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,true +LGD,645,District,Gariyaband,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.448083,82.235234,centroid,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,true +LGD,734,District,Gaurela-Pendra-Marwahi,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.804965,81.998854,centroid,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,true +LGD,379,District,Janjgir-Champa,LGD,22,State,405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.921350,82.592276,centroid,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,true +LGD,380,District,Jashpur,LGD,22,State,402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.801105,83.862511,centroid,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,true +LGD,382,District,Kabeerdham,LGD,22,State,407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.092525,81.222508,centroid,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,true +LGD,759,District,Khairagarh-Chhuikhadan-Gandai,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,643,District,Kondagaon,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.745701,81.664919,centroid,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,true +LGD,383,District,Korba,LGD,22,State,404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.534684,82.608204,centroid,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,true +LGD,384,District,Korea,LGD,22,State,400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.469802,82.235279,centroid,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,true +LGD,385,District,Mahasamund,LGD,22,State,411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.207969,82.608312,centroid,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,true +LGD,760,District,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,761,District,Mohla-Manpur-Ambagarh Chouki,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,647,District,Mungeli,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.240399,81.730560,centroid,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,true +LGD,637,District,Narayanpur,LGD,22,State,415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.570198,81.085072,centroid,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,true +LGD,386,District,Raigarh,LGD,22,State,403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.085227,83.303068,centroid,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,true +LGD,387,District,Raipur,LGD,22,State,410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.285804,81.820087,centroid,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,true +LGD,388,District,Rajnandgaon,LGD,22,State,408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.039397,80.820053,centroid,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,true +LGD,762,District,Sakti,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,763,District,Sarangarh-Bilaigarh,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,642,District,Sukma,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.272188,81.365650,centroid,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,true +LGD,648,District,Surajpur,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.401996,82.883600,centroid,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,true +LGD,389,District,Surguja,LGD,22,State,401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.928368,83.227178,centroid,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,true +LGD,381,District,Uttar Bastar Kanker,LGD,22,State,413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.137568,81.122709,centroid,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,true +LGD,77,District,Central,LGD,7,State,95,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.681583,77.224161,centroid,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,true +LGD,796,District,Central North,LGD,7,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,78,District,East,LGD,7,State,93,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.622088,77.304590,centroid,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,true +LGD,79,District,New Delhi,LGD,7,State,94,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.577155,77.148588,centroid,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,true +LGD,80,District,North,LGD,7,State,91,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.793505,77.107739,centroid,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,true +LGD,81,District,North East,LGD,7,State,92,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.722615,77.256547,centroid,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,true +LGD,82,District,North West,LGD,7,State,90,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.725251,77.043125,centroid,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,true +LGD,795,District,Old Delhi,LGD,7,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,794,District,Outer North,LGD,7,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,83,District,South,LGD,7,State,98,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.481463,77.190717,centroid,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,true +LGD,670,District,South East,LGD,7,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.542227,77.272944,centroid,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,true +LGD,84,District,South West,LGD,7,State,97,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.576241,76.967730,centroid,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,true +LGD,85,District,West,LGD,7,State,96,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.655426,77.063965,centroid,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,true +LGD,793,District,Kushavati,LGD,30,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +LGD,551,District,North Goa,LGD,30,State,585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.549741,73.976654,centroid,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,true +LGD,552,District,South Goa,LGD,30,State,586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.200426,74.114554,centroid,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,true +LGD,438,District,Ahmedabad,LGD,24,State,474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.756916,72.243635,centroid,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,true +LGD,439,District,Amreli,LGD,24,State,480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.425061,71.242250,centroid,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,true +LGD,440,District,Anand,LGD,24,State,482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.426788,72.750860,centroid,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,true +LGD,672,District,Arvalli,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.460770,73.333057,centroid,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,true +LGD,441,District,Banas Kantha,LGD,24,State,469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.287309,72.023840,centroid,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,true +LGD,442,District,Bharuch,LGD,24,State,488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.781624,72.940813,centroid,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,true +LGD,443,District,Bhavnagar,LGD,24,State,481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.567255,71.890807,centroid,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,true +LGD,676,District,Botad,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.111237,71.675173,centroid,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,true +LGD,668,District,Chhotaudepur,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.219363,73.873322,centroid,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,true +LGD,445,District,Dahod,LGD,24,State,485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.860252,74.112368,centroid,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,true +LGD,444,District,Dangs,LGD,24,State,489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.804932,73.700704,centroid,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,true +LGD,674,District,Devbhumi Dwarka,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.123915,69.460359,centroid,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,true +LGD,446,District,Gandhinagar,LGD,24,State,473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.255060,72.691828,centroid,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,true +LGD,675,District,Gir Somnath,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.904305,70.754896,centroid,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,true +LGD,447,District,Jamnagar,LGD,24,State,477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.284992,70.195152,centroid,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,true +LGD,448,District,Junagadh,LGD,24,State,479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.322204,70.484799,centroid,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,true +LGD,449,District,Kachchh,LGD,24,State,468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.649743,69.939927,centroid,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,true +LGD,450,District,Kheda,LGD,24,State,483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.837464,72.950496,centroid,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,true +LGD,451,District,Mahesana,LGD,24,State,471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.609492,72.466734,centroid,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,true +LGD,669,District,Mahisagar,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.187631,73.647054,centroid,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,true +LGD,673,District,Morbi,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.834967,70.903505,centroid,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,true +LGD,452,District,Narmada,LGD,24,State,487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.736946,73.644961,centroid,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,true +LGD,453,District,Navsari,LGD,24,State,490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.815302,73.092556,centroid,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,true +LGD,454,District,Panch Mahals,LGD,24,State,484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.719962,73.625560,centroid,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,true +LGD,455,District,Patan,LGD,24,State,470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.770377,71.758662,centroid,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,true +LGD,456,District,Porbandar,LGD,24,State,478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.654830,69.777118,centroid,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,true +LGD,457,District,Rajkot,LGD,24,State,476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.025462,70.744479,centroid,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,true +LGD,458,District,Sabar Kantha,LGD,24,State,472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.804138,73.036193,centroid,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,true +LGD,459,District,Surat,LGD,24,State,492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.268923,73.071114,centroid,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,true +LGD,460,District,Surendranagar,LGD,24,State,475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.765832,71.593076,centroid,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,true +LGD,641,District,Tapi,LGD,24,State,493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.191623,73.626694,centroid,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,true +LGD,461,District,Vadodara,LGD,24,State,486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.248056,73.239088,centroid,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,true +LGD,462,District,Valsad,LGD,24,State,491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.418149,73.120123,centroid,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,true +LGD,789,District,Vav-Tharad,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,58,District,Ambala,LGD,6,State,70,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.328333,76.938819,centroid,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,true +LGD,59,District,Bhiwani,LGD,6,State,81,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.779986,75.890362,centroid,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,true +LGD,701,District,Charkhi Dadri,LGD,6,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.576821,76.153473,centroid,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,true +LGD,60,District,Faridabad,LGD,6,State,88,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.352029,77.342381,centroid,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,true +LGD,61,District,Fatehabad,LGD,6,State,78,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.568879,75.576977,centroid,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,true +LGD,62,District,Gurugram,LGD,6,State,86,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.369140,76.939969,centroid,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,true +LGD,792,District,Hansi,LGD,6,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +LGD,63,District,Hisar,LGD,6,State,80,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.211695,75.822441,centroid,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,true +LGD,64,District,Jhajjar,LGD,6,State,83,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.604827,76.648173,centroid,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,true +LGD,65,District,Jind,LGD,6,State,77,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.435165,76.303632,centroid,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,true +LGD,66,District,Kaithal,LGD,6,State,73,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.811241,76.413852,centroid,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,true +LGD,67,District,Karnal,LGD,6,State,74,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.688952,76.887790,centroid,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,true +LGD,68,District,Kurukshetra,LGD,6,State,72,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.038696,76.784940,centroid,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,true +LGD,69,District,Mahendragarh,LGD,6,State,84,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.171027,76.138339,centroid,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,true +LGD,604,District,Nuh,LGD,6,State,87,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.985194,77.050196,centroid,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,true +LGD,619,District,Palwal,LGD,6,State,89,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.062991,77.334914,centroid,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,true +LGD,70,District,Panchkula,LGD,6,State,69,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.686460,76.977506,centroid,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,true +LGD,71,District,Panipat,LGD,6,State,75,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.337959,76.928109,centroid,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,true +LGD,72,District,Rewari,LGD,6,State,85,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.240787,76.536358,centroid,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,true +LGD,73,District,Rohtak,LGD,6,State,82,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.912077,76.530277,centroid,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,true +LGD,74,District,Sirsa,LGD,6,State,79,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.615601,74.900793,centroid,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,true +LGD,75,District,Sonipat,LGD,6,State,76,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.056549,76.874796,centroid,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,true +LGD,76,District,Yamunanagar,LGD,6,State,71,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.234263,77.302286,centroid,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,true +LGD,15,District,Bilaspur,LGD,2,State,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.370997,76.670218,centroid,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,true +LGD,16,District,Chamba,LGD,2,State,23,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.674760,76.348210,centroid,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,true +LGD,17,District,Hamirpur,LGD,2,State,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.667072,76.525513,centroid,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,true +LGD,18,District,Kangra,LGD,2,State,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.108262,76.315594,centroid,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,true +LGD,19,District,Kinnaur,LGD,2,State,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.595321,78.413983,centroid,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,true +LGD,20,District,Kullu,LGD,2,State,26,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.902180,77.398851,centroid,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,true +LGD,21,District,Lahaul And Spiti,LGD,2,State,25,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.480058,77.616702,centroid,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,true +LGD,22,District,Mandi,LGD,2,State,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.636785,76.991568,centroid,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,true +LGD,23,District,Shimla,LGD,2,State,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.197358,77.632010,centroid,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,true +LGD,24,District,Sirmaur,LGD,2,State,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.666819,77.430921,centroid,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,true +LGD,25,District,Solan,LGD,2,State,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.045294,76.909556,centroid,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,true +LGD,26,District,Una,LGD,2,State,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.579300,76.209866,centroid,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,true +LGD,1,District,Anantnag,LGD,1,State,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.826532,75.324713,centroid,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,true +LGD,623,District,Bandipora,LGD,1,State,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.587294,74.876122,centroid,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,true +LGD,3,District,Baramulla,LGD,1,State,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.158233,74.302510,centroid,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,true +LGD,2,District,Budgam,LGD,1,State,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.918231,74.634582,centroid,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,true +LGD,4,District,Doda,LGD,1,State,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.093287,75.714680,centroid,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,true +LGD,626,District,Ganderbal,LGD,1,State,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.262056,75.032361,centroid,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,true +LGD,5,District,Jammu,LGD,1,State,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.804977,74.746861,centroid,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,true +LGD,7,District,Kathua,LGD,1,State,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.574591,75.583408,centroid,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,true +LGD,620,District,Kishtwar,LGD,1,State,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.549896,75.971004,centroid,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,true +LGD,622,District,Kulgam,LGD,1,State,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.606434,74.860001,centroid,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,true +LGD,8,District,Kupwara,LGD,1,State,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.521364,74.207221,centroid,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,true +LGD,10,District,Poonch,LGD,1,State,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.783995,74.017819,centroid,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,true +LGD,11,District,Pulwama,LGD,1,State,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.940691,75.016857,centroid,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,true +LGD,12,District,Rajouri,LGD,1,State,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.278226,74.380875,centroid,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,true +LGD,621,District,Ramban,LGD,1,State,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.307671,75.189864,centroid,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,true +LGD,627,District,Reasi,LGD,1,State,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.238912,74.831425,centroid,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,true +LGD,624,District,Samba,LGD,1,State,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.581686,75.090492,centroid,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,true +LGD,625,District,Shopian,LGD,1,State,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.735213,74.818533,centroid,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,true +LGD,13,District,Srinagar,LGD,1,State,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.114653,74.821269,centroid,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,true +LGD,14,District,Udhampur,LGD,1,State,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.898827,75.296952,centroid,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,true +LGD,322,District,Bokaro,LGD,20,State,355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.694742,85.996538,centroid,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,true +LGD,323,District,Chatra,LGD,20,State,347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.164478,84.891481,centroid,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,true +LGD,324,District,Deoghar,LGD,20,State,350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.328324,86.740210,centroid,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,true +LGD,325,District,Dhanbad,LGD,20,State,354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.826760,86.472253,centroid,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,true +LGD,326,District,Dumka,LGD,20,State,362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.319558,87.266417,centroid,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,true +LGD,327,District,East Singhbum,LGD,20,State,357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.582489,86.451427,centroid,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,true +LGD,328,District,Garhwa,LGD,20,State,346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.103698,83.698491,centroid,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,true +LGD,329,District,Giridih,LGD,20,State,349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.293575,86.110998,centroid,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,true +LGD,330,District,Godda,LGD,20,State,351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.858838,87.308684,centroid,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,true +LGD,331,District,Gumla,LGD,20,State,366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.103200,84.532365,centroid,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,true +LGD,332,District,Hazaribagh,LGD,20,State,360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.062077,85.425876,centroid,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,true +LGD,333,District,Jamtara,LGD,20,State,363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.975652,86.907467,centroid,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,true +LGD,606,District,Khunti,LGD,20,State,365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.994324,85.262599,centroid,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,true +LGD,334,District,Koderma,LGD,20,State,348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.500046,85.667996,centroid,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,true +LGD,335,District,Latehar,LGD,20,State,359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.716982,84.444799,centroid,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,true +LGD,336,District,Lohardaga,LGD,20,State,356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.475720,84.671773,centroid,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,true +LGD,337,District,Pakur,LGD,20,State,353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.564154,87.662615,centroid,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,true +LGD,338,District,Palamu,LGD,20,State,358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.199754,84.168881,centroid,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,true +LGD,607,District,Ramgarh,LGD,20,State,361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.634171,85.564362,centroid,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,true +LGD,339,District,Ranchi,LGD,20,State,364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.328674,85.375279,centroid,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,true +LGD,340,District,Sahebganj,LGD,20,State,352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.010776,87.678156,centroid,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,true +LGD,341,District,Saraikela Kharsawan,LGD,20,State,369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.847376,85.950299,centroid,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,true +LGD,342,District,Simdega,LGD,20,State,367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.581800,84.564239,centroid,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,true +LGD,343,District,West Singhbhum,LGD,20,State,368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.420670,85.518106,centroid,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,true +LGD,524,District,Bagalkote,LGD,29,State,556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.221360,75.625545,centroid,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,true +LGD,528,District,Ballari,LGD,29,State,565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.110053,76.532663,centroid,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,true +LGD,527,District,Belagavi,LGD,29,State,555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.120633,74.823078,centroid,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,true +LGD,526,District,Bengaluru Rural,LGD,29,State,583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.227244,77.574079,centroid,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,true +LGD,631,District,Bengaluru South,LGD,29,State,584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.679132,77.335368,centroid,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,true +LGD,525,District,Bengaluru Urban,LGD,29,State,572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.951773,77.593709,centroid,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,true +LGD,529,District,Bidar,LGD,29,State,558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.952944,77.225064,centroid,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,true +LGD,531,District,Chamarajanagar,LGD,29,State,578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.958215,77.097666,centroid,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,true +LGD,630,District,Chikkaballapura,LGD,29,State,582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.578012,77.835250,centroid,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,true +LGD,532,District,Chikkamagaluru,LGD,29,State,570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.454630,75.690643,centroid,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,true +LGD,533,District,Chitradurga,LGD,29,State,566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.168582,76.515192,centroid,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,true +LGD,534,District,Dakshina Kannada,LGD,29,State,575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.853124,75.250904,centroid,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,true +LGD,535,District,Davanagere,LGD,29,State,567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.408738,75.954074,centroid,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,true +LGD,536,District,Dharwad,LGD,29,State,562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.390180,75.152300,centroid,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,true +LGD,537,District,Gadag,LGD,29,State,561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.431463,75.665251,centroid,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,true +LGD,539,District,Hassan,LGD,29,State,574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.996418,76.107830,centroid,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,true +LGD,540,District,Haveri,LGD,29,State,564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.738833,75.416481,centroid,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,true +LGD,538,District,Kalaburagi,LGD,29,State,579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.260450,76.868950,centroid,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,true +LGD,541,District,Kodagu,LGD,29,State,576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.325015,75.801291,centroid,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,true +LGD,542,District,Kolar,LGD,29,State,581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.139716,78.217875,centroid,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,true +LGD,543,District,Koppal,LGD,29,State,560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.562534,76.221462,centroid,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,true +LGD,544,District,Mandya,LGD,29,State,573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.611423,76.797236,centroid,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,true +LGD,545,District,Mysuru,LGD,29,State,577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.210442,76.440368,centroid,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,true +LGD,546,District,Raichur,LGD,29,State,559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.090678,76.891761,centroid,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,true +LGD,547,District,Shivamogga,LGD,29,State,568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.043206,75.220165,centroid,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,true +LGD,548,District,Tumakuru,LGD,29,State,571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.521638,76.946204,centroid,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,true +LGD,549,District,Udupi,LGD,29,State,569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.498278,74.871960,centroid,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,true +LGD,550,District,Uttara Kannada,LGD,29,State,563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.791505,74.619576,centroid,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,true +LGD,738,District,Vijayanagara,LGD,29,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +LGD,530,District,Vijayapura,LGD,29,State,557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.794485,75.952820,centroid,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,true +LGD,635,District,Yadgir,LGD,29,State,580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.626858,76.912489,centroid,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,true +LGD,554,District,Alappuzha,LGD,32,State,598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.428387,76.447041,centroid,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,true +LGD,555,District,Ernakulam,LGD,32,State,595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.084494,76.546013,centroid,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,true +LGD,556,District,Idukki,LGD,32,State,596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.839668,77.056847,centroid,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,true +LGD,557,District,Kannur,LGD,32,State,589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.001100,75.523524,centroid,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,true +LGD,558,District,Kasaragod,LGD,32,State,588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.462369,75.151022,centroid,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,true +LGD,559,District,Kollam,LGD,32,State,600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.962527,76.871728,centroid,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,true +LGD,560,District,Kottayam,LGD,32,State,597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.637751,76.650700,centroid,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,true +LGD,561,District,Kozhikode,LGD,32,State,591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.485645,75.833309,centroid,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,true +LGD,562,District,Malappuram,LGD,32,State,592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.133326,76.154377,centroid,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,true +LGD,563,District,Palakkad,LGD,32,State,593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.795647,76.556398,centroid,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,true +LGD,564,District,Pathanamthitta,LGD,32,State,599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.284934,76.926426,centroid,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,true +LGD,565,District,Thiruvananthapuram,LGD,32,State,601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.609470,77.012216,centroid,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,true +LGD,566,District,Thrissur,LGD,32,State,594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.471945,76.314555,centroid,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,true +LGD,567,District,Wayanad,LGD,32,State,590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.712508,76.097753,centroid,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,true +LGD,6,District,Kargil,LGD,37,State,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.902845,76.494643,centroid,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,true +LGD,9,District,Leh Ladakh,LGD,37,State,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,35.043894,76.821315,centroid,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,true +LGD,553,District,Lakshadweep District,LGD,31,State,587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,true +LGD,667,District,Agar-Malwa,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.826490,76.071034,centroid,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,true +LGD,639,District,Alirajpur,LGD,23,State,465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.314414,74.363886,centroid,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,true +LGD,390,District,Anuppur,LGD,23,State,461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.056856,81.682706,centroid,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,true +LGD,391,District,Ashoknagar,LGD,23,State,459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.609385,77.875356,centroid,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,true +LGD,392,District,Balaghat,LGD,23,State,457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.880796,80.359833,centroid,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,true +LGD,393,District,Barwani,LGD,23,State,441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.788217,75.020879,centroid,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,true +LGD,394,District,Betul,LGD,23,State,447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.878491,77.871242,centroid,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,true +LGD,395,District,Bhind,LGD,23,State,420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.421879,78.721245,centroid,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,true +LGD,396,District,Bhopal,LGD,23,State,444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.470159,77.390757,centroid,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,true +LGD,397,District,Burhanpur,LGD,23,State,467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.370677,76.369160,centroid,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,true +LGD,398,District,Chhatarpur,LGD,23,State,425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.798140,79.665843,centroid,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,true +LGD,399,District,Chhindwara,LGD,23,State,455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.122543,78.854128,centroid,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,true +LGD,400,District,Damoh,LGD,23,State,428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.812319,79.526831,centroid,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,true +LGD,401,District,Datia,LGD,23,State,422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.801368,78.598029,centroid,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,true +LGD,402,District,Dewas,LGD,23,State,437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.744198,76.456861,centroid,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,true +LGD,403,District,Dhar,LGD,23,State,438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.497955,75.103968,centroid,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,true +LGD,404,District,Dindori,LGD,23,State,453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.889989,81.051289,centroid,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,true +LGD,406,District,Guna,LGD,23,State,458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.555940,77.198633,centroid,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,true +LGD,407,District,Gwalior,LGD,23,State,421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.039596,78.146084,centroid,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,true +LGD,408,District,Harda,LGD,23,State,448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.232408,77.123520,centroid,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,true +LGD,410,District,Indore,LGD,23,State,439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.713138,75.782221,centroid,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,true +LGD,411,District,Jabalpur,LGD,23,State,451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.234003,79.975911,centroid,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,true +LGD,412,District,Jhabua,LGD,23,State,464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.892390,74.671552,centroid,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,true +LGD,413,District,Katni,LGD,23,State,450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.752838,80.401399,centroid,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,true +LGD,405,District,Khandwa (East Nimar),LGD,23,State,466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.935151,76.568398,centroid,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,true +LGD,414,District,Khargone (West Nimar),LGD,23,State,440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.918639,75.771495,centroid,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,true +LGD,784,District,Maihar,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,415,District,Mandla,LGD,23,State,454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.639254,80.512199,centroid,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,true +LGD,416,District,Mandsaur,LGD,23,State,433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.204426,75.405140,centroid,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,true +LGD,766,District,MAUGANJ,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,417,District,Morena,LGD,23,State,419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.413015,77.868115,centroid,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,true +LGD,409,District,Narmadapuram,LGD,23,State,449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.590666,77.990687,centroid,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,true +LGD,418,District,Narsimhapur,LGD,23,State,452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.936237,79.087885,centroid,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,true +LGD,419,District,Neemuch,LGD,23,State,432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.590871,75.141734,centroid,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,true +LGD,722,District,Niwari,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.284792,78.748152,centroid,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,true +LGD,785,District,Pandhurna,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,420,District,Panna,LGD,23,State,426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.421056,80.189010,centroid,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,true +LGD,421,District,Raisen,LGD,23,State,446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.220061,78.120590,centroid,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,true +LGD,422,District,Rajgarh,LGD,23,State,442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.861158,76.732433,centroid,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,true +LGD,423,District,Ratlam,LGD,23,State,434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.502339,75.088589,centroid,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,true +LGD,424,District,Rewa,LGD,23,State,430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.755316,81.587224,centroid,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,true +LGD,425,District,Sagar,LGD,23,State,427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.850043,78.759732,centroid,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,true +LGD,426,District,Satna,LGD,23,State,429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.528700,80.830748,centroid,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,true +LGD,427,District,Sehore,LGD,23,State,445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.987637,77.127430,centroid,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,true +LGD,428,District,Seoni,LGD,23,State,456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.316960,79.689162,centroid,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,true +LGD,429,District,Shahdol,LGD,23,State,460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.629442,81.473493,centroid,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,true +LGD,430,District,Shajapur,LGD,23,State,436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.383975,76.559497,centroid,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,true +LGD,431,District,Sheopur,LGD,23,State,418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.754479,77.007246,centroid,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,true +LGD,432,District,Shivpuri,LGD,23,State,423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.365539,77.805373,centroid,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,true +LGD,433,District,Sidhi,LGD,23,State,462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.220619,81.834023,centroid,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,true +LGD,638,District,Singrauli,LGD,23,State,463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.215913,82.419945,centroid,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,true +LGD,434,District,Tikamgarh,LGD,23,State,424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.883196,79.016107,centroid,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,true +LGD,435,District,Ujjain,LGD,23,State,435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.330883,75.669034,centroid,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,true +LGD,436,District,Umaria,LGD,23,State,431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.562793,80.973190,centroid,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,true +LGD,437,District,Vidisha,LGD,23,State,443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.892313,77.813112,centroid,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,true +LGD,466,District,Ahilyanagar,LGD,27,State,522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.205391,74.675231,centroid,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,true +LGD,467,District,Akola,LGD,27,State,501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.748005,77.056016,centroid,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,true +LGD,468,District,Amravati,LGD,27,State,503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.187565,77.570354,centroid,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,true +LGD,470,District,Beed,LGD,27,State,523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.946660,75.838225,centroid,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,true +LGD,471,District,Bhandara,LGD,27,State,506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.115620,79.763152,centroid,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,true +LGD,472,District,Buldhana,LGD,27,State,500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.510807,76.407133,centroid,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,true +LGD,473,District,Chandrapur,LGD,27,State,509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.118386,79.440540,centroid,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,true +LGD,469,District,Chhatrapati Sambhajinagar,LGD,27,State,515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.027442,75.279761,centroid,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,true +LGD,488,District,Dharashiv,LGD,27,State,525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.188746,76.036898,centroid,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,true +LGD,474,District,Dhule,LGD,27,State,498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.110370,74.600494,centroid,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,true +LGD,475,District,Gadchiroli,LGD,27,State,508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.787912,80.240432,centroid,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,true +LGD,476,District,Gondia,LGD,27,State,507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.165306,80.217855,centroid,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,true +LGD,477,District,Hingoli,LGD,27,State,512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.637480,77.100455,centroid,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,true +LGD,478,District,Jalgaon,LGD,27,State,499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.932545,75.487940,centroid,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,true +LGD,479,District,Jalna,LGD,27,State,514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.807495,75.980338,centroid,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,true +LGD,480,District,Kolhapur,LGD,27,State,530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.471481,74.158638,centroid,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,true +LGD,481,District,Latur,LGD,27,State,524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.373766,76.759511,centroid,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,true +LGD,482,District,Mumbai,LGD,27,State,519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.989036,72.838017,centroid,72.792496,18.893405,72.881476,19.053004,SOI_Districts,2023-12-11,true +LGD,483,District,Mumbai Suburban,LGD,27,State,518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.131779,72.884497,centroid,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,true +LGD,484,District,Nagpur,LGD,27,State,505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.178155,79.085030,centroid,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,true +LGD,485,District,Nanded,LGD,27,State,511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.112445,77.617827,centroid,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,true +LGD,486,District,Nandurbar,LGD,27,State,497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.550193,74.216834,centroid,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,true +LGD,487,District,Nashik,LGD,27,State,516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.259820,74.070699,centroid,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,true +LGD,665,District,Palghar,LGD,27,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.793763,73.012184,centroid,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,true +LGD,489,District,Parbhani,LGD,27,State,513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.268248,76.690859,centroid,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,true +LGD,490,District,Pune,LGD,27,State,521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.571118,74.067998,centroid,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,true +LGD,491,District,Raigad,LGD,27,State,520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.510062,73.221458,centroid,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,true +LGD,492,District,Ratnagiri,LGD,27,State,528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.274418,73.454737,centroid,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,true +LGD,493,District,Sangli,LGD,27,State,531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.113762,74.767913,centroid,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,true +LGD,494,District,Satara,LGD,27,State,527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.670029,74.172659,centroid,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,true +LGD,495,District,Sindhudurg,LGD,27,State,529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.134008,73.737764,centroid,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,true +LGD,496,District,Solapur,LGD,27,State,526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.790589,75.483125,centroid,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,true +LGD,497,District,Thane,LGD,27,State,517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.361103,73.319543,centroid,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,true +LGD,498,District,Wardha,LGD,27,State,504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.797145,78.585883,centroid,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,true +LGD,499,District,Washim,LGD,27,State,502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.234103,77.216372,centroid,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,true +LGD,500,District,Yavatmal,LGD,27,State,510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.083546,78.161025,centroid,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,true +LGD,252,District,Bishnupur,LGD,14,State,275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.535799,93.797905,centroid,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,true +LGD,253,District,Chandel,LGD,14,State,280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.124837,94.007495,centroid,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,true +LGD,254,District,Churachandpur,LGD,14,State,274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.277193,93.602918,centroid,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,true +LGD,255,District,Imphal East,LGD,14,State,278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.832705,94.013173,centroid,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,true +LGD,256,District,Imphal West,LGD,14,State,277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.803266,93.872958,centroid,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,true +LGD,713,District,Jiribam,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.681775,93.152020,centroid,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,true +LGD,711,District,Kakching,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.427861,93.917808,centroid,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,true +LGD,717,District,Kamjong,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.824838,94.432038,centroid,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,true +LGD,712,District,Kangpokpi,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.992920,93.947737,centroid,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,true +LGD,714,District,Noney,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.677348,93.455938,centroid,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,true +LGD,715,District,Pherzawl,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.304682,93.220554,centroid,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,true +LGD,257,District,Senapati,LGD,14,State,272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.398440,94.124914,centroid,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,true +LGD,258,District,Tamenglong,LGD,14,State,273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.053484,93.550469,centroid,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,true +LGD,716,District,Tengnoupal,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.412591,94.222784,centroid,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,true +LGD,259,District,Thoubal,LGD,14,State,276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.615553,94.009519,centroid,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,true +LGD,260,District,Ukhrul,LGD,14,State,279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.237716,94.429581,centroid,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,true +LGD,740,District,Eastern West Khasi Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false +LGD,273,District,East Garo Hills,LGD,17,State,294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.618628,90.630370,centroid,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,true +LGD,657,District,East Jaintia Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.265690,92.463884,centroid,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,true +LGD,274,District,East Khasi Hills,LGD,17,State,298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.383453,91.800191,centroid,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,true +LGD,656,District,North Garo Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.850532,90.665283,centroid,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,true +LGD,276,District,Ri Bhoi,LGD,17,State,297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.873612,91.884129,centroid,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,true +LGD,277,District,South Garo Hills,LGD,17,State,295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.300548,90.593840,centroid,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,true +LGD,663,District,South West Garo Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.446276,89.989664,centroid,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,true +LGD,658,District,South West Khasi Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.312380,91.245827,centroid,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,true +LGD,278,District,West Garo Hills,LGD,17,State,293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.641756,90.197735,centroid,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,true +LGD,275,District,West Jaintia Hills,LGD,17,State,299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.485083,92.281958,centroid,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,true +LGD,279,District,West Khasi Hills,LGD,17,State,296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.598255,91.261737,centroid,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,true +LGD,261,District,Aizawl,LGD,15,State,283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.848541,92.890177,centroid,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,true +LGD,262,District,Champhai,LGD,15,State,284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.540546,93.231068,centroid,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,true +LGD,726,District,Hnahthial,LGD,15,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +LGD,728,District,Khawzawl,LGD,15,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +LGD,263,District,Kolasib,LGD,15,State,282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.141417,92.720432,centroid,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,true +LGD,264,District,Lawngtlai,LGD,15,State,287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.432755,92.765933,centroid,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,true +LGD,265,District,Lunglei,LGD,15,State,286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.972505,92.720138,centroid,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,true +LGD,266,District,Mamit,LGD,15,State,281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.755528,92.463997,centroid,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,true +LGD,727,District,Saitual,LGD,15,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +LGD,268,District,Serchhip,LGD,15,State,285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.308820,92.941508,centroid,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,true +LGD,267,District,Siaha,LGD,15,State,288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.291740,93.001449,centroid,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,true +LGD,758,District,Chumoukedima,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,244,District,Dimapur,LGD,13,State,265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.781128,93.794081,centroid,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,true +LGD,614,District,Kiphire,LGD,13,State,269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.842745,94.821768,centroid,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,true +LGD,245,District,Kohima,LGD,13,State,270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.771761,94.108881,centroid,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,true +LGD,615,District,Longleng,LGD,13,State,268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.552081,94.795531,centroid,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,true +LGD,788,District,Meluri,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,246,District,Mokokchung,LGD,13,State,262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.472284,94.528963,centroid,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,true +LGD,247,District,Mon,LGD,13,State,261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.677812,95.016718,centroid,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,true +LGD,764,District,Niuland,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,736,District,Noklak,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,613,District,Peren,LGD,13,State,271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.508382,93.624084,centroid,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,true +LGD,248,District,Phek,LGD,13,State,266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.647194,94.534539,centroid,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,true +LGD,765,District,Shamator,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,757,District,Tseminyu,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,249,District,Tuensang,LGD,13,State,267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.166672,94.887560,centroid,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,true +LGD,250,District,Wokha,LGD,13,State,264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.188371,94.191816,centroid,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,true +LGD,251,District,Zunheboto,LGD,13,State,263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.999722,94.483933,centroid,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,true +LGD,344,District,Anugola,LGD,21,State,384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.986355,84.905206,centroid,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,true +LGD,345,District,Balangir,LGD,21,State,393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.589427,83.171651,centroid,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,true +LGD,346,District,Baleshwar,LGD,21,State,377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.494441,86.906311,centroid,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,true +LGD,347,District,Baragada,LGD,21,State,370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.219614,83.349141,centroid,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,true +LGD,348,District,Bhadrak,LGD,21,State,378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.983044,86.625018,centroid,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,true +LGD,349,District,Boudh,LGD,21,State,391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.644444,84.172873,centroid,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,true +LGD,351,District,Debagada,LGD,21,State,373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.467033,84.785302,centroid,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,true +LGD,352,District,Dhenkanal,LGD,21,State,383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.826874,85.523896,centroid,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,true +LGD,353,District,Gajapati,LGD,21,State,389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.184171,84.161163,centroid,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,true +LGD,354,District,Ganjam,LGD,21,State,388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.624456,84.672465,centroid,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,true +LGD,355,District,Jagatsinghapur,LGD,21,State,380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.218649,86.335211,centroid,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,true +LGD,356,District,Jajpur,LGD,21,State,382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.856145,86.149442,centroid,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,true +LGD,357,District,Jharsuguda,LGD,21,State,371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.807224,83.946640,centroid,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,true +LGD,358,District,Kalahandi,LGD,21,State,395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.867583,83.107938,centroid,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,true +LGD,359,District,Kandhamala,LGD,21,State,390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.128180,84.045937,centroid,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,true +LGD,350,District,Kataka,LGD,21,State,381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.453340,85.696462,centroid,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,true +LGD,360,District,Kendrapada,LGD,21,State,379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.552578,86.609881,centroid,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,true +LGD,361,District,Kendujhar,LGD,21,State,375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.537820,85.702386,centroid,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,true +LGD,362,District,Khordha,LGD,21,State,386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.091062,85.514274,centroid,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,true +LGD,363,District,Koraput,LGD,21,State,398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.812874,82.719717,centroid,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,true +LGD,364,District,Malkangiri,LGD,21,State,399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.257715,81.950493,centroid,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,true +LGD,365,District,Mayurbhanj,LGD,21,State,376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.895372,86.408568,centroid,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,true +LGD,366,District,Nabarangpur,LGD,21,State,397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.576483,82.334523,centroid,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,true +LGD,367,District,Nayagada,LGD,21,State,385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.213177,84.997802,centroid,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,true +LGD,368,District,Nuapada,LGD,21,State,394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.466045,82.576879,centroid,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,true +LGD,369,District,Puri,LGD,21,State,387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.879081,85.725732,centroid,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,true +LGD,370,District,Rayagada,LGD,21,State,396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.363492,83.512441,centroid,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,true +LGD,371,District,Sambalpur,LGD,21,State,372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.452534,84.273391,centroid,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,true +LGD,372,District,Subarnapur,LGD,21,State,392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.930816,83.822370,centroid,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,true +LGD,373,District,Sundaragada,LGD,21,State,374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.079904,84.533191,interior_grid:simplified,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,true +LGD,598,District,Karaikal,LGD,34,State,637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.933424,79.802948,centroid,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,true +LGD,600,District,Puducherry,LGD,34,State,635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.916989,79.766405,centroid,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,true +LGD,27,District,Amritsar,LGD,3,State,49,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.705642,74.899424,centroid,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,true +LGD,605,District,Barnala,LGD,3,State,54,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.387784,75.498635,centroid,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,true +LGD,28,District,Bathinda,LGD,3,State,46,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.183238,75.040269,centroid,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,true +LGD,29,District,Faridkot,LGD,3,State,45,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.613481,74.777318,centroid,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,true +LGD,30,District,Fatehgarh Sahib,LGD,3,State,40,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.642697,76.375469,centroid,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,true +LGD,651,District,Fazilka,LGD,3,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.277026,74.163643,centroid,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,true +LGD,31,District,Ferozepur,LGD,3,State,43,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.912989,74.703010,centroid,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,true +LGD,32,District,Gurdaspur,LGD,3,State,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.916470,75.291003,centroid,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,true +LGD,33,District,Hoshiarpur,LGD,3,State,38,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.625016,75.857919,centroid,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,true +LGD,34,District,Jalandhar,LGD,3,State,37,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.212738,75.565804,centroid,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,true +LGD,35,District,Kapurthala,LGD,3,State,36,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.354438,75.400042,centroid,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,true +LGD,36,District,Ludhiana,LGD,3,State,41,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.805395,75.832732,centroid,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,true +LGD,737,District,Malerkotla,LGD,3,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +LGD,37,District,Mansa,LGD,3,State,47,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.907347,75.438503,centroid,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,true +LGD,38,District,Moga,LGD,3,State,42,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.761814,75.170324,centroid,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,true +LGD,662,District,Pathankot,LGD,3,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.296307,75.616245,centroid,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,true +LGD,41,District,Patiala,LGD,3,State,48,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.281721,76.350755,centroid,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,true +LGD,42,District,Rupnagar,LGD,3,State,51,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.062049,76.487646,centroid,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,true +LGD,43,District,Sangrur,LGD,3,State,53,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.211970,75.869115,centroid,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,true +LGD,608,District,S.A.S Nagar,LGD,3,State,52,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.680921,76.739758,centroid,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,true +LGD,40,District,Shahid Bhagat Singh Nagar,LGD,3,State,39,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.110048,76.154318,centroid,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,true +LGD,39,District,Sri Muktsar Sahib,LGD,3,State,44,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.299843,74.538399,centroid,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,true +LGD,609,District,Tarn Taran,LGD,3,State,50,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.336494,74.840379,centroid,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,true +LGD,86,District,Ajmer,LGD,8,State,119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.233499,74.773091,centroid,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,true +LGD,87,District,Alwar,LGD,8,State,104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.590899,76.601627,centroid,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,true +LGD,775,District,Balotra,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,88,District,Banswara,LGD,8,State,125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.476390,74.361987,centroid,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,true +LGD,89,District,Baran,LGD,8,State,128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.995630,76.747835,centroid,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,true +LGD,90,District,Barmer,LGD,8,State,115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.734986,71.474795,centroid,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,true +LGD,774,District,Beawar,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,91,District,Bharatpur,LGD,8,State,105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.247765,77.276538,centroid,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,true +LGD,92,District,Bhilwara,LGD,8,State,122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.481644,74.726677,centroid,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,true +LGD,93,District,Bikaner,LGD,8,State,101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.177209,73.174572,centroid,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,true +LGD,94,District,Bundi,LGD,8,State,121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.485609,75.790630,centroid,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,true +LGD,95,District,Chittorgarh,LGD,8,State,126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.822240,74.775399,centroid,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,true +LGD,96,District,Churu,LGD,8,State,102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.345118,74.696405,centroid,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,true +LGD,97,District,Dausa,LGD,8,State,109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.857579,76.510297,centroid,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,true +LGD,767,District,Deeg,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,98,District,Dholpur,LGD,8,State,106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.680863,77.702142,centroid,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,true +LGD,768,District,Didwana-Kuchaman,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,99,District,Dungarpur,LGD,8,State,124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.731872,73.853138,centroid,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,true +LGD,100,District,Ganganagar,LGD,8,State,99,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.395945,73.570535,centroid,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,true +LGD,101,District,Hanumangarh,LGD,8,State,100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.265979,74.561463,centroid,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,true +LGD,102,District,Jaipur,LGD,8,State,110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.976650,75.719841,centroid,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,true +LGD,103,District,Jaisalmer,LGD,8,State,114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.075201,70.901037,centroid,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,true +LGD,104,District,Jalore,LGD,8,State,116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.099518,72.211683,centroid,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,true +LGD,105,District,Jhalawar,LGD,8,State,129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.335986,76.193443,centroid,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,true +LGD,106,District,Jhunjhunu,LGD,8,State,103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.092715,75.549656,centroid,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,true +LGD,107,District,Jodhpur,LGD,8,State,113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.747773,72.785854,centroid,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,true +LGD,108,District,Karauli,LGD,8,State,107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.523079,76.958707,centroid,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,true +LGD,770,District,Khairthal-Tijara,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,109,District,Kota,LGD,8,State,127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.109266,76.106084,centroid,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,true +LGD,782,District,Kotputli-Behror,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,110,District,Nagaur,LGD,8,State,112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.065964,74.175488,centroid,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,true +LGD,111,District,Pali,LGD,8,State,118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.706921,73.519596,centroid,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,true +LGD,772,District,Phalodi,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,629,District,Pratapgarh,LGD,8,State,131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.029241,74.650304,centroid,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,true +LGD,112,District,Rajsamand,LGD,8,State,123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.227968,73.891708,centroid,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,true +LGD,777,District,Salumbar,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,113,District,Sawai Madhopur,LGD,8,State,108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.217244,76.460987,centroid,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,true +LGD,114,District,Sikar,LGD,8,State,111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.634011,75.288276,centroid,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,true +LGD,115,District,Sirohi,LGD,8,State,117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.761751,72.776047,centroid,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,true +LGD,116,District,Tonk,LGD,8,State,120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.148317,75.665959,centroid,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,true +LGD,117,District,Udaipur,LGD,8,State,130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.418699,73.689784,centroid,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,true +LGD,225,District,Gangtok,LGD,11,State,244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.292057,88.673069,centroid,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,true +LGD,228,District,Gyalshing,LGD,11,State,242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.348415,88.175462,centroid,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,true +LGD,226,District,Mangan,LGD,11,State,241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.743446,88.528275,centroid,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,true +LGD,227,District,Namchi,LGD,11,State,243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.286440,88.384824,centroid,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,true +LGD,741,District,Pakyong,LGD,11,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +LGD,742,District,Soreng,LGD,11,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +LGD,610,District,Ariyalur,LGD,33,State,616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.162551,79.242972,centroid,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,true +LGD,730,District,Chengalpattu,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.582979,79.999171,centroid,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,true +LGD,568,District,Chennai,LGD,33,State,603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.100428,80.234893,centroid,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,true +LGD,569,District,Coimbatore,LGD,33,State,632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.878062,76.975747,centroid,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,true +LGD,570,District,Cuddalore,LGD,33,State,617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.535937,79.450508,centroid,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,true +LGD,571,District,Dharmapuri,LGD,33,State,630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.100517,78.193248,centroid,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,true +LGD,572,District,Dindigul,LGD,33,State,612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.391669,77.819666,centroid,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,true +LGD,573,District,Erode,LGD,33,State,610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.479549,77.380254,centroid,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,true +LGD,729,District,Kallakurichi,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.803600,79.034514,centroid,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,true +LGD,574,District,Kancheepuram,LGD,33,State,604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.832664,79.849732,centroid,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,true +LGD,575,District,Kanniyakumari,LGD,33,State,629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.308118,77.359590,centroid,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,true +LGD,576,District,Karur,LGD,33,State,613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.844322,78.134624,centroid,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,true +LGD,577,District,Krishnagiri,LGD,33,State,631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.490160,78.032355,centroid,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,true +LGD,578,District,Madurai,LGD,33,State,623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.922720,78.005214,centroid,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,true +LGD,735,District,Mayiladuthurai,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +LGD,579,District,Nagapattinam,LGD,33,State,618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.841301,79.737891,centroid,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,true +LGD,580,District,Namakkal,LGD,33,State,609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.318778,78.135667,centroid,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,true +LGD,581,District,Perambalur,LGD,33,State,615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.275076,78.891647,centroid,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,true +LGD,582,District,Pudukkottai,LGD,33,State,621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.360782,78.879400,centroid,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,true +LGD,583,District,Ramanathapuram,LGD,33,State,626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.437609,78.685761,centroid,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,true +LGD,731,District,Ranipet,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.949902,79.461686,centroid,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,true +LGD,584,District,Salem,LGD,33,State,608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.690215,78.137146,centroid,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,true +LGD,585,District,Sivaganga,LGD,33,State,622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.916501,78.596076,centroid,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,true +LGD,733,District,Tenkasi,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.092518,77.459924,centroid,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,true +LGD,586,District,Thanjavur,LGD,33,State,620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.670696,79.241463,centroid,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,true +LGD,588,District,Theni,LGD,33,State,624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.891794,77.438407,centroid,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,true +LGD,587,District,The Nilgiris,LGD,33,State,611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.453320,76.626115,centroid,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,true +LGD,589,District,Thiruvallur,LGD,33,State,602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.244045,79.932765,centroid,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,true +LGD,590,District,Thiruvarur,LGD,33,State,619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.679399,79.533581,centroid,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,true +LGD,594,District,Thoothukkudi,LGD,33,State,627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.901449,77.997628,centroid,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,true +LGD,591,District,Tiruchirappalli,LGD,33,State,614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.891184,78.570397,centroid,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,true +LGD,592,District,Tirunelveli,LGD,33,State,628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.575007,77.590408,centroid,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,true +LGD,732,District,Tirupathur,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.593927,78.655115,centroid,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,true +LGD,634,District,Tiruppur,LGD,33,State,633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.838977,77.407267,centroid,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,true +LGD,593,District,Tiruvannamalai,LGD,33,State,606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.432635,79.166497,centroid,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,true +LGD,595,District,Vellore,LGD,33,State,605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.914206,78.965876,centroid,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,true +LGD,596,District,Viluppuram,LGD,33,State,607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.139718,79.540604,centroid,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,true +LGD,597,District,Virudhunagar,LGD,33,State,625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.492324,77.905719,centroid,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,true +LGD,501,District,Adilabad,LGD,36,State,532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.519916,78.565982,centroid,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,true +LGD,690,District,Bhadradri Kothagudem,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.690454,80.716493,centroid,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,true +LGD,686,District,Hanumakonda,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.046534,79.463730,centroid,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,true +LGD,507,District,Hyderabad,LGD,36,State,536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.395112,78.470167,centroid,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,true +LGD,681,District,Jagitial,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.832238,78.877896,centroid,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,true +LGD,689,District,Jangoan,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.727859,79.284325,centroid,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,true +LGD,687,District,Jayashankar Bhupalapally,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.506030,79.924365,centroid,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,true +LGD,695,District,Jogulamba Gadwal,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.071697,77.780993,centroid,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,true +LGD,685,District,Kamareddy,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.324814,78.061681,centroid,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,true +LGD,508,District,Karimnagar,LGD,36,State,534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.380033,79.245348,centroid,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,true +LGD,509,District,Khammam,LGD,36,State,541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.205947,80.365131,centroid,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,true +LGD,699,District,Kumuram Bheem Asifabad,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.357095,79.419802,centroid,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,true +LGD,688,District,Mahabubabad,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.675222,79.996276,centroid,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,true +LGD,512,District,Mahabubnagar,LGD,36,State,538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.751490,78.013247,centroid,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,true +LGD,684,District,Mancherial,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.991463,79.512315,centroid,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,true +LGD,513,District,Medak,LGD,36,State,535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.953209,78.265038,centroid,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,true +LGD,700,District,Medchal Malkajgiri,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.544214,78.557696,centroid,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,true +LGD,720,District,Mulugu,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.291487,80.337459,centroid,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,true +LGD,694,District,Nagarkurnool,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.382246,78.595988,centroid,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,true +LGD,514,District,Nalgonda,LGD,36,State,539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.876525,79.193064,centroid,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,true +LGD,721,District,Narayanpet,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.638254,77.582727,centroid,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,true +LGD,680,District,Nirmal,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.113181,78.314942,centroid,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,true +LGD,516,District,Nizamabad,LGD,36,State,533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.701604,78.211364,centroid,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,true +LGD,682,District,Peddapalli,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.620155,79.453681,centroid,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,true +LGD,683,District,Rajanna Sircilla,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.414096,78.763447,centroid,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,true +LGD,518,District,Ranga Reddy,LGD,36,State,537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.130963,78.412504,centroid,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,true +LGD,691,District,Sangareddy,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.785340,77.874129,centroid,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,true +LGD,692,District,Siddipet,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.021641,78.855083,centroid,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,true +LGD,696,District,Suryapet,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.080643,79.754395,centroid,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,true +LGD,698,District,Vikarabad,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.246310,77.750811,centroid,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,true +LGD,693,District,Wanaparthy,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.287718,78.049507,centroid,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,true +LGD,522,District,Warangal,LGD,36,State,540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.919204,79.737482,centroid,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,true +LGD,697,District,Yadadri Bhuvanagiri,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.451240,78.978697,centroid,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,true +LGD,465,District,Dadra And Nagar Haveli,LGD,38,State,496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.191077,73.058434,interior_grid,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,true +LGD,463,District,Daman,LGD,38,State,495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.414235,72.852713,centroid,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,true +LGD,464,District,Diu,LGD,38,State,494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.721261,70.937137,centroid,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,true +LGD,269,District,Dhalai,LGD,16,State,291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.837087,91.924036,centroid,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,true +LGD,654,District,Gomati,LGD,16,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.511621,91.627811,centroid,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,true +LGD,652,District,Khowai,LGD,16,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.943724,91.660954,centroid,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,true +LGD,270,District,North Tripura,LGD,16,State,292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.097014,92.210814,centroid,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,true +LGD,653,District,Sepahijala,LGD,16,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.585052,91.331523,centroid,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,true +LGD,271,District,South Tripura,LGD,16,State,290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.200333,91.577175,centroid,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,true +LGD,655,District,Unakoti,LGD,16,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.204434,92.041151,centroid,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,true +LGD,272,District,West Tripura,LGD,16,State,289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.886599,91.399302,centroid,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,true +LGD,45,District,Almora,LGD,5,State,64,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.690751,79.504039,centroid,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,true +LGD,46,District,Bageshwar,LGD,5,State,63,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.996405,79.858939,centroid,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,true +LGD,47,District,Chamoli,LGD,5,State,57,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.495149,79.577047,centroid,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,true +LGD,48,District,Champawat,LGD,5,State,65,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.281123,80.069053,centroid,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,true +LGD,49,District,Dehradun,LGD,5,State,60,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.472166,77.967550,centroid,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,true +LGD,50,District,Haridwar,LGD,5,State,68,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.881397,77.996044,centroid,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,true +LGD,51,District,Nainital,LGD,5,State,66,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.317293,79.463201,centroid,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,true +LGD,52,District,Pauri Garhwal,LGD,5,State,61,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.879961,78.763766,centroid,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,true +LGD,53,District,Pithoragarh,LGD,5,State,62,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.113997,80.345565,centroid,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,true +LGD,54,District,Rudraprayag,LGD,5,State,58,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.506914,79.052455,centroid,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,true +LGD,55,District,Tehri Garhwal,LGD,5,State,59,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.436550,78.535529,centroid,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,true +LGD,56,District,Udham Singh Nagar,LGD,5,State,67,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.041948,79.470845,centroid,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,true +LGD,57,District,Uttarkashi,LGD,5,State,56,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.971870,78.607019,centroid,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,true +LGD,118,District,Agra,LGD,9,State,146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.036251,78.076398,centroid,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,true +LGD,119,District,Aligarh,LGD,9,State,143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.926465,78.065301,centroid,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,true +LGD,121,District,Ambedkar Nagar,LGD,9,State,178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.418558,82.666105,centroid,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,true +LGD,640,District,Amethi,LGD,9,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.323815,81.668704,centroid,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,true +LGD,154,District,Amroha,LGD,9,State,137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.835642,78.368246,centroid,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,true +LGD,122,District,Auraiya,LGD,9,State,162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.658178,79.479116,centroid,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,true +LGD,140,District,Ayodhya,LGD,9,State,177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.657554,81.997104,centroid,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,true +LGD,123,District,Azamgarh,LGD,9,State,191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.045498,83.067296,centroid,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,true +LGD,124,District,Baghpat,LGD,9,State,139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.056937,77.308508,centroid,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,true +LGD,125,District,Bahraich,LGD,9,State,180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.698230,81.492806,centroid,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,true +LGD,126,District,Ballia,LGD,9,State,193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.876254,84.102614,centroid,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,true +LGD,127,District,Balrampur,LGD,9,State,182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.483685,82.375229,centroid,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,true +LGD,128,District,Banda,LGD,9,State,170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.470939,80.557396,centroid,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,true +LGD,129,District,Bara Banki,LGD,9,State,176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.939037,81.332417,centroid,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,true +LGD,130,District,Bareilly,LGD,9,State,150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.457976,79.431403,centroid,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,true +LGD,131,District,Basti,LGD,9,State,185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.820038,82.625709,centroid,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,true +LGD,179,District,Bhadohi,LGD,9,State,198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.347933,82.464128,centroid,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,true +LGD,132,District,Bijnor,LGD,9,State,134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.386207,78.388853,centroid,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,true +LGD,133,District,Budaun,LGD,9,State,149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.077854,79.041570,centroid,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,true +LGD,134,District,Bulandshahr,LGD,9,State,142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.362548,78.014505,centroid,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,true +LGD,135,District,Chandauli,LGD,9,State,196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.141544,83.258105,centroid,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,true +LGD,136,District,Chitrakoot,LGD,9,State,171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.206227,81.077462,centroid,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,true +LGD,137,District,Deoria,LGD,9,State,190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.425350,83.834585,centroid,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,true +LGD,138,District,Etah,LGD,9,State,201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.515541,78.717419,centroid,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,true +LGD,139,District,Etawah,LGD,9,State,161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.764067,79.094854,centroid,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,true +LGD,141,District,Farrukhabad,LGD,9,State,159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.431334,79.458667,centroid,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,true +LGD,142,District,Fatehpur,LGD,9,State,172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.874894,80.807709,centroid,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,true +LGD,143,District,Firozabad,LGD,9,State,147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.187236,78.526428,centroid,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,true +LGD,144,District,Gautam Buddha Nagar,LGD,9,State,141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.394059,77.555973,centroid,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,true +LGD,145,District,Ghaziabad,LGD,9,State,140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.767749,77.476015,centroid,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,true +LGD,146,District,Ghazipur,LGD,9,State,195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.623962,83.555544,centroid,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,true +LGD,147,District,Gonda,LGD,9,State,183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.083387,82.025294,centroid,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,true +LGD,148,District,Gorakhpur,LGD,9,State,188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.656068,83.359032,centroid,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,true +LGD,149,District,Hamirpur,LGD,9,State,168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.751017,79.865350,centroid,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,true +LGD,661,District,Hapur,LGD,9,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.722383,77.893127,centroid,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,true +LGD,150,District,Hardoi,LGD,9,State,155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.330336,80.161580,centroid,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,true +LGD,163,District,Hathras,LGD,9,State,144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.581716,78.164440,centroid,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,true +LGD,151,District,Jalaun,LGD,9,State,165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.091193,79.385801,centroid,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,true +LGD,152,District,Jaunpur,LGD,9,State,194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.746298,82.574976,centroid,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,true +LGD,153,District,Jhansi,LGD,9,State,166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.508105,78.950857,centroid,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,true +LGD,155,District,Kannauj,LGD,9,State,160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.013601,79.688690,centroid,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,true +LGD,156,District,Kanpur Dehat,LGD,9,State,163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.439637,79.852934,centroid,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,true +LGD,157,District,Kanpur Nagar,LGD,9,State,164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.391080,80.208199,centroid,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,true +LGD,633,District,Kasganj,LGD,9,State,202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.773327,78.846070,centroid,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,true +LGD,158,District,Kaushambi,LGD,9,State,174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.498460,81.415008,centroid,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,true +LGD,159,District,Kheri,LGD,9,State,153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.120956,80.666926,centroid,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,true +LGD,160,District,Kushinagar,LGD,9,State,189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.862754,83.933846,centroid,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,true +LGD,161,District,Lalitpur,LGD,9,State,167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.653500,78.561958,centroid,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,true +LGD,162,District,Lucknow,LGD,9,State,157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.841979,80.905490,centroid,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,true +LGD,165,District,Mahoba,LGD,9,State,169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.362800,79.726003,centroid,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,true +LGD,164,District,Mahrajganj,LGD,9,State,187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.200551,83.530436,centroid,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,true +LGD,166,District,Mainpuri,LGD,9,State,148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.182445,79.052108,centroid,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,true +LGD,167,District,Mathura,LGD,9,State,145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.597491,77.625895,centroid,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,true +LGD,168,District,Mau,LGD,9,State,192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.047456,83.561786,centroid,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,true +LGD,169,District,Meerut,LGD,9,State,138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.036373,77.782697,centroid,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,true +LGD,170,District,Mirzapur,LGD,9,State,199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.986648,82.607360,centroid,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,true +LGD,171,District,Moradabad,LGD,9,State,135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.885592,78.802924,centroid,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,true +LGD,172,District,Muzaffarnagar,LGD,9,State,133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.415637,77.725288,centroid,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,true +LGD,173,District,Pilibhit,LGD,9,State,151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.530755,79.994583,centroid,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,true +LGD,174,District,Pratapgarh,LGD,9,State,173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.872737,81.829069,centroid,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,true +LGD,120,District,Prayagraj,LGD,9,State,175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.304012,81.960159,centroid,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,true +LGD,175,District,Rae Bareli,LGD,9,State,158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.203741,81.190943,centroid,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,true +LGD,176,District,Rampur,LGD,9,State,136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.809845,79.115097,centroid,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,true +LGD,177,District,Saharanpur,LGD,9,State,132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.951033,77.546779,centroid,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,true +LGD,659,District,Sambhal,LGD,9,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.451892,78.558077,centroid,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,true +LGD,178,District,Sant Kabir Nagar,LGD,9,State,186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.775547,83.027224,centroid,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,true +LGD,180,District,Shahjahanpur,LGD,9,State,152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.950761,79.822072,centroid,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,true +LGD,660,District,Shamli,LGD,9,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.500323,77.282363,centroid,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,true +LGD,181,District,Shrawasti,LGD,9,State,181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.718462,81.903444,centroid,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,true +LGD,182,District,Siddharthnagar,LGD,9,State,184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.270196,82.873251,centroid,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,true +LGD,183,District,Sitapur,LGD,9,State,154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.517096,80.852222,centroid,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,true +LGD,184,District,Sonbhadra,LGD,9,State,200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.407995,83.051909,centroid,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,true +LGD,185,District,Sultanpur,LGD,9,State,179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.261948,82.193868,centroid,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,true +LGD,186,District,Unnao,LGD,9,State,156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.609367,80.560562,centroid,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,true +LGD,187,District,Varanasi,LGD,9,State,197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.388275,82.913960,centroid,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,true +LGD,664,District,Alipurduar,LGD,19,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.632685,89.463034,centroid,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,true +LGD,305,District,Bankura,LGD,19,State,339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.139199,87.136273,centroid,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,true +LGD,307,District,Birbhum,LGD,19,State,334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.954375,87.663303,centroid,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,true +LGD,308,District,Cooch Behar,LGD,19,State,329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.292614,89.347816,centroid,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,true +LGD,310,District,Dakshin Dinajpur,LGD,19,State,331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.367223,88.575495,centroid,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,true +LGD,309,District,Darjeeling,LGD,19,State,327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.850567,88.262039,centroid,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,true +LGD,312,District,Hooghly,LGD,19,State,338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.884920,88.076193,centroid,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,true +LGD,313,District,Howrah,LGD,19,State,341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.521490,88.063397,centroid,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,true +LGD,314,District,Jalpaiguri,LGD,19,State,328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.682626,88.763845,centroid,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,true +LGD,703,District,Jhargram,LGD,19,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.363242,86.955347,centroid,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,true +LGD,702,District,Kalimpong,LGD,19,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.034545,88.630890,centroid,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,true +LGD,315,District,Kolkata,LGD,19,State,342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.526744,88.356008,centroid,88.233628,22.452029,88.461078,22.618825,SOI_Districts,2023-12-11,true +LGD,316,District,Malda,LGD,19,State,332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.136916,88.090580,centroid,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,true +LGD,319,District,Murshidabad,LGD,19,State,333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.162777,88.230649,centroid,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,true +LGD,320,District,Nadia,LGD,19,State,336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.479814,88.516695,centroid,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,true +LGD,303,District,North 24 Parganas,LGD,19,State,337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.727142,88.730133,centroid,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,true +LGD,704,District,Paschim Bardhaman,LGD,19,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.636453,87.199152,centroid,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,true +LGD,318,District,Paschim Medinipur,LGD,19,State,344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.439193,87.417304,centroid,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,true +LGD,306,District,Purba Bardhaman,LGD,19,State,335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.356167,87.963711,centroid,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,true +LGD,317,District,Purba Medinipur,LGD,19,State,345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.031560,87.772887,centroid,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,true +LGD,321,District,Purulia,LGD,19,State,340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.276707,86.421546,centroid,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,true +LGD,304,District,South 24 Parganas,LGD,19,State,343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.057938,88.552900,centroid,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,true +LGD,311,District,Uttar Dinajpur,LGD,19,State,330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.845938,88.106307,interior_grid,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,true +LGD,2925,Block,Aali,LGD,360,District,2925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,6087,Block,Aalo Hq,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false +LGD,7346,Block,Aamabeda,LGD,381,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,7146,Block,Aau,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,6612,Block,Abapura,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,3728,Block,Abdasa,LGD,449,District,3728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,6319,Block,Abdullapurmet,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,3331,Block,Abhanpur,LGD,387,District,3331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +LGD,238,Block,Abohar,LGD,651,District,238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +LGD,1750,Block,Aboi,LGD,247,District,1750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,7600,Block,Abrama,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,595,Block,Abu Road,LGD,115,District,595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +LGD,4004,Block,Achalpur,LGD,468,District,4004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,4579,Block,Achampet,LGD,694,District,4579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,4981,Block,Achanta,LGD,523,District,4981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,6518,Block,Adajan,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,393,Block,Adampur,LGD,63,District,393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +LGD,7192,Block,Adampur,LGD,34,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +LGD,1032,Block,Adapur,LGD,213,District,1032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,7571,Block,Adarsh Nagar,LGD,80,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false +LGD,6304,Block,Adavidevulapalli,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,7255,Block,Adbhar,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,6310,Block,Adda Guduru,LGD,697,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,4586,Block,Addakal,LGD,512,District,4586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,5112,Block,Addanki,LGD,517,District,5112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,4887,Block,Addateegala,LGD,791,District,4887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7024,Block,Adhartal,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,1456,Block,Adhaura,LGD,200,District,1456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,6345,Block,Adibadri,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,6221,Block,Adilabad Rural,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,4306,Block,Adilabad Urban,LGD,501,District,4306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,2752,Block,Adityapur(Gamharia),LGD,341,District,2752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,7334,Block,Adokgre,LGD,656,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false +LGD,5271,Block,Adoni,LGD,511,District,5271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,7563,Block,Adoni-2,LGD,511,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5683,Block,Adoor,LGD,564,District,5683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +LGD,5581,Block,Afzalpur,LGD,538,District,5581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,5354,Block,Agali,LGD,754,District,5354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7452,Block,Agalpur,LGD,345,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,2006,Block,Agamoni,LGD,285,District,2006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +LGD,3518,Block,Agar,LGD,667,District,3518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +LGD,5884,Block,Agastheeswaram,LGD,575,District,5884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +LGD,5626,Block,Agatti,LGD,553,District,5626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,1771,Block,Aghunato,LGD,251,District,1771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,1432,Block,Agiaon,LGD,193,District,1432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,5005,Block,Agiripalli,LGD,748,District,5005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,766,Block,Agra,LGD,118,District,766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +LGD,4062,Block,Aheri,LGD,475,District,4062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,7331,Block,Ahiwara,LGD,378,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +LGD,4228,Block,Ahmadpur,LGD,481,District,4228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,6856,Block,Ahmedgarh,LGD,737,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +LGD,586,Block,Ahore,LGD,104,District,586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,3921,Block,Ahwa,LGD,444,District,3921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false +LGD,1904,Block,Aibawk,LGD,261,District,1904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +LGD,4933,Block,Ainavilli,LGD,747,District,4933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1781,Block,Aitepyong,LGD,250,District,1781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,6810,Block,Ajas,LGD,623,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +LGD,3435,Block,Ajaygarh,LGD,420,District,3435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,7241,Block,Ajgarbahar,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,6877,Block,Ajitmal,LGD,122,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +LGD,7078,Block,Ajjampura,LGD,532,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,607,Block,Ajmer,LGD,86,District,607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,255,Block,Ajnala,LGD,27,District,255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +LGD,4292,Block,Ajra,LGD,480,District,4292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,3278,Block,Akaltara,LGD,379,District,3278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,845,Block,Akbarpur,LGD,156,District,845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +LGD,1519,Block,Akbarpur,LGD,210,District,1519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,910,Block,Akbarpur,LGD,121,District,910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +LGD,7524,Block,Akberpet-Bhoompally,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,78,Block,Akhnoor,LGD,5,District,78,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,4975,Block,Akividu,LGD,523,District,4975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,4254,Block,Akkalkot,LGD,496,District,4254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,3950,Block,Akkalkuwa,LGD,486,District,3950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +LGD,6285,Block,Akkannapet,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,680,Block,Aklera,LGD,105,District,680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,3991,Block,Akola,LGD,467,District,3991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +LGD,4201,Block,Akole,LGD,466,District,4201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,1472,Block,Akorhi Gola,LGD,215,District,1472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,3989,Block,Akot,LGD,467,District,3989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +LGD,3951,Block,Akrani,LGD,486,District,3951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +LGD,1774,Block,Akuhaito,LGD,251,District,1774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,1768,Block,Akuluto,LGD,251,District,1768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,4617,Block,Alair,LGD,697,District,4617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,1169,Block,Alamnagar,LGD,205,District,1169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,6900,Block,Alampur,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,4612,Block,Alampur,LGD,695,District,4612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,4925,Block,Alamuru,LGD,747,District,4925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5580,Block,Aland,LGD,538,District,5580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,5704,Block,Alandur,LGD,568,District,5704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,5824,Block,Alangudi,LGD,582,District,5824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,5875,Block,Alangulam,LGD,733,District,5875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +LGD,5951,Block,Alathur,LGD,581,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +LGD,5651,Block,Alathur,LGD,563,District,5651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +LGD,1322,Block,Alauli,LGD,202,District,1322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +LGD,2715,Block,Albert Ekka(Jari),LGD,331,District,2715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,6409,Block,Alewa,LGD,65,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +LGD,2106,Block,Algapur,LGD,289,District,2106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +LGD,4177,Block,Alibag,LGD,491,District,4177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,1007,Block,Aliganj,LGD,138,District,1007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +LGD,7371,Block,Aligarh,LGD,116,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,1187,Block,Alinagar,LGD,195,District,1187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,2173,Block,Alipurduar - I,LGD,664,District,2173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +LGD,2174,Block,Alipurduar - II,LGD,664,District,2174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +LGD,3713,Block,Alirajpur,LGD,639,District,3713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +LGD,4470,Block,Alladurg,LGD,513,District,4470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,5298,Block,Allagadda,LGD,755,District,5298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,890,Block,Allahabad,LGD,120,District,890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +LGD,6267,Block,Allapalli,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,908,Block,Allapur,LGD,121,District,908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +LGD,4940,Block,Allavaram,LGD,747,District,4940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5167,Block,Allur,LGD,515,District,5167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,7123,Block,Almel,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,330,Block,Almora,LGD,45,District,330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,7081,Block,Alnavar,LGD,536,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +LGD,1759,Block,Alongkima,LGD,246,District,1759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,7528,Block,Aloor,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,6809,Block,Aloosa,LGD,623,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +LGD,3502,Block,Alot,LGD,423,District,3502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,5274,Block,Alur,LGD,511,District,5274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5557,Block,Alur,LGD,539,District,5557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +LGD,5658,Block,Aluva,LGD,555,District,5658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +LGD,6328,Block,Alwal,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,499,Block,Alwar,LGD,87,District,499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,5361,Block,Amadagur,LGD,754,District,5361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4798,Block,Amadalavalasa,LGD,519,District,4798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,1836,Block,Amahator,LGD,614,District,1836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +LGD,4941,Block,Amalapuram,LGD,747,District,4941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3969,Block,Amalner,LGD,478,District,3969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,4563,Block,Amangal,LGD,518,District,4563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,3439,Block,Amanganj,LGD,420,District,3439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,5351,Block,Amarapuram,LGD,754,District,5351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5052,Block,Amaravathi,LGD,751,District,5052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6290,Block,Amarchintha,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,7122,Block,Amargarh,LGD,737,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +LGD,6867,Block,Amariya,LGD,173,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +LGD,3468,Block,Amarpatan,LGD,784,District,3468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,6695,Block,Amarpur,LGD,654,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +LGD,1346,Block,Amarpur,LGD,190,District,1346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,5086,Block,Amarthalur,LGD,750,District,5086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3648,Block,Amarwara,LGD,399,District,3648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,1499,Block,Amas,LGD,196,District,1499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,148,Block,Amb,LGD,26,District,148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,2768,Block,Ambabhona,LGD,347,District,2768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,4129,Block,Ambad,LGD,479,District,4129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +LGD,3310,Block,Ambagarh Chouki,LGD,761,District,3310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,3385,Block,Ambah,LGD,417,District,3385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +LGD,4935,Block,Ambajipeta,LGD,747,District,4935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,359,Block,Ambala,LGD,58,District,359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +LGD,6406,Block,Ambala Cantonment,LGD,58,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +LGD,5674,Block,Ambalappuzha,LGD,554,District,5674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +LGD,4170,Block,Ambarnath,LGD,497,District,4170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +LGD,5878,Block,Ambasamudram,LGD,592,District,5878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +LGD,6697,Block,Ambassa,LGD,269,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +LGD,5700,Block,Ambattur,LGD,568,District,5700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,4188,Block,Ambegaon,LGD,490,District,4188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,4225,Block,Ambejogai,LGD,470,District,4225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,547,Block,Amber,LGD,102,District,547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,4502,Block,Amberpet,LGD,507,District,4502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,7552,Block,Ambika,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,3247,Block,Ambikapur,LGD,389,District,3247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +LGD,5719,Block,Ambur,LGD,732,District,5719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +LGD,1157,Block,Amdabad,LGD,201,District,1157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,2322,Block,Amdanga,LGD,303,District,2322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,6276,Block,Ameenpur,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,4497,Block,Ameerpet,LGD,507,District,4497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,641,Block,Amet,LGD,112,District,641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,914,Block,Amethi,LGD,640,District,914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +LGD,4047,Block,Amgaon,LGD,476,District,4047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +LGD,2072,Block,Amguri,LGD,300,District,2072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +LGD,5620,Block,Amini,LGD,553,District,5620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,7161,Block,Aminjikarai,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,3736,Block,Amirgadh,LGD,441,District,3736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,3605,Block,Amla,LGD,394,District,3605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,1998,Block,Amlarem,LGD,275,District,1998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false +LGD,7307,Block,Amlipadar,LGD,645,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +LGD,222,Block,Amloh,LGD,30,District,222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +LGD,1261,Block,Amnour,LGD,218,District,1261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,3914,Block,Amod,LGD,442,District,3914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,1138,Block,Amour,LGD,214,District,1138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,4578,Block,Amrabad,LGD,694,District,4578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,2574,Block,Amrapara,LGD,337,District,2574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +LGD,4009,Block,Amravati,LGD,468,District,4009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,3843,Block,Amreli,LGD,439,District,3843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,7432,Block,Amreli-City,LGD,439,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,831,Block,Amritpur,LGD,141,District,831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +LGD,256,Block,Amritsar -I,LGD,27,District,256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +LGD,257,Block,Amritsar- II,LGD,27,District,257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +LGD,730,Block,Amroha,LGD,154,District,730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +LGD,2400,Block,Amta - I,LGD,313,District,2400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,2399,Block,Amta - II,LGD,313,District,2399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,5964,Block,Anaicut,LGD,595,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +LGD,6643,Block,Anaimalai,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,4871,Block,Anakapalli,LGD,744,District,4871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2854,Block,Anandapur,LGD,361,District,2854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,4863,Block,Anandapuram,LGD,520,District,4863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,6530,Block,Anand City,LGD,440,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,2734,Block,Anandpur,LGD,343,District,2734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,6061,Block,Anandpuri,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,262,Block,Anandpur Sahib,LGD,42,District,262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +LGD,3864,Block,Anand Rural,LGD,440,District,3864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,5330,Block,Anantapur Rural,LGD,502,District,5330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,7426,Block,Anantapur Urban,LGD,502,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,6302,Block,Ananthagiri,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,4845,Block,Ananthagiri,LGD,745,District,4845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5173,Block,Ananthasagaram,LGD,515,District,5173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,55,Block,Anantnag,LGD,1,District,55,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,6822,Block,Anantnag East (Mattan),LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,4917,Block,Anaparthi,LGD,505,District,4917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,6662,Block,Anchetty,LGD,577,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +LGD,2272,Block,Andal,LGD,704,District,2272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +LGD,1243,Block,Andar,LGD,222,District,1243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,7179,Block,Andheri,LGD,483,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +LGD,7140,Block,Andhi,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,1096,Block,Andhratharhi,LGD,206,District,1096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,5983,Block,Andimadam,LGD,610,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +LGD,5846,Block,Andipatti,LGD,588,District,5846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +LGD,4479,Block,Andole,LGD,691,District,4479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,5627,Block,Andrott,LGD,553,District,5627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,5545,Block,Anekal,LGD,525,District,5545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +LGD,1720,Block,Anelih,LGD,230,District,1720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false +LGD,2686,Block,Angara,LGD,339,District,2686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,1754,Block,Angjangyang,LGD,247,District,1754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,121,Block,Ani,LGD,20,District,121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,1718,Block,Anini,LGD,230,District,1718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false +LGD,3557,Block,Anjad,LGD,393,District,3557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,4003,Block,Anjangaon Surji,LGD,468,District,4003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,3725,Block,Anjar,LGD,449,District,3725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,3868,Block,Anklav,LGD,440,District,3868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,3918,Block,Anklesvar,LGD,442,District,3918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,5484,Block,Ankola,LGD,550,District,5484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,6268,Block,Annapureddypalli,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,7080,Block,Annigeri,LGD,536,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +LGD,5955,Block,Annur,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,671,Block,Anta,LGD,89,District,671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +LGD,3353,Block,Antagarh,LGD,381,District,3353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,7362,Block,Antali,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,6214,Block,Anthergaon,LGD,682,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,5969,Block,Anthiyur,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,3011,Block,Anugola,LGD,344,District,3011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +LGD,5165,Block,Anumasamudrampeta,LGD,515,District,5165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,4660,Block,Anumula,LGD,514,District,4660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,462,Block,Anupgarh,LGD,100,District,462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,3694,Block,Anuppur,LGD,390,District,3694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +LGD,748,Block,Anupshahr,LGD,134,District,748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +LGD,786,Block,Aonla,LGD,130,District,786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +LGD,1793,Block,Aquqhnaqua,LGD,764,District,1793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,6659,Block,Arain,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,7403,Block,Arakera,LGD,546,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +LGD,5715,Block,Arakonam,LGD,731,District,5715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +LGD,4844,Block,Araku Valley,LGD,745,District,4844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2340,Block,Arambag,LGD,312,District,2340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,3330,Block,Arang,LGD,387,District,3330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +LGD,5721,Block,Arani,LGD,593,District,5721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,5826,Block,Aranthangi,LGD,582,District,5826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,1116,Block,Araria,LGD,188,District,1116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,5768,Block,Aravakurichi,LGD,576,District,5768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +LGD,5716,Block,Arcot,LGD,731,District,5716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +LGD,4099,Block,Ardhapur,LGD,485,District,4099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,5116,Block,Ardhaveedu,LGD,790,District,5116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1045,Block,Areraj,LGD,213,District,1045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,7553,Block,Areth,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,1377,Block,Ariari,LGD,219,District,1377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false +LGD,6795,Block,Aripal,LGD,11,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +LGD,5787,Block,Ariyalur,LGD,610,District,5787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +LGD,7253,Block,Arjunda,LGD,646,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +LGD,4050,Block,Arjuni Morgaon,LGD,476,District,4050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +LGD,5558,Block,Arkalgud,LGD,539,District,5558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +LGD,158,Block,Arki,LGD,25,District,158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,4360,Block,Armoor,LGD,516,District,4360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,4053,Block,Armori,LGD,475,District,4053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,6740,Block,Arnas,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,4088,Block,Arni,LGD,500,District,4088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,6717,Block,Arnia,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,700,Block,Arnod,LGD,629,District,700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +LGD,3682,Block,Aron,LGD,406,District,3682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +LGD,1422,Block,Arrah,LGD,193,District,1422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,2389,Block,Arsha,LGD,321,District,2389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,5555,Block,Arsikere,LGD,539,District,5555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +LGD,6922,Block,Arthuna,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,5853,Block,Aruppukkottai,LGD,597,District,5853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,4017,Block,Arvi,LGD,498,District,4017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +LGD,1542,Block,Arwal,LGD,611,District,1542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +LGD,1361,Block,Asarganj,LGD,207,District,1361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,6512,Block,Asarva,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,3686,Block,Ashoknagar,LGD,391,District,3686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +LGD,3584,Block,Ashta,LGD,427,District,3584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,4215,Block,Ashti,LGD,470,District,4215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,4015,Block,Ashti,LGD,498,District,4015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +LGD,4319,Block,Asifabad,LGD,699,District,4319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,4506,Block,Asif Nagar,LGD,507,District,4506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,3078,Block,Asika,LGD,354,District,3078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,627,Block,Asind,LGD,92,District,627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,6055,Block,Asnawar,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,5275,Block,Aspari,LGD,511,District,5275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,647,Block,Aspur,LGD,99,District,647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,373,Block,Assandh,LGD,67,District,373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +LGD,6752,Block,Assar,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,3060,Block,Astaranga,LGD,369,District,3060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,1385,Block,Asthawan,LGD,209,District,1385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,1770,Block,Asuto,LGD,251,District,1770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,4728,Block,Aswapuram,LGD,690,District,4728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,4749,Block,Aswaraopeta,LGD,690,District,4749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,873,Block,Atarra,LGD,128,District,873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +LGD,5050,Block,Atchampet,LGD,751,District,5050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4878,Block,Atchuthapuram,LGD,744,District,4878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6457,Block,Ateli,LGD,69,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +LGD,3391,Block,Ater,LGD,395,District,3391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,2950,Block,Athagada,LGD,350,District,2950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,7116,Block,Athani,LGD,285,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +LGD,1853,Block,Athibung,LGD,613,District,1853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +LGD,4694,Block,Athmakur,LGD,686,District,4694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,1415,Block,Athmalgola,LGD,212,District,1415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,3017,Block,Athmallik,LGD,344,District,3017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +LGD,3599,Block,Athner,LGD,394,District,3599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,5434,Block,Athni,LGD,527,District,5434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,71,Block,Atholi (Paddar),LGD,620,District,71,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,5994,Block,Athoor,LGD,572,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,4998,Block,Atlapragada Konduru,LGD,749,District,4998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5227,Block,Atlur,LGD,504,District,5227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,5164,Block,Atmakur,LGD,515,District,5164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5322,Block,Atmakur,LGD,502,District,5322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,4592,Block,Atmakur,LGD,693,District,4592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,5265,Block,Atmakur,LGD,755,District,5265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4626,Block,Atmakur (M),LGD,697,District,4626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,4622,Block,Atmakur (S),LGD,696,District,4622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,1773,Block,Atoizu,LGD,251,District,1773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,4300,Block,Atpadi,LGD,493,District,4300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,754,Block,Atrauli,LGD,119,District,754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +LGD,4919,Block,Atreyapuram,LGD,747,District,4919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1493,Block,Atri,LGD,196,District,1493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,673,Block,Atru,LGD,89,District,673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +LGD,2769,Block,Attabira,LGD,347,District,2769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,4973,Block,Attili,LGD,523,District,4973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,5743,Block,Attur,LGD,584,District,5743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,4113,Block,Aundha (Nagnath),LGD,477,District,4113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +LGD,7278,Block,Aundhi,LGD,761,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,5456,Block,Aurad,LGD,529,District,5456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +LGD,1207,Block,Aurai,LGD,208,District,1207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,999,Block,Aurai,LGD,179,District,999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +LGD,842,Block,Auraiya,LGD,122,District,842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +LGD,1481,Block,Aurangabad,LGD,189,District,1481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,4232,Block,Ausa,LGD,481,District,4232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,2277,Block,Ausgram - I,LGD,306,District,2277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2276,Block,Ausgram - II,LGD,306,District,2276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,134,Block,Aut,LGD,22,District,134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,6621,Block,Avadi,LGD,589,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,5037,Block,Avanigadda,LGD,510,District,5037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,6510,Block,Avantipur Barodia,LGD,430,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +LGD,5903,Block,Avinashi,LGD,634,District,5903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,5828,Block,Avudayarkoil,LGD,582,District,5828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,49,Block,Awantipora,LGD,11,District,49,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +LGD,7163,Block,Ayanavaram,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,966,Block,Azamgarh,LGD,123,District,966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +LGD,1148,Block,Azamnagar,LGD,201,District,1148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,2127,Block,Azara,LGD,618,District,2127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +LGD,258,Block,Baba Bakala,LGD,27,District,258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +LGD,6454,Block,Babain St,LGD,68,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +LGD,7069,Block,Babaleshwar,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,872,Block,Baberu,LGD,128,District,872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +LGD,3840,Block,Babra,LGD,439,District,3840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,1088,Block,Babubarhi,LGD,206,District,1088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,4080,Block,Babulgaon,LGD,500,District,4080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,4674,Block,Bachannapet,LGD,689,District,4674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,1310,Block,Bachhwara,LGD,191,District,1310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,6315,Block,Bachupally,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,6998,Block,Badagaon (Dhasan),LGD,434,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,3431,Block,Bada Malhera,LGD,398,District,3431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,2946,Block,Badamba,LGD,350,District,2946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,5446,Block,Badami,LGD,524,District,5446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,4820,Block,Badangi,LGD,521,District,4820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,7573,Block,Badarpur,LGD,670,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false +LGD,2102,Block,Badarpur,LGD,293,District,2102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +LGD,3412,Block,Badarwas,LGD,432,District,3412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,2882,Block,Badasahi,LGD,365,District,2882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,162,Block,Baddi,LGD,25,District,162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,6509,Block,Bade Bacheli,LGD,376,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +LGD,3356,Block,Baderajpur,LGD,643,District,3356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +LGD,6903,Block,Badgaon,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,403,Block,Badhra,LGD,701,District,403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +LGD,3595,Block,Badi,LGD,421,District,3595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,6407,Block,Badkhal,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +LGD,982,Block,Badlapur,LGD,152,District,982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +LGD,6444,Block,Badli,LGD,64,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +LGD,7570,Block,Badli,LGD,80,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false +LGD,3514,Block,Badnagar,LGD,435,District,3514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,4128,Block,Badnapur,LGD,479,District,4128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +LGD,3532,Block,Badnawar,LGD,403,District,3532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,6066,Block,Badnor,LGD,774,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3517,Block,Badod,LGD,667,District,3517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +LGD,3383,Block,Badoda,LGD,431,District,3383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +LGD,6421,Block,Badshahpur St,LGD,62,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,2328,Block,Baduria,LGD,303,District,2328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,5210,Block,Badvel,LGD,504,District,5210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,3623,Block,Badwara,LGD,413,District,3623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,186,Block,Bagachnogi,LGD,22,District,186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,1019,Block,Bagaha,LGD,211,District,1019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,5447,Block,Bagalkot,LGD,524,District,5447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,2139,Block,Baganpara,LGD,616,District,2139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +LGD,3844,Block,Bagasara,LGD,439,District,3844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,7347,Block,Bagbahar,LGD,380,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,3343,Block,Bagbahra,LGD,385,District,3343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +LGD,2316,Block,Bagda,LGD,303,District,2316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,5598,Block,Bagepalli,LGD,630,District,5598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +LGD,323,Block,Bageshwar,LGD,46,District,323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +LGD,232,Block,Bagha Purana,LGD,38,District,232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +LGD,2020,Block,Baghbor,LGD,280,District,2020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +LGD,1977,Block,Baghmara,LGD,277,District,1977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +LGD,2582,Block,Baghmara-Cum-Katras,LGD,325,District,2582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,736,Block,Baghpat,LGD,124,District,736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +LGD,1783,Block,Baghty,LGD,250,District,1783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,3255,Block,Bagicha,LGD,380,District,3255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,653,Block,Bagidora,LGD,88,District,653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,4145,Block,Baglan,LGD,487,District,4145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,3529,Block,Bagli,LGD,402,District,3529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,2392,Block,Bagmundi,LGD,321,District,2392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,2408,Block,Bagnan - I,LGD,313,District,2408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,2409,Block,Bagnan - II,LGD,313,District,2409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,2541,Block,Bagodar,LGD,329,District,2541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,589,Block,Bagora,LGD,104,District,589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,6588,Block,Bagra Circle,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false +LGD,2005,Block,Bagribari,LGD,294,District,2005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +LGD,7174,Block,Bagshad,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,6341,Block,Bagwalipokhar,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,770,Block,Bah,LGD,118,District,770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +LGD,1125,Block,Bahadurganj,LGD,203,District,1125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +LGD,408,Block,Bahadurgarh,LGD,64,District,408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +LGD,6978,Block,Bahadurpur,LGD,391,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +LGD,1189,Block,Bahadurpur,LGD,195,District,1189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,4508,Block,Bahadurpura,LGD,507,District,4508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,2859,Block,Bahalda,LGD,365,District,2859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,6432,Block,Bahal St,LGD,59,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +LGD,7500,Block,Bahanaga,LGD,346,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,2614,Block,Baharagora,LGD,327,District,2614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,6072,Block,Bahari,LGD,433,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +LGD,1192,Block,Baheri,LGD,195,District,1192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,784,Block,Baheri,LGD,130,District,784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +LGD,6479,Block,Bahin St,LGD,619,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +LGD,3625,Block,Bahoriband,LGD,413,District,3625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,5912,Block,Bahour,LGD,600,District,5912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +LGD,921,Block,Bahraich,LGD,125,District,921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +LGD,7134,Block,Bahrawanda,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,6707,Block,Bahu,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,3674,Block,Baihar,LGD,392,District,3674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,112,Block,Baijnath,LGD,18,District,112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,7135,Block,Baijupara,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,3232,Block,Baikunthpur,LGD,384,District,3232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +LGD,1228,Block,Baikunthpur,LGD,197,District,1228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,5440,Block,Bailahongala,LGD,527,District,5440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,7066,Block,Bainduru,LGD,549,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +LGD,6534,Block,Bairad,LGD,432,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,5423,Block,Baireddipalle,LGD,503,District,5423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,1063,Block,Bairgania,LGD,221,District,1063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,1029,Block,Bairia,LGD,211,District,1029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,980,Block,Bairia,LGD,126,District,980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +LGD,1139,Block,Baisa,LGD,214,District,1139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,1140,Block,Baisi,LGD,214,District,1140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,6071,Block,Bajag,LGD,404,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +LGD,2024,Block,Bajali (Pt),LGD,739,District,2024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +LGD,6544,Block,Bajengdoba,LGD,656,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false +LGD,6913,Block,Bajju,LGD,93,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,3505,Block,Bajna,LGD,423,District,3505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,1075,Block,Bajpatti,LGD,221,District,1075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,348,Block,Bajpur,LGD,56,District,348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,6666,Block,Bakani,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,3364,Block,Bakavand,LGD,374,District,3364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,1316,Block,Bakhri,LGD,191,District,1316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,1414,Block,Bakhtiarpur,LGD,212,District,1414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,820,Block,Bakshi Ka Talab,LGD,162,District,820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +LGD,219,Block,Balachaur,LGD,40,District,219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +LGD,2345,Block,Balagarh,LGD,312,District,2345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,3672,Block,Balaghat,LGD,392,District,3672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,6778,Block,Balakote,LGD,10,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +LGD,4517,Block,Balanagar,LGD,700,District,4517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,4557,Block,Balanagar,LGD,512,District,4557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,3142,Block,Balangir,LGD,345,District,3142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,6323,Block,Balapur,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,3990,Block,Balapur,LGD,467,District,3990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +LGD,2393,Block,Balarampur,LGD,321,District,2393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,3871,Block,Balasinor,LGD,669,District,3871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +LGD,5188,Block,Balayapalli,LGD,752,District,5188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3421,Block,Baldeogarh,LGD,434,District,3421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,6868,Block,Baldirai,LGD,185,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +LGD,131,Block,Baldwara,LGD,22,District,131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,6564,Block,Balemu Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,6049,Block,Balesar,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,7510,Block,Baleshwar,LGD,346,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,6374,Block,Balganga,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,7360,Block,Balghat,LGD,108,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,6947,Block,Balh,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,605,Block,Bali,LGD,111,District,605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +LGD,1319,Block,Balia,LGD,191,District,1319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,3042,Block,Balianta,LGD,362,District,3042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,2893,Block,Baliapal,LGD,346,District,2893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,2586,Block,Baliapur,LGD,325,District,2586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,135,Block,Bali Chowki,LGD,22,District,135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,3119,Block,Baliguda,LGD,359,District,3119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,2014,Block,Balijana,LGD,287,District,2014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +LGD,1592,Block,Balijan Adc,LGD,237,District,1592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,4815,Block,Balijipeta,LGD,743,District,4815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2943,Block,Balikuda,LGD,355,District,2943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +LGD,3043,Block,Balipatna,LGD,362,District,3043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,7468,Block,Balisankara,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,4361,Block,Balkonda,LGD,516,District,4361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,426,Block,Ballabgarh,LGD,60,District,426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +LGD,6452,Block,Ballah St,LGD,67,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +LGD,5500,Block,Ballari,LGD,528,District,5500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +LGD,4074,Block,Ballarpur,LGD,473,District,4074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,978,Block,Ballia,LGD,126,District,978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +LGD,5105,Block,Ballikurava,LGD,517,District,5105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,2403,Block,Bally Jagachha,LGD,313,District,2403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,4597,Block,Balmoor,LGD,694,District,4597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,3321,Block,Balod,LGD,646,District,3321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +LGD,3279,Block,Baloda,LGD,379,District,3279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,3326,Block,Balodabazar,LGD,644,District,3326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,3237,Block,Balrampur,LGD,649,District,3237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,925,Block,Balrampur,LGD,127,District,925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +LGD,1146,Block,Balrampur,LGD,201,District,1146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,6442,Block,Balsamand St,LGD,63,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +LGD,2640,Block,Balumath,LGD,335,District,2640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,2204,Block,Balurghat,LGD,310,District,2204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +LGD,2215,Block,Bamangola,LGD,316,District,2215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,527,Block,Bamanwas,LGD,113,District,527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,7461,Block,Bamara,LGD,371,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,1586,Block,Bameng Adc,LGD,231,District,1586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,7265,Block,Bamhnidih,LGD,379,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,7564,Block,Bamhori,LGD,421,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,7112,Block,Bamor,LGD,417,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +LGD,3678,Block,Bamori,LGD,406,District,3678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +LGD,6102,Block,Bana Eac,LGD,787,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,5288,Block,Banaganapalli,LGD,755,District,5288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3054,Block,Banapur,LGD,362,District,3054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,7118,Block,Banarhat,LGD,314,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,3010,Block,Banarpal,LGD,344,District,3010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +LGD,3446,Block,Banda,LGD,425,District,3446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,871,Block,Banda,LGD,128,District,871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +LGD,7420,Block,Bandari,LGD,425,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,7353,Block,Bande,LGD,381,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,6603,Block,Banderdewa Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,2730,Block,Bandgaon,LGD,343,District,2730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,3482,Block,Bandhavgarh,LGD,436,District,3482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +LGD,3205,Block,Bandhugaon,LGD,363,District,3205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,5283,Block,Bandi Atmakur,LGD,755,District,5283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7210,Block,Bandikui,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,41,Block,Bandipora,LGD,623,District,41,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +LGD,4509,Block,Bandlaguda,LGD,507,District,4509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,1210,Block,Bandra,LGD,208,District,1210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,2830,Block,Banei,LGD,373,District,2830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,2137,Block,Banekuchi,LGD,298,District,2137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +LGD,630,Block,Banera,LGD,92,District,630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,5993,Block,Banga,LGD,40,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +LGD,149,Block,Bangana,LGD,26,District,149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,6356,Block,Bangapani,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,5593,Block,Bangarapet,LGD,542,District,5593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +LGD,6160,Block,Bangarmau,LGD,186,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +LGD,5429,Block,Bangarupalem,LGD,503,District,5429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,2875,Block,Bangiriposi,LGD,365,District,2875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,3150,Block,Bangomunda,LGD,345,District,3150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,29,Block,Bani,LGD,7,District,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,1252,Block,Baniapur,LGD,218,District,1252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,66,Block,Banihal,LGD,621,District,66,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +LGD,120,Block,Banjar,LGD,20,District,120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,1035,Block,Banjaria,LGD,213,District,1035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1350,Block,Banka,LGD,190,District,1350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,1037,Block,Bankatwa,LGD,213,District,1037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1500,Block,Banke Bazar,LGD,196,District,1500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,3619,Block,Bankhedi,LGD,409,District,3619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,2948,Block,Banki,LGD,350,District,2948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,2361,Block,Bankura - I,LGD,305,District,2361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,2362,Block,Bankura - II,LGD,305,District,2362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,1180,Block,Banma Itahri,LGD,216,District,1180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,1128,Block,Banmankhi,LGD,214,District,1128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,2727,Block,Bano,LGD,342,District,2727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,3926,Block,Bansda,LGD,453,District,3926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +LGD,979,Block,Bansdih,LGD,126,District,979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +LGD,952,Block,Bansgaon,LGD,148,District,952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +LGD,934,Block,Bansi,LGD,182,District,934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +LGD,2206,Block,Bansihari,LGD,310,District,2206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +LGD,2726,Block,Bansjor,LGD,342,District,2726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,7493,Block,Banspal,LGD,361,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,500,Block,Bansur,LGD,782,District,500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,4383,Block,Banswada,LGD,685,District,4383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,652,Block,Banswara,LGD,88,District,652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,2911,Block,Banta,LGD,348,District,2911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +LGD,5019,Block,Bantumilli,LGD,510,District,5019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,5562,Block,Bantval,LGD,534,District,5562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,4532,Block,Bantwaram,LGD,698,District,4532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,6047,Block,Baori,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,6048,Block,Bap,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5093,Block,Bapatla,LGD,750,District,5093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6916,Block,Bapini,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,6462,Block,Bapoli,LGD,71,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +LGD,5004,Block,Bapulapadu,LGD,510,District,5004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,891,Block,Bara,LGD,120,District,891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +LGD,2269,Block,Barabani,LGD,704,District,2269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +LGD,2394,Block,Barabazar,LGD,321,District,2394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,1510,Block,Barachatti,LGD,196,District,1510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,2765,Block,Baragada,LGD,347,District,2765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,2812,Block,Baragaon,LGD,373,District,2812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,1349,Block,Barahat,LGD,190,District,1349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,1365,Block,Barahiya,LGD,204,District,1365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +LGD,3594,Block,Baraily,LGD,421,District,3594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,6377,Block,Barakot,LGD,48,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +LGD,5935,Block,Barama,LGD,616,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +LGD,4199,Block,Baramati,LGD,490,District,4199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,3271,Block,Baramkela,LGD,763,District,3271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,35,Block,Baramulla,LGD,3,District,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,672,Block,Baran,LGD,89,District,672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +LGD,2951,Block,Barang,LGD,350,District,2951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,7361,Block,Barapal,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,360,Block,Barara,LGD,58,District,360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +LGD,1153,Block,Barari,LGD,201,District,1153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,2325,Block,Barasat - I,LGD,303,District,2325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,2326,Block,Barasat - II,LGD,303,District,2326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,1226,Block,Barauli,LGD,197,District,1226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,1312,Block,Barauni,LGD,191,District,1312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,735,Block,Baraut,LGD,124,District,735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +LGD,2135,Block,Barbhag,LGD,298,District,2135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +LGD,1372,Block,Barbigha,LGD,219,District,1372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false +LGD,2834,Block,Barbil,LGD,361,District,2834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,6798,Block,Barbugh Imam Sahib,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false +LGD,5610,Block,Bardez,LGD,551,District,5610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +LGD,2500,Block,Bardiha,LGD,328,District,2500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,3940,Block,Bardoli,LGD,459,District,3940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,787,Block,Bareilly,LGD,130,District,787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +LGD,6329,Block,Bargarh,LGD,328,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,7423,Block,Bargawan,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +LGD,3665,Block,Barghat,LGD,428,District,3665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,6613,Block,Bargur,LGD,577,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +LGD,1417,Block,Barh,LGD,212,District,1417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,2567,Block,Barhait,LGD,340,District,2567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,961,Block,Barhaj,LGD,137,District,961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +LGD,1437,Block,Barhampur,LGD,194,District,1437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,1423,Block,Barhara,LGD,193,District,1423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,1129,Block,Barhara,LGD,214,District,1129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,1231,Block,Barharia,LGD,222,District,1231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,2572,Block,Barharwa,LGD,340,District,2572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,1528,Block,Barhat,LGD,198,District,1528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,3622,Block,Barhi,LGD,413,District,3622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,2645,Block,Barhi,LGD,332,District,2645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,516,Block,Bari,LGD,98,District,516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +LGD,2985,Block,Bari,LGD,356,District,2985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,1357,Block,Bariarpur,LGD,207,District,1357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,6596,Block,Bari Basip Circle,LGD,239,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +LGD,6720,Block,Bari Brahamana,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +LGD,2872,Block,Baripada,LGD,365,District,2872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,1620,Block,Baririjo Circle,LGD,241,District,1620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,664,Block,Bari Sadri,LGD,95,District,664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,2641,Block,Bariyatu,LGD,335,District,2641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,2363,Block,Barjora,LGD,305,District,2363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,2657,Block,Barkagaon,LGD,332,District,2657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,2650,Block,Barkatha,LGD,332,District,2650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,2134,Block,Barkhetri,LGD,298,District,2134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +LGD,2801,Block,Barkot,LGD,351,District,2801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false +LGD,582,Block,Barmer,LGD,90,District,582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,7131,Block,Barmer Gramin,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,2018,Block,Barnagar (Pt),LGD,280,District,2018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +LGD,275,Block,Barnala,LGD,605,District,275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +LGD,7224,Block,Barnala,LGD,113,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,6405,Block,Barnigad,LGD,57,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,102,Block,Baroh,LGD,18,District,102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,7001,Block,Baroni,LGD,401,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +LGD,2763,Block,Barpali,LGD,347,District,2763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,7233,Block,Barpali,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,2022,Block,Barpeta,LGD,280,District,2022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +LGD,2323,Block,Barrackpur - I,LGD,303,District,2323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,2324,Block,Barrackpur - II,LGD,303,District,2324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,144,Block,Barsar,LGD,17,District,144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,4246,Block,Barshi,LGD,496,District,4246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,3994,Block,Barshitakli,LGD,467,District,3994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +LGD,1147,Block,Barsoi,LGD,201,District,1147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,7232,Block,Barsur,LGD,376,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +LGD,2422,Block,Baruipur,LGD,304,District,2422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,1482,Block,Barun,LGD,189,District,1482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,1200,Block,Baruraj (Motipur),LGD,208,District,1200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,2636,Block,Barwadih,LGD,335,District,2636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,3545,Block,Barwaha,LGD,414,District,3545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,6440,Block,Barwala,LGD,63,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +LGD,3786,Block,Barwala,LGD,676,District,3786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +LGD,6460,Block,Barwala St,LGD,70,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +LGD,3554,Block,Barwani,LGD,393,District,3554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,7372,Block,Basai Nawab,LGD,98,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +LGD,6736,Block,Basantgarh,LGD,14,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +LGD,2434,Block,Basanti,LGD,304,District,2434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,1234,Block,Basantpur,LGD,222,District,1234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,1102,Block,Basantpur,LGD,223,District,1102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,6205,Block,Basar,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,1636,Block,Basar Adc,LGD,724,District,1636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false +LGD,5454,Block,Basavakalyan,LGD,529,District,5454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +LGD,5452,Block,Basavana Bagevadi,LGD,530,District,5452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,515,Block,Baseri,LGD,98,District,515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +LGD,2560,Block,Bashant Rai*,LGD,330,District,2560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,4535,Block,Basheerabad,LGD,698,District,4535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,2711,Block,Basia,LGD,331,District,2711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,2329,Block,Basirhat - I,LGD,303,District,2329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,2330,Block,Basirhat - II,LGD,303,District,2330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,2143,Block,Baska,LGD,616,District,2143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +LGD,3339,Block,Basna,LGD,385,District,3339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +LGD,3573,Block,Basoda,LGD,437,District,3573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,28,Block,Basohli,LGD,7,District,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,1082,Block,Basopatti,LGD,206,District,1082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,6408,Block,Bass,LGD,792,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +LGD,549,Block,Bassi,LGD,102,District,549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,7133,Block,Bassi,LGD,95,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,220,Block,Bassi Pathana,LGD,30,District,220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +LGD,2895,Block,Basta,LGD,346,District,2895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,3362,Block,Bastanar,LGD,374,District,3362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,3363,Block,Bastar,LGD,374,District,3363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,939,Block,Basti,LGD,131,District,939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +LGD,2915,Block,Basudevpur,LGD,348,District,2915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +LGD,6334,Block,Basukedar,LGD,54,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +LGD,533,Block,Baswa,LGD,97,District,533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,7339,Block,Batabari,LGD,278,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +LGD,7363,Block,Batadoo,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,203,Block,Batala,LGD,32,District,203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +LGD,5337,Block,Bathalapalli,LGD,754,District,5337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,245,Block,Bathinda,LGD,28,District,245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +LGD,1069,Block,Bathnaha,LGD,221,District,1069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,3456,Block,Batiyagarh,LGD,400,District,3456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +LGD,6761,Block,Batote,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +LGD,3253,Block,Batouli,LGD,389,District,3253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +LGD,1355,Block,Bausi,LGD,190,District,1355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,3784,Block,Bavla,LGD,438,District,3784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,415,Block,Bawal,LGD,72,District,415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +LGD,7582,Block,Bawana,LGD,794,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,397,Block,Bawani Khera,LGD,59,District,397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +LGD,3772,Block,Bayad,LGD,672,District,3772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +LGD,513,Block,Bayana,LGD,91,District,513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +LGD,578,Block,Baytoo,LGD,90,District,578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,4742,Block,Bayyaram,LGD,688,District,4742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,4323,Block,Bazarhatnoor,LGD,501,District,4323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,609,Block,Beawar,LGD,774,District,609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3758,Block,Becharaji,LGD,451,District,3758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,4221,Block,Beed,LGD,470,District,4221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,5391,Block,Beerongi Kothakota,LGD,753,District,5391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6212,Block,Beerpur,LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,3381,Block,Beerpur,LGD,431,District,3381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +LGD,5,Block,Beerwah,LGD,2,District,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,3592,Block,Begamganj,LGD,421,District,3592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,657,Block,Begun,LGD,95,District,657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,3035,Block,Begunia,LGD,362,District,3035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,1314,Block,Begusarai,LGD,191,District,1314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,701,Block,Behat,LGD,177,District,701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +LGD,1427,Block,Behea,LGD,193,District,1427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,493,Block,Behror,LGD,782,District,493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,4437,Block,Bejjanki,LGD,692,District,4437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,4317,Block,Bejjur,LGD,699,District,4317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,4308,Block,Bela,LGD,501,District,4308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,1489,Block,Belaganj,LGD,196,District,1489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,5438,Block,Belagavi,LGD,527,District,5438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,7316,Block,Belargaon,LGD,377,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +LGD,1416,Block,Belchhi,LGD,212,District,1416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,2244,Block,Beldanga - I,LGD,319,District,2244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2245,Block,Beldanga - II,LGD,319,District,2245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,1326,Block,Beldaur,LGD,202,District,1326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +LGD,7243,Block,Belgahna,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,1352,Block,Belhar,LGD,190,District,1352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,7489,Block,Bellaguntha,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,5049,Block,Bellamkonda,LGD,751,District,5049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4350,Block,Bellampally,LGD,684,District,4350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,6687,Block,Belonia,LGD,271,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +LGD,3147,Block,Belpara,LGD,345,District,3147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,1072,Block,Belsand,LGD,221,District,1072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,5563,Block,Beltangadi,LGD,534,District,5563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,7281,Block,Beltara,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,975,Block,Belthara Road,LGD,126,District,975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +LGD,5318,Block,Beluguppa,LGD,502,District,5318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5554,Block,Belur,LGD,539,District,5554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +LGD,3312,Block,Bemetara,LGD,650,District,3312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,1393,Block,Ben,LGD,209,District,1393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,2537,Block,Bengabad,LGD,329,District,2537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,5544,Block,Bengaluru East,LGD,525,District,5544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +LGD,5542,Block,Bengaluru North,LGD,525,District,5542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +LGD,5543,Block,Bengaluru South,LGD,525,District,5543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +LGD,2113,Block,Bengtol,LGD,612,District,2113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +LGD,1091,Block,Benipatti,LGD,206,District,1091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,1188,Block,Benipur,LGD,195,District,1188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,3689,Block,Beohari,LGD,429,District,3689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +LGD,3580,Block,Berasia,LGD,396,District,3580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +LGD,2241,Block,Berhampore,LGD,319,District,2241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,3093,Block,Berhampur,LGD,354,District,3093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,407,Block,Beri,LGD,64,District,407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +LGD,318,Block,Berinag,LGD,53,District,318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,6776,Block,Beri Pattan,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,3315,Block,Berla,LGD,650,District,3315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,2590,Block,Bermo,LGD,322,District,2590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,2695,Block,Bero,LGD,339,District,2695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,5131,Block,Bestavaripeta,LGD,790,District,5131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,339,Block,Betalghat,LGD,51,District,339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,1966,Block,Betasing,LGD,663,District,1966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false +LGD,5279,Block,Bethamcherla,LGD,755,District,5279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2881,Block,Betnoti,LGD,365,District,2881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,1028,Block,Bettiah,LGD,211,District,1028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,3600,Block,Betul,LGD,394,District,3600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,6989,Block,Betul Nagar,LGD,394,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,3742,Block,Bhabhar,LGD,789,District,3742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,1453,Block,Bhabua,LGD,200,District,1453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,3724,Block,Bhachau,LGD,449,District,3724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,65,Block,Bhaderwah,LGD,4,District,65,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,662,Block,Bhadesar,LGD,95,District,662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,3971,Block,Bhadgaon,LGD,478,District,3971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,997,Block,Bhadohi,LGD,179,District,997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +LGD,472,Block,Bhadra,LGD,101,District,472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +LGD,4730,Block,Bhadrachalam,LGD,690,District,4730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,7217,Block,Bhadrajun,LGD,104,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,2914,Block,Bhadrak,LGD,348,District,2914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +LGD,4070,Block,Bhadravati,LGD,473,District,4070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,5521,Block,Bhadravati,LGD,547,District,5521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +LGD,130,Block,Bhadrota,LGD,22,District,130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,2231,Block,Bhagawangola - I,LGD,319,District,2231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2232,Block,Bhagawangola - II,LGD,319,District,2232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2480,Block,Bhagawanpur - I,LGD,317,District,2480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2479,Block,Bhagawanpur - II,LGD,317,District,2479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,6747,Block,Bhagwa,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,1308,Block,Bhagwanpur,LGD,191,District,1308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,6022,Block,Bhagwanpur,LGD,50,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +LGD,1271,Block,Bhagwanpur,LGD,224,District,1271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,1455,Block,Bhagwanpur,LGD,200,District,1455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,3552,Block,Bhagwanpura,LGD,414,District,3552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,1235,Block,Bhagwanpur Hat,LGD,222,District,1235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,4339,Block,Bhainsa,LGD,680,District,4339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,3598,Block,Bhainsdehi,LGD,394,District,3598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,3379,Block,Bhairamgarh,LGD,636,District,3379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +LGD,3587,Block,Bhairunda,LGD,427,District,3587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,7328,Block,Bhaisma,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,3244,Block,Bhaiyathan,LGD,648,District,3244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,7315,Block,Bhakhara,LGD,377,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +LGD,86,Block,Bhalai,LGD,16,District,86,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,6753,Block,Bhalessa (Gandoh),LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,5455,Block,Bhalki,LGD,529,District,5455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +LGD,6755,Block,Bhalla,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,6561,Block,Bhalukpong Eac,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,6709,Block,Bhalwal,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,4771,Block,Bhamini,LGD,743,District,4771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4061,Block,Bhamragad,LGD,475,District,4061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,4039,Block,Bhandara,LGD,471,District,4039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +LGD,7373,Block,Bhandarej,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,1782,Block,Bhandari,LGD,250,District,1782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,2513,Block,Bhandaria,LGD,328,District,2513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,2912,Block,Bhandari Pokhari,LGD,348,District,2912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +LGD,3406,Block,Bhander,LGD,401,District,3406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +LGD,2603,Block,Bhandra,LGD,336,District,2603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +LGD,2418,Block,Bhangar - I,LGD,304,District,2418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2419,Block,Bhangar - II,LGD,304,District,2419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,7209,Block,Bhanipura,LGD,96,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,6040,Block,Bhaniyana,LGD,103,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +LGD,333,Block,Bhanoli,LGD,45,District,333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,937,Block,Bhanpur,LGD,131,District,937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +LGD,3492,Block,Bhanpura,LGD,416,District,3492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,7312,Block,Bhanpuri,LGD,374,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,3349,Block,Bhanupratappur,LGD,381,District,3349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,3820,Block,Bhanvad,LGD,674,District,3820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +LGD,7482,Block,Bhapur,LGD,367,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +LGD,153,Block,Bharari,LGD,15,District,153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +LGD,6746,Block,Bharath Bagla,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,511,Block,Bharatpur,LGD,91,District,511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +LGD,3231,Block,Bharatpur,LGD,760,District,3231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,2247,Block,Bharatpur - I,LGD,319,District,2247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2246,Block,Bharatpur - II,LGD,319,District,2246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,1114,Block,Bhargama,LGD,188,District,1114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,92,Block,Bharmour,LGD,16,District,92,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,2709,Block,Bharno,LGD,331,District,2709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,7414,Block,Bharoli,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,839,Block,Bharthana,LGD,139,District,839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +LGD,3916,Block,Bharuch,LGD,442,District,3916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,7597,Block,Bharuch City,LGD,442,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,147,Block,Bharwain,LGD,26,District,147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,3325,Block,Bhatapara,LGD,644,District,3325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,2286,Block,Bhatar,LGD,306,District,2286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,7276,Block,Bhatgaon,LGD,763,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,7310,Block,Bhatgaon,LGD,648,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,5488,Block,Bhatkal,LGD,550,District,5488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,4010,Block,Bhatkuli,LGD,468,District,4010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,2767,Block,Bhatli,LGD,347,District,2767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,963,Block,Bhatpar Rani,LGD,137,District,963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +LGD,5089,Block,Bhattiprolu,LGD,750,District,5089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,88,Block,Bhattiyat,LGD,16,District,88,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,6436,Block,Bhattukalan St,LGD,61,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +LGD,283,Block,Bhatwari,LGD,57,District,283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,5750,Block,Bhavani,LGD,573,District,5750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,3854,Block,Bhavnagar,LGD,443,District,3854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,7444,Block,Bhavnagar City,LGD,443,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,6855,Block,Bhawanigarh,LGD,43,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +LGD,1130,Block,Bhawanipur,LGD,214,District,1130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,6939,Block,Bhawarna,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,2496,Block,Bhawnathpur,LGD,328,District,2496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,2002,Block,Bhawraguri,LGD,294,District,2002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +LGD,2764,Block,Bheden,LGD,347,District,2764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,4448,Block,Bheemadevarpalli,LGD,686,District,4448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,4963,Block,Bheemadole,LGD,748,District,4963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6228,Block,Bheemaram,LGD,684,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,7541,Block,Bheemaram (20),LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,4364,Block,Bheemgal,LGD,516,District,4364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,4328,Block,Bheemini,LGD,684,District,4328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,6223,Block,Bheempur,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,4865,Block,Bheemunipatnam,LGD,520,District,4865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,7203,Block,Bhella,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,3828,Block,Bhesan,LGD,448,District,3828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,3549,Block,Bhikangaon,LGD,414,District,3549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,6853,Block,Bhikhiwind,LGD,609,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +LGD,325,Block,Bhikiasain,LGD,45,District,325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,4391,Block,Bhiknoor,LGD,685,District,4391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,7329,Block,Bhilai-3,LGD,378,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +LGD,3764,Block,Bhiloda,LGD,672,District,3764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +LGD,634,Block,Bhilwara,LGD,92,District,634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,639,Block,Bhim,LGD,112,District,639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,4984,Block,Bhimavaram,LGD,523,District,4984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,7299,Block,Bhimbhauri,LGD,650,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,7027,Block,Bhimpur,LGD,394,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,612,Block,Bhinay,LGD,86,District,612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,3392,Block,Bhind,LGD,395,District,3392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,6917,Block,Bhinder,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,6994,Block,Bhind Nagar,LGD,395,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,923,Block,Bhinga,LGD,181,District,923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false +LGD,588,Block,Bhinmal,LGD,104,District,588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,1022,Block,Bhitaha,LGD,211,District,1022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,3401,Block,Bhitarwar,LGD,407,District,3401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,911,Block,Bhiti,LGD,121,District,911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +LGD,4166,Block,Bhiwandi,LGD,497,District,4166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +LGD,398,Block,Bhiwani,LGD,59,District,398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +LGD,4036,Block,Bhiwapur,LGD,484,District,4036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,777,Block,Bhogaon,LGD,166,District,777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +LGD,4840,Block,Bhogapuram,LGD,521,District,4840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,846,Block,Bhognipur,LGD,156,District,846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +LGD,2891,Block,Bhograi,LGD,346,District,2891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,6543,Block,Bhoirymbong,LGD,276,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +LGD,4102,Block,Bhokar,LGD,485,District,4102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,4125,Block,Bhokardan,LGD,479,District,4125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +LGD,6744,Block,Bhomag,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,4628,Block,Bhongir,LGD,697,District,4628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,4574,Block,Bhoothpur,LGD,512,District,4574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,569,Block,Bhopalgarh,LGD,107,District,569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,3376,Block,Bhopalpattnam,LGD,636,District,3376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +LGD,4198,Block,Bhor,LGD,490,District,4198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,7529,Block,Bhoraj,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,146,Block,Bhoranj,LGD,17,District,146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,1217,Block,Bhorey,LGD,197,District,1217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,6885,Block,Bhota,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,7400,Block,Bhothiya,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,2990,Block,Bhuban,LGD,352,District,2990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +LGD,7498,Block,Bhubaneswar,LGD,362,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,4291,Block,Bhudargad,LGD,480,District,4291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,3726,Block,Bhuj,LGD,449,District,3726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,205,Block,Bhulath,LGD,35,District,205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +LGD,4237,Block,Bhum,LGD,488,District,4237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +LGD,6437,Block,Bhuna St,LGD,61,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +LGD,6887,Block,Bhuntar,LGD,20,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,4682,Block,Bhupalpally,LGD,687,District,4682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,6057,Block,Bhupalsagar,LGD,95,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,2027,Block,Bhuragaon,LGD,296,District,2027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +LGD,3965,Block,Bhusawal,LGD,478,District,3965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,6665,Block,Bhusawar,LGD,91,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +LGD,6645,Block,Bhuvanagiri,LGD,570,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,3566,Block,Biaora,LGD,422,District,3566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,1299,Block,Bibhutpur,LGD,217,District,1299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,4629,Block,Bibinagar,LGD,697,District,4629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,6242,Block,Bibipet,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,4916,Block,Biccavolu,LGD,505,District,4916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,6058,Block,Bichhiwara,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,3645,Block,Bichhiya,LGD,415,District,3645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +LGD,3657,Block,Bichhua,LGD,399,District,3657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,4374,Block,Bichkunda,LGD,685,District,4374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,7013,Block,Bicholi Hapsi,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,5612,Block,Bicholim,LGD,551,District,5612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +LGD,5457,Block,Bidar,LGD,529,District,5457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +LGD,6426,Block,Bidasar,LGD,96,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,841,Block,Bidhuna,LGD,122,District,841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +LGD,1280,Block,Bidupur,LGD,224,District,1280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,818,Block,Bighapur,LGD,186,District,818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +LGD,1386,Block,Bihar,LGD,209,District,1386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,1166,Block,Bihariganj,LGD,205,District,1166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,7245,Block,Biharpur,LGD,648,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,1330,Block,Bihpur,LGD,192,District,1330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,2049,Block,Bihpuria,LGD,295,District,2049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +LGD,1403,Block,Bihta,LGD,212,District,1403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,1216,Block,Bijaipur,LGD,197,District,1216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,3378,Block,Bijapur,LGD,636,District,3378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +LGD,7476,Block,Bijatala,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,3433,Block,Bijawar,LGD,398,District,3433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,54,Block,Bijbehara,LGD,1,District,54,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,2762,Block,Bijepur,LGD,347,District,2762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,4584,Block,Bijinapally,LGD,694,District,4584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,2115,Block,Bijni,LGD,612,District,2115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +LGD,713,Block,Bijnor,LGD,132,District,713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +LGD,638,Block,Bijoliya,LGD,92,District,638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,7580,Block,Bijwasan,LGD,84,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +LGD,473,Block,Bikaner,LGD,93,District,473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,906,Block,Bikapur,LGD,140,District,906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +LGD,1405,Block,Bikram,LGD,212,District,1405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,1461,Block,Bikramganj,LGD,215,District,1461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,3329,Block,Bilaigarh,LGD,763,District,3329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,573,Block,Bilara,LGD,107,District,573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,720,Block,Bilari,LGD,171,District,720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +LGD,6018,Block,Bilasipara Pt,LGD,285,District,2009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +LGD,3295,Block,Bilaspur,LGD,375,District,3295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,725,Block,Bilaspur,LGD,176,District,725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +LGD,6974,Block,Bilaspur,LGD,436,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +LGD,362,Block,Bilaspur,LGD,76,District,362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +LGD,156,Block,Bilaspur Sadar,LGD,15,District,156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +LGD,1652,Block,Bilat Circle,LGD,232,District,1652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +LGD,5444,Block,Bilgi,LGD,524,District,5444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,812,Block,Bilgram,LGD,150,District,812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +LGD,3297,Block,Bilha,LGD,375,District,3297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,848,Block,Bilhaur,LGD,157,District,848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +LGD,1900,Block,Bilkhawthlir,LGD,263,District,1900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false +LGD,27,Block,Billawar,LGD,7,District,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,4105,Block,Biloli,LGD,485,District,4105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,780,Block,Bilsi,LGD,133,District,780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +LGD,3443,Block,Bina,LGD,425,District,3443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,1383,Block,Bind,LGD,209,District,1383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,877,Block,Bindki,LGD,142,District,877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +LGD,3135,Block,Binika,LGD,372,District,3135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +LGD,2984,Block,Binjharpur,LGD,356,District,2984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,2442,Block,Binpur - I,LGD,703,District,2442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +LGD,2441,Block,Binpur - II,LGD,703,District,2441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +LGD,3137,Block,Biramaharajpur,LGD,372,District,3137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +LGD,2816,Block,Biramitrapur,LGD,373,District,2816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,1193,Block,Biraul,LGD,195,District,1193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,6892,Block,Birhu Kalan,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,2941,Block,Biridi,LGD,355,District,2941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +LGD,4375,Block,Birkur,LGD,685,District,4375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,2540,Block,Birni,LGD,329,District,2540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,6354,Block,Bironkhal,LGD,52,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,1313,Block,Birpur,LGD,191,District,1313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,7033,Block,Birsa,LGD,392,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,3463,Block,Birsinghpur,LGD,426,District,3463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +LGD,791,Block,Bisalpur,LGD,173,District,791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +LGD,779,Block,Bisauli,LGD,133,District,779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +LGD,1092,Block,Bisfi,LGD,206,District,1092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,6699,Block,Bishalgarh,LGD,653,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +LGD,3175,Block,Bishamakatak,LGD,370,District,3175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,81,Block,Bishnah,LGD,5,District,81,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,1874,Block,Bishnupur,LGD,252,District,1874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false +LGD,2415,Block,Bishnupur - I,LGD,304,District,2415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2416,Block,Bishnupur - II,LGD,304,District,2416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2624,Block,Bishrampur,LGD,338,District,2624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,2652,Block,Bishungarh,LGD,332,District,2652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,2706,Block,Bishunpur,LGD,331,District,2706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,2502,Block,Bishunpura,LGD,328,District,2502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,2864,Block,Bisoi,LGD,365,District,2864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,2818,Block,Bisra,LGD,373,District,2818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,7218,Block,Bissau,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,806,Block,Biswan,LGD,183,District,806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +LGD,2045,Block,Biswanath,LGD,705,District,2045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +LGD,1303,Block,Bithan,LGD,217,District,1303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,5621,Block,Bitra,LGD,553,District,5621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,5209,Block,B.Kodur,LGD,504,District,5209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,6815,Block,Bk Pora,LGD,2,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,2557,Block,Boarijor,LGD,330,District,2557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,4324,Block,Boath,LGD,501,District,4324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,4816,Block,Bobbili,LGD,521,District,4816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,1206,Block,Bochaha,LGD,208,District,1206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,6020,Block,Bodeli,LGD,668,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +LGD,3157,Block,Boden,LGD,368,District,3157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +LGD,4370,Block,Bodhan,LGD,516,District,4370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,1505,Block,Bodh Gaya,LGD,196,District,1505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,5842,Block,Bodinayakanur,LGD,588,District,5842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +LGD,3299,Block,Bodla,LGD,382,District,3299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +LGD,7250,Block,Bodri,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,3964,Block,Bodvad,LGD,478,District,3964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,5159,Block,Bogole,LGD,515,District,5159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,4429,Block,Boinpalli,LGD,683,District,4429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,3211,Block,Boipariguda,LGD,363,District,3211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,2111,Block,Boitamari,LGD,281,District,2111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +LGD,2082,Block,Bokakhat,LGD,288,District,2082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +LGD,1079,Block,Bokhara,LGD,221,District,1079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,2124,Block,Boko,LGD,291,District,2124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,3034,Block,Bolagad,LGD,362,District,3034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,2722,Block,Bolba,LGD,342,District,2722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,1643,Block,Boleng Adc,LGD,679,District,1643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,5061,Block,Bollapalli,LGD,751,District,5061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2264,Block,Bolpur Sriniketan,LGD,307,District,2264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,4550,Block,Bomaraspeta,LGD,698,District,4550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,6568,Block,Bomdila Hq,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,4613,Block,Bommalaramaram,LGD,697,District,4613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,5307,Block,Bommanahal,LGD,502,District,5307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,4765,Block,Bonakal,LGD,509,District,4765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,4829,Block,Bondapalli,LGD,521,District,4829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,6433,Block,Bondkalan St,LGD,701,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +LGD,2110,Block,Bongaigaon (Pt),LGD,281,District,2110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +LGD,2317,Block,Bongaon,LGD,303,District,2317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,6557,Block,Bongkhar Circle,LGD,238,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,38,Block,Boniyar,LGD,3,District,38,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,529,Block,Bonli,LGD,113,District,529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,2605,Block,Boram,LGD,327,District,2605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,1683,Block,Bordumsa Adc,LGD,229,District,1683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,6594,Block,Borduria Circle,LGD,239,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +LGD,7330,Block,Bori,LGD,378,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +LGD,3200,Block,Boriguma,LGD,363,District,3200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,2566,Block,Borio,LGD,340,District,2566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,7181,Block,Borivali,LGD,483,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +LGD,6490,Block,Borobekra,LGD,713,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false +LGD,3867,Block,Borsad,LGD,440,District,3867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,6013,Block,Borum,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,3850,Block,Botad,LGD,676,District,3850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +LGD,7435,Block,Botad City,LGD,676,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +LGD,1846,Block,Botsa,LGD,245,District,1846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +LGD,3130,Block,Boudh,LGD,349,District,3130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +LGD,4630,Block,B Pochampally,LGD,697,District,4630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,3067,Block,Brahmagiri,LGD,369,District,3067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,5205,Block,Brahmamgarimattam,LGD,504,District,5205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4067,Block,Brahmapuri,LGD,473,District,4067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,5320,Block,Brahmasamudram,LGD,502,District,5320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,7068,Block,Brahmavara,LGD,549,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +LGD,5380,Block,Buchinaidu Kandriga,LGD,752,District,5380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5170,Block,Buchireddipalem,LGD,515,District,5170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5966,Block,Budalur,LGD,586,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,782,Block,Budaun,LGD,133,District,782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +LGD,7,Block,Budgam,LGD,2,District,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,2413,Block,Budge Budge - I,LGD,304,District,2413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2414,Block,Budge Budge - II,LGD,304,District,2414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,709,Block,Budhana,LGD,172,District,709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +LGD,248,Block,Budhlada,LGD,37,District,248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false +LGD,3588,Block,Budni,LGD,427,District,3588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,6213,Block,Buggaram,LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,3072,Block,Buguda,LGD,354,District,3072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,489,Block,Buhana,LGD,106,District,489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,5345,Block,Bukkapatnam,LGD,754,District,5345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5329,Block,Bukkaraya Samudram,LGD,502,District,5329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,746,Block,Bulandshahr,LGD,134,District,746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +LGD,3984,Block,Buldana,LGD,472,District,3984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,626,Block,Bundi,LGD,94,District,626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +LGD,2698,Block,Bundu,LGD,339,District,2698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,2397,Block,Bundwan,LGD,321,District,2397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,1912,Block,Bunghmun,LGD,265,District,1912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false +LGD,6488,Block,Bungte Chiru,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,1918,Block,Bungtlang South,LGD,264,District,1918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false +LGD,6770,Block,Bunjwah,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,6847,Block,Buragaon Eac,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,7569,Block,Burari,LGD,80,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false +LGD,2289,Block,Burdwan - I,LGD,306,District,2289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2290,Block,Burdwan - II,LGD,306,District,2290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,4736,Block,Burgampahad,LGD,690,District,4736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,964,Block,Burhanpur,LGD,123,District,964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +LGD,3719,Block,Burhanpur,LGD,397,District,3719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +LGD,6972,Block,Burhanpur Nagar,LGD,397,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +LGD,6988,Block,Burhar,LGD,429,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +LGD,4794,Block,Burja,LGD,519,District,4794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,2682,Block,Burmu,LGD,339,District,2682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,2248,Block,Burwan,LGD,319,District,2248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,4873,Block,Butchayyapeta,LGD,744,District,4873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4948,Block,Buttayagudem,LGD,748,District,4948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1441,Block,Buxar,LGD,194,District,1441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,3434,Block,Buxwaha,LGD,398,District,3434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,5493,Block,Byadgi,LGD,540,District,5493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +LGD,948,Block,Campierganj,LGD,148,District,948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +LGD,5619,Block,Canacona,LGD,793,District,5619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +LGD,2420,Block,Canning - I,LGD,304,District,2420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2421,Block,Canning - II,LGD,304,District,2421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,5916,Block,Car Nicobar,LGD,603,District,5916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false +LGD,5256,Block,C.Belagal,LGD,511,District,5256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,2065,Block,Chabua,LGD,286,District,2065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +LGD,3683,Block,Chachaura,LGD,406,District,3683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +LGD,7560,Block,Chachian,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,137,Block,Chachyot,LGD,22,District,137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,7070,Block,Chadchan,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,6897,Block,Chadiyar,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,8,Block,Chadoora,LGD,2,District,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,5303,Block,Chagalamarri,LGD,755,District,5303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4959,Block,Chagallu,LGD,505,District,4959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,1739,Block,Chaglagam Circle,LGD,628,District,1739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +LGD,2739,Block,Chaibasa,LGD,343,District,2739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,887,Block,Chail,LGD,158,District,887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +LGD,1452,Block,Chainpur,LGD,200,District,1452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,2634,Block,Chainpur,LGD,338,District,2634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,2713,Block,Chainpur,LGD,331,District,2713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,1534,Block,Chakai,LGD,198,District,1534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,3116,Block,Chakapada,LGD,359,District,3116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,840,Block,Chakarnagar,LGD,139,District,840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +LGD,2314,Block,Chakdah,LGD,320,District,2314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,994,Block,Chakia,LGD,135,District,994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +LGD,1051,Block,Chakia(Pipra),LGD,213,District,1051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,6036,Block,Chakisain,LGD,52,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,1436,Block,Chakki,LGD,194,District,1436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,1895,Block,Chakpikarong,LGD,253,District,1895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +LGD,2731,Block,Chakradharpur,LGD,343,District,2731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,300,Block,Chakrata,LGD,49,District,300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +LGD,5234,Block,Chakrayapet,LGD,504,District,5234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,550,Block,Chaksu,LGD,102,District,550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,2613,Block,Chakulia,LGD,327,District,2613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,4230,Block,Chakur,LGD,481,District,4230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,5939,Block,Chalakkudy,LGD,566,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +LGD,7340,Block,Chalgali,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,3972,Block,Chalisgaon,LGD,478,District,3972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,2651,Block,Chalkusa,LGD,332,District,2651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,5504,Block,Challakere,LGD,533,District,5504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +LGD,5035,Block,Challapalli,LGD,510,District,5035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,5577,Block,Chamarajanagar,LGD,531,District,5577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +LGD,2122,Block,Chamaria,LGD,291,District,2122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,90,Block,Chamba,LGD,16,District,90,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,1709,Block,Chambang Circle,LGD,677,District,1709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false +LGD,265,Block,Chamkaur Sahib,LGD,42,District,265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +LGD,285,Block,Chamoli,LGD,47,District,285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,4058,Block,Chamorshi,LGD,475,District,4058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,3281,Block,Champa,LGD,379,District,3281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,334,Block,Champawat,LGD,48,District,334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +LGD,1908,Block,Champhai,LGD,262,District,1908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false +LGD,6489,Block,Champhai,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,2839,Block,Champua,LGD,361,District,2839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,7374,Block,Chamu,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,1353,Block,Chanan,LGD,190,District,1353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,1369,Block,Chanan*,LGD,204,District,1369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +LGD,3750,Block,Chanasma,LGD,455,District,3750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,2210,Block,Chanchal - I,LGD,316,District,2210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,2211,Block,Chanchal - II,LGD,316,District,2211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,1451,Block,Chand,LGD,200,District,1451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,6996,Block,Chand,LGD,399,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,3190,Block,Chandahandi,LGD,366,District,3190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,4652,Block,Chandampeta,LGD,514,District,4652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,2596,Block,Chandankiyari,LGD,322,District,2596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,5008,Block,Chandarlapadu,LGD,749,District,5008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,993,Block,Chandauli,LGD,135,District,993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +LGD,722,Block,Chandausi,LGD,659,District,722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +LGD,2919,Block,Chandbali,LGD,348,District,2919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +LGD,1894,Block,Chandel,LGD,253,District,1894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +LGD,3685,Block,Chanderi,LGD,391,District,3685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +LGD,4294,Block,Chandgad,LGD,480,District,4294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,1381,Block,Chandi,LGD,209,District,1381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,3483,Block,Chandia,LGD,436,District,3483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +LGD,277,Block,Chandigarh,LGD,44,District,277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.729350,76.780565,inherited:District,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11,false +LGD,2748,Block,Chandil,LGD,341,District,2748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,2481,Block,Chandipur,LGD,317,District,2481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2351,Block,Chanditala - I,LGD,312,District,2351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,2352,Block,Chanditala - II,LGD,312,District,2352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,3426,Block,Chandla,LGD,398,District,3426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,7574,Block,Chandni Chowk,LGD,795,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,7254,Block,Chando,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,716,Block,Chandpur,LGD,132,District,716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +LGD,5384,Block,Chandragiri,LGD,752,District,5384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2446,Block,Chandrakona - I,LGD,318,District,2446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,2447,Block,Chandrakona - II,LGD,318,District,2447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,3174,Block,Chandrapur,LGD,370,District,3174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,7354,Block,Chandrapur,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,2131,Block,Chandrapur,LGD,618,District,2131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +LGD,4071,Block,Chandrapur,LGD,473,District,4071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,2589,Block,Chandrapura,LGD,322,District,2589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,5145,Block,Chandra Sekhara Puram,LGD,790,District,5145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3711,Block,Chandra Shekhar Azad Nagar,LGD,639,District,3711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +LGD,4747,Block,Chandrugonda,LGD,690,District,4747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,4655,Block,Chandur,LGD,514,District,4655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,6669,Block,Chandur,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,4005,Block,Chandurbazar,LGD,468,District,4005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,4013,Block,Chandur Railway,LGD,468,District,4013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,4419,Block,Chandurthi,LGD,683,District,4419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,4148,Block,Chandvad,LGD,487,District,4148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,2643,Block,Chandwa,LGD,335,District,2643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,2530,Block,Chandwara,LGD,334,District,2530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +LGD,5671,Block,Changanassery,LGD,560,District,5671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +LGD,1671,Block,Changlang Hq,LGD,229,District,1671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,1780,Block,Changpang,LGD,250,District,1780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,1761,Block,Changtongya,LGD,246,District,1761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,2694,Block,Chanho,LGD,339,District,2694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,5514,Block,Channagiri,LGD,535,District,5514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +LGD,5607,Block,Channapatna,LGD,631,District,5607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +LGD,6802,Block,Channapora/Natipora,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +LGD,5560,Block,Channarayapatna,LGD,539,District,5560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +LGD,1025,Block,Chanpatia,LGD,211,District,1025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,5213,Block,Chapad,LGD,504,District,5213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,6019,Block,Chapar Pt,LGD,285,District,2010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +LGD,2305,Block,Chapra,LGD,320,District,2305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,1258,Block,Chapra,LGD,218,District,1258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,6293,Block,Charakonda,LGD,694,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,3348,Block,Charama,LGD,381,District,3348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,9,Block,Charar- E- Shrief,LGD,2,District,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,1076,Block,Charaut,LGD,221,District,1076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,1815,Block,Chare,LGD,249,District,1815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false +LGD,2042,Block,Chariduar,LGD,301,District,2042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +LGD,869,Block,Charkhari,LGD,165,District,869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false +LGD,4510,Block,Charminar,LGD,507,District,4510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,1430,Block,Charpokhari,LGD,193,District,1430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,2595,Block,Chas,LGD,322,District,2595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,6738,Block,Chassana,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,2518,Block,Chatra,LGD,323,District,2518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,5001,Block,Chatrai,LGD,748,District,5001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,312,Block,Chaubatta Khal,LGD,52,District,312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,1438,Block,Chaugain,LGD,194,District,1438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,326,Block,Chaukhutiya,LGD,45,District,326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,185,Block,Chaupal,LGD,23,District,185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,2644,Block,Chauparan,LGD,332,District,2644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,3650,Block,Chaurai,LGD,399,District,3650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,951,Block,Chauri Chaura,LGD,148,District,951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +LGD,1170,Block,Chausa,LGD,205,District,1170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,1442,Block,Chausa,LGD,194,District,1442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,1325,Block,Chautham,LGD,202,District,1325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +LGD,530,Block,Chauth Ka Barwara,LGD,113,District,530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,5653,Block,Chavakkad,LGD,566,District,5653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +LGD,1916,Block,Chawngte,LGD,264,District,1916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false +LGD,1590,Block,Chayangtajo Adc,LGD,231,District,1590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,5079,Block,Chebrolu,LGD,506,District,5079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,7375,Block,Chechat,LGD,109,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +LGD,4858,Block,Cheedikada,LGD,744,District,4858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4827,Block,Cheepurupalli,LGD,521,District,4827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,4466,Block,Chegunta,LGD,513,District,4466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,1273,Block,Chehra Kalan,LGD,224,District,1273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,5172,Block,Chejerla,LGD,515,District,5172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,7407,Block,Chelur,LGD,630,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +LGD,1753,Block,Chen,LGD,247,District,1753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,73,Block,Chenani,LGD,14,District,73,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +LGD,1468,Block,Chenari,LGD,215,District,1468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,2021,Block,Chenga,LGD,280,District,2021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +LGD,5706,Block,Chengalpattu,LGD,730,District,5706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +LGD,5725,Block,Chengam,LGD,593,District,5725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,5677,Block,Chengannur,LGD,554,District,5677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +LGD,4712,Block,Chennaraopet,LGD,522,District,4712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,5347,Block,Chennekothapalli,LGD,754,District,5347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4356,Block,Chennur,LGD,684,District,4356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,5226,Block,Chennur,LGD,504,District,5226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,6648,Block,Cheranmahadevi,LGD,592,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +LGD,1307,Block,Cheria Bariarpur,LGD,191,District,1307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,4672,Block,Cherial,LGD,692,District,4672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,4726,Block,Cherla,LGD,690,District,4726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,5673,Block,Cherthala,LGD,554,District,5673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +LGD,5090,Block,Cherukupalli,LGD,750,District,5090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1827,Block,Chessore,LGD,765,District,1827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1614,Block,Chetam Peer Yapu Circle,LGD,241,District,1614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,1807,Block,Chetheba,LGD,248,District,1807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,5622,Block,Chetlat,LGD,553,District,5622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,6617,Block,Chetpet,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,4529,Block,Chevella,LGD,518,District,4529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,1376,Block,Chewara,LGD,219,District,1376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false +LGD,5722,Block,Cheyyar,LGD,593,District,5722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,5711,Block,Cheyyur,LGD,730,District,5711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +LGD,676,Block,Chhabra,LGD,89,District,676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +LGD,363,Block,Chhachhrauli,LGD,76,District,363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +LGD,7424,Block,Chhaigaon Makhan,LGD,405,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,7240,Block,Chhal,LGD,386,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,3660,Block,Chhapara,LGD,428,District,3660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,761,Block,Chhata,LGD,167,District,761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +LGD,1103,Block,Chhatapur,LGD,223,District,1103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,479,Block,Chhatargarh,LGD,93,District,479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,2620,Block,Chhatarpur,LGD,338,District,2620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,7587,Block,Chhatarpur,LGD,83,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +LGD,3429,Block,Chhatarpur,LGD,398,District,3429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,7006,Block,Chhatarpur Nagar,LGD,398,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,2359,Block,Chhatna,LGD,305,District,2359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,4137,Block,Chhatrapati Sambhajinagar,LGD,469,District,4137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,3085,Block,Chhatrapur,LGD,354,District,3085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,6950,Block,Chhatri,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,70,Block,Chhatroo,LGD,620,District,70,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,2120,Block,Chhaygaon,LGD,291,District,2120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,3014,Block,Chhendipada,LGD,344,District,3014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +LGD,833,Block,Chhibramau,LGD,155,District,833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +LGD,3374,Block,Chhindgarh,LGD,642,District,3374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +LGD,3654,Block,Chhindwara,LGD,399,District,3654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,7020,Block,Chhindwara Nagar,LGD,399,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,677,Block,Chhipabarod,LGD,89,District,677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +LGD,1305,Block,Chhorahi,LGD,191,District,1305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,3901,Block,Chhota Udaipur,LGD,668,District,3901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +LGD,7318,Block,Chhotedongar,LGD,637,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false +LGD,7364,Block,Chhoti Khatoo,LGD,768,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,698,Block,Chhoti Sadri,LGD,629,District,698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +LGD,6042,Block,Chhoti Sarwan,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,3302,Block,Chhuikhadan,LGD,759,District,3302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,3336,Block,Chhura,LGD,645,District,3336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +LGD,3306,Block,Chhuriya,LGD,388,District,3306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +LGD,3601,Block,Chicholi,LGD,394,District,3601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,5791,Block,Chidambaram,LGD,570,District,5791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,1845,Block,Chiephobozou,LGD,245,District,1845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +LGD,4442,Block,Chigurumamidi,LGD,508,District,4442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,7545,Block,Chikada,LGD,452,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +LGD,4002,Block,Chikhaldara,LGD,468,District,4002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,6059,Block,Chikhali,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,3925,Block,Chikhli,LGD,453,District,3925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +LGD,3983,Block,Chikhli,LGD,472,District,3983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,7487,Block,Chikiti,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,5596,Block,Chikkaballapura,LGD,630,District,5596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +LGD,5530,Block,Chikkamagaluru,LGD,532,District,5530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,5532,Block,Chiknayakanhalli,LGD,548,District,5532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,5433,Block,Chikodi,LGD,527,District,5433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,5070,Block,Chilakaluripet H/O.Purushotha Patnam,LGD,751,District,5070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5366,Block,Chilamathur,LGD,754,District,5366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7497,Block,Chilika,LGD,362,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,6483,Block,Chilivai Phaibung,LGD,257,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +LGD,4667,Block,Chilkur,LGD,696,District,4667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,5190,Block,Chillakur,LGD,515,District,5190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,6754,Block,Chilly Pingal,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,6274,Block,Chilpched,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,6259,Block,Chilpur,LGD,689,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,5128,Block,Chimakurthy,LGD,517,District,5128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,4065,Block,Chimur,LGD,473,District,4065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,5125,Block,Chinaganjam,LGD,750,District,5125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5583,Block,Chincholi,LGD,538,District,5583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,1887,Block,Chingai,LGD,260,District,1887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false +LGD,1822,Block,Chingmei,LGD,249,District,1822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false +LGD,2507,Block,Chinia,LGD,328,District,2507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,4587,Block,Chinnachintakunta,LGD,512,District,4587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,5385,Block,Chinnagottigallu,LGD,752,District,5385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6254,Block,Chinnagudur,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,4460,Block,Chinnakodur,LGD,692,District,4460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,5236,Block,Chinnamandem,LGD,753,District,5236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6287,Block,Chinnambavi,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,5977,Block,Chinnasalem,LGD,729,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +LGD,3402,Block,Chinour,LGD,407,District,3402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,2346,Block,Chinsurah - Magra,LGD,312,District,2346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,6314,Block,Chintalamanepally,LGD,699,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,4944,Block,Chintalapudi,LGD,748,District,4944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5600,Block,Chintamani,LGD,630,District,5600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +LGD,4760,Block,Chinthakani,LGD,509,District,4760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,5231,Block,Chinthakommadinne,LGD,504,District,5231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,6303,Block,Chinthalapalem,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,4849,Block,Chinthapalli,LGD,745,District,4849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4650,Block,Chinthapally,LGD,514,District,4650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4732,Block,Chinturu,LGD,791,District,4732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,282,Block,Chinyali Saur,LGD,57,District,282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,4269,Block,Chiplun,LGD,492,District,4269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,5291,Block,Chippagiri,LGD,511,District,5291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,1040,Block,Chiraia,LGD,213,District,1040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,5123,Block,Chirala,LGD,750,District,5123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6758,Block,Chiralla,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,488,Block,Chirawa,LGD,106,District,488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,5689,Block,Chirayinkeezhu,LGD,565,District,5689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +LGD,192,Block,Chirgaon,LGD,23,District,192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,7268,Block,Chirmiri,LGD,760,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,7084,Block,Chitaguppa,LGD,529,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +LGD,6046,Block,Chitalwana,LGD,104,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,2664,Block,Chitarpur,LGD,607,District,2664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +LGD,5505,Block,Chitradurga,LGD,533,District,5505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +LGD,6799,Block,Chitragam,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false +LGD,3223,Block,Chitrakonda,LGD,364,District,3223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +LGD,3703,Block,Chitrangi,LGD,638,District,3703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +LGD,5193,Block,Chittamur,LGD,752,District,5193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5585,Block,Chittapur,LGD,538,District,5585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,5421,Block,Chittoor Rural,LGD,503,District,5421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,7427,Block,Chittoor Urban,LGD,503,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,659,Block,Chittorgarh,LGD,95,District,659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,5650,Block,Chittur,LGD,563,District,5650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +LGD,5245,Block,Chitvel,LGD,752,District,5245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4633,Block,Chityal,LGD,514,District,4633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4681,Block,Chityal,LGD,687,District,4681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,4639,Block,Chivemla,LGD,696,District,4639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,1812,Block,Chizami,LGD,248,District,1812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,4872,Block,Chodavaram,LGD,744,District,4872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,584,Block,Chohtan,LGD,90,District,584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,1975,Block,Chokpot,LGD,277,District,1975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +LGD,541,Block,Chomu,LGD,102,District,541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,1731,Block,Chongkham Eac,LGD,678,District,1731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false +LGD,3960,Block,Chopda,LGD,478,District,3960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,4424,Block,Choppadandi,LGD,508,District,4424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,2191,Block,Chopra,LGD,311,District,2191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,3938,Block,Chorasi,LGD,459,District,3938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,3794,Block,Chotila,LGD,460,District,3794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,4631,Block,Choutuppal,LGD,697,District,4631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,7186,Block,Chowdapur,LGD,698,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,5413,Block,Chowdepalle,LGD,753,District,5413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6703,Block,Chowki Choura,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,7188,Block,Chowtakur,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,1806,Block,Chozuba,LGD,248,District,1806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,1762,Block,Chuchuyimlang,LGD,246,District,1762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,3796,Block,Chuda,LGD,460,District,3796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,1791,Block,Chukitong,LGD,250,District,1791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,1797,Block,Chumukedima,LGD,758,District,1797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1003,Block,Chunar,LGD,170,District,1003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +LGD,6376,Block,Chunchupalli,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,1547,Block,Chungthang,LGD,226,District,1547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false +LGD,5987,Block,Chunlikha,LGD,757,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1871,Block,Churachandpur,LGD,254,District,1871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,84,Block,Churah,LGD,16,District,84,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,2658,Block,Churchu,LGD,332,District,2658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,3698,Block,Churhat,LGD,433,District,3698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +LGD,484,Block,Churu,LGD,96,District,484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,7039,Block,City Center,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,5897,Block,Coimbatore North,LGD,569,District,5897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,5898,Block,Coimbatore South,LGD,569,District,5898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,929,Block,Colonelganj,LGD,147,District,929,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +LGD,2488,Block,Contai - I,LGD,317,District,2488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2490,Block,Contai - III,LGD,317,District,2490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2183,Block,Cooch Behar - I,LGD,308,District,2183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,2184,Block,Cooch Behar - II,LGD,308,District,2184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,5758,Block,Coonoor,LGD,587,District,5758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +LGD,5789,Block,Cuddalore,LGD,570,District,5789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,5117,Block,Cumbum,LGD,790,District,5117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2962,Block,Cuttack,LGD,350,District,2962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,3905,Block,Dabhoi,LGD,461,District,3905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,3284,Block,Dabhra,LGD,762,District,3284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,3400,Block,Dabra,LGD,407,District,3400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,3192,Block,Dabugan,LGD,366,District,3192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,389,Block,Dabwali,LGD,74,District,389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +LGD,5045,Block,Dachepalli,LGD,751,District,5045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6765,Block,Dachhan,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,171,Block,Dadahu,LGD,24,District,171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,1687,Block,Dadam Circle,LGD,239,District,1687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +LGD,6918,Block,Dadasiba,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,1963,Block,Dadenggiri,LGD,278,District,1963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +LGD,2659,Block,Dadi,LGD,332,District,2659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,3949,Block,Dadra & Nagar Haveli,LGD,465,District,3949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,false +LGD,402,Block,Dadri,LGD,701,District,402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +LGD,742,Block,Dadri,LGD,144,District,742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +LGD,6926,Block,Dag,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,5166,Block,Dagadarthi,LGD,515,District,5166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,1141,Block,Dagarua,LGD,214,District,1141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,4158,Block,Dahanu,LGD,665,District,4158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +LGD,4329,Block,Dahegoan,LGD,699,District,4329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,3537,Block,Dahi,LGD,403,District,3537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,6464,Block,Dahina St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +LGD,5186,Block,Dakkili,LGD,752,District,5186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2149,Block,Dalgaon (Pt),LGD,283,District,2149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +LGD,87,Block,Dalhousie,LGD,16,District,87,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,827,Block,Dalmau,LGD,175,District,827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +LGD,3497,Block,Daloda,LGD,416,District,3497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,7151,Block,Dalot,LGD,629,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +LGD,1297,Block,Dalsinghsarai,LGD,217,District,1297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,1969,Block,Dalu,LGD,278,District,1969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +LGD,3948,Block,Daman,LGD,463,District,3948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,false +LGD,4553,Block,Damargidda,LGD,721,District,4553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,1971,Block,Dambo Rongjeng,LGD,273,District,1971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +LGD,6591,Block,Dambuen Circle,LGD,230,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false +LGD,1725,Block,Dambuk Adc,LGD,235,District,1725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false +LGD,6375,Block,Damera,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,4663,Block,Dameracherla,LGD,514,District,4663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,1714,Block,Damin Circle,LGD,233,District,1714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,4750,Block,Dammapeta,LGD,690,District,4750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,3458,Block,Damoh,LGD,400,District,3458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +LGD,6999,Block,Damyanti Nagar,LGD,400,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +LGD,2510,Block,Danda,LGD,328,District,2510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,2506,Block,Dandai,LGD,328,District,2506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,1317,Block,Dandari,LGD,191,District,1317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,7064,Block,Dandeli,LGD,550,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,4348,Block,Dandepally,LGD,684,District,4348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,1150,Block,Dandkhora,LGD,201,District,1150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,7475,Block,Dangadi,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,6827,Block,Dangarpora,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,7110,Block,Dangtal Revenue Circle,LGD,281,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +LGD,1412,Block,Daniawan,LGD,212,District,1412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,6712,Block,Dansal,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,3737,Block,Danta,LGD,441,District,3737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,2467,Block,Dantan - I,LGD,318,District,2467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,2468,Block,Dantan - II,LGD,318,District,2468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,554,Block,Danta Ramgarh,LGD,114,District,554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,3369,Block,Dantewada,LGD,376,District,3369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +LGD,6255,Block,Danthalapalle,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,3735,Block,Dantiwada,LGD,441,District,3735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,4267,Block,Dapoli,LGD,492,District,4267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,1615,Block,Daporijo Hq,LGD,241,District,1615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,1628,Block,Darak Circle,LGD,243,District,1628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false +LGD,1242,Block,Darauli,LGD,222,District,1242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,1246,Block,Daraundha,LGD,222,District,1246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,3366,Block,Darbha,LGD,374,District,3366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,1184,Block,Darbhanga,LGD,195,District,1184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,6901,Block,Dareeni,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,21,Block,Darhal,LGD,12,District,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,7357,Block,Darhi,LGD,650,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,1264,Block,Dariapur,LGD,218,District,1264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,7261,Block,Darima,LGD,389,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +LGD,3125,Block,Daringbadi,LGD,359,District,3125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,1637,Block,Daring Circle,LGD,724,District,1637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false +LGD,2154,Block,Darjeeling Pulbazar,LGD,309,District,2154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,159,Block,Darlaghat,LGD,25,District,159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,1902,Block,Darlawn,LGD,261,District,1902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +LGD,7474,Block,Darpan,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,7266,Block,Darri,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,5114,Block,Darsi,LGD,517,District,5114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,2649,Block,Daru,LGD,332,District,2649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,4083,Block,Darwha,LGD,500,District,4083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,4011,Block,Daryapur,LGD,468,District,4011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,3790,Block,Dasada,LGD,460,District,3790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,3202,Block,Dasamantapur,LGD,363,District,3202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,3023,Block,Dasapalla,LGD,367,District,3023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +LGD,7473,Block,Dasarathpur,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,3782,Block,Daskroi,LGD,438,District,3782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,2449,Block,Daspur - I,LGD,318,District,2449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,2450,Block,Daspur - II,LGD,318,District,2450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,6207,Block,Dasturabad,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,214,Block,Dasua,LGD,33,District,214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +LGD,783,Block,Dataganj,LGD,133,District,783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +LGD,3405,Block,Datia,LGD,401,District,3405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +LGD,6991,Block,Datia Nagar,LGD,401,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +LGD,4823,Block,Dattirajeru,LGD,521,District,4823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,1476,Block,Daudnagar,LGD,189,District,1476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,4195,Block,Daund,LGD,490,District,4195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,3322,Block,Daundi,LGD,646,District,3322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +LGD,3320,Block,Daundilohara,LGD,646,District,3320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +LGD,7251,Block,Daura-Kochali,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,536,Block,Dausa,LGD,97,District,536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,5512,Block,Davanagere,LGD,535,District,5512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +LGD,1459,Block,Dawath,LGD,215,District,1459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,6415,Block,Dayalpur St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +LGD,2800,Block,Debagarh,LGD,351,District,2800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false +LGD,749,Block,Debai,LGD,134,District,749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +LGD,7021,Block,Debeyar Co Circle,LGD,231,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,2462,Block,Debra,LGD,318,District,2462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,6937,Block,Dechoo,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3911,Block,Dediapada,LGD,452,District,3911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +LGD,6842,Block,Deed Circle,LGD,786,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,508,Block,Deeg,LGD,767,District,508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3740,Block,Deesa,LGD,441,District,3740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,7437,Block,Deesa City,LGD,441,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,563,Block,Degana,LGD,110,District,563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,2327,Block,Deganga,LGD,303,District,2327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,4110,Block,Deglur,LGD,485,District,4110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,7223,Block,Deh,LGD,110,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,6958,Block,Deha,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,6949,Block,Dehar,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,3776,Block,Dehgam,LGD,446,District,3776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +LGD,304,Block,Dehradun,LGD,49,District,304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +LGD,103,Block,Dehra Gopipur,LGD,18,District,103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,1473,Block,Dehri,LGD,215,District,1473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,3056,Block,Delanga,LGD,369,District,3056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,7154,Block,Deldar,LGD,115,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +LGD,452,Block,Delhi Cantonment,LGD,79,District,452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false +LGD,6935,Block,Delwara,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,6546,Block,Demdema,LGD,278,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +LGD,4967,Block,Denduluru,LGD,748,District,4967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4839,Block,Denkada,LGD,521,District,4839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,5892,Block,Denkanikottai,LGD,577,District,5892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +LGD,6398,Block,Dentam,LGD,228,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false +LGD,1485,Block,Deo,LGD,189,District,1485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,704,Block,Deoband,LGD,177,District,704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +LGD,3741,Block,Deodar,LGD,789,District,3741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,7453,Block,Deogaon,LGD,345,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,640,Block,Deogarh,LGD,112,District,640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,2545,Block,Deoghar,LGD,324,District,2545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,4144,Block,Deola,LGD,487,District,4144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,3985,Block,Deolgaon Raja,LGD,472,District,3985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,4020,Block,Deoli,LGD,498,District,4020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +LGD,620,Block,Deoli,LGD,116,District,620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,7588,Block,Deoli,LGD,83,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +LGD,1684,Block,Deomali Adc,LGD,239,District,1684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +LGD,4234,Block,Deoni,LGD,481,District,4234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,4051,Block,Deori,LGD,476,District,4051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +LGD,2534,Block,Deori,LGD,329,District,2534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,3453,Block,Deori,LGD,425,District,3453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,7010,Block,Deori,LGD,421,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,959,Block,Deoria,LGD,137,District,959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +LGD,3704,Block,Deosar,LGD,638,District,3704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +LGD,3540,Block,Depalpur,LGD,410,District,3540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,204,Block,Dera Baba Nanak,LGD,32,District,204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +LGD,268,Block,Dera Bassi,LGD,608,District,268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +LGD,2930,Block,Derabish,LGD,360,District,2930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,844,Block,Derapur,LGD,156,District,844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +LGD,2084,Block,Dergaon,LGD,288,District,2084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +LGD,4052,Block,Desaiganj (Vadasa),LGD,475,District,4052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,6569,Block,Desali Circle,LGD,235,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false +LGD,6035,Block,Desar,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,2489,Block,Deshopran,LGD,317,District,2489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,1281,Block,Desri,LGD,224,District,1281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,603,Block,Desuri,LGD,111,District,603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +LGD,3778,Block,Detroj-Rampura,LGD,438,District,3778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,5460,Block,Devadurga,LGD,546,District,5460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +LGD,5831,Block,Devakottai,LGD,585,District,5831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,6424,Block,Devalthal,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,5603,Block,Devanahalli,LGD,526,District,5603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +LGD,5276,Block,Devanakonda,LGD,511,District,5276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,7071,Block,Devara Hipparagi,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,4573,Block,Devarakadra,LGD,512,District,4573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,4653,Block,Devarakonda,LGD,514,District,4653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4957,Block,Devarapalle,LGD,505,District,4957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,4859,Block,Devarapalli,LGD,744,District,4859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4701,Block,Devaruppula,LGD,689,District,4701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,3338,Block,Devbhog,LGD,645,District,3338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +LGD,3437,Block,Devendranagar,LGD,420,District,3437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,4275,Block,Devgad,LGD,495,District,4275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +LGD,3895,Block,Devgadbaria,LGD,445,District,3895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,5664,Block,Devikulam,LGD,556,District,5664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +LGD,4885,Block,Devipatnam,LGD,791,District,4885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2549,Block,Devipur,LGD,324,District,2549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,7298,Block,Devkar,LGD,650,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,294,Block,Devprayag,LGD,55,District,294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,60,Block,Devsar,LGD,622,District,60,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +LGD,6347,Block,Dewal,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,3526,Block,Dewas,LGD,402,District,3526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,7031,Block,Dewas Nagar,LGD,402,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,1039,Block,Dhaka,LGD,213,District,1039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,2053,Block,Dhakuakhana (Pt-I),LGD,295,District,2053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +LGD,2611,Block,Dhalbhumgarh,LGD,327,District,2611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,7175,Block,Dhalwan,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,4014,Block,Dhamangaon Railway,LGD,468,District,4014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,1132,Block,Dhamdaha,LGD,214,District,1132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,3316,Block,Dhamdha,LGD,378,District,3316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +LGD,6964,Block,Dhami,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,2913,Block,Dhamnagar,LGD,348,District,2913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +LGD,715,Block,Dhampur,LGD,132,District,715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +LGD,3346,Block,Dhamtari,LGD,377,District,3346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +LGD,7577,Block,Dhamwari,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,1409,Block,Dhanarua,LGD,212,District,1409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,6912,Block,Dhanau,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,298,Block,Dhanaulti,LGD,55,District,298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,729,Block,Dhanaura,LGD,154,District,729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +LGD,2584,Block,Dhanbad-Cum-Kenduadih-Cum-Jagata,LGD,325,District,2584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,3787,Block,Dhandhuka,LGD,438,District,3787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,6448,Block,Dhand St,LGD,66,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +LGD,3734,Block,Dhanera,LGD,441,District,3734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,2343,Block,Dhaniakhali,LGD,312,District,2343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,3662,Block,Dhanora,LGD,428,District,3662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,7320,Block,Dhanora,LGD,643,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +LGD,4056,Block,Dhanora,LGD,475,District,4056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,3896,Block,Dhanpur,LGD,445,District,3896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,1798,Block,Dhansiripar,LGD,758,District,1798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,3770,Block,Dhansura,LGD,672,District,3770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +LGD,4572,Block,Dhanwada,LGD,721,District,4572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,2535,Block,Dhanwar,LGD,329,District,2535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,3534,Block,Dhar,LGD,403,District,3534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,3079,Block,Dharakote,LGD,354,District,3079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,3168,Block,Dharamgarh,LGD,358,District,3168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,3263,Block,Dharamjaigarh,LGD,386,District,3263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,5996,Block,Dharamkot,LGD,38,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +LGD,3928,Block,Dharampur,LGD,462,District,3928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,3539,Block,Dharampuri,LGD,403,District,3539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,3968,Block,Dharangaon,LGD,478,District,3968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,5902,Block,Dharapuram,LGD,634,District,5902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,4240,Block,Dharashiv,LGD,488,District,4240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +LGD,5931,Block,Dharbandora,LGD,793,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +LGD,316,Block,Dharchula,LGD,53,District,316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,1359,Block,Dharhara,LGD,207,District,1359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,341,Block,Dhari,LGD,51,District,341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,3845,Block,Dhari,LGD,439,District,3845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,696,Block,Dhariawad,LGD,629,District,696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +LGD,200,Block,Dhar Kalan,LGD,662,District,200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +LGD,4104,Block,Dharmabad,LGD,485,District,4104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,6691,Block,Dharmanagar,LGD,270,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +LGD,4397,Block,Dharmapuri,LGD,681,District,4397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,5888,Block,Dharmapuri,LGD,571,District,5888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +LGD,4411,Block,Dharmaram,LGD,682,District,4411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,4677,Block,Dharmasagar,LGD,686,District,4677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,2979,Block,Dharmasala,LGD,356,District,2979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,5336,Block,Dharmavaram,LGD,754,District,5336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,127,Block,Dharmpur,LGD,22,District,127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,99,Block,Dharmsala,LGD,18,District,99,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,4001,Block,Dharni,LGD,468,District,4001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,7544,Block,Dharnidhar,LGD,789,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,4591,Block,Dharoor,LGD,695,District,4591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,4378,Block,Dharpally,LGD,516,District,4378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,7292,Block,Dharsiwa,LGD,387,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +LGD,6463,Block,Dharuhera St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +LGD,4223,Block,Dharur,LGD,470,District,4223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,4531,Block,Dharur,LGD,698,District,4531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,5473,Block,Dharwad,LGD,536,District,5473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +LGD,6944,Block,Dharwala,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,145,Block,Dhatwal,LGD,17,District,145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,6414,Block,Dhauj St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +LGD,6032,Block,Dhaulana,LGD,661,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false +LGD,6338,Block,Dhaulchhina,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,6365,Block,Dhauntari,LGD,57,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,802,Block,Dhaurahara,LGD,159,District,802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +LGD,2041,Block,Dhekiajuli (Pt),LGD,301,District,2041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +LGD,2055,Block,Dhemaji,LGD,284,District,2055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +LGD,2999,Block,Dhenkanal Sadar,LGD,352,District,2999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +LGD,3626,Block,Dhimarkheda,LGD,413,District,3626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,2034,Block,Dhing,LGD,297,District,2034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +LGD,109,Block,Dhira,LGD,18,District,109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,5304,Block,D.Hirehal,LGD,502,District,5304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,6387,Block,Dhod,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,6167,Block,Dholera,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,1211,Block,Dholi (Moraul),LGD,208,District,1211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,3783,Block,Dholka,LGD,438,District,3783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,518,Block,Dholpur,LGD,98,District,518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +LGD,5289,Block,Dhone,LGD,755,District,5289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7189,Block,Dhoolmitta,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,309,Block,Dhoomakot,LGD,52,District,309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,3810,Block,Dhoraji,LGD,457,District,3810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,6050,Block,Dhorimanna,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,61,Block,D H Pora,LGD,622,District,61,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +LGD,3789,Block,Dhrangadhra,LGD,460,District,3789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,3816,Block,Dhrol,LGD,447,District,3816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +LGD,6014,Block,Dhubri,LGD,285,District,2008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +LGD,7402,Block,Dhulcot,LGD,397,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +LGD,3959,Block,Dhule,LGD,474,District,3959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +LGD,2176,Block,Dhupguri,LGD,314,District,2176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,1348,Block,Dhuraiya,LGD,190,District,1348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,270,Block,Dhuri,LGD,43,District,270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +LGD,2504,Block,Dhurki,LGD,328,District,2504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,6342,Block,Dhyari,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,2426,Block,Diamond Harbour - I,LGD,304,District,2426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2427,Block,Diamond Harbour - II,LGD,304,District,2427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2064,Block,Dibrugarh East,LGD,286,District,2064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +LGD,2063,Block,Dibrugarh West,LGD,286,District,2063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +LGD,4377,Block,Dichpally,LGD,516,District,4377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,7449,Block,Didarganj,LGD,212,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,317,Block,Didihat,LGD,53,District,317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,558,Block,Didwana,LGD,768,District,558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3096,Block,Digapahandi,LGD,354,District,3096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,1122,Block,Dighalbank,LGD,203,District,1122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +LGD,7394,Block,Dighora,LGD,434,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,1266,Block,Dighwara,LGD,218,District,1266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,5919,Block,Diglipur,LGD,632,District,5919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +LGD,666,Block,Digod,LGD,109,District,666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +LGD,4084,Block,Digras,LGD,500,District,4084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,4343,Block,Dilawarpur,LGD,680,District,4343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,1796,Block,Dimapur Sadar,LGD,244,District,1796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false +LGD,2070,Block,Dimow,LGD,300,District,2070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +LGD,6860,Block,Dinanagar,LGD,32,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +LGD,1399,Block,Dinapur-Cum-Khagaul,LGD,212,District,1399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,1458,Block,Dinara,LGD,215,District,1458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,5980,Block,Dindiguleast,LGD,572,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,5979,Block,Dindigulwest,LGD,572,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,4149,Block,Dindori,LGD,487,District,4149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,3640,Block,Dindori,LGD,404,District,3640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +LGD,6726,Block,Dinga Amb,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,2187,Block,Dinhata - I,LGD,308,District,2187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,2188,Block,Dinhata - II,LGD,308,District,2188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,2089,Block,Diphu,LGD,292,District,2089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +LGD,7293,Block,Dipka,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,1566,Block,Dirang Adc,LGD,242,District,1566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,6852,Block,Dirba,LGD,43,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +LGD,7231,Block,Diskit,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +LGD,2129,Block,Dispur,LGD,618,District,2129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +LGD,6099,Block,Dissing Passo Circle,LGD,723,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false +LGD,3947,Block,Diu,LGD,464,District,3947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false +LGD,1682,Block,Diyun Eac,LGD,229,District,1682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,1504,Block,Dobhi,LGD,196,District,1504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,2039,Block,Doboka,LGD,709,District,2039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +LGD,62,Block,Doda,LGD,4,District,62,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,4282,Block,Dodamarg,LGD,495,District,4282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +LGD,5602,Block,Doddaballapura,LGD,526,District,5602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +LGD,193,Block,Dodra Kwar,LGD,23,District,193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,3893,Block,Dohad,LGD,445,District,3893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,1598,Block,Doimukh Sdo,LGD,237,District,1598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,6335,Block,Doiwala,LGD,49,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +LGD,3615,Block,Dolariya,LGD,409,District,3615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,1701,Block,Dollungmukh Circle,LGD,718,District,1701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false +LGD,6200,Block,Dolvan,LGD,641,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +LGD,4537,Block,Doma,LGD,698,District,4537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,4392,Block,Domakonda,LGD,685,District,4392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,936,Block,Domariyaganj,LGD,182,District,936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +LGD,2528,Block,Domchanch,LGD,334,District,2528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +LGD,2402,Block,Domjur,LGD,313,District,2402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,2235,Block,Domkal,LGD,319,District,2235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,7501,Block,Dompada,LGD,350,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,5102,Block,Donakonda,LGD,517,District,5102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,3307,Block,Dongargaon,LGD,388,District,3307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +LGD,3304,Block,Dongargarh,LGD,388,District,3304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +LGD,6824,Block,Dongiwacha,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,7525,Block,Dongli,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,2088,Block,Donka,LGD,710,District,2088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false +LGD,7530,Block,Donkeshwar,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,2060,Block,Doom Dooma,LGD,302,District,2060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +LGD,6910,Block,Dooni,LGD,116,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,58,Block,Dooru,LGD,1,District,58,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,7422,Block,Doraha,LGD,427,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,5196,Block,Doravarisatram,LGD,752,District,5196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4722,Block,Dornakal,LGD,688,District,4722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,5100,Block,Dornala,LGD,790,District,5100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7355,Block,Dornapal,LGD,642,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +LGD,5299,Block,Dornipadu,LGD,755,District,5299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2003,Block,Dotma,LGD,294,District,2003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +LGD,4552,Block,Doulathabad,LGD,698,District,4552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,4465,Block,Doultabad,LGD,692,District,4465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,7137,Block,Dovda,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,6769,Block,Drabshala,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,6786,Block,Dragmulla,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,3544,Block,Dr. Ambedkar Nagar Mhow,LGD,410,District,3544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,6191,Block,Drass,LGD,6,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +LGD,4458,Block,Dubbak,LGD,692,District,4458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,2266,Block,Dubrajpur,LGD,307,District,2266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,7419,Block,Dudhamania,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +LGD,6849,Block,Dudhan Sadhan,LGD,41,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +LGD,1006,Block,Dudhi,LGD,184,District,1006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +LGD,2016,Block,Dudhnai,LGD,287,District,2016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +LGD,6027,Block,Dudu,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,6550,Block,Dudunghar Circle,LGD,238,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,7540,Block,Dudyal,LGD,698,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,5076,Block,Duggirala,LGD,506,District,5076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,4693,Block,Duggondi,LGD,522,District,4693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,6331,Block,Dugnakuri,LGD,46,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +LGD,6891,Block,Dulahar,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,3260,Block,Duldula,LGD,380,District,3260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,1406,Block,Dulhin Bazar,LGD,212,District,1406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,2663,Block,Dulmi,LGD,607,District,2663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +LGD,1502,Block,Dumaria,LGD,196,District,1502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,2610,Block,Dumaria,LGD,327,District,2610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,4843,Block,Dumbriguda,LGD,745,District,4843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2673,Block,Dumka,LGD,326,District,2673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,4729,Block,Dummugudem,LGD,690,District,4729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,1617,Block,Dumporijo Adc,LGD,241,District,1617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,1074,Block,Dumra,LGD,221,District,1074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,1440,Block,Dumraon,LGD,194,District,1440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,2543,Block,Dumri,LGD,329,District,2543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,2714,Block,Dumri,LGD,331,District,2714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,1061,Block,Dumri Katsari,LGD,220,District,1061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +LGD,281,Block,Dunda,LGD,57,District,281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,646,Block,Dungarpur,LGD,99,District,646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,661,Block,Dungla,LGD,95,District,661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,7158,Block,Durbuk,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +LGD,3317,Block,Durg,LGD,378,District,3317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +LGD,2274,Block,Durgapur Faridpur,LGD,704,District,2274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +LGD,1450,Block,Durgawati,LGD,200,District,1450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,5042,Block,Durgi,LGD,751,District,5042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3350,Block,Durgkondal,LGD,381,District,3350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,5162,Block,Duttalur,LGD,515,District,5162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5203,Block,Duvvur,LGD,504,District,5203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,329,Block,Dwarahat,LGD,45,District,329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,4955,Block,Dwarakatirumala,LGD,748,District,4955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7592,Block,Dwarka,LGD,84,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +LGD,6402,Block,Dzongu,LGD,226,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false +LGD,1911,Block,East Lungdar,LGD,268,District,1911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false +LGD,5738,Block,Edappadi,LGD,584,District,5738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,5071,Block,Edlapadu,LGD,751,District,5071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6201,Block,Egarkund,LGD,325,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,7164,Block,Egmore,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,2491,Block,Egra - I,LGD,317,District,2491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2492,Block,Egra - II,LGD,317,District,2492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,6803,Block,Eidgah,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +LGD,1391,Block,Ekangarsarai,LGD,209,District,1391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,1254,Block,Ekma,LGD,218,District,1254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,4410,Block,Eligaid,LGD,682,District,4410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,4449,Block,Elkathurthy,LGD,686,District,4449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,6234,Block,Ellandakunta,LGD,508,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,392,Block,Ellenabad,LGD,74,District,392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +LGD,4966,Block,Eluru Rural,LGD,748,District,4966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7428,Block,Eluru Urban,LGD,748,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7539,Block,Endapalli,LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,1790,Block,Englan,LGD,250,District,1790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,2218,Block,English Bazar,LGD,316,District,2218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,4753,Block,Enkoor,LGD,509,District,4753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,6633,Block,Eral,LGD,594,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,3967,Block,Erandol,LGD,478,District,3967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,2705,Block,Erki(Tamar Ii),LGD,606,District,2705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false +LGD,5641,Block,Ernad,LGD,562,District,5641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +LGD,5753,Block,Erode,LGD,573,District,5753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,2938,Block,Ersama,LGD,355,District,2938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +LGD,1008,Block,Etah,LGD,138,District,1008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +LGD,1719,Block,Etalin,LGD,230,District,1719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false +LGD,4060,Block,Etapalli,LGD,475,District,4060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,838,Block,Etawah,LGD,139,District,838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +LGD,4806,Block,Etcherla,LGD,519,District,4806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,765,Block,Etmadpur,LGD,118,District,765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +LGD,5863,Block,Ettayapuram,LGD,594,District,5863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,4685,Block,Eturunagaram,LGD,720,District,4685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,7558,Block,Fagvel,LGD,450,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,905,Block,Faizabad,LGD,140,District,905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +LGD,2175,Block,Falakata,LGD,664,District,2175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +LGD,1142,Block,Falka,LGD,201,District,1142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,2425,Block,Falta,LGD,304,District,2425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2223,Block,Farakka,LGD,319,District,2223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,425,Block,Faridabad,LGD,60,District,425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +LGD,242,Block,Faridkot,LGD,29,District,242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +LGD,789,Block,Faridpur,LGD,130,District,789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +LGD,4559,Block,Farooqnagar,LGD,518,District,4559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,832,Block,Farrukhabad,LGD,141,District,832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +LGD,418,Block,Farrukhnagar,LGD,62,District,418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,3261,Block,Farsabahar,LGD,380,District,3261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,769,Block,Fatehabad,LGD,118,District,769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +LGD,388,Block,Fatehabad,LGD,61,District,388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +LGD,576,Block,Fatehgarh,LGD,103,District,576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +LGD,7191,Block,Fatehgarh Churian,LGD,32,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +LGD,221,Block,Fatehgarh Sahib,LGD,30,District,221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +LGD,95,Block,Fatehpur,LGD,18,District,95,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,878,Block,Fatehpur,LGD,142,District,878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +LGD,2680,Block,Fatehpur,LGD,333,District,2680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false +LGD,551,Block,Fatehpur,LGD,114,District,551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,1508,Block,Fatehpur,LGD,196,District,1508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,896,Block,Fatehpur,LGD,129,District,896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +LGD,369,Block,Fatehpur Pundri,LGD,66,District,369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +LGD,3890,Block,Fatepura,LGD,445,District,3890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,1411,Block,Fatwah,LGD,212,District,1411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,237,Block,Fazilka,LGD,651,District,237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +LGD,423,Block,Ferozepur Jhirka,LGD,604,District,423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +LGD,5922,Block,Ferrargunj,LGD,602,District,5922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +LGD,7343,Block,Fingeshwar,LGD,645,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +LGD,772,Block,Firozabad,LGD,143,District,772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +LGD,235,Block,Firozpur,LGD,31,District,235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +LGD,1113,Block,Forbesganj,LGD,188,District,1113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,6780,Block,Frisal,LGD,622,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +LGD,753,Block,Gabhana,LGD,119,District,753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +LGD,5470,Block,Gadag,LGD,537,District,5470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +LGD,350,Block,Gadarpur,LGD,56,District,350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,3635,Block,Gadarwara,LGD,418,District,3635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +LGD,4057,Block,Gadchiroli,LGD,475,District,4057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,5006,Block,Gaddamanugu Konduru,LGD,749,District,5006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3852,Block,Gadhada,LGD,676,District,3852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +LGD,4293,Block,Gadhinglaj,LGD,480,District,4293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,6225,Block,Gadiguda,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,7273,Block,Gadiras,LGD,642,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +LGD,5281,Block,Gadivemula,LGD,755,District,5281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6906,Block,Gadraroad,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,4603,Block,Gadwal,LGD,695,District,4603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,4288,Block,Gaganbawada,LGD,480,District,4288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,6893,Block,Gagret,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,1209,Block,Gaighat,LGD,208,District,1209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,2318,Block,Gaighata,LGD,303,District,2318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,3591,Block,Gairatganj,LGD,421,District,3591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,289,Block,Gairsain,LGD,47,District,289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,2759,Block,Gaisilet,LGD,347,District,2759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,6372,Block,Gaja,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,4825,Block,Gajapathinagaram,LGD,521,District,4825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,7082,Block,Gajendragad,LGD,537,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +LGD,7376,Block,Gajsinghpur,LGD,100,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,4869,Block,Gajuwaka,LGD,520,District,4869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,4483,Block,Gajwel,LGD,692,District,4483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,5235,Block,Galiveedu,LGD,753,District,5235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6060,Block,Galiyakot,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,142,Block,Galore,LGD,17,District,142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,2287,Block,Galsi - I,LGD,306,District,2287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2288,Block,Galsi - II,LGD,306,District,2288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,6025,Block,Galteshwar,LGD,450,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,1968,Block,Gambegre,LGD,278,District,1968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +LGD,4433,Block,Gambhiraopet,LGD,683,District,4433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,1158,Block,Gamharia,LGD,205,District,1158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,4996,Block,Gampalagudem,LGD,749,District,4996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7138,Block,Gamri Ahara,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,6336,Block,Ganai Gangoli,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,4974,Block,Ganapavaram,LGD,523,District,4974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,379,Block,Ganaur,LGD,75,District,379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +LGD,7264,Block,Gandai,LGD,759,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,5820,Block,Gandarvakkottai,LGD,582,District,5820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,4538,Block,Gandeed,LGD,512,District,4538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,4904,Block,Gandepalli,LGD,746,District,4904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,47,Block,Ganderbal,LGD,626,District,47,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +LGD,3924,Block,Gandevi,LGD,453,District,3924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +LGD,2538,Block,Gandey,LGD,329,District,2538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,4382,Block,Gandhari,LGD,685,District,4382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,3731,Block,Gandhidham,LGD,449,District,3731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,3775,Block,Gandhinagar,LGD,446,District,3775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +LGD,439,Block,Gandhi Nagar,LGD,78,District,439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false +LGD,3535,Block,Gandhwani,LGD,403,District,3535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,2991,Block,Gandia,LGD,352,District,2991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +LGD,6316,Block,Gandimaisamma Dundigal,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,6320,Block,Gandipet,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,5342,Block,Gandlapenta,LGD,754,District,5342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4422,Block,Gangadhara,LGD,508,District,4422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,5420,Block,Gangadhara Nellore,LGD,503,District,5420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,6610,Block,Gangadtalai,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,2358,Block,Gangajalghati,LGD,305,District,2358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,4122,Block,Gangakhed,LGD,489,District,4122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,7263,Block,Gangaloor,LGD,636,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +LGD,458,Block,Ganganagar,LGD,100,District,458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,526,Block,Gangapur,LGD,113,District,526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,4140,Block,Gangapur,LGD,469,District,4140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,6253,Block,Gangaram,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,2201,Block,Gangarampur,LGD,310,District,2201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +LGD,6921,Block,Gangath,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,5744,Block,Gangavalli,LGD,584,District,5744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,4894,Block,Gangavaram,LGD,791,District,4894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5417,Block,Gangavaram,LGD,503,District,5417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5466,Block,Gangawati,LGD,543,District,5466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +LGD,684,Block,Gangdhar,LGD,105,District,684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,319,Block,Gangolihat,LGD,53,District,319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,656,Block,Gangrar,LGD,95,District,656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,1710,Block,Gangte Circle,LGD,677,District,1710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false +LGD,1553,Block,Gangtok,LGD,225,District,1553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +LGD,4797,Block,Ganguvarisigadam,LGD,519,District,4797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,3022,Block,Gania,LGD,367,District,3022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +LGD,3086,Block,Ganjam,LGD,354,District,3086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,5012,Block,Gannavaram,LGD,510,District,5012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,6232,Block,Ganneruvaram,LGD,508,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,6611,Block,Ganora,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,4830,Block,Gantyada,LGD,521,District,4830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,4801,Block,Gara,LGD,519,District,4801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,7499,Block,Garadpur,LGD,360,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,857,Block,Garautha,LGD,153,District,857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +LGD,3894,Block,Garbada,LGD,445,District,3894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,2444,Block,Garbeta - I,LGD,318,District,2444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,2443,Block,Garbeta - II,LGD,318,District,2443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,2445,Block,Garbeta - III,LGD,318,District,2445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,3450,Block,Garhakota,LGD,425,District,3450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,1431,Block,Garhani,LGD,193,District,1431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,6392,Block,Garhbor,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,651,Block,Garhi,LGD,88,District,651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,741,Block,Garhmukteshwar,LGD,661,District,741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false +LGD,1306,Block,Garhpura,LGD,191,District,1306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,217,Block,Garhshankar,LGD,33,District,217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +LGD,2509,Block,Garhwa,LGD,328,District,2509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,3857,Block,Gariadhar,LGD,443,District,3857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,4666,Block,Garidepally,LGD,696,District,4666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,4826,Block,Garividi,LGD,521,District,4826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,3335,Block,Gariyaband,LGD,645,District,3335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +LGD,1265,Block,Garkha,LGD,218,District,1265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,4743,Block,Garla,LGD,688,District,4743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,5324,Block,Garladinne,LGD,502,District,5324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,3494,Block,Garoth,LGD,416,District,3494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,2638,Block,Garu,LGD,335,District,2638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,324,Block,Garud,LGD,46,District,324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +LGD,6029,Block,Garudeshwar,LGD,452,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +LGD,4811,Block,Garugubilli,LGD,743,District,4811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1976,Block,Gasuapara,LGD,277,District,1976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +LGD,7526,Block,Gattuppal,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,1015,Block,Gaunaha,LGD,211,District,1015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,6416,Block,Gaunchi St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +LGD,5595,Block,Gauribidanur,LGD,630,District,5595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +LGD,913,Block,Gauriganj,LGD,640,District,913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +LGD,3424,Block,Gaurihar,LGD,398,District,3424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,7115,Block,Gauripur,LGD,285,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +LGD,743,Block,Gautam Buddha Nagar,LGD,144,District,743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +LGD,2532,Block,Gawan,LGD,329,District,2532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,1495,Block,Gaya Town C.D.Block,LGD,196,District,1495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,2214,Block,Gazole,LGD,316,District,2214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,4707,Block,Geesugonda,LGD,522,District,4707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,1665,Block,Geku Eac,LGD,240,District,1665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,1661,Block,Gelling Circle,LGD,240,District,1661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,1638,Block,Gensi Eac,LGD,719,District,1638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false +LGD,4218,Block,Georai,LGD,470,District,4218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,6559,Block,Gepen Circle,LGD,718,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false +LGD,6343,Block,Ghaat,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,2707,Block,Ghaghra,LGD,331,District,2707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,6721,Block,Ghagwal,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +LGD,1160,Block,Ghailarh,LGD,205,District,1160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,6888,Block,Ghanari,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,943,Block,Ghanghata,LGD,178,District,943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +LGD,4585,Block,Ghanpur,LGD,693,District,4585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,4683,Block,Ghanpur (Mulug),LGD,687,District,4683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,4676,Block,Ghanpur (Station),LGD,689,District,4676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,293,Block,Ghansali,LGD,55,District,293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,3661,Block,Ghansaur,LGD,428,District,3661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,4130,Block,Ghansawangi,LGD,479,District,4130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +LGD,1194,Block,Ghanshyampur,LGD,195,District,1194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,5033,Block,Ghantasala,LGD,510,District,5033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,7221,Block,Ghantiyali,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,374,Block,Gharaunda,LGD,67,District,374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +LGD,3265,Block,Gharghoda,LGD,386,District,3265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,463,Block,Gharsana,LGD,100,District,463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,7377,Block,Ghasa,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,2853,Block,Ghasipura,LGD,361,District,2853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,2448,Block,Ghatal,LGD,318,District,2448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,850,Block,Ghatampur,LGD,157,District,850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +LGD,4089,Block,Ghatanji,LGD,500,District,4089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,2850,Block,Ghatgaon,LGD,361,District,2850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,1776,Block,Ghathashi,LGD,251,District,1776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,7026,Block,Ghatigaon,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,3511,Block,Ghatiya,LGD,435,District,3511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,4523,Block,Ghatkesar,LGD,700,District,4523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,1375,Block,Ghat Kusumbha,LGD,219,District,1375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false +LGD,6513,Block,Ghatlodiya,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,650,Block,Ghatol,LGD,88,District,650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,2607,Block,Ghatshila,LGD,327,District,2607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,4605,Block,Ghattu,LGD,695,District,4605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,739,Block,Ghaziabad,LGD,145,District,739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +LGD,989,Block,Ghazipur,LGD,146,District,989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +LGD,6873,Block,Ghiror,LGD,166,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +LGD,3602,Block,Ghoda Dongri,LGD,394,District,3602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,3855,Block,Ghogha,LGD,443,District,3855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,3887,Block,Ghoghamba,LGD,454,District,3887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +LGD,1098,Block,Ghoghardiha,LGD,206,District,1098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,2138,Block,Ghograpar (Pt),LGD,298,District,2138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +LGD,1038,Block,Ghorasahan,LGD,213,District,1038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1004,Block,Ghorawal,LGD,184,District,1004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +LGD,1539,Block,Ghoshi,LGD,199,District,1539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +LGD,971,Block,Ghosi,LGD,168,District,971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +LGD,1419,Block,Ghoswari,LGD,212,District,1419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,3644,Block,Ghughari,LGD,415,District,3644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +LGD,152,Block,Ghumarwin,LGD,15,District,152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +LGD,7352,Block,Ghumka,LGD,388,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +LGD,7490,Block,Ghumusar,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,3432,Block,Ghuwara,LGD,398,District,3432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,1613,Block,Giba Circle,LGD,241,District,1613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,6907,Block,Gida,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3370,Block,Gidam,LGD,376,District,3370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +LGD,5133,Block,Giddalur,LGD,790,District,5133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,240,Block,Gidderbaha,LGD,39,District,240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +LGD,1531,Block,Gidhaur,LGD,198,District,1531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,2522,Block,Gidhaur,LGD,323,District,2522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,5728,Block,Gingee,LGD,596,District,5728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,3399,Block,Gird,LGD,407,District,3399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,6199,Block,Gir Gadhda,LGD,675,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +LGD,1396,Block,Giriak,LGD,209,District,1396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,2539,Block,Giridih,LGD,329,District,2539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,689,Block,Girwa,LGD,117,District,689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,6551,Block,Gite Ripa Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,4848,Block,G.Madugula,LGD,745,District,4848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2193,Block,Goalpokher - I,LGD,311,District,2193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,2194,Block,Goalpokher - II,LGD,311,District,2194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,5751,Block,Gobichettipalayam,LGD,573,District,5751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,2583,Block,Gobindpur,LGD,325,District,2583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,1518,Block,Gobindpur,LGD,210,District,1518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,2754,Block,Gobindpur(Rajnagar),LGD,341,District,2754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,7259,Block,Gobra Nawapara,LGD,387,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +LGD,2561,Block,Godda,LGD,330,District,2561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,7546,Block,Godhar,LGD,669,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +LGD,7598,Block,Godharacity,LGD,454,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +LGD,3885,Block,Godhra,LGD,454,District,3885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +LGD,2058,Block,Gogamukh,LGD,284,District,2058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +LGD,3551,Block,Gogaon,LGD,414,District,3551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,2338,Block,Goghat - I,LGD,312,District,2338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,2339,Block,Goghat - II,LGD,312,District,2339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,1327,Block,Gogri,LGD,202,District,1327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +LGD,686,Block,Gogunda,LGD,117,District,686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,1478,Block,Goh,LGD,189,District,1478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,3395,Block,Gohad,LGD,395,District,3395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,378,Block,Gohana,LGD,75,District,378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +LGD,3593,Block,Goharganj,LGD,421,District,3593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,6979,Block,Gohparu,LGD,429,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +LGD,2047,Block,Gohpur,LGD,705,District,2047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +LGD,1738,Block,Goiliang Circle,LGD,628,District,1738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +LGD,2733,Block,Goilkera,LGD,343,District,2733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,5436,Block,Gokak,LGD,527,District,5436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,7584,Block,Gokalpur,LGD,81,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false +LGD,4897,Block,Gokavaram,LGD,505,District,4897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,954,Block,Gola,LGD,148,District,954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +LGD,2665,Block,Gola,LGD,607,District,2665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +LGD,2085,Block,Golaghat,LGD,288,District,2085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +LGD,799,Block,Gola Gokaran Nath,LGD,159,District,799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +LGD,6015,Block,Golakganj Pt,LGD,285,District,2007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +LGD,3167,Block,Golamunda,LGD,358,District,3167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,4507,Block,Golconda,LGD,507,District,4507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,4412,Block,Gollapalli,LGD,681,District,4412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,4902,Block,Gollaprolu,LGD,746,District,4902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2606,Block,Golmuri-Cum-Jugsalai,LGD,327,District,2606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,4853,Block,Golugonda,LGD,744,District,4853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2591,Block,Gomia,LGD,322,District,2591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,928,Block,Gonda,LGD,147,District,928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +LGD,3807,Block,Gondal,LGD,457,District,3807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,7439,Block,Gondal City,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,6686,Block,Gonda Twisa,LGD,269,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +LGD,4046,Block,Gondiya,LGD,476,District,4046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +LGD,4078,Block,Gondpipri,LGD,473,District,4078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,5270,Block,Gonegandla,LGD,511,District,5270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,6763,Block,Gool,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +LGD,5310,Block,Gooty,LGD,502,District,5310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,3062,Block,Gop,LGD,369,District,3062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,7480,Block,Gopabandhunagar,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,3699,Block,Gopadbanas,LGD,433,District,3699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +LGD,6838,Block,Gopalapatnam,LGD,520,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,4951,Block,Gopalapuram,LGD,505,District,4951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,1224,Block,Gopalganj,LGD,197,District,1224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,4596,Block,Gopalpeta,LGD,693,District,4596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,1334,Block,Gopalpur,LGD,192,District,1334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,5211,Block,Gopavaram,LGD,504,District,5211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,2457,Block,Gopiballavpur - I,LGD,703,District,2457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +LGD,2456,Block,Gopiballavpur - II,LGD,703,District,2456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +LGD,2669,Block,Gopikandar,LGD,326,District,2669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,1196,Block,Gora Bauram,LGD,195,District,1196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,1342,Block,Goradih,LGD,192,District,1342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,7011,Block,Gorakhpur,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,950,Block,Gorakhpur,LGD,148,District,950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +LGD,5362,Block,Gorantla,LGD,754,District,5362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1272,Block,Goraul,LGD,224,District,1272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,4045,Block,Goregaon,LGD,476,District,4045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +LGD,2141,Block,Goreswar,LGD,756,District,2141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +LGD,1232,Block,Goriakothi,LGD,222,District,1232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,6471,Block,Goriwala St,LGD,74,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +LGD,3394,Block,Gormi,LGD,395,District,3394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,2121,Block,Goroimari,LGD,291,District,2121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,2158,Block,Gorubathan,LGD,702,District,2158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +LGD,2435,Block,Gosaba,LGD,304,District,2435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,5287,Block,Gospadu,LGD,755,District,5287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2001,Block,Gossaigaon,LGD,294,District,2001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +LGD,3634,Block,Gotegaon,LGD,418,District,3634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +LGD,6832,Block,Govardhan,LGD,167,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +LGD,4688,Block,Govindaraopet,LGD,720,District,4688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,6383,Block,Govindgarh,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,7554,Block,Govindguru Limdi,LGD,445,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,5918,Block,Great Nicobar,LGD,603,District,5918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false +LGD,5538,Block,Gubbi,LGD,548,District,5538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,5755,Block,Gudalur,LGD,587,District,5755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +LGD,3184,Block,Gudari,LGD,370,District,3184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,3114,Block,G.Udayagiri,LGD,359,District,3114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,4850,Block,Gudem Kotha Veedhi,LGD,745,District,4850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7144,Block,Gudhagorji,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,581,Block,Gudha Malani,LGD,775,District,581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5597,Block,Gudibanda,LGD,630,District,5597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +LGD,5352,Block,Gudibanda,LGD,754,District,5352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4310,Block,Gudihatnoor,LGD,501,District,4310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,5431,Block,Gudipala,LGD,503,District,5431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,7527,Block,Gudipally,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,5021,Block,Gudivada,LGD,510,District,5021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,5712,Block,Gudiyatham,LGD,595,District,5712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +LGD,5029,Block,Gudlavalleru,LGD,510,District,5029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,5151,Block,Gudluru,LGD,517,District,5151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,2729,Block,Gudri,LGD,343,District,2729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,5426,Block,Gudupalle,LGD,503,District,5426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,4711,Block,Gudur,LGD,688,District,4711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,5184,Block,Gudur,LGD,515,District,5184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5257,Block,Gudur,LGD,511,District,5257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5031,Block,Guduru,LGD,510,District,5031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,4270,Block,Guhagar,LGD,492,District,4270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,367,Block,Guhla,LGD,66,District,367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +LGD,7169,Block,Guindy,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,6700,Block,Gujiliamparai,LGD,572,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,3578,Block,Gulabganj,LGD,437,District,3578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,3520,Block,Gulana,LGD,430,District,3520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +LGD,7061,Block,Guledgudda,LGD,524,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,2712,Block,Gumla,LGD,331,District,2712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,7505,Block,Gumma,LGD,353,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +LGD,6277,Block,Gummadidala,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,5319,Block,Gummagatta,LGD,502,District,5319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,4808,Block,Gummalakshmipuram,LGD,743,District,4808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5693,Block,Gummidipoondi,LGD,589,District,5693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,6602,Block,Gumto Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,3677,Block,Guna,LGD,406,District,3677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +LGD,6609,Block,Guna Nagar,LGD,406,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +LGD,6806,Block,Gund,LGD,626,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +LGD,4618,Block,Gundala,LGD,697,District,4618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,4741,Block,Gundala,LGD,690,District,4741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,3319,Block,Gunderdehi,LGD,646,District,3319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +LGD,4651,Block,Gundlapally,LGD,514,District,4651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,5576,Block,Gundlupet,LGD,531,District,5576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +LGD,6749,Block,Gundna,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,7523,Block,Gundumal,LGD,721,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,778,Block,Gunnaur,LGD,659,District,778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +LGD,3438,Block,Gunnor,LGD,420,District,3438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,5309,Block,Guntakal,LGD,502,District,5309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,6833,Block,Guntur East,LGD,506,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,5074,Block,Guntur West,LGD,506,District,5074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,3183,Block,Gunupur,LGD,370,District,3183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,5044,Block,Gurajala,LGD,751,District,5044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1497,Block,Guraru,LGD,196,District,1497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,2612,Block,Gurbandha,LGD,327,District,2612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,202,Block,Gurdaspur,LGD,32,District,202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +LGD,40,Block,Gurez,LGD,623,District,40,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +LGD,417,Block,Gurgaon,LGD,62,District,417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,3481,Block,Gurh,LGD,424,District,3481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,4828,Block,Gurla,LGD,521,District,4828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,7094,Block,Gurmitakal,LGD,635,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +LGD,5370,Block,Gurramkonda,LGD,753,District,5370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4657,Block,Gurrampode,LGD,514,District,4657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,7562,Block,Gurthedu,LGD,791,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1498,Block,Gurua,LGD,196,District,1498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,6011,Block,Guruharsahai,LGD,31,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +LGD,2828,Block,Gurundia,LGD,373,District,2828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,3323,Block,Gurur,LGD,646,District,3323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +LGD,1241,Block,Guthani,LGD,222,District,1241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,2128,Block,Guwahati,LGD,618,District,2128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +LGD,7395,Block,Gwalior Gramin,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,1165,Block,Gwalpara,LGD,205,District,1165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,1549,Block,Gyalshing,LGD,228,District,1549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false +LGD,998,Block,Gyanpur,LGD,179,District,998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +LGD,3577,Block,Gyaraspur,LGD,437,District,3577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,1588,Block,Gyawe Purang Circle,LGD,231,District,1588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,2216,Block,Habibpur,LGD,316,District,2216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,2320,Block,Habra - I,LGD,303,District,2320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,2321,Block,Habra - II,LGD,303,District,2321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,7555,Block,Hadad,LGD,441,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,5496,Block,Hadagalli,LGD,738,District,5496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +LGD,7378,Block,Hadan,LGD,93,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,4098,Block,Hadgaon,LGD,485,District,4098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,2093,Block,Haflong,LGD,299,District,2093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +LGD,5497,Block,Hagaribommanahalli,LGD,738,District,5497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +LGD,901,Block,Haidergarh,LGD,129,District,901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +LGD,2616,Block,Haidernagar,LGD,338,District,2616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,2107,Block,Hailakandi,LGD,289,District,2107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +LGD,6811,Block,Hajin,LGD,623,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +LGD,6227,Block,Hajipur,LGD,684,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,1278,Block,Hajipur,LGD,224,District,1278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,2119,Block,Hajo,LGD,291,District,2119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,5273,Block,Halaharvi,LGD,511,District,5273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,2483,Block,Haldia,LGD,317,District,2483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2179,Block,Haldibari,LGD,308,District,2179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,342,Block,Haldwani,LGD,51,District,342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,5480,Block,Haliyal,LGD,550,District,5480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,3888,Block,Halol,LGD,454,District,3888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +LGD,1371,Block,Halsi,LGD,204,District,1371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +LGD,3788,Block,Halvad,LGD,673,District,3788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +LGD,6068,Block,Hameergarh,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,143,Block,Hamirpur,LGD,17,District,143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,864,Block,Hamirpur,LGD,149,District,864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +LGD,4695,Block,Hanamkonda,LGD,686,District,4695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,893,Block,Handia,LGD,120,District,893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +LGD,3609,Block,Handiya,LGD,408,District,3609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +LGD,2,Block,Handwara,LGD,8,District,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,5491,Block,Hangal,LGD,540,District,5491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +LGD,194,Block,Hangrang,LGD,19,District,194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +LGD,396,Block,Hansi,LGD,792,District,396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +LGD,2310,Block,Hanskhali,LGD,320,District,2310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,3919,Block,Hansot,LGD,442,District,3919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,3476,Block,Hanumana,LGD,766,District,3476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,468,Block,Hanumangarh,LGD,101,District,468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +LGD,1190,Block,Hanumannagar,LGD,195,District,1190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,5130,Block,Hanumanthuni Padu,LGD,790,District,5130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7077,Block,Hanur,LGD,531,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +LGD,4555,Block,Hanwada,LGD,512,District,4555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,6039,Block,Haochong,LGD,714,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false +LGD,740,Block,Hapur,LGD,661,District,740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false +LGD,3132,Block,Harabhanga,LGD,349,District,3132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +LGD,5510,Block,Harapanahalli,LGD,738,District,5510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +LGD,97,Block,Harchakian,LGD,18,District,97,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,3608,Block,Harda,LGD,408,District,3608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +LGD,7271,Block,Hardibazar,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,811,Block,Hardoi,LGD,150,District,811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +LGD,354,Block,Hardwar,LGD,50,District,354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +LGD,2851,Block,Harichandanpur,LGD,361,District,2851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,5509,Block,Harihar,LGD,535,District,5509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +LGD,2618,Block,Hariharganj,LGD,338,District,2618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,2242,Block,Hariharpara,LGD,319,District,2242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,3748,Block,Harij,LGD,455,District,3748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,2315,Block,Haringhata,LGD,320,District,2315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,2348,Block,Haripal,LGD,312,District,2348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,6920,Block,Haripur,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,6953,Block,Haripurdhar,LGD,24,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,2207,Block,Harirampur,LGD,310,District,2207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +LGD,2208,Block,Harischandrapur - I,LGD,316,District,2208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,2209,Block,Harischandrapur - II,LGD,316,District,2209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,2151,Block,Harisinga,LGD,617,District,2151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +LGD,1081,Block,Harlakhi,LGD,206,District,1081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,6800,Block,Harmain,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false +LGD,1380,Block,Harnaut,LGD,209,District,1380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,2331,Block,Haroa,LGD,303,District,2331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,7196,Block,Harohalli,LGD,631,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +LGD,151,Block,Haroli,LGD,26,District,151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,3649,Block,Harrai,LGD,399,District,3649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,938,Block,Harraiya,LGD,131,District,938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +LGD,6423,Block,Harsaru St,LGD,62,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,1043,Block,Harsidhi,LGD,213,District,1043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,7208,Block,Harsoli,LGD,770,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3714,Block,Harsud,LGD,405,District,3714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,5886,Block,Harur,LGD,571,District,5886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +LGD,1144,Block,Hasanganj,LGD,201,District,1144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,815,Block,Hasanganj,LGD,186,District,815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +LGD,4678,Block,Hasanparthy,LGD,686,District,4678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,1302,Block,Hasanpur,LGD,217,District,1302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,731,Block,Hasanpur,LGD,154,District,731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +LGD,1245,Block,Hasanpura,LGD,222,District,1245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,2336,Block,Hasnabad,LGD,303,District,2336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,7327,Block,Hasoud,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,1477,Block,Haspura,LGD,189,District,1477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,5556,Block,Hassan,LGD,539,District,5556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +LGD,6478,Block,Hassanpur St,LGD,619,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +LGD,956,Block,Hata,LGD,160,District,956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +LGD,7494,Block,Hatadihi,LGD,361,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,2738,Block,Hat Gamharia,LGD,343,District,2738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,428,Block,Hathin,LGD,619,District,428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +LGD,4489,Block,Hathnoora,LGD,691,District,4489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,759,Block,Hathras,LGD,163,District,759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +LGD,1221,Block,Hathua,LGD,197,District,1221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,4285,Block,Hatkanangle,LGD,480,District,4285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,3541,Block,Hatod,LGD,410,District,3541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,3530,Block,Hatpiplya,LGD,402,District,3530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,3454,Block,Hatta,LGD,400,District,3454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +LGD,4193,Block,Haveli,LGD,490,District,4193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,16,Block,Haveli,LGD,10,District,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +LGD,6270,Block,Havelighanapur,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,5492,Block,Haveri,LGD,540,District,5492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +LGD,1743,Block,Hawai Hq,LGD,628,District,1743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +LGD,1191,Block,Hayaghat,LGD,195,District,1191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,4525,Block,Hayathnagar,LGD,518,District,4525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,1736,Block,Hayuliang Adc,LGD,628,District,1736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +LGD,2653,Block,Hazaribag,LGD,332,District,2653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,7065,Block,Hebri,LGD,549,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +LGD,5573,Block,Heggadadevankote,LGD,545,District,5573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,2046,Block,Helem,LGD,705,District,2046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +LGD,2804,Block,Hemgir,LGD,373,District,2804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,2197,Block,Hemtabad,LGD,311,District,2197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,6502,Block,Henglep,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,2642,Block,Herhanj,LGD,335,District,2642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,2203,Block,Hilli,LGD,310,District,2203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +LGD,1390,Block,Hilsa,LGD,209,District,1390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,3766,Block,Himatnagar,LGD,458,District,3766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +LGD,4503,Block,Himayatnagar,LGD,507,District,4503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,4097,Block,Himayatnagar,LGD,485,District,4097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,522,Block,Hindaun,LGD,108,District,522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,2997,Block,Hindol,LGD,352,District,2997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +LGD,622,Block,Hindoli,LGD,94,District,622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +LGD,5364,Block,Hindupur,LGD,754,District,5364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2337,Block,Hingalganj,LGD,303,District,2337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,4021,Block,Hinganghat,LGD,498,District,4021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +LGD,4033,Block,Hingna,LGD,484,District,4033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,4112,Block,Hingoli,LGD,477,District,4112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +LGD,3090,Block,Hinjili,LGD,354,District,3090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,4783,Block,Hiramandalam,LGD,519,District,4783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,31,Block,Hiranagar,LGD,7,District,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,2575,Block,Hiranpur,LGD,337,District,2575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +LGD,2374,Block,Hirbandh,LGD,305,District,2374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,5494,Block,Hirekerur,LGD,540,District,5494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +LGD,5508,Block,Hiriyur,LGD,533,District,5508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +LGD,394,Block,Hisar,LGD,63,District,394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +LGD,1520,Block,Hisua,LGD,210,District,1520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,1915,Block,Hnahthial,LGD,726,District,1915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +LGD,429,Block,Hodal,LGD,619,District,429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +LGD,2038,Block,Hojai,LGD,709,District,2038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +LGD,5272,Block,Holagunda,LGD,511,District,5272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5506,Block,Holalkere,LGD,533,District,5506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +LGD,5559,Block,Hole Narsipur,LGD,539,District,5559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +LGD,91,Block,Holi,LGD,16,District,91,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,5458,Block,Homnabad,LGD,529,District,5458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +LGD,5487,Block,Honavar,LGD,550,District,5487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,5513,Block,Honnali,LGD,535,District,5513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +LGD,5604,Block,Hosakote,LGD,526,District,5604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +LGD,5518,Block,Hosanagara,LGD,547,District,5518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +LGD,5498,Block,Hosapete,LGD,738,District,5498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +LGD,5631,Block,Hosdurg,LGD,558,District,5631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +LGD,5507,Block,Hosdurga,LGD,533,District,5507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +LGD,3614,Block,Hoshangabad,LGD,409,District,3614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,7045,Block,Hoshangabad Nagar,LGD,409,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,216,Block,Hoshiarpur,LGD,33,District,216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +LGD,5890,Block,Hosur,LGD,577,District,5890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +LGD,5475,Block,Hubballi,LGD,536,District,5475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +LGD,7079,Block,Hubballi Urban,LGD,536,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +LGD,5437,Block,Hukkeri,LGD,527,District,5437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,4846,Block,Hukumpeta,LGD,745,District,4846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1541,Block,Hulasganj,LGD,199,District,1541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +LGD,7086,Block,Hulsoor,LGD,529,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +LGD,7096,Block,Hunasagi,LGD,635,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +LGD,5448,Block,Hungund,LGD,524,District,5448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,6075,Block,Hunli Sdo,LGD,235,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false +LGD,5570,Block,Hunsur,LGD,545,District,5570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,1746,Block,Hunta,LGD,247,District,1746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,2386,Block,Hura,LGD,321,District,2386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,628,Block,Hurda,LGD,92,District,628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,4444,Block,Husnabad,LGD,692,District,4444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,2615,Block,Hussainabad,LGD,338,District,2615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,1238,Block,Hussainganj,LGD,222,District,1238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,3479,Block,Huzur,LGD,424,District,3479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,3581,Block,Huzur,LGD,396,District,3581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +LGD,4446,Block,Huzurabad,LGD,508,District,4446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,4669,Block,Huzurnagar,LGD,696,District,4669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,7041,Block,Huzur Nagar,LGD,424,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,4546,Block,Ibrahimpatnam,LGD,518,District,4546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,4393,Block,Ibrahimpatnam,LGD,681,District,4393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,5009,Block,Ibrahimpatnam,LGD,749,District,5009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2749,Block,Ichagarh,LGD,341,District,2749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,2647,Block,Ichak,LGD,332,District,2647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,4778,Block,Ichchapuram,LGD,519,District,4778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,3586,Block,Ichhawar,LGD,427,District,3586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,4322,Block,Ichoda,LGD,501,District,4322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,3763,Block,Idar,LGD,458,District,3763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +LGD,5942,Block,Idukki,LGD,556,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +LGD,4606,Block,Ieeja,LGD,695,District,4606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,4153,Block,Igatpuri,LGD,487,District,4153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,756,Block,Iglas,LGD,119,District,756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +LGD,924,Block,Ikauna,LGD,181,District,924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false +LGD,5834,Block,Ilayangudi,LGD,585,District,5834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,7062,Block,Ilkal,LGD,524,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,2265,Block,Illambazar,LGD,307,District,2265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,4436,Block,Illanthakunta,LGD,683,District,4436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,5818,Block,Iluppur,LGD,582,District,5818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,1501,Block,Imamganj,LGD,196,District,1501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,6249,Block,Inavole,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,6236,Block,Indalwai,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,4200,Block,Indapur,LGD,490,District,4200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,4311,Block,Inderavelly,LGD,501,District,4311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,3404,Block,Indergarh,LGD,401,District,3404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +LGD,5450,Block,Indi,LGD,530,District,5450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,94,Block,Indora,LGD,18,District,94,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,2360,Block,Indpur,LGD,305,District,2360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,624,Block,Indragarh,LGD,94,District,624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +LGD,371,Block,Indri,LGD,67,District,371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +LGD,7172,Block,Indri,LGD,604,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +LGD,5179,Block,Indukurpet,LGD,515,District,5179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,2366,Block,Indus,LGD,305,District,2366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,5110,Block,Inkollu,LGD,750,District,5110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7538,Block,Inugurthy,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,4931,Block,I. Polavaram,LGD,747,District,4931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5065,Block,Ipuru,LGD,751,District,5065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4979,Block,Iragavaram,LGD,523,District,4979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,5411,Block,Irala,LGD,503,District,5411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5937,Block,Iritty,LGD,557,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +LGD,3684,Block,Isagarh,LGD,391,District,3684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +LGD,1251,Block,Ishupur,LGD,218,District,1251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,1525,Block,Islamnagar Aliganj,LGD,198,District,1525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,1392,Block,Islampur,LGD,209,District,1392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,2192,Block,Islampur,LGD,311,District,2192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,6487,Block,Island,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,6453,Block,Ismailabad St,LGD,68,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +LGD,1337,Block,Ismailpur,LGD,192,District,1337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,6889,Block,Ispur,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,376,Block,Israna,LGD,71,District,376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +LGD,2199,Block,Itahar,LGD,311,District,2199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,6604,Block,Itanagar Eac,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,1444,Block,Itarhi,LGD,194,District,1444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,3613,Block,Itarsi,LGD,409,District,3613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,4607,Block,Itikyala,LGD,695,District,4607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,2520,Block,Itkhori,LGD,323,District,2520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,2696,Block,Itki,LGD,339,District,2696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,935,Block,Itwa,LGD,182,District,935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +LGD,3631,Block,Jabalpur,LGD,411,District,3631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,3459,Block,Jabera,LGD,400,District,3459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +LGD,4567,Block,Jadcherla,LGD,512,District,4567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,4126,Block,Jafrabad,LGD,479,District,4126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +LGD,3848,Block,Jafrabad,LGD,439,District,3848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,361,Block,Jagadhri,LGD,76,District,361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +LGD,5511,Block,Jagalur,LGD,535,District,5511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +LGD,3073,Block,Jagannath Prasad,LGD,354,District,3073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,2743,Block,Jagannathpur,LGD,343,District,2743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,7356,Block,Jagargunda,LGD,642,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +LGD,2401,Block,Jagatballavpur,LGD,313,District,2401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,2940,Block,Jagatsinghapur,LGD,355,District,2940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +LGD,3360,Block,Jagdalpur,LGD,374,District,3360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,4484,Block,Jagdevpur,LGD,692,District,4484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,1343,Block,Jagdishpur,LGD,192,District,1343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,1428,Block,Jagdishpur,LGD,193,District,1428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,4991,Block,Jaggaiahpeta,LGD,749,District,4991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4898,Block,Jaggampeta,LGD,746,District,4898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4414,Block,Jagitial,LGD,681,District,4414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,6211,Block,Jagitial Rural,LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,230,Block,Jagraon,LGD,36,District,230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +LGD,636,Block,Jahazpur,LGD,92,District,636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,7413,Block,Jahu,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,3286,Block,Jaijaipur,LGD,762,District,3286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,2529,Block,Jainagar,LGD,334,District,2529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +LGD,1083,Block,Jainagar,LGD,206,District,1083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,4307,Block,Jainath,LGD,501,District,4307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,4320,Block,Jainoor,LGD,699,District,4320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,332,Block,Jainti,LGD,45,District,332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,4355,Block,Jaipur,LGD,684,District,4355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,2378,Block,Jaipur,LGD,321,District,2378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,546,Block,Jaipur,LGD,102,District,546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,6582,Block,Jairampur Adc,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,574,Block,Jaisalmer,LGD,103,District,574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +LGD,6984,Block,Jaisinagar,LGD,425,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,3690,Block,Jaisinghnagar,LGD,429,District,3690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +LGD,110,Block,Jaisinghpur,LGD,18,District,110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,916,Block,Jaisinghpur,LGD,185,District,916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +LGD,597,Block,Jaitaran,LGD,774,District,597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3695,Block,Jaithari,LGD,390,District,3695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +LGD,3692,Block,Jaitpur,LGD,429,District,3692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +LGD,243,Block,Jaitu,LGD,29,District,243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +LGD,4623,Block,Jajireddygudem,LGD,696,District,4623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,2977,Block,Jajpur,LGD,356,District,2977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,6438,Block,Jakhal St,LGD,61,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +LGD,1848,Block,Jakhama,LGD,245,District,1848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +LGD,987,Block,Jakhania,LGD,146,District,987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +LGD,296,Block,Jakhani Dhar,LGD,55,District,296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,6373,Block,Jakhanikhal,LGD,52,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,292,Block,Jakholi*,LGD,54,District,292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +LGD,4366,Block,Jakranpally,LGD,516,District,4366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,5157,Block,Jaladanki,LGD,515,District,5157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,2140,Block,Jalah,LGD,616,District,2140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +LGD,236,Block,Jalalabad,LGD,651,District,236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +LGD,796,Block,Jalalabad,LGD,180,District,796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +LGD,1137,Block,Jalalgarh,LGD,214,District,1137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,6340,Block,Jalali,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,3923,Block,Jalalpore,LGD,453,District,3923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +LGD,1256,Block,Jalalpur,LGD,218,District,1256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,909,Block,Jalalpur,LGD,121,District,909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +LGD,212,Block,Jalandhar - I,LGD,34,District,212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +LGD,213,Block,Jalandhar - II,LGD,34,District,213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +LGD,2234,Block,Jalangi,LGD,319,District,2234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,852,Block,Jalaun,LGD,151,District,852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +LGD,2725,Block,Jaldega,LGD,342,District,2725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,1181,Block,Jale,LGD,195,District,1181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,1009,Block,Jalesar,LGD,138,District,1009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +LGD,2890,Block,Jaleswar,LGD,346,District,2890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,3966,Block,Jalgaon,LGD,478,District,3966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,3975,Block,Jalgaon (Jamod),LGD,472,District,3975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,4229,Block,Jalkot,LGD,481,District,4229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,4127,Block,Jalna,LGD,479,District,4127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +LGD,6961,Block,Jalog,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,587,Block,Jalore,LGD,104,District,587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,2178,Block,Jalpaiguri,LGD,314,District,2178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,7379,Block,Jalsu,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,1852,Block,Jalukie,LGD,613,District,1852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +LGD,4792,Block,Jalumuru,LGD,519,District,4792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,2674,Block,Jama,LGD,326,District,2674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,3651,Block,Jamai (Junnardeo),LGD,399,District,3651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,1358,Block,Jamalpur,LGD,207,District,1358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,2295,Block,Jamalpur,LGD,306,District,2295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2792,Block,Jamankira,LGD,371,District,2792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,2455,Block,Jamboni,LGD,703,District,2455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +LGD,3889,Block,Jambughoda,LGD,454,District,3889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +LGD,3913,Block,Jambusar,LGD,442,District,3913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,2860,Block,Jamda,LGD,365,District,2860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,4835,Block,Jami,LGD,521,District,4835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,6563,Block,Jamiri Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,3821,Block,Jamjodhpur,LGD,447,District,3821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +LGD,3808,Block,Jamkandorna,LGD,457,District,3808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,5443,Block,Jamkhandi,LGD,524,District,5443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,4214,Block,Jamkhed,LGD,466,District,4214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,5215,Block,Jammalamadugu,LGD,504,District,5215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4440,Block,Jammikunta,LGD,508,District,4440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,79,Block,Jammu,LGD,5,District,79,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,6708,Block,Jammu North,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,6706,Block,Jammu South,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,6718,Block,Jammu West,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,6525,Block,Jamnagar City,LGD,447,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +LGD,3814,Block,Jamnagar Rural,LGD,447,District,3814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +LGD,3974,Block,Jamner,LGD,478,District,3974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,6677,Block,Jampuijala,LGD,653,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +LGD,2678,Block,Jamtara,LGD,333,District,2678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false +LGD,2536,Block,Jamua,LGD,329,District,2536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,1527,Block,Jamui,LGD,198,District,1527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,6164,Block,Jamunaha,LGD,181,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false +LGD,6631,Block,Jamunamarathoor,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,2270,Block,Jamuria,LGD,704,District,2270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +LGD,548,Block,Jamwaramgarh,LGD,102,District,548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,7590,Block,Janakpuri,LGD,85,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false +LGD,1276,Block,Jandaha,LGD,224,District,1276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,1561,Block,Jang Adc,LGD,238,District,1561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,4953,Block,Jangareddigudem,LGD,748,District,4953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2353,Block,Jangipara,LGD,312,District,2353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,6957,Block,Jangla,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,4699,Block,Jangoan,LGD,689,District,4699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,7572,Block,Jangpura,LGD,670,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false +LGD,3277,Block,Janjgir,LGD,379,District,3277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,4334,Block,Jannaram,LGD,684,District,4334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,7380,Block,Janoothar,LGD,767,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,711,Block,Jansath,LGD,172,District,711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +LGD,4263,Block,Jaoli,LGD,494,District,4263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,3501,Block,Jaora,LGD,423,District,3501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,7311,Block,Jarhagaon,LGD,647,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false +LGD,7283,Block,Jari,LGD,20,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,2594,Block,Jaridih,LGD,322,District,2594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,2667,Block,Jarmundi,LGD,326,District,2667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,3806,Block,Jasdan,LGD,457,District,3806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,2867,Block,Jashipur,LGD,365,District,2867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,3257,Block,Jashpur,LGD,380,District,3257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,347,Block,Jaspur,LGD,56,District,347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,773,Block,Jasrana,LGD,143,District,773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +LGD,7365,Block,Jasrasar,LGD,93,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,105,Block,Jaswan,LGD,18,District,105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,836,Block,Jaswantnagar,LGD,139,District,836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +LGD,6044,Block,Jaswantpura,LGD,104,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,4304,Block,Jat,LGD,493,District,4304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,3049,Block,Jatani,LGD,362,District,3049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,3418,Block,Jatara,LGD,434,District,3418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,984,Block,Jaunpur,LGD,152,District,984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +LGD,3472,Block,Jawa,LGD,424,District,3472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,3487,Block,Jawad,LGD,419,District,3487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +LGD,104,Block,Jawalamukhi,LGD,18,District,104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,96,Block,Jawali,LGD,18,District,96,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,3585,Block,Jawar,LGD,427,District,3585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,4160,Block,Jawhar,LGD,665,District,4160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +LGD,559,Block,Jayal,LGD,110,District,559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,3170,Block,Jayapatna,LGD,358,District,3170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,2431,Block,Jaynagar - I,LGD,304,District,2431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2432,Block,Jaynagar - II,LGD,304,District,2432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2368,Block,Jaypur,LGD,305,District,2368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,4947,Block,Jeelugu Milli,LGD,748,District,4947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3563,Block,Jeerapur,LGD,422,District,3563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,1536,Block,Jehanabad,LGD,199,District,1536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +LGD,1664,Block,Jengging Circle,LGD,240,District,1664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,6203,Block,Jesar,LGD,443,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,6481,Block,Jessami,LGD,260,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false +LGD,3811,Block,Jetpur,LGD,457,District,3811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,7440,Block,Jetpur City,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,3900,Block,Jetpur Pavi,LGD,668,District,3900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +LGD,5586,Block,Jevargi,LGD,538,District,5586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,744,Block,Jewar,LGD,144,District,744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +LGD,3209,Block,Jeypore,LGD,363,District,3209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,3709,Block,Jhabua,LGD,412,District,3709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +LGD,688,Block,Jhadol,LGD,117,District,688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,3917,Block,Jhagadia,LGD,442,District,3917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,1530,Block,Jhajha,LGD,198,District,1530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,409,Block,Jhajjar,LGD,64,District,409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +LGD,2390,Block,Jhalda - I,LGD,321,District,2390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,2391,Block,Jhalda - II,LGD,321,District,2391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,7229,Block,Jhallara,LGD,777,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3891,Block,Jhalod,LGD,445,District,3891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,679,Block,Jhalrapatan,LGD,105,District,679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,154,Block,Jhanduta,LGD,15,District,154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +LGD,1097,Block,Jhanjharpur,LGD,206,District,1097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,860,Block,Jhansi,LGD,153,District,860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +LGD,7220,Block,Jhanwar,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,4476,Block,Jharasangam,LGD,691,District,4476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,2756,Block,Jharbandh,LGD,347,District,2756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,6983,Block,Jharda,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,2454,Block,Jhargram,LGD,703,District,2454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +LGD,2585,Block,Jharia-Cum-Jorapokhar-Cum-Sindri,LGD,325,District,2585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,3191,Block,Jharigan,LGD,366,District,3191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,2776,Block,Jharsuguda,LGD,357,District,2776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +LGD,2742,Block,Jhinkpani,LGD,343,District,2742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,3553,Block,Jhiranya,LGD,414,District,3553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,6070,Block,Jhonthripal,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,2840,Block,Jhumpura,LGD,361,District,2840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,487,Block,Jhunjhunu,LGD,106,District,487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,6346,Block,Jilasu,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,6322,Block,Jilled Chowdergudem,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,383,Block,Jind,LGD,65,District,383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +LGD,4493,Block,Jinnaram,LGD,691,District,4493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,4117,Block,Jintur,LGD,489,District,4117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,3490,Block,Jiran,LGD,419,District,3490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +LGD,1986,Block,Jirang,LGD,276,District,1986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +LGD,6679,Block,Jirania,LGD,272,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +LGD,1883,Block,Jiribam,LGD,713,District,1883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false +LGD,4076,Block,Jiwati,LGD,473,District,4076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,4810,Block,Jiyyammavalasa,LGD,743,District,4810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3712,Block,Jobat,LGD,639,District,3712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +LGD,7141,Block,Jobner,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,570,Block,Jodhpur,LGD,107,District,570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,3815,Block,Jodiya,LGD,447,District,3815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +LGD,1024,Block,Jogapatti,LGD,211,District,1024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,124,Block,Jogindarnagar,LGD,22,District,124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,1120,Block,Jokihat,LGD,188,District,1120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,6890,Block,Jol,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,6606,Block,Jomlo Mobuk Circle,LGD,679,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,2057,Block,Jonai,LGD,284,District,2057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +LGD,2159,Block,Jorebunglow Sukiapokhri,LGD,309,District,2159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,6399,Block,Jorethang,LGD,227,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false +LGD,2078,Block,Jorhat East,LGD,290,District,2078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +LGD,2077,Block,Jorhat West,LGD,290,District,2077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +LGD,284,Block,Joshimath,LGD,47,District,284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,6366,Block,Joshiyara,LGD,57,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,6021,Block,Jotana,LGD,451,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,3388,Block,Joura,LGD,417,District,3388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +LGD,6701,Block,Jourian,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,5111,Block,J.Pangulur,LGD,517,District,5111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,188,Block,Jubbal,LGD,23,District,188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,2794,Block,Jujomura,LGD,371,District,2794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,4373,Block,Jukkal,LGD,685,District,4373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,384,Block,Julana,LGD,65,District,384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +LGD,4409,Block,Julapalli,LGD,682,District,4409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,4746,Block,Julurpadu,LGD,690,District,4746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,3827,Block,Junagadh,LGD,448,District,3827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,6517,Block,Junagadh City,LGD,448,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,3166,Block,Junagarh,LGD,358,District,3166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,183,Block,Junga,LGD,23,District,183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,3543,Block,Juni Indore,LGD,410,District,3543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,4187,Block,Junnar,LGD,490,District,4187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,5262,Block,Jupadu Bunglow,LGD,755,District,5262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7381,Block,Jurhara,LGD,767,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,6401,Block,Kabi,LGD,226,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false +LGD,3080,Block,Kabisuryanagar,LGD,354,District,3080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,7366,Block,Kachhola,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,7104,Block,Kadaba,LGD,534,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,5859,Block,Kadaladi,LGD,583,District,5859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,2051,Block,Kadam,LGD,295,District,2051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +LGD,3880,Block,Kadana,LGD,669,District,3880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +LGD,5230,Block,Kadapa,LGD,504,District,5230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,5772,Block,Kadavur,LGD,576,District,5772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +LGD,6619,Block,Kadayampatti,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,6639,Block,Kadayanallur,LGD,733,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +LGD,4335,Block,Kaddam Peddur,LGD,680,District,4335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,4298,Block,Kadegaon,LGD,493,District,4298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,3759,Block,Kadi,LGD,451,District,3759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,4918,Block,Kadiam,LGD,505,District,4918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,918,Block,Kadipur,LGD,185,District,918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +LGD,6422,Block,Kadipur St,LGD,62,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,5343,Block,Kadiri,LGD,754,District,5343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5624,Block,Kadmat,LGD,553,District,5624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,6324,Block,Kadthal,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,5529,Block,Kadur,LGD,532,District,5529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,7551,Block,Kadval,LGD,668,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +LGD,1145,Block,Kadwa,LGD,201,District,1145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,6332,Block,Kafligair,LGD,46,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +LGD,4290,Block,Kagal,LGD,480,District,4290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,4318,Block,Kagaznagar,LGD,699,District,4318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,7100,Block,Kagwad,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,1336,Block,Kahalgaon,LGD,192,District,1336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,6756,Block,Kahara,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,1174,Block,Kahara,LGD,216,District,1174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,4222,Block,Kaij,LGD,470,District,4222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,5016,Block,Kaikaluru,LGD,748,District,5016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3389,Block,Kailaras,LGD,417,District,3389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +LGD,6682,Block,Kailashahar,LGD,655,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +LGD,830,Block,Kaimganj,LGD,141,District,830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +LGD,706,Block,Kairana,LGD,660,District,706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false +LGD,2600,Block,Kairo,LGD,336,District,2600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +LGD,922,Block,Kaiserganj,LGD,125,District,922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +LGD,368,Block,Kaithal,LGD,66,District,368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +LGD,4923,Block,Kajuluru,LGD,746,District,4923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6793,Block,Kakapora,LGD,11,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +LGD,3059,Block,Kakatpur,LGD,369,District,3059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,1878,Block,Kakching,LGD,711,District,1878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,false +LGD,2437,Block,Kakdwip,LGD,304,District,2437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,4913,Block,Kakinada (Rural),LGD,746,District,4913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4914,Block,Kakinada (Urban),LGD,746,District,4914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6943,Block,Kakira,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,1537,Block,Kako,LGD,199,District,1537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +LGD,6601,Block,Kakoi Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,5083,Block,Kakumanu,LGD,506,District,5083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,5582,Block,Kalaburagi,LGD,538,District,5582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,344,Block,Kaladhungi,LGD,51,District,344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,7087,Block,Kalagi,LGD,538,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,7507,Block,Kalahandi,LGD,358,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,6427,Block,Kalaigaon,LGD,617,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +LGD,6644,Block,Kalaiyarkoil,LGD,585,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,5371,Block,Kalakada,LGD,753,District,5371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,24,Block,Kalakote,LGD,12,District,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,1570,Block,Kalaktang Adc,LGD,242,District,1570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,4239,Block,Kalamb,LGD,488,District,4239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +LGD,4081,Block,Kalamb,LGD,500,District,4081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,4025,Block,Kalameshwar,LGD,484,District,4025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,4114,Block,Kalamnuri,LGD,477,District,4114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +LGD,7508,Block,Kalampur,LGD,358,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,6882,Block,Kalan,LGD,180,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +LGD,6859,Block,Kalanaur,LGD,32,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +LGD,6467,Block,Kalanaur,LGD,73,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +LGD,6469,Block,Kalanwali,LGD,74,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +LGD,3523,Block,Kalapipal,LGD,430,District,3523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +LGD,7194,Block,Kalasa,LGD,532,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,5207,Block,Kalasapadu,LGD,504,District,5207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,5959,Block,Kalasapakkam,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,3817,Block,Kalavad,LGD,447,District,3817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +LGD,7059,Block,Kalavai,LGD,731,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +LGD,6446,Block,Kalayat,LGD,66,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +LGD,7284,Block,Kalbog,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,2171,Block,Kalchini,LGD,664,District,2171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +LGD,1543,Block,Kaler,LGD,611,District,1543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +LGD,2019,Block,Kalgachia,LGD,280,District,2019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +LGD,5476,Block,Kalghatgi,LGD,536,District,5476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +LGD,4453,Block,Kalher,LGD,691,District,4453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,2031,Block,Kaliabor,LGD,297,District,2031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +LGD,2220,Block,Kaliachak - I,LGD,316,District,2220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,2221,Block,Kaliachak - II,LGD,316,District,2221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,2222,Block,Kaliachak - III,LGD,316,District,2222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,2198,Block,Kaliaganj,LGD,311,District,2198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,5017,Block,Kalidindi,LGD,748,District,5017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2303,Block,Kaliganj,LGD,320,District,2303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,5160,Block,Kaligiri,LGD,515,District,5160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5387,Block,Kalikiri,LGD,753,District,5387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3227,Block,Kalimela,LGD,364,District,3227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +LGD,2156,Block,Kalimpong -I,LGD,702,District,2156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +LGD,6866,Block,Kalinagar,LGD,173,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +LGD,356,Block,Kalka,LGD,70,District,356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +LGD,456,Block,Kalkaji,LGD,670,District,456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false +LGD,5882,Block,Kalkulam,LGD,575,District,5882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +LGD,4985,Block,Kalla,LGD,523,District,4985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,5734,Block,Kallakkurichi,LGD,729,District,5734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +LGD,6615,Block,Kalligudi,LGD,578,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,5258,Block,Kallur,LGD,511,District,5258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,4763,Block,Kalluru,LGD,509,District,4763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,2293,Block,Kalna - I,LGD,306,District,2293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2294,Block,Kalna - II,LGD,306,District,2294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,3886,Block,Kalol,LGD,454,District,3886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +LGD,6938,Block,Kalol,LGD,15,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +LGD,7438,Block,Kalol City,LGD,446,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +LGD,3773,Block,Kalol Gandhinagar,LGD,446,District,3773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +LGD,6297,Block,Kaloor Thimmandoddi,LGD,695,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,197,Block,Kalpa,LGD,19,District,197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +LGD,5628,Block,Kalpeni,LGD,553,District,5628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,853,Block,Kalpi,LGD,151,District,853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +LGD,302,Block,Kalsi,LGD,49,District,302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +LGD,1090,Block,Kaluahi,LGD,206,District,1090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,5174,Block,Kaluvoya,LGD,515,District,5174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,7055,Block,Kalvarayan Hills,LGD,729,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +LGD,4576,Block,Kalwakurthy,LGD,694,District,4576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,4143,Block,Kalwan,LGD,487,District,4143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,7215,Block,Kalwar,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,4168,Block,Kalyan,LGD,497,District,4168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +LGD,5321,Block,Kalyanadurg,LGD,502,District,5321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,3176,Block,Kalyanasingpur,LGD,370,District,3176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,6966,Block,Kalyani,LGD,320,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,1048,Block,Kalyanpur,LGD,213,District,1048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,3819,Block,Kalyanpur,LGD,674,District,3819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +LGD,7130,Block,Kalyanpur,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,1284,Block,Kalyanpur,LGD,217,District,1284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,2988,Block,Kamakshyanagar,LGD,352,District,2988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +LGD,7090,Block,Kamalapur,LGD,538,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,4447,Block,Kamalapur,LGD,686,District,4447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,5224,Block,Kamalapuram,LGD,504,District,5224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,7085,Block,Kamalnagar,LGD,529,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +LGD,6681,Block,Kamalpur,LGD,269,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +LGD,2118,Block,Kamalpur,LGD,291,District,2118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,506,Block,Kaman,LGD,767,District,506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,4400,Block,Kamanpur,LGD,682,District,4400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,4390,Block,Kamareddy,LGD,685,District,4390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,4954,Block,Kamavarapukota,LGD,748,District,4954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6585,Block,Kamba Adc,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false +LGD,5334,Block,Kambadur,LGD,502,District,5334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5372,Block,Kambhamvaripalle,LGD,753,District,5372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2710,Block,Kamdara,LGD,331,District,2710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,6567,Block,Kamengbari Doimara Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,4745,Block,Kamepalli,LGD,509,District,4745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,1889,Block,Kamjong,LGD,717,District,1889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false +LGD,4363,Block,Kammarpally,LGD,516,District,4363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,7107,Block,Kampli,LGD,528,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +LGD,1700,Block,Kamporijo Circle,LGD,718,District,1700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false +LGD,4030,Block,Kamptee,LGD,484,District,4030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,2037,Block,Kampur,LGD,297,District,2037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +LGD,174,Block,Kamrau,LGD,24,District,174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,3936,Block,Kamrej,LGD,459,District,3936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,5858,Block,Kamuthi,LGD,583,District,5858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,7012,Block,Kanadia,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,4656,Block,Kanagal,LGD,514,District,4656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,5335,Block,Kanaganipalli,LGD,754,District,5335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7091,Block,Kanakagiri,LGD,543,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +LGD,5608,Block,Kanakapura,LGD,631,District,5608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +LGD,6425,Block,Kanalichhina,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,7466,Block,Kanas,LGD,369,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,5661,Block,Kanayannur,LGD,555,District,5661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +LGD,6685,Block,Kanchanpur,LGD,270,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +LGD,5707,Block,Kancheepuram,LGD,574,District,5707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +LGD,5007,Block,Kanchikacherla,LGD,749,District,5007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4777,Block,Kanchili,LGD,519,District,4777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,322,Block,Kanda,LGD,46,District,322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +LGD,6651,Block,Kandachipuram,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,166,Block,Kandaghat,LGD,25,District,166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,7495,Block,Kandhamal,LGD,359,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,4108,Block,Kandhar,LGD,485,District,4108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,2498,Block,Kandi,LGD,328,District,2498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,6275,Block,Kandi,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,2240,Block,Kandi,LGD,319,District,2240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,6360,Block,Kandisaur,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,4545,Block,Kandukur,LGD,518,District,4545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,5148,Block,Kandukuru,LGD,517,District,5148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,5306,Block,Kanekal,LGD,502,District,5306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,46,Block,Kangan,LGD,626,District,46,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +LGD,6495,Block,Kangchup Geljang,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,5901,Block,Kangeyam,LGD,634,District,5901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,6572,Block,Kangku Circle,LGD,719,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false +LGD,6884,Block,Kangoo,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,1861,Block,Kangpokpi,LGD,712,District,1861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,100,Block,Kangra,LGD,18,District,100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,4450,Block,Kangti,LGD,691,District,4450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,6500,Block,Kangvai,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,2519,Block,Kanha Chatti,LGD,323,District,2519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,5136,Block,Kanigiri,LGD,790,District,5136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3003,Block,Kaniha,LGD,344,District,3003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +LGD,6458,Block,Kanina,LGD,69,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +LGD,7486,Block,Kanisi,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,5672,Block,Kanjirappally,LGD,560,District,5672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +LGD,2989,Block,Kankadahad,LGD,352,District,2989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +LGD,4277,Block,Kankavli,LGD,495,District,4277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +LGD,2684,Block,Kanke,LGD,339,District,2684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,3351,Block,Kanker,LGD,381,District,3351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,5023,Block,Kankipadu,LGD,510,District,5023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,3743,Block,Kankrej,LGD,441,District,3743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,2275,Block,Kanksa,LGD,704,District,2275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +LGD,4133,Block,Kannad,LGD,469,District,4133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,6251,Block,Kannaigudem,LGD,720,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,834,Block,Kannauj,LGD,155,District,834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +LGD,6229,Block,Kannepally,LGD,684,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,3527,Block,Kannod,LGD,402,District,3527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,5633,Block,Kannur,LGD,557,District,5633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +LGD,6929,Block,Kanod,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,849,Block,Kanpur,LGD,157,District,849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +LGD,3256,Block,Kansabel,LGD,380,District,3256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,3149,Block,Kantabanji,LGD,345,District,3149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,3127,Block,Kantamal,LGD,349,District,3127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +LGD,6608,Block,Kantang Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,7502,Block,Kantapada,LGD,350,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,718,Block,Kanth,LGD,171,District,718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +LGD,1204,Block,Kanti,LGD,208,District,1204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,1688,Block,Kanubari Adc,LGD,666,District,1688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false +LGD,6054,Block,Kanwas,LGD,109,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +LGD,3869,Block,Kapadvanj,LGD,450,District,3869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,660,Block,Kapasan,LGD,95,District,660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,4928,Block,Kapileswarapuram,LGD,505,District,4928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,321,Block,Kapkot,LGD,46,District,321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +LGD,6317,Block,Kapra,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,3930,Block,Kaprada,LGD,462,District,3930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,6879,Block,Kaptanganj,LGD,160,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +LGD,2885,Block,Kaptipada,LGD,365,District,2885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,7067,Block,Kapu,LGD,549,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +LGD,7348,Block,Kapu,LGD,386,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,206,Block,Kapurthala,LGD,35,District,206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +LGD,4265,Block,Karad,LGD,494,District,4265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,3384,Block,Karahal,LGD,431,District,3384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +LGD,5914,Block,Karaikal,LGD,598,District,5914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +LGD,5830,Block,Karaikkudi,LGD,585,District,5830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,1378,Block,Karai Parsurai,LGD,209,District,1378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,6269,Block,Karakagudem,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,1462,Block,Karakat,LGD,215,District,1462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,5825,Block,Karambakudi,LGD,582,District,5825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,5109,Block,Karamchedu,LGD,750,District,5109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2195,Block,Karandighi,LGD,311,District,2195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,3997,Block,Karanja,LGD,499,District,3997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +LGD,4016,Block,Karanja,LGD,498,District,4016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +LGD,2870,Block,Karanjia,LGD,365,District,2870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,457,Block,Karanpur,LGD,100,District,457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,4922,Block,Karapa,LGD,746,District,4922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7092,Block,Karatagi,LGD,543,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +LGD,523,Block,Karauli,LGD,108,District,523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,6083,Block,Karawal Nagar,LGD,81,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false +LGD,6690,Block,Karbook,LGD,654,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +LGD,892,Block,Karchhana,LGD,120,District,892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +LGD,3637,Block,Kareli,LGD,418,District,3637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +LGD,5046,Block,Karempudi,LGD,751,District,5046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6064,Block,Karera,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,3410,Block,Karera,LGD,432,District,3410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,1467,Block,Kargahar,LGD,215,District,1467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,13,Block,Kargil,LGD,6,District,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +LGD,776,Block,Karhal,LGD,166,District,776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +LGD,5851,Block,Kariapatti,LGD,597,District,5851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,6202,Block,Kariasol,LGD,325,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,6622,Block,Karimangalam,LGD,571,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +LGD,2101,Block,Karimganj,LGD,293,District,2101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +LGD,6231,Block,Karimnagar,LGD,508,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,4428,Block,Karimnagar Rural,LGD,508,District,4428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,2299,Block,Karimpur - I,LGD,320,District,2299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,2300,Block,Karimpur - II,LGD,320,District,2300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,3907,Block,Karjan,LGD,461,District,3907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,4174,Block,Karjat,LGD,491,District,4174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,4213,Block,Karjat,LGD,466,District,4213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,5524,Block,Karkal,LGD,549,District,5524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +LGD,6533,Block,Karkeli,LGD,436,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +LGD,7509,Block,Karlamunda,LGD,358,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,5092,Block,Karlapalem,LGD,750,District,5092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4244,Block,Karmala,LGD,496,District,4244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,2677,Block,Karma Tanr Vidyasagar*,LGD,333,District,2677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false +LGD,3,Block,Karnah,LGD,8,District,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,372,Block,Karnal,LGD,67,District,372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +LGD,287,Block,Karnaprayag,LGD,47,District,287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,447,Block,Karol Bagh,LGD,77,District,447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,false +LGD,2552,Block,Karon,LGD,324,District,2552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,7344,Block,Karpawand,LGD,374,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,1544,Block,Karpi,LGD,611,District,1544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +LGD,2700,Block,Karra,LGD,606,District,2700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false +LGD,139,Block,Karsog,LGD,22,District,139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,3276,Block,Kartala,LGD,383,District,3276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,5676,Block,Karthikappally,LGD,554,District,5676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +LGD,5684,Block,Karunagappally,LGD,559,District,5684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +LGD,5769,Block,Karur,LGD,576,District,5769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +LGD,5408,Block,Karvetinagar,LGD,503,District,5408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,4287,Block,Karvir,LGD,480,District,4287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,5478,Block,Karwar,LGD,550,District,5478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,875,Block,Karwi,LGD,136,District,875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false +LGD,5630,Block,Kasaragod,LGD,558,District,5630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +LGD,164,Block,Kasauli,LGD,25,District,164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,1135,Block,Kasba,LGD,214,District,1135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,3328,Block,Kasdol,LGD,644,District,3328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,1010,Block,Kasganj,LGD,633,District,1010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +LGD,1514,Block,Kashi Chak,LGD,210,District,1514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,2385,Block,Kashipur,LGD,321,District,2385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,3177,Block,Kashipur,LGD,370,District,3177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,346,Block,Kashipur,LGD,56,District,346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,6748,Block,Kashtigarh,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,6834,Block,Kasimabad,LGD,146,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +LGD,4876,Block,Kasimkota,LGD,744,District,4876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3104,Block,Kasinagar,LGD,353,District,3104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +LGD,4349,Block,Kasipet,LGD,684,District,4349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,2593,Block,Kasmar,LGD,322,District,2593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,1891,Block,Kasom Khullen,LGD,717,District,1891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false +LGD,3547,Block,Kasrawad,LGD,414,District,3547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,957,Block,Kasya,LGD,160,District,957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +LGD,2655,Block,Katamdag,LGD,332,District,2655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,1668,Block,Katan Circle,LGD,240,District,1668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,3667,Block,Katangi,LGD,392,District,3667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,4402,Block,Kataram,LGD,687,District,4402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,6519,Block,Katargam,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,3371,Block,Katekalyan,LGD,376,District,3371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +LGD,3272,Block,Katghora,LGD,383,District,3272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,2670,Block,Kathikund,LGD,326,District,2670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,3872,Block,Kathlal,LGD,450,District,3872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,4418,Block,Kathlapur,LGD,681,District,4418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,30,Block,Kathua,LGD,7,District,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,504,Block,Kathumar,LGD,87,District,504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,2096,Block,Katigora,LGD,282,District,2096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +LGD,1151,Block,Katihar,LGD,201,District,1151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,1215,Block,Katiya,LGD,197,District,1215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,2654,Block,Katkamsandi,LGD,332,District,2654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,2109,Block,Katlichara,LGD,289,District,2109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +LGD,7567,Block,Katngi,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,7028,Block,Katni Nagar,LGD,413,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,4024,Block,Katol,LGD,484,District,4024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,1354,Block,Katoria,LGD,190,District,1354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,6945,Block,Katoula,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,5713,Block,Katpadi,LGD,595,District,5713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +LGD,6741,Block,Katra,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,1208,Block,Katra,LGD,208,District,1208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,4943,Block,Katrenikona,LGD,747,District,4943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1397,Block,Katrisarai,LGD,209,District,1397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,5945,Block,Kattakkada,LGD,565,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +LGD,4635,Block,Kattangur,LGD,514,District,4635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,6980,Block,Katthiwara,LGD,639,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +LGD,5792,Block,Kattumannarkoil,LGD,570,District,5792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,2281,Block,Katwa - I,LGD,306,District,2281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2282,Block,Katwa - II,LGD,306,District,2282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,5158,Block,Kavali,LGD,515,District,5158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,3902,Block,Kavant,LGD,668,District,3902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +LGD,5625,Block,Kavaratti,LGD,553,District,5625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,4303,Block,Kavathemahankal,LGD,493,District,4303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,4779,Block,Kaviti,LGD,519,District,4779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,1516,Block,Kawakol,LGD,210,District,1516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,3298,Block,Kawardha,LGD,382,District,3298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +LGD,6829,Block,Kawarhama,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,7342,Block,Kawrtethawveng,LGD,266,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false +LGD,6628,Block,Kayathar,LGD,594,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,1627,Block,Kaying Eac,LGD,679,District,1627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,1854,Block,Kebai Khelma,LGD,613,District,1854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +LGD,1646,Block,Kebang Circle,LGD,679,District,1646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,6092,Block,Keegam,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false +LGD,4522,Block,Keesara,LGD,700,District,4522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,1886,Block,Keirao Bitra,LGD,255,District,1886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +LGD,614,Block,Kekri,LGD,86,District,614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,4090,Block,Kelapur,LGD,500,District,4090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,7269,Block,Kelhari,LGD,760,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,6091,Block,Keller,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false +LGD,2927,Block,Kendrapara,LGD,360,District,2927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,3663,Block,Keolari,LGD,428,District,3663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,7492,Block,Keonjhar,LGD,361,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,1183,Block,Keotiranway,LGD,195,District,1183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,986,Block,Kerakat,LGD,152,District,986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +LGD,4313,Block,Kerameri,LGD,699,District,4313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,6782,Block,Keran,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,2656,Block,Keredari,LGD,332,District,2656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,2721,Block,Kersai,LGD,342,District,2721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,4717,Block,Kesamudram,LGD,688,District,4717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,1047,Block,Kesaria,LGD,213,District,1047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1439,Block,Kesath,LGD,194,District,1439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,4561,Block,Keshampet,LGD,518,District,4561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,2466,Block,Keshiary,LGD,318,District,2466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,3355,Block,Keshkal,LGD,643,District,3355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +LGD,3831,Block,Keshod,LGD,448,District,3831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,625,Block,Keshoraipatan,LGD,94,District,625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +LGD,2451,Block,Keshpur,LGD,318,District,2451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,3159,Block,Kesinga,LGD,358,District,3159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,3452,Block,Kesli,LGD,425,District,3452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,2497,Block,Ketar*,LGD,328,District,2497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,4637,Block,Kethepally,LGD,514,District,4637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,2279,Block,Ketugram - I,LGD,306,District,2279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2280,Block,Ketugram - II,LGD,306,District,2280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,1847,Block,Kezocha,LGD,245,District,1847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +LGD,4929,Block,K Gangavaram,LGD,747,District,4929,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3508,Block,Khacharod,LGD,435,District,3508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,6878,Block,Khadda,LGD,160,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +LGD,3235,Block,Khadganva,LGD,760,District,3235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,7277,Block,Khadgaon,LGD,761,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,261,Block,Khadur Sahib,LGD,609,District,261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +LGD,4,Block,Khag,LGD,2,District,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,879,Block,Khaga,LGD,142,District,879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +LGD,1323,Block,Khagaria,LGD,202,District,1323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +LGD,752,Block,Khair,LGD,119,District,752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +LGD,2906,Block,Khaira,LGD,346,District,2906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,1532,Block,Khaira,LGD,198,District,1532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,3303,Block,Khairagarh,LGD,759,District,3303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,4505,Block,Khairatabad,LGD,507,District,4505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,3670,Block,Khairlanji,LGD,392,District,3670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,7469,Block,Khairput,LGD,364,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +LGD,7207,Block,Khairthal,LGD,770,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,1089,Block,Khajauli,LGD,206,District,1089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,5212,Block,Khajipeta,LGD,504,District,5212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,953,Block,Khajni,LGD,148,District,953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +LGD,3113,Block,Khajuripada,LGD,359,District,3113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,478,Block,Khajuwala,LGD,93,District,478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,3720,Block,Khaknar,LGD,397,District,3720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +LGD,4175,Block,Khalapur,LGD,491,District,4175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,942,Block,Khalilabad,LGD,178,District,942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +LGD,7485,Block,Khallikote,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,12,Block,Khaltsi,LGD,9,District,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +LGD,3715,Block,Khalwa,LGD,405,District,3715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,223,Block,Khamanon,LGD,30,District,223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +LGD,3847,Block,Khambha,LGD,439,District,3847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,3813,Block,Khambhalia,LGD,674,District,3813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +LGD,3866,Block,Khambhat,LGD,440,District,3866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,3981,Block,Khamgaon,LGD,472,District,3981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,4756,Block,Khammam (Rural),LGD,509,District,4756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,6326,Block,Khammam Urban,LGD,509,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,6393,Block,Khamnor,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,2354,Block,Khanakul - I,LGD,312,District,2354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,2355,Block,Khanakul - II,LGD,312,District,2355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,4347,Block,Khanapur,LGD,680,District,4347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,4299,Block,Khanapur,LGD,493,District,4299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,5439,Block,Khanapur,LGD,527,District,5439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,4709,Block,Khanapur,LGD,522,District,4709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,2297,Block,Khandaghosh,LGD,306,District,2297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,4257,Block,Khandala,LGD,494,District,4257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,3026,Block,Khandapada,LGD,367,District,3026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +LGD,532,Block,Khandar,LGD,113,District,532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,6384,Block,Khandela,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,3716,Block,Khandwa,LGD,405,District,3716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,7019,Block,Khandwa Nagar,LGD,405,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,3414,Block,Khaniyadhana,LGD,432,District,3414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,225,Block,Khanna,LGD,36,District,225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +LGD,678,Block,Khanpur,LGD,105,District,678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,1287,Block,Khanpur,LGD,217,District,1287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,3879,Block,Khanpur,LGD,669,District,3879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +LGD,6472,Block,Khanpur St,LGD,75,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +LGD,6,Block,Khansahib,LGD,2,District,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,6801,Block,Khanyar,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +LGD,3145,Block,Khaprakhol,LGD,345,District,3145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,1360,Block,Kharagpur,LGD,207,District,1360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,2460,Block,Kharagpur - I,LGD,318,District,2460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,2461,Block,Kharagpur - II,LGD,318,District,2461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,6704,Block,Kharah Balli,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,266,Block,Kharar,LGD,608,District,266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +LGD,2495,Block,Kharaundhi,LGD,328,District,2495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,3422,Block,Khargapur,LGD,434,District,3422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,3550,Block,Khargone,LGD,414,District,3550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,7029,Block,Khargone Nagar,LGD,414,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,2239,Block,Khargram,LGD,319,District,2239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,6759,Block,Khari,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +LGD,3156,Block,Khariar,LGD,368,District,3156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +LGD,2165,Block,Kharibari,LGD,309,District,2165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,1331,Block,Kharik,LGD,192,District,1331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,381,Block,Kharkhoda,LGD,75,District,381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +LGD,1972,Block,Kharkutta,LGD,656,District,1972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false +LGD,7262,Block,Kharora,LGD,387,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +LGD,1681,Block,Kharsang Circle,LGD,229,District,1681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,2747,Block,Kharsawan,LGD,341,District,2747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,3269,Block,Kharsia,LGD,386,District,3269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,7159,Block,Kharu,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +LGD,1992,Block,Khatarshnong Laitkroh,LGD,274,District,1992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,710,Block,Khatauli,LGD,172,District,710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +LGD,4260,Block,Khatav,LGD,494,District,4260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,3531,Block,Khategaon,LGD,402,District,3531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,352,Block,Khatima,LGD,56,District,352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,2373,Block,Khatra,LGD,305,District,2373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,6771,Block,Khawas,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,1909,Block,Khawbung,LGD,262,District,1909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false +LGD,1907,Block,Khawzawl,LGD,728,District,1907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +LGD,6247,Block,Khazipet,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,4268,Block,Khed,LGD,492,District,4268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,4190,Block,Khed,LGD,490,District,4190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,3874,Block,Kheda,LGD,450,District,3874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,3760,Block,Khedbrahma,LGD,458,District,3760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +LGD,561,Block,Kheenvsar,LGD,110,District,561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,2486,Block,Khejuri - I,LGD,317,District,2486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2487,Block,Khejuri - II,LGD,317,District,2487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,737,Block,Khekada,LGD,124,District,737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +LGD,2683,Block,Khelari,LGD,339,District,2683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,6605,Block,Khenawa Circle,LGD,231,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,6496,Block,Khengjoy,LGD,253,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +LGD,768,Block,Kheragarh,LGD,118,District,768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +LGD,3752,Block,Kheralu,LGD,451,District,3752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,6195,Block,Khergam,LGD,453,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +LGD,6419,Block,Kheri Jalab St,LGD,792,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +LGD,695,Block,Kherwara,LGD,117,District,695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,490,Block,Khetri,LGD,106,District,490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,1811,Block,Khezhakeno,LGD,248,District,1811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,6246,Block,Khila Warangal,LGD,522,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,3564,Block,Khilchipur,LGD,422,District,3564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,1669,Block,Khimiyang Eac,LGD,229,District,1669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,3606,Block,Khirkiya,LGD,408,District,3606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +LGD,1490,Block,Khizirsarai,LGD,196,District,1490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,6828,Block,Khoie,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,6428,Block,Khoirabari,LGD,617,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +LGD,1842,Block,Khongsa,LGD,614,District,1842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +LGD,1686,Block,Khonsa Hq,LGD,239,District,1686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +LGD,3036,Block,Khordha,LGD,362,District,3036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,6038,Block,Khoupum,LGD,714,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false +LGD,6714,Block,Khour,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,6684,Block,Khowai,LGD,652,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false +LGD,2267,Block,Khoyrasol,LGD,307,District,2267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,1304,Block,Khudabandpur,LGD,191,District,1304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,7015,Block,Khudel,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,6993,Block,Khujner,LGD,422,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,4138,Block,Khuldabad,LGD,469,District,4138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,2083,Block,Khumtai,LGD,288,District,2083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +LGD,107,Block,Khundian,LGD,18,District,107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,2883,Block,Khunta,LGD,365,District,2883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,2704,Block,Khunti,LGD,606,District,2704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false +LGD,2732,Block,Khuntpani,LGD,343,District,2732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,3444,Block,Khurai,LGD,425,District,3444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,751,Block,Khurja,LGD,134,District,751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +LGD,1413,Block,Khusrupur,LGD,212,District,1413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,1802,Block,Khuza,LGD,248,District,1802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,1741,Block,Kibithoo Circle,LGD,628,District,1741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +LGD,349,Block,Kichha,LGD,56,District,349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,5991,Block,Kikruma,LGD,248,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,6654,Block,Kilakarai,LGD,583,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,6673,Block,Killiyoor,LGD,575,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +LGD,7396,Block,Killod,LGD,405,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,6630,Block,Kilpennathur,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,5623,Block,Kiltan,LGD,553,District,5623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,5800,Block,Kilvelur,LGD,579,District,5800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +LGD,1605,Block,Kimin Sdo,LGD,237,District,1605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,5956,Block,Kinathukadavu,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,4096,Block,Kinwat,LGD,485,District,4096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,1837,Block,Kiphire Sadar,LGD,614,District,1837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +LGD,767,Block,Kiraoli,LGD,118,District,767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +LGD,7594,Block,Kirari,LGD,82,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false +LGD,1195,Block,Kiratpur,LGD,195,District,1195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,4899,Block,Kirlampudi,LGD,746,District,4899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7506,Block,Kirmira,LGD,357,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +LGD,3673,Block,Kirnapur,LGD,392,District,3673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,6361,Block,Kirtinagar,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,1127,Block,Kishanganj,LGD,203,District,1127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +LGD,674,Block,Kishanganj,LGD,89,District,674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +LGD,1167,Block,Kishanganj,LGD,205,District,1167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,606,Block,Kishangarh,LGD,86,District,606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,497,Block,Kishangarhbas,LGD,770,District,497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,6026,Block,Kishangarh Renwal,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,2960,Block,Kishannagar,LGD,350,District,2960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,1107,Block,Kishanpur,LGD,223,District,1107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,6872,Block,Kishni,LGD,166,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +LGD,3016,Block,Kishorenagar,LGD,344,District,3016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +LGD,68,Block,Kishtwar,LGD,620,District,68,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,2597,Block,Kisko,LGD,336,District,2597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +LGD,1560,Block,Kitpi Circle,LGD,238,District,1560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,7043,Block,Kittur,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,1838,Block,Kiusam,LGD,614,District,1838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +LGD,4860,Block,K.Kotapadu,LGD,744,District,4860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7496,Block,K. Nuagaon,LGD,359,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,1126,Block,Kochadhamin,LGD,203,District,1126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +LGD,1457,Block,Kochas,LGD,215,District,1457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,5660,Block,Kochi,LGD,555,District,5660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +LGD,2782,Block,Kochinda,LGD,371,District,2782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,4668,Block,Kodad,LGD,696,District,4668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,5766,Block,Kodaikanal,LGD,572,District,5766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,4600,Block,Kodair,LGD,694,District,4600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,4702,Block,Kodakandla,LGD,689,District,4702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,3082,Block,Kodala,LGD,354,District,3082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,4549,Block,Kodangal,LGD,698,District,4549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,5169,Block,Kodavalur,LGD,515,District,5169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,2527,Block,Koderma,LGD,334,District,2527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +LGD,4420,Block,Kodimial,LGD,681,District,4420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,3837,Block,Kodinar,LGD,675,District,3837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +LGD,3194,Block,Kodinga,LGD,366,District,3194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,6637,Block,Kodumudi,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,5269,Block,Kodumur,LGD,511,District,5269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5655,Block,Kodungallur,LGD,566,District,5655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +LGD,5249,Block,Kodur,LGD,752,District,5249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5039,Block,Koduru,LGD,510,District,5039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,4443,Block,Koheda,LGD,692,District,4443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,1849,Block,Kohima Sadar,LGD,245,District,1849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +LGD,4475,Block,Kohir,LGD,691,District,4475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,7321,Block,Kohkameta,LGD,637,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false +LGD,2826,Block,Koida,LGD,373,District,2826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,755,Block,Koil,LGD,119,District,755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +LGD,5296,Block,Koilakuntla,LGD,755,District,5296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4569,Block,Koilkonda,LGD,512,District,4569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,1424,Block,Koilwar,LGD,193,District,1424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,3169,Block,Kokasara,LGD,358,District,3169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,57,Block,Kokernag,LGD,1,District,57,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,6403,Block,Kokrajhar,LGD,294,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +LGD,2779,Block,Kolabira,LGD,357,District,2779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +LGD,2471,Block,Kolaghat,LGD,317,District,2471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,7034,Block,Kolar,LGD,396,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +LGD,5591,Block,Kolar,LGD,542,District,5591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +LGD,3411,Block,Kolaras,LGD,432,District,3411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,7002,Block,Kolar Gold Field,LGD,542,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +LGD,7514,Block,Kolathur,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,476,Block,Kolayat,LGD,93,District,476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,2724,Block,Kolebira,LGD,342,District,2724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,7072,Block,Kolhar,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,5301,Block,Kolimigundla,LGD,755,District,5301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5688,Block,Kollam,LGD,559,District,5688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +LGD,4609,Block,Kollapur,LGD,694,District,4609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,5579,Block,Kollegal,LGD,531,District,5579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +LGD,6625,Block,Kolli Hills,LGD,580,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +LGD,5077,Block,Kollipara,LGD,506,District,5077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,5088,Block,Kolluru,LGD,750,District,5088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7512,Block,Kolnara,LGD,370,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,6130,Block,Koloriang Hq,LGD,233,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,7322,Block,Komakhan,LGD,385,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +LGD,4807,Block,Komarada,LGD,743,District,4807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5134,Block,Komarolu,LGD,790,District,5134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6586,Block,Kombo Circle,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false +LGD,3155,Block,Komna,LGD,368,District,3155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +LGD,6284,Block,Komuravelli,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,5119,Block,Konakanamitla,LGD,790,District,5119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4431,Block,Konaraopet,LGD,683,District,4431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,855,Block,Konch,LGD,151,District,855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +LGD,1487,Block,Konch,LGD,196,District,1487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,3357,Block,Kondagaon,LGD,643,District,3357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +LGD,6307,Block,Kondamallepally,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4462,Block,Kondapak,LGD,692,District,4462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,5137,Block,Kondapi,LGD,517,District,5137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,4491,Block,Kondapur,LGD,691,District,4491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,5199,Block,Kondapuram,LGD,504,District,5199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,5156,Block,Kondapuram,LGD,515,District,5156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5941,Block,Kondotty,LGD,562,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +LGD,4558,Block,Kondurg,LGD,518,District,4558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,4761,Block,Konijerla,LGD,509,District,4761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,5943,Block,Konni,LGD,564,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +LGD,3373,Block,Konta,LGD,642,District,3373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +LGD,6627,Block,Koothanallur,LGD,590,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,4203,Block,Kopargaon,LGD,466,District,4203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,5526,Block,Koppa,LGD,532,District,5526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,5467,Block,Koppal,LGD,543,District,5467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +LGD,6574,Block,Kora Circle,LGD,719,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false +LGD,895,Block,Koraon,LGD,120,District,895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +LGD,3207,Block,Koraput,LGD,363,District,3207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,5536,Block,Koratagere,LGD,548,District,5536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,3275,Block,Korba,LGD,383,District,3275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,4055,Block,Korchi,LGD,475,District,4055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,4261,Block,Koregaon,LGD,494,District,4261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,1143,Block,Korha,LGD,201,District,1143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,5122,Block,Korisapadu,LGD,517,District,5122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,1727,Block,Koronu Circle,LGD,235,District,1727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false +LGD,4075,Block,Korpana,LGD,473,District,4075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,4905,Block,Korukonda,LGD,505,District,4905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,4416,Block,Korutla,LGD,681,District,4416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,4551,Block,Kosgi,LGD,721,District,4551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,5251,Block,Kosigi,LGD,511,District,5251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,413,Block,Kosli,LGD,72,District,413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +LGD,338,Block,Kosya Kutauli,LGD,51,District,338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,5191,Block,Kota,LGD,515,District,5191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,3291,Block,Kota,LGD,375,District,3291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,4791,Block,Kotabommali,LGD,519,District,4791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,7275,Block,Kotadol,LGD,760,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,3123,Block,Kotagarh,LGD,359,District,3123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,4371,Block,Kotagiri,LGD,516,District,4371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,5757,Block,Kotagiri,LGD,587,District,5757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +LGD,4889,Block,Kotananduru,LGD,746,District,4889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4351,Block,Kotapally,LGD,684,District,4351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,3467,Block,Kotar,LGD,426,District,3467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +LGD,4874,Block,Kotauratla,LGD,744,District,4874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3805,Block,Kotda Sangani,LGD,457,District,3805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,313,Block,Kotdwara,LGD,52,District,313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,6312,Block,Kotepally,LGD,698,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,6851,Block,Koteranka,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,6956,Block,Kotgarh,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,5346,Block,Kothacheruvu,LGD,754,District,5346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4710,Block,Kothaguda,LGD,688,District,4710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,4738,Block,Kothagudem,LGD,690,District,4738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,4593,Block,Kothakota,LGD,693,District,4593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,5663,Block,Kothamangalam,LGD,555,District,5663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +LGD,5263,Block,Kothapalle,LGD,755,District,5263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6230,Block,Kothapally,LGD,508,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,7537,Block,Kothapally (15),LGD,721,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,7531,Block,Kothapallygori,LGD,687,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,5140,Block,Kotha Patnam,LGD,517,District,5140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,4927,Block,Kothapeta,LGD,747,District,4927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4834,Block,Kothavalasa,LGD,521,District,4834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,3461,Block,Kothi,LGD,426,District,3461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +LGD,7007,Block,Kothi Mahal,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,7556,Block,Kothmba,LGD,669,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +LGD,4560,Block,Kothur,LGD,518,District,4560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,4772,Block,Kothuru,LGD,519,District,4772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,5984,Block,Kotkapura,LGD,29,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +LGD,495,Block,Kotkasim,LGD,770,District,495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,189,Block,Kotkhai,LGD,23,District,189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,6028,Block,Kotkhawda,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,6896,Block,Kotla,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,128,Block,Kotli,LGD,22,District,128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,3693,Block,Kotma,LGD,390,District,3693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +LGD,3199,Block,Kotpad,LGD,363,District,3199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,538,Block,Kotputli,LGD,782,District,538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,687,Block,Kotra,LGD,117,District,687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,635,Block,Kotri,LGD,92,District,635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,5687,Block,Kottarakkara,LGD,559,District,5687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +LGD,5670,Block,Kottayam,LGD,560,District,5670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +LGD,7108,Block,Kotturu,LGD,738,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +LGD,2367,Block,Kotulpur,LGD,305,District,2367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,1049,Block,Kotwa,LGD,213,District,1049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,7522,Block,Koukuntla,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,4316,Block,Koutala,LGD,699,District,4316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,5862,Block,Kovilpatti,LGD,594,District,5862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,5178,Block,Kovur,LGD,515,District,5178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,4958,Block,Kovvur,LGD,505,District,4958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,4480,Block,Kowdipally,LGD,513,District,4480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,5252,Block,Kowthalam,LGD,511,District,5252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,2117,Block,Koya,LGD,291,District,2117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,5639,Block,Koyilandi,LGD,561,District,5639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +LGD,7345,Block,Koylibeda,LGD,381,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,1648,Block,Koyu Eac,LGD,719,District,1648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false +LGD,4952,Block,Koyyalagudem,LGD,748,District,4952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4851,Block,Koyyuru,LGD,745,District,4851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5682,Block,Kozhenchery,LGD,564,District,5682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +LGD,5640,Block,Kozhikode,LGD,561,District,5640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +LGD,6783,Block,Kralpora,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,7119,Block,Kranti,LGD,314,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,36,Block,Kreeri,LGD,3,District,36,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,163,Block,Krishangarh,LGD,25,District,163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,6264,Block,Krishna,LGD,721,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,2309,Block,Krishnaganj,LGD,320,District,2309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,2308,Block,Krishnagar - I,LGD,320,District,2308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,2306,Block,Krishnagar - II,LGD,320,District,2306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,5891,Block,Krishnagiri,LGD,577,District,5891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +LGD,5277,Block,Krishnagiri,LGD,511,District,5277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5571,Block,Krishnarajanagara,LGD,545,District,5571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,5546,Block,Krishnarajpet,LGD,544,District,5546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +LGD,5770,Block,Krishnarayapuram,LGD,576,District,5770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +LGD,1133,Block,Krityanand Nagar,LGD,214,District,1133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,1721,Block,Kronli (Arzoo Circle),LGD,230,District,1721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false +LGD,5051,Block,Krosuru,LGD,751,District,5051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3069,Block,Krushna Prasad,LGD,369,District,3069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,5018,Block,Kruthivennu,LGD,510,District,5018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,3372,Block,Kuakonda,LGD,376,District,3372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +LGD,4338,Block,Kubeer,LGD,680,District,4338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,1763,Block,Kubolong,LGD,246,District,1763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,2746,Block,Kuchai,LGD,341,District,2746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,1219,Block,Kuchaikote,LGD,197,District,1219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,6065,Block,Kuchaman City,LGD,768,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5323,Block,Kudair,LGD,502,District,5323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,4280,Block,Kudal,LGD,495,District,4280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +LGD,5804,Block,Kudavasal,LGD,590,District,5804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,7219,Block,Kudi Bhagtasni,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,5502,Block,Kudligi,LGD,738,District,5502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +LGD,1448,Block,Kudra,LGD,200,District,1448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,7470,Block,Kudumuluguma,LGD,364,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +LGD,4035,Block,Kuhi,LGD,484,District,4035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,1794,Block,Kuhoboto,LGD,764,District,1794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,2936,Block,Kujang,LGD,355,District,2936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +LGD,7093,Block,Kukanoor,LGD,543,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +LGD,6169,Block,Kukarmunda,LGD,641,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +LGD,6327,Block,Kukatpally,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,7351,Block,Kukdur,LGD,382,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +LGD,7314,Block,Kukrel,LGD,377,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +LGD,2750,Block,Kukru,LGD,341,District,2750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,3536,Block,Kukshi,LGD,403,District,3536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,7484,Block,Kukudakhandi,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,4735,Block,Kukunoor,LGD,748,District,4735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7521,Block,Kukunoorpally,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,6439,Block,Kulan St,LGD,61,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +LGD,5819,Block,Kulathur,LGD,582,District,5819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,4468,Block,Kulcharam,LGD,513,District,4468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,59,Block,Kulgam,LGD,622,District,59,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +LGD,7458,Block,Kuliana,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,5771,Block,Kulithalai,LGD,576,District,5771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +LGD,4539,Block,Kulkacharla,LGD,698,District,4539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,118,Block,Kullu,LGD,20,District,118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,868,Block,Kulpahar,LGD,165,District,868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false +LGD,2428,Block,Kulpi,LGD,304,District,2428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2433,Block,Kultali,LGD,304,District,2433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,6634,Block,Kumarapalayam,LGD,580,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +LGD,5382,Block,Kumara Venkata Bhupala Puram,LGD,752,District,5382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7350,Block,Kumarda,LGD,388,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +LGD,2744,Block,Kumardungi,LGD,343,District,2744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,2202,Block,Kumarganj,LGD,310,District,2202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +LGD,6694,Block,Kumarghat,LGD,655,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +LGD,2172,Block,Kumargram,LGD,664,District,2172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +LGD,1163,Block,Kumarkhand,LGD,205,District,1163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,179,Block,Kumarsain,LGD,23,District,179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,5811,Block,Kumbakonam,LGD,586,District,5811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,642,Block,Kumbhalgarh,LGD,112,District,642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,3681,Block,Kumbhraj,LGD,406,District,3681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +LGD,510,Block,Kumher,LGD,767,District,510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5485,Block,Kumta,LGD,550,District,5485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,4731,Block,Kunavaram,LGD,791,District,4731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7323,Block,Kunda,LGD,382,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +LGD,881,Block,Kunda,LGD,174,District,881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +LGD,2516,Block,Kunda,LGD,323,District,2516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,5759,Block,Kundah,LGD,587,District,5759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +LGD,7382,Block,Kundal,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,3633,Block,Kundam,LGD,411,District,3633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,5522,Block,Kundapura,LGD,549,District,5522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +LGD,5477,Block,Kundgol,LGD,536,District,5477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +LGD,2681,Block,Kundhit,LGD,333,District,2681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false +LGD,7057,Block,Kundrathur,LGD,574,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +LGD,3210,Block,Kundura,LGD,363,District,3210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,5333,Block,Kundurpi,LGD,502,District,5333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5541,Block,Kunigal,LGD,548,District,5541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,7056,Block,Kunihar,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,3839,Block,Kunkavav Vadia,LGD,439,District,3839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,3259,Block,Kunkuri,LGD,380,District,3259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,5976,Block,Kunnam,LGD,581,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +LGD,6598,Block,Kunnamkulam,LGD,566,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +LGD,5657,Block,Kunnathunad,LGD,555,District,5657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +LGD,5685,Block,Kunnathur,LGD,559,District,5685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +LGD,4337,Block,Kuntala,LGD,680,District,4337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,6928,Block,Kunwariya,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,6830,Block,Kunzer,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,5427,Block,Kuppam,LGD,503,District,5427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,6962,Block,Kupvi,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,1,Block,Kupwara,LGD,8,District,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,5389,Block,Kurabalakota,LGD,753,District,5389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7156,Block,Kurabar,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,3666,Block,Kurai,LGD,428,District,3666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,4721,Block,Kuravi,LGD,688,District,4721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,6874,Block,Kurawali,LGD,166,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +LGD,2720,Block,Kurdeg,LGD,342,District,2720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,1213,Block,Kurhani,LGD,208,District,1213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,5103,Block,Kurichedu,LGD,517,District,5103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,5790,Block,Kurinjipadi,LGD,570,District,5790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,4054,Block,Kurkheda,LGD,475,District,4054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,7180,Block,Kurla,LGD,483,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +LGD,5259,Block,Kurnool Rural,LGD,511,District,5259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,7183,Block,Kurnool Urban,LGD,511,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,1117,Block,Kursakatta,LGD,188,District,1117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,1155,Block,Kursela,LGD,201,District,1155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,2161,Block,Kurseong,LGD,309,District,2161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,1546,Block,Kurtha,LGD,611,District,1546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +LGD,2599,Block,Kuru,LGD,336,District,2599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +LGD,3344,Block,Kurud,LGD,377,District,3344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +LGD,7109,Block,Kurugodu,LGD,528,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +LGD,4809,Block,Kurupam,LGD,743,District,4809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3572,Block,Kurwai,LGD,437,District,3572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,654,Block,Kushalgarh,LGD,88,District,654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,7124,Block,Kushalnagar,LGD,541,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +LGD,1197,Block,Kusheshwar Asthan,LGD,195,District,1197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,1198,Block,Kusheshwar Asthan Purbi,LGD,195,District,1198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,2200,Block,Kushmundi,LGD,310,District,2200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +LGD,5465,Block,Kushtagi,LGD,543,District,5465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +LGD,3702,Block,Kusmi,LGD,433,District,3702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +LGD,3240,Block,Kusmi(Samri),LGD,649,District,3240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,4755,Block,Kusumanchi,LGD,509,District,4755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,7478,Block,Kusumi,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,5797,Block,Kuthalam,LGD,735,District,5797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +LGD,3824,Block,Kutiyana,LGD,456,District,3824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +LGD,2813,Block,Kutra,LGD,373,District,2813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,7260,Block,Kutru,LGD,636,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +LGD,5675,Block,Kuttanad,LGD,554,District,5675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +LGD,1484,Block,Kutumba,LGD,189,District,1484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,7052,Block,K V Kuppam,LGD,595,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +LGD,2262,Block,Labpur,LGD,307,District,2262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,552,Block,Lachhmangarh,LGD,114,District,552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,503,Block,Lachhmangarh,LGD,87,District,503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,6098,Block,Lada Circle,LGD,787,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,1084,Block,Ladania,LGD,206,District,1084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,125,Block,Lad Bharol,LGD,22,District,125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,557,Block,Ladnu,LGD,768,District,557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,667,Block,Ladpura,LGD,109,District,667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +LGD,6410,Block,Ladwa,LGD,68,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +LGD,6902,Block,Lagru,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,3398,Block,Lahar,LGD,395,District,3398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,2028,Block,Laharighat,LGD,296,District,2028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +LGD,805,Block,Laharpur,LGD,183,District,805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +LGD,1253,Block,Lahladpur,LGD,218,District,1253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,115,Block,Lahul,LGD,21,District,115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +LGD,2827,Block,Lahunipara,LGD,373,District,2827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,2778,Block,Laikera,LGD,357,District,2778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +LGD,3264,Block,Lailunga,LGD,386,District,3264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,1694,Block,Laju Sdo,LGD,239,District,1694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +LGD,4043,Block,Lakhandur,LGD,471,District,4043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +LGD,6168,Block,Lakhani,LGD,789,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,4041,Block,Lakhani,LGD,471,District,4041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +LGD,6468,Block,Lakhan Majra St,LGD,73,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +LGD,3248,Block,Lakhanpur,LGD,389,District,3248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +LGD,2771,Block,Lakhanpur,LGD,357,District,2771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +LGD,801,Block,Lakhimpur,LGD,159,District,801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +LGD,2013,Block,Lakhipur,LGD,287,District,2013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +LGD,2100,Block,Lakhipur,LGD,282,District,2100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +LGD,1368,Block,Lakhisarai,LGD,204,District,1368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +LGD,3659,Block,Lakhnadon,LGD,428,District,3659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,1099,Block,Lakhnaur,LGD,206,District,1099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,3722,Block,Lakhpat,LGD,449,District,3722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,3791,Block,Lakhtar,LGD,460,District,3791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,4833,Block,Lakkavarapukota,LGD,521,District,4833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,5240,Block,Lakkireddipalli,LGD,753,District,5240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1233,Block,Lakri Nabiganj,LGD,222,District,1233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,355,Block,Laksar,LGD,50,District,355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +LGD,1529,Block,Lakshmipur,LGD,198,District,1529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,3203,Block,Lakshmipur,LGD,363,District,3203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,2108,Block,Lala,LGD,289,District,2108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +LGD,7301,Block,Lal Bahadur Nagar,LGD,388,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +LGD,3671,Block,Lalbarra,LGD,392,District,3671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,6351,Block,Laldhang,LGD,50,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +LGD,880,Block,Lalganj,LGD,174,District,880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +LGD,969,Block,Lalganj,LGD,123,District,969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +LGD,826,Block,Lalganj,LGD,175,District,826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +LGD,1001,Block,Lalganj,LGD,170,District,1001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +LGD,1270,Block,Lalganj,LGD,224,District,1270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,2229,Block,Lalgola,LGD,319,District,2229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,5777,Block,Lalgudi,LGD,591,District,5777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,862,Block,Lalitpur,LGD,161,District,862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +LGD,345,Block,Lalkuan,LGD,51,District,345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,6792,Block,Lalpora,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,3818,Block,Lalpur,LGD,447,District,3818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +LGD,7258,Block,Lalpur Thana,LGD,647,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false +LGD,537,Block,Lalsot,LGD,97,District,537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,917,Block,Lambhua,LGD,185,District,917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +LGD,7285,Block,Lambloo,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,6368,Block,Lamgada,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,1881,Block,Lamphelpat,LGD,256,District,1881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +LGD,1879,Block,Lamsang,LGD,256,District,1879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +LGD,7399,Block,Lamta,LGD,392,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,6789,Block,Langate,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,4273,Block,Lanja,LGD,492,District,4273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,3676,Block,Lanji,LGD,392,District,3676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,3162,Block,Lanjigarh,LGD,358,District,3162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,2040,Block,Lanka,LGD,709,District,2040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +LGD,310,Block,Lansdowne,LGD,52,District,310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,2697,Block,Lapung,LGD,339,District,2697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,45,Block,Lar,LGD,626,District,45,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +LGD,6820,Block,Larnoo,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,6774,Block,Laroka,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,691,Block,Lasadiya,LGD,777,District,691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,1997,Block,Laskein,LGD,275,District,1997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false +LGD,2639,Block,Latehar,LGD,335,District,2639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,3570,Block,Lateri,LGD,437,District,3570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,1733,Block,Lathao Circle,LGD,678,District,1733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false +LGD,3841,Block,Lathi,LGD,439,District,3841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,2823,Block,Lathikata,LGD,373,District,2823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,7236,Block,Latori,LGD,648,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,6737,Block,Latti,LGD,14,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +LGD,4226,Block,Latur,LGD,481,District,4226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,1085,Block,Laukaha,LGD,206,District,1085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,1086,Block,Laukahi,LGD,206,District,1086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,1018,Block,Lauriya,LGD,211,District,1018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,2157,Block,Lava,LGD,702,District,2157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +LGD,7246,Block,Lavan,LGD,644,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,7050,Block,Lavaold,LGD,702,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +LGD,4804,Block,Laveru,LGD,519,District,4804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,3425,Block,Lavkush Nagar,LGD,398,District,3425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,2517,Block,Lawalaung,LGD,323,District,2517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,6909,Block,Lawan,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,1917,Block,Lawngtlai,LGD,264,District,1917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false +LGD,1689,Block,Lawnu Circle,LGD,666,District,1689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false +LGD,4345,Block,Laxmanchanda,LGD,680,District,4345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,7083,Block,Laxmeshwar,LGD,537,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +LGD,6266,Block,Laxmidevipalli,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,4787,Block,Laxminarasupeta,LGD,519,District,4787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,10,Block,Leh,LGD,9,District,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +LGD,273,Block,Lehra,LGD,43,District,273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +LGD,1735,Block,Lekang Mahadevpur Circle,LGD,678,District,1735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false +LGD,5365,Block,Lepakshi,LGD,754,District,5365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2805,Block,Lephripara,LGD,373,District,2805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,1603,Block,Leporiang Circle,LGD,237,District,1603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,6555,Block,Lhou Circle,LGD,238,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,6497,Block,Lhungtin,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,6536,Block,Lidhora,LGD,434,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,1640,Block,Likabali Sdo,LGD,719,District,1640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false +LGD,3842,Block,Lilia,LGD,439,District,3842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,1876,Block,Lilong,LGD,259,District,1876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false +LGD,3797,Block,Limbdi,LGD,460,District,3797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,1608,Block,Limeking Circle,LGD,241,District,1608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,3892,Block,Limkheda,LGD,445,District,3892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,4598,Block,Lingal,LGD,694,District,4598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,5218,Block,Lingala,LGD,504,District,5218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4700,Block,Lingalaghanpur,LGD,689,District,4700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,4388,Block,Lingampet,LGD,685,District,4388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,4945,Block,Lingapalem,LGD,748,District,4945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6311,Block,Lingapur,LGD,699,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,5150,Block,Lingasamudram,LGD,517,District,5150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,5459,Block,Lingasugur,LGD,546,District,5459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +LGD,1632,Block,Liromoba Eac,LGD,243,District,1632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false +LGD,2573,Block,Litipara,LGD,337,District,2573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +LGD,5924,Block,Little Andaman,LGD,602,District,5924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +LGD,6482,Block,LM,LGD,260,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false +LGD,3804,Block,Lodhika,LGD,457,District,3804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,4107,Block,Loha,LGD,485,District,4107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,336,Block,Lohaghat,LGD,48,District,336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +LGD,6729,Block,Lohai Malhar,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,3361,Block,Lohandiguda,LGD,374,District,3361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,4242,Block,Lohara,LGD,488,District,4242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +LGD,2601,Block,Lohardaga,LGD,336,District,2601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +LGD,7450,Block,Loharghat,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,401,Block,Loharu,LGD,59,District,401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +LGD,6391,Block,Lohawat,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3141,Block,Loisinga,LGD,345,District,3141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,4342,Block,Lokeswaram,LGD,680,District,4342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,6791,Block,Lolab (Sogam),LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,3987,Block,Lonar,LGD,472,District,3987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,1758,Block,Longchem,LGD,246,District,1758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,6074,Block,Longding Hq,LGD,666,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false +LGD,1816,Block,Longkhim,LGD,249,District,1816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false +LGD,1833,Block,Longleng,LGD,615,District,1833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false +LGD,6491,Block,Longmai,LGD,714,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false +LGD,1840,Block,Longmatra,LGD,614,District,1840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +LGD,6597,Block,Longo Circle,LGD,239,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +LGD,1751,Block,Longshen,LGD,247,District,1751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,6692,Block,Longtharai Valley,LGD,269,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +LGD,6089,Block,Loni,LGD,145,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +LGD,7341,Block,Lopoke,LGD,27,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +LGD,3290,Block,Lormi,LGD,647,District,3290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false +LGD,1786,Block,Lotsu,LGD,250,District,1786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,227,Block,Ludhiana (East),LGD,36,District,227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +LGD,228,Block,Ludhiana (West),LGD,36,District,228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +LGD,1557,Block,Lumla Adc,LGD,238,District,1557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,7337,Block,Lumshnong,LGD,657,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false +LGD,3882,Block,Lunawada,LGD,669,District,3882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +LGD,3251,Block,Lundra,LGD,389,District,3251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +LGD,1914,Block,Lunglei,LGD,265,District,1914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false +LGD,1913,Block,Lungsen,LGD,265,District,1913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false +LGD,572,Block,Luni,LGD,107,District,572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,475,Block,Lunkaransar,LGD,93,District,475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,4353,Block,Luxettipet,LGD,684,District,4353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,6578,Block,Lyngok Longtoi Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,6767,Block,Machail,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,4380,Block,Machareddy,LGD,685,District,4380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,5048,Block,Machavaram,LGD,751,District,5048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5040,Block,Macherla,LGD,751,District,5040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3212,Block,Machh Kund,LGD,363,District,3212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,983,Block,Machhlishahr,LGD,152,District,983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +LGD,6339,Block,Machhor,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,1892,Block,Machi,LGD,716,District,1892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false +LGD,6785,Block,Machil,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,7429,Block,Machilipatnam North,LGD,510,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,5034,Block,Machilipatnam South,LGD,510,District,5034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,6987,Block,Mada,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +LGD,5350,Block,Madakasira,LGD,754,District,5350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5392,Block,Madanapalle,LGD,753,District,5392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6289,Block,Madanapur,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,6362,Block,Madannegi,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,1486,Block,Madanpur,LGD,189,District,1486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,3160,Block,Madanpur Rampur,LGD,358,District,3160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,2170,Block,Madarihat,LGD,664,District,2170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +LGD,5907,Block,Madathukulam,LGD,634,District,5907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,5292,Block,Maddikera (East),LGD,511,District,5292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5127,Block,Maddipadu,LGD,517,District,5127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,6300,Block,Maddirala,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,5551,Block,Maddur,LGD,544,District,5551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +LGD,4673,Block,Maddur,LGD,692,District,4673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,4554,Block,Maddur,LGD,721,District,4554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,4564,Block,Madgul,LGD,518,District,4564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,4245,Block,Madha,LGD,496,District,4245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,1100,Block,Madhepur,LGD,206,District,1100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,1161,Block,Madhepura,LGD,205,District,1161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,4766,Block,Madhira,LGD,509,District,4766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,851,Block,Madhogarh,LGD,151,District,851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +LGD,7139,Block,Madhorajpura,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,972,Block,Madhuban,LGD,168,District,972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +LGD,1055,Block,Madhuban,LGD,213,District,1055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1093,Block,Madhubani,LGD,206,District,1093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,1021,Block,Madhubani,LGD,211,District,1021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,5535,Block,Madhugiri,LGD,548,District,5535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,2550,Block,Madhupur,LGD,324,District,2550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,1080,Block,Madhwapur,LGD,206,District,1080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,5566,Block,Madikeri,LGD,541,District,5566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +LGD,4372,Block,Madnoor,LGD,685,District,4372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,4857,Block,Madugula,LGD,744,District,4857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6305,Block,Madugulapally,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,5986,Block,Madukkari,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,5960,Block,Madurai East,LGD,578,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,5836,Block,Madurai North,LGD,578,District,5836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,5841,Block,Madurai South,LGD,578,District,5841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,5961,Block,Madurai West,LGD,578,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,5710,Block,Maduranthakam,LGD,730,District,5710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +LGD,5981,Block,Maduravoyal,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,7410,Block,Madwas,LGD,433,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +LGD,5605,Block,Magadi,LGD,631,District,5605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +LGD,6814,Block,Magam,LGD,2,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,4590,Block,Maganoor,LGD,721,District,4590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,3345,Block,Magarlod,LGD,377,District,3345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +LGD,2424,Block,Magrahat - I,LGD,304,District,2424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2423,Block,Magrahat - II,LGD,304,District,2423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,4255,Block,Mahabaleshwar,LGD,494,District,4255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,4718,Block,Mahabubabad,LGD,688,District,4718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,6258,Block,Mahabubnagar Rural,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,4568,Block,Mahabubnagar Urban,LGD,512,District,4568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,4185,Block,Mahad,LGD,491,District,4185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,4403,Block,Mahadevpur,LGD,687,District,4403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,2558,Block,Mahagama,LGD,330,District,2558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,4087,Block,Mahagaon,LGD,500,District,4087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,2933,Block,Mahakalapada,LGD,360,District,2933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,404,Block,Maham,LGD,73,District,404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +LGD,5285,Block,Mahanandi,LGD,755,District,5285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2956,Block,Mahanga,LGD,350,District,2956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,6725,Block,Mahanpur,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,823,Block,Maharajganj,LGD,175,District,823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +LGD,947,Block,Maharajganj,LGD,164,District,947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +LGD,1236,Block,Maharajganj,LGD,222,District,1236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,3428,Block,Maharajpur,LGD,398,District,3428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,6837,Block,Maharanipeta,LGD,520,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,3341,Block,Mahasamund,LGD,385,District,3341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +LGD,920,Block,Mahasi,LGD,125,District,920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +LGD,763,Block,Mahavan,LGD,167,District,763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +LGD,5913,Block,Mahe,LGD,600,District,5913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +LGD,411,Block,Mahendragarh,LGD,69,District,411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +LGD,3757,Block,Mahesana,LGD,451,District,3757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,7441,Block,Mahesana City,LGD,451,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,2577,Block,Maheshpur,LGD,337,District,2577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +LGD,3546,Block,Maheshwar,LGD,414,District,3546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,4544,Block,Maheshwaram,LGD,518,District,4544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,3510,Block,Mahidpur,LGD,435,District,3510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,2475,Block,Mahisadal,LGD,317,District,2475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,1173,Block,Mahishi,LGD,216,District,1173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,2075,Block,Mahmora,LGD,708,District,2075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +LGD,807,Block,Mahmudabad,LGD,183,District,807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +LGD,1283,Block,Mahnar,LGD,224,District,1283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,870,Block,Mahoba,LGD,165,District,870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false +LGD,6880,Block,Maholi,LGD,183,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +LGD,6850,Block,Mahore,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,863,Block,Mahroni,LGD,161,District,863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +LGD,1275,Block,Mahua,LGD,224,District,1275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,2637,Block,Mahuadanr,LGD,335,District,2637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,3877,Block,Mahudha,LGD,450,District,3877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,4095,Block,Mahur,LGD,485,District,4095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,3941,Block,Mahuva,LGD,459,District,3941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,3860,Block,Mahuva,LGD,443,District,3860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,534,Block,Mahwa,LGD,97,District,534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,3470,Block,Maihar,LGD,784,District,3470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,1016,Block,Mainatanr,LGD,211,District,1016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,3254,Block,Mainpat,LGD,389,District,3254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +LGD,3337,Block,Mainpur,LGD,645,District,3337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +LGD,775,Block,Mainpuri,LGD,166,District,775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +LGD,6702,Block,Maira Mandrian,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,1982,Block,Mairang,LGD,740,District,1982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false +LGD,1240,Block,Mairwa,LGD,222,District,1240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,6871,Block,Maitha,LGD,156,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +LGD,4219,Block,Majalgaon,LGD,470,District,4219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,75,Block,Majalta,LGD,14,District,75,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +LGD,3701,Block,Majhauli,LGD,433,District,3701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +LGD,1027,Block,Majhaulia,LGD,211,District,1027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,6919,Block,Majheen,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,2745,Block,Majhgaon,LGD,343,District,2745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,3462,Block,Majhgawan,LGD,426,District,3462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +LGD,2499,Block,Majhiaon,LGD,328,District,2499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,3628,Block,Majholi,LGD,411,District,3628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,6854,Block,Majitha,LGD,27,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +LGD,1065,Block,Majorganj,LGD,221,District,1065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,7121,Block,Majra,LGD,24,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,2076,Block,Majuli,LGD,706,District,2076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false +LGD,3937,Block,Majura,LGD,459,District,3937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,4875,Block,Makavarapalem,LGD,744,District,4875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3358,Block,Makdi,LGD,643,District,3358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +LGD,6995,Block,Makdon,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,1262,Block,Maker,LGD,218,District,1262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,3616,Block,Makhan Nagar,LGD,409,District,3616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,1540,Block,Makhdumpur,LGD,199,District,1540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +LGD,4813,Block,Makkuva,LGD,743,District,4813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4367,Block,Makloor,LGD,516,District,4367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,565,Block,Makrana,LGD,768,District,565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,6969,Block,Makridi,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,3680,Block,Maksoodangarh,LGD,406,District,3680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +LGD,4589,Block,Makthal,LGD,721,District,4589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,2167,Block,Mal,LGD,314,District,2167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,6382,Block,Malakhera,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,528,Block,Malarna Doongar,LGD,113,District,528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,5552,Block,Malavalli,LGD,544,District,5552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +LGD,2217,Block,Maldah (Old),LGD,316,District,2217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,4604,Block,Maldakal,LGD,695,District,4604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,4146,Block,Malegaon,LGD,487,District,4146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,3995,Block,Malegaon,LGD,499,District,3995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +LGD,269,Block,Malerkotla,LGD,737,District,269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +LGD,7014,Block,Malharganj,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,3493,Block,Malhargarh,LGD,416,District,3493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,4405,Block,Malharrao,LGD,687,District,4405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,3833,Block,Malia Hatina,LGD,448,District,3833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,819,Block,Malihabad,LGD,162,District,819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +LGD,4938,Block,Malikipuram,LGD,747,District,4938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3798,Block,Maliya,LGD,673,District,3798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +LGD,4521,Block,Malkajgiri,LGD,700,District,4521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,3220,Block,Malkangiri,LGD,364,District,3220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +LGD,3979,Block,Malkapur,LGD,472,District,3979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,3285,Block,Malkharoda,LGD,762,District,3285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,7536,Block,Mallampally,LGD,720,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,5680,Block,Mallappally,LGD,564,District,5680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +LGD,4394,Block,Mallapur,LGD,681,District,4394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,4413,Block,Mallial,LGD,681,District,4413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,239,Block,Malout,LGD,39,District,239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +LGD,3771,Block,Malpur,LGD,672,District,3771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +LGD,615,Block,Malpura,LGD,116,District,615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,4250,Block,Malshiras,LGD,496,District,4250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,6370,Block,Malsisar,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,3445,Block,Malthon,LGD,425,District,3445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,5592,Block,Malur,LGD,542,District,5592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +LGD,7589,Block,Malviya Nagar,LGD,83,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +LGD,4278,Block,Malwan,LGD,495,District,4278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +LGD,4346,Block,Mamada,LGD,680,District,4346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,7165,Block,Mambalam,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,4936,Block,Mamidikuduru,LGD,747,District,4936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6967,Block,Mamlig,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,4259,Block,Man,LGD,494,District,4259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,5776,Block,Manachanallur,LGD,591,District,5776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,4427,Block,Manakondur,LGD,508,District,4427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,117,Block,Manali,LGD,20,District,117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,5833,Block,Manamadurai,LGD,585,District,5833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,5827,Block,Manamelkudi,LGD,582,District,5827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,5635,Block,Mananthavady,LGD,567,District,5635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +LGD,5781,Block,Manapparai,LGD,591,District,5781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,3491,Block,Manasa,LGD,419,District,3491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +LGD,2628,Block,Manatu,LGD,338,District,2628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,3825,Block,Manavadar,LGD,448,District,3825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,3538,Block,Manawar,LGD,403,District,3538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,2395,Block,Manbazar - I,LGD,321,District,2395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,2396,Block,Manbazar - II,LGD,321,District,2396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,6348,Block,Manch,LGD,48,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +LGD,4547,Block,Manchal,LGD,518,District,4547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,1737,Block,Manchal Circle,LGD,628,District,1737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +LGD,7404,Block,Manchenahalli,LGD,630,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +LGD,4354,Block,Mancherial,LGD,684,District,4354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,631,Block,Mandal,LGD,92,District,631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,6713,Block,Mandal,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,3777,Block,Mandal,LGD,438,District,3777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,637,Block,Mandalgarh,LGD,92,District,637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,4352,Block,Mandamarri,LGD,684,District,4352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,4266,Block,Mandangad,LGD,492,District,4266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,6970,Block,Mandap,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,4920,Block,Mandapeta,LGD,505,District,4920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,2693,Block,Mandar,LGD,339,District,2693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,4776,Block,Mandasa,LGD,519,District,4776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,5015,Block,Mandavalli,LGD,748,District,5015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7145,Block,Mandawa,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,6914,Block,Mandawar,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,7383,Block,Mandhan,LGD,782,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,133,Block,Mandi,LGD,22,District,133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,17,Block,Mandi,LGD,10,District,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +LGD,2429,Block,Mandirbazar,LGD,304,District,2429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,7308,Block,Mandir Hasoud,LGD,387,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +LGD,3643,Block,Mandla,LGD,415,District,3643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +LGD,524,Block,Mandrayal,LGD,108,District,524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,2565,Block,Mandro,LGD,340,District,2565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,3496,Block,Mandsaur,LGD,416,District,3496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,7005,Block,Mandsaur Nagar,LGD,416,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,2661,Block,Mandu,LGD,607,District,2661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +LGD,3729,Block,Mandvi,LGD,449,District,3729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,3935,Block,Mandvi,LGD,459,District,3935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,5550,Block,Mandya,LGD,544,District,5550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +LGD,3234,Block,Manendragarh,LGD,760,District,3234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,1398,Block,Maner,LGD,212,District,1398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,419,Block,Manesar,LGD,62,District,419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,7465,Block,Maneswar,LGD,371,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,6466,Block,Manethi St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +LGD,5055,Block,Mangalagiri,LGD,506,District,5055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,7178,Block,Mangalbarey,LGD,742,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +LGD,2148,Block,Mangaldoi (Pt),LGD,283,District,2148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +LGD,5561,Block,Mangaluru,LGD,534,District,5561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,4252,Block,Mangalvedhe,LGD,496,District,4252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,1548,Block,Mangan,LGD,226,District,1548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false +LGD,4181,Block,Mangaon,LGD,491,District,4181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,4686,Block,Mangapet,LGD,720,District,4686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,3474,Block,Mangawan,LGD,424,District,3474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,1828,Block,Mangko,LGD,765,District,1828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1764,Block,Mangkolemba,LGD,246,District,1764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,2278,Block,Mangolkote,LGD,306,District,2278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,670,Block,Mangrol,LGD,89,District,670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +LGD,3933,Block,Mangrol,LGD,459,District,3933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,3832,Block,Mangrol,LGD,448,District,3832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,3996,Block,Mangrulpir,LGD,499,District,3996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +LGD,1185,Block,Manigachhi,LGD,195,District,1185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,1156,Block,Manihari,LGD,201,District,1156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,2635,Block,Manika,LGD,335,District,2635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +LGD,2219,Block,Manikchak,LGD,316,District,2219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,5930,Block,Manikpur,LGD,136,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false +LGD,7199,Block,Manikpur,LGD,281,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +LGD,6515,Block,Maninagar,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,6933,Block,Maniya,LGD,98,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +LGD,6772,Block,Manjakote,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,5932,Block,Manjeswaram,LGD,558,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +LGD,1225,Block,Manjha,LGD,197,District,1225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,886,Block,Manjhanpur,LGD,158,District,886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +LGD,2741,Block,Manjhari,LGD,343,District,2741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,1255,Block,Manjhi,LGD,218,District,1255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,2012,Block,Mankachar,LGD,707,District,2012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false +LGD,931,Block,Mankapur,LGD,147,District,931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +LGD,6779,Block,Mankote,LGD,10,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +LGD,5985,Block,Manmangalam,LGD,576,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +LGD,1673,Block,Manmao Eac,LGD,229,District,1673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,5808,Block,Mannargudi,LGD,590,District,5808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,5648,Block,Mannarkad,LGD,563,District,5648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +LGD,6273,Block,Manoharabad,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,2735,Block,Manoharpur,LGD,343,District,2735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,681,Block,Manohar Thana,LGD,105,District,681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,4451,Block,Manoor,LGD,691,District,4451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,4611,Block,Manopad,LGD,695,District,4611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,3258,Block,Manora,LGD,380,District,3258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,3998,Block,Manora,LGD,499,District,3998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +LGD,1494,Block,Manpur,LGD,196,District,1494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,3309,Block,Manpur,LGD,761,District,3309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,3484,Block,Manpur,LGD,436,District,3484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +LGD,249,Block,Mansa,LGD,37,District,249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false +LGD,3774,Block,Mansa,LGD,446,District,3774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +LGD,1152,Block,Mansahi,LGD,201,District,1152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,1324,Block,Mansi,LGD,202,District,1324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +LGD,1309,Block,Mansurchak,LGD,191,District,1309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,2285,Block,Manteswar,LGD,306,District,2285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,4132,Block,Mantha,LGD,479,District,4132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +LGD,4401,Block,Manthani,LGD,682,District,4401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,5250,Block,Mantralayam,LGD,511,District,5250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5183,Block,Manubolu,LGD,515,District,5183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,4727,Block,Manuguru,LGD,690,District,4727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,6647,Block,Manur,LGD,592,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +LGD,5462,Block,Manvi,LGD,546,District,5462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +LGD,4119,Block,Manwath,LGD,489,District,4119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,6650,Block,Marakanam,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,1108,Block,Marauna,LGD,223,District,1108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,7319,Block,Mardapal,LGD,643,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +LGD,4884,Block,Maredumilli,LGD,791,District,4884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4092,Block,Maregaon,LGD,500,District,4092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,2062,Block,Margherita,LGD,302,District,2062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +LGD,2551,Block,Margo Munda,LGD,324,District,2551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,6715,Block,Marh,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,1260,Block,Marhaura,LGD,218,District,1260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,6731,Block,Marheen,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,985,Block,Mariahu,LGD,152,District,985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +LGD,2081,Block,Mariani,LGD,290,District,2081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +LGD,2029,Block,Marigaon,LGD,296,District,2029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +LGD,1002,Block,Marihan,LGD,170,District,1002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +LGD,6263,Block,Marikal,LGD,721,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,4720,Block,Maripeda,LGD,688,District,4720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,1666,Block,Mariyang Adc,LGD,240,District,1666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,2531,Block,Markacho,LGD,334,District,2531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +LGD,5115,Block,Markapuram,LGD,790,District,5115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6282,Block,Markook,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,6751,Block,Marmat,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,6554,Block,Maro Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,4512,Block,Marpalle,LGD,698,District,4512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,4500,Block,Marredpally,LGD,507,District,4500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,7297,Block,Marri Bangla(Deori),LGD,646,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +LGD,4649,Block,Marriguda,LGD,514,District,4649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,5163,Block,Marripadu,LGD,515,District,5163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5129,Block,Marripudi,LGD,517,District,5129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,2932,Block,Marsaghai,LGD,360,District,2932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,6165,Block,Martinganjon,LGD,123,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +LGD,5106,Block,Martur,LGD,750,District,5106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5954,Block,Marungapuri,LGD,591,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,69,Block,Marwah,LGD,620,District,69,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,3288,Block,Marwahi,LGD,734,District,3288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false +LGD,1203,Block,Marwan,LGD,208,District,1203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,602,Block,Marwar Junction,LGD,111,District,602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +LGD,7190,Block,Masaipet,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,2675,Block,Masalia,LGD,326,District,2675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,6379,Block,Masalpur,LGD,108,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,1408,Block,Masaurhi,LGD,212,District,1408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,1248,Block,Mashrakh,LGD,218,District,1248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,7101,Block,Maski,LGD,546,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +LGD,3296,Block,Masturi,LGD,375,District,3296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,610,Block,Masuda,LGD,774,District,610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,762,Block,Mat,LGD,167,District,762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +LGD,3875,Block,Matar,LGD,450,District,3875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,410,Block,Matenhail,LGD,64,District,410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +LGD,2181,Block,Mathabhanga - I,LGD,308,District,2181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,2182,Block,Mathabhanga-II,LGD,308,District,2182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,5701,Block,Mathavaram,LGD,568,District,5701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,3221,Block,Mathili,LGD,364,District,3221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +LGD,764,Block,Mathura,LGD,167,District,764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +LGD,2430,Block,Mathurapur - I,LGD,304,District,2430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2436,Block,Mathurapur - II,LGD,304,District,2436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2015,Block,Matia,LGD,287,District,2015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +LGD,7581,Block,Matiala,LGD,84,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +LGD,2168,Block,Matiali,LGD,314,District,2168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,2162,Block,Matigara,LGD,309,District,2162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,1320,Block,Matihani,LGD,191,District,1320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,6412,Block,Matlauda,LGD,71,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +LGD,4670,Block,Mattampally,LGD,696,District,4670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,876,Block,Mau,LGD,136,District,876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false +LGD,7000,Block,Mau,LGD,395,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,4029,Block,Mauda,LGD,484,District,4029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,867,Block,Maudaha,LGD,149,District,867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +LGD,3477,Block,Mauganj,LGD,766,District,3477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,7222,Block,Maulasar,LGD,768,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,973,Block,Maunath Bhanjan,LGD,168,District,973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +LGD,6858,Block,Maur,LGD,28,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +LGD,859,Block,Mauranipur,LGD,153,District,859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +LGD,543,Block,Mauzamabad,LGD,102,District,543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,6222,Block,Mavala,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,5678,Block,Mavelikkara,LGD,554,District,5678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +LGD,685,Block,Mavli,LGD,117,District,685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,4191,Block,Mawal,LGD,490,District,4191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,733,Block,Mawana,LGD,169,District,733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +LGD,7456,Block,Mawhati,LGD,276,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +LGD,1991,Block,Mawkynrew,LGD,274,District,1991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,1984,Block,Mawkyrwat,LGD,658,District,1984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false +LGD,6540,Block,Mawlai,LGD,274,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,6541,Block,Mawpat,LGD,274,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,1988,Block,Mawphlang,LGD,274,District,1988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,1990,Block,Mawryngkneng,LGD,274,District,1990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,1979,Block,Mawshynrut,LGD,279,District,1979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false +LGD,1993,Block,Mawsynram,LGD,274,District,1993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,1981,Block,Mawthadraishan,LGD,740,District,1981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false +LGD,5920,Block,Mayabunder,LGD,632,District,5920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +LGD,5796,Block,Mayiladuthurai,LGD,735,District,5796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +LGD,2177,Block,Maynaguri,LGD,314,District,2177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,2026,Block,Mayong,LGD,296,District,2026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +LGD,2255,Block,Mayureswar - I,LGD,307,District,2255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2256,Block,Mayureswar - II,LGD,307,District,2256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2521,Block,Mayur Hand,LGD,323,District,2521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,2153,Block,Mazbat,LGD,617,District,2153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +LGD,6369,Block,Mdawara,LGD,161,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +LGD,1656,Block,Mebo Adc,LGD,232,District,1656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +LGD,1622,Block,Mechuka Adc,LGD,725,District,1622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false +LGD,4456,Block,Medak,LGD,513,District,4456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,4519,Block,Medchal,LGD,700,District,4519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,5073,Block,Medikonduru,LGD,506,District,5073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,2633,Block,Medininagar(Daltonganj),LGD,338,District,2633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,4415,Block,Medipalli,LGD,681,District,4415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,6318,Block,Medipally,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,1799,Block,Medziphema,LGD,758,District,1799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,5668,Block,Meenachil,LGD,560,District,5668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +LGD,785,Block,Meerganj,LGD,130,District,785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +LGD,734,Block,Meerut,LGD,169,District,734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +LGD,3708,Block,Meghnagar,LGD,412,District,3708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +LGD,3765,Block,Meghraj,LGD,672,District,3765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +LGD,7409,Block,Mehal Kalan,LGD,605,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +LGD,6894,Block,Mehatpur,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,941,Block,Mehdawal,LGD,178,District,941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +LGD,2555,Block,Meherma,LGD,330,District,2555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,3393,Block,Mehgaon,LGD,395,District,3393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,3982,Block,Mehkar,LGD,472,District,3982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,3873,Block,Mehmedabad,LGD,450,District,3873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,970,Block,Mehnagar,LGD,123,District,970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +LGD,6080,Block,Mehrauli,LGD,83,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +LGD,1057,Block,Mehsi,LGD,213,District,1057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,894,Block,Meja,LGD,120,District,894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +LGD,2357,Block,Mejhia,LGD,305,District,2357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,2180,Block,Mekliganj,LGD,308,District,2180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,4774,Block,Meliaputti,LGD,519,District,4774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,4671,Block,Mellachervu,LGD,696,District,4671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,6652,Block,Melmalaiyanur,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,5835,Block,Melur,LGD,578,District,5835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,1803,Block,Meluri,LGD,788,District,1803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,2291,Block,Memari - I,LGD,306,District,2291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2292,Block,Memari - II,LGD,306,District,2292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,3830,Block,Mendarda,LGD,448,District,3830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,18,Block,Mendhar,LGD,10,District,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +LGD,6237,Block,Mendora,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,1604,Block,Mengio Eac,LGD,237,District,1604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,4824,Block,Mentada,LGD,521,District,4824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,4822,Block,Merakamudidam,LGD,521,District,4822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,2508,Block,Meral (Pipra Kalan),LGD,328,District,2508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,1765,Block,Merangmen,LGD,246,District,1765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,562,Block,Merta,LGD,110,District,562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,1522,Block,Meskaur,LGD,210,District,1522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,1740,Block,Metengliang Circle,LGD,628,District,1740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +LGD,4417,Block,Metpalli,LGD,681,District,4417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,5895,Block,Mettupalayam,LGD,569,District,5895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,5736,Block,Mettur,LGD,584,District,5736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,4184,Block,Mhasla,LGD,491,District,4184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,1680,Block,Miao Adc,LGD,229,District,1680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,4566,Block,Midjil,LGD,512,District,4566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,2453,Block,Midnapore,LGD,318,District,2453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,5267,Block,Midthur,LGD,755,District,5267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1659,Block,Migging Circle,LGD,240,District,1659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,6862,Block,Mihinpurwa Motipur,LGD,125,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +LGD,3397,Block,Mihona,LGD,395,District,3397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,2030,Block,Mikirbheta,LGD,296,District,2030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +LGD,728,Block,Milak,LGD,176,District,728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +LGD,903,Block,Milkipur,LGD,140,District,903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +LGD,2333,Block,Minakhan,LGD,303,District,2333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,1205,Block,Minapur,LGD,208,District,1205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,5629,Block,Minicoy,LGD,553,District,5629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +LGD,1717,Block,Mipi,LGD,230,District,1717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false +LGD,4302,Block,Miraj,LGD,493,District,4302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,4464,Block,Mirdoddi,LGD,692,District,4464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,2160,Block,Mirik,LGD,309,District,2160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,4664,Block,Miryalaguda,LGD,514,District,4664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,1000,Block,Mirzapur,LGD,170,District,1000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +LGD,803,Block,Misrikh,LGD,183,District,803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +LGD,6875,Block,Mitauli,LGD,159,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +LGD,7152,Block,Mitrapura,LGD,113,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,6636,Block,Modakkurichi,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,1538,Block,Modanganj,LGD,199,District,1538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +LGD,3769,Block,Modasa,LGD,672,District,3769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +LGD,432,Block,Model Town,LGD,796,District,432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,738,Block,Modinagar,LGD,145,District,738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +LGD,233,Block,Moga,LGD,38,District,233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +LGD,4986,Block,Mogalthur,LGD,523,District,4986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,6278,Block,Mogudampally,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,4680,Block,Mogullapally,LGD,687,District,4680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,4038,Block,Mohadi,LGD,471,District,4038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +LGD,6750,Block,Mohalla,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,990,Block,Mohammadabad,LGD,146,District,990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +LGD,7187,Block,Mohammadabad,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,2257,Block,Mohammad Bazar,LGD,307,District,2257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2617,Block,Mohammad Ganj,LGD,338,District,2617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,7520,Block,Mohammadnagar,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,800,Block,Mohammdi,LGD,159,District,800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +LGD,3101,Block,Mohana,LGD,353,District,3101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +LGD,3419,Block,Mohangarh,LGD,434,District,3419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,1449,Block,Mohania,LGD,200,District,1449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,822,Block,Mohanlalganj,LGD,162,District,822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +LGD,1509,Block,Mohanpur,LGD,196,District,1509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,1293,Block,Mohanpur,LGD,217,District,1293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,6689,Block,Mohanpur,LGD,272,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +LGD,2546,Block,Mohanpur,LGD,324,District,2546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,2469,Block,Mohanpur,LGD,318,District,2469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,6635,Block,Mohanur,LGD,580,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +LGD,1294,Block,Mohiuddinagar,LGD,217,District,1294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,3655,Block,Mohkhed,LGD,399,District,3655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,3308,Block,Mohla,LGD,761,District,3308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,6435,Block,Mohna St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +LGD,4248,Block,Mohol,LGD,496,District,4248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,4528,Block,Moinabad,LGD,518,District,4528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,1875,Block,Moirang,LGD,252,District,1875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false +LGD,1420,Block,Mokameh,LGD,212,District,1420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,4161,Block,Mokhada,LGD,665,District,4161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +LGD,5503,Block,Molakalmuru,LGD,533,District,5503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +LGD,3521,Block,Moman Badodiya,LGD,430,District,3521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +LGD,4513,Block,Mominpet,LGD,698,District,4513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,1623,Block,Monigong Eac,LGD,725,District,1623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false +LGD,1748,Block,Mon Sadar,LGD,247,District,1748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,1757,Block,Monyakshu,LGD,247,District,1757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,7102,Block,Moodubidire,LGD,534,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,274,Block,Moonak,LGD,43,District,274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +LGD,6260,Block,Moosapet,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,5036,Block,Mopidevi,LGD,510,District,5036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,1667,Block,Mopom Adipasi Circle,LGD,240,District,1667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,1755,Block,Mopong,LGD,247,District,1755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,2878,Block,Morada,LGD,365,District,2878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,719,Block,Moradabad,LGD,171,District,719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +LGD,2067,Block,Moran,LGD,286,District,2067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +LGD,196,Block,Morang,LGD,19,District,196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +LGD,2086,Block,Morangi,LGD,288,District,2086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +LGD,7038,Block,Morar,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,7443,Block,Morbi City,LGD,673,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +LGD,6498,Block,Moreh,LGD,716,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false +LGD,3387,Block,Morena,LGD,417,District,3387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +LGD,7047,Block,Morena Nagar,LGD,417,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +LGD,279,Block,Mori,LGD,57,District,279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,6857,Block,Morinda,LGD,42,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +LGD,5615,Block,Mormugao,LGD,552,District,5615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +LGD,6461,Block,Morni St,LGD,70,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +LGD,4006,Block,Morshi,LGD,468,District,4006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,4362,Block,Morthad,LGD,516,District,4362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,3799,Block,Morvi,LGD,673,District,3799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +LGD,1291,Block,Morwa,LGD,217,District,1291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,3884,Block,Morwa (Hadaf),LGD,454,District,3884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +LGD,6668,Block,Mosara,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,6309,Block,Motakonduru,LGD,697,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,3980,Block,Motala,LGD,472,District,3980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,856,Block,Moth,LGD,153,District,856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +LGD,4640,Block,Mothey,LGD,696,District,4640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,4625,Block,Mothkur,LGD,697,District,4625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,1041,Block,Motihari,LGD,213,District,1041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,3230,Block,Motu,LGD,364,District,3230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +LGD,6734,Block,Moungri,LGD,14,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +LGD,5032,Block,Movva,LGD,510,District,5032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,2476,Block,Moyna,LGD,317,District,2476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,6504,Block,Mualnuam,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,7099,Block,Mudalgi,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,5216,Block,Muddanur,LGD,504,District,5216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,5453,Block,Muddebihal,LGD,530,District,5453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,5445,Block,Mudhol,LGD,524,District,5445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,4341,Block,Mudhole,LGD,680,District,4341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,5531,Block,Mudigere,LGD,532,District,5531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,4758,Block,Mudigonda,LGD,509,District,4758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,5339,Block,Mudigubba,LGD,754,District,5339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5020,Block,Mudinepalle,LGD,748,District,5020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4101,Block,Mudkhed,LGD,485,District,4101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,6671,Block,Muduchinthalapally,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,5857,Block,Mudukulathur,LGD,583,District,5857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,6764,Block,Mugal Maidan,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,6235,Block,Mugpal,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,974,Block,Muhammadabad Gohna,LGD,168,District,974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +LGD,1492,Block,Muhra,LGD,196,District,1492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,7300,Block,Mukdega,LGD,386,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,215,Block,Mukerian,LGD,33,District,215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +LGD,4109,Block,Mukhed,LGD,485,District,4109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,3963,Block,Muktainagar (Edlabad),LGD,478,District,3963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,1563,Block,Mukto Circle,LGD,238,District,1563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,5656,Block,Mukundapuram,LGD,566,District,5656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +LGD,4072,Block,Mul,LGD,473,District,4072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,6839,Block,Mulagada,LGD,520,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,5367,Block,Mulakalacheruvu,LGD,753,District,5367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6430,Block,Mulana St,LGD,58,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +LGD,5594,Block,Mulbagal,LGD,542,District,5594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +LGD,4059,Block,Mulchera,LGD,475,District,4059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,3793,Block,Muli,LGD,460,District,3793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,4748,Block,Mulkalapally,LGD,690,District,4748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,7198,Block,Mulki,LGD,534,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,4192,Block,Mulshi,LGD,490,District,4192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,3604,Block,Multai,LGD,394,District,3604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,113,Block,Multhan,LGD,18,District,113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,4486,Block,Mulug,LGD,692,District,4486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,4689,Block,Mulug,LGD,720,District,4689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,4932,Block,Mummidivaram,LGD,747,District,4932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4642,Block,Munagala,LGD,696,District,4642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,4877,Block,Munagapaka,LGD,744,District,4877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4841,Block,Munchingi Puttu,LGD,745,District,4841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5472,Block,Mundargi,LGD,537,District,5472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +LGD,494,Block,Mundawar,LGD,770,District,494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5482,Block,Mundgod,LGD,550,District,5482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,7411,Block,Mundi,LGD,405,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,7583,Block,Mundka,LGD,794,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,5113,Block,Mundlamuru,LGD,517,District,5113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,3730,Block,Mundra,LGD,449,District,3730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,6378,Block,Mundwa,LGD,110,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,3688,Block,Mungaoli,LGD,391,District,3688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +LGD,3292,Block,Mungeli,LGD,647,District,3292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false +LGD,1356,Block,Munger,LGD,207,District,1356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,3173,Block,Muniguda,LGD,370,District,3173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,4477,Block,Munipally,LGD,691,District,4477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,315,Block,Munsiari,LGD,53,District,315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,4647,Block,Munugode,LGD,514,District,4647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,6238,Block,Mupkal,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,5068,Block,Muppalla,LGD,751,District,5068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2249,Block,Murarai - I,LGD,307,District,2249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2250,Block,Murarai - II,LGD,307,District,2250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,4171,Block,Murbad,LGD,497,District,4171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +LGD,2703,Block,Murhu,LGD,606,District,2703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false +LGD,7454,Block,Muribahal,LGD,345,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,1164,Block,Murliganj,LGD,205,District,1164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,2237,Block,Murshidabad Jiaganj,LGD,319,District,2237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,3992,Block,Murtijapur,LGD,467,District,3992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +LGD,4178,Block,Murud,LGD,491,District,4178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,3620,Block,Murwara Or Katni,LGD,413,District,3620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,2609,Block,Musabani,LGD,327,District,2609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,912,Block,Musafirkhana,LGD,640,District,912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +LGD,1212,Block,Musahri,LGD,208,District,1212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,4501,Block,Musheerabad,LGD,507,District,4501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,5774,Block,Musiri,LGD,591,District,5774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,7393,Block,Mussoorie,LGD,49,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +LGD,4434,Block,Mustabad,LGD,683,District,4434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,5002,Block,Musunuru,LGD,748,District,5002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4404,Block,Mutharam Mahadevpur,LGD,687,District,4404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,4406,Block,Mutharam (Manthani),LGD,682,District,4406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,5181,Block,Muthukur,LGD,515,District,5181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,7408,Block,Muthupettai,LGD,590,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,5662,Block,Muvattupuzha,LGD,555,District,5662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +LGD,708,Block,Muzaffarnagar,LGD,172,District,708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +LGD,7170,Block,Mylapore,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,4995,Block,Mylavaram,LGD,749,District,4995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5200,Block,Mylavaram,LGD,504,District,5200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,1989,Block,Mylliem,LGD,274,District,1989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,5572,Block,Mysuru,LGD,545,District,5572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,2307,Block,Nabadwip,LGD,320,District,2307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,2238,Block,Nabagram,LGD,319,District,2238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,3196,Block,Nabarangapur P.S,LGD,366,District,3196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,252,Block,Nabha,LGD,41,District,252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +LGD,1483,Block,Nabinagar,LGD,189,District,1483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,1609,Block,Nacho Sdo,LGD,241,District,1609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,141,Block,Nadaun,LGD,17,District,141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,509,Block,Nadbai,LGD,91,District,509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +LGD,5069,Block,Nadendla,LGD,751,District,5069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3876,Block,Nadiad,LGD,450,District,3876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,6531,Block,Nadiad City,LGD,450,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,4641,Block,Nadigudem,LGD,696,District,4641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,6547,Block,Nadikuda,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,521,Block,Nadoti,LGD,108,District,521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,7416,Block,Naduar,LGD,301,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +LGD,2044,Block,Na-Duar,LGD,705,District,2044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +LGD,1568,Block,Nafra Adc,LGD,787,District,1568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,5403,Block,Nagalapuram,LGD,752,District,5403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6280,Block,Nagalgidda,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,5547,Block,Nagamangala,LGD,544,District,5547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +LGD,2035,Block,Nagaon,LGD,297,District,2035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +LGD,5799,Block,Nagapattinam,LGD,579,District,5799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +LGD,4209,Block,Nagar,LGD,466,District,4209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,507,Block,Nagar,LGD,767,District,507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5095,Block,Nagaram,LGD,750,District,5095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6298,Block,Nagaram,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,2123,Block,Nagarbera,LGD,291,District,2123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,7155,Block,Nagarfort,LGD,116,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,5406,Block,Nagari,LGD,503,District,5406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,4583,Block,Nagarkurnool,LGD,694,District,4583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,1379,Block,Nagar Nausa,LGD,209,District,1379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,2503,Block,Nagaruntari,LGD,328,District,2503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,560,Block,Nagaur,LGD,110,District,560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,5038,Block,Nagayalanka,LGD,510,District,5038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,4066,Block,Nagbhid,LGD,473,District,4066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,3509,Block,Nagda,LGD,435,District,3509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,714,Block,Nagina,LGD,132,District,714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +LGD,6477,Block,Nagina St,LGD,604,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +LGD,1744,Block,Naginimora,LGD,247,District,1744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,4387,Block,Nagireddypet,LGD,685,District,4387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,3464,Block,Nagod,LGD,426,District,3464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +LGD,4031,Block,Nagpur (Rural),LGD,484,District,4031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,4032,Block,Nagpur (Urban),LGD,484,District,4032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,1259,Block,Nagra,LGD,218,District,1259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,2169,Block,Nagrakata,LGD,314,District,2169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,2692,Block,Nagri,LGD,339,District,2692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,3347,Block,Nagri,LGD,377,District,3347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +LGD,6727,Block,Nagri Parole,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,6711,Block,Nagrota,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,101,Block,Nagrota Bagwan,LGD,18,District,101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,6895,Block,Nagrota Surian,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,6768,Block,Nagseni,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,5126,Block,Naguluppala Padu,LGD,517,District,5126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,172,Block,Nahan,LGD,24,District,172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,2069,Block,Naharkatiya,LGD,286,District,2069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +LGD,1596,Block,Naharlagun Eac,LGD,237,District,1596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,6465,Block,Nahar St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +LGD,5194,Block,Naidupet,LGD,752,District,5194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4106,Block,Naigaon (Khairgaon),LGD,485,District,4106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,3478,Block,Naigarhi,LGD,766,District,3478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,155,Block,Naina Devi,LGD,15,District,155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +LGD,6337,Block,Nainbag,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,340,Block,Nainital,LGD,51,District,340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,3646,Block,Nainpur,LGD,415,District,3646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +LGD,623,Block,Nainwa,LGD,94,District,623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +LGD,6973,Block,Nai Sarai,LGD,391,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +LGD,451,Block,Najafgarh,LGD,84,District,451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +LGD,712,Block,Najibabad,LGD,132,District,712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +LGD,2304,Block,Nakashipara,LGD,320,District,2304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,3727,Block,Nakhatrana,LGD,449,District,3727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,4880,Block,Nakkapalli,LGD,744,District,4880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,210,Block,Nakodar,LGD,34,District,210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +LGD,4636,Block,Nakrekal,LGD,514,District,4636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,2798,Block,Naktideul,LGD,371,District,2798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,703,Block,Nakur,LGD,177,District,703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +LGD,2679,Block,Nala,LGD,333,District,2679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false +LGD,161,Block,Nalagarh,LGD,25,District,161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,2136,Block,Nalbari,LGD,298,District,2136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +LGD,4646,Block,Nalgonda,LGD,514,District,4646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,2251,Block,Nalhati - I,LGD,307,District,2251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2252,Block,Nalhati - II,LGD,307,District,2252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,3516,Block,Nalkheda,LGD,667,District,3516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +LGD,4692,Block,Nallabelli,LGD,522,District,4692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,5359,Block,Nallachervu,LGD,754,District,5359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4956,Block,Nallajerla,LGD,505,District,4956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,5344,Block,Nallamada,LGD,754,District,5344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6623,Block,Nallampalli,LGD,571,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +LGD,5747,Block,Namakkal,LGD,580,District,5747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +LGD,6638,Block,Nambiyur,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,1873,Block,Nambol,LGD,252,District,1873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false +LGD,5341,Block,Nambulapulakunta,LGD,754,District,5341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1551,Block,Namchi,LGD,227,District,1551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false +LGD,7335,Block,Namdong,LGD,275,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false +LGD,157,Block,Namhol,LGD,15,District,157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +LGD,2439,Block,Namkhana,LGD,304,District,2439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2690,Block,Namkum,LGD,339,District,2690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,4654,Block,Nampally,LGD,514,District,4654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4504,Block,Nampally,LGD,507,District,4504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,1676,Block,Nampong Sdo,LGD,229,District,1676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,1732,Block,Namsai Hq,LGD,678,District,1732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false +LGD,1831,Block,Namsang,LGD,615,District,1831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false +LGD,6115,Block,Namsing Circle,LGD,232,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +LGD,7542,Block,Namthang,LGD,227,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false +LGD,6580,Block,Namtok Eac,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,6364,Block,Nanakmatta,LGD,56,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,7547,Block,Nanapodha,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,5917,Block,Nancowry,LGD,603,District,5917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false +LGD,7481,Block,Nandahandi,LGD,366,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,2474,Block,Nanda Kumar,LGD,317,District,2474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,5243,Block,Nandalur,LGD,504,District,5243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,3214,Block,Nandapur,LGD,363,District,3214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,5255,Block,Nandavaram,LGD,511,District,5255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,4100,Block,Nanded,LGD,485,District,4100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,4147,Block,Nandgaon,LGD,487,District,4147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,4012,Block,Nandgaon-Khandeshwar,LGD,468,District,4012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,7248,Block,Nandghat,LGD,650,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,4782,Block,Nandigam,LGD,519,District,4782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,6321,Block,Nandigama,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,4993,Block,Nandigama,LGD,749,District,4993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2484,Block,Nandigram - I,LGD,317,District,2484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2485,Block,Nandigram - II,LGD,317,District,2485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,5260,Block,Nandikotkur,LGD,755,District,5260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4359,Block,Nandipet,LGD,516,District,4359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,5014,Block,Nandivada,LGD,510,District,5014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,3910,Block,Nandod,LGD,452,District,3910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +LGD,6344,Block,Nandprayag,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,3978,Block,Nandura,LGD,472,District,3978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,3954,Block,Nandurbar,LGD,486,District,3954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +LGD,5284,Block,Nandyal Rural,LGD,755,District,5284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7425,Block,Nandyal Urban,LGD,755,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,263,Block,Nangal,LGD,42,District,263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +LGD,6456,Block,Nangal Chawdhary,LGD,69,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +LGD,6053,Block,Nangal Rajawatan,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,7595,Block,Nangloi Jat,LGD,82,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false +LGD,4461,Block,Nangnoor,LGD,692,District,4461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,5879,Block,Nanguneri,LGD,592,District,5879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +LGD,7313,Block,Nangur,LGD,374,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,5574,Block,Nanjangud,LGD,545,District,5574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,178,Block,Nankhari,LGD,23,District,178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,5805,Block,Nannilam,LGD,590,District,5805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,2263,Block,Nanoor,LGD,307,District,2263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,919,Block,Nanpara,LGD,125,District,919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +LGD,1078,Block,Nanpur,LGD,221,District,1078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,2050,Block,Naobaicha,LGD,295,District,2050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +LGD,1315,Block,Naokothi,LGD,191,District,1315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,6954,Block,Narag,LGD,24,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,358,Block,Naraingarh,LGD,58,District,358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +LGD,874,Block,Naraini,LGD,128,District,874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +LGD,3161,Block,Narala,LGD,358,District,3161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,4799,Block,Narasannapeta,LGD,519,District,4799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,4987,Block,Narasapuram,LGD,523,District,4987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,5067,Block,Narasaraopet,LGD,751,District,5067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5527,Block,Narasimharajapura,LGD,532,District,5527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,6670,Block,Narayanaraopet,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,5400,Block,Narayanavanam,LGD,752,District,5400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6333,Block,Narayanbagar,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,3642,Block,Narayanganj,LGD,415,District,3642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +LGD,2465,Block,Narayangarh,LGD,318,District,2465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,4452,Block,Narayankhed,LGD,691,District,4452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,3204,Block,Narayanpatana,LGD,363,District,3204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,4570,Block,Narayanpet,LGD,721,District,4570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,2048,Block,Narayanpur,LGD,295,District,2048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +LGD,2676,Block,Narayanpur,LGD,333,District,2676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false +LGD,1329,Block,Narayanpur,LGD,192,District,1329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,3367,Block,Narayanpur,LGD,637,District,3367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false +LGD,6936,Block,Narayanpur,LGD,782,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,4648,Block,Narayanpur,LGD,697,District,4648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,6813,Block,Narbal,LGD,2,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +LGD,1511,Block,Nardiganj,LGD,210,District,1511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,430,Block,Narela,LGD,794,District,430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,299,Block,Narendra Nagar,LGD,55,District,299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,5468,Block,Nargund,LGD,537,District,5468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +LGD,3352,Block,Narharpur,LGD,381,District,3352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,1521,Block,Narhat,LGD,210,District,1521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,1651,Block,Nari Adc,LGD,719,District,1651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false +LGD,1036,Block,Narkatia,LGD,213,District,1036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1017,Block,Narkatiaganj,LGD,211,District,1017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,4634,Block,Narketpally,LGD,514,District,4634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4023,Block,Narkhed,LGD,484,District,4023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,4675,Block,Narmetta,LGD,689,District,4675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,412,Block,Narnaul,LGD,69,District,412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +LGD,395,Block,Narnaund,LGD,792,District,395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +LGD,4312,Block,Narnoor,LGD,501,District,4312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,5328,Block,Narpala,LGD,502,District,5328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,1112,Block,Narpatganj,LGD,188,District,1112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,4708,Block,Narsampet,LGD,522,District,4708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,6352,Block,Narsan,LGD,50,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +LGD,4488,Block,Narsapur,LGD,513,District,4488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,6208,Block,Narsapur G,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,3636,Block,Narsimhapur,LGD,418,District,3636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +LGD,4719,Block,Narsimhulapet,LGD,688,District,4719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,3568,Block,Narsinghgarh,LGD,422,District,3568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,2944,Block,Narsinghpur,LGD,350,District,2944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,6272,Block,Narsingi,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,4854,Block,Narsipatnam,LGD,744,District,4854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4588,Block,Narwa,LGD,721,District,4588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,6163,Block,Narwal,LGD,157,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +LGD,382,Block,Narwana,LGD,65,District,382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +LGD,3409,Block,Narwar,LGD,432,District,3409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,7202,Block,Narwav,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,4152,Block,Nashik,LGD,487,District,4152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,611,Block,Nasirabad,LGD,86,District,611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,6226,Block,Naspur,LGD,684,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,1463,Block,Nasriganj,LGD,215,District,1463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,6244,Block,Nasurullabad,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,3903,Block,Nasvadi,LGD,668,District,3903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +LGD,3575,Block,Nateran,LGD,437,District,3575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,5763,Block,Natham,LGD,572,District,5763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,4852,Block,Nathavaram,LGD,744,District,4852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,645,Block,Nathdwara,LGD,112,District,645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,1339,Block,Nathnagar,LGD,192,District,1339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,6470,Block,Nathusari Chopta,LGD,74,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +LGD,5963,Block,Natrampalli,LGD,732,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +LGD,1404,Block,Naubatpur,LGD,212,District,1404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,1332,Block,Naugachhia,LGD,192,District,1332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,7129,Block,Nauganwa,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,2942,Block,Naugaon,LGD,355,District,2942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +LGD,933,Block,Naugarh,LGD,182,District,933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +LGD,6870,Block,Naugarh,LGD,135,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +LGD,6831,Block,Naugawan Sadat,LGD,154,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +LGD,1469,Block,Nauhatta,LGD,215,District,1469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,1171,Block,Nauhatta,LGD,216,District,1171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,1030,Block,Nautan,LGD,211,District,1030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,1229,Block,Nautan,LGD,222,District,1229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,944,Block,Nautanwa,LGD,164,District,944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +LGD,5474,Block,Navalgund,LGD,536,District,5474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +LGD,4358,Block,Navipet,LGD,516,District,4358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,3922,Block,Navsari,LGD,453,District,3922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +LGD,566,Block,Nawa,LGD,768,District,566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,2625,Block,Nawa Bazar,LGD,338,District,2625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,788,Block,Nawabganj,LGD,130,District,788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +LGD,898,Block,Nawabganj,LGD,129,District,898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +LGD,4556,Block,Nawabpet,LGD,512,District,4556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,4514,Block,Nawabpet,LGD,698,District,4514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,1512,Block,Nawada,LGD,210,District,1512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,2588,Block,Nawadih,LGD,322,District,2588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,2621,Block,Nawadiha Bazar/Nawadiha*,LGD,338,District,2621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,3311,Block,Nawagarh,LGD,650,District,3311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,3280,Block,Nawagarh,LGD,379,District,3280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,491,Block,Nawalgarh,LGD,106,District,491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,1445,Block,Nawanagar,LGD,194,District,1445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,218,Block,Nawanshahr,LGD,40,District,218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +LGD,3955,Block,Nawapur,LGD,486,District,3955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +LGD,2243,Block,Nawda,LGD,319,District,2243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2163,Block,Naxalbari,LGD,309,District,2163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,7267,Block,Naya Baradwar,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,7157,Block,Nayagaon,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,3028,Block,Nayagarh,LGD,367,District,3028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +LGD,2458,Block,Nayagram,LGD,703,District,2458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +LGD,2073,Block,Nazira,LGD,300,District,2073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +LGD,7153,Block,Nechhwa,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,5690,Block,Nedumangad,LGD,565,District,5690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +LGD,5807,Block,Needamangalam,LGD,590,District,5807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,1491,Block,Neem Chak Bathani,LGD,196,District,1491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,556,Block,Neem Ka Thana,LGD,114,District,556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,6380,Block,Neemrana,LGD,782,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3489,Block,Neemuch,LGD,419,District,3489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +LGD,7035,Block,Neemuch Nagar,LGD,419,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +LGD,5060,Block,Nekarikallu,LGD,751,District,5060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4713,Block,Nekkonda,LGD,522,District,4713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,4759,Block,Nelakondapalli,LGD,509,District,4759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,5601,Block,Nelamangala,LGD,526,District,5601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +LGD,4716,Block,Nellikudur,LGD,688,District,4716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,4837,Block,Nellimarla,LGD,521,District,4837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,5177,Block,Nellore Rural,LGD,515,District,5177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,7182,Block,Nellore Urban,LGD,515,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,6664,Block,Nemili,LGD,731,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +LGD,4331,Block,Nennel,LGD,684,District,4331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,3721,Block,Nepanagar,LGD,397,District,3721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +LGD,4079,Block,Ner,LGD,500,District,4079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,4325,Block,Neradigonda,LGD,501,District,4325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,4665,Block,Nereducherla,LGD,696,District,4665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,6308,Block,Neredugommu,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,187,Block,Nerwa,LGD,23,District,187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,6170,Block,Netrang,LGD,442,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,2383,Block,Neturia,LGD,321,District,2383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,4206,Block,Nevasa,LGD,466,District,4206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,7593,Block,New Delhi,LGD,79,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false +LGD,6575,Block,New Seren Circle,LGD,719,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false +LGD,5692,Block,Neyyattinkara,LGD,565,District,5692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +LGD,1906,Block,Ngopa,LGD,727,District,1906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +LGD,1818,Block,Ngoungchung,LGD,249,District,1818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false +LGD,2967,Block,Niali,LGD,350,District,2967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,198,Block,Nichar,LGD,19,District,198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +LGD,945,Block,Nichlaul,LGD,164,District,945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +LGD,4960,Block,Nidadavole,LGD,505,District,4960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,7075,Block,Nidagundi,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,4968,Block,Nidamarru,LGD,748,District,4968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4661,Block,Nidmanoor,LGD,514,District,4661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,6451,Block,Nigdu St,LGD,67,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +LGD,797,Block,Nighasan,LGD,159,District,797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +LGD,231,Block,Nihal Singhwala,LGD,38,District,231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +LGD,1795,Block,Nihokhu,LGD,764,District,1795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,138,Block,Nihri,LGD,22,District,138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,6587,Block,Nikte Kodum Circle,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false +LGD,2903,Block,Nilagiri,LGD,346,District,2903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,5767,Block,Nilakkottai,LGD,572,District,5767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,2632,Block,Nilambar-Pitambarpur(Lesliganj),LGD,338,District,2632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,2103,Block,Nilambazar,LGD,293,District,2103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +LGD,5642,Block,Nilambur,LGD,562,District,5642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +LGD,4233,Block,Nilanga,LGD,481,District,4233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,6552,Block,Nilling Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,370,Block,Nilokheri,LGD,67,District,370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +LGD,3058,Block,Nimapada,LGD,369,District,3058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,663,Block,Nimbahera,LGD,95,District,663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,2751,Block,Nimdih,LGD,341,District,2751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,5393,Block,Nimmanapalle,LGD,753,District,5393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5404,Block,Nindra,LGD,503,District,5404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,4155,Block,Niphad,LGD,487,District,4155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,7105,Block,Nippani,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,7211,Block,Nirjharna,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,1101,Block,Nirmali,LGD,223,District,1101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,6210,Block,Nirmal Rural,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,4344,Block,Nirmal U,LGD,680,District,4344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,122,Block,Nirmand,LGD,20,District,122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,2587,Block,Nirsa-Cum-Chirkunda,LGD,325,District,2587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,2958,Block,Nischintakoili,LGD,350,District,2958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,6450,Block,Nising St,LGD,67,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +LGD,6886,Block,Nither,LGD,20,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,1792,Block,Niuland,LGD,764,District,1792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,617,Block,Niwai,LGD,116,District,617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,3560,Block,Niwali,LGD,393,District,3560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,3415,Block,Niwari,LGD,722,District,3415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +LGD,3641,Block,Niwas,LGD,415,District,3641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +LGD,967,Block,Nizamabad,LGD,123,District,967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +LGD,4368,Block,Nizamabad North,LGD,516,District,4368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,6233,Block,Nizamabad Rural,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,6385,Block,Nizamabad South,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,5094,Block,Nizampatnam,LGD,750,District,5094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6271,Block,Nizampet,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,7535,Block,Nizampet (28),LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,4385,Block,Nizamsagar,LGD,685,District,4385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,3942,Block,Nizar,LGD,641,District,3942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +LGD,2736,Block,Noamundi,LGD,343,District,2736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,471,Block,Nohar,LGD,101,District,471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +LGD,168,Block,Nohra,LGD,24,District,168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,1466,Block,Nokha,LGD,215,District,1466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,477,Block,Nokha,LGD,93,District,477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,7132,Block,Nokhra,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,1823,Block,Nokhu,LGD,736,District,1823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1821,Block,Noklak,LGD,736,District,1821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1814,Block,Noksen,LGD,249,District,1814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false +LGD,1980,Block,Nongstoin,LGD,279,District,1980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false +LGD,1387,Block,Noorsarai,LGD,209,District,1387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,2126,Block,North Guwahati,LGD,291,District,2126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,2052,Block,North Lakhimpur,LGD,295,District,2052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +LGD,3427,Block,Nowgong,LGD,398,District,3427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,3486,Block,Nowrozabad,LGD,436,District,3486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +LGD,25,Block,Nowshera,LGD,12,District,25,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,1855,Block,Nsong,LGD,613,District,1855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +LGD,7504,Block,Nuagad,LGD,353,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +LGD,3025,Block,Nuagaon,LGD,367,District,3025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +LGD,1447,Block,Nuaon,LGD,200,District,1447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,3154,Block,Nuapada,LGD,368,District,3154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +LGD,422,Block,Nuh,LGD,604,District,422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +LGD,1867,Block,Nungba,LGD,714,District,1867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false +LGD,93,Block,Nurpur,LGD,18,District,93,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,4621,Block,Nuthanakal,LGD,696,District,4621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,5063,Block,Nuzendla,LGD,751,District,5063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5003,Block,Nuzividu,LGD,748,District,5003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4473,Block,Nyalkal,LGD,691,District,4473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,7076,Block,Nyamathi,LGD,535,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +LGD,1706,Block,Nyapin Adc,LGD,233,District,1706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,6844,Block,Nyobia Circle,LGD,233,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,7162,Block,Nyoma,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +LGD,1480,Block,Obra,LGD,189,District,1480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,7127,Block,Obra,LGD,184,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +LGD,7384,Block,Obri,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,5358,Block,Obuladevaracheruvu,LGD,754,District,5358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5248,Block,Obulavaripalle,LGD,752,District,5248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3031,Block,Odagaon,LGD,367,District,3031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +LGD,7503,Block,Odapada,LGD,352,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +LGD,5761,Block,Oddanchatram,LGD,572,District,5761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,4426,Block,Odela,LGD,682,District,4426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,3243,Block,Odgi,LGD,648,District,3243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,7557,Block,Ogad,LGD,441,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,6350,Block,Okhalkanda,LGD,51,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,3812,Block,Okhamandal,LGD,674,District,3812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +LGD,6107,Block,Old Ziro Sdo,LGD,236,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,false +LGD,3932,Block,Olpad,LGD,459,District,3932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,5737,Block,Omalur,LGD,584,District,5737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,4243,Block,Omarga,LGD,488,District,4243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +LGD,2370,Block,Onda,LGD,305,District,2370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,5139,Block,Ongole Rural,LGD,517,District,5139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,7430,Block,Ongole Urban,LGD,517,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,1766,Block,Ongpangkong,LGD,246,District,1766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,5989,Block,Ongpangkong (N),LGD,246,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,854,Block,Orai,LGD,151,District,854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +LGD,5815,Block,Orathanadu,LGD,586,District,5815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,3416,Block,Orchha,LGD,722,District,3416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +LGD,3368,Block,Orchha,LGD,637,District,3368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false +LGD,2685,Block,Ormanjhi,LGD,339,District,2685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,5268,Block,Orvakal,LGD,511,District,5268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,568,Block,Osian,LGD,107,District,568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,5865,Block,Ottapidaram,LGD,594,District,5865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,5647,Block,Ottappalam,LGD,563,District,5647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +LGD,5910,Block,Oulgaret,LGD,600,District,5910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +LGD,2905,Block,Oupada,LGD,346,District,2905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,5295,Block,Owk,LGD,755,District,5295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1654,Block,Oyan Circle,LGD,232,District,1654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +LGD,5189,Block,Ozili,LGD,752,District,5189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1218,Block,Pach Deuri,LGD,197,District,1218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,169,Block,Pachhad,LGD,24,District,169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,2133,Block,Pachim Nalbari,LGD,298,District,2133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +LGD,4818,Block,Pachipenta,LGD,743,District,4818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3973,Block,Pachora,LGD,478,District,3973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,3569,Block,Pachore,LGD,422,District,3569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,579,Block,Pachpadra,LGD,775,District,579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,682,Block,Pachpahar,LGD,105,District,682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,7349,Block,Pachpedi,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,1237,Block,Pachrukhi,LGD,222,District,1237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,2757,Block,Padampur,LGD,347,District,2757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,460,Block,Padampur,LGD,100,District,460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,6294,Block,Padara,LGD,694,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,3802,Block,Paddhari,LGD,457,District,3802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,4847,Block,Paderu,LGD,745,District,4847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,123,Block,Padhar,LGD,22,District,123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,2646,Block,Padma,LGD,332,District,2646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,4864,Block,Padmanabham,LGD,520,District,4864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,3185,Block,Padmapur,LGD,370,District,3185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,3906,Block,Padra,LGD,461,District,3906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,955,Block,Padrauna,LGD,160,District,955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +LGD,2627,Block,Padwa,LGD,338,District,2627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,5261,Block,Pagidyala,LGD,755,District,5261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,53,Block,Pahalgam,LGD,1,District,53,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,505,Block,Pahari,LGD,767,District,505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,1044,Block,Paharpur,LGD,213,District,1044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,6194,Block,Pahloo,LGD,622,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +LGD,2755,Block,Paikmal,LGD,347,District,2755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,6157,Block,Pailani,LGD,128,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +LGD,4141,Block,Paithan,LGD,469,District,4141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,6955,Block,Pajhota,LGD,24,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,5396,Block,Pakala,LGD,752,District,5396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2719,Block,Pakar Tanr,LGD,342,District,2719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,2576,Block,Pakaur,LGD,337,District,2576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +LGD,3354,Block,Pakhanjur,LGD,381,District,3354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,1581,Block,Pakke Kessang Eac,LGD,723,District,1581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false +LGD,6848,Block,Pakoti Circle,LGD,231,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,1515,Block,Pakribarawan,LGD,210,District,1515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,1052,Block,Pakri Dayal,LGD,213,District,1052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,2578,Block,Pakuria,LGD,337,District,2578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +LGD,1554,Block,Pakyong,LGD,741,District,1554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +LGD,4977,Block,Palacoderu,LGD,523,District,4977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,4988,Block,Palacole,LGD,523,District,4988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,6301,Block,Palakeedu,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,5649,Block,Palakkad,LGD,563,District,5649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +LGD,5885,Block,Palakkodu,LGD,571,District,5885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +LGD,4784,Block,Palakonda,LGD,743,District,4784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6215,Block,Palakurthy,LGD,682,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,4697,Block,Palakurthy,LGD,689,District,4697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,3000,Block,Palalahada,LGD,344,District,3000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +LGD,4123,Block,Palam,LGD,489,District,4123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,5422,Block,Palamaner,LGD,503,District,5422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,111,Block,Palampur,LGD,18,District,111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,5760,Block,Palani,LGD,572,District,5760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,3739,Block,Palanpur,LGD,441,District,3739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,7436,Block,Palanpur City,LGD,441,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,3327,Block,Palari,LGD,644,District,3327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,4775,Block,Palasa,LGD,519,District,4775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,5432,Block,Palasamudram,LGD,503,District,5432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,2125,Block,Palasbari,LGD,291,District,2125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,1119,Block,Palasi,LGD,188,District,1119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,5877,Block,Palayamkottai,LGD,592,District,5877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +LGD,7212,Block,Paldewal,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,3420,Block,Palera,LGD,434,District,3420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,4163,Block,Palghar,LGD,665,District,4163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +LGD,6418,Block,Palhawas St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +LGD,3274,Block,Pali,LGD,383,District,3274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,6881,Block,Pali,LGD,161,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +LGD,3485,Block,Pali,LGD,436,District,3485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +LGD,601,Block,Pali,LGD,111,District,601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +LGD,798,Block,Palia,LGD,159,District,798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +LGD,1407,Block,Paliganj,LGD,212,District,1407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,6250,Block,Palimela,LGD,687,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,1703,Block,Palin Circle,LGD,677,District,1703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false +LGD,3858,Block,Palitana,LGD,443,District,3858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,2717,Block,Palkot,LGD,331,District,2717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,5905,Block,Palladam,LGD,634,District,5905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,6629,Block,Pallavaram,LGD,730,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +LGD,1660,Block,Palling Circle,LGD,240,District,1660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,5697,Block,Pallipattu,LGD,589,District,5697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,7213,Block,Pallu,LGD,101,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +LGD,2554,Block,Palojori,LGD,324,District,2554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,3939,Block,Palsana,LGD,459,District,3939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,4297,Block,Palus,LGD,493,District,4297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,4737,Block,Palvoncha,LGD,690,District,4737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,427,Block,Palwal,LGD,619,District,427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +LGD,7519,Block,Palwancha,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,5028,Block,Pamarru,LGD,510,District,5028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,3283,Block,Pamgarh,LGD,379,District,3283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,5315,Block,Pamidi,LGD,502,District,5315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5026,Block,Pamidimukkala,LGD,510,District,5026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,48,Block,Pampore,LGD,11,District,48,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +LGD,5266,Block,Pamulapadu,LGD,755,District,5266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5146,Block,Pamur,LGD,790,District,5146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3632,Block,Panagar,LGD,411,District,3632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,1249,Block,Panapur,LGD,218,District,1249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,6735,Block,Panchari,LGD,14,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +LGD,357,Block,Panchkula,LGD,70,District,357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +LGD,2405,Block,Panchla,LGD,313,District,2405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,6899,Block,Panchrukhi,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,2273,Block,Pandabeswar,LGD,704,District,2273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +LGD,1418,Block,Pandarak,LGD,212,District,1418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,3301,Block,Pandariya,LGD,382,District,3301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +LGD,1094,Block,Pandaul,LGD,206,District,1094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,5548,Block,Pandavapura,LGD,544,District,5548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +LGD,3718,Block,Pandhana,LGD,405,District,3718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,4249,Block,Pandharpur,LGD,496,District,4249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,3658,Block,Pandhurna,LGD,785,District,3658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,6869,Block,Pandit Deendayal Upadhyay Nagar,LGD,135,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +LGD,2622,Block,Pandu,LGD,338,District,2622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,2344,Block,Pandua,LGD,312,District,2344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,4601,Block,Pangal,LGD,693,District,4601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,1692,Block,Pangchao Sdo,LGD,666,District,1692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false +LGD,83,Block,Pangi,LGD,16,District,83,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,1645,Block,Pangin Eac,LGD,679,District,1645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,6951,Block,Pangna,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,4284,Block,Panhala,LGD,480,District,4284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,375,Block,Panipat,LGD,71,District,375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +LGD,6678,Block,Panisagar,LGD,270,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +LGD,6940,Block,Panjehra,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,6358,Block,Pankhu,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,2630,Block,Panki,LGD,338,District,2630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,3436,Block,Panna,LGD,420,District,3436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,7463,Block,Panposh,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,5788,Block,Panruti,LGD,570,District,5788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,3559,Block,Pansemal,LGD,393,District,3559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,2470,Block,Panskura,LGD,317,District,2470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,1824,Block,Panso,LGD,736,District,1824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,6804,Block,Pantha Chowk,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +LGD,5754,Block,Panthalur,LGD,587,District,5754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +LGD,4173,Block,Panvel,LGD,491,District,4173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,5280,Block,Panyam,LGD,755,District,5280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1859,Block,Paomata,LGD,257,District,1859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +LGD,173,Block,Paonta Sahib,LGD,24,District,173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,6924,Block,Paota,LGD,782,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5812,Block,Papanasam,LGD,586,District,5812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,4455,Block,Papannapet,LGD,513,District,4455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,3193,Block,Paparahandi,LGD,366,District,3193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,7367,Block,Paparda,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,5887,Block,Pappireddipatti,LGD,571,District,5887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +LGD,2380,Block,Para,LGD,321,District,2380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,1496,Block,Paraiya,LGD,196,District,1496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,2987,Block,Parajang,LGD,352,District,2987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +LGD,3105,Block,Paralakhemundi,LGD,353,District,3105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +LGD,5856,Block,Paramakudi,LGD,583,District,5856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,5748,Block,Paramathi-Velur,LGD,580,District,5748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +LGD,4236,Block,Paranda,LGD,488,District,4236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +LGD,1602,Block,Parang Circle,LGD,237,District,1602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,3652,Block,Parasia,LGD,399,District,3652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,3675,Block,Paraswada,LGD,392,District,3675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,4870,Block,Paravada,LGD,744,District,4870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5659,Block,Paravur,LGD,555,District,5659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +LGD,1389,Block,Parbalpur,LGD,209,District,1389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,564,Block,Parbatsar,LGD,768,District,564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,1328,Block,Parbatta,LGD,202,District,1328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +LGD,4118,Block,Parbhani,LGD,489,District,4118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,6841,Block,Parbuk Sdo,LGD,235,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false +LGD,5108,Block,Parchur,LGD,750,District,5108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7601,Block,Pardi,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,4540,Block,Pargi,LGD,698,District,4540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,6705,Block,Pargwal,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,5355,Block,Parigi,LGD,754,District,5355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1067,Block,Parihar,LGD,221,District,1067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,4679,Block,Parkal,LGD,686,District,4679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,4224,Block,Parli,LGD,470,District,4224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,4211,Block,Parner,LGD,466,District,4211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,3970,Block,Parola,LGD,478,District,3970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,1201,Block,Paroo,LGD,208,District,1201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,1263,Block,Parsa,LGD,218,District,1263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,1071,Block,Parsauni,LGD,221,District,1071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,4027,Block,Parseoni,LGD,484,District,4027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,4131,Block,Partur,LGD,479,District,4131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +LGD,4714,Block,Parvathagiri,LGD,522,District,4714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,4812,Block,Parvathipuram,LGD,743,District,4812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7126,Block,Parwanoo,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,7237,Block,Pasan,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,6118,Block,Pasighat Hq,LGD,232,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +LGD,6846,Block,Passa Valley Circle,LGD,723,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false +LGD,1053,Block,Patahi,LGD,213,District,1053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,2604,Block,Patamda,LGD,327,District,2604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,2626,Block,Patan,LGD,338,District,2626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,4264,Block,Patan,LGD,494,District,4264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,3629,Block,Patan,LGD,411,District,3629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,7227,Block,Patan,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,3747,Block,Patan,LGD,455,District,3747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,3318,Block,Patan,LGD,378,District,3318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +LGD,2843,Block,Patana,LGD,361,District,2843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,4494,Block,Patancheru,LGD,691,District,4494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,7433,Block,Patan City,LGD,455,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,3835,Block,Patan-Veraval,LGD,675,District,3835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +LGD,1176,Block,Patarghat,LGD,216,District,1176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,416,Block,Pataudi,LGD,62,District,416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,448,Block,Patel Nagar,LGD,77,District,448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,false +LGD,1274,Block,Patepur,LGD,224,District,1274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,3455,Block,Patera,LGD,400,District,3455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +LGD,1269,Block,Paterhi Belsar,LGD,224,District,1269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,3262,Block,Pathalgaon,LGD,380,District,3262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,2523,Block,Pathalgora,LGD,323,District,2523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,5686,Block,Pathanapuram,LGD,559,District,5686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +LGD,201,Block,Pathankot,LGD,662,District,201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +LGD,4773,Block,Pathapatnam,LGD,519,District,4773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,4208,Block,Pathardi,LGD,466,District,4208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,2559,Block,Pathargama,LGD,330,District,2559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,6971,Block,Pathari,LGD,437,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,3457,Block,Patharia,LGD,400,District,3457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +LGD,3293,Block,Pathariya,LGD,647,District,3293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false +LGD,2104,Block,Patharkandi,LGD,293,District,2104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +LGD,2440,Block,Patharpratima,LGD,304,District,2440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,2571,Block,Pathna,LGD,340,District,2571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,2146,Block,Pathorighat (Pt),LGD,283,District,2146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +LGD,4120,Block,Pathri,LGD,489,District,4120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,335,Block,Pati,LGD,48,District,335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +LGD,3555,Block,Pati,LGD,393,District,3555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,253,Block,Patiala,LGD,41,District,253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +LGD,1012,Block,Patiyali,LGD,633,District,1012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +LGD,7447,Block,Patliputra,LGD,212,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,7309,Block,Patna,LGD,384,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +LGD,7448,Block,Patna City,LGD,212,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,3144,Block,Patnagarh,LGD,345,District,3144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,1400,Block,Patna Rural,LGD,212,District,1400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,4216,Block,Patoda,LGD,470,District,4216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,7368,Block,Patodi,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,1292,Block,Patori,LGD,217,District,1292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,7585,Block,Patparganj,LGD,78,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false +LGD,251,Block,Patran,LGD,41,District,251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +LGD,7483,Block,Patrapur,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,2365,Block,Patrasayer,LGD,305,District,2365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,2660,Block,Patratu,LGD,607,District,2660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +LGD,1880,Block,Patsoi,LGD,256,District,1880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +LGD,5940,Block,Pattambi,LGD,563,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +LGD,2926,Block,Pattamundai,LGD,360,District,2926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,34,Block,Pattan,LGD,3,District,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,260,Block,Patti,LGD,609,District,260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +LGD,883,Block,Patti,LGD,174,District,883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +LGD,5290,Block,Pattikonda,LGD,511,District,5290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5816,Block,Pattukkottai,LGD,586,District,5816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,6140,Block,Patuk Adc,LGD,233,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,3993,Block,Patur,LGD,467,District,3993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +LGD,4042,Block,Pauni,LGD,471,District,4042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +LGD,307,Block,Pauri,LGD,52,District,307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,5534,Block,Pavagada,LGD,548,District,5534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,3440,Block,Pawai,LGD,420,District,3440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,6363,Block,Pawkidevi,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,6861,Block,Payagpur,LGD,125,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +LGD,4881,Block,Payakaraopeta,LGD,744,District,4881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,226,Block,Payal,LGD,36,District,226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +LGD,1612,Block,Payeng Circle,LGD,241,District,1612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,6607,Block,Payum Circle,LGD,679,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,6599,Block,Payyannur,LGD,557,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +LGD,5294,Block,Peapully,LGD,755,District,5294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4602,Block,Pebbair,LGD,693,District,4602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,4842,Block,Peda Bayalu,LGD,745,District,4842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5144,Block,Pedacherlo Palle,LGD,790,District,5144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4868,Block,Pedagantyada,LGD,520,District,4868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,5075,Block,Pedakakani,LGD,506,District,5075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,5057,Block,Pedakurapadu,LGD,751,District,5057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5030,Block,Pedana,LGD,510,District,5030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,5082,Block,Pedanandipadu,LGD,506,District,5082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,4965,Block,Pedapadu,LGD,748,District,4965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5022,Block,Pedaparupudi,LGD,510,District,5022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,4915,Block,Pedapudi,LGD,746,District,4915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4964,Block,Pedavegi,LGD,748,District,4964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4658,Block,Pedda Adesherlapally,LGD,514,District,4658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,5101,Block,Peddaaraveedu,LGD,790,District,5101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5253,Block,Pedda Kadubur,LGD,511,District,5253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,6245,Block,Pedda Kodapgal,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,4599,Block,Peddakothapally,LGD,694,District,4599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,4594,Block,Peddamandadi,LGD,693,District,4594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,5369,Block,Peddamandyam,LGD,753,District,5369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5201,Block,Peddamudiam,LGD,504,District,5201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4408,Block,Peddapalli,LGD,682,District,4408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,5416,Block,Peddapanjani,LGD,503,District,5416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5314,Block,Peddapappur,LGD,502,District,5314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,4903,Block,Peddapuram,LGD,746,District,4903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5390,Block,Pedda Thippasamudram,LGD,753,District,5390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5311,Block,Peddavaduguru,LGD,502,District,5311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,6256,Block,Peddavangara,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,4659,Block,Peddavoora,LGD,514,District,4659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4533,Block,Peddemul,LGD,698,District,4533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,1851,Block,Pedi (Ngwalwa),LGD,613,District,1851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +LGD,7051,Block,Pedong,LGD,702,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +LGD,697,Block,Peepalkhoont,LGD,629,District,697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +LGD,616,Block,Peeplu,LGD,116,District,616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,5667,Block,Peerumade,LGD,556,District,5667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +LGD,608,Block,Peesangan,LGD,86,District,608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,4421,Block,Pegadapalli,LGD,681,District,4421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,365,Block,Pehowa,LGD,68,District,365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +LGD,5195,Block,Pellakur,LGD,752,District,5195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6206,Block,Pembi,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,4176,Block,Pen,LGD,491,District,4176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,5244,Block,Penagalur,LGD,752,District,5244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5024,Block,Penamaluru,LGD,510,District,5024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,6313,Block,Penchicalpet,LGD,699,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,5232,Block,Pendlimarry,LGD,504,District,5232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,3289,Block,Pendra,LGD,734,District,3289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false +LGD,3287,Block,Pendra Road,LGD,734,District,3287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false +LGD,4862,Block,Pendurthi,LGD,520,District,4862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,5889,Block,Pennagaram,LGD,571,District,5889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +LGD,4643,Block,Penpahad,LGD,696,District,4643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,4969,Block,Pentapadu,LGD,523,District,4969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,6292,Block,Pentlavelli,LGD,694,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,4752,Block,Penuballi,LGD,509,District,4752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,4992,Block,Penuganchiprolu,LGD,749,District,4992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4980,Block,Penugonda,LGD,523,District,4980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,5356,Block,Penukonda,LGD,754,District,5356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4978,Block,Penumantra,LGD,523,District,4978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,5409,Block,Penumur,LGD,503,District,5409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5839,Block,Peraiyur,LGD,578,District,5839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,5973,Block,Perambalur,LGD,581,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +LGD,7166,Block,Perambur,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,4971,Block,Peravali,LGD,505,District,4971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,5817,Block,Peravurani,LGD,586,District,5817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,1857,Block,Peren,LGD,613,District,1857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +LGD,5643,Block,Perinthalmanna,LGD,562,District,5643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +LGD,5843,Block,Periyakulam,LGD,588,District,5843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +LGD,6663,Block,Pernambut,LGD,595,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +LGD,5609,Block,Pernem,LGD,551,District,5609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +LGD,5752,Block,Perundurai,LGD,573,District,5752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,5957,Block,Perur,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,2598,Block,Peshrar,LGD,336,District,2598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +LGD,2592,Block,Peterwar,LGD,322,District,2592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +LGD,4150,Block,Peth,LGD,487,District,4150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,6618,Block,Pethanaickanpalayam,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,3865,Block,Petlad,LGD,440,District,3865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,3707,Block,Petlawad,LGD,412,District,3707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +LGD,1809,Block,Pfutsero,LGD,248,District,1809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,4934,Block,P.Gannavaram,LGD,747,District,4934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,544,Block,Phagi,LGD,102,District,544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,208,Block,Phagwara,LGD,35,District,208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +LGD,7385,Block,Phalasiyan,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,567,Block,Phalodi,LGD,772,District,567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,7214,Block,Phalsoond,LGD,103,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +LGD,4258,Block,Phaltan,LGD,494,District,4258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,2164,Block,Phansidewa,LGD,309,District,2164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,3359,Block,Pharasgaon,LGD,643,District,3359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +LGD,946,Block,Pharenda,LGD,164,District,946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +LGD,1707,Block,Phassang Circle,LGD,233,District,1707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,1801,Block,Phek Sadar,LGD,248,District,1801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,1054,Block,Phenhara,LGD,213,District,1054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,6757,Block,Phigsoo,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,211,Block,Phillaur,LGD,34,District,211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +LGD,5072,Block,Phirangipuram,LGD,506,District,5072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,3118,Block,Phiringia,LGD,359,District,3118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,1805,Block,Phokhungri,LGD,788,District,1805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1752,Block,Phomching,LGD,247,District,1752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,6067,Block,Phooliya Kalan,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,1804,Block,Phor,LGD,788,District,1804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,4136,Block,Phulambri,LGD,469,District,4136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,542,Block,Phulera (Hq.Sambhar),LGD,102,District,542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,1351,Block,Phulidumar,LGD,190,District,1351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,1903,Block,Phullen,LGD,727,District,1903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +LGD,2090,Block,Phuloni,LGD,292,District,2090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +LGD,1087,Block,Phulparas,LGD,206,District,1087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,889,Block,Phulpur,LGD,120,District,889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +LGD,968,Block,Phulpur,LGD,123,District,968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +LGD,1402,Block,Phulwari,LGD,212,District,1402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,1220,Block,Phulwaria,LGD,197,District,1220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,1890,Block,Phungyar,LGD,717,District,1890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false +LGD,5401,Block,Pichatur,LGD,752,District,5401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7412,Block,Pichhor,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,3413,Block,Pichhore,LGD,432,District,3413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,6590,Block,Pidi Circle,LGD,725,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false +LGD,5047,Block,Piduguralla,LGD,751,District,5047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7386,Block,Pilani,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,5386,Block,Pileru,LGD,753,District,5386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,469,Block,Pilibanga,LGD,101,District,469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +LGD,790,Block,Pilibhit,LGD,173,District,790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +LGD,6445,Block,Pillukhera St,LGD,65,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +LGD,4725,Block,Pinapaka,LGD,690,District,4725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,995,Block,Pindra,LGD,187,District,995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +LGD,594,Block,Pindwara,LGD,115,District,594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +LGD,2463,Block,Pingla,LGD,318,District,2463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,665,Block,Pipalda,LGD,109,District,665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +LGD,7324,Block,Pipariya,LGD,382,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +LGD,3618,Block,Pipariya,LGD,409,District,3618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,1366,Block,Pipariya,LGD,204,District,1366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +LGD,6051,Block,Pipar Shahar,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,3057,Block,Pipili,LGD,369,District,3057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,3500,Block,Piploda,LGD,423,District,3500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,1110,Block,Pipra,LGD,223,District,1110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,2619,Block,Pipra,LGD,338,District,2619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,7036,Block,Piprai,LGD,391,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +LGD,1050,Block,Piprakothi,LGD,213,District,1050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1059,Block,Piprarhi,LGD,220,District,1059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +LGD,1020,Block,Piprasi,LGD,211,District,1020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,1715,Block,Pipsorang Circle,LGD,677,District,1715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false +LGD,1587,Block,Pipu Dipu Circle,LGD,231,District,1587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,683,Block,Pirawa,LGD,105,District,683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,5569,Block,Piriyapatna,LGD,545,District,5569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,1429,Block,Piro,LGD,193,District,1429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,1335,Block,Pirpainti,LGD,192,District,1335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,2544,Block,Pirtanr,LGD,329,District,2544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,6119,Block,Pistana Circle,LGD,786,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,7042,Block,Pithampur,LGD,403,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,4911,Block,Pithapuram,LGD,746,District,4911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3342,Block,Pithora,LGD,385,District,3342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +LGD,320,Block,Pithoragarh,LGD,53,District,320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,4384,Block,Pitlam,LGD,685,District,4384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,5091,Block,Pittalavanipalem,LGD,750,District,5091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6121,Block,Piyong Circle,LGD,678,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false +LGD,6100,Block,Pizirang Veo Circle,LGD,723,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false +LGD,5893,Block,Pochampalli,LGD,577,District,5893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +LGD,5176,Block,Podalakur,LGD,515,District,5176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5120,Block,Podili,LGD,790,District,5120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4982,Block,Poduru,LGD,523,District,4982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,6760,Block,Pogal Paristan,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +LGD,3407,Block,Pohri,LGD,432,District,3407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,575,Block,Pokaran,LGD,103,District,575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +LGD,286,Block,Pokhari,LGD,47,District,286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,4186,Block,Poladpur,LGD,491,District,4186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,4800,Block,Polaki,LGD,519,District,4800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,3081,Block,Polasara,LGD,354,District,3081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,4949,Block,Polavaram,LGD,748,District,4949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6511,Block,Polaykala,LGD,430,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +LGD,2347,Block,Polba - Dadpur,LGD,312,District,2347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,5899,Block,Pollachi,LGD,569,District,5899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,6845,Block,Polosang Circle,LGD,233,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,5724,Block,Polur,LGD,593,District,5724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,4073,Block,Pombhurna,LGD,473,District,4073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,5614,Block,Ponda,LGD,552,District,5614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +LGD,7270,Block,Pondi(Bachra),LGD,384,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +LGD,4803,Block,Ponduru,LGD,519,District,4803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,5143,Block,Ponnaluru,LGD,517,District,5143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,5823,Block,Ponnamaravathi,LGD,582,District,5823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,7125,Block,Ponnampet,LGD,541,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +LGD,5646,Block,Ponnani,LGD,562,District,5646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +LGD,5694,Block,Ponneri,LGD,589,District,5694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,5084,Block,Ponnur,LGD,506,District,5084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,195,Block,Poo,LGD,19,District,195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +LGD,474,Block,Poogal,LGD,93,District,474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,5699,Block,Poonamallee,LGD,589,District,5699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,337,Block,Poornagiri,LGD,48,District,337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +LGD,4838,Block,Poosapatirega,LGD,521,District,4838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,7445,Block,Porabandar City,LGD,456,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +LGD,3822,Block,Porbandar,LGD,456,District,3822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +LGD,2562,Block,Poreyahat,LGD,330,District,2562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,1885,Block,Porompat,LGD,255,District,1885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +LGD,3386,Block,Porsa,LGD,417,District,3386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +LGD,5923,Block,Port Blair,LGD,602,District,5923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +LGD,5208,Block,Porumamilla,LGD,504,District,5208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,6088,Block,Poshina,LGD,458,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +LGD,2477,Block,Potashpur - I,LGD,317,District,2477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2478,Block,Potashpur - II,LGD,317,District,2478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,7534,Block,Pothangal,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,1124,Block,Pothia,LGD,203,District,1124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +LGD,2608,Block,Potka,LGD,327,District,2608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +LGD,3218,Block,Pottangi,LGD,363,District,3218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,7568,Block,Pounda,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,3273,Block,Poundi-Uproda,LGD,383,District,3273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +LGD,6742,Block,Pouni,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,793,Block,Powayan,LGD,180,District,793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +LGD,7022,Block,Prabhatpttan,LGD,394,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,6905,Block,Pragpur,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,1149,Block,Pranpur,LGD,201,District,1149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,3767,Block,Prantij,LGD,458,District,3767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +LGD,1104,Block,Pratapganj,LGD,223,District,1104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,699,Block,Pratapgarh,LGD,629,District,699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +LGD,882,Block,Pratapgarh,LGD,174,District,882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +LGD,7387,Block,Pratapgarh,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,295,Block,Pratapnagar,LGD,55,District,295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,6417,Block,Pratap Nagar St,LGD,76,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +LGD,3239,Block,Pratappur,LGD,648,District,3239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,2515,Block,Pratappur,LGD,323,District,2515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,5081,Block,Prathipadu,LGD,506,District,5081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,4900,Block,Prathipadu,LGD,746,District,4900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3246,Block,Premnagar,LGD,648,District,3246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,3417,Block,Prithvipur,LGD,722,District,3417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +LGD,5214,Block,Proddutur,LGD,504,District,5214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,7415,Block,Pub Mangaldai,LGD,283,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +LGD,1616,Block,Puchi Geko Circle,LGD,718,District,1616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false +LGD,5909,Block,Puducherry,LGD,600,District,5909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +LGD,5821,Block,Pudukkottai,LGD,582,District,5821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,4541,Block,Pudur,LGD,698,District,4541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,6676,Block,Pugalur,LGD,576,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +LGD,1775,Block,Pughoboto,LGD,251,District,1775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,7455,Block,Puintala,LGD,345,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,6942,Block,Pukhri,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,5395,Block,Pulicherla,LGD,503,District,5395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5219,Block,Pulivendula,LGD,504,District,5219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4478,Block,Pulkal,LGD,691,District,4478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,6349,Block,Pulla Gumdesh,LGD,48,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +LGD,5098,Block,Pullalacheruvu,LGD,790,District,5098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5247,Block,Pullampeta,LGD,752,District,5247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,51,Block,Pulwama,LGD,11,District,51,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +LGD,6584,Block,Pumao Circle,LGD,666,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false +LGD,6521,Block,Puna,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,424,Block,Punahana,LGD,604,District,424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +LGD,5947,Block,Punalur,LGD,559,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +LGD,3717,Block,Punasa,LGD,405,District,3717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +LGD,2388,Block,Puncha,LGD,321,District,2388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,4194,Block,Pune City,LGD,490,District,4194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,5415,Block,Punganuru,LGD,753,District,5415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1841,Block,Pungro,LGD,614,District,1841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +LGD,1410,Block,Punpun,LGD,212,District,1410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,1077,Block,Pupri,LGD,221,District,1077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,1168,Block,Puraini,LGD,205,District,1168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,7418,Block,Purakhasia,LGD,663,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false +LGD,4196,Block,Purandhar,LGD,490,District,4196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,792,Block,Puranpur,LGD,173,District,792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +LGD,7167,Block,Purasawalkam,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,278,Block,Puraula,LGD,57,District,278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,2283,Block,Purbasthali - I,LGD,306,District,2283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2284,Block,Purbasthali - II,LGD,306,District,2284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2580,Block,Purbi Tundi*,LGD,325,District,2580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,7467,Block,Puri,LGD,369,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,4124,Block,Purna,LGD,489,District,4124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,1058,Block,Purnahiya,LGD,220,District,1058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +LGD,1134,Block,Purnia East,LGD,214,District,1134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,2341,Block,Pursura,LGD,312,District,2341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,1860,Block,Purul,LGD,257,District,1860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +LGD,2387,Block,Purulia - I,LGD,321,District,2387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,2379,Block,Purulia - II,LGD,321,District,2379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,3089,Block,Purushottampur,LGD,354,District,3089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,817,Block,Purwa,LGD,186,District,817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +LGD,1289,Block,Pusa,LGD,217,District,1289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,4085,Block,Pusad,LGD,500,District,4085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,6655,Block,Pushkar,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,3696,Block,Pushparajgarh,LGD,390,District,3696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +LGD,3268,Block,Pusour,LGD,386,District,3268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,5410,Block,Puthalapattu,LGD,503,District,5410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5326,Block,Putlur,LGD,502,District,5326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5357,Block,Puttaparthy,LGD,754,District,5357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5564,Block,Puttur,LGD,534,District,5564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,5407,Block,Puttur,LGD,752,District,5407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1995,Block,Pynursla,LGD,274,District,1995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,7205,Block,Qalamabad,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,6788,Block,Qaziabad (Kralgund),LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,6817,Block,Qazigund,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,6773,Block,Qila Darhal,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,6193,Block,Qoimoh,LGD,622,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +LGD,5617,Block,Quepem,LGD,793,District,5617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +LGD,4518,Block,Qutballapur,LGD,700,District,4518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,7543,Block,Raah,LGD,789,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,7063,Block,Rabakavi Banahatti,LGD,524,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,7177,Block,Rabdang,LGD,225,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +LGD,5132,Block,Racherla,LGD,790,District,5132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6474,Block,Radaur,LGD,76,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +LGD,4289,Block,Radhanagari,LGD,480,District,4289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,3745,Block,Radhanpur,LGD,455,District,3745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,5880,Block,Radhapuram,LGD,592,District,5880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +LGD,825,Block,Rae Bareli,LGD,175,District,825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +LGD,33,Block,Rafiabad,LGD,3,District,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,1479,Block,Rafiganj,LGD,189,District,1479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +LGD,6129,Block,Raga Adc,LGD,718,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false +LGD,3679,Block,Raghogarh,LGD,406,District,3679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +LGD,1105,Block,Raghopur,LGD,223,District,1105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,1279,Block,Raghopur,LGD,224,District,1279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,4757,Block,Raghunadhapalem,LGD,509,District,4757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,7513,Block,Raghunathapur,LGD,355,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +LGD,2227,Block,Raghunathganj - I,LGD,319,District,2227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2228,Block,Raghunathganj - II,LGD,319,District,2228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,7257,Block,Raghunathnagar,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,1244,Block,Raghunathpur,LGD,222,District,1244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,2382,Block,Raghunathpur - I,LGD,321,District,2382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,2381,Block,Raghunathpur - II,LGD,321,District,2381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,7111,Block,Raghurajnagar (Nagriya),LGD,426,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +LGD,4698,Block,Ragunathpally,LGD,689,District,4698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,2036,Block,Raha,LGD,297,District,2036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +LGD,3448,Block,Rahatgarh,LGD,425,District,3448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,2687,Block,Rahe,LGD,339,District,2687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,4204,Block,Rahta,LGD,466,District,4204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,1382,Block,Rahui,LGD,209,District,1382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,4210,Block,Rahuri,LGD,466,District,4210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,6932,Block,Rahuwas,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,5461,Block,Raichur,LGD,546,District,5461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +LGD,2716,Block,Raidih,LGD,331,District,2716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,2196,Block,Raiganj,LGD,311,District,2196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +LGD,3267,Block,Raigarh,LGD,386,District,3267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,3187,Block,Raighar,LGD,366,District,3187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,4395,Block,Raikal,LGD,681,District,4395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,3126,Block,Raikia,LGD,359,District,3126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,4472,Block,Raikode,LGD,691,District,4472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,229,Block,Raikot,LGD,36,District,229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +LGD,644,Block,Railmagra,LGD,112,District,644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,2296,Block,Raina - I,LGD,306,District,2296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,2298,Block,Raina - II,LGD,306,District,2298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +LGD,6283,Block,Raipole,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,2376,Block,Raipur,LGD,305,District,2376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,632,Block,Raipur,LGD,92,District,632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,6925,Block,Raipur,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,3332,Block,Raipur,LGD,387,District,3332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +LGD,598,Block,Raipur,LGD,774,District,598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3442,Block,Raipura,LGD,420,District,3442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,3480,Block,Raipur Karchuliyan,LGD,424,District,3480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,6411,Block,Raipur Rani,LGD,70,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +LGD,2797,Block,Rairakhol,LGD,371,District,2797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,2865,Block,Rairangpur,LGD,365,District,2865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,3590,Block,Raisen,LGD,421,District,3590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,461,Block,Raisinghnagar,LGD,100,District,461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,6473,Block,Rai St,LGD,75,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +LGD,7359,Block,Raithal,LGD,94,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +LGD,2814,Block,Rajagangapur,LGD,373,District,2814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,7288,Block,Raja Ka Talab,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,519,Block,Rajakhera,LGD,98,District,519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +LGD,7388,Block,Rajaldesar,LGD,96,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,4796,Block,Rajam,LGD,521,District,4796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,4907,Block,Rajamahendravaram Rural,LGD,505,District,4907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,4906,Block,Rajamahendravaram Urban,LGD,505,District,4906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,6241,Block,Rajampet,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,5246,Block,Rajampet,LGD,504,District,5246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4908,Block,Rajanagaram,LGD,505,District,4908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,1277,Block,Raja Pakar,LGD,224,District,1277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,5847,Block,Rajapalayam,LGD,597,District,5847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,4615,Block,Rajapeta,LGD,697,District,4615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,6261,Block,Rajapur,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +LGD,4274,Block,Rajapur,LGD,492,District,4274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,6156,Block,Rajapur,LGD,136,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false +LGD,2332,Block,Rajarhat,LGD,303,District,2332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,6653,Block,Rajasingamangalam,LGD,583,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,6093,Block,Rajatalab,LGD,187,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +LGD,1524,Block,Rajauli,LGD,210,District,1524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,1347,Block,Rajaun,LGD,190,District,1347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,6447,Block,Rajaund St,LGD,66,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +LGD,4888,Block,Rajavommangi,LGD,791,District,4888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4527,Block,Rajendranagar,LGD,518,District,4527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,2166,Block,Rajganj,LGD,314,District,2166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +LGD,167,Block,Rajgarh,LGD,24,District,167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,482,Block,Rajgarh,LGD,96,District,482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,502,Block,Rajgarh,LGD,87,District,502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,3565,Block,Rajgarh,LGD,422,District,3565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,6762,Block,Rajgarh,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +LGD,280,Block,Rajgarhi,LGD,57,District,280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,1394,Block,Rajgir,LGD,209,District,1394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,3333,Block,Rajim,LGD,645,District,3333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +LGD,2922,Block,Rajkanika,LGD,360,District,2922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,3803,Block,Rajkot,LGD,457,District,3803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,6520,Block,Rajkot East,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,6524,Block,Rajkot South,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,6523,Block,Rajkot West,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,2569,Block,Rajmahal,LGD,340,District,2569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,2923,Block,Rajnagar,LGD,360,District,2923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +LGD,3430,Block,Rajnagar,LGD,398,District,3430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,2258,Block,Rajnagar,LGD,307,District,2258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,1095,Block,Rajnagar,LGD,206,District,1095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +LGD,3305,Block,Rajnandgaon,LGD,388,District,3305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +LGD,6296,Block,Rajoli,LGD,695,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,22,Block,Rajouri,LGD,12,District,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,449,Block,Rajouri Garden,LGD,85,District,449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false +LGD,6796,Block,Rajpora,LGD,11,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +LGD,1443,Block,Rajpur,LGD,194,District,1443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,3558,Block,Rajpur,LGD,393,District,3558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,1464,Block,Rajpur,LGD,215,District,1464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,3250,Block,Rajpur,LGD,649,District,3250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,254,Block,Rajpura,LGD,41,District,254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +LGD,6719,Block,Rajpura,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +LGD,643,Block,Rajsamand,LGD,112,District,643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,3849,Block,Rajula,LGD,439,District,3849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,5059,Block,Rajupalem,LGD,751,District,5059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5202,Block,Rajupalem,LGD,504,District,5202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4077,Block,Rajura,LGD,473,District,4077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,106,Block,Rakkar,LGD,18,District,106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,1787,Block,Ralan,LGD,250,District,1787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,4091,Block,Ralegaon,LGD,500,District,4091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,7004,Block,Rama,LGD,412,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +LGD,4819,Block,Ramabhadrapuram,LGD,521,District,4819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,5398,Block,Ramachandrapuram,LGD,752,District,5398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4924,Block,Ramachandrapuram,LGD,747,District,4924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4423,Block,Ramadugu,LGD,508,District,4423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,5348,Block,Ramagiri,LGD,754,District,5348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6216,Block,Ramagiri,LGD,682,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,4399,Block,Ramagundam,LGD,682,District,4399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,5428,Block,Ramakuppam,LGD,503,District,5428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5606,Block,Ramanagara,LGD,631,District,5606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +LGD,7511,Block,Ramanaguda,LGD,370,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,5860,Block,Ramanathapuram,LGD,583,District,5860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,4632,Block,Ramannapet,LGD,697,District,4632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,3236,Block,Ramanujganj,LGD,649,District,3236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,3245,Block,Ramanujnagar,LGD,648,District,3245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,5241,Block,Ramapuram,LGD,753,District,5241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6243,Block,Ramareddy,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,5414,Block,Ramasamudram,LGD,753,District,5414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4457,Block,Ramayampet,LGD,513,District,4457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,67,Block,Ramban,LGD,621,District,67,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +LGD,4883,Block,Rambilli,LGD,744,District,4883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7333,Block,Rambrai,LGD,279,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false +LGD,7238,Block,Ramchandrapur,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,4495,Block,Ramchandrapuram,LGD,691,District,4495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,5442,Block,Ramdurg,LGD,527,District,5442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,5861,Block,Rameswaram,LGD,583,District,5861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,668,Block,Ramganj Mandi,LGD,109,District,668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +LGD,2668,Block,Ramgarh,LGD,326,District,2668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,6724,Block,Ramgarh,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +LGD,2662,Block,Ramgarh,LGD,607,District,2662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +LGD,498,Block,Ramgarh,LGD,87,District,498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,6353,Block,Ramgarh,LGD,51,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,6325,Block,Ramgarh,LGD,338,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,1446,Block,Ramgarh,LGD,200,District,1446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,7216,Block,Ramgarh,LGD,103,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +LGD,1370,Block,Ramgarh Chowk,LGD,204,District,1370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +LGD,6908,Block,Ramgarh Pachwara,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,6388,Block,Ramgarh Shekhawati,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,1033,Block,Ramgarhwa,LGD,213,District,1033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,6787,Block,Ramhal (Tarathpora),LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,2512,Block,Ramkanda,LGD,328,District,2512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,6728,Block,Ramkote,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +LGD,2105,Block,Ramkrishna Nagar,LGD,293,District,2105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +LGD,2501,Block,Ramna,LGD,328,District,2501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,74,Block,Ramnagar,LGD,14,District,74,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +LGD,3469,Block,Ramnagar,LGD,784,District,3469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,1014,Block,Ramnagar,LGD,211,District,1014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,343,Block,Ramnagar,LGD,51,District,343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +LGD,897,Block,Ramnagar,LGD,129,District,897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +LGD,2493,Block,Ramnagar - I,LGD,317,District,2493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,2494,Block,Ramnagar - II,LGD,317,District,2494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,4895,Block,Rampachodavaram,LGD,791,District,4895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1454,Block,Rampur,LGD,200,District,1454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +LGD,3134,Block,Rampur,LGD,372,District,3134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +LGD,177,Block,Rampur,LGD,23,District,177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,726,Block,Rampur,LGD,176,District,726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +LGD,7032,Block,Rampura,LGD,419,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +LGD,7391,Block,Rampura Dabri,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,244,Block,Rampura Phul,LGD,28,District,244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +LGD,3466,Block,Rampur Baghelan,LGD,426,District,3466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +LGD,2253,Block,Rampurhat - I,LGD,307,District,2253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2254,Block,Rampurhat - II,LGD,307,District,2254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,705,Block,Rampur Maniharan,LGD,177,District,705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +LGD,3697,Block,Rampur Naikin,LGD,433,District,3697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +LGD,900,Block,Ramsanehighat,LGD,129,District,900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +LGD,583,Block,Ramsar,LGD,90,District,583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,160,Block,Ramshahr,LGD,25,District,160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,7201,Block,Ramsoo,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +LGD,4028,Block,Ramtek,LGD,484,District,4028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,2312,Block,Ranaghat - I,LGD,320,District,2312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,2313,Block,Ranaghat - II,LGD,320,District,2313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,3710,Block,Ranapur,LGD,412,District,3710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +LGD,3033,Block,Ranapur,LGD,367,District,3033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +LGD,4805,Block,Ranastalam,LGD,519,District,4805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,3823,Block,Ranavav,LGD,456,District,3823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +LGD,4909,Block,Rangampeta,LGD,505,District,4909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,5921,Block,Rangat,LGD,632,District,5921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +LGD,5934,Block,Rangia,LGD,291,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +LGD,2017,Block,Rangjuli,LGD,287,District,2017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +LGD,2155,Block,Rangli Rangliot,LGD,309,District,2155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +LGD,6396,Block,Rangpo,LGD,741,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +LGD,1333,Block,Rangra Chowk,LGD,192,District,1333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,6898,Block,Rani,LGD,111,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +LGD,2702,Block,Rania,LGD,606,District,2702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false +LGD,391,Block,Rania,LGD,74,District,391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +LGD,2375,Block,Ranibandh,LGD,305,District,2375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,5495,Block,Ranibennur,LGD,540,District,5495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +LGD,884,Block,Raniganj,LGD,174,District,884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +LGD,2271,Block,Raniganj,LGD,704,District,2271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +LGD,1115,Block,Raniganj,LGD,188,District,1115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,328,Block,Ranikhet,LGD,45,District,328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,1983,Block,Ranikor,LGD,658,District,1983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false +LGD,2236,Block,Raninagar - I,LGD,319,District,2236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2233,Block,Raninagar - II,LGD,319,District,2233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2672,Block,Ranishwar,LGD,326,District,2672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,591,Block,Raniwara,LGD,104,District,591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,7025,Block,Ranjhi,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,2511,Block,Ranka,LGD,328,District,2511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,5681,Block,Ranni,LGD,564,District,5681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +LGD,6976,Block,Rannod,LGD,432,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,3785,Block,Ranpur,LGD,676,District,3785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +LGD,3506,Block,Raoti,LGD,423,District,3506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,3723,Block,Rapar,LGD,449,District,3723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +LGD,5331,Block,Rapthadu,LGD,502,District,5331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5175,Block,Rapur,LGD,515,District,5175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,7369,Block,Rarah,LGD,767,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,2868,Block,Raruan,LGD,365,District,2868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,2879,Block,Rasgobindpur,LGD,365,District,2879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,655,Block,Rashmi,LGD,95,District,655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,5746,Block,Rasipuram,LGD,580,District,5746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +LGD,977,Block,Rasra,LGD,126,District,977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +LGD,843,Block,Rasulabad,LGD,156,District,843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +LGD,7471,Block,Rasulpur,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,485,Block,Ratangarh,LGD,96,District,485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,7239,Block,Ratanpur,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,865,Block,Rath,LGD,149,District,865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +LGD,386,Block,Ratia,LGD,61,District,386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +LGD,3507,Block,Ratlam,LGD,423,District,3507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,7009,Block,Ratlam Nagar,LGD,423,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,4271,Block,Ratnagiri,LGD,492,District,4271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,1535,Block,Ratni Faridpur,LGD,199,District,1535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +LGD,7106,Block,Rattihalli,LGD,540,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +LGD,2691,Block,Ratu,LGD,339,District,2691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,2212,Block,Ratua - I,LGD,316,District,2212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,2213,Block,Ratua - II,LGD,316,District,2213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +LGD,7016,Block,Rau,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,1552,Block,Ravangla,LGD,227,District,1552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false +LGD,3962,Block,Raver,LGD,478,District,3962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,4856,Block,Ravikamatham,LGD,744,District,4856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4926,Block,Ravulapalem,LGD,747,District,4926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,658,Block,Rawatbhata,LGD,95,District,658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +LGD,470,Block,Rawatsar,LGD,101,District,470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +LGD,6915,Block,Rawla,LGD,100,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,1031,Block,Raxaul,LGD,213,District,1031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,5239,Block,Rayachoti,LGD,753,District,5239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5305,Block,Rayadurg,LGD,502,District,5305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,3181,Block,Rayagada,LGD,370,District,3181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +LGD,3107,Block,Rayagada,LGD,353,District,3107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +LGD,4703,Block,Rayaparthy,LGD,522,District,4703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,4921,Block,Rayavaram,LGD,505,District,4921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,5435,Block,Raybag,LGD,527,District,5435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,1813,Block,Razieba,LGD,248,District,1813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,4937,Block,Razole,LGD,747,District,4937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,2803,Block,Reamal,LGD,351,District,2803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false +LGD,77,Block,Reasi,LGD,627,District,77,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,4327,Block,Rebbena,LGD,699,District,4327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,1647,Block,Rebo Perging Circle,LGD,679,District,1647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,4999,Block,Reddigudem,LGD,749,District,4999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7226,Block,Reengus,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,4786,Block,Regidi Amadalavalasa,LGD,521,District,4786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,4471,Block,Regode,LGD,513,District,4471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,4690,Block,Regonda,LGD,687,District,4690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,3611,Block,Rehatgaon,LGD,408,District,3611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +LGD,3451,Block,Rehli,LGD,425,District,3451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,3589,Block,Rehti,LGD,427,District,3589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,1898,Block,Reiek,LGD,266,District,1898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false +LGD,2902,Block,Remuna,LGD,346,District,2902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,4227,Block,Renapur,LGD,481,District,4227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,7272,Block,Rengakharkala,LGD,382,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +LGD,2785,Block,Rengali,LGD,371,District,2785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,6381,Block,Reni,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,5376,Block,Renigunta,LGD,752,District,5376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4357,Block,Renjal,LGD,516,District,4357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,5043,Block,Rentachintala,LGD,751,District,5043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,170,Block,Renuka,LGD,24,District,170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,6577,Block,Renuk Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,596,Block,Reodar,LGD,115,District,596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +LGD,5096,Block,Repalle,LGD,750,District,5096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6545,Block,Rerapara,LGD,663,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false +LGD,1970,Block,Resubelpara,LGD,656,District,1970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false +LGD,6286,Block,Revally,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,1257,Block,Revelganj,LGD,218,District,1257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,6952,Block,Rewalsar,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,414,Block,Rewari,LGD,72,District,414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +LGD,7287,Block,Rey,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,6101,Block,Richukrong Circle,LGD,231,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,1070,Block,Riga,LGD,221,District,1070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,1644,Block,Riga Eac,LGD,679,District,1644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,6355,Block,Rikhanikhal,LGD,52,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,7336,Block,Ri Muliang,LGD,279,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false +LGD,694,Block,Rishabhdeo,LGD,117,District,694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,305,Block,Rishikesh,LGD,49,District,305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +LGD,4000,Block,Risod,LGD,499,District,4000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +LGD,3621,Block,Rithi,LGD,413,District,3621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,6069,Block,Riyan Bari,LGD,110,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,6674,Block,R K Pet,LGD,589,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,1005,Block,Robertsganj,LGD,184,District,1005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +LGD,5349,Block,Roddam,LGD,754,District,5349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1517,Block,Roh,LGD,210,District,1517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,4179,Block,Roha,LGD,491,District,4179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,600,Block,Rohat,LGD,111,District,600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +LGD,6077,Block,Rohini,LGD,82,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false +LGD,191,Block,Rohru,LGD,23,District,191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,405,Block,Rohtak,LGD,73,District,405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +LGD,1475,Block,Rohtas,LGD,215,District,1475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,1724,Block,Roing Hq,LGD,235,District,1724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false +LGD,5353,Block,Rolla,LGD,754,District,5353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4855,Block,Rolugunta,LGD,744,District,4855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5066,Block,Rompicharla,LGD,751,District,5066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5373,Block,Rompicherla,LGD,503,District,5373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5469,Block,Ron,LGD,537,District,5469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +LGD,3396,Block,Ron,LGD,395,District,3396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +LGD,1978,Block,Rongara,LGD,277,District,1978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +LGD,1555,Block,Rongli,LGD,741,District,1555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +LGD,1965,Block,Rongram,LGD,278,District,1965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +LGD,176,Block,Ronhat,LGD,24,District,176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,6657,Block,Roopangarh,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,353,Block,Roorkee,LGD,50,District,353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +LGD,1300,Block,Rosera,LGD,217,District,1300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,7462,Block,Rourkela,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,4891,Block,Rowthulapudi,LGD,746,District,4891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,80,Block,R. S. Pura,LGD,5,District,80,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,902,Block,Rudauli,LGD,140,District,902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +LGD,7389,Block,Rudawal,LGD,91,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +LGD,3102,Block,R.Udayagiri,LGD,353,District,3102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +LGD,940,Block,Rudhauli,LGD,131,District,940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +LGD,6219,Block,Rudrangi,LGD,683,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,291,Block,Rudraprayag,LGD,54,District,291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +LGD,960,Block,Rudrapur,LGD,137,District,960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +LGD,6030,Block,Rudrapur,LGD,56,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,5297,Block,Rudravaram,LGD,755,District,5297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6240,Block,Rudrur,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,1653,Block,Ruksin Adc,LGD,232,District,1653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +LGD,1630,Block,Rumgong Adc,LGD,679,District,1630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +LGD,1073,Block,Runisaidpur,LGD,221,District,1073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,2033,Block,Rupahi,LGD,297,District,2033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +LGD,6560,Block,Rupa Sdo,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,1131,Block,Rupauli,LGD,214,District,1131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,514,Block,Rupbas,LGD,91,District,514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +LGD,264,Block,Rup Nagar,LGD,42,District,264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +LGD,7561,Block,Saach,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,3390,Block,Sabalgarh,LGD,417,District,3390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +LGD,2464,Block,Sabang,LGD,318,District,2464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,3781,Block,Sabarmati,LGD,438,District,3781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,4861,Block,Sabbavaram,LGD,744,District,4861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6062,Block,Sabla,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,1338,Block,Sabour,LGD,192,District,1338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,6688,Block,Sabroom,LGD,271,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +LGD,760,Block,Sadabad,LGD,163,District,760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +LGD,4049,Block,Sadak-Arjuni,LGD,476,District,4049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +LGD,821,Block,Sadar,LGD,162,District,821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +LGD,6696,Block,Sadar,LGD,272,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +LGD,7575,Block,Sadar Bazar,LGD,795,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,4381,Block,Sadashivanagar,LGD,685,District,4381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,4490,Block,Sadasivpet,LGD,691,District,4490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,6475,Block,Sadhaura St,LGD,76,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +LGD,2059,Block,Sadiya,LGD,302,District,2059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +LGD,459,Block,Sadulshahar,LGD,100,District,459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,7291,Block,Sadwan,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,385,Block,Safidon,LGD,65,District,385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +LGD,814,Block,Safipur,LGD,186,District,814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +LGD,1601,Block,Sagalee Adc,LGD,237,District,1601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,3449,Block,Sagar,LGD,425,District,3449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,2438,Block,Sagar,LGD,304,District,2438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,5515,Block,Sagar,LGD,547,District,5515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +LGD,2230,Block,Sagardighi,LGD,319,District,2230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,7030,Block,Sagar Nagar,LGD,425,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,3912,Block,Sagbara,LGD,452,District,3912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +LGD,2505,Block,Sagma,LGD,328,District,2505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +LGD,6840,Block,Sago,LGD,724,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false +LGD,965,Block,Sagri,LGD,123,District,965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +LGD,648,Block,Sagwara,LGD,99,District,648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,6499,Block,Sahamphung,LGD,717,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false +LGD,1434,Block,Sahar,LGD,193,District,1434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,633,Block,Sahara,LGD,92,District,633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,702,Block,Saharanpur,LGD,177,District,702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +LGD,7491,Block,Saharapada,LGD,361,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,3300,Block,Sahaspur Lohara,LGD,382,District,3300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +LGD,6429,Block,Saha St,LGD,58,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +LGD,781,Block,Sahaswan,LGD,133,District,781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +LGD,1011,Block,Sahawar,LGD,633,District,1011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +LGD,1282,Block,Sahdai Buzurg,LGD,224,District,1282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,1199,Block,Sahebganj,LGD,208,District,1199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,1318,Block,Sahebpur Kamal,LGD,191,District,1318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,2564,Block,Sahibganj,LGD,340,District,2564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,2473,Block,Sahid Matangini,LGD,317,District,2473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,949,Block,Sahjanwa,LGD,148,District,949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +LGD,7451,Block,Saho,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,4511,Block,Saidabad,LGD,507,District,4511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,988,Block,Saidpur,LGD,146,District,988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +LGD,837,Block,Saifai,LGD,139,District,837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +LGD,7003,Block,Saikheda,LGD,418,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +LGD,6501,Block,Saikot,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,6493,Block,Saikul,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,3504,Block,Sailana,LGD,423,District,3504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,119,Block,Sainj,LGD,20,District,119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +LGD,3148,Block,Saintala,LGD,345,District,3148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,7136,Block,Sainthal,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,2261,Block,Sainthia,LGD,307,District,2261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2000,Block,Saipung,LGD,657,District,2000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false +LGD,1862,Block,Saitu-Gamphazol,LGD,712,District,1862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,3313,Block,Saja,LGD,650,District,3313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,6043,Block,Sajjangarh,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +LGD,992,Block,Sakaldiha,LGD,135,District,992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +LGD,4939,Block,Sakhinetipalli,LGD,747,District,4939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5553,Block,Sakleshpur,LGD,539,District,5553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +LGD,7252,Block,Sakola,LGD,734,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false +LGD,4040,Block,Sakoli,LGD,471,District,4040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +LGD,1214,Block,Sakra,LGD,208,District,1214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,1808,Block,Sakraba,LGD,248,District,1808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,3958,Block,Sakri,LGD,474,District,3958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +LGD,1834,Block,Sakshi,LGD,615,District,1834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false +LGD,3282,Block,Sakti,LGD,762,District,3282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,2268,Block,Salanpur,LGD,704,District,2268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +LGD,2452,Block,Salbani,LGD,318,District,2452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +LGD,5616,Block,Salcete,LGD,552,District,5616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +LGD,4048,Block,Salekasa,LGD,476,District,4048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +LGD,5740,Block,Salem,LGD,584,District,5740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,962,Block,Salempur,LGD,137,District,962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +LGD,5970,Block,Salem South,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,5971,Block,Salem West,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,2957,Block,Salepur,LGD,350,District,2957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,6443,Block,Salhawas St,LGD,64,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +LGD,7294,Block,Salhewara,LGD,759,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,7230,Block,Saligrama,LGD,545,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,1179,Block,Salkhua,LGD,216,District,1179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,6818,Block,Sallar,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,829,Block,Salon,LGD,175,District,829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +LGD,7532,Block,Saloora,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,2356,Block,Saltora,LGD,305,District,2356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,692,Block,Salumbar,LGD,777,District,692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,85,Block,Saluni,LGD,16,District,85,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,4817,Block,Salur,LGD,743,District,4817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7143,Block,Sam,LGD,103,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +LGD,2032,Block,Samaguri,LGD,297,District,2032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +LGD,377,Block,Samalkha,LGD,71,District,377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +LGD,4910,Block,Samalkota,LGD,746,District,4910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,250,Block,Samana,LGD,41,District,250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +LGD,1974,Block,Samanda,LGD,273,District,1974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +LGD,1288,Block,Samastipur,LGD,217,District,1288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,82,Block,Samba,LGD,624,District,82,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +LGD,7464,Block,Sambalpur,LGD,371,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +LGD,5237,Block,Sambepalle,LGD,753,District,5237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,721,Block,Sambhal,LGD,659,District,721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +LGD,6904,Block,Samdari,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,1154,Block,Sameli,LGD,201,District,1154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +LGD,3749,Block,Sami,LGD,455,District,3749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,1401,Block,Sampatchak,LGD,212,District,1401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +LGD,406,Block,Sampla,LGD,73,District,406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +LGD,224,Block,Samrala,LGD,36,District,224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +LGD,7242,Block,Samri,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,2224,Block,Samserganj,LGD,319,District,2224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,4022,Block,Samudrapur,LGD,498,District,4022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +LGD,6505,Block,Samulamlan,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,7488,Block,Sanakhemundi,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,3780,Block,Sanand,LGD,438,District,3780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,6997,Block,Sanawad,LGD,414,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,590,Block,Sanchore,LGD,104,District,590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,1425,Block,Sandesh,LGD,193,District,1425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,2334,Block,Sandeshkhali - I,LGD,303,District,2334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,2335,Block,Sandeshkhali - II,LGD,303,District,2335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,126,Block,Sandhol,LGD,22,District,126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,813,Block,Sandila,LGD,150,District,813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +LGD,5501,Block,Sandur,LGD,528,District,5501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +LGD,6503,Block,Sangaikot,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,5171,Block,Sangam,LGD,515,District,5171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,4272,Block,Sangameshwar,LGD,492,District,4272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +LGD,4202,Block,Sangamner,LGD,466,District,4202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,545,Block,Sanganer,LGD,102,District,545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,4492,Block,Sangareddy,LGD,691,District,4492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,466,Block,Sangaria,LGD,101,District,466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +LGD,1919,Block,Sangau,LGD,264,District,1919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false +LGD,6600,Block,Sangdupota Basar Nello Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,4705,Block,Sangem,LGD,522,District,4705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,199,Block,Sangla,LGD,19,District,199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +LGD,669,Block,Sangod,LGD,109,District,669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +LGD,4251,Block,Sangole,LGD,496,District,4251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,1046,Block,Sangrampur,LGD,213,District,1046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1364,Block,Sangrampur,LGD,207,District,1364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,3976,Block,Sangrampur,LGD,472,District,3976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,1705,Block,Sangram Sdo,LGD,233,District,1705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,271,Block,Sangrur,LGD,43,District,271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +LGD,1819,Block,Sangsangnyu,LGD,249,District,1819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false +LGD,5618,Block,Sanguem,LGD,793,District,5618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +LGD,1785,Block,Sanis,LGD,250,District,1785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,5300,Block,Sanjamala,LGD,755,District,5300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6204,Block,Sanjeli,LGD,445,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,1465,Block,Sanjhauli,LGD,215,District,1465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,7149,Block,Sanjoo,LGD,110,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +LGD,5871,Block,Sankarankoil,LGD,733,District,5871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +LGD,5733,Block,Sankarapuram,LGD,729,District,5733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +LGD,5739,Block,Sankari,LGD,584,District,5739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,7235,Block,Sankari,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,6404,Block,Sankari,LGD,57,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +LGD,4892,Block,Sankhavaram,LGD,746,District,4892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3904,Block,Sankheda,LGD,668,District,3904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +LGD,14,Block,Sankoo,LGD,6,District,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +LGD,2459,Block,Sankrail,LGD,703,District,2459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +LGD,2404,Block,Sankrail,LGD,313,District,2404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,7234,Block,Sanna,LGD,380,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,3744,Block,Santalpur,LGD,455,District,3744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,4790,Block,Santhabommali,LGD,519,District,4790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,4795,Block,Santhakaviti,LGD,521,District,4795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,5104,Block,Santhamaguluru,LGD,517,District,5104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,5138,Block,Santhanuthala Padu,LGD,517,District,5138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,5425,Block,Santhipuram,LGD,503,District,5425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,2311,Block,Santipur,LGD,320,District,2311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,6683,Block,Santirbazar,LGD,271,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +LGD,3881,Block,Santrampur,LGD,669,District,3881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +LGD,2384,Block,Santuri,LGD,321,District,2384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +LGD,3542,Block,Sanwer,LGD,410,District,3542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +LGD,7054,Block,Sapekhati,LGD,708,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +LGD,525,Block,Sapotra,LGD,108,District,525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,1778,Block,Saptiqa,LGD,251,District,1778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,693,Block,Sarada,LGD,777,District,693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,7274,Block,Saragaon,LGD,379,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,7098,Block,Saraguru,LGD,545,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,6959,Block,Sarahan,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,6986,Block,Sarai,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +LGD,1106,Block,Saraigarh Bhaptiyahi,LGD,223,District,1106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,2753,Block,Saraikela,LGD,341,District,2753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +LGD,3340,Block,Saraipali,LGD,385,District,3340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +LGD,1295,Block,Sarairanjan,LGD,217,District,1295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,1202,Block,Saraiya,LGD,208,District,1202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +LGD,2666,Block,Saraiyahat,LGD,326,District,2666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,4396,Block,Sarangapur,LGD,681,District,4396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,4336,Block,Sarangapur,LGD,680,District,4336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,3270,Block,Sarangarh,LGD,763,District,3270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,3567,Block,Sarangpur,LGD,422,District,3567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,7479,Block,Saraskana,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,6196,Block,Saraswati,LGD,455,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,6476,Block,Saraswati Nagar St,LGD,76,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +LGD,2553,Block,Sarath,LGD,324,District,2553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,4788,Block,Saravakota,LGD,519,District,4788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,6960,Block,Sarawati Nagar,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,7370,Block,Sardargarh,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +LGD,3533,Block,Sardarpur,LGD,403,District,3533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +LGD,483,Block,Sardarshahar,LGD,96,District,483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,732,Block,Sardhana,LGD,169,District,732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +LGD,247,Block,Sardulgarh,LGD,37,District,247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false +LGD,2377,Block,Sarenga,LGD,305,District,2377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,7326,Block,Sargaon,LGD,647,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false +LGD,866,Block,Sarila,LGD,149,District,866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +LGD,7244,Block,Sariya,LGD,763,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,129,Block,Sarkaghat,LGD,22,District,129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,1712,Block,Sarli Circle,LGD,233,District,1712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false +LGD,6389,Block,Sarmathura,LGD,98,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +LGD,1384,Block,Sarmera,LGD,209,District,1384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,6094,Block,Sarojani Nagar,LGD,162,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +LGD,7325,Block,Sarona,LGD,381,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +LGD,4526,Block,Saroornagar,LGD,518,District,4526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,7401,Block,Sarsiwa,LGD,763,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +LGD,2023,Block,Sarthebari,LGD,280,District,2023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +LGD,4793,Block,Sarubujjili,LGD,519,District,4793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,2087,Block,Sarupathar,LGD,288,District,2087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +LGD,2025,Block,Sarupeta (Pt),LGD,739,District,2025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +LGD,2547,Block,Sarwan,LGD,324,District,2547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,613,Block,Sarwar,LGD,86,District,613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,1471,Block,Sasaram,LGD,215,District,1471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,267,Block,Sas Nagar (Mohali),LGD,608,District,267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +LGD,757,Block,Sasni,LGD,163,District,757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +LGD,7160,Block,Saspol,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +LGD,7397,Block,Satai,LGD,398,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +LGD,1777,Block,Satakha,LGD,251,District,1777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,4262,Block,Satara,LGD,494,District,4262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,5613,Block,Satari,LGD,551,District,5613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +LGD,1172,Block,Satar Kataiya,LGD,216,District,1172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,2631,Block,Satbarwa,LGD,338,District,2631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,2526,Block,Satgawan,LGD,334,District,2526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +LGD,7559,Block,Sathamba,LGD,672,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +LGD,5869,Block,Sathankulam,LGD,594,District,5869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,7515,Block,Sathnala,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,4751,Block,Sathupalli,LGD,509,District,4751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,5749,Block,Sathyamangalam,LGD,573,District,5749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,3751,Block,Satlasana,LGD,451,District,3751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,6459,Block,Satnali St,LGD,69,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +LGD,1779,Block,Satoi,LGD,251,District,1779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,311,Block,Satpuli,LGD,52,District,311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,5058,Block,Sattenapalli,LGD,751,District,5058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5854,Block,Sattur,LGD,597,District,5854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,3528,Block,Satwas,LGD,402,District,3528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,3064,Block,Satyabadi,LGD,369,District,3064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +LGD,5402,Block,Satyavedu,LGD,752,District,5402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1175,Block,Saur Bazar,LGD,216,District,1175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,3656,Block,Sausar,LGD,785,District,3656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +LGD,5441,Block,Savadatti,LGD,527,District,5441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,5064,Block,Savalyapuram H/O Kanamarlapudi,LGD,751,District,5064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5490,Block,Savanur,LGD,540,District,5490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +LGD,3846,Block,Savar Kundla,LGD,439,District,3846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +LGD,3897,Block,Savli,LGD,461,District,3897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,4026,Block,Savner,LGD,484,District,4026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,1591,Block,Sawa Circle,LGD,231,District,1591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,531,Block,Sawai Madhopur,LGD,113,District,531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,4068,Block,Sawali,LGD,473,District,4068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,4281,Block,Sawantwadi,LGD,495,District,4281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +LGD,6660,Block,Sawar,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,810,Block,Sawayajpur,LGD,150,District,810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +LGD,1884,Block,Sawombung,LGD,255,District,1884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +LGD,3795,Block,Sayla,LGD,460,District,3795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,585,Block,Sayla,LGD,104,District,585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +LGD,7390,Block,Sayra,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,1850,Block,Sechu-Zubza,LGD,245,District,1850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +LGD,4498,Block,Secunderabad,LGD,507,District,4498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,5584,Block,Sedam,LGD,538,District,5584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,6045,Block,Sedwa,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,7247,Block,Seepat,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,7518,Block,Seerole,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,6836,Block,Seethammadhara,LGD,520,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,4770,Block,Seethampeta,LGD,743,District,4770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4896,Block,Seethanagaram,LGD,505,District,4896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,4814,Block,Seethanagaram,LGD,743,District,4814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5153,Block,Seetharamapuram,LGD,515,District,5153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,3548,Block,Segaon,LGD,414,District,3548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +LGD,6553,Block,Segi Gusar Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,3582,Block,Sehore,LGD,427,District,3582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,7008,Block,Sehore Nagar,LGD,427,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,6104,Block,Seijosa Adc,LGD,723,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false +LGD,6927,Block,Sekhala,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,1800,Block,Sekruzu,LGD,248,District,1800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,4018,Block,Seloo,LGD,498,District,4018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +LGD,1962,Block,Selsella,LGD,278,District,1962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +LGD,4116,Block,Selu,LGD,489,District,4116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,6911,Block,Semari,LGD,777,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3475,Block,Semaria,LGD,424,District,3475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,6632,Block,Sendamangalam,LGD,580,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +LGD,3561,Block,Sendhwa,LGD,393,District,3561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,5785,Block,Sendurai,LGD,610,District,5785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +LGD,4111,Block,Sengaon,LGD,477,District,4111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +LGD,2602,Block,Senha,LGD,336,District,2602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +LGD,3403,Block,Seondha,LGD,401,District,3403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +LGD,3664,Block,Seoni,LGD,428,District,3664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,3612,Block,Seoni Malwa,LGD,409,District,3612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,7018,Block,Seoni Nagar,LGD,428,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +LGD,517,Block,Sepau,LGD,98,District,517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +LGD,1584,Block,Seppa Hq,LGD,231,District,1584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false +LGD,2350,Block,Serampur Uttarpara,LGD,312,District,2350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,1910,Block,Serchhip,LGD,268,District,1910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false +LGD,4516,Block,Serilingampally,LGD,518,District,4516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,7147,Block,Setrawa,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5332,Block,Settur,LGD,502,District,5332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,6835,Block,Sewarai,LGD,146,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +LGD,1835,Block,Seyochung,LGD,614,District,1835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +LGD,4542,Block,Shabad,LGD,518,District,4542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,3687,Block,Shadhora,LGD,391,District,3687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +LGD,727,Block,Shahabad,LGD,176,District,727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +LGD,7088,Block,Shahabad,LGD,538,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,809,Block,Shahabad,LGD,150,District,809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +LGD,3953,Block,Shahade,LGD,486,District,3953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +LGD,4167,Block,Shahapur,LGD,497,District,4167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +LGD,364,Block,Shahbad,LGD,68,District,364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +LGD,675,Block,Shahbad,LGD,89,District,675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +LGD,6816,Block,Shahbad Bala,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,437,Block,Shahdara,LGD,81,District,437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false +LGD,981,Block,Shahganj,LGD,152,District,981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +LGD,3447,Block,Shahgarh,LGD,425,District,3447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +LGD,795,Block,Shahjahanpur,LGD,180,District,795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +LGD,209,Block,Shahkot,LGD,34,District,209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +LGD,1341,Block,Shahkund,LGD,192,District,1341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,3441,Block,Shahnagar,LGD,420,District,3441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,6794,Block,Shahoora (Litter),LGD,11,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +LGD,5588,Block,Shahpur,LGD,635,District,5588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +LGD,98,Block,Shahpur,LGD,18,District,98,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,3603,Block,Shahpur,LGD,394,District,3603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +LGD,1421,Block,Shahpur,LGD,193,District,1421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,629,Block,Shahpura,LGD,92,District,629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +LGD,3639,Block,Shahpura,LGD,404,District,3639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +LGD,540,Block,Shahpura,LGD,102,District,540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,3630,Block,Shahpura,LGD,411,District,3630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,4283,Block,Shahuwadi,LGD,480,District,4283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,6431,Block,Shahzadpur St,LGD,58,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +LGD,4496,Block,Shaikpet,LGD,507,District,4496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,3519,Block,Shajapur,LGD,430,District,3519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +LGD,6192,Block,Shakar Chiktan,LGD,6,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +LGD,7578,Block,Shakur Basti,LGD,796,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,4624,Block,Shaligouraram,LGD,514,District,4624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,2514,Block,Shaligram Ram Narayanpur(Hunterganj),LGD,323,District,2514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,7579,Block,Shalimar Bagh,LGD,796,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +LGD,7338,Block,Shallang,LGD,279,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false +LGD,6367,Block,Shama,LGD,46,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +LGD,7457,Block,Shamakhunta,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,1825,Block,Shamator,LGD,765,District,1825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1345,Block,Shambhuganj,LGD,190,District,1345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +LGD,3495,Block,Shamgarh,LGD,416,District,3495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,1321,Block,Shamho Akha Kurha,LGD,191,District,1321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,4520,Block,Shamirpet,LGD,700,District,4520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,7548,Block,Shamlaji,LGD,672,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +LGD,707,Block,Shamli,LGD,660,District,707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false +LGD,4543,Block,Shamshabad,LGD,518,District,4543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,3576,Block,Shamshabad,LGD,437,District,3576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,1747,Block,Shangnyu,LGD,247,District,1747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,56,Block,Shangus,LGD,1,District,56,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,4454,Block,Shankarampet (A),LGD,513,District,4454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,4467,Block,Shankarampet (R),LGD,513,District,4467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,4441,Block,Shankarapatnam,LGD,508,District,4441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,3241,Block,Shankargarh,LGD,649,District,3241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,4515,Block,Shankarpalle,LGD,518,District,4515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,1162,Block,Shankarpur,LGD,205,District,1162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,6197,Block,Shankheshvar,LGD,455,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,4691,Block,Shayampet,LGD,686,District,4691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,3977,Block,Shegaon,LGD,472,District,3977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,3883,Block,Shehera,LGD,454,District,3883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +LGD,1374,Block,Sheikhpura,LGD,219,District,1374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false +LGD,1373,Block,Shekhopur Sarai,LGD,219,District,1373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false +LGD,1994,Block,Shella Bholaganj,LGD,274,District,1994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,5874,Block,Shenkottai,LGD,733,District,5874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +LGD,577,Block,Sheo,LGD,90,District,577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +LGD,592,Block,Sheoganj,LGD,115,District,592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +LGD,1060,Block,Sheohar,LGD,220,District,1060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +LGD,3382,Block,Sheopur,LGD,431,District,3382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +LGD,1470,Block,Sheosagar,LGD,215,District,1470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,3092,Block,Sheragada,LGD,354,District,3092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,6566,Block,Shergaon Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,571,Block,Shergarh,LGD,107,District,571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,1503,Block,Sherghati,LGD,196,District,1503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,7305,Block,Shergole,LGD,6,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +LGD,4207,Block,Shevgaon,LGD,466,District,4207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,5489,Block,Shiggaon,LGD,540,District,5489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +LGD,2671,Block,Shikaripara,LGD,326,District,2671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +LGD,5517,Block,Shikarpur,LGD,547,District,5517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +LGD,750,Block,Shikarpur,LGD,134,District,750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +LGD,774,Block,Shikohabad,LGD,143,District,774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +LGD,175,Block,Shillai,LGD,24,District,175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +LGD,181,Block,Shimla ( Rural ),LGD,23,District,181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,182,Block,Shimla (Urban),LGD,23,District,182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,5471,Block,Shirahatti,LGD,537,District,5471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +LGD,4295,Block,Shirala,LGD,493,District,4295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,4286,Block,Shirol,LGD,480,District,4286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +LGD,3956,Block,Shirpur,LGD,474,District,3956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +LGD,4189,Block,Shirur,LGD,490,District,4189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,4231,Block,Shirur Anantpal,LGD,481,District,4231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,4217,Block,Shirur (Kasar),LGD,470,District,4217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,1286,Block,Shivaji Nagar,LGD,217,District,1286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,5520,Block,Shivamogga,LGD,547,District,5520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +LGD,4487,Block,Shivampet,LGD,513,District,4487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,7565,Block,Shivpur,LGD,409,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,3408,Block,Shivpuri,LGD,432,District,3408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,7044,Block,Shivpuri Nagar,LGD,432,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +LGD,7256,Block,Shivrinarayan,LGD,379,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +LGD,932,Block,Shohratgarh,LGD,182,District,932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +LGD,5705,Block,Sholinganallur,LGD,568,District,5705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,7060,Block,Sholinghur,LGD,731,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +LGD,6641,Block,Shoolagiri,LGD,577,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +LGD,52,Block,Shopian,LGD,625,District,52,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false +LGD,5587,Block,Shorapur,LGD,635,District,5587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +LGD,4212,Block,Shrigonda,LGD,466,District,4212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,555,Block,Shrimadhopur,LGD,114,District,555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,7148,Block,Shrimahaveer Ji,LGD,108,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,4205,Block,Shrirampur,LGD,466,District,4205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +LGD,5549,Block,Shrirangapattana,LGD,544,District,5549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +LGD,4183,Block,Shrivardhan,LGD,491,District,4183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,3522,Block,Shujalpur,LGD,430,District,3522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +LGD,3583,Block,Shyampur,LGD,427,District,3583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +LGD,2410,Block,Shyampur - I,LGD,313,District,2410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,2411,Block,Shyampur - II,LGD,313,District,2411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,1921,Block,Siaha,LGD,267,District,1921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,false +LGD,747,Block,Siana,LGD,134,District,747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +LGD,6573,Block,Sibe Circle,LGD,719,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false +LGD,2071,Block,Sibsagar,LGD,300,District,2071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +LGD,5486,Block,Siddapur,LGD,550,District,5486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,6281,Block,Siddipet Rural,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,4459,Block,Siddipet Urban,LGD,692,District,4459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,808,Block,Sidhauli,LGD,183,District,808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +LGD,1013,Block,Sidhaw,LGD,211,District,1013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,6931,Block,Sidhmukh,LGD,96,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,5229,Block,Sidhout,LGD,504,District,5229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,3746,Block,Sidhpur,LGD,455,District,3746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +LGD,1227,Block,Sidhwalia,LGD,197,District,1227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,5599,Block,Sidlaghatta,LGD,630,District,5599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +LGD,2114,Block,Sidli,LGD,612,District,2114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +LGD,3700,Block,Sihawal,LGD,433,District,3700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +LGD,3856,Block,Sihor,LGD,443,District,3856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,3627,Block,Sihora,LGD,411,District,3627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +LGD,89,Block,Sihunta,LGD,16,District,89,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,7332,Block,Siju,LGD,277,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +LGD,976,Block,Sikanderpur,LGD,126,District,976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +LGD,847,Block,Sikandra,LGD,156,District,847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +LGD,1526,Block,Sikandra,LGD,198,District,1526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,745,Block,Sikandrabad,LGD,134,District,745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +LGD,758,Block,Sikandra Rao,LGD,163,District,758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +LGD,553,Block,Sikar,LGD,114,District,553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,7228,Block,Sikar Gramin,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +LGD,535,Block,Sikrai,LGD,97,District,535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +LGD,6930,Block,Sikri,LGD,767,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,1026,Block,Sikta,LGD,211,District,1026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,1118,Block,Sikti,LGD,188,District,1118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +LGD,1395,Block,Silao,LGD,209,District,1395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,2097,Block,Silchar,LGD,282,District,2097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +LGD,2688,Block,Silli,LGD,339,District,2688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,4135,Block,Sillod,LGD,469,District,4135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,2091,Block,Silonijan,LGD,292,District,2091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +LGD,6843,Block,Silsango Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,3596,Block,Silwani,LGD,421,District,3596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,649,Block,Simalwara,LGD,99,District,649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +LGD,2524,Block,Simaria,LGD,323,District,2524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,6975,Block,Simaria,LGD,420,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +LGD,2718,Block,Simdega,LGD,342,District,2718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,3324,Block,Simga,LGD,644,District,3324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,5217,Block,Simhadripuram,LGD,504,District,5217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,3215,Block,Similiguda,LGD,363,District,3215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +LGD,2372,Block,Simlapal,LGD,305,District,2372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,1435,Block,Simri,LGD,194,District,1435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +LGD,1178,Block,Simri Bakhtiarpur,LGD,216,District,1178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,2908,Block,Simulia,LGD,346,District,2908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,3158,Block,Sinapali,LGD,368,District,3158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +LGD,4069,Block,Sindewahi,LGD,473,District,4069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,5451,Block,Sindgi,LGD,530,District,5451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,6052,Block,Sindhari,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,5463,Block,Sindhnur,LGD,546,District,5463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +LGD,3957,Block,Sindkhede,LGD,474,District,3957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +LGD,3986,Block,Sindkhed Raja,LGD,472,District,3986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +LGD,1662,Block,Singa Circle,LGD,240,District,1662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,5995,Block,Singampunari,LGD,585,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,5325,Block,Singanamala,LGD,502,District,5325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5149,Block,Singarayakonda,LGD,517,District,5149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,4744,Block,Singareni,LGD,509,District,4744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,1573,Block,Singchung Adc,LGD,242,District,1573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,1159,Block,Singheshwar,LGD,205,District,1159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +LGD,1301,Block,Singhia,LGD,217,District,1301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,7204,Block,Singhpora,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,1182,Block,Singhwara,LGD,195,District,1182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,1872,Block,Singngat,LGD,254,District,1872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,3488,Block,Singoli,LGD,419,District,3488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +LGD,3705,Block,Singrauli,LGD,638,District,3705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +LGD,7040,Block,Singrauli Nagar,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +LGD,2349,Block,Singur,LGD,312,District,2349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,6480,Block,Singvad,LGD,445,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,4154,Block,Sinnar,LGD,487,District,4154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,3908,Block,Sinor,LGD,461,District,3908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,6777,Block,Siot,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,2147,Block,Sipajhar,LGD,283,District,2147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +LGD,5533,Block,Sira,LGD,548,District,5533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,3607,Block,Sirali,LGD,408,District,3607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +LGD,885,Block,Sirathu,LGD,158,District,885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +LGD,899,Block,Sirauli Gauspur,LGD,129,District,899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +LGD,4435,Block,Sircilla,LGD,683,District,4435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,1523,Block,Sirdala,LGD,210,District,1523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,6279,Block,Sirgapoor,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,4379,Block,Sirikonda,LGD,516,District,4379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,6224,Block,Sirikonda,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,5795,Block,Sirkali,LGD,735,District,5795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +LGD,3473,Block,Sirmour,LGD,424,District,3473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,593,Block,Sirohi,LGD,115,District,593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +LGD,4063,Block,Sironcha,LGD,475,District,4063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +LGD,3571,Block,Sironj,LGD,437,District,3571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,4315,Block,Sirpur (T),LGD,699,District,4315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,4326,Block,Sirpur U,LGD,699,District,4326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,390,Block,Sirsa,LGD,74,District,390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +LGD,6161,Block,Sirsaganj,LGD,143,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +LGD,5483,Block,Sirsi,LGD,550,District,5483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,5499,Block,Siruguppa,LGD,528,District,5499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +LGD,5286,Block,Sirvel,LGD,755,District,5286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7097,Block,Sirwar,LGD,546,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +LGD,2708,Block,Sisai,LGD,331,District,2708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +LGD,2056,Block,Sissibargaon,LGD,284,District,2056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +LGD,1247,Block,Siswan,LGD,222,District,1247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,2189,Block,Sitai,LGD,308,District,2189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,2190,Block,Sitalkuchi,LGD,308,District,2190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,3498,Block,Sitamau,LGD,416,District,3498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,3252,Block,Sitapur,LGD,389,District,3252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +LGD,804,Block,Sitapur,LGD,183,District,804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +LGD,351,Block,Sitarganj,LGD,56,District,351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +LGD,1839,Block,Sitimi,LGD,614,District,1839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +LGD,5832,Block,Sivaganga,LGD,585,District,5832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,5870,Block,Sivagiri,LGD,733,District,5870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +LGD,5849,Block,Sivakasi,LGD,597,District,5849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,1230,Block,Siwan,LGD,222,District,1230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,580,Block,Siwana,LGD,775,District,580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,400,Block,Siwani,LGD,59,District,400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +LGD,6449,Block,Siwan St,LGD,66,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +LGD,1610,Block,Siyum Adc,LGD,241,District,1610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,6977,Block,Sleemnabad,LGD,413,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,5204,Block,S.Mydukur,LGD,504,District,5204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,6209,Block,Soan,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,5394,Block,Sodam,LGD,753,District,5394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4134,Block,Soegaon,LGD,469,District,4134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,1685,Block,Soha Circle,LGD,239,District,1685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +LGD,3617,Block,Sohagpur,LGD,409,District,3617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +LGD,3691,Block,Sohagpur,LGD,429,District,3691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +LGD,904,Block,Sohawal,LGD,140,District,904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +LGD,2761,Block,Sohela,LGD,347,District,2761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +LGD,6542,Block,Sohiong,LGD,274,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +LGD,420,Block,Sohna,LGD,62,District,420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,599,Block,Sojat,LGD,111,District,599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +LGD,3862,Block,Sojitra,LGD,440,District,3862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,165,Block,Solan,LGD,25,District,165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +LGD,4247,Block,Solapur North,LGD,496,District,4247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,4253,Block,Solapur South,LGD,496,District,4253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +LGD,5412,Block,Somala,LGD,753,District,5412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5363,Block,Somandepalli,LGD,754,District,5363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,331,Block,Someshwar,LGD,45,District,331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,4780,Block,Sompeta,LGD,519,District,4780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,5567,Block,Somvarpet,LGD,541,District,5567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +LGD,2689,Block,Sonahatu,LGD,339,District,2689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,2099,Block,Sonai,LGD,282,District,2099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +LGD,7296,Block,Sonakhan,LGD,644,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,7516,Block,Sonala,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,2364,Block,Sonamukhi,LGD,305,District,2364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,6680,Block,Sonamura,LGD,653,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +LGD,3139,Block,Sonapur,LGD,372,District,3139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +LGD,2130,Block,Sonapur,LGD,618,District,2130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +LGD,2548,Block,Sona Rai Tharhi,LGD,324,District,2548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +LGD,2074,Block,Sonari,LGD,708,District,2074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +LGD,7602,Block,Sonari Part,LGD,300,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +LGD,2417,Block,Sonarpur,LGD,304,District,2417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,42,Block,Sonawari,LGD,623,District,42,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +LGD,1177,Block,Sonbarsa,LGD,216,District,1177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +LGD,1066,Block,Sonbarsa,LGD,221,District,1066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,1545,Block,Sonbhadra Banshi Suryapur,LGD,611,District,1545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +LGD,6981,Block,Sondawa,LGD,639,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +LGD,1267,Block,Sonepur,LGD,218,District,1267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,3944,Block,Songadh,LGD,641,District,3944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +LGD,1973,Block,Songsak,LGD,273,District,1973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +LGD,6484,Block,Song Song,LGD,257,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +LGD,3233,Block,Sonhat,LGD,384,District,3233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +LGD,1344,Block,Sonhaula,LGD,192,District,1344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,380,Block,Sonipat,LGD,75,District,380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +LGD,3525,Block,Sonkatch,LGD,402,District,3525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,1533,Block,Sono,LGD,198,District,1533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +LGD,4121,Block,Sonpeth,LGD,489,District,4121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +LGD,2728,Block,Sonua,LGD,343,District,2728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,32,Block,Sopore,LGD,3,District,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,2907,Block,Sora,LGD,346,District,2907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +LGD,5516,Block,Sorab,LGD,547,District,5516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +LGD,888,Block,Soraon,LGD,120,District,888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +LGD,1550,Block,Soreng,LGD,742,District,1550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +LGD,1820,Block,Sotokur,LGD,765,District,1820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,2011,Block,South Salmara,LGD,707,District,2011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false +LGD,7417,Block,South Salmara Pt,LGD,285,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +LGD,7421,Block,Soyatkala,LGD,667,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +LGD,116,Block,Spiti,LGD,21,District,116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +LGD,4882,Block,S.Rayavaram,LGD,744,District,4882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5206,Block,Sri Avadhutha Kasinayana,LGD,504,District,5206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,480,Block,Sridungargarh,LGD,93,District,480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +LGD,6819,Block,Srigufwara,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +LGD,2112,Block,Srijangram,LGD,281,District,2112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +LGD,4802,Block,Srikakulam,LGD,519,District,4802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,5378,Block,Srikalahasti,LGD,752,District,5378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,241,Block,Sri Muktsar Sahib,LGD,39,District,241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +LGD,6646,Block,Srimushnam,LGD,570,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,306,Block,Srinagar,LGD,52,District,306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,1136,Block,Srinagar,LGD,214,District,1136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +LGD,6805,Block,Srinagar Central,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +LGD,43,Block,Srinagar North,LGD,13,District,43,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +LGD,44,Block,Srinagar South,LGD,13,District,44,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +LGD,5525,Block,Sringeri,LGD,532,District,5525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,5590,Block,Srinivaspur,LGD,542,District,5590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +LGD,5702,Block,Sriperumbudur,LGD,574,District,5702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +LGD,4407,Block,Srirampur,LGD,682,District,4407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,5778,Block,Srirangam,LGD,591,District,5778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,6288,Block,Srirangapur,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,5419,Block,Srirangarajapuram,LGD,503,District,5419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,6538,Block,Srisailam,LGD,755,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5867,Block,Srivaikuntam,LGD,594,District,5867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,5848,Block,Srivilliputhur,LGD,597,District,5848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,4831,Block,Srungavarapukota,LGD,521,District,4831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,6506,Block,Suangdoh,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,723,Block,Suar,LGD,176,District,723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +LGD,2054,Block,Subansiri (Pt-I),LGD,295,District,2054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +LGD,7460,Block,Subdega,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,6024,Block,Subir,LGD,444,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false +LGD,6716,Block,Suchetgarh,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +LGD,4180,Block,Sudhagad,LGD,491,District,4180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,1034,Block,Sugauli,LGD,213,District,1034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,7150,Block,Suhagpura,LGD,629,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +LGD,7249,Block,Suhela,LGD,644,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,6166,Block,Suigam,LGD,789,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,486,Block,Sujangarh,LGD,96,District,486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,6265,Block,Sujathanagar,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,7549,Block,Sukhsar,LGD,445,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +LGD,2969,Block,Sukinda,LGD,356,District,2969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,3375,Block,Sukma,LGD,642,District,3375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +LGD,7477,Block,Sukruli,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,7048,Block,Sulah,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,2877,Block,Suliapada,LGD,365,District,2877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,5197,Block,Sullurpeta,LGD,752,District,5197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,327,Block,Sult,LGD,45,District,327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,1340,Block,Sultanganj,LGD,192,District,1340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +LGD,7566,Block,Sultan-Ganj,LGD,421,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,6532,Block,Sultanpur,LGD,421,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,915,Block,Sultanpur,LGD,185,District,915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +LGD,207,Block,Sultanpur Lodhi,LGD,35,District,207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +LGD,4425,Block,Sulthanabad,LGD,682,District,4425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +LGD,5636,Block,Sulthanbathery,LGD,567,District,5636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +LGD,5896,Block,Sulur,LGD,569,District,5896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,5565,Block,Sulya,LGD,534,District,5565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,604,Block,Sumerpur,LGD,111,District,604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +LGD,11,Block,Sumoor,LGD,9,District,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +LGD,272,Block,Sunam,LGD,43,District,272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +LGD,2809,Block,Sundargarh,LGD,373,District,2809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,132,Block,Sundarnagar,LGD,22,District,132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,2563,Block,Sundarpahari,LGD,330,District,2563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,26,Block,Sunderbani,LGD,12,District,26,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,6667,Block,Sunel,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +LGD,1784,Block,Sungro,LGD,250,District,1784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,180,Block,Sunni,LGD,23,District,180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,1728,Block,Sunpura Circle,LGD,234,District,1728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false +LGD,5479,Block,Supa,LGD,550,District,5479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,1109,Block,Supaul,LGD,223,District,1109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,1064,Block,Suppi,LGD,221,District,1064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,3076,Block,Surada,LGD,354,District,3076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +LGD,6371,Block,Surajgarh,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,1367,Block,Surajgarha,LGD,204,District,1367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +LGD,3242,Block,Surajpur,LGD,648,District,3242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +LGD,19,Block,Surankote,LGD,10,District,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +LGD,465,Block,Suratgarh,LGD,100,District,465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,7442,Block,Surendranagar City,LGD,460,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,4142,Block,Surgana,LGD,487,District,4142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,2259,Block,Suri - I,LGD,307,District,2259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2260,Block,Suri - II,LGD,307,District,2260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +LGD,2542,Block,Suriya,LGD,329,District,2542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,6934,Block,Suroth,LGD,108,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,1068,Block,Sursand,LGD,221,District,1068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +LGD,1769,Block,Suruhuto,LGD,251,District,1769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,4638,Block,Suryapet,LGD,696,District,4638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,1460,Block,Suryapura,LGD,215,District,1460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,3515,Block,Susner,LGD,667,District,3515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +LGD,2482,Block,Sutahata,LGD,317,District,2482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,6992,Block,Suthaliya,LGD,422,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +LGD,2225,Block,Suti - I,LGD,319,District,2225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,2226,Block,Suti - II,LGD,319,District,2226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +LGD,3836,Block,Sutrapada,LGD,675,District,3836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +LGD,3499,Block,Suwasara,LGD,416,District,3499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +LGD,2319,Block,Swarupnagar,LGD,303,District,2319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +LGD,6330,Block,Syalde,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +LGD,5185,Block,Sydapuram,LGD,515,District,5185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5198,Block,Tada,LGD,752,District,5198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5054,Block,Tadepalli,LGD,506,District,5054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,4961,Block,Tadepalligudem,LGD,523,District,4961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,5056,Block,Tadikonda,LGD,506,District,5056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,5338,Block,Tadimarri,LGD,754,District,5338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5313,Block,Tadipatri,LGD,502,District,5313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,4582,Block,Tadoor,LGD,694,District,4582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,6508,Block,Tadubi,LGD,257,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +LGD,4687,Block,Tadvai,LGD,720,District,4687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,4389,Block,Tadwai,LGD,685,District,4389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,858,Block,Tahrauli,LGD,153,District,858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +LGD,7306,Block,Taisuru,LGD,6,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +LGD,1290,Block,Tajpur,LGD,217,District,1290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,6158,Block,Takha,LGD,139,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +LGD,3294,Block,Takhatpur,LGD,375,District,3294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +LGD,6963,Block,Taklech,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,6549,Block,Taksing Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,3503,Block,Tal,LGD,423,District,3503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +LGD,4182,Block,Tala,LGD,491,District,4182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,3006,Block,Talacher,LGD,344,District,3006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +LGD,3859,Block,Talaja,LGD,443,District,3859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,3834,Block,Talala,LGD,675,District,3834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +LGD,4309,Block,Talamadugu,LGD,501,District,4309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,5652,Block,Talappilly,LGD,566,District,5652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +LGD,4157,Block,Talasari,LGD,665,District,4157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +LGD,7225,Block,Talawara,LGD,113,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,861,Block,Talbehat,LGD,161,District,861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +LGD,2371,Block,Taldangra,LGD,305,District,2371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,6033,Block,Talera,LGD,94,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +LGD,1716,Block,Tali Adc,LGD,677,District,1716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false +LGD,1611,Block,Taliha Adc,LGD,241,District,1611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +LGD,7073,Block,Talikoti,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,5632,Block,Taliparamba,LGD,557,District,5632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +LGD,2568,Block,Taljhari,LGD,340,District,2568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,4950,Block,Tallapudi,LGD,505,District,4950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,4930,Block,Tallarevu,LGD,746,District,4930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3768,Block,Talod,LGD,458,District,3768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +LGD,3952,Block,Talode,LGD,486,District,3952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +LGD,5340,Block,Talupula,LGD,754,District,5340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,246,Block,Talwandi Sabo,LGD,28,District,246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +LGD,2699,Block,Tamar I,LGD,339,District,2699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +LGD,5703,Block,Tambaram,LGD,730,District,5703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +LGD,1866,Block,Tamenglong,LGD,258,District,1866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false +LGD,1865,Block,Tamenglong North,LGD,258,District,1865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false +LGD,1864,Block,Tamenglong West,LGD,258,District,1864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false +LGD,3647,Block,Tamia,LGD,399,District,3647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,958,Block,Tamkuhi Raj,LGD,160,District,958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +LGD,1830,Block,Tamlu,LGD,615,District,1830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false +LGD,2472,Block,Tamluk,LGD,317,District,2472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +LGD,3266,Block,Tamnar,LGD,386,District,3266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +LGD,4305,Block,Tamsi,LGD,501,District,4305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,2144,Block,Tamulpur,LGD,756,District,2144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +LGD,5360,Block,Tanakal,LGD,754,District,5360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,724,Block,Tanda,LGD,176,District,724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +LGD,907,Block,Tanda,LGD,121,District,907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +LGD,7193,Block,Tanda,LGD,33,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +LGD,4332,Block,Tandur,LGD,684,District,4332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,4534,Block,Tandur,LGD,698,District,4534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,2525,Block,Tandwa,LGD,323,District,2525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +LGD,7459,Block,Tangarpali,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +LGD,3052,Block,Tangi,LGD,362,District,3052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +LGD,2955,Block,Tangi-Choudwar,LGD,350,District,2955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,39,Block,Tangmarg,LGD,3,District,39,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,5141,Block,Tangutur,LGD,517,District,5141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,3800,Block,Tankara,LGD,673,District,3800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +LGD,1506,Block,Tan Kuppa,LGD,196,District,1506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,4340,Block,Tanoor,LGD,680,District,4340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +LGD,7037,Block,Tansen,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +LGD,2740,Block,Tantnagar,LGD,343,District,2740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,6658,Block,Tantoti,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +LGD,4972,Block,Tanuku,LGD,523,District,4972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,421,Block,Taoru,LGD,604,District,421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +LGD,276,Block,Tapa,LGD,605,District,276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +LGD,2205,Block,Tapan,LGD,310,District,2205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +LGD,7603,Block,Tapkara,LGD,380,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +LGD,6941,Block,Tapri,LGD,19,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +LGD,7128,Block,Tapukara,LGD,770,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,930,Block,Tarabganj,LGD,147,District,930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +LGD,1250,Block,Taraiya,LGD,218,District,1250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +LGD,2342,Block,Tarakeswar,LGD,312,District,2342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +LGD,1711,Block,Tarak Lengdi Cicle,LGD,677,District,1711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false +LGD,3512,Block,Tarana,LGD,435,District,3512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,481,Block,Taranagar,LGD,96,District,481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +LGD,3861,Block,Tarapur,LGD,440,District,3861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,1362,Block,Tarapur,LGD,207,District,1362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,1433,Block,Tarari,LGD,193,District,1433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,1595,Block,Taraso Circle,LGD,237,District,1595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,3140,Block,Tarbha,LGD,372,District,3140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +LGD,1186,Block,Tardih,LGD,195,District,1186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +LGD,2629,Block,Tarhasi,LGD,338,District,2629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,1062,Block,Tariani Chowk,LGD,220,District,1062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +LGD,5528,Block,Tarikere,LGD,532,District,5528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +LGD,5118,Block,Tarlupadu,LGD,790,District,5118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,259,Block,Tarn Taran,LGD,609,District,259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +LGD,6775,Block,Taryath,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,4301,Block,Tasgaon,LGD,493,District,4301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,6656,Block,Tatgarh,LGD,774,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,2648,Block,Tati Jhariya,LGD,332,District,2648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +LGD,6589,Block,Tato Eac,LGD,725,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false +LGD,6883,Block,Tauni Devi Bamson,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,1559,Block,Tawang Hq,LGD,238,District,1559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,1311,Block,Teghra,LGD,191,District,1311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +LGD,2301,Block,Tehatta - I,LGD,320,District,2301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,2302,Block,Tehatta - II,LGD,320,District,2302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +LGD,7113,Block,Tehla,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,297,Block,Tehri,LGD,55,District,297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +LGD,6357,Block,Tejam,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,4789,Block,Tekkali,LGD,519,District,4789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,4469,Block,Tekmal,LGD,513,District,4469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,4739,Block,Tekulapalli,LGD,690,District,4739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,6248,Block,Tekumatla,LGD,687,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +LGD,3988,Block,Telhara,LGD,467,District,3988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +LGD,6698,Block,Teliamura,LGD,652,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false +LGD,7286,Block,Telka,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +LGD,4581,Block,Telkapally,LGD,694,District,4581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,2848,Block,Telkoi,LGD,361,District,2848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +LGD,5078,Block,Tenali,LGD,506,District,5078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,3460,Block,Tendukheda,LGD,400,District,3460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +LGD,3638,Block,Tendukheda,LGD,418,District,3638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +LGD,2066,Block,Tengakhat,LGD,286,District,2066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +LGD,1893,Block,Tengnoupal,LGD,716,District,1893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false +LGD,1856,Block,Tening,LGD,613,District,1856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +LGD,5873,Block,Tenkasi,LGD,733,District,5873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +LGD,3197,Block,Tentulikhunti,LGD,366,District,3197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,2079,Block,Teok,LGD,290,District,2079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +LGD,3471,Block,Teonthar,LGD,424,District,3471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +LGD,7398,Block,Terdal,LGD,524,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +LGD,1121,Block,Terhagachh,LGD,203,District,1121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +LGD,1056,Block,Tetaria,LGD,213,District,1056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,1363,Block,Tetiha Bambor,LGD,207,District,1363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +LGD,2043,Block,Tezpur,LGD,301,District,2043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +LGD,1729,Block,Tezu Hq,LGD,234,District,1729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false +LGD,7184,Block,Thachi,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,1996,Block,Thadlaskein,LGD,275,District,1996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false +LGD,308,Block,Thailisain,LGD,52,District,308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,1023,Block,Thakrahan,LGD,211,District,1023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +LGD,6745,Block,Thakrakote,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,7289,Block,Thakurdwara,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,717,Block,Thakurdwara,LGD,171,District,717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +LGD,2556,Block,Thakurgangti,LGD,330,District,2556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +LGD,1123,Block,Thakurganj,LGD,203,District,1123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +LGD,2871,Block,Thakurmunda,LGD,365,District,2871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,2412,Block,Thakurpukur Mahestola,LGD,304,District,2412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +LGD,6359,Block,Thal,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +LGD,7120,Block,Thalaivasal,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,4562,Block,Thalakondapally,LGD,518,District,4562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,5634,Block,Thalassery,LGD,557,District,5634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +LGD,6539,Block,Thalavadi,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +LGD,4762,Block,Thallada,LGD,509,District,4762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,5121,Block,Thallur,LGD,517,District,5121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,5938,Block,Thamarassery,LGD,561,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +LGD,5368,Block,Thamballapalle,LGD,753,District,5368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,501,Block,Thanagazi,LGD,87,District,501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +LGD,20,Block,Thana Mandi,LGD,12,District,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +LGD,3706,Block,Thandla,LGD,412,District,3706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +LGD,5726,Block,Thandrampet,LGD,593,District,5726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,4165,Block,Thane,LGD,497,District,4165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +LGD,366,Block,Thanesar,LGD,68,District,366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +LGD,6037,Block,Thangadh,LGD,460,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,6217,Block,Thangallapalli,LGD,683,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,5814,Block,Thanjavur,LGD,586,District,5814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,3314,Block,Thankhamariya,LGD,650,District,3314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +LGD,1869,Block,Thanlon,LGD,715,District,1869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false +LGD,3733,Block,Tharad,LGD,789,District,3733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,288,Block,Tharali,LGD,47,District,288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +LGD,5798,Block,Tharangambadi,LGD,735,District,5798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +LGD,6257,Block,Tharigoppula,LGD,689,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,1388,Block,Tharthari,LGD,209,District,1388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +LGD,3878,Block,Thasra,LGD,450,District,3878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,63,Block,Thathri,LGD,4,District,63,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +LGD,5418,Block,Thavanampalle,LGD,503,District,5418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,1223,Block,Thawe,LGD,197,District,1223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,7049,Block,Thelamara,LGD,301,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +LGD,6565,Block,Thembang Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,5844,Block,Theni,LGD,588,District,5844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +LGD,184,Block,Theog,LGD,23,District,184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,4821,Block,Therlam,LGD,521,District,4821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,2723,Block,Thethaitangar,LGD,342,District,2723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +LGD,3556,Block,Thikri,LGD,393,District,3556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,4575,Block,Thimmajipet,LGD,694,District,4575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,4438,Block,Thimmapur LMD,LGD,508,District,4438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,6556,Block,Thingbu Circle,LGD,238,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,1899,Block,Thingdawl,LGD,263,District,1899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false +LGD,1905,Block,Thingsulthliah,LGD,261,District,1905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +LGD,4645,Block,Thipparthy,LGD,514,District,4645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,5801,Block,Thirukkuvalai,LGD,579,District,5801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +LGD,4619,Block,Thirumalagiri,LGD,696,District,4619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,5840,Block,Thirumangalam,LGD,578,District,5840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,5822,Block,Thirumayam,LGD,582,District,5822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,5915,Block,Thirunallar,LGD,598,District,5915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +LGD,5962,Block,Thirupparankundram,LGD,578,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,5829,Block,Thiruppathur,LGD,585,District,5829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,5965,Block,Thiruppuvanam,LGD,585,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +LGD,5809,Block,Thiruthuraipoondi,LGD,590,District,5809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,5813,Block,Thiruvaiyaru,LGD,586,District,5813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,5679,Block,Thiruvalla,LGD,564,District,5679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +LGD,5698,Block,Thiruvallur,LGD,589,District,5698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,5691,Block,Thiruvananthapuram,LGD,565,District,5691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +LGD,5806,Block,Thiruvarur,LGD,590,District,5806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,6672,Block,Thiruvattar,LGD,575,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +LGD,7053,Block,Thiruvennainallur,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,5780,Block,Thiruverumbur,LGD,591,District,5780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,5810,Block,Thiruvidaimarudur,LGD,586,District,5810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,7406,Block,Thiruvonam,LGD,586,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +LGD,5666,Block,Thodupuzha,LGD,556,District,5666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +LGD,4463,Block,Thoguta,LGD,692,District,4463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,4901,Block,Thondangi,LGD,746,District,4901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5221,Block,Thondur,LGD,504,District,5221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,1829,Block,Thonoknyu,LGD,736,District,1829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,5866,Block,Thoothukkudi,LGD,594,District,5866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,4715,Block,Thorrur,LGD,688,District,4715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +LGD,5180,Block,Thotapalligudur,LGD,515,District,5180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5025,Block,Thotlavalluru,LGD,510,District,5025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,5379,Block,Thottambedu,LGD,752,District,5379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5773,Block,Thottiyam,LGD,591,District,5773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,1877,Block,Thoubal,LGD,259,District,1877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false +LGD,5883,Block,Thovala,LGD,575,District,5883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +LGD,5654,Block,Thrissur,LGD,566,District,5654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +LGD,1575,Block,Thrizino Adc,LGD,242,District,1575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +LGD,3171,Block,Thuamul Rampur,LGD,358,District,3171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +LGD,5053,Block,Thulluru,LGD,506,District,5053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,136,Block,Thunag,LGD,22,District,136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,4620,Block,Thungaturthy,LGD,696,District,4620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +LGD,5775,Block,Thuraiyur,LGD,591,District,5775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,108,Block,Thural,LGD,18,District,108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +LGD,4614,Block,Thurkapally,LGD,697,District,4614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,6739,Block,Thuroo,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +LGD,467,Block,Tibbi,LGD,101,District,467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +LGD,6434,Block,Tigaon St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +LGD,2949,Block,Tigiria,LGD,350,District,2949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +LGD,2917,Block,Tihidi,LGD,348,District,2917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +LGD,6946,Block,Tihra,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,2132,Block,Tihu (Pt),LGD,298,District,2132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +LGD,496,Block,Tijara,LGD,770,District,496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3115,Block,Tikabali,LGD,359,District,3115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,3423,Block,Tikamgarh,LGD,434,District,3423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +LGD,190,Block,Tikar,LGD,23,District,190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +LGD,1488,Block,Tikari,LGD,196,District,1488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,6581,Block,Tikhak Rima Putok Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,6948,Block,Tikken,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +LGD,7074,Block,Tikota,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,1964,Block,Tikrikilla,LGD,278,District,1964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +LGD,3909,Block,Tilakwada,LGD,452,District,3909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +LGD,3334,Block,Tilda,LGD,387,District,3334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +LGD,794,Block,Tilhar,LGD,180,District,794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +LGD,824,Block,Tiloi,LGD,640,District,824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +LGD,1474,Block,Tilouthu,LGD,215,District,1474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +LGD,3610,Block,Timarni,LGD,408,District,3610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +LGD,1726,Block,Tinali Paglam Circle,LGD,235,District,1726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false +LGD,5729,Block,Tindivanam,LGD,596,District,5729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,2068,Block,Tingkhong,LGD,286,District,2068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +LGD,2061,Block,Tinsukia,LGD,302,District,2061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +LGD,6390,Block,Tinwari,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +LGD,4008,Block,Tiosa,LGD,468,District,4008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,1920,Block,Tipa,LGD,267,District,1920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,false +LGD,1868,Block,Tipaimukh,LGD,715,District,1868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false +LGD,5539,Block,Tiptur,LGD,548,District,5539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,140,Block,Tira Sujanpur,LGD,17,District,140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +LGD,1635,Block,Tirbin Eac,LGD,724,District,1635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false +LGD,2858,Block,Tiring,LGD,365,District,2858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,3668,Block,Tirodi,LGD,392,District,3668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,4044,Block,Tirora,LGD,476,District,4044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +LGD,5519,Block,Tirthahalli,LGD,547,District,5519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +LGD,2939,Block,Tirtol,LGD,355,District,2939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +LGD,5868,Block,Tiruchendur,LGD,594,District,5868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,5745,Block,Tiruchengode,LGD,580,District,5745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +LGD,6620,Block,Tiruchirappalli East,LGD,591,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,5779,Block,Tiruchirappalli West,LGD,591,District,5779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +LGD,5852,Block,Tiruchuli,LGD,597,District,5852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,5709,Block,Tirukalukundram,LGD,730,District,5709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +LGD,5732,Block,Tirukkoyilur,LGD,729,District,5732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +LGD,5575,Block,Tirumakudal - Narsipur,LGD,545,District,5575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +LGD,6306,Block,Tirumalagiri Sagar,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4754,Block,Tirumalayapalem,LGD,509,District,4754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,4499,Block,Tirumalgiri,LGD,507,District,4499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +LGD,5876,Block,Tirunelveli,LGD,592,District,5876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +LGD,5720,Block,Tirupathur,LGD,732,District,5720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +LGD,5375,Block,Tirupati (Rural),LGD,752,District,5375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5383,Block,Tirupati (Urban),LGD,752,District,5383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5958,Block,Tiruporur,LGD,730,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +LGD,5967,Block,Tiruppurnorth,LGD,634,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,5968,Block,Tiruppursouth,LGD,634,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,5644,Block,Tirur,LGD,562,District,5644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +LGD,5645,Block,Tirurangadi,LGD,562,District,5645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +LGD,5696,Block,Tiruttani,LGD,589,District,5696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,5855,Block,Tiruvadanai,LGD,583,District,5855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +LGD,5727,Block,Tiruvannamalai,LGD,593,District,5727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,6642,Block,Tiruvengadam,LGD,733,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +LGD,5982,Block,Tiruvottiyur,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,4997,Block,Tiruvuru,LGD,749,District,4997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,835,Block,Tirwa,LGD,155,District,835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +LGD,4333,Block,Tiryani,LGD,699,District,4333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,6649,Block,Tisayanvilai,LGD,592,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +LGD,2533,Block,Tisri,LGD,329,District,2533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +LGD,5611,Block,Tiswadi,LGD,551,District,5611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +LGD,2080,Block,Titabor,LGD,290,District,2080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +LGD,3152,Block,Titlagarh,LGD,345,District,3152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,5794,Block,Tittakudi,LGD,570,District,5794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,1745,Block,Tizit,LGD,247,District,1745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,7358,Block,Tlabung,LGD,265,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false +LGD,1901,Block,Tlangnuam,LGD,261,District,1901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +LGD,4946,Block,T.Narasapuram,LGD,748,District,4946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1756,Block,Tobu,LGD,247,District,1756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,520,Block,Todabhim,LGD,108,District,520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +LGD,619,Block,Todaraisingh,LGD,116,District,619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,387,Block,Tohana,LGD,61,District,387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +LGD,3365,Block,Tokapal,LGD,374,District,3365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +LGD,5988,Block,Tokiye,LGD,251,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,7168,Block,Tondiarpet,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,7317,Block,Tongpal,LGD,642,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +LGD,618,Block,Tonk,LGD,116,District,618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,3524,Block,Tonk Khurd,LGD,402,District,3524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,2737,Block,Tonto,LGD,343,District,2737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +LGD,7142,Block,Toonga,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +LGD,4482,Block,Toopran,LGD,513,District,4482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,2581,Block,Topchanchi,LGD,325,District,2581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,2701,Block,Torpa,LGD,606,District,2701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false +LGD,1600,Block,Toru Circle,LGD,237,District,1600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +LGD,399,Block,Tosham,LGD,59,District,399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +LGD,50,Block,Tral,LGD,11,District,50,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +LGD,6784,Block,Trehgam,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,7176,Block,Tribal Taluk Office Attappadi,LGD,563,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +LGD,1111,Block,Tribeniganj,LGD,223,District,1111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +LGD,4151,Block,Trimbakeshwar,LGD,487,District,4151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,5099,Block,Tripuranthakam,LGD,790,District,5099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4662,Block,Tripuraram,LGD,514,District,4662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,1843,Block,Tseminyu,LGD,757,District,1843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1844,Block,Tsogin,LGD,757,District,1844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,5238,Block,T.Sundupalle,LGD,504,District,5238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,5085,Block,Tsunduru,LGD,750,District,5085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5990,Block,Tsurangkong,LGD,246,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,1826,Block,Tsurungto,LGD,765,District,1826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,1817,Block,Tuensang Sadar,LGD,249,District,1817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false +LGD,2185,Block,Tufanganj - I,LGD,308,District,2185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,2186,Block,Tufanganj - II,LGD,308,District,2186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +LGD,5293,Block,Tuggali,LGD,511,District,5293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,1870,Block,Tuibong,LGD,254,District,1870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +LGD,6812,Block,Tulail,LGD,623,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +LGD,1760,Block,Tuli,LGD,246,District,1760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +LGD,4241,Block,Tuljapur,LGD,488,District,4241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +LGD,6807,Block,Tullamulla Khirbhawani,LGD,626,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +LGD,926,Block,Tulsipur,LGD,127,District,926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +LGD,5537,Block,Tumakuru,LGD,548,District,5537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,4037,Block,Tumsar,LGD,471,District,4037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +LGD,3121,Block,Tumudibandha,LGD,359,District,3121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +LGD,7295,Block,Tundara,LGD,644,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +LGD,2579,Block,Tundi,LGD,325,District,2579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +LGD,771,Block,Tundla,LGD,143,District,771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +LGD,4890,Block,Tuni,LGD,746,District,4890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,1042,Block,Turkaulia,LGD,213,District,1042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +LGD,5540,Block,Turuvekere,LGD,548,District,5540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +LGD,3143,Block,Tusura,LGD,345,District,3143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +LGD,1658,Block,Tuting Adc,LGD,240,District,1658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,6492,Block,T Vaichong,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +LGD,3574,Block,Tyonda,LGD,437,District,3574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,301,Block,Tyuni,LGD,49,District,301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +LGD,6413,Block,Uchana,LGD,65,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +LGD,6923,Block,Uchchain,LGD,91,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +LGD,3943,Block,Uchchhal,LGD,641,District,3943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +LGD,1222,Block,Uchkagaon,LGD,197,District,1222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +LGD,6693,Block,Udaipur,LGD,654,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +LGD,114,Block,Udaipur,LGD,21,District,114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +LGD,3597,Block,Udaipura,LGD,421,District,3597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +LGD,492,Block,Udaipurwati,LGD,106,District,492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +LGD,2884,Block,Udala,LGD,365,District,2884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +LGD,2152,Block,Udalguri,LGD,617,District,2152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +LGD,2098,Block,Udarbond,LGD,282,District,2098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +LGD,5154,Block,Udayagiri,LGD,515,District,5154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5786,Block,Udayarpalayam,LGD,610,District,5786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +LGD,6535,Block,Udaynagar,LGD,402,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +LGD,2398,Block,Udaynarayanpur,LGD,313,District,2398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,3249,Block,Udaypur,LGD,389,District,3249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +LGD,4235,Block,Udgir,LGD,481,District,4235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +LGD,5756,Block,Udhagamandalam,LGD,587,District,5756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +LGD,72,Block,Udhampur,LGD,14,District,72,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +LGD,6522,Block,Udhna,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,2570,Block,Udhwa,LGD,340,District,2570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +LGD,5906,Block,Udumalaipettai,LGD,634,District,5906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,5665,Block,Udumbanchola,LGD,556,District,5665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +LGD,5523,Block,Udupi,LGD,549,District,5523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +LGD,1426,Block,Udwant Nagar,LGD,193,District,1426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +LGD,7114,Block,Ujani Majuli Circle,LGD,706,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false +LGD,1298,Block,Ujiarpur,LGD,217,District,1298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,3513,Block,Ujjain,LGD,435,District,3513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,7046,Block,Ujjain Nagar,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,7550,Block,Ukai,LGD,641,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +LGD,290,Block,Ukhimath,LGD,54,District,290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +LGD,1888,Block,Ukhrul,LGD,260,District,1888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false +LGD,6441,Block,Uklana St,LGD,63,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +LGD,4912,Block,U.Kothapalli,LGD,746,District,4912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5152,Block,Ulavapadu,LGD,517,District,5152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,4169,Block,Ulhasnagar,LGD,497,District,4169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +LGD,7197,Block,Ullala,LGD,534,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +LGD,2407,Block,Uluberia - I,LGD,313,District,2407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,2406,Block,Uluberia - II,LGD,313,District,2406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +LGD,3136,Block,Ulunda,LGD,372,District,3136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +LGD,5735,Block,Ulundurpettai,LGD,729,District,5735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +LGD,4086,Block,Umarkhed,LGD,500,District,4086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,3189,Block,Umarkote,LGD,366,District,3189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +LGD,3934,Block,Umarpada,LGD,459,District,3934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +LGD,3931,Block,Umbergaon,LGD,462,District,3931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,1985,Block,Umling,LGD,276,District,1985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +LGD,3853,Block,Umrala,LGD,443,District,3853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,4034,Block,Umred,LGD,484,District,4034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +LGD,3653,Block,Umreth,LGD,399,District,3653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +LGD,3863,Block,Umreth,LGD,440,District,3863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +LGD,4103,Block,Umri,LGD,485,District,4103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +LGD,1987,Block,Umsning,LGD,276,District,1987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +LGD,6159,Block,Un,LGD,660,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false +LGD,150,Block,Una,LGD,26,District,150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +LGD,3838,Block,Una,LGD,675,District,3838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +LGD,828,Block,Unchahar,LGD,175,District,828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +LGD,3465,Block,Unchehara,LGD,426,District,3465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +LGD,6299,Block,Undavelly,LGD,695,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,4976,Block,Undi,LGD,523,District,4976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,4970,Block,Undrajavaram,LGD,505,District,4970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +LGD,4962,Block,Unguturu,LGD,748,District,4962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5013,Block,Unguturu,LGD,510,District,5013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,7434,Block,Unhel,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +LGD,621,Block,Uniara,LGD,116,District,621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +LGD,3753,Block,Unjha,LGD,451,District,3753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,816,Block,Unnao,LGD,186,District,816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +LGD,2623,Block,Untari Road,LGD,338,District,2623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +LGD,3809,Block,Upleta,LGD,457,District,3809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,4524,Block,Uppal,LGD,700,District,4524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +LGD,4942,Block,Uppalaguptam,LGD,747,District,4942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4580,Block,Uppununthala,LGD,694,District,4580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,4172,Block,Uran,LGD,491,District,4172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +LGD,5317,Block,Uravakonda,LGD,502,District,5317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,37,Block,Uri,LGD,3,District,37,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,6295,Block,Urkonda,LGD,694,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,5838,Block,Usilampatti,LGD,578,District,5838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,3377,Block,Usur,LGD,636,District,3377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +LGD,5845,Block,Uthamapalayam,LGD,588,District,5845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +LGD,5894,Block,Uthangarai,LGD,577,District,5894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +LGD,5708,Block,Uthiramerur,LGD,574,District,5708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +LGD,5695,Block,Uthukkottai,LGD,589,District,5695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +LGD,6616,Block,Uthukuli,LGD,634,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +LGD,4571,Block,Utkoor,LGD,721,District,4571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +LGD,4321,Block,Utnoor,LGD,501,District,4321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +LGD,927,Block,Utraula,LGD,127,District,927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +LGD,5302,Block,Uyyalawada,LGD,755,District,5302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3762,Block,Vadali,LGD,458,District,3762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +LGD,5399,Block,Vadamalapet,LGD,752,District,5399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3738,Block,Vadgam,LGD,441,District,3738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +LGD,5837,Block,Vadipatti,LGD,578,District,5837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +LGD,3755,Block,Vadnagar,LGD,451,District,3755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,6529,Block,Vadodara East,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,6527,Block,Vadodara North,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,3898,Block,Vadodara Rural,LGD,461,District,3898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,6526,Block,Vadodara South,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,6528,Block,Vadodara West,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,3899,Block,Vaghodia,LGD,461,District,3899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +LGD,3915,Block,Vagra,LGD,442,District,3915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,4276,Block,Vaibhavvadi,LGD,495,District,4276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +LGD,4139,Block,Vaijapur,LGD,469,District,4139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +LGD,5669,Block,Vaikom,LGD,560,District,5669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +LGD,4365,Block,Vailpoor,LGD,516,District,4365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,1268,Block,Vaishali,LGD,224,District,1268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +LGD,5316,Block,Vajrakarur,LGD,502,District,5316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,4781,Block,Vajrapukotturu,LGD,519,District,4781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +LGD,5192,Block,Vakadu,LGD,752,District,5192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5803,Block,Valangaiman,LGD,590,District,5803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +LGD,3920,Block,Valia,LGD,442,District,3920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +LGD,4627,Block,Valigonda,LGD,697,District,4627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,3851,Block,Vallabhipur,LGD,443,District,3851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +LGD,690,Block,Vallabhnagar,LGD,117,District,690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +LGD,5225,Block,Vallur,LGD,504,District,5225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,5388,Block,Valmikipuram,LGD,753,District,5388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3946,Block,Valod,LGD,641,District,3946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +LGD,5900,Block,Valparai,LGD,569,District,5900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +LGD,3927,Block,Valsad,LGD,462,District,3927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,7599,Block,Valsad City,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,7405,Block,Vanapuram,LGD,729,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +LGD,7058,Block,Vandalur,LGD,730,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +LGD,5723,Block,Vandavasi,LGD,593,District,5723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,6507,Block,Vangai Range,LGD,715,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false +LGD,4785,Block,Vangara,LGD,521,District,4785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,4577,Block,Vangoor,LGD,694,District,4577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,5718,Block,Vaniyambadi,LGD,732,District,5718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +LGD,3826,Block,Vanthali,LGD,448,District,3826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,5730,Block,Vanur,LGD,596,District,5730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,6031,Block,Vapi,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,7596,Block,Vapi City,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +LGD,5381,Block,Varadaiahpalem,LGD,752,District,5381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,996,Block,Varanasi Sadar,LGD,187,District,996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +LGD,4733,Block,Vararamachandrapuram,LGD,791,District,4733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5155,Block,Varikuntapadu,LGD,515,District,5155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5946,Block,Varkala,LGD,565,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +LGD,3562,Block,Varla,LGD,393,District,3562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +LGD,4376,Block,Varni,LGD,516,District,4376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,4164,Block,Vasai,LGD,665,District,4164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +LGD,4115,Block,Vasmath,LGD,477,District,4115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +LGD,6034,Block,Vaso,LGD,450,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +LGD,5638,Block,Vatakara,LGD,561,District,5638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +LGD,6291,Block,Vatpally,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,4990,Block,Vatsavai,LGD,749,District,4990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5080,Block,Vatticherukuru,LGD,506,District,5080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +LGD,6516,Block,Vatva,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,3732,Block,Vav,LGD,789,District,3732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +LGD,5742,Block,Vazhapadi,LGD,584,District,5742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,5802,Block,Vedaranyam,LGD,579,District,5802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +LGD,5762,Block,Vedasandur,LGD,572,District,5762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +LGD,5397,Block,Vedurukuppam,LGD,503,District,5397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,4439,Block,Veenavanka,LGD,508,District,4439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,5242,Block,Veeraballe,LGD,504,District,5242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4769,Block,Veeraghattam,LGD,743,District,4769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5872,Block,Veerakeralamputhur,LGD,733,District,5872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +LGD,5222,Block,Veerapunayunipalle,LGD,504,District,5222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4983,Block,Veeravasaram,LGD,523,District,4983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,6220,Block,Veernapalli,LGD,683,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,4994,Block,Veerullapadu,LGD,749,District,4994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6514,Block,Vejalpur,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,7171,Block,Velachery,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +LGD,6252,Block,Velair,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +LGD,4734,Block,Velairpadu,LGD,748,District,4734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4565,Block,Veldanda,LGD,694,District,4565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +LGD,5041,Block,Veldurthy,LGD,751,District,5041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5278,Block,Veldurthy,LGD,511,District,5278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,4398,Block,Velgatur,LGD,681,District,4398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +LGD,4197,Block,Velhe,LGD,490,District,4197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +LGD,5135,Block,Veligandla,LGD,790,District,5135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5933,Block,Vellarikkundu,LGD,558,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +LGD,5717,Block,Vellore,LGD,595,District,5717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +LGD,5282,Block,Velugodu,LGD,755,District,5282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4330,Block,Vemanpally,LGD,684,District,4330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +LGD,6624,Block,Vembakkam,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +LGD,6640,Block,Vembakottai,LGD,597,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,5233,Block,Vempalli,LGD,504,District,5233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4768,Block,Vemsoor,LGD,509,District,4768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,5220,Block,Vemula,LGD,504,District,5220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4644,Block,Vemulapally,LGD,514,District,4644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +LGD,4430,Block,Vemulawada,LGD,683,District,4430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,6218,Block,Vemulawada Rural,LGD,683,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,5087,Block,Vemuru,LGD,750,District,5087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4279,Block,Vengurla,LGD,495,District,4279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +LGD,5182,Block,Venkatachalam,LGD,515,District,5182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5187,Block,Venkatagiri,LGD,752,District,5187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5424,Block,Venkatagirikota,LGD,503,District,5424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,4684,Block,Venkatapur,LGD,720,District,4684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,4724,Block,Venkatapuram,LGD,720,District,4724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,4832,Block,Vepada,LGD,521,District,4832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,5974,Block,Veppanthattai,LGD,581,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +LGD,5953,Block,Veppur,LGD,570,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,7446,Block,Veraval City,LGD,675,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +LGD,5124,Block,Vetapalem,LGD,750,District,5124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5308,Block,Vidapanakal,LGD,502,District,5308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5168,Block,Vidavalur,LGD,515,District,5168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,3579,Block,Vidisha,LGD,437,District,3579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,7017,Block,Vidisha Nagar,LGD,437,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +LGD,1296,Block,Vidyapati Nagar,LGD,217,District,1296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,6661,Block,Vijainagar,LGD,774,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,464,Block,Vijainagar,LGD,100,District,464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +LGD,3756,Block,Vijapur,LGD,451,District,3756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,5449,Block,Vijayapura,LGD,530,District,5449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +LGD,5405,Block,Vijayapuram,LGD,503,District,5405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5010,Block,Vijayawada Central,LGD,749,District,5010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6863,Block,Vijayawada East,LGD,749,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6864,Block,Vijayawada North,LGD,749,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5011,Block,Vijayawada (Rural),LGD,749,District,5011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6865,Block,Vijayawada West,LGD,749,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,3761,Block,Vijaynagar,LGD,458,District,3761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +LGD,3380,Block,Vijaypur,LGD,431,District,3380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +LGD,6722,Block,Vijaypur,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +LGD,3624,Block,Vijayraghavgarh,LGD,413,District,3624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +LGD,1679,Block,Vijoynagar Eac,LGD,229,District,1679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,4530,Block,Vikarabad,LGD,698,District,4530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,303,Block,Vikas Nagar,LGD,49,District,303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +LGD,7591,Block,Vikaspuri,LGD,85,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false +LGD,4159,Block,Vikramgad,LGD,665,District,4159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +LGD,5978,Block,Vikravandi,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,5864,Block,Vilathikulam,LGD,594,District,5864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +LGD,5881,Block,Vilavancode,LGD,575,District,5881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +LGD,7206,Block,Villgam,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,5911,Block,Villianur,LGD,600,District,5911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +LGD,5731,Block,Viluppuram,LGD,596,District,5731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +LGD,6198,Block,Vinchchiya,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +LGD,5161,Block,Vinjamur,LGD,515,District,5161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +LGD,5062,Block,Vinukonda,LGD,751,District,5062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5568,Block,Virajpet,LGD,541,District,5568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +LGD,6614,Block,Viralimalai,LGD,582,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +LGD,3779,Block,Viramgam,LGD,438,District,3779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +LGD,539,Block,Viratnagar,LGD,782,District,539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +LGD,3870,Block,Virpur,LGD,669,District,3870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +LGD,5793,Block,Virudhachalam,LGD,570,District,5793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +LGD,5850,Block,Virudhunagar,LGD,597,District,5850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,4866,Block,Visakhapatnam (Rural),LGD,520,District,4866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +LGD,3829,Block,Visavadar,LGD,448,District,3829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +LGD,2369,Block,Vishnupur,LGD,305,District,2369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +LGD,7586,Block,Vishwas Nagar,LGD,78,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false +LGD,3754,Block,Visnagar,LGD,451,District,3754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +LGD,5000,Block,Vissannapeta,LGD,749,District,5000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4836,Block,Vizianagaram Rural,LGD,521,District,4836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,7431,Block,Vizianagaram Urban,LGD,521,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +LGD,1767,Block,V.K.,LGD,251,District,1767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +LGD,5147,Block,Voletivaripalem,LGD,517,District,5147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,5228,Block,Vontimitta,LGD,504,District,5228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,4445,Block,V.Saidapur,LGD,508,District,4445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +LGD,5027,Block,Vuyyuru,LGD,510,District,5027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +LGD,3945,Block,Vyara,LGD,641,District,3945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +LGD,7472,Block,Vyasanagar,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +LGD,5637,Block,Vythiri,LGD,567,District,5637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +LGD,4162,Block,Wada,LGD,665,District,4162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +LGD,7095,Block,Wadagera,LGD,635,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +LGD,4610,Block,Waddepally,LGD,695,District,4610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,3792,Block,Wadhwan,LGD,460,District,3792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +LGD,3238,Block,Wadrafnagar,LGD,649,District,3238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +LGD,4220,Block,Wadwani,LGD,470,District,4220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +LGD,6023,Block,Waghai,LGD,444,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false +LGD,6823,Block,Wagoora,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,4256,Block,Wai,LGD,494,District,4256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +LGD,6486,Block,Waikhong,LGD,711,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,false +LGD,4723,Block,Wajedu,LGD,720,District,4723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +LGD,1749,Block,Wakching,LGD,247,District,1749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +LGD,6012,Block,Wakka Sdo,LGD,666,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false +LGD,6808,Block,Wakoora,LGD,626,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +LGD,1730,Block,Wakro Circle,LGD,234,District,1730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false +LGD,6626,Block,Walajabad,LGD,574,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +LGD,5714,Block,Wallajah,LGD,731,District,5714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +LGD,1742,Block,Walong Circle,LGD,628,District,1742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +LGD,4296,Block,Walwa,LGD,493,District,4296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +LGD,4595,Block,Wanaparthy,LGD,693,District,4595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,1882,Block,Wangoi,LGD,256,District,1882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +LGD,4094,Block,Wani,LGD,500,District,4094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,3801,Block,Wankaner,LGD,673,District,3801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +LGD,4314,Block,Wankidi,LGD,699,District,4314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +LGD,1999,Block,Wapung,LGD,657,District,1999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false +LGD,4706,Block,Warangal,LGD,522,District,4706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,3669,Block,Waraseoni,LGD,392,District,3669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +LGD,4019,Block,Wardha,LGD,498,District,4019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +LGD,4704,Block,Wardhannapet,LGD,522,District,4704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +LGD,4485,Block,Wargal,LGD,692,District,4485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +LGD,1513,Block,Warisaliganj,LGD,210,District,1513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +LGD,1285,Block,Warisnagar,LGD,217,District,1285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +LGD,4064,Block,Warora,LGD,473,District,4064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +LGD,4007,Block,Warud,LGD,468,District,4007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +LGD,6766,Block,Warwan,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +LGD,4238,Block,Washi,LGD,488,District,4238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +LGD,3999,Block,Washim,LGD,499,District,3999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +LGD,6825,Block,Watergam,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,6675,Block,Watrap,LGD,597,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +LGD,6386,Block,Wazeerpur,LGD,113,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +LGD,6420,Block,Wazirabad St,LGD,62,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +LGD,1507,Block,Wazirganj,LGD,196,District,1507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +LGD,4608,Block,Weepangandla,LGD,693,District,4608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,512,Block,Weir,LGD,91,District,512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +LGD,1897,Block,West Phaileng,LGD,266,District,1897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false +LGD,5992,Block,Weziho,LGD,788,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +LGD,6485,Block,Willong,LGD,257,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +LGD,1789,Block,Wokha Sadar,LGD,250,District,1789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,1788,Block,Wozhuro,LGD,250,District,1788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +LGD,4764,Block,Wyra,LGD,509,District,4764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,4548,Block,Yacharam,LGD,518,District,4548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +LGD,1697,Block,Yachuli Adc,LGD,786,District,1697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,4616,Block,Yadagirigutta,LGD,697,District,4616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +LGD,5430,Block,Yadamarri,LGD,503,District,5430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +LGD,5589,Block,Yadgir,LGD,635,District,5589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +LGD,5312,Block,Yadiki,LGD,502,District,5312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,7089,Block,Yadrami,LGD,538,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +LGD,314,Block,Yamkeshwar,LGD,52,District,314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +LGD,6082,Block,Yamuna Vihar,LGD,81,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false +LGD,5908,Block,Yanam,LGD,600,District,5908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +LGD,6400,Block,Yangang,LGD,227,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false +LGD,1704,Block,Yangte Circle,LGD,677,District,1704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false +LGD,7195,Block,Yaragatti,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +LGD,6781,Block,Yaripora,LGD,622,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +LGD,6579,Block,Yatdam Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +LGD,4082,Block,Yavatmal,LGD,500,District,4082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,3961,Block,Yawal,LGD,478,District,3961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +LGD,1698,Block,Yazali Circle,LGD,786,District,1698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +LGD,4369,Block,Yedapally,LGD,516,District,4369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,5107,Block,Yeddana Pudi,LGD,750,District,5107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,7533,Block,Yedula,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +LGD,7103,Block,Yelahanka,LGD,525,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +LGD,4536,Block,Yelal,LGD,698,District,4536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +LGD,4989,Block,Yelamanchili,LGD,523,District,4989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +LGD,4879,Block,Yelamanchili,LGD,744,District,4879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5578,Block,Yelandur,LGD,531,District,5578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +LGD,5464,Block,Yelbarga,LGD,543,District,5464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +LGD,4481,Block,Yeldurthy,LGD,513,District,4481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +LGD,4893,Block,Yeleswaram,LGD,746,District,4893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4740,Block,Yellandu,LGD,690,District,4740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +LGD,5327,Block,Yellanur,LGD,502,District,5327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +LGD,5481,Block,Yellapur,LGD,550,District,5481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +LGD,4432,Block,Yellareddipet,LGD,683,District,4432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +LGD,4386,Block,Yellareddy,LGD,685,District,4386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +LGD,5254,Block,Yemmiganur,LGD,511,District,5254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +LGD,5741,Block,Yercaud,LGD,584,District,5741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +LGD,6239,Block,Yergatla,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +LGD,5377,Block,Yerpedu,LGD,752,District,5377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5097,Block,Yerragondapalem,LGD,790,District,5097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,5223,Block,Yerraguntla,LGD,504,District,5223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +LGD,7517,Block,Yerravalli,LGD,695,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +LGD,5374,Block,Yerravaripalem,LGD,752,District,5374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4767,Block,Yerrupalem,LGD,509,District,4767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +LGD,6063,Block,Yetapaka,LGD,791,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,4156,Block,Yevla,LGD,487,District,4156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +LGD,1663,Block,Yingkiong Circle,LGD,240,District,1663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +LGD,1633,Block,Yomcha Adc,LGD,243,District,1633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false +LGD,1832,Block,Yongnyah,LGD,615,District,1832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false +LGD,4886,Block,Y. Ramavaram,LGD,791,District,4886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +LGD,6397,Block,Yuksom,LGD,228,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false +LGD,6790,Block,Zachaldara,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +LGD,4696,Block,Zaffergadh,LGD,689,District,4696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +LGD,4474,Block,Zahirabad,LGD,691,District,4474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +LGD,6797,Block,Zainapora,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false +LGD,6826,Block,Zaingeer,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +LGD,991,Block,Zamania,LGD,146,District,991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +LGD,15,Block,Zanskar,LGD,6,District,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +LGD,4093,Block,Zari-Jamani,LGD,500,District,4093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +LGD,5142,Block,Zarugumalli,LGD,517,District,5142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +LGD,1896,Block,Zawlnuam,LGD,266,District,1896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false +LGD,1556,Block,Zemithang Circle,LGD,238,District,1556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +LGD,1967,Block,Zikzak,LGD,663,District,1967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false +LGD,234,Block,Zira,LGD,31,District,234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +LGD,1239,Block,Ziradei,LGD,222,District,1239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +LGD,1695,Block,Ziro Hq,LGD,236,District,1695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,false +LGD,1810,Block,Zuketsa,LGD,248,District,1810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +LGD,1772,Block,Zunheboto Sadar,LGD,251,District,1772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +IN-PIN,110010,PostalCode,New Delhi,LGD,79,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false +IN-PIN,110024,PostalCode,South East,LGD,670,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false +IN-PIN,110025,PostalCode,South East,LGD,670,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false +IN-PIN,110030,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +IN-PIN,110031,PostalCode,East,LGD,78,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false +IN-PIN,110032,PostalCode,North East,LGD,81,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false +IN-PIN,110036,PostalCode,North,LGD,80,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false +IN-PIN,110037,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +IN-PIN,110038,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +IN-PIN,110039,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +IN-PIN,110040,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +IN-PIN,110041,PostalCode,North West,LGD,82,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false +IN-PIN,110042,PostalCode,North,LGD,80,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false +IN-PIN,110043,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +IN-PIN,110044,PostalCode,South East,LGD,670,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false +IN-PIN,110047,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +IN-PIN,110053,PostalCode,North East,LGD,81,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false +IN-PIN,110057,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +IN-PIN,110059,PostalCode,West,LGD,85,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false +IN-PIN,110061,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +IN-PIN,110068,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +IN-PIN,110071,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +IN-PIN,110072,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +IN-PIN,110073,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +IN-PIN,110074,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +IN-PIN,110076,PostalCode,South East,LGD,670,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false +IN-PIN,110080,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false +IN-PIN,110081,PostalCode,North West,LGD,82,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false +IN-PIN,110082,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +IN-PIN,110084,PostalCode,North,LGD,80,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false +IN-PIN,110085,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +IN-PIN,110086,PostalCode,North West,LGD,82,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false +IN-PIN,110090,PostalCode,North,LGD,80,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false +IN-PIN,110093,PostalCode,East,LGD,78,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false +IN-PIN,110094,PostalCode,North East,LGD,81,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false +IN-PIN,110096,PostalCode,East,LGD,78,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false +IN-PIN,110097,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false +IN-PIN,110099,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false +IN-PIN,121001,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121002,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121003,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121004,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121005,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121006,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121007,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121010,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121012,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121013,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121101,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121102,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false +IN-PIN,121103,PostalCode,Palwal,LGD,619,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +IN-PIN,121105,PostalCode,Palwal,LGD,619,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +IN-PIN,121106,PostalCode,Palwal,LGD,619,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +IN-PIN,121107,PostalCode,Palwal,LGD,619,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false +IN-PIN,122001,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122003,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122004,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122050,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122101,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122102,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122103,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122104,PostalCode,Nuh,LGD,604,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +IN-PIN,122105,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122107,PostalCode,Nuh,LGD,604,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +IN-PIN,122108,PostalCode,Nuh,LGD,604,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +IN-PIN,122413,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122414,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122502,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122503,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122504,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122505,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122506,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false +IN-PIN,122508,PostalCode,Nuh,LGD,604,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false +IN-PIN,123001,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +IN-PIN,123021,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +IN-PIN,123023,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +IN-PIN,123024,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +IN-PIN,123027,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +IN-PIN,123028,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +IN-PIN,123029,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +IN-PIN,123034,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false +IN-PIN,123035,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123101,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123102,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123103,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123106,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123110,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123301,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123302,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123303,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123401,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123411,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123412,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,123501,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false +IN-PIN,124001,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124010,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124021,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124022,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124102,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124103,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124104,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124105,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124106,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124107,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124108,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124109,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124111,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124112,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124113,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124142,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124146,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124201,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124202,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124303,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124401,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124404,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124406,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124411,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124412,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124501,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124504,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124505,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124506,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124507,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124508,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,124513,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124514,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false +IN-PIN,124515,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false +IN-PIN,125001,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +IN-PIN,125004,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +IN-PIN,125005,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +IN-PIN,125006,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +IN-PIN,125007,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false +IN-PIN,125033,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +IN-PIN,125037,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +IN-PIN,125038,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +IN-PIN,125039,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +IN-PIN,125042,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +IN-PIN,125044,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +IN-PIN,125047,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125048,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125049,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +IN-PIN,125050,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125051,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125052,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125053,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125054,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125055,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125058,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125060,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125075,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125076,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125077,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125078,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125101,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125102,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125103,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125104,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125106,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125110,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125111,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125112,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125113,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125120,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125121,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false +IN-PIN,125133,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false +IN-PIN,125201,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false +IN-PIN,125450,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,126101,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126102,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126110,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126111,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126112,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126113,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126114,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126115,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126116,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126125,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126152,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false +IN-PIN,126214,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,126469,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,127021,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127022,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +IN-PIN,127025,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +IN-PIN,127026,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +IN-PIN,127027,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127028,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127029,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127030,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127031,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127032,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127035,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127040,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127041,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127042,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +IN-PIN,127043,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127045,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127046,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127111,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127114,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127201,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127306,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +IN-PIN,127307,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +IN-PIN,127308,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127309,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127310,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +IN-PIN,127311,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false +IN-PIN,127312,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false +IN-PIN,131001,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131021,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131022,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131023,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131024,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131027,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131028,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131029,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131039,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131101,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131102,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131103,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131301,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131302,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131304,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131305,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131306,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131402,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131403,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131408,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,131409,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false +IN-PIN,132001,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132022,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132023,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132024,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132036,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132037,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132039,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132040,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132041,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132046,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132054,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132101,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132102,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132104,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132105,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132106,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132107,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132108,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132113,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132114,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132115,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132116,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132117,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,132122,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132140,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132145,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false +IN-PIN,132157,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false +IN-PIN,133001,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133004,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133005,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133006,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133008,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133101,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133102,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133103,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,133104,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133201,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133202,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133203,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133204,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,133205,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133206,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,133301,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,133302,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,134003,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,134005,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,134007,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,134008,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,134102,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,134103,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,134107,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,134109,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,134117,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,134118,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,134201,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,134202,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,134203,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,134204,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,134205,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false +IN-PIN,135001,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,135002,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,135003,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,135004,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,135021,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,135101,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,135102,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,135103,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,135106,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false +IN-PIN,135133,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false +IN-PIN,136020,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136021,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136026,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136027,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136030,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136033,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136034,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136035,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136038,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136042,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136043,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136044,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136117,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false +IN-PIN,136118,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136119,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136128,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136129,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136130,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136131,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136132,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136135,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136136,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,136156,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false +IN-PIN,140001,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140101,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140102,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140103,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140108,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140109,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140110,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140111,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140112,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140113,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140114,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140115,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140116,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140117,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140118,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140119,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140123,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140124,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140125,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140126,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140127,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140128,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140133,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false +IN-PIN,140201,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140301,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140306,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140307,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140308,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140401,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,140402,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140405,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140406,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140407,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140408,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140412,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140413,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140417,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,140501,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140506,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140507,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140601,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,140602,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140603,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140604,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,140701,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140702,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140802,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,140901,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,141001,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141003,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141007,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141008,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141010,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141012,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141013,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141014,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141015,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141101,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141102,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141103,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141104,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141105,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141107,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141108,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141109,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141110,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141112,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141113,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141114,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141115,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141116,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141117,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141118,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141119,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141120,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141121,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141122,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141123,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141125,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,141126,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141127,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141201,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141202,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141203,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141204,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141205,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141206,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141401,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141411,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,141412,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141413,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141414,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141415,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141416,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141417,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141418,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141419,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141421,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141422,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,141801,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,142001,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142002,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142003,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142011,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142021,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142022,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142023,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142024,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142025,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142026,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142027,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142029,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142030,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142031,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142032,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142033,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142034,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142035,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142036,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false +IN-PIN,142037,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142038,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142039,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142040,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142041,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142042,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,142043,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,142044,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,142045,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142046,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142047,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,142048,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142049,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142050,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,142052,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,142053,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142054,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142055,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142056,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142058,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false +IN-PIN,142060,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,143001,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143008,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143009,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143022,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143101,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143102,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143103,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143105,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143107,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143108,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143109,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143110,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143111,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143112,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143113,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143114,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143115,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143116,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143117,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143118,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143119,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143149,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143201,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143202,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143203,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143204,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143205,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143301,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143302,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143303,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143304,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143305,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143401,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143402,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143406,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143407,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143408,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143409,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143410,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143411,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143412,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143413,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143414,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143415,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143416,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143417,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false +IN-PIN,143419,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143501,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143502,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143503,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143504,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143505,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143506,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143507,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143511,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143512,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143513,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143514,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143515,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143516,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143517,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143518,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143519,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143520,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143521,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143525,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143526,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143527,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143528,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143529,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143530,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143531,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143532,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143533,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143534,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +IN-PIN,143601,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143602,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143603,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,143604,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143605,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,143606,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false +IN-PIN,144001,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144002,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144003,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144004,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144005,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144008,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144020,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144021,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144022,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144024,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144025,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144026,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144027,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144028,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144029,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144030,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144031,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144032,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144033,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144034,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144035,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144036,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144037,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144038,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144039,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144040,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144041,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144042,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144043,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144044,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144101,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144102,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144103,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144104,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144105,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144106,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144201,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144202,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144204,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144207,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144208,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144209,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144210,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144211,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144212,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144213,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144214,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144216,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144221,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144222,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144223,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144224,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144301,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144302,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144303,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144305,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144306,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144311,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144401,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144402,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144403,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144404,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144405,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144406,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144407,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144408,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144409,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144410,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144411,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144415,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144416,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144417,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144418,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144419,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144421,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144422,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144501,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144502,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144503,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144504,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144505,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144506,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144507,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144508,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144509,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144510,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144511,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144512,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144513,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144514,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144515,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144516,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144517,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144518,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144519,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144520,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144521,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144522,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144523,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144524,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144525,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144526,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144527,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144528,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144529,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144530,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144531,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144532,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,144533,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false +IN-PIN,144601,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144602,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144603,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144606,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144620,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144621,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144622,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144623,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144624,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144625,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144626,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144628,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144629,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144630,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144631,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144632,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144633,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144701,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144702,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144703,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144801,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144802,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144803,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144804,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,144805,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144806,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false +IN-PIN,144819,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false +IN-PIN,145001,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +IN-PIN,145022,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +IN-PIN,145023,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +IN-PIN,145024,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,145025,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +IN-PIN,145026,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false +IN-PIN,145027,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +IN-PIN,145029,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +IN-PIN,145101,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false +IN-PIN,146021,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146023,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146024,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146101,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146102,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146103,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146104,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146105,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146106,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146107,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146108,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146109,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146110,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146111,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146112,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146113,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146114,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146115,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,146116,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false +IN-PIN,147001,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147002,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147004,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,147005,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147006,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,147007,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147021,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147101,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147102,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147103,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147104,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,147105,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147111,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147201,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false +IN-PIN,147202,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,147203,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,147301,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false +IN-PIN,148001,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148002,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148017,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148018,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +IN-PIN,148019,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +IN-PIN,148020,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148021,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +IN-PIN,148022,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +IN-PIN,148023,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false +IN-PIN,148024,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148025,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148026,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148027,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148028,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148029,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148030,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148031,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148033,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148034,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148035,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false +IN-PIN,148100,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148101,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148102,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148103,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148104,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148105,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148106,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148107,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148108,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,148109,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false +IN-PIN,151002,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151004,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151005,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151101,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151102,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151103,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151104,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151105,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151106,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151108,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151111,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151201,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151202,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151203,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151204,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151205,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151206,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151207,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151208,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151209,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151210,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,151211,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,151212,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151213,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151214,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,151301,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151302,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151401,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151501,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false +IN-PIN,151502,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false +IN-PIN,151503,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false +IN-PIN,151504,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151505,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151506,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151507,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false +IN-PIN,151508,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false +IN-PIN,151509,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151510,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,151511,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false +IN-PIN,152002,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,152003,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,152004,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,152005,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,152020,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152021,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,152022,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152023,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,152024,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152025,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,152026,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,152028,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false +IN-PIN,152031,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false +IN-PIN,152032,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,152033,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152101,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,152107,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,152112,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,152113,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,152114,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,152115,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false +IN-PIN,152116,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152117,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152118,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152121,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152122,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152123,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152124,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152128,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,152132,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false +IN-PIN,160014,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,160055,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,160059,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,160071,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,160104,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false +IN-PIN,171001,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171002,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171003,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171004,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171005,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171006,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171007,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171008,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171009,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171011,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171012,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171013,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171014,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171018,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171019,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171102,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,171103,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171201,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171202,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171203,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171204,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171205,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171206,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171207,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171208,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171209,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171210,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171211,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171212,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171213,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171214,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171215,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171216,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171217,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171218,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171219,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171220,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171221,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171222,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171223,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171224,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171225,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171226,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,171301,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172001,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,172002,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,172021,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172022,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172023,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,172024,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172025,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,172026,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,172027,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172028,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172029,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172030,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172031,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172032,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,172033,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,172034,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172101,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172102,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false +IN-PIN,172103,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172104,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172105,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172106,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172107,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172108,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172109,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172110,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172111,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172112,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172113,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +IN-PIN,172114,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +IN-PIN,172115,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172116,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172117,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +IN-PIN,172118,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false +IN-PIN,172201,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,173001,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173021,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173022,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173023,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173024,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173025,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173026,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173027,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173029,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173030,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173032,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173033,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173101,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173104,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173201,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173202,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173204,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173205,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173206,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173207,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173208,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173209,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173210,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173211,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173212,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173213,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173214,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173215,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173217,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173218,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173220,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173221,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173222,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173223,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173225,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173229,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false +IN-PIN,173233,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173235,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,173236,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,174001,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174002,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174003,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174004,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174005,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174011,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174012,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174013,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174015,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174017,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174021,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174023,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174024,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174026,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174027,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174028,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174029,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174030,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174031,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174032,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174033,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174034,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174035,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174036,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174101,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,174102,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,174103,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false +IN-PIN,174201,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174301,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174302,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174303,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174304,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,174305,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,174306,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174307,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174308,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174309,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,174310,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false +IN-PIN,174311,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,174312,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,174314,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174315,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174316,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174317,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174319,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174320,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174321,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174405,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,174503,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,174505,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,174507,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,175001,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175002,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175003,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175004,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175005,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175006,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175007,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175008,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175009,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175010,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175011,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175012,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175013,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,175014,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175015,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175016,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175017,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175018,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175019,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175020,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175021,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175023,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175024,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175025,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175026,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175027,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175028,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175029,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175030,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175031,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175032,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175033,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175034,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175035,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175036,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175037,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175038,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175039,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175040,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175042,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175045,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175046,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175047,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175048,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175049,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175050,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175051,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175052,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175075,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175101,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175102,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175103,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175104,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175105,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175106,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175121,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175123,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175124,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,175125,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175126,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175128,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175129,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175130,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175131,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175132,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +IN-PIN,175133,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +IN-PIN,175134,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175136,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175138,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175139,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +IN-PIN,175140,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +IN-PIN,175141,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,175142,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false +IN-PIN,175143,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false +IN-PIN,176001,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176002,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176021,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176022,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176023,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176025,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176026,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176027,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176028,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176029,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176030,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176031,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176032,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176033,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176036,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176037,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176038,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176039,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176040,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176041,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176042,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176043,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176044,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176045,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176047,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176048,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176049,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176051,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176052,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176053,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176054,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176055,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176056,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176057,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176058,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176059,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176060,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176061,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176062,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176063,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176064,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176065,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176066,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176071,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176073,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176075,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176076,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176077,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176081,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176082,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176083,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176084,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176085,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176086,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176087,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176088,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176089,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176090,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false +IN-PIN,176091,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176092,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176093,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176094,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176095,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176096,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176097,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176098,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176101,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176102,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176103,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176107,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176108,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176109,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176110,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176111,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,176115,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176125,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176128,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176200,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176201,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176202,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176203,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176204,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176205,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176206,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176207,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176208,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176209,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176210,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176211,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176213,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176214,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176215,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176216,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176217,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176218,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176219,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176225,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176301,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176302,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176303,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176304,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176305,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176306,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176308,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176309,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176310,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176311,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176312,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176313,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176314,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176315,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176316,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176317,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176318,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176319,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176320,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176321,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176323,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176324,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176325,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176326,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false +IN-PIN,176401,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176402,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176403,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176501,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176502,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,176601,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177001,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177006,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177007,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177020,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177021,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177022,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177023,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177024,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177025,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177026,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177027,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177028,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177029,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177031,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177033,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177034,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177038,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177039,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177040,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177041,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177042,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177043,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177044,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177045,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177048,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177101,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177103,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177104,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177105,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177106,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177107,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177108,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177109,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177110,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177111,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177112,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177113,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177114,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177117,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false +IN-PIN,177118,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177119,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177201,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177202,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177203,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177204,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177205,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177206,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177207,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177208,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177209,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177210,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177211,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177212,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177213,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177219,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177220,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false +IN-PIN,177301,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177401,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177501,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,177601,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false +IN-PIN,180001,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180002,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180003,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180006,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180009,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180010,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180011,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180015,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180017,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180019,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,180020,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181101,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181102,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181111,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181121,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181122,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181123,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181131,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181132,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181133,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +IN-PIN,181141,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +IN-PIN,181145,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +IN-PIN,181152,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181201,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181202,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181203,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181205,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181206,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181207,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181221,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,181224,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false +IN-PIN,182101,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182104,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182121,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182122,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182124,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182125,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182126,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182127,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182128,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182141,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182142,PostalCode,Ramban,LGD,621,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +IN-PIN,182143,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182144,PostalCode,Ramban,LGD,621,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +IN-PIN,182145,PostalCode,Ramban,LGD,621,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +IN-PIN,182146,PostalCode,Ramban,LGD,621,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false +IN-PIN,182147,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182148,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182161,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false +IN-PIN,182201,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182202,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182203,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182204,PostalCode,Kishtwar,LGD,620,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +IN-PIN,182205,PostalCode,Kishtwar,LGD,620,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false +IN-PIN,182207,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182221,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182222,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false +IN-PIN,182301,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +IN-PIN,182311,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +IN-PIN,182312,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +IN-PIN,182313,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +IN-PIN,182315,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +IN-PIN,182320,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +IN-PIN,184102,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184104,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184120,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +IN-PIN,184121,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false +IN-PIN,184141,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184142,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184143,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184144,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184148,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184151,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184152,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184201,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184202,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184203,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184204,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184205,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184206,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,184210,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false +IN-PIN,185101,PostalCode,Poonch,LGD,10,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +IN-PIN,185102,PostalCode,Poonch,LGD,10,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +IN-PIN,185121,PostalCode,Poonch,LGD,10,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +IN-PIN,185131,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185132,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185133,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185135,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185151,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185152,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185153,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185154,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false +IN-PIN,185155,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185156,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185201,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185202,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185203,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185211,PostalCode,Poonch,LGD,10,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false +IN-PIN,185212,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185233,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,185234,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false +IN-PIN,190001,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190002,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190003,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190004,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190005,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190006,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190008,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190010,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190011,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190012,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190014,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190015,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190017,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190018,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +IN-PIN,190019,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190020,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190024,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,190025,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,191101,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,191102,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,191103,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,191111,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +IN-PIN,191112,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +IN-PIN,191113,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +IN-PIN,191121,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false +IN-PIN,191131,PostalCode,Ganderbal,LGD,626,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +IN-PIN,191201,PostalCode,Ganderbal,LGD,626,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +IN-PIN,191202,PostalCode,Ganderbal,LGD,626,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false +IN-PIN,192101,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192121,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,192122,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,192123,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,192124,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192125,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192126,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192129,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192201,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192202,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192211,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192212,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192221,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,192231,PostalCode,Kulgam,LGD,622,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +IN-PIN,192232,PostalCode,Kulgam,LGD,622,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +IN-PIN,192233,PostalCode,Kulgam,LGD,622,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false +IN-PIN,192301,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,192302,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,192303,PostalCode,Shopian,LGD,625,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false +IN-PIN,192304,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,192305,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,192401,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false +IN-PIN,193101,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193103,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193108,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193109,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193121,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +IN-PIN,193122,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193123,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193201,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193221,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +IN-PIN,193222,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +IN-PIN,193223,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +IN-PIN,193224,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +IN-PIN,193225,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +IN-PIN,193301,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193302,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false +IN-PIN,193303,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193306,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false +IN-PIN,193401,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193402,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193404,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false +IN-PIN,193411,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false +IN-PIN,193501,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +IN-PIN,193502,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +IN-PIN,193503,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +IN-PIN,193504,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +IN-PIN,193505,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false +IN-PIN,194101,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +IN-PIN,194102,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +IN-PIN,194103,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +IN-PIN,194104,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +IN-PIN,194106,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +IN-PIN,194107,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +IN-PIN,194109,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +IN-PIN,194201,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +IN-PIN,194202,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +IN-PIN,194301,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +IN-PIN,194302,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +IN-PIN,194303,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false +IN-PIN,194401,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false +IN-PIN,201001,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201002,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201003,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201004,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201005,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201007,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201008,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201009,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201010,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201013,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201014,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201015,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201020,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201102,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201201,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201204,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201206,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,201301,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201303,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201304,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201305,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201306,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201307,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201309,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201310,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201311,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201312,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201313,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201314,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201316,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,201318,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,202001,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202002,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202121,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202122,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202123,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202124,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202125,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202126,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202127,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202128,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202129,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202130,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202131,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202132,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202133,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202134,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202135,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202136,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202137,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202138,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202139,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202140,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202141,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202142,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202143,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202145,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202150,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202155,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202165,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202280,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202281,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,202282,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,203001,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203002,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203129,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203131,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203132,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203135,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,203141,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203150,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203155,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,203201,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,203202,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203203,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203205,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203206,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203207,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,203209,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false +IN-PIN,203389,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203390,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203391,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203392,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203393,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203394,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203395,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203396,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203397,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203398,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203399,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203401,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203402,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203403,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203405,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203407,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203408,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203409,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203411,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,203412,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false +IN-PIN,204101,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,204102,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +IN-PIN,204211,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +IN-PIN,204212,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +IN-PIN,204213,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,204214,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +IN-PIN,204215,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,204216,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false +IN-PIN,204217,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +IN-PIN,205001,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205119,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205121,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,205247,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205261,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205262,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205263,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205264,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205265,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205267,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205268,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205301,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205303,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,205304,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false +IN-PIN,206001,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206002,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206003,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206120,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206121,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206122,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206123,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206124,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206125,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206126,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206127,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206128,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206129,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206130,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206131,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206241,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206242,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206243,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206244,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206245,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206246,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206247,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206248,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206249,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206250,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206251,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206252,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,206253,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false +IN-PIN,206255,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false +IN-PIN,207001,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207002,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207003,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207120,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207121,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207122,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207123,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +IN-PIN,207124,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +IN-PIN,207125,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207241,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +IN-PIN,207242,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +IN-PIN,207243,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207244,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207245,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +IN-PIN,207246,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207247,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207248,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207249,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207250,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207301,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207302,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207401,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,207402,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +IN-PIN,207403,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false +IN-PIN,208002,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208003,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208004,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208007,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208008,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208010,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208011,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208012,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208013,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208014,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208016,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208017,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208019,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208020,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208021,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208022,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208023,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208024,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,208027,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209101,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209111,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209112,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209115,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209121,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209125,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209202,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209203,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209204,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209205,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209206,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209208,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209209,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209210,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209214,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209217,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209301,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209302,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209303,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209304,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209305,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209306,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209307,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209308,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209310,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209311,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209312,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false +IN-PIN,209401,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209402,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false +IN-PIN,209501,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209502,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209503,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209504,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209505,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209601,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209602,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209621,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209622,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209625,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209651,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209652,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209720,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209721,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209722,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209723,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209724,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209725,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209726,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209727,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209728,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209729,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209731,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209732,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209733,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209734,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209735,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209736,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209738,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209739,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209743,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209745,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209747,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false +IN-PIN,209749,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false +IN-PIN,209801,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209821,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209825,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209827,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209831,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209841,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209859,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209860,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209861,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209862,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209863,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209864,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209865,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209866,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209867,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209868,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209869,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,209870,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209871,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,209881,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false +IN-PIN,210001,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210120,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210121,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210122,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210123,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210125,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210126,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210128,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210129,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210201,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210202,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210203,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210204,PostalCode,Chitrakoot,LGD,136,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false +IN-PIN,210205,PostalCode,Chitrakoot,LGD,136,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false +IN-PIN,210206,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210207,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210208,PostalCode,Chitrakoot,LGD,136,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false +IN-PIN,210209,PostalCode,Chitrakoot,LGD,136,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false +IN-PIN,210301,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210341,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210421,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false +IN-PIN,210422,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210423,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false +IN-PIN,210424,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,210425,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210426,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false +IN-PIN,210427,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false +IN-PIN,210428,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210429,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210430,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210431,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210432,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210433,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false +IN-PIN,210501,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210502,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210504,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210505,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210506,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false +IN-PIN,210507,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false +IN-PIN,211003,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211007,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211008,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211010,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211011,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211012,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211013,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211015,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211016,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,211019,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212104,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212106,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212107,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212108,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212109,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212111,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212201,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212202,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212203,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212204,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212205,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212206,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212207,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212208,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212212,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212213,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212214,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212216,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212217,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212218,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false +IN-PIN,212301,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212302,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212303,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212305,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212306,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212307,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212401,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212402,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212404,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212405,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212502,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212503,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,212507,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,212601,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212620,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212621,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212622,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212631,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212635,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212641,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212645,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212650,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212651,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212652,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212653,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212654,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212655,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212656,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212657,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212658,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212659,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212661,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212663,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212664,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,212665,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false +IN-PIN,214387,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,221001,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221002,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221003,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221004,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221005,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221006,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221007,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221008,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,221009,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,221010,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221011,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221101,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,221103,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221104,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221105,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221106,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221107,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221108,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221109,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221110,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,221111,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,221112,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221115,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,221116,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,221201,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221202,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221204,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221206,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221207,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221208,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221301,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221302,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221303,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221304,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221305,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221306,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221307,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221308,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221309,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221310,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221311,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221313,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221314,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221401,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221402,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221403,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221404,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221405,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false +IN-PIN,221406,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221409,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false +IN-PIN,221502,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,221503,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,221505,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,221507,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,221508,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,221601,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,221602,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,221603,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,221701,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,221705,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,221706,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,221709,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,221711,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,221712,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,221713,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,221715,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,221716,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,221717,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,221718,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,222001,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222002,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222003,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222105,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222109,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222125,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222126,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222127,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222128,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222129,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222131,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222132,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222133,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222135,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222136,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222137,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222138,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222139,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222141,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222142,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222143,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222144,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222145,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222146,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222149,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222161,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222162,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222165,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222170,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222175,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222180,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222181,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222201,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222202,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222203,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,222301,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,222302,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,222303,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,223101,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,223102,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,223103,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,223104,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,223105,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false +IN-PIN,223221,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,223222,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,223223,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,223224,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,223225,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,223226,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,223227,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,224001,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224116,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224117,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224118,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224119,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224120,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224121,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224122,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224123,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224125,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224126,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224127,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224129,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224132,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224133,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224135,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224137,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224139,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224141,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224143,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224145,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224146,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224147,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224149,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224151,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224152,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224153,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224155,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224157,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224158,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224159,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224161,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224164,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224168,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224171,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224172,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224176,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224181,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224182,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224183,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224186,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224188,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224189,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224190,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224195,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224201,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224202,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224203,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224204,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224205,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224206,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224207,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224208,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224209,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224210,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224225,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224227,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224228,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224229,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224230,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224231,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224232,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,224234,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224235,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224238,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false +IN-PIN,224284,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false +IN-PIN,224923,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +IN-PIN,225001,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225003,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225119,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225120,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225121,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225122,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225123,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225124,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225125,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225126,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225201,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225202,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225203,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225204,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225205,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225206,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225207,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225208,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225301,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225302,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225303,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225304,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225305,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225306,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225401,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225403,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225404,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225405,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225409,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225412,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225413,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225414,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225415,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,225416,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false +IN-PIN,226002,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226003,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226004,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226005,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226006,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226008,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226009,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226010,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226011,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226012,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226013,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226015,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226016,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226017,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226018,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226020,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226021,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226022,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226024,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226026,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226028,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226029,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226031,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226101,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226102,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226103,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226104,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226201,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226202,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226203,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226301,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226302,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226303,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226401,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,226501,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false +IN-PIN,227304,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,227405,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227406,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227407,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227408,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227409,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227411,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227412,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227413,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227801,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227805,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227806,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,227807,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227808,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,227809,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227811,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227812,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,227813,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227814,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,227815,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227816,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,227817,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,228001,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,228118,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228119,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228120,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228121,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,228125,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,228131,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228132,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228133,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228141,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228142,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228145,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228151,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228155,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228159,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,228161,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228171,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,228172,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false +IN-PIN,229001,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229010,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229103,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229121,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229122,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229123,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229124,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229125,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229126,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229127,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229128,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229129,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229130,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229135,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229201,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229202,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229203,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229204,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229205,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229206,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229207,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229208,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229209,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229210,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229211,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229212,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229215,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229216,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229301,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229302,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229303,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229304,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229305,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229306,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229307,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229308,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229309,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229310,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229311,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229316,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229401,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229402,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229404,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229405,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229406,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false +IN-PIN,229408,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,229410,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,229411,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,229412,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false +IN-PIN,229413,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,229801,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,229802,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false +IN-PIN,230001,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230002,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230121,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230124,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230125,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230126,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230127,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230128,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230129,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230130,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230131,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230132,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230133,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230134,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230135,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230136,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230137,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230138,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230139,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230141,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230142,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230143,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230144,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230201,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230202,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230204,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230301,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230302,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230304,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230306,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230401,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230402,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230403,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230404,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230405,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230501,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230502,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,230503,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false +IN-PIN,231001,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231205,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231206,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231207,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231208,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231209,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231210,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231211,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231212,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231213,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231215,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231216,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231217,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231218,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231219,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231220,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231221,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231222,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231223,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231224,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231225,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231226,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false +IN-PIN,231301,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231302,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231303,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231304,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231305,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231306,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231307,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231309,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231312,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231313,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231314,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,231501,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false +IN-PIN,232101,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232102,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232103,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232104,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232105,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232106,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232107,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232108,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232109,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232110,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232111,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232118,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232120,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false +IN-PIN,232325,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232326,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232327,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232328,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232329,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232330,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232331,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232332,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232333,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232336,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232339,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232340,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,232341,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233001,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233002,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233221,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233222,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233223,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233224,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233225,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233226,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233227,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233228,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233229,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233230,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233231,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233232,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233233,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233234,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233300,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233301,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233302,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233303,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233304,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233305,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233306,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233307,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233310,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,233311,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,241001,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241121,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241122,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241123,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241124,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241125,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241126,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241127,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241201,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241202,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241203,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241204,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241301,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241302,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241303,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241304,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241305,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241401,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241402,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241403,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241404,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241405,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241406,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,241407,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false +IN-PIN,242001,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242021,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +IN-PIN,242042,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242127,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242220,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242221,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242223,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242226,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242301,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242303,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242305,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242306,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,242307,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242401,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242405,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242406,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false +IN-PIN,242407,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,243001,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243003,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243004,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243005,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243006,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243122,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243123,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243126,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243201,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243202,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243203,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243301,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243302,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243303,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243401,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243402,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243403,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243501,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243502,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243503,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243504,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243505,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243506,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,243601,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243630,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243631,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243632,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243633,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243634,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243635,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243636,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243637,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243638,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243639,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243641,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243720,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243722,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243723,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243724,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243725,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243726,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,243727,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +IN-PIN,243751,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false +IN-PIN,244001,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244102,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244103,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244104,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244105,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244221,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244222,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244225,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244231,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244235,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244236,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244241,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244242,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244251,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244255,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244301,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244302,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +IN-PIN,244303,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +IN-PIN,244304,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244401,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244402,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244410,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +IN-PIN,244411,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244412,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false +IN-PIN,244413,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244414,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244415,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244501,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false +IN-PIN,244504,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244601,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244602,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false +IN-PIN,244701,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +IN-PIN,244712,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,244713,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,244715,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,244716,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,244717,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,244720,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,244901,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +IN-PIN,244921,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +IN-PIN,244922,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +IN-PIN,244924,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +IN-PIN,244925,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false +IN-PIN,245101,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false +IN-PIN,245201,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,245205,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false +IN-PIN,245206,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,245207,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false +IN-PIN,245208,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false +IN-PIN,245301,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false +IN-PIN,245304,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false +IN-PIN,246001,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,246113,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246121,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246123,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246124,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246125,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246127,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246128,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246129,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246130,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246131,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246141,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246144,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246146,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246147,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246148,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246149,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246155,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246159,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246161,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246162,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246163,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246164,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246165,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246166,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246167,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246169,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246171,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246172,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246173,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246174,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246175,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246176,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246177,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246178,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246179,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246193,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246194,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246275,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246276,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246277,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246278,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246279,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246285,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,246401,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246419,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246421,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246422,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246424,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246425,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246426,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246427,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246428,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246429,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246431,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246435,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246439,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246440,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246441,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246442,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246443,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246444,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246445,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246446,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246448,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246449,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246453,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246455,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246469,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246471,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246472,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246473,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246474,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246475,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246481,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246482,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246483,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246486,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246487,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246488,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false +IN-PIN,246495,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,246701,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246721,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246722,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246723,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246724,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246725,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246726,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246727,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246728,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246729,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246731,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246732,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246733,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246734,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246735,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246736,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246737,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246745,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246746,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246747,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246749,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246761,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246762,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,246763,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,246764,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false +IN-PIN,247001,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247002,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247120,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247121,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247122,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247129,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247231,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247232,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247340,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247341,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247342,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247343,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247451,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247452,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247453,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247551,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247554,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247656,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247661,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247662,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247663,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247665,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247666,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247667,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247668,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247669,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false +IN-PIN,247670,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247671,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,247771,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,247772,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,247773,PostalCode,Shamli,LGD,660,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false +IN-PIN,247774,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,247775,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,247776,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,247777,PostalCode,Shamli,LGD,660,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false +IN-PIN,247778,PostalCode,Shamli,LGD,660,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false +IN-PIN,248001,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248002,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248003,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248005,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248007,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248008,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248009,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248013,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248019,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248121,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248123,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248124,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248140,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248143,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248145,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248158,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248165,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248179,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248196,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248197,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,248199,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,249001,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,249121,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249122,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249123,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249124,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249125,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249126,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249127,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,249128,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249130,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,249131,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,249132,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249135,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249136,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249137,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249141,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249145,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249146,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249151,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249152,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249155,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249161,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false +IN-PIN,249165,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249171,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249175,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249180,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249181,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249185,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249186,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249192,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249193,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249194,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false +IN-PIN,249196,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249199,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false +IN-PIN,249202,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,249204,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,249205,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,249301,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,249302,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,249304,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false +IN-PIN,249306,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,249401,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,249402,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false +IN-PIN,249404,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,249405,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,249407,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,249408,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false +IN-PIN,250001,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250002,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250004,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250005,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250101,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250103,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250104,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250106,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250110,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250205,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250221,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250222,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250223,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250341,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250342,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250344,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250345,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250401,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250402,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250404,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250406,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250501,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250502,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false +IN-PIN,250601,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250606,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250609,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250611,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250615,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250617,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250619,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250620,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250621,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250622,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250623,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250625,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,250626,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false +IN-PIN,251001,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251002,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251003,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251201,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251202,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251203,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251301,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251305,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251306,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251307,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251308,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251309,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251310,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251311,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251314,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251315,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251316,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251318,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251319,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251320,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,251327,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false +IN-PIN,261001,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261121,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261125,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261131,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261135,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261136,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261141,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261145,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261151,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261201,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261202,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261203,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261204,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261205,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261206,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261207,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261208,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261301,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261302,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261303,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261401,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261402,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261403,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261404,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261405,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false +IN-PIN,261501,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,261502,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,261505,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,261506,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262001,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262121,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262122,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262123,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262124,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262201,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262202,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262203,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262302,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262305,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false +IN-PIN,262308,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,262309,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262310,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262311,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,262401,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,262402,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,262405,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,262406,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,262407,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false +IN-PIN,262501,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262502,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262520,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262521,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262522,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262523,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262524,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262525,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262526,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262527,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262528,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262529,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262530,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262531,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262532,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262533,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262534,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262540,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262541,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262542,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262543,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262544,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262545,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262546,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262547,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262550,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262551,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262552,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262553,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262554,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262555,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262561,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262572,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262576,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false +IN-PIN,262580,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false +IN-PIN,262701,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262702,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262721,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262722,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262723,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262724,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262725,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262726,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262727,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262728,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262801,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262802,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,262803,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262804,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262805,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262901,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262902,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262903,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262904,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262905,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262906,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262907,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,262908,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false +IN-PIN,263001,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263126,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263127,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263128,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263132,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263134,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263135,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263136,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263137,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263138,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263139,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263140,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263142,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263145,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,263148,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,263149,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,263150,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,263151,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,263152,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,263153,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,263156,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263157,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263158,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263159,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false +IN-PIN,263160,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false +IN-PIN,263601,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263619,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263620,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263621,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263622,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263623,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263624,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263625,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263626,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263628,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263629,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263630,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263631,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263632,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263633,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263634,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263635,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263636,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263637,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263638,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263639,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263640,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263641,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263642,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263643,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263645,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263646,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263651,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263652,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263653,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263655,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263656,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263658,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263659,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263660,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263661,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263663,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263664,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263665,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263667,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263676,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263678,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,263679,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false +IN-PIN,263680,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false +IN-PIN,271001,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271002,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271003,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271122,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271123,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271124,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271125,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271126,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271129,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271201,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271203,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271205,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271206,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271207,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271208,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271210,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271301,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271302,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271303,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271305,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271306,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271307,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271309,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271310,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271311,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271312,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271313,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,271319,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271401,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271403,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271502,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271503,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271504,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false +IN-PIN,271602,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271603,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271604,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271607,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271609,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271801,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271802,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271803,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false +IN-PIN,271804,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false +IN-PIN,271806,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271821,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271824,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271825,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271830,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271831,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false +IN-PIN,271835,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271840,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false +IN-PIN,271841,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271845,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false +IN-PIN,271851,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271855,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271861,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false +IN-PIN,271865,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271870,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271871,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271872,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271875,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271881,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271882,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271901,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271902,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271903,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,271904,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false +IN-PIN,272001,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272002,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272123,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272124,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272125,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272126,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272127,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272128,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272129,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272130,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272131,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272148,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272150,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272151,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272152,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272153,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272154,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272155,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272161,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272162,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272163,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272164,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272165,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272171,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272172,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272173,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272175,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272176,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272177,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272178,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272181,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272182,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272189,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272190,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272191,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272192,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272193,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272194,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272195,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272199,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272201,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272202,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272203,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272204,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272205,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272206,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272207,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272208,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false +IN-PIN,272270,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272271,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false +IN-PIN,272301,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,272302,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false +IN-PIN,273001,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273002,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273004,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273006,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273007,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273008,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273010,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273013,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273014,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273015,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273016,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273017,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273151,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273152,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273155,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273157,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273158,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273161,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273162,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273163,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273164,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273165,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273201,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273202,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273203,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273207,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273209,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273211,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273212,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273213,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273301,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273302,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273303,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273304,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273305,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273306,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273308,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273309,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273310,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273311,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false +IN-PIN,273401,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273402,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273403,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273404,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273405,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273406,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273407,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273408,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273409,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273411,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273412,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,273413,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false +IN-PIN,274001,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274149,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274182,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274201,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274202,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274203,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274204,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274205,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274206,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274207,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274208,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274301,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274302,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274303,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274304,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274305,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274306,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274307,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274308,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274309,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274401,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274402,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274404,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274405,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274406,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274407,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274408,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274409,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274501,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274502,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274505,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274506,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274508,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274509,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274601,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274602,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274603,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274701,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274702,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274703,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274704,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274705,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274801,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274802,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false +IN-PIN,274806,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,274807,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false +IN-PIN,275101,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275102,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275103,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275105,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275201,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,275202,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,275203,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,275204,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,275205,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false +IN-PIN,275301,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275302,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275303,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275304,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275305,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275306,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,275307,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,276001,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276121,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276122,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276123,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276124,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276125,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276126,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276127,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276128,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276129,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276131,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276135,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276136,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276137,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276138,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276139,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276140,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276141,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276142,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276143,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276201,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276202,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276203,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276204,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276205,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276206,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276207,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276208,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276288,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276301,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276302,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276303,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276304,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276305,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276306,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,276402,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276403,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,276404,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,276405,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false +IN-PIN,276406,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false +IN-PIN,277001,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277121,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277123,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277124,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277201,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277202,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277203,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277204,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277205,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277207,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277208,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277209,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277210,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277211,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277213,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277214,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277216,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277219,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277301,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277302,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277303,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277304,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277401,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277402,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277403,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277501,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277502,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277503,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277504,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,277506,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false +IN-PIN,281001,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281003,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281004,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281005,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281006,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281104,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false +IN-PIN,281121,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281122,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281123,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281201,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281202,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281203,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281204,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281205,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281206,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281301,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281302,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +IN-PIN,281303,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281305,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281306,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +IN-PIN,281307,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false +IN-PIN,281308,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281401,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281403,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281404,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281405,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281406,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281501,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281502,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,281504,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false +IN-PIN,282001,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,282002,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,282004,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,282005,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,282006,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,282007,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,282009,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,282010,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283101,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283102,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283103,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283104,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283105,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283110,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283111,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283112,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283113,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283114,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283115,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283119,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283121,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283122,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283123,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283124,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283125,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283126,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283130,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283135,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283136,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283141,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283142,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283145,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283151,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283152,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283201,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283202,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false +IN-PIN,283203,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283204,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283205,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283206,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,283207,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false +IN-PIN,284001,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284002,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284003,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284120,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284121,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284122,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284123,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,284124,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284126,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284127,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284128,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284135,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284136,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284201,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284202,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284203,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284204,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284205,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284206,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284301,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284302,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284303,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284304,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,284305,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284306,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,284401,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284402,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284403,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284404,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284405,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284406,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,284419,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false +IN-PIN,284501,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false +IN-PIN,285001,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285121,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285122,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285123,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285124,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285125,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285126,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285127,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285128,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285129,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285130,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285201,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285202,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285203,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285204,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285205,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285206,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,285223,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false +IN-PIN,301001,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301018,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301019,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301020,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301021,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301022,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301023,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301024,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301025,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301026,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301027,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301028,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301030,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301035,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301401,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301402,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301404,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301405,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301406,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301407,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301408,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301409,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301410,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301411,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301412,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301413,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301414,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301415,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301418,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301427,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301604,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,301701,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301702,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301703,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301704,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301705,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301706,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301707,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301708,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301709,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301713,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,301714,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,302001,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302002,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302003,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302004,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302006,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302012,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302013,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302015,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302016,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302017,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302018,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302019,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302020,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302021,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302022,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302026,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302027,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302028,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302029,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302031,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302033,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302034,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302037,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302038,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302039,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302041,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302042,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302044,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302046,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,302048,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303001,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303002,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303003,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303004,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303005,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303006,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303007,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303008,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303009,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303012,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303102,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,303103,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303104,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303105,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,303106,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,303107,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,303108,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,303109,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303110,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,303119,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303120,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303123,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303124,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303301,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303302,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303303,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303304,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303305,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303313,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303315,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303323,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303325,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303326,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303327,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303328,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303338,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303348,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303501,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303502,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303503,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303505,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303506,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303507,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303508,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303509,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303510,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303511,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,303601,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303602,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303603,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303604,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303701,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303702,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303704,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303706,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303712,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303801,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303803,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303804,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303805,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303806,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303807,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303901,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303903,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303904,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303905,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,303908,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false +IN-PIN,304001,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304021,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304022,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304023,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,304024,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,304025,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304026,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,304501,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304502,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304503,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304504,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304505,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304507,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304801,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304802,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304803,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,304804,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false +IN-PIN,305001,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305002,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305003,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305004,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305005,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305012,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305021,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305022,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305023,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305024,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305025,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305026,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,305201,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305202,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305203,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305204,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305205,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305206,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305207,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305401,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305402,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305403,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305404,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305405,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305406,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305407,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305408,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305412,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305415,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305601,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305621,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305622,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305623,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305624,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305625,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305627,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305628,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305629,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305630,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305631,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305801,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305802,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305811,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305812,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305813,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305814,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305815,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305816,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305819,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false +IN-PIN,305901,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305921,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305922,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305923,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305924,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305925,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305926,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,305927,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306001,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306021,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306022,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306023,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306101,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306102,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306103,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306104,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306105,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306114,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306115,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306116,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306119,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306126,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306301,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306302,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306303,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306304,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306305,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306306,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306307,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306308,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306401,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306421,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306422,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306501,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306502,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306503,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306504,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306601,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306602,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306603,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306701,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306702,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306703,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306704,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306705,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306706,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306707,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306708,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306709,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,306901,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306902,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,306912,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false +IN-PIN,307001,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307019,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307022,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307023,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307024,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307025,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,307026,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307027,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307028,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307029,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,307030,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,307031,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307032,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307043,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307501,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307510,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307511,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307512,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307513,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307514,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,307515,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,307801,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307802,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false +IN-PIN,307803,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,311001,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311011,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311021,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311022,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311023,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311024,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311025,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311026,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311030,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311201,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311202,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311203,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311204,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,311301,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,311302,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,311401,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311402,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311403,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311404,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311407,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311408,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311601,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311602,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311603,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311604,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311605,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311606,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311801,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311802,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311803,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311804,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311805,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,311806,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false +IN-PIN,312001,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312021,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312022,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312023,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312024,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312025,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312027,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312201,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312202,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312203,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312204,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312205,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312206,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312207,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312401,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312402,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312403,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312404,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312601,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312602,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312603,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312604,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312605,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312606,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312612,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312613,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312614,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312615,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312616,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312619,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312620,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,312623,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312624,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312625,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312626,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312628,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312629,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false +IN-PIN,312901,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,313001,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313003,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,313011,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313022,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,313024,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313026,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313027,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313031,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,313038,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313201,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313202,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313203,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,313204,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313205,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,313206,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313207,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313211,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313301,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313321,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313322,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313323,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313324,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313325,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313327,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313328,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313329,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313330,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313331,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313332,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313333,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313334,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313341,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313342,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313601,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,313602,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,313603,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313604,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313701,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313702,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313703,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313704,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false +IN-PIN,313705,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,313706,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313708,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,313801,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313802,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313803,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313804,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313805,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313901,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313902,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313903,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313904,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313905,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,313906,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false +IN-PIN,314001,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314011,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314021,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314022,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314023,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314024,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314025,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314026,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314027,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,314028,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314029,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314030,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314031,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314032,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,314034,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,314035,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314036,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314037,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314038,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314401,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314402,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314403,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314404,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314406,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314801,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,314804,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false +IN-PIN,321001,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321021,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321022,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,321023,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,321024,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,321025,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321026,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321028,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321201,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,321202,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321203,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321204,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,321205,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,321206,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,321301,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321302,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321303,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321401,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321402,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321403,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321404,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321405,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321406,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321407,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321408,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321409,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321410,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321411,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321601,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321602,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321605,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,321606,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,321607,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,321608,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,321609,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,321610,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,321611,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,321612,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,321613,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,321614,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321615,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,321633,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false +IN-PIN,321642,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false +IN-PIN,322001,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322023,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322024,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322025,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322026,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322027,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322028,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322029,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322030,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322033,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322034,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322201,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322202,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322203,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322204,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322205,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322211,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322212,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322213,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322214,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322215,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322216,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322218,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322219,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322220,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322230,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322234,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322236,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322238,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322240,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false +IN-PIN,322241,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322242,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322243,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322249,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322251,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322252,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322254,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322255,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false +IN-PIN,322701,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322702,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322703,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,322704,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false +IN-PIN,323001,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323021,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323022,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323023,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323024,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323025,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323026,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323301,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323304,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,323306,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,323307,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false +IN-PIN,323601,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323602,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323603,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323613,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323614,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323615,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323616,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323801,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323802,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,323803,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false +IN-PIN,324001,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324002,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324003,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324004,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324005,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324006,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324007,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324008,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324009,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,324010,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325001,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325003,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325004,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325009,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325201,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325202,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325203,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325204,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325205,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325206,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325207,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325208,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325209,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325214,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325215,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325216,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325217,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325218,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325219,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325220,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325221,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325222,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325223,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325224,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,325601,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,325602,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,326001,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326021,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326022,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326023,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326033,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326034,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326035,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326036,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326037,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326038,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326039,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326501,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326502,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326512,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326513,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326514,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326515,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326516,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false +IN-PIN,326517,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,326518,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,326519,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,326520,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,326529,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false +IN-PIN,326530,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false +IN-PIN,327001,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327021,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327022,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327023,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327024,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327025,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327026,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327027,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327031,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327032,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327034,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327601,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327602,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327603,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327604,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327605,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327606,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,327801,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false +IN-PIN,328001,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328021,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328022,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328023,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328024,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328025,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328026,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328027,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328029,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328030,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328031,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,328041,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false +IN-PIN,331001,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331021,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331022,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331023,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331024,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,331025,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,331026,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,331027,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,331028,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,331029,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331031,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331301,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331302,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331303,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331304,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331305,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331402,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331403,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331411,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331501,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331502,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331503,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331504,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331505,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331506,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331507,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331517,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331518,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331701,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331801,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,331802,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false +IN-PIN,331803,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,331811,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,332001,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332002,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332021,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332023,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332024,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332025,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332026,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332027,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332028,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332029,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332030,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332031,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332041,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332042,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332301,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332302,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332303,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332304,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332305,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332307,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332311,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332312,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332315,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332316,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332317,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332318,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332401,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332402,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332403,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332404,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332405,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332406,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332411,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332601,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332602,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332603,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332701,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332702,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332703,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332705,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332706,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332707,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332708,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332709,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332710,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332711,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332712,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332713,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332714,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332715,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332716,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,332718,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332719,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332721,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332722,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332742,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false +IN-PIN,332746,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333001,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333010,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333011,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333012,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333020,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333021,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333022,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333023,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333024,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333025,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333026,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333027,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333028,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333029,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333030,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333031,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333032,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333033,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333034,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333035,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333036,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333041,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333042,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333053,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333055,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333302,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333303,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333304,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333305,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333307,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333308,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333501,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333502,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333503,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333504,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333514,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333515,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333516,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333517,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333701,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333702,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333704,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333705,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333707,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,333801,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false +IN-PIN,334001,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334021,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334022,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334023,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334024,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334201,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334202,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334302,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334303,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334305,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334402,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334601,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334602,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334603,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334604,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334801,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334802,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334803,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334804,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,334808,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false +IN-PIN,335001,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335002,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335021,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335022,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335024,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335025,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335027,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335037,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335038,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335039,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335040,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335041,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335042,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335051,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335061,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335062,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335063,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335064,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335065,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335073,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335501,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335502,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335503,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335504,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335511,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335512,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335513,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335521,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335522,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335523,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335524,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335525,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335526,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335701,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335702,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335703,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335704,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335707,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335708,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335711,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335801,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false +IN-PIN,335802,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335803,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335804,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335805,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,335901,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false +IN-PIN,341001,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341020,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341021,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341022,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341023,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341024,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341025,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341026,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341027,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341028,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341029,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341030,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341031,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341301,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341302,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341303,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341304,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341305,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341306,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341309,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341316,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341317,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341318,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341319,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341501,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341502,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341503,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341504,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341505,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341506,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341507,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341508,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341509,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341510,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341511,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341512,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341513,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341514,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341515,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,341516,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341517,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341518,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341519,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341520,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341533,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341542,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,341551,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,342001,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342005,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342008,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342012,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342013,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342014,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342015,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342021,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342022,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342023,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342024,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342025,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342027,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342028,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342029,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342030,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342037,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342301,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,342302,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342303,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342304,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342305,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342306,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342307,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,342308,PostalCode,Phalodi,LGD,772,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,342309,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342310,PostalCode,Phalodi,LGD,772,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,342311,PostalCode,Phalodi,LGD,772,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,342312,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342314,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342601,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342602,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342603,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342604,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342605,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342606,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342801,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342802,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342901,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false +IN-PIN,342902,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false +IN-PIN,343001,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343002,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343021,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343022,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343023,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343024,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343025,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343027,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343028,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343029,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343030,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343032,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343039,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343040,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343041,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343042,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343048,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,343049,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false +IN-PIN,344001,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344011,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344012,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344021,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344022,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344024,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344025,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344026,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344027,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344031,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344032,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344033,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344034,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344035,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344037,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344043,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344044,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344501,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344502,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344701,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344702,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344703,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344704,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344705,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344706,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false +IN-PIN,344708,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344801,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,344802,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false +IN-PIN,345001,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345021,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345022,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345023,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345024,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345025,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345026,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345027,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345028,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345031,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345033,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,345034,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false +IN-PIN,360002,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360003,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,360004,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360005,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360006,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360020,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360021,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360022,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360023,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360024,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360025,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360026,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360028,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360030,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360035,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,360040,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360045,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,360050,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,360055,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360060,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360070,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360110,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,360311,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360320,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360325,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360330,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360360,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360370,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360375,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360380,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360405,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360410,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360421,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360430,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360440,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360450,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360452,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360460,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360465,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,360470,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360480,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,360485,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,360490,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,360510,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,360515,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,360520,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,360530,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,360531,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,360540,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,360545,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +IN-PIN,360550,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +IN-PIN,360570,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +IN-PIN,360575,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +IN-PIN,360576,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false +IN-PIN,360579,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,360590,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361001,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361002,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361006,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361007,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361010,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361011,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361012,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361013,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361110,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361120,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361130,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361140,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361160,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361162,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361170,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361210,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361220,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361230,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361240,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361250,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361280,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,361305,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361306,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361310,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361315,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361320,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361325,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361330,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361335,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361345,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361347,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,361350,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false +IN-PIN,362001,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,362002,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362011,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362015,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362020,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362030,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362037,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362110,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362120,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362130,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362135,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362140,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362150,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362205,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362215,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362220,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362222,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362225,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362227,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362230,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362240,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362245,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362250,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362255,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362260,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362263,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362265,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362268,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362275,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362310,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362315,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362510,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362520,PostalCode,Diu,LGD,464,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false +IN-PIN,362530,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362550,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362560,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362565,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362570,PostalCode,Diu,LGD,464,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false +IN-PIN,362610,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362620,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362625,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362630,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362640,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362650,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false +IN-PIN,362710,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,362720,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false +IN-PIN,363020,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363030,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363040,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363110,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363115,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363310,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363320,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363330,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363351,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363410,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +IN-PIN,363421,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,363423,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,363427,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363430,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,363435,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363440,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363510,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363520,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false +IN-PIN,363530,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363621,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363623,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363630,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363641,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363642,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363643,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363650,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363655,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false +IN-PIN,363660,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363670,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false +IN-PIN,363745,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363750,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363755,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363760,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363765,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363775,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,363780,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false +IN-PIN,364001,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364002,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364004,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364050,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364060,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364070,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364081,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364110,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364120,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364130,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364135,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364140,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364145,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364150,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364210,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364230,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364240,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364250,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364260,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364265,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364270,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,364275,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364280,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364290,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364295,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364310,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364313,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364320,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364330,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364505,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364510,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364515,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,364521,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,364522,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,364525,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,364530,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,364710,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +IN-PIN,364720,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +IN-PIN,364730,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,364740,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364750,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +IN-PIN,364760,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false +IN-PIN,364765,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +IN-PIN,365220,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365410,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365421,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365430,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365435,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365440,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365450,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365455,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365456,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365460,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365480,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365535,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365540,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365541,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365550,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365555,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365560,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365601,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365610,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365620,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365630,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365635,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365640,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365645,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365650,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,365730,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false +IN-PIN,370001,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370015,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370020,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370030,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370040,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370105,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370110,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370115,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370130,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370135,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370140,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370145,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370150,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370155,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370160,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370165,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370201,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370205,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370210,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370405,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370410,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370415,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370421,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370425,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370427,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370430,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370435,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370445,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370450,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370455,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370460,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370465,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370475,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370485,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370490,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370510,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370601,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370605,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370610,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370615,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370620,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370625,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370627,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370630,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370640,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370645,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370650,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370655,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370660,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370665,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370670,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,370675,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false +IN-PIN,380001,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380005,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380006,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380007,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380009,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380013,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380015,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380016,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380021,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380022,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380023,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380026,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380028,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380049,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380050,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380051,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380052,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380054,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380055,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380058,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380059,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380060,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,380061,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382007,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382016,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382028,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382042,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382055,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382110,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382115,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382120,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382130,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382140,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382145,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382150,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382170,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382210,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382213,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382220,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382225,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382230,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382240,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382245,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382250,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382255,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +IN-PIN,382260,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382265,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382305,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382308,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382315,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382320,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382321,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382330,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382345,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382355,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382405,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382415,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382418,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382421,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382422,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382423,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382424,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382425,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382426,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382427,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382428,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382430,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382433,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382435,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382443,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382445,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382449,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382450,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false +IN-PIN,382455,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382460,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382463,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382465,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382470,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382475,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382480,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382481,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382610,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382620,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382630,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382640,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382650,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382721,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382722,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,382725,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382729,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382735,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382740,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382810,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382835,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382845,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,382855,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,383001,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383002,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383010,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383030,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383110,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383120,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383205,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383210,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383215,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383220,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383225,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383230,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383235,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383240,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383245,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383246,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383250,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383251,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383255,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383260,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383270,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383275,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383276,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383305,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383307,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383310,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383315,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383316,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383317,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383320,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383325,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383330,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383335,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383340,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383345,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383350,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383355,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383410,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383421,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383422,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383430,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383434,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383440,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383450,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false +IN-PIN,383460,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,383462,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false +IN-PIN,384001,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384002,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384003,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384005,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384110,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384120,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384130,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384135,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384140,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384151,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384160,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384170,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384220,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384221,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384225,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384229,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384230,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384240,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384241,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384245,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384246,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384255,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384260,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384265,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384266,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384272,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384275,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384285,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384290,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,384305,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384310,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384315,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384320,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384325,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384330,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384335,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384340,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384345,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384355,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384360,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384410,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384412,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384415,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false +IN-PIN,384421,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384430,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384435,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384440,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384441,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false +IN-PIN,384445,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384450,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384455,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384460,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384465,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384470,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384515,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384520,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384530,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384540,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384550,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384560,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384565,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,384570,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false +IN-PIN,385001,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385010,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385110,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385120,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385130,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385135,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385210,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385310,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385320,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385330,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +IN-PIN,385340,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,385350,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,385360,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false +IN-PIN,385410,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385421,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385505,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385510,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385515,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385520,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385530,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385535,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385540,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385545,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385550,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385555,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385560,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false +IN-PIN,385565,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +IN-PIN,385566,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +IN-PIN,385570,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +IN-PIN,385575,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false +IN-PIN,387001,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387002,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387110,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387115,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,387120,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387130,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387210,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,387220,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387230,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387240,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,387305,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387310,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,387315,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387320,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387325,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387330,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387335,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387340,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387345,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,387350,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387355,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387360,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387365,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387370,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387375,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,387380,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,387430,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387510,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387520,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387530,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,387540,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387550,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387560,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387570,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387610,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387620,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387630,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387635,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387640,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387650,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,387710,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,388001,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388110,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388130,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388140,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388150,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388160,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388170,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388180,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388205,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388210,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388215,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388220,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388225,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,388230,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,388235,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388245,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,388250,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false +IN-PIN,388255,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388260,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,388265,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,388270,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,388305,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388307,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388310,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388315,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388320,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388325,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388330,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388335,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388340,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388345,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388350,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388355,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388360,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388365,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388370,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388410,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388421,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388430,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388440,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388450,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388460,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388465,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388470,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388480,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388510,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388520,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388530,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388540,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388543,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388545,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388550,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388560,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388570,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388580,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388590,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388610,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388620,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388625,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388630,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388640,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false +IN-PIN,388710,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,388713,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389002,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389110,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,389115,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389120,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389130,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389140,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389146,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389151,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389152,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389154,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389155,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389160,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389170,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389172,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389175,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389180,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389210,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,389220,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,389230,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,389235,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,389250,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,389260,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false +IN-PIN,389310,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389320,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389330,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389350,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389370,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,389380,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389382,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false +IN-PIN,389390,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false +IN-PIN,390001,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390003,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390004,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390009,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390010,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390011,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390012,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390013,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390014,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390019,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390020,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390022,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390023,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390024,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,390025,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391101,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391105,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391107,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391110,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391115,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391120,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +IN-PIN,391125,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391130,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391135,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391140,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391145,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391150,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391152,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391156,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391160,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391165,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391168,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391170,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false +IN-PIN,391210,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391220,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391240,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391243,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391244,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391250,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391310,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391320,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391330,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391340,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391350,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391410,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391421,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391430,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391440,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391445,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391450,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391510,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391520,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391530,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391740,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391745,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391760,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391761,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391770,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391774,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391775,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391776,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391780,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,391810,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392001,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392011,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392012,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392020,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392025,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392030,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392035,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392040,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392110,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392130,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392140,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392155,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392180,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,392210,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,392220,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,392310,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,393010,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,393020,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,393025,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +IN-PIN,393030,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,393040,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +IN-PIN,393041,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +IN-PIN,393050,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +IN-PIN,393105,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false +IN-PIN,393110,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,393115,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,393125,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,393130,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,393135,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,393140,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +IN-PIN,393151,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +IN-PIN,393155,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false +IN-PIN,394101,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394105,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394107,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394110,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,394112,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394115,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,394116,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,394120,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,394125,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,394130,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394140,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394150,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394155,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394160,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394163,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394170,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394180,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394185,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394190,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394210,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394221,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394230,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394235,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394240,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394246,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394248,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394250,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394270,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394305,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394310,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394315,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394317,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394320,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394325,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394327,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394330,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394335,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394340,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394345,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394350,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394352,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394355,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394370,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394375,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394380,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394405,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394410,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394421,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394430,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394440,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394445,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394510,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394516,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394517,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394520,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394530,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394540,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394550,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394601,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394620,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394630,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394635,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394640,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394650,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394651,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394652,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394655,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394660,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394670,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394680,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false +IN-PIN,394690,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,394710,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false +IN-PIN,394715,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false +IN-PIN,394716,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false +IN-PIN,394720,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false +IN-PIN,394730,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false +IN-PIN,394810,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false +IN-PIN,395001,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395002,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395003,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395004,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395005,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395006,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395007,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395008,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395009,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395010,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395011,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395012,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395013,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395017,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,395023,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,396001,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396007,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396020,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396030,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396035,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396040,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396045,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396050,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396051,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396055,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396060,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396065,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396066,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396067,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396105,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396110,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396115,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396120,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396125,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396126,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396130,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396135,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396140,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396145,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396150,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396155,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396165,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396170,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396180,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396185,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396191,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396193,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396195,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396210,PostalCode,Daman,LGD,463,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,false +IN-PIN,396215,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396220,PostalCode,Dadra And Nagar Haveli,LGD,465,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,false +IN-PIN,396230,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396235,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396240,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396310,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396321,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396325,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396350,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396360,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396370,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396375,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396380,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396385,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false +IN-PIN,396403,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396406,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396409,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396412,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396415,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396418,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396421,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396427,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396430,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396433,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396436,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396439,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396445,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396450,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396460,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396463,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396466,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396469,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396472,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396475,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396510,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false +IN-PIN,396521,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396530,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396540,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396560,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396570,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396580,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,396590,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false +IN-PIN,400042,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400043,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400049,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400050,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400051,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400052,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400053,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400057,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400059,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400060,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400061,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400063,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400064,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400065,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400066,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400067,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400068,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400069,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400070,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400071,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400072,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400074,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400076,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400078,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400079,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400080,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400081,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400083,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400086,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400087,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400088,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400091,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400092,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400093,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400095,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400096,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400097,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400098,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400099,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400101,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400102,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400103,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400104,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400601,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400602,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400603,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400605,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400606,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400607,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400608,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400612,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400615,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400701,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400702,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,400703,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,400704,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,400706,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400707,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,400708,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400709,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,400710,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,401101,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401102,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401103,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401106,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,401107,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,401201,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401202,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401203,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401204,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401206,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,401207,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401208,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401301,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401302,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401303,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401304,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401305,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,401401,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401402,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401403,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401404,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401405,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401501,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401502,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401503,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401504,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401601,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401602,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401603,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401604,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401605,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401606,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401607,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401608,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401701,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401702,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,401703,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,402101,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402102,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402103,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402104,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402105,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402106,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402107,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402108,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402109,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402110,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402111,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402112,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402113,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402114,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402115,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402116,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402117,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402120,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402122,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402126,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402201,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402202,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402203,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402204,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402207,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402208,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402209,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402301,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402302,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402303,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402304,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402305,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402306,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402307,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402308,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402309,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402401,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402402,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402403,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,402404,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,403001,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403002,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403005,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403006,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403101,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403102,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403103,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403104,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403105,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403106,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403107,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403108,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403110,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403114,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403115,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403202,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403204,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403401,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403402,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403403,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403404,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403406,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403410,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403501,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403502,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403503,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403504,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403505,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403506,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403507,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403508,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403509,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403510,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403511,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403512,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403513,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403515,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403516,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403517,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403523,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403524,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403527,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403529,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403530,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false +IN-PIN,403601,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403701,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403702,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403703,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403704,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403705,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403706,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403707,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403708,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403709,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403710,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403711,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403712,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403713,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403714,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403715,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403716,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403717,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403718,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403719,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403720,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403721,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403722,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403723,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403724,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403725,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403728,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false +IN-PIN,403731,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403801,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403803,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,403806,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false +IN-PIN,410101,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410201,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410202,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410203,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410205,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410206,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false +IN-PIN,410207,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410208,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410209,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410210,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410216,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410218,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410220,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410221,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410222,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,410301,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410401,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410402,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410403,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410405,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410406,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410501,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410502,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410503,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410504,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410505,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410506,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410507,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410508,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410509,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410510,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410511,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410512,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410513,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410515,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,410516,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411001,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411006,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411012,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411014,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411015,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411017,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411019,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411020,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411021,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411023,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411024,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411025,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411026,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411027,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411028,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411031,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411033,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411035,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411036,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411038,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411040,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411041,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411043,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411044,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411045,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411046,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411047,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411048,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411051,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411052,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411057,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411058,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411060,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411061,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411062,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411067,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411068,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411069,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411070,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,411073,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412101,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412102,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412103,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412104,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412105,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412106,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412107,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412108,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412109,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412110,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412112,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412115,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412201,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412202,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412203,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412204,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412205,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412206,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412207,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412208,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412209,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412210,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412211,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412212,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412213,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412214,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412215,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412216,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412218,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412219,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412220,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412301,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412303,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412304,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412305,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412306,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412307,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412308,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412311,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412312,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412401,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412402,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412403,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412404,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412405,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412406,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412408,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412409,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412411,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412412,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,412801,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,412802,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,412803,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,412804,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,412805,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,412806,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,413001,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413002,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413004,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413006,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413007,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413008,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413101,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413102,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413103,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413104,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413105,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413106,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413107,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413108,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413109,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413110,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413111,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413112,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413113,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413114,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413115,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413116,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413118,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413120,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413130,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413132,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413133,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,413201,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413202,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413203,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413204,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413205,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413206,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413207,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,413208,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413209,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413210,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413211,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413212,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413213,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413214,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413215,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413216,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413217,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413218,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413219,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413220,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413221,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413222,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413223,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413224,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413226,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413227,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413228,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413229,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,413248,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413249,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,413250,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413251,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413252,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413253,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413255,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413301,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413302,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413303,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413304,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413305,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413306,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413307,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413308,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413309,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413310,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413314,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413315,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413317,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413319,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413322,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413324,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413401,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413402,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413403,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413404,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413405,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413406,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413409,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413410,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413411,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413412,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false +IN-PIN,413502,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413503,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413504,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413505,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413506,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413507,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413508,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413509,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413510,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413511,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413512,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413513,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413514,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413515,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413516,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413517,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413518,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413519,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413520,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413521,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413522,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413523,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413524,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413525,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413526,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413527,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413528,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413529,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413530,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413531,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413532,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413534,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413544,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413581,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413582,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413601,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413602,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413603,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413604,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413605,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413606,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413607,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,413608,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413623,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413624,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false +IN-PIN,413701,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413702,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413703,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413704,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413705,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413706,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413707,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413708,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413709,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413710,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413711,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413712,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413713,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413714,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413715,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413716,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413717,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413718,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413719,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413720,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413721,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413722,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413723,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413725,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413726,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413728,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413736,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413737,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413738,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413739,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,413801,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false +IN-PIN,414001,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414002,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414003,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414005,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414006,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414101,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414102,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414103,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414105,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414106,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414111,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414113,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414201,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414202,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,414203,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,414204,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,414205,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,414208,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,414301,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414302,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414303,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414304,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414305,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414306,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414401,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414402,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414403,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414501,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414502,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414503,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414504,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414505,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414601,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414602,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414603,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414604,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414605,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414606,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414607,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414609,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,414701,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,415001,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415002,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415003,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415004,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415010,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415011,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415012,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415013,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415014,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415015,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415019,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415020,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415021,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415022,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415023,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415101,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,415102,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415103,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415104,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415105,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415106,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415107,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415108,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415109,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415110,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415111,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415112,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415114,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415115,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415116,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415122,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415124,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415202,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415203,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415205,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415206,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415207,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415208,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415209,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415211,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415212,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415213,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false +IN-PIN,415214,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415301,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415302,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415303,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415304,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415305,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415306,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415307,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415308,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415309,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415310,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415311,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415312,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415313,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415315,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415401,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415402,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415403,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415404,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415405,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415406,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415407,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415408,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415409,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415410,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415411,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415412,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415413,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415414,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415415,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,415501,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415502,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415503,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415504,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415505,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415506,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415507,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415508,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415509,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415510,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415511,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415512,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415513,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415514,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415515,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415516,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415517,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415518,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415519,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415520,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415521,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415522,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415523,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415524,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415525,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415526,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415527,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415528,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415530,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415536,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415537,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415538,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415539,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415540,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false +IN-PIN,415601,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415602,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415603,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415604,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415605,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415606,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415607,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415608,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415609,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415610,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415611,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415612,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415613,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415614,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415615,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415616,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415617,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415619,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415620,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415621,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415626,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415628,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415629,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415634,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415637,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415639,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415640,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415641,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415643,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415701,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415702,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415703,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415705,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415706,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415708,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415709,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415710,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415711,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415712,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415713,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415714,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415715,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415716,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415717,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415718,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415719,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415720,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415722,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415724,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415726,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415727,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415728,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415729,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415730,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415801,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415802,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415803,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415804,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415805,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415806,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,415807,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416001,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416004,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416005,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416006,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416010,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416011,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416013,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416101,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416102,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416103,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416104,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416105,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416106,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416107,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416108,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416109,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416110,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416111,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416112,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416113,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416114,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416115,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416118,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416119,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416120,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416121,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416122,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416138,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416143,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416145,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416201,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416202,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416203,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416204,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416205,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416206,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416207,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416208,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416209,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416210,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416211,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416212,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416213,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416214,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416215,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416216,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416218,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416219,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416220,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416221,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416223,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416229,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416230,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416231,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416232,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416234,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416235,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416236,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416301,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416302,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416303,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416304,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416305,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416306,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416307,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416308,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416309,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416310,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416311,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416312,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416313,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416314,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416315,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416316,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416401,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416402,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416403,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416404,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416405,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416406,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416407,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416408,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416409,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416410,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416411,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416412,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416413,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416414,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416415,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416416,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416417,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416418,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416419,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416420,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416436,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false +IN-PIN,416501,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416502,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416503,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416504,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416505,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416506,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416507,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416508,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416509,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416510,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416511,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416512,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416513,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416514,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416515,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416516,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416517,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416518,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416519,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416520,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416521,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416522,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416523,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416524,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416525,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416526,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416527,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416528,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416529,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416531,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416534,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416549,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416550,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416551,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416552,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false +IN-PIN,416601,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416602,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416603,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416604,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416605,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416606,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416608,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416609,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416610,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416611,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416612,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416613,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416614,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416615,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416616,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416620,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416623,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416626,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416628,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416630,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416632,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416701,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416702,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416703,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416704,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416705,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416707,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416709,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416712,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416713,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false +IN-PIN,416801,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416803,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416804,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416805,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416806,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416807,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416810,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416811,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416812,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,416813,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false +IN-PIN,421002,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421101,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421102,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421103,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421201,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421202,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421203,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421204,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421207,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421301,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421302,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421303,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,421305,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421306,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421308,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421311,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421312,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false +IN-PIN,421401,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421402,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421403,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421501,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421502,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421503,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421505,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421506,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421601,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421602,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,421605,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false +IN-PIN,422001,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422003,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422004,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422006,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422007,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422009,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422010,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422013,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422101,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422102,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422103,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422104,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422105,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422112,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422113,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422201,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422202,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422203,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422204,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422205,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422206,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422207,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422208,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422209,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422210,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422211,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422212,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422213,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422214,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422215,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422222,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422301,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422302,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422303,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422304,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422305,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422306,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422308,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422401,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422402,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422403,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422502,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422601,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422602,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422603,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422604,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422605,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422606,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,422608,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422610,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422611,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422620,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,422622,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423101,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423102,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423104,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423105,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423106,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423107,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423108,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423109,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423110,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423111,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423117,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423201,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423202,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423203,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423204,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423205,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423206,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423208,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423212,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423213,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423301,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423302,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423303,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423401,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423402,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423403,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423501,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423502,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,423601,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423602,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423603,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423604,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423605,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423607,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false +IN-PIN,423701,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,423702,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,423703,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,424001,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424002,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424005,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424006,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424101,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424102,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424103,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424104,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424105,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424106,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424107,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424108,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424109,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false +IN-PIN,424119,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424201,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424202,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424203,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424204,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424205,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424206,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424207,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424208,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,424301,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424302,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424303,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424304,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424305,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424306,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424307,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424308,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424309,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424310,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424311,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,424318,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425002,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425003,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425101,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425102,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425103,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425104,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425105,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425107,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425108,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425109,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425110,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425111,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425112,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425113,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425114,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425115,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425116,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425201,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425203,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425301,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425302,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425303,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425304,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425305,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425306,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425307,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425308,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425309,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425310,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425311,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425327,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425401,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425402,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425403,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425404,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425405,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425406,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425407,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425408,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425409,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425410,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425411,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425412,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425413,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425414,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425415,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425416,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425417,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425418,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425419,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425420,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425421,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425422,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425423,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425424,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425426,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425427,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425428,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false +IN-PIN,425432,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425442,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425444,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425452,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false +IN-PIN,425501,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425502,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425503,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425504,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425505,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425506,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425507,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425508,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,425524,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false +IN-PIN,431001,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431002,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431004,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431005,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431006,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431007,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431008,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431010,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431101,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431102,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431103,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431104,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431105,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431107,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431109,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431110,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431111,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431112,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431113,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431114,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431115,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431116,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431117,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431118,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431120,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431121,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431122,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431123,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431124,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431125,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431126,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431127,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431128,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431129,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431130,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431131,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431132,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431133,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431134,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431135,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431136,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431137,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431142,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431143,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431144,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431147,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431148,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431150,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431151,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431152,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431153,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431154,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431202,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false +IN-PIN,431204,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431205,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431206,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431207,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431208,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431209,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431211,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431212,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431213,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431214,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431215,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431401,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431402,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431501,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431502,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431503,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431504,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431505,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431506,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431507,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false +IN-PIN,431508,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431509,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431510,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431511,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431512,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431513,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431514,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431515,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431516,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431517,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431518,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431519,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431521,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431522,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false +IN-PIN,431523,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431530,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false +IN-PIN,431536,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431537,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431540,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431541,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431542,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431601,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431602,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431603,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431604,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431605,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431606,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431701,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431702,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431703,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431704,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431705,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431707,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431708,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431709,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431710,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431711,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431712,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false +IN-PIN,431713,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431714,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431715,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431716,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431717,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431718,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431719,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431720,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false +IN-PIN,431721,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431722,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431723,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431724,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431731,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431736,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431741,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431742,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431743,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431745,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431746,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431750,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431801,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431802,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431803,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431804,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431805,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431806,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431807,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431808,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431809,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431810,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,431811,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false +IN-PIN,440001,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440002,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440003,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440005,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440007,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440008,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440010,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440012,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440013,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440014,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440018,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440022,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440023,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440024,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440025,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440026,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440027,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440030,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440033,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440034,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440035,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440036,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,440037,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441001,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441002,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441101,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441102,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441103,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441104,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441105,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441106,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441107,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441108,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441109,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441110,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441111,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441112,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441113,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441122,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441123,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441201,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441202,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441203,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441204,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441205,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441206,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441207,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,441208,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,441209,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,441210,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441212,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441214,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441215,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441217,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,441221,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441222,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441223,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441224,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441225,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441226,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,441301,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441302,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441303,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441304,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441305,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441306,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441401,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441404,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441501,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441502,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false +IN-PIN,441601,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441614,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441701,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441702,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441801,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441802,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441803,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441804,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441805,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441806,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441807,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +IN-PIN,441809,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441901,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +IN-PIN,441902,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +IN-PIN,441903,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441904,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441905,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441906,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441907,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441908,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441909,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441910,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441911,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +IN-PIN,441912,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441913,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441914,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441915,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,441916,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false +IN-PIN,441924,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false +IN-PIN,442001,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442101,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442102,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442104,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442105,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442106,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442107,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442111,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442201,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442202,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442203,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442301,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442302,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442304,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442305,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442306,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442307,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false +IN-PIN,442401,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442402,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442403,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442404,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442406,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442503,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442504,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442505,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442507,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442603,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442604,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442605,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442606,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442701,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442702,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442703,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442704,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442705,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442707,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442709,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442710,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,442902,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442903,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442904,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442905,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442906,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442907,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442908,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442914,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442916,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442917,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442918,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false +IN-PIN,442919,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false +IN-PIN,443001,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443002,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443101,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443102,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443103,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443104,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443106,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443112,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443201,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443202,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443203,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443204,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443206,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443301,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443302,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443303,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443304,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443308,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443401,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443402,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443403,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,443404,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444001,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444002,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444003,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444004,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444005,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444006,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444101,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444102,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444103,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444104,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444105,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444106,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444107,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444108,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444109,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444110,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444111,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444117,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444126,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444201,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444202,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444203,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444204,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444301,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444302,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444303,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444304,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444306,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444311,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444312,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false +IN-PIN,444401,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444402,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444403,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +IN-PIN,444404,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +IN-PIN,444405,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444407,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444409,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +IN-PIN,444501,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444502,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444503,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444504,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +IN-PIN,444505,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +IN-PIN,444506,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +IN-PIN,444507,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +IN-PIN,444510,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false +IN-PIN,444511,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false +IN-PIN,444602,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444604,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444605,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444606,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444701,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444702,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444704,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444705,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444706,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444707,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444708,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444709,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444710,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444711,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444717,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444719,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444720,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444723,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444801,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444802,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444803,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444804,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444805,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444806,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444807,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444808,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444809,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444810,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444813,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444901,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444902,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444903,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444904,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444905,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444906,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444907,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444908,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,444915,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false +IN-PIN,445001,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445002,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445101,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445102,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445103,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445105,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445106,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445109,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445110,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445201,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445202,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445203,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445204,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445205,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445206,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445207,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445209,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445210,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445211,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445215,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445216,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445230,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445301,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445302,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445303,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445304,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445305,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445306,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445307,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445308,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445324,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445401,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,445402,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false +IN-PIN,450001,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,450051,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450110,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450112,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450114,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450116,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450117,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450119,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450221,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +IN-PIN,450331,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +IN-PIN,450332,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +IN-PIN,450337,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450445,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +IN-PIN,450551,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450554,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450661,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +IN-PIN,450771,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450881,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,450991,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,451001,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451111,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451113,PostalCode,Khargone (West Nimar),LGD,414,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +IN-PIN,451115,PostalCode,Khargone (West Nimar),LGD,414,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +IN-PIN,451220,PostalCode,Khargone (West Nimar),LGD,414,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +IN-PIN,451221,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451224,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451225,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451228,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451331,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +IN-PIN,451332,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false +IN-PIN,451335,PostalCode,Khargone (West Nimar),LGD,414,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false +IN-PIN,451440,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451441,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false +IN-PIN,451442,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451447,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451449,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451551,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451556,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451660,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451666,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451770,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,451881,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false +IN-PIN,452001,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452002,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452003,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452006,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452007,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452010,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452011,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452012,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452015,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452016,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,452020,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453001,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453111,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453112,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453115,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453220,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453331,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453441,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453551,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453552,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453555,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453661,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,453771,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false +IN-PIN,454001,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454010,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454111,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454116,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454221,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454331,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454335,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454441,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454446,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454449,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454552,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454660,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454665,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454773,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454774,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,454775,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false +IN-PIN,455001,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455111,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455115,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455116,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455118,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455221,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455223,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455227,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455332,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455336,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455339,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455440,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,455459,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false +IN-PIN,456001,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456003,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456006,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456010,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456221,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456222,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456224,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456313,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456331,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456335,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456337,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456440,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456441,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +IN-PIN,456443,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456550,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456661,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456664,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456665,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456668,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456770,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456771,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,456776,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false +IN-PIN,457001,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457114,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457118,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457119,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457222,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457226,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457331,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457333,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457336,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457339,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457340,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457441,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457550,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457555,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false +IN-PIN,457661,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +IN-PIN,457770,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +IN-PIN,457772,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +IN-PIN,457773,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +IN-PIN,457775,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +IN-PIN,457777,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +IN-PIN,457779,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false +IN-PIN,457882,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +IN-PIN,457885,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +IN-PIN,457887,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +IN-PIN,457888,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +IN-PIN,457990,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +IN-PIN,457993,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false +IN-PIN,458001,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458002,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458110,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458113,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458116,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458118,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458220,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458226,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458228,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458330,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458336,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458339,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458389,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458441,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458468,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458470,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false +IN-PIN,458553,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458556,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458558,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458664,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458667,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458669,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458771,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458775,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458778,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458880,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458883,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458888,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458895,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,458990,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false +IN-PIN,460001,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460004,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460110,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460220,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460225,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460330,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460440,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460443,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460447,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460449,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460551,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460553,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460554,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460557,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460661,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460663,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460665,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460666,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,460668,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false +IN-PIN,461001,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461005,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461110,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461111,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461115,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461116,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461122,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461221,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461223,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461228,PostalCode,Harda,LGD,408,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +IN-PIN,461331,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,461335,PostalCode,Harda,LGD,408,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +IN-PIN,461441,PostalCode,Harda,LGD,408,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false +IN-PIN,461446,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461551,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461661,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461668,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461771,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461775,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461881,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,461990,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false +IN-PIN,462001,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462010,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462016,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462022,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462023,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462026,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462030,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462036,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462037,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462038,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462039,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462040,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462041,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462042,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462043,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462044,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462045,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462046,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462047,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462101,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,462120,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,463106,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,463111,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,464001,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464111,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464113,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464114,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464220,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464221,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464224,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464226,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464228,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464240,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,464258,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464331,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464334,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464337,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false +IN-PIN,464551,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464570,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464573,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464651,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464661,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464665,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464668,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464671,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464672,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464770,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464774,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464881,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464884,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464886,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464986,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464990,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,464993,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false +IN-PIN,465001,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465106,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465110,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465113,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465116,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465118,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465220,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465223,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465226,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465227,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465230,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +IN-PIN,465333,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465335,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465337,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465339,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false +IN-PIN,465441,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +IN-PIN,465445,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +IN-PIN,465447,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +IN-PIN,465449,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +IN-PIN,465550,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false +IN-PIN,465661,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465667,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465669,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465674,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465677,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465679,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465680,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465683,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465685,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465687,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465689,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465691,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,465693,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,465697,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false +IN-PIN,466001,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466111,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466113,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466114,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466115,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466116,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466118,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466120,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466125,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466221,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466331,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false +IN-PIN,466445,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466446,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466651,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466661,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,466665,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false +IN-PIN,470001,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470002,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470004,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470021,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470051,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470113,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470115,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470117,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470118,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470119,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470120,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470125,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470221,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470223,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470226,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470227,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470228,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470229,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470232,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470235,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470335,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470337,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470339,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470340,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470441,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470442,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470661,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470663,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470664,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470666,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470669,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false +IN-PIN,470672,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470673,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470675,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470771,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470772,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470775,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470880,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,470881,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false +IN-PIN,471001,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471101,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471105,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471111,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471201,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471301,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471311,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471313,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471315,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471318,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471405,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471408,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471411,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471501,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471510,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471515,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471516,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471525,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471606,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,471625,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false +IN-PIN,472001,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +IN-PIN,472005,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +IN-PIN,472010,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +IN-PIN,472101,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +IN-PIN,472111,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,472115,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +IN-PIN,472118,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +IN-PIN,472221,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +IN-PIN,472246,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +IN-PIN,472331,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false +IN-PIN,472336,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +IN-PIN,472337,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +IN-PIN,472339,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +IN-PIN,472442,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +IN-PIN,472445,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +IN-PIN,472447,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false +IN-PIN,473001,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473101,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473105,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473110,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473111,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473113,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473115,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473118,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473222,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473226,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473249,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473287,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false +IN-PIN,473330,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473331,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473332,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473335,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473440,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473443,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473444,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473445,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473446,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false +IN-PIN,473551,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473585,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473660,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473662,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473665,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473770,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473774,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473775,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473781,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473793,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473865,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473880,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473885,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473990,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,473995,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false +IN-PIN,474001,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,474002,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,474003,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,474004,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,474005,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,474006,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,474010,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,474020,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,475001,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,475002,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,475005,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,475110,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,475115,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,475220,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,475330,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false +IN-PIN,475335,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,475336,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,475661,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,475671,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,475673,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,475675,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,475682,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,475685,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,475686,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false +IN-PIN,476001,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476111,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476115,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476134,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476219,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476221,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476224,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476228,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476229,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476332,PostalCode,Sheopur,LGD,431,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +IN-PIN,476335,PostalCode,Sheopur,LGD,431,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +IN-PIN,476337,PostalCode,Sheopur,LGD,431,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +IN-PIN,476339,PostalCode,Sheopur,LGD,431,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false +IN-PIN,476355,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,476444,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,476554,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false +IN-PIN,477001,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477105,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477111,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477116,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477117,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477222,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477227,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477331,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477332,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477333,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477335,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477441,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477445,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477446,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477447,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477449,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477555,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477557,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,477660,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false +IN-PIN,480001,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480003,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480105,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,480106,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,480107,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480108,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480109,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,480110,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480111,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480112,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480115,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480221,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480223,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480224,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480331,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480334,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,480337,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,480338,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,480441,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480449,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480551,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480555,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480557,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480559,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false +IN-PIN,480661,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480667,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480771,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480880,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480881,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480882,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480884,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480886,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480887,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480888,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480990,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480991,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480994,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480996,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480997,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,480999,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false +IN-PIN,481001,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481051,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481102,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481105,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481111,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481115,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481116,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481117,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481222,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481224,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481226,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481331,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481332,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481335,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481337,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481441,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481445,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481449,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481551,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481556,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false +IN-PIN,481661,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481662,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481663,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481664,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481665,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481666,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481668,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481672,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481768,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481771,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481776,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481778,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481879,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481880,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481882,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481883,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481884,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481885,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481990,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481995,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,481996,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false +IN-PIN,481998,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false +IN-PIN,482001,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482002,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482003,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482004,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482005,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482008,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482009,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482010,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482011,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482021,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482051,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,482056,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483001,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483053,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483105,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483110,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483113,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483119,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483220,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483222,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483225,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483330,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483331,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,483332,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483334,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483336,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483440,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,483442,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,483501,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false +IN-PIN,483770,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,483773,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,483775,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,483880,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,483990,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,484001,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +IN-PIN,484110,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +IN-PIN,484113,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484116,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484224,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484330,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484334,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484336,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484440,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484444,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484446,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484447,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484551,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +IN-PIN,484555,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +IN-PIN,484660,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +IN-PIN,484661,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +IN-PIN,484664,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +IN-PIN,484665,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false +IN-PIN,484669,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +IN-PIN,484770,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +IN-PIN,484771,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +IN-PIN,484774,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +IN-PIN,484776,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false +IN-PIN,484881,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484886,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,484887,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false +IN-PIN,485001,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485111,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485112,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485113,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485114,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485115,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,485221,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485226,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485227,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485331,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485334,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485441,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485446,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485447,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485551,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485661,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485666,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false +IN-PIN,485771,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,485772,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,485773,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false +IN-PIN,485774,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,485775,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,485778,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,485881,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486001,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486003,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486005,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486006,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486111,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486114,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486115,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486117,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486123,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486220,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486223,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486226,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486331,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486333,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486335,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486338,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486340,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486341,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false +IN-PIN,486440,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486441,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486445,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486446,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486447,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486448,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486450,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486550,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486553,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486556,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false +IN-PIN,486661,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +IN-PIN,486666,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +IN-PIN,486669,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +IN-PIN,486670,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +IN-PIN,486675,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +IN-PIN,486771,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +IN-PIN,486775,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +IN-PIN,486776,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false +IN-PIN,486881,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +IN-PIN,486882,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +IN-PIN,486884,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +IN-PIN,486886,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +IN-PIN,486887,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +IN-PIN,486889,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +IN-PIN,486890,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false +IN-PIN,487001,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487110,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487114,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487118,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487221,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487225,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487330,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487334,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487337,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487441,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487551,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487555,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487661,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487770,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487771,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487777,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,487881,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false +IN-PIN,488001,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488050,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488059,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488220,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488222,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488333,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488441,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488442,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488443,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488446,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,488448,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false +IN-PIN,490001,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490006,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490011,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490020,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490021,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490022,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490023,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490024,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490025,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,490036,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +IN-PIN,490042,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,491001,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,491107,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,491111,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false +IN-PIN,491221,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491222,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491223,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491225,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491226,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491227,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491228,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491229,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,491230,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491331,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +IN-PIN,491332,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +IN-PIN,491335,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +IN-PIN,491336,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +IN-PIN,491337,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +IN-PIN,491338,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +IN-PIN,491340,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +IN-PIN,491441,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +IN-PIN,491443,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +IN-PIN,491444,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,491445,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,491557,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +IN-PIN,491558,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +IN-PIN,491559,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +IN-PIN,491661,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false +IN-PIN,491665,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491666,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,491668,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,491771,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false +IN-PIN,491881,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,491885,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,491888,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +IN-PIN,491993,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false +IN-PIN,491995,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +IN-PIN,491996,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false +IN-PIN,492001,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,492003,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,492012,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,492013,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,492014,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,492015,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,492018,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,492099,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,492101,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,492109,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,492112,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493101,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493111,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493113,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493114,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,493116,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,493118,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493195,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493196,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493221,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,493222,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,493225,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493228,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493229,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493331,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493332,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493335,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493338,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493344,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493441,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493445,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +IN-PIN,493448,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +IN-PIN,493449,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +IN-PIN,493526,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493551,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false +IN-PIN,493554,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +IN-PIN,493555,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +IN-PIN,493558,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false +IN-PIN,493559,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false +IN-PIN,493661,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493662,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493663,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493770,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493773,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493776,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493778,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493881,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +IN-PIN,493885,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493887,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +IN-PIN,493888,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +IN-PIN,493889,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,493890,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +IN-PIN,493891,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +IN-PIN,493992,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +IN-PIN,493996,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false +IN-PIN,494001,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494010,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494111,PostalCode,Sukma,LGD,642,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +IN-PIN,494114,PostalCode,Sukma,LGD,642,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +IN-PIN,494115,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494122,PostalCode,Sukma,LGD,642,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false +IN-PIN,494221,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494222,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494223,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494224,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494226,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494228,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494229,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494230,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494237,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494331,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494332,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +IN-PIN,494333,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,494334,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,494335,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +IN-PIN,494336,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,494337,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,494347,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false +IN-PIN,494441,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494442,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494444,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +IN-PIN,494446,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +IN-PIN,494447,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +IN-PIN,494448,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +IN-PIN,494449,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false +IN-PIN,494450,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false +IN-PIN,494552,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +IN-PIN,494553,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +IN-PIN,494556,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false +IN-PIN,494635,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494661,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494665,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +IN-PIN,494669,PostalCode,Narayanpur,LGD,637,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false +IN-PIN,494670,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,494771,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +IN-PIN,494776,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false +IN-PIN,494777,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false +IN-PIN,495001,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495003,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495004,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495006,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495009,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495112,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495113,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495115,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495116,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495117,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false +IN-PIN,495118,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false +IN-PIN,495119,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false +IN-PIN,495220,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495222,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495224,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495330,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495334,PostalCode,Mungeli,LGD,647,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false +IN-PIN,495335,PostalCode,Mungeli,LGD,647,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false +IN-PIN,495442,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495444,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495445,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495446,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495447,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495448,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495449,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495450,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495452,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495454,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495455,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495550,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495551,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495552,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495553,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495554,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495555,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495556,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495557,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495559,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495660,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495661,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495663,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495668,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false +IN-PIN,495669,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495671,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495674,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495677,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495682,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495683,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495684,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false +IN-PIN,495686,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495687,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false +IN-PIN,495688,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,495689,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,495690,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,495691,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,495692,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,495695,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,496001,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496005,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496100,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496107,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496108,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496109,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496111,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496113,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496115,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496116,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496118,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496220,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496223,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496224,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496225,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496227,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496242,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496245,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496330,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496331,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496334,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496336,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496338,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false +IN-PIN,496440,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496445,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,496450,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,496551,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,496554,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,496661,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,496665,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false +IN-PIN,497001,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +IN-PIN,497101,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +IN-PIN,497111,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +IN-PIN,497116,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +IN-PIN,497117,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false +IN-PIN,497118,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +IN-PIN,497119,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +IN-PIN,497220,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +IN-PIN,497223,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +IN-PIN,497224,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +IN-PIN,497225,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false +IN-PIN,497226,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +IN-PIN,497229,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +IN-PIN,497231,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +IN-PIN,497235,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +IN-PIN,497331,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +IN-PIN,497333,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false +IN-PIN,497335,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +IN-PIN,497339,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +IN-PIN,497442,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,497447,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,497448,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,497449,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +IN-PIN,497450,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false +IN-PIN,497557,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,497778,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false +IN-PIN,500001,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500002,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500003,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500004,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500005,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500006,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500007,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500008,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500009,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500010,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500011,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500012,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500013,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500014,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500015,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500016,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500017,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500018,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500020,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500026,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500028,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500029,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500030,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500031,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500036,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500037,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500038,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500039,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500043,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500044,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500045,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500047,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500048,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500052,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500053,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500055,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500056,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500058,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500059,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500060,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500061,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500064,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500068,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500070,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500072,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500073,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500075,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500076,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500078,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500080,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500082,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500083,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500085,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500086,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500087,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500088,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500089,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500090,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500091,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500092,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500097,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500098,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500100,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500101,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500102,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,500104,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false +IN-PIN,500112,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,500113,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501101,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501102,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501106,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501111,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501121,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501141,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501142,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501143,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501144,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501158,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501202,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501203,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501218,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501301,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,501302,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,501359,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501401,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false +IN-PIN,501501,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501502,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false +IN-PIN,501503,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501504,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501505,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501506,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501508,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501509,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501510,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,501512,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,502001,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502032,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502101,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502102,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502103,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502107,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502108,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502109,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502110,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502113,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502114,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502115,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502117,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502125,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502130,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502210,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502221,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502228,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502246,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502247,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502248,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502249,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502251,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502255,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502256,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502257,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502267,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502269,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502270,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502271,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502273,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502276,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502277,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502278,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502279,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502280,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502281,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502285,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502286,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,502287,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502290,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502291,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502293,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502294,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502295,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502296,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502300,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502301,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502302,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502303,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502305,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502306,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502307,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502310,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502311,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502312,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502313,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502314,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502316,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502318,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502319,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502321,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502325,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502329,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502331,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502334,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502335,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502336,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,502345,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502371,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false +IN-PIN,502372,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502375,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,502381,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false +IN-PIN,503001,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503003,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503101,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503102,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503108,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503110,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503111,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503112,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503114,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503120,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503122,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503123,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503124,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503125,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503144,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503145,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503164,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503165,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503175,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503180,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503185,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503186,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503187,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503188,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503201,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503202,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503206,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503207,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503212,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503213,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503217,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503218,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503219,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503223,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503224,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503225,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503230,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503235,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503245,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503246,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503301,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503302,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503305,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503306,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503307,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503308,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503309,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503310,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,503311,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false +IN-PIN,503321,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false +IN-PIN,504001,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504002,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504101,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504102,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504103,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504104,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504105,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504106,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504109,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504110,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504201,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504202,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504203,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504204,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504205,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504206,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504207,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504209,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504214,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504215,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504216,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504218,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504219,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504220,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504231,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504251,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504272,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504273,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504292,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504293,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504294,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504295,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504296,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504297,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504299,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false +IN-PIN,504301,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504302,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false +IN-PIN,504304,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504306,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504307,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504308,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504309,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504310,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false +IN-PIN,504311,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504312,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504313,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504323,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,504346,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false +IN-PIN,505001,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505101,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,505102,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,505122,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,505129,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505152,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505153,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505162,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505172,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505174,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505184,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,505185,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505186,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505187,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505188,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505208,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505209,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505212,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505301,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505302,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505303,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505304,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505305,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505306,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505307,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505325,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505326,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505327,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505330,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505331,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505401,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505402,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505403,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505404,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505405,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505415,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505416,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505425,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505445,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505450,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505451,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505452,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505453,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505454,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505455,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505460,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505462,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505466,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,505467,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505468,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505469,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505470,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505471,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,505472,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505473,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,505474,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505475,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505476,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,505480,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,505481,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505490,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505497,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,505498,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,505501,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505502,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505503,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,505504,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,505505,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505514,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505524,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505525,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false +IN-PIN,505526,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505527,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505528,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false +IN-PIN,505529,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505530,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false +IN-PIN,505531,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,505532,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false +IN-PIN,506001,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506002,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506003,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506005,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506006,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506007,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506008,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506009,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506015,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506101,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506102,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506103,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506104,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506105,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506112,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506122,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506132,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506134,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506135,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506142,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506143,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506144,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506145,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506146,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506151,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506163,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506164,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506165,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +IN-PIN,506166,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506167,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506168,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,506169,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,506170,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,506172,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +IN-PIN,506175,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506201,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506221,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506222,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506223,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506224,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506244,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506252,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506301,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506302,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506303,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506310,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506313,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506314,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506315,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506316,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506317,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506318,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506319,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506324,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506329,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506330,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506331,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506332,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506333,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506342,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506343,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +IN-PIN,506344,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +IN-PIN,506345,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,506347,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +IN-PIN,506348,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,506349,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506350,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506352,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +IN-PIN,506355,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false +IN-PIN,506356,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false +IN-PIN,506365,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506366,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506367,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false +IN-PIN,506368,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506369,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false +IN-PIN,506370,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506371,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,506381,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,506391,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false +IN-PIN,507002,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507003,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507101,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507111,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507112,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507114,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507115,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507116,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507117,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507118,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507120,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507122,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507123,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507124,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507126,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507127,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507128,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507133,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507136,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false +IN-PIN,507137,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507140,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507157,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507158,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507159,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507160,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507161,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507163,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507164,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507165,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507166,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507167,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507168,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507169,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507170,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507171,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507182,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507183,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507201,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507202,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507203,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507204,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507208,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507209,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507210,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507211,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false +IN-PIN,507301,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507302,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507303,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507304,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507305,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,507306,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507315,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507316,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false +IN-PIN,507318,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false +IN-PIN,508001,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508002,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508004,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508101,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508105,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508111,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508112,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508113,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508114,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508115,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508116,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508117,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508126,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508201,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508202,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508204,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508205,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508206,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508207,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508208,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508210,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508211,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508212,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508213,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508214,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508217,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508218,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508221,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508223,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508224,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508233,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508234,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508238,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508243,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508244,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508245,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508246,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508247,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508248,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508250,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508252,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508253,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508254,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508255,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508256,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508257,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508258,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508266,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508277,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508278,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508279,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508280,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false +IN-PIN,508284,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508285,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508286,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false +IN-PIN,508355,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508373,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508374,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508376,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,508377,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false +IN-PIN,509002,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509102,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509104,PostalCode,Wanaparthy,LGD,693,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +IN-PIN,509105,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509106,PostalCode,Wanaparthy,LGD,693,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +IN-PIN,509110,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509120,PostalCode,Wanaparthy,LGD,693,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false +IN-PIN,509125,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509126,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509127,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509128,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509129,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509130,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509131,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509132,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509133,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509135,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509152,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509153,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false +IN-PIN,509201,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509202,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509203,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509204,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509205,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509206,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509207,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509208,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509209,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509210,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509215,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509216,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509217,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509219,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509228,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509235,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509301,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509302,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509311,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509320,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509321,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509324,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509325,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509326,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509327,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509334,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509335,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509336,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509337,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509338,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509339,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509340,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509349,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509350,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509351,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509352,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509353,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509357,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509358,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509360,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509371,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509375,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509376,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509380,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509381,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509382,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509385,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509401,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,509406,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509407,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509408,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509409,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false +IN-PIN,509410,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false +IN-PIN,509411,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false +IN-PIN,509412,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false +IN-PIN,515001,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515002,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515004,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515101,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515110,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515122,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515123,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515124,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515133,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515134,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515144,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515154,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515159,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515164,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515201,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515202,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515211,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515212,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515231,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515241,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515261,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515271,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515281,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515286,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515291,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515301,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515303,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515305,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515311,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515321,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515331,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515341,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515401,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515402,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515405,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515408,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515411,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515413,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515414,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515415,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515425,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515435,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515445,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515455,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515465,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515501,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515511,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515521,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515531,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515541,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515551,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515556,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515561,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515571,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515581,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515591,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515601,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515611,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515621,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515631,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515641,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515651,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515661,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515672,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,515701,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515711,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515721,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515722,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515731,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515741,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515751,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515761,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515763,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515765,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515766,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515767,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515774,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515775,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515787,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515803,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515812,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515822,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515832,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515842,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515863,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515865,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515867,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515870,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515871,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,515872,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,516001,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516003,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516101,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516104,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516107,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516108,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516115,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516127,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516128,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516130,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516150,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516151,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516162,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516172,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516173,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516175,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516193,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516203,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516213,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516215,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516216,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516217,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516218,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516227,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516228,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516233,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516247,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516267,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516268,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516269,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516289,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516293,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516309,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516310,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516312,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516321,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516329,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516330,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516339,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516349,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516350,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516355,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516356,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516359,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516360,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516361,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516362,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516380,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516390,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516391,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516396,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516401,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516411,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516421,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516431,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516432,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516433,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516434,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516439,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516444,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516454,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516464,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false +IN-PIN,516474,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516484,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516501,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516502,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516503,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false +IN-PIN,516504,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,516505,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517001,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517002,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517101,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517102,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517112,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517113,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517123,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517124,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517125,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517126,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517127,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517128,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517129,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517130,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517131,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517132,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517152,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517167,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517172,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517192,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517193,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517194,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517213,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517214,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517234,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517235,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517236,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517237,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517247,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517257,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517277,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517280,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517291,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517297,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517299,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517305,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517319,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517326,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517350,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517370,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517390,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517391,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517401,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517403,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517408,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517415,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517416,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517417,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517418,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517422,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517423,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517424,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517425,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517426,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517429,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517432,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517502,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517503,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517504,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517505,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517506,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517507,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517520,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517526,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517536,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517541,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517551,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517561,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517569,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517571,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517581,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517582,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517583,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517584,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517586,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517587,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517588,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517589,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517590,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517591,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517592,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517599,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false +IN-PIN,517619,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517620,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517640,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517641,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517642,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517643,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517644,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517645,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,517646,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518001,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518002,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518003,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518004,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518007,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518010,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518101,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518102,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518112,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518122,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518123,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518124,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518134,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518135,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518145,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518155,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518165,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518166,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518176,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518186,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518196,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518206,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518216,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518217,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518218,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518220,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518221,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518222,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518225,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518301,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518302,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518308,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518313,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518323,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518333,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518343,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518344,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518345,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518346,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518347,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518348,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518349,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518350,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518360,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518380,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518385,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518390,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518395,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518396,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518401,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518405,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518411,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518412,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518422,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518432,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518442,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518452,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518462,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518463,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518464,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518465,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518466,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518467,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518468,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false +IN-PIN,518502,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518508,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518510,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518511,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518512,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518513,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518523,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518533,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518543,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518553,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518563,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518573,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518583,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518593,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518594,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518598,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518599,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,518674,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,520001,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,520004,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,520007,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,520008,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,520010,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,520011,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,520012,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,520015,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521002,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521003,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521004,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521101,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521102,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521104,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521105,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521106,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521107,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521108,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521109,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521110,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521111,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521120,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521121,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521122,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521125,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521126,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521130,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521131,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521132,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521133,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521134,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521135,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521136,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521137,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521138,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521139,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521148,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521149,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521150,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521151,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521153,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521156,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521157,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521158,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521162,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521163,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521164,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521165,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521170,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521175,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521178,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521180,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521181,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521182,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521183,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521184,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521185,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521190,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521202,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521207,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521211,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521212,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521213,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521214,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521215,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521225,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521226,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521227,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521228,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521229,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521230,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521231,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521235,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521241,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521245,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521246,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521247,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521250,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521256,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521260,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521261,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521263,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521286,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521301,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521311,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521312,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521321,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521322,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521323,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521324,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521325,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521326,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521327,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521328,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521329,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521330,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521331,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521332,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521333,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521340,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521343,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521344,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521345,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521356,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521366,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521369,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521390,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,521401,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521402,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521403,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521456,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,521457,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522001,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522003,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522005,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522007,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522009,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522015,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522016,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522017,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522018,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522019,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522020,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522034,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522101,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522102,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522111,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522112,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522113,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522124,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522201,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522202,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522211,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522212,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522213,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522233,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522234,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522235,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522236,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522237,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522240,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522256,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522257,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522258,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522259,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522261,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522262,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522264,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522265,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522268,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522301,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522302,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522303,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522304,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522305,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522306,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522307,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522308,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522309,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522310,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522311,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522312,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522313,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522314,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522315,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522316,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522317,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522318,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522324,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522325,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522329,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522330,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522341,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522401,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522402,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522403,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522408,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522409,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522410,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522411,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522412,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522413,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522414,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522415,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522421,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522426,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522435,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522436,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522437,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522438,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522501,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522502,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522503,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522508,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522509,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522529,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522549,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522603,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false +IN-PIN,522611,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522612,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522613,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522614,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522615,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522616,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522617,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522619,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522626,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522646,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522647,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522649,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522657,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522658,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522659,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522660,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522661,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,522663,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523001,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523101,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523104,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523105,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523108,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523109,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523110,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523111,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523112,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523113,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523114,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523115,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523116,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523117,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523135,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523157,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523165,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523167,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523168,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523169,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523170,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523171,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523180,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523181,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523182,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523183,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523184,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523185,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523186,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523187,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523190,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523201,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523211,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523212,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523213,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523214,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523223,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523224,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523225,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523226,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523227,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523228,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523230,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523240,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523241,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523245,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523246,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523247,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523252,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523253,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523254,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523260,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523261,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523262,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523263,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523264,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523265,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523270,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523271,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523272,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523273,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523274,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523279,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523280,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523281,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523286,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523291,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523292,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523301,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523302,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523303,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523304,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false +IN-PIN,523305,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523315,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523320,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523326,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523327,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523328,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523329,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523330,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523331,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523332,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523333,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523334,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523335,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523336,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523346,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523356,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523357,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523367,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523368,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523369,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523370,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523371,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523372,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,523373,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524001,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524002,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524003,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524004,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524101,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524121,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524123,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524124,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524126,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524127,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524129,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524131,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524132,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524134,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524137,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524142,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524152,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524201,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524203,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524221,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524222,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524223,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524224,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524225,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524226,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524227,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524228,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524230,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524234,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524236,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524239,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524240,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524302,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524303,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524304,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524305,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524306,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524307,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524308,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524309,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524310,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524311,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524312,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524313,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524314,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524315,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524316,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524317,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524318,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524320,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524321,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524322,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524323,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524324,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524341,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524342,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524343,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524344,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524345,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524346,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524366,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524401,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524402,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524403,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524404,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524405,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524406,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524407,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524408,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524409,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524410,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524411,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524412,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524413,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524414,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false +IN-PIN,524415,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,524421,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,530003,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530004,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530005,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530008,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530011,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530012,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530013,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530016,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530018,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530022,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530026,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530027,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530028,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530031,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530040,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530041,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530044,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530045,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530046,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,530047,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530048,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530049,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,530051,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530052,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,530053,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531001,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531002,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531011,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531019,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531020,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531021,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531022,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531023,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531024,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531025,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531026,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531027,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531028,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531029,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531030,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531031,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531032,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531033,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531034,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531035,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531036,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531040,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531055,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531060,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531061,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531075,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531077,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531081,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531082,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531083,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531084,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531085,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531087,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531111,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531113,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531114,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531115,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531116,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531117,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531118,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531126,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531127,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531133,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531149,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531151,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531162,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,531163,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,531173,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,531219,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,532001,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532005,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532122,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,532123,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,532127,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532148,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532168,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532185,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532186,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532187,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532190,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532195,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532201,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532203,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532204,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532211,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532212,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532213,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532214,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532215,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532216,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532218,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532219,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532220,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532221,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532222,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532242,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532243,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532263,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532264,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532284,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532290,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532291,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532292,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532312,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532322,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532401,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532402,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532403,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532404,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532405,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532406,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532407,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532408,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532409,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532410,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532421,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532425,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532426,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532427,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532428,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532429,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532430,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532432,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532440,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,532443,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,532445,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532455,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,532456,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,532457,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532458,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,532459,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532460,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,532461,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,532462,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,532474,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,532484,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,533002,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533004,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533005,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533006,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533016,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533101,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533102,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533103,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533105,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533107,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533124,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533125,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533126,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533201,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533210,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533211,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533212,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533213,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533214,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533215,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533216,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533217,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533218,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533220,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533221,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533222,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533223,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533228,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533229,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533232,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533233,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533234,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533235,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533236,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533237,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533238,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533239,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533240,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533241,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533242,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533244,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533247,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533248,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533249,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533250,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533251,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533252,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533253,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533254,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533256,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533260,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533261,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533262,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533263,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533264,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533274,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533284,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533285,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533286,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533287,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533288,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533289,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533290,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533291,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533292,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533293,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533294,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533295,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533296,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533297,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533305,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533306,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533307,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533308,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533309,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533340,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533341,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533342,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533343,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533344,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533345,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533346,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533347,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533348,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533349,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533350,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533351,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533352,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533354,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533355,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533401,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533406,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533407,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533408,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533428,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533429,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533430,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533431,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533432,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533433,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533434,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533435,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533436,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533437,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,533440,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533444,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533445,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533446,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533447,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533448,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533449,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533450,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533451,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533461,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533462,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533463,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533464,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533468,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533483,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,533577,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534002,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534003,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534004,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534005,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534007,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534101,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534102,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534111,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534112,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534122,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534123,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534124,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534126,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534134,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534145,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534146,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534156,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534165,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534166,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534176,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534186,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534195,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534196,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534197,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534198,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534199,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534201,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534202,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534204,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534206,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534207,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534208,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534209,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534210,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534211,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534216,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534217,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534218,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534222,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534225,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534227,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534230,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534235,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534236,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534237,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534238,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534239,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534240,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534243,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534244,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534245,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534247,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534250,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534265,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534266,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534267,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534268,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534269,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534275,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534280,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534281,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false +IN-PIN,534301,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534302,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534305,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534311,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534312,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534313,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534315,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534316,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534318,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534320,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534324,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534326,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534327,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534328,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534329,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534330,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534331,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534338,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false +IN-PIN,534340,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534341,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534342,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534350,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534401,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534406,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534411,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534416,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534425,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534426,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534427,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534432,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534435,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534437,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534442,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534444,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534447,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534448,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534449,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534450,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534451,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false +IN-PIN,534452,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534455,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534456,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534460,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534461,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534462,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534467,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,534475,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535001,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535003,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535004,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535005,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false +IN-PIN,535006,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535101,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535102,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535124,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535125,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false +IN-PIN,535126,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535128,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535145,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535148,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535160,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535161,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535183,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535204,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535213,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535214,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535215,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535216,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535217,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535218,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535220,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535221,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535240,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535250,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535260,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535270,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535273,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535280,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535281,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535463,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535501,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535502,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535521,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535522,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535523,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535524,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535525,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535526,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535527,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535534,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535546,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535547,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535557,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535558,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535559,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535568,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535573,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535578,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535579,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535580,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535581,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535582,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false +IN-PIN,535591,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535592,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535593,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,535594,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false +IN-PIN,560003,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560004,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560008,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,560010,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560012,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560013,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560015,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560022,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560023,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560026,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560027,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560029,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560030,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560032,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560034,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560035,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560040,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560041,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560050,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560054,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560056,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560057,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560058,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560060,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560061,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560062,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560064,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,560068,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560070,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560072,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560073,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560074,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560076,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560078,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560079,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560081,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560082,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560083,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,560085,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560088,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560089,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560090,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560091,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560095,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560098,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560099,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560100,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560102,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560105,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,560107,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,560108,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560109,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560110,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560111,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560112,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560114,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,560116,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false +IN-PIN,561101,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,561201,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,561202,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,561203,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,561206,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,561207,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,561208,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,561209,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,561210,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,561211,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,561212,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,561213,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,562101,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,562102,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,562103,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,562104,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,562108,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562109,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562112,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562117,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562119,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562120,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,562121,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562126,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562127,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,562128,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562131,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false +IN-PIN,562138,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562159,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562160,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,562161,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,563101,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563113,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563114,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563116,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563117,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563123,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,563124,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,563125,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,563126,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563127,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563128,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,563129,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563130,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563131,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563132,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563133,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563134,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563135,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563136,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563137,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563138,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563139,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563146,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,563159,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false +IN-PIN,563161,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,563162,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false +IN-PIN,570003,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,570008,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,570010,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,570018,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,570019,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,570026,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,570028,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,570030,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,570033,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571101,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571102,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571103,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571104,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571105,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571106,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571107,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571108,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571109,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571110,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571111,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571114,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571115,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571116,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571117,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571118,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571119,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571120,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571121,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571122,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571123,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571124,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571125,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571126,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571127,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571128,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571129,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571130,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571134,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571187,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571189,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571201,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571211,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571212,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571213,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571214,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571215,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571216,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571217,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571218,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571219,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571231,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571232,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571234,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571235,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571236,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571237,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571247,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571248,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571249,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571250,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571251,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571252,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571253,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571254,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false +IN-PIN,571301,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571302,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571311,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571312,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571313,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571314,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571315,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571316,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571320,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571342,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571401,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571402,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571403,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571404,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571405,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571415,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571416,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571417,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571418,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571419,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571421,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571422,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571423,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571424,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571425,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571426,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571427,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571428,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571429,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,571430,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571431,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571432,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571433,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false +IN-PIN,571434,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571435,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571436,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571438,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571439,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571440,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571441,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571442,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571443,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571444,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571445,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571446,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571448,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571450,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571455,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571457,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571463,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571475,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571476,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571477,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571478,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571490,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false +IN-PIN,571601,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571602,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571603,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571604,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571605,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571606,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571607,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571610,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571617,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false +IN-PIN,571802,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571807,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571811,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,571812,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false +IN-PIN,572101,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572102,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572103,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572104,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572105,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572106,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572107,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572111,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572112,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572113,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572114,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572115,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572116,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572117,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572118,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572119,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572120,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572121,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572122,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572123,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572124,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572125,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572126,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572127,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572128,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572129,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572130,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572132,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572133,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572134,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572135,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572136,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572137,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572138,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572139,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572140,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572141,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572142,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572168,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572175,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572201,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572211,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572212,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572213,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572214,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572215,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572216,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572217,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572218,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572219,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572220,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572221,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572222,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572223,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572224,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572225,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572226,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572227,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,572228,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false +IN-PIN,573101,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573102,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573103,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573111,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573112,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573113,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573115,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573116,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573117,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573118,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573119,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573120,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573121,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573122,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573123,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573124,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573125,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573126,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573127,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573128,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573129,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573130,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573131,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573133,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573134,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573135,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573136,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573137,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573141,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573142,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573144,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573162,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573164,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573165,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573201,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573202,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573210,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573211,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573212,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573213,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573214,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573215,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573216,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573217,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573218,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573219,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573220,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573225,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,573226,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false +IN-PIN,574101,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574102,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574103,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574104,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574105,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574106,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574107,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574108,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574109,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574110,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574111,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574112,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574113,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574114,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574115,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574116,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574117,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574118,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574119,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574122,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574129,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574141,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574142,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574143,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574144,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574145,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574146,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574148,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574150,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574151,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574153,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574154,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574197,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574198,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574199,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574201,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574202,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574203,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574210,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574211,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574212,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574213,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574214,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574216,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574217,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574218,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574219,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574220,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574221,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574222,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574223,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574224,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574225,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574226,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574227,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574228,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574229,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574230,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574231,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574232,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574233,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574234,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574235,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574236,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574237,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574238,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574239,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574240,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574241,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574242,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574243,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574244,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,574248,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574253,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574259,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574260,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574265,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574267,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574274,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574279,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574285,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574313,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574314,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574323,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574324,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574325,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574326,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574327,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574328,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,574509,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575001,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575002,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575003,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575004,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575005,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575006,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575007,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575008,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575009,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575010,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575011,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575013,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575014,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575015,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575017,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575018,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575019,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575020,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575022,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575023,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575028,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575029,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,575030,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false +IN-PIN,576102,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576103,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576105,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576106,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576107,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576111,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576112,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576113,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576114,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576115,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576117,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576120,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576121,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576122,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576124,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576201,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576210,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576211,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576212,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576213,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576214,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576215,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576216,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576217,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576218,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576219,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576220,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576221,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576222,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576223,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576224,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576225,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576226,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576227,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576228,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576229,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576230,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576231,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576232,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576233,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576234,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576235,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576247,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576257,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576282,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,576283,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false +IN-PIN,577001,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577002,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577003,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577004,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577005,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577006,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577007,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577008,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577101,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577102,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577111,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577112,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577113,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577114,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577115,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577116,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577117,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577120,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577121,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577122,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577123,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577124,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577125,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577126,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577127,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577128,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577129,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577130,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577131,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577132,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577133,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577134,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577135,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577136,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577138,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577139,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577140,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577144,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577145,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577146,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577160,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577168,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577175,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577179,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577180,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577181,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577182,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577201,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577202,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577203,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577204,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577205,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577211,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577213,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577214,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577215,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577216,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577217,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577218,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577219,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577220,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577221,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577222,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577223,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577224,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577225,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577226,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577227,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577228,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577229,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577230,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577231,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577232,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577233,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577243,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577245,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577301,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577302,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577401,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577411,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577412,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577413,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577414,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577415,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577416,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577417,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577418,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577419,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577421,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577422,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577423,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577424,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577425,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577426,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577427,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577428,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577429,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577430,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577431,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577432,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577433,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577434,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577435,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577436,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577451,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577452,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577453,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false +IN-PIN,577501,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577502,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577511,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577512,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577513,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577514,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577515,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577516,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577517,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577518,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577519,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577520,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577521,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577522,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577523,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577524,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577525,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577526,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577527,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577528,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577529,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577530,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577531,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577532,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577533,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577534,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577535,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577536,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577537,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577538,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577539,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577540,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577541,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577542,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577543,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577544,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577545,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577546,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577547,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577548,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577549,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577550,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false +IN-PIN,577551,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577552,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577553,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577554,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577555,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577556,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577557,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577558,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577566,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577589,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,577596,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577597,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577598,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577599,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false +IN-PIN,577601,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,580001,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580005,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580006,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580007,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580008,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580009,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580011,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580021,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580023,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580024,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580025,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580026,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580027,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580028,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580030,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580031,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580112,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580114,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,580118,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581101,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581102,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581103,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581104,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581105,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581106,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581107,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581108,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581109,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581110,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581111,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581112,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581113,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581115,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581116,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581117,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581118,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581119,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false +IN-PIN,581120,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581121,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581123,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581126,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581128,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581129,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581145,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581148,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581186,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581187,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581193,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581195,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581196,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581197,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581198,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581199,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581201,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581202,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581203,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581204,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581205,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581206,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581207,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581208,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581209,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,581210,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581211,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581212,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581213,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,581301,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581302,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581303,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581304,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581306,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581307,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581308,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581314,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581315,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581316,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581317,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581318,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581319,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581320,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581321,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581322,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581323,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581324,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581325,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581326,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581327,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581328,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581329,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581330,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581331,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581332,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581333,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581334,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581335,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581336,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581337,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581338,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581339,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581340,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581341,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581342,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581343,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581344,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581345,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581346,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581347,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581348,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581349,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581350,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581351,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581352,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581353,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581354,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581355,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581356,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581357,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581358,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581359,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581360,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581361,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581362,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581363,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581365,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581384,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581396,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581400,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581402,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581403,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581411,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581412,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581421,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581423,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581440,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581450,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,581453,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false +IN-PIN,582102,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582103,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582111,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582112,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582113,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582114,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582115,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582116,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582117,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582118,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582119,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582120,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582201,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,582202,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582203,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582204,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582205,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582206,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582207,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582208,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false +IN-PIN,582209,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582210,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,582211,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false +IN-PIN,583101,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583102,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583103,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583104,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583111,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583112,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583113,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583114,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583115,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583116,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583117,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583118,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583119,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583120,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583121,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583122,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583123,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583124,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583125,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583126,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583127,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583128,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583129,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583130,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583131,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583132,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583134,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583135,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583136,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583137,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583152,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583154,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583155,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583201,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false +IN-PIN,583211,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583212,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583213,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583214,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583216,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583217,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false +IN-PIN,583218,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583219,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583220,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583221,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583222,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583223,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583224,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583226,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583227,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583228,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583229,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583230,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583231,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583232,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583233,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583234,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583235,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583236,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583237,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583238,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583239,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false +IN-PIN,583268,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583277,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583278,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583279,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583280,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583281,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583282,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583283,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583284,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583285,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583286,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583287,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,583288,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false +IN-PIN,584102,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584103,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584104,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584111,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584113,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584115,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584116,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584118,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584120,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584122,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584123,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584124,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584125,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584126,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584127,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584128,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584129,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584132,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584133,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584134,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584135,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584136,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584138,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584139,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584140,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584143,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584167,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584170,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584202,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,584203,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false +IN-PIN,585102,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585103,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585104,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585105,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585106,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585107,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585202,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585210,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585211,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585212,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585213,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585214,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585215,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585216,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585217,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585218,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585219,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585220,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585221,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585222,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585223,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585224,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585225,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585226,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585227,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585228,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585236,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585237,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585265,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585287,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585290,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585291,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585292,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585301,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585302,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585303,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585304,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585305,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585306,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585307,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585308,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585309,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585310,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585311,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585312,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585313,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585314,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585315,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585316,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585317,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585318,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585319,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585320,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585321,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585322,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585323,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585324,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585325,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false +IN-PIN,585326,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585327,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585328,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585329,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585330,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585331,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585353,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585355,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false +IN-PIN,585401,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585402,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585403,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585404,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585411,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585412,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585413,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585414,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585416,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585417,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585418,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585419,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585421,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585436,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585437,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585443,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585444,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585445,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585446,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585447,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,585448,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false +IN-PIN,586103,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586104,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586108,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586109,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586111,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586112,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586113,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586114,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586115,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586116,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586117,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586118,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586119,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586120,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586121,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586122,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586123,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586124,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586125,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586127,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586128,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586129,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586130,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586170,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586201,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586202,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586203,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586204,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586205,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586206,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586207,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586208,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586209,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586210,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586211,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586212,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586213,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586214,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586215,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586216,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,586217,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false +IN-PIN,587102,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587103,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587104,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587111,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587112,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587113,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587114,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587115,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587116,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587117,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587118,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587119,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587120,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587121,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587122,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587124,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587125,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587154,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587155,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587156,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587157,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587201,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587202,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587203,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587204,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587205,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587206,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587207,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587301,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587311,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587312,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587313,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587314,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587315,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587316,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587330,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,587331,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false +IN-PIN,590001,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590003,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590005,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590008,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590010,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590014,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590015,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590016,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590018,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,590020,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591101,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591102,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591103,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591104,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591106,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591107,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591108,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591109,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591110,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591111,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591112,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591113,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591114,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591115,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591117,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591118,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591119,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591120,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591121,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591122,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591123,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591124,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591125,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591126,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591127,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591128,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591129,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591130,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591131,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591136,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591143,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591147,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591156,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591173,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591201,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591211,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591212,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591213,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591214,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591215,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591216,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591217,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591218,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591219,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591220,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591221,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591222,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591223,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591224,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591225,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591226,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591227,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591228,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591229,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591230,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591231,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591232,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591233,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591234,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591235,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591236,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591237,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591238,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591239,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591240,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591241,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591242,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591243,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591244,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591246,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591247,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591248,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591254,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591263,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591265,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591287,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591301,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591302,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591303,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591304,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591305,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591306,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591309,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591310,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591311,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591312,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591313,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591315,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591316,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591317,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591340,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591344,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591345,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,591346,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false +IN-PIN,600001,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600003,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600004,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600005,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600006,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600007,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600008,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600011,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600014,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600015,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600016,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600017,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600019,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600020,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600021,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600023,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600024,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600030,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600032,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600033,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600037,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600040,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600041,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600042,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600043,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600044,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600045,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600047,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600048,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600049,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600050,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600051,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600052,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600053,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600054,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600055,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600056,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,600057,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600058,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600060,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600061,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600062,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600063,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600064,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600066,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600067,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600068,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600069,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,600070,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600071,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600072,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600073,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600074,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600075,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600076,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600077,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600078,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600081,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600084,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600085,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600086,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600087,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600088,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600089,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600090,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600091,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600092,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600093,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600094,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600095,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600096,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600097,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600099,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600100,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600103,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600106,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600107,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600113,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600115,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600116,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600118,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600119,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600120,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600122,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,600123,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600124,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,600125,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false +IN-PIN,600126,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600127,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600128,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,600129,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600130,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600131,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,600132,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,601101,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601102,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601103,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601201,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601202,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601203,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601204,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601205,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601206,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,601301,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,602001,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,602002,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,602003,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,602021,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,602023,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,602024,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,602025,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,602026,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,602105,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,602106,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,602108,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,602117,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,603001,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603002,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603003,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603101,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603102,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603103,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603104,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603105,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603106,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603107,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603108,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603109,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603110,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603111,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603112,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603201,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603202,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603203,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603204,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603209,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603210,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603301,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603302,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603303,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603304,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603305,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603306,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603307,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603308,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603309,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603310,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603311,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603312,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603313,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603314,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603319,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603401,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603402,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,603403,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,603405,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,603406,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,604001,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604101,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604102,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604151,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604152,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604153,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604154,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604201,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604202,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604203,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604204,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604205,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604206,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604207,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604208,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604210,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604301,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604302,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604303,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false +IN-PIN,604304,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604305,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604306,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604307,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,604401,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604402,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604403,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604404,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604405,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604406,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604407,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,604408,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604409,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604410,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604501,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604502,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604503,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604504,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604505,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,604601,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,605001,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605004,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605006,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605007,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605008,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605009,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605010,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605013,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605014,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605102,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605103,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605104,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605105,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605106,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605107,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605108,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605109,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605110,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605111,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605201,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605202,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605203,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605301,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605302,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605401,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605402,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605403,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605501,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605502,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,605601,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605602,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605651,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605652,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605701,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605702,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605751,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605752,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605754,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605755,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605756,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605757,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605758,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,605759,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605766,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605801,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605802,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,605803,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606001,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606003,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606102,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606103,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606104,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606105,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606106,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606107,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606108,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606109,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606110,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606111,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606115,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606201,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606202,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606203,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606204,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606205,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606206,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606207,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606208,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606209,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606213,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606301,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606302,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606303,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606304,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606305,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,606401,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606402,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,606601,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606603,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606604,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606611,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606701,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606702,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606703,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606704,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606705,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606706,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606707,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606708,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606709,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606710,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606751,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606752,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606753,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606754,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606755,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606801,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606802,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606803,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606804,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606805,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606806,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606807,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606808,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606811,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606901,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606902,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606903,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606904,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606905,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606906,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606907,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,606908,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,607001,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607002,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607003,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607004,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607005,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607006,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607101,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607102,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607103,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607104,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607105,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607106,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607107,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,607108,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607109,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607112,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607201,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,607202,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,607203,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false +IN-PIN,607204,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,607205,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607209,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false +IN-PIN,607301,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607302,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607303,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607308,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607401,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607402,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,607403,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,607801,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607802,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607803,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607804,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607805,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,607807,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608001,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608002,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608102,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608201,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608301,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608302,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608303,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608304,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608305,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608306,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608401,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608501,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608502,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608601,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608602,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608701,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608702,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608703,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,608704,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608801,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false +IN-PIN,608901,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,609001,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609003,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609101,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609102,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609103,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609104,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609105,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609106,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609107,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609108,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609109,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609110,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609111,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609112,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609113,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609114,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609115,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609116,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609117,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609118,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609201,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609202,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609203,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609204,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609205,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609301,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609302,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609303,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609304,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609305,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609306,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609307,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609308,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609309,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609310,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609311,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609312,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609313,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609314,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609401,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609402,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609403,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609404,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609405,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,609501,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609502,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,609503,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,609504,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,609601,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,609602,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,609603,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,609604,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,609605,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,609606,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,609607,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,609608,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,609609,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,609701,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,609702,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,609703,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,609704,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,609801,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609802,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,609803,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609804,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,609805,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609806,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609807,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,609808,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609810,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,609811,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,610001,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610003,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610004,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610005,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,610101,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,610102,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610103,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610104,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610105,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610106,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,610107,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,610109,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610201,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,610202,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610203,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,610204,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,610205,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610206,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,610207,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611001,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611002,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false +IN-PIN,611003,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611101,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611102,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611103,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611104,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611105,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611106,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611108,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611109,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611110,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611111,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,611112,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,612001,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612002,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612101,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612102,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612103,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612104,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612105,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612106,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612201,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,612202,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612203,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false +IN-PIN,612204,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612301,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612302,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612303,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612401,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612402,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612501,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612502,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612503,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612504,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612601,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,612602,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612603,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,612604,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612605,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612610,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612701,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612702,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612703,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612801,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612802,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,612803,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,612804,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,612901,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,612902,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,612903,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,612904,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,612905,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,612906,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,613001,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613002,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613003,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613004,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613005,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613006,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613010,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613101,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613102,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613103,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613104,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613105,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613201,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613202,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613203,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613204,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613205,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613301,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,613303,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613401,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613402,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613403,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613501,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613502,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613503,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613504,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613601,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613602,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,613701,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,613702,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,613703,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,613704,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,613705,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614001,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614013,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614014,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614015,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614016,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614017,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614018,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614019,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614020,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614101,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614102,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614103,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614201,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614202,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614203,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614204,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614205,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614206,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614207,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614208,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614210,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614211,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614301,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614302,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614303,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614401,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614402,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614403,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614404,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614601,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614602,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614612,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614613,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614614,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614615,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614616,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614617,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614618,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614619,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614620,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614621,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614622,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614623,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614624,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614625,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614626,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614628,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614629,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614630,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614701,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614702,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614703,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614704,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614705,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614706,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614707,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614708,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614710,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614711,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614712,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614713,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614714,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614715,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614716,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614717,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614723,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614738,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false +IN-PIN,614801,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614802,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614803,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614804,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614805,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,614806,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614807,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614808,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614809,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614810,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false +IN-PIN,614901,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614902,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614903,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614904,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614905,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,614906,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false +IN-PIN,620002,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620003,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620004,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620005,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620006,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620007,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620008,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620009,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620010,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620011,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620012,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620013,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620015,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620016,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620017,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620019,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620020,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620021,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620025,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620027,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620101,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,620102,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621001,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621002,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621003,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621004,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621005,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621006,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621007,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621008,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621009,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621010,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621011,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621012,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621014,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621101,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621102,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621103,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621104,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621105,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621106,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621107,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621108,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621109,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621110,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621111,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621112,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621113,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621114,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621115,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621116,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621117,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621118,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621119,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621133,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621202,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621203,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621204,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621205,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621206,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621207,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621208,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621209,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621210,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621211,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621212,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621213,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621214,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621215,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621216,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621217,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621218,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621219,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621220,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621301,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,621302,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621305,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,621306,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621307,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621308,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,621310,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621311,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,621312,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,621313,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,621314,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621315,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621316,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,621601,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621651,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621652,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621653,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621701,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621702,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621703,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621704,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621705,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621706,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621707,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621708,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621709,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621710,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621711,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621712,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,621713,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621714,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621715,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621716,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621717,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false +IN-PIN,621718,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621719,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621722,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621729,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621730,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621731,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621801,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621802,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621803,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621804,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621805,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621806,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,621851,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false +IN-PIN,622001,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622002,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622003,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622004,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622101,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622102,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622103,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622104,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622201,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622202,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622203,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622204,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622209,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622301,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622302,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622303,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622304,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622401,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622402,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622403,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622404,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622407,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622409,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622411,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622412,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622422,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622501,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622502,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622503,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622504,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622505,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622506,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622507,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,622515,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false +IN-PIN,623115,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623120,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623135,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623308,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623315,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623401,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623402,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623403,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623404,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623406,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623407,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623409,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623502,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623503,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623504,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623512,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623513,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623514,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623515,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623516,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623517,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623518,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623521,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623522,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623523,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623524,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623525,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623526,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623527,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623528,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623530,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623531,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623532,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623533,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623534,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623536,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623537,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623538,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623601,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623603,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623604,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623605,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623608,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623701,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623703,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623704,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623705,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623706,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623708,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623711,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,623712,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,624002,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624003,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624004,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624005,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624101,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624103,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624201,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624202,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624204,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624206,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624208,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624210,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624211,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624212,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624215,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624216,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624219,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624220,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624301,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624302,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624303,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624304,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624306,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624307,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624308,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624401,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624402,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624403,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624601,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624610,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624612,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624613,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624614,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624615,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624616,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624617,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624618,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624619,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624620,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624621,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624622,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624701,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624702,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624703,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624704,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624705,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624706,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624707,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624708,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624709,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624710,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624711,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624712,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624801,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,624802,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false +IN-PIN,625001,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625002,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625003,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625005,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625006,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625007,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625008,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625009,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625012,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625014,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625016,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625017,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625018,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625019,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625020,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625021,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625022,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625023,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625101,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625102,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625103,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625104,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625105,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625106,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625107,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625108,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625109,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625110,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625122,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625201,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625203,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625205,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625207,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625214,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625218,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625221,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625234,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625301,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625402,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625501,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625503,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625512,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625513,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625514,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625515,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625516,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625517,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625518,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625520,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625521,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625522,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625523,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625524,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625525,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625526,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625527,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625528,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625529,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625530,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625531,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625532,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625533,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625534,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625535,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625536,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625537,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625540,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625552,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625556,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625562,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625579,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625582,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625601,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625602,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625604,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625605,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false +IN-PIN,625701,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625702,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625703,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625704,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625705,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625706,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625707,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,625708,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false +IN-PIN,626001,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626002,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626003,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626004,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626005,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626101,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626102,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626103,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626104,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626105,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626106,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626107,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626109,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626110,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626111,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626112,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626113,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626114,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626115,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626116,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626117,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626118,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626119,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626121,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626122,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,626123,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626124,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626125,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626126,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626127,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626128,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626129,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626130,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626131,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626132,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626133,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626134,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626136,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626137,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626138,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626139,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626140,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626141,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626142,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626149,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626161,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626188,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626189,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626201,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626202,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,626203,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626204,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626205,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626607,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,626612,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false +IN-PIN,627001,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627002,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627005,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627007,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627011,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627012,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627101,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627102,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627103,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627104,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627106,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627108,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627109,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627110,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627111,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627112,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627113,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627114,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627115,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627116,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627117,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627118,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627119,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627120,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627127,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627151,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627152,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627201,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627202,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627351,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627352,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,627353,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627354,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627355,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627356,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627357,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627358,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627359,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627401,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627412,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627413,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627414,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627415,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627416,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627417,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627418,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627421,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627423,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627424,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627425,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627426,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627451,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627452,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627501,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627502,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627601,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627602,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627651,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627652,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627654,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627657,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false +IN-PIN,627713,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627719,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627751,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627753,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627754,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627755,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627756,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627757,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627758,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627759,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627760,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627761,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627764,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627802,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627803,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627804,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627805,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627806,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627807,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627808,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627809,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627811,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627812,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627813,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627814,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627818,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627851,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627852,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627853,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627854,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627855,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627856,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627857,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627858,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627859,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627860,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627861,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627862,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,627951,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,627953,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,628001,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628002,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628005,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628101,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628102,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628103,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628104,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628105,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628151,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628152,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628201,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628202,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628203,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628204,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628205,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628206,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628207,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628208,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628209,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628210,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628211,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628212,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628213,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628215,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628216,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628218,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628229,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628251,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628252,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628301,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628302,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628303,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628304,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628401,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628402,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628502,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,628503,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628552,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,628601,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628612,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628613,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628614,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628615,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628616,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628617,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628618,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628619,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628620,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628621,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628622,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628623,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628653,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628656,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628701,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628702,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628703,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628704,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628712,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628714,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628716,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628718,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628720,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628721,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false +IN-PIN,628722,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628752,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628753,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628801,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628802,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628809,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628851,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628901,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628902,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628903,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628904,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628905,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628906,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628907,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628908,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,628952,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false +IN-PIN,629001,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629002,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629003,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629004,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629101,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629102,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629151,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629152,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629153,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629154,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629156,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629157,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629158,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629159,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629160,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629161,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629162,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629163,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629164,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629165,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629167,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629168,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629170,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629171,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629172,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629173,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629174,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629175,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629176,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629177,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629178,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629179,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629180,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629193,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629201,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629202,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629203,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629204,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629251,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629252,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629301,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629302,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629401,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629402,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629403,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629501,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629502,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629601,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629602,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629701,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629702,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629703,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629704,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629801,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629802,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629803,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629804,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629810,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629851,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629852,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,629901,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false +IN-PIN,630002,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630003,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630101,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630103,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630104,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630105,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630106,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630107,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630108,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630201,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630202,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630203,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630204,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630205,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630206,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630207,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630208,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630210,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630211,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630212,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630301,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630302,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630303,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630305,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630306,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630307,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630309,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630311,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630312,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,630313,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630314,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630321,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630405,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630408,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630410,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630411,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630501,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630502,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630551,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630552,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630553,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630554,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630555,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630556,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630557,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630558,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630559,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630561,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630562,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630602,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630606,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630609,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630610,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630611,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630612,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630702,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630709,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,630710,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false +IN-PIN,630713,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false +IN-PIN,631001,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631002,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631003,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631004,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631051,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631052,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631101,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631102,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631151,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,631201,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631202,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631203,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631204,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631205,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631206,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631207,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631208,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631209,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631210,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631211,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631212,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631213,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631301,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631302,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631303,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631304,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631402,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false +IN-PIN,631501,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631502,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631551,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631552,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631553,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631561,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631601,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631603,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631604,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631605,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631606,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false +IN-PIN,631701,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,631702,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632001,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632002,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632004,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632006,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632007,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632008,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632009,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632010,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632011,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632012,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632013,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632014,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632055,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632057,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632058,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632059,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632101,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632102,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632103,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632104,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632105,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632106,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632107,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632113,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632114,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632201,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632202,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632203,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632204,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632209,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632301,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632311,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632312,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632313,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632314,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632315,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632316,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632317,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632318,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632319,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632326,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false +IN-PIN,632401,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632404,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632405,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632501,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632502,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632503,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632504,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632505,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632506,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632507,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632508,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632509,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632510,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632511,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632512,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632513,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632514,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632515,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632516,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632517,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632518,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632519,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632520,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632521,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632531,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false +IN-PIN,632601,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632602,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,632603,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,632604,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,635001,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635002,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635101,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635102,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635103,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635104,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635105,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635106,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635107,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635108,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635109,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635110,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635111,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635112,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635113,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635114,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635115,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635116,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635117,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635118,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635119,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635120,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635121,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635122,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635123,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635124,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635126,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635130,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635201,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635202,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635203,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635204,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635205,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635206,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635207,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635301,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635302,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635303,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635304,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635305,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,635306,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635307,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false +IN-PIN,635601,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635602,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635651,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635652,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635653,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635654,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635655,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635701,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635702,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635703,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635710,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635751,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635752,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635754,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635801,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635802,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635803,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,635804,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635805,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635806,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,635807,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635808,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635809,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,635810,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,635811,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635812,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635813,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false +IN-PIN,635814,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635815,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635851,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635852,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635853,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635854,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,635901,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false +IN-PIN,636005,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636008,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636010,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636011,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636012,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636013,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636015,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636030,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636101,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636102,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636103,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636104,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636105,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636106,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636107,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636108,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636109,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636110,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636111,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636112,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,636113,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,636114,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636115,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636116,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636117,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636118,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,636119,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636121,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636122,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636138,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636139,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636140,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636141,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636142,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,636201,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636202,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,636203,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,636204,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636301,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,636302,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636303,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636304,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636305,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636306,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636307,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636308,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636309,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636351,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636352,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636354,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636403,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636404,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636451,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636452,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636453,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636454,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636455,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636457,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636458,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636501,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636502,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636503,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636601,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636602,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,636701,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636704,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636705,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636803,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636804,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636805,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636806,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636807,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636808,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636809,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636810,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636811,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636813,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636902,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636903,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636904,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636905,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636906,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,636907,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false +IN-PIN,637001,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637002,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637003,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637013,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637014,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637015,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637017,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637018,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637019,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637020,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637021,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637101,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,637102,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,637105,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,637107,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,637201,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637202,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637203,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637204,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637205,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637206,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637207,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637208,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637209,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637210,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637211,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637212,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637213,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637214,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637215,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637216,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637301,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,637302,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637303,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637304,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637401,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637402,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637403,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637404,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637405,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637406,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637407,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637408,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637409,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637410,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637411,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637412,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637415,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637501,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,637502,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,637503,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,637504,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false +IN-PIN,637505,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,638001,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638002,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638003,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638004,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638005,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638007,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,638008,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638009,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638012,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638051,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638052,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638053,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638054,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638055,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638056,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638057,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638101,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638102,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638103,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638104,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638105,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638106,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638107,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638108,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638109,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638110,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638111,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638112,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638115,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638116,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638151,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638152,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638153,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638154,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638181,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,638182,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,638183,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false +IN-PIN,638301,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638311,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638312,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638313,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638314,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638315,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638316,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638401,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,638402,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638451,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638452,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638453,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638454,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638455,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638456,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638457,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638458,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638459,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,638460,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,638461,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638462,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638476,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638501,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638502,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638503,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638504,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638505,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638506,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638656,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638657,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638660,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638661,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638672,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638673,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638701,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638702,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638703,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638706,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,638751,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638752,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,638812,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,639001,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639002,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639003,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639004,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639005,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639006,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639007,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639008,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639101,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,639102,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639103,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639104,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639105,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639107,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639108,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639109,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639110,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639111,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639112,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,639113,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639114,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639115,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false +IN-PIN,639116,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639117,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639118,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639119,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639120,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639136,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639201,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639202,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639203,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639205,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639206,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,639207,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false +IN-PIN,641001,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641005,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641006,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641007,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641008,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641009,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641010,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641015,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641016,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641017,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641019,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641020,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641022,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641024,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641026,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641027,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641028,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641029,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641030,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641031,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641032,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641034,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641035,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641039,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641041,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641045,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641047,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641048,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641049,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641050,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641062,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641101,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641103,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641104,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641105,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641107,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641108,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641109,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641110,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641111,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641112,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641113,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641114,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641201,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641202,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641302,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641305,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641401,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641402,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641407,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641602,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641603,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641604,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641605,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641606,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641607,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641652,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641653,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641654,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641655,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641658,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641659,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641662,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641663,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641664,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641665,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false +IN-PIN,641666,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641667,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641668,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641669,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641670,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641671,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,641687,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,641697,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642001,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642002,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642003,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642004,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642005,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642006,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642007,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642101,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642102,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642103,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642104,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642105,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642107,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642109,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642110,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642111,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642112,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642113,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642114,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642120,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642122,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642123,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642126,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642128,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642129,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642132,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642134,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642154,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642201,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642202,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false +IN-PIN,642203,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642204,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642205,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642206,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,642207,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false +IN-PIN,643003,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,643202,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,643204,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,643205,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,643218,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,643231,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,643238,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,643239,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,643242,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false +IN-PIN,670001,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670002,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670003,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670004,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670005,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670006,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670008,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670009,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670010,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670104,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670105,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670106,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670107,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670141,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670142,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670143,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670301,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670303,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670304,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670305,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670306,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670307,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670309,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670331,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670353,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670502,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670511,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670521,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670561,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670563,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670571,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670581,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670582,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670591,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670592,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670593,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670594,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670595,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670601,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670602,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670604,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670611,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670612,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670613,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670621,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670622,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670631,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670633,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670642,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670643,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670644,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,670645,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,670646,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,670650,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670651,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670662,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670671,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670672,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670673,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670674,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670676,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670692,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670693,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670694,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670701,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670702,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670703,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670705,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670706,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,670721,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,670731,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,670741,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,671121,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671122,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671123,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671124,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671310,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671312,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671313,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671314,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671315,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671316,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671317,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671318,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671319,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671320,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671321,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671322,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671323,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671324,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671326,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671348,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671351,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671531,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671532,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671533,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671534,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671541,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671542,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671543,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671551,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,671552,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false +IN-PIN,673001,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673003,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673004,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673005,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673007,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673008,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673010,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673015,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673016,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673017,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673019,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673021,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673101,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673102,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673104,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673121,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673122,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673123,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673301,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673303,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673304,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673305,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673306,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673307,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673309,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673310,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false +IN-PIN,673311,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,673313,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,673314,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673315,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673316,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false +IN-PIN,673317,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673323,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673328,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673501,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673502,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673503,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673504,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673505,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673506,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673507,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673508,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673509,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673513,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673517,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673521,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673522,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673523,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673524,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673525,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673526,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673527,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673528,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673529,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673541,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673542,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673571,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673572,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673573,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673574,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673575,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673576,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673577,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673579,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673580,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673581,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673582,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673585,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673586,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673591,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673592,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673593,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673595,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673596,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false +IN-PIN,673601,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673602,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673603,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673604,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673611,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673612,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673613,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673614,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673616,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673620,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673631,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673633,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673634,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673635,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673637,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673638,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673639,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673640,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673641,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673642,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,673655,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,673661,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false +IN-PIN,676101,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676102,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676104,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676106,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676108,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676109,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676121,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676122,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676123,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676301,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676302,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676303,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676304,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676305,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676306,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676307,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676312,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676317,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676320,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676501,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676503,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676504,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676505,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676506,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676507,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676508,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676509,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676517,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676519,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676521,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676523,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676525,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676528,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676541,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676542,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676551,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676552,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676553,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,676561,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,678001,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678004,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678006,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678007,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678008,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678101,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678102,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678103,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678501,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678502,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678503,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678504,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678505,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678506,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678507,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678508,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678510,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678532,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678533,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678534,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678541,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678542,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678543,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678544,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678545,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678546,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678551,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678552,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678553,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678555,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678556,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678557,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678571,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678572,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678573,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678574,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678581,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678582,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678583,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678592,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678593,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678594,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678595,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678597,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678598,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678601,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678611,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678612,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678613,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678621,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678622,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678623,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678624,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678631,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678633,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678641,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678642,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678651,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678671,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678682,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678683,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678684,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678686,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678687,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678701,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678702,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678703,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678705,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678706,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678721,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678722,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,678731,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679101,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679104,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679105,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,679106,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,679121,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679301,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679303,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679304,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679307,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679309,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679313,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679321,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679322,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679323,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679324,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679325,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679326,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679327,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679328,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679329,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679330,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679331,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679332,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679333,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679334,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679335,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679336,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679337,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679338,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679339,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679340,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679341,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679357,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679501,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679502,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679503,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679504,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679505,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679512,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679513,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679515,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679522,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679523,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679531,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,679532,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,679533,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679534,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679536,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679551,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false +IN-PIN,679562,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,679563,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,679564,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,679571,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679572,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679573,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679575,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679576,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679578,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679579,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679580,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679581,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679582,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679583,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,679585,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false +IN-PIN,680001,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680002,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680003,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680005,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680007,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680008,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680010,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680012,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680013,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680014,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680026,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680027,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680028,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680101,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680102,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680104,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680121,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680122,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680123,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680125,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680301,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680302,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680304,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680305,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680306,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680308,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680309,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680310,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680311,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680312,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680317,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680501,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680502,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680503,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680505,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680506,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680507,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680508,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680509,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680510,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680511,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680512,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680514,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680515,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680517,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680518,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680519,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680521,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680523,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680541,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680542,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680543,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680544,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680545,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680546,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680551,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680552,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680553,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680555,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680561,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680562,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680563,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680564,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680565,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680567,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680569,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680570,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680571,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680581,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680582,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680583,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680584,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680585,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680586,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680587,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680588,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680589,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680590,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680591,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680594,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680596,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680601,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680602,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680604,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680613,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680614,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680615,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680616,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680617,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680618,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680620,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680623,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680631,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680641,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680651,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680652,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680653,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680654,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680655,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680661,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680662,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680663,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680664,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680665,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680666,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680667,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,680668,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680669,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680671,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680681,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680682,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680683,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680684,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680686,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680687,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680689,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680691,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680697,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680699,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680701,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680702,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680703,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680712,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680721,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680722,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680724,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680731,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680732,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680733,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680734,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680741,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,680751,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false +IN-PIN,682001,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682002,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682004,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682005,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682008,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682010,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682011,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682017,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682021,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682024,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682027,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682030,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682034,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682038,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682301,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682303,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682304,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682305,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682307,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682308,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682309,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682310,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682312,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682313,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682314,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682315,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682316,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682317,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682501,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682502,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682504,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682505,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682506,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682507,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682508,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682509,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,682551,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,682552,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,682553,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,682554,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,682555,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,682556,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,682557,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,682558,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,682559,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false +IN-PIN,683101,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683105,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683106,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683110,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683112,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683502,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683511,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683512,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683513,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683514,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683516,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683517,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683519,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683522,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683541,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683542,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683544,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683545,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683546,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683549,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683550,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683556,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683562,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683565,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683571,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683572,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683574,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683575,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683576,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683577,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683578,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683579,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683580,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683581,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683585,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,683587,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,685501,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685503,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685505,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685507,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685509,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685511,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685512,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685514,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685515,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685531,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685532,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685533,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685535,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685551,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685552,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685553,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685554,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685561,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685562,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685563,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685565,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685566,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685571,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685581,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685582,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685583,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685585,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685586,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685587,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685588,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685589,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685590,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685591,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685595,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685601,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685602,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685603,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685604,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685605,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685606,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685607,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685608,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685609,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685612,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685613,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685614,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685615,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685616,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685618,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685619,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,685620,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false +IN-PIN,686002,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686003,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686005,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686008,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686010,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686011,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686012,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686015,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686016,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686019,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686020,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686022,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686102,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,686103,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686104,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686105,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686122,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686123,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686143,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686144,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686146,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686502,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686503,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686504,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686506,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686507,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686509,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686510,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,686511,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,686512,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686513,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686514,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686516,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686518,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686519,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686522,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686532,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686534,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,686536,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686537,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686538,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686539,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686540,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686541,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686542,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686543,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686544,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686547,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,686561,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686563,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686564,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686571,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686573,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686574,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686576,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686577,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686579,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686580,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686582,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686584,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686586,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686602,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686603,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686605,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686606,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686607,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686610,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686611,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686612,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686613,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686631,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686632,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686633,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686634,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686636,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686637,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686651,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686652,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false +IN-PIN,686661,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686662,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686663,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686664,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686665,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686667,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686668,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686669,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686670,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686671,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686672,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686673,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686681,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686691,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686692,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,686693,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false +IN-PIN,688001,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688003,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688004,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688005,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688006,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688011,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688014,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688501,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688502,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688503,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688504,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688505,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688506,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688521,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688522,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688523,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688524,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688525,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688526,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688527,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688528,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688529,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688530,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688531,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688532,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688533,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688534,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688535,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688536,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688537,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688539,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688540,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688541,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688561,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688562,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,688570,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689102,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689103,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689106,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689108,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689109,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689110,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689115,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689121,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689501,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689502,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689503,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689505,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689506,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689508,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689509,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689512,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689514,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689515,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689531,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689533,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689542,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689543,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689544,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689549,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689572,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689573,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689574,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689581,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689582,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689583,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689584,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689585,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689586,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689592,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689595,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689611,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689621,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689622,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689623,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689624,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,689625,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689641,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689642,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689643,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689646,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689647,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689648,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689650,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689652,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689656,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689662,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689663,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689666,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689667,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689668,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689672,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689673,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689674,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689678,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689691,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689693,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689694,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689695,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,689696,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,689699,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,689711,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,690101,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690103,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690104,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690105,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690107,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690110,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690501,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690502,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690503,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690504,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690505,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690506,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690507,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690508,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690509,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690513,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690514,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690515,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690516,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690517,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690518,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690519,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690520,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690521,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690522,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690523,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690524,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690525,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690526,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690527,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690532,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690533,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690534,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690535,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690536,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690540,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690542,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690548,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690558,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690559,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690561,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690572,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false +IN-PIN,690573,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,690574,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691001,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691004,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691005,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691010,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691011,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691015,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691301,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691302,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691303,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691306,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691307,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691308,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691309,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691310,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691311,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691312,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691322,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691331,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691332,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691333,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691500,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691501,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691502,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691503,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691505,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691506,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691507,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691508,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691509,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691516,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691520,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691521,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691522,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691524,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,691525,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,691526,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,691532,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691533,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691534,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691535,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691536,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691537,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691538,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691540,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691551,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,691553,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,691554,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,691555,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,691556,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false +IN-PIN,691559,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691560,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691571,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691572,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691573,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691574,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691576,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691577,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691578,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691581,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691582,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691583,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691584,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691601,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,691602,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false +IN-PIN,695002,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695003,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695004,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695005,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695012,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695013,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695014,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695019,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695024,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695026,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695027,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695032,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695042,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695043,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695101,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695102,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695103,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695121,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695122,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695123,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695124,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695125,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695126,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695132,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695133,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695141,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695142,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695143,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695144,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695145,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695146,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695301,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695302,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695303,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695304,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695305,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695306,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695308,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695309,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695310,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695311,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695313,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695316,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695317,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695318,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695501,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695502,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695504,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695505,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695506,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695507,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695521,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695525,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695526,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695527,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695528,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695541,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695542,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695543,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695551,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695562,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695563,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695564,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695568,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695571,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695572,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695573,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695574,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695575,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695582,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695584,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695586,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695587,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695588,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695589,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695601,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695602,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695603,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695604,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695605,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695606,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695607,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695608,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695609,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695610,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695611,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695612,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695614,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,695615,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false +IN-PIN,700102,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700110,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700113,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700119,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700121,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700122,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700124,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700125,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700126,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700128,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700130,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700132,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700135,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700136,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700137,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,700144,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,700150,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,700155,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700156,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700160,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,700162,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,711104,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711109,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711114,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711115,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711201,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711204,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711205,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711225,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711226,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711301,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711302,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711303,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711304,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711305,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711306,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711307,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711309,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711310,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711312,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711313,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711314,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711315,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711316,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711317,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711322,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711331,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711401,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711403,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711404,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711405,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711408,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,711409,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711410,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,711411,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711412,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711413,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,711414,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false +IN-PIN,712101,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712102,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712103,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712104,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712105,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712121,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712122,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712123,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712124,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712134,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712135,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712138,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712146,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712147,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712148,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712149,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712152,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712203,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712204,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712222,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712223,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712234,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712245,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712246,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712248,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712250,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712301,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712302,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712303,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712304,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712305,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712306,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712308,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712311,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712401,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712402,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712403,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712404,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712405,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712406,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712407,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712408,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712409,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712410,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712412,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712413,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712414,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712415,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712416,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712417,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712501,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712502,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712503,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712504,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712512,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712513,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712514,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712515,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712601,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712602,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712611,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712612,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712613,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712614,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712615,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712616,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712617,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712701,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712702,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,712706,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,713101,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713102,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713103,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713104,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713121,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713122,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713123,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,713124,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713125,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713126,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713127,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713128,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713129,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713130,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713131,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713132,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713140,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713141,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713142,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,713143,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713144,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713145,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713146,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713147,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713148,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713149,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713150,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713151,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713152,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713153,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713154,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713166,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713204,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713205,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713206,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713211,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713212,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713315,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713321,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713322,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713323,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713330,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713334,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713335,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713336,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713337,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713338,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713339,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713341,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713342,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713346,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713347,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713357,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713358,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713359,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713362,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713363,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713369,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713376,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713378,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713381,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713384,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713385,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713386,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false +IN-PIN,713401,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713403,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713404,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713405,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713406,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713407,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713408,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713409,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713420,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713421,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713422,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713423,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713424,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713426,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713427,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713428,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713502,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,713512,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713513,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713514,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713515,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713519,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,713520,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false +IN-PIN,721101,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721102,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721121,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721122,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721124,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721125,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721126,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721127,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721128,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721129,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721130,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721131,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721133,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721134,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721135,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721136,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721137,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721139,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721140,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721144,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721145,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721146,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721147,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721148,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721149,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721150,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721151,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721152,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721153,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721154,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721155,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721156,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721157,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721158,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721160,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721161,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721166,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721172,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721201,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721211,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721212,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false +IN-PIN,721222,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721232,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721242,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721253,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721260,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721301,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721303,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721304,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721305,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721306,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721401,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721402,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721403,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721404,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721405,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721406,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721420,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721422,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721423,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721424,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721425,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721426,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721427,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721428,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721429,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721430,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721431,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721432,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721433,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721434,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721435,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721436,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721437,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721438,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721439,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721440,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721441,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721442,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721443,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721444,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721445,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721446,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721447,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721448,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721449,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721450,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721451,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721452,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721453,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721454,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721455,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721456,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721457,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721458,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721463,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721467,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721501,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721503,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721504,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721505,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721506,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721507,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721513,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721514,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721515,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721516,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721517,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false +IN-PIN,721601,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721602,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721603,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721624,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721625,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721626,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721627,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721628,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721629,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721631,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721632,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721633,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721634,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721635,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721637,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721641,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false +IN-PIN,721642,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721644,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721645,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721646,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721647,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721648,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721649,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721650,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721651,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721652,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721653,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721654,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721655,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721656,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721658,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,721659,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false +IN-PIN,722102,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722121,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722122,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722132,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722133,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722134,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722135,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722136,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722137,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722138,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722139,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722140,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722141,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722142,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722143,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722144,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722146,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722147,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722148,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722149,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722150,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722151,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722152,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722153,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722154,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722155,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722156,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722157,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722158,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722160,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722161,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722162,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722164,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722173,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722201,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722202,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722203,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722204,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722205,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722206,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722207,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,722208,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,723101,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723102,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723103,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723104,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723121,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false +IN-PIN,723126,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723127,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723128,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723129,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723130,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723131,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723132,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723133,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723142,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723143,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723145,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723146,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723147,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723148,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723149,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723151,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723152,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723153,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723154,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723155,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723156,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723201,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723202,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723212,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723213,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,723215,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false +IN-PIN,731101,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731102,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731103,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731104,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731121,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731123,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731124,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731125,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731126,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731127,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731129,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731130,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731132,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731201,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731202,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731204,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731213,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731214,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731215,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731216,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731219,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731220,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731221,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731222,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731223,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731233,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731234,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731235,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731236,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731237,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731238,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731240,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731241,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731242,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731243,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731244,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731245,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731301,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731302,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731303,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,731304,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false +IN-PIN,732101,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732102,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732103,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732121,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732122,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732123,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732124,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732125,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732126,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732127,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732128,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732138,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732139,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732140,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732141,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732142,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732144,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732201,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732202,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732203,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732204,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732205,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732206,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732207,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732208,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732209,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732210,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732215,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,732216,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false +IN-PIN,733101,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733102,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733103,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733121,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733123,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733124,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733125,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733126,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733127,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733128,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733129,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733130,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733132,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733133,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733134,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733140,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733141,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733142,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733143,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733145,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false +IN-PIN,733156,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733201,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733202,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733207,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733208,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733209,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733210,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,733215,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false +IN-PIN,734002,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734003,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734008,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734009,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734010,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734011,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734012,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734013,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734014,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734101,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734102,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734104,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734105,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734201,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734203,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734213,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734214,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734215,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734216,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734217,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734218,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734219,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734220,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734221,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734222,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734223,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734224,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734226,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734301,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +IN-PIN,734311,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +IN-PIN,734312,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734313,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734314,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +IN-PIN,734315,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +IN-PIN,734316,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +IN-PIN,734423,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734424,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734425,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734426,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734427,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734429,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734434,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false +IN-PIN,734501,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,734503,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +IN-PIN,735102,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735121,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735122,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,735132,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735133,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735134,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735135,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735202,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735203,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735204,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735205,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735206,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735207,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735208,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735209,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735210,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735211,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735212,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735213,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735214,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735215,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735216,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735217,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735218,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735219,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735220,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735221,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735222,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735223,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735224,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735225,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735227,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735228,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,735229,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735230,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735231,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false +IN-PIN,735233,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735301,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,735302,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,735303,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,735304,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,735305,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false +IN-PIN,736121,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736122,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736123,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736131,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736133,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736134,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736135,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736145,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736146,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736156,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736157,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736158,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736159,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736160,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736165,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736167,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736168,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736169,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736170,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736171,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736172,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736176,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736179,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false +IN-PIN,736182,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736201,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736202,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736203,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736204,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736205,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736206,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736207,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,736208,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false +IN-PIN,737101,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737102,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737103,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737106,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737107,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737111,PostalCode,Gyalshing,LGD,228,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false +IN-PIN,737113,PostalCode,Gyalshing,LGD,228,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false +IN-PIN,737116,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737120,PostalCode,Mangan,LGD,226,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false +IN-PIN,737121,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737126,PostalCode,Namchi,LGD,227,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false +IN-PIN,737128,PostalCode,Namchi,LGD,227,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false +IN-PIN,737131,PostalCode,Pakyong,LGD,741,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +IN-PIN,737132,PostalCode,Pakyong,LGD,741,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +IN-PIN,737133,PostalCode,Pakyong,LGD,741,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false +IN-PIN,737134,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737135,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false +IN-PIN,737139,PostalCode,Namchi,LGD,227,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false +IN-PIN,741101,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741102,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741103,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741121,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741122,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741123,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741124,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741125,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741126,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741127,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741137,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741138,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741139,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741140,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741150,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741151,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741152,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741153,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741154,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741155,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741156,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,741157,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741158,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741160,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741161,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741162,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741163,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741164,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741165,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741166,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741167,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741181,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741201,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741202,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741221,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741222,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741223,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741238,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741245,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741246,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741247,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741248,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741249,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741250,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741251,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741253,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741254,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741255,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741256,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741257,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741301,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741302,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741313,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741315,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741316,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741317,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741401,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741402,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741404,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741501,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741502,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741503,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741504,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741505,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741506,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741507,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741508,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,741509,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false +IN-PIN,742101,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742102,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742104,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742113,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742121,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742122,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742123,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742132,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742133,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742134,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742135,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742136,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742137,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742138,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742140,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742147,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742148,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742149,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742151,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742159,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742161,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742163,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742164,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742165,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742166,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742168,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742174,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742175,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742184,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742187,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742189,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742201,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742202,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742212,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742213,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742223,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742224,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742225,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742226,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742227,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742235,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742236,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742237,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742302,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742303,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742304,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742305,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742306,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742308,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742401,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742402,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742404,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742405,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742406,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742407,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742408,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742409,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,742410,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false +IN-PIN,743122,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743126,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743127,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743130,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743135,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743144,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743145,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743166,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743193,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743221,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743222,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743232,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743233,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743234,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743235,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743245,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743247,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743248,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743249,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743251,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743252,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743262,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743263,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743270,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743271,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743272,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743273,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743286,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743287,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743289,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743290,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743291,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743292,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743293,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743294,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743297,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743312,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743318,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743329,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743330,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743331,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743332,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743336,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743337,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743338,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743345,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743347,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743348,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743349,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743351,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743354,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743355,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743356,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743357,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743363,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743368,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743370,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743371,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743372,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743373,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743374,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743375,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743376,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743377,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743378,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743383,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743387,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743395,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743399,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743401,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743405,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743411,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743412,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743422,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743423,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743424,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743425,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743426,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743427,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743428,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743429,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743435,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743437,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743438,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743439,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743442,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743445,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743446,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743456,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743502,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743503,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743504,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743513,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743609,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743610,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false +IN-PIN,743611,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743701,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743702,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743704,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743710,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,743711,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false +IN-PIN,744101,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +IN-PIN,744103,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +IN-PIN,744104,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +IN-PIN,744105,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +IN-PIN,744201,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +IN-PIN,744202,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +IN-PIN,744203,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +IN-PIN,744204,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +IN-PIN,744205,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +IN-PIN,744206,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +IN-PIN,744207,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false +IN-PIN,744209,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +IN-PIN,744210,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +IN-PIN,744211,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false +IN-PIN,744301,PostalCode,Nicobars,LGD,603,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false +IN-PIN,744302,PostalCode,Nicobars,LGD,603,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false +IN-PIN,744303,PostalCode,Nicobars,LGD,603,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false +IN-PIN,744304,PostalCode,Nicobars,LGD,603,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false +IN-PIN,751002,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,751017,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,751019,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,751021,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,751024,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,751028,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,751029,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,751030,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,751031,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752002,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752004,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752010,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752011,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752012,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752013,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752014,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752015,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752016,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752017,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752018,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752019,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752020,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752021,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752022,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752023,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752024,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752025,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752026,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752027,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752030,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752031,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752032,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752034,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752035,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752038,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752045,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752046,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752050,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752054,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752055,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752056,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752057,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752060,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752061,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752062,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752063,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752064,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752065,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752066,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752068,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752069,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752070,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752077,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752078,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752079,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752080,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752081,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752082,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752083,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752084,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752085,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752089,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752090,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752091,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752092,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752093,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752094,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false +IN-PIN,752100,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752101,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752102,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752103,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,752104,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752105,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752106,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752107,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,752108,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752109,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752110,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752111,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752113,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752114,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752116,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752118,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752119,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,752120,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,752121,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false +IN-PIN,753006,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,753011,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754001,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754002,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754003,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754004,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754005,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754006,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754007,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754008,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754009,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754010,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754011,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754012,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false +IN-PIN,754018,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754022,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754023,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,754024,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,754025,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754027,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754028,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754029,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754030,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754031,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754032,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754034,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754035,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754037,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754071,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754082,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,754100,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754102,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754103,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754104,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754105,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754106,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754107,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754108,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754109,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754110,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754111,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754112,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754113,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754114,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754119,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754130,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754131,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754132,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754133,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754134,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754135,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754136,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754137,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754138,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754139,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754140,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754141,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754142,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754153,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754160,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754162,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754200,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754201,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754202,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754203,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754204,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754205,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,754206,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754207,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754208,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754209,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754210,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754211,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754212,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754213,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754214,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,754215,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754216,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754217,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754218,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754219,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754220,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754221,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754222,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754223,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754224,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754225,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754227,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754228,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754231,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754239,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754240,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754244,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754245,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754246,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754248,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754250,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754253,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754289,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,754290,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754292,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,754293,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754294,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false +IN-PIN,754295,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754296,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,754297,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754298,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,754299,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false +IN-PIN,755001,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755003,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755004,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755006,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755008,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755009,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755010,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755011,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755012,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755013,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755014,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755015,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755016,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755017,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755018,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755019,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755020,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755022,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755023,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755025,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755026,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755027,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755036,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755043,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755044,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755050,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,755061,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false +IN-PIN,755062,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false +IN-PIN,756002,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756003,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756019,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756020,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756021,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756023,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756024,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756025,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756026,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756027,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756028,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756029,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756033,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756034,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756035,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756036,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756037,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756038,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756039,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756040,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756041,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756042,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756043,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756044,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756045,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756046,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756047,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756048,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756049,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756051,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756056,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756058,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756059,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756060,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756079,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756080,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756081,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756083,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756084,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756085,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756086,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756087,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756088,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756089,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756100,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756101,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756111,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756112,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756114,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756115,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756116,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756117,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756118,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756119,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756120,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756121,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756122,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756123,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756124,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756125,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756126,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756127,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756128,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756129,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756130,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756131,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756132,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756133,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756134,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,756135,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756137,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756138,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756139,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756144,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756162,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756163,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756164,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756165,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756166,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756167,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756168,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756171,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756181,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false +IN-PIN,756182,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,757001,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757002,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757003,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757014,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757016,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757017,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757018,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757019,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757020,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757021,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757022,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757023,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757024,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757025,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757026,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757028,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757029,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757030,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757031,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757032,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757033,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757034,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757035,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757036,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757037,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757038,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757039,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757040,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757041,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757042,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757043,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757045,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757046,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757047,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757048,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757049,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757050,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757051,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757052,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757053,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757054,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757055,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757056,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757073,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757074,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757075,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757077,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757079,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757081,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757082,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false +IN-PIN,757083,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757084,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757085,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757086,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757087,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757091,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757092,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757093,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757100,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757101,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757102,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757103,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757104,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757105,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757106,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,757107,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false +IN-PIN,758002,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758013,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758014,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758015,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758016,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758017,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758018,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758019,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758020,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758021,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758022,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758023,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758025,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758026,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758027,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758028,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758029,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758030,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758031,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758032,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758034,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758035,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758036,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758037,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758038,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758041,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758043,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758044,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758045,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758046,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758047,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758076,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758078,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758079,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758080,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758081,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758082,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758083,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758084,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758085,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758086,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,758087,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false +IN-PIN,759001,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759013,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759014,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759015,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759016,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759017,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759018,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759019,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759020,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759021,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759022,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759023,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759024,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759025,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759026,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759027,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759028,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759029,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759037,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759039,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759040,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759100,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759101,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759102,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759103,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759105,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759106,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759107,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759111,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759116,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759117,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759118,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759119,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759120,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759121,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false +IN-PIN,759122,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759123,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759124,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759125,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759126,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759127,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759128,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759129,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759130,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759132,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759141,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759143,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759145,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759146,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759147,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759148,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759149,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759150,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,759151,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false +IN-PIN,760002,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,760003,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,760007,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,760008,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,760010,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761001,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761002,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761003,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761004,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761005,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761006,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761007,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761008,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761009,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761010,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761011,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761012,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761013,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761014,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761015,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761016,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761017,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761018,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761019,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761020,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761026,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761027,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761028,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761029,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761030,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761031,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761032,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761035,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761037,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761041,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761042,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761043,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761045,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761052,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761054,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761055,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761100,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761101,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761102,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761103,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761104,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761105,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761106,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761107,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761108,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761109,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761110,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761114,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761118,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761121,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761123,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761126,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761131,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false +IN-PIN,761200,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761201,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761206,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761207,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761208,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761209,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761210,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761211,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761212,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761213,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761214,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761215,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,761217,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,762001,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762002,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762010,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762011,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762012,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762013,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762014,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762015,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762016,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762017,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762018,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762019,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762020,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762021,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762022,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762023,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762024,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762026,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762027,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762028,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762029,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762030,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false +IN-PIN,762100,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762101,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762102,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762103,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762104,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762105,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762106,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762107,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762109,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762110,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,762112,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false +IN-PIN,763001,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,763002,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,763003,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,763008,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764002,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764003,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764005,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764006,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764011,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764014,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764020,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764021,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764027,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764028,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764036,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764037,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764039,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764040,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764041,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764042,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764043,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764044,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +IN-PIN,764045,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +IN-PIN,764051,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +IN-PIN,764052,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +IN-PIN,764056,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764057,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764058,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764061,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764062,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,764070,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764071,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764072,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764073,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764074,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764075,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764076,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764077,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764078,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764081,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,764085,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,764086,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +IN-PIN,764087,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false +IN-PIN,764088,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false +IN-PIN,765002,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765013,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false +IN-PIN,765015,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765016,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765017,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false +IN-PIN,765018,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765019,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765020,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765021,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765022,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765023,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765024,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765025,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765026,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765029,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765033,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,765034,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false +IN-PIN,766002,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766003,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766011,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766012,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766013,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766014,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766015,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766016,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766017,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766018,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766019,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766020,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766023,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766026,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766027,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766028,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766029,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766031,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766032,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766036,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766037,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766100,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766101,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766102,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766103,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766104,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +IN-PIN,766105,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +IN-PIN,766106,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +IN-PIN,766107,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +IN-PIN,766108,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +IN-PIN,766110,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false +IN-PIN,766111,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +IN-PIN,766118,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false +IN-PIN,767002,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767016,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +IN-PIN,767017,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +IN-PIN,767018,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +IN-PIN,767019,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +IN-PIN,767020,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767021,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767022,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767023,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +IN-PIN,767024,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767025,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767026,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767027,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767028,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767029,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767030,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767032,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767033,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767035,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767038,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767039,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767040,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767041,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767045,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +IN-PIN,767046,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767048,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767060,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767061,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767062,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false +IN-PIN,767065,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767066,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767067,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767068,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,767071,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false +IN-PIN,768005,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768006,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768016,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768017,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768024,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768025,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768027,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768029,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768030,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768031,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768032,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768033,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768034,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768035,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768036,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768037,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768038,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768039,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768040,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768042,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768045,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768048,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768049,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768050,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768052,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768053,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768102,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768103,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768104,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768105,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768106,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768107,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768108,PostalCode,Debagada,LGD,351,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false +IN-PIN,768109,PostalCode,Debagada,LGD,351,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false +IN-PIN,768110,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768111,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768112,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768113,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768115,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false +IN-PIN,768118,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768119,PostalCode,Debagada,LGD,351,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false +IN-PIN,768121,PostalCode,Debagada,LGD,351,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false +IN-PIN,768200,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768201,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768202,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768204,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768210,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768211,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768212,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768213,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768214,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768215,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768216,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768217,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768219,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768220,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768221,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768222,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768224,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768225,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768226,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768227,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false +IN-PIN,768228,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,768234,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,769003,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,769004,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,769012,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,769016,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,769042,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,769043,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770002,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770011,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770012,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770013,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770014,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770015,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770016,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770017,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770018,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770019,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770020,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770021,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770022,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false +IN-PIN,770023,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770024,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770025,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770031,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770033,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770034,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770035,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770036,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770037,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770038,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770039,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770040,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770041,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770042,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770043,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770044,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770046,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770048,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770051,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770052,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770070,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770072,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770073,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770074,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770075,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,770076,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false +IN-PIN,781004,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,781017,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,781023,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,781026,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,781028,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781029,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,781030,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781031,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781101,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781102,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781120,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781121,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781122,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781123,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781124,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781126,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781127,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781129,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781131,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,781133,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781134,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781136,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781137,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781138,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781141,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781150,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,781171,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,781301,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781302,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781303,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781304,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781305,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781306,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781307,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781308,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781309,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781310,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781311,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781312,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781313,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781314,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781315,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781316,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781317,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781318,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781319,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781320,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781321,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781325,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781326,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781327,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781328,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781329,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781330,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781333,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781334,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781335,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781337,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781338,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false +IN-PIN,781339,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781340,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781341,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781343,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781344,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781346,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781347,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781348,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781349,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781350,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781351,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781352,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781353,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781354,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781355,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781360,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781364,PostalCode,Tamulpur,LGD,756,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781365,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781366,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781367,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781368,PostalCode,Tamulpur,LGD,756,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781369,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781370,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781371,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781372,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781373,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781374,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781375,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false +IN-PIN,781376,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781377,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false +IN-PIN,781378,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false +IN-PIN,781380,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781381,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,781382,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false +IN-PIN,782001,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782002,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782003,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782101,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782102,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782103,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782104,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782105,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782106,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782120,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782121,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782122,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782123,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782124,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782125,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782126,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782127,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782128,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782135,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782136,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782137,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782138,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782139,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782140,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782141,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782142,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782143,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782144,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false +IN-PIN,782401,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,782402,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,782403,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false +IN-PIN,782410,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782411,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782412,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782413,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false +IN-PIN,782426,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782427,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782428,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782429,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782435,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782439,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782440,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782441,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782442,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782445,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782446,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782447,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false +IN-PIN,782448,PostalCode,West Karbi Anglong,LGD,710,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false +IN-PIN,782450,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782461,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782462,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782470,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782480,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782481,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782482,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782485,PostalCode,West Karbi Anglong,LGD,710,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false +IN-PIN,782486,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,782490,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false +IN-PIN,783101,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783120,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783121,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783123,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783124,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783125,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783126,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783127,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783128,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783129,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783130,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783131,PostalCode,South Salmara Mancachar,LGD,707,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false +IN-PIN,783132,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783133,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false +IN-PIN,783134,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783135,PostalCode,South Salmara Mancachar,LGD,707,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false +IN-PIN,783136,PostalCode,South Salmara Mancachar,LGD,707,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false +IN-PIN,783301,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783323,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783324,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783325,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783330,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783331,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783333,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783334,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783335,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783336,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783337,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783339,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783345,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783346,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783347,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783348,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783349,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783350,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783354,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783360,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783361,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783369,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783370,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783371,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false +IN-PIN,783372,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783373,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783375,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783376,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false +IN-PIN,783380,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783381,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783382,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783383,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783384,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783385,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783386,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783388,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783389,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783390,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783391,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783392,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,783393,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false +IN-PIN,783394,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false +IN-PIN,784001,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784010,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784025,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784026,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784027,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784028,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784101,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784102,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784103,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784104,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784105,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784110,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784111,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784112,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784113,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784114,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784115,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784116,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784117,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784125,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784144,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784145,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784146,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784147,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784148,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784149,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784150,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784153,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784154,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784160,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,784161,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,784163,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,784164,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,784165,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,784166,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784167,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784168,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784169,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784170,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784171,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784172,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784173,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784174,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784175,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784176,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784177,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784178,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784179,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784180,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784182,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784184,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784189,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false +IN-PIN,784190,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784501,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784502,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784504,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784505,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784506,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784507,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784508,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784509,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false +IN-PIN,784510,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784513,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784514,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784521,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784522,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784523,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784524,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784525,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,784526,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784527,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784528,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false +IN-PIN,784529,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false +IN-PIN,785001,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785004,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785006,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785007,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785008,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785009,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785010,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785013,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785014,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785015,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785101,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785102,PostalCode,Majuli,LGD,706,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false +IN-PIN,785104,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785105,PostalCode,Majuli,LGD,706,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false +IN-PIN,785106,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785107,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785108,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785110,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785111,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785112,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785601,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785602,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785603,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785609,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785610,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785611,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785612,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785613,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785614,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785615,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785616,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785618,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785619,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785621,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785622,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785625,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785626,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785630,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785631,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785632,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785633,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785634,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785635,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785636,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785640,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785661,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785662,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785663,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785664,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785665,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785666,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785667,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785669,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785670,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785671,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785672,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785673,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785674,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785675,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,785676,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,785680,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785681,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785682,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785683,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785684,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785685,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785686,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785687,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785688,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785689,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785690,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785691,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785692,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785693,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785696,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785697,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785698,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false +IN-PIN,785699,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785700,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false +IN-PIN,785701,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false +IN-PIN,785702,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785703,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,785705,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false +IN-PIN,786001,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786002,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786003,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786004,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786006,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786007,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786008,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786010,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786012,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786101,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786103,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786125,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786126,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786145,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786146,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786147,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786148,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786150,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786151,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786152,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786153,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786154,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786155,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786156,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786157,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786158,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786159,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786160,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786170,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786171,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786173,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786174,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786179,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786181,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786182,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786183,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786184,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786187,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786188,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786189,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786190,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786191,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786192,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786601,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false +IN-PIN,786602,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786610,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786611,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786612,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786613,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786614,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786621,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,786692,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false +IN-PIN,787023,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,787026,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787031,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,787032,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,787033,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,787034,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787035,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787051,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,787052,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,787053,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787054,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,787055,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false +IN-PIN,787056,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787057,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787058,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787059,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787060,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787061,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,787110,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false +IN-PIN,788001,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788002,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788003,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788004,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788005,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788006,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788007,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788009,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788010,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788011,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788013,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788015,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788025,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788026,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788030,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788031,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788098,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788099,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788101,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788102,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788103,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788104,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788106,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788107,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788108,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +IN-PIN,788111,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788112,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788113,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788114,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788115,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788116,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788117,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788119,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788120,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788121,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788123,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788126,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788127,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788150,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788152,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788155,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788156,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788160,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788161,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788162,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788163,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788164,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788165,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788166,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788168,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false +IN-PIN,788701,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788709,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788710,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788711,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788712,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788713,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788722,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788723,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788724,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788725,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788726,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788727,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788728,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788734,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788735,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788736,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788737,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788738,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788781,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788802,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788804,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788805,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788806,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false +IN-PIN,788815,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788816,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false +IN-PIN,788818,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +IN-PIN,788819,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +IN-PIN,788820,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +IN-PIN,788830,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +IN-PIN,788831,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +IN-PIN,788832,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +IN-PIN,788931,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false +IN-PIN,790001,PostalCode,Bichom,LGD,787,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +IN-PIN,790002,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +IN-PIN,790003,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +IN-PIN,790101,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +IN-PIN,790102,PostalCode,Bichom,LGD,787,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +IN-PIN,790103,PostalCode,Pakke Kessang,LGD,723,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false +IN-PIN,790104,PostalCode,Tawang,LGD,238,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +IN-PIN,790105,PostalCode,Tawang,LGD,238,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +IN-PIN,790106,PostalCode,Tawang,LGD,238,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false +IN-PIN,790114,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +IN-PIN,790116,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false +IN-PIN,791001,PostalCode,Siang,LGD,679,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +IN-PIN,791002,PostalCode,Upper Siang,LGD,240,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +IN-PIN,791003,PostalCode,Shi Yomi,LGD,725,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false +IN-PIN,791101,PostalCode,Leparada,LGD,724,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false +IN-PIN,791102,PostalCode,East Siang,LGD,232,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +IN-PIN,791103,PostalCode,Siang,LGD,679,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false +IN-PIN,791104,PostalCode,East Siang,LGD,232,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +IN-PIN,791105,PostalCode,Upper Siang,LGD,240,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false +IN-PIN,791110,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +IN-PIN,791111,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +IN-PIN,791112,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +IN-PIN,791113,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +IN-PIN,791114,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +IN-PIN,791118,PostalCode,Kra Daadi,LGD,677,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false +IN-PIN,791119,PostalCode,Keyi Panyor,LGD,786,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false +IN-PIN,791120,PostalCode,Kamle,LGD,718,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false +IN-PIN,791121,PostalCode,East Siang,LGD,232,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false +IN-PIN,791122,PostalCode,Upper Subansiri,LGD,241,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false +IN-PIN,791123,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false +IN-PIN,792001,PostalCode,Lohit,LGD,234,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false +IN-PIN,792056,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +IN-PIN,792101,PostalCode,Dibang Valley,LGD,230,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false +IN-PIN,792102,PostalCode,Lohit,LGD,234,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false +IN-PIN,792103,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +IN-PIN,792104,PostalCode,Anjaw,LGD,628,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false +IN-PIN,792105,PostalCode,Namsai,LGD,678,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false +IN-PIN,792110,PostalCode,Lower Dibang Valley,LGD,235,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false +IN-PIN,792111,PostalCode,Lohit,LGD,234,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false +IN-PIN,792120,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +IN-PIN,792121,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +IN-PIN,792122,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +IN-PIN,792123,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +IN-PIN,792124,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false +IN-PIN,792129,PostalCode,Tirap,LGD,239,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +IN-PIN,792130,PostalCode,Tirap,LGD,239,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false +IN-PIN,792131,PostalCode,Longding,LGD,666,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false +IN-PIN,793001,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793003,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793004,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793005,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793006,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793009,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793010,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793012,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793014,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793015,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793017,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793018,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793019,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793021,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793022,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793101,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,793102,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,793103,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,793104,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,793105,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,793106,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793107,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793108,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793109,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793110,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793112,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793113,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793114,PostalCode,South West Khasi Hills,LGD,658,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false +IN-PIN,793115,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793116,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,793119,PostalCode,Eastern West Khasi Hills,LGD,740,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false +IN-PIN,793120,PostalCode,Eastern West Khasi Hills,LGD,740,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false +IN-PIN,793121,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false +IN-PIN,793122,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,793123,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false +IN-PIN,793126,PostalCode,South West Khasi Hills,LGD,658,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false +IN-PIN,793150,PostalCode,West Jaintia Hills,LGD,275,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false +IN-PIN,793151,PostalCode,West Jaintia Hills,LGD,275,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false +IN-PIN,793160,PostalCode,East Jaintia Hills,LGD,657,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false +IN-PIN,793161,PostalCode,West Jaintia Hills,LGD,275,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false +IN-PIN,793200,PostalCode,East Jaintia Hills,LGD,657,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false +IN-PIN,793210,PostalCode,East Jaintia Hills,LGD,657,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false +IN-PIN,794001,PostalCode,South West Garo Hills,LGD,663,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false +IN-PIN,794002,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794003,PostalCode,West Garo Hills,LGD,278,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +IN-PIN,794004,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794005,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794101,PostalCode,West Garo Hills,LGD,278,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false +IN-PIN,794102,PostalCode,South Garo Hills,LGD,277,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +IN-PIN,794103,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794104,PostalCode,South Garo Hills,LGD,277,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +IN-PIN,794105,PostalCode,South Garo Hills,LGD,277,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +IN-PIN,794106,PostalCode,South West Garo Hills,LGD,663,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false +IN-PIN,794108,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794109,PostalCode,South Garo Hills,LGD,277,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false +IN-PIN,794110,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794111,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794112,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794113,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794114,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false +IN-PIN,794115,PostalCode,North Garo Hills,LGD,656,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false +IN-PIN,795001,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795002,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795003,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795004,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +IN-PIN,795005,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795006,PostalCode,Pherzawl,LGD,715,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false +IN-PIN,795007,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +IN-PIN,795008,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795009,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +IN-PIN,795010,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795101,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +IN-PIN,795102,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +IN-PIN,795103,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +IN-PIN,795104,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +IN-PIN,795105,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +IN-PIN,795106,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +IN-PIN,795107,PostalCode,Kangpokpi,LGD,712,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +IN-PIN,795112,PostalCode,Kangpokpi,LGD,712,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +IN-PIN,795113,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +IN-PIN,795114,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795115,PostalCode,Jiribam,LGD,713,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false +IN-PIN,795116,PostalCode,Jiribam,LGD,713,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false +IN-PIN,795117,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +IN-PIN,795118,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795125,PostalCode,Tamenglong,LGD,258,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false +IN-PIN,795126,PostalCode,Bishnupur,LGD,252,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false +IN-PIN,795127,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +IN-PIN,795128,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +IN-PIN,795129,PostalCode,Kangpokpi,LGD,712,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false +IN-PIN,795130,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795131,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +IN-PIN,795132,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +IN-PIN,795134,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +IN-PIN,795135,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false +IN-PIN,795136,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +IN-PIN,795138,PostalCode,Thoubal,LGD,259,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false +IN-PIN,795139,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +IN-PIN,795140,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795141,PostalCode,Noney,LGD,714,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false +IN-PIN,795142,PostalCode,Kamjong,LGD,717,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false +IN-PIN,795144,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +IN-PIN,795145,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795146,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false +IN-PIN,795147,PostalCode,Noney,LGD,714,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false +IN-PIN,795148,PostalCode,Thoubal,LGD,259,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false +IN-PIN,795149,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false +IN-PIN,795150,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false +IN-PIN,795158,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false +IN-PIN,795159,PostalCode,Noney,LGD,714,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false +IN-PIN,796001,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796005,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796015,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796017,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796070,PostalCode,Kolasib,LGD,263,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false +IN-PIN,796081,PostalCode,Kolasib,LGD,263,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false +IN-PIN,796091,PostalCode,Kolasib,LGD,263,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false +IN-PIN,796101,PostalCode,Kolasib,LGD,263,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false +IN-PIN,796111,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796161,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796181,PostalCode,Serchhip,LGD,268,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false +IN-PIN,796184,PostalCode,Serchhip,LGD,268,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false +IN-PIN,796186,PostalCode,Hnahthial,LGD,726,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +IN-PIN,796190,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796261,PostalCode,Saitual,LGD,727,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +IN-PIN,796290,PostalCode,Saitual,LGD,727,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +IN-PIN,796291,PostalCode,Champhai,LGD,262,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false +IN-PIN,796310,PostalCode,Khawzawl,LGD,728,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +IN-PIN,796320,PostalCode,Champhai,LGD,262,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false +IN-PIN,796321,PostalCode,Champhai,LGD,262,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false +IN-PIN,796370,PostalCode,Khawzawl,LGD,728,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +IN-PIN,796410,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796421,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false +IN-PIN,796431,PostalCode,Mamit,LGD,266,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false +IN-PIN,796441,PostalCode,Mamit,LGD,266,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false +IN-PIN,796470,PostalCode,Mamit,LGD,266,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false +IN-PIN,796501,PostalCode,Mamit,LGD,266,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false +IN-PIN,796571,PostalCode,Hnahthial,LGD,726,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +IN-PIN,796691,PostalCode,Lunglei,LGD,265,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false +IN-PIN,796701,PostalCode,Hnahthial,LGD,726,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false +IN-PIN,796751,PostalCode,Lunglei,LGD,265,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false +IN-PIN,796770,PostalCode,Lawngtlai,LGD,264,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false +IN-PIN,796891,PostalCode,Lawngtlai,LGD,264,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false +IN-PIN,796901,PostalCode,Lawngtlai,LGD,264,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false +IN-PIN,797002,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +IN-PIN,797003,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +IN-PIN,797004,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +IN-PIN,797006,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +IN-PIN,797099,PostalCode,Wokha,LGD,250,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +IN-PIN,797101,PostalCode,Peren,LGD,613,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +IN-PIN,797103,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,797104,PostalCode,Phek,LGD,248,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +IN-PIN,797105,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +IN-PIN,797106,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,797107,PostalCode,Phek,LGD,248,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +IN-PIN,797108,PostalCode,Phek,LGD,248,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false +IN-PIN,797109,PostalCode,Tseminyu,LGD,757,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,797110,PostalCode,Peren,LGD,613,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false +IN-PIN,797111,PostalCode,Wokha,LGD,250,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false +IN-PIN,797112,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,797113,PostalCode,Dimapur,LGD,244,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false +IN-PIN,797114,PostalCode,Meluri,LGD,788,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,797115,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,797116,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,797118,PostalCode,Dimapur,LGD,244,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false +IN-PIN,797120,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false +IN-PIN,798601,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +IN-PIN,798602,PostalCode,Mon,LGD,247,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +IN-PIN,798603,PostalCode,Mon,LGD,247,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +IN-PIN,798604,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +IN-PIN,798607,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +IN-PIN,798611,PostalCode,Kiphire,LGD,614,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false +IN-PIN,798612,PostalCode,Noklak,LGD,736,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,798613,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +IN-PIN,798614,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +IN-PIN,798615,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false +IN-PIN,798616,PostalCode,Tuensang,LGD,249,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false +IN-PIN,798618,PostalCode,Longleng,LGD,615,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false +IN-PIN,798620,PostalCode,Zunheboto,LGD,251,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +IN-PIN,798621,PostalCode,Mon,LGD,247,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false +IN-PIN,798622,PostalCode,Longleng,LGD,615,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false +IN-PIN,798625,PostalCode,Longleng,LGD,615,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false +IN-PIN,798626,PostalCode,Noklak,LGD,736,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,798627,PostalCode,Zunheboto,LGD,251,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false +IN-PIN,798628,PostalCode,Shamator,LGD,765,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false +IN-PIN,799001,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799002,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799003,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799004,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799006,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799008,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799009,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799011,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +IN-PIN,799012,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799013,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +IN-PIN,799015,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799035,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799045,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799101,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +IN-PIN,799102,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +IN-PIN,799103,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +IN-PIN,799104,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799105,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +IN-PIN,799113,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +IN-PIN,799114,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +IN-PIN,799115,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +IN-PIN,799120,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +IN-PIN,799125,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false +IN-PIN,799130,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +IN-PIN,799131,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +IN-PIN,799132,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false +IN-PIN,799141,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799142,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799143,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799144,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799145,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799150,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799153,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799155,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799156,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799157,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false +IN-PIN,799201,PostalCode,Khowai,LGD,652,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false +IN-PIN,799203,PostalCode,Khowai,LGD,652,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false +IN-PIN,799204,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799205,PostalCode,Khowai,LGD,652,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false +IN-PIN,799207,PostalCode,Khowai,LGD,652,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false +IN-PIN,799210,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799211,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799212,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false +IN-PIN,799250,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799251,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799253,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799254,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799256,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799260,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799261,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799262,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799263,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +IN-PIN,799264,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +IN-PIN,799266,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799269,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799270,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799271,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false +IN-PIN,799273,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799275,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799277,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +IN-PIN,799278,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799279,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +IN-PIN,799280,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +IN-PIN,799281,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +IN-PIN,799282,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +IN-PIN,799284,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799285,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799286,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799287,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799288,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799289,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false +IN-PIN,799290,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false +IN-PIN,800001,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800002,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800003,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800004,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800005,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800006,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800007,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800008,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800009,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800011,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800012,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800013,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800014,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800016,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800019,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800020,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800025,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800026,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800027,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800030,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,800033,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801102,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801103,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801104,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801108,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801109,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801110,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801111,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801112,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801113,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801301,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,801302,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,801303,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,801304,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,801305,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,801306,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,801307,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,801503,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,801505,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,802101,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802102,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802111,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802112,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802114,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802115,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802116,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802117,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802118,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802119,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802120,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802122,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802123,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802125,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802126,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802127,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802129,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802130,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802131,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802132,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,802133,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802134,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802135,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802136,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false +IN-PIN,802152,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802154,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802155,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802156,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802157,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802158,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802159,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802160,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802161,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802162,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802163,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802164,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802165,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802166,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802183,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802201,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802202,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802203,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802204,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802205,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802206,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802207,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802208,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802209,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802210,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802211,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802212,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802213,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802214,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802215,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802216,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802217,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802218,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802219,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802220,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802221,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802222,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802223,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802226,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,802301,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802302,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802311,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802312,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802313,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802314,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802316,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802351,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,802352,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false +IN-PIN,803101,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803107,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803108,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803109,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803110,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803111,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803113,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803114,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803115,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803116,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803117,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803118,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803119,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803120,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803201,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803202,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803203,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803211,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803212,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803213,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803214,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803215,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803216,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,803221,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803301,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803302,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803303,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803306,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,803307,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,804401,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +IN-PIN,804402,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +IN-PIN,804403,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,804404,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804405,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,804406,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804407,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804408,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804417,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804418,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804419,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +IN-PIN,804421,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +IN-PIN,804422,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804423,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +IN-PIN,804425,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804429,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804432,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,804451,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,804452,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,804453,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,804454,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false +IN-PIN,805101,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805102,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805103,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805104,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805105,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,805106,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805107,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805108,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805109,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805110,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805111,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805112,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805113,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805114,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805121,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805122,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805123,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805124,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805125,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805126,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805127,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805128,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,805129,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,805130,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805131,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,805132,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,805141,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false +IN-PIN,811101,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,811102,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,811103,PostalCode,Sheikhpura,LGD,219,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false +IN-PIN,811104,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false +IN-PIN,811105,PostalCode,Sheikhpura,LGD,219,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false +IN-PIN,811106,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +IN-PIN,811107,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +IN-PIN,811112,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +IN-PIN,811201,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +IN-PIN,811202,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +IN-PIN,811211,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +IN-PIN,811212,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +IN-PIN,811213,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +IN-PIN,811214,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +IN-PIN,811301,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811302,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +IN-PIN,811303,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811304,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +IN-PIN,811305,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811307,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811308,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811309,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +IN-PIN,811311,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false +IN-PIN,811312,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811313,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811314,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811315,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811316,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,811317,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false +IN-PIN,812001,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,812002,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,812003,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,812004,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,812005,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,812006,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,812007,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,813101,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813102,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813103,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813104,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813105,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813106,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813107,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813108,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813109,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813110,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813201,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +IN-PIN,813202,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813203,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,813204,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,813205,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813206,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,813207,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813209,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,813210,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813211,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813212,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,813213,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,813214,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,813221,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false +IN-PIN,813222,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,814101,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814103,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814110,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814111,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814112,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814114,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814115,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814116,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814119,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814120,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814131,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,814133,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +IN-PIN,814141,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814145,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814146,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814147,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +IN-PIN,814148,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814149,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814150,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814151,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814152,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814153,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814155,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +IN-PIN,814156,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +IN-PIN,814157,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,814158,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,814160,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false +IN-PIN,814166,PostalCode,Jamtara,LGD,333,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false +IN-PIN,815301,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815302,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815311,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815312,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815313,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815314,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815315,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815316,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815317,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815318,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,815351,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,815353,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,815354,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,815355,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,815357,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false +IN-PIN,815359,PostalCode,Jamtara,LGD,333,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false +IN-PIN,816101,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +IN-PIN,816104,PostalCode,Pakur,LGD,337,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +IN-PIN,816106,PostalCode,Pakur,LGD,337,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +IN-PIN,816107,PostalCode,Pakur,LGD,337,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +IN-PIN,816108,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +IN-PIN,816109,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +IN-PIN,816110,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +IN-PIN,816117,PostalCode,Pakur,LGD,337,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false +IN-PIN,816118,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false +IN-PIN,816120,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +IN-PIN,816129,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false +IN-PIN,821015,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821101,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821102,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821103,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821104,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821105,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821106,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821107,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821108,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821109,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821110,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821111,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821112,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821113,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821114,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821115,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821301,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821304,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821305,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821306,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821307,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821308,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821309,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false +IN-PIN,821310,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821311,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,821312,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false +IN-PIN,822102,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,822110,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822111,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822112,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822113,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +IN-PIN,822114,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822115,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822116,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +IN-PIN,822117,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +IN-PIN,822118,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +IN-PIN,822119,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,822120,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822121,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822122,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +IN-PIN,822123,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,822124,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822125,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822126,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,822128,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822129,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822131,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +IN-PIN,822132,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false +IN-PIN,822133,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,822134,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false +IN-PIN,823001,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,823002,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,823003,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,823311,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824101,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824103,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824111,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824112,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824113,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824114,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824115,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824118,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824120,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824121,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824122,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824123,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824124,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824125,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824126,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824127,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false +IN-PIN,824129,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824143,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824201,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824202,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824203,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824205,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824206,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824207,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824208,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824209,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824211,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824217,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824219,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824220,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824221,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824231,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824232,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824233,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824236,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false +IN-PIN,824301,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824302,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824303,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,824304,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false +IN-PIN,825101,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,825102,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,825103,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,825106,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825108,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825109,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825132,PostalCode,Koderma,LGD,334,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +IN-PIN,825167,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,825301,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825302,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825303,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825311,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825312,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,825313,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825314,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,825315,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825316,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,825318,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825319,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825320,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825321,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,825322,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825323,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825324,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825325,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,825326,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,825329,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825330,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825336,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825401,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,825402,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825403,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,825404,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,825405,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825406,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825407,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825408,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,825409,PostalCode,Koderma,LGD,334,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +IN-PIN,825410,PostalCode,Koderma,LGD,334,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +IN-PIN,825411,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825412,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825413,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,825414,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,825415,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,825418,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false +IN-PIN,825421,PostalCode,Koderma,LGD,334,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false +IN-PIN,826001,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,826004,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,826006,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,827010,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,827013,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,827014,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,827302,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,828101,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828103,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828104,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828105,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828109,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828113,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828114,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828116,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828121,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828125,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828128,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828129,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828134,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,828142,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828201,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828202,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828203,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828204,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828205,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828206,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828207,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828303,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,828304,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828305,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828306,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828307,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828401,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828402,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false +IN-PIN,828403,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,828404,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829101,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,829102,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829103,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829104,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829105,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829106,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,829107,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829108,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829109,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,829110,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829111,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829112,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829113,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829114,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829116,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829117,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829118,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829119,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829121,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829122,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829123,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829124,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false +IN-PIN,829125,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829126,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829127,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829128,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829132,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829133,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829134,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829135,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829143,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829144,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829149,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,829150,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false +IN-PIN,829201,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false +IN-PIN,829202,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,829203,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,829204,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,829205,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +IN-PIN,829206,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,829207,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,829208,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +IN-PIN,829209,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +IN-PIN,829210,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +IN-PIN,829301,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false +IN-PIN,831001,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,831002,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,831004,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,831013,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,832101,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,832104,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,832105,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,832108,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,832112,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,832113,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,832301,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,832302,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,832303,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,832304,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false +IN-PIN,832401,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,832402,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,832403,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,832404,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,833101,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,833102,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833103,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833104,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,833105,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833201,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833203,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833204,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833214,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833215,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833216,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,833217,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false +IN-PIN,833219,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false +IN-PIN,834001,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false +IN-PIN,835201,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +IN-PIN,835206,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +IN-PIN,835207,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +IN-PIN,835210,PostalCode,Khunti,LGD,606,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false +IN-PIN,835211,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +IN-PIN,835212,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +IN-PIN,835213,PostalCode,Lohardaga,LGD,336,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +IN-PIN,835218,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false +IN-PIN,835220,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +IN-PIN,835223,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +IN-PIN,835226,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +IN-PIN,835228,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false +IN-PIN,835232,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +IN-PIN,835302,PostalCode,Lohardaga,LGD,336,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false +IN-PIN,835325,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +IN-PIN,835824,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false +IN-PIN,841101,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,841201,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841202,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841203,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841204,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841205,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841206,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841207,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841208,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841209,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841210,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841211,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841212,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841213,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841214,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841215,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841216,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841217,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841218,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841219,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841220,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841221,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841222,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841224,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841225,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841226,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841227,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841228,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841231,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841232,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841233,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841234,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841235,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841236,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841237,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841238,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841239,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841240,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841241,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841243,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841245,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841286,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841301,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841302,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false +IN-PIN,841305,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841311,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841312,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841313,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841316,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841401,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841402,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841403,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841404,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841405,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841406,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841408,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841409,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841410,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841411,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841412,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841414,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841415,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841417,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841418,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841419,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841421,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841422,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841423,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841424,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841425,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841426,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841427,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841428,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841434,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841435,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841436,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841437,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841438,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841440,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841441,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841442,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841443,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841446,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841447,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841460,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false +IN-PIN,841501,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841502,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841503,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841504,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,841508,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false +IN-PIN,841509,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false +IN-PIN,842001,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,842002,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,842003,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,842004,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,842006,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843101,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843102,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843103,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843104,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843105,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843106,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843107,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843108,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843109,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843111,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843112,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843113,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843114,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,843115,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843116,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843117,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843118,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843119,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843120,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843121,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843122,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843123,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843124,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843125,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843126,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843127,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843128,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843129,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843131,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +IN-PIN,843132,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843301,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +IN-PIN,843302,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843311,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843312,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843313,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843314,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843315,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843316,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +IN-PIN,843317,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843318,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843319,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843320,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843321,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843322,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843323,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843324,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843325,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +IN-PIN,843326,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843327,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +IN-PIN,843328,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,843329,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +IN-PIN,843330,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843331,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843332,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843333,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false +IN-PIN,843334,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +IN-PIN,843335,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false +IN-PIN,843360,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,844101,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844102,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844111,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844112,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,844113,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844114,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844118,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,844120,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,844121,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844122,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844124,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844127,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,844128,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844502,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844503,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844504,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844505,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844506,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844508,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,844509,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false +IN-PIN,845101,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845103,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845104,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845105,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845106,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845107,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845301,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845302,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845303,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845304,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845305,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845306,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845307,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845401,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845402,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845411,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845412,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845413,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845415,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845416,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845417,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845418,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845419,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845420,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845422,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845424,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845425,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845426,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845428,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845430,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845432,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845433,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845434,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845435,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845436,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845437,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845438,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845439,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845441,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845449,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845450,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845451,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845452,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845453,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845454,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845455,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,845456,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845457,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845458,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false +IN-PIN,845459,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false +IN-PIN,846001,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,846002,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,846003,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,846004,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,846005,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,846006,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,846007,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,846009,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,846010,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847101,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847102,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847103,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847104,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847105,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847106,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847107,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847108,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847109,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847115,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847121,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847122,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847123,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847201,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847202,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847203,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847204,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847211,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847212,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847213,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847214,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847215,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847222,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847223,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847224,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847225,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847226,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847227,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847228,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847229,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847230,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847231,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847232,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847233,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847234,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847235,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847236,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847238,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847239,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847240,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847301,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847302,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847303,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847304,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847305,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847306,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847307,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847308,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847337,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847401,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847402,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847403,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847404,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847405,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847407,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847408,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847409,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847410,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847411,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847421,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false +IN-PIN,847422,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847423,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847424,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847427,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847428,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847429,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,847451,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,847452,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,848101,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848102,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848103,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848104,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848113,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848114,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848115,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848117,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848121,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,848122,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848125,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false +IN-PIN,848127,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848129,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848130,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848131,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848132,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848133,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848134,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848160,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848201,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,848202,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,848203,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,848204,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,848205,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848206,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848207,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848208,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848209,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848210,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848211,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848213,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false +IN-PIN,848216,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848236,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848301,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848302,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848501,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848502,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848503,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848504,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848505,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,848506,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false +IN-PIN,851101,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851111,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851112,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851113,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851116,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851117,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851118,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851120,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851121,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851126,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851127,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851128,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851129,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851130,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851131,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851132,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851133,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851134,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851135,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851201,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,851202,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,851203,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,851204,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,851205,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,851206,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,851210,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851211,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851214,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,851216,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,851217,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,851218,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false +IN-PIN,852101,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852105,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852106,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852107,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852108,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852109,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852110,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852111,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852112,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852113,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852114,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852115,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852116,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852121,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852122,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852123,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852124,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852125,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852126,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852127,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852128,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852129,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852130,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852131,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852132,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852133,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852134,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852137,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852138,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852139,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852161,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false +IN-PIN,852202,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852212,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852213,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852214,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852215,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852216,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852217,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,852218,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,852219,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852220,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false +IN-PIN,852221,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false +IN-PIN,853201,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,853202,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,853203,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,853204,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false +IN-PIN,853205,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false +IN-PIN,854101,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854102,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854103,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854104,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854105,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854106,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854107,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854108,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854110,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854112,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854113,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854114,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854115,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854116,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854117,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854201,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854202,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854203,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854204,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854205,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854301,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854304,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854305,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854306,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854311,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854312,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854315,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854316,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854317,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,854318,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854325,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854326,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854327,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854329,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854330,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false +IN-PIN,854331,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854332,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854333,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854334,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854335,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854336,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false +IN-PIN,854338,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,854339,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,854340,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false +IN-PIN,855101,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,855102,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,855105,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,855106,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +IN-PIN,855107,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +IN-PIN,855108,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +IN-PIN,855113,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,855114,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false +IN-PIN,855115,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +IN-PIN,855116,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +IN-PIN,855117,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false diff --git a/tools/area-lookups/data/areas/lgd-2026-09-02/areas.geojsonl b/tools/area-lookups/data/areas/lgd-2026-09-02/areas.geojsonl new file mode 100644 index 00000000..3add820e --- /dev/null +++ b/tools/area-lookups/data/areas/lgd-2026-09-02/areas.geojsonl @@ -0,0 +1,764 @@ +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"1","area_level":"State","area_name":"Jammu And Kashmir","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[74.5398,35.07498],[74.51974,35.09285],[74.51224,35.10354],[74.49944,35.11559],[74.4585,35.12527],[74.43994,35.12594],[74.43874,35.13007],[74.42705,35.11951],[74.41529,35.11174],[74.41062,35.10129],[74.39956,35.09182],[74.38198,35.06782],[74.37566,35.066],[74.34752,35.06487],[74.30523,35.06763],[74.29271,35.06452],[74.29155,35.05467],[74.28823,35.04768],[74.26517,35.04086],[74.25587,35.0442],[74.24513,35.05211],[74.24141,35.06006],[74.2425,35.07224],[74.24022,35.07914],[74.23523,35.08139],[74.22698,35.0743],[74.22349,35.0736],[74.21993,35.07534],[74.21755,35.08223],[74.22022,35.08859],[74.21514,35.09372],[74.19131,35.09092],[74.15611,35.09088],[74.14467,35.09579],[74.13374,35.10465],[74.13239,35.10293],[74.11915,35.1042],[74.1114,35.1007],[74.10143,35.09914],[74.09387,35.09195],[74.0884,35.0841],[74.08191,35.07944],[74.08082,35.0701],[74.07117,35.05849],[74.07358,35.0546],[74.06674,35.04627],[74.07342,35.04577],[74.07796,35.03865],[74.08943,35.03296],[74.09488,35.03399],[74.09822,35.03218],[74.10588,35.01837],[74.10975,35.01607],[74.0975,35.01048],[74.09482,35.00426],[74.08961,35.00178],[74.06555,34.99779],[74.05932,34.99268],[74.05977,34.98701],[74.06329,34.98328],[74.06103,34.97694],[74.06222,34.97389],[74.06096,34.96773],[74.06442,34.9632],[74.06415,34.95722],[74.07117,34.93548],[74.05367,34.92491],[74.03887,34.92111],[74.0372,34.91923],[74.0365,34.91109],[74.03435,34.90624],[74.03472,34.9015],[74.04197,34.89103],[74.0308,34.88303],[74.02992,34.87628],[74.02043,34.87246],[74.01504,34.87525],[74.00568,34.87327],[74.00051,34.87523],[73.99909,34.86885],[73.99272,34.86592],[73.96744,34.86383],[73.96641,34.8543],[73.96118,34.84307],[73.961,34.83856],[73.95799,34.83554],[73.95135,34.83364],[73.93047,34.83239],[73.92577,34.81756],[73.91937,34.81165],[73.90491,34.81284],[73.89932,34.81877],[73.89499,34.81897],[73.88224,34.81524],[73.87094,34.81407],[73.86299,34.80959],[73.85666,34.80851],[73.84314,34.81428],[73.83771,34.81316],[73.82178,34.7921],[73.81803,34.79132],[73.80078,34.79473],[73.78373,34.79139],[73.77231,34.79611],[73.7563,34.78735],[73.7371,34.77254],[73.72994,34.77222],[73.72236,34.76341],[73.71922,34.75239],[73.71185,34.74294],[73.70766,34.72755],[73.70463,34.72201],[73.68458,34.70753],[73.67897,34.69358],[73.66831,34.68837],[73.66645,34.68319],[73.65905,34.6731],[73.66026,34.6661],[73.66351,34.66322],[73.68772,34.65553],[73.69292,34.6533],[73.695,34.65005],[73.69468,34.64702],[73.69048,34.6411],[73.66773,34.61801],[73.65376,34.60053],[73.65413,34.59641],[73.65986,34.58458],[73.6598,34.57975],[73.65026,34.56196],[73.63733,34.56053],[73.63301,34.56262],[73.62519,34.57558],[73.61115,34.58482],[73.58496,34.58512],[73.57228,34.58367],[73.55613,34.58984],[73.53871,34.57375],[73.53218,34.57098],[73.51716,34.57089],[73.49324,34.57475],[73.47021,34.56848],[73.46394,34.5719],[73.45384,34.57106],[73.45046,34.56994],[73.44825,34.56709],[73.44347,34.55562],[73.4463,34.53961],[73.44087,34.52785],[73.43081,34.52133],[73.43727,34.50654],[73.43517,34.48485],[73.43352,34.48071],[73.42194,34.46605],[73.42578,34.45621],[73.42774,34.42604],[73.42323,34.41886],[73.41617,34.40106],[73.40915,34.37758],[73.39912,34.37548],[73.3961,34.37161],[73.40301,34.36227],[73.4043,34.35432],[73.40786,34.35028],[73.41662,34.35044],[73.42134,34.34666],[73.42994,34.3463],[73.43073,34.34458],[73.42467,34.33894],[73.42507,34.33724],[73.43311,34.32765],[73.4418,34.32465],[73.44452,34.32138],[73.44719,34.31337],[73.44555,34.30313],[73.45224,34.30053],[73.46041,34.28913],[73.46065,34.28691],[73.45558,34.28082],[73.45671,34.27645],[73.45986,34.27621],[73.47199,34.2838],[73.4755,34.29133],[73.47854,34.29131],[73.48084,34.28942],[73.48448,34.27464],[73.47594,34.26774],[73.47304,34.25976],[73.47283,34.2523],[73.48202,34.23086],[73.49854,34.21122],[73.49861,34.20827],[73.49275,34.20157],[73.49438,34.19529],[73.49111,34.18533],[73.49357,34.17607],[73.49084,34.17082],[73.49245,34.16002],[73.4913,34.15375],[73.49355,34.14724],[73.49093,34.13967],[73.49719,34.13245],[73.49443,34.12468],[73.49835,34.1123],[73.49763,34.10486],[73.50129,34.0966],[73.49923,34.08775],[73.49967,34.07457],[73.5078,34.06486],[73.51139,34.04944],[73.51136,34.0326],[73.51789,34.0218],[73.51645,33.99883],[73.52607,33.99142],[73.52778,33.98815],[73.5291,33.9823],[73.5322,33.97816],[73.53254,33.97216],[73.53643,33.96519],[73.53779,33.95634],[73.5454,33.94382],[73.54761,33.93693],[73.55005,33.93383],[73.55772,33.9299],[73.56312,33.92047],[73.58444,33.90496],[73.59284,33.8938],[73.59333,33.87879],[73.58779,33.87444],[73.58716,33.86067],[73.57795,33.84749],[73.5747,33.82245],[73.56971,33.81527],[73.56684,33.80001],[73.55992,33.78133],[73.56383,33.77496],[73.56964,33.77211],[73.57483,33.76329],[73.58396,33.76009],[73.59465,33.75123],[73.59678,33.74714],[73.5987,33.73587],[73.60302,33.72848],[73.60314,33.71509],[73.59715,33.69976],[73.58842,33.69015],[73.57868,33.68358],[73.56746,33.66849],[73.56789,33.66007],[73.57729,33.64227],[73.57774,33.63806],[73.57601,33.63334],[73.56902,33.62465],[73.56715,33.61774],[73.57542,33.61618],[73.58549,33.61673],[73.58827,33.61541],[73.59538,33.60691],[73.59854,33.60017],[73.6009,33.59967],[73.60915,33.6055],[73.6119,33.60378],[73.61172,33.60079],[73.60498,33.58869],[73.60605,33.58665],[73.61079,33.58604],[73.62192,33.58075],[73.62871,33.57106],[73.62527,33.55822],[73.62736,33.54973],[73.62409,33.54328],[73.62441,33.54087],[73.63074,33.53519],[73.64102,33.53174],[73.64177,33.52851],[73.64111,33.52554],[73.6303,33.52442],[73.62045,33.51586],[73.61145,33.51306],[73.61214,33.50883],[73.61941,33.49932],[73.61868,33.49535],[73.6113,33.49927],[73.6054,33.50033],[73.60294,33.49924],[73.60207,33.49668],[73.60509,33.49155],[73.60425,33.48579],[73.61094,33.4823],[73.61047,33.47093],[73.61266,33.47163],[73.61437,33.47615],[73.61867,33.47616],[73.62013,33.4729],[73.61996,33.46251],[73.63053,33.46005],[73.63207,33.45798],[73.63189,33.44759],[73.61592,33.4477],[73.61313,33.44123],[73.60937,33.4382],[73.604,33.44003],[73.59606,33.43898],[73.59594,33.42939],[73.5894,33.42768],[73.58614,33.42523],[73.58671,33.42281],[73.60173,33.42294],[73.60316,33.41908],[73.59912,33.41546],[73.59088,33.41323],[73.58909,33.41131],[73.5885,33.40574],[73.58191,33.40323],[73.58109,33.39555],[73.57332,33.39182],[73.57059,33.38435],[73.57114,33.37936],[73.56513,33.36932],[73.56515,33.36625],[73.57188,33.35665],[73.58147,33.35849],[73.58377,33.35568],[73.57049,33.34298],[73.57111,33.33906],[73.57532,33.33752],[73.5772,33.335],[73.57842,33.32862],[73.58027,33.32719],[73.58307,33.32896],[73.58746,33.33554],[73.59356,33.34007],[73.5955,33.34016],[73.59803,33.33752],[73.59936,33.32951],[73.59763,33.32778],[73.59015,33.32693],[73.5893,33.32354],[73.5942,33.31763],[73.59564,33.30284],[73.60109,33.29871],[73.60828,33.29677],[73.61417,33.29289],[73.60553,33.28541],[73.60651,33.27371],[73.61521,33.25797],[73.6132,33.24821],[73.61941,33.24612],[73.62179,33.23599],[73.62373,33.23437],[73.63631,33.23272],[73.63756,33.23041],[73.6378,33.2257],[73.63173,33.22317],[73.63452,33.21789],[73.63355,33.20764],[73.63531,33.20485],[73.63951,33.20502],[73.64267,33.21925],[73.64762,33.22282],[73.64953,33.22238],[73.65563,33.21171],[73.66418,33.20763],[73.66801,33.20186],[73.66264,33.19171],[73.66642,33.18186],[73.66191,33.1733],[73.66448,33.16135],[73.66024,33.15882],[73.65185,33.15866],[73.64989,33.15658],[73.64869,33.13747],[73.64403,33.13678],[73.6363,33.142],[73.63361,33.14194],[73.6312,33.13952],[73.63127,33.13725],[73.63929,33.12813],[73.63893,33.1258],[73.63132,33.11755],[73.63304,33.09181],[73.6399,33.0831],[73.64944,33.08634],[73.65568,33.08542],[73.65687,33.08312],[73.67284,33.08224],[73.68157,33.08747],[73.68877,33.08667],[73.69134,33.08495],[73.69973,33.08489],[73.70969,33.07943],[73.71572,33.07882],[73.72906,33.07072],[73.74283,33.06615],[73.74986,33.058],[73.74764,33.03596],[73.74911,33.03362],[73.75601,33.02979],[73.75791,33.028],[73.75801,33.02527],[73.76274,33.02335],[73.76443,33.02032],[73.77303,33.01788],[73.78078,33.01253],[73.78435,33.00726],[73.79451,33.00359],[73.79832,32.98894],[73.78994,32.97763],[73.79043,32.96681],[73.79758,32.96594],[73.80931,32.96758],[73.82597,32.97724],[73.82774,32.98795],[73.82566,33.00401],[73.84565,33.0018],[73.86944,33.0028],[73.88054,32.99747],[73.88792,32.99747],[73.89874,33.00223],[73.90826,33.00143],[73.91628,32.99361],[73.92326,32.99065],[73.92499,32.98838],[73.9323,32.98724],[73.94145,32.98243],[73.95386,32.98456],[73.95798,32.987],[73.96464,32.98712],[73.96779,32.98434],[73.97024,32.97739],[73.96949,32.97085],[73.97237,32.96721],[73.97929,32.96644],[73.98951,32.96219],[73.99509,32.96315],[73.99834,32.96203],[74.00618,32.95491],[74.00621,32.9507],[73.99871,32.93948],[73.99815,32.93731],[73.99968,32.9354],[74.0051,32.93558],[74.02446,32.92975],[74.03917,32.93045],[74.04996,32.93467],[74.05816,32.93454],[74.05996,32.93182],[74.05968,32.92008],[74.06352,32.91692],[74.06343,32.91245],[74.06895,32.90956],[74.09047,32.90799],[74.10613,32.90294],[74.11679,32.8976],[74.14426,32.89495],[74.15631,32.89191],[74.16563,32.8869],[74.16871,32.8878],[74.17277,32.88637],[74.17441,32.88901],[74.1788,32.8895],[74.19072,32.88295],[74.19246,32.87497],[74.19426,32.87392],[74.19996,32.8753],[74.21126,32.87343],[74.21416,32.86268],[74.21985,32.86231],[74.21971,32.85583],[74.21801,32.85223],[74.21964,32.84882],[74.23445,32.84809],[74.24409,32.8463],[74.24411,32.84507],[74.26343,32.84209],[74.2663,32.83853],[74.26773,32.83223],[74.27672,32.83161],[74.27666,32.83363],[74.28052,32.83388],[74.3034,32.82984],[74.31283,32.82218],[74.30828,32.80758],[74.31514,32.80479],[74.31448,32.79684],[74.32723,32.79059],[74.33367,32.78035],[74.34223,32.77808],[74.3474,32.77484],[74.35133,32.77464],[74.35505,32.767],[74.391,32.76316],[74.39423,32.77212],[74.40293,32.76738],[74.40705,32.77428],[74.4076,32.77898],[74.41002,32.77948],[74.41526,32.78456],[74.42463,32.78347],[74.42611,32.78523],[74.44447,32.78351],[74.45941,32.78774],[74.46458,32.7759],[74.47596,32.7754],[74.48428,32.76831],[74.48608,32.76445],[74.49668,32.76469],[74.49791,32.76585],[74.50463,32.7641],[74.50531,32.76635],[74.51162,32.76453],[74.51043,32.76249],[74.51525,32.75584],[74.51407,32.75107],[74.51002,32.75102],[74.50943,32.74719],[74.51159,32.7455],[74.52705,32.74681],[74.53185,32.74436],[74.53386,32.74487],[74.53588,32.74986],[74.54212,32.74857],[74.54195,32.75191],[74.54334,32.75254],[74.54405,32.74803],[74.54822,32.74685],[74.54638,32.75001],[74.54703,32.75182],[74.55425,32.75838],[74.56289,32.76012],[74.57034,32.75973],[74.57623,32.75662],[74.5766,32.75449],[74.57402,32.7505],[74.57684,32.7479],[74.58052,32.7485],[74.58239,32.75279],[74.58991,32.75064],[74.59605,32.75646],[74.61347,32.75765],[74.61362,32.75966],[74.6192,32.76068],[74.63426,32.74954],[74.63532,32.75124],[74.63804,32.75153],[74.63824,32.75573],[74.63683,32.75625],[74.63835,32.75862],[74.63036,32.76843],[74.63293,32.77382],[74.63229,32.7764],[74.63967,32.78206],[74.65401,32.78087],[74.65836,32.78765],[74.64543,32.79544],[74.63463,32.80662],[74.63521,32.81177],[74.64052,32.81894],[74.65562,32.8321],[74.65904,32.832],[74.66348,32.82598],[74.66788,32.82504],[74.6835,32.83676],[74.70477,32.84195],[74.70544,32.82577],[74.70395,32.81699],[74.69749,32.8097],[74.69621,32.80504],[74.68416,32.7841],[74.68183,32.7765],[74.67842,32.77256],[74.67679,32.76879],[74.67707,32.76131],[74.67491,32.75599],[74.66457,32.74259],[74.65945,32.73084],[74.65591,32.72796],[74.66186,32.72703],[74.66371,32.72395],[74.65797,32.71505],[74.65789,32.70698],[74.6535,32.69669],[74.66136,32.68653],[74.66695,32.67527],[74.68239,32.67226],[74.68255,32.66883],[74.69526,32.66544],[74.69527,32.66131],[74.68887,32.65192],[74.68072,32.65252],[74.67126,32.64522],[74.67038,32.63895],[74.66778,32.63882],[74.66232,32.63508],[74.6551,32.63695],[74.65604,32.63278],[74.6531,32.63092],[74.657,32.63045],[74.65502,32.62459],[74.65494,32.61521],[74.63905,32.61464],[74.64034,32.60826],[74.63947,32.60348],[74.64159,32.60275],[74.64184,32.60055],[74.64661,32.59916],[74.64682,32.59774],[74.6543,32.59945],[74.65877,32.59685],[74.65711,32.59263],[74.64889,32.58798],[74.64983,32.58241],[74.65469,32.58083],[74.65211,32.56983],[74.65254,32.56296],[74.66273,32.56488],[74.66934,32.56883],[74.67384,32.56798],[74.67449,32.55443],[74.67327,32.55336],[74.66274,32.55383],[74.66171,32.54967],[74.66288,32.54452],[74.6825,32.53532],[74.6888,32.53507],[74.69061,32.53296],[74.69073,32.52348],[74.68423,32.5154],[74.68257,32.5097],[74.68566,32.50664],[74.68482,32.4995],[74.6821,32.49359],[74.68792,32.48687],[74.69358,32.48649],[74.69595,32.48767],[74.69608,32.48951],[74.70026,32.48999],[74.7011,32.49293],[74.70367,32.49139],[74.71018,32.49262],[74.71367,32.48804],[74.71118,32.47818],[74.71419,32.47837],[74.7145,32.47686],[74.71677,32.47814],[74.72746,32.47582],[74.72835,32.48077],[74.75155,32.4783],[74.75463,32.48208],[74.76548,32.48053],[74.77113,32.48128],[74.79477,32.4764],[74.79954,32.47781],[74.8005,32.48232],[74.81282,32.47964],[74.81377,32.48678],[74.81875,32.49791],[74.82423,32.49507],[74.83552,32.49516],[74.84708,32.48918],[74.85864,32.49285],[74.86529,32.48634],[74.87074,32.48596],[74.87728,32.49297],[74.88354,32.49087],[74.88389,32.48875],[74.87914,32.48199],[74.87925,32.47672],[74.90079,32.46738],[74.9066,32.47294],[74.91742,32.46427],[74.92151,32.46501],[74.931,32.47124],[74.93794,32.4713],[74.9362,32.46753],[74.94163,32.46285],[74.94704,32.44842],[74.95266,32.4475],[74.96071,32.4553],[74.96858,32.45934],[74.97129,32.45954],[74.98324,32.45089],[74.98652,32.45044],[74.98874,32.45242],[74.99187,32.45146],[74.99927,32.45745],[75.00329,32.45723],[75.0119,32.46412],[75.0193,32.46616],[75.01975,32.46789],[75.01656,32.47079],[75.01682,32.47946],[75.02802,32.49709],[75.04164,32.48711],[75.04535,32.48831],[75.05477,32.48164],[75.06782,32.47774],[75.06959,32.47791],[75.06994,32.47973],[75.08403,32.472],[75.08554,32.46876],[75.08713,32.4706],[75.09075,32.46926],[75.09268,32.47011],[75.09898,32.47774],[75.10666,32.47406],[75.10874,32.46762],[75.10777,32.46057],[75.11927,32.45422],[75.1186,32.44434],[75.12445,32.43462],[75.1284,32.43352],[75.13323,32.4278],[75.13301,32.42641],[75.12725,32.42551],[75.12663,32.42028],[75.12753,32.41725],[75.13166,32.41447],[75.13142,32.40886],[75.14111,32.41235],[75.15266,32.42108],[75.16012,32.41864],[75.16386,32.42264],[75.17679,32.42137],[75.18033,32.42424],[75.18977,32.42581],[75.192,32.42401],[75.19175,32.42209],[75.19885,32.4216],[75.19958,32.42042],[75.19879,32.41827],[75.2004,32.41379],[75.19916,32.41123],[75.19749,32.40983],[75.19245,32.41012],[75.19241,32.40187],[75.19395,32.40047],[75.20756,32.39469],[75.21187,32.40067],[75.21502,32.40128],[75.22098,32.39821],[75.22294,32.39424],[75.22739,32.39179],[75.22862,32.39286],[75.23082,32.39194],[75.23553,32.38746],[75.24155,32.38518],[75.24482,32.38473],[75.24757,32.38808],[75.25204,32.38958],[75.25594,32.38927],[75.25718,32.38797],[75.25536,32.37684],[75.2571,32.37656],[75.25813,32.37141],[75.26011,32.37033],[75.26503,32.37242],[75.26786,32.37155],[75.2729,32.37512],[75.27538,32.37506],[75.28975,32.36984],[75.28735,32.36068],[75.2883,32.35448],[75.29887,32.35352],[75.29965,32.34645],[75.30216,32.34428],[75.31134,32.3427],[75.32267,32.34353],[75.32683,32.33495],[75.32777,32.32612],[75.33223,32.32668],[75.33543,32.33016],[75.3359,32.33694],[75.33894,32.33564],[75.34072,32.33765],[75.3412,32.34548],[75.34928,32.34526],[75.35574,32.3383],[75.35537,32.3367],[75.36087,32.33492],[75.36348,32.33612],[75.36199,32.3341],[75.36312,32.33294],[75.37068,32.33424],[75.37453,32.33732],[75.37654,32.33431],[75.38029,32.33399],[75.39448,32.32693],[75.39939,32.33002],[75.40219,32.33005],[75.40369,32.32688],[75.40662,32.32889],[75.41051,32.32862],[75.41843,32.32004],[75.43074,32.31506],[75.43161,32.31666],[75.44049,32.31802],[75.44496,32.32121],[75.44813,32.32604],[75.44951,32.32382],[75.4621,32.32706],[75.46778,32.3246],[75.46965,32.32779],[75.46597,32.32917],[75.47187,32.33286],[75.46913,32.33863],[75.47504,32.33993],[75.47505,32.33814],[75.47894,32.33849],[75.48633,32.34197],[75.48649,32.34473],[75.4891,32.34556],[75.49494,32.34113],[75.48807,32.33963],[75.48614,32.33657],[75.48447,32.33758],[75.48151,32.33517],[75.48566,32.32364],[75.48192,32.32029],[75.48639,32.31663],[75.50332,32.31103],[75.50447,32.31269],[75.51153,32.30859],[75.51329,32.30711],[75.50548,32.29669],[75.50393,32.29132],[75.50919,32.28399],[75.51839,32.28165],[75.51866,32.27971],[75.52102,32.2793],[75.52092,32.27724],[75.52618,32.27601],[75.52604,32.27749],[75.53224,32.27783],[75.53683,32.28311],[75.53933,32.29217],[75.53953,32.30022],[75.54221,32.30381],[75.54331,32.3092],[75.54189,32.31559],[75.54284,32.3216],[75.53766,32.3259],[75.53899,32.33423],[75.55033,32.34875],[75.55777,32.35384],[75.55978,32.35698],[75.59531,32.37704],[75.61193,32.37686],[75.63457,32.37991],[75.64652,32.38742],[75.6731,32.39392],[75.67549,32.39386],[75.67981,32.38997],[75.68725,32.39025],[75.70128,32.39944],[75.71134,32.41156],[75.71496,32.40796],[75.72276,32.4056],[75.72269,32.40938],[75.73187,32.42256],[75.73199,32.42499],[75.7275,32.4294],[75.72775,32.43168],[75.72989,32.4329],[75.73815,32.42981],[75.7438,32.4316],[75.74247,32.43363],[75.73714,32.43498],[75.73434,32.43912],[75.7287,32.43911],[75.72661,32.44481],[75.72884,32.44767],[75.72926,32.45267],[75.74151,32.45515],[75.74902,32.45408],[75.75934,32.46052],[75.76273,32.45999],[75.77439,32.46383],[75.80051,32.48513],[75.8136,32.48845],[75.81994,32.49181],[75.8244,32.49593],[75.82632,32.49999],[75.82616,32.50388],[75.83347,32.50346],[75.83425,32.50767],[75.83041,32.51373],[75.83882,32.5137],[75.83669,32.51847],[75.83826,32.52232],[75.85383,32.5277],[75.85564,32.53004],[75.8549,32.5369],[75.87321,32.54947],[75.87333,32.55413],[75.86614,32.56246],[75.86974,32.5661],[75.87771,32.56915],[75.87993,32.57799],[75.87895,32.58698],[75.88404,32.58982],[75.89273,32.58896],[75.89769,32.59066],[75.90503,32.60037],[75.90591,32.60759],[75.91636,32.61443],[75.91858,32.62172],[75.9155,32.62771],[75.91913,32.62969],[75.91863,32.63311],[75.9242,32.63675],[75.92734,32.63133],[75.93071,32.63139],[75.92881,32.63717],[75.93381,32.64265],[75.93323,32.64711],[75.92341,32.64274],[75.92031,32.64289],[75.9188,32.64456],[75.91503,32.6436],[75.91499,32.6531],[75.90626,32.65814],[75.89784,32.65432],[75.89311,32.64861],[75.88677,32.6504],[75.88583,32.65218],[75.89218,32.6588],[75.89307,32.6664],[75.89754,32.66978],[75.89693,32.6721],[75.89883,32.67319],[75.89723,32.67747],[75.89719,32.68552],[75.90046,32.69353],[75.89738,32.69754],[75.90483,32.70889],[75.90695,32.71607],[75.91829,32.72715],[75.91833,32.73482],[75.92297,32.74355],[75.92175,32.74717],[75.90478,32.76478],[75.89795,32.76917],[75.8965,32.77492],[75.88582,32.78225],[75.88421,32.80193],[75.87909,32.81121],[75.86504,32.81338],[75.86563,32.8203],[75.85266,32.83438],[75.84819,32.83648],[75.84608,32.83507],[75.84244,32.83769],[75.84047,32.84343],[75.82988,32.84503],[75.82636,32.85001],[75.81862,32.85273],[75.81693,32.85879],[75.81083,32.86033],[75.80947,32.86931],[75.80598,32.8768],[75.79625,32.88426],[75.81259,32.89311],[75.81715,32.89937],[75.81895,32.90753],[75.82427,32.91131],[75.83073,32.91946],[75.83164,32.92286],[75.83709,32.92777],[75.84519,32.92846],[75.84993,32.9253],[75.85933,32.9254],[75.86565,32.92291],[75.873,32.92385],[75.87679,32.91948],[75.88328,32.91868],[75.88875,32.91454],[75.89914,32.91221],[75.90385,32.91279],[75.91293,32.90671],[75.91886,32.90576],[75.92827,32.88979],[75.94106,32.87828],[75.95011,32.87283],[75.96971,32.88505],[75.97537,32.88648],[75.98124,32.8951],[75.99651,32.89935],[75.99895,32.90204],[76.00234,32.90152],[76.00912,32.9087],[76.02719,32.91571],[76.03314,32.92137],[76.032,32.92691],[76.03436,32.93174],[76.03883,32.93575],[76.06126,32.94095],[76.06831,32.9519],[76.08302,32.95525],[76.08224,32.96157],[76.09218,32.96334],[76.09416,32.96516],[76.10629,32.98688],[76.1038,32.99119],[76.10793,33.0],[76.1072,33.00606],[76.13631,33.00959],[76.16034,33.00663],[76.1679,33.00856],[76.17559,33.01813],[76.18009,33.02054],[76.2035,33.01599],[76.21233,33.01645],[76.22071,33.02288],[76.24277,33.02082],[76.24623,33.02728],[76.25535,33.03405],[76.27291,33.03705],[76.27495,33.04076],[76.27632,33.05105],[76.2897,33.0568],[76.29041,33.05985],[76.28929,33.06794],[76.28366,33.07191],[76.28282,33.07684],[76.28305,33.08636],[76.28848,33.09872],[76.28595,33.10239],[76.30029,33.11235],[76.30522,33.11962],[76.31341,33.12267],[76.31486,33.12505],[76.3263,33.12734],[76.345,33.14364],[76.3621,33.1532],[76.36846,33.15346],[76.37661,33.16533],[76.39089,33.17385],[76.39785,33.18212],[76.4011,33.18289],[76.4039,33.18579],[76.41416,33.18505],[76.42033,33.18766],[76.42826,33.18197],[76.43571,33.18029],[76.44483,33.18147],[76.45437,33.17944],[76.46639,33.18241],[76.47278,33.17976],[76.48064,33.17887],[76.50175,33.18988],[76.50931,33.19584],[76.52288,33.19588],[76.53686,33.20012],[76.54719,33.19855],[76.56165,33.20954],[76.57266,33.20633],[76.58337,33.20662],[76.59112,33.20486],[76.59589,33.20591],[76.59923,33.20307],[76.59718,33.19572],[76.59863,33.19027],[76.60134,33.18861],[76.60626,33.19043],[76.61107,33.18734],[76.61257,33.17338],[76.62543,33.16614],[76.63329,33.16468],[76.63941,33.16166],[76.64444,33.16187],[76.64837,33.164],[76.655,33.16375],[76.66461,33.17128],[76.67166,33.17066],[76.6859,33.17352],[76.69963,33.17317],[76.70726,33.17687],[76.70932,33.1807],[76.71997,33.18168],[76.72895,33.1767],[76.74682,33.17841],[76.74676,33.18308],[76.75018,33.18806],[76.75009,33.19149],[76.75781,33.19539],[76.76624,33.20789],[76.76659,33.21084],[76.77095,33.21304],[76.77161,33.21856],[76.77584,33.22049],[76.77941,33.23812],[76.77312,33.24215],[76.77094,33.24932],[76.75431,33.24868],[76.73705,33.2611],[76.73848,33.26868],[76.7325,33.27554],[76.73271,33.28151],[76.72773,33.28348],[76.72986,33.28871],[76.72847,33.29104],[76.72982,33.29676],[76.73211,33.29933],[76.72865,33.30394],[76.72855,33.30822],[76.72524,33.31134],[76.72588,33.31516],[76.71775,33.32897],[76.71208,33.33108],[76.70408,33.32781],[76.69596,33.32796],[76.68238,33.33677],[76.67388,33.33927],[76.67096,33.34202],[76.67242,33.34916],[76.65929,33.3567],[76.65839,33.36469],[76.65198,33.37044],[76.65148,33.38342],[76.641,33.39098],[76.63647,33.40184],[76.63841,33.40343],[76.63212,33.40919],[76.63612,33.41144],[76.63698,33.41553],[76.62955,33.4239],[76.62896,33.43489],[76.62051,33.43956],[76.61645,33.43992],[76.61327,33.43893],[76.61088,33.4349],[76.60576,33.43167],[76.60021,33.43143],[76.59341,33.42576],[76.58185,33.42579],[76.57795,33.42956],[76.57999,33.43831],[76.57706,33.44335],[76.57654,33.45298],[76.56949,33.46617],[76.56342,33.46252],[76.55764,33.46203],[76.55409,33.46411],[76.54964,33.46405],[76.54548,33.46873],[76.54091,33.47068],[76.53477,33.48219],[76.52784,33.48349],[76.52291,33.49338],[76.51442,33.49514],[76.5078,33.49957],[76.5067,33.50998],[76.50205,33.51598],[76.49927,33.51742],[76.49188,33.51691],[76.47908,33.52683],[76.46995,33.52768],[76.45916,33.53389],[76.45849,33.53852],[76.46467,33.54523],[76.4624,33.55162],[76.45783,33.55428],[76.44879,33.56368],[76.44685,33.56401],[76.44338,33.55979],[76.43996,33.54742],[76.43588,33.54219],[76.4264,33.53728],[76.4152,33.53908],[76.41024,33.54313],[76.37992,33.55292],[76.37928,33.55821],[76.37475,33.56588],[76.38073,33.57695],[76.36646,33.58575],[76.36004,33.59454],[76.35865,33.60369],[76.34692,33.60494],[76.33624,33.61051],[76.3295,33.60427],[76.32218,33.60227],[76.31744,33.60718],[76.30651,33.60956],[76.2996,33.59824],[76.30182,33.58976],[76.31014,33.57861],[76.30978,33.57146],[76.30234,33.56736],[76.27787,33.56752],[76.25965,33.56502],[76.24574,33.54554],[76.24123,33.54831],[76.23192,33.54519],[76.22503,33.54759],[76.21977,33.55532],[76.20914,33.56646],[76.20549,33.56771],[76.20544,33.5692],[76.20648,33.57328],[76.21787,33.57366],[76.22522,33.57728],[76.2314,33.58695],[76.22792,33.5941],[76.22412,33.59684],[76.22422,33.60031],[76.23071,33.60304],[76.23865,33.60244],[76.24034,33.60485],[76.24096,33.60959],[76.23723,33.61759],[76.23281,33.62316],[76.22778,33.62563],[76.22937,33.62983],[76.24891,33.63864],[76.25304,33.63808],[76.26556,33.64351],[76.27048,33.64331],[76.27412,33.65232],[76.28005,33.65469],[76.28465,33.66184],[76.27352,33.66935],[76.2705,33.67559],[76.26621,33.67953],[76.2696,33.6851],[76.26472,33.68942],[76.26569,33.69743],[76.26311,33.70305],[76.26618,33.70694],[76.26324,33.71209],[76.26713,33.71709],[76.26741,33.72468],[76.27117,33.73075],[76.26578,33.73378],[76.26726,33.74038],[76.26547,33.74638],[76.26021,33.75],[76.25002,33.75246],[76.24786,33.75456],[76.24708,33.75853],[76.23611,33.75987],[76.21885,33.75873],[76.21258,33.76118],[76.2108,33.77119],[76.20036,33.77564],[76.19867,33.78723],[76.18474,33.80015],[76.16725,33.79782],[76.16138,33.80185],[76.15975,33.80847],[76.16324,33.81741],[76.16598,33.81935],[76.16264,33.8212],[76.15687,33.82999],[76.15998,33.83692],[76.15425,33.8406],[76.1554,33.84725],[76.14908,33.85015],[76.14951,33.85362],[76.14255,33.86646],[76.13754,33.87008],[76.13847,33.87242],[76.13668,33.8786],[76.12501,33.88528],[76.12296,33.88905],[76.1179,33.88872],[76.10725,33.89185],[76.10024,33.89626],[76.0969,33.90041],[76.09191,33.90243],[76.08258,33.90348],[76.07008,33.90887],[76.04776,33.91242],[76.03804,33.91887],[76.03257,33.91966],[76.03389,33.92417],[76.04137,33.92529],[76.04898,33.93149],[76.04947,33.93386],[76.04826,33.94036],[76.04292,33.95255],[76.02654,33.97163],[76.02436,33.98212],[76.01795,33.97507],[76.01219,33.97439],[76.00542,33.97674],[75.99053,33.97239],[75.9782,33.97219],[75.97271,33.96252],[75.96883,33.96016],[75.96654,33.95452],[75.9587,33.95685],[75.9496,33.95589],[75.94286,33.96046],[75.91745,33.96295],[75.90854,33.96888],[75.89856,33.96744],[75.8932,33.96909],[75.88672,33.96827],[75.87356,33.96205],[75.85249,33.96225],[75.84525,33.95447],[75.83824,33.95496],[75.83065,33.95874],[75.82212,33.96558],[75.81963,33.97221],[75.8256,33.97781],[75.83024,33.9924],[75.84161,33.99957],[75.84371,34.00324],[75.84306,34.00478],[75.8358,34.00714],[75.82783,34.00626],[75.81827,34.00751],[75.81429,34.01451],[75.79984,34.02298],[75.79754,34.02598],[75.79694,34.03045],[75.78671,34.0312],[75.7797,34.03762],[75.76919,34.04128],[75.76769,34.04381],[75.76852,34.05492],[75.75517,34.05674],[75.75,34.05485],[75.74148,34.05616],[75.73703,34.05891],[75.74254,34.07326],[75.73475,34.07895],[75.73337,34.08411],[75.7251,34.08966],[75.72148,34.0944],[75.7188,34.10325],[75.70774,34.10724],[75.69684,34.11343],[75.68736,34.11605],[75.68563,34.12091],[75.69125,34.12761],[75.68316,34.13243],[75.68229,34.13556],[75.68571,34.14216],[75.68235,34.14404],[75.67361,34.14516],[75.66795,34.14429],[75.67016,34.14998],[75.67814,34.15378],[75.68005,34.16246],[75.68448,34.16678],[75.68278,34.17059],[75.68411,34.17802],[75.68805,34.18486],[75.6873,34.18694],[75.69072,34.19527],[75.68529,34.19956],[75.68054,34.20096],[75.67075,34.19803],[75.66242,34.19913],[75.65739,34.20294],[75.6549,34.20796],[75.64812,34.212],[75.63701,34.20979],[75.62607,34.20131],[75.62179,34.20179],[75.6046,34.19519],[75.59336,34.19769],[75.57993,34.21397],[75.57026,34.21137],[75.55533,34.21141],[75.53824,34.22308],[75.53427,34.22366],[75.52973,34.22683],[75.52313,34.229],[75.51459,34.22671],[75.5029,34.23435],[75.49536,34.2324],[75.49696,34.23764],[75.4959,34.24097],[75.48858,34.24662],[75.48238,34.25506],[75.48379,34.2587],[75.48105,34.2624],[75.48295,34.26904],[75.48217,34.27165],[75.47485,34.27759],[75.47011,34.27939],[75.45918,34.27942],[75.45362,34.28592],[75.44424,34.28033],[75.43949,34.27949],[75.43737,34.28248],[75.43087,34.28357],[75.42612,34.28219],[75.42263,34.2839],[75.41922,34.28189],[75.41089,34.28469],[75.4035,34.28469],[75.39284,34.29708],[75.38892,34.30548],[75.39027,34.31103],[75.39605,34.31672],[75.38467,34.32824],[75.38398,34.33672],[75.37602,34.34195],[75.38577,34.34989],[75.38476,34.35402],[75.38051,34.3583],[75.38571,34.36614],[75.37338,34.3715],[75.37676,34.37567],[75.37878,34.38206],[75.37795,34.38511],[75.37714,34.38714],[75.36697,34.39103],[75.3666,34.39774],[75.36963,34.40176],[75.37234,34.4126],[75.36512,34.41848],[75.35738,34.418],[75.3538,34.42456],[75.3351,34.42927],[75.3342,34.43324],[75.3297,34.43623],[75.32754,34.43977],[75.33317,34.44295],[75.33291,34.44709],[75.33049,34.4503],[75.3326,34.45193],[75.33723,34.45167],[75.34016,34.46056],[75.34905,34.46346],[75.35324,34.46879],[75.34965,34.4753],[75.35024,34.48014],[75.34459,34.48505],[75.34292,34.48944],[75.34733,34.49556],[75.34738,34.5027],[75.35293,34.51759],[75.3572,34.52129],[75.36612,34.52145],[75.36418,34.52899],[75.36557,34.5381],[75.36111,34.54017],[75.36176,34.54209],[75.35562,34.54687],[75.35267,34.55315],[75.34416,34.56303],[75.3379,34.56474],[75.33366,34.56801],[75.32853,34.56879],[75.3199,34.56484],[75.31504,34.56965],[75.31181,34.57686],[75.30636,34.57875],[75.29956,34.58694],[75.28971,34.58917],[75.28637,34.59543],[75.27799,34.59439],[75.26912,34.59792],[75.26553,34.60226],[75.25337,34.60413],[75.25326,34.6075],[75.25834,34.61459],[75.25664,34.62151],[75.25407,34.62828],[75.2415,34.63778],[75.23288,34.63616],[75.22993,34.63303],[75.22533,34.63463],[75.22062,34.63383],[75.21272,34.63812],[75.20807,34.63868],[75.20603,34.64378],[75.20948,34.64767],[75.21818,34.6516],[75.20446,34.6535],[75.20791,34.66542],[75.23207,34.69082],[75.25827,34.69757],[75.2543,34.72169],[75.26256,34.73168],[75.26357,34.74458],[75.25093,34.74986],[75.25625,34.77389],[75.23966,34.80183],[75.22324,34.81752],[75.19062,34.83493],[75.17257,34.84267],[75.15809,34.84548],[75.14423,34.85028],[75.14197,34.87495],[75.1013,34.9191],[75.07164,34.9192],[75.06412,34.90524],[75.06362,34.87081],[75.06528,34.85749],[75.06403,34.84711],[75.05712,34.84234],[75.04376,34.84336],[75.0311,34.84843],[75.01634,34.84825],[74.95674,34.80813],[74.95063,34.80174],[74.92982,34.78697],[74.9186,34.78511],[74.90731,34.79253],[74.90145,34.80165],[74.89857,34.80972],[74.88707,34.82228],[74.87215,34.83019],[74.86104,34.82833],[74.85322,34.8311],[74.83969,34.84074],[74.82325,34.83736],[74.81329,34.84362],[74.80757,34.85048],[74.79846,34.85207],[74.78785,34.85246],[74.77694,34.84077],[74.76276,34.84408],[74.75017,34.84499],[74.74026,34.84836],[74.73948,34.85411],[74.72944,34.86325],[74.71669,34.86649],[74.71145,34.88092],[74.70167,34.88303],[74.69822,34.88072],[74.68415,34.8788],[74.66409,34.9004],[74.66253,34.90677],[74.6464,34.90364],[74.63434,34.90986],[74.62008,34.92063],[74.60423,34.9248],[74.59653,34.9218],[74.59032,34.91584],[74.57701,34.91392],[74.56975,34.96228],[74.57053,34.97563],[74.5763,34.98654],[74.58502,34.99794],[74.58778,35.00636],[74.58509,35.01812],[74.57837,35.02432],[74.56047,35.02602],[74.55552,35.03135],[74.53073,35.04618],[74.52907,35.05129],[74.53007,35.06013],[74.53885,35.06856],[74.5398,35.07498]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"10","area_level":"State","area_name":"Bihar","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[84.10906,27.52112],[84.10498,27.52105],[84.0977,27.51709],[84.09985,27.51045],[84.09868,27.5053],[84.09713,27.5049],[84.09869,27.50257],[84.09484,27.48902],[84.09131,27.48908],[84.0895,27.48594],[84.08491,27.48336],[84.07798,27.48423],[84.07453,27.48247],[84.07448,27.48046],[84.07119,27.48162],[84.06949,27.48058],[84.0663,27.46933],[84.06166,27.46669],[84.0624,27.46428],[84.05908,27.46157],[84.06013,27.45795],[84.0621,27.45671],[84.06014,27.45437],[84.06116,27.45271],[84.05524,27.44988],[84.05156,27.44263],[84.04354,27.44341],[84.03704,27.44228],[84.03635,27.44081],[84.03189,27.44157],[84.03121,27.43859],[84.02742,27.43968],[84.02574,27.43819],[84.02741,27.43584],[84.02693,27.43354],[84.02187,27.43333],[84.01962,27.43616],[84.01581,27.43488],[84.01241,27.4385],[84.00882,27.43801],[84.00841,27.44027],[84.00549,27.43982],[84.00528,27.44246],[84.00245,27.4424],[84.00135,27.44003],[83.99949,27.44226],[83.99838,27.44105],[83.99669,27.44605],[83.98746,27.44332],[83.9846,27.44384],[83.97808,27.43969],[83.9777,27.44189],[83.97549,27.44306],[83.97343,27.44187],[83.96731,27.4461],[83.95729,27.4426],[83.94604,27.4409],[83.94093,27.44845],[83.93464,27.44833],[83.93348,27.45047],[83.91388,27.4409],[83.89123,27.43887],[83.87549,27.43539],[83.86482,27.43865],[83.85568,27.44581],[83.85047,27.44678],[83.84726,27.44564],[83.84299,27.44171],[83.8373,27.43161],[83.83307,27.42932],[83.83311,27.42508],[83.84304,27.41419],[83.85603,27.40488],[83.8599,27.39484],[83.8782,27.38448],[83.88251,27.37858],[83.88325,27.37424],[83.88021,27.36534],[83.87201,27.35778],[83.86394,27.34723],[83.86234,27.33568],[83.83657,27.32222],[83.84542,27.31518],[83.85266,27.31729],[83.85934,27.30807],[83.87144,27.30724],[83.90076,27.32569],[83.91663,27.32654],[83.92548,27.32141],[83.93247,27.31139],[83.9342,27.30653],[83.93407,27.29975],[83.92983,27.29269],[83.91258,27.27756],[83.90681,27.27564],[83.90502,27.27349],[83.90507,27.25762],[83.9121,27.24576],[83.9193,27.24454],[83.9233,27.24178],[83.9324,27.23936],[83.95341,27.23625],[83.96081,27.23148],[83.96332,27.22851],[83.96254,27.22664],[83.97018,27.22399],[83.97274,27.21819],[83.96752,27.21306],[83.96747,27.20951],[83.97177,27.20845],[83.98696,27.19753],[83.98882,27.18843],[83.99339,27.18164],[83.99418,27.17517],[83.99327,27.17317],[83.98844,27.1716],[83.97874,27.16487],[83.97536,27.15582],[83.95906,27.13688],[83.9628,27.12769],[83.95952,27.12207],[83.95219,27.11862],[83.94767,27.11249],[83.94647,27.09082],[83.95284,27.08493],[83.9644,27.08412],[83.96698,27.08712],[83.9784,27.09076],[83.98926,27.09085],[83.99999,27.10029],[84.0032,27.10186],[84.00877,27.09924],[84.01644,27.10542],[84.02201,27.10413],[84.02397,27.10012],[84.03034,27.09763],[84.03037,27.09384],[84.02494,27.09248],[84.02862,27.08603],[84.02048,27.07941],[84.0166,27.0718],[84.00396,27.07152],[84.00006,27.06859],[84.0056,27.06023],[84.01189,27.05698],[84.018,27.05602],[84.02818,27.04947],[84.03132,27.04563],[84.03908,27.04404],[84.04714,27.04576],[84.0495,27.04327],[84.04953,27.03502],[84.04413,27.02318],[84.04425,27.01672],[84.03731,27.00908],[84.0459,27.005],[84.05281,26.99695],[84.05256,26.9947],[84.0567,26.98966],[84.054,26.98517],[84.04785,26.9846],[84.04576,26.98224],[84.05379,26.97523],[84.053,26.9675],[84.05483,26.96006],[84.0528,26.95498],[84.04597,26.95245],[84.04201,26.9468],[84.03491,26.94521],[84.03214,26.94118],[84.03497,26.9382],[84.04311,26.9405],[84.04654,26.93916],[84.04323,26.93179],[84.05336,26.92967],[84.05621,26.92311],[84.05997,26.92019],[84.05909,26.91646],[84.05309,26.9096],[84.05237,26.90641],[84.05528,26.90263],[84.05806,26.90189],[84.06085,26.89563],[84.06027,26.8881],[84.06699,26.88849],[84.07521,26.88342],[84.07822,26.87904],[84.08141,26.87737],[84.08421,26.87744],[84.08736,26.88169],[84.09433,26.88162],[84.09649,26.87623],[84.09814,26.87594],[84.1045,26.88191],[84.10676,26.88774],[84.10758,26.89693],[84.11042,26.8986],[84.11587,26.89494],[84.11636,26.88912],[84.11795,26.88771],[84.129,26.8932],[84.13128,26.88445],[84.13547,26.88333],[84.14,26.88463],[84.14153,26.88712],[84.14641,26.88542],[84.14771,26.88228],[84.14351,26.87961],[84.14709,26.87245],[84.14233,26.87153],[84.14037,26.8676],[84.14061,26.85265],[84.14584,26.8481],[84.14917,26.84258],[84.15622,26.83756],[84.1661,26.83377],[84.1776,26.83239],[84.18174,26.83348],[84.18679,26.84164],[84.1833,26.84751],[84.19013,26.85847],[84.19303,26.86075],[84.19786,26.85955],[84.20611,26.86172],[84.21949,26.8716],[84.23557,26.86771],[84.25409,26.85659],[84.25693,26.84922],[84.26181,26.84258],[84.2601,26.83351],[84.26093,26.83022],[84.25354,26.82523],[84.25036,26.81933],[84.25682,26.81823],[84.25421,26.81243],[84.26,26.80699],[84.25998,26.80503],[84.25717,26.78938],[84.25,26.77373],[84.23258,26.75367],[84.24067,26.73872],[84.24942,26.72916],[84.25542,26.72662],[84.26629,26.73995],[84.27568,26.74197],[84.28579,26.74993],[84.30587,26.74949],[84.31421,26.73904],[84.31468,26.73531],[84.31811,26.73199],[84.32424,26.71516],[84.32586,26.71415],[84.33006,26.6841],[84.33503,26.68155],[84.34304,26.6809],[84.35018,26.67805],[84.37658,26.6775],[84.40391,26.67177],[84.40516,26.67303],[84.4063,26.67092],[84.41041,26.67025],[84.41122,26.65036],[84.40978,26.64674],[84.41327,26.63733],[84.41971,26.62682],[84.4104,26.62322],[84.39988,26.62454],[84.39073,26.62109],[84.38619,26.62168],[84.37879,26.6147],[84.36487,26.61632],[84.35399,26.61998],[84.33502,26.61555],[84.33163,26.61249],[84.3258,26.61162],[84.3191,26.61151],[84.316,26.61448],[84.30727,26.61632],[84.30542,26.61427],[84.30325,26.61444],[84.30011,26.60378],[84.29582,26.60446],[84.29451,26.6026],[84.28582,26.6058],[84.28453,26.59959],[84.28132,26.5996],[84.26792,26.60165],[84.2686,26.60361],[84.26647,26.60574],[84.23956,26.61001],[84.2391,26.61298],[84.22923,26.61315],[84.22928,26.61654],[84.22795,26.61751],[84.21108,26.62001],[84.20848,26.62276],[84.20119,26.62477],[84.17443,26.62427],[84.17362,26.62282],[84.16927,26.62264],[84.16029,26.62451],[84.15662,26.62697],[84.15885,26.63213],[84.1587,26.6362],[84.14516,26.63472],[84.13632,26.63603],[84.13055,26.63346],[84.11251,26.6344],[84.11197,26.63064],[84.10296,26.63351],[84.1006,26.63595],[84.0865,26.63914],[84.0884,26.63487],[84.08735,26.62585],[84.0852,26.62383],[84.08863,26.61784],[84.08636,26.6124],[84.08998,26.60693],[84.08909,26.60302],[84.08488,26.59828],[84.08329,26.59249],[84.07784,26.59033],[84.07504,26.58591],[84.0756,26.58341],[84.06611,26.57699],[84.06688,26.57269],[84.06064,26.5682],[84.05838,26.56327],[84.05941,26.56128],[84.0551,26.55838],[84.05633,26.54417],[84.04812,26.5364],[84.02381,26.53191],[84.01406,26.52738],[84.00832,26.52194],[84.00649,26.52226],[84.00685,26.52528],[83.99882,26.52723],[83.99264,26.53317],[83.98274,26.53153],[83.97613,26.53351],[83.97511,26.52785],[83.97652,26.52583],[83.97151,26.51761],[83.97184,26.51421],[83.97362,26.51266],[83.97201,26.51028],[83.97391,26.5083],[83.97083,26.50751],[83.96347,26.50808],[83.96194,26.51023],[83.9517,26.50887],[83.94901,26.5102],[83.9484,26.51476],[83.95261,26.51635],[83.95279,26.51776],[83.94668,26.51878],[83.94036,26.52524],[83.93462,26.52513],[83.93124,26.52032],[83.92706,26.51888],[83.9223,26.51961],[83.9164,26.51667],[83.90809,26.51908],[83.90606,26.51265],[83.90674,26.50938],[83.91517,26.50284],[83.9124,26.49773],[83.91269,26.48388],[83.9106,26.48322],[83.90962,26.47569],[83.91231,26.4757],[83.90973,26.46616],[83.91146,26.45591],[83.90923,26.45375],[83.90786,26.44729],[83.91104,26.44705],[83.91056,26.44991],[83.92445,26.44449],[83.94678,26.44098],[83.94624,26.43862],[83.96333,26.4373],[83.98101,26.4328],[83.99126,26.43224],[83.9979,26.44681],[84.00763,26.44396],[84.01683,26.44755],[84.02379,26.44025],[84.02442,26.43424],[84.02261,26.43089],[84.03486,26.41946],[84.03386,26.41165],[84.04097,26.41269],[84.03968,26.41089],[84.0412,26.40726],[84.04363,26.40951],[84.04951,26.40711],[84.04937,26.40374],[84.05287,26.4046],[84.05538,26.4022],[84.06313,26.40072],[84.06244,26.39842],[84.06547,26.39647],[84.06513,26.39285],[84.06798,26.39108],[84.06816,26.38827],[84.07581,26.38644],[84.07609,26.38507],[84.07918,26.38465],[84.07917,26.38251],[84.08401,26.38178],[84.08771,26.38416],[84.08876,26.38678],[84.09929,26.3846],[84.1029,26.38571],[84.12199,26.38512],[84.12466,26.38304],[84.1356,26.38171],[84.13752,26.37794],[84.16113,26.37407],[84.16378,26.37544],[84.17542,26.37309],[84.17644,26.37128],[84.1759,26.3606],[84.17284,26.3535],[84.17254,26.33435],[84.18597,26.3129],[84.18394,26.3087],[84.17774,26.3032],[84.17451,26.29227],[84.17662,26.26454],[84.17278,26.26151],[84.16408,26.25911],[84.16117,26.25592],[84.1615,26.25032],[84.16621,26.24095],[84.16309,26.24184],[84.15116,26.25779],[84.14655,26.25521],[84.13222,26.25903],[84.12917,26.25555],[84.12726,26.258],[84.12169,26.25887],[84.12002,26.25807],[84.11679,26.24974],[84.11968,26.24791],[84.11744,26.24011],[84.10708,26.24123],[84.10602,26.23669],[84.09949,26.23732],[84.09812,26.23332],[84.09104,26.23378],[84.09017,26.23034],[84.08764,26.23036],[84.08825,26.22353],[84.08641,26.21875],[84.08022,26.21971],[84.08016,26.2223],[84.06346,26.22415],[84.06208,26.22227],[84.0512,26.22915],[84.04213,26.22996],[84.0377,26.23206],[84.03823,26.23699],[84.02726,26.23965],[84.02466,26.23777],[84.01923,26.23894],[84.0156,26.23377],[84.01231,26.2324],[84.01579,26.22239],[84.02302,26.22002],[84.02859,26.2203],[84.03121,26.21689],[84.02766,26.21432],[84.02907,26.21119],[84.03188,26.2094],[84.03924,26.20905],[84.03835,26.20097],[84.03538,26.19863],[84.03235,26.19984],[84.02859,26.19565],[84.02663,26.19691],[84.01606,26.19592],[84.01026,26.1911],[84.00801,26.18741],[84.00938,26.17559],[84.0187,26.16747],[84.03345,26.16069],[84.03436,26.15119],[84.02744,26.1424],[84.04345,26.13484],[84.05012,26.13002],[84.05177,26.12056],[84.05004,26.12001],[84.04873,26.10906],[84.05597,26.09999],[84.08867,26.10024],[84.10381,26.09274],[84.11777,26.07998],[84.13729,26.05221],[84.17246,26.0246],[84.17003,25.98768],[84.17567,25.99137],[84.17463,25.99284],[84.17604,25.99652],[84.18648,25.99345],[84.19628,25.98788],[84.20153,25.99036],[84.20708,25.99983],[84.21307,25.9949],[84.21768,25.99473],[84.23929,25.98506],[84.24513,25.98063],[84.24491,25.97579],[84.28229,25.95878],[84.29691,25.94517],[84.31187,25.94377],[84.35395,25.95878],[84.38737,25.93733],[84.4119,25.93078],[84.41376,25.923],[84.41987,25.91351],[84.42496,25.90167],[84.4289,25.89751],[84.42756,25.89124],[84.43531,25.88987],[84.43662,25.8916],[84.4544,25.88773],[84.45953,25.88815],[84.46015,25.88951],[84.4724,25.88171],[84.47852,25.88506],[84.49015,25.88645],[84.48949,25.88832],[84.51075,25.87176],[84.53398,25.87637],[84.54322,25.85996],[84.54066,25.85966],[84.5337,25.86403],[84.52322,25.86029],[84.53076,25.8535],[84.53052,25.83161],[84.54861,25.82854],[84.55087,25.84068],[84.55211,25.84018],[84.58178,25.82508],[84.62457,25.79217],[84.62347,25.7708],[84.61941,25.7724],[84.61835,25.77129],[84.61346,25.77577],[84.60738,25.77141],[84.60622,25.76127],[84.60296,25.76194],[84.6107,25.75469],[84.62535,25.74753],[84.63178,25.73928],[84.63465,25.72794],[84.63017,25.72885],[84.62884,25.72617],[84.62743,25.7263],[84.6112,25.73108],[84.6114,25.73249],[84.60776,25.73533],[84.60032,25.73837],[84.56028,25.7369],[84.5642,25.71377],[84.5618,25.6858],[84.55743,25.67951],[84.55532,25.68009],[84.55645,25.68195],[84.55105,25.68585],[84.53519,25.69077],[84.53944,25.72673],[84.53446,25.72423],[84.52887,25.68249],[84.52005,25.67496],[84.50775,25.68185],[84.5054,25.67692],[84.50437,25.67764],[84.49934,25.67468],[84.49606,25.67674],[84.49196,25.67649],[84.49361,25.69084],[84.4708,25.68724],[84.46588,25.69168],[84.46606,25.69535],[84.46893,25.69662],[84.46829,25.69853],[84.46249,25.69767],[84.46423,25.70077],[84.46217,25.70928],[84.45289,25.70943],[84.45351,25.71433],[84.44425,25.71065],[84.44428,25.70849],[84.44041,25.70836],[84.44029,25.71106],[84.42965,25.71162],[84.43155,25.70768],[84.42808,25.70119],[84.42768,25.69362],[84.42318,25.69367],[84.41477,25.69804],[84.40674,25.69842],[84.40109,25.70834],[84.40654,25.71598],[84.40058,25.72492],[84.39851,25.72555],[84.40004,25.72937],[84.38439,25.73277],[84.38782,25.7376],[84.39012,25.73691],[84.39363,25.7442],[84.3917,25.74516],[84.38495,25.74751],[84.37783,25.73928],[84.37374,25.74429],[84.37177,25.74203],[84.3769,25.73715],[84.37522,25.73533],[84.36518,25.74256],[84.33634,25.74423],[84.32842,25.73193],[84.32956,25.70866],[84.32435,25.67103],[84.31703,25.66729],[84.31689,25.67249],[84.29918,25.67194],[84.29798,25.67739],[84.29291,25.67565],[84.28761,25.67755],[84.28815,25.67326],[84.29139,25.67065],[84.29954,25.6685],[84.30026,25.66539],[84.29451,25.66113],[84.27686,25.66041],[84.27436,25.66289],[84.22322,25.66251],[84.20601,25.66946],[84.19889,25.70208],[84.17454,25.71763],[84.17423,25.72062],[84.16993,25.72291],[84.16694,25.72158],[84.16298,25.72487],[84.15449,25.72744],[84.15467,25.72924],[84.15086,25.72925],[84.14897,25.72695],[84.15275,25.72695],[84.1557,25.72385],[84.1526,25.72346],[84.14981,25.7188],[84.14174,25.71609],[84.12988,25.71779],[84.13525,25.72403],[84.14164,25.72174],[84.14223,25.72815],[84.1399,25.73166],[84.12913,25.72371],[84.10506,25.72122],[84.08896,25.71309],[84.07516,25.69527],[84.08512,25.65258],[84.08128,25.63631],[84.04616,25.62691],[84.01741,25.61469],[83.95837,25.57082],[83.92459,25.55431],[83.91419,25.54521],[83.90209,25.52403],[83.89418,25.51992],[83.87621,25.51806],[83.87416,25.50953],[83.87742,25.50392],[83.87781,25.49925],[83.87159,25.49313],[83.87074,25.48751],[83.8636,25.48441],[83.85675,25.46857],[83.83278,25.45761],[83.83049,25.45838],[83.82489,25.4658],[83.81656,25.46276],[83.81269,25.45364],[83.81281,25.4482],[83.81959,25.45026],[83.82537,25.4459],[83.84192,25.44692],[83.84652,25.4388],[83.84635,25.43435],[83.83299,25.43103],[83.83179,25.43217],[83.83288,25.43566],[83.82914,25.43621],[83.82151,25.43434],[83.8124,25.42962],[83.80156,25.42983],[83.80006,25.42775],[83.80096,25.42549],[83.81302,25.4231],[83.81439,25.42121],[83.80784,25.4091],[83.78965,25.39677],[83.78481,25.3963],[83.7763,25.39903],[83.77278,25.39816],[83.76914,25.39339],[83.76897,25.38636],[83.75778,25.38952],[83.75499,25.39225],[83.75651,25.39675],[83.76628,25.3974],[83.76627,25.40095],[83.75546,25.40447],[83.74507,25.40046],[83.74351,25.40787],[83.74059,25.41063],[83.73407,25.4062],[83.73235,25.39815],[83.73059,25.39743],[83.72446,25.40001],[83.71743,25.39752],[83.71362,25.3935],[83.71012,25.38604],[83.70661,25.38635],[83.70526,25.39468],[83.70396,25.39633],[83.70168,25.39616],[83.69448,25.38895],[83.69655,25.38247],[83.69059,25.38395],[83.68206,25.37862],[83.68401,25.37626],[83.68938,25.37571],[83.69453,25.37123],[83.69371,25.36963],[83.67666,25.36434],[83.66392,25.37283],[83.66709,25.36272],[83.66439,25.36191],[83.65986,25.36373],[83.65595,25.36836],[83.65794,25.35963],[83.65453,25.35688],[83.65135,25.3574],[83.64916,25.35398],[83.65281,25.34834],[83.64933,25.3445],[83.6488,25.33927],[83.6463,25.34247],[83.64219,25.33973],[83.63371,25.34321],[83.63515,25.33584],[83.63414,25.33435],[83.62989,25.33386],[83.62844,25.32852],[83.62404,25.32872],[83.62138,25.33147],[83.61685,25.33206],[83.6081,25.33152],[83.60601,25.3287],[83.59628,25.32767],[83.58742,25.32175],[83.58574,25.31531],[83.58062,25.3171],[83.57624,25.31504],[83.5771,25.31011],[83.57372,25.30613],[83.57073,25.30718],[83.57348,25.31249],[83.57206,25.31466],[83.5617,25.31359],[83.5573,25.31148],[83.55392,25.31481],[83.53991,25.31579],[83.53715,25.313],[83.53729,25.30977],[83.54723,25.31406],[83.55376,25.31022],[83.55409,25.30849],[83.54514,25.30675],[83.5428,25.30408],[83.53837,25.30436],[83.53401,25.29735],[83.52808,25.30247],[83.52346,25.30256],[83.5237,25.29614],[83.52694,25.29298],[83.51525,25.2847],[83.51104,25.28879],[83.50892,25.28844],[83.50546,25.28104],[83.50199,25.2824],[83.50447,25.28658],[83.50228,25.28747],[83.49797,25.28584],[83.49739,25.28035],[83.49138,25.27991],[83.49107,25.28278],[83.49337,25.28491],[83.49354,25.2877],[83.49235,25.28973],[83.49038,25.28948],[83.48995,25.28404],[83.48699,25.28359],[83.48532,25.27932],[83.48003,25.27625],[83.4768,25.27181],[83.47971,25.26752],[83.47701,25.26151],[83.47066,25.2576],[83.46792,25.25234],[83.46268,25.25036],[83.45299,25.25627],[83.45009,25.26104],[83.447,25.2599],[83.44651,25.25752],[83.44302,25.25456],[83.44214,25.25915],[83.43896,25.25783],[83.44077,25.25331],[83.43703,25.24887],[83.43623,25.24424],[83.43366,25.24553],[83.43269,25.25045],[83.42721,25.25367],[83.42475,25.25182],[83.42741,25.24791],[83.42672,25.24639],[83.42182,25.24652],[83.41798,25.25066],[83.40991,25.24661],[83.40886,25.24079],[83.4128,25.23885],[83.41361,25.23549],[83.41257,25.23495],[83.4077,25.23952],[83.40626,25.23773],[83.40657,25.23381],[83.40928,25.22932],[83.40277,25.22437],[83.40206,25.2212],[83.40384,25.21315],[83.40204,25.20906],[83.4009,25.20952],[83.40217,25.21278],[83.39761,25.21631],[83.39524,25.21452],[83.39586,25.20759],[83.39312,25.20434],[83.39038,25.20496],[83.38971,25.21008],[83.38622,25.21215],[83.38248,25.2107],[83.38353,25.20328],[83.38194,25.20175],[83.37269,25.20033],[83.3663,25.19536],[83.36339,25.19822],[83.35725,25.19966],[83.3538,25.18886],[83.35195,25.18866],[83.34979,25.18489],[83.35353,25.18333],[83.35297,25.17864],[83.35637,25.17763],[83.35163,25.16296],[83.3513,25.15701],[83.36341,25.15347],[83.36379,25.13789],[83.36191,25.13268],[83.36817,25.12989],[83.36737,25.12523],[83.36606,25.12511],[83.36328,25.11118],[83.35009,25.11328],[83.35069,25.10507],[83.34819,25.1006],[83.34727,25.0868],[83.34411,25.08615],[83.34131,25.08154],[83.34042,25.06865],[83.33594,25.06146],[83.34275,25.05987],[83.34335,25.05088],[83.33571,25.05093],[83.32434,25.03733],[83.3248,25.02473],[83.32141,25.02467],[83.32022,25.01726],[83.32658,25.01291],[83.33412,25.0141],[83.34981,25.00925],[83.35254,24.99656],[83.3502,24.99018],[83.34337,24.9812],[83.34503,24.97215],[83.34311,24.96307],[83.3437,24.96206],[83.34983,24.96306],[83.35502,24.95663],[83.35969,24.95615],[83.36145,24.95372],[83.36105,24.94228],[83.3649,24.9375],[83.36094,24.93237],[83.36285,24.92773],[83.36224,24.91827],[83.36367,24.91301],[83.3623,24.90902],[83.35645,24.90747],[83.35458,24.90547],[83.35745,24.90051],[83.36588,24.89302],[83.36479,24.89085],[83.35826,24.89077],[83.35827,24.88813],[83.36946,24.87987],[83.36801,24.87668],[83.36088,24.87424],[83.35743,24.87091],[83.36928,24.86231],[83.37674,24.86014],[83.37657,24.85639],[83.38051,24.85371],[83.37995,24.84952],[83.38142,24.84652],[83.38682,24.83975],[83.39252,24.8406],[83.39283,24.8361],[83.39659,24.83235],[83.3951,24.82617],[83.40136,24.81888],[83.40185,24.8139],[83.39925,24.80895],[83.39374,24.80476],[83.39583,24.80001],[83.39964,24.79666],[83.39118,24.78947],[83.39325,24.78653],[83.39305,24.78273],[83.39699,24.78179],[83.39778,24.77811],[83.40794,24.77411],[83.41282,24.77502],[83.42197,24.7694],[83.42783,24.76829],[83.42784,24.7631],[83.43485,24.76079],[83.43744,24.75734],[83.44138,24.75645],[83.44156,24.75097],[83.44864,24.73833],[83.45083,24.73855],[83.45319,24.735],[83.45733,24.7338],[83.4581,24.73135],[83.46227,24.73309],[83.4709,24.73237],[83.48934,24.73633],[83.48833,24.72279],[83.48544,24.71535],[83.48513,24.70167],[83.48974,24.70045],[83.49529,24.70452],[83.49864,24.70333],[83.50054,24.69732],[83.49886,24.69486],[83.50701,24.69282],[83.5108,24.68578],[83.51776,24.68301],[83.51684,24.68112],[83.52038,24.6775],[83.50915,24.67119],[83.50399,24.6663],[83.50049,24.65125],[83.50288,24.6478],[83.50479,24.6469],[83.5099,24.6483],[83.52019,24.64106],[83.52981,24.64303],[83.52679,24.63001],[83.52476,24.62943],[83.52469,24.62782],[83.53153,24.62696],[83.5437,24.62828],[83.54798,24.62328],[83.54327,24.6173],[83.54192,24.61275],[83.53042,24.6124],[83.5273,24.60587],[83.52353,24.60313],[83.52266,24.59855],[83.52435,24.58894],[83.528,24.58627],[83.53022,24.58205],[83.52881,24.57458],[83.5301,24.56732],[83.52829,24.56158],[83.52275,24.55568],[83.52228,24.54766],[83.49712,24.5391],[83.49861,24.5318],[83.5033,24.52535],[83.55093,24.52331],[83.57252,24.51655],[83.597,24.51246],[83.6289,24.51249],[83.65239,24.5148],[83.68816,24.51368],[83.69196,24.51106],[83.72057,24.50345],[83.74647,24.51017],[83.75554,24.50972],[83.78479,24.52077],[83.80018,24.52953],[83.8165,24.52908],[83.86176,24.53673],[83.87315,24.53175],[83.88862,24.53787],[83.90926,24.54121],[83.93613,24.54912],[83.94307,24.55816],[83.95533,24.56789],[83.96732,24.58157],[83.96897,24.58565],[83.97542,24.59141],[83.99401,24.6317],[84.00779,24.64289],[84.02078,24.63835],[84.02731,24.63349],[84.02333,24.63142],[84.02439,24.6286],[84.03344,24.63003],[84.03437,24.62287],[84.03308,24.62038],[84.03719,24.62061],[84.03922,24.61768],[84.04257,24.6186],[84.04532,24.61422],[84.0447,24.61116],[84.04893,24.6117],[84.05202,24.60992],[84.05088,24.60801],[84.04871,24.609],[84.0469,24.60418],[84.04893,24.60404],[84.05032,24.60005],[84.05721,24.59248],[84.05095,24.58664],[84.05419,24.58491],[84.06176,24.58646],[84.06491,24.58103],[84.06061,24.57365],[84.06366,24.57339],[84.06359,24.57078],[84.06831,24.5706],[84.06885,24.56728],[84.07287,24.56721],[84.07332,24.56293],[84.07562,24.56139],[84.07249,24.55909],[84.07273,24.55472],[84.07504,24.55311],[84.07763,24.54633],[84.07807,24.54042],[84.08564,24.53764],[84.08528,24.53454],[84.08923,24.5358],[84.09322,24.53365],[84.08883,24.5297],[84.08716,24.52124],[84.08857,24.51776],[84.08634,24.51705],[84.08462,24.51356],[84.08784,24.51274],[84.08563,24.50518],[84.09197,24.50431],[84.0922,24.50262],[84.08905,24.50182],[84.08991,24.49777],[84.0919,24.49774],[84.09441,24.49322],[84.09828,24.49267],[84.1,24.48537],[84.10432,24.48053],[84.11081,24.47674],[84.11722,24.48046],[84.12474,24.48074],[84.12514,24.49191],[84.12726,24.49509],[84.13011,24.49751],[84.13715,24.49797],[84.14053,24.50053],[84.1343,24.52432],[84.14428,24.53825],[84.15374,24.53582],[84.15958,24.53229],[84.16349,24.5334],[84.16421,24.52818],[84.15732,24.52247],[84.15246,24.51517],[84.15368,24.51157],[84.16975,24.50333],[84.17863,24.50564],[84.18408,24.51383],[84.18495,24.51959],[84.18467,24.52144],[84.1815,24.52082],[84.17396,24.53789],[84.17318,24.5447],[84.18432,24.54479],[84.18794,24.5488],[84.18723,24.55293],[84.19993,24.554],[84.1993,24.54694],[84.20198,24.54358],[84.2095,24.54101],[84.2095,24.53418],[84.21506,24.53272],[84.21869,24.53385],[84.22088,24.54609],[84.23333,24.54986],[84.2364,24.54932],[84.23627,24.53892],[84.24235,24.54145],[84.24459,24.53674],[84.24963,24.53471],[84.25096,24.53236],[84.25045,24.52795],[84.25679,24.52688],[84.25902,24.53434],[84.26386,24.53444],[84.26483,24.53813],[84.26812,24.5383],[84.26929,24.54319],[84.27738,24.54378],[84.27986,24.54787],[84.27372,24.55042],[84.27384,24.55403],[84.27088,24.55411],[84.27053,24.56001],[84.28155,24.55887],[84.28947,24.56282],[84.29684,24.56058],[84.29974,24.5464],[84.31137,24.53447],[84.313,24.53018],[84.31241,24.52346],[84.32247,24.5167],[84.32222,24.50809],[84.32741,24.50053],[84.32642,24.49398],[84.32753,24.49236],[84.32745,24.48734],[84.31518,24.48618],[84.30849,24.48173],[84.30374,24.48053],[84.2961,24.47348],[84.29603,24.4699],[84.2915,24.46642],[84.29255,24.46147],[84.29702,24.45498],[84.29738,24.44939],[84.32179,24.44637],[84.32512,24.43905],[84.32798,24.43908],[84.3356,24.43149],[84.33521,24.42928],[84.33681,24.42885],[84.33557,24.4249],[84.33343,24.42604],[84.32869,24.42511],[84.32445,24.42747],[84.3206,24.42329],[84.32053,24.42107],[84.32282,24.41794],[84.3297,24.4192],[84.33035,24.42171],[84.33453,24.42064],[84.33298,24.41834],[84.33363,24.41269],[84.33035,24.41059],[84.33314,24.4047],[84.34455,24.39945],[84.34162,24.39355],[84.34929,24.39076],[84.36142,24.389],[84.36328,24.38832],[84.36348,24.38548],[84.36919,24.38544],[84.37346,24.38346],[84.3787,24.38798],[84.38824,24.38929],[84.38671,24.38523],[84.38882,24.38451],[84.38694,24.38233],[84.39353,24.37667],[84.39387,24.37339],[84.39862,24.37274],[84.40657,24.37489],[84.40521,24.37038],[84.40057,24.36678],[84.40036,24.36463],[84.41004,24.36258],[84.41651,24.359],[84.43111,24.35652],[84.42732,24.35513],[84.42498,24.34919],[84.42301,24.33549],[84.4244,24.32984],[84.45128,24.33281],[84.45183,24.3373],[84.45961,24.33709],[84.4655,24.33151],[84.46376,24.32802],[84.46797,24.32445],[84.46512,24.32272],[84.46639,24.31731],[84.47228,24.31466],[84.47717,24.31714],[84.48449,24.31267],[84.48986,24.31646],[84.49572,24.32361],[84.49546,24.32534],[84.50529,24.33133],[84.50762,24.32481],[84.50536,24.3245],[84.50345,24.32053],[84.4991,24.3198],[84.4975,24.31626],[84.48861,24.3152],[84.48435,24.30197],[84.48879,24.30085],[84.49057,24.30394],[84.49682,24.29958],[84.4942,24.29612],[84.48916,24.29452],[84.49174,24.28615],[84.4959,24.28607],[84.50188,24.28839],[84.50464,24.296],[84.50701,24.29789],[84.50985,24.30523],[84.50997,24.31605],[84.51674,24.31773],[84.52319,24.33297],[84.53144,24.33821],[84.52452,24.35005],[84.53512,24.36315],[84.52833,24.37115],[84.52782,24.37574],[84.53221,24.37833],[84.54038,24.37597],[84.54692,24.37725],[84.54966,24.37345],[84.55379,24.37286],[84.55497,24.37523],[84.55922,24.37618],[84.56829,24.38217],[84.57236,24.38262],[84.57441,24.38563],[84.5741,24.38916],[84.56594,24.39246],[84.5621,24.39663],[84.56564,24.40129],[84.56819,24.40944],[84.57845,24.41028],[84.58275,24.41312],[84.58438,24.41267],[84.58855,24.40856],[84.58683,24.40058],[84.59172,24.40117],[84.59455,24.40484],[84.59678,24.40509],[84.60281,24.40345],[84.60448,24.40127],[84.61482,24.39894],[84.61682,24.4017],[84.61992,24.40076],[84.62207,24.40372],[84.62728,24.40179],[84.63079,24.40544],[84.63619,24.40045],[84.64266,24.39885],[84.64478,24.3991],[84.64626,24.40311],[84.64995,24.398],[84.65639,24.39669],[84.66109,24.39193],[84.66507,24.39088],[84.66809,24.39859],[84.66877,24.40282],[84.66761,24.4044],[84.67033,24.40492],[84.67018,24.40853],[84.6686,24.40972],[84.67448,24.41095],[84.67336,24.41692],[84.67596,24.42601],[84.6705,24.42812],[84.67231,24.43149],[84.67909,24.43559],[84.68208,24.44481],[84.68119,24.44623],[84.68532,24.45512],[84.68827,24.45785],[84.6915,24.45779],[84.70254,24.46223],[84.7033,24.46607],[84.70775,24.46764],[84.7102,24.47124],[84.71617,24.47211],[84.72069,24.46861],[84.72918,24.47015],[84.74311,24.48498],[84.7464,24.48613],[84.74805,24.496],[84.75558,24.49996],[84.76343,24.50025],[84.77795,24.50448],[84.78609,24.50383],[84.78951,24.5077],[84.78946,24.51828],[84.79732,24.52258],[84.79661,24.52555],[84.80189,24.53074],[84.80826,24.52204],[84.82556,24.52543],[84.83894,24.51261],[84.83985,24.50671],[84.83822,24.49768],[84.83534,24.49648],[84.83378,24.49359],[84.83537,24.48512],[84.83292,24.47021],[84.84061,24.46889],[84.84011,24.46078],[84.83707,24.4591],[84.8401,24.45219],[84.84878,24.45445],[84.85091,24.46204],[84.85401,24.46671],[84.86321,24.46111],[84.86399,24.45727],[84.87096,24.45829],[84.8725,24.46649],[84.8748,24.46721],[84.87971,24.46603],[84.88281,24.46205],[84.8846,24.46499],[84.88728,24.46328],[84.88566,24.45885],[84.8867,24.45323],[84.88528,24.45252],[84.88593,24.44564],[84.88466,24.4408],[84.88744,24.43196],[84.8849,24.4279],[84.88548,24.42575],[84.88228,24.42477],[84.89128,24.4146],[84.89264,24.40504],[84.90421,24.39546],[84.90499,24.3901],[84.90898,24.38354],[84.90034,24.37682],[84.90383,24.37225],[84.9162,24.3733],[84.92286,24.37753],[84.93748,24.37992],[84.94081,24.37625],[84.95479,24.37133],[84.9609,24.37342],[84.97489,24.37471],[84.98124,24.38084],[84.98382,24.38747],[84.99693,24.3947],[84.9983,24.39756],[85.00269,24.39728],[85.01912,24.4091],[85.03117,24.41457],[85.03874,24.41195],[85.04234,24.41428],[85.04591,24.40914],[85.06111,24.40586],[85.06297,24.40692],[85.06907,24.42221],[85.08102,24.43304],[85.07981,24.41546],[85.08187,24.41391],[85.08202,24.4159],[85.08309,24.41558],[85.08107,24.40599],[85.08313,24.39971],[85.07833,24.39669],[85.07733,24.39306],[85.08006,24.39342],[85.07324,24.37823],[85.07404,24.37703],[85.08533,24.37608],[85.08905,24.3725],[85.09869,24.37359],[85.10343,24.37708],[85.10269,24.38487],[85.11681,24.39143],[85.11662,24.3935],[85.12306,24.40198],[85.12765,24.402],[85.13261,24.4051],[85.1438,24.40718],[85.15222,24.41202],[85.16229,24.41262],[85.16541,24.41943],[85.16965,24.42125],[85.1739,24.42062],[85.17535,24.42385],[85.17034,24.42914],[85.17035,24.43316],[85.16657,24.43658],[85.16392,24.44389],[85.15719,24.4444],[85.15443,24.44817],[85.15529,24.45252],[85.15405,24.45499],[85.16075,24.46034],[85.16731,24.46112],[85.17217,24.45904],[85.18057,24.46245],[85.19127,24.46307],[85.1999,24.46047],[85.20293,24.46133],[85.20658,24.46733],[85.2221,24.46509],[85.22584,24.46313],[85.23221,24.47309],[85.2369,24.47105],[85.24128,24.47521],[85.24202,24.47958],[85.24017,24.4815],[85.24545,24.48471],[85.24911,24.49073],[85.26697,24.49126],[85.27486,24.49317],[85.28233,24.49167],[85.28488,24.49464],[85.28387,24.49883],[85.28558,24.5023],[85.28343,24.50332],[85.28057,24.51247],[85.28333,24.51698],[85.28137,24.52022],[85.28809,24.52326],[85.30403,24.52319],[85.3222,24.51999],[85.33389,24.52169],[85.33609,24.52332],[85.35087,24.523],[85.36559,24.52573],[85.3729,24.52497],[85.39193,24.53035],[85.39207,24.53481],[85.39428,24.53972],[85.39671,24.54007],[85.39749,24.5448],[85.37111,24.5528],[85.37078,24.55535],[85.38435,24.55549],[85.385,24.55193],[85.38861,24.5493],[85.40099,24.54535],[85.40448,24.54186],[85.41334,24.54136],[85.43226,24.53171],[85.43,24.52955],[85.43463,24.52852],[85.43396,24.53114],[85.43679,24.53426],[85.43925,24.53319],[85.44429,24.5342],[85.45028,24.53715],[85.45959,24.53624],[85.46542,24.53913],[85.47141,24.54475],[85.49166,24.5481],[85.49902,24.54615],[85.50883,24.53766],[85.50952,24.53155],[85.5073,24.52531],[85.51839,24.52615],[85.52396,24.52127],[85.52736,24.52398],[85.53816,24.52785],[85.54078,24.53051],[85.54545,24.54803],[85.54381,24.55692],[85.5423,24.5576],[85.54074,24.56272],[85.54456,24.56331],[85.55627,24.55801],[85.56023,24.55274],[85.5615,24.55868],[85.56787,24.55834],[85.57177,24.56182],[85.57224,24.5654],[85.56977,24.56933],[85.57161,24.5747],[85.56718,24.57679],[85.56627,24.57881],[85.566,24.58725],[85.57224,24.59621],[85.58077,24.60068],[85.58946,24.59678],[85.5922,24.59744],[85.59419,24.59448],[85.5981,24.59615],[85.60199,24.59556],[85.61191,24.58791],[85.61473,24.58074],[85.62028,24.57992],[85.62686,24.58186],[85.63184,24.57888],[85.65005,24.57592],[85.65135,24.57447],[85.65809,24.57803],[85.66738,24.57889],[85.67753,24.59067],[85.67712,24.59457],[85.67396,24.59747],[85.6756,24.60515],[85.6741,24.61133],[85.6762,24.61662],[85.67333,24.62097],[85.6722,24.62969],[85.66744,24.63683],[85.66867,24.64059],[85.66494,24.64288],[85.66256,24.64964],[85.66488,24.65224],[85.66455,24.65476],[85.66752,24.65745],[85.66677,24.66087],[85.65999,24.66764],[85.66052,24.67236],[85.65414,24.67418],[85.64991,24.68046],[85.64921,24.68477],[85.682,24.69192],[85.68913,24.69808],[85.69783,24.71085],[85.7001,24.7171],[85.70826,24.72591],[85.70631,24.73212],[85.70775,24.73721],[85.70646,24.73726],[85.70679,24.74072],[85.70935,24.74266],[85.70937,24.74635],[85.70383,24.75134],[85.70456,24.76714],[85.70965,24.76703],[85.70668,24.76838],[85.70955,24.77685],[85.70736,24.77976],[85.72235,24.7857],[85.7236,24.79706],[85.7291,24.79838],[85.73076,24.80238],[85.73089,24.81335],[85.73673,24.82106],[85.75742,24.81319],[85.76216,24.81277],[85.76871,24.80783],[85.76804,24.80393],[85.77828,24.79663],[85.78001,24.79946],[85.78909,24.79647],[85.80957,24.79402],[85.81064,24.79901],[85.81527,24.80405],[85.82043,24.80764],[85.82732,24.80827],[85.85493,24.80799],[85.86723,24.80425],[85.88942,24.79236],[85.88928,24.78974],[85.88609,24.78687],[85.88658,24.78406],[85.90006,24.77281],[85.90021,24.77049],[85.91392,24.74999],[85.92517,24.74095],[85.93663,24.73515],[85.9444,24.73357],[85.9585,24.7323],[85.96905,24.73313],[85.9718,24.73651],[85.97348,24.74285],[85.98008,24.74882],[85.99644,24.75319],[86.00507,24.76188],[86.02421,24.76668],[86.03236,24.77075],[86.03755,24.77648],[86.04558,24.77642],[86.0551,24.77969],[86.05852,24.77173],[86.0569,24.76107],[86.05411,24.75623],[86.04688,24.75266],[86.04323,24.74763],[86.0351,24.74636],[86.03709,24.74113],[86.0558,24.74605],[86.06631,24.75165],[86.09073,24.746],[86.10741,24.7348],[86.1094,24.7307],[86.10869,24.7272],[86.1164,24.71731],[86.11652,24.71229],[86.119,24.71118],[86.12836,24.69865],[86.12902,24.68623],[86.13232,24.67901],[86.1319,24.67589],[86.12475,24.67111],[86.12706,24.66687],[86.12509,24.65457],[86.11522,24.64395],[86.11715,24.63949],[86.1199,24.63875],[86.11852,24.6359],[86.12045,24.63544],[86.1214,24.6317],[86.11946,24.62993],[86.11865,24.62578],[86.12196,24.62206],[86.12104,24.61849],[86.12496,24.61417],[86.12532,24.61148],[86.12922,24.611],[86.13326,24.60519],[86.14135,24.60704],[86.15072,24.60255],[86.15184,24.60081],[86.15022,24.59513],[86.1615,24.58625],[86.17945,24.58509],[86.18048,24.58368],[86.1858,24.58595],[86.19448,24.58565],[86.19727,24.58824],[86.20765,24.59113],[86.21445,24.59493],[86.21635,24.59854],[86.21336,24.60235],[86.2143,24.61379],[86.2183,24.61101],[86.22216,24.6109],[86.22417,24.60679],[86.22954,24.60572],[86.23834,24.60013],[86.2408,24.59696],[86.24154,24.59001],[86.2461,24.58761],[86.25454,24.58709],[86.25695,24.58057],[86.25921,24.57867],[86.2626,24.57927],[86.26282,24.58396],[86.26434,24.58425],[86.2677,24.58055],[86.27467,24.57713],[86.27508,24.57975],[86.26946,24.58477],[86.27455,24.58658],[86.28152,24.58511],[86.28492,24.58786],[86.28799,24.587],[86.29192,24.5884],[86.29745,24.5851],[86.30074,24.58608],[86.30302,24.58328],[86.30917,24.58389],[86.30856,24.58846],[86.31412,24.58702],[86.31748,24.58823],[86.31936,24.58596],[86.32321,24.58679],[86.31613,24.58128],[86.31761,24.57741],[86.30709,24.57139],[86.30744,24.56723],[86.30403,24.56581],[86.30084,24.56012],[86.30278,24.55924],[86.30414,24.5529],[86.30804,24.54881],[86.29999,24.53627],[86.29713,24.5361],[86.29747,24.53351],[86.29929,24.53034],[86.30569,24.52769],[86.30557,24.51941],[86.30913,24.51248],[86.30898,24.50976],[86.30331,24.50545],[86.29942,24.5],[86.29887,24.49525],[86.29378,24.48817],[86.29338,24.48121],[86.29042,24.4789],[86.28183,24.47911],[86.27601,24.4658],[86.29858,24.45965],[86.29986,24.45848],[86.29456,24.45601],[86.29494,24.45092],[86.29972,24.44773],[86.31355,24.44706],[86.31738,24.44152],[86.33144,24.44437],[86.33485,24.44245],[86.34394,24.44398],[86.34498,24.44724],[86.3499,24.44739],[86.35816,24.42926],[86.36727,24.42448],[86.36857,24.41869],[86.37465,24.41705],[86.37746,24.41958],[86.37806,24.41623],[86.38115,24.41291],[86.39675,24.40374],[86.397,24.39836],[86.40004,24.39853],[86.40242,24.39677],[86.40426,24.38855],[86.41213,24.38097],[86.42044,24.37867],[86.42355,24.37951],[86.42778,24.37715],[86.43255,24.38014],[86.4449,24.36783],[86.45603,24.37197],[86.4579,24.3782],[86.46713,24.38107],[86.46672,24.38484],[86.47193,24.39335],[86.4701,24.39741],[86.47146,24.40152],[86.47075,24.40567],[86.46789,24.40616],[86.46689,24.41013],[86.46915,24.41535],[86.46918,24.41986],[86.4665,24.42135],[86.4665,24.42386],[86.46866,24.42627],[86.47702,24.42451],[86.47943,24.42794],[86.49128,24.42808],[86.49421,24.44082],[86.49677,24.44375],[86.49532,24.45626],[86.48673,24.46414],[86.49086,24.46718],[86.49031,24.47132],[86.49447,24.47338],[86.49184,24.47585],[86.49536,24.4831],[86.49434,24.4862],[86.49708,24.49025],[86.5004,24.48944],[86.50268,24.49324],[86.50078,24.50404],[86.50957,24.52219],[86.51535,24.52537],[86.51751,24.53033],[86.52936,24.54028],[86.53629,24.53585],[86.54153,24.54034],[86.55232,24.53597],[86.55336,24.5435],[86.56379,24.55255],[86.55834,24.55824],[86.55918,24.56227],[86.56163,24.56222],[86.56647,24.56649],[86.56981,24.56471],[86.58029,24.56653],[86.58922,24.5793],[86.58887,24.58853],[86.59716,24.59657],[86.59819,24.59991],[86.60307,24.60194],[86.60329,24.60838],[86.61459,24.60831],[86.6148,24.60609],[86.61299,24.60651],[86.61092,24.60399],[86.61042,24.5987],[86.62439,24.59938],[86.62281,24.59626],[86.62417,24.58857],[86.64575,24.58063],[86.65173,24.5704],[86.67024,24.56488],[86.68077,24.57099],[86.68598,24.56995],[86.69162,24.57612],[86.70159,24.57329],[86.72308,24.58399],[86.73469,24.57949],[86.73528,24.58455],[86.74163,24.58712],[86.74668,24.5943],[86.74984,24.59507],[86.74825,24.60576],[86.75399,24.6213],[86.75869,24.61938],[86.76494,24.61945],[86.77324,24.62181],[86.78238,24.61897],[86.78505,24.61651],[86.78901,24.61869],[86.8036,24.60187],[86.81124,24.59827],[86.80716,24.59261],[86.81171,24.58254],[86.80537,24.57827],[86.80263,24.5736],[86.80315,24.57033],[86.81192,24.56905],[86.81597,24.57016],[86.81825,24.57318],[86.82161,24.57451],[86.82355,24.57239],[86.83183,24.5716],[86.83465,24.57508],[86.84265,24.57423],[86.84364,24.56854],[86.84145,24.56333],[86.843,24.5581],[86.85019,24.55851],[86.85684,24.55488],[86.86013,24.55638],[86.86202,24.56081],[86.86043,24.56381],[86.86362,24.5666],[86.86901,24.56547],[86.87672,24.56803],[86.88051,24.57219],[86.8821,24.5713],[86.88303,24.56726],[86.88795,24.5648],[86.88687,24.55884],[86.8935,24.55782],[86.89506,24.56082],[86.90249,24.55273],[86.90356,24.54752],[86.91458,24.54221],[86.9175,24.5467],[86.91596,24.55452],[86.91761,24.56086],[86.91539,24.56236],[86.91472,24.56831],[86.90937,24.57246],[86.91327,24.5774],[86.90895,24.5825],[86.90732,24.58816],[86.90933,24.59518],[86.9144,24.60041],[86.9195,24.60212],[86.9191,24.60486],[86.92214,24.61014],[86.92678,24.61374],[86.92892,24.6212],[86.92761,24.62451],[86.93277,24.63061],[86.93668,24.63031],[86.94494,24.63583],[86.94206,24.63873],[86.9421,24.64129],[86.93902,24.64341],[86.93759,24.65017],[86.9582,24.64759],[86.95599,24.64026],[86.95342,24.63972],[86.95324,24.63491],[86.95134,24.63347],[86.95279,24.63147],[86.95774,24.6318],[86.96154,24.63463],[86.96927,24.63536],[86.97758,24.63957],[86.98065,24.63479],[86.98521,24.63278],[86.98751,24.62769],[86.99268,24.62584],[86.9961,24.62011],[87.00632,24.62296],[87.00764,24.62887],[87.01076,24.63119],[87.02127,24.62946],[87.02415,24.62418],[87.02305,24.6157],[87.03623,24.61388],[87.03811,24.61723],[87.04477,24.61297],[87.04662,24.60947],[87.05064,24.60878],[87.04898,24.62403],[87.04615,24.62987],[87.05244,24.64127],[87.05058,24.64463],[87.05067,24.65161],[87.05341,24.65743],[87.05407,24.66934],[87.05975,24.67632],[87.05975,24.6826],[87.06194,24.68879],[87.06549,24.689],[87.06975,24.69506],[87.06805,24.70339],[87.07258,24.71472],[87.07823,24.71935],[87.07714,24.72157],[87.08074,24.72907],[87.07656,24.73017],[87.07861,24.7366],[87.0729,24.73703],[87.07386,24.74137],[87.07007,24.74348],[87.06964,24.74556],[87.07021,24.74764],[87.07942,24.74888],[87.0781,24.75243],[87.08431,24.75613],[87.0786,24.76833],[87.08002,24.77455],[87.07871,24.77753],[87.08357,24.78192],[87.08535,24.78632],[87.08801,24.78634],[87.09289,24.79191],[87.09574,24.80272],[87.08578,24.80363],[87.08355,24.80606],[87.07331,24.8086],[87.07434,24.81985],[87.07736,24.82528],[87.08521,24.8236],[87.0912,24.82547],[87.10072,24.84002],[87.10177,24.8437],[87.10038,24.84768],[87.09878,24.84786],[87.10612,24.85506],[87.11007,24.85701],[87.12059,24.85519],[87.1291,24.86173],[87.13242,24.86261],[87.13478,24.85961],[87.14259,24.8606],[87.14449,24.86331],[87.14069,24.86408],[87.14091,24.86591],[87.14734,24.87109],[87.15555,24.88502],[87.15543,24.89282],[87.15098,24.89879],[87.1538,24.89997],[87.1519,24.90373],[87.14806,24.90357],[87.14733,24.90991],[87.14414,24.9106],[87.14236,24.91372],[87.14292,24.92218],[87.14961,24.92659],[87.15174,24.93156],[87.15091,24.93478],[87.14364,24.94414],[87.14881,24.95987],[87.14728,24.96476],[87.14914,24.96896],[87.14612,24.97357],[87.14891,24.9776],[87.15126,24.98725],[87.14923,24.99896],[87.15032,25.00255],[87.14561,25.00981],[87.14697,25.01334],[87.14623,25.02001],[87.14964,25.02518],[87.15858,25.02857],[87.16322,25.03776],[87.16698,25.03997],[87.16587,25.04613],[87.17182,25.04828],[87.17773,25.06298],[87.18196,25.06697],[87.18942,25.06799],[87.19225,25.06685],[87.19452,25.0689],[87.1927,25.07008],[87.19368,25.07204],[87.19561,25.07078],[87.19921,25.07285],[87.201,25.07872],[87.20795,25.08237],[87.21273,25.08195],[87.21429,25.09123],[87.2374,25.08584],[87.23767,25.09233],[87.23981,25.09209],[87.24054,25.09797],[87.24436,25.10143],[87.24688,25.09966],[87.24934,25.10012],[87.24883,25.10132],[87.25095,25.10201],[87.25034,25.10573],[87.26318,25.10331],[87.26368,25.09964],[87.26705,25.09791],[87.26982,25.09397],[87.2954,25.08854],[87.29812,25.09976],[87.29522,25.10236],[87.29793,25.11205],[87.2962,25.11336],[87.30295,25.13424],[87.30685,25.13641],[87.30574,25.13794],[87.30664,25.14079],[87.30494,25.14289],[87.30797,25.14741],[87.31198,25.14877],[87.31437,25.16028],[87.31647,25.16026],[87.31899,25.16477],[87.31422,25.16881],[87.3154,25.18013],[87.32084,25.18995],[87.31823,25.19526],[87.32281,25.20628],[87.32729,25.22362],[87.33324,25.22268],[87.33428,25.21613],[87.35988,25.21188],[87.37152,25.20625],[87.3751,25.21505],[87.37809,25.21691],[87.38315,25.22435],[87.38753,25.22293],[87.39139,25.22787],[87.40098,25.2269],[87.40319,25.2253],[87.40349,25.22241],[87.41185,25.21893],[87.41183,25.21507],[87.42255,25.21393],[87.42604,25.21111],[87.44089,25.20473],[87.44472,25.20456],[87.45885,25.19685],[87.46113,25.19776],[87.4626,25.19487],[87.47781,25.19414],[87.4764,25.23785],[87.49058,25.26127],[87.50049,25.25979],[87.49881,25.26258],[87.50079,25.26679],[87.49538,25.27145],[87.49864,25.27673],[87.49001,25.28044],[87.4861,25.29727],[87.49003,25.29729],[87.49371,25.30751],[87.50162,25.29233],[87.51683,25.29335],[87.52588,25.28433],[87.53236,25.28028],[87.54272,25.28094],[87.54281,25.29446],[87.54659,25.30802],[87.54854,25.32117],[87.5477,25.32373],[87.55029,25.32418],[87.55169,25.3325],[87.56266,25.33399],[87.57097,25.33327],[87.57454,25.34068],[87.58251,25.34316],[87.58389,25.34918],[87.59185,25.34188],[87.5841,25.33144],[87.59349,25.32513],[87.59228,25.3224],[87.61197,25.31266],[87.61331,25.31547],[87.61743,25.3181],[87.62699,25.31163],[87.63044,25.31969],[87.63588,25.31582],[87.63524,25.31389],[87.63667,25.31314],[87.63782,25.31479],[87.65501,25.30757],[87.65682,25.3087],[87.66368,25.30807],[87.66467,25.31124],[87.66565,25.30915],[87.66674,25.31077],[87.66874,25.30842],[87.67516,25.30703],[87.6755,25.31054],[87.67317,25.31286],[87.69208,25.31153],[87.68685,25.30918],[87.68431,25.30965],[87.68478,25.30687],[87.6954,25.30668],[87.69862,25.30396],[87.6954,25.30004],[87.69968,25.2971],[87.69632,25.29394],[87.69309,25.28511],[87.71152,25.27459],[87.71134,25.25764],[87.74325,25.26411],[87.76718,25.26098],[87.77633,25.25659],[87.79671,25.25198],[87.79822,25.24985],[87.80127,25.24921],[87.80093,25.247],[87.8057,25.2431],[87.8273,25.23529],[87.83534,25.24047],[87.83662,25.24581],[87.84063,25.25012],[87.84855,25.25397],[87.85029,25.25296],[87.85527,25.25527],[87.85553,25.25991],[87.85343,25.2636],[87.85701,25.26965],[87.86069,25.26963],[87.86241,25.27411],[87.86143,25.28142],[87.85543,25.29689],[87.83903,25.30109],[87.83093,25.3073],[87.82636,25.31352],[87.81831,25.31882],[87.80506,25.32456],[87.79596,25.3262],[87.78818,25.33906],[87.79355,25.36695],[87.79231,25.37355],[87.77929,25.37308],[87.76966,25.37898],[87.76588,25.38527],[87.76829,25.39274],[87.76787,25.39826],[87.77253,25.40422],[87.76388,25.4075],[87.76451,25.41378],[87.76794,25.41344],[87.77045,25.40957],[87.77519,25.40891],[87.77636,25.41309],[87.77407,25.41827],[87.77432,25.42353],[87.76993,25.42621],[87.77136,25.42898],[87.774,25.42962],[87.77431,25.43214],[87.78133,25.43254],[87.78726,25.4504],[87.79678,25.4475],[87.79694,25.44501],[87.80231,25.44473],[87.81167,25.43555],[87.82478,25.43795],[87.82681,25.44107],[87.82572,25.44545],[87.82747,25.44764],[87.8289,25.44683],[87.83096,25.45221],[87.83013,25.46085],[87.83964,25.46137],[87.83935,25.46784],[87.85428,25.46672],[87.8558,25.47098],[87.86053,25.47108],[87.86152,25.46914],[87.86346,25.46911],[87.86288,25.46397],[87.86931,25.469],[87.86886,25.47301],[87.86489,25.47995],[87.86781,25.49385],[87.87482,25.50469],[87.87989,25.5042],[87.88637,25.50808],[87.88677,25.51036],[87.88333,25.51694],[87.88437,25.52057],[87.88714,25.51819],[87.89018,25.51827],[87.89285,25.51267],[87.8982,25.5117],[87.89786,25.50491],[87.90276,25.50532],[87.90439,25.50939],[87.90891,25.50882],[87.90682,25.51174],[87.91093,25.51575],[87.90834,25.51866],[87.91273,25.52577],[87.91837,25.52659],[87.91696,25.53295],[87.92555,25.53377],[87.92772,25.5372],[87.94635,25.53547],[87.94708,25.53908],[87.95111,25.53836],[87.95419,25.53977],[87.95671,25.53739],[87.96333,25.53954],[87.96408,25.5369],[87.9667,25.53664],[87.97655,25.5247],[87.98078,25.52454],[87.986,25.52664],[87.9909,25.52538],[87.99135,25.52287],[87.9938,25.52241],[87.98502,25.51533],[87.98902,25.51181],[87.99415,25.51199],[87.99511,25.50797],[87.99288,25.50723],[87.99321,25.50372],[87.99578,25.49954],[88.00698,25.49705],[88.00672,25.51014],[88.01352,25.51121],[88.00952,25.50488],[88.01038,25.5016],[88.01412,25.49938],[88.01806,25.50186],[88.02466,25.50165],[88.02244,25.49828],[88.03028,25.49154],[88.03594,25.49212],[88.03769,25.48978],[88.04514,25.4891],[88.04983,25.48596],[88.05126,25.49006],[88.05627,25.49119],[88.0654,25.49013],[88.07132,25.48426],[88.07338,25.48431],[88.07159,25.49337],[88.07269,25.49429],[88.07139,25.49587],[88.07175,25.50616],[88.07324,25.50817],[88.07653,25.5081],[88.06655,25.51039],[88.0665,25.51275],[88.07089,25.51576],[88.07113,25.51745],[88.06447,25.52524],[88.05959,25.52838],[88.05784,25.53404],[88.05317,25.53515],[88.04736,25.53955],[88.04204,25.53742],[88.03728,25.53832],[88.03582,25.54479],[88.03372,25.54724],[88.03833,25.55299],[88.03553,25.55253],[88.03043,25.55595],[88.02699,25.55609],[88.02582,25.55886],[88.02892,25.56078],[88.03048,25.56567],[88.03255,25.56676],[88.03417,25.56392],[88.03851,25.5694],[88.03397,25.57097],[88.02825,25.56999],[88.02554,25.57207],[88.02402,25.5762],[88.02772,25.57665],[88.02881,25.5811],[88.02625,25.57877],[88.02464,25.58278],[88.02545,25.58622],[88.02026,25.59115],[88.02406,25.59206],[88.02816,25.59092],[88.02969,25.59261],[88.02938,25.59706],[88.03097,25.60007],[88.02521,25.5983],[88.02421,25.60204],[88.0311,25.60174],[88.03332,25.59983],[88.03982,25.60106],[88.04001,25.60334],[88.03322,25.60347],[88.03008,25.6053],[88.03708,25.60921],[88.04323,25.60865],[88.04287,25.61077],[88.03728,25.61633],[88.03508,25.62394],[88.04067,25.63211],[88.04471,25.6341],[88.04782,25.63145],[88.04978,25.63452],[88.05526,25.63782],[88.05396,25.63918],[88.04911,25.63754],[88.0463,25.63475],[88.04112,25.64259],[88.0368,25.64164],[88.03783,25.64727],[88.04024,25.64723],[88.04359,25.6431],[88.04474,25.64589],[88.04817,25.64622],[88.04853,25.64961],[88.04564,25.65596],[88.05012,25.66076],[88.04659,25.66273],[88.04783,25.66905],[88.0459,25.67898],[88.05165,25.68351],[88.05257,25.6862],[88.04865,25.69709],[88.04279,25.70199],[88.04053,25.69756],[88.03764,25.69698],[88.03594,25.70111],[88.0325,25.70336],[88.0291,25.70109],[88.0312,25.69791],[88.03084,25.6945],[88.02065,25.69586],[88.01851,25.699],[88.02107,25.70969],[88.01247,25.71018],[88.00195,25.71568],[87.99885,25.7219],[87.99233,25.72314],[87.98919,25.72619],[87.98476,25.7243],[87.98247,25.71998],[87.9657,25.72562],[87.96633,25.7328],[87.96102,25.73638],[87.96137,25.73866],[87.95544,25.74181],[87.95223,25.74619],[87.94626,25.74624],[87.94765,25.74752],[87.94705,25.75161],[87.94623,25.75254],[87.94365,25.75087],[87.94759,25.75764],[87.94239,25.75966],[87.94219,25.76941],[87.93788,25.77214],[87.93797,25.77393],[87.9353,25.77471],[87.93263,25.77295],[87.93424,25.77179],[87.93363,25.76943],[87.92611,25.77279],[87.92568,25.77567],[87.92392,25.77638],[87.91931,25.77458],[87.90706,25.77354],[87.909,25.77173],[87.90768,25.76969],[87.90609,25.77143],[87.90417,25.77113],[87.902,25.77622],[87.90345,25.77791],[87.90318,25.78151],[87.90425,25.78247],[87.90609,25.78012],[87.90685,25.7809],[87.90382,25.80202],[87.90164,25.80225],[87.90797,25.80342],[87.90564,25.80756],[87.89946,25.80749],[87.90384,25.814],[87.90752,25.812],[87.90796,25.81568],[87.91435,25.81134],[87.91588,25.8164],[87.90889,25.81988],[87.90558,25.81981],[87.90442,25.82248],[87.89911,25.82461],[87.89962,25.8258],[87.8978,25.82707],[87.89956,25.82867],[87.90168,25.82793],[87.90254,25.83052],[87.89724,25.83161],[87.89752,25.83024],[87.89501,25.82923],[87.89609,25.82804],[87.89357,25.8275],[87.88804,25.83066],[87.89121,25.83218],[87.89204,25.83534],[87.89408,25.83396],[87.89607,25.83707],[87.90099,25.83269],[87.90285,25.83395],[87.89673,25.83794],[87.90421,25.83645],[87.90209,25.84207],[87.90326,25.84254],[87.90592,25.83969],[87.90855,25.84107],[87.90541,25.84039],[87.9036,25.84287],[87.90779,25.84527],[87.91208,25.85112],[87.91412,25.85145],[87.91469,25.85395],[87.91131,25.85273],[87.90829,25.85407],[87.90608,25.85782],[87.90187,25.85793],[87.90256,25.86168],[87.89211,25.86574],[87.88862,25.86511],[87.88707,25.8612],[87.88271,25.85936],[87.87565,25.86061],[87.87437,25.86822],[87.87338,25.86612],[87.86979,25.86657],[87.86953,25.86863],[87.86806,25.86865],[87.8587,25.86479],[87.85017,25.8696],[87.82983,25.87065],[87.82748,25.87468],[87.82925,25.87774],[87.82572,25.87774],[87.82602,25.88033],[87.82234,25.88195],[87.82332,25.88559],[87.82178,25.88752],[87.82683,25.89408],[87.82505,25.89715],[87.81959,25.90034],[87.82136,25.90298],[87.82258,25.91213],[87.81983,25.914],[87.81689,25.91283],[87.81518,25.91486],[87.81647,25.91202],[87.81553,25.91022],[87.81206,25.90997],[87.80803,25.91216],[87.80757,25.91609],[87.81207,25.91595],[87.813,25.91764],[87.80885,25.92069],[87.809,25.92837],[87.80737,25.92985],[87.81187,25.93015],[87.81262,25.93211],[87.81605,25.93172],[87.81959,25.93394],[87.83311,25.92791],[87.83843,25.93149],[87.83473,25.93168],[87.83935,25.93811],[87.83695,25.94228],[87.83403,25.94216],[87.8337,25.94585],[87.83826,25.95203],[87.83596,25.95831],[87.83668,25.96012],[87.84657,25.96334],[87.84574,25.96684],[87.84706,25.96937],[87.84577,25.96958],[87.84472,25.97393],[87.84708,25.97467],[87.84464,25.97691],[87.84413,25.98133],[87.84575,25.98557],[87.84513,25.99412],[87.84794,25.99369],[87.84945,25.99543],[87.85141,26.00228],[87.85041,26.00345],[87.85422,26.01008],[87.85446,26.01253],[87.85045,26.01416],[87.85446,26.01667],[87.85646,26.02158],[87.85725,26.02808],[87.85452,26.02936],[87.85422,26.03183],[87.85593,26.03598],[87.86426,26.03648],[87.87833,26.04953],[87.88301,26.04684],[87.88924,26.0486],[87.89045,26.04962],[87.89039,26.05792],[87.8924,26.06116],[87.89878,26.064],[87.90124,26.06291],[87.90699,26.07234],[87.91008,26.07137],[87.91687,26.07706],[87.92053,26.07569],[87.92805,26.08307],[87.93136,26.08202],[87.93178,26.08029],[87.93064,26.07031],[87.93635,26.0686],[87.93492,26.06368],[87.9455,26.06076],[87.94886,26.0619],[87.95012,26.06055],[87.95033,26.06562],[87.95264,26.06461],[87.95452,26.06567],[87.95482,26.06903],[87.95196,26.068],[87.94855,26.0696],[87.95232,26.07188],[87.95039,26.07421],[87.95335,26.0753],[87.95291,26.07647],[87.95521,26.07474],[87.95808,26.07632],[87.9655,26.07405],[87.97279,26.07743],[87.98219,26.07376],[87.98562,26.07766],[87.98224,26.07987],[87.98202,26.08366],[87.9782,26.0838],[87.97666,26.08707],[87.97075,26.08867],[87.97152,26.09293],[87.96361,26.09463],[87.96653,26.0955],[87.96664,26.09686],[87.96747,26.0961],[87.96843,26.09688],[87.96714,26.09786],[87.97176,26.10057],[87.97343,26.09956],[87.97624,26.10194],[87.9772,26.1005],[87.97752,26.10272],[87.97861,26.10117],[87.98212,26.10324],[87.9823,26.10189],[87.9868,26.10141],[87.98689,26.10275],[87.98335,26.10427],[87.98464,26.1067],[87.98647,26.1066],[87.98585,26.10927],[87.98773,26.10977],[87.98577,26.11344],[87.98511,26.11143],[87.98376,26.11571],[87.97427,26.11664],[87.97152,26.11536],[87.96927,26.11762],[87.9708,26.12046],[87.97939,26.12228],[87.97955,26.12342],[87.97534,26.12426],[87.97615,26.12528],[87.97981,26.1243],[87.9814,26.12606],[87.98153,26.12769],[87.97849,26.13015],[87.97919,26.13797],[87.97245,26.14],[87.9749,26.14337],[87.98131,26.14458],[87.98375,26.14212],[87.98588,26.14268],[87.98502,26.14565],[87.99207,26.15096],[87.99439,26.14341],[87.99988,26.1384],[88.00625,26.14574],[88.01077,26.14477],[88.01415,26.14931],[88.00783,26.15805],[88.00998,26.16154],[88.01434,26.15857],[88.01968,26.15982],[88.02416,26.16526],[88.02648,26.16544],[88.02829,26.17004],[88.03177,26.16998],[88.03293,26.17321],[88.03149,26.17521],[88.03723,26.17871],[88.04983,26.17607],[88.0508,26.17218],[88.05771,26.17278],[88.05907,26.1705],[88.0657,26.17517],[88.06497,26.17699],[88.06888,26.17685],[88.06949,26.17413],[88.07185,26.1742],[88.07804,26.1798],[88.07581,26.18252],[88.07621,26.18532],[88.08174,26.18683],[88.08543,26.19103],[88.08932,26.19073],[88.09134,26.20214],[88.09424,26.20256],[88.09371,26.20367],[88.09579,26.20488],[88.09781,26.20359],[88.09823,26.20528],[88.10113,26.20601],[88.10087,26.20753],[88.10361,26.20778],[88.10314,26.21124],[88.10541,26.21438],[88.11146,26.21545],[88.11111,26.2177],[88.11658,26.21915],[88.11442,26.22372],[88.12573,26.22776],[88.12987,26.22502],[88.13089,26.22715],[88.13982,26.22719],[88.14176,26.23164],[88.1366,26.23248],[88.13674,26.24122],[88.14112,26.2434],[88.14265,26.25047],[88.1444,26.25224],[88.15241,26.25349],[88.15434,26.25452],[88.15544,26.25811],[88.16048,26.25689],[88.16324,26.25341],[88.16822,26.25815],[88.17177,26.25565],[88.17419,26.25579],[88.17947,26.26331],[88.17901,26.2691],[88.18265,26.27044],[88.18318,26.27368],[88.19732,26.27186],[88.20159,26.28092],[88.21063,26.27779],[88.21322,26.28043],[88.21335,26.28404],[88.21712,26.28445],[88.22693,26.2909],[88.22591,26.29407],[88.22818,26.29566],[88.22671,26.30362],[88.23061,26.30792],[88.22943,26.31037],[88.23184,26.3087],[88.23165,26.30582],[88.2357,26.30333],[88.23987,26.31155],[88.24554,26.31454],[88.2442,26.32201],[88.24674,26.32428],[88.24725,26.32812],[88.24805,26.32636],[88.24923,26.32793],[88.25439,26.32699],[88.25779,26.33195],[88.25778,26.33552],[88.26688,26.33508],[88.26838,26.33799],[88.27088,26.33753],[88.27114,26.33593],[88.26915,26.33275],[88.26652,26.33187],[88.26877,26.33141],[88.26979,26.32787],[88.27469,26.32857],[88.27603,26.33224],[88.27987,26.33196],[88.28115,26.34202],[88.2782,26.3432],[88.27891,26.34939],[88.28433,26.34965],[88.28539,26.35238],[88.29035,26.35142],[88.29139,26.34923],[88.29353,26.35082],[88.29369,26.35293],[88.289,26.35396],[88.29089,26.35827],[88.29019,26.35997],[88.28273,26.35757],[88.27981,26.35968],[88.27884,26.36668],[88.2765,26.36826],[88.27674,26.37252],[88.27444,26.37624],[88.27626,26.37944],[88.27194,26.37783],[88.26767,26.38141],[88.2663,26.3792],[88.26148,26.37762],[88.25756,26.38128],[88.25533,26.3774],[88.24678,26.37538],[88.24657,26.37418],[88.24047,26.3752],[88.23221,26.3796],[88.23401,26.38066],[88.23321,26.38634],[88.22704,26.38947],[88.22794,26.39275],[88.23439,26.39476],[88.23826,26.39886],[88.23923,26.40344],[88.24756,26.40752],[88.25242,26.41605],[88.25489,26.41707],[88.26455,26.41541],[88.26825,26.41758],[88.26958,26.42045],[88.26701,26.42285],[88.26305,26.42283],[88.26341,26.42877],[88.2594,26.42863],[88.25846,26.43218],[88.25085,26.43315],[88.25108,26.4359],[88.24817,26.43668],[88.24286,26.44872],[88.24382,26.45384],[88.24245,26.45235],[88.23417,26.45151],[88.22515,26.45366],[88.22275,26.45913],[88.21845,26.46259],[88.21773,26.46591],[88.214,26.46858],[88.20982,26.46923],[88.21171,26.47182],[88.22117,26.47153],[88.22424,26.47799],[88.22436,26.48195],[88.21986,26.48352],[88.21246,26.48325],[88.21177,26.48164],[88.2138,26.47808],[88.21577,26.47805],[88.21073,26.47309],[88.20331,26.47432],[88.20296,26.47636],[88.19577,26.47513],[88.19162,26.47767],[88.19066,26.48205],[88.18786,26.48491],[88.18618,26.48377],[88.18504,26.48607],[88.17989,26.48764],[88.1818,26.49253],[88.17885,26.4946],[88.1797,26.49958],[88.18358,26.50041],[88.18511,26.50405],[88.19113,26.50853],[88.19128,26.51153],[88.1951,26.51414],[88.19884,26.51266],[88.20316,26.51313],[88.20233,26.51511],[88.20415,26.52129],[88.20609,26.52111],[88.20877,26.52441],[88.22968,26.53504],[88.22931,26.54006],[88.22556,26.54721],[88.22566,26.55097],[88.228,26.55295],[88.22549,26.55675],[88.21871,26.55666],[88.21095,26.56092],[88.20822,26.55006],[88.21624,26.54869],[88.2119,26.54443],[88.20765,26.54539],[88.20525,26.54349],[88.21294,26.54243],[88.21398,26.54156],[88.21161,26.53994],[88.20398,26.54113],[88.20137,26.53954],[88.20212,26.54375],[88.19627,26.54392],[88.19541,26.54796],[88.17939,26.54825],[88.17562,26.54053],[88.17623,26.53537],[88.17278,26.53597],[88.16786,26.54076],[88.16654,26.53553],[88.15635,26.53002],[88.15035,26.53181],[88.14738,26.52263],[88.14004,26.52422],[88.13498,26.52338],[88.13377,26.51684],[88.13005,26.51602],[88.12515,26.52053],[88.12386,26.5241],[88.11727,26.52761],[88.11697,26.53273],[88.11173,26.53119],[88.11003,26.53606],[88.10442,26.53744],[88.10339,26.53973],[88.09807,26.53795],[88.09897,26.53476],[88.10368,26.53607],[88.10246,26.5306],[88.10473,26.52776],[88.103,26.51825],[88.0951,26.51641],[88.09579,26.51026],[88.09024,26.50725],[88.09233,26.5047],[88.09857,26.50591],[88.10017,26.49417],[88.10548,26.4893],[88.10141,26.48455],[88.10021,26.48025],[88.10698,26.47574],[88.10486,26.47223],[88.09781,26.4725],[88.10371,26.46817],[88.10293,26.46557],[88.09208,26.46331],[88.09701,26.45217],[88.09598,26.43999],[88.09423,26.43718],[88.08587,26.43182],[88.08371,26.42591],[88.07775,26.41924],[88.06959,26.41365],[88.0713,26.40814],[88.06873,26.40791],[88.06676,26.40963],[88.06419,26.40817],[88.06317,26.41047],[88.05992,26.40958],[88.05686,26.40779],[88.05767,26.40669],[88.05554,26.4026],[88.0544,26.40281],[88.05561,26.40053],[88.05267,26.4014],[88.05185,26.39917],[88.0514,26.40059],[88.04758,26.40106],[88.04529,26.3997],[88.04651,26.39751],[88.04388,26.39676],[88.04538,26.39631],[88.03791,26.39378],[88.03666,26.39012],[88.0345,26.39191],[88.03464,26.38826],[88.03206,26.38791],[88.03097,26.38232],[88.03016,26.38322],[88.02724,26.38161],[88.0284,26.37884],[88.0316,26.37805],[88.03073,26.37589],[88.02916,26.37623],[88.03007,26.37405],[88.02751,26.37103],[88.02776,26.36912],[88.03112,26.36661],[88.0305,26.36492],[88.00658,26.361],[88.00439,26.36438],[88.00172,26.3652],[88.00277,26.36626],[88.00001,26.36656],[87.99801,26.36495],[87.99535,26.36601],[87.99206,26.37137],[87.99192,26.39256],[87.96598,26.39719],[87.93229,26.418],[87.92694,26.4178],[87.92583,26.42806],[87.91807,26.42987],[87.91599,26.43183],[87.9176,26.43486],[87.92453,26.43847],[87.92514,26.44484],[87.92405,26.44668],[87.89874,26.44871],[87.90981,26.45756],[87.90021,26.4773],[87.88829,26.48676],[87.88598,26.47641],[87.86333,26.46795],[87.86281,26.46458],[87.85843,26.4639],[87.85964,26.45953],[87.85824,26.45659],[87.8626,26.45311],[87.86093,26.45122],[87.86143,26.44888],[87.85103,26.44528],[87.84883,26.43646],[87.82833,26.44],[87.82973,26.45002],[87.82314,26.45354],[87.81724,26.45918],[87.79359,26.46857],[87.79194,26.46892],[87.79087,26.46661],[87.78951,26.46943],[87.78641,26.46753],[87.79011,26.46579],[87.78912,26.46432],[87.78652,26.46582],[87.78632,26.46303],[87.78883,26.4621],[87.78832,26.46074],[87.78483,26.45863],[87.78278,26.45407],[87.77796,26.45373],[87.77898,26.45062],[87.77401,26.45036],[87.77692,26.44761],[87.77561,26.44279],[87.77791,26.44223],[87.77442,26.44042],[87.77301,26.43599],[87.77497,26.43529],[87.7764,26.43685],[87.77791,26.43566],[87.77593,26.42948],[87.77403,26.43111],[87.77265,26.42996],[87.77542,26.42696],[87.77047,26.42752],[87.77606,26.42519],[87.77298,26.42022],[87.77617,26.42183],[87.77326,26.41923],[87.77126,26.42155],[87.76739,26.41815],[87.76819,26.41484],[87.76559,26.41316],[87.76731,26.41116],[87.76476,26.40988],[87.75388,26.40797],[87.74844,26.41795],[87.73932,26.41759],[87.73394,26.40761],[87.72308,26.41253],[87.72399,26.41562],[87.7223,26.4195],[87.72126,26.41875],[87.71817,26.42242],[87.71393,26.42283],[87.71368,26.42518],[87.71107,26.42748],[87.6983,26.42834],[87.69231,26.43566],[87.67756,26.43546],[87.67813,26.41583],[87.6502,26.40596],[87.65188,26.39342],[87.6326,26.39369],[87.61735,26.38996],[87.61234,26.381],[87.6104,26.38078],[87.59241,26.38165],[87.59299,26.39221],[87.57871,26.39582],[87.5671,26.40123],[87.56503,26.40003],[87.55301,26.40566],[87.5477,26.41837],[87.53439,26.42162],[87.51654,26.43079],[87.49174,26.43625],[87.46675,26.44019],[87.46378,26.43951],[87.44348,26.43313],[87.42786,26.42237],[87.41907,26.42268],[87.38855,26.4191],[87.37619,26.40702],[87.36889,26.40794],[87.35639,26.38793],[87.35352,26.37202],[87.35841,26.36105],[87.34109,26.34752],[87.33701,26.3516],[87.32211,26.36006],[87.31358,26.36764],[87.31253,26.37157],[87.30159,26.36612],[87.28955,26.37372],[87.27264,26.37254],[87.26602,26.37388],[87.26441,26.38768],[87.26589,26.39054],[87.26626,26.40565],[87.26105,26.40927],[87.25618,26.41107],[87.24987,26.40951],[87.24696,26.41412],[87.22882,26.41359],[87.22622,26.41074],[87.22656,26.40899],[87.22397,26.40871],[87.22389,26.40582],[87.21913,26.40284],[87.21713,26.40656],[87.21109,26.40919],[87.21242,26.41305],[87.18579,26.41421],[87.1892,26.40534],[87.17299,26.40334],[87.16256,26.4039],[87.13931,26.41479],[87.09165,26.45029],[87.0805,26.5214],[87.07612,26.53741],[87.07282,26.54196],[87.07318,26.57732],[87.07182,26.58581],[87.04467,26.58723],[87.04255,26.56833],[87.01536,26.53204],[86.99088,26.52308],[86.97941,26.52515],[86.97531,26.52005],[86.96134,26.52404],[86.95953,26.52039],[86.94646,26.52078],[86.94457,26.5173],[86.93216,26.51695],[86.92869,26.49756],[86.92999,26.48968],[86.89369,26.488],[86.894,26.48659],[86.89168,26.48619],[86.89016,26.48176],[86.89286,26.47761],[86.8919,26.47637],[86.89364,26.47647],[86.89224,26.47553],[86.89357,26.47373],[86.89274,26.47199],[86.89384,26.47214],[86.89253,26.46915],[86.89467,26.46925],[86.89527,26.46739],[86.89423,26.46193],[86.88463,26.4614],[86.87944,26.45709],[86.8753,26.45751],[86.87594,26.45542],[86.87337,26.45405],[86.87079,26.45549],[86.86656,26.45474],[86.86663,26.45629],[86.86482,26.45591],[86.86531,26.45762],[86.86141,26.45795],[86.86173,26.45636],[86.85986,26.45599],[86.85592,26.44865],[86.84586,26.4483],[86.84689,26.44195],[86.8446,26.4428],[86.84222,26.44021],[86.83921,26.44066],[86.83987,26.44211],[86.83781,26.4426],[86.83671,26.44007],[86.83499,26.44112],[86.83377,26.4391],[86.79757,26.44821],[86.7665,26.45944],[86.76274,26.45581],[86.76409,26.45155],[86.76034,26.45185],[86.7602,26.44814],[86.75405,26.44679],[86.75275,26.4455],[86.75337,26.4424],[86.74976,26.44135],[86.74755,26.4362],[86.74397,26.43561],[86.74476,26.43398],[86.74729,26.43374],[86.74722,26.42818],[86.74375,26.4276],[86.74086,26.42476],[86.73785,26.42583],[86.73752,26.42343],[86.73298,26.42465],[86.7314,26.42262],[86.72966,26.42294],[86.73073,26.42639],[86.72903,26.42699],[86.72751,26.42504],[86.72551,26.42632],[86.72027,26.43486],[86.70031,26.43724],[86.69859,26.44276],[86.69557,26.4447],[86.69639,26.44885],[86.69323,26.4512],[86.63803,26.46333],[86.63696,26.46607],[86.63403,26.46579],[86.63345,26.46432],[86.62995,26.46857],[86.62947,26.46639],[86.62694,26.46703],[86.62952,26.46893],[86.62597,26.46933],[86.62731,26.47542],[86.6296,26.47763],[86.62808,26.4788],[86.62693,26.47695],[86.62605,26.48039],[86.62183,26.48169],[86.62109,26.48415],[86.61808,26.4837],[86.61402,26.48697],[86.61156,26.48563],[86.58828,26.49348],[86.57025,26.49656],[86.57072,26.49777],[86.56926,26.49749],[86.56374,26.5035],[86.56146,26.50983],[86.55442,26.5161],[86.55442,26.5188],[86.55602,26.51784],[86.55567,26.52184],[86.555,26.52423],[86.55131,26.52457],[86.55095,26.53018],[86.54809,26.53141],[86.54155,26.53872],[86.52335,26.54361],[86.51551,26.53922],[86.49863,26.5421],[86.45594,26.56797],[86.42993,26.57314],[86.39522,26.58506],[86.3971,26.59332],[86.35633,26.60429],[86.3415,26.60594],[86.33908,26.60893],[86.34082,26.6119],[86.34217,26.61144],[86.34484,26.61691],[86.33289,26.61914],[86.30785,26.61996],[86.29304,26.61311],[86.27586,26.61728],[86.2531,26.61468],[86.25269,26.61711],[86.24791,26.61239],[86.24922,26.609],[86.24646,26.60735],[86.24421,26.60892],[86.24432,26.60607],[86.24238,26.60572],[86.2432,26.60295],[86.24054,26.60359],[86.24002,26.60147],[86.23741,26.60169],[86.23753,26.59953],[86.23478,26.59813],[86.23436,26.5907],[86.23124,26.59321],[86.23082,26.5915],[86.22373,26.59145],[86.21768,26.58848],[86.21272,26.5927],[86.20789,26.59301],[86.20548,26.59665],[86.2018,26.59458],[86.2006,26.59724],[86.19829,26.59348],[86.1963,26.59394],[86.19699,26.59804],[86.19493,26.59851],[86.19674,26.60119],[86.19581,26.60762],[86.19065,26.61181],[86.19438,26.61222],[86.19224,26.61484],[86.18286,26.61392],[86.17593,26.61549],[86.17421,26.6139],[86.17144,26.61704],[86.16765,26.61408],[86.1616,26.61491],[86.15533,26.60989],[86.14566,26.6086],[86.14262,26.60516],[86.13633,26.60634],[86.13975,26.61674],[86.14105,26.6168],[86.13876,26.62885],[86.11958,26.63006],[86.07405,26.64974],[86.0698,26.65734],[86.02758,26.66679],[86.0189,26.66114],[86.01211,26.65986],[86.01162,26.65517],[86.00394,26.65613],[86.00053,26.65483],[85.99042,26.65734],[85.97581,26.65845],[85.97361,26.65508],[85.97007,26.65504],[85.96745,26.65172],[85.9647,26.65256],[85.9633,26.65021],[85.96012,26.65101],[85.9598,26.64944],[85.95658,26.64872],[85.95334,26.64366],[85.95398,26.639],[85.95259,26.63711],[85.95564,26.63086],[85.95153,26.62438],[85.94946,26.62494],[85.94643,26.62184],[85.94818,26.61396],[85.94079,26.61357],[85.93809,26.61659],[85.93277,26.61393],[85.9291,26.61681],[85.92708,26.60979],[85.91385,26.60884],[85.91289,26.60448],[85.90919,26.60459],[85.90055,26.60047],[85.90072,26.59503],[85.89617,26.59376],[85.89199,26.59471],[85.88748,26.58297],[85.87974,26.58412],[85.87886,26.58203],[85.87322,26.57897],[85.87086,26.57984],[85.86862,26.5753],[85.85865,26.56894],[85.85839,26.57163],[85.85678,26.57226],[85.85185,26.5686],[85.84921,26.569],[85.84859,26.57698],[85.85808,26.58988],[85.85126,26.60868],[85.8312,26.61154],[85.83062,26.60162],[85.81774,26.6028],[85.8036,26.61496],[85.80177,26.62427],[85.76982,26.62987],[85.75933,26.63642],[85.7486,26.63885],[85.73566,26.65159],[85.73418,26.65076],[85.73547,26.65267],[85.73225,26.65386],[85.73231,26.65561],[85.735,26.65738],[85.73671,26.66416],[85.73024,26.66584],[85.73068,26.66781],[85.72912,26.66739],[85.72564,26.67065],[85.72683,26.67395],[85.72363,26.67425],[85.72488,26.68224],[85.72352,26.68323],[85.72546,26.68488],[85.72339,26.68683],[85.7253,26.69732],[85.72332,26.69982],[85.7248,26.70033],[85.72433,26.7034],[85.72648,26.70674],[85.72499,26.7071],[85.72478,26.70989],[85.72803,26.71758],[85.7258,26.72094],[85.72947,26.72502],[85.72805,26.72981],[85.73133,26.73054],[85.7296,26.73395],[85.73065,26.73611],[85.73398,26.73713],[85.72872,26.74984],[85.73514,26.77798],[85.73448,26.79587],[85.72876,26.80287],[85.72878,26.80834],[85.72113,26.82036],[85.70432,26.83229],[85.68103,26.84322],[85.64242,26.85327],[85.63455,26.87221],[85.6239,26.87378],[85.60708,26.85753],[85.58566,26.84736],[85.58634,26.85279],[85.58387,26.85813],[85.57826,26.85675],[85.57864,26.85915],[85.57556,26.86099],[85.57237,26.85744],[85.56598,26.8411],[85.55783,26.84431],[85.55365,26.83452],[85.54329,26.83838],[85.51971,26.81455],[85.50713,26.81668],[85.4977,26.8119],[85.49892,26.81041],[85.49686,26.8092],[85.49795,26.80776],[85.49548,26.80156],[85.4968,26.79925],[85.49564,26.79703],[85.47918,26.80215],[85.4779,26.79288],[85.47348,26.79017],[85.4653,26.78801],[85.46416,26.78889],[85.45456,26.78178],[85.45191,26.78138],[85.43267,26.79009],[85.42997,26.78677],[85.42618,26.78608],[85.41843,26.79034],[85.40774,26.79135],[85.40291,26.78314],[85.39812,26.77886],[85.39244,26.7754],[85.38444,26.77426],[85.37511,26.76091],[85.37083,26.75836],[85.36816,26.75865],[85.36175,26.7628],[85.35539,26.76013],[85.33451,26.74167],[85.32289,26.74522],[85.31917,26.74927],[85.3071,26.75194],[85.26056,26.75538],[85.23999,26.76196],[85.23249,26.7624],[85.21955,26.75895],[85.21103,26.75843],[85.20473,26.76273],[85.20106,26.76866],[85.19726,26.76967],[85.1915,26.78207],[85.19467,26.7843],[85.19292,26.7904],[85.18656,26.7909],[85.18599,26.79556],[85.18058,26.79558],[85.17938,26.79827],[85.18248,26.80072],[85.17674,26.80962],[85.17703,26.81496],[85.1847,26.82197],[85.19121,26.83082],[85.19281,26.83851],[85.19097,26.84995],[85.19313,26.86332],[85.19084,26.86982],[85.16513,26.86861],[85.13995,26.87112],[85.13497,26.86773],[85.12381,26.87141],[85.10538,26.8717],[85.09988,26.87106],[85.09603,26.86694],[85.09025,26.86888],[85.08646,26.86681],[85.08621,26.8635],[85.08987,26.85966],[85.08701,26.85891],[85.08753,26.85644],[85.08388,26.85353],[85.08365,26.85628],[85.08161,26.8552],[85.0817,26.85683],[85.07993,26.85637],[85.07822,26.85866],[85.07699,26.85816],[85.07811,26.8555],[85.07657,26.85668],[85.07613,26.85549],[85.0666,26.85373],[85.06601,26.85059],[85.06413,26.84953],[85.06179,26.85351],[85.06508,26.85633],[85.06268,26.85638],[85.06331,26.85818],[85.06141,26.85679],[85.06278,26.85555],[85.06104,26.85396],[85.05801,26.85586],[85.05695,26.85286],[85.05863,26.85044],[85.05751,26.84905],[85.02397,26.85438],[85.03081,26.85853],[85.03048,26.86185],[85.02724,26.86113],[85.02668,26.86241],[85.02885,26.86337],[85.02854,26.86643],[85.03206,26.86699],[85.02984,26.87024],[85.03086,26.87436],[85.03685,26.87406],[85.03869,26.87749],[85.04267,26.87413],[85.04266,26.87725],[85.04442,26.87917],[85.04704,26.87814],[85.05339,26.88059],[85.05353,26.88199],[85.05079,26.88183],[85.04933,26.88456],[85.05184,26.88293],[85.05483,26.88431],[85.05619,26.88106],[85.0612,26.88659],[85.05938,26.88493],[85.0524,26.88594],[85.05369,26.88891],[85.05083,26.88947],[85.02271,26.89161],[85.00496,26.89474],[84.99284,26.903],[84.9931,26.90563],[84.99542,26.90646],[85.00227,26.90373],[85.00006,26.91188],[84.96806,26.91614],[84.97101,26.91723],[84.97043,26.92],[84.97196,26.92161],[84.96963,26.92476],[84.97206,26.92619],[84.97033,26.92895],[84.97691,26.93228],[84.97841,26.93614],[84.97517,26.93926],[84.97851,26.94009],[84.96533,26.95658],[84.96621,26.9581],[84.96258,26.96053],[84.95357,26.96003],[84.92985,26.96869],[84.90927,26.96809],[84.89896,26.97014],[84.89656,26.97306],[84.89198,26.97278],[84.89265,26.96965],[84.89158,26.96968],[84.8902,26.97139],[84.89061,26.97453],[84.88801,26.97762],[84.86476,26.98424],[84.85879,26.98917],[84.85571,26.98639],[84.85745,26.99045],[84.85506,26.99339],[84.85761,26.9926],[84.85669,26.99635],[84.85778,26.99762],[84.85379,26.99888],[84.84962,26.9977],[84.85272,27.00118],[84.85133,27.00229],[84.85207,27.00563],[84.85505,27.00769],[84.8254,27.02091],[84.81674,27.02058],[84.81334,27.01818],[84.81175,27.02048],[84.81208,27.01567],[84.81055,27.01841],[84.80854,27.01806],[84.80684,27.01415],[84.8108,27.01443],[84.80983,27.0109],[84.80802,27.01209],[84.80698,27.01082],[84.80685,27.008],[84.80806,27.00762],[84.80152,27.00495],[84.80047,27.00088],[84.79725,27.00422],[84.79356,26.99584],[84.79058,26.99722],[84.79195,26.99791],[84.79117,26.99958],[84.78858,26.99694],[84.78831,26.99868],[84.7862,26.99851],[84.78776,27.00315],[84.78697,27.00523],[84.78899,27.00891],[84.78679,27.00904],[84.78574,27.01094],[84.7848,27.00758],[84.78274,27.01411],[84.77342,27.01774],[84.76489,27.01315],[84.76038,27.00506],[84.75674,27.00285],[84.73304,27.01423],[84.72149,27.01405],[84.71876,27.01754],[84.71729,27.01723],[84.71669,27.01972],[84.71468,27.0196],[84.71328,27.02175],[84.70962,27.02132],[84.70127,27.027],[84.68172,27.03153],[84.64339,27.04614],[84.6429,27.04859],[84.64449,27.04895],[84.64308,27.05063],[84.64647,27.05206],[84.64442,27.05638],[84.64575,27.05852],[84.64286,27.05943],[84.64537,27.06383],[84.64311,27.06601],[84.64742,27.07105],[84.64616,27.07565],[84.64717,27.07643],[84.64859,27.07469],[84.64926,27.07714],[84.65194,27.07846],[84.65293,27.07755],[84.65285,27.08069],[84.65587,27.07921],[84.65845,27.07986],[84.65832,27.08104],[84.6541,27.08181],[84.65464,27.08388],[84.65758,27.0827],[84.66268,27.08701],[84.66472,27.08632],[84.66304,27.08936],[84.66596,27.08759],[84.66657,27.09054],[84.66884,27.08968],[84.67032,27.09105],[84.66803,27.09274],[84.66379,27.09238],[84.66438,27.09459],[84.66717,27.09337],[84.66979,27.09818],[84.67282,27.09538],[84.67449,27.09591],[84.67562,27.10381],[84.67347,27.10607],[84.67486,27.10886],[84.6706,27.10718],[84.66977,27.10955],[84.6724,27.11398],[84.67684,27.11519],[84.67542,27.12305],[84.67861,27.12626],[84.67933,27.13225],[84.67759,27.13316],[84.68384,27.14355],[84.68344,27.15048],[84.68049,27.15175],[84.68264,27.15241],[84.68678,27.15837],[84.6846,27.16085],[84.68177,27.15924],[84.67711,27.16263],[84.6776,27.16639],[84.68116,27.16889],[84.67988,27.17044],[84.67617,27.16935],[84.67565,27.17124],[84.68343,27.17749],[84.6819,27.18025],[84.68572,27.18105],[84.68349,27.1823],[84.68395,27.1843],[84.68113,27.18388],[84.68183,27.18583],[84.67969,27.18517],[84.68201,27.18832],[84.68351,27.19625],[84.68026,27.20014],[84.68557,27.20616],[84.68565,27.20859],[84.68718,27.2089],[84.6847,27.21285],[84.68689,27.2133],[84.68754,27.21521],[84.69114,27.21482],[84.68935,27.21912],[84.68973,27.22266],[84.68684,27.22389],[84.685,27.23136],[84.65125,27.29235],[84.63567,27.31808],[84.62189,27.33693],[84.61845,27.33773],[84.60643,27.33567],[84.60143,27.33865],[84.58656,27.34106],[84.56639,27.34725],[84.53347,27.35012],[84.52044,27.35368],[84.51841,27.3521],[84.51384,27.35267],[84.4857,27.35827],[84.47636,27.36232],[84.47249,27.35544],[84.47034,27.35471],[84.46618,27.35654],[84.4649,27.35945],[84.44688,27.36351],[84.44423,27.36838],[84.44044,27.37048],[84.43574,27.36916],[84.42444,27.37182],[84.42088,27.36969],[84.41354,27.37074],[84.40986,27.36849],[84.40592,27.37043],[84.39926,27.36922],[84.39655,27.37046],[84.39188,27.36799],[84.3881,27.37193],[84.37361,27.3766],[84.37012,27.37423],[84.36429,27.37319],[84.36303,27.37447],[84.3608,27.37344],[84.35714,27.37477],[84.34744,27.37461],[84.33792,27.37784],[84.33311,27.37727],[84.32807,27.38066],[84.31752,27.3819],[84.31211,27.38621],[84.30495,27.38786],[84.30049,27.39066],[84.2973,27.38881],[84.29537,27.38489],[84.29238,27.38481],[84.28555,27.39106],[84.28311,27.39653],[84.27691,27.39575],[84.27587,27.40148],[84.27956,27.40666],[84.2775,27.40914],[84.27834,27.41581],[84.27332,27.42151],[84.27305,27.42846],[84.26793,27.43203],[84.26683,27.43457],[84.26181,27.43553],[84.25852,27.43919],[84.26009,27.44557],[84.25555,27.44908],[84.25426,27.45405],[84.24607,27.45307],[84.24234,27.4547],[84.2397,27.45245],[84.23083,27.45628],[84.22683,27.45113],[84.22063,27.44811],[84.22071,27.44118],[84.20893,27.4426],[84.20614,27.44672],[84.2077,27.44902],[84.20678,27.45254],[84.208,27.4563],[84.20422,27.45946],[84.20947,27.46561],[84.20543,27.47043],[84.19498,27.47354],[84.19145,27.47002],[84.1869,27.47009],[84.1795,27.47579],[84.17576,27.47415],[84.171,27.47541],[84.1709,27.47923],[84.16692,27.47984],[84.16691,27.48187],[84.16287,27.48416],[84.15428,27.48398],[84.15216,27.48661],[84.14913,27.48591],[84.14744,27.49388],[84.14456,27.4964],[84.15021,27.5009],[84.14844,27.50304],[84.1498,27.5043],[84.14944,27.50905],[84.15186,27.51044],[84.15009,27.51268],[84.15137,27.51667],[84.14586,27.51866],[84.14364,27.51694],[84.13872,27.51774],[84.13013,27.51179],[84.12419,27.51084],[84.11726,27.51339],[84.11684,27.51917],[84.11098,27.51943],[84.10906,27.52112]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"11","area_level":"State","area_name":"Sikkim","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[88.65081,28.09682],[88.64595,28.09875],[88.63707,28.11611],[88.62874,28.12442],[88.60996,28.12869],[88.60858,28.1226],[88.6177,28.11777],[88.61934,28.09808],[88.6116,28.09905],[88.60523,28.0976],[88.60214,28.09205],[88.60259,28.08917],[88.59123,28.08926],[88.584,28.08331],[88.57494,28.08462],[88.57071,28.08879],[88.56627,28.09033],[88.5597,28.08393],[88.55255,28.08142],[88.55622,28.07348],[88.5487,28.04681],[88.5508,28.03757],[88.54364,28.03325],[88.53271,28.03332],[88.52753,28.03777],[88.52351,28.03499],[88.51968,28.04355],[88.50962,28.04119],[88.50448,28.04782],[88.49562,28.05393],[88.48805,28.04448],[88.48036,28.04254],[88.47444,28.03387],[88.46782,28.01714],[88.46079,28.01455],[88.45638,28.01492],[88.44375,28.00938],[88.43059,28.00809],[88.42461,28.0016],[88.4147,27.99888],[88.41222,27.9945],[88.41077,27.98328],[88.4068,27.98173],[88.40302,27.98263],[88.39907,27.97804],[88.38739,27.97944],[88.38618,27.98142],[88.38091,27.98307],[88.37701,27.98987],[88.37177,27.99108],[88.36958,27.98933],[88.36227,27.9887],[88.35227,27.98995],[88.34566,27.98502],[88.33672,27.98415],[88.3304,27.97318],[88.31792,27.9788],[88.3132,27.97084],[88.30821,27.96711],[88.30347,27.96581],[88.29995,27.96728],[88.28604,27.96626],[88.28056,27.95705],[88.27564,27.9547],[88.26624,27.9573],[88.26112,27.94713],[88.2541,27.94527],[88.25108,27.94235],[88.24151,27.95715],[88.23717,27.97085],[88.22915,27.9659],[88.22505,27.96042],[88.21275,27.96428],[88.20796,27.96166],[88.20493,27.94941],[88.2064,27.94167],[88.20059,27.94169],[88.19534,27.94416],[88.18547,27.94349],[88.17907,27.94919],[88.17056,27.95245],[88.16389,27.95768],[88.1543,27.9574],[88.14521,27.96408],[88.13434,27.95132],[88.12939,27.94937],[88.1356,27.94399],[88.13786,27.93715],[88.13207,27.93287],[88.13065,27.92575],[88.12125,27.92197],[88.11958,27.916],[88.12341,27.90714],[88.1343,27.89705],[88.1399,27.88915],[88.13501,27.88162],[88.14007,27.87741],[88.14899,27.87641],[88.15475,27.87072],[88.16493,27.8683],[88.17407,27.86266],[88.17895,27.85648],[88.18321,27.857],[88.18901,27.85438],[88.19522,27.85454],[88.19762,27.85134],[88.1986,27.84533],[88.2019,27.8425],[88.20206,27.83689],[88.19255,27.83296],[88.18801,27.82546],[88.17359,27.8206],[88.17409,27.81737],[88.18561,27.81058],[88.18742,27.8011],[88.19397,27.79641],[88.19717,27.79117],[88.19529,27.78626],[88.1822,27.77577],[88.18179,27.76941],[88.18366,27.7667],[88.18228,27.76262],[88.17767,27.75844],[88.17837,27.74618],[88.16991,27.74114],[88.16287,27.73977],[88.15848,27.74057],[88.15617,27.73611],[88.15447,27.72854],[88.15537,27.71735],[88.1528,27.71172],[88.14903,27.70815],[88.14757,27.7028],[88.15415,27.6918],[88.14694,27.67934],[88.14721,27.67467],[88.14469,27.66535],[88.1385,27.65833],[88.13215,27.6562],[88.12021,27.64525],[88.12063,27.63843],[88.11698,27.62981],[88.11991,27.62765],[88.11661,27.62404],[88.11697,27.62017],[88.11267,27.615],[88.11385,27.61031],[88.10638,27.60271],[88.09302,27.59788],[88.08183,27.58422],[88.07911,27.57909],[88.08055,27.57753],[88.07548,27.57157],[88.08114,27.56515],[88.07862,27.56041],[88.06906,27.55491],[88.0688,27.54626],[88.0612,27.54029],[88.05865,27.53482],[88.05954,27.5319],[88.0655,27.52947],[88.06626,27.52733],[88.06101,27.5249],[88.05842,27.52042],[88.0581,27.51572],[88.06187,27.51217],[88.05786,27.5092],[88.05515,27.50444],[88.05058,27.50393],[88.04662,27.50095],[88.04408,27.49581],[88.04416,27.48418],[88.04554,27.48152],[88.04414,27.4781],[88.04859,27.47242],[88.05714,27.46691],[88.06052,27.46077],[88.06686,27.45787],[88.06435,27.45365],[88.07244,27.44582],[88.06782,27.43834],[88.07506,27.43322],[88.07315,27.43078],[88.07409,27.42681],[88.06779,27.42533],[88.05819,27.41845],[88.05559,27.41829],[88.05071,27.41298],[88.04963,27.40725],[88.0468,27.40593],[88.04842,27.40103],[88.04475,27.38993],[88.04484,27.37987],[88.04157,27.37293],[88.04183,27.37029],[88.049,27.36005],[88.05762,27.35621],[88.0613,27.34476],[88.06362,27.34085],[88.06486,27.34114],[88.06693,27.33577],[88.06346,27.33433],[88.05974,27.32834],[88.0523,27.32422],[88.04938,27.31829],[88.04879,27.31281],[88.04154,27.30408],[88.04087,27.30137],[88.04461,27.29325],[88.04315,27.2915],[88.03852,27.29188],[88.03205,27.28639],[88.03281,27.28038],[88.03043,27.27194],[88.03188,27.2649],[88.03069,27.26285],[88.03089,27.24991],[88.02783,27.24947],[88.02431,27.24208],[88.02463,27.23762],[88.01939,27.23588],[88.0189,27.22498],[88.01715,27.2255],[88.01233,27.21593],[88.01426,27.21291],[88.02721,27.22082],[88.04309,27.21947],[88.05282,27.21341],[88.0645,27.2144],[88.06552,27.20916],[88.07169,27.20416],[88.07917,27.20109],[88.07272,27.1872],[88.07854,27.18035],[88.07976,27.17437],[88.07741,27.1729],[88.0871,27.16422],[88.08775,27.14615],[88.09671,27.1328],[88.11174,27.13118],[88.12288,27.12132],[88.13523,27.12059],[88.13636,27.11475],[88.13891,27.11391],[88.14404,27.11561],[88.14531,27.11177],[88.14984,27.1139],[88.15178,27.10958],[88.15702,27.11031],[88.15881,27.11355],[88.16213,27.11343],[88.16729,27.12243],[88.1706,27.12263],[88.17232,27.12736],[88.17587,27.12981],[88.17919,27.12983],[88.18101,27.13247],[88.18536,27.13077],[88.18958,27.13322],[88.19203,27.13248],[88.19463,27.13485],[88.20144,27.13143],[88.20572,27.13346],[88.21149,27.12989],[88.21375,27.13196],[88.2157,27.13166],[88.21945,27.12847],[88.2196,27.12511],[88.23002,27.11898],[88.24177,27.1195],[88.24858,27.12435],[88.25906,27.12526],[88.26839,27.12951],[88.27248,27.12815],[88.27421,27.13083],[88.27901,27.13187],[88.28507,27.12692],[88.29033,27.12785],[88.29722,27.12518],[88.29918,27.12833],[88.30229,27.12929],[88.31082,27.12507],[88.31534,27.12615],[88.31645,27.12179],[88.32285,27.11764],[88.32368,27.1105],[88.32109,27.10686],[88.32154,27.10475],[88.32944,27.10777],[88.33537,27.10675],[88.33784,27.10983],[88.34139,27.11012],[88.3457,27.10692],[88.34952,27.0998],[88.35604,27.10102],[88.35682,27.09738],[88.35875,27.09601],[88.37489,27.09748],[88.38737,27.09494],[88.39922,27.09025],[88.41103,27.08895],[88.43295,27.07926],[88.43926,27.08241],[88.45053,27.08389],[88.45958,27.09058],[88.46197,27.09838],[88.46645,27.10274],[88.46787,27.11395],[88.47624,27.1223],[88.48509,27.12092],[88.48748,27.12592],[88.49774,27.12382],[88.49967,27.13091],[88.50593,27.13661],[88.5112,27.13724],[88.51324,27.14075],[88.51769,27.14323],[88.51927,27.14752],[88.53235,27.15006],[88.53346,27.15496],[88.52764,27.1574],[88.53136,27.16514],[88.52758,27.16651],[88.52077,27.17289],[88.52463,27.17389],[88.5315,27.17241],[88.53507,27.17889],[88.53963,27.17738],[88.54298,27.18318],[88.55197,27.1831],[88.55828,27.18561],[88.56721,27.18477],[88.58104,27.18881],[88.58333,27.1876],[88.58594,27.19039],[88.58879,27.18636],[88.59025,27.19033],[88.59286,27.19122],[88.59436,27.18789],[88.59795,27.18981],[88.60162,27.18567],[88.60371,27.18623],[88.61432,27.18169],[88.61871,27.18334],[88.62006,27.18194],[88.62228,27.18245],[88.62289,27.17936],[88.62597,27.18037],[88.62671,27.17755],[88.63424,27.17259],[88.63551,27.16668],[88.63978,27.16484],[88.64681,27.16616],[88.65145,27.16485],[88.65335,27.16193],[88.66026,27.16055],[88.66284,27.16168],[88.67102,27.173],[88.67744,27.17802],[88.68146,27.17973],[88.68805,27.17933],[88.70173,27.17387],[88.70449,27.1697],[88.71012,27.16684],[88.71248,27.16248],[88.71599,27.16003],[88.71781,27.14331],[88.72896,27.13627],[88.73862,27.1354],[88.7493,27.14744],[88.75688,27.1482],[88.76008,27.15218],[88.75946,27.15608],[88.75721,27.15867],[88.75719,27.16539],[88.76461,27.17702],[88.76961,27.18052],[88.77885,27.18353],[88.78676,27.18199],[88.78923,27.1891],[88.78909,27.19383],[88.79881,27.20758],[88.80327,27.22],[88.80205,27.22777],[88.8042,27.23648],[88.8031,27.24784],[88.82816,27.25724],[88.83213,27.26233],[88.86659,27.26463],[88.87911,27.26114],[88.88581,27.26757],[88.89768,27.27019],[88.89998,27.2743],[88.90329,27.27259],[88.90774,27.27704],[88.90843,27.28205],[88.91356,27.29009],[88.90864,27.30342],[88.91857,27.31829],[88.9192,27.32797],[88.9154,27.33071],[88.90578,27.32859],[88.89962,27.33277],[88.89505,27.33218],[88.89147,27.33911],[88.88402,27.34252],[88.88203,27.34625],[88.88537,27.35115],[88.88194,27.35098],[88.88063,27.35254],[88.88109,27.36041],[88.8762,27.36021],[88.87462,27.36271],[88.86675,27.36581],[88.86281,27.36982],[88.86428,27.37865],[88.86095,27.38654],[88.85663,27.3844],[88.84575,27.38488],[88.83767,27.37916],[88.83139,27.38583],[88.83051,27.38997],[88.82331,27.39058],[88.82096,27.39858],[88.81843,27.40146],[88.81258,27.40125],[88.8062,27.4068],[88.80748,27.41126],[88.80486,27.41542],[88.80904,27.4234],[88.80082,27.42259],[88.79987,27.42644],[88.79516,27.42885],[88.79166,27.43843],[88.79429,27.44048],[88.7945,27.44553],[88.79634,27.44731],[88.78929,27.44681],[88.78255,27.44965],[88.78442,27.45865],[88.77936,27.46258],[88.77701,27.46886],[88.78372,27.47475],[88.78062,27.4812],[88.78657,27.48817],[88.78332,27.49549],[88.78332,27.5004],[88.78693,27.50367],[88.78563,27.50654],[88.79059,27.5158],[88.78838,27.52214],[88.79277,27.52474],[88.79282,27.5289],[88.79095,27.53156],[88.78332,27.52918],[88.77733,27.53256],[88.7731,27.54076],[88.77518,27.54452],[88.77301,27.54896],[88.77393,27.55379],[88.77173,27.55807],[88.76375,27.56507],[88.77,27.57126],[88.78139,27.56992],[88.78444,27.57328],[88.79129,27.5751],[88.79083,27.58116],[88.78837,27.58493],[88.79469,27.59025],[88.80473,27.59436],[88.80903,27.60253],[88.80633,27.60892],[88.81166,27.61839],[88.80491,27.62351],[88.80868,27.63444],[88.81119,27.63654],[88.81526,27.64609],[88.81946,27.64639],[88.82278,27.64353],[88.82795,27.64426],[88.83551,27.65034],[88.83572,27.65362],[88.84309,27.65991],[88.84839,27.66801],[88.84759,27.67544],[88.84457,27.67709],[88.84438,27.67965],[88.84192,27.6822],[88.84766,27.69356],[88.84263,27.70288],[88.83827,27.70379],[88.83798,27.70629],[88.83979,27.71123],[88.8563,27.71655],[88.85424,27.72012],[88.85751,27.72682],[88.85669,27.73167],[88.85942,27.73811],[88.86514,27.74225],[88.86161,27.75249],[88.85839,27.75394],[88.85609,27.75229],[88.85328,27.76448],[88.85356,27.76917],[88.85591,27.77077],[88.85492,27.7835],[88.86145,27.79699],[88.86023,27.80295],[88.8581,27.8042],[88.85834,27.8111],[88.85578,27.81508],[88.87171,27.82559],[88.88045,27.82918],[88.88269,27.83427],[88.87994,27.84008],[88.8813,27.84975],[88.88767,27.85618],[88.88505,27.86154],[88.87937,27.86716],[88.87781,27.87576],[88.88263,27.89077],[88.87181,27.89852],[88.87217,27.90119],[88.86918,27.90759],[88.87002,27.9156],[88.8637,27.92134],[88.86041,27.92715],[88.85265,27.92578],[88.84358,27.92881],[88.83694,27.92878],[88.83871,27.94273],[88.84134,27.94415],[88.84289,27.95278],[88.8424,27.96363],[88.84084,27.96634],[88.84299,27.97526],[88.8414,27.98174],[88.84381,27.99042],[88.84371,27.99325],[88.83798,28.00049],[88.83628,28.01481],[88.82263,28.02086],[88.81688,28.02068],[88.81359,28.02244],[88.80307,28.03181],[88.79758,28.04094],[88.79385,28.0434],[88.79288,28.04864],[88.78741,28.05038],[88.78378,28.05395],[88.7776,28.05412],[88.77415,28.0623],[88.77093,28.06587],[88.75629,28.07597],[88.72042,28.07433],[88.70955,28.07764],[88.6972,28.07593],[88.68681,28.07794],[88.68135,28.07691],[88.67844,28.07146],[88.67206,28.07234],[88.66668,28.0761],[88.66434,28.08741],[88.66135,28.08964],[88.65686,28.09004],[88.65538,28.09371],[88.65081,28.09682]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"12","area_level":"State","area_name":"Arunachal Pradesh","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[96.1535,29.37381],[96.14057,29.40205],[96.12076,29.41409],[96.10524,29.43001],[96.08926,29.45264],[96.08125,29.46108],[96.06732,29.46595],[96.05689,29.46494],[96.04275,29.46073],[96.03063,29.45334],[96.00882,29.42772],[95.99863,29.42072],[95.9767,29.41348],[95.94181,29.38765],[95.93273,29.3861],[95.91969,29.3871],[95.90352,29.39084],[95.86175,29.39512],[95.83844,29.3712],[95.83099,29.35883],[95.81113,29.3596],[95.80271,29.34942],[95.78213,29.34139],[95.78095,29.35576],[95.77688,29.36165],[95.76571,29.35635],[95.7595,29.3468],[95.75256,29.3442],[95.73722,29.3319],[95.72838,29.31863],[95.721,29.3127],[95.7056,29.30445],[95.68899,29.30461],[95.68453,29.29714],[95.67154,29.28235],[95.65983,29.27157],[95.64445,29.26332],[95.63148,29.25998],[95.62484,29.25235],[95.61926,29.2497],[95.608,29.25323],[95.59716,29.25985],[95.58303,29.26061],[95.57807,29.25387],[95.5722,29.22281],[95.56374,29.21667],[95.54091,29.21753],[95.52693,29.21566],[95.52697,29.20515],[95.53667,29.1692],[95.53072,29.13049],[95.51754,29.1336],[95.49673,29.14225],[95.48099,29.14307],[95.48108,29.12229],[95.47723,29.08708],[95.46645,29.06646],[95.44935,29.04415],[95.4403,29.0366],[95.42774,29.04112],[95.42122,29.04136],[95.41065,29.03052],[95.39873,29.03119],[95.38506,29.03527],[95.36825,29.03635],[95.34809,29.04114],[95.32244,29.05066],[95.30464,29.05966],[95.28792,29.06264],[95.27033,29.05849],[95.26007,29.05408],[95.24872,29.0614],[95.24202,29.06355],[95.24559,29.07632],[95.24172,29.11061],[95.19428,29.10798],[95.16631,29.10895],[95.10637,29.11891],[95.10194,29.12933],[95.09505,29.13959],[95.06739,29.1477],[95.03657,29.15209],[95.01644,29.15827],[94.99277,29.17076],[94.97982,29.17335],[94.97297,29.16593],[94.97528,29.15654],[94.98159,29.15156],[94.99949,29.15024],[95.01213,29.14695],[95.02245,29.13394],[95.01358,29.13018],[94.98833,29.13748],[94.97741,29.14286],[94.96665,29.15206],[94.95841,29.15639],[94.93252,29.15558],[94.91578,29.15207],[94.90753,29.1564],[94.89393,29.16927],[94.87867,29.17503],[94.86376,29.17647],[94.84354,29.17426],[94.81064,29.16196],[94.80413,29.16241],[94.79965,29.16589],[94.79561,29.17343],[94.79352,29.18854],[94.79641,29.19895],[94.79301,29.2153],[94.78141,29.23095],[94.7413,29.27474],[94.72292,29.29132],[94.70967,29.30009],[94.68861,29.31795],[94.66319,29.32925],[94.64507,29.33937],[94.63098,29.34124],[94.62771,29.33465],[94.62253,29.31428],[94.60463,29.28905],[94.59732,29.28355],[94.57872,29.27457],[94.57391,29.24965],[94.56518,29.23559],[94.55071,29.22075],[94.53441,29.21456],[94.51311,29.21282],[94.48673,29.21338],[94.45913,29.21755],[94.43812,29.22319],[94.42982,29.21962],[94.37488,29.18495],[94.36788,29.15842],[94.36249,29.1526],[94.3528,29.14811],[94.32962,29.1464],[94.30491,29.1476],[94.29366,29.14535],[94.27717,29.12595],[94.25777,29.1086],[94.2241,29.08783],[94.18606,29.02873],[94.17658,29.00703],[94.17013,28.97163],[94.16446,28.95746],[94.14985,28.94401],[94.07467,28.89093],[94.05367,28.87264],[94.03663,28.85113],[94.01336,28.84507],[94.00724,28.8407],[94.00255,28.82267],[93.9867,28.80376],[94.01051,28.77875],[94.0103,28.77279],[94.00659,28.76739],[93.97295,28.74322],[93.97118,28.71532],[93.96176,28.6936],[93.94673,28.67393],[93.93563,28.66611],[93.9214,28.66983],[93.90168,28.67942],[93.86168,28.70627],[93.8506,28.70704],[93.8385,28.70162],[93.83205,28.6951],[93.78414,28.66336],[93.75309,28.68279],[93.73988,28.68455],[93.68782,28.67439],[93.65616,28.65846],[93.61945,28.65339],[93.58887,28.65413],[93.53573,28.66066],[93.52241,28.65907],[93.51416,28.68172],[93.49615,28.68597],[93.48414,28.68314],[93.47796,28.67565],[93.4748,28.66067],[93.4705,28.65265],[93.46704,28.65465],[93.45275,28.67504],[93.44597,28.67472],[93.41422,28.6542],[93.40601,28.65128],[93.37937,28.64783],[93.36215,28.64225],[93.33917,28.64325],[93.33336,28.63908],[93.32792,28.6287],[93.32786,28.61723],[93.32492,28.60918],[93.31464,28.60941],[93.30749,28.60551],[93.30162,28.59895],[93.30146,28.59322],[93.30674,28.57925],[93.30462,28.57142],[93.29512,28.56088],[93.29112,28.55356],[93.28613,28.53958],[93.28205,28.51029],[93.27774,28.50131],[93.26836,28.49507],[93.24372,28.48414],[93.22857,28.4742],[93.21842,28.46047],[93.20957,28.45192],[93.1956,28.44506],[93.18045,28.43488],[93.19338,28.42361],[93.20974,28.41895],[93.22013,28.41371],[93.22422,28.4055],[93.2228,28.33529],[93.21796,28.32608],[93.20649,28.32155],[93.18939,28.31834],[93.1608,28.31919],[93.12918,28.32799],[93.12217,28.32838],[93.11929,28.32175],[93.11039,28.31214],[93.10083,28.3078],[93.09052,28.30587],[93.07194,28.30769],[93.04967,28.30266],[93.02234,28.31039],[93.02289,28.29007],[93.02827,28.26869],[93.0197,28.26099],[92.9973,28.22943],[92.98413,28.25239],[92.97593,28.25877],[92.96271,28.25856],[92.94354,28.24747],[92.92284,28.24],[92.91346,28.23182],[92.90568,28.21191],[92.89688,28.20515],[92.85263,28.1826],[92.8361,28.1791],[92.82558,28.17906],[92.81806,28.19115],[92.81852,28.21025],[92.81477,28.21104],[92.80603,28.20691],[92.78586,28.18651],[92.74608,28.1581],[92.70027,28.13577],[92.68795,28.1274],[92.67967,28.11919],[92.68037,28.11416],[92.67623,28.09846],[92.66534,28.06999],[92.66654,28.06375],[92.67024,28.06082],[92.68174,28.05726],[92.70039,28.04856],[92.72071,28.03051],[92.73534,28.01136],[92.74243,27.99259],[92.71356,27.95537],[92.68787,27.92669],[92.65771,27.9019],[92.65013,27.89989],[92.6267,27.89864],[92.61531,27.89454],[92.57106,27.83964],[92.55621,27.82436],[92.52771,27.84852],[92.51596,27.85254],[92.50336,27.85395],[92.49253,27.85055],[92.48376,27.84281],[92.46602,27.81778],[92.45627,27.81412],[92.44741,27.81451],[92.43195,27.82098],[92.42302,27.83068],[92.4163,27.83055],[92.38976,27.82143],[92.38538,27.8172],[92.38783,27.80593],[92.3851,27.80063],[92.35812,27.79828],[92.31922,27.78815],[92.31277,27.78849],[92.30202,27.80204],[92.29119,27.82491],[92.28484,27.84365],[92.28224,27.86185],[92.27754,27.86909],[92.26846,27.8721],[92.21866,27.86951],[92.15868,27.83958],[92.10948,27.80947],[92.05143,27.76393],[92.04335,27.76285],[92.00268,27.77225],[91.99353,27.77118],[91.98081,27.7643],[91.97152,27.7569],[91.96979,27.75],[91.9639,27.75103],[91.95768,27.74848],[91.94997,27.73736],[91.9277,27.72259],[91.92128,27.72363],[91.91253,27.73092],[91.90369,27.73223],[91.88829,27.72621],[91.8824,27.72724],[91.87785,27.7285],[91.87553,27.7345],[91.87129,27.73814],[91.86219,27.73969],[91.85901,27.7426],[91.85856,27.7481],[91.85203,27.75965],[91.85068,27.77616],[91.8446,27.78221],[91.83631,27.78518],[91.8308,27.79313],[91.82857,27.80535],[91.82415,27.81448],[91.82068,27.81596],[91.81244,27.80483],[91.78776,27.80776],[91.77887,27.8062],[91.76131,27.79996],[91.70983,27.80797],[91.70131,27.81309],[91.67221,27.84568],[91.66318,27.85295],[91.64036,27.85536],[91.6294,27.85978],[91.61726,27.85657],[91.60623,27.86013],[91.60228,27.86407],[91.59277,27.85413],[91.58913,27.8568],[91.58862,27.85988],[91.58486,27.86218],[91.57554,27.86429],[91.57375,27.85589],[91.56989,27.84801],[91.56522,27.85274],[91.55791,27.8563],[91.55463,27.85454],[91.55359,27.85136],[91.55402,27.8463],[91.56084,27.8388],[91.56232,27.82996],[91.56703,27.82595],[91.56737,27.82094],[91.56598,27.81861],[91.57263,27.8167],[91.5763,27.81186],[91.58103,27.81199],[91.58585,27.81732],[91.59185,27.81911],[91.59774,27.81801],[91.60036,27.82269],[91.60755,27.82389],[91.61464,27.82185],[91.62028,27.81561],[91.62831,27.81089],[91.63508,27.80294],[91.63378,27.79604],[91.63732,27.79407],[91.63645,27.78809],[91.63823,27.78385],[91.63785,27.78028],[91.63996,27.77402],[91.64484,27.76999],[91.6454,27.76338],[91.64307,27.76103],[91.6419,27.75228],[91.63504,27.74689],[91.63463,27.745],[91.63889,27.73581],[91.63411,27.72258],[91.63152,27.71981],[91.63192,27.71679],[91.62685,27.7158],[91.62998,27.70862],[91.62855,27.69943],[91.61967,27.69385],[91.60722,27.69081],[91.60425,27.68347],[91.59619,27.67978],[91.59378,27.67005],[91.58714,27.66694],[91.58252,27.66254],[91.57745,27.66257],[91.57307,27.66069],[91.57061,27.6508],[91.56407,27.6414],[91.56218,27.63185],[91.5647,27.62576],[91.58437,27.60822],[91.58262,27.60461],[91.57018,27.59449],[91.56631,27.58306],[91.57189,27.57958],[91.57193,27.57495],[91.57398,27.57252],[91.57985,27.5697],[91.58343,27.56545],[91.58215,27.55676],[91.58896,27.5517],[91.59373,27.54206],[91.60195,27.54063],[91.60405,27.54231],[91.60788,27.54189],[91.61229,27.54369],[91.61195,27.54118],[91.6145,27.53717],[91.61391,27.53181],[91.62211,27.52017],[91.62403,27.51415],[91.63421,27.50852],[91.63774,27.50425],[91.64496,27.50201],[91.65245,27.48304],[91.65923,27.48347],[91.67217,27.49317],[91.68487,27.49695],[91.68481,27.50044],[91.69506,27.50533],[91.70195,27.49885],[91.71356,27.49348],[91.71459,27.48727],[91.71775,27.4851],[91.71462,27.47454],[91.73274,27.46935],[91.74708,27.47256],[91.75224,27.47568],[91.76298,27.47498],[91.76808,27.47374],[91.76589,27.47067],[91.76697,27.46476],[91.78077,27.46604],[91.7887,27.4701],[91.79584,27.47095],[91.79815,27.47429],[91.80115,27.47234],[91.81365,27.47438],[91.8209,27.47203],[91.82525,27.46785],[91.84159,27.47683],[91.8486,27.48646],[91.8551,27.48214],[91.86083,27.48476],[91.86438,27.48289],[91.86905,27.4791],[91.8716,27.4708],[91.87619,27.47117],[91.87951,27.47455],[91.88768,27.47617],[91.89789,27.47122],[91.90828,27.47286],[91.91222,27.47178],[91.92312,27.47404],[91.93142,27.4659],[91.93722,27.46506],[91.94364,27.45974],[91.94682,27.4618],[91.95181,27.46005],[91.96154,27.46068],[91.97282,27.46722],[91.97888,27.46334],[91.98908,27.46752],[91.99468,27.47849],[92.00032,27.47904],[92.00702,27.47659],[92.01083,27.47972],[92.01489,27.47887],[92.01631,27.48077],[92.01937,27.47805],[92.01929,27.47269],[92.02339,27.46197],[92.02217,27.44802],[92.02643,27.44274],[92.0268,27.44012],[92.03234,27.44057],[92.033,27.43858],[92.03728,27.43895],[92.04254,27.43523],[92.04202,27.43102],[92.04423,27.42672],[92.04248,27.41854],[92.04369,27.41481],[92.04897,27.40704],[92.05375,27.40403],[92.05453,27.40105],[92.05847,27.39971],[92.05481,27.39606],[92.0544,27.38284],[92.04899,27.37676],[92.04824,27.36313],[92.05011,27.35706],[92.05503,27.3527],[92.05277,27.35129],[92.05961,27.34656],[92.06252,27.34221],[92.06458,27.32698],[92.07815,27.31304],[92.08896,27.30457],[92.0998,27.30237],[92.12017,27.29031],[92.12498,27.28202],[92.12458,27.27802],[92.11995,27.2718],[92.11313,27.27006],[92.10945,27.27085],[92.10347,27.26866],[92.09451,27.27126],[92.0869,27.26927],[92.07535,27.27819],[92.07203,27.27807],[92.07031,27.27624],[92.06707,27.27717],[92.0613,27.27253],[92.04517,27.26858],[92.04293,27.2616],[92.038,27.25842],[92.03844,27.25444],[92.04017,27.25582],[92.04591,27.25559],[92.0592,27.2518],[92.06251,27.2441],[92.06737,27.24203],[92.07257,27.23311],[92.07056,27.2276],[92.06928,27.21373],[92.06243,27.20893],[92.05838,27.19031],[92.05211,27.18492],[92.03709,27.1793],[92.03575,27.17507],[92.02672,27.16828],[92.02873,27.15732],[92.0324,27.15277],[92.03218,27.14605],[92.0353,27.14085],[92.0358,27.13491],[92.03253,27.12439],[92.02743,27.11846],[92.02313,27.10955],[92.03017,27.0998],[92.02961,27.09493],[92.03195,27.09202],[92.03081,27.07992],[92.03764,27.07033],[92.03681,27.06314],[92.04325,27.05663],[92.04412,27.05136],[92.05616,27.05142],[92.07052,27.04398],[92.07302,27.04452],[92.07645,27.04159],[92.08175,27.04082],[92.08308,27.03408],[92.0789,27.02872],[92.07842,27.01736],[92.09507,27.0123],[92.09478,27.00924],[92.10355,27.00398],[92.10418,26.99864],[92.10825,26.98979],[92.10497,26.98664],[92.10476,26.97991],[92.11811,26.97437],[92.12098,26.96036],[92.11355,26.95049],[92.11568,26.94499],[92.11861,26.94228],[92.11817,26.9386],[92.11516,26.93421],[92.11685,26.92547],[92.11521,26.91375],[92.11777,26.9089],[92.11675,26.89749],[92.11438,26.89358],[92.12002,26.88898],[92.16986,26.89165],[92.1948,26.88996],[92.23802,26.90579],[92.25519,26.90961],[92.27609,26.902],[92.30296,26.90714],[92.30266,26.92264],[92.36319,26.93454],[92.3671,26.92868],[92.39833,26.92469],[92.41201,26.94276],[92.42581,26.94104],[92.44747,26.95881],[92.49686,26.96337],[92.55419,26.95744],[92.58334,26.95954],[92.6448,26.98666],[92.66745,27.02712],[92.67248,27.03165],[92.67752,27.03166],[92.68761,27.02717],[92.69265,27.02718],[92.69771,27.02268],[92.71283,27.02271],[92.72292,27.01821],[92.73299,27.02275],[92.75315,27.02278],[92.76322,27.02731],[92.77835,27.02282],[92.79348,27.02285],[92.82374,27.00934],[92.83886,27.00485],[92.85727,27.00164],[92.88661,26.99975],[92.91841,26.98231],[92.91553,26.97392],[92.91715,26.96293],[92.98189,26.93605],[93.02186,26.91342],[93.06272,26.92227],[93.08823,26.91439],[93.10737,26.92576],[93.17256,26.93599],[93.20095,26.94322],[93.24682,26.95125],[93.3241,26.96008],[93.38049,26.95922],[93.44877,26.95078],[93.46249,26.93788],[93.47065,26.9366],[93.47473,26.93932],[93.48626,26.94228],[93.4891,26.93618],[93.50728,26.94394],[93.52477,26.94853],[93.54101,26.94897],[93.54494,26.95123],[93.54915,26.95001],[93.55966,26.95271],[93.58667,26.95047],[93.61473,26.9603],[93.66506,26.96851],[93.67567,26.97459],[93.69367,26.989],[93.70891,27.00811],[93.72338,27.02081],[93.73298,27.02594],[93.74353,27.02769],[93.76742,27.03944],[93.76673,27.05291],[93.76799,27.05445],[93.76786,27.05128],[93.77185,27.05408],[93.77087,27.06204],[93.77828,27.04894],[93.77957,27.05806],[93.78109,27.05882],[93.78119,27.06552],[93.78304,27.06435],[93.78379,27.05145],[93.78942,27.0506],[93.79383,27.05452],[93.79441,27.06192],[93.79522,27.05701],[93.80022,27.05785],[93.79879,27.06239],[93.79304,27.06828],[93.79378,27.07234],[93.79527,27.07246],[93.79684,27.06527],[93.80336,27.05806],[93.80768,27.05981],[93.81139,27.05894],[93.80841,27.06593],[93.81074,27.06747],[93.81499,27.06146],[93.82121,27.0644],[93.82199,27.06777],[93.82741,27.06594],[93.82923,27.06681],[93.82861,27.06885],[93.8298,27.06797],[93.83567,27.0743],[93.8356,27.0782],[93.8332,27.08156],[93.83777,27.08537],[93.8315,27.08678],[93.8314,27.09091],[93.82667,27.09697],[93.82556,27.10359],[93.8266,27.11206],[93.82507,27.11642],[93.81994,27.12275],[93.81405,27.12128],[93.80943,27.12334],[93.81294,27.1293],[93.81212,27.13113],[93.80702,27.13066],[93.80319,27.13278],[93.79691,27.12894],[93.79447,27.13452],[93.79597,27.13765],[93.80539,27.13713],[93.80599,27.14876],[93.82535,27.16848],[93.83871,27.17234],[93.85987,27.19348],[93.86423,27.19615],[93.8994,27.23909],[93.92824,27.26422],[93.95527,27.29326],[93.99125,27.32835],[94.01157,27.3385],[94.02211,27.3462],[94.0258,27.34484],[94.02784,27.34684],[94.03026,27.34566],[94.03092,27.34839],[94.04055,27.3515],[94.05404,27.36034],[94.05981,27.36154],[94.06146,27.36373],[94.06085,27.3653],[94.06921,27.37346],[94.07575,27.38968],[94.0896,27.40705],[94.10494,27.41397],[94.11786,27.42969],[94.12769,27.43459],[94.13146,27.44092],[94.15538,27.45697],[94.15508,27.4591],[94.15942,27.46162],[94.15667,27.47486],[94.16454,27.47678],[94.16913,27.48123],[94.17623,27.48215],[94.1842,27.48665],[94.18928,27.4924],[94.20064,27.49488],[94.20905,27.49253],[94.214,27.5008],[94.22082,27.50528],[94.26826,27.52084],[94.25749,27.53703],[94.25687,27.54171],[94.2594,27.54905],[94.2587,27.55546],[94.24672,27.56947],[94.23481,27.56916],[94.22495,27.57409],[94.22283,27.5882],[94.22664,27.59774],[94.21337,27.6002],[94.20951,27.60508],[94.20959,27.60891],[94.21736,27.60725],[94.22279,27.61141],[94.23756,27.63268],[94.24847,27.634],[94.25146,27.63763],[94.25441,27.63565],[94.26171,27.63587],[94.26741,27.62949],[94.26711,27.62735],[94.26558,27.62421],[94.2631,27.62426],[94.26058,27.62187],[94.26094,27.6181],[94.25468,27.61579],[94.25426,27.61423],[94.2564,27.61051],[94.27247,27.60294],[94.27465,27.59983],[94.27381,27.59497],[94.2774,27.58944],[94.2883,27.58926],[94.28985,27.59616],[94.29826,27.60193],[94.30182,27.60102],[94.30926,27.59078],[94.32278,27.58864],[94.32432,27.58462],[94.33283,27.58695],[94.33697,27.57919],[94.33824,27.58122],[94.34492,27.58213],[94.35068,27.57711],[94.35914,27.57693],[94.36401,27.57435],[94.36989,27.57475],[94.3765,27.58237],[94.3819,27.5816],[94.38859,27.58479],[94.39239,27.58902],[94.40161,27.58498],[94.41846,27.59752],[94.43168,27.60033],[94.43171,27.59162],[94.43333,27.58842],[94.4396,27.58122],[94.45133,27.57176],[94.45494,27.5666],[94.45644,27.55984],[94.46173,27.55524],[94.46791,27.56115],[94.4778,27.57614],[94.49896,27.57217],[94.50141,27.57399],[94.50247,27.57741],[94.51385,27.58011],[94.52151,27.58455],[94.52201,27.59142],[94.52958,27.59139],[94.53214,27.59457],[94.53596,27.59253],[94.54459,27.60103],[94.55532,27.60075],[94.56222,27.6049],[94.56857,27.60234],[94.57409,27.60381],[94.57685,27.60589],[94.57974,27.6123],[94.58755,27.61846],[94.59559,27.61968],[94.60001,27.61817],[94.60289,27.62123],[94.60659,27.61862],[94.61438,27.62397],[94.62087,27.62495],[94.62347,27.62781],[94.62846,27.62454],[94.63319,27.62416],[94.64137,27.62944],[94.64668,27.63807],[94.6574,27.64178],[94.66265,27.64533],[94.67275,27.64722],[94.67911,27.64515],[94.68268,27.64589],[94.68665,27.65099],[94.6838,27.66017],[94.68791,27.66514],[94.6909,27.66174],[94.70049,27.66145],[94.70904,27.65658],[94.71602,27.65753],[94.72051,27.66692],[94.72514,27.669],[94.72897,27.66453],[94.73573,27.66329],[94.74137,27.65989],[94.75431,27.66055],[94.76093,27.66504],[94.76916,27.67952],[94.77866,27.6797],[94.78411,27.6839],[94.78905,27.68518],[94.79187,27.68809],[94.79373,27.69518],[94.79698,27.69563],[94.80828,27.69198],[94.82078,27.69208],[94.84097,27.70061],[94.84783,27.70557],[94.84841,27.71711],[94.85235,27.7276],[94.92233,27.74992],[95.30876,27.86801],[95.37958,27.83918],[95.52013,27.88124],[95.52616,27.89062],[95.53404,27.89814],[95.53994,27.89646],[95.54427,27.89978],[95.54219,27.90627],[95.54467,27.91084],[95.55383,27.91373],[95.56354,27.91926],[95.56481,27.92927],[95.56859,27.9359],[95.576,27.9397],[95.58611,27.93672],[95.59371,27.94677],[95.60528,27.95462],[95.82388,27.97148],[95.97129,27.96272],[95.9652,27.95167],[95.95456,27.94114],[95.9483,27.93712],[95.94924,27.9312],[95.95476,27.9312],[95.94855,27.92439],[95.95269,27.92009],[95.94712,27.91745],[95.94266,27.91069],[95.93815,27.91253],[95.93553,27.90749],[95.94105,27.90561],[95.92983,27.90274],[95.93178,27.90014],[95.93775,27.8982],[95.92849,27.89513],[95.92785,27.8987],[95.92633,27.89888],[95.92597,27.89534],[95.91923,27.89504],[95.9237,27.8881],[95.91768,27.89007],[95.9155,27.88939],[95.9168,27.885],[95.92076,27.88464],[95.92509,27.88168],[95.91944,27.8806],[95.91555,27.88376],[95.91702,27.88046],[95.91454,27.87576],[95.91012,27.87241],[95.9107,27.87019],[95.90729,27.87044],[95.90859,27.86871],[95.90658,27.866],[95.90335,27.86891],[95.90169,27.86847],[95.90146,27.86648],[95.90492,27.86212],[95.89475,27.862],[95.89534,27.85737],[95.89025,27.85999],[95.89114,27.85685],[95.88845,27.85657],[95.88366,27.84611],[95.87041,27.83267],[95.85439,27.83002],[95.83776,27.82412],[95.83807,27.81023],[95.82659,27.80872],[95.81665,27.80269],[95.81092,27.79653],[95.80955,27.78908],[95.80392,27.7846],[95.80035,27.77369],[95.7944,27.76908],[95.78689,27.75967],[95.776,27.75362],[95.77798,27.74246],[95.78055,27.73692],[95.77938,27.73371],[95.76557,27.72639],[95.75903,27.72704],[95.75415,27.7257],[95.75249,27.72423],[95.75226,27.72092],[95.75419,27.71842],[95.76536,27.71466],[95.76251,27.71316],[95.76418,27.71113],[95.7629,27.70902],[95.76803,27.70209],[95.76455,27.6997],[95.76573,27.69757],[95.76378,27.69376],[95.76539,27.69077],[95.76715,27.69049],[95.76787,27.68699],[95.77331,27.6849],[95.77723,27.68755],[95.78293,27.68721],[95.783,27.68464],[95.78513,27.68514],[95.78616,27.68175],[95.79046,27.68014],[95.77906,27.67728],[95.77514,27.67432],[95.77197,27.66409],[95.77297,27.66204],[95.77043,27.6577],[95.77432,27.6508],[95.78622,27.64632],[95.78784,27.64396],[95.79015,27.64476],[95.79578,27.64173],[95.79603,27.63786],[95.79443,27.63887],[95.7883,27.63484],[95.7895,27.62631],[95.77957,27.62564],[95.77853,27.62398],[95.77832,27.61938],[95.78003,27.61662],[95.78514,27.61561],[95.79034,27.61174],[95.78943,27.604],[95.79064,27.59965],[95.79533,27.59766],[95.80557,27.60095],[95.8158,27.59867],[95.81845,27.59539],[95.8138,27.58898],[95.81192,27.58322],[95.81434,27.57425],[95.82344,27.57448],[95.83335,27.56002],[95.8363,27.55926],[95.84127,27.56205],[95.8529,27.55279],[95.86074,27.5431],[95.86263,27.54537],[95.8703,27.54528],[95.87371,27.547],[95.8758,27.54649],[95.87665,27.54428],[95.8785,27.51876],[95.87584,27.51242],[95.8788,27.50489],[95.8843,27.50105],[95.88685,27.49708],[95.88003,27.49703],[95.8743,27.49325],[95.87294,27.49078],[95.87389,27.48116],[95.87154,27.47611],[95.87069,27.46665],[95.85655,27.46126],[95.85332,27.45691],[95.85675,27.44493],[95.84947,27.44161],[95.84682,27.43856],[95.84729,27.43619],[95.84234,27.42775],[95.84451,27.42158],[95.85002,27.41781],[95.85296,27.41111],[95.86014,27.40801],[95.8625,27.40945],[95.86245,27.41153],[95.85702,27.41564],[95.85714,27.41988],[95.87088,27.42635],[95.87567,27.43479],[95.87875,27.43612],[95.88322,27.43532],[95.88494,27.43212],[95.88395,27.41402],[95.88759,27.41166],[95.8883,27.40899],[95.88403,27.4025],[95.88573,27.39815],[95.89099,27.40121],[95.89867,27.41286],[95.90001,27.42202],[95.90798,27.43435],[95.91089,27.43577],[95.91823,27.43473],[95.92787,27.43847],[95.93444,27.43564],[95.94131,27.43729],[95.94745,27.43299],[95.94519,27.42664],[95.95113,27.42397],[95.95475,27.41962],[95.95675,27.4265],[95.96034,27.42903],[95.9632,27.42721],[95.96179,27.41801],[95.96456,27.41805],[95.96547,27.42701],[95.96935,27.42789],[95.96962,27.4235],[95.97408,27.42169],[95.97539,27.41939],[95.97515,27.41746],[95.97078,27.41683],[95.97022,27.41491],[95.97405,27.41137],[95.9833,27.41183],[95.98456,27.40445],[95.99014,27.40236],[95.99349,27.39639],[95.99647,27.3946],[95.99817,27.38789],[96.01788,27.36943],[96.01775,27.36492],[96.0127,27.36503],[96.00753,27.36063],[96.00249,27.36074],[95.9965,27.35636],[95.99329,27.35794],[95.98921,27.3565],[95.98688,27.34561],[95.97654,27.33738],[95.97158,27.33655],[95.97101,27.33282],[95.96529,27.32788],[95.96772,27.32567],[95.97209,27.32744],[95.97556,27.32446],[95.96912,27.32241],[95.96276,27.32314],[95.96103,27.31644],[95.95505,27.31768],[95.95656,27.31257],[95.96004,27.31095],[95.95343,27.30892],[95.94663,27.30379],[95.94172,27.30523],[95.93756,27.30082],[95.93012,27.30028],[95.91799,27.29134],[95.91478,27.29201],[95.91338,27.28914],[95.90717,27.28897],[95.90606,27.28222],[95.90111,27.28392],[95.89721,27.28216],[95.89709,27.28054],[95.90435,27.27392],[95.90008,27.27425],[95.89945,27.26868],[95.89356,27.26757],[95.89462,27.26101],[95.89418,27.25692],[95.89243,27.25528],[95.88132,27.25591],[95.8765,27.25964],[95.86937,27.26002],[95.86383,27.26644],[95.85643,27.27106],[95.85382,27.2792],[95.85931,27.28722],[95.8505,27.28659],[95.82332,27.27887],[95.81538,27.27854],[95.80516,27.27295],[95.80553,27.2758],[95.79945,27.27655],[95.80262,27.28294],[95.80089,27.28427],[95.79954,27.28234],[95.79522,27.28253],[95.7879,27.27865],[95.78818,27.27672],[95.78059,27.27246],[95.77958,27.26975],[95.77525,27.27041],[95.76518,27.26726],[95.75686,27.26864],[95.7477,27.26575],[95.74211,27.26666],[95.73618,27.26326],[95.73469,27.26039],[95.72713,27.25965],[95.72021,27.24948],[95.71378,27.25024],[95.71198,27.25284],[95.70788,27.25006],[95.70151,27.24857],[95.69236,27.25321],[95.68153,27.25174],[95.67603,27.24696],[95.63234,27.22968],[95.61903,27.23248],[95.61757,27.2309],[95.6122,27.23021],[95.61062,27.2276],[95.60382,27.22422],[95.58757,27.22294],[95.58454,27.22489],[95.58298,27.22851],[95.58046,27.22781],[95.57826,27.23207],[95.57456,27.23436],[95.57727,27.23807],[95.5752,27.23978],[95.57465,27.24364],[95.56431,27.24467],[95.55808,27.24898],[95.55354,27.24886],[95.55099,27.25045],[95.55195,27.25315],[95.54823,27.25394],[95.54851,27.25732],[95.54512,27.25999],[95.54203,27.25901],[95.53711,27.2625],[95.53515,27.26156],[95.53452,27.26459],[95.53264,27.26147],[95.53028,27.26135],[95.52989,27.26454],[95.52789,27.26308],[95.52539,27.26372],[95.51705,27.25751],[95.51147,27.26191],[95.50917,27.26204],[95.50467,27.24936],[95.49963,27.24618],[95.49209,27.24554],[95.48426,27.24125],[95.48293,27.23652],[95.47884,27.23406],[95.47966,27.23096],[95.47745,27.22676],[95.47147,27.22272],[95.47244,27.21893],[95.46754,27.21832],[95.46716,27.21337],[95.45758,27.20878],[95.45589,27.20253],[95.45842,27.20018],[95.45914,27.19543],[95.46246,27.19437],[95.46017,27.19134],[95.4666,27.18164],[95.45952,27.17569],[95.46471,27.17221],[95.46551,27.16636],[95.46252,27.16171],[95.45332,27.15733],[95.45965,27.15374],[95.46222,27.14966],[95.45748,27.14413],[95.45657,27.14055],[95.45817,27.13796],[95.45327,27.12943],[95.44941,27.12968],[95.4493,27.13459],[95.44441,27.13521],[95.44242,27.13139],[95.44473,27.12879],[95.4406,27.12874],[95.43961,27.12592],[95.42065,27.12578],[95.39854,27.10872],[95.38464,27.10554],[95.38199,27.10028],[95.38302,27.0982],[95.37467,27.09268],[95.37012,27.09449],[95.3712,27.10079],[95.36376,27.10255],[95.36865,27.10709],[95.3649,27.10818],[95.35476,27.10391],[95.32927,27.08766],[95.31681,27.08281],[95.30004,27.07005],[95.29183,27.06649],[95.27632,27.05219],[95.27524,27.04997],[95.27768,27.04832],[95.27585,27.04408],[95.27713,27.04238],[95.27158,27.04118],[95.26339,27.03507],[95.26007,27.03555],[95.25844,27.03382],[95.25899,27.03027],[95.25657,27.03041],[95.24644,27.0238],[95.24384,27.02606],[95.23947,27.03639],[95.23302,27.03748],[95.23223,27.04275],[95.22933,27.04152],[95.23108,27.03909],[95.23032,27.0357],[95.22687,27.03443],[95.22353,27.03606],[95.21919,27.03195],[95.2154,27.03016],[95.21386,27.03096],[95.21069,27.02854],[95.20948,27.0304],[95.21062,27.03097],[95.20752,27.03045],[95.20723,27.03234],[95.20527,27.03241],[95.20466,27.03771],[95.20322,27.03588],[95.19666,27.03699],[95.19618,27.03184],[95.19479,27.0312],[95.19321,27.03172],[95.19424,27.03413],[95.19289,27.03578],[95.19452,27.01027],[95.19696,27.00079],[95.19668,26.9939],[95.19313,26.99237],[95.19204,26.98453],[95.19726,26.98008],[95.20459,26.97921],[95.20677,26.97713],[95.20204,26.97668],[95.20337,26.97333],[95.20558,26.96957],[95.21184,26.96484],[95.20355,26.95706],[95.21019,26.95324],[95.20602,26.95112],[95.21117,26.93137],[95.21378,26.9286],[95.22228,26.92882],[95.22603,26.92501],[95.23064,26.91495],[95.23063,26.9131],[95.22863,26.91224],[95.23076,26.90398],[95.22797,26.89267],[95.23048,26.88515],[95.22656,26.87997],[95.21448,26.8812],[95.20949,26.87995],[95.208,26.87607],[95.20307,26.87222],[95.18114,26.8592],[95.1824,26.854],[95.19221,26.84394],[95.19392,26.84371],[95.19432,26.84585],[95.20083,26.84325],[95.20519,26.84502],[95.20299,26.84058],[95.1971,26.83719],[95.19562,26.83424],[95.20337,26.80594],[95.21162,26.79259],[95.21805,26.78772],[95.23146,26.78344],[95.2367,26.78331],[95.23816,26.78106],[95.24135,26.78145],[95.22809,26.77184],[95.2296,26.76606],[95.22048,26.75586],[95.21651,26.75396],[95.21566,26.74969],[95.21776,26.74564],[95.21736,26.74155],[95.21324,26.73543],[95.21252,26.72943],[95.22454,26.71792],[95.22598,26.71093],[95.23241,26.70624],[95.22998,26.69112],[95.23224,26.68223],[95.23321,26.68109],[95.23474,26.68257],[95.24917,26.68371],[95.25706,26.67623],[95.25888,26.67188],[95.25693,26.66788],[95.25657,26.66145],[95.25866,26.65575],[95.27433,26.65863],[95.2816,26.65589],[95.2839,26.65684],[95.29191,26.6525],[95.30396,26.65101],[95.31361,26.6627],[95.31709,26.66472],[95.32639,26.6645],[95.32731,26.66862],[95.33478,26.67203],[95.33579,26.67448],[95.34671,26.67535],[95.35143,26.67201],[95.35574,26.67266],[95.36054,26.67104],[95.36681,26.67552],[95.37382,26.68414],[95.39477,26.68529],[95.40113,26.6893],[95.40301,26.69497],[95.40924,26.69573],[95.41185,26.69405],[95.41753,26.6942],[95.42908,26.70085],[95.43138,26.7007],[95.43206,26.71628],[95.4462,26.72685],[95.45294,26.73383],[95.45909,26.74388],[95.46714,26.74468],[95.4739,26.74117],[95.48276,26.74705],[95.48199,26.74999],[95.48421,26.75714],[95.48987,26.7635],[95.49226,26.77269],[95.49533,26.77543],[95.49589,26.77877],[95.50502,26.79254],[95.50396,26.79496],[95.50742,26.80452],[95.5074,26.8088],[95.51453,26.80951],[95.52228,26.8135],[95.52445,26.8221],[95.53192,26.82726],[95.53601,26.82723],[95.53831,26.8319],[95.54313,26.83538],[95.55197,26.83186],[95.55688,26.83264],[95.55665,26.82985],[95.56477,26.81943],[95.57045,26.81595],[95.58636,26.81723],[95.59534,26.81466],[95.60002,26.81147],[95.60849,26.81286],[95.61264,26.82508],[95.62055,26.83116],[95.62726,26.84301],[95.62681,26.84741],[95.62953,26.85774],[95.62678,26.86198],[95.63415,26.86801],[95.63188,26.87363],[95.64464,26.8764],[95.64672,26.8845],[95.65101,26.88682],[95.65302,26.89178],[95.66066,26.89545],[95.667,26.90286],[95.67512,26.90093],[95.6795,26.89572],[95.68615,26.89554],[95.69048,26.8927],[95.69481,26.89205],[95.70645,26.88194],[95.70624,26.88056],[95.71364,26.88014],[95.71637,26.87846],[95.72414,26.8822],[95.73429,26.8938],[95.74065,26.89388],[95.74491,26.89633],[95.74669,26.90386],[95.75124,26.90878],[95.74666,26.91631],[95.74679,26.92265],[95.7499,26.92359],[95.74789,26.92583],[95.75552,26.92957],[95.75684,26.93204],[95.75615,26.93512],[95.76005,26.93685],[95.75963,26.94542],[95.755,26.95384],[95.75906,26.95464],[95.76084,26.95875],[95.7603,26.96392],[95.76507,26.9684],[95.7681,26.97652],[95.78115,26.97779],[95.78343,26.99012],[95.79634,26.99774],[95.80222,27.00649],[95.80203,27.0145],[95.80365,27.01555],[95.8106,27.01359],[95.81207,27.01461],[95.81382,27.01234],[95.82269,27.00959],[95.82562,27.01023],[95.83006,27.00748],[95.83585,27.00923],[95.8425,27.01394],[95.851,27.01427],[95.85761,27.01185],[95.86307,27.01344],[95.87008,27.0127],[95.87576,27.01445],[95.8759,27.01925],[95.87915,27.0229],[95.88658,27.02611],[95.88908,27.02378],[95.89495,27.02596],[95.90137,27.0326],[95.90423,27.03875],[95.911,27.0367],[95.91777,27.04093],[95.92249,27.04158],[95.926,27.04492],[95.93365,27.04572],[95.94596,27.05165],[95.95351,27.06633],[95.95591,27.07778],[95.96501,27.08693],[95.96378,27.09244],[95.9675,27.09547],[95.96862,27.09989],[95.98571,27.11312],[95.98797,27.1199],[95.99204,27.12282],[95.99856,27.13497],[96.01051,27.14224],[96.0099,27.14547],[96.01466,27.15],[96.01604,27.15793],[96.01856,27.16082],[96.01969,27.16641],[96.01827,27.16959],[96.02296,27.18008],[96.03158,27.18602],[96.03983,27.18761],[96.05428,27.19603],[96.05714,27.20124],[96.06346,27.20361],[96.06405,27.20586],[96.07175,27.20523],[96.07741,27.20835],[96.07799,27.21055],[96.08275,27.21288],[96.08919,27.21981],[96.09061,27.22333],[96.09957,27.22435],[96.11192,27.23175],[96.12108,27.23159],[96.12458,27.2355],[96.13105,27.23657],[96.13685,27.24137],[96.14447,27.24129],[96.1495,27.24297],[96.15556,27.24835],[96.15807,27.24739],[96.18529,27.24891],[96.19358,27.26152],[96.20444,27.25995],[96.20638,27.26149],[96.20899,27.26107],[96.21081,27.26233],[96.21048,27.26485],[96.21396,27.26552],[96.22422,27.27258],[96.22799,27.27868],[96.23147,27.27611],[96.24537,27.27642],[96.24797,27.27258],[96.25558,27.2747],[96.25926,27.2722],[96.26107,27.27317],[96.27102,27.27154],[96.27547,27.27946],[96.27457,27.28339],[96.28391,27.28471],[96.29498,27.29165],[96.30727,27.29428],[96.31155,27.29185],[96.32309,27.29058],[96.32609,27.28887],[96.33033,27.28967],[96.33087,27.28725],[96.33966,27.28503],[96.34591,27.28552],[96.34916,27.28852],[96.34934,27.29316],[96.35247,27.29509],[96.35813,27.29015],[96.36723,27.28683],[96.36799,27.28967],[96.37021,27.28997],[96.375,27.2853],[96.38232,27.28678],[96.38684,27.28463],[96.40191,27.29109],[96.40289,27.2932],[96.40495,27.28943],[96.40799,27.2877],[96.40965,27.29064],[96.41438,27.29331],[96.41575,27.29735],[96.42133,27.30145],[96.4355,27.30236],[96.44065,27.30633],[96.4441,27.30186],[96.44898,27.303],[96.45083,27.30142],[96.45483,27.30235],[96.45715,27.30649],[96.46244,27.30617],[96.47038,27.30068],[96.48098,27.29931],[96.48856,27.29628],[96.48901,27.30111],[96.49058,27.30263],[96.50155,27.29887],[96.50814,27.29912],[96.50912,27.2972],[96.5123,27.29671],[96.51233,27.29252],[96.51575,27.29036],[96.51783,27.28563],[96.51898,27.28706],[96.52385,27.28655],[96.5314,27.2966],[96.54269,27.3021],[96.54255,27.30902],[96.5505,27.31294],[96.55122,27.31846],[96.5534,27.31814],[96.55527,27.32038],[96.55786,27.31838],[96.56408,27.31845],[96.56784,27.32231],[96.57067,27.32198],[96.5744,27.32405],[96.58406,27.3341],[96.58932,27.3356],[96.59572,27.33387],[96.59526,27.34051],[96.59105,27.34631],[96.5913,27.34845],[96.5952,27.34998],[96.60036,27.35498],[96.59926,27.35598],[96.60335,27.35921],[96.60531,27.36555],[96.62461,27.36665],[96.64768,27.35916],[96.6609,27.36428],[96.66547,27.36103],[96.6702,27.36093],[96.67236,27.35697],[96.67528,27.36125],[96.69749,27.35766],[96.70206,27.35974],[96.70095,27.36278],[96.7027,27.36496],[96.70352,27.37213],[96.70489,27.37204],[96.71179,27.37003],[96.72136,27.36342],[96.72952,27.3621],[96.72985,27.35942],[96.74009,27.35754],[96.74577,27.3582],[96.74652,27.356],[96.74928,27.35569],[96.75169,27.35227],[96.75667,27.35444],[96.76308,27.35405],[96.76692,27.35705],[96.77062,27.35584],[96.77439,27.35171],[96.78127,27.35055],[96.78761,27.34783],[96.78906,27.34573],[96.79666,27.34563],[96.80152,27.33939],[96.80512,27.32894],[96.81324,27.32167],[96.82242,27.30822],[96.83489,27.30294],[96.83802,27.30032],[96.83859,27.29716],[96.84798,27.29028],[96.84753,27.28699],[96.85018,27.27825],[96.84705,27.2711],[96.85098,27.26968],[96.85722,27.26277],[96.86299,27.2595],[96.86857,27.2584],[96.88474,27.25966],[96.8841,27.25574],[96.88672,27.25345],[96.88766,27.24669],[96.88224,27.24284],[96.88138,27.23929],[96.88208,27.23645],[96.88772,27.23565],[96.88504,27.23156],[96.88523,27.22647],[96.88143,27.22488],[96.87703,27.22032],[96.86721,27.21696],[96.8608,27.2107],[96.85477,27.21024],[96.8588,27.20316],[96.85921,27.19761],[96.85718,27.19592],[96.85684,27.19296],[96.86496,27.18878],[96.87441,27.18068],[96.88297,27.17833],[96.90108,27.16873],[96.90839,27.16868],[96.91245,27.16611],[96.92203,27.16536],[96.93199,27.16158],[96.93917,27.1619],[96.94332,27.16378],[96.95272,27.16225],[96.95534,27.16437],[96.96398,27.16135],[96.96504,27.15803],[96.98483,27.1543],[96.99145,27.1452],[96.9933,27.13999],[97.00531,27.14091],[97.01969,27.13292],[97.02466,27.1319],[97.02604,27.12948],[97.03027,27.13155],[97.03595,27.12433],[97.03349,27.11827],[97.04065,27.11623],[97.04448,27.11284],[97.04459,27.10789],[97.04956,27.10518],[97.05219,27.10615],[97.05804,27.10016],[97.06221,27.09856],[97.06344,27.09145],[97.06695,27.09151],[97.07118,27.08922],[97.07667,27.09866],[97.08721,27.09482],[97.09631,27.09589],[97.09794,27.09854],[97.09489,27.10345],[97.10035,27.10836],[97.10643,27.10389],[97.11932,27.10387],[97.12456,27.09566],[97.13551,27.09365],[97.13852,27.09105],[97.14432,27.09976],[97.14433,27.10336],[97.14855,27.10721],[97.14811,27.11322],[97.14966,27.11676],[97.15665,27.11855],[97.16179,27.12289],[97.16113,27.12888],[97.1659,27.13514],[97.16385,27.14224],[97.15982,27.14636],[97.15093,27.14981],[97.15111,27.15331],[97.14667,27.16491],[97.13859,27.16414],[97.13259,27.17017],[97.12451,27.17428],[97.12172,27.18342],[97.12209,27.1899],[97.11072,27.19669],[97.10766,27.20116],[97.09048,27.21362],[97.09269,27.22599],[97.09048,27.22818],[97.08851,27.23821],[97.07402,27.24684],[97.07374,27.25153],[97.06893,27.25724],[97.05493,27.26571],[97.05621,27.27006],[97.05478,27.27512],[97.05095,27.27562],[97.05108,27.27746],[97.04802,27.28021],[97.04107,27.28218],[97.03788,27.28645],[97.03497,27.29507],[97.02909,27.30131],[97.02982,27.30524],[97.02827,27.30794],[97.02515,27.3064],[97.02224,27.30704],[97.0201,27.3103],[97.01711,27.31058],[97.01532,27.31307],[97.00921,27.31052],[97.008,27.31343],[96.99811,27.31898],[96.99525,27.32527],[96.9958,27.33261],[96.99272,27.33625],[96.99054,27.34377],[96.98065,27.34554],[96.97845,27.35658],[96.97068,27.36627],[96.96213,27.37312],[96.96748,27.38151],[96.96654,27.38577],[96.96027,27.39433],[96.96231,27.40165],[96.96056,27.40409],[96.95399,27.40693],[96.94444,27.40861],[96.94061,27.41312],[96.93439,27.41577],[96.93164,27.41939],[96.9317,27.42297],[96.93387,27.42624],[96.93262,27.4309],[96.92572,27.43604],[96.91633,27.44637],[96.90789,27.44832],[96.90324,27.45273],[96.90711,27.47762],[96.91053,27.48087],[96.9108,27.48645],[96.91782,27.49709],[96.92298,27.50201],[96.92827,27.51157],[96.92982,27.52418],[96.92473,27.53328],[96.91301,27.54388],[96.91223,27.58053],[96.90119,27.5801],[96.89671,27.5815],[96.89571,27.58729],[96.89675,27.60926],[96.89838,27.61421],[96.90711,27.61643],[96.91676,27.62507],[96.94172,27.66074],[96.98306,27.66428],[96.99788,27.69181],[97.03616,27.74239],[97.04261,27.74662],[97.05604,27.74191],[97.06443,27.74725],[97.06952,27.74701],[97.07724,27.74113],[97.08488,27.73861],[97.09078,27.73832],[97.09385,27.74009],[97.09883,27.74679],[97.10246,27.75786],[97.10184,27.76531],[97.104,27.76975],[97.11343,27.77432],[97.11909,27.78338],[97.13254,27.78775],[97.14569,27.80458],[97.16463,27.81059],[97.16956,27.81633],[97.17313,27.82621],[97.18413,27.83429],[97.18847,27.84365],[97.2196,27.86366],[97.23303,27.87616],[97.24902,27.8993],[97.25791,27.90364],[97.27116,27.90442],[97.309,27.91499],[97.31323,27.91382],[97.31581,27.90341],[97.32531,27.89599],[97.33925,27.89075],[97.35708,27.87885],[97.36835,27.87829],[97.37359,27.88018],[97.37978,27.8971],[97.37732,27.91349],[97.38074,27.92481],[97.37641,27.93292],[97.37719,27.94102],[97.38241,27.95104],[97.37393,27.96176],[97.37298,27.96803],[97.39129,27.98888],[97.3926,28.00102],[97.41012,28.00517],[97.41251,28.00887],[97.4129,28.01484],[97.40996,28.01953],[97.40442,28.02148],[97.40382,28.02463],[97.39735,28.02902],[97.38714,28.02953],[97.37568,28.04016],[97.37532,28.04711],[97.38012,28.05477],[97.38095,28.05927],[97.37748,28.05993],[97.36076,28.05574],[97.32578,28.0527],[97.31747,28.0579],[97.31136,28.06777],[97.31043,28.07452],[97.31564,28.08431],[97.3226,28.0921],[97.3306,28.09911],[97.34226,28.10428],[97.34724,28.11049],[97.34614,28.11437],[97.32975,28.12835],[97.32439,28.13746],[97.32444,28.14249],[97.3279,28.15021],[97.34482,28.16157],[97.35658,28.17247],[97.3598,28.18499],[97.36385,28.18909],[97.37759,28.18864],[97.40116,28.18148],[97.40281,28.18187],[97.40104,28.19225],[97.38956,28.20694],[97.37837,28.21779],[97.3366,28.23638],[97.31544,28.24772],[97.29526,28.26188],[97.28494,28.26526],[97.27205,28.26661],[97.25175,28.26594],[97.23946,28.26822],[97.23036,28.27393],[97.22671,28.28463],[97.20933,28.28763],[97.18368,28.28362],[97.1711,28.28567],[97.1645,28.29245],[97.15483,28.31086],[97.14046,28.32758],[97.12778,28.3368],[97.10569,28.34696],[97.08131,28.35052],[97.07531,28.34961],[97.06484,28.34198],[97.04789,28.33897],[97.02677,28.3206],[97.01182,28.31031],[96.99685,28.30408],[96.98761,28.30333],[96.97879,28.31403],[96.96323,28.32026],[96.95318,28.32839],[96.93655,28.33515],[96.92584,28.33685],[96.91381,28.35703],[96.90399,28.36921],[96.88967,28.37849],[96.86357,28.37157],[96.85118,28.3633],[96.83454,28.36072],[96.79733,28.36244],[96.77692,28.36481],[96.77029,28.36703],[96.76154,28.3746],[96.75882,28.38358],[96.7568,28.39993],[96.74085,28.41381],[96.72726,28.42208],[96.70428,28.42696],[96.68179,28.43563],[96.65816,28.45272],[96.64114,28.45779],[96.62176,28.45483],[96.5869,28.45567],[96.57075,28.45232],[96.52689,28.42318],[96.50538,28.41098],[96.49346,28.41055],[96.4713,28.41583],[96.45713,28.41382],[96.43429,28.38731],[96.42769,28.37565],[96.4246,28.36382],[96.42362,28.35119],[96.41738,28.34094],[96.39548,28.33592],[96.39212,28.33869],[96.38827,28.34723],[96.36996,28.36332],[96.36825,28.37153],[96.36893,28.37891],[96.36258,28.38636],[96.31668,28.37757],[96.30721,28.38252],[96.30102,28.39282],[96.29058,28.39972],[96.27727,28.40364],[96.2608,28.4041],[96.25339,28.40704],[96.27756,28.42395],[96.31572,28.44408],[96.3255,28.45466],[96.34945,28.46726],[96.36208,28.48034],[96.36356,28.48745],[96.36012,28.49382],[96.35146,28.50375],[96.32946,28.51713],[96.31858,28.52596],[96.34475,28.55401],[96.35718,28.55347],[96.3917,28.55581],[96.40001,28.55928],[96.40139,28.5695],[96.39937,28.577],[96.40203,28.58095],[96.41052,28.58273],[96.42484,28.58211],[96.42967,28.59098],[96.45545,28.61114],[96.47447,28.62178],[96.48732,28.63341],[96.48736,28.63891],[96.48247,28.65323],[96.4669,28.67518],[96.47063,28.67885],[96.491,28.68441],[96.50736,28.69564],[96.52502,28.70108],[96.55566,28.70116],[96.57931,28.71159],[96.59253,28.72463],[96.60424,28.74443],[96.61014,28.76687],[96.60899,28.77983],[96.60323,28.793],[96.55687,28.84143],[96.52609,28.88246],[96.53011,28.91025],[96.50802,28.95185],[96.50938,28.96637],[96.49216,28.95971],[96.48122,28.95852],[96.46944,28.97122],[96.46467,28.98314],[96.4659,28.99527],[96.49089,29.03337],[96.50069,29.05278],[96.5128,29.06969],[96.51358,29.07396],[96.49847,29.07127],[96.47707,29.06313],[96.46229,29.0566],[96.4537,29.04909],[96.43558,29.04103],[96.42314,29.03751],[96.39994,29.03588],[96.3565,29.03703],[96.34139,29.03433],[96.32691,29.02802],[96.29401,29.00815],[96.27941,28.99467],[96.26769,28.97915],[96.22017,28.92977],[96.21138,28.92799],[96.20512,28.92276],[96.18191,28.91034],[96.16825,28.89872],[96.16087,28.89783],[96.15947,28.90721],[96.15543,28.91789],[96.1349,28.93523],[96.14044,28.94241],[96.14229,28.95667],[96.1718,28.96979],[96.17325,28.99171],[96.17147,28.99919],[96.14093,29.05828],[96.1288,29.07049],[96.12031,29.07442],[96.10206,29.07899],[96.12802,29.08629],[96.15606,29.09182],[96.17359,29.09922],[96.18235,29.1053],[96.19163,29.11591],[96.20074,29.13345],[96.21052,29.14809],[96.2325,29.15195],[96.24495,29.16576],[96.27408,29.16573],[96.31627,29.17064],[96.34201,29.17838],[96.35025,29.18448],[96.3653,29.22517],[96.37398,29.23436],[96.37912,29.24345],[96.38083,29.25461],[96.37908,29.26711],[96.36958,29.28734],[96.36382,29.29165],[96.3543,29.29205],[96.34652,29.28928],[96.34444,29.28125],[96.3405,29.27401],[96.30945,29.26434],[96.29529,29.25466],[96.28957,29.24463],[96.28236,29.24231],[96.26298,29.24169],[96.25414,29.23944],[96.24379,29.23939],[96.23548,29.24189],[96.22373,29.25122],[96.19178,29.29006],[96.18646,29.30246],[96.17992,29.30751],[96.17524,29.31678],[96.17449,29.32302],[96.17852,29.33719],[96.1765,29.34515],[96.16972,29.35594],[96.1535,29.37381]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"13","area_level":"State","area_name":"Nagaland","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[95.21117,26.93137],[95.20602,26.95112],[95.21019,26.95324],[95.20355,26.95706],[95.21184,26.96484],[95.20558,26.96957],[95.20337,26.97333],[95.20204,26.97668],[95.20677,26.97713],[95.20459,26.97921],[95.19726,26.98008],[95.19204,26.98453],[95.19313,26.99237],[95.19668,26.9939],[95.19696,27.00079],[95.19452,27.01027],[95.19252,27.03521],[95.15018,26.99924],[95.14476,26.99585],[95.1388,26.99485],[95.12421,26.98544],[95.11196,26.98066],[95.10792,26.97594],[95.10608,26.96549],[95.10181,26.96179],[95.08504,26.95164],[95.06786,26.9483],[95.04969,26.93876],[95.04408,26.93874],[95.03413,26.9356],[95.01676,26.92106],[95.00415,26.92089],[95.00025,26.91951],[94.99129,26.92081],[94.98998,26.91421],[94.98262,26.913],[94.9765,26.92128],[94.96718,26.92351],[94.96124,26.93712],[94.9575,26.93748],[94.9555,26.9401],[94.95324,26.93761],[94.94186,26.93531],[94.94026,26.93356],[94.93085,26.93256],[94.93085,26.9369],[94.92561,26.94079],[94.92349,26.94637],[94.91672,26.94125],[94.91437,26.93677],[94.90245,26.93467],[94.89782,26.93125],[94.89064,26.92954],[94.87359,26.91752],[94.86601,26.90873],[94.86523,26.90398],[94.85845,26.89221],[94.85784,26.88848],[94.85107,26.8811],[94.85012,26.87459],[94.8432,26.86851],[94.83647,26.86877],[94.83454,26.86035],[94.82866,26.85532],[94.8242,26.85424],[94.81749,26.84751],[94.82112,26.8417],[94.81945,26.83759],[94.81562,26.8373],[94.81317,26.83365],[94.81446,26.81954],[94.80646,26.81842],[94.80622,26.81513],[94.80379,26.81367],[94.79525,26.81442],[94.79578,26.81008],[94.80319,26.80617],[94.80272,26.80132],[94.79978,26.79978],[94.79117,26.79975],[94.78873,26.79556],[94.77566,26.78976],[94.77374,26.79061],[94.77022,26.78904],[94.7674,26.78534],[94.7668,26.77756],[94.76059,26.77541],[94.75833,26.76601],[94.75182,26.76619],[94.74835,26.7727],[94.74018,26.77598],[94.74068,26.77184],[94.73689,26.76372],[94.70717,26.74631],[94.69235,26.73193],[94.65302,26.71875],[94.64876,26.72042],[94.64164,26.72041],[94.63582,26.71709],[94.62427,26.71529],[94.6203,26.71212],[94.61897,26.713],[94.62066,26.72313],[94.61582,26.72656],[94.60806,26.72883],[94.60964,26.73694],[94.60769,26.73721],[94.60608,26.73389],[94.59707,26.73455],[94.59355,26.73146],[94.59562,26.72629],[94.59215,26.72488],[94.59292,26.72325],[94.59109,26.7206],[94.59416,26.71908],[94.60153,26.71911],[94.60241,26.71653],[94.60109,26.71455],[94.60334,26.71235],[94.60228,26.71162],[94.5973,26.71679],[94.59337,26.71497],[94.59252,26.70496],[94.59444,26.70226],[94.59153,26.70016],[94.59388,26.6972],[94.58246,26.69739],[94.57732,26.70066],[94.57209,26.69457],[94.56788,26.69292],[94.5664,26.69007],[94.56747,26.68748],[94.57157,26.68664],[94.56649,26.68356],[94.55939,26.68643],[94.56243,26.69553],[94.56098,26.70056],[94.56235,26.70507],[94.55503,26.70507],[94.5503,26.70172],[94.54791,26.70632],[94.54519,26.70523],[94.53926,26.70618],[94.5336,26.70131],[94.52654,26.69895],[94.52421,26.69576],[94.5207,26.69921],[94.52081,26.69416],[94.5177,26.68732],[94.51758,26.68193],[94.51329,26.68009],[94.51038,26.68477],[94.50825,26.6853],[94.50905,26.68023],[94.50514,26.67865],[94.50147,26.67229],[94.49267,26.66589],[94.48506,26.66785],[94.46028,26.66163],[94.45845,26.65354],[94.4541,26.65391],[94.45315,26.65255],[94.45908,26.64461],[94.4598,26.63685],[94.46549,26.63306],[94.45793,26.6336],[94.4536,26.63194],[94.45515,26.63547],[94.45273,26.63407],[94.45128,26.63629],[94.4356,26.62204],[94.42574,26.61715],[94.40292,26.61057],[94.40556,26.60563],[94.40507,26.60389],[94.40259,26.60313],[94.40188,26.59356],[94.40767,26.59163],[94.40749,26.5879],[94.40938,26.5877],[94.40959,26.58483],[94.4122,26.58297],[94.41163,26.57943],[94.41338,26.57719],[94.40993,26.57652],[94.41125,26.57215],[94.40585,26.56788],[94.40621,26.56271],[94.40411,26.56143],[94.40657,26.56186],[94.40734,26.56033],[94.40342,26.55827],[94.40648,26.55575],[94.402,26.55467],[94.40498,26.5542],[94.40627,26.54919],[94.40123,26.54828],[94.4062,26.54584],[94.40616,26.54403],[94.40308,26.54525],[94.40111,26.54289],[94.3966,26.54271],[94.40272,26.54135],[94.40265,26.53947],[94.3999,26.5403],[94.39777,26.53862],[94.40088,26.53415],[94.39819,26.53525],[94.39525,26.53361],[94.39759,26.52988],[94.39577,26.52733],[94.39326,26.52738],[94.39142,26.53035],[94.39,26.52691],[94.38544,26.53053],[94.3852,26.52578],[94.38095,26.5258],[94.3782,26.52117],[94.37614,26.52178],[94.37565,26.51818],[94.37336,26.51711],[94.37608,26.51567],[94.37626,26.51382],[94.37508,26.51282],[94.3731,26.51494],[94.3713,26.51443],[94.37468,26.50845],[94.37217,26.50604],[94.36932,26.50466],[94.36843,26.50596],[94.36563,26.50354],[94.36271,26.50566],[94.35748,26.50518],[94.35421,26.50306],[94.34779,26.50446],[94.34763,26.5032],[94.35064,26.50242],[94.35296,26.49928],[94.34957,26.49626],[94.34947,26.49377],[94.34665,26.49207],[94.35011,26.49243],[94.35285,26.49006],[94.34927,26.4911],[94.34686,26.486],[94.34469,26.48875],[94.34386,26.48471],[94.34081,26.48554],[94.33944,26.4805],[94.33631,26.48205],[94.33394,26.47933],[94.332,26.48058],[94.33041,26.4795],[94.32552,26.48195],[94.32647,26.47544],[94.3216,26.47566],[94.31956,26.47421],[94.32257,26.47244],[94.32128,26.47102],[94.32385,26.46551],[94.31844,26.46528],[94.31662,26.45832],[94.30798,26.46253],[94.30671,26.46079],[94.30578,26.46323],[94.30351,26.46416],[94.29992,26.46365],[94.29928,26.46682],[94.29343,26.4711],[94.29324,26.47429],[94.29157,26.47522],[94.2923,26.47757],[94.28975,26.47971],[94.29006,26.48877],[94.28323,26.50497],[94.28338,26.51075],[94.28582,26.51234],[94.28656,26.51522],[94.28176,26.5245],[94.28291,26.5294],[94.28096,26.53506],[94.28194,26.54059],[94.28614,26.54251],[94.28127,26.54865],[94.28479,26.56107],[94.27151,26.55155],[94.27064,26.54928],[94.25634,26.54122],[94.25332,26.53279],[94.24782,26.52821],[94.24872,26.52497],[94.23662,26.50614],[94.22127,26.49813],[94.20751,26.48647],[94.20249,26.47278],[94.20266,26.46906],[94.19405,26.46124],[94.18523,26.45843],[94.17613,26.43642],[94.17173,26.42978],[94.17572,26.42443],[94.17191,26.41584],[94.17401,26.40951],[94.17319,26.40328],[94.17758,26.38201],[94.17223,26.37365],[94.17411,26.37072],[94.17113,26.36275],[94.16016,26.35429],[94.16203,26.34716],[94.16706,26.34799],[94.16871,26.35093],[94.17261,26.35059],[94.17759,26.34642],[94.17456,26.34046],[94.17164,26.33796],[94.16718,26.33932],[94.16287,26.33551],[94.14758,26.33346],[94.14506,26.33059],[94.14101,26.33137],[94.14099,26.33531],[94.13873,26.33628],[94.12838,26.33036],[94.12492,26.33081],[94.11975,26.3288],[94.11593,26.32969],[94.11498,26.32395],[94.12168,26.31776],[94.11206,26.31799],[94.10968,26.31992],[94.10505,26.31995],[94.10251,26.31523],[94.09971,26.3139],[94.10078,26.30863],[94.09778,26.30196],[94.08427,26.28897],[94.0841,26.28334],[94.07473,26.2836],[94.07224,26.27611],[94.07471,26.27304],[94.07462,26.26438],[94.07092,26.26232],[94.06786,26.25697],[94.05608,26.25501],[94.04769,26.24936],[94.0424,26.2345],[94.03646,26.22605],[94.03203,26.19754],[94.02179,26.19381],[94.01536,26.18402],[94.00781,26.1825],[94.00108,26.17227],[94.00261,26.17087],[94.00137,26.16578],[94.00366,26.16011],[94.0011,26.1552],[93.99658,26.15347],[93.99452,26.14831],[93.99591,26.14642],[94.00083,26.14698],[94.0036,26.14423],[94.00217,26.13443],[93.99831,26.13124],[93.99086,26.13364],[93.98724,26.13108],[93.98887,26.1282],[93.99782,26.12877],[93.99349,26.12394],[93.99387,26.11866],[93.98676,26.1139],[93.98874,26.11082],[93.99577,26.1122],[93.99793,26.10956],[93.98948,26.09753],[93.98865,26.08634],[93.98274,26.08336],[93.98153,26.08124],[93.98739,26.06679],[93.97076,26.04642],[93.97039,26.04035],[93.96247,26.03654],[93.9627,26.02576],[93.96054,26.01536],[93.953,26.00297],[93.95915,25.99433],[93.95415,25.96926],[93.96871,25.95726],[93.96996,25.93678],[93.97799,25.92807],[93.9787,25.91673],[93.97121,25.91276],[93.9667,25.90589],[93.96107,25.90123],[93.95977,25.90211],[93.95166,25.89857],[93.94501,25.89764],[93.94432,25.89552],[93.93797,25.89631],[93.93542,25.89445],[93.93398,25.88525],[93.916,25.8837],[93.91088,25.87945],[93.91157,25.87652],[93.90751,25.87252],[93.90195,25.87085],[93.89604,25.85786],[93.88997,25.85864],[93.88654,25.84832],[93.8818,25.84335],[93.87611,25.84248],[93.86918,25.85093],[93.85857,25.85369],[93.85226,25.85823],[93.8397,25.85661],[93.83048,25.84925],[93.82972,25.84651],[93.82526,25.8444],[93.82115,25.83874],[93.81639,25.82261],[93.8063,25.81689],[93.80384,25.81142],[93.79547,25.80893],[93.79005,25.81123],[93.78751,25.81576],[93.78709,25.82216],[93.78424,25.82617],[93.78479,25.82903],[93.78033,25.83543],[93.78145,25.8395],[93.78036,25.84086],[93.77816,25.84012],[93.77782,25.84241],[93.78111,25.84459],[93.77754,25.84981],[93.78113,25.85401],[93.77853,25.85687],[93.78141,25.85649],[93.78443,25.85842],[93.78497,25.86426],[93.78984,25.86781],[93.78895,25.87011],[93.78517,25.87005],[93.78735,25.87688],[93.78476,25.87995],[93.78416,25.88434],[93.7892,25.88967],[93.79203,25.88914],[93.79205,25.89134],[93.79537,25.89238],[93.79352,25.89556],[93.79401,25.89952],[93.79568,25.90024],[93.79567,25.90651],[93.79201,25.9066],[93.79426,25.90756],[93.7943,25.91266],[93.79216,25.91291],[93.79186,25.91556],[93.78872,25.91689],[93.79052,25.92006],[93.78915,25.92226],[93.79099,25.92623],[93.78901,25.92806],[93.78998,25.92975],[93.78735,25.93013],[93.7879,25.93146],[93.78647,25.9321],[93.78989,25.93392],[93.78674,25.93821],[93.78726,25.94389],[93.78463,25.94387],[93.78734,25.94658],[93.78589,25.94967],[93.78327,25.95041],[93.78032,25.95648],[93.7769,25.95812],[93.77861,25.9603],[93.77509,25.96139],[93.77446,25.96553],[93.77715,25.96644],[93.77719,25.96824],[93.77358,25.97048],[93.77142,25.96799],[93.76545,25.96975],[93.76458,25.96853],[93.76814,25.96742],[93.77003,25.96126],[93.76952,25.95875],[93.76355,25.95937],[93.76823,25.95359],[93.76796,25.95101],[93.76419,25.95085],[93.76421,25.95444],[93.76181,25.95114],[93.75865,25.95262],[93.75846,25.94551],[93.75293,25.94667],[93.75246,25.94212],[93.75038,25.94087],[93.74714,25.94318],[93.74512,25.94234],[93.7462,25.9387],[93.75202,25.93596],[93.75131,25.93281],[93.74764,25.93492],[93.73953,25.93179],[93.73953,25.92982],[93.73655,25.92767],[93.73864,25.92532],[93.73703,25.92515],[93.73615,25.92276],[93.73397,25.92389],[93.72821,25.92058],[93.71869,25.91985],[93.71362,25.91681],[93.70663,25.91883],[93.70545,25.91492],[93.70088,25.91066],[93.69398,25.91172],[93.68476,25.9037],[93.68153,25.90439],[93.70208,25.85154],[93.71432,25.84451],[93.71183,25.84414],[93.70781,25.84781],[93.70088,25.84327],[93.69965,25.84551],[93.70113,25.84957],[93.69923,25.84657],[93.69469,25.84799],[93.69143,25.84385],[93.6883,25.84595],[93.68565,25.84367],[93.69022,25.84069],[93.68056,25.83835],[93.67945,25.83503],[93.68068,25.83343],[93.67863,25.82841],[93.67262,25.82764],[93.67116,25.82405],[93.66764,25.82596],[93.66829,25.82183],[93.66496,25.82318],[93.66054,25.82161],[93.65481,25.82364],[93.6516,25.81986],[93.64614,25.82238],[93.64651,25.81973],[93.64431,25.8187],[93.64347,25.81577],[93.63816,25.81563],[93.6386,25.80979],[93.6331,25.81138],[93.63495,25.80927],[93.6317,25.80664],[93.63289,25.80276],[93.62951,25.80156],[93.6247,25.80256],[93.62776,25.79888],[93.62669,25.79715],[93.6234,25.7973],[93.62675,25.78961],[93.6232,25.78733],[93.62252,25.78497],[93.6185,25.7837],[93.6201,25.78023],[93.61742,25.77599],[93.61272,25.77656],[93.61029,25.77375],[93.60504,25.7749],[93.60265,25.76508],[93.60056,25.76516],[93.59851,25.7688],[93.59167,25.76253],[93.58951,25.76606],[93.58592,25.76615],[93.58234,25.76055],[93.58548,25.75797],[93.57775,25.75449],[93.57683,25.75687],[93.56794,25.75843],[93.56827,25.75681],[93.57243,25.75644],[93.57322,25.75412],[93.57029,25.75276],[93.56833,25.75499],[93.56633,25.75475],[93.56697,25.74725],[93.56351,25.74472],[93.56151,25.73777],[93.5543,25.73783],[93.55526,25.73363],[93.54958,25.73274],[93.54943,25.72932],[93.54588,25.73147],[93.54245,25.73094],[93.54306,25.72585],[93.53955,25.72256],[93.54305,25.72096],[93.54319,25.71464],[93.54802,25.71172],[93.54192,25.70459],[93.54117,25.69884],[93.53629,25.7018],[93.53207,25.69698],[93.53123,25.69257],[93.52747,25.69119],[93.5236,25.6926],[93.52396,25.69592],[93.52249,25.69757],[93.52048,25.69161],[93.51265,25.68459],[93.51372,25.68282],[93.51754,25.68229],[93.51835,25.67943],[93.51409,25.67707],[93.51114,25.67209],[93.50744,25.67251],[93.5098,25.66847],[93.5066,25.66788],[93.50551,25.66642],[93.50646,25.66415],[93.49998,25.66072],[93.49655,25.65453],[93.49122,25.6532],[93.48802,25.65431],[93.4868,25.65312],[93.48777,25.65139],[93.48521,25.64833],[93.48144,25.65123],[93.48294,25.64546],[93.48174,25.6445],[93.47675,25.64777],[93.47383,25.64401],[93.47149,25.6454],[93.4688,25.64433],[93.47204,25.64239],[93.46417,25.64462],[93.46046,25.64062],[93.45731,25.64114],[93.45573,25.63869],[93.4606,25.63678],[93.4609,25.63231],[93.45509,25.63385],[93.44959,25.63953],[93.44948,25.63561],[93.44666,25.6346],[93.44437,25.63961],[93.44216,25.63817],[93.44162,25.63468],[93.43736,25.63481],[93.43726,25.63166],[93.43457,25.63119],[93.43366,25.62943],[93.43043,25.62947],[93.42738,25.63253],[93.42491,25.6303],[93.42455,25.62547],[93.41997,25.6247],[93.42226,25.62043],[93.42161,25.61824],[93.41835,25.61764],[93.41373,25.62099],[93.41436,25.61805],[93.41048,25.61654],[93.41101,25.61359],[93.40783,25.61441],[93.40626,25.6114],[93.40152,25.61109],[93.40127,25.60577],[93.40287,25.60216],[93.39947,25.59907],[93.39878,25.59603],[93.39695,25.59703],[93.3947,25.59445],[93.39403,25.59607],[93.39243,25.5959],[93.38929,25.5911],[93.3856,25.59277],[93.38695,25.58997],[93.38575,25.58705],[93.38341,25.58792],[93.38206,25.58396],[93.37835,25.5826],[93.38159,25.58197],[93.37983,25.57658],[93.3743,25.57709],[93.37539,25.57308],[93.36951,25.57042],[93.36554,25.56518],[93.36245,25.566],[93.36159,25.56387],[93.36406,25.5612],[93.35847,25.55726],[93.35872,25.55463],[93.35644,25.55619],[93.35461,25.55552],[93.35216,25.55999],[93.34328,25.56004],[93.33798,25.55687],[93.33575,25.55398],[93.33708,25.55283],[93.33261,25.54838],[93.32924,25.54879],[93.32669,25.54592],[93.33639,25.53873],[93.33531,25.53422],[93.34036,25.53284],[93.34057,25.53495],[93.34508,25.53419],[93.34833,25.52994],[93.35012,25.53225],[93.34997,25.52868],[93.35266,25.5283],[93.35509,25.52478],[93.35769,25.51527],[93.35686,25.5137],[93.36158,25.51234],[93.36213,25.50671],[93.364,25.50653],[93.36433,25.50376],[93.3692,25.50353],[93.36734,25.49946],[93.37667,25.49753],[93.37738,25.49298],[93.38551,25.49039],[93.38386,25.48794],[93.38655,25.48726],[93.38463,25.4851],[93.38672,25.48296],[93.39142,25.48216],[93.3891,25.47843],[93.38661,25.47778],[93.3892,25.47638],[93.38898,25.47254],[93.38446,25.46916],[93.38682,25.46883],[93.38691,25.46611],[93.39041,25.46444],[93.38834,25.46349],[93.39034,25.46038],[93.39166,25.46178],[93.394,25.45844],[93.3973,25.46026],[93.40064,25.45636],[93.40247,25.45078],[93.40872,25.44829],[93.41041,25.44987],[93.41555,25.44498],[93.41995,25.44496],[93.42561,25.44832],[93.43639,25.44818],[93.43855,25.44551],[93.43753,25.44304],[93.43952,25.44101],[93.44333,25.4411],[93.45029,25.43565],[93.45543,25.4344],[93.45819,25.43098],[93.45833,25.42592],[93.46232,25.41785],[93.45933,25.40837],[93.45966,25.40323],[93.4632,25.39559],[93.47299,25.38599],[93.47361,25.37928],[93.47177,25.37589],[93.47253,25.37428],[93.46501,25.36067],[93.4638,25.35964],[93.45875,25.36068],[93.45158,25.35395],[93.45196,25.34703],[93.44998,25.34537],[93.44851,25.34025],[93.45205,25.33596],[93.45651,25.33538],[93.45542,25.33214],[93.45667,25.32986],[93.45343,25.32146],[93.46663,25.31182],[93.47056,25.30505],[93.47156,25.29629],[93.46899,25.28204],[93.47314,25.27563],[93.48393,25.2725],[93.49127,25.27528],[93.50073,25.27231],[93.50714,25.27213],[93.5005,25.24992],[93.50147,25.24065],[93.51272,25.24127],[93.5169,25.24528],[93.52564,25.24484],[93.5375,25.24183],[93.55098,25.24696],[93.55937,25.243],[93.57105,25.22393],[93.57441,25.22206],[93.57786,25.22237],[93.58647,25.21629],[93.58815,25.21025],[93.59101,25.20746],[93.58918,25.20025],[93.59327,25.20062],[93.59717,25.1987],[93.60043,25.20063],[93.60415,25.19836],[93.60872,25.20249],[93.6173,25.2212],[93.63927,25.25626],[93.63973,25.26213],[93.64606,25.26535],[93.6478,25.27526],[93.66179,25.29465],[93.66093,25.30046],[93.66229,25.3045],[93.66912,25.30772],[93.67015,25.31348],[93.66829,25.32492],[93.68012,25.32582],[93.68331,25.3274],[93.68766,25.34361],[93.68899,25.35778],[93.70779,25.35424],[93.71424,25.35774],[93.71519,25.3665],[93.7193,25.37171],[93.73598,25.38052],[93.73752,25.38554],[93.73628,25.39129],[93.74288,25.40181],[93.76062,25.4142],[93.77726,25.42076],[93.77672,25.42553],[93.7843,25.43191],[93.7864,25.43941],[93.78994,25.44468],[93.79863,25.45642],[93.80521,25.46159],[93.81011,25.48073],[93.80031,25.49505],[93.79353,25.50042],[93.78475,25.50255],[93.76969,25.49392],[93.76566,25.49286],[93.7621,25.496],[93.76061,25.5116],[93.76564,25.51382],[93.76451,25.5214],[93.76733,25.53213],[93.76699,25.53639],[93.77583,25.53414],[93.80416,25.54056],[93.81223,25.54148],[93.81602,25.5404],[93.81965,25.54417],[93.82136,25.55201],[93.82956,25.55241],[93.82978,25.55736],[93.8328,25.55905],[93.8585,25.55346],[93.87461,25.55788],[93.88819,25.5643],[93.89645,25.56458],[93.91331,25.56254],[93.91553,25.55985],[93.92631,25.56119],[93.93968,25.5592],[93.95353,25.55248],[93.96135,25.55229],[93.97398,25.56186],[93.9766,25.56694],[93.99671,25.56953],[94.00353,25.56548],[94.0065,25.56693],[94.00838,25.57093],[94.00786,25.57472],[94.00378,25.58658],[94.00651,25.59105],[94.01086,25.59177],[94.02162,25.589],[94.02336,25.58359],[94.02949,25.58029],[94.03096,25.57707],[94.03524,25.5786],[94.03507,25.57543],[94.03969,25.57304],[94.04206,25.57651],[94.05017,25.5723],[94.06071,25.56187],[94.06541,25.55448],[94.07603,25.55706],[94.08192,25.55519],[94.09091,25.54187],[94.09213,25.53715],[94.08847,25.5334],[94.08805,25.52815],[94.10199,25.52429],[94.1346,25.51902],[94.1411,25.52295],[94.14406,25.52699],[94.14876,25.54314],[94.15601,25.55054],[94.15939,25.5452],[94.16377,25.54228],[94.17541,25.54543],[94.17862,25.54849],[94.18769,25.54616],[94.19071,25.54763],[94.18973,25.5374],[94.18595,25.52984],[94.18653,25.52598],[94.20265,25.50911],[94.20266,25.5068],[94.20868,25.50331],[94.20857,25.49795],[94.21059,25.49536],[94.2156,25.49475],[94.2187,25.49188],[94.22485,25.4911],[94.22744,25.4934],[94.24775,25.49411],[94.25293,25.49845],[94.26983,25.49799],[94.27552,25.50043],[94.28241,25.50667],[94.28641,25.50449],[94.29464,25.49565],[94.29826,25.48955],[94.30914,25.48935],[94.31629,25.49416],[94.32463,25.50322],[94.36025,25.51629],[94.3841,25.53132],[94.40644,25.53823],[94.41234,25.53663],[94.41582,25.53733],[94.42113,25.54759],[94.42194,25.55612],[94.42068,25.5677],[94.41796,25.57069],[94.4256,25.58741],[94.4434,25.59269],[94.44485,25.59574],[94.46962,25.61625],[94.48673,25.61437],[94.48897,25.60889],[94.49483,25.61105],[94.49737,25.61457],[94.50091,25.61152],[94.50332,25.61348],[94.50421,25.62144],[94.50643,25.62443],[94.51004,25.62501],[94.51974,25.63793],[94.52373,25.6388],[94.5262,25.63708],[94.52709,25.64463],[94.53507,25.64556],[94.54028,25.65202],[94.54731,25.65692],[94.54776,25.66187],[94.56063,25.67526],[94.56355,25.68667],[94.56857,25.69209],[94.58257,25.68629],[94.59113,25.68566],[94.59245,25.68128],[94.58548,25.67563],[94.58084,25.66924],[94.58288,25.66618],[94.57893,25.65961],[94.58071,25.65616],[94.57754,25.655],[94.57685,25.65178],[94.57228,25.64722],[94.57157,25.63909],[94.58241,25.64095],[94.59064,25.63819],[94.57923,25.62885],[94.57396,25.62061],[94.56825,25.60568],[94.56059,25.59698],[94.55114,25.5802],[94.55695,25.57271],[94.55581,25.56235],[94.56005,25.56229],[94.55676,25.55486],[94.55826,25.54385],[94.55523,25.54005],[94.55883,25.53401],[94.55364,25.52922],[94.55661,25.52502],[94.55274,25.50709],[94.56349,25.50088],[94.56989,25.49951],[94.58026,25.49111],[94.58247,25.48668],[94.58607,25.48398],[94.60271,25.47662],[94.62053,25.46321],[94.62813,25.45976],[94.64337,25.45568],[94.65386,25.45108],[94.66487,25.44936],[94.68028,25.45401],[94.68128,25.45581],[94.6799,25.4585],[94.68195,25.45939],[94.68362,25.46643],[94.69286,25.46556],[94.70299,25.46793],[94.70998,25.4718],[94.71808,25.46949],[94.71965,25.47224],[94.72511,25.47357],[94.7283,25.47656],[94.74395,25.48112],[94.74692,25.48543],[94.7473,25.48909],[94.75142,25.49389],[94.75769,25.49136],[94.76196,25.48195],[94.78345,25.4804],[94.78869,25.48955],[94.79638,25.49176],[94.80603,25.49182],[94.80799,25.49329],[94.80821,25.49892],[94.8124,25.51125],[94.81587,25.51647],[94.81934,25.51749],[94.82543,25.52376],[94.82347,25.53344],[94.82578,25.54255],[94.82967,25.54371],[94.83426,25.55258],[94.83783,25.55305],[94.84095,25.55689],[94.84333,25.55724],[94.84592,25.56194],[94.85342,25.56432],[94.87968,25.56238],[94.88502,25.56352],[94.88969,25.56664],[94.8985,25.56533],[94.89747,25.57055],[94.89138,25.57822],[94.88163,25.58508],[94.88171,25.59105],[94.89247,25.59738],[94.89812,25.59634],[94.90077,25.59738],[94.90193,25.59945],[94.90958,25.60265],[94.91509,25.60768],[94.91632,25.62141],[94.9219,25.63495],[94.9212,25.63987],[94.92284,25.64542],[94.92533,25.65012],[94.93238,25.65714],[94.93598,25.66761],[94.95005,25.67361],[94.95213,25.67838],[94.96135,25.68506],[94.97064,25.68913],[94.97304,25.69408],[94.98868,25.70655],[94.99192,25.71952],[94.99723,25.72498],[95.00806,25.73091],[95.01518,25.73241],[95.0231,25.73174],[95.02809,25.7378],[95.03987,25.74117],[95.04513,25.75523],[95.04897,25.75935],[95.04403,25.77374],[95.04663,25.77894],[95.04612,25.78451],[95.05001,25.79291],[95.04997,25.79999],[95.03331,25.81424],[95.03323,25.82363],[95.02946,25.83308],[95.03039,25.83837],[95.02306,25.84478],[95.01786,25.86067],[95.00919,25.86661],[95.01028,25.8745],[95.01941,25.88139],[95.01887,25.88547],[95.01177,25.89778],[95.02655,25.9134],[95.02871,25.91368],[95.02823,25.91535],[95.03048,25.91777],[95.03269,25.92492],[95.03135,25.93115],[95.03598,25.92675],[95.04394,25.92686],[95.04674,25.92846],[95.04774,25.93439],[95.05405,25.9381],[95.05883,25.94035],[95.06238,25.94011],[95.06436,25.94265],[95.07308,25.94178],[95.08366,25.94991],[95.0895,25.95049],[95.09561,25.95524],[95.10382,25.96867],[95.10633,25.97108],[95.11016,25.97051],[95.11429,25.97478],[95.11698,25.98496],[95.12611,25.98575],[95.1274,25.99055],[95.13331,25.99591],[95.13489,26.00086],[95.14117,26.00898],[95.14524,26.01103],[95.14507,26.01403],[95.14935,26.0162],[95.15251,26.02123],[95.15906,26.02493],[95.16429,26.04919],[95.17657,26.06413],[95.18345,26.06813],[95.18589,26.0731],[95.18301,26.07505],[95.18195,26.07838],[95.17683,26.08127],[95.17602,26.08406],[95.17012,26.08582],[95.17099,26.08834],[95.16751,26.08933],[95.16533,26.09211],[95.15501,26.08945],[95.15031,26.08645],[95.14735,26.08777],[95.14201,26.09444],[95.13033,26.0945],[95.12267,26.09724],[95.11787,26.10108],[95.11555,26.11285],[95.11977,26.11618],[95.12153,26.1232],[95.12628,26.12852],[95.12592,26.13126],[95.12266,26.13357],[95.12146,26.13869],[95.11901,26.14065],[95.12344,26.14502],[95.11907,26.14845],[95.11963,26.15352],[95.11721,26.15862],[95.11762,26.16392],[95.12665,26.17784],[95.12315,26.18042],[95.12196,26.18523],[95.13174,26.20047],[95.14268,26.21163],[95.13304,26.21535],[95.12779,26.22138],[95.1199,26.22551],[95.1146,26.23289],[95.12004,26.24193],[95.12548,26.24657],[95.12459,26.25017],[95.1273,26.25398],[95.12351,26.25588],[95.11987,26.26369],[95.12076,26.27156],[95.12483,26.27655],[95.12438,26.28628],[95.12806,26.29228],[95.12862,26.29703],[95.12812,26.30224],[95.12249,26.30744],[95.12476,26.31244],[95.12406,26.31516],[95.12607,26.32354],[95.12265,26.32522],[95.1229,26.33052],[95.12692,26.33407],[95.12835,26.33965],[95.12118,26.34962],[95.12318,26.35192],[95.12265,26.35809],[95.12826,26.36514],[95.13214,26.37784],[95.12948,26.38454],[95.12563,26.38778],[95.12078,26.38643],[95.11701,26.39082],[95.10789,26.3954],[95.09977,26.39373],[95.09645,26.40105],[95.1031,26.41244],[95.10386,26.42066],[95.0949,26.43108],[95.09408,26.43542],[95.08429,26.44456],[95.08445,26.44705],[95.07668,26.44586],[95.0729,26.44792],[95.06614,26.44177],[95.06362,26.444],[95.06198,26.45018],[95.06805,26.46229],[95.07161,26.46402],[95.07276,26.47238],[95.07673,26.47645],[95.08298,26.47962],[95.08246,26.48261],[95.0846,26.48332],[95.0841,26.48524],[95.08628,26.48774],[95.09648,26.49277],[95.09934,26.49785],[95.10025,26.50579],[95.1057,26.50822],[95.11454,26.51851],[95.11617,26.524],[95.11364,26.52919],[95.11332,26.53584],[95.10774,26.53959],[95.10755,26.54154],[95.11353,26.54753],[95.12243,26.5515],[95.12296,26.55552],[95.1256,26.55809],[95.13892,26.55656],[95.13851,26.56052],[95.14138,26.56507],[95.14096,26.56741],[95.14727,26.57478],[95.14643,26.57621],[95.14786,26.57914],[95.15419,26.58314],[95.14656,26.59305],[95.1479,26.59711],[95.14661,26.601],[95.1482,26.60646],[95.14728,26.61033],[95.14893,26.61587],[95.16322,26.62166],[95.1675,26.62751],[95.16686,26.63444],[95.17126,26.63574],[95.18068,26.64276],[95.18358,26.64141],[95.18762,26.6428],[95.19178,26.64149],[95.19912,26.64246],[95.20049,26.64545],[95.2096,26.64885],[95.21405,26.65421],[95.21403,26.65705],[95.21964,26.66084],[95.22188,26.66618],[95.22924,26.67366],[95.23321,26.68109],[95.22998,26.69112],[95.23241,26.70624],[95.22598,26.71093],[95.22454,26.71792],[95.21252,26.72943],[95.21324,26.73543],[95.21736,26.74155],[95.21776,26.74564],[95.21566,26.74969],[95.21651,26.75396],[95.22048,26.75586],[95.2296,26.76606],[95.22809,26.77184],[95.24135,26.78145],[95.23816,26.78106],[95.2367,26.78331],[95.23146,26.78344],[95.21805,26.78772],[95.21162,26.79259],[95.20337,26.80594],[95.19562,26.83424],[95.1971,26.83719],[95.20299,26.84058],[95.20519,26.84502],[95.20083,26.84325],[95.19432,26.84585],[95.19392,26.84371],[95.19221,26.84394],[95.1824,26.854],[95.18114,26.8592],[95.20307,26.87222],[95.208,26.87607],[95.20949,26.87995],[95.21448,26.8812],[95.22656,26.87997],[95.23048,26.88515],[95.22797,26.89267],[95.23076,26.90398],[95.22863,26.91224],[95.23063,26.9131],[95.23064,26.91495],[95.22855,26.9205],[95.22228,26.92882],[95.21378,26.9286],[95.21117,26.93137]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"14","area_level":"State","area_name":"Manipur","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[93.24961,24.97312],[93.25716,24.97362],[93.26092,24.97146],[93.26301,24.96134],[93.26087,24.95855],[93.25,24.95514],[93.24536,24.95081],[93.24913,24.94817],[93.24732,24.94512],[93.25097,24.94341],[93.25127,24.94064],[93.24762,24.9398],[93.24492,24.94119],[93.23681,24.93716],[93.23713,24.93253],[93.24264,24.93611],[93.2451,24.93539],[93.24471,24.9325],[93.23849,24.92568],[93.23934,24.92437],[93.24597,24.92525],[93.24884,24.91485],[93.24406,24.91055],[93.2352,24.91141],[93.23778,24.90582],[93.24032,24.90513],[93.2408,24.90336],[93.23849,24.8987],[93.22961,24.89782],[93.23212,24.89188],[93.22758,24.89293],[93.22602,24.89193],[93.22799,24.88834],[93.23155,24.88754],[93.23279,24.88466],[93.22774,24.88503],[93.22492,24.88018],[93.22151,24.88152],[93.22196,24.87766],[93.22644,24.87283],[93.22036,24.87352],[93.22145,24.86951],[93.2169,24.86535],[93.21471,24.86529],[93.21361,24.86063],[93.21003,24.85608],[93.20687,24.85576],[93.20407,24.85105],[93.19955,24.85515],[93.19483,24.85385],[93.19812,24.85301],[93.20126,24.84854],[93.20155,24.84206],[93.19997,24.84152],[93.19543,24.84433],[93.19231,24.84276],[93.19175,24.84002],[93.19611,24.83669],[93.19969,24.83948],[93.2006,24.83795],[93.19779,24.83416],[93.19327,24.83557],[93.19161,24.8344],[93.19165,24.83299],[93.19591,24.83091],[93.19006,24.81864],[93.19695,24.81136],[93.19112,24.80395],[93.17995,24.80307],[93.17935,24.79721],[93.17615,24.79385],[93.17359,24.796],[93.17357,24.80123],[93.17069,24.80185],[93.16109,24.79623],[93.15987,24.79338],[93.15424,24.78871],[93.14946,24.78737],[93.1485,24.78908],[93.15115,24.79228],[93.15117,24.79468],[93.14626,24.79744],[93.14175,24.79728],[93.1411,24.80126],[93.13471,24.80813],[93.13857,24.80999],[93.13483,24.81058],[93.13176,24.80521],[93.12703,24.80876],[93.11886,24.80766],[93.1179,24.80925],[93.12194,24.81662],[93.12137,24.81922],[93.11528,24.81428],[93.11028,24.81256],[93.10932,24.81069],[93.1114,24.80058],[93.10798,24.79487],[93.10839,24.79184],[93.10481,24.79128],[93.10611,24.78844],[93.1043,24.78631],[93.10522,24.78111],[93.10052,24.77942],[93.10028,24.7736],[93.10361,24.7672],[93.10238,24.75922],[93.09825,24.75437],[93.10112,24.74958],[93.09833,24.74675],[93.09988,24.74317],[93.1016,24.74277],[93.10272,24.74685],[93.10776,24.74144],[93.0971,24.73195],[93.09589,24.72421],[93.09065,24.72508],[93.09037,24.72139],[93.09325,24.71891],[93.09079,24.71818],[93.0901,24.71432],[93.08662,24.70953],[93.08247,24.70884],[93.0776,24.71298],[93.0737,24.70832],[93.07434,24.70646],[93.08241,24.70149],[93.09188,24.68685],[93.09011,24.67717],[93.10191,24.6807],[93.10426,24.67535],[93.09647,24.66426],[93.09537,24.65283],[93.08625,24.65273],[93.08319,24.64981],[93.08763,24.63699],[93.08728,24.62967],[93.08521,24.62817],[93.07872,24.62885],[93.07568,24.62454],[93.07714,24.62008],[93.08421,24.6136],[93.07394,24.60561],[93.07126,24.59963],[93.08027,24.59011],[93.08921,24.59238],[93.09359,24.5917],[93.10158,24.58759],[93.10436,24.58238],[93.10184,24.58079],[93.09321,24.5815],[93.08916,24.57337],[93.0844,24.57113],[93.07616,24.575],[93.06216,24.57624],[93.05851,24.57446],[93.05877,24.57188],[93.06917,24.56188],[93.07081,24.55805],[93.06462,24.54679],[93.0617,24.54731],[93.06052,24.55358],[93.05701,24.55441],[93.04999,24.54421],[93.04719,24.52857],[93.05055,24.5232],[93.05013,24.51943],[93.04131,24.51557],[93.03874,24.51287],[93.03721,24.50939],[93.04273,24.50635],[93.04277,24.50479],[93.03256,24.4953],[93.04024,24.48631],[93.04637,24.47357],[93.04556,24.46328],[93.04366,24.46177],[93.03811,24.46193],[93.03572,24.45976],[93.03642,24.44222],[93.03292,24.42875],[93.03728,24.42362],[93.04265,24.42055],[93.04256,24.41491],[93.04164,24.41301],[93.03521,24.40959],[93.02344,24.40675],[93.01617,24.40871],[93.01507,24.41553],[93.01195,24.41672],[93.00885,24.41168],[93.00598,24.41065],[93.00578,24.40931],[93.00747,24.40973],[93.00675,24.40775],[93.004,24.40706],[92.99831,24.39976],[93.02035,24.38785],[93.01309,24.37735],[93.01811,24.37161],[93.01531,24.35625],[93.01755,24.34422],[93.03932,24.34074],[93.03116,24.31577],[93.01415,24.29056],[93.00701,24.2855],[93.00415,24.27791],[93.00984,24.26909],[93.00266,24.26022],[93.00261,24.25139],[93.0139,24.23378],[93.02245,24.23002],[93.01528,24.22626],[93.01527,24.2225],[93.01954,24.21497],[93.01812,24.20746],[93.01385,24.20497],[93.01246,24.19745],[93.00822,24.19495],[92.99889,24.19497],[92.99894,24.19176],[93.00673,24.17965],[92.99915,24.1715],[93.00127,24.15806],[92.98892,24.15066],[92.98696,24.14781],[92.9887,24.13786],[92.98522,24.12927],[92.9819,24.12637],[92.96943,24.1214],[92.9722,24.11235],[92.9922,24.1142],[93.00544,24.10739],[93.00987,24.10197],[93.01724,24.09887],[93.02305,24.10105],[93.03044,24.09664],[93.03342,24.09257],[93.04939,24.08805],[93.06087,24.09161],[93.07516,24.10027],[93.08515,24.08133],[93.09795,24.07126],[93.09651,24.05365],[93.09936,24.04989],[93.09509,24.04611],[93.09651,24.04234],[93.10646,24.04739],[93.10788,24.05242],[93.11498,24.0537],[93.1164,24.05747],[93.12494,24.06128],[93.13064,24.0701],[93.13065,24.07639],[93.13777,24.08395],[93.14347,24.08524],[93.15401,24.08095],[93.15686,24.07468],[93.16539,24.07217],[93.16251,24.05834],[93.16534,24.05206],[93.17101,24.0508],[93.18947,24.05333],[93.19372,24.04956],[93.21217,24.04706],[93.2207,24.07095],[93.21787,24.07849],[93.21929,24.081],[93.22214,24.08351],[93.23207,24.081],[93.23776,24.08352],[93.24345,24.08227],[93.25911,24.06971],[93.25911,24.06469],[93.26199,24.05715],[93.2577,24.05463],[93.24775,24.03075],[93.25207,24.02574],[93.25064,24.02071],[93.26929,24.0308],[93.27212,24.03708],[93.28071,24.04338],[93.28353,24.0484],[93.29359,24.04841],[93.30785,24.05093],[93.3258,24.05035],[93.32796,24.05347],[93.33212,24.05313],[93.33842,24.06267],[93.33604,24.0634],[93.33716,24.06754],[93.33322,24.07013],[93.33445,24.07431],[93.3309,24.07299],[93.32848,24.07692],[93.32855,24.08115],[93.33068,24.08113],[93.33085,24.08536],[93.33606,24.09049],[93.34453,24.09174],[93.34675,24.09009],[93.34716,24.08757],[93.35115,24.09081],[93.35381,24.09053],[93.34966,24.09518],[93.3468,24.09445],[93.34523,24.09705],[93.34287,24.09723],[93.34194,24.10197],[93.34513,24.10369],[93.34703,24.10292],[93.34882,24.10474],[93.34997,24.10152],[93.34844,24.10124],[93.35078,24.10019],[93.34829,24.09889],[93.35449,24.09889],[93.35451,24.09604],[93.35939,24.09394],[93.35809,24.09104],[93.36456,24.09212],[93.3678,24.09006],[93.37293,24.09076],[93.3839,24.08522],[93.38482,24.08672],[93.39005,24.08265],[93.39484,24.08409],[93.39644,24.08284],[93.39899,24.08518],[93.40552,24.07936],[93.40722,24.0797],[93.40672,24.07635],[93.40958,24.07657],[93.41027,24.07309],[93.4141,24.07407],[93.41442,24.07234],[93.41695,24.07141],[93.41588,24.06923],[93.42167,24.06403],[93.42593,24.05071],[93.42501,24.04536],[93.428,24.04107],[93.4276,24.03721],[93.42992,24.03653],[93.42853,24.03566],[93.42898,24.03299],[93.43327,24.02712],[93.43307,24.02401],[93.44079,24.01472],[93.44321,24.01371],[93.45024,24.01529],[93.45309,24.01362],[93.45311,23.9995],[93.46114,23.99863],[93.46362,23.99406],[93.46265,23.98364],[93.46054,23.98071],[93.4635,23.97337],[93.46616,23.9734],[93.46631,23.97148],[93.47507,23.9615],[93.48146,23.95716],[93.48614,23.95722],[93.48641,23.95577],[93.49012,23.95439],[93.48967,23.95115],[93.49277,23.95057],[93.49494,23.95346],[93.49682,23.95184],[93.49538,23.94962],[93.49892,23.94554],[93.50257,23.94475],[93.50476,23.94219],[93.5148,23.94255],[93.52492,23.95636],[93.53001,23.95455],[93.53449,23.95928],[93.53923,23.96076],[93.54358,23.96086],[93.54547,23.95842],[93.55011,23.95916],[93.55008,23.96166],[93.55276,23.96184],[93.55123,23.9636],[93.55337,23.96428],[93.5536,23.96897],[93.5553,23.97003],[93.55407,23.97218],[93.55567,23.97437],[93.55481,23.97632],[93.5573,23.97822],[93.55745,23.98142],[93.55977,23.98207],[93.56276,23.97887],[93.5648,23.98025],[93.56979,23.97667],[93.57094,23.9775],[93.57044,23.97046],[93.5737,23.96893],[93.57355,23.96672],[93.57631,23.96679],[93.57979,23.96265],[93.58517,23.95995],[93.59166,23.96059],[93.59326,23.96265],[93.59252,23.9638],[93.59641,23.96554],[93.59744,23.9702],[93.5989,23.96938],[93.59896,23.97239],[93.60816,23.97162],[93.60897,23.97762],[93.60783,23.98063],[93.61379,23.99227],[93.61186,23.99732],[93.61724,24.00703],[93.62335,24.01092],[93.62657,24.01107],[93.629,24.00872],[93.6355,24.01061],[93.64245,24.00869],[93.65298,24.00902],[93.65432,24.0082],[93.65341,24.00624],[93.65465,24.00244],[93.66322,24.00149],[93.67164,24.00235],[93.67534,24.00566],[93.68206,24.00715],[93.68443,24.00606],[93.69091,24.00851],[93.70015,24.00418],[93.7174,24.00045],[93.72436,23.99717],[93.7277,23.99903],[93.7357,23.9994],[93.74038,24.00218],[93.7418,23.99682],[93.74409,23.99937],[93.74425,24.00275],[93.7542,24.00542],[93.75777,24.00304],[93.75939,24.00366],[93.75928,24.00151],[93.76137,24.00003],[93.76341,23.99466],[93.76217,23.99121],[93.76495,23.99006],[93.76476,23.98628],[93.76862,23.98236],[93.76788,23.98135],[93.77123,23.97628],[93.77052,23.97448],[93.77359,23.97108],[93.77174,23.96892],[93.78004,23.9645],[93.77947,23.96301],[93.78168,23.96131],[93.78518,23.9617],[93.79253,23.95123],[93.79763,23.94767],[93.79837,23.94179],[93.80084,23.93829],[93.79977,23.93264],[93.80738,23.92708],[93.81596,23.92633],[93.81966,23.92371],[93.82481,23.92653],[93.83327,23.92734],[93.83474,23.93018],[93.83999,23.93202],[93.85937,23.93197],[93.8698,23.93835],[93.87199,23.94126],[93.88288,23.94182],[93.89231,23.94981],[93.8937,23.95314],[93.90259,23.94995],[93.91949,23.95173],[93.93046,23.95025],[93.94423,23.94626],[93.94997,23.94179],[93.95514,23.9343],[93.95442,23.93246],[93.95833,23.92946],[93.96159,23.92792],[93.96194,23.92949],[93.96409,23.92964],[93.97573,23.92469],[93.9807,23.92875],[93.98511,23.92684],[93.9912,23.92756],[93.99131,23.92595],[93.9985,23.92002],[94.00526,23.91895],[94.01934,23.91198],[94.03315,23.89724],[94.04682,23.88818],[94.06217,23.88057],[94.0843,23.88143],[94.09535,23.87154],[94.10229,23.8561],[94.12067,23.83285],[94.12556,23.8333],[94.13314,23.84149],[94.13763,23.85242],[94.14081,23.85384],[94.15147,23.85247],[94.15503,23.85524],[94.15696,23.86352],[94.1622,23.91958],[94.16535,23.92964],[94.17603,23.93327],[94.18686,23.94128],[94.18734,23.9646],[94.19855,23.98791],[94.234,24.03929],[94.23447,24.04306],[94.22995,24.05547],[94.23068,24.05742],[94.23895,24.05778],[94.24273,24.06854],[94.25154,24.08191],[94.25412,24.09212],[94.25489,24.10656],[94.25356,24.12418],[94.25519,24.14064],[94.25987,24.16226],[94.26173,24.16711],[94.27938,24.17591],[94.28319,24.17935],[94.28291,24.20343],[94.2842,24.21236],[94.29271,24.23602],[94.30379,24.24017],[94.31084,24.24594],[94.31532,24.25268],[94.3239,24.27798],[94.32486,24.29096],[94.3236,24.31043],[94.32716,24.32766],[94.32854,24.32972],[94.33516,24.33235],[94.34364,24.33225],[94.354,24.33447],[94.35651,24.34516],[94.38011,24.37464],[94.38057,24.37821],[94.37405,24.38738],[94.36707,24.39298],[94.36713,24.39462],[94.37018,24.39752],[94.39763,24.40729],[94.40869,24.43715],[94.40216,24.44587],[94.40131,24.44948],[94.40308,24.47529],[94.4068,24.47877],[94.42074,24.48028],[94.4252,24.48612],[94.43867,24.51007],[94.45725,24.55241],[94.46154,24.55795],[94.46658,24.56153],[94.48635,24.57003],[94.49225,24.57463],[94.52921,24.61802],[94.54446,24.6449],[94.55007,24.65893],[94.5531,24.68276],[94.55272,24.68994],[94.54827,24.70638],[94.54966,24.71277],[94.55531,24.71483],[94.5679,24.71458],[94.57275,24.71293],[94.57943,24.72371],[94.5782,24.71172],[94.58512,24.70542],[94.59152,24.70951],[94.60163,24.70948],[94.60294,24.71215],[94.60512,24.71231],[94.60735,24.71805],[94.60621,24.72156],[94.60945,24.72483],[94.60906,24.72824],[94.61107,24.72882],[94.61064,24.73319],[94.61321,24.737],[94.61267,24.74018],[94.62936,24.75697],[94.62912,24.76128],[94.62696,24.76397],[94.62777,24.76513],[94.62447,24.76778],[94.62466,24.76986],[94.6225,24.77121],[94.62194,24.77538],[94.61861,24.7798],[94.61902,24.78463],[94.62213,24.78842],[94.62593,24.79954],[94.62966,24.80297],[94.6291,24.81691],[94.63264,24.8234],[94.63366,24.83553],[94.63186,24.83946],[94.64519,24.84922],[94.65045,24.85522],[94.64853,24.86062],[94.65295,24.86335],[94.6542,24.8677],[94.65729,24.8711],[94.65983,24.87233],[94.66297,24.87064],[94.66561,24.87407],[94.67399,24.87509],[94.67555,24.8802],[94.67951,24.88434],[94.68343,24.88726],[94.68795,24.88806],[94.68685,24.89153],[94.69077,24.89909],[94.69043,24.90317],[94.69323,24.90585],[94.6937,24.9121],[94.69658,24.91813],[94.70095,24.92274],[94.70193,24.92938],[94.71024,24.9289],[94.7134,24.93437],[94.70744,24.9422],[94.70603,24.94975],[94.70184,24.95277],[94.70164,24.95585],[94.69665,24.95955],[94.69659,24.96847],[94.70105,24.97449],[94.70265,24.98246],[94.7059,24.98635],[94.72663,24.99958],[94.72658,25.0024],[94.72911,25.00566],[94.72772,25.01017],[94.73858,25.02356],[94.73765,25.02765],[94.74416,25.03727],[94.74212,25.03884],[94.74255,25.045],[94.74423,25.04721],[94.74198,25.05215],[94.74469,25.06003],[94.74337,25.06268],[94.73786,25.06543],[94.74489,25.08064],[94.73966,25.09231],[94.74079,25.10383],[94.73619,25.11032],[94.74076,25.12075],[94.74034,25.12696],[94.73809,25.12837],[94.73661,25.13478],[94.72886,25.13448],[94.71894,25.13843],[94.71514,25.13808],[94.70777,25.14417],[94.70291,25.14542],[94.70063,25.151],[94.69691,25.15484],[94.6918,25.15594],[94.68986,25.15792],[94.68455,25.15143],[94.67995,25.1493],[94.67756,25.15135],[94.67734,25.15457],[94.66903,25.15759],[94.6646,25.16272],[94.6483,25.16828],[94.64014,25.16615],[94.63476,25.172],[94.62855,25.17569],[94.62004,25.18666],[94.61129,25.18201],[94.60583,25.18129],[94.60358,25.18642],[94.59194,25.19283],[94.58899,25.20294],[94.58175,25.21108],[94.57564,25.21412],[94.57853,25.21623],[94.58237,25.22287],[94.58265,25.22742],[94.58552,25.22948],[94.58513,25.23913],[94.58743,25.24554],[94.58575,25.24882],[94.58892,25.25305],[94.58945,25.25698],[94.58479,25.26654],[94.59194,25.27814],[94.59334,25.28587],[94.59856,25.29268],[94.60341,25.30551],[94.60602,25.30636],[94.60412,25.30945],[94.60622,25.31456],[94.61187,25.32119],[94.61208,25.32412],[94.61462,25.32486],[94.61827,25.33045],[94.62361,25.34358],[94.62244,25.34604],[94.62959,25.34934],[94.63125,25.35439],[94.63455,25.35792],[94.6324,25.36068],[94.63364,25.3723],[94.63195,25.38162],[94.63227,25.38902],[94.6346,25.39501],[94.64595,25.40262],[94.64897,25.40642],[94.65594,25.40467],[94.65957,25.40582],[94.66293,25.41006],[94.66274,25.41186],[94.6671,25.41464],[94.67004,25.41883],[94.66981,25.4215],[94.67304,25.42508],[94.67118,25.44286],[94.67524,25.44562],[94.68028,25.45401],[94.66108,25.44941],[94.62813,25.45976],[94.62053,25.46321],[94.60271,25.47662],[94.58607,25.48398],[94.58247,25.48668],[94.58026,25.49111],[94.56989,25.49951],[94.56349,25.50088],[94.55274,25.50709],[94.55661,25.52502],[94.55364,25.52922],[94.55883,25.53401],[94.55523,25.54005],[94.55826,25.54385],[94.55676,25.55486],[94.56005,25.56229],[94.55581,25.56235],[94.55695,25.57271],[94.55114,25.5802],[94.56059,25.59698],[94.56825,25.60568],[94.57396,25.62061],[94.57923,25.62885],[94.59064,25.63819],[94.58241,25.64095],[94.57157,25.63909],[94.57228,25.64722],[94.57685,25.65178],[94.57754,25.655],[94.58071,25.65616],[94.57893,25.65961],[94.58288,25.66618],[94.58084,25.66924],[94.58548,25.67563],[94.59245,25.68128],[94.59113,25.68566],[94.58257,25.68629],[94.56857,25.69209],[94.56355,25.68667],[94.56063,25.67526],[94.54776,25.66187],[94.54731,25.65692],[94.54028,25.65202],[94.53507,25.64556],[94.52709,25.64463],[94.5262,25.63708],[94.52373,25.6388],[94.51974,25.63793],[94.51004,25.62501],[94.50643,25.62443],[94.50421,25.62144],[94.50332,25.61348],[94.50091,25.61152],[94.49737,25.61457],[94.49483,25.61105],[94.48897,25.60889],[94.48673,25.61437],[94.46962,25.61625],[94.44485,25.59574],[94.4434,25.59269],[94.4256,25.58741],[94.41796,25.57069],[94.42068,25.5677],[94.42194,25.55612],[94.42113,25.54759],[94.41582,25.53733],[94.41234,25.53663],[94.40644,25.53823],[94.3841,25.53132],[94.36025,25.51629],[94.32463,25.50322],[94.31629,25.49416],[94.30914,25.48935],[94.29826,25.48955],[94.29464,25.49565],[94.28641,25.50449],[94.28241,25.50667],[94.27552,25.50043],[94.26983,25.49799],[94.25293,25.49845],[94.24775,25.49411],[94.22744,25.4934],[94.22485,25.4911],[94.2187,25.49188],[94.2156,25.49475],[94.21059,25.49536],[94.20857,25.49795],[94.20868,25.50331],[94.20266,25.5068],[94.20265,25.50911],[94.18653,25.52598],[94.18595,25.52984],[94.18973,25.5374],[94.19071,25.54763],[94.18769,25.54616],[94.17862,25.54849],[94.17541,25.54543],[94.16377,25.54228],[94.15939,25.5452],[94.15601,25.55054],[94.14876,25.54314],[94.14406,25.52699],[94.1411,25.52295],[94.1346,25.51902],[94.10199,25.52429],[94.08805,25.52815],[94.08847,25.5334],[94.09213,25.53715],[94.09091,25.54187],[94.08192,25.55519],[94.07603,25.55706],[94.06541,25.55448],[94.06071,25.56187],[94.05017,25.5723],[94.04206,25.57651],[94.03969,25.57304],[94.03507,25.57543],[94.03524,25.5786],[94.03096,25.57707],[94.02949,25.58029],[94.02336,25.58359],[94.02162,25.589],[94.01086,25.59177],[94.00651,25.59105],[94.00378,25.58658],[94.00786,25.57472],[94.00838,25.57093],[94.0065,25.56693],[94.00353,25.56548],[93.99671,25.56953],[93.9766,25.56694],[93.97398,25.56186],[93.96135,25.55229],[93.95353,25.55248],[93.93968,25.5592],[93.92631,25.56119],[93.91553,25.55985],[93.91331,25.56254],[93.88819,25.5643],[93.87461,25.55788],[93.8585,25.55346],[93.8328,25.55905],[93.82978,25.55736],[93.82956,25.55241],[93.82136,25.55201],[93.81965,25.54417],[93.81602,25.5404],[93.81223,25.54148],[93.80416,25.54056],[93.77583,25.53414],[93.76699,25.53639],[93.76733,25.53213],[93.76451,25.5214],[93.76564,25.51382],[93.76061,25.5116],[93.7621,25.496],[93.76566,25.49286],[93.76969,25.49392],[93.78475,25.50255],[93.79353,25.50042],[93.80031,25.49505],[93.81011,25.48073],[93.80521,25.46159],[93.79863,25.45642],[93.78994,25.44468],[93.7864,25.43941],[93.7843,25.43191],[93.77672,25.42553],[93.77726,25.42076],[93.76062,25.4142],[93.74288,25.40181],[93.73628,25.39129],[93.73752,25.38554],[93.73598,25.38052],[93.7193,25.37171],[93.71519,25.3665],[93.71424,25.35774],[93.70779,25.35424],[93.68899,25.35778],[93.68766,25.34361],[93.68331,25.3274],[93.68012,25.32582],[93.66829,25.32492],[93.67015,25.31348],[93.66912,25.30772],[93.66229,25.3045],[93.66093,25.30046],[93.66179,25.29465],[93.6478,25.27526],[93.64606,25.26535],[93.63973,25.26213],[93.63927,25.25626],[93.6173,25.2212],[93.60872,25.20249],[93.60415,25.19836],[93.60043,25.20063],[93.59717,25.1987],[93.59327,25.20062],[93.58918,25.20025],[93.59101,25.20746],[93.58815,25.21025],[93.58647,25.21629],[93.57786,25.22237],[93.57441,25.22206],[93.57105,25.22393],[93.55937,25.243],[93.55098,25.24696],[93.5375,25.24183],[93.52564,25.24484],[93.5169,25.24528],[93.51272,25.24127],[93.50147,25.24065],[93.5005,25.24992],[93.50714,25.27213],[93.50073,25.27231],[93.49127,25.27528],[93.48393,25.2725],[93.47314,25.27563],[93.46899,25.28204],[93.47156,25.29629],[93.47056,25.30505],[93.4673,25.30166],[93.46316,25.30147],[93.45536,25.29347],[93.44532,25.29134],[93.43606,25.28782],[93.43078,25.28295],[93.42752,25.28324],[93.4267,25.27964],[93.42053,25.27746],[93.41594,25.26427],[93.40668,25.26078],[93.40116,25.26062],[93.39366,25.25474],[93.39259,25.24997],[93.3866,25.24278],[93.38334,25.24228],[93.38112,25.23963],[93.38096,25.23794],[93.38269,25.23725],[93.38164,25.23431],[93.38426,25.23352],[93.38465,25.23136],[93.38127,25.22736],[93.38178,25.2229],[93.37561,25.22014],[93.37671,25.21788],[93.37338,25.21484],[93.37383,25.21182],[93.36894,25.21097],[93.37072,25.20789],[93.3661,25.2061],[93.36562,25.19808],[93.35938,25.19531],[93.35999,25.19185],[93.35671,25.19188],[93.35737,25.1876],[93.35616,25.18896],[93.35412,25.18767],[93.35496,25.18593],[93.35134,25.1832],[93.3515,25.17966],[93.34981,25.1795],[93.34587,25.16981],[93.34401,25.15913],[93.34657,25.15708],[93.34518,25.15074],[93.34751,25.13877],[93.34238,25.13749],[93.34534,25.13034],[93.34176,25.12641],[93.34526,25.12346],[93.34118,25.12306],[93.3422,25.11989],[93.33933,25.11549],[93.34133,25.11359],[93.33675,25.1116],[93.33808,25.1099],[93.33246,25.10073],[93.33354,25.09799],[93.3317,25.09605],[93.33216,25.09324],[93.32754,25.0934],[93.32188,25.09082],[93.31492,25.08462],[93.31274,25.07935],[93.30611,25.07164],[93.30631,25.06825],[93.30243,25.06334],[93.30556,25.05743],[93.30423,25.05562],[93.30079,25.05586],[93.3021,25.05424],[93.29996,25.04604],[93.29754,25.04658],[93.29941,25.04935],[93.2988,25.05195],[93.2948,25.05107],[93.29368,25.04633],[93.29136,25.04864],[93.28897,25.04568],[93.28718,25.04701],[93.28346,25.045],[93.2827,25.04901],[93.27966,25.04722],[93.28007,25.051],[93.27731,25.04957],[93.27451,25.05094],[93.27215,25.04844],[93.27045,25.05077],[93.2642,25.04936],[93.26227,25.04591],[93.26605,25.04384],[93.26219,25.04072],[93.25962,25.04121],[93.25835,25.03802],[93.25989,25.03497],[93.25379,25.02716],[93.25135,25.02714],[93.25117,25.02585],[93.25404,25.02547],[93.2525,25.02293],[93.25395,25.02058],[93.24908,25.02009],[93.24728,25.01799],[93.24388,25.01829],[93.24374,25.01612],[93.24767,25.0149],[93.24472,25.01171],[93.24178,25.00393],[93.2442,25.00326],[93.24439,24.99809],[93.24686,24.99738],[93.24888,24.99891],[93.24878,25.00299],[93.2505,25.00432],[93.25259,25.00093],[93.25738,25.00474],[93.25987,25.00113],[93.25863,24.99948],[93.25416,25.00023],[93.25277,24.99891],[93.25298,24.99734],[93.25704,24.99607],[93.25141,24.98601],[93.25343,24.98207],[93.24944,24.97934],[93.24934,24.97704],[93.25203,24.97645],[93.24961,24.97312]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"15","area_level":"State","area_name":"Mizoram","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[92.7636,24.52112],[92.75777,24.51277],[92.75805,24.51102],[92.75604,24.51126],[92.75613,24.50957],[92.75215,24.50623],[92.75189,24.50401],[92.75422,24.502],[92.74937,24.49517],[92.75082,24.49209],[92.74698,24.48703],[92.74051,24.46855],[92.73365,24.45474],[92.7275,24.44642],[92.72612,24.43851],[92.72171,24.43195],[92.72286,24.42811],[92.71797,24.42015],[92.71739,24.4156],[92.71509,24.41498],[92.7129,24.41121],[92.71509,24.40954],[92.71138,24.40722],[92.71327,24.40332],[92.70922,24.39735],[92.70928,24.39337],[92.70647,24.39215],[92.70734,24.38699],[92.70566,24.38438],[92.70409,24.38464],[92.70361,24.37545],[92.69764,24.3743],[92.69533,24.36885],[92.69282,24.36847],[92.69476,24.36536],[92.69117,24.36252],[92.69151,24.35754],[92.68925,24.35524],[92.68976,24.3536],[92.68376,24.35046],[92.68484,24.34654],[92.6791,24.3478],[92.67716,24.35015],[92.67339,24.34964],[92.66894,24.34609],[92.6663,24.3463],[92.66562,24.34964],[92.66427,24.34606],[92.66316,24.34882],[92.66137,24.34816],[92.66062,24.34405],[92.65768,24.34438],[92.65911,24.3419],[92.65161,24.33547],[92.65172,24.33105],[92.65011,24.3316],[92.64923,24.3286],[92.64617,24.33095],[92.64576,24.32778],[92.63872,24.32842],[92.64036,24.33361],[92.6363,24.33134],[92.63542,24.33356],[92.63869,24.33445],[92.63569,24.3367],[92.63024,24.33362],[92.62477,24.33408],[92.62243,24.33134],[92.62234,24.32811],[92.62368,24.32728],[92.62155,24.32371],[92.62374,24.3228],[92.62361,24.32028],[92.61955,24.31354],[92.6195,24.30801],[92.6183,24.30745],[92.61819,24.29818],[92.61591,24.28958],[92.61971,24.28713],[92.61311,24.25865],[92.61416,24.25595],[92.6123,24.25347],[92.60605,24.24845],[92.59571,24.25049],[92.58903,24.24877],[92.57213,24.25188],[92.56261,24.2512],[92.55595,24.24681],[92.5509,24.24722],[92.54705,24.23645],[92.54687,24.23297],[92.54848,24.23186],[92.54675,24.22991],[92.54712,24.22016],[92.5423,24.21344],[92.54326,24.21147],[92.54096,24.21024],[92.54201,24.20752],[92.54048,24.20358],[92.53669,24.20126],[92.53784,24.19677],[92.53464,24.19367],[92.53111,24.18511],[92.53421,24.18015],[92.52893,24.17808],[92.53017,24.17632],[92.52404,24.17144],[92.51934,24.1739],[92.51552,24.17886],[92.50997,24.17246],[92.51211,24.17048],[92.51468,24.17072],[92.51441,24.16946],[92.50691,24.16988],[92.51141,24.16541],[92.51004,24.1646],[92.50753,24.16706],[92.50327,24.16777],[92.50618,24.16413],[92.50335,24.16343],[92.50151,24.16039],[92.49421,24.16018],[92.49039,24.16279],[92.48371,24.16303],[92.48241,24.16061],[92.48342,24.15826],[92.47943,24.15661],[92.48184,24.15597],[92.4807,24.15003],[92.47705,24.1474],[92.48061,24.14541],[92.47865,24.14426],[92.47868,24.14202],[92.47462,24.14364],[92.47257,24.1399],[92.4686,24.14023],[92.46432,24.13623],[92.46412,24.13862],[92.46101,24.13764],[92.45673,24.14436],[92.45237,24.1442],[92.45058,24.14714],[92.44912,24.14397],[92.4428,24.15446],[92.44046,24.15275],[92.43642,24.15303],[92.43584,24.16513],[92.43792,24.16951],[92.43401,24.17513],[92.43573,24.17929],[92.43237,24.18448],[92.42155,24.1895],[92.4189,24.1927],[92.42132,24.20119],[92.41876,24.20469],[92.41858,24.21264],[92.42117,24.21811],[92.41936,24.22613],[92.42253,24.25486],[92.28959,24.25235],[92.29253,24.25012],[92.29735,24.23149],[92.30428,24.22351],[92.31041,24.22127],[92.31086,24.21784],[92.31627,24.2118],[92.31419,24.20961],[92.3147,24.20639],[92.32154,24.20373],[92.31912,24.19786],[92.32608,24.19707],[92.32177,24.19418],[92.32636,24.19136],[92.32243,24.18872],[92.32545,24.18552],[92.32629,24.18168],[92.33206,24.17956],[92.32653,24.17772],[92.32591,24.17355],[92.32387,24.17123],[92.32442,24.16818],[92.32863,24.16625],[92.32873,24.15507],[92.33173,24.15179],[92.32874,24.14312],[92.3307,24.13969],[92.32456,24.13943],[92.32586,24.13249],[92.32474,24.11968],[92.32711,24.117],[92.3243,24.11507],[92.32502,24.1127],[92.32791,24.11194],[92.32262,24.10439],[92.3269,24.10444],[92.32767,24.10149],[92.32492,24.09759],[92.32482,24.08817],[92.32219,24.08154],[92.32416,24.07926],[92.31925,24.07819],[92.32129,24.07269],[92.31939,24.07012],[92.31656,24.07004],[92.3168,24.06653],[92.31986,24.06374],[92.3163,24.0595],[92.31761,24.05497],[92.31531,24.05315],[92.31273,24.05488],[92.31215,24.05212],[92.31643,24.04561],[92.31201,24.03851],[92.31571,24.03768],[92.31574,24.03487],[92.31211,24.03241],[92.31695,24.03006],[92.31478,24.02595],[92.31982,24.02444],[92.31877,24.02188],[92.31542,24.02337],[92.31395,24.02122],[92.31919,24.01517],[92.32018,24.01226],[92.3189,24.00821],[92.32436,24.00465],[92.32284,24.00273],[92.3262,23.99778],[92.32216,23.99392],[92.32358,23.98854],[92.32141,23.98756],[92.32194,23.9832],[92.32014,23.97902],[92.31731,23.97878],[92.31735,23.97511],[92.31445,23.97284],[92.31039,23.97227],[92.31031,23.96952],[92.3086,23.96808],[92.31,23.96302],[92.30797,23.96056],[92.3092,23.95739],[92.30829,23.95423],[92.31053,23.95234],[92.31092,23.94821],[92.30927,23.94414],[92.31068,23.93483],[92.30899,23.93122],[92.3163,23.92806],[92.31927,23.91569],[92.32519,23.91409],[92.32198,23.91007],[92.32397,23.90487],[92.31811,23.89841],[92.31688,23.8996],[92.31665,23.88907],[92.31286,23.88481],[92.31118,23.88011],[92.31318,23.87747],[92.31063,23.87334],[92.31097,23.86975],[92.31659,23.86527],[92.31503,23.8605],[92.3117,23.86022],[92.30767,23.85691],[92.29934,23.85969],[92.28966,23.86817],[92.28511,23.86715],[92.27927,23.85634],[92.26958,23.84768],[92.26868,23.84218],[92.28086,23.82118],[92.28234,23.81463],[92.26628,23.81591],[92.25706,23.81247],[92.26001,23.79347],[92.26487,23.77316],[92.26731,23.7686],[92.26551,23.76137],[92.26718,23.75164],[92.26553,23.74323],[92.2667,23.73238],[92.26549,23.72501],[92.27969,23.71581],[92.27847,23.71019],[92.28322,23.70674],[92.2848,23.70712],[92.28495,23.70427],[92.28727,23.70153],[92.28935,23.7018],[92.28969,23.69248],[92.29094,23.69083],[92.28959,23.68659],[92.29148,23.68123],[92.28917,23.68034],[92.28359,23.66178],[92.28143,23.66111],[92.27484,23.64952],[92.27303,23.64166],[92.27552,23.64194],[92.28178,23.63856],[92.27664,23.63175],[92.27863,23.62492],[92.28004,23.62556],[92.27913,23.62866],[92.28047,23.63051],[92.28855,23.62887],[92.29604,23.62108],[92.28974,23.61975],[92.28734,23.61674],[92.28726,23.59604],[92.28848,23.59542],[92.28898,23.59813],[92.29141,23.59532],[92.29358,23.59516],[92.29316,23.59334],[92.29652,23.58803],[92.29834,23.5926],[92.30185,23.59243],[92.30159,23.58839],[92.30395,23.58291],[92.30594,23.58297],[92.30821,23.57771],[92.30509,23.57343],[92.30766,23.56901],[92.30681,23.57172],[92.30904,23.57112],[92.30848,23.56551],[92.30694,23.56616],[92.30686,23.56409],[92.3134,23.55636],[92.31274,23.553],[92.31075,23.5555],[92.3092,23.55232],[92.30871,23.54961],[92.31069,23.54706],[92.31008,23.5421],[92.30799,23.54093],[92.30625,23.53504],[92.30904,23.53234],[92.31397,23.53326],[92.31425,23.52944],[92.31626,23.52926],[92.31789,23.52633],[92.31326,23.52075],[92.3136,23.5155],[92.31769,23.51716],[92.31838,23.51492],[92.3156,23.51288],[92.31979,23.51243],[92.31892,23.50332],[92.32283,23.50102],[92.31929,23.50061],[92.32052,23.49445],[92.31743,23.49425],[92.3189,23.49213],[92.32195,23.49177],[92.32195,23.49011],[92.31606,23.48682],[92.32177,23.48289],[92.32094,23.48045],[92.32616,23.4788],[92.32285,23.47892],[92.3237,23.47522],[92.3208,23.47372],[92.32006,23.47529],[92.31713,23.47165],[92.32784,23.46641],[92.3318,23.46606],[92.33066,23.45936],[92.3255,23.45908],[92.32994,23.45404],[92.33157,23.45471],[92.33172,23.45709],[92.3333,23.45593],[92.32708,23.44854],[92.33038,23.44616],[92.33392,23.42883],[92.3353,23.42865],[92.33568,23.43345],[92.33808,23.43176],[92.34137,23.43553],[92.34649,23.43319],[92.34775,23.41281],[92.35256,23.41351],[92.3574,23.4107],[92.35815,23.40477],[92.35542,23.40081],[92.35341,23.40579],[92.35294,23.39939],[92.35453,23.38906],[92.35731,23.39172],[92.35881,23.3907],[92.35601,23.38777],[92.35668,23.38471],[92.35305,23.38286],[92.35266,23.38087],[92.35619,23.37962],[92.36339,23.38102],[92.36511,23.37959],[92.35741,23.37465],[92.35643,23.37235],[92.36027,23.36773],[92.36394,23.36616],[92.37049,23.37358],[92.36926,23.36701],[92.37569,23.36537],[92.37906,23.36183],[92.37642,23.35667],[92.38049,23.35557],[92.38068,23.35118],[92.37619,23.347],[92.37485,23.33735],[92.37209,23.33168],[92.36829,23.32546],[92.36436,23.32292],[92.36804,23.31711],[92.36743,23.32293],[92.36937,23.32244],[92.37136,23.31796],[92.37609,23.31989],[92.37733,23.31833],[92.37626,23.31296],[92.38568,23.3062],[92.38576,23.3031],[92.38305,23.30183],[92.38462,23.29812],[92.38274,23.29611],[92.38469,23.29261],[92.38248,23.29068],[92.38116,23.2851],[92.38814,23.28129],[92.39475,23.2646],[92.3928,23.26382],[92.38874,23.26606],[92.3895,23.25964],[92.39824,23.25613],[92.39546,23.2487],[92.39947,23.24186],[92.40268,23.2423],[92.40419,23.24066],[92.4004,23.23877],[92.40141,23.23658],[92.34678,23.23567],[92.35098,23.23377],[92.35393,23.2198],[92.35298,23.21413],[92.3551,23.2068],[92.35241,23.20631],[92.35491,23.20016],[92.35228,23.19457],[92.35414,23.19012],[92.35334,23.18572],[92.35448,23.18434],[92.35842,23.18488],[92.36128,23.18257],[92.36082,23.18007],[92.35564,23.18021],[92.35445,23.17851],[92.35725,23.17796],[92.35757,23.17178],[92.35903,23.16862],[92.36167,23.16755],[92.36251,23.16489],[92.36094,23.162],[92.36436,23.15662],[92.36212,23.15634],[92.36222,23.15292],[92.36047,23.15284],[92.36034,23.14873],[92.35826,23.14635],[92.36038,23.14686],[92.36096,23.14532],[92.35697,23.13415],[92.363,23.13117],[92.36576,23.12701],[92.3682,23.12726],[92.36046,23.11283],[92.3583,23.10593],[92.36009,23.10534],[92.35801,23.10327],[92.36188,23.10044],[92.36152,23.09824],[92.36696,23.09596],[92.37017,23.09651],[92.36918,23.09512],[92.37135,23.08866],[92.37511,23.08445],[92.37728,23.08698],[92.38005,23.08629],[92.37932,23.08365],[92.38081,23.08051],[92.38548,23.07696],[92.38313,23.07194],[92.38879,23.06484],[92.3875,23.06189],[92.39071,23.06051],[92.39238,23.05645],[92.39058,23.05519],[92.39219,23.05379],[92.39151,23.0521],[92.38998,23.05155],[92.39127,23.04916],[92.38853,23.04926],[92.38954,23.04726],[92.38817,23.03974],[92.38385,23.0379],[92.38254,23.03327],[92.38495,23.02732],[92.38342,23.02632],[92.38372,23.02308],[92.37976,23.01206],[92.38465,23.00964],[92.38334,23.00888],[92.38418,23.00488],[92.38206,23.00087],[92.38529,22.99219],[92.38196,22.98809],[92.38502,22.98611],[92.38421,22.98161],[92.38145,22.9824],[92.37944,22.98069],[92.38145,22.9786],[92.38041,22.97582],[92.37833,22.97677],[92.37434,22.97065],[92.37563,22.96358],[92.37405,22.96129],[92.37727,22.95966],[92.37284,22.95823],[92.37501,22.9561],[92.37449,22.95313],[92.37719,22.95551],[92.37817,22.95206],[92.3758,22.94989],[92.37745,22.94817],[92.37475,22.94744],[92.37269,22.93985],[92.37591,22.93679],[92.37178,22.93617],[92.37309,22.93458],[92.37614,22.93502],[92.37758,22.93181],[92.37642,22.92862],[92.39298,22.93069],[92.39759,22.9297],[92.40132,22.92398],[92.39734,22.91696],[92.4011,22.91195],[92.40325,22.91282],[92.40415,22.91775],[92.40677,22.91784],[92.41302,22.91339],[92.41909,22.91883],[92.42027,22.91835],[92.42025,22.90961],[92.42649,22.89722],[92.43315,22.89171],[92.43373,22.88579],[92.4373,22.88602],[92.44596,22.8971],[92.44924,22.89501],[92.45063,22.89035],[92.44855,22.87637],[92.46047,22.8709],[92.45471,22.86953],[92.45212,22.86494],[92.45268,22.86218],[92.45543,22.86076],[92.46161,22.86154],[92.45979,22.85805],[92.46446,22.85465],[92.46242,22.85231],[92.45831,22.85292],[92.45648,22.85103],[92.46006,22.85033],[92.45846,22.84474],[92.46289,22.84332],[92.46325,22.84175],[92.4578,22.84073],[92.45289,22.84296],[92.46195,22.8308],[92.45532,22.82594],[92.45813,22.82295],[92.45425,22.81886],[92.45905,22.81853],[92.45822,22.81659],[92.461,22.81131],[92.46118,22.80735],[92.4628,22.80747],[92.46259,22.81128],[92.46557,22.80963],[92.46685,22.80758],[92.46485,22.80462],[92.46547,22.80222],[92.47227,22.79586],[92.4691,22.78247],[92.47013,22.7818],[92.47184,22.78376],[92.47295,22.78285],[92.47272,22.77611],[92.47585,22.77118],[92.47287,22.76494],[92.47641,22.76417],[92.47368,22.75971],[92.47691,22.75936],[92.47597,22.75595],[92.47935,22.7528],[92.47384,22.74621],[92.47655,22.74521],[92.48217,22.74699],[92.48871,22.74628],[92.49028,22.74538],[92.49119,22.74101],[92.49395,22.74259],[92.49424,22.74005],[92.49793,22.73989],[92.50136,22.73732],[92.50564,22.73922],[92.5082,22.73645],[92.50905,22.73167],[92.5132,22.73279],[92.50994,22.72863],[92.51194,22.72774],[92.51416,22.72327],[92.51664,22.72236],[92.51756,22.71593],[92.51385,22.71032],[92.5139,22.708],[92.5166,22.70444],[92.51889,22.6879],[92.52327,22.67916],[92.52253,22.67408],[92.52595,22.6731],[92.52607,22.66519],[92.52872,22.66515],[92.52653,22.66047],[92.52868,22.65949],[92.52433,22.65899],[92.52352,22.65624],[92.52441,22.65387],[92.52666,22.65374],[92.5273,22.65077],[92.52462,22.65047],[92.52492,22.64014],[92.52677,22.63934],[92.52654,22.63671],[92.52791,22.63566],[92.52621,22.63357],[92.53249,22.63297],[92.53261,22.6275],[92.52743,22.62078],[92.53002,22.62058],[92.5291,22.61476],[92.53216,22.61167],[92.53536,22.61167],[92.53375,22.6075],[92.52995,22.60914],[92.53043,22.60349],[92.53537,22.60014],[92.53592,22.59571],[92.53782,22.59405],[92.53501,22.59103],[92.53619,22.58942],[92.53937,22.58915],[92.536,22.58663],[92.53297,22.58776],[92.53438,22.58517],[92.53855,22.58591],[92.5371,22.58462],[92.53646,22.57873],[92.53814,22.5751],[92.53264,22.57147],[92.5273,22.57299],[92.52804,22.56562],[92.52167,22.55988],[92.52836,22.55662],[92.53192,22.55221],[92.53155,22.5451],[92.53421,22.54409],[92.53721,22.54517],[92.53704,22.5419],[92.54,22.5406],[92.5386,22.53473],[92.54132,22.53426],[92.54151,22.53037],[92.53919,22.52893],[92.54119,22.52758],[92.54081,22.5256],[92.54376,22.52497],[92.54179,22.52242],[92.54414,22.52134],[92.54569,22.51779],[92.54338,22.51417],[92.54504,22.51352],[92.547,22.51682],[92.54725,22.51508],[92.55128,22.5133],[92.54657,22.50989],[92.55083,22.50961],[92.55022,22.50678],[92.54817,22.50742],[92.54719,22.50352],[92.54932,22.50145],[92.54712,22.50159],[92.54593,22.49948],[92.54335,22.50038],[92.5426,22.49876],[92.54993,22.49733],[92.54951,22.49575],[92.54518,22.49521],[92.54333,22.49325],[92.54346,22.49021],[92.54627,22.48866],[92.54423,22.48294],[92.54561,22.48243],[92.54536,22.47971],[92.54751,22.47593],[92.54554,22.47163],[92.54652,22.4662],[92.54808,22.46569],[92.54635,22.46246],[92.54948,22.45896],[92.54823,22.45741],[92.55015,22.4569],[92.54811,22.45602],[92.55097,22.4544],[92.55142,22.44869],[92.55003,22.44774],[92.55131,22.44594],[92.54946,22.44351],[92.55205,22.44225],[92.55168,22.43769],[92.55425,22.43622],[92.55338,22.43379],[92.55538,22.42921],[92.55124,22.42738],[92.55499,22.42721],[92.55498,22.42508],[92.55639,22.4251],[92.55523,22.42254],[92.55069,22.42257],[92.55457,22.41688],[92.55231,22.41533],[92.55208,22.40897],[92.55457,22.41072],[92.55689,22.40927],[92.55758,22.40716],[92.55478,22.40549],[92.55983,22.40183],[92.55946,22.39984],[92.55595,22.39854],[92.55983,22.39552],[92.55846,22.39408],[92.55975,22.39133],[92.55829,22.39113],[92.56106,22.38932],[92.55944,22.38744],[92.56114,22.38511],[92.55933,22.38186],[92.56338,22.3801],[92.56154,22.37835],[92.562,22.37575],[92.56379,22.37543],[92.56248,22.37166],[92.5674,22.37072],[92.56802,22.36051],[92.57187,22.35864],[92.57094,22.35662],[92.57323,22.34829],[92.5719,22.34663],[92.57332,22.34542],[92.57252,22.34267],[92.57505,22.34216],[92.57367,22.33804],[92.57599,22.33708],[92.57596,22.33516],[92.57408,22.33434],[92.57608,22.33296],[92.57428,22.33166],[92.57578,22.33128],[92.57672,22.32499],[92.58023,22.32498],[92.57847,22.32338],[92.58117,22.32176],[92.57945,22.32104],[92.58045,22.31921],[92.57802,22.31654],[92.57996,22.31493],[92.57856,22.31244],[92.58016,22.31175],[92.57725,22.31115],[92.58137,22.30842],[92.58145,22.3069],[92.57957,22.30613],[92.5803,22.30385],[92.58341,22.30393],[92.58019,22.30261],[92.58333,22.29892],[92.58249,22.29105],[92.58107,22.29047],[92.58259,22.28774],[92.58092,22.28642],[92.58411,22.28468],[92.58185,22.28179],[92.58659,22.28025],[92.58439,22.27905],[92.58633,22.27653],[92.58338,22.27732],[92.5835,22.27617],[92.58073,22.27606],[92.58076,22.2735],[92.58229,22.27411],[92.58317,22.2726],[92.58102,22.26918],[92.58432,22.26735],[92.58403,22.26515],[92.58689,22.26395],[92.58437,22.26151],[92.58673,22.25988],[92.58511,22.2586],[92.58676,22.25906],[92.58703,22.25731],[92.58907,22.25733],[92.5888,22.25558],[92.59077,22.25547],[92.58943,22.25392],[92.59092,22.249],[92.58911,22.24752],[92.59142,22.24653],[92.59046,22.24429],[92.59184,22.23922],[92.58967,22.23567],[92.59161,22.23467],[92.58876,22.23295],[92.59032,22.23284],[92.59068,22.23095],[92.58815,22.23039],[92.58939,22.2259],[92.58809,22.22397],[92.59035,22.22293],[92.58805,22.21598],[92.59179,22.21423],[92.59044,22.21326],[92.5927,22.21147],[92.59361,22.2044],[92.59484,22.2042],[92.59407,22.19596],[92.59568,22.19586],[92.59661,22.19026],[92.595,22.18388],[92.59691,22.1837],[92.5944,22.18122],[92.59706,22.17734],[92.59523,22.17539],[92.60375,22.17161],[92.60713,22.17253],[92.60666,22.16591],[92.60923,22.16402],[92.60744,22.16039],[92.61086,22.13844],[92.60786,22.13331],[92.60783,22.12797],[92.60575,22.12339],[92.59918,22.12314],[92.59446,22.12514],[92.58898,22.13144],[92.59328,22.13739],[92.59259,22.13883],[92.5785,22.14341],[92.57632,22.13958],[92.57735,22.13645],[92.56568,22.13478],[92.56397,22.13352],[92.56262,22.12802],[92.57514,22.11617],[92.57661,22.10497],[92.58257,22.09757],[92.5817,22.09164],[92.58435,22.09002],[92.58334,22.08689],[92.58546,22.08505],[92.58489,22.08251],[92.59065,22.081],[92.58986,22.07062],[92.59222,22.06562],[92.59556,22.06171],[92.60266,22.0611],[92.60035,22.05822],[92.60032,22.05299],[92.59797,22.04937],[92.59914,22.04225],[92.59365,22.04097],[92.59262,22.03744],[92.59362,22.03151],[92.60007,22.02841],[92.60054,22.01973],[92.59749,22.01225],[92.5981,22.00898],[92.60351,22.00104],[92.61,21.99767],[92.61005,21.99279],[92.61276,21.99011],[92.61055,21.98377],[92.60404,21.98263],[92.60322,21.97763],[92.60754,21.97466],[92.62137,21.98013],[92.62391,21.98282],[92.63494,21.98322],[92.63677,21.99011],[92.6419,21.99216],[92.64342,22.00249],[92.65139,22.01002],[92.65161,22.01591],[92.65805,22.01558],[92.6607,22.0133],[92.66678,22.0135],[92.66979,22.00967],[92.67133,22.01109],[92.67975,22.01155],[92.68518,22.04305],[92.68224,22.07288],[92.68177,22.10346],[92.68804,22.10373],[92.68864,22.07271],[92.69043,22.07221],[92.69253,22.0751],[92.69132,22.08854],[92.69244,22.10034],[92.69115,22.10523],[92.69262,22.12096],[92.69202,22.1391],[92.69614,22.1377],[92.69697,22.14243],[92.69475,22.14702],[92.69463,22.15336],[92.69976,22.15507],[92.70084,22.15157],[92.70437,22.15021],[92.7072,22.15185],[92.7104,22.15112],[92.71282,22.14741],[92.7268,22.14911],[92.73538,22.13444],[92.73962,22.13198],[92.74125,22.13282],[92.74208,22.13066],[92.74624,22.13119],[92.74718,22.12778],[92.75356,22.12423],[92.76003,22.12551],[92.7619,22.12039],[92.76413,22.12069],[92.76312,22.11895],[92.76643,22.11916],[92.76571,22.11696],[92.76766,22.11671],[92.76683,22.1141],[92.77039,22.11191],[92.77123,22.10891],[92.77295,22.10902],[92.77449,22.10668],[92.77906,22.10766],[92.79035,22.1048],[92.79255,22.1],[92.79594,22.09891],[92.79725,22.09399],[92.80107,22.09433],[92.80392,22.09801],[92.80659,22.09598],[92.80994,22.09592],[92.81346,22.0891],[92.81767,22.08688],[92.81671,22.08097],[92.81817,22.07495],[92.83674,22.07166],[92.8411,22.0594],[92.84746,22.06054],[92.85237,22.06633],[92.85881,22.06705],[92.86188,22.06271],[92.8634,22.06267],[92.86304,22.0577],[92.86593,22.05156],[92.8636,22.03296],[92.86506,22.02369],[92.87575,22.02115],[92.87994,22.02201],[92.87864,22.01505],[92.89073,22.01202],[92.89219,22.00596],[92.89443,22.00375],[92.89525,21.98939],[92.89776,21.97977],[92.89701,21.97299],[92.90048,21.96437],[92.89894,21.96332],[92.90052,21.95751],[92.89881,21.95595],[92.90153,21.95189],[92.90116,21.94694],[92.90385,21.94004],[92.90614,21.94058],[92.90746,21.94282],[92.90594,21.94361],[92.91146,21.95079],[92.91136,21.96096],[92.91357,21.96514],[92.91145,21.96435],[92.91156,21.96595],[92.91343,21.96736],[92.91534,21.97896],[92.91701,21.98137],[92.91881,21.98124],[92.92013,21.98997],[92.92175,21.9906],[92.92075,21.99183],[92.92997,21.99592],[92.93578,22.0057],[92.93462,22.01069],[92.92895,22.00853],[92.92725,22.01564],[92.93076,22.01757],[92.93997,22.01356],[92.94071,22.01682],[92.94239,22.01668],[92.94214,22.02006],[92.94546,22.02109],[92.95225,22.02971],[92.95703,22.02944],[92.96098,22.02566],[92.96075,22.02171],[92.96503,22.01739],[92.96325,22.01573],[92.96467,22.01495],[92.965,22.01079],[92.96724,22.00967],[92.96819,22.00671],[92.97237,22.00608],[92.97354,22.00044],[92.97792,21.99747],[92.97814,21.98687],[92.98056,21.98006],[92.99382,21.9778],[93.00741,21.98233],[93.00276,21.99692],[93.00181,22.00679],[93.00445,22.01349],[93.00427,22.01705],[92.99481,22.03219],[92.99737,22.03561],[92.99469,22.0422],[92.99808,22.05196],[92.99751,22.05435],[93.00187,22.05791],[93.00127,22.06093],[93.00288,22.0628],[93.0014,22.06681],[93.0066,22.07096],[93.00364,22.07457],[93.00518,22.08003],[93.00845,22.08079],[93.00872,22.08476],[93.01163,22.0884],[93.01058,22.09234],[93.00661,22.09467],[93.00427,22.09997],[93.00453,22.10359],[93.00772,22.10464],[93.0194,22.10114],[93.02533,22.10182],[93.04735,22.09814],[93.05958,22.10125],[93.05779,22.10304],[93.05886,22.10717],[93.05705,22.12137],[93.05441,22.12109],[93.05391,22.12531],[93.04508,22.13359],[93.04496,22.13731],[93.04221,22.13648],[93.03951,22.13855],[93.04409,22.14318],[93.04061,22.1427],[93.03981,22.14526],[93.0372,22.14438],[93.03691,22.14887],[93.04122,22.15069],[93.04455,22.15725],[93.04213,22.1594],[93.04757,22.16226],[93.0491,22.1689],[93.04811,22.17515],[93.04014,22.18688],[93.04212,22.19],[93.03822,22.19503],[93.04301,22.19558],[93.04298,22.19918],[93.04642,22.20244],[93.05052,22.20041],[93.05367,22.20246],[93.05682,22.20081],[93.0633,22.2073],[93.08872,22.19654],[93.10274,22.19948],[93.11104,22.20403],[93.11446,22.19068],[93.11689,22.18934],[93.12337,22.17963],[93.12356,22.17355],[93.15083,22.17626],[93.15585,22.18142],[93.15564,22.18471],[93.15752,22.18593],[93.15728,22.18837],[93.1604,22.19209],[93.16146,22.1971],[93.15709,22.20135],[93.15344,22.209],[93.14864,22.21171],[93.15234,22.21664],[93.1474,22.22934],[93.13994,22.23471],[93.14356,22.23795],[93.1421,22.24546],[93.14833,22.24953],[93.15452,22.24724],[93.16395,22.24998],[93.16756,22.24608],[93.17762,22.24573],[93.19276,22.2546],[93.19904,22.25569],[93.19806,22.26021],[93.20179,22.26257],[93.20181,22.26476],[93.19778,22.27051],[93.19738,22.27877],[93.19359,22.28809],[93.19368,22.29062],[93.19814,22.29121],[93.19918,22.29424],[93.19725,22.29636],[93.19241,22.29742],[93.18957,22.3008],[93.19006,22.3025],[93.1954,22.3017],[93.19053,22.30954],[93.19575,22.31432],[93.18957,22.32044],[93.18905,22.32273],[93.19668,22.32876],[93.19434,22.3338],[93.18583,22.33994],[93.18813,22.34511],[93.18668,22.35988],[93.18801,22.36549],[93.18361,22.37101],[93.18354,22.37436],[93.18607,22.38104],[93.18977,22.38269],[93.18506,22.38717],[93.18445,22.39189],[93.18162,22.39531],[93.18433,22.40194],[93.18746,22.40338],[93.18636,22.40711],[93.18301,22.41041],[93.18154,22.41887],[93.18275,22.42255],[93.18573,22.42401],[93.18529,22.42815],[93.17811,22.4328],[93.17859,22.43722],[93.17694,22.4403],[93.16832,22.44327],[93.16347,22.4513],[93.1509,22.45455],[93.1387,22.45452],[93.13631,22.46159],[93.13085,22.46816],[93.13247,22.47366],[93.13181,22.47772],[93.134,22.48208],[93.13282,22.48789],[93.13456,22.49175],[93.12572,22.50171],[93.12378,22.50838],[93.12821,22.52365],[93.12509,22.52549],[93.10853,22.52482],[93.10655,22.52703],[93.1125,22.53275],[93.10918,22.53705],[93.10933,22.54673],[93.11207,22.55762],[93.11569,22.56373],[93.12285,22.5673],[93.12858,22.57825],[93.13801,22.58284],[93.14031,22.59227],[93.13704,22.598],[93.13735,22.60332],[93.13369,22.61415],[93.12727,22.61706],[93.12797,22.62394],[93.12595,22.62581],[93.12137,22.62566],[93.11645,22.63111],[93.10826,22.63573],[93.10699,22.63997],[93.11081,22.64731],[93.10957,22.65549],[93.10152,22.66071],[93.10157,22.66511],[93.09546,22.67249],[93.09476,22.68053],[93.10089,22.68056],[93.10192,22.68267],[93.10087,22.68611],[93.09661,22.68674],[93.09881,22.69371],[93.09724,22.69839],[93.09306,22.70026],[93.09099,22.70481],[93.09285,22.71278],[93.09785,22.7179],[93.09855,22.72821],[93.106,22.74282],[93.10736,22.75262],[93.10017,22.76388],[93.10231,22.76744],[93.09571,22.7854],[93.09778,22.79263],[93.09472,22.80619],[93.0968,22.80891],[93.10504,22.81234],[93.11055,22.81805],[93.10942,22.82013],[93.10474,22.82107],[93.10338,22.82349],[93.10472,22.82576],[93.11234,22.82796],[93.11331,22.82999],[93.11019,22.83346],[93.11533,22.83597],[93.11812,22.84249],[93.11656,22.84607],[93.11886,22.85869],[93.1173,22.86311],[93.12405,22.86688],[93.12666,22.8706],[93.1275,22.87459],[93.12603,22.87644],[93.12865,22.87852],[93.13435,22.89129],[93.13367,22.89505],[93.1295,22.90126],[93.13117,22.90609],[93.13619,22.91205],[93.13978,22.91351],[93.14332,22.91296],[93.15026,22.90787],[93.16098,22.90877],[93.16454,22.91049],[93.16168,22.91663],[93.15437,22.91733],[93.15277,22.9217],[93.14813,22.92511],[93.1451,22.9323],[93.1461,22.94368],[93.14433,22.94685],[93.13804,22.95056],[93.14059,22.95367],[93.14132,22.95762],[93.13722,22.96176],[93.13576,22.97039],[93.14236,22.97152],[93.14381,22.97488],[93.13915,22.98164],[93.14063,22.98996],[93.13745,22.99181],[93.13194,22.99121],[93.12734,22.99609],[93.12599,23.00263],[93.12017,23.00244],[93.12322,23.00777],[93.12528,23.02427],[93.12827,23.03076],[93.12587,23.03531],[93.12581,23.04072],[93.1271,23.04427],[93.13537,23.04836],[93.13326,23.05474],[93.13392,23.05878],[93.13626,23.06065],[93.14033,23.05895],[93.14015,23.0533],[93.15135,23.05375],[93.15353,23.04631],[93.1528,23.04419],[93.15609,23.04318],[93.15986,23.04431],[93.1604,23.04795],[93.16896,23.04669],[93.17567,23.05405],[93.18461,23.05954],[93.18668,23.05816],[93.18822,23.05219],[93.20152,23.05485],[93.20201,23.05075],[93.20987,23.04854],[93.2113,23.03917],[93.21346,23.03594],[93.21635,23.03604],[93.21742,23.03387],[93.21505,23.0273],[93.2187,23.02394],[93.22499,23.02387],[93.22552,23.02027],[93.22978,23.01993],[93.23069,23.01774],[93.22843,23.01342],[93.22946,23.01165],[93.23551,23.01127],[93.24094,23.00715],[93.24691,23.0066],[93.26399,23.0081],[93.26731,23.01048],[93.27124,23.01073],[93.27501,23.00391],[93.28077,23.00529],[93.28317,23.00837],[93.2904,23.00861],[93.29354,23.00644],[93.30452,23.02022],[93.3071,23.02141],[93.31385,23.01943],[93.31341,23.02622],[93.32031,23.02889],[93.32037,23.03667],[93.32368,23.03598],[93.328,23.0396],[93.32742,23.04752],[93.3336,23.04857],[93.33461,23.05945],[93.34325,23.05819],[93.34041,23.06487],[93.34081,23.0677],[93.34586,23.07097],[93.35206,23.0704],[93.35159,23.07289],[93.34518,23.07513],[93.33926,23.07383],[93.34351,23.08018],[93.34345,23.08595],[93.3464,23.0879],[93.34457,23.09177],[93.34713,23.09301],[93.3506,23.09135],[93.35429,23.09683],[93.35537,23.10372],[93.35851,23.10957],[93.3554,23.11314],[93.35566,23.11605],[93.36321,23.11494],[93.36621,23.12138],[93.37234,23.12605],[93.37759,23.12679],[93.37745,23.13263],[93.38448,23.13261],[93.38561,23.13384],[93.38645,23.14411],[93.38353,23.14449],[93.37828,23.14068],[93.37118,23.14109],[93.36823,23.1441],[93.37139,23.15234],[93.36925,23.15412],[93.37208,23.1593],[93.37123,23.16558],[93.37255,23.17119],[93.36865,23.1753],[93.37431,23.17722],[93.38064,23.18659],[93.37696,23.19026],[93.38027,23.1999],[93.37545,23.20422],[93.37799,23.2068],[93.37832,23.21237],[93.3806,23.21535],[93.38804,23.2152],[93.38861,23.21692],[93.38355,23.22392],[93.38127,23.2243],[93.38206,23.23221],[93.3788,23.23431],[93.37939,23.23781],[93.37621,23.24405],[93.37664,23.24789],[93.36947,23.25044],[93.37169,23.25463],[93.37023,23.25864],[93.37364,23.26126],[93.36988,23.26347],[93.3684,23.26877],[93.36571,23.2692],[93.36916,23.27607],[93.36261,23.27914],[93.36388,23.2815],[93.3669,23.28098],[93.36993,23.28717],[93.366,23.29398],[93.36854,23.30183],[93.36508,23.30634],[93.37162,23.30961],[93.36729,23.31046],[93.36383,23.31323],[93.37157,23.31354],[93.37147,23.31656],[93.36755,23.31974],[93.36692,23.32216],[93.3716,23.32615],[93.37288,23.32942],[93.37009,23.33306],[93.36304,23.33632],[93.35812,23.3423],[93.35829,23.34609],[93.35577,23.35189],[93.36075,23.35631],[93.36587,23.35651],[93.37119,23.35907],[93.37932,23.36083],[93.38141,23.35819],[93.38401,23.36193],[93.38763,23.3594],[93.3893,23.36452],[93.38796,23.36742],[93.3912,23.37004],[93.38694,23.37184],[93.38649,23.37408],[93.39305,23.37503],[93.395,23.37682],[93.39696,23.38354],[93.40165,23.38375],[93.40239,23.38932],[93.39834,23.3928],[93.39813,23.39657],[93.39444,23.39717],[93.39149,23.40828],[93.39079,23.41856],[93.38831,23.42082],[93.38984,23.42389],[93.38929,23.43278],[93.39108,23.44203],[93.38801,23.44638],[93.39055,23.45072],[93.39301,23.44777],[93.39476,23.44807],[93.39296,23.45078],[93.39601,23.45367],[93.39221,23.45737],[93.39419,23.45834],[93.39396,23.46447],[93.39741,23.46629],[93.39931,23.47188],[93.39746,23.47287],[93.39816,23.4748],[93.3954,23.47502],[93.3925,23.47881],[93.39551,23.48132],[93.39599,23.48392],[93.39379,23.48668],[93.39528,23.49147],[93.39472,23.50376],[93.39695,23.50499],[93.39796,23.51056],[93.40157,23.50992],[93.40428,23.51259],[93.4038,23.51672],[93.40875,23.51731],[93.40919,23.52343],[93.41398,23.52954],[93.41854,23.54001],[93.41533,23.54457],[93.41244,23.55644],[93.40906,23.55741],[93.40915,23.55872],[93.41378,23.56027],[93.40982,23.56365],[93.41355,23.56507],[93.41467,23.57116],[93.41812,23.56868],[93.42207,23.57137],[93.42323,23.58444],[93.42856,23.58828],[93.42586,23.59103],[93.42756,23.59411],[93.42585,23.59636],[93.42635,23.5996],[93.42419,23.60083],[93.4257,23.60126],[93.42167,23.60312],[93.42448,23.60491],[93.42164,23.60733],[93.42208,23.61032],[93.42052,23.6116],[93.42243,23.61552],[93.41994,23.62345],[93.42269,23.62458],[93.42157,23.6269],[93.42458,23.62954],[93.42267,23.63116],[93.42338,23.63387],[93.41714,23.63765],[93.41843,23.64671],[93.4165,23.64763],[93.42021,23.64876],[93.41958,23.65008],[93.422,23.65165],[93.42039,23.65332],[93.4241,23.6561],[93.42242,23.65997],[93.4258,23.66222],[93.42559,23.66427],[93.4311,23.67342],[93.43288,23.67304],[93.43143,23.67489],[93.4361,23.67805],[93.43505,23.67913],[93.43691,23.68704],[93.42732,23.68806],[93.42554,23.68928],[93.42519,23.69266],[93.42117,23.69601],[93.41984,23.6986],[93.42133,23.69921],[93.41945,23.70149],[93.41024,23.7038],[93.40929,23.70669],[93.40727,23.70724],[93.40859,23.7087],[93.40614,23.71532],[93.40999,23.71799],[93.41229,23.71743],[93.40934,23.72099],[93.41096,23.72375],[93.4099,23.72675],[93.41095,23.7294],[93.40655,23.73255],[93.40399,23.73774],[93.40377,23.74527],[93.39504,23.74943],[93.39524,23.75386],[93.39155,23.75669],[93.39169,23.76118],[93.39576,23.76886],[93.39409,23.77441],[93.39649,23.7805],[93.3963,23.78653],[93.3977,23.78791],[93.39789,23.79278],[93.40284,23.79709],[93.40326,23.80705],[93.40188,23.81244],[93.3985,23.81528],[93.39668,23.81407],[93.39452,23.81744],[93.39192,23.81644],[93.39005,23.81772],[93.3902,23.82116],[93.39239,23.82342],[93.38846,23.82557],[93.39001,23.83011],[93.38862,23.83288],[93.39016,23.83384],[93.38873,23.83479],[93.38852,23.84071],[93.38496,23.84813],[93.38757,23.85515],[93.38565,23.85854],[93.38879,23.86511],[93.3868,23.86673],[93.38764,23.86866],[93.38476,23.87301],[93.38464,23.87681],[93.38925,23.88884],[93.39003,23.9019],[93.39145,23.90353],[93.3901,23.90603],[93.39182,23.90649],[93.3914,23.91424],[93.39528,23.91537],[93.39162,23.91851],[93.39428,23.92428],[93.39316,23.92567],[93.39067,23.92382],[93.39064,23.92688],[93.39293,23.92913],[93.38682,23.9312],[93.3849,23.9301],[93.3807,23.93453],[93.37838,23.93281],[93.37159,23.93235],[93.36893,23.93018],[93.36874,23.93287],[93.3654,23.93357],[93.36371,23.93835],[93.35933,23.94093],[93.36119,23.94476],[93.3575,23.94545],[93.35565,23.94195],[93.35076,23.94165],[93.35452,23.94329],[93.35316,23.94694],[93.3503,23.94624],[93.34856,23.94805],[93.34876,23.94913],[93.35111,23.94829],[93.35358,23.95107],[93.35285,23.95352],[93.35025,23.95455],[93.35201,23.95729],[93.35114,23.96165],[93.35012,23.96261],[93.34749,23.96126],[93.34672,23.96442],[93.34103,23.96979],[93.34401,23.97124],[93.34328,23.97508],[93.33669,23.97588],[93.33947,23.98056],[93.33328,23.97906],[93.33248,23.98026],[93.33506,23.9826],[93.33415,23.98513],[93.32889,23.9848],[93.32983,23.98658],[93.3375,23.98967],[93.33424,23.99218],[93.3343,23.99772],[93.33221,23.99941],[93.33449,24.00471],[93.33283,24.00761],[93.3335,24.01444],[93.33041,24.01531],[93.3296,24.02044],[93.33157,24.02107],[93.3351,24.01903],[93.33896,24.02148],[93.33779,24.0256],[93.33071,24.02709],[93.33182,24.02997],[93.32591,24.02992],[93.32871,24.0338],[93.33532,24.03563],[93.33239,24.03802],[93.3374,24.03914],[93.33751,24.04117],[93.33406,24.04045],[93.33196,24.04251],[93.32763,24.04237],[93.3258,24.05035],[93.30785,24.05093],[93.29359,24.04841],[93.28353,24.0484],[93.28071,24.04338],[93.27212,24.03708],[93.26929,24.0308],[93.25064,24.02071],[93.25207,24.02574],[93.24775,24.03075],[93.2577,24.05463],[93.26199,24.05715],[93.25911,24.06469],[93.25911,24.06971],[93.24345,24.08227],[93.23776,24.08352],[93.23207,24.081],[93.22214,24.08351],[93.21929,24.081],[93.21787,24.07849],[93.2207,24.07095],[93.21217,24.04706],[93.19372,24.04956],[93.18947,24.05333],[93.17101,24.0508],[93.16534,24.05206],[93.16251,24.05834],[93.16539,24.07217],[93.15686,24.07468],[93.15401,24.08095],[93.14347,24.08524],[93.13777,24.08395],[93.13065,24.07639],[93.13064,24.0701],[93.12494,24.06128],[93.1164,24.05747],[93.11498,24.0537],[93.10788,24.05242],[93.10646,24.04739],[93.09651,24.04234],[93.09509,24.04611],[93.09936,24.04989],[93.09651,24.05365],[93.09795,24.07126],[93.08515,24.08133],[93.07516,24.10027],[93.06087,24.09161],[93.04939,24.08805],[93.03342,24.09257],[93.03044,24.09664],[93.02305,24.10105],[93.01724,24.09887],[93.00987,24.10197],[93.00544,24.10739],[92.9922,24.1142],[92.9722,24.11235],[92.96943,24.1214],[92.9819,24.12637],[92.98522,24.12927],[92.9887,24.13786],[92.98696,24.14781],[92.98892,24.15066],[93.00127,24.15806],[92.99915,24.1715],[93.00673,24.17965],[92.99894,24.19176],[92.99889,24.19497],[93.00822,24.19495],[93.01246,24.19745],[93.01385,24.20497],[93.01812,24.20746],[93.01954,24.21497],[93.01527,24.2225],[93.01528,24.22626],[93.02245,24.23002],[93.0139,24.23378],[93.00261,24.25139],[93.00266,24.26022],[93.00984,24.26909],[93.00415,24.27791],[93.00701,24.2855],[93.01415,24.29056],[93.03116,24.31577],[93.03932,24.34074],[93.01755,24.34422],[93.01531,24.35625],[93.01811,24.37161],[93.01309,24.37735],[93.02035,24.38785],[92.99831,24.39976],[92.99239,24.39895],[92.98482,24.40565],[92.97484,24.40846],[92.96622,24.39685],[92.96017,24.39193],[92.95732,24.39208],[92.95329,24.40158],[92.95117,24.40299],[92.94761,24.40236],[92.94546,24.40005],[92.93914,24.40063],[92.93372,24.39231],[92.92753,24.39648],[92.92419,24.39605],[92.92436,24.39789],[92.92037,24.40088],[92.92199,24.40352],[92.90927,24.41014],[92.91096,24.41197],[92.90934,24.41291],[92.90707,24.41129],[92.90671,24.40276],[92.90287,24.39577],[92.90392,24.3922],[92.90288,24.39107],[92.89297,24.39268],[92.89256,24.39747],[92.8908,24.39833],[92.89145,24.40045],[92.88856,24.39833],[92.88369,24.40241],[92.87334,24.39486],[92.8688,24.39465],[92.86094,24.3985],[92.84624,24.386],[92.84523,24.3797],[92.84336,24.37787],[92.83985,24.3767],[92.83575,24.37849],[92.82937,24.37369],[92.82556,24.37737],[92.82661,24.38123],[92.82314,24.38647],[92.82995,24.40029],[92.82016,24.40371],[92.81768,24.40802],[92.81894,24.41005],[92.81245,24.40928],[92.81216,24.41148],[92.81007,24.41186],[92.81161,24.41328],[92.8088,24.41268],[92.809,24.41569],[92.80685,24.41885],[92.80434,24.41753],[92.79937,24.41913],[92.80179,24.42058],[92.8027,24.42436],[92.80116,24.42535],[92.80127,24.42965],[92.7967,24.43283],[92.7636,24.52112]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"16","area_level":"State","area_name":"Tripura","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[92.17093,24.53064],[92.16569,24.53141],[92.1657,24.5291],[92.16188,24.52749],[92.15979,24.52932],[92.15882,24.52746],[92.16019,24.52532],[92.1586,24.5232],[92.15496,24.52297],[92.15776,24.52188],[92.15543,24.51803],[92.1582,24.51517],[92.157,24.51249],[92.15612,24.51362],[92.15348,24.51202],[92.15911,24.50717],[92.15231,24.50227],[92.15389,24.49984],[92.15184,24.49944],[92.1505,24.49522],[92.15369,24.49164],[92.15129,24.49115],[92.15195,24.48722],[92.15359,24.48724],[92.1527,24.48147],[92.15724,24.47407],[92.15427,24.47209],[92.15542,24.46967],[92.1582,24.4696],[92.1582,24.46751],[92.15649,24.46858],[92.15561,24.46567],[92.15797,24.46629],[92.15841,24.46378],[92.16043,24.46298],[92.15808,24.45965],[92.16116,24.45873],[92.15955,24.45326],[92.16167,24.45264],[92.1624,24.45093],[92.16101,24.44872],[92.16444,24.44463],[92.16447,24.44077],[92.1626,24.4399],[92.16442,24.43884],[92.16389,24.43657],[92.16632,24.43678],[92.16745,24.43455],[92.166,24.43329],[92.16709,24.43138],[92.16601,24.42812],[92.16913,24.42777],[92.16751,24.42711],[92.16651,24.42168],[92.16396,24.41836],[92.15991,24.42122],[92.16041,24.42252],[92.15642,24.42263],[92.15369,24.42557],[92.14775,24.42104],[92.14545,24.42337],[92.14411,24.42208],[92.1368,24.42496],[92.13669,24.42006],[92.13335,24.41694],[92.13284,24.41434],[92.13262,24.411],[92.1345,24.41008],[92.13516,24.40716],[92.13159,24.40665],[92.12738,24.40165],[92.12846,24.40009],[92.12699,24.39979],[92.12643,24.3968],[92.12257,24.39594],[92.11891,24.39],[92.12078,24.3895],[92.1192,24.38859],[92.12197,24.38703],[92.12287,24.3851],[92.12176,24.38478],[92.12365,24.38468],[92.12135,24.38355],[92.1219,24.38224],[92.1206,24.3834],[92.12045,24.38135],[92.11795,24.38227],[92.11806,24.38054],[92.11333,24.38224],[92.11358,24.3807],[92.11037,24.37981],[92.10743,24.38201],[92.10426,24.38105],[92.10231,24.38295],[92.1001,24.38064],[92.10161,24.37893],[92.10016,24.37585],[92.09742,24.37631],[92.09623,24.37277],[92.09042,24.37162],[92.08626,24.37327],[92.08527,24.37559],[92.04943,24.37541],[92.0483,24.37757],[92.04403,24.37487],[92.0431,24.37749],[92.03846,24.37702],[92.03583,24.38011],[92.03355,24.37864],[92.02686,24.37964],[92.02479,24.3835],[92.02154,24.38332],[92.02362,24.38563],[92.02007,24.38654],[92.00711,24.3815],[92.00445,24.3836],[92.00556,24.38563],[92.00458,24.38751],[91.99644,24.39367],[91.99477,24.39214],[91.99623,24.3906],[91.99501,24.38808],[91.98962,24.39015],[91.99197,24.38917],[91.99209,24.38758],[91.98833,24.38402],[91.98833,24.37908],[91.98579,24.37689],[91.98355,24.37723],[91.98171,24.38101],[91.97199,24.38475],[91.96692,24.37977],[91.96767,24.37868],[91.97226,24.37953],[91.97273,24.37702],[91.96999,24.37474],[91.97384,24.37069],[91.97753,24.37273],[91.97897,24.36958],[91.97829,24.36673],[91.98465,24.36086],[91.9819,24.35902],[91.97964,24.36046],[91.97812,24.35739],[91.986,24.34989],[91.98929,24.34362],[91.99213,24.34337],[91.9931,24.33984],[91.9972,24.33681],[91.99832,24.33174],[91.99501,24.33143],[91.99595,24.32205],[91.99038,24.32393],[91.98558,24.32221],[91.98227,24.32388],[91.98061,24.32835],[91.97714,24.32742],[91.973,24.33389],[91.97105,24.34295],[91.96589,24.34683],[91.969,24.35015],[91.96433,24.35031],[91.9568,24.35663],[91.95016,24.35085],[91.9463,24.35067],[91.9461,24.34836],[91.94338,24.34891],[91.94133,24.34255],[91.93846,24.34323],[91.93491,24.33969],[91.93228,24.34124],[91.92402,24.33592],[91.92193,24.3356],[91.91999,24.33746],[91.94082,24.26809],[91.91139,24.16813],[91.91527,24.16657],[91.9114,24.16402],[91.91395,24.16228],[91.91255,24.1608],[91.91421,24.15941],[91.91305,24.1556],[91.91421,24.15516],[91.9128,24.15451],[91.91454,24.15361],[91.91139,24.15358],[91.91101,24.15212],[91.91306,24.15149],[91.9097,24.15061],[91.91129,24.14901],[91.91021,24.1463],[91.90584,24.14438],[91.90575,24.1386],[91.90214,24.13688],[91.89581,24.13924],[91.89039,24.1365],[91.88901,24.13885],[91.88463,24.1386],[91.88443,24.14256],[91.88207,24.14347],[91.88123,24.14581],[91.87865,24.1462],[91.87782,24.15021],[91.87908,24.15149],[91.87521,24.1551],[91.87731,24.15769],[91.87669,24.16146],[91.87463,24.16143],[91.87519,24.16267],[91.87379,24.16317],[91.87497,24.16631],[91.87338,24.16787],[91.87413,24.16956],[91.87634,24.16972],[91.87554,24.17123],[91.87351,24.17099],[91.87399,24.17447],[91.87151,24.17454],[91.86941,24.17718],[91.86617,24.17648],[91.86515,24.18004],[91.86117,24.1813],[91.86102,24.18286],[91.85917,24.18061],[91.857,24.18224],[91.85563,24.18144],[91.85577,24.18315],[91.85339,24.18335],[91.85512,24.18695],[91.85278,24.18979],[91.84544,24.19138],[91.84719,24.19311],[91.84483,24.19557],[91.84527,24.19736],[91.84399,24.19674],[91.84422,24.19972],[91.84196,24.20134],[91.84399,24.202],[91.84606,24.20059],[91.84916,24.20366],[91.84924,24.20838],[91.85213,24.20862],[91.84983,24.21275],[91.85518,24.21239],[91.85104,24.21666],[91.84864,24.216],[91.84765,24.21783],[91.84569,24.21747],[91.84952,24.2199],[91.84931,24.22118],[91.84307,24.22022],[91.84295,24.22287],[91.84611,24.22417],[91.84471,24.22577],[91.83701,24.22556],[91.83788,24.21875],[91.83123,24.21817],[91.82925,24.21315],[91.82645,24.21361],[91.82372,24.21001],[91.81636,24.20994],[91.8153,24.21203],[91.81254,24.21198],[91.81048,24.21757],[91.80592,24.2187],[91.80708,24.21892],[91.80623,24.22068],[91.80236,24.21934],[91.79879,24.22075],[91.79792,24.21952],[91.79432,24.21953],[91.79388,24.2209],[91.79146,24.21977],[91.74503,24.24697],[91.75937,24.14153],[91.75172,24.14261],[91.7463,24.14114],[91.7448,24.14305],[91.74361,24.14105],[91.74129,24.14281],[91.73952,24.14149],[91.7367,24.14586],[91.73428,24.14365],[91.73244,24.14572],[91.73107,24.14359],[91.72842,24.14324],[91.72675,24.14654],[91.72332,24.14835],[91.72176,24.15248],[91.71679,24.15199],[91.71441,24.15378],[91.7061,24.15428],[91.70641,24.15775],[91.70335,24.16354],[91.69742,24.16365],[91.69496,24.15953],[91.68828,24.16209],[91.68882,24.16417],[91.68444,24.16616],[91.68194,24.17219],[91.68257,24.17414],[91.68018,24.17561],[91.68142,24.17662],[91.68002,24.17663],[91.68117,24.17765],[91.67992,24.17902],[91.68085,24.18397],[91.67887,24.18753],[91.6806,24.18905],[91.67961,24.19347],[91.67731,24.19428],[91.67798,24.19675],[91.6757,24.19775],[91.6767,24.20061],[91.67394,24.2011],[91.67478,24.20205],[91.67276,24.20239],[91.6734,24.20368],[91.67163,24.20443],[91.66968,24.209],[91.66698,24.21052],[91.66789,24.21655],[91.66597,24.2171],[91.66725,24.2183],[91.66804,24.23102],[91.66516,24.23353],[91.66421,24.22909],[91.66279,24.23011],[91.65854,24.22823],[91.65236,24.21956],[91.65078,24.21839],[91.64977,24.22047],[91.64775,24.21849],[91.64892,24.21719],[91.64721,24.2152],[91.65241,24.20943],[91.65115,24.20882],[91.65265,24.20356],[91.65453,24.20252],[91.65311,24.20169],[91.65413,24.19845],[91.65276,24.19819],[91.65259,24.19593],[91.6591,24.19537],[91.65756,24.19318],[91.66013,24.18954],[91.65747,24.18474],[91.65896,24.18306],[91.65687,24.18054],[91.65775,24.17955],[91.65629,24.17615],[91.64676,24.17862],[91.64424,24.1706],[91.64661,24.15663],[91.63445,24.13806],[91.63852,24.1296],[91.6412,24.11308],[91.63955,24.1085],[91.63678,24.10654],[91.63793,24.10292],[91.63526,24.10105],[91.63422,24.1022],[91.63188,24.09985],[91.62925,24.10147],[91.62701,24.09883],[91.62579,24.09928],[91.62492,24.09657],[91.62268,24.0972],[91.62148,24.09521],[91.61982,24.09668],[91.61706,24.09429],[91.61579,24.09544],[91.61141,24.09169],[91.6038,24.09408],[91.60474,24.09579],[91.6029,24.09534],[91.60262,24.09662],[91.60038,24.09529],[91.59925,24.09712],[91.59738,24.09586],[91.59454,24.09653],[91.59538,24.09329],[91.59129,24.09261],[91.59306,24.0892],[91.59845,24.08664],[91.5985,24.08448],[91.59391,24.08265],[91.59189,24.0783],[91.59241,24.0756],[91.58741,24.07488],[91.58607,24.0726],[91.58234,24.07339],[91.57445,24.07998],[91.57297,24.07908],[91.5729,24.07473],[91.55733,24.07683],[91.5453,24.0742],[91.54425,24.07594],[91.50865,24.08641],[91.49766,24.08728],[91.49248,24.09088],[91.49497,24.09555],[91.49177,24.0971],[91.48735,24.09525],[91.48286,24.0978],[91.4781,24.09803],[91.47581,24.10048],[91.4735,24.09978],[91.47316,24.10175],[91.4713,24.09878],[91.46547,24.09863],[91.46254,24.09607],[91.45842,24.09757],[91.45483,24.09656],[91.45427,24.09866],[91.45206,24.09829],[91.44959,24.10147],[91.44304,24.09724],[91.44055,24.10251],[91.43077,24.09993],[91.42999,24.10199],[91.42858,24.10179],[91.42941,24.10425],[91.42809,24.10845],[91.42563,24.10688],[91.41263,24.10993],[91.40378,24.10907],[91.40136,24.10967],[91.40152,24.1115],[91.38721,24.10721],[91.37461,24.10777],[91.37713,24.07984],[91.3966,24.04962],[91.39645,24.04233],[91.39086,24.02578],[91.37334,24.00265],[91.37497,24.00218],[91.37379,23.99757],[91.37544,23.99773],[91.37502,23.99592],[91.37658,23.99662],[91.37623,23.99513],[91.37425,23.99496],[91.37666,23.99265],[91.37831,23.99299],[91.37903,23.99104],[91.37677,23.99059],[91.37851,23.98857],[91.37658,23.9883],[91.3762,23.98671],[91.378,23.98542],[91.37737,23.98266],[91.38015,23.98247],[91.37775,23.98012],[91.37966,23.97901],[91.37953,23.97533],[91.37363,23.97523],[91.36277,23.98315],[91.36166,23.98626],[91.3528,23.98169],[91.34754,23.98421],[91.34122,23.98199],[91.33741,23.98441],[91.33381,23.99063],[91.33006,23.99247],[91.3269,23.99154],[91.3236,23.99448],[91.31493,23.99041],[91.3052,23.99525],[91.30401,23.99801],[91.30146,23.99374],[91.30357,23.98783],[91.29732,23.9763],[91.29979,23.97212],[91.29042,23.96776],[91.28768,23.96801],[91.28775,23.9739],[91.28468,23.97727],[91.28625,23.98193],[91.28469,23.9821],[91.27152,23.9629],[91.26423,23.94422],[91.27291,23.93764],[91.27621,23.92253],[91.27172,23.92465],[91.26395,23.92498],[91.26177,23.92356],[91.25171,23.92607],[91.23302,23.92696],[91.24144,23.92269],[91.24618,23.91308],[91.24483,23.90694],[91.22847,23.89863],[91.22962,23.88059],[91.23183,23.87811],[91.23579,23.87753],[91.24087,23.8617],[91.24889,23.85081],[91.25409,23.83719],[91.24287,23.82296],[91.23757,23.8136],[91.23376,23.81083],[91.23161,23.79818],[91.22664,23.79156],[91.22852,23.78879],[91.22837,23.78557],[91.23053,23.7844],[91.23068,23.76492],[91.22522,23.75653],[91.22636,23.75114],[91.22247,23.74569],[91.21903,23.73643],[91.21776,23.73987],[91.21196,23.74461],[91.21037,23.74916],[91.19663,23.75109],[91.18621,23.75067],[91.183,23.74883],[91.16764,23.74964],[91.15884,23.74165],[91.15708,23.74202],[91.15643,23.73978],[91.15808,23.73926],[91.1492,23.71153],[91.15161,23.70545],[91.15424,23.68839],[91.19382,23.6899],[91.19552,23.69214],[91.20367,23.6854],[91.20853,23.6864],[91.20328,23.68011],[91.20499,23.67975],[91.20238,23.66289],[91.20368,23.65827],[91.20148,23.65597],[91.20501,23.65499],[91.20513,23.65389],[91.2025,23.65391],[91.20459,23.6504],[91.19969,23.64969],[91.19942,23.64658],[91.19073,23.64695],[91.19295,23.65443],[91.18506,23.65664],[91.18286,23.65966],[91.18194,23.65638],[91.17777,23.65854],[91.17651,23.65764],[91.17604,23.65959],[91.17383,23.65635],[91.17039,23.65754],[91.16646,23.66348],[91.16125,23.66385],[91.16152,23.66707],[91.1563,23.67072],[91.16137,23.65431],[91.1587,23.64136],[91.16101,23.63123],[91.15871,23.62893],[91.15814,23.62178],[91.16103,23.61393],[91.15968,23.61129],[91.16375,23.60104],[91.16217,23.59868],[91.1625,23.59504],[91.16875,23.59259],[91.17713,23.5932],[91.17809,23.59175],[91.17527,23.58551],[91.1873,23.57753],[91.18727,23.57314],[91.19515,23.56248],[91.19445,23.54718],[91.19903,23.54733],[91.20199,23.55006],[91.20534,23.54526],[91.20747,23.54536],[91.21047,23.54654],[91.20976,23.54852],[91.21295,23.55041],[91.21301,23.54511],[91.20816,23.54304],[91.20076,23.52002],[91.20784,23.51205],[91.2236,23.51402],[91.21798,23.4995],[91.22346,23.49731],[91.23557,23.50179],[91.23444,23.49614],[91.23723,23.49512],[91.23638,23.48899],[91.24934,23.49017],[91.25224,23.48101],[91.25082,23.46433],[91.25341,23.4614],[91.2535,23.45801],[91.25155,23.45364],[91.25578,23.44736],[91.25646,23.44155],[91.27065,23.4298],[91.26343,23.42372],[91.27644,23.4147],[91.27975,23.3766],[91.28515,23.37701],[91.28854,23.37538],[91.29214,23.37811],[91.29433,23.37468],[91.29375,23.37125],[91.28424,23.37108],[91.28616,23.36309],[91.2949,23.36119],[91.29107,23.35066],[91.30108,23.35159],[91.3149,23.36093],[91.32009,23.36009],[91.31801,23.35297],[91.31261,23.35391],[91.31105,23.35266],[91.31079,23.34238],[91.30512,23.34339],[91.29617,23.34089],[91.28985,23.31852],[91.29624,23.3134],[91.30953,23.31385],[91.31316,23.3063],[91.31496,23.29661],[91.30721,23.29978],[91.30022,23.29245],[91.30234,23.28634],[91.31667,23.28188],[91.31578,23.27943],[91.30979,23.27637],[91.31802,23.25289],[91.32661,23.25229],[91.3255,23.24714],[91.3187,23.24549],[91.31893,23.23985],[91.32365,23.23745],[91.32473,23.16863],[91.32333,23.15801],[91.33312,23.15285],[91.33709,23.13105],[91.34173,23.12874],[91.34187,23.1178],[91.34763,23.11879],[91.34696,23.1023],[91.36979,23.07037],[91.39585,23.05604],[91.39876,23.05651],[91.39924,23.05841],[91.40631,23.05898],[91.41163,23.06231],[91.416,23.06265],[91.41724,23.06497],[91.41087,23.06624],[91.4132,23.06949],[91.41356,23.07587],[91.41617,23.07665],[91.41747,23.08288],[91.40812,23.08346],[91.40523,23.08698],[91.40607,23.09692],[91.40026,23.09642],[91.40342,23.11372],[91.39697,23.11768],[91.3973,23.13014],[91.39203,23.13944],[91.38928,23.15263],[91.38477,23.15615],[91.3852,23.17521],[91.38188,23.17501],[91.38299,23.18448],[91.3799,23.18451],[91.38098,23.19159],[91.38554,23.19184],[91.38776,23.20789],[91.38077,23.20843],[91.38832,23.21467],[91.39213,23.22003],[91.38647,23.22756],[91.40091,23.22911],[91.40025,23.23508],[91.39841,23.23589],[91.39711,23.24115],[91.39255,23.24589],[91.40874,23.24762],[91.40067,23.2561],[91.3973,23.25625],[91.39756,23.26512],[91.40039,23.26571],[91.40559,23.25659],[91.41132,23.25566],[91.40894,23.28519],[91.41374,23.28136],[91.41563,23.28275],[91.41559,23.27927],[91.41775,23.27722],[91.41657,23.27561],[91.41781,23.2762],[91.41964,23.27326],[91.41816,23.26959],[91.41592,23.26948],[91.41742,23.26448],[91.41538,23.26334],[91.41869,23.25831],[91.41831,23.25539],[91.42116,23.26177],[91.42475,23.25964],[91.42489,23.25802],[91.43139,23.26245],[91.44867,23.25985],[91.45421,23.26037],[91.45541,23.25643],[91.44943,23.25196],[91.44873,23.24976],[91.44598,23.25003],[91.44524,23.24707],[91.44717,23.24747],[91.44706,23.24377],[91.45791,23.24599],[91.47027,23.22763],[91.45329,23.22317],[91.45061,23.21941],[91.45825,23.21564],[91.45862,23.21328],[91.47541,23.22036],[91.48443,23.20918],[91.48257,23.19907],[91.47076,23.19642],[91.48493,23.18821],[91.48845,23.19213],[91.4922,23.18881],[91.50323,23.19208],[91.50428,23.18929],[91.5011,23.18527],[91.50754,23.18368],[91.50673,23.17992],[91.49739,23.17978],[91.49174,23.17756],[91.49236,23.17194],[91.49826,23.17165],[91.4948,23.16195],[91.49088,23.1576],[91.49428,23.15221],[91.50722,23.15424],[91.49474,23.14708],[91.49897,23.14378],[91.49873,23.14247],[91.50164,23.14305],[91.50455,23.14031],[91.50819,23.13965],[91.51002,23.14037],[91.50981,23.14319],[91.51532,23.14499],[91.51487,23.13856],[91.50315,23.13049],[91.50381,23.12723],[91.51764,23.12542],[91.51426,23.12255],[91.51542,23.11763],[91.51924,23.11774],[91.52042,23.11443],[91.5123,23.11322],[91.51132,23.10419],[91.52236,23.104],[91.51895,23.09415],[91.52983,23.09166],[91.52998,23.08573],[91.52513,23.08281],[91.53534,23.06331],[91.52584,23.05997],[91.52496,23.05535],[91.53628,23.05451],[91.53049,23.03831],[91.55036,23.03841],[91.53842,23.01919],[91.54822,23.01924],[91.54249,22.99946],[91.54752,22.99418],[91.55704,22.9966],[91.55722,22.97846],[91.57506,22.96864],[91.57676,22.96522],[91.59063,22.97689],[91.59306,22.97263],[91.59923,22.97594],[91.60141,22.9713],[91.6061,22.97191],[91.60563,22.96531],[91.61188,22.96235],[91.6138,22.95837],[91.61233,22.95773],[91.60554,22.96236],[91.60189,22.95891],[91.60017,22.9547],[91.60244,22.95322],[91.60844,22.95721],[91.6096,22.95611],[91.60711,22.95004],[91.61348,22.95238],[91.61584,22.95147],[91.61646,22.94912],[91.61299,22.94957],[91.61272,22.94699],[91.61695,22.94401],[91.61795,22.93853],[91.6203,22.93854],[91.62554,22.94402],[91.62349,22.94939],[91.62701,22.95566],[91.62456,22.96157],[91.62631,22.96219],[91.63095,22.95896],[91.63562,22.96108],[91.6405,22.97033],[91.64081,22.97489],[91.6457,22.97655],[91.64546,22.98502],[91.65003,22.98249],[91.65154,22.97672],[91.65808,22.97811],[91.65632,22.98064],[91.6577,22.98173],[91.66192,22.97916],[91.6646,22.98165],[91.67086,22.97705],[91.67805,22.98077],[91.68177,22.97725],[91.69099,22.98326],[91.69369,22.98829],[91.70326,22.98825],[91.70884,22.98186],[91.71164,22.98358],[91.7121,22.98892],[91.717,22.98665],[91.72062,22.98742],[91.72606,22.99889],[91.74391,23.00643],[91.74536,23.01103],[91.75336,23.02208],[91.76148,23.0262],[91.76109,23.02986],[91.76819,23.03423],[91.77192,23.03303],[91.76773,23.0394],[91.76854,23.04093],[91.77147,23.04129],[91.77441,23.03848],[91.77283,23.03169],[91.77431,23.02708],[91.78061,23.02909],[91.77893,23.03648],[91.7817,23.03391],[91.78413,23.03793],[91.78198,23.04481],[91.78247,23.04842],[91.77729,23.05603],[91.77943,23.05992],[91.77359,23.06631],[91.77452,23.06962],[91.78478,23.07149],[91.78603,23.06822],[91.78896,23.0672],[91.7881,23.07009],[91.78954,23.07167],[91.78982,23.06873],[91.79371,23.06902],[91.79581,23.0673],[91.79356,23.06482],[91.79409,23.06228],[91.79924,23.06494],[91.80603,23.06303],[91.80598,23.06697],[91.81235,23.06625],[91.81156,23.06951],[91.81386,23.07058],[91.81319,23.07352],[91.81605,23.07185],[91.81839,23.07274],[91.81593,23.07467],[91.81788,23.07575],[91.81729,23.07894],[91.81475,23.08058],[91.81828,23.08299],[91.81981,23.07981],[91.82437,23.08343],[91.82278,23.08659],[91.82793,23.08868],[91.82975,23.09166],[91.83139,23.08979],[91.83348,23.09099],[91.83309,23.09257],[91.8358,23.09299],[91.83372,23.09549],[91.8321,23.09474],[91.83119,23.09674],[91.82505,23.09892],[91.82093,23.09972],[91.82068,23.09737],[91.81346,23.0992],[91.81761,23.10201],[91.8178,23.10845],[91.81631,23.10997],[91.81809,23.11204],[91.81562,23.11904],[91.81294,23.11913],[91.81089,23.12165],[91.81262,23.12265],[91.81153,23.12506],[91.81389,23.12881],[91.81233,23.1307],[91.81481,23.13145],[91.81477,23.13332],[91.81161,23.13418],[91.81116,23.13691],[91.81044,23.13369],[91.8081,23.1355],[91.80924,23.13643],[91.80816,23.13904],[91.81108,23.14462],[91.81308,23.14371],[91.81424,23.1451],[91.81013,23.15019],[91.81061,23.15349],[91.80608,23.15733],[91.80695,23.16241],[91.81009,23.16507],[91.80487,23.16805],[91.80575,23.17216],[91.80699,23.17184],[91.80511,23.17412],[91.80672,23.17528],[91.8042,23.17447],[91.80318,23.17668],[91.80627,23.17905],[91.80528,23.18051],[91.79462,23.18669],[91.79825,23.18939],[91.79786,23.19568],[91.79596,23.19557],[91.79472,23.19724],[91.79605,23.19772],[91.79282,23.19903],[91.78887,23.20444],[91.78857,23.20776],[91.79167,23.20762],[91.79262,23.20925],[91.79118,23.20939],[91.79163,23.21235],[91.7879,23.21511],[91.7884,23.21675],[91.79192,23.21814],[91.79022,23.22125],[91.79123,23.22558],[91.78984,23.22509],[91.79108,23.22679],[91.78775,23.22755],[91.78835,23.22875],[91.78419,23.23254],[91.78422,23.23883],[91.7854,23.23899],[91.78362,23.24327],[91.7806,23.24332],[91.78134,23.24148],[91.77972,23.23929],[91.77619,23.24317],[91.78046,23.24697],[91.77851,23.25174],[91.77981,23.25371],[91.77818,23.25643],[91.77702,23.25501],[91.77497,23.25669],[91.77691,23.25731],[91.77756,23.25993],[91.77538,23.26195],[91.7768,23.26341],[91.77709,23.26923],[91.77196,23.27006],[91.76901,23.27319],[91.76669,23.27145],[91.76497,23.27261],[91.76593,23.27358],[91.76345,23.2744],[91.76335,23.27716],[91.76136,23.27705],[91.76277,23.28083],[91.75983,23.28349],[91.76218,23.2849],[91.76061,23.28668],[91.76202,23.28965],[91.7606,23.29127],[91.76286,23.29222],[91.76353,23.29457],[91.76241,23.30294],[91.76521,23.30499],[91.76435,23.30926],[91.76657,23.30917],[91.76999,23.31236],[91.77144,23.31155],[91.77338,23.31587],[91.77933,23.31746],[91.78328,23.32443],[91.79125,23.32608],[91.79341,23.3298],[91.79967,23.33291],[91.80458,23.33227],[91.80825,23.33704],[91.80679,23.33979],[91.80967,23.342],[91.80943,23.34395],[91.81315,23.34584],[91.81533,23.34382],[91.81807,23.34643],[91.81733,23.34756],[91.81927,23.35108],[91.82514,23.35234],[91.8256,23.36311],[91.82846,23.36604],[91.83045,23.36403],[91.83161,23.36506],[91.83242,23.36972],[91.83757,23.37062],[91.83619,23.38644],[91.84186,23.38839],[91.8407,23.39887],[91.8454,23.40056],[91.84499,23.40469],[91.8496,23.40543],[91.85107,23.40406],[91.85474,23.40667],[91.86064,23.40517],[91.86729,23.41249],[91.87376,23.41404],[91.87377,23.4188],[91.87654,23.42232],[91.88701,23.42692],[91.88883,23.42942],[91.88742,23.43289],[91.89113,23.43359],[91.89581,23.4318],[91.8957,23.43333],[91.89902,23.4356],[91.89971,23.4406],[91.90936,23.43655],[91.91346,23.43671],[91.91902,23.4395],[91.92181,23.43798],[91.924,23.43366],[91.93132,23.43445],[91.933,23.43598],[91.93486,23.43522],[91.93429,23.43347],[91.93743,23.43234],[91.94058,23.43533],[91.94261,23.43498],[91.94258,23.44049],[91.94018,23.44733],[91.94089,23.45052],[91.93792,23.45919],[91.93909,23.46161],[91.93666,23.4666],[91.94109,23.46586],[91.945,23.46771],[91.94692,23.46593],[91.9477,23.46956],[91.95544,23.47567],[91.95871,23.47288],[91.95833,23.47941],[91.96218,23.47777],[91.9655,23.47849],[91.96913,23.47638],[91.97039,23.47828],[91.96864,23.48741],[91.97086,23.49197],[91.97283,23.49238],[91.97252,23.49471],[91.97104,23.49414],[91.96853,23.49901],[91.97105,23.50302],[91.96825,23.51018],[91.96467,23.51266],[91.96625,23.51512],[91.96314,23.51632],[91.96434,23.51916],[91.96008,23.51845],[91.95628,23.52571],[91.95903,23.53253],[91.96357,23.53319],[91.96461,23.53525],[91.9568,23.55127],[91.95887,23.55368],[91.95662,23.56028],[91.95947,23.56405],[91.95729,23.56753],[91.95869,23.57146],[91.95543,23.5755],[91.95671,23.58197],[91.95425,23.58677],[91.95557,23.59],[91.95193,23.60044],[91.95353,23.60246],[91.95429,23.60956],[91.95243,23.61132],[91.95195,23.61681],[91.94651,23.62282],[91.94721,23.62837],[91.9451,23.62854],[91.94236,23.6338],[91.94674,23.6375],[91.94492,23.64333],[91.94665,23.64598],[91.94394,23.65183],[91.93995,23.65516],[91.94109,23.6564],[91.9392,23.65947],[91.94113,23.662],[91.9408,23.66806],[91.94212,23.66936],[91.93871,23.67321],[91.93973,23.67521],[91.9371,23.68133],[91.93402,23.68456],[91.93668,23.68796],[91.94076,23.68853],[91.94134,23.6936],[91.94579,23.69422],[91.94756,23.69304],[91.95072,23.69458],[91.95308,23.69278],[91.95789,23.69441],[91.95721,23.69762],[91.95066,23.69958],[91.9523,23.70483],[91.94944,23.70651],[91.95001,23.71086],[91.94828,23.71414],[91.95468,23.72102],[91.95119,23.72114],[91.95067,23.72623],[91.95429,23.72626],[91.95533,23.72863],[91.95428,23.73073],[91.95695,23.73162],[91.95702,23.73399],[91.9598,23.73478],[91.96647,23.73352],[91.96733,23.72944],[91.97827,23.73308],[91.98068,23.72338],[91.98529,23.72293],[91.98517,23.71628],[91.98885,23.70497],[91.98874,23.70099],[91.99326,23.69452],[91.99366,23.68781],[91.99504,23.68725],[91.99683,23.67966],[91.99913,23.67759],[92.00041,23.6707],[92.00617,23.67112],[92.00846,23.6637],[92.01323,23.66343],[92.01505,23.65997],[92.01973,23.66274],[92.0238,23.66273],[92.0223,23.65808],[92.03063,23.65787],[92.03129,23.65585],[92.03895,23.65164],[92.04196,23.64792],[92.04341,23.64856],[92.04654,23.64659],[92.04986,23.64936],[92.05772,23.64847],[92.06334,23.64502],[92.06905,23.64815],[92.07282,23.64652],[92.07659,23.64879],[92.07918,23.64845],[92.0777,23.65435],[92.07926,23.65577],[92.08001,23.66227],[92.07631,23.66804],[92.0783,23.67103],[92.08068,23.67138],[92.08303,23.68005],[92.08746,23.68056],[92.09176,23.67692],[92.09326,23.67835],[92.09969,23.67671],[92.10416,23.68083],[92.10507,23.68433],[92.10399,23.68599],[92.10617,23.68866],[92.11156,23.69007],[92.11417,23.69425],[92.11625,23.69122],[92.11816,23.69106],[92.12084,23.69273],[92.12139,23.69506],[92.12386,23.6955],[92.12298,23.69948],[92.12476,23.70068],[92.12533,23.70653],[92.12897,23.70781],[92.13401,23.71575],[92.13934,23.72018],[92.13855,23.72106],[92.14228,23.7253],[92.14449,23.7334],[92.14872,23.73563],[92.15168,23.73398],[92.15493,23.73436],[92.15612,23.73673],[92.16241,23.73962],[92.16973,23.73968],[92.17291,23.73574],[92.17079,23.73285],[92.17154,23.7266],[92.1696,23.72319],[92.17311,23.71773],[92.17655,23.71641],[92.17771,23.70756],[92.18472,23.70809],[92.18609,23.71098],[92.19354,23.70677],[92.20284,23.70581],[92.20411,23.7019],[92.20703,23.70062],[92.20983,23.69145],[92.21142,23.69054],[92.21092,23.68857],[92.21366,23.68495],[92.21218,23.68084],[92.2073,23.67761],[92.20632,23.67519],[92.20607,23.6695],[92.20749,23.6671],[92.2066,23.661],[92.21086,23.65884],[92.21034,23.65367],[92.21145,23.65277],[92.22262,23.65283],[92.22566,23.6552],[92.22953,23.66612],[92.2331,23.66755],[92.23065,23.67528],[92.23334,23.68123],[92.23203,23.68475],[92.23482,23.68663],[92.23639,23.69286],[92.24038,23.69291],[92.24208,23.69493],[92.24241,23.69916],[92.2396,23.70262],[92.23951,23.70819],[92.23635,23.71209],[92.23917,23.71843],[92.241,23.72071],[92.24915,23.72437],[92.25826,23.72524],[92.26164,23.72344],[92.26548,23.72477],[92.2667,23.73238],[92.26553,23.74323],[92.26718,23.75164],[92.26551,23.76137],[92.26731,23.7686],[92.26487,23.77316],[92.26001,23.79347],[92.2571,23.81277],[92.26628,23.81591],[92.28129,23.81413],[92.28251,23.81539],[92.27807,23.82663],[92.2687,23.84166],[92.26918,23.84691],[92.27927,23.85634],[92.28334,23.86508],[92.2876,23.86848],[92.29048,23.86757],[92.29934,23.85969],[92.30854,23.85679],[92.3117,23.86022],[92.31503,23.8605],[92.31673,23.86435],[92.31421,23.86828],[92.31097,23.86975],[92.31063,23.87334],[92.31318,23.87747],[92.31118,23.88011],[92.31286,23.88481],[92.31665,23.88907],[92.31688,23.8996],[92.31811,23.89841],[92.32397,23.90487],[92.32198,23.91007],[92.32519,23.91409],[92.31927,23.91569],[92.3163,23.92806],[92.30899,23.93122],[92.31068,23.93483],[92.30927,23.94414],[92.31092,23.94821],[92.31053,23.95234],[92.30829,23.95423],[92.3092,23.95739],[92.30797,23.96056],[92.31,23.96302],[92.3086,23.96808],[92.31031,23.96952],[92.31039,23.97227],[92.31445,23.97284],[92.31735,23.97511],[92.31731,23.97878],[92.32014,23.97902],[92.32194,23.9832],[92.32141,23.98756],[92.32358,23.98854],[92.32216,23.99392],[92.3262,23.99778],[92.32284,24.00273],[92.32436,24.00465],[92.3189,24.00821],[92.32018,24.01226],[92.31919,24.01517],[92.31395,24.02122],[92.31542,24.02337],[92.31877,24.02188],[92.31982,24.02444],[92.31478,24.02595],[92.31695,24.03006],[92.31211,24.03241],[92.31574,24.03487],[92.31571,24.03768],[92.31201,24.03851],[92.31643,24.04561],[92.31215,24.05212],[92.31273,24.05488],[92.31531,24.05315],[92.31761,24.05497],[92.3163,24.0595],[92.31986,24.06374],[92.3168,24.06653],[92.31656,24.07004],[92.31939,24.07012],[92.32129,24.07269],[92.31925,24.07819],[92.32416,24.07926],[92.32219,24.08154],[92.32482,24.08817],[92.32492,24.09759],[92.32767,24.10149],[92.3269,24.10444],[92.32262,24.10439],[92.32791,24.11194],[92.32502,24.1127],[92.3243,24.11507],[92.32711,24.117],[92.32474,24.11968],[92.32586,24.13249],[92.32456,24.13943],[92.3307,24.13969],[92.32874,24.14312],[92.33173,24.15179],[92.32873,24.15507],[92.32863,24.16625],[92.32442,24.16818],[92.32387,24.17123],[92.32591,24.17355],[92.32653,24.17772],[92.33206,24.17956],[92.32629,24.18168],[92.32545,24.18552],[92.32243,24.18872],[92.32636,24.19136],[92.32177,24.19418],[92.32608,24.19707],[92.31912,24.19786],[92.32154,24.20373],[92.3147,24.20639],[92.31419,24.20961],[92.31627,24.2118],[92.31086,24.21784],[92.31041,24.22127],[92.30428,24.22351],[92.29735,24.23149],[92.29253,24.25012],[92.28959,24.25235],[92.21287,24.24993],[92.26573,24.36602],[92.26814,24.36788],[92.26806,24.37811],[92.27289,24.37897],[92.26864,24.38406],[92.27409,24.38832],[92.27202,24.39236],[92.26911,24.39254],[92.27081,24.39628],[92.26933,24.39847],[92.26414,24.39895],[92.26172,24.40869],[92.26349,24.40947],[92.26328,24.41119],[92.25448,24.42053],[92.25654,24.42484],[92.25689,24.43202],[92.25936,24.43403],[92.2594,24.43921],[92.25347,24.44031],[92.25313,24.44232],[92.24649,24.4452],[92.24437,24.44437],[92.23889,24.4475],[92.23487,24.45261],[92.23637,24.45819],[92.23018,24.46151],[92.2306,24.47143],[92.23147,24.47352],[92.23475,24.47457],[92.23133,24.48004],[92.23348,24.48419],[92.23665,24.48459],[92.2349,24.48692],[92.23658,24.48871],[92.2312,24.49521],[92.23044,24.50171],[92.20895,24.50412],[92.20764,24.50613],[92.20176,24.50735],[92.19982,24.51124],[92.19599,24.51165],[92.19265,24.51819],[92.18826,24.51883],[92.18802,24.52105],[92.18612,24.5208],[92.18497,24.52322],[92.17619,24.52334],[92.17631,24.52632],[92.1736,24.52718],[92.17093,24.53064]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"17","area_level":"State","area_name":"Meghalaya","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[91.83382,26.11576],[91.83085,26.11844],[91.8254,26.11941],[91.8213,26.11751],[91.82023,26.11255],[91.81702,26.11115],[91.81014,26.10329],[91.80904,26.09779],[91.80562,26.09912],[91.80292,26.09526],[91.80035,26.10004],[91.79136,26.08523],[91.78586,26.08401],[91.78332,26.08809],[91.77728,26.08935],[91.763,26.07461],[91.76273,26.07235],[91.75707,26.07036],[91.75554,26.06793],[91.74315,26.0653],[91.74291,26.06303],[91.73106,26.05893],[91.73072,26.05758],[91.73349,26.05623],[91.7369,26.05625],[91.73471,26.05363],[91.73519,26.05132],[91.73298,26.05088],[91.7337,26.0492],[91.72535,26.04618],[91.72303,26.03513],[91.72504,26.0202],[91.72156,26.01219],[91.72172,26.0015],[91.71962,25.9929],[91.72153,25.98833],[91.72007,25.98177],[91.72111,25.96855],[91.71978,25.96583],[91.72252,25.96572],[91.72024,25.96085],[91.72011,25.9536],[91.71333,25.94573],[91.71348,25.94405],[91.7024,25.94127],[91.70113,25.93563],[91.69893,25.93501],[91.68943,25.92462],[91.68808,25.92021],[91.67884,25.91625],[91.6706,25.90415],[91.66342,25.90776],[91.65149,25.90628],[91.6365,25.92133],[91.63221,25.92179],[91.63056,25.92483],[91.62525,25.92608],[91.62432,25.92957],[91.62139,25.93222],[91.60947,25.93739],[91.61188,25.94503],[91.62289,25.94479],[91.62616,25.94219],[91.62982,25.94325],[91.6294,25.94715],[91.63436,25.96051],[91.64071,25.96376],[91.62825,25.97615],[91.62853,25.98244],[91.62606,25.98668],[91.62624,25.98887],[91.63023,25.99013],[91.62816,26.00074],[91.63135,26.0075],[91.63324,26.00849],[91.63275,26.01114],[91.6349,26.01214],[91.6316,26.01472],[91.63267,26.01655],[91.63118,26.01775],[91.6324,26.01902],[91.6311,26.02197],[91.62635,26.02213],[91.61953,26.02596],[91.60023,26.02161],[91.59753,26.01807],[91.59389,26.01978],[91.59407,26.02168],[91.58872,26.02956],[91.57984,26.03325],[91.57073,26.02568],[91.56919,26.01844],[91.57217,26.01536],[91.56363,26.00749],[91.56507,26.00201],[91.5606,26.00092],[91.55745,25.99274],[91.5517,25.98503],[91.55125,25.9766],[91.54673,25.97511],[91.5447,25.97591],[91.54272,25.97317],[91.53836,25.97141],[91.5354,25.96673],[91.53562,25.9623],[91.53036,25.96307],[91.52865,25.96064],[91.5253,25.96163],[91.52217,25.95947],[91.51808,25.95973],[91.51658,25.95571],[91.51982,25.93988],[91.51515,25.94123],[91.51381,25.93289],[91.50796,25.93228],[91.50675,25.92842],[91.50325,25.92683],[91.50177,25.92429],[91.50124,25.91886],[91.50447,25.91672],[91.50318,25.91415],[91.50467,25.91139],[91.50955,25.91721],[91.51299,25.91678],[91.51791,25.91966],[91.52276,25.92531],[91.53255,25.92989],[91.53658,25.93577],[91.53695,25.93121],[91.53302,25.92657],[91.52097,25.91906],[91.52057,25.91681],[91.50488,25.90777],[91.50421,25.90288],[91.49874,25.89599],[91.5039,25.89117],[91.49943,25.89119],[91.49191,25.89585],[91.484,25.89304],[91.47837,25.88747],[91.47784,25.88048],[91.47481,25.87402],[91.47604,25.87252],[91.47538,25.86988],[91.4912,25.86594],[91.51142,25.86534],[91.51383,25.86622],[91.52131,25.87511],[91.52129,25.88346],[91.52555,25.89091],[91.52772,25.89085],[91.53299,25.88815],[91.53519,25.88388],[91.53043,25.88163],[91.53043,25.87125],[91.52795,25.87316],[91.52236,25.87285],[91.51372,25.86397],[91.50342,25.86425],[91.49737,25.86109],[91.49577,25.86382],[91.48366,25.86417],[91.4779,25.85727],[91.46947,25.85916],[91.46308,25.857],[91.46178,25.85434],[91.44861,25.845],[91.44838,25.84189],[91.44515,25.83974],[91.43583,25.84356],[91.42817,25.85264],[91.42247,25.85447],[91.41346,25.85356],[91.40617,25.85006],[91.40273,25.8514],[91.39314,25.84759],[91.38114,25.84563],[91.3729,25.84672],[91.37105,25.84262],[91.36583,25.84003],[91.35774,25.84149],[91.35216,25.83856],[91.34672,25.84003],[91.34404,25.83712],[91.33535,25.84054],[91.33326,25.83675],[91.33432,25.83307],[91.32232,25.82153],[91.32075,25.81572],[91.31472,25.80959],[91.30971,25.79888],[91.30259,25.7899],[91.30185,25.78648],[91.29556,25.78018],[91.29456,25.77592],[91.29004,25.77264],[91.28863,25.7655],[91.27898,25.75736],[91.27454,25.75045],[91.26453,25.74585],[91.24552,25.7333],[91.22245,25.72256],[91.21012,25.72549],[91.19048,25.74783],[91.18894,25.75045],[91.18929,25.76395],[91.18416,25.76643],[91.18513,25.77199],[91.17826,25.77735],[91.1784,25.78016],[91.18207,25.7836],[91.18419,25.79889],[91.19044,25.81143],[91.18631,25.81836],[91.18937,25.82374],[91.19446,25.82728],[91.19468,25.83486],[91.19729,25.83524],[91.20364,25.84321],[91.19756,25.84954],[91.19583,25.86139],[91.1892,25.85171],[91.18399,25.8504],[91.18023,25.84397],[91.17362,25.8444],[91.1599,25.84995],[91.14755,25.85049],[91.13611,25.84263],[91.12946,25.84261],[91.12036,25.83293],[91.07714,25.82894],[91.06697,25.82573],[91.06213,25.82078],[91.04888,25.82927],[91.05297,25.83181],[91.05773,25.83177],[91.05937,25.83666],[91.06641,25.83886],[91.06773,25.83681],[91.07186,25.83876],[91.07324,25.84046],[91.07298,25.84589],[91.0785,25.85274],[91.06721,25.84663],[91.04822,25.8492],[91.03923,25.83689],[91.0325,25.835],[91.03208,25.83285],[91.02863,25.83116],[91.02245,25.82377],[91.00601,25.82038],[91.0014,25.8251],[91.00693,25.83249],[91.00798,25.83796],[91.01024,25.83733],[91.01221,25.84178],[91.01148,25.84591],[91.01531,25.8484],[91.01402,25.85687],[91.02791,25.86933],[91.03055,25.8858],[91.02522,25.88878],[91.01791,25.88456],[91.0106,25.88417],[91.00103,25.88582],[91.00066,25.88794],[90.97605,25.88967],[90.96886,25.88522],[90.96598,25.88844],[90.969,25.90375],[90.96662,25.91406],[90.95704,25.93496],[90.94614,25.94101],[90.94547,25.94487],[90.94743,25.94809],[90.93999,25.9473],[90.93386,25.93977],[90.92392,25.94287],[90.92194,25.94134],[90.91949,25.94445],[90.91734,25.94441],[90.91481,25.93589],[90.91557,25.93075],[90.91424,25.92571],[90.91543,25.9204],[90.91951,25.91522],[90.91684,25.91406],[90.90617,25.92502],[90.90529,25.9289],[90.89442,25.93118],[90.89745,25.93748],[90.89003,25.93807],[90.88966,25.94318],[90.88581,25.94492],[90.88453,25.95031],[90.88049,25.95049],[90.88108,25.94283],[90.87669,25.94942],[90.87169,25.94763],[90.87483,25.94255],[90.84847,25.94438],[90.84436,25.94597],[90.84234,25.94212],[90.83904,25.94131],[90.83547,25.93661],[90.83619,25.94842],[90.83291,25.94586],[90.8259,25.94869],[90.82441,25.9454],[90.81927,25.95032],[90.8162,25.94893],[90.80905,25.95244],[90.80788,25.95097],[90.80915,25.94741],[90.79638,25.94052],[90.78449,25.92513],[90.78532,25.92429],[90.78338,25.92177],[90.78117,25.91127],[90.77805,25.9112],[90.7781,25.90861],[90.76638,25.90764],[90.75668,25.91099],[90.75679,25.91343],[90.76067,25.91567],[90.76052,25.92188],[90.75107,25.91827],[90.74714,25.91554],[90.74531,25.91177],[90.74245,25.91239],[90.73898,25.91616],[90.74779,25.91886],[90.74696,25.92481],[90.75415,25.92943],[90.75463,25.93344],[90.75279,25.93427],[90.75139,25.9323],[90.75009,25.93301],[90.74672,25.92809],[90.7404,25.93939],[90.74776,25.9483],[90.74569,25.9519],[90.7481,25.95672],[90.74442,25.95506],[90.74282,25.95799],[90.73776,25.9557],[90.73833,25.95271],[90.73247,25.9521],[90.72447,25.94678],[90.71994,25.94879],[90.71901,25.95454],[90.71759,25.95494],[90.71385,25.95167],[90.70765,25.95208],[90.68833,25.94891],[90.67265,25.93464],[90.63164,25.91983],[90.62619,25.91335],[90.62613,25.90974],[90.63067,25.9095],[90.6308,25.90628],[90.62494,25.89826],[90.62187,25.89784],[90.6136,25.89932],[90.60627,25.91662],[90.61231,25.92566],[90.62312,25.93506],[90.62412,25.93918],[90.6049,25.94709],[90.59967,25.95513],[90.59069,25.95606],[90.58787,25.95807],[90.58382,25.956],[90.57977,25.95127],[90.57706,25.94451],[90.57673,25.93675],[90.55242,25.92275],[90.54888,25.9214],[90.5438,25.92359],[90.54448,25.92055],[90.54838,25.9192],[90.55006,25.91684],[90.54912,25.91543],[90.53814,25.91375],[90.53749,25.9112],[90.52642,25.90484],[90.52139,25.89848],[90.51498,25.8961],[90.50855,25.9015],[90.518,25.91568],[90.52069,25.92597],[90.53416,25.93896],[90.535,25.94959],[90.5318,25.95601],[90.52046,25.97052],[90.50964,25.98049],[90.50254,25.99146],[90.48866,26.00339],[90.47613,26.00959],[90.44374,25.99597],[90.43747,25.99172],[90.43328,25.99132],[90.43022,25.98895],[90.4241,25.98888],[90.41684,25.9915],[90.41549,25.99882],[90.41115,26.00042],[90.40539,26.00898],[90.39975,26.01252],[90.37218,26.01127],[90.35274,26.00561],[90.34971,26.00413],[90.34671,25.99785],[90.34307,25.99631],[90.34036,25.98834],[90.33153,25.98765],[90.33105,25.98269],[90.32742,25.97437],[90.27058,25.96031],[90.21149,25.95259],[90.20994,25.95966],[90.20287,25.96086],[90.19983,25.95695],[90.19242,25.95525],[90.19083,25.95121],[90.18739,25.94987],[90.18691,25.94685],[90.18876,25.94583],[90.18688,25.94409],[90.1808,25.94977],[90.17859,25.95522],[90.17721,25.95527],[90.17692,25.95895],[90.16576,25.95576],[90.15847,25.95715],[90.15141,25.96667],[90.14382,25.96014],[90.13938,25.95964],[90.14054,25.9573],[90.13172,25.95874],[90.11978,25.9541],[90.12054,25.95783],[90.11685,25.95722],[90.10756,25.94914],[90.1049,25.94452],[90.10669,25.94231],[90.10108,25.94323],[90.10137,25.94023],[90.098,25.93741],[90.09211,25.93807],[90.09409,25.92782],[90.09113,25.92848],[90.08795,25.92555],[90.08542,25.92547],[90.08624,25.91947],[90.07591,25.91489],[90.07251,25.91852],[90.07054,25.91843],[90.06705,25.91299],[90.06055,25.91346],[90.06242,25.91022],[90.05558,25.90574],[90.05652,25.9032],[90.05544,25.90057],[90.04767,25.89982],[90.04644,25.89591],[90.04138,25.89407],[90.04344,25.89209],[90.04249,25.88767],[90.03419,25.89172],[90.03389,25.8944],[90.02523,25.89569],[90.01937,25.89208],[90.01386,25.88494],[90.01107,25.88461],[90.00809,25.88161],[90.00563,25.87847],[90.01428,25.87188],[90.01949,25.87315],[90.02382,25.86722],[90.02233,25.86014],[90.01912,25.85592],[90.01703,25.85622],[90.01745,25.85307],[90.01575,25.85073],[90.00782,25.84517],[90.0007,25.8462],[89.99894,25.84279],[90.004,25.8413],[90.00359,25.83924],[89.99126,25.83496],[89.98145,25.83551],[89.97793,25.83222],[89.9778,25.82793],[89.97109,25.82637],[89.96791,25.82777],[89.96587,25.83243],[89.96397,25.83306],[89.9637,25.82823],[89.96765,25.82252],[89.962,25.82019],[89.95416,25.82127],[89.95403,25.82504],[89.9587,25.82593],[89.95768,25.82911],[89.94826,25.82547],[89.9483,25.82352],[89.95106,25.82106],[89.94854,25.81509],[89.95584,25.81119],[89.95452,25.80391],[89.95843,25.80128],[89.95528,25.79653],[89.95439,25.78797],[89.95935,25.77993],[89.95536,25.77776],[89.95761,25.77539],[89.95478,25.76718],[89.94205,25.75584],[89.93523,25.75449],[89.93774,25.74822],[89.93728,25.74512],[89.92816,25.73904],[89.92428,25.73834],[89.90006,25.74706],[89.89474,25.74497],[89.8944,25.73494],[89.89569,25.73155],[89.89867,25.72957],[89.89913,25.72642],[89.9026,25.72526],[89.91348,25.70856],[89.91871,25.70515],[89.92358,25.69449],[89.93627,25.68975],[89.93752,25.68587],[89.94442,25.67926],[89.94292,25.67223],[89.94744,25.67103],[89.94544,25.66788],[89.94715,25.66615],[89.94674,25.66187],[89.95045,25.6556],[89.96293,25.64948],[89.96485,25.6468],[89.97916,25.63878],[89.98335,25.63055],[89.98318,25.62679],[89.99175,25.62408],[89.99519,25.62465],[89.99882,25.6224],[90.00412,25.62674],[90.00697,25.62332],[90.00421,25.62024],[90.00925,25.61919],[90.00984,25.61549],[90.01639,25.6098],[90.01859,25.61133],[90.0176,25.60788],[90.02025,25.60749],[90.01742,25.60502],[90.01685,25.60187],[90.01098,25.60156],[90.01112,25.59669],[90.003,25.58542],[89.99556,25.58624],[89.98771,25.59155],[89.9835,25.59125],[89.97854,25.58696],[89.97542,25.57611],[89.97216,25.57349],[89.9605,25.57445],[89.9538,25.57079],[89.94106,25.56826],[89.93687,25.5644],[89.91225,25.56317],[89.90959,25.56045],[89.90747,25.56135],[89.90157,25.55894],[89.89865,25.56051],[89.89191,25.55557],[89.8853,25.55499],[89.87717,25.54899],[89.87495,25.54373],[89.87883,25.5377],[89.86808,25.52987],[89.86794,25.52424],[89.86883,25.52149],[89.87149,25.52192],[89.87174,25.51853],[89.87347,25.51945],[89.87335,25.51689],[89.87734,25.51962],[89.87995,25.518],[89.88349,25.51911],[89.8807,25.51674],[89.88411,25.51424],[89.88594,25.50792],[89.87287,25.50742],[89.87681,25.5008],[89.87669,25.4955],[89.87228,25.48594],[89.87169,25.47735],[89.86543,25.47169],[89.85149,25.46549],[89.84301,25.45646],[89.83272,25.43875],[89.82543,25.41335],[89.82707,25.40154],[89.81959,25.38038],[89.82125,25.37424],[89.82144,25.35552],[89.8233,25.34823],[89.8268,25.34676],[89.83211,25.33243],[89.83831,25.32342],[89.8414,25.31479],[89.84161,25.30815],[89.83727,25.30532],[89.83769,25.30236],[89.83118,25.29603],[89.84478,25.29242],[89.84857,25.28938],[89.85397,25.28942],[89.85931,25.28602],[89.8632,25.2879],[89.8766,25.28533],[89.88519,25.28798],[89.88695,25.29164],[89.89009,25.29196],[89.89263,25.29808],[89.89537,25.29919],[89.89923,25.30465],[89.907,25.30773],[89.91455,25.30703],[89.92353,25.30428],[89.9271,25.30133],[89.93903,25.29904],[89.94392,25.30436],[89.94567,25.30286],[89.94695,25.29472],[89.94924,25.29271],[89.9545,25.301],[89.96396,25.30188],[89.96665,25.3037],[89.97708,25.29679],[89.98038,25.29068],[89.98076,25.28085],[89.996,25.27664],[90.00422,25.28055],[90.03376,25.26226],[90.04672,25.26063],[90.05452,25.26136],[90.05954,25.25464],[90.07414,25.24395],[90.0813,25.24037],[90.09426,25.23733],[90.10535,25.22925],[90.11811,25.22346],[90.12813,25.22563],[90.17147,25.22306],[90.18803,25.21512],[90.19196,25.21506],[90.19595,25.21103],[90.20789,25.21021],[90.21521,25.20539],[90.21942,25.20666],[90.22553,25.20047],[90.22867,25.20329],[90.23399,25.2049],[90.249,25.20011],[90.2555,25.19979],[90.25999,25.19711],[90.26406,25.19625],[90.26814,25.19841],[90.28159,25.19531],[90.28655,25.19568],[90.31043,25.18877],[90.31665,25.19286],[90.32339,25.19215],[90.33024,25.19382],[90.33674,25.18948],[90.34676,25.17834],[90.37046,25.16284],[90.40022,25.15898],[90.40448,25.15995],[90.41873,25.15058],[90.44108,25.14451],[90.44639,25.14478],[90.44942,25.14662],[90.45085,25.15239],[90.46355,25.1542],[90.48588,25.16107],[90.48851,25.16411],[90.49926,25.1686],[90.49905,25.17217],[90.50986,25.16942],[90.50864,25.17535],[90.51866,25.17219],[90.52595,25.17382],[90.5353,25.17331],[90.53803,25.17528],[90.54556,25.1736],[90.55134,25.17523],[90.55498,25.17168],[90.55977,25.17354],[90.56409,25.17143],[90.56474,25.17335],[90.56977,25.1736],[90.57598,25.17164],[90.57895,25.17476],[90.58624,25.17349],[90.58787,25.17651],[90.59355,25.17514],[90.59939,25.17654],[90.60468,25.17463],[90.60472,25.17638],[90.60736,25.17614],[90.60939,25.17911],[90.61267,25.17698],[90.61388,25.17367],[90.61648,25.17737],[90.61828,25.17254],[90.62042,25.1744],[90.62518,25.17414],[90.62705,25.17222],[90.63205,25.17355],[90.63456,25.17603],[90.64094,25.17453],[90.64189,25.17667],[90.63879,25.18008],[90.64035,25.18359],[90.64599,25.18083],[90.65114,25.18202],[90.65238,25.18687],[90.65139,25.1881],[90.65256,25.18859],[90.64765,25.19409],[90.64884,25.19488],[90.65238,25.19224],[90.65695,25.18476],[90.66122,25.18904],[90.66342,25.19785],[90.66513,25.19633],[90.66255,25.19158],[90.66379,25.18833],[90.66277,25.18555],[90.66501,25.18417],[90.66545,25.18073],[90.66341,25.17881],[90.66515,25.17627],[90.66381,25.17286],[90.66655,25.1695],[90.66601,25.1658],[90.66995,25.16626],[90.67439,25.17637],[90.67565,25.17638],[90.67515,25.17249],[90.681,25.17232],[90.68617,25.17427],[90.68551,25.17224],[90.68052,25.16932],[90.68215,25.16425],[90.68371,25.16323],[90.68687,25.16483],[90.68993,25.16415],[90.69174,25.16087],[90.69504,25.16002],[90.69807,25.15683],[90.70059,25.15932],[90.69929,25.16116],[90.70064,25.16481],[90.70236,25.16206],[90.70656,25.16109],[90.70784,25.16607],[90.70998,25.16812],[90.71477,25.16757],[90.7175,25.16376],[90.7224,25.1647],[90.72567,25.16311],[90.72662,25.15806],[90.73147,25.15738],[90.73193,25.15498],[90.73328,25.15491],[90.73448,25.15817],[90.73914,25.15767],[90.74193,25.16125],[90.73788,25.16432],[90.73319,25.16202],[90.73422,25.16685],[90.73969,25.16667],[90.73992,25.16929],[90.74186,25.17024],[90.74208,25.16587],[90.74762,25.164],[90.74943,25.16691],[90.75666,25.16976],[90.7576,25.16816],[90.75858,25.16944],[90.75905,25.16782],[90.76041,25.1682],[90.76177,25.16989],[90.75891,25.17245],[90.76326,25.17593],[90.76383,25.17831],[90.76916,25.18261],[90.77552,25.18195],[90.78036,25.18612],[90.78156,25.18071],[90.7842,25.18128],[90.78401,25.17932],[90.78747,25.17873],[90.79473,25.18127],[90.79877,25.17432],[90.8027,25.17274],[90.80546,25.17363],[90.80416,25.16947],[90.80591,25.16594],[90.814,25.16369],[90.81557,25.16394],[90.81385,25.16751],[90.81793,25.16756],[90.81955,25.16261],[90.83664,25.16087],[90.84083,25.16107],[90.84074,25.16432],[90.84201,25.16431],[90.84442,25.15846],[90.84982,25.15764],[90.85419,25.15913],[90.85868,25.15774],[90.85989,25.15833],[90.85811,25.15954],[90.85944,25.16016],[90.86202,25.15763],[90.86592,25.16108],[90.87219,25.15978],[90.87511,25.16351],[90.88399,25.16672],[90.89453,25.16459],[90.89729,25.16626],[90.90462,25.16188],[90.91884,25.16334],[90.92801,25.16222],[90.9465,25.16756],[90.94882,25.17079],[90.96539,25.1709],[90.9731,25.17507],[90.97733,25.17401],[90.98474,25.17498],[91.00197,25.1813],[91.00611,25.18026],[91.00944,25.1832],[91.01878,25.18382],[91.01911,25.18697],[91.03041,25.18511],[91.03839,25.18626],[91.03955,25.18852],[91.04161,25.18764],[91.04997,25.18973],[91.05515,25.19243],[91.06788,25.19153],[91.07188,25.19336],[91.06964,25.19841],[91.12525,25.194],[91.13966,25.19638],[91.15609,25.19621],[91.16032,25.19778],[91.16484,25.19585],[91.19468,25.20182],[91.22327,25.19901],[91.22449,25.20016],[91.23042,25.19689],[91.23326,25.1991],[91.23638,25.19903],[91.23678,25.19696],[91.24734,25.19776],[91.25163,25.19517],[91.25151,25.19912],[91.25979,25.20102],[91.26027,25.2051],[91.26801,25.20724],[91.27618,25.19905],[91.29223,25.19332],[91.28868,25.19012],[91.28657,25.18535],[91.28844,25.18649],[91.29248,25.1838],[91.30013,25.18424],[91.30446,25.1826],[91.31778,25.18367],[91.32432,25.18073],[91.32703,25.17618],[91.33197,25.1774],[91.33752,25.17349],[91.35159,25.17581],[91.35375,25.17126],[91.36098,25.1778],[91.36382,25.17807],[91.3688,25.17062],[91.37642,25.16795],[91.38626,25.16995],[91.38856,25.16757],[91.39865,25.16446],[91.40677,25.16611],[91.41087,25.16366],[91.41286,25.16733],[91.41214,25.16942],[91.41465,25.17113],[91.42261,25.16219],[91.42512,25.15699],[91.43268,25.1568],[91.43718,25.15412],[91.44058,25.14963],[91.44335,25.15069],[91.4496,25.14916],[91.4508,25.15204],[91.45314,25.1526],[91.45702,25.14824],[91.46109,25.15122],[91.46863,25.15179],[91.46951,25.15082],[91.467,25.14379],[91.47045,25.13971],[91.46526,25.13719],[91.46423,25.13481],[91.47102,25.13359],[91.47821,25.13379],[91.47979,25.1353],[91.47801,25.13647],[91.48229,25.13711],[91.48929,25.1351],[91.49195,25.13886],[91.49368,25.13854],[91.49251,25.13687],[91.4996,25.13542],[91.50163,25.14005],[91.50105,25.14306],[91.50955,25.14745],[91.51706,25.14777],[91.5265,25.1445],[91.55721,25.14976],[91.55812,25.15551],[91.56307,25.16064],[91.56695,25.15931],[91.57131,25.1609],[91.57658,25.15982],[91.57157,25.16527],[91.57706,25.17196],[91.58917,25.17167],[91.59207,25.17434],[91.60551,25.17364],[91.60973,25.17705],[91.61518,25.17472],[91.61543,25.16966],[91.60861,25.16983],[91.60406,25.16745],[91.59998,25.1596],[91.60363,25.15901],[91.60264,25.15488],[91.59941,25.15107],[91.60209,25.14272],[91.60377,25.14018],[91.60704,25.14474],[91.61112,25.14627],[91.61226,25.14097],[91.61545,25.14511],[91.62151,25.14341],[91.6232,25.12788],[91.62699,25.12543],[91.63791,25.12254],[91.64206,25.12307],[91.64544,25.12721],[91.65179,25.12745],[91.65277,25.1312],[91.65888,25.13148],[91.66002,25.12704],[91.66503,25.12843],[91.66401,25.13523],[91.66994,25.1379],[91.67564,25.13805],[91.6807,25.13498],[91.68629,25.13773],[91.6918,25.13712],[91.69423,25.14038],[91.69443,25.14548],[91.6988,25.14618],[91.70103,25.15058],[91.70223,25.14893],[91.70355,25.14949],[91.70322,25.15347],[91.7005,25.15573],[91.70378,25.16002],[91.7055,25.15692],[91.70834,25.15909],[91.71434,25.15763],[91.71655,25.15233],[91.73297,25.15022],[91.73176,25.14817],[91.73274,25.14781],[91.73549,25.14973],[91.73637,25.1434],[91.74764,25.14015],[91.74247,25.1446],[91.74407,25.14656],[91.74468,25.15316],[91.74864,25.15618],[91.74983,25.15922],[91.74469,25.16985],[91.74733,25.17399],[91.75603,25.1775],[91.75489,25.17176],[91.75856,25.16837],[91.76354,25.16629],[91.76634,25.16748],[91.77461,25.16313],[91.78837,25.16742],[91.79725,25.16881],[91.80636,25.1682],[91.80707,25.16973],[91.80387,25.17018],[91.80421,25.17177],[91.81765,25.17121],[91.82304,25.17679],[91.8266,25.1762],[91.82704,25.1778],[91.84079,25.1769],[91.8556,25.17249],[91.86152,25.17245],[91.86441,25.17529],[91.87091,25.17431],[91.87598,25.17744],[91.87615,25.17558],[91.88063,25.17292],[91.88449,25.1771],[91.89248,25.17594],[91.8947,25.17624],[91.89388,25.17835],[91.89739,25.17807],[91.89851,25.18008],[91.90742,25.17931],[91.91626,25.18135],[91.93232,25.17942],[91.93289,25.18051],[91.93413,25.17808],[91.96682,25.17638],[91.97167,25.16758],[91.9834,25.17095],[91.99856,25.18401],[92.00376,25.18616],[92.01643,25.18721],[92.01845,25.1827],[92.02619,25.17917],[92.02791,25.18342],[92.03899,25.18231],[92.04055,25.18637],[92.04733,25.18536],[92.04934,25.18538],[92.04938,25.18696],[92.05432,25.18644],[92.05543,25.18426],[92.05601,25.18542],[92.07385,25.18495],[92.07885,25.18096],[92.08323,25.18227],[92.0923,25.17754],[92.10445,25.17463],[92.10526,25.17259],[92.10772,25.1726],[92.10905,25.17035],[92.11795,25.16656],[92.12044,25.16383],[92.13288,25.16015],[92.13286,25.15634],[92.13974,25.15376],[92.13791,25.15189],[92.13408,25.15266],[92.1356,25.15151],[92.13389,25.14833],[92.13519,25.1456],[92.1344,25.14278],[92.14457,25.13966],[92.13955,25.13985],[92.13956,25.14094],[92.13584,25.13874],[92.14736,25.13525],[92.15084,25.13823],[92.15319,25.13621],[92.1527,25.13368],[92.15557,25.13322],[92.16256,25.13621],[92.16568,25.13596],[92.16296,25.1334],[92.15887,25.13299],[92.15945,25.13002],[92.1649,25.13046],[92.15959,25.1266],[92.16479,25.12539],[92.17092,25.12858],[92.17261,25.12675],[92.17624,25.12632],[92.17682,25.12385],[92.17889,25.12613],[92.17936,25.12401],[92.17673,25.12286],[92.18393,25.11792],[92.18863,25.12782],[92.18907,25.13215],[92.1876,25.13264],[92.18933,25.13629],[92.19526,25.13006],[92.1945,25.12564],[92.19696,25.12631],[92.20558,25.12362],[92.21938,25.11701],[92.2197,25.11515],[92.2004,25.11998],[92.20052,25.11729],[92.19617,25.10803],[92.20276,25.10637],[92.20699,25.10867],[92.22186,25.10404],[92.22354,25.10242],[92.22307,25.0982],[92.22755,25.09371],[92.23136,25.09689],[92.25531,25.08525],[92.26676,25.08321],[92.27106,25.08076],[92.27565,25.08088],[92.2784,25.07766],[92.28157,25.07934],[92.28378,25.07654],[92.28747,25.07745],[92.2996,25.07168],[92.30505,25.07048],[92.30651,25.07196],[92.30587,25.0705],[92.31063,25.06902],[92.31411,25.07195],[92.31915,25.06989],[92.31896,25.07424],[92.32236,25.0783],[92.32887,25.07743],[92.33209,25.07909],[92.33838,25.07571],[92.34855,25.07349],[92.34898,25.06091],[92.33818,25.05152],[92.3392,25.05046],[92.3424,25.05422],[92.33931,25.05035],[92.34148,25.04853],[92.34605,25.04905],[92.34743,25.04767],[92.35005,25.0495],[92.35095,25.04836],[92.35429,25.04944],[92.35441,25.04778],[92.35671,25.04744],[92.3566,25.05001],[92.35811,25.05012],[92.35844,25.04721],[92.36076,25.04672],[92.36298,25.04989],[92.3684,25.04621],[92.36906,25.04371],[92.36779,25.04239],[92.36971,25.04088],[92.37087,25.04271],[92.37486,25.04359],[92.37395,25.04254],[92.37691,25.0428],[92.37945,25.03952],[92.38107,25.03974],[92.38063,25.04141],[92.38127,25.03916],[92.38262,25.04047],[92.38327,25.03849],[92.38383,25.04236],[92.3882,25.03972],[92.3928,25.03978],[92.39908,25.03278],[92.4005,25.03408],[92.40229,25.03182],[92.40513,25.03263],[92.41255,25.02873],[92.41698,25.03029],[92.42149,25.0278],[92.42374,25.03002],[92.42925,25.02915],[92.43223,25.03513],[92.43819,25.03465],[92.43828,25.04387],[92.44253,25.04524],[92.44731,25.04333],[92.44907,25.04057],[92.45277,25.04075],[92.45981,25.03704],[92.46429,25.03744],[92.46298,25.03958],[92.46429,25.04362],[92.46238,25.04813],[92.46051,25.04873],[92.45705,25.04667],[92.45698,25.05407],[92.46023,25.05729],[92.46366,25.05494],[92.46357,25.05808],[92.46535,25.05867],[92.46843,25.06589],[92.47203,25.06725],[92.47202,25.07463],[92.47062,25.0764],[92.47535,25.07777],[92.47411,25.08197],[92.47758,25.08255],[92.47716,25.08501],[92.47941,25.08661],[92.47731,25.09078],[92.47743,25.10019],[92.4808,25.10847],[92.49102,25.10769],[92.49696,25.10951],[92.50892,25.10422],[92.51995,25.10594],[92.52782,25.104],[92.53052,25.10031],[92.53396,25.09898],[92.53942,25.09905],[92.5231,25.12597],[92.52265,25.13303],[92.52067,25.13648],[92.52162,25.13903],[92.52344,25.13894],[92.5249,25.13519],[92.53836,25.13349],[92.55536,25.12695],[92.56061,25.13032],[92.56818,25.12824],[92.57661,25.13099],[92.5832,25.12811],[92.58808,25.12878],[92.59282,25.12589],[92.59501,25.1222],[92.6089,25.12262],[92.61632,25.1158],[92.62143,25.11503],[92.62888,25.12618],[92.62729,25.13095],[92.62831,25.1381],[92.63868,25.14773],[92.65209,25.1523],[92.65576,25.15495],[92.65802,25.15884],[92.65843,25.17195],[92.66348,25.17667],[92.66796,25.17408],[92.66863,25.17656],[92.67724,25.18254],[92.68338,25.17954],[92.6939,25.17924],[92.70262,25.18838],[92.70924,25.19007],[92.71614,25.19578],[92.73722,25.20054],[92.74287,25.20665],[92.7468,25.20651],[92.75484,25.20183],[92.76281,25.20159],[92.76747,25.20349],[92.77621,25.19961],[92.78192,25.20325],[92.78605,25.20935],[92.79503,25.20975],[92.80291,25.21617],[92.80152,25.22024],[92.78911,25.22468],[92.78203,25.23016],[92.77167,25.22998],[92.77016,25.23733],[92.76189,25.24653],[92.76263,25.24927],[92.76646,25.25214],[92.77118,25.25099],[92.77497,25.252],[92.77775,25.25818],[92.7692,25.26559],[92.76862,25.26812],[92.77665,25.27003],[92.77974,25.27353],[92.78749,25.27409],[92.7925,25.28256],[92.7873,25.29003],[92.78723,25.29621],[92.78343,25.29944],[92.78132,25.30498],[92.78154,25.30769],[92.78693,25.31437],[92.7818,25.33318],[92.76991,25.33821],[92.76373,25.33358],[92.76107,25.33352],[92.75593,25.33864],[92.7546,25.34238],[92.7499,25.3441],[92.74995,25.34994],[92.74641,25.35833],[92.73955,25.36131],[92.73879,25.36695],[92.73236,25.36892],[92.73326,25.37272],[92.73802,25.37933],[92.72375,25.37882],[92.71794,25.37263],[92.70988,25.38451],[92.70176,25.38448],[92.69828,25.38632],[92.69283,25.39767],[92.68815,25.40208],[92.67778,25.40702],[92.67353,25.41402],[92.66752,25.41483],[92.66353,25.4065],[92.66164,25.40635],[92.65641,25.41154],[92.6519,25.41924],[92.65146,25.42584],[92.65442,25.4326],[92.65362,25.43352],[92.64708,25.42824],[92.63956,25.41757],[92.63672,25.42141],[92.63584,25.42732],[92.62565,25.43492],[92.62525,25.43114],[92.62838,25.42388],[92.62764,25.42197],[92.62461,25.42092],[92.61858,25.423],[92.6151,25.42111],[92.61126,25.41517],[92.60663,25.41323],[92.6045,25.4209],[92.60698,25.42763],[92.60307,25.43513],[92.60461,25.4476],[92.59761,25.45067],[92.60045,25.46475],[92.59861,25.46814],[92.59564,25.4702],[92.59189,25.47042],[92.58411,25.4656],[92.58259,25.47107],[92.58036,25.47208],[92.57446,25.46626],[92.56881,25.4637],[92.56655,25.46336],[92.56467,25.46548],[92.56436,25.47361],[92.57365,25.49048],[92.59109,25.50115],[92.5973,25.50246],[92.5999,25.50635],[92.60908,25.51181],[92.6202,25.51606],[92.62769,25.52197],[92.63191,25.52774],[92.63776,25.53024],[92.64284,25.53481],[92.64206,25.54158],[92.64542,25.55574],[92.65679,25.56085],[92.65748,25.56975],[92.66146,25.57219],[92.65831,25.57406],[92.65865,25.57813],[92.65338,25.59061],[92.64947,25.5922],[92.64171,25.58851],[92.63431,25.5813],[92.63017,25.57167],[92.62278,25.56572],[92.61208,25.56277],[92.60246,25.56222],[92.59998,25.55504],[92.59482,25.55159],[92.58996,25.5526],[92.58407,25.55045],[92.58236,25.55763],[92.57542,25.55851],[92.57249,25.55735],[92.55673,25.57096],[92.55622,25.57665],[92.55877,25.58012],[92.55494,25.58457],[92.55432,25.5883],[92.55467,25.59533],[92.55659,25.59648],[92.55332,25.59739],[92.55439,25.59957],[92.55217,25.60254],[92.55548,25.60178],[92.55673,25.61141],[92.5541,25.61303],[92.55417,25.6148],[92.53922,25.61158],[92.53886,25.61358],[92.53585,25.61315],[92.53338,25.61495],[92.51643,25.61506],[92.51507,25.61834],[92.50948,25.61559],[92.50563,25.61631],[92.50609,25.6214],[92.4972,25.62439],[92.47033,25.67515],[92.46797,25.67552],[92.46327,25.68101],[92.45532,25.68492],[92.45031,25.68529],[92.44065,25.6916],[92.43789,25.7058],[92.44036,25.70824],[92.44399,25.70736],[92.4477,25.70901],[92.44429,25.7197],[92.43294,25.72696],[92.43118,25.73218],[92.42205,25.7299],[92.41165,25.73003],[92.40912,25.73375],[92.41458,25.73996],[92.41432,25.74146],[92.40718,25.74187],[92.40803,25.74349],[92.40662,25.7446],[92.39766,25.74045],[92.38784,25.74415],[92.38178,25.74204],[92.38205,25.74632],[92.38543,25.75051],[92.38402,25.75452],[92.37869,25.74839],[92.37376,25.75041],[92.36894,25.74729],[92.36427,25.73735],[92.36093,25.73665],[92.35324,25.73975],[92.34583,25.72918],[92.33351,25.72412],[92.32416,25.72472],[92.31695,25.72242],[92.31134,25.72789],[92.30213,25.72086],[92.29715,25.71998],[92.29301,25.71645],[92.27715,25.71547],[92.27128,25.71126],[92.26437,25.70909],[92.25485,25.7126],[92.25114,25.71082],[92.24734,25.71314],[92.23876,25.7106],[92.23445,25.70758],[92.23286,25.70886],[92.23168,25.71594],[92.22503,25.71609],[92.22113,25.71327],[92.21685,25.70481],[92.20986,25.69917],[92.20809,25.69557],[92.20081,25.69227],[92.19707,25.68675],[92.1883,25.68441],[92.17997,25.67807],[92.17748,25.67431],[92.17343,25.67414],[92.1702,25.66713],[92.16596,25.66634],[92.1607,25.66884],[92.15615,25.67218],[92.1596,25.67624],[92.16053,25.68412],[92.15598,25.69167],[92.15684,25.69582],[92.15465,25.69788],[92.15478,25.70621],[92.15241,25.70861],[92.15083,25.70778],[92.14773,25.70946],[92.14425,25.71681],[92.14817,25.72527],[92.15445,25.72501],[92.16191,25.73663],[92.16271,25.74086],[92.16282,25.74387],[92.15556,25.75112],[92.15543,25.7574],[92.15025,25.76361],[92.15092,25.76655],[92.14782,25.77295],[92.15266,25.778],[92.14636,25.78412],[92.14996,25.79489],[92.1487,25.80594],[92.15258,25.81178],[92.1511,25.81664],[92.15575,25.81889],[92.15695,25.82158],[92.16023,25.81979],[92.16128,25.82059],[92.16235,25.82724],[92.16081,25.83061],[92.16417,25.83301],[92.16202,25.83554],[92.16623,25.83529],[92.16981,25.83886],[92.17301,25.84718],[92.17261,25.8499],[92.1775,25.8515],[92.17759,25.8581],[92.1801,25.85823],[92.1762,25.8682],[92.17724,25.87275],[92.18363,25.87688],[92.18755,25.8772],[92.19901,25.88899],[92.21498,25.8953],[92.2157,25.89995],[92.22085,25.90026],[92.22281,25.90639],[92.22556,25.90917],[92.21727,25.9115],[92.20443,25.90914],[92.20228,25.90633],[92.20105,25.90845],[92.19404,25.91167],[92.19633,25.91575],[92.19453,25.91846],[92.18947,25.91457],[92.18608,25.91663],[92.18173,25.91126],[92.17656,25.91042],[92.17757,25.90885],[92.17555,25.90737],[92.16242,25.91116],[92.15474,25.91099],[92.15461,25.91377],[92.15682,25.91463],[92.16093,25.92815],[92.15922,25.93322],[92.16015,25.93532],[92.15252,25.93959],[92.15244,25.94432],[92.1571,25.94919],[92.1573,25.95263],[92.16405,25.95781],[92.16152,25.96025],[92.16213,25.96656],[92.16421,25.97028],[92.16932,25.97338],[92.17441,25.9739],[92.17872,25.97742],[92.18088,25.98501],[92.18469,25.9858],[92.18846,25.98455],[92.19855,25.98822],[92.19631,25.99085],[92.19754,25.99456],[92.20101,25.99516],[92.20385,26.00122],[92.20915,25.99792],[92.2119,26.00455],[92.21911,26.00389],[92.22032,26.00569],[92.2248,26.00599],[92.22775,26.00856],[92.23387,26.00912],[92.23504,26.01223],[92.24452,26.01819],[92.24286,26.02039],[92.24373,26.02152],[92.24858,26.02338],[92.25329,26.029],[92.25681,26.0287],[92.26347,26.03313],[92.26508,26.0361],[92.26108,26.04164],[92.26901,26.04282],[92.27003,26.04745],[92.26814,26.05143],[92.26357,26.05431],[92.26395,26.05736],[92.26949,26.06057],[92.27061,26.06404],[92.27489,26.06565],[92.27166,26.06523],[92.26888,26.06817],[92.26746,26.06676],[92.26095,26.06614],[92.25832,26.06346],[92.25052,26.06453],[92.24163,26.06177],[92.22944,26.06462],[92.22859,26.0668],[92.22223,26.06809],[92.22054,26.0703],[92.21548,26.06841],[92.20817,26.07047],[92.20627,26.06963],[92.20651,26.06814],[92.20042,26.06962],[92.19265,26.06733],[92.19101,26.06884],[92.18716,26.06657],[92.18613,26.06765],[92.18734,26.0693],[92.18181,26.06906],[92.18029,26.07117],[92.17804,26.06855],[92.17608,26.07023],[92.17617,26.07429],[92.17878,26.07569],[92.1788,26.07819],[92.1694,26.07764],[92.15471,26.06715],[92.15224,26.06678],[92.14339,26.05604],[92.13754,26.05504],[92.13421,26.05245],[92.13262,26.04424],[92.12821,26.04568],[92.1214,26.04388],[92.1199,26.04596],[92.1088,26.05068],[92.09729,26.04922],[92.07791,26.04229],[92.06679,26.03508],[92.05796,26.03482],[92.05143,26.03279],[92.04814,26.03277],[92.04069,26.03651],[92.03633,26.03621],[92.0344,26.03892],[92.03062,26.03958],[92.02404,26.03781],[92.01845,26.03919],[92.0165,26.03705],[92.01327,26.03844],[92.01044,26.03665],[92.00622,26.03855],[92.00411,26.03557],[91.99922,26.03579],[91.99476,26.03849],[91.98906,26.03853],[91.98546,26.03103],[91.98617,26.02898],[91.98357,26.0258],[91.97897,26.02748],[91.97317,26.02211],[91.96195,26.02026],[91.96191,26.01892],[91.95137,26.01466],[91.9478,26.01529],[91.94718,26.01317],[91.93397,26.01027],[91.93115,26.01236],[91.92827,26.00236],[91.92496,25.99939],[91.91898,25.99783],[91.9144,25.9988],[91.91228,26.00492],[91.91417,26.0072],[91.91059,26.00737],[91.90976,26.00877],[91.91332,26.0094],[91.90975,26.01267],[91.91479,26.01399],[91.91299,26.01471],[91.91469,26.0205],[91.90851,26.02097],[91.90518,26.02387],[91.9023,26.02237],[91.89783,26.0234],[91.88874,26.02787],[91.8858,26.02804],[91.88304,26.0261],[91.87893,26.03115],[91.87916,26.03437],[91.87517,26.03511],[91.8762,26.03641],[91.8731,26.03881],[91.87475,26.04302],[91.87202,26.04462],[91.87095,26.04271],[91.8673,26.04202],[91.87192,26.05096],[91.87028,26.05451],[91.87265,26.06791],[91.87661,26.07667],[91.87845,26.08978],[91.87687,26.09165],[91.87964,26.09604],[91.87917,26.09798],[91.87364,26.10063],[91.86576,26.10042],[91.86393,26.10263],[91.86072,26.10289],[91.85101,26.1084],[91.84828,26.10807],[91.83736,26.11224],[91.83382,26.11576]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"18","area_level":"State","area_name":"Assam","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[93.24961,24.97312],[93.25203,24.97645],[93.24934,24.97704],[93.24944,24.97934],[93.25343,24.98207],[93.25141,24.98601],[93.25704,24.99607],[93.25298,24.99734],[93.25277,24.99891],[93.25416,25.00023],[93.25863,24.99948],[93.25987,25.00113],[93.25738,25.00474],[93.25259,25.00093],[93.2505,25.00432],[93.24878,25.00299],[93.24888,24.99891],[93.24686,24.99738],[93.24439,24.99809],[93.2442,25.00326],[93.24178,25.00393],[93.24472,25.01171],[93.24767,25.0149],[93.24374,25.01612],[93.24388,25.01829],[93.24728,25.01799],[93.24908,25.02009],[93.25395,25.02058],[93.2525,25.02293],[93.25404,25.02547],[93.25117,25.02585],[93.25135,25.02714],[93.25379,25.02716],[93.25989,25.03497],[93.25835,25.03802],[93.25962,25.04121],[93.26219,25.04072],[93.26605,25.04384],[93.26227,25.04591],[93.2642,25.04936],[93.27045,25.05077],[93.27215,25.04844],[93.27451,25.05094],[93.27731,25.04957],[93.28007,25.051],[93.27966,25.04722],[93.2827,25.04901],[93.28346,25.045],[93.28718,25.04701],[93.28897,25.04568],[93.29136,25.04864],[93.29368,25.04633],[93.2948,25.05107],[93.2988,25.05195],[93.29941,25.04935],[93.29754,25.04658],[93.29996,25.04604],[93.3021,25.05424],[93.30079,25.05586],[93.30423,25.05562],[93.30556,25.05743],[93.30259,25.06137],[93.30282,25.06436],[93.31492,25.08462],[93.32188,25.09082],[93.32754,25.0934],[93.33237,25.09352],[93.3317,25.09605],[93.33354,25.09799],[93.33246,25.10073],[93.33808,25.1099],[93.33675,25.1116],[93.34141,25.11383],[93.33933,25.11549],[93.3422,25.11989],[93.34118,25.12306],[93.34526,25.12346],[93.34172,25.12671],[93.34534,25.13034],[93.34238,25.13749],[93.34751,25.13877],[93.34518,25.15074],[93.34657,25.15708],[93.34401,25.15913],[93.34587,25.16981],[93.34981,25.1795],[93.3515,25.17966],[93.35134,25.1832],[93.35496,25.18593],[93.35412,25.18767],[93.35616,25.18896],[93.35737,25.1876],[93.35671,25.19188],[93.35999,25.19185],[93.35938,25.19531],[93.36562,25.19808],[93.3661,25.2061],[93.37072,25.20789],[93.36894,25.21097],[93.37383,25.21182],[93.37338,25.21484],[93.37671,25.21788],[93.37561,25.22014],[93.38178,25.2229],[93.38127,25.22736],[93.38465,25.23136],[93.38426,25.23352],[93.38164,25.23431],[93.38269,25.23725],[93.38096,25.23794],[93.38112,25.23963],[93.38334,25.24228],[93.3866,25.24278],[93.39259,25.24997],[93.39366,25.25474],[93.40116,25.26062],[93.40668,25.26078],[93.41594,25.26427],[93.42053,25.27746],[93.4267,25.27964],[93.42752,25.28324],[93.43078,25.28295],[93.43606,25.28782],[93.44532,25.29134],[93.45536,25.29347],[93.46316,25.30147],[93.4673,25.30166],[93.4705,25.30506],[93.46663,25.31182],[93.45343,25.32146],[93.45667,25.32986],[93.45542,25.33214],[93.45651,25.33538],[93.45205,25.33596],[93.44843,25.34064],[93.45196,25.34703],[93.45158,25.35395],[93.45875,25.36068],[93.4638,25.35964],[93.46501,25.36067],[93.47253,25.37428],[93.47177,25.37589],[93.47361,25.37928],[93.47299,25.38599],[93.4632,25.39559],[93.45966,25.40323],[93.45933,25.40837],[93.46232,25.41785],[93.45833,25.42592],[93.45819,25.43098],[93.45543,25.4344],[93.45029,25.43565],[93.44333,25.4411],[93.43952,25.44101],[93.43753,25.44304],[93.43855,25.44551],[93.43639,25.44818],[93.42561,25.44832],[93.41995,25.44496],[93.41555,25.44498],[93.41041,25.44987],[93.40872,25.44829],[93.40247,25.45078],[93.40064,25.45636],[93.3973,25.46026],[93.394,25.45844],[93.39166,25.46178],[93.39034,25.46038],[93.38834,25.46349],[93.39041,25.46444],[93.38691,25.46611],[93.38682,25.46883],[93.38446,25.46916],[93.38898,25.47254],[93.3892,25.47638],[93.38661,25.47778],[93.3891,25.47843],[93.39142,25.48216],[93.38672,25.48296],[93.38463,25.4851],[93.38655,25.48726],[93.38386,25.48794],[93.38551,25.49039],[93.37738,25.49298],[93.37667,25.49753],[93.36752,25.49924],[93.36706,25.50096],[93.3692,25.50353],[93.36433,25.50376],[93.364,25.50653],[93.36213,25.50671],[93.36158,25.51234],[93.35686,25.5137],[93.35769,25.51527],[93.35509,25.52478],[93.35266,25.5283],[93.34997,25.52868],[93.35034,25.532],[93.34833,25.52994],[93.34508,25.53419],[93.34057,25.53495],[93.34036,25.53284],[93.33498,25.53442],[93.33639,25.53873],[93.33378,25.53959],[93.33299,25.54236],[93.33049,25.54203],[93.33036,25.54368],[93.32722,25.54467],[93.32702,25.54649],[93.32924,25.54879],[93.33261,25.54838],[93.33708,25.55283],[93.33575,25.55398],[93.33798,25.55687],[93.34328,25.56004],[93.35216,25.55999],[93.35461,25.55552],[93.35644,25.55619],[93.35872,25.55463],[93.35847,25.55726],[93.36406,25.5612],[93.36159,25.56387],[93.36245,25.566],[93.36554,25.56518],[93.36951,25.57042],[93.37539,25.57308],[93.3743,25.57709],[93.37983,25.57658],[93.38159,25.58197],[93.37835,25.5826],[93.38206,25.58396],[93.38341,25.58792],[93.38575,25.58705],[93.38695,25.58997],[93.3856,25.59277],[93.38929,25.5911],[93.39243,25.5959],[93.39403,25.59607],[93.3947,25.59445],[93.39695,25.59703],[93.39878,25.59603],[93.39947,25.59907],[93.40287,25.60216],[93.40127,25.60577],[93.40152,25.61109],[93.40626,25.6114],[93.40783,25.61441],[93.41101,25.61359],[93.41048,25.61654],[93.41436,25.61805],[93.41373,25.62099],[93.41835,25.61764],[93.42161,25.61824],[93.42226,25.62043],[93.41997,25.6247],[93.42455,25.62547],[93.42491,25.6303],[93.42738,25.63253],[93.43043,25.62947],[93.43366,25.62943],[93.43457,25.63119],[93.43726,25.63166],[93.43736,25.63481],[93.44162,25.63468],[93.44216,25.63817],[93.44437,25.63961],[93.44666,25.6346],[93.44948,25.63561],[93.44959,25.63953],[93.45509,25.63385],[93.4609,25.63231],[93.4606,25.63678],[93.45573,25.63869],[93.45731,25.64114],[93.46046,25.64062],[93.46417,25.64462],[93.47204,25.64239],[93.4688,25.64433],[93.47149,25.6454],[93.47383,25.64401],[93.47675,25.64777],[93.48174,25.6445],[93.48294,25.64546],[93.48144,25.65123],[93.48521,25.64833],[93.48777,25.65139],[93.4868,25.65312],[93.48802,25.65431],[93.49122,25.6532],[93.49655,25.65453],[93.49998,25.66072],[93.50646,25.66415],[93.50551,25.66642],[93.5066,25.66788],[93.5098,25.66847],[93.50744,25.67251],[93.51114,25.67209],[93.51409,25.67707],[93.51835,25.67943],[93.51754,25.68229],[93.51372,25.68282],[93.51265,25.68459],[93.52048,25.69161],[93.52249,25.69757],[93.52396,25.69592],[93.5236,25.6926],[93.52747,25.69119],[93.53123,25.69257],[93.53207,25.69698],[93.53629,25.7018],[93.54117,25.69884],[93.54192,25.70459],[93.54802,25.71172],[93.54319,25.71464],[93.54305,25.72096],[93.53955,25.72256],[93.54306,25.72585],[93.54245,25.73094],[93.54588,25.73147],[93.54943,25.72932],[93.54958,25.73274],[93.55526,25.73363],[93.5543,25.73783],[93.56151,25.73777],[93.56351,25.74472],[93.56697,25.74725],[93.56633,25.75475],[93.56833,25.75499],[93.57029,25.75276],[93.57322,25.75412],[93.57243,25.75644],[93.56827,25.75681],[93.56794,25.75843],[93.57683,25.75687],[93.57775,25.75449],[93.58548,25.75797],[93.58234,25.76055],[93.58592,25.76615],[93.58951,25.76606],[93.59167,25.76253],[93.59851,25.7688],[93.60056,25.76516],[93.60265,25.76508],[93.60504,25.7749],[93.61029,25.77375],[93.61272,25.77656],[93.61742,25.77599],[93.6201,25.78023],[93.6185,25.7837],[93.62252,25.78497],[93.6232,25.78733],[93.62675,25.78961],[93.6234,25.7973],[93.62669,25.79715],[93.62776,25.79888],[93.6247,25.80256],[93.62951,25.80156],[93.63289,25.80276],[93.6317,25.80664],[93.63495,25.80927],[93.6331,25.81138],[93.6386,25.80979],[93.63816,25.81563],[93.64347,25.81577],[93.64431,25.8187],[93.64651,25.81973],[93.64614,25.82238],[93.6516,25.81986],[93.65481,25.82364],[93.66054,25.82161],[93.66496,25.82318],[93.66829,25.82183],[93.66764,25.82596],[93.67116,25.82405],[93.67262,25.82764],[93.67863,25.82841],[93.68068,25.83343],[93.67945,25.83503],[93.68056,25.83835],[93.69022,25.84069],[93.68565,25.84367],[93.6883,25.84595],[93.69143,25.84385],[93.69469,25.84799],[93.69923,25.84657],[93.70113,25.84957],[93.69965,25.84551],[93.70088,25.84327],[93.70781,25.84781],[93.71183,25.84414],[93.71432,25.84451],[93.70208,25.85154],[93.68153,25.90439],[93.68476,25.9037],[93.69398,25.91172],[93.70088,25.91066],[93.70545,25.91492],[93.70663,25.91883],[93.71362,25.91681],[93.71869,25.91985],[93.72821,25.92058],[93.73397,25.92389],[93.73615,25.92276],[93.73703,25.92515],[93.73864,25.92532],[93.73655,25.92767],[93.73953,25.92982],[93.73953,25.93179],[93.74764,25.93492],[93.75131,25.93281],[93.75202,25.93596],[93.7462,25.9387],[93.74512,25.94234],[93.74714,25.94318],[93.75038,25.94087],[93.75246,25.94212],[93.75293,25.94667],[93.75846,25.94551],[93.75865,25.95262],[93.76181,25.95114],[93.76421,25.95444],[93.76419,25.95085],[93.76796,25.95101],[93.76823,25.95359],[93.76355,25.95937],[93.76952,25.95875],[93.77003,25.96126],[93.76814,25.96742],[93.76458,25.96853],[93.76545,25.96975],[93.77142,25.96799],[93.77358,25.97048],[93.77719,25.96824],[93.77715,25.96644],[93.77446,25.96553],[93.77509,25.96139],[93.77861,25.9603],[93.7769,25.95812],[93.78032,25.95648],[93.78327,25.95041],[93.78589,25.94967],[93.78734,25.94658],[93.78463,25.94387],[93.78726,25.94389],[93.78674,25.93821],[93.78989,25.93392],[93.78647,25.9321],[93.7879,25.93146],[93.78735,25.93013],[93.78998,25.92975],[93.78901,25.92806],[93.79099,25.92623],[93.78915,25.92226],[93.79052,25.92006],[93.78872,25.91689],[93.79186,25.91556],[93.79216,25.91291],[93.7943,25.91266],[93.79426,25.90756],[93.79201,25.9066],[93.79567,25.90651],[93.79568,25.90024],[93.79401,25.89952],[93.79352,25.89556],[93.79537,25.89238],[93.79205,25.89134],[93.79203,25.88914],[93.7892,25.88967],[93.78416,25.88434],[93.78476,25.87995],[93.78735,25.87688],[93.78517,25.87005],[93.78895,25.87011],[93.78984,25.86781],[93.78497,25.86426],[93.78443,25.85842],[93.78141,25.85649],[93.77853,25.85687],[93.78113,25.85401],[93.77754,25.84981],[93.78111,25.84459],[93.77782,25.84241],[93.77816,25.84012],[93.78036,25.84086],[93.78145,25.8395],[93.78033,25.83543],[93.78479,25.82903],[93.78424,25.82617],[93.78709,25.82216],[93.78751,25.81576],[93.79005,25.81123],[93.79547,25.80893],[93.80384,25.81142],[93.8063,25.81689],[93.81639,25.82261],[93.82115,25.83874],[93.82526,25.8444],[93.82972,25.84651],[93.83048,25.84925],[93.8397,25.85661],[93.85226,25.85823],[93.85857,25.85369],[93.86918,25.85093],[93.87611,25.84248],[93.8818,25.84335],[93.88654,25.84832],[93.88997,25.85864],[93.89604,25.85786],[93.90195,25.87085],[93.90751,25.87252],[93.91157,25.87652],[93.91088,25.87945],[93.916,25.8837],[93.93398,25.88525],[93.93542,25.89445],[93.93797,25.89631],[93.94432,25.89552],[93.94501,25.89764],[93.95166,25.89857],[93.95977,25.90211],[93.96107,25.90123],[93.9667,25.90589],[93.97121,25.91276],[93.9787,25.91673],[93.97799,25.92807],[93.96996,25.93678],[93.96871,25.95726],[93.95415,25.96926],[93.95915,25.99433],[93.953,26.00297],[93.96054,26.01536],[93.9627,26.02576],[93.96247,26.03654],[93.97039,26.04035],[93.97076,26.04642],[93.98739,26.06679],[93.98153,26.08124],[93.98274,26.08336],[93.98865,26.08634],[93.98948,26.09753],[93.99793,26.10956],[93.99577,26.1122],[93.98874,26.11082],[93.98676,26.1139],[93.99387,26.11866],[93.99349,26.12394],[93.99782,26.12877],[93.98887,26.1282],[93.98724,26.13108],[93.99086,26.13364],[93.99831,26.13124],[94.00217,26.13443],[94.0036,26.14423],[94.00083,26.14698],[93.99591,26.14642],[93.99452,26.14831],[93.99658,26.15347],[94.0011,26.1552],[94.00366,26.16011],[94.00137,26.16578],[94.00261,26.17087],[94.00108,26.17227],[94.00781,26.1825],[94.01536,26.18402],[94.02179,26.19381],[94.03203,26.19754],[94.03646,26.22605],[94.0424,26.2345],[94.04769,26.24936],[94.05608,26.25501],[94.06786,26.25697],[94.07092,26.26232],[94.07462,26.26438],[94.07471,26.27304],[94.07224,26.27611],[94.07473,26.2836],[94.0841,26.28334],[94.08427,26.28897],[94.09778,26.30196],[94.10078,26.30863],[94.09971,26.3139],[94.10251,26.31523],[94.10505,26.31995],[94.10968,26.31992],[94.11206,26.31799],[94.12168,26.31776],[94.11498,26.32395],[94.11593,26.32969],[94.11975,26.3288],[94.12492,26.33081],[94.12838,26.33036],[94.13873,26.33628],[94.14099,26.33531],[94.14101,26.33137],[94.14506,26.33059],[94.14758,26.33346],[94.16287,26.33551],[94.16718,26.33932],[94.17164,26.33796],[94.17456,26.34046],[94.17759,26.34642],[94.17261,26.35059],[94.16871,26.35093],[94.16706,26.34799],[94.16203,26.34716],[94.16016,26.35429],[94.17113,26.36275],[94.17411,26.37072],[94.17223,26.37365],[94.17758,26.38201],[94.17319,26.40328],[94.17401,26.40951],[94.17191,26.41584],[94.17572,26.42443],[94.17173,26.42978],[94.17613,26.43642],[94.18523,26.45843],[94.19405,26.46124],[94.20266,26.46906],[94.20249,26.47278],[94.20751,26.48647],[94.22127,26.49813],[94.23662,26.50614],[94.24872,26.52497],[94.24782,26.52821],[94.25332,26.53279],[94.25634,26.54122],[94.27064,26.54928],[94.27151,26.55155],[94.28479,26.56107],[94.28127,26.54865],[94.28614,26.54251],[94.28194,26.54059],[94.28096,26.53506],[94.28291,26.5294],[94.28176,26.5245],[94.28656,26.51522],[94.28582,26.51234],[94.28338,26.51075],[94.28323,26.50497],[94.29006,26.48877],[94.28975,26.47971],[94.2923,26.47757],[94.29157,26.47522],[94.29324,26.47429],[94.29343,26.4711],[94.29928,26.46682],[94.29992,26.46365],[94.30351,26.46416],[94.30578,26.46323],[94.30671,26.46079],[94.30798,26.46253],[94.31662,26.45832],[94.31844,26.46528],[94.32385,26.46551],[94.32128,26.47102],[94.32257,26.47244],[94.31956,26.47421],[94.3216,26.47566],[94.32647,26.47544],[94.32552,26.48195],[94.33041,26.4795],[94.332,26.48058],[94.33394,26.47933],[94.33631,26.48205],[94.33944,26.4805],[94.34081,26.48554],[94.34386,26.48471],[94.34469,26.48875],[94.34686,26.486],[94.34927,26.4911],[94.35285,26.49006],[94.35011,26.49243],[94.34665,26.49207],[94.34947,26.49377],[94.34957,26.49626],[94.35296,26.49928],[94.35064,26.50242],[94.34763,26.5032],[94.34779,26.50446],[94.35421,26.50306],[94.35748,26.50518],[94.36271,26.50566],[94.36563,26.50354],[94.36843,26.50596],[94.36932,26.50466],[94.37217,26.50604],[94.37468,26.50845],[94.3713,26.51443],[94.3731,26.51494],[94.37508,26.51282],[94.37626,26.51382],[94.37608,26.51567],[94.37336,26.51711],[94.37565,26.51818],[94.37614,26.52178],[94.3782,26.52117],[94.38095,26.5258],[94.3852,26.52578],[94.38544,26.53053],[94.39,26.52691],[94.39142,26.53035],[94.39326,26.52738],[94.39577,26.52733],[94.39759,26.52988],[94.39525,26.53361],[94.39819,26.53525],[94.40088,26.53415],[94.39777,26.53862],[94.3999,26.5403],[94.40265,26.53947],[94.40272,26.54135],[94.3966,26.54271],[94.40111,26.54289],[94.40308,26.54525],[94.40616,26.54403],[94.4062,26.54584],[94.40123,26.54828],[94.40627,26.54919],[94.40498,26.5542],[94.402,26.55467],[94.40648,26.55575],[94.40342,26.55827],[94.40734,26.56033],[94.40657,26.56186],[94.40411,26.56143],[94.40621,26.56271],[94.40585,26.56788],[94.41125,26.57215],[94.40993,26.57652],[94.41338,26.57719],[94.41163,26.57943],[94.4122,26.58297],[94.40959,26.58483],[94.40938,26.5877],[94.40749,26.5879],[94.40767,26.59163],[94.40188,26.59356],[94.40259,26.60313],[94.40507,26.60389],[94.40556,26.60563],[94.40292,26.61057],[94.42574,26.61715],[94.4356,26.62204],[94.45128,26.63629],[94.45273,26.63407],[94.45515,26.63547],[94.4536,26.63194],[94.45793,26.6336],[94.46549,26.63306],[94.4598,26.63685],[94.45908,26.64461],[94.45315,26.65255],[94.4541,26.65391],[94.45845,26.65354],[94.46028,26.66163],[94.48506,26.66785],[94.49267,26.66589],[94.50147,26.67229],[94.50514,26.67865],[94.50905,26.68023],[94.50825,26.6853],[94.51038,26.68477],[94.51329,26.68009],[94.51758,26.68193],[94.5177,26.68732],[94.52081,26.69416],[94.5207,26.69921],[94.52421,26.69576],[94.52654,26.69895],[94.5336,26.70131],[94.53926,26.70618],[94.54519,26.70523],[94.54791,26.70632],[94.5503,26.70172],[94.55503,26.70507],[94.56235,26.70507],[94.56098,26.70056],[94.56243,26.69553],[94.55939,26.68643],[94.56649,26.68356],[94.57157,26.68664],[94.56747,26.68748],[94.5664,26.69007],[94.56788,26.69292],[94.57209,26.69457],[94.57732,26.70066],[94.58246,26.69739],[94.59388,26.6972],[94.59153,26.70016],[94.59444,26.70226],[94.59252,26.70496],[94.59337,26.71497],[94.5973,26.71679],[94.60228,26.71162],[94.60334,26.71235],[94.60109,26.71455],[94.60241,26.71653],[94.60153,26.71911],[94.59416,26.71908],[94.59109,26.7206],[94.59292,26.72325],[94.59215,26.72488],[94.59562,26.72629],[94.59355,26.73146],[94.59707,26.73455],[94.60608,26.73389],[94.60769,26.73721],[94.60964,26.73694],[94.60806,26.72883],[94.61582,26.72656],[94.62066,26.72313],[94.61897,26.713],[94.6203,26.71212],[94.62427,26.71529],[94.63582,26.71709],[94.64164,26.72041],[94.64876,26.72042],[94.65302,26.71875],[94.69235,26.73193],[94.70717,26.74631],[94.73689,26.76372],[94.74068,26.77184],[94.74018,26.77598],[94.74835,26.7727],[94.75182,26.76619],[94.75833,26.76601],[94.76059,26.77541],[94.7668,26.77756],[94.7674,26.78534],[94.77022,26.78904],[94.77374,26.79061],[94.77566,26.78976],[94.78873,26.79556],[94.79117,26.79975],[94.79978,26.79978],[94.80272,26.80132],[94.80319,26.80617],[94.79578,26.81008],[94.79525,26.81442],[94.80379,26.81367],[94.80622,26.81513],[94.80646,26.81842],[94.81446,26.81954],[94.81317,26.83365],[94.81562,26.8373],[94.81945,26.83759],[94.82112,26.8417],[94.81749,26.84751],[94.8242,26.85424],[94.82866,26.85532],[94.83454,26.86035],[94.83647,26.86877],[94.8432,26.86851],[94.85012,26.87459],[94.85107,26.8811],[94.85784,26.88848],[94.85845,26.89221],[94.86523,26.90398],[94.86601,26.90873],[94.87359,26.91752],[94.89064,26.92954],[94.89782,26.93125],[94.90245,26.93467],[94.91437,26.93677],[94.91672,26.94125],[94.92349,26.94637],[94.92561,26.94079],[94.93085,26.9369],[94.93085,26.93256],[94.94026,26.93356],[94.94186,26.93531],[94.95324,26.93761],[94.9555,26.9401],[94.9575,26.93748],[94.96124,26.93712],[94.96718,26.92351],[94.9765,26.92128],[94.98262,26.913],[94.98998,26.91421],[94.99129,26.92081],[95.00025,26.91951],[95.00415,26.92089],[95.01676,26.92106],[95.03413,26.9356],[95.04408,26.93874],[95.04969,26.93876],[95.06786,26.9483],[95.08504,26.95164],[95.10181,26.96179],[95.10608,26.96549],[95.10792,26.97594],[95.11196,26.98066],[95.12421,26.98544],[95.1388,26.99485],[95.14476,26.99585],[95.15018,26.99924],[95.18237,27.02544],[95.19306,27.03593],[95.19424,27.03413],[95.19321,27.03172],[95.19479,27.0312],[95.19618,27.03184],[95.19666,27.03699],[95.20322,27.03588],[95.20466,27.03771],[95.20527,27.03241],[95.20723,27.03234],[95.20752,27.03045],[95.21062,27.03097],[95.20948,27.0304],[95.21069,27.02854],[95.21386,27.03096],[95.2154,27.03016],[95.21919,27.03195],[95.22353,27.03606],[95.22687,27.03443],[95.23032,27.0357],[95.23108,27.03909],[95.22933,27.04152],[95.23223,27.04275],[95.23302,27.03748],[95.23947,27.03639],[95.24384,27.02606],[95.24644,27.0238],[95.25657,27.03041],[95.25899,27.03027],[95.25844,27.03382],[95.26007,27.03555],[95.26339,27.03507],[95.27158,27.04118],[95.27713,27.04238],[95.27585,27.04408],[95.27768,27.04832],[95.27524,27.04997],[95.27632,27.05219],[95.29183,27.06649],[95.30004,27.07005],[95.31681,27.08281],[95.32927,27.08766],[95.35476,27.10391],[95.3649,27.10818],[95.36865,27.10709],[95.36376,27.10255],[95.3712,27.10079],[95.37012,27.09449],[95.37467,27.09268],[95.38302,27.0982],[95.38199,27.10028],[95.38464,27.10554],[95.39854,27.10872],[95.42065,27.12578],[95.43961,27.12592],[95.4406,27.12874],[95.44473,27.12879],[95.44242,27.13139],[95.44441,27.13521],[95.4493,27.13459],[95.44941,27.12968],[95.45327,27.12943],[95.45817,27.13796],[95.45657,27.14055],[95.45748,27.14413],[95.46222,27.14966],[95.45965,27.15374],[95.45332,27.15733],[95.46252,27.16171],[95.46551,27.16636],[95.46471,27.17221],[95.45952,27.17569],[95.4666,27.18164],[95.46017,27.19134],[95.46246,27.19437],[95.45914,27.19543],[95.45842,27.20018],[95.45589,27.20253],[95.45758,27.20878],[95.46716,27.21337],[95.46754,27.21832],[95.47244,27.21893],[95.47147,27.22272],[95.47745,27.22676],[95.47966,27.23096],[95.47884,27.23406],[95.48293,27.23652],[95.48426,27.24125],[95.49209,27.24554],[95.49963,27.24618],[95.50467,27.24936],[95.50881,27.26187],[95.51147,27.26191],[95.51504,27.25794],[95.5182,27.25756],[95.52551,27.26377],[95.52789,27.26308],[95.53012,27.26449],[95.52982,27.26182],[95.53162,27.26105],[95.53452,27.26459],[95.53515,27.26156],[95.53711,27.2625],[95.54203,27.25901],[95.54512,27.25999],[95.54851,27.25732],[95.54823,27.25394],[95.55195,27.25315],[95.55099,27.25045],[95.55354,27.24886],[95.55808,27.24898],[95.56431,27.24467],[95.57465,27.24364],[95.5752,27.23978],[95.57727,27.23807],[95.57456,27.23436],[95.57826,27.23207],[95.58046,27.22781],[95.58298,27.22851],[95.58454,27.22489],[95.58757,27.22294],[95.60382,27.22422],[95.61062,27.2276],[95.6122,27.23021],[95.61757,27.2309],[95.61903,27.23248],[95.63234,27.22968],[95.67603,27.24696],[95.68153,27.25174],[95.69236,27.25321],[95.70151,27.24857],[95.70788,27.25006],[95.71198,27.25284],[95.71378,27.25024],[95.72021,27.24948],[95.72713,27.25965],[95.73469,27.26039],[95.73618,27.26326],[95.74211,27.26666],[95.7477,27.26575],[95.75686,27.26864],[95.76518,27.26726],[95.77525,27.27041],[95.77958,27.26975],[95.78059,27.27246],[95.78818,27.27672],[95.7879,27.27865],[95.79522,27.28253],[95.79954,27.28234],[95.80089,27.28427],[95.80262,27.28294],[95.79945,27.27655],[95.80553,27.2758],[95.80516,27.27295],[95.81538,27.27854],[95.82332,27.27887],[95.8505,27.28659],[95.85931,27.28722],[95.85382,27.2792],[95.85643,27.27106],[95.86383,27.26644],[95.86937,27.26002],[95.8765,27.25964],[95.88132,27.25591],[95.89243,27.25528],[95.89418,27.25692],[95.89462,27.26101],[95.89356,27.26757],[95.89945,27.26868],[95.90008,27.27425],[95.90435,27.27392],[95.89709,27.28054],[95.89721,27.28216],[95.90111,27.28392],[95.90606,27.28222],[95.90717,27.28897],[95.91338,27.28914],[95.91478,27.29201],[95.91799,27.29134],[95.93012,27.30028],[95.93756,27.30082],[95.94172,27.30523],[95.94663,27.30379],[95.95343,27.30892],[95.96004,27.31095],[95.95656,27.31257],[95.95505,27.31768],[95.96103,27.31644],[95.96276,27.32314],[95.96912,27.32241],[95.97556,27.32446],[95.97209,27.32744],[95.96772,27.32567],[95.96529,27.32788],[95.97101,27.33282],[95.97158,27.33655],[95.97654,27.33738],[95.98688,27.34561],[95.98921,27.3565],[95.99329,27.35794],[95.9965,27.35636],[96.00249,27.36074],[96.00753,27.36063],[96.0127,27.36503],[96.01775,27.36492],[96.01788,27.36943],[95.99817,27.38789],[95.99647,27.3946],[95.99349,27.39639],[95.99014,27.40236],[95.98456,27.40445],[95.9833,27.41183],[95.97405,27.41137],[95.97022,27.41491],[95.97078,27.41683],[95.97515,27.41746],[95.97539,27.41939],[95.97408,27.42169],[95.96962,27.4235],[95.96935,27.42789],[95.96547,27.42701],[95.96456,27.41805],[95.96179,27.41801],[95.9632,27.42721],[95.96034,27.42903],[95.95675,27.4265],[95.95475,27.41962],[95.95113,27.42397],[95.94519,27.42664],[95.94745,27.43299],[95.94131,27.43729],[95.93444,27.43564],[95.92787,27.43847],[95.91823,27.43473],[95.91089,27.43577],[95.90798,27.43435],[95.90001,27.42202],[95.89867,27.41286],[95.89099,27.40121],[95.88573,27.39815],[95.88403,27.4025],[95.8883,27.40899],[95.88759,27.41166],[95.88395,27.41402],[95.88494,27.43212],[95.88322,27.43532],[95.87875,27.43612],[95.87567,27.43479],[95.87088,27.42635],[95.85714,27.41988],[95.85702,27.41564],[95.86245,27.41153],[95.8625,27.40945],[95.86014,27.40801],[95.85296,27.41111],[95.85002,27.41781],[95.84451,27.42158],[95.84234,27.42775],[95.84729,27.43619],[95.84682,27.43856],[95.84947,27.44161],[95.85675,27.44493],[95.85332,27.45691],[95.85655,27.46126],[95.87069,27.46665],[95.87154,27.47611],[95.87389,27.48116],[95.87294,27.49078],[95.8743,27.49325],[95.88003,27.49703],[95.88685,27.49708],[95.8843,27.50105],[95.8788,27.50489],[95.87584,27.51242],[95.8785,27.51876],[95.87665,27.54428],[95.8758,27.54649],[95.87371,27.547],[95.8703,27.54528],[95.86263,27.54537],[95.86074,27.5431],[95.8529,27.55279],[95.84127,27.56205],[95.8363,27.55926],[95.83335,27.56002],[95.82344,27.57448],[95.81434,27.57425],[95.81192,27.58322],[95.8138,27.58898],[95.81845,27.59539],[95.8158,27.59867],[95.80557,27.60095],[95.79533,27.59766],[95.79064,27.59965],[95.78943,27.604],[95.79034,27.61174],[95.78514,27.61561],[95.78003,27.61662],[95.77832,27.61938],[95.77853,27.62398],[95.77957,27.62564],[95.7895,27.62631],[95.7883,27.63484],[95.79443,27.63887],[95.79603,27.63786],[95.79578,27.64173],[95.79015,27.64476],[95.78784,27.64396],[95.78622,27.64632],[95.77432,27.6508],[95.77043,27.6577],[95.77297,27.66204],[95.77197,27.66409],[95.77514,27.67432],[95.77906,27.67728],[95.79046,27.68014],[95.78616,27.68175],[95.78513,27.68514],[95.783,27.68464],[95.78293,27.68721],[95.77723,27.68755],[95.77331,27.6849],[95.76787,27.68699],[95.76715,27.69049],[95.76539,27.69077],[95.76378,27.69376],[95.76573,27.69757],[95.76455,27.6997],[95.76803,27.70209],[95.7629,27.70902],[95.76418,27.71113],[95.76251,27.71316],[95.76536,27.71466],[95.75419,27.71842],[95.75226,27.72092],[95.75249,27.72423],[95.75415,27.7257],[95.75903,27.72704],[95.76557,27.72639],[95.77938,27.73371],[95.78055,27.73692],[95.77798,27.74246],[95.776,27.75362],[95.78689,27.75967],[95.7944,27.76908],[95.80035,27.77369],[95.80392,27.7846],[95.80955,27.78908],[95.81092,27.79653],[95.81665,27.80269],[95.82659,27.80872],[95.83807,27.81023],[95.83776,27.82412],[95.85439,27.83002],[95.87041,27.83267],[95.88366,27.84611],[95.88845,27.85657],[95.89114,27.85685],[95.89025,27.85999],[95.89534,27.85737],[95.89475,27.862],[95.90492,27.86212],[95.90146,27.86648],[95.90169,27.86847],[95.90335,27.86891],[95.90658,27.866],[95.90859,27.86871],[95.90729,27.87044],[95.9107,27.87019],[95.91012,27.87241],[95.91454,27.87576],[95.91702,27.88046],[95.91555,27.88376],[95.91944,27.8806],[95.92509,27.88168],[95.92076,27.88464],[95.9168,27.885],[95.9155,27.88939],[95.91768,27.89007],[95.9237,27.8881],[95.91923,27.89504],[95.92597,27.89534],[95.92633,27.89888],[95.92785,27.8987],[95.92849,27.89513],[95.93775,27.8982],[95.93178,27.90014],[95.92983,27.90274],[95.94105,27.90561],[95.93553,27.90749],[95.93815,27.91253],[95.94266,27.91069],[95.94712,27.91745],[95.95269,27.92009],[95.94855,27.92439],[95.95476,27.9312],[95.94924,27.9312],[95.9483,27.93712],[95.95456,27.94114],[95.9652,27.95167],[95.97174,27.96245],[95.82388,27.97148],[95.60528,27.95462],[95.59371,27.94677],[95.58611,27.93672],[95.576,27.9397],[95.56859,27.9359],[95.56481,27.92927],[95.56354,27.91926],[95.55383,27.91373],[95.54467,27.91084],[95.54219,27.90627],[95.54427,27.89978],[95.53994,27.89646],[95.53404,27.89814],[95.52616,27.89062],[95.52013,27.88124],[95.37958,27.83918],[95.30876,27.86801],[94.92233,27.74992],[94.85235,27.7276],[94.84841,27.71711],[94.84783,27.70557],[94.84097,27.70061],[94.82078,27.69208],[94.80828,27.69198],[94.79698,27.69563],[94.79373,27.69518],[94.79187,27.68809],[94.78905,27.68518],[94.78411,27.6839],[94.77866,27.6797],[94.76916,27.67952],[94.76093,27.66504],[94.75431,27.66055],[94.74137,27.65989],[94.73573,27.66329],[94.72897,27.66453],[94.72514,27.669],[94.72051,27.66692],[94.71602,27.65753],[94.70904,27.65658],[94.70049,27.66145],[94.6909,27.66174],[94.68791,27.66514],[94.6838,27.66017],[94.68665,27.65099],[94.68268,27.64589],[94.67911,27.64515],[94.67275,27.64722],[94.66265,27.64533],[94.6574,27.64178],[94.64668,27.63807],[94.64137,27.62944],[94.63319,27.62416],[94.62846,27.62454],[94.62347,27.62781],[94.62087,27.62495],[94.61438,27.62397],[94.60659,27.61862],[94.60289,27.62123],[94.60001,27.61817],[94.59559,27.61968],[94.58755,27.61846],[94.57974,27.6123],[94.57685,27.60589],[94.57409,27.60381],[94.56857,27.60234],[94.56222,27.6049],[94.55532,27.60075],[94.54459,27.60103],[94.53596,27.59253],[94.53214,27.59457],[94.52958,27.59139],[94.52201,27.59142],[94.52151,27.58455],[94.51385,27.58011],[94.50247,27.57741],[94.50141,27.57399],[94.49896,27.57217],[94.4778,27.57614],[94.46791,27.56115],[94.46173,27.55524],[94.45644,27.55984],[94.45494,27.5666],[94.45133,27.57176],[94.4396,27.58122],[94.43333,27.58842],[94.43171,27.59162],[94.43168,27.60033],[94.41846,27.59752],[94.40161,27.58498],[94.39239,27.58902],[94.38859,27.58479],[94.3819,27.5816],[94.3765,27.58237],[94.36989,27.57475],[94.36401,27.57435],[94.35914,27.57693],[94.35068,27.57711],[94.34492,27.58213],[94.33824,27.58122],[94.33697,27.57919],[94.33283,27.58695],[94.32432,27.58462],[94.32278,27.58864],[94.30926,27.59078],[94.30182,27.60102],[94.29826,27.60193],[94.28985,27.59616],[94.2883,27.58926],[94.2774,27.58944],[94.27381,27.59497],[94.27465,27.59983],[94.27247,27.60294],[94.2564,27.61051],[94.25426,27.61423],[94.25468,27.61579],[94.26094,27.6181],[94.26058,27.62187],[94.2631,27.62426],[94.26558,27.62421],[94.26711,27.62735],[94.26741,27.62949],[94.26171,27.63587],[94.25441,27.63565],[94.25146,27.63763],[94.24847,27.634],[94.23756,27.63268],[94.22279,27.61141],[94.21736,27.60725],[94.20959,27.60891],[94.20951,27.60508],[94.21337,27.6002],[94.22664,27.59774],[94.22283,27.5882],[94.22495,27.57409],[94.23481,27.56916],[94.24672,27.56947],[94.2587,27.55546],[94.2594,27.54905],[94.25687,27.54171],[94.25749,27.53703],[94.26826,27.52084],[94.22082,27.50528],[94.214,27.5008],[94.20905,27.49253],[94.20064,27.49488],[94.18928,27.4924],[94.1842,27.48665],[94.17623,27.48215],[94.16913,27.48123],[94.16454,27.47678],[94.15667,27.47486],[94.15942,27.46162],[94.15508,27.4591],[94.15538,27.45697],[94.13146,27.44092],[94.12769,27.43459],[94.11786,27.42969],[94.10494,27.41397],[94.0896,27.40705],[94.07575,27.38968],[94.06921,27.37346],[94.06085,27.3653],[94.06146,27.36373],[94.05981,27.36154],[94.05404,27.36034],[94.04055,27.3515],[94.03092,27.34839],[94.03026,27.34566],[94.02784,27.34684],[94.0258,27.34484],[94.02211,27.3462],[94.01157,27.3385],[93.99125,27.32835],[93.95527,27.29326],[93.92824,27.26422],[93.8994,27.23909],[93.86423,27.19615],[93.85987,27.19348],[93.83871,27.17234],[93.82535,27.16848],[93.80599,27.14876],[93.80539,27.13713],[93.79597,27.13765],[93.79447,27.13452],[93.79691,27.12894],[93.80319,27.13278],[93.80702,27.13066],[93.81212,27.13113],[93.81294,27.1293],[93.80943,27.12334],[93.81405,27.12128],[93.81994,27.12275],[93.82507,27.11642],[93.8266,27.11206],[93.82556,27.10359],[93.82667,27.09697],[93.8314,27.09091],[93.8315,27.08678],[93.83777,27.08537],[93.8332,27.08156],[93.8356,27.0782],[93.83567,27.0743],[93.8298,27.06797],[93.82861,27.06885],[93.82923,27.06681],[93.82741,27.06594],[93.82199,27.06777],[93.82121,27.0644],[93.81499,27.06146],[93.81074,27.06747],[93.80841,27.06593],[93.81139,27.05894],[93.80768,27.05981],[93.80336,27.05806],[93.79684,27.06527],[93.79527,27.07246],[93.79378,27.07234],[93.79304,27.06828],[93.79879,27.06239],[93.80022,27.05785],[93.79522,27.05701],[93.79441,27.06192],[93.79383,27.05452],[93.78942,27.0506],[93.78379,27.05145],[93.78304,27.06435],[93.78119,27.06552],[93.78109,27.05882],[93.77957,27.05806],[93.77828,27.04894],[93.77087,27.06204],[93.77185,27.05408],[93.76786,27.05128],[93.76799,27.05445],[93.76673,27.05291],[93.76742,27.03944],[93.74353,27.02769],[93.73298,27.02594],[93.72338,27.02081],[93.70891,27.00811],[93.69367,26.989],[93.67077,26.97149],[93.65744,26.96632],[93.62746,26.96316],[93.61473,26.9603],[93.58667,26.95047],[93.56036,26.95273],[93.54915,26.95001],[93.54494,26.95123],[93.54101,26.94897],[93.52112,26.9477],[93.50575,26.94339],[93.4891,26.93618],[93.48626,26.94228],[93.47473,26.93932],[93.47065,26.9366],[93.46249,26.93788],[93.44877,26.95078],[93.38049,26.95922],[93.32272,26.96001],[93.24682,26.95125],[93.20095,26.94322],[93.17256,26.93599],[93.10737,26.92576],[93.08823,26.91439],[93.06272,26.92227],[93.02186,26.91342],[92.98189,26.93605],[92.91715,26.96293],[92.91553,26.97392],[92.91841,26.98231],[92.88661,26.99975],[92.85727,27.00164],[92.83886,27.00485],[92.82374,27.00934],[92.79348,27.02285],[92.77835,27.02282],[92.76322,27.02731],[92.75315,27.02278],[92.73299,27.02275],[92.72292,27.01821],[92.71283,27.02271],[92.69771,27.02268],[92.69265,27.02718],[92.68761,27.02717],[92.67752,27.03166],[92.67248,27.03165],[92.66745,27.02712],[92.6448,26.98666],[92.58334,26.95954],[92.55419,26.95744],[92.49686,26.96337],[92.44747,26.95881],[92.42581,26.94104],[92.41201,26.94276],[92.39833,26.92469],[92.3671,26.92868],[92.36319,26.93454],[92.30266,26.92264],[92.30296,26.90714],[92.27609,26.902],[92.25519,26.90961],[92.23802,26.90579],[92.1948,26.88996],[92.16986,26.89165],[92.12002,26.88898],[92.11438,26.89358],[92.10192,26.88106],[92.10265,26.86717],[92.0782,26.85554],[92.05672,26.84738],[92.01713,26.85001],[91.9835,26.85819],[91.97047,26.87066],[91.96421,26.88253],[91.9436,26.89499],[91.89174,26.91906],[91.88494,26.91667],[91.85911,26.91334],[91.82415,26.86404],[91.72081,26.81181],[91.70459,26.81295],[91.6898,26.80645],[91.62552,26.82087],[91.59242,26.80519],[91.49511,26.79121],[91.46395,26.80235],[91.44555,26.81222],[91.40765,26.8396],[91.37601,26.79523],[91.33725,26.78086],[91.29663,26.78697],[91.27709,26.80031],[91.23689,26.812],[91.19213,26.81342],[91.14585,26.81087],[91.09756,26.82199],[91.05406,26.78099],[90.99187,26.79064],[90.95928,26.78448],[90.95692,26.78162],[90.9565,26.78777],[90.81643,26.77598],[90.74236,26.77483],[90.71728,26.76827],[90.69326,26.77064],[90.67598,26.78409],[90.64657,26.77658],[90.63444,26.79381],[90.58455,26.80374],[90.54661,26.81664],[90.41665,26.90453],[90.35656,26.90066],[90.35027,26.88913],[90.34779,26.87529],[90.3003,26.84822],[90.28329,26.85283],[90.24878,26.85904],[90.2305,26.85891],[90.20077,26.83529],[90.18767,26.80681],[90.19452,26.77327],[90.13988,26.75362],[90.04955,26.73037],[90.00824,26.73215],[89.96706,26.72347],[89.89734,26.72434],[89.86292,26.73707],[89.85895,26.73492],[89.86449,26.73002],[89.86207,26.71645],[89.86552,26.70551],[89.86334,26.70081],[89.87477,26.68227],[89.87235,26.67248],[89.87419,26.66672],[89.87078,26.66065],[89.87046,26.65533],[89.87693,26.64851],[89.86713,26.63494],[89.85916,26.62956],[89.85825,26.62338],[89.86415,26.61573],[89.87842,26.61553],[89.87953,26.6093],[89.87377,26.59134],[89.8826,26.58339],[89.87292,26.5783],[89.87116,26.57907],[89.86599,26.57677],[89.86449,26.57324],[89.86736,26.56948],[89.86899,26.55387],[89.86318,26.54164],[89.86586,26.53228],[89.85662,26.52073],[89.85604,26.51478],[89.85878,26.51261],[89.85676,26.5066],[89.85683,26.50076],[89.85884,26.49991],[89.85397,26.49183],[89.85414,26.48817],[89.85633,26.4854],[89.86237,26.48355],[89.86159,26.48188],[89.86482,26.46912],[89.86863,26.46861],[89.87244,26.4645],[89.87043,26.4567],[89.87215,26.45207],[89.8642,26.44676],[89.86266,26.44292],[89.85856,26.43957],[89.8587,26.43556],[89.85568,26.4326],[89.85772,26.42993],[89.85587,26.42492],[89.84916,26.42279],[89.84976,26.42046],[89.85671,26.41494],[89.85748,26.41198],[89.83525,26.41202],[89.83297,26.40838],[89.83243,26.40001],[89.82995,26.397],[89.83031,26.39358],[89.83219,26.39182],[89.8376,26.39098],[89.84328,26.3938],[89.8472,26.3989],[89.84781,26.40415],[89.84988,26.40359],[89.85734,26.39613],[89.85542,26.39087],[89.8589,26.38403],[89.8545,26.38216],[89.85148,26.38525],[89.84705,26.38525],[89.84302,26.37781],[89.83967,26.37862],[89.83525,26.38396],[89.83202,26.38392],[89.82592,26.37763],[89.82948,26.37078],[89.82764,26.36631],[89.82207,26.36315],[89.82197,26.35967],[89.82577,26.35485],[89.82276,26.35163],[89.81538,26.35258],[89.81283,26.3571],[89.81331,26.36151],[89.81998,26.36663],[89.82192,26.37181],[89.8201,26.37024],[89.81372,26.37105],[89.80482,26.36284],[89.79305,26.35868],[89.78318,26.3514],[89.78154,26.34163],[89.78373,26.33209],[89.78107,26.32786],[89.76926,26.32429],[89.76909,26.32129],[89.76428,26.31607],[89.76031,26.3166],[89.75535,26.32321],[89.75124,26.32095],[89.75414,26.30222],[89.76089,26.2921],[89.75812,26.28779],[89.7478,26.29126],[89.74484,26.29689],[89.73691,26.29261],[89.72632,26.29471],[89.72139,26.29951],[89.72585,26.30722],[89.72371,26.30928],[89.71981,26.30732],[89.71783,26.29582],[89.72413,26.28764],[89.735,26.27767],[89.73854,26.26994],[89.73428,26.26703],[89.73557,26.26149],[89.734,26.25941],[89.72202,26.25746],[89.71258,26.26191],[89.71471,26.26994],[89.71155,26.27126],[89.70585,26.27043],[89.70262,26.25786],[89.70583,26.25621],[89.71443,26.25825],[89.71708,26.25737],[89.71845,26.25585],[89.71648,26.24753],[89.71788,26.24515],[89.72629,26.24287],[89.73183,26.23988],[89.73216,26.23783],[89.72707,26.23316],[89.7141,26.23025],[89.71364,26.22212],[89.71004,26.21784],[89.70447,26.21719],[89.70119,26.21994],[89.70039,26.21845],[89.70211,26.2152],[89.7075,26.21228],[89.71287,26.21246],[89.7257,26.21818],[89.73171,26.21616],[89.73323,26.21199],[89.72721,26.20596],[89.71916,26.20662],[89.7116,26.20297],[89.71781,26.20135],[89.72037,26.1956],[89.71911,26.19229],[89.71307,26.18772],[89.7061,26.18773],[89.6986,26.19118],[89.70328,26.18299],[89.70354,26.17805],[89.71014,26.17242],[89.71365,26.17266],[89.72235,26.17771],[89.73293,26.17753],[89.73655,26.17279],[89.7289,26.17411],[89.72748,26.17196],[89.72886,26.16794],[89.72184,26.16747],[89.71698,26.16536],[89.71943,26.16631],[89.72049,26.1563],[89.74305,26.15932],[89.74766,26.15737],[89.75328,26.14842],[89.75403,26.1394],[89.76314,26.13704],[89.76657,26.13048],[89.76525,26.12478],[89.75543,26.11371],[89.75617,26.10936],[89.75787,26.10786],[89.76504,26.10954],[89.76832,26.10791],[89.76995,26.10453],[89.77632,26.10579],[89.77865,26.10813],[89.78316,26.10598],[89.78584,26.10136],[89.78338,26.1012],[89.78179,26.09823],[89.78437,26.0987],[89.78602,26.09633],[89.7831,26.09357],[89.78132,26.08344],[89.78514,26.08334],[89.79063,26.08929],[89.79485,26.08751],[89.79502,26.0833],[89.79014,26.07539],[89.7966,26.07631],[89.79495,26.07288],[89.79815,26.06572],[89.79557,26.06458],[89.79853,26.06507],[89.7973,26.06312],[89.79881,26.05958],[89.78535,26.05686],[89.78475,26.05138],[89.78731,26.05093],[89.78868,26.04871],[89.7792,26.04439],[89.77365,26.03764],[89.77657,26.03493],[89.77989,26.04042],[89.78765,26.04037],[89.78948,26.03962],[89.78768,26.03602],[89.79064,26.03429],[89.79305,26.03594],[89.79234,26.04058],[89.79364,26.04233],[89.80183,26.04026],[89.8023,26.03824],[89.7993,26.03518],[89.7978,26.03074],[89.79371,26.02813],[89.79399,26.02266],[89.79156,26.02087],[89.78782,26.02139],[89.78804,26.01921],[89.79159,26.01815],[89.7954,26.02181],[89.79419,26.02226],[89.79503,26.02319],[89.79772,26.02452],[89.8023,26.03226],[89.80504,26.04341],[89.80742,26.044],[89.81141,26.04083],[89.81388,26.03178],[89.81932,26.02582],[89.81536,26.02021],[89.81622,26.01698],[89.81896,26.01564],[89.82204,26.00993],[89.81919,26.00411],[89.82043,25.99756],[89.8186,25.99586],[89.81487,25.99787],[89.82027,25.98764],[89.82424,25.98495],[89.83594,25.98242],[89.83663,25.98657],[89.83322,25.99063],[89.83334,25.99554],[89.83093,26.00183],[89.83114,26.00985],[89.83584,26.0126],[89.84409,26.00619],[89.8477,26.00067],[89.84728,25.99677],[89.85042,25.98996],[89.86708,25.98258],[89.86728,25.97978],[89.86926,25.98149],[89.871,25.98079],[89.87333,25.97588],[89.86684,25.97203],[89.85623,25.96877],[89.84898,25.97097],[89.843,25.97085],[89.84108,25.96828],[89.83856,25.96785],[89.83854,25.96585],[89.84298,25.96409],[89.84719,25.95671],[89.8445,25.95476],[89.84934,25.94911],[89.8306,25.95517],[89.82568,25.95153],[89.82539,25.9455],[89.84235,25.94431],[89.83915,25.94108],[89.84274,25.94003],[89.84503,25.94003],[89.84858,25.94288],[89.86884,25.94439],[89.87619,25.94683],[89.88708,25.9452],[89.87811,25.92777],[89.87818,25.92423],[89.86232,25.90736],[89.86078,25.90733],[89.85683,25.8997],[89.84829,25.89208],[89.8488,25.88784],[89.83257,25.87061],[89.83568,25.85996],[89.83384,25.85406],[89.83528,25.84073],[89.82723,25.83294],[89.81654,25.8143],[89.8265,25.81021],[89.82997,25.80063],[89.82949,25.79642],[89.83127,25.79107],[89.83395,25.78836],[89.83398,25.78295],[89.83828,25.77603],[89.84033,25.76673],[89.84135,25.75899],[89.83649,25.75095],[89.82696,25.74036],[89.82837,25.72825],[89.83513,25.71576],[89.84926,25.71512],[89.85053,25.71296],[89.85193,25.70664],[89.84669,25.69562],[89.85171,25.68697],[89.85853,25.67974],[89.86355,25.66555],[89.86681,25.66277],[89.87109,25.66255],[89.87987,25.63687],[89.88179,25.62586],[89.88251,25.6172],[89.8788,25.60154],[89.87329,25.58761],[89.87564,25.58114],[89.87215,25.57317],[89.87292,25.56949],[89.87039,25.56808],[89.86729,25.56219],[89.86604,25.54619],[89.86301,25.5432],[89.85127,25.53863],[89.86013,25.51682],[89.86964,25.51091],[89.86679,25.50793],[89.85803,25.50652],[89.85564,25.50353],[89.85391,25.50424],[89.8552,25.49746],[89.84931,25.4928],[89.8505,25.48573],[89.84929,25.47392],[89.85225,25.47243],[89.85225,25.46588],[89.86543,25.47169],[89.87169,25.47735],[89.87228,25.48594],[89.87669,25.4955],[89.87681,25.5008],[89.87287,25.50742],[89.88594,25.50792],[89.88411,25.51424],[89.8807,25.51674],[89.88349,25.51911],[89.87995,25.518],[89.87734,25.51962],[89.87335,25.51689],[89.87347,25.51945],[89.87174,25.51853],[89.87149,25.52192],[89.86883,25.52149],[89.86794,25.52424],[89.86808,25.52987],[89.87883,25.5377],[89.87495,25.54373],[89.87836,25.55033],[89.8853,25.55499],[89.89247,25.55583],[89.89865,25.56051],[89.90157,25.55894],[89.90747,25.56135],[89.90959,25.56045],[89.91225,25.56317],[89.93687,25.5644],[89.94106,25.56826],[89.9538,25.57079],[89.9605,25.57445],[89.97216,25.57349],[89.97542,25.57611],[89.97854,25.58696],[89.9835,25.59125],[89.98771,25.59155],[89.99556,25.58624],[90.003,25.58542],[90.01112,25.59669],[90.01098,25.60156],[90.01685,25.60187],[90.01742,25.60502],[90.02025,25.60749],[90.0176,25.60788],[90.01859,25.61133],[90.01639,25.6098],[90.00984,25.61549],[90.00925,25.61919],[90.00421,25.62024],[90.00697,25.62332],[90.00412,25.62674],[89.99882,25.6224],[89.99519,25.62465],[89.99175,25.62408],[89.98318,25.62679],[89.98335,25.63055],[89.97916,25.63878],[89.96485,25.6468],[89.96293,25.64948],[89.95045,25.6556],[89.94674,25.66187],[89.94715,25.66615],[89.94544,25.66788],[89.94744,25.67103],[89.94292,25.67223],[89.94442,25.67926],[89.93752,25.68587],[89.93627,25.68975],[89.92358,25.69449],[89.91871,25.70515],[89.91348,25.70856],[89.9026,25.72526],[89.89913,25.72642],[89.89867,25.72957],[89.89569,25.73155],[89.8944,25.73494],[89.89474,25.74497],[89.8997,25.74714],[89.92608,25.73836],[89.93758,25.74543],[89.93523,25.75449],[89.94205,25.75584],[89.95478,25.76718],[89.95761,25.77539],[89.95536,25.77776],[89.95935,25.77993],[89.95439,25.78797],[89.95528,25.79653],[89.95843,25.80128],[89.95452,25.80391],[89.95584,25.81119],[89.94854,25.81509],[89.95106,25.82106],[89.9483,25.82352],[89.94826,25.82547],[89.95768,25.82911],[89.9587,25.82593],[89.95403,25.82504],[89.95416,25.82127],[89.962,25.82019],[89.96765,25.82252],[89.9637,25.82823],[89.96397,25.83306],[89.96587,25.83243],[89.96791,25.82777],[89.97109,25.82637],[89.9778,25.82793],[89.97793,25.83222],[89.98145,25.83551],[89.99126,25.83496],[90.00359,25.83924],[90.004,25.8413],[89.99894,25.84279],[90.0007,25.8462],[90.00916,25.84581],[90.01575,25.85073],[90.01745,25.85307],[90.01703,25.85622],[90.01912,25.85592],[90.02233,25.86014],[90.02382,25.86722],[90.02288,25.86997],[90.01949,25.87315],[90.01428,25.87188],[90.00563,25.87847],[90.01107,25.88461],[90.01386,25.88494],[90.01937,25.89208],[90.02523,25.89569],[90.03366,25.89445],[90.03419,25.89172],[90.04249,25.88767],[90.04344,25.89209],[90.04138,25.89407],[90.04644,25.89591],[90.04767,25.89982],[90.05544,25.90057],[90.05652,25.9032],[90.05558,25.90574],[90.06242,25.91022],[90.06055,25.91346],[90.06705,25.91299],[90.07054,25.91843],[90.07251,25.91852],[90.07591,25.91489],[90.08624,25.91947],[90.08542,25.92547],[90.08795,25.92555],[90.09113,25.92848],[90.09409,25.92782],[90.09211,25.93807],[90.098,25.93741],[90.10137,25.94023],[90.10108,25.94323],[90.10669,25.94231],[90.1049,25.94452],[90.10756,25.94914],[90.11231,25.95198],[90.11627,25.95688],[90.12054,25.95783],[90.11978,25.9541],[90.13172,25.95874],[90.14054,25.9573],[90.13938,25.95964],[90.14382,25.96014],[90.15109,25.96669],[90.15847,25.95715],[90.16576,25.95576],[90.17692,25.95895],[90.17721,25.95527],[90.17859,25.95522],[90.1808,25.94977],[90.18688,25.94409],[90.18876,25.94583],[90.18691,25.94685],[90.18739,25.94987],[90.19083,25.95121],[90.19242,25.95525],[90.19983,25.95695],[90.20287,25.96086],[90.20994,25.95966],[90.21149,25.95259],[90.27058,25.96031],[90.32478,25.9734],[90.32792,25.97501],[90.33153,25.98765],[90.34036,25.98834],[90.34307,25.99631],[90.34671,25.99785],[90.34971,26.00413],[90.37218,26.01127],[90.39975,26.01252],[90.40539,26.00898],[90.41115,26.00042],[90.41549,25.99882],[90.41684,25.9915],[90.42519,25.98884],[90.43022,25.98895],[90.43328,25.99132],[90.43747,25.99172],[90.44374,25.99597],[90.47613,26.00959],[90.48866,26.00339],[90.50254,25.99146],[90.50964,25.98049],[90.52046,25.97052],[90.5318,25.95601],[90.535,25.94959],[90.53416,25.93896],[90.52069,25.92597],[90.518,25.91568],[90.50855,25.9015],[90.51498,25.8961],[90.52139,25.89848],[90.52642,25.90484],[90.53749,25.9112],[90.53814,25.91375],[90.54912,25.91543],[90.55006,25.91684],[90.54838,25.9192],[90.54448,25.92055],[90.5438,25.92359],[90.54888,25.9214],[90.55242,25.92275],[90.57673,25.93675],[90.57706,25.94451],[90.57977,25.95127],[90.58382,25.956],[90.58787,25.95807],[90.59069,25.95606],[90.59967,25.95513],[90.6049,25.94709],[90.62412,25.93918],[90.62312,25.93506],[90.61231,25.92566],[90.60627,25.91662],[90.6136,25.89932],[90.62187,25.89784],[90.62494,25.89826],[90.6308,25.90628],[90.63067,25.9095],[90.62613,25.90974],[90.62619,25.91335],[90.63164,25.91983],[90.67265,25.93464],[90.68833,25.94891],[90.70765,25.95208],[90.71385,25.95167],[90.71759,25.95494],[90.71901,25.95454],[90.71994,25.94879],[90.72447,25.94678],[90.73247,25.9521],[90.73833,25.95271],[90.73776,25.9557],[90.74282,25.95799],[90.74442,25.95506],[90.7481,25.95672],[90.74569,25.9519],[90.74776,25.9483],[90.7404,25.93939],[90.74672,25.92809],[90.75009,25.93301],[90.75139,25.9323],[90.75279,25.93427],[90.75463,25.93344],[90.75415,25.92943],[90.74696,25.92481],[90.74779,25.91886],[90.73898,25.91616],[90.74245,25.91239],[90.74531,25.91177],[90.74714,25.91554],[90.75107,25.91827],[90.76052,25.92188],[90.76067,25.91567],[90.75679,25.91343],[90.75668,25.91099],[90.76638,25.90764],[90.7781,25.90861],[90.77805,25.9112],[90.78117,25.91127],[90.78338,25.92177],[90.78532,25.92429],[90.78449,25.92513],[90.79638,25.94052],[90.80915,25.94741],[90.80788,25.95097],[90.80905,25.95244],[90.8162,25.94893],[90.81927,25.95032],[90.82441,25.9454],[90.8259,25.94869],[90.83291,25.94586],[90.83619,25.94842],[90.83547,25.93661],[90.83904,25.94131],[90.84234,25.94212],[90.84436,25.94597],[90.84847,25.94438],[90.87483,25.94255],[90.87169,25.94763],[90.87669,25.94942],[90.88108,25.94283],[90.88049,25.95049],[90.88453,25.95031],[90.88581,25.94492],[90.88966,25.94318],[90.89003,25.93807],[90.89745,25.93748],[90.89442,25.93118],[90.90529,25.9289],[90.90617,25.92502],[90.91684,25.91406],[90.91951,25.91522],[90.91543,25.9204],[90.91424,25.92571],[90.91557,25.93075],[90.91481,25.93589],[90.91734,25.94441],[90.91949,25.94445],[90.92194,25.94134],[90.92392,25.94287],[90.93386,25.93977],[90.93999,25.9473],[90.94743,25.94809],[90.94547,25.94487],[90.94614,25.94101],[90.95704,25.93496],[90.96662,25.91406],[90.969,25.90375],[90.96598,25.88844],[90.96886,25.88522],[90.97605,25.88967],[91.00066,25.88794],[91.00103,25.88582],[91.0106,25.88417],[91.01791,25.88456],[91.02522,25.88878],[91.03055,25.8858],[91.02791,25.86933],[91.01402,25.85687],[91.01531,25.8484],[91.01148,25.84591],[91.01221,25.84178],[91.01024,25.83733],[91.00798,25.83796],[91.00693,25.83249],[91.0014,25.8251],[91.00601,25.82038],[91.02245,25.82377],[91.02863,25.83116],[91.03208,25.83285],[91.0325,25.835],[91.03923,25.83689],[91.04822,25.8492],[91.06721,25.84663],[91.0785,25.85274],[91.07298,25.84589],[91.07324,25.84046],[91.07186,25.83876],[91.06773,25.83681],[91.06641,25.83886],[91.05937,25.83666],[91.05773,25.83177],[91.05297,25.83181],[91.04888,25.82927],[91.06213,25.82078],[91.06697,25.82573],[91.07714,25.82894],[91.12036,25.83293],[91.12946,25.84261],[91.13611,25.84263],[91.14755,25.85049],[91.1599,25.84995],[91.17362,25.8444],[91.18023,25.84397],[91.18399,25.8504],[91.1892,25.85171],[91.19583,25.86139],[91.19756,25.84954],[91.20364,25.84321],[91.19729,25.83524],[91.19468,25.83486],[91.19446,25.82728],[91.18937,25.82374],[91.18631,25.81836],[91.19044,25.81143],[91.18419,25.79889],[91.18207,25.7836],[91.1784,25.78016],[91.17826,25.77735],[91.18513,25.77199],[91.18416,25.76643],[91.18929,25.76395],[91.18894,25.75045],[91.19048,25.74783],[91.21012,25.72549],[91.22245,25.72256],[91.24552,25.7333],[91.26453,25.74585],[91.27454,25.75045],[91.27898,25.75736],[91.28863,25.7655],[91.29004,25.77264],[91.29456,25.77592],[91.29556,25.78018],[91.30185,25.78648],[91.30259,25.7899],[91.30971,25.79888],[91.31472,25.80959],[91.32075,25.81572],[91.32232,25.82153],[91.33432,25.83307],[91.33326,25.83675],[91.33535,25.84054],[91.34404,25.83712],[91.34672,25.84003],[91.35216,25.83856],[91.35774,25.84149],[91.36583,25.84003],[91.37105,25.84262],[91.3729,25.84672],[91.38114,25.84563],[91.39314,25.84759],[91.40273,25.8514],[91.40617,25.85006],[91.41346,25.85356],[91.42247,25.85447],[91.42817,25.85264],[91.43583,25.84356],[91.44515,25.83974],[91.44838,25.84189],[91.44861,25.845],[91.46178,25.85434],[91.46308,25.857],[91.46947,25.85916],[91.4779,25.85727],[91.48366,25.86417],[91.49577,25.86382],[91.49737,25.86109],[91.50342,25.86425],[91.51372,25.86397],[91.52236,25.87285],[91.52795,25.87316],[91.53043,25.87125],[91.53043,25.88163],[91.53519,25.88388],[91.53299,25.88815],[91.52772,25.89085],[91.52555,25.89091],[91.52129,25.88346],[91.52131,25.87511],[91.51383,25.86622],[91.51142,25.86534],[91.4912,25.86594],[91.47538,25.86988],[91.47604,25.87252],[91.47481,25.87402],[91.47784,25.88048],[91.47837,25.88747],[91.484,25.89304],[91.49191,25.89585],[91.49943,25.89119],[91.5039,25.89117],[91.49874,25.89599],[91.50421,25.90288],[91.50488,25.90777],[91.52057,25.91681],[91.52097,25.91906],[91.53302,25.92657],[91.53695,25.93121],[91.53658,25.93577],[91.53255,25.92989],[91.52276,25.92531],[91.51791,25.91966],[91.51299,25.91678],[91.50955,25.91721],[91.50467,25.91139],[91.50318,25.91415],[91.50447,25.91672],[91.50124,25.91886],[91.50177,25.92429],[91.50325,25.92683],[91.50675,25.92842],[91.50796,25.93228],[91.51381,25.93289],[91.51515,25.94123],[91.51982,25.93988],[91.51658,25.95571],[91.51808,25.95973],[91.52217,25.95947],[91.5253,25.96163],[91.52865,25.96064],[91.53036,25.96307],[91.53562,25.9623],[91.5354,25.96673],[91.53836,25.97141],[91.54272,25.97317],[91.5447,25.97591],[91.54673,25.97511],[91.55125,25.9766],[91.5517,25.98503],[91.55745,25.99274],[91.5606,26.00092],[91.56507,26.00201],[91.56363,26.00749],[91.57217,26.01536],[91.56919,26.01844],[91.57073,26.02568],[91.57984,26.03325],[91.58872,26.02956],[91.59407,26.02168],[91.59389,26.01978],[91.59753,26.01807],[91.60023,26.02161],[91.61953,26.02596],[91.62635,26.02213],[91.6311,26.02197],[91.6324,26.01902],[91.63118,26.01775],[91.63267,26.01655],[91.6316,26.01472],[91.6349,26.01214],[91.63275,26.01114],[91.63324,26.00849],[91.63135,26.0075],[91.62816,26.00074],[91.63023,25.99013],[91.62624,25.98887],[91.62606,25.98668],[91.62853,25.98244],[91.62825,25.97615],[91.64071,25.96376],[91.63436,25.96051],[91.6294,25.94715],[91.62982,25.94325],[91.62616,25.94219],[91.62289,25.94479],[91.61188,25.94503],[91.60947,25.93739],[91.62139,25.93222],[91.62432,25.92957],[91.62525,25.92608],[91.63056,25.92483],[91.63221,25.92179],[91.6365,25.92133],[91.65149,25.90628],[91.66342,25.90776],[91.6706,25.90415],[91.67884,25.91625],[91.68808,25.92021],[91.68943,25.92462],[91.69893,25.93501],[91.70113,25.93563],[91.7024,25.94127],[91.71348,25.94405],[91.71333,25.94573],[91.72011,25.9536],[91.72024,25.96085],[91.72252,25.96572],[91.71978,25.96583],[91.72111,25.96855],[91.72007,25.98177],[91.72153,25.98833],[91.71962,25.9929],[91.72172,26.0015],[91.72156,26.01219],[91.72504,26.0202],[91.72303,26.03513],[91.72535,26.04618],[91.7337,26.0492],[91.73298,26.05088],[91.73519,26.05132],[91.73471,26.05363],[91.7369,26.05625],[91.73349,26.05623],[91.73072,26.05758],[91.73106,26.05893],[91.74291,26.06303],[91.74315,26.0653],[91.75554,26.06793],[91.75707,26.07036],[91.76273,26.07235],[91.763,26.07461],[91.77728,26.08935],[91.78332,26.08809],[91.78586,26.08401],[91.79136,26.08523],[91.80035,26.10004],[91.80292,26.09526],[91.80562,26.09912],[91.80904,26.09779],[91.81014,26.10329],[91.81702,26.11115],[91.82023,26.11255],[91.82023,26.11641],[91.8254,26.11941],[91.83085,26.11844],[91.83736,26.11224],[91.84828,26.10807],[91.85101,26.1084],[91.86072,26.10289],[91.86393,26.10263],[91.86576,26.10042],[91.87364,26.10063],[91.87917,26.09798],[91.87964,26.09604],[91.87687,26.09165],[91.87845,26.08978],[91.87661,26.07667],[91.87265,26.06791],[91.87028,26.05451],[91.87192,26.05096],[91.8673,26.04202],[91.87095,26.04271],[91.87202,26.04462],[91.87475,26.04302],[91.8731,26.03881],[91.8762,26.03641],[91.87517,26.03511],[91.87916,26.03437],[91.87893,26.03115],[91.88304,26.0261],[91.8858,26.02804],[91.88874,26.02787],[91.89783,26.0234],[91.9023,26.02237],[91.90518,26.02387],[91.90851,26.02097],[91.91469,26.0205],[91.91299,26.01471],[91.91479,26.01399],[91.90975,26.01267],[91.91332,26.0094],[91.90976,26.00877],[91.91059,26.00737],[91.91417,26.0072],[91.91228,26.00492],[91.9144,25.9988],[91.91898,25.99783],[91.92496,25.99939],[91.92827,26.00236],[91.93115,26.01236],[91.93397,26.01027],[91.94718,26.01317],[91.9478,26.01529],[91.95137,26.01466],[91.96191,26.01892],[91.96195,26.02026],[91.97317,26.02211],[91.97897,26.02748],[91.98357,26.0258],[91.98617,26.02898],[91.98546,26.03103],[91.98906,26.03853],[91.99476,26.03849],[91.99922,26.03579],[92.00411,26.03557],[92.00622,26.03855],[92.01044,26.03665],[92.01327,26.03844],[92.0165,26.03705],[92.01845,26.03919],[92.02404,26.03781],[92.03062,26.03958],[92.0344,26.03892],[92.03633,26.03621],[92.04069,26.03651],[92.04814,26.03277],[92.05143,26.03279],[92.05796,26.03482],[92.06679,26.03508],[92.07791,26.04229],[92.09729,26.04922],[92.1088,26.05068],[92.1199,26.04596],[92.1214,26.04388],[92.12821,26.04568],[92.13262,26.04424],[92.13421,26.05245],[92.13754,26.05504],[92.14339,26.05604],[92.15224,26.06678],[92.15471,26.06715],[92.1694,26.07764],[92.1788,26.07819],[92.17878,26.07569],[92.17617,26.07429],[92.17608,26.07023],[92.17804,26.06855],[92.18029,26.07117],[92.18181,26.06906],[92.18734,26.0693],[92.18613,26.06765],[92.18716,26.06657],[92.19101,26.06884],[92.19265,26.06733],[92.20042,26.06962],[92.20651,26.06814],[92.20627,26.06963],[92.20817,26.07047],[92.21548,26.06841],[92.22054,26.0703],[92.22223,26.06809],[92.22859,26.0668],[92.22944,26.06462],[92.24163,26.06177],[92.25052,26.06453],[92.25832,26.06346],[92.26095,26.06614],[92.26746,26.06676],[92.26888,26.06817],[92.27166,26.06523],[92.27489,26.06565],[92.27061,26.06404],[92.26949,26.06057],[92.26395,26.05736],[92.26357,26.05431],[92.26814,26.05143],[92.27003,26.04745],[92.26901,26.04282],[92.26108,26.04164],[92.26508,26.0361],[92.26347,26.03313],[92.25681,26.0287],[92.25329,26.029],[92.24858,26.02338],[92.24373,26.02152],[92.24286,26.02039],[92.24452,26.01819],[92.23504,26.01223],[92.23387,26.00912],[92.22775,26.00856],[92.2248,26.00599],[92.22032,26.00569],[92.21911,26.00389],[92.2119,26.00455],[92.20915,25.99792],[92.20385,26.00122],[92.20101,25.99516],[92.19754,25.99456],[92.19631,25.99085],[92.19855,25.98822],[92.18846,25.98455],[92.18469,25.9858],[92.18088,25.98501],[92.17872,25.97742],[92.17441,25.9739],[92.16932,25.97338],[92.16421,25.97028],[92.16213,25.96656],[92.16152,25.96025],[92.16405,25.95781],[92.1573,25.95263],[92.1571,25.94919],[92.15244,25.94432],[92.15252,25.93959],[92.16015,25.93532],[92.15922,25.93322],[92.16093,25.92815],[92.15682,25.91463],[92.15461,25.91377],[92.15474,25.91099],[92.16242,25.91116],[92.17555,25.90737],[92.17757,25.90885],[92.17656,25.91042],[92.18173,25.91126],[92.18608,25.91663],[92.18947,25.91457],[92.19453,25.91846],[92.19633,25.91575],[92.19404,25.91167],[92.20105,25.90845],[92.20228,25.90633],[92.20443,25.90914],[92.21727,25.9115],[92.22556,25.90917],[92.22281,25.90639],[92.22085,25.90026],[92.2157,25.89995],[92.21498,25.8953],[92.19901,25.88899],[92.18755,25.8772],[92.18363,25.87688],[92.17724,25.87275],[92.1762,25.8682],[92.1801,25.85823],[92.17759,25.8581],[92.1775,25.8515],[92.17261,25.8499],[92.17301,25.84718],[92.16981,25.83886],[92.16623,25.83529],[92.16202,25.83554],[92.16417,25.83301],[92.16081,25.83061],[92.16235,25.82724],[92.16128,25.82059],[92.16023,25.81979],[92.15695,25.82158],[92.15575,25.81889],[92.1511,25.81664],[92.15258,25.81178],[92.1487,25.80594],[92.14996,25.79489],[92.14636,25.78412],[92.15266,25.778],[92.14782,25.77295],[92.15092,25.76655],[92.15025,25.76361],[92.15543,25.7574],[92.15556,25.75112],[92.16282,25.74387],[92.16271,25.74086],[92.16191,25.73663],[92.15445,25.72501],[92.14817,25.72527],[92.14425,25.71681],[92.14773,25.70946],[92.15083,25.70778],[92.15241,25.70861],[92.15478,25.70621],[92.15465,25.69788],[92.15684,25.69582],[92.15598,25.69167],[92.16053,25.68412],[92.1596,25.67624],[92.15615,25.67218],[92.16486,25.66663],[92.1702,25.66713],[92.17343,25.67414],[92.17748,25.67431],[92.17997,25.67807],[92.18775,25.68408],[92.19662,25.68642],[92.20081,25.69227],[92.20809,25.69557],[92.20986,25.69917],[92.21685,25.70481],[92.22113,25.71327],[92.22503,25.71609],[92.23168,25.71594],[92.23286,25.70886],[92.23445,25.70758],[92.23876,25.7106],[92.24734,25.71314],[92.25114,25.71082],[92.25485,25.7126],[92.26437,25.70909],[92.27128,25.71126],[92.27715,25.71547],[92.29301,25.71645],[92.29715,25.71998],[92.30213,25.72086],[92.31134,25.72789],[92.31695,25.72242],[92.32416,25.72472],[92.33351,25.72412],[92.34583,25.72918],[92.35324,25.73975],[92.36093,25.73665],[92.36427,25.73735],[92.36894,25.74729],[92.37376,25.75041],[92.37869,25.74839],[92.38402,25.75452],[92.38543,25.75051],[92.38205,25.74632],[92.38178,25.74204],[92.38784,25.74415],[92.39766,25.74045],[92.40662,25.7446],[92.40803,25.74349],[92.40718,25.74187],[92.41432,25.74146],[92.41458,25.73996],[92.40912,25.73375],[92.41165,25.73003],[92.42205,25.7299],[92.43118,25.73218],[92.43294,25.72696],[92.44429,25.7197],[92.4477,25.70901],[92.44399,25.70736],[92.44036,25.70824],[92.43789,25.7058],[92.44065,25.6916],[92.45031,25.68529],[92.45532,25.68492],[92.46327,25.68101],[92.46797,25.67552],[92.47033,25.67515],[92.4972,25.62439],[92.50609,25.6214],[92.50563,25.61631],[92.50948,25.61559],[92.51507,25.61834],[92.51643,25.61506],[92.53338,25.61495],[92.53585,25.61315],[92.53886,25.61358],[92.53922,25.61158],[92.55417,25.6148],[92.5541,25.61303],[92.55673,25.61141],[92.55548,25.60178],[92.55217,25.60254],[92.55439,25.59957],[92.55332,25.59739],[92.55659,25.59648],[92.55467,25.59533],[92.55432,25.5883],[92.55494,25.58457],[92.55877,25.58012],[92.55622,25.57665],[92.55673,25.57096],[92.57249,25.55735],[92.57542,25.55851],[92.58236,25.55763],[92.58407,25.55045],[92.58996,25.5526],[92.59482,25.55159],[92.59998,25.55504],[92.60193,25.56193],[92.62205,25.56515],[92.63017,25.57167],[92.63431,25.5813],[92.64171,25.58851],[92.64947,25.5922],[92.65299,25.59093],[92.65865,25.57813],[92.65831,25.57406],[92.66146,25.57219],[92.65748,25.56975],[92.65679,25.56085],[92.64542,25.55574],[92.64206,25.54158],[92.64284,25.53481],[92.63776,25.53024],[92.63191,25.52774],[92.62769,25.52197],[92.6202,25.51606],[92.60908,25.51181],[92.5999,25.50635],[92.5973,25.50246],[92.59109,25.50115],[92.57365,25.49048],[92.56436,25.47361],[92.56467,25.46548],[92.56655,25.46336],[92.56881,25.4637],[92.57446,25.46626],[92.58036,25.47208],[92.58259,25.47107],[92.58411,25.4656],[92.59189,25.47042],[92.59564,25.4702],[92.59861,25.46814],[92.60045,25.46475],[92.59761,25.45067],[92.60461,25.4476],[92.60307,25.43513],[92.60698,25.42763],[92.6045,25.4209],[92.60663,25.41323],[92.61126,25.41517],[92.6151,25.42111],[92.61858,25.423],[92.62461,25.42092],[92.62764,25.42197],[92.62838,25.42388],[92.62525,25.43114],[92.62565,25.43492],[92.63584,25.42732],[92.63672,25.42141],[92.63956,25.41757],[92.64708,25.42824],[92.65362,25.43352],[92.65442,25.4326],[92.65146,25.42584],[92.6519,25.41924],[92.65641,25.41154],[92.66164,25.40635],[92.66353,25.4065],[92.66752,25.41483],[92.67353,25.41402],[92.67778,25.40702],[92.68815,25.40208],[92.69283,25.39767],[92.69828,25.38632],[92.70176,25.38448],[92.70988,25.38451],[92.71794,25.37263],[92.72375,25.37882],[92.73802,25.37933],[92.73326,25.37272],[92.73236,25.36892],[92.73879,25.36695],[92.73955,25.36131],[92.74641,25.35833],[92.74995,25.34994],[92.7499,25.3441],[92.7546,25.34238],[92.75593,25.33864],[92.76107,25.33352],[92.76373,25.33358],[92.76991,25.33821],[92.7818,25.33318],[92.78693,25.31437],[92.78154,25.30769],[92.78132,25.30498],[92.78343,25.29944],[92.78723,25.29621],[92.7873,25.29003],[92.7925,25.28256],[92.78749,25.27409],[92.77974,25.27353],[92.77665,25.27003],[92.76862,25.26812],[92.7692,25.26559],[92.77775,25.25818],[92.77497,25.252],[92.77118,25.25099],[92.76646,25.25214],[92.76263,25.24927],[92.76189,25.24653],[92.77016,25.23733],[92.77167,25.22998],[92.78203,25.23016],[92.78911,25.22468],[92.80152,25.22024],[92.80291,25.21617],[92.79503,25.20975],[92.78605,25.20935],[92.78192,25.20325],[92.77621,25.19961],[92.76747,25.20349],[92.76281,25.20159],[92.75484,25.20183],[92.7468,25.20651],[92.74287,25.20665],[92.73722,25.20054],[92.71614,25.19578],[92.70924,25.19007],[92.70262,25.18838],[92.6939,25.17924],[92.68338,25.17954],[92.67724,25.18254],[92.66863,25.17656],[92.66796,25.17408],[92.66348,25.17667],[92.65843,25.17195],[92.65802,25.15884],[92.65576,25.15495],[92.65209,25.1523],[92.63868,25.14773],[92.62831,25.1381],[92.62729,25.13095],[92.62888,25.12618],[92.62143,25.11503],[92.61632,25.1158],[92.6089,25.12262],[92.59501,25.1222],[92.59282,25.12589],[92.58808,25.12878],[92.5832,25.12811],[92.57661,25.13099],[92.56818,25.12824],[92.56061,25.13032],[92.55536,25.12695],[92.53836,25.13349],[92.5249,25.13519],[92.52245,25.13922],[92.52064,25.13695],[92.52265,25.13303],[92.5231,25.12597],[92.53942,25.09905],[92.53396,25.09898],[92.53052,25.10031],[92.52782,25.104],[92.51995,25.10594],[92.50892,25.10422],[92.49696,25.10951],[92.49102,25.10769],[92.48063,25.10831],[92.47743,25.10019],[92.47731,25.09078],[92.47941,25.08661],[92.47716,25.08501],[92.47758,25.08255],[92.47411,25.08197],[92.47535,25.07777],[92.47067,25.0766],[92.47202,25.07463],[92.47203,25.06725],[92.46843,25.06589],[92.46535,25.05867],[92.46357,25.05808],[92.46366,25.05494],[92.46023,25.05729],[92.45698,25.05407],[92.45705,25.04667],[92.46051,25.04873],[92.46238,25.04813],[92.46429,25.04362],[92.46298,25.03958],[92.46429,25.03744],[92.45981,25.03704],[92.45277,25.04075],[92.44907,25.04057],[92.4443,25.04519],[92.43828,25.04387],[92.43819,25.03465],[92.43223,25.03513],[92.42925,25.02915],[92.42528,25.02956],[92.42592,25.02006],[92.42424,25.01937],[92.4242,25.00949],[92.41635,24.98992],[92.42051,24.99033],[92.42208,24.98849],[92.42033,24.96595],[92.4237,24.96484],[92.44273,24.9662],[92.44763,24.965],[92.45763,24.9706],[92.46059,24.96981],[92.46818,24.96302],[92.46837,24.95991],[92.46616,24.95707],[92.45373,24.95365],[92.44974,24.94999],[92.44787,24.9437],[92.44927,24.93876],[92.47565,24.94177],[92.48361,24.94728],[92.48762,24.94677],[92.484,24.92845],[92.48756,24.92062],[92.4946,24.91586],[92.49289,24.9061],[92.49684,24.90202],[92.49116,24.89146],[92.4923,24.87557],[92.48957,24.87256],[92.48787,24.87283],[92.48792,24.87131],[92.4793,24.87246],[92.47614,24.86734],[92.461,24.87314],[92.4448,24.87198],[92.44114,24.86848],[92.44106,24.86051],[92.4374,24.85561],[92.4254,24.85285],[92.41466,24.8583],[92.40637,24.85894],[92.40299,24.85575],[92.40278,24.8497],[92.4001,24.84865],[92.38494,24.85227],[92.38405,24.85834],[92.37748,24.8631],[92.37701,24.87056],[92.37474,24.87395],[92.37168,24.87491],[92.3634,24.87191],[92.36132,24.87819],[92.35436,24.87947],[92.348,24.89162],[92.34584,24.89124],[92.34428,24.88852],[92.34404,24.88019],[92.33922,24.87826],[92.32868,24.88881],[92.32675,24.89641],[92.32289,24.89718],[92.3161,24.89519],[92.30695,24.90203],[92.30626,24.9098],[92.30349,24.9136],[92.29943,24.91572],[92.29483,24.91549],[92.28665,24.91202],[92.28206,24.90585],[92.27179,24.90492],[92.267,24.90692],[92.25912,24.90663],[92.24837,24.90887],[92.24201,24.90469],[92.23561,24.90287],[92.23287,24.90015],[92.23611,24.89914],[92.23666,24.89195],[92.23948,24.89189],[92.23944,24.89001],[92.24723,24.88752],[92.2481,24.88549],[92.24683,24.87199],[92.24486,24.87125],[92.24627,24.86749],[92.23821,24.86816],[92.23493,24.86139],[92.23589,24.859],[92.23981,24.8577],[92.24146,24.84202],[92.24251,24.84045],[92.25497,24.83845],[92.25024,24.83586],[92.25172,24.83421],[92.24837,24.8323],[92.24908,24.82975],[92.25225,24.8305],[92.253,24.83215],[92.26929,24.82983],[92.27308,24.82744],[92.27278,24.82132],[92.27629,24.81544],[92.27385,24.81412],[92.2762,24.81032],[92.27424,24.80653],[92.27531,24.80371],[92.27312,24.80019],[92.27889,24.79742],[92.28108,24.79061],[92.28854,24.78818],[92.28742,24.78741],[92.28892,24.78449],[92.28792,24.77919],[92.28471,24.77461],[92.2818,24.77532],[92.28507,24.76848],[92.28574,24.76294],[92.29013,24.75971],[92.2798,24.74817],[92.28035,24.74579],[92.27916,24.7453],[92.28192,24.74338],[92.28126,24.74226],[92.29603,24.73646],[92.29388,24.73461],[92.2942,24.7317],[92.28536,24.71984],[92.27621,24.71074],[92.27499,24.70808],[92.27612,24.70744],[92.26786,24.69435],[92.265,24.6905],[92.26161,24.69012],[92.25892,24.68619],[92.2578,24.68286],[92.25988,24.68145],[92.25442,24.67803],[92.25453,24.67496],[92.25712,24.67318],[92.25165,24.65996],[92.24847,24.65835],[92.24708,24.65474],[92.24984,24.64796],[92.24829,24.63772],[92.24354,24.6254],[92.24399,24.61652],[92.24235,24.61537],[92.24239,24.61153],[92.23925,24.60777],[92.23539,24.59755],[92.2363,24.59456],[92.23302,24.57847],[92.23459,24.57776],[92.23461,24.57515],[92.23221,24.57139],[92.23114,24.53121],[92.2238,24.51745],[92.22011,24.51631],[92.21294,24.50401],[92.23044,24.50171],[92.2312,24.49521],[92.23658,24.48871],[92.2349,24.48692],[92.23665,24.48459],[92.23348,24.48419],[92.23133,24.48004],[92.23475,24.47457],[92.23147,24.47352],[92.2306,24.47143],[92.23018,24.46151],[92.23637,24.45819],[92.23487,24.45261],[92.23889,24.4475],[92.24437,24.44437],[92.24649,24.4452],[92.25313,24.44232],[92.25347,24.44031],[92.2594,24.43921],[92.25936,24.43403],[92.25689,24.43202],[92.25654,24.42484],[92.25448,24.42053],[92.26328,24.41119],[92.26349,24.40947],[92.26172,24.40869],[92.26414,24.39895],[92.26933,24.39847],[92.27081,24.39628],[92.26911,24.39254],[92.27202,24.39236],[92.27409,24.38832],[92.26864,24.38406],[92.27289,24.37897],[92.26806,24.37811],[92.26814,24.36788],[92.26573,24.36602],[92.21287,24.24993],[92.42253,24.25486],[92.41936,24.22613],[92.42117,24.21811],[92.41858,24.21264],[92.41876,24.20469],[92.42132,24.20126],[92.41917,24.19194],[92.43237,24.18448],[92.43573,24.17929],[92.43401,24.17513],[92.43792,24.16951],[92.43584,24.16513],[92.43642,24.15303],[92.44046,24.15275],[92.4428,24.15446],[92.44912,24.14397],[92.45058,24.14714],[92.45237,24.1442],[92.45673,24.14436],[92.46101,24.13764],[92.46379,24.13889],[92.46331,24.13687],[92.46498,24.13614],[92.46568,24.13865],[92.4686,24.14023],[92.47257,24.1399],[92.47462,24.14364],[92.47896,24.14232],[92.47858,24.14413],[92.48061,24.14541],[92.47705,24.1474],[92.4807,24.15003],[92.48184,24.15597],[92.47943,24.15661],[92.48342,24.15826],[92.48241,24.16061],[92.48392,24.16317],[92.49039,24.16279],[92.49421,24.16018],[92.50151,24.16039],[92.50335,24.16343],[92.50618,24.16413],[92.50327,24.16777],[92.50753,24.16706],[92.51004,24.1646],[92.51141,24.16541],[92.50691,24.16988],[92.51441,24.16946],[92.51468,24.17072],[92.51211,24.17048],[92.50997,24.17246],[92.51552,24.17886],[92.51934,24.1739],[92.52404,24.17144],[92.53017,24.17632],[92.52893,24.17808],[92.53421,24.18015],[92.53111,24.18511],[92.53464,24.19367],[92.53784,24.19677],[92.53669,24.20126],[92.54048,24.20358],[92.54201,24.20752],[92.54096,24.21024],[92.54326,24.21147],[92.5423,24.21344],[92.54712,24.22016],[92.54675,24.22991],[92.54848,24.23186],[92.54687,24.23297],[92.54705,24.23645],[92.5509,24.24722],[92.55595,24.24681],[92.56261,24.2512],[92.57213,24.25188],[92.58903,24.24877],[92.59571,24.25049],[92.60605,24.24845],[92.6123,24.25347],[92.61416,24.25595],[92.61311,24.25865],[92.61971,24.28713],[92.61591,24.28958],[92.61819,24.29818],[92.6183,24.30745],[92.6195,24.30801],[92.61955,24.31354],[92.62361,24.32028],[92.62374,24.3228],[92.62155,24.32371],[92.62368,24.32728],[92.62234,24.32811],[92.62243,24.33134],[92.62477,24.33408],[92.63024,24.33362],[92.63569,24.3367],[92.63869,24.33445],[92.63542,24.33356],[92.6363,24.33134],[92.64036,24.33361],[92.63872,24.32842],[92.64576,24.32778],[92.64617,24.33095],[92.64923,24.3286],[92.65011,24.3316],[92.65172,24.33105],[92.65161,24.33547],[92.65911,24.3419],[92.65768,24.34438],[92.66062,24.34405],[92.66137,24.34816],[92.66316,24.34882],[92.66427,24.34606],[92.66562,24.34964],[92.6663,24.3463],[92.66894,24.34609],[92.67339,24.34964],[92.67716,24.35015],[92.6791,24.3478],[92.68484,24.34654],[92.68376,24.35046],[92.68976,24.3536],[92.68925,24.35524],[92.69151,24.35754],[92.69117,24.36252],[92.69476,24.36536],[92.69282,24.36847],[92.69533,24.36885],[92.69764,24.3743],[92.70361,24.37545],[92.70409,24.38464],[92.70566,24.38438],[92.70734,24.38699],[92.70647,24.39215],[92.70928,24.39337],[92.70922,24.39735],[92.71327,24.40332],[92.71138,24.40722],[92.71509,24.40954],[92.7129,24.41121],[92.71509,24.41498],[92.71739,24.4156],[92.71797,24.42015],[92.72286,24.42811],[92.72171,24.43195],[92.72612,24.43851],[92.7275,24.44642],[92.73365,24.45474],[92.74051,24.46855],[92.74698,24.48703],[92.75082,24.49209],[92.74937,24.49517],[92.75422,24.502],[92.75189,24.50401],[92.75215,24.50623],[92.75613,24.50957],[92.75604,24.51126],[92.75805,24.51102],[92.75765,24.51254],[92.763,24.52113],[92.7967,24.43283],[92.80127,24.42965],[92.80116,24.42535],[92.8027,24.42436],[92.80179,24.42058],[92.79937,24.41913],[92.80434,24.41753],[92.80685,24.41885],[92.809,24.41569],[92.8088,24.41268],[92.81161,24.41328],[92.81007,24.41186],[92.81216,24.41148],[92.81245,24.40928],[92.81894,24.41005],[92.81768,24.40802],[92.82016,24.40371],[92.82995,24.40029],[92.82314,24.38647],[92.82661,24.38123],[92.82573,24.37703],[92.82959,24.37359],[92.83575,24.37849],[92.83985,24.3767],[92.84336,24.37787],[92.84523,24.3797],[92.84624,24.386],[92.86094,24.3985],[92.8688,24.39465],[92.87334,24.39486],[92.88369,24.40241],[92.88856,24.39833],[92.89145,24.40045],[92.8908,24.39833],[92.89256,24.39747],[92.89297,24.39268],[92.90288,24.39107],[92.90392,24.3922],[92.90287,24.39577],[92.90671,24.40276],[92.90707,24.41129],[92.90934,24.41291],[92.91096,24.41197],[92.90927,24.41014],[92.92199,24.40352],[92.92037,24.40088],[92.92436,24.39789],[92.92419,24.39605],[92.92753,24.39648],[92.9312,24.39301],[92.9347,24.39282],[92.9367,24.39839],[92.93931,24.40072],[92.94546,24.40005],[92.94761,24.40236],[92.95117,24.40299],[92.95329,24.40158],[92.9564,24.39329],[92.95928,24.3919],[92.96622,24.39685],[92.9685,24.4012],[92.97384,24.40571],[92.97366,24.4083],[92.98482,24.40565],[92.99201,24.39914],[92.99429,24.39894],[92.99896,24.40014],[93.004,24.40706],[93.00647,24.40744],[93.00753,24.40945],[93.00578,24.40931],[93.00598,24.41065],[93.00885,24.41168],[93.01195,24.41672],[93.01507,24.41553],[93.01617,24.40871],[93.02344,24.40675],[93.03247,24.40856],[93.04164,24.41301],[93.04265,24.42055],[93.03728,24.42362],[93.03292,24.42875],[93.03642,24.44222],[93.03572,24.45976],[93.03811,24.46193],[93.04366,24.46177],[93.04556,24.46328],[93.04637,24.47357],[93.04024,24.48631],[93.03256,24.4953],[93.04277,24.50479],[93.04273,24.50635],[93.03721,24.50939],[93.03874,24.51287],[93.04131,24.51557],[93.05013,24.51943],[93.05055,24.5232],[93.04719,24.52857],[93.04999,24.54421],[93.05701,24.55441],[93.06052,24.55358],[93.0617,24.54731],[93.06462,24.54679],[93.07081,24.55805],[93.06917,24.56188],[93.05818,24.57384],[93.06216,24.57624],[93.07574,24.57505],[93.0844,24.57113],[93.08916,24.57337],[93.09321,24.5815],[93.10184,24.58079],[93.10436,24.58238],[93.10158,24.58759],[93.09359,24.5917],[93.08921,24.59238],[93.08027,24.59011],[93.07115,24.60064],[93.07394,24.60561],[93.08421,24.6136],[93.07714,24.62008],[93.07568,24.62454],[93.07872,24.62885],[93.08521,24.62817],[93.08728,24.62967],[93.08763,24.63699],[93.08319,24.64981],[93.08625,24.65273],[93.09537,24.65283],[93.09647,24.66426],[93.10415,24.67416],[93.10191,24.6807],[93.09011,24.67717],[93.09229,24.68548],[93.09126,24.68803],[93.08184,24.70216],[93.07355,24.70781],[93.07738,24.71296],[93.08292,24.70867],[93.08662,24.70953],[93.0901,24.71432],[93.09079,24.71818],[93.09325,24.71891],[93.09037,24.72139],[93.09065,24.72508],[93.09589,24.72421],[93.0971,24.73195],[93.10776,24.74144],[93.10272,24.74685],[93.1016,24.74277],[93.09988,24.74317],[93.09833,24.74675],[93.10112,24.74958],[93.09825,24.75437],[93.10238,24.75922],[93.10361,24.7672],[93.10028,24.7736],[93.10052,24.77942],[93.10522,24.78111],[93.1043,24.78631],[93.10611,24.78844],[93.10481,24.79128],[93.10839,24.79184],[93.10798,24.79487],[93.1114,24.80058],[93.10943,24.81148],[93.12137,24.81922],[93.12194,24.81662],[93.1179,24.80925],[93.11886,24.80766],[93.12703,24.80876],[93.13176,24.80521],[93.13483,24.81058],[93.13857,24.80999],[93.13471,24.80813],[93.1411,24.80126],[93.14175,24.79728],[93.14626,24.79744],[93.15117,24.79468],[93.15115,24.79228],[93.1485,24.78908],[93.14946,24.78737],[93.15424,24.78871],[93.15987,24.79338],[93.16109,24.79623],[93.16952,24.80138],[93.17357,24.80123],[93.17359,24.796],[93.17572,24.79373],[93.17935,24.79721],[93.17995,24.80307],[93.19153,24.8044],[93.19697,24.81157],[93.19006,24.81864],[93.19591,24.83091],[93.19165,24.83299],[93.19161,24.8344],[93.19327,24.83557],[93.19779,24.83416],[93.20061,24.83876],[93.19917,24.83931],[93.19611,24.83669],[93.19197,24.83972],[93.19203,24.84179],[93.19489,24.84433],[93.2006,24.8413],[93.20155,24.84206],[93.20126,24.84854],[93.19812,24.85301],[93.19483,24.85385],[93.19955,24.85515],[93.20407,24.85105],[93.20687,24.85576],[93.21003,24.85608],[93.21361,24.86063],[93.21471,24.86529],[93.2169,24.86535],[93.22145,24.86951],[93.22036,24.87352],[93.22644,24.87283],[93.22196,24.87766],[93.22151,24.88152],[93.22492,24.88018],[93.22774,24.88503],[93.23279,24.88466],[93.23155,24.88754],[93.22799,24.88834],[93.22602,24.89193],[93.22758,24.89293],[93.23212,24.89188],[93.22961,24.89782],[93.23849,24.8987],[93.2408,24.90336],[93.24032,24.90513],[93.23778,24.90582],[93.2352,24.91141],[93.24406,24.91055],[93.24884,24.91485],[93.24597,24.92525],[93.23934,24.92437],[93.23849,24.92568],[93.24471,24.9325],[93.2451,24.93539],[93.24264,24.93611],[93.23713,24.93253],[93.23681,24.93716],[93.24492,24.94119],[93.24762,24.9398],[93.25127,24.94064],[93.25097,24.94341],[93.24732,24.94512],[93.24913,24.94817],[93.24536,24.95081],[93.25,24.95514],[93.26087,24.95855],[93.26301,24.96134],[93.26092,24.97146],[93.25716,24.97362],[93.24961,24.97312]],[[89.80674,26.3491],[89.8161,26.34278],[89.81937,26.33683],[89.81968,26.33302],[89.82303,26.32978],[89.82024,26.32325],[89.81741,26.32094],[89.80283,26.32965],[89.79983,26.32973],[89.79612,26.33299],[89.79806,26.33785],[89.79341,26.34139],[89.78972,26.34183],[89.79408,26.34383],[89.79559,26.34937],[89.7977,26.35032],[89.80674,26.3491]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"19","area_level":"State","area_name":"West Bengal","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[88.01734,21.56009],[88.01728,21.56222],[88.01715,21.56263],[88.01685,21.56295],[88.01633,21.56292],[88.01591,21.56262],[88.01555,21.56216],[88.0149,21.56089],[88.0141,21.55997],[88.01362,21.55992],[88.01323,21.56013],[88.01248,21.56032],[88.01153,21.56013],[88.01037,21.5593],[88.01018,21.55899],[88.00997,21.55823],[88.00964,21.55612],[88.00955,21.55494],[88.00957,21.55418],[88.00979,21.55314],[88.01012,21.55236],[88.01049,21.55181],[88.01087,21.55057],[88.01171,21.54863],[88.01212,21.54793],[88.01281,21.54721],[88.01375,21.54684],[88.01493,21.54682],[88.01547,21.54696],[88.01595,21.54729],[88.01837,21.55112],[88.01856,21.55167],[88.01879,21.55349],[88.01868,21.55556],[88.01813,21.55752],[88.01743,21.55949],[88.01734,21.56009]]],[[[88.17272,21.58416],[88.16992,21.58484],[88.16906,21.58595],[88.16779,21.58674],[88.16593,21.59031],[88.16602,21.59691],[88.16655,21.59774],[88.16646,21.59924],[88.16724,21.60198],[88.16714,21.60296],[88.16546,21.60148],[88.1643,21.59924],[88.16384,21.59656],[88.1638,21.58703],[88.16498,21.58403],[88.16715,21.58201],[88.16924,21.57662],[88.17128,21.5675],[88.17211,21.55942],[88.17406,21.55353],[88.17554,21.55137],[88.1758,21.54965],[88.17817,21.54677],[88.18748,21.54237],[88.19074,21.54202],[88.19401,21.54074],[88.19697,21.54097],[88.19933,21.54213],[88.20406,21.54604],[88.2044,21.54702],[88.202,21.54784],[88.19982,21.54716],[88.19794,21.54595],[88.19722,21.54621],[88.19683,21.54781],[88.19585,21.54754],[88.19454,21.54796],[88.19375,21.54899],[88.19353,21.55102],[88.19247,21.55275],[88.19214,21.55428],[88.19117,21.5548],[88.18859,21.55785],[88.18785,21.56308],[88.18748,21.56408],[88.18636,21.56491],[88.18751,21.56792],[88.18667,21.56913],[88.18669,21.5712],[88.18548,21.57287],[88.18575,21.57498],[88.18492,21.57657],[88.18641,21.58072],[88.18615,21.58195],[88.1848,21.58323],[88.18075,21.58372],[88.17959,21.5848],[88.17513,21.58406],[88.17272,21.58416]]],[[[88.50859,21.59216],[88.50349,21.59513],[88.5006,21.59803],[88.50019,21.59953],[88.49844,21.60102],[88.49624,21.59925],[88.49591,21.59762],[88.4935,21.59473],[88.49377,21.59352],[88.4929,21.59317],[88.49049,21.58893],[88.48801,21.58162],[88.48695,21.57981],[88.48765,21.57948],[88.48715,21.57784],[88.4883,21.57539],[88.48829,21.57405],[88.48739,21.56984],[88.48504,21.56357],[88.48538,21.56258],[88.48477,21.5522],[88.4864,21.54917],[88.48996,21.54696],[88.49265,21.54794],[88.49593,21.54722],[88.49666,21.54789],[88.49746,21.54757],[88.49839,21.54837],[88.49925,21.54793],[88.5,21.54629],[88.49987,21.5429],[88.49811,21.54314],[88.49691,21.54241],[88.49715,21.53985],[88.49953,21.53775],[88.50091,21.53761],[88.50633,21.53416],[88.50858,21.5339],[88.5092,21.53302],[88.511,21.53254],[88.51136,21.53176],[88.51232,21.53168],[88.51308,21.53263],[88.51449,21.53036],[88.51553,21.52969],[88.52104,21.52773],[88.53079,21.52708],[88.53556,21.52759],[88.53837,21.53036],[88.54238,21.53303],[88.54506,21.53305],[88.54786,21.53715],[88.54687,21.53857],[88.544,21.53921],[88.53889,21.54311],[88.53759,21.54681],[88.53708,21.54622],[88.53685,21.54758],[88.5353,21.54991],[88.53512,21.5516],[88.53394,21.55378],[88.53459,21.55523],[88.53367,21.55629],[88.53406,21.55793],[88.53289,21.56006],[88.53276,21.56175],[88.53065,21.56356],[88.53172,21.56458],[88.53259,21.56747],[88.53383,21.56942],[88.53423,21.57079],[88.53395,21.57293],[88.53721,21.5755],[88.5372,21.57801],[88.53373,21.58264],[88.53196,21.58396],[88.52786,21.58537],[88.52039,21.58666],[88.5102,21.59189],[88.50859,21.59216]]],[[[88.94721,21.59571],[88.94744,21.59597],[88.94782,21.59628],[88.94818,21.59692],[88.9482,21.59754],[88.94811,21.59849],[88.94792,21.59909],[88.94766,21.59947],[88.94734,21.59983],[88.94716,21.60028],[88.94687,21.6007],[88.94665,21.60072],[88.94612,21.60056],[88.9453,21.60006],[88.94494,21.59991],[88.94468,21.59954],[88.94468,21.59927],[88.94482,21.59897],[88.94509,21.59857],[88.94524,21.59823],[88.94523,21.59776],[88.94561,21.59654],[88.94621,21.59578],[88.94649,21.59552],[88.94692,21.59545],[88.94721,21.59571]]],[[[88.83401,21.60804],[88.83301,21.60906],[88.83227,21.60879],[88.83167,21.60418],[88.82979,21.60318],[88.83061,21.5972],[88.82945,21.59458],[88.82997,21.59307],[88.82893,21.58602],[88.82924,21.58235],[88.82763,21.57963],[88.82772,21.57859],[88.82682,21.57788],[88.8276,21.57509],[88.82643,21.57451],[88.82601,21.57278],[88.82613,21.57194],[88.82828,21.57261],[88.82975,21.57188],[88.82898,21.57052],[88.82952,21.5662],[88.82677,21.56574],[88.82755,21.56356],[88.82982,21.56022],[88.83038,21.55634],[88.82994,21.55469],[88.83116,21.55381],[88.83039,21.55288],[88.83118,21.55117],[88.83385,21.54979],[88.8357,21.55017],[88.83758,21.54926],[88.83969,21.54909],[88.83974,21.54785],[88.84234,21.54779],[88.84197,21.54616],[88.8426,21.54557],[88.84808,21.54245],[88.84884,21.54058],[88.85226,21.53987],[88.85577,21.53661],[88.85744,21.53751],[88.85818,21.53601],[88.86395,21.53637],[88.8665,21.53551],[88.86859,21.53569],[88.8737,21.53458],[88.87485,21.53544],[88.87609,21.5344],[88.87777,21.53493],[88.88142,21.53416],[88.88503,21.53514],[88.8916,21.53803],[88.89632,21.54165],[88.90068,21.54333],[88.90134,21.54461],[88.90599,21.54756],[88.90572,21.55564],[88.90368,21.56137],[88.89745,21.57525],[88.89624,21.57537],[88.89417,21.5791],[88.89189,21.5812],[88.88889,21.58095],[88.88489,21.58306],[88.87993,21.58871],[88.87858,21.58808],[88.87834,21.58954],[88.87586,21.59258],[88.87298,21.59442],[88.87084,21.59494],[88.86923,21.59659],[88.86708,21.59634],[88.86564,21.59729],[88.86182,21.59748],[88.85558,21.5997],[88.84555,21.60209],[88.8378,21.60478],[88.83698,21.60543],[88.83597,21.6079],[88.83401,21.60804]]],[[[89.15105,21.60004],[89.15079,21.60051],[89.15026,21.60097],[89.14948,21.60121],[89.14876,21.60119],[89.14819,21.60099],[89.14713,21.60011],[89.14671,21.60048],[89.1465,21.60048],[89.14636,21.60038],[89.14561,21.59797],[89.1452,21.59721],[89.14458,21.59651],[89.14392,21.596],[89.14313,21.59564],[89.14102,21.59535],[89.14034,21.59551],[89.13975,21.59602],[89.13941,21.5965],[89.13927,21.59705],[89.13939,21.59776],[89.14002,21.59972],[89.14005,21.60033],[89.13974,21.60083],[89.13919,21.60133],[89.13841,21.60153],[89.13701,21.60141],[89.1364,21.60111],[89.13576,21.60059],[89.13549,21.60006],[89.13516,21.59907],[89.13505,21.59778],[89.13519,21.59642],[89.13551,21.59557],[89.13604,21.59483],[89.13771,21.59347],[89.13889,21.59296],[89.14223,21.59247],[89.14334,21.59245],[89.14453,21.59265],[89.14728,21.59351],[89.14869,21.59447],[89.1504,21.59663],[89.15112,21.59867],[89.15123,21.59953],[89.15105,21.60004]]],[[[88.04293,21.69235],[88.04334,21.69249],[88.0436,21.69267],[88.04393,21.69312],[88.04515,21.69543],[88.04594,21.69739],[88.04602,21.69776],[88.04602,21.69813],[88.04578,21.69888],[88.04559,21.69924],[88.04543,21.6994],[88.04517,21.69942],[88.04487,21.69936],[88.04469,21.69925],[88.04451,21.69907],[88.04441,21.69881],[88.04438,21.69867],[88.0444,21.69782],[88.04404,21.69637],[88.04362,21.69552],[88.04265,21.69294],[88.04264,21.6925],[88.04278,21.69236],[88.04293,21.69235]]],[[[88.05241,21.70232],[88.05226,21.70258],[88.05211,21.70268],[88.05197,21.70266],[88.05107,21.70143],[88.05057,21.70084],[88.05017,21.70025],[88.05007,21.70001],[88.04997,21.69934],[88.04994,21.69745],[88.04966,21.6959],[88.0493,21.69502],[88.0493,21.69473],[88.04941,21.69449],[88.04953,21.69447],[88.0497,21.69453],[88.05029,21.69495],[88.05093,21.69559],[88.05133,21.69623],[88.05155,21.69705],[88.0516,21.69744],[88.05153,21.69886],[88.0516,21.69928],[88.05207,21.70017],[88.05258,21.70089],[88.05289,21.70124],[88.05308,21.70155],[88.05316,21.70182],[88.05317,21.70211],[88.053,21.7023],[88.05277,21.70236],[88.05241,21.70232]]],[[[88.04364,21.70059],[88.04411,21.70094],[88.04425,21.70121],[88.04454,21.70155],[88.04468,21.70183],[88.0447,21.70229],[88.04465,21.70247],[88.04396,21.70365],[88.04387,21.70407],[88.04375,21.70504],[88.04348,21.70596],[88.04348,21.70719],[88.04335,21.70814],[88.04307,21.70872],[88.04283,21.70896],[88.04277,21.70897],[88.0427,21.70893],[88.04248,21.70816],[88.04246,21.70657],[88.04238,21.70616],[88.04245,21.70448],[88.04232,21.70344],[88.04236,21.70306],[88.04281,21.70177],[88.04287,21.70136],[88.04297,21.70107],[88.04309,21.70088],[88.04329,21.70069],[88.04343,21.70058],[88.04364,21.70059]]],[[[88.05318,21.70305],[88.05346,21.7031],[88.05357,21.70319],[88.05406,21.70388],[88.05427,21.70433],[88.0544,21.70472],[88.05444,21.70509],[88.05437,21.70634],[88.05446,21.7067],[88.05505,21.70777],[88.05517,21.70813],[88.05528,21.70888],[88.05545,21.70918],[88.05598,21.70975],[88.05625,21.71014],[88.0563,21.71067],[88.05627,21.7109],[88.05618,21.71109],[88.05575,21.71139],[88.05555,21.71144],[88.05423,21.7113],[88.05391,21.71115],[88.05371,21.71088],[88.05362,21.71049],[88.05365,21.70973],[88.05361,21.70955],[88.05356,21.70935],[88.05301,21.70857],[88.05294,21.70824],[88.05311,21.70737],[88.05307,21.70708],[88.0529,21.70659],[88.05235,21.70555],[88.05218,21.70491],[88.05219,21.70416],[88.05237,21.70361],[88.05269,21.70322],[88.05304,21.70306],[88.05318,21.70305]]],[[[88.63505,21.66294],[88.63696,21.66567],[88.63801,21.66607],[88.63852,21.66655],[88.63825,21.66753],[88.63879,21.66928],[88.64098,21.67267],[88.64195,21.67598],[88.6421,21.67821],[88.64257,21.67879],[88.64238,21.67919],[88.64121,21.67963],[88.63723,21.67978],[88.63516,21.67865],[88.63141,21.67445],[88.63088,21.67329],[88.63045,21.67135],[88.63142,21.67067],[88.63018,21.67037],[88.62998,21.66979],[88.62901,21.66487],[88.62847,21.66378],[88.62866,21.66309],[88.62761,21.6606],[88.62706,21.65769],[88.62706,21.65667],[88.62664,21.65569],[88.62749,21.65536],[88.62776,21.65503],[88.62741,21.65444],[88.62812,21.65364],[88.62812,21.65306],[88.62858,21.65145],[88.62936,21.65109],[88.62971,21.65055],[88.63092,21.64967],[88.63158,21.64941],[88.63232,21.65],[88.63369,21.65043],[88.6356,21.65047],[88.6361,21.65087],[88.63564,21.65171],[88.63564,21.65237],[88.63513,21.65306],[88.63497,21.65382],[88.63505,21.65569],[88.63419,21.65699],[88.634,21.65787],[88.63447,21.65926],[88.63568,21.66057],[88.6363,21.66192],[88.63711,21.6629],[88.63719,21.66381],[88.6377,21.66465],[88.6377,21.66545],[88.6363,21.66425],[88.63536,21.6625],[88.63501,21.66235],[88.63505,21.66294]]],[[[88.30938,21.70486],[88.30661,21.70563],[88.30569,21.69959],[88.31129,21.6891],[88.31453,21.68022],[88.3161,21.67237],[88.31611,21.66274],[88.31391,21.65211],[88.30942,21.63963],[88.30745,21.63247],[88.30645,21.61495],[88.3091,21.608],[88.31785,21.60522],[88.32278,21.60781],[88.32691,21.61322],[88.33956,21.61941],[88.34062,21.62307],[88.3443,21.6276],[88.34615,21.63317],[88.34344,21.63759],[88.35046,21.6468],[88.34976,21.64852],[88.34479,21.64921],[88.34621,21.65162],[88.34643,21.65461],[88.34371,21.6619],[88.34472,21.66395],[88.34754,21.66672],[88.35078,21.67262],[88.3516,21.67486],[88.35142,21.67728],[88.35025,21.68046],[88.34338,21.69209],[88.33367,21.69982],[88.32891,21.70209],[88.32453,21.70306],[88.31915,21.70385],[88.31336,21.70371],[88.30938,21.70486]]],[[[88.18242,21.68823],[88.18483,21.68985],[88.1868,21.69165],[88.18878,21.69425],[88.19042,21.69804],[88.19346,21.70142],[88.19753,21.70422],[88.20188,21.70592],[88.20468,21.70739],[88.20631,21.70865],[88.20719,21.70988],[88.20802,21.71209],[88.20825,21.71346],[88.20579,21.71842],[88.2043,21.7229],[88.20402,21.72507],[88.20366,21.72584],[88.20198,21.72453],[88.19961,21.72212],[88.19516,21.71892],[88.19164,21.71562],[88.18948,21.71333],[88.18581,21.70767],[88.1853,21.70653],[88.18512,21.70537],[88.18234,21.69956],[88.18214,21.6979],[88.18154,21.69607],[88.18145,21.69229],[88.18118,21.69126],[88.18142,21.6905],[88.18082,21.68902],[88.18137,21.68826],[88.18242,21.68823]]],[[[88.74978,21.64962],[88.74379,21.65212],[88.7303,21.66409],[88.70778,21.68137],[88.7018,21.68787],[88.69932,21.69528],[88.69826,21.71045],[88.69483,21.71861],[88.69341,21.72066],[88.69251,21.72016],[88.68666,21.68948],[88.68443,21.68431],[88.68726,21.67931],[88.70636,21.66083],[88.71397,21.65127],[88.7175,21.64401],[88.71884,21.63474],[88.7185,21.62661],[88.71749,21.62278],[88.71209,21.61471],[88.70721,21.59015],[88.70859,21.58472],[88.71544,21.57246],[88.72624,21.56664],[88.73869,21.56402],[88.74203,21.56219],[88.74672,21.56514],[88.75974,21.56478],[88.77611,21.56984],[88.77812,21.5749],[88.79481,21.58212],[88.79705,21.58802],[88.80005,21.59124],[88.79723,21.59708],[88.77604,21.61959],[88.77296,21.62577],[88.77157,21.63178],[88.7738,21.64011],[88.77691,21.64346],[88.77466,21.64929],[88.76898,21.65595],[88.75923,21.65246],[88.75242,21.64801],[88.74978,21.64962]]],[[[88.41516,21.72519],[88.41491,21.72675],[88.41221,21.72841],[88.41121,21.73102],[88.40789,21.73459],[88.40165,21.73728],[88.39898,21.74353],[88.40018,21.75169],[88.39583,21.75464],[88.39451,21.75373],[88.39234,21.74287],[88.39095,21.73838],[88.38912,21.73575],[88.38392,21.73231],[88.37213,21.72955],[88.36927,21.72823],[88.36876,21.72698],[88.37005,21.72443],[88.37253,21.72384],[88.3872,21.72635],[88.39593,21.7253],[88.40129,21.72141],[88.40424,21.71663],[88.40392,21.71356],[88.40474,21.71106],[88.40153,21.7019],[88.39564,21.69448],[88.39058,21.69018],[88.3882,21.68961],[88.3824,21.68284],[88.38254,21.66635],[88.38226,21.66428],[88.38094,21.66289],[88.38548,21.65549],[88.38546,21.6524],[88.38813,21.64251],[88.39091,21.64051],[88.3895,21.63946],[88.38893,21.63677],[88.38603,21.63716],[88.38576,21.63244],[88.38698,21.62961],[88.39301,21.62527],[88.39361,21.62354],[88.39151,21.6186],[88.38638,21.61225],[88.38519,21.6119],[88.38483,21.61036],[88.38806,21.60198],[88.39154,21.59935],[88.39322,21.59941],[88.39641,21.59651],[88.39547,21.59506],[88.39694,21.58993],[88.39937,21.59129],[88.40011,21.5901],[88.40734,21.58987],[88.4077,21.5928],[88.40667,21.59401],[88.40846,21.5956],[88.40704,21.60112],[88.4059,21.60233],[88.41177,21.61178],[88.41516,21.61437],[88.4178,21.6147],[88.42318,21.61737],[88.43046,21.61876],[88.43195,21.62045],[88.43225,21.62589],[88.42866,21.63509],[88.41752,21.64503],[88.41191,21.65277],[88.41105,21.65583],[88.4108,21.6663],[88.41426,21.67261],[88.41185,21.67852],[88.41038,21.67946],[88.4117,21.68237],[88.4113,21.68559],[88.41333,21.69293],[88.41961,21.69837],[88.42756,21.70105],[88.42814,21.70251],[88.42458,21.70825],[88.42272,21.71499],[88.42061,21.71734],[88.42168,21.71814],[88.42001,21.72004],[88.41839,21.71932],[88.41724,21.72037],[88.41489,21.72425],[88.41516,21.72519]]],[[[88.38768,21.76279],[88.38542,21.76407],[88.38284,21.7644],[88.37812,21.76642],[88.37029,21.76376],[88.35988,21.76332],[88.35711,21.76215],[88.35314,21.76179],[88.34763,21.76018],[88.34525,21.75809],[88.34367,21.75483],[88.34302,21.7515],[88.34515,21.73775],[88.34815,21.72903],[88.34853,21.72254],[88.34732,21.7197],[88.34592,21.71792],[88.34157,21.71609],[88.33867,21.7139],[88.33844,21.71158],[88.34095,21.70668],[88.34587,21.69998],[88.35037,21.69233],[88.35175,21.69091],[88.35619,21.68808],[88.35707,21.68646],[88.35982,21.68631],[88.36023,21.68572],[88.36173,21.68611],[88.36308,21.68557],[88.36455,21.68658],[88.3658,21.68845],[88.36537,21.69106],[88.36853,21.69219],[88.36953,21.69393],[88.37082,21.69372],[88.37244,21.69437],[88.37539,21.69703],[88.38349,21.70066],[88.38591,21.70232],[88.39186,21.70784],[88.39451,21.71322],[88.3947,21.71461],[88.39391,21.71604],[88.39153,21.71785],[88.38998,21.71832],[88.38747,21.71858],[88.3764,21.717],[88.37071,21.71793],[88.36732,21.71962],[88.36353,21.72469],[88.36328,21.72591],[88.36392,21.72993],[88.36548,21.73317],[88.37299,21.73708],[88.38301,21.73807],[88.38593,21.74047],[88.3871,21.74343],[88.38731,21.75024],[88.38634,21.75166],[88.38743,21.75454],[88.39011,21.75854],[88.38991,21.76078],[88.38768,21.76279]]],[[[88.19813,21.76905],[88.19747,21.77098],[88.19609,21.77328],[88.19496,21.77553],[88.19386,21.77849],[88.19353,21.77906],[88.19319,21.77958],[88.19289,21.77971],[88.19261,21.77971],[88.19219,21.77931],[88.19192,21.77793],[88.19171,21.77485],[88.19084,21.77156],[88.19029,21.77014],[88.19016,21.76868],[88.19071,21.76594],[88.19101,21.76522],[88.19144,21.76483],[88.19225,21.76478],[88.19263,21.76487],[88.19301,21.76517],[88.19362,21.76612],[88.19388,21.76672],[88.19419,21.76878],[88.19436,21.76901],[88.19451,21.76884],[88.19417,21.76665],[88.19307,21.7647],[88.19294,21.76311],[88.193,21.7625],[88.1924,21.75939],[88.19242,21.75875],[88.19265,21.75819],[88.19306,21.75827],[88.19327,21.75859],[88.19361,21.75951],[88.19378,21.76069],[88.19408,21.76165],[88.19436,21.76206],[88.19467,21.76232],[88.19562,21.7626],[88.1964,21.7632],[88.19709,21.7641],[88.19747,21.76484],[88.1979,21.76624],[88.19788,21.76735],[88.19812,21.76788],[88.19813,21.76905]]],[[[88.30132,21.75184],[88.30112,21.75486],[88.29828,21.76683],[88.29615,21.77068],[88.28911,21.77875],[88.2866,21.76901],[88.28546,21.75491],[88.28419,21.75086],[88.28501,21.75028],[88.2844,21.74926],[88.28347,21.74871],[88.28138,21.74342],[88.27976,21.73492],[88.28171,21.73293],[88.28336,21.72677],[88.28467,21.72404],[88.28536,21.72422],[88.28643,21.72067],[88.28938,21.71742],[88.28934,21.71525],[88.29014,21.71366],[88.29189,21.71206],[88.29254,21.71268],[88.29157,21.71551],[88.29192,21.71631],[88.2933,21.71607],[88.29596,21.71692],[88.29929,21.71492],[88.29913,21.71941],[88.30088,21.7254],[88.30496,21.73246],[88.30469,21.73619],[88.30247,21.74412],[88.30175,21.74774],[88.30173,21.75084],[88.30125,21.75084],[88.30132,21.75184]]],[[[88.60395,21.72556],[88.61355,21.72834],[88.6176,21.73094],[88.61873,21.7325],[88.61968,21.7351],[88.6197,21.73696],[88.61888,21.73919],[88.61682,21.74095],[88.61368,21.74229],[88.60716,21.74354],[88.59845,21.74708],[88.59435,21.75004],[88.59004,21.75233],[88.58726,21.7533],[88.58482,21.75693],[88.58407,21.75973],[88.58408,21.76161],[88.58565,21.76541],[88.58586,21.76719],[88.58486,21.77148],[88.58464,21.77432],[88.58389,21.77618],[88.58223,21.77641],[88.57746,21.77327],[88.57174,21.77143],[88.56929,21.77014],[88.56878,21.7697],[88.57086,21.76668],[88.57308,21.76479],[88.57634,21.76101],[88.57825,21.7599],[88.57917,21.75794],[88.58253,21.75449],[88.58458,21.74843],[88.58489,21.74309],[88.58367,21.73685],[88.57903,21.72879],[88.57902,21.7271],[88.5805,21.72613],[88.58645,21.72427],[88.59353,21.72042],[88.59434,21.72169],[88.59587,21.72248],[88.60167,21.72483],[88.60228,21.72554],[88.60395,21.72556]]],[[[88.18152,21.78383],[88.18317,21.786],[88.18515,21.78903],[88.18569,21.79021],[88.18561,21.79063],[88.18521,21.79149],[88.18232,21.79566],[88.1794,21.79923],[88.17905,21.79933],[88.17634,21.79346],[88.17634,21.7926],[88.17666,21.79134],[88.17782,21.78947],[88.17893,21.78724],[88.18012,21.78513],[88.18082,21.78405],[88.1812,21.7837],[88.18152,21.78383]]],[[[88.6084,21.78459],[88.6031,21.78495],[88.59468,21.78369],[88.59259,21.78316],[88.59044,21.78078],[88.58883,21.77659],[88.58858,21.76304],[88.58739,21.75721],[88.59905,21.75127],[88.60035,21.7494],[88.60253,21.74812],[88.60432,21.74748],[88.61166,21.74724],[88.61567,21.74572],[88.61934,21.74337],[88.62173,21.74005],[88.62312,21.73509],[88.62321,21.73309],[88.62028,21.72804],[88.61049,21.72232],[88.60004,21.71796],[88.59706,21.71568],[88.59723,21.71416],[88.59796,21.71292],[88.60354,21.70777],[88.61092,21.70477],[88.61246,21.70745],[88.61256,21.70882],[88.61616,21.7127],[88.61762,21.71582],[88.6205,21.71858],[88.62364,21.72405],[88.62756,21.72931],[88.62988,21.73614],[88.63003,21.74116],[88.62946,21.74543],[88.62975,21.75147],[88.6293,21.75516],[88.62801,21.7581],[88.62768,21.76141],[88.62527,21.76555],[88.62552,21.76808],[88.62492,21.77009],[88.62568,21.7712],[88.62152,21.78116],[88.62061,21.78238],[88.61861,21.78349],[88.60977,21.78382],[88.6084,21.78459]]],[[[88.42218,21.81058],[88.41988,21.81154],[88.41783,21.8101],[88.3992,21.79229],[88.38706,21.78278],[88.38342,21.77769],[88.38493,21.77422],[88.38817,21.77334],[88.38861,21.76851],[88.39578,21.76168],[88.39657,21.75585],[88.40017,21.75444],[88.40316,21.75611],[88.40365,21.75419],[88.40531,21.75447],[88.40251,21.75085],[88.40114,21.74469],[88.40317,21.73838],[88.41162,21.73446],[88.42138,21.72078],[88.42662,21.71842],[88.42678,21.71513],[88.43008,21.71075],[88.43249,21.70438],[88.43286,21.70219],[88.42885,21.69562],[88.41984,21.69018],[88.41914,21.68293],[88.42102,21.6676],[88.42038,21.65314],[88.43692,21.63249],[88.44113,21.62283],[88.44116,21.61815],[88.43946,21.61316],[88.43463,21.60815],[88.42716,21.60532],[88.43399,21.60371],[88.43977,21.60679],[88.44746,21.60854],[88.45016,21.61177],[88.45529,21.62401],[88.45567,21.62595],[88.45336,21.62582],[88.45946,21.63976],[88.46003,21.64846],[88.46447,21.65657],[88.46514,21.6663],[88.46696,21.66741],[88.46889,21.66649],[88.46898,21.66943],[88.47151,21.67388],[88.46599,21.68745],[88.46003,21.69616],[88.45928,21.70052],[88.45744,21.70387],[88.45491,21.70514],[88.4528,21.71841],[88.45582,21.75003],[88.45305,21.75159],[88.45527,21.75244],[88.45863,21.76361],[88.45825,21.76942],[88.46277,21.78262],[88.47144,21.79247],[88.46642,21.79352],[88.46222,21.78885],[88.45557,21.78913],[88.44713,21.79736],[88.44182,21.80049],[88.43457,21.79813],[88.42999,21.79927],[88.4274,21.80112],[88.42604,21.80919],[88.42218,21.81058]]],[[[88.57968,21.71738],[88.57355,21.72266],[88.57206,21.732],[88.57377,21.74224],[88.57263,21.74784],[88.56812,21.75553],[88.5616,21.76212],[88.56007,21.76792],[88.5599,21.77109],[88.56175,21.77592],[88.56459,21.77962],[88.57404,21.78587],[88.57043,21.79318],[88.56184,21.80249],[88.55697,21.80478],[88.55541,21.80778],[88.54317,21.81171],[88.51617,21.78736],[88.50782,21.77121],[88.50629,21.75836],[88.50819,21.7492],[88.51287,21.73928],[88.51323,21.73566],[88.51817,21.73077],[88.51913,21.72777],[88.51858,21.71341],[88.5223,21.70573],[88.52344,21.70049],[88.52814,21.69242],[88.52588,21.68647],[88.52884,21.6829],[88.53089,21.67084],[88.52986,21.66749],[88.52623,21.66417],[88.52622,21.66287],[88.5311,21.65275],[88.54234,21.6409],[88.5493,21.63841],[88.55649,21.6389],[88.56283,21.63567],[88.56682,21.63507],[88.58187,21.62561],[88.587,21.62015],[88.59492,21.61541],[88.59669,21.6126],[88.60267,21.61254],[88.60608,21.61456],[88.60874,21.61994],[88.60857,21.62255],[88.6078,21.62536],[88.60482,21.62688],[88.59842,21.64335],[88.5945,21.64917],[88.59337,21.65552],[88.59101,21.65834],[88.60269,21.66811],[88.60716,21.6759],[88.6054,21.67872],[88.60862,21.68148],[88.59242,21.69618],[88.58872,21.70405],[88.58841,21.71282],[88.58347,21.71716],[88.57968,21.71738]]],[[[88.19967,21.83595],[88.19791,21.83895],[88.19729,21.84052],[88.19692,21.83979],[88.19675,21.83908],[88.19619,21.83813],[88.19548,21.83742],[88.19453,21.83609],[88.19289,21.83316],[88.19206,21.83123],[88.19206,21.8304],[88.19236,21.82916],[88.19513,21.82463],[88.19555,21.82354],[88.19768,21.82274],[88.19968,21.82075],[88.20179,21.8179],[88.20229,21.82131],[88.20228,21.82273],[88.20191,21.82513],[88.20109,21.82715],[88.20071,21.83075],[88.19967,21.83595]]],[[[88.48318,21.83491],[88.47835,21.83495],[88.47694,21.83406],[88.47512,21.83398],[88.47403,21.83203],[88.47308,21.8293],[88.4676,21.82075],[88.4671,21.82097],[88.46158,21.81877],[88.4581,21.81705],[88.45708,21.81615],[88.45517,21.81553],[88.45189,21.81364],[88.4519,21.81302],[88.45323,21.81079],[88.45751,21.80733],[88.46208,21.80182],[88.46393,21.80021],[88.46985,21.80013],[88.4714,21.79978],[88.47366,21.80019],[88.47772,21.79995],[88.47856,21.80048],[88.48067,21.80053],[88.48546,21.79886],[88.48783,21.80242],[88.49051,21.80393],[88.49375,21.80703],[88.49586,21.80861],[88.49705,21.80907],[88.4999,21.81133],[88.50002,21.81182],[88.49954,21.81259],[88.49882,21.81598],[88.49861,21.81964],[88.49815,21.82112],[88.49716,21.82168],[88.49636,21.82315],[88.49545,21.82325],[88.4955,21.82462],[88.49081,21.82894],[88.48778,21.83428],[88.48673,21.8345],[88.48595,21.83418],[88.48321,21.83416],[88.48318,21.83491]]],[[[88.19072,21.83056],[88.19286,21.83563],[88.19512,21.83904],[88.19521,21.83948],[88.19467,21.84038],[88.19185,21.84346],[88.18812,21.84645],[88.18596,21.84863],[88.18083,21.85301],[88.17683,21.85738],[88.17347,21.86184],[88.17167,21.86499],[88.16916,21.86757],[88.16636,21.86974],[88.16619,21.86825],[88.16665,21.86674],[88.16682,21.86501],[88.16727,21.86386],[88.16792,21.86269],[88.1697,21.86093],[88.17212,21.85774],[88.17483,21.85209],[88.17609,21.84862],[88.17814,21.84472],[88.18236,21.8384],[88.18408,21.83664],[88.18619,21.83374],[88.18876,21.83112],[88.18975,21.83048],[88.19044,21.83035],[88.19072,21.83056]]],[[[88.14858,21.84973],[88.145,21.85617],[88.14094,21.85865],[88.14115,21.86184],[88.13595,21.87535],[88.13181,21.87357],[88.12586,21.86817],[88.12099,21.86272],[88.11714,21.85122],[88.11388,21.85073],[88.1018,21.83255],[88.0961,21.81318],[88.09235,21.80897],[88.08496,21.79403],[88.08403,21.78408],[88.08002,21.7822],[88.07681,21.77742],[88.07341,21.75903],[88.07649,21.75176],[88.07166,21.74941],[88.06996,21.74028],[88.06345,21.73745],[88.06272,21.73547],[88.06559,21.73546],[88.06578,21.73337],[88.05994,21.72996],[88.05521,21.72095],[88.05393,21.71186],[88.05624,21.71157],[88.05693,21.70972],[88.05502,21.7071],[88.05425,21.70029],[88.04977,21.68823],[88.05101,21.68762],[88.04634,21.68697],[88.04335,21.67801],[88.04517,21.67597],[88.04135,21.67556],[88.04191,21.67051],[88.04508,21.66989],[88.04467,21.66658],[88.04318,21.66622],[88.04395,21.66335],[88.04167,21.65539],[88.04169,21.65321],[88.04327,21.65368],[88.0436,21.65163],[88.04135,21.64953],[88.05729,21.63939],[88.06981,21.63601],[88.07039,21.63478],[88.07882,21.63364],[88.08157,21.636],[88.09144,21.6387],[88.0903,21.63142],[88.09134,21.63043],[88.11868,21.6254],[88.1239,21.62573],[88.12774,21.62943],[88.1352,21.62806],[88.14123,21.6333],[88.14261,21.63908],[88.14508,21.63898],[88.14511,21.64696],[88.14344,21.64929],[88.1441,21.66217],[88.14213,21.66347],[88.14331,21.66996],[88.14137,21.67144],[88.14086,21.67483],[88.13473,21.67649],[88.13419,21.67848],[88.14891,21.68009],[88.15324,21.68196],[88.1526,21.69503],[88.15749,21.70826],[88.16533,21.72091],[88.16712,21.73223],[88.17061,21.73632],[88.17125,21.7401],[88.16765,21.75373],[88.16883,21.75564],[88.16891,21.78155],[88.1656,21.79483],[88.16725,21.80295],[88.171,21.80932],[88.16834,21.81358],[88.16866,21.81844],[88.16693,21.8237],[88.1571,21.83209],[88.14858,21.84973]]],[[[88.17427,21.86369],[88.17479,21.8644],[88.17479,21.86492],[88.1742,21.86555],[88.17418,21.86729],[88.17407,21.86774],[88.17357,21.86853],[88.17258,21.86938],[88.17165,21.87065],[88.17064,21.87331],[88.16853,21.87575],[88.1677,21.87685],[88.16677,21.87869],[88.16635,21.87906],[88.16528,21.87916],[88.16502,21.87894],[88.16483,21.87837],[88.16597,21.87608],[88.16701,21.87319],[88.16834,21.87038],[88.16925,21.86879],[88.16975,21.86833],[88.17047,21.86814],[88.17293,21.86492],[88.17383,21.86356],[88.17415,21.86348],[88.17427,21.86369]]],[[[88.56646,21.87999],[88.56211,21.8804],[88.55873,21.87963],[88.55552,21.87772],[88.55459,21.87676],[88.55405,21.87567],[88.55344,21.87211],[88.5539,21.86808],[88.55533,21.86395],[88.5586,21.85695],[88.55946,21.85439],[88.55997,21.85151],[88.5598,21.84679],[88.55826,21.84225],[88.55603,21.83816],[88.55281,21.83437],[88.55188,21.83243],[88.55301,21.83062],[88.55669,21.82769],[88.55739,21.8278],[88.55877,21.8295],[88.56121,21.83483],[88.56261,21.83957],[88.56381,21.8415],[88.56474,21.84386],[88.56541,21.84619],[88.56422,21.84823],[88.56411,21.84892],[88.56491,21.85036],[88.56515,21.852],[88.56534,21.85118],[88.5646,21.84941],[88.56473,21.84826],[88.56527,21.84739],[88.56621,21.84708],[88.56737,21.84878],[88.57305,21.85469],[88.57395,21.85606],[88.57394,21.85964],[88.57425,21.86185],[88.57385,21.86942],[88.57421,21.87554],[88.5744,21.87669],[88.57508,21.8781],[88.57505,21.87899],[88.57442,21.87966],[88.5713,21.87946],[88.56646,21.87999]]],[[[88.56171,21.89724],[88.55519,21.89942],[88.54507,21.90381],[88.543,21.90377],[88.54143,21.90219],[88.541,21.90058],[88.54144,21.89898],[88.54267,21.89754],[88.5468,21.89473],[88.54878,21.89197],[88.54878,21.88692],[88.54998,21.88349],[88.55047,21.87938],[88.54824,21.87552],[88.54262,21.87119],[88.54151,21.86955],[88.54436,21.86089],[88.54326,21.8546],[88.54152,21.8532],[88.53161,21.84882],[88.53089,21.84765],[88.53108,21.84552],[88.53298,21.84118],[88.53356,21.83735],[88.53463,21.83609],[88.53566,21.8335],[88.53792,21.83229],[88.53924,21.83423],[88.53914,21.83694],[88.54238,21.83911],[88.544,21.84299],[88.5427,21.83926],[88.53951,21.83665],[88.5396,21.83425],[88.53881,21.83233],[88.53933,21.8309],[88.54284,21.82961],[88.54411,21.82797],[88.54483,21.82791],[88.5473,21.82158],[88.54792,21.82135],[88.54759,21.82045],[88.54877,21.81787],[88.552,21.81662],[88.55304,21.81661],[88.55417,21.81733],[88.55441,21.82412],[88.55047,21.8309],[88.55027,21.83215],[88.5511,21.83472],[88.55551,21.84081],[88.55777,21.84484],[88.55854,21.85001],[88.55853,21.85212],[88.55762,21.85534],[88.55242,21.86736],[88.55199,21.87174],[88.55298,21.87668],[88.55489,21.87943],[88.55874,21.88139],[88.56841,21.88194],[88.57434,21.8811],[88.57615,21.88306],[88.57559,21.88806],[88.57207,21.89566],[88.57043,21.90049],[88.56995,21.90069],[88.56384,21.89732],[88.56171,21.89724]]],[[[88.13026,21.93016],[88.12869,21.93046],[88.1253,21.93019],[88.12462,21.93061],[88.12363,21.93054],[88.12242,21.92906],[88.12077,21.92795],[88.11849,21.92537],[88.11681,21.92388],[88.11642,21.92339],[88.11535,21.92044],[88.11554,21.91885],[88.1186,21.91293],[88.1191,21.90989],[88.12098,21.90922],[88.12303,21.90699],[88.12372,21.90581],[88.12469,21.9032],[88.12663,21.89997],[88.12755,21.89952],[88.13001,21.89913],[88.13213,21.89972],[88.13333,21.9004],[88.13458,21.90136],[88.13548,21.90257],[88.1377,21.90448],[88.13767,21.90578],[88.13886,21.90637],[88.13974,21.90822],[88.14213,21.91198],[88.14316,21.91431],[88.14502,21.91689],[88.14502,21.91734],[88.1447,21.91768],[88.13867,21.92297],[88.13827,21.92279],[88.13753,21.92163],[88.13705,21.92129],[88.13769,21.92277],[88.13761,21.92343],[88.13664,21.92558],[88.13444,21.92777],[88.1315,21.92968],[88.13026,21.93016]]],[[[88.64859,21.91786],[88.63852,21.9222],[88.63664,21.92178],[88.63117,21.91015],[88.61703,21.89605],[88.60306,21.87448],[88.59791,21.86274],[88.59186,21.85253],[88.58481,21.84498],[88.58021,21.83473],[88.57683,21.81793],[88.57822,21.81349],[88.58631,21.80152],[88.59197,21.79764],[88.59653,21.79709],[88.61002,21.79868],[88.61551,21.79788],[88.62109,21.79664],[88.6314,21.79102],[88.64456,21.78794],[88.64486,21.80768],[88.6459,21.81561],[88.64886,21.82465],[88.65037,21.8369],[88.6505,21.84971],[88.65211,21.85769],[88.65159,21.85977],[88.65464,21.86511],[88.65279,21.87249],[88.65476,21.87538],[88.65667,21.88443],[88.65917,21.88814],[88.66289,21.89788],[88.66595,21.90196],[88.67007,21.91242],[88.67009,21.91422],[88.66501,21.91427],[88.65359,21.91777],[88.64859,21.91786]]],[[[88.93731,21.91475],[88.91744,21.92875],[88.91182,21.93088],[88.90843,21.92434],[88.90259,21.92103],[88.88838,21.91645],[88.88162,21.91698],[88.87489,21.91988],[88.85969,21.91271],[88.8493,21.91272],[88.83861,21.9178],[88.82159,21.93019],[88.81975,21.93061],[88.81901,21.92926],[88.82543,21.91388],[88.83987,21.90639],[88.84964,21.89648],[88.85316,21.88889],[88.85451,21.87968],[88.85374,21.86625],[88.84298,21.85554],[88.8368,21.84303],[88.83739,21.83193],[88.84153,21.81563],[88.83902,21.79444],[88.83491,21.7858],[88.83506,21.78279],[88.85832,21.78104],[88.87334,21.77196],[88.87722,21.76661],[88.88026,21.74586],[88.87161,21.71909],[88.86965,21.70417],[88.87145,21.69483],[88.87969,21.68534],[88.88413,21.66117],[88.89107,21.65239],[88.90473,21.64589],[88.91749,21.63213],[88.92297,21.63231],[88.9286,21.6552],[88.93296,21.66426],[88.94013,21.68904],[88.93949,21.69664],[88.93516,21.70282],[88.92589,21.70612],[88.91467,21.71618],[88.91439,21.73153],[88.92202,21.74183],[88.9223,21.74476],[88.91731,21.75137],[88.91621,21.75905],[88.92084,21.76239],[88.9313,21.74985],[88.93171,21.74443],[88.93091,21.73879],[88.92126,21.72152],[88.93684,21.71267],[88.94639,21.70497],[88.94901,21.70201],[88.95131,21.69385],[88.95283,21.68119],[88.94352,21.66211],[88.94297,21.6567],[88.93872,21.64614],[88.95415,21.62722],[88.97981,21.61541],[88.98947,21.61597],[88.99534,21.62222],[88.99727,21.62197],[88.99914,21.61811],[88.99792,21.61655],[88.99798,21.60323],[89.02378,21.60291],[89.02767,21.60512],[89.03654,21.61833],[89.0352,21.6258],[89.02325,21.63407],[89.01996,21.64043],[89.02133,21.65193],[89.02407,21.65822],[89.02648,21.65819],[89.02701,21.65254],[89.02426,21.64557],[89.02918,21.63513],[89.03788,21.63183],[89.0488,21.62394],[89.05049,21.61557],[89.06813,21.61738],[89.0942,21.64134],[89.09356,21.66368],[89.08126,21.6812],[89.07269,21.68988],[89.06764,21.69107],[89.07186,21.69914],[89.07166,21.70185],[89.07027,21.70615],[89.06409,21.713],[89.06157,21.7223],[89.05561,21.72756],[89.05592,21.73252],[89.03775,21.74449],[89.0323,21.75223],[89.02253,21.76092],[89.01946,21.76615],[89.01237,21.79423],[89.01604,21.81276],[89.02844,21.8314],[89.02915,21.84548],[89.02753,21.85024],[89.03134,21.86396],[89.02482,21.87131],[88.98386,21.89525],[88.93731,21.91475]]],[[[88.56796,21.95848],[88.56343,21.96144],[88.56095,21.96505],[88.55746,21.97218],[88.5563,21.9729],[88.55245,21.97345],[88.54943,21.97312],[88.54547,21.97184],[88.54438,21.97086],[88.54281,21.96498],[88.54267,21.96028],[88.54345,21.95436],[88.54484,21.94917],[88.54716,21.94384],[88.54957,21.94021],[88.5508,21.93587],[88.55123,21.93069],[88.54987,21.923],[88.55213,21.9198],[88.55704,21.91734],[88.56264,21.9155],[88.56679,21.91236],[88.57298,21.90499],[88.57308,21.90216],[88.57492,21.89886],[88.57655,21.89339],[88.58041,21.89254],[88.58257,21.89144],[88.58362,21.89164],[88.58729,21.89395],[88.58951,21.89624],[88.60159,21.9055],[88.60595,21.91138],[88.60685,21.91455],[88.60919,21.91846],[88.60998,21.92471],[88.60929,21.92679],[88.60598,21.93167],[88.59995,21.93731],[88.59488,21.94712],[88.59099,21.95148],[88.57535,21.95953],[88.57206,21.95854],[88.56796,21.95848]]],[[[88.60318,21.99118],[88.60387,21.9936],[88.6071,22.00005],[88.60608,22.00005],[88.60299,21.99745],[88.59964,21.9915],[88.59916,21.991],[88.59697,21.9905],[88.59581,21.98859],[88.59383,21.98832],[88.58811,21.99046],[88.58621,21.99008],[88.58543,21.98963],[88.5859,21.98892],[88.58425,21.98676],[88.57808,21.98209],[88.57657,21.97998],[88.57583,21.97638],[88.576,21.97145],[88.57644,21.97076],[88.5778,21.97067],[88.57776,21.97001],[88.57682,21.97015],[88.57636,21.9697],[88.57679,21.96589],[88.57649,21.96064],[88.57838,21.95898],[88.59197,21.95155],[88.59569,21.9472],[88.60057,21.93786],[88.60303,21.9358],[88.60384,21.93595],[88.60381,21.93509],[88.60451,21.93459],[88.60516,21.93456],[88.60615,21.93565],[88.60813,21.93533],[88.60823,21.93485],[88.60775,21.93459],[88.60892,21.93424],[88.60881,21.93349],[88.60978,21.93294],[88.60875,21.93119],[88.60748,21.93158],[88.60923,21.92965],[88.61039,21.9293],[88.61118,21.92987],[88.60935,21.93084],[88.61027,21.93272],[88.61291,21.93162],[88.61368,21.93213],[88.6145,21.93376],[88.61347,21.93436],[88.61018,21.9341],[88.61038,21.93469],[88.60964,21.93484],[88.6095,21.93533],[88.61227,21.93516],[88.61368,21.93568],[88.61503,21.93751],[88.61378,21.94002],[88.60935,21.94545],[88.60619,21.95074],[88.60337,21.95658],[88.60008,21.96205],[88.59861,21.96758],[88.59916,21.97531],[88.60318,21.99118]]],[[[88.94364,22.00087],[88.94482,21.99329],[88.94436,21.98608],[88.94089,21.97935],[88.93646,21.97457],[88.92611,21.96746],[88.92487,21.96511],[88.92494,21.96127],[88.92842,21.95142],[88.92882,21.94511],[88.93631,21.936],[88.94648,21.92878],[88.9644,21.92467],[88.96763,21.92194],[88.9825,21.91465],[88.99483,21.90616],[88.99951,21.90463],[89.01229,21.90301],[89.01308,21.9074],[89.01441,21.90795],[89.0164,21.91165],[89.01655,21.9139],[89.01931,21.92108],[89.01697,21.92641],[89.0133,21.93152],[89.00685,21.93735],[88.99112,21.94408],[88.98924,21.94782],[88.98857,21.95104],[88.98875,21.95532],[88.9942,21.96484],[89.00495,21.97261],[89.00997,21.9774],[89.00977,21.98033],[89.00654,21.98263],[89.00448,21.98243],[88.99244,21.97242],[88.98759,21.97147],[88.98496,21.97353],[88.98378,21.97602],[88.98439,21.98459],[88.98307,21.98551],[88.97487,21.98674],[88.96885,21.98884],[88.96601,21.99271],[88.96484,21.99554],[88.95616,21.99711],[88.95388,21.99883],[88.9539,21.99996],[88.94628,22.00005],[88.94364,22.00087]]],[[[89.81613,26.34273],[89.80674,26.3491],[89.80228,26.35057],[89.80001,26.35061],[89.7977,26.35032],[89.79559,26.34937],[89.79537,26.34646],[89.79408,26.34383],[89.79159,26.34269],[89.78989,26.34258],[89.78972,26.34183],[89.79015,26.34116],[89.79341,26.34139],[89.7964,26.33969],[89.79806,26.33785],[89.79612,26.33299],[89.79983,26.32973],[89.80283,26.32965],[89.80526,26.32841],[89.808,26.32651],[89.81114,26.32371],[89.8147,26.32165],[89.81741,26.32094],[89.82024,26.32325],[89.82312,26.32794],[89.82303,26.32978],[89.81968,26.33302],[89.81921,26.33489],[89.81937,26.33683],[89.81856,26.33883],[89.81613,26.34273]]],[[[88.03494,27.22098],[88.02673,27.22067],[88.01426,27.21291],[88.0153,27.20937],[88.01164,27.20345],[88.01531,27.2],[88.01599,27.19359],[88.01314,27.18781],[88.01244,27.17787],[88.01922,27.17105],[88.01144,27.16624],[88.01132,27.15907],[88.00936,27.15707],[88.01027,27.1545],[88.0073,27.14316],[88.0009,27.14043],[87.99898,27.13373],[87.99126,27.13071],[87.98896,27.12072],[87.98683,27.11904],[87.98843,27.11871],[87.98982,27.11133],[87.99151,27.11026],[87.99088,27.10561],[87.99527,27.10353],[88.00259,27.10459],[88.01144,27.09718],[88.01528,27.08895],[88.02102,27.08783],[88.02055,27.08268],[88.01583,27.07691],[88.01608,27.07368],[88.0212,27.06861],[88.02303,27.06131],[88.02585,27.05768],[88.02587,27.05395],[88.03036,27.04677],[88.03525,27.04335],[88.03785,27.03632],[88.04558,27.03688],[88.05773,27.03215],[88.05947,27.02942],[88.06999,27.03171],[88.07769,27.03542],[88.08309,27.02914],[88.08408,27.02235],[88.08884,27.01605],[88.08839,27.00829],[88.09214,27.0047],[88.09881,27.00422],[88.10415,26.99765],[88.10886,26.9949],[88.10925,26.99228],[88.11675,26.98778],[88.1344,26.98624],[88.13454,26.98373],[88.13043,26.98052],[88.12439,26.97174],[88.12498,26.96896],[88.12219,26.96399],[88.12343,26.9601],[88.12013,26.95071],[88.12885,26.9392],[88.13757,26.93364],[88.13923,26.92879],[88.1447,26.92248],[88.14384,26.91728],[88.14496,26.91514],[88.13636,26.89852],[88.14581,26.88931],[88.15264,26.88507],[88.15725,26.88512],[88.15754,26.88321],[88.16363,26.87817],[88.16641,26.87013],[88.17184,26.86929],[88.17397,26.86532],[88.17219,26.8608],[88.17446,26.85938],[88.17354,26.85545],[88.1748,26.85315],[88.16762,26.84974],[88.16769,26.84752],[88.17056,26.84479],[88.16776,26.83751],[88.17368,26.83404],[88.17187,26.82733],[88.17897,26.81623],[88.17717,26.80477],[88.18099,26.79614],[88.18294,26.78214],[88.18785,26.77181],[88.18771,26.76215],[88.18605,26.75668],[88.18717,26.7506],[88.18616,26.73891],[88.18238,26.72754],[88.18172,26.71975],[88.17641,26.71059],[88.17289,26.70818],[88.16708,26.6993],[88.16775,26.68396],[88.16414,26.67847],[88.16494,26.66978],[88.16297,26.64597],[88.15789,26.63993],[88.1603,26.63644],[88.15805,26.63581],[88.15721,26.63272],[88.15445,26.63038],[88.147,26.62957],[88.1421,26.62575],[88.13921,26.60675],[88.12991,26.6013],[88.13191,26.59324],[88.12942,26.58749],[88.13003,26.58488],[88.12734,26.58194],[88.13002,26.57949],[88.13038,26.57383],[88.12866,26.57273],[88.125,26.57774],[88.12315,26.57698],[88.12532,26.57464],[88.12361,26.57259],[88.12085,26.57597],[88.11776,26.57454],[88.11909,26.5683],[88.11463,26.57054],[88.11406,26.57263],[88.11258,26.57181],[88.11178,26.56496],[88.11439,26.56692],[88.11511,26.56546],[88.11073,26.56203],[88.11351,26.55869],[88.10953,26.55712],[88.10765,26.56054],[88.10546,26.56105],[88.10532,26.55078],[88.10763,26.55063],[88.11156,26.54512],[88.10349,26.53852],[88.11003,26.53606],[88.11173,26.53119],[88.11697,26.53273],[88.11727,26.52761],[88.12386,26.5241],[88.12515,26.52053],[88.13005,26.51602],[88.13377,26.51684],[88.13498,26.52338],[88.14004,26.52422],[88.14738,26.52263],[88.15035,26.53181],[88.15635,26.53002],[88.16654,26.53553],[88.16786,26.54076],[88.17278,26.53597],[88.17623,26.53537],[88.17562,26.54053],[88.17939,26.54825],[88.19541,26.54796],[88.19627,26.54392],[88.20212,26.54375],[88.20137,26.53954],[88.20398,26.54113],[88.21161,26.53994],[88.21398,26.54156],[88.21294,26.54243],[88.20525,26.54349],[88.20765,26.54539],[88.2119,26.54443],[88.21624,26.54869],[88.20822,26.55006],[88.21095,26.56092],[88.21871,26.55666],[88.22549,26.55675],[88.228,26.55295],[88.22566,26.55097],[88.22556,26.54721],[88.22931,26.54006],[88.22968,26.53504],[88.20877,26.52441],[88.20609,26.52111],[88.20415,26.52129],[88.20233,26.51511],[88.20316,26.51313],[88.19884,26.51266],[88.1951,26.51414],[88.19128,26.51153],[88.19113,26.50853],[88.18511,26.50405],[88.18358,26.50041],[88.1797,26.49958],[88.17885,26.4946],[88.1818,26.49253],[88.17989,26.48764],[88.18504,26.48607],[88.18618,26.48377],[88.18786,26.48491],[88.19066,26.48205],[88.19162,26.47767],[88.19577,26.47513],[88.20296,26.47636],[88.20331,26.47432],[88.21073,26.47309],[88.21577,26.47805],[88.2138,26.47808],[88.21177,26.48164],[88.21246,26.48325],[88.21986,26.48352],[88.22436,26.48195],[88.22424,26.47799],[88.22117,26.47153],[88.21171,26.47182],[88.20982,26.46923],[88.214,26.46858],[88.21773,26.46591],[88.21845,26.46259],[88.22275,26.45913],[88.22515,26.45366],[88.23417,26.45151],[88.24245,26.45235],[88.24382,26.45384],[88.24286,26.44872],[88.24817,26.43668],[88.25108,26.4359],[88.25085,26.43315],[88.25846,26.43218],[88.2594,26.42863],[88.26341,26.42877],[88.26305,26.42283],[88.26701,26.42285],[88.26958,26.42045],[88.26825,26.41758],[88.26455,26.41541],[88.25489,26.41707],[88.25242,26.41605],[88.24756,26.40752],[88.23923,26.40344],[88.23826,26.39886],[88.23439,26.39476],[88.22794,26.39275],[88.22704,26.38947],[88.23321,26.38634],[88.23401,26.38066],[88.23221,26.3796],[88.24047,26.3752],[88.24657,26.37418],[88.24678,26.37538],[88.25533,26.3774],[88.25756,26.38128],[88.26148,26.37762],[88.2663,26.3792],[88.26767,26.38141],[88.27194,26.37783],[88.27626,26.37944],[88.27444,26.37624],[88.27674,26.37252],[88.2765,26.36826],[88.27884,26.36668],[88.27981,26.35968],[88.28273,26.35757],[88.29019,26.35997],[88.29089,26.35827],[88.289,26.35396],[88.29369,26.35293],[88.2938,26.35173],[88.29169,26.34925],[88.29035,26.35142],[88.28599,26.35242],[88.28433,26.34965],[88.27891,26.34939],[88.2782,26.3432],[88.28115,26.34202],[88.27987,26.33196],[88.27603,26.33224],[88.27469,26.32857],[88.26979,26.32787],[88.26877,26.33141],[88.26652,26.33187],[88.26915,26.33275],[88.27114,26.33593],[88.27088,26.33753],[88.26838,26.33799],[88.26688,26.33508],[88.25778,26.33552],[88.25779,26.33195],[88.25439,26.32699],[88.24923,26.32793],[88.24805,26.32636],[88.24725,26.32812],[88.24674,26.32428],[88.2442,26.32201],[88.24554,26.31454],[88.23987,26.31155],[88.2357,26.30333],[88.23165,26.30582],[88.23184,26.3087],[88.22943,26.31037],[88.23061,26.30792],[88.22671,26.30362],[88.22818,26.29566],[88.22591,26.29407],[88.22693,26.2909],[88.21712,26.28445],[88.21335,26.28404],[88.21322,26.28043],[88.21063,26.27779],[88.20159,26.28092],[88.19732,26.27186],[88.18318,26.27368],[88.18265,26.27044],[88.17901,26.2691],[88.17947,26.26331],[88.17419,26.25579],[88.17177,26.25565],[88.16822,26.25815],[88.16324,26.25341],[88.16048,26.25689],[88.15544,26.25811],[88.15434,26.25452],[88.15241,26.25349],[88.1444,26.25224],[88.14265,26.25047],[88.14112,26.2434],[88.13674,26.24122],[88.1366,26.23248],[88.14176,26.23164],[88.13982,26.22719],[88.13089,26.22715],[88.12987,26.22502],[88.12573,26.22776],[88.11442,26.22372],[88.11658,26.21915],[88.11111,26.2177],[88.11146,26.21545],[88.10541,26.21438],[88.10314,26.21124],[88.10361,26.20778],[88.10087,26.20753],[88.10113,26.20601],[88.09823,26.20528],[88.09781,26.20359],[88.09579,26.20488],[88.09371,26.20367],[88.09424,26.20256],[88.09134,26.20214],[88.08932,26.19073],[88.08543,26.19103],[88.08174,26.18683],[88.07621,26.18532],[88.07581,26.18252],[88.07804,26.1798],[88.07185,26.1742],[88.06949,26.17413],[88.06888,26.17685],[88.06497,26.17699],[88.0657,26.17517],[88.05907,26.1705],[88.05771,26.17278],[88.0508,26.17218],[88.04983,26.17607],[88.03723,26.17871],[88.03149,26.17521],[88.03293,26.17321],[88.03177,26.16998],[88.02829,26.17004],[88.02648,26.16544],[88.02416,26.16526],[88.01968,26.15982],[88.01434,26.15857],[88.00998,26.16154],[88.00783,26.15805],[88.01415,26.14931],[88.01077,26.14477],[88.00625,26.14574],[87.99988,26.1384],[87.99439,26.14341],[87.99207,26.15096],[87.98502,26.14565],[87.98588,26.14268],[87.98375,26.14212],[87.98131,26.14458],[87.9749,26.14337],[87.97245,26.14],[87.97919,26.13797],[87.97849,26.13015],[87.98153,26.12769],[87.9814,26.12606],[87.97981,26.1243],[87.97615,26.12528],[87.97534,26.12426],[87.97955,26.12342],[87.97939,26.12228],[87.9708,26.12046],[87.96927,26.11762],[87.97152,26.11536],[87.97427,26.11664],[87.98376,26.11571],[87.98511,26.11143],[87.98577,26.11344],[87.98773,26.10977],[87.98585,26.10927],[87.98647,26.1066],[87.98464,26.1067],[87.98335,26.10427],[87.98689,26.10275],[87.9868,26.10141],[87.9823,26.10189],[87.98212,26.10324],[87.97861,26.10117],[87.97752,26.10272],[87.9772,26.1005],[87.97624,26.10194],[87.97343,26.09956],[87.97176,26.10057],[87.96714,26.09786],[87.96843,26.09688],[87.96747,26.0961],[87.96664,26.09686],[87.96653,26.0955],[87.96361,26.09463],[87.97152,26.09293],[87.97075,26.08867],[87.97666,26.08707],[87.9782,26.0838],[87.98202,26.08366],[87.98224,26.07987],[87.98562,26.07766],[87.98219,26.07376],[87.97279,26.07743],[87.9655,26.07405],[87.95808,26.07632],[87.95521,26.07474],[87.95291,26.07647],[87.95335,26.0753],[87.95039,26.07421],[87.95232,26.07188],[87.94855,26.0696],[87.95196,26.068],[87.95482,26.06903],[87.95452,26.06567],[87.95264,26.06461],[87.95033,26.06562],[87.95012,26.06055],[87.94886,26.0619],[87.9455,26.06076],[87.93492,26.06368],[87.93635,26.0686],[87.93064,26.07031],[87.93178,26.08029],[87.93136,26.08202],[87.92805,26.08307],[87.92053,26.07569],[87.91687,26.07706],[87.91008,26.07137],[87.90699,26.07234],[87.90124,26.06291],[87.89878,26.064],[87.8924,26.06116],[87.89039,26.05792],[87.89045,26.04962],[87.88924,26.0486],[87.88301,26.04684],[87.87833,26.04953],[87.86426,26.03648],[87.85593,26.03598],[87.85422,26.03183],[87.85452,26.02936],[87.85725,26.02808],[87.85646,26.02158],[87.85446,26.01667],[87.85045,26.01416],[87.85446,26.01253],[87.85422,26.01008],[87.85041,26.00345],[87.85141,26.00228],[87.84945,25.99543],[87.84794,25.99369],[87.84513,25.99412],[87.84575,25.98557],[87.84413,25.98133],[87.84464,25.97691],[87.84708,25.97467],[87.84472,25.97393],[87.84577,25.96958],[87.84706,25.96937],[87.84574,25.96684],[87.84657,25.96334],[87.83668,25.96012],[87.83596,25.95831],[87.83826,25.95203],[87.8337,25.94585],[87.83403,25.94216],[87.83695,25.94228],[87.83935,25.93811],[87.83473,25.93168],[87.83843,25.93149],[87.83311,25.92791],[87.81959,25.93394],[87.81605,25.93172],[87.81262,25.93211],[87.81187,25.93015],[87.80737,25.92985],[87.809,25.92837],[87.80885,25.92069],[87.813,25.91764],[87.81207,25.91595],[87.80757,25.91609],[87.80803,25.91216],[87.81206,25.90997],[87.81553,25.91022],[87.81647,25.91202],[87.81518,25.91486],[87.81689,25.91283],[87.81983,25.914],[87.82258,25.91213],[87.82136,25.90298],[87.81959,25.90034],[87.82505,25.89715],[87.82683,25.89408],[87.82178,25.88752],[87.82332,25.88559],[87.82234,25.88195],[87.82602,25.88033],[87.82572,25.87774],[87.82925,25.87774],[87.82748,25.87468],[87.82983,25.87065],[87.85017,25.8696],[87.8587,25.86479],[87.86806,25.86865],[87.86953,25.86863],[87.86979,25.86657],[87.87338,25.86612],[87.87437,25.86822],[87.87565,25.86061],[87.88271,25.85936],[87.88707,25.8612],[87.88862,25.86511],[87.89211,25.86574],[87.90256,25.86168],[87.90187,25.85793],[87.90608,25.85782],[87.90829,25.85407],[87.91131,25.85273],[87.91469,25.85395],[87.91412,25.85145],[87.91208,25.85112],[87.90779,25.84527],[87.9036,25.84287],[87.90541,25.84039],[87.90855,25.84107],[87.90592,25.83969],[87.90326,25.84254],[87.90209,25.84207],[87.90421,25.83645],[87.89673,25.83794],[87.90285,25.83395],[87.90099,25.83269],[87.89607,25.83707],[87.89408,25.83396],[87.89204,25.83534],[87.89121,25.83218],[87.88804,25.83066],[87.89357,25.8275],[87.89609,25.82804],[87.89501,25.82923],[87.89752,25.83024],[87.89724,25.83161],[87.90254,25.83052],[87.90168,25.82793],[87.89956,25.82867],[87.8978,25.82707],[87.89962,25.8258],[87.89911,25.82461],[87.90442,25.82248],[87.90558,25.81981],[87.90889,25.81988],[87.91588,25.8164],[87.91435,25.81134],[87.90796,25.81568],[87.90752,25.812],[87.90384,25.814],[87.89946,25.80749],[87.90564,25.80756],[87.90797,25.80342],[87.90164,25.80225],[87.90382,25.80202],[87.90685,25.7809],[87.90609,25.78012],[87.90425,25.78247],[87.90318,25.78151],[87.90345,25.77791],[87.902,25.77622],[87.90417,25.77113],[87.90609,25.77143],[87.90768,25.76969],[87.909,25.77173],[87.90706,25.77354],[87.91931,25.77458],[87.92392,25.77638],[87.92568,25.77567],[87.92611,25.77279],[87.93363,25.76943],[87.93424,25.77179],[87.93263,25.77295],[87.9353,25.77471],[87.93797,25.77393],[87.93788,25.77214],[87.94219,25.76941],[87.94239,25.75966],[87.94759,25.75764],[87.94365,25.75087],[87.94623,25.75254],[87.94705,25.75161],[87.94765,25.74752],[87.94626,25.74624],[87.95223,25.74619],[87.95544,25.74181],[87.96137,25.73866],[87.96102,25.73638],[87.96633,25.7328],[87.9657,25.72562],[87.98247,25.71998],[87.98476,25.7243],[87.98919,25.72619],[87.99233,25.72314],[87.99885,25.7219],[88.00195,25.71568],[88.01247,25.71018],[88.02107,25.70969],[88.01851,25.699],[88.02065,25.69586],[88.03084,25.6945],[88.0312,25.69791],[88.0291,25.70109],[88.03122,25.7033],[88.03497,25.70208],[88.03764,25.69698],[88.04053,25.69756],[88.04279,25.70199],[88.04814,25.6979],[88.05257,25.6862],[88.05165,25.68351],[88.0459,25.67898],[88.04783,25.66905],[88.04659,25.66273],[88.05012,25.66076],[88.04564,25.65596],[88.04853,25.64961],[88.04817,25.64622],[88.04474,25.64589],[88.04359,25.6431],[88.04024,25.64723],[88.03783,25.64727],[88.0368,25.64164],[88.04112,25.64259],[88.0463,25.63475],[88.04911,25.63754],[88.05396,25.63918],[88.05526,25.63782],[88.04978,25.63452],[88.04782,25.63145],[88.04471,25.6341],[88.04067,25.63211],[88.03508,25.62394],[88.03728,25.61633],[88.04287,25.61077],[88.04323,25.60865],[88.03708,25.60921],[88.03008,25.6053],[88.03322,25.60347],[88.04001,25.60334],[88.03982,25.60106],[88.03332,25.59983],[88.0311,25.60174],[88.02421,25.60204],[88.02521,25.5983],[88.03097,25.60007],[88.02938,25.59706],[88.02969,25.59261],[88.02816,25.59092],[88.02406,25.59206],[88.02026,25.59115],[88.02545,25.58622],[88.02464,25.58278],[88.02625,25.57877],[88.02881,25.5811],[88.02772,25.57665],[88.02402,25.5762],[88.02554,25.57207],[88.02825,25.56999],[88.03397,25.57097],[88.03851,25.5694],[88.03417,25.56392],[88.03255,25.56676],[88.03048,25.56567],[88.02892,25.56078],[88.02582,25.55886],[88.02699,25.55609],[88.03043,25.55595],[88.03553,25.55253],[88.03833,25.55299],[88.03372,25.54724],[88.03582,25.54479],[88.03728,25.53832],[88.04204,25.53742],[88.04736,25.53955],[88.05317,25.53515],[88.05784,25.53404],[88.05959,25.52838],[88.06447,25.52524],[88.07113,25.51745],[88.07089,25.51576],[88.0665,25.51275],[88.06655,25.51039],[88.07653,25.5081],[88.07324,25.50817],[88.07175,25.50616],[88.07139,25.49587],[88.07269,25.49429],[88.07159,25.49337],[88.07338,25.48431],[88.07132,25.48426],[88.0654,25.49013],[88.05627,25.49119],[88.05126,25.49006],[88.04926,25.48601],[88.04514,25.4891],[88.03769,25.48978],[88.03594,25.49212],[88.03028,25.49154],[88.02244,25.49828],[88.02466,25.50165],[88.01806,25.50186],[88.01412,25.49938],[88.01197,25.50037],[88.0093,25.50403],[88.01352,25.51121],[88.00672,25.51014],[88.00698,25.49705],[87.99578,25.49954],[87.99321,25.50372],[87.99288,25.50723],[87.99511,25.50797],[87.99415,25.51199],[87.98902,25.51181],[87.98502,25.51533],[87.9938,25.52241],[87.99135,25.52287],[87.9909,25.52538],[87.986,25.52664],[87.98078,25.52454],[87.97655,25.5247],[87.9667,25.53664],[87.96408,25.5369],[87.96333,25.53954],[87.95671,25.53739],[87.95419,25.53977],[87.95111,25.53836],[87.94708,25.53908],[87.94635,25.53547],[87.92772,25.5372],[87.92555,25.53377],[87.91696,25.53295],[87.91837,25.52659],[87.91273,25.52577],[87.90834,25.51866],[87.91093,25.51575],[87.90682,25.51174],[87.90891,25.50882],[87.90439,25.50939],[87.90276,25.50532],[87.89786,25.50491],[87.8982,25.5117],[87.89285,25.51267],[87.89018,25.51827],[87.88714,25.51819],[87.88437,25.52057],[87.88333,25.51694],[87.88677,25.50895],[87.87989,25.5042],[87.87482,25.50469],[87.87109,25.4974],[87.86895,25.49671],[87.86489,25.47995],[87.8694,25.46949],[87.86323,25.46411],[87.86346,25.46911],[87.86152,25.46914],[87.86053,25.47108],[87.8558,25.47098],[87.85428,25.46672],[87.83935,25.46784],[87.83964,25.46137],[87.83022,25.46105],[87.83096,25.45221],[87.8289,25.44683],[87.82747,25.44764],[87.82572,25.44545],[87.82637,25.43962],[87.82268,25.43708],[87.81167,25.43555],[87.80231,25.44473],[87.79694,25.44501],[87.79678,25.4475],[87.78726,25.4504],[87.78133,25.43254],[87.77431,25.43214],[87.774,25.42962],[87.77136,25.42898],[87.76993,25.42621],[87.77432,25.42353],[87.77407,25.41827],[87.77636,25.41309],[87.77519,25.40891],[87.77045,25.40957],[87.76573,25.41459],[87.76432,25.41314],[87.76388,25.4075],[87.77253,25.40422],[87.76812,25.39893],[87.76829,25.39274],[87.76594,25.38751],[87.76966,25.37898],[87.77929,25.37308],[87.79231,25.37355],[87.79355,25.36695],[87.78818,25.33906],[87.79596,25.3262],[87.80506,25.32456],[87.81831,25.31882],[87.82636,25.31352],[87.83093,25.3073],[87.83903,25.30109],[87.85543,25.29689],[87.86019,25.28578],[87.86241,25.27411],[87.86069,25.26963],[87.85701,25.26965],[87.85343,25.2636],[87.85553,25.25991],[87.85527,25.25527],[87.84154,25.25074],[87.83662,25.24581],[87.83648,25.24192],[87.83476,25.23996],[87.8273,25.23529],[87.82434,25.23653],[87.8378,25.21217],[87.84006,25.2015],[87.82145,25.21054],[87.81722,25.21107],[87.8052,25.21843],[87.79068,25.22165],[87.78791,25.19185],[87.7744,25.14405],[87.77436,25.12136],[87.77903,25.1177],[87.78967,25.10442],[87.7929,25.09535],[87.80237,25.08289],[87.80579,25.07265],[87.834,25.06526],[87.85728,25.05463],[87.89936,25.00678],[87.90593,25.00389],[87.92273,25.00058],[87.94054,24.99085],[87.94482,24.98414],[87.95326,24.97708],[87.95775,24.97089],[87.95895,24.9508],[87.96283,24.93453],[87.95962,24.92901],[87.96083,24.92208],[87.95293,24.90776],[87.9167,24.88454],[87.91005,24.87473],[87.89727,24.86165],[87.89667,24.85777],[87.89133,24.85604],[87.89386,24.84974],[87.89654,24.84929],[87.89875,24.84461],[87.89887,24.83708],[87.89607,24.83603],[87.89604,24.8307],[87.89777,24.82768],[87.90136,24.8275],[87.90027,24.8241],[87.89619,24.82286],[87.89124,24.82699],[87.88802,24.82298],[87.88577,24.82367],[87.88727,24.82598],[87.88615,24.82816],[87.88439,24.82322],[87.88261,24.82327],[87.88505,24.82842],[87.88275,24.82953],[87.88117,24.82378],[87.87982,24.82415],[87.87933,24.82249],[87.87507,24.82239],[87.87507,24.82575],[87.87237,24.82476],[87.87053,24.82629],[87.86912,24.82464],[87.87019,24.8203],[87.87438,24.81801],[87.87462,24.8084],[87.88071,24.808],[87.8816,24.80537],[87.88074,24.79834],[87.87838,24.79602],[87.8783,24.78974],[87.87445,24.79083],[87.87551,24.79416],[87.87387,24.79558],[87.86976,24.79391],[87.87088,24.79089],[87.86864,24.78865],[87.86866,24.7836],[87.86684,24.77953],[87.87014,24.77865],[87.86923,24.77503],[87.86591,24.77347],[87.86542,24.77171],[87.86201,24.77254],[87.86388,24.77036],[87.85228,24.76199],[87.84795,24.76345],[87.84326,24.76859],[87.83817,24.76804],[87.8374,24.76579],[87.83598,24.77832],[87.84024,24.77783],[87.8421,24.7857],[87.84077,24.78637],[87.84071,24.78941],[87.83624,24.79021],[87.8323,24.78652],[87.83015,24.77001],[87.82881,24.76913],[87.82799,24.77219],[87.82702,24.76988],[87.82323,24.77006],[87.81639,24.75969],[87.81656,24.75806],[87.82291,24.75481],[87.82941,24.75458],[87.83221,24.74883],[87.83455,24.74892],[87.84109,24.74355],[87.84302,24.74002],[87.84887,24.74019],[87.85993,24.73393],[87.86353,24.7342],[87.86561,24.73203],[87.87413,24.73208],[87.87939,24.74035],[87.87855,24.74179],[87.88302,24.74132],[87.88545,24.73968],[87.8851,24.73679],[87.88735,24.73655],[87.8888,24.73438],[87.88825,24.72891],[87.8902,24.72795],[87.89001,24.72522],[87.89864,24.72369],[87.90459,24.72533],[87.90401,24.72252],[87.90835,24.72162],[87.90635,24.71977],[87.90724,24.71497],[87.90328,24.71464],[87.90064,24.71128],[87.89992,24.70518],[87.90292,24.70514],[87.90114,24.69412],[87.89767,24.68788],[87.89414,24.68701],[87.88775,24.67999],[87.89071,24.67521],[87.89711,24.67255],[87.90478,24.67244],[87.90901,24.67],[87.90844,24.66717],[87.91661,24.66575],[87.9163,24.65829],[87.91087,24.65342],[87.91414,24.63771],[87.91127,24.63797],[87.90993,24.6314],[87.89185,24.6341],[87.88792,24.63034],[87.88864,24.62634],[87.89744,24.6256],[87.90032,24.62559],[87.90577,24.62928],[87.90603,24.61501],[87.89265,24.61354],[87.88684,24.61702],[87.87811,24.61819],[87.87583,24.61523],[87.87837,24.61206],[87.88039,24.61325],[87.88117,24.61167],[87.88354,24.61206],[87.8873,24.60778],[87.89347,24.60548],[87.89168,24.60864],[87.89254,24.60975],[87.91077,24.61043],[87.91129,24.60103],[87.91318,24.59991],[87.91182,24.59793],[87.91405,24.59662],[87.91328,24.59346],[87.90828,24.58892],[87.9011,24.58938],[87.89774,24.58491],[87.89193,24.58418],[87.89171,24.56866],[87.88927,24.56505],[87.86922,24.5645],[87.86938,24.55602],[87.86087,24.55693],[87.86051,24.55883],[87.85644,24.5581],[87.85235,24.56177],[87.85328,24.55764],[87.84941,24.55384],[87.84792,24.5573],[87.84405,24.55743],[87.84082,24.55979],[87.83283,24.55806],[87.8263,24.55872],[87.82388,24.56402],[87.82534,24.56913],[87.81696,24.57339],[87.81218,24.57856],[87.79601,24.58076],[87.79213,24.58319],[87.77122,24.58302],[87.77019,24.57049],[87.77564,24.57124],[87.77837,24.57346],[87.79246,24.57166],[87.79496,24.56955],[87.79604,24.56591],[87.79988,24.5648],[87.79993,24.56137],[87.80245,24.56169],[87.80388,24.5547],[87.80859,24.54669],[87.8047,24.54188],[87.79957,24.54339],[87.79756,24.5388],[87.80042,24.53342],[87.79923,24.52473],[87.80216,24.52375],[87.80424,24.51923],[87.80194,24.5122],[87.79807,24.51137],[87.79833,24.50848],[87.8024,24.50733],[87.80082,24.50588],[87.80153,24.50441],[87.796,24.50456],[87.79414,24.50114],[87.79663,24.50127],[87.79579,24.49981],[87.79851,24.49705],[87.79866,24.49449],[87.80126,24.49372],[87.80564,24.50061],[87.80312,24.50202],[87.80453,24.50274],[87.80262,24.50823],[87.80459,24.50866],[87.80458,24.51097],[87.80934,24.51452],[87.8117,24.51272],[87.81138,24.50905],[87.81429,24.50884],[87.81348,24.50534],[87.81723,24.50061],[87.81254,24.49971],[87.81341,24.49739],[87.81191,24.49665],[87.81293,24.49365],[87.81131,24.49359],[87.81168,24.49077],[87.81623,24.49094],[87.81712,24.49255],[87.82313,24.49461],[87.82141,24.4965],[87.82384,24.50044],[87.82815,24.49862],[87.82576,24.49062],[87.82443,24.4906],[87.82729,24.48927],[87.82272,24.48845],[87.81662,24.49015],[87.81456,24.48864],[87.8107,24.47636],[87.81835,24.47481],[87.81865,24.47226],[87.82267,24.47103],[87.82119,24.46669],[87.82398,24.46517],[87.82377,24.45846],[87.81893,24.45799],[87.81978,24.45453],[87.8132,24.45671],[87.81355,24.45462],[87.81078,24.45651],[87.80999,24.45489],[87.80314,24.454],[87.80001,24.44591],[87.80394,24.44161],[87.80082,24.44092],[87.80077,24.43733],[87.79456,24.4364],[87.79612,24.43502],[87.79224,24.42774],[87.79415,24.42625],[87.79549,24.42143],[87.78979,24.42066],[87.78883,24.41655],[87.78853,24.4145],[87.79156,24.41433],[87.79331,24.41247],[87.79271,24.41477],[87.79955,24.41221],[87.7999,24.40918],[87.80437,24.4127],[87.80632,24.42014],[87.81128,24.41783],[87.81259,24.41188],[87.80981,24.40575],[87.80848,24.40539],[87.80958,24.40701],[87.80708,24.40701],[87.80219,24.39998],[87.79691,24.40218],[87.79395,24.39929],[87.79407,24.39684],[87.79935,24.39421],[87.79936,24.38716],[87.8011,24.38222],[87.79382,24.38307],[87.78597,24.36249],[87.78369,24.36243],[87.77984,24.35842],[87.77277,24.34977],[87.77123,24.34444],[87.76818,24.34472],[87.7644,24.33933],[87.76257,24.33079],[87.76902,24.32792],[87.77063,24.32214],[87.76297,24.32131],[87.7616,24.30847],[87.75486,24.31025],[87.74821,24.30435],[87.74613,24.30123],[87.74742,24.29924],[87.74315,24.29678],[87.73757,24.29611],[87.73861,24.29449],[87.73226,24.29171],[87.7293,24.28842],[87.71367,24.2944],[87.7133,24.28403],[87.70701,24.27578],[87.70929,24.27063],[87.70589,24.26144],[87.69995,24.2627],[87.69739,24.25991],[87.69036,24.25785],[87.6892,24.25326],[87.68666,24.2509],[87.68754,24.24644],[87.67627,24.24897],[87.6739,24.24802],[87.67234,24.24358],[87.6622,24.24492],[87.66277,24.23843],[87.65917,24.23612],[87.65466,24.23853],[87.64829,24.25063],[87.63878,24.25438],[87.64071,24.24843],[87.63437,24.24165],[87.63365,24.23653],[87.64395,24.23547],[87.64663,24.23153],[87.64479,24.2294],[87.6465,24.22549],[87.63776,24.21724],[87.63861,24.21399],[87.65434,24.20773],[87.65799,24.20979],[87.66714,24.2067],[87.66944,24.21012],[87.67558,24.20833],[87.67589,24.19976],[87.67728,24.1986],[87.67635,24.19373],[87.68216,24.19251],[87.68627,24.18943],[87.69861,24.18781],[87.69867,24.1808],[87.70237,24.18076],[87.7029,24.1792],[87.69681,24.16663],[87.6957,24.16159],[87.69699,24.15925],[87.69442,24.15024],[87.68885,24.15174],[87.68481,24.14982],[87.68224,24.15096],[87.67873,24.14808],[87.67559,24.15186],[87.67345,24.15154],[87.66842,24.15457],[87.66734,24.15298],[87.66432,24.15759],[87.65755,24.1589],[87.65679,24.15601],[87.65313,24.15872],[87.65187,24.1577],[87.65362,24.1571],[87.653,24.15598],[87.6422,24.15305],[87.64008,24.15723],[87.63271,24.15969],[87.63158,24.16427],[87.62438,24.16519],[87.62222,24.16338],[87.61528,24.16612],[87.61334,24.16444],[87.6083,24.16578],[87.6066,24.16415],[87.60637,24.16064],[87.59546,24.16138],[87.59272,24.16026],[87.58735,24.16155],[87.58501,24.16449],[87.5814,24.16248],[87.58155,24.15929],[87.57615,24.16128],[87.57432,24.16018],[87.57711,24.15653],[87.59388,24.14534],[87.59446,24.1423],[87.60496,24.13292],[87.61023,24.13253],[87.60233,24.12711],[87.59802,24.12811],[87.59564,24.12623],[87.59101,24.12701],[87.58702,24.12374],[87.5826,24.11312],[87.5766,24.11226],[87.5742,24.10799],[87.57434,24.1002],[87.58022,24.08637],[87.57091,24.08838],[87.56837,24.08557],[87.56253,24.0846],[87.55992,24.08197],[87.55392,24.08879],[87.54664,24.08542],[87.54306,24.08609],[87.54237,24.0912],[87.53538,24.09582],[87.5331,24.0998],[87.53219,24.10835],[87.52708,24.10655],[87.52191,24.11367],[87.51612,24.11421],[87.5111,24.112],[87.50439,24.11418],[87.49762,24.11897],[87.49576,24.11279],[87.50041,24.10184],[87.49756,24.09788],[87.49577,24.099],[87.49671,24.09358],[87.49225,24.09381],[87.48983,24.09011],[87.49739,24.08566],[87.50832,24.08543],[87.51075,24.08225],[87.50686,24.07972],[87.50608,24.07559],[87.50259,24.07379],[87.49827,24.07653],[87.49272,24.0769],[87.49061,24.07059],[87.49478,24.0668],[87.49985,24.06516],[87.49873,24.06153],[87.49528,24.05995],[87.49351,24.05416],[87.50939,24.04695],[87.51198,24.03584],[87.50359,24.03183],[87.50293,24.02608],[87.49688,24.02545],[87.49148,24.01862],[87.4822,24.01618],[87.47613,24.01227],[87.47235,24.01634],[87.46889,24.01405],[87.46165,24.01324],[87.45936,24.01882],[87.45829,24.01669],[87.4523,24.01654],[87.45089,24.01802],[87.44618,24.01377],[87.44453,24.0151],[87.43834,24.01355],[87.4387,24.00894],[87.44139,24.01137],[87.44876,24.01137],[87.44935,24.00878],[87.44384,24.00697],[87.44525,24.00202],[87.4555,24.00191],[87.45515,24.0003],[87.46169,23.99487],[87.46217,23.98907],[87.46039,23.98383],[87.4495,23.98796],[87.44572,23.98209],[87.43677,23.98212],[87.42922,23.98645],[87.42772,23.99235],[87.42323,23.9937],[87.42141,23.99231],[87.42037,23.99343],[87.41657,23.99265],[87.403,23.99751],[87.39462,24.00275],[87.38015,24.00408],[87.3791,24.00652],[87.37512,24.00895],[87.36042,24.01309],[87.35813,24.01183],[87.35701,24.00611],[87.35199,23.99918],[87.33767,24.00002],[87.32817,23.99867],[87.32203,24.00305],[87.31917,24.00848],[87.32363,24.00989],[87.32319,24.01264],[87.32769,24.01855],[87.3358,24.02068],[87.33629,24.02603],[87.33958,24.02652],[87.33712,24.03431],[87.32701,24.03286],[87.31576,24.03556],[87.30737,24.03183],[87.29258,24.03344],[87.28746,24.02886],[87.27889,24.03333],[87.27552,24.03295],[87.2676,24.03776],[87.26073,24.03739],[87.25353,24.04296],[87.2454,24.04506],[87.24128,24.04189],[87.2405,24.0384],[87.23443,24.03249],[87.23528,24.02685],[87.23289,24.02374],[87.23503,24.02018],[87.24456,24.01664],[87.24091,24.01191],[87.2505,23.99704],[87.25341,23.99624],[87.25343,23.99921],[87.26203,24.00322],[87.26416,24.00061],[87.26522,23.99394],[87.26826,23.9891],[87.26691,23.98221],[87.26262,23.98126],[87.26038,23.97216],[87.26153,23.96758],[87.26587,23.96566],[87.27093,23.96747],[87.27587,23.96542],[87.27979,23.96056],[87.29325,23.95863],[87.28977,23.9495],[87.29082,23.94167],[87.28416,23.93831],[87.28401,23.92957],[87.2882,23.9269],[87.28354,23.92091],[87.29164,23.9154],[87.29125,23.9051],[87.29503,23.90234],[87.28822,23.89855],[87.29111,23.89328],[87.2845,23.88892],[87.28553,23.88404],[87.28377,23.88563],[87.28349,23.88945],[87.28141,23.88851],[87.27543,23.88475],[87.27493,23.88175],[87.26915,23.87458],[87.25905,23.88317],[87.26338,23.88248],[87.26198,23.88447],[87.26225,23.88852],[87.25844,23.89409],[87.25889,23.89954],[87.25457,23.89997],[87.25876,23.90329],[87.25828,23.90631],[87.25216,23.91303],[87.24512,23.9082],[87.24655,23.9056],[87.2444,23.90309],[87.24544,23.89528],[87.24306,23.89338],[87.24406,23.89173],[87.24258,23.88815],[87.24274,23.88411],[87.24457,23.88213],[87.24149,23.87641],[87.24153,23.86966],[87.24873,23.86874],[87.24507,23.86486],[87.24648,23.86281],[87.24429,23.86024],[87.2443,23.85694],[87.24665,23.85448],[87.24906,23.85554],[87.25,23.85004],[87.25494,23.84704],[87.25129,23.84051],[87.24768,23.83896],[87.24893,23.83525],[87.24431,23.83205],[87.2464,23.83156],[87.2387,23.82643],[87.23088,23.82868],[87.23041,23.82565],[87.2279,23.82511],[87.22471,23.82764],[87.2174,23.82926],[87.21654,23.83171],[87.2224,23.83767],[87.22321,23.84562],[87.23048,23.84591],[87.23732,23.8544],[87.23368,23.85713],[87.2232,23.85824],[87.22121,23.86057],[87.2199,23.85877],[87.22058,23.85673],[87.21388,23.85056],[87.2122,23.85353],[87.20581,23.85633],[87.20307,23.84775],[87.20113,23.85019],[87.19627,23.84963],[87.19241,23.84365],[87.18858,23.84315],[87.1889,23.84728],[87.18733,23.84877],[87.19331,23.85251],[87.1961,23.85781],[87.19061,23.85738],[87.18734,23.85959],[87.1799,23.85197],[87.17393,23.85475],[87.17248,23.85868],[87.16575,23.86475],[87.15412,23.86542],[87.15135,23.86726],[87.14831,23.86625],[87.13306,23.87019],[87.12933,23.86863],[87.13002,23.85391],[87.13956,23.84841],[87.15372,23.82947],[87.15674,23.83154],[87.16031,23.83113],[87.16361,23.82917],[87.16331,23.82656],[87.16702,23.82453],[87.16438,23.81813],[87.15859,23.81453],[87.15498,23.80337],[87.15283,23.80291],[87.15049,23.79756],[87.14417,23.79905],[87.1399,23.80423],[87.13136,23.798],[87.12348,23.79926],[87.12178,23.79665],[87.11077,23.80036],[87.11053,23.80316],[87.11266,23.80536],[87.11842,23.80251],[87.11887,23.80524],[87.11643,23.8077],[87.10833,23.8082],[87.10732,23.80466],[87.10392,23.8044],[87.09749,23.81249],[87.0918,23.81537],[87.089,23.81381],[87.08671,23.80897],[87.08138,23.81012],[87.07344,23.81486],[87.06521,23.81672],[87.05159,23.82539],[87.03797,23.83921],[87.02423,23.84447],[87.011,23.8526],[86.98596,23.8596],[86.97324,23.86877],[86.96829,23.86748],[86.96566,23.86476],[86.96347,23.8527],[86.96041,23.84828],[86.94999,23.84598],[86.94515,23.84688],[86.93757,23.85041],[86.93397,23.85394],[86.93323,23.86672],[86.93102,23.87055],[86.91556,23.88243],[86.91328,23.88079],[86.90277,23.8812],[86.89592,23.87829],[86.88024,23.86232],[86.88092,23.86037],[86.88701,23.85644],[86.88635,23.84569],[86.88936,23.8393],[86.89282,23.83728],[86.89457,23.82635],[86.8903,23.8205],[86.88602,23.8212],[86.88646,23.82565],[86.88094,23.82901],[86.87952,23.83526],[86.87997,23.84528],[86.87422,23.84731],[86.86363,23.84446],[86.86265,23.84201],[86.86377,23.84057],[86.86127,23.83505],[86.85502,23.83056],[86.8529,23.82495],[86.84804,23.82365],[86.83879,23.82459],[86.84003,23.82248],[86.83695,23.81954],[86.82654,23.81394],[86.82045,23.81555],[86.81973,23.81772],[86.81551,23.81736],[86.81295,23.82075],[86.81379,23.82475],[86.81603,23.82501],[86.81478,23.82994],[86.81026,23.83529],[86.80476,23.83685],[86.79935,23.83182],[86.80089,23.82983],[86.80389,23.82968],[86.80748,23.82281],[86.81009,23.82141],[86.80336,23.8013],[86.80507,23.79889],[86.80908,23.79805],[86.81932,23.78593],[86.81984,23.78825],[86.82021,23.78393],[86.82585,23.77668],[86.82837,23.7602],[86.82794,23.7527],[86.82609,23.74921],[86.81229,23.74476],[86.80796,23.72946],[86.8082,23.72239],[86.79929,23.7037],[86.80024,23.69975],[86.80581,23.69586],[86.79904,23.68903],[86.78891,23.68783],[86.77076,23.68139],[86.74734,23.67879],[86.7444,23.68162],[86.74191,23.69027],[86.73906,23.69423],[86.72556,23.69844],[86.71495,23.69888],[86.70533,23.69714],[86.69815,23.69361],[86.6756,23.68709],[86.65643,23.68429],[86.63379,23.67517],[86.61157,23.67559],[86.59757,23.67376],[86.59601,23.67048],[86.59897,23.6655],[86.58081,23.65548],[86.57444,23.64805],[86.55662,23.63994],[86.5465,23.63764],[86.5354,23.63124],[86.5252,23.63018],[86.51191,23.63171],[86.49203,23.63828],[86.47955,23.63553],[86.47038,23.6305],[86.46181,23.6303],[86.45696,23.62609],[86.45417,23.61954],[86.4498,23.62071],[86.44643,23.61872],[86.4458,23.61529],[86.44885,23.6017],[86.44708,23.59814],[86.43618,23.59903],[86.43294,23.59448],[86.42123,23.5901],[86.41659,23.57839],[86.41356,23.57571],[86.41045,23.57586],[86.40771,23.57877],[86.40247,23.57711],[86.39946,23.57859],[86.38816,23.57395],[86.39083,23.56674],[86.38845,23.56364],[86.38938,23.5612],[86.38401,23.55917],[86.37856,23.54875],[86.37097,23.54262],[86.37163,23.54057],[86.36726,23.54019],[86.36854,23.53525],[86.36511,23.53269],[86.36828,23.52815],[86.36458,23.52172],[86.37126,23.51748],[86.37519,23.51034],[86.36868,23.5025],[86.36357,23.50161],[86.36644,23.49627],[86.36242,23.48425],[86.36544,23.48028],[86.37061,23.48449],[86.37329,23.48298],[86.3788,23.48479],[86.3773,23.48057],[86.37946,23.47364],[86.36409,23.47169],[86.36306,23.46489],[86.35736,23.46073],[86.35942,23.45709],[86.3597,23.45225],[86.35593,23.45038],[86.34972,23.45155],[86.35146,23.44209],[86.34035,23.43954],[86.3368,23.44018],[86.33644,23.44283],[86.33404,23.44463],[86.33479,23.44658],[86.32057,23.44329],[86.31786,23.43983],[86.31534,23.44004],[86.30577,23.43482],[86.30606,23.42958],[86.30929,23.42818],[86.31185,23.42445],[86.31448,23.42668],[86.31757,23.42647],[86.31572,23.42345],[86.31776,23.41641],[86.31187,23.41439],[86.31055,23.41136],[86.30007,23.41276],[86.29094,23.41759],[86.28959,23.42473],[86.291,23.42635],[86.28949,23.42906],[86.28162,23.42855],[86.27568,23.43038],[86.27183,23.42766],[86.26409,23.43077],[86.25658,23.43009],[86.25221,23.42677],[86.26025,23.41782],[86.25915,23.41331],[86.25148,23.41084],[86.24739,23.41114],[86.24561,23.4139],[86.24886,23.42247],[86.24399,23.42375],[86.23431,23.42089],[86.22987,23.43082],[86.23245,23.43253],[86.23146,23.43598],[86.23655,23.44488],[86.24237,23.44653],[86.24216,23.45112],[86.24747,23.45625],[86.24734,23.45838],[86.24557,23.45932],[86.23496,23.46055],[86.23262,23.46224],[86.23031,23.45132],[86.23075,23.44485],[86.22838,23.44288],[86.21573,23.44815],[86.20678,23.45],[86.20571,23.45368],[86.19889,23.45334],[86.19709,23.45553],[86.19589,23.45439],[86.19503,23.45789],[86.19144,23.46018],[86.18706,23.45809],[86.18172,23.46008],[86.18203,23.46697],[86.17935,23.46761],[86.17829,23.46984],[86.16034,23.46591],[86.15957,23.46884],[86.14883,23.46526],[86.14741,23.46841],[86.149,23.4752],[86.15156,23.47433],[86.15371,23.47574],[86.15361,23.47893],[86.15135,23.4822],[86.15756,23.48864],[86.15961,23.49344],[86.15741,23.50064],[86.16057,23.50367],[86.16239,23.50849],[86.1541,23.51273],[86.14863,23.51935],[86.15031,23.52523],[86.15537,23.52962],[86.15749,23.53701],[86.15805,23.54147],[86.15231,23.54912],[86.15282,23.55213],[86.15835,23.55998],[86.14832,23.56081],[86.14678,23.56169],[86.14724,23.56386],[86.14328,23.56405],[86.13927,23.55927],[86.13662,23.56285],[86.13125,23.55929],[86.13154,23.56276],[86.12693,23.56592],[86.12922,23.56774],[86.12667,23.5694],[86.12394,23.56927],[86.12063,23.56618],[86.11786,23.56735],[86.11584,23.5661],[86.10849,23.5697],[86.10598,23.56596],[86.09907,23.56651],[86.09393,23.56324],[86.08512,23.56683],[86.08087,23.56568],[86.07274,23.56884],[86.07743,23.57921],[86.0657,23.57896],[86.0556,23.58294],[86.05216,23.58615],[86.04206,23.58688],[86.04013,23.57526],[86.0375,23.57651],[86.03075,23.572],[86.02467,23.56205],[86.01782,23.55959],[86.01628,23.54732],[86.02765,23.54211],[86.02818,23.54052],[86.02366,23.53692],[86.02841,23.53259],[86.02895,23.52765],[86.03387,23.52267],[86.03468,23.51593],[86.03924,23.51504],[86.03775,23.51066],[86.03941,23.50466],[86.03819,23.49778],[86.05671,23.49508],[86.05793,23.49046],[86.05472,23.49017],[86.05384,23.48706],[86.04396,23.48432],[86.03726,23.48592],[86.03146,23.48365],[86.02298,23.48651],[86.01673,23.48449],[86.00866,23.48431],[86.00719,23.48272],[86.00537,23.4835],[86.00322,23.48177],[85.99252,23.48033],[85.98897,23.47831],[85.98062,23.47815],[85.97751,23.47604],[85.96277,23.47624],[85.95711,23.47441],[85.95499,23.47102],[85.93283,23.47291],[85.92017,23.47724],[85.91524,23.48187],[85.91204,23.48084],[85.9072,23.48371],[85.8863,23.48205],[85.88715,23.48431],[85.88273,23.48095],[85.87546,23.47985],[85.87364,23.47673],[85.87,23.47495],[85.868,23.46545],[85.86249,23.46152],[85.86573,23.45991],[85.86363,23.45861],[85.8649,23.4547],[85.86193,23.44238],[85.86188,23.43906],[85.86418,23.43569],[85.86389,23.43136],[85.87665,23.42967],[85.88258,23.43058],[85.88663,23.42513],[85.88029,23.42239],[85.8896,23.414],[85.89144,23.41022],[85.8875,23.40813],[85.88673,23.4046],[85.89866,23.40502],[85.90152,23.40227],[85.90254,23.39711],[85.89855,23.39355],[85.88713,23.39646],[85.87081,23.38881],[85.87082,23.38607],[85.87843,23.38168],[85.87476,23.37678],[85.87517,23.35983],[85.88307,23.35078],[85.87258,23.34243],[85.86625,23.34152],[85.86548,23.33912],[85.8682,23.32978],[85.86301,23.32775],[85.85945,23.32206],[85.85069,23.31664],[85.84747,23.30969],[85.83838,23.3065],[85.82863,23.28228],[85.81967,23.26812],[85.82358,23.25905],[85.83861,23.24683],[85.83626,23.23794],[85.83969,23.22985],[85.83658,23.22053],[85.85135,23.22234],[85.85878,23.22061],[85.86381,23.22238],[85.86839,23.21828],[85.87655,23.2049],[85.88252,23.19873],[85.88342,23.19497],[85.88157,23.17026],[85.89454,23.15513],[85.90866,23.15397],[85.91411,23.14913],[85.92771,23.14857],[85.9289,23.15105],[85.93695,23.15024],[85.94269,23.15304],[85.95137,23.15173],[85.95761,23.16105],[85.97596,23.15479],[85.99244,23.15194],[86.00116,23.14835],[86.01345,23.14791],[86.0178,23.15471],[86.01999,23.15279],[86.01831,23.14814],[86.02455,23.14428],[86.02907,23.14607],[86.03464,23.14444],[86.03754,23.14711],[86.04452,23.14424],[86.04606,23.14171],[86.04593,23.13599],[86.05591,23.12274],[86.05411,23.11269],[86.05123,23.1095],[86.05126,23.10553],[86.0757,23.09464],[86.09005,23.09471],[86.09062,23.08943],[86.09802,23.0842],[86.10224,23.08653],[86.11023,23.08429],[86.11519,23.08566],[86.12071,23.08483],[86.12716,23.08692],[86.13394,23.08336],[86.13604,23.07724],[86.14626,23.07496],[86.14366,23.06774],[86.14404,23.06351],[86.14177,23.06012],[86.14198,23.05425],[86.15099,23.05154],[86.15364,23.0481],[86.15804,23.04618],[86.15602,23.03117],[86.16305,23.02829],[86.16544,23.03238],[86.16774,23.03256],[86.16639,23.02947],[86.17049,23.0264],[86.17008,23.02244],[86.17615,23.02028],[86.17898,23.02077],[86.18127,23.0147],[86.18121,23.01003],[86.18503,23.00538],[86.2084,23.00651],[86.2067,23.00028],[86.22269,22.9995],[86.22877,22.99512],[86.24171,22.99609],[86.24306,22.9981],[86.24535,22.9982],[86.2485,22.99491],[86.26056,22.99859],[86.26585,22.99798],[86.26824,22.99984],[86.26787,23.00116],[86.27717,23.00738],[86.28418,23.00692],[86.29212,23.01298],[86.29621,23.00968],[86.29938,23.00979],[86.30374,23.016],[86.30469,23.0153],[86.30224,23.01006],[86.30909,23.00705],[86.3089,23.00342],[86.31612,23.00007],[86.31979,23.0006],[86.32159,22.99744],[86.32593,22.9949],[86.33953,22.98981],[86.34061,22.99355],[86.3437,22.99649],[86.34764,22.99662],[86.35453,22.99297],[86.35443,22.99934],[86.3639,22.99958],[86.37178,22.99674],[86.37275,22.99815],[86.38356,22.99428],[86.38502,22.99526],[86.38541,22.98945],[86.38771,22.98531],[86.3948,22.98022],[86.39855,22.97989],[86.40108,22.98086],[86.40689,22.98972],[86.4084,22.98906],[86.41006,22.99113],[86.41329,22.99081],[86.41716,22.9932],[86.41733,22.99705],[86.41972,22.99678],[86.41825,22.99921],[86.41926,23.00027],[86.42531,22.99657],[86.4423,22.99323],[86.44642,22.98824],[86.45085,22.98835],[86.45155,22.99024],[86.47051,22.98889],[86.47573,22.99175],[86.48037,22.98982],[86.48706,22.99243],[86.49769,22.99204],[86.50115,22.99359],[86.50416,22.98611],[86.51378,22.97749],[86.50862,22.97304],[86.52119,22.97071],[86.52619,22.97261],[86.52684,22.97549],[86.52382,22.97713],[86.52814,22.98064],[86.53991,22.98458],[86.54561,22.99028],[86.54788,22.98694],[86.5475,22.98232],[86.55056,22.97799],[86.54408,22.96973],[86.54478,22.96569],[86.54037,22.9668],[86.5316,22.96521],[86.53004,22.95215],[86.52598,22.94761],[86.52141,22.95006],[86.51921,22.94824],[86.5127,22.94776],[86.50784,22.95088],[86.50258,22.95187],[86.5029,22.94897],[86.50078,22.94594],[86.49524,22.94685],[86.49454,22.94326],[86.48913,22.93724],[86.4853,22.94277],[86.47727,22.94609],[86.47793,22.94936],[86.47632,22.95118],[86.47098,22.94893],[86.46912,22.94451],[86.46535,22.94546],[86.45998,22.93506],[86.45436,22.93198],[86.45131,22.93325],[86.4468,22.93071],[86.44301,22.93067],[86.44201,22.92797],[86.43534,22.92519],[86.4362,22.92232],[86.44048,22.91949],[86.44151,22.91629],[86.45297,22.90246],[86.46543,22.90239],[86.46714,22.89993],[86.46463,22.89434],[86.46004,22.89208],[86.45625,22.88577],[86.45343,22.88587],[86.45481,22.87858],[86.45198,22.87292],[86.45077,22.86154],[86.43969,22.86426],[86.43497,22.86051],[86.43588,22.85912],[86.4334,22.85336],[86.43555,22.83592],[86.43885,22.83102],[86.42848,22.81934],[86.42252,22.80998],[86.42525,22.80654],[86.42339,22.80216],[86.42548,22.79931],[86.42256,22.79687],[86.42327,22.79192],[86.42096,22.79281],[86.41881,22.79068],[86.41633,22.79137],[86.41622,22.78886],[86.41868,22.78752],[86.41761,22.78368],[86.42148,22.78014],[86.42581,22.77975],[86.4301,22.77469],[86.43748,22.77126],[86.44842,22.76193],[86.45793,22.76336],[86.46018,22.76191],[86.46968,22.7521],[86.47364,22.7397],[86.48173,22.7302],[86.48154,22.72786],[86.49321,22.72639],[86.49468,22.72328],[86.49768,22.72287],[86.50001,22.72046],[86.51133,22.705],[86.51345,22.70717],[86.51151,22.71197],[86.51293,22.71662],[86.52033,22.71523],[86.52433,22.71943],[86.53513,22.71725],[86.5442,22.7216],[86.56139,22.7093],[86.56299,22.7062],[86.57224,22.69926],[86.58527,22.69108],[86.60253,22.68732],[86.60849,22.68399],[86.61163,22.67991],[86.62027,22.67789],[86.62353,22.67564],[86.62935,22.66669],[86.63604,22.66497],[86.64239,22.65701],[86.63863,22.65078],[86.63902,22.62531],[86.63538,22.61831],[86.63411,22.61039],[86.6386,22.60947],[86.63813,22.60122],[86.63943,22.59782],[86.64448,22.59449],[86.65703,22.5908],[86.65363,22.58181],[86.65952,22.57504],[86.67926,22.57446],[86.68465,22.57833],[86.71115,22.58239],[86.73149,22.57691],[86.75208,22.57852],[86.76686,22.57502],[86.76774,22.56698],[86.77193,22.56464],[86.77157,22.56106],[86.76662,22.55841],[86.7691,22.55458],[86.77519,22.5488],[86.78418,22.55029],[86.78929,22.549],[86.79026,22.54122],[86.78737,22.53817],[86.78896,22.53409],[86.78685,22.52685],[86.79292,22.52498],[86.79494,22.51398],[86.79319,22.51399],[86.79266,22.51132],[86.79651,22.50958],[86.79769,22.5064],[86.80083,22.5055],[86.80239,22.50304],[86.8008,22.50074],[86.79524,22.49938],[86.79389,22.49719],[86.79469,22.49433],[86.79919,22.49239],[86.8016,22.48883],[86.79257,22.47776],[86.78429,22.48124],[86.76902,22.48009],[86.76609,22.48193],[86.74987,22.48295],[86.74728,22.47478],[86.75106,22.46543],[86.75101,22.45671],[86.76317,22.44838],[86.75903,22.44581],[86.76187,22.4317],[86.76453,22.42726],[86.76647,22.42669],[86.78582,22.42435],[86.79389,22.42166],[86.80707,22.42126],[86.83129,22.411],[86.84635,22.39908],[86.84563,22.39152],[86.84088,22.38319],[86.84264,22.37221],[86.83229,22.34851],[86.8311,22.33476],[86.83211,22.32723],[86.83974,22.31893],[86.85012,22.31564],[86.86537,22.3081],[86.87224,22.30712],[86.87583,22.3015],[86.88779,22.29746],[86.88933,22.27376],[86.88753,22.27387],[86.88836,22.26137],[86.88632,22.25724],[86.88502,22.25855],[86.8835,22.25716],[86.88006,22.25926],[86.87644,22.25911],[86.87597,22.26065],[86.87322,22.25909],[86.87186,22.26006],[86.86626,22.25892],[86.86525,22.26096],[86.86343,22.25878],[86.85893,22.25798],[86.85109,22.26521],[86.84942,22.26334],[86.84655,22.26404],[86.84271,22.26163],[86.83784,22.26565],[86.83093,22.26322],[86.82396,22.26676],[86.81825,22.25372],[86.8167,22.25455],[86.81494,22.26706],[86.81359,22.26739],[86.80916,22.25025],[86.81059,22.24987],[86.80906,22.24664],[86.8072,22.24723],[86.80399,22.24358],[86.79995,22.24461],[86.79801,22.24702],[86.80111,22.2652],[86.79226,22.2663],[86.7957,22.24874],[86.79486,22.24317],[86.79925,22.23788],[86.80348,22.24322],[86.81202,22.24123],[86.80241,22.21755],[86.79187,22.22183],[86.79014,22.21874],[86.78904,22.21925],[86.78474,22.21505],[86.77907,22.21692],[86.77819,22.21849],[86.78447,22.2306],[86.79321,22.2242],[86.79491,22.22779],[86.78858,22.23166],[86.78919,22.23573],[86.77768,22.23659],[86.77434,22.23221],[86.77737,22.22552],[86.77641,22.21786],[86.77114,22.22035],[86.76253,22.21355],[86.75422,22.21144],[86.74978,22.21169],[86.74404,22.21598],[86.73081,22.21543],[86.72496,22.21802],[86.71889,22.19905],[86.72122,22.18939],[86.71637,22.18632],[86.71605,22.18172],[86.7193,22.17304],[86.71921,22.16704],[86.71789,22.1658],[86.71971,22.14728],[86.7277,22.14718],[86.73588,22.14943],[86.76499,22.14951],[86.77964,22.15365],[86.78664,22.1538],[86.78841,22.15777],[86.79385,22.15748],[86.80201,22.15071],[86.80374,22.13871],[86.80229,22.13282],[86.79941,22.13037],[86.80142,22.12924],[86.80479,22.13033],[86.80997,22.12741],[86.80641,22.11971],[86.81892,22.11664],[86.82462,22.11892],[86.83465,22.10426],[86.83374,22.0987],[86.84363,22.09631],[86.84662,22.10046],[86.84917,22.1],[86.85015,22.10378],[86.86022,22.10233],[86.86413,22.09935],[86.87114,22.09964],[86.90585,22.09193],[86.93429,22.09048],[86.94501,22.08597],[86.95796,22.08855],[86.96471,22.08574],[86.96782,22.08013],[86.97103,22.07834],[86.97175,22.07239],[86.99314,22.05525],[86.99776,22.05403],[87.00588,22.04872],[87.0144,22.04768],[87.01906,22.04178],[87.0267,22.03709],[87.02234,22.01949],[87.0274,22.00266],[87.031,21.99705],[87.03035,21.98534],[87.02123,21.97267],[87.01284,21.9496],[87.00943,21.94789],[87.00583,21.93753],[87.00463,21.92572],[87.00145,21.92456],[87.00356,21.92049],[86.99972,21.91325],[87.00468,21.91013],[87.00938,21.89978],[87.02293,21.89231],[87.02557,21.88689],[87.0251,21.88109],[87.02748,21.87974],[87.02608,21.87568],[87.03011,21.87448],[87.0356,21.86917],[87.04327,21.86927],[87.04613,21.8675],[87.04951,21.86817],[87.06131,21.86587],[87.07396,21.86724],[87.07929,21.86595],[87.08426,21.86812],[87.09793,21.86692],[87.09519,21.88062],[87.09885,21.89072],[87.09462,21.89829],[87.09057,21.90107],[87.0971,21.91394],[87.10235,21.91506],[87.10692,21.92232],[87.11282,21.92244],[87.11405,21.92432],[87.12464,21.92601],[87.14155,21.92402],[87.15281,21.93322],[87.1614,21.93492],[87.16328,21.9389],[87.1611,21.94398],[87.16262,21.94891],[87.16066,21.95227],[87.16479,21.9609],[87.16233,21.96168],[87.1636,21.96701],[87.16199,21.96761],[87.1682,21.97128],[87.17041,21.97994],[87.17763,21.96964],[87.19681,21.95955],[87.1995,21.95979],[87.20309,21.9629],[87.20868,21.96208],[87.2106,21.96436],[87.21409,21.96357],[87.21679,21.96027],[87.22279,21.95871],[87.22397,21.95684],[87.23181,21.95704],[87.23903,21.94097],[87.24244,21.93836],[87.24859,21.93695],[87.24981,21.93497],[87.24511,21.92541],[87.24977,21.91835],[87.2492,21.91515],[87.23698,21.9078],[87.23438,21.90064],[87.24225,21.89247],[87.25232,21.87711],[87.2514,21.86886],[87.2478,21.8609],[87.24903,21.85323],[87.25979,21.84883],[87.25849,21.84408],[87.26088,21.84074],[87.26542,21.83868],[87.26409,21.83562],[87.26501,21.83007],[87.26852,21.82949],[87.27088,21.82706],[87.26906,21.82343],[87.2642,21.82325],[87.2639,21.81858],[87.27519,21.81697],[87.27601,21.81117],[87.27376,21.81029],[87.27678,21.8055],[87.28285,21.80449],[87.28272,21.80276],[87.28414,21.80279],[87.28869,21.80559],[87.29059,21.81132],[87.29698,21.81155],[87.29589,21.80529],[87.29808,21.80487],[87.29838,21.80121],[87.30963,21.79892],[87.31066,21.79385],[87.314,21.79555],[87.31518,21.79392],[87.31653,21.79632],[87.32164,21.79767],[87.31894,21.79462],[87.31946,21.79072],[87.32544,21.79202],[87.32954,21.79057],[87.33181,21.79382],[87.33603,21.79354],[87.33857,21.78476],[87.34732,21.79296],[87.35552,21.79217],[87.35682,21.78945],[87.35566,21.78639],[87.35915,21.78548],[87.3594,21.78259],[87.37183,21.77876],[87.37302,21.77371],[87.36966,21.76543],[87.37388,21.76511],[87.37401,21.77281],[87.37854,21.77277],[87.38085,21.77544],[87.38506,21.77677],[87.39343,21.77621],[87.39397,21.7726],[87.39128,21.77241],[87.39148,21.77096],[87.39542,21.77094],[87.39553,21.76713],[87.39775,21.76658],[87.40119,21.76743],[87.40413,21.77148],[87.41919,21.76949],[87.42459,21.77158],[87.4315,21.76931],[87.43539,21.77067],[87.44555,21.76816],[87.44415,21.75649],[87.44523,21.74768],[87.44724,21.74621],[87.44543,21.74379],[87.44978,21.74328],[87.45432,21.73909],[87.45319,21.7378],[87.44529,21.7387],[87.44478,21.73403],[87.46918,21.73252],[87.46709,21.72757],[87.46386,21.72832],[87.46346,21.72538],[87.46741,21.71868],[87.47123,21.71741],[87.47359,21.71457],[87.4724,21.70734],[87.47018,21.70533],[87.47194,21.70244],[87.47149,21.69869],[87.47307,21.69914],[87.4722,21.69815],[87.47363,21.69711],[87.47123,21.69618],[87.47198,21.69065],[87.46959,21.68935],[87.47084,21.68858],[87.47111,21.68389],[87.46861,21.68309],[87.46945,21.67873],[87.46673,21.67857],[87.4672,21.66413],[87.46128,21.66264],[87.46248,21.65844],[87.4605,21.65544],[87.46037,21.6514],[87.46126,21.65037],[87.47256,21.65247],[87.47196,21.64806],[87.47647,21.64693],[87.47517,21.64399],[87.48118,21.63602],[87.48061,21.63321],[87.48601,21.63224],[87.48453,21.62496],[87.48479,21.61126],[87.55172,21.63155],[87.55356,21.63805],[87.55659,21.63498],[87.56418,21.63437],[87.63195,21.6478],[87.64393,21.66311],[87.64658,21.66044],[87.64068,21.65638],[87.6415,21.65196],[87.64482,21.64968],[87.65141,21.64851],[87.67396,21.65253],[87.70849,21.66386],[87.73711,21.6782],[87.73937,21.68109],[87.73181,21.67963],[87.73122,21.682],[87.73666,21.68134],[87.74459,21.68543],[87.7477,21.6889],[87.74827,21.69255],[87.74373,21.6963],[87.74907,21.70081],[87.75116,21.69939],[87.75746,21.70023],[87.75182,21.69954],[87.7568,21.69811],[87.76017,21.70178],[87.76169,21.69793],[87.76968,21.69416],[87.78546,21.6942],[87.80507,21.70342],[87.81312,21.71032],[87.81514,21.71841],[87.81825,21.72146],[87.83398,21.73511],[87.86077,21.75332],[87.86181,21.75625],[87.8556,21.75264],[87.86253,21.75762],[87.86648,21.76665],[87.88353,21.78198],[87.88552,21.78999],[87.88327,21.79335],[87.89443,21.79579],[87.90296,21.80078],[87.90632,21.80116],[87.90676,21.79999],[87.91189,21.80205],[87.91322,21.8032],[87.90924,21.80196],[87.90915,21.8038],[87.91195,21.80484],[87.91208,21.80332],[87.91693,21.80583],[87.94062,21.82345],[87.94781,21.83198],[87.94516,21.83574],[87.94835,21.83337],[87.94922,21.8357],[87.95335,21.8372],[87.95551,21.8417],[87.96808,21.85477],[87.97066,21.86296],[87.97763,21.86864],[87.99718,21.89653],[88.00163,21.90533],[88.0,21.90546],[88.00366,21.906],[88.00182,21.90631],[88.01198,21.92092],[88.01367,21.93251],[88.01662,21.94021],[88.01565,21.94188],[88.01199,21.94129],[88.0108,21.94285],[88.01349,21.942],[88.01813,21.94377],[88.02566,21.96186],[88.03214,21.97135],[88.036,21.98218],[88.04961,22.00081],[88.05242,22.00732],[88.04997,22.01376],[88.05569,22.02018],[88.06308,22.01331],[88.08627,22.02338],[88.12581,22.04983],[88.15366,22.06359],[88.16367,22.07426],[88.17173,22.08007],[88.18341,22.09445],[88.18943,22.10808],[88.19011,22.11627],[88.18117,22.12574],[88.16883,22.14483],[88.16094,22.15059],[88.15798,22.15553],[88.15613,22.15544],[88.15712,22.15627],[88.13668,22.1842],[88.13204,22.18637],[88.12164,22.18677],[88.10337,22.1922],[88.10103,22.19056],[88.09515,22.19099],[88.09125,22.18666],[88.08782,22.18556],[88.0737,22.18713],[88.06669,22.18884],[88.04972,22.20477],[88.03478,22.20893],[88.02927,22.20778],[88.02701,22.20188],[88.02342,22.19969],[88.01744,22.19953],[88.00675,22.20263],[87.99777,22.20843],[87.99186,22.2245],[87.98327,22.23055],[87.98226,22.22914],[87.98621,22.22721],[87.98198,22.22867],[87.9817,22.23189],[87.97523,22.2334],[87.97617,22.22367],[87.98128,22.21899],[87.98387,22.21843],[87.98389,22.21407],[87.9734,22.22279],[87.97302,22.23382],[87.97108,22.23776],[87.95889,22.24447],[87.94764,22.25475],[87.94786,22.2588],[87.95593,22.26973],[87.96836,22.26473],[87.96811,22.25996],[87.96985,22.25617],[87.98649,22.23826],[87.99612,22.23828],[88.00014,22.24296],[88.00694,22.23914],[88.0065,22.23342],[88.02218,22.21777],[88.05301,22.21147],[88.06057,22.20577],[88.08299,22.2364],[88.08312,22.25635],[88.08461,22.25634],[88.08811,22.25333],[88.08768,22.24242],[88.08436,22.23368],[88.06905,22.2135],[88.07278,22.20948],[88.08779,22.20784],[88.10037,22.21002],[88.1168,22.20945],[88.13373,22.20162],[88.1414,22.20199],[88.1564,22.19856],[88.16341,22.1988],[88.17684,22.19389],[88.18614,22.18774],[88.18801,22.18803],[88.18948,22.18377],[88.20531,22.16454],[88.20382,22.16403],[88.20538,22.1642],[88.21043,22.14895],[88.2119,22.12855],[88.21624,22.12248],[88.21688,22.11204],[88.22084,22.10398],[88.22441,22.08992],[88.22316,22.07069],[88.2161,22.05189],[88.21331,22.03387],[88.19806,22.00787],[88.16808,21.97473],[88.15338,21.96432],[88.14975,21.95688],[88.1669,21.93627],[88.17105,21.92856],[88.17361,21.91181],[88.1646,21.89295],[88.16344,21.88367],[88.17434,21.86899],[88.17749,21.86156],[88.17897,21.86177],[88.18394,21.85469],[88.18611,21.85476],[88.1946,21.84556],[88.19979,21.83597],[88.2024,21.82274],[88.2007,21.81089],[88.20229,21.80708],[88.20392,21.80792],[88.20661,21.79687],[88.21156,21.78981],[88.21529,21.77803],[88.21396,21.76842],[88.21565,21.75731],[88.21121,21.72472],[88.21307,21.71826],[88.21949,21.70783],[88.22043,21.70188],[88.21892,21.69811],[88.21337,21.69369],[88.19923,21.68966],[88.19975,21.6827],[88.20586,21.67542],[88.2152,21.67455],[88.22456,21.67596],[88.22978,21.67317],[88.23353,21.66736],[88.23165,21.65628],[88.23749,21.64432],[88.23341,21.63405],[88.22111,21.62385],[88.21846,21.61593],[88.22227,21.61194],[88.23086,21.60944],[88.23628,21.60499],[88.2359,21.60199],[88.24556,21.58751],[88.24332,21.5829],[88.24467,21.5787],[88.23705,21.57654],[88.23953,21.57559],[88.24408,21.56633],[88.24842,21.56174],[88.25508,21.55813],[88.27648,21.55668],[88.29353,21.56303],[88.3103,21.58164],[88.30067,21.58831],[88.29493,21.59585],[88.2878,21.59669],[88.28442,21.60071],[88.28675,21.6046],[88.28503,21.6086],[88.2863,21.60967],[88.28678,21.61729],[88.28888,21.62033],[88.28778,21.62401],[88.29685,21.64261],[88.30265,21.66062],[88.30376,21.67024],[88.30117,21.68242],[88.28193,21.70625],[88.28379,21.70696],[88.27935,21.71408],[88.27543,21.72695],[88.26396,21.72894],[88.2615,21.73216],[88.26917,21.74515],[88.27086,21.74988],[88.2702,21.75364],[88.28172,21.76227],[88.27948,21.76573],[88.28184,21.76881],[88.28646,21.78365],[88.28297,21.78946],[88.28683,21.79165],[88.29055,21.7869],[88.29996,21.78141],[88.2991,21.77707],[88.30235,21.76857],[88.30948,21.73385],[88.30615,21.71768],[88.31107,21.71174],[88.3208,21.70874],[88.32908,21.70904],[88.32488,21.71911],[88.32544,21.72464],[88.32725,21.72649],[88.33112,21.72507],[88.33172,21.71816],[88.33389,21.71393],[88.33573,21.71393],[88.3443,21.72104],[88.3399,21.73947],[88.33977,21.75038],[88.33856,21.75136],[88.34281,21.76133],[88.35531,21.76689],[88.37463,21.76813],[88.37617,21.7814],[88.37937,21.78762],[88.40409,21.80009],[88.41115,21.80519],[88.41758,21.81172],[88.41742,21.81316],[88.42588,21.81452],[88.42555,21.81193],[88.42754,21.80957],[88.42993,21.8006],[88.43285,21.80057],[88.43316,21.80303],[88.43529,21.80112],[88.44516,21.80303],[88.45566,21.79369],[88.45987,21.79206],[88.46069,21.79543],[88.44864,21.80588],[88.44737,21.81299],[88.4491,21.81755],[88.45333,21.82195],[88.45551,21.82395],[88.46423,21.82593],[88.46886,21.83436],[88.47329,21.83753],[88.4842,21.8383],[88.48786,21.84038],[88.48878,21.8509],[88.48304,21.87203],[88.47507,21.88984],[88.45788,21.89453],[88.45066,21.90492],[88.44038,21.9057],[88.43431,21.89897],[88.42135,21.90303],[88.41751,21.89901],[88.41805,21.90261],[88.4212,21.90408],[88.4311,21.9012],[88.43876,21.90601],[88.44959,21.90566],[88.45993,21.89424],[88.47554,21.89036],[88.49216,21.88251],[88.49577,21.88366],[88.49691,21.88612],[88.49687,21.87648],[88.5011,21.8738],[88.50094,21.87172],[88.50467,21.86889],[88.51905,21.85969],[88.52537,21.85261],[88.52869,21.8556],[88.52966,21.85391],[88.53673,21.85622],[88.5392,21.86247],[88.53555,21.86434],[88.52929,21.87221],[88.51863,21.87561],[88.52972,21.8725],[88.53876,21.86324],[88.5377,21.8672],[88.53921,21.87326],[88.5465,21.87894],[88.53746,21.87856],[88.54703,21.88042],[88.54758,21.88206],[88.54605,21.89307],[88.53902,21.89911],[88.53957,21.90296],[88.54141,21.90473],[88.54103,21.90742],[88.56024,21.8989],[88.56525,21.89947],[88.56875,21.90408],[88.56743,21.90751],[88.56061,21.9129],[88.55264,21.91517],[88.54883,21.92027],[88.54859,21.93814],[88.54056,21.94955],[88.54254,21.95064],[88.54122,21.96599],[88.5349,21.96873],[88.54122,21.96716],[88.54404,21.97302],[88.55398,21.97636],[88.55973,21.9713],[88.56751,21.96077],[88.57081,21.95972],[88.57389,21.96109],[88.57534,21.96331],[88.5741,21.9779],[88.58414,21.98971],[88.58089,21.99553],[88.57124,22.00044],[88.57759,21.99861],[88.58116,22.00004],[88.57967,21.99811],[88.58528,21.99035],[88.59504,21.98872],[88.59941,21.99183],[88.60243,21.99725],[88.60897,22.00386],[88.62351,22.01146],[88.63488,22.01077],[88.63731,22.0086],[88.63849,22.00414],[88.63766,21.99997],[88.63262,21.99199],[88.62883,21.97148],[88.6279,21.95886],[88.63072,21.95436],[88.63824,21.94937],[88.64389,21.95239],[88.65682,21.95365],[88.67231,21.94745],[88.67862,21.94309],[88.68962,21.94972],[88.69067,21.95568],[88.69345,21.95566],[88.69558,21.95134],[88.69423,21.96597],[88.68965,21.97163],[88.69417,21.9707],[88.70267,21.98683],[88.7102,21.99595],[88.71367,21.99873],[88.73328,22.00666],[88.75146,22.00623],[88.75188,22.00094],[88.75039,21.99757],[88.74084,21.98796],[88.72549,21.97954],[88.72275,21.93215],[88.71656,21.9207],[88.71587,21.90355],[88.71325,21.88991],[88.69888,21.85907],[88.69604,21.84259],[88.71115,21.80689],[88.71234,21.79977],[88.71128,21.78698],[88.70481,21.77165],[88.69459,21.75344],[88.69376,21.74531],[88.7049,21.71826],[88.71141,21.68958],[88.71762,21.6835],[88.72791,21.67721],[88.74479,21.66083],[88.75,21.65817],[88.75712,21.66272],[88.77026,21.66572],[88.79216,21.65618],[88.79645,21.65592],[88.80794,21.66268],[88.80697,21.67577],[88.80993,21.70448],[88.80687,21.70665],[88.79933,21.7063],[88.7687,21.69369],[88.76384,21.69429],[88.75947,21.69701],[88.75655,21.70297],[88.75758,21.7087],[88.76043,21.71293],[88.76656,21.7171],[88.77757,21.72128],[88.77593,21.72537],[88.75761,21.7285],[88.75235,21.7333],[88.75084,21.73783],[88.75318,21.75204],[88.75977,21.7618],[88.7535,21.76311],[88.74834,21.76621],[88.74553,21.77324],[88.76412,21.78957],[88.77023,21.80545],[88.77483,21.81025],[88.77403,21.81677],[88.77704,21.82544],[88.78115,21.82517],[88.77644,21.81641],[88.7777,21.81052],[88.77167,21.80189],[88.76568,21.78636],[88.75013,21.77049],[88.76218,21.76754],[88.76721,21.76331],[88.76534,21.75915],[88.75715,21.75088],[88.7551,21.74448],[88.75587,21.73532],[88.77704,21.73244],[88.7899,21.73787],[88.78408,21.73982],[88.7835,21.74141],[88.79049,21.75003],[88.79057,21.74676],[88.78605,21.74285],[88.78615,21.74138],[88.79146,21.74008],[88.79383,21.73701],[88.7809,21.73196],[88.78439,21.72337],[88.78391,21.71907],[88.78072,21.71443],[88.76266,21.70443],[88.76271,21.70197],[88.76426,21.70037],[88.7708,21.70132],[88.78581,21.71193],[88.80298,21.71753],[88.80934,21.71576],[88.81459,21.71073],[88.81942,21.70073],[88.81744,21.68719],[88.82216,21.67347],[88.82244,21.66702],[88.82003,21.6579],[88.80449,21.63716],[88.81249,21.62928],[88.81729,21.62731],[88.81864,21.62899],[88.82367,21.62554],[88.82478,21.62734],[88.82812,21.62425],[88.84559,21.6191],[88.84647,21.62337],[88.84409,21.62645],[88.84929,21.62707],[88.84991,21.62808],[88.84716,21.6298],[88.85409,21.63345],[88.86155,21.64094],[88.85736,21.65319],[88.84316,21.68245],[88.84042,21.69927],[88.84116,21.71688],[88.84506,21.73035],[88.85211,21.74415],[88.86314,21.75484],[88.8647,21.76144],[88.86374,21.76359],[88.83258,21.7662],[88.82455,21.77437],[88.82148,21.78144],[88.82242,21.79426],[88.83083,21.80807],[88.82222,21.82598],[88.82007,21.83776],[88.83254,21.867],[88.83822,21.87666],[88.8398,21.88636],[88.83339,21.89638],[88.82763,21.90006],[88.81328,21.90383],[88.79904,21.9221],[88.79987,21.92675],[88.80434,21.93269],[88.80575,21.93807],[88.80944,21.94074],[88.81614,21.94177],[88.82388,21.94105],[88.83079,21.93745],[88.84211,21.92476],[88.85824,21.92036],[88.86767,21.92377],[88.87537,21.92433],[88.882,21.92409],[88.88668,21.92171],[88.89705,21.92413],[88.90436,21.92789],[88.90635,21.93216],[88.90562,21.94957],[88.90829,21.96808],[88.90809,21.97147],[88.90523,21.97467],[88.90313,21.98079],[88.90165,21.99686],[88.90247,22.00385],[88.90808,22.00974],[88.91511,22.00846],[88.91196,21.99544],[88.916,21.98174],[88.91781,21.98093],[88.93293,21.99079],[88.93392,21.9927],[88.93064,22.00052],[88.93565,22.01181],[88.95359,22.01219],[88.9644,22.00609],[88.971,22.00009],[88.96935,21.9938],[88.98378,21.98911],[88.98629,21.98682],[88.98902,21.98341],[88.98829,21.97439],[88.9906,21.97527],[89.00032,21.98767],[89.01374,21.99653],[89.02479,21.9978],[89.02744,22.0011],[89.03038,22.00105],[89.02717,21.99751],[89.01549,21.99498],[89.00123,21.9864],[89.01182,21.98426],[89.01433,21.97999],[89.0141,21.97672],[89.01245,21.97296],[88.99929,21.96001],[89.0,21.95806],[88.99717,21.95724],[88.99739,21.95025],[89.00193,21.94566],[89.0141,21.94062],[89.02831,21.92869],[89.03514,21.92699],[89.06799,21.93165],[89.07626,21.95937],[89.07967,21.98397],[89.07686,22.00841],[89.07274,22.01926],[89.05533,22.04036],[89.04328,22.06167],[89.03786,22.09421],[89.04162,22.10562],[89.05076,22.1162],[89.06146,22.12106],[89.07884,22.13454],[89.09477,22.14279],[89.09804,22.14754],[89.09871,22.15187],[89.09655,22.15671],[89.09115,22.15825],[89.07685,22.14544],[89.07335,22.14532],[89.07107,22.14728],[89.06425,22.1644],[89.06395,22.1691],[89.06486,22.17522],[89.07217,22.18707],[89.07161,22.19689],[89.03889,22.23069],[89.03654,22.23637],[89.0342,22.25826],[89.03032,22.26008],[89.01947,22.25437],[89.01388,22.25396],[89.01294,22.25856],[89.01979,22.26544],[89.02047,22.2685],[88.9951,22.28626],[88.9949,22.29334],[88.99944,22.29701],[89.00783,22.29836],[89.02149,22.29439],[89.02438,22.29604],[89.0243,22.29843],[89.01622,22.30656],[89.01037,22.31553],[89.00042,22.32428],[88.98932,22.32254],[88.98448,22.3267],[88.98875,22.34814],[88.98602,22.35759],[88.98935,22.36428],[88.98232,22.37349],[88.98528,22.3791],[88.99425,22.38873],[88.99004,22.39354],[88.97967,22.40059],[88.97191,22.40989],[88.98411,22.41833],[88.98866,22.42407],[89.00007,22.42984],[88.99909,22.43322],[88.99124,22.44043],[88.98849,22.44511],[88.99414,22.45531],[88.99612,22.46895],[88.99267,22.4735],[88.98098,22.48247],[88.97469,22.49624],[88.96791,22.53457],[88.96186,22.54873],[88.95697,22.55291],[88.94447,22.556],[88.9407,22.56135],[88.94151,22.57547],[88.93851,22.58801],[88.93894,22.59221],[88.9564,22.6061],[88.95965,22.61135],[88.96008,22.61663],[88.95616,22.61876],[88.94145,22.61815],[88.93495,22.6212],[88.93296,22.6261],[88.93192,22.63892],[88.92711,22.64965],[88.92987,22.65121],[88.92869,22.65136],[88.92946,22.65383],[88.9312,22.65289],[88.93056,22.65155],[88.93331,22.65198],[88.93555,22.65571],[88.9333,22.6567],[88.93558,22.65903],[88.93906,22.66041],[88.94187,22.65956],[88.94503,22.66239],[88.94789,22.67759],[88.95559,22.68599],[88.96164,22.68522],[88.96059,22.68721],[88.96237,22.69497],[88.95611,22.70398],[88.95115,22.70698],[88.94837,22.70542],[88.9279,22.71807],[88.92521,22.72793],[88.91816,22.73038],[88.91569,22.73654],[88.9166,22.74393],[88.91796,22.74748],[88.92078,22.74924],[88.92075,22.7532],[88.91765,22.75521],[88.91289,22.75427],[88.911,22.75773],[88.91783,22.77001],[88.92582,22.76987],[88.9267,22.77425],[88.92476,22.77496],[88.92391,22.77956],[88.92938,22.78023],[88.92881,22.78318],[88.93565,22.78186],[88.93567,22.79023],[88.93829,22.79108],[88.93809,22.79297],[88.94331,22.79034],[88.9496,22.7973],[88.95789,22.79586],[88.9599,22.80713],[88.95536,22.80881],[88.95552,22.81181],[88.9599,22.8144],[88.9631,22.81933],[88.96413,22.82919],[88.96846,22.84504],[88.9623,22.85357],[88.9583,22.85647],[88.95741,22.86255],[88.9531,22.86417],[88.9536,22.86748],[88.94974,22.87285],[88.94969,22.87685],[88.94537,22.88067],[88.94203,22.87996],[88.93995,22.87485],[88.92833,22.87249],[88.92459,22.87554],[88.92254,22.8801],[88.91873,22.87725],[88.91623,22.87754],[88.91545,22.88021],[88.9123,22.87992],[88.91204,22.87858],[88.91121,22.8802],[88.90943,22.87986],[88.9123,22.88101],[88.90926,22.88145],[88.90888,22.88502],[88.90542,22.88582],[88.90566,22.88711],[88.90814,22.88706],[88.90597,22.88763],[88.9051,22.88982],[88.90783,22.89362],[88.89793,22.89795],[88.90104,22.90592],[88.89568,22.91307],[88.90554,22.91457],[88.90814,22.91978],[88.90376,22.92292],[88.89102,22.92715],[88.88689,22.93321],[88.89274,22.93793],[88.89426,22.952],[88.87927,22.95401],[88.87608,22.9487],[88.87447,22.94816],[88.86932,22.95144],[88.86084,22.94296],[88.85944,22.94319],[88.85514,22.95792],[88.85705,22.96888],[88.85866,22.97128],[88.86686,22.97482],[88.87097,22.97863],[88.86533,22.98555],[88.86387,22.99292],[88.86541,22.99933],[88.86451,23.00102],[88.86063,23.00267],[88.85146,23.00221],[88.84509,23.00986],[88.84681,23.01098],[88.85475,23.00695],[88.86858,23.00585],[88.87668,23.00325],[88.87975,23.00633],[88.87948,23.0096],[88.87434,23.01027],[88.87448,23.01411],[88.872,23.01676],[88.87247,23.01901],[88.87691,23.02279],[88.87766,23.02611],[88.87851,23.02401],[88.87904,23.02591],[88.88104,23.02569],[88.88005,23.03186],[88.88217,23.03641],[88.88451,23.037],[88.88412,23.04043],[88.88053,23.04088],[88.87489,23.0445],[88.87415,23.06578],[88.86958,23.06768],[88.86676,23.07144],[88.86695,23.07284],[88.86821,23.0717],[88.86763,23.07327],[88.86101,23.07731],[88.86556,23.07773],[88.86367,23.07946],[88.86636,23.08023],[88.86616,23.0861],[88.87029,23.086],[88.87164,23.08675],[88.8707,23.08887],[88.87464,23.08977],[88.8735,23.09555],[88.8718,23.09567],[88.87226,23.09737],[88.86906,23.09735],[88.87012,23.09809],[88.86792,23.09995],[88.86845,23.10107],[88.87121,23.10086],[88.8772,23.10432],[88.87898,23.1032],[88.87923,23.10489],[88.8836,23.10456],[88.88148,23.10902],[88.8828,23.11081],[88.8917,23.10768],[88.89731,23.11201],[88.89987,23.11192],[88.90144,23.11692],[88.90572,23.12186],[88.90592,23.12506],[88.91024,23.12746],[88.91033,23.12974],[88.9179,23.12908],[88.91987,23.14062],[88.92327,23.14512],[88.93084,23.14319],[88.93232,23.15608],[88.93058,23.1577],[88.93113,23.15995],[88.92784,23.16071],[88.92806,23.1626],[88.93015,23.16228],[88.92787,23.16304],[88.93402,23.16176],[88.93413,23.16453],[88.93267,23.16547],[88.93389,23.16982],[88.93534,23.17234],[88.93852,23.17334],[88.93909,23.1768],[88.94421,23.1762],[88.94358,23.17783],[88.94505,23.17789],[88.94623,23.18057],[88.95623,23.1819],[88.95779,23.1832],[88.95833,23.18961],[88.96192,23.19135],[88.96231,23.19314],[88.97534,23.19235],[88.97607,23.18186],[88.97794,23.18375],[88.98038,23.18255],[88.9784,23.18405],[88.9796,23.18693],[88.97816,23.18753],[88.98147,23.19249],[88.98009,23.19371],[88.98234,23.19486],[88.98526,23.20213],[88.98772,23.20265],[88.98604,23.20794],[88.98037,23.20971],[88.97967,23.21286],[88.9843,23.21574],[88.98739,23.21542],[88.99083,23.21267],[88.99572,23.2147],[88.98929,23.21585],[88.9844,23.22168],[88.98281,23.22177],[88.97956,23.21549],[88.98139,23.22221],[88.97593,23.22443],[88.97425,23.22257],[88.97873,23.21448],[88.97325,23.22238],[88.97088,23.22265],[88.96956,23.2203],[88.96478,23.218],[88.96407,23.21466],[88.95224,23.21103],[88.94649,23.20645],[88.94263,23.20611],[88.92952,23.21152],[88.92861,23.21495],[88.92984,23.21559],[88.92666,23.21795],[88.92359,23.21588],[88.92307,23.21807],[88.91674,23.21958],[88.92126,23.218],[88.92102,23.21601],[88.91761,23.21234],[88.91459,23.21347],[88.91667,23.22266],[88.91482,23.22377],[88.91497,23.22883],[88.91214,23.23122],[88.91223,23.2339],[88.90685,23.23597],[88.90523,23.23421],[88.90501,23.23594],[88.90237,23.23326],[88.90069,23.23375],[88.89975,23.23177],[88.89676,23.23287],[88.89496,23.23091],[88.89245,23.23233],[88.89089,23.23092],[88.88676,23.2313],[88.88617,23.22595],[88.88494,23.22945],[88.87553,23.23218],[88.8747,23.23416],[88.86216,23.23423],[88.8613,23.23194],[88.8592,23.23495],[88.85382,23.23633],[88.85374,23.23411],[88.8514,23.23394],[88.85105,23.23083],[88.8449,23.23051],[88.84452,23.23318],[88.84073,23.23564],[88.83651,23.24331],[88.82834,23.23505],[88.82382,23.23341],[88.82328,23.23827],[88.8288,23.24487],[88.81508,23.251],[88.81146,23.25609],[88.80914,23.25123],[88.81048,23.24822],[88.8082,23.24569],[88.80905,23.24491],[88.8059,23.23748],[88.80653,23.23146],[88.80924,23.22852],[88.80851,23.22485],[88.81144,23.22155],[88.80579,23.21878],[88.79576,23.22017],[88.7898,23.21834],[88.7878,23.22228],[88.78337,23.22275],[88.78333,23.22134],[88.77873,23.22069],[88.77731,23.22389],[88.77442,23.22441],[88.77329,23.23101],[88.77656,23.23081],[88.77554,23.23449],[88.77806,23.23609],[88.77613,23.23632],[88.77557,23.23854],[88.77334,23.23845],[88.77429,23.24055],[88.77133,23.24138],[88.76954,23.24484],[88.7597,23.24576],[88.75909,23.24181],[88.75188,23.24018],[88.74691,23.24418],[88.73484,23.2475],[88.72519,23.25332],[88.71889,23.2548],[88.72441,23.27162],[88.7232,23.27329],[88.71437,23.27531],[88.71138,23.27822],[88.7119,23.28537],[88.70895,23.28974],[88.70531,23.29176],[88.69764,23.29174],[88.69636,23.30229],[88.70873,23.31271],[88.71124,23.31274],[88.71264,23.31074],[88.70784,23.30874],[88.70644,23.30434],[88.71545,23.3056],[88.71995,23.30326],[88.719,23.2979],[88.72464,23.2983],[88.72742,23.30201],[88.72695,23.31416],[88.72476,23.31796],[88.73042,23.31958],[88.73164,23.3189],[88.7287,23.31264],[88.7318,23.30803],[88.73926,23.30489],[88.7453,23.30782],[88.74588,23.31454],[88.74967,23.32147],[88.74562,23.32432],[88.7437,23.32791],[88.73266,23.32807],[88.73526,23.33806],[88.73905,23.34345],[88.73694,23.34615],[88.73318,23.34704],[88.73203,23.35199],[88.73434,23.35328],[88.7415,23.34931],[88.74595,23.34901],[88.74651,23.35059],[88.74375,23.35451],[88.74638,23.35633],[88.74572,23.35906],[88.74771,23.362],[88.75816,23.35994],[88.76543,23.36788],[88.76369,23.37201],[88.75854,23.37411],[88.76048,23.37605],[88.75877,23.37931],[88.76087,23.38063],[88.76136,23.38443],[88.76247,23.38441],[88.76133,23.38628],[88.76289,23.38721],[88.7603,23.38673],[88.7596,23.38456],[88.75691,23.3862],[88.75639,23.38841],[88.75294,23.38912],[88.75439,23.39508],[88.74994,23.39673],[88.74926,23.40055],[88.75113,23.40276],[88.75408,23.40253],[88.76123,23.40843],[88.76039,23.41129],[88.75899,23.41054],[88.75799,23.4118],[88.75847,23.41312],[88.75456,23.41419],[88.75444,23.41638],[88.75806,23.42539],[88.76018,23.42417],[88.7613,23.42659],[88.75966,23.42905],[88.76227,23.43157],[88.76101,23.43305],[88.76436,23.44242],[88.76317,23.44276],[88.76428,23.44586],[88.76296,23.44585],[88.7648,23.44649],[88.76431,23.44821],[88.76872,23.44843],[88.77032,23.44625],[88.77203,23.4488],[88.77328,23.44832],[88.7718,23.44658],[88.77333,23.44405],[88.77831,23.44358],[88.77849,23.44192],[88.78223,23.44131],[88.77883,23.43863],[88.77912,23.43729],[88.77956,23.43838],[88.7828,23.43721],[88.78116,23.43825],[88.78231,23.44037],[88.78434,23.4384],[88.78319,23.44185],[88.78507,23.4448],[88.78733,23.44329],[88.78757,23.44464],[88.78933,23.44423],[88.78938,23.44266],[88.78676,23.44205],[88.78873,23.4414],[88.79041,23.44139],[88.78991,23.44392],[88.79254,23.44383],[88.79304,23.4422],[88.79532,23.44302],[88.79333,23.44414],[88.79447,23.44748],[88.79001,23.44912],[88.79196,23.45129],[88.79062,23.45348],[88.79283,23.45538],[88.79085,23.45555],[88.78953,23.4591],[88.79285,23.46105],[88.79049,23.46019],[88.79196,23.46346],[88.78919,23.46428],[88.7899,23.46574],[88.78835,23.46586],[88.78957,23.46668],[88.78798,23.46688],[88.78731,23.46908],[88.7909,23.4719],[88.78974,23.47293],[88.79412,23.48101],[88.79936,23.48218],[88.79952,23.48515],[88.80141,23.48581],[88.79456,23.48558],[88.7985,23.49133],[88.80051,23.49113],[88.79831,23.4927],[88.79795,23.4955],[88.80079,23.49712],[88.79275,23.50287],[88.78971,23.50189],[88.7873,23.4975],[88.7845,23.49717],[88.78354,23.5008],[88.78765,23.50599],[88.78595,23.50724],[88.78638,23.50494],[88.78391,23.50227],[88.77204,23.49779],[88.76825,23.49013],[88.7685,23.48828],[88.77501,23.48239],[88.77489,23.47981],[88.7679,23.48086],[88.76321,23.48879],[88.76068,23.48992],[88.75787,23.48886],[88.75683,23.48618],[88.76171,23.48025],[88.76091,23.47839],[88.75367,23.47896],[88.7463,23.48294],[88.74335,23.47914],[88.7435,23.48132],[88.74142,23.47968],[88.74439,23.48302],[88.74269,23.4866],[88.7371,23.49207],[88.72957,23.4964],[88.7312,23.49832],[88.7304,23.50373],[88.72513,23.51183],[88.72337,23.51295],[88.71879,23.51193],[88.71492,23.50853],[88.70619,23.51705],[88.69947,23.51553],[88.69575,23.51731],[88.69643,23.52567],[88.69172,23.52454],[88.69117,23.53126],[88.68423,23.52933],[88.68612,23.53291],[88.68618,23.5378],[88.67834,23.54583],[88.67371,23.54883],[88.66773,23.54581],[88.66334,23.54732],[88.65978,23.54937],[88.66019,23.55284],[88.65425,23.55615],[88.65358,23.55976],[88.65516,23.56302],[88.64831,23.58043],[88.6509,23.5836],[88.65056,23.58537],[88.64376,23.58933],[88.6457,23.58942],[88.6441,23.59154],[88.63876,23.59074],[88.63827,23.59758],[88.64247,23.60082],[88.64343,23.60693],[88.64603,23.60803],[88.64553,23.60928],[88.64129,23.60892],[88.64053,23.61109],[88.63823,23.61074],[88.6371,23.60674],[88.63317,23.60924],[88.62945,23.60909],[88.62772,23.60654],[88.62494,23.60688],[88.62157,23.60475],[88.62104,23.60263],[88.61817,23.60176],[88.61379,23.60336],[88.60735,23.60019],[88.60493,23.60027],[88.60518,23.60173],[88.60727,23.60296],[88.60838,23.60186],[88.60909,23.60439],[88.60151,23.60685],[88.60627,23.61036],[88.5979,23.60627],[88.59654,23.60447],[88.59719,23.60195],[88.5837,23.60398],[88.58007,23.60297],[88.58126,23.60972],[88.58483,23.61315],[88.58532,23.61654],[88.58821,23.61557],[88.59409,23.6176],[88.59241,23.62654],[88.59498,23.62773],[88.59281,23.62918],[88.59426,23.63157],[88.59264,23.63494],[88.59376,23.64081],[88.57556,23.63876],[88.57107,23.63601],[88.56217,23.63709],[88.56337,23.64546],[88.55821,23.64915],[88.56275,23.65764],[88.56626,23.65685],[88.56961,23.65999],[88.56943,23.66606],[88.57382,23.66694],[88.57221,23.67375],[88.57441,23.67523],[88.57408,23.68097],[88.5729,23.68508],[88.56753,23.68618],[88.56875,23.6893],[88.56787,23.70128],[88.56451,23.71133],[88.56473,23.71307],[88.56788,23.71482],[88.56904,23.72757],[88.57423,23.72888],[88.57369,23.73297],[88.5766,23.73297],[88.57528,23.73824],[88.57367,23.7381],[88.57429,23.73371],[88.57201,23.73375],[88.57213,23.73944],[88.57429,23.73968],[88.57241,23.74758],[88.57026,23.74643],[88.57008,23.74808],[88.57413,23.7496],[88.57601,23.75465],[88.57792,23.75756],[88.58041,23.75789],[88.58081,23.76054],[88.57957,23.7747],[88.5716,23.77508],[88.56503,23.77729],[88.5598,23.78089],[88.56074,23.78402],[88.55604,23.78421],[88.5593,23.78598],[88.57127,23.78303],[88.57813,23.78658],[88.5827,23.79114],[88.58096,23.79509],[88.58164,23.79728],[88.58736,23.79659],[88.59162,23.79783],[88.59295,23.79924],[88.59239,23.80448],[88.5962,23.80489],[88.59605,23.80639],[88.59361,23.80621],[88.59316,23.80796],[88.58761,23.81047],[88.58876,23.81278],[88.58616,23.81276],[88.58672,23.81109],[88.58475,23.81229],[88.58515,23.81365],[88.58952,23.81361],[88.59047,23.81085],[88.59406,23.81121],[88.59446,23.80885],[88.59507,23.81068],[88.59846,23.8108],[88.60213,23.81722],[88.59966,23.82183],[88.58839,23.82778],[88.58652,23.83118],[88.5872,23.84392],[88.58858,23.84829],[88.59152,23.85112],[88.59109,23.85302],[88.58427,23.85505],[88.57838,23.85067],[88.57644,23.85496],[88.57798,23.85771],[88.57564,23.86155],[88.58247,23.8625],[88.58269,23.86674],[88.58471,23.86618],[88.5843,23.86951],[88.58622,23.86932],[88.58749,23.87145],[88.59382,23.86916],[88.5991,23.86948],[88.60805,23.86235],[88.60995,23.86521],[88.60899,23.87275],[88.61644,23.87651],[88.62482,23.87511],[88.62552,23.87236],[88.62396,23.86788],[88.62641,23.86494],[88.63229,23.86649],[88.63773,23.87139],[88.64208,23.86808],[88.6458,23.8697],[88.65151,23.86657],[88.65399,23.86725],[88.65349,23.86547],[88.65461,23.86872],[88.66065,23.86862],[88.66099,23.8707],[88.66759,23.86944],[88.66342,23.878],[88.66428,23.88242],[88.6754,23.88387],[88.68294,23.88862],[88.68839,23.90148],[88.70042,23.89885],[88.70076,23.90108],[88.70434,23.89917],[88.70555,23.90235],[88.70329,23.8999],[88.7024,23.90351],[88.7012,23.90232],[88.70138,23.90461],[88.69996,23.905],[88.70386,23.90719],[88.70136,23.90645],[88.70176,23.90821],[88.69974,23.90803],[88.69933,23.91018],[88.70092,23.91229],[88.70473,23.91257],[88.7064,23.91627],[88.713,23.9125],[88.71507,23.91411],[88.71499,23.91603],[88.72295,23.91632],[88.72488,23.91283],[88.73059,23.91361],[88.72982,23.91091],[88.7334,23.91098],[88.733,23.9132],[88.73544,23.91462],[88.73289,23.92273],[88.73555,23.92292],[88.73418,23.92827],[88.73716,23.92905],[88.73493,23.93292],[88.73656,23.93352],[88.74027,23.93022],[88.74343,23.93017],[88.74002,23.93829],[88.74156,23.93891],[88.73877,23.94954],[88.74249,23.95103],[88.74025,23.95392],[88.73747,23.95336],[88.73358,23.95708],[88.73512,23.95875],[88.73249,23.96113],[88.73573,23.96343],[88.73705,23.97043],[88.73627,23.97907],[88.73824,23.98299],[88.74285,23.98495],[88.74967,23.98526],[88.76425,23.98165],[88.76895,23.9822],[88.7684,23.98606],[88.76242,23.99677],[88.76205,24.00428],[88.76019,24.00606],[88.75259,24.00664],[88.74638,24.00446],[88.74502,24.00553],[88.73645,23.99564],[88.7329,23.99482],[88.72905,23.99611],[88.73164,24.01189],[88.73468,24.01749],[88.74899,24.02216],[88.75749,24.0321],[88.74204,24.03285],[88.74185,24.03525],[88.72475,24.04161],[88.72464,24.0477],[88.74111,24.04855],[88.74163,24.05712],[88.73373,24.06617],[88.7281,24.06409],[88.72546,24.06544],[88.72345,24.06867],[88.72366,24.07302],[88.70401,24.08969],[88.70191,24.09418],[88.70027,24.0943],[88.70143,24.10395],[88.69997,24.10954],[88.69468,24.10956],[88.69319,24.11115],[88.69748,24.12053],[88.70102,24.12168],[88.707,24.11914],[88.74649,24.14706],[88.74338,24.15208],[88.74034,24.16331],[88.73346,24.169],[88.73141,24.17339],[88.73526,24.2115],[88.7345,24.22223],[88.74096,24.25392],[88.73777,24.26103],[88.73816,24.26551],[88.73544,24.2765],[88.72478,24.29779],[88.70623,24.3117],[88.69659,24.31535],[88.65899,24.31439],[88.65253,24.30503],[88.64984,24.30562],[88.64893,24.31092],[88.63429,24.30686],[88.63289,24.30799],[88.62849,24.30509],[88.62356,24.31568],[88.60669,24.31515],[88.6061,24.31026],[88.60332,24.3101],[88.58789,24.31435],[88.58719,24.32405],[88.56769,24.32665],[88.55513,24.29334],[88.52712,24.34438],[88.51861,24.34243],[88.5079,24.34248],[88.49601,24.35443],[88.48371,24.35702],[88.44643,24.37858],[88.43034,24.38373],[88.4249,24.38319],[88.41227,24.37681],[88.38934,24.37188],[88.38014,24.37425],[88.35707,24.37361],[88.33398,24.38139],[88.32659,24.38623],[88.31094,24.40145],[88.28493,24.42216],[88.2814,24.42971],[88.27192,24.44058],[88.26328,24.44597],[88.24895,24.44825],[88.22751,24.4555],[88.21049,24.45775],[88.1984,24.4625],[88.19133,24.46845],[88.18997,24.47417],[88.18497,24.48151],[88.17355,24.49305],[88.15827,24.5021],[88.14953,24.50379],[88.14076,24.51124],[88.09692,24.55645],[88.08947,24.56686],[88.08277,24.58169],[88.07113,24.59789],[88.06919,24.60328],[88.05234,24.62513],[88.04118,24.64331],[88.02794,24.64984],[88.02366,24.65539],[88.00876,24.66783],[88.0418,24.70479],[88.05197,24.71235],[88.05373,24.71087],[88.05597,24.71554],[88.06285,24.7216],[88.0725,24.74364],[88.06576,24.75071],[88.07455,24.76075],[88.06886,24.76375],[88.07111,24.76778],[88.06831,24.76915],[88.07245,24.77296],[88.07787,24.7691],[88.08902,24.7829],[88.09599,24.78022],[88.1061,24.77957],[88.1052,24.80034],[88.1111,24.81285],[88.12354,24.82311],[88.13078,24.80494],[88.13628,24.80528],[88.13384,24.81807],[88.1341,24.82987],[88.13191,24.83601],[88.13378,24.8362],[88.13466,24.83403],[88.14091,24.83438],[88.13963,24.83685],[88.14193,24.84047],[88.14129,24.84182],[88.14712,24.84363],[88.14488,24.84354],[88.14495,24.8511],[88.14686,24.85193],[88.14692,24.85014],[88.1504,24.84995],[88.1504,24.85335],[88.15094,24.84926],[88.15932,24.85016],[88.16044,24.84849],[88.16414,24.85026],[88.16225,24.85797],[88.16951,24.86083],[88.17502,24.86015],[88.17546,24.8618],[88.16589,24.86342],[88.15915,24.87206],[88.16374,24.87796],[88.16108,24.8804],[88.15543,24.8816],[88.15537,24.88364],[88.15268,24.88441],[88.15757,24.89226],[88.16073,24.889],[88.16565,24.88991],[88.16869,24.8882],[88.16751,24.88935],[88.16934,24.89245],[88.16528,24.89536],[88.16194,24.89307],[88.16203,24.89727],[88.15391,24.89959],[88.15546,24.90176],[88.15367,24.90634],[88.14897,24.91122],[88.14382,24.91422],[88.14037,24.91404],[88.13804,24.93616],[88.1455,24.93673],[88.14624,24.93418],[88.1498,24.93246],[88.15752,24.93352],[88.15969,24.938],[88.15839,24.94137],[88.16462,24.94138],[88.165,24.94621],[88.16884,24.9476],[88.17021,24.95036],[88.175,24.94873],[88.17366,24.9471],[88.17549,24.94624],[88.18358,24.95389],[88.18825,24.95157],[88.20173,24.9572],[88.22611,24.95971],[88.23029,24.95698],[88.23706,24.9458],[88.25256,24.93258],[88.26052,24.91918],[88.26422,24.90713],[88.26453,24.8993],[88.25827,24.87755],[88.26382,24.87679],[88.26721,24.87832],[88.26741,24.88731],[88.26898,24.89125],[88.27293,24.89637],[88.27608,24.8978],[88.27767,24.89692],[88.27573,24.8919],[88.2776,24.89168],[88.27813,24.88805],[88.28161,24.89079],[88.28319,24.88911],[88.28624,24.88917],[88.28569,24.88641],[88.29148,24.8894],[88.29685,24.88824],[88.29819,24.8851],[88.30201,24.88584],[88.30074,24.88219],[88.29798,24.88143],[88.30198,24.87473],[88.30192,24.87189],[88.30527,24.87248],[88.30749,24.87751],[88.31275,24.87989],[88.31225,24.88158],[88.31671,24.88065],[88.31737,24.88327],[88.32106,24.88347],[88.3221,24.87888],[88.32092,24.87603],[88.32648,24.87048],[88.33062,24.87014],[88.33311,24.87095],[88.33262,24.87243],[88.33526,24.87426],[88.33431,24.87767],[88.33899,24.87846],[88.34288,24.88437],[88.34264,24.88841],[88.34497,24.88907],[88.3446,24.89142],[88.34701,24.89243],[88.34388,24.89957],[88.33736,24.89967],[88.33278,24.89715],[88.33457,24.90056],[88.33405,24.90483],[88.32775,24.90432],[88.32428,24.91682],[88.32572,24.91889],[88.32976,24.91717],[88.33042,24.92005],[88.33659,24.91868],[88.33498,24.92082],[88.33453,24.92662],[88.33849,24.92679],[88.33718,24.93109],[88.34129,24.93524],[88.33991,24.9382],[88.3409,24.94063],[88.35011,24.94486],[88.35467,24.94203],[88.35799,24.9477],[88.36059,24.94902],[88.35898,24.95171],[88.36404,24.95329],[88.36626,24.95273],[88.36386,24.94874],[88.36659,24.94799],[88.36503,24.94701],[88.36668,24.94491],[88.3697,24.94555],[88.37123,24.94245],[88.37745,24.94299],[88.38161,24.93913],[88.38736,24.93952],[88.38725,24.94229],[88.3889,24.94367],[88.38954,24.94181],[88.39161,24.94296],[88.39417,24.94149],[88.39884,24.94532],[88.40186,24.9508],[88.40052,24.95489],[88.39739,24.95802],[88.39923,24.95909],[88.3934,24.96027],[88.3929,24.96485],[88.39631,24.96526],[88.39468,24.96617],[88.39525,24.96908],[88.39872,24.97304],[88.40381,24.97374],[88.40292,24.97106],[88.40571,24.97235],[88.40364,24.97464],[88.4051,24.97972],[88.4094,24.97744],[88.41095,24.97339],[88.41588,24.97315],[88.41743,24.97483],[88.41628,24.9802],[88.41232,24.9823],[88.41872,24.98318],[88.41661,24.98515],[88.41172,24.98548],[88.41461,24.99517],[88.41359,24.99688],[88.41197,24.99602],[88.41209,24.99881],[88.41796,24.99829],[88.42049,24.99969],[88.4193,25.0018],[88.42209,25.00692],[88.42549,25.0067],[88.42703,25.01229],[88.42557,25.01643],[88.42747,25.00765],[88.43052,25.00809],[88.43406,25.00545],[88.43654,25.00645],[88.43429,25.00692],[88.43688,25.01038],[88.43517,25.01327],[88.43774,25.01431],[88.43742,25.0115],[88.43943,25.01333],[88.44002,25.0115],[88.44221,25.01309],[88.43734,25.01579],[88.44117,25.01788],[88.43889,25.01801],[88.43832,25.02024],[88.44061,25.01879],[88.44151,25.02036],[88.43856,25.02231],[88.44499,25.02617],[88.44432,25.03003],[88.44566,25.03321],[88.45039,25.0338],[88.45266,25.03687],[88.44712,25.04171],[88.43784,25.04308],[88.43552,25.04868],[88.43497,25.05596],[88.43816,25.05729],[88.44234,25.06256],[88.44241,25.06606],[88.45108,25.07517],[88.45287,25.0793],[88.44814,25.08021],[88.44636,25.08296],[88.44724,25.08995],[88.4441,25.09971],[88.44781,25.10963],[88.44552,25.11334],[88.44207,25.11498],[88.4437,25.11836],[88.44229,25.11928],[88.44142,25.12751],[88.44746,25.12807],[88.44831,25.13087],[88.45083,25.13076],[88.45866,25.13557],[88.45692,25.13926],[88.45859,25.14026],[88.46,25.13878],[88.46089,25.14451],[88.45751,25.14785],[88.4614,25.14939],[88.46012,25.15203],[88.45704,25.15308],[88.45977,25.16075],[88.45639,25.1611],[88.45723,25.16462],[88.45277,25.16375],[88.4491,25.17157],[88.44205,25.17434],[88.44544,25.18015],[88.44185,25.18462],[88.44369,25.1973],[88.46343,25.19496],[88.46712,25.19724],[88.47177,25.19744],[88.46986,25.20096],[88.47448,25.20808],[88.47548,25.21338],[88.479,25.21311],[88.47995,25.21115],[88.49915,25.21039],[88.50005,25.20343],[88.51097,25.20235],[88.51227,25.20385],[88.52003,25.20054],[88.53778,25.19782],[88.53248,25.19377],[88.53434,25.19202],[88.53398,25.18752],[88.53733,25.1869],[88.53784,25.18906],[88.54078,25.18903],[88.54213,25.19396],[88.5461,25.19329],[88.54809,25.19522],[88.55761,25.19261],[88.55996,25.1909],[88.5598,25.18437],[88.55576,25.17897],[88.55934,25.17637],[88.56558,25.17509],[88.57083,25.17578],[88.5712,25.17734],[88.57507,25.17607],[88.57964,25.17682],[88.58148,25.18214],[88.58698,25.18224],[88.58936,25.18569],[88.59121,25.18509],[88.59196,25.18716],[88.5899,25.19258],[88.59271,25.19336],[88.59815,25.19043],[88.59908,25.19226],[88.6103,25.19802],[88.61272,25.20417],[88.61778,25.20349],[88.62091,25.20518],[88.63102,25.20171],[88.64289,25.20628],[88.6471,25.20426],[88.66423,25.20278],[88.66692,25.19875],[88.66913,25.19819],[88.67272,25.19833],[88.67582,25.20254],[88.67858,25.20309],[88.67931,25.2049],[88.67799,25.20555],[88.68008,25.2089],[88.68759,25.20915],[88.68866,25.20733],[88.71148,25.20766],[88.71274,25.2061],[88.71525,25.20638],[88.7175,25.20153],[88.7236,25.20224],[88.72451,25.19873],[88.72807,25.19839],[88.72948,25.20001],[88.73301,25.19876],[88.73279,25.19589],[88.73429,25.19477],[88.73348,25.19105],[88.73544,25.18914],[88.73455,25.18461],[88.74023,25.18504],[88.74256,25.18668],[88.74365,25.18341],[88.74901,25.18194],[88.75093,25.18282],[88.74858,25.17935],[88.7491,25.17685],[88.75242,25.17683],[88.75861,25.18662],[88.76703,25.18312],[88.7694,25.18985],[88.77283,25.18942],[88.77367,25.17936],[88.79889,25.17094],[88.80586,25.17045],[88.80595,25.17341],[88.81339,25.17427],[88.81485,25.18491],[88.81778,25.18625],[88.81791,25.1889],[88.82084,25.18851],[88.82097,25.19042],[88.82273,25.18953],[88.82283,25.19101],[88.82741,25.19216],[88.83038,25.20533],[88.83165,25.20655],[88.83675,25.20616],[88.83764,25.2109],[88.84236,25.21062],[88.8412,25.21359],[88.84376,25.21381],[88.84595,25.21089],[88.84775,25.21127],[88.84629,25.2091],[88.85018,25.21012],[88.84863,25.20635],[88.84992,25.20546],[88.84975,25.20174],[88.85161,25.20053],[88.85483,25.19982],[88.85851,25.20235],[88.86492,25.20059],[88.86438,25.18999],[88.87146,25.19133],[88.8716,25.19476],[88.87495,25.19622],[88.87255,25.19008],[88.87526,25.18572],[88.87526,25.17934],[88.88987,25.17836],[88.88942,25.18465],[88.89045,25.18471],[88.89905,25.18244],[88.89966,25.18035],[88.90365,25.17908],[88.91098,25.18031],[88.91267,25.17791],[88.91239,25.16796],[88.91839,25.16729],[88.92308,25.16491],[88.92414,25.17181],[88.92891,25.17439],[88.92781,25.17649],[88.93259,25.18088],[88.939,25.17919],[88.94119,25.17344],[88.94329,25.17349],[88.94588,25.17675],[88.94882,25.17658],[88.94965,25.18118],[88.94355,25.18303],[88.94782,25.18736],[88.94756,25.19445],[88.94242,25.19282],[88.93786,25.19351],[88.93391,25.19973],[88.93728,25.20284],[88.93644,25.21052],[88.93805,25.21174],[88.94132,25.21023],[88.94443,25.20611],[88.95073,25.20631],[88.95197,25.20768],[88.95492,25.20665],[88.95787,25.20911],[88.95941,25.20802],[88.96177,25.20907],[88.95804,25.21443],[88.95779,25.22312],[88.95195,25.23011],[88.95187,25.23327],[88.95436,25.23708],[88.95063,25.24394],[88.95517,25.25031],[88.95494,25.25333],[88.9563,25.25507],[88.95902,25.25436],[88.96978,25.25792],[88.97076,25.2604],[88.97465,25.26014],[88.97587,25.26405],[88.98227,25.26488],[88.98143,25.26713],[88.98391,25.26826],[88.98682,25.27445],[88.99238,25.27367],[88.99325,25.27007],[89.00533,25.26899],[89.00439,25.26506],[89.00763,25.26362],[89.00621,25.2761],[89.00944,25.29903],[89.0089,25.30307],[89.00584,25.30287],[89.00635,25.29989],[89.00338,25.29937],[89.00172,25.29609],[88.99258,25.2962],[88.98992,25.2993],[88.98519,25.2988],[88.98647,25.30189],[88.98349,25.30106],[88.98276,25.30315],[88.98531,25.30594],[88.97593,25.30619],[88.97468,25.3016],[88.97144,25.30094],[88.96101,25.3059],[88.96041,25.30141],[88.95764,25.30075],[88.95585,25.30268],[88.95286,25.302],[88.94996,25.30376],[88.93923,25.30066],[88.93416,25.30385],[88.92946,25.30408],[88.9278,25.3172],[88.928,25.3152],[88.92483,25.31492],[88.92401,25.31202],[88.91552,25.31203],[88.91558,25.31484],[88.91329,25.31546],[88.90974,25.32144],[88.91011,25.32343],[88.9061,25.32787],[88.90629,25.33769],[88.88765,25.3371],[88.8858,25.33298],[88.88854,25.32606],[88.88512,25.32562],[88.87644,25.3332],[88.8757,25.33728],[88.87369,25.33671],[88.87259,25.33948],[88.86648,25.34297],[88.86832,25.344],[88.86892,25.35221],[88.86375,25.35166],[88.86259,25.35507],[88.85571,25.3542],[88.85451,25.3632],[88.84569,25.36206],[88.84576,25.36356],[88.84018,25.36376],[88.84015,25.36808],[88.83784,25.36804],[88.83945,25.37375],[88.83848,25.3814],[88.84172,25.38161],[88.84048,25.38387],[88.8368,25.38435],[88.83696,25.39074],[88.83997,25.3913],[88.84128,25.39337],[88.84086,25.39763],[88.83802,25.39731],[88.83719,25.4018],[88.82375,25.40102],[88.82324,25.40952],[88.8123,25.41054],[88.81647,25.41367],[88.81833,25.41807],[88.82023,25.41794],[88.81964,25.41526],[88.83,25.41694],[88.83078,25.4232],[88.82856,25.42591],[88.82987,25.42759],[88.83445,25.42737],[88.83431,25.43166],[88.83247,25.43152],[88.83211,25.43692],[88.82688,25.43745],[88.82624,25.44448],[88.83183,25.44861],[88.82856,25.44876],[88.83791,25.45331],[88.83933,25.45834],[88.83518,25.46335],[88.83739,25.47281],[88.83359,25.47848],[88.82966,25.49025],[88.81366,25.48798],[88.80958,25.49884],[88.81048,25.5102],[88.80804,25.51313],[88.81053,25.52314],[88.80333,25.52432],[88.79238,25.5227],[88.79252,25.52088],[88.78533,25.51854],[88.78642,25.51641],[88.78244,25.51508],[88.77605,25.51642],[88.77622,25.51858],[88.76783,25.52181],[88.76746,25.52516],[88.75869,25.52524],[88.75821,25.5221],[88.76039,25.52205],[88.76106,25.5168],[88.75924,25.5112],[88.76588,25.50411],[88.76881,25.50338],[88.77081,25.50513],[88.76885,25.49854],[88.76008,25.49275],[88.7537,25.49411],[88.74811,25.4934],[88.74594,25.49181],[88.74503,25.48785],[88.74004,25.4893],[88.742,25.49479],[88.74392,25.49478],[88.74215,25.50499],[88.72649,25.50329],[88.72577,25.5019],[88.72155,25.50154],[88.72122,25.4997],[88.71441,25.4995],[88.71544,25.49852],[88.71335,25.49808],[88.71382,25.49557],[88.71188,25.49677],[88.71329,25.49998],[88.70752,25.49987],[88.70923,25.49672],[88.70805,25.49228],[88.71041,25.4806],[88.70645,25.47982],[88.70753,25.47695],[88.70043,25.47595],[88.6995,25.47119],[88.68854,25.47547],[88.663,25.47364],[88.66025,25.48178],[88.6526,25.48106],[88.64705,25.47782],[88.6427,25.49268],[88.64577,25.4941],[88.64843,25.49306],[88.64836,25.4964],[88.64081,25.49986],[88.62248,25.49696],[88.6197,25.50377],[88.61555,25.50532],[88.61303,25.50987],[88.60738,25.50859],[88.60995,25.51104],[88.60909,25.5163],[88.60243,25.51569],[88.59767,25.50655],[88.59551,25.50588],[88.59089,25.50936],[88.58835,25.50689],[88.58548,25.50973],[88.57286,25.5088],[88.56782,25.5112],[88.5683,25.51391],[88.56018,25.51241],[88.5531,25.51533],[88.55517,25.51962],[88.55493,25.52088],[88.55236,25.52079],[88.54801,25.51816],[88.54836,25.51375],[88.54467,25.51067],[88.54638,25.50834],[88.53995,25.5083],[88.53974,25.51056],[88.54125,25.51165],[88.53946,25.51572],[88.54041,25.51986],[88.53737,25.52102],[88.53803,25.52526],[88.54114,25.5261],[88.53948,25.52664],[88.54026,25.5328],[88.53943,25.53475],[88.5328,25.53222],[88.53309,25.5421],[88.5277,25.54333],[88.52349,25.53516],[88.51872,25.53828],[88.51969,25.54462],[88.5138,25.54752],[88.50909,25.54414],[88.50784,25.54773],[88.50033,25.55076],[88.49756,25.55557],[88.49899,25.55867],[88.49351,25.55885],[88.49371,25.56358],[88.49923,25.57403],[88.49992,25.58395],[88.49442,25.5845],[88.49332,25.58248],[88.49143,25.58295],[88.49131,25.58459],[88.48364,25.5865],[88.48263,25.58222],[88.48108,25.58201],[88.48078,25.58565],[88.47197,25.58524],[88.46956,25.58311],[88.46821,25.58364],[88.46977,25.58851],[88.46575,25.58691],[88.4671,25.58925],[88.46582,25.59183],[88.45947,25.59345],[88.45729,25.59599],[88.45765,25.59868],[88.44435,25.59692],[88.44517,25.60075],[88.44796,25.60158],[88.44962,25.60499],[88.44757,25.6056],[88.44701,25.61422],[88.4451,25.61378],[88.44516,25.61549],[88.4484,25.61855],[88.44873,25.62389],[88.45581,25.62858],[88.4546,25.62918],[88.45488,25.63504],[88.45653,25.64095],[88.45596,25.64442],[88.45399,25.64469],[88.45636,25.65292],[88.45391,25.65697],[88.45382,25.66494],[88.44403,25.66499],[88.43911,25.66778],[88.42459,25.66903],[88.42437,25.67039],[88.42038,25.6703],[88.41866,25.66767],[88.40169,25.67256],[88.40518,25.68422],[88.40183,25.68597],[88.39019,25.68401],[88.38935,25.68887],[88.39151,25.69352],[88.38523,25.69443],[88.38536,25.69565],[88.38328,25.69542],[88.38159,25.69742],[88.3732,25.69777],[88.37149,25.69654],[88.37056,25.70125],[88.37209,25.70777],[88.36979,25.70868],[88.36995,25.70996],[88.37319,25.70947],[88.37546,25.71481],[88.37425,25.71707],[88.37095,25.7157],[88.36576,25.71718],[88.3638,25.72013],[88.3568,25.7213],[88.35885,25.72807],[88.35621,25.72923],[88.35547,25.72718],[88.34762,25.73042],[88.34407,25.72944],[88.34095,25.73478],[88.33729,25.73543],[88.33759,25.73762],[88.32808,25.74006],[88.3258,25.73762],[88.32095,25.73747],[88.32027,25.7418],[88.31831,25.74271],[88.32076,25.74518],[88.31509,25.74655],[88.31717,25.75252],[88.29909,25.76087],[88.30021,25.7627],[88.29842,25.76323],[88.29974,25.7643],[88.2891,25.76782],[88.29084,25.77376],[88.28197,25.77559],[88.27885,25.77414],[88.27652,25.77488],[88.27719,25.77634],[88.27374,25.779],[88.26651,25.78245],[88.26982,25.78464],[88.27003,25.78862],[88.27187,25.79062],[88.26955,25.80818],[88.25966,25.81383],[88.25874,25.81123],[88.24905,25.81208],[88.24864,25.8134],[88.24692,25.80597],[88.24465,25.8072],[88.24456,25.80932],[88.23627,25.80944],[88.23569,25.80658],[88.23016,25.80261],[88.23352,25.80045],[88.23067,25.80045],[88.23226,25.79775],[88.23102,25.79675],[88.22819,25.79677],[88.22647,25.7995],[88.22281,25.79689],[88.21567,25.80143],[88.21538,25.79757],[88.21223,25.79791],[88.21099,25.79616],[88.21031,25.79321],[88.21191,25.79269],[88.21198,25.7941],[88.21268,25.79158],[88.21009,25.79116],[88.20951,25.78681],[88.19949,25.78996],[88.19904,25.79505],[88.19429,25.79805],[88.19481,25.79903],[88.19259,25.80025],[88.19349,25.80153],[88.18377,25.80169],[88.18103,25.79908],[88.1819,25.79616],[88.17991,25.79661],[88.18034,25.79326],[88.17611,25.79383],[88.17311,25.78661],[88.16467,25.78942],[88.15944,25.78761],[88.15907,25.78189],[88.15661,25.78162],[88.15646,25.77854],[88.15149,25.77555],[88.14711,25.77629],[88.14816,25.78141],[88.14524,25.77954],[88.14169,25.78015],[88.14478,25.7876],[88.14426,25.79364],[88.13454,25.79757],[88.12779,25.798],[88.12497,25.79622],[88.11448,25.79794],[88.11582,25.80475],[88.12011,25.81244],[88.11293,25.81561],[88.10702,25.81504],[88.11161,25.82165],[88.10891,25.823],[88.10739,25.82209],[88.10577,25.82625],[88.10117,25.82898],[88.10211,25.83162],[88.10692,25.83392],[88.10838,25.83831],[88.10734,25.84032],[88.10272,25.84089],[88.10143,25.8442],[88.10877,25.84654],[88.11387,25.8545],[88.10981,25.86036],[88.11035,25.86852],[88.10677,25.86897],[88.10503,25.86319],[88.10246,25.86181],[88.10102,25.86317],[88.10203,25.87157],[88.09972,25.87312],[88.09664,25.87117],[88.09417,25.87337],[88.09564,25.87684],[88.09892,25.87853],[88.0969,25.88024],[88.09828,25.8832],[88.10115,25.8847],[88.10302,25.88925],[88.09925,25.89399],[88.09028,25.89652],[88.09072,25.89824],[88.09381,25.899],[88.09037,25.90368],[88.09117,25.90648],[88.09437,25.90848],[88.09182,25.91411],[88.08649,25.91371],[88.08628,25.91747],[88.09468,25.93142],[88.10149,25.93494],[88.10497,25.9331],[88.10547,25.93428],[88.11146,25.93325],[88.11259,25.94347],[88.11792,25.94378],[88.12237,25.94837],[88.11789,25.95591],[88.11403,25.9583],[88.11518,25.96278],[88.11865,25.96259],[88.12427,25.96615],[88.12463,25.96792],[88.1207,25.96884],[88.11929,25.97156],[88.12144,25.97459],[88.12789,25.97661],[88.12903,25.98026],[88.12655,25.98092],[88.1319,25.9898],[88.12901,25.99281],[88.12969,25.99694],[88.13154,25.99691],[88.13252,25.99875],[88.1348,25.99803],[88.13572,26.00059],[88.14021,25.99695],[88.1437,26.00036],[88.14407,26.00756],[88.13971,26.01292],[88.1439,26.01484],[88.14719,26.01364],[88.15,26.01824],[88.15501,26.02004],[88.16094,26.01812],[88.16686,26.02172],[88.17832,26.02144],[88.18321,26.02678],[88.18066,26.03078],[88.17181,26.03278],[88.1712,26.03648],[88.17545,26.03971],[88.16954,26.0452],[88.17107,26.04855],[88.17359,26.04989],[88.17932,26.0465],[88.17606,26.05805],[88.17724,26.05977],[88.18023,26.05824],[88.18567,26.06366],[88.18149,26.06753],[88.18335,26.07289],[88.17355,26.07559],[88.16888,26.08058],[88.1686,26.08355],[88.16275,26.07689],[88.15838,26.07983],[88.1597,26.08363],[88.16487,26.08588],[88.16564,26.08814],[88.16492,26.08961],[88.16127,26.08871],[88.16159,26.09061],[88.15845,26.0953],[88.15934,26.09812],[88.16335,26.10042],[88.16334,26.10728],[88.17201,26.11029],[88.17344,26.11273],[88.1734,26.11899],[88.17839,26.12357],[88.17786,26.12577],[88.1739,26.12826],[88.18004,26.13917],[88.17675,26.14246],[88.17728,26.14806],[88.18176,26.14973],[88.18401,26.15345],[88.19041,26.15529],[88.19508,26.15222],[88.19592,26.15465],[88.1923,26.15504],[88.19154,26.15703],[88.19626,26.15968],[88.19679,26.16349],[88.19929,26.16308],[88.20106,26.15933],[88.20566,26.15924],[88.21622,26.1633],[88.21658,26.16517],[88.21174,26.16736],[88.21443,26.17],[88.21711,26.17027],[88.21832,26.16633],[88.22298,26.16618],[88.22423,26.1693],[88.22694,26.16839],[88.22783,26.16964],[88.22564,26.17128],[88.22619,26.17302],[88.22804,26.17363],[88.22992,26.17184],[88.23339,26.17363],[88.23363,26.17637],[88.23733,26.17731],[88.23329,26.1812],[88.23349,26.18454],[88.23648,26.18267],[88.2416,26.18628],[88.24183,26.18908],[88.24486,26.18946],[88.24348,26.18747],[88.24519,26.18703],[88.24554,26.18992],[88.2495,26.18991],[88.2509,26.18575],[88.25337,26.1851],[88.25354,26.18844],[88.25689,26.18885],[88.25942,26.18649],[88.26372,26.1901],[88.26442,26.18817],[88.26934,26.18648],[88.27132,26.18834],[88.27632,26.18857],[88.2803,26.19511],[88.28421,26.19484],[88.28291,26.19692],[88.28581,26.20015],[88.28764,26.19738],[88.29243,26.20218],[88.2935,26.20132],[88.29224,26.19835],[88.2964,26.20002],[88.29883,26.19727],[88.30088,26.19861],[88.3013,26.20198],[88.30464,26.19908],[88.30847,26.20435],[88.31378,26.20305],[88.31707,26.20487],[88.31984,26.20285],[88.32574,26.20601],[88.32311,26.21022],[88.32659,26.21065],[88.32841,26.21342],[88.33132,26.21288],[88.3312,26.21705],[88.33354,26.21592],[88.33962,26.21749],[88.34784,26.22175],[88.35051,26.22042],[88.3516,26.22268],[88.34993,26.22647],[88.35114,26.22538],[88.35334,26.22663],[88.35101,26.22826],[88.35125,26.23049],[88.35606,26.23272],[88.35657,26.23589],[88.35494,26.23596],[88.35442,26.23831],[88.35856,26.23986],[88.35966,26.24236],[88.35495,26.24532],[88.35122,26.24567],[88.35012,26.24815],[88.35393,26.24677],[88.3538,26.24805],[88.35146,26.25034],[88.34858,26.25028],[88.34965,26.25231],[88.34832,26.25481],[88.35008,26.25644],[88.35141,26.26339],[88.3499,26.26527],[88.352,26.26724],[88.34806,26.26884],[88.35027,26.2719],[88.3488,26.27387],[88.35186,26.27583],[88.35037,26.27547],[88.34918,26.27772],[88.3506,26.27934],[88.34967,26.28225],[88.35268,26.28207],[88.35377,26.28718],[88.35508,26.2855],[88.35899,26.28813],[88.36033,26.29139],[88.36395,26.29423],[88.36313,26.29811],[88.36532,26.3002],[88.36848,26.29957],[88.37022,26.30484],[88.37321,26.3056],[88.37316,26.30283],[88.37496,26.30441],[88.37357,26.30636],[88.37843,26.30538],[88.37952,26.30955],[88.38432,26.30925],[88.38264,26.31016],[88.3836,26.30942],[88.38328,26.31172],[88.38469,26.31104],[88.38466,26.31326],[88.38746,26.31283],[88.38925,26.31492],[88.39026,26.3128],[88.39119,26.31439],[88.39756,26.31542],[88.39838,26.31704],[88.40003,26.31616],[88.39988,26.31724],[88.41298,26.31618],[88.41494,26.31482],[88.41655,26.32165],[88.41565,26.32432],[88.40702,26.32365],[88.40795,26.32766],[88.40378,26.32809],[88.40435,26.32983],[88.40673,26.33023],[88.40897,26.33357],[88.41091,26.33337],[88.41286,26.33748],[88.42459,26.33514],[88.42466,26.3363],[88.43558,26.33577],[88.4364,26.34012],[88.43888,26.34064],[88.43688,26.34159],[88.43887,26.34424],[88.43809,26.34684],[88.44056,26.34841],[88.43921,26.35012],[88.44266,26.35284],[88.44239,26.35571],[88.44414,26.35703],[88.44609,26.3644],[88.45101,26.36608],[88.45171,26.37037],[88.45635,26.37188],[88.45772,26.37666],[88.45907,26.37698],[88.45918,26.37403],[88.45753,26.37137],[88.45995,26.37106],[88.46023,26.3689],[88.45739,26.36654],[88.45733,26.36445],[88.45946,26.36396],[88.45862,26.36211],[88.46244,26.36076],[88.4632,26.35727],[88.46835,26.35863],[88.47181,26.35646],[88.4774,26.35773],[88.47735,26.3539],[88.48023,26.35321],[88.48032,26.35065],[88.48236,26.3497],[88.48847,26.34883],[88.48837,26.35088],[88.49191,26.35141],[88.4884,26.36028],[88.4969,26.35896],[88.50371,26.36025],[88.50572,26.36357],[88.50775,26.36253],[88.50706,26.35644],[88.50548,26.35614],[88.50576,26.35069],[88.50366,26.35033],[88.505,26.34855],[88.50719,26.34875],[88.50756,26.35108],[88.51002,26.3504],[88.50998,26.35275],[88.51855,26.3516],[88.51778,26.35656],[88.52324,26.36054],[88.5213,26.36319],[88.51653,26.36245],[88.51537,26.36533],[88.52216,26.36702],[88.52209,26.37021],[88.52479,26.3748],[88.52322,26.37542],[88.51719,26.37057],[88.51283,26.37777],[88.51575,26.38553],[88.51921,26.39],[88.51678,26.3902],[88.5145,26.38735],[88.51291,26.38763],[88.50505,26.39871],[88.50581,26.40032],[88.51006,26.40162],[88.51057,26.40433],[88.50896,26.40721],[88.5067,26.4069],[88.5028,26.40304],[88.50023,26.40792],[88.49559,26.40954],[88.50275,26.41748],[88.49607,26.41702],[88.49401,26.41874],[88.49412,26.42232],[88.49838,26.42519],[88.49657,26.42765],[88.49082,26.42851],[88.48966,26.43001],[88.48978,26.43187],[88.49559,26.43321],[88.49622,26.43706],[88.49121,26.4402],[88.49083,26.44397],[88.48656,26.44544],[88.48653,26.45057],[88.48076,26.45057],[88.47893,26.4523],[88.47989,26.45493],[88.48429,26.45662],[88.48525,26.46026],[88.45886,26.46662],[88.43741,26.46591],[88.43263,26.469],[88.43362,26.47241],[88.43055,26.47035],[88.42773,26.47301],[88.42284,26.47268],[88.42299,26.46984],[88.42132,26.46801],[88.42254,26.46599],[88.41976,26.46575],[88.41869,26.46927],[88.41536,26.46922],[88.41457,26.47223],[88.4102,26.47494],[88.40865,26.4795],[88.40502,26.48062],[88.40501,26.48581],[88.40247,26.48589],[88.3999,26.48191],[88.39524,26.48159],[88.38855,26.4783],[88.38626,26.48285],[88.37566,26.48397],[88.37449,26.48845],[88.37124,26.48821],[88.36337,26.48689],[88.36053,26.48456],[88.36054,26.48062],[88.362,26.48044],[88.36272,26.47785],[88.36216,26.47357],[88.36607,26.47078],[88.3604,26.46447],[88.36098,26.46112],[88.35902,26.45681],[88.36155,26.45499],[88.35693,26.45228],[88.35482,26.44702],[88.35217,26.44808],[88.35338,26.45115],[88.3483,26.45994],[88.34857,26.46549],[88.34652,26.4659],[88.34705,26.46825],[88.34049,26.46894],[88.34086,26.47817],[88.33508,26.47799],[88.33378,26.47868],[88.33449,26.4815],[88.33187,26.48181],[88.33213,26.49315],[88.33774,26.50051],[88.34469,26.50409],[88.34948,26.50911],[88.35307,26.51592],[88.35191,26.5232],[88.35939,26.53007],[88.35715,26.54177],[88.36532,26.55197],[88.36553,26.55583],[88.37084,26.56029],[88.37163,26.56875],[88.37005,26.57508],[88.3741,26.57925],[88.37604,26.5947],[88.37937,26.59801],[88.38422,26.59868],[88.39013,26.60299],[88.39842,26.60351],[88.39723,26.60671],[88.38788,26.60691],[88.38696,26.61198],[88.38948,26.61478],[88.39643,26.61733],[88.39822,26.62583],[88.40787,26.63066],[88.40926,26.63485],[88.41519,26.63317],[88.41624,26.62842],[88.41445,26.62262],[88.41801,26.62156],[88.41681,26.61321],[88.41998,26.59865],[88.41924,26.59049],[88.42259,26.58277],[88.42117,26.57102],[88.43139,26.54978],[88.43597,26.54503],[88.44308,26.54395],[88.44336,26.53929],[88.44827,26.53529],[88.45648,26.53689],[88.45518,26.53898],[88.45843,26.54023],[88.45745,26.54175],[88.45889,26.54712],[88.46184,26.54687],[88.46256,26.54376],[88.47591,26.54447],[88.47808,26.54193],[88.48501,26.54069],[88.48235,26.53617],[88.48202,26.53134],[88.48297,26.53026],[88.48965,26.53196],[88.4895,26.52704],[88.48534,26.52609],[88.49005,26.52507],[88.48872,26.51791],[88.49061,26.51485],[88.48975,26.51036],[88.49936,26.51227],[88.50007,26.51565],[88.50721,26.51648],[88.51068,26.51074],[88.52139,26.51051],[88.52293,26.5054],[88.51867,26.50127],[88.51997,26.50058],[88.51953,26.49825],[88.52196,26.4978],[88.5245,26.49278],[88.52461,26.4893],[88.52285,26.48929],[88.52287,26.48671],[88.52795,26.48648],[88.52415,26.48564],[88.52768,26.48447],[88.52648,26.48138],[88.55676,26.4848],[88.55461,26.48112],[88.5553,26.47882],[88.55273,26.47724],[88.55262,26.47532],[88.5568,26.47525],[88.55628,26.47281],[88.55398,26.4729],[88.55429,26.47187],[88.56014,26.47304],[88.55764,26.47069],[88.55806,26.46689],[88.5624,26.46713],[88.55949,26.46184],[88.56293,26.45965],[88.55804,26.45905],[88.56093,26.45646],[88.56266,26.45781],[88.57879,26.45666],[88.58458,26.45401],[88.58435,26.45028],[88.58952,26.45135],[88.59184,26.45073],[88.59034,26.44964],[88.59295,26.44981],[88.59313,26.45221],[88.59512,26.45306],[88.59626,26.46942],[88.59475,26.47064],[88.62289,26.47108],[88.62439,26.45394],[88.62684,26.45085],[88.6283,26.44104],[88.62497,26.44041],[88.62504,26.43872],[88.62318,26.43832],[88.62377,26.43479],[88.62777,26.43347],[88.63045,26.43467],[88.63082,26.4314],[88.63515,26.43198],[88.63827,26.42948],[88.6498,26.42959],[88.6517,26.42534],[88.65106,26.42166],[88.64446,26.41875],[88.64657,26.4186],[88.64684,26.41695],[88.65037,26.41744],[88.65057,26.41552],[88.66045,26.41632],[88.66282,26.40986],[88.66772,26.40955],[88.66781,26.40719],[88.67861,26.40802],[88.67904,26.40437],[88.68051,26.40655],[88.68675,26.40603],[88.68566,26.40543],[88.68743,26.40099],[88.68163,26.40206],[88.67917,26.40046],[88.67954,26.40188],[88.6738,26.40089],[88.67353,26.402],[88.66997,26.39761],[88.67198,26.39745],[88.67233,26.3957],[88.67812,26.39558],[88.67815,26.39342],[88.68576,26.39391],[88.68625,26.39563],[88.68917,26.39568],[88.68565,26.39107],[88.68632,26.39019],[88.68778,26.39155],[88.68743,26.38683],[88.6924,26.38641],[88.6988,26.3901],[88.70227,26.38844],[88.70216,26.38575],[88.68493,26.38334],[88.68212,26.3822],[88.68266,26.38048],[88.68101,26.37941],[88.6813,26.3779],[88.68661,26.37881],[88.68534,26.37464],[88.68769,26.37155],[88.68892,26.36495],[88.69065,26.36331],[88.69496,26.36358],[88.69626,26.36195],[88.69147,26.36118],[88.69384,26.35641],[88.69858,26.35673],[88.69786,26.34954],[88.69667,26.34689],[88.6941,26.34673],[88.6951,26.34413],[88.69803,26.34368],[88.69859,26.34112],[88.70402,26.34187],[88.70421,26.33984],[88.70164,26.33878],[88.70323,26.33764],[88.70276,26.33439],[88.70469,26.33248],[88.71015,26.33468],[88.71048,26.3372],[88.71272,26.33842],[88.71177,26.34043],[88.71285,26.34365],[88.72323,26.34314],[88.72432,26.3411],[88.72615,26.34127],[88.72639,26.34411],[88.72935,26.34463],[88.72963,26.34801],[88.73592,26.34797],[88.7352,26.35001],[88.73297,26.35034],[88.73326,26.35383],[88.73759,26.35327],[88.73602,26.35198],[88.73636,26.34944],[88.74397,26.34872],[88.74587,26.34707],[88.74459,26.34342],[88.74429,26.34461],[88.74259,26.3441],[88.74434,26.34081],[88.74331,26.33732],[88.73701,26.33489],[88.73387,26.32866],[88.74112,26.32966],[88.74573,26.33243],[88.74874,26.33193],[88.74651,26.32239],[88.73065,26.32362],[88.73124,26.31835],[88.72632,26.31751],[88.72585,26.31538],[88.72078,26.31432],[88.71882,26.31211],[88.71912,26.31568],[88.71504,26.31797],[88.70635,26.31469],[88.69899,26.31442],[88.69727,26.31212],[88.69647,26.31431],[88.69327,26.31399],[88.69092,26.3184],[88.69262,26.32144],[88.68987,26.32324],[88.69228,26.3256],[88.69679,26.32575],[88.69573,26.32873],[88.691,26.32888],[88.68974,26.323],[88.67988,26.32227],[88.67827,26.32015],[88.67513,26.32007],[88.6753,26.31137],[88.67907,26.31466],[88.68081,26.31154],[88.68256,26.31251],[88.68309,26.30845],[88.67798,26.30695],[88.6802,26.30144],[88.67867,26.29883],[88.66804,26.29717],[88.66967,26.28955],[88.66618,26.28925],[88.66565,26.28486],[88.66964,26.28076],[88.66738,26.27808],[88.66692,26.27324],[88.66763,26.27195],[88.67211,26.27226],[88.67225,26.26849],[88.67187,26.26684],[88.6675,26.2665],[88.66623,26.26266],[88.67679,26.26466],[88.67815,26.26414],[88.67948,26.2589],[88.68324,26.26082],[88.68633,26.26305],[88.68462,26.26567],[88.68602,26.26757],[88.68745,26.26618],[88.69008,26.26665],[88.69011,26.26853],[88.69259,26.26954],[88.6919,26.27252],[88.68988,26.27383],[88.68745,26.27266],[88.68619,26.27367],[88.68607,26.27675],[88.68918,26.27905],[88.6916,26.27636],[88.69619,26.27728],[88.69584,26.27946],[88.69855,26.28041],[88.69802,26.28207],[88.69974,26.28417],[88.7016,26.28322],[88.70138,26.28454],[88.7036,26.28425],[88.70383,26.28553],[88.70656,26.28482],[88.7114,26.28638],[88.71403,26.28571],[88.71325,26.28159],[88.71629,26.28224],[88.71711,26.28108],[88.72115,26.28328],[88.72719,26.29298],[88.73054,26.29127],[88.72969,26.29461],[88.7379,26.29243],[88.74245,26.29522],[88.74084,26.2956],[88.7426,26.29925],[88.74667,26.29966],[88.74732,26.30105],[88.74902,26.30052],[88.74752,26.2955],[88.75858,26.29476],[88.75976,26.30026],[88.76411,26.29889],[88.7719,26.30056],[88.77624,26.30362],[88.78281,26.30316],[88.79356,26.30997],[88.80193,26.30621],[88.81315,26.29711],[88.81911,26.29449],[88.81328,26.28845],[88.81133,26.27734],[88.81002,26.27681],[88.81044,26.27407],[88.81384,26.27337],[88.81499,26.26899],[88.81468,26.26514],[88.81217,26.26477],[88.81376,26.2587],[88.81294,26.25599],[88.81398,26.25425],[88.81909,26.25524],[88.81957,26.25379],[88.82324,26.25334],[88.82348,26.2485],[88.82916,26.24971],[88.82973,26.24639],[88.82673,26.2437],[88.82767,26.23964],[88.83106,26.24018],[88.83196,26.23824],[88.83809,26.23815],[88.83828,26.23225],[88.84173,26.23072],[88.84393,26.23057],[88.84379,26.23253],[88.8519,26.2351],[88.85982,26.23142],[88.87167,26.23404],[88.87289,26.2329],[88.87786,26.23338],[88.87646,26.23719],[88.87769,26.24219],[88.87222,26.23991],[88.87163,26.24495],[88.86815,26.24565],[88.86734,26.24973],[88.86147,26.252],[88.86133,26.26368],[88.86459,26.26873],[88.86139,26.27266],[88.86623,26.2749],[88.86641,26.2794],[88.87043,26.28385],[88.87593,26.28658],[88.89827,26.28864],[88.90903,26.28725],[88.91814,26.28793],[88.9199,26.28447],[88.92628,26.28378],[88.93113,26.27744],[88.93516,26.26701],[88.94024,26.26352],[88.94428,26.25447],[88.95078,26.24771],[88.95314,26.24197],[88.95704,26.24258],[88.95732,26.2403],[88.96539,26.23871],[88.97867,26.24266],[88.97917,26.24479],[88.99303,26.24546],[89.0159,26.24463],[89.0182,26.24367],[89.01826,26.24194],[89.02148,26.245],[89.02734,26.24407],[89.02755,26.24764],[89.03303,26.2467],[89.03536,26.24253],[89.03673,26.24238],[89.03737,26.24572],[89.04602,26.24066],[89.05069,26.24165],[89.04999,26.24537],[89.04798,26.24568],[89.04887,26.2517],[89.05123,26.25268],[89.05131,26.2553],[89.05467,26.25738],[89.05913,26.25397],[89.06264,26.25375],[89.06294,26.25577],[89.06018,26.25678],[89.06065,26.25891],[89.06331,26.25988],[89.06115,26.26397],[89.06111,26.2691],[89.06334,26.27037],[89.0592,26.27624],[89.05389,26.27714],[89.06248,26.27866],[89.06296,26.28169],[89.05751,26.28558],[89.06122,26.29036],[89.05947,26.29343],[89.05648,26.29388],[89.0531,26.29199],[89.05233,26.29602],[89.04587,26.29535],[89.04535,26.29103],[89.04213,26.29003],[89.04632,26.28945],[89.04481,26.28358],[89.04736,26.2826],[89.04778,26.28833],[89.05055,26.28832],[89.04833,26.2858],[89.04818,26.27977],[89.04646,26.28102],[89.04319,26.27996],[89.04464,26.27933],[89.04512,26.27514],[89.03988,26.27652],[89.0402,26.27809],[89.03803,26.27747],[89.04034,26.28074],[89.03741,26.28241],[89.04069,26.28394],[89.04077,26.28577],[89.03855,26.28547],[89.03872,26.28372],[89.03712,26.28312],[89.03146,26.28552],[89.02752,26.28247],[89.02711,26.28562],[89.02482,26.28624],[89.02473,26.28807],[89.02137,26.28755],[89.02008,26.28909],[89.02157,26.29286],[89.02333,26.2933],[89.02123,26.29796],[89.02661,26.3054],[89.0263,26.30692],[89.02178,26.30742],[89.02159,26.30902],[89.01875,26.30711],[89.0201,26.305],[89.01601,26.30346],[89.01636,26.3014],[89.01431,26.30022],[89.01959,26.29495],[89.01841,26.28981],[89.01235,26.29248],[89.01305,26.29801],[89.01055,26.29869],[89.01182,26.30012],[89.00845,26.30161],[89.00685,26.30439],[89.00659,26.30271],[89.00438,26.30366],[89.00495,26.2978],[89.00122,26.29514],[89.00003,26.29068],[88.99574,26.29024],[88.99537,26.29397],[88.99759,26.29963],[88.99606,26.29694],[88.99537,26.29997],[88.9949,26.29667],[88.99263,26.30062],[88.98494,26.30054],[88.98266,26.3095],[88.98587,26.31459],[88.98414,26.31632],[88.98462,26.31796],[88.99493,26.31323],[88.99712,26.31374],[88.99714,26.31638],[88.99428,26.31714],[88.99408,26.31988],[88.99196,26.32038],[88.99152,26.32232],[88.99489,26.32214],[88.99562,26.32072],[88.99801,26.3224],[89.00097,26.32975],[88.99864,26.33182],[88.99202,26.3327],[88.99267,26.33481],[88.99061,26.33535],[88.98916,26.33238],[88.98555,26.33276],[88.98181,26.341],[88.98665,26.34138],[88.98599,26.33982],[88.98876,26.33912],[88.98727,26.33798],[88.99,26.33848],[88.9871,26.34264],[88.98612,26.34708],[88.98773,26.34715],[88.98722,26.34832],[88.98513,26.34991],[88.98536,26.34841],[88.98277,26.34902],[88.98215,26.34748],[88.97782,26.34655],[88.97781,26.34805],[88.97268,26.35169],[88.97053,26.34964],[88.96676,26.35182],[88.96519,26.34869],[88.96141,26.3523],[88.95915,26.34794],[88.96263,26.34545],[88.96172,26.34083],[88.96353,26.33829],[88.96292,26.33627],[88.95948,26.33587],[88.96037,26.33005],[88.95603,26.32999],[88.95469,26.33318],[88.95411,26.3319],[88.95391,26.33304],[88.9523,26.33234],[88.95306,26.34209],[88.95176,26.34259],[88.95603,26.34122],[88.95905,26.34353],[88.95297,26.34621],[88.95241,26.34375],[88.94615,26.34388],[88.94629,26.34583],[88.94987,26.34851],[88.94875,26.35239],[88.95355,26.35615],[88.95814,26.35742],[88.95843,26.36168],[88.95475,26.36179],[88.95336,26.36595],[88.94985,26.36593],[88.94677,26.35569],[88.94145,26.35777],[88.93683,26.35672],[88.93562,26.35865],[88.93094,26.35959],[88.92791,26.36266],[88.92897,26.36372],[88.92608,26.36474],[88.92239,26.36321],[88.91973,26.35931],[88.91865,26.36022],[88.92168,26.36273],[88.92008,26.36623],[88.9143,26.36522],[88.91193,26.36611],[88.91284,26.36842],[88.9114,26.36766],[88.91011,26.3698],[88.91327,26.37422],[88.92008,26.37457],[88.91955,26.37685],[88.9214,26.37718],[88.92061,26.37853],[88.91432,26.3778],[88.91233,26.38028],[88.90909,26.38003],[88.90974,26.38221],[88.91651,26.38483],[88.91643,26.38919],[88.91845,26.39012],[88.91894,26.39426],[88.91822,26.40038],[88.91737,26.4032],[88.91326,26.40323],[88.91257,26.40136],[88.90995,26.40078],[88.90872,26.4037],[88.90616,26.40351],[88.90479,26.40846],[88.90679,26.40665],[88.91281,26.40861],[88.92656,26.40679],[88.93131,26.41419],[88.92907,26.41666],[88.92547,26.4164],[88.92303,26.42336],[88.93129,26.42455],[88.9328,26.42683],[88.92594,26.42762],[88.92619,26.43205],[88.92838,26.43292],[88.93476,26.43145],[88.93809,26.4281],[88.93805,26.4256],[88.94477,26.42559],[88.94282,26.42819],[88.94576,26.42936],[88.94465,26.43185],[88.9512,26.43361],[88.95132,26.435],[88.94691,26.43932],[88.94902,26.4399],[88.94927,26.4429],[88.94676,26.44339],[88.94617,26.44794],[88.95188,26.44842],[88.95128,26.45206],[88.96057,26.44827],[88.96536,26.45149],[88.95978,26.45229],[88.95732,26.45476],[88.95724,26.459],[88.95584,26.46021],[88.96514,26.45781],[88.96631,26.45126],[88.97449,26.45015],[88.97642,26.4462],[88.97731,26.44912],[88.97944,26.44963],[88.97854,26.44616],[88.98327,26.44651],[88.98089,26.44313],[88.98095,26.44175],[88.98424,26.44184],[88.98289,26.43799],[88.97878,26.43599],[88.98028,26.43157],[88.98306,26.43088],[88.98075,26.42527],[88.98364,26.42439],[88.983,26.42104],[88.99277,26.41892],[88.99404,26.41282],[88.99861,26.41388],[88.9953,26.41666],[88.99604,26.4197],[88.99301,26.42031],[88.99374,26.42299],[88.9959,26.42258],[88.99661,26.4205],[89.00548,26.42157],[89.00485,26.41776],[89.00723,26.41273],[89.01794,26.41512],[89.02246,26.41364],[89.02316,26.40833],[89.01895,26.40606],[89.01941,26.40413],[89.02271,26.40392],[89.02203,26.40581],[89.02446,26.40776],[89.02993,26.40707],[89.0294,26.4049],[89.0314,26.40387],[89.03179,26.39955],[89.03438,26.39946],[89.03356,26.39544],[89.03746,26.39517],[89.03784,26.39967],[89.04059,26.40024],[89.05419,26.39862],[89.05573,26.39581],[89.05814,26.39529],[89.05901,26.39882],[89.06149,26.39818],[89.06322,26.40075],[89.06186,26.39782],[89.06337,26.39669],[89.06446,26.39663],[89.06445,26.39895],[89.06728,26.4],[89.06817,26.39768],[89.07123,26.39839],[89.07483,26.39596],[89.07395,26.39111],[89.07534,26.39597],[89.08446,26.39828],[89.08782,26.39656],[89.08555,26.39371],[89.08079,26.39291],[89.07997,26.3915],[89.08134,26.39017],[89.08601,26.39234],[89.09048,26.39176],[89.09199,26.39369],[89.09625,26.39115],[89.09155,26.38898],[89.09005,26.38571],[89.09168,26.3853],[89.09189,26.38274],[89.08909,26.38091],[89.08898,26.37575],[89.09066,26.37469],[89.08846,26.36569],[89.08003,26.36666],[89.07971,26.36282],[89.08294,26.3621],[89.08418,26.36406],[89.08581,26.36386],[89.08581,26.36272],[89.0897,26.36196],[89.08986,26.36049],[89.09832,26.35893],[89.09586,26.35416],[89.09389,26.35459],[89.09333,26.35291],[89.09593,26.35374],[89.09603,26.35016],[89.09795,26.34979],[89.09884,26.34208],[89.09779,26.33977],[89.10028,26.33895],[89.10134,26.33653],[89.09653,26.33394],[89.09535,26.32977],[89.09094,26.32949],[89.09164,26.32799],[89.08801,26.32331],[89.08429,26.32405],[89.08349,26.32236],[89.08579,26.32101],[89.08972,26.32241],[89.09192,26.32029],[89.09363,26.32578],[89.09545,26.32556],[89.09719,26.32928],[89.0994,26.32825],[89.09841,26.32504],[89.10051,26.32331],[89.10433,26.32328],[89.10569,26.3265],[89.11001,26.32525],[89.11274,26.31839],[89.11649,26.31849],[89.1155,26.3199],[89.12364,26.32217],[89.12861,26.32232],[89.12968,26.32048],[89.12446,26.32084],[89.12831,26.3188],[89.13464,26.32135],[89.13631,26.32011],[89.13604,26.31459],[89.12955,26.31284],[89.13483,26.31315],[89.13283,26.31173],[89.13493,26.31126],[89.13604,26.30739],[89.13371,26.3058],[89.12522,26.30534],[89.1257,26.30415],[89.13058,26.30518],[89.13134,26.30089],[89.1288,26.30152],[89.12892,26.30311],[89.12746,26.30156],[89.1287,26.29879],[89.1313,26.30037],[89.1325,26.29872],[89.13116,26.29861],[89.13163,26.29732],[89.12826,26.29785],[89.12737,26.29487],[89.12457,26.29405],[89.12542,26.29093],[89.12213,26.28715],[89.12013,26.28709],[89.11793,26.28982],[89.11681,26.29708],[89.11392,26.29824],[89.11425,26.30364],[89.10908,26.30444],[89.10828,26.31304],[89.10504,26.31383],[89.1061,26.31576],[89.10471,26.3158],[89.10498,26.31311],[89.10236,26.31139],[89.10294,26.30828],[89.09992,26.30457],[89.10757,26.2998],[89.10405,26.29797],[89.10328,26.29446],[89.10715,26.29164],[89.1026,26.28861],[89.10262,26.28167],[89.1001,26.27947],[89.1029,26.27823],[89.10342,26.28102],[89.10602,26.28107],[89.10572,26.27404],[89.10879,26.27557],[89.10941,26.27208],[89.11162,26.27268],[89.12523,26.26346],[89.12535,26.26121],[89.1214,26.2582],[89.12227,26.25552],[89.11988,26.25435],[89.11984,26.25261],[89.12398,26.24974],[89.12615,26.25069],[89.12698,26.24884],[89.13004,26.24879],[89.13216,26.24614],[89.13095,26.24297],[89.13255,26.24188],[89.1319,26.23952],[89.13543,26.24112],[89.136,26.2398],[89.13394,26.23755],[89.137,26.23656],[89.13941,26.23803],[89.14094,26.23584],[89.14126,26.23123],[89.13957,26.22952],[89.14384,26.22126],[89.14209,26.22098],[89.14213,26.21453],[89.14941,26.20905],[89.14718,26.20482],[89.14411,26.20342],[89.14392,26.2003],[89.13938,26.19831],[89.13913,26.19123],[89.1381,26.18838],[89.13553,26.18722],[89.13664,26.18351],[89.13461,26.18117],[89.1371,26.17976],[89.13756,26.17628],[89.14121,26.17581],[89.14103,26.16929],[89.14919,26.17003],[89.15251,26.16448],[89.15728,26.1632],[89.1554,26.15955],[89.14912,26.15943],[89.14854,26.1581],[89.15538,26.13861],[89.16002,26.13962],[89.15925,26.13665],[89.16112,26.13726],[89.16033,26.13538],[89.16253,26.13539],[89.16186,26.13366],[89.16413,26.13334],[89.16442,26.13167],[89.16658,26.13226],[89.16678,26.13018],[89.16796,26.13147],[89.17153,26.13033],[89.17644,26.13181],[89.17959,26.12796],[89.18484,26.12905],[89.18514,26.12673],[89.1861,26.1279],[89.18898,26.12727],[89.18973,26.1245],[89.19133,26.12504],[89.19235,26.12364],[89.19639,26.1257],[89.19509,26.12717],[89.19818,26.12566],[89.20017,26.12848],[89.20308,26.12928],[89.20495,26.12721],[89.20623,26.12817],[89.20632,26.12652],[89.20981,26.12719],[89.21139,26.12422],[89.21438,26.12527],[89.21389,26.12687],[89.21717,26.12708],[89.21711,26.12552],[89.21985,26.12644],[89.21934,26.12426],[89.22333,26.12544],[89.2232,26.12418],[89.22547,26.12425],[89.22693,26.12206],[89.22787,26.12399],[89.22944,26.12385],[89.22849,26.12043],[89.23074,26.1175],[89.22922,26.1166],[89.23182,26.11709],[89.23303,26.113],[89.2355,26.11472],[89.23724,26.11258],[89.23852,26.11468],[89.2399,26.11214],[89.24192,26.11319],[89.2392,26.1115],[89.23944,26.11013],[89.24134,26.11027],[89.23954,26.10924],[89.24031,26.10775],[89.24222,26.10906],[89.2412,26.10625],[89.24294,26.1067],[89.24156,26.10547],[89.24397,26.10618],[89.24415,26.10494],[89.24521,26.10657],[89.24861,26.10343],[89.24772,26.10169],[89.25178,26.10118],[89.2524,26.09784],[89.25033,26.09412],[89.25237,26.09275],[89.25118,26.09274],[89.25162,26.09135],[89.25489,26.09337],[89.25618,26.09174],[89.25882,26.09312],[89.26036,26.0918],[89.26221,26.09398],[89.26339,26.09208],[89.2668,26.09264],[89.2657,26.09233],[89.26587,26.08784],[89.26144,26.08578],[89.2609,26.08285],[89.25686,26.08008],[89.25473,26.07466],[89.25611,26.07154],[89.25441,26.06412],[89.27088,26.05995],[89.2705,26.0619],[89.27621,26.0612],[89.27521,26.06214],[89.2783,26.06648],[89.28105,26.06562],[89.28254,26.06414],[89.28105,26.06191],[89.28171,26.05612],[89.27904,26.05068],[89.27686,26.05139],[89.27576,26.04908],[89.28926,26.04815],[89.29096,26.04525],[89.29169,26.04641],[89.29664,26.04534],[89.29843,26.0502],[89.30044,26.05043],[89.29999,26.04759],[89.30473,26.04714],[89.30348,26.04591],[89.30512,26.04532],[89.30619,26.04652],[89.30592,26.0445],[89.30773,26.0451],[89.30988,26.04162],[89.31734,26.03852],[89.31522,26.03742],[89.31939,26.03919],[89.3237,26.03805],[89.32311,26.03689],[89.32574,26.03628],[89.32567,26.0346],[89.32797,26.03334],[89.3261,26.03201],[89.32897,26.03162],[89.32762,26.03026],[89.32951,26.03025],[89.3289,26.02825],[89.33079,26.02719],[89.33166,26.02944],[89.33325,26.02837],[89.33278,26.02693],[89.33438,26.0275],[89.33522,26.02547],[89.33653,26.02652],[89.33862,26.02391],[89.33525,26.02262],[89.33452,26.02],[89.33745,26.02211],[89.33875,26.01936],[89.33722,26.01998],[89.33733,26.01885],[89.33911,26.01823],[89.33732,26.01802],[89.33977,26.01779],[89.34011,26.01526],[89.34357,26.01459],[89.34372,26.01703],[89.34533,26.01438],[89.34921,26.01614],[89.34682,26.01336],[89.34426,26.01318],[89.34699,26.01135],[89.3484,26.0122],[89.34906,26.01035],[89.35247,26.0101],[89.35348,26.0119],[89.35476,26.01144],[89.35444,26.0088],[89.35606,26.00833],[89.35642,26.0099],[89.35697,26.00797],[89.35948,26.0092],[89.3597,26.00785],[89.36034,26.00922],[89.36472,26.00823],[89.36669,26.01025],[89.37116,26.00894],[89.37248,26.01183],[89.37565,26.00931],[89.38591,26.01075],[89.38941,26.00833],[89.39123,26.00943],[89.39279,26.00719],[89.3945,26.01315],[89.39114,26.01671],[89.39086,26.02292],[89.40302,26.02731],[89.40416,26.03091],[89.4066,26.03151],[89.40485,26.03393],[89.40749,26.03609],[89.40645,26.038],[89.40769,26.03978],[89.40627,26.04028],[89.40742,26.04151],[89.41897,26.04189],[89.42445,26.04418],[89.42272,26.04564],[89.42384,26.04692],[89.4328,26.0375],[89.43359,26.03042],[89.42739,26.01917],[89.42864,26.01448],[89.42674,26.01513],[89.42874,26.01227],[89.43639,26.00938],[89.44716,26.00796],[89.46165,25.99837],[89.47656,25.99798],[89.48035,25.99607],[89.48711,26.00027],[89.49128,26.00596],[89.49689,26.00289],[89.50815,26.00184],[89.5115,26.00331],[89.51423,26.00703],[89.51924,26.00874],[89.52121,26.00856],[89.52207,26.00516],[89.5243,26.00657],[89.52612,26.00474],[89.52983,26.00574],[89.53746,26.00213],[89.53942,26.00537],[89.53678,26.00407],[89.53366,26.00537],[89.53757,26.00674],[89.5409,26.0059],[89.54296,26.0026],[89.54481,26.00259],[89.54497,26.00034],[89.54822,26.00061],[89.54815,25.99858],[89.53821,25.99468],[89.53796,25.9908],[89.53553,25.99017],[89.53608,25.98559],[89.54169,25.98319],[89.53825,25.97319],[89.54157,25.96916],[89.55601,25.96522],[89.5577,25.96536],[89.55782,25.96988],[89.5627,25.97115],[89.56385,25.97876],[89.56597,25.98034],[89.5684,25.97912],[89.56734,25.97103],[89.56891,25.96776],[89.57787,25.96928],[89.57848,25.9734],[89.57671,25.97803],[89.57445,25.97738],[89.57348,25.97857],[89.57641,25.9819],[89.57688,25.97817],[89.58257,25.97908],[89.58518,25.9759],[89.58675,25.98108],[89.5832,25.99019],[89.58625,25.99508],[89.5834,26.00184],[89.58003,26.00212],[89.58156,26.00334],[89.57994,26.00501],[89.58153,26.00582],[89.57875,26.00678],[89.5813,26.01093],[89.57836,26.0216],[89.57872,26.02626],[89.58336,26.02423],[89.58535,26.02628],[89.58326,26.03257],[89.58726,26.03554],[89.58688,26.03831],[89.58946,26.03889],[89.59267,26.03527],[89.59509,26.0352],[89.59775,26.03785],[89.59776,26.04018],[89.5938,26.0411],[89.59223,26.0448],[89.59948,26.04443],[89.60374,26.04853],[89.61283,26.05264],[89.61293,26.05693],[89.60608,26.05921],[89.6054,26.06375],[89.60859,26.06457],[89.60988,26.06042],[89.61166,26.05937],[89.6178,26.06011],[89.61638,26.05566],[89.62051,26.05328],[89.6247,26.057],[89.62791,26.05767],[89.62816,26.06128],[89.63063,26.06266],[89.63567,26.06071],[89.6437,26.06304],[89.64908,26.06136],[89.6499,26.06248],[89.64832,26.0684],[89.63735,26.07477],[89.63357,26.08087],[89.63394,26.08415],[89.6367,26.08576],[89.63688,26.08927],[89.63968,26.09006],[89.63324,26.0944],[89.6321,26.09721],[89.63622,26.09937],[89.63245,26.10173],[89.62996,26.10704],[89.62409,26.10789],[89.62151,26.10035],[89.61619,26.10414],[89.61396,26.10361],[89.61345,26.10131],[89.61729,26.09469],[89.61014,26.09591],[89.60885,26.0941],[89.61026,26.09004],[89.60862,26.08839],[89.60586,26.09333],[89.59743,26.0974],[89.59388,26.10216],[89.59654,26.1043],[89.60031,26.10406],[89.60076,26.10751],[89.59561,26.10781],[89.60084,26.10904],[89.59796,26.11037],[89.59788,26.11298],[89.6031,26.11165],[89.60525,26.10637],[89.61004,26.10858],[89.61622,26.10686],[89.6275,26.11399],[89.63036,26.11827],[89.62925,26.12504],[89.62535,26.1286],[89.62243,26.1258],[89.62051,26.11972],[89.61676,26.12076],[89.61352,26.12737],[89.61204,26.1277],[89.60884,26.12383],[89.60792,26.11872],[89.60424,26.11745],[89.60129,26.12342],[89.60236,26.1219],[89.60389,26.12386],[89.60633,26.12242],[89.60773,26.12486],[89.60429,26.12862],[89.60313,26.12661],[89.60431,26.12465],[89.60271,26.12491],[89.60426,26.12573],[89.5966,26.13503],[89.59831,26.13726],[89.59823,26.13899],[89.5956,26.13989],[89.59818,26.14637],[89.59666,26.14994],[89.59841,26.15046],[89.59792,26.15413],[89.5963,26.15624],[89.5914,26.15761],[89.5958,26.16082],[89.60001,26.16083],[89.60088,26.15814],[89.6044,26.15615],[89.60467,26.1591],[89.60604,26.15765],[89.60805,26.15835],[89.60701,26.15443],[89.60902,26.15362],[89.6114,26.15752],[89.60824,26.15822],[89.61014,26.15958],[89.61015,26.16184],[89.6135,26.16203],[89.61378,26.16618],[89.61976,26.16776],[89.61807,26.16913],[89.61284,26.16733],[89.61123,26.16856],[89.61098,26.17436],[89.6154,26.17303],[89.61515,26.17588],[89.60831,26.17635],[89.60746,26.17914],[89.6102,26.18032],[89.60933,26.17856],[89.61527,26.17643],[89.61483,26.17855],[89.62391,26.17913],[89.62334,26.17429],[89.62172,26.17355],[89.62399,26.17112],[89.62566,26.17627],[89.63249,26.18078],[89.63279,26.17939],[89.6371,26.1788],[89.63748,26.17685],[89.63195,26.17364],[89.63216,26.17189],[89.63792,26.17214],[89.63843,26.16687],[89.6461,26.16444],[89.64933,26.16443],[89.65017,26.16977],[89.65515,26.17038],[89.65494,26.17336],[89.65866,26.17623],[89.65587,26.1787],[89.65548,26.18141],[89.64987,26.17972],[89.64373,26.18278],[89.64032,26.18225],[89.63914,26.17861],[89.63334,26.18044],[89.63311,26.1827],[89.63169,26.18116],[89.62781,26.18391],[89.62767,26.18931],[89.63286,26.19029],[89.62853,26.19183],[89.63018,26.19576],[89.6342,26.19558],[89.63356,26.19478],[89.63605,26.19364],[89.63516,26.19018],[89.63793,26.18971],[89.63804,26.18674],[89.64245,26.18527],[89.64745,26.18519],[89.64556,26.18851],[89.6475,26.18769],[89.65,26.19021],[89.64644,26.19501],[89.64414,26.19491],[89.64185,26.19887],[89.63948,26.19971],[89.63826,26.21044],[89.63266,26.20989],[89.63412,26.21537],[89.63651,26.2176],[89.63365,26.21857],[89.63622,26.22374],[89.63444,26.22941],[89.63778,26.22909],[89.6402,26.22577],[89.64574,26.22555],[89.65046,26.22098],[89.65509,26.22044],[89.65557,26.21908],[89.662,26.21922],[89.66482,26.22112],[89.6719,26.21985],[89.67221,26.22891],[89.6734,26.2316],[89.67734,26.23387],[89.67871,26.23821],[89.68199,26.22752],[89.68424,26.22768],[89.68605,26.23066],[89.68574,26.22654],[89.68749,26.22651],[89.6837,26.22369],[89.68888,26.2227],[89.68942,26.22128],[89.68428,26.2201],[89.67903,26.22409],[89.67941,26.21479],[89.68378,26.20874],[89.69139,26.2135],[89.6915,26.21167],[89.68726,26.20978],[89.68566,26.20687],[89.68105,26.21007],[89.67716,26.20967],[89.67352,26.20568],[89.67347,26.20143],[89.67821,26.1975],[89.68303,26.19926],[89.68635,26.19822],[89.68336,26.19588],[89.68217,26.19242],[89.68739,26.1815],[89.69407,26.17551],[89.70206,26.17398],[89.69785,26.1699],[89.6842,26.16962],[89.68107,26.16613],[89.68132,26.16359],[89.69716,26.15853],[89.70138,26.15175],[89.70997,26.15622],[89.71281,26.16807],[89.71674,26.16824],[89.71698,26.16536],[89.72184,26.16747],[89.72761,26.16735],[89.72886,26.16794],[89.72748,26.17196],[89.7289,26.17411],[89.73655,26.17279],[89.73247,26.17782],[89.72558,26.17798],[89.72235,26.17771],[89.71365,26.17266],[89.70924,26.17281],[89.70354,26.17805],[89.70328,26.18299],[89.6986,26.19118],[89.7061,26.18773],[89.71307,26.18772],[89.71911,26.19229],[89.72037,26.1956],[89.71781,26.20135],[89.7116,26.20297],[89.71916,26.20662],[89.72721,26.20596],[89.73323,26.21199],[89.73171,26.21616],[89.7257,26.21818],[89.71287,26.21246],[89.7075,26.21228],[89.70211,26.2152],[89.70039,26.21845],[89.70119,26.21994],[89.70447,26.21719],[89.71004,26.21784],[89.71364,26.22212],[89.7141,26.23025],[89.72707,26.23316],[89.73216,26.23783],[89.73183,26.23988],[89.72629,26.24287],[89.71788,26.24515],[89.71648,26.24753],[89.71845,26.25585],[89.71708,26.25737],[89.71443,26.25825],[89.70583,26.25621],[89.70262,26.25786],[89.70585,26.27043],[89.71155,26.27126],[89.71471,26.26994],[89.71258,26.26191],[89.72202,26.25746],[89.734,26.25941],[89.73557,26.26149],[89.73428,26.26703],[89.73854,26.26994],[89.735,26.27767],[89.72413,26.28764],[89.71783,26.29582],[89.71981,26.30732],[89.72371,26.30928],[89.72585,26.30722],[89.72139,26.29951],[89.72632,26.29471],[89.73691,26.29261],[89.74484,26.29689],[89.7478,26.29126],[89.75812,26.28779],[89.76089,26.2921],[89.75414,26.30222],[89.75124,26.32095],[89.75535,26.32321],[89.76031,26.3166],[89.76428,26.31607],[89.76909,26.32129],[89.76926,26.32429],[89.78107,26.32786],[89.78373,26.33209],[89.78154,26.34163],[89.78318,26.3514],[89.79305,26.35868],[89.80482,26.36284],[89.81372,26.37105],[89.8201,26.37024],[89.82192,26.37181],[89.81998,26.36663],[89.81331,26.36151],[89.81283,26.3571],[89.81538,26.35258],[89.82276,26.35163],[89.82577,26.35485],[89.82197,26.35967],[89.82207,26.36315],[89.82764,26.36631],[89.82948,26.37078],[89.82592,26.37763],[89.83202,26.38392],[89.83525,26.38396],[89.83967,26.37862],[89.84302,26.37781],[89.84705,26.38525],[89.85148,26.38525],[89.8545,26.38216],[89.8589,26.38403],[89.85542,26.39087],[89.85734,26.39613],[89.84988,26.40359],[89.84781,26.40415],[89.8472,26.3989],[89.84328,26.3938],[89.8376,26.39098],[89.83219,26.39182],[89.83031,26.39358],[89.82995,26.397],[89.83243,26.40001],[89.83297,26.40838],[89.83525,26.41202],[89.85748,26.41198],[89.85671,26.41494],[89.84976,26.42046],[89.84916,26.42279],[89.85587,26.42492],[89.85772,26.42993],[89.85568,26.4326],[89.8587,26.43556],[89.85856,26.43957],[89.86266,26.44292],[89.8642,26.44676],[89.87203,26.45139],[89.87043,26.4567],[89.87244,26.4645],[89.86863,26.46861],[89.86482,26.46912],[89.86159,26.48188],[89.86237,26.48355],[89.85633,26.4854],[89.85414,26.48817],[89.85436,26.4934],[89.85884,26.49991],[89.85683,26.50076],[89.85676,26.5066],[89.85878,26.51261],[89.85604,26.51478],[89.8561,26.51843],[89.86294,26.53003],[89.86586,26.53228],[89.86318,26.54164],[89.86899,26.55387],[89.86736,26.56948],[89.86449,26.57324],[89.86599,26.57677],[89.87116,26.57907],[89.87292,26.5783],[89.8826,26.58339],[89.87377,26.59134],[89.87953,26.6093],[89.87842,26.61553],[89.86415,26.61573],[89.85825,26.62338],[89.85916,26.62956],[89.86713,26.63494],[89.87693,26.64851],[89.87046,26.65533],[89.87013,26.65783],[89.87419,26.66672],[89.87235,26.67248],[89.87458,26.68362],[89.86333,26.70085],[89.81235,26.71063],[89.80659,26.71059],[89.77137,26.701],[89.76667,26.70411],[89.7616,26.71414],[89.75484,26.71749],[89.75516,26.72188],[89.75804,26.72457],[89.75868,26.72883],[89.7528,26.73531],[89.74884,26.73365],[89.74473,26.72882],[89.73918,26.72935],[89.73215,26.72472],[89.73119,26.72561],[89.72408,26.72229],[89.71846,26.72735],[89.71791,26.72976],[89.7077,26.73118],[89.70028,26.73734],[89.6899,26.73307],[89.67685,26.73968],[89.67176,26.73981],[89.66975,26.73874],[89.66943,26.73175],[89.65787,26.71865],[89.64995,26.71734],[89.648,26.72054],[89.63969,26.72237],[89.63513,26.72501],[89.6311,26.71883],[89.62943,26.71952],[89.6274,26.71755],[89.62378,26.71845],[89.62311,26.72345],[89.61845,26.72658],[89.61745,26.72931],[89.62188,26.73492],[89.62242,26.73895],[89.6334,26.74562],[89.64352,26.74854],[89.64572,26.75276],[89.64389,26.76034],[89.64765,26.76167],[89.65017,26.76666],[89.65327,26.76688],[89.65058,26.7763],[89.6467,26.77802],[89.64685,26.77689],[89.64396,26.77698],[89.64073,26.78149],[89.63476,26.78138],[89.63182,26.78306],[89.62092,26.77751],[89.61894,26.7818],[89.61396,26.78605],[89.60003,26.78727],[89.59391,26.7921],[89.58747,26.79195],[89.58088,26.79538],[89.5659,26.79935],[89.56549,26.80308],[89.56208,26.80609],[89.56017,26.81286],[89.55096,26.8121],[89.54828,26.80925],[89.5433,26.81227],[89.53901,26.81215],[89.53387,26.81473],[89.52671,26.81253],[89.5244,26.81424],[89.52561,26.81491],[89.51843,26.81233],[89.51222,26.81432],[89.50094,26.80547],[89.49463,26.80317],[89.48601,26.80296],[89.48249,26.80457],[89.48121,26.80174],[89.46953,26.80269],[89.46104,26.80608],[89.45007,26.81799],[89.44897,26.8264],[89.45035,26.83081],[89.43948,26.84034],[89.42285,26.83604],[89.41382,26.84034],[89.38977,26.84185],[89.38364,26.85908],[89.37898,26.86218],[89.32681,26.84323],[89.32312,26.85112],[89.3185,26.85132],[89.31213,26.84589],[89.29535,26.8396],[89.28109,26.83096],[89.27855,26.82657],[89.27308,26.82737],[89.2642,26.81813],[89.2624,26.81378],[89.23936,26.81869],[89.22898,26.81828],[89.19351,26.81078],[89.1763,26.81914],[89.13448,26.80764],[89.12409,26.82199],[89.11537,26.82421],[89.10287,26.8416],[89.10069,26.84253],[89.10625,26.86035],[89.09251,26.8726],[89.0957,26.89167],[89.07963,26.89701],[89.06945,26.90369],[89.04886,26.89911],[89.0509,26.91597],[89.04076,26.92295],[89.02999,26.92312],[89.02157,26.94069],[88.99181,26.92187],[88.98035,26.91719],[88.94392,26.93415],[88.94914,26.93788],[88.9476,26.94204],[88.95361,26.94734],[88.95466,26.9579],[88.95218,26.96312],[88.95248,26.96841],[88.92168,26.99393],[88.91169,26.98671],[88.90865,26.97946],[88.89781,26.96895],[88.89688,26.96577],[88.88502,26.95631],[88.88352,26.94813],[88.87713,26.94436],[88.87489,26.94867],[88.87415,26.9576],[88.87174,26.95921],[88.87111,26.96252],[88.87351,26.96694],[88.87249,26.97486],[88.87448,26.98257],[88.87028,26.99575],[88.8719,26.99745],[88.87358,27.00966],[88.8754,27.01233],[88.87613,27.02747],[88.87821,27.03457],[88.88103,27.03771],[88.87686,27.04199],[88.87636,27.04504],[88.87911,27.04899],[88.87873,27.0594],[88.88117,27.062],[88.87987,27.06612],[88.87503,27.0704],[88.87699,27.07362],[88.87423,27.0786],[88.87404,27.08659],[88.87564,27.08964],[88.87385,27.09241],[88.87339,27.09844],[88.8711,27.10138],[88.87088,27.10788],[88.86771,27.11244],[88.86661,27.11036],[88.85125,27.10803],[88.84693,27.11229],[88.84248,27.11115],[88.84279,27.11412],[88.83986,27.11636],[88.83364,27.11562],[88.82615,27.12172],[88.81966,27.12213],[88.8117,27.12687],[88.80406,27.13883],[88.80203,27.1395],[88.79235,27.13547],[88.77374,27.13527],[88.76421,27.1402],[88.75465,27.14119],[88.74624,27.14417],[88.73862,27.1354],[88.72896,27.13627],[88.71781,27.14331],[88.71614,27.15977],[88.71248,27.16248],[88.71012,27.16684],[88.70516,27.16908],[88.70173,27.17387],[88.69153,27.17839],[88.68451,27.17989],[88.67801,27.17838],[88.67102,27.173],[88.66284,27.16168],[88.66026,27.16055],[88.65335,27.16193],[88.65145,27.16485],[88.64681,27.16616],[88.63978,27.16484],[88.63551,27.16668],[88.63424,27.17259],[88.62671,27.17755],[88.62597,27.18037],[88.62289,27.17936],[88.62228,27.18245],[88.62006,27.18194],[88.61871,27.18334],[88.61432,27.18169],[88.60371,27.18623],[88.60162,27.18567],[88.59795,27.18981],[88.59436,27.18789],[88.59286,27.19122],[88.59025,27.19033],[88.58879,27.18636],[88.58594,27.19039],[88.58333,27.1876],[88.58104,27.18881],[88.56721,27.18477],[88.55828,27.18561],[88.55197,27.1831],[88.54298,27.18318],[88.53963,27.17738],[88.53507,27.17889],[88.5315,27.17241],[88.52463,27.17389],[88.52077,27.17289],[88.52758,27.16651],[88.53136,27.16514],[88.52764,27.1574],[88.53346,27.15496],[88.53235,27.15006],[88.51927,27.14752],[88.51769,27.14323],[88.51324,27.14075],[88.5112,27.13724],[88.50593,27.13661],[88.49967,27.13091],[88.49774,27.12382],[88.48748,27.12592],[88.48509,27.12092],[88.47624,27.1223],[88.46787,27.11395],[88.46645,27.10274],[88.46197,27.09838],[88.45958,27.09058],[88.45053,27.08389],[88.43926,27.08241],[88.43295,27.07926],[88.41103,27.08895],[88.39922,27.09025],[88.38737,27.09494],[88.37489,27.09748],[88.35875,27.09601],[88.35682,27.09738],[88.35604,27.10102],[88.34952,27.0998],[88.3457,27.10692],[88.34139,27.11012],[88.33784,27.10983],[88.33537,27.10675],[88.32944,27.10777],[88.32154,27.10475],[88.32109,27.10686],[88.32368,27.1105],[88.32285,27.11764],[88.31645,27.12179],[88.31534,27.12615],[88.31082,27.12507],[88.30229,27.12929],[88.29918,27.12833],[88.29722,27.12518],[88.29033,27.12785],[88.28507,27.12692],[88.27901,27.13187],[88.27421,27.13083],[88.27248,27.12815],[88.26839,27.12951],[88.25906,27.12526],[88.24858,27.12435],[88.24177,27.1195],[88.23002,27.11898],[88.2196,27.12511],[88.21945,27.12847],[88.2157,27.13166],[88.21375,27.13196],[88.21149,27.12989],[88.20572,27.13346],[88.20144,27.13143],[88.19463,27.13485],[88.19203,27.13248],[88.18958,27.13322],[88.18536,27.13077],[88.18101,27.13247],[88.17919,27.12983],[88.17587,27.12981],[88.17232,27.12736],[88.1706,27.12263],[88.16729,27.12243],[88.16213,27.11343],[88.15859,27.11346],[88.15635,27.11],[88.15097,27.10997],[88.14984,27.1139],[88.14472,27.11195],[88.14404,27.11561],[88.13891,27.11391],[88.13663,27.11465],[88.13549,27.12048],[88.12354,27.12101],[88.11174,27.13118],[88.09671,27.1328],[88.08885,27.14326],[88.0871,27.16422],[88.07741,27.1729],[88.07976,27.17437],[88.07854,27.18035],[88.07272,27.1872],[88.07917,27.20109],[88.07169,27.20416],[88.06552,27.20916],[88.0645,27.2144],[88.05282,27.21341],[88.04389,27.21923],[88.03494,27.22098]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"2","area_level":"State","area_name":"Himachal Pradesh","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.92211,30.8822],[76.92203,30.88261],[76.92173,30.88309],[76.92057,30.88339],[76.91979,30.88384],[76.91804,30.88594],[76.91769,30.88646],[76.91749,30.88628],[76.91726,30.88565],[76.91715,30.88466],[76.9172,30.88423],[76.91741,30.88346],[76.91773,30.88305],[76.91812,30.88271],[76.91955,30.88222],[76.91982,30.88199],[76.92024,30.88199],[76.92126,30.88125],[76.92152,30.88097],[76.92191,30.88069],[76.92235,30.88047],[76.92227,30.87927],[76.9225,30.87825],[76.92273,30.87747],[76.92302,30.87684],[76.92351,30.87629],[76.92424,30.87645],[76.92371,30.87785],[76.92311,30.87991],[76.92278,30.88034],[76.92211,30.8822]]],[[[76.80258,33.25385],[76.79915,33.25624],[76.793,33.25636],[76.78484,33.25346],[76.77743,33.25377],[76.77174,33.25102],[76.77069,33.24944],[76.77312,33.24215],[76.77941,33.23812],[76.77584,33.22049],[76.77161,33.21856],[76.77095,33.21304],[76.76659,33.21084],[76.76624,33.20789],[76.75781,33.19539],[76.75009,33.19149],[76.75018,33.18806],[76.74676,33.18308],[76.74682,33.17841],[76.72895,33.1767],[76.71997,33.18168],[76.70932,33.1807],[76.70726,33.17687],[76.69963,33.17317],[76.6859,33.17352],[76.67166,33.17066],[76.66461,33.17128],[76.655,33.16375],[76.64837,33.164],[76.64444,33.16187],[76.63941,33.16166],[76.62338,33.16691],[76.61257,33.17338],[76.61107,33.18734],[76.60626,33.19043],[76.60134,33.18861],[76.59863,33.19027],[76.59718,33.19572],[76.59923,33.20307],[76.59589,33.20591],[76.59112,33.20486],[76.58337,33.20662],[76.57266,33.20633],[76.56165,33.20954],[76.54719,33.19855],[76.53686,33.20012],[76.52288,33.19588],[76.50931,33.19584],[76.50175,33.18988],[76.48064,33.17887],[76.47278,33.17976],[76.46639,33.18241],[76.45437,33.17944],[76.44483,33.18147],[76.43571,33.18029],[76.42826,33.18197],[76.42033,33.18766],[76.41416,33.18505],[76.4039,33.18579],[76.4011,33.18289],[76.39785,33.18212],[76.39089,33.17385],[76.37661,33.16533],[76.36846,33.15346],[76.3621,33.1532],[76.345,33.14364],[76.3263,33.12734],[76.31486,33.12505],[76.31341,33.12267],[76.30522,33.11962],[76.30029,33.11235],[76.28595,33.10239],[76.28848,33.09872],[76.28305,33.08636],[76.28282,33.07684],[76.28366,33.07191],[76.28929,33.06794],[76.29041,33.05985],[76.2897,33.0568],[76.27632,33.05105],[76.27495,33.04076],[76.27291,33.03705],[76.25535,33.03405],[76.24623,33.02728],[76.24277,33.02082],[76.22071,33.02288],[76.21233,33.01645],[76.2035,33.01599],[76.18009,33.02054],[76.17559,33.01813],[76.1679,33.00856],[76.16034,33.00663],[76.13631,33.00959],[76.1072,33.00606],[76.10793,33.0],[76.1038,32.99119],[76.10629,32.98688],[76.09416,32.96516],[76.09218,32.96334],[76.08224,32.96157],[76.08302,32.95525],[76.06831,32.9519],[76.06126,32.94095],[76.03883,32.93575],[76.03436,32.93174],[76.032,32.92691],[76.03314,32.92137],[76.02719,32.91571],[76.00912,32.9087],[76.00234,32.90152],[75.99895,32.90204],[75.99651,32.89935],[75.98124,32.8951],[75.97537,32.88648],[75.96971,32.88505],[75.95011,32.87283],[75.94106,32.87828],[75.92827,32.88979],[75.91886,32.90576],[75.91293,32.90671],[75.90385,32.91279],[75.89914,32.91221],[75.88875,32.91454],[75.88328,32.91868],[75.87679,32.91948],[75.873,32.92385],[75.86708,32.92276],[75.85933,32.9254],[75.85185,32.92493],[75.84519,32.92846],[75.8377,32.92802],[75.83264,32.92403],[75.82427,32.91131],[75.81895,32.90753],[75.81715,32.89937],[75.81259,32.89311],[75.79625,32.88426],[75.80598,32.8768],[75.80947,32.86931],[75.81083,32.86033],[75.81693,32.85879],[75.81862,32.85273],[75.82636,32.85001],[75.82988,32.84503],[75.84047,32.84343],[75.84244,32.83769],[75.84608,32.83507],[75.84819,32.83648],[75.85266,32.83438],[75.86563,32.8203],[75.86504,32.81338],[75.87909,32.81121],[75.88421,32.80193],[75.88582,32.78225],[75.8965,32.77492],[75.89795,32.76917],[75.90478,32.76478],[75.92135,32.74771],[75.92295,32.74368],[75.91833,32.73482],[75.91829,32.72715],[75.90695,32.71607],[75.90483,32.70889],[75.89738,32.69754],[75.90046,32.69353],[75.89719,32.68552],[75.89723,32.67747],[75.89883,32.67319],[75.89693,32.6721],[75.89754,32.66978],[75.89307,32.6664],[75.89218,32.6588],[75.88583,32.65218],[75.88677,32.6504],[75.89311,32.64861],[75.89784,32.65432],[75.90626,32.65814],[75.91499,32.6531],[75.91503,32.6436],[75.9188,32.64456],[75.92031,32.64289],[75.92341,32.64274],[75.93323,32.64711],[75.93381,32.64265],[75.92881,32.63717],[75.93087,32.63176],[75.92734,32.63133],[75.9242,32.63675],[75.91863,32.63311],[75.91913,32.62969],[75.9155,32.62771],[75.91858,32.62172],[75.91636,32.61443],[75.90591,32.60759],[75.90503,32.60037],[75.89769,32.59066],[75.89273,32.58896],[75.88404,32.58982],[75.87895,32.58698],[75.87993,32.57799],[75.87771,32.56915],[75.86974,32.5661],[75.86614,32.56246],[75.87333,32.55413],[75.87321,32.54947],[75.8549,32.5369],[75.85564,32.53004],[75.85383,32.5277],[75.83826,32.52232],[75.83669,32.51847],[75.83882,32.5137],[75.83153,32.51438],[75.83033,32.51324],[75.83221,32.5107],[75.83579,32.51156],[75.84012,32.50937],[75.84413,32.50266],[75.84415,32.49966],[75.85343,32.48752],[75.8764,32.47034],[75.88079,32.46417],[75.88591,32.46363],[75.90277,32.45233],[75.90103,32.44893],[75.90573,32.44088],[75.90555,32.43766],[75.92018,32.43009],[75.91994,32.42305],[75.91669,32.42001],[75.92159,32.41023],[75.93028,32.40223],[75.93115,32.39942],[75.93799,32.39754],[75.93651,32.39742],[75.93309,32.39158],[75.92873,32.39461],[75.92363,32.39123],[75.92003,32.39681],[75.91772,32.39483],[75.91452,32.39552],[75.90798,32.39334],[75.90494,32.39598],[75.90208,32.3941],[75.8939,32.3933],[75.88671,32.3962],[75.8736,32.39568],[75.86474,32.38879],[75.8565,32.38487],[75.85241,32.37949],[75.84477,32.36486],[75.8455,32.35907],[75.84381,32.35531],[75.83445,32.35728],[75.82749,32.35023],[75.81121,32.34849],[75.80751,32.34071],[75.81295,32.33506],[75.81483,32.33018],[75.80157,32.32836],[75.78172,32.31011],[75.77232,32.28936],[75.74667,32.27722],[75.7132,32.27218],[75.65809,32.25113],[75.64087,32.25222],[75.63671,32.24995],[75.63205,32.24405],[75.61846,32.23757],[75.61805,32.23581],[75.62226,32.23387],[75.63561,32.23167],[75.63732,32.22272],[75.63665,32.21984],[75.63261,32.21716],[75.6263,32.21602],[75.62583,32.20983],[75.62744,32.20684],[75.62377,32.19004],[75.63157,32.1896],[75.63304,32.18687],[75.63752,32.18704],[75.63772,32.1925],[75.64537,32.19248],[75.65534,32.19677],[75.65789,32.19382],[75.66192,32.19291],[75.66312,32.18958],[75.65988,32.18781],[75.65936,32.18371],[75.65669,32.18289],[75.65901,32.18278],[75.65831,32.17817],[75.66702,32.17839],[75.66615,32.16474],[75.66369,32.16429],[75.66346,32.16218],[75.67268,32.15922],[75.66002,32.13665],[75.6257,32.11874],[75.62727,32.11733],[75.62646,32.1074],[75.61981,32.09743],[75.61428,32.09441],[75.60016,32.09244],[75.59581,32.08574],[75.59691,32.08209],[75.59459,32.0784],[75.59579,32.07443],[75.59482,32.06947],[75.60003,32.06867],[75.60155,32.06554],[75.6307,32.07419],[75.63429,32.07124],[75.64622,32.07274],[75.65432,32.07732],[75.66292,32.07573],[75.66324,32.07401],[75.67425,32.0704],[75.67412,32.06711],[75.67767,32.06333],[75.69291,32.06043],[75.70332,32.05515],[75.71207,32.03998],[75.72386,32.03259],[75.74295,32.03945],[75.75084,32.03768],[75.76498,32.01991],[75.77979,32.00465],[75.79966,31.99375],[75.82171,31.98392],[75.85106,31.98201],[75.85698,31.9738],[75.87426,31.96946],[75.88303,31.96889],[75.88268,31.96582],[75.8925,31.96178],[75.90371,31.95272],[75.91041,31.95011],[75.91157,31.93982],[75.91556,31.93101],[75.93665,31.89882],[75.93875,31.89105],[75.94512,31.88361],[75.9612,31.85485],[75.96597,31.83827],[75.97091,31.83342],[75.97123,31.82846],[75.97486,31.82835],[75.98649,31.81792],[75.98654,31.81224],[75.9835,31.81161],[75.98195,31.814],[75.97857,31.813],[75.97561,31.81875],[75.97327,31.81843],[75.96941,31.82383],[75.96737,31.82381],[75.9581,31.81841],[75.95699,31.8163],[75.9475,31.81301],[75.94182,31.81269],[75.93668,31.81541],[75.95307,31.78957],[75.95312,31.78329],[75.96022,31.78113],[75.96323,31.77388],[75.96341,31.76879],[75.96624,31.76654],[75.97066,31.75649],[75.97235,31.75096],[75.97112,31.74918],[75.97515,31.74373],[75.97542,31.74251],[75.97248,31.74145],[75.97265,31.73856],[75.97445,31.73488],[75.97842,31.73366],[75.97946,31.72602],[75.98322,31.72147],[75.98305,31.71881],[75.98872,31.7127],[75.98895,31.70767],[75.99296,31.7034],[75.99165,31.70142],[75.9931,31.69685],[75.99835,31.68956],[76.00078,31.68853],[76.00143,31.68337],[76.00574,31.676],[76.00673,31.66314],[76.00966,31.65335],[76.01965,31.64886],[76.01738,31.6466],[76.02227,31.63961],[76.01794,31.63313],[76.02451,31.62457],[76.02862,31.62288],[76.02929,31.61892],[76.03668,31.61325],[76.03788,31.60952],[76.04135,31.61068],[76.04617,31.60364],[76.04856,31.60271],[76.05376,31.60586],[76.05585,31.6055],[76.05822,31.60177],[76.05752,31.59746],[76.05881,31.59594],[76.05378,31.59322],[76.05802,31.58885],[76.05629,31.58533],[76.05971,31.58132],[76.06456,31.57963],[76.06668,31.57322],[76.07252,31.56974],[76.07331,31.56393],[76.07738,31.56076],[76.08196,31.55186],[76.08515,31.54852],[76.08923,31.54762],[76.08966,31.5451],[76.0919,31.54415],[76.09218,31.54071],[76.09861,31.53725],[76.09942,31.53504],[76.09807,31.53265],[76.10266,31.52506],[76.1019,31.52239],[76.10369,31.52058],[76.10644,31.51004],[76.11003,31.50687],[76.11295,31.50012],[76.12069,31.49766],[76.11916,31.49316],[76.12075,31.4893],[76.11705,31.48301],[76.1209,31.48015],[76.12165,31.47732],[76.1277,31.47453],[76.12871,31.47178],[76.13069,31.47104],[76.13028,31.46505],[76.13468,31.46141],[76.13545,31.45867],[76.13313,31.45189],[76.13899,31.4487],[76.14043,31.44158],[76.14495,31.43679],[76.14532,31.43413],[76.15231,31.43362],[76.15672,31.43076],[76.16254,31.42117],[76.16013,31.41539],[76.16831,31.41044],[76.16654,31.40575],[76.16979,31.39895],[76.16857,31.39625],[76.15402,31.3829],[76.14728,31.3803],[76.1473,31.36463],[76.14863,31.36093],[76.14689,31.35898],[76.14898,31.35742],[76.14936,31.35326],[76.15212,31.35272],[76.15331,31.34954],[76.15769,31.34706],[76.159,31.34369],[76.1761,31.34197],[76.17882,31.34047],[76.18138,31.33365],[76.17982,31.30653],[76.18432,31.30565],[76.1863,31.30209],[76.19099,31.29999],[76.21397,31.29939],[76.23914,31.30885],[76.25099,31.30767],[76.25671,31.31034],[76.26481,31.31],[76.26934,31.31192],[76.27081,31.30237],[76.27555,31.3004],[76.28691,31.30735],[76.28924,31.30622],[76.29043,31.30918],[76.30391,31.31358],[76.31079,31.31795],[76.31057,31.31916],[76.32238,31.32161],[76.31352,31.32914],[76.30765,31.34235],[76.33146,31.34642],[76.33021,31.3481],[76.3356,31.34949],[76.3375,31.33983],[76.34391,31.3402],[76.34503,31.34305],[76.34687,31.34319],[76.34753,31.34667],[76.35161,31.34658],[76.35148,31.34524],[76.35316,31.34496],[76.35354,31.34786],[76.34712,31.34895],[76.34622,31.35486],[76.34228,31.35496],[76.34292,31.36345],[76.34049,31.36336],[76.34161,31.37878],[76.32976,31.37905],[76.33168,31.38407],[76.33174,31.38728],[76.33046,31.38726],[76.33109,31.40163],[76.34205,31.40139],[76.34295,31.39862],[76.34293,31.40254],[76.34587,31.40308],[76.34733,31.39816],[76.35228,31.39831],[76.35834,31.40355],[76.36726,31.40437],[76.37173,31.40946],[76.37223,31.41397],[76.37045,31.41729],[76.37303,31.41734],[76.3713,31.42017],[76.37252,31.42499],[76.37037,31.43007],[76.3713,31.43298],[76.37317,31.43333],[76.37311,31.43713],[76.37621,31.43748],[76.3796,31.43331],[76.37955,31.42844],[76.38392,31.4259],[76.38284,31.42363],[76.38599,31.42182],[76.38974,31.41652],[76.38755,31.40944],[76.39708,31.40792],[76.39956,31.39975],[76.40357,31.39583],[76.40328,31.39239],[76.39812,31.39377],[76.39345,31.39119],[76.39271,31.38906],[76.40061,31.37957],[76.40368,31.37828],[76.40757,31.37078],[76.40726,31.36728],[76.41956,31.3493],[76.42409,31.34931],[76.42679,31.34486],[76.4252,31.33958],[76.43233,31.32656],[76.43587,31.32637],[76.43754,31.32221],[76.44322,31.31753],[76.44685,31.31698],[76.45431,31.31228],[76.46349,31.30195],[76.46281,31.29878],[76.45722,31.29513],[76.44037,31.28789],[76.43999,31.27872],[76.4413,31.27922],[76.44272,31.27728],[76.45937,31.28623],[76.45955,31.28892],[76.4635,31.29412],[76.47437,31.30235],[76.47913,31.30867],[76.48517,31.3045],[76.48801,31.29674],[76.49102,31.29423],[76.49089,31.28825],[76.49421,31.28905],[76.49672,31.28534],[76.49491,31.28082],[76.49757,31.26986],[76.50095,31.27003],[76.50391,31.26688],[76.5064,31.26772],[76.52165,31.28033],[76.52743,31.27717],[76.52794,31.27343],[76.52971,31.27226],[76.52899,31.27083],[76.53055,31.27105],[76.52859,31.2681],[76.5289,31.26565],[76.52393,31.26228],[76.5238,31.25814],[76.53143,31.25639],[76.53934,31.26105],[76.53998,31.26626],[76.53773,31.27055],[76.54109,31.27496],[76.54293,31.28243],[76.5513,31.27875],[76.54883,31.27427],[76.55021,31.26987],[76.54747,31.26727],[76.54847,31.26606],[76.54361,31.2589],[76.54427,31.25617],[76.54921,31.25275],[76.55284,31.25512],[76.55648,31.2524],[76.56002,31.25276],[76.56546,31.26179],[76.56954,31.26141],[76.57196,31.26479],[76.5713,31.26617],[76.57515,31.27023],[76.57915,31.27111],[76.58351,31.27615],[76.58775,31.2742],[76.59235,31.26836],[76.59184,31.26593],[76.59627,31.26116],[76.60108,31.25909],[76.6119,31.24912],[76.61029,31.24381],[76.59834,31.23955],[76.59471,31.23424],[76.59522,31.22686],[76.59279,31.22583],[76.59161,31.22295],[76.58854,31.22295],[76.58901,31.21929],[76.59237,31.2175],[76.59057,31.21453],[76.59268,31.21476],[76.59257,31.21126],[76.60082,31.21259],[76.60102,31.2148],[76.60353,31.21436],[76.60635,31.21661],[76.61296,31.21737],[76.62765,31.22622],[76.63154,31.22359],[76.63536,31.22438],[76.64167,31.22302],[76.63711,31.22066],[76.63686,31.21761],[76.63456,31.2178],[76.64254,31.21427],[76.64542,31.20906],[76.63536,31.20195],[76.61779,31.19286],[76.61488,31.18964],[76.61346,31.18413],[76.60978,31.18097],[76.59682,31.17799],[76.59857,31.17454],[76.60321,31.17505],[76.60491,31.17674],[76.60715,31.17425],[76.60553,31.17239],[76.6076,31.17065],[76.6031,31.16473],[76.60526,31.16017],[76.60233,31.15297],[76.60605,31.15169],[76.60746,31.14869],[76.60993,31.14957],[76.6123,31.14803],[76.60912,31.14321],[76.61041,31.14059],[76.60405,31.13337],[76.605,31.13079],[76.60089,31.12838],[76.602,31.12354],[76.61323,31.1223],[76.61662,31.11607],[76.62384,31.11639],[76.62498,31.11516],[76.63102,31.11691],[76.63328,31.11554],[76.63623,31.11649],[76.63858,31.108],[76.63741,31.10313],[76.63191,31.09997],[76.6322,31.09781],[76.62537,31.09077],[76.62315,31.07963],[76.61658,31.07771],[76.61721,31.0676],[76.62295,31.05457],[76.61097,31.04583],[76.61608,31.03651],[76.61677,31.03048],[76.62295,31.0258],[76.62905,31.02362],[76.62692,31.02308],[76.62647,31.02113],[76.62501,30.99864],[76.63373,30.99605],[76.63848,30.99014],[76.65162,30.98783],[76.66149,30.98074],[76.66441,30.98175],[76.67312,30.97438],[76.67386,30.96871],[76.68395,30.96786],[76.70055,30.97098],[76.7085,30.97029],[76.71176,30.96461],[76.71722,30.96011],[76.72234,30.9615],[76.73371,30.94934],[76.73714,30.94961],[76.73617,30.94711],[76.73772,30.94044],[76.73658,30.93837],[76.73978,30.93618],[76.73943,30.93379],[76.74696,30.93014],[76.7485,30.92673],[76.75652,30.92815],[76.75985,30.92633],[76.76019,30.92293],[76.76633,30.92107],[76.76666,30.91709],[76.77222,30.91006],[76.77187,30.90684],[76.77609,30.90597],[76.78683,30.91334],[76.79816,30.91524],[76.81114,30.92401],[76.82311,30.92818],[76.8293,30.91662],[76.82646,30.91313],[76.82998,30.90714],[76.83404,30.9045],[76.84104,30.89166],[76.84459,30.88926],[76.85109,30.88995],[76.85606,30.88424],[76.8604,30.88367],[76.863,30.87762],[76.86719,30.87604],[76.86958,30.87312],[76.87837,30.87574],[76.87595,30.8809],[76.8853,30.88296],[76.88733,30.88553],[76.89535,30.88698],[76.89495,30.89042],[76.89909,30.8927],[76.90862,30.89416],[76.90953,30.897],[76.91687,30.90077],[76.91795,30.88758],[76.92055,30.88725],[76.92139,30.88505],[76.92566,30.88481],[76.92746,30.88596],[76.92482,30.88991],[76.92839,30.89145],[76.93096,30.88774],[76.93647,30.88464],[76.93615,30.87777],[76.93015,30.87624],[76.93107,30.87316],[76.92658,30.87257],[76.92839,30.87142],[76.93311,30.87444],[76.9364,30.87457],[76.93838,30.87106],[76.93546,30.86969],[76.94303,30.85997],[76.94383,30.85294],[76.94862,30.85337],[76.95125,30.85052],[76.944,30.83766],[76.94895,30.82443],[76.94264,30.81743],[76.94594,30.81842],[76.94861,30.8167],[76.94891,30.81407],[76.9508,30.81383],[76.95189,30.81756],[76.96007,30.82731],[76.96208,30.82139],[76.96209,30.82362],[76.96512,30.82556],[76.97046,30.82465],[76.97391,30.81854],[76.97817,30.81691],[76.97758,30.81235],[76.98452,30.81226],[76.98659,30.81399],[76.99724,30.81219],[77.00016,30.81073],[77.00278,30.80564],[77.01069,30.8097],[77.01252,30.80919],[77.01196,30.80014],[77.01513,30.79309],[77.01241,30.78803],[77.01786,30.78603],[77.0166,30.78572],[77.01548,30.78088],[77.0169,30.7801],[77.01823,30.78277],[77.01859,30.7803],[77.01425,30.77566],[77.00897,30.77355],[77.00587,30.77411],[77.00127,30.77044],[77.00794,30.76919],[77.01042,30.76703],[77.01469,30.76786],[77.01861,30.76554],[77.01893,30.75469],[77.01624,30.75033],[77.02038,30.75245],[77.02109,30.74888],[77.01775,30.74828],[77.01751,30.74342],[77.027,30.73687],[77.03309,30.73864],[77.0335,30.74029],[77.04562,30.74133],[77.04162,30.7502],[77.04479,30.75164],[77.04838,30.74923],[77.04719,30.75295],[77.05547,30.74543],[77.06258,30.74568],[77.06806,30.74094],[77.07802,30.74401],[77.09353,30.74233],[77.10126,30.734],[77.10951,30.72918],[77.1141,30.72857],[77.11536,30.72482],[77.11146,30.72143],[77.11348,30.72079],[77.11373,30.71819],[77.12034,30.71878],[77.12439,30.72177],[77.12796,30.7161],[77.12885,30.71075],[77.13761,30.70618],[77.14219,30.69946],[77.14788,30.69947],[77.15483,30.6926],[77.16121,30.69093],[77.16719,30.6839],[77.16175,30.68305],[77.16089,30.68021],[77.16658,30.67485],[77.16853,30.66954],[77.16822,30.66408],[77.16281,30.65468],[77.16304,30.65084],[77.16476,30.65126],[77.16771,30.64237],[77.17691,30.63697],[77.17334,30.63332],[77.1714,30.62755],[77.17255,30.61954],[77.17058,30.61365],[77.1727,30.61114],[77.1708,30.60437],[77.17377,30.60055],[77.16427,30.59437],[77.16557,30.5916],[77.15941,30.58887],[77.16111,30.58661],[77.15764,30.58399],[77.15317,30.58336],[77.14821,30.57675],[77.14018,30.57808],[77.13765,30.57162],[77.13829,30.56894],[77.13428,30.56955],[77.12173,30.56294],[77.12793,30.55672],[77.13568,30.54302],[77.14536,30.53645],[77.15232,30.53431],[77.17034,30.53337],[77.17288,30.53231],[77.17258,30.53021],[77.17446,30.52921],[77.18119,30.52788],[77.18722,30.52372],[77.19504,30.52257],[77.19786,30.5195],[77.19681,30.51729],[77.20132,30.5153],[77.20939,30.50003],[77.21304,30.49639],[77.20907,30.48274],[77.21351,30.46841],[77.21652,30.47067],[77.22101,30.4799],[77.22809,30.48545],[77.23034,30.48334],[77.23238,30.4845],[77.23751,30.48267],[77.24153,30.48306],[77.251,30.47698],[77.25266,30.47847],[77.25476,30.47665],[77.26536,30.47683],[77.26615,30.47434],[77.27245,30.46955],[77.27426,30.45875],[77.27826,30.45846],[77.27973,30.46025],[77.28333,30.45777],[77.28809,30.45765],[77.29117,30.45923],[77.28988,30.4604],[77.29107,30.46061],[77.29285,30.45951],[77.29182,30.45699],[77.29439,30.45451],[77.30392,30.45199],[77.30783,30.45273],[77.30683,30.45025],[77.30872,30.44916],[77.31667,30.44814],[77.31923,30.4503],[77.31924,30.44796],[77.3211,30.44807],[77.32588,30.45168],[77.32823,30.45575],[77.33267,30.45766],[77.34188,30.45994],[77.34669,30.45783],[77.35358,30.46075],[77.35481,30.4557],[77.36346,30.44325],[77.36398,30.43437],[77.36723,30.44222],[77.37768,30.44087],[77.38756,30.442],[77.39049,30.4414],[77.38967,30.43476],[77.39137,30.43167],[77.399,30.43138],[77.40022,30.4288],[77.40353,30.43088],[77.40831,30.42872],[77.40652,30.42791],[77.40614,30.4256],[77.40399,30.42533],[77.40434,30.42214],[77.39864,30.41742],[77.40523,30.41019],[77.40954,30.40979],[77.40948,30.41534],[77.41587,30.41909],[77.41742,30.42538],[77.42197,30.42512],[77.43598,30.43278],[77.44274,30.43974],[77.44542,30.44476],[77.44963,30.4485],[77.45159,30.44827],[77.45612,30.45854],[77.45901,30.4581],[77.4662,30.45001],[77.46144,30.44388],[77.46156,30.43461],[77.45396,30.43373],[77.45369,30.43035],[77.44636,30.42294],[77.445,30.41867],[77.43376,30.41702],[77.43038,30.41169],[77.42382,30.41075],[77.42289,30.40408],[77.43849,30.40404],[77.44532,30.396],[77.45445,30.40081],[77.46271,30.40098],[77.46567,30.4025],[77.4735,30.401],[77.47954,30.40602],[77.49294,30.41169],[77.49871,30.40582],[77.50161,30.4087],[77.49995,30.41888],[77.50299,30.42983],[77.51538,30.44514],[77.5198,30.44539],[77.52555,30.44053],[77.52543,30.43332],[77.52883,30.42241],[77.53639,30.41076],[77.54796,30.40037],[77.54679,30.39601],[77.55714,30.38808],[77.58016,30.37734],[77.58563,30.37947],[77.5847,30.38529],[77.57512,30.39921],[77.57232,30.41045],[77.57427,30.41338],[77.58619,30.42158],[77.59184,30.42341],[77.59613,30.42729],[77.62268,30.43466],[77.62595,30.43469],[77.63192,30.43125],[77.637,30.43319],[77.6415,30.43179],[77.64507,30.43255],[77.64865,30.44032],[77.649,30.44515],[77.65237,30.44805],[77.66298,30.44704],[77.67077,30.44419],[77.69025,30.44802],[77.69794,30.45586],[77.7072,30.45924],[77.72098,30.473],[77.73172,30.47314],[77.7394,30.47602],[77.76436,30.49108],[77.77567,30.49431],[77.78307,30.50058],[77.79986,30.50106],[77.80829,30.50478],[77.81739,30.50633],[77.82022,30.52499],[77.82526,30.52594],[77.82682,30.52775],[77.82767,30.53274],[77.81994,30.54682],[77.8226,30.55378],[77.81785,30.56102],[77.81399,30.56008],[77.80637,30.55449],[77.79964,30.55766],[77.79718,30.55406],[77.79411,30.5532],[77.78357,30.55983],[77.77403,30.55784],[77.76752,30.56535],[77.76714,30.57115],[77.76066,30.57752],[77.75664,30.58561],[77.74838,30.59145],[77.74315,30.59311],[77.74325,30.59616],[77.74679,30.59746],[77.74325,30.60149],[77.7461,30.60389],[77.7519,30.60178],[77.75564,30.60469],[77.76435,30.59592],[77.77167,30.5969],[77.77241,30.59855],[77.77022,30.6049],[77.77107,30.61053],[77.76894,30.61452],[77.77111,30.61638],[77.78025,30.61284],[77.78672,30.61431],[77.79626,30.61365],[77.79255,30.62091],[77.78614,30.62442],[77.78605,30.62994],[77.79062,30.634],[77.78639,30.6367],[77.78674,30.6417],[77.78123,30.64667],[77.78603,30.65182],[77.78687,30.65498],[77.79249,30.65693],[77.79253,30.65869],[77.7895,30.66223],[77.78445,30.65956],[77.78119,30.65997],[77.77458,30.66476],[77.77251,30.6691],[77.76421,30.67082],[77.75975,30.67309],[77.75916,30.67577],[77.74741,30.67985],[77.74675,30.68304],[77.74841,30.68775],[77.74694,30.69443],[77.75258,30.69665],[77.7504,30.70011],[77.75582,30.70692],[77.74562,30.71387],[77.74741,30.71697],[77.74669,30.71972],[77.73659,30.72415],[77.7373,30.73034],[77.73319,30.73534],[77.72836,30.73414],[77.72153,30.7416],[77.70879,30.73972],[77.70505,30.74275],[77.70243,30.74627],[77.70517,30.75078],[77.70896,30.75249],[77.70378,30.76516],[77.71512,30.77072],[77.72136,30.77579],[77.73187,30.79187],[77.73294,30.80108],[77.73497,30.80448],[77.7456,30.81314],[77.74837,30.82163],[77.76128,30.82607],[77.75768,30.83513],[77.74402,30.84659],[77.74587,30.85112],[77.75418,30.85547],[77.75719,30.85998],[77.7561,30.87268],[77.75822,30.8768],[77.76321,30.8804],[77.77341,30.87754],[77.77613,30.87541],[77.77738,30.86315],[77.77923,30.86037],[77.78624,30.85715],[77.80568,30.85321],[77.80359,30.86499],[77.79886,30.86804],[77.80138,30.89332],[77.80883,30.8967],[77.81528,30.90438],[77.81587,30.91032],[77.81094,30.91663],[77.8133,30.92187],[77.81153,30.92327],[77.80493,30.92359],[77.79182,30.92173],[77.78653,30.92026],[77.78473,30.91715],[77.78265,30.91673],[77.7718,30.91861],[77.76752,30.91733],[77.76589,30.91968],[77.7628,30.91818],[77.76394,30.93045],[77.75274,30.93381],[77.75404,30.93754],[77.75075,30.94349],[77.74901,30.95348],[77.75409,30.96448],[77.76659,30.97013],[77.76917,30.97419],[77.77238,30.97435],[77.79367,30.96875],[77.81398,30.95383],[77.82436,30.9505],[77.82862,30.95329],[77.83473,30.95205],[77.8376,30.95317],[77.83769,30.95518],[77.83219,30.95959],[77.82419,30.95711],[77.81438,30.96178],[77.8163,30.97278],[77.82243,30.97655],[77.82406,30.98047],[77.82513,30.98509],[77.82417,30.98842],[77.83182,30.99399],[77.82199,31.00429],[77.82501,31.0098],[77.80994,31.01099],[77.80751,31.01621],[77.807,31.02677],[77.81145,31.03163],[77.81747,31.03304],[77.82288,31.02928],[77.82982,31.02876],[77.82137,31.04274],[77.82162,31.04671],[77.81604,31.04998],[77.81679,31.05669],[77.81136,31.0591],[77.82296,31.05866],[77.82205,31.05519],[77.82436,31.05545],[77.82893,31.05827],[77.83806,31.07265],[77.85124,31.07337],[77.86374,31.09396],[77.86047,31.10159],[77.86382,31.10851],[77.87323,31.11497],[77.87845,31.11633],[77.87803,31.11503],[77.88052,31.11479],[77.88241,31.11772],[77.88913,31.1195],[77.89089,31.12223],[77.88905,31.13299],[77.89401,31.13396],[77.90045,31.1422],[77.89874,31.15023],[77.90131,31.15182],[77.90787,31.15404],[77.91581,31.15389],[77.92152,31.15047],[77.92479,31.15043],[77.93516,31.15469],[77.94316,31.16126],[77.95149,31.16131],[77.95362,31.16595],[77.9589,31.17092],[77.96732,31.17337],[77.97327,31.16615],[77.98059,31.16212],[77.98472,31.15695],[77.99094,31.16005],[78.00082,31.16195],[78.00863,31.16082],[78.01445,31.15778],[78.02062,31.15155],[78.03034,31.15097],[78.02971,31.16411],[78.03384,31.16971],[78.04104,31.17292],[78.04264,31.1785],[78.05121,31.17989],[78.06596,31.18717],[78.08774,31.18724],[78.09714,31.18421],[78.10362,31.18538],[78.12348,31.20015],[78.1286,31.20078],[78.13338,31.20833],[78.14768,31.21059],[78.14842,31.2137],[78.15362,31.21822],[78.1581,31.2189],[78.16023,31.22548],[78.16715,31.22465],[78.17381,31.22684],[78.17976,31.22565],[78.18703,31.22705],[78.19218,31.22476],[78.19566,31.21971],[78.19948,31.2172],[78.20916,31.22012],[78.21244,31.21957],[78.21517,31.222],[78.21626,31.22971],[78.22032,31.23394],[78.22643,31.23501],[78.23709,31.23267],[78.24317,31.2293],[78.24695,31.23041],[78.25071,31.23331],[78.24951,31.24004],[78.25539,31.23851],[78.26047,31.23975],[78.26264,31.24519],[78.26868,31.24858],[78.26908,31.25232],[78.2735,31.25589],[78.27603,31.26151],[78.27996,31.26247],[78.28287,31.26621],[78.29188,31.25995],[78.29642,31.26113],[78.30255,31.25902],[78.30633,31.25989],[78.31045,31.27109],[78.31006,31.27409],[78.30804,31.27554],[78.31116,31.28314],[78.31678,31.28153],[78.31803,31.27892],[78.33187,31.27761],[78.33991,31.28267],[78.34561,31.28059],[78.35197,31.2806],[78.37032,31.28633],[78.38354,31.28248],[78.3863,31.27143],[78.38951,31.2742],[78.39617,31.27531],[78.39772,31.26622],[78.40717,31.25621],[78.40283,31.24789],[78.40695,31.24219],[78.4142,31.23961],[78.42074,31.24405],[78.42591,31.24425],[78.43116,31.25275],[78.43425,31.25458],[78.43658,31.25412],[78.44359,31.24435],[78.44999,31.24064],[78.45571,31.24102],[78.45771,31.23778],[78.46174,31.23603],[78.47286,31.21845],[78.4798,31.21378],[78.48145,31.20451],[78.48427,31.20121],[78.48375,31.19894],[78.50756,31.19587],[78.52652,31.19646],[78.55162,31.19991],[78.56549,31.21348],[78.56807,31.21915],[78.57486,31.22122],[78.57824,31.22526],[78.5895,31.22667],[78.59676,31.22512],[78.60092,31.2281],[78.60934,31.22926],[78.62257,31.22407],[78.62597,31.21787],[78.63655,31.21484],[78.64704,31.21472],[78.6493,31.21087],[78.64907,31.20217],[78.65732,31.19573],[78.65654,31.19357],[78.66001,31.19108],[78.65801,31.18504],[78.66172,31.18923],[78.66735,31.19075],[78.6719,31.19688],[78.67882,31.19625],[78.68677,31.19776],[78.695,31.19217],[78.70336,31.189],[78.7097,31.1897],[78.71833,31.18777],[78.72838,31.18965],[78.75641,31.18783],[78.76518,31.18576],[78.77916,31.18889],[78.79675,31.19641],[78.80991,31.19828],[78.81641,31.19437],[78.81738,31.18961],[78.8143,31.18754],[78.81047,31.18026],[78.81072,31.17187],[78.81304,31.16888],[78.81807,31.16778],[78.82489,31.16351],[78.82296,31.15774],[78.82734,31.15262],[78.83121,31.1406],[78.83814,31.13834],[78.84147,31.12971],[78.84801,31.12511],[78.85352,31.12208],[78.86524,31.12001],[78.87289,31.10886],[78.88543,31.09872],[78.89064,31.0969],[78.90044,31.09979],[78.9086,31.09886],[78.91231,31.10208],[78.91273,31.10764],[78.92057,31.11072],[78.92593,31.10944],[78.93223,31.10068],[78.94512,31.10057],[78.95073,31.09798],[78.96308,31.10118],[78.97299,31.10808],[78.99004,31.10852],[78.99855,31.10995],[79.00216,31.11242],[79.00892,31.10992],[79.0068,31.11853],[79.00366,31.12154],[78.9996,31.13469],[78.99076,31.13806],[78.98758,31.14329],[78.99083,31.14816],[78.98822,31.15421],[78.9905,31.16127],[78.98591,31.17383],[78.98373,31.17613],[78.9808,31.17616],[78.9792,31.17902],[78.97266,31.17991],[78.95753,31.18659],[78.95831,31.19037],[78.948,31.19851],[78.94703,31.20279],[78.94383,31.20648],[78.94868,31.21331],[78.94773,31.21677],[78.93113,31.21605],[78.92605,31.22007],[78.92609,31.2231],[78.92206,31.22531],[78.92203,31.23154],[78.91761,31.24576],[78.9161,31.24859],[78.91155,31.25147],[78.9121,31.25515],[78.89879,31.26272],[78.89703,31.27688],[78.89241,31.28789],[78.87271,31.30914],[78.85465,31.32346],[78.86381,31.34641],[78.85877,31.36637],[78.84793,31.3792],[78.83624,31.38489],[78.82357,31.38643],[78.79201,31.39554],[78.80034,31.4033],[78.81093,31.40917],[78.81659,31.41928],[78.81871,31.42885],[78.8181,31.44036],[78.81278,31.44974],[78.79551,31.4627],[78.77357,31.47394],[78.76663,31.48642],[78.75737,31.48765],[78.74315,31.4804],[78.73624,31.48057],[78.73428,31.48498],[78.73522,31.49296],[78.72839,31.51477],[78.72898,31.51981],[78.73595,31.52854],[78.74705,31.53861],[78.7574,31.54238],[78.76981,31.54257],[78.7784,31.54819],[78.78386,31.55663],[78.79072,31.56104],[78.80295,31.56303],[78.81891,31.57224],[78.82934,31.58491],[78.84581,31.59833],[78.85334,31.60743],[78.85199,31.61688],[78.83994,31.62811],[78.80699,31.64711],[78.80034,31.65787],[78.79822,31.68181],[78.79483,31.68253],[78.78692,31.67855],[78.77581,31.67697],[78.7627,31.67938],[78.75402,31.68565],[78.74485,31.70044],[78.74134,31.72111],[78.73143,31.73384],[78.72839,31.74174],[78.73327,31.74938],[78.74069,31.75341],[78.74119,31.75761],[78.73195,31.75926],[78.72016,31.76451],[78.70985,31.78662],[78.70991,31.79976],[78.7143,31.80745],[78.72168,31.81529],[78.73202,31.82289],[78.74021,31.83746],[78.74584,31.85564],[78.74512,31.87055],[78.74764,31.87924],[78.75277,31.88474],[78.75014,31.90448],[78.76157,31.91283],[78.7707,31.92265],[78.77816,31.93516],[78.78015,31.95195],[78.78615,31.97307],[78.78855,31.99323],[78.78555,31.99731],[78.75811,32.00095],[78.73536,32.02328],[78.71891,32.03572],[78.70777,32.04686],[78.69619,32.0627],[78.68343,32.07271],[78.67396,32.0854],[78.66593,32.10178],[78.6566,32.11148],[78.62122,32.11153],[78.61767,32.11523],[78.61401,32.12232],[78.6148,32.13329],[78.61139,32.14248],[78.59979,32.14983],[78.59678,32.15391],[78.59623,32.15777],[78.60788,32.16781],[78.61376,32.17537],[78.61445,32.18125],[78.61257,32.19499],[78.61469,32.20881],[78.60841,32.21909],[78.58795,32.2361],[78.57347,32.24454],[78.55948,32.24869],[78.54589,32.24771],[78.49628,32.23747],[78.46317,32.24024],[78.46084,32.24171],[78.4635,32.24742],[78.47376,32.25844],[78.47997,32.26895],[78.48341,32.28139],[78.48479,32.34914],[78.49674,32.36171],[78.50579,32.36646],[78.51479,32.37504],[78.52175,32.39185],[78.53341,32.41038],[78.53351,32.41546],[78.5228,32.4223],[78.503,32.41972],[78.49577,32.42202],[78.48975,32.43482],[78.47586,32.44871],[78.46555,32.45466],[78.46088,32.46184],[78.46003,32.46742],[78.4621,32.47234],[78.46724,32.47785],[78.46688,32.48763],[78.46125,32.5038],[78.44299,32.51041],[78.43492,32.50981],[78.42863,32.50736],[78.4253,32.50891],[78.4175,32.51931],[78.40987,32.52401],[78.39952,32.5246],[78.39894,32.5209],[78.39419,32.5148],[78.38601,32.51301],[78.37856,32.50645],[78.36514,32.4994],[78.36761,32.49373],[78.36654,32.48544],[78.36378,32.48227],[78.34971,32.47746],[78.34998,32.47334],[78.35314,32.46994],[78.34897,32.46433],[78.34055,32.46273],[78.32844,32.46501],[78.32575,32.45964],[78.32844,32.45403],[78.33446,32.45066],[78.33271,32.44609],[78.32913,32.44337],[78.31144,32.44633],[78.30741,32.45209],[78.30019,32.45548],[78.29785,32.46234],[78.28737,32.46299],[78.28473,32.46854],[78.28566,32.47155],[78.29127,32.47532],[78.28953,32.47934],[78.28575,32.48239],[78.28995,32.48514],[78.29264,32.48984],[78.29252,32.49897],[78.30113,32.50387],[78.3067,32.5115],[78.30455,32.51743],[78.30866,32.52555],[78.30697,32.53754],[78.30904,32.5431],[78.31297,32.54511],[78.3155,32.54967],[78.31245,32.55147],[78.31445,32.55991],[78.31355,32.56591],[78.33149,32.57662],[78.34328,32.57808],[78.35056,32.58896],[78.3629,32.58966],[78.36617,32.59366],[78.37859,32.59794],[78.37961,32.60455],[78.38414,32.60894],[78.3896,32.60999],[78.39079,32.61488],[78.39753,32.61761],[78.40231,32.61707],[78.40363,32.61967],[78.40966,32.62313],[78.40838,32.6271],[78.40135,32.62831],[78.39161,32.63343],[78.38786,32.64078],[78.38775,32.64514],[78.38142,32.65413],[78.38651,32.66468],[78.38714,32.67725],[78.39168,32.68537],[78.40074,32.6942],[78.39721,32.6985],[78.39699,32.70757],[78.38887,32.71184],[78.38537,32.71956],[78.38466,32.7317],[78.38944,32.74069],[78.38656,32.74523],[78.38596,32.74965],[78.388,32.75669],[78.3649,32.75334],[78.35705,32.7577],[78.33326,32.74971],[78.31285,32.73978],[78.30988,32.7351],[78.30585,32.73248],[78.3139,32.72081],[78.31473,32.71739],[78.30685,32.71043],[78.30602,32.70712],[78.30179,32.70411],[78.2946,32.70363],[78.29318,32.70034],[78.27391,32.70253],[78.26849,32.7011],[78.26054,32.7029],[78.25577,32.69706],[78.2538,32.69202],[78.25441,32.68918],[78.2459,32.6716],[78.23223,32.67171],[78.21895,32.66463],[78.20394,32.66706],[78.20129,32.67043],[78.19692,32.67052],[78.17576,32.68101],[78.17115,32.68047],[78.16548,32.68311],[78.15836,32.68399],[78.14973,32.68175],[78.14238,32.68183],[78.14788,32.67187],[78.14719,32.65396],[78.13664,32.65447],[78.1271,32.65223],[78.12062,32.66073],[78.11676,32.66027],[78.11049,32.66277],[78.0926,32.64784],[78.09592,32.6444],[78.0992,32.63644],[78.09886,32.63036],[78.09171,32.62851],[78.08753,32.62465],[78.08134,32.62622],[78.07471,32.63094],[78.06788,32.62663],[78.06088,32.62642],[78.05639,32.63468],[78.04702,32.64531],[78.04276,32.64032],[78.03402,32.63693],[78.03345,32.63381],[78.02516,32.62723],[78.02903,32.6235],[78.01589,32.61961],[78.01282,32.62181],[78.01186,32.62499],[78.00329,32.62457],[77.99623,32.62683],[77.99151,32.63064],[77.9917,32.63254],[77.98757,32.63614],[77.98466,32.6415],[77.97056,32.64636],[77.97227,32.65292],[77.97091,32.65497],[77.96585,32.65757],[77.95512,32.65819],[77.94744,32.66088],[77.9428,32.66559],[77.94096,32.6734],[77.93457,32.68114],[77.93106,32.68201],[77.92665,32.68628],[77.91862,32.69054],[77.91829,32.69627],[77.92246,32.69905],[77.92155,32.70316],[77.92282,32.70643],[77.92163,32.70844],[77.92455,32.71127],[77.92485,32.71723],[77.92803,32.722],[77.93439,32.72586],[77.93161,32.73171],[77.9263,32.73482],[77.92703,32.73648],[77.93066,32.73696],[77.92926,32.74253],[77.93291,32.74655],[77.93143,32.75048],[77.93413,32.7565],[77.93293,32.76129],[77.92723,32.76572],[77.92572,32.772],[77.91624,32.77384],[77.90368,32.77188],[77.89456,32.77826],[77.89183,32.78287],[77.88419,32.78755],[77.88795,32.79869],[77.8811,32.80413],[77.88209,32.81036],[77.87851,32.81918],[77.87127,32.82248],[77.86919,32.82703],[77.8554,32.83234],[77.84687,32.83898],[77.83901,32.84201],[77.83532,32.84067],[77.83244,32.83627],[77.82612,32.83619],[77.81593,32.8483],[77.80549,32.84988],[77.79766,32.85629],[77.79186,32.85593],[77.78096,32.86579],[77.78398,32.88285],[77.78947,32.89061],[77.79327,32.8931],[77.80246,32.89333],[77.80667,32.89556],[77.81069,32.90016],[77.81175,32.90454],[77.81063,32.90703],[77.79973,32.91244],[77.79456,32.91999],[77.7876,32.92347],[77.77183,32.93802],[77.7658,32.94154],[77.76475,32.94358],[77.76651,32.94629],[77.76354,32.94905],[77.75091,32.95456],[77.74977,32.95773],[77.7445,32.962],[77.74101,32.96903],[77.73282,32.97178],[77.73095,32.97455],[77.72494,32.96932],[77.71957,32.96866],[77.7141,32.97633],[77.71315,32.98246],[77.6975,32.97938],[77.69778,32.98271],[77.68952,32.98802],[77.68249,32.9888],[77.68072,32.98379],[77.68202,32.97477],[77.67873,32.96958],[77.67407,32.96735],[77.67413,32.96119],[77.66413,32.95831],[77.65601,32.95888],[77.65269,32.95488],[77.64358,32.94922],[77.64316,32.94651],[77.60311,32.94293],[77.59436,32.92594],[77.57725,32.91445],[77.56372,32.9123],[77.55039,32.90031],[77.54539,32.8916],[77.53847,32.88608],[77.51258,32.87736],[77.50149,32.88558],[77.49719,32.88037],[77.49103,32.87961],[77.48619,32.87369],[77.48082,32.87054],[77.47494,32.86161],[77.4692,32.85868],[77.46119,32.85998],[77.45207,32.86409],[77.44782,32.87026],[77.44796,32.87531],[77.44481,32.8799],[77.43956,32.87924],[77.43331,32.87593],[77.42798,32.87561],[77.41344,32.88412],[77.4045,32.88274],[77.39589,32.87717],[77.39422,32.87132],[77.38779,32.86355],[77.38146,32.86192],[77.37459,32.85494],[77.37587,32.84918],[77.37988,32.84454],[77.37924,32.83892],[77.3766,32.83708],[77.37287,32.8232],[77.35315,32.81599],[77.33896,32.81678],[77.33679,32.81904],[77.33602,32.82498],[77.33203,32.8261],[77.32968,32.83047],[77.327,32.83149],[77.32534,32.83551],[77.32874,32.84297],[77.3219,32.85154],[77.30949,32.8516],[77.30086,32.84986],[77.29044,32.85708],[77.28607,32.86449],[77.27399,32.87385],[77.26629,32.86883],[77.26269,32.86409],[77.25427,32.86394],[77.25524,32.86602],[77.25331,32.86934],[77.25,32.87236],[77.24426,32.87267],[77.23759,32.88018],[77.23726,32.88335],[77.23997,32.88439],[77.24299,32.89216],[77.23367,32.89444],[77.21913,32.90407],[77.20292,32.90655],[77.19341,32.9164],[77.19287,32.92344],[77.18797,32.92874],[77.1785,32.92313],[77.17393,32.91333],[77.17044,32.91067],[77.15574,32.91158],[77.15988,32.91304],[77.16389,32.91823],[77.16171,32.93171],[77.16454,32.93648],[77.15947,32.93825],[77.16194,32.95064],[77.16113,32.95266],[77.14873,32.95616],[77.14922,32.96058],[77.14736,32.9657],[77.14912,32.96848],[77.15052,32.97817],[77.14678,32.97851],[77.14217,32.98149],[77.13372,32.98007],[77.11602,32.98467],[77.11161,32.97914],[77.11076,32.97514],[77.09684,32.9715],[77.08652,32.97241],[77.08185,32.97528],[77.08266,32.97844],[77.08016,32.98301],[77.07119,32.98441],[77.05704,32.9916],[77.04739,32.99862],[77.03894,32.99765],[77.03163,32.98971],[77.02387,32.99132],[77.00949,32.98866],[76.9959,32.99757],[76.99231,33.00179],[76.98901,33.00262],[76.98082,33.0],[76.97135,33.00028],[76.96812,33.00418],[76.96373,33.00517],[76.9606,33.00914],[76.96145,33.01129],[76.95966,33.01534],[76.9507,33.01818],[76.94097,33.02832],[76.93299,33.02817],[76.92869,33.03166],[76.92577,33.03827],[76.92546,33.04742],[76.91421,33.06338],[76.91089,33.07601],[76.9052,33.07952],[76.90569,33.08504],[76.90996,33.08962],[76.90929,33.09381],[76.89771,33.09869],[76.89749,33.10085],[76.89255,33.10591],[76.89327,33.10992],[76.88892,33.11722],[76.8851,33.12138],[76.87724,33.11884],[76.87051,33.11336],[76.86243,33.11272],[76.85507,33.11438],[76.84923,33.12043],[76.85291,33.12569],[76.84891,33.12871],[76.84299,33.13033],[76.84397,33.13778],[76.83881,33.14122],[76.83481,33.14065],[76.83005,33.14284],[76.82964,33.14659],[76.82537,33.14817],[76.818,33.15709],[76.8167,33.16034],[76.81737,33.16673],[76.81291,33.17191],[76.81354,33.17724],[76.81884,33.17989],[76.82238,33.18507],[76.81739,33.19414],[76.82364,33.19762],[76.8293,33.20325],[76.83446,33.20485],[76.83406,33.20859],[76.83131,33.20995],[76.83176,33.21233],[76.82561,33.21569],[76.82839,33.21856],[76.82771,33.22257],[76.83185,33.22911],[76.83769,33.23403],[76.84052,33.23959],[76.84461,33.24227],[76.84317,33.24674],[76.83071,33.24919],[76.82352,33.24333],[76.8224,33.23678],[76.82006,33.23584],[76.80684,33.24498],[76.80258,33.25385]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"20","area_level":"State","area_name":"Jharkhand","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[87.58452,25.33348],[87.59185,25.34188],[87.58389,25.34918],[87.58251,25.34316],[87.57454,25.34068],[87.57097,25.33327],[87.56266,25.33399],[87.55169,25.3325],[87.55029,25.32418],[87.5477,25.32373],[87.54854,25.32117],[87.54659,25.30802],[87.54281,25.29446],[87.54341,25.28258],[87.54183,25.28066],[87.53236,25.28028],[87.52588,25.28433],[87.51683,25.29335],[87.50162,25.29233],[87.49362,25.30751],[87.49003,25.29729],[87.4861,25.29727],[87.48602,25.29579],[87.49001,25.28044],[87.49864,25.27673],[87.49538,25.27145],[87.50079,25.26679],[87.49881,25.26258],[87.50049,25.25979],[87.49058,25.26127],[87.4764,25.23785],[87.47781,25.19414],[87.4626,25.19487],[87.46113,25.19776],[87.45885,25.19685],[87.44472,25.20456],[87.44089,25.20473],[87.42604,25.21111],[87.42255,25.21393],[87.41183,25.21507],[87.41185,25.21893],[87.40349,25.22241],[87.40319,25.2253],[87.40098,25.2269],[87.39139,25.22787],[87.38753,25.22293],[87.38315,25.22435],[87.37809,25.21691],[87.3751,25.21505],[87.37152,25.20625],[87.35988,25.21188],[87.33428,25.21613],[87.33324,25.22268],[87.32729,25.22362],[87.32281,25.20628],[87.31823,25.19526],[87.32084,25.18995],[87.3154,25.18013],[87.31422,25.16881],[87.31899,25.16477],[87.31647,25.16026],[87.31437,25.16028],[87.31198,25.14877],[87.30797,25.14741],[87.30494,25.14289],[87.30664,25.14079],[87.30574,25.13794],[87.30685,25.13641],[87.30295,25.13424],[87.2962,25.11336],[87.29793,25.11205],[87.29522,25.10236],[87.29812,25.09976],[87.2954,25.08854],[87.26982,25.09397],[87.26705,25.09791],[87.26368,25.09964],[87.26318,25.10331],[87.25034,25.10573],[87.25095,25.10201],[87.24883,25.10132],[87.24934,25.10012],[87.24688,25.09966],[87.24436,25.10143],[87.24054,25.09797],[87.23981,25.09209],[87.23767,25.09233],[87.2374,25.08584],[87.21429,25.09123],[87.21273,25.08195],[87.20795,25.08237],[87.201,25.07872],[87.19921,25.07285],[87.19561,25.07078],[87.19368,25.07204],[87.1927,25.07008],[87.19452,25.0689],[87.19225,25.06685],[87.18942,25.06799],[87.18196,25.06697],[87.17773,25.06298],[87.17182,25.04828],[87.16587,25.04613],[87.16726,25.04061],[87.16322,25.03776],[87.1589,25.02897],[87.14934,25.02489],[87.14585,25.01886],[87.14697,25.01334],[87.14561,25.00981],[87.15032,25.00255],[87.14923,24.99896],[87.15126,24.98725],[87.14891,24.9776],[87.14612,24.97357],[87.14914,24.96896],[87.14728,24.96476],[87.14881,24.95987],[87.14364,24.94414],[87.15091,24.93478],[87.15174,24.93156],[87.14961,24.92659],[87.14292,24.92218],[87.14232,24.9144],[87.14349,24.91118],[87.14733,24.90991],[87.14806,24.90357],[87.1519,24.90373],[87.1538,24.89997],[87.15098,24.89879],[87.15543,24.89282],[87.15555,24.88502],[87.14734,24.87109],[87.14091,24.86591],[87.14069,24.86408],[87.14449,24.86331],[87.14259,24.8606],[87.13478,24.85961],[87.13242,24.86261],[87.1291,24.86173],[87.12059,24.85519],[87.11007,24.85701],[87.10612,24.85506],[87.09878,24.84786],[87.10038,24.84768],[87.10177,24.8437],[87.10072,24.84002],[87.0912,24.82547],[87.08521,24.8236],[87.07736,24.82528],[87.07434,24.81985],[87.07331,24.8086],[87.08355,24.80606],[87.08578,24.80363],[87.09574,24.80272],[87.09289,24.79191],[87.08801,24.78634],[87.08535,24.78632],[87.08357,24.78192],[87.07871,24.77753],[87.08002,24.77455],[87.0786,24.76833],[87.08431,24.75613],[87.0781,24.75243],[87.07942,24.74888],[87.07021,24.74764],[87.06964,24.74556],[87.07007,24.74348],[87.07386,24.74137],[87.0729,24.73703],[87.07861,24.7366],[87.07656,24.73017],[87.08074,24.72907],[87.07714,24.72157],[87.07823,24.71935],[87.07258,24.71472],[87.06805,24.70339],[87.06975,24.69506],[87.06549,24.689],[87.06194,24.68879],[87.05975,24.6826],[87.05975,24.67632],[87.05407,24.66934],[87.05341,24.65743],[87.05067,24.65161],[87.05058,24.64463],[87.05244,24.64127],[87.04615,24.62987],[87.04898,24.62403],[87.05064,24.60878],[87.04662,24.60947],[87.04477,24.61297],[87.03811,24.61723],[87.03623,24.61388],[87.02305,24.6157],[87.02415,24.62418],[87.02127,24.62946],[87.01076,24.63119],[87.00764,24.62887],[87.00632,24.62296],[86.9961,24.62011],[86.99268,24.62584],[86.98751,24.62769],[86.98521,24.63278],[86.98065,24.63479],[86.97758,24.63957],[86.96927,24.63536],[86.96154,24.63463],[86.95774,24.6318],[86.95279,24.63147],[86.95134,24.63347],[86.95324,24.63491],[86.95342,24.63972],[86.95599,24.64026],[86.9582,24.64759],[86.93759,24.65017],[86.93902,24.64341],[86.9421,24.64129],[86.94206,24.63873],[86.94494,24.63583],[86.93668,24.63031],[86.93277,24.63061],[86.92761,24.62451],[86.92892,24.6212],[86.92678,24.61374],[86.92214,24.61014],[86.9191,24.60486],[86.9195,24.60212],[86.9144,24.60041],[86.90933,24.59518],[86.90732,24.58816],[86.90895,24.5825],[86.91327,24.5774],[86.90937,24.57246],[86.91472,24.56831],[86.91539,24.56236],[86.91761,24.56086],[86.91596,24.55452],[86.9175,24.5467],[86.91458,24.54221],[86.90356,24.54752],[86.90249,24.55273],[86.89506,24.56082],[86.8935,24.55782],[86.88687,24.55884],[86.88795,24.5648],[86.88303,24.56726],[86.8821,24.5713],[86.88051,24.57219],[86.87672,24.56803],[86.86901,24.56547],[86.86362,24.5666],[86.86043,24.56381],[86.86202,24.56081],[86.86013,24.55638],[86.85684,24.55488],[86.85019,24.55851],[86.843,24.5581],[86.84145,24.56333],[86.84364,24.56854],[86.84265,24.57423],[86.83465,24.57508],[86.83183,24.5716],[86.82355,24.57239],[86.82161,24.57451],[86.81825,24.57318],[86.81597,24.57016],[86.81192,24.56905],[86.80315,24.57033],[86.80263,24.5736],[86.80537,24.57827],[86.81171,24.58254],[86.80716,24.59261],[86.81124,24.59827],[86.8036,24.60187],[86.78901,24.61869],[86.78505,24.61651],[86.78238,24.61897],[86.77324,24.62181],[86.76494,24.61945],[86.75869,24.61938],[86.75399,24.6213],[86.74825,24.60576],[86.74984,24.59507],[86.74668,24.5943],[86.74163,24.58712],[86.73528,24.58455],[86.73469,24.57949],[86.72308,24.58399],[86.70159,24.57329],[86.69162,24.57612],[86.68598,24.56995],[86.68077,24.57099],[86.67024,24.56488],[86.65173,24.5704],[86.64575,24.58063],[86.62417,24.58857],[86.62281,24.59626],[86.62439,24.59938],[86.61042,24.5987],[86.61092,24.60399],[86.61299,24.60651],[86.6148,24.60609],[86.61459,24.60831],[86.60329,24.60838],[86.60307,24.60194],[86.59819,24.59991],[86.59716,24.59657],[86.58887,24.58853],[86.58922,24.5793],[86.58029,24.56653],[86.56981,24.56471],[86.56647,24.56649],[86.56163,24.56222],[86.55918,24.56227],[86.55834,24.55824],[86.56379,24.55255],[86.55336,24.5435],[86.55232,24.53597],[86.54153,24.54034],[86.53629,24.53585],[86.52936,24.54028],[86.51751,24.53033],[86.51535,24.52537],[86.50957,24.52219],[86.50078,24.50404],[86.50268,24.49324],[86.5004,24.48944],[86.49708,24.49025],[86.49434,24.4862],[86.49536,24.4831],[86.49184,24.47585],[86.49447,24.47338],[86.49031,24.47132],[86.49086,24.46718],[86.48673,24.46414],[86.49532,24.45626],[86.49677,24.44375],[86.49421,24.44082],[86.49128,24.42808],[86.47943,24.42794],[86.47702,24.42451],[86.46866,24.42627],[86.4665,24.42386],[86.4665,24.42135],[86.46918,24.41986],[86.46915,24.41535],[86.46689,24.41013],[86.46789,24.40616],[86.47075,24.40567],[86.47146,24.40152],[86.4701,24.39741],[86.47193,24.39335],[86.46672,24.38484],[86.46713,24.38107],[86.4579,24.3782],[86.45603,24.37197],[86.4449,24.36783],[86.43255,24.38014],[86.42778,24.37715],[86.42355,24.37951],[86.42044,24.37867],[86.41213,24.38097],[86.40426,24.38855],[86.40242,24.39677],[86.40004,24.39853],[86.397,24.39836],[86.39675,24.40374],[86.38115,24.41291],[86.37806,24.41623],[86.37746,24.41958],[86.37465,24.41705],[86.36857,24.41869],[86.36727,24.42448],[86.35816,24.42926],[86.3499,24.44739],[86.34498,24.44724],[86.34394,24.44398],[86.33485,24.44245],[86.33144,24.44437],[86.31738,24.44152],[86.31355,24.44706],[86.29972,24.44773],[86.29494,24.45092],[86.29456,24.45601],[86.29986,24.45848],[86.29858,24.45965],[86.27601,24.4658],[86.28183,24.47911],[86.29042,24.4789],[86.29338,24.48121],[86.29378,24.48817],[86.29887,24.49525],[86.29942,24.5],[86.30331,24.50545],[86.30898,24.50976],[86.30913,24.51248],[86.30557,24.51941],[86.30569,24.52769],[86.29929,24.53034],[86.29747,24.53351],[86.29713,24.5361],[86.29999,24.53627],[86.30804,24.54881],[86.30414,24.5529],[86.30278,24.55924],[86.30084,24.56012],[86.30403,24.56581],[86.30744,24.56723],[86.30709,24.57139],[86.31761,24.57741],[86.31613,24.58128],[86.32321,24.58679],[86.31936,24.58596],[86.31748,24.58823],[86.31412,24.58702],[86.30856,24.58846],[86.30917,24.58389],[86.30302,24.58328],[86.30074,24.58608],[86.29745,24.5851],[86.29192,24.5884],[86.28799,24.587],[86.28492,24.58786],[86.28152,24.58511],[86.27455,24.58658],[86.26946,24.58477],[86.27508,24.57975],[86.27467,24.57713],[86.2677,24.58055],[86.26434,24.58425],[86.26282,24.58396],[86.2626,24.57927],[86.25921,24.57867],[86.25695,24.58057],[86.25454,24.58709],[86.2461,24.58761],[86.24154,24.59001],[86.2408,24.59696],[86.23834,24.60013],[86.22954,24.60572],[86.22417,24.60679],[86.22216,24.6109],[86.2183,24.61101],[86.2143,24.61379],[86.21336,24.60235],[86.21635,24.59854],[86.21445,24.59493],[86.20765,24.59113],[86.19727,24.58824],[86.19448,24.58565],[86.1858,24.58595],[86.18048,24.58368],[86.17945,24.58509],[86.1615,24.58625],[86.15022,24.59513],[86.15184,24.60081],[86.15072,24.60255],[86.14135,24.60704],[86.13326,24.60519],[86.12922,24.611],[86.12532,24.61148],[86.12496,24.61417],[86.12104,24.61849],[86.12196,24.62206],[86.11865,24.62578],[86.11946,24.62993],[86.1214,24.6317],[86.12045,24.63544],[86.11852,24.6359],[86.1199,24.63875],[86.11715,24.63949],[86.11522,24.64395],[86.12509,24.65457],[86.12706,24.66687],[86.12475,24.67111],[86.1319,24.67589],[86.13232,24.67901],[86.12902,24.68623],[86.12836,24.69865],[86.119,24.71118],[86.11652,24.71229],[86.1164,24.71731],[86.10869,24.7272],[86.1094,24.7307],[86.10741,24.7348],[86.09073,24.746],[86.06631,24.75165],[86.0558,24.74605],[86.03709,24.74113],[86.0351,24.74636],[86.04323,24.74763],[86.04688,24.75266],[86.05411,24.75623],[86.0569,24.76107],[86.05852,24.77173],[86.0551,24.77969],[86.04558,24.77642],[86.03755,24.77648],[86.03236,24.77075],[86.02421,24.76668],[86.00507,24.76188],[85.99644,24.75319],[85.98008,24.74882],[85.97348,24.74285],[85.9718,24.73651],[85.96905,24.73313],[85.9585,24.7323],[85.9444,24.73357],[85.93663,24.73515],[85.92517,24.74095],[85.91392,24.74999],[85.90021,24.77049],[85.90006,24.77281],[85.88658,24.78406],[85.88609,24.78687],[85.88928,24.78974],[85.88942,24.79236],[85.86723,24.80425],[85.85493,24.80799],[85.82732,24.80827],[85.82043,24.80764],[85.81527,24.80405],[85.81064,24.79901],[85.80957,24.79402],[85.78909,24.79647],[85.78001,24.79946],[85.77828,24.79663],[85.76804,24.80393],[85.76871,24.80783],[85.76216,24.81277],[85.75742,24.81319],[85.73673,24.82106],[85.73089,24.81335],[85.73076,24.80238],[85.7291,24.79838],[85.7236,24.79706],[85.72235,24.7857],[85.70736,24.77976],[85.70955,24.77685],[85.70668,24.76838],[85.70965,24.76703],[85.70456,24.76714],[85.70383,24.75134],[85.70937,24.74635],[85.70935,24.74266],[85.70679,24.74072],[85.70646,24.73726],[85.70775,24.73721],[85.70631,24.73212],[85.70826,24.72591],[85.7001,24.7171],[85.69783,24.71085],[85.68913,24.69808],[85.682,24.69192],[85.64921,24.68477],[85.64991,24.68046],[85.65414,24.67418],[85.66052,24.67236],[85.65999,24.66764],[85.66677,24.66087],[85.66752,24.65745],[85.66455,24.65476],[85.66488,24.65224],[85.66256,24.64964],[85.66494,24.64288],[85.66867,24.64059],[85.66744,24.63683],[85.6722,24.62969],[85.67333,24.62097],[85.6762,24.61662],[85.6741,24.61133],[85.6756,24.60515],[85.67396,24.59747],[85.67712,24.59457],[85.67753,24.59067],[85.66738,24.57889],[85.65809,24.57803],[85.65135,24.57447],[85.65005,24.57592],[85.63184,24.57888],[85.62686,24.58186],[85.62028,24.57992],[85.61473,24.58074],[85.61191,24.58791],[85.60199,24.59556],[85.5981,24.59615],[85.59419,24.59448],[85.5922,24.59744],[85.58946,24.59678],[85.58077,24.60068],[85.57224,24.59621],[85.566,24.58725],[85.56627,24.57881],[85.56718,24.57679],[85.57161,24.5747],[85.56977,24.56933],[85.57224,24.5654],[85.57177,24.56182],[85.56787,24.55834],[85.5615,24.55868],[85.56023,24.55274],[85.55627,24.55801],[85.54456,24.56331],[85.54074,24.56272],[85.5423,24.5576],[85.54381,24.55692],[85.54545,24.54803],[85.54078,24.53051],[85.53816,24.52785],[85.52736,24.52398],[85.52396,24.52127],[85.51839,24.52615],[85.5073,24.52531],[85.50952,24.53155],[85.50883,24.53766],[85.49902,24.54615],[85.49166,24.5481],[85.47141,24.54475],[85.46542,24.53913],[85.45959,24.53624],[85.45028,24.53715],[85.44429,24.5342],[85.43925,24.53319],[85.43679,24.53426],[85.43396,24.53114],[85.43463,24.52852],[85.43,24.52955],[85.43226,24.53171],[85.41334,24.54136],[85.40448,24.54186],[85.40099,24.54535],[85.38861,24.5493],[85.385,24.55193],[85.38435,24.55549],[85.37078,24.55535],[85.37111,24.5528],[85.39749,24.5448],[85.39671,24.54007],[85.39428,24.53972],[85.39207,24.53481],[85.39193,24.53035],[85.3729,24.52497],[85.36559,24.52573],[85.35087,24.523],[85.33609,24.52332],[85.33389,24.52169],[85.3222,24.51999],[85.30403,24.52319],[85.28809,24.52326],[85.28137,24.52022],[85.28333,24.51698],[85.28057,24.51247],[85.28343,24.50332],[85.28558,24.5023],[85.28387,24.49883],[85.28488,24.49464],[85.28233,24.49167],[85.27486,24.49317],[85.26697,24.49126],[85.24911,24.49073],[85.24545,24.48471],[85.24017,24.4815],[85.24202,24.47958],[85.24128,24.47521],[85.2369,24.47105],[85.23221,24.47309],[85.22584,24.46313],[85.2221,24.46509],[85.20658,24.46733],[85.20293,24.46133],[85.1999,24.46047],[85.19127,24.46307],[85.18057,24.46245],[85.17217,24.45904],[85.16731,24.46112],[85.16075,24.46034],[85.15405,24.45499],[85.15529,24.45252],[85.15443,24.44817],[85.15719,24.4444],[85.16392,24.44389],[85.16657,24.43658],[85.17035,24.43316],[85.17034,24.42914],[85.17535,24.42385],[85.1739,24.42062],[85.16965,24.42125],[85.16541,24.41943],[85.16229,24.41262],[85.15222,24.41202],[85.1438,24.40718],[85.13261,24.4051],[85.12765,24.402],[85.12306,24.40198],[85.11662,24.3935],[85.11681,24.39143],[85.10269,24.38487],[85.10343,24.37708],[85.09869,24.37359],[85.08905,24.3725],[85.08533,24.37608],[85.07404,24.37703],[85.07324,24.37823],[85.08006,24.39342],[85.07733,24.39306],[85.07833,24.39669],[85.08313,24.39971],[85.08107,24.40599],[85.08309,24.41558],[85.08202,24.4159],[85.08187,24.41391],[85.07981,24.41546],[85.08102,24.43304],[85.06907,24.42221],[85.06297,24.40692],[85.06111,24.40586],[85.04591,24.40914],[85.04234,24.41428],[85.03874,24.41195],[85.03117,24.41457],[85.01912,24.4091],[85.00269,24.39728],[84.9983,24.39756],[84.99693,24.3947],[84.98382,24.38747],[84.98124,24.38084],[84.97489,24.37471],[84.9609,24.37342],[84.95479,24.37133],[84.94081,24.37625],[84.93748,24.37992],[84.92286,24.37753],[84.9162,24.3733],[84.90383,24.37225],[84.90034,24.37682],[84.90898,24.38354],[84.90499,24.3901],[84.90421,24.39546],[84.89264,24.40504],[84.89128,24.4146],[84.88228,24.42477],[84.88548,24.42575],[84.8849,24.4279],[84.88744,24.43196],[84.88466,24.4408],[84.88593,24.44564],[84.88528,24.45252],[84.8867,24.45323],[84.88566,24.45885],[84.88728,24.46328],[84.8846,24.46499],[84.88281,24.46205],[84.87971,24.46603],[84.8748,24.46721],[84.8725,24.46649],[84.87096,24.45829],[84.86399,24.45727],[84.86321,24.46111],[84.85401,24.46671],[84.85091,24.46204],[84.84878,24.45445],[84.8401,24.45219],[84.83707,24.4591],[84.84011,24.46078],[84.84061,24.46889],[84.83292,24.47021],[84.83537,24.48512],[84.83378,24.49359],[84.83534,24.49648],[84.83822,24.49768],[84.83985,24.50671],[84.83894,24.51261],[84.82556,24.52543],[84.80826,24.52204],[84.80189,24.53074],[84.79661,24.52555],[84.79732,24.52258],[84.78946,24.51828],[84.78951,24.5077],[84.78609,24.50383],[84.77795,24.50448],[84.76343,24.50025],[84.75558,24.49996],[84.74805,24.496],[84.7464,24.48613],[84.74311,24.48498],[84.72918,24.47015],[84.72069,24.46861],[84.71617,24.47211],[84.7102,24.47124],[84.70775,24.46764],[84.7033,24.46607],[84.70254,24.46223],[84.6915,24.45779],[84.68827,24.45785],[84.68532,24.45512],[84.68119,24.44623],[84.68208,24.44481],[84.67909,24.43559],[84.67231,24.43149],[84.6705,24.42812],[84.67596,24.42601],[84.67336,24.41692],[84.67448,24.41095],[84.6686,24.40972],[84.67018,24.40853],[84.67033,24.40492],[84.66761,24.4044],[84.66877,24.40282],[84.66809,24.39859],[84.66507,24.39088],[84.66109,24.39193],[84.65639,24.39669],[84.64995,24.398],[84.64626,24.40311],[84.64478,24.3991],[84.64266,24.39885],[84.63619,24.40045],[84.63079,24.40544],[84.62728,24.40179],[84.62207,24.40372],[84.61992,24.40076],[84.61682,24.4017],[84.61482,24.39894],[84.60448,24.40127],[84.60281,24.40345],[84.59678,24.40509],[84.59455,24.40484],[84.59172,24.40117],[84.58683,24.40058],[84.58855,24.40856],[84.58438,24.41267],[84.58275,24.41312],[84.57845,24.41028],[84.56819,24.40944],[84.56564,24.40129],[84.5621,24.39663],[84.56594,24.39246],[84.5741,24.38916],[84.57441,24.38563],[84.57236,24.38262],[84.56829,24.38217],[84.55922,24.37618],[84.55497,24.37523],[84.55379,24.37286],[84.54966,24.37345],[84.54692,24.37725],[84.54038,24.37597],[84.53221,24.37833],[84.52782,24.37574],[84.52833,24.37115],[84.53512,24.36315],[84.52452,24.35005],[84.53144,24.33821],[84.52319,24.33297],[84.51674,24.31773],[84.50997,24.31605],[84.50985,24.30523],[84.50701,24.29789],[84.50464,24.296],[84.50188,24.28839],[84.4959,24.28607],[84.49174,24.28615],[84.48916,24.29452],[84.4942,24.29612],[84.49682,24.29958],[84.49057,24.30394],[84.48879,24.30085],[84.48435,24.30197],[84.48861,24.3152],[84.4975,24.31626],[84.4991,24.3198],[84.50345,24.32053],[84.50536,24.3245],[84.50762,24.32481],[84.50529,24.33133],[84.49546,24.32534],[84.49572,24.32361],[84.48986,24.31646],[84.48449,24.31267],[84.47717,24.31714],[84.47228,24.31466],[84.46639,24.31731],[84.46512,24.32272],[84.46797,24.32445],[84.46376,24.32802],[84.4655,24.33151],[84.45961,24.33709],[84.45183,24.3373],[84.45128,24.33281],[84.4244,24.32984],[84.42301,24.33549],[84.42498,24.34919],[84.42732,24.35513],[84.43111,24.35652],[84.41651,24.359],[84.41004,24.36258],[84.40036,24.36463],[84.40057,24.36678],[84.40521,24.37038],[84.40657,24.37489],[84.39862,24.37274],[84.39387,24.37339],[84.39353,24.37667],[84.38694,24.38233],[84.38882,24.38451],[84.38671,24.38523],[84.38824,24.38929],[84.3787,24.38798],[84.37346,24.38346],[84.36919,24.38544],[84.36348,24.38548],[84.36328,24.38832],[84.36142,24.389],[84.34929,24.39076],[84.34162,24.39355],[84.34455,24.39945],[84.33314,24.4047],[84.33035,24.41059],[84.33363,24.41269],[84.33298,24.41834],[84.33453,24.42064],[84.33035,24.42171],[84.3297,24.4192],[84.32282,24.41794],[84.32053,24.42107],[84.3206,24.42329],[84.32445,24.42747],[84.32869,24.42511],[84.33343,24.42604],[84.33557,24.4249],[84.33681,24.42885],[84.33521,24.42928],[84.3356,24.43149],[84.32798,24.43908],[84.32512,24.43905],[84.32179,24.44637],[84.29738,24.44939],[84.29702,24.45498],[84.29255,24.46147],[84.2915,24.46642],[84.29603,24.4699],[84.2961,24.47348],[84.30374,24.48053],[84.30849,24.48173],[84.31518,24.48618],[84.32745,24.48734],[84.32753,24.49236],[84.32642,24.49398],[84.32741,24.50053],[84.32222,24.50809],[84.32247,24.5167],[84.31241,24.52346],[84.313,24.53018],[84.31137,24.53447],[84.29974,24.5464],[84.29684,24.56058],[84.28947,24.56282],[84.28155,24.55887],[84.27053,24.56001],[84.27088,24.55411],[84.27384,24.55403],[84.27372,24.55042],[84.27986,24.54787],[84.27738,24.54378],[84.26929,24.54319],[84.26812,24.5383],[84.26483,24.53813],[84.26386,24.53444],[84.25902,24.53434],[84.25679,24.52688],[84.25045,24.52795],[84.25096,24.53236],[84.24963,24.53471],[84.24459,24.53674],[84.24235,24.54145],[84.23627,24.53892],[84.2364,24.54932],[84.23333,24.54986],[84.22088,24.54609],[84.21869,24.53385],[84.21506,24.53272],[84.2095,24.53418],[84.2095,24.54101],[84.20198,24.54358],[84.1993,24.54694],[84.19993,24.554],[84.18723,24.55293],[84.18794,24.5488],[84.18432,24.54479],[84.17318,24.5447],[84.17396,24.53789],[84.1815,24.52082],[84.18467,24.52144],[84.18495,24.51959],[84.18408,24.51383],[84.17863,24.50564],[84.16975,24.50333],[84.15368,24.51157],[84.15246,24.51517],[84.15732,24.52247],[84.16421,24.52818],[84.16349,24.5334],[84.15958,24.53229],[84.15374,24.53582],[84.14428,24.53825],[84.1343,24.52432],[84.14053,24.50053],[84.13715,24.49797],[84.13011,24.49751],[84.12726,24.49509],[84.12514,24.49191],[84.12474,24.48074],[84.11722,24.48046],[84.11081,24.47674],[84.10432,24.48053],[84.1,24.48537],[84.09828,24.49267],[84.09441,24.49322],[84.0919,24.49774],[84.08991,24.49777],[84.08905,24.50182],[84.0922,24.50262],[84.09197,24.50431],[84.08563,24.50518],[84.08784,24.51274],[84.08462,24.51356],[84.08634,24.51705],[84.08857,24.51776],[84.08716,24.52124],[84.08883,24.5297],[84.09322,24.53365],[84.08923,24.5358],[84.08528,24.53454],[84.08564,24.53764],[84.07807,24.54042],[84.07763,24.54633],[84.07504,24.55311],[84.07273,24.55472],[84.07249,24.55909],[84.07562,24.56139],[84.07332,24.56293],[84.07287,24.56721],[84.06885,24.56728],[84.06831,24.5706],[84.06359,24.57078],[84.06366,24.57339],[84.06061,24.57365],[84.06491,24.58103],[84.06176,24.58646],[84.05419,24.58491],[84.05095,24.58664],[84.05721,24.59248],[84.05032,24.60005],[84.04893,24.60404],[84.0469,24.60418],[84.04871,24.609],[84.05088,24.60801],[84.05202,24.60992],[84.04893,24.6117],[84.0447,24.61116],[84.04532,24.61422],[84.04257,24.6186],[84.03922,24.61768],[84.03719,24.62061],[84.03308,24.62038],[84.03437,24.62287],[84.03344,24.63003],[84.02439,24.6286],[84.02333,24.63142],[84.02731,24.63349],[84.02078,24.63835],[84.00779,24.64289],[83.99401,24.6317],[83.97542,24.59141],[83.96897,24.58565],[83.96732,24.58157],[83.95533,24.56789],[83.94307,24.55816],[83.93613,24.54912],[83.90926,24.54121],[83.88862,24.53787],[83.87315,24.53175],[83.86176,24.53673],[83.8165,24.52908],[83.80018,24.52953],[83.78479,24.52077],[83.75554,24.50972],[83.74647,24.51017],[83.72057,24.50345],[83.69196,24.51106],[83.68816,24.51368],[83.65239,24.5148],[83.6289,24.51249],[83.597,24.51246],[83.57252,24.51655],[83.55093,24.52331],[83.50463,24.52558],[83.4842,24.52211],[83.46894,24.51673],[83.42943,24.51093],[83.4015,24.50343],[83.39609,24.49447],[83.39837,24.49295],[83.39536,24.48873],[83.3982,24.48542],[83.39353,24.47792],[83.39347,24.47539],[83.39093,24.47358],[83.3904,24.46406],[83.38542,24.45702],[83.38657,24.44816],[83.38981,24.44478],[83.39074,24.43942],[83.39354,24.43743],[83.39412,24.43465],[83.40489,24.436],[83.40331,24.41982],[83.40507,24.40478],[83.41894,24.40621],[83.43002,24.39995],[83.43442,24.40075],[83.43604,24.39925],[83.43268,24.39617],[83.43352,24.39328],[83.43749,24.39209],[83.43976,24.38883],[83.4388,24.38773],[83.44227,24.38608],[83.44537,24.37823],[83.4495,24.37703],[83.44797,24.37373],[83.44854,24.3701],[83.45727,24.36455],[83.44517,24.35884],[83.43947,24.34625],[83.43404,24.34297],[83.43346,24.33878],[83.42097,24.33799],[83.41142,24.33986],[83.3921,24.32478],[83.38777,24.3162],[83.38512,24.31705],[83.38003,24.31313],[83.38023,24.31024],[83.38309,24.30847],[83.38545,24.30403],[83.38623,24.29878],[83.39236,24.29599],[83.40149,24.29554],[83.40177,24.29227],[83.40717,24.28878],[83.40635,24.28596],[83.4091,24.26633],[83.40753,24.26213],[83.40032,24.25639],[83.39764,24.24384],[83.38524,24.23911],[83.38488,24.23605],[83.38115,24.23397],[83.37873,24.23036],[83.37857,24.22666],[83.38134,24.2259],[83.38462,24.22054],[83.38122,24.21709],[83.38301,24.21479],[83.37937,24.21325],[83.37862,24.21076],[83.38065,24.20776],[83.38036,24.20506],[83.38185,24.2046],[83.38139,24.20019],[83.38299,24.19792],[83.37502,24.1861],[83.37177,24.17429],[83.36198,24.15639],[83.36156,24.14884],[83.35876,24.14035],[83.35481,24.13559],[83.35406,24.12491],[83.35037,24.1215],[83.34491,24.11085],[83.32935,24.10132],[83.34775,24.09629],[83.36424,24.10329],[83.38829,24.09996],[83.40111,24.09203],[83.40664,24.08044],[83.42122,24.08272],[83.42671,24.08648],[83.43225,24.08598],[83.43773,24.07622],[83.43777,24.05817],[83.44487,24.05282],[83.45289,24.04199],[83.47781,24.04119],[83.49353,24.03631],[83.49975,24.03256],[83.50826,24.03116],[83.51572,24.02716],[83.51617,24.02245],[83.5239,24.01138],[83.52293,24.00636],[83.5138,23.99635],[83.51549,23.98999],[83.5153,23.98069],[83.5226,23.97033],[83.52649,23.9605],[83.53536,23.95246],[83.54739,23.93754],[83.54924,23.93102],[83.54692,23.9143],[83.55344,23.89807],[83.55915,23.8929],[83.57043,23.89445],[83.57633,23.89291],[83.58576,23.8864],[83.58603,23.88261],[83.58353,23.87778],[83.56949,23.86908],[83.56894,23.86618],[83.57119,23.86214],[83.57466,23.86121],[83.58242,23.86351],[83.5897,23.86331],[83.61029,23.85397],[83.61809,23.85549],[83.64338,23.84693],[83.65464,23.8499],[83.65949,23.84926],[83.66656,23.84428],[83.66849,23.83666],[83.66335,23.83119],[83.66449,23.82766],[83.67434,23.82717],[83.67869,23.82168],[83.68282,23.81938],[83.68528,23.82033],[83.68873,23.82558],[83.69149,23.82642],[83.70259,23.82297],[83.70535,23.82076],[83.70764,23.81741],[83.70439,23.80661],[83.70514,23.80387],[83.71266,23.80068],[83.72262,23.78658],[83.72159,23.77149],[83.72431,23.76872],[83.73411,23.7647],[83.73774,23.76049],[83.73948,23.73432],[83.74607,23.71949],[83.74212,23.70383],[83.73507,23.70031],[83.73212,23.695],[83.72302,23.68876],[83.72286,23.68586],[83.73885,23.66677],[83.74623,23.66299],[83.76112,23.65146],[83.76058,23.6479],[83.75321,23.64339],[83.75192,23.63867],[83.75945,23.62601],[83.77235,23.62378],[83.77514,23.62194],[83.77637,23.61759],[83.77248,23.6109],[83.77532,23.60895],[83.78987,23.60456],[83.79452,23.6051],[83.80064,23.60202],[83.80438,23.59537],[83.80542,23.58882],[83.80722,23.58747],[83.81205,23.58895],[83.81537,23.5962],[83.82587,23.59071],[83.8386,23.58939],[83.84468,23.58665],[83.85305,23.58705],[83.88806,23.57876],[83.89445,23.58265],[83.89939,23.58241],[83.90017,23.58015],[83.90857,23.57625],[83.91879,23.57636],[83.93769,23.56899],[83.9398,23.57086],[83.93803,23.58425],[83.93912,23.59031],[83.93299,23.60075],[83.93382,23.60736],[83.93065,23.61124],[83.93056,23.61826],[83.93191,23.62041],[83.94252,23.62599],[83.94775,23.6267],[83.96134,23.62518],[83.96935,23.62669],[83.97275,23.62592],[83.97349,23.62401],[83.9755,23.62571],[83.98045,23.62489],[83.97951,23.62872],[83.98065,23.63365],[83.98736,23.63229],[83.99714,23.63448],[84.01659,23.63438],[84.01393,23.63021],[84.0087,23.62785],[84.00771,23.6223],[84.01109,23.62061],[84.01673,23.60842],[84.02086,23.60442],[84.02851,23.60233],[84.03006,23.6],[84.02815,23.59371],[84.02977,23.58576],[84.02805,23.57777],[84.02954,23.5664],[84.02644,23.55677],[84.02438,23.55556],[84.02654,23.55295],[84.02806,23.5456],[84.02084,23.53097],[84.02159,23.52767],[84.01747,23.52261],[84.01858,23.5174],[84.01516,23.509],[84.01465,23.5035],[84.00736,23.49768],[84.00078,23.49693],[84.00113,23.4937],[83.99852,23.48678],[83.98891,23.47874],[83.98482,23.46571],[83.97394,23.45985],[83.97483,23.45124],[83.97869,23.44737],[83.98531,23.43504],[83.98332,23.43139],[83.98616,23.43057],[83.98364,23.42853],[83.9837,23.42627],[83.98576,23.42583],[83.98048,23.42152],[83.9809,23.41929],[83.97814,23.41415],[83.98016,23.41266],[83.97719,23.41087],[83.97509,23.40313],[83.97215,23.40267],[83.97148,23.40088],[83.97284,23.39989],[83.9688,23.39349],[83.96889,23.39082],[83.9675,23.39101],[83.96848,23.38919],[83.967,23.38758],[83.96914,23.38667],[83.96795,23.38541],[83.96994,23.38383],[83.96882,23.38341],[83.97075,23.37914],[83.98026,23.36811],[83.98028,23.36459],[84.0026,23.35735],[84.0048,23.35401],[84.01189,23.35447],[84.0163,23.36961],[84.02386,23.3765],[84.03642,23.37852],[84.05084,23.37477],[84.04822,23.3697],[84.05236,23.36726],[84.0535,23.36482],[84.05205,23.35928],[84.05433,23.3524],[84.06016,23.3502],[84.06658,23.34405],[84.06872,23.33824],[84.07482,23.33312],[84.07428,23.32917],[84.06219,23.30766],[84.06812,23.29378],[84.06248,23.28843],[84.0646,23.27472],[84.05985,23.26879],[84.05373,23.2473],[84.05383,23.24375],[84.05908,23.23599],[84.05576,23.22028],[84.06317,23.20565],[84.0622,23.20261],[84.05843,23.19994],[84.05653,23.19317],[84.04294,23.18265],[84.03239,23.16048],[84.03248,23.15415],[84.03669,23.14817],[84.03747,23.13988],[84.04485,23.1348],[84.04921,23.13451],[84.0583,23.12617],[84.06259,23.11341],[84.0664,23.11067],[84.07241,23.109],[84.08205,23.11215],[84.09317,23.11278],[84.09323,23.11045],[84.10566,23.10509],[84.10898,23.0983],[84.11297,23.09688],[84.11574,23.09003],[84.12211,23.08797],[84.12617,23.08933],[84.13346,23.08309],[84.13389,23.06863],[84.12689,23.05782],[84.12473,23.04785],[84.12697,23.04419],[84.12555,23.03648],[84.13122,23.02235],[84.13395,23.02021],[84.1402,23.00957],[84.13818,23.00402],[84.14732,22.98801],[84.1463,22.97707],[84.14925,22.96567],[84.17178,22.97076],[84.17551,22.97601],[84.17808,22.98112],[84.1761,22.98492],[84.175,22.99711],[84.17869,23.00055],[84.17524,23.00954],[84.17812,23.01203],[84.18024,23.02444],[84.1858,23.02709],[84.19674,23.02421],[84.20167,23.02107],[84.20345,23.01446],[84.20085,23.00534],[84.20768,22.9999],[84.21656,22.98904],[84.21871,22.97929],[84.23035,22.98333],[84.23393,22.98242],[84.24104,22.98361],[84.24881,22.97382],[84.25302,22.97293],[84.2611,22.97715],[84.2629,22.98084],[84.26713,22.9832],[84.27055,22.98922],[84.27782,22.99337],[84.2785,22.99193],[84.27671,22.99067],[84.27853,22.98704],[84.27368,22.98365],[84.274,22.98118],[84.27708,22.97176],[84.27913,22.971],[84.27878,22.96691],[84.28054,22.96397],[84.28416,22.96339],[84.30763,22.96743],[84.31291,22.97186],[84.31898,22.97361],[84.31928,22.97721],[84.32811,22.9819],[84.33955,22.97999],[84.34376,22.97614],[84.35107,22.97812],[84.365,22.97423],[84.3729,22.97838],[84.37734,22.97525],[84.3801,22.97044],[84.38457,22.95068],[84.39368,22.94245],[84.3951,22.93694],[84.39485,22.92315],[84.38931,22.91525],[84.38136,22.91268],[84.37754,22.90963],[84.37519,22.9045],[84.37568,22.90069],[84.38242,22.89652],[84.38315,22.89343],[84.37919,22.88377],[84.38051,22.87667],[84.37336,22.87159],[84.3726,22.86532],[84.35945,22.86052],[84.35199,22.86499],[84.34924,22.86098],[84.34423,22.85898],[84.33478,22.86155],[84.33362,22.86057],[84.32299,22.84802],[84.32174,22.83774],[84.3252,22.83765],[84.32533,22.83498],[84.32243,22.82102],[84.31573,22.81192],[84.3151,22.80065],[84.3075,22.80077],[84.30578,22.79707],[84.29934,22.79589],[84.29794,22.79427],[84.29114,22.78338],[84.29224,22.77571],[84.28986,22.77137],[84.28936,22.76612],[84.28534,22.76323],[84.27595,22.76871],[84.25965,22.76699],[84.25557,22.7601],[84.23127,22.73996],[84.22985,22.72807],[84.23209,22.72555],[84.23413,22.71054],[84.23293,22.70033],[84.23821,22.69173],[84.23475,22.68611],[84.23321,22.67924],[84.22412,22.66989],[84.21754,22.66582],[84.21319,22.66576],[84.21308,22.66771],[84.2079,22.66838],[84.20019,22.66646],[84.18803,22.65523],[84.16328,22.64543],[84.15627,22.63853],[84.15247,22.6368],[84.13979,22.63823],[84.12348,22.63705],[84.11081,22.63975],[84.09343,22.63494],[84.08402,22.63812],[84.0696,22.62043],[84.06375,22.60859],[84.05766,22.60577],[84.05413,22.59811],[84.04885,22.5953],[84.04183,22.59537],[84.03422,22.59231],[84.02443,22.5918],[84.02417,22.58581],[84.00951,22.57305],[84.00765,22.55246],[84.00285,22.5459],[84.01002,22.53168],[84.0097,22.52842],[84.01234,22.52769],[84.00921,22.52558],[84.01293,22.52337],[84.02552,22.52575],[84.02962,22.51918],[84.03656,22.51597],[84.04925,22.51704],[84.05306,22.5129],[84.05971,22.51643],[84.06132,22.51324],[84.06454,22.51248],[84.06512,22.50761],[84.07549,22.5062],[84.07528,22.50283],[84.07024,22.50135],[84.07305,22.50097],[84.08088,22.49412],[84.09031,22.48929],[84.10248,22.48408],[84.10795,22.48376],[84.10883,22.48268],[84.10686,22.48274],[84.10631,22.48065],[84.11349,22.47569],[84.12484,22.47493],[84.1288,22.4776],[84.13535,22.47659],[84.137,22.47379],[84.14068,22.47392],[84.14289,22.46423],[84.14138,22.45335],[84.1389,22.44776],[84.14055,22.44139],[84.14093,22.42562],[84.15613,22.40774],[84.16598,22.39985],[84.18489,22.39023],[84.19896,22.37581],[84.25146,22.37808],[84.25561,22.37442],[84.26881,22.35455],[84.27836,22.34928],[84.29004,22.34689],[84.29151,22.34213],[84.29533,22.34102],[84.31336,22.34444],[84.31683,22.34231],[84.32474,22.34528],[84.32994,22.34425],[84.33951,22.34755],[84.36564,22.3482],[84.36789,22.35466],[84.37032,22.35573],[84.37959,22.35262],[84.38302,22.34911],[84.39213,22.34986],[84.39676,22.3474],[84.39969,22.34782],[84.40032,22.34646],[84.41618,22.35281],[84.42041,22.35235],[84.4237,22.35444],[84.42813,22.35327],[84.42998,22.35793],[84.43427,22.36047],[84.43067,22.36404],[84.43226,22.36531],[84.43053,22.36894],[84.43496,22.37417],[84.44953,22.38029],[84.45345,22.37946],[84.45321,22.38105],[84.46118,22.37905],[84.47601,22.38665],[84.48463,22.38885],[84.4844,22.39258],[84.47884,22.39408],[84.48029,22.39798],[84.47793,22.39925],[84.47673,22.40528],[84.47698,22.40801],[84.48069,22.41017],[84.48244,22.41327],[84.48958,22.41364],[84.51064,22.42103],[84.51698,22.41935],[84.52439,22.41998],[84.53054,22.4228],[84.53136,22.4259],[84.5362,22.42737],[84.53806,22.42556],[84.54033,22.42719],[84.54694,22.42607],[84.54929,22.42104],[84.5709,22.4274],[84.59418,22.43006],[84.59785,22.4348],[84.60259,22.42883],[84.6103,22.43094],[84.62196,22.43156],[84.62865,22.43455],[84.65216,22.42621],[84.66806,22.41806],[84.67413,22.42191],[84.676,22.41942],[84.68384,22.41992],[84.69863,22.4164],[84.71556,22.41728],[84.71877,22.4199],[84.74974,22.41899],[84.75206,22.4306],[84.75932,22.44747],[84.76551,22.44865],[84.78875,22.44819],[84.79604,22.44626],[84.7973,22.44864],[84.79907,22.4473],[84.80145,22.44846],[84.80571,22.44767],[84.81252,22.45293],[84.81778,22.44462],[84.81763,22.43761],[84.83738,22.43253],[84.83855,22.43093],[84.84216,22.43174],[84.84223,22.43423],[84.84563,22.43626],[84.85373,22.43592],[84.87307,22.43947],[84.87292,22.44227],[84.88239,22.44847],[84.88509,22.44276],[84.8849,22.43745],[84.88871,22.42921],[84.88559,22.42613],[84.88558,22.42108],[84.89925,22.42343],[84.91023,22.42328],[84.9159,22.42611],[84.92615,22.43495],[84.92656,22.43958],[84.92387,22.44093],[84.92386,22.44355],[84.93194,22.44622],[84.94021,22.4452],[84.9449,22.45246],[84.95667,22.45823],[84.95935,22.44305],[84.96488,22.44933],[84.97302,22.45112],[85.01938,22.4706],[85.03547,22.47378],[85.03718,22.47282],[85.03765,22.47949],[85.03628,22.47937],[85.03595,22.48243],[85.03805,22.48196],[85.03808,22.48043],[85.04165,22.48055],[85.0443,22.48233],[85.05216,22.48251],[85.05968,22.48645],[85.06726,22.48417],[85.06987,22.48017],[85.07179,22.4792],[85.07601,22.48029],[85.078,22.47755],[85.07675,22.46874],[85.07524,22.46862],[85.07403,22.46553],[85.07715,22.46375],[85.06422,22.45424],[85.06029,22.44956],[85.06055,22.44712],[85.06106,22.44513],[85.06683,22.44091],[85.0678,22.42843],[85.07537,22.42055],[85.08208,22.41653],[85.08023,22.41001],[85.08653,22.39942],[85.08622,22.38943],[85.08787,22.38847],[85.08696,22.38254],[85.07739,22.36551],[85.07916,22.36051],[85.07667,22.35621],[85.07892,22.35237],[85.08384,22.34905],[85.08333,22.34534],[85.09461,22.34673],[85.09575,22.34474],[85.09389,22.33328],[85.08939,22.32043],[85.09074,22.31858],[85.09549,22.31571],[85.10069,22.31992],[85.10637,22.32148],[85.11535,22.31978],[85.1181,22.31759],[85.11544,22.31528],[85.11416,22.31045],[85.11601,22.30811],[85.11413,22.30542],[85.116,22.29409],[85.10644,22.2959],[85.09963,22.29357],[85.07061,22.27365],[85.07148,22.27036],[85.07382,22.26876],[85.07218,22.26705],[85.0746,22.26485],[85.07341,22.2629],[85.07664,22.26108],[85.0782,22.25739],[85.07332,22.24805],[85.07025,22.24806],[85.06936,22.24358],[85.07225,22.23772],[85.05849,22.20925],[85.05921,22.206],[85.05582,22.20271],[85.05415,22.19799],[85.04919,22.19541],[85.05369,22.18539],[85.05266,22.18246],[85.05026,22.17916],[85.04283,22.17734],[85.04162,22.17299],[85.0291,22.16349],[85.02834,22.15718],[85.03417,22.14702],[85.03235,22.13475],[85.02751,22.12677],[85.02685,22.12252],[85.01911,22.11577],[84.99948,22.1077],[84.99141,22.09956],[84.98339,22.09552],[84.98456,22.08661],[84.98695,22.08282],[84.99247,22.08123],[85.00569,22.0879],[85.00658,22.09006],[85.00865,22.08886],[85.01174,22.09141],[85.01306,22.09879],[85.0158,22.10361],[85.01765,22.10342],[85.02134,22.10843],[85.02431,22.11036],[85.02892,22.10933],[85.0403,22.11586],[85.05527,22.11568],[85.07046,22.1129],[85.08897,22.10573],[85.09488,22.10836],[85.09574,22.10621],[85.10011,22.10363],[85.10169,22.09812],[85.10057,22.09372],[85.10379,22.08953],[85.10557,22.09023],[85.10881,22.0876],[85.1124,22.08704],[85.11381,22.08354],[85.11251,22.07984],[85.11866,22.0742],[85.12007,22.07018],[85.13179,22.07681],[85.14033,22.07761],[85.14482,22.07974],[85.1548,22.07883],[85.16054,22.07471],[85.16038,22.06966],[85.16512,22.06381],[85.16685,22.0537],[85.17387,22.05138],[85.17083,22.05663],[85.17121,22.06342],[85.16762,22.06951],[85.1746,22.07459],[85.18057,22.07323],[85.18572,22.05921],[85.19817,22.05594],[85.2104,22.04942],[85.21345,22.04969],[85.21508,22.04772],[85.21485,22.04333],[85.21859,22.04093],[85.21687,22.03357],[85.22143,22.01799],[85.22591,22.01609],[85.22921,22.01241],[85.23629,22.0098],[85.23993,22.011],[85.24056,22.01363],[85.24417,22.01581],[85.2517,22.02697],[85.26272,22.05788],[85.27285,22.07359],[85.27513,22.08229],[85.2813,22.09043],[85.30087,22.10703],[85.30965,22.11793],[85.31372,22.1203],[85.31884,22.12083],[85.32351,22.12765],[85.34354,22.12738],[85.34619,22.13026],[85.35059,22.1295],[85.35759,22.12463],[85.36393,22.12346],[85.3653,22.12772],[85.36084,22.13151],[85.36189,22.1411],[85.3603,22.14348],[85.36345,22.14748],[85.36396,22.15214],[85.36654,22.15363],[85.36612,22.15891],[85.37132,22.16103],[85.37511,22.15737],[85.38479,22.15659],[85.39207,22.15903],[85.39785,22.16319],[85.41137,22.16182],[85.42115,22.15878],[85.43412,22.15099],[85.43877,22.15035],[85.44299,22.14667],[85.447,22.14637],[85.46187,22.1399],[85.47069,22.13412],[85.4747,22.12893],[85.48293,22.1276],[85.48991,22.12108],[85.49986,22.12011],[85.51497,22.11564],[85.53413,22.10264],[85.53978,22.10185],[85.53902,22.0971],[85.54298,22.09047],[85.56044,22.09607],[85.56099,22.09178],[85.5662,22.08889],[85.57155,22.09116],[85.58622,22.08654],[85.59023,22.084],[85.59229,22.08044],[85.59718,22.07912],[85.60681,22.07984],[85.61118,22.08704],[85.61388,22.08609],[85.61345,22.08154],[85.62492,22.08209],[85.62888,22.08601],[85.63246,22.08417],[85.63703,22.0871],[85.63981,22.08667],[85.64412,22.09426],[85.65162,22.09544],[85.65527,22.09233],[85.65738,22.08393],[85.66158,22.08334],[85.66406,22.07685],[85.67025,22.07343],[85.67166,22.06748],[85.67844,22.06294],[85.67733,22.05695],[85.68487,22.05423],[85.68938,22.05605],[85.69168,22.06229],[85.70094,22.06173],[85.70917,22.05823],[85.71337,22.06248],[85.718,22.06174],[85.72054,22.06389],[85.7302,22.06528],[85.74015,22.07098],[85.74939,22.07357],[85.75705,22.07831],[85.7574,22.08458],[85.7673,22.09278],[85.78099,22.0965],[85.79017,22.10484],[85.79732,22.10475],[85.79755,22.1084],[85.80117,22.10986],[85.80743,22.11611],[85.82104,22.1065],[85.81305,22.09649],[85.81332,22.09429],[85.81976,22.09643],[85.82177,22.09466],[85.83268,22.09304],[85.83586,22.08016],[85.82266,22.07443],[85.81611,22.07357],[85.79344,22.08181],[85.77494,22.05629],[85.77873,22.04556],[85.78376,22.04018],[85.77959,22.02967],[85.77496,22.02872],[85.76716,22.02349],[85.7608,22.01454],[85.75857,22.00949],[85.76251,22.00125],[85.76299,21.99614],[85.78275,21.98495],[85.78584,21.98704],[85.79041,21.98582],[85.80537,21.98942],[85.81046,21.98631],[85.81699,21.98577],[85.8209,21.97746],[85.82437,21.97545],[85.83258,21.97728],[85.83614,21.98085],[85.85321,21.98376],[85.88208,21.98014],[85.89159,21.98122],[85.8937,21.98229],[85.89385,21.98439],[85.89577,21.98441],[85.89571,21.98324],[85.89871,21.98316],[85.90009,21.97958],[85.9023,21.97833],[85.90218,21.97552],[85.90466,21.97156],[85.90825,21.97067],[85.91123,21.97409],[85.90656,21.97695],[85.91189,21.98017],[85.9102,21.98117],[85.91166,21.98488],[85.90952,21.98782],[85.91221,21.99719],[85.91616,22.00269],[85.91615,22.00878],[85.92295,22.01124],[85.93088,22.02334],[85.94359,22.02036],[85.96504,22.05237],[85.96877,22.0608],[85.98044,22.07521],[85.98642,22.08897],[85.99251,22.09468],[86.00381,22.11386],[86.00738,22.11709],[85.99717,22.12802],[85.99676,22.13245],[85.99877,22.13302],[85.99947,22.13569],[86.00351,22.13957],[86.00551,22.15086],[86.01526,22.16166],[86.01723,22.17162],[86.03143,22.19085],[86.03108,22.19307],[86.01837,22.20533],[86.00286,22.21383],[85.99131,22.22676],[85.98567,22.23714],[85.98092,22.23891],[85.97388,22.24708],[85.9897,22.25441],[85.99064,22.25694],[85.98771,22.26315],[85.98832,22.26697],[85.99871,22.27724],[86.0041,22.28018],[86.00704,22.28461],[86.00611,22.28739],[86.01425,22.29729],[86.01898,22.30038],[86.02218,22.30003],[86.02496,22.3026],[86.02882,22.3007],[86.02942,22.303],[86.03289,22.30329],[86.0341,22.30619],[86.04058,22.30632],[86.04721,22.30896],[86.04716,22.31145],[86.04067,22.31246],[86.03815,22.31036],[86.03236,22.31122],[86.02891,22.30769],[86.02735,22.3093],[86.02257,22.309],[86.01605,22.31437],[86.0137,22.31307],[86.01306,22.31789],[86.01049,22.31787],[86.01193,22.32232],[86.02671,22.33486],[86.01956,22.33903],[86.01075,22.34123],[86.00829,22.34095],[86.00949,22.33957],[86.00783,22.33776],[86.00338,22.33568],[85.99802,22.3416],[85.99821,22.34515],[86.00367,22.34672],[86.00753,22.35151],[86.0108,22.35229],[86.01467,22.35965],[86.01919,22.3609],[86.02176,22.36482],[86.02013,22.37177],[86.02106,22.37618],[86.02475,22.37539],[86.02478,22.37901],[86.02713,22.38056],[86.02521,22.38361],[86.0272,22.38621],[86.02339,22.39001],[86.02395,22.39267],[86.02267,22.39371],[86.02437,22.39622],[86.02087,22.39724],[86.02034,22.40079],[86.01833,22.40247],[86.01925,22.40743],[86.015,22.42873],[86.01069,22.43019],[86.00275,22.42637],[85.98461,22.43545],[85.97288,22.44717],[85.96564,22.45115],[85.96788,22.46119],[85.96035,22.46139],[85.95712,22.46482],[85.9626,22.47279],[85.96274,22.48512],[85.96839,22.48629],[85.97233,22.49169],[85.97096,22.49739],[85.97353,22.49962],[85.9734,22.50586],[85.97815,22.50842],[85.98001,22.51136],[85.98179,22.51092],[85.98514,22.51548],[85.98851,22.51534],[85.98961,22.51669],[85.99349,22.51438],[86.00103,22.51458],[86.00409,22.51776],[86.02091,22.52732],[86.02653,22.52402],[86.03384,22.53449],[86.02403,22.54462],[86.03217,22.55503],[86.04544,22.56751],[86.05131,22.56248],[86.06487,22.55549],[86.06843,22.54987],[86.07546,22.54411],[86.07925,22.53755],[86.09487,22.5195],[86.09715,22.51033],[86.10024,22.50813],[86.10275,22.50024],[86.11663,22.487],[86.12375,22.48861],[86.13373,22.48713],[86.15033,22.48335],[86.15028,22.48021],[86.15632,22.48036],[86.16047,22.48255],[86.17056,22.48138],[86.20029,22.4718],[86.20793,22.47349],[86.21388,22.46644],[86.22258,22.46725],[86.2174,22.46261],[86.22467,22.45252],[86.23725,22.45259],[86.2566,22.44541],[86.26394,22.44534],[86.26846,22.44217],[86.2813,22.44866],[86.29303,22.42668],[86.29633,22.42403],[86.30264,22.4222],[86.30745,22.41531],[86.30644,22.40961],[86.32082,22.39741],[86.32271,22.39264],[86.32063,22.38902],[86.32116,22.38542],[86.32852,22.3778],[86.34028,22.37292],[86.35016,22.36429],[86.35761,22.35423],[86.35814,22.34921],[86.36642,22.34429],[86.37708,22.34163],[86.40828,22.32097],[86.42681,22.31758],[86.42956,22.30832],[86.43501,22.30651],[86.4372,22.30416],[86.43948,22.3036],[86.44403,22.31027],[86.44307,22.32626],[86.44483,22.32866],[86.44652,22.32911],[86.45292,22.32532],[86.46195,22.32611],[86.46362,22.32875],[86.46228,22.32982],[86.46819,22.3304],[86.47147,22.33578],[86.48346,22.33813],[86.48726,22.34768],[86.49289,22.34708],[86.49414,22.34566],[86.49691,22.3472],[86.50225,22.3434],[86.50384,22.33634],[86.50748,22.33465],[86.50818,22.32786],[86.52169,22.32342],[86.52709,22.3235],[86.52783,22.31549],[86.52319,22.31473],[86.52577,22.31103],[86.52545,22.30761],[86.53276,22.30096],[86.53935,22.30476],[86.54074,22.30824],[86.54386,22.30721],[86.54849,22.30136],[86.55407,22.29847],[86.5574,22.29832],[86.56169,22.30172],[86.56887,22.30144],[86.57088,22.30019],[86.57198,22.29618],[86.57686,22.29556],[86.57681,22.30112],[86.58225,22.30165],[86.58506,22.29536],[86.58739,22.29441],[86.58793,22.28999],[86.59272,22.28544],[86.59392,22.28204],[86.59308,22.27856],[86.59976,22.27887],[86.60352,22.28207],[86.61048,22.28335],[86.62177,22.27704],[86.62579,22.27353],[86.62731,22.26951],[86.63218,22.27323],[86.638,22.2711],[86.63971,22.26551],[86.64438,22.26849],[86.64351,22.26466],[86.64673,22.26536],[86.64951,22.26353],[86.65466,22.25073],[86.6513,22.24438],[86.65245,22.23844],[86.65483,22.23593],[86.66082,22.23672],[86.66624,22.24162],[86.66959,22.24254],[86.67239,22.24022],[86.67531,22.22925],[86.68434,22.22241],[86.70346,22.22118],[86.70794,22.2233],[86.71385,22.22005],[86.72086,22.22041],[86.73081,22.21543],[86.74404,22.21598],[86.74978,22.21169],[86.75964,22.21209],[86.77114,22.22035],[86.77641,22.21786],[86.77737,22.22552],[86.77434,22.23221],[86.77768,22.23659],[86.78919,22.23573],[86.78858,22.23166],[86.79491,22.22779],[86.79321,22.2242],[86.78447,22.2306],[86.77819,22.21849],[86.77907,22.21692],[86.78474,22.21505],[86.78904,22.21925],[86.79014,22.21874],[86.79187,22.22183],[86.80241,22.21755],[86.81202,22.24123],[86.80348,22.24322],[86.79925,22.23788],[86.79486,22.24317],[86.7957,22.24874],[86.79226,22.2663],[86.80111,22.2652],[86.79801,22.24702],[86.79995,22.24461],[86.80399,22.24358],[86.8072,22.24723],[86.80906,22.24664],[86.81059,22.24987],[86.80916,22.25025],[86.81359,22.26739],[86.81494,22.26706],[86.8167,22.25455],[86.81825,22.25372],[86.82396,22.26676],[86.83093,22.26322],[86.83784,22.26565],[86.84271,22.26163],[86.84655,22.26404],[86.84942,22.26334],[86.85109,22.26521],[86.85893,22.25798],[86.86343,22.25878],[86.86525,22.26096],[86.86626,22.25892],[86.87186,22.26006],[86.87322,22.25909],[86.87597,22.26065],[86.87644,22.25911],[86.88006,22.25926],[86.8835,22.25716],[86.88502,22.25855],[86.88632,22.25724],[86.88836,22.26137],[86.88753,22.27387],[86.88933,22.27376],[86.88779,22.29746],[86.87583,22.3015],[86.87224,22.30712],[86.86537,22.3081],[86.85012,22.31564],[86.83974,22.31893],[86.83327,22.32491],[86.83157,22.32878],[86.83229,22.34851],[86.84264,22.37221],[86.84088,22.38319],[86.84563,22.39152],[86.84635,22.39908],[86.83129,22.411],[86.80707,22.42126],[86.79389,22.42166],[86.78582,22.42435],[86.76453,22.42726],[86.76187,22.4317],[86.75903,22.44581],[86.76317,22.44838],[86.75101,22.45671],[86.75106,22.46543],[86.74728,22.47478],[86.74987,22.48295],[86.76609,22.48193],[86.76902,22.48009],[86.78429,22.48124],[86.79117,22.47743],[86.79537,22.48042],[86.8016,22.48883],[86.79378,22.49646],[86.79524,22.49938],[86.8008,22.50074],[86.80239,22.50304],[86.80083,22.5055],[86.79769,22.5064],[86.79651,22.50958],[86.79266,22.51132],[86.79319,22.51399],[86.79494,22.51398],[86.79292,22.52498],[86.78685,22.52685],[86.78896,22.53409],[86.78737,22.53817],[86.79026,22.54122],[86.78929,22.549],[86.78418,22.55029],[86.77519,22.5488],[86.7691,22.55458],[86.76662,22.55841],[86.77157,22.56106],[86.77193,22.56464],[86.76774,22.56698],[86.76686,22.57502],[86.75208,22.57852],[86.73149,22.57691],[86.71115,22.58239],[86.68465,22.57833],[86.67926,22.57446],[86.65952,22.57504],[86.65363,22.58181],[86.65703,22.5908],[86.64448,22.59449],[86.63943,22.59782],[86.63813,22.60122],[86.6386,22.60947],[86.63411,22.61039],[86.63538,22.61831],[86.63902,22.62531],[86.63863,22.65078],[86.64239,22.65701],[86.63604,22.66497],[86.62935,22.66669],[86.62353,22.67564],[86.62027,22.67789],[86.61163,22.67991],[86.60849,22.68399],[86.60253,22.68732],[86.58527,22.69108],[86.57224,22.69926],[86.56299,22.7062],[86.56139,22.7093],[86.5442,22.7216],[86.53513,22.71725],[86.52433,22.71943],[86.52033,22.71523],[86.51293,22.71662],[86.51151,22.71197],[86.51345,22.70717],[86.51133,22.705],[86.50001,22.72046],[86.49768,22.72287],[86.49468,22.72328],[86.49321,22.72639],[86.48154,22.72786],[86.48173,22.7302],[86.47364,22.7397],[86.46968,22.7521],[86.46018,22.76191],[86.45793,22.76336],[86.44842,22.76193],[86.43748,22.77126],[86.4301,22.77469],[86.42581,22.77975],[86.42148,22.78014],[86.41761,22.78368],[86.41868,22.78752],[86.41622,22.78886],[86.41633,22.79137],[86.41881,22.79068],[86.42096,22.79281],[86.42327,22.79192],[86.42256,22.79687],[86.42548,22.79931],[86.42339,22.80216],[86.42525,22.80654],[86.42252,22.80998],[86.42848,22.81934],[86.43885,22.83102],[86.43555,22.83592],[86.4334,22.85336],[86.43588,22.85912],[86.43497,22.86051],[86.43969,22.86426],[86.45077,22.86154],[86.45198,22.87292],[86.45481,22.87858],[86.45343,22.88587],[86.45625,22.88577],[86.46004,22.89208],[86.46463,22.89434],[86.46714,22.89993],[86.46543,22.90239],[86.45297,22.90246],[86.44151,22.91629],[86.44048,22.91949],[86.4362,22.92232],[86.43534,22.92519],[86.44201,22.92797],[86.44301,22.93067],[86.4468,22.93071],[86.45131,22.93325],[86.45436,22.93198],[86.45998,22.93506],[86.46535,22.94546],[86.46912,22.94451],[86.47098,22.94893],[86.47632,22.95118],[86.47793,22.94936],[86.47727,22.94609],[86.4853,22.94277],[86.48913,22.93724],[86.49454,22.94326],[86.49524,22.94685],[86.50078,22.94594],[86.5029,22.94897],[86.50258,22.95187],[86.50784,22.95088],[86.5127,22.94776],[86.51921,22.94824],[86.52141,22.95006],[86.52598,22.94761],[86.53004,22.95215],[86.5316,22.96521],[86.54037,22.9668],[86.54478,22.96569],[86.54408,22.96973],[86.55056,22.97799],[86.5475,22.98232],[86.54788,22.98694],[86.54561,22.99028],[86.53991,22.98458],[86.52814,22.98064],[86.52382,22.97713],[86.52684,22.97549],[86.52619,22.97261],[86.52119,22.97071],[86.50862,22.97304],[86.51378,22.97749],[86.50416,22.98611],[86.50115,22.99359],[86.49769,22.99204],[86.48706,22.99243],[86.48037,22.98982],[86.47573,22.99175],[86.47051,22.98889],[86.45155,22.99024],[86.45085,22.98835],[86.44642,22.98824],[86.4423,22.99323],[86.42531,22.99657],[86.41926,23.00027],[86.41825,22.99921],[86.41972,22.99678],[86.41733,22.99705],[86.41716,22.9932],[86.41329,22.99081],[86.41006,22.99113],[86.4084,22.98906],[86.40689,22.98972],[86.40108,22.98086],[86.39855,22.97989],[86.3948,22.98022],[86.38771,22.98531],[86.38541,22.98945],[86.38502,22.99526],[86.38356,22.99428],[86.37275,22.99815],[86.37178,22.99674],[86.3639,22.99958],[86.35443,22.99934],[86.35453,22.99297],[86.34764,22.99662],[86.3437,22.99649],[86.34061,22.99355],[86.33953,22.98981],[86.32593,22.9949],[86.32159,22.99744],[86.31979,23.0006],[86.31612,23.00007],[86.3089,23.00342],[86.30909,23.00705],[86.30224,23.01006],[86.30469,23.0153],[86.30374,23.016],[86.29938,23.00979],[86.29621,23.00968],[86.29212,23.01298],[86.28418,23.00692],[86.27717,23.00738],[86.26787,23.00116],[86.26824,22.99984],[86.26585,22.99798],[86.26056,22.99859],[86.2485,22.99491],[86.24535,22.9982],[86.24306,22.9981],[86.24171,22.99609],[86.22877,22.99512],[86.22269,22.9995],[86.2067,23.00028],[86.2084,23.00651],[86.19807,23.00685],[86.18654,23.00495],[86.18164,23.00899],[86.17898,23.02077],[86.17615,23.02028],[86.17008,23.02244],[86.17049,23.0264],[86.16639,23.02947],[86.16774,23.03256],[86.16544,23.03238],[86.16305,23.02829],[86.15602,23.03117],[86.15804,23.04618],[86.15364,23.0481],[86.15099,23.05154],[86.14198,23.05425],[86.14177,23.06012],[86.14404,23.06351],[86.14366,23.06774],[86.14626,23.07496],[86.13604,23.07724],[86.13394,23.08336],[86.12716,23.08692],[86.12071,23.08483],[86.11519,23.08566],[86.11023,23.08429],[86.10224,23.08653],[86.09802,23.0842],[86.09062,23.08943],[86.09005,23.09471],[86.0757,23.09464],[86.05126,23.10553],[86.05123,23.1095],[86.05411,23.11269],[86.05591,23.12274],[86.04593,23.13599],[86.04606,23.14171],[86.04452,23.14424],[86.03754,23.14711],[86.03464,23.14444],[86.02907,23.14607],[86.02455,23.14428],[86.01831,23.14814],[86.01999,23.15279],[86.0178,23.15471],[86.01345,23.14791],[86.00116,23.14835],[85.99244,23.15194],[85.97596,23.15479],[85.95761,23.16105],[85.95137,23.15173],[85.94269,23.15304],[85.93695,23.15024],[85.9289,23.15105],[85.92771,23.14857],[85.91411,23.14913],[85.90866,23.15397],[85.89454,23.15513],[85.88157,23.17026],[85.88342,23.19497],[85.88252,23.19873],[85.87655,23.2049],[85.86839,23.21828],[85.86381,23.22238],[85.85878,23.22061],[85.85135,23.22234],[85.83658,23.22053],[85.83969,23.22985],[85.83626,23.23794],[85.83861,23.24683],[85.82358,23.25905],[85.81967,23.26812],[85.82863,23.28228],[85.83838,23.3065],[85.84747,23.30969],[85.85069,23.31664],[85.85945,23.32206],[85.86301,23.32775],[85.8682,23.32978],[85.86548,23.33912],[85.86625,23.34152],[85.87258,23.34243],[85.88307,23.35078],[85.87517,23.35983],[85.87476,23.37678],[85.87843,23.38168],[85.87082,23.38607],[85.87081,23.38881],[85.88713,23.39646],[85.89855,23.39355],[85.90254,23.39711],[85.90152,23.40227],[85.89866,23.40502],[85.88673,23.4046],[85.8875,23.40813],[85.89144,23.41022],[85.8896,23.414],[85.88029,23.42239],[85.88663,23.42513],[85.88258,23.43058],[85.87665,23.42967],[85.86389,23.43136],[85.86418,23.43569],[85.86188,23.43906],[85.86193,23.44238],[85.8649,23.4547],[85.86363,23.45861],[85.86573,23.45991],[85.86249,23.46152],[85.868,23.46545],[85.87,23.47495],[85.87364,23.47673],[85.87546,23.47985],[85.88273,23.48095],[85.88715,23.48431],[85.8863,23.48205],[85.89627,23.48377],[85.90014,23.48241],[85.9086,23.48363],[85.91204,23.48084],[85.91524,23.48187],[85.92017,23.47724],[85.93283,23.47291],[85.95324,23.47094],[85.95547,23.47119],[85.95711,23.47441],[85.96277,23.47624],[85.97751,23.47604],[85.98062,23.47815],[85.98897,23.47831],[85.99252,23.48033],[86.00322,23.48177],[86.00537,23.4835],[86.00719,23.48272],[86.00866,23.48431],[86.01673,23.48449],[86.02298,23.48651],[86.03146,23.48365],[86.03726,23.48592],[86.04396,23.48432],[86.05384,23.48706],[86.05472,23.49017],[86.05793,23.49046],[86.05671,23.49508],[86.03819,23.49778],[86.03941,23.50466],[86.03775,23.51066],[86.03924,23.51504],[86.03468,23.51593],[86.03387,23.52267],[86.02895,23.52765],[86.02841,23.53259],[86.02366,23.53692],[86.02818,23.54052],[86.02765,23.54211],[86.01628,23.54732],[86.01782,23.55959],[86.02467,23.56205],[86.03075,23.572],[86.0375,23.57651],[86.04013,23.57526],[86.04206,23.58688],[86.05216,23.58615],[86.0556,23.58294],[86.0657,23.57896],[86.07743,23.57921],[86.07274,23.56884],[86.08087,23.56568],[86.08512,23.56683],[86.09393,23.56324],[86.09907,23.56651],[86.10598,23.56596],[86.10849,23.5697],[86.11584,23.5661],[86.11786,23.56735],[86.12063,23.56618],[86.12394,23.56927],[86.12667,23.5694],[86.12922,23.56774],[86.12693,23.56592],[86.13154,23.56276],[86.13125,23.55929],[86.13662,23.56285],[86.13927,23.55927],[86.14328,23.56405],[86.14724,23.56386],[86.14678,23.56169],[86.14832,23.56081],[86.15835,23.55998],[86.15282,23.55213],[86.15231,23.54912],[86.15805,23.54147],[86.15749,23.53701],[86.15537,23.52962],[86.15031,23.52523],[86.14863,23.51935],[86.1541,23.51273],[86.16239,23.50849],[86.16057,23.50367],[86.15741,23.50064],[86.15961,23.49344],[86.15756,23.48864],[86.15135,23.4822],[86.15361,23.47893],[86.15371,23.47574],[86.15156,23.47433],[86.149,23.4752],[86.14741,23.46841],[86.14883,23.46526],[86.15957,23.46884],[86.16034,23.46591],[86.17829,23.46984],[86.17935,23.46761],[86.18203,23.46697],[86.18172,23.46008],[86.18706,23.45809],[86.19144,23.46018],[86.19503,23.45789],[86.19589,23.45439],[86.19709,23.45553],[86.19889,23.45334],[86.20571,23.45368],[86.20678,23.45],[86.21573,23.44815],[86.22838,23.44288],[86.23075,23.44485],[86.23031,23.45132],[86.23262,23.46224],[86.23496,23.46055],[86.24557,23.45932],[86.24734,23.45838],[86.24747,23.45625],[86.24216,23.45112],[86.24237,23.44653],[86.23655,23.44488],[86.23146,23.43598],[86.23245,23.43253],[86.22987,23.43082],[86.23431,23.42089],[86.24399,23.42375],[86.24886,23.42247],[86.24561,23.4139],[86.24739,23.41114],[86.25148,23.41084],[86.25915,23.41331],[86.26025,23.41782],[86.25221,23.42677],[86.25658,23.43009],[86.26409,23.43077],[86.27183,23.42766],[86.27568,23.43038],[86.28162,23.42855],[86.28949,23.42906],[86.291,23.42635],[86.28959,23.42473],[86.29094,23.41759],[86.30007,23.41276],[86.31055,23.41136],[86.31187,23.41439],[86.31776,23.41641],[86.31572,23.42345],[86.31757,23.42647],[86.31448,23.42668],[86.31185,23.42445],[86.30929,23.42818],[86.30606,23.42958],[86.30577,23.43482],[86.31534,23.44004],[86.31786,23.43983],[86.32057,23.44329],[86.33479,23.44658],[86.33404,23.44463],[86.33644,23.44283],[86.3368,23.44018],[86.34035,23.43954],[86.35146,23.44209],[86.34972,23.45155],[86.35593,23.45038],[86.3597,23.45225],[86.35942,23.45709],[86.35736,23.46073],[86.36306,23.46489],[86.36409,23.47169],[86.37946,23.47364],[86.3773,23.48057],[86.3788,23.48479],[86.37329,23.48298],[86.37061,23.48449],[86.36544,23.48028],[86.36242,23.48425],[86.36644,23.49627],[86.36357,23.50161],[86.36868,23.5025],[86.37519,23.51034],[86.37126,23.51748],[86.36458,23.52172],[86.36828,23.52815],[86.36511,23.53269],[86.36854,23.53525],[86.36726,23.54019],[86.37163,23.54057],[86.37097,23.54262],[86.37856,23.54875],[86.38401,23.55917],[86.38938,23.5612],[86.38845,23.56364],[86.39083,23.56674],[86.38816,23.57395],[86.39946,23.57859],[86.40247,23.57711],[86.40771,23.57877],[86.41045,23.57586],[86.41356,23.57571],[86.41659,23.57839],[86.42123,23.5901],[86.43294,23.59448],[86.43618,23.59903],[86.44708,23.59814],[86.44885,23.6017],[86.4458,23.61529],[86.44643,23.61872],[86.4498,23.62071],[86.45417,23.61954],[86.45696,23.62609],[86.46181,23.6303],[86.47038,23.6305],[86.47955,23.63553],[86.49203,23.63828],[86.51191,23.63171],[86.5252,23.63018],[86.5354,23.63124],[86.5465,23.63764],[86.55662,23.63994],[86.57444,23.64805],[86.58081,23.65548],[86.59897,23.6655],[86.59601,23.67048],[86.59757,23.67376],[86.61157,23.67559],[86.63379,23.67517],[86.65643,23.68429],[86.6756,23.68709],[86.69815,23.69361],[86.70533,23.69714],[86.71495,23.69888],[86.72556,23.69844],[86.73906,23.69423],[86.74191,23.69027],[86.7444,23.68162],[86.74734,23.67879],[86.77076,23.68139],[86.78891,23.68783],[86.79904,23.68903],[86.80581,23.69586],[86.80024,23.69975],[86.79929,23.7037],[86.8082,23.72239],[86.80796,23.72946],[86.81229,23.74476],[86.82609,23.74921],[86.82794,23.7527],[86.82837,23.7602],[86.82585,23.77668],[86.82021,23.78393],[86.81984,23.78825],[86.81932,23.78593],[86.80908,23.79805],[86.80507,23.79889],[86.80336,23.8013],[86.81009,23.82141],[86.80748,23.82281],[86.80389,23.82968],[86.80089,23.82983],[86.79935,23.83182],[86.80476,23.83685],[86.81026,23.83529],[86.81478,23.82994],[86.81603,23.82501],[86.81379,23.82475],[86.81295,23.82075],[86.81551,23.81736],[86.81973,23.81772],[86.82045,23.81555],[86.82654,23.81394],[86.83695,23.81954],[86.84003,23.82248],[86.83879,23.82459],[86.84804,23.82365],[86.8529,23.82495],[86.85502,23.83056],[86.86127,23.83505],[86.86377,23.84057],[86.86265,23.84201],[86.86363,23.84446],[86.87422,23.84731],[86.87997,23.84528],[86.87952,23.83526],[86.88094,23.82901],[86.88646,23.82565],[86.88602,23.8212],[86.8903,23.8205],[86.89457,23.82635],[86.89282,23.83728],[86.88936,23.8393],[86.88635,23.84569],[86.88701,23.85644],[86.88092,23.86037],[86.88024,23.86232],[86.89592,23.87829],[86.90277,23.8812],[86.91328,23.88079],[86.91556,23.88243],[86.93102,23.87055],[86.93323,23.86672],[86.93397,23.85394],[86.93757,23.85041],[86.94515,23.84688],[86.94999,23.84598],[86.96041,23.84828],[86.96347,23.8527],[86.96566,23.86476],[86.96829,23.86748],[86.97324,23.86877],[86.98596,23.8596],[87.011,23.8526],[87.02423,23.84447],[87.03797,23.83921],[87.05159,23.82539],[87.06521,23.81672],[87.07344,23.81486],[87.08138,23.81012],[87.08671,23.80897],[87.089,23.81381],[87.0918,23.81537],[87.09749,23.81249],[87.10392,23.8044],[87.10732,23.80466],[87.10833,23.8082],[87.11643,23.8077],[87.11887,23.80524],[87.11842,23.80251],[87.11266,23.80536],[87.11053,23.80316],[87.11077,23.80036],[87.12178,23.79665],[87.12348,23.79926],[87.13136,23.798],[87.1399,23.80423],[87.14417,23.79905],[87.15049,23.79756],[87.15283,23.80291],[87.15498,23.80337],[87.15859,23.81453],[87.16438,23.81813],[87.16702,23.82453],[87.16331,23.82656],[87.16361,23.82917],[87.16031,23.83113],[87.15674,23.83154],[87.15372,23.82947],[87.13956,23.84841],[87.13002,23.85391],[87.12933,23.86863],[87.13306,23.87019],[87.14831,23.86625],[87.15135,23.86726],[87.15412,23.86542],[87.16575,23.86475],[87.17248,23.85868],[87.17393,23.85475],[87.1799,23.85197],[87.18734,23.85959],[87.19061,23.85738],[87.1961,23.85781],[87.19331,23.85251],[87.18733,23.84877],[87.1889,23.84728],[87.18858,23.84315],[87.19241,23.84365],[87.19627,23.84963],[87.20113,23.85019],[87.20307,23.84775],[87.20581,23.85633],[87.2122,23.85353],[87.21388,23.85056],[87.22058,23.85673],[87.2199,23.85877],[87.22121,23.86057],[87.2232,23.85824],[87.23368,23.85713],[87.23732,23.8544],[87.23048,23.84591],[87.22321,23.84562],[87.2224,23.83767],[87.21654,23.83171],[87.2174,23.82926],[87.22471,23.82764],[87.2279,23.82511],[87.23041,23.82565],[87.23088,23.82868],[87.2387,23.82643],[87.2464,23.83156],[87.24431,23.83205],[87.24893,23.83525],[87.24768,23.83896],[87.25129,23.84051],[87.25494,23.84704],[87.25,23.85004],[87.24906,23.85554],[87.24665,23.85448],[87.2443,23.85694],[87.24429,23.86024],[87.24648,23.86281],[87.24507,23.86486],[87.24873,23.86874],[87.24153,23.86966],[87.24149,23.87641],[87.24457,23.88213],[87.24274,23.88411],[87.24258,23.88815],[87.24406,23.89173],[87.24306,23.89338],[87.24544,23.89528],[87.2444,23.90309],[87.24655,23.9056],[87.24512,23.9082],[87.25216,23.91303],[87.25828,23.90631],[87.25876,23.90329],[87.25457,23.89997],[87.25889,23.89954],[87.25844,23.89409],[87.26225,23.88852],[87.26198,23.88447],[87.26338,23.88248],[87.25905,23.88317],[87.26915,23.87458],[87.27493,23.88175],[87.27543,23.88475],[87.28141,23.88851],[87.28349,23.88945],[87.28377,23.88563],[87.28553,23.88404],[87.2845,23.88892],[87.29111,23.89328],[87.28822,23.89855],[87.29503,23.90234],[87.29125,23.9051],[87.29164,23.9154],[87.28354,23.92091],[87.2882,23.9269],[87.28401,23.92957],[87.28416,23.93831],[87.29082,23.94167],[87.28977,23.9495],[87.29325,23.95863],[87.27979,23.96056],[87.27587,23.96542],[87.27093,23.96747],[87.26587,23.96566],[87.26153,23.96758],[87.26038,23.97216],[87.26262,23.98126],[87.26691,23.98221],[87.26826,23.9891],[87.26522,23.99394],[87.26416,24.00061],[87.26203,24.00322],[87.25343,23.99921],[87.25341,23.99624],[87.2505,23.99704],[87.24091,24.01191],[87.24456,24.01664],[87.23503,24.02018],[87.23289,24.02374],[87.23528,24.02685],[87.23443,24.03249],[87.2405,24.0384],[87.24128,24.04189],[87.2454,24.04506],[87.25353,24.04296],[87.26073,24.03739],[87.2676,24.03776],[87.27552,24.03295],[87.27889,24.03333],[87.28746,24.02886],[87.29258,24.03344],[87.30737,24.03183],[87.31576,24.03556],[87.32701,24.03286],[87.33712,24.03431],[87.33958,24.02652],[87.33629,24.02603],[87.3358,24.02068],[87.32769,24.01855],[87.32319,24.01264],[87.32363,24.00989],[87.31917,24.00848],[87.32203,24.00305],[87.32817,23.99867],[87.33767,24.00002],[87.35199,23.99918],[87.35701,24.00611],[87.35813,24.01183],[87.36042,24.01309],[87.37512,24.00895],[87.3791,24.00652],[87.38015,24.00408],[87.39462,24.00275],[87.403,23.99751],[87.41657,23.99265],[87.42037,23.99343],[87.42141,23.99231],[87.42323,23.9937],[87.42772,23.99235],[87.42922,23.98645],[87.43677,23.98212],[87.44572,23.98209],[87.4495,23.98796],[87.46039,23.98383],[87.46217,23.98907],[87.46169,23.99487],[87.45515,24.0003],[87.4555,24.00191],[87.44525,24.00202],[87.44384,24.00697],[87.44935,24.00878],[87.44876,24.01137],[87.44139,24.01137],[87.4387,24.00894],[87.43834,24.01355],[87.44453,24.0151],[87.44618,24.01377],[87.45089,24.01802],[87.4523,24.01654],[87.45829,24.01669],[87.45936,24.01882],[87.46165,24.01324],[87.46889,24.01405],[87.47235,24.01634],[87.47613,24.01227],[87.4822,24.01618],[87.49148,24.01862],[87.49688,24.02545],[87.50293,24.02608],[87.50359,24.03183],[87.51198,24.03584],[87.50939,24.04695],[87.49351,24.05416],[87.49528,24.05995],[87.49873,24.06153],[87.49985,24.06516],[87.49478,24.0668],[87.49061,24.07059],[87.49272,24.0769],[87.49827,24.07653],[87.50259,24.07379],[87.50608,24.07559],[87.50686,24.07972],[87.51075,24.08225],[87.50832,24.08543],[87.49739,24.08566],[87.48983,24.09011],[87.49225,24.09381],[87.49671,24.09358],[87.49577,24.099],[87.49756,24.09788],[87.50041,24.10184],[87.49576,24.11279],[87.49762,24.11897],[87.50439,24.11418],[87.5111,24.112],[87.51612,24.11421],[87.52191,24.11367],[87.52708,24.10655],[87.53219,24.10835],[87.5331,24.0998],[87.53538,24.09582],[87.54237,24.0912],[87.54306,24.08609],[87.54664,24.08542],[87.55392,24.08879],[87.55992,24.08197],[87.56253,24.0846],[87.56837,24.08557],[87.57091,24.08838],[87.58022,24.08637],[87.57434,24.1002],[87.5742,24.10799],[87.5766,24.11226],[87.5826,24.11312],[87.58702,24.12374],[87.59101,24.12701],[87.59564,24.12623],[87.59802,24.12811],[87.60233,24.12711],[87.61023,24.13253],[87.60496,24.13292],[87.59446,24.1423],[87.59388,24.14534],[87.57711,24.15653],[87.57432,24.16018],[87.57615,24.16128],[87.58155,24.15929],[87.5814,24.16248],[87.58501,24.16449],[87.58735,24.16155],[87.59272,24.16026],[87.59546,24.16138],[87.60637,24.16064],[87.6066,24.16415],[87.6083,24.16578],[87.61334,24.16444],[87.61528,24.16612],[87.62222,24.16338],[87.62438,24.16519],[87.63158,24.16427],[87.63271,24.15969],[87.64008,24.15723],[87.6422,24.15305],[87.653,24.15598],[87.65362,24.1571],[87.65187,24.1577],[87.65313,24.15872],[87.65679,24.15601],[87.65755,24.1589],[87.66432,24.15759],[87.66734,24.15298],[87.66842,24.15457],[87.67345,24.15154],[87.67559,24.15186],[87.67873,24.14808],[87.68224,24.15096],[87.68481,24.14982],[87.68885,24.15174],[87.69442,24.15024],[87.69699,24.15925],[87.6957,24.16159],[87.69681,24.16663],[87.7029,24.1792],[87.70237,24.18076],[87.69867,24.1808],[87.69861,24.18781],[87.68627,24.18943],[87.68216,24.19251],[87.67635,24.19373],[87.67728,24.1986],[87.67589,24.19976],[87.67558,24.20833],[87.66944,24.21012],[87.66714,24.2067],[87.65799,24.20979],[87.65434,24.20773],[87.63861,24.21399],[87.63776,24.21724],[87.6465,24.22549],[87.64479,24.2294],[87.64663,24.23153],[87.64395,24.23547],[87.63365,24.23653],[87.63437,24.24165],[87.64071,24.24843],[87.63878,24.25438],[87.64829,24.25063],[87.65466,24.23853],[87.65917,24.23612],[87.66277,24.23843],[87.6622,24.24492],[87.67234,24.24358],[87.6739,24.24802],[87.67627,24.24897],[87.68754,24.24644],[87.68666,24.2509],[87.6892,24.25326],[87.69036,24.25785],[87.69739,24.25991],[87.69995,24.2627],[87.70589,24.26144],[87.70929,24.27063],[87.70701,24.27578],[87.7133,24.28403],[87.71367,24.2944],[87.7293,24.28842],[87.73226,24.29171],[87.73861,24.29449],[87.73757,24.29611],[87.74315,24.29678],[87.74742,24.29924],[87.74613,24.30123],[87.74821,24.30435],[87.75486,24.31025],[87.7616,24.30847],[87.76297,24.32131],[87.77063,24.32214],[87.76902,24.32792],[87.76257,24.33079],[87.7644,24.33933],[87.76818,24.34472],[87.77123,24.34444],[87.77277,24.34977],[87.77984,24.35842],[87.78369,24.36243],[87.78597,24.36249],[87.79382,24.38307],[87.8011,24.38222],[87.79936,24.38716],[87.79935,24.39421],[87.79407,24.39684],[87.79395,24.39929],[87.79691,24.40218],[87.80219,24.39998],[87.80708,24.40701],[87.80958,24.40701],[87.80848,24.40539],[87.80981,24.40575],[87.81259,24.41188],[87.81128,24.41783],[87.80632,24.42014],[87.80437,24.4127],[87.7999,24.40918],[87.79955,24.41221],[87.79271,24.41477],[87.79331,24.41247],[87.79156,24.41433],[87.78853,24.4145],[87.78883,24.41655],[87.78979,24.42066],[87.79549,24.42143],[87.79415,24.42625],[87.79224,24.42774],[87.79612,24.43502],[87.79456,24.4364],[87.80077,24.43733],[87.80082,24.44092],[87.80394,24.44161],[87.80001,24.44591],[87.80314,24.454],[87.80999,24.45489],[87.81078,24.45651],[87.81355,24.45462],[87.8132,24.45671],[87.81978,24.45453],[87.81893,24.45799],[87.82377,24.45846],[87.82398,24.46517],[87.82119,24.46669],[87.82267,24.47103],[87.81865,24.47226],[87.81835,24.47481],[87.8107,24.47636],[87.81456,24.48864],[87.81662,24.49015],[87.82272,24.48845],[87.82729,24.48927],[87.82443,24.4906],[87.82576,24.49062],[87.82815,24.49862],[87.82384,24.50044],[87.82141,24.4965],[87.82313,24.49461],[87.81712,24.49255],[87.81623,24.49094],[87.81168,24.49077],[87.81131,24.49359],[87.81293,24.49365],[87.81191,24.49665],[87.81341,24.49739],[87.81254,24.49971],[87.81723,24.50061],[87.81348,24.50534],[87.81429,24.50884],[87.81138,24.50905],[87.8117,24.51272],[87.80934,24.51452],[87.80458,24.51097],[87.80459,24.50866],[87.80262,24.50823],[87.80453,24.50274],[87.80312,24.50202],[87.80564,24.50061],[87.80126,24.49372],[87.79866,24.49449],[87.79851,24.49705],[87.79579,24.49981],[87.79663,24.50127],[87.79414,24.50114],[87.796,24.50456],[87.80153,24.50441],[87.80082,24.50588],[87.8024,24.50733],[87.79833,24.50848],[87.79807,24.51137],[87.80194,24.5122],[87.80424,24.51923],[87.80216,24.52375],[87.79923,24.52473],[87.80042,24.53342],[87.79756,24.5388],[87.79957,24.54339],[87.8047,24.54188],[87.80859,24.54669],[87.80388,24.5547],[87.80245,24.56169],[87.79993,24.56137],[87.79988,24.5648],[87.79604,24.56591],[87.79496,24.56955],[87.79246,24.57166],[87.77837,24.57346],[87.77564,24.57124],[87.77019,24.57049],[87.77122,24.58302],[87.79213,24.58319],[87.79601,24.58076],[87.81218,24.57856],[87.81696,24.57339],[87.82534,24.56913],[87.82388,24.56402],[87.8263,24.55872],[87.83283,24.55806],[87.84082,24.55979],[87.84405,24.55743],[87.84792,24.5573],[87.84941,24.55384],[87.85328,24.55764],[87.85235,24.56177],[87.85644,24.5581],[87.86051,24.55883],[87.86087,24.55693],[87.86938,24.55602],[87.86922,24.5645],[87.88927,24.56505],[87.89171,24.56866],[87.89193,24.58418],[87.89774,24.58491],[87.9011,24.58938],[87.90828,24.58892],[87.91328,24.59346],[87.91405,24.59662],[87.91182,24.59793],[87.91318,24.59991],[87.91129,24.60103],[87.91077,24.61043],[87.89254,24.60975],[87.89168,24.60864],[87.89347,24.60548],[87.8873,24.60778],[87.88354,24.61206],[87.88117,24.61167],[87.88039,24.61325],[87.87837,24.61206],[87.87583,24.61523],[87.87811,24.61819],[87.88684,24.61702],[87.89265,24.61354],[87.90603,24.61501],[87.90577,24.62928],[87.90032,24.62559],[87.89744,24.6256],[87.88864,24.62634],[87.88792,24.63034],[87.89185,24.6341],[87.90993,24.6314],[87.91127,24.63797],[87.91414,24.63771],[87.91087,24.65342],[87.9163,24.65829],[87.91661,24.66575],[87.90844,24.66717],[87.90901,24.67],[87.90478,24.67244],[87.89711,24.67255],[87.89071,24.67521],[87.88775,24.67999],[87.89414,24.68701],[87.89767,24.68788],[87.90114,24.69412],[87.90292,24.70514],[87.89992,24.70518],[87.90064,24.71128],[87.90328,24.71464],[87.90724,24.71497],[87.90635,24.71977],[87.90835,24.72162],[87.90401,24.72252],[87.90459,24.72533],[87.89864,24.72369],[87.89001,24.72522],[87.8902,24.72795],[87.88825,24.72891],[87.8888,24.73438],[87.88735,24.73655],[87.8851,24.73679],[87.88545,24.73968],[87.88302,24.74132],[87.87855,24.74179],[87.87939,24.74035],[87.87413,24.73208],[87.86561,24.73203],[87.86353,24.7342],[87.85993,24.73393],[87.84887,24.74019],[87.84302,24.74002],[87.84109,24.74355],[87.83455,24.74892],[87.83221,24.74883],[87.82941,24.75458],[87.82291,24.75481],[87.81656,24.75806],[87.81639,24.75969],[87.82323,24.77006],[87.82702,24.76988],[87.82799,24.77219],[87.82881,24.76913],[87.83015,24.77001],[87.8323,24.78652],[87.83624,24.79021],[87.84071,24.78941],[87.84077,24.78637],[87.8421,24.7857],[87.84024,24.77783],[87.83598,24.77832],[87.8374,24.76579],[87.83817,24.76804],[87.84326,24.76859],[87.84795,24.76345],[87.85228,24.76199],[87.86388,24.77036],[87.86201,24.77254],[87.86542,24.77171],[87.86591,24.77347],[87.86923,24.77503],[87.87014,24.77865],[87.86684,24.77953],[87.86866,24.7836],[87.86864,24.78865],[87.87088,24.79089],[87.86976,24.79391],[87.87387,24.79558],[87.87551,24.79416],[87.87445,24.79083],[87.8783,24.78974],[87.87838,24.79602],[87.88074,24.79834],[87.8816,24.80537],[87.88071,24.808],[87.87462,24.8084],[87.87438,24.81801],[87.87019,24.8203],[87.86912,24.82464],[87.87053,24.82629],[87.87237,24.82476],[87.87507,24.82575],[87.87507,24.82239],[87.87933,24.82249],[87.87982,24.82415],[87.88117,24.82378],[87.88275,24.82953],[87.88505,24.82842],[87.88261,24.82327],[87.88439,24.82322],[87.88615,24.82816],[87.88727,24.82598],[87.88577,24.82367],[87.88802,24.82298],[87.89124,24.82699],[87.89619,24.82286],[87.90027,24.8241],[87.90136,24.8275],[87.89777,24.82768],[87.89604,24.8307],[87.89607,24.83603],[87.89887,24.83708],[87.89875,24.84461],[87.89654,24.84929],[87.89386,24.84974],[87.89133,24.85604],[87.89667,24.85777],[87.89727,24.86165],[87.91005,24.87473],[87.9167,24.88454],[87.95293,24.90776],[87.96083,24.92208],[87.95962,24.92901],[87.9628,24.93706],[87.95895,24.9508],[87.95775,24.97089],[87.95326,24.97708],[87.94482,24.98414],[87.94054,24.99085],[87.92273,25.00058],[87.90593,25.00389],[87.89936,25.00678],[87.85728,25.05463],[87.834,25.06526],[87.80579,25.07265],[87.80237,25.08289],[87.7929,25.09535],[87.78967,25.10442],[87.77903,25.1177],[87.77436,25.12136],[87.7744,25.14405],[87.78778,25.1913],[87.7897,25.20632],[87.7908,25.23442],[87.78916,25.24242],[87.78535,25.24971],[87.77633,25.25659],[87.76718,25.26098],[87.74745,25.26383],[87.71134,25.25764],[87.71152,25.27459],[87.69309,25.28511],[87.69632,25.29394],[87.69968,25.2971],[87.6954,25.30004],[87.69862,25.30396],[87.6954,25.30668],[87.68478,25.30687],[87.68431,25.30965],[87.68685,25.30918],[87.69208,25.31153],[87.67317,25.31286],[87.6755,25.31054],[87.67516,25.30703],[87.66874,25.30842],[87.66674,25.31077],[87.66565,25.30915],[87.66467,25.31124],[87.66368,25.30807],[87.65682,25.3087],[87.65501,25.30757],[87.63782,25.31479],[87.63667,25.31314],[87.63524,25.31389],[87.63588,25.31582],[87.63044,25.31969],[87.62699,25.31163],[87.61743,25.3181],[87.61331,25.31547],[87.61197,25.31266],[87.59228,25.3224],[87.59349,25.32513],[87.5841,25.33144],[87.58452,25.33348]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"21","area_level":"State","area_name":"Odisha","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.33623,18.79016],[84.3356,18.79029],[84.33466,18.79019],[84.33111,18.78954],[84.33072,18.78891],[84.3297,18.78883],[84.32927,18.7872],[84.3316,18.78614],[84.33439,18.78436],[84.3363,18.78287],[84.33686,18.78222],[84.33701,18.7814],[84.33727,18.78054],[84.33839,18.77937],[84.33936,18.77869],[84.33914,18.78226],[84.33924,18.78276],[84.33927,18.78428],[84.3392,18.78545],[84.33942,18.78638],[84.33937,18.78661],[84.33866,18.78784],[84.33926,18.78853],[84.33956,18.78911],[84.33959,18.7894],[84.33928,18.7897],[84.33888,18.78994],[84.3383,18.79002],[84.33703,18.78995],[84.33623,18.79016]]],[[[84.35171,18.78577],[84.35191,18.7861],[84.35215,18.78693],[84.35223,18.78758],[84.35245,18.78847],[84.35327,18.78989],[84.35247,18.79046],[84.35223,18.79075],[84.35201,18.79117],[84.35177,18.79133],[84.34968,18.79192],[84.34953,18.79096],[84.34958,18.78932],[84.34968,18.7887],[84.35011,18.78757],[84.35083,18.78677],[84.35131,18.78585],[84.35148,18.78571],[84.35171,18.78577]]],[[[86.78047,20.35814],[86.78093,20.35844],[86.78144,20.35892],[86.78312,20.36081],[86.78379,20.36164],[86.7843,20.36252],[86.78461,20.36345],[86.78454,20.36396],[86.78424,20.36413],[86.78395,20.36412],[86.78343,20.36399],[86.78274,20.36368],[86.78144,20.36232],[86.78083,20.36155],[86.78016,20.36055],[86.77979,20.35956],[86.7797,20.35852],[86.78006,20.35813],[86.78047,20.35814]]],[[[86.79212,20.3817],[86.7924,20.38194],[86.79262,20.38229],[86.79272,20.38299],[86.79259,20.3835],[86.79205,20.384],[86.79185,20.38446],[86.79184,20.38498],[86.79187,20.38567],[86.7918,20.38613],[86.7915,20.38641],[86.79103,20.38639],[86.79075,20.38615],[86.79048,20.38563],[86.79039,20.38482],[86.79041,20.38401],[86.79027,20.38303],[86.79029,20.38228],[86.79054,20.38177],[86.79114,20.38156],[86.79172,20.38152],[86.79212,20.3817]]],[[[86.80554,20.39577],[86.80438,20.39763],[86.8036,20.39818],[86.79922,20.40018],[86.79786,20.40054],[86.79676,20.40039],[86.79648,20.4001],[86.79649,20.39981],[86.79838,20.39912],[86.79856,20.39878],[86.79851,20.39843],[86.79744,20.39747],[86.79711,20.39677],[86.79738,20.39569],[86.79838,20.39526],[86.79916,20.39459],[86.80057,20.39452],[86.80047,20.39388],[86.80002,20.39335],[86.80005,20.39243],[86.79961,20.39144],[86.79963,20.39098],[86.80085,20.39107],[86.8022,20.39088],[86.80287,20.39021],[86.80275,20.38992],[86.80246,20.38985],[86.80145,20.3904],[86.80111,20.39033],[86.79963,20.38919],[86.79938,20.38774],[86.79994,20.38701],[86.79994,20.38667],[86.79967,20.38625],[86.79896,20.38641],[86.7979,20.38856],[86.79769,20.38965],[86.79785,20.39034],[86.79863,20.39129],[86.79856,20.39175],[86.79731,20.39263],[86.79613,20.39484],[86.79588,20.39518],[86.79571,20.39494],[86.79657,20.39186],[86.79657,20.38645],[86.79595,20.3824],[86.79546,20.38117],[86.79543,20.38013],[86.79557,20.37951],[86.79765,20.37663],[86.79792,20.37543],[86.79752,20.3734],[86.79669,20.37211],[86.79581,20.37018],[86.79585,20.36932],[86.79605,20.36852],[86.79838,20.36479],[86.79891,20.36452],[86.79995,20.36466],[86.80268,20.36699],[86.80627,20.37113],[86.80705,20.37237],[86.80748,20.37353],[86.80775,20.37775],[86.80741,20.38465],[86.8064,20.39245],[86.80554,20.39577]]],[[[86.78787,20.38347],[86.7906,20.38701],[86.7941,20.38885],[86.79311,20.39078],[86.79133,20.39901],[86.79188,20.40709],[86.79419,20.4131],[86.79511,20.41722],[86.79821,20.424],[86.80165,20.42952],[86.8068,20.4419],[86.80824,20.45312],[86.80655,20.46228],[86.8029,20.46706],[86.80121,20.47046],[86.79968,20.48142],[86.79806,20.48839],[86.79549,20.49176],[86.79322,20.49324],[86.79621,20.48418],[86.79596,20.47916],[86.79661,20.47527],[86.79759,20.47219],[86.79963,20.46857],[86.79907,20.46797],[86.79885,20.46578],[86.79566,20.45968],[86.79592,20.45889],[86.79747,20.45784],[86.79923,20.45392],[86.79928,20.44523],[86.80005,20.44312],[86.79901,20.43905],[86.79716,20.43859],[86.79264,20.43413],[86.79018,20.43255],[86.79154,20.42845],[86.79144,20.42597],[86.78928,20.41502],[86.79093,20.41104],[86.7889,20.40533],[86.78682,20.4048],[86.78666,20.40428],[86.78886,20.39588],[86.78704,20.38736],[86.78742,20.38634],[86.78703,20.38408],[86.78787,20.38347]]],[[[87.01175,20.71231],[87.01174,20.71283],[87.0119,20.71346],[87.01273,20.71463],[87.01297,20.71521],[87.01307,20.71602],[87.01307,20.71665],[87.01318,20.71717],[87.01306,20.71723],[87.01222,20.71681],[87.0115,20.71588],[87.01128,20.71524],[87.01045,20.71402],[87.00997,20.71361],[87.00921,20.71262],[87.00879,20.71197],[87.00825,20.71168],[87.00789,20.71173],[87.0077,20.7119],[87.0074,20.71207],[87.0068,20.71218],[87.00667,20.71217],[87.00661,20.71194],[87.00668,20.71166],[87.00711,20.71132],[87.00754,20.71121],[87.00778,20.71081],[87.00798,20.71035],[87.00828,20.70995],[87.00865,20.7099],[87.00918,20.71019],[87.00936,20.71054],[87.00965,20.71083],[87.01008,20.71101],[87.0108,20.71108],[87.01109,20.71137],[87.01175,20.71231]]],[[[87.00275,20.71177],[87.00365,20.7123],[87.00442,20.71301],[87.00531,20.71412],[87.0062,20.71505],[87.00778,20.71813],[87.00813,20.71917],[87.00812,20.71952],[87.00764,20.71951],[87.00734,20.71933],[87.00693,20.71869],[87.00592,20.71753],[87.00502,20.71676],[87.00444,20.71589],[87.00378,20.71513],[87.00243,20.71321],[87.00172,20.71193],[87.00173,20.71152],[87.00227,20.71142],[87.00275,20.71177]]],[[[87.05714,20.73021],[87.05756,20.73051],[87.05785,20.73096],[87.0579,20.73122],[87.05778,20.73156],[87.05745,20.73216],[87.05732,20.73221],[87.05693,20.73256],[87.05652,20.73279],[87.05631,20.73286],[87.05595,20.73281],[87.05586,20.73266],[87.05584,20.73246],[87.05587,20.73232],[87.0565,20.73209],[87.05673,20.73195],[87.05688,20.73178],[87.05695,20.73145],[87.05688,20.73095],[87.05674,20.7307],[87.05639,20.73046],[87.05584,20.73023],[87.05491,20.7302],[87.05434,20.73034],[87.0537,20.73043],[87.05348,20.73049],[87.0533,20.73041],[87.05325,20.73022],[87.05346,20.72984],[87.05372,20.72959],[87.05421,20.72959],[87.05574,20.72974],[87.05616,20.72974],[87.05678,20.72992],[87.05714,20.73021]]],[[[87.05184,20.73785],[87.05154,20.73806],[87.05135,20.7383],[87.05104,20.73841],[87.05096,20.73821],[87.05074,20.73794],[87.05083,20.73761],[87.05108,20.7373],[87.05158,20.73689],[87.05206,20.73682],[87.05257,20.73684],[87.05313,20.73709],[87.05252,20.73761],[87.05221,20.73763],[87.0521,20.73756],[87.05184,20.73785]]],[[[87.07416,20.73202],[87.0754,20.73328],[87.07581,20.73396],[87.07634,20.73426],[87.07625,20.73539],[87.07598,20.73597],[87.07609,20.73654],[87.07663,20.73784],[87.07738,20.73882],[87.078,20.73929],[87.07791,20.73994],[87.07796,20.74063],[87.0778,20.74181],[87.07796,20.74261],[87.07783,20.74321],[87.07789,20.74393],[87.07713,20.74396],[87.07652,20.74369],[87.07679,20.74347],[87.0759,20.74192],[87.07708,20.74095],[87.07732,20.74063],[87.07756,20.74002],[87.0774,20.7398],[87.07646,20.73929],[87.07609,20.73897],[87.07598,20.7383],[87.07526,20.73621],[87.07537,20.73578],[87.07469,20.73507],[87.07457,20.73448],[87.07382,20.73356],[87.07209,20.73198],[87.07169,20.73232],[87.07126,20.73235],[87.07117,20.73288],[87.07048,20.73369],[87.06995,20.73387],[87.06955,20.73347],[87.06977,20.73291],[87.07009,20.73271],[87.0702,20.73226],[87.07055,20.7319],[87.07111,20.73158],[87.07145,20.73084],[87.07199,20.73056],[87.07244,20.72869],[87.07351,20.72746],[87.07382,20.72778],[87.0729,20.72933],[87.07277,20.7303],[87.07345,20.73127],[87.07416,20.73202]]],[[[87.05714,20.74542],[87.05482,20.7455],[87.05311,20.74527],[87.05191,20.74527],[87.05112,20.74504],[87.05007,20.7446],[87.04938,20.74403],[87.04965,20.74357],[87.04999,20.74331],[87.05106,20.74354],[87.05188,20.74365],[87.05259,20.74374],[87.05323,20.74374],[87.05467,20.74394],[87.05534,20.74409],[87.05582,20.74435],[87.05793,20.74464],[87.05919,20.74432],[87.05965,20.74386],[87.05934,20.74446],[87.05885,20.74492],[87.05824,20.74521],[87.0576,20.74527],[87.05714,20.74542]]],[[[87.07109,20.73668],[87.07061,20.73722],[87.07035,20.73772],[87.0703,20.73838],[87.07046,20.73898],[87.07106,20.74013],[87.07175,20.74266],[87.07167,20.74376],[87.0717,20.74447],[87.07193,20.74691],[87.07226,20.74784],[87.07246,20.74875],[87.07226,20.74899],[87.07181,20.74895],[87.07104,20.74689],[87.07106,20.74556],[87.07045,20.74251],[87.07035,20.74035],[87.07022,20.73949],[87.07001,20.73891],[87.06971,20.73838],[87.06933,20.73792],[87.06878,20.73763],[87.07066,20.73644],[87.07096,20.73634],[87.07109,20.73668]]],[[[87.09767,20.7482],[87.09726,20.74839],[87.09701,20.74839],[87.0969,20.74832],[87.09683,20.74824],[87.09676,20.74808],[87.09678,20.74794],[87.09689,20.74778],[87.09706,20.74763],[87.09732,20.74753],[87.09788,20.74741],[87.0981,20.7474],[87.09832,20.74747],[87.09841,20.74761],[87.09844,20.74776],[87.09844,20.74792],[87.09842,20.74804],[87.09832,20.74813],[87.09812,20.74817],[87.09791,20.74817],[87.09767,20.7482]]],[[[87.10036,20.74892],[87.1005,20.74931],[87.10056,20.74966],[87.10075,20.75],[87.10112,20.75027],[87.10157,20.75053],[87.10202,20.75068],[87.10191,20.75103],[87.10168,20.75151],[87.10151,20.75145],[87.10092,20.75116],[87.1005,20.75093],[87.10011,20.75079],[87.09969,20.75051],[87.09941,20.75003],[87.09935,20.74961],[87.09938,20.74939],[87.09958,20.749],[87.09983,20.74878],[87.10011,20.74876],[87.10036,20.74892]]],[[[87.08638,20.76383],[87.0859,20.76453],[87.08502,20.76462],[87.08434,20.7643],[87.08372,20.76349],[87.08328,20.76321],[87.08306,20.76327],[87.08292,20.76382],[87.08238,20.76391],[87.08154,20.76278],[87.07989,20.76154],[87.07973,20.76126],[87.0797,20.76098],[87.08062,20.7593],[87.08044,20.75876],[87.07976,20.75846],[87.0792,20.7578],[87.07818,20.75776],[87.0778,20.75722],[87.0768,20.75684],[87.07505,20.75652],[87.07333,20.75594],[87.07285,20.75562],[87.0725,20.75477],[87.07268,20.7541],[87.07308,20.7535],[87.07416,20.75265],[87.07504,20.75266],[87.07778,20.75338],[87.0801,20.75374],[87.08273,20.75394],[87.0838,20.75379],[87.08437,20.75387],[87.08569,20.75354],[87.08651,20.75353],[87.08779,20.75375],[87.08923,20.75349],[87.09091,20.75345],[87.09201,20.75304],[87.09348,20.753],[87.09422,20.75328],[87.09479,20.75419],[87.09522,20.7546],[87.09566,20.75473],[87.09714,20.75474],[87.09752,20.75492],[87.09716,20.75544],[87.09441,20.75646],[87.09289,20.75682],[87.09165,20.75774],[87.08837,20.7606],[87.08726,20.763],[87.08638,20.76383]]],[[[86.98171,20.77771],[86.98294,20.77901],[86.98361,20.78039],[86.98373,20.78133],[86.98335,20.78306],[86.98301,20.78443],[86.98264,20.78482],[86.98197,20.78482],[86.98141,20.78422],[86.98036,20.78278],[86.97882,20.78035],[86.97845,20.77881],[86.97871,20.77799],[86.97924,20.7774],[86.98043,20.77722],[86.98171,20.77771]]],[[[87.07358,20.79111],[87.07122,20.79309],[87.06999,20.79373],[87.06927,20.79386],[87.06878,20.7935],[87.06948,20.79168],[87.06985,20.79116],[87.07071,20.79076],[87.07179,20.79093],[87.07215,20.79056],[87.07208,20.79033],[87.0718,20.79017],[87.07058,20.79027],[87.06948,20.78905],[87.06944,20.78846],[87.06986,20.78839],[87.07034,20.78884],[87.07053,20.78866],[87.07072,20.7887],[87.07083,20.78905],[87.0711,20.7893],[87.07177,20.78939],[87.07317,20.78901],[87.07407,20.7875],[87.07437,20.78251],[87.07475,20.77913],[87.07463,20.77674],[87.07487,20.77543],[87.07418,20.7738],[87.07388,20.77272],[87.07383,20.77094],[87.07295,20.77042],[87.07391,20.7694],[87.0742,20.76794],[87.07478,20.7674],[87.07589,20.77059],[87.07601,20.77202],[87.07542,20.77371],[87.07534,20.77995],[87.07511,20.78329],[87.07475,20.7848],[87.07485,20.78645],[87.07475,20.78902],[87.07436,20.7904],[87.07358,20.79111]]],[[[86.99013,20.80243],[86.99006,20.80298],[86.98985,20.80334],[86.98954,20.80369],[86.98921,20.80388],[86.98777,20.80396],[86.98714,20.80379],[86.98657,20.80344],[86.98611,20.80298],[86.98605,20.80262],[86.98612,20.80231],[86.98658,20.80199],[86.9871,20.80202],[86.98808,20.80221],[86.98851,20.80224],[86.98899,20.80217],[86.98943,20.80198],[86.9898,20.80192],[86.99006,20.80204],[86.99013,20.80243]]],[[[87.4301,21.58621],[87.43031,21.58657],[87.43007,21.5867],[87.42914,21.5863],[87.42739,21.58614],[87.42613,21.58634],[87.42484,21.58572],[87.42184,21.58282],[87.419,21.57872],[87.41742,21.57498],[87.41596,21.5725],[87.4138,21.56968],[87.41321,21.56854],[87.41319,21.56764],[87.41268,21.56514],[87.41299,21.56344],[87.4135,21.5621],[87.41338,21.5609],[87.41371,21.56017],[87.41449,21.56195],[87.41428,21.56339],[87.41441,21.56498],[87.41473,21.56535],[87.41547,21.56557],[87.41627,21.56619],[87.41609,21.56686],[87.41695,21.5681],[87.41698,21.56851],[87.41658,21.56931],[87.41656,21.57],[87.41836,21.57054],[87.41867,21.57133],[87.41851,21.57215],[87.41961,21.5726],[87.41993,21.57297],[87.42119,21.57635],[87.42283,21.5785],[87.42325,21.58007],[87.42507,21.58145],[87.42496,21.58233],[87.42514,21.58251],[87.42704,21.58298],[87.4289,21.58477],[87.42989,21.58548],[87.4301,21.58621]]],[[[86.04544,22.56751],[86.03217,22.55503],[86.02403,22.54462],[86.03384,22.53449],[86.02653,22.52402],[86.02091,22.52732],[86.00409,22.51776],[86.00103,22.51458],[85.99349,22.51438],[85.98961,22.51669],[85.98851,22.51534],[85.98514,22.51548],[85.98179,22.51092],[85.98001,22.51136],[85.97815,22.50842],[85.9734,22.50586],[85.97353,22.49962],[85.97096,22.49739],[85.97233,22.49169],[85.96839,22.48629],[85.96274,22.48512],[85.9626,22.47279],[85.95712,22.46482],[85.96035,22.46139],[85.96788,22.46119],[85.96564,22.45115],[85.97288,22.44717],[85.98461,22.43545],[86.00275,22.42637],[86.01069,22.43019],[86.015,22.42873],[86.01925,22.40743],[86.01833,22.40247],[86.02034,22.40079],[86.02087,22.39724],[86.02437,22.39622],[86.02267,22.39371],[86.02395,22.39267],[86.02339,22.39001],[86.0272,22.38621],[86.02521,22.38361],[86.02713,22.38056],[86.02478,22.37901],[86.02475,22.37539],[86.02106,22.37618],[86.02013,22.37177],[86.02176,22.36482],[86.01919,22.3609],[86.01467,22.35965],[86.0108,22.35229],[86.00753,22.35151],[86.00367,22.34672],[85.99821,22.34515],[85.99802,22.3416],[86.00338,22.33568],[86.00783,22.33776],[86.00949,22.33957],[86.00829,22.34095],[86.01075,22.34123],[86.01956,22.33903],[86.02671,22.33486],[86.01193,22.32232],[86.01049,22.31787],[86.01306,22.31789],[86.0137,22.31307],[86.01605,22.31437],[86.02257,22.309],[86.02735,22.3093],[86.02891,22.30769],[86.03236,22.31122],[86.03815,22.31036],[86.04067,22.31246],[86.04716,22.31145],[86.04721,22.30896],[86.04058,22.30632],[86.0341,22.30619],[86.03289,22.30329],[86.02942,22.303],[86.02882,22.3007],[86.02496,22.3026],[86.02218,22.30003],[86.01898,22.30038],[86.01425,22.29729],[86.00611,22.28739],[86.00704,22.28461],[86.0041,22.28018],[85.99871,22.27724],[85.98832,22.26697],[85.98771,22.26315],[85.99064,22.25694],[85.9897,22.25441],[85.97388,22.24708],[85.98092,22.23891],[85.98567,22.23714],[85.99131,22.22676],[86.00286,22.21383],[86.01837,22.20533],[86.03108,22.19307],[86.03143,22.19085],[86.01723,22.17162],[86.01526,22.16166],[86.00551,22.15086],[86.00351,22.13957],[85.99947,22.13569],[85.99877,22.13302],[85.99676,22.13245],[85.99717,22.12802],[86.00738,22.11709],[86.00381,22.11386],[85.99251,22.09468],[85.98642,22.08897],[85.98044,22.07521],[85.96877,22.0608],[85.96504,22.05237],[85.94359,22.02036],[85.93088,22.02334],[85.92295,22.01124],[85.91615,22.00878],[85.91616,22.00269],[85.91221,21.99719],[85.90952,21.98782],[85.91166,21.98488],[85.9102,21.98117],[85.91189,21.98017],[85.90656,21.97695],[85.91128,21.97341],[85.90689,21.97013],[85.90347,21.97307],[85.90238,21.9782],[85.90009,21.97958],[85.89871,21.98316],[85.89571,21.98324],[85.89577,21.98441],[85.89385,21.98439],[85.8937,21.98229],[85.89159,21.98122],[85.88208,21.98014],[85.85321,21.98376],[85.83614,21.98085],[85.83258,21.97728],[85.82437,21.97545],[85.8209,21.97746],[85.81699,21.98577],[85.81046,21.98631],[85.80537,21.98942],[85.79041,21.98582],[85.78584,21.98704],[85.78275,21.98495],[85.76299,21.99614],[85.76251,22.00125],[85.75857,22.00949],[85.7608,22.01454],[85.76716,22.02349],[85.77496,22.02872],[85.77959,22.02967],[85.78376,22.04018],[85.77873,22.04556],[85.77494,22.05629],[85.79344,22.08181],[85.81611,22.07357],[85.82266,22.07443],[85.83586,22.08016],[85.83268,22.09304],[85.82177,22.09466],[85.81976,22.09643],[85.81332,22.09429],[85.81305,22.09649],[85.82104,22.1065],[85.80743,22.11611],[85.80117,22.10986],[85.79755,22.1084],[85.79732,22.10475],[85.79017,22.10484],[85.78099,22.0965],[85.7673,22.09278],[85.7574,22.08458],[85.75705,22.07831],[85.74939,22.07357],[85.74015,22.07098],[85.7302,22.06528],[85.72054,22.06389],[85.718,22.06174],[85.71337,22.06248],[85.70917,22.05823],[85.70094,22.06173],[85.69168,22.06229],[85.68938,22.05605],[85.68487,22.05423],[85.67733,22.05695],[85.67844,22.06294],[85.67166,22.06748],[85.67025,22.07343],[85.66406,22.07685],[85.66158,22.08334],[85.65738,22.08393],[85.65527,22.09233],[85.65162,22.09544],[85.64412,22.09426],[85.63981,22.08667],[85.63703,22.0871],[85.63246,22.08417],[85.62888,22.08601],[85.62492,22.08209],[85.61345,22.08154],[85.61388,22.08609],[85.61118,22.08704],[85.60681,22.07984],[85.59718,22.07912],[85.59229,22.08044],[85.59023,22.084],[85.58622,22.08654],[85.57155,22.09116],[85.5662,22.08889],[85.56099,22.09178],[85.56044,22.09607],[85.54298,22.09047],[85.53902,22.0971],[85.53978,22.10185],[85.53413,22.10264],[85.52489,22.11002],[85.50978,22.11775],[85.48991,22.12108],[85.48293,22.1276],[85.4747,22.12893],[85.47069,22.13412],[85.46187,22.1399],[85.447,22.14637],[85.44299,22.14667],[85.43877,22.15035],[85.43412,22.15099],[85.42115,22.15878],[85.41137,22.16182],[85.39727,22.1632],[85.39207,22.15903],[85.38255,22.15644],[85.37511,22.15737],[85.37107,22.16099],[85.36579,22.15847],[85.36654,22.15363],[85.36396,22.15214],[85.36345,22.14748],[85.36039,22.14401],[85.36189,22.1411],[85.36084,22.13151],[85.36488,22.12883],[85.36441,22.12371],[85.35939,22.12395],[85.35059,22.1295],[85.34648,22.13025],[85.34354,22.12738],[85.32309,22.1275],[85.31884,22.12083],[85.31058,22.11882],[85.29926,22.10539],[85.2813,22.09043],[85.27513,22.08229],[85.27285,22.07359],[85.26306,22.05868],[85.2517,22.02697],[85.24417,22.01581],[85.24056,22.01363],[85.23993,22.011],[85.23629,22.0098],[85.22921,22.01241],[85.22591,22.01609],[85.22143,22.01799],[85.21687,22.03357],[85.21859,22.04093],[85.21485,22.04333],[85.21508,22.04772],[85.21345,22.04969],[85.2104,22.04942],[85.19817,22.05594],[85.18572,22.05921],[85.18057,22.07323],[85.1746,22.07459],[85.16762,22.06951],[85.17121,22.06342],[85.17083,22.05663],[85.17387,22.05138],[85.16685,22.0537],[85.16512,22.06381],[85.16038,22.06966],[85.16054,22.07471],[85.1548,22.07883],[85.14482,22.07974],[85.14033,22.07761],[85.13179,22.07681],[85.12007,22.07018],[85.11866,22.0742],[85.11251,22.07984],[85.11381,22.08354],[85.1124,22.08704],[85.10881,22.0876],[85.10557,22.09023],[85.10379,22.08953],[85.10057,22.09372],[85.10169,22.09812],[85.10011,22.10363],[85.09574,22.10621],[85.09488,22.10836],[85.08897,22.10573],[85.07046,22.1129],[85.05527,22.11568],[85.03909,22.11562],[85.02892,22.10933],[85.02387,22.11016],[85.01765,22.10342],[85.0158,22.10361],[85.01306,22.09879],[85.01174,22.09141],[85.00865,22.08886],[85.00658,22.09006],[85.00569,22.0879],[84.99369,22.0814],[84.98695,22.08282],[84.98456,22.08661],[84.98339,22.09552],[84.99141,22.09956],[84.99948,22.1077],[85.02358,22.11862],[85.03167,22.13309],[85.03417,22.14702],[85.02834,22.15718],[85.0291,22.16349],[85.04162,22.17299],[85.04283,22.17734],[85.05026,22.17916],[85.05266,22.18246],[85.05369,22.18539],[85.04919,22.19541],[85.05415,22.19799],[85.05582,22.20271],[85.05921,22.206],[85.05849,22.20925],[85.07225,22.23772],[85.06936,22.24358],[85.07025,22.24806],[85.07332,22.24805],[85.0782,22.25739],[85.07664,22.26108],[85.07341,22.2629],[85.0746,22.26485],[85.07218,22.26705],[85.07382,22.26876],[85.07148,22.27036],[85.07061,22.27365],[85.09963,22.29357],[85.10644,22.2959],[85.116,22.29409],[85.11413,22.30542],[85.11601,22.30811],[85.11416,22.31045],[85.11544,22.31528],[85.1181,22.31759],[85.11535,22.31978],[85.10637,22.32148],[85.10069,22.31992],[85.09549,22.31571],[85.09074,22.31858],[85.08939,22.32043],[85.09389,22.33328],[85.09575,22.34474],[85.09461,22.34673],[85.08333,22.34534],[85.08384,22.34905],[85.07892,22.35237],[85.07667,22.35621],[85.07916,22.36051],[85.07739,22.36551],[85.08696,22.38254],[85.08787,22.38847],[85.08622,22.38943],[85.08653,22.39942],[85.08023,22.41001],[85.08208,22.41653],[85.07537,22.42055],[85.0678,22.42843],[85.06683,22.44091],[85.06106,22.44513],[85.06029,22.44956],[85.06422,22.45424],[85.07715,22.46375],[85.07403,22.46553],[85.07524,22.46862],[85.07675,22.46874],[85.078,22.47755],[85.07601,22.48029],[85.07179,22.4792],[85.06726,22.48417],[85.05968,22.48645],[85.05216,22.48251],[85.0443,22.48233],[85.04165,22.48055],[85.03808,22.48043],[85.03805,22.48196],[85.03595,22.48243],[85.03628,22.47937],[85.03765,22.47949],[85.03718,22.47282],[85.03547,22.47378],[85.01938,22.4706],[84.97302,22.45112],[84.96488,22.44933],[84.95935,22.44305],[84.95667,22.45823],[84.9449,22.45246],[84.94021,22.4452],[84.93194,22.44622],[84.92386,22.44355],[84.92387,22.44093],[84.92656,22.43958],[84.92615,22.43495],[84.9159,22.42611],[84.91023,22.42328],[84.89925,22.42343],[84.88558,22.42108],[84.88559,22.42613],[84.88871,22.42921],[84.8849,22.43745],[84.88509,22.44276],[84.88239,22.44847],[84.87292,22.44227],[84.87307,22.43947],[84.85373,22.43592],[84.84563,22.43626],[84.84223,22.43423],[84.84216,22.43174],[84.83855,22.43093],[84.83738,22.43253],[84.81763,22.43761],[84.81778,22.44462],[84.81252,22.45293],[84.80571,22.44767],[84.80145,22.44846],[84.79907,22.4473],[84.7973,22.44864],[84.79604,22.44626],[84.78875,22.44819],[84.76551,22.44865],[84.75932,22.44747],[84.75206,22.4306],[84.74974,22.41899],[84.71877,22.4199],[84.71556,22.41728],[84.69863,22.4164],[84.68384,22.41992],[84.676,22.41942],[84.67413,22.42191],[84.66806,22.41806],[84.65216,22.42621],[84.62865,22.43455],[84.62196,22.43156],[84.6103,22.43094],[84.60259,22.42883],[84.59785,22.4348],[84.59418,22.43006],[84.5709,22.4274],[84.54929,22.42104],[84.54694,22.42607],[84.54033,22.42719],[84.53806,22.42556],[84.5362,22.42737],[84.53136,22.4259],[84.53054,22.4228],[84.52439,22.41998],[84.51698,22.41935],[84.51064,22.42103],[84.48958,22.41364],[84.48244,22.41327],[84.48069,22.41017],[84.47698,22.40801],[84.47673,22.40528],[84.47793,22.39925],[84.48029,22.39798],[84.47884,22.39408],[84.4844,22.39258],[84.48463,22.38885],[84.47601,22.38665],[84.46118,22.37905],[84.45321,22.38105],[84.45345,22.37946],[84.44953,22.38029],[84.43496,22.37417],[84.43053,22.36894],[84.43226,22.36531],[84.43067,22.36404],[84.43427,22.36047],[84.42998,22.35793],[84.42813,22.35327],[84.4237,22.35444],[84.42041,22.35235],[84.41618,22.35281],[84.40032,22.34646],[84.39969,22.34782],[84.39676,22.3474],[84.39213,22.34986],[84.38302,22.34911],[84.37959,22.35262],[84.37032,22.35573],[84.36789,22.35466],[84.36564,22.3482],[84.33951,22.34755],[84.32994,22.34425],[84.32474,22.34528],[84.31683,22.34231],[84.31336,22.34444],[84.29533,22.34102],[84.29151,22.34213],[84.29004,22.34689],[84.27836,22.34928],[84.26881,22.35455],[84.25561,22.37442],[84.25146,22.37808],[84.19896,22.37581],[84.18489,22.39023],[84.16598,22.39985],[84.15613,22.40774],[84.14093,22.42562],[84.14055,22.44139],[84.1389,22.44776],[84.14138,22.45335],[84.14289,22.46423],[84.14068,22.47392],[84.137,22.47379],[84.13535,22.47659],[84.1288,22.4776],[84.12484,22.47493],[84.11349,22.47569],[84.10631,22.48065],[84.10686,22.48274],[84.10883,22.48268],[84.10795,22.48376],[84.10248,22.48408],[84.09031,22.48929],[84.08088,22.49412],[84.07305,22.50097],[84.07024,22.50135],[84.07528,22.50283],[84.07549,22.5062],[84.06512,22.50761],[84.06454,22.51248],[84.06132,22.51324],[84.05971,22.51643],[84.05306,22.5129],[84.04925,22.51704],[84.03656,22.51597],[84.02771,22.5205],[84.02552,22.52575],[84.01293,22.52337],[84.00921,22.52558],[84.01001,22.5264],[84.00439,22.52757],[84.00292,22.53033],[83.99761,22.53103],[83.99489,22.5281],[83.98673,22.52554],[83.98091,22.52155],[83.98099,22.51615],[83.97741,22.51587],[83.97465,22.51203],[83.98048,22.50757],[83.98007,22.50239],[83.99785,22.49762],[84.00287,22.49332],[84.01742,22.48925],[84.0266,22.47532],[84.04075,22.4731],[84.04725,22.46922],[84.04542,22.4626],[84.0464,22.45535],[84.04489,22.45286],[84.04725,22.43823],[84.04172,22.43499],[84.03879,22.4297],[84.03034,22.42664],[84.03027,22.42008],[84.02468,22.4155],[84.02347,22.40945],[84.02006,22.40856],[84.01339,22.39742],[84.01318,22.39427],[84.00638,22.3822],[84.01029,22.37158],[84.00578,22.37368],[83.99667,22.37199],[83.98253,22.36733],[83.97025,22.3588],[83.95499,22.36166],[83.94822,22.35632],[83.94329,22.35471],[83.93269,22.35396],[83.92328,22.35841],[83.90652,22.35129],[83.90252,22.34659],[83.90132,22.33936],[83.89033,22.33655],[83.87921,22.33538],[83.87207,22.33778],[83.86932,22.34125],[83.86426,22.34328],[83.86399,22.34163],[83.86041,22.34047],[83.86024,22.33875],[83.85431,22.33764],[83.85493,22.33453],[83.85288,22.32712],[83.85029,22.32523],[83.83524,22.32228],[83.83056,22.3234],[83.82815,22.31752],[83.82198,22.31153],[83.826,22.3055],[83.82285,22.30128],[83.82727,22.29387],[83.82636,22.29282],[83.81985,22.29129],[83.81906,22.28957],[83.81691,22.29088],[83.80926,22.28895],[83.80278,22.29015],[83.79485,22.28595],[83.79604,22.28247],[83.79223,22.27648],[83.77975,22.27383],[83.77665,22.26985],[83.77679,22.26627],[83.77472,22.26477],[83.77524,22.26166],[83.77673,22.2613],[83.77558,22.25734],[83.77289,22.25571],[83.76645,22.25563],[83.75971,22.25121],[83.75768,22.24714],[83.75775,22.24034],[83.74436,22.23963],[83.72949,22.24282],[83.72821,22.24134],[83.7212,22.24304],[83.71306,22.24272],[83.70516,22.24685],[83.69147,22.24412],[83.69105,22.24273],[83.66577,22.23273],[83.66447,22.22879],[83.65531,22.22004],[83.64951,22.22334],[83.62962,22.20666],[83.61333,22.1777],[83.60815,22.15437],[83.59369,22.14029],[83.58321,22.12507],[83.57592,22.1209],[83.56435,22.106],[83.56181,22.09892],[83.56284,22.0962],[83.57694,22.09032],[83.59358,22.07421],[83.60642,22.06659],[83.6034,22.06383],[83.60152,22.05877],[83.59617,22.05789],[83.58988,22.05445],[83.58671,22.04873],[83.58307,22.05023],[83.58178,22.05458],[83.55822,22.05485],[83.55737,22.05371],[83.55429,22.05437],[83.55398,22.05292],[83.55035,22.05335],[83.5469,22.057],[83.54781,22.05915],[83.54374,22.05697],[83.53672,22.04348],[83.53647,22.0296],[83.53979,22.02167],[83.55615,22.00782],[83.54331,21.99385],[83.54355,21.98762],[83.53716,21.97796],[83.53901,21.96599],[83.54204,21.96211],[83.56169,21.94801],[83.55915,21.94505],[83.55672,21.93535],[83.59036,21.9297],[83.59987,21.92207],[83.60157,21.91806],[83.60592,21.91412],[83.60294,21.90858],[83.59848,21.90497],[83.597,21.906],[83.5947,21.90343],[83.58597,21.90213],[83.58523,21.89964],[83.58708,21.89453],[83.58155,21.88985],[83.57783,21.8892],[83.58081,21.88327],[83.57644,21.88237],[83.57421,21.87511],[83.59089,21.8511],[83.58708,21.84352],[83.58145,21.83817],[83.57791,21.83752],[83.57885,21.83245],[83.57691,21.8313],[83.56848,21.83317],[83.56318,21.8374],[83.55177,21.84071],[83.54163,21.83826],[83.53187,21.83096],[83.53119,21.82625],[83.5401,21.82204],[83.53741,21.81308],[83.54273,21.80573],[83.54104,21.79931],[83.5287,21.79955],[83.52587,21.7983],[83.52259,21.79945],[83.50593,21.80796],[83.49291,21.81837],[83.49374,21.813],[83.4878,21.80731],[83.48712,21.80036],[83.48365,21.79419],[83.47761,21.79083],[83.47547,21.79126],[83.47279,21.78747],[83.46939,21.78756],[83.47617,21.78078],[83.48218,21.7656],[83.47605,21.75238],[83.48744,21.74895],[83.48932,21.74539],[83.4852,21.74517],[83.48018,21.73396],[83.4813,21.73113],[83.47784,21.73054],[83.47336,21.72064],[83.46106,21.70909],[83.45948,21.69855],[83.4517,21.69542],[83.44077,21.6989],[83.43165,21.69991],[83.42882,21.69462],[83.42483,21.69248],[83.42287,21.68884],[83.42385,21.68721],[83.42216,21.68705],[83.41869,21.68065],[83.43127,21.67421],[83.44248,21.66129],[83.44813,21.65754],[83.46976,21.64873],[83.48661,21.64413],[83.48714,21.6399],[83.49193,21.63818],[83.48955,21.63487],[83.48961,21.63146],[83.48619,21.63009],[83.47356,21.63249],[83.47349,21.62737],[83.46986,21.62154],[83.46627,21.60955],[83.4606,21.6078],[83.45611,21.61],[83.45506,21.61241],[83.45227,21.61287],[83.45247,21.62241],[83.44397,21.624],[83.44463,21.63043],[83.44292,21.63142],[83.44438,21.63929],[83.45076,21.65075],[83.44265,21.65541],[83.42884,21.64723],[83.42757,21.64352],[83.41504,21.6408],[83.40907,21.6372],[83.40347,21.63094],[83.39559,21.62709],[83.39246,21.62729],[83.38943,21.61769],[83.38268,21.62013],[83.38304,21.61426],[83.38014,21.60813],[83.36966,21.60051],[83.37051,21.59126],[83.36774,21.59172],[83.36893,21.58898],[83.36694,21.58666],[83.36895,21.585],[83.36497,21.57608],[83.36775,21.57209],[83.36748,21.56874],[83.36989,21.56806],[83.3693,21.56668],[83.37186,21.56442],[83.37033,21.55875],[83.37187,21.5596],[83.37316,21.55816],[83.36978,21.55646],[83.36999,21.55252],[83.36598,21.55081],[83.36766,21.54932],[83.3662,21.54663],[83.36451,21.54704],[83.36427,21.545],[83.36014,21.54285],[83.3614,21.53916],[83.35866,21.53824],[83.35709,21.52808],[83.35204,21.52115],[83.34962,21.51265],[83.34304,21.50965],[83.33788,21.5021],[83.34061,21.49517],[83.34706,21.48898],[83.34574,21.47962],[83.34655,21.4716],[83.35147,21.46003],[83.35437,21.44807],[83.36686,21.44555],[83.37362,21.44239],[83.37124,21.43551],[83.37428,21.43498],[83.37587,21.42806],[83.37815,21.42683],[83.38529,21.41537],[83.39346,21.40771],[83.39893,21.40534],[83.3972,21.38803],[83.40051,21.37588],[83.39687,21.36756],[83.40062,21.36391],[83.40802,21.36137],[83.40675,21.35142],[83.39183,21.34264],[83.38549,21.3463],[83.37888,21.34455],[83.36977,21.34671],[83.36686,21.34936],[83.35461,21.35429],[83.34772,21.35375],[83.34718,21.35629],[83.34385,21.35836],[83.32297,21.3624],[83.31137,21.37084],[83.28606,21.37761],[83.28405,21.38033],[83.26873,21.37859],[83.27424,21.37729],[83.27469,21.36383],[83.26868,21.34549],[83.2578,21.33555],[83.25769,21.3336],[83.26653,21.33086],[83.26283,21.33027],[83.25734,21.3205],[83.26208,21.30783],[83.26883,21.30507],[83.27205,21.30188],[83.27629,21.3023],[83.27927,21.29496],[83.27859,21.28932],[83.27491,21.28581],[83.2713,21.27294],[83.26908,21.27406],[83.26777,21.27756],[83.25583,21.28212],[83.25059,21.28238],[83.24627,21.28116],[83.23933,21.27363],[83.23796,21.26961],[83.23191,21.27272],[83.22295,21.26577],[83.22167,21.26007],[83.21765,21.25485],[83.22215,21.22872],[83.2189,21.22861],[83.21758,21.22597],[83.21857,21.22089],[83.21706,21.21331],[83.21275,21.2102],[83.21053,21.20504],[83.21462,21.19479],[83.20933,21.18945],[83.20511,21.17943],[83.20284,21.17764],[83.20462,21.1657],[83.19852,21.16426],[83.19836,21.15346],[83.19656,21.15143],[83.1981,21.14544],[83.19136,21.13869],[83.17816,21.1352],[83.17104,21.13617],[83.16691,21.13879],[83.16464,21.13523],[83.15733,21.13107],[83.14743,21.11856],[83.13893,21.11333],[83.14065,21.11234],[83.13867,21.10951],[83.13149,21.10581],[83.1241,21.1067],[83.1216,21.1099],[83.11354,21.11266],[83.10128,21.10999],[83.09709,21.11016],[83.09442,21.11328],[83.09011,21.11113],[83.0849,21.11295],[83.07781,21.11195],[83.07725,21.11407],[83.075,21.11365],[83.06851,21.11685],[83.06611,21.12076],[83.05603,21.12231],[83.05233,21.12627],[83.04525,21.12401],[83.03865,21.13173],[83.03383,21.13193],[83.03482,21.13663],[83.03338,21.1373],[83.02891,21.13513],[83.02304,21.13656],[83.0203,21.14346],[83.016,21.14631],[83.01005,21.14474],[83.01013,21.14257],[83.00458,21.13696],[83.00155,21.13687],[82.99936,21.13891],[82.99545,21.13853],[82.99373,21.14084],[82.99039,21.13981],[82.98576,21.15104],[82.9924,21.15856],[82.99332,21.16189],[83.00376,21.16693],[83.00135,21.17057],[82.99652,21.16968],[82.99319,21.17111],[82.98607,21.16811],[82.98056,21.17003],[82.99,21.18183],[82.98809,21.18281],[82.98325,21.18006],[82.97787,21.18258],[82.97534,21.18215],[82.97001,21.17886],[82.96739,21.17484],[82.96556,21.17533],[82.96743,21.18307],[82.96493,21.19327],[82.96099,21.19266],[82.95916,21.18888],[82.94903,21.1839],[82.94384,21.17785],[82.94682,21.1755],[82.94286,21.17164],[82.94757,21.16453],[82.94768,21.16178],[82.93998,21.16093],[82.93996,21.16635],[82.9377,21.16985],[82.93497,21.16833],[82.93387,21.16399],[82.93225,21.16308],[82.92094,21.16347],[82.91498,21.16196],[82.91022,21.1652],[82.90211,21.16699],[82.89548,21.16098],[82.89393,21.15637],[82.88218,21.14843],[82.87818,21.15345],[82.87852,21.15858],[82.87636,21.16355],[82.87255,21.16238],[82.8717,21.15748],[82.86643,21.16282],[82.85959,21.15977],[82.8556,21.16147],[82.85246,21.15954],[82.8501,21.16161],[82.85088,21.16863],[82.8471,21.16653],[82.84276,21.16772],[82.83126,21.16467],[82.82802,21.16544],[82.826,21.16368],[82.81197,21.16107],[82.80502,21.15592],[82.80032,21.15595],[82.79622,21.15065],[82.79666,21.14865],[82.79368,21.14255],[82.78564,21.14487],[82.78077,21.14967],[82.7794,21.15358],[82.77435,21.15413],[82.76713,21.15901],[82.76782,21.16056],[82.76504,21.16173],[82.76581,21.16278],[82.76334,21.16409],[82.76298,21.16262],[82.7601,21.1652],[82.7575,21.16355],[82.75591,21.16643],[82.75001,21.16411],[82.74057,21.16347],[82.73683,21.16533],[82.72115,21.16585],[82.72119,21.15767],[82.71067,21.16085],[82.70526,21.15808],[82.69983,21.1577],[82.69573,21.16053],[82.69708,21.1642],[82.693,21.16574],[82.68554,21.16497],[82.68415,21.16106],[82.66405,21.155],[82.65549,21.15714],[82.64061,21.15487],[82.63722,21.15073],[82.63727,21.14474],[82.64395,21.13487],[82.65198,21.13325],[82.65276,21.12871],[82.64191,21.12007],[82.63974,21.11574],[82.64215,21.11122],[82.64845,21.10956],[82.64991,21.10647],[82.64582,21.1],[82.63733,21.09319],[82.63389,21.08776],[82.63311,21.08319],[82.62964,21.07882],[82.61651,21.07918],[82.61198,21.07469],[82.61186,21.06919],[82.61725,21.05986],[82.61788,21.05468],[82.6261,21.04854],[82.62979,21.04094],[82.62879,21.03804],[82.61333,21.02285],[82.61136,21.01297],[82.58878,20.99355],[82.58051,20.97973],[82.57138,20.97226],[82.55915,20.94794],[82.54303,20.93661],[82.52711,20.934],[82.51594,20.92176],[82.50443,20.91959],[82.48874,20.9094],[82.48699,20.90504],[82.49107,20.88063],[82.48598,20.87028],[82.48668,20.86165],[82.48108,20.85131],[82.47044,20.84808],[82.46539,20.84295],[82.46878,20.83518],[82.46449,20.829],[82.45437,20.82765],[82.44902,20.83101],[82.44728,20.82996],[82.44367,20.831],[82.44353,20.83437],[82.43934,20.83564],[82.42731,20.83155],[82.41995,20.83156],[82.41673,20.83866],[82.4101,20.84229],[82.40995,20.8456],[82.41287,20.85086],[82.40685,20.85928],[82.40751,20.86576],[82.40545,20.87019],[82.39557,20.87003],[82.38924,20.87409],[82.38967,20.87532],[82.38505,20.87409],[82.37592,20.86798],[82.36461,20.87067],[82.35947,20.87381],[82.36376,20.88849],[82.35119,20.88974],[82.34676,20.87704],[82.34446,20.85637],[82.33953,20.84684],[82.34157,20.83283],[82.33934,20.82577],[82.34102,20.82083],[82.34112,20.81249],[82.34317,20.80893],[82.34202,20.80472],[82.34611,20.79763],[82.34386,20.79223],[82.34364,20.77095],[82.34171,20.76776],[82.35355,20.73592],[82.34556,20.73159],[82.35401,20.71966],[82.35076,20.71728],[82.35041,20.70634],[82.355,20.69319],[82.36034,20.68356],[82.36705,20.68019],[82.37382,20.6674],[82.36875,20.65959],[82.36997,20.65556],[82.36848,20.64923],[82.37467,20.63907],[82.3765,20.63241],[82.37095,20.62599],[82.36452,20.62218],[82.36543,20.61588],[82.36292,20.61412],[82.36226,20.60991],[82.35865,20.60848],[82.3559,20.60925],[82.35256,20.60298],[82.34713,20.60254],[82.34485,20.59848],[82.3457,20.59656],[82.34374,20.59577],[82.34408,20.59289],[82.34679,20.5906],[82.35064,20.58127],[82.34836,20.5764],[82.34335,20.57152],[82.33337,20.56855],[82.33488,20.5646],[82.33223,20.56191],[82.3357,20.5551],[82.34861,20.54667],[82.35765,20.52933],[82.36806,20.52386],[82.37825,20.52203],[82.3897,20.5176],[82.388,20.51073],[82.38953,20.49801],[82.38834,20.49536],[82.39109,20.49243],[82.3906,20.48619],[82.39316,20.48643],[82.39374,20.4825],[82.39203,20.47869],[82.39608,20.47766],[82.39784,20.47295],[82.39764,20.46484],[82.39478,20.46229],[82.39606,20.45957],[82.39798,20.46192],[82.40191,20.46193],[82.40427,20.46005],[82.40855,20.46324],[82.40798,20.46733],[82.41079,20.46813],[82.4158,20.48151],[82.41763,20.48174],[82.42706,20.46906],[82.42573,20.44533],[82.43398,20.44567],[82.43786,20.43439],[82.42966,20.42787],[82.43201,20.41664],[82.41661,20.40765],[82.42117,20.39285],[82.41769,20.38772],[82.41805,20.38211],[82.4112,20.37129],[82.40915,20.36293],[82.40505,20.35804],[82.40627,20.35299],[82.40038,20.34158],[82.40151,20.33758],[82.40916,20.33253],[82.40887,20.32778],[82.41295,20.328],[82.41737,20.32425],[82.42104,20.32411],[82.43077,20.31402],[82.42998,20.30099],[82.43781,20.29441],[82.43557,20.28548],[82.43287,20.28181],[82.42503,20.27522],[82.41596,20.27205],[82.41234,20.26704],[82.41139,20.26011],[82.41601,20.25728],[82.41778,20.25232],[82.42233,20.24797],[82.41123,20.24538],[82.41063,20.24265],[82.41507,20.22681],[82.42247,20.22082],[82.42048,20.21308],[82.42062,20.20492],[82.41347,20.19935],[82.41408,20.18986],[82.41158,20.18149],[82.40754,20.18123],[82.40453,20.17787],[82.40471,20.17598],[82.39491,20.17012],[82.39001,20.1637],[82.39374,20.15704],[82.39415,20.15263],[82.3872,20.14905],[82.3858,20.14644],[82.39315,20.13761],[82.39423,20.12992],[82.39767,20.12377],[82.39818,20.10169],[82.40143,20.09607],[82.39976,20.0898],[82.40149,20.08102],[82.39583,20.06897],[82.39839,20.06269],[82.39829,20.05818],[82.40954,20.05179],[82.41682,20.05215],[82.43003,20.04961],[82.44052,20.04318],[82.44801,20.04066],[82.45753,20.03997],[82.46067,20.0419],[82.47001,20.03591],[82.47857,20.03817],[82.49373,20.02437],[82.50911,20.01816],[82.53318,20.0153],[82.53445,20.01785],[82.55011,20.01777],[82.57734,20.00672],[82.58328,20.00318],[82.59034,19.99373],[82.59573,19.99157],[82.60502,19.99014],[82.62114,19.9923],[82.6333,20.00487],[82.64151,20.00671],[82.64298,20.00641],[82.64271,20.00366],[82.65198,20.00589],[82.67012,20.00108],[82.69267,20.0],[82.69958,19.99757],[82.70727,19.99905],[82.71545,19.99593],[82.71575,19.99227],[82.71814,19.98914],[82.71752,19.96555],[82.71472,19.95767],[82.71552,19.95363],[82.72049,19.94829],[82.71307,19.93846],[82.71118,19.92545],[82.71276,19.91852],[82.70737,19.91299],[82.70909,19.9056],[82.70741,19.90204],[82.71355,19.88344],[82.71405,19.87781],[82.72458,19.87554],[82.72173,19.87292],[82.71959,19.86743],[82.71979,19.85685],[82.71816,19.85359],[82.7114,19.85063],[82.71293,19.84481],[82.7114,19.84],[82.70555,19.83302],[82.69671,19.83061],[82.67802,19.83212],[82.66592,19.83039],[82.65216,19.83217],[82.6476,19.81954],[82.64175,19.81454],[82.63663,19.81293],[82.63282,19.80119],[82.62713,19.79366],[82.60378,19.78812],[82.60215,19.78112],[82.59529,19.77847],[82.59489,19.77529],[82.59181,19.77586],[82.58348,19.7788],[82.58359,19.78164],[82.58177,19.78321],[82.58449,19.78825],[82.5827,19.795],[82.58469,19.80235],[82.57599,19.80822],[82.57858,19.81108],[82.5762,19.81474],[82.57853,19.81801],[82.57914,19.82354],[82.57777,19.82498],[82.5794,19.83032],[82.57604,19.82892],[82.57579,19.83339],[82.57974,19.84011],[82.5839,19.84358],[82.58863,19.84338],[82.58772,19.84868],[82.59062,19.84892],[82.59041,19.85245],[82.59687,19.8552],[82.59589,19.85814],[82.6002,19.86019],[82.60343,19.86699],[82.59616,19.87298],[82.58289,19.86942],[82.57302,19.87755],[82.56104,19.87433],[82.55596,19.88066],[82.54839,19.8757],[82.54214,19.88348],[82.53491,19.88689],[82.53142,19.87824],[82.5233,19.88308],[82.51912,19.89097],[82.5118,19.88813],[82.50547,19.88986],[82.50287,19.89447],[82.5049,19.89972],[82.49734,19.90413],[82.49161,19.90345],[82.48417,19.90791],[82.4729,19.90703],[82.47228,19.90158],[82.46422,19.90085],[82.45217,19.90871],[82.44599,19.91019],[82.43711,19.90494],[82.43335,19.90556],[82.43006,19.90401],[82.4262,19.90546],[82.41802,19.90407],[82.41858,19.89985],[82.41196,19.89851],[82.40524,19.89426],[82.40178,19.88994],[82.39487,19.88802],[82.39248,19.88205],[82.38295,19.87386],[82.38365,19.86988],[82.3752,19.85964],[82.36085,19.8628],[82.36041,19.85731],[82.36463,19.85469],[82.36446,19.85101],[82.36142,19.85075],[82.3537,19.84031],[82.34829,19.83613],[82.34424,19.83502],[82.3307,19.84485],[82.32634,19.86161],[82.30312,19.88939],[82.30159,19.90271],[82.27581,19.94859],[82.27487,19.96304],[82.26917,19.97526],[82.25625,19.98345],[82.25001,19.98906],[82.2462,19.99535],[82.23712,20.00333],[82.22929,19.99982],[82.21671,19.99706],[82.2101,19.98625],[82.1931,19.9871],[82.18425,19.98419],[82.18519,19.9873],[82.18347,19.98959],[82.18033,19.99114],[82.17691,19.99731],[82.17478,19.99675],[82.17369,19.99996],[82.17125,20.00078],[82.17123,20.00551],[82.16058,20.00912],[82.15347,20.00756],[82.13981,20.01873],[82.13633,20.01893],[82.12849,20.0142],[82.12679,20.0148],[82.11652,20.02116],[82.11018,20.02752],[82.10695,20.02725],[82.10547,20.0306],[82.1032,20.03107],[82.10383,20.03569],[82.10213,20.03629],[82.10228,20.04004],[82.08946,20.03906],[82.0864,20.04524],[82.08459,20.04605],[82.08543,20.05072],[82.07047,20.05695],[82.06354,20.05453],[82.06296,20.05204],[82.06065,20.05113],[82.06219,20.04922],[82.05901,20.04775],[82.05909,20.04498],[82.0564,20.04174],[82.04782,20.03672],[82.04815,20.03482],[82.04297,20.03491],[82.04121,20.03096],[82.03804,20.03012],[82.03734,20.02795],[82.04,20.0226],[82.03256,20.01572],[82.02155,20.02371],[82.02272,20.03215],[82.01768,20.049],[82.01227,20.05391],[82.00575,20.05561],[82.00325,20.05513],[82.00337,20.05334],[81.99534,20.05357],[81.98739,20.06133],[81.98416,20.06803],[81.98386,20.07324],[81.97589,20.08171],[81.96333,20.09045],[81.95815,20.09785],[81.94638,20.10513],[81.93852,20.10156],[81.93713,20.10235],[81.93384,20.09821],[81.93387,20.09604],[81.92601,20.09173],[81.92276,20.08716],[81.92138,20.07997],[81.91606,20.07198],[81.90144,20.05791],[81.89528,20.04824],[81.8873,20.04402],[81.88191,20.04434],[81.87598,20.05206],[81.86943,20.04126],[81.86882,20.03191],[81.86503,20.0267],[81.86654,20.01105],[81.86057,20.00351],[81.85536,19.97228],[81.84505,19.95782],[81.84502,19.95184],[81.8568,19.94754],[81.85181,19.92315],[81.85316,19.91848],[81.86965,19.90254],[81.89968,19.8872],[81.94106,19.87288],[81.96813,19.85989],[81.96537,19.8369],[81.98656,19.80428],[81.98595,19.80109],[81.99191,19.79959],[81.99537,19.79682],[82.00368,19.80257],[82.00989,19.80422],[82.03105,19.79781],[82.04868,19.79696],[82.05298,19.79229],[82.0564,19.79302],[82.05636,19.79485],[82.06022,19.79637],[82.06239,19.79254],[82.06555,19.79066],[82.06623,19.78315],[82.06047,19.76663],[82.06361,19.75902],[82.05598,19.75297],[82.05564,19.74998],[82.0504,19.74581],[82.05094,19.73642],[82.04924,19.72872],[82.05102,19.71909],[82.04475,19.70888],[82.04459,19.70053],[82.0491,19.68493],[82.05187,19.68047],[82.05532,19.66566],[82.05362,19.66539],[82.05194,19.66095],[82.05551,19.65446],[82.05351,19.6528],[82.05192,19.64657],[82.05473,19.6405],[82.05701,19.63951],[82.05646,19.63312],[82.05902,19.62818],[82.0561,19.62596],[82.05571,19.6231],[82.05061,19.61677],[82.05066,19.60808],[82.04627,19.60728],[82.03988,19.59764],[82.04048,19.59164],[82.04337,19.589],[82.04465,19.58178],[82.04875,19.57827],[82.04985,19.57403],[82.04811,19.56913],[82.04949,19.56841],[82.04551,19.56053],[82.05071,19.54882],[82.04749,19.53965],[82.04772,19.53345],[82.04647,19.53397],[82.04326,19.52986],[82.03988,19.53018],[82.03729,19.52825],[82.03643,19.51978],[82.03406,19.51453],[82.03185,19.51453],[82.03156,19.51104],[82.02908,19.50775],[82.03851,19.50913],[82.05134,19.50816],[82.06542,19.51057],[82.07603,19.52363],[82.10025,19.51659],[82.09797,19.49893],[82.10796,19.49428],[82.10734,19.47504],[82.10282,19.46611],[82.11342,19.46036],[82.11353,19.44826],[82.12614,19.42909],[82.1273,19.43051],[82.13525,19.43038],[82.13524,19.43178],[82.17149,19.43719],[82.17819,19.43661],[82.18619,19.42665],[82.18944,19.42753],[82.18927,19.41536],[82.1852,19.41369],[82.18244,19.40943],[82.18208,19.40293],[82.18431,19.40049],[82.18074,19.39241],[82.18225,19.38874],[82.18099,19.38618],[82.18183,19.3842],[82.178,19.3825],[82.17883,19.37905],[82.17553,19.37664],[82.17353,19.37717],[82.17192,19.37262],[82.16661,19.37277],[82.16219,19.37436],[82.16004,19.37707],[82.15648,19.3773],[82.15327,19.37702],[82.15135,19.37331],[82.14774,19.37182],[82.14896,19.36953],[82.14725,19.36549],[82.14839,19.36491],[82.14878,19.35298],[82.15244,19.35274],[82.15413,19.3498],[82.165,19.34899],[82.16904,19.34598],[82.17866,19.34337],[82.17789,19.34005],[82.18604,19.33741],[82.18789,19.33476],[82.18801,19.32892],[82.19013,19.32676],[82.19412,19.32594],[82.18122,19.32339],[82.17917,19.31897],[82.17668,19.29948],[82.17441,19.29453],[82.16594,19.28769],[82.15843,19.26517],[82.15784,19.2275],[82.15942,19.22296],[82.16877,19.21294],[82.16582,19.21145],[82.16171,19.20225],[82.16758,19.19526],[82.18046,19.19168],[82.17514,19.18182],[82.18106,19.17858],[82.18205,19.17416],[82.17671,19.17347],[82.17604,19.17208],[82.17811,19.16937],[82.18395,19.16849],[82.18614,19.16635],[82.1822,19.15929],[82.17753,19.15567],[82.17874,19.15964],[82.17492,19.16288],[82.17018,19.16116],[82.1713,19.15653],[82.17721,19.15561],[82.17768,19.15251],[82.18093,19.15082],[82.17656,19.14921],[82.17154,19.15021],[82.16983,19.14525],[82.17574,19.13866],[82.16682,19.1361],[82.1661,19.1327],[82.16921,19.12805],[82.17033,19.12041],[82.17361,19.11841],[82.17686,19.11857],[82.18247,19.13169],[82.19058,19.1289],[82.19739,19.12164],[82.20582,19.12413],[82.209,19.12052],[82.20581,19.11694],[82.20633,19.11507],[82.20298,19.10811],[82.20518,19.107],[82.20735,19.10228],[82.20499,19.10115],[82.20491,19.09714],[82.20648,19.0964],[82.20971,19.09968],[82.21294,19.09798],[82.21414,19.09985],[82.21842,19.09727],[82.21855,19.09302],[82.21495,19.08599],[82.20472,19.0756],[82.20225,19.06664],[82.22988,19.02741],[82.23276,19.01794],[82.23911,18.96229],[82.24605,18.91911],[82.23696,18.91423],[82.23091,18.91967],[82.22728,18.91904],[82.2183,18.92252],[82.20085,18.91359],[82.19251,18.90751],[82.18109,18.90694],[82.17615,18.90267],[82.17516,18.89161],[82.17666,18.88709],[82.16932,18.88189],[82.16506,18.88322],[82.16041,18.87891],[82.16104,18.87713],[82.16737,18.87362],[82.16509,18.86487],[82.1602,18.8614],[82.16303,18.85415],[82.16747,18.85235],[82.16574,18.84387],[82.16896,18.83602],[82.16029,18.81987],[82.16615,18.81407],[82.16137,18.81252],[82.1602,18.80807],[82.15652,18.80433],[82.16453,18.80192],[82.16544,18.79862],[82.16017,18.79523],[82.1608,18.78992],[82.15736,18.78548],[82.15217,18.7853],[82.14738,18.78097],[82.14057,18.77846],[82.13842,18.77837],[82.13567,18.78148],[82.13349,18.78045],[82.13133,18.77011],[82.13362,18.76811],[82.13342,18.76536],[82.12082,18.76975],[82.11536,18.76901],[82.11101,18.76588],[82.10576,18.76731],[82.09782,18.76384],[82.09158,18.76573],[82.08874,18.76019],[82.09258,18.75268],[82.09352,18.74681],[82.08769,18.73113],[82.08836,18.72977],[82.08606,18.72795],[82.08688,18.72142],[82.08497,18.71859],[82.07653,18.72211],[82.07456,18.72462],[82.06742,18.7265],[82.06505,18.72007],[82.06277,18.71902],[82.05877,18.71934],[82.05609,18.7229],[82.05365,18.72361],[82.04812,18.7214],[82.04021,18.72391],[82.03092,18.72379],[82.02815,18.72121],[82.01674,18.7195],[82.00879,18.71255],[82.00583,18.71465],[81.99992,18.71108],[81.99859,18.70691],[81.99473,18.70468],[81.9889,18.70528],[81.97098,18.69864],[81.96294,18.68898],[81.96075,18.68863],[81.96915,18.67339],[81.9616,18.67028],[81.95508,18.66422],[81.95279,18.65954],[81.95316,18.65404],[81.94894,18.64371],[81.94303,18.64317],[81.93637,18.6448],[81.92173,18.64291],[81.91526,18.6513],[81.90089,18.66137],[81.89835,18.65854],[81.89377,18.65746],[81.89501,18.65445],[81.8982,18.65441],[81.89405,18.64228],[81.89887,18.63523],[81.89521,18.63282],[81.89459,18.62954],[81.90848,18.62856],[81.93014,18.61858],[81.93515,18.61265],[81.93506,18.60736],[81.93693,18.60557],[81.94429,18.60075],[81.95098,18.60095],[81.96085,18.59662],[81.9634,18.5941],[81.96364,18.59044],[81.95984,18.58948],[81.95607,18.58393],[81.95291,18.58282],[81.95331,18.57671],[81.95051,18.57485],[81.95057,18.57002],[81.94508,18.57014],[81.9381,18.5666],[81.92971,18.56613],[81.92678,18.56673],[81.92084,18.57269],[81.91777,18.5708],[81.91557,18.57281],[81.91069,18.57063],[81.91036,18.56577],[81.90592,18.56455],[81.9057,18.56307],[81.90862,18.553],[81.90141,18.54861],[81.90587,18.54516],[81.90901,18.53807],[81.8979,18.53509],[81.88927,18.53816],[81.87968,18.52524],[81.86825,18.52492],[81.85699,18.50743],[81.85611,18.50092],[81.85783,18.49477],[81.85621,18.4914],[81.79502,18.44072],[81.76887,18.41709],[81.75006,18.35275],[81.65914,18.34656],[81.65087,18.34062],[81.64966,18.3369],[81.65192,18.33254],[81.66217,18.32498],[81.66223,18.32123],[81.65132,18.32153],[81.64452,18.31818],[81.63965,18.31794],[81.62811,18.31384],[81.61653,18.30735],[81.60054,18.30969],[81.5976,18.30891],[81.5929,18.30071],[81.58551,18.29643],[81.57346,18.28264],[81.56433,18.2752],[81.55084,18.2693],[81.54128,18.27006],[81.53527,18.26838],[81.52524,18.25771],[81.52464,18.25586],[81.52766,18.25094],[81.53045,18.24028],[81.52593,18.23355],[81.52426,18.22751],[81.51992,18.22199],[81.51983,18.21766],[81.51552,18.21324],[81.51326,18.20054],[81.50941,18.19457],[81.507,18.1862],[81.50992,18.17949],[81.51776,18.17546],[81.52373,18.16589],[81.526,18.16042],[81.52582,18.1534],[81.52413,18.15081],[81.51832,18.14816],[81.51382,18.14054],[81.51289,18.13575],[81.51509,18.12276],[81.51286,18.09869],[81.49963,18.07985],[81.4966,18.07095],[81.49069,18.06284],[81.48264,18.05567],[81.48041,18.05074],[81.48015,18.03369],[81.48312,18.02705],[81.47991,18.00439],[81.48028,17.99779],[81.47762,17.98841],[81.48295,17.97682],[81.47609,17.96934],[81.47211,17.9605],[81.45984,17.95295],[81.45291,17.93637],[81.44911,17.93193],[81.44992,17.92403],[81.45337,17.91463],[81.45282,17.90756],[81.4475,17.89849],[81.44811,17.88974],[81.44463,17.88575],[81.43534,17.88082],[81.4126,17.89462],[81.40519,17.89619],[81.4002,17.89357],[81.39548,17.88321],[81.39427,17.86928],[81.40382,17.85301],[81.40326,17.84943],[81.39586,17.83734],[81.38907,17.82992],[81.38857,17.82315],[81.39181,17.81542],[81.39655,17.82023],[81.40165,17.82095],[81.41016,17.81859],[81.41397,17.81359],[81.4156,17.81342],[81.42582,17.82191],[81.43048,17.83006],[81.43412,17.83193],[81.43672,17.83162],[81.44088,17.82533],[81.44419,17.82497],[81.46011,17.82957],[81.46905,17.83622],[81.47426,17.83798],[81.47732,17.83588],[81.48018,17.83043],[81.48152,17.82358],[81.48535,17.82059],[81.48627,17.81434],[81.49005,17.81269],[81.49534,17.81255],[81.50478,17.81629],[81.51841,17.81626],[81.53018,17.82291],[81.53781,17.82159],[81.54684,17.82472],[81.56369,17.82571],[81.57039,17.83531],[81.57432,17.83717],[81.59419,17.83404],[81.60689,17.82583],[81.61723,17.8223],[81.62235,17.83345],[81.63015,17.83202],[81.64171,17.84132],[81.65202,17.8561],[81.65431,17.86908],[81.66219,17.8816],[81.66973,17.88655],[81.67452,17.88818],[81.6861,17.8853],[81.69475,17.89872],[81.69853,17.90135],[81.70123,17.89948],[81.70222,17.89627],[81.70113,17.88795],[81.70411,17.88271],[81.70436,17.87768],[81.70917,17.872],[81.72562,17.87886],[81.76467,17.90334],[81.76881,17.90688],[81.77138,17.91246],[81.77841,17.91284],[81.79013,17.92081],[81.79349,17.92548],[81.7947,17.93294],[81.79707,17.93728],[81.80989,17.95098],[81.81911,17.95169],[81.83099,17.95793],[81.84323,17.95696],[81.86649,17.96329],[81.88175,17.96883],[81.89337,17.97624],[81.90518,17.97732],[81.90903,17.98422],[81.91991,17.99121],[81.93657,17.99028],[81.94602,17.99575],[81.96297,17.99925],[81.96894,18.00598],[81.97606,18.01047],[81.98251,18.01813],[81.99127,18.01951],[81.99427,18.02731],[82.00177,18.03002],[82.00935,18.03007],[82.01166,18.03524],[82.00673,18.0451],[82.00623,18.05297],[82.00767,18.05669],[82.0062,18.05772],[82.00768,18.05669],[82.02028,18.0635],[82.02708,18.06403],[82.03232,18.06932],[82.03758,18.06698],[82.04044,18.05731],[82.05042,18.05814],[82.06156,18.05545],[82.06695,18.05739],[82.07082,18.06909],[82.07664,18.07522],[82.08709,18.06893],[82.09609,18.06743],[82.0964,18.0634],[82.10203,18.06024],[82.10787,18.06326],[82.11365,18.06123],[82.12063,18.06423],[82.12498,18.05967],[82.13349,18.05989],[82.13718,18.04394],[82.14483,18.04885],[82.14678,18.05231],[82.15084,18.04994],[82.15536,18.05374],[82.15084,18.04994],[82.15321,18.04787],[82.15827,18.05034],[82.16884,18.05195],[82.18432,18.02879],[82.17862,18.02039],[82.18354,18.0191],[82.1878,18.01473],[82.19737,18.01774],[82.20531,18.01837],[82.2046,18.01501],[82.2082,18.01044],[82.22346,18.0013],[82.23724,18.00255],[82.24405,17.99838],[82.24796,17.99778],[82.25886,17.99771],[82.26801,18.0],[82.27355,18.02134],[82.26901,18.03402],[82.26161,18.04185],[82.26894,18.04519],[82.26961,18.05194],[82.27261,18.05722],[82.27698,18.0582],[82.28349,18.0645],[82.28787,18.0629],[82.29039,18.06706],[82.28309,18.07334],[82.29039,18.06706],[82.29138,18.06891],[82.29615,18.06705],[82.3007,18.06925],[82.3044,18.06812],[82.3038,18.06528],[82.30012,18.06321],[82.29865,18.05557],[82.30617,18.05571],[82.31033,18.05393],[82.30726,18.05005],[82.30818,18.04491],[82.31658,18.04744],[82.32036,18.04498],[82.32223,18.04862],[82.31897,18.05707],[82.32225,18.05991],[82.33002,18.05809],[82.33214,18.05511],[82.33199,18.05246],[82.33414,18.05133],[82.34074,18.05479],[82.34388,18.05799],[82.34708,18.06995],[82.35178,18.07659],[82.34732,18.07998],[82.34958,18.08563],[82.347,18.09825],[82.3385,18.09911],[82.33579,18.10586],[82.33567,18.11375],[82.33377,18.11925],[82.33616,18.12415],[82.3342,18.12686],[82.34209,18.13662],[82.33868,18.14417],[82.33976,18.14983],[82.35493,18.14247],[82.35963,18.13629],[82.36325,18.13481],[82.36753,18.13716],[82.36875,18.14317],[82.37232,18.14816],[82.35912,18.1627],[82.35337,18.17169],[82.34617,18.17292],[82.33737,18.17218],[82.31545,18.18403],[82.31248,18.19135],[82.31354,18.19715],[82.31084,18.20409],[82.32489,18.21041],[82.32843,18.21608],[82.33706,18.2243],[82.33144,18.22513],[82.32441,18.23121],[82.32674,18.23638],[82.33653,18.24077],[82.33586,18.25],[82.33354,18.25107],[82.33336,18.25291],[82.33612,18.26117],[82.34005,18.26234],[82.34044,18.27223],[82.34467,18.28055],[82.35894,18.28146],[82.3659,18.27761],[82.3765,18.28068],[82.37831,18.28434],[82.38089,18.28544],[82.39234,18.29795],[82.39157,18.3098],[82.39506,18.31564],[82.39237,18.32648],[82.38466,18.32963],[82.37807,18.32706],[82.37509,18.32869],[82.36753,18.32371],[82.364,18.31846],[82.35791,18.31615],[82.3522,18.31735],[82.34948,18.31637],[82.33993,18.32296],[82.33318,18.33896],[82.33748,18.3281],[82.3405,18.32821],[82.34409,18.33079],[82.34694,18.32883],[82.36311,18.34422],[82.36449,18.35277],[82.36818,18.35386],[82.36988,18.35851],[82.37682,18.35984],[82.38555,18.36751],[82.38402,18.3845],[82.38607,18.38627],[82.38148,18.38964],[82.37962,18.4038],[82.37522,18.40634],[82.37093,18.41425],[82.36421,18.42154],[82.37574,18.43003],[82.382,18.43258],[82.38555,18.44083],[82.37999,18.43737],[82.38554,18.44083],[82.38768,18.44596],[82.39603,18.44917],[82.3968,18.45421],[82.40352,18.46422],[82.41497,18.47443],[82.42254,18.47805],[82.43743,18.49381],[82.43774,18.49576],[82.43414,18.49696],[82.43404,18.49857],[82.43715,18.50094],[82.43861,18.50682],[82.4431,18.50877],[82.44475,18.51409],[82.46098,18.5255],[82.46412,18.53287],[82.46838,18.53464],[82.47347,18.54258],[82.48275,18.54872],[82.48898,18.54934],[82.4919,18.54763],[82.4935,18.54364],[82.49234,18.54179],[82.484,18.54332],[82.48134,18.54061],[82.48395,18.53545],[82.48759,18.53261],[82.48627,18.52805],[82.49405,18.52455],[82.50433,18.51387],[82.51228,18.51805],[82.52028,18.51759],[82.52597,18.51632],[82.53216,18.51099],[82.52698,18.50588],[82.52966,18.5013],[82.52649,18.49629],[82.52789,18.49386],[82.53199,18.49243],[82.53327,18.48828],[82.5283,18.48305],[82.52785,18.48065],[82.53189,18.48049],[82.53419,18.47773],[82.53084,18.47303],[82.52477,18.4717],[82.51945,18.46722],[82.51942,18.4656],[82.52389,18.46349],[82.52834,18.46421],[82.52739,18.45966],[82.53325,18.45866],[82.53726,18.44643],[82.53956,18.4436],[82.54447,18.44938],[82.54134,18.45416],[82.54237,18.45763],[82.54876,18.45305],[82.55258,18.45504],[82.55482,18.45448],[82.55659,18.44982],[82.5614,18.44849],[82.56095,18.44518],[82.55652,18.44297],[82.55815,18.43966],[82.55058,18.4333],[82.55201,18.42857],[82.54574,18.42752],[82.54562,18.4224],[82.54141,18.42191],[82.5433,18.41402],[82.54719,18.41429],[82.54709,18.41261],[82.53553,18.40617],[82.54088,18.39943],[82.55218,18.39791],[82.55533,18.39363],[82.56243,18.39996],[82.571,18.39467],[82.57583,18.39623],[82.58387,18.38673],[82.58863,18.39163],[82.5948,18.38923],[82.59644,18.38297],[82.59952,18.37979],[82.60152,18.37937],[82.60529,18.38203],[82.60612,18.37567],[82.60322,18.37265],[82.60573,18.37005],[82.60599,18.36606],[82.62123,18.35971],[82.61452,18.35091],[82.60204,18.35228],[82.60288,18.34435],[82.60854,18.34004],[82.6112,18.33371],[82.60894,18.32713],[82.60125,18.32534],[82.59488,18.32888],[82.58847,18.31788],[82.58389,18.31976],[82.58131,18.31517],[82.58517,18.30846],[82.59606,18.31028],[82.59647,18.30639],[82.59866,18.30419],[82.59467,18.29822],[82.5952,18.29184],[82.59102,18.28978],[82.59419,18.28697],[82.59406,18.2847],[82.59215,18.28035],[82.58805,18.2803],[82.58779,18.27606],[82.59678,18.27437],[82.59691,18.26479],[82.60422,18.26469],[82.60721,18.2614],[82.61385,18.25842],[82.62353,18.24632],[82.62755,18.24458],[82.63187,18.23926],[82.63768,18.2367],[82.64863,18.245],[82.65249,18.25],[82.65095,18.251],[82.64712,18.26223],[82.64228,18.26377],[82.64279,18.27155],[82.64854,18.27287],[82.65224,18.28114],[82.64382,18.28801],[82.64072,18.29623],[82.64265,18.30203],[82.65119,18.30186],[82.65494,18.29699],[82.65742,18.29607],[82.66225,18.2983],[82.66677,18.29803],[82.67632,18.30656],[82.68018,18.30335],[82.68442,18.30359],[82.69195,18.30764],[82.69452,18.31228],[82.70166,18.31064],[82.70938,18.31318],[82.70856,18.31584],[82.71502,18.32252],[82.72491,18.32453],[82.73427,18.32024],[82.73605,18.32311],[82.74098,18.32261],[82.73831,18.32695],[82.74287,18.32999],[82.74785,18.32897],[82.75064,18.33092],[82.75518,18.33019],[82.7563,18.33331],[82.75919,18.33403],[82.7581,18.33763],[82.75969,18.33961],[82.7633,18.33891],[82.76482,18.33616],[82.76845,18.33806],[82.77112,18.33758],[82.77409,18.34032],[82.77639,18.34924],[82.79056,18.36319],[82.78876,18.3718],[82.78478,18.38041],[82.78265,18.38189],[82.79386,18.38602],[82.79146,18.39614],[82.79383,18.40135],[82.79954,18.40675],[82.79549,18.40909],[82.78688,18.41071],[82.78743,18.41917],[82.78289,18.42261],[82.78216,18.43079],[82.79538,18.43971],[82.80314,18.44925],[82.81564,18.4509],[82.82322,18.44726],[82.8238,18.4435],[82.83122,18.44229],[82.83595,18.43929],[82.83638,18.43709],[82.84584,18.43375],[82.84863,18.42372],[82.85242,18.4192],[82.85641,18.42544],[82.8713,18.41846],[82.8764,18.42163],[82.88156,18.42068],[82.895,18.4241],[82.89778,18.4035],[82.89072,18.3905],[82.89341,18.38701],[82.89419,18.38157],[82.90192,18.37407],[82.91089,18.37295],[82.91308,18.36848],[82.91786,18.37528],[82.9222,18.37542],[82.92603,18.36814],[82.93973,18.36082],[82.95373,18.36157],[82.96011,18.36641],[82.96699,18.35893],[82.97047,18.36001],[82.98318,18.36644],[82.98219,18.36812],[82.98811,18.37766],[82.98728,18.37884],[82.99027,18.3806],[82.99208,18.37856],[82.99683,18.38552],[83.00528,18.38276],[83.01179,18.38864],[83.01598,18.38705],[83.02192,18.3917],[83.02579,18.38693],[83.02951,18.38609],[83.03222,18.3835],[83.03923,18.38345],[83.04308,18.37937],[83.05449,18.37999],[83.07705,18.40335],[83.07684,18.4054],[83.06425,18.40941],[83.05744,18.41937],[83.0655,18.42299],[83.06731,18.43009],[83.0634,18.43207],[83.05998,18.43696],[83.05856,18.43668],[83.0508,18.43413],[83.04598,18.42667],[83.04253,18.42423],[83.04313,18.42596],[83.03776,18.43454],[83.04094,18.44079],[83.03668,18.4427],[83.03289,18.44796],[83.02461,18.44846],[83.02095,18.45624],[83.03073,18.46627],[83.03765,18.46862],[83.05511,18.48561],[83.05521,18.49566],[83.05797,18.49684],[83.06048,18.50205],[83.06401,18.50228],[83.07507,18.51457],[83.07701,18.52615],[83.08364,18.53106],[83.08927,18.53891],[83.09353,18.53984],[83.09504,18.54664],[83.08951,18.55299],[83.08381,18.55166],[83.08094,18.55402],[83.07885,18.55039],[83.07124,18.54976],[83.06193,18.54205],[83.05496,18.54398],[83.04535,18.54418],[83.03843,18.55587],[83.03315,18.56979],[83.02976,18.57351],[83.03127,18.57785],[83.03766,18.58102],[83.04008,18.58648],[83.0531,18.58813],[83.05279,18.60068],[83.04672,18.59875],[83.04444,18.59947],[83.02759,18.59257],[83.02379,18.58965],[83.0188,18.59347],[83.01356,18.59436],[83.01269,18.59936],[83.01501,18.60209],[83.01521,18.60544],[83.00047,18.60798],[82.99957,18.61953],[83.00575,18.62169],[83.0089,18.62685],[83.01963,18.63512],[83.01313,18.64605],[83.01702,18.65022],[83.02264,18.65122],[83.025,18.65441],[83.04423,18.65844],[83.05802,18.66531],[83.06278,18.68363],[83.07501,18.70126],[83.07137,18.70164],[83.07279,18.70554],[83.09261,18.72353],[83.09477,18.73138],[83.10169,18.73275],[83.10761,18.74706],[83.11242,18.75281],[83.12221,18.7575],[83.12363,18.76052],[83.12114,18.76584],[83.11515,18.76809],[83.13903,18.78536],[83.15181,18.77607],[83.15228,18.77269],[83.15648,18.76823],[83.16415,18.7669],[83.16505,18.76894],[83.17791,18.77086],[83.19319,18.75312],[83.20655,18.75144],[83.20801,18.74912],[83.20737,18.74576],[83.21269,18.73758],[83.21128,18.73254],[83.21245,18.73049],[83.21464,18.73337],[83.21741,18.74445],[83.22537,18.75091],[83.22772,18.75524],[83.22813,18.76102],[83.22235,18.77277],[83.22461,18.77509],[83.2346,18.77406],[83.24325,18.76828],[83.25339,18.76756],[83.26255,18.76976],[83.27135,18.76464],[83.28137,18.7746],[83.27527,18.7829],[83.28434,18.79788],[83.29787,18.8017],[83.30931,18.8095],[83.3194,18.80477],[83.33062,18.80635],[83.32814,18.81213],[83.32825,18.81808],[83.33796,18.82436],[83.34777,18.82711],[83.34934,18.83013],[83.35868,18.83493],[83.36394,18.84228],[83.36815,18.84406],[83.37044,18.84291],[83.37174,18.83902],[83.37519,18.83635],[83.37833,18.83066],[83.40413,18.84299],[83.40588,18.84252],[83.40437,18.84756],[83.40487,18.86191],[83.41475,18.87496],[83.41024,18.87432],[83.40703,18.87715],[83.39881,18.87796],[83.39183,18.88229],[83.39151,18.88695],[83.38353,18.89036],[83.37833,18.89695],[83.38465,18.90386],[83.3932,18.90763],[83.38503,18.91332],[83.38181,18.91389],[83.37512,18.90897],[83.36901,18.90809],[83.36239,18.91476],[83.35983,18.91471],[83.3617,18.91599],[83.35914,18.91688],[83.35749,18.92392],[83.35343,18.9306],[83.35248,18.94346],[83.36098,18.94083],[83.37015,18.94172],[83.36919,18.92986],[83.3706,18.92604],[83.37735,18.92561],[83.38202,18.92729],[83.38738,18.93298],[83.38303,18.93694],[83.37128,18.94265],[83.36838,18.9533],[83.36584,18.95694],[83.3684,18.96059],[83.36713,18.96301],[83.36154,18.96315],[83.35474,18.9673],[83.35092,18.96679],[83.34828,18.96038],[83.35086,18.9474],[83.35017,18.94327],[83.34385,18.94112],[83.34844,18.92629],[83.33522,18.92493],[83.33342,18.92621],[83.33392,18.92878],[83.3265,18.93198],[83.32486,18.93748],[83.32711,18.94462],[83.33784,18.94629],[83.33902,18.95278],[83.33374,18.95494],[83.33252,18.95767],[83.33482,18.96852],[83.33148,18.96908],[83.3283,18.96703],[83.31874,18.97341],[83.3176,18.98029],[83.31523,18.9832],[83.3159,18.98717],[83.31033,18.99568],[83.31065,18.99867],[83.31665,19.00126],[83.32237,18.99951],[83.32721,19.0024],[83.33126,18.99899],[83.33878,18.99701],[83.33636,19.00294],[83.33695,19.00597],[83.34003,19.00885],[83.34292,19.01814],[83.34802,19.01692],[83.35805,19.01938],[83.36748,19.01648],[83.36605,19.01287],[83.36695,19.01172],[83.36529,19.01018],[83.36703,19.00935],[83.36662,19.0061],[83.37261,19.00226],[83.38459,19.00126],[83.39469,19.00596],[83.39598,19.00954],[83.40047,19.0094],[83.40201,19.00628],[83.40422,19.00667],[83.4043,19.0046],[83.40955,19.00433],[83.41128,19.00026],[83.4141,19.00368],[83.41584,19.0005],[83.41706,19.00206],[83.41961,19.00026],[83.41999,18.99793],[83.41532,18.98918],[83.41964,18.98893],[83.42636,18.98501],[83.4292,18.98042],[83.4351,18.97586],[83.43888,18.97639],[83.44033,18.97162],[83.44589,18.96591],[83.44354,18.96095],[83.44586,18.95776],[83.46183,18.95478],[83.46474,18.96271],[83.46783,18.96455],[83.46981,18.96932],[83.46856,18.98037],[83.46418,18.9801],[83.46784,18.99108],[83.466,18.99355],[83.45527,18.99126],[83.45531,18.99683],[83.45066,19.00453],[83.44994,19.00966],[83.45157,19.00978],[83.45225,19.01259],[83.46152,19.01234],[83.47159,19.00723],[83.47968,19.00847],[83.48142,19.00979],[83.48251,19.01509],[83.47958,19.01771],[83.4794,19.02212],[83.48335,19.03355],[83.47072,19.04291],[83.47093,19.04864],[83.46783,19.05514],[83.46952,19.05765],[83.4692,19.0611],[83.46782,19.06316],[83.46229,19.06377],[83.4652,19.07101],[83.46495,19.07452],[83.4631,19.07597],[83.46627,19.0799],[83.47036,19.08014],[83.47299,19.07705],[83.47837,19.07927],[83.47646,19.08567],[83.47049,19.08712],[83.46971,19.08572],[83.46726,19.08769],[83.46798,19.09312],[83.47366,19.09527],[83.4834,19.09226],[83.48633,19.08755],[83.48183,19.08513],[83.48265,19.08134],[83.48084,19.0785],[83.48884,19.07335],[83.5006,19.06063],[83.50178,19.06589],[83.50555,19.06605],[83.51171,19.07032],[83.51099,19.06627],[83.51304,19.06068],[83.5168,19.05708],[83.51313,19.04838],[83.5193,19.03907],[83.51482,19.02846],[83.50847,19.03554],[83.49647,19.03547],[83.49747,19.03454],[83.49546,19.03185],[83.50094,19.02066],[83.50378,19.01873],[83.51624,19.01661],[83.52249,19.01207],[83.52474,19.01452],[83.52591,19.01284],[83.53457,19.01309],[83.53671,19.0095],[83.54149,19.02961],[83.53984,19.03347],[83.54173,19.04148],[83.54688,19.04372],[83.55168,19.05455],[83.55757,19.0562],[83.55541,19.05806],[83.55561,19.06336],[83.54853,19.07787],[83.54905,19.08052],[83.55444,19.08653],[83.56017,19.08707],[83.567,19.07174],[83.56338,19.07052],[83.56035,19.0645],[83.56342,19.05785],[83.57497,19.0614],[83.57977,19.06054],[83.58446,19.05757],[83.58405,19.06508],[83.58702,19.06936],[83.58471,19.08371],[83.58559,19.08656],[83.59295,19.09267],[83.60119,19.09491],[83.60307,19.09259],[83.61061,19.09606],[83.60341,19.11213],[83.59781,19.11881],[83.59913,19.13016],[83.60165,19.13553],[83.6047,19.13599],[83.60797,19.13969],[83.61596,19.13705],[83.61876,19.14132],[83.6208,19.14168],[83.62229,19.14782],[83.62747,19.15065],[83.62779,19.15665],[83.62603,19.16267],[83.63392,19.15946],[83.63768,19.15316],[83.63441,19.15183],[83.63494,19.14966],[83.6317,19.14084],[83.63701,19.13148],[83.64212,19.13192],[83.64675,19.12981],[83.65271,19.13156],[83.65496,19.12962],[83.65436,19.12213],[83.64964,19.12326],[83.64704,19.1184],[83.65045,19.11739],[83.65105,19.10935],[83.65557,19.1088],[83.65758,19.10255],[83.66282,19.09895],[83.66389,19.09219],[83.66038,19.08442],[83.66102,19.08114],[83.66436,19.07571],[83.67463,19.07208],[83.67659,19.0652],[83.68525,19.05853],[83.6912,19.0473],[83.69302,19.03861],[83.69853,19.03188],[83.70014,19.02545],[83.70462,19.02341],[83.70969,19.02464],[83.71616,19.02368],[83.72447,19.02054],[83.73002,19.02196],[83.72389,19.01025],[83.72121,19.00931],[83.71807,19.01043],[83.71031,19.00718],[83.70883,19.00559],[83.70948,19.00264],[83.71362,18.99739],[83.7142,18.99299],[83.71817,18.99342],[83.73301,18.98771],[83.73246,18.97991],[83.7344,18.96918],[83.73879,18.96036],[83.74054,18.95007],[83.74681,18.94358],[83.74766,18.93708],[83.75386,18.92513],[83.76317,18.92728],[83.76939,18.9143],[83.77184,18.91465],[83.77824,18.91136],[83.78789,18.91587],[83.78505,18.92379],[83.78446,18.9336],[83.77885,18.93666],[83.77622,18.94525],[83.77258,18.94432],[83.76965,18.95476],[83.7639,18.95293],[83.76163,18.95046],[83.75896,18.95061],[83.75407,18.96717],[83.75531,18.97132],[83.74807,18.97404],[83.74485,18.98798],[83.74753,18.99591],[83.75155,18.99868],[83.755,18.9986],[83.76065,19.0026],[83.76281,18.99849],[83.76486,19.0054],[83.7717,19.00808],[83.78198,19.00839],[83.78128,19.01394],[83.77806,19.01547],[83.77791,19.01753],[83.78052,19.01862],[83.79469,19.01798],[83.79348,19.00824],[83.79512,19.00368],[83.79686,19.00092],[83.80893,18.99228],[83.81052,18.98522],[83.82176,18.96023],[83.81901,18.9452],[83.81973,18.93926],[83.82894,18.9306],[83.82658,18.91628],[83.83071,18.91475],[83.84032,18.91851],[83.8434,18.91716],[83.84579,18.91358],[83.8489,18.8999],[83.84368,18.87627],[83.84601,18.8691],[83.85137,18.85956],[83.8687,18.85076],[83.88773,18.83096],[83.89116,18.82509],[83.89316,18.81447],[83.89613,18.81564],[83.89963,18.8244],[83.90476,18.8274],[83.91199,18.82596],[83.9158,18.82796],[83.91767,18.8243],[83.92263,18.82359],[83.92328,18.82183],[83.92634,18.82243],[83.93165,18.81588],[83.93463,18.81628],[83.93465,18.81815],[83.93754,18.81816],[83.9381,18.81585],[83.94232,18.81546],[83.94174,18.80833],[83.95016,18.80518],[83.95539,18.80649],[83.96096,18.81408],[83.96281,18.81289],[83.96509,18.81462],[83.97785,18.81417],[83.98686,18.81005],[83.98845,18.8109],[83.98721,18.8115],[83.99385,18.81361],[83.99567,18.81127],[84.00107,18.81139],[84.00522,18.80874],[84.0099,18.81169],[84.01573,18.80875],[84.01744,18.8128],[84.01547,18.81706],[84.01917,18.81645],[84.01912,18.81792],[84.02252,18.8159],[84.02522,18.81705],[84.02483,18.81548],[84.03296,18.8116],[84.03778,18.81305],[84.03848,18.81643],[84.04561,18.81288],[84.04426,18.80606],[84.04599,18.80506],[84.04669,18.80161],[84.0511,18.79908],[84.05988,18.79918],[84.05728,18.79276],[84.06137,18.79234],[84.06163,18.79073],[84.05727,18.78937],[84.06056,18.78489],[84.05991,18.78242],[84.06201,18.78138],[84.06799,18.78231],[84.06922,18.77815],[84.07373,18.77582],[84.07642,18.76445],[84.08034,18.76535],[84.08117,18.76419],[84.08523,18.76649],[84.08475,18.76427],[84.08959,18.76399],[84.08946,18.75678],[84.09688,18.76054],[84.10327,18.76027],[84.11349,18.76687],[84.11771,18.76554],[84.12238,18.76794],[84.12468,18.76394],[84.1293,18.76533],[84.13256,18.7606],[84.1374,18.76124],[84.14199,18.7643],[84.13891,18.7688],[84.14039,18.77727],[84.14622,18.77716],[84.15176,18.78354],[84.15651,18.78458],[84.15843,18.78289],[84.15926,18.78785],[84.1635,18.7893],[84.16559,18.78776],[84.16972,18.78822],[84.17229,18.7829],[84.17577,18.78008],[84.18271,18.78196],[84.18994,18.7777],[84.19468,18.78332],[84.19342,18.78759],[84.19534,18.79168],[84.1981,18.79081],[84.20011,18.79221],[84.20045,18.79049],[84.20758,18.78915],[84.21808,18.79011],[84.21891,18.79119],[84.21377,18.794],[84.2144,18.79542],[84.21919,18.79492],[84.22185,18.79783],[84.2239,18.79709],[84.22631,18.79877],[84.23225,18.79715],[84.23383,18.79477],[84.23674,18.79855],[84.2408,18.79714],[84.24128,18.79138],[84.24358,18.79152],[84.24314,18.78862],[84.24903,18.78579],[84.25592,18.78799],[84.26097,18.78322],[84.26812,18.78456],[84.28649,18.7923],[84.28877,18.79842],[84.28866,18.80466],[84.30499,18.79826],[84.30592,18.79423],[84.30898,18.79414],[84.31259,18.79037],[84.32126,18.78649],[84.32493,18.79044],[84.32454,18.79484],[84.32659,18.79879],[84.33645,18.79844],[84.33613,18.80107],[84.3381,18.80045],[84.33901,18.80226],[84.34455,18.8018],[84.34183,18.80898],[84.33692,18.81156],[84.33424,18.81519],[84.33105,18.81501],[84.33106,18.81785],[84.33437,18.81771],[84.3341,18.81996],[84.33932,18.81969],[84.34266,18.82222],[84.34941,18.82006],[84.35125,18.8227],[84.35201,18.82711],[84.35066,18.82775],[84.35211,18.83149],[84.3596,18.83121],[84.36385,18.83712],[84.36126,18.8389],[84.36123,18.84216],[84.34499,18.84905],[84.34163,18.85426],[84.33306,18.86051],[84.33094,18.86769],[84.3256,18.87609],[84.33053,18.88322],[84.33681,18.89021],[84.35605,18.86935],[84.35779,18.8693],[84.36206,18.86088],[84.3645,18.86133],[84.3665,18.86402],[84.3699,18.86084],[84.37423,18.86139],[84.37733,18.86451],[84.37899,18.8717],[84.3842,18.87414],[84.37882,18.87815],[84.37259,18.87807],[84.36255,18.88715],[84.36027,18.89455],[84.36495,18.88969],[84.37068,18.88662],[84.37427,18.88652],[84.38256,18.88142],[84.38335,18.88286],[84.38148,18.88643],[84.38811,18.88424],[84.39213,18.8763],[84.39537,18.87977],[84.39518,18.88202],[84.39761,18.88204],[84.39833,18.88368],[84.39752,18.89028],[84.39596,18.89307],[84.39033,18.89582],[84.38515,18.89592],[84.38505,18.89783],[84.37814,18.90329],[84.37893,18.90422],[84.38556,18.90036],[84.39353,18.90433],[84.39412,18.90081],[84.40009,18.89531],[84.40971,18.89512],[84.41288,18.89717],[84.41802,18.8972],[84.42134,18.90116],[84.42219,18.90541],[84.42047,18.91089],[84.41676,18.9146],[84.41857,18.91732],[84.42053,18.91767],[84.42443,18.91035],[84.42839,18.90902],[84.43111,18.91666],[84.43802,18.92046],[84.43947,18.92708],[84.43857,18.93157],[84.42768,18.93209],[84.43103,18.93585],[84.42422,18.94725],[84.42601,18.95275],[84.43243,18.95909],[84.432,18.96229],[84.42941,18.96486],[84.43107,18.96919],[84.43734,18.97037],[84.44168,18.96865],[84.44605,18.97193],[84.44505,18.97324],[84.44773,18.97557],[84.45243,18.97598],[84.44468,18.98326],[84.4433,18.9905],[84.43222,18.99505],[84.4325,19.00655],[84.42824,19.00767],[84.42406,19.0132],[84.42201,19.01275],[84.42109,19.02199],[84.42573,19.01921],[84.42458,19.01395],[84.4316,19.01348],[84.43712,19.00713],[84.44056,19.00741],[84.44161,19.00353],[84.44483,19.00445],[84.44961,19.003],[84.45438,19.0],[84.45582,18.99733],[84.46036,18.99678],[84.46059,18.99306],[84.46474,18.99161],[84.46489,18.99373],[84.46678,18.99388],[84.47027,18.99142],[84.47434,18.99176],[84.47603,18.98804],[84.47889,18.98846],[84.48293,19.00487],[84.48264,19.01657],[84.48502,19.01924],[84.48877,19.01951],[84.49437,19.029],[84.50047,19.03317],[84.50532,19.03386],[84.51173,19.04024],[84.51638,19.04843],[84.52412,19.0487],[84.52613,19.04604],[84.54327,19.05505],[84.5566,19.05658],[84.57286,19.07372],[84.57388,19.07327],[84.57158,19.06958],[84.5747,19.06757],[84.57663,19.06761],[84.58295,19.07318],[84.58338,19.06815],[84.58046,19.06002],[84.58182,19.05891],[84.58152,19.05302],[84.58305,19.04924],[84.57868,19.04566],[84.57729,19.04047],[84.58329,19.04248],[84.58126,19.03752],[84.58167,19.03009],[84.59415,19.02226],[84.59568,19.02555],[84.60127,19.02528],[84.60198,19.03244],[84.60585,19.0417],[84.61427,19.05194],[84.61281,19.05353],[84.61343,19.05657],[84.61761,19.05453],[84.62074,19.05614],[84.62242,19.0601],[84.61705,19.06093],[84.61831,19.06587],[84.62782,19.06621],[84.63064,19.0646],[84.62987,19.0617],[84.63101,19.06042],[84.63711,19.05998],[84.64161,19.06727],[84.65394,19.06754],[84.65467,19.0659],[84.65796,19.06556],[84.65758,19.06431],[84.66113,19.06304],[84.66308,19.07461],[84.66948,19.07438],[84.67085,19.07633],[84.66347,19.0824],[84.66388,19.08757],[84.65868,19.09196],[84.65897,19.09443],[84.65319,19.09309],[84.64704,19.09626],[84.64424,19.09291],[84.63684,19.08974],[84.63678,19.08595],[84.63433,19.08867],[84.6312,19.0821],[84.63193,19.08656],[84.63042,19.08439],[84.62549,19.08491],[84.626,19.08767],[84.62411,19.08831],[84.62501,19.09166],[84.62268,19.09386],[84.6249,19.09564],[84.62548,19.09909],[84.61965,19.1044],[84.61867,19.10008],[84.60955,19.10078],[84.61128,19.10685],[84.60841,19.10753],[84.60552,19.11754],[84.60186,19.12318],[84.60285,19.12662],[84.59601,19.12879],[84.59553,19.13245],[84.60328,19.13193],[84.6072,19.12918],[84.61416,19.12789],[84.62978,19.12668],[84.63102,19.12968],[84.64363,19.12971],[84.64408,19.13372],[84.65426,19.12937],[84.65995,19.1315],[84.66732,19.12986],[84.66669,19.13184],[84.66974,19.13794],[84.67166,19.14822],[84.67102,19.15623],[84.66793,19.15417],[84.66874,19.16299],[84.67091,19.16604],[84.67252,19.16455],[84.67327,19.16609],[84.67776,19.16678],[84.68073,19.16528],[84.68435,19.15999],[84.6929,19.16121],[84.69622,19.15945],[84.69692,19.16076],[84.7034,19.16117],[84.70473,19.1593],[84.70998,19.15967],[84.71485,19.15232],[84.71052,19.14646],[84.70118,19.14706],[84.70005,19.14439],[84.70126,19.14462],[84.70036,19.14297],[84.70612,19.14103],[84.69784,19.12644],[84.70252,19.12586],[84.70144,19.12219],[84.7028,19.11786],[84.7082,19.11572],[84.75455,19.08217],[84.76627,19.07814],[84.77965,19.10161],[84.79364,19.12086],[84.80389,19.14521],[84.8178,19.1656],[84.85817,19.21051],[84.93021,19.27621],[84.9836,19.31783],[85.07932,19.37435],[85.09202,19.38806],[85.0938,19.39861],[85.10555,19.41377],[85.16534,19.46157],[85.29348,19.55153],[85.32713,19.57303],[85.38101,19.6034],[85.43051,19.628],[85.49947,19.65711],[85.63703,19.7255],[85.66004,19.73506],[85.66782,19.73686],[85.67799,19.74385],[85.7508,19.76852],[85.78103,19.78094],[85.93435,19.8249],[86.05803,19.84985],[86.14374,19.87351],[86.22371,19.89885],[86.28123,19.92918],[86.30962,19.94127],[86.3295,19.94618],[86.35624,19.94714],[86.38944,19.95528],[86.40854,19.97005],[86.4116,19.97575],[86.39751,19.96951],[86.39135,19.96373],[86.38409,19.9598],[86.38216,19.95943],[86.37977,19.96162],[86.378,19.96683],[86.38461,19.97609],[86.38965,19.97668],[86.39007,19.98123],[86.39352,19.98216],[86.40438,19.99183],[86.41402,19.99732],[86.41404,20.01065],[86.42603,20.03516],[86.43395,20.04635],[86.43396,20.05214],[86.4769,20.09735],[86.49773,20.1268],[86.51266,20.15878],[86.52383,20.17345],[86.53909,20.18648],[86.59557,20.22446],[86.6565,20.25427],[86.67418,20.25987],[86.68019,20.25994],[86.67212,20.2625],[86.67276,20.26575],[86.67119,20.26928],[86.66788,20.27159],[86.66925,20.27572],[86.67193,20.27488],[86.67324,20.27665],[86.67551,20.27511],[86.67364,20.26996],[86.67568,20.26711],[86.67945,20.26757],[86.67984,20.26422],[86.68116,20.27107],[86.72233,20.29028],[86.74753,20.30697],[86.75,20.30891],[86.75097,20.31284],[86.77507,20.33126],[86.78252,20.34088],[86.77812,20.34455],[86.79806,20.36397],[86.79433,20.36922],[86.7915,20.36481],[86.77879,20.35662],[86.78185,20.36586],[86.78894,20.37462],[86.79077,20.36577],[86.79727,20.37576],[86.79243,20.37935],[86.78974,20.37592],[86.78707,20.3785],[86.7886,20.38067],[86.7856,20.38144],[86.78544,20.38015],[86.78445,20.38125],[86.78091,20.37862],[86.78243,20.38573],[86.77657,20.40505],[86.76202,20.39373],[86.75507,20.38448],[86.74645,20.37861],[86.74472,20.37845],[86.75043,20.38384],[86.75124,20.38767],[86.7474,20.38755],[86.74332,20.38044],[86.74587,20.39161],[86.73761,20.3899],[86.74152,20.39591],[86.73924,20.40081],[86.73185,20.39549],[86.73075,20.39255],[86.72438,20.39385],[86.73358,20.4148],[86.73332,20.42216],[86.72857,20.44069],[86.73336,20.46159],[86.74074,20.4712],[86.74186,20.46608],[86.74565,20.46804],[86.75941,20.50038],[86.76579,20.50373],[86.77525,20.52075],[86.78937,20.53393],[86.80844,20.54608],[86.87637,20.59603],[86.9967,20.67293],[87.01653,20.68796],[87.0258,20.69309],[87.03236,20.70005],[87.05343,20.71227],[87.05825,20.71676],[87.057,20.7173],[87.03457,20.70471],[87.02941,20.70409],[87.02614,20.70191],[87.00004,20.69784],[87.00003,20.70149],[87.00552,20.70279],[86.99999,20.70381],[86.99654,20.71216],[87.00201,20.71832],[87.00562,20.73461],[86.99745,20.75073],[86.99248,20.77023],[86.97656,20.77188],[86.96422,20.76728],[86.94416,20.76648],[86.94204,20.77296],[86.95048,20.77415],[86.95022,20.77639],[86.96126,20.78345],[86.96741,20.79139],[86.96879,20.79914],[86.97636,20.81832],[86.98134,20.84561],[86.98088,20.85705],[86.96677,20.873],[86.96216,20.88425],[86.93928,20.92076],[86.93209,20.93764],[86.91835,20.95949],[86.91006,20.97627],[86.89382,21.01334],[86.86994,21.04636],[86.85076,21.08739],[86.84182,21.12483],[86.84154,21.17508],[86.84476,21.18762],[86.85629,21.2056],[86.85481,21.21051],[86.84208,21.20419],[86.8326,21.20609],[86.82935,21.20865],[86.83241,21.20814],[86.83384,21.20992],[86.83353,21.2139],[86.83151,21.21497],[86.84368,21.23243],[86.8522,21.24794],[86.8556,21.25854],[86.88571,21.29894],[86.89006,21.30755],[86.89251,21.31844],[86.89474,21.31589],[86.8975,21.31609],[86.90991,21.32831],[86.9139,21.33458],[86.91175,21.33652],[86.91245,21.33744],[86.92002,21.34094],[86.92406,21.34487],[86.94809,21.37405],[86.94679,21.37558],[86.95098,21.37744],[86.97294,21.40005],[86.97977,21.40746],[86.97928,21.40976],[86.98874,21.41439],[86.99488,21.42109],[86.99773,21.42094],[87.02837,21.44214],[87.05225,21.46127],[87.05556,21.46523],[87.05631,21.46896],[87.07435,21.4714],[87.09754,21.49309],[87.10787,21.5],[87.11371,21.50698],[87.11523,21.51344],[87.1185,21.5171],[87.12199,21.51322],[87.13087,21.51272],[87.16055,21.52947],[87.18687,21.53932],[87.1963,21.54126],[87.19963,21.54474],[87.19948,21.54656],[87.20339,21.54758],[87.204,21.54562],[87.20614,21.54528],[87.24146,21.55175],[87.24265,21.55396],[87.25,21.55678],[87.25171,21.55523],[87.29427,21.55744],[87.3386,21.55652],[87.36188,21.55776],[87.37199,21.56078],[87.4068,21.58271],[87.4084,21.58489],[87.40758,21.58866],[87.43608,21.59713],[87.44772,21.60312],[87.45054,21.60224],[87.48481,21.61246],[87.48453,21.62496],[87.48601,21.63224],[87.48061,21.63321],[87.48118,21.63602],[87.47517,21.64399],[87.47647,21.64693],[87.47196,21.64806],[87.47256,21.65247],[87.46126,21.65037],[87.46037,21.6514],[87.4605,21.65544],[87.46248,21.65844],[87.46128,21.66264],[87.4672,21.66413],[87.46673,21.67857],[87.46945,21.67873],[87.46861,21.68309],[87.47111,21.68389],[87.47084,21.68858],[87.46959,21.68935],[87.47198,21.69065],[87.47123,21.69618],[87.47363,21.69711],[87.4722,21.69815],[87.47307,21.69914],[87.47149,21.69869],[87.47194,21.70244],[87.47018,21.70533],[87.4724,21.70734],[87.47359,21.71457],[87.47123,21.71741],[87.46741,21.71868],[87.46346,21.72538],[87.46386,21.72832],[87.46709,21.72757],[87.46918,21.73252],[87.44478,21.73403],[87.44529,21.7387],[87.45319,21.7378],[87.45432,21.73929],[87.44978,21.74328],[87.44543,21.74379],[87.44723,21.74662],[87.44485,21.74943],[87.44558,21.76804],[87.44401,21.76923],[87.43539,21.77067],[87.4315,21.76931],[87.42459,21.77158],[87.42232,21.76982],[87.41551,21.76949],[87.40413,21.77148],[87.40119,21.76743],[87.39775,21.76658],[87.39553,21.76713],[87.39542,21.77094],[87.39148,21.77096],[87.39128,21.77241],[87.39397,21.7726],[87.39343,21.77621],[87.38506,21.77677],[87.38085,21.77544],[87.37854,21.77277],[87.37401,21.77281],[87.37388,21.76511],[87.36966,21.76543],[87.37302,21.77371],[87.37183,21.77876],[87.3594,21.78259],[87.35915,21.78548],[87.35566,21.78639],[87.35682,21.78945],[87.35552,21.79217],[87.34732,21.79296],[87.33857,21.78476],[87.33603,21.79354],[87.33181,21.79382],[87.32954,21.79057],[87.32544,21.79202],[87.31946,21.79072],[87.31894,21.79462],[87.32164,21.79767],[87.31653,21.79632],[87.31518,21.79392],[87.314,21.79555],[87.31066,21.79385],[87.30963,21.79892],[87.29838,21.80121],[87.29808,21.80487],[87.29589,21.80529],[87.29698,21.81155],[87.29059,21.81132],[87.28869,21.80559],[87.28414,21.80279],[87.28272,21.80276],[87.28285,21.80449],[87.27738,21.80501],[87.27376,21.81029],[87.27601,21.81117],[87.27519,21.81697],[87.2639,21.81858],[87.2642,21.82325],[87.26906,21.82343],[87.27088,21.82706],[87.26852,21.82949],[87.26501,21.83007],[87.26409,21.83562],[87.26542,21.83868],[87.26088,21.84074],[87.25849,21.84408],[87.25954,21.84921],[87.24903,21.85323],[87.2478,21.8609],[87.2514,21.86886],[87.25232,21.87711],[87.24225,21.89247],[87.23426,21.90105],[87.23698,21.9078],[87.2492,21.91515],[87.24977,21.91835],[87.24511,21.92541],[87.24948,21.93598],[87.23903,21.94097],[87.23146,21.95728],[87.22397,21.95684],[87.22279,21.95871],[87.21679,21.96027],[87.21409,21.96357],[87.2106,21.96436],[87.20868,21.96208],[87.20309,21.9629],[87.1995,21.95979],[87.19681,21.95955],[87.17763,21.96964],[87.17041,21.97994],[87.1682,21.97128],[87.16199,21.96761],[87.1636,21.96701],[87.16233,21.96168],[87.16479,21.9609],[87.16066,21.95227],[87.16262,21.94891],[87.1611,21.94398],[87.16328,21.9389],[87.1614,21.93492],[87.15281,21.93322],[87.14155,21.92402],[87.12464,21.92601],[87.11405,21.92432],[87.11282,21.92244],[87.10692,21.92232],[87.10235,21.91506],[87.0971,21.91394],[87.09057,21.90107],[87.09462,21.89829],[87.09885,21.89072],[87.09519,21.88062],[87.09793,21.86692],[87.08426,21.86812],[87.07929,21.86595],[87.07396,21.86724],[87.06131,21.86587],[87.03302,21.87038],[87.03011,21.87448],[87.02608,21.87568],[87.02748,21.87974],[87.0251,21.88109],[87.02557,21.88689],[87.02293,21.89231],[87.00938,21.89978],[87.00468,21.91013],[86.99972,21.91325],[87.00356,21.92049],[87.00145,21.92456],[87.00463,21.92572],[87.00583,21.93753],[87.00943,21.94789],[87.01284,21.9496],[87.02123,21.97267],[87.03035,21.98534],[87.031,21.99705],[87.0274,22.00266],[87.02234,22.01949],[87.0267,22.03709],[87.01906,22.04178],[87.0144,22.04768],[87.00588,22.04872],[86.99776,22.05403],[86.99314,22.05525],[86.97175,22.07239],[86.97103,22.07834],[86.96782,22.08013],[86.96471,22.08574],[86.95796,22.08855],[86.94732,22.0858],[86.93429,22.09048],[86.90585,22.09193],[86.87114,22.09964],[86.86413,22.09935],[86.86022,22.10233],[86.85015,22.10378],[86.84917,22.1],[86.84662,22.10046],[86.84363,22.09631],[86.83374,22.0987],[86.83465,22.10426],[86.82462,22.11892],[86.81892,22.11664],[86.80641,22.11971],[86.80997,22.12741],[86.80479,22.13033],[86.80142,22.12924],[86.79941,22.13037],[86.80229,22.13282],[86.80374,22.13871],[86.80201,22.15071],[86.79385,22.15748],[86.78841,22.15777],[86.78664,22.1538],[86.77964,22.15365],[86.76499,22.14951],[86.73588,22.14943],[86.7277,22.14718],[86.71971,22.14728],[86.71789,22.1658],[86.71921,22.16704],[86.7193,22.17304],[86.71605,22.18172],[86.71637,22.18632],[86.72122,22.18939],[86.71889,22.19905],[86.72496,22.21802],[86.72086,22.22041],[86.71385,22.22005],[86.70794,22.2233],[86.70346,22.22118],[86.68434,22.22241],[86.67531,22.22925],[86.67239,22.24022],[86.66959,22.24254],[86.66624,22.24162],[86.66082,22.23672],[86.65425,22.23627],[86.6513,22.24438],[86.65466,22.25073],[86.64951,22.26353],[86.64673,22.26536],[86.64351,22.26466],[86.64413,22.26867],[86.63971,22.26551],[86.638,22.2711],[86.63218,22.27323],[86.62731,22.26951],[86.62579,22.27353],[86.62177,22.27704],[86.61048,22.28335],[86.60352,22.28207],[86.59976,22.27887],[86.59308,22.27856],[86.59392,22.28204],[86.59272,22.28544],[86.58793,22.28999],[86.58739,22.29441],[86.58506,22.29536],[86.58225,22.30165],[86.57681,22.30112],[86.57686,22.29556],[86.57198,22.29618],[86.57088,22.30019],[86.56887,22.30144],[86.56169,22.30172],[86.5574,22.29832],[86.55407,22.29847],[86.54849,22.30136],[86.54386,22.30721],[86.54074,22.30824],[86.53935,22.30476],[86.53276,22.30096],[86.52545,22.30761],[86.52577,22.31103],[86.52319,22.31473],[86.52783,22.31549],[86.52709,22.3235],[86.52169,22.32342],[86.50818,22.32786],[86.50748,22.33465],[86.50357,22.33676],[86.50212,22.34359],[86.49678,22.34723],[86.49414,22.34566],[86.49289,22.34708],[86.48726,22.34768],[86.48346,22.33813],[86.47147,22.33578],[86.46819,22.3304],[86.46228,22.32982],[86.46362,22.32875],[86.46195,22.32611],[86.45292,22.32532],[86.44527,22.32892],[86.44307,22.32626],[86.44296,22.31767],[86.44461,22.3125],[86.44229,22.30681],[86.43939,22.30358],[86.43034,22.30746],[86.42681,22.31758],[86.40828,22.32097],[86.37708,22.34163],[86.36642,22.34429],[86.35755,22.34977],[86.35761,22.35423],[86.35016,22.36429],[86.34028,22.37292],[86.32852,22.3778],[86.32116,22.38542],[86.32063,22.38902],[86.32271,22.39264],[86.32082,22.39741],[86.30644,22.40961],[86.30745,22.41531],[86.30264,22.4222],[86.29633,22.42403],[86.29303,22.42668],[86.2813,22.44866],[86.26846,22.44217],[86.26394,22.44534],[86.2566,22.44541],[86.23725,22.45259],[86.22467,22.45252],[86.2174,22.46261],[86.22258,22.46725],[86.21388,22.46644],[86.20793,22.47349],[86.20029,22.4718],[86.17056,22.48138],[86.16047,22.48255],[86.15632,22.48036],[86.15028,22.48021],[86.15033,22.48335],[86.13373,22.48713],[86.12375,22.48861],[86.11663,22.487],[86.10275,22.50024],[86.10024,22.50813],[86.09715,22.51033],[86.09487,22.5195],[86.07925,22.53755],[86.07546,22.54411],[86.06843,22.54987],[86.06487,22.55549],[86.05131,22.56248],[86.04544,22.56751]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"22","area_level":"State","area_name":"Chhattisgarh","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[83.34603,24.09744],[83.33621,24.09882],[83.32145,24.10602],[83.31475,24.09097],[83.3056,24.07964],[83.29946,24.07893],[83.2874,24.05511],[83.28211,24.04973],[83.284,24.03953],[83.28345,24.03242],[83.27911,24.01827],[83.27275,24.01817],[83.26363,24.00924],[83.25976,24.00947],[83.25768,24.01311],[83.25188,24.01491],[83.24259,24.01159],[83.24114,24.0053],[83.24243,23.99718],[83.23366,23.99607],[83.23143,23.99398],[83.2305,23.98877],[83.22361,23.98665],[83.22333,23.98421],[83.22691,23.97788],[83.21967,23.97294],[83.21861,23.96898],[83.22282,23.9622],[83.22313,23.95815],[83.21994,23.95271],[83.22003,23.94885],[83.21552,23.94551],[83.21599,23.9379],[83.21193,23.93574],[83.20846,23.93057],[83.20382,23.92868],[83.20794,23.92424],[83.20792,23.92139],[83.19843,23.91406],[83.19464,23.91433],[83.19317,23.91693],[83.18976,23.91735],[83.18803,23.91452],[83.18129,23.9151],[83.17827,23.91216],[83.17467,23.9123],[83.17119,23.90777],[83.16367,23.90877],[83.15948,23.90738],[83.15422,23.90404],[83.15277,23.89947],[83.15384,23.89673],[83.14822,23.89329],[83.14759,23.88898],[83.14148,23.88492],[83.12568,23.88279],[83.11167,23.87906],[83.09775,23.87324],[83.08189,23.87046],[83.07505,23.87012],[83.07115,23.87421],[83.06213,23.87394],[83.05248,23.87953],[83.01871,23.87947],[83.00125,23.87679],[83.00163,23.87364],[82.99722,23.87259],[82.98284,23.87416],[82.97458,23.87163],[82.94788,23.87142],[82.93662,23.87707],[82.93065,23.88946],[82.92722,23.89229],[82.9117,23.8975],[82.90516,23.89789],[82.88471,23.90884],[82.87725,23.91779],[82.86522,23.9264],[82.86111,23.93893],[82.85828,23.93926],[82.85335,23.94547],[82.84865,23.94535],[82.84112,23.95066],[82.83699,23.9568],[82.82672,23.9623],[82.81261,23.95987],[82.801,23.96096],[82.79837,23.95081],[82.79002,23.946],[82.78589,23.94089],[82.77662,23.93667],[82.77034,23.93699],[82.76201,23.93383],[82.75446,23.93419],[82.75609,23.92503],[82.75526,23.92171],[82.75238,23.91979],[82.715,23.92139],[82.71085,23.92368],[82.70351,23.92449],[82.69803,23.91992],[82.69342,23.9202],[82.68888,23.9098],[82.6834,23.90929],[82.68058,23.90715],[82.67638,23.90925],[82.67466,23.90674],[82.67115,23.90579],[82.66159,23.90764],[82.65106,23.88948],[82.65123,23.88676],[82.66845,23.87179],[82.66448,23.86255],[82.66022,23.86284],[82.66156,23.85693],[82.66047,23.85514],[82.65157,23.85548],[82.65058,23.85685],[82.65287,23.85879],[82.64958,23.86025],[82.64683,23.85914],[82.64721,23.85597],[82.6451,23.85511],[82.64718,23.85369],[82.64714,23.84872],[82.64244,23.84694],[82.63814,23.84798],[82.63674,23.84448],[82.63917,23.84165],[82.63534,23.83771],[82.62954,23.83879],[82.60756,23.83329],[82.60224,23.8303],[82.59995,23.82653],[82.58862,23.82144],[82.58361,23.82071],[82.58181,23.82301],[82.57922,23.82241],[82.57776,23.82423],[82.5732,23.82406],[82.56937,23.8203],[82.56476,23.82074],[82.56322,23.82285],[82.55425,23.8262],[82.54674,23.82619],[82.54749,23.82255],[82.53307,23.82215],[82.53355,23.82023],[82.53834,23.8202],[82.5388,23.81637],[82.54844,23.80855],[82.55147,23.79064],[82.54181,23.79149],[82.53813,23.79425],[82.53549,23.7908],[82.52446,23.78374],[82.51097,23.78602],[82.4974,23.7849],[82.48893,23.78995],[82.48418,23.80035],[82.47919,23.80246],[82.47906,23.80595],[82.46926,23.81106],[82.45378,23.81155],[82.44691,23.80455],[82.44065,23.80279],[82.4379,23.80374],[82.43574,23.80262],[82.43431,23.805],[82.42326,23.80459],[82.3932,23.79994],[82.39287,23.80324],[82.39062,23.8052],[82.37697,23.81104],[82.36924,23.80905],[82.36405,23.80994],[82.36352,23.80803],[82.35265,23.80353],[82.33947,23.80862],[82.33466,23.80255],[82.33086,23.80616],[82.3175,23.81176],[82.31152,23.8102],[82.30578,23.81172],[82.30483,23.80739],[82.29877,23.807],[82.29181,23.80982],[82.28164,23.81698],[82.27211,23.81708],[82.26061,23.82124],[82.25013,23.81568],[82.24331,23.80852],[82.23728,23.80532],[82.23181,23.80531],[82.22704,23.80829],[82.22551,23.82008],[82.20631,23.82741],[82.20811,23.83493],[82.21197,23.83585],[82.21532,23.84102],[82.21178,23.852],[82.20128,23.84864],[82.19714,23.84165],[82.18887,23.84259],[82.18622,23.83867],[82.18085,23.83628],[82.17856,23.82161],[82.17146,23.81824],[82.16383,23.82068],[82.14206,23.81555],[82.14172,23.81689],[82.12929,23.81903],[82.12337,23.82205],[82.11659,23.81701],[82.10665,23.81868],[82.09544,23.81553],[82.09418,23.81668],[82.08327,23.81542],[82.07764,23.81864],[82.07233,23.81704],[82.06173,23.81916],[82.05358,23.81838],[82.05244,23.82165],[82.04924,23.82422],[82.03842,23.82684],[82.03876,23.83313],[82.04087,23.83292],[82.04127,23.83688],[82.04405,23.83883],[82.04418,23.84165],[82.03475,23.84641],[82.02047,23.84907],[82.00881,23.86108],[82.00093,23.86218],[81.98907,23.86043],[81.98599,23.86192],[81.98171,23.86089],[81.97721,23.85624],[81.97033,23.85723],[81.9654,23.85591],[81.96359,23.85361],[81.96027,23.85553],[81.9578,23.85228],[81.95556,23.85341],[81.95417,23.85712],[81.94993,23.85665],[81.94608,23.85877],[81.94692,23.86189],[81.93848,23.86235],[81.93823,23.86409],[81.94046,23.86559],[81.93965,23.86775],[81.92893,23.87072],[81.92046,23.87061],[81.9204,23.86732],[81.91615,23.85951],[81.91044,23.85722],[81.90866,23.85108],[81.90629,23.84992],[81.90609,23.84606],[81.902,23.84486],[81.89875,23.84072],[81.89223,23.84052],[81.88816,23.83555],[81.86771,23.83414],[81.86628,23.82869],[81.86307,23.82446],[81.8382,23.8211],[81.83653,23.81998],[81.83688,23.8162],[81.82916,23.81503],[81.82751,23.81381],[81.82738,23.8106],[81.82282,23.80772],[81.815,23.80645],[81.80874,23.81342],[81.7959,23.81489],[81.79313,23.80991],[81.79112,23.80935],[81.77316,23.8164],[81.76212,23.82361],[81.75451,23.83075],[81.74285,23.83377],[81.73736,23.83918],[81.73223,23.84086],[81.72846,23.83902],[81.72547,23.83982],[81.72504,23.84463],[81.72969,23.84894],[81.73198,23.85668],[81.7202,23.86221],[81.70749,23.86113],[81.70728,23.86505],[81.70974,23.87125],[81.7077,23.87419],[81.70384,23.87593],[81.70731,23.88236],[81.70265,23.88619],[81.69044,23.88476],[81.68754,23.90648],[81.68256,23.9114],[81.67231,23.91339],[81.67172,23.91955],[81.66858,23.92496],[81.66238,23.92427],[81.65778,23.91634],[81.63847,23.91083],[81.63645,23.90759],[81.63218,23.90582],[81.62076,23.90673],[81.60902,23.9032],[81.60836,23.90149],[81.61047,23.89877],[81.61157,23.89229],[81.60375,23.88471],[81.60424,23.88175],[81.62221,23.87024],[81.61426,23.8617],[81.60493,23.86149],[81.60318,23.85371],[81.60772,23.84639],[81.6122,23.84315],[81.61132,23.83701],[81.61323,23.83448],[81.61675,23.83345],[81.62241,23.83538],[81.63242,23.83593],[81.63584,23.83451],[81.63746,23.82767],[81.64162,23.82058],[81.64132,23.81474],[81.64665,23.8115],[81.65145,23.79906],[81.64947,23.78336],[81.64445,23.77482],[81.64466,23.77013],[81.65203,23.76537],[81.67668,23.75685],[81.68185,23.7533],[81.68676,23.7475],[81.67917,23.74234],[81.67847,23.73937],[81.68606,23.73304],[81.68953,23.72377],[81.69591,23.72132],[81.68502,23.70021],[81.68408,23.69092],[81.66596,23.685],[81.66062,23.68466],[81.65555,23.68202],[81.65422,23.6778],[81.6563,23.67214],[81.65517,23.66314],[81.64455,23.65718],[81.61457,23.66292],[81.61933,23.65839],[81.62033,23.65143],[81.6142,23.62244],[81.60651,23.61387],[81.6111,23.60327],[81.61197,23.59525],[81.60834,23.59659],[81.60359,23.59336],[81.59811,23.59423],[81.59681,23.59236],[81.593,23.59601],[81.5897,23.59603],[81.58497,23.59455],[81.57668,23.58534],[81.58402,23.55358],[81.61032,23.55508],[81.61409,23.54567],[81.61247,23.54086],[81.61323,23.53343],[81.61633,23.53075],[81.61627,23.52843],[81.61368,23.52758],[81.61375,23.52168],[81.61537,23.51946],[81.61152,23.51588],[81.61232,23.51021],[81.62537,23.49676],[81.62705,23.49132],[81.62921,23.49215],[81.6321,23.49017],[81.63728,23.49036],[81.64222,23.49689],[81.64218,23.49895],[81.64849,23.49975],[81.6537,23.49806],[81.65459,23.50194],[81.65817,23.50491],[81.65954,23.51177],[81.66237,23.51414],[81.65891,23.529],[81.66812,23.53295],[81.68005,23.52925],[81.69034,23.52837],[81.69964,23.52202],[81.70204,23.52452],[81.702,23.52801],[81.70594,23.52908],[81.71108,23.53488],[81.7145,23.53597],[81.71539,23.54073],[81.72253,23.5433],[81.72152,23.54721],[81.72431,23.55026],[81.72523,23.55687],[81.72802,23.55649],[81.73636,23.56646],[81.73761,23.56507],[81.74238,23.56615],[81.74664,23.5698],[81.75265,23.56795],[81.7548,23.56559],[81.75826,23.54987],[81.77164,23.55054],[81.80191,23.5484],[81.80907,23.54934],[81.81698,23.54087],[81.81959,23.52972],[81.81758,23.52212],[81.82069,23.51524],[81.83643,23.51091],[81.83965,23.51089],[81.84398,23.5144],[81.85026,23.51355],[81.85218,23.51529],[81.86369,23.51757],[81.86912,23.51293],[81.8756,23.51271],[81.88126,23.51507],[81.89368,23.52446],[81.89685,23.52465],[81.90444,23.52955],[81.90787,23.53533],[81.91853,23.535],[81.92329,23.53266],[81.93785,23.51631],[81.93763,23.51374],[81.94234,23.50569],[81.94782,23.5011],[81.95791,23.5007],[81.95503,23.4854],[81.95499,23.46717],[81.95783,23.46532],[81.96472,23.4657],[81.96904,23.46035],[81.97036,23.45558],[81.97688,23.45181],[81.97599,23.44862],[81.9804,23.44704],[81.97779,23.44197],[81.98382,23.43457],[81.98177,23.43366],[81.98169,23.43094],[81.9839,23.42928],[81.97674,23.4238],[81.98254,23.42016],[81.98533,23.41449],[81.98843,23.41453],[81.99056,23.41849],[81.99969,23.42156],[82.0024,23.41696],[82.00955,23.41199],[82.01182,23.41592],[82.02548,23.42488],[82.02578,23.41999],[82.03275,23.40999],[82.03063,23.40824],[82.02569,23.40969],[82.02385,23.40867],[82.0238,23.40676],[82.02907,23.4002],[82.02116,23.39177],[82.0219,23.38732],[82.03231,23.38242],[82.03685,23.38874],[82.04447,23.38005],[82.056,23.37678],[82.05876,23.37875],[82.06406,23.39294],[82.07112,23.39121],[82.07704,23.39494],[82.08217,23.39347],[82.08601,23.39699],[82.09148,23.39828],[82.09301,23.39747],[82.09204,23.39364],[82.09348,23.39286],[82.10341,23.39824],[82.10494,23.39698],[82.10524,23.39256],[82.11377,23.38416],[82.1118,23.36613],[82.11011,23.36317],[82.11714,23.35546],[82.12374,23.35372],[82.14091,23.36181],[82.14575,23.36118],[82.15383,23.35036],[82.16208,23.34284],[82.16373,23.33467],[82.18281,23.32737],[82.19208,23.32677],[82.19396,23.32384],[82.19939,23.31343],[82.19479,23.30859],[82.19741,23.30688],[82.19603,23.30371],[82.19732,23.30066],[82.19671,23.29728],[82.19382,23.29522],[82.19221,23.28849],[82.19474,23.28439],[82.19338,23.27797],[82.1888,23.2735],[82.18533,23.2739],[82.17435,23.2687],[82.17229,23.2584],[82.16829,23.25515],[82.16964,23.25174],[82.16651,23.25008],[82.16718,23.24589],[82.16276,23.24509],[82.15978,23.24633],[82.15308,23.23047],[82.14527,23.22672],[82.14841,23.2211],[82.14762,23.21897],[82.15361,23.21274],[82.14976,23.20373],[82.14925,23.19738],[82.14398,23.19514],[82.14825,23.18895],[82.14364,23.18711],[82.14464,23.17954],[82.14905,23.17737],[82.1495,23.17548],[82.14854,23.17113],[82.14435,23.16565],[82.14516,23.16341],[82.16092,23.16205],[82.16226,23.15728],[82.16136,23.14311],[82.15687,23.13847],[82.1407,23.13293],[82.13664,23.12544],[82.13791,23.112],[82.12225,23.1038],[82.11609,23.1056],[82.1111,23.10935],[82.09787,23.10852],[82.0935,23.10907],[82.09216,23.11237],[82.08042,23.11269],[82.0749,23.11484],[82.07222,23.11832],[82.07008,23.1165],[82.06681,23.11676],[82.0664,23.11498],[82.06193,23.11241],[82.06005,23.10848],[82.05513,23.10685],[82.05323,23.09966],[82.04781,23.09644],[82.04906,23.09383],[82.04665,23.09248],[82.0471,23.09135],[82.04366,23.09035],[82.04372,23.08851],[82.03419,23.08005],[82.02808,23.08024],[82.02753,23.08222],[82.02257,23.07944],[82.01961,23.08104],[82.01857,23.0841],[82.01755,23.08243],[82.01276,23.08217],[82.01174,23.08004],[82.00783,23.07912],[82.00445,23.08119],[82.00042,23.08105],[81.99774,23.08441],[81.99432,23.08355],[81.99114,23.08661],[81.98948,23.08431],[81.98827,23.08614],[81.98565,23.08587],[81.98533,23.08267],[81.98241,23.08265],[81.98127,23.08015],[81.98086,23.08263],[81.97717,23.08101],[81.97621,23.07898],[81.96789,23.08072],[81.96341,23.07821],[81.96317,23.07519],[81.94225,23.07897],[81.94604,23.07628],[81.94506,23.07258],[81.94685,23.0691],[81.9439,23.06739],[81.94294,23.06477],[81.93781,23.06525],[81.9374,23.06188],[81.92955,23.06164],[81.93027,23.05904],[81.92678,23.05758],[81.92904,23.04983],[81.92449,23.04711],[81.9215,23.04081],[81.92561,23.0292],[81.93183,23.02548],[81.92951,23.02273],[81.92977,23.02061],[81.93673,23.01617],[81.93955,23.00953],[81.93914,23.00462],[81.94544,22.99582],[81.94476,22.98917],[81.95048,22.98293],[81.94621,22.97392],[81.94781,22.96754],[81.94631,22.95678],[81.91892,22.94655],[81.91274,22.94165],[81.90469,22.93145],[81.89815,22.92593],[81.8904,22.92266],[81.87824,22.90981],[81.86912,22.91733],[81.86611,22.91581],[81.86552,22.91274],[81.86933,22.9098],[81.86811,22.90209],[81.86949,22.89451],[81.86163,22.88926],[81.85319,22.89089],[81.84626,22.88672],[81.84207,22.88775],[81.83824,22.88525],[81.83837,22.88278],[81.83392,22.8809],[81.82748,22.8828],[81.81758,22.88228],[81.77568,22.87444],[81.77746,22.86752],[81.7749,22.86391],[81.77729,22.85549],[81.77653,22.85164],[81.77401,22.85022],[81.76784,22.83541],[81.76135,22.83029],[81.76946,22.82776],[81.77766,22.81643],[81.77791,22.81328],[81.78178,22.81095],[81.78413,22.7987],[81.78193,22.79607],[81.78098,22.78994],[81.7837,22.78395],[81.78358,22.77918],[81.79439,22.76646],[81.78848,22.76355],[81.77928,22.75086],[81.77307,22.75055],[81.76902,22.74187],[81.76993,22.73558],[81.75573,22.73379],[81.75359,22.72852],[81.75344,22.72102],[81.76115,22.69753],[81.77284,22.6847],[81.77237,22.66821],[81.75704,22.6472],[81.75263,22.64449],[81.74998,22.64558],[81.74847,22.64837],[81.74901,22.65178],[81.75202,22.65437],[81.75029,22.65935],[81.7464,22.66291],[81.74299,22.67254],[81.73953,22.67509],[81.73947,22.67212],[81.72785,22.67535],[81.72526,22.67308],[81.72272,22.65706],[81.71314,22.64809],[81.69889,22.64476],[81.68877,22.64847],[81.68332,22.64691],[81.67451,22.63755],[81.67205,22.63256],[81.66904,22.63196],[81.66244,22.62681],[81.6609,22.61929],[81.65274,22.61856],[81.64725,22.61326],[81.64571,22.60487],[81.64803,22.5977],[81.64649,22.59341],[81.64943,22.58895],[81.64498,22.58686],[81.64548,22.58444],[81.64896,22.58496],[81.64971,22.58145],[81.65184,22.58085],[81.65783,22.58444],[81.65517,22.57881],[81.65556,22.57582],[81.65618,22.57229],[81.65993,22.56946],[81.65346,22.56302],[81.64929,22.56328],[81.64277,22.55971],[81.63874,22.5611],[81.63625,22.56005],[81.63519,22.56528],[81.62903,22.56336],[81.62404,22.55588],[81.62869,22.54442],[81.62194,22.53802],[81.61542,22.53692],[81.61321,22.53867],[81.60499,22.53461],[81.59998,22.53526],[81.59634,22.53653],[81.59183,22.54522],[81.58623,22.54392],[81.56955,22.55073],[81.56283,22.5475],[81.56275,22.54236],[81.56303,22.53396],[81.57003,22.53227],[81.56253,22.53344],[81.55895,22.53079],[81.55296,22.53105],[81.54608,22.52758],[81.54098,22.53304],[81.53267,22.53853],[81.52223,22.53901],[81.52134,22.5366],[81.52344,22.53217],[81.51824,22.5198],[81.51049,22.52196],[81.50931,22.52606],[81.49665,22.51952],[81.49553,22.51426],[81.49744,22.51164],[81.49442,22.50501],[81.48938,22.50317],[81.48631,22.49376],[81.48701,22.49024],[81.48471,22.48783],[81.47856,22.49222],[81.4728,22.49374],[81.46301,22.49307],[81.45884,22.48947],[81.45257,22.49581],[81.44942,22.49576],[81.44689,22.49343],[81.44261,22.49435],[81.44397,22.49072],[81.45108,22.4866],[81.44724,22.48465],[81.44254,22.4792],[81.4464,22.47618],[81.45088,22.47859],[81.45019,22.47124],[81.44662,22.46976],[81.44903,22.46752],[81.45589,22.4695],[81.4573,22.47168],[81.45893,22.46929],[81.45528,22.46688],[81.44737,22.46588],[81.44102,22.47178],[81.44293,22.4738],[81.44153,22.47991],[81.43921,22.48212],[81.43221,22.47921],[81.42784,22.47981],[81.42278,22.47005],[81.42451,22.46327],[81.4287,22.45689],[81.42295,22.44769],[81.4067,22.44095],[81.39641,22.44008],[81.39298,22.44904],[81.39006,22.45226],[81.39045,22.45582],[81.38811,22.45921],[81.39006,22.46331],[81.38865,22.46821],[81.39125,22.47109],[81.3915,22.47771],[81.38406,22.48976],[81.38619,22.49855],[81.38206,22.50982],[81.37582,22.51105],[81.37063,22.51488],[81.36136,22.515],[81.36059,22.51204],[81.35431,22.51126],[81.35388,22.51423],[81.3506,22.51759],[81.34006,22.51951],[81.33474,22.52424],[81.32653,22.52614],[81.32287,22.52302],[81.32338,22.51893],[81.31839,22.51686],[81.31721,22.51461],[81.31993,22.50705],[81.31985,22.50323],[81.3182,22.50186],[81.32089,22.49523],[81.31813,22.49392],[81.32225,22.49118],[81.3228,22.48916],[81.32049,22.48596],[81.31518,22.48777],[81.31373,22.48292],[81.30729,22.48191],[81.29995,22.49029],[81.29178,22.49429],[81.28127,22.50295],[81.27329,22.49319],[81.26907,22.49432],[81.26213,22.49327],[81.25978,22.48513],[81.26193,22.47217],[81.24831,22.45878],[81.23219,22.45216],[81.20774,22.45659],[81.20612,22.46084],[81.19946,22.46303],[81.20145,22.4682],[81.19992,22.4852],[81.19767,22.48957],[81.19352,22.49095],[81.18697,22.48884],[81.17269,22.48791],[81.16724,22.47797],[81.16282,22.47455],[81.15512,22.45491],[81.1497,22.45313],[81.14103,22.45423],[81.12701,22.44923],[81.12053,22.4458],[81.11116,22.43757],[81.10882,22.42876],[81.11034,22.41744],[81.10834,22.40096],[81.10598,22.38769],[81.10366,22.38337],[81.10867,22.37382],[81.11312,22.35327],[81.12121,22.3426],[81.11355,22.32413],[81.11894,22.30922],[81.11872,22.29126],[81.10799,22.2845],[81.10185,22.2783],[81.09731,22.26898],[81.09153,22.249],[81.08241,22.24383],[81.07955,22.23938],[81.07771,22.23904],[81.07604,22.24465],[81.07261,22.24837],[81.05961,22.24429],[81.05006,22.24455],[81.03791,22.23389],[81.02705,22.22892],[81.02364,22.22928],[81.01946,22.22118],[81.02176,22.21212],[81.03037,22.20317],[81.03164,22.19965],[81.02901,22.1925],[81.03066,22.1874],[81.02553,22.1874],[81.02243,22.18947],[81.01666,22.18553],[81.01716,22.17961],[81.02675,22.16639],[81.02631,22.16284],[81.02221,22.15773],[81.02378,22.14867],[81.02191,22.13273],[81.01368,22.13367],[80.99906,22.13132],[80.99487,22.13302],[80.98895,22.12825],[80.9826,22.1257],[80.97814,22.12011],[80.98096,22.11021],[80.98434,22.11456],[80.99048,22.11355],[81.00316,22.10106],[81.00666,22.09995],[81.01133,22.09557],[81.00612,22.09219],[81.00145,22.0835],[81.00458,22.07536],[81.0067,22.075],[81.00895,22.07177],[81.0062,22.06321],[81.00317,22.05849],[80.99488,22.05861],[80.99439,22.04924],[80.98967,22.05138],[80.98354,22.0486],[80.98054,22.05471],[80.9694,22.05799],[80.96918,22.06671],[80.97213,22.07891],[80.97166,22.08305],[80.96655,22.09353],[80.96101,22.10003],[80.96076,22.10357],[80.95698,22.11042],[80.94758,22.11827],[80.92195,22.11995],[80.91469,22.11319],[80.90793,22.10957],[80.89707,22.06478],[80.89295,22.06308],[80.88901,22.0571],[80.88611,22.05915],[80.88251,22.05856],[80.88216,22.05248],[80.8858,22.04962],[80.87579,22.03853],[80.87695,22.03391],[80.87578,22.01104],[80.86575,21.99426],[80.85914,21.97078],[80.85267,21.95731],[80.84087,21.95558],[80.83849,21.95797],[80.83606,21.95453],[80.82881,21.95871],[80.82549,21.95842],[80.8275,21.95617],[80.82602,21.95284],[80.82913,21.95355],[80.82747,21.95127],[80.82898,21.94838],[80.83318,21.95011],[80.83129,21.94729],[80.83404,21.94575],[80.83647,21.94974],[80.83753,21.94698],[80.84304,21.94612],[80.84204,21.94415],[80.84589,21.94208],[80.84139,21.94117],[80.84571,21.93985],[80.84581,21.93397],[80.8477,21.93253],[80.84765,21.93074],[80.84562,21.93043],[80.8461,21.92624],[80.83925,21.92305],[80.83981,21.91945],[80.83623,21.91461],[80.835,21.90834],[80.83212,21.90797],[80.83614,21.907],[80.83339,21.90213],[80.83477,21.89574],[80.83205,21.89035],[80.83394,21.89105],[80.83276,21.88911],[80.83499,21.88559],[80.84326,21.88239],[80.84279,21.88064],[80.84504,21.87767],[80.84295,21.87607],[80.84621,21.87387],[80.84991,21.87625],[80.84956,21.87344],[80.85331,21.87257],[80.85272,21.87048],[80.84909,21.87113],[80.84576,21.86975],[80.84276,21.86533],[80.84539,21.86475],[80.84524,21.86233],[80.84741,21.86354],[80.8487,21.8619],[80.8465,21.85997],[80.84929,21.85917],[80.85024,21.85588],[80.85256,21.85486],[80.85094,21.8521],[80.84654,21.85281],[80.83937,21.84784],[80.84127,21.83978],[80.83891,21.84002],[80.8407,21.83867],[80.83868,21.83836],[80.83837,21.8367],[80.84247,21.83553],[80.84518,21.82882],[80.84039,21.81823],[80.84143,21.81539],[80.83906,21.81327],[80.84036,21.8124],[80.83751,21.80945],[80.83956,21.80721],[80.83809,21.80531],[80.8395,21.80323],[80.83862,21.80231],[80.84018,21.80215],[80.83567,21.79717],[80.83663,21.7961],[80.83205,21.7942],[80.83181,21.78946],[80.82984,21.78916],[80.83022,21.78678],[80.82618,21.78298],[80.8262,21.78159],[80.82954,21.77994],[80.82709,21.77863],[80.82821,21.77621],[80.82358,21.77499],[80.82274,21.77289],[80.82406,21.77218],[80.82263,21.7714],[80.82458,21.77045],[80.82133,21.768],[80.82278,21.76795],[80.822,21.76602],[80.81864,21.7656],[80.81712,21.76213],[80.81563,21.75573],[80.81661,21.75399],[80.82017,21.75402],[80.81974,21.74802],[80.80926,21.74843],[80.80451,21.74662],[80.80326,21.74447],[80.78543,21.74031],[80.78446,21.74287],[80.78585,21.74876],[80.77963,21.7507],[80.77627,21.75363],[80.77792,21.75477],[80.77203,21.75852],[80.75938,21.75918],[80.75599,21.76206],[80.74747,21.75554],[80.74034,21.74413],[80.73781,21.73626],[80.73987,21.732],[80.73338,21.72777],[80.734,21.72053],[80.73206,21.71366],[80.72614,21.71367],[80.72568,21.71214],[80.72902,21.70692],[80.73397,21.70594],[80.73513,21.70389],[80.73233,21.69816],[80.73414,21.69451],[80.733,21.69266],[80.72978,21.69206],[80.72531,21.68128],[80.72145,21.677],[80.71598,21.67473],[80.71918,21.66849],[80.71801,21.66619],[80.71526,21.66578],[80.7163,21.66328],[80.71439,21.66155],[80.71708,21.66008],[80.71928,21.64537],[80.72685,21.64562],[80.72764,21.63666],[80.72958,21.63403],[80.72901,21.62686],[80.73157,21.62651],[80.7291,21.62056],[80.73095,21.61735],[80.7234,21.61405],[80.72297,21.61203],[80.72498,21.60955],[80.72191,21.60955],[80.71705,21.60297],[80.71879,21.60037],[80.71637,21.59907],[80.71808,21.5932],[80.71543,21.5903],[80.71861,21.58743],[80.71536,21.58505],[80.7255,21.58009],[80.72891,21.57258],[80.72867,21.56995],[80.72571,21.5691],[80.72598,21.56635],[80.72117,21.56122],[80.72238,21.55993],[80.71999,21.555],[80.72455,21.55267],[80.72763,21.54869],[80.73419,21.54577],[80.74078,21.53923],[80.73048,21.5156],[80.73365,21.51279],[80.7315,21.50818],[80.73321,21.50066],[80.72929,21.49896],[80.7276,21.4962],[80.73289,21.48434],[80.73716,21.48098],[80.73775,21.47312],[80.73493,21.45991],[80.73001,21.45256],[80.72355,21.4443],[80.71429,21.43619],[80.70682,21.43307],[80.70574,21.43088],[80.70719,21.42546],[80.70655,21.41156],[80.69993,21.40458],[80.70055,21.3966],[80.69716,21.39343],[80.69911,21.39094],[80.69029,21.37207],[80.68739,21.36996],[80.68493,21.37015],[80.6802,21.36486],[80.68188,21.35995],[80.67648,21.35101],[80.67778,21.34881],[80.6716,21.34577],[80.67242,21.34096],[80.67114,21.33825],[80.66418,21.33733],[80.66005,21.33408],[80.66314,21.33437],[80.66556,21.32825],[80.6712,21.32565],[80.67487,21.32185],[80.67534,21.31775],[80.68156,21.31357],[80.6789,21.30333],[80.67957,21.29884],[80.66997,21.29116],[80.66124,21.29107],[80.65881,21.28669],[80.65908,21.28195],[80.65071,21.27738],[80.64917,21.27352],[80.64879,21.26216],[80.64384,21.25147],[80.63926,21.24732],[80.635,21.24748],[80.62312,21.24009],[80.61702,21.22929],[80.61378,21.22657],[80.60592,21.2242],[80.59819,21.22548],[80.58758,21.2221],[80.5779,21.21749],[80.56977,21.20581],[80.55947,21.2021],[80.54144,21.20109],[80.52963,21.20533],[80.51776,21.19281],[80.51499,21.18303],[80.50927,21.18601],[80.50731,21.18463],[80.50259,21.18532],[80.50045,21.18273],[80.49361,21.1796],[80.49206,21.17702],[80.48675,21.17676],[80.47861,21.17068],[80.4757,21.17099],[80.47337,21.17368],[80.46405,21.17463],[80.46081,21.16476],[80.46104,21.15727],[80.45875,21.15005],[80.44471,21.12196],[80.44517,21.12068],[80.45474,21.11828],[80.45819,21.11387],[80.4536,21.11156],[80.45345,21.11268],[80.4478,21.11242],[80.44647,21.1048],[80.43915,21.09656],[80.44164,21.0936],[80.44087,21.08984],[80.44629,21.08412],[80.44652,21.07341],[80.44966,21.06918],[80.44718,21.06326],[80.44956,21.06029],[80.4495,21.05726],[80.45393,21.05306],[80.4512,21.04284],[80.45264,21.03883],[80.45064,21.03684],[80.4495,21.03032],[80.44472,21.02799],[80.44012,21.02808],[80.43923,21.02184],[80.43581,21.02023],[80.42888,21.01169],[80.4251,21.01138],[80.42426,21.0085],[80.42581,21.00597],[80.43518,21.00148],[80.44377,20.99404],[80.44288,20.98645],[80.44553,20.97977],[80.44376,20.97719],[80.44535,20.97063],[80.4547,20.9528],[80.45472,20.94659],[80.46175,20.93984],[80.46175,20.93332],[80.4637,20.9292],[80.49295,20.92933],[80.50327,20.93135],[80.51907,20.92982],[80.53448,20.93459],[80.53902,20.93258],[80.54606,20.93501],[80.54628,20.93199],[80.54203,20.93022],[80.54294,20.92535],[80.54178,20.92392],[80.5481,20.91184],[80.55612,20.8892],[80.55393,20.87158],[80.55653,20.86089],[80.55504,20.84658],[80.55654,20.83784],[80.56123,20.83058],[80.56181,20.82437],[80.55859,20.81158],[80.54917,20.79606],[80.55219,20.78087],[80.55166,20.76403],[80.55867,20.75122],[80.56276,20.74732],[80.56284,20.734],[80.56001,20.7262],[80.56515,20.71079],[80.56729,20.70737],[80.57485,20.70405],[80.5818,20.69741],[80.58765,20.6847],[80.58368,20.67662],[80.58013,20.67292],[80.55697,20.67023],[80.55247,20.66809],[80.54491,20.66028],[80.53078,20.66011],[80.51793,20.65506],[80.49565,20.63685],[80.49415,20.6125],[80.49675,20.6024],[80.50284,20.59382],[80.50441,20.58335],[80.52093,20.58048],[80.53884,20.585],[80.54497,20.59018],[80.55783,20.59434],[80.56439,20.60362],[80.58077,20.60836],[80.60141,20.60879],[80.60502,20.60743],[80.61231,20.60051],[80.62829,20.60009],[80.63186,20.5984],[80.62406,20.59205],[80.62323,20.58923],[80.61735,20.58575],[80.62555,20.57813],[80.62108,20.57443],[80.62096,20.57006],[80.62587,20.56846],[80.62659,20.56381],[80.62406,20.55903],[80.62431,20.55577],[80.61843,20.55529],[80.61774,20.55212],[80.61527,20.5499],[80.61797,20.54658],[80.62132,20.5328],[80.61796,20.52545],[80.62088,20.52589],[80.61732,20.51517],[80.61885,20.51434],[80.61722,20.51066],[80.61932,20.50577],[80.61471,20.49256],[80.61635,20.48836],[80.6126,20.46193],[80.60217,20.44996],[80.60266,20.44621],[80.60805,20.44388],[80.61289,20.43871],[80.61364,20.43498],[80.60813,20.42415],[80.60009,20.41801],[80.59892,20.41058],[80.59148,20.39307],[80.59473,20.3858],[80.59729,20.38596],[80.59658,20.38384],[80.6038,20.38124],[80.61075,20.37506],[80.60948,20.36985],[80.6159,20.35991],[80.61511,20.35179],[80.61881,20.34913],[80.61854,20.34473],[80.62158,20.33956],[80.6258,20.33692],[80.62635,20.33263],[80.62237,20.32541],[80.61485,20.32239],[80.61052,20.3184],[80.58808,20.31792],[80.5592,20.30851],[80.54958,20.30896],[80.54604,20.30603],[80.54618,20.29766],[80.5435,20.29353],[80.5322,20.28086],[80.52256,20.27354],[80.51882,20.26617],[80.48991,20.27826],[80.47913,20.2783],[80.46694,20.27612],[80.44721,20.26246],[80.4369,20.26117],[80.42205,20.25349],[80.41678,20.24882],[80.39814,20.24427],[80.39526,20.24501],[80.39519,20.23701],[80.40483,20.21873],[80.42205,20.2068],[80.42101,20.19617],[80.41211,20.19447],[80.40069,20.18972],[80.39659,20.1739],[80.38854,20.1652],[80.40182,20.14724],[80.42593,20.13993],[80.42959,20.1361],[80.43338,20.13533],[80.45545,20.13793],[80.45465,20.14525],[80.45664,20.1493],[80.46015,20.15094],[80.46616,20.15042],[80.48508,20.14387],[80.49695,20.14553],[80.50559,20.14444],[80.50993,20.1413],[80.51241,20.13584],[80.53067,20.13172],[80.54034,20.12285],[80.55207,20.11796],[80.55193,20.10933],[80.54772,20.10542],[80.544,20.09564],[80.55491,20.07969],[80.55681,20.07188],[80.55437,20.06543],[80.55109,20.06164],[80.54931,20.05525],[80.55098,20.04164],[80.54684,20.02898],[80.54587,20.02116],[80.54697,20.01795],[80.54256,20.01077],[80.54985,20.00081],[80.5496,19.98597],[80.54378,19.97754],[80.53764,19.97379],[80.5378,19.96956],[80.5358,19.96553],[80.53939,19.96256],[80.53721,19.95931],[80.5389,19.95189],[80.53164,19.94857],[80.52989,19.93947],[80.52561,19.93731],[80.52362,19.93379],[80.50965,19.93105],[80.50474,19.92855],[80.50002,19.92861],[80.49593,19.93106],[80.48875,19.93061],[80.48073,19.93437],[80.47842,19.93844],[80.47998,19.94092],[80.47912,19.944],[80.47316,19.95095],[80.46603,19.94818],[80.45216,19.9576],[80.43015,19.94064],[80.41125,19.93849],[80.41257,19.92464],[80.40795,19.91271],[80.41388,19.90745],[80.42371,19.90259],[80.43322,19.90284],[80.45038,19.89633],[80.45717,19.89897],[80.46203,19.90438],[80.46862,19.90756],[80.47414,19.90381],[80.49143,19.90201],[80.49958,19.89084],[80.50582,19.87065],[80.49952,19.86968],[80.48629,19.86359],[80.48253,19.85881],[80.48417,19.85423],[80.48102,19.84927],[80.47869,19.83932],[80.4719,19.83556],[80.46908,19.82702],[80.46007,19.82299],[80.44072,19.81033],[80.42968,19.80714],[80.42158,19.8134],[80.41306,19.81639],[80.40162,19.81704],[80.40769,19.806],[80.4017,19.7962],[80.40488,19.79372],[80.42416,19.79916],[80.43949,19.79606],[80.4493,19.78977],[80.46426,19.79578],[80.46803,19.78882],[80.48083,19.78129],[80.48266,19.77274],[80.48903,19.77041],[80.49131,19.77529],[80.48999,19.79015],[80.48595,19.79648],[80.48497,19.80248],[80.47565,19.80362],[80.46888,19.81045],[80.48058,19.82751],[80.50037,19.82771],[80.50404,19.83085],[80.52021,19.83172],[80.5463,19.81827],[80.54522,19.80608],[80.54756,19.7949],[80.54244,19.78345],[80.54261,19.77992],[80.54374,19.7758],[80.55261,19.76556],[80.56215,19.76097],[80.57146,19.75923],[80.57382,19.75481],[80.58206,19.75082],[80.5842,19.74737],[80.58141,19.746],[80.58489,19.74408],[80.58647,19.74114],[80.5901,19.74222],[80.59438,19.73917],[80.59897,19.74031],[80.60572,19.73673],[80.61106,19.73817],[80.61397,19.73503],[80.6211,19.73303],[80.62676,19.72578],[80.64013,19.72531],[80.6502,19.71143],[80.65641,19.70709],[80.66344,19.70593],[80.67222,19.70072],[80.67425,19.68441],[80.66734,19.65771],[80.66637,19.63799],[80.66262,19.62248],[80.66533,19.61188],[80.67027,19.60932],[80.68847,19.61317],[80.70567,19.61398],[80.71465,19.6167],[80.73034,19.61018],[80.73308,19.6063],[80.74085,19.60623],[80.74588,19.60154],[80.75752,19.59667],[80.76,19.59165],[80.76532,19.59039],[80.76943,19.58667],[80.76703,19.57491],[80.77511,19.56251],[80.78113,19.56375],[80.78944,19.56042],[80.797,19.56248],[80.80633,19.56896],[80.81079,19.5689],[80.81615,19.5712],[80.82396,19.56672],[80.83559,19.56636],[80.83946,19.55941],[80.84065,19.55425],[80.8394,19.54921],[80.8437,19.53845],[80.84967,19.5345],[80.8499,19.52891],[80.85621,19.523],[80.86448,19.52004],[80.86851,19.52177],[80.87314,19.5187],[80.88369,19.52617],[80.8912,19.52051],[80.89496,19.51962],[80.89471,19.50962],[80.89321,19.50727],[80.89428,19.50369],[80.89294,19.5023],[80.89502,19.50079],[80.89768,19.48045],[80.89343,19.46658],[80.88001,19.4503],[80.87363,19.44499],[80.86437,19.44403],[80.85674,19.44604],[80.85345,19.44475],[80.85049,19.44669],[80.84759,19.44539],[80.84242,19.44691],[80.83013,19.44319],[80.82795,19.44014],[80.82306,19.43985],[80.81253,19.43276],[80.79585,19.43226],[80.79932,19.42272],[80.80429,19.41946],[80.80447,19.41195],[80.81223,19.40636],[80.81665,19.39715],[80.81733,19.38391],[80.82067,19.38116],[80.82839,19.38008],[80.84185,19.37191],[80.84905,19.36974],[80.85285,19.3639],[80.84608,19.35525],[80.83036,19.34818],[80.81007,19.33621],[80.80609,19.32751],[80.79883,19.32662],[80.79567,19.3234],[80.79022,19.3236],[80.77421,19.31358],[80.76861,19.30362],[80.76304,19.29719],[80.75974,19.29584],[80.75949,19.29125],[80.75573,19.28927],[80.75096,19.28776],[80.74313,19.28902],[80.74229,19.28708],[80.73832,19.28546],[80.72656,19.28718],[80.71076,19.28176],[80.70417,19.28309],[80.70185,19.2821],[80.69931,19.28474],[80.6957,19.28433],[80.6897,19.28698],[80.68865,19.29517],[80.69315,19.31555],[80.68613,19.32673],[80.6799,19.33033],[80.67313,19.33001],[80.65405,19.32281],[80.64836,19.31572],[80.64699,19.31649],[80.63649,19.31333],[80.63151,19.30717],[80.62329,19.30572],[80.61498,19.30983],[80.61254,19.30952],[80.60789,19.31823],[80.60766,19.32613],[80.59003,19.35177],[80.59084,19.3577],[80.58822,19.37026],[80.5918,19.37591],[80.58045,19.39861],[80.57708,19.40184],[80.57307,19.40246],[80.56248,19.3991],[80.5521,19.38854],[80.54417,19.38388],[80.53843,19.37779],[80.52033,19.34777],[80.50681,19.34242],[80.49574,19.34323],[80.48834,19.34177],[80.4825,19.33814],[80.47705,19.32992],[80.47134,19.31383],[80.46303,19.30092],[80.45736,19.28834],[80.45473,19.27499],[80.44603,19.26417],[80.42987,19.25408],[80.39847,19.2474],[80.39359,19.24501],[80.38631,19.233],[80.38391,19.21591],[80.38511,19.21151],[80.3918,19.20263],[80.39435,19.19637],[80.39384,19.1878],[80.38766,19.18051],[80.34789,19.16012],[80.34778,19.15236],[80.34068,19.14621],[80.33308,19.14552],[80.32743,19.13511],[80.33,19.13272],[80.33123,19.12795],[80.33068,19.12049],[80.33621,19.11185],[80.33962,19.10011],[80.32792,19.09505],[80.33114,19.08135],[80.32892,19.07591],[80.32967,19.07011],[80.31996,19.06588],[80.29734,19.04901],[80.29638,19.04688],[80.29824,19.04128],[80.30288,19.03491],[80.30516,19.02735],[80.30313,19.02216],[80.29153,19.00922],[80.28705,19.00682],[80.27401,18.99469],[80.27298,18.99144],[80.27393,18.96651],[80.26907,18.94807],[80.27088,18.93848],[80.2762,18.92977],[80.30006,18.91084],[80.3155,18.88949],[80.32619,18.8809],[80.33524,18.86865],[80.34926,18.8478],[80.35172,18.8416],[80.35431,18.82646],[80.35274,18.81898],[80.35035,18.81484],[80.3418,18.8124],[80.323,18.79897],[80.31401,18.79993],[80.30599,18.79794],[80.29994,18.79445],[80.29149,18.78347],[80.28845,18.77738],[80.28837,18.77378],[80.27679,18.76659],[80.27394,18.76551],[80.26217,18.7701],[80.25671,18.76998],[80.2477,18.7642],[80.24443,18.7579],[80.25974,18.74232],[80.27004,18.72561],[80.28361,18.71751],[80.28649,18.71143],[80.30072,18.69214],[80.30643,18.68137],[80.31867,18.64215],[80.32749,18.63538],[80.33102,18.62821],[80.3342,18.61338],[80.3463,18.59528],[80.34978,18.59379],[80.35563,18.59464],[80.36215,18.59915],[80.36295,18.60323],[80.36616,18.60706],[80.37516,18.61066],[80.37827,18.60891],[80.38845,18.59666],[80.39415,18.60061],[80.39585,18.60493],[80.40914,18.60979],[80.42,18.6104],[80.42241,18.61512],[80.42762,18.61288],[80.43039,18.61646],[80.45612,18.62936],[80.46554,18.62394],[80.47752,18.62584],[80.47917,18.62873],[80.48826,18.63109],[80.5016,18.62157],[80.51466,18.61933],[80.51883,18.61431],[80.51929,18.60865],[80.52813,18.60266],[80.53074,18.59894],[80.53525,18.59074],[80.53451,18.58835],[80.54228,18.58691],[80.55643,18.57974],[80.56749,18.57125],[80.57141,18.56468],[80.59096,18.5579],[80.59991,18.55304],[80.61064,18.54237],[80.6185,18.52767],[80.62276,18.52856],[80.63109,18.5219],[80.63757,18.52253],[80.64094,18.51151],[80.63685,18.50702],[80.63721,18.50435],[80.6513,18.4859],[80.65531,18.47586],[80.67334,18.46656],[80.67873,18.46077],[80.6861,18.45826],[80.68806,18.44736],[80.69576,18.44457],[80.70172,18.44459],[80.70531,18.43986],[80.69824,18.43756],[80.6962,18.42473],[80.69895,18.42143],[80.71827,18.40973],[80.72083,18.41104],[80.72286,18.41518],[80.73487,18.41284],[80.73217,18.40122],[80.71968,18.3908],[80.72276,18.38456],[80.7294,18.37884],[80.73023,18.37592],[80.7269,18.36913],[80.7315,18.35491],[80.74214,18.3411],[80.74765,18.32996],[80.74872,18.30892],[80.75772,18.30191],[80.75874,18.2993],[80.75683,18.29506],[80.75949,18.28987],[80.76186,18.28823],[80.76914,18.28763],[80.77548,18.2782],[80.78063,18.26605],[80.78983,18.26412],[80.79415,18.25963],[80.79424,18.25248],[80.79265,18.24945],[80.77678,18.24285],[80.7372,18.22209],[80.73682,18.17733],[80.74497,18.17033],[80.77544,18.16674],[80.79911,18.16817],[80.81326,18.18019],[80.81747,18.18911],[80.82407,18.19104],[80.8226,18.22411],[80.82359,18.23608],[80.83672,18.23892],[80.84343,18.23244],[80.86052,18.23199],[80.86594,18.23013],[80.87261,18.21058],[80.87097,18.20479],[80.86391,18.20265],[80.85521,18.20416],[80.85291,18.202],[80.85854,18.18645],[80.85708,18.17442],[80.8604,18.16139],[80.86016,18.14786],[80.86545,18.14145],[80.86667,18.13692],[80.89108,18.13598],[80.91417,18.14117],[80.9399,18.15543],[80.94164,18.15662],[80.94236,18.16038],[80.95162,18.16366],[80.95766,18.17355],[80.97903,18.17541],[80.97874,18.1508],[80.95551,18.12906],[80.95178,18.09012],[80.94926,18.08286],[80.95344,18.07863],[80.96733,18.0517],[80.96976,18.04385],[80.96426,18.03814],[80.96954,18.03175],[80.97326,18.02364],[80.97987,18.00196],[80.98784,17.94445],[80.99834,17.91679],[80.99934,17.90329],[80.99417,17.8809],[80.99655,17.87175],[80.99645,17.84907],[81.00323,17.83062],[81.00346,17.81952],[81.00822,17.79937],[81.01901,17.79084],[81.03176,17.78847],[81.03898,17.78415],[81.04662,17.78231],[81.07326,17.78645],[81.08583,17.79948],[81.09046,17.80241],[81.09397,17.80927],[81.09766,17.81237],[81.11179,17.82088],[81.12792,17.827],[81.14213,17.84146],[81.15728,17.85043],[81.16613,17.8576],[81.17065,17.85476],[81.19931,17.84693],[81.21561,17.83451],[81.2393,17.82602],[81.24838,17.81666],[81.26626,17.80952],[81.30497,17.80866],[81.32612,17.81395],[81.3456,17.8103],[81.34845,17.81233],[81.35411,17.81229],[81.35878,17.80948],[81.37731,17.80446],[81.38544,17.79844],[81.38656,17.79487],[81.39257,17.79416],[81.39309,17.80808],[81.3885,17.82761],[81.40326,17.84943],[81.40382,17.85301],[81.39427,17.86928],[81.39548,17.88321],[81.39927,17.89192],[81.40329,17.89579],[81.40834,17.89596],[81.4167,17.89282],[81.42145,17.88838],[81.43534,17.88082],[81.44463,17.88575],[81.44811,17.88974],[81.4475,17.89849],[81.45282,17.90756],[81.45337,17.91463],[81.44992,17.92403],[81.44911,17.93193],[81.45291,17.93637],[81.45984,17.95295],[81.47211,17.9605],[81.47609,17.96934],[81.48295,17.97682],[81.47762,17.98841],[81.48028,17.99779],[81.47991,18.00439],[81.48312,18.02705],[81.48015,18.03369],[81.48041,18.05074],[81.48264,18.05567],[81.49069,18.06284],[81.4966,18.07095],[81.49963,18.07985],[81.51286,18.09869],[81.51509,18.12276],[81.51289,18.13575],[81.51382,18.14054],[81.51832,18.14816],[81.52413,18.15081],[81.52582,18.1534],[81.526,18.16042],[81.52373,18.16589],[81.51776,18.17546],[81.50992,18.17949],[81.507,18.1862],[81.50941,18.19457],[81.51326,18.20054],[81.51552,18.21324],[81.51983,18.21766],[81.51992,18.22199],[81.52426,18.22751],[81.52593,18.23355],[81.53045,18.24028],[81.52766,18.25094],[81.52464,18.25586],[81.52524,18.25771],[81.53527,18.26838],[81.54128,18.27006],[81.55084,18.2693],[81.56433,18.2752],[81.57346,18.28264],[81.58551,18.29643],[81.5929,18.30071],[81.5976,18.30891],[81.60054,18.30969],[81.61653,18.30735],[81.62811,18.31384],[81.63965,18.31794],[81.64452,18.31818],[81.65132,18.32153],[81.66223,18.32123],[81.66217,18.32498],[81.65192,18.33254],[81.64966,18.3369],[81.65087,18.34062],[81.65914,18.34656],[81.75006,18.35275],[81.76887,18.41709],[81.79502,18.44072],[81.85621,18.4914],[81.85783,18.49477],[81.85611,18.50092],[81.85699,18.50743],[81.86825,18.52492],[81.87968,18.52524],[81.88927,18.53816],[81.8979,18.53509],[81.90901,18.53807],[81.90587,18.54516],[81.90141,18.54861],[81.90862,18.553],[81.9057,18.56307],[81.90592,18.56455],[81.91036,18.56577],[81.91069,18.57063],[81.91557,18.57281],[81.91777,18.5708],[81.92084,18.57269],[81.92678,18.56673],[81.92971,18.56613],[81.9381,18.5666],[81.94508,18.57014],[81.95057,18.57002],[81.95051,18.57485],[81.95331,18.57671],[81.95291,18.58282],[81.95607,18.58393],[81.95984,18.58948],[81.96364,18.59044],[81.9634,18.5941],[81.96085,18.59662],[81.95098,18.60095],[81.94429,18.60075],[81.93693,18.60557],[81.93506,18.60736],[81.93515,18.61265],[81.93014,18.61858],[81.90848,18.62856],[81.89459,18.62954],[81.89521,18.63282],[81.89887,18.63523],[81.89405,18.64228],[81.8982,18.65441],[81.89501,18.65445],[81.89377,18.65746],[81.89835,18.65854],[81.90089,18.66137],[81.91526,18.6513],[81.92173,18.64291],[81.93637,18.6448],[81.94303,18.64317],[81.94894,18.64371],[81.95316,18.65404],[81.95279,18.65954],[81.95508,18.66422],[81.9616,18.67028],[81.96915,18.67339],[81.96075,18.68863],[81.96294,18.68898],[81.97098,18.69864],[81.9889,18.70528],[81.99473,18.70468],[81.99859,18.70691],[81.99992,18.71108],[82.00583,18.71465],[82.00879,18.71255],[82.01674,18.7195],[82.02815,18.72121],[82.03092,18.72379],[82.04021,18.72391],[82.04812,18.7214],[82.05365,18.72361],[82.05609,18.7229],[82.05877,18.71934],[82.06277,18.71902],[82.06505,18.72007],[82.06742,18.7265],[82.07456,18.72462],[82.07653,18.72211],[82.08497,18.71859],[82.08688,18.72142],[82.08606,18.72795],[82.08836,18.72977],[82.08769,18.73113],[82.09352,18.74681],[82.09258,18.75268],[82.08874,18.76019],[82.09158,18.76573],[82.09782,18.76384],[82.10576,18.76731],[82.11101,18.76588],[82.11536,18.76901],[82.12082,18.76975],[82.13342,18.76536],[82.13362,18.76811],[82.13133,18.77011],[82.13349,18.78045],[82.13567,18.78148],[82.13842,18.77837],[82.14057,18.77846],[82.14738,18.78097],[82.15217,18.7853],[82.15736,18.78548],[82.1608,18.78992],[82.16017,18.79523],[82.16544,18.79862],[82.16453,18.80192],[82.15652,18.80433],[82.1602,18.80807],[82.16137,18.81252],[82.16615,18.81407],[82.16029,18.81987],[82.16896,18.83602],[82.16574,18.84387],[82.16747,18.85235],[82.16303,18.85415],[82.1602,18.8614],[82.16509,18.86487],[82.16737,18.87362],[82.16104,18.87713],[82.16041,18.87891],[82.16506,18.88322],[82.16932,18.88189],[82.17666,18.88709],[82.17516,18.89161],[82.17615,18.90267],[82.18109,18.90694],[82.19251,18.90751],[82.20085,18.91359],[82.2183,18.92252],[82.22728,18.91904],[82.23091,18.91967],[82.23696,18.91423],[82.24605,18.91911],[82.23911,18.96229],[82.23276,19.01794],[82.22988,19.02741],[82.20225,19.06664],[82.20472,19.0756],[82.21495,19.08599],[82.21855,19.09302],[82.21842,19.09727],[82.21414,19.09985],[82.21294,19.09798],[82.20971,19.09968],[82.20648,19.0964],[82.20491,19.09714],[82.20499,19.10115],[82.20735,19.10228],[82.20518,19.107],[82.20298,19.10811],[82.20633,19.11507],[82.20581,19.11694],[82.209,19.12052],[82.20582,19.12413],[82.19739,19.12164],[82.19058,19.1289],[82.18247,19.13169],[82.17686,19.11857],[82.17361,19.11841],[82.17033,19.12041],[82.16921,19.12805],[82.1661,19.1327],[82.16682,19.1361],[82.17574,19.13866],[82.16983,19.14525],[82.17154,19.15021],[82.17656,19.14921],[82.18093,19.15082],[82.17768,19.15251],[82.17721,19.15561],[82.1713,19.15653],[82.17018,19.16116],[82.17492,19.16288],[82.17874,19.15964],[82.17753,19.15567],[82.1822,19.15929],[82.18614,19.16635],[82.18395,19.16849],[82.17811,19.16937],[82.17604,19.17208],[82.17671,19.17347],[82.18205,19.17416],[82.18106,19.17858],[82.17514,19.18182],[82.18046,19.19168],[82.16758,19.19526],[82.16171,19.20225],[82.16582,19.21145],[82.16877,19.21294],[82.15942,19.22296],[82.15784,19.2275],[82.15843,19.26517],[82.16594,19.28769],[82.17441,19.29453],[82.17668,19.29948],[82.17917,19.31897],[82.18122,19.32339],[82.19412,19.32594],[82.19013,19.32676],[82.18801,19.32892],[82.18789,19.33476],[82.18604,19.33741],[82.17789,19.34005],[82.17866,19.34337],[82.16904,19.34598],[82.165,19.34899],[82.15413,19.3498],[82.15244,19.35274],[82.14878,19.35298],[82.14839,19.36491],[82.14725,19.36549],[82.14896,19.36953],[82.14774,19.37182],[82.15135,19.37331],[82.15327,19.37702],[82.15648,19.3773],[82.16004,19.37707],[82.16219,19.37436],[82.16661,19.37277],[82.17192,19.37262],[82.17353,19.37717],[82.17553,19.37664],[82.17883,19.37905],[82.178,19.3825],[82.18183,19.3842],[82.18099,19.38618],[82.18225,19.38874],[82.18074,19.39241],[82.18431,19.40049],[82.18208,19.40293],[82.18244,19.40943],[82.1852,19.41369],[82.18927,19.41536],[82.18944,19.42753],[82.18619,19.42665],[82.17819,19.43661],[82.17149,19.43719],[82.13524,19.43178],[82.13525,19.43038],[82.1273,19.43051],[82.12614,19.42909],[82.11353,19.44826],[82.11342,19.46036],[82.10282,19.46611],[82.10734,19.47504],[82.10796,19.49428],[82.09797,19.49893],[82.10025,19.51659],[82.07603,19.52363],[82.06542,19.51057],[82.05134,19.50816],[82.03851,19.50913],[82.02908,19.50775],[82.03156,19.51104],[82.03185,19.51453],[82.03406,19.51453],[82.03643,19.51978],[82.03729,19.52825],[82.03988,19.53018],[82.04326,19.52986],[82.04647,19.53397],[82.04772,19.53345],[82.04749,19.53965],[82.05071,19.54882],[82.04551,19.56053],[82.04949,19.56841],[82.04811,19.56913],[82.04985,19.57403],[82.04875,19.57827],[82.04465,19.58178],[82.04337,19.589],[82.04048,19.59164],[82.03988,19.59764],[82.04627,19.60728],[82.05066,19.60808],[82.05061,19.61677],[82.05571,19.6231],[82.0561,19.62596],[82.05902,19.62818],[82.05646,19.63312],[82.05701,19.63951],[82.05473,19.6405],[82.05192,19.64657],[82.05351,19.6528],[82.05551,19.65446],[82.05194,19.66095],[82.05362,19.66539],[82.05532,19.66566],[82.05187,19.68047],[82.0491,19.68493],[82.04459,19.70053],[82.04475,19.70888],[82.05102,19.71909],[82.04924,19.72872],[82.05094,19.73642],[82.0504,19.74581],[82.05564,19.74998],[82.05598,19.75297],[82.06361,19.75902],[82.06047,19.76663],[82.06623,19.78315],[82.06555,19.79066],[82.06239,19.79254],[82.06022,19.79637],[82.05636,19.79485],[82.0564,19.79302],[82.05298,19.79229],[82.04868,19.79696],[82.03105,19.79781],[82.00989,19.80422],[82.00368,19.80257],[81.99537,19.79682],[81.99191,19.79959],[81.98595,19.80109],[81.98656,19.80428],[81.96537,19.8369],[81.96813,19.85989],[81.94106,19.87288],[81.89968,19.8872],[81.86965,19.90254],[81.85316,19.91848],[81.85181,19.92315],[81.8568,19.94754],[81.84502,19.95184],[81.84528,19.95953],[81.85536,19.97228],[81.86057,20.00351],[81.86654,20.01105],[81.86503,20.0267],[81.86882,20.03191],[81.86943,20.04126],[81.87598,20.05206],[81.88191,20.04434],[81.8873,20.04402],[81.89528,20.04824],[81.90144,20.05791],[81.91606,20.07198],[81.92138,20.07997],[81.92276,20.08716],[81.92601,20.09173],[81.93387,20.09604],[81.93384,20.09821],[81.93713,20.10235],[81.93852,20.10156],[81.94638,20.10513],[81.95815,20.09785],[81.96333,20.09045],[81.97589,20.08171],[81.98386,20.07324],[81.98416,20.06803],[81.98739,20.06133],[81.99534,20.05357],[82.00337,20.05334],[82.00325,20.05513],[82.00575,20.05561],[82.01227,20.05391],[82.01768,20.049],[82.02272,20.03215],[82.02155,20.02371],[82.03256,20.01572],[82.04,20.0226],[82.03734,20.02795],[82.03804,20.03012],[82.04121,20.03096],[82.04297,20.03491],[82.04815,20.03482],[82.04782,20.03672],[82.0564,20.04174],[82.05909,20.04498],[82.05901,20.04775],[82.06219,20.04922],[82.06065,20.05113],[82.06296,20.05204],[82.06354,20.05453],[82.07047,20.05695],[82.08543,20.05072],[82.08459,20.04605],[82.0864,20.04524],[82.08946,20.03906],[82.10228,20.04004],[82.10213,20.03629],[82.10383,20.03569],[82.1032,20.03107],[82.10547,20.0306],[82.10695,20.02725],[82.11018,20.02752],[82.11652,20.02116],[82.12679,20.0148],[82.12849,20.0142],[82.13633,20.01893],[82.13981,20.01873],[82.15347,20.00756],[82.16058,20.00912],[82.17123,20.00551],[82.17125,20.00078],[82.17369,19.99996],[82.17478,19.99675],[82.17691,19.99731],[82.18033,19.99114],[82.18347,19.98959],[82.18519,19.9873],[82.18425,19.98419],[82.1931,19.9871],[82.2101,19.98625],[82.21671,19.99706],[82.22929,19.99982],[82.23712,20.00333],[82.2462,19.99535],[82.25001,19.98906],[82.25625,19.98345],[82.26917,19.97526],[82.27487,19.96304],[82.27581,19.94859],[82.30159,19.90271],[82.30312,19.88939],[82.32634,19.86161],[82.3307,19.84485],[82.34395,19.83509],[82.34889,19.83657],[82.35985,19.84699],[82.36142,19.85075],[82.36446,19.85101],[82.36463,19.85469],[82.36041,19.85731],[82.36085,19.8628],[82.3752,19.85964],[82.38365,19.86988],[82.38295,19.87386],[82.39248,19.88205],[82.39487,19.88802],[82.40178,19.88994],[82.40524,19.89426],[82.41196,19.89851],[82.41858,19.89985],[82.41802,19.90407],[82.4262,19.90546],[82.43006,19.90401],[82.43335,19.90556],[82.43711,19.90494],[82.44599,19.91019],[82.45217,19.90871],[82.46422,19.90085],[82.47228,19.90158],[82.4729,19.90703],[82.48417,19.90791],[82.49161,19.90345],[82.49734,19.90413],[82.5049,19.89972],[82.50287,19.89447],[82.50547,19.88986],[82.5118,19.88813],[82.51912,19.89097],[82.5233,19.88308],[82.53142,19.87824],[82.53491,19.88689],[82.54214,19.88348],[82.54839,19.8757],[82.55596,19.88066],[82.56104,19.87433],[82.57302,19.87755],[82.58289,19.86942],[82.59713,19.87269],[82.60343,19.86699],[82.60256,19.86305],[82.6002,19.86019],[82.59628,19.85883],[82.59687,19.8552],[82.59041,19.85245],[82.59062,19.84892],[82.58772,19.84868],[82.58863,19.84338],[82.5839,19.84358],[82.57974,19.84011],[82.57579,19.83339],[82.57604,19.82892],[82.5794,19.83032],[82.57777,19.82498],[82.57914,19.82354],[82.57853,19.81801],[82.5762,19.81474],[82.57858,19.81108],[82.57599,19.80822],[82.58469,19.80235],[82.5827,19.795],[82.58449,19.78825],[82.58177,19.78321],[82.58359,19.78164],[82.58348,19.7788],[82.59181,19.77586],[82.59489,19.77529],[82.59529,19.77847],[82.60215,19.78112],[82.60378,19.78812],[82.62713,19.79366],[82.63282,19.80119],[82.63663,19.81293],[82.64175,19.81454],[82.6476,19.81954],[82.65216,19.83217],[82.66592,19.83039],[82.67802,19.83212],[82.69325,19.83038],[82.70392,19.83201],[82.7116,19.84038],[82.71293,19.84481],[82.7114,19.85063],[82.71384,19.85264],[82.7177,19.85292],[82.71979,19.85685],[82.71959,19.86743],[82.72173,19.87292],[82.72458,19.87554],[82.71405,19.87781],[82.71355,19.88344],[82.70741,19.90204],[82.70909,19.9056],[82.70737,19.91299],[82.71276,19.91852],[82.71118,19.92545],[82.71307,19.93846],[82.72049,19.94829],[82.71552,19.95363],[82.71472,19.95767],[82.71752,19.96555],[82.71814,19.98914],[82.71575,19.99227],[82.71545,19.99593],[82.70727,19.99905],[82.69958,19.99757],[82.69267,20.0],[82.67012,20.00108],[82.65198,20.00589],[82.64271,20.00366],[82.64298,20.00641],[82.64151,20.00671],[82.6333,20.00487],[82.62114,19.9923],[82.60502,19.99014],[82.59573,19.99157],[82.59034,19.99373],[82.58328,20.00318],[82.57734,20.00672],[82.55011,20.01777],[82.53445,20.01785],[82.53318,20.0153],[82.50911,20.01816],[82.49373,20.02437],[82.47857,20.03817],[82.47001,20.03591],[82.46067,20.0419],[82.45753,20.03997],[82.44801,20.04066],[82.44052,20.04318],[82.43003,20.04961],[82.41682,20.05215],[82.40954,20.05179],[82.39829,20.05818],[82.39839,20.06269],[82.39583,20.06897],[82.40149,20.08102],[82.39976,20.0898],[82.40143,20.09607],[82.39818,20.10169],[82.39767,20.12377],[82.39423,20.12992],[82.39315,20.13761],[82.3858,20.14644],[82.3872,20.14905],[82.39415,20.15263],[82.39374,20.15704],[82.39001,20.1637],[82.39491,20.17012],[82.40471,20.17598],[82.40453,20.17787],[82.40754,20.18123],[82.41158,20.18149],[82.41408,20.18986],[82.41347,20.19935],[82.42062,20.20492],[82.42048,20.21308],[82.42247,20.22082],[82.41507,20.22681],[82.41063,20.24265],[82.41123,20.24538],[82.42233,20.24797],[82.41778,20.25232],[82.41601,20.25728],[82.41139,20.26011],[82.41234,20.26704],[82.41596,20.27205],[82.42503,20.27522],[82.43287,20.28181],[82.43557,20.28548],[82.43781,20.29441],[82.42998,20.30099],[82.43077,20.31402],[82.42104,20.32411],[82.41737,20.32425],[82.41295,20.328],[82.40887,20.32778],[82.40916,20.33253],[82.40151,20.33758],[82.40038,20.34158],[82.40627,20.35299],[82.40505,20.35804],[82.40915,20.36293],[82.4112,20.37129],[82.41805,20.38211],[82.41769,20.38772],[82.42117,20.39285],[82.41661,20.40765],[82.43201,20.41664],[82.42966,20.42787],[82.43786,20.43439],[82.43398,20.44567],[82.42573,20.44533],[82.42706,20.46906],[82.41763,20.48174],[82.4158,20.48151],[82.41079,20.46813],[82.40798,20.46733],[82.40855,20.46324],[82.40427,20.46005],[82.40191,20.46193],[82.39798,20.46192],[82.39606,20.45957],[82.39478,20.46229],[82.39764,20.46484],[82.39784,20.47295],[82.39608,20.47766],[82.39203,20.47869],[82.39374,20.4825],[82.39316,20.48643],[82.3906,20.48619],[82.39109,20.49243],[82.38834,20.49536],[82.38953,20.49801],[82.388,20.51073],[82.3897,20.5176],[82.37825,20.52203],[82.36806,20.52386],[82.35765,20.52933],[82.34861,20.54667],[82.3357,20.5551],[82.33223,20.56191],[82.33488,20.5646],[82.33337,20.56855],[82.34335,20.57152],[82.34836,20.5764],[82.35064,20.58127],[82.34679,20.5906],[82.34408,20.59289],[82.34374,20.59577],[82.3457,20.59656],[82.34485,20.59848],[82.34713,20.60254],[82.35256,20.60298],[82.3559,20.60925],[82.35865,20.60848],[82.36226,20.60991],[82.36292,20.61412],[82.36543,20.61588],[82.36452,20.62218],[82.37095,20.62599],[82.3765,20.63241],[82.37467,20.63907],[82.36848,20.64923],[82.36997,20.65556],[82.36875,20.65959],[82.37382,20.6674],[82.36705,20.68019],[82.36034,20.68356],[82.355,20.69319],[82.35041,20.70634],[82.35076,20.71728],[82.35401,20.71966],[82.34556,20.73159],[82.35355,20.73592],[82.34171,20.76776],[82.34364,20.77095],[82.34386,20.79223],[82.34611,20.79763],[82.34202,20.80472],[82.34317,20.80893],[82.34112,20.81249],[82.34102,20.82083],[82.33934,20.82577],[82.34157,20.83283],[82.33953,20.84684],[82.34446,20.85637],[82.34676,20.87704],[82.35119,20.88974],[82.36376,20.88849],[82.35947,20.87381],[82.36461,20.87067],[82.37592,20.86798],[82.38505,20.87409],[82.38967,20.87532],[82.38924,20.87409],[82.39557,20.87003],[82.40545,20.87019],[82.40751,20.86576],[82.40685,20.85928],[82.41287,20.85086],[82.40995,20.8456],[82.4101,20.84229],[82.41673,20.83866],[82.41995,20.83156],[82.42731,20.83155],[82.43934,20.83564],[82.44353,20.83437],[82.44367,20.831],[82.44728,20.82996],[82.44902,20.83101],[82.45437,20.82765],[82.46449,20.829],[82.46878,20.83518],[82.46539,20.84295],[82.47044,20.84808],[82.48108,20.85131],[82.48668,20.86165],[82.48598,20.87028],[82.49107,20.88063],[82.48699,20.90504],[82.48874,20.9094],[82.50443,20.91959],[82.51594,20.92176],[82.52711,20.934],[82.54303,20.93661],[82.55915,20.94794],[82.57138,20.97226],[82.58051,20.97973],[82.58878,20.99355],[82.61136,21.01297],[82.61333,21.02285],[82.62879,21.03804],[82.62979,21.04094],[82.6261,21.04854],[82.61788,21.05468],[82.61725,21.05986],[82.61186,21.06919],[82.61198,21.07469],[82.61651,21.07918],[82.62964,21.07882],[82.63311,21.08319],[82.63389,21.08776],[82.63733,21.09319],[82.64582,21.1],[82.64991,21.10647],[82.64845,21.10956],[82.64215,21.11122],[82.63974,21.11574],[82.64191,21.12007],[82.65276,21.12871],[82.65198,21.13325],[82.64395,21.13487],[82.63727,21.14474],[82.63722,21.15073],[82.64061,21.15487],[82.65549,21.15714],[82.66405,21.155],[82.68415,21.16106],[82.68554,21.16497],[82.693,21.16574],[82.69708,21.1642],[82.69573,21.16053],[82.69983,21.1577],[82.70526,21.15808],[82.71067,21.16085],[82.72119,21.15767],[82.72115,21.16585],[82.73683,21.16533],[82.74057,21.16347],[82.75001,21.16411],[82.75591,21.16643],[82.7575,21.16355],[82.7601,21.1652],[82.76298,21.16262],[82.76334,21.16409],[82.76581,21.16278],[82.76504,21.16173],[82.76782,21.16056],[82.76713,21.15901],[82.77435,21.15413],[82.7794,21.15358],[82.78077,21.14967],[82.78564,21.14487],[82.79368,21.14255],[82.79666,21.14865],[82.79622,21.15065],[82.80032,21.15595],[82.80502,21.15592],[82.81197,21.16107],[82.826,21.16368],[82.82802,21.16544],[82.83126,21.16467],[82.84276,21.16772],[82.8471,21.16653],[82.85088,21.16863],[82.8501,21.16161],[82.85246,21.15954],[82.8556,21.16147],[82.85959,21.15977],[82.86643,21.16282],[82.8717,21.15748],[82.87255,21.16238],[82.87636,21.16355],[82.87852,21.15858],[82.87818,21.15345],[82.88218,21.14843],[82.89393,21.15637],[82.89548,21.16098],[82.90211,21.16699],[82.91022,21.1652],[82.91498,21.16196],[82.92094,21.16347],[82.93225,21.16308],[82.93387,21.16399],[82.93497,21.16833],[82.9377,21.16985],[82.93996,21.16635],[82.93998,21.16093],[82.94768,21.16178],[82.94757,21.16453],[82.94286,21.17164],[82.94682,21.1755],[82.94384,21.17785],[82.94903,21.1839],[82.95916,21.18888],[82.96099,21.19266],[82.96493,21.19327],[82.96743,21.18307],[82.96556,21.17533],[82.96739,21.17484],[82.97001,21.17886],[82.97534,21.18215],[82.97787,21.18258],[82.98325,21.18006],[82.98809,21.18281],[82.99,21.18183],[82.98056,21.17003],[82.98607,21.16811],[82.99319,21.17111],[82.99652,21.16968],[83.00135,21.17057],[83.00376,21.16693],[82.99332,21.16189],[82.9924,21.15856],[82.98576,21.15104],[82.99032,21.13986],[82.99373,21.14084],[82.99545,21.13853],[82.99936,21.13891],[83.00155,21.13687],[83.00458,21.13696],[83.01013,21.14257],[83.01005,21.14474],[83.016,21.14631],[83.0203,21.14346],[83.02304,21.13656],[83.02891,21.13513],[83.03338,21.1373],[83.03482,21.13663],[83.03383,21.13193],[83.03865,21.13173],[83.04525,21.12401],[83.05233,21.12627],[83.05603,21.12231],[83.06611,21.12076],[83.06851,21.11685],[83.075,21.11365],[83.07725,21.11407],[83.07781,21.11195],[83.0849,21.11295],[83.09011,21.11113],[83.09442,21.11328],[83.09709,21.11016],[83.10128,21.10999],[83.11354,21.11266],[83.1216,21.1099],[83.1241,21.1067],[83.13149,21.10581],[83.13867,21.10951],[83.14065,21.11234],[83.13893,21.11333],[83.14743,21.11856],[83.15733,21.13107],[83.16464,21.13523],[83.16691,21.13879],[83.17104,21.13617],[83.17425,21.13673],[83.17769,21.13511],[83.19255,21.13951],[83.1982,21.14583],[83.19656,21.15143],[83.19836,21.15346],[83.19852,21.16426],[83.20462,21.1657],[83.20284,21.17764],[83.20511,21.17943],[83.20933,21.18945],[83.21462,21.19479],[83.21053,21.20504],[83.21275,21.2102],[83.21706,21.21331],[83.21857,21.22089],[83.21758,21.22597],[83.2189,21.22861],[83.22215,21.22872],[83.21765,21.25485],[83.22167,21.26007],[83.22295,21.26577],[83.23191,21.27272],[83.23796,21.26961],[83.23933,21.27363],[83.24627,21.28116],[83.25059,21.28238],[83.25583,21.28212],[83.26777,21.27756],[83.27095,21.27257],[83.27491,21.28581],[83.27859,21.28932],[83.27927,21.29496],[83.27629,21.3023],[83.27205,21.30188],[83.26883,21.30507],[83.26208,21.30783],[83.25734,21.3205],[83.26283,21.33027],[83.26653,21.33086],[83.25769,21.3336],[83.2578,21.33555],[83.26868,21.34549],[83.27469,21.36383],[83.27424,21.37729],[83.26873,21.37859],[83.28405,21.38033],[83.28606,21.37761],[83.31137,21.37084],[83.32297,21.3624],[83.34385,21.35836],[83.34718,21.35629],[83.34772,21.35375],[83.35461,21.35429],[83.36686,21.34936],[83.36977,21.34671],[83.37888,21.34455],[83.38549,21.3463],[83.39183,21.34264],[83.40688,21.35163],[83.40802,21.36137],[83.40062,21.36391],[83.39687,21.36756],[83.40051,21.37588],[83.3972,21.38803],[83.39893,21.40534],[83.39346,21.40771],[83.38529,21.41537],[83.37815,21.42683],[83.37587,21.42806],[83.37428,21.43498],[83.37124,21.43551],[83.37362,21.44239],[83.36686,21.44555],[83.35437,21.44807],[83.35147,21.46003],[83.34655,21.4716],[83.34574,21.47962],[83.34706,21.48898],[83.34061,21.49517],[83.33788,21.5021],[83.34304,21.50965],[83.34962,21.51265],[83.35204,21.52115],[83.35709,21.52808],[83.35866,21.53824],[83.3614,21.53916],[83.36014,21.54285],[83.36427,21.545],[83.36451,21.54704],[83.3662,21.54663],[83.36766,21.54932],[83.36598,21.55081],[83.36999,21.55252],[83.36978,21.55646],[83.37316,21.55816],[83.37187,21.5596],[83.37033,21.55875],[83.37186,21.56442],[83.3693,21.56668],[83.36989,21.56806],[83.36748,21.56874],[83.36775,21.57209],[83.36497,21.57608],[83.36895,21.585],[83.36694,21.58666],[83.36893,21.58898],[83.36774,21.59172],[83.37051,21.59126],[83.36966,21.60051],[83.38014,21.60813],[83.38304,21.61426],[83.38268,21.62013],[83.38943,21.61769],[83.39246,21.62729],[83.39559,21.62709],[83.40347,21.63094],[83.40907,21.6372],[83.41504,21.6408],[83.42757,21.64352],[83.42884,21.64723],[83.44265,21.65541],[83.45076,21.65075],[83.44438,21.63929],[83.44292,21.63142],[83.44463,21.63043],[83.44397,21.624],[83.45247,21.62241],[83.45227,21.61287],[83.45506,21.61241],[83.45611,21.61],[83.4606,21.6078],[83.46627,21.60955],[83.46986,21.62154],[83.47349,21.62737],[83.47356,21.63249],[83.48619,21.63009],[83.48961,21.63146],[83.48955,21.63487],[83.49193,21.63818],[83.48714,21.6399],[83.48661,21.64413],[83.46976,21.64873],[83.44813,21.65754],[83.44248,21.66129],[83.43127,21.67421],[83.41869,21.68065],[83.42216,21.68705],[83.42385,21.68721],[83.42287,21.68884],[83.42483,21.69248],[83.42882,21.69462],[83.43165,21.69991],[83.44077,21.6989],[83.4517,21.69542],[83.45948,21.69855],[83.46106,21.70909],[83.47336,21.72064],[83.47784,21.73054],[83.4813,21.73113],[83.48018,21.73396],[83.4852,21.74517],[83.48932,21.74539],[83.48744,21.74895],[83.47605,21.75238],[83.48218,21.7656],[83.47617,21.78078],[83.46939,21.78756],[83.47279,21.78747],[83.47547,21.79126],[83.47761,21.79083],[83.48365,21.79419],[83.48712,21.80036],[83.4878,21.80731],[83.49374,21.813],[83.49291,21.81837],[83.50593,21.80796],[83.52259,21.79945],[83.52587,21.7983],[83.5287,21.79955],[83.54104,21.79931],[83.54273,21.80573],[83.53741,21.81308],[83.5401,21.82204],[83.53119,21.82625],[83.53187,21.83096],[83.54163,21.83826],[83.55177,21.84071],[83.56318,21.8374],[83.56848,21.83317],[83.57691,21.8313],[83.57885,21.83245],[83.57791,21.83752],[83.58145,21.83817],[83.58708,21.84352],[83.59089,21.8511],[83.57421,21.87511],[83.57644,21.88237],[83.58081,21.88327],[83.57783,21.8892],[83.58155,21.88985],[83.58708,21.89453],[83.58523,21.89964],[83.58597,21.90213],[83.5947,21.90343],[83.597,21.906],[83.59848,21.90497],[83.60294,21.90858],[83.60592,21.91412],[83.60157,21.91806],[83.59987,21.92207],[83.59036,21.9297],[83.55672,21.93535],[83.55915,21.94505],[83.56169,21.94801],[83.54204,21.96211],[83.53901,21.96599],[83.53716,21.97796],[83.54355,21.98762],[83.54331,21.99385],[83.55615,22.00782],[83.53979,22.02167],[83.53647,22.0296],[83.53672,22.04348],[83.54374,22.05697],[83.54781,22.05915],[83.5469,22.057],[83.55035,22.05335],[83.55398,22.05292],[83.55429,22.05437],[83.55737,22.05371],[83.55822,22.05485],[83.58178,22.05458],[83.58307,22.05023],[83.58671,22.04873],[83.58988,22.05445],[83.59617,22.05789],[83.60152,22.05877],[83.6034,22.06383],[83.60642,22.06659],[83.59358,22.07421],[83.57694,22.09032],[83.56284,22.0962],[83.56181,22.09892],[83.56435,22.106],[83.57592,22.1209],[83.58321,22.12507],[83.59369,22.14029],[83.60815,22.15437],[83.61333,22.1777],[83.62725,22.20378],[83.64951,22.22334],[83.65531,22.22004],[83.66447,22.22879],[83.66577,22.23273],[83.69105,22.24273],[83.69147,22.24412],[83.70516,22.24685],[83.71306,22.24272],[83.7212,22.24304],[83.72821,22.24134],[83.72949,22.24282],[83.74436,22.23963],[83.75775,22.24034],[83.75768,22.24714],[83.75971,22.25121],[83.76645,22.25563],[83.77289,22.25571],[83.77558,22.25734],[83.77673,22.2613],[83.77524,22.26166],[83.77472,22.26477],[83.77679,22.26627],[83.77665,22.26985],[83.77975,22.27383],[83.79223,22.27648],[83.79604,22.28247],[83.79485,22.28595],[83.80278,22.29015],[83.80926,22.28895],[83.81691,22.29088],[83.81906,22.28957],[83.81985,22.29129],[83.82636,22.29282],[83.82727,22.29387],[83.82285,22.30128],[83.826,22.3055],[83.82198,22.31153],[83.82815,22.31752],[83.83056,22.3234],[83.83524,22.32228],[83.85029,22.32523],[83.85288,22.32712],[83.85493,22.33453],[83.85431,22.33764],[83.86024,22.33875],[83.86041,22.34047],[83.86399,22.34163],[83.86426,22.34328],[83.86932,22.34125],[83.87207,22.33778],[83.87921,22.33538],[83.89033,22.33655],[83.90132,22.33936],[83.90252,22.34659],[83.90652,22.35129],[83.92328,22.35841],[83.93269,22.35396],[83.94329,22.35471],[83.94822,22.35632],[83.95499,22.36166],[83.97025,22.3588],[83.98253,22.36733],[83.99667,22.37199],[84.00578,22.37368],[84.01029,22.37158],[84.00638,22.3822],[84.01318,22.39427],[84.01339,22.39742],[84.02006,22.40856],[84.02347,22.40945],[84.02468,22.4155],[84.03027,22.42008],[84.03034,22.42664],[84.03879,22.4297],[84.04172,22.43499],[84.04725,22.43823],[84.04489,22.45286],[84.0464,22.45535],[84.04542,22.4626],[84.04725,22.46922],[84.04075,22.4731],[84.0266,22.47532],[84.01742,22.48925],[84.00287,22.49332],[83.99785,22.49762],[83.98023,22.50222],[83.98048,22.50757],[83.97466,22.51189],[83.97741,22.51587],[83.98099,22.51615],[83.98091,22.52155],[83.98673,22.52554],[83.99489,22.5281],[83.99761,22.53103],[84.00292,22.53033],[84.00439,22.52757],[84.00768,22.52612],[84.01233,22.52753],[84.0097,22.52842],[84.01002,22.53168],[84.00285,22.5459],[84.00765,22.55246],[84.00951,22.57305],[84.02417,22.58581],[84.02443,22.5918],[84.03422,22.59231],[84.04183,22.59537],[84.04885,22.5953],[84.05413,22.59811],[84.05766,22.60577],[84.06375,22.60859],[84.0696,22.62043],[84.08402,22.63812],[84.09343,22.63494],[84.11081,22.63975],[84.12348,22.63705],[84.13979,22.63823],[84.15247,22.6368],[84.15627,22.63853],[84.16328,22.64543],[84.18803,22.65523],[84.20019,22.66646],[84.2079,22.66838],[84.21308,22.66771],[84.21319,22.66576],[84.21754,22.66582],[84.22412,22.66989],[84.23321,22.67924],[84.23475,22.68611],[84.2382,22.69145],[84.23293,22.70033],[84.23413,22.71054],[84.23209,22.72555],[84.22985,22.72807],[84.23127,22.73996],[84.25557,22.7601],[84.25965,22.76699],[84.27595,22.76871],[84.28534,22.76323],[84.2874,22.76401],[84.29213,22.7747],[84.29114,22.78338],[84.29794,22.79427],[84.29934,22.79589],[84.30578,22.79707],[84.3075,22.80077],[84.3151,22.80065],[84.31573,22.81192],[84.32243,22.82102],[84.32533,22.83498],[84.3252,22.83765],[84.32174,22.83774],[84.32422,22.85094],[84.33478,22.86155],[84.34423,22.85898],[84.34924,22.86098],[84.35199,22.86499],[84.35945,22.86052],[84.3697,22.86358],[84.3726,22.86532],[84.37336,22.87159],[84.38051,22.87667],[84.37919,22.88377],[84.38261,22.89025],[84.38289,22.89526],[84.37568,22.90069],[84.37519,22.9045],[84.37754,22.90963],[84.38136,22.91268],[84.38789,22.91421],[84.39283,22.91943],[84.39555,22.92873],[84.39368,22.94245],[84.38457,22.95068],[84.38149,22.96651],[84.37532,22.97689],[84.3729,22.97838],[84.365,22.97423],[84.35107,22.97812],[84.34376,22.97614],[84.33955,22.97999],[84.32811,22.9819],[84.31928,22.97721],[84.31898,22.97361],[84.31291,22.97186],[84.30763,22.96743],[84.29055,22.96395],[84.28109,22.96369],[84.27385,22.98209],[84.27417,22.98428],[84.27607,22.98421],[84.27853,22.98704],[84.27671,22.99067],[84.27853,22.99288],[84.27702,22.99339],[84.27422,22.9902],[84.27055,22.98922],[84.26713,22.9832],[84.2629,22.98084],[84.2611,22.97715],[84.25302,22.97293],[84.24881,22.97382],[84.24104,22.98361],[84.23393,22.98242],[84.23035,22.98333],[84.21918,22.97913],[84.21656,22.98904],[84.20768,22.9999],[84.20085,23.00534],[84.20345,23.01446],[84.20167,23.02107],[84.19674,23.02421],[84.1858,23.02709],[84.18024,23.02444],[84.17812,23.01203],[84.17524,23.00954],[84.17869,23.00055],[84.175,22.99711],[84.1761,22.98492],[84.17808,22.98112],[84.17551,22.97601],[84.17178,22.97076],[84.14925,22.96567],[84.1463,22.97707],[84.14732,22.98801],[84.13818,23.00402],[84.1402,23.00957],[84.13395,23.02021],[84.13122,23.02235],[84.12555,23.03648],[84.12697,23.04419],[84.12473,23.04785],[84.12689,23.05782],[84.13389,23.06863],[84.13346,23.08309],[84.12617,23.08933],[84.12211,23.08797],[84.11574,23.09003],[84.11297,23.09688],[84.10898,23.0983],[84.10566,23.10509],[84.09323,23.11045],[84.09317,23.11278],[84.08205,23.11215],[84.07241,23.109],[84.0664,23.11067],[84.06259,23.11341],[84.0583,23.12617],[84.04921,23.13451],[84.04485,23.1348],[84.03747,23.13988],[84.03669,23.14817],[84.03248,23.15415],[84.03239,23.16048],[84.04294,23.18265],[84.05653,23.19317],[84.05843,23.19994],[84.0622,23.20261],[84.06317,23.20565],[84.05576,23.22028],[84.05908,23.23599],[84.05383,23.24375],[84.05373,23.2473],[84.05985,23.26879],[84.0646,23.27472],[84.06248,23.28843],[84.06812,23.29378],[84.06219,23.30766],[84.07428,23.32917],[84.07482,23.33312],[84.06872,23.33824],[84.06658,23.34405],[84.06016,23.3502],[84.05433,23.3524],[84.05205,23.35928],[84.0535,23.36482],[84.05236,23.36726],[84.04822,23.3697],[84.05084,23.37477],[84.03642,23.37852],[84.02386,23.3765],[84.0163,23.36961],[84.01189,23.35447],[84.0048,23.35401],[84.0026,23.35735],[83.98028,23.36459],[83.98026,23.36811],[83.97075,23.37914],[83.96882,23.38341],[83.96994,23.38383],[83.96795,23.38541],[83.96914,23.38667],[83.967,23.38758],[83.96848,23.38919],[83.9675,23.39101],[83.96889,23.39082],[83.9688,23.39349],[83.97284,23.39989],[83.97148,23.40088],[83.97215,23.40267],[83.97509,23.40313],[83.97719,23.41087],[83.98016,23.41266],[83.97814,23.41415],[83.9809,23.41929],[83.98048,23.42152],[83.98576,23.42583],[83.9837,23.42627],[83.98364,23.42853],[83.98616,23.43057],[83.98332,23.43139],[83.98531,23.43504],[83.97869,23.44737],[83.97483,23.45124],[83.97394,23.45985],[83.98482,23.46571],[83.98891,23.47874],[83.99852,23.48678],[84.00113,23.4937],[84.00078,23.49693],[84.00736,23.49768],[84.01465,23.5035],[84.01516,23.509],[84.01858,23.5174],[84.01747,23.52261],[84.02159,23.52767],[84.02084,23.53097],[84.02806,23.5456],[84.02654,23.55295],[84.02438,23.55556],[84.02644,23.55677],[84.02954,23.5664],[84.02805,23.57777],[84.02977,23.58576],[84.02815,23.59371],[84.03006,23.6],[84.02851,23.60233],[84.02086,23.60442],[84.01673,23.60842],[84.01109,23.62061],[84.00771,23.6223],[84.0087,23.62785],[84.01393,23.63021],[84.01659,23.63438],[83.99714,23.63448],[83.98736,23.63229],[83.98065,23.63365],[83.97951,23.62872],[83.98045,23.62489],[83.9755,23.62571],[83.97349,23.62401],[83.97275,23.62592],[83.96935,23.62669],[83.96134,23.62518],[83.94775,23.6267],[83.94252,23.62599],[83.93191,23.62041],[83.93056,23.61826],[83.93065,23.61124],[83.93382,23.60736],[83.93299,23.60075],[83.93912,23.59031],[83.93803,23.58425],[83.9398,23.57086],[83.93769,23.56899],[83.91879,23.57636],[83.90857,23.57625],[83.90017,23.58015],[83.89939,23.58241],[83.89445,23.58265],[83.88806,23.57876],[83.85305,23.58705],[83.84468,23.58665],[83.8386,23.58939],[83.82587,23.59071],[83.81537,23.5962],[83.81205,23.58895],[83.80722,23.58747],[83.80542,23.58882],[83.80438,23.59537],[83.80064,23.60202],[83.79452,23.6051],[83.78987,23.60456],[83.77966,23.60711],[83.77248,23.6109],[83.77637,23.61759],[83.77514,23.62194],[83.77235,23.62378],[83.75945,23.62601],[83.75192,23.63867],[83.75321,23.64339],[83.76058,23.6479],[83.76112,23.65146],[83.74623,23.66299],[83.73885,23.66677],[83.72286,23.68586],[83.72302,23.68876],[83.73212,23.695],[83.73507,23.70031],[83.74212,23.70383],[83.74607,23.71949],[83.73948,23.73432],[83.73774,23.76049],[83.73411,23.7647],[83.72431,23.76872],[83.72159,23.77149],[83.72262,23.78658],[83.71266,23.80068],[83.70514,23.80387],[83.70439,23.80661],[83.70764,23.81741],[83.70535,23.82076],[83.70259,23.82297],[83.69149,23.82642],[83.68873,23.82558],[83.68528,23.82033],[83.68282,23.81938],[83.67869,23.82168],[83.67434,23.82717],[83.66449,23.82766],[83.66335,23.83119],[83.66849,23.83666],[83.66656,23.84428],[83.65949,23.84926],[83.65464,23.8499],[83.64338,23.84693],[83.61809,23.85549],[83.61029,23.85397],[83.5897,23.86331],[83.58242,23.86351],[83.57466,23.86121],[83.57119,23.86214],[83.56894,23.86618],[83.56949,23.86908],[83.58353,23.87778],[83.58603,23.88261],[83.58576,23.8864],[83.57633,23.89291],[83.57043,23.89445],[83.55915,23.8929],[83.55344,23.89807],[83.54692,23.9143],[83.54924,23.93102],[83.54739,23.93754],[83.53536,23.95246],[83.52649,23.9605],[83.5226,23.97033],[83.5153,23.98069],[83.51549,23.98999],[83.5138,23.99635],[83.52293,24.00636],[83.5239,24.01138],[83.51617,24.02245],[83.51594,24.02696],[83.50826,24.03116],[83.49975,24.03256],[83.49353,24.03631],[83.47781,24.04119],[83.45289,24.04199],[83.44487,24.05282],[83.43777,24.05817],[83.43773,24.07622],[83.43225,24.08598],[83.42671,24.08648],[83.42122,24.08272],[83.40664,24.08044],[83.40111,24.09203],[83.38829,24.09996],[83.36424,24.10329],[83.35449,24.1002],[83.34934,24.0963],[83.34603,24.09744]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"23","area_level":"State","area_name":"Madhya Pradesh","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.17214,22.41875],[74.16758,22.41673],[74.16398,22.41567],[74.16292,22.4157],[74.16149,22.41414],[74.16068,22.41363],[74.15918,22.41448],[74.15811,22.41428],[74.15722,22.41342],[74.15712,22.41233],[74.15737,22.41164],[74.15958,22.40959],[74.16351,22.40668],[74.16483,22.40614],[74.16504,22.40587],[74.16497,22.40358],[74.16588,22.39992],[74.16504,22.398],[74.16515,22.39725],[74.16622,22.39649],[74.1674,22.39636],[74.16773,22.39615],[74.1696,22.39389],[74.17033,22.39396],[74.17092,22.3936],[74.17412,22.391],[74.17581,22.39031],[74.17686,22.38967],[74.17889,22.38795],[74.17916,22.38799],[74.17955,22.38874],[74.17925,22.39103],[74.17986,22.39241],[74.17962,22.39306],[74.17951,22.39527],[74.17966,22.39684],[74.17948,22.39732],[74.17861,22.39741],[74.17754,22.39786],[74.17673,22.39865],[74.17556,22.40094],[74.17545,22.40156],[74.17569,22.40372],[74.17633,22.40488],[74.17637,22.40554],[74.17616,22.40609],[74.17498,22.40715],[74.17475,22.40814],[74.17475,22.41009],[74.17552,22.41382],[74.17523,22.41806],[74.17476,22.41831],[74.17395,22.41827],[74.17321,22.41871],[74.17214,22.41875]]],[[[78.49665,25.15368],[78.49866,25.1567],[78.50033,25.15848],[78.50306,25.1632],[78.50535,25.16491],[78.50815,25.16579],[78.51028,25.16827],[78.51298,25.17024],[78.5209,25.17356],[78.52723,25.17718],[78.52963,25.18023],[78.51954,25.18146],[78.51559,25.1809],[78.50842,25.17793],[78.50449,25.17458],[78.5013,25.17063],[78.49992,25.16737],[78.49546,25.1614],[78.49429,25.15779],[78.49295,25.15532],[78.49305,25.15342],[78.49426,25.15265],[78.49665,25.15368]]],[[[78.37276,26.86336],[78.36688,26.86786],[78.35832,26.86956],[78.34232,26.86643],[78.33149,26.86249],[78.30424,26.86245],[78.28726,26.85676],[78.27946,26.85222],[78.27312,26.84294],[78.27467,26.82324],[78.27246,26.81593],[78.26791,26.81358],[78.25824,26.81478],[78.24207,26.82503],[78.22525,26.83065],[78.21847,26.8292],[78.20211,26.82138],[78.17984,26.82553],[78.17353,26.82447],[78.16872,26.82039],[78.16727,26.81541],[78.16838,26.81283],[78.18047,26.80414],[78.18664,26.79609],[78.18761,26.78968],[78.18347,26.78365],[78.15716,26.78379],[78.13284,26.79515],[78.12058,26.79659],[78.11326,26.79484],[78.10743,26.79078],[78.10216,26.78149],[78.10197,26.76764],[78.10609,26.76017],[78.11689,26.75662],[78.12169,26.75328],[78.12371,26.75],[78.12353,26.74688],[78.1184,26.74216],[78.11164,26.74064],[78.10808,26.73751],[78.10137,26.73709],[78.09593,26.7278],[78.09214,26.71495],[78.0956,26.69516],[78.09574,26.68123],[78.09444,26.67815],[78.08973,26.67447],[78.07879,26.67044],[78.07409,26.6706],[78.05601,26.68363],[78.03437,26.68703],[78.03164,26.68631],[78.01796,26.6925],[78.00043,26.69486],[77.99604,26.69257],[77.98476,26.67481],[77.98012,26.67121],[77.95318,26.65894],[77.94303,26.65819],[77.93522,26.66024],[77.91554,26.66102],[77.90426,26.65906],[77.89953,26.65642],[77.89752,26.65285],[77.89811,26.62315],[77.8967,26.61706],[77.89428,26.61471],[77.88577,26.61244],[77.85881,26.6136],[77.85066,26.61254],[77.83578,26.60615],[77.83206,26.59891],[77.82733,26.59605],[77.82704,26.59179],[77.83378,26.58238],[77.83568,26.57603],[77.83251,26.56147],[77.82201,26.54958],[77.81074,26.54719],[77.78371,26.55204],[77.76781,26.54758],[77.75748,26.53984],[77.74591,26.53875],[77.74029,26.52725],[77.73811,26.51421],[77.73374,26.5078],[77.72701,26.50232],[77.71331,26.49827],[77.69129,26.49964],[77.68024,26.50426],[77.67372,26.50283],[77.65984,26.49112],[77.65058,26.4879],[77.63332,26.47869],[77.62747,26.47242],[77.62297,26.46142],[77.61348,26.45272],[77.58903,26.44648],[77.57147,26.43645],[77.5624,26.43684],[77.55867,26.43518],[77.54633,26.41612],[77.53838,26.4113],[77.52146,26.40721],[77.48651,26.41082],[77.45968,26.40378],[77.44874,26.40461],[77.43735,26.40328],[77.43506,26.40004],[77.43505,26.39438],[77.44622,26.37528],[77.44856,26.36753],[77.44468,26.36176],[77.44095,26.36081],[77.41395,26.36344],[77.39705,26.36078],[77.3904,26.35652],[77.37562,26.36557],[77.36837,26.36415],[77.35599,26.35503],[77.34212,26.35181],[77.33525,26.34134],[77.33059,26.34387],[77.32897,26.34255],[77.32139,26.334],[77.31464,26.31872],[77.31762,26.31746],[77.3166,26.31147],[77.29843,26.29102],[77.27898,26.27596],[77.27105,26.26758],[77.25177,26.25978],[77.23089,26.24598],[77.2168,26.24004],[77.21284,26.23377],[77.20389,26.22987],[77.19993,26.22981],[77.17519,26.23892],[77.17145,26.23795],[77.17013,26.23349],[77.16619,26.23226],[77.15254,26.23189],[77.14172,26.23437],[77.13604,26.23345],[77.11643,26.22058],[77.11291,26.21398],[77.11198,26.20235],[77.10596,26.19614],[77.10093,26.18656],[77.09675,26.18324],[77.08226,26.17906],[77.05448,26.17957],[77.02914,26.17119],[77.01525,26.15704],[77.00631,26.15102],[77.00156,26.14246],[77.00288,26.138],[77.00215,26.13399],[76.99761,26.12907],[76.98712,26.12804],[76.97748,26.12486],[76.94766,26.10274],[76.94077,26.10053],[76.93653,26.10177],[76.91811,26.09876],[76.89978,26.0925],[76.90025,26.08708],[76.89772,26.07425],[76.89416,26.06724],[76.88973,26.06266],[76.88485,26.04804],[76.87581,26.04315],[76.86631,26.03436],[76.8568,26.03473],[76.84078,26.02649],[76.83276,26.01871],[76.8262,26.00739],[76.81925,26.00348],[76.80678,25.98981],[76.80252,25.97822],[76.80358,25.97453],[76.80831,25.97324],[76.80745,25.96537],[76.78903,25.94109],[76.78141,25.93845],[76.768,25.93765],[76.74886,25.94047],[76.7464,25.93768],[76.74659,25.9341],[76.75179,25.92817],[76.75765,25.92663],[76.75662,25.92101],[76.75273,25.91734],[76.73323,25.90632],[76.71633,25.90116],[76.70725,25.90051],[76.6872,25.90786],[76.67011,25.91072],[76.64026,25.90761],[76.63575,25.905],[76.63062,25.89914],[76.6261,25.87573],[76.62322,25.87055],[76.61448,25.86844],[76.59409,25.87527],[76.58928,25.87498],[76.58277,25.87105],[76.55611,25.8349],[76.53473,25.81917],[76.52101,25.7936],[76.51548,25.77644],[76.51789,25.76713],[76.51726,25.75523],[76.52088,25.75211],[76.52522,25.74175],[76.52295,25.73746],[76.52377,25.72983],[76.52032,25.72875],[76.5014,25.72997],[76.49109,25.72083],[76.47968,25.71682],[76.47343,25.70992],[76.47199,25.70394],[76.47292,25.69765],[76.47945,25.6842],[76.49144,25.67902],[76.49891,25.67808],[76.50384,25.6732],[76.504,25.66844],[76.49817,25.65675],[76.49661,25.64681],[76.49894,25.63944],[76.50227,25.63762],[76.50559,25.6381],[76.5098,25.6313],[76.51244,25.60695],[76.51116,25.59989],[76.50384,25.5856],[76.50376,25.57977],[76.50552,25.57488],[76.51415,25.56299],[76.51998,25.54727],[76.51661,25.52667],[76.52496,25.51851],[76.53431,25.5144],[76.53775,25.50901],[76.53773,25.50272],[76.55546,25.48257],[76.55807,25.47054],[76.55715,25.4594],[76.55519,25.45446],[76.55598,25.45203],[76.56223,25.44762],[76.56753,25.44034],[76.58243,25.43686],[76.58627,25.43356],[76.59823,25.40543],[76.59847,25.39233],[76.60828,25.39094],[76.61664,25.38076],[76.62279,25.37678],[76.62891,25.37779],[76.63089,25.38123],[76.63556,25.38344],[76.63976,25.38353],[76.64067,25.37953],[76.64383,25.37794],[76.64647,25.37317],[76.64585,25.37072],[76.64936,25.37156],[76.64958,25.36627],[76.65355,25.36711],[76.65406,25.3631],[76.65682,25.3612],[76.65857,25.36154],[76.65883,25.36541],[76.66043,25.36519],[76.66351,25.35795],[76.6688,25.35301],[76.66845,25.35017],[76.67239,25.34809],[76.67532,25.34923],[76.67715,25.34782],[76.67702,25.35012],[76.67903,25.35069],[76.68255,25.34837],[76.68978,25.35235],[76.70028,25.35163],[76.7033,25.34789],[76.71112,25.3461],[76.71998,25.34589],[76.72554,25.34775],[76.73038,25.35171],[76.73381,25.35199],[76.7366,25.34975],[76.7417,25.34885],[76.74649,25.34385],[76.76102,25.34137],[76.75567,25.33107],[76.75566,25.32278],[76.76037,25.31974],[76.76627,25.32022],[76.76971,25.31771],[76.77757,25.31561],[76.78966,25.31954],[76.80027,25.31965],[76.8145,25.32297],[76.82036,25.32628],[76.83078,25.3273],[76.83944,25.3262],[76.85201,25.33203],[76.85728,25.33278],[76.86348,25.33123],[76.86577,25.3285],[76.8704,25.32703],[76.87211,25.32895],[76.88148,25.32413],[76.90154,25.32363],[76.91765,25.30926],[76.92941,25.30319],[76.92739,25.29153],[76.92327,25.28546],[76.9299,25.28297],[76.94662,25.28233],[76.95781,25.28441],[76.95913,25.29487],[76.96125,25.29786],[76.97374,25.30041],[76.98047,25.29793],[76.99688,25.2984],[77.0257,25.29627],[77.03169,25.29439],[77.04377,25.31269],[77.0459,25.32144],[77.05691,25.31655],[77.06395,25.31657],[77.07005,25.31849],[77.07496,25.32522],[77.07523,25.32823],[77.08367,25.33656],[77.10903,25.33063],[77.11249,25.33198],[77.11768,25.32945],[77.12508,25.33027],[77.13503,25.32067],[77.13864,25.32205],[77.14412,25.32053],[77.15374,25.31261],[77.16536,25.30823],[77.17967,25.31191],[77.1856,25.309],[77.20942,25.30631],[77.20919,25.30865],[77.21139,25.30934],[77.20828,25.31434],[77.20555,25.32648],[77.21722,25.32953],[77.21947,25.32779],[77.21988,25.32478],[77.21632,25.32305],[77.21523,25.32034],[77.2175,25.31784],[77.22337,25.31879],[77.22695,25.32526],[77.22578,25.33031],[77.23395,25.33377],[77.22923,25.33761],[77.22566,25.3347],[77.22432,25.33553],[77.22562,25.34237],[77.22815,25.34657],[77.22987,25.36089],[77.22794,25.36867],[77.23157,25.3727],[77.23394,25.3787],[77.23617,25.38039],[77.24395,25.37904],[77.24787,25.38019],[77.25094,25.38794],[77.26694,25.39565],[77.27564,25.40355],[77.27813,25.40918],[77.28635,25.41855],[77.2938,25.4243],[77.30688,25.43026],[77.31546,25.43147],[77.31994,25.42771],[77.33124,25.42746],[77.3349,25.42542],[77.33464,25.42381],[77.34354,25.42078],[77.3442,25.41862],[77.34994,25.4157],[77.3539,25.41889],[77.36094,25.41899],[77.37097,25.40849],[77.368,25.40209],[77.35766,25.39874],[77.3505,25.38407],[77.35166,25.36969],[77.35914,25.36938],[77.36105,25.36461],[77.36413,25.36358],[77.36669,25.36031],[77.36132,25.35876],[77.3616,25.35661],[77.35036,25.32982],[77.34212,25.32177],[77.35282,25.32041],[77.35708,25.32289],[77.358,25.32616],[77.36761,25.3286],[77.36977,25.32725],[77.37171,25.32089],[77.37476,25.32009],[77.37785,25.31572],[77.38148,25.3046],[77.37962,25.29754],[77.381,25.29273],[77.37587,25.28512],[77.37395,25.27452],[77.36266,25.27901],[77.35755,25.27579],[77.35694,25.27384],[77.35417,25.2736],[77.35509,25.26348],[77.35816,25.26178],[77.36225,25.26269],[77.36611,25.25991],[77.36625,25.25766],[77.36905,25.25546],[77.37037,25.24601],[77.38242,25.24569],[77.38662,25.2427],[77.38765,25.23902],[77.39313,25.23376],[77.39442,25.22994],[77.39977,25.22609],[77.4117,25.22401],[77.41468,25.22013],[77.4185,25.19842],[77.42662,25.18807],[77.42197,25.18331],[77.42158,25.18571],[77.41629,25.18611],[77.40945,25.18294],[77.40014,25.18388],[77.40003,25.16556],[77.39468,25.16213],[77.393,25.15923],[77.39469,25.15644],[77.39616,25.13728],[77.39058,25.12339],[77.40128,25.12164],[77.40537,25.11721],[77.40662,25.11169],[77.40219,25.10929],[77.40243,25.11255],[77.39438,25.11992],[77.37558,25.11029],[77.37567,25.10464],[77.35729,25.09351],[77.35043,25.09576],[77.33781,25.09485],[77.33834,25.09217],[77.32191,25.08554],[77.31484,25.08467],[77.31155,25.08242],[77.31078,25.07983],[77.29826,25.08588],[77.29774,25.09123],[77.29159,25.09716],[77.29257,25.10028],[77.28883,25.10601],[77.27461,25.11069],[77.27001,25.11609],[77.25936,25.11089],[77.24879,25.10995],[77.23696,25.10661],[77.22572,25.10895],[77.2151,25.109],[77.2053,25.11387],[77.1959,25.10932],[77.18423,25.10814],[77.17442,25.11181],[77.16876,25.10301],[77.17158,25.09791],[77.16712,25.08461],[77.1494,25.08636],[77.1506,25.09333],[77.14772,25.09511],[77.14149,25.08859],[77.13342,25.08485],[77.12257,25.06665],[77.09598,25.06543],[77.08913,25.06216],[77.08483,25.05424],[77.04278,25.0634],[77.03759,25.06854],[77.0324,25.06895],[77.02969,25.06585],[77.02404,25.06593],[77.01048,25.07345],[76.99907,25.07485],[76.98984,25.07313],[76.9786,25.06639],[76.97464,25.06643],[76.97148,25.06224],[76.97343,25.06076],[76.9733,25.05843],[76.96873,25.05462],[76.9682,25.0511],[76.96584,25.05155],[76.96167,25.05637],[76.95896,25.05217],[76.9523,25.05216],[76.94509,25.04674],[76.93433,25.04563],[76.92572,25.04695],[76.91159,25.043],[76.88754,25.04377],[76.87616,25.0414],[76.8785,25.02848],[76.87604,25.00706],[76.86733,25.00603],[76.86243,25.00255],[76.85678,25.00248],[76.86135,24.99973],[76.86721,24.99016],[76.86729,24.9803],[76.86513,24.9755],[76.86389,24.96552],[76.86239,24.96442],[76.86269,24.9598],[76.86748,24.95649],[76.87196,24.94789],[76.87763,24.9414],[76.88555,24.93873],[76.88937,24.93392],[76.88868,24.92339],[76.89049,24.91969],[76.90937,24.92111],[76.92042,24.91677],[76.92229,24.91249],[76.92141,24.90842],[76.91966,24.90454],[76.91642,24.90426],[76.91382,24.89831],[76.91305,24.88784],[76.92298,24.88036],[76.93263,24.88199],[76.93425,24.87975],[76.93359,24.87508],[76.94396,24.87444],[76.94856,24.86907],[76.94411,24.86537],[76.94054,24.85782],[76.9341,24.85525],[76.92953,24.84867],[76.92496,24.84658],[76.91665,24.84675],[76.90373,24.84238],[76.89789,24.83823],[76.88148,24.8363],[76.86889,24.8395],[76.86208,24.83731],[76.84617,24.83656],[76.84113,24.83458],[76.83257,24.83657],[76.82508,24.83555],[76.8225,24.83214],[76.81197,24.82557],[76.79988,24.82401],[76.80252,24.81885],[76.802,24.81013],[76.80756,24.80419],[76.82349,24.79412],[76.83546,24.77884],[76.84752,24.76927],[76.84925,24.76303],[76.84859,24.75039],[76.8502,24.74658],[76.85613,24.74249],[76.87438,24.74376],[76.8816,24.74675],[76.88948,24.74726],[76.89597,24.74311],[76.90224,24.73341],[76.90749,24.73159],[76.92319,24.74231],[76.93153,24.74364],[76.94353,24.75755],[76.95396,24.76036],[76.96457,24.75455],[76.96907,24.74231],[76.97456,24.7362],[76.97912,24.73516],[76.98946,24.73614],[76.99552,24.73333],[76.9977,24.72783],[76.99788,24.72046],[77.00166,24.71604],[77.01378,24.71218],[77.02582,24.71432],[77.03167,24.71132],[77.04148,24.6994],[77.04132,24.68675],[77.04374,24.67871],[77.05728,24.65383],[77.06499,24.64384],[77.06788,24.63025],[77.06717,24.61579],[77.06867,24.6088],[77.06558,24.60032],[77.06526,24.59427],[77.06983,24.58406],[77.07133,24.57276],[77.06816,24.55581],[77.05975,24.54588],[77.05763,24.53713],[77.05435,24.53181],[77.05471,24.52628],[77.0422,24.52477],[77.03689,24.5279],[77.03511,24.52435],[77.03554,24.52089],[77.03037,24.51895],[77.02933,24.5167],[77.03066,24.50183],[77.02897,24.49608],[77.01183,24.49166],[77.01096,24.48734],[77.01374,24.48325],[77.0088,24.4819],[77.00713,24.47902],[77.00928,24.47808],[77.00882,24.47674],[77.0036,24.47374],[76.98349,24.47279],[76.98234,24.46782],[76.97761,24.46138],[76.96214,24.46165],[76.96079,24.46342],[76.95549,24.46451],[76.95222,24.46386],[76.95095,24.4618],[76.95076,24.46571],[76.94311,24.46514],[76.94106,24.47052],[76.93852,24.47231],[76.9267,24.47408],[76.91842,24.48069],[76.91693,24.48327],[76.91794,24.48555],[76.91615,24.48993],[76.91725,24.4968],[76.91578,24.50264],[76.91979,24.51805],[76.9218,24.52049],[76.92083,24.52854],[76.91667,24.53705],[76.9179,24.54348],[76.90187,24.54585],[76.89433,24.5383],[76.88986,24.52486],[76.88431,24.52145],[76.87307,24.52702],[76.87157,24.53211],[76.87477,24.53363],[76.87666,24.53879],[76.87411,24.53921],[76.86963,24.54437],[76.86192,24.5493],[76.86062,24.54777],[76.83812,24.54561],[76.8216,24.53459],[76.81639,24.53358],[76.81631,24.52441],[76.82275,24.52043],[76.82867,24.51273],[76.82815,24.50313],[76.83666,24.49318],[76.8354,24.48892],[76.84227,24.48832],[76.84661,24.48596],[76.84775,24.47348],[76.85308,24.46589],[76.85116,24.46036],[76.85251,24.45552],[76.85159,24.45012],[76.85007,24.44923],[76.84481,24.45068],[76.84103,24.44355],[76.84108,24.44014],[76.84434,24.43717],[76.84592,24.43078],[76.85045,24.42413],[76.84574,24.41592],[76.83906,24.41317],[76.83738,24.40971],[76.83793,24.40648],[76.84369,24.40305],[76.85069,24.38344],[76.84523,24.37513],[76.85139,24.37052],[76.83735,24.35959],[76.83188,24.35797],[76.83731,24.3464],[76.83787,24.33415],[76.84105,24.32241],[76.85167,24.31234],[76.85688,24.30292],[76.86012,24.29409],[76.86262,24.27332],[76.87351,24.26592],[76.87313,24.26262],[76.87992,24.26028],[76.87963,24.2553],[76.88784,24.25213],[76.88597,24.24778],[76.8882,24.24489],[76.89616,24.24309],[76.90528,24.2368],[76.91265,24.23795],[76.91576,24.22964],[76.91812,24.22994],[76.92294,24.22605],[76.9223,24.2117],[76.93157,24.21035],[76.93347,24.20706],[76.94593,24.20611],[76.9474,24.20131],[76.9472,24.19873],[76.93987,24.19339],[76.93577,24.18373],[76.93143,24.18356],[76.91629,24.18785],[76.9157,24.17353],[76.9095,24.16298],[76.90994,24.15273],[76.90465,24.14385],[76.9006,24.12743],[76.89227,24.12786],[76.89128,24.12673],[76.88602,24.12801],[76.88397,24.13004],[76.8788,24.13023],[76.88009,24.13506],[76.87841,24.13569],[76.85459,24.13583],[76.85377,24.13353],[76.83632,24.12673],[76.83308,24.12202],[76.81158,24.12275],[76.80637,24.11818],[76.80129,24.11667],[76.79613,24.12136],[76.79,24.12272],[76.78822,24.13215],[76.78088,24.1394],[76.77837,24.14699],[76.7738,24.15007],[76.77019,24.16012],[76.75978,24.16014],[76.76078,24.165],[76.75792,24.16826],[76.72619,24.16857],[76.72608,24.16072],[76.71912,24.15869],[76.71143,24.16384],[76.69831,24.16847],[76.69858,24.17193],[76.69296,24.17641],[76.69204,24.18057],[76.6863,24.1862],[76.67589,24.19085],[76.6781,24.20489],[76.69044,24.23057],[76.69436,24.23631],[76.70051,24.23898],[76.70273,24.2432],[76.70148,24.25042],[76.69409,24.26166],[76.69309,24.26793],[76.69523,24.27763],[76.69277,24.28648],[76.69137,24.28574],[76.69275,24.28023],[76.68753,24.27918],[76.68127,24.27507],[76.6781,24.27123],[76.67775,24.26664],[76.66668,24.26365],[76.66513,24.26193],[76.65673,24.26483],[76.65303,24.2635],[76.64347,24.26939],[76.63997,24.26822],[76.6366,24.26425],[76.6372,24.25834],[76.6313,24.26082],[76.62386,24.25915],[76.62257,24.25735],[76.61765,24.25883],[76.61479,24.25362],[76.6112,24.23865],[76.5956,24.24402],[76.58606,24.24444],[76.58354,24.24287],[76.58784,24.23473],[76.59439,24.22844],[76.59523,24.22332],[76.58944,24.21702],[76.58341,24.21627],[76.582,24.21134],[76.57774,24.21175],[76.57025,24.20899],[76.56876,24.20483],[76.56654,24.20338],[76.56427,24.19095],[76.57467,24.18656],[76.57773,24.17917],[76.57489,24.17572],[76.5705,24.17489],[76.56989,24.17802],[76.56618,24.17444],[76.5618,24.17334],[76.55195,24.16328],[76.54469,24.16285],[76.52742,24.15673],[76.52241,24.15707],[76.51537,24.16263],[76.51293,24.16659],[76.50944,24.18213],[76.50873,24.19358],[76.50454,24.20309],[76.49947,24.20607],[76.4958,24.2054],[76.48054,24.20808],[76.47403,24.22217],[76.47048,24.22298],[76.47051,24.22615],[76.46272,24.22322],[76.46052,24.21851],[76.45227,24.20936],[76.43022,24.22131],[76.41622,24.22063],[76.41642,24.21097],[76.42057,24.20864],[76.4148,24.20064],[76.41168,24.20051],[76.40796,24.20352],[76.40158,24.21527],[76.38191,24.221],[76.3729,24.22785],[76.35834,24.23544],[76.35721,24.23974],[76.34856,24.24062],[76.33988,24.24411],[76.32291,24.24554],[76.31911,24.24481],[76.31084,24.23763],[76.30186,24.23608],[76.29568,24.23185],[76.28736,24.22986],[76.2854,24.20954],[76.28232,24.20731],[76.27554,24.21088],[76.26715,24.21036],[76.25813,24.21463],[76.25211,24.21428],[76.23995,24.21889],[76.22765,24.21541],[76.22478,24.21654],[76.21752,24.21126],[76.21255,24.20994],[76.21164,24.21219],[76.2047,24.21725],[76.20333,24.22052],[76.20647,24.22841],[76.20295,24.24476],[76.20214,24.26883],[76.20093,24.27107],[76.19459,24.27319],[76.19729,24.28796],[76.20424,24.29802],[76.20473,24.3009],[76.20286,24.30492],[76.19558,24.31055],[76.18992,24.32342],[76.18552,24.32928],[76.17963,24.31687],[76.17415,24.31268],[76.17411,24.30721],[76.17015,24.30606],[76.16556,24.30789],[76.16461,24.30659],[76.16587,24.29981],[76.16888,24.29707],[76.1647,24.29461],[76.16533,24.29223],[76.16255,24.28473],[76.15968,24.2827],[76.14932,24.28478],[76.14329,24.2829],[76.14054,24.27463],[76.13672,24.27081],[76.14139,24.26718],[76.13905,24.25625],[76.14312,24.25574],[76.14843,24.23203],[76.14512,24.22302],[76.1378,24.21802],[76.13227,24.20856],[76.11738,24.19399],[76.11378,24.16387],[76.1213,24.16301],[76.12442,24.15945],[76.12496,24.15107],[76.12244,24.1377],[76.12679,24.13249],[76.13114,24.11549],[76.12064,24.10821],[76.12679,24.08873],[76.12179,24.0847],[76.11804,24.08712],[76.11457,24.08474],[76.10666,24.08429],[76.10492,24.08744],[76.10062,24.08711],[76.09635,24.08341],[76.0927,24.08253],[76.08927,24.07704],[76.08451,24.07694],[76.07584,24.07084],[76.07275,24.07666],[76.06758,24.07072],[76.06325,24.06827],[76.05767,24.06754],[76.05465,24.06526],[76.04896,24.06667],[76.04543,24.06451],[76.04267,24.06602],[76.03996,24.06316],[76.03681,24.0629],[76.0346,24.05845],[76.03169,24.05787],[76.03056,24.05154],[76.02817,24.05174],[76.02223,24.04724],[76.02202,24.04119],[76.01941,24.03742],[76.0213,24.03419],[76.01067,24.02504],[76.0,24.02089],[75.99702,24.01769],[75.97064,24.02036],[75.96346,24.01871],[75.96222,24.01469],[75.96719,23.99987],[75.96744,23.99123],[75.97243,23.98847],[75.97596,23.98221],[75.98485,23.97403],[75.98391,23.96742],[75.98676,23.95885],[75.98388,23.95027],[75.98761,23.94174],[75.97996,23.93591],[75.98223,23.93104],[75.98136,23.92897],[75.97453,23.92902],[75.96781,23.92416],[75.96038,23.92325],[75.95531,23.92084],[75.95137,23.91553],[75.95303,23.91172],[75.94917,23.9126],[75.94466,23.90896],[75.94389,23.90298],[75.94108,23.90176],[75.94132,23.89946],[75.93944,23.89947],[75.93751,23.89669],[75.93199,23.89622],[75.92858,23.8991],[75.92714,23.89774],[75.9238,23.89847],[75.92178,23.89613],[75.90486,23.88916],[75.89484,23.8894],[75.8871,23.87911],[75.87642,23.88002],[75.87652,23.88524],[75.87479,23.88537],[75.87063,23.89042],[75.85302,23.88748],[75.84878,23.88415],[75.84478,23.88395],[75.84476,23.87619],[75.84056,23.87458],[75.83914,23.87862],[75.83508,23.87684],[75.83547,23.87818],[75.83365,23.87795],[75.83265,23.87992],[75.82087,23.87331],[75.81736,23.86786],[75.803,23.86545],[75.799,23.86856],[75.79385,23.86701],[75.79201,23.85845],[75.78506,23.85282],[75.78329,23.84923],[75.78125,23.84873],[75.77345,23.84814],[75.76454,23.85174],[75.7617,23.86576],[75.76454,23.87555],[75.7527,23.88735],[75.74,23.889],[75.73949,23.89216],[75.73523,23.89811],[75.72711,23.89328],[75.7193,23.89706],[75.71547,23.89305],[75.71028,23.89551],[75.70805,23.8994],[75.70609,23.8991],[75.70427,23.88876],[75.70548,23.88265],[75.70219,23.88173],[75.70157,23.87283],[75.70349,23.87249],[75.70523,23.86858],[75.70894,23.86923],[75.71085,23.86241],[75.72759,23.85872],[75.73522,23.86199],[75.73641,23.85625],[75.73131,23.85313],[75.72565,23.84183],[75.71895,23.84067],[75.72227,23.83536],[75.72404,23.82376],[75.72647,23.82021],[75.72098,23.81875],[75.72159,23.81179],[75.71256,23.81315],[75.7073,23.81123],[75.70621,23.81331],[75.69799,23.81337],[75.69277,23.81645],[75.69012,23.81325],[75.70184,23.78639],[75.69964,23.78034],[75.6965,23.77974],[75.69294,23.77603],[75.68971,23.76216],[75.68672,23.75594],[75.68046,23.76527],[75.67563,23.78189],[75.65998,23.78423],[75.6545,23.7984],[75.65001,23.79546],[75.64401,23.79778],[75.63848,23.79566],[75.62704,23.79544],[75.62045,23.80093],[75.61435,23.80105],[75.60893,23.79755],[75.59844,23.79776],[75.58345,23.79482],[75.58901,23.80978],[75.5806,23.81228],[75.57157,23.80915],[75.56679,23.80958],[75.5593,23.81818],[75.55912,23.82832],[75.56062,23.83142],[75.56669,23.8332],[75.57461,23.82848],[75.57806,23.83121],[75.57933,23.83511],[75.57903,23.8398],[75.57676,23.84231],[75.5665,23.84387],[75.56593,23.85342],[75.56322,23.85758],[75.55308,23.86162],[75.54709,23.86956],[75.53075,23.87662],[75.52149,23.88493],[75.50567,23.88725],[75.50111,23.89779],[75.49165,23.90678],[75.47737,23.91152],[75.46597,23.9121],[75.46206,23.91476],[75.45939,23.92078],[75.46004,23.93242],[75.46531,23.94753],[75.46885,23.97445],[75.47468,23.98284],[75.48323,23.98755],[75.49227,23.99722],[75.50469,24.00596],[75.52105,24.02502],[75.53963,24.00906],[75.54822,24.00721],[75.56551,24.00768],[75.57235,23.99878],[75.57628,23.99716],[75.5758,23.99413],[75.57751,23.99414],[75.57953,23.99839],[75.581,23.99674],[75.58134,23.9914],[75.58791,23.99064],[75.59547,23.99447],[75.59552,23.99],[75.59802,23.99414],[75.60379,23.99545],[75.6071,23.99255],[75.61578,23.99659],[75.61977,23.99495],[75.62581,23.99639],[75.63,23.99505],[75.63502,23.99788],[75.64005,23.99789],[75.64108,24.00075],[75.64752,24.00351],[75.65163,24.00282],[75.65264,24.00397],[75.65049,24.00517],[75.6509,24.00631],[75.6546,24.00641],[75.6581,24.01024],[75.67434,24.01768],[75.67818,24.00731],[75.68772,24.00546],[75.68699,23.98877],[75.6925,23.98696],[75.69882,23.98784],[75.70173,23.96659],[75.71752,23.96686],[75.71828,23.96834],[75.72953,23.97025],[75.72893,23.97317],[75.73067,23.97678],[75.73621,23.97533],[75.74113,23.97694],[75.74145,23.98296],[75.74364,23.98629],[75.7434,23.98847],[75.74194,23.98864],[75.74225,23.99273],[75.75352,23.99098],[75.76534,23.99268],[75.76843,23.99753],[75.7685,24.00092],[75.76399,24.00537],[75.76266,24.00988],[75.77339,24.00787],[75.77677,24.01446],[75.77537,24.01411],[75.77528,24.01699],[75.78309,24.02214],[75.78057,24.03952],[75.78169,24.04253],[75.81045,24.04865],[75.81498,24.05154],[75.83672,24.05706],[75.83503,24.07351],[75.8357,24.09212],[75.81657,24.08547],[75.8057,24.09957],[75.79286,24.09185],[75.78762,24.0987],[75.78913,24.10419],[75.79089,24.10541],[75.7876,24.10479],[75.78327,24.10785],[75.78349,24.11409],[75.77864,24.11926],[75.77357,24.11899],[75.77003,24.11579],[75.76411,24.12119],[75.75449,24.11952],[75.74601,24.12127],[75.75162,24.14771],[75.75917,24.15547],[75.75871,24.15878],[75.76152,24.16209],[75.76031,24.16604],[75.76388,24.17],[75.76376,24.1745],[75.77394,24.18127],[75.77098,24.18897],[75.77259,24.19419],[75.7723,24.20103],[75.77563,24.20773],[75.77907,24.21047],[75.7928,24.21035],[75.7949,24.2147],[75.80737,24.21777],[75.80988,24.225],[75.80936,24.2297],[75.81568,24.22581],[75.81794,24.22947],[75.82365,24.22998],[75.83023,24.23376],[75.8255,24.23696],[75.81802,24.23872],[75.81798,24.24215],[75.81352,24.24537],[75.81474,24.24606],[75.81299,24.25047],[75.81922,24.25697],[75.81153,24.25774],[75.8142,24.2677],[75.81419,24.27128],[75.81257,24.27138],[75.81171,24.27528],[75.81319,24.27841],[75.81679,24.27837],[75.81844,24.28069],[75.81189,24.28549],[75.81365,24.28995],[75.81218,24.29331],[75.80893,24.29409],[75.81073,24.29609],[75.80652,24.29978],[75.80353,24.29843],[75.80183,24.30213],[75.78715,24.29872],[75.78581,24.29664],[75.76647,24.29802],[75.76096,24.3145],[75.75734,24.31925],[75.7488,24.32699],[75.73984,24.33215],[75.73822,24.33482],[75.74318,24.34005],[75.74212,24.34986],[75.7432,24.35168],[75.74075,24.35129],[75.73753,24.35356],[75.73997,24.36096],[75.73898,24.37824],[75.73689,24.3823],[75.73411,24.3784],[75.72949,24.37775],[75.72775,24.39052],[75.72791,24.39641],[75.73148,24.39872],[75.74279,24.39773],[75.74322,24.39934],[75.74952,24.40097],[75.7499,24.40438],[75.75531,24.40653],[75.75469,24.4167],[75.75589,24.42066],[75.74759,24.42289],[75.7476,24.42418],[75.75786,24.43115],[75.76179,24.43086],[75.7632,24.43317],[75.76656,24.43431],[75.77132,24.44172],[75.7741,24.44191],[75.77339,24.4497],[75.78119,24.44962],[75.78606,24.45326],[75.78427,24.4579],[75.78534,24.46788],[75.7894,24.47153],[75.80335,24.46825],[75.81347,24.46202],[75.81445,24.45036],[75.80986,24.43404],[75.81689,24.42942],[75.82484,24.42731],[75.82771,24.42167],[75.83557,24.41487],[75.83879,24.41418],[75.84201,24.41627],[75.84449,24.41549],[75.85548,24.41797],[75.86119,24.42155],[75.87509,24.42636],[75.87575,24.43037],[75.89037,24.43937],[75.90023,24.44222],[75.90306,24.44956],[75.90263,24.45379],[75.90906,24.45501],[75.90886,24.46218],[75.90539,24.47247],[75.91009,24.48309],[75.91164,24.49191],[75.90792,24.49237],[75.90393,24.49691],[75.90282,24.5046],[75.8982,24.50452],[75.88786,24.50807],[75.88988,24.51014],[75.89053,24.51883],[75.90112,24.51879],[75.90777,24.51296],[75.91138,24.5139],[75.92055,24.52166],[75.92334,24.53518],[75.92059,24.53588],[75.9161,24.54266],[75.90596,24.54537],[75.90367,24.54893],[75.90585,24.56276],[75.91219,24.56131],[75.91482,24.569],[75.91446,24.57225],[75.90645,24.57562],[75.89873,24.57628],[75.89412,24.57976],[75.87837,24.58339],[75.87219,24.59034],[75.87115,24.60666],[75.86284,24.60613],[75.86302,24.61003],[75.84924,24.61088],[75.84587,24.60948],[75.84579,24.60764],[75.84166,24.60702],[75.83837,24.59765],[75.83546,24.59495],[75.83253,24.59559],[75.83639,24.60615],[75.83275,24.60505],[75.82588,24.61073],[75.82485,24.61345],[75.82809,24.62043],[75.83716,24.6209],[75.83811,24.6231],[75.84181,24.62385],[75.84215,24.62625],[75.8447,24.62722],[75.8426,24.62808],[75.84627,24.63099],[75.84142,24.63494],[75.84097,24.63811],[75.84876,24.6474],[75.84691,24.65188],[75.84836,24.65749],[75.84691,24.66096],[75.84776,24.66302],[75.84126,24.66544],[75.83845,24.66863],[75.82494,24.66745],[75.82842,24.6722],[75.82853,24.67648],[75.83357,24.6882],[75.8378,24.71801],[75.83732,24.72505],[75.83413,24.72849],[75.83361,24.73185],[75.82646,24.73486],[75.80217,24.75646],[75.79797,24.75631],[75.78473,24.7618],[75.77757,24.76138],[75.76981,24.75843],[75.75683,24.76155],[75.74048,24.75502],[75.68342,24.72512],[75.65772,24.69299],[75.64596,24.68492],[75.61079,24.68041],[75.60851,24.68155],[75.59857,24.69808],[75.59057,24.70578],[75.58457,24.7083],[75.58297,24.71326],[75.58097,24.71177],[75.57534,24.71219],[75.57479,24.70777],[75.56319,24.70736],[75.55388,24.70446],[75.55201,24.70515],[75.54822,24.70294],[75.54009,24.70565],[75.53343,24.71205],[75.53025,24.70948],[75.51835,24.70588],[75.50633,24.69993],[75.48941,24.68665],[75.45646,24.68045],[75.43406,24.68211],[75.3918,24.69038],[75.3707,24.69239],[75.34904,24.7008],[75.32995,24.70298],[75.3204,24.7024],[75.28419,24.70892],[75.26853,24.71475],[75.2649,24.71751],[75.2517,24.7136],[75.24155,24.71344],[75.22838,24.71762],[75.22451,24.71516],[75.21944,24.70255],[75.20807,24.71934],[75.20404,24.73137],[75.19764,24.74325],[75.18763,24.74374],[75.18701,24.7475],[75.1844,24.74855],[75.19037,24.75341],[75.19291,24.77357],[75.20542,24.76946],[75.20811,24.77161],[75.20497,24.77045],[75.20158,24.77174],[75.20745,24.7812],[75.2047,24.7856],[75.20694,24.78837],[75.20727,24.79191],[75.2152,24.80212],[75.21867,24.80512],[75.2217,24.80322],[75.23303,24.80266],[75.24413,24.80471],[75.25032,24.80954],[75.25232,24.81311],[75.25426,24.81848],[75.25396,24.82427],[75.25006,24.82666],[75.24909,24.82982],[75.23238,24.83133],[75.2252,24.83398],[75.22622,24.84038],[75.22409,24.84392],[75.23691,24.84224],[75.24042,24.8457],[75.25023,24.84569],[75.26232,24.84221],[75.27294,24.84284],[75.28996,24.83366],[75.29031,24.8286],[75.2958,24.82026],[75.29486,24.81571],[75.29734,24.81269],[75.29794,24.80714],[75.30473,24.80205],[75.3116,24.80118],[75.31704,24.8039],[75.32843,24.81903],[75.33586,24.82217],[75.34541,24.82168],[75.36268,24.83002],[75.37171,24.83265],[75.38129,24.8382],[75.39602,24.84155],[75.40393,24.84516],[75.41239,24.85213],[75.41857,24.85441],[75.41971,24.85619],[75.41908,24.86201],[75.42576,24.86907],[75.42431,24.88084],[75.4258,24.88429],[75.4217,24.8861],[75.41613,24.88608],[75.40178,24.8827],[75.39598,24.87752],[75.37363,24.86774],[75.35053,24.87365],[75.33829,24.87276],[75.32664,24.87487],[75.32259,24.87315],[75.32277,24.86919],[75.31838,24.86061],[75.3153,24.85791],[75.30805,24.85604],[75.29463,24.85762],[75.29019,24.86621],[75.28111,24.86838],[75.27813,24.87274],[75.27436,24.87478],[75.26343,24.87486],[75.26231,24.88264],[75.2633,24.89108],[75.26507,24.89219],[75.26407,24.89521],[75.26731,24.89944],[75.2727,24.90405],[75.27733,24.89915],[75.2843,24.90796],[75.28674,24.90876],[75.29407,24.90755],[75.29348,24.91129],[75.28779,24.91983],[75.28784,24.92352],[75.27728,24.92494],[75.27926,24.93435],[75.27264,24.93594],[75.27293,24.93818],[75.26892,24.94223],[75.26708,24.94715],[75.26671,24.95088],[75.27082,24.95273],[75.27057,24.95713],[75.27292,24.95971],[75.27389,24.96404],[75.27779,24.96493],[75.27812,24.96375],[75.28219,24.96561],[75.28531,24.96478],[75.28187,24.95309],[75.2884,24.95161],[75.28677,24.94614],[75.29009,24.93766],[75.2977,24.93301],[75.30023,24.93336],[75.30487,24.92866],[75.30141,24.92628],[75.30088,24.92362],[75.30272,24.91987],[75.30859,24.91661],[75.31165,24.90758],[75.31527,24.89443],[75.31512,24.88934],[75.31274,24.88514],[75.31845,24.89416],[75.321,24.91279],[75.32583,24.91947],[75.32909,24.93415],[75.33528,24.94379],[75.33691,24.9554],[75.33157,24.95764],[75.32702,24.96744],[75.32723,24.97097],[75.31847,24.97413],[75.31346,24.98001],[75.31177,24.99537],[75.31653,25.00556],[75.32054,25.00677],[75.33298,25.01665],[75.33926,25.01932],[75.33914,25.01728],[75.35035,25.01753],[75.35021,25.0224],[75.34272,25.03072],[75.34639,25.03073],[75.34718,25.03214],[75.33216,25.04149],[75.32514,25.03917],[75.3011,25.04174],[75.29397,25.03906],[75.28319,25.03806],[75.27385,25.03951],[75.26838,25.04244],[75.2539,25.03949],[75.25,25.0358],[75.24504,25.03502],[75.23012,25.03705],[75.22512,25.0341],[75.22053,25.03704],[75.21784,25.03488],[75.20537,25.03947],[75.19974,25.03667],[75.19859,25.03327],[75.155,25.03399],[75.1521,25.03114],[75.15163,25.02036],[75.15673,25.02112],[75.16388,25.01664],[75.16857,25.00593],[75.16613,25.00592],[75.16633,25.00288],[75.15868,25.0011],[75.15582,24.99364],[75.15312,24.99475],[75.15177,24.98907],[75.14186,24.98993],[75.13936,24.98566],[75.13723,24.98619],[75.13219,24.98361],[75.13023,24.97962],[75.13845,24.97985],[75.14149,24.97818],[75.13559,24.97604],[75.12757,24.96788],[75.11356,24.96681],[75.11508,24.94387],[75.11412,24.93644],[75.11837,24.9256],[75.11677,24.9218],[75.11643,24.91059],[75.11949,24.91018],[75.11592,24.90621],[75.11324,24.89971],[75.11334,24.89724],[75.1161,24.89706],[75.11741,24.89501],[75.1144,24.89277],[75.11625,24.8919],[75.11853,24.88525],[75.11892,24.8823],[75.11693,24.87826],[75.11249,24.87852],[75.09849,24.87245],[75.08719,24.87079],[75.08821,24.87871],[75.07653,24.88068],[75.06544,24.86802],[75.06386,24.86769],[75.06277,24.87148],[75.05531,24.87189],[75.05548,24.86983],[75.05936,24.86688],[75.05993,24.86361],[75.05659,24.86214],[75.05186,24.85589],[75.05131,24.85267],[75.04716,24.84958],[75.04145,24.84921],[75.04196,24.84697],[75.03888,24.84555],[75.03305,24.84441],[75.02099,24.84857],[75.01476,24.854],[75.00831,24.85642],[75.00157,24.85612],[74.99388,24.85346],[74.99218,24.85457],[74.98491,24.8533],[74.98402,24.85685],[74.98057,24.85865],[74.96811,24.85612],[74.95866,24.85819],[74.95676,24.8607],[74.94821,24.86457],[74.95193,24.87416],[74.9519,24.87646],[74.95088,24.87601],[74.95261,24.88068],[74.94925,24.88145],[74.94498,24.87891],[74.94108,24.8794],[74.94128,24.8807],[74.93223,24.88131],[74.93159,24.8754],[74.9267,24.87981],[74.9239,24.8783],[74.92066,24.88487],[74.91553,24.88759],[74.91041,24.89437],[74.91638,24.90729],[74.913,24.90869],[74.91334,24.91618],[74.9078,24.91829],[74.90245,24.93],[74.89195,24.92974],[74.88785,24.93755],[74.8807,24.93736],[74.87939,24.92998],[74.86948,24.92497],[74.86571,24.93502],[74.86258,24.95318],[74.85911,24.95579],[74.85942,24.96158],[74.85756,24.96389],[74.85176,24.96707],[74.84815,24.96614],[74.84263,24.96885],[74.83322,24.95972],[74.83386,24.94413],[74.82638,24.93352],[74.82653,24.92451],[74.82489,24.92291],[74.82529,24.90015],[74.83074,24.88693],[74.83748,24.88726],[74.84037,24.88482],[74.84657,24.8605],[74.84997,24.85737],[74.85107,24.85129],[74.85851,24.83962],[74.86085,24.82246],[74.85953,24.80771],[74.86152,24.80414],[74.8387,24.79804],[74.8405,24.78974],[74.84832,24.77967],[74.84937,24.77613],[74.86017,24.77942],[74.86094,24.78543],[74.85911,24.79588],[74.86043,24.79849],[74.87932,24.79738],[74.88042,24.78941],[74.89211,24.7836],[74.90671,24.78183],[74.91042,24.77042],[74.91453,24.7692],[74.92129,24.7707],[74.93089,24.7791],[74.93739,24.77836],[74.94061,24.77474],[74.94798,24.77199],[74.95343,24.77368],[74.96477,24.76932],[74.96915,24.77061],[74.97202,24.76378],[74.97562,24.76369],[74.98171,24.76412],[74.98441,24.76883],[74.99041,24.76923],[74.99912,24.77475],[75.00149,24.77452],[75.00693,24.77125],[75.01515,24.74012],[75.0144,24.7347],[75.01603,24.73212],[74.99239,24.73175],[74.99388,24.72601],[74.99193,24.69322],[75.00046,24.69184],[75.00172,24.68642],[74.99339,24.68281],[74.98305,24.68195],[74.97631,24.67875],[74.96019,24.67777],[74.96489,24.67029],[74.96076,24.66547],[74.96228,24.65642],[74.96128,24.65604],[74.95855,24.66093],[74.95646,24.65579],[74.95302,24.65374],[74.95403,24.65196],[74.9513,24.64724],[74.94976,24.64972],[74.94741,24.64572],[74.94382,24.64809],[74.9422,24.64714],[74.9441,24.6419],[74.94309,24.6378],[74.9408,24.64059],[74.93915,24.63795],[74.93704,24.63801],[74.93601,24.63979],[74.92917,24.63546],[74.92493,24.63791],[74.91976,24.63625],[74.91724,24.63777],[74.91386,24.637],[74.91149,24.63885],[74.90945,24.63792],[74.90526,24.64087],[74.90136,24.63704],[74.90182,24.63281],[74.89811,24.63757],[74.89861,24.64186],[74.89498,24.64394],[74.89249,24.64249],[74.89402,24.6418],[74.89398,24.63781],[74.88908,24.63383],[74.88323,24.63822],[74.88439,24.64142],[74.8782,24.64681],[74.87655,24.64285],[74.87323,24.64647],[74.87378,24.64968],[74.87166,24.6505],[74.87139,24.65255],[74.87558,24.65266],[74.86837,24.65741],[74.86869,24.66305],[74.86489,24.66549],[74.86499,24.66962],[74.86355,24.66965],[74.86077,24.67436],[74.85796,24.67436],[74.86014,24.67894],[74.85938,24.68284],[74.8525,24.68422],[74.85309,24.67818],[74.8515,24.67767],[74.85018,24.6842],[74.8545,24.68765],[74.84948,24.68791],[74.84639,24.69623],[74.8481,24.69977],[74.84373,24.6987],[74.83583,24.70674],[74.83689,24.70773],[74.82985,24.72042],[74.83044,24.72777],[74.82321,24.73504],[74.8161,24.74801],[74.81441,24.76064],[74.8088,24.78105],[74.79978,24.77907],[74.79921,24.76377],[74.80397,24.73397],[74.78909,24.7318],[74.78484,24.72814],[74.78211,24.72881],[74.7796,24.73245],[74.78761,24.70418],[74.78451,24.70171],[74.78431,24.69176],[74.78074,24.68419],[74.7777,24.68132],[74.77194,24.66148],[74.77428,24.65948],[74.78055,24.6605],[74.78169,24.65818],[74.78394,24.65775],[74.79022,24.65987],[74.79075,24.66508],[74.798,24.66397],[74.80072,24.6666],[74.80359,24.66536],[74.81458,24.66575],[74.81367,24.65932],[74.81626,24.65855],[74.81414,24.65018],[74.81175,24.65205],[74.80631,24.6484],[74.80294,24.6342],[74.79652,24.63467],[74.79128,24.63178],[74.79021,24.62228],[74.79174,24.61977],[74.78575,24.61929],[74.7794,24.61544],[74.78075,24.60536],[74.78282,24.60542],[74.78333,24.59436],[74.78596,24.59416],[74.78643,24.58593],[74.78063,24.58569],[74.77813,24.58147],[74.76685,24.57856],[74.76684,24.57967],[74.7601,24.57944],[74.76007,24.57766],[74.7582,24.57716],[74.75278,24.57964],[74.75198,24.57743],[74.75329,24.57435],[74.74915,24.57464],[74.74351,24.57146],[74.75359,24.5536],[74.75275,24.54408],[74.75553,24.53488],[74.74422,24.53231],[74.74358,24.52748],[74.7458,24.52535],[74.74653,24.51969],[74.74463,24.51346],[74.72467,24.51318],[74.72478,24.51204],[74.71814,24.50898],[74.71216,24.50046],[74.70873,24.48647],[74.72036,24.48916],[74.72795,24.48908],[74.7317,24.4808],[74.74432,24.47372],[74.74609,24.46978],[74.74815,24.46992],[74.75012,24.4667],[74.76566,24.46677],[74.76942,24.46321],[74.77714,24.4605],[74.78694,24.47224],[74.80618,24.4671],[74.81535,24.46847],[74.82176,24.45311],[74.81899,24.45269],[74.81375,24.43674],[74.83009,24.43514],[74.83228,24.43836],[74.83188,24.4421],[74.83393,24.44318],[74.84136,24.44101],[74.84713,24.44244],[74.85141,24.4456],[74.85387,24.44453],[74.85523,24.4409],[74.85379,24.43628],[74.8551,24.42414],[74.8474,24.4204],[74.83977,24.40814],[74.83498,24.40649],[74.83024,24.40152],[74.82519,24.40002],[74.82492,24.38826],[74.82259,24.37959],[74.81731,24.37949],[74.81096,24.38254],[74.80726,24.38083],[74.80842,24.37655],[74.80107,24.36437],[74.80199,24.35855],[74.79406,24.35126],[74.79089,24.34486],[74.78118,24.33834],[74.77886,24.32386],[74.78314,24.31935],[74.78366,24.31451],[74.78075,24.30599],[74.78132,24.28917],[74.77515,24.28242],[74.77461,24.27805],[74.76728,24.27407],[74.74918,24.25841],[74.74711,24.25347],[74.75435,24.24455],[74.75432,24.24217],[74.75874,24.24328],[74.76222,24.24118],[74.77483,24.23871],[74.78687,24.23975],[74.79504,24.24316],[74.81082,24.24418],[74.82328,24.23982],[74.83332,24.23986],[74.83926,24.23727],[74.85178,24.23674],[74.86758,24.24309],[74.87792,24.23782],[74.88714,24.22969],[74.8971,24.22729],[74.89802,24.21434],[74.90577,24.21305],[74.91034,24.21011],[74.907,24.20066],[74.90235,24.19723],[74.89903,24.19067],[74.89447,24.19019],[74.89053,24.18772],[74.8845,24.18224],[74.87975,24.17361],[74.88171,24.1731],[74.8821,24.17028],[74.88473,24.16994],[74.8865,24.16572],[74.88974,24.16545],[74.89064,24.16262],[74.89611,24.15795],[74.8954,24.15306],[74.90207,24.13899],[74.90124,24.12604],[74.90824,24.12124],[74.90352,24.1093],[74.90847,24.10462],[74.9152,24.10262],[74.91817,24.09806],[74.9177,24.09093],[74.92066,24.08685],[74.91874,24.08099],[74.92088,24.08024],[74.9209,24.07754],[74.92747,24.07439],[74.93239,24.07429],[74.94068,24.06992],[74.93839,24.06212],[74.93934,24.05392],[74.94579,24.0495],[74.95531,24.0486],[74.95535,24.04696],[74.96006,24.04603],[74.96057,24.03884],[74.96603,24.03894],[74.96843,24.041],[74.97405,24.04028],[74.97899,24.03672],[74.97868,24.03216],[74.9823,24.02541],[74.97647,24.02063],[74.97226,24.01326],[74.96482,24.00594],[74.96339,24.0022],[74.96315,23.99807],[74.96469,23.99583],[74.9625,23.98918],[74.96272,23.97874],[74.95914,23.97216],[74.9472,23.9626],[74.93075,23.95699],[74.92907,23.95444],[74.92824,23.9394],[74.91651,23.93175],[74.91621,23.92989],[74.92121,23.92413],[74.9209,23.91909],[74.91292,23.91107],[74.91049,23.90629],[74.90819,23.88162],[74.90262,23.87295],[74.90404,23.86925],[74.90367,23.85274],[74.90601,23.84807],[74.9124,23.84595],[74.91384,23.84168],[74.9089,23.83572],[74.91159,23.82614],[74.90854,23.82293],[74.90638,23.81583],[74.90676,23.80444],[74.90389,23.79849],[74.90371,23.79431],[74.92434,23.79662],[74.92848,23.78789],[74.93199,23.7842],[74.93531,23.77329],[74.93882,23.77013],[74.9404,23.76474],[74.93425,23.75792],[74.92452,23.75639],[74.92633,23.7517],[74.93032,23.74956],[74.92996,23.7401],[74.93177,23.73434],[74.9351,23.73284],[74.93638,23.72958],[74.92862,23.72801],[74.92798,23.72406],[74.92526,23.7234],[74.92658,23.72021],[74.92445,23.7184],[74.92023,23.71918],[74.92014,23.71107],[74.9183,23.70563],[74.92159,23.69465],[74.91772,23.69065],[74.89959,23.68402],[74.89946,23.6822],[74.9042,23.68014],[74.90384,23.67474],[74.9071,23.67458],[74.90801,23.6711],[74.91754,23.66941],[74.92168,23.66649],[74.92429,23.65721],[74.92401,23.65065],[74.92841,23.64155],[74.9361,23.63958],[74.93654,23.62877],[74.92735,23.62525],[74.92746,23.6219],[74.92444,23.61999],[74.91499,23.61811],[74.91107,23.61916],[74.91003,23.62222],[74.90679,23.62446],[74.90294,23.6251],[74.90363,23.62314],[74.90087,23.61863],[74.90165,23.61758],[74.89776,23.6161],[74.89361,23.6095],[74.88506,23.6081],[74.88468,23.60663],[74.88208,23.60618],[74.87985,23.59522],[74.86991,23.59193],[74.8709,23.58552],[74.87331,23.58159],[74.87336,23.5769],[74.87137,23.57827],[74.86827,23.57417],[74.85691,23.57393],[74.85351,23.57099],[74.85252,23.56415],[74.85012,23.56068],[74.85089,23.55876],[74.84846,23.55607],[74.84878,23.5544],[74.84663,23.55406],[74.84683,23.55186],[74.84029,23.54988],[74.82923,23.55055],[74.82212,23.54085],[74.81807,23.54237],[74.81032,23.54082],[74.80648,23.53813],[74.8033,23.53308],[74.79901,23.5381],[74.79411,23.55088],[74.77368,23.54437],[74.77092,23.54239],[74.76723,23.53557],[74.76689,23.53086],[74.76237,23.5264],[74.76151,23.52114],[74.73529,23.52057],[74.73468,23.51821],[74.73912,23.51379],[74.73405,23.50818],[74.73294,23.50144],[74.72924,23.49662],[74.72373,23.49629],[74.71872,23.50323],[74.70349,23.50501],[74.69674,23.50266],[74.68653,23.49474],[74.68034,23.49478],[74.68217,23.48789],[74.68131,23.48523],[74.67703,23.48273],[74.66606,23.4825],[74.66642,23.47752],[74.65895,23.4673],[74.65188,23.46228],[74.63872,23.46356],[74.6368,23.46728],[74.63277,23.46951],[74.63354,23.46707],[74.63187,23.46139],[74.61623,23.45978],[74.6127,23.46193],[74.60389,23.45726],[74.60974,23.45367],[74.60991,23.45163],[74.60617,23.44453],[74.59932,23.43726],[74.59907,23.42875],[74.59657,23.42828],[74.59425,23.42415],[74.58718,23.42651],[74.58184,23.42156],[74.57507,23.42321],[74.57235,23.42067],[74.56995,23.4126],[74.57304,23.39636],[74.56657,23.38614],[74.56949,23.37839],[74.56894,23.3763],[74.56513,23.37285],[74.55925,23.37118],[74.55769,23.368],[74.5577,23.36191],[74.55469,23.36129],[74.54663,23.3649],[74.54239,23.36466],[74.53982,23.36187],[74.54156,23.35749],[74.53819,23.34599],[74.5401,23.33625],[74.53527,23.33082],[74.51404,23.32805],[74.51503,23.3161],[74.52362,23.32113],[74.52973,23.32067],[74.53108,23.3128],[74.52792,23.31075],[74.53192,23.30636],[74.53427,23.30065],[74.53957,23.2997],[74.54147,23.28673],[74.54667,23.27712],[74.54967,23.27861],[74.55348,23.27747],[74.55647,23.27843],[74.56337,23.28826],[74.56321,23.29269],[74.56824,23.29518],[74.57437,23.29517],[74.57369,23.28922],[74.57685,23.28481],[74.57934,23.28461],[74.58528,23.27951],[74.58499,23.27694],[74.58922,23.27904],[74.59829,23.27694],[74.60168,23.28023],[74.60795,23.28246],[74.61689,23.27938],[74.62185,23.27367],[74.62484,23.27387],[74.62391,23.27179],[74.62681,23.25869],[74.63856,23.25541],[74.64856,23.25593],[74.66378,23.26741],[74.67314,23.26996],[74.67676,23.27381],[74.68622,23.26759],[74.69243,23.26584],[74.69996,23.26837],[74.70107,23.26466],[74.69878,23.25731],[74.70767,23.25483],[74.71277,23.25053],[74.71297,23.2428],[74.71511,23.23668],[74.70881,23.23142],[74.70589,23.23152],[74.70423,23.22885],[74.69167,23.22559],[74.69207,23.21915],[74.70284,23.21458],[74.71711,23.21961],[74.73401,23.22061],[74.74128,23.22475],[74.74099,23.22643],[74.74752,23.22665],[74.74891,23.22376],[74.74056,23.21768],[74.74443,23.21166],[74.74214,23.20891],[74.72505,23.20089],[74.72453,23.1966],[74.7151,23.19071],[74.70808,23.19423],[74.69881,23.1923],[74.68187,23.19387],[74.67154,23.19996],[74.66425,23.19516],[74.6493,23.17522],[74.63271,23.16395],[74.62494,23.16172],[74.6184,23.15037],[74.60661,23.14256],[74.5965,23.13789],[74.58549,23.13975],[74.57678,23.13418],[74.57223,23.13315],[74.53937,23.1293],[74.54479,23.11971],[74.54642,23.11435],[74.54551,23.10984],[74.53934,23.10334],[74.53144,23.09907],[74.52338,23.09626],[74.51485,23.09628],[74.51028,23.09446],[74.50691,23.0914],[74.50908,23.08675],[74.50586,23.08514],[74.4992,23.08688],[74.49174,23.0859],[74.48924,23.08768],[74.47472,23.08365],[74.47439,23.08166],[74.46702,23.08303],[74.46384,23.08179],[74.45773,23.08463],[74.45408,23.08833],[74.44072,23.09068],[74.44039,23.09518],[74.43225,23.1049],[74.42738,23.1067],[74.42158,23.10437],[74.40631,23.11202],[74.39836,23.11011],[74.39217,23.11117],[74.38974,23.10962],[74.38905,23.11147],[74.3862,23.11152],[74.37741,23.10637],[74.35629,23.08865],[74.35439,23.08604],[74.35589,23.07981],[74.3416,23.0679],[74.33281,23.06219],[74.3209,23.06142],[74.3189,23.05866],[74.32193,23.04122],[74.32758,23.0366],[74.33979,23.03267],[74.34494,23.0284],[74.34665,23.02414],[74.34686,23.01399],[74.34938,23.00685],[74.36532,22.97697],[74.36431,22.97551],[74.36104,22.97659],[74.35045,22.97428],[74.34969,22.97147],[74.33936,22.96472],[74.33741,22.95669],[74.3395,22.95289],[74.35767,22.93921],[74.35735,22.93401],[74.35905,22.93007],[74.3625,22.92606],[74.3706,22.92173],[74.37756,22.9072],[74.38546,22.90455],[74.39341,22.8966],[74.40166,22.89773],[74.4041,22.8993],[74.40445,22.90359],[74.40824,22.90617],[74.4136,22.90609],[74.41052,22.91184],[74.41848,22.91704],[74.43323,22.91795],[74.43363,22.91249],[74.44095,22.91851],[74.44406,22.91875],[74.44683,22.92108],[74.44941,22.91739],[74.45754,22.91193],[74.46076,22.90684],[74.46389,22.89827],[74.46399,22.88644],[74.47025,22.87753],[74.46876,22.86941],[74.4702,22.86377],[74.47643,22.85482],[74.4706,22.84107],[74.46477,22.81639],[74.44922,22.8083],[74.43378,22.8079],[74.43788,22.79204],[74.43554,22.7826],[74.42136,22.75675],[74.41792,22.75625],[74.41596,22.75406],[74.41602,22.7488],[74.41388,22.74304],[74.40891,22.74026],[74.4017,22.73097],[74.39694,22.71355],[74.39953,22.70938],[74.39781,22.70387],[74.3944,22.69961],[74.39498,22.68564],[74.38198,22.66751],[74.38066,22.6584],[74.38429,22.64629],[74.37961,22.64037],[74.37906,22.63443],[74.37451,22.63594],[74.35909,22.63399],[74.3376,22.64029],[74.33212,22.63872],[74.32935,22.64173],[74.32278,22.6407],[74.32372,22.63595],[74.3148,22.63387],[74.31197,22.63645],[74.29321,22.63791],[74.27737,22.646],[74.27182,22.63916],[74.26615,22.63835],[74.26667,22.64211],[74.26356,22.64397],[74.25882,22.63685],[74.25358,22.63466],[74.25512,22.62349],[74.2534,22.62148],[74.2496,22.61969],[74.24351,22.62051],[74.24066,22.61187],[74.23137,22.6118],[74.23112,22.60794],[74.22543,22.59604],[74.22183,22.58357],[74.21125,22.57486],[74.21003,22.56426],[74.2046,22.56581],[74.20369,22.56873],[74.20048,22.56573],[74.19359,22.56882],[74.18578,22.56582],[74.1833,22.56649],[74.1901,22.55947],[74.18951,22.5536],[74.18031,22.54818],[74.17069,22.54715],[74.16009,22.53588],[74.15607,22.53488],[74.15212,22.53038],[74.15242,22.52006],[74.14732,22.51369],[74.14064,22.51765],[74.12803,22.51727],[74.12258,22.52165],[74.10248,22.53103],[74.09462,22.53993],[74.08408,22.54475],[74.07464,22.5514],[74.05656,22.55007],[74.04114,22.54179],[74.03789,22.53451],[74.03678,22.52581],[74.03902,22.52151],[74.03851,22.51584],[74.02938,22.50795],[74.03339,22.4899],[74.0367,22.48694],[74.0408,22.48655],[74.0438,22.49658],[74.04642,22.4992],[74.04972,22.49951],[74.05437,22.50956],[74.07196,22.50821],[74.07742,22.50606],[74.08252,22.50678],[74.08253,22.49571],[74.08619,22.49158],[74.0852,22.48799],[74.08754,22.48222],[74.08601,22.47681],[74.08217,22.48444],[74.07885,22.48527],[74.07646,22.48358],[74.07353,22.47765],[74.076,22.46941],[74.07533,22.4643],[74.08566,22.46991],[74.09064,22.46634],[74.09544,22.46818],[74.10415,22.46453],[74.1034,22.45574],[74.10156,22.45555],[74.1004,22.45146],[74.09697,22.45027],[74.09841,22.44872],[74.09975,22.43804],[74.10132,22.43527],[74.10341,22.43727],[74.10445,22.43627],[74.10491,22.42951],[74.10684,22.42971],[74.1093,22.42638],[74.11667,22.42445],[74.11911,22.41876],[74.12474,22.41733],[74.12775,22.42204],[74.12773,22.42643],[74.12629,22.42667],[74.12796,22.42691],[74.1282,22.43522],[74.13016,22.43504],[74.12903,22.43606],[74.1311,22.43777],[74.13056,22.43958],[74.13395,22.44592],[74.13585,22.44717],[74.14276,22.44687],[74.14921,22.45566],[74.15526,22.4541],[74.15254,22.44306],[74.15553,22.43633],[74.16045,22.43121],[74.16528,22.43021],[74.16975,22.43183],[74.1695,22.43926],[74.18413,22.44154],[74.18534,22.45096],[74.18058,22.45464],[74.17993,22.46222],[74.18227,22.46775],[74.18706,22.4721],[74.1879,22.47551],[74.1934,22.47548],[74.19898,22.47297],[74.20323,22.46704],[74.20246,22.45638],[74.20422,22.45142],[74.20162,22.43451],[74.21338,22.43151],[74.21524,22.4413],[74.22159,22.43776],[74.22623,22.43762],[74.2274,22.43892],[74.23628,22.4352],[74.25279,22.43295],[74.2532,22.43096],[74.26248,22.4236],[74.26261,22.41816],[74.27059,22.41315],[74.26746,22.40555],[74.29118,22.39401],[74.28906,22.39229],[74.27941,22.3948],[74.27483,22.3921],[74.2707,22.39269],[74.25674,22.39965],[74.25429,22.38583],[74.25103,22.38262],[74.24276,22.38242],[74.24329,22.37605],[74.22371,22.37994],[74.22236,22.37505],[74.22495,22.36875],[74.22214,22.36463],[74.22451,22.36051],[74.22388,22.35637],[74.21057,22.36069],[74.20783,22.36466],[74.20404,22.36671],[74.20277,22.34852],[74.19793,22.34265],[74.19614,22.34319],[74.1943,22.3484],[74.1922,22.34633],[74.19283,22.3324],[74.19033,22.32026],[74.16457,22.3243],[74.1562,22.32726],[74.15408,22.3296],[74.1506,22.32684],[74.14448,22.32819],[74.14214,22.32712],[74.13411,22.3326],[74.12786,22.33274],[74.12531,22.33742],[74.12739,22.3415],[74.12512,22.3561],[74.12123,22.35767],[74.11776,22.35616],[74.11367,22.35715],[74.11209,22.36688],[74.10507,22.37182],[74.09567,22.37111],[74.09207,22.36085],[74.088,22.3598],[74.08261,22.36171],[74.07078,22.36129],[74.06789,22.3599],[74.067,22.35634],[74.06477,22.35461],[74.06647,22.35019],[74.06956,22.34895],[74.0722,22.34348],[74.07157,22.33599],[74.06458,22.33186],[74.06144,22.31168],[74.06244,22.30492],[74.05958,22.3037],[74.05906,22.30577],[74.05376,22.30375],[74.05432,22.29748],[74.05238,22.29409],[74.05597,22.28992],[74.05472,22.28284],[74.0588,22.27462],[74.06592,22.26889],[74.06777,22.26541],[74.07448,22.26564],[74.07504,22.24756],[74.08388,22.24694],[74.08718,22.24279],[74.0839,22.23925],[74.07404,22.23819],[74.06933,22.23272],[74.07217,22.21916],[74.09204,22.2205],[74.09633,22.21996],[74.09721,22.21835],[74.10621,22.22025],[74.11105,22.2181],[74.11273,22.21404],[74.11708,22.21612],[74.12233,22.2124],[74.1222,22.21043],[74.11738,22.20647],[74.12165,22.19474],[74.11813,22.18535],[74.11883,22.18298],[74.1208,22.18224],[74.12022,22.179],[74.12265,22.17206],[74.12144,22.1674],[74.12486,22.16413],[74.13178,22.1631],[74.13386,22.16054],[74.13145,22.15897],[74.13017,22.1547],[74.13055,22.14443],[74.1269,22.1431],[74.12456,22.13608],[74.12278,22.13568],[74.12335,22.12761],[74.12833,22.12449],[74.12885,22.12104],[74.12446,22.09791],[74.12627,22.0984],[74.12849,22.09465],[74.15256,22.10601],[74.15371,22.1004],[74.15694,22.09962],[74.16285,22.1018],[74.16929,22.1006],[74.16714,22.09735],[74.16936,22.09694],[74.17034,22.09181],[74.17594,22.08969],[74.17865,22.08548],[74.16472,22.08285],[74.16395,22.07344],[74.15862,22.06971],[74.16104,22.06024],[74.16008,22.05882],[74.15444,22.05894],[74.15502,22.05781],[74.13629,22.05293],[74.13141,22.04783],[74.13144,22.04622],[74.13899,22.0434],[74.14015,22.04032],[74.12366,22.03609],[74.12155,22.03467],[74.12123,22.03219],[74.11535,22.02978],[74.11566,22.02548],[74.11428,22.02444],[74.095,22.01898],[74.09214,22.01483],[74.09638,22.00989],[74.09968,22.00142],[74.09991,22.0],[74.09677,22.0],[74.09801,21.99831],[74.09944,21.9995],[74.1128,21.99945],[74.11491,21.9979],[74.11843,21.99893],[74.12044,21.9957],[74.12722,21.99559],[74.14022,21.99048],[74.14374,21.99085],[74.1455,21.98774],[74.14796,21.98848],[74.15059,21.98659],[74.14865,21.98343],[74.14989,21.97517],[74.14754,21.97415],[74.14421,21.9754],[74.14034,21.97267],[74.14178,21.9702],[74.13984,21.96764],[74.1413,21.96384],[74.14276,21.96362],[74.14335,21.96124],[74.1458,21.96207],[74.14755,21.96072],[74.14296,21.95834],[74.14188,21.95574],[74.14417,21.95313],[74.15949,21.94971],[74.17002,21.94298],[74.17764,21.93255],[74.18184,21.92942],[74.19308,21.92597],[74.24153,21.93025],[74.26248,21.93402],[74.28118,21.93311],[74.28647,21.93611],[74.2912,21.94296],[74.29397,21.95757],[74.29718,21.96338],[74.30764,21.97176],[74.31397,21.97376],[74.33871,21.97376],[74.34842,21.977],[74.35373,21.98032],[74.36085,21.99031],[74.37582,22.00059],[74.38345,22.01619],[74.38712,22.01998],[74.39193,22.02218],[74.41515,22.02494],[74.43164,22.03027],[74.4435,22.02323],[74.43874,22.02084],[74.44387,22.01663],[74.44363,22.01117],[74.44801,22.00919],[74.44916,22.00596],[74.45218,22.00465],[74.44741,22.00063],[74.44536,22.0005],[74.44234,22.00318],[74.43798,22.00007],[74.43233,21.9994],[74.43309,21.99764],[74.43815,21.99734],[74.43978,21.99472],[74.43882,21.99089],[74.44146,21.99004],[74.43883,21.98717],[74.43939,21.97672],[74.44469,21.97548],[74.44451,21.97039],[74.45338,21.96194],[74.46109,21.96145],[74.46385,21.96607],[74.4676,21.96558],[74.46972,21.9671],[74.47137,21.96364],[74.46872,21.96108],[74.4691,21.95964],[74.47384,21.96104],[74.48159,21.95917],[74.48203,21.95475],[74.48873,21.95617],[74.49047,21.95123],[74.48449,21.94741],[74.48467,21.94581],[74.48908,21.94341],[74.49522,21.94681],[74.49712,21.94174],[74.5,21.9393],[74.50839,21.93734],[74.51256,21.93189],[74.50923,21.92064],[74.51266,21.9156],[74.51681,21.91582],[74.52405,21.91116],[74.5228,21.89909],[74.51364,21.88997],[74.51389,21.86266],[74.51001,21.82927],[74.50661,21.81638],[74.50021,21.80652],[74.49974,21.79239],[74.49821,21.79009],[74.50164,21.78152],[74.50972,21.77282],[74.51395,21.76569],[74.51163,21.75985],[74.51309,21.75658],[74.50897,21.75],[74.51204,21.74521],[74.51002,21.73743],[74.51107,21.73531],[74.50772,21.73168],[74.50802,21.72754],[74.50559,21.72631],[74.51386,21.71861],[74.53323,21.71689],[74.54737,21.7196],[74.556,21.70432],[74.55751,21.70427],[74.55538,21.69699],[74.55657,21.69282],[74.5549,21.69086],[74.55756,21.6874],[74.55416,21.68573],[74.5542,21.68136],[74.56238,21.68115],[74.56238,21.68343],[74.57987,21.68333],[74.58386,21.6733],[74.58208,21.66499],[74.61751,21.66047],[74.6224,21.65679],[74.66413,21.65253],[74.66488,21.6473],[74.66836,21.64828],[74.67104,21.64552],[74.67483,21.6465],[74.67747,21.64543],[74.67545,21.64472],[74.68396,21.6395],[74.68516,21.63365],[74.68746,21.63159],[74.69318,21.63281],[74.69989,21.63011],[74.70075,21.62758],[74.73412,21.62072],[74.77536,21.61549],[74.78287,21.61069],[74.78988,21.61276],[74.79808,21.60992],[74.79963,21.61435],[74.80217,21.6154],[74.80285,21.61411],[74.80687,21.61463],[74.80811,21.61223],[74.81232,21.61384],[74.81285,21.61078],[74.81959,21.6087],[74.82649,21.61141],[74.82886,21.60979],[74.8306,21.61171],[74.83133,21.61829],[74.83934,21.61881],[74.8381,21.62211],[74.84988,21.62388],[74.85668,21.6266],[74.86276,21.63445],[74.86538,21.62856],[74.8679,21.62848],[74.86798,21.63101],[74.87181,21.63182],[74.87199,21.62982],[74.87547,21.63074],[74.87803,21.62852],[74.87884,21.63008],[74.88402,21.63106],[74.88589,21.62941],[74.88733,21.63159],[74.89011,21.62929],[74.89139,21.63065],[74.89792,21.62826],[74.90168,21.62924],[74.91033,21.61457],[74.93534,21.60598],[74.97923,21.59524],[74.99906,21.58565],[75.01534,21.57523],[75.01502,21.56968],[75.05332,21.56482],[75.08682,21.51789],[75.08665,21.51585],[75.08921,21.51676],[75.08978,21.50346],[75.08846,21.50088],[75.09745,21.48819],[75.10195,21.47428],[75.10775,21.46667],[75.10716,21.46269],[75.12988,21.44717],[75.17012,21.43157],[75.17999,21.43055],[75.20692,21.41272],[75.2147,21.40957],[75.22119,21.40849],[75.2287,21.41426],[75.23465,21.41458],[75.2414,21.41155],[75.24907,21.40348],[75.25484,21.40189],[75.26422,21.4074],[75.28017,21.40723],[75.28737,21.41188],[75.29533,21.41357],[75.3011,21.40994],[75.29858,21.40122],[75.30013,21.3917],[75.29624,21.39023],[75.29874,21.38557],[75.30785,21.39279],[75.31541,21.38793],[75.33194,21.39136],[75.3516,21.39083],[75.35438,21.39316],[75.35563,21.40015],[75.35716,21.40087],[75.36597,21.39649],[75.37044,21.39209],[75.37541,21.39049],[75.37591,21.38661],[75.38244,21.37954],[75.39018,21.38087],[75.39792,21.37988],[75.40779,21.38738],[75.4204,21.38782],[75.42613,21.39101],[75.43118,21.38671],[75.44015,21.38446],[75.44933,21.39041],[75.45755,21.38745],[75.46794,21.39045],[75.47575,21.38658],[75.49416,21.38561],[75.49755,21.38751],[75.51201,21.38209],[75.52005,21.38702],[75.52551,21.38005],[75.53086,21.3787],[75.53502,21.37357],[75.54138,21.37341],[75.5412,21.36934],[75.54372,21.36853],[75.54645,21.36881],[75.54617,21.37242],[75.55242,21.3753],[75.55593,21.37903],[75.55827,21.37852],[75.5564,21.37461],[75.55717,21.37322],[75.56215,21.37629],[75.56577,21.37414],[75.57895,21.37648],[75.57994,21.37774],[75.57848,21.37895],[75.57145,21.37951],[75.57234,21.38247],[75.58155,21.38464],[75.58734,21.38923],[75.59169,21.38624],[75.59653,21.38771],[75.59921,21.38565],[75.60364,21.39123],[75.60694,21.39184],[75.60729,21.38895],[75.61051,21.3907],[75.61632,21.38809],[75.61667,21.38177],[75.6198,21.37897],[75.62002,21.37596],[75.62352,21.37708],[75.62303,21.37502],[75.63641,21.37742],[75.64127,21.37488],[75.64661,21.37874],[75.64817,21.37699],[75.65772,21.37877],[75.65922,21.37641],[75.66585,21.37745],[75.67009,21.37458],[75.67375,21.37708],[75.6848,21.38025],[75.68761,21.38408],[75.69223,21.38487],[75.6928,21.38369],[75.70324,21.38807],[75.70949,21.38619],[75.71576,21.38798],[75.71617,21.3856],[75.71877,21.38436],[75.72847,21.38868],[75.73253,21.38711],[75.73656,21.38827],[75.75113,21.38466],[75.75514,21.37938],[75.77382,21.38205],[75.77702,21.38452],[75.78646,21.38413],[75.78783,21.38281],[75.79042,21.3846],[75.80093,21.38335],[75.80273,21.38457],[75.81304,21.37906],[75.83073,21.37821],[75.83071,21.37696],[75.83336,21.37664],[75.83417,21.37957],[75.84139,21.38454],[75.84332,21.38195],[75.84794,21.38134],[75.85316,21.38338],[75.85571,21.38232],[75.85604,21.3802],[75.86246,21.37992],[75.86256,21.38216],[75.86415,21.3811],[75.86978,21.3864],[75.87035,21.39123],[75.87505,21.39288],[75.88306,21.39295],[75.88561,21.39471],[75.89036,21.39467],[75.89419,21.39129],[75.90324,21.3917],[75.91066,21.38257],[75.92901,21.38659],[75.94171,21.38584],[75.95222,21.38958],[75.96306,21.38971],[75.98662,21.36877],[76.0305,21.36533],[76.04859,21.34973],[76.0966,21.37177],[76.11668,21.33495],[76.11894,21.32597],[76.12147,21.32337],[76.1259,21.29852],[76.12974,21.2867],[76.14293,21.28623],[76.14663,21.26787],[76.14848,21.26906],[76.15116,21.26799],[76.15193,21.26446],[76.154,21.26513],[76.15429,21.2577],[76.15559,21.25702],[76.15718,21.25961],[76.15936,21.25597],[76.15941,21.25359],[76.15733,21.25139],[76.15387,21.25193],[76.155,21.24967],[76.15226,21.24846],[76.15358,21.24622],[76.15061,21.2464],[76.15143,21.24353],[76.1454,21.24365],[76.14156,21.24099],[76.14204,21.22816],[76.16566,21.22162],[76.15864,21.21359],[76.16326,21.21313],[76.16334,21.20651],[76.1697,21.20665],[76.1697,21.20541],[76.17192,21.2053],[76.17161,21.19896],[76.16629,21.19972],[76.16521,21.19047],[76.17306,21.18857],[76.1764,21.184],[76.17146,21.17954],[76.17169,21.16656],[76.16798,21.16638],[76.16629,21.16951],[76.13386,21.16941],[76.13333,21.17596],[76.12926,21.17582],[76.12379,21.17182],[76.12283,21.17312],[76.11888,21.17159],[76.1138,21.16616],[76.11184,21.16698],[76.11141,21.16115],[76.11539,21.154],[76.12006,21.15547],[76.12863,21.15246],[76.133,21.14823],[76.1347,21.14266],[76.14247,21.13515],[76.14101,21.12971],[76.13715,21.13189],[76.13541,21.12921],[76.13163,21.1328],[76.13232,21.12744],[76.13793,21.11985],[76.15382,21.10805],[76.15862,21.1094],[76.16348,21.10488],[76.17089,21.10393],[76.17044,21.09388],[76.17385,21.08968],[76.16843,21.08567],[76.16685,21.07993],[76.16808,21.07939],[76.18064,21.08031],[76.18589,21.08488],[76.19248,21.0867],[76.20463,21.08539],[76.21181,21.08738],[76.22466,21.08498],[76.23058,21.08833],[76.24497,21.09044],[76.26038,21.09058],[76.27263,21.08874],[76.28013,21.07069],[76.29985,21.07384],[76.33858,21.07152],[76.35142,21.07699],[76.36631,21.07606],[76.37096,21.07273],[76.37477,21.07255],[76.38424,21.07629],[76.38243,21.07962],[76.39033,21.08577],[76.40422,21.08744],[76.40794,21.08941],[76.41319,21.08842],[76.41262,21.09773],[76.4107,21.10244],[76.43017,21.10241],[76.43783,21.10047],[76.44105,21.1062],[76.45609,21.1084],[76.45537,21.11509],[76.45176,21.12125],[76.45642,21.12501],[76.45814,21.13328],[76.46945,21.13366],[76.47439,21.13698],[76.46823,21.13835],[76.46655,21.14266],[76.47873,21.14739],[76.48066,21.18216],[76.49317,21.19386],[76.4979,21.19128],[76.49878,21.19375],[76.5026,21.19321],[76.50096,21.18977],[76.50254,21.18746],[76.5072,21.18872],[76.50833,21.19303],[76.51102,21.18979],[76.53026,21.18193],[76.53578,21.18623],[76.55177,21.19207],[76.56069,21.19862],[76.56726,21.19939],[76.59955,21.19075],[76.60603,21.19034],[76.61388,21.19322],[76.62349,21.18504],[76.63722,21.20271],[76.63427,21.21368],[76.63481,21.2191],[76.64183,21.23713],[76.64968,21.24468],[76.66164,21.24071],[76.6629,21.27596],[76.66269,21.28068],[76.65482,21.28976],[76.65349,21.29352],[76.64738,21.30165],[76.64563,21.30108],[76.62175,21.33229],[76.68282,21.37841],[76.7262,21.40474],[76.73951,21.41056],[76.74095,21.41288],[76.73958,21.41413],[76.74054,21.41757],[76.73793,21.4222],[76.74102,21.42818],[76.73839,21.42969],[76.74443,21.43987],[76.75496,21.44557],[76.76181,21.4523],[76.78128,21.45934],[76.78402,21.46237],[76.78603,21.46582],[76.78785,21.47749],[76.79138,21.48008],[76.79377,21.47965],[76.79561,21.48958],[76.78767,21.49759],[76.78776,21.50114],[76.78421,21.50128],[76.78073,21.50559],[76.7729,21.50572],[76.76344,21.52077],[76.76881,21.52657],[76.78137,21.5293],[76.78933,21.53638],[76.7891,21.54067],[76.78174,21.55158],[76.78141,21.56472],[76.784,21.57409],[76.79105,21.58158],[76.79526,21.59391],[76.80065,21.59495],[76.82738,21.58829],[76.83291,21.58895],[76.8394,21.59331],[76.84471,21.6075],[76.8499,21.61211],[76.85449,21.61332],[76.86865,21.60876],[76.88569,21.60008],[76.89722,21.5961],[76.90162,21.59684],[76.90863,21.60275],[76.90995,21.60832],[76.91289,21.61176],[76.92836,21.6243],[76.94231,21.63209],[76.95323,21.64213],[76.97237,21.65135],[76.97641,21.65738],[76.9901,21.6649],[76.99649,21.67237],[77.00656,21.67914],[77.01501,21.68228],[77.04363,21.69977],[77.06247,21.70718],[77.06856,21.71579],[77.07322,21.71945],[77.07922,21.71994],[77.08654,21.71442],[77.10796,21.71829],[77.1173,21.72149],[77.12957,21.72224],[77.13919,21.71981],[77.14772,21.71252],[77.16512,21.71074],[77.16964,21.71429],[77.1696,21.72225],[77.1721,21.72485],[77.17603,21.72575],[77.19145,21.72075],[77.1913,21.71261],[77.18813,21.70171],[77.19889,21.69778],[77.20313,21.69277],[77.21042,21.68965],[77.21288,21.69501],[77.21883,21.69395],[77.22078,21.69651],[77.22775,21.69953],[77.22691,21.71679],[77.2323,21.71498],[77.23554,21.71635],[77.24249,21.7147],[77.24438,21.71643],[77.25147,21.7128],[77.26188,21.71229],[77.26756,21.72504],[77.27188,21.72814],[77.27926,21.72406],[77.28722,21.72192],[77.29114,21.73285],[77.28422,21.7369],[77.28729,21.74472],[77.28026,21.74908],[77.27973,21.75422],[77.28047,21.75858],[77.28989,21.76034],[77.29936,21.75596],[77.31579,21.75657],[77.32443,21.75274],[77.34568,21.75778],[77.35903,21.75415],[77.37305,21.75372],[77.3757,21.75492],[77.38124,21.75309],[77.40417,21.75242],[77.41707,21.75348],[77.42946,21.75771],[77.45629,21.76021],[77.46048,21.76342],[77.47909,21.76999],[77.48337,21.76595],[77.48217,21.76385],[77.47795,21.76283],[77.47974,21.75944],[77.47947,21.75415],[77.49051,21.74698],[77.49495,21.74831],[77.50267,21.74586],[77.50221,21.74342],[77.50454,21.73944],[77.5086,21.73821],[77.51196,21.7322],[77.51971,21.72524],[77.52555,21.72431],[77.5231,21.71972],[77.52402,21.71262],[77.52702,21.71091],[77.53322,21.71135],[77.54323,21.70428],[77.54767,21.69402],[77.55097,21.68078],[77.55386,21.67896],[77.5611,21.6673],[77.56417,21.64188],[77.5725,21.6287],[77.57552,21.62064],[77.57268,21.61598],[77.57545,21.58144],[77.57696,21.57729],[77.57464,21.57228],[77.57412,21.56469],[77.57711,21.55517],[77.58214,21.55378],[77.59529,21.55943],[77.60874,21.54819],[77.61148,21.53882],[77.59677,21.52711],[77.57523,21.52646],[77.54714,21.53672],[77.53722,21.53652],[77.5213,21.54097],[77.50519,21.55167],[77.47397,21.54952],[77.46619,21.55329],[77.45489,21.55384],[77.45412,21.54958],[77.45632,21.54623],[77.45009,21.54168],[77.44005,21.54478],[77.42556,21.53774],[77.42252,21.53256],[77.42231,21.51748],[77.42944,21.50471],[77.43539,21.49958],[77.44332,21.48725],[77.44219,21.48062],[77.43874,21.47865],[77.44147,21.47505],[77.44219,21.46991],[77.45982,21.46662],[77.46591,21.45982],[77.4736,21.45445],[77.47171,21.45029],[77.47435,21.44659],[77.47165,21.43613],[77.4766,21.43179],[77.47955,21.42025],[77.48751,21.40622],[77.48694,21.3859],[77.48987,21.37796],[77.48806,21.37436],[77.50221,21.37719],[77.51452,21.37594],[77.51671,21.38402],[77.51854,21.38392],[77.52329,21.38894],[77.52539,21.39565],[77.52473,21.40293],[77.52786,21.40563],[77.52924,21.4153],[77.53172,21.41915],[77.53591,21.4177],[77.54269,21.41115],[77.54829,21.41131],[77.54766,21.40532],[77.55344,21.4034],[77.56146,21.39646],[77.56324,21.39315],[77.56252,21.39041],[77.55967,21.39055],[77.55678,21.38364],[77.56281,21.37534],[77.5635,21.36931],[77.57114,21.36867],[77.57343,21.37093],[77.58528,21.36679],[77.58711,21.36284],[77.59182,21.36504],[77.59482,21.36303],[77.60513,21.36244],[77.60785,21.36494],[77.60826,21.37049],[77.60617,21.37357],[77.60343,21.38984],[77.60497,21.39073],[77.6139,21.39205],[77.61726,21.38712],[77.63265,21.38881],[77.63977,21.3887],[77.64326,21.38692],[77.64936,21.39207],[77.65313,21.39146],[77.65592,21.38614],[77.66648,21.38405],[77.66438,21.37451],[77.66991,21.36892],[77.67866,21.37691],[77.69199,21.39757],[77.69548,21.39637],[77.69708,21.39271],[77.69517,21.37876],[77.69741,21.3743],[77.7006,21.37367],[77.7047,21.377],[77.70739,21.37505],[77.70676,21.3682],[77.70999,21.35745],[77.72329,21.36167],[77.73711,21.3622],[77.73838,21.36477],[77.74057,21.36542],[77.74605,21.37849],[77.75004,21.38283],[77.76122,21.38517],[77.76388,21.3814],[77.79677,21.38901],[77.79828,21.40491],[77.80115,21.4096],[77.82262,21.40733],[77.84262,21.3972],[77.84728,21.3925],[77.85637,21.39019],[77.8568,21.38852],[77.86758,21.38787],[77.88385,21.38417],[77.88327,21.37604],[77.88843,21.3781],[77.907,21.37784],[77.91209,21.38113],[77.92759,21.38599],[77.94119,21.38577],[77.94051,21.39037],[77.94259,21.39661],[77.96512,21.40221],[77.98473,21.40319],[78.00127,21.41469],[78.0091,21.41511],[78.01424,21.41856],[78.02132,21.41912],[78.03009,21.42214],[78.04029,21.42845],[78.04602,21.43398],[78.06606,21.43797],[78.08318,21.44602],[78.09873,21.45865],[78.11335,21.46346],[78.12587,21.46984],[78.13655,21.47816],[78.17621,21.49975],[78.17447,21.50798],[78.1773,21.5078],[78.18263,21.51175],[78.17125,21.52558],[78.1755,21.5281],[78.17286,21.53875],[78.17421,21.54726],[78.18189,21.55734],[78.20547,21.55297],[78.22328,21.55316],[78.23192,21.55675],[78.23958,21.56307],[78.24805,21.56232],[78.27386,21.56925],[78.27327,21.57121],[78.2603,21.57966],[78.26137,21.58674],[78.2644,21.59127],[78.26648,21.59173],[78.27182,21.59066],[78.27522,21.59182],[78.28115,21.58524],[78.29121,21.58323],[78.30297,21.58374],[78.30395,21.57045],[78.30705,21.56957],[78.30817,21.57151],[78.32031,21.57205],[78.32661,21.575],[78.34275,21.58906],[78.34542,21.58176],[78.34852,21.58067],[78.34894,21.57863],[78.35542,21.57332],[78.36306,21.5752],[78.3778,21.58373],[78.38162,21.59204],[78.37264,21.61345],[78.38742,21.61484],[78.39243,21.61373],[78.39285,21.60934],[78.39463,21.60779],[78.40692,21.60879],[78.41266,21.60553],[78.41657,21.60111],[78.42719,21.59921],[78.42159,21.59104],[78.41906,21.57985],[78.41871,21.57079],[78.42536,21.56993],[78.42539,21.56527],[78.42789,21.55943],[78.42424,21.54444],[78.43464,21.53409],[78.43399,21.53122],[78.42979,21.52767],[78.43075,21.52489],[78.43846,21.51785],[78.43705,21.51595],[78.43205,21.51444],[78.43444,21.51049],[78.43391,21.5062],[78.4365,21.4995],[78.43955,21.5023],[78.4445,21.50172],[78.44831,21.4998],[78.44965,21.49552],[78.453,21.49683],[78.45709,21.49607],[78.46068,21.50348],[78.46365,21.50383],[78.46966,21.50087],[78.47522,21.50097],[78.4757,21.50571],[78.48685,21.50553],[78.48694,21.50777],[78.49503,21.51725],[78.50061,21.51709],[78.50472,21.52679],[78.50926,21.52602],[78.51164,21.52869],[78.53076,21.52326],[78.54067,21.52372],[78.54973,21.51828],[78.55598,21.51762],[78.55653,21.51555],[78.56002,21.51328],[78.57015,21.51425],[78.56702,21.5097],[78.56785,21.50579],[78.57315,21.50156],[78.57172,21.4989],[78.57636,21.49787],[78.58249,21.4923],[78.58177,21.48995],[78.58415,21.49006],[78.58534,21.48672],[78.59475,21.48848],[78.60098,21.4854],[78.60301,21.48809],[78.60877,21.48906],[78.61918,21.48157],[78.61997,21.47826],[78.62868,21.47568],[78.64343,21.48552],[78.65931,21.48138],[78.66712,21.47709],[78.67094,21.48009],[78.68891,21.48197],[78.69014,21.4802],[78.68849,21.47794],[78.69335,21.47909],[78.70167,21.47632],[78.69984,21.47381],[78.70738,21.47391],[78.70756,21.47063],[78.72847,21.46229],[78.731,21.46381],[78.73343,21.46969],[78.74559,21.47019],[78.74495,21.48101],[78.75085,21.49298],[78.75663,21.49024],[78.76687,21.48904],[78.7666,21.4828],[78.76881,21.4775],[78.7716,21.47672],[78.7719,21.47168],[78.77613,21.46458],[78.77877,21.46936],[78.78015,21.47887],[78.78663,21.47934],[78.78698,21.48089],[78.78869,21.48089],[78.78998,21.48639],[78.79599,21.48554],[78.80026,21.49016],[78.81516,21.49064],[78.81557,21.4877],[78.81979,21.48726],[78.82975,21.49017],[78.84105,21.487],[78.84844,21.49003],[78.85191,21.48972],[78.85619,21.49284],[78.85586,21.49462],[78.86331,21.4927],[78.86803,21.49408],[78.86763,21.49131],[78.87152,21.48969],[78.89084,21.48526],[78.89518,21.49828],[78.89926,21.50046],[78.9174,21.49225],[78.92306,21.48745],[78.93669,21.48577],[78.93924,21.49354],[78.94025,21.50787],[78.9413,21.5113],[78.94467,21.51266],[78.94439,21.51588],[78.93543,21.52283],[78.9318,21.52367],[78.92743,21.52225],[78.92593,21.53269],[78.92987,21.54036],[78.92555,21.54082],[78.9186,21.54713],[78.91255,21.54886],[78.91338,21.55078],[78.9068,21.55326],[78.91274,21.5553],[78.91817,21.56114],[78.92792,21.55958],[78.93186,21.56176],[78.93194,21.56452],[78.91375,21.57099],[78.91505,21.58299],[78.91652,21.58493],[78.9163,21.58759],[78.91435,21.58899],[78.91571,21.58866],[78.91676,21.59092],[78.92767,21.5902],[78.92997,21.59284],[78.94393,21.59215],[78.94742,21.59672],[78.952,21.59717],[78.96512,21.60489],[78.96993,21.61052],[78.97426,21.6128],[78.97552,21.61764],[78.98714,21.61596],[78.99596,21.61696],[78.99801,21.61857],[79.00291,21.60642],[79.01237,21.59945],[79.01921,21.60259],[79.02484,21.60169],[79.04188,21.60473],[79.04769,21.60244],[79.05294,21.60416],[79.05537,21.60148],[79.05825,21.60151],[79.07647,21.6054],[79.08851,21.60395],[79.08965,21.59757],[79.09396,21.59811],[79.09336,21.60161],[79.103,21.60149],[79.10721,21.60503],[79.10694,21.60721],[79.10207,21.60923],[79.10053,21.6176],[79.11211,21.62391],[79.11862,21.62382],[79.12289,21.62493],[79.1239,21.62659],[79.13034,21.62581],[79.13452,21.63321],[79.1433,21.63696],[79.14528,21.64669],[79.14824,21.65087],[79.14831,21.66117],[79.20899,21.65006],[79.22402,21.6488],[79.22411,21.65543],[79.23031,21.65572],[79.23131,21.65698],[79.23118,21.67035],[79.22906,21.67398],[79.22182,21.67704],[79.22086,21.69287],[79.22679,21.70368],[79.23394,21.70858],[79.23737,21.71341],[79.23522,21.71752],[79.23086,21.71875],[79.23119,21.72228],[79.24193,21.72018],[79.24496,21.72148],[79.26807,21.71541],[79.27791,21.70937],[79.28051,21.70172],[79.2858,21.69547],[79.2886,21.69528],[79.29059,21.69254],[79.29669,21.69331],[79.31141,21.68827],[79.31826,21.68851],[79.32224,21.68523],[79.32455,21.68797],[79.34289,21.68396],[79.35427,21.68483],[79.35237,21.67806],[79.357,21.67925],[79.37465,21.67841],[79.39249,21.67412],[79.39609,21.67651],[79.40044,21.67677],[79.40271,21.68221],[79.41012,21.68475],[79.41566,21.69116],[79.4222,21.69182],[79.42799,21.68975],[79.43525,21.68283],[79.4495,21.68206],[79.46073,21.68755],[79.48072,21.67784],[79.49621,21.67422],[79.49621,21.66541],[79.50135,21.65979],[79.50134,21.65171],[79.50676,21.64567],[79.50427,21.6411],[79.50657,21.63896],[79.50777,21.63435],[79.5161,21.63138],[79.51723,21.62575],[79.51662,21.62085],[79.50713,21.62132],[79.50371,21.61459],[79.50439,21.61124],[79.511,21.60488],[79.51008,21.59566],[79.51203,21.58397],[79.51824,21.58036],[79.52864,21.57935],[79.53206,21.57502],[79.54251,21.56823],[79.54393,21.55952],[79.53752,21.54875],[79.538,21.54551],[79.54061,21.54268],[79.56581,21.54764],[79.57598,21.542],[79.58138,21.5413],[79.59164,21.54788],[79.59997,21.54948],[79.6185,21.55726],[79.62226,21.55757],[79.63959,21.55297],[79.65205,21.55598],[79.65527,21.55811],[79.65837,21.56375],[79.66094,21.5769],[79.67543,21.5823],[79.68955,21.58096],[79.69501,21.58539],[79.69907,21.5929],[79.71201,21.59187],[79.71816,21.59306],[79.72494,21.59581],[79.73281,21.60302],[79.73763,21.60386],[79.74186,21.603],[79.7543,21.59549],[79.79207,21.58659],[79.82151,21.56154],[79.82856,21.54887],[79.83125,21.54692],[79.8507,21.54082],[79.86313,21.5308],[79.87319,21.52954],[79.88224,21.52622],[79.89124,21.51819],[79.897,21.52438],[79.9097,21.52277],[79.91846,21.52454],[79.92219,21.5418],[79.92977,21.55258],[79.9359,21.55624],[79.94821,21.55417],[79.96389,21.55835],[79.97148,21.55772],[79.97952,21.55052],[79.9887,21.53693],[79.99681,21.53362],[80.0041,21.53546],[80.03287,21.55621],[80.04451,21.55624],[80.05611,21.55343],[80.06669,21.5542],[80.07221,21.55679],[80.09013,21.57455],[80.09633,21.58504],[80.10124,21.58999],[80.11072,21.59084],[80.11606,21.59325],[80.11821,21.59852],[80.11797,21.60759],[80.11971,21.60988],[80.12786,21.61159],[80.14411,21.60578],[80.15462,21.60647],[80.1602,21.61066],[80.16909,21.62214],[80.18763,21.62854],[80.19278,21.63545],[80.20883,21.63523],[80.21452,21.63017],[80.21746,21.63343],[80.21898,21.62887],[80.21689,21.62565],[80.22148,21.62097],[80.23529,21.6224],[80.24584,21.62049],[80.25,21.62418],[80.25345,21.62475],[80.27014,21.61606],[80.2813,21.59605],[80.29407,21.59332],[80.29523,21.58136],[80.29806,21.57581],[80.30325,21.5748],[80.31823,21.57712],[80.32775,21.5714],[80.33191,21.56093],[80.33931,21.55508],[80.33068,21.55118],[80.33131,21.54754],[80.34434,21.53867],[80.36015,21.53446],[80.37719,21.52225],[80.37878,21.51381],[80.38477,21.49974],[80.38397,21.4901],[80.39211,21.4867],[80.39042,21.47941],[80.39722,21.47159],[80.40372,21.46753],[80.40906,21.46737],[80.41108,21.45988],[80.41389,21.45731],[80.41799,21.4485],[80.4187,21.4426],[80.42216,21.44054],[80.4046,21.42502],[80.40891,21.42104],[80.40857,21.41842],[80.39812,21.4123],[80.39604,21.40811],[80.39638,21.40298],[80.40676,21.3817],[80.41224,21.37672],[80.41694,21.3752],[80.43061,21.37626],[80.43246,21.37383],[80.43705,21.37268],[80.44612,21.37109],[80.44863,21.37205],[80.45174,21.37806],[80.44973,21.38732],[80.4542,21.39526],[80.45632,21.39611],[80.4558,21.39826],[80.45826,21.40036],[80.45701,21.40046],[80.45756,21.40268],[80.46235,21.40263],[80.47093,21.39586],[80.47364,21.3969],[80.47647,21.3949],[80.47979,21.39673],[80.48109,21.40094],[80.48341,21.39881],[80.48419,21.39534],[80.48752,21.39796],[80.49521,21.39658],[80.50097,21.39851],[80.50168,21.3956],[80.50842,21.39082],[80.51122,21.39284],[80.51501,21.39176],[80.51712,21.3952],[80.52393,21.39122],[80.52519,21.39402],[80.52762,21.39487],[80.5318,21.38207],[80.5392,21.38271],[80.54316,21.37071],[80.54848,21.37114],[80.55083,21.36874],[80.55333,21.36856],[80.5543,21.3665],[80.55841,21.36734],[80.56074,21.36365],[80.56388,21.36497],[80.57019,21.35752],[80.56541,21.35399],[80.56503,21.3494],[80.56756,21.34824],[80.5667,21.34565],[80.57277,21.3428],[80.57657,21.34687],[80.58137,21.34699],[80.58457,21.34423],[80.58947,21.34372],[80.59142,21.34092],[80.58934,21.3336],[80.59779,21.33155],[80.59989,21.3268],[80.60786,21.32386],[80.60891,21.32714],[80.61116,21.32761],[80.62134,21.32037],[80.64491,21.32804],[80.65191,21.32713],[80.66163,21.33613],[80.67134,21.33844],[80.67242,21.34096],[80.67128,21.34519],[80.67755,21.34843],[80.67648,21.35101],[80.68188,21.35995],[80.6802,21.36486],[80.68493,21.37015],[80.68739,21.36996],[80.69029,21.37207],[80.69911,21.39094],[80.69716,21.39343],[80.70055,21.3966],[80.69993,21.40458],[80.70687,21.41279],[80.70719,21.42546],[80.70574,21.43088],[80.70682,21.43307],[80.71429,21.43619],[80.7244,21.44518],[80.73493,21.45991],[80.73775,21.47312],[80.73716,21.48098],[80.73289,21.48434],[80.7276,21.4962],[80.72929,21.49896],[80.73321,21.50066],[80.7315,21.50818],[80.73365,21.51279],[80.73048,21.5156],[80.74078,21.53923],[80.73419,21.54577],[80.72763,21.54869],[80.72455,21.55267],[80.71999,21.555],[80.72238,21.55993],[80.72117,21.56122],[80.72598,21.56635],[80.72571,21.5691],[80.72867,21.56995],[80.72891,21.57258],[80.7255,21.58009],[80.71536,21.58505],[80.71861,21.58743],[80.71543,21.5903],[80.71808,21.5932],[80.71637,21.59907],[80.71879,21.60037],[80.71705,21.60297],[80.72191,21.60955],[80.72498,21.60955],[80.72297,21.61203],[80.7234,21.61405],[80.73095,21.61735],[80.7291,21.62056],[80.73157,21.62651],[80.72901,21.62686],[80.72958,21.63403],[80.72764,21.63666],[80.72685,21.64562],[80.71928,21.64537],[80.71708,21.66008],[80.71439,21.66155],[80.7163,21.66328],[80.71526,21.66578],[80.71801,21.66619],[80.71918,21.66849],[80.71598,21.67473],[80.72145,21.677],[80.72531,21.68128],[80.72978,21.69206],[80.733,21.69266],[80.73414,21.69451],[80.73233,21.69816],[80.73513,21.70389],[80.73397,21.70594],[80.72902,21.70692],[80.72568,21.71214],[80.72614,21.71367],[80.73206,21.71366],[80.734,21.72053],[80.73338,21.72777],[80.73987,21.732],[80.73781,21.73626],[80.74034,21.74413],[80.74747,21.75554],[80.75599,21.76206],[80.75938,21.75918],[80.77203,21.75852],[80.77792,21.75477],[80.77627,21.75363],[80.77963,21.7507],[80.78585,21.74876],[80.78446,21.74287],[80.78543,21.74031],[80.80326,21.74447],[80.80451,21.74662],[80.80926,21.74843],[80.81974,21.74802],[80.82017,21.75402],[80.81661,21.75399],[80.81563,21.75573],[80.81712,21.76213],[80.81864,21.7656],[80.822,21.76602],[80.82278,21.76795],[80.82133,21.768],[80.82458,21.77045],[80.82263,21.7714],[80.82406,21.77218],[80.82274,21.77289],[80.82358,21.77499],[80.82821,21.77621],[80.82709,21.77863],[80.82954,21.77994],[80.8262,21.78159],[80.82618,21.78298],[80.83022,21.78678],[80.82984,21.78916],[80.83181,21.78946],[80.83205,21.7942],[80.83663,21.7961],[80.83567,21.79717],[80.84018,21.80215],[80.83862,21.80231],[80.8395,21.80323],[80.83809,21.80531],[80.83956,21.80721],[80.83751,21.80945],[80.84036,21.8124],[80.83906,21.81327],[80.84143,21.81539],[80.84039,21.81823],[80.84518,21.82882],[80.84247,21.83553],[80.83837,21.8367],[80.83868,21.83836],[80.8407,21.83867],[80.83891,21.84002],[80.84127,21.83978],[80.83937,21.84784],[80.84654,21.85281],[80.85094,21.8521],[80.85256,21.85486],[80.85024,21.85588],[80.84929,21.85917],[80.8465,21.85997],[80.8487,21.8619],[80.84741,21.86354],[80.84524,21.86233],[80.84539,21.86475],[80.84276,21.86533],[80.84576,21.86975],[80.84909,21.87113],[80.85272,21.87048],[80.85331,21.87257],[80.84956,21.87344],[80.84991,21.87625],[80.84621,21.87387],[80.84295,21.87607],[80.84504,21.87767],[80.84279,21.88064],[80.84326,21.88239],[80.83499,21.88559],[80.83276,21.88911],[80.83394,21.89105],[80.83205,21.89035],[80.83477,21.89574],[80.83339,21.90213],[80.83614,21.907],[80.83212,21.90797],[80.835,21.90834],[80.83623,21.91461],[80.83981,21.91945],[80.83925,21.92305],[80.8461,21.92624],[80.84562,21.93043],[80.84765,21.93074],[80.8477,21.93253],[80.84581,21.93397],[80.84571,21.93985],[80.84139,21.94117],[80.84589,21.94208],[80.84204,21.94415],[80.84304,21.94612],[80.83753,21.94698],[80.83647,21.94974],[80.83404,21.94575],[80.83129,21.94729],[80.83318,21.95011],[80.82898,21.94838],[80.82747,21.95127],[80.82913,21.95355],[80.82602,21.95284],[80.8275,21.95617],[80.82549,21.95842],[80.82881,21.95871],[80.83606,21.95453],[80.83849,21.95797],[80.84087,21.95558],[80.85267,21.95731],[80.85914,21.97078],[80.86575,21.99426],[80.87578,22.01104],[80.87695,22.03391],[80.87579,22.03853],[80.8858,22.04962],[80.88216,22.05248],[80.88251,22.05856],[80.88611,22.05915],[80.88901,22.0571],[80.89295,22.06308],[80.89707,22.06478],[80.90793,22.10957],[80.91469,22.11319],[80.92195,22.11995],[80.94758,22.11827],[80.95698,22.11042],[80.96076,22.10357],[80.96101,22.10003],[80.96655,22.09353],[80.97166,22.08305],[80.97213,22.07891],[80.96918,22.06671],[80.9694,22.05799],[80.98054,22.05471],[80.98354,22.0486],[80.98967,22.05138],[80.99439,22.04924],[80.99488,22.05861],[81.00317,22.05849],[81.0062,22.06321],[81.00895,22.07177],[81.0067,22.075],[81.00458,22.07536],[81.00145,22.0835],[81.00612,22.09219],[81.01133,22.09557],[81.00666,22.09995],[81.00316,22.10106],[80.99048,22.11355],[80.98434,22.11456],[80.98096,22.11021],[80.97814,22.12011],[80.9826,22.1257],[80.98895,22.12825],[80.99487,22.13302],[80.99906,22.13132],[81.01368,22.13367],[81.02191,22.13273],[81.02378,22.14867],[81.02221,22.15773],[81.02631,22.16284],[81.02675,22.16639],[81.01716,22.17961],[81.01666,22.18553],[81.02243,22.18947],[81.02553,22.1874],[81.03066,22.1874],[81.02901,22.1925],[81.03164,22.19965],[81.03037,22.20317],[81.02176,22.21212],[81.01946,22.22118],[81.02364,22.22928],[81.02705,22.22892],[81.03791,22.23389],[81.05006,22.24455],[81.05961,22.24429],[81.07261,22.24837],[81.07604,22.24465],[81.07771,22.23904],[81.07955,22.23938],[81.08241,22.24383],[81.09153,22.249],[81.09731,22.26898],[81.10185,22.2783],[81.10799,22.2845],[81.11872,22.29126],[81.11894,22.30922],[81.11355,22.32413],[81.12121,22.3426],[81.11312,22.35327],[81.10867,22.37382],[81.10366,22.38337],[81.10598,22.38769],[81.10834,22.40096],[81.11034,22.41744],[81.10882,22.42876],[81.11116,22.43757],[81.12053,22.4458],[81.12701,22.44923],[81.14103,22.45423],[81.1497,22.45313],[81.15512,22.45491],[81.16282,22.47455],[81.16724,22.47797],[81.17269,22.48791],[81.18697,22.48884],[81.19352,22.49095],[81.19767,22.48957],[81.19992,22.4852],[81.20145,22.4682],[81.19946,22.46303],[81.20612,22.46084],[81.20774,22.45659],[81.23219,22.45216],[81.24831,22.45878],[81.26193,22.47217],[81.25978,22.48513],[81.26213,22.49327],[81.26907,22.49432],[81.27329,22.49319],[81.28127,22.50295],[81.29178,22.49429],[81.29995,22.49029],[81.30729,22.48191],[81.31373,22.48292],[81.31518,22.48777],[81.32049,22.48596],[81.3228,22.48916],[81.32225,22.49118],[81.31813,22.49392],[81.32089,22.49523],[81.3182,22.50186],[81.31985,22.50323],[81.31993,22.50705],[81.31721,22.51461],[81.31839,22.51686],[81.32338,22.51893],[81.32287,22.52302],[81.32653,22.52614],[81.33474,22.52424],[81.34006,22.51951],[81.3506,22.51759],[81.35388,22.51423],[81.35431,22.51126],[81.36059,22.51204],[81.36136,22.515],[81.37063,22.51488],[81.37582,22.51105],[81.38206,22.50982],[81.38619,22.49855],[81.38406,22.48976],[81.3915,22.47771],[81.39125,22.47109],[81.38865,22.46821],[81.39006,22.46331],[81.38811,22.45921],[81.39045,22.45582],[81.39006,22.45226],[81.39298,22.44904],[81.39641,22.44008],[81.4067,22.44095],[81.42295,22.44769],[81.4287,22.45689],[81.42451,22.46327],[81.42278,22.47005],[81.42784,22.47981],[81.43221,22.47921],[81.43921,22.48212],[81.44153,22.47991],[81.44293,22.4738],[81.44102,22.47178],[81.44737,22.46588],[81.45528,22.46688],[81.45893,22.46929],[81.4573,22.47168],[81.45589,22.4695],[81.44903,22.46752],[81.44662,22.46976],[81.45019,22.47124],[81.45088,22.47859],[81.4464,22.47618],[81.44254,22.4792],[81.44724,22.48465],[81.45108,22.4866],[81.44397,22.49072],[81.44261,22.49435],[81.44689,22.49343],[81.44942,22.49576],[81.45257,22.49581],[81.45884,22.48947],[81.46301,22.49307],[81.4728,22.49374],[81.47856,22.49222],[81.48471,22.48783],[81.48701,22.49024],[81.48631,22.49376],[81.48938,22.50317],[81.49442,22.50501],[81.49744,22.51164],[81.49553,22.51426],[81.49665,22.51952],[81.50931,22.52606],[81.51049,22.52196],[81.51824,22.5198],[81.52344,22.53217],[81.52134,22.5366],[81.52223,22.53901],[81.53267,22.53853],[81.54098,22.53304],[81.54608,22.52758],[81.55296,22.53105],[81.55895,22.53079],[81.56253,22.53344],[81.57003,22.53227],[81.56303,22.53396],[81.56275,22.54236],[81.56283,22.5475],[81.56955,22.55073],[81.58623,22.54392],[81.59183,22.54522],[81.59634,22.53653],[81.59998,22.53526],[81.60499,22.53461],[81.61321,22.53867],[81.61542,22.53692],[81.62194,22.53802],[81.62869,22.54442],[81.62404,22.55588],[81.62903,22.56336],[81.63519,22.56528],[81.63625,22.56005],[81.63874,22.5611],[81.64277,22.55971],[81.64929,22.56328],[81.65346,22.56302],[81.65993,22.56946],[81.65618,22.57229],[81.65556,22.57582],[81.65517,22.57881],[81.65783,22.58444],[81.65184,22.58085],[81.64971,22.58145],[81.64896,22.58496],[81.64548,22.58444],[81.64498,22.58686],[81.64943,22.58895],[81.64649,22.59341],[81.64803,22.5977],[81.64571,22.60487],[81.64725,22.61326],[81.65274,22.61856],[81.6609,22.61929],[81.66244,22.62681],[81.66904,22.63196],[81.67205,22.63256],[81.67451,22.63755],[81.68332,22.64691],[81.68877,22.64847],[81.69889,22.64476],[81.71314,22.64809],[81.72272,22.65706],[81.72526,22.67308],[81.72785,22.67535],[81.73947,22.67212],[81.73953,22.67509],[81.74299,22.67254],[81.7464,22.66291],[81.75029,22.65935],[81.75202,22.65437],[81.74901,22.65178],[81.74847,22.64837],[81.74998,22.64558],[81.75263,22.64449],[81.75704,22.6472],[81.77237,22.66821],[81.77284,22.6847],[81.76115,22.69753],[81.75344,22.72102],[81.75359,22.72852],[81.75573,22.73379],[81.76993,22.73558],[81.76902,22.74187],[81.77307,22.75055],[81.77928,22.75086],[81.78848,22.76355],[81.79439,22.76646],[81.78358,22.77918],[81.7837,22.78395],[81.78098,22.78994],[81.78193,22.79607],[81.78413,22.7987],[81.78178,22.81095],[81.77791,22.81328],[81.77766,22.81643],[81.76946,22.82776],[81.76135,22.83029],[81.76784,22.83541],[81.77401,22.85022],[81.77653,22.85164],[81.77729,22.85549],[81.7749,22.86391],[81.77746,22.86752],[81.77568,22.87444],[81.81758,22.88228],[81.82748,22.8828],[81.83392,22.8809],[81.83837,22.88278],[81.83824,22.88525],[81.84207,22.88775],[81.84626,22.88672],[81.85319,22.89089],[81.86163,22.88926],[81.86949,22.89451],[81.86811,22.90209],[81.86933,22.9098],[81.86552,22.91274],[81.86611,22.91581],[81.86912,22.91733],[81.87824,22.90981],[81.8904,22.92266],[81.89815,22.92593],[81.90469,22.93145],[81.91274,22.94165],[81.91892,22.94655],[81.94631,22.95678],[81.94781,22.96754],[81.94621,22.97392],[81.95048,22.98293],[81.94476,22.98917],[81.94544,22.99582],[81.93914,23.00462],[81.93955,23.00953],[81.93673,23.01617],[81.92977,23.02061],[81.92951,23.02273],[81.93183,23.02548],[81.92561,23.0292],[81.9215,23.04081],[81.92449,23.04711],[81.92904,23.04983],[81.92678,23.05758],[81.93027,23.05904],[81.92955,23.06164],[81.9374,23.06188],[81.93781,23.06525],[81.94294,23.06477],[81.9439,23.06739],[81.94685,23.0691],[81.94506,23.07258],[81.94604,23.07628],[81.94225,23.07897],[81.96317,23.07519],[81.96341,23.07821],[81.96789,23.08072],[81.97621,23.07898],[81.97717,23.08101],[81.98086,23.08263],[81.98127,23.08015],[81.98241,23.08265],[81.98533,23.08267],[81.98565,23.08587],[81.98827,23.08614],[81.98948,23.08431],[81.99114,23.08661],[81.99432,23.08355],[81.99774,23.08441],[82.00042,23.08105],[82.00445,23.08119],[82.00783,23.07912],[82.01174,23.08004],[82.01276,23.08217],[82.01755,23.08243],[82.01857,23.0841],[82.01961,23.08104],[82.02257,23.07944],[82.02753,23.08222],[82.02808,23.08024],[82.03419,23.08005],[82.04372,23.08851],[82.04366,23.09035],[82.0471,23.09135],[82.04665,23.09248],[82.04906,23.09383],[82.04781,23.09644],[82.05323,23.09966],[82.05513,23.10685],[82.06005,23.10848],[82.06193,23.11241],[82.0664,23.11498],[82.06681,23.11676],[82.07008,23.1165],[82.07222,23.11832],[82.0749,23.11484],[82.08042,23.11269],[82.09216,23.11237],[82.0935,23.10907],[82.09787,23.10852],[82.1111,23.10935],[82.11609,23.1056],[82.12225,23.1038],[82.13791,23.112],[82.13664,23.12544],[82.1407,23.13293],[82.15687,23.13847],[82.16136,23.14311],[82.16226,23.15728],[82.16092,23.16205],[82.14516,23.16341],[82.14435,23.16565],[82.14854,23.17113],[82.1495,23.17548],[82.14905,23.17737],[82.14464,23.17954],[82.14364,23.18711],[82.14825,23.18895],[82.14398,23.19514],[82.14925,23.19738],[82.14976,23.20373],[82.15361,23.21274],[82.14762,23.21897],[82.14841,23.2211],[82.14527,23.22672],[82.15308,23.23047],[82.15978,23.24633],[82.16276,23.24509],[82.16718,23.24589],[82.16651,23.25008],[82.16964,23.25174],[82.16829,23.25515],[82.17229,23.2584],[82.17435,23.2687],[82.18533,23.2739],[82.1888,23.2735],[82.19338,23.27797],[82.19474,23.28439],[82.19221,23.28849],[82.19382,23.29522],[82.19671,23.29728],[82.19732,23.30066],[82.19603,23.30371],[82.19741,23.30688],[82.19479,23.30859],[82.19939,23.31343],[82.19396,23.32384],[82.19208,23.32677],[82.18281,23.32737],[82.16373,23.33467],[82.16208,23.34284],[82.15383,23.35036],[82.14575,23.36118],[82.14091,23.36181],[82.12374,23.35372],[82.11714,23.35546],[82.11011,23.36317],[82.1118,23.36613],[82.11377,23.38416],[82.10524,23.39256],[82.10494,23.39698],[82.10341,23.39824],[82.09348,23.39286],[82.09204,23.39364],[82.09301,23.39747],[82.09148,23.39828],[82.08601,23.39699],[82.08217,23.39347],[82.07704,23.39494],[82.07112,23.39121],[82.06406,23.39294],[82.05876,23.37875],[82.056,23.37678],[82.04447,23.38005],[82.03685,23.38874],[82.03231,23.38242],[82.0219,23.38732],[82.02116,23.39177],[82.02907,23.4002],[82.0238,23.40676],[82.02385,23.40867],[82.02569,23.40969],[82.03063,23.40824],[82.03275,23.40999],[82.02578,23.41999],[82.02548,23.42488],[82.01182,23.41592],[82.00955,23.41199],[82.0024,23.41696],[81.99969,23.42156],[81.99056,23.41849],[81.98843,23.41453],[81.98533,23.41449],[81.98254,23.42016],[81.97674,23.4238],[81.9839,23.42928],[81.98169,23.43094],[81.98177,23.43366],[81.98382,23.43457],[81.97779,23.44197],[81.9804,23.44704],[81.97599,23.44862],[81.97688,23.45181],[81.97036,23.45558],[81.96904,23.46035],[81.96472,23.4657],[81.95783,23.46532],[81.95499,23.46717],[81.95503,23.4854],[81.95791,23.5007],[81.94782,23.5011],[81.94234,23.50569],[81.93763,23.51374],[81.93785,23.51631],[81.92329,23.53266],[81.91853,23.535],[81.90787,23.53533],[81.90444,23.52955],[81.89685,23.52465],[81.89368,23.52446],[81.88126,23.51507],[81.8756,23.51271],[81.86912,23.51293],[81.86369,23.51757],[81.85218,23.51529],[81.85026,23.51355],[81.84398,23.5144],[81.83965,23.51089],[81.83643,23.51091],[81.82069,23.51524],[81.81758,23.52212],[81.81959,23.52972],[81.81698,23.54087],[81.80907,23.54934],[81.80191,23.5484],[81.77164,23.55054],[81.75826,23.54987],[81.7548,23.56559],[81.75265,23.56795],[81.74664,23.5698],[81.74238,23.56615],[81.73761,23.56507],[81.73636,23.56646],[81.72802,23.55649],[81.72523,23.55687],[81.72431,23.55026],[81.72152,23.54721],[81.72253,23.5433],[81.71539,23.54073],[81.7145,23.53597],[81.71108,23.53488],[81.70594,23.52908],[81.702,23.52801],[81.70204,23.52452],[81.69964,23.52202],[81.69034,23.52837],[81.68005,23.52925],[81.66812,23.53295],[81.65891,23.529],[81.66237,23.51414],[81.65954,23.51177],[81.65817,23.50491],[81.65459,23.50194],[81.6537,23.49806],[81.64849,23.49975],[81.64218,23.49895],[81.64222,23.49689],[81.63728,23.49036],[81.6321,23.49017],[81.62921,23.49215],[81.62705,23.49132],[81.62537,23.49676],[81.61232,23.51021],[81.61152,23.51588],[81.61537,23.51946],[81.61375,23.52168],[81.61368,23.52758],[81.61627,23.52843],[81.61633,23.53075],[81.61323,23.53343],[81.61247,23.54086],[81.61409,23.54567],[81.61032,23.55508],[81.58402,23.55358],[81.57668,23.58534],[81.58497,23.59455],[81.5897,23.59603],[81.593,23.59601],[81.59681,23.59236],[81.59811,23.59423],[81.60359,23.59336],[81.60834,23.59659],[81.61197,23.59525],[81.6111,23.60327],[81.60651,23.61387],[81.6142,23.62244],[81.62033,23.65143],[81.61933,23.65839],[81.61457,23.66292],[81.64455,23.65718],[81.65517,23.66314],[81.6563,23.67214],[81.65422,23.6778],[81.65555,23.68202],[81.66062,23.68466],[81.66596,23.685],[81.68408,23.69092],[81.68502,23.70021],[81.69591,23.72132],[81.68953,23.72377],[81.68606,23.73304],[81.67847,23.73937],[81.67917,23.74234],[81.68676,23.7475],[81.68185,23.7533],[81.67668,23.75685],[81.65203,23.76537],[81.64466,23.77013],[81.64445,23.77482],[81.64947,23.78336],[81.65145,23.79906],[81.64665,23.8115],[81.64132,23.81474],[81.64162,23.82058],[81.63746,23.82767],[81.63584,23.83451],[81.63242,23.83593],[81.62241,23.83538],[81.61675,23.83345],[81.61323,23.83448],[81.61132,23.83701],[81.6122,23.84315],[81.60772,23.84639],[81.60318,23.85371],[81.60493,23.86149],[81.61426,23.8617],[81.62221,23.87024],[81.60424,23.88175],[81.60375,23.88471],[81.61157,23.89229],[81.61047,23.89877],[81.60836,23.90149],[81.60902,23.9032],[81.62076,23.90673],[81.63218,23.90582],[81.63645,23.90759],[81.63847,23.91083],[81.65778,23.91634],[81.66238,23.92427],[81.66858,23.92496],[81.67172,23.91955],[81.67231,23.91339],[81.68256,23.9114],[81.68754,23.90648],[81.69044,23.88476],[81.70265,23.88619],[81.70731,23.88236],[81.70384,23.87593],[81.7077,23.87419],[81.70974,23.87125],[81.70728,23.86505],[81.70749,23.86113],[81.7202,23.86221],[81.73198,23.85668],[81.72969,23.84894],[81.72504,23.84463],[81.72547,23.83982],[81.72846,23.83902],[81.73223,23.84086],[81.73736,23.83918],[81.74285,23.83377],[81.75451,23.83075],[81.76212,23.82361],[81.77316,23.8164],[81.79112,23.80935],[81.79313,23.80991],[81.7959,23.81489],[81.80839,23.81349],[81.81558,23.80636],[81.82343,23.80791],[81.82738,23.8106],[81.82751,23.81381],[81.82916,23.81503],[81.83688,23.8162],[81.83653,23.81998],[81.8382,23.8211],[81.86307,23.82446],[81.86628,23.82869],[81.86771,23.83414],[81.88785,23.83542],[81.89223,23.84052],[81.89903,23.84086],[81.902,23.84486],[81.90609,23.84606],[81.90629,23.84992],[81.90866,23.85108],[81.91044,23.85722],[81.91576,23.85893],[81.92147,23.87091],[81.93131,23.87055],[81.93965,23.86775],[81.94046,23.86559],[81.93823,23.86409],[81.93848,23.86235],[81.94692,23.86189],[81.94608,23.85877],[81.94993,23.85665],[81.95417,23.85712],[81.95556,23.85341],[81.9578,23.85228],[81.96027,23.85553],[81.96359,23.85361],[81.9654,23.85591],[81.97033,23.85723],[81.97721,23.85624],[81.98171,23.86089],[81.98599,23.86192],[81.98907,23.86043],[82.00093,23.86218],[82.00881,23.86108],[82.02047,23.84907],[82.03475,23.84641],[82.04418,23.84165],[82.04405,23.83883],[82.04127,23.83688],[82.04087,23.83292],[82.03876,23.83313],[82.03842,23.82684],[82.04924,23.82422],[82.05244,23.82165],[82.05358,23.81838],[82.06173,23.81916],[82.07233,23.81704],[82.07764,23.81864],[82.08327,23.81542],[82.09418,23.81668],[82.09544,23.81553],[82.10665,23.81868],[82.11659,23.81701],[82.12337,23.82205],[82.12929,23.81903],[82.14172,23.81689],[82.14206,23.81555],[82.16383,23.82068],[82.17146,23.81824],[82.17856,23.82161],[82.18085,23.83628],[82.18622,23.83867],[82.18887,23.84259],[82.19714,23.84165],[82.20128,23.84864],[82.21178,23.852],[82.21532,23.84102],[82.21197,23.83585],[82.20811,23.83493],[82.20631,23.82741],[82.22551,23.82008],[82.22704,23.80829],[82.23181,23.80531],[82.23728,23.80532],[82.24331,23.80852],[82.25013,23.81568],[82.26061,23.82124],[82.27211,23.81708],[82.28164,23.81698],[82.29181,23.80982],[82.29877,23.807],[82.30483,23.80739],[82.30578,23.81172],[82.31152,23.8102],[82.3175,23.81176],[82.33086,23.80616],[82.33466,23.80255],[82.33947,23.80862],[82.35265,23.80353],[82.36352,23.80803],[82.36405,23.80994],[82.36924,23.80905],[82.37697,23.81104],[82.39062,23.8052],[82.39287,23.80324],[82.3932,23.79994],[82.42326,23.80459],[82.43431,23.805],[82.43574,23.80262],[82.4379,23.80374],[82.44065,23.80279],[82.44691,23.80455],[82.45378,23.81155],[82.46926,23.81106],[82.47906,23.80595],[82.47919,23.80246],[82.48418,23.80035],[82.48893,23.78995],[82.4974,23.7849],[82.51097,23.78602],[82.5234,23.78368],[82.53549,23.7908],[82.53813,23.79425],[82.54181,23.79149],[82.55147,23.79064],[82.54844,23.80855],[82.5388,23.81637],[82.53834,23.8202],[82.53355,23.82023],[82.53307,23.82215],[82.54749,23.82255],[82.54674,23.82619],[82.55425,23.8262],[82.56322,23.82285],[82.56476,23.82074],[82.56937,23.8203],[82.5732,23.82406],[82.57776,23.82423],[82.57922,23.82241],[82.58181,23.82301],[82.58361,23.82071],[82.58862,23.82144],[82.59995,23.82653],[82.60224,23.8303],[82.60756,23.83329],[82.62954,23.83879],[82.63534,23.83771],[82.63917,23.84165],[82.63674,23.84448],[82.63814,23.84798],[82.64244,23.84694],[82.64714,23.84872],[82.64718,23.85369],[82.6451,23.85511],[82.64721,23.85597],[82.64669,23.85903],[82.6499,23.86019],[82.65301,23.85863],[82.65058,23.85685],[82.6511,23.85571],[82.65997,23.85478],[82.66156,23.85693],[82.66022,23.86284],[82.66448,23.86255],[82.66813,23.87089],[82.66374,23.87718],[82.65123,23.88676],[82.652,23.89186],[82.66159,23.90764],[82.67115,23.90579],[82.67466,23.90674],[82.67638,23.90925],[82.68058,23.90715],[82.6834,23.90929],[82.68888,23.9098],[82.69342,23.9202],[82.69803,23.91992],[82.70351,23.92449],[82.71085,23.92368],[82.715,23.92139],[82.75238,23.91979],[82.75526,23.92171],[82.75609,23.92503],[82.75446,23.93419],[82.76201,23.93383],[82.77034,23.93699],[82.77662,23.93667],[82.78107,23.93836],[82.79837,23.95081],[82.80074,23.9608],[82.81261,23.95987],[82.80783,23.96555],[82.80224,23.9793],[82.80538,23.98012],[82.80533,23.98288],[82.8085,23.98606],[82.80561,23.98992],[82.80458,23.99595],[82.80629,23.99776],[82.80418,24.00352],[82.79989,24.00341],[82.78879,24.00828],[82.78436,24.00464],[82.77564,24.00645],[82.769,24.00568],[82.7507,24.01198],[82.74917,24.02356],[82.74718,24.02727],[82.75558,24.0333],[82.76737,24.04856],[82.77054,24.05632],[82.77402,24.0763],[82.7676,24.07589],[82.76565,24.07083],[82.76305,24.06991],[82.76021,24.07258],[82.75968,24.07773],[82.75343,24.07731],[82.75001,24.07084],[82.74749,24.07103],[82.74475,24.07497],[82.74023,24.07723],[82.73897,24.07576],[82.73314,24.08045],[82.72856,24.07814],[82.71642,24.07772],[82.7139,24.07625],[82.71422,24.07971],[82.71029,24.08101],[82.70987,24.08505],[82.71182,24.08927],[82.70488,24.09487],[82.70776,24.09616],[82.70252,24.09899],[82.69585,24.10004],[82.69262,24.10481],[82.69132,24.10524],[82.69127,24.10337],[82.68706,24.10829],[82.68295,24.10936],[82.6834,24.11184],[82.68022,24.11259],[82.68063,24.11485],[82.67806,24.11479],[82.67715,24.11999],[82.67039,24.11999],[82.66524,24.12449],[82.6643,24.12916],[82.66813,24.13473],[82.66682,24.13693],[82.67052,24.13666],[82.67413,24.14097],[82.6707,24.14712],[82.6773,24.15246],[82.68288,24.15459],[82.69302,24.14873],[82.6949,24.14329],[82.69971,24.13924],[82.70429,24.1393],[82.71051,24.13622],[82.72808,24.13514],[82.7293,24.14796],[82.73585,24.15387],[82.74444,24.16548],[82.7396,24.2001],[82.73481,24.21778],[82.73648,24.22295],[82.75,24.22637],[82.75901,24.23635],[82.75949,24.24117],[82.7555,24.25584],[82.75616,24.26142],[82.7622,24.26958],[82.76989,24.28984],[82.77322,24.30736],[82.76595,24.31361],[82.76604,24.31593],[82.76844,24.31677],[82.76894,24.32403],[82.7715,24.32816],[82.7671,24.33029],[82.76993,24.33301],[82.76838,24.3392],[82.76932,24.34187],[82.77364,24.34342],[82.76925,24.34664],[82.76796,24.35285],[82.76442,24.35454],[82.76688,24.35816],[82.76557,24.35994],[82.76741,24.36085],[82.76514,24.36522],[82.76873,24.36633],[82.76938,24.3707],[82.7643,24.37017],[82.7636,24.37264],[82.76511,24.37537],[82.76021,24.37735],[82.76037,24.37368],[82.75462,24.37375],[82.75591,24.36963],[82.74414,24.37047],[82.73982,24.36736],[82.73195,24.36947],[82.72878,24.36795],[82.72825,24.36899],[82.72384,24.36818],[82.72299,24.37117],[82.71878,24.37402],[82.71947,24.37796],[82.71321,24.38024],[82.72341,24.41679],[82.73921,24.42764],[82.73921,24.43237],[82.73587,24.4311],[82.73439,24.43238],[82.73263,24.43084],[82.73489,24.43545],[82.73089,24.43758],[82.73412,24.44667],[82.73311,24.45024],[82.73111,24.45147],[82.7314,24.45404],[82.7348,24.45678],[82.73636,24.46165],[82.73472,24.47044],[82.73098,24.47089],[82.72989,24.47265],[82.73423,24.47553],[82.73373,24.47857],[82.74012,24.48202],[82.73998,24.48735],[82.74325,24.49177],[82.74356,24.49535],[82.74362,24.49896],[82.73592,24.50174],[82.72927,24.50905],[82.72432,24.50957],[82.72063,24.51403],[82.72312,24.51831],[82.72128,24.52346],[82.72348,24.52547],[82.72094,24.5295],[82.72949,24.53114],[82.73103,24.53508],[82.72804,24.5399],[82.72116,24.54567],[82.71955,24.54944],[82.72065,24.55168],[82.71918,24.55247],[82.72201,24.55529],[82.74237,24.54692],[82.7431,24.55182],[82.74755,24.54978],[82.75164,24.54991],[82.75248,24.54662],[82.74908,24.54331],[82.7526,24.54369],[82.75153,24.53772],[82.75552,24.53745],[82.79131,24.54356],[82.80755,24.54899],[82.80494,24.55607],[82.80564,24.56978],[82.80125,24.57686],[82.80308,24.57912],[82.80272,24.5826],[82.80122,24.583],[82.80318,24.58758],[82.80328,24.59709],[82.80256,24.59819],[82.79866,24.59706],[82.7916,24.59818],[82.78017,24.59462],[82.76546,24.59577],[82.76989,24.59897],[82.77007,24.6037],[82.77955,24.61394],[82.7754,24.61466],[82.77562,24.62047],[82.77227,24.62193],[82.77193,24.6349],[82.7743,24.64177],[82.76208,24.64259],[82.75352,24.64091],[82.75309,24.63695],[82.74633,24.64208],[82.74106,24.64161],[82.73229,24.64428],[82.72813,24.63535],[82.72284,24.6384],[82.71817,24.63467],[82.7168,24.63709],[82.71796,24.64255],[82.70942,24.63907],[82.7067,24.63627],[82.6982,24.6462],[82.69875,24.66253],[82.70179,24.67166],[82.70089,24.67602],[82.68657,24.68579],[82.67615,24.69071],[82.67085,24.69703],[82.65747,24.69511],[82.6366,24.68235],[82.60718,24.67554],[82.59304,24.66878],[82.57984,24.65929],[82.53963,24.64785],[82.52978,24.65253],[82.52295,24.67627],[82.51741,24.67344],[82.51074,24.67527],[82.50506,24.67164],[82.49395,24.67093],[82.48924,24.67137],[82.48353,24.67701],[82.47983,24.67834],[82.46864,24.67562],[82.46832,24.67398],[82.45672,24.67319],[82.45024,24.67441],[82.45373,24.68453],[82.45303,24.68854],[82.43845,24.70101],[82.43049,24.70259],[82.42766,24.70214],[82.4155,24.69226],[82.41577,24.68949],[82.4062,24.68112],[82.40868,24.67933],[82.40677,24.67698],[82.41389,24.67017],[82.4115,24.66531],[82.41202,24.6597],[82.41594,24.65631],[82.41625,24.65271],[82.41845,24.65172],[82.41612,24.64526],[82.41776,24.64127],[82.40968,24.63542],[82.409,24.62524],[82.41321,24.62031],[82.41327,24.61647],[82.41081,24.61374],[82.42202,24.59962],[82.42008,24.59481],[82.41715,24.59435],[82.41611,24.5912],[82.4114,24.59454],[82.40414,24.59632],[82.40197,24.59136],[82.36477,24.5972],[82.35559,24.60423],[82.34963,24.6151],[82.34718,24.61663],[82.34433,24.61553],[82.33864,24.62036],[82.33706,24.61895],[82.33617,24.62],[82.32961,24.61843],[82.32197,24.61246],[82.31964,24.6062],[82.31543,24.60782],[82.30168,24.6078],[82.29896,24.60486],[82.2968,24.60584],[82.29541,24.6089],[82.29996,24.61207],[82.30368,24.62519],[82.30021,24.63433],[82.30188,24.63914],[82.30084,24.64246],[82.3038,24.64376],[82.29998,24.64698],[82.3039,24.65369],[82.29636,24.66125],[82.3036,24.66331],[82.30314,24.6671],[82.29925,24.66726],[82.29836,24.66552],[82.28801,24.66586],[82.2853,24.66838],[82.28519,24.67578],[82.28062,24.67541],[82.26876,24.68341],[82.26286,24.67826],[82.26456,24.67639],[82.27257,24.67541],[82.27255,24.67355],[82.26351,24.66591],[82.26087,24.66131],[82.25527,24.66045],[82.25708,24.66446],[82.25634,24.66861],[82.25419,24.67018],[82.25109,24.66808],[82.249,24.67116],[82.24753,24.66866],[82.24517,24.67092],[82.24011,24.66966],[82.24115,24.66205],[82.23971,24.66127],[82.2351,24.6709],[82.23654,24.6767],[82.2335,24.68099],[82.22971,24.68179],[82.23452,24.68563],[82.2354,24.69039],[82.2394,24.69021],[82.24231,24.69478],[82.24482,24.69202],[82.24693,24.69225],[82.25011,24.69745],[82.24518,24.70351],[82.24616,24.70906],[82.25024,24.70991],[82.25097,24.71147],[82.24982,24.7194],[82.2447,24.7307],[82.24522,24.73279],[82.24771,24.73286],[82.25067,24.73547],[82.25548,24.74824],[82.25558,24.7521],[82.25327,24.75156],[82.25081,24.75732],[82.24947,24.76813],[82.25093,24.76993],[82.24666,24.77104],[82.24614,24.76966],[82.2466,24.76662],[82.24981,24.76284],[82.24874,24.7562],[82.24623,24.75445],[82.24516,24.74441],[82.24257,24.74467],[82.23993,24.75078],[82.23744,24.75174],[82.23791,24.75501],[82.23542,24.7602],[82.23413,24.76059],[82.23324,24.75826],[82.23132,24.75926],[82.23136,24.75598],[82.22646,24.76124],[82.22475,24.75783],[82.22813,24.75436],[82.22689,24.75273],[82.22928,24.74935],[82.22884,24.74558],[82.22227,24.74657],[82.22225,24.74825],[82.21873,24.75013],[82.21585,24.75488],[82.20657,24.74719],[82.20641,24.74352],[82.20957,24.74212],[82.21058,24.73979],[82.21755,24.73746],[82.22003,24.73105],[82.21888,24.72845],[82.2213,24.72721],[82.2213,24.72233],[82.21997,24.72195],[82.21936,24.7246],[82.21574,24.72649],[82.21592,24.73054],[82.21404,24.73443],[82.20914,24.73385],[82.20497,24.73578],[82.20326,24.73404],[82.19953,24.73525],[82.19709,24.73816],[82.19142,24.73759],[82.18815,24.73419],[82.18525,24.73572],[82.18132,24.73256],[82.17745,24.73233],[82.18398,24.73885],[82.18664,24.73863],[82.1975,24.74677],[82.19747,24.74978],[82.20326,24.75834],[82.2037,24.76049],[82.19542,24.76417],[82.20006,24.76862],[82.1949,24.77519],[82.19655,24.77806],[82.20402,24.77623],[82.20944,24.77153],[82.21035,24.77472],[82.21404,24.77287],[82.21792,24.77668],[82.20921,24.77844],[82.21183,24.78671],[82.21512,24.79021],[82.21729,24.79018],[82.21615,24.79414],[82.21215,24.79364],[82.20632,24.79612],[82.2033,24.7923],[82.19542,24.79187],[82.18426,24.79563],[82.18388,24.7989],[82.18876,24.80579],[82.19162,24.80576],[82.19814,24.81627],[82.20359,24.8192],[82.1994,24.81775],[82.1911,24.81069],[82.1848,24.80971],[82.17818,24.81089],[82.17512,24.80091],[82.16996,24.79938],[82.16665,24.80088],[82.16965,24.79805],[82.1789,24.79507],[82.17823,24.79287],[82.17133,24.79059],[82.16774,24.79118],[82.16702,24.78544],[82.15327,24.79158],[82.15092,24.79462],[82.14973,24.79191],[82.14435,24.79702],[82.13866,24.79946],[82.13188,24.79161],[82.13388,24.78798],[82.13009,24.78809],[82.12958,24.78563],[82.12593,24.78831],[82.1231,24.78694],[82.12032,24.78813],[82.11561,24.78444],[82.11218,24.80052],[82.11032,24.80055],[82.1057,24.80538],[82.09765,24.81615],[82.07505,24.82194],[82.07157,24.81918],[82.05143,24.83052],[82.04521,24.82862],[82.03123,24.84024],[82.024,24.8412],[82.01694,24.84598],[82.01072,24.84691],[82.00311,24.84145],[81.99225,24.84224],[81.98531,24.83925],[81.97154,24.83893],[81.96875,24.83618],[81.96792,24.82902],[81.96527,24.82704],[81.96061,24.83654],[81.94417,24.84124],[81.9424,24.8452],[81.94357,24.84658],[81.93794,24.84973],[81.9365,24.85201],[81.93768,24.85285],[81.93272,24.85874],[81.93463,24.86808],[81.93372,24.8707],[81.92801,24.87403],[81.9255,24.8722],[81.92006,24.87432],[81.92057,24.87739],[81.9165,24.8772],[81.91463,24.88072],[81.90789,24.88135],[81.90657,24.88345],[81.90891,24.88574],[81.90495,24.88678],[81.90355,24.89001],[81.90442,24.89139],[81.90284,24.89168],[81.90574,24.89269],[81.90479,24.89507],[81.90786,24.89654],[81.90353,24.89875],[81.90643,24.90026],[81.90671,24.9044],[81.91835,24.91952],[81.91902,24.9219],[81.91755,24.92328],[81.91965,24.92812],[81.91406,24.93626],[81.91036,24.93738],[81.90907,24.94264],[81.91006,24.95243],[81.9075,24.95951],[81.90939,24.9607],[81.90805,24.96847],[81.90751,24.97076],[81.90408,24.9722],[81.90786,24.98012],[81.90517,24.98137],[81.90593,24.98272],[81.90299,24.98374],[81.90146,24.9865],[81.90634,24.99503],[81.90727,25.00567],[81.89812,25.01064],[81.89556,25.00952],[81.89484,25.00782],[81.8974,25.00352],[81.90169,24.9994],[81.89548,24.98968],[81.89131,24.98887],[81.88991,24.99186],[81.8909,24.99576],[81.87688,24.9994],[81.87688,24.99579],[81.87419,24.99517],[81.87255,24.99976],[81.86642,25.00235],[81.86521,25.00087],[81.85955,25.00314],[81.85347,25.00268],[81.84865,25.00822],[81.84874,25.01164],[81.83482,25.01697],[81.8319,25.01213],[81.82568,25.01679],[81.82305,25.01712],[81.81949,25.01414],[81.81772,25.0152],[81.81401,25.01069],[81.81038,25.01269],[81.80464,25.0059],[81.80559,25.00524],[81.80377,25.0017],[81.79221,25.00441],[81.78089,25.01888],[81.758,25.02739],[81.75517,25.03169],[81.755,25.03484],[81.7458,25.03347],[81.7467,25.03742],[81.74188,25.03894],[81.74256,25.04144],[81.74041,25.04483],[81.73151,25.04864],[81.73044,25.04746],[81.72388,25.05017],[81.71909,25.04184],[81.72168,25.04232],[81.72141,25.03825],[81.71331,25.03607],[81.7071,25.03523],[81.68975,25.03895],[81.68872,25.03954],[81.69344,25.0488],[81.69151,25.05148],[81.68862,25.05174],[81.68574,25.05839],[81.68232,25.06119],[81.67797,25.06204],[81.67088,25.05991],[81.6672,25.06136],[81.66856,25.07171],[81.66654,25.07511],[81.66416,25.07259],[81.66267,25.07417],[81.66051,25.07161],[81.6527,25.07082],[81.65148,25.06716],[81.64122,25.05676],[81.63331,25.05934],[81.62765,25.05263],[81.61143,25.0565],[81.61032,25.06107],[81.61692,25.05879],[81.61745,25.06092],[81.60914,25.06562],[81.61054,25.06865],[81.60035,25.07385],[81.60543,25.07848],[81.61579,25.08034],[81.62143,25.09016],[81.62879,25.09128],[81.62861,25.09474],[81.64086,25.09849],[81.63357,25.1027],[81.63206,25.10643],[81.62834,25.10679],[81.63171,25.11178],[81.63294,25.11712],[81.62408,25.12004],[81.6205,25.11565],[81.62365,25.11223],[81.62314,25.11099],[81.61897,25.11013],[81.61632,25.10773],[81.61466,25.10004],[81.61147,25.09506],[81.60832,25.09605],[81.61023,25.10876],[81.60849,25.11174],[81.61011,25.11252],[81.60639,25.11627],[81.60061,25.11627],[81.59696,25.11909],[81.59804,25.12229],[81.6,25.12313],[81.5983,25.12378],[81.60059,25.12403],[81.60233,25.12725],[81.59806,25.13134],[81.60258,25.13615],[81.61046,25.1391],[81.61459,25.14439],[81.62061,25.14029],[81.62332,25.14104],[81.62571,25.14485],[81.62418,25.15614],[81.62621,25.16047],[81.62042,25.16242],[81.61876,25.1674],[81.6154,25.16901],[81.61182,25.16392],[81.60894,25.16469],[81.60463,25.16303],[81.59436,25.16373],[81.58846,25.16577],[81.59508,25.17749],[81.59562,25.18182],[81.58124,25.18965],[81.57357,25.19206],[81.57017,25.19208],[81.56291,25.18651],[81.55594,25.18358],[81.55411,25.18609],[81.54546,25.18506],[81.53991,25.18608],[81.5398,25.18036],[81.53443,25.18066],[81.53284,25.18239],[81.52746,25.18085],[81.52496,25.18386],[81.51858,25.18605],[81.5146,25.18434],[81.51441,25.17953],[81.51248,25.17734],[81.51464,25.17358],[81.51617,25.17407],[81.51792,25.1705],[81.52533,25.16563],[81.52496,25.16457],[81.53099,25.1647],[81.5365,25.16055],[81.52992,25.15161],[81.5227,25.14667],[81.52658,25.14779],[81.5309,25.14521],[81.52724,25.13809],[81.51916,25.14315],[81.51548,25.14304],[81.5139,25.14564],[81.50998,25.14601],[81.5088,25.14782],[81.49951,25.14868],[81.49618,25.14047],[81.49638,25.12898],[81.49388,25.13208],[81.48519,25.13483],[81.48005,25.13255],[81.48076,25.12764],[81.48744,25.12377],[81.48414,25.11595],[81.48866,25.11421],[81.49032,25.10945],[81.49583,25.10853],[81.49826,25.10506],[81.50307,25.10687],[81.5181,25.10074],[81.50665,25.09553],[81.50024,25.09638],[81.50298,25.08971],[81.50108,25.07743],[81.49947,25.07682],[81.49844,25.07874],[81.49364,25.08027],[81.49113,25.07232],[81.48647,25.07346],[81.48205,25.07675],[81.46927,25.07979],[81.46506,25.08381],[81.46733,25.0884],[81.46481,25.09011],[81.45451,25.09039],[81.43677,25.09408],[81.42993,25.09762],[81.42407,25.09809],[81.41759,25.10235],[81.40727,25.10491],[81.41371,25.10792],[81.42717,25.10712],[81.43069,25.10558],[81.43426,25.10723],[81.4445,25.10594],[81.44766,25.10717],[81.4457,25.10926],[81.44668,25.11109],[81.44513,25.11608],[81.4379,25.12389],[81.43693,25.12815],[81.43852,25.13033],[81.42892,25.13049],[81.42561,25.1326],[81.42187,25.12855],[81.4154,25.12844],[81.40619,25.13129],[81.4057,25.12911],[81.40853,25.12523],[81.41429,25.12093],[81.39992,25.11922],[81.39521,25.12274],[81.3954,25.12616],[81.39326,25.12623],[81.39405,25.12924],[81.39261,25.13096],[81.38538,25.13216],[81.38228,25.13608],[81.3709,25.13484],[81.37541,25.13904],[81.37573,25.14173],[81.36882,25.1439],[81.36268,25.15306],[81.3617,25.15923],[81.35728,25.1631],[81.35402,25.16391],[81.35273,25.16202],[81.34528,25.1619],[81.33452,25.16929],[81.32232,25.16193],[81.31956,25.15678],[81.31867,25.14397],[81.32503,25.13651],[81.32401,25.12763],[81.3252,25.12239],[81.32629,25.11921],[81.33108,25.11463],[81.32147,25.11277],[81.32127,25.11877],[81.31857,25.12282],[81.31624,25.12349],[81.3179,25.1254],[81.31569,25.12709],[81.31432,25.13539],[81.31192,25.13756],[81.31322,25.14945],[81.31229,25.15591],[81.3155,25.15888],[81.31343,25.16374],[81.29921,25.16447],[81.29658,25.16269],[81.28897,25.16188],[81.27752,25.166],[81.2751,25.16346],[81.28167,25.15206],[81.27755,25.14651],[81.26615,25.13969],[81.26851,25.13156],[81.26818,25.12809],[81.26276,25.12538],[81.26479,25.12228],[81.26472,25.11669],[81.26133,25.11018],[81.2572,25.11106],[81.25327,25.10776],[81.25214,25.10208],[81.255,25.09854],[81.25849,25.09752],[81.26156,25.08837],[81.26667,25.08439],[81.25949,25.07574],[81.26506,25.07355],[81.2689,25.06745],[81.26204,25.05808],[81.26382,25.05276],[81.25857,25.049],[81.25373,25.0389],[81.2451,25.02752],[81.24183,25.02587],[81.23935,25.01922],[81.22666,25.00196],[81.2208,24.9974],[81.21304,25.0],[81.21208,24.9957],[81.20892,24.99262],[81.21643,24.98627],[81.22087,24.97761],[81.22028,24.97382],[81.20714,24.96448],[81.21443,24.95796],[81.21463,24.94852],[81.21114,24.94614],[81.21318,24.94532],[81.21523,24.93288],[81.2173,24.93239],[81.21935,24.93511],[81.22061,24.93453],[81.21964,24.92862],[81.21387,24.92756],[81.21017,24.92262],[81.2035,24.92476],[81.20162,24.9269],[81.19639,24.92468],[81.19291,24.92535],[81.19162,24.92718],[81.19759,24.92795],[81.2007,24.93178],[81.20719,24.93043],[81.20354,24.93266],[81.20097,24.93801],[81.19737,24.93867],[81.19715,24.94147],[81.19223,24.94501],[81.18881,24.94472],[81.18515,24.95204],[81.17937,24.94988],[81.17221,24.9573],[81.16801,24.95523],[81.16402,24.94265],[81.16606,24.93816],[81.16371,24.93764],[81.16378,24.92831],[81.16132,24.92792],[81.15852,24.92344],[81.16079,24.91912],[81.1602,24.91356],[81.1504,24.9137],[81.14546,24.9103],[81.14512,24.90672],[81.14165,24.90324],[81.13991,24.89675],[81.14124,24.89025],[81.1396,24.88753],[81.12248,24.89967],[81.11808,24.90787],[81.1123,24.90737],[81.10388,24.9183],[81.0963,24.92119],[81.09336,24.92899],[81.09046,24.92887],[81.0897,24.93152],[81.08704,24.93322],[81.0903,24.94494],[81.08451,24.94991],[81.07971,24.94828],[81.0705,24.94984],[81.06625,24.94903],[81.06085,24.95192],[81.05518,24.95216],[81.0499,24.94981],[81.03373,24.95261],[81.02856,24.94859],[81.02585,24.94875],[81.02835,24.94349],[81.02548,24.94475],[81.02419,24.94342],[81.02558,24.94005],[81.01627,24.9515],[81.01354,24.94776],[81.0212,24.93945],[81.02261,24.93578],[81.02885,24.93326],[81.02467,24.93309],[81.02307,24.92762],[81.01718,24.93102],[81.01316,24.92793],[81.00952,24.93599],[81.00451,24.93722],[81.0004,24.93604],[80.99722,24.93288],[80.99653,24.92811],[80.98763,24.92604],[80.98675,24.9232],[80.98276,24.92664],[80.98618,24.9306],[80.98538,24.93288],[80.97385,24.93419],[80.9702,24.93305],[80.96825,24.93003],[80.9646,24.92982],[80.96574,24.92607],[80.96186,24.92576],[80.95992,24.91921],[80.95718,24.91785],[80.95752,24.92181],[80.9557,24.92192],[80.95729,24.92306],[80.95655,24.92989],[80.95879,24.93858],[80.9557,24.94055],[80.94771,24.94097],[80.95405,24.95434],[80.95095,24.95896],[80.95006,24.96441],[80.946,24.96627],[80.93635,24.96198],[80.92835,24.96106],[80.89915,24.94862],[80.89762,24.94503],[80.90016,24.94121],[80.90524,24.93866],[80.90708,24.93505],[80.90447,24.93806],[80.89946,24.94004],[80.89546,24.94511],[80.89172,24.94511],[80.87897,24.93949],[80.87902,24.93677],[80.88083,24.93534],[80.87757,24.9345],[80.87324,24.93581],[80.86073,24.92867],[80.85667,24.93158],[80.85133,24.93157],[80.83744,24.92833],[80.83723,24.92032],[80.83254,24.92001],[80.8298,24.91801],[80.81199,24.92255],[80.81391,24.92743],[80.82005,24.93291],[80.80817,24.93868],[80.80584,24.94368],[80.80993,24.95273],[80.80517,24.95351],[80.79951,24.95854],[80.79518,24.96023],[80.79221,24.96487],[80.7998,24.96841],[80.81137,24.97023],[80.81389,24.96936],[80.81383,24.96749],[80.81588,24.96621],[80.82379,24.96777],[80.82543,24.96966],[80.82587,24.9762],[80.83292,24.98198],[80.84589,24.98392],[80.85174,24.98825],[80.85513,25.00399],[80.84303,25.01962],[80.83655,25.02269],[80.83178,25.03287],[80.84012,25.03342],[80.8464,25.04444],[80.85546,25.04731],[80.86375,25.05652],[80.86966,25.05886],[80.87804,25.06547],[80.87642,25.0734],[80.86915,25.07284],[80.8676,25.07534],[80.86718,25.07951],[80.87959,25.09925],[80.87859,25.1021],[80.87459,25.10415],[80.87423,25.10862],[80.86925,25.11225],[80.86844,25.11568],[80.87494,25.12026],[80.87886,25.12565],[80.87952,25.13834],[80.88863,25.13252],[80.89478,25.13401],[80.89573,25.13529],[80.89454,25.13818],[80.91291,25.15908],[80.90372,25.15931],[80.89891,25.16632],[80.88924,25.17549],[80.88876,25.17812],[80.88618,25.17908],[80.88518,25.1818],[80.88208,25.18244],[80.88197,25.18507],[80.88432,25.18612],[80.88466,25.18794],[80.88057,25.18687],[80.8795,25.18126],[80.87238,25.17809],[80.86879,25.17451],[80.86808,25.17845],[80.86415,25.18278],[80.85717,25.18068],[80.85563,25.18247],[80.84508,25.18494],[80.84415,25.1869],[80.83814,25.18035],[80.83928,25.17994],[80.83879,25.17615],[80.84303,25.17599],[80.84622,25.17172],[80.8491,25.1626],[80.84326,25.15952],[80.83991,25.15549],[80.83982,25.14455],[80.83784,25.14143],[80.83645,25.13056],[80.83808,25.12518],[80.84061,25.1232],[80.83891,25.11893],[80.8407,25.11429],[80.84061,25.10861],[80.83754,25.10593],[80.83911,25.1055],[80.83814,25.10431],[80.83554,25.10513],[80.83605,25.10658],[80.83408,25.10603],[80.83372,25.10349],[80.82989,25.10006],[80.82781,25.11522],[80.82439,25.11613],[80.82665,25.12145],[80.8225,25.12395],[80.81724,25.12423],[80.81597,25.12241],[80.81195,25.12408],[80.81527,25.13165],[80.81319,25.13467],[80.8084,25.13679],[80.80376,25.13757],[80.80078,25.1354],[80.79708,25.13657],[80.79475,25.13059],[80.79136,25.13168],[80.78638,25.12944],[80.78171,25.13363],[80.78417,25.13694],[80.77878,25.14226],[80.77903,25.13861],[80.77206,25.13263],[80.7618,25.13483],[80.75391,25.1328],[80.74545,25.12911],[80.74195,25.12363],[80.73675,25.13536],[80.73258,25.13321],[80.73483,25.13936],[80.7336,25.14048],[80.73189,25.13936],[80.73165,25.14495],[80.73024,25.14632],[80.72763,25.13768],[80.72318,25.13714],[80.72157,25.13529],[80.72042,25.1358],[80.72089,25.13886],[80.71921,25.13467],[80.72011,25.13241],[80.71811,25.13034],[80.70761,25.13054],[80.70439,25.12837],[80.7041,25.12227],[80.70763,25.11765],[80.71087,25.11976],[80.72286,25.12027],[80.72385,25.12158],[80.72735,25.11855],[80.73066,25.11264],[80.72631,25.11116],[80.72324,25.10507],[80.72324,25.09465],[80.72545,25.09143],[80.73512,25.08924],[80.7366,25.09487],[80.74336,25.09272],[80.75193,25.09289],[80.7541,25.09031],[80.7575,25.09083],[80.75524,25.08679],[80.75713,25.08232],[80.76886,25.07923],[80.76999,25.07717],[80.77193,25.07821],[80.78363,25.07595],[80.78409,25.06885],[80.78779,25.06139],[80.78467,25.06167],[80.77576,25.05482],[80.76588,25.05289],[80.76171,25.05601],[80.75206,25.05676],[80.75107,25.05407],[80.74253,25.05383],[80.74303,25.05595],[80.73775,25.05466],[80.73691,25.05296],[80.73431,25.05594],[80.73234,25.06369],[80.72072,25.06401],[80.70838,25.05673],[80.69602,25.05501],[80.69117,25.05173],[80.67974,25.04846],[80.68103,25.05329],[80.68026,25.05771],[80.67581,25.05583],[80.67386,25.06061],[80.68403,25.06773],[80.68244,25.07014],[80.68431,25.07306],[80.68289,25.07429],[80.68501,25.07661],[80.67877,25.07704],[80.67292,25.08252],[80.66915,25.07311],[80.66174,25.06761],[80.65867,25.07091],[80.65839,25.08087],[80.65597,25.08471],[80.65193,25.08378],[80.64768,25.08731],[80.64266,25.08857],[80.64089,25.08724],[80.64166,25.09201],[80.64042,25.09249],[80.63947,25.09081],[80.64097,25.08925],[80.63931,25.08715],[80.63389,25.08765],[80.63421,25.08988],[80.62881,25.09043],[80.62837,25.08716],[80.62581,25.08671],[80.62765,25.08535],[80.62603,25.08294],[80.62394,25.08869],[80.61025,25.09577],[80.60808,25.09843],[80.61133,25.10074],[80.61881,25.10049],[80.62077,25.10498],[80.61875,25.10649],[80.61958,25.10816],[80.62501,25.11127],[80.62445,25.11488],[80.62741,25.11741],[80.63078,25.11598],[80.63237,25.11305],[80.63574,25.11316],[80.63823,25.11687],[80.63254,25.1225],[80.63455,25.12863],[80.62851,25.1334],[80.62237,25.13494],[80.62002,25.13392],[80.61643,25.12835],[80.61161,25.1277],[80.61034,25.12901],[80.61039,25.13631],[80.61268,25.14319],[80.60967,25.14569],[80.60844,25.14983],[80.6019,25.15043],[80.59678,25.14375],[80.59764,25.14125],[80.595,25.1272],[80.59677,25.12791],[80.60003,25.12615],[80.60244,25.12254],[80.60638,25.1212],[80.60719,25.11791],[80.6019,25.11637],[80.60021,25.11391],[80.59756,25.11393],[80.59511,25.10519],[80.59233,25.1032],[80.59613,25.09908],[80.59371,25.0945],[80.59785,25.09117],[80.59772,25.0889],[80.59229,25.0902],[80.59712,25.08185],[80.59603,25.07981],[80.59943,25.08024],[80.5982,25.08726],[80.60281,25.08518],[80.60673,25.08628],[80.6062,25.08016],[80.60986,25.07938],[80.61115,25.07713],[80.61415,25.06921],[80.61446,25.06658],[80.61314,25.0657],[80.60424,25.06901],[80.60328,25.0722],[80.60002,25.07335],[80.59726,25.07768],[80.59621,25.07642],[80.59511,25.07942],[80.58219,25.08212],[80.57586,25.08153],[80.56845,25.08688],[80.56665,25.07802],[80.56812,25.07748],[80.56758,25.07336],[80.55223,25.06282],[80.54528,25.06461],[80.54074,25.07172],[80.53349,25.07014],[80.5216,25.07605],[80.5191,25.08227],[80.52097,25.09109],[80.51419,25.09677],[80.49974,25.10031],[80.4983,25.09659],[80.49311,25.09963],[80.49235,25.09801],[80.48957,25.09852],[80.48791,25.09671],[80.4876,25.09883],[80.48518,25.09794],[80.48272,25.10021],[80.48065,25.09868],[80.48152,25.09587],[80.47953,25.09634],[80.48077,25.09291],[80.48687,25.09018],[80.48858,25.09094],[80.49246,25.08823],[80.50053,25.08722],[80.50663,25.08397],[80.50338,25.07305],[80.49641,25.07295],[80.50183,25.07069],[80.50899,25.05879],[80.50645,25.05384],[80.50097,25.05146],[80.50066,25.04781],[80.50307,25.04524],[80.50058,25.04153],[80.51415,25.04336],[80.51832,25.04094],[80.5323,25.03792],[80.54082,25.03245],[80.54607,25.03242],[80.54816,25.02993],[80.54745,25.02493],[80.54393,25.0198],[80.54167,25.01904],[80.54137,25.01668],[80.54437,25.01405],[80.54339,25.01134],[80.54928,25.0021],[80.54371,25.0029],[80.5386,25.00043],[80.53084,25.00125],[80.52503,25.00356],[80.52359,25.00658],[80.51762,25.00878],[80.51476,25.00295],[80.50962,25.00313],[80.50541,25.00538],[80.50079,25.00447],[80.4993,25.00621],[80.49662,24.99887],[80.4975,24.99565],[80.49259,24.98938],[80.48829,24.98988],[80.48039,24.986],[80.47836,24.97994],[80.47866,24.97395],[80.47644,24.97646],[80.46524,24.97577],[80.45614,24.98164],[80.45943,24.98483],[80.45592,24.99125],[80.46396,24.99538],[80.46285,25.00253],[80.45652,25.00402],[80.45188,24.99944],[80.44691,25.00203],[80.44489,24.99452],[80.43724,24.99433],[80.43718,24.99741],[80.43565,24.99826],[80.43679,25.00148],[80.44288,25.00207],[80.44353,25.0041],[80.44908,25.00283],[80.45484,25.00424],[80.45459,25.00652],[80.45124,25.00991],[80.45317,25.01346],[80.45245,25.01515],[80.44747,25.01422],[80.44411,25.02085],[80.43938,25.02299],[80.43552,25.02155],[80.43309,25.02362],[80.44139,25.03341],[80.44585,25.03736],[80.44767,25.03693],[80.44895,25.04055],[80.45445,25.04222],[80.45636,25.03934],[80.46291,25.03992],[80.46464,25.03575],[80.47435,25.03053],[80.4784,25.0326],[80.48271,25.03111],[80.48485,25.03367],[80.48807,25.03019],[80.48972,25.03134],[80.49532,25.02904],[80.50194,25.03663],[80.48882,25.04348],[80.4865,25.04053],[80.48357,25.0409],[80.48174,25.03802],[80.47515,25.03794],[80.47414,25.04276],[80.47153,25.04239],[80.46999,25.04432],[80.47271,25.04603],[80.46974,25.04719],[80.46885,25.05888],[80.46651,25.06492],[80.46357,25.06803],[80.46185,25.06794],[80.45706,25.06331],[80.45143,25.06221],[80.45146,25.06897],[80.44642,25.07112],[80.45273,25.07503],[80.44996,25.07518],[80.45073,25.07691],[80.44845,25.07864],[80.44401,25.07797],[80.44322,25.07415],[80.43956,25.07514],[80.43727,25.06934],[80.43303,25.06576],[80.42889,25.06565],[80.42835,25.06734],[80.42311,25.06868],[80.41611,25.07318],[80.41615,25.07026],[80.41814,25.06901],[80.41449,25.05731],[80.40872,25.05525],[80.40412,25.06167],[80.40657,25.0637],[80.4053,25.06772],[80.4023,25.06575],[80.40062,25.06957],[80.39954,25.06435],[80.39227,25.06381],[80.39216,25.05847],[80.38846,25.05503],[80.388,25.05091],[80.38097,25.05186],[80.37366,25.05591],[80.37266,25.05336],[80.37483,25.04894],[80.37051,25.04269],[80.37826,25.04043],[80.38536,25.04183],[80.38984,25.03556],[80.38707,25.03246],[80.38568,25.03557],[80.3833,25.03527],[80.37785,25.02702],[80.38702,25.02388],[80.38512,25.01826],[80.3909,25.01615],[80.39144,25.01308],[80.39644,25.01195],[80.39564,25.01021],[80.38732,25.00431],[80.37849,25.00435],[80.37588,25.01467],[80.37746,25.01954],[80.37186,25.02084],[80.36919,25.01993],[80.36295,25.0236],[80.35738,25.01158],[80.35345,25.01339],[80.352,25.01751],[80.34517,25.01673],[80.34166,25.01348],[80.3416,25.01117],[80.33055,24.99233],[80.32314,24.99774],[80.32063,25.00283],[80.31338,25.00352],[80.30741,25.00648],[80.3044,25.01109],[80.30021,25.01283],[80.29975,25.01558],[80.29238,25.0167],[80.27362,25.02597],[80.28835,25.03928],[80.28809,25.04661],[80.28487,25.053],[80.28581,25.05603],[80.29054,25.05954],[80.29691,25.05319],[80.2997,25.05365],[80.30368,25.05175],[80.3029,25.0511],[80.30465,25.05086],[80.30762,25.04642],[80.3114,25.04423],[80.32119,25.04992],[80.33148,25.04798],[80.33419,25.05636],[80.33675,25.05907],[80.34046,25.05862],[80.34067,25.05443],[80.34365,25.05347],[80.34452,25.05574],[80.35071,25.05317],[80.35533,25.05563],[80.3562,25.05736],[80.35423,25.05933],[80.35597,25.06157],[80.34908,25.06242],[80.34578,25.0649],[80.35154,25.08118],[80.34838,25.08278],[80.34843,25.08665],[80.35161,25.08816],[80.35212,25.08906],[80.35034,25.08935],[80.35134,25.09139],[80.35404,25.09155],[80.35654,25.09489],[80.36008,25.09388],[80.36241,25.09756],[80.37048,25.09972],[80.3701,25.10222],[80.37473,25.1087],[80.37608,25.11636],[80.37571,25.11756],[80.37388,25.11654],[80.36915,25.11777],[80.35472,25.12642],[80.35534,25.12849],[80.35232,25.13095],[80.35641,25.13216],[80.35385,25.13595],[80.35456,25.13836],[80.35782,25.1425],[80.36225,25.14437],[80.37348,25.1474],[80.37488,25.14553],[80.37655,25.14583],[80.38508,25.15561],[80.3902,25.15839],[80.40988,25.16296],[80.41989,25.16318],[80.42819,25.16953],[80.43167,25.17762],[80.42209,25.19741],[80.41458,25.20565],[80.41209,25.21324],[80.40773,25.21802],[80.41075,25.22408],[80.40334,25.24403],[80.40013,25.24634],[80.39626,25.24643],[80.38867,25.23751],[80.38358,25.23729],[80.36963,25.24763],[80.36939,25.24953],[80.36587,25.25107],[80.35681,25.2618],[80.35497,25.27092],[80.35143,25.27716],[80.34821,25.27845],[80.32551,25.27823],[80.3108,25.28641],[80.31117,25.29823],[80.31851,25.30506],[80.32136,25.31232],[80.31885,25.32223],[80.32267,25.33209],[80.31819,25.33926],[80.31238,25.34407],[80.30955,25.35436],[80.31127,25.36057],[80.32031,25.36605],[80.31655,25.37761],[80.31541,25.38887],[80.28845,25.41703],[80.28561,25.41711],[80.28506,25.41546],[80.27992,25.42076],[80.26793,25.4221],[80.26384,25.42402],[80.26127,25.41607],[80.25551,25.40956],[80.25554,25.40438],[80.25342,25.40083],[80.24291,25.40357],[80.23616,25.40782],[80.23173,25.40236],[80.22082,25.39674],[80.22036,25.39813],[80.20618,25.40447],[80.20547,25.40682],[80.20756,25.41136],[80.20237,25.41404],[80.196,25.40205],[80.19711,25.40083],[80.19587,25.3991],[80.19655,25.38117],[80.19493,25.37816],[80.189,25.37924],[80.1821,25.3768],[80.16896,25.37686],[80.16734,25.3733],[80.16716,25.36408],[80.16304,25.36299],[80.15808,25.35905],[80.14939,25.35761],[80.14178,25.35066],[80.1311,25.33423],[80.12658,25.34026],[80.11883,25.34329],[80.11737,25.34152],[80.10529,25.34855],[80.10314,25.35154],[80.10096,25.35087],[80.08878,25.35585],[80.08207,25.34463],[80.07267,25.33695],[80.07148,25.33842],[80.06704,25.33943],[80.0647,25.33833],[80.06146,25.34031],[80.04295,25.33802],[80.03895,25.33971],[80.03827,25.3385],[80.03776,25.34027],[80.03342,25.34202],[80.02742,25.33665],[80.02743,25.3346],[80.02584,25.33467],[80.02682,25.33154],[80.02412,25.32947],[80.02338,25.32624],[80.01779,25.32253],[80.01963,25.31579],[80.02426,25.31196],[80.02095,25.30544],[80.02265,25.30349],[80.02221,25.29762],[80.01905,25.29909],[80.01198,25.29563],[80.01093,25.29281],[80.00779,25.29178],[80.00448,25.28796],[80.00192,25.28902],[79.99894,25.28597],[79.99851,25.27754],[80.00109,25.27648],[80.00159,25.27384],[80.00728,25.27214],[80.0043,25.26935],[80.00512,25.26571],[79.98666,25.26739],[79.98078,25.26185],[79.96848,25.26655],[79.96049,25.26423],[79.95325,25.26453],[79.94833,25.26866],[79.9388,25.258],[79.93657,25.25371],[79.93654,25.24754],[79.92762,25.24961],[79.92303,25.24178],[79.92202,25.23184],[79.91755,25.22683],[79.91847,25.23752],[79.91652,25.24462],[79.90749,25.25089],[79.90503,25.24902],[79.90208,25.24079],[79.89631,25.24255],[79.89292,25.24151],[79.87788,25.25102],[79.87239,25.24276],[79.8681,25.24079],[79.86452,25.23635],[79.85732,25.23472],[79.85138,25.23556],[79.85116,25.22702],[79.85275,25.2251],[79.86034,25.22221],[79.86859,25.21649],[79.86577,25.2153],[79.86705,25.21355],[79.86586,25.21178],[79.86366,25.21263],[79.86173,25.20953],[79.86173,25.20476],[79.85602,25.19405],[79.85891,25.19354],[79.86504,25.18804],[79.86537,25.17995],[79.86309,25.17719],[79.87009,25.17227],[79.8656,25.16105],[79.86646,25.14982],[79.86914,25.14767],[79.8734,25.149],[79.88153,25.14205],[79.87491,25.14338],[79.86882,25.14053],[79.86614,25.14106],[79.85162,25.12855],[79.85277,25.12563],[79.85179,25.12171],[79.84683,25.11598],[79.84801,25.11053],[79.85039,25.11023],[79.84983,25.10759],[79.85325,25.10583],[79.85249,25.10288],[79.85427,25.10338],[79.86169,25.09674],[79.85124,25.0942],[79.84504,25.09403],[79.8287,25.09932],[79.82657,25.10626],[79.82397,25.10825],[79.80833,25.11003],[79.80488,25.11309],[79.77262,25.1251],[79.76365,25.13005],[79.76199,25.13427],[79.7485,25.13935],[79.73985,25.13535],[79.73564,25.13129],[79.71725,25.12877],[79.69289,25.13324],[79.68806,25.13267],[79.68336,25.13515],[79.67834,25.13178],[79.67637,25.1243],[79.67322,25.12036],[79.67001,25.12284],[79.66048,25.12471],[79.64922,25.12971],[79.64151,25.12692],[79.6375,25.12906],[79.63642,25.13138],[79.6288,25.13422],[79.62271,25.14061],[79.62154,25.14046],[79.62205,25.13593],[79.62038,25.13447],[79.60834,25.12804],[79.60114,25.12749],[79.59941,25.12814],[79.5998,25.13511],[79.60332,25.14293],[79.60573,25.14343],[79.60762,25.14928],[79.60636,25.14976],[79.60699,25.15277],[79.59981,25.14383],[79.59569,25.14337],[79.59369,25.14898],[79.58914,25.1487],[79.58249,25.15088],[79.57968,25.15346],[79.57805,25.16022],[79.57581,25.16189],[79.57736,25.1626],[79.57725,25.16565],[79.57529,25.16707],[79.57628,25.16822],[79.56936,25.1718],[79.56878,25.16898],[79.56506,25.17063],[79.56041,25.16979],[79.56041,25.16758],[79.5569,25.16365],[79.55164,25.16071],[79.54648,25.14836],[79.54184,25.14284],[79.53891,25.1405],[79.53466,25.14215],[79.53486,25.14002],[79.53238,25.13882],[79.53289,25.13331],[79.52751,25.13109],[79.52391,25.13135],[79.52078,25.12699],[79.51795,25.12703],[79.52112,25.12519],[79.51876,25.1181],[79.52425,25.10716],[79.52611,25.09989],[79.52489,25.09697],[79.52062,25.09762],[79.51873,25.09504],[79.51041,25.09683],[79.50584,25.09545],[79.5036,25.09351],[79.50304,25.08888],[79.5,25.08344],[79.49529,25.08355],[79.4915,25.07965],[79.48284,25.07965],[79.48081,25.08153],[79.47731,25.08179],[79.47528,25.08617],[79.4724,25.08778],[79.46502,25.08805],[79.46823,25.09417],[79.47014,25.10797],[79.47724,25.12745],[79.4715,25.12812],[79.46971,25.12476],[79.4597,25.12006],[79.45211,25.10865],[79.44618,25.10479],[79.44137,25.10395],[79.43892,25.10122],[79.43696,25.10547],[79.4392,25.1278],[79.43527,25.13171],[79.42702,25.13543],[79.4213,25.13543],[79.41577,25.1331],[79.42552,25.13015],[79.42689,25.12583],[79.42613,25.11906],[79.42119,25.11518],[79.41996,25.11106],[79.41439,25.10942],[79.41155,25.11018],[79.40574,25.10636],[79.39308,25.11694],[79.39601,25.12836],[79.38757,25.13031],[79.3907,25.14128],[79.38395,25.14271],[79.3896,25.16545],[79.39225,25.16905],[79.3899,25.17011],[79.39337,25.17318],[79.40307,25.17638],[79.41163,25.1827],[79.41151,25.19059],[79.40836,25.19469],[79.4123,25.19831],[79.41208,25.20032],[79.42172,25.20033],[79.43737,25.19682],[79.44037,25.19882],[79.44883,25.21507],[79.43568,25.21684],[79.43372,25.21763],[79.43266,25.22064],[79.44653,25.2442],[79.45057,25.24379],[79.45351,25.24822],[79.45609,25.2475],[79.46214,25.25627],[79.46246,25.26467],[79.47567,25.26099],[79.47635,25.26508],[79.49307,25.26206],[79.49446,25.26691],[79.48192,25.26854],[79.48154,25.27082],[79.47845,25.27301],[79.4793,25.27843],[79.46722,25.2833],[79.46651,25.27975],[79.46116,25.28252],[79.45858,25.27978],[79.46024,25.27407],[79.46292,25.27221],[79.46227,25.27106],[79.45743,25.26852],[79.45538,25.26905],[79.45013,25.26307],[79.44484,25.25916],[79.4405,25.25807],[79.43745,25.25488],[79.4259,25.25354],[79.40881,25.25609],[79.40678,25.25806],[79.4085,25.26163],[79.40761,25.27392],[79.39457,25.28275],[79.39205,25.27957],[79.38903,25.27958],[79.38665,25.28152],[79.38754,25.28582],[79.36859,25.29246],[79.36734,25.28121],[79.36995,25.2798],[79.37021,25.27651],[79.37307,25.27503],[79.3725,25.27299],[79.37389,25.2725],[79.37021,25.26553],[79.36982,25.25999],[79.3629,25.2617],[79.35528,25.2659],[79.35478,25.26884],[79.35856,25.27679],[79.35661,25.27853],[79.35831,25.28424],[79.35193,25.28334],[79.33615,25.2881],[79.34096,25.29955],[79.34658,25.30508],[79.34136,25.30762],[79.342,25.3105],[79.33965,25.31128],[79.34133,25.31893],[79.34467,25.32301],[79.34697,25.32199],[79.35223,25.32988],[79.34444,25.33232],[79.34209,25.329],[79.33905,25.32922],[79.33097,25.33184],[79.32654,25.33525],[79.30842,25.33401],[79.29989,25.33763],[79.29831,25.33287],[79.29916,25.32878],[79.29568,25.32364],[79.2789,25.32399],[79.27833,25.32015],[79.27052,25.30972],[79.26753,25.28462],[79.26304,25.27218],[79.26676,25.26593],[79.27354,25.26061],[79.27532,25.26327],[79.28182,25.26182],[79.28927,25.27278],[79.28783,25.2737],[79.29008,25.28041],[79.29379,25.28358],[79.30291,25.27429],[79.30336,25.26963],[79.30991,25.26262],[79.31039,25.25989],[79.31652,25.25596],[79.32701,25.25579],[79.32959,25.25761],[79.33521,25.2698],[79.33818,25.26802],[79.34335,25.26896],[79.34736,25.2667],[79.35086,25.26392],[79.34468,25.25],[79.34534,25.23473],[79.34358,25.22706],[79.33908,25.22661],[79.33451,25.22959],[79.33276,25.22828],[79.33607,25.223],[79.34452,25.21726],[79.34772,25.21308],[79.35189,25.21216],[79.34925,25.20654],[79.33836,25.19796],[79.32821,25.20986],[79.32938,25.21146],[79.32779,25.21342],[79.32853,25.22132],[79.32473,25.21851],[79.30899,25.22368],[79.30687,25.22492],[79.30816,25.23194],[79.30522,25.23246],[79.29919,25.23993],[79.2939,25.24033],[79.28499,25.24593],[79.27925,25.24473],[79.28355,25.23798],[79.28596,25.22764],[79.28543,25.22028],[79.28182,25.20891],[79.28462,25.19119],[79.29226,25.18417],[79.29891,25.19146],[79.30143,25.20143],[79.30851,25.19829],[79.31005,25.18188],[79.30869,25.17899],[79.30437,25.17823],[79.31045,25.17213],[79.31363,25.16188],[79.32313,25.14983],[79.31526,25.14715],[79.31365,25.13624],[79.30969,25.13421],[79.30731,25.12947],[79.29661,25.13202],[79.29241,25.13053],[79.28643,25.13139],[79.2879,25.12778],[79.28255,25.11754],[79.27818,25.11743],[79.27772,25.11994],[79.27279,25.12256],[79.27032,25.12053],[79.2659,25.12147],[79.2599,25.12526],[79.26404,25.12824],[79.2649,25.13387],[79.26881,25.13845],[79.26354,25.14071],[79.26646,25.14626],[79.26489,25.15173],[79.26053,25.15307],[79.25556,25.15786],[79.2492,25.15954],[79.23976,25.1576],[79.23234,25.15339],[79.23168,25.15126],[79.22416,25.14605],[79.23634,25.1405],[79.24922,25.1403],[79.24994,25.13871],[79.24611,25.1348],[79.24304,25.12298],[79.24809,25.11686],[79.24514,25.11385],[79.24037,25.11326],[79.22737,25.122],[79.22228,25.11504],[79.21803,25.11291],[79.21718,25.1108],[79.21503,25.11141],[79.21241,25.11399],[79.2136,25.12066],[79.20384,25.12561],[79.20524,25.12915],[79.20246,25.13251],[79.20431,25.13992],[79.19605,25.14284],[79.19221,25.14621],[79.19034,25.14331],[79.18612,25.1442],[79.18515,25.14202],[79.18335,25.14337],[79.17949,25.14078],[79.1766,25.14135],[79.17727,25.13776],[79.17462,25.12821],[79.18729,25.12638],[79.18545,25.12066],[79.186,25.11493],[79.18134,25.11648],[79.1779,25.11558],[79.17424,25.10828],[79.1658,25.10719],[79.16429,25.1088],[79.16226,25.10737],[79.16127,25.10893],[79.15931,25.10744],[79.15772,25.11144],[79.14391,25.11487],[79.14017,25.10858],[79.12402,25.11078],[79.12437,25.11879],[79.13213,25.12711],[79.12126,25.13425],[79.116,25.13965],[79.12609,25.16122],[79.11317,25.16451],[79.09585,25.1747],[79.09461,25.17663],[79.09545,25.18246],[79.09063,25.19081],[79.08815,25.18695],[79.08862,25.18435],[79.08141,25.18134],[79.07678,25.17429],[79.07388,25.17364],[79.07149,25.1702],[79.07124,25.16112],[79.068,25.1497],[79.06299,25.14798],[79.06125,25.14489],[79.05559,25.14133],[79.05548,25.139],[79.0528,25.13816],[79.05081,25.13398],[79.03076,25.13848],[79.02879,25.14178],[79.03342,25.1525],[79.03236,25.15645],[79.03688,25.16139],[79.03184,25.164],[79.03686,25.1666],[79.04004,25.1709],[79.03439,25.1741],[79.03469,25.17799],[79.03157,25.18035],[79.03091,25.18448],[79.04223,25.1967],[79.0445,25.20174],[79.04873,25.20609],[79.05233,25.20744],[79.05402,25.20169],[79.04859,25.19345],[79.05206,25.18743],[79.05967,25.19041],[79.06209,25.19333],[79.06098,25.19518],[79.06205,25.19904],[79.06432,25.19947],[79.06414,25.20169],[79.06242,25.20028],[79.06032,25.20107],[79.06195,25.20665],[79.06057,25.20964],[79.06373,25.21487],[79.06368,25.22176],[79.03365,25.23372],[79.03999,25.24268],[79.03387,25.24285],[79.02847,25.2406],[79.02613,25.24222],[79.02485,25.24087],[79.02177,25.24157],[79.02139,25.24538],[79.01799,25.24927],[79.02432,25.25723],[79.02561,25.26128],[79.02084,25.26444],[79.02285,25.2679],[79.01322,25.27405],[79.01215,25.27243],[78.99437,25.27316],[78.99493,25.26708],[78.98683,25.26414],[78.98522,25.25916],[78.97995,25.25452],[78.97484,25.24049],[78.97472,25.23729],[78.97608,25.23666],[78.98062,25.23994],[78.9846,25.23958],[78.98289,25.23425],[78.99466,25.23222],[79.00119,25.2337],[78.99923,25.23151],[79.00251,25.22795],[79.00103,25.22105],[79.00742,25.212],[79.00614,25.21224],[79.00537,25.20708],[79.00587,25.19505],[78.99277,25.19686],[78.98074,25.20532],[78.9806,25.21146],[78.97594,25.21198],[78.97029,25.21644],[78.96498,25.21718],[78.96308,25.21108],[78.95747,25.21746],[78.95386,25.21896],[78.95165,25.21288],[78.94656,25.21429],[78.93529,25.2107],[78.93433,25.21189],[78.92521,25.20445],[78.90754,25.18479],[78.91189,25.18084],[78.90965,25.17787],[78.90305,25.17492],[78.90303,25.17043],[78.89806,25.16862],[78.89028,25.16066],[78.88771,25.16101],[78.88191,25.15689],[78.8804,25.15762],[78.87865,25.16684],[78.87998,25.17106],[78.87437,25.17241],[78.87285,25.17541],[78.87344,25.18389],[78.87255,25.18656],[78.87064,25.18701],[78.87398,25.19137],[78.88283,25.19794],[78.8868,25.20604],[78.88635,25.21],[78.89058,25.21442],[78.87722,25.22374],[78.87036,25.22643],[78.86953,25.23111],[78.8716,25.23887],[78.87711,25.24507],[78.8795,25.25226],[78.88092,25.25401],[78.88581,25.25375],[78.89338,25.24471],[78.89977,25.24312],[78.90239,25.24589],[78.90385,25.25247],[78.90841,25.25647],[78.91233,25.26924],[78.91703,25.27359],[78.92925,25.26982],[78.93293,25.2633],[78.93759,25.25969],[78.94514,25.25942],[78.94732,25.26179],[78.9546,25.26136],[78.95392,25.26934],[78.94868,25.27418],[78.95551,25.28276],[78.97353,25.27716],[78.97754,25.27673],[78.97992,25.27905],[78.97687,25.28292],[78.97561,25.28814],[78.9689,25.29259],[78.96387,25.29936],[78.95743,25.30224],[78.96029,25.30737],[78.95748,25.31625],[78.95727,25.32494],[78.96151,25.34345],[78.96062,25.34508],[78.95771,25.3459],[78.95318,25.34047],[78.94771,25.34213],[78.94631,25.3339],[78.93774,25.32718],[78.93276,25.32698],[78.93225,25.32517],[78.92793,25.32413],[78.92672,25.32724],[78.93006,25.3295],[78.93222,25.33594],[78.92254,25.3429],[78.92091,25.34359],[78.91619,25.33494],[78.91389,25.33497],[78.91184,25.33256],[78.89601,25.3397],[78.89266,25.33864],[78.88657,25.34339],[78.882,25.34364],[78.88037,25.33211],[78.88125,25.32492],[78.86757,25.32555],[78.86554,25.31844],[78.86262,25.31445],[78.86397,25.31022],[78.87446,25.30845],[78.87088,25.30335],[78.87176,25.29912],[78.8799,25.28598],[78.87498,25.27838],[78.87281,25.28042],[78.86661,25.28039],[78.865,25.2647],[78.85993,25.2577],[78.85629,25.25665],[78.85737,25.24396],[78.85392,25.24107],[78.85214,25.23732],[78.85217,25.23082],[78.84965,25.22879],[78.8428,25.22769],[78.83514,25.24291],[78.83274,25.25252],[78.82291,25.2562],[78.81865,25.26355],[78.80947,25.2706],[78.81088,25.27559],[78.81374,25.27762],[78.81293,25.28006],[78.81808,25.28313],[78.8174,25.29111],[78.82043,25.29609],[78.81845,25.29895],[78.82099,25.30135],[78.8278,25.30141],[78.82857,25.30274],[78.82273,25.3068],[78.81715,25.30668],[78.80391,25.29219],[78.79766,25.28917],[78.79393,25.29117],[78.79117,25.29589],[78.78778,25.29601],[78.79232,25.30809],[78.79824,25.31394],[78.81034,25.30781],[78.81437,25.30851],[78.8193,25.30694],[78.81719,25.30877],[78.82129,25.31151],[78.8219,25.3161],[78.83445,25.32322],[78.83936,25.3318],[78.84207,25.33262],[78.84261,25.33655],[78.84716,25.33678],[78.84616,25.32698],[78.84994,25.33494],[78.84483,25.34202],[78.8413,25.34264],[78.84104,25.34497],[78.84359,25.34947],[78.84731,25.35051],[78.84574,25.35555],[78.85161,25.35746],[78.85701,25.36292],[78.85953,25.36312],[78.85834,25.3644],[78.86154,25.36937],[78.86287,25.37117],[78.86786,25.37244],[78.87178,25.38095],[78.87464,25.3797],[78.88145,25.38226],[78.88024,25.38589],[78.91377,25.38425],[78.91776,25.3961],[78.91981,25.39697],[78.92969,25.39589],[78.93166,25.39988],[78.93506,25.39897],[78.93474,25.39518],[78.93598,25.39513],[78.9402,25.40038],[78.9533,25.39995],[78.95355,25.39815],[78.95647,25.39719],[78.95755,25.39368],[78.95237,25.38854],[78.95103,25.38969],[78.94737,25.38488],[78.94541,25.38561],[78.94212,25.38294],[78.93829,25.37483],[78.92857,25.37834],[78.92861,25.38021],[78.91594,25.38144],[78.91259,25.37712],[78.89908,25.37769],[78.89642,25.37411],[78.89657,25.37186],[78.89968,25.36861],[78.90134,25.36162],[78.91453,25.35762],[78.92325,25.35879],[78.92382,25.35483],[78.92699,25.35161],[78.93871,25.34698],[78.945,25.35041],[78.95044,25.36061],[78.95181,25.36067],[78.95916,25.37151],[78.96354,25.3689],[78.9654,25.37068],[78.97524,25.36607],[78.97896,25.36954],[78.9816,25.36954],[78.98933,25.37404],[78.98619,25.37807],[78.98751,25.38129],[78.96993,25.39011],[78.9733,25.39418],[78.9738,25.39789],[78.97204,25.40298],[78.96846,25.40467],[78.97623,25.41996],[78.96999,25.42323],[78.96974,25.43166],[78.967,25.43462],[78.9603,25.43715],[78.958,25.44028],[78.95348,25.43901],[78.95094,25.44055],[78.95037,25.43733],[78.94678,25.43593],[78.93827,25.42225],[78.93245,25.42404],[78.93151,25.42756],[78.93264,25.4303],[78.92165,25.43242],[78.90887,25.44242],[78.90897,25.44508],[78.91541,25.44626],[78.92351,25.45384],[78.92522,25.45712],[78.92399,25.45949],[78.93602,25.46161],[78.93782,25.46504],[78.94391,25.48293],[78.92671,25.49089],[78.93148,25.49121],[78.93719,25.48933],[78.94216,25.49245],[78.9402,25.49334],[78.94109,25.49503],[78.93676,25.49542],[78.933,25.49936],[78.93499,25.50526],[78.92712,25.5074],[78.9199,25.5154],[78.92244,25.51567],[78.9272,25.52498],[78.93642,25.51979],[78.94685,25.52946],[78.95285,25.53753],[78.94755,25.54086],[78.95179,25.54879],[78.9433,25.55378],[78.94413,25.55627],[78.93649,25.55683],[78.9331,25.55534],[78.93087,25.5509],[78.92795,25.5498],[78.92337,25.53594],[78.92222,25.53605],[78.91618,25.54627],[78.91773,25.54973],[78.91694,25.5525],[78.9112,25.55516],[78.90405,25.55135],[78.90005,25.5522],[78.89686,25.55514],[78.8934,25.55531],[78.88104,25.55297],[78.87692,25.54846],[78.87429,25.54095],[78.87791,25.53681],[78.88644,25.53243],[78.88706,25.52684],[78.88438,25.51558],[78.87611,25.51747],[78.87107,25.5132],[78.86648,25.51205],[78.85216,25.51387],[78.84154,25.51254],[78.83341,25.50264],[78.83282,25.4995],[78.84232,25.49891],[78.84019,25.49336],[78.85436,25.49001],[78.85536,25.48448],[78.85744,25.48424],[78.8603,25.47925],[78.86031,25.47126],[78.86617,25.46567],[78.86547,25.45893],[78.86298,25.45614],[78.86388,25.45124],[78.8607,25.445],[78.85651,25.44668],[78.84891,25.43726],[78.84807,25.42974],[78.84656,25.42869],[78.83782,25.42797],[78.83163,25.43157],[78.82802,25.42825],[78.82357,25.43134],[78.82433,25.4342],[78.82073,25.43869],[78.8234,25.44261],[78.82576,25.44335],[78.84046,25.4417],[78.84184,25.44382],[78.84563,25.44331],[78.84826,25.44595],[78.85207,25.44549],[78.85489,25.44769],[78.83518,25.45479],[78.84089,25.4615],[78.83123,25.46118],[78.82061,25.46774],[78.81593,25.46176],[78.81426,25.45614],[78.81248,25.4566],[78.80917,25.45341],[78.80638,25.45447],[78.81046,25.46142],[78.81797,25.46751],[78.81869,25.47098],[78.8051,25.47533],[78.79669,25.48276],[78.79094,25.48337],[78.78681,25.4795],[78.77632,25.4784],[78.77493,25.47611],[78.7728,25.47627],[78.77104,25.47191],[78.76783,25.46943],[78.75821,25.47553],[78.75622,25.4786],[78.7572,25.48069],[78.74733,25.48476],[78.74784,25.4887],[78.74631,25.48942],[78.74732,25.49461],[78.74283,25.49878],[78.73635,25.49382],[78.73346,25.48943],[78.73183,25.45806],[78.73507,25.45733],[78.73706,25.45499],[78.73745,25.44979],[78.75,25.44858],[78.75236,25.44671],[78.75383,25.44317],[78.75775,25.44025],[78.75611,25.43824],[78.75799,25.43208],[78.76236,25.4269],[78.7707,25.42285],[78.7734,25.42697],[78.77848,25.42917],[78.78212,25.4342],[78.78514,25.43578],[78.80297,25.43716],[78.80951,25.43422],[78.81047,25.43035],[78.82137,25.42258],[78.81974,25.41991],[78.7991,25.42289],[78.79812,25.42084],[78.79977,25.41927],[78.79581,25.41645],[78.78792,25.41986],[78.78251,25.41571],[78.77917,25.41925],[78.77495,25.41987],[78.76738,25.41496],[78.75811,25.4154],[78.74974,25.41106],[78.74686,25.40306],[78.74556,25.40281],[78.74815,25.39099],[78.75,25.39385],[78.75676,25.39506],[78.76479,25.40187],[78.76798,25.40003],[78.76517,25.39091],[78.76134,25.38594],[78.75692,25.38544],[78.75986,25.38166],[78.77366,25.37617],[78.76592,25.36915],[78.77444,25.35614],[78.77459,25.3531],[78.75997,25.35044],[78.75478,25.35147],[78.75278,25.34591],[78.74105,25.34498],[78.738,25.34794],[78.73096,25.34872],[78.72752,25.3443],[78.72412,25.34397],[78.70879,25.35199],[78.70791,25.36309],[78.7136,25.36962],[78.71405,25.37215],[78.70761,25.37193],[78.70301,25.37377],[78.6996,25.38189],[78.69467,25.37386],[78.67536,25.38115],[78.66384,25.38256],[78.65895,25.38529],[78.66629,25.39273],[78.66234,25.39633],[78.66362,25.40088],[78.65916,25.40579],[78.6589,25.4085],[78.66601,25.41581],[78.66831,25.40648],[78.67142,25.40507],[78.6749,25.39957],[78.70307,25.41894],[78.70906,25.42401],[78.71143,25.4281],[78.70257,25.43294],[78.6997,25.43701],[78.69961,25.44009],[78.69655,25.44299],[78.68987,25.44575],[78.68171,25.43322],[78.67041,25.44002],[78.66545,25.43978],[78.65983,25.44166],[78.65625,25.43779],[78.65398,25.43841],[78.65068,25.43637],[78.64321,25.43531],[78.64136,25.43349],[78.64096,25.42942],[78.64456,25.41947],[78.64493,25.41267],[78.63582,25.40069],[78.631,25.3993],[78.62575,25.40123],[78.62362,25.41347],[78.61938,25.41559],[78.61392,25.41458],[78.60967,25.41602],[78.60446,25.41351],[78.60667,25.4113],[78.60111,25.409],[78.60225,25.39916],[78.59843,25.39627],[78.59941,25.39256],[78.59019,25.38603],[78.58364,25.3877],[78.58145,25.38571],[78.57612,25.39073],[78.5665,25.39353],[78.56616,25.3871],[78.56354,25.38326],[78.56289,25.37726],[78.56924,25.37731],[78.57778,25.38124],[78.5857,25.37417],[78.58877,25.36597],[78.58779,25.35588],[78.58475,25.35338],[78.58329,25.34697],[78.57751,25.34384],[78.57083,25.3433],[78.56727,25.34074],[78.56138,25.34122],[78.55281,25.35294],[78.55184,25.3567],[78.53649,25.3602],[78.532,25.35658],[78.53064,25.35148],[78.54123,25.34554],[78.53705,25.33823],[78.54048,25.33011],[78.53964,25.32775],[78.54371,25.32603],[78.54386,25.32418],[78.54694,25.32198],[78.55007,25.32238],[78.55307,25.31964],[78.53754,25.31066],[78.534,25.31013],[78.53119,25.30002],[78.5202,25.29946],[78.5099,25.29555],[78.50657,25.29952],[78.50275,25.30087],[78.50359,25.30407],[78.5006,25.31378],[78.50298,25.3187],[78.5023,25.3209],[78.49717,25.31943],[78.49478,25.31308],[78.48434,25.3009],[78.47804,25.29852],[78.47693,25.29663],[78.47756,25.28948],[78.47295,25.2855],[78.47118,25.29034],[78.46709,25.29076],[78.45379,25.30127],[78.44519,25.29931],[78.44034,25.29547],[78.43893,25.28866],[78.43503,25.28416],[78.43659,25.2827],[78.43829,25.27458],[78.45085,25.26211],[78.46495,25.26659],[78.47289,25.27374],[78.48364,25.27736],[78.48698,25.281],[78.50343,25.28953],[78.50753,25.28454],[78.51056,25.27678],[78.51665,25.27789],[78.53092,25.28465],[78.5318,25.28162],[78.53372,25.28063],[78.53084,25.27711],[78.53361,25.26837],[78.53731,25.26889],[78.54118,25.26568],[78.54527,25.26471],[78.54983,25.26776],[78.55972,25.26359],[78.563,25.26368],[78.56846,25.25978],[78.57204,25.25957],[78.5705,25.25831],[78.57127,25.25722],[78.5779,25.25482],[78.5731,25.24584],[78.56808,25.24084],[78.56744,25.22994],[78.56012,25.222],[78.55554,25.21142],[78.55644,25.21025],[78.56281,25.22148],[78.56819,25.22474],[78.5702,25.22388],[78.57054,25.20519],[78.57639,25.1952],[78.58334,25.18733],[78.60068,25.15539],[78.60333,25.14596],[78.60533,25.12693],[78.60429,25.1175],[78.60568,25.10887],[78.60191,25.09784],[78.60245,25.09442],[78.61326,25.08758],[78.62815,25.0862],[78.63602,25.07717],[78.65262,25.05059],[78.65192,25.03916],[78.65336,25.03145],[78.64572,25.0186],[78.64706,25.00612],[78.64471,25.00332],[78.64401,24.98429],[78.64143,24.98197],[78.6414,24.97778],[78.63893,24.97578],[78.64003,24.97208],[78.633,24.96712],[78.63394,24.96339],[78.63164,24.96162],[78.63173,24.95769],[78.63613,24.95927],[78.65236,24.94784],[78.65284,24.9438],[78.64988,24.94102],[78.65186,24.93838],[78.65577,24.94037],[78.66339,24.93844],[78.66724,24.91379],[78.67656,24.89863],[78.68365,24.89499],[78.69668,24.89318],[78.70503,24.88725],[78.71089,24.87966],[78.72217,24.88166],[78.72913,24.87895],[78.74676,24.86522],[78.7539,24.86883],[78.76219,24.86002],[78.77004,24.85902],[78.77477,24.84975],[78.77357,24.84094],[78.77593,24.83072],[78.78342,24.81612],[78.78984,24.81098],[78.78703,24.80131],[78.77429,24.79462],[78.7704,24.7884],[78.7728,24.78257],[78.77035,24.7747],[78.77135,24.76883],[78.77,24.75808],[78.7766,24.75183],[78.7723,24.74311],[78.77329,24.73117],[78.77685,24.71364],[78.78115,24.70893],[78.781,24.70608],[78.77795,24.69948],[78.77354,24.69662],[78.77098,24.69141],[78.76364,24.69048],[78.76522,24.68087],[78.76147,24.6709],[78.75879,24.66904],[78.75474,24.66915],[78.75051,24.66419],[78.74677,24.66268],[78.74719,24.65651],[78.74393,24.65406],[78.7454,24.6516],[78.74863,24.65106],[78.74919,24.64817],[78.75064,24.64856],[78.74948,24.64676],[78.75196,24.64241],[78.75001,24.64185],[78.7527,24.63401],[78.75208,24.62192],[78.75482,24.61992],[78.75109,24.61721],[78.75457,24.60382],[78.75203,24.60018],[78.76933,24.59417],[78.77657,24.58874],[78.78379,24.58856],[78.799,24.59437],[78.8032,24.59929],[78.80322,24.60353],[78.81145,24.60393],[78.81244,24.6021],[78.81679,24.60099],[78.82383,24.60244],[78.82637,24.6046],[78.83461,24.60456],[78.83776,24.6158],[78.8433,24.62329],[78.84873,24.62213],[78.85253,24.6247],[78.85555,24.61785],[78.85977,24.61764],[78.86623,24.62743],[78.86861,24.6368],[78.86802,24.63999],[78.87447,24.64178],[78.87705,24.64081],[78.87721,24.64221],[78.88323,24.64129],[78.88231,24.64041],[78.88636,24.63737],[78.88555,24.63495],[78.88999,24.63114],[78.88941,24.62962],[78.89218,24.62929],[78.8962,24.62572],[78.89479,24.6213],[78.89701,24.61479],[78.89915,24.61425],[78.90061,24.60722],[78.90207,24.60779],[78.90206,24.60616],[78.91003,24.60297],[78.91114,24.60012],[78.91257,24.60017],[78.91262,24.59074],[78.92015,24.57481],[78.92343,24.5735],[78.92493,24.57499],[78.92921,24.56573],[78.9338,24.56396],[78.93502,24.56076],[78.94645,24.55715],[78.94834,24.55425],[78.94711,24.55071],[78.95321,24.5469],[78.94815,24.54414],[78.94368,24.53451],[78.94648,24.52585],[78.95132,24.51878],[78.94804,24.51515],[78.94726,24.5024],[78.95705,24.49876],[78.96561,24.49792],[78.97152,24.49424],[78.97044,24.48922],[78.96347,24.48353],[78.94312,24.47901],[78.93622,24.47942],[78.92722,24.48207],[78.92792,24.48433],[78.93714,24.49105],[78.9318,24.49138],[78.92719,24.49452],[78.92495,24.49963],[78.92058,24.49972],[78.91634,24.48233],[78.91221,24.47344],[78.9127,24.46558],[78.91485,24.46229],[78.91421,24.45962],[78.91512,24.4582],[78.92827,24.46019],[78.93992,24.45345],[78.94178,24.45107],[78.94272,24.44408],[78.94748,24.43662],[78.9548,24.43703],[78.96096,24.43954],[78.96522,24.43873],[78.98576,24.44168],[78.99365,24.42275],[78.99245,24.41891],[78.98405,24.41026],[78.98435,24.40478],[78.97693,24.38875],[78.97503,24.37857],[78.96991,24.37028],[78.97259,24.35449],[78.9707,24.35138],[78.97145,24.34761],[78.96301,24.34421],[78.94125,24.31529],[78.92365,24.30649],[78.91888,24.30023],[78.90964,24.298],[78.91161,24.288],[78.91866,24.28298],[78.91607,24.26763],[78.90546,24.26453],[78.88437,24.25],[78.88407,24.24335],[78.88805,24.22728],[78.88185,24.21701],[78.8768,24.2138],[78.86095,24.20921],[78.8521,24.21404],[78.84689,24.21377],[78.83807,24.20734],[78.82675,24.19545],[78.82376,24.19685],[78.82177,24.20415],[78.81495,24.2068],[78.81301,24.20354],[78.81221,24.19315],[78.81415,24.18426],[78.81162,24.17998],[78.80553,24.17818],[78.78943,24.17711],[78.78725,24.18266],[78.78554,24.1835],[78.78075,24.19977],[78.78113,24.20605],[78.77699,24.21108],[78.77133,24.21447],[78.76737,24.22021],[78.76751,24.22668],[78.76452,24.2318],[78.76766,24.23879],[78.76865,24.24843],[78.76741,24.25311],[78.76189,24.25954],[78.75987,24.25733],[78.75979,24.24407],[78.75545,24.24112],[78.75496,24.23834],[78.75042,24.23389],[78.7416,24.23384],[78.74042,24.23498],[78.739,24.23808],[78.74181,24.24501],[78.74126,24.24734],[78.73417,24.25241],[78.72789,24.24822],[78.72638,24.24203],[78.72364,24.24],[78.72557,24.23644],[78.70871,24.23431],[78.70306,24.22692],[78.68252,24.23823],[78.66863,24.24004],[78.66664,24.24196],[78.66712,24.24476],[78.66383,24.25067],[78.6643,24.2561],[78.66005,24.26759],[78.64928,24.27163],[78.64565,24.27853],[78.63877,24.28513],[78.63137,24.28643],[78.6258,24.28059],[78.62454,24.28656],[78.62003,24.29032],[78.61997,24.29289],[78.62809,24.30031],[78.62844,24.30394],[78.62624,24.30732],[78.62341,24.3071],[78.61914,24.31033],[78.61821,24.30709],[78.61582,24.30963],[78.60942,24.30855],[78.60365,24.3145],[78.60104,24.32655],[78.59652,24.332],[78.5961,24.33518],[78.58929,24.33772],[78.58429,24.3465],[78.5831,24.34983],[78.586,24.35374],[78.57647,24.35565],[78.575,24.35532],[78.57319,24.35099],[78.56331,24.35798],[78.55934,24.35674],[78.53837,24.36795],[78.52988,24.3681],[78.52991,24.37238],[78.52723,24.37525],[78.52983,24.37891],[78.52729,24.37914],[78.52565,24.38319],[78.51838,24.38782],[78.50223,24.39034],[78.49362,24.38138],[78.48579,24.36934],[78.47429,24.35634],[78.47421,24.34777],[78.47758,24.33848],[78.46366,24.33013],[78.45639,24.32818],[78.45527,24.32407],[78.44389,24.31935],[78.44587,24.31587],[78.43869,24.31254],[78.43762,24.30858],[78.44015,24.29624],[78.43394,24.29127],[78.43388,24.28792],[78.43109,24.28403],[78.4242,24.28558],[78.4184,24.28494],[78.41408,24.27792],[78.41396,24.27298],[78.40997,24.27112],[78.40345,24.2706],[78.40001,24.27202],[78.39813,24.26944],[78.39538,24.26896],[78.39162,24.27068],[78.38852,24.27085],[78.38787,24.26905],[78.38705,24.2709],[78.3849,24.27001],[78.38187,24.27312],[78.38085,24.28041],[78.3781,24.28408],[78.37033,24.28404],[78.36627,24.29107],[78.35816,24.29231],[78.34805,24.29958],[78.34559,24.30624],[78.34587,24.31391],[78.34369,24.31731],[78.33146,24.32393],[78.32908,24.32713],[78.33128,24.33432],[78.34329,24.34462],[78.3468,24.35241],[78.35693,24.36282],[78.35793,24.36758],[78.36967,24.37493],[78.36579,24.38598],[78.3562,24.38543],[78.3489,24.38744],[78.34491,24.39387],[78.34385,24.39914],[78.34075,24.40207],[78.32189,24.4088],[78.307,24.42309],[78.26969,24.44694],[78.26452,24.4531],[78.26416,24.4557],[78.27379,24.46723],[78.27498,24.47392],[78.26802,24.47904],[78.24957,24.48358],[78.24589,24.48614],[78.24406,24.48905],[78.24773,24.5026],[78.24602,24.50954],[78.24442,24.51142],[78.23321,24.51408],[78.22582,24.52011],[78.22574,24.53054],[78.22944,24.53753],[78.24351,24.5442],[78.2561,24.54714],[78.26447,24.5522],[78.26646,24.55939],[78.26482,24.5675],[78.26733,24.57595],[78.27289,24.57941],[78.2733,24.59576],[78.27798,24.61476],[78.27618,24.61948],[78.26532,24.63141],[78.26267,24.646],[78.26405,24.6511],[78.27522,24.65818],[78.2767,24.66299],[78.26534,24.67934],[78.25752,24.70417],[78.25035,24.71148],[78.22614,24.74691],[78.22557,24.75303],[78.23178,24.76236],[78.23505,24.76381],[78.23574,24.77175],[78.23174,24.77714],[78.21668,24.80859],[78.20403,24.8244],[78.1976,24.83978],[78.19347,24.84252],[78.17751,24.84333],[78.17327,24.84669],[78.16897,24.86262],[78.16906,24.86934],[78.17351,24.87864],[78.19495,24.88943],[78.21059,24.89481],[78.22381,24.91531],[78.2494,24.92987],[78.25623,24.9368],[78.26595,24.94102],[78.27093,24.94877],[78.27915,24.95607],[78.28666,24.95814],[78.29459,24.96306],[78.30703,24.97747],[78.31181,24.98563],[78.31682,24.99001],[78.33385,24.9955],[78.34536,25.01208],[78.34737,25.02153],[78.34018,25.04028],[78.33549,25.06656],[78.3355,25.08114],[78.33863,25.08658],[78.36084,25.09573],[78.38345,25.10172],[78.38786,25.10572],[78.39973,25.12411],[78.40682,25.12893],[78.41544,25.12843],[78.43444,25.12014],[78.44682,25.12177],[78.44795,25.12811],[78.44203,25.13094],[78.42737,25.14589],[78.4273,25.15399],[78.43206,25.15517],[78.44785,25.15271],[78.45187,25.15998],[78.45826,25.16372],[78.45155,25.16893],[78.44608,25.16823],[78.44337,25.16548],[78.4234,25.16931],[78.42474,25.17208],[78.41636,25.17644],[78.41664,25.18353],[78.39608,25.18722],[78.39413,25.1935],[78.39466,25.19735],[78.39156,25.19894],[78.39138,25.20119],[78.39829,25.20538],[78.3993,25.20862],[78.41095,25.21267],[78.4049,25.21488],[78.4025,25.2176],[78.39796,25.21822],[78.39672,25.21691],[78.38206,25.22259],[78.37714,25.22784],[78.37852,25.23869],[78.37488,25.23924],[78.37296,25.23719],[78.36739,25.23685],[78.3598,25.24219],[78.37251,25.25991],[78.36877,25.26138],[78.36637,25.26673],[78.36055,25.27272],[78.35709,25.27314],[78.35011,25.27733],[78.35459,25.29225],[78.33397,25.29241],[78.32991,25.29649],[78.3197,25.29883],[78.3166,25.30184],[78.31173,25.3033],[78.31126,25.30519],[78.32274,25.31633],[78.32489,25.31595],[78.32935,25.3196],[78.33055,25.319],[78.3337,25.3226],[78.3387,25.32406],[78.34379,25.32846],[78.33755,25.33025],[78.3373,25.33639],[78.32806,25.35254],[78.31909,25.35496],[78.31605,25.35755],[78.30498,25.3605],[78.3008,25.35993],[78.30611,25.37518],[78.30531,25.37675],[78.30794,25.3812],[78.31685,25.37867],[78.32237,25.38741],[78.33138,25.39075],[78.34053,25.39952],[78.34091,25.40283],[78.33884,25.40698],[78.34309,25.42002],[78.33939,25.42638],[78.3389,25.43102],[78.34179,25.43098],[78.34698,25.43528],[78.34991,25.44096],[78.34902,25.44281],[78.35454,25.45198],[78.3602,25.45147],[78.36219,25.44598],[78.36946,25.43833],[78.37643,25.43865],[78.37766,25.43681],[78.38095,25.44035],[78.39496,25.44421],[78.39722,25.45627],[78.40031,25.46355],[78.40386,25.4671],[78.41411,25.46979],[78.41649,25.47648],[78.42781,25.4712],[78.43131,25.47363],[78.42741,25.48485],[78.42869,25.48785],[78.4193,25.50039],[78.41681,25.5017],[78.41881,25.50902],[78.42059,25.50813],[78.42248,25.51003],[78.42853,25.50993],[78.42885,25.51154],[78.41906,25.51814],[78.42031,25.52403],[78.41934,25.53296],[78.42107,25.53992],[78.42635,25.54279],[78.42783,25.54539],[78.42828,25.55043],[78.4436,25.5632],[78.44937,25.56329],[78.44647,25.56146],[78.44762,25.56072],[78.44656,25.55943],[78.45096,25.55176],[78.4563,25.54806],[78.46469,25.54551],[78.46627,25.55118],[78.46983,25.55348],[78.46657,25.55337],[78.46567,25.55637],[78.46685,25.55932],[78.47537,25.56466],[78.47833,25.56468],[78.47864,25.56741],[78.48332,25.5708],[78.48266,25.57222],[78.48635,25.57436],[78.4871,25.57315],[78.49334,25.5787],[78.49766,25.57779],[78.49986,25.57416],[78.50206,25.57493],[78.50672,25.57297],[78.5066,25.57152],[78.50912,25.57254],[78.51275,25.56931],[78.51912,25.57029],[78.52366,25.56699],[78.52746,25.56801],[78.52837,25.56666],[78.5327,25.57166],[78.54219,25.56535],[78.54248,25.56295],[78.54466,25.56158],[78.55565,25.55928],[78.5587,25.56058],[78.56063,25.55905],[78.56316,25.56274],[78.56675,25.56256],[78.56921,25.56462],[78.58227,25.56138],[78.58774,25.5566],[78.59113,25.55834],[78.59243,25.56319],[78.59802,25.57069],[78.60155,25.56912],[78.61169,25.56987],[78.61078,25.57797],[78.61596,25.58353],[78.61814,25.58366],[78.6308,25.57893],[78.62419,25.56738],[78.6463,25.56075],[78.65867,25.55989],[78.6675,25.5747],[78.67489,25.57733],[78.67886,25.5853],[78.68731,25.58889],[78.69508,25.58783],[78.69942,25.59091],[78.70018,25.59507],[78.7042,25.59791],[78.71634,25.59953],[78.71598,25.6036],[78.71733,25.60533],[78.72065,25.60554],[78.72457,25.60216],[78.73177,25.60625],[78.73531,25.60101],[78.74215,25.59699],[78.74927,25.59877],[78.75032,25.60304],[78.76621,25.6102],[78.77397,25.61205],[78.77881,25.61091],[78.78236,25.61271],[78.79394,25.61242],[78.79799,25.61643],[78.81176,25.62078],[78.81169,25.63208],[78.81613,25.63581],[78.81987,25.64857],[78.8157,25.66233],[78.81878,25.6692],[78.8167,25.67632],[78.8125,25.68105],[78.80716,25.68412],[78.80453,25.69228],[78.79557,25.69672],[78.79511,25.69978],[78.79998,25.70294],[78.79991,25.70507],[78.78363,25.70872],[78.77478,25.717],[78.76333,25.71993],[78.7557,25.73047],[78.75286,25.75],[78.75873,25.75452],[78.77081,25.74863],[78.77356,25.75527],[78.77208,25.75722],[78.77296,25.75861],[78.77628,25.75978],[78.77883,25.75787],[78.78288,25.75848],[78.78628,25.76472],[78.78597,25.76924],[78.79138,25.77581],[78.79785,25.78838],[78.80292,25.79208],[78.80829,25.80097],[78.82862,25.79571],[78.8333,25.80962],[78.82831,25.81434],[78.82046,25.81574],[78.81431,25.80704],[78.81145,25.80769],[78.81143,25.8096],[78.8092,25.80989],[78.80627,25.81309],[78.80777,25.81685],[78.81038,25.8169],[78.81487,25.82236],[78.81844,25.82901],[78.84555,25.82155],[78.84796,25.81517],[78.84564,25.81136],[78.84618,25.80719],[78.84473,25.80605],[78.846,25.80519],[78.84478,25.80456],[78.84753,25.80334],[78.84465,25.80342],[78.84745,25.80268],[78.84595,25.80078],[78.85553,25.79516],[78.85715,25.79182],[78.86364,25.79078],[78.86439,25.79308],[78.86708,25.79321],[78.87039,25.80137],[78.87244,25.80138],[78.87281,25.80832],[78.86997,25.80903],[78.87061,25.81679],[78.87424,25.82215],[78.87193,25.82811],[78.87258,25.83509],[78.8643,25.83594],[78.86209,25.84274],[78.85141,25.83846],[78.8506,25.85218],[78.85241,25.85665],[78.86195,25.86556],[78.86411,25.87141],[78.87306,25.87514],[78.87621,25.87588],[78.88738,25.86849],[78.89168,25.88024],[78.88672,25.88291],[78.88698,25.88471],[78.89481,25.89517],[78.89115,25.89715],[78.88845,25.90422],[78.88337,25.90901],[78.88464,25.91393],[78.89859,25.91794],[78.90566,25.92562],[78.90576,25.92953],[78.90969,25.93153],[78.90825,25.9345],[78.91569,25.93797],[78.91671,25.94005],[78.92154,25.94065],[78.92748,25.94725],[78.93207,25.94745],[78.93609,25.94167],[78.93896,25.94269],[78.93885,25.94427],[78.93329,25.94818],[78.9371,25.95275],[78.93429,25.95314],[78.93484,25.95586],[78.9305,25.95893],[78.93484,25.96137],[78.93473,25.96442],[78.93761,25.96453],[78.93781,25.97377],[78.93494,25.97498],[78.93318,25.97933],[78.93611,25.98184],[78.94068,25.97851],[78.94354,25.97887],[78.95315,25.98906],[78.95298,25.991],[78.94932,25.99123],[78.9483,25.99319],[78.95554,25.99491],[78.95681,25.99654],[78.95606,25.99801],[78.95129,25.99852],[78.9466,26.00116],[78.94449,26.00628],[78.94821,26.00822],[78.94823,26.01051],[78.95351,26.01522],[78.94826,26.02775],[78.95302,26.02934],[78.95455,26.03338],[78.96039,26.03486],[78.9693,26.04563],[78.97389,26.04504],[78.97273,26.05028],[78.97655,26.05104],[78.9769,26.04794],[78.98015,26.04812],[78.98188,26.05161],[78.98614,26.05368],[78.9863,26.06043],[78.98943,26.06284],[78.99069,26.06883],[79.00275,26.06665],[79.00814,26.07542],[79.00841,26.08014],[79.01206,26.08318],[79.01257,26.08991],[79.00866,26.09321],[79.0021,26.09017],[78.99358,26.09371],[78.987,26.0995],[78.97559,26.1052],[78.97746,26.11114],[78.97683,26.11604],[78.96344,26.12216],[78.96237,26.12532],[78.95848,26.12797],[78.94887,26.12868],[78.95157,26.13432],[78.9629,26.13653],[78.96372,26.1404],[78.96565,26.14141],[78.96438,26.14846],[78.96696,26.15014],[78.97996,26.1511],[78.99426,26.1462],[78.99854,26.15001],[79.0049,26.14805],[79.00428,26.14982],[79.00823,26.1564],[79.00476,26.16263],[79.00614,26.16392],[79.00413,26.16638],[79.00529,26.16744],[79.00447,26.16922],[78.99955,26.16993],[78.99471,26.17291],[78.98661,26.18242],[78.98311,26.18436],[78.99367,26.19689],[78.99768,26.19849],[79.00688,26.19167],[79.02583,26.19177],[79.02009,26.19822],[79.02083,26.20021],[79.02783,26.20328],[79.02481,26.2084],[79.02582,26.2201],[79.01363,26.22551],[78.99655,26.22804],[78.98936,26.23498],[78.99169,26.23896],[78.9939,26.23874],[78.9968,26.24189],[79.00372,26.24441],[79.00957,26.24201],[79.01088,26.24468],[79.01944,26.24761],[79.03067,26.23929],[79.0346,26.22537],[79.03786,26.22733],[79.0471,26.22417],[79.05333,26.22804],[79.06344,26.2259],[79.06535,26.22977],[79.06243,26.2365],[79.0642,26.23883],[79.07094,26.24152],[79.06894,26.24317],[79.0697,26.2457],[79.06446,26.2493],[79.05712,26.24904],[79.05343,26.25082],[79.0521,26.2546],[79.04597,26.25645],[79.04564,26.26031],[79.05566,26.25886],[79.05693,26.26025],[79.05351,26.26269],[79.06184,26.27174],[79.06464,26.27704],[79.07453,26.27783],[79.07701,26.28062],[79.08069,26.27841],[79.08443,26.27969],[79.08361,26.27549],[79.08545,26.27622],[79.0857,26.27403],[79.08775,26.27331],[79.0869,26.27139],[79.09065,26.27003],[79.09107,26.27252],[79.09652,26.27849],[79.08989,26.28772],[79.09708,26.29453],[79.0979,26.30093],[79.10193,26.30682],[79.10952,26.30652],[79.11331,26.30464],[79.11368,26.30195],[79.11742,26.29891],[79.11874,26.30104],[79.11753,26.30517],[79.1249,26.31159],[79.11983,26.31258],[79.11625,26.31665],[79.11553,26.32048],[79.12492,26.32241],[79.12515,26.32704],[79.12742,26.32186],[79.13497,26.32474],[79.13263,26.33532],[79.13722,26.33551],[79.13883,26.33751],[79.13413,26.33914],[79.13221,26.33718],[79.12844,26.33888],[79.12711,26.34308],[79.12046,26.34831],[79.1163,26.3483],[79.11568,26.34999],[79.11427,26.3488],[79.11085,26.34961],[79.11095,26.35156],[79.10926,26.35213],[79.10758,26.34963],[79.10475,26.34946],[79.10309,26.35319],[79.09809,26.35555],[79.09387,26.35393],[79.08907,26.35463],[79.08417,26.35927],[79.08731,26.36843],[79.09135,26.37113],[79.09479,26.36967],[79.09637,26.37232],[79.0954,26.37373],[79.09692,26.37549],[79.0943,26.37615],[79.09684,26.381],[79.09639,26.38305],[79.089,26.39663],[79.09187,26.40595],[79.09438,26.40833],[79.09609,26.40798],[79.09435,26.41085],[79.09521,26.41264],[79.0995,26.41201],[79.10025,26.40817],[79.10469,26.40638],[79.12598,26.41125],[79.12528,26.41238],[79.1237,26.41156],[79.12432,26.42261],[79.12828,26.43142],[79.13518,26.44013],[79.12928,26.44047],[79.12703,26.44296],[79.12301,26.44406],[79.1219,26.44705],[79.11801,26.44558],[79.10788,26.44814],[79.09972,26.45259],[79.09607,26.44999],[79.09722,26.44479],[79.0959,26.44259],[79.08784,26.44618],[79.08381,26.44146],[79.08172,26.44297],[79.08132,26.44123],[79.07879,26.44036],[79.07701,26.44214],[79.06989,26.44162],[79.06755,26.4441],[79.06807,26.44598],[79.06382,26.44871],[79.06215,26.45384],[79.0573,26.45249],[79.05262,26.45374],[79.05779,26.46235],[79.0616,26.46532],[79.0717,26.47887],[79.0678,26.4846],[79.06813,26.49662],[79.05632,26.49509],[79.0538,26.50254],[79.04493,26.5103],[79.04862,26.518],[79.0462,26.51821],[79.04183,26.51457],[79.03966,26.51511],[79.0383,26.51845],[79.03981,26.52986],[79.0266,26.53571],[79.02915,26.54317],[79.02834,26.54669],[79.02638,26.54679],[79.01887,26.54095],[79.01712,26.54149],[79.01457,26.54619],[79.00992,26.54322],[79.00774,26.54387],[79.00702,26.54859],[79.01269,26.54912],[79.01441,26.55067],[79.00628,26.55937],[79.00724,26.56546],[79.00021,26.57841],[78.99107,26.57701],[78.98978,26.57845],[78.99004,26.58465],[78.98759,26.58632],[78.98748,26.59283],[78.98914,26.59556],[78.99205,26.59406],[78.99808,26.59763],[79.01706,26.60104],[79.00803,26.62356],[78.99346,26.64191],[79.00863,26.66331],[79.00852,26.66929],[79.00378,26.67374],[78.99457,26.67715],[78.97915,26.67563],[78.9711,26.67145],[78.9572,26.65766],[78.94929,26.65454],[78.94549,26.65482],[78.94298,26.65669],[78.94248,26.66407],[78.94887,26.67492],[78.95772,26.68306],[78.9586,26.68733],[78.95606,26.69168],[78.93438,26.69757],[78.92419,26.70343],[78.91256,26.70683],[78.90683,26.7065],[78.90007,26.70054],[78.88918,26.69696],[78.87236,26.69779],[78.85848,26.70928],[78.84319,26.7283],[78.83194,26.73941],[78.82243,26.75725],[78.81899,26.76094],[78.81239,26.76335],[78.78512,26.75918],[78.77102,26.75908],[78.76674,26.76332],[78.76129,26.78075],[78.75827,26.78452],[78.7536,26.78701],[78.74692,26.78667],[78.73978,26.77694],[78.73621,26.77468],[78.72719,26.77647],[78.72565,26.77905],[78.72988,26.79222],[78.72803,26.79489],[78.7229,26.79727],[78.71084,26.79238],[78.69841,26.79238],[78.68452,26.78875],[78.67739,26.77809],[78.67591,26.76757],[78.67053,26.76241],[78.66291,26.76243],[78.64683,26.76946],[78.62845,26.77323],[78.61931,26.76666],[78.61624,26.75603],[78.613,26.75243],[78.60303,26.75005],[78.59281,26.75234],[78.58161,26.74889],[78.57686,26.74897],[78.57173,26.75167],[78.56478,26.76113],[78.54408,26.76461],[78.52323,26.78031],[78.49779,26.78159],[78.47963,26.78703],[78.4617,26.78819],[78.45317,26.79771],[78.44012,26.81998],[78.43429,26.82571],[78.42765,26.82537],[78.40555,26.81841],[78.39905,26.81848],[78.3929,26.8236],[78.38256,26.84065],[78.37276,26.86336]],[[75.22607,24.84505],[75.22264,24.84409],[75.21794,24.84655],[75.21601,24.85075],[75.20874,24.85403],[75.20814,24.8614],[75.20073,24.86784],[75.20541,24.87701],[75.20847,24.8943],[75.21327,24.89332],[75.21605,24.88896],[75.22027,24.88788],[75.22126,24.88272],[75.2194,24.87561],[75.22163,24.87378],[75.23008,24.87729],[75.23894,24.8866],[75.24296,24.88722],[75.25067,24.88051],[75.24913,24.86707],[75.24672,24.86197],[75.24304,24.86065],[75.23266,24.84812],[75.22607,24.84505]],[[79.39876,25.03372],[79.39496,25.03212],[79.3942,25.03574],[79.38414,25.03854],[79.38429,25.04236],[79.38141,25.04182],[79.37726,25.0452],[79.37402,25.04482],[79.37533,25.05075],[79.36904,25.05432],[79.36202,25.0482],[79.36748,25.04607],[79.36418,25.04098],[79.3598,25.03928],[79.35611,25.04047],[79.35977,25.05345],[79.35622,25.05643],[79.35806,25.05935],[79.3492,25.0625],[79.35113,25.06888],[79.3574,25.06827],[79.36002,25.06325],[79.36534,25.05903],[79.36908,25.05908],[79.37102,25.06293],[79.37981,25.06479],[79.37983,25.06695],[79.37466,25.06773],[79.37957,25.08561],[79.37251,25.09199],[79.37946,25.09897],[79.37969,25.10122],[79.37394,25.10407],[79.36193,25.10623],[79.35639,25.10939],[79.35058,25.11698],[79.35257,25.12298],[79.35506,25.12446],[79.35052,25.12636],[79.35414,25.13021],[79.3582,25.14329],[79.36031,25.14426],[79.3742,25.1426],[79.36382,25.12565],[79.37132,25.12345],[79.3777,25.12518],[79.3809,25.12243],[79.38261,25.11273],[79.38041,25.11142],[79.38037,25.1076],[79.38686,25.1021],[79.38936,25.09177],[79.38719,25.0857],[79.39821,25.0831],[79.40237,25.07869],[79.40503,25.07853],[79.40469,25.0683],[79.40739,25.06478],[79.42591,25.05859],[79.42245,25.05485],[79.42466,25.053],[79.42386,25.045],[79.42204,25.04157],[79.41638,25.04107],[79.41695,25.03777],[79.41394,25.03817],[79.41356,25.03562],[79.4096,25.03386],[79.40181,25.03513],[79.39876,25.03372]],[[79.36677,25.17224],[79.36146,25.1711],[79.35447,25.17589],[79.35952,25.18855],[79.37256,25.18002],[79.36677,25.17224]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"24","area_level":"State","area_name":"Gujarat","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.0014,20.21582],[73.00255,20.22063],[73.00562,20.2234],[73.00832,20.22896],[73.00548,20.23197],[72.9984,20.23675],[72.98951,20.2388],[72.97923,20.23403],[72.97462,20.22573],[72.97478,20.21927],[72.97905,20.21558],[72.98377,20.21306],[72.99029,20.21335],[72.99286,20.21421],[72.99295,20.21499],[73.00008,20.21429],[73.00113,20.21444],[73.0014,20.21582]]],[[[71.25606,20.81164],[71.25653,20.81184],[71.25675,20.81201],[71.25688,20.81228],[71.25707,20.81258],[71.25713,20.81276],[71.25713,20.81316],[71.25706,20.81334],[71.25698,20.81345],[71.25646,20.81385],[71.25631,20.81394],[71.25619,20.81398],[71.25608,20.81399],[71.25467,20.814],[71.25456,20.81398],[71.25415,20.81351],[71.25408,20.81332],[71.25416,20.81253],[71.25423,20.81235],[71.25467,20.81172],[71.25494,20.81164],[71.25591,20.81161],[71.25606,20.81164]]],[[[71.262,20.81504],[71.262,20.81523],[71.26207,20.81544],[71.26215,20.81556],[71.26293,20.81606],[71.26315,20.81634],[71.2631,20.81658],[71.26293,20.81682],[71.26277,20.81691],[71.26253,20.81692],[71.26221,20.81699],[71.26205,20.817],[71.26192,20.81697],[71.26098,20.81615],[71.26079,20.81596],[71.26074,20.81571],[71.26077,20.81541],[71.26081,20.81522],[71.26096,20.81499],[71.26109,20.81487],[71.26192,20.81486],[71.262,20.81504]]],[[[71.27065,20.81926],[71.27089,20.81938],[71.27104,20.81958],[71.2711,20.8198],[71.27108,20.82021],[71.27104,20.82036],[71.27093,20.82046],[71.27053,20.82056],[71.27029,20.82065],[71.27018,20.82077],[71.27019,20.82122],[71.27012,20.8213],[71.26946,20.82131],[71.26911,20.82124],[71.26889,20.82115],[71.26889,20.82001],[71.26936,20.81946],[71.26976,20.81929],[71.27024,20.81921],[71.27065,20.81926]]],[[[71.3042,20.83196],[71.30481,20.83229],[71.30491,20.83244],[71.3049,20.83254],[71.30481,20.83257],[71.30471,20.83255],[71.30449,20.83243],[71.30393,20.83223],[71.3037,20.83209],[71.30354,20.83195],[71.30342,20.83191],[71.30331,20.83191],[71.30317,20.83195],[71.30313,20.83201],[71.30297,20.83201],[71.30292,20.83197],[71.30291,20.83192],[71.30293,20.8318],[71.30297,20.83173],[71.30298,20.83168],[71.30293,20.83161],[71.30284,20.83157],[71.30255,20.83162],[71.30242,20.83152],[71.3024,20.83135],[71.3025,20.83108],[71.30262,20.83098],[71.3028,20.83092],[71.30314,20.83098],[71.30324,20.83112],[71.30324,20.83134],[71.3034,20.83153],[71.3037,20.83177],[71.3042,20.83196]]],[[[71.30916,20.83258],[71.30919,20.8328],[71.30916,20.83285],[71.30906,20.83289],[71.30894,20.83286],[71.3088,20.83276],[71.30866,20.8327],[71.30794,20.83263],[71.30784,20.8326],[71.30768,20.83253],[71.3076,20.83241],[71.30761,20.83234],[71.30771,20.83227],[71.30799,20.83228],[71.30833,20.83239],[71.30883,20.83252],[71.30901,20.83249],[71.30916,20.83258]]],[[[71.30407,20.83379],[71.30414,20.83418],[71.30399,20.83438],[71.30359,20.83437],[71.30322,20.83419],[71.30284,20.83406],[71.30277,20.83394],[71.30286,20.83381],[71.30317,20.83372],[71.30378,20.83368],[71.30407,20.83379]]],[[[71.45739,20.87864],[71.45731,20.87881],[71.45719,20.87887],[71.45716,20.87897],[71.45708,20.87897],[71.45693,20.87892],[71.45683,20.87881],[71.45679,20.87847],[71.45643,20.8786],[71.45619,20.87851],[71.45605,20.87834],[71.45605,20.87819],[71.45618,20.87806],[71.45629,20.87793],[71.45623,20.8778],[71.45611,20.87765],[71.45604,20.87744],[71.45609,20.8773],[71.45618,20.87727],[71.45665,20.8773],[71.45674,20.87727],[71.45678,20.87714],[71.45699,20.8771],[71.45756,20.8774],[71.45799,20.87719],[71.45826,20.87725],[71.4583,20.87735],[71.45827,20.87767],[71.4584,20.8777],[71.45873,20.8777],[71.45895,20.87772],[71.45913,20.87781],[71.45918,20.87799],[71.45911,20.87811],[71.45884,20.87819],[71.45823,20.87822],[71.45841,20.87828],[71.45863,20.87832],[71.4587,20.87843],[71.45869,20.87867],[71.45851,20.8788],[71.45831,20.87891],[71.45797,20.87897],[71.45789,20.87894],[71.45771,20.87883],[71.45761,20.8787],[71.45755,20.87857],[71.45739,20.87864]]],[[[71.53549,20.90268],[71.53562,20.90269],[71.53579,20.90277],[71.53595,20.90287],[71.5361,20.90301],[71.53615,20.90311],[71.53616,20.90317],[71.53614,20.90324],[71.53605,20.90331],[71.5359,20.90333],[71.53559,20.90328],[71.5354,20.90324],[71.53523,20.90322],[71.53509,20.9032],[71.53497,20.90316],[71.53483,20.90311],[71.53473,20.90304],[71.53468,20.90294],[71.53469,20.90287],[71.53473,20.90281],[71.5348,20.90276],[71.53498,20.9027],[71.53515,20.90267],[71.53532,20.90266],[71.53549,20.90268]]],[[[71.54819,20.91195],[71.54836,20.91206],[71.54845,20.9122],[71.54851,20.91238],[71.54847,20.91254],[71.54839,20.91264],[71.54803,20.91281],[71.54767,20.91291],[71.54733,20.91305],[71.54719,20.91317],[71.54714,20.91327],[71.54706,20.91337],[71.54699,20.9134],[71.5469,20.91341],[71.54678,20.91336],[71.54671,20.9133],[71.54664,20.91317],[71.54654,20.91305],[71.54638,20.91297],[71.54614,20.91289],[71.546,20.91281],[71.54587,20.91267],[71.54576,20.91246],[71.54574,20.91225],[71.54578,20.91204],[71.54591,20.91181],[71.54612,20.91175],[71.54651,20.9118],[71.54683,20.91175],[71.54751,20.91178],[71.54819,20.91195]]],[[[71.54518,20.91344],[71.54533,20.9135],[71.54552,20.91363],[71.54561,20.91376],[71.54567,20.91393],[71.54564,20.9141],[71.54554,20.91422],[71.54542,20.91428],[71.54531,20.91428],[71.54505,20.91407],[71.54496,20.91395],[71.54486,20.91377],[71.54476,20.91361],[71.54475,20.91352],[71.54483,20.91344],[71.54491,20.9134],[71.54503,20.9134],[71.54518,20.91344]]],[[[71.52079,20.91285],[71.52106,20.91297],[71.52125,20.9131],[71.5213,20.9132],[71.52132,20.9133],[71.5213,20.91338],[71.52126,20.91347],[71.52113,20.91353],[71.52091,20.91358],[71.52074,20.91357],[71.52054,20.91351],[71.52047,20.91347],[71.52021,20.91327],[71.52016,20.91316],[71.52018,20.91304],[71.52028,20.91294],[71.52046,20.91286],[71.5206,20.91283],[71.52079,20.91285]]],[[[71.51823,20.91255],[71.51753,20.9133],[71.517,20.91347],[71.51611,20.91346],[71.51254,20.91098],[71.51203,20.9102],[71.51253,20.90994],[71.51258,20.90929],[71.5129,20.90923],[71.51293,20.90887],[71.51196,20.90803],[71.51116,20.90876],[71.5109,20.90884],[71.51082,20.90836],[71.51136,20.90769],[71.51061,20.90698],[71.51049,20.90643],[71.50992,20.90608],[71.50955,20.90536],[71.50887,20.90516],[71.50801,20.90438],[71.50702,20.90311],[71.507,20.90287],[71.50779,20.90308],[71.50831,20.9021],[71.50907,20.90181],[71.50974,20.90183],[71.5104,20.9022],[71.51076,20.90197],[71.51285,20.90197],[71.51345,20.90265],[71.51416,20.90216],[71.51472,20.90213],[71.51637,20.9025],[71.51719,20.90332],[71.51771,20.90355],[71.52007,20.9031],[71.52043,20.90266],[71.52124,20.90273],[71.52144,20.90259],[71.52238,20.90286],[71.52286,20.90319],[71.52515,20.90331],[71.52534,20.9032],[71.52545,20.90257],[71.52638,20.90296],[71.52687,20.903],[71.5269,20.90267],[71.5271,20.90264],[71.52819,20.90264],[71.52864,20.90292],[71.52921,20.90255],[71.52959,20.90259],[71.52982,20.90282],[71.5305,20.90232],[71.53243,20.90294],[71.53084,20.90352],[71.53135,20.90359],[71.53137,20.90407],[71.53097,20.90435],[71.53018,20.90453],[71.53007,20.90497],[71.52989,20.90508],[71.52888,20.90535],[71.52812,20.90536],[71.52726,20.90596],[71.52672,20.90588],[71.52626,20.90604],[71.52607,20.90579],[71.52607,20.90544],[71.52457,20.90477],[71.5244,20.90462],[71.52446,20.90434],[71.52431,20.90417],[71.52355,20.9042],[71.5245,20.90492],[71.52296,20.90425],[71.52397,20.90526],[71.52385,20.90549],[71.52193,20.90502],[71.52156,20.90514],[71.52093,20.90586],[71.52049,20.90663],[71.51856,20.9111],[71.51863,20.9119],[71.51937,20.91261],[71.51936,20.91282],[71.51823,20.91255]]],[[[72.36084,21.59216],[72.3611,21.59285],[72.36119,21.59356],[72.36116,21.59569],[72.36029,21.59657],[72.3595,21.59822],[72.35828,21.59924],[72.35708,21.60059],[72.35623,21.60125],[72.35522,21.60187],[72.35456,21.60213],[72.35289,21.60499],[72.35204,21.60616],[72.35119,21.60772],[72.35074,21.60836],[72.35031,21.60843],[72.34909,21.60592],[72.34964,21.60491],[72.3498,21.60366],[72.35043,21.60205],[72.35097,21.60126],[72.35131,21.60052],[72.35276,21.59925],[72.35356,21.59756],[72.35433,21.59513],[72.35438,21.59364],[72.3551,21.59249],[72.35592,21.5924],[72.35743,21.59196],[72.35874,21.59181],[72.36035,21.592],[72.36084,21.59216]]],[[[72.7676,21.65702],[72.76265,21.65637],[72.75586,21.65127],[72.75039,21.65147],[72.74002,21.64476],[72.725,21.6454],[72.71705,21.64766],[72.6919,21.64401],[72.68073,21.64584],[72.6719,21.64532],[72.6266,21.62883],[72.61836,21.62125],[72.61839,21.61258],[72.61499,21.60579],[72.61118,21.60176],[72.61253,21.59493],[72.60809,21.59155],[72.60695,21.58758],[72.60583,21.57535],[72.60782,21.56752],[72.60645,21.56459],[72.60725,21.56068],[72.61146,21.55225],[72.61742,21.54697],[72.60846,21.55133],[72.5988,21.54867],[72.60265,21.55659],[72.59856,21.56461],[72.60047,21.57793],[72.59904,21.58025],[72.59358,21.58164],[72.59194,21.58499],[72.58366,21.58452],[72.58017,21.58571],[72.57844,21.58351],[72.58397,21.58083],[72.58261,21.57922],[72.58078,21.57946],[72.58399,21.57658],[72.5813,21.57682],[72.57619,21.57146],[72.57697,21.56499],[72.57576,21.56013],[72.57707,21.55854],[72.57529,21.55628],[72.57661,21.55485],[72.57475,21.55084],[72.57717,21.54259],[72.57853,21.54215],[72.57698,21.54203],[72.57853,21.53544],[72.57519,21.53233],[72.58059,21.529],[72.59081,21.53476],[72.59619,21.53563],[72.60824,21.53289],[72.60964,21.53173],[72.60604,21.53098],[72.61133,21.5305],[72.61771,21.53572],[72.62391,21.53797],[72.62136,21.53744],[72.62196,21.53864],[72.6257,21.53938],[72.63443,21.53861],[72.63684,21.53317],[72.64221,21.53225],[72.64647,21.53713],[72.64461,21.54218],[72.64692,21.54758],[72.65976,21.55691],[72.67055,21.57308],[72.67325,21.57529],[72.67844,21.57522],[72.69242,21.58139],[72.69512,21.58847],[72.70152,21.58797],[72.70194,21.59207],[72.70238,21.5878],[72.70616,21.58591],[72.7139,21.59075],[72.71754,21.58985],[72.71881,21.59165],[72.72103,21.58476],[72.72489,21.58579],[72.72594,21.58763],[72.72563,21.58602],[72.7277,21.58577],[72.7411,21.59734],[72.74798,21.60058],[72.75251,21.60011],[72.76447,21.60696],[72.77065,21.60905],[72.79323,21.60845],[72.81256,21.618],[72.81978,21.62386],[72.82592,21.63562],[72.82541,21.63974],[72.8159,21.65285],[72.80674,21.65044],[72.79643,21.65068],[72.77927,21.6532],[72.7676,21.65702]]],[[[69.33941,22.38597],[69.33719,22.38642],[69.33632,22.38684],[69.33513,22.38662],[69.33492,22.38585],[69.33435,22.38506],[69.33367,22.38458],[69.33295,22.38468],[69.33187,22.38432],[69.33181,22.38331],[69.33001,22.38228],[69.32893,22.3821],[69.32845,22.38259],[69.32776,22.38289],[69.32476,22.38241],[69.32336,22.38129],[69.32377,22.38081],[69.32389,22.38028],[69.32504,22.37874],[69.32835,22.37508],[69.32905,22.37469],[69.33013,22.37453],[69.33082,22.37478],[69.33137,22.37455],[69.33203,22.37385],[69.3327,22.37282],[69.33333,22.37411],[69.33398,22.37637],[69.33707,22.37779],[69.33806,22.37936],[69.33982,22.38039],[69.33916,22.38314],[69.33976,22.3844],[69.33941,22.38597]]],[[[69.62893,22.45885],[69.62516,22.4587],[69.6212,22.45734],[69.62091,22.45679],[69.61665,22.45442],[69.61609,22.45296],[69.6143,22.45197],[69.60327,22.44866],[69.59792,22.44617],[69.59549,22.44445],[69.5908,22.4397],[69.58991,22.43732],[69.58993,22.43565],[69.59154,22.43227],[69.59035,22.43072],[69.59522,22.42631],[69.5964,22.42444],[69.60223,22.42165],[69.60681,22.41717],[69.6365,22.40572],[69.63817,22.40741],[69.63878,22.40919],[69.64163,22.41273],[69.64247,22.415],[69.64604,22.41704],[69.64849,22.42041],[69.6554,22.42385],[69.65683,22.42538],[69.65681,22.42694],[69.6541,22.43025],[69.6512,22.43044],[69.65049,22.43124],[69.64786,22.43676],[69.6473,22.43961],[69.64745,22.44171],[69.6462,22.44455],[69.64112,22.44902],[69.63926,22.4497],[69.63562,22.45241],[69.62893,22.45885]]],[[[69.13752,22.47622],[69.13695,22.47669],[69.1332,22.47651],[69.13098,22.47563],[69.12683,22.47498],[69.11869,22.4708],[69.11777,22.47077],[69.1137,22.46814],[69.1082,22.46618],[69.10414,22.46533],[69.09397,22.46091],[69.09276,22.45793],[69.09322,22.45578],[69.09439,22.45378],[69.09462,22.45007],[69.09329,22.44934],[69.09298,22.44856],[69.09313,22.44806],[69.09388,22.4479],[69.09417,22.44684],[69.09303,22.44673],[69.09439,22.44584],[69.0957,22.44576],[69.09649,22.44425],[69.0964,22.44344],[69.09598,22.44336],[69.09556,22.44401],[69.09559,22.44329],[69.09517,22.44309],[69.0963,22.44273],[69.09646,22.44117],[69.09563,22.43994],[69.09282,22.43955],[69.09147,22.4382],[69.09091,22.43826],[69.09087,22.43576],[69.08973,22.43398],[69.0868,22.43286],[69.08567,22.43197],[69.0863,22.43055],[69.08545,22.42775],[69.0857,22.42706],[69.08456,22.42545],[69.08408,22.42293],[69.08445,22.42216],[69.08556,22.42159],[69.08579,22.42096],[69.08726,22.42137],[69.08837,22.42237],[69.08934,22.4257],[69.09025,22.42716],[69.09276,22.42945],[69.09527,22.43105],[69.09876,22.43126],[69.09897,22.43219],[69.10042,22.43301],[69.10363,22.4328],[69.10751,22.43688],[69.10834,22.43697],[69.10695,22.44013],[69.10654,22.44443],[69.10764,22.44841],[69.10878,22.4487],[69.1078,22.45028],[69.10778,22.45131],[69.10895,22.45127],[69.10982,22.45268],[69.10928,22.45261],[69.10934,22.45389],[69.10869,22.45423],[69.10864,22.4557],[69.10822,22.45585],[69.10731,22.45925],[69.10779,22.46046],[69.11056,22.46327],[69.11165,22.46424],[69.11401,22.46522],[69.11542,22.46679],[69.11663,22.46658],[69.12283,22.46806],[69.12785,22.46536],[69.12881,22.46568],[69.13065,22.46544],[69.13179,22.46649],[69.13242,22.46645],[69.13544,22.46484],[69.1385,22.46239],[69.13992,22.46376],[69.14206,22.46307],[69.14292,22.46066],[69.14157,22.4548],[69.14273,22.45195],[69.14372,22.4507],[69.14474,22.45045],[69.14379,22.45237],[69.14274,22.45723],[69.14297,22.45825],[69.14627,22.46248],[69.14702,22.46588],[69.15016,22.46831],[69.15024,22.46884],[69.14868,22.47051],[69.14787,22.47214],[69.14801,22.47328],[69.14158,22.47676],[69.13752,22.47622]]],[[[70.05155,22.54493],[70.04894,22.54773],[70.04903,22.54863],[70.04786,22.5496],[70.0482,22.55059],[70.04723,22.55115],[70.04702,22.55195],[70.04591,22.55213],[70.04392,22.55352],[70.04016,22.55284],[70.04007,22.55219],[70.04045,22.55049],[70.04015,22.54745],[70.03905,22.54447],[70.03796,22.54394],[70.03882,22.53978],[70.03787,22.53873],[70.03619,22.53885],[70.0356,22.53749],[70.03556,22.53685],[70.03509,22.53642],[70.03491,22.53559],[70.03575,22.53434],[70.03801,22.5341],[70.03915,22.53374],[70.03928,22.53171],[70.04004,22.53105],[70.04096,22.53105],[70.0411,22.5292],[70.04246,22.52965],[70.04224,22.52767],[70.04259,22.52644],[70.0437,22.52565],[70.04401,22.52577],[70.04483,22.52461],[70.04611,22.52362],[70.04822,22.52375],[70.05159,22.52724],[70.05166,22.52802],[70.05328,22.5306],[70.05406,22.53117],[70.0543,22.53192],[70.05254,22.53407],[70.05143,22.53499],[70.05006,22.53696],[70.05149,22.53705],[70.05157,22.53813],[70.05125,22.53795],[70.05079,22.53842],[70.0505,22.53834],[70.05031,22.53871],[70.04995,22.53834],[70.04902,22.5389],[70.04894,22.53936],[70.05013,22.54008],[70.05145,22.54018],[70.052,22.54075],[70.05173,22.54202],[70.05365,22.54265],[70.05396,22.54209],[70.05518,22.5413],[70.05545,22.54027],[70.05709,22.53817],[70.0572,22.53694],[70.05785,22.53742],[70.05937,22.53743],[70.05814,22.53949],[70.05732,22.54024],[70.05725,22.54165],[70.05588,22.54211],[70.05568,22.54243],[70.05588,22.54272],[70.05531,22.54408],[70.05449,22.54501],[70.05438,22.54585],[70.05362,22.54575],[70.05333,22.54396],[70.05155,22.54493]]],[[[70.25765,23.1738],[70.25646,23.17377],[70.25662,23.17062],[70.25781,23.17064],[70.25765,23.1738]]],[[[70.25254,23.17584],[70.25268,23.1774],[70.24957,23.17698],[70.24962,23.17632],[70.2496,23.17555],[70.24978,23.17528],[70.25217,23.17548],[70.25225,23.17411],[70.25261,23.17087],[70.25384,23.17109],[70.25361,23.17457],[70.25573,23.17493],[70.25566,23.17536],[70.25599,23.17538],[70.25585,23.17593],[70.2525,23.17548],[70.25254,23.17584]]],[[[68.52924,23.68865],[68.52611,23.6897],[68.52532,23.68969],[68.52566,23.68864],[68.52681,23.68818],[68.52655,23.68751],[68.52722,23.687],[68.52679,23.68339],[68.52662,23.67729],[68.52572,23.67361],[68.5249,23.6662],[68.52417,23.66192],[68.52183,23.65875],[68.5209,23.65676],[68.52147,23.65522],[68.52158,23.65394],[68.52204,23.65348],[68.52377,23.65376],[68.52493,23.65425],[68.52567,23.6549],[68.52572,23.6551],[68.5253,23.65537],[68.525,23.6553],[68.52443,23.65457],[68.52287,23.65474],[68.52268,23.65513],[68.52285,23.65598],[68.52253,23.65678],[68.52266,23.65702],[68.52318,23.6571],[68.52351,23.65642],[68.52382,23.65647],[68.52485,23.65795],[68.52426,23.65868],[68.52432,23.65904],[68.52703,23.66135],[68.52818,23.66203],[68.53075,23.66298],[68.53391,23.66208],[68.53369,23.66255],[68.53203,23.66327],[68.53202,23.66361],[68.53239,23.66405],[68.53219,23.66467],[68.53265,23.66523],[68.53491,23.66644],[68.53526,23.66706],[68.53441,23.66734],[68.53394,23.66812],[68.5335,23.66825],[68.53287,23.66784],[68.53206,23.66673],[68.53112,23.66672],[68.53103,23.66737],[68.53071,23.6675],[68.53084,23.66799],[68.53008,23.66874],[68.53025,23.66904],[68.52946,23.66906],[68.52931,23.66925],[68.52925,23.66952],[68.52995,23.67047],[68.52885,23.67121],[68.52907,23.67243],[68.52863,23.6734],[68.5287,23.674],[68.529,23.67424],[68.5299,23.67429],[68.53211,23.673],[68.5334,23.67328],[68.53465,23.67273],[68.53619,23.67335],[68.5367,23.67256],[68.53769,23.67262],[68.53788,23.67099],[68.53895,23.67053],[68.54244,23.67129],[68.54369,23.67131],[68.54445,23.67213],[68.54397,23.67257],[68.54395,23.67293],[68.54684,23.67443],[68.54743,23.67495],[68.54745,23.67541],[68.54641,23.67564],[68.54626,23.67632],[68.54531,23.67674],[68.54515,23.67731],[68.54454,23.67725],[68.54454,23.67834],[68.54342,23.67902],[68.54399,23.68023],[68.54452,23.68074],[68.54421,23.68234],[68.54109,23.68333],[68.54041,23.68388],[68.53974,23.68384],[68.53957,23.68453],[68.53926,23.68472],[68.53812,23.68443],[68.53799,23.68472],[68.53886,23.68514],[68.53887,23.68546],[68.53857,23.68564],[68.53438,23.68497],[68.53432,23.68427],[68.53391,23.68359],[68.53412,23.68279],[68.53479,23.68248],[68.53529,23.68172],[68.53511,23.68018],[68.53543,23.67827],[68.53499,23.678],[68.534,23.67836],[68.53365,23.67822],[68.53287,23.6763],[68.53204,23.67561],[68.52981,23.67569],[68.52974,23.67628],[68.53088,23.67698],[68.5311,23.67735],[68.52947,23.67847],[68.52937,23.67915],[68.53152,23.67987],[68.53246,23.68133],[68.5321,23.68216],[68.53231,23.68337],[68.53123,23.68324],[68.53063,23.68355],[68.53037,23.68664],[68.53118,23.68699],[68.53222,23.68683],[68.53402,23.68854],[68.53374,23.68886],[68.53254,23.68841],[68.53114,23.68877],[68.52924,23.68865]]],[[[71.28591,24.61683],[71.1134,24.67526],[71.09649,24.68872],[71.08543,24.67193],[71.07473,24.66192],[71.06633,24.65911],[71.06379,24.65572],[71.0492,24.64839],[71.00946,24.63542],[71.00713,24.62861],[70.99882,24.62184],[70.98626,24.59546],[70.98943,24.58483],[70.99246,24.56385],[70.98735,24.54342],[71.00303,24.53002],[71.00521,24.52302],[71.0,24.48634],[70.99604,24.47502],[70.99864,24.47247],[70.99637,24.4659],[70.99857,24.44443],[71.00425,24.44569],[71.01021,24.44425],[71.03754,24.43194],[71.0439,24.43417],[71.06756,24.43692],[71.10307,24.4357],[71.12553,24.42008],[71.12184,24.40566],[71.11824,24.40153],[71.10805,24.39671],[71.08432,24.39445],[71.08189,24.39291],[71.06668,24.37689],[71.05727,24.36148],[71.04948,24.35597],[71.04205,24.35388],[71.04213,24.35125],[71.03992,24.35327],[71.0202,24.34737],[71.00355,24.35096],[70.98654,24.36471],[70.95537,24.34861],[70.94768,24.34805],[70.92366,24.32773],[70.92477,24.32588],[70.91866,24.32292],[70.91719,24.32061],[70.87867,24.3014],[70.88263,24.29981],[70.87715,24.298],[70.87451,24.29449],[70.87575,24.28023],[70.88285,24.27282],[70.9092,24.26283],[70.90726,24.25878],[70.88449,24.25048],[70.87661,24.24575],[70.85223,24.24507],[70.83619,24.23149],[70.82654,24.22683],[70.80546,24.22085],[70.7402,24.21904],[70.7139,24.21565],[70.70054,24.21866],[70.69646,24.21743],[70.69842,24.22027],[70.66694,24.21958],[70.6435,24.22489],[70.58562,24.24736],[70.58278,24.24392],[70.58196,24.24794],[70.57123,24.25173],[70.5744,24.26415],[70.58482,24.27798],[70.58453,24.29036],[70.57944,24.29529],[70.58177,24.30447],[70.56271,24.34995],[70.56204,24.35446],[70.58045,24.36327],[70.59898,24.40596],[70.60247,24.40812],[70.57312,24.42236],[70.55777,24.4198],[70.54968,24.4144],[70.5486,24.41186],[70.54745,24.41338],[70.53476,24.40789],[70.51533,24.40406],[70.4761,24.38979],[70.4387,24.38332],[70.41168,24.37561],[70.39837,24.36712],[70.39091,24.35988],[70.37642,24.35553],[70.36846,24.35077],[70.36309,24.35065],[70.3542,24.35411],[70.34559,24.35158],[70.32559,24.35188],[70.30522,24.34683],[70.26586,24.33368],[70.25949,24.33105],[70.25469,24.32616],[70.25065,24.32442],[70.2142,24.32121],[70.19906,24.31448],[70.16591,24.30348],[70.13937,24.3029],[70.10987,24.29497],[70.06681,24.19916],[70.05105,24.1896],[70.03866,24.17646],[70.02506,24.17128],[69.73121,24.17106],[69.59445,24.2924],[69.56368,24.28149],[69.54416,24.2785],[69.5107,24.26971],[69.49401,24.26778],[69.46974,24.27112],[69.44599,24.28033],[69.40498,24.2712],[69.37628,24.26949],[69.36685,24.27014],[69.31274,24.2816],[69.19375,24.23611],[69.09475,24.27449],[69.09367,24.27133],[69.0879,24.26932],[69.08287,24.26511],[69.0339,24.23955],[69.03083,24.23539],[69.01615,24.22567],[69.00533,24.22312],[68.99363,24.22431],[68.98474,24.22761],[68.97324,24.26017],[68.96734,24.27173],[68.94528,24.30249],[68.90675,24.27979],[68.8975,24.26369],[68.8928,24.25147],[68.8899,24.23789],[68.88029,24.21657],[68.87492,24.21233],[68.86482,24.21278],[68.8574,24.21431],[68.84767,24.23925],[68.84388,24.26008],[68.84339,24.27794],[68.83071,24.31186],[68.82631,24.31736],[68.82041,24.31234],[68.80823,24.3136],[68.7647,24.29584],[68.76571,24.28771],[68.76829,24.28241],[68.76935,24.26439],[68.76564,24.20782],[68.76252,24.11431],[68.75303,23.97131],[68.39738,23.97048],[68.38966,23.96659],[68.38581,23.96951],[68.3833,23.97771],[68.3786,23.98446],[68.36893,23.98477],[68.35037,23.97601],[68.33903,23.96695],[68.3357,23.9563],[68.33832,23.9364],[68.33471,23.92713],[68.32865,23.92235],[68.31894,23.9221],[68.28918,23.93198],[68.28299,23.93173],[68.27574,23.92877],[68.27143,23.92466],[68.258,23.90302],[68.25217,23.8969],[68.23084,23.88573],[68.2231,23.88499],[68.21689,23.88249],[68.20865,23.87546],[68.19953,23.84709],[68.19808,23.83608],[68.19854,23.81324],[68.20345,23.78967],[68.20264,23.76667],[68.18464,23.73733],[68.18165,23.72163],[68.18976,23.71722],[68.19178,23.70735],[68.19682,23.70298],[68.19848,23.69461],[68.2057,23.68034],[68.20666,23.66889],[68.20475,23.66201],[68.20177,23.65867],[68.18807,23.65859],[68.18257,23.65504],[68.18725,23.65544],[68.19579,23.65224],[68.20847,23.65067],[68.19643,23.65034],[68.18632,23.64528],[68.18595,23.64122],[68.18239,23.63848],[68.17751,23.62786],[68.17766,23.61919],[68.1805,23.60704],[68.18103,23.60938],[68.18386,23.60787],[68.19512,23.58874],[68.20767,23.58616],[68.20728,23.58467],[68.20383,23.58634],[68.2016,23.58531],[68.19221,23.5867],[68.18537,23.59555],[68.18371,23.59016],[68.18459,23.58572],[68.18823,23.58181],[68.19924,23.57943],[68.20775,23.58334],[68.21526,23.58211],[68.21993,23.57972],[68.22012,23.57814],[68.22211,23.57869],[68.22155,23.57711],[68.22456,23.57728],[68.22229,23.57505],[68.22362,23.5739],[68.22971,23.57459],[68.22986,23.57668],[68.23174,23.57651],[68.22956,23.57799],[68.24631,23.57256],[68.24415,23.57058],[68.25417,23.56991],[68.25961,23.56686],[68.26632,23.56702],[68.26563,23.56352],[68.27267,23.56429],[68.27808,23.55973],[68.28187,23.56613],[68.29098,23.57137],[68.30811,23.57559],[68.33415,23.57863],[68.35087,23.58493],[68.38893,23.59562],[68.39471,23.60103],[68.39819,23.60761],[68.39771,23.61321],[68.40155,23.62613],[68.4035,23.65772],[68.40907,23.67917],[68.41272,23.70297],[68.41903,23.7179],[68.41885,23.72709],[68.42098,23.73321],[68.42772,23.73715],[68.43484,23.73898],[68.43886,23.73567],[68.44507,23.73507],[68.45516,23.74098],[68.46396,23.74224],[68.47318,23.73909],[68.47266,23.73747],[68.47563,23.73502],[68.48842,23.73162],[68.50572,23.74092],[68.50876,23.75049],[68.51153,23.74833],[68.51935,23.74765],[68.52108,23.74389],[68.5232,23.74656],[68.527,23.74582],[68.5307,23.7536],[68.55176,23.77901],[68.55537,23.78649],[68.57171,23.80706],[68.574,23.81374],[68.58083,23.82099],[68.60265,23.82952],[68.65548,23.83279],[68.65836,23.83345],[68.67186,23.84344],[68.68823,23.84645],[68.69271,23.84442],[68.70007,23.83808],[68.70831,23.83427],[68.71124,23.83017],[68.69385,23.81817],[68.68149,23.79496],[68.67909,23.79557],[68.67253,23.80404],[68.6608,23.79617],[68.65675,23.79821],[68.65179,23.79438],[68.63529,23.76102],[68.63897,23.75356],[68.64453,23.75053],[68.64196,23.74271],[68.64396,23.74136],[68.64816,23.74358],[68.64843,23.74213],[68.64577,23.74081],[68.64885,23.7389],[68.64609,23.73994],[68.6468,23.73802],[68.6421,23.73943],[68.64062,23.73864],[68.6409,23.73618],[68.63793,23.73904],[68.63834,23.74224],[68.63495,23.73876],[68.63004,23.7415],[68.62848,23.73899],[68.61848,23.73802],[68.61831,23.73459],[68.61528,23.73595],[68.61365,23.73184],[68.61368,23.72861],[68.61568,23.72587],[68.62163,23.72444],[68.62869,23.73451],[68.63116,23.73281],[68.63216,23.72782],[68.62318,23.72577],[68.62215,23.72115],[68.62093,23.72261],[68.62021,23.72036],[68.61891,23.7214],[68.61829,23.71993],[68.61494,23.72029],[68.61277,23.71795],[68.61013,23.72102],[68.60726,23.72149],[68.6055,23.71957],[68.60258,23.72362],[68.59682,23.72405],[68.59988,23.72144],[68.59521,23.71979],[68.59235,23.71369],[68.59646,23.71402],[68.60046,23.70879],[68.59566,23.70797],[68.59514,23.70591],[68.59267,23.70659],[68.58724,23.70263],[68.58459,23.70402],[68.58486,23.70677],[68.58076,23.70515],[68.58124,23.70782],[68.57962,23.70724],[68.57972,23.70893],[68.57742,23.70681],[68.57175,23.7088],[68.57203,23.71338],[68.56957,23.71514],[68.57324,23.71547],[68.57161,23.71693],[68.57372,23.71711],[68.56919,23.7177],[68.5733,23.72144],[68.56712,23.72146],[68.55719,23.71663],[68.54997,23.70101],[68.54829,23.69181],[68.55188,23.69455],[68.55228,23.69698],[68.55067,23.69794],[68.55255,23.69934],[68.55769,23.69444],[68.55713,23.68922],[68.56483,23.69],[68.56819,23.68773],[68.56796,23.68494],[68.56469,23.68399],[68.56287,23.68855],[68.56154,23.68869],[68.5626,23.68356],[68.56074,23.68272],[68.56018,23.67761],[68.55161,23.66557],[68.55262,23.66417],[68.55129,23.66218],[68.54799,23.66091],[68.54862,23.65828],[68.54071,23.65751],[68.54291,23.65324],[68.53931,23.65287],[68.53923,23.65537],[68.53832,23.65264],[68.53491,23.65022],[68.53351,23.65095],[68.53499,23.65307],[68.53275,23.65198],[68.5325,23.65332],[68.52073,23.64959],[68.51991,23.64641],[68.52046,23.64481],[68.52218,23.64495],[68.52181,23.64212],[68.52456,23.64341],[68.52716,23.64811],[68.53337,23.64924],[68.53314,23.64679],[68.52902,23.64667],[68.52966,23.64273],[68.52602,23.63929],[68.52936,23.63734],[68.52902,23.6358],[68.51694,23.63543],[68.51462,23.63831],[68.51191,23.63841],[68.51383,23.64406],[68.51064,23.63948],[68.50793,23.62198],[68.51123,23.62169],[68.51535,23.62392],[68.51571,23.6214],[68.51195,23.61918],[68.51468,23.6184],[68.51238,23.61522],[68.50957,23.61407],[68.50929,23.61623],[68.50591,23.61775],[68.50536,23.61473],[68.5073,23.61458],[68.50221,23.61284],[68.50235,23.60955],[68.51055,23.61183],[68.50888,23.6094],[68.50912,23.6113],[68.50627,23.61039],[68.50113,23.60449],[68.49646,23.60586],[68.49537,23.60365],[68.49291,23.60583],[68.49394,23.60054],[68.49755,23.60061],[68.49507,23.59918],[68.49366,23.59305],[68.49451,23.58907],[68.49763,23.59071],[68.49207,23.58602],[68.4904,23.57953],[68.4928,23.57477],[68.49481,23.5592],[68.49243,23.55387],[68.48359,23.54871],[68.48962,23.5398],[68.49062,23.53223],[68.4943,23.52677],[68.49433,23.51812],[68.5008,23.51304],[68.50073,23.51161],[68.50236,23.51259],[68.50334,23.51058],[68.50456,23.51334],[68.50252,23.50719],[68.50501,23.50284],[68.50242,23.50193],[68.50453,23.49947],[68.51294,23.50104],[68.51206,23.4994],[68.51367,23.49596],[68.51179,23.49476],[68.5174,23.49036],[68.51771,23.48642],[68.51298,23.48735],[68.51277,23.48459],[68.51818,23.47119],[68.52117,23.46856],[68.51922,23.46478],[68.52219,23.46459],[68.52139,23.46118],[68.52878,23.44991],[68.53073,23.44946],[68.5322,23.45249],[68.53038,23.45318],[68.52922,23.45707],[68.53558,23.46048],[68.53417,23.45635],[68.54075,23.45847],[68.54379,23.4655],[68.54627,23.46506],[68.54382,23.46286],[68.54602,23.46],[68.54322,23.45718],[68.54208,23.45891],[68.5393,23.45373],[68.5416,23.45202],[68.53621,23.4516],[68.532,23.44861],[68.53063,23.4452],[68.53338,23.43671],[68.53518,23.43669],[68.53519,23.4339],[68.54235,23.42503],[68.54775,23.42454],[68.54829,23.42291],[68.54331,23.42193],[68.54349,23.42021],[68.54772,23.41706],[68.55885,23.41629],[68.5628,23.41828],[68.56587,23.41721],[68.57034,23.40379],[68.57427,23.40692],[68.57657,23.40559],[68.5753,23.40262],[68.5832,23.40291],[68.58368,23.40011],[68.59032,23.39316],[68.59486,23.39158],[68.5995,23.38609],[68.60856,23.38286],[68.61089,23.38003],[68.60914,23.37909],[68.60991,23.37676],[68.60688,23.37667],[68.60959,23.372],[68.61049,23.37498],[68.61373,23.37545],[68.61751,23.37308],[68.62038,23.37401],[68.61645,23.37147],[68.61198,23.3717],[68.61194,23.36913],[68.62581,23.3649],[68.62511,23.35917],[68.62914,23.35791],[68.62584,23.35479],[68.63041,23.35447],[68.62735,23.3516],[68.63252,23.35254],[68.633,23.35094],[68.62912,23.3489],[68.63387,23.34943],[68.63686,23.34707],[68.63696,23.34358],[68.63964,23.34303],[68.639,23.34111],[68.63615,23.34099],[68.63596,23.33889],[68.64055,23.33945],[68.64213,23.33549],[68.64808,23.33701],[68.644,23.33502],[68.6437,23.33345],[68.65262,23.33555],[68.64251,23.33228],[68.64379,23.32592],[68.64003,23.32319],[68.64096,23.32159],[68.64423,23.32127],[68.64671,23.3112],[68.65234,23.30314],[68.65529,23.30347],[68.6556,23.30913],[68.65809,23.31196],[68.65553,23.31326],[68.65672,23.31657],[68.65309,23.31689],[68.65468,23.32143],[68.65178,23.32609],[68.65425,23.32742],[68.65242,23.32834],[68.65578,23.33007],[68.65574,23.33383],[68.65986,23.33417],[68.6612,23.33646],[68.66116,23.34383],[68.65888,23.34556],[68.66051,23.34745],[68.67028,23.34317],[68.66964,23.34004],[68.66515,23.33635],[68.66826,23.33149],[68.67917,23.33112],[68.68499,23.32885],[68.67925,23.31998],[68.67882,23.31562],[68.6814,23.31185],[68.69281,23.30883],[68.6984,23.31346],[68.71351,23.31796],[68.71369,23.31647],[68.70764,23.31361],[68.71297,23.30718],[68.71164,23.30432],[68.71399,23.29563],[68.70968,23.29161],[68.70263,23.29255],[68.69931,23.28419],[68.70833,23.28833],[68.71187,23.28672],[68.71222,23.28527],[68.70664,23.28047],[68.70816,23.27972],[68.71222,23.28265],[68.71262,23.28053],[68.71007,23.27598],[68.7061,23.27406],[68.70555,23.27072],[68.71462,23.26865],[68.71684,23.26509],[68.72417,23.26679],[68.72577,23.26448],[68.72425,23.26304],[68.72571,23.25913],[68.72452,23.25513],[68.7225,23.25562],[68.72386,23.25841],[68.72311,23.26105],[68.71474,23.26412],[68.71094,23.26177],[68.70987,23.25836],[68.70589,23.2542],[68.70446,23.25],[68.70523,23.2462],[68.70366,23.24205],[68.7014,23.24132],[68.702,23.24006],[68.69981,23.24063],[68.69293,23.23506],[68.68717,23.2349],[68.68385,23.23236],[68.68123,23.23296],[68.67718,23.22906],[68.67562,23.22949],[68.67415,23.23326],[68.66803,23.23158],[68.65954,23.23208],[68.65812,23.22962],[68.65628,23.23131],[68.65352,23.23115],[68.64554,23.22524],[68.64368,23.22243],[68.64512,23.22063],[68.64293,23.21802],[68.63061,23.21745],[68.62593,23.21328],[68.62201,23.21269],[68.62099,23.20573],[68.6232,23.20519],[68.62304,23.2088],[68.62814,23.21187],[68.63804,23.21119],[68.64077,23.21606],[68.64079,23.21304],[68.64495,23.21452],[68.6547,23.21159],[68.65993,23.21466],[68.66203,23.21795],[68.66917,23.2182],[68.67107,23.2112],[68.67034,23.20749],[68.67372,23.20189],[68.66971,23.19815],[68.66245,23.20085],[68.65955,23.1977],[68.6634,23.18996],[68.66768,23.1874],[68.6701,23.182],[68.67563,23.18106],[68.67671,23.17825],[68.68076,23.17902],[68.68022,23.17399],[68.6826,23.17585],[68.67881,23.16841],[68.68048,23.16776],[68.68293,23.15896],[68.6817,23.15792],[68.67795,23.16269],[68.6765,23.16212],[68.68278,23.15269],[68.68797,23.15245],[68.68972,23.15428],[68.69508,23.15542],[68.70219,23.14869],[68.70601,23.14851],[68.71225,23.15143],[68.71246,23.1475],[68.71554,23.14459],[68.71305,23.14136],[68.71965,23.13731],[68.72441,23.13649],[68.72587,23.13458],[68.72413,23.13175],[68.72796,23.13464],[68.73189,23.13418],[68.73246,23.1276],[68.73429,23.12609],[68.73323,23.11953],[68.73946,23.11556],[68.73979,23.11951],[68.74232,23.11796],[68.73993,23.11395],[68.74412,23.11318],[68.74586,23.11002],[68.7492,23.11355],[68.74987,23.11706],[68.75326,23.11749],[68.75443,23.12303],[68.76298,23.12114],[68.76503,23.12376],[68.76637,23.12259],[68.77006,23.12448],[68.76998,23.12181],[68.77499,23.12289],[68.77653,23.12033],[68.78364,23.12001],[68.78491,23.11521],[68.77319,23.11674],[68.77142,23.11637],[68.7709,23.11369],[68.76942,23.11465],[68.76884,23.11304],[68.77075,23.11144],[68.76861,23.11067],[68.76828,23.11235],[68.76678,23.1107],[68.76611,23.10758],[68.76812,23.10608],[68.7668,23.10291],[68.76449,23.10708],[68.76119,23.10113],[68.76301,23.10068],[68.76513,23.09603],[68.76172,23.09705],[68.76114,23.10007],[68.76011,23.09977],[68.76377,23.09359],[68.76189,23.09241],[68.76097,23.09362],[68.76094,23.09046],[68.77272,23.08042],[68.77234,23.07831],[68.77404,23.08055],[68.78154,23.08328],[68.7737,23.07969],[68.77311,23.07756],[68.77708,23.07888],[68.77848,23.07755],[68.77003,23.07734],[68.7705,23.07893],[68.76848,23.07793],[68.76514,23.07902],[68.76945,23.07987],[68.76312,23.08058],[68.76436,23.08118],[68.76374,23.08433],[68.76122,23.08464],[68.76093,23.08614],[68.76373,23.08741],[68.75862,23.0891],[68.756,23.08466],[68.76007,23.08616],[68.75716,23.08361],[68.75169,23.08866],[68.74986,23.08801],[68.75859,23.08035],[68.78373,23.07349],[68.8118,23.05878],[68.81195,23.06098],[68.80964,23.06059],[68.80324,23.06487],[68.80527,23.06524],[68.80768,23.06277],[68.80907,23.06449],[68.80879,23.062],[68.81174,23.0614],[68.81257,23.06815],[68.80972,23.0743],[68.81515,23.07703],[68.81612,23.06253],[68.81764,23.0627],[68.82075,23.06822],[68.81793,23.0619],[68.81893,23.05987],[68.82157,23.06133],[68.82206,23.0565],[68.82402,23.05547],[68.82337,23.05698],[68.82565,23.05593],[68.82718,23.05782],[68.82458,23.0624],[68.82943,23.05718],[68.83194,23.05813],[68.83103,23.05636],[68.83505,23.05058],[68.83665,23.05319],[68.83442,23.05278],[68.8342,23.05661],[68.83764,23.05517],[68.8387,23.0585],[68.83959,23.05741],[68.84179,23.05858],[68.83712,23.0521],[68.83908,23.05026],[68.84351,23.05382],[68.84321,23.05011],[68.84702,23.04844],[68.84546,23.04699],[68.83906,23.04732],[68.84097,23.04887],[68.83594,23.0507],[68.83672,23.04637],[68.84207,23.04666],[68.84188,23.04442],[68.84011,23.04429],[68.85263,23.03946],[68.85423,23.03739],[68.85592,23.03843],[68.85719,23.03716],[68.85577,23.0353],[68.86079,23.03431],[68.86246,23.03181],[68.86923,23.03435],[68.86848,23.0323],[68.87169,23.03299],[68.87189,23.03165],[68.87084,23.03203],[68.87102,23.02924],[68.86934,23.02747],[68.8689,23.02943],[68.86453,23.03023],[68.8676,23.03034],[68.86743,23.03151],[68.86217,23.03145],[68.85206,23.03692],[68.85017,23.03937],[68.84853,23.03875],[68.83242,23.04743],[68.82002,23.05648],[68.81296,23.05793],[68.86843,23.02723],[68.87458,23.02114],[68.91783,22.99616],[68.91781,22.9941],[68.92197,22.99525],[68.92548,22.99356],[68.93117,22.98716],[68.94056,22.98037],[68.94968,22.97751],[68.95494,22.97297],[68.97231,22.96345],[68.9808,22.96082],[69.00574,22.94696],[69.01983,22.94211],[69.02678,22.93722],[69.04377,22.92994],[69.09989,22.89611],[69.13124,22.87229],[69.15008,22.86621],[69.17493,22.85143],[69.17725,22.85188],[69.16685,22.85895],[69.17206,22.86034],[69.17392,22.85947],[69.17479,22.85609],[69.1778,22.85569],[69.18118,22.85777],[69.1842,22.85354],[69.18603,22.85455],[69.18671,22.852],[69.18863,22.8531],[69.19418,22.85186],[69.19324,22.84996],[69.19441,22.84873],[69.1924,22.84822],[69.19188,22.84625],[69.19627,22.84546],[69.19379,22.84379],[69.19583,22.83803],[69.19886,22.83783],[69.20323,22.84166],[69.20416,22.84095],[69.20128,22.83747],[69.22182,22.83612],[69.22756,22.83733],[69.2345,22.83351],[69.24773,22.82973],[69.25401,22.82985],[69.26791,22.8252],[69.28582,22.82755],[69.30169,22.8334],[69.31397,22.83327],[69.33545,22.82797],[69.34776,22.82075],[69.35804,22.82169],[69.37988,22.81674],[69.38122,22.81877],[69.38105,22.81703],[69.38449,22.81733],[69.38145,22.81582],[69.39745,22.81111],[69.40965,22.80402],[69.44369,22.78009],[69.44487,22.78084],[69.43444,22.78804],[69.43811,22.78708],[69.44637,22.78082],[69.44531,22.77977],[69.45878,22.77802],[69.47176,22.77375],[69.47779,22.77455],[69.48012,22.77683],[69.49109,22.77755],[69.49457,22.78],[69.47881,22.77666],[69.46998,22.77645],[69.46923,22.77882],[69.45971,22.78281],[69.46031,22.78417],[69.4579,22.78669],[69.45087,22.78674],[69.44081,22.79421],[69.4395,22.79703],[69.43822,22.7957],[69.43683,22.79905],[69.43576,22.79786],[69.43367,22.799],[69.43576,22.79999],[69.43084,22.80128],[69.43211,22.80318],[69.41863,22.80813],[69.41683,22.81066],[69.41836,22.8128],[69.42175,22.80905],[69.42453,22.81309],[69.42686,22.80963],[69.4287,22.81041],[69.43462,22.80821],[69.43872,22.81066],[69.44427,22.8109],[69.44799,22.80821],[69.44893,22.81181],[69.45202,22.80832],[69.45463,22.81316],[69.45734,22.81428],[69.45765,22.80862],[69.45864,22.81103],[69.46352,22.80396],[69.46788,22.8033],[69.46836,22.80184],[69.46587,22.80071],[69.46792,22.79834],[69.47734,22.79552],[69.48322,22.79905],[69.48285,22.80569],[69.48744,22.79981],[69.49291,22.79954],[69.49428,22.79691],[69.50211,22.79982],[69.50467,22.79896],[69.5035,22.80316],[69.50534,22.8089],[69.50868,22.80541],[69.51161,22.80516],[69.5114,22.80724],[69.51314,22.80687],[69.51358,22.80499],[69.51637,22.80497],[69.51852,22.80287],[69.52349,22.80257],[69.5242,22.80397],[69.52702,22.80185],[69.52716,22.80351],[69.53082,22.79988],[69.53216,22.80044],[69.53052,22.80219],[69.53337,22.80183],[69.53042,22.80565],[69.53284,22.80601],[69.53439,22.80858],[69.53701,22.80406],[69.54003,22.80485],[69.54104,22.80726],[69.54346,22.80598],[69.54664,22.80681],[69.54617,22.8089],[69.54824,22.80723],[69.55687,22.80732],[69.55727,22.81071],[69.56028,22.81114],[69.56117,22.8096],[69.56406,22.81122],[69.5635,22.81235],[69.56499,22.81178],[69.56486,22.81356],[69.56727,22.81203],[69.56937,22.81587],[69.57101,22.80963],[69.57596,22.81039],[69.57798,22.81293],[69.57577,22.81772],[69.57823,22.81539],[69.58175,22.81674],[69.58122,22.81397],[69.58404,22.81238],[69.58775,22.81549],[69.58854,22.8117],[69.59163,22.81438],[69.59348,22.81178],[69.59743,22.81013],[69.59885,22.81194],[69.60049,22.80533],[69.60591,22.80295],[69.60854,22.80604],[69.61189,22.80571],[69.61326,22.80868],[69.61828,22.81225],[69.62302,22.81117],[69.62523,22.80851],[69.62781,22.81028],[69.63119,22.80887],[69.63428,22.81176],[69.63691,22.80827],[69.63642,22.80559],[69.64023,22.80444],[69.64594,22.81],[69.64791,22.80594],[69.64633,22.80585],[69.64594,22.80354],[69.64742,22.79619],[69.6524,22.79581],[69.65466,22.79731],[69.6564,22.79614],[69.66454,22.79901],[69.66612,22.79746],[69.66691,22.79925],[69.67165,22.8004],[69.68355,22.8003],[69.68713,22.80252],[69.68952,22.80675],[69.69151,22.80382],[69.70604,22.80465],[69.70799,22.80586],[69.7056,22.80919],[69.70926,22.80768],[69.70903,22.80977],[69.71079,22.80863],[69.71212,22.81082],[69.7117,22.80792],[69.71316,22.806],[69.71689,22.8097],[69.7199,22.80889],[69.72005,22.81112],[69.72214,22.80989],[69.72488,22.81535],[69.73198,22.81645],[69.73027,22.82098],[69.73099,22.81875],[69.73434,22.81688],[69.74162,22.82027],[69.74557,22.82063],[69.74853,22.81865],[69.77527,22.83025],[69.78164,22.83461],[69.78366,22.83924],[69.78983,22.84227],[69.79486,22.84841],[69.80388,22.85179],[69.81235,22.84997],[69.82788,22.85798],[69.83528,22.85949],[69.83169,22.86024],[69.83748,22.86017],[69.83676,22.86127],[69.83925,22.86284],[69.85627,22.86872],[69.87881,22.87109],[69.87993,22.87187],[69.87777,22.87261],[69.87765,22.87416],[69.8878,22.8711],[69.88717,22.87553],[69.89065,22.87553],[69.89107,22.87289],[69.89348,22.873],[69.89443,22.87083],[69.89636,22.87063],[69.89781,22.87322],[69.89874,22.87126],[69.90153,22.87281],[69.89971,22.87358],[69.91026,22.87856],[69.91367,22.88293],[69.91194,22.88651],[69.91522,22.88527],[69.91505,22.88766],[69.91615,22.88582],[69.91816,22.88601],[69.91717,22.88731],[69.91972,22.88687],[69.9193,22.89007],[69.92363,22.88974],[69.93047,22.89406],[69.92705,22.89603],[69.93227,22.89475],[69.93346,22.89585],[69.93215,22.89701],[69.93612,22.89679],[69.93704,22.89835],[69.9587,22.89862],[69.96224,22.89359],[69.95903,22.89928],[69.96571,22.89884],[69.98212,22.90285],[69.98476,22.91458],[69.99594,22.914],[70.01214,22.91825],[70.01675,22.92024],[70.02197,22.92544],[70.0273,22.92696],[70.02713,22.92872],[70.02421,22.92905],[70.02721,22.93204],[70.02625,22.9397],[70.0292,22.94285],[70.02976,22.94642],[70.03185,22.94584],[70.03655,22.95269],[70.04602,22.95123],[70.04957,22.95452],[70.05273,22.9546],[70.05841,22.95793],[70.05952,22.96362],[70.08372,22.96801],[70.08504,22.96899],[70.08386,22.97341],[70.08053,22.97571],[70.09287,22.97433],[70.10384,22.98001],[70.11879,22.99201],[70.11822,22.99683],[70.12209,22.99659],[70.12525,23.00483],[70.13297,23.01102],[70.13499,23.02138],[70.13843,23.02123],[70.13902,23.02644],[70.14184,23.02695],[70.14722,23.03268],[70.15012,23.03124],[70.15046,23.03361],[70.14821,23.03482],[70.15814,23.0323],[70.14796,23.02042],[70.14221,23.00893],[70.13379,23.00157],[70.12896,22.99045],[70.12974,22.98817],[70.13364,22.98577],[70.13341,22.98111],[70.12118,22.96895],[70.11996,22.96539],[70.12112,22.96263],[70.12551,22.95975],[70.13355,22.95875],[70.16439,22.93828],[70.18038,22.93755],[70.20742,22.94373],[70.22641,22.95182],[70.23074,22.95516],[70.22862,22.95999],[70.23025,22.97266],[70.22552,22.98658],[70.22396,23.00557],[70.22082,23.01344],[70.22214,23.01538],[70.22018,23.01522],[70.22228,23.03545],[70.21961,23.04124],[70.21799,23.05257],[70.21922,23.06081],[70.21783,23.06427],[70.21364,23.06323],[70.21647,23.06591],[70.21082,23.07463],[70.18862,23.07281],[70.18614,23.06834],[70.16995,23.05741],[70.17152,23.05092],[70.1696,23.04284],[70.16259,23.04061],[70.15987,23.03502],[70.14929,23.037],[70.15084,23.03957],[70.15326,23.03821],[70.15671,23.04532],[70.16473,23.05384],[70.16816,23.06324],[70.1657,23.06473],[70.16494,23.06741],[70.16777,23.06439],[70.17554,23.0702],[70.17714,23.06927],[70.17953,23.07092],[70.18169,23.07519],[70.18032,23.07543],[70.18063,23.07687],[70.18363,23.07968],[70.17388,23.0774],[70.18766,23.09502],[70.19207,23.10346],[70.20156,23.11431],[70.2073,23.12562],[70.20839,23.13592],[70.21281,23.13985],[70.20877,23.16035],[70.21831,23.16626],[70.23854,23.16488],[70.23968,23.16698],[70.23619,23.16815],[70.23619,23.1703],[70.2462,23.17635],[70.24511,23.17311],[70.24976,23.17278],[70.24646,23.17647],[70.24968,23.17789],[70.26757,23.17846],[70.26876,23.18247],[70.2837,23.19825],[70.29153,23.1991],[70.29331,23.2111],[70.29665,23.21374],[70.29567,23.21896],[70.30193,23.22369],[70.30825,23.22251],[70.31178,23.21942],[70.31899,23.21975],[70.32386,23.21812],[70.32281,23.22172],[70.32767,23.22627],[70.33278,23.22273],[70.33776,23.22262],[70.34162,23.21986],[70.34563,23.22098],[70.36636,23.21986],[70.36399,23.22245],[70.36551,23.22498],[70.3694,23.22492],[70.36989,23.22751],[70.37801,23.23164],[70.38567,23.23339],[70.3887,23.23086],[70.39515,23.23097],[70.40301,23.2354],[70.42476,23.23725],[70.43631,23.23338],[70.43223,23.2299],[70.43168,23.22273],[70.42803,23.21755],[70.45147,23.20447],[70.46101,23.2039],[70.47571,23.19968],[70.48879,23.19143],[70.49164,23.18609],[70.49966,23.18129],[70.50124,23.17812],[70.51156,23.17736],[70.5237,23.17938],[70.53527,23.17934],[70.57896,23.17771],[70.61791,23.18183],[70.63831,23.18662],[70.64902,23.19204],[70.64438,23.20117],[70.6457,23.20232],[70.64464,23.20822],[70.65207,23.21691],[70.6508,23.2239],[70.6562,23.22131],[70.66223,23.22234],[70.66526,23.2241],[70.66532,23.22711],[70.6678,23.22315],[70.66724,23.21957],[70.67548,23.22209],[70.67817,23.21986],[70.67715,23.21843],[70.68156,23.21779],[70.68198,23.21585],[70.68047,23.21449],[70.68775,23.21546],[70.68496,23.21367],[70.68769,23.21254],[70.68311,23.21231],[70.68691,23.20932],[70.6922,23.2094],[70.69392,23.21191],[70.69855,23.21172],[70.7005,23.21442],[70.71185,23.21565],[70.71317,23.20995],[70.71587,23.21269],[70.7192,23.21236],[70.72461,23.20581],[70.728,23.20586],[70.73089,23.20784],[70.72423,23.21421],[70.72391,23.21766],[70.73246,23.21939],[70.73152,23.22084],[70.73292,23.22236],[70.73314,23.22078],[70.73705,23.22274],[70.74452,23.22088],[70.74963,23.23507],[70.76768,23.2461],[70.77677,23.24959],[70.78281,23.24951],[70.80166,23.23468],[70.81225,23.23007],[70.82321,23.23476],[70.8331,23.24989],[70.87068,23.22981],[70.89313,23.2247],[70.8602,23.20847],[70.86094,23.20584],[70.87329,23.20399],[70.87115,23.20022],[70.86133,23.19779],[70.86031,23.19516],[70.86292,23.19236],[70.87422,23.19175],[70.87858,23.19005],[70.88537,23.18377],[70.89057,23.18267],[70.89584,23.18383],[70.90882,23.19357],[70.9189,23.19838],[70.95188,23.19713],[70.95923,23.19482],[70.91942,23.17936],[70.90157,23.17076],[70.8653,23.17147],[70.84864,23.16931],[70.84741,23.16873],[70.84787,23.1625],[70.84397,23.1601],[70.84754,23.15814],[70.84478,23.1547],[70.8466,23.1524],[70.83645,23.15408],[70.83485,23.15523],[70.83631,23.15778],[70.83539,23.15889],[70.8308,23.15911],[70.82756,23.15742],[70.82509,23.15259],[70.82764,23.14892],[70.833,23.14577],[70.8404,23.14512],[70.84807,23.142],[70.85639,23.13433],[70.85822,23.12971],[70.85703,23.12536],[70.84852,23.1201],[70.84777,23.11696],[70.84226,23.11724],[70.84243,23.10912],[70.84083,23.10889],[70.83801,23.11326],[70.83576,23.11187],[70.83537,23.10372],[70.83844,23.09198],[70.83676,23.09174],[70.83167,23.09635],[70.83367,23.08835],[70.82856,23.07991],[70.82588,23.08118],[70.8252,23.09214],[70.8219,23.09478],[70.82365,23.09842],[70.8295,23.10021],[70.82975,23.10537],[70.82315,23.11037],[70.82777,23.11193],[70.82698,23.11414],[70.82935,23.11512],[70.82801,23.1165],[70.82956,23.11865],[70.82863,23.1217],[70.83359,23.12171],[70.82966,23.12599],[70.83394,23.12646],[70.83448,23.12841],[70.82717,23.13392],[70.82187,23.13269],[70.81531,23.13685],[70.81575,23.1383],[70.8205,23.13942],[70.82021,23.14139],[70.81713,23.14166],[70.81667,23.14819],[70.813,23.14801],[70.8173,23.15416],[70.81503,23.15504],[70.81857,23.1586],[70.81607,23.16457],[70.81228,23.1605],[70.80936,23.16459],[70.80768,23.16095],[70.80284,23.15906],[70.79625,23.15929],[70.79544,23.15345],[70.78718,23.15069],[70.78523,23.15211],[70.78509,23.15514],[70.79358,23.16105],[70.79183,23.1651],[70.78832,23.16637],[70.78414,23.1591],[70.78144,23.15842],[70.77601,23.16266],[70.7725,23.16307],[70.77458,23.16678],[70.77386,23.16804],[70.76762,23.16703],[70.764,23.16574],[70.76563,23.16436],[70.75996,23.16045],[70.76587,23.15351],[70.76544,23.14538],[70.76096,23.14461],[70.75664,23.14169],[70.74837,23.1462],[70.69367,23.12014],[70.66309,23.09728],[70.65826,23.09567],[70.63855,23.08117],[70.63139,23.06939],[70.62933,23.06247],[70.62215,23.06029],[70.60969,23.06359],[70.59712,23.06094],[70.59373,23.05498],[70.60026,23.0423],[70.60216,23.03425],[70.58753,23.03057],[70.57938,23.03518],[70.57221,23.03714],[70.5617,23.029],[70.54722,22.99687],[70.54166,22.95958],[70.53785,22.96475],[70.52725,22.96348],[70.52314,22.96467],[70.5124,22.96014],[70.49066,22.96686],[70.47921,22.97486],[70.4752,22.97471],[70.46259,22.966],[70.44561,22.9665],[70.43984,22.96835],[70.43266,22.96706],[70.43925,22.96402],[70.45781,22.949],[70.46874,22.94438],[70.4803,22.9371],[70.49231,22.93417],[70.50885,22.93711],[70.51386,22.93651],[70.51945,22.93501],[70.52028,22.93215],[70.52581,22.93173],[70.53965,22.9255],[70.53515,22.91206],[70.53186,22.90771],[70.53049,22.90824],[70.53013,22.91234],[70.52233,22.91476],[70.51309,22.90581],[70.49999,22.89811],[70.49109,22.88989],[70.49436,22.88006],[70.4855,22.88155],[70.48187,22.8713],[70.47717,22.86723],[70.47966,22.86185],[70.47261,22.85163],[70.46232,22.83131],[70.4393,22.82748],[70.4334,22.81879],[70.41331,22.81839],[70.39621,22.80261],[70.36112,22.78256],[70.32328,22.74891],[70.31592,22.7443],[70.31512,22.74605],[70.31022,22.74329],[70.29307,22.72813],[70.27869,22.72527],[70.28039,22.71866],[70.27492,22.71525],[70.26813,22.70525],[70.26802,22.68725],[70.26865,22.68306],[70.27345,22.67894],[70.273,22.67209],[70.264,22.6699],[70.2666,22.66307],[70.26383,22.6585],[70.26351,22.65346],[70.25545,22.64947],[70.24765,22.64029],[70.23695,22.63226],[70.23346,22.63146],[70.23295,22.6328],[70.22892,22.62567],[70.22478,22.62422],[70.21951,22.61419],[70.21597,22.61402],[70.21093,22.61104],[70.20906,22.607],[70.21076,22.60601],[70.21104,22.59863],[70.20801,22.59834],[70.20554,22.59408],[70.20457,22.59638],[70.19928,22.59705],[70.19861,22.58777],[70.20409,22.582],[70.19457,22.58275],[70.17918,22.56752],[70.17605,22.54438],[70.1789,22.54207],[70.18508,22.54306],[70.1834,22.5241],[70.18473,22.52217],[70.17288,22.52566],[70.17198,22.52931],[70.16348,22.52663],[70.14917,22.51197],[70.13276,22.51718],[70.12415,22.51262],[70.11887,22.50583],[70.12085,22.49303],[70.12021,22.48635],[70.11811,22.48703],[70.11767,22.49891],[70.11629,22.50104],[70.10826,22.49757],[70.08583,22.49406],[70.08574,22.49871],[70.08261,22.49785],[70.08126,22.49953],[70.08468,22.50053],[70.08612,22.50394],[70.09024,22.50568],[70.09122,22.50816],[70.08651,22.50947],[70.08665,22.51184],[70.08119,22.51455],[70.07673,22.51536],[70.07318,22.51388],[70.07312,22.51783],[70.05705,22.50667],[70.04757,22.50493],[70.03131,22.50841],[70.02887,22.5047],[70.02769,22.50789],[70.0207,22.50715],[70.01724,22.50586],[70.01544,22.50177],[70.0103,22.49992],[69.99944,22.50886],[69.9911,22.51056],[69.98985,22.5085],[69.98766,22.51047],[69.98561,22.50826],[69.98929,22.50547],[69.98464,22.50479],[69.98475,22.50235],[69.98158,22.49975],[69.98299,22.49711],[69.97936,22.49547],[69.97871,22.49146],[69.98157,22.48998],[69.98025,22.48788],[69.98382,22.48483],[69.98222,22.48028],[69.98668,22.47721],[69.97982,22.47379],[69.97926,22.46817],[69.97498,22.46934],[69.97055,22.46817],[69.96425,22.47769],[69.96172,22.4783],[69.95674,22.47834],[69.95755,22.47502],[69.95051,22.47235],[69.93985,22.48279],[69.93646,22.47889],[69.93504,22.4713],[69.93741,22.46327],[69.92568,22.46448],[69.92055,22.46092],[69.91867,22.46392],[69.91493,22.46546],[69.9132,22.4644],[69.91427,22.45987],[69.9191,22.45646],[69.91328,22.45542],[69.91366,22.45178],[69.90666,22.44846],[69.90754,22.45132],[69.90426,22.45034],[69.90337,22.45405],[69.90236,22.45166],[69.89989,22.45496],[69.90041,22.45644],[69.89681,22.45622],[69.89564,22.45666],[69.89688,22.45756],[69.89459,22.4579],[69.8878,22.45464],[69.8777,22.44431],[69.87558,22.43898],[69.87653,22.43595],[69.87438,22.43402],[69.87365,22.42967],[69.87064,22.42732],[69.87237,22.42364],[69.871,22.42297],[69.86716,22.42736],[69.86714,22.43315],[69.86529,22.43316],[69.86363,22.43565],[69.85686,22.43709],[69.85256,22.43998],[69.83282,22.44707],[69.8327,22.44197],[69.8263,22.42568],[69.82207,22.42143],[69.82257,22.41761],[69.81988,22.4171],[69.81598,22.41271],[69.81383,22.40911],[69.81483,22.4058],[69.80936,22.40148],[69.8139,22.39883],[69.81371,22.39532],[69.80984,22.39446],[69.81089,22.38992],[69.80868,22.38747],[69.80929,22.38617],[69.8036,22.38276],[69.80058,22.38283],[69.79549,22.37928],[69.79653,22.37774],[69.79185,22.38017],[69.79124,22.38357],[69.79555,22.38926],[69.79758,22.40458],[69.79727,22.40596],[69.79321,22.4073],[69.78972,22.41377],[69.78581,22.41316],[69.78091,22.41672],[69.77931,22.41639],[69.7739,22.42394],[69.7645,22.43168],[69.75908,22.4433],[69.75619,22.43894],[69.75472,22.43016],[69.74604,22.42805],[69.73962,22.43217],[69.74514,22.4316],[69.74766,22.43313],[69.743,22.44191],[69.7409,22.44132],[69.74013,22.44312],[69.73723,22.44345],[69.73283,22.44283],[69.73479,22.44451],[69.74023,22.44456],[69.74163,22.44639],[69.73478,22.44922],[69.74191,22.44867],[69.74354,22.45118],[69.74045,22.45325],[69.74366,22.45262],[69.74367,22.45894],[69.74076,22.46174],[69.74024,22.46527],[69.73446,22.47021],[69.7363,22.47694],[69.73301,22.48238],[69.73663,22.48448],[69.73069,22.48455],[69.71815,22.47594],[69.71327,22.47505],[69.71231,22.47102],[69.70049,22.46087],[69.69615,22.45253],[69.69462,22.44269],[69.69896,22.43621],[69.7054,22.43372],[69.70019,22.42341],[69.69912,22.41452],[69.69559,22.4129],[69.70063,22.41151],[69.70173,22.40683],[69.69974,22.40003],[69.70216,22.39869],[69.70055,22.39625],[69.69423,22.39503],[69.67788,22.39727],[69.67349,22.39433],[69.66974,22.3972],[69.66983,22.39492],[69.66688,22.39311],[69.66091,22.39624],[69.66324,22.3933],[69.66354,22.38832],[69.66137,22.38769],[69.65925,22.37945],[69.65594,22.37559],[69.65569,22.37049],[69.65779,22.36622],[69.65537,22.35957],[69.64921,22.35722],[69.63545,22.35818],[69.62316,22.36487],[69.62113,22.37183],[69.62122,22.36761],[69.61681,22.36851],[69.61522,22.36466],[69.61893,22.35785],[69.61644,22.35318],[69.61838,22.35136],[69.61598,22.34764],[69.61735,22.34542],[69.61361,22.34493],[69.61312,22.34954],[69.6094,22.35255],[69.60725,22.34683],[69.60346,22.34574],[69.60028,22.34739],[69.59766,22.34616],[69.5914,22.35966],[69.58881,22.36199],[69.58564,22.35984],[69.58296,22.36114],[69.57958,22.36736],[69.57437,22.36748],[69.56975,22.36331],[69.56934,22.3593],[69.56706,22.35656],[69.56459,22.35522],[69.56132,22.35584],[69.56231,22.3602],[69.5601,22.36368],[69.56025,22.36716],[69.55952,22.36621],[69.55749,22.36876],[69.54789,22.37254],[69.54345,22.37697],[69.54044,22.37721],[69.53761,22.37595],[69.53732,22.37274],[69.53478,22.37088],[69.53302,22.37218],[69.52799,22.37198],[69.52325,22.36979],[69.51587,22.37306],[69.49948,22.36633],[69.49026,22.3527],[69.48891,22.34656],[69.49028,22.33744],[69.4829,22.33391],[69.47819,22.33428],[69.47126,22.33232],[69.47012,22.33043],[69.46518,22.32856],[69.46068,22.32854],[69.45585,22.33218],[69.4434,22.33031],[69.44262,22.32858],[69.4408,22.32888],[69.43593,22.32174],[69.43356,22.32023],[69.43101,22.32089],[69.42319,22.31601],[69.39203,22.31595],[69.38116,22.31879],[69.37898,22.32099],[69.37607,22.31918],[69.36343,22.31714],[69.35673,22.31963],[69.3528,22.32389],[69.35403,22.3258],[69.35175,22.32685],[69.34178,22.32496],[69.33703,22.32803],[69.33273,22.32783],[69.33128,22.32548],[69.33239,22.32204],[69.33594,22.32264],[69.34007,22.31303],[69.33605,22.30507],[69.33055,22.30212],[69.33146,22.30131],[69.32787,22.30354],[69.32424,22.30284],[69.32553,22.30013],[69.32243,22.29256],[69.31691,22.28953],[69.31438,22.28982],[69.31248,22.28705],[69.29823,22.28784],[69.29542,22.2841],[69.2928,22.28679],[69.29563,22.28108],[69.29381,22.27709],[69.27986,22.26989],[69.28015,22.25932],[69.28383,22.25458],[69.27995,22.25935],[69.27951,22.26994],[69.25282,22.26644],[69.25,22.26458],[69.24981,22.26116],[69.24486,22.25905],[69.24462,22.25629],[69.24297,22.25854],[69.24052,22.25837],[69.2395,22.25678],[69.24074,22.25533],[69.236,22.25034],[69.2336,22.24992],[69.23509,22.24086],[69.23363,22.23511],[69.23431,22.23132],[69.2366,22.22966],[69.23759,22.22271],[69.22184,22.21646],[69.22031,22.21463],[69.22226,22.21195],[69.21282,22.21035],[69.2115,22.21946],[69.19519,22.22533],[69.19434,22.23398],[69.1903,22.24364],[69.18464,22.2402],[69.19007,22.23485],[69.18169,22.2325],[69.17915,22.22814],[69.18046,22.22372],[69.17853,22.21284],[69.17656,22.21498],[69.16911,22.21524],[69.16756,22.21245],[69.16922,22.20824],[69.16716,22.20399],[69.16122,22.20231],[69.15697,22.19547],[69.14816,22.19502],[69.1364,22.19555],[69.13467,22.20222],[69.13943,22.21098],[69.13379,22.22264],[69.13951,22.22543],[69.14836,22.23638],[69.15394,22.24873],[69.15031,22.25125],[69.14848,22.25756],[69.15592,22.26279],[69.15573,22.26711],[69.15406,22.26695],[69.15458,22.26946],[69.15736,22.2724],[69.16073,22.28425],[69.15844,22.28657],[69.16045,22.29591],[69.15756,22.29862],[69.15722,22.3026],[69.16007,22.30164],[69.16064,22.30656],[69.1568,22.31599],[69.16497,22.32334],[69.16926,22.33349],[69.16789,22.33877],[69.16943,22.34255],[69.16689,22.34464],[69.16409,22.34353],[69.16478,22.34658],[69.16336,22.34861],[69.17,22.35037],[69.17252,22.34958],[69.17286,22.34759],[69.17539,22.34788],[69.17329,22.35145],[69.1774,22.35615],[69.1718,22.35519],[69.17093,22.35269],[69.16907,22.35416],[69.17039,22.35471],[69.17121,22.35985],[69.17364,22.36046],[69.17262,22.36301],[69.1761,22.36514],[69.17704,22.36743],[69.17536,22.36775],[69.17885,22.36909],[69.18025,22.36778],[69.18093,22.37066],[69.179,22.37213],[69.17693,22.36966],[69.17373,22.37078],[69.17246,22.36893],[69.16948,22.36868],[69.17065,22.37186],[69.16797,22.37066],[69.16787,22.37325],[69.17222,22.37322],[69.17273,22.37503],[69.17423,22.37454],[69.17332,22.37725],[69.18156,22.37938],[69.18436,22.3844],[69.18504,22.38334],[69.19016,22.38672],[69.18855,22.38744],[69.18972,22.38868],[69.19276,22.38666],[69.19753,22.38783],[69.19683,22.39098],[69.1998,22.39072],[69.19707,22.39462],[69.20092,22.40136],[69.19694,22.40185],[69.19784,22.40058],[69.19529,22.39958],[69.19568,22.40093],[69.19266,22.4011],[69.19681,22.40318],[69.19184,22.403],[69.19042,22.40036],[69.18768,22.40252],[69.18904,22.40641],[69.19046,22.40689],[69.19129,22.40507],[69.18988,22.40862],[69.19177,22.41004],[69.19663,22.40372],[69.191,22.41396],[69.19188,22.41115],[69.18978,22.41046],[69.18742,22.41329],[69.18952,22.41599],[69.19133,22.4156],[69.19483,22.42185],[69.18251,22.42083],[69.17583,22.42296],[69.17334,22.42069],[69.17605,22.42259],[69.18247,22.41961],[69.17996,22.41822],[69.17755,22.41349],[69.17548,22.41561],[69.17483,22.41398],[69.17236,22.41367],[69.17119,22.40942],[69.16796,22.41077],[69.16885,22.40748],[69.16439,22.4064],[69.16336,22.40419],[69.1569,22.4056],[69.1571,22.40805],[69.16032,22.4109],[69.15629,22.40867],[69.16305,22.41196],[69.16037,22.41212],[69.15625,22.41038],[69.15111,22.40471],[69.15146,22.39976],[69.14917,22.40029],[69.14733,22.39778],[69.14505,22.39781],[69.14376,22.39917],[69.14652,22.40001],[69.14543,22.40126],[69.14201,22.40048],[69.14296,22.39845],[69.14159,22.39806],[69.1385,22.4016],[69.13607,22.39832],[69.13317,22.39746],[69.13306,22.39543],[69.1303,22.39509],[69.13234,22.39294],[69.13015,22.39234],[69.12912,22.39006],[69.13088,22.3886],[69.1294,22.38835],[69.12985,22.38532],[69.12761,22.38362],[69.12738,22.37874],[69.12117,22.37564],[69.12827,22.38662],[69.12798,22.39511],[69.11138,22.40649],[69.11049,22.40994],[69.09959,22.40824],[69.09831,22.40391],[69.10215,22.40238],[69.10337,22.39893],[69.09745,22.39348],[69.094,22.39445],[69.08793,22.3923],[69.086,22.39338],[69.08401,22.38925],[69.08185,22.3882],[69.07815,22.38791],[69.07777,22.38925],[69.07079,22.38793],[69.07009,22.3853],[69.06924,22.38774],[69.06496,22.38934],[69.06083,22.38333],[69.06197,22.38755],[69.05762,22.38744],[69.06272,22.39092],[69.0559,22.39311],[69.05489,22.3918],[69.05648,22.39082],[69.05332,22.38861],[69.0527,22.39069],[69.05512,22.394],[69.05383,22.39688],[69.05119,22.39612],[69.04901,22.39789],[69.04668,22.3945],[69.04555,22.39539],[69.04505,22.39239],[69.04335,22.39336],[69.04353,22.39061],[69.04235,22.39356],[69.04059,22.39218],[69.03968,22.39387],[69.04003,22.38856],[69.03955,22.39119],[69.03787,22.38983],[69.03836,22.3923],[69.03549,22.39027],[69.03397,22.39397],[69.03935,22.39973],[69.03744,22.4026],[69.03974,22.40399],[69.03914,22.40905],[69.04163,22.41096],[69.03998,22.41092],[69.04062,22.41371],[69.04682,22.4232],[69.04437,22.4267],[69.04458,22.43033],[69.04121,22.43209],[69.04358,22.43697],[69.03807,22.44272],[69.03947,22.44571],[69.0469,22.44798],[69.05166,22.44581],[69.05029,22.44326],[69.04575,22.44336],[69.04647,22.44014],[69.04971,22.43776],[69.06598,22.45303],[69.07124,22.45263],[69.07409,22.45411],[69.07641,22.46548],[69.08362,22.47459],[69.07878,22.47967],[69.06928,22.47844],[69.06812,22.48138],[69.06152,22.47178],[69.05513,22.46644],[69.02926,22.45374],[69.00725,22.4404],[68.99207,22.41902],[68.98448,22.41344],[68.97841,22.40414],[68.98065,22.40231],[68.98954,22.40458],[68.99562,22.40483],[68.99693,22.40362],[68.99666,22.40497],[68.99951,22.40648],[69.0,22.4041],[68.99637,22.4016],[68.99208,22.4027],[68.98177,22.4016],[68.97713,22.40355],[68.96814,22.38896],[68.96516,22.37819],[68.95738,22.36827],[68.95819,22.35155],[68.95449,22.34589],[68.95569,22.33765],[68.94996,22.33182],[68.94232,22.33214],[68.93576,22.31183],[68.93998,22.2945],[68.95181,22.27172],[68.95176,22.26071],[68.95423,22.25695],[68.95364,22.24521],[68.95837,22.24055],[68.95822,22.2381],[68.96174,22.23833],[68.96493,22.23459],[68.97019,22.23819],[68.97376,22.23654],[68.97219,22.23517],[68.97281,22.23255],[68.97079,22.23692],[68.96586,22.23408],[68.9812,22.2123],[69.01815,22.17226],[69.05469,22.12947],[69.0919,22.0952],[69.10962,22.07101],[69.18667,21.98886],[69.19236,21.9834],[69.19715,21.98139],[69.21655,21.95751],[69.22413,21.95213],[69.23855,21.93587],[69.2442,21.93356],[69.28366,21.89364],[69.29126,21.88946],[69.31595,21.86834],[69.3169,21.86779],[69.31828,21.87208],[69.31972,21.87127],[69.3174,21.86661],[69.32977,21.85546],[69.35396,21.83789],[69.36481,21.83456],[69.37034,21.83025],[69.37311,21.83215],[69.37202,21.8291],[69.39986,21.79686],[69.4165,21.78309],[69.43297,21.76669],[69.44259,21.76165],[69.45271,21.75],[69.46444,21.74418],[69.4774,21.73447],[69.51032,21.70022],[69.56619,21.6515],[69.58543,21.63728],[69.58966,21.63659],[69.58958,21.63827],[69.59146,21.63868],[69.60221,21.63716],[69.61596,21.62455],[69.67374,21.56329],[69.70636,21.53536],[69.75505,21.48024],[69.81521,21.41693],[69.92354,21.29046],[70.00089,21.20628],[70.02724,21.18093],[70.04768,21.15695],[70.0924,21.11333],[70.09845,21.10817],[70.10609,21.10453],[70.12282,21.08853],[70.13911,21.07616],[70.14359,21.06934],[70.16647,21.05052],[70.18135,21.03606],[70.22136,21.00306],[70.23423,20.99648],[70.25683,20.97323],[70.27742,20.95966],[70.28751,20.95074],[70.30809,20.93883],[70.3228,20.92604],[70.33883,20.91748],[70.34622,20.91542],[70.35394,20.90751],[70.36322,20.90094],[70.37008,20.89974],[70.37335,20.89648],[70.36976,20.90083],[70.37123,20.90056],[70.37065,20.90206],[70.37364,20.90345],[70.37362,20.90208],[70.37509,20.90296],[70.37815,20.90009],[70.38545,20.8974],[70.3865,20.89524],[70.39574,20.89151],[70.41369,20.87547],[70.42475,20.86224],[70.43125,20.86058],[70.43772,20.8529],[70.4427,20.85349],[70.44708,20.85043],[70.44742,20.84841],[70.45222,20.84808],[70.46834,20.83903],[70.47394,20.8397],[70.48022,20.83552],[70.48572,20.83521],[70.48763,20.82988],[70.49018,20.82783],[70.5,20.82256],[70.5084,20.82098],[70.5114,20.81738],[70.51615,20.81677],[70.51967,20.81452],[70.51972,20.81266],[70.52299,20.81254],[70.52344,20.81055],[70.52677,20.81091],[70.53454,20.80738],[70.53714,20.80383],[70.54127,20.80322],[70.54199,20.80183],[70.54823,20.80432],[70.55183,20.80342],[70.56231,20.79245],[70.57039,20.79238],[70.57471,20.79072],[70.58567,20.78159],[70.59082,20.78119],[70.59983,20.77744],[70.60949,20.77642],[70.61188,20.77431],[70.61092,20.77252],[70.61216,20.77111],[70.62113,20.77064],[70.62793,20.76608],[70.6346,20.76456],[70.6336,20.76648],[70.63487,20.76708],[70.64287,20.76293],[70.64583,20.76344],[70.64603,20.76104],[70.64915,20.76126],[70.65727,20.75567],[70.66289,20.75776],[70.66301,20.76097],[70.66682,20.76097],[70.66849,20.76017],[70.66817,20.75877],[70.67447,20.75655],[70.68526,20.74809],[70.69462,20.74405],[70.70385,20.7366],[70.70743,20.73628],[70.71404,20.73163],[70.71543,20.73244],[70.72152,20.7297],[70.72464,20.72682],[70.72967,20.72697],[70.73355,20.72253],[70.73797,20.72173],[70.74234,20.71854],[70.74961,20.71758],[70.75609,20.72197],[70.76622,20.72024],[70.77261,20.71589],[70.78809,20.7112],[70.80228,20.70064],[70.80755,20.70028],[70.82158,20.69345],[70.82179,20.69136],[70.83899,20.6901],[70.83487,20.69705],[70.83275,20.69743],[70.83862,20.70355],[70.84414,20.70647],[70.85901,20.70611],[70.86739,20.70355],[70.87301,20.70448],[70.87422,20.70641],[70.87139,20.70711],[70.87079,20.70887],[70.87213,20.71835],[70.87807,20.72854],[70.88405,20.73144],[70.89387,20.73239],[70.91011,20.73684],[70.91586,20.74203],[70.91949,20.7431],[70.92429,20.74066],[70.9266,20.73706],[70.93172,20.73689],[70.93851,20.73243],[70.96041,20.73672],[70.96435,20.72961],[70.97402,20.72787],[70.98101,20.72269],[70.98448,20.73225],[70.99307,20.73578],[70.99949,20.74223],[71.00231,20.74182],[71.00807,20.73694],[71.01902,20.73808],[71.04144,20.73485],[71.04463,20.7327],[71.04383,20.73106],[71.04616,20.73043],[71.05077,20.73048],[71.06058,20.73606],[71.06461,20.73343],[71.06689,20.73567],[71.07182,20.73459],[71.08082,20.7383],[71.08141,20.74043],[71.07969,20.74181],[71.08109,20.74259],[71.07301,20.74332],[71.07477,20.7435],[71.07414,20.74505],[71.07649,20.74354],[71.07903,20.75067],[71.08651,20.75555],[71.11165,20.75732],[71.11744,20.75424],[71.12025,20.75554],[71.12336,20.75465],[71.12797,20.75774],[71.13497,20.75616],[71.14585,20.7578],[71.14639,20.77134],[71.15096,20.77156],[71.15615,20.77771],[71.1607,20.7799],[71.18458,20.78398],[71.20286,20.78919],[71.20356,20.7918],[71.20778,20.7925],[71.20731,20.79496],[71.20399,20.79474],[71.20916,20.80085],[71.21753,20.80201],[71.21845,20.80338],[71.23197,20.80411],[71.23629,20.80713],[71.23933,20.81173],[71.24698,20.81212],[71.25201,20.81518],[71.25801,20.8163],[71.26784,20.8225],[71.27334,20.82326],[71.27849,20.82725],[71.28258,20.82695],[71.29014,20.83024],[71.29395,20.82823],[71.29603,20.83028],[71.29451,20.83398],[71.29692,20.83169],[71.29709,20.83524],[71.30207,20.83541],[71.32173,20.84665],[71.33169,20.84721],[71.3471,20.85229],[71.35086,20.85024],[71.35228,20.85299],[71.35436,20.8505],[71.36408,20.85358],[71.36585,20.85188],[71.37687,20.85701],[71.38407,20.85676],[71.38497,20.85826],[71.38133,20.85947],[71.38182,20.86392],[71.37574,20.86503],[71.37434,20.8674],[71.37992,20.87426],[71.38605,20.87592],[71.39231,20.87494],[71.39553,20.87217],[71.39416,20.86774],[71.39686,20.86517],[71.40453,20.86813],[71.41035,20.86791],[71.41197,20.86651],[71.42225,20.86948],[71.42039,20.86653],[71.43998,20.86952],[71.44605,20.87703],[71.44706,20.87614],[71.45007,20.8776],[71.4488,20.87942],[71.44966,20.88086],[71.46293,20.88004],[71.4702,20.88727],[71.47705,20.88894],[71.47917,20.89721],[71.48253,20.90015],[71.48178,20.90633],[71.48857,20.91351],[71.49713,20.91773],[71.50521,20.91799],[71.5,20.91875],[71.5,20.92049],[71.50667,20.91877],[71.50322,20.92158],[71.50311,20.92668],[71.50916,20.93276],[71.50801,20.93296],[71.5103,20.93581],[71.50946,20.94188],[71.51665,20.94812],[71.52374,20.94795],[71.5275,20.95096],[71.53024,20.94378],[71.53311,20.94331],[71.54508,20.95002],[71.54895,20.94917],[71.55008,20.95223],[71.55269,20.95017],[71.55529,20.9524],[71.55637,20.95164],[71.55544,20.94996],[71.56558,20.94895],[71.56855,20.95304],[71.57977,20.95374],[71.5802,20.95745],[71.58898,20.96043],[71.59214,20.96001],[71.59685,20.96644],[71.59988,20.96653],[71.59766,20.96364],[71.60005,20.96292],[71.61073,20.96621],[71.61292,20.96859],[71.61077,20.96987],[71.61071,20.97382],[71.60749,20.97796],[71.61201,20.97487],[71.61598,20.97598],[71.61784,20.97383],[71.61883,20.97714],[71.61852,20.97126],[71.61508,20.96887],[71.61715,20.96699],[71.61974,20.9692],[71.62058,20.96722],[71.6282,20.96871],[71.64138,20.97525],[71.64771,20.97465],[71.65002,20.97838],[71.63884,20.97731],[71.63696,20.97765],[71.63677,20.98071],[71.64222,20.98997],[71.64708,20.9942],[71.66652,20.99843],[71.67131,20.99785],[71.67575,20.9949],[71.67737,20.99556],[71.67701,21.00175],[71.67859,20.99585],[71.68191,20.99655],[71.6832,20.99711],[71.68105,21.00171],[71.68285,21.00384],[71.7001,21.01046],[71.71668,21.02075],[71.72841,21.02122],[71.73156,21.0187],[71.73562,21.02107],[71.73955,21.01696],[71.74327,21.01965],[71.75154,21.0193],[71.75301,21.02223],[71.75993,21.02184],[71.76097,21.02056],[71.76437,21.02154],[71.76496,21.02303],[71.76337,21.02474],[71.76532,21.02659],[71.76926,21.02579],[71.7757,21.03029],[71.78439,21.03003],[71.7863,21.03321],[71.78292,21.03308],[71.77757,21.03736],[71.78054,21.03919],[71.79031,21.04132],[71.79272,21.04004],[71.79173,21.03617],[71.79351,21.03833],[71.80586,21.03806],[71.80654,21.03973],[71.80547,21.0389],[71.80316,21.04312],[71.80398,21.04471],[71.80194,21.04456],[71.80289,21.04846],[71.8017,21.04726],[71.79948,21.0485],[71.79763,21.05522],[71.80051,21.05885],[71.81308,21.06747],[71.8222,21.07094],[71.82435,21.07071],[71.8249,21.0691],[71.82827,21.06936],[71.84286,21.07721],[71.84702,21.07798],[71.84779,21.07623],[71.84979,21.07635],[71.85165,21.08151],[71.85156,21.07919],[71.85457,21.08195],[71.85672,21.08138],[71.86024,21.08574],[71.86638,21.0885],[71.86823,21.0865],[71.87064,21.08914],[71.873,21.08909],[71.87385,21.08729],[71.87897,21.08875],[71.8878,21.09924],[71.88809,21.10215],[71.89833,21.10994],[71.92092,21.11325],[71.92487,21.11226],[71.93009,21.11603],[71.93857,21.11669],[71.93978,21.1148],[71.93968,21.11913],[71.942,21.12087],[71.95077,21.12077],[71.95334,21.12348],[71.96235,21.12435],[71.9739,21.12223],[71.97201,21.12735],[71.97625,21.13324],[71.98661,21.13789],[71.99766,21.13959],[71.9966,21.14191],[72.00405,21.14185],[72.00523,21.13818],[72.00803,21.13778],[72.01023,21.13467],[72.00835,21.14494],[72.0107,21.1486],[72.01779,21.15391],[72.03648,21.15956],[72.03869,21.16259],[72.04586,21.16331],[72.05043,21.16943],[72.05772,21.17371],[72.06279,21.17375],[72.06217,21.17578],[72.0644,21.17822],[72.07405,21.18067],[72.07554,21.18311],[72.07901,21.18409],[72.07937,21.18592],[72.0869,21.18775],[72.08589,21.19031],[72.08767,21.19188],[72.11205,21.19863],[72.10948,21.21002],[72.10122,21.21725],[72.1,21.22062],[72.09758,21.22113],[72.09564,21.22453],[72.09047,21.22784],[72.08474,21.23649],[72.08267,21.24514],[72.09754,21.26354],[72.09839,21.27937],[72.10367,21.28076],[72.11148,21.29294],[72.10784,21.30247],[72.11243,21.30565],[72.12515,21.32838],[72.13278,21.33764],[72.13246,21.3391],[72.15586,21.3606],[72.15721,21.36546],[72.16765,21.37621],[72.17169,21.38741],[72.21061,21.42104],[72.21977,21.43498],[72.22516,21.43972],[72.22667,21.44574],[72.23535,21.45601],[72.23667,21.46526],[72.24358,21.47386],[72.24282,21.47559],[72.24557,21.48225],[72.24847,21.48511],[72.25315,21.49837],[72.25606,21.50249],[72.25678,21.51106],[72.26496,21.5372],[72.26586,21.54535],[72.26469,21.55518],[72.26822,21.56293],[72.26996,21.57264],[72.2804,21.59081],[72.28836,21.59718],[72.29411,21.60826],[72.30234,21.61762],[72.30613,21.62601],[72.30582,21.63336],[72.30149,21.64527],[72.30523,21.6463],[72.3042,21.6473],[72.3053,21.64907],[72.30274,21.64965],[72.30031,21.65324],[72.29224,21.67279],[72.29105,21.67925],[72.28215,21.6907],[72.28342,21.69246],[72.27937,21.69323],[72.28021,21.69466],[72.28322,21.69433],[72.28284,21.69696],[72.27162,21.70539],[72.25509,21.73259],[72.25,21.74257],[72.23658,21.77999],[72.22828,21.79295],[72.20282,21.81906],[72.20485,21.82382],[72.21031,21.81896],[72.21212,21.82104],[72.22005,21.81965],[72.23548,21.81204],[72.24146,21.82378],[72.24246,21.82981],[72.21723,21.86701],[72.20833,21.88653],[72.2042,21.89107],[72.20523,21.89693],[72.20304,21.91285],[72.20603,21.92281],[72.20586,21.92989],[72.20856,21.94261],[72.20633,21.94841],[72.21167,21.96207],[72.23642,21.97099],[72.24172,21.97577],[72.26887,21.9706],[72.27255,21.98445],[72.28043,22.0],[72.28461,22.01337],[72.29088,22.02361],[72.30003,22.03337],[72.40228,22.1124],[72.43345,22.14025],[72.49941,22.17923],[72.52035,22.20511],[72.53132,22.2158],[72.54373,22.22307],[72.5629,22.23052],[72.57476,22.23269],[72.62418,22.23391],[72.662,22.2233],[72.69516,22.2008],[72.69896,22.19991],[72.71269,22.20912],[72.7401,22.22029],[72.77516,22.22919],[72.79485,22.24189],[72.80273,22.25228],[72.81585,22.25532],[72.8335,22.27151],[72.84062,22.27502],[72.84922,22.27495],[72.84878,22.2485],[72.8538,22.23885],[72.8485,22.24036],[72.84792,22.23872],[72.84985,22.23573],[72.84769,22.23486],[72.84685,22.23764],[72.84261,22.23975],[72.84105,22.23705],[72.84181,22.23155],[72.83364,22.227],[72.83192,22.22832],[72.82957,22.22689],[72.82731,22.22913],[72.82627,22.22423],[72.82247,22.22816],[72.82059,22.22454],[72.81845,22.22422],[72.82319,22.22089],[72.81893,22.21588],[72.82322,22.21461],[72.82064,22.21106],[72.82233,22.21177],[72.82271,22.20922],[72.78276,22.19287],[72.78268,22.15757],[72.77418,22.16119],[72.76021,22.17141],[72.74625,22.1739],[72.74404,22.17272],[72.74359,22.17435],[72.74021,22.17388],[72.73647,22.1761],[72.73319,22.17542],[72.73387,22.17743],[72.72615,22.1814],[72.72212,22.18123],[72.72306,22.18252],[72.72158,22.18352],[72.70906,22.18561],[72.70469,22.18243],[72.69568,22.18729],[72.68508,22.19624],[72.6746,22.20015],[72.66843,22.20459],[72.6686,22.20216],[72.67113,22.19991],[72.67064,22.19685],[72.66628,22.20028],[72.66283,22.19939],[72.66133,22.20154],[72.65953,22.19943],[72.659,22.20183],[72.66445,22.20741],[72.65777,22.21232],[72.65671,22.21096],[72.65437,22.214],[72.65228,22.21017],[72.65208,22.21447],[72.64996,22.21546],[72.63838,22.217],[72.61569,22.21605],[72.59383,22.20798],[72.59078,22.20475],[72.59118,22.20271],[72.59806,22.20561],[72.59382,22.20273],[72.59463,22.20043],[72.598,22.19965],[72.59473,22.19851],[72.59319,22.20034],[72.59104,22.19903],[72.58935,22.20298],[72.5866,22.20246],[72.58862,22.20509],[72.58096,22.19915],[72.57546,22.19079],[72.58313,22.1881],[72.57829,22.18749],[72.57253,22.18932],[72.56395,22.1783],[72.54819,22.14499],[72.54713,22.14156],[72.54821,22.13606],[72.54452,22.1322],[72.54316,22.12634],[72.54643,22.11132],[72.54087,22.0915],[72.5385,22.08954],[72.54007,22.08577],[72.54719,22.08374],[72.54724,22.07884],[72.54654,22.0748],[72.54213,22.07981],[72.53717,22.07554],[72.53688,22.06076],[72.54207,22.03827],[72.5401,22.03288],[72.5481,22.01427],[72.54854,21.99105],[72.54733,21.9878],[72.53781,21.98653],[72.53778,21.98326],[72.537,21.98672],[72.5337,21.98693],[72.53374,21.98261],[72.53866,21.98189],[72.52814,21.98226],[72.52811,21.97784],[72.53856,21.97752],[72.53746,21.97707],[72.53774,21.97209],[72.53332,21.97243],[72.53341,21.96809],[72.53113,21.96827],[72.5311,21.9659],[72.53986,21.96527],[72.53976,21.96175],[72.53838,21.96001],[72.53432,21.96208],[72.52589,21.95987],[72.53054,21.95508],[72.53269,21.95855],[72.54134,21.9589],[72.54123,21.96522],[72.54786,21.96439],[72.54748,21.9543],[72.545,21.94932],[72.53629,21.9498],[72.53343,21.94669],[72.54069,21.94391],[72.53926,21.94221],[72.53173,21.94369],[72.52797,21.93702],[72.53079,21.93597],[72.52851,21.93445],[72.53025,21.93215],[72.52911,21.93115],[72.53308,21.92596],[72.53707,21.9276],[72.53899,21.91706],[72.54536,21.91099],[72.54931,21.91393],[72.56404,21.91766],[72.5804,21.92454],[72.58803,21.92241],[72.60788,21.93302],[72.62449,21.94738],[72.63999,21.95683],[72.67209,21.95569],[72.68056,21.95927],[72.68374,21.95432],[72.69176,21.95211],[72.70781,21.9534],[72.71166,21.95602],[72.71523,21.96637],[72.71412,21.97262],[72.70965,21.97924],[72.71512,21.98271],[72.72268,21.99493],[72.72522,21.99647],[72.72857,21.99558],[72.73556,21.98679],[72.73339,21.98146],[72.73515,21.97673],[72.74637,21.97057],[72.74829,21.96746],[72.74674,21.96175],[72.74113,21.95506],[72.7324,21.95023],[72.71941,21.93922],[72.69772,21.93854],[72.69477,21.94173],[72.6919,21.94187],[72.69775,21.88891],[72.69309,21.88677],[72.69127,21.88258],[72.68363,21.88506],[72.67092,21.89572],[72.65916,21.89141],[72.65466,21.89529],[72.64817,21.89731],[72.64563,21.89569],[72.64522,21.88819],[72.63878,21.89015],[72.63302,21.88044],[72.62335,21.88375],[72.62308,21.87714],[72.6162,21.86043],[72.61033,21.83968],[72.62043,21.82993],[72.61704,21.82713],[72.61778,21.82574],[72.6143,21.82138],[72.59302,21.80492],[72.59505,21.80222],[72.59412,21.80007],[72.59931,21.79829],[72.59963,21.79227],[72.61004,21.79018],[72.61001,21.78915],[72.60195,21.78977],[72.60139,21.78651],[72.60339,21.78504],[72.60212,21.78566],[72.60102,21.78407],[72.60342,21.77636],[72.60116,21.767],[72.60296,21.76365],[72.6064,21.76504],[72.60426,21.75525],[72.60717,21.75305],[72.6027,21.7539],[72.59962,21.75],[72.59796,21.75148],[72.59676,21.74976],[72.59185,21.74863],[72.59205,21.74695],[72.58769,21.74669],[72.58479,21.74277],[72.57873,21.74115],[72.57689,21.73893],[72.57474,21.74014],[72.56806,21.73872],[72.55856,21.73204],[72.5459,21.73502],[72.53897,21.73105],[72.53247,21.7181],[72.53185,21.69618],[72.5337,21.67445],[72.53705,21.66625],[72.54355,21.66051],[72.54853,21.65869],[72.5576,21.65952],[72.5705,21.66801],[72.59574,21.68024],[72.60517,21.68327],[72.60068,21.68598],[72.60809,21.68806],[72.61045,21.68457],[72.62156,21.68225],[72.63762,21.68077],[72.63927,21.68174],[72.63801,21.68214],[72.63897,21.68391],[72.64476,21.68172],[72.65586,21.68083],[72.6571,21.68209],[72.66014,21.68107],[72.66889,21.68482],[72.6666,21.68564],[72.66626,21.68775],[72.67134,21.68904],[72.67177,21.68744],[72.67489,21.68641],[72.67496,21.68446],[72.68534,21.68147],[72.69224,21.68131],[72.69814,21.68438],[72.71291,21.67958],[72.73808,21.69097],[72.74591,21.68846],[72.7498,21.68129],[72.75263,21.68149],[72.75475,21.67576],[72.76221,21.67002],[72.77658,21.66535],[72.78983,21.66325],[72.80129,21.65769],[72.81777,21.6583],[72.84412,21.68016],[72.85359,21.6854],[72.86191,21.68759],[72.86313,21.68632],[72.88052,21.68632],[72.92278,21.67598],[72.92526,21.67866],[72.92772,21.67826],[72.92777,21.67621],[72.93072,21.67753],[72.93819,21.67671],[72.96114,21.68189],[72.96298,21.67403],[72.94103,21.66906],[72.90683,21.6649],[72.90721,21.6668],[72.89498,21.67505],[72.87724,21.67256],[72.87403,21.66917],[72.87284,21.66348],[72.87334,21.64492],[72.86791,21.64222],[72.85359,21.64825],[72.84168,21.65582],[72.82846,21.65091],[72.83179,21.64105],[72.83015,21.62845],[72.82033,21.61111],[72.80956,21.60339],[72.80185,21.60062],[72.79772,21.5956],[72.80224,21.58721],[72.79084,21.58854],[72.78509,21.58735],[72.77388,21.57146],[72.76878,21.57041],[72.76689,21.57398],[72.76629,21.5707],[72.76759,21.5694],[72.76357,21.56888],[72.76261,21.5733],[72.75942,21.56949],[72.76211,21.56678],[72.7589,21.566],[72.7584,21.56813],[72.75627,21.56557],[72.75445,21.56628],[72.75477,21.56434],[72.76006,21.56033],[72.76133,21.56458],[72.76851,21.56499],[72.77022,21.56252],[72.76723,21.55626],[72.76247,21.55146],[72.76277,21.54887],[72.76064,21.55001],[72.76034,21.54781],[72.75007,21.54171],[72.75,21.52752],[72.74273,21.52859],[72.74185,21.53043],[72.74018,21.52935],[72.73929,21.53088],[72.73711,21.53047],[72.7403,21.53262],[72.73875,21.53403],[72.7323,21.53036],[72.73098,21.53029],[72.731,21.53281],[72.72577,21.52997],[72.72998,21.52714],[72.72387,21.52874],[72.72255,21.52613],[72.72216,21.52969],[72.71892,21.52799],[72.71682,21.52914],[72.71523,21.526],[72.71459,21.52794],[72.71197,21.52725],[72.71489,21.52201],[72.71216,21.52315],[72.71076,21.52123],[72.70787,21.52844],[72.70616,21.52628],[72.70283,21.52567],[72.69023,21.50838],[72.68698,21.50142],[72.67704,21.50303],[72.67579,21.5021],[72.66182,21.47691],[72.65582,21.46917],[72.625,21.44759],[72.6022,21.4385],[72.60181,21.43652],[72.5925,21.42839],[72.5866,21.4197],[72.57958,21.41386],[72.57923,21.40917],[72.58134,21.40849],[72.58524,21.40232],[72.60027,21.40015],[72.61495,21.40575],[72.61127,21.40154],[72.61312,21.40011],[72.62847,21.4089],[72.63935,21.42087],[72.6388,21.41757],[72.64234,21.42071],[72.64172,21.41896],[72.64568,21.41948],[72.65406,21.43292],[72.65816,21.43675],[72.6611,21.4439],[72.67943,21.4456],[72.68377,21.45491],[72.6873,21.45244],[72.68376,21.44436],[72.67933,21.43996],[72.66515,21.43626],[72.65289,21.4214],[72.64143,21.41209],[72.62472,21.40056],[72.60992,21.3947],[72.60117,21.38862],[72.60098,21.32767],[72.59795,21.31737],[72.5975,21.30554],[72.60034,21.28987],[72.61046,21.28076],[72.60806,21.27351],[72.60932,21.26892],[72.61983,21.25368],[72.62226,21.24259],[72.63045,21.23435],[72.64523,21.22516],[72.65735,21.22465],[72.65568,21.22233],[72.65559,21.21802],[72.6521,21.21469],[72.63806,21.21111],[72.63933,21.20277],[72.63456,21.19052],[72.62862,21.14412],[72.62522,21.12985],[72.61906,21.11462],[72.6199,21.10075],[72.62325,21.09308],[72.6312,21.08619],[72.63536,21.08456],[72.64154,21.08515],[72.64705,21.08765],[72.65623,21.10234],[72.66496,21.10834],[72.66982,21.11504],[72.66987,21.10586],[72.67544,21.10327],[72.68633,21.09392],[72.68431,21.08805],[72.68479,21.08297],[72.69558,21.08479],[72.69546,21.09517],[72.70247,21.09616],[72.70416,21.08995],[72.70331,21.08684],[72.70991,21.07983],[72.73391,21.07741],[72.74119,21.07446],[72.74099,21.0705],[72.75001,21.06368],[72.74893,21.05722],[72.74062,21.05143],[72.73611,21.05093],[72.72947,21.06092],[72.72618,21.06103],[72.72475,21.05837],[72.72599,21.0473],[72.72273,21.04323],[72.72216,21.03773],[72.7264,21.01474],[72.72767,21.01459],[72.73087,21.00253],[72.73254,21.00154],[72.73321,20.99228],[72.73899,20.98132],[72.74372,20.95895],[72.75465,20.93866],[72.76501,20.9351],[72.76976,20.93755],[72.77403,20.93679],[72.78757,20.94361],[72.79861,20.94424],[72.80908,20.94683],[72.82037,20.9523],[72.81377,20.94256],[72.81273,20.93711],[72.81436,20.93446],[72.81637,20.93419],[72.81998,20.9275],[72.80527,20.92633],[72.7921,20.91819],[72.7871,20.91955],[72.78449,20.92524],[72.78095,20.92472],[72.78017,20.92115],[72.7855,20.91148],[72.81798,20.83445],[72.82466,20.82419],[72.82741,20.8129],[72.8323,20.80728],[72.83924,20.80525],[72.83921,20.80055],[72.82866,20.79902],[72.82021,20.7938],[72.82273,20.79099],[72.82551,20.78137],[72.8387,20.76828],[72.8377,20.76519],[72.84826,20.76194],[72.85294,20.75681],[72.854,20.75164],[72.84969,20.75009],[72.8488,20.74446],[72.8542,20.71496],[72.86496,20.68874],[72.87598,20.64925],[72.87944,20.64319],[72.88426,20.6403],[72.88422,20.6355],[72.89789,20.58663],[72.89695,20.5684],[72.89068,20.55704],[72.88599,20.54243],[72.88991,20.53288],[72.88776,20.53247],[72.88624,20.52678],[72.88883,20.50899],[72.88594,20.49768],[72.87989,20.49245],[72.87256,20.4932],[72.86556,20.48305],[72.85812,20.46564],[72.87725,20.46176],[72.88655,20.46233],[72.888,20.46071],[72.88797,20.4506],[72.89532,20.44431],[72.89016,20.43865],[72.88771,20.43825],[72.8789,20.44166],[72.87484,20.44557],[72.8698,20.43952],[72.86507,20.42908],[72.86109,20.4276],[72.85725,20.41978],[72.86043,20.41741],[72.86842,20.4164],[72.87049,20.41381],[72.8743,20.41487],[72.87533,20.41681],[72.8802,20.41702],[72.88167,20.41948],[72.88919,20.41904],[72.8932,20.42173],[72.8979,20.42061],[72.90041,20.41687],[72.90405,20.41498],[72.90177,20.41021],[72.90329,20.40978],[72.90259,20.4058],[72.89187,20.39916],[72.8877,20.40003],[72.88276,20.39785],[72.88362,20.39122],[72.8871,20.38818],[72.8869,20.38545],[72.89659,20.37987],[72.89149,20.37565],[72.89067,20.37265],[72.88297,20.37231],[72.87667,20.36977],[72.86569,20.37226],[72.86394,20.37521],[72.85813,20.37404],[72.85614,20.37203],[72.84577,20.37489],[72.83594,20.37332],[72.82925,20.36728],[72.82379,20.36722],[72.81409,20.35285],[72.80315,20.34946],[72.79402,20.35053],[72.79128,20.34919],[72.77881,20.335],[72.7761,20.32529],[72.77439,20.30179],[72.76765,20.29741],[72.76335,20.29931],[72.75744,20.29203],[72.75373,20.26045],[72.74242,20.2412],[72.74657,20.22627],[72.74864,20.20693],[72.75049,20.20372],[72.74739,20.19745],[72.74445,20.18195],[72.74551,20.16527],[72.7426,20.15928],[72.74292,20.14041],[72.74122,20.14026],[72.74,20.13481],[72.74931,20.13137],[72.76057,20.13122],[72.76269,20.12982],[72.76732,20.13151],[72.77728,20.13166],[72.79411,20.12334],[72.79221,20.13282],[72.78758,20.13872],[72.78743,20.14394],[72.78527,20.14512],[72.78862,20.14932],[72.79723,20.14967],[72.79927,20.15156],[72.80016,20.1501],[72.80585,20.15447],[72.80605,20.15311],[72.81069,20.15159],[72.81516,20.14469],[72.81888,20.14467],[72.82447,20.14202],[72.82237,20.15498],[72.81632,20.15669],[72.81645,20.16034],[72.81963,20.16477],[72.82009,20.17542],[72.818,20.1826],[72.81604,20.18444],[72.82526,20.18899],[72.8297,20.18805],[72.83255,20.18984],[72.83695,20.18846],[72.83089,20.19677],[72.83345,20.20247],[72.83607,20.20341],[72.83568,20.20507],[72.83903,20.20913],[72.86118,20.20761],[72.85874,20.22474],[72.8705,20.22832],[72.87518,20.22601],[72.87912,20.22691],[72.88961,20.22024],[72.89306,20.22584],[72.89942,20.22784],[72.90177,20.22505],[72.90808,20.22342],[72.92123,20.22271],[72.92228,20.22083],[72.93445,20.21595],[72.94144,20.21701],[72.94951,20.21585],[72.9625,20.20965],[72.96451,20.2138],[72.96595,20.22487],[72.96491,20.22674],[72.96059,20.23033],[72.95829,20.23539],[72.95398,20.23826],[72.93761,20.24482],[72.93064,20.24441],[72.9232,20.2572],[72.91838,20.25868],[72.91752,20.26339],[72.91171,20.27026],[72.91239,20.27535],[72.91601,20.27601],[72.91724,20.2808],[72.9202,20.28117],[72.9208,20.28368],[72.92858,20.28631],[72.93201,20.29349],[72.93795,20.29439],[72.94164,20.29309],[72.94505,20.28849],[72.9482,20.28777],[72.95205,20.28408],[72.95529,20.2842],[72.95568,20.27891],[72.96184,20.27502],[72.96223,20.27134],[72.97119,20.26906],[72.98193,20.2755],[72.98117,20.28927],[72.98536,20.28808],[72.98728,20.29087],[72.99441,20.29231],[72.99682,20.29076],[73.00102,20.29197],[73.00483,20.28917],[73.01005,20.29121],[73.01157,20.30039],[73.00942,20.30981],[73.00615,20.3128],[73.01217,20.31169],[73.01241,20.30933],[73.01669,20.31037],[73.01532,20.29402],[73.02661,20.29067],[73.03429,20.29163],[73.03561,20.2932],[73.0377,20.31767],[73.04174,20.32599],[73.04924,20.32441],[73.06665,20.33003],[73.07027,20.32547],[73.07717,20.32348],[73.08453,20.33182],[73.08782,20.34124],[73.09027,20.34393],[73.08845,20.35033],[73.08906,20.35869],[73.0958,20.36133],[73.0983,20.35838],[73.09864,20.3547],[73.10169,20.35474],[73.10478,20.34994],[73.10398,20.34755],[73.10738,20.34391],[73.10803,20.33902],[73.11125,20.33777],[73.10804,20.33103],[73.10843,20.32457],[73.10291,20.31413],[73.10037,20.30482],[73.10281,20.30178],[73.10852,20.30527],[73.11154,20.30405],[73.11661,20.30616],[73.12189,20.30419],[73.12695,20.30551],[73.12645,20.3088],[73.12944,20.31832],[73.15078,20.31834],[73.15941,20.30885],[73.16573,20.31043],[73.16623,20.30527],[73.16349,20.2982],[73.16579,20.29407],[73.1663,20.28787],[73.16494,20.28399],[73.15823,20.28131],[73.15367,20.28523],[73.15173,20.29203],[73.14585,20.28858],[73.14222,20.2811],[73.14227,20.27642],[73.13997,20.27379],[73.13728,20.27314],[73.13123,20.27503],[73.13053,20.26949],[73.126,20.26076],[73.11399,20.25831],[73.107,20.25077],[73.10627,20.24619],[73.0973,20.23867],[73.09901,20.23194],[73.09774,20.2293],[73.08927,20.22676],[73.08549,20.22764],[73.08244,20.23089],[73.07051,20.2321],[73.06365,20.22776],[73.06257,20.22403],[73.05996,20.22334],[73.05507,20.21224],[73.05446,20.20742],[73.04885,20.20021],[73.05322,20.19543],[73.05953,20.19393],[73.0628,20.17761],[73.06264,20.16975],[73.06041,20.16687],[73.06024,20.16189],[73.06431,20.15865],[73.07358,20.15562],[73.07928,20.17324],[73.08704,20.17032],[73.0903,20.16032],[73.09941,20.15622],[73.10811,20.15784],[73.11365,20.15209],[73.11566,20.15217],[73.11652,20.15582],[73.11481,20.15894],[73.11566,20.16222],[73.11948,20.16404],[73.11918,20.16821],[73.12841,20.17344],[73.13248,20.16942],[73.13604,20.17003],[73.14187,20.17736],[73.13896,20.18447],[73.13492,20.18499],[73.1339,20.18783],[73.13261,20.19196],[73.13299,20.20577],[73.13753,20.20759],[73.13852,20.20451],[73.14757,20.20074],[73.15225,20.2039],[73.15718,20.19835],[73.16829,20.20823],[73.16873,20.20302],[73.17147,20.19844],[73.17675,20.19933],[73.1788,20.19775],[73.17795,20.19264],[73.19003,20.1951],[73.19172,20.19743],[73.19881,20.19446],[73.2067,20.18812],[73.20825,20.1895],[73.21772,20.18593],[73.21819,20.18152],[73.21416,20.17171],[73.20554,20.16417],[73.20104,20.16531],[73.18967,20.16426],[73.1883,20.15859],[73.18538,20.15584],[73.18452,20.14725],[73.18776,20.1286],[73.19745,20.12632],[73.20302,20.1196],[73.21057,20.12049],[73.21701,20.12861],[73.21793,20.13665],[73.22568,20.14015],[73.22678,20.13358],[73.22495,20.1238],[73.22929,20.12263],[73.24323,20.12812],[73.24673,20.12652],[73.24925,20.12233],[73.2547,20.12693],[73.2539,20.13796],[73.25741,20.13765],[73.26515,20.14026],[73.27923,20.15014],[73.28157,20.16686],[73.28118,20.19001],[73.28305,20.19805],[73.28901,20.19817],[73.29328,20.20445],[73.29983,20.20954],[73.30516,20.20858],[73.31405,20.20214],[73.32444,20.20619],[73.33647,20.20017],[73.34384,20.19938],[73.34639,20.20931],[73.3565,20.213],[73.35925,20.21151],[73.36126,20.20765],[73.35347,20.20282],[73.3536,20.20036],[73.36475,20.19558],[73.36653,20.19636],[73.36624,20.20391],[73.37456,20.2047],[73.37814,20.21095],[73.3825,20.21173],[73.38638,20.20939],[73.38575,20.19615],[73.38867,20.19277],[73.39121,20.19369],[73.39448,20.19864],[73.40588,20.19549],[73.41651,20.19829],[73.42121,20.20659],[73.42011,20.211],[73.41557,20.2127],[73.41714,20.21457],[73.41784,20.22235],[73.4164,20.22422],[73.4136,20.22434],[73.41191,20.23207],[73.41447,20.23594],[73.41044,20.23851],[73.41741,20.24273],[73.41252,20.24449],[73.41533,20.25071],[73.4113,20.25322],[73.41612,20.25868],[73.4138,20.25965],[73.41552,20.26195],[73.41215,20.26551],[73.41494,20.26631],[73.41581,20.26838],[73.41311,20.26921],[73.41285,20.27095],[73.41503,20.27488],[73.4179,20.27332],[73.41919,20.27555],[73.42319,20.27477],[73.4277,20.28012],[73.42394,20.29151],[73.42022,20.29736],[73.42043,20.30735],[73.41873,20.31397],[73.41535,20.31742],[73.41681,20.32017],[73.41617,20.32479],[73.41381,20.32572],[73.41847,20.33052],[73.41718,20.33514],[73.41423,20.33612],[73.41216,20.34358],[73.41329,20.34613],[73.4092,20.34922],[73.40986,20.35093],[73.41366,20.35221],[73.4134,20.35673],[73.41178,20.3639],[73.40644,20.3734],[73.40605,20.3847],[73.40343,20.38637],[73.40086,20.3856],[73.3882,20.37386],[73.38419,20.37204],[73.3801,20.37895],[73.37977,20.3935],[73.38783,20.39841],[73.39592,20.39633],[73.39801,20.40383],[73.40009,20.40605],[73.40592,20.40297],[73.40487,20.40998],[73.41232,20.41075],[73.41402,20.41622],[73.41718,20.41309],[73.41957,20.41307],[73.41854,20.41793],[73.42312,20.42216],[73.4211,20.43003],[73.42856,20.44208],[73.4315,20.44971],[73.43101,20.45441],[73.43296,20.45364],[73.43546,20.45584],[73.44483,20.47478],[73.45625,20.47833],[73.45721,20.48835],[73.45912,20.49184],[73.46767,20.49647],[73.46874,20.50585],[73.46691,20.50923],[73.46987,20.52031],[73.49027,20.53389],[73.49362,20.53807],[73.49117,20.54092],[73.4831,20.54104],[73.4753,20.54333],[73.4792,20.56024],[73.47315,20.58464],[73.46357,20.58952],[73.45908,20.58942],[73.44947,20.59404],[73.43561,20.5933],[73.42958,20.5952],[73.42909,20.59788],[73.43151,20.60015],[73.42646,20.60198],[73.42824,20.60651],[73.42555,20.6088],[73.42562,20.61188],[73.42351,20.61421],[73.42518,20.61719],[73.42112,20.62587],[73.4186,20.62773],[73.41515,20.62631],[73.41087,20.62718],[73.40721,20.62397],[73.40704,20.62744],[73.40996,20.62998],[73.40738,20.63263],[73.4071,20.63533],[73.39812,20.64073],[73.39411,20.64078],[73.39256,20.6451],[73.39224,20.64929],[73.3957,20.65269],[73.40618,20.6549],[73.41245,20.66147],[73.41966,20.66068],[73.43012,20.66412],[73.43469,20.67048],[73.43204,20.67726],[73.4443,20.6811],[73.44845,20.69312],[73.44749,20.69555],[73.44341,20.69665],[73.44078,20.69984],[73.44494,20.7099],[73.44847,20.71325],[73.44918,20.71718],[73.45927,20.7166],[73.46694,20.72206],[73.47465,20.72039],[73.47563,20.70986],[73.48016,20.70709],[73.48367,20.70141],[73.484,20.69156],[73.49027,20.68638],[73.48626,20.67516],[73.48374,20.67631],[73.48216,20.67976],[73.47856,20.67666],[73.47963,20.67221],[73.48439,20.67016],[73.48459,20.66558],[73.48922,20.6637],[73.4878,20.66288],[73.48923,20.65573],[73.49562,20.65361],[73.49757,20.65859],[73.50251,20.66227],[73.50452,20.67068],[73.51133,20.66576],[73.5179,20.66743],[73.52049,20.67885],[73.52158,20.67528],[73.53279,20.67274],[73.53322,20.66924],[73.53827,20.66516],[73.5508,20.64856],[73.55785,20.64587],[73.56185,20.6504],[73.56664,20.64842],[73.56836,20.65141],[73.57716,20.64639],[73.58357,20.64478],[73.58541,20.64212],[73.58914,20.64172],[73.59599,20.63611],[73.59951,20.6369],[73.61274,20.62442],[73.61519,20.62482],[73.61475,20.62178],[73.61686,20.61792],[73.62228,20.61424],[73.62129,20.61248],[73.62731,20.59642],[73.62683,20.58548],[73.62968,20.58126],[73.64502,20.57398],[73.65139,20.56856],[73.65268,20.56487],[73.65798,20.56468],[73.66086,20.56247],[73.66912,20.56348],[73.68489,20.57366],[73.69538,20.57837],[73.69968,20.57525],[73.71547,20.57644],[73.72497,20.57386],[73.73233,20.57442],[73.73401,20.57191],[73.74198,20.56884],[73.74456,20.56492],[73.74621,20.56875],[73.75547,20.57084],[73.76074,20.57374],[73.7636,20.58674],[73.76763,20.58655],[73.77539,20.60022],[73.77799,20.59944],[73.79127,20.60527],[73.79727,20.6026],[73.7971,20.59886],[73.7984,20.59868],[73.80706,20.60839],[73.8077,20.60752],[73.81727,20.61357],[73.82601,20.61246],[73.83237,20.61882],[73.83839,20.62046],[73.83307,20.63797],[73.83274,20.64572],[73.83297,20.6486],[73.83831,20.65495],[73.83909,20.65877],[73.83658,20.66427],[73.83099,20.67032],[73.83062,20.6751],[73.81721,20.67204],[73.81692,20.67915],[73.81185,20.69203],[73.82543,20.70072],[73.83123,20.70031],[73.83544,20.7021],[73.83916,20.69802],[73.85051,20.69585],[73.85517,20.69225],[73.85624,20.70039],[73.86083,20.70028],[73.85969,20.70317],[73.86262,20.70324],[73.86371,20.70739],[73.86677,20.71058],[73.86858,20.72003],[73.87073,20.72102],[73.87442,20.72953],[73.88107,20.73116],[73.88253,20.73343],[73.88754,20.73144],[73.89551,20.73166],[73.89738,20.72904],[73.90475,20.72529],[73.90555,20.72681],[73.91205,20.72457],[73.91733,20.72485],[73.91787,20.72956],[73.92726,20.73434],[73.92956,20.72761],[73.93175,20.73282],[73.94266,20.74208],[73.9416,20.74642],[73.93803,20.74922],[73.94106,20.75249],[73.94131,20.75833],[73.93882,20.76034],[73.93186,20.76062],[73.93473,20.77331],[73.93298,20.79187],[73.93612,20.8009],[73.93193,20.8089],[73.93815,20.81422],[73.9421,20.8235],[73.94404,20.82377],[73.94056,20.82847],[73.93925,20.83725],[73.94033,20.83945],[73.92935,20.84236],[73.92761,20.84736],[73.92512,20.84831],[73.92372,20.85138],[73.92454,20.85862],[73.92264,20.8624],[73.9248,20.86648],[73.92337,20.8745],[73.92557,20.87737],[73.92573,20.8885],[73.92216,20.89231],[73.91754,20.90778],[73.90009,20.92078],[73.8882,20.93359],[73.89231,20.95571],[73.89901,20.9603],[73.90798,20.95974],[73.90846,20.96692],[73.90332,20.97219],[73.9013,20.9823],[73.89641,20.98202],[73.89239,20.97947],[73.87148,20.98572],[73.86902,20.98526],[73.86632,20.9899],[73.862,20.99039],[73.85404,20.99474],[73.83881,21.00754],[73.83304,21.00957],[73.81866,21.02211],[73.815,21.0235],[73.81018,21.02834],[73.80872,21.02777],[73.81018,21.02834],[73.79553,21.04452],[73.8109,21.05949],[73.80774,21.08489],[73.7941,21.07144],[73.78033,21.06453],[73.76021,21.0694],[73.75765,21.072],[73.74516,21.07761],[73.72993,21.08243],[73.73302,21.09825],[73.74376,21.11518],[73.73198,21.10443],[73.72968,21.09987],[73.70549,21.10843],[73.70305,21.11233],[73.70315,21.11865],[73.68895,21.10079],[73.6772,21.10856],[73.6519,21.1076],[73.64638,21.12125],[73.63103,21.12328],[73.61846,21.11846],[73.61191,21.13808],[73.61763,21.1427],[73.60513,21.14401],[73.60077,21.15022],[73.59879,21.15663],[73.57852,21.15048],[73.57688,21.15667],[73.58328,21.16101],[73.57764,21.16792],[73.57742,21.17075],[73.58101,21.16945],[73.59385,21.17439],[73.5996,21.1817],[73.60645,21.17876],[73.60579,21.17008],[73.60779,21.15898],[73.61472,21.15578],[73.62927,21.15492],[73.62994,21.14883],[73.62743,21.14335],[73.63464,21.14088],[73.64336,21.13957],[73.65753,21.14585],[73.66494,21.1473],[73.66424,21.15327],[73.66749,21.15463],[73.67271,21.15443],[73.68164,21.15124],[73.70178,21.15369],[73.70134,21.14631],[73.70659,21.14462],[73.71074,21.14543],[73.71305,21.14247],[73.71897,21.13976],[73.71849,21.14157],[73.72102,21.14204],[73.73181,21.14097],[73.73321,21.14235],[73.7332,21.14832],[73.73742,21.15022],[73.73712,21.15325],[73.73408,21.15798],[73.72852,21.16194],[73.72975,21.16538],[73.74009,21.17112],[73.74019,21.16761],[73.75757,21.16743],[73.77231,21.16464],[73.7736,21.16866],[73.78135,21.1711],[73.7847,21.18399],[73.79356,21.18175],[73.8027,21.17492],[73.81576,21.17396],[73.81987,21.18673],[73.82298,21.18514],[73.8259,21.18715],[73.82605,21.20013],[73.81543,21.19735],[73.81296,21.20573],[73.81074,21.20762],[73.81181,21.23123],[73.82846,21.23998],[73.82749,21.25217],[73.82238,21.2611],[73.82287,21.27086],[73.82507,21.27136],[73.82654,21.26772],[73.84971,21.27472],[73.8597,21.27151],[73.86338,21.27266],[73.87961,21.26596],[73.89743,21.27225],[73.9021,21.27757],[73.90873,21.27867],[73.91897,21.28555],[73.92224,21.28964],[73.93242,21.29072],[73.94217,21.29927],[73.94235,21.32563],[73.94585,21.34357],[73.94918,21.35116],[73.94475,21.38112],[73.94408,21.39997],[73.93893,21.40502],[73.94692,21.40493],[73.95179,21.39527],[73.95947,21.39543],[73.95952,21.39695],[73.97045,21.39782],[73.97803,21.40734],[73.97692,21.41193],[73.98222,21.4079],[73.98698,21.41124],[74.00254,21.41746],[74.00293,21.41947],[74.00087,21.42084],[74.00262,21.42141],[74.00829,21.42287],[74.00895,21.41954],[74.01506,21.42128],[74.0234,21.41779],[74.04462,21.41919],[74.04827,21.4234],[74.0491,21.42831],[74.04768,21.43527],[74.04965,21.44021],[74.0457,21.44618],[74.04994,21.4529],[74.0532,21.45469],[74.053,21.45627],[74.05715,21.45939],[74.05967,21.4594],[74.06143,21.46197],[74.06293,21.47455],[74.06955,21.47229],[74.07276,21.46877],[74.07418,21.46563],[74.07297,21.46379],[74.07495,21.46379],[74.07393,21.46127],[74.07544,21.4598],[74.0723,21.45703],[74.09459,21.45573],[74.10071,21.44763],[74.1165,21.45241],[74.11716,21.46208],[74.12053,21.46343],[74.11996,21.46538],[74.12518,21.46665],[74.13373,21.46586],[74.13584,21.45612],[74.1483,21.458],[74.14766,21.46141],[74.15524,21.46295],[74.15881,21.46649],[74.15805,21.46755],[74.16122,21.4689],[74.17297,21.46852],[74.1735,21.46637],[74.18232,21.46925],[74.18349,21.46125],[74.18641,21.46112],[74.18773,21.45819],[74.19531,21.46053],[74.19612,21.4583],[74.19782,21.45875],[74.19716,21.46098],[74.20928,21.46219],[74.20891,21.46704],[74.21416,21.48168],[74.23435,21.48229],[74.23571,21.46777],[74.24742,21.46886],[74.25356,21.46774],[74.25592,21.47678],[74.27732,21.47937],[74.27734,21.48251],[74.30414,21.48811],[74.30389,21.49945],[74.32079,21.4985],[74.3226,21.51748],[74.32148,21.52957],[74.32525,21.53229],[74.32554,21.53607],[74.33084,21.53553],[74.33122,21.5395],[74.32793,21.53944],[74.32834,21.54278],[74.33233,21.54348],[74.33116,21.55242],[74.32518,21.55139],[74.32261,21.54911],[74.32156,21.55231],[74.31475,21.55117],[74.30324,21.55223],[74.30382,21.56547],[74.30246,21.56636],[74.29553,21.56907],[74.2956,21.56708],[74.2846,21.56643],[74.28453,21.5651],[74.27672,21.56225],[74.27853,21.5536],[74.26906,21.55293],[74.26641,21.54259],[74.26332,21.54261],[74.26318,21.53985],[74.23622,21.5397],[74.23631,21.5484],[74.23458,21.5484],[74.23494,21.55088],[74.23104,21.55095],[74.23197,21.55361],[74.22901,21.55446],[74.22757,21.54879],[74.22042,21.5469],[74.21585,21.54109],[74.20845,21.53677],[74.20291,21.53641],[74.20008,21.53284],[74.19584,21.53206],[74.19554,21.53748],[74.19321,21.53761],[74.19338,21.53938],[74.18822,21.54072],[74.18761,21.5428],[74.18272,21.54232],[74.18252,21.54545],[74.1751,21.55643],[74.17648,21.55762],[74.17586,21.569],[74.16674,21.56904],[74.15586,21.5683],[74.15396,21.55682],[74.13894,21.55503],[74.13696,21.54686],[74.13612,21.54929],[74.1298,21.55118],[74.12011,21.55139],[74.12013,21.55625],[74.11755,21.55614],[74.11556,21.5533],[74.11665,21.55084],[74.11319,21.54878],[74.10995,21.55624],[74.10446,21.55643],[74.09731,21.55525],[74.09645,21.55124],[74.08698,21.55157],[74.08504,21.55535],[74.07922,21.55442],[74.08158,21.54875],[74.07319,21.54792],[74.06697,21.55028],[74.0599,21.5503],[74.05403,21.55791],[74.05378,21.54751],[74.05118,21.54668],[74.04935,21.54823],[74.04881,21.54469],[74.04694,21.54468],[74.04748,21.54738],[74.04454,21.54816],[74.04361,21.54248],[74.03644,21.54557],[74.03831,21.54579],[74.03746,21.55063],[74.03501,21.55034],[74.03498,21.54553],[74.03091,21.54515],[74.02044,21.54996],[74.0103,21.5492],[74.00584,21.55276],[74.00345,21.5453],[74.00032,21.54565],[74.00233,21.54155],[73.99742,21.53901],[73.99581,21.53871],[73.99633,21.5402],[73.99319,21.5433],[73.98281,21.54073],[73.98108,21.54361],[73.97419,21.54328],[73.97493,21.53424],[73.98127,21.52781],[73.98227,21.5226],[73.97743,21.52168],[73.97626,21.52316],[73.97132,21.52351],[73.9663,21.52207],[73.96281,21.52769],[73.96035,21.54164],[73.95508,21.54083],[73.95418,21.5337],[73.95595,21.5253],[73.95421,21.5241],[73.95521,21.52035],[73.95212,21.51909],[73.95175,21.51269],[73.94657,21.51434],[73.94593,21.51679],[73.93206,21.51226],[73.92926,21.5237],[73.92739,21.5251],[73.92159,21.52508],[73.92175,21.52116],[73.91682,21.51959],[73.91198,21.52273],[73.90423,21.52451],[73.90532,21.51576],[73.87983,21.5052],[73.87847,21.5049],[73.87706,21.51216],[73.87201,21.51073],[73.86857,21.51085],[73.8686,21.51274],[73.8643,21.51257],[73.86632,21.50703],[73.87264,21.5064],[73.87183,21.5048],[73.86912,21.50108],[73.86436,21.50094],[73.86383,21.49817],[73.86001,21.49976],[73.85356,21.49747],[73.84606,21.5094],[73.83843,21.51556],[73.8349,21.52058],[73.83296,21.53706],[73.82914,21.54559],[73.82723,21.54585],[73.8278,21.55444],[73.8253,21.55513],[73.82228,21.56179],[73.82334,21.56439],[73.81712,21.58113],[73.81748,21.58802],[73.81542,21.58888],[73.81413,21.60109],[73.81209,21.6029],[73.80016,21.60368],[73.79667,21.60574],[73.78772,21.6165],[73.78137,21.61859],[73.78268,21.62208],[73.78051,21.62859],[73.78502,21.62901],[73.78805,21.6341],[73.80158,21.63714],[73.80471,21.63952],[73.81232,21.64008],[73.81426,21.64417],[73.81759,21.64197],[73.82173,21.64342],[73.8248,21.63978],[73.83038,21.64237],[73.8321,21.63835],[73.83603,21.63918],[73.83466,21.63435],[73.83859,21.63308],[73.84594,21.63974],[73.84977,21.63913],[73.85167,21.64648],[73.86004,21.64233],[73.86715,21.64604],[73.87419,21.64756],[73.88378,21.65334],[73.88801,21.65325],[73.88863,21.66077],[73.89459,21.67598],[73.89161,21.68106],[73.89182,21.69215],[73.8903,21.69797],[73.88389,21.70523],[73.88632,21.70667],[73.88061,21.71559],[73.86761,21.71834],[73.85836,21.7265],[73.85327,21.73538],[73.84681,21.73728],[73.83751,21.74553],[73.83366,21.75492],[73.828,21.75647],[73.82486,21.75956],[73.82374,21.7626],[73.82494,21.76523],[73.83361,21.77165],[73.8347,21.77405],[73.83414,21.7762],[73.82957,21.77755],[73.82945,21.78594],[73.8371,21.78733],[73.83816,21.78875],[73.83449,21.7921],[73.82734,21.79248],[73.82696,21.79793],[73.83295,21.80095],[73.82807,21.80407],[73.82743,21.80991],[73.82239,21.8113],[73.80784,21.80981],[73.8043,21.8197],[73.79595,21.82473],[73.80732,21.83633],[73.81386,21.83979],[73.84232,21.844],[73.86976,21.84107],[73.8758,21.84367],[73.888,21.85521],[73.90058,21.85795],[73.90782,21.85706],[73.92096,21.86103],[73.96539,21.88432],[74.0039,21.90025],[74.02358,21.91092],[74.02886,21.91214],[74.03122,21.91406],[74.03123,21.91609],[74.04789,21.925],[74.08405,21.93373],[74.1059,21.94323],[74.12822,21.94978],[74.13609,21.95018],[74.13938,21.94547],[74.14647,21.94672],[74.14685,21.95289],[74.14417,21.95313],[74.14188,21.95574],[74.14301,21.9584],[74.14755,21.96072],[74.1458,21.96207],[74.14335,21.96124],[74.14276,21.96362],[74.1413,21.96384],[74.13984,21.96764],[74.14178,21.9702],[74.14034,21.97267],[74.14421,21.9754],[74.14754,21.97415],[74.14989,21.97517],[74.14865,21.98343],[74.15059,21.98659],[74.14796,21.98848],[74.1455,21.98774],[74.14374,21.99085],[74.14022,21.99048],[74.12722,21.99559],[74.12044,21.9957],[74.11843,21.99893],[74.11491,21.9979],[74.1128,21.99945],[74.09944,21.9995],[74.09801,21.99831],[74.09677,22.0],[74.09991,22.0],[74.09968,22.00142],[74.09638,22.00989],[74.09214,22.01483],[74.095,22.01898],[74.11428,22.02444],[74.11566,22.02548],[74.11535,22.02978],[74.12123,22.03219],[74.12155,22.03467],[74.12366,22.03609],[74.14015,22.04032],[74.13899,22.0434],[74.13144,22.04622],[74.13141,22.04783],[74.13629,22.05293],[74.15502,22.05781],[74.15444,22.05894],[74.16008,22.05882],[74.16104,22.06024],[74.15862,22.06971],[74.16395,22.07344],[74.16472,22.08285],[74.17865,22.08548],[74.17594,22.08969],[74.17034,22.09181],[74.16936,22.09694],[74.16714,22.09735],[74.16929,22.1006],[74.16285,22.1018],[74.15694,22.09962],[74.15371,22.1004],[74.15256,22.10601],[74.12849,22.09465],[74.12627,22.0984],[74.12446,22.09791],[74.12885,22.12104],[74.12833,22.12449],[74.12335,22.12761],[74.12278,22.13568],[74.12456,22.13608],[74.1269,22.1431],[74.13055,22.14443],[74.13017,22.1547],[74.13145,22.15897],[74.13386,22.16054],[74.13178,22.1631],[74.12486,22.16413],[74.12144,22.1674],[74.12265,22.17206],[74.12022,22.179],[74.1208,22.18224],[74.11883,22.18298],[74.11813,22.18535],[74.12165,22.19474],[74.11738,22.20647],[74.1222,22.21043],[74.12233,22.2124],[74.11708,22.21612],[74.11273,22.21404],[74.11105,22.2181],[74.10621,22.22025],[74.09721,22.21835],[74.09633,22.21996],[74.09204,22.2205],[74.07217,22.21916],[74.06933,22.23272],[74.07404,22.23819],[74.0839,22.23925],[74.08718,22.24279],[74.08388,22.24694],[74.07504,22.24756],[74.07448,22.26564],[74.06777,22.26541],[74.06592,22.26889],[74.0588,22.27462],[74.05472,22.28284],[74.05597,22.28992],[74.05238,22.29409],[74.05432,22.29748],[74.05376,22.30375],[74.05906,22.30577],[74.05958,22.3037],[74.06244,22.30492],[74.06144,22.31168],[74.06458,22.33186],[74.07157,22.33599],[74.0722,22.34348],[74.06956,22.34895],[74.06647,22.35019],[74.06477,22.35461],[74.067,22.35634],[74.06789,22.3599],[74.07078,22.36129],[74.08261,22.36171],[74.088,22.3598],[74.09207,22.36085],[74.09567,22.37111],[74.10507,22.37182],[74.11209,22.36688],[74.11367,22.35715],[74.11776,22.35616],[74.12123,22.35767],[74.12512,22.3561],[74.12739,22.3415],[74.12531,22.33742],[74.12786,22.33274],[74.13411,22.3326],[74.14214,22.32712],[74.14448,22.32819],[74.1506,22.32684],[74.15408,22.3296],[74.1562,22.32726],[74.16457,22.3243],[74.19033,22.32026],[74.19283,22.3324],[74.1922,22.34633],[74.19343,22.34891],[74.19828,22.34412],[74.20277,22.34852],[74.20404,22.36671],[74.20783,22.36466],[74.21057,22.36069],[74.22388,22.35637],[74.22451,22.36051],[74.22214,22.36463],[74.22495,22.36875],[74.22236,22.37505],[74.22371,22.37994],[74.24329,22.37605],[74.24276,22.38242],[74.25103,22.38262],[74.25429,22.38583],[74.25674,22.39965],[74.2707,22.39269],[74.27483,22.3921],[74.27941,22.3948],[74.28906,22.39229],[74.29118,22.39401],[74.26746,22.40555],[74.27059,22.41315],[74.26261,22.41816],[74.26248,22.4236],[74.2532,22.43096],[74.25279,22.43295],[74.23628,22.4352],[74.2274,22.43892],[74.22623,22.43762],[74.22159,22.43776],[74.21524,22.4413],[74.21338,22.43151],[74.20162,22.43451],[74.20422,22.45142],[74.20246,22.45638],[74.20323,22.46704],[74.19898,22.47297],[74.1934,22.47548],[74.1879,22.47551],[74.18706,22.4721],[74.18227,22.46775],[74.17993,22.46222],[74.18058,22.45464],[74.18534,22.45096],[74.18413,22.44154],[74.1695,22.43926],[74.16975,22.43183],[74.16528,22.43021],[74.16045,22.43121],[74.15553,22.43633],[74.15254,22.44306],[74.15526,22.4541],[74.14921,22.45566],[74.14276,22.44687],[74.13585,22.44717],[74.13395,22.44592],[74.13056,22.43958],[74.1311,22.43777],[74.12903,22.43606],[74.13016,22.43504],[74.1282,22.43522],[74.12796,22.42691],[74.12629,22.42667],[74.12773,22.42643],[74.12775,22.42204],[74.12474,22.41733],[74.11911,22.41876],[74.11667,22.42445],[74.1093,22.42638],[74.10684,22.42971],[74.10491,22.42951],[74.10445,22.43627],[74.10341,22.43727],[74.10132,22.43527],[74.09975,22.43804],[74.09841,22.44872],[74.09697,22.45027],[74.1004,22.45146],[74.10156,22.45555],[74.1034,22.45574],[74.10415,22.46453],[74.09544,22.46818],[74.09064,22.46634],[74.08566,22.46991],[74.07533,22.4643],[74.076,22.46941],[74.07353,22.47765],[74.07646,22.48358],[74.07885,22.48527],[74.08217,22.48444],[74.08601,22.47681],[74.08754,22.48222],[74.0852,22.48799],[74.08619,22.49158],[74.08253,22.49571],[74.08252,22.50678],[74.07742,22.50606],[74.07196,22.50821],[74.05437,22.50956],[74.04972,22.49951],[74.04642,22.4992],[74.0438,22.49658],[74.0408,22.48655],[74.0367,22.48694],[74.03339,22.4899],[74.02938,22.50795],[74.03851,22.51584],[74.03902,22.52151],[74.03678,22.52525],[74.03789,22.53451],[74.04149,22.54225],[74.0542,22.54928],[74.07464,22.5514],[74.08408,22.54475],[74.09926,22.53835],[74.1013,22.53442],[74.1073,22.53941],[74.11184,22.53967],[74.12159,22.5282],[74.1271,22.52687],[74.12684,22.52447],[74.13054,22.52393],[74.13309,22.52025],[74.15067,22.52127],[74.15037,22.52897],[74.15607,22.53488],[74.16264,22.53808],[74.17069,22.54715],[74.18031,22.54818],[74.18951,22.5536],[74.1901,22.55947],[74.1833,22.56649],[74.18578,22.56582],[74.19359,22.56882],[74.20048,22.56573],[74.20369,22.56873],[74.2046,22.56581],[74.21003,22.56426],[74.21125,22.57486],[74.22183,22.58357],[74.22543,22.59604],[74.23112,22.60794],[74.23137,22.6118],[74.24066,22.61187],[74.24351,22.62051],[74.2496,22.61969],[74.2534,22.62148],[74.25512,22.62349],[74.25358,22.63466],[74.25882,22.63685],[74.26356,22.64397],[74.26667,22.64211],[74.26615,22.63835],[74.27182,22.63916],[74.27737,22.646],[74.29321,22.63791],[74.31197,22.63645],[74.3148,22.63387],[74.32372,22.63595],[74.32278,22.6407],[74.32935,22.64173],[74.33212,22.63872],[74.3376,22.64029],[74.35909,22.63399],[74.37451,22.63594],[74.37906,22.63443],[74.37961,22.64037],[74.38429,22.64629],[74.38066,22.6584],[74.38198,22.66751],[74.39498,22.68564],[74.3944,22.69961],[74.39781,22.70387],[74.39953,22.70938],[74.39694,22.71355],[74.4017,22.73097],[74.40891,22.74026],[74.41388,22.74304],[74.41602,22.7488],[74.41596,22.75406],[74.41792,22.75625],[74.42136,22.75675],[74.43554,22.7826],[74.43788,22.79204],[74.43378,22.8079],[74.44922,22.8083],[74.46477,22.81639],[74.4706,22.84107],[74.47604,22.8531],[74.47626,22.85533],[74.4702,22.86377],[74.46876,22.86941],[74.47025,22.87753],[74.46399,22.88644],[74.46389,22.89827],[74.46076,22.90684],[74.45754,22.91193],[74.44941,22.91739],[74.44683,22.92108],[74.44406,22.91875],[74.44095,22.91851],[74.43363,22.91249],[74.43323,22.91795],[74.41848,22.91704],[74.41052,22.91184],[74.4136,22.90609],[74.40824,22.90617],[74.40445,22.90359],[74.4041,22.8993],[74.40166,22.89773],[74.39341,22.8966],[74.38546,22.90455],[74.37756,22.9072],[74.3706,22.92173],[74.3625,22.92606],[74.35905,22.93007],[74.35735,22.93401],[74.35767,22.93921],[74.3395,22.95289],[74.33741,22.95669],[74.33936,22.96472],[74.34969,22.97147],[74.35045,22.97428],[74.36104,22.97659],[74.36546,22.9759],[74.36368,22.98167],[74.34938,23.00685],[74.34686,23.01399],[74.34638,23.02531],[74.34392,23.02971],[74.33979,23.03267],[74.32758,23.0366],[74.32193,23.04122],[74.31818,23.0621],[74.31133,23.07419],[74.29783,23.08398],[74.28287,23.08853],[74.27889,23.09219],[74.27712,23.0994],[74.28577,23.11257],[74.28712,23.11712],[74.27837,23.12499],[74.27437,23.13075],[74.26747,23.15835],[74.2611,23.16497],[74.24736,23.17143],[74.24286,23.17734],[74.2408,23.18469],[74.23164,23.17727],[74.23137,23.17893],[74.22379,23.18151],[74.21252,23.18367],[74.21256,23.18693],[74.20712,23.18909],[74.20292,23.19031],[74.20121,23.1893],[74.19578,23.18054],[74.1886,23.17815],[74.1887,23.1752],[74.18293,23.16634],[74.18542,23.15682],[74.17888,23.14728],[74.17244,23.15454],[74.16679,23.15572],[74.15448,23.15649],[74.15407,23.15204],[74.15273,23.15239],[74.14794,23.15766],[74.14526,23.16836],[74.1412,23.17315],[74.12148,23.17619],[74.11638,23.18466],[74.11902,23.1919],[74.11921,23.204],[74.13007,23.21115],[74.12814,23.21388],[74.12862,23.21666],[74.13447,23.22303],[74.13116,23.22923],[74.13373,23.22986],[74.1325,23.23159],[74.13258,23.24078],[74.13008,23.24512],[74.13201,23.2472],[74.13077,23.25649],[74.13237,23.25925],[74.13264,23.26619],[74.12793,23.26899],[74.10922,23.27436],[74.10755,23.28444],[74.10058,23.29381],[74.09617,23.29325],[74.08593,23.29804],[74.08298,23.29609],[74.07176,23.29886],[74.04829,23.29332],[74.03816,23.29345],[74.03883,23.29857],[74.0424,23.30029],[74.04486,23.30881],[74.04086,23.30873],[74.03552,23.30501],[74.03307,23.30599],[74.03075,23.31291],[74.02481,23.32106],[74.02865,23.33167],[74.00439,23.33592],[73.98758,23.33576],[73.9814,23.33814],[73.97915,23.35901],[73.98041,23.36238],[73.97706,23.36485],[73.97553,23.37152],[73.97114,23.37431],[73.96681,23.3749],[73.96176,23.37244],[73.95986,23.37771],[73.9575,23.37954],[73.95227,23.37518],[73.93801,23.36794],[73.93697,23.36058],[73.93941,23.34441],[73.93566,23.33973],[73.91858,23.33547],[73.90094,23.33597],[73.89193,23.33411],[73.8896,23.33637],[73.89266,23.34828],[73.89078,23.34889],[73.89131,23.35048],[73.88979,23.35091],[73.88723,23.35728],[73.88034,23.3585],[73.87433,23.36367],[73.87408,23.37073],[73.87246,23.37247],[73.87374,23.37515],[73.87248,23.37587],[73.87376,23.37686],[73.87297,23.37945],[73.87191,23.37726],[73.86776,23.37805],[73.86921,23.38191],[73.86636,23.38126],[73.86585,23.38422],[73.86178,23.38363],[73.86084,23.38567],[73.86338,23.38725],[73.86361,23.38949],[73.85927,23.39214],[73.85817,23.39624],[73.85004,23.40198],[73.84932,23.40548],[73.84556,23.40752],[73.84566,23.41045],[73.84087,23.41335],[73.83963,23.41882],[73.83509,23.42044],[73.83413,23.42362],[73.83023,23.42623],[73.83313,23.43582],[73.8318,23.44045],[73.82868,23.44383],[73.82871,23.44769],[73.8186,23.43846],[73.80344,23.43777],[73.79447,23.43112],[73.78628,23.43023],[73.77898,23.4313],[73.77657,23.43779],[73.77229,23.43782],[73.77056,23.44807],[73.76723,23.45312],[73.75573,23.45432],[73.75645,23.45018],[73.74988,23.44074],[73.73658,23.42981],[73.735,23.42549],[73.72875,23.42321],[73.72081,23.41013],[73.71371,23.41381],[73.71451,23.41673],[73.71122,23.42187],[73.70808,23.42232],[73.71045,23.42536],[73.70799,23.43116],[73.71165,23.43392],[73.71164,23.4355],[73.70511,23.4382],[73.70686,23.44564],[73.70427,23.45144],[73.6974,23.45667],[73.69539,23.45591],[73.69212,23.45843],[73.68523,23.45359],[73.67391,23.45411],[73.66052,23.44803],[73.64746,23.43645],[73.64619,23.44142],[73.63602,23.44906],[73.62721,23.44857],[73.63067,23.45792],[73.63432,23.46238],[73.63344,23.46995],[73.64033,23.48272],[73.63917,23.48708],[73.64072,23.49641],[73.64533,23.49769],[73.64962,23.49647],[73.65636,23.50746],[73.65532,23.5124],[73.65052,23.51855],[73.63307,23.52869],[73.63514,23.53836],[73.63311,23.55509],[73.63662,23.5646],[73.64058,23.56802],[73.64719,23.56606],[73.64968,23.5681],[73.64416,23.57226],[73.64761,23.57462],[73.64336,23.59437],[73.64503,23.59678],[73.64485,23.60411],[73.64898,23.60837],[73.65566,23.62129],[73.64067,23.62821],[73.62678,23.64187],[73.62072,23.64574],[73.61548,23.65212],[73.59818,23.65389],[73.57902,23.65261],[73.57266,23.65377],[73.56855,23.6529],[73.54647,23.62599],[73.53301,23.61955],[73.53118,23.61418],[73.52487,23.61184],[73.52308,23.6069],[73.50639,23.61903],[73.50346,23.61832],[73.5027,23.6228],[73.50379,23.62443],[73.49377,23.63234],[73.50573,23.63884],[73.50877,23.64439],[73.50582,23.64701],[73.49943,23.64682],[73.49951,23.64873],[73.49661,23.64916],[73.50388,23.65672],[73.50841,23.69549],[73.50518,23.69881],[73.50739,23.70304],[73.49066,23.7069],[73.48141,23.7042],[73.47352,23.70523],[73.47142,23.71973],[73.46037,23.72731],[73.45674,23.73352],[73.45011,23.73336],[73.44921,23.73481],[73.44668,23.7444],[73.44869,23.7511],[73.44773,23.75287],[73.43658,23.75696],[73.43189,23.75652],[73.43063,23.75804],[73.43115,23.76125],[73.42702,23.76009],[73.42433,23.76164],[73.41928,23.76951],[73.41641,23.77032],[73.41802,23.77681],[73.41078,23.78016],[73.40858,23.77917],[73.40025,23.78506],[73.39919,23.78312],[73.39446,23.78293],[73.38624,23.77666],[73.38282,23.76824],[73.37077,23.76526],[73.37152,23.77049],[73.36724,23.77437],[73.36656,23.77704],[73.36377,23.77815],[73.36333,23.78223],[73.35606,23.78502],[73.35184,23.7914],[73.35872,23.79568],[73.36791,23.81423],[73.36811,23.8226],[73.36638,23.82218],[73.36508,23.82376],[73.36855,23.83188],[73.36686,23.83664],[73.36771,23.83946],[73.35783,23.84661],[73.35384,23.85285],[73.35607,23.85457],[73.35572,23.85923],[73.35813,23.86194],[73.36112,23.8727],[73.3652,23.87548],[73.36605,23.87833],[73.36802,23.87833],[73.37101,23.89114],[73.37771,23.89615],[73.37863,23.90453],[73.38382,23.90886],[73.38746,23.91591],[73.39516,23.91902],[73.40039,23.91683],[73.40652,23.91651],[73.40899,23.92158],[73.41455,23.92159],[73.42006,23.92488],[73.42083,23.93082],[73.41692,23.93465],[73.4163,23.93787],[73.41324,23.93916],[73.41491,23.94458],[73.41303,23.94596],[73.41421,23.955],[73.41323,23.95883],[73.41604,23.97016],[73.41496,23.98578],[73.40458,23.9908],[73.39788,23.98951],[73.40375,23.9933],[73.40799,24.00809],[73.40666,24.01852],[73.39848,24.03751],[73.40276,24.03848],[73.40255,24.0443],[73.39719,24.0506],[73.3947,24.05101],[73.39521,24.05282],[73.38625,24.06473],[73.3703,24.07637],[73.36737,24.07583],[73.36532,24.07906],[73.36087,24.08128],[73.36205,24.08628],[73.36071,24.08749],[73.36088,24.09631],[73.36284,24.10063],[73.36199,24.10466],[73.34778,24.10638],[73.34408,24.10017],[73.33903,24.09841],[73.33575,24.09979],[73.33489,24.10288],[73.3334,24.10325],[73.33301,24.10869],[73.32701,24.10922],[73.32212,24.09682],[73.32595,24.07696],[73.32397,24.07413],[73.32406,24.06964],[73.31632,24.0576],[73.31739,24.05321],[73.30835,24.04793],[73.30732,24.04566],[73.30045,24.04631],[73.29736,24.04353],[73.29063,24.03326],[73.28985,24.02666],[73.28673,24.02467],[73.28614,24.02177],[73.28311,24.01887],[73.27938,24.02031],[73.27548,24.0191],[73.27047,24.02103],[73.26533,24.02032],[73.261,24.01771],[73.25844,24.01197],[73.25237,24.00948],[73.24933,24.00319],[73.24279,24.00228],[73.23988,24.00343],[73.23741,24.00744],[73.23663,24.01234],[73.23353,24.01255],[73.22975,24.01567],[73.22937,24.02211],[73.21074,24.02885],[73.21086,24.03153],[73.20891,24.03389],[73.19955,24.03623],[73.19314,24.041],[73.20238,24.05099],[73.20531,24.06139],[73.21265,24.07585],[73.20119,24.08003],[73.19435,24.08516],[73.1837,24.08546],[73.18357,24.08958],[73.17514,24.09422],[73.15892,24.09833],[73.15499,24.10869],[73.15719,24.10953],[73.15353,24.11278],[73.13812,24.12221],[73.13001,24.12228],[73.12522,24.12486],[73.12216,24.13065],[73.11042,24.14231],[73.10637,24.14201],[73.10343,24.14375],[73.10386,24.14988],[73.09916,24.15947],[73.07413,24.18053],[73.06971,24.19098],[73.06545,24.1939],[73.07093,24.19679],[73.07703,24.20518],[73.07927,24.2051],[73.07671,24.21396],[73.07901,24.22059],[73.09223,24.22334],[73.09712,24.23108],[73.09014,24.23383],[73.08804,24.23263],[73.08791,24.23382],[73.09338,24.23798],[73.09536,24.24935],[73.1036,24.25549],[73.10715,24.26394],[73.11834,24.26868],[73.12029,24.27204],[73.12395,24.27124],[73.12545,24.27343],[73.13099,24.28867],[73.13544,24.30843],[73.14087,24.31109],[73.16652,24.29925],[73.16922,24.3003],[73.17359,24.30859],[73.17372,24.31906],[73.17623,24.32473],[73.17456,24.33007],[73.17656,24.33428],[73.17635,24.33788],[73.18166,24.34332],[73.18621,24.33974],[73.18659,24.33546],[73.1885,24.33363],[73.19857,24.33193],[73.20626,24.35126],[73.20903,24.35216],[73.21926,24.3639],[73.21721,24.36752],[73.20668,24.37466],[73.19919,24.37651],[73.18147,24.36625],[73.17137,24.35542],[73.16482,24.356],[73.15856,24.3541],[73.15534,24.35614],[73.15257,24.35384],[73.14589,24.35673],[73.13347,24.36665],[73.131,24.3656],[73.1243,24.36729],[73.12092,24.37009],[73.11186,24.37341],[73.1076,24.37753],[73.10534,24.38259],[73.10227,24.38172],[73.10269,24.38743],[73.10002,24.39039],[73.09006,24.38625],[73.0875,24.38663],[73.0765,24.3966],[73.08112,24.40128],[73.08672,24.41253],[73.09019,24.41409],[73.10025,24.4261],[73.10283,24.43301],[73.09839,24.44801],[73.10006,24.45427],[73.10328,24.45576],[73.10182,24.47081],[73.09381,24.47154],[73.09113,24.4751],[73.09589,24.49012],[73.08788,24.49765],[73.08178,24.49717],[73.08044,24.49424],[73.07786,24.49477],[73.07434,24.49303],[73.07178,24.49091],[73.07306,24.48678],[73.07013,24.48687],[73.06803,24.48326],[73.06086,24.48361],[73.06108,24.48075],[73.0573,24.47769],[73.04857,24.47426],[73.04932,24.46887],[73.03707,24.46677],[73.03721,24.46444],[73.03523,24.46385],[73.03235,24.46688],[73.02894,24.46527],[73.02066,24.46585],[73.0201,24.46445],[73.01102,24.4666],[73.00382,24.46638],[73.00145,24.46928],[73.00666,24.47544],[73.00425,24.48147],[73.00098,24.48355],[72.99101,24.4776],[72.98619,24.4694],[72.96796,24.45091],[72.97487,24.44948],[72.97316,24.44368],[72.97395,24.44116],[72.98048,24.43774],[72.98121,24.43438],[72.97631,24.42756],[72.97332,24.42654],[72.97008,24.41523],[72.96836,24.41494],[72.96671,24.41092],[72.96193,24.40593],[72.95519,24.40284],[72.95361,24.39233],[72.96031,24.39098],[72.97436,24.38275],[72.97754,24.37682],[72.97763,24.37352],[72.97512,24.3688],[72.96862,24.36798],[72.95403,24.35636],[72.95094,24.35636],[72.93821,24.3483],[72.92755,24.34496],[72.91979,24.34442],[72.91363,24.338],[72.91073,24.33721],[72.89115,24.35697],[72.86997,24.36586],[72.8698,24.36378],[72.85858,24.36974],[72.85767,24.36818],[72.85568,24.36864],[72.85408,24.37131],[72.84976,24.37204],[72.83649,24.36916],[72.81478,24.37023],[72.8085,24.36676],[72.80582,24.36294],[72.77141,24.36823],[72.74939,24.36504],[72.73086,24.3643],[72.72433,24.36762],[72.7199,24.37478],[72.69191,24.40612],[72.68915,24.41173],[72.67977,24.44293],[72.6875,24.4526],[72.68823,24.45781],[72.68336,24.46388],[72.68088,24.46514],[72.67094,24.46488],[72.65633,24.46222],[72.61357,24.47231],[72.57594,24.47885],[72.53824,24.51968],[72.53598,24.51761],[72.53525,24.50567],[72.5335,24.50381],[72.52631,24.50323],[72.52019,24.5],[72.51449,24.48396],[72.5048,24.4716],[72.50444,24.45837],[72.49319,24.45908],[72.50042,24.41705],[72.47499,24.4144],[72.45724,24.4148],[72.45841,24.42487],[72.45209,24.43397],[72.45146,24.44211],[72.44804,24.44779],[72.44389,24.44996],[72.43378,24.46011],[72.43022,24.48017],[72.44293,24.50398],[72.44368,24.50898],[72.44143,24.51136],[72.44108,24.51533],[72.43631,24.51715],[72.43383,24.51588],[72.42533,24.51758],[72.42344,24.51669],[72.42015,24.5201],[72.41633,24.52117],[72.41297,24.51725],[72.40004,24.51447],[72.39172,24.51085],[72.38858,24.50768],[72.38573,24.51187],[72.38234,24.51104],[72.37969,24.51239],[72.37646,24.52469],[72.3709,24.53101],[72.36816,24.53734],[72.36751,24.53977],[72.36986,24.5437],[72.36752,24.54772],[72.36123,24.5478],[72.3605,24.55092],[72.35836,24.5509],[72.35796,24.55564],[72.35429,24.55656],[72.35373,24.56376],[72.34874,24.56245],[72.34095,24.56322],[72.33093,24.5693],[72.32687,24.55802],[72.3304,24.55454],[72.32899,24.55241],[72.32688,24.55397],[72.3236,24.55132],[72.30186,24.55021],[72.29934,24.54729],[72.29543,24.54663],[72.2893,24.54802],[72.29013,24.55074],[72.2855,24.56536],[72.27521,24.56523],[72.27131,24.56136],[72.26473,24.56028],[72.26321,24.56501],[72.2531,24.5751],[72.25148,24.58025],[72.2464,24.58561],[72.24847,24.58934],[72.25688,24.59417],[72.25845,24.5983],[72.2643,24.60006],[72.26435,24.60448],[72.27634,24.60753],[72.28535,24.60714],[72.28975,24.60387],[72.29519,24.60941],[72.29739,24.60897],[72.30325,24.60573],[72.30328,24.60343],[72.30538,24.60279],[72.30462,24.59898],[72.30728,24.59788],[72.30778,24.59589],[72.31357,24.59402],[72.33062,24.59955],[72.33559,24.59858],[72.33851,24.60015],[72.33867,24.6056],[72.34393,24.60963],[72.34531,24.61563],[72.34319,24.62119],[72.34764,24.62605],[72.34733,24.62846],[72.33795,24.63007],[72.33545,24.6333],[72.32022,24.61778],[72.31517,24.61995],[72.30499,24.61755],[72.29715,24.62479],[72.2892,24.61953],[72.28298,24.62575],[72.27366,24.62837],[72.27068,24.63052],[72.27223,24.63704],[72.27084,24.63757],[72.26789,24.6368],[72.26312,24.63093],[72.25469,24.62488],[72.24857,24.6269],[72.24229,24.63458],[72.23698,24.63539],[72.234,24.64043],[72.23037,24.64061],[72.22687,24.63916],[72.21669,24.6269],[72.21033,24.62685],[72.20221,24.62311],[72.19475,24.62302],[72.19779,24.6167],[72.19657,24.61472],[72.19203,24.62005],[72.18389,24.61973],[72.17034,24.62318],[72.16481,24.62128],[72.16033,24.63526],[72.15026,24.64367],[72.12819,24.6417],[72.12457,24.6386],[72.11699,24.64336],[72.11496,24.64843],[72.10877,24.64665],[72.10762,24.649],[72.10248,24.65046],[72.09806,24.65612],[72.08982,24.6587],[72.09002,24.66414],[72.08721,24.67002],[72.08614,24.67759],[72.09275,24.68195],[72.09116,24.69097],[72.0852,24.70641],[72.06133,24.71211],[72.04853,24.71056],[72.04258,24.70437],[72.03494,24.70245],[72.02846,24.69733],[72.01783,24.69478],[72.0125,24.69058],[72.00593,24.69043],[72.00143,24.68841],[72.0011,24.69488],[71.99516,24.69317],[71.99383,24.69506],[71.98385,24.68595],[71.98275,24.673],[71.9883,24.65753],[71.97744,24.65692],[71.96425,24.64583],[71.95528,24.64524],[71.94618,24.64109],[71.93987,24.6338],[71.93864,24.6365],[71.93601,24.6354],[71.9255,24.63604],[71.91544,24.64951],[71.91164,24.65857],[71.91701,24.66029],[71.92032,24.66416],[71.92017,24.67092],[71.91861,24.67211],[71.9075,24.67756],[71.89952,24.67674],[71.88823,24.67214],[71.88503,24.67755],[71.87655,24.68164],[71.87175,24.68177],[71.86135,24.6723],[71.85777,24.66617],[71.85749,24.6522],[71.86539,24.63071],[71.85562,24.62207],[71.85217,24.60936],[71.83783,24.6213],[71.83084,24.62339],[71.82127,24.62017],[71.81604,24.62032],[71.8059,24.62675],[71.80253,24.63113],[71.81039,24.65606],[71.80296,24.67165],[71.79153,24.67734],[71.78027,24.67491],[71.77269,24.67587],[71.76243,24.66863],[71.74774,24.66507],[71.73556,24.66005],[71.70636,24.6613],[71.6971,24.65445],[71.69043,24.6542],[71.67745,24.64631],[71.66448,24.64344],[71.66271,24.64442],[71.65537,24.63919],[71.64724,24.64458],[71.64392,24.64393],[71.63994,24.65128],[71.63875,24.65954],[71.62888,24.65992],[71.62737,24.66427],[71.62474,24.66386],[71.62686,24.66712],[71.62415,24.66972],[71.61926,24.6674],[71.61682,24.67087],[71.6111,24.67299],[71.6076,24.67655],[71.58975,24.66716],[71.58453,24.67005],[71.5777,24.6814],[71.573,24.68342],[71.56021,24.67852],[71.54183,24.67576],[71.5289,24.6847],[71.52134,24.68317],[71.51375,24.67892],[71.50264,24.68214],[71.5,24.68043],[71.49136,24.67926],[71.47917,24.67965],[71.46199,24.66652],[71.44772,24.66839],[71.42901,24.65692],[71.42258,24.64783],[71.39838,24.64078],[71.39623,24.63503],[71.39116,24.63129],[71.38299,24.63366],[71.38129,24.62887],[71.3778,24.62597],[71.37327,24.6277],[71.36934,24.62642],[71.36713,24.6293],[71.35864,24.63075],[71.34817,24.66094],[71.3135,24.64765],[71.30437,24.63528],[71.30455,24.62866],[71.298,24.62612],[71.29882,24.62419],[71.29115,24.61762],[71.28591,24.61683]],[[74.1657,22.41612],[74.17214,22.41875],[74.17523,22.41806],[74.17545,22.40156],[74.17966,22.39684],[74.17916,22.38799],[74.16515,22.39725],[74.16504,22.40587],[74.15737,22.41164],[74.15811,22.41428],[74.16068,22.41363],[74.1657,22.41612]],[[72.9553,20.31051],[72.95277,20.31421],[72.95574,20.31808],[72.95705,20.32372],[72.95935,20.32559],[72.96112,20.33242],[72.9791,20.33224],[72.98239,20.31831],[72.97286,20.30865],[72.97357,20.30556],[72.97084,20.29686],[72.96841,20.29793],[72.96449,20.30464],[72.9553,20.31051]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"27","area_level":"State","area_name":"Maharashtra","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.2856,16.98943],[73.28559,16.98948],[73.28548,16.98951],[73.28543,16.98935],[73.28554,16.98932],[73.2856,16.98943]]],[[[73.12017,17.76655],[73.11994,17.76644],[73.11976,17.76643],[73.11922,17.76599],[73.11948,17.76552],[73.11967,17.76609],[73.11969,17.76616],[73.11976,17.76616],[73.12017,17.76655]]],[[[73.10157,17.80412],[73.10127,17.80471],[73.10112,17.80464],[73.10136,17.80406],[73.10157,17.80412]]],[[[74.44369,22.02241],[74.43164,22.03027],[74.41515,22.02494],[74.38833,22.02075],[74.38406,22.0172],[74.37582,22.00059],[74.36085,21.99031],[74.3507,21.97812],[74.33871,21.97376],[74.31237,21.97353],[74.30089,21.96713],[74.29471,21.95948],[74.29242,21.94681],[74.28952,21.93997],[74.28577,21.93551],[74.28118,21.93311],[74.26248,21.93402],[74.24153,21.93025],[74.19308,21.92597],[74.18184,21.92942],[74.17764,21.93255],[74.16947,21.94347],[74.15743,21.95082],[74.14685,21.95289],[74.14626,21.94644],[74.1403,21.94546],[74.13724,21.94718],[74.13609,21.95018],[74.12822,21.94978],[74.1059,21.94323],[74.08405,21.93373],[74.04789,21.925],[74.03123,21.91609],[74.03122,21.91406],[74.02886,21.91214],[74.02358,21.91092],[74.0039,21.90025],[73.96539,21.88432],[73.92096,21.86103],[73.90782,21.85706],[73.90058,21.85795],[73.88678,21.85466],[73.87744,21.84501],[73.87161,21.84151],[73.86662,21.8409],[73.85524,21.84341],[73.84232,21.844],[73.81944,21.84137],[73.80922,21.83781],[73.79595,21.82473],[73.8043,21.8197],[73.80784,21.80981],[73.82239,21.8113],[73.82743,21.80991],[73.82807,21.80407],[73.83295,21.80095],[73.82696,21.79793],[73.82734,21.79248],[73.83449,21.7921],[73.83816,21.78875],[73.8371,21.78733],[73.82945,21.78594],[73.82957,21.77755],[73.83414,21.7762],[73.8347,21.77405],[73.83361,21.77165],[73.82494,21.76523],[73.82374,21.7626],[73.82486,21.75956],[73.828,21.75647],[73.83366,21.75492],[73.83751,21.74553],[73.84681,21.73728],[73.85327,21.73538],[73.85836,21.7265],[73.86761,21.71834],[73.88061,21.71559],[73.88632,21.70667],[73.88389,21.70523],[73.8903,21.69797],[73.89182,21.69215],[73.89161,21.68106],[73.89459,21.67598],[73.88863,21.66077],[73.88801,21.65325],[73.88378,21.65334],[73.87419,21.64756],[73.86715,21.64604],[73.86004,21.64233],[73.85167,21.64648],[73.84977,21.63913],[73.84594,21.63974],[73.83859,21.63308],[73.83466,21.63435],[73.83603,21.63918],[73.8321,21.63835],[73.83038,21.64237],[73.8248,21.63978],[73.82173,21.64342],[73.81759,21.64197],[73.81426,21.64417],[73.81232,21.64008],[73.80471,21.63952],[73.80158,21.63714],[73.78805,21.6341],[73.78502,21.62901],[73.78051,21.62859],[73.78268,21.62208],[73.78137,21.61859],[73.78772,21.6165],[73.79667,21.60574],[73.80016,21.60368],[73.81209,21.6029],[73.81413,21.60109],[73.81542,21.58888],[73.81748,21.58802],[73.81712,21.58113],[73.82334,21.56439],[73.82228,21.56179],[73.8253,21.55513],[73.8278,21.55444],[73.82723,21.54585],[73.82914,21.54559],[73.83296,21.53706],[73.8349,21.52058],[73.83843,21.51556],[73.84606,21.5094],[73.85356,21.49747],[73.86001,21.49976],[73.86383,21.49817],[73.86436,21.50094],[73.86912,21.50108],[73.87183,21.5048],[73.87264,21.5064],[73.86632,21.50703],[73.8643,21.51257],[73.8686,21.51274],[73.86857,21.51085],[73.87201,21.51073],[73.87706,21.51216],[73.87847,21.5049],[73.87983,21.5052],[73.90532,21.51576],[73.90423,21.52451],[73.91198,21.52273],[73.91682,21.51959],[73.92175,21.52116],[73.92159,21.52508],[73.92739,21.5251],[73.92926,21.5237],[73.93206,21.51226],[73.94593,21.51679],[73.94657,21.51434],[73.95175,21.51269],[73.95212,21.51909],[73.95521,21.52035],[73.95421,21.5241],[73.95595,21.5253],[73.95418,21.5337],[73.95508,21.54083],[73.96035,21.54164],[73.96281,21.52769],[73.9663,21.52207],[73.97132,21.52351],[73.97626,21.52316],[73.97743,21.52168],[73.98227,21.5226],[73.98127,21.52781],[73.97493,21.53424],[73.97419,21.54328],[73.98108,21.54361],[73.98281,21.54073],[73.99319,21.5433],[73.99633,21.5402],[73.99581,21.53871],[73.99742,21.53901],[74.00233,21.54155],[74.00032,21.54565],[74.00345,21.5453],[74.00584,21.55276],[74.0103,21.5492],[74.02044,21.54996],[74.03091,21.54515],[74.03498,21.54553],[74.03501,21.55034],[74.03746,21.55063],[74.03831,21.54579],[74.03644,21.54557],[74.04361,21.54248],[74.04454,21.54816],[74.04748,21.54738],[74.04694,21.54468],[74.04881,21.54469],[74.04935,21.54823],[74.05118,21.54668],[74.05378,21.54751],[74.05403,21.55791],[74.0599,21.5503],[74.06697,21.55028],[74.07319,21.54792],[74.08158,21.54875],[74.07922,21.55442],[74.08504,21.55535],[74.08698,21.55157],[74.09645,21.55124],[74.09731,21.55525],[74.10446,21.55643],[74.10995,21.55624],[74.11319,21.54878],[74.11665,21.55084],[74.11556,21.5533],[74.11755,21.55614],[74.12013,21.55625],[74.12011,21.55139],[74.1298,21.55118],[74.13612,21.54929],[74.13696,21.54686],[74.13894,21.55503],[74.15396,21.55682],[74.15586,21.5683],[74.17586,21.569],[74.17648,21.55762],[74.1751,21.55643],[74.18252,21.54545],[74.18272,21.54232],[74.18761,21.5428],[74.18822,21.54072],[74.19338,21.53938],[74.19321,21.53761],[74.19554,21.53748],[74.19584,21.53206],[74.20008,21.53284],[74.20291,21.53641],[74.20845,21.53677],[74.21585,21.54109],[74.22042,21.5469],[74.22757,21.54879],[74.22901,21.55446],[74.23197,21.55361],[74.23104,21.55095],[74.23494,21.55088],[74.23458,21.5484],[74.23631,21.5484],[74.23622,21.5397],[74.26333,21.5399],[74.26332,21.54261],[74.26641,21.54259],[74.26906,21.55293],[74.27853,21.5536],[74.27672,21.56225],[74.28453,21.5651],[74.2846,21.56643],[74.2956,21.56708],[74.29553,21.56907],[74.30382,21.56547],[74.30324,21.55223],[74.31475,21.55117],[74.32156,21.55231],[74.32261,21.54911],[74.32518,21.55139],[74.33116,21.55242],[74.33233,21.54348],[74.32834,21.54278],[74.32793,21.53944],[74.33122,21.5395],[74.33084,21.53553],[74.32554,21.53607],[74.32525,21.53229],[74.32148,21.52957],[74.3226,21.51748],[74.32079,21.4985],[74.30389,21.49945],[74.30414,21.48811],[74.27734,21.48251],[74.27732,21.47937],[74.25592,21.47678],[74.25356,21.46774],[74.24742,21.46886],[74.23571,21.46777],[74.23435,21.48229],[74.21416,21.48168],[74.20891,21.46704],[74.20928,21.46219],[74.19716,21.46098],[74.19782,21.45875],[74.19612,21.4583],[74.19531,21.46053],[74.18773,21.45819],[74.18641,21.46112],[74.18349,21.46125],[74.18232,21.46925],[74.1735,21.46637],[74.17297,21.46852],[74.16122,21.4689],[74.15805,21.46755],[74.15881,21.46649],[74.15524,21.46295],[74.14766,21.46141],[74.1483,21.458],[74.13584,21.45612],[74.13373,21.46586],[74.12518,21.46665],[74.11996,21.46538],[74.12053,21.46343],[74.11716,21.46208],[74.1165,21.45241],[74.10071,21.44763],[74.09459,21.45573],[74.0723,21.45703],[74.07544,21.4598],[74.07393,21.46127],[74.07495,21.46379],[74.07297,21.46379],[74.07418,21.46563],[74.07276,21.46877],[74.06955,21.47229],[74.06293,21.47455],[74.06143,21.46197],[74.05967,21.4594],[74.05715,21.45939],[74.053,21.45627],[74.0532,21.45469],[74.04994,21.4529],[74.0457,21.44618],[74.04965,21.44021],[74.04768,21.43527],[74.0491,21.42831],[74.04827,21.4234],[74.04462,21.41919],[74.0234,21.41779],[74.01506,21.42128],[74.00895,21.41954],[74.00829,21.42287],[74.00262,21.42141],[74.00087,21.42084],[74.00293,21.41947],[74.00254,21.41746],[73.98698,21.41124],[73.98222,21.4079],[73.97692,21.41193],[73.97803,21.40734],[73.97045,21.39782],[73.95952,21.39695],[73.95947,21.39543],[73.95179,21.39527],[73.94692,21.40493],[73.93893,21.40502],[73.94408,21.39997],[73.94475,21.38112],[73.94918,21.35116],[73.94585,21.34357],[73.94235,21.32563],[73.94217,21.29927],[73.93242,21.29072],[73.92224,21.28964],[73.91897,21.28555],[73.90873,21.27867],[73.9021,21.27757],[73.89743,21.27225],[73.87961,21.26596],[73.86338,21.27266],[73.8597,21.27151],[73.84971,21.27472],[73.82654,21.26772],[73.82507,21.27136],[73.82287,21.27086],[73.82238,21.2611],[73.82749,21.25217],[73.82846,21.23998],[73.81181,21.23123],[73.81074,21.20762],[73.81296,21.20573],[73.81543,21.19735],[73.82605,21.20013],[73.8259,21.18715],[73.82298,21.18514],[73.81987,21.18673],[73.81576,21.17396],[73.8027,21.17492],[73.79356,21.18175],[73.7847,21.18399],[73.78135,21.1711],[73.7736,21.16866],[73.77231,21.16464],[73.75757,21.16743],[73.74019,21.16761],[73.74009,21.17112],[73.72975,21.16538],[73.72852,21.16194],[73.73408,21.15798],[73.73712,21.15325],[73.73742,21.15022],[73.7332,21.14832],[73.73321,21.14235],[73.73181,21.14097],[73.72102,21.14204],[73.71849,21.14157],[73.71897,21.13976],[73.71305,21.14247],[73.71074,21.14543],[73.70659,21.14462],[73.70134,21.14631],[73.70178,21.15369],[73.68164,21.15124],[73.67271,21.15443],[73.66749,21.15463],[73.66424,21.15327],[73.66494,21.1473],[73.65753,21.14585],[73.64336,21.13957],[73.63464,21.14088],[73.62743,21.14335],[73.62994,21.14883],[73.62927,21.15492],[73.61472,21.15578],[73.60779,21.15898],[73.60579,21.17008],[73.60645,21.17876],[73.5996,21.1817],[73.59385,21.17439],[73.58101,21.16945],[73.57742,21.17075],[73.57764,21.16792],[73.58328,21.16101],[73.57688,21.15667],[73.57852,21.15048],[73.59879,21.15663],[73.60077,21.15022],[73.60513,21.14401],[73.61763,21.1427],[73.61191,21.13808],[73.61846,21.11846],[73.63103,21.12328],[73.64638,21.12125],[73.6519,21.1076],[73.6772,21.10856],[73.68895,21.10079],[73.70315,21.11865],[73.70305,21.11233],[73.70549,21.10843],[73.72968,21.09987],[73.73198,21.10443],[73.74376,21.11518],[73.73302,21.09825],[73.72993,21.08243],[73.74516,21.07761],[73.75765,21.072],[73.76021,21.0694],[73.77332,21.07178],[73.7941,21.07144],[73.80774,21.08489],[73.8109,21.05949],[73.79553,21.04452],[73.81018,21.02834],[73.80872,21.02777],[73.81018,21.02834],[73.815,21.0235],[73.81864,21.0221],[73.82932,21.02616],[73.83422,21.02472],[73.83673,21.01918],[73.83534,21.01571],[73.83881,21.00754],[73.85462,20.99436],[73.862,20.99039],[73.86632,20.9899],[73.86902,20.98526],[73.87148,20.98572],[73.89239,20.97947],[73.89641,20.98202],[73.9013,20.9823],[73.90332,20.97219],[73.90846,20.96692],[73.90798,20.95974],[73.89901,20.9603],[73.89231,20.95571],[73.8882,20.93359],[73.90009,20.92078],[73.91754,20.90778],[73.92216,20.89231],[73.92573,20.8885],[73.92557,20.87737],[73.92337,20.8745],[73.9248,20.86648],[73.92264,20.8624],[73.92454,20.85862],[73.92372,20.85138],[73.92512,20.84831],[73.92761,20.84736],[73.92935,20.84236],[73.94033,20.83945],[73.93925,20.83725],[73.94056,20.82847],[73.94404,20.82377],[73.9421,20.8235],[73.93815,20.81422],[73.93193,20.8089],[73.93612,20.8009],[73.93298,20.79187],[73.93473,20.77331],[73.93186,20.76062],[73.93882,20.76034],[73.94131,20.75833],[73.94106,20.75249],[73.93803,20.74922],[73.9416,20.74642],[73.94266,20.74208],[73.93175,20.73282],[73.92956,20.72761],[73.92726,20.73434],[73.91787,20.72956],[73.91733,20.72485],[73.91205,20.72457],[73.90555,20.72681],[73.90475,20.72529],[73.89738,20.72904],[73.89551,20.73166],[73.88754,20.73144],[73.88253,20.73343],[73.88107,20.73116],[73.87442,20.72953],[73.87073,20.72102],[73.86858,20.72003],[73.86677,20.71058],[73.86371,20.70739],[73.86262,20.70324],[73.85969,20.70317],[73.86083,20.70028],[73.85624,20.70039],[73.85517,20.69225],[73.85051,20.69585],[73.83916,20.69802],[73.83544,20.7021],[73.83123,20.70031],[73.82543,20.70072],[73.81185,20.69203],[73.81692,20.67915],[73.81721,20.67204],[73.83062,20.6751],[73.83099,20.67032],[73.83658,20.66427],[73.83909,20.65877],[73.83831,20.65495],[73.83297,20.6486],[73.83274,20.64572],[73.83307,20.63797],[73.83839,20.62046],[73.83237,20.61882],[73.82601,20.61246],[73.81727,20.61357],[73.8077,20.60752],[73.80706,20.60839],[73.7984,20.59868],[73.7971,20.59886],[73.79727,20.6026],[73.79127,20.60527],[73.77799,20.59944],[73.77539,20.60022],[73.76763,20.58655],[73.7636,20.58674],[73.76074,20.57374],[73.75547,20.57084],[73.74621,20.56875],[73.74456,20.56492],[73.74198,20.56884],[73.73401,20.57191],[73.73233,20.57442],[73.72497,20.57386],[73.71547,20.57644],[73.69968,20.57525],[73.69538,20.57837],[73.68489,20.57366],[73.66912,20.56348],[73.66086,20.56247],[73.65798,20.56468],[73.65268,20.56487],[73.65139,20.56856],[73.64502,20.57398],[73.62968,20.58126],[73.62683,20.58548],[73.62731,20.59642],[73.62129,20.61248],[73.62228,20.61424],[73.61686,20.61792],[73.61475,20.62178],[73.61519,20.62482],[73.61274,20.62442],[73.59951,20.6369],[73.59599,20.63611],[73.58914,20.64172],[73.58541,20.64212],[73.58357,20.64478],[73.57716,20.64639],[73.56836,20.65141],[73.56664,20.64842],[73.56185,20.6504],[73.55785,20.64587],[73.5508,20.64856],[73.53827,20.66516],[73.53322,20.66924],[73.53279,20.67274],[73.52158,20.67528],[73.52049,20.67885],[73.5179,20.66743],[73.51133,20.66576],[73.50452,20.67068],[73.50251,20.66227],[73.49757,20.65859],[73.49562,20.65361],[73.48923,20.65573],[73.4878,20.66288],[73.48922,20.6637],[73.48459,20.66558],[73.48439,20.67016],[73.47963,20.67221],[73.47856,20.67666],[73.48216,20.67976],[73.48374,20.67631],[73.48626,20.67516],[73.49027,20.68638],[73.484,20.69156],[73.48367,20.70141],[73.48016,20.70709],[73.47563,20.70986],[73.47465,20.72039],[73.46694,20.72206],[73.45927,20.7166],[73.44918,20.71718],[73.44847,20.71325],[73.44494,20.7099],[73.44078,20.69984],[73.44341,20.69665],[73.44749,20.69555],[73.44845,20.69312],[73.4443,20.6811],[73.43204,20.67726],[73.43469,20.67048],[73.43012,20.66412],[73.41966,20.66068],[73.41245,20.66147],[73.40618,20.6549],[73.3957,20.65269],[73.39224,20.64929],[73.39256,20.6451],[73.39411,20.64078],[73.39812,20.64073],[73.4071,20.63533],[73.40738,20.63263],[73.40996,20.62998],[73.40704,20.62744],[73.40721,20.62397],[73.41087,20.62718],[73.41515,20.62631],[73.4186,20.62773],[73.42112,20.62587],[73.42518,20.61719],[73.42351,20.61421],[73.42562,20.61188],[73.42555,20.6088],[73.42824,20.60651],[73.42646,20.60198],[73.43151,20.60015],[73.42909,20.59788],[73.42958,20.5952],[73.43561,20.5933],[73.44947,20.59404],[73.45908,20.58942],[73.46357,20.58952],[73.47315,20.58464],[73.4792,20.56024],[73.4753,20.54333],[73.4831,20.54104],[73.49117,20.54092],[73.49362,20.53807],[73.49027,20.53389],[73.46987,20.52031],[73.46691,20.50923],[73.46874,20.50585],[73.46767,20.49647],[73.45912,20.49184],[73.45721,20.48835],[73.45625,20.47833],[73.44483,20.47478],[73.43546,20.45584],[73.43296,20.45364],[73.43101,20.45441],[73.4315,20.44971],[73.42856,20.44208],[73.4211,20.43003],[73.42312,20.42216],[73.41854,20.41793],[73.41957,20.41307],[73.41718,20.41309],[73.41402,20.41622],[73.41232,20.41075],[73.40487,20.40998],[73.40592,20.40297],[73.40009,20.40605],[73.39801,20.40383],[73.39592,20.39633],[73.38783,20.39841],[73.37977,20.3935],[73.3801,20.37895],[73.38419,20.37204],[73.3882,20.37386],[73.40086,20.3856],[73.40343,20.38637],[73.40605,20.3847],[73.40644,20.3734],[73.41178,20.3639],[73.4134,20.35673],[73.41366,20.35221],[73.40986,20.35093],[73.4092,20.34922],[73.41329,20.34613],[73.41216,20.34358],[73.41423,20.33612],[73.41718,20.33514],[73.41847,20.33052],[73.41381,20.32572],[73.41617,20.32479],[73.41681,20.32017],[73.41535,20.31742],[73.41873,20.31397],[73.42043,20.30735],[73.42022,20.29736],[73.42394,20.29151],[73.4277,20.28012],[73.42319,20.27477],[73.41919,20.27555],[73.4179,20.27332],[73.41503,20.27488],[73.41285,20.27095],[73.41311,20.26921],[73.41581,20.26838],[73.41494,20.26631],[73.41215,20.26551],[73.41552,20.26195],[73.4138,20.25965],[73.41612,20.25868],[73.4113,20.25322],[73.41533,20.25071],[73.41252,20.24449],[73.41741,20.24273],[73.41044,20.23851],[73.41447,20.23594],[73.41191,20.23207],[73.4136,20.22434],[73.4164,20.22422],[73.41784,20.22235],[73.41714,20.21457],[73.41557,20.2127],[73.42011,20.211],[73.42121,20.20659],[73.41651,20.19829],[73.40588,20.19549],[73.39448,20.19864],[73.39121,20.19369],[73.38867,20.19277],[73.38575,20.19615],[73.38638,20.20939],[73.3825,20.21173],[73.37814,20.21095],[73.37456,20.2047],[73.36624,20.20391],[73.36653,20.19636],[73.36475,20.19558],[73.3536,20.20036],[73.35347,20.20282],[73.36126,20.20765],[73.35925,20.21151],[73.3565,20.213],[73.34639,20.20931],[73.34384,20.19938],[73.33647,20.20017],[73.32444,20.20619],[73.31405,20.20214],[73.30373,20.20919],[73.29803,20.20859],[73.28901,20.19817],[73.28305,20.19805],[73.28118,20.19001],[73.28157,20.16686],[73.27923,20.15014],[73.26515,20.14026],[73.25741,20.13765],[73.2539,20.13796],[73.2547,20.12693],[73.25336,20.12566],[73.24925,20.12233],[73.24673,20.12652],[73.24323,20.12812],[73.22929,20.12263],[73.22704,20.12296],[73.22418,20.12496],[73.22673,20.13293],[73.22568,20.14015],[73.21793,20.13665],[73.21701,20.12861],[73.21247,20.12155],[73.20843,20.12006],[73.2139,20.11899],[73.2097,20.08533],[73.20475,20.07996],[73.19816,20.07785],[73.19691,20.07594],[73.18853,20.0781],[73.18925,20.07325],[73.18615,20.05917],[73.1921,20.05471],[73.19092,20.04959],[73.18332,20.05028],[73.17822,20.04702],[73.17663,20.05195],[73.17071,20.05204],[73.16776,20.05577],[73.16478,20.05562],[73.1635,20.06055],[73.15644,20.06352],[73.15716,20.06587],[73.15579,20.06588],[73.15447,20.07042],[73.15185,20.07256],[73.15464,20.07576],[73.14919,20.079],[73.14869,20.07485],[73.14669,20.07386],[73.14309,20.07643],[73.14247,20.0803],[73.13707,20.07913],[73.13639,20.08637],[73.13336,20.08618],[73.13071,20.08175],[73.1255,20.0835],[73.1241,20.07797],[73.11905,20.07866],[73.11893,20.07509],[73.11434,20.07624],[73.11192,20.07427],[73.11198,20.07117],[73.10846,20.0753],[73.10606,20.07417],[73.10604,20.08754],[73.10226,20.09124],[73.08355,20.09117],[73.08096,20.09233],[73.08059,20.09495],[73.06817,20.09679],[73.06369,20.09959],[73.05519,20.09987],[73.05206,20.08529],[73.05062,20.06374],[73.04738,20.0657],[73.0402,20.06643],[73.03048,20.07966],[73.02336,20.08472],[73.02183,20.09],[73.0137,20.09648],[73.01043,20.10578],[73.00074,20.1123],[72.99961,20.12302],[73.01262,20.12894],[73.01094,20.1346],[73.00891,20.13393],[73.005,20.13588],[73.00329,20.14034],[72.9975,20.14276],[72.99423,20.13744],[72.99535,20.13231],[72.99182,20.1177],[72.9796,20.11569],[72.97736,20.11278],[72.9705,20.11561],[72.96852,20.12366],[72.96358,20.12604],[72.96127,20.13067],[72.96158,20.1371],[72.9744,20.16025],[72.97372,20.17383],[72.97688,20.17865],[72.97676,20.1809],[72.97514,20.18166],[72.96893,20.18342],[72.96303,20.18221],[72.96194,20.18346],[72.95985,20.20122],[72.96198,20.21005],[72.94951,20.21585],[72.94144,20.21701],[72.93445,20.21595],[72.92228,20.22083],[72.92123,20.22271],[72.90808,20.22342],[72.90177,20.22505],[72.89942,20.22784],[72.89306,20.22584],[72.88961,20.22024],[72.87912,20.22691],[72.87518,20.22601],[72.8705,20.22832],[72.85874,20.22474],[72.86118,20.20761],[72.83903,20.20913],[72.83568,20.20507],[72.83607,20.20341],[72.83345,20.20247],[72.83089,20.19677],[72.83695,20.18846],[72.83255,20.18984],[72.8297,20.18805],[72.82526,20.18899],[72.81604,20.18444],[72.818,20.1826],[72.82009,20.17542],[72.81963,20.16477],[72.81645,20.16034],[72.81632,20.15669],[72.82237,20.15498],[72.82447,20.14202],[72.81888,20.14467],[72.81516,20.14469],[72.81069,20.15159],[72.80605,20.15311],[72.80585,20.15447],[72.80016,20.1501],[72.79927,20.15156],[72.79723,20.14967],[72.78862,20.14932],[72.78527,20.14512],[72.78743,20.14394],[72.78758,20.13872],[72.79221,20.13282],[72.79411,20.12334],[72.78531,20.12699],[72.78199,20.12999],[72.77481,20.13215],[72.77346,20.13062],[72.7683,20.13159],[72.76269,20.12982],[72.76057,20.13122],[72.74931,20.13137],[72.74174,20.13459],[72.73767,20.13434],[72.73714,20.12721],[72.74407,20.12413],[72.74659,20.11614],[72.74501,20.11469],[72.74493,20.1177],[72.74309,20.11616],[72.73877,20.11768],[72.73594,20.10663],[72.72906,20.09315],[72.72746,20.08521],[72.72572,20.08404],[72.72601,20.0799],[72.71047,20.07819],[72.70788,20.07003],[72.7151,20.03712],[72.71521,20.02897],[72.71276,20.02249],[72.71768,20.01413],[72.72106,19.9964],[72.72142,19.98894],[72.71664,19.97318],[72.72198,19.97062],[72.72124,19.96898],[72.71519,19.9705],[72.7132,19.96769],[72.70559,19.96658],[72.70083,19.96171],[72.68945,19.95736],[72.68156,19.94224],[72.67506,19.93769],[72.66422,19.93349],[72.66437,19.92971],[72.66868,19.92796],[72.67391,19.92216],[72.67591,19.92378],[72.6788,19.92074],[72.67668,19.91925],[72.67806,19.91703],[72.67675,19.91643],[72.6747,19.90339],[72.67864,19.90032],[72.68062,19.90064],[72.67937,19.89648],[72.68203,19.88952],[72.67906,19.86981],[72.68027,19.8649],[72.67373,19.86443],[72.67157,19.86659],[72.65549,19.86191],[72.65091,19.86492],[72.65049,19.87],[72.64806,19.87005],[72.64593,19.86445],[72.64551,19.85707],[72.64716,19.84737],[72.64516,19.84451],[72.64199,19.84398],[72.64383,19.84149],[72.64322,19.8401],[72.6463,19.83873],[72.64782,19.83323],[72.6514,19.83163],[72.64962,19.82957],[72.65294,19.82652],[72.65128,19.82325],[72.65353,19.82085],[72.65116,19.81691],[72.65398,19.81094],[72.65783,19.8111],[72.65693,19.80835],[72.66768,19.80132],[72.66866,19.80456],[72.6657,19.81387],[72.67132,19.81364],[72.67759,19.80519],[72.68285,19.79349],[72.68458,19.76847],[72.68294,19.76054],[72.68209,19.75971],[72.67587,19.76503],[72.67185,19.76148],[72.67792,19.75007],[72.67408,19.74161],[72.67532,19.72688],[72.67257,19.72255],[72.67552,19.71571],[72.68046,19.71377],[72.68435,19.71457],[72.68519,19.71762],[72.69004,19.71696],[72.69239,19.71946],[72.69707,19.71924],[72.70263,19.71369],[72.70814,19.70381],[72.70771,19.69307],[72.70497,19.68848],[72.70385,19.68817],[72.70374,19.6908],[72.701,19.68484],[72.70281,19.67059],[72.69913,19.66148],[72.70571,19.64957],[72.70733,19.63833],[72.71071,19.63926],[72.719,19.62999],[72.71792,19.62635],[72.7112,19.62593],[72.7103,19.62271],[72.7183,19.62055],[72.72288,19.61758],[72.72477,19.61263],[72.72302,19.61108],[72.72487,19.6111],[72.72534,19.60957],[72.72222,19.60246],[72.71973,19.60301],[72.71823,19.59776],[72.71399,19.59688],[72.70891,19.59876],[72.71146,19.59291],[72.7118,19.58515],[72.71472,19.58161],[72.71012,19.57168],[72.7127,19.56721],[72.71759,19.56457],[72.71553,19.56055],[72.71697,19.55715],[72.71343,19.55392],[72.71598,19.55202],[72.71109,19.54078],[72.71481,19.53654],[72.72013,19.53728],[72.72183,19.53333],[72.72102,19.52456],[72.72238,19.5234],[72.71606,19.51996],[72.72035,19.51171],[72.71973,19.50077],[72.74413,19.49938],[72.74772,19.49654],[72.74729,19.49216],[72.74955,19.48927],[72.74871,19.47065],[72.74345,19.46383],[72.74314,19.45838],[72.74817,19.44783],[72.75363,19.43005],[72.75766,19.39763],[72.75993,19.39271],[72.7541,19.38456],[72.75256,19.37875],[72.74655,19.37955],[72.74469,19.37804],[72.74796,19.37012],[72.75123,19.37026],[72.75661,19.36407],[72.75946,19.36933],[72.76689,19.36508],[72.76844,19.36333],[72.76568,19.36164],[72.79278,19.33375],[72.80019,19.32385],[72.80638,19.32372],[72.81184,19.32782],[72.82046,19.32906],[72.8271,19.33572],[72.82995,19.33462],[72.83023,19.32731],[72.81572,19.31448],[72.80034,19.31335],[72.79503,19.31503],[72.79285,19.31044],[72.78693,19.30768],[72.78387,19.30171],[72.7851,19.29901],[72.78389,19.28161],[72.78283,19.27939],[72.77866,19.27892],[72.78103,19.27012],[72.78322,19.26938],[72.78413,19.26654],[72.78548,19.26677],[72.78384,19.26507],[72.78127,19.24653],[72.77873,19.23963],[72.7805,19.23283],[72.77558,19.22719],[72.77683,19.22166],[72.78143,19.21809],[72.78,19.20857],[72.783,19.20889],[72.7862,19.20449],[72.78509,19.20183],[72.78253,19.20133],[72.78141,19.19543],[72.78222,19.19408],[72.78465,19.19582],[72.78971,19.19475],[72.7926,19.19701],[72.79548,19.19467],[72.79486,19.1747],[72.78579,19.16747],[72.78255,19.16904],[72.78164,19.16788],[72.78181,19.16569],[72.78447,19.16354],[72.78196,19.15929],[72.78328,19.15645],[72.78791,19.15326],[72.78969,19.14733],[72.78815,19.14349],[72.78908,19.13656],[72.78607,19.13352],[72.7941,19.13267],[72.79699,19.13449],[72.79553,19.14139],[72.80051,19.13955],[72.80685,19.15145],[72.81163,19.14523],[72.80608,19.14665],[72.80408,19.14145],[72.81731,19.12699],[72.81931,19.12289],[72.82112,19.12239],[72.82056,19.12057],[72.82576,19.12007],[72.8287,19.11662],[72.82199,19.1192],[72.82118,19.11742],[72.82753,19.09435],[72.82589,19.08473],[72.82816,19.0835],[72.83322,19.08483],[72.82798,19.07739],[72.82516,19.07796],[72.82391,19.0807],[72.82299,19.08005],[72.82189,19.07386],[72.82342,19.06532],[72.82194,19.06038],[72.82445,19.05584],[72.81701,19.04147],[72.8199,19.04096],[72.82708,19.0459],[72.83178,19.05325],[72.83781,19.05194],[72.83863,19.04652],[72.8385,19.03305],[72.8326,19.02368],[72.82647,19.01841],[72.82303,19.0174],[72.82032,19.01933],[72.81746,19.02556],[72.81639,19.0098],[72.81111,19.00152],[72.81304,18.99232],[72.8105,18.98755],[72.81294,18.98776],[72.81376,18.98296],[72.81154,18.97891],[72.80639,18.97704],[72.80406,18.97367],[72.79918,18.95725],[72.7925,18.94991],[72.79332,18.93941],[72.79808,18.94753],[72.8077,18.95513],[72.81218,18.95527],[72.82096,18.94692],[72.82361,18.94125],[72.82357,18.93324],[72.81995,18.92787],[72.82587,18.92577],[72.82559,18.91945],[72.81522,18.90809],[72.81059,18.91097],[72.8051,18.91015],[72.80354,18.90618],[72.80356,18.89881],[72.80874,18.89341],[72.81195,18.89513],[72.81699,18.90125],[72.81699,18.90691],[72.82107,18.91081],[72.82563,18.91254],[72.828,18.91175],[72.82794,18.91471],[72.83156,18.91705],[72.83311,18.92113],[72.83798,18.92564],[72.83493,18.92601],[72.83559,18.92844],[72.84337,18.93029],[72.84847,18.95966],[72.84712,18.96042],[72.84879,18.96105],[72.84612,18.96303],[72.84917,18.96328],[72.84604,18.96481],[72.85007,18.96651],[72.85049,18.96801],[72.84793,18.96953],[72.84906,18.97352],[72.85339,18.97259],[72.85372,18.97368],[72.85054,18.97416],[72.85028,18.97565],[72.8552,18.97596],[72.84885,18.97775],[72.85485,18.97703],[72.8502,18.98024],[72.85682,18.97846],[72.86054,18.98147],[72.85432,18.9972],[72.86014,18.99922],[72.86205,19.00319],[72.86097,19.00444],[72.86248,19.01006],[72.8712,19.0129],[72.87824,19.02194],[72.88523,19.01524],[72.88271,18.99913],[72.87972,18.99296],[72.8804,18.98842],[72.8853,18.98148],[72.89091,18.979],[72.90233,18.97891],[72.92217,18.98415],[72.94711,18.98685],[72.94821,18.96746],[72.95065,18.95951],[72.95493,18.95724],[72.95917,18.95716],[72.9514,18.9518],[72.9456,18.94997],[72.94081,18.94449],[72.94079,18.94155],[72.94448,18.93555],[72.93866,18.92867],[72.94186,18.92309],[72.93935,18.92158],[72.93706,18.90933],[72.92777,18.91443],[72.92101,18.91364],[72.91542,18.90759],[72.90407,18.90444],[72.90182,18.88376],[72.90396,18.8808],[72.91384,18.87581],[72.91549,18.86903],[72.91988,18.86522],[72.91927,18.86307],[72.91599,18.86151],[72.91835,18.85541],[72.9257,18.84857],[72.93484,18.84405],[72.94248,18.84237],[72.95034,18.8449],[72.95512,18.84179],[72.96099,18.84104],[72.96519,18.8426],[72.9692,18.84808],[72.96942,18.85467],[72.97341,18.8628],[72.97602,18.86473],[72.98384,18.86545],[72.99368,18.87227],[72.99539,18.87151],[72.98944,18.86693],[72.98135,18.85675],[72.97509,18.8395],[72.97746,18.83038],[72.98271,18.82341],[72.98493,18.81499],[72.9874,18.81256],[72.99929,18.8092],[72.99891,18.80282],[72.99783,18.8026],[72.98769,18.80476],[72.97846,18.80877],[72.97827,18.8076],[72.994,18.78711],[72.99667,18.77954],[72.99594,18.77302],[72.99279,18.77954],[72.98773,18.78336],[72.96502,18.79506],[72.95869,18.80037],[72.95713,18.79923],[72.95698,18.80301],[72.9495,18.81542],[72.94795,18.81623],[72.94611,18.81273],[72.94466,18.81739],[72.9471,18.8174],[72.94661,18.82481],[72.94515,18.82638],[72.93643,18.82169],[72.93701,18.82411],[72.92739,18.82089],[72.92488,18.81796],[72.92399,18.81266],[72.91555,18.80633],[72.91449,18.80032],[72.90856,18.80014],[72.89904,18.8059],[72.89633,18.80192],[72.88955,18.80053],[72.88642,18.80499],[72.87437,18.80457],[72.87238,18.8057],[72.87165,18.81007],[72.86921,18.81079],[72.86581,18.80762],[72.86524,18.8014],[72.8608,18.79176],[72.86168,18.77956],[72.85865,18.7707],[72.8643,18.75847],[72.86043,18.74223],[72.86254,18.73346],[72.86225,18.72078],[72.8578,18.7062],[72.85105,18.69883],[72.85402,18.69602],[72.85409,18.69336],[72.85717,18.6913],[72.85919,18.68419],[72.8619,18.66435],[72.86071,18.64943],[72.86211,18.64587],[72.86406,18.64543],[72.86272,18.63836],[72.86015,18.63452],[72.86125,18.6297],[72.8644,18.63257],[72.87014,18.63316],[72.87814,18.63081],[72.87846,18.62954],[72.87527,18.6298],[72.87405,18.62803],[72.87557,18.6224],[72.87813,18.62466],[72.87796,18.61795],[72.88016,18.61545],[72.88095,18.61845],[72.88353,18.61712],[72.89151,18.60622],[72.90155,18.58362],[72.90965,18.57341],[72.92116,18.55055],[72.92174,18.54718],[72.90699,18.54103],[72.90532,18.53856],[72.91162,18.51868],[72.91109,18.50256],[72.90565,18.50269],[72.90353,18.49336],[72.90189,18.49266],[72.90189,18.47577],[72.89373,18.47179],[72.89564,18.46373],[72.89482,18.45752],[72.89728,18.45822],[72.90176,18.45144],[72.9071,18.43726],[72.90751,18.43221],[72.90473,18.42918],[72.90976,18.42231],[72.90617,18.41133],[72.90704,18.40299],[72.90935,18.40376],[72.90956,18.39941],[72.91353,18.39764],[72.91326,18.39401],[72.91898,18.39451],[72.92293,18.39308],[72.92595,18.38344],[72.92508,18.37737],[72.91476,18.37087],[72.91305,18.36808],[72.91192,18.36545],[72.91298,18.36163],[72.91569,18.35901],[72.91522,18.35514],[72.91883,18.34861],[72.92209,18.34748],[72.92124,18.34999],[72.92411,18.35108],[72.9276,18.34973],[72.93353,18.35163],[72.9366,18.34955],[72.93515,18.34416],[72.94231,18.34439],[72.946,18.34137],[72.94566,18.33907],[72.94908,18.33878],[72.95387,18.33496],[72.95632,18.32578],[72.96,18.32097],[72.95591,18.31586],[72.96045,18.31184],[72.96419,18.31449],[72.96841,18.30941],[72.97007,18.29985],[72.97306,18.30098],[72.97572,18.29797],[72.97939,18.29788],[72.98648,18.28228],[72.98541,18.27849],[72.98065,18.27665],[72.98115,18.27053],[72.97302,18.26616],[72.97146,18.27309],[72.96431,18.28017],[72.95447,18.27796],[72.9509,18.27998],[72.95091,18.28387],[72.94831,18.285],[72.93805,18.28372],[72.93588,18.28047],[72.9378,18.27518],[72.93528,18.27257],[72.94019,18.26407],[72.9394,18.26034],[72.94313,18.24733],[72.94054,18.24296],[72.94256,18.23408],[72.93826,18.23272],[72.93783,18.2303],[72.93501,18.22861],[72.93387,18.22399],[72.93172,18.2234],[72.93178,18.22042],[72.93873,18.21732],[72.93839,18.21894],[72.94241,18.22046],[72.94508,18.22407],[72.9496,18.22239],[72.95162,18.21972],[72.9564,18.21964],[72.96196,18.21341],[72.96499,18.21224],[72.9682,18.20664],[72.98093,18.19629],[72.98062,18.1872],[72.98866,18.1579],[72.98669,18.15732],[72.98134,18.13703],[72.97103,18.13289],[72.97297,18.12506],[72.97676,18.12039],[72.9774,18.11512],[72.97919,18.11436],[72.97979,18.10807],[72.98382,18.10342],[72.98791,18.10262],[72.99683,18.08421],[72.99916,18.06955],[72.99479,18.06763],[72.99143,18.06155],[72.99038,18.05577],[72.99542,18.05013],[72.9981,18.05076],[73.00086,18.05502],[73.00606,18.05206],[73.00845,18.04986],[73.01444,18.0336],[73.01893,18.03161],[73.02129,18.02745],[73.01014,18.02429],[73.00521,18.02119],[73.00513,18.01967],[73.0085,18.01066],[73.01249,18.01038],[73.01528,18.00767],[73.02111,17.99332],[73.01816,17.99285],[73.01939,17.98984],[73.02728,17.98816],[73.03066,17.9898],[73.04026,17.97844],[73.03824,17.9747],[73.03026,17.96803],[73.03133,17.95541],[73.0288,17.95082],[73.03081,17.94281],[73.03178,17.94105],[73.03582,17.94006],[73.03857,17.93524],[73.04228,17.93363],[73.04643,17.93451],[73.05088,17.93075],[73.05262,17.91055],[73.0547,17.90962],[73.05326,17.90674],[73.05121,17.90634],[73.05473,17.89965],[73.06145,17.89211],[73.06441,17.89024],[73.06796,17.89132],[73.06682,17.88682],[73.07019,17.88212],[73.075,17.88253],[73.07637,17.87849],[73.07557,17.87546],[73.082,17.86687],[73.08149,17.86113],[73.08517,17.85685],[73.08462,17.85326],[73.08729,17.84773],[73.08871,17.83519],[73.09627,17.82585],[73.09434,17.82519],[73.0937,17.81981],[73.09211,17.81661],[73.08975,17.81571],[73.08936,17.81234],[73.09404,17.81171],[73.10315,17.80298],[73.10659,17.79302],[73.11081,17.79019],[73.1102,17.78582],[73.1179,17.76682],[73.12122,17.7667],[73.11867,17.76331],[73.11934,17.75966],[73.12288,17.75327],[73.12589,17.75285],[73.124,17.74879],[73.12516,17.74182],[73.1284,17.73939],[73.12887,17.73136],[73.13153,17.72954],[73.1331,17.72442],[73.13515,17.70865],[73.13264,17.70582],[73.12932,17.70613],[73.12512,17.70153],[73.12532,17.69944],[73.11778,17.69843],[73.11435,17.69517],[73.11428,17.68573],[73.11525,17.68079],[73.1177,17.67902],[73.11909,17.67197],[73.12121,17.67009],[73.12091,17.66746],[73.12485,17.66449],[73.12745,17.65805],[73.1317,17.65622],[73.1348,17.64761],[73.13525,17.64537],[73.13028,17.64291],[73.12755,17.63803],[73.13201,17.63378],[73.13208,17.62988],[73.13512,17.62823],[73.13353,17.62814],[73.13375,17.62519],[73.13832,17.6096],[73.14821,17.59869],[73.15217,17.59971],[73.15273,17.59871],[73.15018,17.57413],[73.14,17.5702],[73.13701,17.56441],[73.1371,17.55589],[73.14114,17.54674],[73.151,17.53767],[73.15383,17.5282],[73.15742,17.52742],[73.16104,17.52874],[73.16615,17.52449],[73.16947,17.51885],[73.17393,17.51691],[73.19218,17.46996],[73.19231,17.46386],[73.1845,17.45571],[73.18581,17.4492],[73.18453,17.44314],[73.18629,17.44135],[73.19698,17.44196],[73.19865,17.43909],[73.19442,17.43688],[73.19245,17.43305],[73.18934,17.43338],[73.186,17.43021],[73.18459,17.41751],[73.1861,17.41501],[73.18331,17.41256],[73.17849,17.41137],[73.17675,17.40781],[73.16885,17.40971],[73.1677,17.40305],[73.17521,17.38963],[73.18333,17.38408],[73.19109,17.38419],[73.19281,17.38762],[73.19642,17.38566],[73.19735,17.38768],[73.20138,17.38736],[73.20047,17.38908],[73.20205,17.38974],[73.20558,17.38733],[73.21067,17.3763],[73.20896,17.37188],[73.21359,17.37016],[73.21132,17.36073],[73.21519,17.35507],[73.2191,17.35307],[73.21462,17.34955],[73.21481,17.34631],[73.22611,17.33434],[73.22945,17.33516],[73.22926,17.33398],[73.2199,17.3331],[73.2189,17.32855],[73.22461,17.3223],[73.23876,17.31704],[73.23794,17.31425],[73.23928,17.30987],[73.23496,17.30369],[73.23663,17.29874],[73.23556,17.28811],[73.25541,17.29078],[73.25877,17.28603],[73.2576,17.27977],[73.24944,17.27993],[73.24783,17.28235],[73.24623,17.28313],[73.24527,17.28179],[73.2406,17.28535],[73.23316,17.28577],[73.22925,17.28248],[73.2251,17.29563],[73.22614,17.30185],[73.22265,17.30633],[73.21151,17.30701],[73.21167,17.30337],[73.20542,17.29916],[73.2015,17.30113],[73.1969,17.3068],[73.19586,17.30497],[73.19246,17.30423],[73.19357,17.30111],[73.19064,17.29931],[73.19519,17.29741],[73.19893,17.2902],[73.20299,17.28922],[73.20353,17.28554],[73.20161,17.28201],[73.20561,17.26957],[73.21004,17.27084],[73.21131,17.27351],[73.21022,17.27804],[73.21777,17.27049],[73.21978,17.27035],[73.22262,17.2654],[73.22124,17.26068],[73.22272,17.2558],[73.22666,17.25648],[73.2285,17.25106],[73.2241,17.24842],[73.23126,17.24673],[73.23467,17.23787],[73.23254,17.23491],[73.23543,17.22762],[73.24155,17.22759],[73.24469,17.22239],[73.24664,17.20431],[73.24253,17.19816],[73.2393,17.20063],[73.23328,17.20152],[73.23163,17.19914],[73.2364,17.19389],[73.23947,17.19433],[73.24493,17.19055],[73.24873,17.1922],[73.25345,17.18831],[73.25896,17.17316],[73.26041,17.16317],[73.26515,17.15513],[73.2682,17.1323],[73.27231,17.12122],[73.27249,17.11885],[73.26891,17.11442],[73.26765,17.11474],[73.26916,17.11273],[73.27778,17.11342],[73.28204,17.10857],[73.28631,17.08447],[73.28348,17.07883],[73.28774,17.07803],[73.28905,17.07441],[73.28875,17.06267],[73.28671,17.05425],[73.27914,17.03756],[73.27666,17.03634],[73.27592,17.03937],[73.27443,17.03965],[73.2677,17.03839],[73.27007,17.04219],[73.26887,17.04486],[73.26519,17.04771],[73.25821,17.04877],[73.25658,17.0434],[73.25868,17.03176],[73.25537,17.02771],[73.25864,17.01986],[73.26151,17.02164],[73.26569,17.02093],[73.26774,17.02499],[73.27209,17.02416],[73.273,17.0224],[73.27604,17.02345],[73.28405,17.0111],[73.28444,17.00383],[73.28181,16.9985],[73.27915,16.9976],[73.28035,16.99895],[73.27696,17.0015],[73.27402,16.99772],[73.27024,16.99997],[73.26781,16.99747],[73.26726,16.99095],[73.27124,16.98509],[73.2743,16.98369],[73.27618,16.98481],[73.27846,16.99063],[73.27706,16.99211],[73.27928,16.9934],[73.29972,16.98188],[73.29542,16.97893],[73.2965,16.96728],[73.2947,16.96684],[73.29308,16.962],[73.2925,16.95501],[73.2885,16.95175],[73.28462,16.95309],[73.28318,16.95037],[73.28791,16.93691],[73.28754,16.93126],[73.2833,16.9308],[73.28363,16.92469],[73.28725,16.92046],[73.28758,16.91641],[73.28609,16.91481],[73.28729,16.91339],[73.2849,16.91146],[73.28527,16.90818],[73.28073,16.90475],[73.28165,16.89809],[73.27858,16.89304],[73.28795,16.89409],[73.28755,16.89729],[73.29387,16.89844],[73.29831,16.89714],[73.303,16.89141],[73.29636,16.88822],[73.28743,16.8809],[73.2876,16.87492],[73.2938,16.8705],[73.2958,16.86036],[73.29558,16.85792],[73.29495,16.85983],[73.28939,16.85837],[73.29354,16.85603],[73.29389,16.85343],[73.29159,16.85221],[73.29373,16.85209],[73.29419,16.85017],[73.2933,16.84756],[73.28914,16.84429],[73.29194,16.84424],[73.29505,16.83913],[73.29391,16.83668],[73.29766,16.824],[73.29557,16.8209],[73.29635,16.81638],[73.30311,16.80948],[73.31619,16.8061],[73.31914,16.79534],[73.31031,16.7845],[73.30795,16.77135],[73.30444,16.76587],[73.30526,16.7508],[73.3071,16.74795],[73.30555,16.74376],[73.30539,16.73028],[73.30981,16.72639],[73.30995,16.72259],[73.312,16.72238],[73.31255,16.72072],[73.31231,16.71505],[73.31641,16.71283],[73.31696,16.70861],[73.31921,16.70639],[73.31805,16.701],[73.31911,16.69774],[73.32972,16.68739],[73.33305,16.65057],[73.33229,16.64785],[73.32823,16.64569],[73.3262,16.64746],[73.32378,16.64678],[73.32206,16.6442],[73.32302,16.63862],[73.32434,16.63609],[73.32745,16.63711],[73.32925,16.63816],[73.32944,16.64179],[73.33572,16.64047],[73.33911,16.63781],[73.34058,16.63013],[73.34222,16.6293],[73.33992,16.62627],[73.33797,16.62761],[73.33401,16.62629],[73.32971,16.62137],[73.33045,16.61986],[73.33354,16.61863],[73.33745,16.6236],[73.34051,16.62097],[73.3457,16.62073],[73.35215,16.62489],[73.35519,16.61895],[73.35232,16.61593],[73.35413,16.6144],[73.35193,16.6103],[73.35345,16.60776],[73.3478,16.61258],[73.3394,16.60468],[73.33527,16.60535],[73.33526,16.60667],[73.33074,16.60863],[73.32712,16.60748],[73.32546,16.60508],[73.32069,16.60687],[73.31742,16.60167],[73.31994,16.59853],[73.31865,16.59302],[73.32218,16.58974],[73.32191,16.584],[73.32335,16.58228],[73.33333,16.57677],[73.33562,16.57975],[73.34024,16.58057],[73.34486,16.57697],[73.34525,16.57258],[73.34467,16.56965],[73.33213,16.56574],[73.32736,16.5659],[73.32782,16.56292],[73.33315,16.55736],[73.32604,16.55696],[73.32492,16.55266],[73.31939,16.55341],[73.31903,16.54964],[73.31612,16.54471],[73.31498,16.54493],[73.31492,16.54158],[73.31087,16.54144],[73.31398,16.53886],[73.31259,16.53532],[73.3169,16.52983],[73.31674,16.52313],[73.31906,16.51889],[73.31695,16.51418],[73.32164,16.51637],[73.32439,16.51462],[73.33317,16.48583],[73.33601,16.48322],[73.33672,16.48019],[73.33982,16.47891],[73.34335,16.47416],[73.34274,16.46841],[73.34549,16.46184],[73.3469,16.45037],[73.35082,16.44389],[73.35867,16.44166],[73.35721,16.43914],[73.35953,16.4285],[73.35769,16.42502],[73.36026,16.42397],[73.36252,16.41808],[73.36611,16.4148],[73.36682,16.40849],[73.36547,16.4045],[73.36796,16.40075],[73.36563,16.3974],[73.37128,16.38956],[73.36851,16.37992],[73.36941,16.37929],[73.36688,16.37789],[73.36739,16.37516],[73.37011,16.37551],[73.37223,16.371],[73.36892,16.36293],[73.37372,16.35995],[73.3783,16.36146],[73.38025,16.36122],[73.38276,16.35799],[73.38668,16.35842],[73.39037,16.34667],[73.38763,16.34325],[73.38613,16.33646],[73.39325,16.33193],[73.39612,16.31935],[73.3945,16.31756],[73.3942,16.31318],[73.39856,16.30789],[73.39986,16.29981],[73.40304,16.29978],[73.40397,16.29826],[73.40682,16.28555],[73.41307,16.26876],[73.41205,16.26753],[73.41466,16.25819],[73.41554,16.25716],[73.41885,16.25808],[73.41529,16.25462],[73.41729,16.24529],[73.41942,16.24329],[73.42326,16.23092],[73.42495,16.22319],[73.42397,16.21823],[73.42672,16.21579],[73.42781,16.20896],[73.42706,16.20365],[73.42987,16.1989],[73.43539,16.19976],[73.43964,16.19133],[73.45782,16.11759],[73.45753,16.10619],[73.46033,16.09665],[73.4586,16.09096],[73.4603,16.0886],[73.46241,16.08931],[73.46492,16.08694],[73.45817,16.08603],[73.45908,16.08365],[73.45736,16.07989],[73.46343,16.07943],[73.46475,16.07616],[73.46453,16.07074],[73.46205,16.06935],[73.46432,16.06933],[73.4649,16.06698],[73.46175,16.06373],[73.45837,16.063],[73.4569,16.06428],[73.45476,16.06194],[73.45687,16.06034],[73.45682,16.05823],[73.45514,16.05861],[73.45721,16.0566],[73.45606,16.05595],[73.45643,16.05268],[73.46007,16.05265],[73.46046,16.05539],[73.46722,16.05373],[73.46911,16.05016],[73.46654,16.04603],[73.47715,16.04141],[73.48436,16.03371],[73.49094,16.01113],[73.48928,15.98849],[73.50182,15.9668],[73.50356,15.96475],[73.50476,15.96531],[73.50244,15.95608],[73.50572,15.94716],[73.5087,15.94597],[73.51011,15.94046],[73.51256,15.9382],[73.51419,15.94059],[73.51683,15.93985],[73.51869,15.94134],[73.5193,15.93855],[73.5308,15.93232],[73.53352,15.9333],[73.53566,15.93916],[73.53572,15.93786],[73.54008,15.93673],[73.54843,15.92779],[73.55478,15.92613],[73.56709,15.91942],[73.56925,15.91295],[73.58119,15.91026],[73.58629,15.91079],[73.58872,15.90803],[73.59179,15.90134],[73.59554,15.89745],[73.59506,15.89361],[73.59898,15.88953],[73.59841,15.887],[73.6117,15.86173],[73.61356,15.85477],[73.61588,15.853],[73.61796,15.85622],[73.62309,15.85545],[73.62822,15.84804],[73.6287,15.84365],[73.63351,15.83608],[73.63354,15.83145],[73.63939,15.82051],[73.63907,15.81816],[73.63603,15.81707],[73.63605,15.81544],[73.64287,15.81126],[73.64541,15.80562],[73.64841,15.80449],[73.65626,15.79576],[73.65416,15.79153],[73.65481,15.78808],[73.6621,15.76666],[73.66435,15.7531],[73.65761,15.74707],[73.65419,15.74815],[73.65371,15.74523],[73.64986,15.7449],[73.65311,15.74437],[73.65533,15.74099],[73.65863,15.742],[73.6608,15.73998],[73.66373,15.74049],[73.66778,15.73557],[73.67091,15.73492],[73.67239,15.73018],[73.67688,15.72589],[73.67847,15.72896],[73.68755,15.72988],[73.69253,15.72822],[73.69362,15.72415],[73.69549,15.72402],[73.69645,15.72701],[73.69799,15.7254],[73.70298,15.72881],[73.70495,15.73122],[73.70353,15.73181],[73.70681,15.73242],[73.70777,15.72949],[73.71428,15.72992],[73.71699,15.72675],[73.72088,15.72567],[73.73174,15.72864],[73.73515,15.73284],[73.74284,15.73657],[73.76517,15.73387],[73.77035,15.73031],[73.78497,15.72613],[73.78754,15.72826],[73.78893,15.73484],[73.79316,15.73723],[73.79723,15.73422],[73.80664,15.73768],[73.80943,15.74203],[73.82095,15.73986],[73.82664,15.74338],[73.8308,15.75387],[73.82975,15.76433],[73.83849,15.76756],[73.8408,15.77612],[73.84391,15.78113],[73.84985,15.77954],[73.85267,15.78092],[73.84707,15.7858],[73.85047,15.78964],[73.85382,15.79861],[73.85571,15.80102],[73.8634,15.79879],[73.8675,15.79703],[73.86481,15.79082],[73.86607,15.78534],[73.86985,15.78354],[73.87644,15.77471],[73.87789,15.77415],[73.87787,15.77563],[73.88009,15.77432],[73.87735,15.76808],[73.87506,15.76716],[73.87701,15.76442],[73.87306,15.76088],[73.87288,15.75468],[73.8757,15.75128],[73.89288,15.74939],[73.89918,15.746],[73.90699,15.74797],[73.90698,15.74997],[73.9148,15.74544],[73.93873,15.74333],[73.94087,15.73811],[73.94174,15.72919],[73.94595,15.7212],[73.95233,15.7144],[73.94918,15.71156],[73.9498,15.7107],[73.94717,15.70983],[73.94928,15.70865],[73.94856,15.70354],[73.9437,15.69694],[73.94651,15.69781],[73.95152,15.69645],[73.95294,15.69953],[73.95923,15.70006],[73.95909,15.69809],[73.96376,15.69232],[73.96269,15.67326],[73.96571,15.66943],[73.96782,15.66025],[73.96256,15.65234],[73.96108,15.64556],[73.96177,15.64168],[73.96739,15.63531],[73.96786,15.63058],[73.97078,15.62741],[73.97905,15.62713],[73.99052,15.61223],[73.99336,15.61064],[74.00884,15.61016],[74.0208,15.60609],[74.0254,15.60944],[74.03116,15.62261],[74.0506,15.62487],[74.06161,15.62853],[74.06317,15.62638],[74.06577,15.62968],[74.07011,15.62916],[74.07849,15.63176],[74.09429,15.64237],[74.09753,15.64102],[74.10706,15.64645],[74.11389,15.64613],[74.11411,15.64879],[74.11826,15.65203],[74.11094,15.65769],[74.1037,15.65761],[74.09423,15.66308],[74.08828,15.66994],[74.0881,15.67247],[74.09136,15.67463],[74.10261,15.67222],[74.10885,15.67269],[74.12577,15.68097],[74.13072,15.68963],[74.13168,15.69354],[74.13034,15.70175],[74.13213,15.7024],[74.13143,15.70587],[74.12834,15.70867],[74.12618,15.70796],[74.1261,15.71846],[74.12217,15.72073],[74.12582,15.72411],[74.13076,15.72336],[74.13346,15.72631],[74.13396,15.72982],[74.14184,15.73433],[74.14401,15.73309],[74.15097,15.73581],[74.15111,15.73987],[74.1533,15.74363],[74.16156,15.75129],[74.18953,15.75212],[74.20143,15.75862],[74.20897,15.78127],[74.21311,15.78006],[74.2159,15.78389],[74.22744,15.78833],[74.2335,15.78699],[74.23458,15.77858],[74.22802,15.7707],[74.2265,15.76263],[74.22763,15.75658],[74.23243,15.75221],[74.2337,15.7483],[74.23652,15.74822],[74.23752,15.74463],[74.24231,15.7432],[74.25403,15.74515],[74.25386,15.74677],[74.25554,15.74604],[74.26384,15.75296],[74.26832,15.75474],[74.2736,15.74908],[74.28426,15.74366],[74.2852,15.74173],[74.28729,15.74198],[74.29612,15.74442],[74.30135,15.74764],[74.3079,15.74848],[74.31034,15.75157],[74.30974,15.75489],[74.31862,15.75838],[74.31899,15.76622],[74.32307,15.77268],[74.33747,15.7679],[74.34069,15.76467],[74.34568,15.76456],[74.35025,15.77032],[74.35843,15.77483],[74.36214,15.78236],[74.36904,15.78812],[74.36889,15.79174],[74.37197,15.79824],[74.37039,15.79859],[74.37192,15.80098],[74.36869,15.80695],[74.3703,15.80849],[74.36993,15.81146],[74.36267,15.81469],[74.36062,15.81778],[74.36536,15.81927],[74.36641,15.82576],[74.37074,15.83057],[74.37233,15.83022],[74.37482,15.83313],[74.3774,15.83222],[74.3766,15.83335],[74.37993,15.83827],[74.38104,15.83538],[74.38405,15.84012],[74.38309,15.8491],[74.345,15.85044],[74.33821,15.85492],[74.34661,15.85879],[74.34552,15.86229],[74.35087,15.86543],[74.35794,15.87316],[74.36326,15.87492],[74.36513,15.8825],[74.3647,15.89386],[74.36861,15.89436],[74.3661,15.89131],[74.37675,15.88238],[74.38003,15.87629],[74.38283,15.86004],[74.38693,15.85965],[74.38814,15.85425],[74.39141,15.85476],[74.39754,15.85115],[74.40235,15.85227],[74.40163,15.85461],[74.40617,15.85538],[74.40637,15.86445],[74.39765,15.86997],[74.39279,15.87839],[74.39674,15.88036],[74.39342,15.90004],[74.38778,15.90131],[74.38687,15.90498],[74.43083,15.95658],[74.43099,15.95962],[74.43607,15.96747],[74.43893,15.97568],[74.43787,15.9799],[74.44395,15.9864],[74.44261,15.99163],[74.44464,15.99244],[74.44634,15.9971],[74.44477,16.00305],[74.44691,16.00318],[74.45026,16.00855],[74.45011,16.01105],[74.45535,16.01952],[74.45723,16.02697],[74.46322,16.03919],[74.45649,16.04106],[74.46302,16.04162],[74.46221,16.04984],[74.45714,16.04823],[74.45012,16.05401],[74.44285,16.05281],[74.43422,16.05847],[74.42969,16.05915],[74.40552,16.05184],[74.40209,16.04611],[74.38099,16.03548],[74.378,16.0377],[74.3734,16.03644],[74.36905,16.03922],[74.37457,16.04689],[74.37734,16.05512],[74.37252,16.056],[74.36355,16.05303],[74.36133,16.05384],[74.37151,16.06824],[74.37222,16.07821],[74.38173,16.0793],[74.38362,16.08293],[74.38954,16.07979],[74.39086,16.08048],[74.39182,16.08253],[74.39004,16.08946],[74.40696,16.09351],[74.40997,16.10212],[74.42762,16.11197],[74.4429,16.10534],[74.45868,16.1038],[74.46105,16.09978],[74.47269,16.09299],[74.47273,16.0906],[74.48156,16.08889],[74.4843,16.09147],[74.4851,16.09837],[74.49123,16.10431],[74.49084,16.11672],[74.48587,16.13406],[74.48511,16.1423],[74.48007,16.14499],[74.47983,16.14713],[74.48837,16.15726],[74.48984,16.16342],[74.48955,16.17742],[74.49379,16.18645],[74.50331,16.18807],[74.50624,16.19024],[74.50723,16.19653],[74.50584,16.20136],[74.508,16.20226],[74.50126,16.20553],[74.49593,16.2143],[74.49629,16.21667],[74.50311,16.22247],[74.5031,16.22541],[74.49521,16.2349],[74.49035,16.23489],[74.48048,16.25013],[74.47671,16.24943],[74.46862,16.24019],[74.45609,16.24386],[74.45483,16.25339],[74.43555,16.25115],[74.43577,16.25883],[74.41761,16.258],[74.41595,16.2801],[74.41439,16.28265],[74.41181,16.28166],[74.40786,16.28329],[74.38261,16.27736],[74.38021,16.27115],[74.38064,16.26197],[74.37301,16.26164],[74.36828,16.26686],[74.36336,16.28504],[74.3593,16.29058],[74.3456,16.29376],[74.3431,16.29035],[74.35371,16.28282],[74.35046,16.27537],[74.34378,16.27808],[74.34205,16.27651],[74.34335,16.27309],[74.33843,16.2714],[74.33333,16.27597],[74.33506,16.2704],[74.33415,16.2688],[74.32846,16.26887],[74.32493,16.27176],[74.32457,16.27723],[74.32245,16.27791],[74.32083,16.28448],[74.32578,16.28559],[74.32469,16.2889],[74.32796,16.29325],[74.33184,16.29243],[74.33472,16.28961],[74.33831,16.29001],[74.34,16.29213],[74.34201,16.29118],[74.34255,16.29803],[74.34028,16.29816],[74.34042,16.30244],[74.33591,16.30709],[74.33192,16.30525],[74.33474,16.30903],[74.33296,16.31106],[74.33322,16.31345],[74.32919,16.31221],[74.32516,16.31368],[74.32461,16.31666],[74.33129,16.32067],[74.32874,16.32375],[74.32064,16.32375],[74.31661,16.32656],[74.3225,16.33437],[74.31656,16.33619],[74.31532,16.34008],[74.31879,16.34266],[74.32648,16.34142],[74.32703,16.34251],[74.31764,16.35305],[74.31789,16.35496],[74.32425,16.35743],[74.32477,16.35994],[74.31898,16.37164],[74.32084,16.37589],[74.31719,16.381],[74.32484,16.37829],[74.32814,16.38534],[74.32749,16.3915],[74.33587,16.39374],[74.34064,16.38867],[74.34121,16.38277],[74.34564,16.3769],[74.34512,16.37314],[74.3473,16.36832],[74.35341,16.36642],[74.35358,16.38188],[74.35701,16.38344],[74.35797,16.38954],[74.36291,16.39552],[74.36369,16.40509],[74.3448,16.40553],[74.34289,16.40346],[74.33505,16.40141],[74.32885,16.41905],[74.33129,16.42418],[74.33674,16.42881],[74.33269,16.43685],[74.33623,16.44567],[74.32971,16.4472],[74.33259,16.45476],[74.32466,16.45593],[74.32044,16.45392],[74.31246,16.45324],[74.3064,16.45528],[74.29705,16.46454],[74.29195,16.46175],[74.28928,16.46297],[74.28845,16.47723],[74.29218,16.48571],[74.2909,16.5049],[74.27966,16.50483],[74.27458,16.49403],[74.27438,16.48563],[74.26077,16.4801],[74.25663,16.48954],[74.24737,16.49691],[74.25251,16.50062],[74.26573,16.5011],[74.27822,16.50491],[74.2761,16.52131],[74.26955,16.52248],[74.26444,16.54044],[74.27054,16.54796],[74.27713,16.54525],[74.28109,16.5411],[74.28075,16.53145],[74.28314,16.52459],[74.28685,16.52677],[74.28909,16.53244],[74.2916,16.53388],[74.30137,16.52927],[74.30264,16.52725],[74.30105,16.52264],[74.30614,16.50369],[74.31512,16.5046],[74.31571,16.55445],[74.31757,16.55371],[74.32517,16.5563],[74.33488,16.54788],[74.33969,16.54776],[74.34446,16.55173],[74.34572,16.555],[74.35028,16.55603],[74.35512,16.55506],[74.35399,16.55892],[74.35625,16.55975],[74.35908,16.55575],[74.35611,16.54976],[74.35774,16.54608],[74.35793,16.53834],[74.36082,16.53893],[74.37081,16.5348],[74.37643,16.52913],[74.37983,16.52859],[74.38715,16.5362],[74.38858,16.55076],[74.3869,16.55994],[74.39291,16.56488],[74.39121,16.56655],[74.39554,16.57217],[74.39663,16.58327],[74.40869,16.58323],[74.42081,16.58612],[74.42215,16.58451],[74.42634,16.59574],[74.43544,16.60106],[74.46345,16.60449],[74.46671,16.60682],[74.4641,16.61509],[74.46574,16.61566],[74.46581,16.62472],[74.4585,16.63557],[74.45478,16.6473],[74.45835,16.64868],[74.4564,16.65505],[74.46408,16.65827],[74.46874,16.6638],[74.47171,16.66405],[74.47672,16.64447],[74.48903,16.63014],[74.49501,16.62975],[74.50024,16.63313],[74.50385,16.63356],[74.52445,16.63343],[74.54449,16.63547],[74.54473,16.62898],[74.5427,16.62663],[74.54349,16.59532],[74.55877,16.59465],[74.56689,16.58539],[74.56466,16.57965],[74.55602,16.57356],[74.55485,16.56451],[74.55639,16.56277],[74.56065,16.56262],[74.56854,16.55387],[74.57381,16.55391],[74.5746,16.55894],[74.58464,16.55913],[74.58403,16.56235],[74.58788,16.5661],[74.59896,16.56431],[74.60196,16.56536],[74.60428,16.56898],[74.60952,16.56959],[74.61708,16.57587],[74.6188,16.58407],[74.62284,16.57975],[74.62863,16.57773],[74.63319,16.58321],[74.63586,16.58391],[74.63323,16.59083],[74.63335,16.60036],[74.63615,16.60742],[74.64001,16.61045],[74.64443,16.61029],[74.65405,16.60417],[74.65999,16.6029],[74.67383,16.6092],[74.68268,16.6061],[74.68698,16.60679],[74.68986,16.61314],[74.68757,16.61789],[74.6766,16.62359],[74.66981,16.6294],[74.65905,16.63167],[74.65348,16.63883],[74.65916,16.64734],[74.66516,16.66567],[74.6795,16.66617],[74.67902,16.6731],[74.68955,16.67703],[74.68886,16.68154],[74.68109,16.68091],[74.68082,16.68589],[74.6894,16.68646],[74.68978,16.69726],[74.68773,16.7086],[74.68855,16.71279],[74.69102,16.71554],[74.70569,16.71491],[74.72718,16.71684],[74.72732,16.71909],[74.73004,16.71875],[74.73035,16.72013],[74.73209,16.71832],[74.73698,16.72354],[74.75276,16.73086],[74.75299,16.73309],[74.76035,16.74127],[74.76505,16.74186],[74.76937,16.74481],[74.77197,16.75068],[74.78337,16.75132],[74.79575,16.74775],[74.79874,16.75366],[74.84451,16.76182],[74.84982,16.77276],[74.86568,16.76336],[74.86936,16.77407],[74.88987,16.77126],[74.92014,16.7725],[74.91082,16.78954],[74.91022,16.81659],[74.90873,16.8237],[74.91029,16.83514],[74.90761,16.85017],[74.90424,16.85939],[74.90152,16.86255],[74.91097,16.86404],[74.9265,16.86354],[74.92402,16.86713],[74.92542,16.86772],[74.92555,16.87203],[74.93522,16.87107],[74.93592,16.87924],[74.94438,16.8827],[74.94458,16.88116],[74.96036,16.88095],[74.96358,16.90971],[74.96364,16.9111],[74.96227,16.91058],[74.95884,16.90585],[74.95535,16.90534],[74.95486,16.91017],[74.94435,16.91084],[74.93827,16.91729],[74.93266,16.91891],[74.93422,16.92423],[74.92178,16.92986],[74.92316,16.93931],[74.92654,16.93932],[74.93056,16.94167],[74.93171,16.94476],[74.93671,16.9442],[74.94117,16.94078],[74.9476,16.93935],[74.95042,16.93295],[74.95826,16.92824],[74.96454,16.92678],[74.96568,16.92986],[74.9605,16.93348],[74.96016,16.93726],[74.96064,16.93995],[74.96751,16.94161],[74.96436,16.94763],[74.96826,16.95016],[74.99291,16.95207],[75.00035,16.94985],[75.0045,16.94627],[75.02659,16.94414],[75.02477,16.93964],[75.02523,16.928],[75.0271,16.92945],[75.02643,16.93192],[75.02906,16.93149],[75.0336,16.93372],[75.03577,16.93284],[75.03787,16.93571],[75.04066,16.93644],[75.04139,16.94006],[75.04454,16.94173],[75.06204,16.94152],[75.07259,16.94665],[75.07435,16.95002],[75.07812,16.94883],[75.08508,16.95157],[75.08933,16.95158],[75.09214,16.94011],[75.0918,16.92605],[75.09631,16.91374],[75.11748,16.91344],[75.12032,16.90253],[75.13484,16.8947],[75.13246,16.88942],[75.13648,16.87449],[75.15555,16.86856],[75.17658,16.86771],[75.18899,16.87528],[75.18185,16.8434],[75.2142,16.8417],[75.22764,16.84318],[75.23766,16.86794],[75.26472,16.8628],[75.27299,16.8692],[75.28203,16.88029],[75.28994,16.90403],[75.2829,16.90972],[75.27938,16.92333],[75.281,16.95305],[75.2796,16.95656],[75.32555,16.95582],[75.35005,16.95782],[75.35853,16.96286],[75.35839,16.9649],[75.36113,16.96557],[75.36854,16.97195],[75.39214,16.98009],[75.41151,16.97425],[75.42788,16.96649],[75.43536,16.97345],[75.4416,16.98223],[75.46555,16.98837],[75.46618,16.98131],[75.46889,16.97954],[75.47856,16.97857],[75.48324,16.97599],[75.48917,16.95911],[75.48908,16.94442],[75.50736,16.95083],[75.50966,16.95025],[75.52931,16.9694],[75.53917,16.96548],[75.56413,16.96791],[75.56765,16.96575],[75.56609,16.98138],[75.56722,17.00905],[75.5731,17.00961],[75.60689,17.00457],[75.60613,16.99436],[75.60824,16.98165],[75.60786,16.971],[75.63393,16.97026],[75.63693,16.96854],[75.63821,16.95775],[75.64476,16.95408],[75.64668,16.95469],[75.64893,16.95899],[75.6554,16.96153],[75.67032,16.96205],[75.67513,16.96555],[75.67708,16.969],[75.67255,16.97013],[75.67184,16.97593],[75.66882,16.97983],[75.66608,16.97977],[75.66572,16.99375],[75.66723,17.00576],[75.66909,17.00957],[75.66969,17.03816],[75.64999,17.03224],[75.641,17.03758],[75.65031,17.05726],[75.6604,17.0645],[75.67672,17.06542],[75.67874,17.07715],[75.67337,17.0912],[75.67579,17.09529],[75.67234,17.1014],[75.67229,17.116],[75.65035,17.11569],[75.64953,17.13438],[75.64757,17.13451],[75.6452,17.14421],[75.62826,17.16269],[75.62538,17.174],[75.62723,17.18316],[75.62886,17.1834],[75.62843,17.18866],[75.63993,17.18887],[75.63985,17.19432],[75.64259,17.19765],[75.65539,17.20553],[75.66191,17.21458],[75.65856,17.23867],[75.65772,17.26321],[75.65417,17.27382],[75.62785,17.27434],[75.63022,17.28084],[75.62547,17.28532],[75.62241,17.2951],[75.60373,17.3055],[75.61209,17.32514],[75.61235,17.33689],[75.61057,17.33687],[75.61003,17.34504],[75.59514,17.34621],[75.58629,17.35059],[75.58085,17.35122],[75.57718,17.37591],[75.57414,17.3833],[75.5936,17.3873],[75.60108,17.39031],[75.60612,17.39448],[75.61352,17.39192],[75.61208,17.4074],[75.6066,17.42037],[75.60958,17.42374],[75.61335,17.42474],[75.61545,17.43885],[75.62161,17.45925],[75.62744,17.4625],[75.63298,17.47721],[75.64879,17.47033],[75.65884,17.45806],[75.66895,17.45859],[75.67588,17.45594],[75.6785,17.45109],[75.67809,17.43406],[75.6835,17.41692],[75.69073,17.40947],[75.7045,17.40748],[75.71244,17.40793],[75.71998,17.41152],[75.72807,17.41942],[75.73359,17.42009],[75.75309,17.40713],[75.76587,17.4053],[75.7679,17.40235],[75.77203,17.38574],[75.78028,17.37564],[75.79294,17.3697],[75.80608,17.36802],[75.81366,17.37276],[75.8151,17.37847],[75.81358,17.39572],[75.81832,17.40662],[75.81898,17.4181],[75.82144,17.42122],[75.83026,17.42181],[75.85108,17.41053],[75.85406,17.40449],[75.85641,17.38943],[75.86088,17.38559],[75.8752,17.39809],[75.87452,17.41236],[75.87651,17.41614],[75.87848,17.41813],[75.88419,17.41796],[75.8919,17.40755],[75.89406,17.4012],[75.89524,17.37818],[75.89018,17.36117],[75.89058,17.35652],[75.8945,17.35083],[75.91008,17.34452],[75.9251,17.32575],[75.93082,17.32257],[75.96871,17.33647],[75.9839,17.33622],[75.99827,17.33797],[76.01019,17.35238],[76.01433,17.35353],[76.02853,17.35114],[76.03775,17.35188],[76.05277,17.35579],[76.06054,17.35531],[76.06463,17.35121],[76.07214,17.33531],[76.0734,17.33651],[76.07913,17.3316],[76.0875,17.33651],[76.08812,17.34217],[76.09347,17.34935],[76.08938,17.35313],[76.09974,17.36465],[76.11299,17.36752],[76.11895,17.3705],[76.133,17.35832],[76.14105,17.35349],[76.16262,17.34522],[76.16508,17.30334],[76.17632,17.30079],[76.18107,17.30905],[76.18325,17.31943],[76.17926,17.31857],[76.17658,17.32461],[76.17264,17.33629],[76.17031,17.35262],[76.18042,17.35839],[76.19639,17.36367],[76.21236,17.36199],[76.22944,17.36521],[76.22853,17.37584],[76.24209,17.37884],[76.24413,17.37879],[76.24458,17.37154],[76.25043,17.36968],[76.24905,17.36659],[76.25073,17.36043],[76.26504,17.36171],[76.26702,17.36348],[76.27004,17.36051],[76.27201,17.36059],[76.27636,17.33457],[76.31766,17.33238],[76.31886,17.33814],[76.31203,17.34601],[76.31434,17.34839],[76.3292,17.35081],[76.33803,17.35411],[76.3453,17.35445],[76.34703,17.3442],[76.35429,17.3244],[76.35401,17.31432],[76.38316,17.31453],[76.3851,17.32376],[76.39661,17.3471],[76.40316,17.34997],[76.41219,17.35107],[76.40912,17.37139],[76.38298,17.37397],[76.36343,17.37767],[76.37107,17.41343],[76.37,17.41694],[76.37151,17.43642],[76.35348,17.4373],[76.33326,17.4339],[76.33343,17.45548],[76.33095,17.45567],[76.33069,17.47019],[76.33321,17.47176],[76.35036,17.47417],[76.36824,17.4832],[76.37552,17.49022],[76.37469,17.49565],[76.36231,17.49592],[76.34576,17.49253],[76.34333,17.50066],[76.34657,17.51258],[76.3646,17.51497],[76.36722,17.51945],[76.36274,17.53737],[76.34875,17.53943],[76.34069,17.54247],[76.33853,17.5568],[76.33503,17.56518],[76.33313,17.56499],[76.33129,17.59742],[76.33156,17.59598],[76.33674,17.5973],[76.35003,17.5941],[76.37764,17.59787],[76.3817,17.60225],[76.39186,17.60065],[76.39305,17.60315],[76.41968,17.60371],[76.41929,17.60623],[76.42679,17.62581],[76.42849,17.63379],[76.42724,17.63959],[76.42919,17.64495],[76.43539,17.64626],[76.445,17.64095],[76.44184,17.64931],[76.45448,17.64979],[76.45286,17.65579],[76.45892,17.65812],[76.48667,17.65841],[76.48975,17.6605],[76.48502,17.67098],[76.48449,17.67851],[76.48723,17.71476],[76.50069,17.71842],[76.51173,17.71797],[76.5239,17.71515],[76.52736,17.73784],[76.52328,17.7598],[76.53069,17.75826],[76.56126,17.76462],[76.57271,17.76054],[76.56396,17.75083],[76.5678,17.74248],[76.5703,17.70541],[76.5822,17.70527],[76.58834,17.70758],[76.59438,17.72245],[76.60108,17.72586],[76.59979,17.73271],[76.6053,17.75865],[76.60696,17.75936],[76.61104,17.76936],[76.61533,17.7704],[76.62243,17.7605],[76.63188,17.75464],[76.6281,17.75065],[76.63326,17.72822],[76.65279,17.72213],[76.6556,17.71785],[76.65973,17.70828],[76.66419,17.68756],[76.67076,17.69053],[76.67492,17.68999],[76.67972,17.68635],[76.68436,17.68589],[76.68738,17.68005],[76.69084,17.681],[76.69083,17.68575],[76.69418,17.69568],[76.69214,17.70078],[76.69254,17.70672],[76.70131,17.70907],[76.70365,17.71562],[76.70433,17.72301],[76.69965,17.72725],[76.72827,17.73756],[76.72404,17.74796],[76.72481,17.7511],[76.71879,17.75148],[76.72107,17.7695],[76.71191,17.77327],[76.71409,17.78094],[76.72094,17.78806],[76.73016,17.78385],[76.72987,17.78274],[76.74065,17.77946],[76.74434,17.78034],[76.74253,17.78422],[76.75074,17.78455],[76.75091,17.78705],[76.76204,17.78702],[76.7621,17.78878],[76.76446,17.78896],[76.7659,17.79224],[76.76651,17.79847],[76.77544,17.79829],[76.77873,17.80048],[76.78259,17.80664],[76.78151,17.80939],[76.78286,17.81792],[76.79039,17.82633],[76.787,17.8332],[76.77931,17.83628],[76.77422,17.84197],[76.77407,17.84638],[76.7675,17.85213],[76.7656,17.85128],[76.75922,17.85588],[76.75149,17.85813],[76.73848,17.85668],[76.73884,17.8831],[76.74125,17.8954],[76.73997,17.8997],[76.75713,17.89917],[76.76816,17.90115],[76.77357,17.89046],[76.77505,17.87771],[76.78839,17.87579],[76.79878,17.87154],[76.80667,17.87058],[76.80819,17.87098],[76.80768,17.87802],[76.81022,17.88704],[76.8312,17.88562],[76.83192,17.89526],[76.83972,17.89937],[76.85264,17.90072],[76.87266,17.89808],[76.87917,17.89452],[76.88139,17.89556],[76.88427,17.89429],[76.88399,17.89898],[76.88849,17.89794],[76.89419,17.89983],[76.89504,17.90275],[76.89384,17.90607],[76.89655,17.90575],[76.89689,17.91037],[76.89899,17.90907],[76.90126,17.91724],[76.91474,17.91481],[76.91898,17.91595],[76.92067,17.94157],[76.91729,17.94806],[76.9183,17.95602],[76.91539,17.95711],[76.91444,17.96156],[76.91226,17.97805],[76.91367,17.99322],[76.91314,17.99689],[76.90671,17.99659],[76.90807,17.99952],[76.90603,18.00232],[76.90564,18.00971],[76.90763,18.01422],[76.91094,18.01496],[76.9123,18.01734],[76.91432,18.03536],[76.93662,18.03686],[76.95231,18.04022],[76.95269,18.04394],[76.94836,18.0444],[76.9449,18.04836],[76.95106,18.05776],[76.95162,18.06105],[76.95144,18.06566],[76.94521,18.0832],[76.96294,18.08957],[76.96493,18.09173],[76.96635,18.0982],[76.95872,18.10412],[76.95427,18.11054],[76.93774,18.11491],[76.93292,18.11283],[76.92486,18.11631],[76.92171,18.11555],[76.9205,18.11818],[76.92025,18.12507],[76.9318,18.13353],[76.92448,18.14274],[76.92396,18.14663],[76.93148,18.15965],[76.94236,18.15641],[76.94608,18.16663],[76.94768,18.16641],[76.94845,18.16876],[76.95193,18.1881],[76.9658,18.19007],[76.97742,18.18887],[76.9784,18.19198],[76.99061,18.18999],[76.99056,18.18576],[76.99401,18.18054],[76.9932,18.17581],[76.99641,18.1662],[77.00179,18.16235],[77.00111,18.1609],[77.0233,18.15851],[77.02565,18.16175],[77.02308,18.17565],[77.03173,18.17743],[77.03318,18.18199],[77.05198,18.17323],[77.0532,18.15945],[77.05865,18.15661],[77.06396,18.15065],[77.08485,18.15079],[77.09132,18.15584],[77.09948,18.15819],[77.10324,18.15783],[77.1069,18.15516],[77.11154,18.15583],[77.11672,18.16618],[77.11634,18.17102],[77.09912,18.19199],[77.0976,18.19672],[77.11129,18.20424],[77.12728,18.20767],[77.13374,18.20586],[77.13464,18.20721],[77.14014,18.20772],[77.1427,18.21704],[77.15152,18.21704],[77.15071,18.22216],[77.14923,18.2214],[77.14863,18.23905],[77.15177,18.23802],[77.15913,18.25579],[77.16975,18.26087],[77.17041,18.26431],[77.16903,18.26583],[77.17073,18.2767],[77.17481,18.28486],[77.18821,18.28474],[77.19541,18.27981],[77.19747,18.27661],[77.20377,18.28006],[77.21301,18.28032],[77.20936,18.28772],[77.20985,18.29497],[77.20555,18.2941],[77.20293,18.29773],[77.20311,18.30542],[77.19871,18.31545],[77.20167,18.32217],[77.21179,18.31628],[77.21478,18.32324],[77.21907,18.32573],[77.22277,18.33975],[77.22958,18.34821],[77.22009,18.34927],[77.22448,18.35597],[77.22583,18.36522],[77.23399,18.3698],[77.24639,18.37077],[77.24842,18.37606],[77.23946,18.37861],[77.23369,18.3882],[77.23476,18.39676],[77.24177,18.41261],[77.25937,18.41326],[77.26565,18.42234],[77.27325,18.42302],[77.27904,18.4298],[77.28717,18.43057],[77.30032,18.43639],[77.30066,18.43818],[77.31685,18.44225],[77.31688,18.44799],[77.31989,18.45803],[77.32642,18.45885],[77.3269,18.45175],[77.33603,18.45015],[77.33566,18.44232],[77.34522,18.43361],[77.3475,18.43396],[77.34796,18.43947],[77.35107,18.4422],[77.35349,18.44767],[77.36564,18.45156],[77.3675,18.44696],[77.36184,18.43728],[77.36203,18.43558],[77.36446,18.43452],[77.36215,18.42989],[77.3654,18.42772],[77.36726,18.41869],[77.37065,18.41879],[77.36839,18.41253],[77.37233,18.40673],[77.37283,18.4011],[77.38843,18.39953],[77.40016,18.402],[77.40083,18.39988],[77.40357,18.39965],[77.41409,18.39311],[77.41329,18.38507],[77.40984,18.37741],[77.39487,18.36845],[77.39893,18.35979],[77.40015,18.34745],[77.39434,18.34743],[77.39498,18.3415],[77.39016,18.34371],[77.38549,18.34081],[77.38243,18.34225],[77.38094,18.33102],[77.37562,18.33205],[77.3716,18.32521],[77.35672,18.3202],[77.36579,18.30712],[77.38512,18.30931],[77.39485,18.30359],[77.40142,18.30449],[77.409,18.30147],[77.41703,18.30643],[77.42556,18.30788],[77.42831,18.31236],[77.43766,18.31031],[77.43651,18.29323],[77.44035,18.28263],[77.44586,18.28381],[77.44558,18.27662],[77.44758,18.27],[77.45178,18.26972],[77.45233,18.26698],[77.46504,18.26254],[77.47575,18.26466],[77.47973,18.26818],[77.48138,18.27236],[77.49267,18.2672],[77.49866,18.27675],[77.50522,18.27702],[77.50962,18.28181],[77.51156,18.28205],[77.51205,18.29074],[77.51023,18.29248],[77.51109,18.2953],[77.50882,18.30428],[77.51254,18.30956],[77.52373,18.30821],[77.53272,18.2987],[77.54003,18.29466],[77.55126,18.29169],[77.55326,18.29809],[77.5714,18.30883],[77.57048,18.31811],[77.56387,18.3223],[77.55802,18.33142],[77.53023,18.33917],[77.52234,18.34647],[77.52021,18.35718],[77.52405,18.3642],[77.52547,18.37271],[77.53561,18.38075],[77.5386,18.38588],[77.54319,18.38609],[77.54592,18.38869],[77.5516,18.3889],[77.55268,18.40169],[77.55676,18.41714],[77.55647,18.41943],[77.5369,18.42425],[77.53731,18.42628],[77.52817,18.42891],[77.52752,18.44211],[77.52849,18.44337],[77.54056,18.44471],[77.54798,18.44323],[77.5602,18.43728],[77.56418,18.4373],[77.56829,18.43947],[77.56907,18.44287],[77.5743,18.4418],[77.5853,18.44679],[77.5861,18.4494],[77.583,18.44994],[77.5836,18.45621],[77.56404,18.46102],[77.55076,18.46041],[77.54856,18.46858],[77.56024,18.46862],[77.56107,18.47026],[77.57286,18.46981],[77.57637,18.48678],[77.59225,18.48472],[77.59428,18.47691],[77.60313,18.47685],[77.60361,18.48368],[77.60623,18.4892],[77.60368,18.49294],[77.60471,18.49637],[77.5944,18.4962],[77.59429,18.49791],[77.58591,18.504],[77.58775,18.51286],[77.59707,18.51588],[77.60028,18.5223],[77.59883,18.52421],[77.60044,18.5273],[77.59657,18.5302],[77.59069,18.52667],[77.59206,18.53232],[77.5953,18.53554],[77.59637,18.54894],[77.61007,18.54988],[77.61056,18.54454],[77.6125,18.54448],[77.61319,18.5491],[77.61604,18.54897],[77.61519,18.55085],[77.62647,18.55189],[77.62925,18.55368],[77.62763,18.54812],[77.634,18.54392],[77.63962,18.55494],[77.64791,18.55493],[77.64771,18.55299],[77.65207,18.55179],[77.64922,18.54119],[77.6459,18.53884],[77.65135,18.53226],[77.65586,18.5309],[77.66166,18.53186],[77.6646,18.5358],[77.68069,18.54525],[77.68833,18.54495],[77.70156,18.55517],[77.71097,18.5563],[77.72325,18.55333],[77.7385,18.55679],[77.73704,18.56384],[77.73961,18.56836],[77.74038,18.57522],[77.74347,18.57762],[77.74607,18.5846],[77.75034,18.58921],[77.7476,18.6032],[77.74557,18.60594],[77.74566,18.62129],[77.73471,18.64101],[77.7305,18.64515],[77.7302,18.65608],[77.73571,18.66099],[77.72997,18.66694],[77.73822,18.6765],[77.74313,18.67827],[77.74369,18.68162],[77.74925,18.68267],[77.75244,18.68934],[77.75059,18.69525],[77.7535,18.70099],[77.75998,18.70684],[77.76815,18.70586],[77.77033,18.70184],[77.77324,18.70136],[77.77191,18.68905],[77.77701,18.68536],[77.78729,18.68264],[77.79035,18.68783],[77.78976,18.69515],[77.79501,18.69704],[77.79622,18.70396],[77.80106,18.70762],[77.80418,18.71318],[77.80425,18.72724],[77.81234,18.73851],[77.81671,18.75064],[77.82679,18.76984],[77.83219,18.78825],[77.83851,18.79683],[77.83995,18.80482],[77.85368,18.80907],[77.85988,18.80905],[77.87141,18.81816],[77.88199,18.8174],[77.90667,18.8267],[77.91226,18.82689],[77.9345,18.82227],[77.94309,18.82481],[77.94854,18.82984],[77.9489,18.84329],[77.93478,18.84514],[77.93745,18.85159],[77.92935,18.85359],[77.93006,18.85873],[77.92514,18.86069],[77.91415,18.86137],[77.91243,18.86507],[77.90323,18.86663],[77.90391,18.88125],[77.89158,18.88141],[77.88481,18.9003],[77.88538,18.9042],[77.87394,18.90767],[77.87317,18.90393],[77.85794,18.90235],[77.84325,18.90869],[77.84791,18.9269],[77.85146,18.92641],[77.85859,18.94911],[77.84194,18.94987],[77.83562,18.94725],[77.83245,18.94163],[77.81925,18.94586],[77.81622,18.94728],[77.81984,18.95444],[77.81621,18.95752],[77.82176,18.97851],[77.80522,18.98186],[77.79114,18.98282],[77.78967,18.97458],[77.78763,18.97265],[77.7715,18.97916],[77.77535,19.00063],[77.77224,19.00363],[77.77034,19.00996],[77.76992,19.02241],[77.76556,19.02431],[77.762,19.03185],[77.76495,19.04714],[77.76481,19.06266],[77.77523,19.05602],[77.7891,19.05567],[77.79331,19.05257],[77.80035,19.05112],[77.7986,19.06145],[77.8001,19.06684],[77.7968,19.07259],[77.79786,19.07516],[77.80167,19.07618],[77.80281,19.07976],[77.80458,19.0918],[77.80312,19.09617],[77.80453,19.10056],[77.80993,19.10473],[77.81814,19.10498],[77.82358,19.09773],[77.82641,19.09664],[77.82953,19.08707],[77.83127,19.08608],[77.8423,19.08801],[77.84858,19.0865],[77.8504,19.08856],[77.85108,19.09203],[77.84621,19.10131],[77.84837,19.11013],[77.84766,19.116],[77.84156,19.11811],[77.83688,19.13401],[77.83406,19.13431],[77.83566,19.13808],[77.83795,19.13765],[77.84322,19.14158],[77.85253,19.15468],[77.85265,19.16682],[77.85453,19.1702],[77.85671,19.17075],[77.85593,19.17711],[77.86049,19.18035],[77.85401,19.18749],[77.84772,19.1896],[77.85149,19.1961],[77.85123,19.19975],[77.85481,19.20277],[77.85819,19.21418],[77.86601,19.2264],[77.86612,19.23261],[77.86814,19.23674],[77.8669,19.23994],[77.87002,19.24418],[77.86947,19.24817],[77.87141,19.25502],[77.8746,19.25364],[77.87502,19.25884],[77.89001,19.26089],[77.89092,19.25928],[77.90285,19.25646],[77.90756,19.26823],[77.90346,19.27796],[77.89419,19.27981],[77.88436,19.27893],[77.86558,19.28382],[77.86495,19.28813],[77.8664,19.29172],[77.86346,19.3042],[77.87283,19.30531],[77.87818,19.30928],[77.89003,19.3133],[77.89432,19.32047],[77.91155,19.31626],[77.9176,19.32328],[77.92331,19.32578],[77.92801,19.33221],[77.93198,19.33467],[77.93824,19.33411],[77.94229,19.34227],[77.94512,19.34245],[77.96186,19.33561],[77.96588,19.32746],[77.97411,19.32262],[77.97763,19.32271],[77.98485,19.30988],[77.99467,19.30539],[77.99868,19.2998],[78.0135,19.29472],[78.01596,19.28757],[78.01424,19.28596],[78.01482,19.27904],[78.04251,19.2706],[78.04184,19.26166],[78.03594,19.25063],[78.04161,19.24343],[78.05568,19.23712],[78.06442,19.24777],[78.0723,19.24925],[78.0791,19.25483],[78.08323,19.24868],[78.08235,19.24322],[78.08915,19.23937],[78.09531,19.24374],[78.11317,19.24442],[78.11522,19.24883],[78.11704,19.24864],[78.13428,19.23889],[78.13709,19.23439],[78.14455,19.2294],[78.15099,19.2295],[78.1584,19.23578],[78.16495,19.23455],[78.17532,19.23758],[78.17702,19.24216],[78.18177,19.24762],[78.17798,19.25391],[78.17964,19.25886],[78.17671,19.26294],[78.17817,19.27251],[78.17667,19.27855],[78.18311,19.28518],[78.19374,19.31489],[78.19021,19.32078],[78.19228,19.32583],[78.18951,19.32897],[78.18324,19.32998],[78.17623,19.33493],[78.17215,19.3493],[78.17206,19.35972],[78.17923,19.36284],[78.17679,19.3674],[78.18767,19.39459],[78.17619,19.41226],[78.18382,19.4122],[78.19244,19.40669],[78.19507,19.40675],[78.19881,19.41016],[78.19919,19.41484],[78.20253,19.4197],[78.21159,19.42848],[78.21996,19.43302],[78.23561,19.42675],[78.23743,19.42873],[78.24451,19.4288],[78.24672,19.43217],[78.24648,19.4352],[78.25338,19.43677],[78.25831,19.44179],[78.26265,19.44306],[78.26374,19.44893],[78.26868,19.44847],[78.27044,19.45616],[78.28697,19.44853],[78.29865,19.45195],[78.30434,19.45614],[78.30922,19.48108],[78.29866,19.49681],[78.29495,19.51317],[78.29701,19.51308],[78.296,19.51737],[78.2904,19.52762],[78.29244,19.52931],[78.29411,19.53479],[78.29323,19.54223],[78.28393,19.54141],[78.27431,19.55397],[78.27525,19.56246],[78.29356,19.55898],[78.29815,19.56404],[78.29729,19.5679],[78.30369,19.56932],[78.30425,19.57269],[78.3009,19.57907],[78.30382,19.58478],[78.30557,19.60707],[78.2939,19.61944],[78.2922,19.62741],[78.29208,19.64223],[78.29046,19.646],[78.28088,19.65093],[78.27901,19.65764],[78.27105,19.65854],[78.27162,19.66191],[78.26891,19.66407],[78.26265,19.66506],[78.26579,19.67309],[78.27108,19.67871],[78.27619,19.69242],[78.28785,19.68804],[78.30019,19.68799],[78.30341,19.6912],[78.31182,19.69105],[78.31573,19.70259],[78.31865,19.70553],[78.34313,19.71325],[78.3435,19.71547],[78.33929,19.72416],[78.33982,19.72696],[78.34285,19.72978],[78.34082,19.73333],[78.34123,19.73576],[78.34464,19.73811],[78.34929,19.73798],[78.35555,19.75201],[78.35893,19.76793],[78.36365,19.77577],[78.36467,19.78123],[78.35744,19.80543],[78.35238,19.8074],[78.3448,19.81337],[78.33402,19.81459],[78.33641,19.83792],[78.31576,19.84256],[78.30146,19.84042],[78.28608,19.84794],[78.28531,19.85662],[78.29188,19.86172],[78.29875,19.87497],[78.30703,19.9143],[78.32432,19.91675],[78.32922,19.91566],[78.33178,19.91337],[78.33409,19.9053],[78.32512,19.89815],[78.32436,19.89483],[78.3274,19.88857],[78.33209,19.8849],[78.33688,19.883],[78.36043,19.8834],[78.36964,19.87977],[78.38067,19.88044],[78.38304,19.87391],[78.38179,19.85704],[78.38646,19.84536],[78.42295,19.81763],[78.43737,19.81364],[78.45196,19.81288],[78.46923,19.81772],[78.47246,19.81734],[78.48315,19.80381],[78.48503,19.79605],[78.49024,19.79268],[78.49521,19.79263],[78.50722,19.79755],[78.50895,19.81205],[78.51502,19.81893],[78.53078,19.81845],[78.53794,19.82005],[78.54229,19.82383],[78.55201,19.82408],[78.56323,19.82108],[78.57229,19.81585],[78.58612,19.81879],[78.60731,19.81761],[78.61115,19.81632],[78.61899,19.80998],[78.62552,19.80816],[78.64274,19.80781],[78.65505,19.80019],[78.66635,19.79975],[78.67513,19.79486],[78.69256,19.79103],[78.70137,19.78674],[78.70609,19.7723],[78.71916,19.76665],[78.72415,19.76775],[78.73002,19.78023],[78.74006,19.78313],[78.74611,19.78117],[78.75171,19.77466],[78.75637,19.77251],[78.77112,19.77938],[78.77734,19.77986],[78.78237,19.77841],[78.7863,19.77653],[78.79563,19.76727],[78.79693,19.76001],[78.80216,19.75653],[78.80691,19.75689],[78.81692,19.76183],[78.82588,19.75514],[78.83351,19.76012],[78.84096,19.76189],[78.8404,19.75634],[78.84532,19.74688],[78.84795,19.7355],[78.85115,19.73613],[78.85237,19.7279],[78.84943,19.72197],[78.85992,19.68949],[78.85715,19.68962],[78.85569,19.68666],[78.85584,19.67731],[78.85192,19.65836],[78.86159,19.65741],[78.86809,19.65903],[78.88673,19.65507],[78.89048,19.65941],[78.88645,19.66245],[78.89601,19.66446],[78.90354,19.67001],[78.90768,19.66799],[78.91165,19.66911],[78.91582,19.6669],[78.91986,19.66697],[78.91972,19.662],[78.94423,19.66174],[78.95556,19.65579],[78.95739,19.64717],[78.96185,19.63744],[78.96119,19.63169],[78.95537,19.61912],[78.95562,19.60017],[78.95914,19.59547],[78.97178,19.59001],[78.97283,19.58239],[78.96487,19.57358],[78.95254,19.56498],[78.94649,19.56161],[78.93767,19.56187],[78.94044,19.55187],[78.9521,19.54886],[78.97422,19.54938],[78.9768,19.55694],[78.97985,19.55766],[78.98125,19.56084],[78.99775,19.54907],[78.99803,19.54008],[79.00687,19.54202],[79.02402,19.54178],[79.03945,19.5476],[79.04601,19.54833],[79.06534,19.53963],[79.06769,19.53566],[79.0769,19.5324],[79.09803,19.53203],[79.10539,19.52238],[79.11434,19.51976],[79.12093,19.512],[79.13311,19.50783],[79.13566,19.50615],[79.13861,19.50048],[79.14299,19.50053],[79.15755,19.48929],[79.16135,19.48826],[79.16783,19.47236],[79.18007,19.46188],[79.19031,19.45898],[79.20821,19.46497],[79.21568,19.46464],[79.22359,19.46907],[79.22319,19.47235],[79.21577,19.48094],[79.21075,19.48174],[79.20685,19.48582],[79.20385,19.49408],[79.20738,19.49763],[79.20746,19.50613],[79.21403,19.51119],[79.22116,19.52099],[79.23373,19.52001],[79.24002,19.53524],[79.23712,19.55714],[79.24622,19.56752],[79.25103,19.5775],[79.25312,19.59329],[79.24441,19.59487],[79.23864,19.60617],[79.24356,19.61669],[79.2511,19.61587],[79.27295,19.59884],[79.28436,19.59552],[79.30684,19.59656],[79.31026,19.57796],[79.30985,19.57151],[79.31393,19.56642],[79.31854,19.5677],[79.31844,19.57672],[79.32618,19.57743],[79.33481,19.57479],[79.35739,19.57758],[79.36573,19.57633],[79.36708,19.57294],[79.36947,19.5727],[79.37275,19.56099],[79.3768,19.55888],[79.38568,19.55833],[79.38732,19.55471],[79.39175,19.55287],[79.39621,19.54806],[79.40171,19.53845],[79.40532,19.53567],[79.42047,19.52976],[79.423,19.53016],[79.42256,19.53804],[79.43333,19.53726],[79.44221,19.52798],[79.44605,19.52692],[79.45327,19.5201],[79.45676,19.51913],[79.46896,19.50957],[79.47142,19.50019],[79.48263,19.50628],[79.49839,19.50569],[79.50076,19.50739],[79.50226,19.51164],[79.51483,19.51944],[79.51859,19.52018],[79.52081,19.53489],[79.51861,19.54311],[79.52922,19.55105],[79.53993,19.55466],[79.54248,19.55423],[79.54538,19.5507],[79.54839,19.53162],[79.55293,19.52417],[79.569,19.51827],[79.58404,19.50913],[79.59615,19.50728],[79.60046,19.50951],[79.60297,19.51455],[79.60604,19.53283],[79.61166,19.54752],[79.61414,19.55968],[79.62792,19.57317],[79.63546,19.57594],[79.65829,19.57971],[79.67532,19.57971],[79.68895,19.58387],[79.709,19.58448],[79.71798,19.58945],[79.73525,19.60496],[79.74308,19.60863],[79.75345,19.60753],[79.77861,19.59967],[79.79858,19.58197],[79.81446,19.5757],[79.82115,19.56422],[79.82125,19.56021],[79.82411,19.55679],[79.8249,19.55053],[79.82842,19.54341],[79.83287,19.53855],[79.84564,19.5328],[79.84817,19.52653],[79.85532,19.52103],[79.86458,19.51051],[79.87095,19.50906],[79.88085,19.50357],[79.90196,19.5009],[79.9145,19.49604],[79.93241,19.47654],[79.94482,19.46981],[79.94822,19.4606],[79.94761,19.44968],[79.95248,19.44095],[79.97239,19.41621],[79.97469,19.41099],[79.9747,19.40436],[79.97794,19.40036],[79.97718,19.39418],[79.97961,19.39033],[79.97938,19.38808],[79.97404,19.3855],[79.97183,19.38156],[79.97142,19.37681],[79.96953,19.37469],[79.97023,19.37103],[79.96797,19.35663],[79.95908,19.33594],[79.95909,19.33086],[79.96557,19.31307],[79.96587,19.30304],[79.96227,19.29735],[79.95482,19.29376],[79.95057,19.28904],[79.93636,19.26413],[79.93085,19.2508],[79.92474,19.2273],[79.92422,19.21546],[79.92545,19.21064],[79.94528,19.17914],[79.9465,19.17425],[79.94567,19.16894],[79.92532,19.15159],[79.87375,19.12405],[79.86146,19.11226],[79.85843,19.10242],[79.85896,19.09276],[79.8634,19.07782],[79.86338,19.06869],[79.866,19.0542],[79.86859,19.04424],[79.8711,19.04102],[79.87704,19.0388],[79.89922,19.04024],[79.92063,19.04971],[79.92892,19.04919],[79.93281,19.0474],[79.93707,19.04269],[79.94038,19.03201],[79.94256,19.00698],[79.9424,19.00066],[79.94096,19.00023],[79.94162,18.99209],[79.95705,18.94288],[79.95742,18.92279],[79.95361,18.9045],[79.95867,18.88861],[79.96161,18.86663],[79.95851,18.85942],[79.94764,18.85018],[79.94138,18.84604],[79.92825,18.84091],[79.91911,18.83382],[79.91503,18.82869],[79.91403,18.82381],[79.92412,18.8069],[79.94949,18.78915],[79.95915,18.7773],[79.96415,18.77382],[79.99305,18.76993],[79.99583,18.77082],[79.99809,18.77592],[80.00099,18.77607],[80.01854,18.77038],[80.02498,18.75494],[80.03455,18.75499],[80.03868,18.75297],[80.04141,18.74299],[80.0528,18.72506],[80.05694,18.72332],[80.06462,18.72326],[80.06926,18.71957],[80.07459,18.71052],[80.08207,18.70725],[80.08851,18.70728],[80.09904,18.69448],[80.10415,18.69157],[80.11225,18.68288],[80.11812,18.68052],[80.12438,18.68136],[80.12856,18.68743],[80.14002,18.693],[80.14846,18.69309],[80.15771,18.70098],[80.16862,18.69971],[80.17416,18.68818],[80.1787,18.68327],[80.19047,18.68046],[80.19657,18.6808],[80.19937,18.68321],[80.20043,18.69256],[80.21277,18.70572],[80.21933,18.70792],[80.22628,18.7056],[80.2304,18.70181],[80.23462,18.70263],[80.23864,18.70573],[80.25223,18.70681],[80.26501,18.7175],[80.26614,18.72055],[80.27242,18.72351],[80.25974,18.74232],[80.24475,18.75661],[80.24512,18.76086],[80.2477,18.7642],[80.25671,18.76998],[80.26217,18.7701],[80.27271,18.76576],[80.27592,18.76611],[80.28837,18.77378],[80.28845,18.77738],[80.29149,18.78347],[80.29994,18.79445],[80.30599,18.79794],[80.31401,18.79993],[80.323,18.79897],[80.3418,18.8124],[80.35141,18.81629],[80.35431,18.82646],[80.35224,18.83994],[80.34926,18.8478],[80.32619,18.8809],[80.31611,18.88876],[80.29979,18.91112],[80.2762,18.92977],[80.27025,18.93988],[80.26912,18.94867],[80.27229,18.95775],[80.27431,18.97119],[80.27341,18.99318],[80.28705,19.00682],[80.29218,19.00983],[80.30313,19.02216],[80.30516,19.02735],[80.30288,19.03491],[80.29824,19.04128],[80.29638,19.04688],[80.29734,19.04901],[80.31996,19.06588],[80.32967,19.07011],[80.32892,19.07591],[80.33114,19.08135],[80.32792,19.09505],[80.33962,19.10011],[80.33621,19.11185],[80.33068,19.12049],[80.33123,19.12795],[80.33,19.13272],[80.32743,19.13511],[80.33308,19.14552],[80.34068,19.14621],[80.34778,19.15236],[80.34789,19.16012],[80.38766,19.18051],[80.39384,19.1878],[80.39435,19.19637],[80.38393,19.21502],[80.38631,19.233],[80.38903,19.23797],[80.3955,19.24647],[80.42987,19.25408],[80.4377,19.25787],[80.44841,19.26663],[80.45473,19.27499],[80.45736,19.28834],[80.46303,19.30092],[80.47134,19.31383],[80.47705,19.32992],[80.48417,19.33971],[80.49574,19.34323],[80.50681,19.34242],[80.52033,19.34777],[80.53843,19.37779],[80.54417,19.38388],[80.5521,19.38854],[80.56248,19.3991],[80.57593,19.40236],[80.58096,19.39789],[80.5918,19.37591],[80.58822,19.37026],[80.59084,19.3577],[80.59003,19.35177],[80.60766,19.32613],[80.60789,19.31823],[80.61254,19.30952],[80.61498,19.30983],[80.62329,19.30572],[80.63151,19.30717],[80.63649,19.31333],[80.64699,19.31649],[80.64836,19.31572],[80.65405,19.32281],[80.67313,19.33001],[80.6799,19.33033],[80.68613,19.32673],[80.69315,19.31555],[80.68865,19.29517],[80.6897,19.28698],[80.6957,19.28433],[80.69931,19.28474],[80.70185,19.2821],[80.70417,19.28309],[80.71076,19.28176],[80.72656,19.28718],[80.73832,19.28546],[80.74229,19.28708],[80.74313,19.28902],[80.75096,19.28776],[80.75914,19.29103],[80.75974,19.29584],[80.76304,19.29719],[80.76861,19.30362],[80.77421,19.31358],[80.79022,19.3236],[80.79567,19.3234],[80.79883,19.32662],[80.80609,19.32751],[80.81007,19.33621],[80.83036,19.34818],[80.84608,19.35525],[80.85285,19.3639],[80.84905,19.36974],[80.84185,19.37191],[80.82839,19.38008],[80.82067,19.38116],[80.81733,19.38391],[80.81665,19.39715],[80.81223,19.40636],[80.80447,19.41195],[80.80429,19.41946],[80.79932,19.42272],[80.79585,19.43226],[80.81253,19.43276],[80.82306,19.43985],[80.82795,19.44014],[80.83013,19.44319],[80.84242,19.44691],[80.84759,19.44539],[80.85049,19.44669],[80.85345,19.44475],[80.85674,19.44604],[80.86437,19.44403],[80.87537,19.44598],[80.88877,19.46052],[80.89488,19.46964],[80.89768,19.48045],[80.89502,19.50079],[80.89294,19.5023],[80.89428,19.50369],[80.89321,19.50727],[80.89471,19.50962],[80.89496,19.51962],[80.8912,19.52051],[80.88369,19.52617],[80.87314,19.5187],[80.86851,19.52177],[80.86448,19.52004],[80.85621,19.523],[80.8499,19.52891],[80.84967,19.5345],[80.8437,19.53845],[80.8394,19.54921],[80.84065,19.55425],[80.83946,19.55941],[80.83478,19.56674],[80.82396,19.56672],[80.81615,19.5712],[80.81079,19.5689],[80.80633,19.56896],[80.797,19.56248],[80.78944,19.56042],[80.78113,19.56375],[80.77511,19.56251],[80.76703,19.57491],[80.76943,19.58667],[80.76836,19.58795],[80.76,19.59165],[80.75752,19.59667],[80.74588,19.60154],[80.74085,19.60623],[80.73308,19.6063],[80.73034,19.61018],[80.71945,19.61538],[80.71328,19.61658],[80.70567,19.61398],[80.68847,19.61317],[80.67027,19.60932],[80.66533,19.61188],[80.66262,19.62248],[80.66637,19.63799],[80.66734,19.65771],[80.67425,19.68441],[80.67222,19.70072],[80.66344,19.70593],[80.65641,19.70709],[80.6502,19.71143],[80.64013,19.72531],[80.62676,19.72578],[80.6211,19.73303],[80.61397,19.73503],[80.61106,19.73817],[80.60572,19.73673],[80.59897,19.74031],[80.59438,19.73917],[80.5901,19.74222],[80.58647,19.74114],[80.58489,19.74408],[80.58141,19.746],[80.5842,19.74737],[80.58206,19.75082],[80.57382,19.75481],[80.57146,19.75923],[80.56215,19.76097],[80.55261,19.76556],[80.54374,19.7758],[80.54261,19.77992],[80.54244,19.78345],[80.54756,19.7949],[80.54522,19.80608],[80.5462,19.81832],[80.52021,19.83172],[80.50404,19.83085],[80.50037,19.82771],[80.48058,19.82751],[80.46888,19.81045],[80.47565,19.80362],[80.48497,19.80248],[80.48595,19.79648],[80.48999,19.79015],[80.49131,19.77529],[80.48903,19.77041],[80.48266,19.77274],[80.48083,19.78129],[80.46803,19.78882],[80.46426,19.79578],[80.4493,19.78977],[80.43949,19.79606],[80.42416,19.79916],[80.40488,19.79372],[80.4017,19.7962],[80.40769,19.806],[80.40162,19.81704],[80.41306,19.81639],[80.42158,19.8134],[80.42968,19.80714],[80.44072,19.81033],[80.46007,19.82299],[80.46908,19.82702],[80.4719,19.83556],[80.47869,19.83932],[80.48102,19.84927],[80.48417,19.85423],[80.48253,19.85881],[80.48629,19.86359],[80.49952,19.86968],[80.50582,19.87065],[80.49958,19.89084],[80.49143,19.90201],[80.47414,19.90381],[80.46862,19.90756],[80.46203,19.90438],[80.45717,19.89897],[80.45038,19.89633],[80.43322,19.90284],[80.42371,19.90259],[80.41388,19.90745],[80.40795,19.91271],[80.41257,19.92464],[80.41125,19.93849],[80.43015,19.94064],[80.45216,19.9576],[80.46603,19.94818],[80.47316,19.95095],[80.47912,19.944],[80.47998,19.94092],[80.47842,19.93844],[80.48073,19.93437],[80.48875,19.93061],[80.49593,19.93106],[80.50002,19.92861],[80.50474,19.92855],[80.50965,19.93105],[80.52362,19.93379],[80.52561,19.93731],[80.52989,19.93947],[80.53164,19.94857],[80.5389,19.95189],[80.53721,19.95931],[80.53939,19.96256],[80.5358,19.96553],[80.5378,19.96956],[80.53764,19.97379],[80.54378,19.97754],[80.5496,19.98597],[80.54985,20.00081],[80.54256,20.01077],[80.54697,20.01795],[80.54587,20.02116],[80.54684,20.02898],[80.55098,20.04164],[80.54931,20.05525],[80.55109,20.06164],[80.55437,20.06543],[80.55681,20.07188],[80.55491,20.07969],[80.544,20.09564],[80.54772,20.10542],[80.55193,20.10933],[80.55207,20.11796],[80.54034,20.12285],[80.53067,20.13172],[80.51241,20.13584],[80.50993,20.1413],[80.50559,20.14444],[80.49695,20.14553],[80.48508,20.14387],[80.46616,20.15042],[80.46015,20.15094],[80.45664,20.1493],[80.45465,20.14525],[80.45545,20.13793],[80.43338,20.13533],[80.42959,20.1361],[80.42593,20.13993],[80.40182,20.14724],[80.38854,20.1652],[80.39659,20.1739],[80.40069,20.18972],[80.41211,20.19447],[80.42101,20.19617],[80.42205,20.2068],[80.40483,20.21873],[80.39519,20.23701],[80.39526,20.24501],[80.39814,20.24427],[80.41678,20.24882],[80.42205,20.25349],[80.4369,20.26117],[80.44721,20.26246],[80.46694,20.27612],[80.47913,20.2783],[80.48991,20.27826],[80.51882,20.26617],[80.52256,20.27354],[80.5322,20.28086],[80.5435,20.29353],[80.54618,20.29766],[80.54604,20.30603],[80.54958,20.30896],[80.5592,20.30851],[80.58808,20.31792],[80.61052,20.3184],[80.61485,20.32239],[80.62237,20.32541],[80.62635,20.33263],[80.6258,20.33692],[80.62158,20.33956],[80.61854,20.34473],[80.61881,20.34913],[80.61511,20.35179],[80.6159,20.35991],[80.60948,20.36985],[80.61075,20.37506],[80.6038,20.38124],[80.59658,20.38384],[80.59729,20.38596],[80.59473,20.3858],[80.59148,20.39307],[80.59892,20.41058],[80.60009,20.41801],[80.60813,20.42415],[80.61364,20.43498],[80.61289,20.43871],[80.60805,20.44388],[80.60266,20.44621],[80.60217,20.44996],[80.6126,20.46193],[80.61635,20.48836],[80.61471,20.49256],[80.61932,20.50577],[80.61722,20.51066],[80.61885,20.51434],[80.61732,20.51517],[80.62088,20.52589],[80.61796,20.52545],[80.62132,20.5328],[80.61797,20.54658],[80.61527,20.5499],[80.61774,20.55212],[80.61843,20.55529],[80.62431,20.55577],[80.62406,20.55903],[80.62659,20.56381],[80.62587,20.56846],[80.62096,20.57006],[80.62108,20.57443],[80.62555,20.57813],[80.61735,20.58575],[80.62323,20.58923],[80.62406,20.59205],[80.63187,20.59839],[80.62829,20.60009],[80.61231,20.60051],[80.60502,20.60743],[80.60141,20.60879],[80.58077,20.60836],[80.56439,20.60362],[80.55783,20.59434],[80.54497,20.59018],[80.53884,20.585],[80.52154,20.58045],[80.50441,20.58335],[80.50284,20.59382],[80.49675,20.6024],[80.49415,20.6125],[80.4942,20.62667],[80.49565,20.63685],[80.49845,20.63942],[80.52129,20.65728],[80.53078,20.66011],[80.54491,20.66028],[80.55324,20.66867],[80.55947,20.67091],[80.58013,20.67292],[80.58368,20.67662],[80.58765,20.6847],[80.5818,20.69741],[80.57485,20.70405],[80.56729,20.70737],[80.56515,20.71079],[80.56001,20.7262],[80.56284,20.734],[80.56276,20.74732],[80.55867,20.75122],[80.55166,20.76403],[80.55219,20.78087],[80.54917,20.79606],[80.55859,20.81158],[80.56181,20.82437],[80.56123,20.83058],[80.55654,20.83784],[80.55504,20.84658],[80.55653,20.86089],[80.55393,20.87158],[80.55612,20.8892],[80.5481,20.91184],[80.54178,20.92392],[80.54294,20.92535],[80.54203,20.93022],[80.54628,20.93199],[80.54613,20.93485],[80.53902,20.93258],[80.53448,20.93459],[80.51907,20.92982],[80.50327,20.93135],[80.49295,20.92933],[80.46363,20.92925],[80.46175,20.93332],[80.46175,20.93984],[80.45472,20.94659],[80.4547,20.9528],[80.44535,20.97063],[80.44376,20.97719],[80.44553,20.97977],[80.44288,20.98645],[80.44377,20.99404],[80.43518,21.00148],[80.42581,21.00597],[80.42419,21.00886],[80.4251,21.01138],[80.42888,21.01169],[80.43581,21.02023],[80.43923,21.02184],[80.44012,21.02808],[80.44472,21.02799],[80.4495,21.03032],[80.45064,21.03684],[80.45264,21.03883],[80.4512,21.04284],[80.45393,21.05306],[80.4495,21.05726],[80.44956,21.06029],[80.44718,21.06326],[80.44966,21.06918],[80.44652,21.07341],[80.44629,21.08412],[80.44087,21.08984],[80.44164,21.0936],[80.43915,21.09656],[80.44647,21.1048],[80.4478,21.11242],[80.45345,21.11268],[80.4536,21.11156],[80.45819,21.11387],[80.45474,21.11828],[80.44517,21.12068],[80.44471,21.12196],[80.45875,21.15005],[80.46104,21.15727],[80.46081,21.16476],[80.46426,21.17503],[80.47337,21.17368],[80.4757,21.17099],[80.47861,21.17068],[80.48675,21.17676],[80.49206,21.17702],[80.49361,21.1796],[80.50045,21.18273],[80.50259,21.18532],[80.50731,21.18463],[80.50927,21.18601],[80.51499,21.18303],[80.51776,21.19281],[80.52963,21.20533],[80.54144,21.20109],[80.55947,21.2021],[80.56977,21.20581],[80.5779,21.21749],[80.58758,21.2221],[80.59819,21.22548],[80.60592,21.2242],[80.61378,21.22657],[80.61702,21.22929],[80.62312,21.24009],[80.635,21.24748],[80.63926,21.24732],[80.64384,21.25147],[80.64879,21.26216],[80.64917,21.27352],[80.65071,21.27738],[80.65908,21.28195],[80.65881,21.28669],[80.66151,21.29131],[80.66997,21.29116],[80.67727,21.29602],[80.67957,21.29884],[80.6789,21.30333],[80.68156,21.31357],[80.67534,21.31775],[80.67487,21.32185],[80.6712,21.32565],[80.66556,21.32825],[80.66495,21.33187],[80.66243,21.33463],[80.65191,21.32713],[80.64491,21.32804],[80.62134,21.32037],[80.61116,21.32761],[80.60891,21.32714],[80.60786,21.32386],[80.5992,21.32712],[80.59779,21.33155],[80.58934,21.3336],[80.59142,21.34092],[80.58947,21.34372],[80.58457,21.34423],[80.58137,21.34699],[80.57657,21.34687],[80.57277,21.3428],[80.5667,21.34565],[80.56756,21.34824],[80.56503,21.3494],[80.56541,21.35399],[80.57019,21.35752],[80.56388,21.36497],[80.56074,21.36365],[80.55841,21.36734],[80.5543,21.3665],[80.55333,21.36856],[80.55083,21.36874],[80.54848,21.37114],[80.54316,21.37071],[80.5392,21.38271],[80.5318,21.38207],[80.52762,21.39487],[80.52519,21.39402],[80.52393,21.39122],[80.51712,21.3952],[80.51501,21.39176],[80.51122,21.39284],[80.50842,21.39082],[80.50168,21.3956],[80.50097,21.39851],[80.49521,21.39658],[80.48752,21.39796],[80.48419,21.39534],[80.48341,21.39881],[80.48109,21.40094],[80.47979,21.39673],[80.47647,21.3949],[80.47364,21.3969],[80.47093,21.39586],[80.46235,21.40263],[80.45756,21.40268],[80.45701,21.40046],[80.45826,21.40036],[80.4558,21.39826],[80.45632,21.39611],[80.4542,21.39526],[80.44973,21.38732],[80.45174,21.37806],[80.44863,21.37205],[80.44612,21.37109],[80.43705,21.37268],[80.43246,21.37383],[80.43061,21.37626],[80.41694,21.3752],[80.41224,21.37672],[80.40676,21.3817],[80.39638,21.40298],[80.39604,21.40811],[80.39812,21.4123],[80.40857,21.41842],[80.40891,21.42104],[80.4046,21.42502],[80.42216,21.44054],[80.4187,21.4426],[80.41799,21.4485],[80.41389,21.45731],[80.41108,21.45988],[80.40906,21.46737],[80.40372,21.46753],[80.39722,21.47159],[80.39042,21.47941],[80.39211,21.4867],[80.38397,21.4901],[80.38477,21.49974],[80.37878,21.51381],[80.37719,21.52225],[80.36015,21.53446],[80.34434,21.53867],[80.33131,21.54754],[80.33068,21.55118],[80.33931,21.55508],[80.33191,21.56093],[80.32775,21.5714],[80.31823,21.57712],[80.30325,21.5748],[80.29806,21.57581],[80.29523,21.58136],[80.29407,21.59332],[80.2813,21.59605],[80.27014,21.61606],[80.25345,21.62475],[80.25,21.62418],[80.24584,21.62049],[80.23529,21.6224],[80.22148,21.62097],[80.21689,21.62565],[80.21898,21.62887],[80.21746,21.63343],[80.21452,21.63017],[80.20883,21.63523],[80.19278,21.63545],[80.18763,21.62854],[80.16909,21.62214],[80.1602,21.61066],[80.15462,21.60647],[80.14411,21.60578],[80.12786,21.61159],[80.11971,21.60988],[80.11797,21.60759],[80.11821,21.59852],[80.11606,21.59325],[80.11072,21.59084],[80.10124,21.58999],[80.09633,21.58504],[80.09013,21.57455],[80.07221,21.55679],[80.06669,21.5542],[80.05611,21.55343],[80.04451,21.55624],[80.03287,21.55621],[80.0041,21.53546],[79.99681,21.53362],[79.9887,21.53693],[79.97952,21.55052],[79.97148,21.55772],[79.96389,21.55835],[79.94821,21.55417],[79.9359,21.55624],[79.92977,21.55258],[79.92219,21.5418],[79.91846,21.52454],[79.9097,21.52277],[79.897,21.52438],[79.89124,21.51819],[79.88224,21.52622],[79.87319,21.52954],[79.86313,21.5308],[79.8507,21.54082],[79.83125,21.54692],[79.82856,21.54887],[79.82151,21.56154],[79.79207,21.58659],[79.7543,21.59549],[79.74186,21.603],[79.73763,21.60386],[79.73281,21.60302],[79.72494,21.59581],[79.71816,21.59306],[79.71201,21.59187],[79.69907,21.5929],[79.69501,21.58539],[79.68955,21.58096],[79.67543,21.5823],[79.66094,21.5769],[79.65837,21.56375],[79.65527,21.55811],[79.65205,21.55598],[79.63959,21.55297],[79.62226,21.55757],[79.6185,21.55726],[79.59997,21.54948],[79.59164,21.54788],[79.58138,21.5413],[79.57598,21.542],[79.56581,21.54764],[79.54061,21.54268],[79.538,21.54551],[79.53752,21.54875],[79.54393,21.55952],[79.54251,21.56823],[79.53206,21.57502],[79.52864,21.57935],[79.51824,21.58036],[79.51203,21.58397],[79.51008,21.59566],[79.511,21.60488],[79.50439,21.61124],[79.50371,21.61459],[79.50713,21.62132],[79.51662,21.62085],[79.51723,21.62575],[79.5161,21.63138],[79.50777,21.63435],[79.50657,21.63896],[79.50427,21.6411],[79.50676,21.64567],[79.50134,21.65171],[79.50135,21.65979],[79.49621,21.66541],[79.49621,21.67422],[79.48072,21.67784],[79.46073,21.68755],[79.4495,21.68206],[79.43525,21.68283],[79.42799,21.68975],[79.4222,21.69182],[79.41566,21.69116],[79.41012,21.68475],[79.40271,21.68221],[79.40044,21.67677],[79.39609,21.67651],[79.39249,21.67412],[79.37465,21.67841],[79.357,21.67925],[79.35237,21.67806],[79.35427,21.68483],[79.34289,21.68396],[79.32455,21.68797],[79.32224,21.68523],[79.31826,21.68851],[79.31141,21.68827],[79.29669,21.69331],[79.29059,21.69254],[79.2886,21.69528],[79.2858,21.69547],[79.28051,21.70172],[79.27791,21.70937],[79.26807,21.71541],[79.24496,21.72148],[79.24193,21.72018],[79.23119,21.72228],[79.23086,21.71875],[79.23522,21.71752],[79.23737,21.71341],[79.23394,21.70858],[79.22679,21.70368],[79.22086,21.69287],[79.22182,21.67704],[79.22906,21.67398],[79.23118,21.67035],[79.23131,21.65698],[79.23031,21.65572],[79.22411,21.65543],[79.22402,21.6488],[79.20899,21.65006],[79.14831,21.66117],[79.14824,21.65087],[79.14528,21.64669],[79.1433,21.63696],[79.13452,21.63321],[79.13034,21.62581],[79.1239,21.62659],[79.12289,21.62493],[79.11862,21.62382],[79.11211,21.62391],[79.10053,21.6176],[79.10207,21.60923],[79.10694,21.60721],[79.10721,21.60503],[79.103,21.60149],[79.09336,21.60161],[79.09396,21.59811],[79.08965,21.59757],[79.08851,21.60395],[79.07647,21.6054],[79.05825,21.60151],[79.05537,21.60148],[79.05294,21.60416],[79.04769,21.60244],[79.04188,21.60473],[79.02484,21.60169],[79.01921,21.60259],[79.01237,21.59945],[79.00291,21.60642],[78.99801,21.61857],[78.99596,21.61696],[78.98714,21.61596],[78.97552,21.61764],[78.97426,21.6128],[78.96993,21.61052],[78.96512,21.60489],[78.952,21.59717],[78.94742,21.59672],[78.94393,21.59215],[78.92997,21.59284],[78.92767,21.5902],[78.91676,21.59092],[78.91571,21.58866],[78.91435,21.58899],[78.9163,21.58759],[78.91652,21.58493],[78.91505,21.58299],[78.91375,21.57099],[78.93194,21.56452],[78.93186,21.56176],[78.92792,21.55958],[78.91817,21.56114],[78.91274,21.5553],[78.9068,21.55326],[78.91338,21.55078],[78.91255,21.54886],[78.9186,21.54713],[78.92555,21.54082],[78.92987,21.54036],[78.92593,21.53269],[78.92743,21.52225],[78.9318,21.52367],[78.93543,21.52283],[78.94439,21.51588],[78.94467,21.51266],[78.9413,21.5113],[78.94025,21.50787],[78.93924,21.49354],[78.93669,21.48577],[78.92306,21.48745],[78.9174,21.49225],[78.89926,21.50046],[78.89518,21.49828],[78.89084,21.48526],[78.87152,21.48969],[78.86763,21.49131],[78.86803,21.49408],[78.86331,21.4927],[78.85586,21.49462],[78.85619,21.49284],[78.85191,21.48972],[78.84844,21.49003],[78.84105,21.487],[78.82975,21.49017],[78.81979,21.48726],[78.81557,21.4877],[78.81516,21.49064],[78.80026,21.49016],[78.79599,21.48554],[78.78998,21.48639],[78.78869,21.48089],[78.78698,21.48089],[78.78663,21.47934],[78.78015,21.47887],[78.77877,21.46936],[78.77613,21.46458],[78.7719,21.47168],[78.7716,21.47672],[78.76881,21.4775],[78.7666,21.4828],[78.76687,21.48904],[78.75663,21.49024],[78.75085,21.49298],[78.74495,21.48101],[78.74559,21.47019],[78.73343,21.46969],[78.731,21.46381],[78.72847,21.46229],[78.70756,21.47063],[78.70738,21.47391],[78.69984,21.47381],[78.70167,21.47632],[78.69335,21.47909],[78.68849,21.47794],[78.69014,21.4802],[78.68891,21.48197],[78.67094,21.48009],[78.66712,21.47709],[78.65931,21.48138],[78.64343,21.48552],[78.62868,21.47568],[78.61997,21.47826],[78.61918,21.48157],[78.60877,21.48906],[78.60301,21.48809],[78.60098,21.4854],[78.59475,21.48848],[78.58534,21.48672],[78.58415,21.49006],[78.58177,21.48995],[78.58249,21.4923],[78.57636,21.49787],[78.57172,21.4989],[78.57315,21.50156],[78.56785,21.50579],[78.56702,21.5097],[78.57015,21.51425],[78.56002,21.51328],[78.55653,21.51555],[78.55598,21.51762],[78.54973,21.51828],[78.54067,21.52372],[78.53076,21.52326],[78.51164,21.52869],[78.50926,21.52602],[78.50472,21.52679],[78.50061,21.51709],[78.49503,21.51725],[78.48694,21.50777],[78.48685,21.50553],[78.4757,21.50571],[78.47522,21.50097],[78.46966,21.50087],[78.46365,21.50383],[78.46068,21.50348],[78.45709,21.49607],[78.453,21.49683],[78.44965,21.49552],[78.44831,21.4998],[78.4445,21.50172],[78.43955,21.5023],[78.4365,21.4995],[78.43391,21.5062],[78.43444,21.51049],[78.43205,21.51444],[78.43705,21.51595],[78.43846,21.51785],[78.43075,21.52489],[78.42979,21.52767],[78.43399,21.53122],[78.43464,21.53409],[78.42424,21.54444],[78.42789,21.55943],[78.42539,21.56527],[78.42536,21.56993],[78.41871,21.57079],[78.41906,21.57985],[78.42159,21.59104],[78.42719,21.59921],[78.41657,21.60111],[78.41266,21.60553],[78.40692,21.60879],[78.39509,21.60761],[78.39285,21.60934],[78.39213,21.61401],[78.3869,21.61479],[78.37264,21.61345],[78.38162,21.59204],[78.3778,21.58373],[78.36306,21.5752],[78.35542,21.57332],[78.34894,21.57863],[78.34852,21.58067],[78.34542,21.58176],[78.34275,21.58906],[78.32661,21.575],[78.32031,21.57205],[78.30817,21.57151],[78.30705,21.56957],[78.30395,21.57045],[78.30297,21.58374],[78.29121,21.58323],[78.28115,21.58524],[78.27522,21.59182],[78.27182,21.59066],[78.26648,21.59173],[78.2644,21.59127],[78.26137,21.58674],[78.2603,21.57966],[78.27327,21.57121],[78.27386,21.56925],[78.24805,21.56232],[78.23958,21.56307],[78.23192,21.55675],[78.22328,21.55316],[78.20547,21.55297],[78.18189,21.55734],[78.17421,21.54726],[78.17286,21.53875],[78.1755,21.5281],[78.17125,21.52558],[78.18263,21.51175],[78.1773,21.5078],[78.17447,21.50798],[78.17621,21.49975],[78.13655,21.47816],[78.12587,21.46984],[78.11335,21.46346],[78.09873,21.45865],[78.08318,21.44602],[78.06606,21.43797],[78.04602,21.43398],[78.04029,21.42845],[78.03009,21.42214],[78.02132,21.41912],[78.01424,21.41856],[78.0091,21.41511],[78.00127,21.41469],[77.98473,21.40319],[77.96512,21.40221],[77.94259,21.39661],[77.94051,21.39037],[77.94119,21.38577],[77.92759,21.38599],[77.91209,21.38113],[77.907,21.37784],[77.88843,21.3781],[77.88327,21.37604],[77.88385,21.38417],[77.86758,21.38787],[77.8568,21.38852],[77.85637,21.39019],[77.84728,21.3925],[77.84262,21.3972],[77.82262,21.40733],[77.80115,21.4096],[77.79828,21.40491],[77.79677,21.38901],[77.76388,21.3814],[77.76122,21.38517],[77.75004,21.38283],[77.74605,21.37849],[77.74057,21.36542],[77.73838,21.36477],[77.73711,21.3622],[77.72329,21.36167],[77.70999,21.35745],[77.70676,21.3682],[77.70739,21.37505],[77.7047,21.377],[77.7006,21.37367],[77.69741,21.3743],[77.69517,21.37876],[77.69708,21.39271],[77.69548,21.39637],[77.69199,21.39757],[77.67866,21.37691],[77.66991,21.36892],[77.66438,21.37451],[77.66648,21.38405],[77.65592,21.38614],[77.65313,21.39146],[77.64936,21.39207],[77.64326,21.38692],[77.63977,21.3887],[77.63265,21.38881],[77.61726,21.38712],[77.6139,21.39205],[77.60497,21.39073],[77.60343,21.38984],[77.60617,21.37357],[77.60826,21.37049],[77.60785,21.36494],[77.60513,21.36244],[77.59482,21.36303],[77.59182,21.36504],[77.58711,21.36284],[77.58528,21.36679],[77.57343,21.37093],[77.57114,21.36867],[77.5635,21.36931],[77.56281,21.37534],[77.55678,21.38364],[77.55967,21.39055],[77.56252,21.39041],[77.56324,21.39315],[77.56146,21.39646],[77.55344,21.4034],[77.54766,21.40532],[77.54829,21.41131],[77.54269,21.41115],[77.53591,21.4177],[77.53172,21.41915],[77.52924,21.4153],[77.52786,21.40563],[77.52473,21.40293],[77.52539,21.39565],[77.52329,21.38894],[77.51854,21.38392],[77.51671,21.38402],[77.51452,21.37594],[77.50221,21.37719],[77.48806,21.37436],[77.48987,21.37796],[77.48694,21.3859],[77.48751,21.40622],[77.47955,21.42025],[77.4766,21.43179],[77.47165,21.43613],[77.47435,21.44659],[77.47171,21.45029],[77.4736,21.45445],[77.46591,21.45982],[77.45982,21.46662],[77.44219,21.46991],[77.44147,21.47505],[77.43874,21.47865],[77.44219,21.48062],[77.44332,21.48725],[77.43539,21.49958],[77.42944,21.50471],[77.42231,21.51748],[77.42252,21.53256],[77.42556,21.53774],[77.44005,21.54478],[77.45009,21.54168],[77.45632,21.54623],[77.45412,21.54958],[77.45489,21.55384],[77.46619,21.55329],[77.47397,21.54952],[77.50519,21.55167],[77.5213,21.54097],[77.53722,21.53652],[77.54714,21.53672],[77.57523,21.52646],[77.59677,21.52711],[77.61148,21.53882],[77.60874,21.54819],[77.59529,21.55943],[77.58214,21.55378],[77.57711,21.55517],[77.57412,21.56469],[77.57464,21.57228],[77.57696,21.57729],[77.57545,21.58144],[77.57268,21.61598],[77.57552,21.62064],[77.5725,21.6287],[77.56417,21.64188],[77.5611,21.6673],[77.55386,21.67896],[77.55097,21.68078],[77.54767,21.69402],[77.5421,21.70614],[77.53322,21.71135],[77.52702,21.71091],[77.52402,21.71262],[77.5231,21.71972],[77.52555,21.72431],[77.51971,21.72524],[77.51196,21.7322],[77.5086,21.73821],[77.50454,21.73944],[77.50221,21.74342],[77.50259,21.74593],[77.49495,21.74831],[77.49051,21.74698],[77.47947,21.75415],[77.47974,21.75944],[77.47795,21.76283],[77.48217,21.76385],[77.48337,21.76595],[77.47909,21.76999],[77.46048,21.76342],[77.45629,21.76021],[77.42946,21.75771],[77.41707,21.75348],[77.40417,21.75242],[77.38124,21.75309],[77.3757,21.75492],[77.37305,21.75372],[77.35903,21.75415],[77.34568,21.75778],[77.32443,21.75274],[77.31579,21.75657],[77.29936,21.75596],[77.28989,21.76034],[77.28047,21.75858],[77.27973,21.75422],[77.28026,21.74908],[77.28729,21.74472],[77.28422,21.7369],[77.29114,21.73285],[77.28722,21.72192],[77.27926,21.72406],[77.27188,21.72814],[77.26756,21.72504],[77.26188,21.71229],[77.25147,21.7128],[77.24438,21.71643],[77.24249,21.7147],[77.23554,21.71635],[77.2323,21.71498],[77.22691,21.71679],[77.22775,21.69953],[77.22078,21.69651],[77.21883,21.69395],[77.21288,21.69501],[77.21042,21.68965],[77.20313,21.69277],[77.19889,21.69778],[77.18813,21.70171],[77.1913,21.71261],[77.19145,21.72075],[77.17603,21.72575],[77.1721,21.72485],[77.1696,21.72225],[77.16964,21.71429],[77.16512,21.71074],[77.14772,21.71252],[77.13919,21.71981],[77.12957,21.72224],[77.1173,21.72149],[77.10796,21.71829],[77.08654,21.71442],[77.07922,21.71994],[77.07322,21.71945],[77.06856,21.71579],[77.06247,21.70718],[77.04363,21.69977],[77.01501,21.68228],[77.00656,21.67914],[76.99649,21.67237],[76.9901,21.6649],[76.97641,21.65738],[76.97237,21.65135],[76.95323,21.64213],[76.94231,21.63209],[76.92836,21.6243],[76.91289,21.61176],[76.90995,21.60832],[76.90863,21.60275],[76.90162,21.59684],[76.89722,21.5961],[76.88569,21.60008],[76.86865,21.60876],[76.85449,21.61332],[76.8499,21.61211],[76.84471,21.6075],[76.8394,21.59331],[76.83291,21.58895],[76.82738,21.58829],[76.80065,21.59495],[76.79526,21.59391],[76.79105,21.58158],[76.784,21.57409],[76.78141,21.56472],[76.78174,21.55158],[76.7891,21.54067],[76.78933,21.53638],[76.78137,21.5293],[76.76881,21.52657],[76.76344,21.52077],[76.7729,21.50572],[76.78073,21.50559],[76.78421,21.50128],[76.78776,21.50114],[76.78767,21.49759],[76.79561,21.48958],[76.79377,21.47965],[76.79138,21.48008],[76.78785,21.47749],[76.78603,21.46582],[76.78402,21.46237],[76.78128,21.45934],[76.76181,21.4523],[76.75496,21.44557],[76.74443,21.43987],[76.73839,21.42969],[76.74102,21.42818],[76.73793,21.4222],[76.74054,21.41757],[76.73958,21.41413],[76.74095,21.41288],[76.73951,21.41056],[76.7262,21.40474],[76.68282,21.37841],[76.62175,21.33229],[76.64563,21.30108],[76.64738,21.30165],[76.65349,21.29352],[76.65482,21.28976],[76.66269,21.28068],[76.6629,21.27596],[76.66164,21.24071],[76.64968,21.24468],[76.64183,21.23713],[76.63481,21.2191],[76.63427,21.21368],[76.63722,21.20271],[76.62349,21.18504],[76.61388,21.19322],[76.60603,21.19034],[76.59955,21.19075],[76.56726,21.19939],[76.56069,21.19862],[76.55177,21.19207],[76.53578,21.18623],[76.53026,21.18193],[76.51102,21.18979],[76.50833,21.19303],[76.5072,21.18872],[76.50254,21.18746],[76.50096,21.18977],[76.5026,21.19321],[76.49878,21.19375],[76.4979,21.19128],[76.49337,21.19394],[76.48066,21.18216],[76.47873,21.14739],[76.46655,21.14266],[76.46823,21.13835],[76.47439,21.13698],[76.46945,21.13366],[76.45814,21.13328],[76.45642,21.12501],[76.45176,21.12125],[76.45537,21.11509],[76.45556,21.10807],[76.44105,21.1062],[76.43783,21.10047],[76.43017,21.10241],[76.4107,21.10244],[76.41262,21.09773],[76.41319,21.08842],[76.40794,21.08941],[76.40422,21.08744],[76.39033,21.08577],[76.38243,21.07962],[76.38424,21.07629],[76.37477,21.07255],[76.37096,21.07273],[76.36631,21.07606],[76.35142,21.07699],[76.33858,21.07152],[76.29985,21.07384],[76.28013,21.07069],[76.27263,21.08874],[76.26038,21.09058],[76.24497,21.09044],[76.23058,21.08833],[76.22466,21.08498],[76.21181,21.08738],[76.20463,21.08539],[76.19248,21.0867],[76.18589,21.08488],[76.18064,21.08031],[76.1674,21.07948],[76.16843,21.08567],[76.17385,21.08968],[76.17044,21.09388],[76.17089,21.10393],[76.16348,21.10488],[76.15862,21.1094],[76.15382,21.10805],[76.13793,21.11985],[76.13232,21.12744],[76.13163,21.1328],[76.13541,21.12921],[76.13715,21.13189],[76.14101,21.12971],[76.14247,21.13515],[76.1347,21.14266],[76.133,21.14823],[76.12838,21.15265],[76.12006,21.15547],[76.11656,21.1538],[76.11348,21.15539],[76.11141,21.16115],[76.11158,21.16677],[76.1138,21.16616],[76.11888,21.17159],[76.12283,21.17312],[76.12379,21.17182],[76.12926,21.17582],[76.13333,21.17596],[76.13386,21.16941],[76.16629,21.16951],[76.16798,21.16638],[76.17169,21.16656],[76.17146,21.17954],[76.1764,21.184],[76.17306,21.18857],[76.16521,21.19047],[76.16629,21.19972],[76.17161,21.19896],[76.17192,21.2053],[76.1697,21.20541],[76.1697,21.20665],[76.16334,21.20651],[76.16326,21.21313],[76.15864,21.21359],[76.16566,21.22162],[76.14204,21.22816],[76.14156,21.24099],[76.1454,21.24365],[76.15143,21.24353],[76.15061,21.2464],[76.15358,21.24622],[76.15226,21.24846],[76.155,21.24967],[76.15387,21.25193],[76.15733,21.25139],[76.15941,21.25359],[76.15936,21.25597],[76.15718,21.25961],[76.15559,21.25702],[76.15429,21.2577],[76.154,21.26513],[76.15193,21.26446],[76.15116,21.26799],[76.14848,21.26906],[76.14663,21.26787],[76.14293,21.28623],[76.12974,21.2867],[76.1259,21.29852],[76.12147,21.32337],[76.11894,21.32597],[76.11668,21.33495],[76.0966,21.37177],[76.04898,21.34972],[76.0305,21.36533],[75.98662,21.36877],[75.96306,21.38971],[75.95222,21.38958],[75.94171,21.38584],[75.92901,21.38659],[75.91066,21.38257],[75.90324,21.3917],[75.89419,21.39129],[75.89003,21.39471],[75.87035,21.39123],[75.86978,21.3864],[75.86415,21.3811],[75.86256,21.38216],[75.86246,21.37992],[75.85604,21.3802],[75.85571,21.38232],[75.85316,21.38338],[75.84794,21.38134],[75.84332,21.38195],[75.84139,21.38454],[75.83417,21.37957],[75.83336,21.37664],[75.83071,21.37696],[75.83073,21.37821],[75.81304,21.37906],[75.80273,21.38457],[75.80093,21.38335],[75.79042,21.3846],[75.78783,21.38281],[75.78646,21.38413],[75.77702,21.38452],[75.77382,21.38205],[75.75514,21.37938],[75.75113,21.38466],[75.73656,21.38827],[75.73253,21.38711],[75.72847,21.38868],[75.71877,21.38436],[75.71617,21.3856],[75.71576,21.38798],[75.70949,21.38619],[75.70324,21.38807],[75.6928,21.38369],[75.69223,21.38487],[75.68761,21.38408],[75.6848,21.38025],[75.67375,21.37708],[75.67009,21.37458],[75.66585,21.37745],[75.65922,21.37641],[75.65772,21.37877],[75.64817,21.37699],[75.64661,21.37874],[75.64127,21.37488],[75.63641,21.37742],[75.62303,21.37502],[75.62352,21.37708],[75.62002,21.37596],[75.6198,21.37897],[75.61667,21.38177],[75.61632,21.38809],[75.61051,21.3907],[75.60729,21.38895],[75.60694,21.39184],[75.60364,21.39123],[75.59921,21.38565],[75.59653,21.38771],[75.59169,21.38624],[75.58734,21.38923],[75.58155,21.38464],[75.57234,21.38247],[75.57145,21.37951],[75.57848,21.37895],[75.57994,21.37774],[75.57895,21.37648],[75.56577,21.37414],[75.56215,21.37629],[75.55717,21.37322],[75.5564,21.37461],[75.55827,21.37852],[75.55593,21.37903],[75.55242,21.3753],[75.54617,21.37242],[75.54645,21.36881],[75.54372,21.36853],[75.5412,21.36934],[75.54138,21.37341],[75.53502,21.37357],[75.53086,21.3787],[75.52551,21.38005],[75.52005,21.38702],[75.51201,21.38209],[75.49755,21.38751],[75.49416,21.38561],[75.47575,21.38658],[75.46794,21.39045],[75.45755,21.38745],[75.44933,21.39041],[75.44015,21.38446],[75.43118,21.38671],[75.42613,21.39101],[75.4204,21.38782],[75.40779,21.38738],[75.39792,21.37988],[75.39018,21.38087],[75.38244,21.37954],[75.37591,21.38661],[75.37541,21.39049],[75.37044,21.39209],[75.36597,21.39649],[75.35716,21.40087],[75.35563,21.40015],[75.35438,21.39316],[75.3516,21.39083],[75.33194,21.39136],[75.31541,21.38793],[75.30785,21.39279],[75.29874,21.38557],[75.29624,21.39023],[75.30013,21.3917],[75.29858,21.40122],[75.3011,21.40994],[75.29533,21.41357],[75.28737,21.41188],[75.28017,21.40723],[75.26422,21.4074],[75.25484,21.40189],[75.24907,21.40348],[75.2414,21.41155],[75.23465,21.41458],[75.2287,21.41426],[75.22119,21.40849],[75.21892,21.40834],[75.20692,21.41272],[75.17999,21.43055],[75.17012,21.43157],[75.12583,21.44926],[75.10716,21.46269],[75.10775,21.46667],[75.10195,21.47428],[75.09745,21.48819],[75.08846,21.50088],[75.08978,21.50346],[75.08921,21.51676],[75.08665,21.51585],[75.08682,21.51789],[75.05332,21.56482],[75.01502,21.56968],[75.01534,21.57523],[74.99906,21.58565],[74.97923,21.59524],[74.93534,21.60598],[74.91033,21.61457],[74.90168,21.62924],[74.89792,21.62826],[74.89139,21.63065],[74.89011,21.62929],[74.88733,21.63159],[74.88589,21.62941],[74.88402,21.63106],[74.87884,21.63008],[74.87803,21.62852],[74.87547,21.63074],[74.87199,21.62982],[74.87181,21.63182],[74.86798,21.63101],[74.8679,21.62848],[74.86538,21.62856],[74.86276,21.63445],[74.85668,21.6266],[74.84988,21.62388],[74.8381,21.62211],[74.83934,21.61881],[74.83133,21.61829],[74.8306,21.61171],[74.82886,21.60979],[74.82649,21.61141],[74.81959,21.6087],[74.81285,21.61078],[74.81232,21.61384],[74.80811,21.61223],[74.80687,21.61463],[74.80285,21.61411],[74.80217,21.6154],[74.79963,21.61435],[74.79808,21.60992],[74.78988,21.61276],[74.78287,21.61069],[74.77536,21.61549],[74.73412,21.62072],[74.70075,21.62758],[74.69989,21.63011],[74.69318,21.63281],[74.68746,21.63159],[74.68516,21.63365],[74.68396,21.6395],[74.67545,21.64472],[74.67747,21.64543],[74.67483,21.6465],[74.67104,21.64552],[74.66836,21.64828],[74.66488,21.6473],[74.66413,21.65253],[74.6224,21.65679],[74.61751,21.66047],[74.58208,21.66499],[74.58386,21.6733],[74.57987,21.68333],[74.56238,21.68343],[74.56238,21.68115],[74.5542,21.68136],[74.55416,21.68573],[74.55756,21.6874],[74.5549,21.69086],[74.55657,21.69282],[74.55538,21.69699],[74.55751,21.70427],[74.556,21.70432],[74.54737,21.7196],[74.53323,21.71689],[74.51386,21.71861],[74.50559,21.72631],[74.50802,21.72754],[74.50772,21.73168],[74.51107,21.73531],[74.51002,21.73743],[74.51204,21.74521],[74.50897,21.75],[74.51309,21.75658],[74.51163,21.75985],[74.51395,21.76569],[74.50972,21.77282],[74.50164,21.78152],[74.49821,21.79009],[74.49974,21.79239],[74.50021,21.80652],[74.50661,21.81638],[74.51001,21.82927],[74.51389,21.86266],[74.51364,21.88997],[74.5228,21.89909],[74.52421,21.91058],[74.51681,21.91582],[74.51266,21.9156],[74.50923,21.92064],[74.51256,21.93189],[74.50839,21.93734],[74.5,21.9393],[74.49712,21.94174],[74.49522,21.94681],[74.48908,21.94341],[74.48467,21.94581],[74.48449,21.94741],[74.49047,21.95123],[74.48873,21.95617],[74.48203,21.95475],[74.48159,21.95917],[74.47384,21.96104],[74.4691,21.95964],[74.46872,21.96108],[74.47137,21.96364],[74.46972,21.9671],[74.4676,21.96558],[74.46385,21.96607],[74.46109,21.96145],[74.45338,21.96194],[74.44451,21.97039],[74.44469,21.97548],[74.43939,21.97672],[74.43883,21.98717],[74.44146,21.99004],[74.43882,21.99089],[74.43978,21.99472],[74.43815,21.99734],[74.43309,21.99764],[74.43233,21.9994],[74.43798,22.00007],[74.44234,22.00318],[74.44536,22.0005],[74.44741,22.00063],[74.45219,22.00423],[74.45142,22.0059],[74.44916,22.00596],[74.44801,22.00919],[74.44363,22.01117],[74.44387,22.01663],[74.43874,22.02084],[74.44369,22.02241]],[[77.26759,18.45811],[77.27127,18.46577],[77.27215,18.47296],[77.27503,18.47773],[77.28051,18.47478],[77.28682,18.47436],[77.28915,18.4765],[77.29629,18.4771],[77.29995,18.47418],[77.29953,18.46488],[77.29613,18.46347],[77.29429,18.45875],[77.28898,18.45533],[77.28485,18.45612],[77.28022,18.45362],[77.27127,18.45397],[77.26747,18.45461],[77.26759,18.45811]],[[74.28485,15.83079],[74.29117,15.83214],[74.30337,15.80666],[74.31291,15.7982],[74.31176,15.79326],[74.30234,15.78746],[74.29787,15.79097],[74.29673,15.79414],[74.2933,15.79527],[74.28915,15.79142],[74.28982,15.78773],[74.28543,15.78795],[74.27486,15.79609],[74.27104,15.79502],[74.26647,15.7978],[74.26794,15.80027],[74.26619,15.80978],[74.26899,15.81657],[74.26166,15.82959],[74.27819,15.82928],[74.28485,15.83079]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"28","area_level":"State","area_name":"Andhra Pradesh","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[84.67778,19.16639],[84.67419,19.16646],[84.67252,19.16455],[84.67091,19.16604],[84.66874,19.16299],[84.66793,19.15417],[84.67102,19.15623],[84.67166,19.14822],[84.66974,19.13794],[84.66669,19.13184],[84.66732,19.12986],[84.65995,19.1315],[84.65426,19.12937],[84.64408,19.13372],[84.64363,19.12971],[84.63102,19.12968],[84.62978,19.12668],[84.61416,19.12789],[84.6072,19.12918],[84.60328,19.13193],[84.59553,19.13245],[84.59601,19.12879],[84.60285,19.12662],[84.60186,19.12318],[84.60552,19.11754],[84.60841,19.10753],[84.61128,19.10685],[84.60955,19.10078],[84.61867,19.10008],[84.61965,19.1044],[84.62548,19.09909],[84.6249,19.09564],[84.62268,19.09386],[84.62501,19.09166],[84.62411,19.08831],[84.626,19.08767],[84.62549,19.08491],[84.63042,19.08439],[84.63193,19.08656],[84.6312,19.0821],[84.63433,19.08867],[84.63678,19.08595],[84.63684,19.08974],[84.64424,19.09291],[84.64704,19.09626],[84.65319,19.09309],[84.65897,19.09443],[84.65868,19.09196],[84.66388,19.08757],[84.66347,19.0824],[84.67085,19.07633],[84.66948,19.07438],[84.66308,19.07461],[84.66113,19.06304],[84.65758,19.06431],[84.65796,19.06556],[84.65467,19.0659],[84.65394,19.06754],[84.64161,19.06727],[84.63711,19.05998],[84.63101,19.06042],[84.62987,19.0617],[84.63064,19.0646],[84.62782,19.06621],[84.61831,19.06587],[84.61705,19.06093],[84.62243,19.05985],[84.62074,19.05614],[84.61761,19.05453],[84.61343,19.05657],[84.61281,19.05353],[84.61427,19.05194],[84.60585,19.0417],[84.60198,19.03244],[84.6009,19.02479],[84.59693,19.02595],[84.59486,19.02497],[84.59415,19.02226],[84.59154,19.02296],[84.58167,19.03009],[84.58126,19.03752],[84.58329,19.04248],[84.57729,19.04047],[84.57868,19.04566],[84.58305,19.04924],[84.58152,19.05302],[84.58182,19.05891],[84.58046,19.06002],[84.58338,19.06815],[84.5831,19.07273],[84.5747,19.06757],[84.57158,19.06958],[84.57388,19.07327],[84.57286,19.07372],[84.5566,19.05658],[84.54327,19.05505],[84.52613,19.04604],[84.52412,19.0487],[84.51638,19.04843],[84.51173,19.04024],[84.50532,19.03386],[84.50047,19.03317],[84.49437,19.029],[84.48877,19.01951],[84.48502,19.01924],[84.48264,19.01657],[84.48293,19.00487],[84.47889,18.98846],[84.47603,18.98804],[84.47434,18.99176],[84.47027,18.99142],[84.46678,18.99388],[84.46489,18.99373],[84.46474,18.99161],[84.46059,18.99306],[84.46036,18.99678],[84.45582,18.99733],[84.45438,19.0],[84.44961,19.003],[84.44483,19.00445],[84.44161,19.00353],[84.44056,19.00741],[84.43712,19.00713],[84.4316,19.01348],[84.42458,19.01395],[84.42573,19.01921],[84.42109,19.02199],[84.42201,19.01275],[84.42406,19.0132],[84.42824,19.00767],[84.4325,19.00655],[84.43222,18.99505],[84.4433,18.9905],[84.44468,18.98326],[84.45243,18.97598],[84.44773,18.97557],[84.44505,18.97324],[84.44605,18.97193],[84.44168,18.96865],[84.43734,18.97037],[84.43107,18.96919],[84.42941,18.96486],[84.432,18.96229],[84.43243,18.95909],[84.42601,18.95275],[84.42422,18.94725],[84.43103,18.93585],[84.42768,18.93209],[84.43857,18.93157],[84.43947,18.92708],[84.43802,18.92046],[84.43111,18.91666],[84.42839,18.90902],[84.42443,18.91035],[84.42053,18.91767],[84.41857,18.91732],[84.41676,18.9146],[84.42047,18.91089],[84.42219,18.90541],[84.42134,18.90116],[84.41802,18.8972],[84.41288,18.89717],[84.40971,18.89512],[84.40009,18.89531],[84.39412,18.90081],[84.39353,18.90433],[84.38556,18.90036],[84.37893,18.90422],[84.37814,18.90329],[84.38505,18.89783],[84.38515,18.89592],[84.39033,18.89582],[84.39596,18.89307],[84.39752,18.89028],[84.39833,18.88368],[84.39761,18.88204],[84.39518,18.88202],[84.39537,18.87977],[84.39213,18.8763],[84.38811,18.88424],[84.38148,18.88643],[84.38335,18.88286],[84.38256,18.88142],[84.37427,18.88652],[84.37068,18.88662],[84.36495,18.88969],[84.36027,18.89455],[84.36255,18.88715],[84.37259,18.87807],[84.37882,18.87815],[84.3842,18.87414],[84.37899,18.8717],[84.37733,18.86451],[84.37423,18.86139],[84.3699,18.86084],[84.3665,18.86402],[84.3645,18.86133],[84.36206,18.86088],[84.35779,18.8693],[84.35605,18.86935],[84.33681,18.89021],[84.33053,18.88322],[84.3256,18.87609],[84.33094,18.86769],[84.33306,18.86051],[84.34163,18.85426],[84.34499,18.84905],[84.36123,18.84216],[84.36126,18.8389],[84.36385,18.83712],[84.3596,18.83121],[84.35211,18.83149],[84.35066,18.82775],[84.35201,18.82711],[84.35125,18.8227],[84.34941,18.82006],[84.34266,18.82222],[84.33932,18.81969],[84.3341,18.81996],[84.33437,18.81771],[84.33106,18.81785],[84.33105,18.81501],[84.33424,18.81519],[84.33692,18.81156],[84.34183,18.80898],[84.34455,18.8018],[84.33901,18.80226],[84.3381,18.80045],[84.33613,18.80107],[84.33645,18.79844],[84.32659,18.79879],[84.32454,18.79484],[84.32493,18.79044],[84.32126,18.78649],[84.31259,18.79037],[84.30898,18.79414],[84.30592,18.79423],[84.30499,18.79826],[84.28866,18.80466],[84.28877,18.79842],[84.28649,18.7923],[84.26812,18.78456],[84.26097,18.78322],[84.25592,18.78799],[84.24903,18.78579],[84.24314,18.78862],[84.24358,18.79152],[84.24128,18.79138],[84.2408,18.79714],[84.23674,18.79855],[84.23383,18.79477],[84.23225,18.79715],[84.22631,18.79877],[84.2239,18.79709],[84.22185,18.79783],[84.21919,18.79492],[84.2144,18.79542],[84.21377,18.794],[84.21891,18.79119],[84.21746,18.78997],[84.20758,18.78915],[84.20045,18.79049],[84.20011,18.79221],[84.1981,18.79081],[84.19534,18.79168],[84.19342,18.78759],[84.19468,18.78332],[84.18994,18.7777],[84.18271,18.78196],[84.17577,18.78008],[84.17229,18.7829],[84.16972,18.78822],[84.16559,18.78776],[84.1635,18.7893],[84.15834,18.78686],[84.15843,18.78289],[84.15651,18.78458],[84.15176,18.78354],[84.14622,18.77716],[84.14039,18.77727],[84.13891,18.7688],[84.14199,18.7643],[84.13809,18.76149],[84.13256,18.7606],[84.12979,18.76512],[84.12468,18.76394],[84.12238,18.76794],[84.11771,18.76554],[84.11349,18.76687],[84.10327,18.76027],[84.09688,18.76054],[84.08946,18.75678],[84.08959,18.76399],[84.08475,18.76427],[84.08523,18.76649],[84.08117,18.76419],[84.08034,18.76535],[84.07642,18.76445],[84.07373,18.77582],[84.06922,18.77815],[84.06799,18.78231],[84.06201,18.78138],[84.05991,18.78242],[84.06056,18.78489],[84.05727,18.78937],[84.06163,18.79073],[84.06137,18.79234],[84.05728,18.79276],[84.05988,18.79918],[84.0511,18.79908],[84.04669,18.80161],[84.04599,18.80506],[84.04426,18.80606],[84.04561,18.81288],[84.03848,18.81643],[84.03778,18.81305],[84.03296,18.8116],[84.02483,18.81548],[84.02522,18.81705],[84.02252,18.8159],[84.01912,18.81792],[84.01917,18.81645],[84.01547,18.81706],[84.01744,18.8128],[84.01573,18.80875],[84.0099,18.81169],[84.00522,18.80874],[84.00107,18.81139],[83.99567,18.81127],[83.99385,18.81361],[83.98721,18.8115],[83.98845,18.8109],[83.98686,18.81005],[83.97785,18.81417],[83.96509,18.81462],[83.96281,18.81289],[83.96096,18.81408],[83.95539,18.80649],[83.95016,18.80518],[83.94174,18.80833],[83.94232,18.81546],[83.9381,18.81585],[83.93754,18.81816],[83.93465,18.81815],[83.93463,18.81628],[83.93165,18.81588],[83.92634,18.82243],[83.92328,18.82183],[83.92263,18.82359],[83.91767,18.8243],[83.9158,18.82796],[83.91199,18.82596],[83.90476,18.8274],[83.89963,18.8244],[83.89613,18.81564],[83.89316,18.81447],[83.89116,18.82509],[83.88773,18.83096],[83.8687,18.85076],[83.85137,18.85956],[83.84601,18.8691],[83.84368,18.87627],[83.8489,18.8999],[83.84579,18.91358],[83.8434,18.91716],[83.84032,18.91851],[83.83071,18.91475],[83.82658,18.91628],[83.82894,18.9306],[83.81973,18.93926],[83.81901,18.9452],[83.82176,18.96023],[83.81052,18.98522],[83.80893,18.99228],[83.79686,19.00092],[83.79512,19.00368],[83.79348,19.00824],[83.79469,19.01798],[83.78052,19.01862],[83.77791,19.01753],[83.77806,19.01547],[83.78128,19.01394],[83.78198,19.00839],[83.7717,19.00808],[83.76486,19.0054],[83.76281,18.99849],[83.76065,19.0026],[83.755,18.9986],[83.75155,18.99868],[83.74753,18.99591],[83.74485,18.98798],[83.74807,18.97404],[83.75531,18.97132],[83.75407,18.96717],[83.75896,18.95061],[83.76163,18.95046],[83.7639,18.95293],[83.76965,18.95476],[83.77258,18.94432],[83.77622,18.94525],[83.77885,18.93666],[83.78446,18.9336],[83.78505,18.92379],[83.78789,18.91587],[83.77824,18.91136],[83.77184,18.91465],[83.76939,18.9143],[83.76317,18.92728],[83.75386,18.92513],[83.74766,18.93708],[83.74681,18.94358],[83.74054,18.95007],[83.73879,18.96036],[83.7344,18.96918],[83.73246,18.97991],[83.73301,18.98771],[83.71817,18.99342],[83.7142,18.99299],[83.71362,18.99739],[83.70948,19.00264],[83.70883,19.00559],[83.71031,19.00718],[83.71807,19.01043],[83.72121,19.00931],[83.72389,19.01025],[83.73002,19.02196],[83.72447,19.02054],[83.71616,19.02368],[83.70969,19.02464],[83.70462,19.02341],[83.70014,19.02545],[83.69853,19.03188],[83.69302,19.03861],[83.6912,19.0473],[83.68525,19.05853],[83.67659,19.0652],[83.67463,19.07208],[83.66436,19.07571],[83.66102,19.08114],[83.66038,19.08442],[83.66389,19.09219],[83.66282,19.09895],[83.65758,19.10255],[83.65557,19.1088],[83.65105,19.10935],[83.65045,19.11739],[83.64704,19.1184],[83.64964,19.12326],[83.65436,19.12213],[83.65496,19.12962],[83.65271,19.13156],[83.64675,19.12981],[83.64212,19.13192],[83.63701,19.13148],[83.6317,19.14084],[83.63494,19.14966],[83.63441,19.15183],[83.63768,19.15316],[83.63392,19.15946],[83.62603,19.16267],[83.62779,19.15665],[83.62747,19.15065],[83.62229,19.14782],[83.6208,19.14168],[83.61876,19.14132],[83.61596,19.13705],[83.60797,19.13969],[83.6047,19.13599],[83.60165,19.13553],[83.59913,19.13016],[83.59781,19.11881],[83.60341,19.11213],[83.61061,19.09606],[83.60307,19.09259],[83.60119,19.09491],[83.59295,19.09267],[83.58559,19.08656],[83.58471,19.08371],[83.58702,19.06936],[83.58405,19.06508],[83.58446,19.05757],[83.57977,19.06054],[83.57497,19.0614],[83.56342,19.05785],[83.56035,19.0645],[83.56338,19.07052],[83.567,19.07174],[83.56017,19.08707],[83.55444,19.08653],[83.54905,19.08052],[83.54853,19.07787],[83.55561,19.06336],[83.55541,19.05806],[83.55757,19.0562],[83.55168,19.05455],[83.54688,19.04372],[83.54173,19.04148],[83.53984,19.03347],[83.54149,19.02961],[83.53671,19.0095],[83.53457,19.01309],[83.52591,19.01284],[83.52474,19.01452],[83.52249,19.01207],[83.51624,19.01661],[83.50378,19.01873],[83.50094,19.02066],[83.49546,19.03185],[83.49747,19.03454],[83.49647,19.03547],[83.50847,19.03554],[83.51482,19.02846],[83.5193,19.03907],[83.51313,19.04838],[83.5168,19.05708],[83.51304,19.06068],[83.51099,19.06627],[83.51171,19.07032],[83.50555,19.06605],[83.50178,19.06589],[83.5006,19.06063],[83.48884,19.07335],[83.48084,19.0785],[83.48265,19.08134],[83.48183,19.08513],[83.48633,19.08755],[83.4834,19.09226],[83.47366,19.09527],[83.46798,19.09312],[83.46726,19.08769],[83.46971,19.08572],[83.47049,19.08712],[83.47646,19.08567],[83.47837,19.07927],[83.47299,19.07705],[83.47036,19.08014],[83.46627,19.0799],[83.4631,19.07597],[83.46495,19.07452],[83.4652,19.07101],[83.46229,19.06377],[83.46782,19.06316],[83.4692,19.0611],[83.46952,19.05765],[83.46783,19.05514],[83.47093,19.04864],[83.47072,19.04291],[83.48335,19.03355],[83.4794,19.02212],[83.47958,19.01771],[83.48251,19.01509],[83.48142,19.00979],[83.47968,19.00847],[83.47159,19.00723],[83.46152,19.01234],[83.45225,19.01259],[83.45157,19.00978],[83.44994,19.00966],[83.45066,19.00453],[83.45531,18.99683],[83.45527,18.99126],[83.466,18.99355],[83.46784,18.99108],[83.46418,18.9801],[83.46856,18.98037],[83.46981,18.96932],[83.46783,18.96455],[83.46474,18.96271],[83.46183,18.95478],[83.44586,18.95776],[83.44354,18.96095],[83.44589,18.96591],[83.44033,18.97162],[83.43888,18.97639],[83.4351,18.97586],[83.4292,18.98042],[83.42636,18.98501],[83.41964,18.98893],[83.41532,18.98918],[83.41999,18.99793],[83.41961,19.00026],[83.41706,19.00206],[83.41584,19.0005],[83.4141,19.00368],[83.41128,19.00026],[83.40955,19.00433],[83.4043,19.0046],[83.40422,19.00667],[83.40201,19.00628],[83.40047,19.0094],[83.39598,19.00954],[83.39469,19.00596],[83.38459,19.00126],[83.37261,19.00226],[83.36662,19.0061],[83.36703,19.00935],[83.36529,19.01018],[83.36695,19.01172],[83.36605,19.01287],[83.36748,19.01648],[83.35805,19.01938],[83.34802,19.01692],[83.34292,19.01814],[83.34003,19.00885],[83.33695,19.00597],[83.33636,19.00294],[83.33878,18.99701],[83.33126,18.99899],[83.32721,19.0024],[83.32237,18.99951],[83.31665,19.00126],[83.31065,18.99867],[83.31033,18.99568],[83.3159,18.98717],[83.31523,18.9832],[83.3176,18.98029],[83.31874,18.97341],[83.3283,18.96703],[83.33148,18.96908],[83.33482,18.96852],[83.33252,18.95767],[83.33374,18.95494],[83.33902,18.95278],[83.33784,18.94629],[83.32711,18.94462],[83.32486,18.93748],[83.3265,18.93198],[83.33392,18.92878],[83.33342,18.92621],[83.33522,18.92493],[83.34844,18.92629],[83.34385,18.94112],[83.35017,18.94327],[83.35086,18.9474],[83.34828,18.96038],[83.35092,18.96679],[83.35474,18.9673],[83.36154,18.96315],[83.36713,18.96301],[83.3684,18.96059],[83.36584,18.95694],[83.36838,18.9533],[83.37128,18.94265],[83.38303,18.93694],[83.38738,18.93298],[83.38202,18.92729],[83.37735,18.92561],[83.3706,18.92604],[83.36919,18.92986],[83.37015,18.94172],[83.36098,18.94083],[83.35248,18.94346],[83.35343,18.9306],[83.35749,18.92392],[83.35914,18.91688],[83.3617,18.91599],[83.35983,18.91471],[83.36239,18.91476],[83.36901,18.90809],[83.37512,18.90897],[83.38181,18.91389],[83.38503,18.91332],[83.3932,18.90763],[83.38465,18.90386],[83.37833,18.89695],[83.38353,18.89036],[83.39151,18.88695],[83.39183,18.88229],[83.39881,18.87796],[83.40703,18.87715],[83.41024,18.87432],[83.41475,18.87496],[83.40487,18.86191],[83.40437,18.84756],[83.40588,18.84252],[83.40413,18.84299],[83.37833,18.83066],[83.37519,18.83635],[83.37174,18.83902],[83.37044,18.84291],[83.36815,18.84406],[83.36394,18.84228],[83.35868,18.83493],[83.34934,18.83013],[83.34777,18.82711],[83.33796,18.82436],[83.32825,18.81808],[83.32814,18.81213],[83.33062,18.80635],[83.3194,18.80477],[83.30931,18.8095],[83.29787,18.8017],[83.28434,18.79788],[83.27527,18.7829],[83.28137,18.7746],[83.27135,18.76464],[83.26255,18.76976],[83.25339,18.76756],[83.24325,18.76828],[83.2346,18.77406],[83.22461,18.77509],[83.22235,18.77277],[83.22813,18.76102],[83.22772,18.75524],[83.22537,18.75091],[83.21741,18.74445],[83.21464,18.73337],[83.21245,18.73049],[83.21128,18.73254],[83.21269,18.73758],[83.20737,18.74576],[83.20801,18.74912],[83.20655,18.75144],[83.19319,18.75312],[83.17791,18.77086],[83.16505,18.76894],[83.16415,18.7669],[83.15648,18.76823],[83.15228,18.77269],[83.15181,18.77607],[83.13903,18.78536],[83.11515,18.76809],[83.12114,18.76584],[83.12363,18.76052],[83.12221,18.7575],[83.11242,18.75281],[83.10761,18.74706],[83.10169,18.73275],[83.09477,18.73138],[83.09261,18.72353],[83.07279,18.70554],[83.07137,18.70164],[83.07501,18.70126],[83.06278,18.68363],[83.05802,18.66531],[83.04423,18.65844],[83.025,18.65441],[83.02264,18.65122],[83.01702,18.65022],[83.01313,18.64605],[83.01963,18.63512],[83.0089,18.62685],[83.00575,18.62169],[82.99957,18.61953],[83.00047,18.60798],[83.01521,18.60544],[83.01501,18.60209],[83.01269,18.59936],[83.01356,18.59436],[83.0188,18.59347],[83.02379,18.58965],[83.02759,18.59257],[83.04444,18.59947],[83.04672,18.59875],[83.05279,18.60068],[83.0531,18.58813],[83.04008,18.58648],[83.03766,18.58102],[83.03127,18.57785],[83.02976,18.57351],[83.03315,18.56979],[83.03843,18.55587],[83.04535,18.54418],[83.05496,18.54398],[83.06193,18.54205],[83.07124,18.54976],[83.07885,18.55039],[83.08094,18.55402],[83.08381,18.55166],[83.08951,18.55299],[83.09504,18.54664],[83.09353,18.53984],[83.08927,18.53891],[83.08364,18.53106],[83.07701,18.52615],[83.07507,18.51457],[83.06401,18.50228],[83.06048,18.50205],[83.05797,18.49684],[83.05521,18.49566],[83.05511,18.48561],[83.03765,18.46862],[83.03073,18.46627],[83.02095,18.45624],[83.02461,18.44846],[83.03289,18.44796],[83.03668,18.4427],[83.04094,18.44079],[83.03776,18.43454],[83.04313,18.42596],[83.04253,18.42423],[83.04598,18.42667],[83.0508,18.43413],[83.05856,18.43668],[83.05998,18.43696],[83.0634,18.43207],[83.06731,18.43009],[83.0655,18.42299],[83.05744,18.41937],[83.06425,18.40941],[83.07684,18.4054],[83.07705,18.40335],[83.05449,18.37999],[83.04308,18.37937],[83.03923,18.38345],[83.03222,18.3835],[83.02951,18.38609],[83.02579,18.38693],[83.02192,18.3917],[83.01598,18.38705],[83.01179,18.38864],[83.00528,18.38276],[82.99683,18.38552],[82.99208,18.37856],[82.99027,18.3806],[82.98728,18.37884],[82.98811,18.37766],[82.98219,18.36812],[82.98318,18.36644],[82.97047,18.36001],[82.96699,18.35893],[82.96011,18.36641],[82.95373,18.36157],[82.93973,18.36082],[82.92603,18.36814],[82.9222,18.37542],[82.91786,18.37528],[82.91308,18.36848],[82.91089,18.37295],[82.90192,18.37407],[82.89419,18.38157],[82.89341,18.38701],[82.89072,18.3905],[82.89778,18.4035],[82.895,18.4241],[82.88156,18.42068],[82.8764,18.42163],[82.8713,18.41846],[82.85641,18.42544],[82.85242,18.4192],[82.84863,18.42372],[82.84584,18.43375],[82.83638,18.43709],[82.83595,18.43929],[82.83122,18.44229],[82.8238,18.4435],[82.82322,18.44726],[82.81564,18.4509],[82.80314,18.44925],[82.79538,18.43971],[82.78216,18.43079],[82.78289,18.42261],[82.78743,18.41917],[82.78688,18.41071],[82.79549,18.40909],[82.79954,18.40675],[82.79383,18.40135],[82.79146,18.39614],[82.79386,18.38602],[82.78265,18.38189],[82.78478,18.38041],[82.78876,18.3718],[82.79056,18.36319],[82.77639,18.34924],[82.77409,18.34032],[82.77112,18.33758],[82.76845,18.33806],[82.76482,18.33616],[82.7633,18.33891],[82.75969,18.33961],[82.7581,18.33763],[82.75919,18.33403],[82.7563,18.33331],[82.75518,18.33019],[82.75064,18.33092],[82.74785,18.32897],[82.74287,18.32999],[82.73831,18.32695],[82.74098,18.32261],[82.73605,18.32311],[82.73427,18.32024],[82.72491,18.32453],[82.71502,18.32252],[82.70856,18.31584],[82.70938,18.31318],[82.70166,18.31064],[82.69452,18.31228],[82.69195,18.30764],[82.68442,18.30359],[82.68018,18.30335],[82.67632,18.30656],[82.66677,18.29803],[82.66225,18.2983],[82.65742,18.29607],[82.65494,18.29699],[82.65119,18.30186],[82.64265,18.30203],[82.64072,18.29623],[82.64382,18.28801],[82.65224,18.28114],[82.64854,18.27287],[82.64279,18.27155],[82.64228,18.26377],[82.64712,18.26223],[82.65095,18.251],[82.65249,18.25],[82.64863,18.245],[82.63768,18.2367],[82.63187,18.23926],[82.62755,18.24458],[82.62353,18.24632],[82.61385,18.25842],[82.60721,18.2614],[82.60422,18.26469],[82.59691,18.26479],[82.59678,18.27437],[82.58779,18.27606],[82.58805,18.2803],[82.59215,18.28035],[82.59406,18.2847],[82.59419,18.28697],[82.59102,18.28978],[82.5952,18.29184],[82.59467,18.29822],[82.59866,18.30419],[82.59647,18.30639],[82.59606,18.31028],[82.58517,18.30846],[82.58131,18.31517],[82.58389,18.31976],[82.58847,18.31788],[82.59488,18.32888],[82.60125,18.32534],[82.60894,18.32713],[82.6112,18.33371],[82.60854,18.34004],[82.60288,18.34435],[82.60204,18.35228],[82.61452,18.35091],[82.62123,18.35971],[82.60599,18.36606],[82.60573,18.37005],[82.60322,18.37265],[82.60612,18.37567],[82.60529,18.38203],[82.60152,18.37937],[82.59952,18.37979],[82.59644,18.38297],[82.5948,18.38923],[82.58863,18.39163],[82.58387,18.38673],[82.57583,18.39623],[82.571,18.39467],[82.56243,18.39996],[82.55533,18.39363],[82.55218,18.39791],[82.54088,18.39943],[82.53553,18.40617],[82.54709,18.41261],[82.54719,18.41429],[82.5433,18.41402],[82.54141,18.42191],[82.54562,18.4224],[82.54574,18.42752],[82.55201,18.42857],[82.55058,18.4333],[82.55815,18.43966],[82.55652,18.44297],[82.56095,18.44518],[82.5614,18.44849],[82.55659,18.44982],[82.55482,18.45448],[82.55258,18.45504],[82.54876,18.45305],[82.54237,18.45763],[82.54134,18.45416],[82.54447,18.44938],[82.53956,18.4436],[82.53726,18.44643],[82.53325,18.45866],[82.52739,18.45966],[82.52834,18.46421],[82.52389,18.46349],[82.51942,18.4656],[82.51945,18.46722],[82.52477,18.4717],[82.53084,18.47303],[82.53419,18.47773],[82.53189,18.48049],[82.52785,18.48065],[82.5283,18.48305],[82.53327,18.48828],[82.53199,18.49243],[82.52789,18.49386],[82.52649,18.49629],[82.52966,18.5013],[82.52698,18.50588],[82.53216,18.51099],[82.52597,18.51632],[82.52028,18.51759],[82.51228,18.51805],[82.50433,18.51387],[82.49405,18.52455],[82.48627,18.52805],[82.48759,18.53261],[82.48395,18.53545],[82.48134,18.54061],[82.484,18.54332],[82.49234,18.54179],[82.4935,18.54364],[82.4919,18.54763],[82.48898,18.54934],[82.48275,18.54872],[82.47347,18.54258],[82.46838,18.53464],[82.46412,18.53287],[82.46098,18.5255],[82.44475,18.51409],[82.4431,18.50877],[82.43861,18.50682],[82.43715,18.50094],[82.43404,18.49857],[82.43414,18.49696],[82.43774,18.49576],[82.43743,18.49381],[82.42254,18.47805],[82.41497,18.47443],[82.40352,18.46422],[82.3968,18.45421],[82.39603,18.44917],[82.38665,18.44501],[82.382,18.43258],[82.37574,18.43003],[82.36421,18.42154],[82.37093,18.41425],[82.37522,18.40634],[82.37962,18.4038],[82.38148,18.38964],[82.38607,18.38627],[82.38402,18.3845],[82.38555,18.36751],[82.37682,18.35984],[82.36988,18.35851],[82.36818,18.35386],[82.36449,18.35277],[82.36311,18.34422],[82.34899,18.33044],[82.34694,18.32883],[82.34409,18.33079],[82.33813,18.32803],[82.33822,18.32671],[82.34048,18.32241],[82.34902,18.31652],[82.35432,18.31722],[82.35587,18.31592],[82.364,18.31846],[82.36753,18.32371],[82.37509,18.32869],[82.37807,18.32706],[82.38427,18.3296],[82.38896,18.32851],[82.39283,18.32596],[82.39506,18.31564],[82.39157,18.3098],[82.39234,18.29795],[82.38089,18.28544],[82.37831,18.28434],[82.3765,18.28068],[82.3659,18.27761],[82.35894,18.28146],[82.34467,18.28055],[82.34044,18.27223],[82.34005,18.26234],[82.33612,18.26117],[82.33336,18.25291],[82.33354,18.25107],[82.33586,18.25],[82.33653,18.24077],[82.32674,18.23638],[82.32441,18.23121],[82.33144,18.22513],[82.33706,18.2243],[82.32843,18.21608],[82.32489,18.21041],[82.31084,18.20409],[82.31354,18.19715],[82.31248,18.19135],[82.31545,18.18403],[82.33737,18.17218],[82.34617,18.17292],[82.35337,18.17169],[82.35912,18.1627],[82.37232,18.14816],[82.36875,18.14317],[82.36753,18.13716],[82.36325,18.13481],[82.35963,18.13629],[82.35493,18.14247],[82.34137,18.15011],[82.34018,18.15057],[82.3388,18.14692],[82.33868,18.14417],[82.34213,18.13724],[82.3342,18.12686],[82.33616,18.12415],[82.33377,18.11925],[82.33567,18.11375],[82.33579,18.10586],[82.3385,18.09911],[82.347,18.09825],[82.34958,18.08563],[82.34732,18.07998],[82.35178,18.07659],[82.34708,18.06995],[82.34388,18.05799],[82.33414,18.05133],[82.33199,18.05246],[82.33214,18.05511],[82.33002,18.05809],[82.32225,18.05991],[82.31897,18.05707],[82.32223,18.04862],[82.31985,18.04476],[82.31658,18.04744],[82.30774,18.04511],[82.30726,18.05005],[82.31033,18.05393],[82.30617,18.05571],[82.29874,18.05528],[82.30012,18.06321],[82.30436,18.0664],[82.3044,18.06812],[82.30201,18.06916],[82.2972,18.06707],[82.29138,18.06891],[82.28767,18.06272],[82.28349,18.0645],[82.27698,18.0582],[82.27261,18.05722],[82.26961,18.05194],[82.26894,18.04519],[82.26161,18.04185],[82.26901,18.03402],[82.27355,18.02134],[82.26878,18.00094],[82.26558,17.99863],[82.24796,17.99778],[82.24405,17.99838],[82.23724,18.00255],[82.22225,18.00168],[82.2082,18.01044],[82.2046,18.01501],[82.20531,18.01837],[82.19737,18.01774],[82.1878,18.01473],[82.18354,18.0191],[82.17862,18.02039],[82.18432,18.02879],[82.16884,18.05195],[82.15827,18.05034],[82.15321,18.04787],[82.14678,18.05231],[82.14483,18.04885],[82.13718,18.04394],[82.13349,18.05989],[82.12498,18.05967],[82.12063,18.06423],[82.11365,18.06123],[82.10787,18.06326],[82.10203,18.06024],[82.0964,18.0634],[82.09609,18.06743],[82.08709,18.06893],[82.07664,18.07522],[82.07082,18.06909],[82.06695,18.05739],[82.06156,18.05545],[82.05042,18.05814],[82.04044,18.05731],[82.03758,18.06698],[82.03232,18.06932],[82.02829,18.06462],[82.01973,18.0633],[82.00739,18.05632],[82.00673,18.0451],[82.01166,18.03524],[82.00935,18.03007],[82.00177,18.03002],[81.99427,18.02731],[81.99127,18.01951],[81.98251,18.01813],[81.97606,18.01047],[81.96894,18.00598],[81.96297,17.99925],[81.94602,17.99575],[81.93657,17.99028],[81.91991,17.99121],[81.90903,17.98422],[81.90518,17.97732],[81.89337,17.97624],[81.88175,17.96883],[81.86649,17.96329],[81.84323,17.95696],[81.83099,17.95793],[81.81911,17.95169],[81.80989,17.95098],[81.79707,17.93728],[81.7947,17.93294],[81.79349,17.92548],[81.79013,17.92081],[81.77841,17.91284],[81.77138,17.91246],[81.76881,17.90688],[81.76467,17.90334],[81.72562,17.87886],[81.70917,17.872],[81.70436,17.87768],[81.70411,17.88271],[81.70113,17.88795],[81.70222,17.89627],[81.70123,17.89948],[81.69853,17.90135],[81.69475,17.89872],[81.6861,17.8853],[81.67452,17.88818],[81.66973,17.88655],[81.66219,17.8816],[81.65431,17.86908],[81.65202,17.8561],[81.64171,17.84132],[81.63015,17.83202],[81.62235,17.83345],[81.61875,17.82381],[81.61655,17.82208],[81.60689,17.82583],[81.59419,17.83404],[81.57432,17.83717],[81.57039,17.83531],[81.56369,17.82571],[81.54684,17.82472],[81.53781,17.82159],[81.53018,17.82291],[81.51841,17.81626],[81.50478,17.81629],[81.49534,17.81255],[81.49005,17.81269],[81.48627,17.81434],[81.48551,17.82022],[81.48152,17.82358],[81.47784,17.83499],[81.47392,17.83797],[81.47182,17.83615],[81.46905,17.83622],[81.46011,17.82957],[81.44419,17.82497],[81.44088,17.82533],[81.43672,17.83162],[81.43412,17.83193],[81.43048,17.83006],[81.42582,17.82191],[81.4156,17.81342],[81.41397,17.81359],[81.41016,17.81859],[81.40165,17.82095],[81.39655,17.82023],[81.39181,17.81542],[81.39313,17.80767],[81.39185,17.79418],[81.38656,17.79487],[81.38544,17.79844],[81.37731,17.80446],[81.35878,17.80948],[81.35411,17.81229],[81.34845,17.81233],[81.3456,17.8103],[81.32612,17.81395],[81.30497,17.80866],[81.26626,17.80952],[81.24838,17.81666],[81.2393,17.82602],[81.21561,17.83451],[81.19931,17.84693],[81.17065,17.85476],[81.16613,17.8576],[81.15728,17.85043],[81.14213,17.84146],[81.12792,17.827],[81.10244,17.81603],[81.09397,17.80927],[81.09046,17.80241],[81.08559,17.79802],[81.08978,17.79104],[81.096,17.77449],[81.10388,17.7732],[81.10426,17.77201],[81.09565,17.7622],[81.08258,17.7531],[81.06983,17.74071],[81.05817,17.73309],[81.05051,17.73401],[81.04416,17.74042],[81.04056,17.74761],[81.02763,17.74813],[81.01592,17.74503],[80.99132,17.74992],[80.98423,17.75566],[80.97688,17.77632],[80.97342,17.78012],[80.97217,17.77796],[80.96587,17.77978],[80.96343,17.77739],[80.95532,17.77462],[80.95562,17.77291],[80.94631,17.76019],[80.92785,17.76178],[80.92338,17.75729],[80.91946,17.7562],[80.91757,17.74811],[80.915,17.74836],[80.91444,17.75046],[80.91273,17.74948],[80.91458,17.74653],[80.913,17.74592],[80.90237,17.7462],[80.88555,17.73568],[80.89076,17.72188],[80.89099,17.71368],[80.89475,17.70291],[80.89079,17.68976],[80.8764,17.66838],[80.87667,17.65502],[80.88008,17.64796],[80.89704,17.64064],[80.9381,17.63258],[80.95236,17.63703],[80.96237,17.64572],[80.98006,17.65261],[80.99209,17.65346],[81.00526,17.64876],[81.00955,17.64365],[81.00704,17.62171],[80.99592,17.62908],[80.98411,17.62621],[80.97552,17.61914],[80.96931,17.59838],[80.97673,17.58719],[80.98283,17.58274],[80.9888,17.57242],[80.9984,17.56468],[81.00281,17.55061],[81.00843,17.547],[81.01368,17.53662],[81.01483,17.52213],[81.0199,17.52003],[81.04721,17.51951],[81.08007,17.51505],[81.09135,17.50565],[81.09756,17.50426],[81.10111,17.5056],[81.11746,17.52207],[81.1245,17.52706],[81.12728,17.52642],[81.13848,17.51624],[81.14051,17.50466],[81.14487,17.49508],[81.14215,17.48859],[81.15968,17.48437],[81.14825,17.46365],[81.17555,17.46364],[81.17233,17.44904],[81.18298,17.44025],[81.1933,17.43563],[81.2027,17.43395],[81.2023,17.44066],[81.20526,17.44959],[81.21176,17.44174],[81.21905,17.44228],[81.22143,17.43944],[81.23633,17.43558],[81.24269,17.43206],[81.24551,17.43303],[81.25974,17.42222],[81.26854,17.41826],[81.30051,17.41271],[81.31238,17.40872],[81.31859,17.39842],[81.32264,17.37455],[81.31647,17.369],[81.31631,17.36448],[81.31199,17.36069],[81.3053,17.34591],[81.30111,17.34066],[81.28852,17.32807],[81.27851,17.32341],[81.27403,17.31719],[81.26825,17.32003],[81.24567,17.32579],[81.24463,17.32309],[81.23913,17.32349],[81.23913,17.32084],[81.23357,17.32036],[81.22205,17.32149],[81.21031,17.32605],[81.19041,17.32481],[81.18137,17.30445],[81.17666,17.28767],[81.17957,17.27837],[81.17818,17.26904],[81.18394,17.25835],[81.18759,17.25465],[81.18609,17.24849],[81.17502,17.23697],[81.17301,17.23203],[81.17398,17.23034],[81.15947,17.2308],[81.1276,17.22431],[81.10943,17.22347],[81.09037,17.2196],[81.07961,17.21528],[81.05461,17.22487],[81.05559,17.21956],[81.0495,17.20707],[81.04357,17.20233],[81.03687,17.19248],[81.03127,17.19033],[81.01543,17.1944],[81.00862,17.19186],[80.99845,17.19046],[80.99436,17.19132],[80.97629,17.20027],[80.96029,17.20407],[80.94128,17.21929],[80.91888,17.21974],[80.91676,17.21609],[80.91676,17.21096],[80.92105,17.20028],[80.91845,17.18974],[80.92267,17.18859],[80.92643,17.18348],[80.9252,17.16775],[80.92309,17.16129],[80.92399,17.15785],[80.91659,17.15369],[80.90703,17.15385],[80.8924,17.15937],[80.87944,17.16083],[80.8777,17.14981],[80.87825,17.13514],[80.87364,17.12877],[80.8693,17.12669],[80.86774,17.12313],[80.86833,17.12027],[80.87348,17.1141],[80.87643,17.10559],[80.87389,17.09854],[80.87521,17.09545],[80.86758,17.08045],[80.86871,17.078],[80.87611,17.07488],[80.87716,17.07043],[80.87149,17.06984],[80.86551,17.05856],[80.85911,17.05261],[80.85584,17.04652],[80.84531,17.03997],[80.84079,17.04671],[80.82882,17.05277],[80.81041,17.05532],[80.79874,17.06124],[80.79046,17.06346],[80.76498,17.06661],[80.75089,17.07262],[80.74647,17.07777],[80.74465,17.07694],[80.73888,17.07959],[80.7368,17.07769],[80.71058,17.08188],[80.70536,17.08078],[80.69945,17.08379],[80.69898,17.0816],[80.69634,17.08006],[80.69729,17.07679],[80.69496,17.07414],[80.67967,17.07203],[80.6764,17.07075],[80.67347,17.06664],[80.67107,17.07004],[80.6664,17.06748],[80.65381,17.06861],[80.64992,17.07137],[80.65709,17.08956],[80.65889,17.09156],[80.66805,17.09493],[80.67055,17.10119],[80.6656,17.10512],[80.64924,17.11136],[80.64204,17.1159],[80.64548,17.12352],[80.6363,17.12853],[80.6279,17.1299],[80.61825,17.12842],[80.61699,17.13158],[80.6064,17.13518],[80.60054,17.14228],[80.58002,17.15307],[80.56318,17.1331],[80.55732,17.13212],[80.55429,17.1336],[80.54882,17.13079],[80.54234,17.1246],[80.52759,17.11891],[80.51408,17.12205],[80.51288,17.10925],[80.5055,17.09824],[80.50403,17.09264],[80.51008,17.0869],[80.5054,17.06846],[80.49767,17.06265],[80.49093,17.05097],[80.486,17.05208],[80.47138,17.05037],[80.46486,17.03002],[80.4533,17.03476],[80.43863,17.03758],[80.43172,17.05552],[80.41705,17.07361],[80.41855,17.07843],[80.41779,17.08788],[80.41896,17.0923],[80.40903,17.0915],[80.40785,17.08785],[80.40443,17.08676],[80.40382,17.08196],[80.40063,17.08196],[80.39102,17.07467],[80.38573,17.06793],[80.39166,17.0613],[80.39382,17.05477],[80.39849,17.0526],[80.39825,17.04909],[80.39593,17.04633],[80.39576,17.03573],[80.4074,17.02561],[80.40703,17.0158],[80.38785,17.00927],[80.38692,17.00459],[80.37576,16.9887],[80.36662,16.98144],[80.3634,16.97607],[80.37136,16.97581],[80.40765,16.96397],[80.4194,16.96257],[80.44967,16.95476],[80.46743,16.94545],[80.47302,16.93848],[80.48203,16.93213],[80.49345,16.92743],[80.49559,16.94999],[80.49923,16.95633],[80.50546,16.95654],[80.5261,16.94788],[80.5347,16.96141],[80.54577,16.95693],[80.56702,16.94316],[80.57349,16.94132],[80.57547,16.93814],[80.58098,16.93615],[80.58132,16.93252],[80.58406,16.9288],[80.5904,16.92709],[80.59171,16.92299],[80.59691,16.92386],[80.60194,16.91859],[80.59234,16.90744],[80.58712,16.90418],[80.58768,16.90229],[80.59482,16.89889],[80.59591,16.88462],[80.57756,16.87895],[80.56831,16.86939],[80.57119,16.86112],[80.57014,16.84852],[80.56285,16.83284],[80.56553,16.82684],[80.57741,16.82333],[80.58455,16.81295],[80.5944,16.80281],[80.61297,16.79354],[80.59711,16.79221],[80.59685,16.7902],[80.58879,16.78532],[80.58716,16.78225],[80.58495,16.78355],[80.57687,16.77715],[80.57024,16.76801],[80.55158,16.77501],[80.52619,16.77459],[80.50439,16.77869],[80.49405,16.78369],[80.4863,16.79111],[80.46445,16.79545],[80.46383,16.80536],[80.46614,16.81635],[80.46424,16.81998],[80.46016,16.82004],[80.45327,16.82301],[80.45007,16.82723],[80.44141,16.83078],[80.44088,16.83427],[80.4382,16.83425],[80.4344,16.83743],[80.42859,16.83812],[80.42971,16.84673],[80.42794,16.84688],[80.42771,16.8498],[80.41212,16.8519],[80.38526,16.86329],[80.38413,16.86525],[80.37883,16.86156],[80.38278,16.8549],[80.37837,16.85199],[80.38347,16.85003],[80.4078,16.84823],[80.40422,16.83205],[80.39971,16.83355],[80.39668,16.8275],[80.39237,16.82793],[80.39084,16.82474],[80.38607,16.8249],[80.38733,16.81896],[80.38601,16.81625],[80.38317,16.81581],[80.38043,16.81745],[80.3737,16.82823],[80.37961,16.84108],[80.37339,16.8395],[80.37407,16.85239],[80.34938,16.85912],[80.3409,16.8597],[80.34401,16.87437],[80.3217,16.87963],[80.32497,16.90033],[80.32381,16.90643],[80.31561,16.9155],[80.31159,16.91666],[80.31387,16.92483],[80.31309,16.94053],[80.31647,16.94844],[80.30502,16.9537],[80.30659,16.97379],[80.29352,16.97666],[80.29027,16.98108],[80.29436,16.99383],[80.29359,16.99633],[80.28266,17.00767],[80.27047,17.00399],[80.2669,17.00134],[80.26488,16.99724],[80.25686,16.99893],[80.25607,17.0011],[80.2404,17.00215],[80.24007,17.00512],[80.22616,17.01532],[80.22287,17.00784],[80.21143,17.01027],[80.20206,17.01703],[80.19958,17.02649],[80.20409,17.03829],[80.19645,17.04403],[80.192,17.03354],[80.19263,17.02675],[80.18729,17.01995],[80.18038,17.01902],[80.17773,17.0166],[80.17017,17.01683],[80.16776,17.00559],[80.16202,17.00494],[80.15729,17.00741],[80.15336,17.00694],[80.14637,17.00026],[80.14024,16.99059],[80.12786,16.99227],[80.12048,16.99122],[80.1204,16.98789],[80.10963,16.98721],[80.10255,16.99096],[80.09516,16.99065],[80.09411,16.97558],[80.09156,16.96832],[80.08338,16.97018],[80.05544,16.97142],[80.05743,16.96404],[80.05245,16.95987],[80.04822,16.94943],[80.0519,16.9421],[80.05059,16.93642],[80.04455,16.92926],[80.0404,16.91808],[80.02706,16.91754],[80.02456,16.91506],[80.01738,16.91497],[80.01242,16.89268],[80.00458,16.88105],[80.00508,16.87645],[80.00156,16.86769],[79.99876,16.86521],[80.00363,16.8639],[80.00395,16.86179],[80.01704,16.85423],[80.02901,16.85202],[80.04684,16.85334],[80.0464,16.83868],[80.04818,16.83323],[80.0595,16.82519],[80.07079,16.8213],[80.07106,16.81809],[80.07325,16.81719],[80.06982,16.80833],[80.0706,16.80169],[80.06645,16.78641],[80.05386,16.76543],[80.05496,16.74465],[80.03664,16.72766],[80.03004,16.71441],[80.02215,16.71033],[80.00758,16.70884],[79.99741,16.70209],[79.97938,16.66534],[79.96307,16.64353],[79.94975,16.6359],[79.93415,16.63157],[79.91011,16.63392],[79.89372,16.65011],[79.89065,16.65888],[79.88551,16.68735],[79.87753,16.6973],[79.85885,16.70465],[79.85106,16.70584],[79.82816,16.69378],[79.82109,16.69151],[79.81726,16.69187],[79.8112,16.69568],[79.79887,16.71068],[79.79251,16.7255],[79.78583,16.73014],[79.77399,16.73078],[79.74461,16.71908],[79.72932,16.69551],[79.72289,16.69028],[79.71389,16.68924],[79.68154,16.69437],[79.66219,16.68665],[79.64828,16.67003],[79.63309,16.66042],[79.62149,16.66318],[79.60632,16.67131],[79.59892,16.67323],[79.59218,16.66988],[79.57563,16.64978],[79.54209,16.63225],[79.52942,16.63064],[79.51037,16.63574],[79.50385,16.63592],[79.49401,16.63304],[79.48333,16.6231],[79.45958,16.62366],[79.44717,16.61971],[79.43914,16.61291],[79.43305,16.59075],[79.41864,16.58025],[79.39682,16.57978],[79.37677,16.58275],[79.35369,16.57927],[79.34011,16.58264],[79.32643,16.57646],[79.30824,16.57415],[79.29552,16.56301],[79.29102,16.56157],[79.28136,16.56061],[79.26164,16.56692],[79.25684,16.56582],[79.25222,16.55925],[79.25027,16.54715],[79.24477,16.53181],[79.24125,16.52917],[79.22856,16.52477],[79.22088,16.51434],[79.21483,16.48791],[79.2146,16.48348],[79.21706,16.47756],[79.23336,16.4592],[79.21795,16.45382],[79.21156,16.44739],[79.20772,16.38475],[79.20844,16.37929],[79.21243,16.37347],[79.2102,16.35823],[79.21433,16.34935],[79.23359,16.336],[79.2343,16.33384],[79.23381,16.32199],[79.23104,16.31433],[79.23038,16.28249],[79.22459,16.27119],[79.22266,16.24186],[79.22063,16.23408],[79.21655,16.2274],[79.20628,16.22091],[79.17191,16.2104],[79.15695,16.20929],[79.146,16.21397],[79.12377,16.23102],[79.11972,16.23194],[79.10864,16.22848],[79.10158,16.22282],[79.09443,16.22429],[79.08411,16.23012],[79.07211,16.22707],[79.05858,16.23519],[79.04802,16.23867],[79.02918,16.24174],[79.00951,16.24021],[78.98572,16.21071],[78.96774,16.21112],[78.96027,16.20907],[78.94896,16.20354],[78.93001,16.19805],[78.91106,16.18843],[78.9054,16.18359],[78.90376,16.17935],[78.9047,16.17458],[78.91054,16.16407],[78.91503,16.14851],[78.9225,16.14003],[78.92428,16.13578],[78.92438,16.13084],[78.92162,16.12282],[78.92203,16.10431],[78.91793,16.10003],[78.90611,16.09483],[78.8956,16.08558],[78.88905,16.08519],[78.88698,16.09848],[78.87939,16.11761],[78.87651,16.13553],[78.87215,16.14397],[78.86463,16.14702],[78.85248,16.14886],[78.83385,16.14448],[78.83304,16.13732],[78.84241,16.09521],[78.84171,16.0826],[78.83776,16.07186],[78.82765,16.06082],[78.8194,16.0483],[78.80202,16.03841],[78.79305,16.02537],[78.78315,16.02029],[78.76613,16.01644],[78.75296,16.01628],[78.74091,16.00866],[78.7355,16.00815],[78.72357,16.02012],[78.69937,16.02715],[78.68119,16.03479],[78.67262,16.04587],[78.66814,16.0545],[78.65042,16.07199],[78.65022,16.07881],[78.62724,16.08764],[78.60996,16.08713],[78.60163,16.08393],[78.59625,16.07797],[78.59239,16.0691],[78.58694,16.06344],[78.55763,16.04497],[78.55176,16.0428],[78.54205,16.04417],[78.52292,16.05369],[78.49865,16.05997],[78.47477,16.0685],[78.44111,16.07443],[78.43451,16.0712],[78.42867,16.07318],[78.40789,16.07481],[78.40145,16.07201],[78.39763,16.06613],[78.38439,16.0646],[78.36542,16.04678],[78.36197,16.0458],[78.34773,16.04747],[78.32656,16.03674],[78.32208,16.02868],[78.32193,16.01711],[78.31226,16.01151],[78.29942,16.01154],[78.27719,16.02432],[78.26698,16.02715],[78.26086,16.02582],[78.25749,16.02135],[78.25551,16.01285],[78.25982,15.99556],[78.25126,15.97681],[78.25333,15.96633],[78.25208,15.95383],[78.25362,15.94254],[78.25162,15.93522],[78.23214,15.92399],[78.20451,15.91798],[78.18443,15.90982],[78.17944,15.90193],[78.18993,15.89227],[78.18661,15.88481],[78.17667,15.87676],[78.17534,15.85808],[78.16679,15.85463],[78.15877,15.85376],[78.13554,15.8547],[78.13007,15.8507],[78.13428,15.84402],[78.134,15.83626],[78.13011,15.83809],[78.12332,15.83671],[78.11123,15.83836],[78.09879,15.83601],[78.08355,15.84092],[78.08488,15.84506],[78.07511,15.84718],[78.07136,15.85037],[78.07152,15.86175],[78.05583,15.86633],[78.05621,15.87465],[78.04682,15.8749],[78.04494,15.90414],[78.03189,15.90735],[78.031,15.90296],[78.02551,15.90236],[78.01503,15.87599],[78.0088,15.86478],[78.00886,15.86175],[77.99696,15.86632],[77.97533,15.88334],[77.94905,15.88476],[77.93696,15.8835],[77.88798,15.90608],[77.87822,15.90522],[77.87005,15.89724],[77.86232,15.88636],[77.85851,15.88371],[77.84597,15.88212],[77.83873,15.88509],[77.81983,15.87783],[77.80352,15.87413],[77.79292,15.87648],[77.78236,15.87617],[77.77723,15.88077],[77.76687,15.88614],[77.76079,15.88462],[77.74405,15.8861],[77.73881,15.88803],[77.73133,15.8937],[77.7241,15.89581],[77.71273,15.89452],[77.69275,15.88331],[77.6592,15.8855],[77.63647,15.89606],[77.62505,15.90904],[77.61139,15.91793],[77.59504,15.91185],[77.58966,15.9129],[77.58081,15.91848],[77.54898,15.91912],[77.53246,15.92409],[77.51493,15.92618],[77.49874,15.93318],[77.466,15.9345],[77.4296,15.94906],[77.42257,15.94749],[77.41434,15.94203],[77.39769,15.94448],[77.3901,15.9415],[77.37948,15.9398],[77.36125,15.94942],[77.34814,15.95132],[77.32406,15.95016],[77.31143,15.9534],[77.30107,15.958],[77.28468,15.95381],[77.24887,15.96456],[77.23547,15.95714],[77.21859,15.95795],[77.20495,15.95504],[77.18529,15.95674],[77.17409,15.95077],[77.15507,15.95003],[77.14314,15.9447],[77.13585,15.93758],[77.10255,15.92872],[77.07476,15.91202],[77.06256,15.89678],[77.05589,15.88154],[77.03369,15.85889],[77.02519,15.83751],[77.03585,15.82955],[77.04069,15.83274],[77.04256,15.82884],[77.04766,15.83004],[77.04809,15.82797],[77.05098,15.8304],[77.05344,15.82884],[77.05888,15.82999],[77.0652,15.82819],[77.06373,15.80319],[77.06712,15.80269],[77.06717,15.78774],[77.06641,15.78505],[77.06094,15.78626],[77.05695,15.7687],[77.05231,15.76987],[77.05106,15.76452],[77.05646,15.76283],[77.05431,15.75617],[77.04799,15.75622],[77.04594,15.74036],[77.04938,15.74004],[77.0491,15.73026],[77.07969,15.72751],[77.07887,15.71625],[77.08741,15.71549],[77.08257,15.6987],[77.08064,15.69853],[77.07869,15.69514],[77.09379,15.69038],[77.09503,15.68836],[77.10923,15.68146],[77.10928,15.67988],[77.1142,15.67798],[77.11339,15.67569],[77.12137,15.67109],[77.12014,15.66761],[77.12888,15.66586],[77.12142,15.63108],[77.11564,15.63251],[77.10832,15.63783],[77.10625,15.63744],[77.10747,15.64003],[77.1034,15.64284],[77.10136,15.6485],[77.09095,15.65339],[77.087,15.65763],[77.08319,15.65915],[77.07173,15.64665],[77.04599,15.63864],[77.03432,15.6368],[77.03412,15.63456],[77.03043,15.63449],[77.03007,15.62683],[77.03146,15.62683],[77.03111,15.62099],[77.03272,15.62063],[77.0313,15.61159],[77.03291,15.60498],[77.02624,15.58174],[77.03132,15.54408],[77.03136,15.50709],[77.03004,15.50265],[77.02884,15.50046],[77.02279,15.50224],[77.01479,15.50183],[77.00946,15.50461],[76.99233,15.50579],[76.97453,15.51051],[76.97384,15.49953],[76.9771,15.48976],[76.99121,15.4829],[76.9973,15.47801],[77.01077,15.44874],[77.0275,15.43974],[77.03353,15.43289],[77.03484,15.43029],[77.0339,15.41927],[77.02897,15.40768],[77.02923,15.40436],[77.03294,15.39971],[77.03963,15.39702],[77.04725,15.39002],[77.04742,15.3834],[77.04135,15.37099],[77.04183,15.36192],[77.04474,15.35569],[77.05903,15.34896],[77.0649,15.34355],[77.06601,15.33774],[77.06373,15.32802],[77.07439,15.32589],[77.10145,15.33368],[77.1131,15.33368],[77.11259,15.32743],[77.11701,15.32574],[77.11838,15.29485],[77.15158,15.29243],[77.15194,15.27568],[77.1471,15.27495],[77.14714,15.27292],[77.15285,15.27406],[77.15926,15.26784],[77.16693,15.26858],[77.16767,15.2585],[77.14378,15.25721],[77.14304,15.25184],[77.14054,15.25172],[77.14028,15.24748],[77.13622,15.24096],[77.13283,15.24169],[77.13251,15.23969],[77.12639,15.24044],[77.12512,15.22694],[77.14766,15.22391],[77.14719,15.22081],[77.15197,15.21757],[77.15166,15.2147],[77.15482,15.21482],[77.15931,15.201],[77.16195,15.20111],[77.16619,15.18834],[77.16913,15.17135],[77.16742,15.17125],[77.16736,15.16815],[77.16487,15.1682],[77.16283,15.15736],[77.14076,15.15859],[77.13541,15.14975],[77.13472,15.14829],[77.13714,15.1478],[77.13779,15.14353],[77.149,15.14142],[77.14975,15.13976],[77.15728,15.14047],[77.15633,15.12293],[77.15017,15.11161],[77.14208,15.10457],[77.13694,15.10425],[77.13696,15.10234],[77.13012,15.10077],[77.12821,15.07231],[77.12081,15.054],[77.1195,15.04569],[77.11527,15.0464],[77.11293,15.03406],[77.09366,15.03614],[77.09085,15.02933],[77.08475,15.03071],[77.08245,15.00608],[77.06902,15.00476],[77.04412,15.00984],[77.05043,15.02447],[77.04956,15.03308],[77.04032,15.0331],[77.03595,15.03128],[77.00408,15.03383],[77.00303,15.03091],[76.98603,15.02649],[76.98522,15.01519],[76.96592,15.01804],[76.9496,15.03037],[76.93586,15.02941],[76.92222,15.03128],[76.91837,15.03552],[76.90722,15.03252],[76.89498,15.03707],[76.87716,15.03021],[76.87784,15.03546],[76.86919,15.05342],[76.86519,15.05522],[76.86589,15.05968],[76.86411,15.05803],[76.86087,15.05979],[76.86143,15.06198],[76.85459,15.06512],[76.83602,15.07923],[76.82377,15.08001],[76.81161,15.08638],[76.80024,15.09583],[76.79392,15.09185],[76.79235,15.08757],[76.78602,15.08781],[76.7853,15.08231],[76.78215,15.07733],[76.77787,15.07987],[76.77669,15.0784],[76.77989,15.07604],[76.77524,15.07225],[76.77361,15.05912],[76.77663,15.05468],[76.78035,15.04269],[76.78343,15.04261],[76.78575,15.03715],[76.78572,15.02768],[76.79013,15.02071],[76.78712,15.00793],[76.78363,15.00478],[76.77874,15.00456],[76.77503,14.99306],[76.77238,14.99084],[76.76957,14.99176],[76.76786,14.9901],[76.76057,14.98986],[76.76654,14.97562],[76.77761,14.97545],[76.79627,14.96917],[76.81828,14.96944],[76.8285,14.95646],[76.83411,14.95646],[76.83527,14.96003],[76.84194,14.96641],[76.86746,14.96982],[76.86609,14.95753],[76.86962,14.93771],[76.86384,14.89558],[76.84733,14.89598],[76.84548,14.88929],[76.84552,14.88718],[76.85247,14.88697],[76.85145,14.88335],[76.85339,14.88321],[76.85388,14.86918],[76.85719,14.86911],[76.85489,14.85892],[76.85541,14.84878],[76.85406,14.84323],[76.84179,14.83655],[76.8455,14.83405],[76.84601,14.82205],[76.85456,14.81809],[76.85398,14.80944],[76.85146,14.8086],[76.83737,14.81056],[76.83675,14.79077],[76.83257,14.79039],[76.83239,14.79291],[76.81908,14.79312],[76.82034,14.78888],[76.81766,14.7876],[76.80296,14.7856],[76.79383,14.7854],[76.78864,14.78697],[76.78846,14.78582],[76.78396,14.78697],[76.78269,14.78594],[76.78898,14.77228],[76.78953,14.76006],[76.79415,14.75127],[76.80294,14.74188],[76.78651,14.70843],[76.78622,14.69578],[76.77527,14.68096],[76.77253,14.63911],[76.76692,14.61827],[76.76499,14.60212],[76.78023,14.59306],[76.78033,14.59704],[76.78184,14.5965],[76.78337,14.58044],[76.79136,14.55465],[76.79786,14.54917],[76.80282,14.5422],[76.80628,14.53106],[76.81254,14.53173],[76.81941,14.52994],[76.82346,14.52682],[76.83101,14.53036],[76.83282,14.52911],[76.83549,14.5213],[76.8419,14.51937],[76.84923,14.51258],[76.8556,14.50959],[76.8592,14.49746],[76.86246,14.49276],[76.8651,14.47823],[76.86796,14.47404],[76.88427,14.47708],[76.88387,14.47927],[76.88651,14.48353],[76.88925,14.48317],[76.90069,14.48921],[76.92091,14.49052],[76.94339,14.48948],[76.94875,14.48914],[76.95,14.48676],[76.97481,14.48533],[76.97544,14.47786],[76.97167,14.46814],[76.9684,14.46511],[76.96833,14.46179],[76.9598,14.45021],[76.9568,14.45198],[76.95037,14.45237],[76.94596,14.45255],[76.94479,14.4509],[76.94779,14.41316],[76.94676,14.40615],[76.94271,14.39934],[76.93142,14.41052],[76.91583,14.42069],[76.9046,14.40392],[76.89863,14.39795],[76.88482,14.39571],[76.88375,14.36466],[76.88201,14.35971],[76.88464,14.34754],[76.89228,14.34126],[76.90339,14.32268],[76.90787,14.32295],[76.9272,14.31451],[76.94565,14.31318],[76.95672,14.29435],[76.94738,14.28617],[76.93877,14.28301],[76.93711,14.28034],[76.92818,14.2793],[76.9249,14.27378],[76.9358,14.25937],[76.94006,14.24461],[76.95194,14.2419],[76.95983,14.24496],[76.96983,14.24337],[76.9762,14.24613],[76.9856,14.24733],[76.99194,14.24141],[76.99894,14.24087],[77.00566,14.23579],[77.00848,14.238],[77.03036,14.24227],[77.03054,14.24419],[77.03614,14.24487],[77.03605,14.24674],[77.05246,14.2455],[77.05773,14.2438],[77.05694,14.24067],[77.06028,14.2362],[77.06007,14.23228],[77.0618,14.22946],[77.06776,14.2284],[77.07589,14.22336],[77.08117,14.21415],[77.1008,14.21714],[77.11486,14.22314],[77.11667,14.22638],[77.11565,14.23758],[77.11832,14.24481],[77.11533,14.25453],[77.11856,14.25682],[77.12048,14.26293],[77.11119,14.26158],[77.11169,14.26536],[77.11019,14.26827],[77.11552,14.27424],[77.11564,14.29248],[77.12588,14.30042],[77.13226,14.31066],[77.13633,14.32302],[77.137,14.33176],[77.1357,14.33687],[77.1389,14.33997],[77.15266,14.33914],[77.15734,14.3421],[77.16675,14.34212],[77.16932,14.33544],[77.17868,14.33548],[77.17795,14.33422],[77.18104,14.33038],[77.18404,14.33247],[77.19742,14.32118],[77.21347,14.31878],[77.22867,14.3212],[77.2382,14.31736],[77.24734,14.31781],[77.25387,14.32223],[77.25336,14.32526],[77.25828,14.32748],[77.25858,14.33092],[77.26357,14.3328],[77.26931,14.33211],[77.27712,14.33754],[77.28388,14.33753],[77.28484,14.3401],[77.28657,14.3401],[77.28744,14.32716],[77.28854,14.32714],[77.28883,14.30547],[77.28795,14.29876],[77.28289,14.28607],[77.28354,14.28274],[77.28933,14.2813],[77.30534,14.28344],[77.31426,14.28051],[77.33016,14.27986],[77.33906,14.2769],[77.36382,14.27583],[77.36186,14.26875],[77.36383,14.25469],[77.36012,14.24531],[77.35949,14.23401],[77.36637,14.23285],[77.37917,14.22648],[77.3842,14.22095],[77.38322,14.20744],[77.38667,14.20352],[77.38709,14.20002],[77.3926,14.19884],[77.40077,14.20321],[77.41027,14.20571],[77.41413,14.20476],[77.41828,14.20907],[77.41939,14.21162],[77.41769,14.22584],[77.41212,14.22769],[77.41148,14.23238],[77.40967,14.23192],[77.40883,14.25985],[77.40694,14.25969],[77.40538,14.26669],[77.39578,14.26612],[77.38736,14.27087],[77.38877,14.28084],[77.38664,14.28167],[77.38514,14.29268],[77.3824,14.29901],[77.37782,14.30139],[77.37703,14.3076],[77.37904,14.32272],[77.38555,14.3279],[77.38909,14.33313],[77.39417,14.33659],[77.40644,14.33775],[77.41213,14.33651],[77.42308,14.32818],[77.4284,14.32864],[77.43126,14.31296],[77.43806,14.31638],[77.44622,14.31747],[77.44518,14.29523],[77.44813,14.28261],[77.45063,14.28279],[77.45028,14.28071],[77.45965,14.2805],[77.46606,14.28309],[77.47893,14.29216],[77.48312,14.29071],[77.48712,14.28172],[77.49076,14.2813],[77.49275,14.27815],[77.49828,14.27885],[77.50386,14.26375],[77.50221,14.2614],[77.50341,14.25977],[77.49652,14.23691],[77.49237,14.23484],[77.49373,14.23301],[77.49279,14.23101],[77.49592,14.23199],[77.49449,14.22424],[77.50328,14.21054],[77.50133,14.20477],[77.50465,14.19398],[77.51703,14.18604],[77.51703,14.18281],[77.5152,14.18294],[77.51343,14.17785],[77.51434,14.17665],[77.51065,14.17305],[77.50351,14.15712],[77.49961,14.1598],[77.48813,14.16167],[77.48083,14.16474],[77.46809,14.16489],[77.467,14.17164],[77.45682,14.16962],[77.44575,14.1717],[77.4302,14.17046],[77.4226,14.17298],[77.42277,14.17644],[77.42036,14.17695],[77.40785,14.17352],[77.39372,14.17425],[77.39162,14.17282],[77.39474,14.1687],[77.39488,14.16077],[77.38925,14.15965],[77.38804,14.15363],[77.38507,14.15326],[77.38335,14.14413],[77.37894,14.13584],[77.35785,14.13032],[77.35171,14.1311],[77.35148,14.12037],[77.34747,14.10364],[77.34978,14.10313],[77.35355,14.10969],[77.36168,14.11533],[77.37566,14.11868],[77.3821,14.1235],[77.39061,14.12664],[77.39736,14.12544],[77.39724,14.12318],[77.40103,14.12018],[77.40092,14.11871],[77.39761,14.10955],[77.38881,14.09948],[77.38618,14.09756],[77.38127,14.09784],[77.37562,14.07935],[77.37361,14.07701],[77.36366,14.07301],[77.36054,14.06256],[77.34593,14.05967],[77.3405,14.06019],[77.33509,14.0454],[77.3323,14.03069],[77.38491,14.01603],[77.39016,14.0167],[77.38765,14.00571],[77.37967,13.98984],[77.38164,13.97623],[77.39569,13.98373],[77.42589,13.98611],[77.42766,13.97968],[77.43402,13.98016],[77.43788,13.97552],[77.43475,13.96438],[77.43531,13.95766],[77.43758,13.95551],[77.43536,13.94751],[77.43072,13.94508],[77.41209,13.94556],[77.41488,13.93663],[77.41588,13.9242],[77.4349,13.91967],[77.43504,13.91501],[77.43227,13.91054],[77.42835,13.90908],[77.42841,13.90593],[77.42283,13.90282],[77.42051,13.89933],[77.41057,13.89631],[77.40546,13.88945],[77.39874,13.88813],[77.39994,13.89646],[77.39788,13.90618],[77.38717,13.90625],[77.36849,13.90295],[77.35763,13.90337],[77.35445,13.90411],[77.35293,13.9139],[77.35016,13.91341],[77.34784,13.91596],[77.35521,13.93076],[77.36745,13.94968],[77.37129,13.95275],[77.34949,13.95814],[77.35385,13.96279],[77.35213,13.96875],[77.35595,13.97908],[77.35934,13.98383],[77.36109,13.99081],[77.34818,13.99447],[77.33622,13.99537],[77.33686,14.00447],[77.32268,14.02301],[77.32223,14.02999],[77.31081,14.03253],[77.30658,14.032],[77.30142,14.02741],[77.29827,14.02161],[77.29209,14.02001],[77.28188,14.01291],[77.275,14.01128],[77.27931,14.02602],[77.27876,14.03241],[77.27686,14.03197],[77.27732,14.03465],[77.27036,14.03448],[77.26312,14.02873],[77.26059,14.02886],[77.25679,14.02238],[77.24817,14.01757],[77.24535,14.01194],[77.21982,14.01357],[77.21572,14.01088],[77.20997,14.01104],[77.20467,14.00825],[77.174,14.01298],[77.17095,14.012],[77.17283,14.00108],[77.14922,14.00116],[77.14107,14.00386],[77.14173,14.0132],[77.14036,14.01796],[77.1364,14.0229],[77.13184,14.04392],[77.1274,14.04701],[77.10237,14.04524],[77.09512,14.04244],[77.07892,14.04264],[77.07532,14.04348],[77.07612,14.05327],[77.06742,14.05202],[77.04571,14.05669],[77.03476,14.0557],[77.03152,14.05646],[77.02768,14.06175],[77.02544,14.06573],[77.02888,14.07781],[77.0298,14.08817],[77.01842,14.09463],[77.01912,14.09639],[77.01467,14.1],[77.01636,14.10424],[77.02406,14.11261],[77.02181,14.12325],[77.02622,14.12502],[77.02586,14.12994],[77.0201,14.1309],[77.02183,14.15195],[77.02041,14.15716],[77.02603,14.17479],[77.02333,14.17669],[77.00546,14.18397],[76.99644,14.18027],[76.98377,14.17882],[76.97065,14.18241],[76.9606,14.18177],[76.95903,14.18262],[76.95976,14.18395],[76.95736,14.18811],[76.95114,14.19266],[76.94757,14.19818],[76.94271,14.1954],[76.94248,14.19109],[76.94467,14.18657],[76.94208,14.18067],[76.94237,14.17333],[76.92192,14.16942],[76.91975,14.16446],[76.90966,14.16796],[76.90054,14.16757],[76.89966,14.16923],[76.89837,14.16755],[76.89453,14.16781],[76.89052,14.14282],[76.88591,14.13824],[76.88952,14.13562],[76.9048,14.13364],[76.91284,14.12881],[76.91757,14.12884],[76.92498,14.13711],[76.93112,14.13102],[76.93587,14.12885],[76.93658,14.12428],[76.94426,14.12074],[76.94569,14.11821],[76.95353,14.09966],[76.9484,14.09205],[76.95941,14.09163],[76.97345,14.08352],[76.97497,14.08091],[76.97526,14.074],[76.97757,14.07129],[76.97646,14.06528],[76.97174,14.05802],[76.9586,14.05704],[76.95031,14.05356],[76.93238,14.05392],[76.9344,14.04464],[76.93113,14.0302],[76.93502,14.0328],[76.94016,14.0295],[76.94347,14.02974],[76.94378,14.0233],[76.94994,14.01509],[76.96539,14.0115],[76.98197,14.00163],[76.99637,13.99051],[76.99949,13.99034],[77.00033,13.98942],[76.99618,13.97676],[76.99377,13.96256],[77.00627,13.95646],[77.01421,13.95487],[77.02437,13.93995],[77.03704,13.93695],[77.04166,13.93343],[77.04422,13.91476],[77.04729,13.9066],[77.03222,13.90518],[77.02303,13.9026],[77.02325,13.89593],[77.02063,13.89235],[77.02032,13.88843],[77.01625,13.88441],[77.01847,13.87254],[77.01319,13.87152],[77.01422,13.86031],[77.00654,13.85206],[76.9968,13.84895],[76.99223,13.84901],[76.9889,13.83526],[76.98289,13.8289],[76.97802,13.82687],[76.97641,13.81732],[76.98974,13.81294],[76.99169,13.80267],[76.98919,13.79463],[76.9852,13.7908],[76.9929,13.77075],[76.9945,13.75999],[76.99839,13.75505],[76.99687,13.74775],[76.9985,13.74557],[77.0165,13.73851],[77.01658,13.74586],[77.01868,13.74867],[77.01735,13.7561],[77.02388,13.7679],[77.02447,13.77922],[77.04337,13.77779],[77.04406,13.77084],[77.04861,13.77018],[77.05184,13.76418],[77.05804,13.7603],[77.05897,13.75716],[77.05749,13.75296],[77.0602,13.75283],[77.05991,13.74933],[77.0647,13.74383],[77.06978,13.74522],[77.07589,13.74284],[77.08563,13.74244],[77.08396,13.74577],[77.08383,13.75664],[77.08547,13.76234],[77.09022,13.76236],[77.09044,13.76714],[77.10596,13.76776],[77.11788,13.7645],[77.12233,13.7613],[77.13684,13.7583],[77.13983,13.7611],[77.14087,13.76504],[77.15111,13.76621],[77.17305,13.76201],[77.17851,13.78268],[77.17559,13.7836],[77.16516,13.79447],[77.16285,13.79846],[77.1621,13.80476],[77.15752,13.80603],[77.16258,13.80866],[77.16279,13.81237],[77.15952,13.81686],[77.16265,13.81684],[77.16772,13.82121],[77.16868,13.82962],[77.16549,13.83311],[77.15368,13.83414],[77.15601,13.84435],[77.13217,13.8462],[77.1282,13.85646],[77.13604,13.85652],[77.14764,13.86848],[77.16858,13.86449],[77.17136,13.87111],[77.16876,13.88052],[77.16876,13.88957],[77.16205,13.89906],[77.16193,13.90662],[77.16992,13.92061],[77.18471,13.92519],[77.18808,13.91391],[77.19084,13.91187],[77.18584,13.89233],[77.18568,13.87617],[77.18139,13.86984],[77.20043,13.86304],[77.20991,13.87807],[77.2102,13.88494],[77.21313,13.88619],[77.21555,13.88617],[77.21703,13.88374],[77.21541,13.86791],[77.21985,13.86772],[77.22401,13.88122],[77.22483,13.88292],[77.22666,13.88216],[77.22989,13.89161],[77.23065,13.90333],[77.23562,13.90414],[77.23647,13.90102],[77.24514,13.90301],[77.24827,13.90121],[77.24778,13.88832],[77.24472,13.88327],[77.24868,13.87352],[77.24636,13.86791],[77.25911,13.86314],[77.25615,13.85167],[77.25669,13.84652],[77.28027,13.85105],[77.28828,13.84748],[77.29016,13.84825],[77.29492,13.8574],[77.29638,13.85701],[77.30358,13.86203],[77.31055,13.86288],[77.31149,13.86658],[77.31646,13.86327],[77.31907,13.85722],[77.32145,13.85592],[77.32165,13.84702],[77.32514,13.84538],[77.32307,13.84],[77.32469,13.83989],[77.32538,13.83324],[77.33684,13.83275],[77.34555,13.8411],[77.35328,13.84552],[77.35732,13.8513],[77.36243,13.85425],[77.37364,13.85263],[77.37689,13.85069],[77.38119,13.84729],[77.3794,13.84084],[77.3819,13.83936],[77.39938,13.84105],[77.41554,13.83973],[77.4197,13.84161],[77.42683,13.84112],[77.42917,13.8448],[77.43252,13.84322],[77.43132,13.83665],[77.4274,13.8322],[77.42737,13.82834],[77.42364,13.82374],[77.41643,13.80876],[77.41611,13.80668],[77.4185,13.80624],[77.41967,13.8096],[77.42865,13.80681],[77.42827,13.80347],[77.42549,13.80322],[77.42257,13.79909],[77.43703,13.7967],[77.44059,13.80657],[77.44533,13.81102],[77.45479,13.80985],[77.45746,13.80722],[77.46423,13.80792],[77.46459,13.80608],[77.46463,13.80318],[77.46087,13.803],[77.45649,13.78872],[77.46138,13.78839],[77.46043,13.78047],[77.46379,13.7715],[77.46515,13.75868],[77.47055,13.75802],[77.46765,13.75317],[77.46667,13.73997],[77.46464,13.73413],[77.46336,13.72292],[77.46508,13.71088],[77.46166,13.70965],[77.45007,13.7109],[77.45074,13.70483],[77.4525,13.70405],[77.453,13.69601],[77.45459,13.69564],[77.45466,13.69104],[77.45609,13.69072],[77.45533,13.68226],[77.47424,13.68611],[77.48788,13.68666],[77.48783,13.68917],[77.49211,13.68981],[77.49122,13.69519],[77.48789,13.69977],[77.48827,13.70415],[77.48652,13.7041],[77.48504,13.71478],[77.51417,13.71321],[77.51451,13.70502],[77.51237,13.69725],[77.51963,13.69627],[77.52126,13.69213],[77.52505,13.69101],[77.52834,13.69301],[77.53437,13.707],[77.53664,13.7306],[77.5271,13.74152],[77.52195,13.74456],[77.52556,13.7533],[77.54086,13.75595],[77.54744,13.7529],[77.5493,13.74887],[77.54929,13.74064],[77.55375,13.73654],[77.5589,13.72353],[77.56093,13.72234],[77.56485,13.72618],[77.57168,13.7382],[77.57712,13.73831],[77.58055,13.73508],[77.58685,13.73349],[77.59602,13.74819],[77.59997,13.75076],[77.61361,13.75192],[77.62443,13.73523],[77.63058,13.73592],[77.63359,13.73958],[77.63697,13.73941],[77.64171,13.74222],[77.64188,13.74783],[77.63591,13.74948],[77.62964,13.7542],[77.62521,13.75298],[77.61884,13.75496],[77.61769,13.76268],[77.62107,13.76844],[77.64599,13.77876],[77.65149,13.78413],[77.66135,13.78538],[77.66984,13.78391],[77.68008,13.78678],[77.68146,13.7796],[77.67987,13.77233],[77.67761,13.76669],[77.67172,13.76048],[77.67962,13.76218],[77.69518,13.7707],[77.70329,13.76979],[77.70846,13.74102],[77.71514,13.74376],[77.71736,13.74107],[77.7201,13.75597],[77.71999,13.7651],[77.72222,13.76885],[77.71974,13.775],[77.71868,13.7841],[77.71951,13.78809],[77.72194,13.79],[77.72228,13.79394],[77.71931,13.80027],[77.72929,13.80221],[77.73158,13.80757],[77.74072,13.81242],[77.74514,13.81013],[77.74793,13.81039],[77.76351,13.81722],[77.78153,13.81829],[77.78876,13.82316],[77.78909,13.83047],[77.78426,13.83439],[77.7822,13.83894],[77.78227,13.84408],[77.79301,13.84894],[77.80808,13.85059],[77.81203,13.84898],[77.81485,13.85778],[77.82019,13.86321],[77.82225,13.86474],[77.83023,13.86558],[77.83707,13.86974],[77.82733,13.87444],[77.82813,13.87654],[77.83554,13.88097],[77.83196,13.89567],[77.82682,13.89921],[77.81999,13.89978],[77.81618,13.90298],[77.81703,13.90831],[77.81349,13.91462],[77.81484,13.93193],[77.82659,13.94472],[77.8308,13.94039],[77.83882,13.93589],[77.85485,13.93818],[77.86861,13.93601],[77.89569,13.94104],[77.89891,13.93064],[77.89535,13.92563],[77.89582,13.92036],[77.89968,13.91659],[77.9054,13.91644],[77.91542,13.90785],[77.92677,13.90533],[77.93713,13.91866],[77.9462,13.93534],[77.95451,13.93854],[77.95734,13.93672],[77.96,13.94051],[77.96195,13.95497],[77.96422,13.95556],[77.96743,13.96016],[77.9794,13.95862],[77.98753,13.9555],[77.98025,13.92786],[77.98376,13.91576],[77.9831,13.90487],[77.98662,13.903],[77.98459,13.8974],[77.95213,13.88983],[77.94908,13.88645],[77.94906,13.8707],[77.95416,13.85516],[77.9548,13.84224],[77.95368,13.83856],[77.95625,13.83593],[77.95614,13.83122],[77.95242,13.82908],[77.95298,13.82735],[77.96054,13.82945],[77.9761,13.82949],[77.98298,13.84727],[77.98722,13.85407],[77.98885,13.85377],[77.98951,13.8626],[77.99206,13.86882],[77.99832,13.86908],[78.00048,13.87293],[78.01158,13.87194],[78.01672,13.86496],[78.02123,13.86383],[78.03185,13.86425],[78.04133,13.86027],[78.04619,13.86213],[78.04625,13.86635],[78.05011,13.87186],[78.05083,13.87599],[78.04887,13.89609],[78.06065,13.89196],[78.06225,13.8908],[78.06183,13.88842],[78.0643,13.88664],[78.079,13.88116],[78.08054,13.86754],[78.08261,13.86429],[78.08191,13.86124],[78.08994,13.8647],[78.094,13.86481],[78.10185,13.8617],[78.11478,13.86289],[78.11681,13.85883],[78.11654,13.85187],[78.12363,13.84535],[78.1222,13.83895],[78.12547,13.83201],[78.11479,13.81199],[78.11375,13.80747],[78.12269,13.79878],[78.12662,13.78711],[78.12216,13.78132],[78.11919,13.77251],[78.1138,13.76343],[78.09988,13.75846],[78.09152,13.74228],[78.09832,13.73779],[78.10433,13.73654],[78.11101,13.7258],[78.11585,13.72253],[78.1208,13.71562],[78.11471,13.70342],[78.11322,13.69274],[78.09242,13.69117],[78.0921,13.69256],[78.08588,13.69219],[78.08014,13.69664],[78.07268,13.69848],[78.06908,13.69781],[78.06961,13.6908],[78.07089,13.68846],[78.07359,13.68773],[78.07124,13.68238],[78.06731,13.6797],[78.06572,13.67614],[78.07701,13.67335],[78.07855,13.66727],[78.08974,13.6591],[78.0869,13.65117],[78.08711,13.64307],[78.09895,13.6428],[78.10225,13.65106],[78.10847,13.65311],[78.11429,13.65736],[78.12557,13.65585],[78.13055,13.65914],[78.13391,13.6595],[78.1465,13.65671],[78.15613,13.65862],[78.16758,13.65583],[78.16907,13.65394],[78.16822,13.63285],[78.17505,13.63061],[78.2042,13.62842],[78.20232,13.61943],[78.20377,13.61828],[78.20333,13.60651],[78.19901,13.59924],[78.19026,13.59014],[78.18961,13.57521],[78.19297,13.56485],[78.20292,13.56878],[78.20784,13.57699],[78.21408,13.58323],[78.21621,13.59062],[78.21923,13.59246],[78.22622,13.58744],[78.23258,13.58598],[78.23509,13.59106],[78.23439,13.59712],[78.23634,13.59858],[78.24211,13.59565],[78.24369,13.59684],[78.24929,13.59088],[78.25804,13.58569],[78.2586,13.58301],[78.27048,13.58815],[78.30773,13.59222],[78.31496,13.59142],[78.32617,13.59484],[78.34657,13.5905],[78.34863,13.58687],[78.36124,13.58899],[78.36493,13.58808],[78.36531,13.58951],[78.38429,13.59186],[78.39346,13.59066],[78.39617,13.58817],[78.402,13.58797],[78.40155,13.5785],[78.40667,13.57686],[78.39313,13.55256],[78.39364,13.54063],[78.38411,13.5249],[78.38552,13.51556],[78.37532,13.50895],[78.37685,13.50524],[78.37485,13.5027],[78.37805,13.50017],[78.37879,13.48204],[78.37082,13.46952],[78.37236,13.46335],[78.37456,13.46195],[78.37285,13.45214],[78.37573,13.44389],[78.37836,13.44372],[78.37897,13.44007],[78.3764,13.43945],[78.3756,13.43738],[78.37751,13.43188],[78.37744,13.42403],[78.38075,13.41887],[78.37922,13.41483],[78.38106,13.40882],[78.38168,13.39698],[78.37878,13.38365],[78.37236,13.37846],[78.36906,13.37319],[78.36508,13.3618],[78.36581,13.35865],[78.36967,13.35826],[78.37083,13.36151],[78.3761,13.36113],[78.37764,13.36315],[78.39486,13.35433],[78.39321,13.35074],[78.4084,13.34569],[78.40868,13.34288],[78.40729,13.33752],[78.39302,13.33376],[78.38487,13.33489],[78.38842,13.3391],[78.38768,13.3428],[78.38303,13.34359],[78.37825,13.33719],[78.37715,13.33197],[78.38713,13.33179],[78.39216,13.3253],[78.39927,13.32069],[78.4011,13.31547],[78.41888,13.32057],[78.42176,13.32827],[78.42795,13.33129],[78.44038,13.32843],[78.44124,13.32489],[78.44001,13.32181],[78.44421,13.30811],[78.45263,13.31008],[78.45772,13.31384],[78.46666,13.31512],[78.46948,13.31709],[78.47015,13.31983],[78.4769,13.32264],[78.4834,13.32117],[78.48363,13.31304],[78.48124,13.31018],[78.47931,13.30129],[78.49674,13.29861],[78.49878,13.29956],[78.50485,13.29137],[78.514,13.29059],[78.51335,13.28523],[78.51993,13.28277],[78.51979,13.27711],[78.52165,13.27616],[78.52196,13.273],[78.52651,13.27162],[78.52667,13.26842],[78.53218,13.26694],[78.53639,13.27241],[78.53932,13.28787],[78.54533,13.28789],[78.55411,13.28317],[78.56164,13.28851],[78.56499,13.29546],[78.56492,13.30691],[78.56321,13.30939],[78.56555,13.312],[78.56954,13.30922],[78.57149,13.30337],[78.57755,13.29528],[78.57634,13.28499],[78.57865,13.28035],[78.58736,13.28064],[78.58764,13.27125],[78.5853,13.2622],[78.57906,13.25366],[78.57014,13.2471],[78.5705,13.24259],[78.57194,13.24259],[78.56873,13.2374],[78.5664,13.22085],[78.57855,13.21802],[78.5787,13.21299],[78.57626,13.21151],[78.57112,13.21204],[78.56779,13.20152],[78.56053,13.19877],[78.55006,13.20018],[78.54976,13.18969],[78.55582,13.18864],[78.56646,13.19182],[78.5673,13.19326],[78.57606,13.18669],[78.57648,13.17455],[78.57977,13.16736],[78.57649,13.16712],[78.57337,13.1689],[78.56873,13.16562],[78.5682,13.16176],[78.55011,13.16419],[78.5414,13.15574],[78.54087,13.15348],[78.54836,13.14854],[78.54465,13.142],[78.53126,13.14137],[78.52667,13.13894],[78.52608,13.13407],[78.52334,13.13045],[78.52156,13.13013],[78.52151,13.13181],[78.51704,13.13159],[78.51893,13.12511],[78.51853,13.11982],[78.52303,13.11841],[78.52262,13.11496],[78.52527,13.11445],[78.52683,13.11222],[78.53745,13.10861],[78.53851,13.10573],[78.53246,13.10567],[78.52448,13.1012],[78.52285,13.09772],[78.52339,13.09469],[78.51607,13.09655],[78.50947,13.0915],[78.50862,13.07902],[78.51077,13.07803],[78.51512,13.06997],[78.51568,13.06551],[78.51425,13.06186],[78.49806,13.0612],[78.48736,13.05236],[78.47849,13.05454],[78.47796,13.05009],[78.47312,13.04292],[78.4648,13.04466],[78.4622,13.04321],[78.46141,13.02569],[78.46482,13.02042],[78.46345,13.01634],[78.46454,13.01179],[78.46361,13.00532],[78.46826,13.00462],[78.4677,12.99854],[78.47187,12.99262],[78.47481,12.99144],[78.46858,12.98272],[78.46746,12.97502],[78.45972,12.97725],[78.45269,12.97677],[78.43533,12.98104],[78.43248,12.97796],[78.43474,12.97144],[78.43272,12.9678],[78.43797,12.96399],[78.43458,12.96079],[78.4297,12.95913],[78.42916,12.95746],[78.41927,12.95868],[78.4215,12.95463],[78.42038,12.94774],[78.41376,12.94835],[78.41116,12.94527],[78.41355,12.93932],[78.41309,12.9334],[78.4152,12.93336],[78.41574,12.92968],[78.41789,12.92789],[78.41882,12.92172],[78.42282,12.92335],[78.42818,12.93209],[78.43802,12.92901],[78.44453,12.91963],[78.4523,12.91767],[78.45925,12.90873],[78.4667,12.90541],[78.46946,12.88964],[78.46477,12.86676],[78.46205,12.87106],[78.46411,12.8777],[78.45589,12.88747],[78.44882,12.8901],[78.44724,12.89221],[78.44923,12.89824],[78.44396,12.903],[78.44649,12.90819],[78.44558,12.9118],[78.43884,12.91366],[78.43495,12.91184],[78.4359,12.90945],[78.4337,12.90454],[78.43039,12.90479],[78.42865,12.90208],[78.41221,12.90323],[78.4089,12.90927],[78.39867,12.91731],[78.3964,12.90731],[78.3887,12.90686],[78.38576,12.90937],[78.38563,12.91144],[78.37825,12.91385],[78.37672,12.91794],[78.36026,12.93693],[78.35637,12.93887],[78.35587,12.94074],[78.3541,12.93969],[78.34971,12.93571],[78.35385,12.93025],[78.34905,12.92899],[78.3466,12.91404],[78.34197,12.9119],[78.34407,12.9085],[78.33973,12.90318],[78.33106,12.90187],[78.32631,12.9045],[78.32353,12.90178],[78.3225,12.89749],[78.32407,12.89291],[78.32033,12.88726],[78.32169,12.88556],[78.32918,12.88459],[78.33088,12.88536],[78.33179,12.88884],[78.33452,12.88921],[78.33799,12.88621],[78.33708,12.88236],[78.33224,12.8807],[78.33102,12.87558],[78.31363,12.87645],[78.31559,12.86755],[78.31245,12.85852],[78.2821,12.85931],[78.27171,12.86696],[78.2684,12.86769],[78.26527,12.86201],[78.25814,12.8604],[78.25366,12.8622],[78.2522,12.86055],[78.25234,12.82894],[78.25056,12.81221],[78.24656,12.80166],[78.24564,12.78826],[78.23898,12.76838],[78.23095,12.76066],[78.23214,12.75304],[78.23579,12.74585],[78.23609,12.7381],[78.24088,12.73271],[78.24101,12.72994],[78.23117,12.71256],[78.22712,12.71483],[78.21807,12.7088],[78.21346,12.71098],[78.21217,12.70763],[78.2074,12.70836],[78.20544,12.70572],[78.20772,12.70483],[78.20713,12.70221],[78.20936,12.70252],[78.20994,12.7005],[78.20419,12.6959],[78.19932,12.69538],[78.20101,12.69174],[78.20362,12.69306],[78.21235,12.68848],[78.21059,12.68608],[78.23212,12.6872],[78.23771,12.68576],[78.23929,12.70101],[78.24456,12.70633],[78.27215,12.70467],[78.2765,12.70155],[78.28645,12.68901],[78.29559,12.67526],[78.29647,12.67104],[78.30133,12.66758],[78.30099,12.66587],[78.30603,12.66627],[78.31837,12.66192],[78.32581,12.65524],[78.33107,12.65303],[78.33221,12.64926],[78.34359,12.64874],[78.35212,12.64158],[78.35565,12.63646],[78.36286,12.63434],[78.37143,12.62711],[78.37942,12.62501],[78.39251,12.62738],[78.41261,12.62686],[78.42707,12.63524],[78.43483,12.62955],[78.45846,12.62964],[78.46497,12.62403],[78.47172,12.63204],[78.47056,12.64459],[78.47478,12.64763],[78.47051,12.65056],[78.4679,12.67589],[78.4845,12.67166],[78.48484,12.67329],[78.49933,12.67509],[78.50012,12.67991],[78.50386,12.68191],[78.50252,12.68416],[78.50406,12.68346],[78.50336,12.68991],[78.50744,12.69141],[78.50291,12.69191],[78.50399,12.69864],[78.49941,12.69925],[78.49932,12.70161],[78.49658,12.70325],[78.50193,12.70445],[78.50396,12.71123],[78.50307,12.71677],[78.51178,12.7077],[78.51462,12.70791],[78.51448,12.71037],[78.51901,12.71035],[78.52001,12.71201],[78.51753,12.71469],[78.51983,12.71557],[78.52024,12.71868],[78.51781,12.72012],[78.51658,12.7187],[78.50927,12.72423],[78.50597,12.72252],[78.50644,12.72434],[78.50427,12.72494],[78.50161,12.73116],[78.49696,12.73134],[78.49269,12.73564],[78.48909,12.74198],[78.49317,12.74715],[78.50527,12.74296],[78.50714,12.73711],[78.51383,12.73447],[78.51162,12.72685],[78.51392,12.72527],[78.51808,12.72484],[78.51917,12.73628],[78.52092,12.73613],[78.52271,12.71921],[78.52703,12.72149],[78.52507,12.71542],[78.53323,12.71398],[78.53752,12.71699],[78.53697,12.71332],[78.54428,12.71094],[78.53996,12.70822],[78.53774,12.71045],[78.53505,12.70732],[78.53275,12.71158],[78.52961,12.71022],[78.5313,12.69702],[78.53491,12.69112],[78.54091,12.69067],[78.55588,12.70016],[78.55662,12.70361],[78.55488,12.70752],[78.56159,12.71001],[78.55604,12.71519],[78.55442,12.71928],[78.56055,12.72716],[78.56386,12.73762],[78.55532,12.73928],[78.55616,12.74271],[78.56012,12.74378],[78.5597,12.74919],[78.5632,12.75132],[78.55834,12.74994],[78.55826,12.75371],[78.55563,12.75579],[78.56153,12.76145],[78.56558,12.75936],[78.56839,12.76693],[78.57656,12.76738],[78.57605,12.77191],[78.59252,12.78268],[78.59307,12.79823],[78.60116,12.80368],[78.60039,12.81842],[78.60776,12.8219],[78.60156,12.8508],[78.61309,12.86794],[78.61669,12.88858],[78.62286,12.90425],[78.62686,12.90732],[78.63345,12.92611],[78.63344,12.93175],[78.65226,12.9291],[78.65701,12.93211],[78.64612,12.94589],[78.63824,12.96408],[78.64717,12.96624],[78.64002,12.97098],[78.6209,12.99124],[78.63001,12.9945],[78.63462,13.0008],[78.64513,13.00623],[78.65208,13.01359],[78.65552,13.01525],[78.65621,13.03117],[78.70527,13.01524],[78.71452,13.06868],[78.74029,13.064],[78.75178,13.05494],[78.7943,13.06658],[78.79763,13.07485],[78.81314,13.08914],[78.8208,13.08776],[78.84204,13.07861],[78.86111,13.08366],[78.87097,13.08188],[78.8698,13.08952],[78.8751,13.09682],[78.88142,13.09818],[78.89121,13.09715],[78.89569,13.09512],[78.89219,13.08976],[78.88895,13.07336],[78.89129,13.06881],[78.89164,13.03306],[78.91563,13.03356],[78.92912,13.03649],[78.93155,13.03469],[78.93575,13.03479],[78.93711,13.03043],[78.94081,13.03641],[78.93374,13.03926],[78.92916,13.04576],[78.92175,13.04701],[78.91751,13.04362],[78.90612,13.04512],[78.90368,13.04771],[78.9126,13.06593],[78.91657,13.06731],[78.91949,13.06486],[78.92174,13.06609],[78.92394,13.08081],[78.9275,13.08183],[78.94148,13.07852],[78.94919,13.08399],[78.94958,13.08017],[78.95545,13.07584],[78.96073,13.07612],[78.96213,13.07873],[78.96879,13.07786],[78.97028,13.07471],[78.97144,13.077],[78.97019,13.07965],[78.9723,13.08381],[78.98252,13.08641],[78.995,13.08661],[79.00392,13.0846],[79.00369,13.08321],[79.00817,13.08071],[79.0095,13.07723],[79.01533,13.07694],[79.01656,13.07455],[79.02299,13.07379],[79.02438,13.07187],[79.02869,13.07262],[79.02974,13.07098],[79.03156,13.07203],[79.0346,13.06998],[79.03695,13.07059],[79.03628,13.06546],[79.03869,13.06114],[79.0634,13.05311],[79.06452,13.05006],[79.06287,13.04064],[79.07394,13.03285],[79.08091,13.02573],[79.08682,13.02801],[79.09114,13.02607],[79.09831,13.02606],[79.10747,13.03828],[79.11448,13.03927],[79.12754,13.03557],[79.13734,13.03481],[79.14831,13.02466],[79.16312,13.02027],[79.16831,13.02426],[79.17109,13.02398],[79.17186,13.02728],[79.17583,13.0271],[79.17642,13.02885],[79.18112,13.02974],[79.1822,13.03187],[79.18483,13.02985],[79.1885,13.04195],[79.193,13.0467],[79.19189,13.04835],[79.18271,13.04732],[79.18044,13.04885],[79.17966,13.0545],[79.1921,13.05615],[79.19134,13.05856],[79.18474,13.0568],[79.1783,13.05919],[79.18007,13.06431],[79.18732,13.06066],[79.18809,13.06566],[79.19212,13.06743],[79.1908,13.07335],[79.18401,13.07273],[79.18565,13.07522],[79.18533,13.07967],[79.18324,13.08193],[79.18137,13.0799],[79.18066,13.08424],[79.18766,13.08346],[79.18855,13.0879],[79.19069,13.08873],[79.1931,13.08229],[79.19829,13.08134],[79.20086,13.08883],[79.20964,13.09272],[79.21277,13.09244],[79.22461,13.1008],[79.23443,13.10523],[79.23427,13.11466],[79.23841,13.11855],[79.23038,13.12637],[79.22937,13.13158],[79.23287,13.13937],[79.22829,13.13998],[79.22315,13.14356],[79.22197,13.14624],[79.21922,13.14562],[79.21599,13.14781],[79.21003,13.14846],[79.21469,13.15696],[79.21811,13.15685],[79.21811,13.15536],[79.22732,13.15562],[79.22561,13.15886],[79.22969,13.16199],[79.23493,13.17084],[79.23951,13.17197],[79.24269,13.171],[79.24111,13.15961],[79.24312,13.15858],[79.24421,13.15274],[79.24208,13.14963],[79.24339,13.15115],[79.24496,13.14882],[79.24244,13.14795],[79.24018,13.14437],[79.24527,13.13828],[79.25391,13.14577],[79.2547,13.14919],[79.25221,13.15772],[79.25327,13.16026],[79.25746,13.16074],[79.25928,13.15887],[79.26037,13.15956],[79.26027,13.15214],[79.26167,13.15187],[79.26209,13.14904],[79.2674,13.14967],[79.26975,13.15375],[79.27454,13.15567],[79.27736,13.15622],[79.28034,13.15287],[79.28402,13.12277],[79.28567,13.12376],[79.28874,13.12199],[79.3044,13.12662],[79.31246,13.12614],[79.29926,13.11866],[79.29877,13.11571],[79.30154,13.11366],[79.29584,13.11237],[79.29431,13.1096],[79.29815,13.10696],[79.30169,13.10778],[79.30719,13.10552],[79.30931,13.10781],[79.30991,13.11201],[79.31615,13.11163],[79.31903,13.11333],[79.31192,13.11657],[79.3213,13.11702],[79.32424,13.11854],[79.31867,13.12347],[79.32677,13.12608],[79.32902,13.13052],[79.33962,13.13045],[79.34131,13.13682],[79.34464,13.13667],[79.34356,13.13102],[79.34514,13.12913],[79.34511,13.12127],[79.3536,13.12053],[79.3605,13.12354],[79.36175,13.12875],[79.36516,13.13067],[79.36552,13.13393],[79.36339,13.13897],[79.36114,13.13864],[79.35996,13.15197],[79.35746,13.15594],[79.35612,13.16458],[79.36342,13.16595],[79.37011,13.16281],[79.38004,13.16293],[79.3806,13.16896],[79.37924,13.17151],[79.36952,13.17291],[79.3727,13.17884],[79.37555,13.1777],[79.38228,13.17962],[79.38773,13.17753],[79.38561,13.18305],[79.37814,13.18471],[79.37281,13.18772],[79.37403,13.18926],[79.38739,13.1891],[79.39202,13.19238],[79.3958,13.19182],[79.3962,13.18868],[79.39906,13.18781],[79.40084,13.19166],[79.40919,13.19404],[79.41017,13.19051],[79.42114,13.18908],[79.42146,13.1906],[79.4262,13.19049],[79.43843,13.18818],[79.43729,13.19106],[79.43315,13.19252],[79.43238,13.19697],[79.43566,13.19721],[79.43956,13.20589],[79.44385,13.20778],[79.44119,13.20827],[79.43622,13.21274],[79.43738,13.21955],[79.43947,13.21968],[79.43971,13.21764],[79.44853,13.21569],[79.4538,13.21694],[79.45329,13.23849],[79.44149,13.23799],[79.43882,13.23436],[79.44,13.2306],[79.43087,13.22985],[79.42987,13.23121],[79.43507,13.23223],[79.43979,13.23586],[79.43149,13.23607],[79.43138,13.23828],[79.43813,13.24003],[79.43768,13.24289],[79.43243,13.24326],[79.42769,13.24155],[79.42459,13.24334],[79.42143,13.24213],[79.4185,13.24296],[79.41966,13.24572],[79.41704,13.24585],[79.42214,13.2494],[79.42264,13.25132],[79.41686,13.25168],[79.41617,13.26041],[79.41308,13.26295],[79.40847,13.26391],[79.40842,13.26527],[79.41142,13.26465],[79.41396,13.26641],[79.41759,13.27177],[79.43373,13.27499],[79.43472,13.28907],[79.43576,13.29128],[79.44631,13.29162],[79.44542,13.30125],[79.43054,13.30025],[79.42004,13.28955],[79.41883,13.28975],[79.41841,13.29352],[79.41958,13.29523],[79.41577,13.29958],[79.4053,13.29757],[79.40217,13.29971],[79.39412,13.29993],[79.38984,13.29743],[79.38866,13.30978],[79.38189,13.30749],[79.38349,13.31326],[79.38781,13.31805],[79.39347,13.3176],[79.39576,13.31572],[79.39783,13.31736],[79.40202,13.31735],[79.4019,13.32148],[79.39876,13.32167],[79.39836,13.3302],[79.40248,13.33023],[79.40536,13.33504],[79.41254,13.33295],[79.41291,13.32993],[79.41472,13.33003],[79.42099,13.33629],[79.43167,13.33671],[79.43259,13.34539],[79.43573,13.34814],[79.43543,13.35171],[79.44766,13.34632],[79.45311,13.33988],[79.45626,13.33857],[79.46407,13.34172],[79.46544,13.33873],[79.47281,13.33924],[79.47457,13.34109],[79.48049,13.34],[79.49971,13.34779],[79.49738,13.33204],[79.51008,13.33417],[79.51108,13.34197],[79.52179,13.34181],[79.52594,13.34439],[79.53557,13.33819],[79.53731,13.33865],[79.54185,13.3273],[79.53936,13.32188],[79.54411,13.31678],[79.54217,13.31024],[79.53486,13.30137],[79.53508,13.29802],[79.53826,13.2959],[79.5371,13.29443],[79.54123,13.29244],[79.53878,13.28785],[79.53515,13.28509],[79.53366,13.27908],[79.5346,13.2754],[79.54002,13.27236],[79.55841,13.27272],[79.57349,13.25936],[79.57927,13.25779],[79.58257,13.25734],[79.59131,13.26143],[79.59384,13.26641],[79.5946,13.27174],[79.59266,13.27506],[79.59489,13.27605],[79.59606,13.28485],[79.60579,13.2882],[79.60869,13.28749],[79.60609,13.27955],[79.61412,13.2827],[79.61955,13.27956],[79.62768,13.27015],[79.63164,13.2697],[79.63204,13.2713],[79.63406,13.27157],[79.63155,13.27719],[79.63436,13.27743],[79.63326,13.28238],[79.63805,13.28425],[79.63834,13.28744],[79.63948,13.277],[79.64127,13.27559],[79.64248,13.29015],[79.65179,13.29183],[79.65458,13.28563],[79.65783,13.28385],[79.65891,13.28669],[79.66387,13.28977],[79.66664,13.28598],[79.66471,13.28194],[79.66539,13.27872],[79.66857,13.28114],[79.67134,13.28012],[79.67425,13.28177],[79.67814,13.29741],[79.68261,13.29582],[79.68126,13.28799],[79.68319,13.28819],[79.68943,13.28303],[79.69046,13.28033],[79.69393,13.2798],[79.69367,13.27348],[79.68881,13.27087],[79.69082,13.26768],[79.69426,13.2705],[79.69575,13.26728],[79.6933,13.26309],[79.69172,13.26355],[79.69112,13.26098],[79.68913,13.26094],[79.68951,13.26374],[79.68771,13.2667],[79.68057,13.26456],[79.68026,13.26224],[79.67829,13.26165],[79.68024,13.25276],[79.68427,13.24443],[79.68914,13.23983],[79.69268,13.24065],[79.69594,13.23856],[79.69307,13.24329],[79.69634,13.24325],[79.69825,13.25099],[79.70098,13.25303],[79.70327,13.2511],[79.70912,13.25104],[79.70897,13.24808],[79.71255,13.24467],[79.71124,13.2425],[79.71407,13.23573],[79.7061,13.2342],[79.70224,13.22415],[79.70271,13.2224],[79.70794,13.22151],[79.71186,13.21927],[79.71196,13.21777],[79.71641,13.21642],[79.71839,13.21652],[79.72165,13.22346],[79.72588,13.22166],[79.7314,13.22245],[79.73028,13.23253],[79.73281,13.23327],[79.73264,13.23688],[79.73732,13.23653],[79.73908,13.2295],[79.74277,13.22829],[79.74247,13.22526],[79.74797,13.22167],[79.751,13.21642],[79.75008,13.20799],[79.75499,13.20648],[79.75984,13.20744],[79.76096,13.21526],[79.76425,13.21911],[79.76756,13.21806],[79.76884,13.21931],[79.76977,13.21771],[79.77394,13.21916],[79.77292,13.21546],[79.77548,13.21531],[79.77796,13.22359],[79.78115,13.22339],[79.78478,13.2279],[79.79309,13.2293],[79.79325,13.22641],[79.79449,13.22632],[79.79473,13.2421],[79.78721,13.24518],[79.7816,13.25159],[79.76119,13.25752],[79.75164,13.26537],[79.74808,13.27099],[79.74172,13.27095],[79.74025,13.27376],[79.73504,13.27594],[79.73281,13.28214],[79.73065,13.28287],[79.73404,13.28902],[79.73924,13.29135],[79.74423,13.28859],[79.75242,13.29166],[79.75675,13.29529],[79.76028,13.30161],[79.76121,13.30707],[79.76186,13.31264],[79.76027,13.3182],[79.76814,13.31392],[79.77042,13.30922],[79.7752,13.30598],[79.78023,13.30615],[79.78559,13.29666],[79.79173,13.29352],[79.80164,13.3005],[79.80476,13.30744],[79.8036,13.31098],[79.80788,13.31413],[79.8089,13.31725],[79.81736,13.31855],[79.82919,13.31751],[79.83609,13.31422],[79.84805,13.3166],[79.85326,13.31596],[79.85355,13.32071],[79.86281,13.31692],[79.86807,13.33107],[79.87763,13.32428],[79.88085,13.32478],[79.8829,13.32332],[79.8835,13.33286],[79.90381,13.34043],[79.90516,13.34353],[79.91038,13.34727],[79.91485,13.34814],[79.9149,13.35156],[79.91336,13.35224],[79.91681,13.35808],[79.91597,13.35987],[79.92529,13.35836],[79.92921,13.35562],[79.9313,13.35151],[79.93311,13.35192],[79.93377,13.35448],[79.93512,13.35411],[79.93591,13.35644],[79.93801,13.35552],[79.94099,13.36128],[79.9429,13.36127],[79.9422,13.36356],[79.94565,13.36374],[79.94542,13.36822],[79.94947,13.37548],[79.94919,13.37767],[79.94505,13.38178],[79.94766,13.38173],[79.94822,13.38324],[79.94999,13.37981],[79.9539,13.37712],[79.95805,13.37918],[79.96275,13.39136],[79.96145,13.3956],[79.95623,13.39714],[79.94436,13.39687],[79.94128,13.40061],[79.9457,13.40773],[79.94138,13.41015],[79.94221,13.4128],[79.93839,13.4128],[79.93774,13.41489],[79.93457,13.41645],[79.94184,13.41672],[79.93961,13.42503],[79.94818,13.42503],[79.94948,13.42375],[79.95255,13.42584],[79.95572,13.42521],[79.95507,13.42238],[79.95665,13.42219],[79.95749,13.42356],[79.96197,13.42338],[79.96579,13.42657],[79.97073,13.4273],[79.97334,13.42967],[79.97287,13.43972],[79.97111,13.44026],[79.97242,13.46909],[79.9824,13.47046],[79.98408,13.47958],[80.00749,13.47864],[80.00762,13.48135],[80.01352,13.48519],[80.01584,13.48903],[80.01444,13.49612],[80.0159,13.49795],[80.03,13.49819],[80.04662,13.49368],[80.04842,13.51225],[80.03552,13.51831],[80.02719,13.5137],[80.01952,13.51925],[80.01765,13.52956],[80.00799,13.52581],[80.00052,13.52568],[79.9986,13.54272],[80.01689,13.54718],[80.02177,13.54495],[80.0239,13.54604],[80.02844,13.53882],[80.0398,13.53901],[80.04304,13.53745],[80.05693,13.53664],[80.06275,13.54536],[80.0684,13.54461],[80.08126,13.54975],[80.08864,13.5354],[80.08284,13.5328],[80.07714,13.5268],[80.07819,13.48881],[80.10306,13.48695],[80.10093,13.48985],[80.10516,13.49335],[80.10821,13.48892],[80.11151,13.49328],[80.11277,13.50595],[80.11884,13.50369],[80.12674,13.50463],[80.13171,13.50144],[80.13921,13.50427],[80.14553,13.49949],[80.14514,13.49142],[80.15384,13.49089],[80.16304,13.48823],[80.17712,13.49117],[80.18653,13.49065],[80.20995,13.48628],[80.2106,13.49048],[80.2146,13.49027],[80.21383,13.4861],[80.22589,13.48507],[80.2352,13.474],[80.24097,13.47331],[80.24181,13.47065],[80.25111,13.50277],[80.26405,13.56264],[80.26854,13.56454],[80.24257,13.61644],[80.23728,13.63596],[80.23365,13.65845],[80.23387,13.69676],[80.23753,13.72386],[80.25366,13.78091],[80.25309,13.78592],[80.25033,13.79694],[80.24284,13.81225],[80.22659,13.85499],[80.22088,13.87495],[80.21912,13.87823],[80.21753,13.87663],[80.21837,13.88052],[80.19816,13.91717],[80.18139,13.96167],[80.14978,14.03177],[80.14303,14.05677],[80.1421,14.07465],[80.13614,14.08539],[80.13378,14.09691],[80.12932,14.12558],[80.12641,14.16432],[80.12702,14.19219],[80.13105,14.22737],[80.13011,14.23116],[80.1317,14.23185],[80.13869,14.25349],[80.13903,14.26917],[80.14292,14.28661],[80.15267,14.31421],[80.16513,14.34065],[80.17165,14.37342],[80.17498,14.44342],[80.17314,14.44315],[80.17497,14.44464],[80.17542,14.44814],[80.1729,14.44921],[80.17549,14.44982],[80.17874,14.492],[80.17875,14.49438],[80.17728,14.49498],[80.17881,14.49584],[80.18542,14.547],[80.19466,14.57762],[80.19551,14.58583],[80.1931,14.59318],[80.17817,14.60319],[80.17118,14.61166],[80.15127,14.66812],[80.14207,14.70351],[80.13773,14.70419],[80.13123,14.72109],[80.12119,14.73064],[80.11787,14.73601],[80.11433,14.73651],[80.11152,14.74107],[80.09772,14.77955],[80.08875,14.82364],[80.08437,14.88325],[80.06749,14.93239],[80.05281,15.01175],[80.04698,15.08018],[80.05443,15.1185],[80.0615,15.14144],[80.07039,15.16534],[80.07965,15.18109],[80.07603,15.17923],[80.07085,15.1826],[80.0784,15.18951],[80.0822,15.19183],[80.08361,15.19112],[80.08903,15.21193],[80.08889,15.23573],[80.08799,15.23769],[80.08712,15.23694],[80.08843,15.22394],[80.08343,15.22241],[80.08749,15.2245],[80.08404,15.23033],[80.08213,15.23092],[80.08071,15.24104],[80.08183,15.24921],[80.08271,15.24751],[80.084,15.24841],[80.08675,15.23894],[80.08816,15.23882],[80.08239,15.25268],[80.08236,15.26323],[80.08621,15.28188],[80.08474,15.28334],[80.08642,15.2824],[80.09838,15.31148],[80.10251,15.31567],[80.10586,15.32404],[80.11025,15.34547],[80.12183,15.36787],[80.14181,15.39546],[80.18311,15.44196],[80.20012,15.46502],[80.20496,15.47389],[80.20798,15.48045],[80.20615,15.48436],[80.20816,15.48368],[80.21052,15.49351],[80.20383,15.4946],[80.19885,15.49314],[80.20143,15.50076],[80.1988,15.503],[80.20171,15.50154],[80.2032,15.503],[80.20305,15.5061],[80.19638,15.50423],[80.19423,15.50501],[80.19692,15.50514],[80.19585,15.50712],[80.19923,15.50556],[80.20361,15.50794],[80.20253,15.51157],[80.20479,15.50824],[80.20959,15.51147],[80.20213,15.5154],[80.21103,15.51202],[80.2128,15.5153],[80.21534,15.51574],[80.21452,15.51825],[80.21598,15.51801],[80.21605,15.51959],[80.21367,15.51964],[80.21296,15.52203],[80.21431,15.52143],[80.214,15.52619],[80.2177,15.52561],[80.21849,15.52333],[80.22479,15.53348],[80.22334,15.53604],[80.22573,15.54001],[80.2232,15.54082],[80.21973,15.53834],[80.22363,15.54117],[80.22603,15.54058],[80.22602,15.54795],[80.22677,15.54932],[80.22791,15.54681],[80.22683,15.55378],[80.22903,15.5689],[80.22468,15.56827],[80.22684,15.56958],[80.22637,15.57096],[80.22974,15.57056],[80.23329,15.5842],[80.232,15.58621],[80.23087,15.58425],[80.22923,15.58709],[80.23205,15.58711],[80.23104,15.58911],[80.23376,15.5863],[80.23506,15.59059],[80.23416,15.5925],[80.22762,15.59211],[80.22714,15.59319],[80.22659,15.58923],[80.22552,15.59306],[80.22238,15.58268],[80.22527,15.59354],[80.22413,15.59497],[80.22866,15.5941],[80.23064,15.59712],[80.23325,15.5962],[80.23473,15.59905],[80.22781,15.60284],[80.22561,15.60096],[80.22063,15.60092],[80.22905,15.60425],[80.23167,15.6028],[80.23342,15.60411],[80.23239,15.60272],[80.23369,15.60147],[80.23481,15.60301],[80.23721,15.60067],[80.24131,15.61132],[80.24145,15.61339],[80.23994,15.61364],[80.24225,15.61425],[80.24502,15.62032],[80.23973,15.62055],[80.23972,15.62164],[80.24273,15.62184],[80.24279,15.62487],[80.24279,15.62241],[80.24394,15.62218],[80.24395,15.62485],[80.24533,15.62156],[80.24787,15.62579],[80.24681,15.62733],[80.24571,15.62523],[80.24343,15.62543],[80.24314,15.63011],[80.24776,15.62721],[80.24913,15.62795],[80.26959,15.66559],[80.27649,15.67408],[80.28416,15.68777],[80.31068,15.71804],[80.34561,15.75121],[80.38309,15.77732],[80.42769,15.80265],[80.42856,15.80468],[80.43306,15.80545],[80.4968,15.83583],[80.52799,15.84581],[80.53646,15.8523],[80.54395,15.85147],[80.57453,15.86244],[80.60473,15.87026],[80.63539,15.87513],[80.64024,15.87724],[80.67666,15.88027],[80.67904,15.88145],[80.68061,15.8854],[80.68592,15.88152],[80.72735,15.87886],[80.74847,15.87404],[80.76743,15.86474],[80.77388,15.86627],[80.77494,15.86373],[80.77848,15.86446],[80.78169,15.8631],[80.79406,15.85362],[80.80702,15.84045],[80.81259,15.83113],[80.81266,15.81395],[80.81561,15.8107],[80.80948,15.81174],[80.80246,15.8161],[80.80091,15.80579],[80.79144,15.82066],[80.79254,15.81562],[80.79068,15.81773],[80.7912,15.82242],[80.7887,15.83237],[80.78582,15.83075],[80.7804,15.83869],[80.78027,15.84164],[80.77963,15.8353],[80.78947,15.81509],[80.79425,15.80134],[80.80418,15.78429],[80.80726,15.77045],[80.8116,15.76256],[80.81363,15.74911],[80.81753,15.74936],[80.81775,15.7404],[80.81577,15.73317],[80.81707,15.72715],[80.81532,15.73284],[80.81645,15.74134],[80.81455,15.73927],[80.81328,15.72867],[80.81558,15.72085],[80.82235,15.71063],[80.81671,15.71699],[80.81358,15.72518],[80.81143,15.72706],[80.81024,15.73526],[80.79855,15.74371],[80.79122,15.75363],[80.79082,15.76075],[80.79242,15.7672],[80.79132,15.76635],[80.79087,15.76794],[80.78929,15.76387],[80.79036,15.76867],[80.79821,15.77384],[80.79965,15.77677],[80.79046,15.76986],[80.78772,15.76426],[80.78843,15.75723],[80.79016,15.75267],[80.79808,15.74242],[80.80923,15.73497],[80.80964,15.72193],[80.81571,15.71342],[80.82152,15.70934],[80.8257,15.70788],[80.82898,15.70942],[80.83184,15.7055],[80.85002,15.70586],[80.92574,15.71872],[80.932,15.72368],[80.93484,15.71754],[80.93466,15.71448],[80.93722,15.7144],[80.96208,15.72707],[80.96237,15.73357],[80.96427,15.73417],[80.96706,15.73164],[80.9715,15.73269],[81.00846,15.75293],[81.01015,15.7565],[81.00951,15.76184],[81.00425,15.76047],[81.00598,15.75865],[81.00478,15.75677],[80.99932,15.75887],[80.99845,15.76969],[81.00496,15.76574],[81.01194,15.76599],[81.01445,15.77127],[81.00969,15.78085],[81.00912,15.78864],[81.00725,15.79006],[81.00905,15.79461],[81.00824,15.79741],[81.01134,15.80152],[81.01604,15.79784],[81.01863,15.7922],[81.02056,15.79301],[81.01698,15.80729],[81.01294,15.81333],[81.00718,15.81667],[81.00578,15.82815],[81.0034,15.83417],[81.00477,15.8378],[81.01219,15.84542],[81.01491,15.85057],[81.04082,15.87459],[81.05664,15.89416],[81.05537,15.89721],[81.05812,15.89678],[81.0715,15.91111],[81.10872,15.94538],[81.13255,15.96208],[81.13486,15.9647],[81.13344,15.96977],[81.13485,15.97216],[81.14144,15.96875],[81.14805,15.9737],[81.14837,15.97907],[81.14518,15.98679],[81.14272,15.99941],[81.14408,16.00059],[81.14554,16.01295],[81.14962,16.02435],[81.17672,16.07189],[81.19137,16.10282],[81.19764,16.12344],[81.20149,16.14393],[81.20015,16.14454],[81.20239,16.14692],[81.20266,16.15687],[81.20445,16.15831],[81.20613,16.17127],[81.20928,16.18089],[81.20844,16.18582],[81.20636,16.18578],[81.21022,16.19277],[81.21376,16.20722],[81.23154,16.23743],[81.24804,16.25784],[81.24619,16.25887],[81.24875,16.25856],[81.26373,16.27344],[81.26506,16.27814],[81.27,16.27907],[81.30535,16.30353],[81.34161,16.32206],[81.39072,16.3396],[81.39379,16.34247],[81.39856,16.34045],[81.42805,16.34715],[81.48366,16.35313],[81.48724,16.35507],[81.49139,16.35274],[81.531,16.35242],[81.53754,16.35147],[81.54076,16.3474],[81.58017,16.34437],[81.62732,16.33798],[81.67551,16.32869],[81.69064,16.32747],[81.69952,16.32417],[81.70706,16.31782],[81.71921,16.31558],[81.71912,16.31128],[81.71656,16.30728],[81.72079,16.30686],[81.73554,16.3161],[81.74721,16.32116],[81.74937,16.32037],[81.78708,16.33819],[81.78667,16.34033],[81.82275,16.35873],[81.85881,16.37542],[81.87081,16.37979],[81.87351,16.37946],[81.87815,16.38263],[81.93941,16.39538],[81.94867,16.3962],[81.95773,16.39237],[81.96359,16.4027],[81.97045,16.40756],[81.99334,16.41932],[81.9983,16.42025],[82.08626,16.46826],[82.14073,16.49367],[82.20174,16.52516],[82.23119,16.54081],[82.2297,16.54343],[82.23491,16.54601],[82.24457,16.55003],[82.24853,16.54945],[82.26707,16.55372],[82.28719,16.55374],[82.29948,16.55594],[82.31186,16.56151],[82.31285,16.56349],[82.31367,16.55874],[82.31344,16.56482],[82.31067,16.56774],[82.30864,16.56696],[82.3097,16.56465],[82.30537,16.5651],[82.30087,16.56239],[82.30147,16.5673],[82.29915,16.57224],[82.29982,16.5693],[82.29826,16.56713],[82.30039,16.5672],[82.29877,16.56105],[82.29964,16.55819],[82.29815,16.5592],[82.29705,16.55708],[82.28999,16.55487],[82.29032,16.55608],[82.28099,16.55865],[82.29163,16.55981],[82.2937,16.55805],[82.29591,16.56461],[82.29474,16.56666],[82.29738,16.56586],[82.29711,16.5676],[82.29368,16.56758],[82.29515,16.56481],[82.29346,16.56305],[82.28269,16.56234],[82.27688,16.55939],[82.27236,16.55991],[82.26974,16.56291],[82.26691,16.56098],[82.26308,16.56302],[82.27656,16.57093],[82.28583,16.57338],[82.28752,16.57298],[82.28728,16.57096],[82.29882,16.58644],[82.29946,16.59201],[82.29533,16.59836],[82.29464,16.60254],[82.2849,16.59999],[82.28638,16.60613],[82.29042,16.60975],[82.287,16.61508],[82.2878,16.61721],[82.28523,16.62085],[82.28682,16.6215],[82.28426,16.62603],[82.29562,16.62602],[82.29772,16.63396],[82.29993,16.63634],[82.29601,16.62603],[82.30144,16.63387],[82.30037,16.62841],[82.30141,16.62809],[82.30449,16.63674],[82.30297,16.62979],[82.30373,16.63071],[82.30418,16.62879],[82.3075,16.63993],[82.30856,16.63035],[82.30673,16.62311],[82.30846,16.62461],[82.30896,16.62952],[82.30971,16.62687],[82.31077,16.62867],[82.31214,16.62708],[82.31434,16.63246],[82.30997,16.6393],[82.30875,16.6534],[82.31282,16.66801],[82.31241,16.65328],[82.31716,16.64269],[82.32104,16.64124],[82.31981,16.63902],[82.32147,16.63145],[82.3201,16.62652],[82.32421,16.62145],[82.32551,16.61685],[82.32555,16.61041],[82.3235,16.60441],[82.32497,16.6022],[82.32422,16.60012],[82.32249,16.6002],[82.32262,16.59577],[82.31796,16.58718],[82.31407,16.58667],[82.31072,16.59273],[82.30925,16.59263],[82.3165,16.58325],[82.31482,16.58111],[82.31782,16.58171],[82.31569,16.57896],[82.31462,16.57979],[82.31359,16.57486],[82.31887,16.57683],[82.32553,16.59707],[82.32905,16.61448],[82.32365,16.62908],[82.32276,16.6419],[82.31697,16.65863],[82.31729,16.66227],[82.3227,16.67304],[82.34555,16.69651],[82.35668,16.70389],[82.36534,16.70665],[82.36323,16.70959],[82.35988,16.71084],[82.36002,16.70705],[82.35496,16.70428],[82.35629,16.70901],[82.35374,16.71362],[82.34963,16.71605],[82.34645,16.71564],[82.34579,16.71462],[82.35169,16.71331],[82.3506,16.71112],[82.35216,16.71139],[82.354,16.70563],[82.34337,16.69732],[82.34317,16.69511],[82.33782,16.68976],[82.32768,16.68501],[82.33538,16.69008],[82.3338,16.69674],[82.33469,16.69908],[82.34118,16.70527],[82.34493,16.70455],[82.3389,16.71471],[82.33334,16.71673],[82.33927,16.71612],[82.34199,16.72975],[82.34298,16.75096],[82.34434,16.75101],[82.34519,16.75409],[82.35854,16.81402],[82.35847,16.82418],[82.36527,16.87599],[82.36647,16.90835],[82.35968,16.95832],[82.35565,16.96779],[82.34951,16.97691],[82.33919,16.98612],[82.33037,16.98957],[82.32669,16.98876],[82.32539,16.98624],[82.32878,16.98256],[82.33317,16.98078],[82.34019,16.96695],[82.35215,16.96064],[82.35771,16.95003],[82.36334,16.91732],[82.36197,16.89753],[82.36323,16.8892],[82.36157,16.85445],[82.35937,16.85518],[82.35487,16.85124],[82.35144,16.85187],[82.34942,16.8505],[82.33607,16.85656],[82.32131,16.85335],[82.32209,16.85249],[82.31854,16.85047],[82.3204,16.84897],[82.31842,16.84938],[82.31719,16.84563],[82.31423,16.84588],[82.31122,16.85482],[82.30796,16.85778],[82.30601,16.8557],[82.30726,16.85812],[82.30158,16.86264],[82.29425,16.86502],[82.28226,16.86483],[82.28396,16.86974],[82.28188,16.87196],[82.27636,16.86999],[82.27522,16.86752],[82.27407,16.86893],[82.27275,16.86806],[82.26599,16.86982],[82.26307,16.87594],[82.26374,16.87977],[82.25982,16.88445],[82.25547,16.88526],[82.25139,16.88136],[82.24953,16.87761],[82.25088,16.8767],[82.24907,16.87599],[82.25024,16.88275],[82.24899,16.89413],[82.24706,16.89995],[82.24144,16.90804],[82.24304,16.91784],[82.24671,16.91785],[82.26431,16.93818],[82.27115,16.9413],[82.27363,16.94703],[82.27788,16.9507],[82.27346,16.94759],[82.27055,16.94142],[82.26493,16.93891],[82.26966,16.94172],[82.27153,16.9472],[82.27712,16.9517],[82.27138,16.94795],[82.2694,16.95009],[82.26864,16.95654],[82.27053,16.95717],[82.26981,16.95997],[82.27431,16.97007],[82.27596,16.98124],[82.27971,16.9847],[82.27981,16.99424],[82.28676,17.01253],[82.30249,17.03813],[82.31931,17.05785],[82.44309,17.17481],[82.50027,17.22019],[82.56194,17.26157],[82.67638,17.32873],[82.72635,17.35488],[82.81664,17.39401],[82.82124,17.39796],[82.88866,17.42673],[82.95261,17.45733],[82.97478,17.46611],[82.99733,17.48257],[83.01763,17.50596],[83.03255,17.5144],[83.06516,17.52504],[83.1127,17.54575],[83.14875,17.5572],[83.21647,17.5955],[83.23853,17.62995],[83.24828,17.63765],[83.25941,17.64316],[83.26106,17.64717],[83.25989,17.64952],[83.28222,17.66034],[83.28515,17.66633],[83.29487,17.67452],[83.29543,17.68133],[83.29753,17.68527],[83.29691,17.69332],[83.30438,17.69894],[83.30598,17.69749],[83.30602,17.701],[83.31821,17.71],[83.33775,17.71947],[83.3464,17.72615],[83.34696,17.72796],[83.34422,17.731],[83.34395,17.73764],[83.35054,17.74621],[83.35071,17.75034],[83.35459,17.75598],[83.35966,17.76104],[83.37355,17.76837],[83.3858,17.77735],[83.38721,17.77976],[83.38512,17.78359],[83.38902,17.79024],[83.39826,17.80009],[83.41087,17.80936],[83.41145,17.81371],[83.41618,17.82255],[83.41625,17.83368],[83.41231,17.83592],[83.41127,17.83948],[83.4077,17.83955],[83.4071,17.84103],[83.41088,17.84202],[83.40961,17.8436],[83.41158,17.84384],[83.4215,17.85783],[83.44372,17.87278],[83.44753,17.88025],[83.45564,17.88763],[83.45532,17.89634],[83.45865,17.90109],[83.47043,17.91205],[83.48786,17.92419],[83.51302,17.93727],[83.51457,17.9411],[83.52503,17.94728],[83.52008,17.95149],[83.52489,17.94752],[83.53175,17.95113],[83.53236,17.95419],[83.5436,17.96303],[83.55079,17.97582],[83.5583,17.98243],[83.561,17.98849],[83.55906,17.99119],[83.55885,17.99659],[83.56937,18.0118],[83.60475,18.03728],[83.63289,18.05442],[83.66049,18.07582],[83.70733,18.10603],[83.75059,18.12925],[83.80526,18.15404],[83.8058,18.15545],[83.79832,18.16066],[83.80028,18.16106],[83.79652,18.16437],[83.79497,18.1684],[83.80154,18.16248],[83.80168,18.16448],[83.80272,18.16279],[83.80428,18.16336],[83.80352,18.15996],[83.80993,18.15603],[83.86039,18.17428],[83.87239,18.1824],[83.87846,18.19027],[83.88817,18.19549],[83.91368,18.20468],[83.93588,18.20904],[83.99716,18.24119],[84.00526,18.24676],[84.07096,18.27659],[84.08211,18.28654],[84.07879,18.28774],[84.08252,18.28793],[84.10042,18.29629],[84.12686,18.31337],[84.12914,18.31706],[84.12638,18.33391],[84.1269,18.34385],[84.13073,18.34529],[84.15065,18.37727],[84.2105,18.43391],[84.21529,18.43895],[84.21391,18.43945],[84.21498,18.4413],[84.21632,18.4398],[84.23123,18.45478],[84.28294,18.49953],[84.32295,18.52874],[84.35473,18.55491],[84.35751,18.56359],[84.35542,18.5663],[84.3566,18.57205],[84.36669,18.59088],[84.38505,18.61035],[84.43985,18.6595],[84.4372,18.65795],[84.44032,18.66144],[84.442,18.67182],[84.44863,18.6855],[84.46966,18.71443],[84.50516,18.75207],[84.53419,18.77417],[84.5515,18.79049],[84.55409,18.79605],[84.5541,18.80384],[84.55784,18.81775],[84.56259,18.8249],[84.57491,18.83765],[84.57669,18.84591],[84.5871,18.86744],[84.6049,18.89112],[84.63673,18.92225],[84.671,18.95248],[84.68448,18.96747],[84.68437,18.96892],[84.67749,18.96695],[84.67645,18.96791],[84.68695,18.97087],[84.7077,18.99824],[84.7116,19.00711],[84.71982,19.01572],[84.76146,19.07912],[84.75109,19.08444],[84.7082,19.11572],[84.7028,19.11786],[84.70144,19.12219],[84.70252,19.12586],[84.69784,19.12644],[84.70612,19.14103],[84.70036,19.14297],[84.70126,19.14462],[84.70005,19.14439],[84.70118,19.14706],[84.71052,19.14646],[84.71485,19.15232],[84.71201,19.15828],[84.70998,19.15967],[84.70473,19.1593],[84.7034,19.16117],[84.69692,19.16076],[84.69622,19.15945],[84.6929,19.16121],[84.68435,19.15999],[84.68073,19.16528],[84.67778,19.16639]],[[84.34953,18.79096],[84.35327,18.78989],[84.35171,18.78577],[84.34953,18.79096]],[[84.33888,18.78994],[84.33936,18.77869],[84.3363,18.78287],[84.32927,18.7872],[84.33111,18.78954],[84.33888,18.78994]],[[82.21502,16.75572],[82.21892,16.76023],[82.22547,16.7637],[82.22961,16.76236],[82.22758,16.75689],[82.21783,16.74331],[82.21879,16.73999],[82.22824,16.7304],[82.23485,16.72927],[82.2715,16.73151],[82.28851,16.73491],[82.29688,16.75312],[82.3015,16.75518],[82.30553,16.75253],[82.30885,16.74551],[82.31062,16.73504],[82.30264,16.71826],[82.293,16.70966],[82.28417,16.70533],[82.26128,16.70192],[82.25437,16.70362],[82.23524,16.71677],[82.22327,16.72186],[82.21037,16.71976],[82.20141,16.72052],[82.18691,16.72833],[82.18245,16.73711],[82.18814,16.7401],[82.19656,16.73922],[82.20459,16.74848],[82.21502,16.75572]],[[79.84291,13.32465],[79.84567,13.32758],[79.84765,13.32435],[79.85005,13.32374],[79.84337,13.32167],[79.84291,13.32465]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"29","area_level":"State","area_name":"Karnataka","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.24167,14.71151],[74.24139,14.71177],[74.24109,14.71192],[74.24085,14.71198],[74.24049,14.7119],[74.2401,14.71175],[74.23955,14.71164],[74.23928,14.71146],[74.23896,14.71136],[74.23863,14.71137],[74.23848,14.71126],[74.2384,14.71102],[74.23765,14.71002],[74.23759,14.70964],[74.23772,14.70927],[74.23814,14.70901],[74.2385,14.70892],[74.23889,14.70875],[74.23961,14.70871],[74.24013,14.70873],[74.24038,14.70897],[74.24051,14.70963],[74.24077,14.70985],[74.24118,14.70996],[74.24149,14.71017],[74.2417,14.7107],[74.2418,14.71116],[74.24167,14.71151]]],[[[74.15677,14.73679],[74.15702,14.73708],[74.15728,14.73751],[74.15754,14.73777],[74.15803,14.73812],[74.15813,14.73838],[74.15808,14.73873],[74.15779,14.7391],[74.15722,14.73934],[74.15671,14.73972],[74.15624,14.74037],[74.15532,14.74122],[74.15424,14.74207],[74.15388,14.74224],[74.15356,14.74228],[74.15339,14.74221],[74.15319,14.74193],[74.15293,14.74123],[74.1524,14.74034],[74.15239,14.74002],[74.15266,14.7398],[74.15353,14.73962],[74.15435,14.73907],[74.155,14.73877],[74.15548,14.73847],[74.15573,14.73814],[74.1558,14.73761],[74.15596,14.73717],[74.15626,14.73686],[74.15661,14.73675],[74.15677,14.73679]]],[[[74.11312,14.75812],[74.11269,14.75857],[74.11213,14.75895],[74.11155,14.75959],[74.11122,14.76013],[74.11116,14.76041],[74.11152,14.76136],[74.11131,14.76168],[74.11091,14.76188],[74.11037,14.76196],[74.10983,14.76186],[74.1093,14.7615],[74.10858,14.76008],[74.10807,14.75963],[74.10786,14.75875],[74.10817,14.75775],[74.10847,14.75752],[74.109,14.75757],[74.10955,14.75744],[74.10989,14.75715],[74.11049,14.75644],[74.1105,14.75613],[74.1097,14.75537],[74.10949,14.75494],[74.10943,14.7545],[74.10954,14.7541],[74.10967,14.75393],[74.11006,14.7539],[74.11048,14.75448],[74.11056,14.75491],[74.11082,14.75524],[74.11138,14.75536],[74.11187,14.75528],[74.11272,14.75474],[74.11312,14.75463],[74.11355,14.75439],[74.11412,14.75428],[74.11469,14.75441],[74.11506,14.7543],[74.11553,14.75428],[74.11574,14.75435],[74.11607,14.75428],[74.11614,14.754],[74.11648,14.75385],[74.11685,14.75383],[74.11719,14.75337],[74.11742,14.75335],[74.11759,14.75347],[74.11757,14.7537],[74.11767,14.75379],[74.11799,14.75375],[74.1183,14.75354],[74.11853,14.75318],[74.11924,14.75282],[74.1195,14.75279],[74.1195,14.75311],[74.11966,14.75334],[74.11969,14.75394],[74.11937,14.75478],[74.11905,14.7552],[74.11842,14.75546],[74.11803,14.75546],[74.11762,14.75575],[74.11718,14.75574],[74.11672,14.75555],[74.11614,14.75567],[74.11485,14.75674],[74.11363,14.75744],[74.11312,14.75812]]],[[[74.08897,14.79371],[74.08906,14.79407],[74.08903,14.79458],[74.08895,14.79478],[74.08904,14.79498],[74.08916,14.79529],[74.08898,14.7955],[74.08725,14.79635],[74.08657,14.79651],[74.08614,14.79649],[74.08599,14.79636],[74.08592,14.79614],[74.08596,14.79593],[74.08639,14.79528],[74.08663,14.79503],[74.08681,14.79488],[74.08704,14.79477],[74.0872,14.79461],[74.08729,14.79447],[74.08727,14.79426],[74.08718,14.79406],[74.08716,14.7939],[74.08717,14.79377],[74.08722,14.79368],[74.08736,14.79356],[74.08754,14.79353],[74.08773,14.79361],[74.08799,14.79359],[74.08813,14.79349],[74.08846,14.79345],[74.08866,14.79346],[74.08878,14.7935],[74.08897,14.79371]]],[[[74.05628,14.81716],[74.05617,14.81725],[74.05596,14.81728],[74.05572,14.81727],[74.05553,14.81716],[74.05523,14.81704],[74.0549,14.81697],[74.05463,14.81697],[74.05432,14.8169],[74.05401,14.81662],[74.05399,14.81634],[74.05402,14.81623],[74.05412,14.81611],[74.05428,14.81601],[74.05446,14.81595],[74.05462,14.81595],[74.05484,14.81606],[74.05501,14.81629],[74.05514,14.81642],[74.05528,14.81647],[74.05547,14.81644],[74.0557,14.8162],[74.05598,14.81608],[74.05628,14.81603],[74.05642,14.81595],[74.05671,14.81552],[74.05713,14.81533],[74.05735,14.8154],[74.05743,14.81552],[74.05733,14.81573],[74.05711,14.81594],[74.05695,14.8162],[74.0569,14.81637],[74.05675,14.81659],[74.05656,14.81674],[74.05637,14.81697],[74.05628,14.81716]]],[[[74.06479,14.81961],[74.06501,14.81975],[74.06545,14.8198],[74.06568,14.8199],[74.06575,14.8201],[74.06565,14.82035],[74.06498,14.82085],[74.06417,14.82134],[74.06392,14.82143],[74.06367,14.82145],[74.06323,14.82136],[74.06308,14.82127],[74.06297,14.82116],[74.06261,14.82113],[74.06229,14.82108],[74.06209,14.82091],[74.06207,14.82075],[74.06211,14.82061],[74.06242,14.82026],[74.06241,14.82011],[74.06228,14.81981],[74.06223,14.81963],[74.06227,14.81952],[74.06266,14.81929],[74.06313,14.81928],[74.06358,14.81943],[74.06387,14.81947],[74.06428,14.8194],[74.06449,14.81946],[74.06479,14.81961]]],[[[74.05905,14.82146],[74.05892,14.82154],[74.05876,14.82175],[74.05861,14.82206],[74.05845,14.8222],[74.05825,14.82223],[74.05806,14.82216],[74.05794,14.82204],[74.05792,14.82184],[74.05802,14.82158],[74.05834,14.82127],[74.05835,14.82119],[74.05814,14.821],[74.05792,14.82059],[74.0579,14.82045],[74.05769,14.82052],[74.05746,14.82066],[74.05721,14.82066],[74.057,14.82058],[74.05676,14.82057],[74.05658,14.82047],[74.05658,14.81979],[74.05672,14.81942],[74.05711,14.81893],[74.05737,14.8188],[74.0576,14.81874],[74.05784,14.81874],[74.05802,14.81886],[74.0581,14.81902],[74.05816,14.8196],[74.05821,14.81964],[74.05845,14.81972],[74.0588,14.81974],[74.05894,14.8196],[74.05912,14.81951],[74.05927,14.81945],[74.05952,14.81948],[74.05965,14.81952],[74.06005,14.8198],[74.06019,14.81981],[74.06048,14.81965],[74.06102,14.81967],[74.0613,14.81978],[74.0615,14.82001],[74.06166,14.82022],[74.06176,14.82051],[74.0618,14.82076],[74.06182,14.82106],[74.0618,14.82132],[74.06166,14.82156],[74.06145,14.82166],[74.06105,14.82171],[74.06049,14.82159],[74.06036,14.82162],[74.06009,14.82176],[74.05988,14.82175],[74.05931,14.82143],[74.05905,14.82146]]],[[[74.09364,14.83582],[74.0938,14.83595],[74.09393,14.8361],[74.09407,14.83629],[74.09415,14.83648],[74.09424,14.8366],[74.0943,14.83663],[74.0947,14.83667],[74.09485,14.83676],[74.09522,14.83708],[74.09557,14.83723],[74.0957,14.83725],[74.09578,14.83731],[74.09585,14.83739],[74.09586,14.83756],[74.09582,14.83783],[74.09568,14.83808],[74.0955,14.83818],[74.09523,14.83827],[74.09512,14.83828],[74.09501,14.83834],[74.09485,14.83846],[74.0947,14.83852],[74.09428,14.83863],[74.09409,14.83873],[74.09389,14.83881],[74.0937,14.83883],[74.09358,14.83879],[74.09345,14.83868],[74.09306,14.8381],[74.09299,14.83791],[74.09287,14.83775],[74.09274,14.83765],[74.09262,14.83724],[74.09254,14.83715],[74.09253,14.8369],[74.09261,14.83676],[74.09283,14.83656],[74.09289,14.83633],[74.09287,14.83615],[74.0929,14.83605],[74.09297,14.83598],[74.09309,14.83588],[74.09328,14.83583],[74.09344,14.83581],[74.09364,14.83582]]],[[[74.10004,14.84466],[74.0997,14.84468],[74.09943,14.84488],[74.09867,14.84521],[74.09838,14.84579],[74.09797,14.84607],[74.09732,14.84639],[74.09709,14.84642],[74.09668,14.84628],[74.09632,14.846],[74.09614,14.84576],[74.09617,14.84558],[74.09639,14.84532],[74.09641,14.84509],[74.09635,14.84489],[74.09638,14.84476],[74.09659,14.84459],[74.09678,14.84429],[74.09665,14.84395],[74.09659,14.84363],[74.0966,14.84325],[74.09676,14.84297],[74.09687,14.84287],[74.09712,14.84278],[74.09737,14.84233],[74.0978,14.84213],[74.09812,14.84207],[74.09869,14.84175],[74.09891,14.84173],[74.09915,14.8418],[74.09949,14.84205],[74.09968,14.84198],[74.09996,14.84174],[74.10009,14.84136],[74.10022,14.84124],[74.10053,14.84116],[74.10074,14.84118],[74.10096,14.84132],[74.10108,14.84151],[74.10085,14.84189],[74.10082,14.84216],[74.10115,14.84248],[74.10122,14.84274],[74.10137,14.84296],[74.1017,14.84311],[74.10187,14.84326],[74.10192,14.84352],[74.1019,14.84369],[74.10163,14.844],[74.10151,14.84419],[74.10142,14.84454],[74.10134,14.84476],[74.10126,14.84483],[74.10103,14.84485],[74.10067,14.84471],[74.10034,14.84465],[74.10004,14.84466]]],[[[74.10782,14.86535],[74.10775,14.86555],[74.10756,14.86571],[74.10703,14.86571],[74.10647,14.86561],[74.10635,14.86551],[74.10628,14.86541],[74.10627,14.86528],[74.1063,14.8651],[74.10642,14.86491],[74.10661,14.86484],[74.10672,14.86486],[74.10677,14.86501],[74.10679,14.86514],[74.10689,14.86516],[74.10705,14.86516],[74.10723,14.86517],[74.10763,14.86513],[74.10775,14.86519],[74.10782,14.86535]]],[[[74.2913,15.83217],[74.27833,15.82929],[74.26171,15.82967],[74.26157,15.82848],[74.26368,15.82433],[74.26896,15.81659],[74.26838,15.81449],[74.26665,15.81209],[74.26619,15.80978],[74.26634,15.80573],[74.26704,15.80386],[74.2668,15.80251],[74.26787,15.80119],[74.26794,15.80027],[74.26647,15.7978],[74.27094,15.79508],[74.27239,15.79642],[74.27486,15.79609],[74.27548,15.79498],[74.27711,15.79425],[74.27796,15.79291],[74.28078,15.79073],[74.28349,15.79022],[74.28485,15.78923],[74.28544,15.78794],[74.28982,15.78773],[74.29013,15.78837],[74.28936,15.78962],[74.28915,15.79142],[74.28962,15.79221],[74.2933,15.79527],[74.29673,15.79414],[74.29787,15.79097],[74.29993,15.79003],[74.30035,15.78919],[74.3014,15.7885],[74.30177,15.78752],[74.30234,15.78746],[74.30301,15.78822],[74.30566,15.78925],[74.30579,15.79008],[74.307,15.7907],[74.30944,15.79118],[74.31029,15.79247],[74.31176,15.79326],[74.31171,15.79412],[74.31243,15.79449],[74.31341,15.79643],[74.31276,15.7976],[74.31291,15.7982],[74.31206,15.79928],[74.31124,15.79938],[74.31007,15.80146],[74.30928,15.80155],[74.3063,15.80342],[74.30455,15.80495],[74.30337,15.80666],[74.30346,15.80721],[74.30047,15.81402],[74.2913,15.83217]]],[[[77.3323,18.45086],[77.3269,18.45175],[77.32642,18.45885],[77.31989,18.45803],[77.31688,18.44799],[77.31685,18.44225],[77.30066,18.43818],[77.30032,18.43639],[77.28717,18.43057],[77.27904,18.4298],[77.27325,18.42302],[77.26565,18.42234],[77.25937,18.41326],[77.24177,18.41261],[77.23476,18.39676],[77.23369,18.3882],[77.23946,18.37861],[77.24842,18.37606],[77.24639,18.37077],[77.23399,18.3698],[77.22583,18.36522],[77.22448,18.35597],[77.22009,18.34927],[77.22958,18.34821],[77.22277,18.33975],[77.21907,18.32573],[77.21478,18.32324],[77.21179,18.31628],[77.20167,18.32217],[77.19871,18.31545],[77.20311,18.30542],[77.20293,18.29773],[77.20555,18.2941],[77.20985,18.29497],[77.20936,18.28772],[77.21301,18.28032],[77.20377,18.28006],[77.19747,18.27661],[77.19541,18.27981],[77.18821,18.28474],[77.17481,18.28486],[77.17073,18.2767],[77.16903,18.26583],[77.17041,18.26431],[77.16975,18.26087],[77.15913,18.25579],[77.15177,18.23802],[77.14863,18.23905],[77.14923,18.2214],[77.15071,18.22216],[77.15152,18.21704],[77.1427,18.21704],[77.14014,18.20772],[77.13464,18.20721],[77.13374,18.20586],[77.12728,18.20767],[77.11129,18.20424],[77.0976,18.19672],[77.09912,18.19199],[77.11634,18.17102],[77.11672,18.16618],[77.11154,18.15583],[77.1069,18.15516],[77.10324,18.15783],[77.09948,18.15819],[77.09132,18.15584],[77.08485,18.15079],[77.06396,18.15065],[77.05865,18.15661],[77.0532,18.15945],[77.05198,18.17323],[77.03318,18.18199],[77.03173,18.17743],[77.02308,18.17565],[77.02565,18.16175],[77.0233,18.15851],[77.00111,18.1609],[77.00179,18.16235],[76.99641,18.1662],[76.9932,18.17581],[76.99401,18.18054],[76.99056,18.18576],[76.99061,18.18999],[76.9784,18.19198],[76.97742,18.18887],[76.9658,18.19007],[76.95193,18.1881],[76.94845,18.16876],[76.94768,18.16641],[76.94608,18.16663],[76.94236,18.15641],[76.93148,18.15965],[76.92396,18.14663],[76.92448,18.14274],[76.9318,18.13353],[76.92025,18.12507],[76.9205,18.11818],[76.92171,18.11555],[76.92486,18.11631],[76.93292,18.11283],[76.93774,18.11491],[76.95427,18.11054],[76.95872,18.10412],[76.96635,18.0982],[76.96493,18.09173],[76.96294,18.08957],[76.94521,18.0832],[76.95144,18.06566],[76.95162,18.06105],[76.95106,18.05776],[76.9449,18.04836],[76.94836,18.0444],[76.95269,18.04394],[76.95231,18.04022],[76.93662,18.03686],[76.91432,18.03536],[76.9123,18.01734],[76.91094,18.01496],[76.90763,18.01422],[76.90564,18.00971],[76.90603,18.00232],[76.90807,17.99952],[76.90671,17.99659],[76.91314,17.99689],[76.91367,17.99322],[76.91226,17.97805],[76.91444,17.96156],[76.91539,17.95711],[76.9183,17.95602],[76.91729,17.94806],[76.92067,17.94157],[76.91898,17.91595],[76.91474,17.91481],[76.90126,17.91724],[76.89899,17.90907],[76.89689,17.91037],[76.89655,17.90575],[76.89384,17.90607],[76.89504,17.90275],[76.89419,17.89983],[76.88849,17.89794],[76.88399,17.89898],[76.88427,17.89429],[76.88139,17.89556],[76.87917,17.89452],[76.87266,17.89808],[76.85264,17.90072],[76.83972,17.89937],[76.83192,17.89526],[76.8312,17.88562],[76.81022,17.88704],[76.80768,17.87802],[76.80819,17.87098],[76.80667,17.87058],[76.79878,17.87154],[76.78839,17.87579],[76.77505,17.87771],[76.77357,17.89046],[76.76816,17.90115],[76.75713,17.89917],[76.73997,17.8997],[76.74125,17.8954],[76.73884,17.8831],[76.73848,17.85668],[76.75149,17.85813],[76.75922,17.85588],[76.7656,17.85128],[76.7675,17.85213],[76.77407,17.84638],[76.77422,17.84197],[76.77931,17.83628],[76.787,17.8332],[76.79039,17.82633],[76.78286,17.81792],[76.78151,17.80939],[76.78259,17.80664],[76.77873,17.80048],[76.77544,17.79829],[76.76651,17.79847],[76.7659,17.79224],[76.76446,17.78896],[76.7621,17.78878],[76.76204,17.78702],[76.75091,17.78705],[76.75074,17.78455],[76.74253,17.78422],[76.74434,17.78034],[76.74065,17.77946],[76.72987,17.78274],[76.73016,17.78385],[76.72094,17.78806],[76.71409,17.78094],[76.71191,17.77327],[76.72107,17.7695],[76.71879,17.75148],[76.72481,17.7511],[76.72404,17.74796],[76.72827,17.73756],[76.69965,17.72725],[76.70433,17.72301],[76.70365,17.71562],[76.70131,17.70907],[76.69254,17.70672],[76.69214,17.70078],[76.69418,17.69568],[76.69083,17.68575],[76.69084,17.681],[76.68738,17.68005],[76.68436,17.68589],[76.67972,17.68635],[76.67492,17.68999],[76.67076,17.69053],[76.66419,17.68756],[76.65973,17.70828],[76.6556,17.71785],[76.65279,17.72213],[76.63326,17.72822],[76.6281,17.75065],[76.63188,17.75464],[76.62243,17.7605],[76.61533,17.7704],[76.61104,17.76936],[76.60696,17.75936],[76.6053,17.75865],[76.59979,17.73271],[76.60108,17.72586],[76.59438,17.72245],[76.58834,17.70758],[76.5822,17.70527],[76.5703,17.70541],[76.5678,17.74248],[76.56396,17.75083],[76.57271,17.76054],[76.56126,17.76462],[76.53069,17.75826],[76.52328,17.7598],[76.52736,17.73784],[76.5239,17.71515],[76.51173,17.71797],[76.50069,17.71842],[76.48723,17.71476],[76.48449,17.67851],[76.48502,17.67098],[76.48975,17.6605],[76.48667,17.65841],[76.45892,17.65812],[76.45286,17.65579],[76.45448,17.64979],[76.44184,17.64931],[76.445,17.64095],[76.43539,17.64626],[76.42919,17.64495],[76.42724,17.63959],[76.42849,17.63379],[76.42679,17.62581],[76.41929,17.60623],[76.41968,17.60371],[76.39305,17.60315],[76.39186,17.60065],[76.3817,17.60225],[76.37764,17.59787],[76.35003,17.5941],[76.33674,17.5973],[76.33156,17.59598],[76.33129,17.59742],[76.33313,17.56499],[76.33503,17.56518],[76.33853,17.5568],[76.34069,17.54247],[76.34875,17.53943],[76.36274,17.53737],[76.36722,17.51945],[76.3646,17.51497],[76.34657,17.51258],[76.34333,17.50066],[76.34576,17.49253],[76.36231,17.49592],[76.37469,17.49565],[76.37552,17.49022],[76.36824,17.4832],[76.35036,17.47417],[76.33321,17.47176],[76.33069,17.47019],[76.33095,17.45567],[76.33343,17.45548],[76.33326,17.4339],[76.35348,17.4373],[76.37151,17.43642],[76.37,17.41694],[76.37107,17.41343],[76.36343,17.37767],[76.38298,17.37397],[76.40912,17.37139],[76.41219,17.35107],[76.40316,17.34997],[76.39661,17.3471],[76.3851,17.32376],[76.38316,17.31453],[76.35401,17.31432],[76.35429,17.3244],[76.34703,17.3442],[76.3453,17.35445],[76.33803,17.35411],[76.3292,17.35081],[76.31434,17.34839],[76.31203,17.34601],[76.31886,17.33814],[76.31766,17.33238],[76.27636,17.33457],[76.27201,17.36059],[76.27004,17.36051],[76.26702,17.36348],[76.26504,17.36171],[76.25073,17.36043],[76.24905,17.36659],[76.25043,17.36968],[76.24458,17.37154],[76.24413,17.37879],[76.24209,17.37884],[76.22853,17.37584],[76.22944,17.36521],[76.21236,17.36199],[76.19639,17.36367],[76.18042,17.35839],[76.17031,17.35262],[76.17264,17.33629],[76.17658,17.32461],[76.17926,17.31857],[76.18325,17.31943],[76.18107,17.30905],[76.17632,17.30079],[76.16508,17.30334],[76.16262,17.34522],[76.14105,17.35349],[76.133,17.35832],[76.11895,17.3705],[76.11299,17.36752],[76.09974,17.36465],[76.08938,17.35313],[76.09347,17.34935],[76.08812,17.34217],[76.0875,17.33651],[76.07913,17.3316],[76.0734,17.33651],[76.07214,17.33531],[76.06463,17.35121],[76.06054,17.35531],[76.05277,17.35579],[76.03775,17.35188],[76.02853,17.35114],[76.01433,17.35353],[76.01019,17.35238],[75.99827,17.33797],[75.9839,17.33622],[75.96871,17.33647],[75.93082,17.32257],[75.9251,17.32575],[75.91008,17.34452],[75.8945,17.35083],[75.89058,17.35652],[75.89018,17.36117],[75.89524,17.37818],[75.89406,17.4012],[75.8919,17.40755],[75.88419,17.41796],[75.87848,17.41813],[75.87651,17.41614],[75.87452,17.41236],[75.8752,17.39809],[75.86088,17.38559],[75.85641,17.38943],[75.85406,17.40449],[75.85108,17.41053],[75.83026,17.42181],[75.82144,17.42122],[75.81898,17.4181],[75.81832,17.40662],[75.81358,17.39572],[75.8151,17.37847],[75.81366,17.37276],[75.80608,17.36802],[75.79294,17.3697],[75.78028,17.37564],[75.77203,17.38574],[75.7679,17.40235],[75.76587,17.4053],[75.75309,17.40713],[75.73359,17.42009],[75.72807,17.41942],[75.71998,17.41152],[75.71244,17.40793],[75.7045,17.40748],[75.69073,17.40947],[75.6835,17.41692],[75.67809,17.43406],[75.6785,17.45109],[75.67588,17.45594],[75.66895,17.45859],[75.65884,17.45806],[75.64879,17.47033],[75.63298,17.47721],[75.62744,17.4625],[75.62161,17.45925],[75.61545,17.43885],[75.61335,17.42474],[75.60958,17.42374],[75.6066,17.42037],[75.61208,17.4074],[75.61352,17.39192],[75.60612,17.39448],[75.60108,17.39031],[75.5936,17.3873],[75.57414,17.3833],[75.57718,17.37591],[75.58085,17.35122],[75.58629,17.35059],[75.59514,17.34621],[75.61003,17.34504],[75.61057,17.33687],[75.61235,17.33689],[75.61209,17.32514],[75.60373,17.3055],[75.62241,17.2951],[75.62547,17.28532],[75.63022,17.28084],[75.62785,17.27434],[75.65417,17.27382],[75.65772,17.26321],[75.65856,17.23867],[75.66191,17.21458],[75.65539,17.20553],[75.64259,17.19765],[75.63985,17.19432],[75.63993,17.18887],[75.62843,17.18866],[75.62886,17.1834],[75.62723,17.18316],[75.62538,17.174],[75.62826,17.16269],[75.6452,17.14421],[75.64757,17.13451],[75.64953,17.13438],[75.65035,17.11569],[75.67229,17.116],[75.67234,17.1014],[75.67579,17.09529],[75.67337,17.0912],[75.67874,17.07715],[75.67672,17.06542],[75.6604,17.0645],[75.65031,17.05726],[75.641,17.03758],[75.64999,17.03224],[75.66969,17.03816],[75.66909,17.00957],[75.66723,17.00576],[75.66572,16.99375],[75.66608,16.97977],[75.66882,16.97983],[75.67184,16.97593],[75.67255,16.97013],[75.67708,16.969],[75.67513,16.96555],[75.67032,16.96205],[75.6554,16.96153],[75.64893,16.95899],[75.64668,16.95469],[75.64476,16.95408],[75.63821,16.95775],[75.63693,16.96854],[75.63393,16.97026],[75.60786,16.971],[75.60824,16.98165],[75.60613,16.99436],[75.60689,17.00457],[75.5731,17.00961],[75.56722,17.00905],[75.56609,16.98138],[75.56765,16.96575],[75.56413,16.96791],[75.53917,16.96548],[75.52931,16.9694],[75.50966,16.95025],[75.50736,16.95083],[75.48908,16.94442],[75.48917,16.95911],[75.48324,16.97599],[75.47856,16.97857],[75.46889,16.97954],[75.46618,16.98131],[75.46555,16.98837],[75.4416,16.98223],[75.43536,16.97345],[75.42788,16.96649],[75.41151,16.97425],[75.39214,16.98009],[75.36854,16.97195],[75.36113,16.96557],[75.35839,16.9649],[75.35853,16.96286],[75.35005,16.95782],[75.32555,16.95582],[75.2796,16.95656],[75.281,16.95305],[75.27938,16.92333],[75.2829,16.90972],[75.28994,16.90403],[75.28203,16.88029],[75.27299,16.8692],[75.26472,16.8628],[75.23766,16.86794],[75.22764,16.84318],[75.2142,16.8417],[75.18185,16.8434],[75.18899,16.87528],[75.17658,16.86771],[75.15555,16.86856],[75.13648,16.87449],[75.13246,16.88942],[75.13484,16.8947],[75.12032,16.90253],[75.11748,16.91344],[75.09631,16.91374],[75.0918,16.92605],[75.09214,16.94011],[75.08933,16.95158],[75.08508,16.95157],[75.07812,16.94883],[75.07435,16.95002],[75.07259,16.94665],[75.06204,16.94152],[75.04454,16.94173],[75.04139,16.94006],[75.04066,16.93644],[75.03787,16.93571],[75.03577,16.93284],[75.0336,16.93372],[75.02906,16.93149],[75.02643,16.93192],[75.0271,16.92945],[75.02523,16.928],[75.02477,16.93964],[75.02659,16.94414],[75.0045,16.94627],[75.00035,16.94985],[74.99291,16.95207],[74.96826,16.95016],[74.96436,16.94763],[74.96751,16.94161],[74.96064,16.93995],[74.96016,16.93726],[74.9605,16.93348],[74.96568,16.92986],[74.96454,16.92678],[74.95826,16.92824],[74.95042,16.93295],[74.9476,16.93935],[74.94117,16.94078],[74.93671,16.9442],[74.93171,16.94476],[74.93056,16.94167],[74.92654,16.93932],[74.92316,16.93931],[74.92178,16.92986],[74.93422,16.92423],[74.93266,16.91891],[74.93827,16.91729],[74.94435,16.91084],[74.95486,16.91017],[74.95535,16.90534],[74.95884,16.90585],[74.96227,16.91058],[74.96364,16.9111],[74.96358,16.90971],[74.96036,16.88095],[74.94458,16.88116],[74.94438,16.8827],[74.93592,16.87924],[74.93522,16.87107],[74.92555,16.87203],[74.92542,16.86772],[74.92402,16.86713],[74.9265,16.86354],[74.91097,16.86404],[74.90152,16.86255],[74.90424,16.85939],[74.90761,16.85017],[74.91029,16.83514],[74.90873,16.8237],[74.91022,16.81659],[74.91082,16.78954],[74.92014,16.7725],[74.88987,16.77126],[74.86936,16.77407],[74.86568,16.76336],[74.84982,16.77276],[74.84451,16.76182],[74.79874,16.75366],[74.79575,16.74775],[74.78337,16.75132],[74.77197,16.75068],[74.76937,16.74481],[74.76505,16.74186],[74.76035,16.74127],[74.75299,16.73309],[74.75276,16.73086],[74.73698,16.72354],[74.73209,16.71832],[74.73035,16.72013],[74.73004,16.71875],[74.72732,16.71909],[74.72718,16.71684],[74.70569,16.71491],[74.69102,16.71554],[74.68855,16.71279],[74.68773,16.7086],[74.68978,16.69726],[74.6894,16.68646],[74.68082,16.68589],[74.68109,16.68091],[74.68886,16.68154],[74.68955,16.67703],[74.67902,16.6731],[74.6795,16.66617],[74.66516,16.66567],[74.65916,16.64734],[74.65348,16.63883],[74.65905,16.63167],[74.66981,16.6294],[74.6766,16.62359],[74.68757,16.61789],[74.68986,16.61314],[74.68698,16.60679],[74.68268,16.6061],[74.67383,16.6092],[74.65999,16.6029],[74.65405,16.60417],[74.64443,16.61029],[74.64001,16.61045],[74.63615,16.60742],[74.63335,16.60036],[74.63323,16.59083],[74.63586,16.58391],[74.63319,16.58321],[74.62863,16.57773],[74.62284,16.57975],[74.6188,16.58407],[74.61708,16.57587],[74.60952,16.56959],[74.60428,16.56898],[74.60196,16.56536],[74.59896,16.56431],[74.58788,16.5661],[74.58403,16.56235],[74.58464,16.55913],[74.5746,16.55894],[74.57381,16.55391],[74.56854,16.55387],[74.56065,16.56262],[74.55639,16.56277],[74.55485,16.56451],[74.55602,16.57356],[74.56466,16.57965],[74.56689,16.58539],[74.55877,16.59465],[74.54349,16.59532],[74.5427,16.62663],[74.54473,16.62898],[74.54449,16.63547],[74.52445,16.63343],[74.50385,16.63356],[74.50024,16.63313],[74.49501,16.62975],[74.48903,16.63014],[74.47672,16.64447],[74.47171,16.66405],[74.46874,16.6638],[74.46408,16.65827],[74.4564,16.65505],[74.45835,16.64868],[74.45478,16.6473],[74.4585,16.63557],[74.46581,16.62472],[74.46574,16.61566],[74.4641,16.61509],[74.46671,16.60682],[74.46345,16.60449],[74.43544,16.60106],[74.42634,16.59574],[74.42215,16.58451],[74.42081,16.58612],[74.40869,16.58323],[74.39663,16.58327],[74.39554,16.57217],[74.39121,16.56655],[74.39291,16.56488],[74.3869,16.55994],[74.38858,16.55076],[74.38715,16.5362],[74.37983,16.52859],[74.37643,16.52913],[74.37081,16.5348],[74.36082,16.53893],[74.35793,16.53834],[74.35774,16.54608],[74.35611,16.54976],[74.35908,16.55575],[74.35625,16.55975],[74.35399,16.55892],[74.35512,16.55506],[74.35028,16.55603],[74.34572,16.555],[74.34446,16.55173],[74.33969,16.54776],[74.33488,16.54788],[74.32517,16.5563],[74.31757,16.55371],[74.31571,16.55445],[74.31512,16.5046],[74.30614,16.50369],[74.30096,16.52317],[74.30261,16.52665],[74.30165,16.52902],[74.2916,16.53388],[74.28909,16.53244],[74.28685,16.52677],[74.28314,16.52459],[74.28075,16.53145],[74.28109,16.5411],[74.27692,16.54542],[74.27054,16.54796],[74.26413,16.53983],[74.26975,16.52217],[74.2761,16.52131],[74.27801,16.50446],[74.26573,16.5011],[74.25251,16.50062],[74.24737,16.49691],[74.25663,16.48954],[74.26077,16.4801],[74.27438,16.48563],[74.27458,16.49403],[74.27966,16.50483],[74.2909,16.5049],[74.29218,16.48571],[74.28845,16.47723],[74.28928,16.46297],[74.29195,16.46175],[74.29705,16.46454],[74.3064,16.45528],[74.31246,16.45324],[74.32044,16.45392],[74.32466,16.45593],[74.33259,16.45476],[74.32971,16.4472],[74.33623,16.44567],[74.33269,16.43685],[74.33674,16.42881],[74.33129,16.42418],[74.32885,16.41905],[74.33505,16.40141],[74.34289,16.40346],[74.3448,16.40553],[74.36369,16.40509],[74.36291,16.39552],[74.35797,16.38954],[74.35701,16.38344],[74.35358,16.38188],[74.35341,16.36642],[74.3473,16.36832],[74.34512,16.37314],[74.34564,16.3769],[74.34121,16.38277],[74.34064,16.38867],[74.33587,16.39374],[74.32749,16.3915],[74.32814,16.38534],[74.32484,16.37829],[74.31719,16.381],[74.32084,16.37589],[74.31898,16.37164],[74.32477,16.35994],[74.32425,16.35743],[74.31789,16.35496],[74.31764,16.35305],[74.32703,16.34251],[74.32648,16.34142],[74.31879,16.34266],[74.31532,16.34008],[74.31656,16.33619],[74.3225,16.33437],[74.31661,16.32656],[74.32064,16.32375],[74.32874,16.32375],[74.33129,16.32067],[74.32461,16.31666],[74.32516,16.31368],[74.32919,16.31221],[74.33322,16.31345],[74.33296,16.31106],[74.33474,16.30903],[74.33192,16.30525],[74.33591,16.30709],[74.34042,16.30244],[74.34028,16.29816],[74.34255,16.29803],[74.34201,16.29118],[74.34,16.29213],[74.33831,16.29001],[74.33472,16.28961],[74.33184,16.29243],[74.32796,16.29325],[74.32469,16.2889],[74.32578,16.28559],[74.32083,16.28448],[74.32245,16.27791],[74.32457,16.27723],[74.32493,16.27176],[74.32846,16.26887],[74.33415,16.2688],[74.33506,16.2704],[74.33333,16.27597],[74.33843,16.2714],[74.34335,16.27309],[74.34205,16.27651],[74.34378,16.27808],[74.35046,16.27537],[74.35363,16.28309],[74.34301,16.29066],[74.3456,16.29376],[74.35101,16.29179],[74.35478,16.29264],[74.3593,16.29058],[74.36253,16.28672],[74.36714,16.26943],[74.37301,16.26164],[74.38064,16.26197],[74.38021,16.27115],[74.38261,16.27736],[74.41051,16.2831],[74.41181,16.28166],[74.41439,16.28265],[74.41595,16.2801],[74.41761,16.258],[74.43577,16.25883],[74.43555,16.25115],[74.45483,16.25339],[74.45609,16.24386],[74.46862,16.24019],[74.47671,16.24943],[74.48048,16.25013],[74.49035,16.23489],[74.49521,16.2349],[74.5031,16.22541],[74.50311,16.22247],[74.49629,16.21667],[74.49593,16.2143],[74.50126,16.20553],[74.508,16.20226],[74.50584,16.20136],[74.50723,16.19653],[74.50624,16.19024],[74.50331,16.18807],[74.49379,16.18645],[74.48955,16.17742],[74.48984,16.16342],[74.48837,16.15726],[74.47983,16.14713],[74.48007,16.14499],[74.48511,16.1423],[74.48587,16.13406],[74.49084,16.11672],[74.49123,16.10431],[74.4851,16.09837],[74.48482,16.09221],[74.48156,16.08889],[74.47273,16.0906],[74.47269,16.09299],[74.46105,16.09978],[74.45868,16.1038],[74.4429,16.10534],[74.42762,16.11197],[74.40997,16.10212],[74.40696,16.09351],[74.39004,16.08946],[74.39182,16.08253],[74.39086,16.08048],[74.38954,16.07979],[74.38362,16.08293],[74.38173,16.0793],[74.37222,16.07821],[74.37151,16.06824],[74.36133,16.05384],[74.36355,16.05303],[74.37252,16.056],[74.37734,16.05512],[74.37457,16.04689],[74.36905,16.03922],[74.3734,16.03644],[74.378,16.0377],[74.38099,16.03548],[74.40209,16.04611],[74.40552,16.05184],[74.42969,16.05915],[74.43422,16.05847],[74.44285,16.05281],[74.45012,16.05401],[74.45714,16.04823],[74.46221,16.04984],[74.46302,16.04162],[74.45649,16.04106],[74.46322,16.03919],[74.45723,16.02697],[74.45535,16.01952],[74.45011,16.01105],[74.45026,16.00855],[74.44691,16.00318],[74.44477,16.00305],[74.44634,15.9971],[74.44464,15.99244],[74.44261,15.99163],[74.44395,15.9864],[74.43787,15.9799],[74.43893,15.97568],[74.43607,15.96747],[74.43099,15.95962],[74.43083,15.95658],[74.38687,15.90498],[74.38778,15.90131],[74.39342,15.90004],[74.39674,15.88036],[74.39279,15.87839],[74.39765,15.86997],[74.40637,15.86445],[74.40617,15.85538],[74.40163,15.85461],[74.40235,15.85227],[74.39754,15.85115],[74.39141,15.85476],[74.38814,15.85425],[74.38693,15.85965],[74.38283,15.86004],[74.38003,15.87629],[74.37675,15.88238],[74.3661,15.89131],[74.36861,15.89436],[74.3647,15.89386],[74.36513,15.8825],[74.36326,15.87492],[74.35794,15.87316],[74.35087,15.86543],[74.34552,15.86229],[74.34661,15.85879],[74.33821,15.85492],[74.345,15.85044],[74.38309,15.8491],[74.38405,15.84012],[74.38104,15.83538],[74.37993,15.83827],[74.3766,15.83335],[74.3774,15.83222],[74.37482,15.83313],[74.37233,15.83022],[74.37074,15.83057],[74.36641,15.82576],[74.36536,15.81927],[74.36062,15.81778],[74.36267,15.81469],[74.36993,15.81146],[74.3703,15.80849],[74.36869,15.80695],[74.37192,15.80098],[74.37039,15.79859],[74.37197,15.79824],[74.36889,15.79174],[74.36904,15.78812],[74.36214,15.78236],[74.35843,15.77483],[74.35025,15.77032],[74.34568,15.76456],[74.34069,15.76467],[74.33747,15.7679],[74.32307,15.77268],[74.31899,15.76622],[74.31862,15.75838],[74.30974,15.75489],[74.31034,15.75157],[74.3079,15.74848],[74.30135,15.74764],[74.29612,15.74442],[74.28729,15.74198],[74.2852,15.74173],[74.28426,15.74366],[74.2736,15.74908],[74.26832,15.75474],[74.26384,15.75296],[74.25554,15.74604],[74.25386,15.74677],[74.25403,15.74515],[74.24026,15.74332],[74.23708,15.74518],[74.23652,15.74822],[74.2337,15.7483],[74.23243,15.75221],[74.22797,15.75603],[74.2265,15.76263],[74.22858,15.7721],[74.23458,15.77858],[74.2335,15.78699],[74.22777,15.7884],[74.22103,15.786],[74.2159,15.78389],[74.21311,15.78006],[74.20897,15.78127],[74.20143,15.75862],[74.18953,15.75212],[74.16156,15.75129],[74.1533,15.74363],[74.15111,15.73987],[74.15097,15.73581],[74.14401,15.73309],[74.14184,15.73433],[74.13396,15.72982],[74.13346,15.72631],[74.13076,15.72336],[74.12582,15.72411],[74.12217,15.72073],[74.1261,15.71846],[74.12618,15.70796],[74.12834,15.70867],[74.13143,15.70587],[74.13213,15.7024],[74.13034,15.70175],[74.13168,15.69354],[74.13072,15.68963],[74.12577,15.68097],[74.10885,15.67269],[74.10261,15.67222],[74.09136,15.67463],[74.08806,15.67226],[74.08828,15.66994],[74.09423,15.66308],[74.10188,15.65839],[74.11094,15.65769],[74.11828,15.652],[74.13554,15.64837],[74.14112,15.6511],[74.14909,15.65197],[74.15435,15.6499],[74.15747,15.65468],[74.16442,15.6535],[74.16558,15.65438],[74.16737,15.67201],[74.17208,15.674],[74.17668,15.67987],[74.18155,15.68215],[74.1891,15.68059],[74.18989,15.67911],[74.19039,15.67632],[74.1861,15.6745],[74.18684,15.66745],[74.20406,15.66368],[74.20175,15.65634],[74.20513,15.65103],[74.21745,15.65274],[74.22216,15.65564],[74.22222,15.65685],[74.21772,15.65836],[74.21515,15.66287],[74.21765,15.6623],[74.21802,15.66435],[74.22378,15.66898],[74.2246,15.66626],[74.22841,15.66444],[74.22979,15.66638],[74.23636,15.66858],[74.2394,15.66461],[74.23817,15.66362],[74.24299,15.66244],[74.24485,15.6582],[74.25044,15.65726],[74.25198,15.65431],[74.24416,15.62611],[74.24826,15.6229],[74.25372,15.62674],[74.25848,15.6234],[74.25859,15.62078],[74.2643,15.61551],[74.25999,15.60672],[74.26025,15.59263],[74.24874,15.58038],[74.25053,15.57737],[74.24519,15.5666],[74.24967,15.56765],[74.25833,15.56169],[74.26129,15.56481],[74.26315,15.56394],[74.2653,15.55837],[74.27792,15.54611],[74.28265,15.53142],[74.2817,15.52613],[74.27815,15.52285],[74.27847,15.51748],[74.27647,15.51489],[74.27148,15.51085],[74.25517,15.50307],[74.25229,15.49934],[74.25091,15.49159],[74.26398,15.47236],[74.27545,15.44919],[74.27737,15.44049],[74.27506,15.43646],[74.27689,15.43521],[74.26992,15.42604],[74.26878,15.4191],[74.27041,15.41596],[74.27432,15.41358],[74.2783,15.40569],[74.27587,15.39159],[74.28299,15.38294],[74.29871,15.38194],[74.3086,15.37445],[74.3232,15.36768],[74.31626,15.363],[74.31604,15.35997],[74.32184,15.3436],[74.31722,15.33517],[74.31702,15.32912],[74.32443,15.30991],[74.33644,15.29494],[74.32637,15.28374],[74.32057,15.2847],[74.31963,15.28344],[74.30796,15.28333],[74.29433,15.28919],[74.29335,15.28451],[74.28765,15.28389],[74.28179,15.28042],[74.27633,15.28353],[74.27149,15.28113],[74.26103,15.26019],[74.25111,15.25885],[74.25469,15.25407],[74.2522,15.25103],[74.25955,15.24102],[74.28114,15.23626],[74.2867,15.23281],[74.2915,15.23382],[74.30161,15.22434],[74.29986,15.21993],[74.30144,15.21705],[74.30221,15.21801],[74.30452,15.21672],[74.30575,15.2094],[74.31005,15.20629],[74.30862,15.20179],[74.31039,15.19468],[74.31696,15.18626],[74.31738,15.18375],[74.31417,15.18054],[74.31425,15.17752],[74.29567,15.15124],[74.29135,15.14891],[74.28513,15.14903],[74.28358,15.14287],[74.28519,15.13672],[74.28488,15.11391],[74.28288,15.11303],[74.28266,15.10674],[74.27655,15.10538],[74.27265,15.0975],[74.27524,15.09595],[74.27969,15.08808],[74.28073,15.06882],[74.28373,15.06613],[74.28951,15.06482],[74.29025,15.05361],[74.29461,15.04917],[74.29649,15.04121],[74.28824,15.03674],[74.28326,15.03157],[74.28341,15.02353],[74.27245,15.01425],[74.26647,15.00689],[74.26807,15.00201],[74.25361,14.99815],[74.25212,14.99268],[74.2577,14.98823],[74.26432,14.97852],[74.26099,14.97647],[74.2591,14.97006],[74.25527,14.97042],[74.2526,14.95909],[74.24923,14.95904],[74.24755,14.96192],[74.2367,14.96685],[74.23286,14.96412],[74.23175,14.95337],[74.2298,14.9505],[74.22596,14.95046],[74.21755,14.94595],[74.21366,14.94769],[74.21164,14.94354],[74.21263,14.94027],[74.20913,14.93806],[74.20154,14.92572],[74.19166,14.93304],[74.19466,14.93709],[74.19476,14.93994],[74.19126,14.94501],[74.17972,14.9508],[74.17836,14.95367],[74.17946,14.95705],[74.17476,14.95853],[74.17138,14.95719],[74.16361,14.95848],[74.16077,14.95555],[74.15915,14.95585],[74.15833,14.94931],[74.15416,14.94343],[74.15547,14.9422],[74.15426,14.93984],[74.15624,14.93887],[74.15855,14.93023],[74.16258,14.92689],[74.16591,14.91859],[74.16619,14.91655],[74.16212,14.91214],[74.15342,14.91714],[74.14572,14.91895],[74.14015,14.92323],[74.13504,14.92209],[74.12983,14.92547],[74.12423,14.92532],[74.11998,14.9169],[74.11462,14.91836],[74.10962,14.91697],[74.10851,14.91394],[74.1048,14.9129],[74.10163,14.91579],[74.09453,14.91099],[74.09028,14.90341],[74.08819,14.90343],[74.08578,14.9009],[74.08503,14.89984],[74.08741,14.89891],[74.09116,14.89987],[74.09648,14.89745],[74.09994,14.88829],[74.09967,14.88075],[74.10588,14.87424],[74.1104,14.86295],[74.11191,14.84679],[74.11493,14.84168],[74.11587,14.84272],[74.11329,14.84572],[74.12322,14.8412],[74.1251,14.83789],[74.12402,14.83197],[74.12618,14.81693],[74.12426,14.805],[74.12205,14.80426],[74.12055,14.80132],[74.11624,14.80204],[74.11334,14.79679],[74.11125,14.79858],[74.11422,14.8023],[74.11262,14.80508],[74.10615,14.80608],[74.10433,14.80449],[74.10218,14.80702],[74.09992,14.80701],[74.09357,14.80574],[74.09277,14.804],[74.09572,14.799],[74.10028,14.79788],[74.10257,14.79327],[74.10831,14.79373],[74.10951,14.79252],[74.11127,14.78983],[74.11019,14.78502],[74.11521,14.78839],[74.11783,14.78655],[74.12156,14.78022],[74.11881,14.77738],[74.11944,14.77399],[74.12058,14.77554],[74.12491,14.77517],[74.12509,14.77767],[74.12812,14.78055],[74.13205,14.78052],[74.13453,14.77814],[74.13715,14.78018],[74.14238,14.77854],[74.15775,14.75993],[74.15774,14.75793],[74.15339,14.75589],[74.15236,14.75183],[74.15055,14.75105],[74.15211,14.74706],[74.15755,14.74493],[74.15825,14.74975],[74.16321,14.75264],[74.17399,14.75186],[74.17572,14.74971],[74.17716,14.75056],[74.185,14.7444],[74.19307,14.7346],[74.19489,14.73054],[74.19268,14.72662],[74.19965,14.72352],[74.20403,14.71928],[74.20843,14.71764],[74.20276,14.73207],[74.20381,14.73639],[74.20868,14.7378],[74.21038,14.73358],[74.21865,14.73752],[74.22181,14.73611],[74.2229,14.7376],[74.22758,14.73804],[74.22613,14.74772],[74.23424,14.74843],[74.24932,14.74118],[74.25044,14.7362],[74.2628,14.71981],[74.26494,14.71288],[74.26186,14.70943],[74.25675,14.70756],[74.25742,14.70634],[74.26088,14.7071],[74.26351,14.7049],[74.26663,14.70542],[74.27234,14.70009],[74.27105,14.69905],[74.28286,14.6753],[74.28032,14.67113],[74.27732,14.67204],[74.27552,14.67018],[74.27771,14.66953],[74.27564,14.66635],[74.27796,14.66588],[74.27938,14.66212],[74.28178,14.66401],[74.2843,14.66357],[74.27968,14.66012],[74.27868,14.6565],[74.28053,14.65639],[74.28227,14.65335],[74.2805,14.64924],[74.28516,14.6471],[74.28452,14.64338],[74.28644,14.63421],[74.2816,14.62648],[74.2793,14.62561],[74.27137,14.63007],[74.27043,14.62698],[74.27358,14.62748],[74.28132,14.61014],[74.28717,14.60506],[74.293,14.59649],[74.2943,14.58955],[74.31473,14.54572],[74.31413,14.54049],[74.31079,14.53878],[74.3108,14.5367],[74.31165,14.5319],[74.31629,14.53087],[74.31599,14.52657],[74.31151,14.52467],[74.31022,14.52137],[74.31358,14.52171],[74.31653,14.51951],[74.32565,14.51985],[74.32669,14.51602],[74.33708,14.51932],[74.34028,14.51466],[74.34471,14.52135],[74.34858,14.52056],[74.35473,14.52217],[74.35989,14.51092],[74.35542,14.50842],[74.35461,14.5025],[74.3605,14.50107],[74.36378,14.49406],[74.38357,14.43951],[74.38238,14.43645],[74.38418,14.43413],[74.38025,14.43128],[74.38414,14.42955],[74.38487,14.42666],[74.38339,14.42452],[74.38111,14.42439],[74.38603,14.41833],[74.3889,14.41978],[74.3938,14.41859],[74.39767,14.40818],[74.40476,14.3753],[74.40243,14.36883],[74.40496,14.36554],[74.40493,14.35768],[74.4125,14.3294],[74.41295,14.31727],[74.41858,14.30459],[74.44304,14.22988],[74.44166,14.22457],[74.44959,14.21616],[74.44891,14.21257],[74.45061,14.21179],[74.4504,14.20856],[74.45291,14.20717],[74.45296,14.20368],[74.45425,14.20311],[74.45347,14.20028],[74.4577,14.19908],[74.46077,14.20113],[74.4639,14.20053],[74.46893,14.18868],[74.47896,14.1438],[74.47709,14.14019],[74.48001,14.13611],[74.48669,14.10516],[74.48567,14.09447],[74.48826,14.09157],[74.48855,14.0866],[74.49257,14.0782],[74.49995,14.04825],[74.50073,14.02915],[74.50299,14.02688],[74.50136,14.02335],[74.50916,14.00765],[74.509,14.00111],[74.51286,13.99649],[74.51398,13.98686],[74.52841,13.97251],[74.53245,13.96482],[74.53436,13.96463],[74.53474,13.96781],[74.53901,13.96439],[74.54202,13.95729],[74.54728,13.95529],[74.54929,13.94915],[74.55717,13.95134],[74.56031,13.94822],[74.56062,13.94567],[74.56352,13.94577],[74.56679,13.9491],[74.56921,13.94678],[74.57823,13.92675],[74.58259,13.92504],[74.58679,13.91827],[74.59606,13.8831],[74.60183,13.87286],[74.60993,13.86555],[74.60901,13.86013],[74.62581,13.79685],[74.64068,13.71842],[74.64555,13.68196],[74.65177,13.66509],[74.65439,13.66389],[74.66364,13.65194],[74.66625,13.63782],[74.66851,13.64017],[74.66937,13.63479],[74.66729,13.63229],[74.68222,13.54281],[74.68883,13.46427],[74.69543,13.45518],[74.6939,13.45357],[74.69237,13.45631],[74.69118,13.45497],[74.69657,13.40528],[74.69491,13.37591],[74.69711,13.34736],[74.69979,13.34646],[74.70031,13.34442],[74.69506,13.34507],[74.69359,13.34371],[74.69829,13.34256],[74.70753,13.33469],[74.71637,13.31258],[74.71896,13.28627],[74.72687,13.265],[74.72928,13.25275],[74.73179,13.25053],[74.736,13.22652],[74.73932,13.22439],[74.73749,13.2236],[74.74406,13.19371],[74.7506,13.17808],[74.76463,13.12269],[74.77859,13.06116],[74.78915,13.00399],[74.79354,12.99598],[74.81219,12.90005],[74.82443,12.84906],[74.83712,12.82398],[74.84676,12.79537],[74.85547,12.78408],[74.86419,12.76138],[74.86543,12.76646],[74.8644,12.77089],[74.86784,12.76587],[74.86721,12.76137],[74.87224,12.76106],[74.87414,12.75494],[74.88231,12.75405],[74.89303,12.76243],[74.89958,12.76258],[74.90763,12.76896],[74.93293,12.78054],[74.94173,12.77998],[74.95069,12.78429],[74.95819,12.78467],[74.95999,12.77889],[74.96293,12.77868],[74.96441,12.78163],[74.96633,12.78079],[74.96654,12.77648],[74.96836,12.77636],[74.98193,12.77963],[74.98244,12.78231],[74.98514,12.78155],[74.98731,12.78296],[74.99209,12.78821],[74.98741,12.79359],[74.98903,12.79546],[74.99122,12.79553],[74.99602,12.7893],[74.99875,12.78908],[74.99831,12.78594],[75.00243,12.78834],[75.00018,12.79022],[75.00316,12.79167],[75.00509,12.79031],[75.00297,12.78438],[75.00339,12.77798],[75.00621,12.77084],[75.00945,12.76751],[75.00606,12.76612],[75.00433,12.76043],[74.99868,12.75699],[74.9966,12.75208],[74.98768,12.74165],[74.98464,12.74308],[74.98403,12.73993],[74.98545,12.73889],[74.98327,12.7372],[74.98559,12.7336],[74.98724,12.73657],[74.98893,12.73629],[74.98881,12.73821],[74.99039,12.73746],[74.99002,12.73608],[74.99135,12.73695],[74.99047,12.73873],[74.99248,12.73989],[75.0,12.73205],[75.0134,12.72795],[75.00494,12.72028],[75.00096,12.71956],[75.00099,12.71639],[75.01504,12.71423],[75.01864,12.72111],[75.02658,12.71931],[75.03358,12.72351],[75.03905,12.72382],[75.04268,12.72077],[75.04431,12.72311],[75.04792,12.7206],[75.05246,12.72008],[75.05034,12.71632],[75.05389,12.71112],[75.0543,12.70713],[75.05189,12.7069],[75.05023,12.70439],[75.05559,12.69346],[75.05385,12.69052],[75.04855,12.69404],[75.04392,12.69264],[75.0405,12.68535],[75.043,12.68224],[75.04146,12.67873],[75.04257,12.67285],[75.04664,12.66757],[75.05397,12.67022],[75.05752,12.66605],[75.05981,12.67177],[75.06525,12.66483],[75.06858,12.66467],[75.07415,12.67225],[75.08517,12.67476],[75.08744,12.6792],[75.0855,12.68247],[75.08558,12.69022],[75.0831,12.69333],[75.08508,12.69567],[75.08115,12.69738],[75.08095,12.69907],[75.08601,12.70403],[75.09232,12.69981],[75.10022,12.69967],[75.10625,12.69681],[75.10727,12.69105],[75.11062,12.69058],[75.11018,12.68845],[75.11259,12.68522],[75.11146,12.68182],[75.11739,12.68128],[75.12213,12.67891],[75.12312,12.68137],[75.12492,12.68148],[75.12841,12.67694],[75.13251,12.67614],[75.13467,12.67805],[75.13764,12.67676],[75.13982,12.68059],[75.14319,12.67839],[75.14639,12.68219],[75.152,12.68324],[75.14903,12.67616],[75.14988,12.67333],[75.16203,12.67196],[75.15212,12.65611],[75.15081,12.65006],[75.13851,12.64344],[75.1433,12.63966],[75.14444,12.64049],[75.15392,12.62497],[75.16068,12.62213],[75.16417,12.62407],[75.16996,12.62227],[75.1829,12.6328],[75.18555,12.63185],[75.18822,12.63314],[75.19374,12.63031],[75.20174,12.63002],[75.20281,12.62759],[75.19877,12.61443],[75.19926,12.61207],[75.20095,12.60961],[75.20674,12.60801],[75.20775,12.60269],[75.20998,12.60023],[75.20786,12.59573],[75.20173,12.59336],[75.20114,12.58773],[75.20949,12.59107],[75.21262,12.57816],[75.21777,12.57636],[75.22032,12.5691],[75.22393,12.57036],[75.22919,12.56853],[75.2375,12.56976],[75.2371,12.57614],[75.23898,12.57802],[75.23867,12.58071],[75.24158,12.58003],[75.2497,12.58457],[75.25178,12.589],[75.25534,12.59138],[75.25684,12.59651],[75.26126,12.59817],[75.266,12.60719],[75.26513,12.61117],[75.26716,12.61466],[75.27261,12.61556],[75.27635,12.61851],[75.2817,12.61644],[75.28598,12.61121],[75.28958,12.6104],[75.29156,12.60195],[75.29907,12.6059],[75.30189,12.60541],[75.31216,12.58972],[75.32701,12.59239],[75.328,12.58429],[75.32643,12.58139],[75.31869,12.57749],[75.31539,12.57254],[75.30804,12.57833],[75.29054,12.58261],[75.28467,12.56957],[75.27855,12.5716],[75.27289,12.56897],[75.27006,12.55845],[75.27215,12.55484],[75.27056,12.54834],[75.27449,12.54022],[75.27396,12.5356],[75.27864,12.53146],[75.28031,12.52531],[75.29135,12.52685],[75.29554,12.52525],[75.29652,12.52319],[75.3041,12.52328],[75.30393,12.50474],[75.31445,12.50292],[75.31503,12.49711],[75.32451,12.49673],[75.333,12.49833],[75.33448,12.49549],[75.33353,12.49205],[75.33742,12.48852],[75.3361,12.47701],[75.34154,12.46912],[75.3366,12.46408],[75.34611,12.46298],[75.35173,12.46488],[75.36082,12.46497],[75.36751,12.47533],[75.371,12.4748],[75.3726,12.47703],[75.3716,12.4869],[75.36864,12.48728],[75.36805,12.49121],[75.37779,12.4951],[75.38223,12.50202],[75.38741,12.5019],[75.39169,12.49936],[75.3946,12.50277],[75.39797,12.50374],[75.40231,12.49793],[75.40806,12.49864],[75.41195,12.50201],[75.41736,12.49844],[75.41869,12.49532],[75.41733,12.49337],[75.42058,12.48852],[75.4203,12.47976],[75.42482,12.47426],[75.42495,12.46951],[75.42326,12.46678],[75.41572,12.46598],[75.41565,12.46216],[75.41332,12.45857],[75.40398,12.45494],[75.39962,12.45493],[75.3934,12.45137],[75.39221,12.45512],[75.38629,12.45828],[75.38187,12.45663],[75.37422,12.45973],[75.37126,12.45656],[75.36617,12.4582],[75.36563,12.45675],[75.37029,12.44887],[75.36885,12.44217],[75.37149,12.43772],[75.36617,12.41183],[75.37144,12.40789],[75.37261,12.40025],[75.37773,12.39842],[75.37924,12.39236],[75.38394,12.39091],[75.38649,12.39237],[75.39229,12.38999],[75.39857,12.38143],[75.4004,12.38074],[75.40154,12.38252],[75.40553,12.37906],[75.41312,12.38029],[75.42193,12.37266],[75.41964,12.35694],[75.41544,12.34961],[75.41168,12.34914],[75.4104,12.34719],[75.41539,12.34006],[75.41619,12.32993],[75.41864,12.32917],[75.42028,12.31898],[75.42716,12.31072],[75.43109,12.31059],[75.43215,12.30899],[75.42829,12.30699],[75.42776,12.30405],[75.42411,12.30292],[75.42515,12.30057],[75.41373,12.29236],[75.41392,12.29067],[75.4211,12.29171],[75.42284,12.2951],[75.4266,12.29561],[75.42738,12.29781],[75.43009,12.29901],[75.43302,12.29734],[75.43635,12.29845],[75.4412,12.2966],[75.44573,12.29763],[75.4599,12.29404],[75.46374,12.2983],[75.47015,12.30071],[75.47547,12.29596],[75.4794,12.29541],[75.48101,12.29217],[75.48663,12.2886],[75.48692,12.28428],[75.49387,12.27279],[75.5054,12.27074],[75.50583,12.26458],[75.51178,12.25958],[75.51159,12.25306],[75.5198,12.24621],[75.51861,12.24351],[75.52111,12.23613],[75.52833,12.23159],[75.52691,12.22569],[75.53969,12.21681],[75.53703,12.20808],[75.53194,12.20567],[75.53261,12.20145],[75.53416,12.20293],[75.53649,12.20128],[75.5398,12.20273],[75.54118,12.19755],[75.54625,12.19794],[75.54859,12.19263],[75.55262,12.19285],[75.55497,12.18318],[75.55851,12.18207],[75.56027,12.17612],[75.56978,12.17285],[75.5772,12.15775],[75.58331,12.15912],[75.58375,12.15699],[75.59046,12.15249],[75.59256,12.14785],[75.5959,12.15432],[75.60197,12.15364],[75.60691,12.15549],[75.61125,12.15262],[75.61496,12.1556],[75.61903,12.15652],[75.63133,12.14878],[75.63605,12.14917],[75.6392,12.14336],[75.63826,12.13895],[75.64205,12.1398],[75.64319,12.13865],[75.64408,12.12552],[75.64753,12.12192],[75.64658,12.1158],[75.64908,12.10933],[75.65276,12.11005],[75.653,12.10791],[75.66198,12.09918],[75.66742,12.09731],[75.67687,12.0982],[75.67988,12.10273],[75.68364,12.10449],[75.68718,12.11025],[75.69554,12.11049],[75.70326,12.10817],[75.70213,12.09229],[75.71307,12.09048],[75.71793,12.08558],[75.71769,12.08229],[75.71545,12.08166],[75.71473,12.07044],[75.72485,12.07318],[75.72774,12.07255],[75.73611,12.07895],[75.74358,12.08017],[75.74712,12.07819],[75.74913,12.08191],[75.75348,12.08413],[75.76282,12.08325],[75.76763,12.08448],[75.78036,12.08251],[75.78542,12.08426],[75.80255,12.07856],[75.80383,12.07516],[75.79867,12.06327],[75.79866,12.05604],[75.79396,12.05503],[75.79966,12.04738],[75.80107,12.03701],[75.81102,12.02857],[75.80993,12.02271],[75.81547,12.02051],[75.82286,12.01337],[75.82325,12.0098],[75.82038,12.00252],[75.82523,12.00273],[75.82563,11.99187],[75.82947,11.98451],[75.83704,11.98093],[75.83971,11.98267],[75.84292,11.98073],[75.84691,11.98201],[75.84955,11.97804],[75.848,11.97495],[75.85011,11.97474],[75.853,11.97159],[75.85367,11.9659],[75.85886,11.95942],[75.86643,11.95738],[75.87045,11.95258],[75.87254,11.9533],[75.88068,11.94971],[75.88602,11.95203],[75.89703,11.94547],[75.89873,11.94666],[75.91399,11.94692],[75.91747,11.94488],[75.92719,11.94337],[75.93078,11.9397],[75.93571,11.94006],[75.93741,11.9421],[75.95174,11.94064],[75.95637,11.9419],[75.9764,11.93371],[75.97927,11.93476],[75.98347,11.93272],[75.99042,11.93471],[75.99391,11.93227],[76.0032,11.93139],[76.00738,11.93902],[76.01312,11.94172],[76.01649,11.9411],[76.02238,11.94397],[76.02676,11.94308],[76.02997,11.94015],[76.03372,11.9403],[76.03907,11.94509],[76.04233,11.94602],[76.04482,11.95054],[76.05204,11.95161],[76.05796,11.95778],[76.06742,11.96333],[76.0701,11.96708],[76.07729,11.96874],[76.0898,11.96743],[76.1123,11.97866],[76.11337,11.89521],[76.11176,11.88736],[76.1149,11.86683],[76.11286,11.85871],[76.11785,11.85719],[76.11704,11.85485],[76.11994,11.85047],[76.13229,11.85387],[76.14608,11.867],[76.1494,11.86642],[76.15603,11.87014],[76.16481,11.86757],[76.1735,11.87121],[76.17881,11.87017],[76.18672,11.87196],[76.19039,11.87121],[76.19838,11.86655],[76.20201,11.86241],[76.20747,11.86154],[76.21026,11.84422],[76.21311,11.84262],[76.20989,11.82817],[76.21709,11.82157],[76.21821,11.81436],[76.22372,11.8082],[76.22935,11.80531],[76.24558,11.80293],[76.25,11.80337],[76.25964,11.80869],[76.27369,11.81063],[76.27687,11.81237],[76.28022,11.81161],[76.28488,11.8003],[76.29024,11.79283],[76.29403,11.79176],[76.30117,11.78563],[76.30558,11.7859],[76.3077,11.78422],[76.31071,11.7673],[76.31362,11.76357],[76.31445,11.75691],[76.31686,11.75259],[76.3196,11.75048],[76.32914,11.74828],[76.33484,11.74464],[76.33974,11.739],[76.3502,11.74024],[76.3525,11.73828],[76.36282,11.74837],[76.36846,11.74814],[76.37699,11.74454],[76.38395,11.7472],[76.39129,11.75477],[76.3934,11.75503],[76.39864,11.75081],[76.40521,11.75637],[76.41423,11.75885],[76.41498,11.7555],[76.4123,11.75182],[76.41241,11.74368],[76.41048,11.74208],[76.41288,11.74011],[76.41817,11.7426],[76.4221,11.73829],[76.42744,11.72631],[76.42411,11.72029],[76.41659,11.71769],[76.41606,11.71296],[76.41401,11.71125],[76.41184,11.7158],[76.40804,11.71477],[76.4056,11.71119],[76.40344,11.71129],[76.40346,11.70776],[76.40524,11.70586],[76.40745,11.70745],[76.40888,11.70639],[76.41087,11.70005],[76.40983,11.69875],[76.41178,11.69783],[76.41238,11.69502],[76.40963,11.69438],[76.41083,11.69367],[76.41026,11.691],[76.40844,11.68972],[76.41305,11.68598],[76.4126,11.68276],[76.41673,11.67174],[76.41951,11.6709],[76.42103,11.67248],[76.42613,11.67114],[76.42818,11.66998],[76.42946,11.66624],[76.43339,11.6668],[76.43533,11.6647],[76.44016,11.66585],[76.44377,11.66359],[76.45514,11.66578],[76.45821,11.66433],[76.47443,11.68122],[76.48262,11.68611],[76.48168,11.69252],[76.48843,11.69135],[76.4936,11.69298],[76.51168,11.70498],[76.53723,11.6908],[76.55056,11.67419],[76.5514,11.67188],[76.54931,11.66498],[76.55006,11.6611],[76.5544,11.65557],[76.55391,11.64571],[76.55873,11.63851],[76.55958,11.63317],[76.56142,11.63268],[76.55995,11.62247],[76.56266,11.62291],[76.56966,11.61806],[76.57521,11.61919],[76.57709,11.61444],[76.57908,11.61573],[76.58379,11.61376],[76.59229,11.61866],[76.59647,11.61625],[76.59761,11.61064],[76.61065,11.61085],[76.61398,11.60755],[76.63046,11.61379],[76.6502,11.61345],[76.67147,11.61591],[76.68459,11.61396],[76.70271,11.61584],[76.72183,11.61439],[76.73684,11.61531],[76.74707,11.61378],[76.75692,11.61844],[76.76482,11.61413],[76.77019,11.61569],[76.77476,11.61234],[76.79153,11.61274],[76.79635,11.60841],[76.80924,11.60838],[76.81757,11.60472],[76.82284,11.60808],[76.83937,11.59699],[76.84694,11.59447],[76.85358,11.59697],[76.85647,11.59928],[76.85724,11.60547],[76.85567,11.60758],[76.85774,11.61016],[76.85812,11.61403],[76.85601,11.61564],[76.85053,11.61596],[76.84884,11.61856],[76.85211,11.62167],[76.84955,11.62107],[76.8496,11.62432],[76.84276,11.62705],[76.84484,11.62815],[76.84513,11.63415],[76.84419,11.63257],[76.83841,11.63538],[76.83463,11.6395],[76.83793,11.64194],[76.83374,11.64896],[76.83626,11.65388],[76.83501,11.65542],[76.83778,11.65621],[76.8387,11.66009],[76.84184,11.66213],[76.84141,11.66595],[76.84365,11.6682],[76.84403,11.67281],[76.84854,11.67969],[76.85276,11.69237],[76.86371,11.70537],[76.86117,11.70722],[76.86263,11.71101],[76.87421,11.72411],[76.88835,11.73364],[76.8881,11.7417],[76.89581,11.75775],[76.89792,11.7706],[76.89661,11.77647],[76.90038,11.78392],[76.908,11.79525],[76.92218,11.79178],[76.93209,11.79279],[76.94239,11.78802],[76.95394,11.79205],[76.95602,11.79115],[76.96118,11.78162],[76.96992,11.77686],[76.97273,11.78038],[76.97533,11.78925],[76.98089,11.79541],[76.9802,11.79853],[76.98365,11.80168],[76.9821,11.80346],[76.98299,11.81185],[76.99354,11.80916],[77.01294,11.81461],[77.01401,11.80621],[77.01622,11.8069],[77.01689,11.81071],[77.02988,11.80467],[77.03065,11.80201],[77.03419,11.79995],[77.03267,11.79589],[77.03534,11.7939],[77.03875,11.79385],[77.03549,11.78314],[77.02886,11.77467],[77.0351,11.76978],[77.04006,11.78062],[77.043,11.78199],[77.04647,11.78762],[77.05043,11.78962],[77.05779,11.78885],[77.06294,11.7904],[77.06692,11.78798],[77.06976,11.78208],[77.0671,11.77831],[77.06126,11.77592],[77.05991,11.77152],[77.05643,11.76978],[77.07109,11.75131],[77.08276,11.73976],[77.08022,11.73598],[77.10501,11.7328],[77.11482,11.72175],[77.11771,11.72107],[77.11814,11.72611],[77.11602,11.72564],[77.11739,11.72847],[77.11535,11.72817],[77.11754,11.73179],[77.11419,11.73447],[77.11484,11.73893],[77.11174,11.74307],[77.11138,11.7504],[77.10855,11.7526],[77.11246,11.75693],[77.11134,11.76367],[77.11266,11.76558],[77.11075,11.77347],[77.11565,11.77472],[77.12276,11.77245],[77.13058,11.7737],[77.13808,11.77264],[77.14709,11.78191],[77.18202,11.78632],[77.18924,11.79252],[77.21752,11.79533],[77.2386,11.79465],[77.2496,11.80418],[77.24988,11.81301],[77.26158,11.81061],[77.27342,11.80534],[77.27443,11.803],[77.28798,11.80044],[77.29385,11.809],[77.31267,11.79354],[77.3277,11.77535],[77.33515,11.77123],[77.36042,11.77947],[77.36485,11.7904],[77.36904,11.78951],[77.37026,11.78666],[77.38802,11.78847],[77.39446,11.78763],[77.41366,11.77467],[77.42223,11.77238],[77.4226,11.76172],[77.42724,11.76087],[77.42894,11.76263],[77.42805,11.76701],[77.43381,11.77814],[77.4422,11.78329],[77.4396,11.78561],[77.4405,11.78883],[77.44662,11.79031],[77.4498,11.79601],[77.45404,11.82023],[77.45697,11.82898],[77.46036,11.83184],[77.46661,11.84708],[77.46624,11.85002],[77.46141,11.85369],[77.46305,11.85885],[77.45994,11.86345],[77.46284,11.8648],[77.46586,11.8742],[77.46048,11.8812],[77.46314,11.88437],[77.46223,11.88796],[77.46398,11.89403],[77.46163,11.89998],[77.47352,11.89918],[77.47478,11.898],[77.47416,11.89439],[77.47722,11.89046],[77.48064,11.89341],[77.48409,11.88801],[77.4862,11.88741],[77.48307,11.89957],[77.49059,11.90849],[77.49089,11.91068],[77.48861,11.91234],[77.49189,11.92119],[77.49287,11.94126],[77.4948,11.94385],[77.50041,11.93998],[77.50492,11.94113],[77.51231,11.93781],[77.51834,11.93822],[77.52824,11.93378],[77.53798,11.93239],[77.54252,11.93816],[77.55818,11.94155],[77.56107,11.94192],[77.57531,11.93648],[77.58596,11.93687],[77.58839,11.93934],[77.59358,11.94022],[77.60345,11.93766],[77.60695,11.94202],[77.61253,11.94241],[77.624,11.94731],[77.62886,11.94637],[77.63944,11.94805],[77.64232,11.95002],[77.64722,11.95049],[77.64871,11.95367],[77.65205,11.95482],[77.65619,11.95346],[77.65738,11.94983],[77.66907,11.94907],[77.67569,11.95198],[77.67451,11.9539],[77.67474,11.96594],[77.69637,12.01577],[77.70891,12.03602],[77.71489,12.04244],[77.72754,12.06204],[77.74271,12.07002],[77.75569,12.07973],[77.76775,12.10664],[77.77259,12.10829],[77.77639,12.11228],[77.77617,12.11732],[77.7738,12.12052],[77.75721,12.13044],[77.74981,12.13846],[77.74679,12.14453],[77.74751,12.15191],[77.74614,12.15737],[77.74274,12.16288],[77.73543,12.16959],[77.73334,12.17808],[77.73062,12.18039],[77.72203,12.18294],[77.71135,12.18243],[77.69864,12.18513],[77.66524,12.19821],[77.65608,12.19955],[77.63763,12.19669],[77.62984,12.20224],[77.62096,12.19988],[77.61075,12.20614],[77.60534,12.20553],[77.59674,12.19927],[77.58042,12.1981],[77.57386,12.20089],[77.56943,12.19974],[77.56531,12.19631],[77.54589,12.20465],[77.54017,12.20238],[77.53585,12.19862],[77.52815,12.19889],[77.51868,12.19448],[77.49271,12.19733],[77.48645,12.20381],[77.47544,12.20559],[77.47191,12.20842],[77.48262,12.22944],[77.48231,12.2331],[77.47849,12.24006],[77.47112,12.24351],[77.47352,12.25561],[77.4782,12.25921],[77.47703,12.26446],[77.47906,12.27127],[77.4851,12.27505],[77.4876,12.2805],[77.49328,12.27887],[77.49674,12.28218],[77.49998,12.28257],[77.50838,12.276],[77.51419,12.27538],[77.52722,12.27877],[77.53284,12.29146],[77.55134,12.29121],[77.5524,12.29745],[77.5579,12.30321],[77.55791,12.30573],[77.566,12.30624],[77.57858,12.33567],[77.59154,12.34014],[77.59869,12.34999],[77.60084,12.35843],[77.60762,12.36105],[77.61302,12.36112],[77.61681,12.3682],[77.61809,12.3811],[77.62058,12.38301],[77.62333,12.41226],[77.62962,12.41832],[77.62909,12.42513],[77.62608,12.43076],[77.62698,12.44112],[77.62915,12.44635],[77.62717,12.45845],[77.62942,12.46065],[77.6306,12.46511],[77.62924,12.46677],[77.63076,12.47027],[77.63314,12.47045],[77.6324,12.47912],[77.63463,12.4876],[77.62948,12.4945],[77.62609,12.49631],[77.61649,12.48284],[77.60742,12.47512],[77.5984,12.47618],[77.59569,12.4748],[77.58368,12.4788],[77.58875,12.48563],[77.5918,12.48518],[77.6024,12.49715],[77.61507,12.50416],[77.61633,12.50918],[77.61242,12.51494],[77.60677,12.51413],[77.59393,12.51608],[77.5872,12.51475],[77.5885,12.52662],[77.58546,12.5368],[77.5864,12.54572],[77.58035,12.55159],[77.58075,12.56571],[77.57934,12.57309],[77.5838,12.57588],[77.58932,12.59268],[77.59142,12.59209],[77.59102,12.61524],[77.59407,12.62106],[77.60623,12.62891],[77.60333,12.63532],[77.60474,12.63759],[77.60073,12.64303],[77.59964,12.64269],[77.59612,12.65028],[77.59887,12.66716],[77.62391,12.6739],[77.63788,12.67571],[77.65991,12.68384],[77.67638,12.67947],[77.67509,12.67309],[77.67714,12.67144],[77.67865,12.66039],[77.68993,12.65899],[77.69219,12.66084],[77.70423,12.6614],[77.71101,12.66712],[77.71159,12.68314],[77.72277,12.67965],[77.72462,12.67119],[77.73993,12.67299],[77.74118,12.67546],[77.74101,12.68577],[77.73502,12.69185],[77.73518,12.69402],[77.73988,12.69988],[77.75995,12.69698],[77.76392,12.69964],[77.76612,12.70799],[77.76575,12.71374],[77.76955,12.71252],[77.77032,12.71787],[77.77445,12.72421],[77.7612,12.72737],[77.76242,12.73531],[77.76835,12.74003],[77.78006,12.74202],[77.78356,12.74121],[77.79274,12.74786],[77.79439,12.75762],[77.7845,12.76238],[77.77884,12.76801],[77.78954,12.78016],[77.79292,12.78798],[77.79856,12.79512],[77.80037,12.79443],[77.80221,12.79626],[77.80403,12.79423],[77.80665,12.79406],[77.80854,12.79673],[77.80728,12.79939],[77.8051,12.7996],[77.8034,12.80481],[77.79973,12.80522],[77.80216,12.817],[77.8099,12.81553],[77.80796,12.82304],[77.80988,12.83153],[77.7959,12.83453],[77.79246,12.8427],[77.79489,12.84562],[77.79675,12.84478],[77.79911,12.85154],[77.80792,12.84767],[77.81555,12.85579],[77.82308,12.85584],[77.82579,12.85994],[77.83246,12.86204],[77.83216,12.86752],[77.83601,12.87033],[77.84261,12.86869],[77.84739,12.86932],[77.85095,12.86611],[77.85748,12.86948],[77.87594,12.8668],[77.87727,12.86862],[77.88254,12.86856],[77.88475,12.87022],[77.89034,12.86966],[77.89492,12.87857],[77.90841,12.87881],[77.90876,12.88484],[77.92187,12.88474],[77.92509,12.89009],[77.92932,12.89092],[77.93601,12.88724],[77.9361,12.88361],[77.93463,12.88066],[77.92714,12.88152],[77.92772,12.87492],[77.94163,12.87274],[77.94178,12.87164],[77.94121,12.86822],[77.93642,12.86667],[77.93559,12.86275],[77.93135,12.86181],[77.92281,12.85556],[77.92424,12.85112],[77.91725,12.83885],[77.91807,12.83135],[77.92056,12.82816],[77.92651,12.83028],[77.92852,12.82678],[77.93434,12.8231],[77.94068,12.82334],[77.94217,12.83121],[77.94661,12.83871],[77.94058,12.84525],[77.93999,12.85314],[77.94365,12.85782],[77.95234,12.85712],[77.95278,12.85013],[77.963,12.85018],[77.96535,12.84818],[77.96257,12.83737],[77.96432,12.83284],[77.9727,12.83282],[77.97405,12.83483],[77.98039,12.83506],[77.97927,12.82704],[77.9868,12.82182],[77.98978,12.82155],[77.98852,12.80819],[77.99562,12.80587],[77.99669,12.80787],[78.00646,12.80858],[78.00975,12.80574],[78.01531,12.81379],[78.01277,12.81882],[78.0058,12.82217],[78.00392,12.8256],[78.01062,12.83091],[78.01466,12.82982],[78.0183,12.83105],[78.01915,12.84394],[78.02433,12.84174],[78.02899,12.84519],[78.0297,12.84891],[78.02407,12.85251],[78.02387,12.8565],[78.03065,12.85802],[78.03073,12.85245],[78.05047,12.84874],[78.05333,12.85385],[78.05905,12.85117],[78.06021,12.84383],[78.0712,12.8424],[78.07652,12.83965],[78.07726,12.8381],[78.07508,12.8362],[78.07386,12.83051],[78.0862,12.83194],[78.08813,12.82787],[78.08753,12.82488],[78.09017,12.8235],[78.09016,12.81736],[78.10473,12.80908],[78.10936,12.80449],[78.12036,12.80171],[78.12188,12.79925],[78.12499,12.79819],[78.12595,12.79168],[78.13126,12.7838],[78.13424,12.78197],[78.13572,12.78309],[78.1363,12.78185],[78.14515,12.78093],[78.16766,12.77008],[78.17163,12.77379],[78.1774,12.77595],[78.18239,12.77425],[78.18426,12.77622],[78.18896,12.77191],[78.19208,12.77428],[78.19516,12.77384],[78.21286,12.76503],[78.22389,12.76588],[78.23095,12.76066],[78.23898,12.76838],[78.24564,12.78826],[78.24656,12.80166],[78.25056,12.81221],[78.25234,12.82894],[78.2522,12.86055],[78.25366,12.8622],[78.25814,12.8604],[78.26527,12.86201],[78.2684,12.86769],[78.27171,12.86696],[78.2821,12.85931],[78.31245,12.85852],[78.31559,12.86755],[78.31363,12.87645],[78.33102,12.87558],[78.33224,12.8807],[78.33708,12.88236],[78.33799,12.88621],[78.33452,12.88921],[78.33179,12.88884],[78.33088,12.88536],[78.32918,12.88459],[78.32169,12.88556],[78.32033,12.88726],[78.32407,12.89291],[78.3225,12.89749],[78.32353,12.90178],[78.32631,12.9045],[78.33106,12.90187],[78.33973,12.90318],[78.34407,12.9085],[78.34197,12.9119],[78.3466,12.91404],[78.34905,12.92899],[78.35385,12.93025],[78.34971,12.93571],[78.35587,12.94074],[78.37672,12.91794],[78.37825,12.91385],[78.38563,12.91144],[78.38576,12.90937],[78.3887,12.90686],[78.3964,12.90731],[78.39867,12.91731],[78.4089,12.90927],[78.41221,12.90323],[78.42865,12.90208],[78.43039,12.90479],[78.4337,12.90454],[78.4359,12.90945],[78.43495,12.91184],[78.43884,12.91366],[78.44558,12.9118],[78.44649,12.90819],[78.44396,12.903],[78.44923,12.89824],[78.44724,12.89221],[78.44882,12.8901],[78.45589,12.88747],[78.46411,12.8777],[78.46205,12.87106],[78.46477,12.86676],[78.46946,12.88964],[78.4667,12.90541],[78.45925,12.90873],[78.4523,12.91767],[78.44453,12.91963],[78.43802,12.92901],[78.42818,12.93209],[78.42282,12.92335],[78.41882,12.92172],[78.41789,12.92789],[78.41574,12.92968],[78.4152,12.93336],[78.41309,12.9334],[78.41355,12.93932],[78.41116,12.94527],[78.41376,12.94835],[78.42038,12.94774],[78.4215,12.95463],[78.41927,12.95868],[78.42916,12.95746],[78.4297,12.95913],[78.43458,12.96079],[78.43797,12.96399],[78.43272,12.9678],[78.43474,12.97144],[78.43248,12.97796],[78.43533,12.98104],[78.45269,12.97677],[78.45972,12.97725],[78.46746,12.97502],[78.46858,12.98272],[78.47481,12.99144],[78.47187,12.99262],[78.4677,12.99854],[78.46826,13.00462],[78.46361,13.00532],[78.46454,13.01179],[78.46345,13.01634],[78.46482,13.02042],[78.46141,13.02569],[78.4622,13.04321],[78.4648,13.04466],[78.47312,13.04292],[78.47796,13.05009],[78.47849,13.05454],[78.48736,13.05236],[78.49806,13.0612],[78.51425,13.06186],[78.51568,13.06551],[78.51512,13.06997],[78.51077,13.07803],[78.50862,13.07902],[78.50947,13.0915],[78.51607,13.09655],[78.52339,13.09469],[78.52285,13.09772],[78.52448,13.1012],[78.53246,13.10567],[78.53851,13.10573],[78.53745,13.10861],[78.52683,13.11222],[78.52527,13.11445],[78.52262,13.11496],[78.52303,13.11841],[78.51853,13.11982],[78.51893,13.12511],[78.51704,13.13159],[78.52151,13.13181],[78.52156,13.13013],[78.52334,13.13045],[78.52608,13.13407],[78.52667,13.13894],[78.53126,13.14137],[78.54465,13.142],[78.54836,13.14854],[78.54087,13.15348],[78.5414,13.15574],[78.55011,13.16419],[78.5682,13.16176],[78.56873,13.16562],[78.57337,13.1689],[78.57649,13.16712],[78.57977,13.16736],[78.57648,13.17455],[78.57606,13.18669],[78.5673,13.19326],[78.56646,13.19182],[78.55582,13.18864],[78.54976,13.18969],[78.55006,13.20018],[78.56053,13.19877],[78.56779,13.20152],[78.57112,13.21204],[78.57626,13.21151],[78.5787,13.21299],[78.57946,13.21563],[78.57644,13.21901],[78.5664,13.22085],[78.56873,13.2374],[78.57194,13.24259],[78.5705,13.24259],[78.57014,13.2471],[78.57906,13.25366],[78.5853,13.2622],[78.58764,13.27125],[78.58736,13.28064],[78.57865,13.28035],[78.57634,13.28499],[78.57755,13.29528],[78.57149,13.30337],[78.56954,13.30922],[78.56555,13.312],[78.56321,13.30939],[78.56492,13.30691],[78.56481,13.29473],[78.56164,13.28851],[78.55639,13.28384],[78.5536,13.28331],[78.54533,13.28789],[78.53932,13.28787],[78.53639,13.27241],[78.53218,13.26694],[78.52667,13.26842],[78.52651,13.27162],[78.52196,13.273],[78.52165,13.27616],[78.51979,13.27711],[78.51993,13.28277],[78.51335,13.28523],[78.514,13.29059],[78.50485,13.29137],[78.49878,13.29956],[78.49674,13.29861],[78.47931,13.30129],[78.48124,13.31018],[78.48363,13.31304],[78.4834,13.32117],[78.4769,13.32264],[78.47015,13.31983],[78.46948,13.31709],[78.46666,13.31512],[78.45772,13.31384],[78.45263,13.31008],[78.44421,13.30811],[78.44001,13.32181],[78.44124,13.32489],[78.44038,13.32843],[78.42795,13.33129],[78.42176,13.32827],[78.41888,13.32057],[78.4011,13.31547],[78.39927,13.32069],[78.39216,13.3253],[78.38713,13.33179],[78.37715,13.33197],[78.37825,13.33719],[78.38303,13.34359],[78.38768,13.3428],[78.38842,13.3391],[78.38487,13.33489],[78.39442,13.33382],[78.40349,13.33606],[78.40729,13.33752],[78.4084,13.34569],[78.39321,13.35074],[78.39486,13.35433],[78.37764,13.36315],[78.3761,13.36113],[78.37083,13.36151],[78.36967,13.35826],[78.36581,13.35865],[78.36508,13.3618],[78.36906,13.37319],[78.37236,13.37846],[78.37878,13.38365],[78.38168,13.39698],[78.38106,13.40882],[78.37922,13.41483],[78.38075,13.41887],[78.37744,13.42403],[78.37751,13.43188],[78.3756,13.43738],[78.3764,13.43945],[78.37897,13.44007],[78.37836,13.44372],[78.37573,13.44389],[78.37285,13.45214],[78.37456,13.46195],[78.37236,13.46335],[78.37082,13.46952],[78.37879,13.48204],[78.37805,13.50017],[78.37485,13.5027],[78.37685,13.50524],[78.37532,13.50895],[78.38552,13.51556],[78.38411,13.5249],[78.39364,13.54063],[78.39313,13.55256],[78.40667,13.57686],[78.40155,13.5785],[78.402,13.58797],[78.39617,13.58817],[78.39346,13.59066],[78.38429,13.59186],[78.36531,13.58951],[78.36493,13.58808],[78.36124,13.58899],[78.34863,13.58687],[78.34657,13.5905],[78.32617,13.59484],[78.31496,13.59142],[78.30773,13.59222],[78.27048,13.58815],[78.2586,13.58301],[78.25804,13.58569],[78.24929,13.59088],[78.24369,13.59684],[78.24211,13.59565],[78.23634,13.59858],[78.23439,13.59712],[78.23509,13.59106],[78.23258,13.58598],[78.22622,13.58744],[78.21923,13.59246],[78.21621,13.59062],[78.21408,13.58323],[78.20784,13.57699],[78.20292,13.56878],[78.19297,13.56485],[78.18961,13.57521],[78.19026,13.59014],[78.19901,13.59924],[78.20333,13.60651],[78.20377,13.61828],[78.20232,13.61943],[78.2042,13.62842],[78.17505,13.63061],[78.16822,13.63285],[78.16907,13.65394],[78.16758,13.65583],[78.15613,13.65862],[78.1465,13.65671],[78.13391,13.6595],[78.13055,13.65914],[78.12557,13.65585],[78.11429,13.65736],[78.10847,13.65311],[78.10225,13.65106],[78.09895,13.6428],[78.08711,13.64307],[78.0869,13.65117],[78.08974,13.6591],[78.07855,13.66727],[78.07701,13.67335],[78.06572,13.67614],[78.06731,13.6797],[78.07124,13.68238],[78.07359,13.68773],[78.07089,13.68846],[78.06961,13.6908],[78.06908,13.69781],[78.07268,13.69848],[78.08014,13.69664],[78.08588,13.69219],[78.0921,13.69256],[78.09242,13.69117],[78.11322,13.69274],[78.11471,13.70342],[78.1208,13.71562],[78.11585,13.72253],[78.11101,13.7258],[78.10433,13.73654],[78.09832,13.73779],[78.09152,13.74228],[78.09988,13.75846],[78.1138,13.76343],[78.11919,13.77251],[78.12216,13.78132],[78.1264,13.78638],[78.12269,13.79878],[78.11375,13.80747],[78.11479,13.81199],[78.1254,13.83161],[78.1222,13.83895],[78.12363,13.84535],[78.11654,13.85187],[78.11681,13.85883],[78.11478,13.86289],[78.10185,13.8617],[78.094,13.86481],[78.08994,13.8647],[78.08191,13.86124],[78.08261,13.86429],[78.08054,13.86754],[78.079,13.88116],[78.0643,13.88664],[78.06183,13.88842],[78.06225,13.8908],[78.06065,13.89196],[78.04887,13.89609],[78.05083,13.87599],[78.05011,13.87186],[78.04625,13.86635],[78.04619,13.86213],[78.04133,13.86027],[78.03185,13.86425],[78.02123,13.86383],[78.01672,13.86496],[78.01158,13.87194],[78.00048,13.87293],[77.99832,13.86908],[77.99206,13.86882],[77.98951,13.8626],[77.98885,13.85377],[77.98722,13.85407],[77.98298,13.84727],[77.9761,13.82949],[77.96054,13.82945],[77.95298,13.82735],[77.95242,13.82908],[77.95614,13.83122],[77.95625,13.83593],[77.95368,13.83856],[77.9548,13.84224],[77.95416,13.85516],[77.94906,13.8707],[77.94908,13.88645],[77.95213,13.88983],[77.98459,13.8974],[77.98662,13.903],[77.9831,13.90487],[77.98376,13.91576],[77.98025,13.92786],[77.98753,13.9555],[77.98262,13.95769],[77.96743,13.96016],[77.96422,13.95556],[77.96195,13.95497],[77.96,13.94051],[77.95734,13.93672],[77.95451,13.93854],[77.9462,13.93534],[77.93713,13.91866],[77.92677,13.90533],[77.91542,13.90785],[77.9054,13.91644],[77.89968,13.91659],[77.89582,13.92036],[77.89535,13.92563],[77.89891,13.93064],[77.89569,13.94104],[77.86861,13.93601],[77.85485,13.93818],[77.83882,13.93589],[77.8308,13.94039],[77.82659,13.94472],[77.81484,13.93193],[77.81349,13.91462],[77.81703,13.90831],[77.81618,13.90298],[77.81999,13.89978],[77.82682,13.89921],[77.83196,13.89567],[77.83554,13.88097],[77.82813,13.87654],[77.82733,13.87444],[77.83707,13.86974],[77.83023,13.86558],[77.82225,13.86474],[77.82019,13.86321],[77.81485,13.85778],[77.81203,13.84898],[77.80808,13.85059],[77.79301,13.84894],[77.78227,13.84408],[77.7822,13.83894],[77.78426,13.83439],[77.78909,13.83047],[77.78876,13.82316],[77.78153,13.81829],[77.76351,13.81722],[77.74793,13.81039],[77.74514,13.81013],[77.74072,13.81242],[77.73158,13.80757],[77.72929,13.80221],[77.71931,13.80027],[77.72228,13.79394],[77.72194,13.79],[77.71951,13.78809],[77.71868,13.7841],[77.71974,13.775],[77.72222,13.76885],[77.71999,13.7651],[77.7201,13.75597],[77.71736,13.74107],[77.71514,13.74376],[77.70846,13.74102],[77.70329,13.76979],[77.69518,13.7707],[77.67962,13.76218],[77.67172,13.76048],[77.67761,13.76669],[77.67987,13.77233],[77.68146,13.7796],[77.68008,13.78678],[77.66984,13.78391],[77.66135,13.78538],[77.65129,13.78407],[77.64599,13.77876],[77.62107,13.76844],[77.6175,13.76193],[77.61884,13.75496],[77.62521,13.75298],[77.62964,13.7542],[77.64223,13.7468],[77.64143,13.74195],[77.63697,13.73941],[77.63359,13.73958],[77.62772,13.7346],[77.62443,13.73523],[77.61361,13.75192],[77.59997,13.75076],[77.59602,13.74819],[77.58685,13.73349],[77.58055,13.73508],[77.57712,13.73831],[77.57168,13.7382],[77.56485,13.72618],[77.56057,13.72241],[77.5589,13.72353],[77.55375,13.73654],[77.54929,13.74064],[77.5493,13.74887],[77.54744,13.7529],[77.54122,13.75594],[77.52727,13.75381],[77.5252,13.75299],[77.52195,13.74456],[77.5271,13.74152],[77.53664,13.7306],[77.53437,13.707],[77.52834,13.69301],[77.52524,13.691],[77.52126,13.69213],[77.51963,13.69627],[77.51237,13.69725],[77.51451,13.70502],[77.51417,13.71321],[77.48504,13.71478],[77.48652,13.7041],[77.48827,13.70415],[77.48789,13.69977],[77.49122,13.69519],[77.49211,13.68981],[77.48783,13.68917],[77.48788,13.68666],[77.47424,13.68611],[77.45533,13.68226],[77.45609,13.69072],[77.45466,13.69104],[77.45459,13.69564],[77.453,13.69601],[77.4525,13.70405],[77.45074,13.70483],[77.45007,13.7109],[77.46166,13.70965],[77.46508,13.71088],[77.46336,13.72292],[77.46464,13.73413],[77.46667,13.73997],[77.46765,13.75317],[77.47055,13.75802],[77.46515,13.75868],[77.46379,13.7715],[77.46043,13.78047],[77.46138,13.78839],[77.45649,13.78872],[77.46087,13.803],[77.46463,13.80318],[77.46459,13.80608],[77.46423,13.80792],[77.45746,13.80722],[77.45479,13.80985],[77.44533,13.81102],[77.44059,13.80657],[77.43703,13.7967],[77.42257,13.79909],[77.42549,13.80322],[77.42827,13.80347],[77.42865,13.80681],[77.41967,13.8096],[77.4185,13.80624],[77.41611,13.80668],[77.41643,13.80876],[77.42364,13.82374],[77.42737,13.82834],[77.4274,13.8322],[77.43132,13.83665],[77.43252,13.84322],[77.42917,13.8448],[77.42683,13.84112],[77.4197,13.84161],[77.41554,13.83973],[77.39938,13.84105],[77.3819,13.83936],[77.3794,13.84084],[77.38119,13.84729],[77.37689,13.85069],[77.37364,13.85263],[77.36243,13.85425],[77.35732,13.8513],[77.35328,13.84552],[77.34555,13.8411],[77.33684,13.83275],[77.32538,13.83324],[77.32469,13.83989],[77.32307,13.84],[77.32514,13.84538],[77.32165,13.84702],[77.32145,13.85592],[77.31907,13.85722],[77.31646,13.86327],[77.31149,13.86658],[77.31055,13.86288],[77.30358,13.86203],[77.29638,13.85701],[77.29492,13.8574],[77.29016,13.84825],[77.28828,13.84748],[77.28027,13.85105],[77.25669,13.84652],[77.25615,13.85167],[77.25911,13.86314],[77.24636,13.86791],[77.24868,13.87352],[77.24472,13.88327],[77.24778,13.88832],[77.24827,13.90121],[77.24514,13.90301],[77.23647,13.90102],[77.23562,13.90414],[77.23065,13.90333],[77.22989,13.89161],[77.22666,13.88216],[77.22483,13.88292],[77.22401,13.88122],[77.21985,13.86772],[77.21541,13.86791],[77.21703,13.88374],[77.21555,13.88617],[77.21313,13.88619],[77.2102,13.88494],[77.20991,13.87807],[77.20043,13.86304],[77.18139,13.86984],[77.18568,13.87617],[77.18584,13.89233],[77.19084,13.91187],[77.18808,13.91391],[77.18471,13.92519],[77.16992,13.92061],[77.16193,13.90662],[77.16205,13.89906],[77.16876,13.88957],[77.16876,13.88052],[77.17136,13.87111],[77.16858,13.86449],[77.14764,13.86848],[77.13604,13.85652],[77.1282,13.85646],[77.13217,13.8462],[77.15601,13.84435],[77.15368,13.83414],[77.16549,13.83311],[77.16868,13.82962],[77.16772,13.82121],[77.16265,13.81684],[77.15952,13.81686],[77.16279,13.81237],[77.16258,13.80866],[77.15752,13.80603],[77.1621,13.80476],[77.16285,13.79846],[77.16516,13.79447],[77.17559,13.7836],[77.17851,13.78268],[77.17305,13.76201],[77.15111,13.76621],[77.14087,13.76504],[77.13983,13.7611],[77.13684,13.7583],[77.12233,13.7613],[77.11788,13.7645],[77.10596,13.76776],[77.09044,13.76714],[77.09022,13.76236],[77.08547,13.76234],[77.08383,13.75664],[77.08396,13.74577],[77.08563,13.74244],[77.07589,13.74284],[77.06978,13.74522],[77.0647,13.74383],[77.05991,13.74933],[77.0602,13.75283],[77.05749,13.75296],[77.05897,13.75716],[77.05804,13.7603],[77.05184,13.76418],[77.04861,13.77018],[77.04406,13.77084],[77.04337,13.77779],[77.02447,13.77922],[77.02388,13.7679],[77.01735,13.7561],[77.01868,13.74867],[77.01658,13.74586],[77.0165,13.73851],[76.9985,13.74557],[76.99687,13.74775],[76.99839,13.75505],[76.9945,13.75999],[76.9929,13.77075],[76.9852,13.7908],[76.98919,13.79463],[76.99169,13.80267],[76.98974,13.81294],[76.97641,13.81732],[76.97802,13.82687],[76.98289,13.8289],[76.9889,13.83526],[76.99223,13.84901],[76.9968,13.84895],[77.00654,13.85206],[77.01422,13.86031],[77.01319,13.87152],[77.01847,13.87254],[77.01625,13.88441],[77.02032,13.88843],[77.02063,13.89235],[77.02325,13.89593],[77.02303,13.9026],[77.03222,13.90518],[77.04729,13.9066],[77.04422,13.91476],[77.04166,13.93343],[77.03704,13.93695],[77.02437,13.93995],[77.01421,13.95487],[77.00627,13.95646],[76.99377,13.96256],[76.99618,13.97676],[77.00033,13.98942],[76.99949,13.99034],[76.99637,13.99051],[76.98197,14.00163],[76.96539,14.0115],[76.94994,14.01509],[76.94378,14.0233],[76.94347,14.02974],[76.94016,14.0295],[76.93502,14.0328],[76.93113,14.0302],[76.9344,14.04464],[76.93238,14.05392],[76.95031,14.05356],[76.9586,14.05704],[76.97174,14.05802],[76.97646,14.06528],[76.97757,14.07129],[76.97526,14.074],[76.97497,14.08091],[76.97345,14.08352],[76.95941,14.09163],[76.9484,14.09205],[76.95353,14.09966],[76.94569,14.11821],[76.94426,14.12074],[76.93658,14.12428],[76.93587,14.12885],[76.93112,14.13102],[76.92498,14.13711],[76.91757,14.12884],[76.91284,14.12881],[76.9048,14.13364],[76.88952,14.13562],[76.88591,14.13824],[76.89052,14.14282],[76.89453,14.16781],[76.89837,14.16755],[76.89966,14.16923],[76.90054,14.16757],[76.90966,14.16796],[76.91975,14.16446],[76.92192,14.16942],[76.94237,14.17333],[76.94208,14.18067],[76.94467,14.18657],[76.94248,14.19109],[76.94271,14.1954],[76.94757,14.19818],[76.95114,14.19266],[76.95736,14.18811],[76.95976,14.18395],[76.95903,14.18262],[76.9606,14.18177],[76.97065,14.18241],[76.98377,14.17882],[76.99644,14.18027],[77.00546,14.18397],[77.02333,14.17669],[77.02603,14.17479],[77.02041,14.15716],[77.02183,14.15195],[77.0201,14.1309],[77.02586,14.12994],[77.02622,14.12502],[77.02181,14.12325],[77.02406,14.11261],[77.01636,14.10424],[77.01467,14.1],[77.01912,14.09639],[77.01842,14.09463],[77.0298,14.08817],[77.02888,14.07781],[77.02544,14.06573],[77.02768,14.06175],[77.03152,14.05646],[77.03476,14.0557],[77.04571,14.05669],[77.06742,14.05202],[77.07612,14.05327],[77.07532,14.04348],[77.07892,14.04264],[77.09512,14.04244],[77.10237,14.04524],[77.1274,14.04701],[77.13184,14.04392],[77.1364,14.0229],[77.14036,14.01796],[77.14173,14.0132],[77.14107,14.00386],[77.14922,14.00116],[77.17283,14.00108],[77.17095,14.012],[77.174,14.01298],[77.20467,14.00825],[77.20997,14.01104],[77.21572,14.01088],[77.21982,14.01357],[77.24535,14.01194],[77.24817,14.01757],[77.25679,14.02238],[77.26059,14.02886],[77.26312,14.02873],[77.27036,14.03448],[77.27732,14.03465],[77.27686,14.03197],[77.27876,14.03241],[77.27931,14.02602],[77.275,14.01128],[77.28188,14.01291],[77.29209,14.02001],[77.29827,14.02161],[77.30142,14.02741],[77.30658,14.032],[77.31081,14.03253],[77.32223,14.02999],[77.32268,14.02301],[77.33686,14.00447],[77.33622,13.99537],[77.34818,13.99447],[77.36109,13.99081],[77.35934,13.98383],[77.35595,13.97908],[77.35213,13.96875],[77.35385,13.96279],[77.34949,13.95814],[77.37129,13.95275],[77.36745,13.94968],[77.35521,13.93076],[77.34784,13.91596],[77.35016,13.91341],[77.35293,13.9139],[77.35445,13.90411],[77.35763,13.90337],[77.36849,13.90295],[77.38717,13.90625],[77.39788,13.90618],[77.39994,13.89646],[77.39874,13.88813],[77.40002,13.88829],[77.40546,13.88945],[77.41057,13.89631],[77.42051,13.89933],[77.42283,13.90282],[77.42841,13.90593],[77.42835,13.90908],[77.43227,13.91054],[77.43504,13.91501],[77.4349,13.91967],[77.41588,13.9242],[77.41488,13.93663],[77.41209,13.94556],[77.43072,13.94508],[77.43536,13.94751],[77.43758,13.95551],[77.43531,13.95766],[77.43475,13.96438],[77.43788,13.97552],[77.43402,13.98016],[77.42766,13.97968],[77.42589,13.98611],[77.39569,13.98373],[77.38164,13.97623],[77.37967,13.98984],[77.38765,14.00571],[77.39016,14.0167],[77.38491,14.01603],[77.3323,14.03069],[77.33509,14.0454],[77.3405,14.06019],[77.34593,14.05967],[77.36054,14.06256],[77.36366,14.07301],[77.37361,14.07701],[77.37562,14.07935],[77.38127,14.09784],[77.38618,14.09756],[77.38881,14.09948],[77.39761,14.10955],[77.40092,14.11871],[77.40103,14.12018],[77.39724,14.12318],[77.39736,14.12544],[77.39061,14.12664],[77.3821,14.1235],[77.37566,14.11868],[77.36168,14.11533],[77.35355,14.10969],[77.34978,14.10313],[77.34747,14.10364],[77.35148,14.12037],[77.35137,14.12998],[77.35171,14.1311],[77.36057,14.13083],[77.37894,14.13584],[77.38335,14.14413],[77.38507,14.15326],[77.38804,14.15363],[77.38925,14.15965],[77.39488,14.16077],[77.39474,14.1687],[77.39162,14.17282],[77.39372,14.17425],[77.40785,14.17352],[77.42036,14.17695],[77.42277,14.17644],[77.4226,14.17298],[77.4302,14.17046],[77.44575,14.1717],[77.45682,14.16962],[77.467,14.17164],[77.46809,14.16489],[77.48083,14.16474],[77.48813,14.16167],[77.49961,14.1598],[77.50351,14.15712],[77.51065,14.17305],[77.51434,14.17665],[77.51343,14.17785],[77.5152,14.18294],[77.51703,14.18281],[77.51707,14.1844],[77.51579,14.18714],[77.50465,14.19398],[77.50133,14.20477],[77.50328,14.21054],[77.49449,14.22424],[77.49592,14.23199],[77.49279,14.23101],[77.49373,14.23301],[77.49237,14.23484],[77.4966,14.23715],[77.50386,14.26375],[77.49828,14.27885],[77.49275,14.27815],[77.49076,14.2813],[77.48712,14.28172],[77.48181,14.29161],[77.47893,14.29216],[77.46606,14.28309],[77.45965,14.2805],[77.45028,14.28071],[77.45063,14.28279],[77.44813,14.28261],[77.44518,14.29523],[77.44622,14.31747],[77.43806,14.31638],[77.43153,14.31286],[77.4284,14.32864],[77.42308,14.32818],[77.41213,14.33651],[77.40776,14.3376],[77.3928,14.33583],[77.37904,14.32272],[77.37707,14.3048],[77.37782,14.30139],[77.3824,14.29901],[77.38514,14.29268],[77.38664,14.28167],[77.38877,14.28084],[77.38736,14.27087],[77.39578,14.26612],[77.40538,14.26669],[77.40694,14.25969],[77.40883,14.25985],[77.40967,14.23192],[77.41148,14.23238],[77.41212,14.22769],[77.41769,14.22584],[77.41939,14.21162],[77.41413,14.20476],[77.4095,14.20554],[77.39199,14.1989],[77.38709,14.20002],[77.38667,14.20352],[77.38322,14.20744],[77.3842,14.22095],[77.37917,14.22648],[77.36637,14.23285],[77.35949,14.23401],[77.36012,14.24531],[77.36383,14.25469],[77.36186,14.26875],[77.36382,14.27583],[77.33906,14.2769],[77.33016,14.27986],[77.31426,14.28051],[77.30534,14.28344],[77.28933,14.2813],[77.28354,14.28274],[77.28289,14.28607],[77.28795,14.29876],[77.28883,14.30547],[77.28854,14.32714],[77.28744,14.32716],[77.28657,14.3401],[77.28484,14.3401],[77.28388,14.33753],[77.27712,14.33754],[77.26931,14.33211],[77.26357,14.3328],[77.25858,14.33092],[77.25828,14.32748],[77.25336,14.32526],[77.25387,14.32223],[77.24734,14.31781],[77.2382,14.31736],[77.22867,14.3212],[77.21347,14.31878],[77.19742,14.32118],[77.18404,14.33247],[77.18104,14.33038],[77.17795,14.33422],[77.17868,14.33548],[77.16932,14.33544],[77.16691,14.34208],[77.15734,14.3421],[77.15266,14.33914],[77.13921,14.34014],[77.1357,14.33687],[77.137,14.33176],[77.13633,14.32302],[77.13059,14.30684],[77.12538,14.29988],[77.11564,14.29248],[77.11552,14.27424],[77.11019,14.26816],[77.11169,14.26536],[77.11119,14.26158],[77.12048,14.26293],[77.11856,14.25682],[77.11533,14.25453],[77.11832,14.24481],[77.11565,14.23758],[77.11667,14.22638],[77.11486,14.22314],[77.10776,14.21991],[77.1008,14.21714],[77.08117,14.21415],[77.07589,14.22336],[77.06776,14.2284],[77.0618,14.22946],[77.06007,14.23228],[77.06028,14.2362],[77.05694,14.24067],[77.05773,14.2438],[77.05246,14.2455],[77.03605,14.24674],[77.03614,14.24487],[77.03054,14.24419],[77.03036,14.24227],[77.00848,14.238],[77.00566,14.23579],[76.99894,14.24087],[76.99194,14.24141],[76.9856,14.24733],[76.9762,14.24613],[76.96983,14.24337],[76.95983,14.24496],[76.95194,14.2419],[76.94006,14.24461],[76.9358,14.25937],[76.9249,14.27378],[76.92818,14.2793],[76.93711,14.28034],[76.93877,14.28301],[76.94738,14.28617],[76.95672,14.29435],[76.94565,14.31318],[76.9272,14.31451],[76.90787,14.32295],[76.90339,14.32268],[76.89228,14.34126],[76.88464,14.34754],[76.88201,14.35971],[76.88375,14.36466],[76.88482,14.39571],[76.89863,14.39795],[76.9046,14.40392],[76.91583,14.42069],[76.93142,14.41052],[76.94271,14.39934],[76.94676,14.40615],[76.94779,14.41316],[76.94479,14.4509],[76.94596,14.45255],[76.95037,14.45237],[76.9568,14.45198],[76.9598,14.45021],[76.96833,14.46179],[76.9684,14.46511],[76.97167,14.46814],[76.97544,14.47786],[76.97481,14.48533],[76.95,14.48676],[76.94875,14.48914],[76.94339,14.48948],[76.92091,14.49052],[76.90069,14.48921],[76.88925,14.48317],[76.88651,14.48353],[76.88387,14.47927],[76.88427,14.47708],[76.86796,14.47404],[76.8651,14.47823],[76.86246,14.49276],[76.8592,14.49746],[76.8556,14.50959],[76.84923,14.51258],[76.8419,14.51937],[76.83549,14.5213],[76.83282,14.52911],[76.83101,14.53036],[76.82346,14.52682],[76.81941,14.52994],[76.81254,14.53173],[76.80628,14.53106],[76.80282,14.5422],[76.79786,14.54917],[76.79136,14.55465],[76.78337,14.58044],[76.78184,14.5965],[76.78033,14.59704],[76.78023,14.59306],[76.76499,14.60212],[76.76692,14.61827],[76.77253,14.63911],[76.77527,14.68096],[76.78622,14.69578],[76.78651,14.70843],[76.80294,14.74188],[76.79415,14.75127],[76.78953,14.76006],[76.78898,14.77228],[76.78269,14.78594],[76.78396,14.78697],[76.78846,14.78582],[76.78864,14.78697],[76.79383,14.7854],[76.80296,14.7856],[76.81766,14.7876],[76.82034,14.78888],[76.81908,14.79312],[76.83239,14.79291],[76.83257,14.79039],[76.83675,14.79077],[76.83737,14.81056],[76.85146,14.8086],[76.85398,14.80944],[76.85456,14.81809],[76.84601,14.82205],[76.8455,14.83405],[76.84179,14.83655],[76.85406,14.84323],[76.85541,14.84878],[76.85489,14.85892],[76.85719,14.86911],[76.85388,14.86918],[76.85339,14.88321],[76.85145,14.88335],[76.85247,14.88697],[76.84552,14.88718],[76.84548,14.88929],[76.84733,14.89598],[76.86384,14.89558],[76.86962,14.93771],[76.86609,14.95753],[76.86746,14.96982],[76.84194,14.96641],[76.83527,14.96003],[76.83411,14.95646],[76.8285,14.95646],[76.81828,14.96944],[76.79627,14.96917],[76.77761,14.97545],[76.76654,14.97562],[76.76057,14.98986],[76.76786,14.9901],[76.76957,14.99176],[76.77238,14.99084],[76.77503,14.99306],[76.77874,15.00456],[76.78363,15.00478],[76.78712,15.00793],[76.79013,15.02071],[76.78572,15.02768],[76.78575,15.03715],[76.78343,15.04261],[76.78035,15.04269],[76.77663,15.05468],[76.77361,15.05912],[76.77524,15.07225],[76.77989,15.07604],[76.77669,15.0784],[76.77787,15.07987],[76.78215,15.07733],[76.7853,15.08231],[76.78602,15.08781],[76.79235,15.08757],[76.79392,15.09185],[76.80024,15.09583],[76.81161,15.08638],[76.82377,15.08001],[76.83602,15.07923],[76.85459,15.06512],[76.86143,15.06198],[76.86087,15.05979],[76.86411,15.05803],[76.86589,15.05968],[76.86519,15.05522],[76.86919,15.05342],[76.87784,15.03546],[76.87716,15.03021],[76.89498,15.03707],[76.90722,15.03252],[76.91837,15.03552],[76.92222,15.03128],[76.93586,15.02941],[76.9496,15.03037],[76.96592,15.01804],[76.98522,15.01519],[76.98603,15.02649],[77.00303,15.03091],[77.00408,15.03383],[77.03595,15.03128],[77.04032,15.0331],[77.04956,15.03308],[77.05043,15.02447],[77.04412,15.00984],[77.06902,15.00476],[77.08245,15.00608],[77.08475,15.03071],[77.09085,15.02933],[77.09366,15.03614],[77.11293,15.03406],[77.11527,15.0464],[77.1195,15.04569],[77.12081,15.054],[77.12821,15.07231],[77.13012,15.10077],[77.13696,15.10234],[77.13694,15.10425],[77.14208,15.10457],[77.15017,15.11161],[77.15633,15.12293],[77.15728,15.14047],[77.14975,15.13976],[77.149,15.14142],[77.13779,15.14353],[77.13714,15.1478],[77.13472,15.14829],[77.13541,15.14975],[77.14076,15.15859],[77.16283,15.15736],[77.16487,15.1682],[77.16736,15.16815],[77.16742,15.17125],[77.16913,15.17135],[77.16619,15.18834],[77.16195,15.20111],[77.15931,15.201],[77.15482,15.21482],[77.15166,15.2147],[77.15197,15.21757],[77.14719,15.22081],[77.14766,15.22391],[77.12512,15.22694],[77.12639,15.24044],[77.13251,15.23969],[77.13283,15.24169],[77.13622,15.24096],[77.14028,15.24748],[77.14054,15.25172],[77.14304,15.25184],[77.14378,15.25721],[77.16767,15.2585],[77.16693,15.26858],[77.15926,15.26784],[77.15285,15.27406],[77.14714,15.27292],[77.1471,15.27495],[77.15194,15.27568],[77.15158,15.29243],[77.11838,15.29485],[77.11701,15.32574],[77.11259,15.32743],[77.1131,15.33368],[77.10145,15.33368],[77.07439,15.32589],[77.06373,15.32802],[77.06601,15.33774],[77.0649,15.34355],[77.05903,15.34896],[77.04474,15.35569],[77.04183,15.36192],[77.04135,15.37099],[77.04742,15.3834],[77.04725,15.39002],[77.03963,15.39702],[77.03294,15.39971],[77.02923,15.40436],[77.02897,15.40768],[77.0339,15.41927],[77.03484,15.43029],[77.03353,15.43289],[77.0275,15.43974],[77.01077,15.44874],[76.9973,15.47801],[76.99121,15.4829],[76.9771,15.48976],[76.97402,15.49823],[76.97453,15.51051],[76.99233,15.50579],[77.00946,15.50461],[77.01479,15.50183],[77.02279,15.50224],[77.02884,15.50046],[77.03004,15.50265],[77.03136,15.50709],[77.03132,15.54408],[77.02624,15.58174],[77.03291,15.60498],[77.0313,15.61159],[77.03272,15.62063],[77.03111,15.62099],[77.03146,15.62683],[77.03007,15.62683],[77.03043,15.63449],[77.03412,15.63456],[77.03432,15.6368],[77.04599,15.63864],[77.07173,15.64665],[77.08319,15.65915],[77.087,15.65763],[77.09095,15.65339],[77.10136,15.6485],[77.1034,15.64284],[77.10747,15.64003],[77.10625,15.63744],[77.10832,15.63783],[77.11564,15.63251],[77.12142,15.63108],[77.12888,15.66586],[77.12014,15.66761],[77.12137,15.67109],[77.11339,15.67569],[77.1142,15.67798],[77.10928,15.67988],[77.10923,15.68146],[77.09503,15.68836],[77.09379,15.69038],[77.07869,15.69514],[77.08064,15.69853],[77.08257,15.6987],[77.08741,15.71549],[77.07887,15.71625],[77.07969,15.72751],[77.0491,15.73026],[77.04938,15.74004],[77.04594,15.74036],[77.04799,15.75622],[77.05431,15.75617],[77.05646,15.76283],[77.05106,15.76452],[77.05231,15.76987],[77.05695,15.7687],[77.06094,15.78626],[77.06641,15.78505],[77.06717,15.78774],[77.06712,15.80269],[77.06373,15.80319],[77.06547,15.82735],[77.06314,15.82958],[77.05888,15.82999],[77.05344,15.82884],[77.05098,15.8304],[77.04809,15.82797],[77.04766,15.83004],[77.04256,15.82884],[77.04069,15.83274],[77.03585,15.82955],[77.02519,15.83751],[77.03262,15.85692],[77.05589,15.88154],[77.06124,15.89448],[77.07103,15.90883],[77.08457,15.91864],[77.10565,15.92998],[77.13733,15.93818],[77.14314,15.9447],[77.15224,15.94908],[77.15933,15.95086],[77.17409,15.95077],[77.18529,15.95674],[77.20495,15.95504],[77.21859,15.95795],[77.23547,15.95714],[77.24887,15.96456],[77.28468,15.95381],[77.30107,15.958],[77.31143,15.9534],[77.32406,15.95016],[77.34814,15.95132],[77.36125,15.94942],[77.3801,15.93977],[77.39769,15.94448],[77.41631,15.94239],[77.42257,15.94749],[77.4296,15.94906],[77.466,15.9345],[77.49874,15.93318],[77.51344,15.92679],[77.51981,15.96691],[77.5164,15.96736],[77.51066,15.97516],[77.51109,15.97937],[77.50955,15.9804],[77.51405,16.00808],[77.50441,16.01133],[77.50434,16.01821],[77.50267,16.01871],[77.50225,16.02247],[77.49745,16.02867],[77.49803,16.02998],[77.49558,16.03098],[77.494,16.03699],[77.49535,16.0417],[77.49787,16.04409],[77.49681,16.04712],[77.49946,16.05372],[77.49651,16.05504],[77.49944,16.06102],[77.50261,16.05881],[77.50688,16.07964],[77.49366,16.08634],[77.50093,16.10619],[77.50875,16.10919],[77.51328,16.10802],[77.51081,16.11227],[77.50231,16.11717],[77.50022,16.12059],[77.48979,16.11962],[77.4916,16.13502],[77.49068,16.15958],[77.48615,16.16298],[77.49132,16.18453],[77.49949,16.19856],[77.49818,16.20956],[77.50115,16.22172],[77.50279,16.22366],[77.51215,16.22092],[77.51499,16.22196],[77.51566,16.22779],[77.51317,16.23085],[77.50356,16.23094],[77.49506,16.22712],[77.49234,16.2293],[77.49298,16.24408],[77.49007,16.25518],[77.5024,16.26306],[77.50514,16.2676],[77.50481,16.2758],[77.51043,16.27459],[77.51386,16.27784],[77.52187,16.27803],[77.5296,16.27548],[77.52933,16.2728],[77.53282,16.27168],[77.5369,16.2668],[77.54082,16.28546],[77.54508,16.29171],[77.56321,16.30164],[77.56888,16.3036],[77.582,16.29134],[77.59781,16.29311],[77.59337,16.29744],[77.59202,16.30217],[77.59538,16.31812],[77.59,16.3255],[77.59083,16.32928],[77.58803,16.33337],[77.59524,16.33963],[77.59392,16.34389],[77.57272,16.34093],[77.555,16.34877],[77.54604,16.35693],[77.53877,16.35821],[77.53143,16.36376],[77.5234,16.37583],[77.51437,16.37497],[77.49535,16.38116],[77.48969,16.38501],[77.47467,16.38177],[77.44098,16.38077],[77.43711,16.37861],[77.42953,16.36966],[77.42095,16.36623],[77.41144,16.36745],[77.4017,16.3713],[77.37805,16.38556],[77.35584,16.38264],[77.3491,16.38385],[77.33342,16.39537],[77.31393,16.39801],[77.3043,16.40173],[77.29745,16.4069],[77.28796,16.40864],[77.27828,16.42217],[77.26895,16.43046],[77.26207,16.45184],[77.24441,16.46331],[77.23576,16.47274],[77.23977,16.47625],[77.24581,16.47773],[77.25073,16.47493],[77.26499,16.47251],[77.294,16.47667],[77.29932,16.48791],[77.29871,16.49616],[77.3203,16.49222],[77.32357,16.48684],[77.32956,16.48591],[77.34309,16.48793],[77.34439,16.48694],[77.34637,16.49037],[77.35143,16.49106],[77.3547,16.48878],[77.36901,16.48867],[77.37007,16.50458],[77.37272,16.50966],[77.37779,16.5137],[77.38144,16.51571],[77.39102,16.5162],[77.39498,16.51969],[77.40221,16.52152],[77.41689,16.5173],[77.41912,16.52238],[77.41902,16.54892],[77.41045,16.549],[77.40376,16.55119],[77.40418,16.55418],[77.39996,16.55573],[77.3975,16.56476],[77.39262,16.56399],[77.39287,16.56997],[77.40001,16.56752],[77.40494,16.57189],[77.41178,16.57086],[77.41537,16.56752],[77.42376,16.56888],[77.42563,16.57219],[77.42855,16.57365],[77.43085,16.57887],[77.43971,16.58715],[77.46222,16.58548],[77.46483,16.59242],[77.46225,16.59766],[77.46391,16.59921],[77.4674,16.59884],[77.4678,16.60976],[77.45819,16.61071],[77.45365,16.61675],[77.45616,16.62299],[77.46392,16.62824],[77.46438,16.6325],[77.46825,16.63595],[77.47086,16.64375],[77.47611,16.65011],[77.47291,16.6528],[77.4624,16.65427],[77.46143,16.65112],[77.45702,16.64968],[77.45649,16.64681],[77.44468,16.63923],[77.44158,16.6411],[77.43434,16.64138],[77.43434,16.64336],[77.4386,16.64533],[77.42972,16.6562],[77.41901,16.65844],[77.41886,16.66857],[77.42817,16.6682],[77.43455,16.67098],[77.44255,16.66985],[77.44423,16.67569],[77.44658,16.67607],[77.44772,16.67931],[77.4639,16.6763],[77.4698,16.68703],[77.46989,16.7056],[77.47139,16.7062],[77.47116,16.71178],[77.47405,16.71656],[77.46381,16.71917],[77.46296,16.71797],[77.46133,16.719],[77.45779,16.71594],[77.45216,16.7196],[77.44718,16.72073],[77.44613,16.71649],[77.44198,16.71703],[77.44123,16.71312],[77.43846,16.71168],[77.4328,16.7173],[77.42767,16.71663],[77.42607,16.72287],[77.43097,16.72312],[77.43036,16.72637],[77.42832,16.7266],[77.42696,16.72891],[77.4298,16.7348],[77.4333,16.73669],[77.44315,16.76251],[77.43788,16.77471],[77.43772,16.78337],[77.4395,16.78913],[77.44107,16.78622],[77.46719,16.78045],[77.4745,16.78124],[77.4765,16.78837],[77.47339,16.78921],[77.47469,16.7931],[77.47426,16.80232],[77.4657,16.80592],[77.46646,16.80832],[77.46244,16.81374],[77.46324,16.82221],[77.45708,16.83018],[77.45948,16.83285],[77.46406,16.85059],[77.46001,16.87468],[77.46036,16.88475],[77.45589,16.88534],[77.45834,16.89409],[77.45646,16.89992],[77.45791,16.90951],[77.4547,16.91037],[77.45402,16.9139],[77.45842,16.91491],[77.4592,16.91731],[77.46652,16.91511],[77.46944,16.9192],[77.46941,16.92806],[77.4642,16.92985],[77.46829,16.93959],[77.46484,16.94418],[77.46721,16.94985],[77.46523,16.95661],[77.46595,16.95893],[77.47215,16.95714],[77.4783,16.96837],[77.48134,16.97043],[77.48289,16.98565],[77.47952,16.99602],[77.48656,17.00321],[77.49187,17.00366],[77.49783,17.00933],[77.5022,17.00937],[77.50253,17.0141],[77.49495,17.02709],[77.49665,17.04272],[77.48811,17.04717],[77.48766,17.04953],[77.48984,17.05054],[77.48345,17.05891],[77.47993,17.0688],[77.47898,17.07263],[77.48194,17.07585],[77.48098,17.07923],[77.47656,17.07943],[77.46725,17.08633],[77.46285,17.09408],[77.46469,17.10776],[77.46362,17.11],[77.45919,17.1091],[77.45563,17.11145],[77.45428,17.11485],[77.44955,17.11502],[77.4458,17.11796],[77.43849,17.11685],[77.436,17.11498],[77.40666,17.12451],[77.40382,17.13292],[77.38454,17.14003],[77.37792,17.13994],[77.37817,17.15266],[77.3669,17.15441],[77.36682,17.15898],[77.36372,17.15878],[77.36261,17.16448],[77.36677,17.1693],[77.3662,17.17221],[77.37001,17.17579],[77.3719,17.18113],[77.36946,17.18632],[77.37335,17.19087],[77.37396,17.19455],[77.37227,17.19556],[77.38174,17.19765],[77.39389,17.1944],[77.39641,17.20753],[77.39839,17.21031],[77.40375,17.20989],[77.40198,17.21412],[77.38876,17.21532],[77.38296,17.21798],[77.38019,17.22253],[77.40495,17.23653],[77.40827,17.24121],[77.41039,17.24041],[77.41145,17.23767],[77.42042,17.23762],[77.42254,17.25076],[77.42633,17.25646],[77.43578,17.26018],[77.444,17.27055],[77.45081,17.27053],[77.45356,17.2761],[77.45854,17.279],[77.45488,17.28724],[77.43793,17.29192],[77.44051,17.3013],[77.44298,17.30122],[77.4456,17.30774],[77.44765,17.3075],[77.44884,17.30962],[77.45219,17.31755],[77.45245,17.32747],[77.45601,17.33124],[77.45706,17.34741],[77.45487,17.35178],[77.45168,17.35268],[77.45106,17.35938],[77.45361,17.37399],[77.4791,17.37072],[77.476,17.36841],[77.47653,17.36371],[77.47443,17.36151],[77.48382,17.355],[77.4882,17.35873],[77.50263,17.35707],[77.51148,17.36058],[77.51576,17.36038],[77.52482,17.3647],[77.5298,17.37071],[77.53315,17.3805],[77.52622,17.38193],[77.52429,17.388],[77.53723,17.40225],[77.53784,17.40609],[77.53607,17.40798],[77.52983,17.40818],[77.51417,17.41418],[77.513,17.43087],[77.5373,17.44375],[77.55269,17.43705],[77.56151,17.43761],[77.57586,17.43071],[77.57619,17.45617],[77.58424,17.4545],[77.60292,17.44415],[77.61427,17.44595],[77.613,17.46683],[77.61523,17.47289],[77.63824,17.47352],[77.64051,17.47646],[77.64479,17.47757],[77.64766,17.48717],[77.64788,17.49608],[77.65689,17.50646],[77.65333,17.49389],[77.65228,17.48285],[77.65544,17.48308],[77.65736,17.48092],[77.67053,17.47789],[77.6768,17.47836],[77.6884,17.4752],[77.68963,17.48281],[77.68801,17.48943],[77.69245,17.49743],[77.6888,17.51094],[77.68772,17.51182],[77.68342,17.50818],[77.67749,17.50998],[77.67545,17.50862],[77.67302,17.50942],[77.66864,17.51161],[77.66654,17.51713],[77.66201,17.52282],[77.64527,17.52238],[77.637,17.52571],[77.62796,17.52363],[77.62339,17.52563],[77.62097,17.5304],[77.61936,17.52887],[77.61206,17.53476],[77.60738,17.53225],[77.60301,17.53584],[77.5969,17.5343],[77.59558,17.54487],[77.59723,17.55373],[77.5938,17.56451],[77.58907,17.5647],[77.5881,17.56],[77.56737,17.55636],[77.56085,17.55257],[77.55424,17.55385],[77.55056,17.55173],[77.54512,17.56439],[77.53744,17.57544],[77.52838,17.57537],[77.51649,17.55915],[77.51544,17.55242],[77.5069,17.54228],[77.50003,17.54672],[77.50043,17.55619],[77.49618,17.55961],[77.49407,17.56836],[77.47805,17.5668],[77.47623,17.57061],[77.47082,17.57186],[77.46181,17.58075],[77.45858,17.57997],[77.45562,17.58233],[77.44312,17.58396],[77.44498,17.58625],[77.44329,17.59169],[77.44614,17.59647],[77.44476,17.60941],[77.44873,17.60934],[77.45115,17.62321],[77.45575,17.63249],[77.45589,17.63418],[77.45208,17.63642],[77.45223,17.64],[77.44972,17.64396],[77.45001,17.65058],[77.44822,17.65112],[77.44893,17.65943],[77.45482,17.67448],[77.45349,17.67711],[77.4537,17.68649],[77.45504,17.68893],[77.45216,17.69114],[77.45243,17.6947],[77.45782,17.6963],[77.45887,17.69862],[77.46748,17.70298],[77.48415,17.7056],[77.48489,17.70914],[77.48601,17.70793],[77.49227,17.70813],[77.49705,17.71551],[77.50914,17.71629],[77.51165,17.72092],[77.51655,17.72016],[77.51824,17.72358],[77.52201,17.72603],[77.52859,17.72517],[77.53133,17.72867],[77.53328,17.72768],[77.54219,17.72894],[77.54596,17.72684],[77.54623,17.73282],[77.54861,17.73577],[77.5567,17.73738],[77.55801,17.74139],[77.56094,17.74281],[77.56439,17.74786],[77.56853,17.74891],[77.56727,17.7596],[77.56915,17.76649],[77.56628,17.76675],[77.55983,17.76342],[77.55486,17.76397],[77.54823,17.76706],[77.54606,17.77166],[77.54026,17.77438],[77.54054,17.77777],[77.53751,17.77993],[77.53439,17.77763],[77.52867,17.78066],[77.527,17.7799],[77.52636,17.78163],[77.52211,17.78055],[77.51751,17.78249],[77.51233,17.78213],[77.50656,17.78595],[77.509,17.78778],[77.51494,17.80545],[77.52294,17.81141],[77.52903,17.81293],[77.52822,17.8279],[77.53238,17.82911],[77.5467,17.82848],[77.54891,17.81938],[77.55403,17.82007],[77.56068,17.83865],[77.56744,17.84542],[77.56484,17.85119],[77.56932,17.85156],[77.57,17.86765],[77.57346,17.86919],[77.5764,17.87542],[77.58059,17.87345],[77.58342,17.87704],[77.59449,17.87233],[77.59908,17.87309],[77.60037,17.8806],[77.59583,17.88136],[77.58599,17.89384],[77.585,17.90193],[77.58606,17.90784],[77.59999,17.90414],[77.60518,17.90781],[77.61904,17.90406],[77.622,17.92957],[77.61868,17.93949],[77.62294,17.94552],[77.63251,17.94667],[77.63289,17.9558],[77.62454,17.9596],[77.63301,17.96738],[77.63329,17.96037],[77.63513,17.95925],[77.63721,17.95232],[77.64062,17.95189],[77.6409,17.95411],[77.64948,17.95002],[77.64951,17.95907],[77.65586,17.96884],[77.64821,17.98026],[77.65204,17.99389],[77.64891,17.99888],[77.63875,17.99645],[77.62779,17.99679],[77.61966,18.00649],[77.60747,18.00985],[77.60794,18.01796],[77.60593,18.02023],[77.60164,18.01984],[77.59586,18.01285],[77.58859,18.01216],[77.58489,18.01679],[77.58325,18.02826],[77.58059,18.03158],[77.56061,18.03622],[77.55379,18.03582],[77.55183,18.0507],[77.54948,18.05124],[77.54961,18.05439],[77.54764,18.05613],[77.54834,18.06521],[77.55742,18.06373],[77.55971,18.07188],[77.56592,18.07667],[77.56943,18.07824],[77.57592,18.07806],[77.58358,18.08246],[77.58551,18.08184],[77.59564,18.08603],[77.5988,18.09333],[77.60155,18.1059],[77.59916,18.12099],[77.59699,18.12367],[77.5944,18.13272],[77.59684,18.15595],[77.5924,18.15544],[77.58422,18.15923],[77.58131,18.16232],[77.57716,18.17249],[77.57472,18.1741],[77.57069,18.19217],[77.56405,18.19426],[77.56346,18.19613],[77.56388,18.20194],[77.56551,18.20418],[77.57215,18.20351],[77.57482,18.20163],[77.58058,18.21385],[77.58531,18.21982],[77.58149,18.22486],[77.58185,18.22697],[77.57988,18.22816],[77.58052,18.23217],[77.57301,18.23944],[77.57178,18.244],[77.57378,18.24499],[77.58315,18.26078],[77.59119,18.26241],[77.59489,18.26531],[77.60117,18.27762],[77.6043,18.27877],[77.60542,18.28135],[77.58185,18.28538],[77.57616,18.28873],[77.57256,18.2933],[77.57021,18.29253],[77.56694,18.28728],[77.56134,18.28495],[77.55411,18.29088],[77.54048,18.29449],[77.53272,18.2987],[77.52373,18.30821],[77.51263,18.3096],[77.50882,18.30428],[77.51109,18.2953],[77.51023,18.29248],[77.51205,18.29074],[77.51156,18.28205],[77.50962,18.28181],[77.50522,18.27702],[77.49866,18.27675],[77.49267,18.2672],[77.48138,18.27236],[77.47973,18.26818],[77.47575,18.26466],[77.46504,18.26254],[77.45233,18.26698],[77.45178,18.26972],[77.44758,18.27],[77.44558,18.27662],[77.44586,18.28381],[77.44035,18.28263],[77.43651,18.29323],[77.43766,18.31031],[77.42831,18.31236],[77.42556,18.30788],[77.41703,18.30643],[77.409,18.30147],[77.40142,18.30449],[77.39485,18.30359],[77.38512,18.30931],[77.36579,18.30712],[77.35672,18.3202],[77.3716,18.32521],[77.37562,18.33205],[77.38094,18.33102],[77.38243,18.34225],[77.38549,18.34081],[77.39016,18.34371],[77.39498,18.3415],[77.39434,18.34743],[77.40015,18.34745],[77.39893,18.35979],[77.39487,18.36845],[77.40984,18.37741],[77.41329,18.38507],[77.41409,18.39311],[77.40357,18.39965],[77.40083,18.39988],[77.40016,18.402],[77.38843,18.39953],[77.37283,18.4011],[77.37233,18.40673],[77.36839,18.41253],[77.37065,18.41879],[77.36726,18.41869],[77.3654,18.42772],[77.36215,18.42989],[77.36446,18.43452],[77.36203,18.43558],[77.36184,18.43728],[77.3675,18.44696],[77.36564,18.45156],[77.35349,18.44767],[77.35107,18.4422],[77.34796,18.43947],[77.3475,18.43396],[77.34522,18.43361],[77.33566,18.44232],[77.33603,18.45015],[77.3323,18.45086]]],[[[77.27885,18.47574],[77.27813,18.47593],[77.2777,18.47661],[77.27605,18.47696],[77.27504,18.47772],[77.27334,18.47439],[77.27215,18.47296],[77.27206,18.47105],[77.27175,18.47054],[77.27177,18.47002],[77.27105,18.46771],[77.27094,18.46675],[77.27127,18.46577],[77.26938,18.46386],[77.26844,18.46077],[77.26775,18.45968],[77.26754,18.45444],[77.26941,18.45439],[77.27243,18.45392],[77.28001,18.45361],[77.28077,18.45378],[77.28178,18.45459],[77.28234,18.45564],[77.28433,18.45519],[77.28477,18.45593],[77.28545,18.45602],[77.28864,18.45534],[77.29064,18.45669],[77.29208,18.45718],[77.29423,18.45882],[77.29595,18.46092],[77.29546,18.46129],[77.29559,18.46239],[77.29613,18.46347],[77.29866,18.46518],[77.29953,18.46488],[77.29992,18.46638],[77.29995,18.47014],[77.30043,18.47139],[77.30029,18.47303],[77.29979,18.47411],[77.29638,18.47702],[77.29275,18.47697],[77.28915,18.4765],[77.28682,18.47436],[77.28559,18.47456],[77.28397,18.47447],[77.28263,18.47494],[77.28051,18.47478],[77.27885,18.47574]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"3","area_level":"State","area_name":"Punjab","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[75.84365,32.50341],[75.83903,32.51026],[75.83579,32.51156],[75.83225,32.51072],[75.83425,32.50767],[75.83376,32.50373],[75.82616,32.50388],[75.82632,32.49999],[75.82202,32.4935],[75.8136,32.48845],[75.80051,32.48513],[75.77694,32.46512],[75.76273,32.45999],[75.75934,32.46052],[75.74902,32.45408],[75.74151,32.45515],[75.72979,32.4532],[75.72884,32.44767],[75.72661,32.44481],[75.7287,32.43911],[75.73434,32.43912],[75.73714,32.43498],[75.74247,32.43363],[75.7438,32.4316],[75.73815,32.42981],[75.72989,32.4329],[75.72775,32.43168],[75.7275,32.4294],[75.73199,32.42499],[75.73187,32.42256],[75.72269,32.40938],[75.72276,32.4056],[75.71496,32.40796],[75.71134,32.41156],[75.70128,32.39944],[75.68725,32.39025],[75.67981,32.38997],[75.67549,32.39386],[75.6731,32.39392],[75.64652,32.38742],[75.63457,32.37991],[75.61193,32.37686],[75.59531,32.37704],[75.55978,32.35698],[75.55777,32.35384],[75.55033,32.34875],[75.53929,32.33522],[75.53766,32.3259],[75.54284,32.3216],[75.54189,32.31559],[75.54331,32.3092],[75.54221,32.30381],[75.53953,32.30022],[75.53933,32.29217],[75.53683,32.28311],[75.53224,32.27783],[75.52604,32.27749],[75.52618,32.27601],[75.52092,32.27724],[75.52102,32.2793],[75.51866,32.27971],[75.51839,32.28165],[75.50919,32.28399],[75.50393,32.29132],[75.50548,32.29669],[75.51329,32.30711],[75.51153,32.30859],[75.50447,32.31269],[75.50332,32.31103],[75.48639,32.31663],[75.48192,32.32029],[75.48566,32.32364],[75.48151,32.33517],[75.48447,32.33758],[75.48614,32.33657],[75.48807,32.33963],[75.49494,32.34113],[75.4891,32.34556],[75.48649,32.34473],[75.48633,32.34197],[75.47894,32.33849],[75.47505,32.33814],[75.47504,32.33993],[75.46913,32.33863],[75.47187,32.33286],[75.46597,32.32917],[75.46965,32.32779],[75.46778,32.3246],[75.4621,32.32706],[75.44951,32.32382],[75.44813,32.32604],[75.44496,32.32121],[75.44049,32.31802],[75.43161,32.31666],[75.42999,32.315],[75.41843,32.32004],[75.41051,32.32862],[75.40662,32.32889],[75.40369,32.32688],[75.40219,32.33005],[75.39939,32.33002],[75.39448,32.32693],[75.38029,32.33399],[75.37654,32.33431],[75.37453,32.33732],[75.37068,32.33424],[75.36312,32.33294],[75.36199,32.3341],[75.36348,32.33612],[75.36087,32.33492],[75.35537,32.3367],[75.35574,32.3383],[75.34928,32.34526],[75.3412,32.34548],[75.34072,32.33765],[75.33894,32.33564],[75.3359,32.33694],[75.33543,32.33016],[75.33148,32.32672],[75.33771,32.32184],[75.33661,32.31661],[75.33275,32.31603],[75.33007,32.31256],[75.33499,32.3109],[75.32404,32.30251],[75.3205,32.29739],[75.35024,32.28986],[75.34371,32.27855],[75.37148,32.27961],[75.37788,32.27354],[75.37858,32.27031],[75.38186,32.26895],[75.38069,32.26603],[75.37434,32.26589],[75.37084,32.25756],[75.3705,32.24246],[75.37419,32.24143],[75.37243,32.22605],[75.37156,32.22467],[75.3686,32.22623],[75.36584,32.22392],[75.36547,32.21994],[75.35739,32.21806],[75.34213,32.21703],[75.33671,32.21955],[75.33138,32.21958],[75.32418,32.21109],[75.31638,32.20804],[75.32012,32.20411],[75.31194,32.19938],[75.31033,32.1946],[75.31368,32.18938],[75.31844,32.18744],[75.31637,32.18105],[75.32242,32.1795],[75.31391,32.17211],[75.30678,32.16901],[75.29959,32.15659],[75.2994,32.15331],[75.28782,32.15283],[75.28535,32.15149],[75.27726,32.13697],[75.28345,32.13189],[75.27936,32.11784],[75.27187,32.1127],[75.26273,32.11185],[75.26159,32.11052],[75.26613,32.10892],[75.26645,32.10748],[75.26131,32.10138],[75.24798,32.10095],[75.24511,32.09971],[75.24028,32.09107],[75.23142,32.09161],[75.22924,32.0933],[75.23544,32.1035],[75.22696,32.10678],[75.2262,32.10341],[75.2232,32.10241],[75.2237,32.09816],[75.21773,32.10341],[75.22026,32.10773],[75.21583,32.1211],[75.20246,32.12024],[75.20568,32.10255],[75.2037,32.09927],[75.20405,32.09667],[75.19789,32.09861],[75.19677,32.08604],[75.1985,32.08267],[75.18916,32.08218],[75.17928,32.07623],[75.17424,32.06747],[75.1662,32.07154],[75.15767,32.08175],[75.14242,32.08016],[75.12291,32.08138],[75.12026,32.07857],[75.12084,32.07537],[75.11747,32.07543],[75.11315,32.07186],[75.10857,32.07162],[75.10668,32.06958],[75.10891,32.06473],[75.1049,32.05857],[75.10171,32.05945],[75.09767,32.06622],[75.09121,32.07184],[75.09022,32.06944],[75.09158,32.06583],[75.08403,32.06003],[75.07301,32.05968],[75.0689,32.06352],[75.0715,32.06558],[75.0687,32.06719],[75.06413,32.06559],[75.06801,32.06238],[75.06201,32.05527],[75.05873,32.05278],[75.05376,32.05432],[75.05056,32.05279],[75.0519,32.05142],[75.0407,32.04268],[75.03626,32.04512],[75.03391,32.05067],[75.02385,32.04767],[75.02157,32.04859],[75.01889,32.04703],[75.01787,32.04191],[75.01662,32.04291],[75.01236,32.03575],[75.00478,32.03757],[75.00277,32.04361],[75.00111,32.04116],[74.98524,32.04242],[74.9829,32.04025],[74.97159,32.04262],[74.97806,32.048],[74.97391,32.05348],[74.95284,32.06021],[74.95193,32.05833],[74.94821,32.05935],[74.94941,32.06231],[74.94809,32.06308],[74.92796,32.06646],[74.92519,32.06645],[74.91892,32.06252],[74.91756,32.05812],[74.91258,32.05635],[74.91274,32.05403],[74.90477,32.05022],[74.89158,32.05508],[74.88988,32.05521],[74.88856,32.0526],[74.87955,32.0538],[74.87547,32.05087],[74.87269,32.04404],[74.86892,32.04161],[74.87258,32.04169],[74.8764,32.03424],[74.87998,32.03204],[74.86897,32.02203],[74.86922,32.02798],[74.86557,32.03044],[74.8627,32.02953],[74.86389,32.02457],[74.86562,32.02322],[74.84835,32.02047],[74.8532,32.01356],[74.84678,32.00832],[74.83897,32.00844],[74.82887,31.99862],[74.83136,31.98085],[74.8191,31.95875],[74.81502,31.96051],[74.81094,31.95941],[74.81033,31.96235],[74.80616,31.96285],[74.80238,31.95784],[74.79479,31.95823],[74.78148,31.95571],[74.76842,31.94767],[74.75958,31.95448],[74.75559,31.95575],[74.75657,31.9437],[74.74321,31.93959],[74.7343,31.94515],[74.73088,31.94096],[74.72718,31.94256],[74.72016,31.94143],[74.71527,31.93617],[74.71405,31.93231],[74.71924,31.92369],[74.70774,31.92304],[74.70648,31.9211],[74.70071,31.92346],[74.70061,31.9258],[74.6986,31.92628],[74.6772,31.92614],[74.67432,31.91861],[74.67325,31.92093],[74.66671,31.92273],[74.66835,31.91787],[74.66633,31.91739],[74.66768,31.91652],[74.66335,31.91318],[74.66259,31.91432],[74.6604,31.91354],[74.65844,31.91028],[74.65764,31.90188],[74.6543,31.89958],[74.65089,31.90218],[74.64517,31.89425],[74.63965,31.88996],[74.63631,31.88422],[74.63257,31.88421],[74.62936,31.88212],[74.61583,31.88967],[74.60786,31.89039],[74.60736,31.882],[74.60816,31.87886],[74.61006,31.87852],[74.60663,31.86853],[74.59721,31.86738],[74.59223,31.858],[74.59071,31.84855],[74.58332,31.85189],[74.57316,31.8384],[74.57213,31.83882],[74.5707,31.83694],[74.57044,31.82812],[74.57122,31.81896],[74.57307,31.816],[74.56531,31.80852],[74.55791,31.80477],[74.56712,31.7964],[74.55561,31.79135],[74.55526,31.78617],[74.55141,31.77897],[74.55695,31.77055],[74.55489,31.76694],[74.56179,31.7633],[74.55941,31.75788],[74.54733,31.75216],[74.54743,31.74935],[74.53093,31.74779],[74.51387,31.74012],[74.50888,31.74225],[74.5037,31.74048],[74.50516,31.73999],[74.50407,31.74012],[74.50283,31.73336],[74.50307,31.72853],[74.49062,31.72378],[74.4866,31.715],[74.49932,31.70946],[74.49927,31.70748],[74.50342,31.70265],[74.5019,31.69579],[74.51756,31.6885],[74.52411,31.68698],[74.53496,31.6776],[74.5343,31.67339],[74.52943,31.66921],[74.5287,31.66661],[74.54024,31.66008],[74.5373,31.65328],[74.54105,31.64674],[74.54473,31.64839],[74.54666,31.64566],[74.54797,31.63911],[74.54634,31.63307],[74.55168,31.62361],[74.55106,31.61762],[74.55627,31.61134],[74.55532,31.60784],[74.56777,31.60679],[74.5753,31.60379],[74.57572,31.60079],[74.5785,31.59963],[74.575,31.59742],[74.5808,31.59419],[74.58202,31.58812],[74.5809,31.58727],[74.58578,31.58514],[74.58688,31.5835],[74.58552,31.5814],[74.59175,31.57687],[74.59228,31.57411],[74.60154,31.57278],[74.61106,31.56714],[74.6156,31.56898],[74.61353,31.56718],[74.60888,31.56662],[74.60679,31.56296],[74.61108,31.55896],[74.61615,31.5574],[74.61865,31.55162],[74.61445,31.55109],[74.61498,31.54423],[74.61288,31.54326],[74.61271,31.54108],[74.6143,31.5353],[74.61224,31.5306],[74.6129,31.52734],[74.60403,31.52409],[74.59596,31.52603],[74.58894,31.52163],[74.58433,31.52092],[74.58248,31.51338],[74.58016,31.51113],[74.58365,31.51027],[74.58404,31.50695],[74.58003,31.50726],[74.58713,31.50401],[74.5852,31.50082],[74.5815,31.50064],[74.58115,31.49898],[74.57521,31.50117],[74.57786,31.49856],[74.58728,31.49629],[74.59366,31.49644],[74.5947,31.50155],[74.59941,31.49985],[74.60311,31.50055],[74.60445,31.49868],[74.60977,31.49987],[74.61304,31.49622],[74.61502,31.48835],[74.61864,31.48512],[74.6223,31.4851],[74.62244,31.48191],[74.62383,31.48334],[74.62583,31.48283],[74.62518,31.48596],[74.63223,31.48665],[74.63648,31.48476],[74.63143,31.48148],[74.62929,31.48385],[74.62755,31.4769],[74.6361,31.47759],[74.63845,31.47289],[74.64767,31.4656],[74.65214,31.4573],[74.65314,31.4545],[74.65128,31.45199],[74.64222,31.44964],[74.6386,31.44438],[74.64302,31.43675],[74.65461,31.42601],[74.65191,31.42642],[74.64843,31.42393],[74.64322,31.41604],[74.63361,31.41872],[74.63138,31.42547],[74.62926,31.42585],[74.62744,31.42937],[74.62243,31.43012],[74.61926,31.42002],[74.60893,31.42366],[74.60713,31.42053],[74.60246,31.42051],[74.60141,31.41986],[74.60261,31.41576],[74.59662,31.41623],[74.59417,31.4078],[74.59058,31.401],[74.58725,31.39812],[74.58631,31.38585],[74.58348,31.37904],[74.57817,31.37614],[74.57829,31.37488],[74.57307,31.37403],[74.57161,31.37154],[74.56754,31.37195],[74.55392,31.36666],[74.55165,31.36435],[74.55006,31.35869],[74.55295,31.35605],[74.54875,31.34439],[74.54593,31.34076],[74.54886,31.33483],[74.54359,31.33507],[74.53737,31.33074],[74.53742,31.32676],[74.53386,31.32491],[74.53436,31.32196],[74.53781,31.31946],[74.5339,31.31603],[74.53534,31.31504],[74.53483,31.31347],[74.52916,31.31405],[74.52633,31.31197],[74.53415,31.30508],[74.54065,31.30596],[74.54203,31.30377],[74.53765,31.30095],[74.5312,31.28434],[74.52652,31.2768],[74.52119,31.27208],[74.5206,31.26892],[74.52392,31.26128],[74.53205,31.25234],[74.53273,31.24969],[74.52816,31.24004],[74.51918,31.2336],[74.51971,31.23185],[74.51701,31.22792],[74.5245,31.2203],[74.52362,31.21799],[74.52596,31.21177],[74.52374,31.20811],[74.52513,31.20369],[74.52152,31.20258],[74.52158,31.19678],[74.52011,31.19441],[74.52156,31.19051],[74.51952,31.18385],[74.51076,31.18116],[74.51007,31.17373],[74.51311,31.16411],[74.51099,31.15806],[74.51389,31.15595],[74.51318,31.15359],[74.51523,31.15213],[74.51379,31.13934],[74.51036,31.1319],[74.52473,31.12915],[74.54343,31.121],[74.54836,31.12193],[74.54772,31.11451],[74.54973,31.11267],[74.54907,31.10116],[74.55096,31.09679],[74.5515,31.08639],[74.55824,31.08313],[74.57127,31.08142],[74.57382,31.08576],[74.58881,31.08782],[74.58659,31.09119],[74.58909,31.09248],[74.59084,31.09246],[74.5915,31.08879],[74.60081,31.088],[74.59944,31.09306],[74.6043,31.09322],[74.60436,31.09511],[74.60736,31.09492],[74.61067,31.0993],[74.61004,31.11173],[74.60551,31.11436],[74.59649,31.12758],[74.60305,31.1336],[74.60996,31.13373],[74.61833,31.13132],[74.62188,31.13309],[74.62652,31.13107],[74.63088,31.13271],[74.63229,31.13132],[74.63101,31.12822],[74.63236,31.1215],[74.63623,31.11826],[74.64034,31.11972],[74.64842,31.12807],[74.65294,31.12943],[74.65897,31.13397],[74.66695,31.12432],[74.67319,31.12358],[74.6891,31.12802],[74.68978,31.11829],[74.69808,31.11241],[74.69725,31.1026],[74.70134,31.09726],[74.70232,31.09235],[74.69726,31.08475],[74.69064,31.08149],[74.69593,31.07416],[74.67116,31.05363],[74.65761,31.0501],[74.64588,31.04982],[74.61833,31.04394],[74.61301,31.04479],[74.5968,31.03766],[74.59591,31.04221],[74.59009,31.04995],[74.57442,31.05678],[74.57043,31.05299],[74.56823,31.05469],[74.56144,31.04865],[74.55872,31.03741],[74.55754,31.03826],[74.54797,31.03245],[74.54248,31.01737],[74.53967,31.00884],[74.54404,30.99801],[74.54326,30.99613],[74.54616,30.99242],[74.51615,30.97947],[74.50872,30.96744],[74.50347,30.96479],[74.49789,30.96433],[74.4919,30.97443],[74.48964,30.97251],[74.48136,30.97075],[74.47969,30.97428],[74.45726,30.96464],[74.46641,30.95687],[74.45147,30.95589],[74.45526,30.9514],[74.44206,30.95173],[74.44194,30.94601],[74.43954,30.94219],[74.42892,30.9425],[74.4164,30.94033],[74.41775,30.93769],[74.41387,30.92965],[74.42368,30.92956],[74.42875,30.93123],[74.42353,30.92073],[74.41034,30.92349],[74.41106,30.91964],[74.41861,30.91931],[74.42442,30.91603],[74.42272,30.90778],[74.39729,30.90939],[74.38294,30.89551],[74.37076,30.89518],[74.36591,30.89293],[74.36671,30.8857],[74.36077,30.8737],[74.38209,30.86043],[74.37792,30.85844],[74.37402,30.8598],[74.36943,30.85742],[74.36452,30.85738],[74.36852,30.85184],[74.3672,30.84913],[74.36336,30.84725],[74.35498,30.84839],[74.35407,30.8527],[74.34815,30.85491],[74.33877,30.85267],[74.34056,30.8491],[74.33239,30.85103],[74.32467,30.84956],[74.32039,30.84663],[74.32016,30.84202],[74.32206,30.83867],[74.31931,30.8329],[74.31983,30.8274],[74.31014,30.81863],[74.30246,30.80804],[74.30146,30.80381],[74.29941,30.80458],[74.29488,30.79451],[74.29829,30.79369],[74.3013,30.78975],[74.30682,30.7892],[74.30197,30.77937],[74.28982,30.77518],[74.2867,30.77588],[74.27442,30.77348],[74.26483,30.77709],[74.26017,30.7731],[74.26077,30.76986],[74.27369,30.75346],[74.27448,30.74427],[74.28646,30.7357],[74.28153,30.73089],[74.27483,30.73712],[74.27125,30.73221],[74.26844,30.7344],[74.26912,30.73032],[74.26697,30.72622],[74.2609,30.72311],[74.24841,30.72597],[74.24202,30.72601],[74.2454,30.72452],[74.24527,30.72295],[74.23266,30.72456],[74.22734,30.71883],[74.22762,30.71287],[74.22532,30.71309],[74.22346,30.70994],[74.21924,30.69361],[74.21206,30.68776],[74.20532,30.6761],[74.19797,30.67079],[74.19332,30.66517],[74.18182,30.66151],[74.1774,30.6552],[74.16937,30.64873],[74.16336,30.64842],[74.15954,30.64172],[74.15608,30.64076],[74.15323,30.63505],[74.14782,30.63106],[74.1377,30.62748],[74.12736,30.6348],[74.12861,30.63232],[74.12686,30.62414],[74.12129,30.6226],[74.11807,30.60791],[74.10511,30.61927],[74.09604,30.61161],[74.10195,30.6111],[74.10227,30.60963],[74.1015,30.60333],[74.09531,30.60121],[74.09872,30.59059],[74.09657,30.58724],[74.10213,30.57923],[74.07342,30.55468],[74.07999,30.54847],[74.09095,30.54942],[74.08135,30.53347],[74.07228,30.52291],[74.06353,30.51923],[74.05731,30.51869],[74.05157,30.52768],[74.05001,30.53716],[74.04778,30.53958],[74.03922,30.54262],[74.03796,30.53161],[74.03101,30.52693],[74.02384,30.52607],[74.01203,30.53359],[74.01108,30.5211],[74.01999,30.51417],[73.99269,30.51426],[73.98199,30.50402],[73.97594,30.49412],[73.96366,30.48485],[73.96962,30.4783],[73.96971,30.47528],[73.96413,30.45648],[73.95013,30.46008],[73.94688,30.4639],[73.94753,30.46828],[73.94583,30.46827],[73.94772,30.4839],[73.93445,30.49028],[73.93104,30.4762],[73.93174,30.4672],[73.92775,30.4659],[73.93754,30.45223],[73.9373,30.44507],[73.92626,30.43893],[73.93684,30.43645],[73.94884,30.43694],[73.9601,30.44087],[73.96802,30.44015],[73.97185,30.44411],[73.97379,30.44382],[73.96628,30.43258],[73.9647,30.42456],[73.94865,30.41675],[73.93671,30.40216],[73.92221,30.39809],[73.91957,30.39563],[73.91414,30.38271],[73.90079,30.3731],[73.88405,30.367],[73.87978,30.35972],[73.90265,30.34908],[73.91451,30.33495],[73.93087,30.32007],[73.93997,30.30054],[73.95977,30.27018],[73.96394,30.25722],[73.96423,30.24838],[73.97433,30.18911],[73.97284,30.17742],[73.96833,30.16867],[73.96814,30.14484],[73.97082,30.12541],[73.97565,30.12099],[73.96763,30.11929],[73.95217,30.10434],[73.94952,30.09614],[73.92989,30.06875],[73.90405,30.05012],[73.89362,30.02189],[73.88653,30.01249],[73.88622,29.99603],[73.89539,29.98221],[73.89512,29.97408],[74.13658,29.9654],[74.52716,29.94294],[74.53157,29.94967],[74.54133,29.94078],[74.56068,29.9295],[74.55903,29.92728],[74.57197,29.92747],[74.57988,29.92567],[74.5897,29.91698],[74.59726,29.91277],[74.63032,29.90504],[74.64176,29.90454],[74.65436,29.90574],[74.64958,29.90754],[74.64675,29.91128],[74.64816,29.91971],[74.65169,29.9266],[74.67032,29.93964],[74.68215,29.94349],[74.69438,29.96784],[74.70018,29.97272],[74.70207,29.97162],[74.70687,29.97699],[74.70683,29.97054],[74.73099,29.96146],[74.73898,29.9679],[74.75316,29.96731],[74.75395,29.96964],[74.75833,29.97004],[74.75856,29.97244],[74.76128,29.97331],[74.77108,29.97172],[74.77535,29.97334],[74.77845,29.97167],[74.80607,29.99205],[74.81298,29.99235],[74.82111,29.98922],[74.82433,29.98577],[74.82636,29.97722],[74.82106,29.97103],[74.8285,29.97333],[74.83848,29.97115],[74.84348,29.9646],[74.85059,29.96197],[74.85542,29.95649],[74.86477,29.96016],[74.87057,29.95998],[74.87579,29.95761],[74.88796,29.96672],[74.90298,29.95348],[74.90073,29.94546],[74.89554,29.94073],[74.8972,29.93969],[74.90705,29.9406],[74.91294,29.94344],[74.91901,29.94707],[74.9229,29.95211],[74.92671,29.95049],[74.92698,29.94586],[74.93582,29.93068],[74.9364,29.92645],[74.94174,29.91766],[74.94419,29.91609],[74.94802,29.90723],[74.9529,29.90188],[74.97886,29.89431],[74.97721,29.88834],[74.99099,29.86782],[74.99813,29.86623],[75.00526,29.86895],[75.02255,29.86625],[75.03293,29.87981],[75.04699,29.88507],[75.05187,29.88407],[75.05613,29.87809],[75.06529,29.87879],[75.06999,29.87705],[75.07449,29.88225],[75.07607,29.89085],[75.07533,29.89634],[75.08049,29.9008],[75.08644,29.91655],[75.0888,29.91719],[75.09878,29.91278],[75.09904,29.91108],[75.10733,29.90405],[75.1093,29.90409],[75.11043,29.89271],[75.11474,29.87865],[75.10686,29.868],[75.09341,29.85797],[75.08976,29.85863],[75.09176,29.85171],[75.10316,29.84175],[75.11139,29.84191],[75.11889,29.83195],[75.10154,29.82155],[75.10034,29.8194],[75.10076,29.80678],[75.1045,29.8048],[75.11826,29.8027],[75.12668,29.80688],[75.13511,29.80729],[75.13686,29.80595],[75.14055,29.78558],[75.14649,29.78182],[75.15099,29.77552],[75.1555,29.77688],[75.16299,29.78089],[75.16692,29.78517],[75.16665,29.78821],[75.1591,29.80133],[75.16065,29.80637],[75.16023,29.81284],[75.16407,29.82409],[75.17007,29.82818],[75.17593,29.82808],[75.19149,29.84124],[75.19652,29.83776],[75.21068,29.8324],[75.21402,29.82398],[75.20968,29.81734],[75.20854,29.79267],[75.21448,29.79151],[75.21629,29.78771],[75.22631,29.78913],[75.22475,29.77989],[75.23662,29.757],[75.24161,29.75464],[75.23818,29.73995],[75.22635,29.72887],[75.21749,29.73714],[75.21034,29.73881],[75.20064,29.72648],[75.19689,29.7157],[75.1978,29.70325],[75.20026,29.70106],[75.2078,29.70121],[75.2068,29.68751],[75.19882,29.68],[75.18815,29.68134],[75.18731,29.67593],[75.18395,29.67334],[75.1796,29.67451],[75.17715,29.67063],[75.16757,29.67018],[75.16813,29.66655],[75.17466,29.6556],[75.18004,29.65286],[75.18763,29.65179],[75.18222,29.63596],[75.18307,29.6284],[75.19685,29.61932],[75.20677,29.6219],[75.21971,29.61542],[75.22149,29.61111],[75.2284,29.60543],[75.23378,29.60237],[75.23538,29.60307],[75.22744,29.58721],[75.22173,29.58028],[75.22682,29.57901],[75.23196,29.57479],[75.23443,29.57],[75.23382,29.56432],[75.23841,29.55886],[75.23911,29.55072],[75.23537,29.54207],[75.24449,29.54669],[75.27327,29.54999],[75.28038,29.55397],[75.28117,29.56146],[75.29831,29.55859],[75.30948,29.56083],[75.3113,29.58014],[75.31994,29.58741],[75.31658,29.59038],[75.31402,29.58925],[75.30564,29.59567],[75.30346,29.60258],[75.2897,29.60781],[75.29492,29.61571],[75.29574,29.62503],[75.3073,29.62477],[75.31117,29.62949],[75.31659,29.63062],[75.32349,29.64247],[75.32102,29.64726],[75.32226,29.65161],[75.33187,29.66318],[75.33377,29.67347],[75.34106,29.67525],[75.34866,29.66658],[75.3581,29.66075],[75.36017,29.6626],[75.35984,29.66813],[75.35426,29.67489],[75.35369,29.67959],[75.34892,29.68628],[75.34573,29.696],[75.35145,29.69606],[75.35861,29.69975],[75.35792,29.70439],[75.35908,29.7055],[75.36465,29.70392],[75.37082,29.70446],[75.36988,29.71086],[75.373,29.71326],[75.37636,29.71408],[75.37865,29.71287],[75.38023,29.71421],[75.38402,29.7122],[75.39214,29.71316],[75.38925,29.71613],[75.39114,29.71698],[75.39075,29.71903],[75.39347,29.72198],[75.38816,29.72798],[75.38819,29.72988],[75.39136,29.73279],[75.39548,29.73356],[75.39645,29.73946],[75.40133,29.7402],[75.40478,29.73899],[75.40632,29.76125],[75.41396,29.76999],[75.41938,29.77021],[75.42142,29.77508],[75.42172,29.77301],[75.42748,29.77085],[75.43837,29.78003],[75.44757,29.7838],[75.45121,29.78144],[75.45398,29.782],[75.45586,29.78428],[75.45605,29.79047],[75.45818,29.79475],[75.45288,29.80184],[75.45519,29.8057],[75.45954,29.80751],[75.46228,29.8073],[75.4796,29.79278],[75.48555,29.79152],[75.49217,29.78577],[75.49729,29.78439],[75.50277,29.77788],[75.5186,29.77582],[75.52327,29.76915],[75.52196,29.75983],[75.52304,29.7584],[75.52492,29.76185],[75.52866,29.76316],[75.5327,29.77062],[75.53796,29.77333],[75.5407,29.77358],[75.54489,29.77079],[75.56212,29.77022],[75.56975,29.75679],[75.57214,29.74335],[75.57998,29.73909],[75.58899,29.74688],[75.60096,29.74946],[75.60527,29.75195],[75.60688,29.74893],[75.61676,29.74408],[75.62057,29.74674],[75.62745,29.74836],[75.63449,29.75528],[75.63518,29.77229],[75.63778,29.77389],[75.64026,29.7725],[75.64246,29.77509],[75.65011,29.77569],[75.65598,29.77376],[75.66098,29.77683],[75.66408,29.77521],[75.66808,29.7774],[75.67717,29.77658],[75.68171,29.77227],[75.68267,29.76694],[75.69136,29.75592],[75.70315,29.75228],[75.70645,29.7532],[75.70925,29.75653],[75.70575,29.75968],[75.70467,29.76362],[75.70739,29.76928],[75.71031,29.7706],[75.71238,29.77406],[75.70981,29.77798],[75.71013,29.78041],[75.71665,29.78872],[75.71275,29.79264],[75.7146,29.79598],[75.71417,29.80185],[75.71798,29.803],[75.71807,29.80865],[75.72097,29.80992],[75.72068,29.81354],[75.7326,29.81252],[75.73782,29.81404],[75.74689,29.80732],[75.75063,29.8076],[75.75617,29.805],[75.77883,29.82234],[75.78297,29.8208],[75.78707,29.81606],[75.78879,29.8111],[75.80565,29.80472],[75.80988,29.80563],[75.81583,29.80416],[75.82243,29.80779],[75.82585,29.81451],[75.8303,29.81178],[75.83484,29.81446],[75.83776,29.81302],[75.83493,29.8088],[75.83799,29.7971],[75.83701,29.79425],[75.84049,29.78865],[75.84368,29.78983],[75.84583,29.78227],[75.85291,29.77804],[75.85356,29.77638],[75.85141,29.7727],[75.85832,29.7708],[75.85971,29.768],[75.86674,29.76653],[75.87036,29.75754],[75.86925,29.75197],[75.87025,29.7493],[75.88238,29.751],[75.88595,29.74538],[75.89884,29.74624],[75.9008,29.74888],[75.90448,29.74892],[75.9027,29.75162],[75.90631,29.75333],[75.91461,29.74796],[75.91497,29.74302],[75.91944,29.74133],[75.92239,29.73766],[75.93869,29.73066],[75.94113,29.73154],[75.94734,29.72938],[75.95073,29.73193],[75.95485,29.73193],[75.96757,29.72941],[75.97346,29.7304],[75.97535,29.72864],[75.98442,29.72711],[75.98889,29.73393],[75.9949,29.73926],[75.99897,29.74102],[76.00711,29.74074],[76.01677,29.743],[76.01938,29.74767],[76.02406,29.74898],[76.02611,29.75615],[76.03068,29.75472],[76.03088,29.74765],[76.03474,29.74453],[76.04385,29.74268],[76.04963,29.7481],[76.04949,29.75186],[76.0544,29.75772],[76.05682,29.76536],[76.06024,29.76464],[76.0671,29.77397],[76.07255,29.77858],[76.07678,29.77488],[76.08265,29.78116],[76.08472,29.78452],[76.08296,29.78796],[76.085,29.80073],[76.08953,29.80113],[76.09808,29.81061],[76.10509,29.81183],[76.11585,29.80231],[76.12001,29.80087],[76.11967,29.79228],[76.12395,29.79091],[76.13323,29.80445],[76.14173,29.81083],[76.14162,29.81546],[76.14549,29.81908],[76.15326,29.82003],[76.16449,29.81761],[76.17374,29.81791],[76.18487,29.82272],[76.19782,29.84476],[76.20269,29.84301],[76.21201,29.84301],[76.22055,29.83784],[76.22062,29.8467],[76.22223,29.84873],[76.22725,29.85177],[76.23047,29.85148],[76.23246,29.8537],[76.23816,29.85199],[76.24382,29.85241],[76.24387,29.86893],[76.24676,29.87595],[76.23829,29.87869],[76.2294,29.88563],[76.22682,29.88634],[76.22626,29.88379],[76.22232,29.88495],[76.2213,29.88336],[76.2174,29.88404],[76.21295,29.88704],[76.21084,29.89131],[76.20868,29.88738],[76.20977,29.88589],[76.20114,29.88382],[76.19943,29.88451],[76.19984,29.88841],[76.19346,29.88562],[76.18974,29.8904],[76.18633,29.89083],[76.18566,29.89244],[76.1893,29.90867],[76.18781,29.92063],[76.18528,29.92049],[76.1814,29.92362],[76.17918,29.92264],[76.17549,29.92383],[76.17197,29.92627],[76.17252,29.92882],[76.17814,29.93337],[76.17818,29.94207],[76.18376,29.9483],[76.19114,29.94882],[76.20352,29.94425],[76.21018,29.93961],[76.21312,29.94509],[76.21274,29.94709],[76.2053,29.96158],[76.20108,29.96724],[76.19809,29.96826],[76.20573,29.9743],[76.20477,29.97691],[76.20592,29.98037],[76.20184,29.98475],[76.20241,29.98932],[76.20806,29.98605],[76.21074,29.98815],[76.20653,29.99345],[76.21148,29.99545],[76.20926,30.00406],[76.21599,30.00706],[76.22556,30.00769],[76.23199,30.01521],[76.21317,30.0221],[76.21396,30.03172],[76.22003,30.03411],[76.22241,30.03669],[76.22181,30.04807],[76.22832,30.05285],[76.22623,30.05866],[76.23672,30.0679],[76.2467,30.08213],[76.24784,30.08106],[76.24929,30.08231],[76.24827,30.08482],[76.24967,30.08691],[76.25354,30.0894],[76.26015,30.08741],[76.2653,30.09878],[76.25249,30.10264],[76.25165,30.10444],[76.25318,30.10608],[76.25173,30.1075],[76.24893,30.10383],[76.24211,30.10051],[76.23689,30.10387],[76.23832,30.10561],[76.23634,30.10657],[76.2344,30.105],[76.22982,30.10669],[76.2238,30.11162],[76.21677,30.11001],[76.21629,30.1128],[76.22028,30.11527],[76.21709,30.12281],[76.21107,30.12056],[76.19638,30.12345],[76.19695,30.13246],[76.20244,30.13605],[76.20474,30.13307],[76.20804,30.13402],[76.21593,30.12374],[76.22428,30.12708],[76.21516,30.13489],[76.21519,30.13959],[76.20773,30.14427],[76.20767,30.15699],[76.2146,30.15617],[76.21469,30.1532],[76.21629,30.15293],[76.21649,30.15023],[76.21901,30.1477],[76.22434,30.14696],[76.22688,30.14454],[76.23438,30.14493],[76.23252,30.13975],[76.24322,30.13239],[76.24227,30.12938],[76.24401,30.12819],[76.24694,30.13054],[76.25565,30.12605],[76.25548,30.12372],[76.25311,30.12308],[76.25369,30.12157],[76.26778,30.11442],[76.27518,30.11459],[76.27855,30.11027],[76.28534,30.10618],[76.29063,30.10774],[76.2966,30.1144],[76.30757,30.10872],[76.31955,30.09707],[76.3193,30.09577],[76.32176,30.09506],[76.33119,30.09966],[76.33991,30.0987],[76.34415,30.10082],[76.34473,30.10477],[76.34626,30.10388],[76.34615,30.10618],[76.35443,30.11687],[76.36023,30.12017],[76.35217,30.12178],[76.34206,30.12634],[76.33351,30.13817],[76.33395,30.14199],[76.33781,30.14327],[76.34688,30.14277],[76.34749,30.1453],[76.35049,30.14683],[76.35306,30.14301],[76.35929,30.13974],[76.36132,30.12973],[76.36695,30.12418],[76.36076,30.12255],[76.3622,30.12012],[76.36791,30.1176],[76.38888,30.11323],[76.40006,30.11667],[76.39845,30.12057],[76.39486,30.12198],[76.39598,30.12612],[76.39111,30.1348],[76.39765,30.14017],[76.4009,30.13889],[76.40684,30.14491],[76.41009,30.14504],[76.40178,30.15379],[76.39503,30.15797],[76.3914,30.16432],[76.39349,30.16694],[76.38718,30.17059],[76.39636,30.17958],[76.40298,30.18211],[76.40362,30.18666],[76.40641,30.19034],[76.42274,30.19224],[76.43433,30.18311],[76.43382,30.18071],[76.43039,30.17797],[76.43492,30.17549],[76.44058,30.16584],[76.43652,30.15595],[76.43349,30.15584],[76.42859,30.15055],[76.43224,30.14695],[76.43977,30.14367],[76.4377,30.14222],[76.43749,30.13623],[76.44053,30.13142],[76.4439,30.13046],[76.45088,30.13216],[76.45557,30.13042],[76.45803,30.13183],[76.45801,30.1302],[76.45998,30.12944],[76.45633,30.11543],[76.45712,30.11014],[76.46255,30.10102],[76.47276,30.09767],[76.48206,30.09753],[76.49129,30.09462],[76.49798,30.09449],[76.50208,30.09192],[76.51037,30.08231],[76.50871,30.07895],[76.50828,30.07031],[76.52248,30.07411],[76.52685,30.07696],[76.53528,30.0731],[76.54376,30.07427],[76.54596,30.0764],[76.54565,30.07932],[76.55,30.07885],[76.55638,30.08251],[76.56055,30.09338],[76.5727,30.09906],[76.58655,30.11072],[76.59895,30.11209],[76.60307,30.1186],[76.61279,30.12672],[76.62353,30.14019],[76.63272,30.14183],[76.6353,30.14664],[76.64374,30.15021],[76.63931,30.15263],[76.63272,30.16936],[76.62893,30.16889],[76.62373,30.17503],[76.6234,30.18017],[76.60731,30.19178],[76.61099,30.19634],[76.6101,30.19847],[76.61419,30.20443],[76.61854,30.20055],[76.6303,30.19853],[76.63944,30.19437],[76.6456,30.18807],[76.6355,30.18454],[76.63828,30.1781],[76.63543,30.16998],[76.64187,30.171],[76.64604,30.17639],[76.64803,30.17542],[76.65165,30.17753],[76.65404,30.18397],[76.65713,30.18712],[76.65064,30.19314],[76.65426,30.20347],[76.63932,30.20878],[76.63575,30.20683],[76.62171,30.20764],[76.61553,30.21168],[76.61484,30.21353],[76.6164,30.21632],[76.62332,30.21982],[76.62751,30.22719],[76.62326,30.23142],[76.60293,30.24133],[76.60599,30.24567],[76.6061,30.24835],[76.60371,30.25188],[76.59633,30.25521],[76.59155,30.25576],[76.59066,30.25341],[76.5879,30.25396],[76.58111,30.24657],[76.56786,30.23809],[76.56621,30.23531],[76.56377,30.2353],[76.56075,30.22892],[76.54856,30.22514],[76.54567,30.22555],[76.54311,30.22839],[76.54523,30.23001],[76.55345,30.22996],[76.56005,30.24519],[76.55736,30.25341],[76.55668,30.26244],[76.55959,30.26484],[76.56203,30.26195],[76.57193,30.26524],[76.57514,30.26188],[76.58063,30.2652],[76.58382,30.27022],[76.58649,30.26854],[76.58802,30.26483],[76.59292,30.26174],[76.60113,30.27032],[76.6087,30.2679],[76.60973,30.27039],[76.61163,30.26953],[76.61441,30.2725],[76.62053,30.26495],[76.62343,30.26455],[76.62723,30.26938],[76.6256,30.2712],[76.63144,30.27609],[76.63036,30.27738],[76.63216,30.28385],[76.63542,30.28959],[76.63887,30.28439],[76.65002,30.29067],[76.65568,30.29839],[76.65955,30.29989],[76.66543,30.3059],[76.66768,30.30284],[76.67486,30.29935],[76.68079,30.30313],[76.67804,30.30583],[76.68647,30.31426],[76.68558,30.31755],[76.68209,30.31979],[76.68859,30.32727],[76.69563,30.32157],[76.70005,30.32805],[76.70487,30.32588],[76.71102,30.3258],[76.71639,30.33602],[76.72229,30.33324],[76.72975,30.33882],[76.72737,30.34106],[76.73262,30.34832],[76.73847,30.34632],[76.74609,30.34953],[76.74522,30.35049],[76.75113,30.3553],[76.74892,30.35699],[76.74929,30.3618],[76.74541,30.36783],[76.73755,30.37042],[76.73524,30.36785],[76.73339,30.36883],[76.72571,30.36185],[76.71991,30.36333],[76.71871,30.36658],[76.73124,30.37966],[76.7296,30.38226],[76.71949,30.37877],[76.71761,30.38004],[76.71864,30.38248],[76.71285,30.3902],[76.71511,30.39745],[76.71455,30.40244],[76.72221,30.399],[76.72515,30.40218],[76.72822,30.40036],[76.73799,30.40835],[76.74011,30.41208],[76.73504,30.41908],[76.74105,30.42424],[76.74105,30.42622],[76.75,30.42983],[76.75793,30.42982],[76.76556,30.43249],[76.77429,30.44328],[76.7811,30.43992],[76.78487,30.43535],[76.77728,30.43105],[76.77433,30.4264],[76.78704,30.41621],[76.79022,30.41455],[76.79514,30.41866],[76.80177,30.41367],[76.80926,30.41764],[76.81647,30.41334],[76.82183,30.41268],[76.82748,30.41607],[76.83824,30.42762],[76.83623,30.42961],[76.83775,30.43156],[76.84374,30.43736],[76.84679,30.43808],[76.85103,30.43525],[76.85002,30.43347],[76.85439,30.42548],[76.8542,30.4212],[76.85613,30.41765],[76.8683,30.41394],[76.87444,30.40947],[76.88336,30.40865],[76.88089,30.40612],[76.88434,30.40428],[76.88213,30.40082],[76.88394,30.39768],[76.8807,30.3939],[76.88335,30.39208],[76.88623,30.39404],[76.8951,30.38694],[76.89507,30.38471],[76.89796,30.3821],[76.89137,30.37377],[76.89029,30.36943],[76.89826,30.35882],[76.90271,30.36195],[76.90678,30.36139],[76.91686,30.36491],[76.92262,30.3746],[76.9349,30.38188],[76.93868,30.38609],[76.94146,30.39535],[76.93315,30.40155],[76.92273,30.40107],[76.91972,30.39866],[76.91235,30.40063],[76.91936,30.40741],[76.91805,30.40837],[76.91915,30.40924],[76.9171,30.41599],[76.91237,30.42051],[76.91649,30.42623],[76.90638,30.43357],[76.91229,30.44291],[76.90505,30.43407],[76.89755,30.4371],[76.90274,30.44408],[76.90487,30.44323],[76.90537,30.44493],[76.89956,30.44865],[76.91381,30.46767],[76.91218,30.47376],[76.89804,30.48376],[76.89896,30.48879],[76.90362,30.49139],[76.90871,30.49188],[76.91078,30.49428],[76.91893,30.48944],[76.93117,30.50036],[76.92859,30.50755],[76.92924,30.51709],[76.93202,30.52219],[76.92149,30.52619],[76.9156,30.52571],[76.91224,30.53038],[76.91249,30.53395],[76.90622,30.53712],[76.90215,30.53644],[76.89607,30.53812],[76.88816,30.54589],[76.8865,30.54983],[76.88718,30.55103],[76.89395,30.54864],[76.90494,30.54295],[76.91616,30.55366],[76.91754,30.55911],[76.91533,30.56192],[76.90897,30.56469],[76.91772,30.57601],[76.91494,30.5784],[76.91514,30.58218],[76.9198,30.58516],[76.90966,30.59188],[76.92022,30.59323],[76.92717,30.60361],[76.92234,30.60559],[76.92601,30.61006],[76.9199,30.61176],[76.916,30.60989],[76.91352,30.61141],[76.91184,30.61303],[76.9133,30.61397],[76.91307,30.61686],[76.91008,30.62615],[76.90278,30.62437],[76.89972,30.62814],[76.89555,30.62892],[76.89281,30.63104],[76.89595,30.63305],[76.89646,30.63583],[76.88512,30.64528],[76.87758,30.64415],[76.8748,30.64085],[76.87122,30.64212],[76.87426,30.67391],[76.87645,30.68051],[76.86831,30.67346],[76.85922,30.661],[76.84986,30.65684],[76.84882,30.65787],[76.84686,30.65666],[76.84496,30.65902],[76.84469,30.66239],[76.84809,30.66591],[76.84579,30.66864],[76.83257,30.66312],[76.8313,30.6654],[76.83204,30.67095],[76.83002,30.67586],[76.83129,30.67903],[76.82745,30.68213],[76.82105,30.67768],[76.82092,30.67489],[76.8165,30.67138],[76.80746,30.667],[76.80259,30.66649],[76.80047,30.6702],[76.79672,30.66751],[76.78995,30.6756],[76.78145,30.67427],[76.77687,30.67035],[76.76431,30.68636],[76.75276,30.68449],[76.75026,30.68831],[76.74777,30.68754],[76.74717,30.6955],[76.73932,30.69286],[76.73962,30.69806],[76.7379,30.69981],[76.73936,30.70033],[76.7391,30.70575],[76.73003,30.70683],[76.72909,30.71177],[76.73137,30.71258],[76.72855,30.71578],[76.73121,30.71741],[76.7311,30.72356],[76.72127,30.72997],[76.71419,30.74093],[76.70747,30.73945],[76.70518,30.74292],[76.70664,30.74465],[76.7059,30.7474],[76.70794,30.74973],[76.70533,30.75602],[76.71076,30.76098],[76.71392,30.76309],[76.7207,30.76316],[76.72568,30.76642],[76.73135,30.76489],[76.74375,30.76985],[76.7455,30.77227],[76.74331,30.77592],[76.75234,30.78025],[76.75171,30.78424],[76.75924,30.78819],[76.76172,30.79147],[76.77151,30.79521],[76.77556,30.79051],[76.78278,30.78917],[76.7873,30.77895],[76.77959,30.77769],[76.78348,30.77057],[76.79047,30.77071],[76.79169,30.76871],[76.79834,30.77111],[76.80213,30.77557],[76.80917,30.77936],[76.81352,30.78017],[76.81544,30.77801],[76.81865,30.77791],[76.81812,30.77544],[76.81957,30.77365],[76.81812,30.77129],[76.80537,30.76497],[76.81561,30.75271],[76.81768,30.75409],[76.82011,30.76085],[76.82421,30.76096],[76.82635,30.7633],[76.83745,30.75415],[76.84015,30.75889],[76.83897,30.7659],[76.84028,30.77062],[76.84257,30.7715],[76.84178,30.77446],[76.85437,30.78726],[76.8507,30.7911],[76.85268,30.79349],[76.85699,30.79475],[76.85417,30.79919],[76.84688,30.80368],[76.84533,30.80719],[76.84884,30.81414],[76.84815,30.82868],[76.84584,30.83156],[76.8467,30.83391],[76.84344,30.83596],[76.83742,30.8361],[76.82982,30.83907],[76.82614,30.84076],[76.82297,30.84477],[76.814,30.84299],[76.81316,30.84818],[76.81467,30.85244],[76.80472,30.86059],[76.80179,30.86584],[76.79074,30.87031],[76.78413,30.87826],[76.77771,30.89555],[76.77665,30.9053],[76.77126,30.90769],[76.77222,30.91006],[76.76666,30.91709],[76.76633,30.92107],[76.76019,30.92293],[76.75985,30.92633],[76.75652,30.92815],[76.7485,30.92673],[76.74696,30.93014],[76.73943,30.93379],[76.73978,30.93618],[76.73658,30.93837],[76.73772,30.94044],[76.73617,30.94711],[76.73714,30.94961],[76.73371,30.94934],[76.72234,30.9615],[76.71722,30.96011],[76.71176,30.96461],[76.70812,30.97048],[76.70588,30.96962],[76.70055,30.97098],[76.68395,30.96786],[76.67386,30.96871],[76.67312,30.97438],[76.66441,30.98175],[76.66149,30.98074],[76.65162,30.98783],[76.63848,30.99014],[76.63373,30.99605],[76.62501,30.99864],[76.62647,31.02113],[76.62692,31.02308],[76.62905,31.02362],[76.62295,31.0258],[76.61677,31.03048],[76.61608,31.03651],[76.61097,31.04583],[76.62295,31.05457],[76.61721,31.0676],[76.61658,31.07771],[76.62315,31.07963],[76.62537,31.09077],[76.6322,31.09781],[76.63191,31.09997],[76.63741,31.10313],[76.63858,31.108],[76.63623,31.11649],[76.63328,31.11554],[76.63102,31.11691],[76.62498,31.11516],[76.62384,31.11639],[76.61662,31.11607],[76.61323,31.1223],[76.602,31.12354],[76.60089,31.12838],[76.605,31.13079],[76.60405,31.13337],[76.61041,31.14059],[76.60912,31.14321],[76.6123,31.14803],[76.60993,31.14957],[76.60746,31.14869],[76.60605,31.15169],[76.60233,31.15297],[76.60526,31.16017],[76.6031,31.16473],[76.6076,31.17065],[76.60553,31.17239],[76.60715,31.17425],[76.60491,31.17674],[76.60321,31.17505],[76.59857,31.17454],[76.59682,31.17799],[76.60978,31.18097],[76.61346,31.18413],[76.61488,31.18964],[76.61779,31.19286],[76.63536,31.20195],[76.64542,31.20906],[76.64254,31.21427],[76.63456,31.2178],[76.63686,31.21761],[76.63711,31.22066],[76.64167,31.22302],[76.63536,31.22438],[76.63154,31.22359],[76.62765,31.22622],[76.61296,31.21737],[76.60635,31.21661],[76.60353,31.21436],[76.60102,31.2148],[76.60082,31.21259],[76.59257,31.21126],[76.59268,31.21476],[76.59057,31.21453],[76.59237,31.2175],[76.58901,31.21929],[76.58854,31.22295],[76.59161,31.22295],[76.59279,31.22583],[76.59522,31.22686],[76.59471,31.23424],[76.59834,31.23955],[76.61029,31.24381],[76.6119,31.24912],[76.60108,31.25909],[76.59627,31.26116],[76.59184,31.26593],[76.59235,31.26836],[76.58775,31.2742],[76.58351,31.27615],[76.57915,31.27111],[76.57515,31.27023],[76.5713,31.26617],[76.57196,31.26479],[76.56954,31.26141],[76.56546,31.26179],[76.56002,31.25276],[76.55648,31.2524],[76.55284,31.25512],[76.54921,31.25275],[76.54427,31.25617],[76.54361,31.2589],[76.54847,31.26606],[76.54747,31.26727],[76.55021,31.26987],[76.54883,31.27427],[76.5513,31.27875],[76.54293,31.28243],[76.54109,31.27496],[76.53773,31.27055],[76.53998,31.26626],[76.53934,31.26105],[76.53143,31.25639],[76.5238,31.25814],[76.52393,31.26228],[76.5289,31.26565],[76.52859,31.2681],[76.53055,31.27105],[76.52899,31.27083],[76.52971,31.27226],[76.52794,31.27343],[76.52743,31.27717],[76.52165,31.28033],[76.5064,31.26772],[76.50391,31.26688],[76.50095,31.27003],[76.49757,31.26986],[76.49491,31.28082],[76.49672,31.28534],[76.49421,31.28905],[76.49089,31.28825],[76.49102,31.29423],[76.48801,31.29674],[76.48517,31.3045],[76.47913,31.30867],[76.47437,31.30235],[76.4635,31.29412],[76.45955,31.28892],[76.45937,31.28623],[76.44272,31.27728],[76.4413,31.27922],[76.43999,31.27872],[76.44037,31.28789],[76.45722,31.29513],[76.46281,31.29878],[76.46349,31.30195],[76.45431,31.31228],[76.44685,31.31698],[76.44322,31.31753],[76.43754,31.32221],[76.43587,31.32637],[76.43233,31.32656],[76.4252,31.33958],[76.42679,31.34486],[76.42409,31.34931],[76.41956,31.3493],[76.40726,31.36728],[76.40757,31.37078],[76.40368,31.37828],[76.40061,31.37957],[76.39271,31.38906],[76.39345,31.39119],[76.39812,31.39377],[76.40328,31.39239],[76.40326,31.39668],[76.39956,31.39975],[76.39708,31.40792],[76.38755,31.40944],[76.38964,31.41677],[76.38284,31.42363],[76.38392,31.4259],[76.37967,31.42826],[76.3796,31.43331],[76.37475,31.43819],[76.37037,31.43007],[76.37252,31.42499],[76.3713,31.42017],[76.37303,31.41734],[76.37045,31.41729],[76.37223,31.41397],[76.37173,31.40946],[76.36726,31.40437],[76.35834,31.40355],[76.35228,31.39831],[76.34733,31.39816],[76.34587,31.40308],[76.34293,31.40254],[76.34295,31.39862],[76.34205,31.40139],[76.33109,31.40163],[76.33046,31.38726],[76.33174,31.38728],[76.33168,31.38407],[76.32976,31.37905],[76.34161,31.37878],[76.34049,31.36336],[76.34292,31.36345],[76.34228,31.35496],[76.34622,31.35486],[76.34712,31.34895],[76.35354,31.34786],[76.35316,31.34496],[76.35148,31.34524],[76.35161,31.34658],[76.34753,31.34667],[76.34687,31.34319],[76.34503,31.34305],[76.34391,31.3402],[76.3375,31.33983],[76.3356,31.34949],[76.33021,31.3481],[76.33146,31.34642],[76.30765,31.34235],[76.31352,31.32914],[76.32238,31.32161],[76.31057,31.31916],[76.31079,31.31795],[76.30391,31.31358],[76.29043,31.30918],[76.28924,31.30622],[76.28691,31.30735],[76.27555,31.3004],[76.27081,31.30237],[76.26934,31.31192],[76.26481,31.31],[76.25671,31.31034],[76.25099,31.30767],[76.23914,31.30885],[76.21397,31.29939],[76.19099,31.29999],[76.1863,31.30209],[76.18432,31.30565],[76.17982,31.30653],[76.18138,31.33365],[76.17882,31.34047],[76.1761,31.34197],[76.159,31.34369],[76.15769,31.34706],[76.15331,31.34954],[76.15212,31.35272],[76.14936,31.35326],[76.14898,31.35742],[76.14689,31.35898],[76.14863,31.36093],[76.1473,31.36463],[76.14728,31.3803],[76.15402,31.3829],[76.16857,31.39625],[76.16979,31.39895],[76.16654,31.40575],[76.16831,31.41044],[76.16013,31.41539],[76.16254,31.42117],[76.15672,31.43076],[76.15231,31.43362],[76.14532,31.43413],[76.14495,31.43679],[76.14043,31.44158],[76.13899,31.4487],[76.13313,31.45189],[76.13545,31.45867],[76.13468,31.46141],[76.13028,31.46505],[76.13069,31.47104],[76.12871,31.47178],[76.1277,31.47453],[76.12165,31.47732],[76.1209,31.48015],[76.11705,31.48301],[76.12075,31.4893],[76.11916,31.49316],[76.12069,31.49766],[76.11295,31.50012],[76.11003,31.50687],[76.10644,31.51004],[76.10369,31.52058],[76.1019,31.52239],[76.10266,31.52506],[76.09807,31.53265],[76.09942,31.53504],[76.09861,31.53725],[76.09218,31.54071],[76.0919,31.54415],[76.08966,31.5451],[76.08923,31.54762],[76.08515,31.54852],[76.08196,31.55186],[76.07738,31.56076],[76.07331,31.56393],[76.07252,31.56974],[76.06668,31.57322],[76.06456,31.57963],[76.05971,31.58132],[76.05629,31.58533],[76.05802,31.58885],[76.05378,31.59322],[76.05881,31.59594],[76.05752,31.59746],[76.05822,31.60177],[76.05585,31.6055],[76.05376,31.60586],[76.04856,31.60271],[76.04617,31.60364],[76.04135,31.61068],[76.03788,31.60952],[76.03668,31.61325],[76.02929,31.61892],[76.02862,31.62288],[76.02451,31.62457],[76.01794,31.63313],[76.02227,31.63961],[76.01738,31.6466],[76.01965,31.64886],[76.00966,31.65335],[76.00673,31.66314],[76.00574,31.676],[76.00143,31.68337],[76.00078,31.68853],[75.99835,31.68956],[75.9931,31.69685],[75.99165,31.70142],[75.99296,31.7034],[75.98895,31.70767],[75.98872,31.7127],[75.98305,31.71881],[75.98322,31.72147],[75.97946,31.72602],[75.97842,31.73366],[75.97445,31.73488],[75.97265,31.73856],[75.97248,31.74145],[75.97542,31.74251],[75.97515,31.74373],[75.97112,31.74918],[75.97235,31.75096],[75.97066,31.75649],[75.96624,31.76654],[75.96341,31.76879],[75.96323,31.77388],[75.96022,31.78113],[75.95312,31.78329],[75.95307,31.78957],[75.93668,31.81541],[75.94182,31.81269],[75.9475,31.81301],[75.95699,31.8163],[75.9581,31.81841],[75.96737,31.82381],[75.96941,31.82383],[75.97327,31.81843],[75.97561,31.81875],[75.97857,31.813],[75.98195,31.814],[75.9835,31.81161],[75.98654,31.81224],[75.98649,31.81792],[75.97486,31.82835],[75.97123,31.82846],[75.97091,31.83342],[75.96597,31.83827],[75.9612,31.85485],[75.94512,31.88361],[75.93875,31.89105],[75.93665,31.89882],[75.91556,31.93101],[75.91157,31.93982],[75.91041,31.95011],[75.90371,31.95272],[75.8925,31.96178],[75.88268,31.96582],[75.88303,31.96889],[75.87426,31.96946],[75.85698,31.9738],[75.85106,31.98201],[75.82171,31.98392],[75.79966,31.99375],[75.77979,32.00465],[75.76498,32.01991],[75.75084,32.03768],[75.74295,32.03945],[75.72386,32.03259],[75.71207,32.03998],[75.70332,32.05515],[75.69291,32.06043],[75.67767,32.06333],[75.67412,32.06711],[75.67425,32.0704],[75.66324,32.07401],[75.66292,32.07573],[75.65432,32.07732],[75.64622,32.07274],[75.63429,32.07124],[75.6307,32.07419],[75.60155,32.06554],[75.60003,32.06867],[75.59482,32.06947],[75.59579,32.07443],[75.59459,32.0784],[75.59691,32.08209],[75.59581,32.08574],[75.60016,32.09244],[75.61428,32.09441],[75.61981,32.09743],[75.62646,32.1074],[75.62727,32.11733],[75.6257,32.11874],[75.66002,32.13665],[75.67268,32.15922],[75.66346,32.16218],[75.66369,32.16429],[75.66615,32.16474],[75.66702,32.17839],[75.65831,32.17817],[75.65901,32.18278],[75.65669,32.18289],[75.65936,32.18371],[75.65988,32.18781],[75.66312,32.18958],[75.66192,32.19291],[75.65789,32.19382],[75.65534,32.19677],[75.64537,32.19248],[75.63772,32.1925],[75.63752,32.18704],[75.63304,32.18687],[75.63157,32.1896],[75.62377,32.19004],[75.62744,32.20684],[75.62583,32.20983],[75.6263,32.21602],[75.63261,32.21716],[75.63665,32.21984],[75.63732,32.22272],[75.63561,32.23167],[75.62226,32.23387],[75.61805,32.23581],[75.61846,32.23757],[75.63205,32.24405],[75.63671,32.24995],[75.64087,32.25222],[75.65809,32.25113],[75.7132,32.27218],[75.74667,32.27722],[75.77232,32.28936],[75.78172,32.31011],[75.80157,32.32836],[75.81483,32.33018],[75.81295,32.33506],[75.80751,32.34071],[75.81121,32.34849],[75.82749,32.35023],[75.83445,32.35728],[75.84381,32.35531],[75.8455,32.35907],[75.84477,32.36486],[75.85241,32.37949],[75.8565,32.38487],[75.86474,32.38879],[75.8736,32.39568],[75.88671,32.3962],[75.8939,32.3933],[75.90208,32.3941],[75.90494,32.39598],[75.90798,32.39334],[75.91452,32.39552],[75.91772,32.39483],[75.92003,32.39681],[75.92363,32.39123],[75.92873,32.39461],[75.93309,32.39158],[75.93651,32.39742],[75.93799,32.39754],[75.93115,32.39942],[75.93028,32.40223],[75.92159,32.41023],[75.91669,32.42001],[75.91994,32.42305],[75.92018,32.43009],[75.90555,32.43766],[75.90573,32.44088],[75.90103,32.44893],[75.90277,32.45233],[75.88591,32.46363],[75.88079,32.46417],[75.8764,32.47034],[75.8664,32.4771],[75.86359,32.48112],[75.8567,32.4845],[75.84415,32.49966],[75.84365,32.50341]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"30","area_level":"State","area_name":"Goa","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.0863,14.8995],[74.08654,14.89961],[74.0865,14.89965],[74.08608,14.89983],[74.08566,14.89987],[74.08536,14.89984],[74.08511,14.89956],[74.08506,14.89914],[74.08519,14.89878],[74.08528,14.89863],[74.08555,14.89844],[74.0863,14.8995]]],[[[73.68138,15.7296],[73.68116,15.72966],[73.68088,15.72954],[73.68093,15.72935],[73.67847,15.72896],[73.67811,15.72875],[73.67837,15.72802],[73.67834,15.72727],[73.6774,15.7264],[73.67717,15.72651],[73.67695,15.72635],[73.67699,15.72594],[73.67777,15.72576],[73.67929,15.72578],[73.68064,15.72517],[73.68108,15.72464],[73.68098,15.72428],[73.6805,15.72371],[73.68041,15.72312],[73.67936,15.72217],[73.6798,15.72215],[73.68031,15.72193],[73.67993,15.72115],[73.68026,15.72116],[73.68081,15.72184],[73.68279,15.72232],[73.68332,15.72206],[73.68338,15.72116],[73.68317,15.72091],[73.68332,15.7209],[73.68286,15.72076],[73.68303,15.72038],[73.68355,15.7204],[73.68374,15.72063],[73.68436,15.72091],[73.68452,15.72084],[73.68446,15.72047],[73.68475,15.72025],[73.68516,15.72041],[73.68558,15.72085],[73.68621,15.72087],[73.68703,15.72124],[73.68737,15.72279],[73.68786,15.72358],[73.68866,15.72351],[73.68889,15.72268],[73.68952,15.72257],[73.69102,15.72257],[73.69172,15.72177],[73.69283,15.72146],[73.69328,15.72184],[73.69575,15.7217],[73.69602,15.72181],[73.69638,15.72224],[73.69667,15.72279],[73.69667,15.72321],[73.69598,15.7236],[73.6958,15.72414],[73.69521,15.72396],[73.69362,15.72415],[73.6931,15.7264],[73.69296,15.72656],[73.69253,15.72822],[73.69221,15.72815],[73.6908,15.72923],[73.68755,15.72988],[73.68521,15.72981],[73.6815,15.72946],[73.68138,15.7296]]],[[[73.86772,15.78438],[73.86596,15.78556],[73.86481,15.79082],[73.8675,15.79703],[73.85571,15.80102],[73.85277,15.79708],[73.85047,15.78964],[73.84707,15.7858],[73.85267,15.78092],[73.84985,15.77954],[73.84391,15.78113],[73.8408,15.77612],[73.83849,15.76756],[73.82975,15.76433],[73.83083,15.75399],[73.82662,15.74336],[73.81824,15.73947],[73.81258,15.74245],[73.80943,15.74203],[73.80664,15.73768],[73.79723,15.73422],[73.79316,15.73723],[73.78893,15.73484],[73.78754,15.72826],[73.78497,15.72613],[73.77035,15.73031],[73.76517,15.73387],[73.74284,15.73657],[73.73485,15.72952],[73.73185,15.7205],[73.72631,15.71705],[73.72351,15.71727],[73.7246,15.71968],[73.71995,15.72377],[73.7167,15.7244],[73.71047,15.72408],[73.70121,15.72046],[73.69916,15.718],[73.69368,15.71796],[73.69177,15.71998],[73.68948,15.71912],[73.69378,15.70675],[73.6943,15.69952],[73.69775,15.69607],[73.69838,15.69099],[73.70081,15.69045],[73.70264,15.68631],[73.70494,15.67485],[73.71137,15.66316],[73.71511,15.64774],[73.72082,15.635],[73.71985,15.63429],[73.72214,15.63224],[73.72282,15.62675],[73.72394,15.6278],[73.72636,15.62656],[73.7334,15.61395],[73.73602,15.61149],[73.74022,15.61202],[73.74467,15.60569],[73.74124,15.60525],[73.73875,15.60781],[73.73207,15.60695],[73.73415,15.60103],[73.73195,15.59777],[73.73438,15.59252],[73.73222,15.58859],[73.73563,15.5854],[73.7408,15.57061],[73.74185,15.56244],[73.74629,15.55974],[73.7499,15.5626],[73.74923,15.56057],[73.75545,15.54507],[73.76792,15.49914],[73.76732,15.49647],[73.76558,15.49587],[73.76659,15.49281],[73.76861,15.49285],[73.7696,15.48997],[73.77372,15.49044],[73.77569,15.48906],[73.78153,15.47563],[73.78971,15.4638],[73.78781,15.46219],[73.786,15.43727],[73.79177,15.41747],[73.7896,15.41204],[73.78416,15.41261],[73.78369,15.4081],[73.78946,15.39915],[73.79198,15.39893],[73.79004,15.39675],[73.79059,15.39386],[73.79504,15.39241],[73.80397,15.39373],[73.80596,15.39182],[73.80793,15.3791],[73.81057,15.38176],[73.80779,15.3773],[73.8092,15.37539],[73.81181,15.37582],[73.81653,15.37209],[73.82166,15.37185],[73.82295,15.36966],[73.82857,15.36798],[73.83182,15.36951],[73.83585,15.36599],[73.83755,15.36124],[73.84267,15.35839],[73.85133,15.35899],[73.85391,15.36399],[73.86298,15.36474],[73.86366,15.36796],[73.87127,15.36922],[73.87918,15.3619],[73.88415,15.35326],[73.89449,15.33084],[73.90213,15.30963],[73.92833,15.22856],[73.94918,15.14477],[73.9565,15.1355],[73.95027,15.14028],[73.94649,15.1408],[73.9427,15.13401],[73.93679,15.13216],[73.93636,15.13102],[73.94045,15.12806],[73.94142,15.12554],[73.94132,15.11659],[73.93791,15.11692],[73.93609,15.11028],[73.93381,15.11205],[73.92659,15.10813],[73.91848,15.10621],[73.92282,15.10633],[73.92281,15.10427],[73.92571,15.10387],[73.92767,15.09532],[73.92231,15.08853],[73.9173,15.0875],[73.91629,15.08464],[73.91284,15.08365],[73.91645,15.08415],[73.91788,15.08201],[73.92309,15.08547],[73.92633,15.08477],[73.93167,15.08241],[73.93274,15.07719],[73.93672,15.07698],[73.9422,15.07312],[73.95499,15.07193],[73.95462,15.06919],[73.95745,15.06912],[73.96347,15.06465],[73.96746,15.06462],[73.96726,15.06142],[73.97035,15.05884],[73.97213,15.05108],[73.97505,15.04894],[73.98012,15.0518],[73.98029,15.05468],[73.98328,15.0529],[73.98836,15.05514],[73.98397,15.05291],[73.98074,15.05403],[73.99112,15.03164],[73.99043,15.02877],[73.98627,15.02751],[73.98814,15.02566],[73.98612,15.02442],[73.98842,15.02446],[73.98965,15.02248],[73.98948,15.01892],[73.99386,15.01654],[73.99785,15.0199],[73.99962,15.0174],[74.00185,15.01812],[74.00336,15.01504],[74.00713,15.016],[74.01369,15.009],[74.01755,15.01605],[74.02104,15.01717],[74.02092,15.01419],[74.01863,15.01519],[74.01696,15.01117],[74.02194,15.00992],[74.02648,15.00642],[74.02749,15.00248],[74.02447,15.00141],[74.02957,15.00084],[74.02793,14.99679],[74.03277,14.99831],[74.03545,14.99226],[74.03964,14.99271],[74.04104,14.99543],[74.04002,14.99245],[74.03613,14.99184],[74.0392,14.98395],[74.03536,14.98201],[74.04063,14.9809],[74.05006,14.95726],[74.04774,14.95259],[74.04839,14.9491],[74.04499,14.94857],[74.04566,14.9473],[74.04353,14.94643],[74.04541,14.94455],[74.04435,14.94199],[74.04786,14.93334],[74.04636,14.93196],[74.04718,14.92902],[74.0447,14.92859],[74.04606,14.92349],[74.04279,14.92209],[74.04454,14.91607],[74.04798,14.9141],[74.05709,14.91345],[74.06087,14.90914],[74.0649,14.90826],[74.06709,14.90583],[74.06839,14.90833],[74.07133,14.90611],[74.07538,14.90854],[74.08111,14.90908],[74.08421,14.90441],[74.08353,14.90086],[74.08537,14.90032],[74.08819,14.90343],[74.09028,14.90341],[74.09453,14.91099],[74.10163,14.91579],[74.1048,14.9129],[74.10851,14.91394],[74.10962,14.91697],[74.11462,14.91836],[74.11998,14.9169],[74.12423,14.92532],[74.12983,14.92547],[74.13504,14.92209],[74.14015,14.92323],[74.14572,14.91895],[74.15342,14.91714],[74.16212,14.91214],[74.16619,14.91655],[74.16591,14.91859],[74.16258,14.92689],[74.15855,14.93023],[74.15624,14.93887],[74.15426,14.93984],[74.15547,14.9422],[74.15416,14.94343],[74.15833,14.94931],[74.15915,14.95585],[74.16077,14.95555],[74.16361,14.95848],[74.17138,14.95719],[74.17476,14.95853],[74.17946,14.95705],[74.17836,14.95367],[74.17972,14.9508],[74.19126,14.94501],[74.19476,14.93994],[74.19466,14.93709],[74.19166,14.93304],[74.20154,14.92572],[74.20913,14.93806],[74.21263,14.94027],[74.21164,14.94354],[74.21366,14.94769],[74.21755,14.94595],[74.22596,14.95046],[74.2298,14.9505],[74.23175,14.95337],[74.23286,14.96412],[74.2367,14.96685],[74.24755,14.96192],[74.24923,14.95904],[74.2526,14.95909],[74.25527,14.97042],[74.2591,14.97006],[74.26099,14.97647],[74.26432,14.97852],[74.2577,14.98823],[74.25212,14.99268],[74.25361,14.99815],[74.26807,15.00201],[74.26647,15.00689],[74.27245,15.01425],[74.28341,15.02353],[74.28326,15.03157],[74.28824,15.03674],[74.29649,15.04121],[74.29461,15.04917],[74.29025,15.05361],[74.28951,15.06482],[74.28373,15.06613],[74.28073,15.06882],[74.27969,15.08808],[74.27524,15.09595],[74.27265,15.0975],[74.27655,15.10538],[74.28266,15.10674],[74.28288,15.11303],[74.28488,15.11391],[74.28519,15.13672],[74.28358,15.14287],[74.28513,15.14903],[74.29135,15.14891],[74.29567,15.15124],[74.31425,15.17752],[74.31417,15.18054],[74.31738,15.18375],[74.31696,15.18626],[74.31039,15.19468],[74.30862,15.20179],[74.31005,15.20629],[74.30575,15.2094],[74.30452,15.21672],[74.30221,15.21801],[74.30144,15.21705],[74.29986,15.21993],[74.30161,15.22434],[74.2915,15.23382],[74.2867,15.23281],[74.28114,15.23626],[74.25955,15.24102],[74.2522,15.25103],[74.25469,15.25407],[74.25111,15.25885],[74.26103,15.26019],[74.27149,15.28113],[74.27633,15.28353],[74.28179,15.28042],[74.28765,15.28389],[74.29335,15.28451],[74.29433,15.28919],[74.30796,15.28333],[74.31963,15.28344],[74.32057,15.2847],[74.32637,15.28374],[74.33644,15.29494],[74.32443,15.30991],[74.31702,15.32912],[74.31722,15.33517],[74.32184,15.3436],[74.31604,15.35997],[74.31626,15.363],[74.3232,15.36768],[74.3086,15.37445],[74.29871,15.38194],[74.28299,15.38294],[74.27587,15.39159],[74.2783,15.40569],[74.27432,15.41358],[74.27041,15.41596],[74.26878,15.4191],[74.26992,15.42604],[74.27689,15.43521],[74.27506,15.43646],[74.27737,15.44049],[74.27545,15.44919],[74.26398,15.47236],[74.25091,15.49159],[74.25229,15.49934],[74.25517,15.50307],[74.27148,15.51085],[74.27647,15.51489],[74.27847,15.51748],[74.27815,15.52285],[74.2817,15.52613],[74.28265,15.53142],[74.27792,15.54611],[74.2653,15.55837],[74.26315,15.56394],[74.26129,15.56481],[74.25833,15.56169],[74.24967,15.56765],[74.24519,15.5666],[74.25053,15.57737],[74.24874,15.58038],[74.26025,15.59263],[74.25999,15.60672],[74.2643,15.61551],[74.25859,15.62078],[74.25848,15.6234],[74.25372,15.62674],[74.24826,15.6229],[74.24416,15.62611],[74.25198,15.65431],[74.25044,15.65726],[74.24485,15.6582],[74.24299,15.66244],[74.23817,15.66362],[74.2394,15.66461],[74.23636,15.66858],[74.22979,15.66638],[74.22841,15.66444],[74.2246,15.66626],[74.22378,15.66898],[74.21802,15.66435],[74.21765,15.6623],[74.21515,15.66287],[74.21772,15.65836],[74.22222,15.65685],[74.22216,15.65564],[74.21745,15.65274],[74.20513,15.65103],[74.20175,15.65634],[74.20406,15.66368],[74.18684,15.66745],[74.1861,15.6745],[74.19039,15.67632],[74.18989,15.67911],[74.1891,15.68059],[74.18155,15.68215],[74.17668,15.67987],[74.17208,15.674],[74.16737,15.67201],[74.16558,15.65438],[74.16442,15.6535],[74.15747,15.65468],[74.15435,15.6499],[74.14909,15.65197],[74.14112,15.6511],[74.13554,15.64837],[74.11758,15.65215],[74.11613,15.64918],[74.11411,15.64879],[74.11389,15.64613],[74.10706,15.64645],[74.09753,15.64102],[74.09429,15.64237],[74.07849,15.63176],[74.07011,15.62916],[74.06577,15.62968],[74.06342,15.62645],[74.06182,15.6266],[74.06161,15.62853],[74.0506,15.62487],[74.03116,15.62261],[74.0254,15.60944],[74.0208,15.60609],[74.00884,15.61016],[73.99336,15.61064],[73.99052,15.61223],[73.97905,15.62713],[73.97078,15.62741],[73.96786,15.63058],[73.96739,15.63531],[73.96177,15.64168],[73.9614,15.64934],[73.96782,15.66025],[73.96571,15.66943],[73.96269,15.67326],[73.96376,15.69232],[73.95909,15.69809],[73.95923,15.70006],[73.95294,15.69953],[73.95152,15.69645],[73.94651,15.69781],[73.9437,15.69694],[73.94856,15.70354],[73.94928,15.70865],[73.94717,15.70983],[73.9498,15.7107],[73.94918,15.71156],[73.95233,15.7144],[73.94595,15.7212],[73.94174,15.72919],[73.94087,15.73811],[73.93873,15.74333],[73.9148,15.74544],[73.90698,15.74997],[73.90699,15.74797],[73.89918,15.746],[73.89288,15.74939],[73.8757,15.75128],[73.87288,15.75468],[73.87306,15.76088],[73.87701,15.76442],[73.87506,15.76716],[73.87735,15.76808],[73.88009,15.77432],[73.87787,15.77563],[73.87716,15.77437],[73.87351,15.77709],[73.86985,15.78354],[73.86772,15.78438]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"31","area_level":"State","area_name":"Lakshadweep","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.0132,8.30322],[73.01323,8.3033],[73.01323,8.30338],[73.01325,8.30351],[73.01316,8.3036],[73.01308,8.30362],[73.01294,8.30358],[73.01285,8.30348],[73.01286,8.30334],[73.01301,8.30322],[73.01304,8.30319],[73.01312,8.30319],[73.0132,8.30322]]],[[[73.05338,8.27454],[73.06521,8.28616],[73.06566,8.28773],[73.06479,8.29251],[73.06484,8.29496],[73.06539,8.30114],[73.06614,8.30399],[73.06925,8.31146],[73.07481,8.32177],[73.07764,8.3255],[73.07416,8.32185],[73.06788,8.31033],[73.06507,8.30319],[73.06414,8.29757],[73.06286,8.29508],[73.05936,8.29078],[73.05502,8.28323],[73.04699,8.27667],[73.04384,8.27474],[73.03953,8.27338],[73.03356,8.2734],[73.02746,8.27203],[73.02093,8.27261],[73.01933,8.27367],[73.01806,8.27557],[73.01853,8.276],[73.02125,8.27329],[73.02151,8.27359],[73.02065,8.27536],[73.01782,8.27723],[73.017,8.27686],[73.01822,8.27141],[73.02006,8.27002],[73.02385,8.26839],[73.03102,8.26627],[73.03525,8.26563],[73.04199,8.2652],[73.04562,8.26586],[73.04785,8.26744],[73.05338,8.27454]]],[[[73.63003,10.06934],[73.63049,10.0694],[73.63085,10.06963],[73.63093,10.06978],[73.63071,10.06999],[73.63031,10.06997],[73.63006,10.06994],[73.62986,10.06988],[73.62959,10.06972],[73.62958,10.0695],[73.62972,10.06931],[73.63003,10.06934]]],[[[73.63242,10.07037],[73.63238,10.07072],[73.63233,10.07099],[73.6322,10.07109],[73.63196,10.07094],[73.6316,10.07053],[73.63154,10.07012],[73.63167,10.06991],[73.63211,10.06991],[73.63242,10.07037]]],[[[73.63367,10.07264],[73.63398,10.07294],[73.63395,10.07332],[73.63386,10.07342],[73.6336,10.07347],[73.63306,10.07345],[73.6328,10.07328],[73.63285,10.07282],[73.63307,10.07251],[73.63367,10.07264]]],[[[73.63016,10.07428],[73.63032,10.07445],[73.63041,10.07462],[73.63046,10.07483],[73.63042,10.07495],[73.63032,10.07497],[73.6302,10.07492],[73.63003,10.07483],[73.62982,10.07463],[73.62975,10.07446],[73.62973,10.07429],[73.62979,10.07417],[73.62986,10.07414],[73.62997,10.07413],[73.63016,10.07428]]],[[[73.62723,10.07484],[73.62726,10.07496],[73.62763,10.07511],[73.62773,10.07527],[73.62751,10.07539],[73.62726,10.07546],[73.62688,10.07536],[73.62651,10.07505],[73.6262,10.07474],[73.62563,10.07425],[73.62535,10.07394],[73.62544,10.07359],[73.62582,10.07322],[73.62635,10.07329],[73.6271,10.07363],[73.62735,10.07403],[73.62763,10.07428],[73.62797,10.07474],[73.62776,10.07493],[73.62735,10.07474],[73.62723,10.07484]]],[[[73.64693,10.07354],[73.64653,10.07763],[73.647,10.08242],[73.64809,10.08611],[73.64942,10.09484],[73.65073,10.09944],[73.65089,10.10155],[73.65061,10.10297],[73.65039,10.10307],[73.65008,10.09984],[73.64936,10.09658],[73.64792,10.09323],[73.64736,10.08954],[73.64505,10.08373],[73.6433,10.0774],[73.64196,10.07498],[73.63966,10.07225],[73.63804,10.07163],[73.63713,10.07166],[73.63482,10.07268],[73.63438,10.07268],[73.6342,10.07237],[73.63663,10.06854],[73.63894,10.06295],[73.63922,10.06172],[73.63872,10.06097],[73.63887,10.05964],[73.64038,10.05833],[73.64128,10.05812],[73.64384,10.05812],[73.64475,10.05824],[73.64534,10.05861],[73.64603,10.05923],[73.64668,10.06045],[73.64715,10.06667],[73.64693,10.07354]]],[[[73.65171,10.10972],[73.65183,10.11001],[73.6518,10.11031],[73.65169,10.11046],[73.65154,10.11062],[73.65131,10.11063],[73.65116,10.11045],[73.65113,10.11017],[73.65126,10.10984],[73.65149,10.10967],[73.65171,10.10972]]],[[[72.28323,10.04221],[72.28361,10.04236],[72.28421,10.04244],[72.28512,10.04321],[72.28565,10.04357],[72.28629,10.04418],[72.28673,10.04509],[72.2872,10.0458],[72.28796,10.0467],[72.28838,10.04787],[72.28856,10.04882],[72.28868,10.04905],[72.2886,10.05083],[72.28897,10.05207],[72.28974,10.05371],[72.28981,10.05428],[72.28951,10.0542],[72.28912,10.05397],[72.28804,10.05094],[72.28705,10.05008],[72.28668,10.04945],[72.28624,10.04899],[72.28552,10.04843],[72.28479,10.04744],[72.28396,10.04589],[72.2834,10.04399],[72.2826,10.04265],[72.28259,10.04246],[72.28269,10.04227],[72.28294,10.04215],[72.28323,10.04221]]],[[[73.65954,10.15531],[73.65932,10.15643],[73.65882,10.15661],[73.65826,10.15652],[73.6575,10.15615],[73.65713,10.15581],[73.65691,10.15497],[73.65707,10.15378],[73.65732,10.15359],[73.6576,10.15378],[73.6575,10.15458],[73.65757,10.15499],[73.6577,10.15499],[73.65854,10.15294],[73.65851,10.15192],[73.65869,10.15098],[73.65913,10.14965],[73.66079,10.14577],[73.66119,10.14443],[73.66157,10.14177],[73.6611,10.13708],[73.66016,10.13376],[73.66001,10.13165],[73.65966,10.13103],[73.65913,10.13063],[73.65919,10.13035],[73.65966,10.13038],[73.66057,10.131],[73.66119,10.13332],[73.66204,10.13553],[73.66263,10.13758],[73.66335,10.14084],[73.66338,10.14226],[73.66217,10.14617],[73.66113,10.14803],[73.66076,10.14909],[73.66038,10.15051],[73.65954,10.15531]]],[[[72.33731,10.10531],[72.33756,10.10603],[72.33756,10.10644],[72.33638,10.1076],[72.33593,10.10751],[72.33597,10.10715],[72.33648,10.10601],[72.33611,10.10476],[72.33524,10.10258],[72.33436,10.10149],[72.33418,10.10094],[72.33444,10.10087],[72.33485,10.10128],[72.33558,10.10217],[72.33627,10.10351],[72.33662,10.10435],[72.33664,10.10433],[72.33731,10.10531]]],[[[72.33159,10.13125],[72.33134,10.132],[72.33111,10.13379],[72.33102,10.13409],[72.33084,10.1343],[72.33042,10.1346],[72.32998,10.13508],[72.32957,10.1359],[72.32928,10.13693],[72.32896,10.13766],[72.3287,10.13813],[72.32817,10.1386],[72.32784,10.13913],[72.32783,10.13983],[72.32768,10.13991],[72.32736,10.13982],[72.32715,10.13965],[72.32688,10.13903],[72.32691,10.13832],[72.3275,10.13594],[72.32761,10.13384],[72.32753,10.13341],[72.32729,10.13281],[72.32712,10.13252],[72.32653,10.13192],[72.32653,10.13118],[72.32662,10.13095],[72.32679,10.13078],[72.3271,10.13061],[72.32773,10.13053],[72.32821,10.13057],[72.32925,10.13089],[72.32964,10.13095],[72.33032,10.13082],[72.33137,10.13],[72.33184,10.1291],[72.33209,10.12903],[72.33247,10.12914],[72.33258,10.12927],[72.3326,10.12944],[72.33246,10.12972],[72.33215,10.12999],[72.33201,10.13035],[72.33194,10.13076],[72.33159,10.13125]]],[[[72.64338,10.57943],[72.64056,10.58046],[72.63986,10.58035],[72.63984,10.57882],[72.63858,10.57472],[72.63761,10.57321],[72.63653,10.57065],[72.63115,10.56184],[72.62595,10.55435],[72.6244,10.55137],[72.62295,10.54956],[72.62251,10.54912],[72.62142,10.5492],[72.61767,10.54761],[72.61581,10.54538],[72.61577,10.54409],[72.61644,10.54328],[72.6176,10.54328],[72.61933,10.5444],[72.62274,10.54805],[72.62354,10.54941],[72.63549,10.55854],[72.63701,10.55934],[72.63933,10.56003],[72.64163,10.5613],[72.64408,10.56175],[72.64589,10.56243],[72.64893,10.56465],[72.64938,10.56555],[72.65063,10.57037],[72.65009,10.57322],[72.64904,10.57564],[72.64632,10.57917],[72.6456,10.57952],[72.64338,10.57943]]],[[[73.66725,10.81865],[73.66211,10.81835],[73.66058,10.81801],[73.65986,10.81747],[73.65881,10.81557],[73.65875,10.81322],[73.65898,10.81208],[73.66043,10.80874],[73.66289,10.80676],[73.66654,10.80574],[73.67092,10.80508],[73.67389,10.80499],[73.67651,10.80529],[73.68341,10.80729],[73.68946,10.81009],[73.69211,10.81103],[73.69902,10.81281],[73.70044,10.814],[73.70092,10.8154],[73.70066,10.81659],[73.69947,10.81738],[73.69861,10.81747],[73.6898,10.81805],[73.68832,10.81798],[73.6859,10.81745],[73.68091,10.81762],[73.67783,10.81822],[73.67707,10.8182],[73.67571,10.81739],[73.67321,10.81799],[73.67046,10.81809],[73.66975,10.81788],[73.66725,10.81865]]],[[[72.168,10.81605],[72.16807,10.81623],[72.16807,10.8163],[72.16799,10.81636],[72.16783,10.81632],[72.16744,10.81607],[72.16721,10.81597],[72.16669,10.81596],[72.16592,10.8158],[72.16512,10.81534],[72.16414,10.81452],[72.16403,10.81423],[72.16411,10.81404],[72.16422,10.81393],[72.1644,10.81383],[72.16465,10.81381],[72.16532,10.81388],[72.16628,10.81387],[72.16664,10.81382],[72.1675,10.81383],[72.16794,10.81388],[72.16814,10.81393],[72.16824,10.81402],[72.16832,10.81413],[72.16826,10.81429],[72.16782,10.81471],[72.16774,10.81483],[72.16766,10.81509],[72.16774,10.8155],[72.168,10.81605]]],[[[72.20355,10.87961],[72.20033,10.87993],[72.19392,10.87242],[72.19247,10.86868],[72.18741,10.85038],[72.18294,10.84202],[72.17834,10.83194],[72.17072,10.82176],[72.16937,10.81928],[72.17031,10.81954],[72.17211,10.82117],[72.17898,10.82992],[72.18255,10.83841],[72.18847,10.84914],[72.19853,10.86439],[72.20209,10.87045],[72.20522,10.87679],[72.20577,10.87866],[72.2054,10.8796],[72.20355,10.87961]]],[[[72.28812,10.94762],[72.28718,10.94825],[72.28694,10.94825],[72.28667,10.948],[72.28639,10.94743],[72.28585,10.94563],[72.2856,10.94376],[72.28515,10.94222],[72.28483,10.9415],[72.28443,10.93982],[72.28413,10.93921],[72.28396,10.93864],[72.28424,10.93775],[72.28494,10.93733],[72.28611,10.93718],[72.28763,10.9368],[72.2888,10.93678],[72.28936,10.93689],[72.29066,10.93736],[72.29138,10.9378],[72.29179,10.93784],[72.292,10.93805],[72.29198,10.93841],[72.29173,10.93889],[72.29136,10.93932],[72.29011,10.94048],[72.2898,10.94115],[72.28914,10.94368],[72.2888,10.94467],[72.28882,10.94535],[72.28908,10.946],[72.28955,10.94664],[72.29012,10.94718],[72.29104,10.94722],[72.29255,10.94707],[72.29275,10.94717],[72.29271,10.94732],[72.29251,10.94745],[72.28989,10.94753],[72.28846,10.94745],[72.28812,10.94762]]],[[[72.32478,10.95141],[72.3261,10.95221],[72.32636,10.95245],[72.32627,10.95262],[72.32604,10.95262],[72.32427,10.9517],[72.32282,10.9514],[72.32045,10.95108],[72.31805,10.95098],[72.31657,10.95085],[72.31631,10.95074],[72.31573,10.95032],[72.31532,10.9499],[72.31493,10.94928],[72.31468,10.94854],[72.31464,10.94719],[72.31451,10.94615],[72.31466,10.94469],[72.31496,10.94463],[72.31553,10.94465],[72.31695,10.94554],[72.31806,10.94609],[72.3198,10.94711],[72.3227,10.94955],[72.32414,10.95095],[72.32478,10.95141]]],[[[72.33244,10.95302],[72.33257,10.9531],[72.33285,10.95364],[72.33284,10.95378],[72.33273,10.95389],[72.33236,10.95394],[72.33207,10.95383],[72.33155,10.95349],[72.3311,10.95315],[72.33088,10.95296],[72.33043,10.95283],[72.32975,10.95279],[72.3296,10.95274],[72.32959,10.95258],[72.32998,10.95194],[72.33002,10.95193],[72.3302,10.95178],[72.33048,10.95168],[72.33071,10.95166],[72.33095,10.95173],[72.33112,10.95195],[72.33134,10.9523],[72.33203,10.95287],[72.33244,10.95302]]],[[[72.33411,10.95625],[72.33403,10.95637],[72.33386,10.95636],[72.33379,10.95626],[72.33354,10.95603],[72.33338,10.95603],[72.33309,10.95606],[72.33279,10.95612],[72.33255,10.95619],[72.33238,10.95612],[72.33225,10.95603],[72.33217,10.95584],[72.33211,10.95558],[72.33225,10.95546],[72.33249,10.95533],[72.33279,10.95528],[72.3329,10.95523],[72.33304,10.95515],[72.33316,10.95497],[72.33318,10.95475],[72.33306,10.95448],[72.33304,10.95428],[72.33313,10.95415],[72.33329,10.95415],[72.33347,10.95429],[72.33368,10.95452],[72.33383,10.95485],[72.3339,10.9552],[72.33395,10.95558],[72.33406,10.95593],[72.33411,10.95625]]],[[[72.33454,10.95747],[72.33472,10.9577],[72.33476,10.95811],[72.33478,10.95859],[72.33466,10.95892],[72.33444,10.95944],[72.33412,10.95972],[72.3337,10.96031],[72.33355,10.96038],[72.3334,10.96035],[72.33329,10.96016],[72.33331,10.95989],[72.33351,10.95948],[72.33359,10.95917],[72.33361,10.95875],[72.33354,10.95785],[72.33361,10.95749],[72.33384,10.9573],[72.33423,10.95731],[72.33454,10.95747]]],[[[72.71951,11.11504],[72.7197,11.11562],[72.72019,11.11614],[72.72394,11.11914],[72.7266,11.1215],[72.72831,11.12355],[72.73047,11.12676],[72.73157,11.12905],[72.73294,11.13272],[72.73374,11.13545],[72.73381,11.13598],[72.73363,11.13654],[72.73328,11.1372],[72.73292,11.13746],[72.73114,11.13785],[72.73031,11.13788],[72.72929,11.13776],[72.72849,11.13739],[72.72593,11.13527],[72.72244,11.13317],[72.72024,11.13151],[72.71865,11.12972],[72.7178,11.12837],[72.71619,11.12488],[72.71583,11.12274],[72.71585,11.12059],[72.71679,11.11754],[72.71796,11.11638],[72.71872,11.11525],[72.71934,11.11489],[72.71951,11.11504]]],[[[72.76133,11.18393],[72.76233,11.18526],[72.76388,11.19228],[72.76887,11.20677],[72.77491,11.21551],[72.77633,11.21849],[72.77975,11.2323],[72.78187,11.23875],[72.78373,11.24415],[72.78926,11.25658],[72.78984,11.26092],[72.78946,11.26149],[72.78667,11.26009],[72.78513,11.25803],[72.77871,11.24369],[72.77296,11.22335],[72.77168,11.22016],[72.77137,11.21797],[72.76678,11.20479],[72.7639,11.19816],[72.76263,11.19317],[72.76254,11.18875],[72.76193,11.1855],[72.76098,11.18397],[72.76133,11.18393]]],[[[73.00764,11.47085],[73.01011,11.47272],[73.01085,11.47357],[73.01108,11.47429],[73.00975,11.47853],[73.00925,11.48181],[73.00918,11.48868],[73.00625,11.49462],[73.00518,11.49627],[73.00403,11.49759],[73.00263,11.49876],[73.00135,11.4994],[72.99994,11.49965],[72.99878,11.49952],[72.99745,11.49873],[72.99741,11.4983],[72.9984,11.4969],[72.99924,11.4953],[72.99993,11.49492],[73.00125,11.49468],[73.00183,11.49405],[73.00298,11.4899],[73.0038,11.485],[73.00458,11.48235],[73.00516,11.47908],[73.00741,11.47383],[73.00745,11.47337],[73.00644,11.47225],[73.0063,11.47132],[73.00677,11.47089],[73.00764,11.47085]]],[[[72.18965,11.60013],[72.18928,11.60072],[72.18847,11.60172],[72.18813,11.60196],[72.1876,11.60227],[72.18583,11.60306],[72.18555,11.60312],[72.18482,11.60302],[72.18457,11.60284],[72.1845,11.60271],[72.18457,11.60255],[72.18522,11.60179],[72.18551,11.60133],[72.18565,11.60068],[72.18573,11.5999],[72.18596,11.59976],[72.18638,11.59972],[72.18811,11.59986],[72.18904,11.59978],[72.18952,11.59981],[72.18968,11.5999],[72.18965,11.60013]]],[[[72.71147,11.68757],[72.71221,11.68865],[72.71215,11.68873],[72.71529,11.6928],[72.71663,11.69578],[72.71663,11.69873],[72.71637,11.7022],[72.71575,11.70498],[72.71328,11.70185],[72.71293,11.70081],[72.71284,11.69968],[72.70967,11.69361],[72.70853,11.68858],[72.708,11.6871],[72.70737,11.68649],[72.7064,11.68586],[72.70552,11.68587],[72.70502,11.68519],[72.70476,11.68423],[72.70497,11.68355],[72.70545,11.68339],[72.708,11.68344],[72.70874,11.68391],[72.70894,11.6842],[72.70911,11.68407],[72.70948,11.68442],[72.7098,11.68522],[72.70993,11.68524],[72.70994,11.68544],[72.71147,11.68757]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"32","area_level":"State","area_name":"Kerala","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[74.98903,12.79546],[74.98741,12.79359],[74.99209,12.78821],[74.98514,12.78155],[74.98244,12.78231],[74.98193,12.77963],[74.96686,12.77633],[74.96633,12.78079],[74.96378,12.78151],[74.96293,12.77868],[74.95999,12.77889],[74.95819,12.78467],[74.95112,12.78437],[74.94173,12.77998],[74.93768,12.77952],[74.93541,12.78085],[74.9275,12.77867],[74.91698,12.77223],[74.90763,12.76896],[74.89958,12.76258],[74.89303,12.76243],[74.88231,12.75405],[74.87414,12.75494],[74.87224,12.76106],[74.86434,12.75914],[74.88428,12.7082],[74.88792,12.70654],[74.88694,12.70614],[74.91604,12.6418],[74.92819,12.60695],[74.93329,12.60401],[74.93158,12.60295],[74.9546,12.54733],[74.95614,12.54633],[74.97381,12.50039],[74.98184,12.48449],[74.9843,12.48252],[74.98398,12.47987],[74.99036,12.46884],[74.99807,12.45016],[75.00434,12.44058],[75.01444,12.41704],[75.01924,12.41564],[75.03009,12.39235],[75.03339,12.38998],[75.03606,12.39168],[75.03944,12.38992],[75.05806,12.3517],[75.09654,12.26177],[75.11431,12.21337],[75.11893,12.2036],[75.12335,12.20361],[75.1243,12.20231],[75.1219,12.19747],[75.12466,12.18818],[75.1414,12.14886],[75.1586,12.10273],[75.18522,12.04115],[75.2015,12.00867],[75.20106,12.00609],[75.20458,12.00561],[75.20948,12.01142],[75.21511,12.0102],[75.22105,12.01235],[75.22289,12.01513],[75.22302,12.01929],[75.22911,12.02261],[75.23792,12.0179],[75.25033,12.00819],[75.29485,11.94571],[75.29585,11.94767],[75.30043,11.94787],[75.30144,11.94486],[75.29527,11.94198],[75.29829,11.94098],[75.30797,11.93104],[75.3203,11.9137],[75.32051,11.91129],[75.31842,11.90903],[75.31917,11.90497],[75.32513,11.9047],[75.32397,11.9029],[75.33862,11.88753],[75.35274,11.86942],[75.35568,11.8598],[75.36196,11.85693],[75.3676,11.85125],[75.37145,11.85329],[75.37457,11.85204],[75.37235,11.85602],[75.37478,11.85823],[75.38114,11.85856],[75.38576,11.85634],[75.3948,11.84582],[75.39555,11.84257],[75.40587,11.83552],[75.4233,11.81288],[75.43117,11.80791],[75.43205,11.80952],[75.43605,11.80536],[75.44573,11.78972],[75.44667,11.78202],[75.45386,11.77869],[75.45668,11.77912],[75.45379,11.77662],[75.4537,11.77027],[75.46061,11.76549],[75.46553,11.76718],[75.46809,11.76458],[75.47274,11.76434],[75.47564,11.75937],[75.48295,11.75435],[75.48527,11.74808],[75.49025,11.74487],[75.498,11.73424],[75.50266,11.73557],[75.509,11.73113],[75.51755,11.71593],[75.51511,11.71684],[75.51577,11.71546],[75.51772,11.71451],[75.51778,11.71589],[75.51966,11.71571],[75.52439,11.70803],[75.53004,11.70357],[75.53567,11.70967],[75.5393,11.70901],[75.54423,11.70454],[75.54225,11.70209],[75.54163,11.69601],[75.53623,11.69354],[75.56062,11.64293],[75.58269,11.58527],[75.58979,11.56247],[75.59563,11.55177],[75.59495,11.54968],[75.5991,11.53737],[75.61453,11.49764],[75.61535,11.49472],[75.61406,11.49279],[75.61747,11.48873],[75.61929,11.48058],[75.61785,11.47841],[75.61913,11.48062],[75.61729,11.47944],[75.61764,11.47788],[75.61646,11.47867],[75.61678,11.47641],[75.6209,11.47293],[75.62238,11.47298],[75.62161,11.47473],[75.6264,11.47312],[75.63256,11.46574],[75.63249,11.46271],[75.63419,11.46103],[75.63783,11.46209],[75.63779,11.46485],[75.64412,11.46625],[75.64523,11.4682],[75.65212,11.46652],[75.66014,11.46176],[75.66373,11.46246],[75.67476,11.45209],[75.67489,11.45045],[75.67755,11.44958],[75.67894,11.45109],[75.68161,11.44962],[75.69767,11.42488],[75.71271,11.39316],[75.71529,11.39219],[75.73185,11.35581],[75.73611,11.33959],[75.73224,11.33473],[75.73565,11.33211],[75.73652,11.32472],[75.74132,11.32122],[75.74496,11.32151],[75.74701,11.31837],[75.76413,11.27139],[75.76758,11.25925],[75.76655,11.25854],[75.76811,11.25804],[75.77542,11.23706],[75.78039,11.22835],[75.77913,11.22731],[75.77976,11.22407],[75.79784,11.17729],[75.80084,11.16532],[75.80463,11.1611],[75.80203,11.16004],[75.80391,11.15752],[75.80251,11.15603],[75.80324,11.15505],[75.8059,11.15648],[75.80873,11.15165],[75.81388,11.14899],[75.82566,11.12379],[75.8251,11.1224],[75.82838,11.11914],[75.8467,11.06287],[75.85136,11.03783],[75.86241,11.00141],[75.8628,10.99453],[75.89084,10.87902],[75.9101,10.78613],[75.91119,10.78458],[75.9136,10.7849],[75.91315,10.78083],[75.91736,10.77392],[75.9209,10.76252],[75.98978,10.61313],[76.03186,10.51534],[76.0367,10.50753],[76.03923,10.50854],[76.04001,10.50705],[76.03955,10.50489],[76.06286,10.46191],[76.08169,10.42157],[76.0833,10.42161],[76.08238,10.41967],[76.09801,10.3819],[76.09863,10.38058],[76.10033,10.38147],[76.09922,10.37891],[76.1134,10.34238],[76.13594,10.26096],[76.15287,10.20854],[76.16151,10.18394],[76.16584,10.17798],[76.1669,10.17028],[76.18021,10.13596],[76.20003,10.05892],[76.21263,10.02556],[76.2185,10.00351],[76.2223,10.00001],[76.22291,9.99479],[76.23071,9.97706],[76.23479,9.97527],[76.23811,9.96925],[76.2412,9.96765],[76.23652,9.96463],[76.23799,9.95336],[76.25127,9.9187],[76.26084,9.88117],[76.28109,9.76636],[76.29176,9.66408],[76.29327,9.66307],[76.29196,9.66254],[76.2931,9.65224],[76.29453,9.6523],[76.29318,9.65099],[76.29965,9.60203],[76.29984,9.58968],[76.3012,9.58874],[76.30059,9.58457],[76.30091,9.58311],[76.30165,9.58466],[76.30462,9.55714],[76.30589,9.55729],[76.30474,9.55613],[76.30548,9.5515],[76.30811,9.54293],[76.30717,9.54155],[76.31908,9.48523],[76.34158,9.40337],[76.38083,9.31299],[76.38191,9.31395],[76.38373,9.31131],[76.38229,9.31048],[76.38531,9.30295],[76.39644,9.28138],[76.46054,9.14063],[76.46354,9.13843],[76.46348,9.13703],[76.46232,9.13753],[76.46291,9.13419],[76.49913,9.05822],[76.5212,8.99865],[76.52681,8.97019],[76.53428,8.95124],[76.53732,8.93768],[76.5355,8.93604],[76.53984,8.9389],[76.54165,8.93803],[76.54039,8.93614],[76.54208,8.93601],[76.54176,8.93388],[76.53538,8.93372],[76.53839,8.93278],[76.53954,8.93013],[76.54022,8.93175],[76.54233,8.91312],[76.54673,8.90391],[76.55586,8.89218],[76.56002,8.8894],[76.56552,8.87991],[76.56943,8.88278],[76.57278,8.88291],[76.57943,8.88117],[76.59256,8.87417],[76.61012,8.85943],[76.63143,8.83653],[76.64459,8.81965],[76.65062,8.80875],[76.67205,8.78317],[76.69087,8.75418],[76.6987,8.73795],[76.71485,8.72076],[76.75802,8.66854],[76.89491,8.49669],[76.95492,8.4266],[76.97034,8.40291],[76.97241,8.39647],[76.97222,8.39438],[76.97089,8.39468],[76.97122,8.39197],[76.9751,8.38846],[76.97561,8.38574],[76.97915,8.38411],[76.9791,8.38185],[76.984,8.37981],[76.98638,8.37549],[76.992,8.37752],[76.99758,8.37406],[77.0074,8.36242],[77.01115,8.35474],[77.01276,8.35576],[77.01653,8.35466],[77.02875,8.34759],[77.05996,8.3205],[77.09598,8.29302],[77.09886,8.29896],[77.10163,8.30091],[77.10176,8.30647],[77.10553,8.30692],[77.11308,8.30424],[77.11664,8.31031],[77.12278,8.30901],[77.12448,8.31207],[77.11899,8.31678],[77.11921,8.32106],[77.12959,8.32196],[77.12919,8.32598],[77.13842,8.32753],[77.13979,8.32987],[77.14526,8.32956],[77.14843,8.33199],[77.1536,8.328],[77.16929,8.33295],[77.16993,8.32549],[77.17216,8.32469],[77.17332,8.31976],[77.17578,8.32029],[77.18088,8.32419],[77.16975,8.33474],[77.16997,8.33807],[77.16694,8.34275],[77.171,8.34773],[77.17547,8.34986],[77.17429,8.35863],[77.17072,8.3603],[77.16965,8.36347],[77.16754,8.36343],[77.1666,8.36025],[77.16336,8.36177],[77.15949,8.35916],[77.15741,8.35994],[77.1564,8.35673],[77.15302,8.35514],[77.15354,8.36131],[77.15589,8.36339],[77.15694,8.36741],[77.16034,8.3687],[77.16129,8.37398],[77.15996,8.38124],[77.15592,8.38265],[77.15532,8.3811],[77.15199,8.38129],[77.15111,8.38447],[77.15373,8.38774],[77.16095,8.39017],[77.16594,8.38787],[77.16819,8.38387],[77.17052,8.38736],[77.18167,8.39579],[77.18261,8.40475],[77.19752,8.41994],[77.19656,8.42916],[77.20381,8.43526],[77.20292,8.43633],[77.2066,8.4447],[77.2281,8.44725],[77.22901,8.45061],[77.2273,8.45293],[77.22742,8.45848],[77.22093,8.4658],[77.21407,8.46972],[77.21139,8.47888],[77.21174,8.48397],[77.21381,8.48554],[77.21188,8.49207],[77.20413,8.49645],[77.20468,8.49872],[77.20238,8.50119],[77.21041,8.50701],[77.21431,8.51281],[77.22226,8.51244],[77.22966,8.50898],[77.24012,8.49705],[77.24424,8.49756],[77.2463,8.50235],[77.2513,8.50542],[77.25615,8.50518],[77.25738,8.50705],[77.26171,8.50615],[77.26534,8.51196],[77.26692,8.51987],[77.27426,8.53372],[77.27465,8.53763],[77.28385,8.54673],[77.28236,8.55049],[77.2743,8.55964],[77.27504,8.56564],[77.27066,8.57165],[77.26905,8.57889],[77.26649,8.58077],[77.26643,8.58514],[77.26321,8.58883],[77.25864,8.58922],[77.25517,8.59739],[77.25076,8.59873],[77.24524,8.60344],[77.24573,8.61629],[77.24408,8.62182],[77.23465,8.62685],[77.23219,8.63565],[77.22931,8.63742],[77.22885,8.64027],[77.22483,8.63908],[77.22015,8.64493],[77.21427,8.64914],[77.2117,8.65479],[77.21211,8.65719],[77.20778,8.66083],[77.20837,8.66364],[77.20069,8.66908],[77.20726,8.68068],[77.20672,8.6842],[77.19561,8.70213],[77.19503,8.70776],[77.18998,8.71236],[77.18472,8.71347],[77.1843,8.71639],[77.18079,8.71832],[77.18062,8.72106],[77.17677,8.72613],[77.17911,8.73058],[77.17001,8.74179],[77.16977,8.74743],[77.17163,8.75058],[77.17703,8.74544],[77.18267,8.74278],[77.19246,8.74444],[77.19752,8.75093],[77.19984,8.76079],[77.19733,8.7689],[77.20496,8.76913],[77.2093,8.76535],[77.21795,8.76824],[77.21843,8.77099],[77.21307,8.77862],[77.21471,8.77973],[77.21999,8.77899],[77.22429,8.78362],[77.22971,8.78459],[77.23129,8.79082],[77.23054,8.79783],[77.23275,8.80164],[77.23198,8.80773],[77.24252,8.80979],[77.24708,8.81484],[77.24714,8.82372],[77.25136,8.82712],[77.25309,8.83226],[77.25759,8.83522],[77.25883,8.83862],[77.26276,8.84199],[77.25848,8.85033],[77.25908,8.85317],[77.26171,8.85261],[77.26152,8.85651],[77.25557,8.86112],[77.25568,8.86315],[77.25864,8.86518],[77.25657,8.87757],[77.25456,8.87959],[77.24499,8.88007],[77.23766,8.88567],[77.2384,8.89212],[77.24024,8.89447],[77.23855,8.89774],[77.22795,8.90359],[77.22123,8.90395],[77.21824,8.91869],[77.21423,8.91733],[77.20998,8.9185],[77.20105,8.92456],[77.19473,8.92412],[77.1928,8.9262],[77.19248,8.92855],[77.19714,8.93543],[77.19389,8.94332],[77.19697,8.95169],[77.19629,8.95458],[77.1915,8.95916],[77.1907,8.96562],[77.18555,8.97018],[77.1782,8.9691],[77.17357,8.99123],[77.16167,8.99504],[77.15615,9.00383],[77.15685,9.0075],[77.15275,9.00719],[77.14935,9.00958],[77.15073,9.01489],[77.14656,9.02182],[77.15387,9.02243],[77.1611,9.02944],[77.16212,9.03323],[77.16039,9.03584],[77.16412,9.03841],[77.16747,9.0453],[77.18232,9.04742],[77.18759,9.04314],[77.19171,9.04353],[77.19746,9.04697],[77.19528,9.04934],[77.1969,9.0568],[77.20551,9.06617],[77.20887,9.07404],[77.2057,9.08499],[77.20915,9.08996],[77.21241,9.10048],[77.21877,9.10143],[77.22106,9.10594],[77.22646,9.10819],[77.22844,9.11688],[77.23134,9.11743],[77.24215,9.12505],[77.24728,9.1246],[77.25272,9.13919],[77.26065,9.1443],[77.26072,9.14881],[77.26681,9.15246],[77.26532,9.16307],[77.26714,9.17432],[77.26516,9.18126],[77.26388,9.18411],[77.26095,9.18311],[77.25143,9.18864],[77.25641,9.19598],[77.25611,9.19922],[77.26314,9.19826],[77.26636,9.20045],[77.27034,9.2006],[77.27038,9.20503],[77.2755,9.21169],[77.28171,9.21657],[77.28166,9.22072],[77.27575,9.22898],[77.27411,9.23582],[77.27877,9.23941],[77.27955,9.24383],[77.2774,9.24713],[77.28254,9.256],[77.2815,9.26241],[77.28352,9.26728],[77.28175,9.27232],[77.28853,9.27417],[77.28788,9.28135],[77.28322,9.29131],[77.28299,9.30133],[77.28849,9.30165],[77.28976,9.30403],[77.29368,9.30476],[77.29954,9.31091],[77.29948,9.31418],[77.30252,9.31953],[77.3018,9.32424],[77.29703,9.32951],[77.30099,9.33012],[77.29997,9.33665],[77.3058,9.33779],[77.31562,9.33486],[77.3201,9.33753],[77.32529,9.33711],[77.32603,9.34655],[77.33333,9.35632],[77.33573,9.36392],[77.33732,9.36498],[77.33664,9.37692],[77.33457,9.37821],[77.33455,9.38122],[77.3366,9.38732],[77.33949,9.38741],[77.3414,9.38981],[77.33977,9.39375],[77.3436,9.40084],[77.33685,9.41052],[77.33649,9.41336],[77.33971,9.42072],[77.3446,9.42442],[77.34857,9.43451],[77.34941,9.44118],[77.35639,9.44757],[77.3603,9.45544],[77.366,9.46008],[77.37289,9.45663],[77.37423,9.45349],[77.3772,9.45278],[77.38093,9.45506],[77.38697,9.45565],[77.39261,9.45935],[77.39147,9.46869],[77.39713,9.47134],[77.40172,9.4769],[77.40198,9.47865],[77.39862,9.48163],[77.39931,9.49657],[77.40298,9.50148],[77.40971,9.50556],[77.4124,9.50898],[77.40831,9.51476],[77.40042,9.51786],[77.40331,9.523],[77.40051,9.52736],[77.39595,9.5233],[77.38518,9.51923],[77.38013,9.52536],[77.37693,9.52483],[77.37334,9.52685],[77.37296,9.52989],[77.36874,9.53478],[77.36556,9.53509],[77.36508,9.55273],[77.36126,9.55794],[77.35291,9.55958],[77.35026,9.56708],[77.35297,9.57286],[77.35814,9.57391],[77.35989,9.57738],[77.3583,9.58393],[77.35497,9.58668],[77.35748,9.59443],[77.36085,9.59784],[77.36239,9.59556],[77.36614,9.59596],[77.36581,9.59974],[77.36277,9.6002],[77.36113,9.60226],[77.35459,9.60407],[77.34548,9.58796],[77.34223,9.58101],[77.3419,9.57646],[77.33949,9.57331],[77.33251,9.57881],[77.32536,9.58003],[77.32562,9.58345],[77.32383,9.58516],[77.32618,9.58863],[77.32453,9.59334],[77.3299,9.59899],[77.32815,9.60015],[77.325,9.59768],[77.32241,9.59829],[77.31782,9.6025],[77.31537,9.60071],[77.30381,9.59874],[77.29456,9.58924],[77.29007,9.58869],[77.29034,9.58477],[77.28048,9.57958],[77.27693,9.57575],[77.27201,9.57645],[77.26971,9.57277],[77.26385,9.57374],[77.26145,9.57683],[77.25833,9.57649],[77.25307,9.58297],[77.24277,9.58522],[77.23713,9.58106],[77.2343,9.58155],[77.22249,9.59278],[77.22218,9.59771],[77.21714,9.60162],[77.21444,9.60071],[77.20984,9.60497],[77.21047,9.61086],[77.20896,9.61344],[77.1982,9.61436],[77.19706,9.61085],[77.19082,9.60922],[77.18868,9.6061],[77.17409,9.61119],[77.1703,9.60967],[77.16586,9.61286],[77.16778,9.61502],[77.16911,9.62397],[77.1746,9.62658],[77.17626,9.62948],[77.17415,9.63287],[77.17405,9.63731],[77.17927,9.64486],[77.17958,9.65554],[77.18115,9.65921],[77.18751,9.66144],[77.18682,9.66641],[77.19411,9.67056],[77.20055,9.686],[77.20672,9.69466],[77.20458,9.70158],[77.20195,9.70389],[77.2053,9.71309],[77.20471,9.71656],[77.2061,9.71757],[77.20356,9.72211],[77.20753,9.72476],[77.21838,9.72608],[77.22067,9.72964],[77.22391,9.73037],[77.22184,9.7374],[77.22268,9.73999],[77.21984,9.74208],[77.22023,9.74504],[77.22514,9.75277],[77.22747,9.76421],[77.2324,9.76857],[77.22499,9.77556],[77.22266,9.78779],[77.23601,9.79006],[77.24016,9.79692],[77.24173,9.79579],[77.24667,9.79789],[77.24509,9.80278],[77.24679,9.808],[77.24115,9.81563],[77.23259,9.81742],[77.23273,9.82149],[77.22501,9.8203],[77.22431,9.822],[77.22178,9.82245],[77.22385,9.82385],[77.22378,9.8287],[77.22655,9.83072],[77.22544,9.8333],[77.22753,9.83809],[77.22294,9.84488],[77.22633,9.84634],[77.22814,9.84914],[77.23718,9.85138],[77.23631,9.8596],[77.23269,9.86154],[77.22614,9.86086],[77.22133,9.86313],[77.21245,9.87688],[77.21527,9.87739],[77.21752,9.88435],[77.22075,9.88448],[77.21809,9.89637],[77.21825,9.90429],[77.22258,9.90596],[77.22439,9.90967],[77.23006,9.91247],[77.23056,9.92139],[77.2317,9.92404],[77.23564,9.92637],[77.23433,9.93058],[77.23623,9.93537],[77.2479,9.94685],[77.24654,9.9514],[77.24958,9.95255],[77.25021,9.95118],[77.25296,9.95345],[77.26101,9.95249],[77.26854,9.96091],[77.27105,9.96243],[77.27184,9.96133],[77.27285,9.96419],[77.27218,9.97015],[77.27087,9.97091],[77.27267,9.97634],[77.26796,9.97991],[77.2644,9.98717],[77.26683,9.99029],[77.26177,9.9911],[77.26091,9.99268],[77.2608,9.99576],[77.26613,10.00189],[77.25319,10.01281],[77.25586,10.01453],[77.25744,10.0193],[77.26159,10.0212],[77.2619,10.02973],[77.2548,10.03667],[77.24439,10.05197],[77.23447,10.05984],[77.23144,10.06627],[77.2235,10.06918],[77.22289,10.07298],[77.21984,10.07716],[77.20398,10.08773],[77.20401,10.09728],[77.20293,10.10416],[77.20126,10.10582],[77.20439,10.11247],[77.20648,10.11256],[77.20789,10.1177],[77.21085,10.11816],[77.21643,10.11585],[77.22717,10.12119],[77.23038,10.1205],[77.22992,10.12252],[77.23276,10.12396],[77.23205,10.12528],[77.23373,10.12797],[77.23824,10.13008],[77.24765,10.1305],[77.24895,10.12681],[77.25269,10.12445],[77.26778,10.12161],[77.26836,10.12714],[77.27405,10.12949],[77.27477,10.13255],[77.27453,10.13976],[77.2718,10.14199],[77.27414,10.15767],[77.27292,10.16534],[77.2747,10.17527],[77.27627,10.17571],[77.2753,10.18442],[77.27857,10.19421],[77.28296,10.19659],[77.28482,10.20055],[77.28587,10.20436],[77.28312,10.20865],[77.2873,10.20925],[77.28954,10.21456],[77.29337,10.21529],[77.29496,10.2179],[77.28809,10.23186],[77.28422,10.23342],[77.28194,10.23656],[77.27316,10.23501],[77.26926,10.23704],[77.2686,10.23459],[77.26475,10.23522],[77.26455,10.23233],[77.25972,10.23027],[77.25719,10.25939],[77.26293,10.26333],[77.23931,10.29503],[77.23982,10.29853],[77.23676,10.301],[77.23528,10.30765],[77.23141,10.30842],[77.23093,10.31257],[77.22775,10.31542],[77.22762,10.31995],[77.22957,10.32236],[77.22817,10.32727],[77.22921,10.33065],[77.23317,10.33499],[77.23305,10.33765],[77.23637,10.33889],[77.23584,10.35201],[77.22262,10.35366],[77.20939,10.35302],[77.20465,10.35385],[77.20206,10.35763],[77.19813,10.35673],[77.19605,10.35451],[77.17662,10.35844],[77.16221,10.3489],[77.15128,10.33753],[77.12879,10.32623],[77.12039,10.31796],[77.11024,10.31559],[77.10172,10.31561],[77.0961,10.30898],[77.09136,10.31391],[77.08845,10.30982],[77.07958,10.30301],[77.07261,10.29913],[77.0662,10.2977],[77.063,10.29139],[77.05944,10.29023],[77.05645,10.287],[77.04288,10.28377],[77.0496,10.27808],[77.05268,10.2725],[77.05079,10.26805],[77.05108,10.26211],[77.0429,10.25685],[77.04063,10.25266],[77.03152,10.25226],[77.01749,10.24563],[77.01443,10.24579],[77.01113,10.24009],[77.00547,10.2384],[77.00378,10.23464],[77.001,10.23516],[76.99903,10.23037],[76.99332,10.23045],[76.99046,10.22809],[76.99071,10.22568],[76.9845,10.22298],[76.98245,10.22012],[76.98048,10.22379],[76.97347,10.22543],[76.97229,10.22861],[76.96855,10.23077],[76.96543,10.23074],[76.95888,10.23414],[76.9506,10.23247],[76.94754,10.23687],[76.93936,10.2389],[76.92156,10.23218],[76.9116,10.23529],[76.90826,10.24085],[76.903,10.2403],[76.90546,10.24792],[76.90443,10.25091],[76.90142,10.25116],[76.89741,10.26244],[76.89144,10.26306],[76.88409,10.2709],[76.87342,10.27634],[76.87452,10.29428],[76.87314,10.29848],[76.87052,10.29888],[76.86842,10.29607],[76.86435,10.29532],[76.86239,10.29203],[76.85792,10.29364],[76.8551,10.29285],[76.85126,10.2899],[76.85222,10.2851],[76.84872,10.28528],[76.84824,10.28754],[76.84263,10.29003],[76.84221,10.29247],[76.84478,10.2949],[76.8407,10.29968],[76.83017,10.30386],[76.8287,10.30787],[76.83037,10.30956],[76.83062,10.31454],[76.83297,10.31807],[76.83774,10.33666],[76.83609,10.34044],[76.83631,10.34602],[76.8417,10.35062],[76.84194,10.35359],[76.84601,10.35731],[76.84516,10.36293],[76.84879,10.36823],[76.84389,10.37753],[76.83429,10.38325],[76.8305,10.38966],[76.82366,10.39506],[76.83403,10.40334],[76.8325,10.40568],[76.83358,10.40777],[76.83043,10.4113],[76.82464,10.41012],[76.82253,10.41456],[76.82317,10.41701],[76.81638,10.42352],[76.82833,10.45017],[76.83104,10.50003],[76.8431,10.53729],[76.84205,10.54078],[76.83519,10.5454],[76.83568,10.55787],[76.83914,10.56133],[76.83922,10.56475],[76.8344,10.5703],[76.83357,10.57436],[76.83754,10.58186],[76.83827,10.59667],[76.8374,10.59841],[76.83233,10.59928],[76.82601,10.59613],[76.81731,10.6032],[76.81573,10.60787],[76.81833,10.61115],[76.81631,10.61367],[76.8163,10.61686],[76.81145,10.62001],[76.8101,10.62418],[76.81497,10.62963],[76.81418,10.63586],[76.82113,10.63442],[76.83066,10.63762],[76.83928,10.6343],[76.8462,10.63583],[76.86066,10.63234],[76.86751,10.63325],[76.87346,10.63777],[76.88248,10.63971],[76.88374,10.65],[76.88092,10.65645],[76.88137,10.66126],[76.87814,10.66735],[76.8784,10.67503],[76.87748,10.67673],[76.86958,10.67678],[76.86754,10.67905],[76.86603,10.68531],[76.87084,10.69288],[76.86759,10.69478],[76.88221,10.71734],[76.88635,10.71863],[76.8903,10.71692],[76.89294,10.72146],[76.88864,10.72831],[76.8883,10.73247],[76.89616,10.74533],[76.89631,10.75198],[76.90108,10.75637],[76.90359,10.76111],[76.90258,10.77079],[76.90531,10.77143],[76.90753,10.77799],[76.90721,10.78269],[76.90063,10.80087],[76.90068,10.8073],[76.88899,10.80958],[76.87006,10.80833],[76.86526,10.8129],[76.86396,10.81727],[76.86048,10.81848],[76.85875,10.81667],[76.85258,10.81855],[76.8499,10.81725],[76.84817,10.8188],[76.84508,10.8261],[76.8464,10.82732],[76.84736,10.82633],[76.84855,10.83052],[76.85084,10.82958],[76.85319,10.83292],[76.85378,10.83896],[76.84878,10.84635],[76.84842,10.84939],[76.84168,10.85208],[76.83909,10.85634],[76.83194,10.86013],[76.83076,10.86993],[76.82832,10.87191],[76.81669,10.87274],[76.81434,10.87599],[76.81186,10.87583],[76.81146,10.87788],[76.80813,10.8768],[76.80122,10.88005],[76.7918,10.88111],[76.79092,10.88445],[76.78143,10.89042],[76.77661,10.88917],[76.77438,10.8901],[76.7679,10.88703],[76.76529,10.89118],[76.76125,10.89346],[76.75527,10.8932],[76.75241,10.89506],[76.75,10.89225],[76.74554,10.89268],[76.74079,10.89097],[76.73755,10.89588],[76.73168,10.89765],[76.72345,10.90345],[76.71783,10.90546],[76.7149,10.90861],[76.71264,10.90757],[76.70807,10.9101],[76.69521,10.91023],[76.67675,10.91806],[76.66206,10.92964],[76.65909,10.9305],[76.6558,10.93901],[76.66473,10.94348],[76.66583,10.94742],[76.6636,10.95093],[76.66748,10.95959],[76.66679,10.96833],[76.67389,10.97439],[76.68604,10.9892],[76.68546,10.9938],[76.69416,11.02156],[76.70912,11.03289],[76.71089,11.03872],[76.71542,11.04101],[76.72616,11.04114],[76.73242,11.03844],[76.7376,11.03974],[76.74929,11.03343],[76.7666,11.02909],[76.77365,11.03354],[76.79184,11.03736],[76.79315,11.0434],[76.80086,11.05397],[76.79846,11.05655],[76.79622,11.05585],[76.78779,11.0447],[76.77816,11.04209],[76.76894,11.04343],[76.76203,11.04798],[76.7607,11.05231],[76.75106,11.05541],[76.74613,11.05482],[76.74415,11.05707],[76.74575,11.06002],[76.74257,11.06334],[76.74377,11.06844],[76.74114,11.06973],[76.74104,11.07234],[76.74457,11.07248],[76.74571,11.07564],[76.74798,11.07432],[76.75014,11.07894],[76.75416,11.07779],[76.75453,11.08416],[76.75168,11.09319],[76.74658,11.09251],[76.74376,11.09899],[76.74117,11.09992],[76.73898,11.1043],[76.74077,11.10498],[76.74072,11.10919],[76.7453,11.10848],[76.74742,11.1112],[76.74753,11.12305],[76.74533,11.13019],[76.74705,11.13071],[76.7483,11.13584],[76.74622,11.13771],[76.74245,11.13323],[76.73931,11.13197],[76.7404,11.1337],[76.73503,11.13639],[76.73166,11.13145],[76.72875,11.13045],[76.72871,11.1339],[76.72637,11.13385],[76.72475,11.13855],[76.71742,11.14407],[76.71847,11.14764],[76.71611,11.14915],[76.71003,11.14799],[76.70887,11.14627],[76.71231,11.14424],[76.71238,11.14217],[76.70524,11.1422],[76.70026,11.14655],[76.70206,11.14757],[76.70142,11.1493],[76.69692,11.14979],[76.69552,11.15149],[76.69586,11.15523],[76.69298,11.15585],[76.68956,11.15957],[76.69226,11.16456],[76.69296,11.17236],[76.69647,11.17531],[76.70077,11.17606],[76.70024,11.18182],[76.70659,11.17936],[76.70937,11.18239],[76.71033,11.18784],[76.71378,11.18836],[76.71843,11.18641],[76.72363,11.19238],[76.72904,11.19104],[76.7282,11.19585],[76.72218,11.20363],[76.72659,11.21037],[76.73177,11.21367],[76.73142,11.21559],[76.72823,11.21854],[76.72582,11.21867],[76.72537,11.22581],[76.72175,11.22492],[76.7149,11.23133],[76.71167,11.23175],[76.70709,11.23838],[76.69827,11.2396],[76.68422,11.23374],[76.68531,11.2312],[76.68296,11.23006],[76.68478,11.22773],[76.67752,11.22063],[76.65341,11.21012],[76.62972,11.19417],[76.6009,11.20659],[76.53385,11.19675],[76.51609,11.2043],[76.51048,11.21164],[76.50328,11.21161],[76.47237,11.20875],[76.47347,11.19493],[76.46662,11.19332],[76.45844,11.18768],[76.4519,11.19922],[76.43862,11.19896],[76.43936,11.20296],[76.44896,11.20547],[76.45309,11.23937],[76.4663,11.24512],[76.48711,11.25829],[76.52218,11.27134],[76.52626,11.28826],[76.54576,11.30031],[76.53936,11.30462],[76.5373,11.31404],[76.54997,11.33099],[76.54744,11.34547],[76.54786,11.35889],[76.50818,11.35412],[76.51512,11.35969],[76.51775,11.37156],[76.46208,11.38747],[76.41508,11.42263],[76.4187,11.44178],[76.39768,11.43502],[76.37855,11.44919],[76.37257,11.45101],[76.37149,11.45406],[76.3463,11.46415],[76.34223,11.46759],[76.33815,11.46188],[76.33558,11.46161],[76.32547,11.45333],[76.30515,11.46779],[76.29352,11.46568],[76.29047,11.46957],[76.29289,11.47022],[76.29418,11.47289],[76.28444,11.48292],[76.28157,11.47924],[76.27856,11.47922],[76.27562,11.47687],[76.27044,11.47716],[76.26769,11.48053],[76.2646,11.48089],[76.24757,11.46854],[76.24979,11.49832],[76.25229,11.5],[76.24852,11.50647],[76.24816,11.51649],[76.24422,11.51736],[76.23848,11.52627],[76.24056,11.52781],[76.24453,11.5261],[76.25049,11.52757],[76.25151,11.53778],[76.24977,11.53731],[76.24443,11.54315],[76.24628,11.54628],[76.24237,11.55049],[76.2444,11.55409],[76.24172,11.55637],[76.2406,11.5557],[76.23875,11.55857],[76.23298,11.56925],[76.23452,11.57215],[76.24375,11.57849],[76.24921,11.58007],[76.25351,11.5854],[76.26115,11.5903],[76.2646,11.59094],[76.26493,11.59389],[76.2743,11.59368],[76.27891,11.60094],[76.28609,11.5902],[76.29594,11.59042],[76.29913,11.58281],[76.30013,11.57446],[76.30238,11.57123],[76.31054,11.57739],[76.31592,11.57659],[76.32121,11.58619],[76.33588,11.59574],[76.33996,11.59313],[76.34125,11.58724],[76.35458,11.58931],[76.3671,11.59833],[76.37798,11.60191],[76.37827,11.60851],[76.38393,11.61205],[76.38329,11.62404],[76.3881,11.62967],[76.40689,11.63428],[76.4262,11.63357],[76.43192,11.63092],[76.43455,11.63576],[76.44343,11.64362],[76.44337,11.64933],[76.43637,11.65347],[76.43135,11.6664],[76.42946,11.66624],[76.42818,11.66998],[76.42103,11.67248],[76.41913,11.6709],[76.41593,11.67281],[76.4126,11.68276],[76.41305,11.68598],[76.40844,11.68972],[76.41026,11.691],[76.41083,11.69367],[76.40963,11.69438],[76.41238,11.69502],[76.41178,11.69783],[76.40983,11.69875],[76.41087,11.70005],[76.40888,11.70639],[76.40745,11.70745],[76.40524,11.70586],[76.40346,11.70776],[76.40366,11.71162],[76.4056,11.71119],[76.40853,11.71505],[76.41257,11.71547],[76.41401,11.71125],[76.41606,11.71296],[76.41659,11.71769],[76.42411,11.72029],[76.42744,11.72598],[76.4221,11.73829],[76.41817,11.7426],[76.41288,11.74011],[76.41048,11.74208],[76.41241,11.74368],[76.4123,11.75182],[76.41498,11.7555],[76.41423,11.75885],[76.40521,11.75637],[76.39864,11.75081],[76.3934,11.75503],[76.39129,11.75477],[76.38395,11.7472],[76.37699,11.74454],[76.36846,11.74814],[76.36282,11.74837],[76.3525,11.73828],[76.3502,11.74024],[76.33974,11.739],[76.33484,11.74464],[76.32914,11.74828],[76.3196,11.75048],[76.31686,11.75259],[76.31445,11.75691],[76.31362,11.76357],[76.31071,11.7673],[76.3077,11.78422],[76.30558,11.7859],[76.30117,11.78563],[76.29403,11.79176],[76.29024,11.79283],[76.28488,11.8003],[76.28022,11.81161],[76.27687,11.81237],[76.27369,11.81063],[76.25964,11.80869],[76.25,11.80337],[76.24558,11.80293],[76.22935,11.80531],[76.22372,11.8082],[76.21821,11.81436],[76.21709,11.82157],[76.20989,11.82817],[76.21311,11.84262],[76.21026,11.84422],[76.20747,11.86154],[76.20201,11.86241],[76.19838,11.86655],[76.19039,11.87121],[76.18672,11.87196],[76.17881,11.87017],[76.1735,11.87121],[76.16481,11.86757],[76.15603,11.87014],[76.1494,11.86642],[76.14608,11.867],[76.13229,11.85387],[76.11994,11.85047],[76.11704,11.85485],[76.11785,11.85719],[76.11286,11.85871],[76.1149,11.86683],[76.11176,11.88736],[76.11337,11.89521],[76.1123,11.97866],[76.0898,11.96743],[76.07729,11.96874],[76.0701,11.96708],[76.06742,11.96333],[76.05796,11.95778],[76.05204,11.95161],[76.04482,11.95054],[76.04233,11.94602],[76.03907,11.94509],[76.03372,11.9403],[76.02997,11.94015],[76.02676,11.94308],[76.02238,11.94397],[76.01649,11.9411],[76.01312,11.94172],[76.00738,11.93902],[76.0032,11.93139],[75.99391,11.93227],[75.99042,11.93471],[75.98347,11.93272],[75.97927,11.93476],[75.9764,11.93371],[75.95637,11.9419],[75.95174,11.94064],[75.93741,11.9421],[75.93571,11.94006],[75.93078,11.9397],[75.92719,11.94337],[75.91747,11.94488],[75.91399,11.94692],[75.89873,11.94666],[75.89703,11.94547],[75.88602,11.95203],[75.88068,11.94971],[75.87254,11.9533],[75.87045,11.95258],[75.86643,11.95738],[75.85886,11.95942],[75.85461,11.96411],[75.853,11.97159],[75.85011,11.97474],[75.848,11.97495],[75.84955,11.97804],[75.84691,11.98201],[75.84292,11.98073],[75.83971,11.98267],[75.83704,11.98093],[75.83003,11.984],[75.82726,11.98768],[75.82563,11.99187],[75.82523,12.00273],[75.82038,12.00252],[75.82325,12.0098],[75.82286,12.01337],[75.81547,12.02051],[75.80993,12.02271],[75.81102,12.02857],[75.80107,12.03701],[75.79966,12.04738],[75.79396,12.05503],[75.79866,12.05604],[75.79867,12.06327],[75.80383,12.07516],[75.80255,12.07856],[75.78542,12.08426],[75.78036,12.08251],[75.76763,12.08448],[75.76282,12.08325],[75.75348,12.08413],[75.74913,12.08191],[75.74712,12.07819],[75.74358,12.08017],[75.73611,12.07895],[75.72774,12.07255],[75.72485,12.07318],[75.71473,12.07044],[75.71545,12.08166],[75.71769,12.08229],[75.71793,12.08558],[75.71307,12.09048],[75.70213,12.09229],[75.70326,12.10817],[75.69554,12.11049],[75.68718,12.11025],[75.68364,12.10449],[75.67988,12.10273],[75.67687,12.0982],[75.66742,12.09731],[75.66198,12.09918],[75.653,12.10791],[75.65276,12.11005],[75.64908,12.10933],[75.64658,12.1158],[75.64753,12.12192],[75.64408,12.12552],[75.64319,12.13865],[75.64205,12.1398],[75.63826,12.13895],[75.6392,12.14336],[75.63605,12.14917],[75.63133,12.14878],[75.61903,12.15652],[75.61496,12.1556],[75.61125,12.15262],[75.60691,12.15549],[75.60197,12.15364],[75.5959,12.15432],[75.59293,12.14778],[75.59046,12.15249],[75.58375,12.15699],[75.58331,12.15912],[75.5772,12.15775],[75.56978,12.17285],[75.56159,12.17505],[75.55935,12.1775],[75.55851,12.18207],[75.55497,12.18318],[75.55262,12.19285],[75.54859,12.19263],[75.54625,12.19794],[75.54118,12.19755],[75.5398,12.20273],[75.53649,12.20128],[75.53416,12.20293],[75.53261,12.20145],[75.53194,12.20567],[75.53703,12.20808],[75.53969,12.21681],[75.52691,12.22569],[75.52833,12.23159],[75.52111,12.23613],[75.51861,12.24351],[75.5198,12.24621],[75.51159,12.25306],[75.51178,12.25958],[75.50583,12.26458],[75.5054,12.27074],[75.49387,12.27279],[75.48692,12.28428],[75.48663,12.2886],[75.48101,12.29217],[75.4794,12.29541],[75.47547,12.29596],[75.47015,12.30071],[75.46374,12.2983],[75.4599,12.29404],[75.44573,12.29763],[75.4412,12.2966],[75.43635,12.29845],[75.43302,12.29734],[75.43009,12.29901],[75.42738,12.29781],[75.4266,12.29561],[75.42284,12.2951],[75.4211,12.29171],[75.41356,12.2912],[75.42451,12.29993],[75.42411,12.30292],[75.42776,12.30405],[75.42829,12.30699],[75.43215,12.30899],[75.43109,12.31059],[75.42716,12.31072],[75.42028,12.31898],[75.41864,12.32917],[75.41619,12.32993],[75.41539,12.34006],[75.4104,12.34719],[75.41168,12.34914],[75.41544,12.34961],[75.41964,12.35694],[75.42193,12.37266],[75.41312,12.38029],[75.40553,12.37906],[75.40154,12.38252],[75.4004,12.38074],[75.39857,12.38143],[75.39229,12.38999],[75.38649,12.39237],[75.38394,12.39091],[75.37924,12.39236],[75.37773,12.39842],[75.37261,12.40025],[75.37144,12.40789],[75.36617,12.41183],[75.37149,12.43772],[75.36885,12.44217],[75.37029,12.44887],[75.36563,12.45675],[75.36617,12.4582],[75.37126,12.45656],[75.37422,12.45973],[75.38187,12.45663],[75.38629,12.45828],[75.39221,12.45512],[75.3934,12.45137],[75.39962,12.45493],[75.40398,12.45494],[75.41332,12.45857],[75.41565,12.46216],[75.41572,12.46598],[75.42326,12.46678],[75.42487,12.46892],[75.42482,12.47426],[75.4203,12.47976],[75.42058,12.48852],[75.41733,12.49337],[75.41866,12.49554],[75.41613,12.50003],[75.41195,12.50201],[75.40806,12.49864],[75.403,12.49774],[75.40008,12.5],[75.39905,12.50352],[75.3946,12.50277],[75.39169,12.49936],[75.38741,12.5019],[75.38223,12.50202],[75.37779,12.4951],[75.36805,12.49121],[75.36864,12.48728],[75.3716,12.4869],[75.3726,12.47703],[75.371,12.4748],[75.36751,12.47533],[75.36082,12.46497],[75.35173,12.46488],[75.34611,12.46298],[75.3366,12.46408],[75.34154,12.46912],[75.3361,12.47701],[75.33742,12.48852],[75.33353,12.49205],[75.33448,12.49549],[75.333,12.49833],[75.32451,12.49673],[75.31503,12.49711],[75.31445,12.50292],[75.30456,12.50408],[75.30321,12.51426],[75.3041,12.52328],[75.29652,12.52319],[75.29554,12.52525],[75.29135,12.52685],[75.28031,12.52531],[75.27864,12.53146],[75.27396,12.5356],[75.27449,12.54022],[75.27056,12.54834],[75.27215,12.55484],[75.27006,12.55845],[75.27289,12.56897],[75.27855,12.5716],[75.28467,12.56957],[75.29054,12.58261],[75.30804,12.57833],[75.31539,12.57254],[75.31869,12.57749],[75.32643,12.58139],[75.328,12.58429],[75.32701,12.59239],[75.31216,12.58972],[75.30189,12.60541],[75.29907,12.6059],[75.29156,12.60195],[75.28958,12.6104],[75.28598,12.61121],[75.2817,12.61644],[75.27635,12.61851],[75.27261,12.61556],[75.26716,12.61466],[75.26513,12.61117],[75.266,12.60719],[75.26126,12.59817],[75.25684,12.59651],[75.25534,12.59138],[75.25178,12.589],[75.2497,12.58457],[75.24158,12.58003],[75.23867,12.58071],[75.23898,12.57802],[75.2371,12.57614],[75.2375,12.56976],[75.22919,12.56853],[75.22393,12.57036],[75.22032,12.5691],[75.21777,12.57636],[75.21262,12.57816],[75.20949,12.59107],[75.20114,12.58773],[75.20173,12.59336],[75.20786,12.59573],[75.20998,12.60023],[75.20775,12.60269],[75.20674,12.60801],[75.20095,12.60961],[75.19926,12.61207],[75.19877,12.61443],[75.20281,12.62759],[75.20174,12.63002],[75.19374,12.63031],[75.18822,12.63314],[75.18555,12.63185],[75.1829,12.6328],[75.16996,12.62227],[75.16417,12.62407],[75.16068,12.62213],[75.15392,12.62497],[75.14444,12.64049],[75.1433,12.63966],[75.13851,12.64344],[75.15081,12.65006],[75.15212,12.65611],[75.16203,12.67196],[75.14988,12.67333],[75.14903,12.67616],[75.152,12.68324],[75.14639,12.68219],[75.14319,12.67839],[75.13982,12.68059],[75.13764,12.67676],[75.13467,12.67805],[75.13251,12.67614],[75.12841,12.67694],[75.12492,12.68148],[75.12312,12.68137],[75.12213,12.67891],[75.11739,12.68128],[75.11146,12.68182],[75.11259,12.68522],[75.11018,12.68845],[75.11062,12.69058],[75.10727,12.69105],[75.10625,12.69681],[75.10022,12.69967],[75.09232,12.69981],[75.08601,12.70403],[75.08095,12.69907],[75.08115,12.69738],[75.08508,12.69567],[75.0831,12.69333],[75.08558,12.69022],[75.0855,12.68247],[75.08744,12.6792],[75.08517,12.67476],[75.07415,12.67225],[75.06858,12.66467],[75.06525,12.66483],[75.05981,12.67177],[75.05752,12.66605],[75.05397,12.67022],[75.04664,12.66757],[75.04257,12.67285],[75.04146,12.67873],[75.043,12.68224],[75.0405,12.68535],[75.04392,12.69264],[75.04855,12.69404],[75.05385,12.69052],[75.05559,12.69346],[75.05023,12.70439],[75.05189,12.7069],[75.0543,12.70713],[75.05389,12.71112],[75.05034,12.71632],[75.05246,12.72008],[75.04792,12.7206],[75.04431,12.72311],[75.04268,12.72077],[75.03905,12.72382],[75.03358,12.72351],[75.02658,12.71931],[75.01864,12.72111],[75.01504,12.71423],[75.00099,12.71639],[75.00096,12.71956],[75.00494,12.72028],[75.0134,12.72795],[75.0,12.73205],[74.99248,12.73989],[74.99047,12.73873],[74.99135,12.73695],[74.99002,12.73608],[74.99039,12.73746],[74.98881,12.73821],[74.98893,12.73629],[74.98724,12.73657],[74.98559,12.7336],[74.98327,12.7372],[74.98545,12.73889],[74.98403,12.73993],[74.98464,12.74308],[74.98768,12.74165],[74.9966,12.75208],[74.99868,12.75699],[75.00433,12.76043],[75.00606,12.76612],[75.00945,12.76751],[75.00621,12.77084],[75.00339,12.77798],[75.00297,12.78438],[75.00509,12.79031],[75.00103,12.79142],[75.00018,12.79022],[75.00243,12.78834],[74.99831,12.78594],[74.99875,12.78908],[74.99602,12.7893],[74.99122,12.79553],[74.98903,12.79546]],[[75.53771,11.7628],[75.53862,11.76014],[75.5441,11.7591],[75.54644,11.75627],[75.54472,11.75353],[75.54207,11.73719],[75.54324,11.7344],[75.55562,11.7276],[75.55534,11.72147],[75.5478,11.71543],[75.54578,11.71751],[75.5415,11.71553],[75.5376,11.71607],[75.53653,11.7193],[75.5325,11.71621],[75.53325,11.71391],[75.53737,11.71218],[75.53083,11.71021],[75.531,11.70826],[75.52903,11.70979],[75.53218,11.71393],[75.53156,11.71588],[75.52783,11.71601],[75.52669,11.72663],[75.53082,11.73096],[75.53172,11.73466],[75.53602,11.73355],[75.54011,11.73491],[75.54146,11.73889],[75.54026,11.74847],[75.53744,11.74866],[75.53472,11.7526],[75.53438,11.75638],[75.53123,11.75871],[75.53771,11.7628]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"33","area_level":"State","area_name":"Tamil Nadu","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.21,8.83922],[78.20954,8.83979],[78.20864,8.84022],[78.20698,8.84182],[78.20662,8.84206],[78.20584,8.84222],[78.20546,8.84209],[78.20525,8.84178],[78.20522,8.8413],[78.20586,8.84057],[78.2068,8.83999],[78.20875,8.83928],[78.20937,8.83836],[78.2103,8.83595],[78.21049,8.83503],[78.21094,8.83421],[78.21192,8.83377],[78.21327,8.83227],[78.21516,8.83183],[78.21615,8.83192],[78.21639,8.83212],[78.21636,8.83333],[78.21651,8.83352],[78.2172,8.83372],[78.21813,8.83364],[78.21883,8.83368],[78.21922,8.8339],[78.21932,8.83417],[78.21921,8.83461],[78.21882,8.83513],[78.21803,8.83684],[78.21744,8.83745],[78.21708,8.83801],[78.21653,8.84082],[78.21622,8.84147],[78.21579,8.84201],[78.21537,8.84215],[78.21286,8.84147],[78.21129,8.84148],[78.21091,8.84139],[78.21063,8.84115],[78.21042,8.84069],[78.21019,8.83925],[78.21009,8.83914],[78.21,8.83922]]],[[[78.22342,8.87278],[78.22299,8.87289],[78.2227,8.87291],[78.22257,8.87291],[78.2222,8.87279],[78.22194,8.8726],[78.22176,8.87217],[78.22181,8.87204],[78.22191,8.872],[78.22212,8.87205],[78.22233,8.87221],[78.2226,8.87231],[78.22286,8.87222],[78.22346,8.87128],[78.22428,8.87035],[78.22458,8.86962],[78.22493,8.86786],[78.22551,8.86681],[78.22592,8.86635],[78.2261,8.8664],[78.2261,8.86689],[78.2257,8.86771],[78.22548,8.86835],[78.22558,8.86854],[78.22574,8.86855],[78.2259,8.86849],[78.22629,8.86773],[78.22642,8.86722],[78.22643,8.86657],[78.22659,8.8663],[78.22666,8.86626],[78.22678,8.86632],[78.22714,8.86681],[78.22755,8.86757],[78.22785,8.8684],[78.22782,8.86933],[78.22767,8.87018],[78.2274,8.87082],[78.22709,8.87119],[78.22519,8.87189],[78.22438,8.87226],[78.22342,8.87278]]],[[[78.27373,8.94396],[78.27371,8.9443],[78.27362,8.94448],[78.27329,8.94456],[78.27309,8.94448],[78.27297,8.94425],[78.27298,8.94378],[78.27291,8.9435],[78.27265,8.9433],[78.27247,8.94329],[78.27201,8.9436],[78.27179,8.94367],[78.27162,8.94355],[78.27148,8.94325],[78.27103,8.94248],[78.27087,8.94235],[78.27069,8.94235],[78.27064,8.94244],[78.27063,8.94253],[78.27069,8.94281],[78.27107,8.94339],[78.27112,8.94353],[78.271,8.94358],[78.27086,8.94356],[78.27062,8.94345],[78.27023,8.94317],[78.26979,8.94247],[78.26946,8.94186],[78.26912,8.94043],[78.26905,8.93989],[78.26924,8.93955],[78.26955,8.93914],[78.2699,8.93903],[78.27044,8.93911],[78.27086,8.93929],[78.27131,8.93961],[78.27205,8.94052],[78.27334,8.94249],[78.27358,8.94329],[78.27373,8.94396]]],[[[78.25309,8.95206],[78.25353,8.95225],[78.25436,8.95275],[78.25506,8.95352],[78.2553,8.95411],[78.25522,8.95457],[78.25504,8.95514],[78.25483,8.95548],[78.25438,8.95582],[78.25318,8.95632],[78.25207,8.95642],[78.25189,8.95639],[78.25166,8.95627],[78.2515,8.95598],[78.25156,8.95572],[78.25174,8.95563],[78.25191,8.95562],[78.25202,8.95555],[78.25201,8.9554],[78.25195,8.95524],[78.25183,8.95509],[78.25139,8.95473],[78.25101,8.95421],[78.25073,8.95367],[78.25054,8.9531],[78.25057,8.95285],[78.25067,8.95267],[78.25096,8.95247],[78.25152,8.95222],[78.25226,8.95198],[78.25309,8.95206]]],[[[78.49274,9.08642],[78.49337,9.08669],[78.49398,9.08729],[78.49467,9.08831],[78.49513,9.08879],[78.49556,9.08936],[78.49566,9.08972],[78.49565,9.0902],[78.49555,9.09066],[78.49522,9.09107],[78.49482,9.09135],[78.49436,9.09155],[78.49379,9.0917],[78.49251,9.09194],[78.49221,9.09205],[78.49047,9.0933],[78.49012,9.09349],[78.48994,9.09343],[78.48983,9.09328],[78.48952,9.092],[78.48857,9.09071],[78.48766,9.08974],[78.4872,9.08914],[78.48722,9.08871],[78.4875,9.08824],[78.48812,9.08774],[78.48958,9.08703],[78.49126,9.08646],[78.49207,9.08637],[78.49274,9.08642]]],[[[78.5368,9.10186],[78.53765,9.10213],[78.5384,9.1026],[78.53909,9.10377],[78.53945,9.10457],[78.53958,9.10513],[78.53952,9.10554],[78.5394,9.10584],[78.53913,9.10605],[78.53888,9.10614],[78.53869,9.10617],[78.53857,9.10613],[78.53835,9.105],[78.53819,9.10479],[78.5379,9.10461],[78.53655,9.10409],[78.53601,9.10377],[78.53548,9.1033],[78.53508,9.10277],[78.53503,9.10246],[78.53507,9.10224],[78.5353,9.10206],[78.53564,9.10192],[78.53615,9.10184],[78.5368,9.10186]]],[[[78.58171,9.11097],[78.5808,9.11162],[78.57986,9.11283],[78.57955,9.1129],[78.57934,9.11282],[78.57849,9.11173],[78.57758,9.11015],[78.57654,9.10924],[78.57622,9.10882],[78.57578,9.10812],[78.57525,9.10664],[78.57495,9.10617],[78.57453,9.10571],[78.57311,9.10467],[78.57192,9.10417],[78.57104,9.10353],[78.57071,9.10283],[78.57059,9.10228],[78.57071,9.10155],[78.57095,9.10113],[78.57161,9.10066],[78.57265,9.10051],[78.57452,9.10102],[78.57506,9.10099],[78.57647,9.10052],[78.57709,9.10054],[78.57858,9.10111],[78.57915,9.10121],[78.57975,9.1011],[78.58011,9.10116],[78.58054,9.10136],[78.58093,9.10173],[78.58128,9.1026],[78.58189,9.1035],[78.58356,9.10453],[78.58442,9.10609],[78.58474,9.10638],[78.58736,9.10655],[78.58785,9.10683],[78.58803,9.10721],[78.58788,9.1077],[78.58677,9.10886],[78.58566,9.11114],[78.58535,9.11134],[78.58438,9.11143],[78.58269,9.11085],[78.5822,9.11081],[78.58171,9.11097]]],[[[79.48929,9.11904],[79.48986,9.11979],[79.49128,9.12112],[79.49285,9.12237],[79.49357,9.12274],[79.49576,9.12293],[79.49659,9.12317],[79.49694,9.1236],[79.49698,9.12393],[79.49651,9.12483],[79.49606,9.12529],[79.49558,9.12549],[79.49492,9.12539],[79.49368,9.12459],[79.49306,9.12448],[79.49211,9.1242],[79.49188,9.12403],[79.49107,9.12292],[79.48973,9.12051],[79.48879,9.11937],[79.48879,9.11909],[79.4889,9.11894],[79.48906,9.11894],[79.48929,9.11904]]],[[[79.48889,9.12751],[79.48897,9.12778],[79.48896,9.128],[79.48886,9.12819],[79.48871,9.12825],[79.4883,9.12823],[79.48764,9.12793],[79.48734,9.12772],[79.48719,9.12755],[79.48712,9.12733],[79.48725,9.12711],[79.48755,9.12702],[79.488,9.12725],[79.48823,9.12725],[79.48831,9.12709],[79.48826,9.12665],[79.48831,9.12652],[79.48858,9.1266],[79.48872,9.12692],[79.48889,9.12751]]],[[[79.48191,9.1302],[79.4817,9.13043],[79.4815,9.13055],[79.48106,9.13061],[79.48063,9.13056],[79.47992,9.13008],[79.47973,9.12989],[79.47973,9.1297],[79.48,9.12962],[79.48069,9.12995],[79.48113,9.13006],[79.48137,9.12997],[79.48145,9.12965],[79.48118,9.12889],[79.48118,9.12874],[79.48131,9.12863],[79.48163,9.12869],[79.48194,9.12925],[79.48203,9.12987],[79.48191,9.1302]]],[[[79.4836,9.13352],[79.48354,9.13393],[79.48347,9.13409],[79.48334,9.13424],[79.48309,9.1343],[79.48287,9.1343],[79.48203,9.13367],[79.48156,9.13311],[79.48151,9.13289],[79.48165,9.1327],[79.48197,9.13284],[79.48244,9.13323],[79.4826,9.13339],[79.48277,9.1334],[79.48283,9.13334],[79.48281,9.13316],[79.48219,9.13234],[79.4821,9.132],[79.48228,9.13184],[79.48262,9.13203],[79.48307,9.13245],[79.48347,9.1331],[79.4836,9.13352]]],[[[79.47394,9.13526],[79.47425,9.13594],[79.47425,9.13624],[79.47396,9.13705],[79.47375,9.13779],[79.47361,9.1384],[79.47288,9.13919],[79.47228,9.13976],[79.4718,9.14004],[79.47129,9.1401],[79.47069,9.13999],[79.46981,9.1394],[79.46981,9.13888],[79.46998,9.1387],[79.47097,9.13866],[79.47116,9.1386],[79.47181,9.13788],[79.47231,9.13769],[79.47347,9.13661],[79.47359,9.13616],[79.47344,9.13557],[79.47336,9.13536],[79.47341,9.13514],[79.47354,9.13501],[79.47369,9.13501],[79.47394,9.13526]]],[[[79.46807,9.14062],[79.4681,9.14086],[79.46796,9.14125],[79.46781,9.14185],[79.46774,9.1425],[79.46764,9.14299],[79.46753,9.14323],[79.46741,9.14338],[79.4662,9.14357],[79.46528,9.14346],[79.46512,9.14332],[79.46507,9.14315],[79.46509,9.14294],[79.46609,9.14196],[79.46751,9.14051],[79.46779,9.14039],[79.46807,9.14062]]],[[[79.45435,9.14372],[79.45443,9.144],[79.4545,9.14464],[79.45463,9.14499],[79.45471,9.14532],[79.45441,9.14561],[79.45413,9.14563],[79.45378,9.1455],[79.45378,9.1439],[79.45397,9.14367],[79.45435,9.14372]]],[[[79.45643,9.14704],[79.45623,9.14739],[79.45599,9.14755],[79.45575,9.14763],[79.45555,9.14763],[79.45537,9.14756],[79.45529,9.14741],[79.45506,9.14707],[79.45508,9.14683],[79.45523,9.14674],[79.45561,9.14683],[79.45573,9.14683],[79.45593,9.14672],[79.45618,9.14656],[79.45643,9.1467],[79.45643,9.14704]]],[[[79.45377,9.14858],[79.45328,9.1493],[79.45298,9.14956],[79.45269,9.14972],[79.45235,9.14978],[79.45197,9.14969],[79.45125,9.14938],[79.45046,9.14859],[79.45022,9.14829],[79.45009,9.14795],[79.45025,9.14765],[79.45046,9.14762],[79.45093,9.1479],[79.45138,9.14788],[79.45243,9.14719],[79.45257,9.14652],[79.45266,9.14642],[79.45322,9.14677],[79.45354,9.14691],[79.45412,9.14702],[79.45432,9.14714],[79.45451,9.1474],[79.45446,9.14773],[79.45377,9.14858]]],[[[79.44502,9.15107],[79.44563,9.15161],[79.44579,9.15206],[79.44568,9.15233],[79.44549,9.15273],[79.44562,9.15308],[79.44574,9.15331],[79.4458,9.15349],[79.44572,9.15366],[79.44552,9.15377],[79.44533,9.15377],[79.44511,9.15366],[79.445,9.15338],[79.44454,9.15234],[79.44446,9.15165],[79.44456,9.1512],[79.4447,9.15103],[79.44502,9.15107]]],[[[79.44582,9.15793],[79.44547,9.15821],[79.44506,9.15821],[79.44448,9.15804],[79.44375,9.15737],[79.4435,9.15693],[79.44358,9.15664],[79.44362,9.15648],[79.44375,9.15634],[79.44413,9.15642],[79.44478,9.15728],[79.44498,9.15737],[79.44533,9.15714],[79.44552,9.15685],[79.44559,9.15667],[79.44625,9.15479],[79.447,9.15282],[79.44729,9.15265],[79.44765,9.15279],[79.44782,9.15321],[79.44767,9.15393],[79.44701,9.15545],[79.44664,9.15605],[79.44618,9.15728],[79.44582,9.15793]]],[[[78.73206,9.15442],[78.73199,9.15518],[78.7318,9.15564],[78.7316,9.15584],[78.73135,9.15591],[78.7311,9.15588],[78.73086,9.15577],[78.73052,9.15543],[78.73026,9.15492],[78.72971,9.15422],[78.72945,9.15408],[78.72918,9.15406],[78.72879,9.15409],[78.72837,9.15392],[78.72813,9.15354],[78.72801,9.15321],[78.72803,9.1528],[78.72816,9.15258],[78.72836,9.15241],[78.72874,9.1522],[78.73042,9.15207],[78.73097,9.15212],[78.73119,9.15227],[78.73188,9.15354],[78.73202,9.15398],[78.73206,9.15442]]],[[[78.69545,9.15057],[78.69589,9.15082],[78.69635,9.15131],[78.6968,9.15207],[78.697,9.15259],[78.69702,9.15326],[78.69688,9.15448],[78.69687,9.15516],[78.69675,9.15567],[78.69652,9.15581],[78.6961,9.15583],[78.69552,9.15563],[78.69486,9.15502],[78.69408,9.15354],[78.69384,9.15286],[78.69375,9.15227],[78.69375,9.15175],[78.69387,9.1512],[78.69422,9.15078],[78.69442,9.15065],[78.69466,9.15055],[78.69508,9.15051],[78.69545,9.15057]]],[[[78.75198,9.15539],[78.7523,9.15542],[78.75243,9.15548],[78.75249,9.15554],[78.75253,9.15561],[78.75254,9.1557],[78.75255,9.1562],[78.75254,9.15635],[78.75251,9.15646],[78.75247,9.15656],[78.7524,9.15668],[78.75227,9.15681],[78.75207,9.15695],[78.75197,9.15701],[78.75186,9.15703],[78.75182,9.15702],[78.75133,9.15681],[78.75101,9.15663],[78.75093,9.15657],[78.7509,9.15651],[78.75088,9.15645],[78.75088,9.15636],[78.75091,9.15618],[78.75099,9.15599],[78.7511,9.15581],[78.75126,9.15563],[78.75145,9.15549],[78.7516,9.15543],[78.75179,9.15539],[78.75198,9.15539]]],[[[78.6985,9.15801],[78.69871,9.15811],[78.69888,9.1583],[78.69895,9.15848],[78.69884,9.15869],[78.69861,9.15874],[78.69842,9.15875],[78.69833,9.15871],[78.69807,9.15852],[78.69795,9.15823],[78.69801,9.15811],[78.69809,9.15797],[78.69829,9.15794],[78.6985,9.15801]]],[[[78.82356,9.16604],[78.82367,9.16611],[78.82365,9.16616],[78.82329,9.1662],[78.82261,9.16645],[78.82226,9.16644],[78.82149,9.16618],[78.81956,9.16523],[78.81931,9.16491],[78.81913,9.16436],[78.81908,9.16367],[78.81915,9.16282],[78.81907,9.16253],[78.8189,9.16227],[78.81867,9.16206],[78.81842,9.1619],[78.81803,9.16174],[78.81781,9.16155],[78.81689,9.16052],[78.81692,9.16037],[78.81701,9.16037],[78.81754,9.16066],[78.81849,9.16066],[78.81865,9.1607],[78.81898,9.16117],[78.81938,9.16204],[78.81998,9.16257],[78.82018,9.16288],[78.82097,9.16344],[78.82105,9.16358],[78.82119,9.16432],[78.82181,9.16468],[78.82217,9.16562],[78.82229,9.16581],[78.82241,9.16591],[78.82264,9.16598],[78.82356,9.16604]]],[[[78.82707,9.16733],[78.82727,9.16763],[78.82778,9.16812],[78.82809,9.16854],[78.82887,9.17008],[78.82904,9.17051],[78.82905,9.17091],[78.82886,9.17248],[78.82867,9.17349],[78.82852,9.17369],[78.82836,9.17343],[78.82799,9.17231],[78.82788,9.17182],[78.82717,9.17063],[78.82687,9.16956],[78.82671,9.1694],[78.82593,9.16895],[78.8256,9.16869],[78.82539,9.16845],[78.82506,9.16782],[78.82459,9.16729],[78.82414,9.16688],[78.82396,9.16658],[78.824,9.16637],[78.82414,9.16623],[78.82494,9.16633],[78.82568,9.16631],[78.82612,9.16635],[78.82659,9.16653],[78.82707,9.16733]]],[[[78.91048,9.186],[78.91049,9.18617],[78.91049,9.18631],[78.91041,9.18646],[78.91023,9.18656],[78.91012,9.18657],[78.91009,9.18654],[78.91004,9.18645],[78.91004,9.18631],[78.91006,9.18614],[78.91013,9.18599],[78.9103,9.18593],[78.91048,9.186]]],[[[78.96983,9.18619],[78.96959,9.18624],[78.9694,9.18638],[78.96933,9.18652],[78.96911,9.1874],[78.96903,9.1876],[78.96886,9.18782],[78.96862,9.18796],[78.9684,9.18801],[78.96812,9.18801],[78.96757,9.18792],[78.96719,9.18772],[78.96685,9.18736],[78.96666,9.18699],[78.96661,9.18649],[78.96664,9.18563],[78.96677,9.18435],[78.96684,9.18387],[78.96695,9.18354],[78.96714,9.18319],[78.96741,9.18292],[78.96768,9.18278],[78.96796,9.1828],[78.96824,9.18299],[78.96844,9.18328],[78.96843,9.18347],[78.96764,9.18455],[78.96759,9.18478],[78.96768,9.18507],[78.96809,9.18574],[78.96862,9.18613],[78.96886,9.18618],[78.96907,9.18602],[78.96935,9.1855],[78.96949,9.1849],[78.96966,9.18467],[78.96989,9.1845],[78.97012,9.18444],[78.9704,9.18451],[78.97091,9.18478],[78.97112,9.18497],[78.97116,9.18514],[78.97112,9.18535],[78.97097,9.18566],[78.97079,9.18587],[78.97065,9.18597],[78.97039,9.18608],[78.97008,9.18617],[78.96983,9.18619]]],[[[78.93735,9.18248],[78.93831,9.18307],[78.94033,9.18332],[78.94288,9.18492],[78.94326,9.18551],[78.94316,9.18667],[78.94348,9.18743],[78.94324,9.18783],[78.94272,9.18796],[78.94074,9.18742],[78.9391,9.18512],[78.93638,9.18344],[78.93288,9.18239],[78.93187,9.18256],[78.92813,9.18456],[78.92519,9.18488],[78.92263,9.18437],[78.919,9.18408],[78.91652,9.18296],[78.91479,9.18278],[78.9137,9.18233],[78.91181,9.18255],[78.90884,9.1815],[78.90718,9.18264],[78.90672,9.18444],[78.90625,9.18519],[78.90465,9.18343],[78.90103,9.18271],[78.89938,9.18069],[78.89847,9.18028],[78.89771,9.18025],[78.89726,9.17967],[78.89761,9.17928],[78.89922,9.17898],[78.90029,9.17837],[78.90143,9.17861],[78.90356,9.17846],[78.90463,9.17919],[78.90578,9.17927],[78.90739,9.18018],[78.90957,9.1797],[78.91098,9.18008],[78.91216,9.18001],[78.91477,9.18111],[78.91747,9.18186],[78.91971,9.18294],[78.92354,9.18332],[78.92726,9.18311],[78.9297,9.18183],[78.93078,9.18152],[78.93382,9.1822],[78.93735,9.18248]]],[[[78.70425,9.18408],[78.70428,9.1842],[78.70419,9.18443],[78.70393,9.18478],[78.70308,9.18548],[78.70252,9.18584],[78.70211,9.18606],[78.70195,9.18604],[78.70191,9.18599],[78.70188,9.18589],[78.7019,9.18582],[78.70251,9.1854],[78.70301,9.18502],[78.70361,9.18454],[78.70415,9.18406],[78.70425,9.18408]]],[[[79.0771,9.20222],[79.07586,9.20234],[79.07337,9.20362],[79.07115,9.20517],[79.07062,9.20653],[79.07074,9.20782],[79.07119,9.20925],[79.07099,9.20984],[79.0704,9.21061],[79.0689,9.21054],[79.06792,9.21014],[79.06747,9.20969],[79.0667,9.20761],[79.06403,9.20636],[79.06007,9.20284],[79.05696,9.19919],[79.05677,9.19802],[79.05736,9.19666],[79.05789,9.19621],[79.05893,9.19602],[79.06192,9.19772],[79.06419,9.19994],[79.06556,9.2006],[79.06647,9.20054],[79.0749,9.19799],[79.07941,9.1962],[79.08138,9.19478],[79.08315,9.19291],[79.08439,9.19214],[79.08635,9.19169],[79.08746,9.19196],[79.08869,9.19281],[79.09103,9.19593],[79.09128,9.19671],[79.09102,9.19755],[79.09023,9.19859],[79.08807,9.20033],[79.08761,9.20013],[79.08722,9.19961],[79.08677,9.19857],[79.08618,9.19876],[79.08579,9.19941],[79.08513,9.19986],[79.08357,9.19985],[79.08311,9.20037],[79.08317,9.20095],[79.08382,9.20173],[79.08388,9.20225],[79.08329,9.20277],[79.08198,9.20321],[79.0801,9.20243],[79.0771,9.20222]]],[[[79.1407,9.21328],[79.14083,9.21341],[79.14113,9.21359],[79.14118,9.21364],[79.14139,9.21378],[79.14157,9.21409],[79.14157,9.2142],[79.14153,9.21425],[79.14117,9.21428],[79.14047,9.2142],[79.14011,9.21418],[79.14,9.21414],[79.13992,9.21409],[79.13985,9.21396],[79.13979,9.21366],[79.1397,9.21346],[79.13959,9.21329],[79.13948,9.21322],[79.13943,9.21322],[79.1394,9.21324],[79.13923,9.21365],[79.13917,9.21371],[79.13913,9.21379],[79.13905,9.21382],[79.13899,9.21379],[79.13895,9.21372],[79.13891,9.21361],[79.13887,9.21335],[79.1389,9.21307],[79.13897,9.21281],[79.13919,9.21272],[79.13953,9.21264],[79.13963,9.21264],[79.13987,9.21271],[79.14,9.21273],[79.14056,9.21306],[79.1407,9.21328]]],[[[79.12555,9.21742],[79.12523,9.21748],[79.12434,9.21734],[79.12425,9.2172],[79.12428,9.21712],[79.12525,9.21643],[79.12554,9.21612],[79.12693,9.21508],[79.12698,9.21494],[79.12676,9.21495],[79.12635,9.21524],[79.12598,9.21529],[79.12525,9.21555],[79.12486,9.21581],[79.1244,9.21589],[79.124,9.21586],[79.12231,9.21614],[79.12224,9.21606],[79.12226,9.21574],[79.12252,9.21543],[79.12413,9.21519],[79.12463,9.21496],[79.1253,9.21486],[79.12602,9.21451],[79.12672,9.21436],[79.1281,9.21391],[79.12859,9.21383],[79.1295,9.21379],[79.13059,9.21384],[79.13128,9.21399],[79.13283,9.21453],[79.13311,9.21465],[79.13331,9.21503],[79.13398,9.21557],[79.134,9.21565],[79.13391,9.2157],[79.13363,9.21569],[79.13321,9.21555],[79.1327,9.21519],[79.13188,9.21474],[79.13159,9.21475],[79.13154,9.21479],[79.13159,9.21487],[79.13292,9.21575],[79.13337,9.21587],[79.13402,9.21589],[79.13411,9.21598],[79.13352,9.21615],[79.13299,9.21616],[79.13263,9.21596],[79.13172,9.21509],[79.13146,9.21505],[79.13087,9.21513],[79.1303,9.21499],[79.12969,9.21499],[79.12937,9.21469],[79.12912,9.21458],[79.12869,9.21483],[79.12773,9.21576],[79.12713,9.21585],[79.12707,9.216],[79.12739,9.21602],[79.12831,9.21588],[79.12868,9.21577],[79.12944,9.21533],[79.13019,9.2152],[79.13064,9.21537],[79.13139,9.21532],[79.13168,9.21538],[79.13183,9.21546],[79.13225,9.21595],[79.13261,9.21617],[79.13321,9.21633],[79.13321,9.21645],[79.13174,9.21625],[79.13111,9.21622],[79.12646,9.21736],[79.12606,9.21736],[79.1256,9.21714],[79.12554,9.2172],[79.12555,9.21742]]],[[[79.23573,9.24348],[79.23561,9.24359],[79.23539,9.24365],[79.23439,9.24328],[79.2338,9.24333],[79.23339,9.24347],[79.2329,9.24356],[79.2328,9.24353],[79.23275,9.24345],[79.23275,9.24308],[79.23285,9.24287],[79.23306,9.24262],[79.23429,9.24144],[79.23491,9.24104],[79.23538,9.24045],[79.23559,9.24027],[79.23583,9.2402],[79.23602,9.2402],[79.23727,9.2405],[79.23814,9.24085],[79.23846,9.24103],[79.23863,9.24121],[79.23866,9.2413],[79.23864,9.24146],[79.23854,9.24177],[79.23846,9.24189],[79.23836,9.24195],[79.23823,9.24197],[79.2377,9.24194],[79.2375,9.24196],[79.23718,9.24204],[79.237,9.24213],[79.23645,9.24263],[79.23573,9.24348]]],[[[79.20045,9.25068],[79.19769,9.25264],[79.19523,9.2529],[79.19089,9.25212],[79.18714,9.25062],[79.18194,9.25012],[79.18042,9.24963],[79.17949,9.24862],[79.179,9.24571],[79.17805,9.24273],[79.17906,9.24012],[79.17931,9.2382],[79.17983,9.23747],[79.18185,9.23699],[79.183,9.23587],[79.18604,9.23541],[79.18685,9.235],[79.18989,9.23095],[79.1915,9.23114],[79.1929,9.23188],[79.19395,9.23208],[79.1976,9.23035],[79.19881,9.23018],[79.1998,9.23036],[79.20086,9.23132],[79.20281,9.23388],[79.20249,9.23687],[79.20304,9.23871],[79.20384,9.23972],[79.20696,9.24029],[79.20898,9.24012],[79.21046,9.24069],[79.21286,9.24044],[79.21418,9.24131],[79.21468,9.24324],[79.2152,9.24405],[79.21839,9.24464],[79.21996,9.24581],[79.22225,9.24594],[79.22319,9.24646],[79.22365,9.24715],[79.22335,9.24832],[79.2228,9.24867],[79.22154,9.24885],[79.21957,9.25026],[79.21785,9.25044],[79.21785,9.25023],[79.2198,9.24986],[79.22202,9.24811],[79.22182,9.24759],[79.22088,9.24733],[79.21947,9.24778],[79.21835,9.24774],[79.21227,9.2464],[79.20781,9.24436],[79.20335,9.24171],[79.20227,9.24149],[79.20179,9.24182],[79.20172,9.24221],[79.20245,9.24409],[79.20329,9.24409],[79.20374,9.24439],[79.20426,9.2456],[79.20653,9.24586],[79.20701,9.24673],[79.2088,9.24722],[79.20894,9.24768],[79.20856,9.24849],[79.20867,9.24888],[79.21269,9.24916],[79.21535,9.25037],[79.21714,9.25015],[79.21774,9.25021],[79.21774,9.25042],[79.20894,9.2507],[79.20691,9.25024],[79.20316,9.24853],[79.20208,9.24895],[79.20045,9.25068]]],[[[79.76894,10.90096],[79.76908,10.90176],[79.7683,10.90159],[79.76719,10.90119],[79.76688,10.90059],[79.76616,10.90061],[79.76606,10.89947],[79.76657,10.89936],[79.76664,10.89863],[79.76782,10.89871],[79.7679,10.89985],[79.76693,10.89997],[79.76695,10.9002],[79.76796,10.90017],[79.76935,10.89997],[79.76955,10.90075],[79.77027,10.90074],[79.77043,10.90139],[79.76949,10.90152],[79.7693,10.9009],[79.76894,10.90096]]],[[[79.76406,10.90731],[79.7651,10.90892],[79.76471,10.91035],[79.76495,10.91129],[79.76406,10.91222],[79.76373,10.90949],[79.76277,10.90902],[79.76247,10.90623],[79.76303,10.90681],[79.76327,10.90519],[79.7637,10.90513],[79.76368,10.90465],[79.76505,10.9046],[79.76508,10.90415],[79.76286,10.90386],[79.76288,10.90343],[79.7623,10.90341],[79.76218,10.90152],[79.76351,10.90158],[79.76361,10.9026],[79.76416,10.9026],[79.76425,10.90347],[79.76524,10.90354],[79.76535,10.90219],[79.76398,10.90209],[79.76398,10.90146],[79.76442,10.90146],[79.7647,10.90177],[79.76561,10.90168],[79.76602,10.90096],[79.76709,10.90156],[79.76789,10.90177],[79.76761,10.9028],[79.7672,10.90268],[79.76709,10.903],[79.7674,10.90332],[79.76709,10.90389],[79.76637,10.90343],[79.76596,10.9043],[79.76604,10.90531],[79.76449,10.9054],[79.76449,10.90586],[79.7639,10.90594],[79.76387,10.90658],[79.76406,10.90731]]],[[[79.78191,11.90229],[79.7815,11.90276],[79.78079,11.90302],[79.77956,11.90436],[79.77882,11.90465],[79.77539,11.90499],[79.77516,11.90183],[79.77198,11.9019],[79.77201,11.90269],[79.76984,11.90277],[79.76925,11.90174],[79.7692,11.90066],[79.77288,11.90044],[79.77286,11.89901],[79.77208,11.89915],[79.77053,11.89088],[79.77107,11.89006],[79.77085,11.88905],[79.77109,11.8875],[79.77178,11.8864],[79.77202,11.88537],[79.77084,11.88403],[79.77102,11.88344],[79.77201,11.88363],[79.77356,11.88329],[79.77284,11.87522],[79.77345,11.87517],[79.7739,11.87654],[79.7762,11.87822],[79.77895,11.87759],[79.77967,11.87791],[79.77952,11.87651],[79.78003,11.87549],[79.7799,11.87239],[79.77924,11.86879],[79.77859,11.86844],[79.77844,11.86767],[79.77769,11.86672],[79.77769,11.86647],[79.77842,11.86655],[79.77833,11.86316],[79.78068,11.86275],[79.78109,11.86281],[79.78137,11.86335],[79.7823,11.86323],[79.78236,11.86279],[79.78521,11.86283],[79.78673,11.86865],[79.78699,11.87018],[79.78678,11.87146],[79.78721,11.87333],[79.78818,11.87368],[79.78825,11.87492],[79.78921,11.87561],[79.78959,11.87716],[79.79023,11.87731],[79.79029,11.87681],[79.79237,11.87685],[79.79258,11.87785],[79.79181,11.87796],[79.79195,11.87954],[79.79212,11.88033],[79.79323,11.88219],[79.79345,11.88365],[79.79483,11.88521],[79.79467,11.88643],[79.79492,11.88801],[79.79566,11.89145],[79.79675,11.89429],[79.79675,11.89811],[79.79649,11.89989],[79.79395,11.89897],[79.79291,11.898],[79.79057,11.89711],[79.78873,11.89676],[79.78767,11.89684],[79.78533,11.89914],[79.78257,11.90127],[79.78191,11.90229]],[[79.78902,11.89504],[79.78926,11.89584],[79.79099,11.89533],[79.79071,11.89455],[79.78902,11.89504]],[[79.79125,11.88393],[79.79159,11.885],[79.79332,11.88455],[79.79295,11.88348],[79.79125,11.88393]]],[[[79.84781,13.32432],[79.84765,13.32435],[79.84752,13.32448],[79.84727,13.32527],[79.84567,13.32758],[79.84508,13.32653],[79.84432,13.32557],[79.84324,13.32498],[79.84291,13.32465],[79.84273,13.32415],[79.84265,13.32324],[79.84268,13.32258],[79.84283,13.32217],[79.84295,13.32195],[79.84316,13.32177],[79.84337,13.32167],[79.84373,13.32163],[79.84407,13.32171],[79.84437,13.32188],[79.8446,13.32209],[79.84477,13.32243],[79.84492,13.32294],[79.84537,13.32311],[79.84561,13.32302],[79.84579,13.3229],[79.846,13.32264],[79.84626,13.32247],[79.84642,13.32246],[79.84667,13.32252],[79.84684,13.32261],[79.84688,13.32282],[79.84658,13.32338],[79.84659,13.32347],[79.8468,13.32368],[79.84698,13.32375],[79.84726,13.32374],[79.84819,13.323],[79.84903,13.32302],[79.84977,13.32318],[79.84992,13.32332],[79.85001,13.32352],[79.85004,13.32399],[79.84965,13.3246],[79.84935,13.32479],[79.84914,13.32481],[79.84807,13.32429],[79.84781,13.32432]]],[[[80.30364,13.47313],[80.29293,13.49599],[80.28121,13.53351],[80.26875,13.56463],[80.26405,13.56264],[80.25111,13.50277],[80.24181,13.47065],[80.24097,13.47331],[80.2352,13.474],[80.22589,13.48507],[80.21383,13.4861],[80.2146,13.49027],[80.2106,13.49048],[80.20995,13.48628],[80.18653,13.49065],[80.17712,13.49117],[80.16304,13.48823],[80.15384,13.49089],[80.14514,13.49142],[80.14553,13.49949],[80.13921,13.50427],[80.13171,13.50144],[80.12674,13.50463],[80.11884,13.50369],[80.11277,13.50595],[80.11151,13.49328],[80.10821,13.48892],[80.10516,13.49335],[80.10093,13.48985],[80.10306,13.48695],[80.07819,13.48881],[80.07714,13.5268],[80.08284,13.5328],[80.08864,13.5354],[80.08126,13.54975],[80.0684,13.54461],[80.06275,13.54536],[80.05693,13.53664],[80.04304,13.53745],[80.0398,13.53901],[80.02844,13.53882],[80.0239,13.54604],[80.02177,13.54495],[80.01689,13.54718],[79.9986,13.54272],[80.00052,13.52568],[80.00799,13.52581],[80.01765,13.52956],[80.01952,13.51925],[80.02719,13.5137],[80.03552,13.51831],[80.04842,13.51225],[80.04662,13.49368],[80.03,13.49819],[80.0159,13.49795],[80.01444,13.49612],[80.01584,13.48903],[80.01352,13.48519],[80.00762,13.48135],[80.00749,13.47864],[79.98408,13.47958],[79.9824,13.47046],[79.97242,13.46909],[79.97111,13.44026],[79.97287,13.43972],[79.97334,13.42967],[79.97073,13.4273],[79.96579,13.42657],[79.96197,13.42338],[79.95749,13.42356],[79.95665,13.42219],[79.95507,13.42238],[79.95572,13.42521],[79.95255,13.42584],[79.94948,13.42375],[79.94818,13.42503],[79.93961,13.42503],[79.94184,13.41672],[79.93457,13.41645],[79.93774,13.41489],[79.93839,13.4128],[79.94221,13.4128],[79.94138,13.41015],[79.9457,13.40773],[79.94128,13.40061],[79.94436,13.39687],[79.95623,13.39714],[79.96145,13.3956],[79.96275,13.39136],[79.95805,13.37918],[79.9539,13.37712],[79.94999,13.37981],[79.94822,13.38324],[79.94766,13.38173],[79.94505,13.38178],[79.94919,13.37767],[79.94947,13.37548],[79.94542,13.36822],[79.94565,13.36374],[79.9422,13.36356],[79.9429,13.36127],[79.94099,13.36128],[79.93801,13.35552],[79.93591,13.35644],[79.93512,13.35411],[79.93377,13.35448],[79.93311,13.35192],[79.9313,13.35151],[79.92921,13.35562],[79.92529,13.35836],[79.91597,13.35987],[79.91681,13.35808],[79.91336,13.35224],[79.9149,13.35156],[79.91485,13.34814],[79.91038,13.34727],[79.90516,13.34353],[79.90381,13.34043],[79.8835,13.33286],[79.8829,13.32332],[79.88085,13.32478],[79.87763,13.32428],[79.86807,13.33107],[79.86281,13.31692],[79.85355,13.32071],[79.85326,13.31596],[79.84805,13.3166],[79.83609,13.31422],[79.82919,13.31751],[79.81736,13.31855],[79.8089,13.31725],[79.80788,13.31413],[79.8036,13.31098],[79.80476,13.30744],[79.80164,13.3005],[79.79173,13.29352],[79.78559,13.29666],[79.78023,13.30615],[79.7752,13.30598],[79.77042,13.30922],[79.76814,13.31392],[79.76027,13.3182],[79.76186,13.31264],[79.76121,13.30707],[79.76028,13.30161],[79.75675,13.29529],[79.75242,13.29166],[79.74423,13.28859],[79.73924,13.29135],[79.73404,13.28902],[79.73065,13.28287],[79.73281,13.28214],[79.73504,13.27594],[79.74025,13.27376],[79.74172,13.27095],[79.74808,13.27099],[79.75164,13.26537],[79.76119,13.25752],[79.7816,13.25159],[79.78721,13.24518],[79.79473,13.2421],[79.79449,13.22632],[79.79325,13.22641],[79.79309,13.2293],[79.78478,13.2279],[79.78115,13.22339],[79.77796,13.22359],[79.77548,13.21531],[79.77292,13.21546],[79.77394,13.21916],[79.76977,13.21771],[79.76884,13.21931],[79.76756,13.21806],[79.76425,13.21911],[79.76096,13.21526],[79.75984,13.20744],[79.75499,13.20648],[79.75008,13.20799],[79.751,13.21642],[79.74797,13.22167],[79.74247,13.22526],[79.74277,13.22829],[79.73908,13.2295],[79.73732,13.23653],[79.73264,13.23688],[79.73281,13.23327],[79.73028,13.23253],[79.7314,13.22245],[79.72588,13.22166],[79.72165,13.22346],[79.71839,13.21652],[79.71641,13.21642],[79.71196,13.21777],[79.71186,13.21927],[79.70794,13.22151],[79.70271,13.2224],[79.70224,13.22415],[79.7061,13.2342],[79.71407,13.23573],[79.71124,13.2425],[79.71255,13.24467],[79.70897,13.24808],[79.70912,13.25104],[79.70327,13.2511],[79.70098,13.25303],[79.69825,13.25099],[79.69634,13.24325],[79.69307,13.24329],[79.69594,13.23856],[79.69268,13.24065],[79.68914,13.23983],[79.68427,13.24443],[79.68024,13.25276],[79.67829,13.26165],[79.68026,13.26224],[79.68057,13.26456],[79.68771,13.2667],[79.68951,13.26374],[79.68913,13.26094],[79.69112,13.26098],[79.69172,13.26355],[79.6933,13.26309],[79.69575,13.26728],[79.69426,13.2705],[79.69082,13.26768],[79.68881,13.27087],[79.69367,13.27348],[79.69393,13.2798],[79.69046,13.28033],[79.68943,13.28303],[79.68319,13.28819],[79.68126,13.28799],[79.68261,13.29582],[79.67814,13.29741],[79.67425,13.28177],[79.67134,13.28012],[79.66857,13.28114],[79.66539,13.27872],[79.66471,13.28194],[79.66664,13.28598],[79.66387,13.28977],[79.65891,13.28669],[79.65783,13.28385],[79.65458,13.28563],[79.65179,13.29183],[79.64248,13.29015],[79.64127,13.27559],[79.63948,13.277],[79.63834,13.28744],[79.63805,13.28425],[79.63326,13.28238],[79.63436,13.27743],[79.63155,13.27719],[79.63406,13.27157],[79.63204,13.2713],[79.63164,13.2697],[79.62768,13.27015],[79.61955,13.27956],[79.61412,13.2827],[79.60609,13.27955],[79.60869,13.28749],[79.60579,13.2882],[79.59606,13.28485],[79.59489,13.27605],[79.59266,13.27506],[79.5946,13.27174],[79.59384,13.26641],[79.59131,13.26143],[79.58257,13.25734],[79.57927,13.25779],[79.57349,13.25936],[79.55841,13.27272],[79.54002,13.27236],[79.5346,13.2754],[79.53366,13.27908],[79.53515,13.28509],[79.53878,13.28785],[79.54123,13.29244],[79.5371,13.29443],[79.53826,13.2959],[79.53508,13.29802],[79.53486,13.30137],[79.54217,13.31024],[79.54411,13.31678],[79.53936,13.32188],[79.54185,13.3273],[79.53731,13.33865],[79.53557,13.33819],[79.52594,13.34439],[79.52179,13.34181],[79.51108,13.34197],[79.51008,13.33417],[79.49738,13.33204],[79.49971,13.34779],[79.48049,13.34],[79.47457,13.34109],[79.47281,13.33924],[79.46544,13.33873],[79.46407,13.34172],[79.45626,13.33857],[79.45311,13.33988],[79.44766,13.34632],[79.43543,13.35171],[79.43573,13.34814],[79.43259,13.34539],[79.43167,13.33671],[79.42099,13.33629],[79.41472,13.33003],[79.41291,13.32993],[79.41254,13.33295],[79.40536,13.33504],[79.40248,13.33023],[79.39836,13.3302],[79.39876,13.32167],[79.4019,13.32148],[79.40202,13.31735],[79.39783,13.31736],[79.39576,13.31572],[79.39347,13.3176],[79.38781,13.31805],[79.38349,13.31326],[79.38189,13.30749],[79.38866,13.30978],[79.38984,13.29743],[79.39412,13.29993],[79.40217,13.29971],[79.4053,13.29757],[79.41577,13.29958],[79.41958,13.29523],[79.41841,13.29352],[79.41883,13.28975],[79.42004,13.28955],[79.43054,13.30025],[79.44542,13.30125],[79.44631,13.29162],[79.43576,13.29128],[79.43472,13.28907],[79.43373,13.27499],[79.41759,13.27177],[79.41396,13.26641],[79.41142,13.26465],[79.40842,13.26527],[79.40847,13.26391],[79.41308,13.26295],[79.41617,13.26041],[79.41686,13.25168],[79.42264,13.25132],[79.42214,13.2494],[79.41704,13.24585],[79.41966,13.24572],[79.4185,13.24296],[79.42143,13.24213],[79.42459,13.24334],[79.42769,13.24155],[79.43243,13.24326],[79.43768,13.24289],[79.43813,13.24003],[79.43138,13.23828],[79.43149,13.23607],[79.43979,13.23586],[79.43507,13.23223],[79.42987,13.23121],[79.43087,13.22985],[79.44,13.2306],[79.43882,13.23436],[79.44149,13.23799],[79.45329,13.23849],[79.4538,13.21694],[79.44853,13.21569],[79.43971,13.21764],[79.43947,13.21968],[79.43738,13.21955],[79.43622,13.21274],[79.44119,13.20827],[79.44385,13.20778],[79.43956,13.20589],[79.43566,13.19721],[79.43238,13.19697],[79.43315,13.19252],[79.43729,13.19106],[79.43843,13.18818],[79.4262,13.19049],[79.42146,13.1906],[79.42114,13.18908],[79.41017,13.19051],[79.40919,13.19404],[79.40084,13.19166],[79.39906,13.18781],[79.3962,13.18868],[79.3958,13.19182],[79.39202,13.19238],[79.38739,13.1891],[79.37403,13.18926],[79.37281,13.18772],[79.37814,13.18471],[79.38561,13.18305],[79.38773,13.17753],[79.38228,13.17962],[79.37555,13.1777],[79.3727,13.17884],[79.36952,13.17291],[79.37924,13.17151],[79.3806,13.16896],[79.38004,13.16293],[79.37011,13.16281],[79.36342,13.16595],[79.35612,13.16458],[79.35746,13.15594],[79.35996,13.15197],[79.36114,13.13864],[79.36339,13.13897],[79.36552,13.13393],[79.36516,13.13067],[79.36175,13.12875],[79.3605,13.12354],[79.3536,13.12053],[79.34511,13.12127],[79.34514,13.12913],[79.34356,13.13102],[79.34464,13.13667],[79.34131,13.13682],[79.33962,13.13045],[79.32902,13.13052],[79.32677,13.12608],[79.31867,13.12347],[79.32424,13.11854],[79.3213,13.11702],[79.31192,13.11657],[79.31903,13.11333],[79.31615,13.11163],[79.30991,13.11201],[79.30931,13.10781],[79.30719,13.10552],[79.30169,13.10778],[79.29815,13.10696],[79.29431,13.1096],[79.29584,13.11237],[79.30154,13.11366],[79.29877,13.11571],[79.29926,13.11866],[79.31246,13.12614],[79.3044,13.12662],[79.28874,13.12199],[79.28567,13.12376],[79.28402,13.12277],[79.28034,13.15287],[79.27736,13.15622],[79.27454,13.15567],[79.26975,13.15375],[79.2674,13.14967],[79.26209,13.14904],[79.26167,13.15187],[79.26027,13.15214],[79.26037,13.15956],[79.25928,13.15887],[79.25746,13.16074],[79.25327,13.16026],[79.25221,13.15772],[79.2547,13.14919],[79.25391,13.14577],[79.24527,13.13828],[79.24018,13.14437],[79.24244,13.14795],[79.24496,13.14882],[79.24339,13.15115],[79.24208,13.14963],[79.24421,13.15274],[79.24312,13.15858],[79.24111,13.15961],[79.24269,13.171],[79.23951,13.17197],[79.23493,13.17084],[79.22969,13.16199],[79.22561,13.15886],[79.22732,13.15562],[79.21811,13.15536],[79.21811,13.15685],[79.21469,13.15696],[79.21003,13.14846],[79.21599,13.14781],[79.21922,13.14562],[79.22197,13.14624],[79.22315,13.14356],[79.22829,13.13998],[79.23287,13.13937],[79.22937,13.13158],[79.23038,13.12637],[79.23841,13.11855],[79.23427,13.11466],[79.23443,13.10523],[79.22461,13.1008],[79.21277,13.09244],[79.20964,13.09272],[79.20086,13.08883],[79.19829,13.08134],[79.1931,13.08229],[79.19069,13.08873],[79.18855,13.0879],[79.18766,13.08346],[79.18066,13.08424],[79.18137,13.0799],[79.18324,13.08193],[79.18533,13.07967],[79.18565,13.07522],[79.18401,13.07273],[79.1908,13.07335],[79.19212,13.06743],[79.18809,13.06566],[79.18732,13.06066],[79.18007,13.06431],[79.1783,13.05919],[79.18474,13.0568],[79.19134,13.05856],[79.1921,13.05615],[79.17966,13.0545],[79.18044,13.04885],[79.18271,13.04732],[79.19189,13.04835],[79.193,13.0467],[79.1885,13.04195],[79.18483,13.02985],[79.1822,13.03187],[79.18112,13.02974],[79.17642,13.02885],[79.17583,13.0271],[79.17186,13.02728],[79.17109,13.02398],[79.16831,13.02426],[79.16312,13.02027],[79.14831,13.02466],[79.13734,13.03481],[79.12754,13.03557],[79.11448,13.03927],[79.10747,13.03828],[79.09831,13.02606],[79.09114,13.02607],[79.08682,13.02801],[79.08091,13.02573],[79.07394,13.03285],[79.06287,13.04064],[79.06452,13.05006],[79.0634,13.05311],[79.03869,13.06114],[79.03628,13.06546],[79.03695,13.07059],[79.0346,13.06998],[79.03156,13.07203],[79.02974,13.07098],[79.02869,13.07262],[79.02438,13.07187],[79.02299,13.07379],[79.01656,13.07455],[79.01533,13.07694],[79.0095,13.07723],[79.00817,13.08071],[79.00369,13.08321],[79.00392,13.0846],[78.995,13.08661],[78.98252,13.08641],[78.9723,13.08381],[78.97019,13.07965],[78.97144,13.077],[78.97028,13.07471],[78.96879,13.07786],[78.96213,13.07873],[78.96073,13.07612],[78.95545,13.07584],[78.94958,13.08017],[78.94919,13.08399],[78.94148,13.07852],[78.9275,13.08183],[78.92394,13.08081],[78.92174,13.06609],[78.91949,13.06486],[78.91657,13.06731],[78.9126,13.06593],[78.90368,13.04771],[78.90612,13.04512],[78.91751,13.04362],[78.92175,13.04701],[78.92916,13.04576],[78.93374,13.03926],[78.94081,13.03641],[78.93711,13.03043],[78.93575,13.03479],[78.93155,13.03469],[78.92912,13.03649],[78.91563,13.03356],[78.89164,13.03306],[78.89129,13.06881],[78.88895,13.07336],[78.89219,13.08976],[78.89569,13.09512],[78.89121,13.09715],[78.88142,13.09818],[78.8751,13.09682],[78.8698,13.08952],[78.87097,13.08188],[78.86111,13.08366],[78.84204,13.07861],[78.8208,13.08776],[78.81314,13.08914],[78.79763,13.07485],[78.7943,13.06658],[78.75178,13.05494],[78.74029,13.064],[78.71452,13.06868],[78.70527,13.01524],[78.65621,13.03117],[78.65552,13.01525],[78.65208,13.01359],[78.64513,13.00623],[78.63462,13.0008],[78.63001,12.9945],[78.6209,12.99124],[78.64002,12.97098],[78.64717,12.96624],[78.63824,12.96408],[78.64612,12.94589],[78.65701,12.93211],[78.65226,12.9291],[78.63344,12.93175],[78.63345,12.92611],[78.62686,12.90732],[78.62286,12.90425],[78.61669,12.88858],[78.61309,12.86794],[78.60156,12.8508],[78.60776,12.8219],[78.60039,12.81842],[78.60116,12.80368],[78.59307,12.79823],[78.59252,12.78268],[78.57605,12.77191],[78.57656,12.76738],[78.56839,12.76693],[78.56558,12.75936],[78.56153,12.76145],[78.55563,12.75579],[78.55826,12.75371],[78.55834,12.74994],[78.5632,12.75132],[78.5597,12.74919],[78.56012,12.74378],[78.55616,12.74271],[78.55532,12.73928],[78.56386,12.73762],[78.56055,12.72716],[78.55442,12.71928],[78.55604,12.71519],[78.56159,12.71001],[78.55488,12.70752],[78.55662,12.70361],[78.55588,12.70016],[78.54091,12.69067],[78.53491,12.69112],[78.5313,12.69702],[78.52961,12.71022],[78.53275,12.71158],[78.53505,12.70732],[78.53774,12.71045],[78.53996,12.70822],[78.54428,12.71094],[78.53697,12.71332],[78.53752,12.71699],[78.53323,12.71398],[78.52507,12.71542],[78.52703,12.72149],[78.52271,12.71921],[78.52092,12.73613],[78.51917,12.73628],[78.51855,12.72633],[78.51669,12.72437],[78.51164,12.72679],[78.51383,12.73447],[78.50714,12.73711],[78.50527,12.74296],[78.49317,12.74715],[78.48909,12.74198],[78.49696,12.73134],[78.50165,12.73111],[78.50427,12.72494],[78.50644,12.72434],[78.50597,12.72252],[78.50927,12.72423],[78.51658,12.7187],[78.51781,12.72012],[78.52024,12.71868],[78.51983,12.71557],[78.51753,12.71469],[78.52001,12.71201],[78.51901,12.71035],[78.51448,12.71037],[78.51462,12.70791],[78.51178,12.7077],[78.50307,12.71677],[78.50396,12.71123],[78.50193,12.70445],[78.49658,12.70325],[78.49932,12.70161],[78.49941,12.69925],[78.50399,12.69864],[78.50291,12.69191],[78.50744,12.69141],[78.50336,12.68991],[78.50406,12.68346],[78.50252,12.68416],[78.50386,12.68191],[78.50012,12.67991],[78.49933,12.67509],[78.48484,12.67329],[78.4845,12.67166],[78.4679,12.67589],[78.47051,12.65056],[78.47478,12.64763],[78.47056,12.64459],[78.47172,12.63204],[78.46492,12.62401],[78.45846,12.62964],[78.43483,12.62955],[78.42707,12.63524],[78.41261,12.62686],[78.39251,12.62738],[78.37942,12.62501],[78.37143,12.62711],[78.36286,12.63434],[78.35565,12.63646],[78.35212,12.64158],[78.34359,12.64874],[78.33221,12.64926],[78.33107,12.65303],[78.32581,12.65524],[78.31837,12.66192],[78.30603,12.66627],[78.30099,12.66587],[78.30133,12.66758],[78.29647,12.67104],[78.29559,12.67526],[78.28645,12.68901],[78.27594,12.70215],[78.27109,12.70506],[78.24456,12.70633],[78.23929,12.70101],[78.23771,12.68576],[78.23212,12.6872],[78.21059,12.68608],[78.21235,12.68848],[78.20986,12.69041],[78.20336,12.69313],[78.20128,12.6916],[78.19964,12.69307],[78.19936,12.69545],[78.20419,12.6959],[78.20994,12.7005],[78.20936,12.70252],[78.20713,12.70221],[78.20772,12.70483],[78.20575,12.7064],[78.2074,12.70836],[78.21217,12.70763],[78.21346,12.71098],[78.21807,12.7088],[78.22712,12.71483],[78.23117,12.71256],[78.24101,12.72994],[78.24088,12.73271],[78.23609,12.7381],[78.23579,12.74585],[78.23214,12.75304],[78.23095,12.76066],[78.22389,12.76588],[78.21286,12.76503],[78.19516,12.77384],[78.19208,12.77428],[78.18896,12.77191],[78.18426,12.77622],[78.18239,12.77425],[78.1774,12.77595],[78.17163,12.77379],[78.16766,12.77008],[78.14515,12.78093],[78.1363,12.78185],[78.13572,12.78309],[78.13424,12.78197],[78.13126,12.7838],[78.12595,12.79168],[78.12499,12.79819],[78.12188,12.79925],[78.12036,12.80171],[78.10936,12.80449],[78.10473,12.80908],[78.09016,12.81736],[78.09017,12.8235],[78.08753,12.82488],[78.08813,12.82787],[78.0862,12.83194],[78.07386,12.83051],[78.07699,12.83912],[78.0712,12.8424],[78.06021,12.84383],[78.05905,12.85117],[78.05356,12.85379],[78.05143,12.85243],[78.05047,12.84874],[78.03073,12.85245],[78.03065,12.85802],[78.02387,12.8565],[78.02407,12.85251],[78.0297,12.84891],[78.02899,12.84519],[78.02433,12.84174],[78.01915,12.84394],[78.0183,12.83105],[78.01466,12.82982],[78.01062,12.83091],[78.00371,12.82478],[78.00736,12.8211],[78.01277,12.81882],[78.01511,12.81337],[78.00975,12.80574],[78.00561,12.80862],[77.99669,12.80787],[77.9952,12.80586],[77.98852,12.80819],[77.98978,12.82155],[77.9868,12.82182],[77.97927,12.82704],[77.98039,12.83506],[77.97405,12.83483],[77.9727,12.83282],[77.96432,12.83284],[77.96257,12.83737],[77.96535,12.84818],[77.963,12.85018],[77.95278,12.85013],[77.95234,12.85712],[77.94365,12.85782],[77.93999,12.85314],[77.94058,12.84525],[77.94661,12.83871],[77.94217,12.83121],[77.94068,12.82334],[77.9348,12.82293],[77.92852,12.82678],[77.92676,12.83017],[77.92056,12.82816],[77.91857,12.83058],[77.91725,12.83885],[77.92424,12.85112],[77.92281,12.85556],[77.93135,12.86181],[77.93559,12.86275],[77.93642,12.86667],[77.94133,12.86874],[77.94163,12.87274],[77.92772,12.87492],[77.92714,12.88152],[77.93463,12.88066],[77.9361,12.88361],[77.93601,12.88724],[77.92932,12.89092],[77.92509,12.89009],[77.92187,12.88474],[77.90876,12.88484],[77.90841,12.87881],[77.89492,12.87857],[77.89034,12.86966],[77.88475,12.87022],[77.88254,12.86856],[77.87727,12.86862],[77.87594,12.8668],[77.85748,12.86948],[77.85095,12.86611],[77.84739,12.86932],[77.84261,12.86869],[77.83601,12.87033],[77.83216,12.86752],[77.83246,12.86204],[77.82579,12.85994],[77.82308,12.85584],[77.81555,12.85579],[77.80792,12.84767],[77.79911,12.85154],[77.79675,12.84478],[77.79489,12.84562],[77.79246,12.8427],[77.7959,12.83453],[77.80988,12.83153],[77.80796,12.82304],[77.8099,12.81553],[77.80216,12.817],[77.79973,12.80522],[77.8034,12.80481],[77.8051,12.7996],[77.80728,12.79939],[77.80854,12.79673],[77.80665,12.79406],[77.80403,12.79423],[77.80221,12.79626],[77.80037,12.79443],[77.79856,12.79512],[77.79292,12.78798],[77.78954,12.78016],[77.77884,12.76801],[77.7845,12.76238],[77.79439,12.75762],[77.79274,12.74786],[77.78356,12.74121],[77.78006,12.74202],[77.76835,12.74003],[77.76242,12.73531],[77.7612,12.72737],[77.77445,12.72421],[77.77032,12.71787],[77.76955,12.71252],[77.76575,12.71374],[77.76612,12.70799],[77.76392,12.69964],[77.75995,12.69698],[77.73988,12.69988],[77.73518,12.69402],[77.73502,12.69185],[77.74101,12.68577],[77.74118,12.67546],[77.73993,12.67299],[77.72462,12.67119],[77.72277,12.67965],[77.71159,12.68314],[77.71101,12.66712],[77.70423,12.6614],[77.69219,12.66084],[77.68993,12.65899],[77.67865,12.66039],[77.67714,12.67144],[77.67509,12.67309],[77.67638,12.67947],[77.65991,12.68384],[77.63788,12.67571],[77.62391,12.6739],[77.59887,12.66716],[77.59612,12.65028],[77.59964,12.64269],[77.60073,12.64303],[77.60474,12.63759],[77.60333,12.63532],[77.60623,12.62891],[77.59407,12.62106],[77.59102,12.61524],[77.59142,12.59209],[77.58932,12.59268],[77.5838,12.57588],[77.57934,12.57309],[77.58075,12.56571],[77.58035,12.55159],[77.5864,12.54572],[77.58546,12.5368],[77.5885,12.52662],[77.5872,12.51475],[77.59393,12.51608],[77.60677,12.51413],[77.61242,12.51494],[77.61633,12.50918],[77.61507,12.50416],[77.6024,12.49715],[77.5918,12.48518],[77.58875,12.48563],[77.58368,12.4788],[77.59569,12.4748],[77.5984,12.47618],[77.60742,12.47512],[77.61649,12.48284],[77.62609,12.49631],[77.62948,12.4945],[77.63463,12.4876],[77.6324,12.47912],[77.63314,12.47045],[77.63076,12.47027],[77.62924,12.46677],[77.6306,12.46511],[77.62942,12.46065],[77.62717,12.45845],[77.62915,12.44635],[77.62698,12.44112],[77.62608,12.43076],[77.62909,12.42513],[77.62962,12.41832],[77.62333,12.41226],[77.62058,12.38301],[77.61809,12.3811],[77.61681,12.3682],[77.61302,12.36112],[77.60762,12.36105],[77.60084,12.35843],[77.59869,12.34999],[77.59154,12.34014],[77.57858,12.33567],[77.566,12.30624],[77.55791,12.30573],[77.5579,12.30321],[77.5524,12.29745],[77.55134,12.29121],[77.53284,12.29146],[77.52722,12.27877],[77.51419,12.27538],[77.50838,12.276],[77.49998,12.28257],[77.49674,12.28218],[77.49328,12.27887],[77.4876,12.2805],[77.4851,12.27505],[77.47906,12.27127],[77.47703,12.26446],[77.4782,12.25921],[77.47352,12.25561],[77.47202,12.24987],[77.47112,12.24351],[77.47849,12.24006],[77.48263,12.2302],[77.47204,12.20789],[77.47544,12.20559],[77.48645,12.20381],[77.49271,12.19733],[77.51868,12.19448],[77.52815,12.19889],[77.53585,12.19862],[77.54017,12.20238],[77.54626,12.20466],[77.5658,12.19633],[77.56943,12.19974],[77.57386,12.20089],[77.58042,12.1981],[77.59674,12.19927],[77.60534,12.20553],[77.61075,12.20614],[77.62096,12.19988],[77.62984,12.20224],[77.63537,12.19744],[77.63999,12.1964],[77.65608,12.19955],[77.66524,12.19821],[77.67722,12.19254],[77.70228,12.18413],[77.7277,12.18153],[77.73334,12.17808],[77.73543,12.16959],[77.74521,12.15929],[77.74746,12.15289],[77.74679,12.14453],[77.75147,12.1362],[77.75721,12.13044],[77.76819,12.12467],[77.77556,12.11844],[77.7759,12.1113],[77.76775,12.10664],[77.75569,12.07973],[77.74271,12.07002],[77.72664,12.06113],[77.69637,12.01577],[77.67474,11.96594],[77.67451,11.9539],[77.67569,11.95198],[77.66907,11.94907],[77.65738,11.94983],[77.65619,11.95346],[77.65205,11.95482],[77.64871,11.95367],[77.64722,11.95049],[77.64232,11.95002],[77.63944,11.94805],[77.62886,11.94637],[77.624,11.94731],[77.61253,11.94241],[77.60695,11.94202],[77.60345,11.93766],[77.59358,11.94022],[77.58839,11.93934],[77.58596,11.93687],[77.57531,11.93648],[77.56107,11.94192],[77.55818,11.94155],[77.54252,11.93816],[77.53798,11.93239],[77.52824,11.93378],[77.51834,11.93822],[77.51231,11.93781],[77.50492,11.94113],[77.50041,11.93998],[77.4948,11.94385],[77.49287,11.94126],[77.49189,11.92119],[77.48861,11.91234],[77.49089,11.91068],[77.49059,11.90849],[77.48307,11.89957],[77.4862,11.88741],[77.48409,11.88801],[77.48064,11.89341],[77.47722,11.89046],[77.47416,11.89439],[77.47478,11.898],[77.47352,11.89918],[77.46163,11.89998],[77.46398,11.89403],[77.46223,11.88796],[77.46314,11.88437],[77.46048,11.8812],[77.46586,11.8742],[77.46284,11.8648],[77.45994,11.86345],[77.46305,11.85885],[77.46141,11.85369],[77.46624,11.85002],[77.46661,11.84708],[77.46036,11.83184],[77.45697,11.82898],[77.45404,11.82023],[77.4498,11.79601],[77.44662,11.79031],[77.4405,11.78883],[77.4396,11.78561],[77.4422,11.78329],[77.43381,11.77814],[77.42805,11.76701],[77.42894,11.76263],[77.42724,11.76087],[77.4226,11.76172],[77.42223,11.77238],[77.41366,11.77467],[77.39446,11.78763],[77.38802,11.78847],[77.37026,11.78666],[77.36904,11.78951],[77.36485,11.7904],[77.36042,11.77947],[77.33515,11.77123],[77.3277,11.77535],[77.31267,11.79354],[77.29385,11.809],[77.28798,11.80044],[77.27443,11.803],[77.27342,11.80534],[77.26158,11.81061],[77.24988,11.81301],[77.2496,11.80418],[77.2386,11.79465],[77.21752,11.79533],[77.18924,11.79252],[77.18202,11.78632],[77.14709,11.78191],[77.13808,11.77264],[77.13058,11.7737],[77.12276,11.77245],[77.11565,11.77472],[77.11075,11.77347],[77.11266,11.76558],[77.11134,11.76367],[77.11246,11.75693],[77.10855,11.7526],[77.11138,11.7504],[77.11174,11.74307],[77.11484,11.73893],[77.11419,11.73447],[77.11754,11.73179],[77.11535,11.72817],[77.11739,11.72847],[77.11602,11.72564],[77.11814,11.72611],[77.11771,11.72107],[77.11482,11.72175],[77.10501,11.7328],[77.08022,11.73598],[77.08276,11.73976],[77.07109,11.75131],[77.05643,11.76978],[77.05991,11.77152],[77.06126,11.77592],[77.0671,11.77831],[77.06976,11.78208],[77.06692,11.78798],[77.06294,11.7904],[77.05779,11.78885],[77.05043,11.78962],[77.04647,11.78762],[77.043,11.78199],[77.04006,11.78062],[77.0351,11.76978],[77.02886,11.77467],[77.03549,11.78314],[77.03875,11.79385],[77.03534,11.7939],[77.03267,11.79589],[77.03419,11.79995],[77.03065,11.80201],[77.02988,11.80467],[77.01689,11.81071],[77.01622,11.8069],[77.01401,11.80621],[77.01294,11.81461],[76.99354,11.80916],[76.9858,11.81187],[76.98215,11.8115],[76.9821,11.80346],[76.98365,11.80168],[76.9802,11.79853],[76.98089,11.79541],[76.97533,11.78925],[76.97273,11.78038],[76.96992,11.77686],[76.96118,11.78162],[76.95602,11.79115],[76.95394,11.79205],[76.94239,11.78802],[76.93209,11.79279],[76.92218,11.79178],[76.908,11.79525],[76.89661,11.77647],[76.89792,11.7706],[76.89625,11.7598],[76.8881,11.7417],[76.88835,11.73364],[76.87421,11.72411],[76.86263,11.71101],[76.86117,11.70722],[76.86371,11.70537],[76.85276,11.69237],[76.84854,11.67969],[76.84403,11.67281],[76.84365,11.6682],[76.84141,11.66595],[76.84184,11.66213],[76.8387,11.66009],[76.83778,11.65621],[76.83501,11.65542],[76.83626,11.65388],[76.83374,11.64896],[76.83793,11.64194],[76.83463,11.6395],[76.83841,11.63538],[76.84419,11.63257],[76.84513,11.63415],[76.84484,11.62815],[76.84276,11.62705],[76.8496,11.62432],[76.84955,11.62107],[76.85211,11.62167],[76.84884,11.61856],[76.85053,11.61596],[76.85601,11.61564],[76.85812,11.61403],[76.85774,11.61016],[76.85567,11.60758],[76.85724,11.60547],[76.85647,11.59928],[76.84694,11.59447],[76.83274,11.60048],[76.82284,11.60808],[76.81757,11.60472],[76.80924,11.60838],[76.79635,11.60841],[76.79153,11.61274],[76.77476,11.61234],[76.77019,11.61569],[76.76482,11.61413],[76.75692,11.61844],[76.74707,11.61378],[76.73684,11.61531],[76.72183,11.61439],[76.70271,11.61584],[76.68459,11.61396],[76.67147,11.61591],[76.6502,11.61345],[76.63046,11.61379],[76.61398,11.60755],[76.61065,11.61085],[76.59761,11.61064],[76.59647,11.61625],[76.59229,11.61866],[76.58379,11.61376],[76.57908,11.61573],[76.57675,11.6145],[76.57521,11.61919],[76.56966,11.61806],[76.56266,11.62291],[76.55995,11.62247],[76.56142,11.63268],[76.55958,11.63317],[76.55873,11.63851],[76.55391,11.64571],[76.5544,11.65557],[76.55006,11.6611],[76.54931,11.66498],[76.5514,11.67188],[76.55056,11.67419],[76.53723,11.6908],[76.51111,11.70498],[76.50459,11.69913],[76.50152,11.69916],[76.4936,11.69298],[76.48843,11.69135],[76.48168,11.69252],[76.48262,11.68611],[76.47443,11.68122],[76.45821,11.66433],[76.45514,11.66578],[76.45035,11.66416],[76.44913,11.6656],[76.44349,11.66359],[76.44041,11.66581],[76.43533,11.6647],[76.43339,11.6668],[76.43136,11.66636],[76.43637,11.65347],[76.44111,11.65132],[76.44406,11.64719],[76.44343,11.64362],[76.43455,11.63576],[76.43248,11.63129],[76.43006,11.63079],[76.4262,11.63357],[76.40689,11.63428],[76.3881,11.62967],[76.38329,11.62404],[76.38393,11.61205],[76.37827,11.60851],[76.37798,11.60191],[76.3671,11.59833],[76.35458,11.58931],[76.3404,11.5872],[76.33996,11.59313],[76.33588,11.59574],[76.32121,11.58619],[76.31592,11.57659],[76.31054,11.57739],[76.30238,11.57123],[76.30013,11.57446],[76.29913,11.58281],[76.29594,11.59042],[76.28609,11.5902],[76.27891,11.60094],[76.2743,11.59368],[76.26493,11.59389],[76.2646,11.59094],[76.26115,11.5903],[76.25351,11.5854],[76.24921,11.58007],[76.24375,11.57849],[76.23308,11.57077],[76.24043,11.5559],[76.2444,11.55409],[76.24237,11.55049],[76.24628,11.54628],[76.24451,11.543],[76.24977,11.53731],[76.25151,11.53778],[76.25049,11.52757],[76.24453,11.5261],[76.24056,11.52781],[76.23848,11.52627],[76.24422,11.51736],[76.24816,11.51649],[76.24852,11.50647],[76.25229,11.5],[76.24979,11.49832],[76.24757,11.46854],[76.2646,11.48089],[76.26769,11.48053],[76.27044,11.47716],[76.27562,11.47687],[76.27856,11.47922],[76.28157,11.47924],[76.28444,11.48292],[76.29418,11.47289],[76.29289,11.47022],[76.29047,11.46957],[76.29352,11.46568],[76.30515,11.46779],[76.32547,11.45333],[76.33558,11.46161],[76.33815,11.46188],[76.34223,11.46759],[76.3463,11.46415],[76.37149,11.45406],[76.37257,11.45101],[76.37855,11.44919],[76.39768,11.43502],[76.4187,11.44178],[76.41508,11.42263],[76.46208,11.38747],[76.51775,11.37156],[76.51512,11.35969],[76.50818,11.35412],[76.54786,11.35889],[76.54744,11.34547],[76.54997,11.33099],[76.5373,11.31404],[76.53936,11.30462],[76.54576,11.30031],[76.52626,11.28826],[76.52218,11.27134],[76.48711,11.25829],[76.4663,11.24512],[76.45309,11.23937],[76.44896,11.20547],[76.43936,11.20296],[76.43862,11.19896],[76.4519,11.19922],[76.45844,11.18768],[76.46662,11.19332],[76.47347,11.19493],[76.47237,11.20875],[76.4828,11.21071],[76.51048,11.21164],[76.51609,11.2043],[76.53385,11.19675],[76.6009,11.20659],[76.62972,11.19417],[76.65341,11.21012],[76.67752,11.22063],[76.68478,11.22773],[76.68296,11.23006],[76.68531,11.2312],[76.68422,11.23374],[76.69827,11.2396],[76.70709,11.23838],[76.71167,11.23175],[76.7149,11.23133],[76.72175,11.22492],[76.72537,11.22581],[76.72582,11.21867],[76.72823,11.21854],[76.73142,11.21559],[76.73177,11.21367],[76.72659,11.21037],[76.72218,11.20363],[76.7282,11.19585],[76.72904,11.19104],[76.72363,11.19238],[76.71843,11.18641],[76.71378,11.18836],[76.71033,11.18784],[76.70937,11.18239],[76.70659,11.17936],[76.70024,11.18182],[76.70077,11.17606],[76.69647,11.17531],[76.69296,11.17236],[76.69226,11.16456],[76.68956,11.15957],[76.69298,11.15585],[76.69586,11.15523],[76.69552,11.15149],[76.69692,11.14979],[76.70142,11.1493],[76.70206,11.14757],[76.70026,11.14655],[76.70524,11.1422],[76.71238,11.14217],[76.71231,11.14424],[76.70887,11.14627],[76.71003,11.14799],[76.71611,11.14915],[76.71847,11.14764],[76.71742,11.14407],[76.72475,11.13855],[76.72637,11.13385],[76.72871,11.1339],[76.72875,11.13045],[76.73166,11.13145],[76.73503,11.13639],[76.7404,11.1337],[76.73931,11.13197],[76.74245,11.13323],[76.74622,11.13771],[76.7483,11.13584],[76.74705,11.13071],[76.74533,11.13019],[76.74753,11.12305],[76.74742,11.1112],[76.7453,11.10848],[76.74072,11.10919],[76.74077,11.10498],[76.73898,11.1043],[76.74117,11.09992],[76.74376,11.09899],[76.74658,11.09251],[76.75168,11.09319],[76.75453,11.08416],[76.75416,11.07779],[76.75014,11.07894],[76.74798,11.07432],[76.74571,11.07564],[76.74457,11.07248],[76.74104,11.07234],[76.74114,11.06973],[76.74377,11.06844],[76.74257,11.06334],[76.74575,11.06002],[76.74415,11.05707],[76.74613,11.05482],[76.75106,11.05541],[76.7607,11.05231],[76.76203,11.04798],[76.76894,11.04343],[76.77816,11.04209],[76.78779,11.0447],[76.79622,11.05585],[76.79846,11.05655],[76.80086,11.05397],[76.79315,11.0434],[76.79184,11.03736],[76.77365,11.03354],[76.7666,11.02909],[76.74929,11.03343],[76.7376,11.03974],[76.73242,11.03844],[76.72616,11.04114],[76.71542,11.04101],[76.71089,11.03872],[76.70912,11.03289],[76.69416,11.02156],[76.68546,10.9938],[76.68604,10.9892],[76.67389,10.97439],[76.66679,10.96833],[76.66748,10.95959],[76.6636,10.95093],[76.66583,10.94742],[76.66473,10.94348],[76.6558,10.93901],[76.65909,10.9305],[76.66206,10.92964],[76.67675,10.91806],[76.69521,10.91023],[76.70807,10.9101],[76.71264,10.90757],[76.7149,10.90861],[76.71783,10.90546],[76.72345,10.90345],[76.73168,10.89765],[76.73755,10.89588],[76.74079,10.89097],[76.74554,10.89268],[76.75,10.89225],[76.75241,10.89506],[76.75527,10.8932],[76.76125,10.89346],[76.76529,10.89118],[76.7679,10.88703],[76.77438,10.8901],[76.77661,10.88917],[76.78143,10.89042],[76.79092,10.88445],[76.7918,10.88111],[76.80122,10.88005],[76.80813,10.8768],[76.81146,10.87788],[76.81186,10.87583],[76.81434,10.87599],[76.81669,10.87274],[76.82832,10.87191],[76.83076,10.86993],[76.83194,10.86013],[76.83909,10.85634],[76.84168,10.85208],[76.84842,10.84939],[76.84878,10.84635],[76.85378,10.83896],[76.85319,10.83292],[76.85084,10.82958],[76.84855,10.83052],[76.84736,10.82633],[76.8464,10.82732],[76.84508,10.8261],[76.84817,10.8188],[76.8499,10.81725],[76.85258,10.81855],[76.85875,10.81667],[76.86048,10.81848],[76.86396,10.81727],[76.86526,10.8129],[76.87006,10.80833],[76.88899,10.80958],[76.90068,10.8073],[76.90063,10.80087],[76.90721,10.78269],[76.90753,10.77799],[76.90531,10.77143],[76.90258,10.77079],[76.90359,10.76111],[76.90108,10.75637],[76.89631,10.75198],[76.89616,10.74533],[76.8883,10.73247],[76.88864,10.72831],[76.89294,10.72146],[76.8903,10.71692],[76.88635,10.71863],[76.88221,10.71734],[76.86759,10.69478],[76.87084,10.69288],[76.86603,10.68531],[76.86754,10.67905],[76.86958,10.67678],[76.87748,10.67673],[76.8784,10.67503],[76.87814,10.66735],[76.88137,10.66126],[76.88092,10.65645],[76.88374,10.65],[76.88248,10.63971],[76.87346,10.63777],[76.86751,10.63325],[76.86066,10.63234],[76.8462,10.63583],[76.83928,10.6343],[76.83066,10.63762],[76.82113,10.63442],[76.81418,10.63586],[76.81497,10.62963],[76.8101,10.62418],[76.81145,10.62001],[76.8163,10.61686],[76.81631,10.61367],[76.81833,10.61115],[76.81573,10.60787],[76.81731,10.6032],[76.82601,10.59613],[76.83233,10.59928],[76.8374,10.59841],[76.83827,10.59667],[76.83754,10.58186],[76.83357,10.57436],[76.8344,10.5703],[76.83922,10.56475],[76.83914,10.56133],[76.83568,10.55787],[76.83519,10.5454],[76.84205,10.54078],[76.8431,10.53729],[76.83104,10.50003],[76.82833,10.45017],[76.81638,10.42352],[76.82317,10.41701],[76.82253,10.41456],[76.82464,10.41012],[76.83043,10.4113],[76.83358,10.40777],[76.8325,10.40568],[76.83403,10.40334],[76.82366,10.39506],[76.8305,10.38966],[76.83429,10.38325],[76.84389,10.37753],[76.84879,10.36823],[76.84516,10.36293],[76.84601,10.35731],[76.84194,10.35359],[76.8417,10.35062],[76.83631,10.34602],[76.83609,10.34044],[76.83774,10.33666],[76.83297,10.31807],[76.83062,10.31454],[76.83037,10.30956],[76.8287,10.30787],[76.83031,10.30363],[76.83732,10.30205],[76.8407,10.29968],[76.84478,10.2949],[76.84221,10.29247],[76.84263,10.29003],[76.84824,10.28754],[76.84872,10.28528],[76.85222,10.2851],[76.85126,10.2899],[76.8551,10.29285],[76.85792,10.29364],[76.86239,10.29203],[76.86435,10.29532],[76.86842,10.29607],[76.87052,10.29888],[76.87314,10.29848],[76.87452,10.29428],[76.87342,10.27634],[76.88409,10.2709],[76.89144,10.26306],[76.89741,10.26244],[76.90142,10.25116],[76.90443,10.25091],[76.90546,10.24792],[76.903,10.2403],[76.90826,10.24085],[76.9116,10.23529],[76.92156,10.23218],[76.93936,10.2389],[76.94754,10.23687],[76.9506,10.23247],[76.95888,10.23414],[76.96543,10.23074],[76.96855,10.23077],[76.97229,10.22861],[76.97347,10.22543],[76.98048,10.22379],[76.98245,10.22012],[76.9845,10.22298],[76.99071,10.22568],[76.99046,10.22809],[76.99332,10.23045],[76.99903,10.23037],[77.001,10.23516],[77.00378,10.23464],[77.00547,10.2384],[77.01113,10.24009],[77.01443,10.24579],[77.01749,10.24563],[77.03152,10.25226],[77.04063,10.25266],[77.0429,10.25685],[77.05108,10.26211],[77.05079,10.26805],[77.05268,10.2725],[77.0496,10.27808],[77.04288,10.28377],[77.05645,10.287],[77.05944,10.29023],[77.063,10.29139],[77.0662,10.2977],[77.07261,10.29913],[77.07958,10.30301],[77.08845,10.30982],[77.09136,10.31391],[77.0961,10.30898],[77.10172,10.31561],[77.11024,10.31559],[77.12039,10.31796],[77.12879,10.32623],[77.15128,10.33753],[77.16221,10.3489],[77.17662,10.35844],[77.19605,10.35451],[77.19813,10.35673],[77.20206,10.35763],[77.20465,10.35385],[77.20939,10.35302],[77.22262,10.35366],[77.23565,10.35225],[77.23637,10.33889],[77.23305,10.33765],[77.23317,10.33499],[77.22921,10.33065],[77.22817,10.32727],[77.22957,10.32236],[77.22762,10.31995],[77.22775,10.31542],[77.23093,10.31257],[77.23141,10.30842],[77.23528,10.30765],[77.23676,10.301],[77.23982,10.29853],[77.23931,10.29503],[77.26293,10.26333],[77.25719,10.25939],[77.25972,10.23027],[77.26455,10.23233],[77.26475,10.23522],[77.2686,10.23459],[77.26926,10.23704],[77.27316,10.23501],[77.28194,10.23656],[77.28422,10.23342],[77.28809,10.23186],[77.29496,10.2179],[77.29337,10.21529],[77.28954,10.21456],[77.2873,10.20925],[77.28312,10.20865],[77.28587,10.20436],[77.28482,10.20055],[77.28296,10.19659],[77.27857,10.19421],[77.2753,10.18442],[77.27627,10.17571],[77.2747,10.17527],[77.27292,10.16534],[77.27414,10.15767],[77.2718,10.14199],[77.27453,10.13976],[77.27477,10.13255],[77.27405,10.12949],[77.26836,10.12714],[77.26778,10.12161],[77.25269,10.12445],[77.24895,10.12681],[77.24765,10.1305],[77.23824,10.13008],[77.23373,10.12797],[77.23205,10.12528],[77.23276,10.12396],[77.22992,10.12252],[77.23038,10.1205],[77.22717,10.12119],[77.21643,10.11585],[77.21085,10.11816],[77.20789,10.1177],[77.20648,10.11256],[77.20462,10.11276],[77.20133,10.10621],[77.20401,10.09728],[77.20398,10.08773],[77.21984,10.07716],[77.22289,10.07298],[77.2235,10.06918],[77.23144,10.06627],[77.23447,10.05984],[77.24439,10.05197],[77.2548,10.03667],[77.2619,10.02973],[77.26159,10.0212],[77.25744,10.0193],[77.25586,10.01453],[77.25319,10.01281],[77.26613,10.00189],[77.2608,9.99576],[77.26091,9.99268],[77.26177,9.9911],[77.26683,9.99029],[77.2644,9.98717],[77.26796,9.97991],[77.27267,9.97634],[77.27087,9.97091],[77.27218,9.97015],[77.27285,9.96419],[77.27184,9.96133],[77.27105,9.96243],[77.26854,9.96091],[77.26101,9.95249],[77.25296,9.95345],[77.25021,9.95118],[77.24958,9.95255],[77.24654,9.9514],[77.2479,9.94685],[77.23623,9.93537],[77.23433,9.93058],[77.23564,9.92637],[77.2317,9.92404],[77.23056,9.92139],[77.23006,9.91247],[77.22439,9.90967],[77.22258,9.90596],[77.21825,9.90429],[77.21809,9.89637],[77.22075,9.88448],[77.21752,9.88435],[77.21527,9.87739],[77.21245,9.87688],[77.22133,9.86313],[77.22614,9.86086],[77.23269,9.86154],[77.23631,9.8596],[77.23718,9.85138],[77.22814,9.84914],[77.22633,9.84634],[77.22294,9.84488],[77.22753,9.83809],[77.22544,9.8333],[77.22655,9.83072],[77.22378,9.8287],[77.22385,9.82385],[77.22178,9.82245],[77.22431,9.822],[77.22501,9.8203],[77.23273,9.82149],[77.23259,9.81742],[77.24115,9.81563],[77.24679,9.808],[77.24509,9.80278],[77.24667,9.79789],[77.24173,9.79579],[77.24016,9.79692],[77.23601,9.79006],[77.22266,9.78779],[77.22499,9.77556],[77.2324,9.76857],[77.22747,9.76421],[77.22514,9.75277],[77.22023,9.74504],[77.21984,9.74208],[77.22268,9.73999],[77.22184,9.7374],[77.22391,9.73037],[77.22067,9.72964],[77.21838,9.72608],[77.20753,9.72476],[77.20356,9.72211],[77.2061,9.71757],[77.20471,9.71656],[77.2053,9.71309],[77.20195,9.70389],[77.20458,9.70158],[77.20672,9.69466],[77.20055,9.686],[77.19411,9.67056],[77.18682,9.66641],[77.18751,9.66144],[77.18115,9.65921],[77.17958,9.65554],[77.17927,9.64486],[77.17405,9.63731],[77.17415,9.63287],[77.17626,9.62948],[77.1746,9.62658],[77.16911,9.62397],[77.16778,9.61502],[77.16586,9.61286],[77.1703,9.60967],[77.17409,9.61119],[77.18868,9.6061],[77.19082,9.60922],[77.19706,9.61085],[77.1982,9.61436],[77.20896,9.61344],[77.21047,9.61086],[77.20984,9.60497],[77.21444,9.60071],[77.21714,9.60162],[77.22218,9.59771],[77.22249,9.59278],[77.2343,9.58155],[77.23713,9.58106],[77.24277,9.58522],[77.25307,9.58297],[77.25833,9.57649],[77.26145,9.57683],[77.26385,9.57374],[77.26971,9.57277],[77.27201,9.57645],[77.27693,9.57575],[77.28048,9.57958],[77.29034,9.58477],[77.29007,9.58869],[77.29456,9.58924],[77.30381,9.59874],[77.31537,9.60071],[77.31782,9.6025],[77.32241,9.59829],[77.325,9.59768],[77.32815,9.60015],[77.3299,9.59899],[77.32453,9.59334],[77.32618,9.58863],[77.32383,9.58516],[77.32562,9.58345],[77.32536,9.58003],[77.33251,9.57881],[77.33949,9.57331],[77.3419,9.57646],[77.34223,9.58101],[77.34548,9.58796],[77.35459,9.60407],[77.36113,9.60226],[77.36277,9.6002],[77.36581,9.59974],[77.36614,9.59596],[77.36239,9.59556],[77.36085,9.59784],[77.35748,9.59443],[77.35497,9.58668],[77.3583,9.58393],[77.35989,9.57738],[77.35814,9.57391],[77.35297,9.57286],[77.35026,9.56708],[77.35291,9.55958],[77.36126,9.55794],[77.36508,9.55273],[77.36556,9.53509],[77.36874,9.53478],[77.37296,9.52989],[77.37334,9.52685],[77.37693,9.52483],[77.38013,9.52536],[77.38518,9.51923],[77.39595,9.5233],[77.40051,9.52736],[77.40331,9.523],[77.40042,9.51786],[77.40831,9.51476],[77.4124,9.50898],[77.40971,9.50556],[77.40298,9.50148],[77.39931,9.49657],[77.39862,9.48163],[77.40198,9.47865],[77.40172,9.4769],[77.39713,9.47134],[77.39147,9.46869],[77.39261,9.45935],[77.38697,9.45565],[77.38093,9.45506],[77.3772,9.45278],[77.37423,9.45349],[77.37289,9.45663],[77.366,9.46008],[77.3603,9.45544],[77.35639,9.44757],[77.34941,9.44118],[77.34857,9.43451],[77.3446,9.42442],[77.33971,9.42072],[77.33649,9.41336],[77.33685,9.41052],[77.3436,9.40084],[77.33977,9.39375],[77.3414,9.38981],[77.33949,9.38741],[77.3366,9.38732],[77.33455,9.38122],[77.33457,9.37821],[77.33664,9.37692],[77.33732,9.36498],[77.33573,9.36392],[77.33333,9.35632],[77.32603,9.34655],[77.32529,9.33711],[77.3201,9.33753],[77.31562,9.33486],[77.3058,9.33779],[77.29997,9.33665],[77.30099,9.33012],[77.29703,9.32951],[77.3018,9.32424],[77.30252,9.31953],[77.29948,9.31418],[77.29954,9.31091],[77.29368,9.30476],[77.28976,9.30403],[77.28849,9.30165],[77.28299,9.30133],[77.28322,9.29131],[77.28788,9.28135],[77.28853,9.27417],[77.28175,9.27232],[77.28352,9.26728],[77.2815,9.26241],[77.28254,9.256],[77.2774,9.24713],[77.27955,9.24383],[77.27877,9.23941],[77.27411,9.23582],[77.27575,9.22898],[77.28166,9.22072],[77.28171,9.21657],[77.2755,9.21169],[77.27038,9.20503],[77.27034,9.2006],[77.26636,9.20045],[77.26314,9.19826],[77.25611,9.19922],[77.25641,9.19598],[77.25143,9.18864],[77.26095,9.18311],[77.26388,9.18411],[77.26516,9.18126],[77.26714,9.17432],[77.26532,9.16307],[77.26681,9.15246],[77.26072,9.14881],[77.26065,9.1443],[77.25272,9.13919],[77.24728,9.1246],[77.24215,9.12505],[77.23134,9.11743],[77.22844,9.11688],[77.22646,9.10819],[77.22106,9.10594],[77.21877,9.10143],[77.21241,9.10048],[77.20915,9.08996],[77.2057,9.08499],[77.20887,9.07404],[77.20551,9.06617],[77.1969,9.0568],[77.19528,9.04934],[77.19746,9.04697],[77.19171,9.04353],[77.18759,9.04314],[77.18232,9.04742],[77.16747,9.0453],[77.16412,9.03841],[77.16039,9.03584],[77.16212,9.03323],[77.1611,9.02944],[77.15387,9.02243],[77.14656,9.02182],[77.15073,9.01489],[77.14935,9.00958],[77.15275,9.00719],[77.15685,9.0075],[77.15615,9.00383],[77.16167,8.99504],[77.17357,8.99123],[77.1782,8.9691],[77.18555,8.97018],[77.1907,8.96562],[77.1915,8.95916],[77.19629,8.95458],[77.19697,8.95169],[77.19389,8.94332],[77.19714,8.93543],[77.19248,8.92855],[77.1928,8.9262],[77.19473,8.92412],[77.20105,8.92456],[77.20998,8.9185],[77.21423,8.91733],[77.21824,8.91869],[77.22123,8.90395],[77.22795,8.90359],[77.23855,8.89774],[77.24024,8.89447],[77.2384,8.89212],[77.23766,8.88567],[77.24499,8.88007],[77.25456,8.87959],[77.25657,8.87757],[77.25864,8.86518],[77.25568,8.86315],[77.25557,8.86112],[77.26152,8.85651],[77.26171,8.85261],[77.25908,8.85317],[77.25848,8.85033],[77.26276,8.84199],[77.25883,8.83862],[77.25759,8.83522],[77.25309,8.83226],[77.25136,8.82712],[77.24714,8.82372],[77.24708,8.81484],[77.24252,8.80979],[77.23198,8.80773],[77.23275,8.80164],[77.23054,8.79783],[77.23129,8.79082],[77.22971,8.78459],[77.22429,8.78362],[77.21999,8.77899],[77.21471,8.77973],[77.21307,8.77862],[77.21843,8.77099],[77.21795,8.76824],[77.2093,8.76535],[77.20496,8.76913],[77.19733,8.7689],[77.19984,8.76079],[77.19752,8.75093],[77.19246,8.74444],[77.18267,8.74278],[77.17703,8.74544],[77.17163,8.75058],[77.16977,8.74743],[77.17001,8.74179],[77.17911,8.73058],[77.17677,8.72613],[77.18062,8.72106],[77.18079,8.71832],[77.1843,8.71639],[77.18472,8.71347],[77.18998,8.71236],[77.19503,8.70776],[77.19561,8.70213],[77.20672,8.6842],[77.20726,8.68068],[77.20069,8.66908],[77.20837,8.66364],[77.20778,8.66083],[77.21211,8.65719],[77.2117,8.65479],[77.21427,8.64914],[77.22015,8.64493],[77.22483,8.63908],[77.22885,8.64027],[77.22931,8.63742],[77.23219,8.63565],[77.23465,8.62685],[77.24408,8.62182],[77.24573,8.61629],[77.24524,8.60344],[77.25076,8.59873],[77.25517,8.59739],[77.25864,8.58922],[77.26321,8.58883],[77.26643,8.58514],[77.26649,8.58077],[77.26905,8.57889],[77.27066,8.57165],[77.27504,8.56564],[77.2743,8.55964],[77.28236,8.55049],[77.28385,8.54673],[77.27465,8.53763],[77.27426,8.53372],[77.26692,8.51987],[77.26534,8.51196],[77.26171,8.50615],[77.25738,8.50705],[77.25615,8.50518],[77.2513,8.50542],[77.2463,8.50235],[77.24424,8.49756],[77.24012,8.49705],[77.22966,8.50898],[77.22226,8.51244],[77.21431,8.51281],[77.21041,8.50701],[77.20238,8.50119],[77.20468,8.49872],[77.20413,8.49645],[77.21188,8.49207],[77.21381,8.48554],[77.21174,8.48397],[77.21139,8.47888],[77.21407,8.46972],[77.22093,8.4658],[77.22742,8.45848],[77.2273,8.45293],[77.22901,8.45061],[77.2281,8.44725],[77.2066,8.4447],[77.20292,8.43633],[77.20381,8.43526],[77.19656,8.42916],[77.19752,8.41994],[77.18261,8.40475],[77.18167,8.39579],[77.17052,8.38736],[77.16819,8.38387],[77.16594,8.38787],[77.16095,8.39017],[77.15373,8.38774],[77.15111,8.38447],[77.15199,8.38129],[77.15532,8.3811],[77.15592,8.38265],[77.15996,8.38124],[77.16129,8.37398],[77.16034,8.3687],[77.15694,8.36741],[77.15589,8.36339],[77.15354,8.36131],[77.15302,8.35514],[77.1564,8.35673],[77.15741,8.35994],[77.15949,8.35916],[77.16336,8.36177],[77.1666,8.36025],[77.16754,8.36343],[77.16965,8.36347],[77.17072,8.3603],[77.17429,8.35863],[77.17547,8.34986],[77.171,8.34773],[77.16694,8.34275],[77.16997,8.33807],[77.16975,8.33474],[77.18061,8.32352],[77.17332,8.31976],[77.17216,8.32469],[77.16993,8.32549],[77.16929,8.33295],[77.1536,8.328],[77.14843,8.33199],[77.14526,8.32956],[77.13979,8.32987],[77.13842,8.32753],[77.12919,8.32598],[77.12959,8.32196],[77.11921,8.32106],[77.11899,8.31678],[77.12448,8.31207],[77.12278,8.30901],[77.11664,8.31031],[77.11308,8.30424],[77.10553,8.30692],[77.10176,8.30647],[77.10163,8.30091],[77.09886,8.29896],[77.09607,8.29317],[77.11148,8.2831],[77.12706,8.27001],[77.14941,8.25559],[77.154,8.25021],[77.16767,8.24001],[77.18591,8.21849],[77.21193,8.20461],[77.22381,8.19632],[77.23074,8.18602],[77.23999,8.1768],[77.24781,8.17282],[77.2556,8.17248],[77.26218,8.16971],[77.28732,8.15558],[77.29823,8.14737],[77.30259,8.14185],[77.30139,8.14065],[77.30416,8.13668],[77.30434,8.13227],[77.3158,8.12184],[77.31805,8.12176],[77.319,8.12388],[77.3214,8.124],[77.32233,8.12246],[77.32364,8.12637],[77.33421,8.12594],[77.35209,8.12243],[77.44473,8.09464],[77.48103,8.0891],[77.48641,8.0897],[77.48675,8.08814],[77.49904,8.08528],[77.52801,8.08116],[77.53251,8.0777],[77.53976,8.07893],[77.55133,8.07803],[77.55309,8.08582],[77.55804,8.08992],[77.56433,8.09234],[77.56151,8.09508],[77.55942,8.09499],[77.55821,8.09772],[77.55863,8.10652],[77.55697,8.11103],[77.55876,8.11929],[77.56606,8.12481],[77.56686,8.12723],[77.57711,8.13672],[77.6092,8.14924],[77.64037,8.15744],[77.64922,8.15932],[77.67425,8.15997],[77.71409,8.16645],[77.72076,8.16872],[77.72348,8.17134],[77.74471,8.17692],[77.75493,8.18352],[77.75566,8.18623],[77.76002,8.18963],[77.7674,8.19386],[77.775,8.19593],[77.78131,8.20104],[77.78413,8.20727],[77.78374,8.21197],[77.78196,8.21436],[77.78377,8.22164],[77.79592,8.23171],[77.80292,8.24017],[77.8181,8.24655],[77.84795,8.25539],[77.87886,8.26825],[77.88917,8.27399],[77.89871,8.28411],[77.90516,8.28825],[77.92742,8.29822],[77.95269,8.31389],[77.95455,8.32031],[77.97175,8.33326],[78.01428,8.35471],[78.06703,8.37285],[78.06699,8.37445],[78.06078,8.37469],[78.0569,8.37941],[78.05692,8.39085],[78.06071,8.40064],[78.06389,8.41799],[78.09641,8.46031],[78.11627,8.47977],[78.13059,8.49691],[78.12608,8.50121],[78.1219,8.5157],[78.12506,8.54033],[78.13207,8.55421],[78.13191,8.56043],[78.13797,8.58596],[78.12729,8.61504],[78.12728,8.63846],[78.12915,8.65579],[78.13144,8.66291],[78.12564,8.66509],[78.12871,8.66787],[78.12921,8.67296],[78.13179,8.676],[78.13205,8.68183],[78.1364,8.69411],[78.15406,8.71222],[78.15535,8.72522],[78.16299,8.74135],[78.16599,8.74398],[78.1811,8.75034],[78.18777,8.75007],[78.19158,8.74792],[78.19287,8.75124],[78.1962,8.7532],[78.1954,8.75727],[78.19749,8.75944],[78.19684,8.76094],[78.19825,8.76108],[78.19814,8.77202],[78.19998,8.77256],[78.19852,8.77406],[78.19913,8.78748],[78.19746,8.78882],[78.19248,8.78681],[78.19409,8.78642],[78.19546,8.77492],[78.19712,8.77403],[78.19657,8.77884],[78.1986,8.7759],[78.1955,8.77063],[78.1967,8.77091],[78.19656,8.76927],[78.19531,8.76982],[78.19626,8.76898],[78.19494,8.76911],[78.19509,8.76701],[78.18959,8.76381],[78.18706,8.76414],[78.18246,8.76604],[78.18133,8.76846],[78.179,8.76668],[78.17747,8.76876],[78.16968,8.77044],[78.16859,8.77147],[78.17016,8.77466],[78.16888,8.77668],[78.16455,8.77756],[78.16279,8.77953],[78.16181,8.77774],[78.16003,8.78432],[78.16153,8.787],[78.16389,8.78389],[78.1611,8.79187],[78.16246,8.79241],[78.16186,8.79764],[78.16156,8.79287],[78.16014,8.79689],[78.15808,8.79696],[78.15967,8.80416],[78.16349,8.80238],[78.16124,8.80513],[78.16303,8.80924],[78.16658,8.81174],[78.16378,8.81234],[78.16326,8.81563],[78.16802,8.82586],[78.16546,8.82834],[78.16477,8.83278],[78.1667,8.84239],[78.16579,8.86573],[78.16693,8.87289],[78.17164,8.88587],[78.1762,8.89138],[78.17998,8.89269],[78.18002,8.90611],[78.18664,8.92359],[78.1984,8.94345],[78.20667,8.95241],[78.21504,8.96604],[78.23982,8.98466],[78.27234,9.00438],[78.35569,9.06803],[78.37643,9.08846],[78.40326,9.10807],[78.41383,9.11395],[78.45427,9.12527],[78.46754,9.12799],[78.48816,9.12897],[78.50273,9.13387],[78.53216,9.13821],[78.56107,9.13651],[78.57825,9.131],[78.58902,9.13998],[78.60159,9.14657],[78.6155,9.15145],[78.65707,9.15769],[78.65723,9.15882],[78.65127,9.15936],[78.64623,9.16643],[78.64326,9.16788],[78.64221,9.17468],[78.64411,9.18041],[78.64899,9.18744],[78.65003,9.18776],[78.64931,9.18523],[78.6638,9.19362],[78.67887,9.19601],[78.68529,9.1956],[78.70361,9.19109],[78.71726,9.18954],[78.71903,9.1921],[78.71602,9.19758],[78.71653,9.20003],[78.72196,9.20562],[78.7326,9.21189],[78.75446,9.2155],[78.76427,9.22138],[78.79434,9.22996],[78.80559,9.23666],[78.82266,9.23936],[78.84982,9.25154],[78.85611,9.25174],[78.8611,9.2554],[78.86774,9.25398],[78.87488,9.25726],[78.8957,9.25154],[78.91615,9.25878],[78.92202,9.26577],[78.92652,9.26771],[78.94899,9.27249],[78.97893,9.27485],[79.01457,9.27072],[79.05215,9.26344],[79.05759,9.26365],[79.06289,9.26154],[79.07372,9.2624],[79.08072,9.26121],[79.09016,9.26165],[79.11087,9.2662],[79.12708,9.27194],[79.14031,9.27315],[79.14622,9.27707],[79.15465,9.27609],[79.15275,9.27791],[79.17822,9.28176],[79.2092,9.2824],[79.20499,9.27768],[79.20503,9.27348],[79.20655,9.27307],[79.20578,9.27514],[79.20725,9.27497],[79.21847,9.27076],[79.22152,9.26592],[79.22167,9.25871],[79.21983,9.25734],[79.22962,9.25975],[79.25296,9.25978],[79.27292,9.25553],[79.29939,9.24676],[79.33432,9.22897],[79.41635,9.17724],[79.42865,9.16751],[79.43465,9.16148],[79.43506,9.15798],[79.43601,9.15848],[79.43584,9.16417],[79.43093,9.1682],[79.42559,9.1762],[79.41525,9.18512],[79.41644,9.1871],[79.41471,9.18594],[79.38871,9.20839],[79.3736,9.2182],[79.35869,9.23284],[79.33464,9.25208],[79.324,9.26358],[79.31472,9.28119],[79.31599,9.28551],[79.31927,9.28672],[79.32712,9.29534],[79.32714,9.29957],[79.33174,9.3034],[79.33505,9.30933],[79.33416,9.31417],[79.32934,9.3201],[79.31491,9.3271],[79.30992,9.32765],[79.30051,9.32238],[79.29072,9.31987],[79.28151,9.31275],[79.27296,9.30237],[79.27125,9.29628],[79.26593,9.29274],[79.22111,9.29134],[79.21458,9.28467],[79.21119,9.28327],[79.18413,9.28281],[79.17262,9.28473],[79.16078,9.28433],[79.1398,9.29188],[79.13588,9.29095],[79.13223,9.28788],[79.12197,9.29131],[79.10537,9.29099],[79.08664,9.29524],[79.06926,9.29575],[79.03679,9.31518],[79.00903,9.33578],[78.98047,9.36124],[78.93634,9.40828],[78.92363,9.42565],[78.90186,9.46494],[78.89844,9.47642],[78.89834,9.4899],[78.90421,9.49681],[78.9098,9.49851],[78.91279,9.49576],[78.91523,9.49903],[78.91322,9.50551],[78.9202,9.52717],[78.91775,9.53769],[78.92014,9.55923],[78.92163,9.56055],[78.92169,9.5663],[78.92541,9.57921],[78.92515,9.585],[78.93419,9.60319],[78.93364,9.60618],[78.94495,9.61866],[78.95429,9.62434],[78.95748,9.63043],[78.95981,9.63093],[78.95819,9.63702],[78.95927,9.64172],[78.96398,9.64056],[78.96606,9.64746],[78.971,9.6557],[78.97434,9.6761],[78.98036,9.68956],[78.98948,9.69922],[78.99027,9.70365],[79.00019,9.71486],[78.99855,9.71655],[78.99912,9.71842],[79.00041,9.71439],[79.00404,9.71812],[79.00323,9.72533],[79.00475,9.7187],[79.00791,9.72476],[79.015,9.73149],[79.01549,9.74032],[79.01315,9.74484],[79.01597,9.74039],[79.01591,9.73232],[79.02071,9.74141],[79.02621,9.74767],[79.02496,9.75139],[79.02238,9.75282],[79.02535,9.75179],[79.02689,9.74827],[79.03182,9.7548],[79.02987,9.76146],[79.03231,9.7553],[79.04123,9.76625],[79.05862,9.77245],[79.0612,9.7809],[79.07066,9.79427],[79.07696,9.79971],[79.07582,9.81221],[79.0767,9.81358],[79.07736,9.80004],[79.07848,9.79998],[79.08267,9.81555],[79.0939,9.82936],[79.08496,9.83465],[79.08966,9.83408],[79.09425,9.83004],[79.09871,9.83384],[79.09497,9.83822],[79.09922,9.83425],[79.10482,9.83794],[79.09882,9.84332],[79.10026,9.84425],[79.10531,9.83891],[79.10868,9.84226],[79.10913,9.84819],[79.1058,9.85384],[79.10759,9.85176],[79.11206,9.8513],[79.11546,9.84907],[79.11636,9.85139],[79.11018,9.85784],[79.11131,9.85876],[79.11931,9.85278],[79.12083,9.85531],[79.1222,9.8603],[79.11295,9.86023],[79.11678,9.86277],[79.11741,9.87112],[79.11481,9.87343],[79.11745,9.87231],[79.1186,9.87845],[79.11583,9.87955],[79.11774,9.88016],[79.11972,9.87764],[79.12158,9.88051],[79.11858,9.88958],[79.11438,9.88924],[79.11127,9.89284],[79.11465,9.88987],[79.11845,9.89065],[79.12404,9.88356],[79.12594,9.89078],[79.12985,9.89584],[79.12783,9.90242],[79.1255,9.90371],[79.12812,9.90277],[79.13146,9.89707],[79.13465,9.89974],[79.13344,9.90373],[79.1351,9.90037],[79.13968,9.90442],[79.13668,9.90964],[79.13991,9.90468],[79.14701,9.91144],[79.13887,9.92086],[79.14371,9.9187],[79.14527,9.92423],[79.14492,9.91871],[79.15051,9.91964],[79.15338,9.92368],[79.15281,9.92823],[79.1552,9.93152],[79.16893,9.94367],[79.18111,9.95794],[79.19846,9.97329],[79.20526,9.98477],[79.21621,9.99671],[79.21488,10.00005],[79.21658,9.99755],[79.24441,10.02722],[79.26611,10.03923],[79.25568,10.04515],[79.25146,10.04458],[79.25053,10.04212],[79.25106,10.04359],[79.24961,10.04381],[79.25509,10.04543],[79.2483,10.05144],[79.24559,10.05689],[79.2445,10.05723],[79.24478,10.05493],[79.24344,10.05712],[79.23929,10.0578],[79.24526,10.05788],[79.24414,10.06296],[79.23847,10.06252],[79.23821,10.06472],[79.24666,10.06473],[79.25049,10.06757],[79.24807,10.07087],[79.24145,10.07191],[79.23945,10.07013],[79.2371,10.07399],[79.23411,10.07059],[79.23661,10.07374],[79.23417,10.07757],[79.23196,10.07689],[79.23324,10.0787],[79.23169,10.08196],[79.22715,10.07358],[79.2303,10.08295],[79.22758,10.0838],[79.22323,10.08122],[79.2275,10.08442],[79.2304,10.08461],[79.23144,10.08298],[79.22598,10.09929],[79.22893,10.10537],[79.22261,10.10552],[79.22178,10.10844],[79.2191,10.10913],[79.2191,10.1126],[79.22312,10.10601],[79.22846,10.10647],[79.22718,10.10934],[79.22935,10.10746],[79.22727,10.11127],[79.2303,10.11833],[79.22717,10.11912],[79.23067,10.11927],[79.2304,10.12472],[79.23339,10.12711],[79.22699,10.1336],[79.22567,10.14583],[79.22819,10.15229],[79.2388,10.15986],[79.23866,10.16543],[79.23611,10.1716],[79.23901,10.1758],[79.24154,10.18487],[79.24708,10.19191],[79.25178,10.19467],[79.25682,10.19559],[79.25735,10.19699],[79.25998,10.19372],[79.2638,10.19727],[79.26382,10.19995],[79.26508,10.19743],[79.26977,10.20648],[79.27735,10.21329],[79.27869,10.21545],[79.27798,10.22206],[79.27648,10.22391],[79.27673,10.22232],[79.27135,10.22479],[79.26716,10.22867],[79.26827,10.23281],[79.28468,10.25149],[79.29846,10.2633],[79.31555,10.27365],[79.32926,10.28436],[79.33823,10.28751],[79.3528,10.28891],[79.36034,10.29123],[79.37916,10.31348],[79.38807,10.31752],[79.3959,10.31864],[79.40321,10.3172],[79.43202,10.31764],[79.50319,10.31497],[79.51292,10.31314],[79.5336,10.32246],[79.54413,10.32489],[79.54922,10.31781],[79.53207,10.31148],[79.53042,10.3102],[79.53167,10.30843],[79.59553,10.30244],[79.64336,10.29426],[79.65538,10.28989],[79.67269,10.28917],[79.71286,10.27916],[79.73385,10.27612],[79.74061,10.27667],[79.74699,10.27458],[79.74991,10.27479],[79.75265,10.27759],[79.75056,10.27341],[79.76766,10.27181],[79.77825,10.27291],[79.77928,10.27493],[79.77754,10.28462],[79.77456,10.28699],[79.77286,10.29134],[79.76789,10.28863],[79.75599,10.29375],[79.75193,10.29759],[79.75105,10.30051],[79.74873,10.30072],[79.74872,10.31438],[79.76271,10.31314],[79.76421,10.3086],[79.76113,10.31001],[79.76005,10.30821],[79.76708,10.3017],[79.77961,10.2921],[79.78339,10.29606],[79.78312,10.29189],[79.78601,10.28973],[79.78746,10.28129],[79.78351,10.27847],[79.78352,10.27427],[79.78009,10.27247],[79.79969,10.27393],[79.80122,10.27475],[79.80186,10.2785],[79.80213,10.27416],[79.81393,10.27562],[79.81591,10.27765],[79.81006,10.28451],[79.81468,10.28289],[79.81332,10.28874],[79.8192,10.27927],[79.81676,10.27584],[79.86032,10.28241],[79.86848,10.28674],[79.87365,10.29177],[79.87643,10.29602],[79.87485,10.29945],[79.87703,10.29761],[79.88044,10.30469],[79.8814,10.32387],[79.87977,10.3253],[79.87946,10.33159],[79.87119,10.36073],[79.86545,10.40134],[79.86682,10.41705],[79.86289,10.47025],[79.8585,10.47229],[79.86239,10.4717],[79.86264,10.47301],[79.85785,10.54749],[79.85894,10.55184],[79.85805,10.56779],[79.85684,10.57181],[79.85279,10.57568],[79.85467,10.57639],[79.85636,10.57358],[79.85732,10.57449],[79.85356,10.61674],[79.85334,10.67648],[79.84102,10.6763],[79.85008,10.68037],[79.8533,10.67942],[79.85036,10.76341],[79.85082,10.82113],[79.84912,10.8248],[79.8525,10.82721],[79.83107,10.82738],[79.82809,10.84967],[79.82108,10.84556],[79.81943,10.84914],[79.81376,10.84996],[79.80794,10.85562],[79.80749,10.86544],[79.80966,10.86566],[79.8117,10.85965],[79.81797,10.86345],[79.82491,10.86483],[79.82241,10.87424],[79.81111,10.87557],[79.8113,10.88034],[79.82467,10.88039],[79.82855,10.88209],[79.82858,10.88378],[79.81135,10.88844],[79.80711,10.8875],[79.80433,10.89106],[79.80108,10.89009],[79.79979,10.88735],[79.79469,10.88754],[79.79528,10.89085],[79.79036,10.89488],[79.78996,10.89034],[79.78366,10.88848],[79.78211,10.89043],[79.78256,10.89533],[79.79127,10.89596],[79.79386,10.89869],[79.792,10.90024],[79.79136,10.90484],[79.79541,10.90274],[79.78933,10.90844],[79.78213,10.90624],[79.77991,10.90881],[79.77742,10.90895],[79.77707,10.90712],[79.77924,10.90527],[79.7767,10.90541],[79.777,10.89656],[79.76515,10.89628],[79.76529,10.89437],[79.76795,10.89246],[79.75629,10.89176],[79.75586,10.8946],[79.76357,10.89974],[79.76137,10.90175],[79.76175,10.89924],[79.76029,10.90048],[79.75703,10.89647],[79.75789,10.90191],[79.7595,10.90186],[79.75757,10.90786],[79.76302,10.91361],[79.75897,10.91661],[79.7544,10.91622],[79.75377,10.91404],[79.74338,10.91483],[79.74512,10.91613],[79.74558,10.91947],[79.74336,10.91758],[79.74211,10.91819],[79.7438,10.91916],[79.74312,10.92504],[79.73881,10.92346],[79.73952,10.92649],[79.73754,10.92584],[79.73837,10.92486],[79.73556,10.92486],[79.736,10.92761],[79.72508,10.92916],[79.7259,10.93429],[79.72723,10.93527],[79.72959,10.93415],[79.7296,10.93629],[79.7233,10.93518],[79.72743,10.93794],[79.72529,10.9384],[79.72549,10.94118],[79.72407,10.94134],[79.72575,10.94332],[79.73088,10.94441],[79.73218,10.94781],[79.73718,10.94906],[79.7367,10.95743],[79.73358,10.95724],[79.73269,10.95143],[79.72995,10.95089],[79.72085,10.95187],[79.71974,10.95445],[79.72146,10.95417],[79.72151,10.9557],[79.71919,10.95718],[79.72048,10.95798],[79.72103,10.96505],[79.71969,10.96851],[79.7312,10.97052],[79.73528,10.96941],[79.73553,10.9675],[79.73896,10.96729],[79.73952,10.96455],[79.74185,10.96643],[79.74638,10.9651],[79.7461,10.95629],[79.74938,10.95846],[79.75576,10.95841],[79.75887,10.96059],[79.76396,10.95976],[79.7617,10.965],[79.7628,10.96653],[79.76058,10.96809],[79.75945,10.97219],[79.75478,10.97188],[79.75479,10.97517],[79.75284,10.97689],[79.75559,10.97797],[79.75571,10.97951],[79.75845,10.9798],[79.75856,10.98349],[79.7529,10.98287],[79.75261,10.98802],[79.74737,10.9883],[79.74859,10.9979],[79.7468,11.00258],[79.7487,11.00327],[79.75392,11.00254],[79.75646,11.00368],[79.76007,10.99902],[79.76215,11.00135],[79.76669,10.99733],[79.77987,10.9986],[79.77894,10.99686],[79.78359,10.99478],[79.78356,10.99668],[79.78655,10.99724],[79.78904,10.99124],[79.78615,10.99079],[79.78641,10.98961],[79.79393,10.98309],[79.79779,10.98249],[79.79947,10.98285],[79.79908,10.9859],[79.80184,10.98809],[79.80407,10.98697],[79.80383,10.9921],[79.80627,10.99295],[79.80325,10.9952],[79.80427,10.99764],[79.80815,10.99988],[79.81317,10.99915],[79.8155,11.00387],[79.82068,10.99816],[79.823,11.00076],[79.82793,10.99814],[79.82899,11.00179],[79.83195,11.00282],[79.84013,11.0016],[79.83944,10.99584],[79.85153,10.99393],[79.85067,10.98739],[79.85195,10.98384],[79.85382,10.98322],[79.85504,11.01284],[79.85703,11.02602],[79.85565,11.04264],[79.85843,11.12927],[79.85662,11.17135],[79.84849,11.23619],[79.83745,11.28952],[79.83429,11.32174],[79.8365,11.33569],[79.8426,11.35074],[79.84095,11.35285],[79.83219,11.35648],[79.83165,11.36115],[79.82309,11.3785],[79.81844,11.39415],[79.81137,11.43029],[79.80306,11.4538],[79.79636,11.46546],[79.79581,11.46455],[79.79476,11.46623],[79.79518,11.4643],[79.79807,11.45857],[79.79384,11.46232],[79.7909,11.47068],[79.77707,11.48855],[79.77562,11.49402],[79.77923,11.50149],[79.77864,11.50643],[79.7707,11.51371],[79.77721,11.50615],[79.77807,11.50273],[79.77824,11.50152],[79.77464,11.50095],[79.77427,11.50369],[79.77273,11.50107],[79.76793,11.51068],[79.7677,11.51372],[79.77189,11.50589],[79.77381,11.50458],[79.77405,11.50616],[79.77053,11.50978],[79.7629,11.52953],[79.75704,11.55615],[79.75736,11.59527],[79.76065,11.62437],[79.77299,11.6856],[79.78657,11.73366],[79.79586,11.78572],[79.78443,11.78734],[79.78124,11.7843],[79.78049,11.78111],[79.77194,11.78218],[79.77022,11.78342],[79.77066,11.78951],[79.76886,11.78912],[79.76882,11.79073],[79.76591,11.79183],[79.762,11.79079],[79.76096,11.78694],[79.7576,11.78345],[79.7551,11.77523],[79.74978,11.77609],[79.74027,11.78089],[79.7319,11.78076],[79.72618,11.78252],[79.72186,11.78686],[79.71988,11.78495],[79.71236,11.79151],[79.71391,11.7963],[79.71702,11.79755],[79.72282,11.79649],[79.72312,11.80285],[79.7253,11.80315],[79.72452,11.81044],[79.73572,11.80932],[79.73479,11.81685],[79.73301,11.81813],[79.73166,11.8244],[79.73239,11.8334],[79.72945,11.83696],[79.73821,11.83692],[79.73673,11.84421],[79.76443,11.83373],[79.76499,11.82412],[79.77013,11.82259],[79.77304,11.82267],[79.77332,11.82638],[79.77838,11.83171],[79.78649,11.83099],[79.79236,11.82755],[79.7958,11.8285],[79.79507,11.82569],[79.79754,11.82456],[79.8007,11.83064],[79.79868,11.8333],[79.79364,11.83235],[79.79384,11.83355],[79.79814,11.83465],[79.79829,11.8387],[79.80225,11.83389],[79.80706,11.83354],[79.80783,11.83658],[79.80656,11.83708],[79.80616,11.84167],[79.80821,11.84526],[79.80067,11.85527],[79.78228,11.85588],[79.78016,11.84811],[79.77672,11.8452],[79.77588,11.83841],[79.77244,11.83662],[79.76819,11.8388],[79.76548,11.84168],[79.76433,11.84687],[79.76217,11.84839],[79.7632,11.85183],[79.76513,11.85194],[79.76696,11.858],[79.7695,11.85827],[79.77088,11.86133],[79.76928,11.86507],[79.77009,11.87461],[79.76853,11.87593],[79.76453,11.87545],[79.76399,11.87697],[79.75743,11.87607],[79.75868,11.86847],[79.75387,11.86593],[79.7541,11.85106],[79.75189,11.84835],[79.74311,11.84832],[79.7436,11.85857],[79.74195,11.8628],[79.73937,11.8647],[79.73269,11.86562],[79.73259,11.86256],[79.72112,11.8625],[79.7189,11.85329],[79.71343,11.86067],[79.71271,11.86665],[79.70826,11.86909],[79.71,11.88921],[79.69961,11.88911],[79.69686,11.88858],[79.69658,11.88667],[79.68654,11.88647],[79.68468,11.88585],[79.68506,11.88098],[79.674,11.8807],[79.67385,11.89161],[79.68282,11.89197],[79.68263,11.88878],[79.68684,11.88889],[79.68716,11.89454],[79.69539,11.89479],[79.69574,11.90241],[79.69762,11.90243],[79.6979,11.90473],[79.69776,11.9076],[79.6956,11.90789],[79.6962,11.91917],[79.71866,11.91904],[79.71795,11.91336],[79.7066,11.91362],[79.70661,11.90519],[79.70895,11.90431],[79.70854,11.90158],[79.70606,11.89936],[79.70528,11.89392],[79.70943,11.893],[79.71119,11.89071],[79.71689,11.89279],[79.71883,11.89043],[79.72373,11.88861],[79.72499,11.88929],[79.72282,11.89172],[79.72888,11.89021],[79.7305,11.89173],[79.73131,11.90321],[79.7407,11.90544],[79.73221,11.91371],[79.72552,11.92316],[79.71753,11.92899],[79.72089,11.9449],[79.70968,11.94996],[79.70792,11.94666],[79.70795,11.94193],[79.71122,11.93307],[79.70662,11.93517],[79.70429,11.94017],[79.69731,11.94175],[79.69576,11.9477],[79.69166,11.95132],[79.69569,11.96392],[79.69797,11.96049],[79.70368,11.96547],[79.7026,11.96702],[79.71021,11.96578],[79.71082,11.96728],[79.71503,11.96764],[79.71602,11.97106],[79.70927,11.97581],[79.71242,11.98655],[79.7159,11.98484],[79.72057,11.99274],[79.73343,11.99326],[79.73479,11.99747],[79.7375,11.99848],[79.73768,12.00095],[79.74132,12.00122],[79.74152,12.00394],[79.74373,12.00364],[79.7465,12.00768],[79.76237,12.00269],[79.76207,11.99312],[79.76042,11.9892],[79.75552,11.98829],[79.75191,11.98427],[79.74812,11.98475],[79.74195,11.97767],[79.73199,11.98148],[79.72958,11.98468],[79.73041,11.98594],[79.72648,11.98576],[79.7235,11.97705],[79.72452,11.97123],[79.74453,11.96496],[79.7487,11.94399],[79.75027,11.91991],[79.75628,11.92039],[79.75508,11.92601],[79.75726,11.92817],[79.7622,11.92854],[79.75994,11.9436],[79.77153,11.94389],[79.77677,11.9537],[79.77947,11.95356],[79.78085,11.95653],[79.78348,11.95626],[79.78472,11.95986],[79.79173,11.95938],[79.80507,11.95326],[79.80648,11.96802],[79.8126,11.97789],[79.8163,11.97903],[79.8185,11.97789],[79.82235,11.96577],[79.82885,11.95833],[79.84064,11.95579],[79.8568,12.00605],[79.8409,12.01281],[79.84397,12.02419],[79.84443,12.0361],[79.84977,12.05131],[79.8685,12.04517],[79.87365,12.04203],[79.87898,12.05449],[79.89671,12.08346],[79.9744,12.2011],[80.01242,12.26271],[80.0151,12.26482],[80.02182,12.2809],[80.03425,12.30175],[80.06983,12.35008],[80.11337,12.40194],[80.15042,12.45442],[80.1558,12.46494],[80.15825,12.47329],[80.16203,12.50823],[80.16132,12.51219],[80.16633,12.52969],[80.18546,12.57432],[80.18681,12.58713],[80.19185,12.60141],[80.19779,12.61485],[80.20072,12.61714],[80.19865,12.62102],[80.19914,12.6253],[80.20833,12.65081],[80.20833,12.65455],[80.2098,12.65402],[80.21227,12.66032],[80.24485,12.74962],[80.25515,12.7827],[80.25457,12.78957],[80.25215,12.79023],[80.24999,12.79431],[80.24824,12.80895],[80.24912,12.8567],[80.2594,12.93455],[80.27209,12.997],[80.27805,13.01622],[80.28106,13.03962],[80.28679,13.06436],[80.29381,13.07943],[80.30092,13.09007],[80.30232,13.09002],[80.30467,13.10023],[80.31079,13.10816],[80.30477,13.1012],[80.3038,13.10259],[80.30207,13.09835],[80.30311,13.09466],[80.30077,13.09118],[80.29488,13.093],[80.29691,13.09926],[80.29969,13.099],[80.29974,13.09761],[80.30173,13.09867],[80.29827,13.10181],[80.30148,13.11208],[80.30353,13.10994],[80.30339,13.10606],[80.30497,13.11007],[80.30042,13.12141],[80.30553,13.13039],[80.29961,13.12293],[80.29686,13.12393],[80.29915,13.12906],[80.29763,13.13004],[80.29784,13.13271],[80.30108,13.13221],[80.30329,13.12939],[80.30423,13.13039],[80.30272,13.13367],[80.29804,13.13475],[80.29844,13.13749],[80.31278,13.16745],[80.31234,13.17053],[80.32008,13.19069],[80.32931,13.22472],[80.33343,13.23483],[80.33188,13.23471],[80.33188,13.23617],[80.33462,13.23863],[80.33824,13.26201],[80.34527,13.27989],[80.34655,13.31327],[80.33975,13.35949],[80.32959,13.40381],[80.32602,13.44168],[80.31709,13.45696],[80.30642,13.46771],[80.30364,13.47313]],[[79.69112,12.03244],[79.69153,12.03467],[79.69396,12.03481],[79.69521,12.03313],[79.70359,12.03142],[79.70441,12.02704],[79.7016,12.01383],[79.70305,12.00815],[79.71513,12.00025],[79.71538,11.99825],[79.71756,11.99782],[79.71802,11.99295],[79.71961,11.99222],[79.71786,11.9923],[79.71799,11.99042],[79.71464,11.99068],[79.7056,11.99461],[79.70232,11.99418],[79.70144,11.99188],[79.69472,11.99199],[79.69356,11.98997],[79.68547,11.99164],[79.68093,11.98341],[79.67803,11.98625],[79.6739,11.9951],[79.66252,11.98952],[79.65702,11.99139],[79.65762,12.00516],[79.65977,12.01062],[79.66163,12.0123],[79.67132,12.01006],[79.67548,12.02137],[79.68342,12.02161],[79.68507,12.0264],[79.68977,12.02785],[79.69112,12.03244]],[[79.79461,12.01683],[79.78911,12.01823],[79.78998,12.02333],[79.7888,12.02638],[79.80434,12.02586],[79.80567,12.02449],[79.80505,12.021],[79.80186,12.01707],[79.79461,12.01683]],[[79.63838,11.98618],[79.63644,11.97785],[79.64032,11.97627],[79.64131,11.97053],[79.64852,11.96759],[79.64731,11.95343],[79.64223,11.95399],[79.64265,11.9421],[79.64721,11.94459],[79.65202,11.94357],[79.65289,11.94823],[79.65748,11.94805],[79.65654,11.94702],[79.65865,11.94461],[79.65862,11.94197],[79.66041,11.94155],[79.66067,11.93716],[79.66426,11.93698],[79.66418,11.93834],[79.66933,11.93751],[79.6707,11.93158],[79.66887,11.91827],[79.66267,11.91819],[79.66258,11.91645],[79.66103,11.91631],[79.66267,11.9131],[79.65605,11.91293],[79.65588,11.9079],[79.64111,11.90778],[79.64071,11.9022],[79.63209,11.90126],[79.62532,11.90303],[79.62796,11.92059],[79.61849,11.92606],[79.61886,11.94332],[79.62475,11.94313],[79.6284,11.94514],[79.62876,11.9596],[79.6266,11.96427],[79.62749,11.96815],[79.61861,11.96995],[79.62457,11.97601],[79.62437,11.98179],[79.62085,11.98238],[79.62082,11.98394],[79.61797,11.98498],[79.61718,11.98955],[79.62361,11.98932],[79.62445,11.99208],[79.62632,12.00036],[79.61968,12.00042],[79.61929,12.00483],[79.62071,12.01353],[79.62583,12.01539],[79.62905,12.0188],[79.6251,12.03129],[79.62817,12.03226],[79.63526,12.02942],[79.6375,12.02654],[79.63983,12.02783],[79.64471,12.02706],[79.651,12.02181],[79.64779,12.01875],[79.64531,12.00471],[79.64389,12.00517],[79.64231,11.99923],[79.63645,11.99809],[79.63617,11.9958],[79.64148,11.99163],[79.63838,11.98618]],[[79.6784,11.97183],[79.68651,11.97325],[79.68785,11.9696],[79.68389,11.96041],[79.68341,11.95522],[79.68466,11.95335],[79.67322,11.94787],[79.6641,11.95086],[79.65878,11.95007],[79.65823,11.95251],[79.65464,11.95349],[79.65281,11.95786],[79.65379,11.96067],[79.66002,11.95839],[79.66052,11.96258],[79.66198,11.96277],[79.6622,11.96917],[79.67667,11.96811],[79.6784,11.97183]],[[79.61711,11.88341],[79.62122,11.8906],[79.62496,11.8908],[79.62491,11.88925],[79.62978,11.88868],[79.62989,11.88129],[79.6345,11.88104],[79.6347,11.88876],[79.64116,11.88663],[79.64052,11.88059],[79.64839,11.88045],[79.64858,11.87053],[79.65775,11.87009],[79.65928,11.86773],[79.66273,11.86725],[79.66342,11.86125],[79.66165,11.86118],[79.65789,11.85266],[79.64713,11.85016],[79.62634,11.85467],[79.62846,11.8698],[79.61915,11.87019],[79.61951,11.86269],[79.61223,11.86263],[79.61066,11.86002],[79.602,11.85786],[79.60315,11.86875],[79.60007,11.87584],[79.59941,11.88301],[79.60459,11.88135],[79.60815,11.87686],[79.61711,11.88341]],[[79.6994,11.87423],[79.69907,11.86129],[79.696,11.86035],[79.69723,11.87408],[79.6994,11.87423]],[[79.64732,11.84422],[79.66178,11.83942],[79.65946,11.8294],[79.6634,11.82529],[79.67131,11.82365],[79.67129,11.81488],[79.66519,11.815],[79.66342,11.81306],[79.65965,11.81287],[79.64634,11.81624],[79.64708,11.81968],[79.64095,11.82337],[79.64324,11.82608],[79.64732,11.84422]],[[79.69711,11.82307],[79.702,11.82291],[79.70423,11.81347],[79.69299,11.81374],[79.69459,11.82304],[79.69711,11.82307]],[[79.68313,11.81311],[79.68813,11.81224],[79.69057,11.807],[79.68966,11.80214],[79.68393,11.80217],[79.68142,11.79624],[79.67458,11.80354],[79.67468,11.80586],[79.67593,11.8143],[79.68313,11.81311]],[[79.72192,10.93518],[79.72045,10.93724],[79.72247,10.93827],[79.72192,10.93518]],[[79.80716,10.87756],[79.80605,10.87964],[79.80976,10.88042],[79.81003,10.87837],[79.80716,10.87756]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"34","area_level":"State","area_name":"Puducherry","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.80913,10.87788],[79.80961,10.87799],[79.81003,10.87837],[79.81027,10.87954],[79.80976,10.88042],[79.80918,10.88061],[79.80748,10.88064],[79.80682,10.88036],[79.80605,10.87964],[79.80596,10.87906],[79.80695,10.87761],[79.80738,10.8775],[79.80913,10.87788]]],[[[79.73967,10.91984],[79.73984,10.92005],[79.73986,10.92062],[79.73981,10.92097],[79.7397,10.92132],[79.73954,10.92144],[79.7394,10.92145],[79.73917,10.92141],[79.73903,10.92119],[79.73907,10.92089],[79.73912,10.92067],[79.73894,10.92047],[79.73887,10.92036],[79.73883,10.9201],[79.7389,10.91988],[79.73919,10.91974],[79.73967,10.91984]]],[[[79.7223,10.93522],[79.72227,10.9362],[79.72293,10.93623],[79.72299,10.937],[79.72291,10.93714],[79.72256,10.9375],[79.72247,10.93827],[79.72193,10.93823],[79.72177,10.93724],[79.72045,10.93724],[79.72049,10.93623],[79.72189,10.93615],[79.72192,10.93518],[79.7223,10.93518],[79.7223,10.93522]]],[[[79.7197,10.95485],[79.71974,10.95595],[79.71838,10.95591],[79.71834,10.95483],[79.7197,10.95485]]],[[[79.75681,11.00262],[79.75584,11.00379],[79.75392,11.00254],[79.7468,11.00258],[79.74859,10.9979],[79.74842,10.99007],[79.74737,10.9883],[79.75261,10.98802],[79.7529,10.98287],[79.75856,10.98349],[79.75845,10.9798],[79.75571,10.97951],[79.75559,10.97797],[79.75269,10.97775],[79.75284,10.97689],[79.75479,10.97517],[79.75478,10.97188],[79.75674,10.97291],[79.75945,10.97219],[79.76058,10.96809],[79.7628,10.96653],[79.76229,10.96547],[79.76175,10.96637],[79.7617,10.965],[79.76396,10.95976],[79.75887,10.96059],[79.75576,10.95841],[79.74938,10.95846],[79.7461,10.95629],[79.74549,10.96272],[79.74645,10.96488],[79.74477,10.96621],[79.74185,10.96643],[79.74011,10.96435],[79.73896,10.96729],[79.73553,10.9675],[79.73528,10.96941],[79.73191,10.96931],[79.7312,10.97052],[79.73012,10.96949],[79.72604,10.96887],[79.72366,10.96976],[79.72201,10.96824],[79.72176,10.96917],[79.71969,10.96851],[79.72103,10.96505],[79.72048,10.95798],[79.71919,10.95718],[79.72151,10.9557],[79.72146,10.95417],[79.71974,10.95445],[79.71998,10.9526],[79.72474,10.95122],[79.72754,10.95212],[79.72995,10.95089],[79.73269,10.95143],[79.73255,10.95513],[79.73376,10.95479],[79.73358,10.95724],[79.73482,10.95693],[79.73479,10.95772],[79.7367,10.95743],[79.73662,10.95305],[79.73756,10.95258],[79.73718,10.94906],[79.73218,10.94781],[79.73088,10.94441],[79.7275,10.94403],[79.72435,10.94198],[79.72459,10.94086],[79.72549,10.94118],[79.72529,10.9384],[79.72743,10.93794],[79.72338,10.93618],[79.7233,10.93518],[79.725,10.93634],[79.72685,10.93557],[79.72684,10.9365],[79.7296,10.93629],[79.72959,10.93415],[79.72723,10.93527],[79.7259,10.93429],[79.7247,10.92972],[79.73027,10.9285],[79.73042,10.92749],[79.73321,10.92842],[79.736,10.92761],[79.73556,10.92486],[79.73837,10.92486],[79.73754,10.92584],[79.73952,10.92649],[79.73881,10.92346],[79.73978,10.9247],[79.74312,10.92504],[79.7438,10.91916],[79.74211,10.91819],[79.74336,10.91758],[79.74558,10.91947],[79.74512,10.91613],[79.74351,10.91607],[79.74338,10.91483],[79.75377,10.91404],[79.7544,10.91622],[79.75897,10.91661],[79.76243,10.91438],[79.76305,10.91335],[79.76097,10.91239],[79.75757,10.90786],[79.7595,10.90186],[79.75927,10.90093],[79.75789,10.90191],[79.75703,10.89647],[79.758,10.89837],[79.75983,10.89853],[79.76029,10.90048],[79.76175,10.89924],[79.76251,10.90043],[79.76095,10.90065],[79.76137,10.90175],[79.76357,10.89974],[79.76229,10.8992],[79.76238,10.89799],[79.75867,10.89721],[79.75781,10.89478],[79.75586,10.8946],[79.75629,10.89176],[79.75787,10.89147],[79.75836,10.89275],[79.76795,10.89246],[79.76785,10.89355],[79.76529,10.89437],[79.76515,10.89628],[79.777,10.89656],[79.7767,10.90541],[79.77924,10.90527],[79.77707,10.90712],[79.77742,10.90895],[79.77991,10.90881],[79.78213,10.90624],[79.78933,10.90844],[79.79541,10.90274],[79.7947,10.90211],[79.79136,10.90484],[79.792,10.90024],[79.79386,10.89869],[79.79245,10.8984],[79.79127,10.89596],[79.78953,10.89674],[79.78785,10.89551],[79.78256,10.89533],[79.78211,10.89043],[79.78366,10.88848],[79.78996,10.89034],[79.79036,10.89488],[79.79528,10.89085],[79.79469,10.88754],[79.79979,10.88735],[79.80108,10.89009],[79.80433,10.89106],[79.80711,10.8875],[79.81135,10.88844],[79.82328,10.88427],[79.82631,10.88478],[79.82858,10.88378],[79.82855,10.88209],[79.82467,10.88039],[79.82101,10.88136],[79.81931,10.87996],[79.8113,10.88034],[79.81111,10.87557],[79.82241,10.87424],[79.82332,10.87005],[79.82481,10.86903],[79.82491,10.86483],[79.81797,10.86345],[79.8117,10.85965],[79.80966,10.86566],[79.80749,10.86544],[79.80794,10.85562],[79.81376,10.84996],[79.81943,10.84914],[79.81926,10.84738],[79.82108,10.84556],[79.82527,10.84694],[79.82809,10.84967],[79.83107,10.82738],[79.85074,10.82783],[79.85095,10.84997],[79.84984,10.85822],[79.85165,10.87629],[79.85053,10.88557],[79.85218,10.90504],[79.85382,10.98322],[79.85195,10.98384],[79.85067,10.98739],[79.85153,10.99393],[79.83944,10.99584],[79.84013,11.0016],[79.83195,11.00282],[79.82899,11.00179],[79.82793,10.99814],[79.82579,10.99831],[79.823,11.00076],[79.82068,10.99816],[79.8155,11.00387],[79.81412,11.00312],[79.81489,11.00147],[79.81317,10.99915],[79.80815,10.99988],[79.80427,10.99764],[79.80325,10.9952],[79.80627,10.99295],[79.80571,10.99189],[79.80511,10.9928],[79.80383,10.9921],[79.80468,10.99097],[79.80407,10.98697],[79.80298,10.98842],[79.80184,10.98809],[79.79908,10.9859],[79.79947,10.98285],[79.79779,10.98249],[79.79393,10.98309],[79.78641,10.98961],[79.78615,10.99079],[79.78904,10.99124],[79.78655,10.99724],[79.78356,10.99668],[79.78359,10.99478],[79.77894,10.99686],[79.77987,10.9986],[79.76669,10.99733],[79.76327,10.9991],[79.76215,11.00135],[79.76007,10.99902],[79.75885,11.00191],[79.75681,11.00262]],[[79.76277,10.90902],[79.76406,10.91222],[79.76495,10.91129],[79.7639,10.90594],[79.76604,10.90531],[79.76789,10.90177],[79.76398,10.90146],[79.76535,10.90219],[79.76524,10.90354],[79.76218,10.90152],[79.7623,10.90341],[79.76508,10.90415],[79.76368,10.90465],[79.76303,10.90681],[79.76247,10.90623],[79.76277,10.90902]],[[79.76719,10.90119],[79.77043,10.90139],[79.76935,10.89997],[79.76695,10.9002],[79.76782,10.89871],[79.76664,10.89863],[79.76616,10.90061],[79.76719,10.90119]]],[[[75.54163,11.69953],[75.54206,11.70098],[75.54225,11.70209],[75.54343,11.70315],[75.54423,11.70454],[75.54287,11.70539],[75.5393,11.70901],[75.53826,11.70961],[75.53732,11.70971],[75.53567,11.70967],[75.53426,11.70901],[75.53305,11.7058],[75.53209,11.70471],[75.53004,11.70357],[75.53014,11.70345],[75.52998,11.70281],[75.52932,11.70272],[75.52886,11.70228],[75.52904,11.70129],[75.53013,11.70074],[75.53133,11.7003],[75.53172,11.69936],[75.53144,11.69923],[75.5316,11.69876],[75.53223,11.69882],[75.53232,11.69911],[75.53375,11.69799],[75.53483,11.69565],[75.53623,11.69354],[75.53994,11.6962],[75.54097,11.69633],[75.54144,11.69601],[75.54163,11.69601],[75.54148,11.6968],[75.54163,11.6975],[75.54144,11.69754],[75.54149,11.69782],[75.54168,11.69782],[75.54182,11.69847],[75.54149,11.69861],[75.54163,11.69953]]],[[[79.67992,11.81443],[79.67941,11.81458],[79.67593,11.8143],[79.67468,11.80586],[79.67458,11.80354],[79.67575,11.80226],[79.67742,11.7997],[79.67845,11.79842],[79.68005,11.79705],[79.68142,11.79624],[79.68393,11.80217],[79.68563,11.80176],[79.68571,11.80252],[79.68966,11.80214],[79.69057,11.807],[79.69062,11.80857],[79.68945,11.80907],[79.68862,11.81066],[79.68813,11.81224],[79.6853,11.81257],[79.68313,11.81311],[79.67992,11.81443]]],[[[79.69922,11.82304],[79.69459,11.82304],[79.69435,11.81871],[79.69393,11.81682],[79.69299,11.81374],[79.69556,11.81369],[79.69805,11.81378],[79.69918,11.81365],[79.70172,11.81365],[79.70423,11.81347],[79.70413,11.81394],[79.70386,11.81453],[79.70289,11.81577],[79.70275,11.8162],[79.70258,11.8172],[79.70228,11.82098],[79.702,11.82291],[79.70039,11.82293],[79.69922,11.82304]]],[[[75.53831,11.76272],[75.53623,11.7627],[75.53584,11.76228],[75.53575,11.76105],[75.53239,11.75974],[75.53123,11.75871],[75.53189,11.75759],[75.53388,11.75693],[75.53438,11.75638],[75.53472,11.7526],[75.53566,11.75122],[75.53744,11.75038],[75.53744,11.74866],[75.53906,11.74918],[75.54026,11.74847],[75.54169,11.74295],[75.54119,11.73982],[75.54146,11.73889],[75.54092,11.73871],[75.54011,11.73491],[75.53607,11.73435],[75.53602,11.73355],[75.53172,11.73466],[75.53082,11.73096],[75.52961,11.73087],[75.52898,11.73034],[75.52827,11.7295],[75.52763,11.72747],[75.52669,11.72663],[75.52656,11.72606],[75.52727,11.72287],[75.52704,11.72181],[75.52754,11.72149],[75.52708,11.72057],[75.52807,11.71844],[75.52783,11.71601],[75.52815,11.71592],[75.5286,11.71677],[75.52914,11.71676],[75.53071,11.71587],[75.53156,11.71588],[75.53218,11.71393],[75.53079,11.71362],[75.53056,11.71044],[75.53029,11.71009],[75.52903,11.70979],[75.52908,11.70908],[75.53042,11.70884],[75.531,11.70826],[75.53176,11.70896],[75.53083,11.71021],[75.53235,11.71011],[75.53409,11.71095],[75.5359,11.71126],[75.53661,11.71196],[75.53737,11.71218],[75.53692,11.71254],[75.5371,11.71333],[75.5367,11.71351],[75.53581,11.71316],[75.53504,11.7136],[75.53451,11.71325],[75.53392,11.71396],[75.53325,11.71391],[75.53263,11.71515],[75.5325,11.71621],[75.53424,11.71682],[75.53443,11.71771],[75.53653,11.7193],[75.5373,11.71894],[75.5376,11.71607],[75.53881,11.71633],[75.5415,11.71553],[75.5419,11.71571],[75.54226,11.71663],[75.54292,11.71633],[75.54373,11.7165],[75.54404,11.71751],[75.54578,11.71751],[75.54596,11.71685],[75.54677,11.71676],[75.54713,11.71583],[75.5478,11.71543],[75.54829,11.71689],[75.54995,11.71719],[75.55135,11.71905],[75.55426,11.71944],[75.55534,11.72147],[75.55494,11.72372],[75.55562,11.7276],[75.54998,11.73115],[75.54475,11.73267],[75.54465,11.73412],[75.54427,11.73454],[75.54324,11.7344],[75.54207,11.73719],[75.54278,11.74025],[75.54335,11.74136],[75.54298,11.74294],[75.54449,11.74646],[75.54492,11.75023],[75.54443,11.75123],[75.54472,11.75353],[75.54644,11.75627],[75.5441,11.7591],[75.54264,11.75948],[75.54136,11.75937],[75.53935,11.76086],[75.53895,11.76002],[75.53862,11.76014],[75.53831,11.76272]]],[[[79.73772,11.84296],[79.73743,11.84431],[79.73673,11.84421],[79.73821,11.83692],[79.72945,11.83696],[79.73239,11.8334],[79.73166,11.8244],[79.73275,11.8238],[79.73301,11.81813],[79.73479,11.81685],[79.73429,11.81434],[79.73467,11.8131],[79.73592,11.81248],[79.73572,11.80932],[79.7298,11.80926],[79.72987,11.81003],[79.72452,11.81044],[79.72424,11.80751],[79.72553,11.80585],[79.7253,11.80315],[79.72312,11.80285],[79.72262,11.79962],[79.72352,11.79906],[79.72282,11.79649],[79.71702,11.79755],[79.71676,11.79646],[79.71391,11.7963],[79.71236,11.79151],[79.71292,11.79083],[79.71988,11.78495],[79.72186,11.78686],[79.7247,11.7834],[79.72618,11.78252],[79.7319,11.78076],[79.74027,11.78089],[79.74978,11.77609],[79.7551,11.77523],[79.75596,11.77535],[79.7576,11.78345],[79.7584,11.7838],[79.75836,11.78494],[79.75999,11.78702],[79.76096,11.78694],[79.762,11.79079],[79.76315,11.79056],[79.76591,11.79183],[79.76882,11.79073],[79.76886,11.78912],[79.77066,11.78951],[79.77109,11.78814],[79.77038,11.78714],[79.77022,11.78342],[79.77194,11.78218],[79.77478,11.7819],[79.77499,11.78246],[79.77867,11.78113],[79.78049,11.78111],[79.78124,11.7843],[79.78308,11.78495],[79.78443,11.78734],[79.79586,11.78572],[79.79852,11.802],[79.80494,11.82751],[79.80706,11.83349],[79.80225,11.83389],[79.80139,11.83467],[79.80043,11.83766],[79.79829,11.8387],[79.79768,11.83786],[79.79814,11.83465],[79.79384,11.83355],[79.79364,11.83235],[79.79601,11.83324],[79.79868,11.8333],[79.8007,11.83064],[79.80053,11.82903],[79.7984,11.82755],[79.79836,11.82573],[79.79754,11.82456],[79.796,11.8247],[79.79507,11.82569],[79.79625,11.82692],[79.7958,11.8285],[79.79236,11.82755],[79.78739,11.82935],[79.78649,11.83099],[79.78022,11.83184],[79.77838,11.83171],[79.77623,11.82866],[79.77471,11.82864],[79.77438,11.82694],[79.77332,11.82638],[79.77304,11.82267],[79.77114,11.82266],[79.77105,11.82327],[79.77004,11.82344],[79.77013,11.82259],[79.76782,11.8227],[79.76775,11.82334],[79.76499,11.82412],[79.76533,11.83189],[79.76443,11.83373],[79.75571,11.83687],[79.7557,11.83754],[79.75077,11.83863],[79.74868,11.84069],[79.73964,11.84237],[79.73892,11.84365],[79.73772,11.84296]]],[[[79.65295,11.84265],[79.65155,11.84383],[79.64732,11.84422],[79.64719,11.84226],[79.64596,11.84231],[79.64535,11.83906],[79.64578,11.83896],[79.64594,11.83567],[79.64579,11.83502],[79.64461,11.83365],[79.64324,11.82608],[79.64257,11.82578],[79.64189,11.8248],[79.64104,11.82441],[79.64105,11.82279],[79.64434,11.82221],[79.64452,11.82122],[79.64518,11.82098],[79.64501,11.82021],[79.64708,11.81968],[79.64628,11.81637],[79.64786,11.81601],[79.64798,11.81543],[79.65036,11.81521],[79.65272,11.81444],[79.65791,11.81384],[79.65965,11.81287],[79.66066,11.81367],[79.66342,11.81306],[79.66519,11.815],[79.67129,11.81488],[79.67131,11.82365],[79.66595,11.82453],[79.6634,11.82529],[79.66245,11.82581],[79.65946,11.8294],[79.65949,11.83003],[79.66063,11.83263],[79.66189,11.83755],[79.66178,11.83942],[79.65455,11.84186],[79.65295,11.84265]]],[[[79.69984,11.87392],[79.69974,11.87427],[79.69948,11.8743],[79.69903,11.87378],[79.69876,11.87365],[79.69723,11.87408],[79.69712,11.87171],[79.696,11.86035],[79.69907,11.86129],[79.69949,11.86762],[79.69941,11.86912],[79.69984,11.87392]]],[[[79.79332,11.88455],[79.79159,11.885],[79.79125,11.88393],[79.79295,11.88348],[79.79332,11.88455]]],[[[79.63411,11.88106],[79.62989,11.88129],[79.62978,11.88868],[79.62491,11.88925],[79.62496,11.8908],[79.62122,11.8906],[79.61892,11.88637],[79.61847,11.88615],[79.61819,11.88459],[79.61762,11.88435],[79.61711,11.88341],[79.6119,11.87898],[79.60815,11.87686],[79.60741,11.87844],[79.60459,11.88135],[79.60168,11.88267],[79.59941,11.88301],[79.60007,11.87584],[79.60056,11.87568],[79.60138,11.87115],[79.6027,11.87174],[79.60315,11.86875],[79.602,11.85786],[79.60448,11.85873],[79.60564,11.85872],[79.60764,11.8601],[79.61066,11.86002],[79.61021,11.86067],[79.61251,11.86169],[79.61223,11.86263],[79.61406,11.86274],[79.61408,11.86303],[79.61951,11.86269],[79.61973,11.86812],[79.61915,11.87019],[79.62431,11.86948],[79.62846,11.8698],[79.62857,11.86532],[79.62727,11.86482],[79.62692,11.8575],[79.62634,11.85467],[79.62868,11.85389],[79.63615,11.85292],[79.64713,11.85074],[79.64713,11.85016],[79.65284,11.8505],[79.65378,11.85099],[79.65384,11.85174],[79.65685,11.85207],[79.65692,11.85251],[79.65789,11.85266],[79.65869,11.85486],[79.66126,11.8593],[79.66175,11.85935],[79.66165,11.86118],[79.66342,11.86125],[79.66335,11.86545],[79.66276,11.86551],[79.66273,11.86725],[79.65928,11.86773],[79.65923,11.86863],[79.65781,11.8687],[79.65775,11.87009],[79.64858,11.87053],[79.64839,11.88045],[79.64052,11.88059],[79.64116,11.88663],[79.6357,11.88814],[79.6347,11.88876],[79.6345,11.88104],[79.63411,11.88106]]],[[[79.79099,11.89533],[79.78926,11.89584],[79.78902,11.89504],[79.79071,11.89455],[79.79099,11.89533]]],[[[79.68767,11.96911],[79.68785,11.9696],[79.68651,11.97325],[79.68035,11.97286],[79.68019,11.97188],[79.6784,11.97183],[79.67776,11.96886],[79.67678,11.96886],[79.67667,11.96811],[79.67509,11.96832],[79.67483,11.96791],[79.67277,11.96778],[79.66959,11.96856],[79.66756,11.96823],[79.6622,11.96917],[79.66266,11.96682],[79.66198,11.96277],[79.66193,11.96255],[79.66052,11.96258],[79.66002,11.95839],[79.65918,11.9583],[79.65721,11.95861],[79.65612,11.95918],[79.6542,11.9595],[79.65435,11.96052],[79.65379,11.96067],[79.65281,11.95786],[79.65464,11.95349],[79.65542,11.95308],[79.65685,11.95283],[79.65735,11.95248],[79.65823,11.95251],[79.65828,11.9512],[79.6587,11.95106],[79.65878,11.95007],[79.66015,11.95003],[79.66033,11.95028],[79.66123,11.95023],[79.66127,11.9505],[79.6637,11.9509],[79.66465,11.95074],[79.6668,11.94983],[79.67071,11.94935],[79.67093,11.94889],[79.67184,11.94849],[79.67194,11.94812],[79.67322,11.94787],[79.67373,11.9484],[79.67658,11.94845],[79.67669,11.94956],[79.67834,11.95003],[79.68015,11.95172],[79.6828,11.95236],[79.68276,11.95305],[79.68466,11.95335],[79.68462,11.95376],[79.68396,11.95373],[79.68383,11.95435],[79.68352,11.95448],[79.68341,11.95522],[79.68344,11.95632],[79.68381,11.95681],[79.68432,11.96014],[79.68389,11.96041],[79.68464,11.96263],[79.68767,11.96911]]],[[[79.74685,12.00755],[79.74373,12.00364],[79.74152,12.00394],[79.74132,12.00122],[79.73768,12.00095],[79.7375,11.99848],[79.73479,11.99747],[79.73343,11.99326],[79.72057,11.99274],[79.7159,11.98484],[79.71451,11.98497],[79.71465,11.98639],[79.71242,11.98655],[79.70927,11.97581],[79.71602,11.97106],[79.71503,11.96764],[79.71082,11.96728],[79.71021,11.96578],[79.7026,11.96702],[79.70368,11.96547],[79.69797,11.96049],[79.69569,11.96392],[79.69166,11.95132],[79.69576,11.9477],[79.69731,11.94175],[79.70429,11.94017],[79.70653,11.93727],[79.70662,11.93517],[79.71122,11.93307],[79.70795,11.94193],[79.70792,11.94666],[79.70968,11.94996],[79.72089,11.9449],[79.71753,11.92899],[79.72552,11.92316],[79.73221,11.91371],[79.7407,11.90544],[79.73131,11.90321],[79.7305,11.89173],[79.72888,11.89021],[79.72282,11.89172],[79.72331,11.88992],[79.72499,11.88929],[79.72373,11.88861],[79.72097,11.8905],[79.71883,11.89043],[79.71689,11.89279],[79.71119,11.89071],[79.70943,11.893],[79.70528,11.89392],[79.70606,11.89936],[79.70854,11.90158],[79.70895,11.90431],[79.70661,11.90519],[79.7066,11.91362],[79.71795,11.91336],[79.71866,11.91904],[79.6962,11.91917],[79.6956,11.90789],[79.69776,11.9076],[79.6979,11.90473],[79.69762,11.90243],[79.69574,11.90241],[79.69539,11.89479],[79.68716,11.89454],[79.68684,11.88889],[79.68263,11.88878],[79.68282,11.89197],[79.67385,11.89161],[79.674,11.8807],[79.68506,11.88098],[79.68561,11.88488],[79.68468,11.88585],[79.68654,11.88647],[79.69658,11.88667],[79.69686,11.88858],[79.69961,11.88911],[79.70982,11.88929],[79.71072,11.88759],[79.70945,11.88497],[79.70826,11.86909],[79.71271,11.86665],[79.71343,11.86067],[79.71775,11.85414],[79.71975,11.85311],[79.71946,11.85675],[79.72112,11.8625],[79.73259,11.86256],[79.73269,11.86562],[79.7397,11.86464],[79.74195,11.8628],[79.7436,11.85857],[79.74405,11.85292],[79.74246,11.85159],[79.74311,11.84832],[79.74868,11.84908],[79.7504,11.84793],[79.75393,11.85012],[79.75387,11.86593],[79.75549,11.86785],[79.75868,11.86847],[79.75743,11.87607],[79.76399,11.87697],[79.76453,11.87545],[79.76853,11.87593],[79.77009,11.87461],[79.76928,11.86507],[79.77088,11.86133],[79.7695,11.85827],[79.76696,11.858],[79.76513,11.85194],[79.7632,11.85183],[79.76217,11.84839],[79.76433,11.84687],[79.76616,11.84055],[79.77244,11.83662],[79.77588,11.83841],[79.77672,11.8452],[79.78016,11.84811],[79.78173,11.85577],[79.80067,11.85527],[79.8027,11.85401],[79.8031,11.85073],[79.80513,11.84935],[79.80529,11.84766],[79.80774,11.84673],[79.80821,11.84526],[79.80614,11.84044],[79.80656,11.83708],[79.80782,11.83658],[79.81552,11.86043],[79.82269,11.87648],[79.825,11.89065],[79.8343,11.92403],[79.84064,11.95579],[79.83281,11.95652],[79.82885,11.95833],[79.82487,11.96152],[79.82235,11.96577],[79.8185,11.97789],[79.8163,11.97903],[79.8126,11.97789],[79.80981,11.97522],[79.80648,11.96802],[79.80507,11.95326],[79.80334,11.95314],[79.79173,11.95938],[79.78472,11.95986],[79.78348,11.95626],[79.78085,11.95653],[79.77947,11.95356],[79.77677,11.9537],[79.7751,11.94973],[79.7732,11.94908],[79.77153,11.94389],[79.75994,11.9436],[79.7607,11.93202],[79.76099,11.9307],[79.76218,11.93082],[79.7622,11.92854],[79.75726,11.92817],[79.75644,11.92604],[79.75508,11.92601],[79.75512,11.92441],[79.7564,11.92426],[79.75628,11.92039],[79.75027,11.91991],[79.75112,11.92169],[79.74932,11.92216],[79.7487,11.94399],[79.74453,11.96496],[79.72963,11.97067],[79.72452,11.97123],[79.7235,11.97705],[79.72648,11.98576],[79.73041,11.98594],[79.72958,11.98468],[79.73199,11.98148],[79.73569,11.97912],[79.74195,11.97767],[79.74812,11.98475],[79.75191,11.98427],[79.75552,11.98829],[79.76042,11.9892],[79.76207,11.99312],[79.76237,12.00269],[79.74685,12.00755]],[[79.77539,11.90499],[79.77992,11.90413],[79.78767,11.89684],[79.7965,11.89989],[79.79675,11.89429],[79.79483,11.88521],[79.79212,11.88033],[79.79237,11.87685],[79.78959,11.87716],[79.78721,11.87333],[79.78521,11.86283],[79.77833,11.86316],[79.77769,11.86672],[79.7799,11.87239],[79.77967,11.87791],[79.7762,11.87822],[79.77284,11.87522],[79.77356,11.88329],[79.77102,11.88344],[79.77202,11.88537],[79.77053,11.89088],[79.77288,11.90044],[79.7692,11.90066],[79.76925,11.90174],[79.76984,11.90277],[79.77516,11.90183],[79.77539,11.90499]]],[[[79.7924,12.02582],[79.79016,12.02629],[79.78907,12.02645],[79.7888,12.02638],[79.7888,12.02574],[79.78963,12.02425],[79.78998,12.02333],[79.78998,12.02291],[79.78958,12.02092],[79.78953,12.01998],[79.78911,12.01823],[79.79065,12.01775],[79.79262,12.01738],[79.79352,12.01698],[79.79461,12.01683],[79.79494,12.01683],[79.7952,12.01736],[79.7956,12.01749],[79.79618,12.0168],[79.79691,12.0167],[79.80186,12.01707],[79.80202,12.01723],[79.80194,12.01777],[79.80213,12.01861],[79.80252,12.01914],[79.80362,12.01972],[79.80505,12.021],[79.80521,12.02166],[79.80524,12.02237],[79.805,12.02323],[79.80577,12.0242],[79.80567,12.02449],[79.80434,12.02586],[79.80125,12.02596],[79.79821,12.02548],[79.79727,12.02556],[79.79698,12.0257],[79.79586,12.02574],[79.79254,12.02535],[79.7924,12.02582]]],[[[79.62817,12.03226],[79.62553,12.03217],[79.6251,12.03129],[79.62576,12.02853],[79.62725,12.02685],[79.6268,12.02376],[79.6282,12.02335],[79.62804,12.02098],[79.62905,12.0188],[79.62583,12.01539],[79.62071,12.01353],[79.62082,12.01115],[79.61929,12.00483],[79.61968,12.00042],[79.62632,12.00036],[79.62445,11.99208],[79.62361,11.98932],[79.61718,11.98955],[79.61797,11.98498],[79.61977,11.98486],[79.61978,11.98397],[79.62082,11.98394],[79.62085,11.98238],[79.62437,11.98179],[79.62376,11.97857],[79.62457,11.97601],[79.61872,11.97099],[79.61861,11.96995],[79.62245,11.96994],[79.62251,11.96929],[79.62749,11.96815],[79.6266,11.96427],[79.62876,11.9596],[79.6284,11.94514],[79.62475,11.94313],[79.61886,11.94332],[79.61795,11.93604],[79.61851,11.93608],[79.61825,11.93213],[79.61888,11.93028],[79.61849,11.92606],[79.62703,11.92178],[79.62838,11.91948],[79.62532,11.90303],[79.63209,11.90126],[79.63651,11.90142],[79.64071,11.9022],[79.64111,11.90778],[79.65588,11.9079],[79.65605,11.91293],[79.66267,11.9131],[79.6627,11.91517],[79.6611,11.91518],[79.66103,11.91631],[79.66258,11.91645],[79.66267,11.91819],[79.66887,11.91827],[79.669,11.92602],[79.6707,11.93158],[79.66982,11.93162],[79.66977,11.93272],[79.67035,11.93272],[79.66974,11.93499],[79.67035,11.935],[79.6696,11.93553],[79.66933,11.93751],[79.66418,11.93834],[79.66426,11.93698],[79.66067,11.93716],[79.66041,11.94155],[79.65862,11.94197],[79.65865,11.94461],[79.65753,11.94508],[79.65654,11.94702],[79.65748,11.94805],[79.65289,11.94823],[79.65202,11.94357],[79.64721,11.94459],[79.64477,11.94381],[79.64265,11.9421],[79.64251,11.9473],[79.64185,11.94846],[79.64223,11.95399],[79.64731,11.95343],[79.64688,11.95662],[79.64769,11.95843],[79.64761,11.96431],[79.64852,11.96759],[79.64131,11.97053],[79.64032,11.97627],[79.63644,11.97785],[79.6379,11.98487],[79.63917,11.98821],[79.63997,11.98832],[79.64039,11.99103],[79.64148,11.99163],[79.63807,11.99354],[79.63602,11.99604],[79.63645,11.99809],[79.64105,11.99821],[79.64231,11.99923],[79.64389,12.00517],[79.64531,12.00471],[79.64629,12.0105],[79.64593,12.0119],[79.64692,12.01557],[79.64784,12.01581],[79.64733,12.01691],[79.64779,12.01875],[79.651,12.02181],[79.64471,12.02706],[79.63983,12.02783],[79.6375,12.02654],[79.63643,12.02817],[79.63492,12.02839],[79.63526,12.02942],[79.63358,12.02905],[79.63338,12.03024],[79.62817,12.03226]]],[[[79.69701,12.0326],[79.69521,12.03313],[79.69503,12.03393],[79.69379,12.03414],[79.69396,12.03481],[79.69153,12.03467],[79.69147,12.03329],[79.68977,12.02785],[79.68793,12.02785],[79.68755,12.02694],[79.68648,12.02696],[79.68623,12.02626],[79.68507,12.0264],[79.68342,12.02161],[79.6826,12.02177],[79.68146,12.02094],[79.67548,12.02137],[79.67304,12.01703],[79.67324,12.01571],[79.67156,12.01235],[79.67132,12.01006],[79.66163,12.0123],[79.6605,12.0114],[79.65977,12.01062],[79.65989,12.00979],[79.65947,12.00978],[79.65943,12.00814],[79.65799,12.00633],[79.65762,12.00516],[79.65807,12.00441],[79.65796,12.00168],[79.65844,12.00141],[79.65696,11.994],[79.65702,11.99139],[79.66056,11.99028],[79.66086,11.98921],[79.66252,11.98952],[79.66406,11.99043],[79.6673,11.99096],[79.67073,11.99321],[79.67192,11.9947],[79.6739,11.9951],[79.67426,11.99294],[79.67803,11.98625],[79.68093,11.98341],[79.68145,11.98557],[79.68194,11.98568],[79.68318,11.98779],[79.68327,11.98913],[79.68439,11.98974],[79.68547,11.99164],[79.68949,11.99009],[79.69356,11.98997],[79.69402,11.99109],[79.6946,11.99106],[79.69472,11.99199],[79.70144,11.99188],[79.70165,11.99344],[79.70219,11.99342],[79.70232,11.99418],[79.70549,11.99395],[79.7056,11.99461],[79.71464,11.99068],[79.71799,11.99042],[79.7182,11.99157],[79.71771,11.9917],[79.71786,11.9923],[79.71961,11.99222],[79.71967,11.99291],[79.71802,11.99295],[79.71844,11.99519],[79.71746,11.99602],[79.71756,11.99782],[79.71538,11.99825],[79.71513,12.00025],[79.71254,12.0014],[79.71161,12.00237],[79.71141,12.00355],[79.70823,12.0042],[79.70747,12.00597],[79.70645,12.00608],[79.70651,12.00675],[79.70436,12.00746],[79.70428,12.00807],[79.70305,12.00815],[79.70317,12.00962],[79.70251,12.00984],[79.70268,12.01295],[79.7016,12.01383],[79.70275,12.01942],[79.70334,12.01944],[79.70441,12.02704],[79.70423,12.02954],[79.70359,12.03142],[79.7025,12.03211],[79.69769,12.03308],[79.69741,12.03247],[79.69701,12.0326]]],[[[79.85713,12.00677],[79.86404,12.02172],[79.87176,12.03742],[79.87365,12.04203],[79.87241,12.04315],[79.8685,12.04517],[79.84977,12.05131],[79.84777,12.04446],[79.84611,12.04103],[79.84443,12.0361],[79.8439,12.03052],[79.84397,12.02419],[79.84282,12.02217],[79.8414,12.01711],[79.8409,12.01281],[79.84375,12.0114],[79.84988,12.00927],[79.8568,12.00605],[79.85713,12.00677]]],[[[82.21879,16.73999],[82.21783,16.74331],[82.22758,16.75689],[82.22961,16.76236],[82.22547,16.7637],[82.21892,16.76023],[82.21502,16.75572],[82.20459,16.74848],[82.19656,16.73922],[82.18814,16.7401],[82.18245,16.73711],[82.18691,16.72833],[82.20141,16.72052],[82.21037,16.71976],[82.22327,16.72186],[82.23524,16.71677],[82.25437,16.70362],[82.26128,16.70192],[82.27252,16.70274],[82.28417,16.70533],[82.293,16.70966],[82.30264,16.71826],[82.30727,16.72634],[82.31062,16.73504],[82.30885,16.74551],[82.30553,16.75253],[82.3015,16.75518],[82.29688,16.75312],[82.29287,16.74666],[82.28851,16.73491],[82.2715,16.73151],[82.25276,16.73107],[82.23485,16.72927],[82.22824,16.7304],[82.22258,16.73727],[82.21879,16.73999]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"35","area_level":"State","area_name":"Andaman And Nicobar Islands","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[93.95032,6.93412],[93.95057,6.93423],[93.95062,6.93441],[93.95069,6.93459],[93.95062,6.93491],[93.9505,6.93524],[93.95034,6.93551],[93.9501,6.93579],[93.94968,6.93586],[93.94948,6.93581],[93.94936,6.93564],[93.94931,6.93541],[93.94931,6.93502],[93.94956,6.9346],[93.94997,6.93423],[93.95018,6.93409],[93.95032,6.93412]]],[[[93.70099,7.228],[93.70042,7.2291],[93.69983,7.2312],[93.69916,7.23176],[93.69871,7.23188],[93.69835,7.23183],[93.69838,7.2315],[93.69851,7.23148],[93.69815,7.23013],[93.69713,7.22917],[93.69641,7.22817],[93.69583,7.2282],[93.69556,7.22772],[93.69561,7.2272],[93.69576,7.22704],[93.69638,7.22716],[93.69617,7.22702],[93.697,7.22546],[93.69748,7.22542],[93.69764,7.22465],[93.69756,7.22389],[93.69812,7.22247],[93.69782,7.22196],[93.69809,7.22112],[93.69786,7.22095],[93.69806,7.22017],[93.69839,7.21991],[93.69879,7.22006],[93.69932,7.2195],[93.69935,7.21914],[93.69918,7.21879],[93.69926,7.21849],[93.69906,7.21821],[93.6995,7.21713],[93.69971,7.21677],[93.6999,7.21675],[93.70044,7.21687],[93.70037,7.21703],[93.70114,7.21609],[93.70084,7.21576],[93.70048,7.21387],[93.69995,7.21289],[93.70003,7.2124],[93.70132,7.20935],[93.70091,7.20936],[93.70059,7.20906],[93.70121,7.2085],[93.70269,7.20806],[93.70357,7.20798],[93.70505,7.20813],[93.70754,7.20685],[93.70805,7.20732],[93.70827,7.2079],[93.70863,7.21024],[93.70928,7.21187],[93.70996,7.21268],[93.71034,7.21341],[93.70999,7.21357],[93.71037,7.21354],[93.71025,7.21404],[93.70983,7.2148],[93.70954,7.21507],[93.70934,7.21488],[93.70934,7.21514],[93.70566,7.2195],[93.70564,7.22012],[93.70513,7.22142],[93.70435,7.22207],[93.70311,7.22269],[93.70292,7.22295],[93.70258,7.22526],[93.70105,7.22699],[93.70099,7.228]]],[[[93.83742,7.24045],[93.83739,7.24467],[93.83487,7.24028],[93.82674,7.24267],[93.82636,7.24006],[93.82292,7.24016],[93.81975,7.23785],[93.81652,7.23911],[93.8088,7.23825],[93.80309,7.23389],[93.79969,7.23337],[93.79623,7.23543],[93.79394,7.22849],[93.79734,7.22774],[93.79738,7.22366],[93.79332,7.22149],[93.7955,7.21745],[93.79394,7.21405],[93.79206,7.21531],[93.79059,7.21354],[93.79207,7.20826],[93.78861,7.21064],[93.78806,7.21315],[93.78245,7.21569],[93.77682,7.21386],[93.77327,7.21591],[93.76577,7.21365],[93.76624,7.21131],[93.76903,7.21099],[93.76904,7.20896],[93.76612,7.21094],[93.76188,7.20839],[93.75407,7.21108],[93.75529,7.21517],[93.74929,7.21592],[93.74327,7.21303],[93.73998,7.20873],[93.74511,7.20116],[93.74363,7.1995],[93.74032,7.20136],[93.738,7.20032],[93.73922,7.19395],[93.73761,7.20022],[93.73983,7.20177],[93.74336,7.20116],[93.74096,7.20623],[93.73431,7.20215],[93.72216,7.18901],[93.70807,7.1891],[93.70543,7.193],[93.70121,7.19394],[93.69358,7.19379],[93.6927,7.19208],[93.69118,7.19319],[93.68943,7.19049],[93.68196,7.1946],[93.67963,7.19233],[93.67633,7.19304],[93.672,7.18675],[93.67256,7.18496],[93.67092,7.18511],[93.66084,7.17742],[93.66348,7.1739],[93.66229,7.1684],[93.66366,7.16057],[93.66514,7.1585],[93.6673,7.15945],[93.66898,7.15797],[93.66534,7.15825],[93.66695,7.15113],[93.66499,7.14199],[93.66276,7.13895],[93.65695,7.14095],[93.65417,7.13186],[93.64462,7.13093],[93.64318,7.12728],[93.64365,7.11803],[93.6484,7.11067],[93.65333,7.1115],[93.65733,7.11814],[93.66358,7.11511],[93.66481,7.11116],[93.66727,7.11261],[93.66583,7.11078],[93.66177,7.11058],[93.66199,7.10944],[93.65865,7.11058],[93.65434,7.10913],[93.658,7.1088],[93.65454,7.10542],[93.65591,7.10389],[93.64796,7.10526],[93.64557,7.10393],[93.64439,7.10069],[93.64525,7.09706],[93.64675,7.09654],[93.64469,7.09371],[93.6465,7.09064],[93.6497,7.09024],[93.64822,7.0874],[93.64923,7.08563],[93.65169,7.08435],[93.65686,7.08573],[93.66029,7.0816],[93.66012,7.07873],[93.65437,7.07474],[93.65243,7.06714],[93.65371,7.06564],[93.66006,7.06549],[93.65798,7.05915],[93.65832,7.05051],[93.65641,7.05031],[93.65602,7.04674],[93.65694,7.04165],[93.66415,7.0369],[93.66481,7.03424],[93.66368,7.03159],[93.66043,7.03161],[93.65984,7.02711],[93.66205,7.02362],[93.66452,7.02517],[93.66697,7.02257],[93.65959,7.01866],[93.6634,7.01766],[93.66227,7.01578],[93.66325,7.01284],[93.65653,7.00972],[93.65503,7.00549],[93.65913,7.00209],[93.66604,7.00222],[93.66899,7.00436],[93.66766,7.0076],[93.67091,7.01213],[93.67035,7.01574],[93.67603,7.01749],[93.68359,7.01575],[93.69288,7.00988],[93.70179,7.011],[93.70282,7.01194],[93.70121,7.01525],[93.69792,7.01865],[93.7003,7.0246],[93.69534,7.02291],[93.70008,7.02536],[93.70072,7.02314],[93.69818,7.01853],[93.70322,7.01184],[93.69868,7.00973],[93.6931,7.00964],[93.69802,7.00272],[93.69846,6.99887],[93.69484,6.99508],[93.69599,6.992],[93.70025,6.99024],[93.70736,6.99378],[93.71494,6.99006],[93.71758,6.99146],[93.71719,6.99435],[93.70961,6.99694],[93.7175,6.99499],[93.7181,6.99188],[93.72012,6.99147],[93.72485,6.98314],[93.72804,6.98167],[93.73113,6.97583],[93.73307,6.97503],[93.73645,6.97684],[93.73293,6.97874],[93.73534,6.98991],[93.73849,6.98967],[93.73584,6.9914],[93.73767,6.99412],[93.73341,6.99355],[93.73285,6.99577],[93.73424,6.9987],[93.73678,6.99821],[93.73764,7.0],[93.73734,6.99787],[93.73484,6.99855],[93.73311,6.99552],[93.73347,6.99391],[93.73815,6.99425],[93.73858,6.99272],[93.73607,6.99219],[93.73895,6.9898],[93.7357,6.98991],[93.73322,6.97882],[93.73695,6.97692],[93.73382,6.97505],[93.7312,6.9754],[93.72833,6.981],[93.72509,6.98219],[93.71981,6.99084],[93.71561,6.98955],[93.72522,6.97734],[93.72242,6.96967],[93.72422,6.96607],[93.72722,6.96607],[93.72635,6.9588],[93.72989,6.95738],[93.733,6.96099],[93.73529,6.96098],[93.73509,6.96272],[93.73726,6.96271],[93.74101,6.95626],[93.73757,6.95124],[93.74141,6.94945],[93.74287,6.94529],[93.7388,6.94136],[93.74325,6.93816],[93.74252,6.93637],[93.73924,6.9356],[93.74152,6.93381],[93.7419,6.93052],[93.73273,6.92974],[93.73071,6.92586],[93.73171,6.92188],[93.73755,6.91193],[93.7442,6.90496],[93.74812,6.90741],[93.75067,6.91192],[93.75437,6.91332],[93.75697,6.91147],[93.75387,6.90693],[93.75667,6.90201],[93.7596,6.90046],[93.75754,6.89883],[93.75741,6.8955],[93.76679,6.89004],[93.76832,6.88672],[93.77047,6.88786],[93.76927,6.88512],[93.76509,6.88676],[93.76366,6.88446],[93.76708,6.8811],[93.77063,6.88192],[93.77686,6.88048],[93.76244,6.8766],[93.76253,6.87361],[93.76542,6.87228],[93.76724,6.86824],[93.76481,6.86617],[93.76298,6.8674],[93.76263,6.86289],[93.7688,6.85974],[93.77037,6.85597],[93.7754,6.85164],[93.7795,6.85305],[93.78228,6.85187],[93.77871,6.85091],[93.77656,6.8431],[93.78561,6.8469],[93.78019,6.84047],[93.78112,6.83827],[93.77784,6.83709],[93.77776,6.83223],[93.78059,6.82647],[93.78475,6.82489],[93.79069,6.81951],[93.78988,6.81658],[93.79549,6.80951],[93.79993,6.80756],[93.80328,6.81292],[93.80662,6.81451],[93.80987,6.81197],[93.80225,6.80495],[93.80294,6.80004],[93.80135,6.79592],[93.80596,6.79352],[93.80651,6.79144],[93.80166,6.78886],[93.80036,6.78566],[93.8036,6.78072],[93.80817,6.77786],[93.80452,6.77402],[93.80159,6.77333],[93.79915,6.76619],[93.80154,6.76076],[93.8049,6.7613],[93.80748,6.7573],[93.80861,6.75826],[93.82248,6.75278],[93.82646,6.75473],[93.82909,6.75359],[93.83145,6.75466],[93.83475,6.76945],[93.84198,6.7785],[93.84447,6.79086],[93.84188,6.79957],[93.84501,6.80126],[93.84529,6.80335],[93.84381,6.80766],[93.8467,6.81441],[93.85175,6.81669],[93.8547,6.82093],[93.85466,6.82785],[93.85147,6.8299],[93.85029,6.83299],[93.84671,6.8307],[93.84792,6.83208],[93.84721,6.83496],[93.84843,6.83204],[93.85054,6.83332],[93.85525,6.8262],[93.85494,6.81999],[93.85163,6.81569],[93.84723,6.81402],[93.84702,6.81134],[93.85708,6.81453],[93.86241,6.81353],[93.87435,6.80134],[93.87425,6.79542],[93.87599,6.79323],[93.88232,6.79429],[93.88405,6.79684],[93.88465,6.80378],[93.88846,6.80175],[93.89232,6.80339],[93.89584,6.81231],[93.89772,6.81346],[93.8985,6.81664],[93.89639,6.81981],[93.89811,6.81854],[93.90029,6.82088],[93.90529,6.83485],[93.90239,6.83959],[93.89488,6.84176],[93.88902,6.84779],[93.88999,6.85754],[93.88833,6.86042],[93.8885,6.86473],[93.88932,6.86714],[93.89523,6.87078],[93.89655,6.87522],[93.8943,6.88357],[93.89502,6.88828],[93.89143,6.89132],[93.89446,6.89498],[93.89467,6.89811],[93.89147,6.9012],[93.89581,6.90578],[93.90286,6.90328],[93.90968,6.91064],[93.90981,6.9216],[93.90563,6.92251],[93.90376,6.92729],[93.90624,6.93072],[93.91464,6.92987],[93.91294,6.93568],[93.91499,6.93686],[93.91341,6.9438],[93.91538,6.94728],[93.9198,6.94841],[93.92406,6.95368],[93.93325,6.94796],[93.93936,6.9502],[93.94135,6.95434],[93.93991,6.95888],[93.93094,6.9628],[93.92895,6.97097],[93.92461,6.97205],[93.92572,6.98179],[93.92341,6.98697],[93.91911,6.9887],[93.91481,6.99312],[93.91035,6.99283],[93.90988,6.99932],[93.91363,7.00609],[93.91871,7.00961],[93.92343,7.00951],[93.92872,6.99771],[93.93333,6.99425],[93.93411,6.99169],[93.93196,6.98946],[93.93344,6.98887],[93.9414,6.99275],[93.94357,6.99543],[93.94463,7.0014],[93.94276,7.00933],[93.93671,7.00991],[93.93433,7.01167],[93.93006,7.02204],[93.92434,7.02859],[93.91615,7.02371],[93.91244,7.02514],[93.91301,7.03161],[93.91029,7.03468],[93.91093,7.03724],[93.90826,7.03931],[93.91286,7.04494],[93.91329,7.04896],[93.90953,7.05361],[93.90723,7.06051],[93.90304,7.06461],[93.90382,7.06979],[93.89872,7.07965],[93.90176,7.0815],[93.89925,7.08294],[93.8986,7.0802],[93.89469,7.08207],[93.88972,7.08144],[93.88104,7.08969],[93.88108,7.09927],[93.87786,7.10449],[93.87757,7.10874],[93.88116,7.1135],[93.88277,7.12788],[93.88054,7.13079],[93.87606,7.13215],[93.87498,7.13898],[93.87681,7.14354],[93.87545,7.15143],[93.87653,7.15548],[93.87263,7.16561],[93.87449,7.16869],[93.86948,7.17272],[93.86865,7.17561],[93.86861,7.17947],[93.87185,7.18586],[93.87147,7.19146],[93.86854,7.19505],[93.87009,7.19853],[93.86995,7.20471],[93.86506,7.20504],[93.86371,7.20967],[93.85901,7.21358],[93.85947,7.21546],[93.8569,7.21837],[93.85208,7.21695],[93.84793,7.21784],[93.84122,7.21563],[93.83708,7.21808],[93.83259,7.22747],[93.83288,7.23093],[93.83796,7.23366],[93.83742,7.24045]]],[[[93.79666,7.2447],[93.79695,7.24493],[93.79949,7.24552],[93.79956,7.24585],[93.79895,7.24639],[93.7981,7.24686],[93.79768,7.24696],[93.79745,7.24716],[93.79738,7.24755],[93.79791,7.2483],[93.79803,7.24865],[93.79785,7.24883],[93.79757,7.24887],[93.79732,7.24877],[93.79684,7.24831],[93.79513,7.24754],[93.79354,7.24671],[93.79294,7.24632],[93.79257,7.24615],[93.79192,7.246],[93.79024,7.24524],[93.78824,7.24401],[93.78761,7.24353],[93.78745,7.24315],[93.7876,7.24272],[93.78778,7.2425],[93.78978,7.2412],[93.79049,7.241],[93.79117,7.2412],[93.79151,7.24143],[93.79246,7.24255],[93.79279,7.24276],[93.79406,7.24294],[93.79435,7.24324],[93.79471,7.24451],[93.79497,7.24467],[93.79563,7.24436],[93.79611,7.24432],[93.79633,7.24435],[93.79666,7.2447]]],[[[93.83497,7.28728],[93.83594,7.28791],[93.83704,7.28912],[93.83781,7.29006],[93.83806,7.2905],[93.83815,7.29094],[93.83804,7.29136],[93.83788,7.29156],[93.83769,7.29164],[93.83742,7.29161],[93.83682,7.2913],[93.83593,7.29061],[93.83528,7.29065],[93.83499,7.29063],[93.83439,7.29037],[93.83397,7.29039],[93.83348,7.29024],[93.83333,7.29003],[93.83327,7.28954],[93.83337,7.2892],[93.83349,7.28852],[93.83369,7.28809],[93.83387,7.28741],[93.83412,7.28713],[93.83497,7.28728]]],[[[93.62007,7.33083],[93.61957,7.33123],[93.61907,7.33142],[93.61846,7.33147],[93.6179,7.33142],[93.61748,7.3313],[93.61714,7.33104],[93.61692,7.33062],[93.61698,7.33046],[93.61811,7.32968],[93.61826,7.32945],[93.61834,7.32916],[93.61831,7.32902],[93.61799,7.32868],[93.61807,7.32834],[93.61785,7.32737],[93.61765,7.32679],[93.61765,7.32642],[93.61773,7.32622],[93.61786,7.32607],[93.61811,7.32599],[93.61891,7.32586],[93.61912,7.32567],[93.6192,7.32552],[93.61925,7.32528],[93.61947,7.32518],[93.61976,7.32518],[93.62005,7.32526],[93.62027,7.32543],[93.62078,7.32599],[93.62146,7.32623],[93.62194,7.32646],[93.62228,7.32675],[93.62295,7.32785],[93.62298,7.32815],[93.62275,7.32844],[93.62228,7.32861],[93.62211,7.32877],[93.62195,7.32911],[93.62196,7.32995],[93.62162,7.33043],[93.62143,7.33061],[93.62114,7.33071],[93.62057,7.33064],[93.62007,7.33083]]],[[[93.68376,7.39995],[93.68379,7.40054],[93.68238,7.40404],[93.68194,7.40462],[93.68161,7.40602],[93.68133,7.40635],[93.67987,7.40718],[93.67992,7.4074],[93.68058,7.4081],[93.68081,7.40868],[93.68055,7.41108],[93.68041,7.4116],[93.67938,7.4121],[93.67779,7.41245],[93.67546,7.41251],[93.67492,7.41242],[93.67423,7.41214],[93.67286,7.41125],[93.67121,7.41036],[93.67037,7.40941],[93.66981,7.40785],[93.66977,7.40681],[93.67001,7.40519],[93.67178,7.40013],[93.67261,7.39882],[93.67375,7.39761],[93.67443,7.39722],[93.6752,7.39708],[93.67595,7.39743],[93.6763,7.39771],[93.6773,7.39775],[93.67781,7.39791],[93.68116,7.39988],[93.68181,7.39995],[93.68313,7.39951],[93.68358,7.3997],[93.68376,7.39995]]],[[[93.75641,7.40555],[93.75595,7.40587],[93.75542,7.40583],[93.75497,7.40558],[93.75432,7.40583],[93.75341,7.4053],[93.7533,7.40477],[93.75344,7.40428],[93.7541,7.40395],[93.75403,7.40377],[93.75294,7.40318],[93.75285,7.40343],[93.7524,7.40332],[93.75203,7.4029],[93.75155,7.40216],[93.75037,7.40114],[93.7502,7.40061],[93.75034,7.40008],[93.75028,7.39965],[93.75035,7.39942],[93.75025,7.39852],[93.75061,7.39822],[93.75227,7.39732],[93.75319,7.39701],[93.75377,7.39662],[93.75442,7.3965],[93.75506,7.39621],[93.75528,7.39621],[93.75546,7.39631],[93.75582,7.39631],[93.75615,7.39611],[93.7569,7.39604],[93.75744,7.39648],[93.75858,7.39683],[93.75906,7.39705],[93.75928,7.39725],[93.75931,7.39745],[93.75968,7.39758],[93.75951,7.39811],[93.75957,7.39896],[93.75996,7.39987],[93.75996,7.40075],[93.75974,7.40135],[93.75935,7.4014],[93.75914,7.40185],[93.7585,7.40234],[93.75847,7.40273],[93.75796,7.40336],[93.75753,7.40375],[93.75686,7.40396],[93.75635,7.40396],[93.75629,7.40417],[93.75652,7.40442],[93.75655,7.40505],[93.75641,7.40555]]],[[[93.69947,7.44738],[93.69439,7.44728],[93.69181,7.44436],[93.69432,7.43964],[93.69354,7.4311],[93.69622,7.42636],[93.69522,7.42218],[93.6964,7.41966],[93.69219,7.41402],[93.69325,7.4072],[93.69207,7.40732],[93.68988,7.40422],[93.69156,7.40066],[93.69801,7.39901],[93.70062,7.40017],[93.70282,7.39635],[93.7018,7.39364],[93.69583,7.3957],[93.6865,7.39668],[93.67435,7.39091],[93.67029,7.39115],[93.66733,7.38497],[93.66821,7.37897],[93.66175,7.37506],[93.65931,7.37673],[93.65824,7.37591],[93.66221,7.36977],[93.65978,7.36791],[93.65842,7.36842],[93.65631,7.36596],[93.65406,7.36596],[93.65964,7.37209],[93.65745,7.37511],[93.65915,7.37719],[93.65683,7.38031],[93.6576,7.38338],[93.65492,7.38518],[93.65195,7.38556],[93.64839,7.38369],[93.64487,7.37832],[93.64478,7.37554],[93.63784,7.37077],[93.62826,7.37665],[93.62275,7.37648],[93.61944,7.37426],[93.61777,7.36208],[93.61833,7.35446],[93.62025,7.34896],[93.61977,7.33891],[93.62411,7.33327],[93.62332,7.3228],[93.61907,7.32075],[93.61703,7.31707],[93.61259,7.31362],[93.61048,7.3143],[93.60813,7.31313],[93.60709,7.31051],[93.60818,7.30799],[93.61287,7.307],[93.61482,7.30484],[93.62198,7.28737],[93.62039,7.28288],[93.61712,7.2804],[93.61819,7.27792],[93.62069,7.27856],[93.62179,7.27689],[93.61665,7.27039],[93.61683,7.26582],[93.62425,7.2607],[93.62656,7.25754],[93.62631,7.2533],[93.62807,7.25],[93.63101,7.24902],[93.63201,7.24625],[93.63581,7.24281],[93.64365,7.24488],[93.65208,7.2556],[93.65463,7.25529],[93.65762,7.25801],[93.66098,7.26948],[93.66482,7.27718],[93.66725,7.27901],[93.66645,7.28223],[93.66741,7.2852],[93.67228,7.28804],[93.67487,7.29186],[93.68746,7.29611],[93.69452,7.30203],[93.69535,7.30538],[93.70372,7.30753],[93.70673,7.30664],[93.7136,7.31137],[93.71776,7.32368],[93.72149,7.32535],[93.72415,7.33051],[93.72609,7.34137],[93.72956,7.34745],[93.73745,7.35416],[93.73712,7.35842],[93.74383,7.36145],[93.74349,7.36477],[93.74559,7.36992],[93.74408,7.37672],[93.73992,7.38006],[93.73633,7.38603],[93.73295,7.38452],[93.73291,7.38689],[93.72974,7.38812],[93.72611,7.39218],[93.72246,7.39289],[93.72219,7.39501],[93.71451,7.39812],[93.7097,7.40507],[93.71133,7.41845],[93.70876,7.43119],[93.70688,7.43574],[93.70452,7.43612],[93.70129,7.44663],[93.69947,7.44738]]],[[[93.63133,7.47161],[93.63138,7.47166],[93.63138,7.47175],[93.63131,7.47198],[93.63123,7.47213],[93.63109,7.47224],[93.63091,7.47247],[93.63085,7.47264],[93.63079,7.47268],[93.63071,7.47269],[93.63066,7.47267],[93.63057,7.47264],[93.6305,7.47256],[93.63048,7.47243],[93.6305,7.47232],[93.63066,7.47204],[93.63104,7.47175],[93.63126,7.4716],[93.63133,7.47161]]],[[[93.63715,7.47841],[93.63561,7.47883],[93.63473,7.47868],[93.63437,7.47852],[93.63282,7.47718],[93.63252,7.47682],[93.6324,7.4766],[93.63235,7.47506],[93.63236,7.4749],[93.63255,7.47456],[93.63262,7.47407],[93.63258,7.47371],[93.63237,7.4732],[93.63227,7.47258],[93.63235,7.47243],[93.63257,7.47229],[93.6331,7.47239],[93.63319,7.47254],[93.63379,7.47299],[93.63426,7.47315],[93.63439,7.47312],[93.63514,7.47288],[93.6358,7.47225],[93.63599,7.47215],[93.63642,7.47212],[93.63697,7.47183],[93.63783,7.47172],[93.63892,7.47177],[93.63962,7.47162],[93.64016,7.47125],[93.64088,7.47103],[93.64119,7.47125],[93.6415,7.47238],[93.64158,7.47295],[93.64155,7.4749],[93.64124,7.47607],[93.64,7.47757],[93.63908,7.47823],[93.63878,7.47834],[93.6378,7.47829],[93.63715,7.47841]]],[[[93.62326,7.47939],[93.62336,7.47989],[93.62342,7.48069],[93.62328,7.48151],[93.62292,7.48209],[93.62243,7.48252],[93.6218,7.48288],[93.62086,7.48324],[93.6198,7.48346],[93.61897,7.48342],[93.61866,7.48321],[93.61846,7.48293],[93.61845,7.48245],[93.61924,7.48143],[93.61949,7.48098],[93.61962,7.48063],[93.61962,7.48],[93.61991,7.47961],[93.62015,7.47936],[93.62053,7.47906],[93.62103,7.47878],[93.62124,7.47878],[93.6215,7.47863],[93.62157,7.4783],[93.62177,7.47787],[93.62218,7.47761],[93.62252,7.47758],[93.62271,7.47764],[93.62304,7.47849],[93.62326,7.47939]]],[[[93.53064,7.52649],[93.52854,7.52748],[93.5262,7.52902],[93.52546,7.52933],[93.52423,7.52952],[93.52273,7.52959],[93.52143,7.52932],[93.52025,7.52847],[93.51968,7.5278],[93.51962,7.52727],[93.51982,7.52661],[93.52074,7.52549],[93.52093,7.52496],[93.52091,7.52376],[93.52146,7.5217],[93.5218,7.52148],[93.52175,7.52105],[93.52197,7.52093],[93.52229,7.52105],[93.52333,7.52073],[93.52469,7.52022],[93.52508,7.51987],[93.52533,7.51908],[93.52575,7.51837],[93.52583,7.51782],[93.5258,7.51764],[93.52495,7.51688],[93.52482,7.51662],[93.52485,7.51621],[93.52555,7.51497],[93.52587,7.51463],[93.52622,7.51458],[93.52733,7.515],[93.52802,7.515],[93.52919,7.51357],[93.53025,7.51361],[93.53092,7.51379],[93.53193,7.51423],[93.53249,7.51469],[93.53327,7.51589],[93.53373,7.51635],[93.53403,7.51693],[93.53465,7.51903],[93.53443,7.52028],[93.53489,7.52163],[93.53473,7.52223],[93.53478,7.52315],[93.53439,7.52452],[93.53387,7.52535],[93.533,7.52604],[93.53238,7.5263],[93.53117,7.52635],[93.53064,7.52649]]],[[[93.4418,7.87635],[93.44198,7.87642],[93.44214,7.87654],[93.44224,7.87667],[93.44216,7.87683],[93.44202,7.877],[93.44195,7.87712],[93.44195,7.87733],[93.44193,7.87741],[93.44185,7.87752],[93.4416,7.87757],[93.44137,7.8775],[93.44123,7.87728],[93.4412,7.87699],[93.44124,7.87672],[93.44139,7.87651],[93.44159,7.87637],[93.4418,7.87635]]],[[[93.38663,7.88985],[93.38723,7.89023],[93.38749,7.89054],[93.38774,7.89105],[93.38782,7.89143],[93.38774,7.89168],[93.38755,7.89189],[93.38725,7.89201],[93.38696,7.89202],[93.38681,7.89198],[93.38648,7.89162],[93.38636,7.89146],[93.38629,7.89131],[93.38621,7.8907],[93.38617,7.89008],[93.38622,7.88992],[93.38639,7.88982],[93.38663,7.88985]]],[[[93.38951,7.89054],[93.38995,7.8909],[93.39016,7.89125],[93.3903,7.89177],[93.39039,7.89289],[93.39053,7.8936],[93.39048,7.89403],[93.39024,7.895],[93.39019,7.89533],[93.39023,7.89565],[93.39042,7.89601],[93.39097,7.89648],[93.39084,7.89687],[93.39055,7.89739],[93.3901,7.89949],[93.38995,7.89983],[93.38974,7.90008],[93.38946,7.90024],[93.38914,7.90034],[93.38857,7.90017],[93.38794,7.90011],[93.38775,7.9],[93.38741,7.89951],[93.38732,7.89914],[93.38742,7.89807],[93.38758,7.89717],[93.38755,7.89675],[93.38739,7.89634],[93.38705,7.89592],[93.38708,7.89573],[93.388,7.89463],[93.38874,7.89315],[93.38927,7.89254],[93.38894,7.89219],[93.38883,7.89199],[93.38884,7.89164],[93.38907,7.89079],[93.38926,7.89055],[93.38951,7.89054]]],[[[93.39439,7.90212],[93.39452,7.9025],[93.39452,7.90268],[93.39429,7.90268],[93.39389,7.90249],[93.39353,7.90226],[93.39316,7.90194],[93.39285,7.90177],[93.39207,7.90184],[93.39157,7.90207],[93.39122,7.90205],[93.39073,7.90192],[93.39037,7.90174],[93.39071,7.9017],[93.39115,7.90155],[93.39134,7.90137],[93.39142,7.90116],[93.39131,7.90092],[93.39092,7.90047],[93.39091,7.90019],[93.39108,7.89953],[93.39151,7.89925],[93.39191,7.89919],[93.39232,7.89925],[93.39254,7.89943],[93.39277,7.89979],[93.393,7.9004],[93.39316,7.90069],[93.39342,7.9009],[93.39407,7.90165],[93.39439,7.90212]]],[[[93.39682,7.90178],[93.39601,7.90259],[93.39575,7.90271],[93.39536,7.90271],[93.39515,7.90252],[93.395,7.9021],[93.39537,7.9006],[93.39547,7.89998],[93.39542,7.89974],[93.39528,7.89944],[93.39507,7.89917],[93.39502,7.89888],[93.39507,7.89863],[93.39516,7.89856],[93.39539,7.89851],[93.39575,7.89864],[93.39609,7.89885],[93.39632,7.89895],[93.39659,7.89893],[93.39697,7.89874],[93.39763,7.89827],[93.3979,7.89825],[93.39872,7.89849],[93.39913,7.89896],[93.39955,7.89959],[93.39977,7.90005],[93.39991,7.90074],[93.39988,7.90089],[93.3997,7.9011],[93.39965,7.90134],[93.39974,7.90192],[93.39959,7.90212],[93.3994,7.90228],[93.39918,7.90226],[93.39841,7.90171],[93.39795,7.90156],[93.39753,7.90153],[93.39682,7.90178]]],[[[93.32672,7.93022],[93.32673,7.93042],[93.32664,7.93065],[93.32656,7.93077],[93.32623,7.93098],[93.32575,7.93113],[93.32416,7.93136],[93.32306,7.93193],[93.32295,7.93184],[93.32279,7.93178],[93.32261,7.93157],[93.32254,7.93113],[93.32277,7.93093],[93.32286,7.93061],[93.32343,7.93019],[93.32373,7.93031],[93.32402,7.93036],[93.32437,7.93034],[93.32524,7.9299],[93.32611,7.9298],[93.32634,7.92992],[93.32654,7.92997],[93.32672,7.93022]]],[[[93.33828,7.93728],[93.33897,7.93809],[93.33951,7.9389],[93.34016,7.94023],[93.3402,7.94044],[93.34015,7.94093],[93.33997,7.94151],[93.33969,7.94195],[93.33929,7.9424],[93.339,7.94269],[93.33883,7.94274],[93.33867,7.94268],[93.33729,7.94187],[93.33612,7.94107],[93.33556,7.94044],[93.33504,7.93965],[93.3349,7.93931],[93.33479,7.93871],[93.33481,7.93856],[93.33493,7.93832],[93.33515,7.93812],[93.33563,7.93782],[93.3363,7.93768],[93.33709,7.93737],[93.33814,7.93715],[93.33828,7.93728]]],[[[93.47735,8.00909],[93.47747,8.00934],[93.47711,8.0098],[93.477,8.00991],[93.47688,8.00992],[93.47671,8.00979],[93.47661,8.00962],[93.47659,8.00943],[93.47662,8.00923],[93.47676,8.00903],[93.47714,8.00898],[93.47735,8.00909]]],[[[93.47917,8.00969],[93.47911,8.01007],[93.47911,8.01023],[93.4787,8.01074],[93.4784,8.01102],[93.47815,8.01115],[93.47806,8.01115],[93.47785,8.01103],[93.4776,8.01054],[93.47744,8.01008],[93.47743,8.00977],[93.47777,8.00961],[93.47814,8.00958],[93.47829,8.00952],[93.47838,8.00932],[93.47868,8.00927],[93.47897,8.00933],[93.47917,8.00969]]],[[[93.36945,8.02353],[93.36127,8.02137],[93.35622,8.01409],[93.35411,8.01414],[93.35397,8.01263],[93.35008,8.01024],[93.34864,8.01213],[93.34657,8.00915],[93.34446,8.00969],[93.3432,8.01328],[93.33929,8.01745],[93.33333,8.01207],[93.32801,8.01327],[93.32284,8.01064],[93.31998,8.00738],[93.31945,8.00581],[93.32024,8.00572],[93.31655,8.00176],[93.31228,7.99107],[93.31179,7.98637],[93.3139,7.9787],[93.31293,7.97462],[93.31025,7.97223],[93.30625,7.97135],[93.30522,7.96782],[93.30061,7.96148],[93.30291,7.94946],[93.30592,7.94436],[93.30797,7.94339],[93.30946,7.93984],[93.30775,7.93783],[93.30787,7.93386],[93.30963,7.93344],[93.3097,7.9312],[93.31302,7.92709],[93.32195,7.92293],[93.32448,7.92519],[93.32108,7.92935],[93.3228,7.92996],[93.32216,7.93102],[93.32359,7.93586],[93.32725,7.93663],[93.33179,7.93418],[93.33144,7.93149],[93.32818,7.93074],[93.32988,7.92765],[93.33528,7.93451],[93.33786,7.93523],[93.33797,7.93623],[93.33413,7.93809],[93.33202,7.93714],[93.33317,7.93872],[93.33149,7.93829],[93.33855,7.9461],[93.33398,7.94892],[93.32999,7.94681],[93.33189,7.94951],[93.33415,7.9496],[93.33933,7.94612],[93.34183,7.94686],[93.33998,7.94382],[93.34294,7.94337],[93.34282,7.9416],[93.34131,7.94068],[93.33888,7.93376],[93.33577,7.933],[93.33435,7.93085],[93.3356,7.92747],[93.34085,7.9324],[93.34115,7.93017],[93.33548,7.9245],[93.32947,7.92576],[93.32681,7.92346],[93.33291,7.91539],[93.33103,7.91397],[93.3339,7.91133],[93.33211,7.90999],[93.33473,7.90915],[93.33499,7.90014],[93.33645,7.89898],[93.33774,7.89983],[93.34085,7.89346],[93.346,7.88973],[93.35528,7.88624],[93.36149,7.88638],[93.36191,7.88181],[93.36584,7.88006],[93.36796,7.87767],[93.37109,7.87935],[93.37303,7.87899],[93.37474,7.88107],[93.37631,7.88022],[93.37966,7.88125],[93.38094,7.88285],[93.38057,7.88552],[93.38546,7.88742],[93.38592,7.88878],[93.38461,7.88935],[93.38732,7.89303],[93.38718,7.89517],[93.38552,7.89627],[93.3881,7.90158],[93.39519,7.90324],[93.39847,7.90222],[93.40594,7.90638],[93.40736,7.90656],[93.40742,7.90525],[93.40862,7.90675],[93.41198,7.90693],[93.41622,7.9063],[93.43202,7.89887],[93.43744,7.89197],[93.44148,7.88432],[93.44111,7.88197],[93.44322,7.87506],[93.45446,7.87244],[93.45995,7.8798],[93.46025,7.88222],[93.46447,7.88642],[93.46199,7.88721],[93.46242,7.88929],[93.46621,7.8911],[93.46489,7.89225],[93.46461,7.89728],[93.46131,7.90305],[93.458,7.91337],[93.45713,7.92742],[93.45366,7.93337],[93.45327,7.93628],[93.45116,7.93825],[93.4519,7.93929],[93.43934,7.94789],[93.43129,7.95598],[93.42682,7.95657],[93.42513,7.95885],[93.42302,7.9665],[93.42091,7.96861],[93.41535,7.96577],[93.41398,7.96167],[93.40907,7.96057],[93.40362,7.96156],[93.40081,7.96709],[93.40159,7.96911],[93.403,7.96932],[93.40165,7.97022],[93.39977,7.96848],[93.39386,7.97439],[93.39335,7.97813],[93.39641,7.98218],[93.39226,7.99336],[93.39679,8.00461],[93.39837,8.00648],[93.40063,8.00691],[93.40137,8.00878],[93.3982,8.01248],[93.39252,8.01475],[93.38965,8.01796],[93.38203,8.01898],[93.38084,8.02046],[93.37812,8.01945],[93.36945,8.02353]]],[[[93.47579,8.01306],[93.47584,8.01319],[93.4757,8.01393],[93.47558,8.01435],[93.4752,8.01459],[93.47509,8.01449],[93.47506,8.01443],[93.47499,8.01439],[93.47479,8.01433],[93.47473,8.01404],[93.47496,8.01352],[93.47519,8.01318],[93.47545,8.01303],[93.4757,8.01292],[93.47579,8.01306]]],[[[93.47499,8.0149],[93.47498,8.01516],[93.47506,8.01546],[93.47507,8.01575],[93.47483,8.01589],[93.47467,8.01588],[93.47448,8.01577],[93.47442,8.01572],[93.47431,8.01557],[93.47429,8.01527],[93.47434,8.0151],[93.47446,8.01504],[93.47452,8.01487],[93.47458,8.0148],[93.47499,8.0149]]],[[[93.47523,8.0164],[93.47553,8.01688],[93.47561,8.01698],[93.47557,8.01723],[93.47535,8.01727],[93.47524,8.01727],[93.47493,8.0172],[93.47483,8.01704],[93.47483,8.01676],[93.47497,8.01645],[93.47509,8.01634],[93.47523,8.0164]]],[[[93.54084,8.02845],[93.53632,8.02825],[93.53489,8.02908],[93.53409,8.02629],[93.53543,8.02346],[93.53886,8.02126],[93.53825,8.01836],[93.5411,8.00972],[93.54018,8.00654],[93.54195,8.00255],[93.5417,8.00141],[93.54276,8.00141],[93.54185,7.99819],[93.54215,7.99551],[93.54377,7.99136],[93.54329,7.99112],[93.54271,7.99188],[93.54236,7.99428],[93.541,7.99659],[93.5381,7.99871],[93.53858,8.00099],[93.53802,8.0025],[93.53197,8.00839],[93.5325,8.01068],[93.53094,8.01362],[93.53248,8.01519],[93.53245,8.016],[93.5306,8.01781],[93.52981,8.01754],[93.52789,8.01891],[93.52634,8.01763],[93.52628,8.02211],[93.52516,8.02474],[93.52208,8.02618],[93.51878,8.02516],[93.51956,8.02264],[93.51849,8.02198],[93.51793,8.02044],[93.52019,8.01602],[93.52049,8.01021],[93.52132,8.00754],[93.52023,8.00661],[93.51706,8.00602],[93.51668,8.00501],[93.51736,8.00386],[93.51673,8.00273],[93.51522,8.00331],[93.51625,8.0014],[93.51593,8.00068],[93.5125,7.99944],[93.5119,7.99775],[93.51022,7.99686],[93.51093,7.99563],[93.50978,7.9941],[93.50522,7.99585],[93.50556,7.9995],[93.50142,7.99951],[93.50094,7.99875],[93.50133,7.99773],[93.49964,7.9983],[93.49919,7.99668],[93.4969,7.99867],[93.49454,7.9961],[93.49472,7.99324],[93.49703,7.98942],[93.49671,7.98664],[93.49789,7.98389],[93.5,7.98284],[93.5,7.98432],[93.50142,7.98338],[93.5013,7.98222],[93.50219,7.98279],[93.50396,7.98102],[93.50492,7.98115],[93.50797,7.97783],[93.50738,7.97755],[93.50763,7.97592],[93.51131,7.97373],[93.51202,7.9718],[93.51337,7.97187],[93.51359,7.97044],[93.51473,7.97123],[93.51454,7.97192],[93.51591,7.97163],[93.51472,7.97001],[93.5153,7.96914],[93.51811,7.9687],[93.52322,7.96536],[93.52587,7.96456],[93.52659,7.96609],[93.52998,7.96696],[93.53139,7.96936],[93.53001,7.96641],[93.52736,7.96576],[93.52723,7.96445],[93.52649,7.96437],[93.52862,7.96149],[93.52842,7.95933],[93.53209,7.95632],[93.53429,7.95617],[93.53893,7.95247],[93.54297,7.95089],[93.54405,7.94997],[93.54436,7.9478],[93.54826,7.9457],[93.55339,7.9405],[93.55409,7.93773],[93.55617,7.93737],[93.55828,7.93568],[93.55904,7.93548],[93.55907,7.93604],[93.56021,7.93484],[93.56011,7.9341],[93.56227,7.93372],[93.56247,7.93219],[93.56271,7.93344],[93.56376,7.93125],[93.56373,7.93224],[93.56766,7.93092],[93.56912,7.92993],[93.56942,7.92827],[93.5698,7.93014],[93.56736,7.93242],[93.56785,7.93496],[93.56942,7.93586],[93.56934,7.93735],[93.5714,7.93985],[93.57184,7.94146],[93.57046,7.9433],[93.5717,7.94612],[93.57214,7.95303],[93.57035,7.95517],[93.57096,7.95867],[93.57219,7.95983],[93.57171,7.96077],[93.57244,7.96332],[93.57225,7.96473],[93.57088,7.96428],[93.56992,7.96556],[93.57122,7.97019],[93.57223,7.96979],[93.57358,7.97244],[93.57296,7.97442],[93.57151,7.97538],[93.57174,7.97755],[93.57048,7.97862],[93.57073,7.98147],[93.57321,7.98531],[93.57179,7.98912],[93.57262,7.99031],[93.57225,7.992],[93.57331,7.99423],[93.57192,7.99538],[93.5703,7.99477],[93.56918,7.99999],[93.56997,8.0],[93.56763,8.00104],[93.56556,8.00532],[93.5626,8.00881],[93.56114,8.01361],[93.55995,8.01472],[93.55929,8.01482],[93.55897,8.01409],[93.55898,8.01514],[93.55675,8.01717],[93.55647,8.02134],[93.55363,8.02634],[93.55274,8.02631],[93.55314,8.02558],[93.5526,8.02481],[93.55079,8.0252],[93.55071,8.02621],[93.54879,8.02571],[93.54412,8.02804],[93.54084,8.02845]]],[[[93.47433,8.03481],[93.47462,8.03505],[93.4747,8.0352],[93.47475,8.03543],[93.4747,8.0357],[93.47449,8.03588],[93.47419,8.03607],[93.47391,8.03605],[93.4736,8.03591],[93.47346,8.03568],[93.47345,8.03544],[93.47348,8.03519],[93.47358,8.03494],[93.47379,8.03479],[93.47408,8.03476],[93.47433,8.03481]]],[[[93.49508,8.04863],[93.49476,8.04865],[93.4943,8.04862],[93.49393,8.04866],[93.49364,8.04868],[93.49349,8.04862],[93.49325,8.04838],[93.4932,8.04817],[93.49334,8.04776],[93.49339,8.04727],[93.49349,8.04704],[93.49366,8.04686],[93.49385,8.04679],[93.49403,8.04684],[93.49417,8.047],[93.49435,8.04735],[93.49459,8.0477],[93.49514,8.04809],[93.49532,8.04835],[93.49524,8.04851],[93.49508,8.04863]]],[[[93.51401,8.0644],[93.51411,8.06452],[93.51413,8.06463],[93.51412,8.06474],[93.51409,8.06484],[93.51404,8.06492],[93.51392,8.06496],[93.51377,8.06493],[93.51371,8.06487],[93.51366,8.06475],[93.51364,8.06455],[93.51368,8.06446],[93.51374,8.06439],[93.51381,8.06434],[93.51388,8.06432],[93.51401,8.0644]]],[[[93.51478,8.0689],[93.51485,8.06893],[93.51492,8.06899],[93.51493,8.06908],[93.51487,8.06927],[93.5148,8.06936],[93.51473,8.06943],[93.51469,8.06945],[93.51453,8.06948],[93.51446,8.06941],[93.51444,8.06936],[93.51444,8.06926],[93.51444,8.06917],[93.51447,8.06909],[93.51454,8.06901],[93.51461,8.06895],[93.51469,8.06891],[93.51478,8.0689]]],[[[93.51361,8.07471],[93.51386,8.07477],[93.51411,8.0749],[93.5142,8.07506],[93.51421,8.07516],[93.51419,8.0753],[93.51414,8.0754],[93.51403,8.07555],[93.51379,8.07566],[93.51349,8.07556],[93.51326,8.07541],[93.51313,8.07522],[93.51313,8.07506],[93.51316,8.07492],[93.51325,8.0748],[93.51337,8.07471],[93.51361,8.07471]]],[[[93.57595,8.11916],[93.57227,8.12651],[93.57052,8.12749],[93.56687,8.1275],[93.56242,8.12585],[93.55843,8.12319],[93.55339,8.12106],[93.55287,8.12008],[93.55345,8.11813],[93.55767,8.11226],[93.55867,8.11],[93.56087,8.10805],[93.56234,8.10875],[93.5654,8.11175],[93.5656,8.11272],[93.56474,8.11453],[93.56468,8.1166],[93.56767,8.11958],[93.56759,8.11852],[93.56503,8.11642],[93.56627,8.11156],[93.56459,8.10999],[93.56471,8.10858],[93.56316,8.10452],[93.56326,8.10312],[93.56002,8.09718],[93.56146,8.09421],[93.56149,8.09354],[93.56101,8.09359],[93.56076,8.09299],[93.56144,8.09164],[93.56229,8.09129],[93.56237,8.09188],[93.56147,8.09281],[93.56181,8.09312],[93.56377,8.09111],[93.56588,8.08769],[93.56994,8.08377],[93.57176,8.08273],[93.57195,8.08194],[93.57079,8.08016],[93.57217,8.07939],[93.57207,8.07621],[93.57265,8.07505],[93.57523,8.07413],[93.57756,8.07435],[93.57793,8.07524],[93.57821,8.07424],[93.57508,8.07379],[93.57151,8.07417],[93.5725,8.06989],[93.57487,8.06897],[93.5761,8.06753],[93.57411,8.06911],[93.57204,8.06983],[93.57002,8.07509],[93.56828,8.07563],[93.56484,8.07429],[93.56421,8.07363],[93.56259,8.06748],[93.56457,8.06152],[93.56771,8.05922],[93.56846,8.05727],[93.57107,8.05497],[93.57143,8.05342],[93.57389,8.04993],[93.57535,8.0497],[93.57716,8.04776],[93.5789,8.04705],[93.57807,8.04603],[93.57991,8.0428],[93.58118,8.04197],[93.58197,8.0391],[93.58305,8.0387],[93.58444,8.03922],[93.58476,8.03807],[93.58566,8.0387],[93.58544,8.0404],[93.58885,8.04227],[93.59087,8.04409],[93.59155,8.04986],[93.59135,8.05137],[93.59034,8.05184],[93.59032,8.05418],[93.5878,8.05976],[93.58577,8.06303],[93.58272,8.06621],[93.58191,8.06825],[93.58145,8.07373],[93.5832,8.0782],[93.581,8.08478],[93.58171,8.09004],[93.58157,8.0935],[93.5828,8.09431],[93.58291,8.09533],[93.58167,8.09607],[93.58057,8.09567],[93.57963,8.0946],[93.57951,8.09283],[93.57828,8.09205],[93.57832,8.09161],[93.57762,8.09173],[93.57797,8.09085],[93.57597,8.08994],[93.57569,8.09027],[93.57691,8.09114],[93.57544,8.09135],[93.57604,8.09169],[93.57597,8.09221],[93.57711,8.09181],[93.57722,8.09216],[93.57463,8.09314],[93.57395,8.0944],[93.57701,8.09323],[93.5775,8.09371],[93.57892,8.09292],[93.57932,8.0938],[93.57907,8.09472],[93.5805,8.09602],[93.58023,8.09739],[93.57986,8.09784],[93.57839,8.09726],[93.57711,8.09549],[93.5756,8.09498],[93.57572,8.09573],[93.5744,8.09568],[93.57261,8.09668],[93.57539,8.09676],[93.57415,8.09773],[93.5754,8.0979],[93.57537,8.09844],[93.57265,8.09962],[93.57513,8.09934],[93.57499,8.10015],[93.57358,8.10123],[93.57489,8.10095],[93.57472,8.10243],[93.57558,8.1009],[93.57553,8.0995],[93.57636,8.10017],[93.57632,8.09855],[93.57692,8.09844],[93.57655,8.09762],[93.57743,8.09691],[93.57991,8.09815],[93.58096,8.09643],[93.58312,8.0964],[93.58195,8.09825],[93.58148,8.10205],[93.57986,8.10771],[93.57952,8.10989],[93.58019,8.11022],[93.57893,8.11232],[93.57877,8.1138],[93.57659,8.11685],[93.57595,8.11916]]],[[[93.19396,8.18634],[93.19405,8.18643],[93.19407,8.18655],[93.19402,8.18663],[93.19393,8.18665],[93.19381,8.18663],[93.19374,8.18656],[93.19373,8.18648],[93.19373,8.18639],[93.19378,8.18631],[93.19387,8.1863],[93.19396,8.18634]]],[[[93.18827,8.19022],[93.18836,8.19028],[93.18837,8.19041],[93.18828,8.19061],[93.18809,8.1907],[93.18792,8.19069],[93.18784,8.19059],[93.18783,8.19049],[93.18794,8.19034],[93.1881,8.19022],[93.18827,8.19022]]],[[[93.19731,8.19024],[93.19741,8.19031],[93.19744,8.19042],[93.19741,8.1905],[93.19733,8.19056],[93.1972,8.19056],[93.1971,8.19049],[93.19707,8.19044],[93.19707,8.19036],[93.19711,8.19028],[93.19719,8.19023],[93.19731,8.19024]]],[[[93.17557,8.19372],[93.17557,8.1938],[93.17549,8.194],[93.17533,8.19415],[93.17513,8.19422],[93.17496,8.19421],[93.17487,8.19412],[93.1749,8.19394],[93.17522,8.19373],[93.17532,8.19369],[93.17551,8.19364],[93.17557,8.19372]]],[[[93.18632,8.19359],[93.18652,8.19372],[93.18657,8.19384],[93.18646,8.19402],[93.18634,8.19412],[93.18625,8.19416],[93.18617,8.19413],[93.18612,8.19405],[93.18603,8.19387],[93.18605,8.19369],[93.18619,8.19359],[93.18632,8.19359]]],[[[93.18823,8.19499],[93.18826,8.19512],[93.18825,8.19524],[93.18813,8.19538],[93.18802,8.19547],[93.18792,8.19547],[93.18779,8.19538],[93.18776,8.19528],[93.18782,8.19515],[93.18798,8.19501],[93.18814,8.19495],[93.18823,8.19499]]],[[[93.21134,8.1968],[93.21146,8.19697],[93.21146,8.19709],[93.21134,8.19716],[93.21117,8.19713],[93.21106,8.19704],[93.21103,8.1969],[93.21107,8.1968],[93.21117,8.19674],[93.21134,8.1968]]],[[[93.12698,8.216],[93.12711,8.21614],[93.12718,8.21629],[93.12708,8.21637],[93.12698,8.21639],[93.1268,8.21635],[93.12663,8.21635],[93.12653,8.21631],[93.12651,8.21619],[93.12649,8.21608],[93.12651,8.21603],[93.12656,8.21599],[93.12677,8.21595],[93.12698,8.216]]],[[[93.11743,8.21878],[93.11762,8.2189],[93.11767,8.21901],[93.11766,8.21912],[93.11757,8.21918],[93.11746,8.21919],[93.11735,8.21912],[93.1172,8.21897],[93.11717,8.21893],[93.11716,8.21887],[93.11724,8.2188],[93.11732,8.21876],[93.11743,8.21878]]],[[[93.11724,8.22],[93.11734,8.22006],[93.11735,8.22018],[93.11731,8.22029],[93.11726,8.22036],[93.11718,8.22037],[93.11709,8.22035],[93.11703,8.22027],[93.11705,8.22016],[93.11712,8.22006],[93.11718,8.22001],[93.11724,8.22]]],[[[93.22683,8.22468],[93.22675,8.22478],[93.22665,8.22486],[93.22657,8.22487],[93.22625,8.22461],[93.22622,8.2245],[93.22625,8.22438],[93.22632,8.22431],[93.22646,8.2243],[93.22658,8.22431],[93.22668,8.22427],[93.22675,8.22427],[93.22695,8.22431],[93.22706,8.22432],[93.22723,8.22444],[93.2273,8.22455],[93.22726,8.22471],[93.22719,8.22475],[93.22711,8.22471],[93.22696,8.22464],[93.22683,8.22468]]],[[[93.2344,8.2239],[93.23444,8.22394],[93.23442,8.22401],[93.23424,8.22417],[93.23419,8.22428],[93.23415,8.22433],[93.23407,8.22435],[93.23399,8.22433],[93.23383,8.22421],[93.23378,8.22412],[93.23377,8.22407],[93.23382,8.22399],[93.23394,8.22391],[93.23428,8.22387],[93.2344,8.2239]]],[[[93.2423,8.23278],[93.24236,8.23286],[93.24238,8.23296],[93.24234,8.23303],[93.24225,8.23305],[93.24217,8.23303],[93.24213,8.23295],[93.24211,8.23289],[93.24212,8.23282],[93.24215,8.23276],[93.24219,8.23275],[93.2423,8.23278]]],[[[93.24193,8.23371],[93.24198,8.23375],[93.24202,8.2338],[93.24199,8.23386],[93.24193,8.2339],[93.24183,8.23392],[93.2418,8.23388],[93.24178,8.23382],[93.2418,8.23377],[93.24185,8.23371],[93.24193,8.23371]]],[[[93.24213,8.23412],[93.24215,8.23416],[93.24214,8.23423],[93.24209,8.23428],[93.24204,8.23428],[93.24201,8.23426],[93.24198,8.23419],[93.242,8.23414],[93.24203,8.2341],[93.24207,8.23409],[93.24213,8.23412]]],[[[93.51331,8.23506],[93.51081,8.23517],[93.50932,8.23352],[93.51174,8.23116],[93.51454,8.23106],[93.51408,8.22974],[93.51008,8.23287],[93.5063,8.23232],[93.50508,8.23088],[93.4993,8.23045],[93.49714,8.22817],[93.48725,8.22499],[93.48193,8.22118],[93.48105,8.21634],[93.48244,8.20934],[93.47997,8.20496],[93.48068,8.20007],[93.47829,8.19745],[93.48081,8.19788],[93.48371,8.20056],[93.48672,8.19905],[93.49017,8.20295],[93.48675,8.19852],[93.48282,8.20001],[93.48191,8.19787],[93.47401,8.19557],[93.47004,8.1908],[93.46962,8.18544],[93.46949,8.19029],[93.46573,8.18437],[93.45668,8.18143],[93.44643,8.18096],[93.44241,8.17913],[93.43747,8.17038],[93.44053,8.16647],[93.44177,8.16113],[93.44592,8.15664],[93.44528,8.15072],[93.44816,8.15177],[93.4477,8.15328],[93.44991,8.15315],[93.44596,8.15019],[93.44658,8.14397],[93.44871,8.14271],[93.45178,8.14474],[93.45409,8.14412],[93.45455,8.14185],[93.45638,8.14071],[93.4486,8.13544],[93.4482,8.13355],[93.45101,8.11971],[93.45416,8.11908],[93.45511,8.12077],[93.45525,8.11953],[93.45812,8.11945],[93.4538,8.11636],[93.45736,8.11119],[93.45575,8.1121],[93.45405,8.11084],[93.45878,8.10211],[93.46893,8.09033],[93.47097,8.09667],[93.47198,8.09663],[93.48412,8.08826],[93.48786,8.09507],[93.48624,8.09286],[93.48784,8.09076],[93.48629,8.09087],[93.48391,8.08764],[93.47868,8.09167],[93.47704,8.08928],[93.47284,8.08713],[93.46972,8.08861],[93.47393,8.07913],[93.47518,8.07216],[93.47438,8.06825],[93.47567,8.06361],[93.47473,8.06005],[93.47575,8.0529],[93.47809,8.05363],[93.48049,8.05082],[93.48298,8.05238],[93.4852,8.06076],[93.48184,8.06297],[93.48192,8.06438],[93.48415,8.06434],[93.48619,8.06774],[93.48771,8.06551],[93.48934,8.06587],[93.49217,8.07018],[93.49523,8.07],[93.49708,8.07421],[93.5025,8.07538],[93.5018,8.07715],[93.50422,8.07969],[93.50296,8.08209],[93.50458,8.08566],[93.5094,8.08311],[93.5118,8.08567],[93.51401,8.08494],[93.51436,8.07966],[93.52116,8.08038],[93.51442,8.07506],[93.51579,8.06822],[93.51719,8.07037],[93.52163,8.06976],[93.5222,8.06856],[93.52086,8.06906],[93.52045,8.06535],[93.51765,8.06366],[93.51414,8.06412],[93.51494,8.05833],[93.51668,8.05642],[93.51569,8.05325],[93.51141,8.05226],[93.50852,8.04769],[93.50385,8.05003],[93.50531,8.05927],[93.50185,8.06901],[93.50028,8.06841],[93.49892,8.06504],[93.49937,8.05771],[93.49668,8.05904],[93.49656,8.05746],[93.49378,8.05752],[93.49372,8.05601],[93.49637,8.0556],[93.5,8.05218],[93.5,8.04972],[93.49834,8.05071],[93.49699,8.04558],[93.49911,8.03805],[93.49376,8.04603],[93.49255,8.04466],[93.49279,8.04157],[93.49014,8.04017],[93.48894,8.04235],[93.48388,8.04413],[93.48053,8.04727],[93.47663,8.04727],[93.47585,8.0461],[93.47724,8.04295],[93.47727,8.03791],[93.47609,8.03698],[93.477,8.03295],[93.47532,8.0316],[93.47697,8.02924],[93.47613,8.01843],[93.47746,8.01783],[93.47696,8.01606],[93.47962,8.00988],[93.47925,8.00672],[93.48107,8.00482],[93.48036,8.00286],[93.48323,8.00069],[93.48722,8.00139],[93.48814,7.9988],[93.49109,7.99845],[93.49226,7.99999],[93.49156,8.00142],[93.49273,8.00195],[93.49542,8.00013],[93.4962,8.00387],[93.49788,8.00435],[93.49731,8.00953],[93.49992,8.01154],[93.49912,8.01364],[93.49755,8.0139],[93.49781,8.01703],[93.50025,8.01573],[93.50172,8.01858],[93.50074,8.02176],[93.4964,8.0249],[93.49638,8.02993],[93.49845,8.03592],[93.50828,8.0364],[93.51079,8.03935],[93.51195,8.03573],[93.51445,8.03348],[93.51828,8.03837],[93.51807,8.04657],[93.52126,8.05059],[93.52726,8.0484],[93.52656,8.04626],[93.52852,8.04555],[93.5307,8.04007],[93.53943,8.03554],[93.5408,8.03614],[93.53965,8.04368],[93.53504,8.0501],[93.53631,8.05148],[93.53828,8.05042],[93.53843,8.05794],[93.53981,8.05819],[93.53913,8.05972],[93.54034,8.06019],[93.54316,8.06773],[93.54113,8.08114],[93.53826,8.08583],[93.53776,8.08999],[93.53,8.09215],[93.52667,8.09609],[93.52268,8.0983],[93.52111,8.10181],[93.52137,8.10684],[93.51916,8.10821],[93.51808,8.1146],[93.51487,8.11813],[93.51587,8.11978],[93.51468,8.12335],[93.51089,8.12625],[93.50899,8.1312],[93.50792,8.13057],[93.5064,8.13231],[93.50842,8.13172],[93.50704,8.13363],[93.50551,8.13529],[93.50448,8.13449],[93.505,8.13638],[93.50306,8.13893],[93.49279,8.14617],[93.4947,8.1475],[93.49316,8.14981],[93.49747,8.15113],[93.49831,8.15772],[93.50089,8.15764],[93.50225,8.159],[93.50286,8.16355],[93.5,8.16475],[93.50162,8.1702],[93.50868,8.17412],[93.50413,8.176],[93.50907,8.17442],[93.51054,8.17525],[93.51123,8.17332],[93.51301,8.17305],[93.52279,8.18468],[93.52278,8.18587],[93.52053,8.186],[93.52554,8.18711],[93.52612,8.18427],[93.52383,8.18088],[93.51767,8.17756],[93.51876,8.17661],[93.52526,8.17806],[93.52707,8.18016],[93.52902,8.18716],[93.52796,8.1928],[93.52979,8.19223],[93.53234,8.19404],[93.53653,8.2024],[93.53666,8.22417],[93.53463,8.229],[93.52707,8.23009],[93.52571,8.23174],[93.51642,8.23324],[93.51331,8.23506]]],[[[93.22662,8.26571],[93.22435,8.26583],[93.219,8.26419],[93.2158,8.26253],[93.21512,8.26154],[93.2142,8.26122],[93.21274,8.25964],[93.2126,8.25913],[93.21189,8.25882],[93.21126,8.25768],[93.21137,8.25664],[93.21066,8.2553],[93.21082,8.25443],[93.21032,8.25368],[93.21038,8.25276],[93.20969,8.2514],[93.21061,8.25069],[93.21019,8.24867],[93.21035,8.24681],[93.21216,8.24242],[93.21347,8.24074],[93.21407,8.23936],[93.21769,8.2355],[93.22035,8.23317],[93.22274,8.23227],[93.22427,8.23084],[93.22432,8.22884],[93.22624,8.22699],[93.2266,8.22573],[93.22756,8.22485],[93.22743,8.22421],[93.2295,8.2218],[93.22993,8.22215],[93.23004,8.22324],[93.23053,8.22383],[93.23023,8.22421],[93.23049,8.22451],[93.23234,8.22436],[93.23492,8.22508],[93.23535,8.22453],[93.23566,8.22507],[93.23635,8.22542],[93.23897,8.2258],[93.23916,8.2264],[93.24003,8.22641],[93.24063,8.22682],[93.24122,8.22939],[93.24087,8.22972],[93.2406,8.23095],[93.24059,8.23146],[93.24093,8.2318],[93.24029,8.23275],[93.24031,8.23357],[93.2407,8.23507],[93.24115,8.23564],[93.24087,8.2363],[93.24038,8.23652],[93.23993,8.2376],[93.23951,8.23768],[93.23927,8.23841],[93.24003,8.23963],[93.24006,8.24016],[93.23919,8.24027],[93.24001,8.24205],[93.23986,8.24271],[93.23865,8.24347],[93.23833,8.24446],[93.23869,8.24474],[93.23856,8.24512],[93.23808,8.24497],[93.23756,8.24584],[93.23771,8.24619],[93.23672,8.2498],[93.23509,8.25055],[93.23423,8.25357],[93.23313,8.25515],[93.23299,8.25647],[93.23231,8.25736],[93.23148,8.2596],[93.23074,8.25915],[93.2307,8.26084],[93.23011,8.26114],[93.23012,8.26218],[93.22894,8.26391],[93.22852,8.26508],[93.22662,8.26571]]],[[[93.2267,8.26671],[93.22675,8.26683],[93.22673,8.26694],[93.22663,8.267],[93.2265,8.26693],[93.22642,8.2668],[93.22651,8.26665],[93.22665,8.26663],[93.2267,8.26671]]],[[[93.11723,8.35651],[93.1156,8.3566],[93.11596,8.35566],[93.11487,8.3548],[93.11467,8.35553],[93.11324,8.35477],[93.11295,8.35585],[93.11344,8.3538],[93.11213,8.3522],[93.10933,8.35031],[93.10795,8.35094],[93.10702,8.35009],[93.10725,8.3509],[93.10664,8.3497],[93.10623,8.35058],[93.10326,8.34762],[93.09798,8.3492],[93.09855,8.34988],[93.09655,8.35003],[93.09629,8.35119],[93.09511,8.3501],[93.09495,8.34738],[93.09114,8.34709],[93.09154,8.34609],[93.08941,8.34242],[93.08742,8.3414],[93.08606,8.34196],[93.08698,8.34123],[93.08493,8.3408],[93.08371,8.33527],[93.08477,8.33155],[93.08419,8.32521],[93.07534,8.30701],[93.0733,8.29546],[93.07382,8.2906],[93.07508,8.28963],[93.0738,8.284],[93.07584,8.27346],[93.08732,8.25618],[93.08825,8.25522],[93.09012,8.25543],[93.08967,8.25333],[93.09099,8.25138],[93.08979,8.24879],[93.09134,8.24608],[93.09261,8.24634],[93.09362,8.24263],[93.1006,8.23662],[93.10218,8.23403],[93.10573,8.23379],[93.10633,8.2281],[93.10956,8.22682],[93.11162,8.22364],[93.11715,8.22211],[93.12002,8.2199],[93.12458,8.21921],[93.12697,8.2169],[93.13965,8.21082],[93.14348,8.20704],[93.14728,8.2061],[93.15184,8.20222],[93.15735,8.20104],[93.16446,8.20109],[93.16827,8.19928],[93.16902,8.1979],[93.17088,8.19789],[93.17818,8.19413],[93.1799,8.19531],[93.1856,8.19472],[93.1909,8.19612],[93.19242,8.1974],[93.19408,8.20207],[93.19583,8.21309],[93.19548,8.21519],[93.19283,8.2186],[93.18707,8.2214],[93.18598,8.2245],[93.18348,8.22639],[93.17092,8.23077],[93.16357,8.23562],[93.16152,8.23568],[93.15172,8.24105],[93.14899,8.24155],[93.12868,8.26087],[93.11972,8.2728],[93.11732,8.27903],[93.11732,8.283],[93.12373,8.29901],[93.12406,8.3159],[93.12905,8.32546],[93.13067,8.32654],[93.13179,8.33026],[93.13093,8.33831],[93.13183,8.34113],[93.13304,8.34176],[93.13351,8.34654],[93.13281,8.34626],[93.13246,8.34913],[93.13128,8.34795],[93.13087,8.34887],[93.12902,8.34821],[93.12543,8.34974],[93.12211,8.34828],[93.12096,8.34931],[93.12142,8.35099],[93.12076,8.35057],[93.1186,8.35254],[93.11854,8.3554],[93.11723,8.35651]]],[[[93.04971,8.44245],[93.0497,8.44271],[93.04958,8.44275],[93.04948,8.44262],[93.04942,8.44246],[93.04951,8.44236],[93.04971,8.44245]]],[[[93.04984,8.44302],[93.04982,8.44316],[93.04957,8.44321],[93.04945,8.44303],[93.0496,8.44297],[93.04984,8.44302]]],[[[93.05036,8.44378],[93.05022,8.44389],[93.05014,8.44367],[93.05013,8.44361],[93.05012,8.44364],[93.05015,8.44334],[93.05039,8.44341],[93.05036,8.44378]]],[[[93.04998,8.44453],[93.05006,8.44461],[93.05005,8.4447],[93.04991,8.44485],[93.04984,8.44485],[93.04972,8.44483],[93.04968,8.44473],[93.04972,8.44458],[93.0498,8.44451],[93.04998,8.44453]]],[[[93.05027,8.44473],[93.05033,8.44496],[93.05023,8.44511],[93.05009,8.44511],[93.04994,8.44497],[93.04989,8.44488],[93.04999,8.44477],[93.0501,8.44469],[93.05027,8.44473]]],[[[93.04981,8.44505],[93.04985,8.44512],[93.04983,8.44527],[93.04975,8.44535],[93.04966,8.44534],[93.04965,8.44523],[93.04968,8.44505],[93.04981,8.44505]]],[[[93.04976,8.44556],[93.04972,8.44572],[93.04962,8.44579],[93.04954,8.44576],[93.04952,8.44565],[93.04958,8.44549],[93.04969,8.44546],[93.04976,8.44556]]],[[[93.62565,8.39404],[93.62575,8.39408],[93.62589,8.39419],[93.62595,8.39426],[93.62599,8.39432],[93.62599,8.39441],[93.62598,8.39446],[93.62594,8.39449],[93.62588,8.39453],[93.62578,8.39454],[93.62567,8.3945],[93.62548,8.39428],[93.62542,8.39421],[93.62542,8.39416],[93.62544,8.39411],[93.62546,8.39406],[93.62552,8.39404],[93.62565,8.39404]]],[[[93.62734,8.39473],[93.62747,8.3948],[93.62753,8.39488],[93.62756,8.39493],[93.62754,8.39499],[93.62751,8.39502],[93.62741,8.39504],[93.62736,8.39503],[93.62731,8.39501],[93.62722,8.39493],[93.62719,8.39485],[93.62719,8.39478],[93.62723,8.39474],[93.62728,8.39472],[93.62734,8.39473]]],[[[93.62722,8.39512],[93.62728,8.39515],[93.62728,8.39519],[93.62728,8.39525],[93.62726,8.39531],[93.62723,8.39533],[93.6272,8.39534],[93.62716,8.39535],[93.62712,8.39535],[93.6271,8.39532],[93.62708,8.39526],[93.62714,8.39513],[93.62718,8.39512],[93.62722,8.39512]]],[[[93.6321,8.39478],[93.63199,8.39483],[93.63192,8.39489],[93.63189,8.39496],[93.63176,8.39514],[93.63169,8.39521],[93.63166,8.39522],[93.63156,8.39523],[93.63142,8.39518],[93.63135,8.39514],[93.63128,8.39506],[93.63123,8.39498],[93.63122,8.39492],[93.63121,8.39479],[93.63125,8.3947],[93.63132,8.39462],[93.63144,8.39453],[93.63159,8.3945],[93.63205,8.39449],[93.63236,8.39433],[93.63247,8.39425],[93.6327,8.3941],[93.63283,8.39408],[93.63295,8.39409],[93.63302,8.39414],[93.63308,8.39427],[93.63301,8.39433],[93.63281,8.39441],[93.63267,8.39452],[93.6326,8.39463],[93.63251,8.39473],[93.63226,8.39475],[93.6321,8.39478]]],[[[93.62614,8.39553],[93.62618,8.39554],[93.62623,8.39558],[93.62625,8.39573],[93.62625,8.39586],[93.62623,8.39592],[93.62619,8.39596],[93.62616,8.39596],[93.62612,8.39596],[93.62606,8.39593],[93.62604,8.39588],[93.62603,8.39582],[93.62602,8.39577],[93.62602,8.39563],[93.62605,8.39554],[93.62608,8.39553],[93.62614,8.39553]]],[[[93.6434,8.39454],[93.64318,8.39516],[93.64292,8.39532],[93.64259,8.39535],[93.64204,8.39524],[93.64105,8.39474],[93.64015,8.39465],[93.6397,8.39478],[93.63927,8.39522],[93.63905,8.39512],[93.63898,8.395],[93.63875,8.39501],[93.63831,8.39473],[93.63808,8.39469],[93.63763,8.3949],[93.63723,8.39478],[93.63694,8.39479],[93.63624,8.39516],[93.63599,8.39474],[93.63542,8.39478],[93.635,8.39497],[93.63467,8.3954],[93.63455,8.39546],[93.63442,8.39538],[93.63433,8.39498],[93.63388,8.39478],[93.6338,8.39455],[93.6342,8.39418],[93.63439,8.3938],[93.6346,8.39387],[93.63475,8.39416],[93.63491,8.39412],[93.63508,8.39395],[93.63523,8.39424],[93.63565,8.39415],[93.63585,8.39433],[93.63597,8.39428],[93.63641,8.39386],[93.63625,8.39351],[93.63638,8.39307],[93.63619,8.39298],[93.63642,8.3925],[93.63678,8.39215],[93.637,8.39171],[93.63731,8.39148],[93.63744,8.39125],[93.63785,8.39088],[93.63855,8.39099],[93.6389,8.39119],[93.63911,8.39121],[93.63922,8.39136],[93.63951,8.39121],[93.63971,8.39123],[93.63977,8.39109],[93.64022,8.39102],[93.64033,8.3911],[93.64037,8.39096],[93.64049,8.39097],[93.64074,8.39116],[93.64091,8.39105],[93.64127,8.39108],[93.64149,8.39093],[93.64159,8.3907],[93.64157,8.39007],[93.64208,8.38991],[93.64233,8.39034],[93.64251,8.39042],[93.64284,8.3904],[93.64296,8.39023],[93.64286,8.38995],[93.64303,8.38977],[93.64307,8.38956],[93.6433,8.38946],[93.64357,8.38921],[93.64375,8.38946],[93.644,8.38935],[93.64414,8.3894],[93.64435,8.39001],[93.64476,8.39048],[93.64521,8.39035],[93.64539,8.39069],[93.64552,8.39076],[93.64598,8.39058],[93.6464,8.39086],[93.64642,8.39106],[93.64614,8.39122],[93.64535,8.39126],[93.64482,8.39182],[93.64421,8.39218],[93.64401,8.39259],[93.64389,8.3927],[93.64406,8.39298],[93.6434,8.39454]]],[[[93.6248,8.39794],[93.62466,8.39794],[93.62458,8.3979],[93.62456,8.39784],[93.62456,8.39776],[93.62457,8.39765],[93.62463,8.39748],[93.62464,8.39737],[93.62462,8.39697],[93.62463,8.39683],[93.62466,8.39672],[93.62472,8.39662],[93.62479,8.39656],[93.62486,8.39653],[93.62496,8.39655],[93.62506,8.39663],[93.6251,8.39667],[93.62515,8.39672],[93.62521,8.39673],[93.62539,8.39676],[93.62546,8.39681],[93.62554,8.39696],[93.62555,8.39705],[93.62555,8.39715],[93.62548,8.39724],[93.62544,8.39733],[93.62538,8.39738],[93.62535,8.39746],[93.62531,8.39778],[93.62524,8.39786],[93.62514,8.3979],[93.62486,8.39791],[93.6248,8.39794]]],[[[93.62324,8.39791],[93.62328,8.39794],[93.6233,8.39797],[93.6233,8.39803],[93.6233,8.3981],[93.62327,8.39816],[93.62324,8.39818],[93.6232,8.39819],[93.62315,8.39818],[93.62312,8.39816],[93.6231,8.39812],[93.6231,8.39809],[93.62315,8.39794],[93.62319,8.39791],[93.62324,8.39791]]],[[[93.62311,8.39836],[93.62316,8.39839],[93.62318,8.39851],[93.62318,8.39857],[93.62317,8.39861],[93.62316,8.39863],[93.62313,8.39865],[93.62309,8.39865],[93.62303,8.39864],[93.62299,8.39861],[93.62297,8.39855],[93.62298,8.39842],[93.62302,8.39837],[93.62305,8.39836],[93.62311,8.39836]]],[[[93.62435,8.39703],[93.6244,8.39709],[93.6244,8.39746],[93.62443,8.39769],[93.62445,8.39778],[93.62444,8.39786],[93.62439,8.39795],[93.6243,8.398],[93.62422,8.39811],[93.62413,8.39836],[93.62407,8.39846],[93.62406,8.39855],[93.624,8.39859],[93.62394,8.3986],[93.62388,8.39859],[93.62382,8.39851],[93.6238,8.39836],[93.62379,8.39813],[93.62372,8.39796],[93.6237,8.39787],[93.62371,8.39778],[93.62372,8.39769],[93.62379,8.39761],[93.62384,8.39751],[93.62393,8.39745],[93.62407,8.39734],[93.62412,8.39725],[93.62417,8.3971],[93.62421,8.39705],[93.62428,8.39703],[93.62435,8.39703]]],[[[93.62348,8.39837],[93.62353,8.3984],[93.62358,8.39851],[93.62358,8.39862],[93.62356,8.39867],[93.62352,8.39869],[93.62347,8.3987],[93.62343,8.39869],[93.6234,8.39866],[93.62337,8.39862],[93.62334,8.39856],[93.62334,8.3985],[93.62335,8.39844],[93.62338,8.3984],[93.62342,8.39837],[93.62348,8.39837]]],[[[93.62328,8.39885],[93.62332,8.3989],[93.62332,8.39896],[93.62331,8.399],[93.62329,8.39904],[93.62325,8.39906],[93.62317,8.39907],[93.62313,8.39905],[93.6231,8.39903],[93.62309,8.39898],[93.62309,8.39895],[93.62312,8.3989],[93.62315,8.39886],[93.62322,8.39885],[93.62328,8.39885]]],[[[93.62341,8.39918],[93.62342,8.3992],[93.62343,8.39925],[93.62342,8.3993],[93.6234,8.39934],[93.62337,8.39936],[93.62331,8.39939],[93.62328,8.39939],[93.62326,8.39939],[93.62321,8.39939],[93.62318,8.39936],[93.62318,8.39932],[93.62318,8.39927],[93.62321,8.39923],[93.62325,8.39919],[93.62333,8.39916],[93.62341,8.39918]]],[[[93.62262,8.40029],[93.62267,8.40031],[93.6227,8.40036],[93.6227,8.4004],[93.62267,8.40044],[93.62262,8.40048],[93.62259,8.4005],[93.62247,8.4005],[93.62241,8.40049],[93.62237,8.40045],[93.62236,8.40041],[93.62237,8.40034],[93.62244,8.4003],[93.62256,8.40029],[93.62262,8.40029]]],[[[93.62307,8.40014],[93.62312,8.40018],[93.62315,8.40024],[93.62315,8.40034],[93.62315,8.4004],[93.62315,8.40048],[93.6231,8.40054],[93.62304,8.40055],[93.62298,8.40054],[93.62293,8.4005],[93.62289,8.40045],[93.62288,8.40035],[93.6229,8.40027],[93.62292,8.4002],[93.62296,8.40016],[93.623,8.40013],[93.62307,8.40014]]],[[[93.62281,8.40064],[93.62285,8.40067],[93.62286,8.40072],[93.62287,8.40078],[93.62286,8.40083],[93.62284,8.40088],[93.6228,8.40092],[93.62277,8.40097],[93.62274,8.40099],[93.6227,8.401],[93.62266,8.40098],[93.62265,8.40093],[93.62264,8.40087],[93.62264,8.40081],[93.62266,8.40076],[93.6227,8.4007],[93.62274,8.40068],[93.62278,8.40064],[93.62281,8.40064]]],[[[93.62229,8.40092],[93.62232,8.40097],[93.62234,8.40102],[93.62234,8.40107],[93.62233,8.40111],[93.6223,8.40115],[93.62225,8.40116],[93.6222,8.40115],[93.62216,8.40111],[93.62213,8.40107],[93.62212,8.40102],[93.62213,8.40097],[93.62217,8.40092],[93.62222,8.40088],[93.62229,8.40092]]],[[[93.62254,8.40182],[93.6226,8.40184],[93.62265,8.40188],[93.62267,8.40193],[93.62266,8.40198],[93.62266,8.40203],[93.62262,8.40206],[93.62257,8.40207],[93.62251,8.40208],[93.62246,8.40208],[93.62241,8.40206],[93.62238,8.40202],[93.62235,8.40197],[93.62235,8.40192],[93.62238,8.40187],[93.62239,8.40184],[93.62246,8.40182],[93.62254,8.40182]]],[[[93.04442,8.46417],[93.04258,8.46617],[93.04156,8.4669],[93.04057,8.46838],[93.03972,8.46893],[93.0357,8.47279],[93.03417,8.47338],[93.03267,8.47273],[93.03063,8.47114],[93.02887,8.46796],[93.02901,8.46753],[93.02532,8.45959],[93.02548,8.45899],[93.0249,8.45694],[93.02454,8.45225],[93.02535,8.45089],[93.02588,8.44868],[93.02655,8.44739],[93.02854,8.4452],[93.03341,8.44158],[93.03648,8.44128],[93.0382,8.44005],[93.04209,8.43962],[93.04466,8.44004],[93.04473,8.44028],[93.04504,8.4401],[93.046,8.44015],[93.04713,8.44029],[93.04734,8.44062],[93.04773,8.44051],[93.04833,8.44166],[93.04917,8.44238],[93.04969,8.44362],[93.04952,8.44552],[93.04857,8.44619],[93.04737,8.44656],[93.04768,8.4467],[93.0474,8.44717],[93.04753,8.44747],[93.04698,8.44776],[93.04692,8.44883],[93.04666,8.44905],[93.04647,8.44997],[93.04676,8.45355],[93.04793,8.45697],[93.04778,8.46003],[93.0465,8.46247],[93.04653,8.46313],[93.04558,8.46368],[93.04513,8.46358],[93.04442,8.46417]]],[[[93.61388,8.41776],[93.61396,8.41783],[93.61407,8.41797],[93.61419,8.41818],[93.61426,8.41837],[93.61426,8.41846],[93.61423,8.41854],[93.6142,8.41861],[93.61389,8.41876],[93.61367,8.41888],[93.6136,8.41891],[93.61353,8.41893],[93.61345,8.41891],[93.61343,8.41886],[93.61343,8.41882],[93.61347,8.41874],[93.61347,8.41873],[93.61358,8.41857],[93.61367,8.41838],[93.61361,8.41818],[93.61359,8.4181],[93.61359,8.41802],[93.61361,8.41791],[93.61365,8.41783],[93.61369,8.41779],[93.61378,8.41775],[93.61388,8.41776]]],[[[93.61324,8.41949],[93.61329,8.41954],[93.61331,8.41962],[93.6133,8.4197],[93.61321,8.41979],[93.61314,8.41994],[93.61311,8.42003],[93.613,8.42003],[93.6129,8.41995],[93.61287,8.41984],[93.61288,8.41972],[93.6129,8.41964],[93.61295,8.41958],[93.61305,8.41951],[93.61314,8.41949],[93.61324,8.41949]]],[[[93.61309,8.42063],[93.61295,8.42071],[93.61277,8.42084],[93.61267,8.42097],[93.6126,8.42102],[93.61249,8.42103],[93.61242,8.42099],[93.61241,8.42094],[93.61241,8.42085],[93.61247,8.42076],[93.61267,8.42043],[93.6127,8.42032],[93.61275,8.42024],[93.6128,8.42021],[93.61285,8.42021],[93.61299,8.42033],[93.61305,8.42038],[93.61315,8.42043],[93.61323,8.42048],[93.61326,8.42054],[93.61326,8.42057],[93.61323,8.42061],[93.61309,8.42063]]],[[[93.6137,8.42072],[93.61377,8.42079],[93.61378,8.42087],[93.61376,8.42096],[93.6137,8.42102],[93.61363,8.42106],[93.61358,8.42107],[93.61354,8.42106],[93.61348,8.42103],[93.61345,8.42095],[93.61345,8.42087],[93.61346,8.42082],[93.61356,8.42074],[93.61362,8.42071],[93.6137,8.42072]]],[[[93.61261,8.42266],[93.61268,8.42272],[93.61271,8.42281],[93.61271,8.4229],[93.6127,8.42297],[93.61264,8.42302],[93.61257,8.42302],[93.61251,8.42299],[93.61246,8.42293],[93.61242,8.42286],[93.61246,8.42276],[93.61249,8.42266],[93.61255,8.42264],[93.61261,8.42266]]],[[[93.60647,8.43228],[93.60654,8.43232],[93.60657,8.43237],[93.60657,8.43243],[93.60655,8.43248],[93.60652,8.43253],[93.60645,8.43256],[93.60637,8.43258],[93.60629,8.43258],[93.60621,8.43255],[93.60617,8.4325],[93.60617,8.43246],[93.60617,8.4324],[93.60625,8.43232],[93.60634,8.43228],[93.60647,8.43228]]],[[[93.60746,8.43602],[93.60749,8.43606],[93.60749,8.43613],[93.60745,8.4362],[93.60737,8.43624],[93.60719,8.43632],[93.60708,8.43633],[93.6069,8.43633],[93.60677,8.43633],[93.60664,8.43629],[93.60654,8.43625],[93.60645,8.43619],[93.60642,8.43611],[93.6064,8.43604],[93.60645,8.4359],[93.60648,8.43588],[93.60657,8.43588],[93.60669,8.4359],[93.60679,8.43595],[93.60692,8.43599],[93.60704,8.43601],[93.60716,8.436],[93.60726,8.43598],[93.60738,8.43598],[93.60746,8.43602]]],[[[93.60769,8.45767],[93.60756,8.45772],[93.60729,8.45772],[93.60714,8.4577],[93.60686,8.45771],[93.60672,8.45773],[93.60629,8.45785],[93.60605,8.4578],[93.60596,8.45776],[93.60586,8.45768],[93.6058,8.45759],[93.60579,8.4575],[93.6058,8.45741],[93.60583,8.45739],[93.60591,8.45739],[93.60603,8.45745],[93.60621,8.45745],[93.60627,8.45744],[93.60641,8.45735],[93.60662,8.45704],[93.60672,8.45693],[93.6068,8.45687],[93.60687,8.45679],[93.607,8.45671],[93.60714,8.45672],[93.60721,8.45676],[93.60723,8.45683],[93.60725,8.45703],[93.6073,8.45712],[93.6074,8.4572],[93.60779,8.45723],[93.60785,8.45725],[93.6079,8.45731],[93.6079,8.45743],[93.60786,8.4575],[93.60769,8.45767]]],[[[93.61076,8.45922],[93.61102,8.45927],[93.61111,8.45929],[93.61122,8.45931],[93.61139,8.45937],[93.6114,8.45946],[93.61135,8.4596],[93.61122,8.45971],[93.61108,8.45974],[93.61094,8.45972],[93.61055,8.45953],[93.61045,8.45945],[93.6104,8.45936],[93.61041,8.45928],[93.61055,8.45921],[93.61076,8.45922]]],[[[93.62568,8.47024],[93.62581,8.47029],[93.62593,8.47038],[93.62597,8.47049],[93.62597,8.47058],[93.62593,8.47069],[93.62583,8.47078],[93.62561,8.47089],[93.62545,8.47102],[93.62536,8.4711],[93.62527,8.47116],[93.62519,8.47118],[93.6251,8.47118],[93.625,8.47113],[93.62496,8.47106],[93.62498,8.47095],[93.62507,8.47085],[93.62525,8.47072],[93.62534,8.47048],[93.62541,8.47033],[93.62547,8.47027],[93.62555,8.47023],[93.62568,8.47024]]],[[[93.60355,8.48718],[93.60344,8.48721],[93.60336,8.48727],[93.6033,8.48735],[93.60327,8.48748],[93.6032,8.48752],[93.60313,8.48752],[93.60309,8.48748],[93.60306,8.48741],[93.60306,8.48726],[93.60303,8.48718],[93.60298,8.48709],[93.60271,8.48685],[93.60261,8.48682],[93.60255,8.48677],[93.6025,8.48673],[93.60247,8.48664],[93.60248,8.48653],[93.60258,8.48648],[93.60263,8.48643],[93.60266,8.48627],[93.60269,8.4862],[93.60273,8.48618],[93.60284,8.48617],[93.60299,8.48623],[93.60312,8.48634],[93.60319,8.48644],[93.60322,8.48653],[93.60329,8.48661],[93.60337,8.48665],[93.60342,8.48667],[93.60354,8.48668],[93.60382,8.48668],[93.60391,8.48671],[93.60396,8.48677],[93.60397,8.48685],[93.60396,8.48704],[93.60386,8.48714],[93.60383,8.48715],[93.60363,8.48716],[93.60355,8.48718]]],[[[93.62928,8.48702],[93.62932,8.48711],[93.62931,8.4872],[93.62924,8.48726],[93.62916,8.48729],[93.62907,8.48739],[93.62903,8.48751],[93.62897,8.48771],[93.6288,8.48769],[93.62873,8.48764],[93.62876,8.48755],[93.6288,8.48739],[93.62885,8.48728],[93.62895,8.48724],[93.629,8.48715],[93.62905,8.48701],[93.62917,8.48697],[93.62928,8.48702]]],[[[93.62852,8.48793],[93.6287,8.48792],[93.62866,8.48809],[93.6285,8.48817],[93.62835,8.48814],[93.62831,8.4881],[93.62835,8.488],[93.62845,8.48793],[93.62852,8.48793]]],[[[93.60578,8.49828],[93.60593,8.49842],[93.60598,8.49846],[93.60605,8.49848],[93.60611,8.49852],[93.60614,8.49858],[93.60615,8.49861],[93.60614,8.49867],[93.60611,8.49871],[93.60607,8.49875],[93.60601,8.49877],[93.60594,8.49877],[93.60587,8.49875],[93.60567,8.49854],[93.60558,8.49849],[93.60556,8.49842],[93.60556,8.49837],[93.60559,8.49828],[93.60565,8.49825],[93.60578,8.49828]]],[[[93.61411,8.50205],[93.61399,8.50207],[93.6139,8.50198],[93.61386,8.50183],[93.61393,8.50167],[93.61412,8.50158],[93.61437,8.50157],[93.6145,8.50161],[93.61454,8.50173],[93.61454,8.50187],[93.61449,8.50199],[93.61437,8.50201],[93.61425,8.50195],[93.61411,8.50205]]],[[[93.61441,8.50243],[93.61446,8.50243],[93.61452,8.50246],[93.61466,8.50251],[93.6147,8.50254],[93.61474,8.50258],[93.61476,8.50261],[93.61476,8.50265],[93.61474,8.50267],[93.6147,8.5027],[93.61461,8.50272],[93.61435,8.50273],[93.61426,8.50272],[93.61421,8.50268],[93.6142,8.50264],[93.61421,8.50258],[93.61424,8.50252],[93.61436,8.50243],[93.61441,8.50243]]],[[[93.62439,8.50296],[93.62443,8.50297],[93.62446,8.503],[93.62447,8.50303],[93.62448,8.50306],[93.62448,8.5031],[93.62447,8.50314],[93.62445,8.50316],[93.62442,8.50317],[93.62439,8.50316],[93.62436,8.50313],[93.62433,8.50309],[93.62432,8.50306],[93.6243,8.50304],[93.62429,8.50301],[93.6243,8.50298],[93.62432,8.50296],[93.62435,8.50296],[93.62439,8.50296]]],[[[93.62419,8.50325],[93.62419,8.50331],[93.62417,8.50334],[93.62415,8.50335],[93.62413,8.50337],[93.62408,8.50338],[93.62403,8.50337],[93.62401,8.50334],[93.62399,8.50331],[93.624,8.50326],[93.62402,8.50322],[93.62404,8.50319],[93.62407,8.50317],[93.6241,8.50314],[93.62413,8.50313],[93.62416,8.50313],[93.62417,8.50314],[93.62418,8.50316],[93.62417,8.50319],[93.62418,8.50323],[93.62418,8.50322],[93.62419,8.50325]]],[[[93.61454,8.50437],[93.61458,8.50439],[93.61459,8.50444],[93.61457,8.50452],[93.61455,8.50458],[93.61452,8.5046],[93.61447,8.50461],[93.61443,8.50458],[93.61441,8.50452],[93.61443,8.50447],[93.61446,8.5044],[93.61451,8.50437],[93.61454,8.50437]]],[[[93.61497,8.50464],[93.61501,8.50468],[93.61502,8.50472],[93.615,8.50479],[93.61497,8.50485],[93.61491,8.50492],[93.61484,8.50496],[93.61477,8.50498],[93.61474,8.50498],[93.61469,8.50496],[93.61466,8.50492],[93.61465,8.50486],[93.61467,8.50481],[93.6147,8.50475],[93.61474,8.50471],[93.61479,8.50467],[93.61484,8.50465],[93.6149,8.50463],[93.61497,8.50464]]],[[[93.61439,8.50482],[93.61444,8.50486],[93.61447,8.50489],[93.61447,8.5049],[93.61447,8.50494],[93.61446,8.50497],[93.61444,8.50501],[93.61442,8.50502],[93.61436,8.50508],[93.61434,8.5051],[93.61431,8.50511],[93.61429,8.50512],[93.61426,8.50511],[93.61426,8.50509],[93.61424,8.50508],[93.61423,8.50505],[93.61421,8.50503],[93.61421,8.505],[93.61421,8.50499],[93.61421,8.50497],[93.61422,8.50495],[93.61427,8.50491],[93.61429,8.50489],[93.6143,8.50488],[93.61431,8.50483],[93.61433,8.50482],[93.61436,8.50481],[93.61439,8.50482]]],[[[93.61462,8.50526],[93.61467,8.50533],[93.61465,8.50543],[93.61463,8.50557],[93.61459,8.50565],[93.6145,8.50565],[93.6144,8.5056],[93.61434,8.50551],[93.61434,8.50543],[93.61441,8.50534],[93.61448,8.50528],[93.61457,8.50524],[93.61462,8.50526]]],[[[93.61406,8.50548],[93.61409,8.5055],[93.61412,8.50551],[93.61415,8.50554],[93.61416,8.50558],[93.61416,8.50563],[93.61416,8.50566],[93.61414,8.5057],[93.61411,8.50572],[93.6141,8.50574],[93.61408,8.50575],[93.61405,8.50577],[93.61401,8.50579],[93.61398,8.50579],[93.61394,8.50579],[93.61391,8.50576],[93.6139,8.50573],[93.6139,8.5057],[93.61389,8.50567],[93.61389,8.50563],[93.6139,8.5056],[93.61391,8.50556],[93.61393,8.50553],[93.61394,8.50551],[93.61396,8.5055],[93.61399,8.50549],[93.61402,8.50548],[93.61406,8.50548]]],[[[93.6231,8.50494],[93.62304,8.50501],[93.62298,8.50506],[93.6229,8.50509],[93.62284,8.50508],[93.62282,8.50504],[93.62282,8.50501],[93.62283,8.50495],[93.62288,8.50489],[93.62293,8.50484],[93.62298,8.50481],[93.62305,8.50479],[93.62309,8.50478],[93.62313,8.5048],[93.62314,8.50483],[93.62314,8.50486],[93.62313,8.50486],[93.6231,8.50494]]],[[[93.62215,8.5079],[93.62212,8.50792],[93.62205,8.50793],[93.62194,8.50791],[93.62189,8.50789],[93.62185,8.50786],[93.62183,8.50782],[93.62184,8.50778],[93.62188,8.50774],[93.62194,8.50771],[93.622,8.50771],[93.62207,8.50773],[93.62212,8.50778],[93.62214,8.50781],[93.62215,8.50786],[93.62214,8.50786],[93.62215,8.5079]]],[[[93.60826,8.52239],[93.60832,8.52239],[93.60837,8.52242],[93.6084,8.52245],[93.60841,8.52248],[93.6084,8.52252],[93.60838,8.52257],[93.60829,8.52264],[93.6082,8.52268],[93.60815,8.52271],[93.60811,8.52274],[93.60807,8.52283],[93.60805,8.52285],[93.60803,8.52287],[93.608,8.52288],[93.60797,8.52287],[93.60794,8.52286],[93.60791,8.52283],[93.60789,8.5228],[93.60787,8.52276],[93.60786,8.52271],[93.60787,8.52267],[93.60789,8.52263],[93.60792,8.52259],[93.60804,8.52248],[93.6081,8.52244],[93.60815,8.52241],[93.60821,8.52239],[93.60826,8.52239]]],[[[93.60998,8.52297],[93.61001,8.52302],[93.61002,8.52315],[93.61,8.52322],[93.60999,8.5233],[93.60995,8.52335],[93.60988,8.52337],[93.60981,8.52334],[93.60977,8.52326],[93.60977,8.52315],[93.60979,8.52307],[93.60982,8.523],[93.60989,8.52296],[93.60998,8.52297]]],[[[93.61089,8.52628],[93.61093,8.5263],[93.61095,8.52636],[93.61095,8.52643],[93.6109,8.52652],[93.61082,8.52661],[93.61072,8.52677],[93.61069,8.52682],[93.61066,8.52685],[93.61063,8.52686],[93.61059,8.52685],[93.61058,8.52683],[93.61057,8.52678],[93.61059,8.52673],[93.61062,8.52668],[93.61066,8.52664],[93.61067,8.52661],[93.61068,8.52654],[93.61069,8.52647],[93.61073,8.52638],[93.61077,8.52631],[93.61081,8.52628],[93.61084,8.52627],[93.61089,8.52628]]],[[[93.60893,8.52803],[93.60889,8.52805],[93.60884,8.52806],[93.6088,8.52806],[93.60877,8.52806],[93.60874,8.52804],[93.60872,8.52802],[93.60872,8.52799],[93.60874,8.52795],[93.60882,8.52788],[93.60887,8.52787],[93.60898,8.52785],[93.60907,8.52784],[93.60911,8.52784],[93.60914,8.52785],[93.60917,8.52788],[93.6092,8.5279],[93.60921,8.52792],[93.60922,8.52794],[93.60922,8.52796],[93.60921,8.52798],[93.60919,8.528],[93.60915,8.52802],[93.6091,8.52803],[93.609,8.52803],[93.60896,8.52802],[93.60893,8.52803]]],[[[93.61966,8.5275],[93.6197,8.52757],[93.61971,8.52763],[93.61969,8.52768],[93.61965,8.52769],[93.61959,8.52768],[93.61951,8.52765],[93.61945,8.52757],[93.61941,8.52749],[93.61939,8.52742],[93.61939,8.52734],[93.61942,8.5273],[93.61945,8.52727],[93.61951,8.52727],[93.61955,8.5273],[93.61959,8.52734],[93.61962,8.52742],[93.61962,8.52741],[93.61966,8.5275]]],[[[93.61548,8.52945],[93.61545,8.52949],[93.61539,8.52955],[93.61532,8.52958],[93.61522,8.52956],[93.61513,8.5295],[93.61512,8.52945],[93.61512,8.52936],[93.61519,8.52929],[93.61528,8.52926],[93.61535,8.52925],[93.61541,8.52926],[93.61546,8.52928],[93.61549,8.52931],[93.61549,8.52938],[93.61549,8.52937],[93.61548,8.52945]]],[[[93.61371,8.53041],[93.61379,8.53043],[93.61383,8.53048],[93.61388,8.53056],[93.61389,8.53065],[93.61386,8.5307],[93.61381,8.53074],[93.61373,8.53077],[93.61369,8.53077],[93.61361,8.53072],[93.61357,8.53066],[93.61356,8.53057],[93.61357,8.53052],[93.6136,8.53046],[93.61364,8.53041],[93.61372,8.5304],[93.61371,8.53041]]],[[[93.613,8.53267],[93.61306,8.53269],[93.61311,8.53274],[93.61314,8.53279],[93.61314,8.53285],[93.61313,8.5329],[93.6131,8.53293],[93.61301,8.53294],[93.61295,8.53292],[93.6129,8.53289],[93.61286,8.53278],[93.61285,8.53278],[93.61286,8.53272],[93.61289,8.53269],[93.61294,8.53268],[93.613,8.53267]]],[[[93.61215,8.53674],[93.61219,8.53676],[93.61223,8.53683],[93.61224,8.5369],[93.61224,8.53696],[93.61222,8.53701],[93.61219,8.53711],[93.61218,8.53719],[93.61216,8.53723],[93.61212,8.53726],[93.61205,8.53728],[93.61199,8.53726],[93.61196,8.53722],[93.61196,8.53717],[93.61198,8.53712],[93.61201,8.53707],[93.61204,8.53694],[93.61205,8.53688],[93.61207,8.53678],[93.6121,8.53674],[93.61215,8.53674]]],[[[93.60247,8.53861],[93.60251,8.53865],[93.60255,8.53869],[93.60257,8.53875],[93.60259,8.53881],[93.60261,8.53887],[93.60266,8.5389],[93.6027,8.53892],[93.60279,8.53892],[93.60284,8.53892],[93.6029,8.53894],[93.60294,8.53898],[93.60295,8.53903],[93.60294,8.53909],[93.6029,8.53914],[93.60285,8.53917],[93.60266,8.53924],[93.60262,8.53926],[93.60257,8.5393],[93.60251,8.53932],[93.60238,8.53934],[93.60233,8.53931],[93.60229,8.53927],[93.60227,8.53923],[93.60226,8.53917],[93.60226,8.53911],[93.60229,8.53907],[93.60234,8.53903],[93.60236,8.53897],[93.60236,8.53892],[93.60234,8.53886],[93.60233,8.53876],[93.60233,8.5387],[93.60236,8.53865],[93.60239,8.53863],[93.60243,8.53861],[93.60247,8.53861]]],[[[93.61258,8.53844],[93.61257,8.53851],[93.61255,8.53863],[93.61254,8.5387],[93.61251,8.53873],[93.61247,8.53875],[93.61241,8.53875],[93.61236,8.53874],[93.61231,8.53871],[93.61229,8.53866],[93.6123,8.5386],[93.61241,8.53841],[93.61241,8.53842],[93.61244,8.53837],[93.61248,8.53832],[93.61251,8.53831],[93.61256,8.53831],[93.61258,8.53832],[93.61259,8.53835],[93.61259,8.5384],[93.61258,8.53844]]],[[[93.60054,8.54963],[93.60058,8.54965],[93.60061,8.54969],[93.60063,8.54972],[93.60063,8.54981],[93.60061,8.54989],[93.60058,8.54992],[93.60054,8.54994],[93.6005,8.54995],[93.60044,8.54995],[93.60041,8.54993],[93.60037,8.5499],[93.60035,8.54987],[93.60034,8.54983],[93.60033,8.54979],[93.60032,8.54975],[93.60033,8.54971],[93.60036,8.54968],[93.6004,8.54965],[93.60044,8.54963],[93.60049,8.54962],[93.60054,8.54963]]],[[[93.61013,8.54935],[93.61018,8.54939],[93.61023,8.54945],[93.61028,8.54948],[93.61043,8.54951],[93.61047,8.54956],[93.61049,8.54963],[93.61049,8.5497],[93.61045,8.54974],[93.61038,8.54978],[93.6103,8.54984],[93.61021,8.54995],[93.61015,8.55001],[93.61005,8.55003],[93.60998,8.54998],[93.60991,8.5499],[93.6099,8.54976],[93.6099,8.54965],[93.60993,8.54955],[93.60995,8.54942],[93.61001,8.54935],[93.61008,8.54933],[93.61013,8.54935]]],[[[93.60938,8.55053],[93.60945,8.55061],[93.60952,8.55069],[93.60954,8.55077],[93.60956,8.55082],[93.60954,8.55089],[93.60948,8.55097],[93.60945,8.55101],[93.60941,8.55107],[93.60938,8.55111],[93.60934,8.55115],[93.60931,8.55114],[93.60927,8.55111],[93.60924,8.55103],[93.60925,8.55089],[93.60924,8.55081],[93.60919,8.55069],[93.60919,8.55064],[93.60919,8.55059],[93.60921,8.55055],[93.60926,8.55052],[93.60932,8.55051],[93.60938,8.55053]]],[[[93.5999,8.55791],[93.59993,8.55793],[93.59991,8.55799],[93.59989,8.55804],[93.59985,8.55805],[93.59979,8.55805],[93.59976,8.55803],[93.59978,8.55796],[93.59983,8.55791],[93.59986,8.5579],[93.5999,8.55791]]],[[[93.59998,8.5582],[93.60002,8.55822],[93.60003,8.55827],[93.59991,8.5584],[93.59984,8.55845],[93.5998,8.55847],[93.59973,8.55845],[93.59967,8.55839],[93.59967,8.55833],[93.59972,8.55827],[93.59981,8.55822],[93.59989,8.5582],[93.59998,8.5582]]],[[[93.60007,8.55853],[93.60008,8.55857],[93.60005,8.55861],[93.60001,8.55865],[93.59996,8.55866],[93.59991,8.55864],[93.59991,8.5586],[93.59993,8.55856],[93.60004,8.5585],[93.60007,8.55853]]],[[[93.59953,8.55844],[93.59955,8.55846],[93.59957,8.55847],[93.59958,8.55849],[93.59959,8.55851],[93.59959,8.55854],[93.59959,8.55865],[93.59959,8.55867],[93.59957,8.5587],[93.59956,8.55871],[93.59954,8.55873],[93.59951,8.55873],[93.59949,8.55872],[93.59947,8.55871],[93.59946,8.55869],[93.59945,8.55867],[93.59943,8.55862],[93.59943,8.5586],[93.59942,8.55857],[93.59942,8.55854],[93.59943,8.5585],[93.59945,8.55847],[93.59946,8.55845],[93.5995,8.55844],[93.59953,8.55844]]],[[[93.61114,8.55811],[93.6112,8.55821],[93.61122,8.55833],[93.61118,8.55838],[93.61112,8.55838],[93.611,8.5583],[93.61092,8.55815],[93.61094,8.55807],[93.61098,8.55804],[93.61105,8.55806],[93.61105,8.55805],[93.61114,8.55811]]],[[[93.61036,8.55831],[93.61039,8.55834],[93.61042,8.55839],[93.61045,8.55843],[93.61045,8.55848],[93.61045,8.55855],[93.61044,8.55861],[93.61042,8.55865],[93.61039,8.55869],[93.61034,8.55871],[93.61026,8.55871],[93.61022,8.55867],[93.61019,8.55864],[93.61019,8.55851],[93.61022,8.55843],[93.61023,8.55839],[93.61026,8.55834],[93.61028,8.55831],[93.61032,8.5583],[93.61036,8.55831]]],[[[93.61099,8.55835],[93.61103,8.55839],[93.61106,8.55843],[93.61108,8.55847],[93.61109,8.55853],[93.61108,8.5586],[93.61107,8.55865],[93.61106,8.5587],[93.61103,8.55874],[93.61098,8.55876],[93.6109,8.55876],[93.61085,8.55872],[93.61083,8.55868],[93.61083,8.55855],[93.61086,8.55848],[93.61087,8.55844],[93.61089,8.55839],[93.61092,8.55835],[93.61096,8.55835],[93.61099,8.55835]]],[[[93.60075,8.56148],[93.60082,8.5615],[93.60084,8.56152],[93.60086,8.56154],[93.60087,8.56157],[93.60087,8.56158],[93.60085,8.56165],[93.60086,8.56169],[93.60086,8.56171],[93.60085,8.56172],[93.60082,8.56172],[93.6008,8.5617],[93.60077,8.56168],[93.60072,8.56162],[93.6007,8.5616],[93.60068,8.56158],[93.60065,8.56155],[93.60063,8.56153],[93.60063,8.56151],[93.60064,8.5615],[93.60067,8.56148],[93.60072,8.56148],[93.60075,8.56148]]],[[[93.6006,8.56165],[93.60062,8.56167],[93.60063,8.56168],[93.60063,8.56172],[93.6006,8.56181],[93.60059,8.56183],[93.60059,8.56186],[93.60056,8.5619],[93.60054,8.56192],[93.60052,8.56193],[93.6005,8.56194],[93.60048,8.56194],[93.60046,8.56194],[93.60044,8.56192],[93.60043,8.56189],[93.60043,8.56185],[93.60044,8.56183],[93.60045,8.56181],[93.60049,8.56173],[93.6005,8.56171],[93.60054,8.56167],[93.60056,8.56166],[93.60058,8.56165],[93.6006,8.56165]]],[[[93.61083,8.56084],[93.61082,8.56089],[93.61079,8.56094],[93.61073,8.56098],[93.61065,8.56098],[93.61059,8.56093],[93.61057,8.56087],[93.61057,8.56079],[93.61059,8.56072],[93.61064,8.56067],[93.6107,8.56065],[93.61076,8.56066],[93.61079,8.56067],[93.61081,8.5607],[93.61083,8.56075],[93.61082,8.56075],[93.61083,8.56084]]],[[[93.60126,8.56312],[93.60136,8.56324],[93.60142,8.56334],[93.60145,8.56341],[93.60143,8.56345],[93.60137,8.56346],[93.60122,8.56345],[93.6011,8.56339],[93.601,8.56329],[93.60101,8.56321],[93.60105,8.56314],[93.60113,8.56307],[93.60126,8.56312]]],[[[93.60069,8.56378],[93.60054,8.56396],[93.6005,8.564],[93.60047,8.564],[93.60044,8.564],[93.60039,8.56397],[93.60037,8.56394],[93.60037,8.56391],[93.6004,8.56386],[93.60043,8.56382],[93.60047,8.56371],[93.60048,8.56367],[93.60045,8.56357],[93.6004,8.56349],[93.60036,8.56341],[93.60037,8.56338],[93.60041,8.5633],[93.60049,8.56327],[93.60058,8.56327],[93.60061,8.56328],[93.60073,8.56342],[93.60077,8.56343],[93.60083,8.56343],[93.60091,8.56345],[93.60094,8.56347],[93.60099,8.56352],[93.60099,8.56356],[93.60099,8.56362],[93.60098,8.56366],[93.60098,8.5637],[93.60096,8.56373],[93.60093,8.56376],[93.60088,8.56378],[93.60079,8.56377],[93.60071,8.56377],[93.60069,8.56378]]],[[[93.60319,8.56336],[93.60319,8.56346],[93.60308,8.5637],[93.60297,8.56386],[93.60287,8.56402],[93.60277,8.56409],[93.6027,8.56392],[93.60277,8.56385],[93.60291,8.56374],[93.60296,8.56365],[93.60296,8.56347],[93.603,8.56334],[93.60319,8.56336]]],[[[93.60305,8.56465],[93.60307,8.56469],[93.60308,8.56474],[93.60305,8.56481],[93.60298,8.56486],[93.6029,8.56487],[93.60283,8.56486],[93.60279,8.56482],[93.60278,8.56476],[93.60284,8.5647],[93.60292,8.56467],[93.603,8.56465],[93.60305,8.56465]]],[[[93.61054,8.56387],[93.61054,8.56393],[93.61052,8.56402],[93.61047,8.56418],[93.61042,8.56423],[93.61037,8.56427],[93.6103,8.56429],[93.61022,8.56427],[93.61017,8.56424],[93.61016,8.56419],[93.61015,8.56414],[93.61017,8.56409],[93.61022,8.56404],[93.61031,8.564],[93.61032,8.56397],[93.61032,8.56392],[93.61032,8.56381],[93.61034,8.56374],[93.61036,8.56372],[93.61042,8.56368],[93.61046,8.56368],[93.61051,8.56373],[93.61052,8.56379],[93.61052,8.56379],[93.61054,8.56387]]],[[[93.6033,8.56542],[93.60335,8.56545],[93.60338,8.5655],[93.60337,8.56556],[93.60334,8.56562],[93.60328,8.56567],[93.60326,8.56571],[93.60323,8.56584],[93.60315,8.56587],[93.60308,8.56585],[93.60305,8.56575],[93.60305,8.56569],[93.60311,8.56561],[93.60318,8.56545],[93.60324,8.56542],[93.6033,8.56542]]],[[[93.61118,8.56614],[93.61117,8.5662],[93.61115,8.56625],[93.61111,8.56628],[93.61105,8.56627],[93.611,8.56622],[93.61097,8.56614],[93.611,8.56608],[93.61103,8.56603],[93.61108,8.56601],[93.61112,8.56601],[93.61114,8.56604],[93.61117,8.56608],[93.61116,8.56608],[93.61118,8.56614]]],[[[93.60345,8.56679],[93.60349,8.56684],[93.60352,8.56692],[93.6035,8.56697],[93.60346,8.56702],[93.60338,8.56703],[93.60328,8.56701],[93.60321,8.56696],[93.60317,8.56689],[93.6032,8.56682],[93.6033,8.56677],[93.60342,8.56675],[93.60345,8.56679]]],[[[93.60299,8.56709],[93.60303,8.56713],[93.60303,8.56722],[93.60299,8.56731],[93.60289,8.56734],[93.6028,8.56732],[93.60278,8.56724],[93.60287,8.56712],[93.60294,8.5671],[93.60299,8.56709]]],[[[93.6073,8.56995],[93.60734,8.57005],[93.60734,8.5701],[93.60732,8.57016],[93.60729,8.5702],[93.60727,8.57023],[93.60724,8.57024],[93.60722,8.57024],[93.60716,8.57022],[93.60714,8.57017],[93.60713,8.57011],[93.60714,8.57005],[93.60716,8.56999],[93.60721,8.56995],[93.60726,8.56993],[93.6073,8.56995]]],[[[93.60759,8.57025],[93.60765,8.57027],[93.60768,8.57029],[93.60768,8.57034],[93.60768,8.57038],[93.60767,8.5704],[93.60763,8.57044],[93.60758,8.57047],[93.60755,8.5705],[93.6075,8.57051],[93.60745,8.57051],[93.60741,8.57047],[93.60739,8.57043],[93.60739,8.57038],[93.60742,8.57033],[93.60747,8.57028],[93.60753,8.57026],[93.60759,8.57025]]],[[[93.60762,8.57072],[93.60763,8.57072],[93.60772,8.57078],[93.60775,8.57084],[93.60774,8.57089],[93.60772,8.57092],[93.60766,8.57094],[93.60759,8.57094],[93.60754,8.57093],[93.6075,8.57088],[93.6075,8.57078],[93.60754,8.57072],[93.60757,8.57071],[93.60762,8.57072]]],[[[93.60719,8.57321],[93.60721,8.57323],[93.60722,8.5733],[93.60721,8.57337],[93.60718,8.57344],[93.60714,8.57349],[93.60707,8.57352],[93.60701,8.5735],[93.60696,8.57346],[93.60695,8.57341],[93.60695,8.57336],[93.60698,8.5733],[93.60708,8.57322],[93.60708,8.57321],[93.60711,8.5732],[93.60714,8.57319],[93.60719,8.57321]]],[[[93.60261,8.574],[93.60263,8.57403],[93.60263,8.57408],[93.60262,8.57412],[93.60258,8.57415],[93.60252,8.57418],[93.60246,8.57418],[93.6024,8.57416],[93.60236,8.57412],[93.60231,8.57406],[93.60228,8.57399],[93.60229,8.574],[93.60226,8.57394],[93.60226,8.5739],[93.60228,8.57387],[93.60233,8.57386],[93.60239,8.57388],[93.60256,8.57396],[93.60261,8.574]]],[[[93.60653,8.57369],[93.60657,8.57372],[93.60659,8.57375],[93.6066,8.57378],[93.60659,8.57382],[93.60657,8.57387],[93.60654,8.57391],[93.60649,8.57394],[93.60645,8.57394],[93.60639,8.5739],[93.60637,8.57385],[93.60637,8.5738],[93.6064,8.57375],[93.60644,8.57372],[93.60644,8.57372],[93.60648,8.57369],[93.60653,8.57369]]],[[[93.60201,8.5741],[93.60209,8.57412],[93.60212,8.57416],[93.60212,8.57423],[93.60207,8.57428],[93.60203,8.57435],[93.60194,8.57439],[93.60181,8.57439],[93.60175,8.57434],[93.60174,8.57427],[93.60178,8.57421],[93.60184,8.57415],[93.60192,8.5741],[93.60201,8.5741]]],[[[93.60306,8.57473],[93.60304,8.57475],[93.60299,8.57477],[93.60293,8.57477],[93.60287,8.57473],[93.60288,8.57473],[93.60284,8.57468],[93.60283,8.57465],[93.60284,8.57458],[93.60289,8.57455],[93.60295,8.57453],[93.60301,8.57457],[93.60304,8.57461],[93.60307,8.57467],[93.60306,8.57473]]],[[[93.60581,8.57446],[93.60577,8.57452],[93.60571,8.57453],[93.60565,8.57451],[93.6056,8.57445],[93.60561,8.57445],[93.60558,8.57441],[93.60558,8.57437],[93.6056,8.57432],[93.60563,8.57429],[93.60569,8.57428],[93.60575,8.57429],[93.60579,8.57434],[93.60581,8.5744],[93.60581,8.57446]]],[[[93.60561,8.57475],[93.60559,8.57477],[93.60555,8.5748],[93.60549,8.5748],[93.60542,8.57475],[93.60543,8.57476],[93.60539,8.57471],[93.60538,8.57467],[93.6054,8.57461],[93.60545,8.57457],[93.6055,8.57456],[93.60556,8.57459],[93.6056,8.57463],[93.60562,8.5747],[93.60561,8.57475]]],[[[93.60294,8.57504],[93.60297,8.57506],[93.60297,8.5751],[93.60294,8.57513],[93.6029,8.57517],[93.60286,8.57519],[93.60282,8.57519],[93.60279,8.57515],[93.60279,8.5751],[93.6028,8.57507],[93.60282,8.57506],[93.60286,8.57503],[93.6029,8.57503],[93.60294,8.57504]]],[[[93.60522,8.575],[93.60525,8.57502],[93.60525,8.57505],[93.60522,8.57509],[93.60518,8.57513],[93.60514,8.57515],[93.60511,8.57515],[93.60507,8.57511],[93.60507,8.57506],[93.60508,8.57503],[93.6051,8.57502],[93.60514,8.57499],[93.60518,8.57499],[93.60522,8.575]]],[[[93.60288,8.57542],[93.60289,8.57543],[93.6029,8.57545],[93.6029,8.57553],[93.60288,8.57555],[93.60284,8.57557],[93.60282,8.57556],[93.60279,8.57552],[93.60279,8.57548],[93.6028,8.57544],[93.60283,8.57542],[93.60286,8.57541],[93.60288,8.57542]]],[[[93.60281,8.57617],[93.60283,8.57621],[93.60282,8.57628],[93.60274,8.57639],[93.60272,8.57643],[93.60271,8.57645],[93.60268,8.57645],[93.60264,8.57638],[93.60264,8.57632],[93.60267,8.57625],[93.60271,8.57619],[93.60276,8.57616],[93.60281,8.57617]]],[[[93.60265,8.57645],[93.60267,8.57649],[93.60266,8.57656],[93.60262,8.57661],[93.6026,8.57666],[93.60254,8.57673],[93.60252,8.57673],[93.60249,8.57666],[93.60248,8.5766],[93.6025,8.57653],[93.60254,8.57647],[93.60259,8.57644],[93.60265,8.57645]]],[[[93.60592,8.57372],[93.60282,8.57723],[93.60307,8.57435],[93.60131,8.57302],[93.6033,8.5691],[93.60267,8.56795],[93.6045,8.566],[93.60335,8.56527],[93.60337,8.56341],[93.6014,8.56244],[93.60104,8.56137],[93.60169,8.56048],[93.60045,8.55838],[93.60146,8.55612],[93.60004,8.55379],[93.60183,8.55023],[93.60208,8.5478],[93.60021,8.54497],[93.60281,8.54228],[93.60334,8.53938],[93.60653,8.53849],[93.60778,8.53607],[93.60689,8.53468],[93.60711,8.5332],[93.60932,8.52961],[93.60875,8.52851],[93.61079,8.52871],[93.61105,8.52705],[93.61207,8.52632],[93.61197,8.52439],[93.61024,8.52248],[93.61357,8.51924],[93.61424,8.514],[93.61545,8.51188],[93.615,8.50133],[93.61636,8.50068],[93.61392,8.49859],[93.615,8.49615],[93.61645,8.49502],[93.61598,8.49401],[93.61685,8.49177],[93.61868,8.4906],[93.61921,8.48661],[93.61801,8.48499],[93.61689,8.48564],[93.61434,8.48287],[93.6115,8.48304],[93.60944,8.48147],[93.60956,8.47954],[93.61075,8.47792],[93.60986,8.47514],[93.61199,8.47421],[93.61227,8.47471],[93.6128,8.47359],[93.61241,8.47107],[93.61131,8.47117],[93.61249,8.46952],[93.61192,8.46886],[93.61325,8.46647],[93.61377,8.46233],[93.61033,8.45761],[93.60806,8.45675],[93.61064,8.45353],[93.61052,8.45147],[93.60921,8.45116],[93.61035,8.45059],[93.61019,8.44655],[93.60844,8.44619],[93.60692,8.4446],[93.60746,8.44364],[93.60895,8.44343],[93.60989,8.44115],[93.61007,8.43845],[93.60945,8.43692],[93.60861,8.4375],[93.60833,8.43596],[93.61006,8.43388],[93.61202,8.42641],[93.61141,8.42398],[93.61301,8.42323],[93.61471,8.42498],[93.61772,8.43394],[93.61774,8.43789],[93.6162,8.44132],[93.6163,8.44202],[93.61757,8.44216],[93.61256,8.44954],[93.61459,8.45508],[93.61538,8.45512],[93.61515,8.45673],[93.61578,8.45662],[93.61565,8.46398],[93.61719,8.46808],[93.62117,8.47088],[93.62643,8.47145],[93.62898,8.46666],[93.63142,8.46611],[93.63235,8.46772],[93.63022,8.47444],[93.63083,8.4754],[93.63033,8.47904],[93.6291,8.4808],[93.63009,8.48432],[93.62813,8.48832],[93.62821,8.49192],[93.62656,8.49222],[93.62547,8.49436],[93.62573,8.49661],[93.62724,8.49853],[93.62147,8.50762],[93.62239,8.50964],[93.62596,8.51043],[93.62748,8.51261],[93.62693,8.51461],[93.62548,8.51548],[93.62444,8.51721],[93.62477,8.51803],[93.62293,8.52017],[93.62322,8.52152],[93.62454,8.52202],[93.62441,8.52308],[93.62554,8.52369],[93.62424,8.52549],[93.62201,8.52503],[93.62079,8.52655],[93.61897,8.52647],[93.61889,8.52745],[93.6147,8.52863],[93.61242,8.53173],[93.61266,8.53251],[93.61167,8.53254],[93.61271,8.53558],[93.61157,8.53749],[93.61212,8.53858],[93.61047,8.53997],[93.61127,8.54116],[93.61101,8.54264],[93.60921,8.54318],[93.60977,8.54542],[93.60873,8.5462],[93.60867,8.54755],[93.60993,8.54905],[93.60838,8.55202],[93.61017,8.55775],[93.61017,8.56589],[93.60898,8.56623],[93.60899,8.56864],[93.60724,8.5689],[93.60742,8.57279],[93.60592,8.57372]]],[[[93.59851,8.58287],[93.59851,8.58298],[93.59846,8.58307],[93.5984,8.58314],[93.59827,8.58321],[93.59817,8.58321],[93.59781,8.58311],[93.59776,8.58304],[93.59755,8.58293],[93.59726,8.58286],[93.59709,8.58289],[93.59672,8.58307],[93.59663,8.58309],[93.59652,8.58305],[93.59651,8.583],[93.59653,8.58265],[93.59639,8.58262],[93.59632,8.58264],[93.59627,8.58263],[93.59619,8.5826],[93.59617,8.58255],[93.59622,8.58236],[93.59662,8.58157],[93.59706,8.58109],[93.59738,8.58078],[93.59761,8.58049],[93.5977,8.58013],[93.59776,8.58003],[93.5978,8.57999],[93.59788,8.57996],[93.59808,8.57995],[93.59821,8.58],[93.59825,8.58004],[93.59826,8.58041],[93.59834,8.58055],[93.59838,8.5808],[93.59837,8.58099],[93.59841,8.58115],[93.59856,8.58148],[93.59855,8.5817],[93.59849,8.58178],[93.59847,8.58224],[93.59851,8.58287]]],[[[92.78603,9.245],[92.785,9.24716],[92.77803,9.25274],[92.77523,9.25821],[92.77143,9.25882],[92.77088,9.25744],[92.77222,9.25229],[92.77572,9.24575],[92.77333,9.24056],[92.77131,9.24021],[92.77209,9.24125],[92.76997,9.24054],[92.76957,9.23811],[92.77267,9.2376],[92.77246,9.23338],[92.77101,9.23056],[92.76816,9.22852],[92.76767,9.22573],[92.76865,9.22189],[92.76358,9.21739],[92.76372,9.21583],[92.76295,9.21582],[92.76324,9.21725],[92.75756,9.21641],[92.755,9.21797],[92.74661,9.21662],[92.74579,9.21409],[92.74414,9.21387],[92.7395,9.21838],[92.73314,9.21695],[92.72931,9.22035],[92.72496,9.22138],[92.72172,9.2206],[92.71775,9.21456],[92.7166,9.20921],[92.71751,9.19878],[92.71614,9.19637],[92.71628,9.18991],[92.71783,9.18438],[92.71749,9.17255],[92.71562,9.16702],[92.71444,9.1544],[92.71541,9.15331],[92.71563,9.14785],[92.71897,9.14233],[92.72211,9.13964],[92.72316,9.13551],[92.72169,9.13394],[92.72732,9.1249],[92.74061,9.12446],[92.75302,9.12798],[92.75569,9.12588],[92.75978,9.12529],[92.76554,9.12712],[92.76699,9.12885],[92.76699,9.12742],[92.76808,9.12766],[92.77584,9.12155],[92.78484,9.11872],[92.79569,9.1209],[92.79907,9.12059],[92.80073,9.12121],[92.80227,9.12335],[92.80389,9.12322],[92.8062,9.12491],[92.80707,9.12389],[92.81069,9.12703],[92.81074,9.1281],[92.81151,9.12748],[92.81195,9.12947],[92.81059,9.12845],[92.80973,9.13125],[92.81201,9.13255],[92.81409,9.13555],[92.81924,9.13755],[92.82558,9.13699],[92.8273,9.13884],[92.82628,9.1524],[92.83,9.16179],[92.83056,9.16817],[92.82987,9.17196],[92.82782,9.17342],[92.82675,9.17793],[92.82338,9.18062],[92.8245,9.18973],[92.81767,9.21199],[92.81138,9.22117],[92.798,9.23272],[92.78983,9.24268],[92.78603,9.245]]],[[[92.51836,10.90084],[92.50918,10.89924],[92.50709,10.89729],[92.50583,10.89907],[92.50296,10.89772],[92.50737,10.89295],[92.50614,10.89011],[92.50871,10.88212],[92.51196,10.88335],[92.51497,10.8879],[92.51581,10.88658],[92.51105,10.8806],[92.51788,10.87741],[92.5171,10.87503],[92.51703,10.87747],[92.51297,10.8789],[92.51349,10.87559],[92.51045,10.86986],[92.50289,10.87325],[92.49798,10.87119],[92.5012,10.86734],[92.50051,10.86375],[92.50798,10.86282],[92.50034,10.86315],[92.50045,10.86754],[92.49586,10.87071],[92.49375,10.86948],[92.49061,10.85964],[92.48784,10.85964],[92.48593,10.86179],[92.4802,10.86048],[92.47682,10.86181],[92.48287,10.86089],[92.48614,10.86215],[92.48775,10.86012],[92.49014,10.85997],[92.49322,10.86836],[92.49145,10.87147],[92.49356,10.8701],[92.50242,10.8738],[92.50935,10.87084],[92.51104,10.87181],[92.51108,10.87875],[92.50765,10.88106],[92.50656,10.88003],[92.50214,10.88199],[92.50687,10.88083],[92.50423,10.89348],[92.49653,10.89705],[92.48738,10.88975],[92.48618,10.88297],[92.48162,10.88259],[92.48209,10.8769],[92.47929,10.87306],[92.47089,10.87356],[92.4692,10.86917],[92.46351,10.86624],[92.46084,10.8688],[92.45451,10.86686],[92.45334,10.86435],[92.45415,10.861],[92.45849,10.85813],[92.46025,10.85394],[92.45729,10.84174],[92.4541,10.84007],[92.45026,10.84226],[92.44625,10.8411],[92.44556,10.83744],[92.44215,10.83447],[92.44084,10.83049],[92.43331,10.82406],[92.42549,10.82681],[92.42606,10.81719],[92.41689,10.79572],[92.40431,10.78443],[92.40084,10.78359],[92.39676,10.78698],[92.39563,10.78631],[92.39722,10.78351],[92.39566,10.77485],[92.40409,10.7759],[92.40839,10.77883],[92.4106,10.77829],[92.40843,10.77843],[92.40416,10.77536],[92.39562,10.77395],[92.39412,10.77628],[92.39492,10.77801],[92.39391,10.77772],[92.39339,10.77522],[92.39687,10.76314],[92.40259,10.76904],[92.41038,10.76437],[92.41403,10.77157],[92.41933,10.77258],[92.41413,10.77099],[92.4092,10.76318],[92.40876,10.75872],[92.41029,10.75761],[92.41204,10.76061],[92.41408,10.76059],[92.41573,10.76307],[92.41664,10.76202],[92.41206,10.76012],[92.41051,10.75728],[92.40683,10.75858],[92.40841,10.7553],[92.40609,10.75825],[92.40867,10.75965],[92.40838,10.76399],[92.40348,10.76836],[92.39595,10.76049],[92.39511,10.75565],[92.39819,10.75452],[92.39937,10.75161],[92.39592,10.74927],[92.398,10.74851],[92.39909,10.74419],[92.39764,10.74813],[92.39521,10.74895],[92.39891,10.75162],[92.39448,10.75571],[92.3955,10.76134],[92.3924,10.77521],[92.39299,10.77818],[92.39608,10.78089],[92.39503,10.78559],[92.39327,10.78611],[92.39075,10.78306],[92.38653,10.78543],[92.38639,10.79394],[92.38368,10.79553],[92.37307,10.78274],[92.37177,10.77389],[92.37773,10.77027],[92.38055,10.76323],[92.37761,10.75418],[92.38035,10.73029],[92.38328,10.72269],[92.37889,10.70829],[92.38106,10.69757],[92.37977,10.69725],[92.38147,10.69064],[92.38105,10.68432],[92.38366,10.67649],[92.38136,10.67028],[92.38834,10.66775],[92.39347,10.66869],[92.40112,10.65949],[92.41401,10.6347],[92.41912,10.61579],[92.4185,10.61284],[92.41213,10.60707],[92.40983,10.58442],[92.40459,10.57807],[92.39939,10.57575],[92.39772,10.57214],[92.39842,10.56856],[92.39377,10.56573],[92.3914,10.55936],[92.39111,10.55773],[92.39384,10.55601],[92.39078,10.55457],[92.38209,10.54398],[92.38144,10.53842],[92.38341,10.53708],[92.38452,10.53329],[92.38765,10.53153],[92.39549,10.5298],[92.40259,10.53067],[92.41354,10.53815],[92.4202,10.54847],[92.43505,10.54891],[92.45852,10.53902],[92.47089,10.52581],[92.47685,10.52077],[92.4785,10.52137],[92.48153,10.51747],[92.48844,10.51538],[92.49343,10.51652],[92.49353,10.51437],[92.50005,10.51131],[92.51326,10.51084],[92.52396,10.51454],[92.52629,10.51747],[92.53058,10.51642],[92.53294,10.51855],[92.53645,10.5258],[92.5341,10.52908],[92.53916,10.53578],[92.54287,10.53816],[92.54648,10.55307],[92.55362,10.557],[92.56989,10.57879],[92.56964,10.58376],[92.56495,10.58825],[92.55837,10.58899],[92.55281,10.59246],[92.54232,10.59478],[92.54003,10.60426],[92.54139,10.61646],[92.53989,10.61752],[92.53852,10.61491],[92.54069,10.62216],[92.54161,10.61725],[92.5457,10.62717],[92.5537,10.64004],[92.56951,10.65371],[92.57765,10.65314],[92.58107,10.65927],[92.58235,10.65803],[92.57903,10.66002],[92.57701,10.66658],[92.57732,10.67357],[92.58271,10.67855],[92.58026,10.68081],[92.58331,10.67897],[92.58849,10.68015],[92.59407,10.67658],[92.5981,10.67918],[92.59834,10.69176],[92.59715,10.69362],[92.59953,10.69917],[92.59938,10.70577],[92.59064,10.71909],[92.5889,10.73382],[92.58336,10.74418],[92.58678,10.77046],[92.58614,10.77169],[92.58316,10.7704],[92.58244,10.77136],[92.58737,10.77375],[92.58715,10.78811],[92.58492,10.79216],[92.57746,10.79855],[92.57594,10.80537],[92.57124,10.81056],[92.56892,10.81083],[92.5617,10.80452],[92.56153,10.80284],[92.56467,10.79673],[92.57132,10.79584],[92.57922,10.78544],[92.57248,10.79169],[92.57102,10.79538],[92.56378,10.7954],[92.56176,10.79696],[92.56084,10.79628],[92.56269,10.79369],[92.56052,10.79575],[92.56158,10.79735],[92.56412,10.7961],[92.56142,10.80142],[92.55994,10.79991],[92.5611,10.79881],[92.55959,10.79917],[92.56051,10.80106],[92.55876,10.80917],[92.55267,10.80813],[92.55266,10.80366],[92.5516,10.80352],[92.55236,10.80531],[92.54855,10.80963],[92.55086,10.80697],[92.55285,10.80879],[92.5585,10.80979],[92.56116,10.80539],[92.56743,10.81027],[92.56366,10.81611],[92.5591,10.8155],[92.56385,10.81858],[92.56356,10.82337],[92.56598,10.82948],[92.55925,10.8459],[92.55917,10.85121],[92.56223,10.85756],[92.56248,10.86217],[92.55774,10.86884],[92.55044,10.87416],[92.54257,10.88393],[92.53377,10.88997],[92.53304,10.88703],[92.52934,10.88469],[92.53166,10.88269],[92.53274,10.87707],[92.5348,10.87616],[92.53187,10.87237],[92.5325,10.87122],[92.53019,10.87113],[92.5299,10.86887],[92.53151,10.86717],[92.53685,10.86734],[92.53963,10.86497],[92.54078,10.86753],[92.54146,10.86556],[92.53906,10.86382],[92.54255,10.85989],[92.54088,10.85893],[92.54206,10.86042],[92.53722,10.86627],[92.52954,10.86708],[92.52815,10.87067],[92.53142,10.87627],[92.52881,10.87887],[92.52807,10.88491],[92.53219,10.88729],[92.53288,10.89086],[92.51836,10.90084]]],[[[92.62268,10.92579],[92.62258,10.92588],[92.6223,10.92572],[92.62211,10.9255],[92.62187,10.92561],[92.62136,10.9255],[92.62074,10.92509],[92.62076,10.92469],[92.62123,10.92428],[92.62186,10.9241],[92.6221,10.9236],[92.62231,10.92344],[92.62293,10.92343],[92.62297,10.92316],[92.62327,10.92324],[92.6236,10.92314],[92.6234,10.92267],[92.62339,10.9224],[92.62342,10.92234],[92.6238,10.9222],[92.6242,10.9224],[92.62454,10.92329],[92.62389,10.92409],[92.62341,10.92515],[92.62268,10.92579]]],[[[92.61759,10.93359],[92.60848,10.93961],[92.60767,10.93974],[92.60561,10.93918],[92.60393,10.93799],[92.60325,10.93736],[92.60264,10.93703],[92.60201,10.93628],[92.60253,10.93528],[92.60339,10.93443],[92.60367,10.93387],[92.60431,10.93361],[92.60458,10.93424],[92.60471,10.93388],[92.6055,10.93294],[92.60504,10.93302],[92.60476,10.93284],[92.60533,10.93142],[92.60634,10.9302],[92.60876,10.92802],[92.60977,10.92722],[92.61147,10.92642],[92.61195,10.92644],[92.61234,10.92662],[92.61263,10.92631],[92.61348,10.92597],[92.6139,10.92649],[92.61553,10.92617],[92.61597,10.92632],[92.61625,10.92705],[92.61667,10.92691],[92.61698,10.92711],[92.61784,10.92681],[92.61912,10.92684],[92.61972,10.92739],[92.62029,10.92677],[92.62053,10.92671],[92.62095,10.92684],[92.62134,10.9272],[92.6216,10.92768],[92.62155,10.9282],[92.62133,10.92856],[92.62093,10.92875],[92.62085,10.9292],[92.62061,10.92951],[92.62047,10.93072],[92.61975,10.93112],[92.61957,10.93108],[92.61909,10.93205],[92.61759,10.93359]]],[[[92.60355,10.94131],[92.60234,10.94162],[92.60161,10.9416],[92.60125,10.94142],[92.60107,10.94112],[92.6011,10.9411],[92.60163,10.9411],[92.60169,10.94093],[92.60195,10.9409],[92.60206,10.94066],[92.60247,10.94068],[92.60278,10.94066],[92.6036,10.94021],[92.60391,10.94029],[92.60418,10.94003],[92.60455,10.93985],[92.60441,10.93964],[92.60467,10.93933],[92.6051,10.93969],[92.60581,10.93992],[92.60605,10.94018],[92.60619,10.94062],[92.60544,10.94084],[92.60505,10.94086],[92.60484,10.94076],[92.60462,10.94091],[92.60455,10.94122],[92.60425,10.94099],[92.60355,10.94131]]],[[[92.60839,10.94209],[92.60844,10.94219],[92.60843,10.94252],[92.60797,10.94262],[92.60761,10.94256],[92.60721,10.9422],[92.60734,10.94194],[92.60748,10.94182],[92.60781,10.94176],[92.60839,10.94209]]],[[[92.60672,10.94283],[92.60653,10.94291],[92.60652,10.94315],[92.6065,10.94313],[92.60591,10.94318],[92.6058,10.94284],[92.60607,10.94232],[92.60622,10.94232],[92.60637,10.94245],[92.60652,10.94234],[92.60661,10.94232],[92.60672,10.94283]]],[[[92.59855,10.94137],[92.59898,10.94151],[92.59932,10.94184],[92.59932,10.94202],[92.59892,10.9425],[92.59816,10.94313],[92.59772,10.94358],[92.59753,10.94411],[92.59745,10.94472],[92.59732,10.94492],[92.59628,10.94504],[92.59619,10.94496],[92.59598,10.94421],[92.5964,10.94379],[92.59683,10.94341],[92.59717,10.94273],[92.59755,10.94247],[92.59748,10.94205],[92.59785,10.94198],[92.59828,10.94166],[92.59845,10.94132],[92.59855,10.94137]]],[[[92.60343,10.94636],[92.60319,10.9459],[92.60325,10.9455],[92.6036,10.94531],[92.60441,10.94506],[92.60526,10.94485],[92.60562,10.94514],[92.60561,10.9456],[92.60526,10.94541],[92.60506,10.94578],[92.60475,10.94599],[92.60343,10.94636]]],[[[92.60055,10.95093],[92.60076,10.95155],[92.60021,10.95171],[92.6001,10.95153],[92.59977,10.95149],[92.59973,10.95136],[92.60007,10.95095],[92.60055,10.95093]]],[[[92.21924,10.98577],[92.2187,10.98605],[92.21781,10.98608],[92.21622,10.98563],[92.21493,10.98497],[92.21419,10.98415],[92.21323,10.98345],[92.20998,10.98181],[92.20865,10.98057],[92.20819,10.97983],[92.20907,10.97765],[92.20994,10.97646],[92.21089,10.97481],[92.21335,10.9728],[92.21502,10.97226],[92.21655,10.97242],[92.21901,10.97387],[92.21938,10.97387],[92.22071,10.97436],[92.22092,10.97497],[92.2223,10.97637],[92.22387,10.97724],[92.22467,10.9781],[92.22542,10.98032],[92.22619,10.98435],[92.22568,10.98482],[92.22334,10.98453],[92.22137,10.98523],[92.21934,10.98564],[92.21924,10.98577]]],[[[92.66776,10.98466],[92.66814,10.98473],[92.66822,10.98515],[92.66809,10.9856],[92.66828,10.98592],[92.66869,10.98841],[92.66831,10.98948],[92.66777,10.99044],[92.66716,10.99116],[92.66749,10.99147],[92.66654,10.99269],[92.66572,10.99298],[92.66285,10.99324],[92.66106,10.99308],[92.65972,10.9925],[92.65817,10.9908],[92.65754,10.98956],[92.65721,10.98838],[92.65703,10.98693],[92.65732,10.98426],[92.65772,10.98305],[92.65772,10.98261],[92.65873,10.98134],[92.65953,10.98079],[92.66013,10.98052],[92.66095,10.98056],[92.66237,10.98091],[92.66496,10.98304],[92.6651,10.98335],[92.66515,10.9833],[92.66665,10.98425],[92.66669,10.98452],[92.66691,10.98424],[92.66776,10.98466]]],[[[92.73153,11.14937],[92.73132,11.14952],[92.73098,11.14933],[92.73038,11.14935],[92.72995,11.14963],[92.72945,11.14956],[92.72901,11.14921],[92.72869,11.14954],[92.72824,11.1494],[92.72839,11.14915],[92.72778,11.14905],[92.72789,11.14877],[92.72773,11.14865],[92.72773,11.14845],[92.72742,11.14858],[92.72739,11.14812],[92.7273,11.14798],[92.72735,11.14788],[92.72705,11.14785],[92.72679,11.14816],[92.72646,11.14805],[92.72639,11.14769],[92.72609,11.14775],[92.72553,11.14829],[92.72527,11.14836],[92.72505,11.14826],[92.72422,11.14831],[92.72416,11.14798],[92.72436,11.1478],[92.72434,11.14762],[92.72358,11.14613],[92.72342,11.14533],[92.72329,11.14512],[92.72329,11.14488],[92.72347,11.1447],[92.72388,11.14459],[92.72301,11.14435],[92.72268,11.14471],[92.72252,11.14469],[92.7225,11.14447],[92.72195,11.14429],[92.72173,11.14412],[92.72182,11.14385],[92.72155,11.14357],[92.72132,11.14243],[92.72147,11.14204],[92.72132,11.14171],[92.72168,11.14141],[92.72173,11.14116],[92.72191,11.14107],[92.72203,11.14074],[92.72232,11.14067],[92.72241,11.14044],[92.72289,11.14035],[92.72321,11.14055],[92.72326,11.14079],[92.72365,11.14092],[92.72372,11.14115],[92.72403,11.14128],[92.72397,11.14149],[92.72368,11.14147],[92.72463,11.14202],[92.72483,11.14235],[92.72477,11.14267],[92.7249,11.1428],[92.72468,11.14392],[92.72447,11.14388],[92.7243,11.14362],[92.72404,11.14366],[92.72439,11.14426],[92.72499,11.1445],[92.72479,11.14399],[92.72479,11.14371],[92.72497,11.14346],[92.72542,11.14337],[92.72625,11.14373],[92.72641,11.14371],[92.7264,11.14335],[92.72704,11.14312],[92.72704,11.14269],[92.7275,11.1428],[92.72835,11.14218],[92.72879,11.14201],[92.72865,11.14176],[92.72925,11.1415],[92.7296,11.14171],[92.73037,11.14179],[92.73059,11.14238],[92.73093,11.14246],[92.73097,11.14292],[92.73161,11.14367],[92.73163,11.14386],[92.73191,11.14409],[92.73199,11.14437],[92.73225,11.14453],[92.73229,11.14447],[92.73277,11.14459],[92.73319,11.14453],[92.73359,11.1449],[92.73369,11.1452],[92.73353,11.14531],[92.73359,11.1458],[92.73341,11.14601],[92.73339,11.14638],[92.7336,11.14669],[92.73331,11.1471],[92.73326,11.14743],[92.73302,11.14772],[92.73239,11.14815],[92.732,11.14854],[92.73175,11.14893],[92.73175,11.1491],[92.73148,11.14917],[92.73153,11.14937]]],[[[92.67618,11.18442],[92.67613,11.18467],[92.67595,11.18476],[92.67568,11.18541],[92.67588,11.18585],[92.67614,11.18613],[92.67631,11.18709],[92.67612,11.1887],[92.67588,11.1893],[92.67562,11.1897],[92.67484,11.19023],[92.67432,11.19033],[92.67394,11.19023],[92.6735,11.18995],[92.67237,11.188],[92.67181,11.18656],[92.67171,11.18593],[92.67188,11.18546],[92.67233,11.18479],[92.67269,11.18444],[92.67305,11.18354],[92.67333,11.18309],[92.67423,11.18072],[92.6749,11.17932],[92.6742,11.17845],[92.67419,11.17813],[92.67489,11.17742],[92.6752,11.17733],[92.67524,11.17712],[92.67549,11.17691],[92.67573,11.17693],[92.67586,11.17679],[92.67623,11.17699],[92.6767,11.17691],[92.67675,11.17725],[92.67664,11.17734],[92.67687,11.17765],[92.67682,11.17776],[92.67694,11.17806],[92.6771,11.17812],[92.67728,11.17845],[92.67819,11.17903],[92.6785,11.17963],[92.67869,11.17983],[92.67927,11.17987],[92.67967,11.18012],[92.68004,11.18072],[92.68008,11.18121],[92.67999,11.18173],[92.67918,11.18261],[92.67785,11.18315],[92.67728,11.18313],[92.67702,11.18327],[92.67676,11.18323],[92.67653,11.18342],[92.67655,11.18353],[92.67606,11.18384],[92.67579,11.1836],[92.67567,11.1838],[92.6757,11.18416],[92.67622,11.18409],[92.67618,11.18442]]],[[[92.67248,11.1949],[92.6726,11.19509],[92.67257,11.19532],[92.67242,11.19548],[92.67229,11.19554],[92.67208,11.19548],[92.67202,11.1954],[92.67191,11.19515],[92.67199,11.19497],[92.67222,11.19486],[92.67248,11.1949]]],[[[92.70507,11.27772],[92.70518,11.27885],[92.7057,11.27988],[92.70615,11.28643],[92.70526,11.2878],[92.70535,11.28982],[92.70511,11.29012],[92.70471,11.29024],[92.70272,11.28952],[92.70219,11.28884],[92.70093,11.28848],[92.69954,11.28726],[92.6959,11.28554],[92.69458,11.28524],[92.69381,11.28458],[92.69344,11.28304],[92.69261,11.28203],[92.69201,11.28054],[92.6932,11.27521],[92.69266,11.27427],[92.69236,11.27054],[92.69469,11.26588],[92.69472,11.26464],[92.69387,11.26392],[92.6938,11.26298],[92.6944,11.25982],[92.69277,11.25825],[92.69248,11.25759],[92.69236,11.25797],[92.69184,11.25797],[92.69091,11.25717],[92.69029,11.25414],[92.68969,11.2528],[92.68881,11.25174],[92.68878,11.25143],[92.68962,11.25106],[92.68776,11.24802],[92.68629,11.24684],[92.68641,11.24661],[92.68614,11.24632],[92.68666,11.24616],[92.68697,11.24665],[92.68754,11.24618],[92.6874,11.24585],[92.68671,11.24594],[92.68635,11.24566],[92.68635,11.24398],[92.68593,11.24345],[92.68633,11.24323],[92.68649,11.24259],[92.68623,11.2418],[92.68708,11.24174],[92.68744,11.24238],[92.68827,11.2427],[92.68958,11.24264],[92.68997,11.24303],[92.69036,11.24253],[92.69064,11.24279],[92.69123,11.24241],[92.69162,11.24278],[92.6924,11.2453],[92.69407,11.24851],[92.69474,11.2492],[92.69484,11.25001],[92.69355,11.25001],[92.69329,11.25141],[92.69383,11.25298],[92.69442,11.2536],[92.69503,11.25302],[92.69572,11.25312],[92.69613,11.25382],[92.69675,11.25402],[92.69693,11.25462],[92.69725,11.25463],[92.69782,11.25555],[92.69823,11.25546],[92.69821,11.25581],[92.69733,11.25561],[92.69882,11.25778],[92.70153,11.25984],[92.70241,11.26142],[92.70328,11.26151],[92.70365,11.26184],[92.70478,11.26379],[92.70516,11.26612],[92.70433,11.26964],[92.70489,11.27266],[92.70539,11.27388],[92.70497,11.27471],[92.70507,11.27772]]],[[[92.7223,11.33303],[92.72103,11.33347],[92.72026,11.33314],[92.71996,11.3327],[92.72022,11.33259],[92.71984,11.33234],[92.7193,11.33207],[92.71907,11.33229],[92.71852,11.33213],[92.71776,11.3313],[92.71805,11.33089],[92.71747,11.33026],[92.71721,11.3303],[92.71662,11.32953],[92.71638,11.32851],[92.71714,11.32644],[92.71646,11.32519],[92.71644,11.32414],[92.71618,11.32358],[92.71556,11.32311],[92.71488,11.32291],[92.71401,11.32196],[92.71297,11.32151],[92.71266,11.32077],[92.71352,11.31763],[92.713,11.31623],[92.71323,11.31578],[92.71277,11.31562],[92.71204,11.31447],[92.71085,11.31321],[92.70666,11.31021],[92.70467,11.30973],[92.70343,11.31012],[92.70211,11.3112],[92.70056,11.31187],[92.69981,11.31149],[92.69941,11.312],[92.69865,11.3119],[92.69694,11.31106],[92.69551,11.30984],[92.69703,11.30829],[92.69817,11.30802],[92.70302,11.30539],[92.7045,11.30335],[92.70609,11.30169],[92.70678,11.29964],[92.70771,11.29948],[92.71175,11.30269],[92.71184,11.30293],[92.71137,11.30282],[92.71122,11.30344],[92.7116,11.30353],[92.7122,11.30762],[92.71282,11.30806],[92.71419,11.3081],[92.71473,11.3086],[92.71579,11.31228],[92.71569,11.31331],[92.71595,11.31459],[92.71667,11.31557],[92.7173,11.31586],[92.71918,11.3149],[92.72006,11.31481],[92.72135,11.31551],[92.72231,11.31666],[92.72288,11.31942],[92.72234,11.31988],[92.72214,11.32096],[92.72241,11.32113],[92.72247,11.32161],[92.72151,11.32342],[92.72174,11.3253],[92.72327,11.33053],[92.72287,11.33211],[92.7223,11.33303]]],[[[92.54744,11.39069],[92.54775,11.39112],[92.54789,11.39184],[92.54802,11.39192],[92.54804,11.39254],[92.54816,11.3928],[92.55085,11.39588],[92.551,11.39652],[92.55093,11.39729],[92.55061,11.39813],[92.54996,11.39864],[92.54795,11.39901],[92.54649,11.39872],[92.54305,11.39843],[92.54193,11.39818],[92.54112,11.39751],[92.54044,11.39674],[92.53995,11.39587],[92.53976,11.39507],[92.53992,11.39345],[92.54025,11.39328],[92.54027,11.39269],[92.54059,11.39256],[92.54064,11.39195],[92.54106,11.39159],[92.54093,11.39121],[92.54164,11.3912],[92.54186,11.39076],[92.54189,11.39044],[92.54242,11.39064],[92.54253,11.39019],[92.54296,11.39031],[92.5432,11.38994],[92.54353,11.39025],[92.54379,11.39001],[92.54423,11.39036],[92.54429,11.38985],[92.54467,11.38993],[92.54487,11.38976],[92.54528,11.39022],[92.54545,11.39019],[92.54575,11.38982],[92.54591,11.39004],[92.54635,11.39004],[92.54691,11.39053],[92.54744,11.39069]]],[[[92.56266,11.39681],[92.56278,11.39711],[92.56275,11.39745],[92.56235,11.3977],[92.56232,11.39805],[92.56215,11.39826],[92.56194,11.39825],[92.56188,11.39794],[92.56193,11.39756],[92.5621,11.39696],[92.56199,11.39674],[92.56168,11.39708],[92.56075,11.39744],[92.55805,11.39682],[92.5572,11.39677],[92.55684,11.39657],[92.55622,11.39524],[92.55588,11.39508],[92.55573,11.39519],[92.55583,11.39569],[92.55629,11.3958],[92.55646,11.39633],[92.55641,11.3968],[92.55468,11.39705],[92.55442,11.39644],[92.55407,11.39644],[92.55394,11.39627],[92.55394,11.3959],[92.55347,11.39557],[92.55342,11.3952],[92.55316,11.39505],[92.55313,11.39463],[92.55328,11.39442],[92.5532,11.39414],[92.55275,11.39359],[92.55227,11.39324],[92.5517,11.39294],[92.55152,11.39256],[92.55165,11.3921],[92.55187,11.39192],[92.55247,11.39201],[92.55257,11.3916],[92.55279,11.39135],[92.55333,11.3913],[92.5534,11.39106],[92.55366,11.39081],[92.55394,11.3908],[92.55409,11.3909],[92.55428,11.39121],[92.5547,11.39115],[92.55483,11.39106],[92.55447,11.39095],[92.55447,11.39074],[92.55465,11.3906],[92.55515,11.39091],[92.55526,11.39071],[92.55512,11.39057],[92.55517,11.3904],[92.55535,11.39039],[92.55546,11.39049],[92.55557,11.39048],[92.55565,11.39034],[92.55565,11.39],[92.5558,11.38999],[92.55605,11.3902],[92.55659,11.39011],[92.55735,11.39031],[92.558,11.39065],[92.55839,11.39071],[92.55867,11.39092],[92.55904,11.39099],[92.55978,11.39178],[92.56102,11.39198],[92.56173,11.39289],[92.56178,11.39345],[92.56246,11.3935],[92.56291,11.394],[92.56334,11.3947],[92.5633,11.39549],[92.56291,11.39581],[92.56291,11.39647],[92.56261,11.39664],[92.56266,11.39681]]],[[[92.24042,11.51613],[92.24029,11.51625],[92.24008,11.5163],[92.23978,11.51633],[92.23938,11.51618],[92.23931,11.51604],[92.23917,11.51607],[92.23897,11.5159],[92.23891,11.51574],[92.23899,11.51561],[92.23915,11.51545],[92.23945,11.51538],[92.23985,11.51535],[92.24056,11.51535],[92.24071,11.5154],[92.24085,11.5155],[92.24088,11.51563],[92.24086,11.51579],[92.24076,11.51597],[92.24065,11.5161],[92.24044,11.51606],[92.24042,11.51613]]],[[[92.25724,11.51526],[92.25716,11.51504],[92.25663,11.51508],[92.25633,11.51514],[92.25628,11.51494],[92.25596,11.51491],[92.25589,11.51509],[92.2556,11.51492],[92.25549,11.51507],[92.2554,11.51506],[92.25521,11.51492],[92.25511,11.51453],[92.25472,11.51413],[92.25505,11.5141],[92.25512,11.51392],[92.25529,11.51396],[92.25564,11.51417],[92.25581,11.51416],[92.25582,11.51394],[92.25624,11.51418],[92.25645,11.51415],[92.25728,11.51442],[92.25743,11.51442],[92.25746,11.51429],[92.25759,11.51424],[92.25785,11.51443],[92.25791,11.51427],[92.25829,11.51439],[92.25832,11.51419],[92.25872,11.51444],[92.25913,11.51433],[92.25918,11.51439],[92.25908,11.51457],[92.25911,11.51492],[92.25907,11.51496],[92.25872,11.51491],[92.25846,11.51505],[92.25834,11.51487],[92.25817,11.51496],[92.25793,11.51519],[92.25772,11.51509],[92.25749,11.5151],[92.25724,11.51526]]],[[[92.23981,11.51715],[92.23996,11.51736],[92.23984,11.51759],[92.23971,11.51768],[92.23956,11.51775],[92.23933,11.51765],[92.23925,11.51743],[92.23931,11.51725],[92.23958,11.51713],[92.23981,11.51715]]],[[[92.27028,11.52007],[92.26995,11.51989],[92.26967,11.51948],[92.26943,11.51923],[92.26905,11.51936],[92.26917,11.51879],[92.26898,11.51873],[92.26889,11.51857],[92.2687,11.51857],[92.26865,11.51815],[92.26837,11.51827],[92.26816,11.51818],[92.26734,11.51763],[92.26693,11.51744],[92.26649,11.51693],[92.26653,11.5166],[92.26686,11.51619],[92.26753,11.51656],[92.26824,11.5163],[92.26861,11.51604],[92.26917,11.51619],[92.26969,11.51561],[92.27002,11.51575],[92.27073,11.51615],[92.27095,11.51615],[92.27137,11.51645],[92.27148,11.51675],[92.27189,11.51675],[92.272,11.51708],[92.27214,11.51729],[92.27203,11.51748],[92.27241,11.51777],[92.27198,11.518],[92.27185,11.51826],[92.27157,11.51822],[92.27153,11.51857],[92.27133,11.5186],[92.27129,11.51886],[92.27107,11.51879],[92.27105,11.51893],[92.27114,11.51914],[92.2707,11.51929],[92.2707,11.51965],[92.27045,11.51967],[92.27028,11.52007]]],[[[92.20772,11.53236],[92.20787,11.53245],[92.20738,11.53261],[92.20717,11.53281],[92.20691,11.53327],[92.20663,11.53316],[92.2067,11.53306],[92.20684,11.53294],[92.20672,11.53285],[92.20686,11.53265],[92.20701,11.53256],[92.20704,11.5325],[92.20701,11.53239],[92.20704,11.53223],[92.20713,11.53226],[92.20723,11.53235],[92.20744,11.53229],[92.20757,11.53229],[92.20772,11.53236]]],[[[92.20594,11.53381],[92.20602,11.53388],[92.20582,11.53416],[92.20536,11.53438],[92.2052,11.53441],[92.20501,11.53438],[92.20498,11.53426],[92.20529,11.53407],[92.2053,11.53386],[92.2056,11.53382],[92.20594,11.53381]]],[[[92.20719,11.53547],[92.20734,11.53551],[92.20739,11.53564],[92.20733,11.53574],[92.20712,11.5359],[92.20694,11.53586],[92.20674,11.53571],[92.2068,11.53554],[92.20699,11.53547],[92.20719,11.53547]]],[[[92.56086,11.51387],[92.56088,11.51436],[92.56076,11.51458],[92.56051,11.51456],[92.56051,11.51409],[92.56076,11.51382],[92.56086,11.51387]]],[[[92.61259,11.50638],[92.61284,11.50799],[92.613,11.50827],[92.61337,11.5088],[92.61427,11.50939],[92.61487,11.50993],[92.61511,11.51027],[92.61518,11.51087],[92.61503,11.51107],[92.61421,11.51116],[92.61275,11.51088],[92.61208,11.5106],[92.61168,11.51024],[92.61087,11.50983],[92.60933,11.50878],[92.60913,11.50848],[92.60885,11.50752],[92.60859,11.50709],[92.60846,11.5065],[92.6084,11.50701],[92.60804,11.50717],[92.60711,11.50712],[92.60639,11.50698],[92.60576,11.5066],[92.60435,11.5055],[92.60364,11.50482],[92.60306,11.50349],[92.60307,11.50312],[92.60357,11.50234],[92.60437,11.50223],[92.60521,11.50227],[92.60571,11.50252],[92.60672,11.50323],[92.60741,11.50403],[92.60814,11.50465],[92.60838,11.50471],[92.60857,11.50459],[92.60863,11.50443],[92.60845,11.50292],[92.60851,11.50253],[92.6088,11.50221],[92.60964,11.50237],[92.61012,11.50293],[92.61013,11.50337],[92.61038,11.50356],[92.61059,11.50416],[92.61141,11.50487],[92.61173,11.505],[92.61216,11.50543],[92.61237,11.50578],[92.61259,11.50638]]],[[[92.64364,11.51337],[92.64386,11.51342],[92.64462,11.51425],[92.64472,11.51444],[92.64477,11.51468],[92.64478,11.51485],[92.64467,11.51504],[92.64454,11.51512],[92.64432,11.51516],[92.64412,11.51511],[92.64379,11.5149],[92.64359,11.51473],[92.64324,11.51432],[92.64318,11.51407],[92.64315,11.51406],[92.64313,11.51364],[92.64314,11.51351],[92.64323,11.5134],[92.64341,11.51337],[92.64364,11.51337]]],[[[92.63621,11.51591],[92.6355,11.51738],[92.63432,11.5158],[92.63099,11.51452],[92.63167,11.51293],[92.62896,11.50874],[92.62028,11.5],[92.61407,11.48435],[92.61066,11.47231],[92.61234,11.47018],[92.60947,11.45793],[92.61413,11.45011],[92.61404,11.4486],[92.61952,11.44311],[92.61926,11.4406],[92.62152,11.44111],[92.62289,11.44017],[92.62165,11.43499],[92.61871,11.43338],[92.61974,11.43249],[92.61933,11.43013],[92.62111,11.43],[92.6214,11.42779],[92.62323,11.42601],[92.6235,11.41849],[92.62214,11.41206],[92.62299,11.40855],[92.62179,11.40445],[92.61405,11.401],[92.60625,11.40204],[92.60244,11.40075],[92.59878,11.40141],[92.59663,11.40021],[92.58774,11.40151],[92.58573,11.39999],[92.58993,11.38915],[92.59118,11.3792],[92.58865,11.37467],[92.58011,11.37087],[92.5796,11.36744],[92.58524,11.35894],[92.58537,11.35546],[92.58751,11.35251],[92.59113,11.34837],[92.59447,11.34696],[92.59601,11.34754],[92.59567,11.34606],[92.59765,11.34502],[92.609,11.3457],[92.61865,11.34881],[92.62178,11.34601],[92.62599,11.34921],[92.63417,11.34784],[92.63817,11.34608],[92.63984,11.34891],[92.64678,11.35445],[92.64744,11.35612],[92.65198,11.35704],[92.6587,11.35567],[92.66374,11.35279],[92.66493,11.3543],[92.66444,11.35646],[92.66544,11.35885],[92.66745,11.36131],[92.67226,11.36288],[92.67378,11.3617],[92.67794,11.36251],[92.67952,11.36526],[92.68195,11.36515],[92.68457,11.36636],[92.68652,11.36891],[92.68853,11.36872],[92.69066,11.37453],[92.69082,11.37662],[92.68883,11.38036],[92.69009,11.38497],[92.69219,11.38615],[92.69225,11.38726],[92.6884,11.38733],[92.68781,11.39117],[92.68643,11.39105],[92.68512,11.39257],[92.67974,11.3917],[92.67717,11.39292],[92.6748,11.39977],[92.67113,11.40001],[92.66939,11.39658],[92.66266,11.39544],[92.66146,11.39753],[92.66242,11.40129],[92.66178,11.40242],[92.66336,11.40268],[92.66252,11.40472],[92.65811,11.40685],[92.65283,11.40739],[92.6479,11.40492],[92.64708,11.40126],[92.6479,11.39695],[92.64538,11.39626],[92.64379,11.3942],[92.64128,11.39647],[92.64205,11.39738],[92.64164,11.40219],[92.64396,11.40308],[92.64431,11.40436],[92.64378,11.40669],[92.64113,11.40957],[92.63924,11.40325],[92.63696,11.40054],[92.63693,11.40183],[92.63372,11.40372],[92.63545,11.40614],[92.63656,11.41174],[92.63518,11.41453],[92.63626,11.41688],[92.63879,11.41585],[92.6417,11.41055],[92.64587,11.41367],[92.65016,11.4094],[92.65336,11.40973],[92.65687,11.41237],[92.661,11.41193],[92.67102,11.41549],[92.67403,11.41999],[92.67178,11.42615],[92.67705,11.42647],[92.67843,11.42755],[92.68054,11.42456],[92.6826,11.42613],[92.68318,11.42681],[92.6817,11.42748],[92.68028,11.43022],[92.68438,11.43219],[92.68459,11.43607],[92.68382,11.43601],[92.68393,11.43989],[92.68291,11.43982],[92.68356,11.44274],[92.68017,11.44631],[92.68151,11.44804],[92.68004,11.45028],[92.68013,11.45223],[92.67915,11.45224],[92.67947,11.4557],[92.67693,11.4606],[92.6746,11.46218],[92.67731,11.47092],[92.6713,11.47837],[92.67244,11.48501],[92.67383,11.48741],[92.67231,11.48903],[92.67426,11.4904],[92.66985,11.48904],[92.66614,11.49169],[92.66184,11.49102],[92.66136,11.49295],[92.65775,11.49592],[92.65477,11.49419],[92.65437,11.49664],[92.65033,11.49782],[92.6505,11.49656],[92.64885,11.49767],[92.64839,11.49965],[92.64443,11.50001],[92.6451,11.51159],[92.64388,11.51206],[92.64105,11.50963],[92.63827,11.51057],[92.6375,11.50952],[92.63879,11.51193],[92.63641,11.51379],[92.63621,11.51591]]],[[[92.58825,11.53045],[92.58661,11.53084],[92.58666,11.53036],[92.5881,11.53016],[92.58825,11.53045]]],[[[92.6163,11.52801],[92.61626,11.52841],[92.61527,11.52845],[92.61531,11.52821],[92.61581,11.52772],[92.6163,11.52801]]],[[[92.59339,11.53109],[92.59344,11.53192],[92.59322,11.53214],[92.59208,11.53187],[92.59119,11.53116],[92.58956,11.53163],[92.58951,11.53077],[92.58985,11.5305],[92.59161,11.52989],[92.59228,11.53006],[92.59339,11.53109]]],[[[92.6159,11.53146],[92.61611,11.53175],[92.61586,11.53199],[92.61496,11.53204],[92.61477,11.53175],[92.61521,11.53131],[92.6159,11.53146]]],[[[92.6308,11.53303],[92.63081,11.53335],[92.63079,11.53356],[92.63069,11.53361],[92.63054,11.53356],[92.63045,11.53342],[92.63047,11.53322],[92.63047,11.53294],[92.63058,11.53287],[92.6308,11.53303]]],[[[92.55546,11.54001],[92.55546,11.5404],[92.55517,11.5404],[92.55496,11.54006],[92.55457,11.53953],[92.55492,11.53928],[92.55546,11.54001]]],[[[92.55874,11.54106],[92.55849,11.54148],[92.5583,11.54148],[92.55814,11.54124],[92.55709,11.54114],[92.55576,11.54021],[92.55511,11.53912],[92.55418,11.53884],[92.5529,11.53958],[92.55313,11.53963],[92.55324,11.54006],[92.55363,11.5404],[92.55299,11.54089],[92.55225,11.54036],[92.55204,11.53943],[92.55281,11.53957],[92.55196,11.53926],[92.55055,11.53796],[92.55018,11.53721],[92.55006,11.53633],[92.55028,11.53576],[92.55061,11.53565],[92.55051,11.53362],[92.55096,11.53347],[92.55116,11.53313],[92.5514,11.53064],[92.55122,11.52885],[92.552,11.53024],[92.55255,11.53005],[92.55362,11.52787],[92.55505,11.5255],[92.55588,11.52354],[92.55611,11.52347],[92.55596,11.52337],[92.55591,11.52278],[92.55621,11.52259],[92.55666,11.523],[92.55725,11.52211],[92.55843,11.52093],[92.55909,11.52064],[92.5593,11.52028],[92.55936,11.5194],[92.56014,11.51673],[92.56042,11.51643],[92.5609,11.51618],[92.56131,11.51617],[92.56297,11.51662],[92.56544,11.51663],[92.56596,11.51709],[92.5665,11.51701],[92.56726,11.51791],[92.56856,11.52322],[92.56843,11.52407],[92.56864,11.52695],[92.56841,11.52703],[92.56837,11.52746],[92.56849,11.52971],[92.56833,11.53017],[92.56811,11.53017],[92.56781,11.52854],[92.56756,11.5283],[92.56722,11.52836],[92.566,11.52921],[92.56471,11.52973],[92.56304,11.53012],[92.56135,11.53127],[92.56011,11.53282],[92.55988,11.53348],[92.55986,11.53631],[92.55928,11.53964],[92.55872,11.54063],[92.55885,11.54071],[92.55874,11.54106]]],[[[92.60107,11.53762],[92.60069,11.53787],[92.59981,11.53818],[92.59908,11.53802],[92.59869,11.53782],[92.5985,11.53752],[92.59829,11.5367],[92.59761,11.53552],[92.59669,11.53313],[92.59667,11.53203],[92.59645,11.53119],[92.59636,11.53016],[92.59659,11.52887],[92.59772,11.52725],[92.5993,11.52529],[92.60005,11.52403],[92.60048,11.52264],[92.60131,11.52133],[92.60393,11.51897],[92.60491,11.51875],[92.60591,11.51878],[92.60666,11.51927],[92.60714,11.51984],[92.60737,11.52103],[92.60721,11.5219],[92.60691,11.52242],[92.60588,11.52304],[92.60594,11.52356],[92.60559,11.52658],[92.60541,11.53272],[92.60524,11.53333],[92.60324,11.53551],[92.60278,11.53692],[92.60221,11.53731],[92.60224,11.53695],[92.6021,11.53773],[92.60162,11.5377],[92.60139,11.5373],[92.60107,11.53762]]],[[[92.58313,11.53478],[92.58281,11.53504],[92.58306,11.53504],[92.58331,11.53538],[92.58339,11.5357],[92.58383,11.53591],[92.58461,11.53825],[92.58495,11.53955],[92.58471,11.53985],[92.58489,11.54001],[92.58499,11.54002],[92.58517,11.54034],[92.58523,11.54071],[92.58523,11.54088],[92.58491,11.54126],[92.58476,11.54129],[92.58455,11.54143],[92.58432,11.54181],[92.58328,11.54193],[92.58246,11.54068],[92.58211,11.53956],[92.58239,11.53815],[92.58206,11.53673],[92.58194,11.53536],[92.58236,11.53455],[92.58273,11.53431],[92.58313,11.53478]]],[[[92.19704,11.5774],[92.19711,11.57761],[92.19709,11.57789],[92.19701,11.57813],[92.19695,11.57823],[92.19676,11.57833],[92.19653,11.57828],[92.1964,11.578],[92.19648,11.57759],[92.19663,11.5773],[92.19686,11.57727],[92.19704,11.5774]]],[[[92.26871,11.57308],[92.26842,11.57278],[92.26842,11.57223],[92.26815,11.5722],[92.26815,11.5719],[92.26795,11.57174],[92.26815,11.57135],[92.26835,11.57118],[92.26862,11.57171],[92.26891,11.57184],[92.26914,11.57226],[92.26914,11.57292],[92.26885,11.57255],[92.26871,11.57308]]],[[[92.19678,11.58089],[92.19682,11.58097],[92.19704,11.58104],[92.19692,11.5814],[92.19691,11.58158],[92.19685,11.58171],[92.19685,11.58181],[92.19697,11.58192],[92.19718,11.58198],[92.19694,11.58223],[92.19682,11.58246],[92.19678,11.58258],[92.19681,11.5828],[92.19672,11.58303],[92.19656,11.58326],[92.19625,11.58295],[92.19614,11.58268],[92.19619,11.58258],[92.19629,11.58246],[92.19614,11.58236],[92.19595,11.58219],[92.19589,11.58209],[92.19617,11.58201],[92.19635,11.58184],[92.1965,11.58139],[92.19647,11.58119],[92.19622,11.581],[92.19617,11.58087],[92.19629,11.58073],[92.19672,11.58068],[92.19678,11.58089]]],[[[92.54369,11.55389],[92.54341,11.55442],[92.54273,11.55477],[92.54225,11.55514],[92.54153,11.5558],[92.54139,11.5554],[92.54111,11.55494],[92.54024,11.55469],[92.54033,11.55425],[92.5405,11.55389],[92.5408,11.55369],[92.54122,11.55366],[92.54202,11.55391],[92.54247,11.55391],[92.54289,11.55376],[92.54329,11.55373],[92.54369,11.55389]]],[[[92.6278,11.54253],[92.62814,11.54325],[92.62839,11.54419],[92.6282,11.54479],[92.62824,11.54573],[92.62849,11.54704],[92.62854,11.54783],[92.62845,11.54848],[92.62816,11.54881],[92.62772,11.54897],[92.62729,11.54897],[92.62692,11.54881],[92.62612,11.54724],[92.62652,11.54714],[92.62659,11.54596],[92.62606,11.54477],[92.62577,11.54368],[92.62635,11.54244],[92.62717,11.5422],[92.6278,11.54253]]],[[[92.54141,11.55779],[92.54066,11.55845],[92.54027,11.55858],[92.53991,11.55847],[92.53962,11.5583],[92.53951,11.55791],[92.5398,11.55788],[92.54006,11.55768],[92.54029,11.55741],[92.54036,11.55705],[92.53935,11.5558],[92.53864,11.55536],[92.5384,11.55511],[92.53872,11.55467],[92.53897,11.55445],[92.53938,11.5543],[92.53974,11.55488],[92.54031,11.55551],[92.54128,11.55646],[92.542,11.55668],[92.54269,11.55682],[92.54381,11.55673],[92.54415,11.5568],[92.54414,11.55718],[92.54393,11.55784],[92.54353,11.55806],[92.54305,11.55802],[92.54221,11.55765],[92.54185,11.55758],[92.54141,11.55779]]],[[[92.19889,11.58793],[92.19914,11.58816],[92.19897,11.58823],[92.19871,11.58829],[92.19847,11.58823],[92.19805,11.5882],[92.19803,11.58797],[92.19804,11.58784],[92.19785,11.58785],[92.19748,11.5879],[92.19738,11.58769],[92.19719,11.58744],[92.19716,11.58734],[92.1976,11.58715],[92.19754,11.58702],[92.19731,11.58685],[92.19713,11.58637],[92.19742,11.58637],[92.19726,11.58612],[92.19698,11.586],[92.19698,11.58574],[92.19679,11.58519],[92.19663,11.58457],[92.19658,11.58427],[92.19697,11.58406],[92.19723,11.58424],[92.19735,11.58497],[92.19757,11.58537],[92.19781,11.58612],[92.19792,11.58654],[92.19795,11.58689],[92.19811,11.58704],[92.19848,11.58705],[92.19863,11.58751],[92.19876,11.58776],[92.19889,11.58793]]],[[[92.56216,11.5573],[92.56238,11.55757],[92.56221,11.55772],[92.56208,11.55767],[92.56208,11.5573],[92.56216,11.5573]]],[[[92.20041,11.59085],[92.2,11.59066],[92.19965,11.59018],[92.19959,11.58979],[92.19929,11.58963],[92.19923,11.58934],[92.19904,11.58928],[92.19882,11.58913],[92.19906,11.58877],[92.19922,11.58861],[92.19947,11.58888],[92.19984,11.58915],[92.19997,11.58906],[92.19995,11.58893],[92.19984,11.58876],[92.2002,11.58873],[92.20045,11.58857],[92.20066,11.5886],[92.20073,11.58847],[92.20085,11.58841],[92.20104,11.58838],[92.20145,11.58842],[92.2017,11.58847],[92.20198,11.58857],[92.20218,11.58902],[92.20222,11.58926],[92.20223,11.58947],[92.20218,11.58976],[92.20188,11.59008],[92.20125,11.59048],[92.20103,11.59062],[92.20085,11.59067],[92.20057,11.59069],[92.20041,11.59085]]],[[[92.5631,11.55979],[92.5633,11.56013],[92.56303,11.56013],[92.56273,11.55984],[92.56285,11.5596],[92.5631,11.55979]]],[[[92.56738,11.55936],[92.56733,11.55969],[92.56711,11.55997],[92.56669,11.55977],[92.56666,11.55923],[92.56738,11.55936]]],[[[92.57035,11.5595],[92.57057,11.55982],[92.57057,11.56013],[92.5702,11.56011],[92.56998,11.55984],[92.57005,11.5595],[92.57035,11.5595]]],[[[92.57431,11.56016],[92.57429,11.56065],[92.57394,11.56053],[92.57354,11.55984],[92.57337,11.55938],[92.57354,11.55923],[92.57431,11.56016]]],[[[92.63184,11.55736],[92.63169,11.55775],[92.63139,11.5578],[92.63112,11.55758],[92.63097,11.55699],[92.63085,11.55634],[92.6311,11.55607],[92.63129,11.55614],[92.63166,11.55675],[92.63184,11.55736]]],[[[92.26477,11.58987],[92.26461,11.58968],[92.26425,11.58971],[92.26428,11.58916],[92.26498,11.58888],[92.2653,11.58881],[92.26535,11.58871],[92.26543,11.58865],[92.26592,11.58876],[92.2661,11.58883],[92.2655,11.58912],[92.26517,11.58961],[92.26477,11.58987]]],[[[92.22281,11.59338],[92.22274,11.59356],[92.22254,11.59377],[92.22222,11.59393],[92.22198,11.59409],[92.22176,11.59444],[92.22115,11.59415],[92.22072,11.59392],[92.2204,11.59379],[92.22013,11.59358],[92.22018,11.59343],[92.22048,11.59332],[92.2212,11.59332],[92.22202,11.593],[92.22218,11.59281],[92.22237,11.59262],[92.22253,11.59287],[92.22268,11.59302],[92.22276,11.59318],[92.22281,11.59338]]],[[[92.61412,11.5564],[92.61384,11.55718],[92.61384,11.55869],[92.61342,11.55967],[92.61147,11.56111],[92.6111,11.56114],[92.61065,11.56089],[92.60954,11.55927],[92.60936,11.55601],[92.60868,11.55403],[92.60842,11.55375],[92.60729,11.55364],[92.6053,11.55383],[92.60395,11.55288],[92.60284,11.55298],[92.60261,11.55399],[92.60158,11.55479],[92.6013,11.55468],[92.60121,11.55311],[92.60192,11.55152],[92.60223,11.55126],[92.60273,11.55127],[92.60376,11.54919],[92.60472,11.54824],[92.60536,11.54722],[92.60536,11.54544],[92.60504,11.54584],[92.60482,11.54581],[92.60461,11.54537],[92.60481,11.54325],[92.60517,11.54247],[92.60543,11.54122],[92.60579,11.54109],[92.60631,11.53787],[92.6069,11.53681],[92.60719,11.53581],[92.60849,11.53454],[92.60921,11.53207],[92.60964,11.53141],[92.60995,11.53152],[92.61002,11.53194],[92.61052,11.53222],[92.61116,11.53298],[92.61495,11.53512],[92.61488,11.53523],[92.61529,11.53499],[92.61581,11.5357],[92.61638,11.536],[92.61668,11.53736],[92.61682,11.54097],[92.61703,11.54153],[92.61758,11.54222],[92.61825,11.54481],[92.61832,11.54528],[92.61794,11.54618],[92.61784,11.54743],[92.61815,11.54926],[92.61936,11.55221],[92.61917,11.55462],[92.61929,11.55665],[92.6188,11.55719],[92.61863,11.55804],[92.61798,11.55922],[92.6176,11.55985],[92.61734,11.55996],[92.6171,11.55991],[92.61679,11.55944],[92.61693,11.55796],[92.61665,11.55737],[92.61507,11.55612],[92.61435,11.55615],[92.61412,11.5564]]],[[[92.22011,11.59452],[92.21966,11.59551],[92.21729,11.59441],[92.21531,11.59467],[92.21386,11.59559],[92.21197,11.59561],[92.21159,11.59488],[92.21227,11.59431],[92.21404,11.59416],[92.21179,11.58983],[92.20888,11.58815],[92.20581,11.58767],[92.20355,11.588],[92.20283,11.58744],[92.2097,11.57794],[92.2114,11.57261],[92.20834,11.56688],[92.20704,11.5625],[92.20515,11.5605],[92.20504,11.55829],[92.20417,11.55617],[92.20458,11.55125],[92.20396,11.55027],[92.20465,11.54686],[92.20736,11.54203],[92.20707,11.54136],[92.208,11.53988],[92.20954,11.53441],[92.21184,11.53162],[92.21035,11.53081],[92.21143,11.52918],[92.21285,11.52855],[92.21358,11.52898],[92.21378,11.52979],[92.21329,11.53027],[92.21409,11.53017],[92.21343,11.52786],[92.21426,11.52777],[92.21415,11.52734],[92.21595,11.52571],[92.21699,11.52615],[92.21545,11.52914],[92.21663,11.52923],[92.21706,11.52874],[92.22007,11.52971],[92.2331,11.52466],[92.23682,11.52546],[92.24036,11.52476],[92.24322,11.52571],[92.2481,11.52527],[92.25167,11.5238],[92.25859,11.51745],[92.26012,11.51725],[92.26129,11.51814],[92.26049,11.51857],[92.26172,11.51976],[92.2642,11.52076],[92.26555,11.52258],[92.26865,11.52242],[92.26926,11.52347],[92.26926,11.5246],[92.26881,11.5247],[92.27028,11.53009],[92.273,11.5353],[92.27247,11.54141],[92.2701,11.54733],[92.27026,11.54822],[92.26801,11.54931],[92.26829,11.55181],[92.26721,11.55592],[92.26669,11.56169],[92.26832,11.5667],[92.26719,11.56719],[92.26653,11.57072],[92.26916,11.57763],[92.26873,11.57965],[92.26928,11.58137],[92.26931,11.58521],[92.26845,11.58645],[92.26313,11.58946],[92.26136,11.59124],[92.24927,11.59265],[92.24686,11.59206],[92.23934,11.59354],[92.23201,11.59285],[92.22988,11.5896],[92.22712,11.58835],[92.22289,11.59008],[92.22063,11.59172],[92.21898,11.59369],[92.22011,11.59452]]],[[[92.22877,11.59397],[92.2291,11.59426],[92.22945,11.59453],[92.2296,11.59479],[92.22964,11.59512],[92.22951,11.59541],[92.22949,11.59557],[92.22945,11.5957],[92.22895,11.59553],[92.22845,11.59528],[92.22825,11.59503],[92.22803,11.59468],[92.22803,11.59406],[92.22833,11.59383],[92.22877,11.59397]]],[[[92.60864,11.55621],[92.60882,11.55673],[92.60876,11.55746],[92.60832,11.55952],[92.60799,11.56059],[92.60758,11.56181],[92.60711,11.56268],[92.60681,11.56277],[92.60668,11.56308],[92.60654,11.56323],[92.60643,11.56327],[92.60623,11.56304],[92.60612,11.56258],[92.60593,11.56207],[92.6057,11.56207],[92.60537,11.56196],[92.60487,11.56097],[92.60485,11.56056],[92.60549,11.5599],[92.6057,11.55955],[92.60626,11.55879],[92.60658,11.55801],[92.607,11.55725],[92.60732,11.55653],[92.60767,11.55607],[92.60799,11.55583],[92.60864,11.55621]]],[[[92.52956,11.56876],[92.52991,11.56913],[92.53019,11.57002],[92.53019,11.57069],[92.53009,11.57101],[92.52972,11.57107],[92.52915,11.57098],[92.52892,11.57077],[92.52909,11.56887],[92.5293,11.56875],[92.52956,11.56876]]],[[[92.5653,11.56723],[92.56534,11.56746],[92.56505,11.56769],[92.56521,11.56774],[92.56563,11.5682],[92.56595,11.56847],[92.56618,11.56891],[92.56628,11.56927],[92.56642,11.56945],[92.56681,11.56983],[92.56692,11.5701],[92.56685,11.57029],[92.56666,11.57045],[92.56606,11.57085],[92.56554,11.57078],[92.56502,11.57063],[92.56456,11.57033],[92.56407,11.56981],[92.56391,11.56949],[92.56411,11.56875],[92.56411,11.56858],[92.56362,11.56853],[92.56358,11.56812],[92.56408,11.5676],[92.56485,11.56711],[92.5653,11.56723]]],[[[92.57443,11.56231],[92.57475,11.56276],[92.57491,11.56334],[92.57512,11.56471],[92.5754,11.56562],[92.57629,11.56757],[92.57662,11.56897],[92.57674,11.57044],[92.5766,11.57086],[92.57636,11.57106],[92.57601,11.57095],[92.57549,11.57063],[92.57484,11.56945],[92.57468,11.56872],[92.57442,11.56822],[92.57369,11.56753],[92.57302,11.56715],[92.57272,11.56675],[92.57233,11.56592],[92.57182,11.56443],[92.57166,11.56358],[92.5717,11.56267],[92.57235,11.56234],[92.573,11.56227],[92.5733,11.56192],[92.57364,11.56184],[92.57407,11.56199],[92.57443,11.56231]]],[[[92.56975,11.57262],[92.56963,11.57326],[92.56936,11.57357],[92.56897,11.57326],[92.56876,11.57304],[92.56881,11.5726],[92.56975,11.57262]]],[[[92.52834,11.57763],[92.5279,11.57797],[92.52741,11.57844],[92.52706,11.57891],[92.5264,11.58014],[92.52608,11.58012],[92.52586,11.57989],[92.52588,11.57959],[92.52655,11.57846],[92.52715,11.57768],[92.52836,11.57646],[92.52868,11.57707],[92.52895,11.57728],[92.52919,11.57727],[92.52955,11.57732],[92.52981,11.57742],[92.52959,11.57757],[92.52931,11.57767],[92.52905,11.57765],[92.52863,11.57758],[92.52834,11.57763]]],[[[92.56978,11.57858],[92.56961,11.57858],[92.56948,11.5785],[92.56941,11.57823],[92.56946,11.57809],[92.57,11.57792],[92.57015,11.57836],[92.5698,11.57836],[92.56978,11.57858]]],[[[92.56899,11.57938],[92.56899,11.57958],[92.56819,11.57965],[92.56822,11.57943],[92.56899,11.57938]]],[[[92.59304,11.57456],[92.59265,11.57616],[92.59297,11.5766],[92.5926,11.57765],[92.59215,11.57802],[92.59148,11.578],[92.58889,11.57514],[92.58842,11.57419],[92.5885,11.57367],[92.58875,11.57389],[92.58856,11.57329],[92.58792,11.57287],[92.58683,11.57053],[92.5867,11.56968],[92.58708,11.56574],[92.58867,11.56235],[92.58881,11.56145],[92.58875,11.56116],[92.588,11.56085],[92.58729,11.5594],[92.58715,11.55823],[92.58753,11.55625],[92.5866,11.55499],[92.58653,11.55391],[92.58611,11.55327],[92.58462,11.55271],[92.58372,11.5519],[92.58281,11.54904],[92.58303,11.54802],[92.58372,11.54733],[92.58425,11.54736],[92.58477,11.54662],[92.58624,11.54271],[92.5857,11.5414],[92.58763,11.54047],[92.58819,11.53959],[92.58788,11.53659],[92.5872,11.53632],[92.58682,11.53481],[92.58688,11.53408],[92.58757,11.5337],[92.58699,11.53319],[92.58779,11.5326],[92.58835,11.53331],[92.58806,11.53385],[92.58765,11.5337],[92.58786,11.53412],[92.59046,11.5359],[92.5912,11.53684],[92.59258,11.53458],[92.59374,11.53428],[92.59406,11.53321],[92.59501,11.53335],[92.59505,11.53611],[92.5956,11.53911],[92.59541,11.53998],[92.59605,11.54212],[92.59606,11.54383],[92.59665,11.54602],[92.59646,11.54751],[92.59694,11.54909],[92.59608,11.55054],[92.59625,11.55152],[92.59601,11.55292],[92.597,11.55472],[92.59681,11.557],[92.59594,11.55929],[92.59545,11.56175],[92.59543,11.56439],[92.5952,11.56511],[92.59474,11.56557],[92.59351,11.56555],[92.59312,11.56527],[92.59247,11.56593],[92.59199,11.56762],[92.59249,11.56808],[92.59293,11.56803],[92.59332,11.5685],[92.59407,11.56988],[92.59374,11.57149],[92.59448,11.57196],[92.59341,11.57277],[92.59304,11.57456]]],[[[92.57746,11.58236],[92.57769,11.58244],[92.57846,11.58296],[92.57869,11.58336],[92.57872,11.58429],[92.57851,11.58468],[92.57812,11.58497],[92.5785,11.58533],[92.57849,11.58566],[92.5783,11.5863],[92.57811,11.58662],[92.57775,11.58735],[92.57742,11.58764],[92.57717,11.58759],[92.5767,11.5871],[92.57662,11.58677],[92.57625,11.58627],[92.57618,11.58594],[92.57627,11.58496],[92.57652,11.58477],[92.57643,11.58451],[92.5765,11.58445],[92.57629,11.58422],[92.57635,11.58358],[92.5765,11.58289],[92.57654,11.58287],[92.57678,11.58255],[92.57701,11.58242],[92.5772,11.58236],[92.57746,11.58236]]],[[[92.59996,11.5865],[92.59996,11.58674],[92.59991,11.58697],[92.59975,11.58723],[92.59931,11.58761],[92.59908,11.58757],[92.59899,11.5873],[92.59899,11.58705],[92.59934,11.58658],[92.59951,11.58645],[92.59972,11.58641],[92.59996,11.5865]]],[[[92.61132,11.58821],[92.61053,11.5887],[92.61024,11.5887],[92.60938,11.58828],[92.60818,11.5883],[92.60604,11.58785],[92.60551,11.58771],[92.60393,11.58676],[92.60238,11.58614],[92.60147,11.58605],[92.60092,11.58567],[92.60077,11.58465],[92.60104,11.58378],[92.60082,11.58311],[92.6008,11.58197],[92.59981,11.57937],[92.59993,11.57718],[92.5996,11.5768],[92.59883,11.5749],[92.59922,11.56906],[92.5997,11.5689],[92.59985,11.56801],[92.60015,11.56747],[92.60044,11.56771],[92.60079,11.56755],[92.60354,11.56913],[92.60371,11.57115],[92.60461,11.57102],[92.60504,11.57026],[92.60585,11.57052],[92.60736,11.5706],[92.60692,11.56992],[92.60697,11.56957],[92.60887,11.56836],[92.60909,11.56738],[92.60974,11.56723],[92.60986,11.56604],[92.61051,11.56574],[92.61097,11.56478],[92.6114,11.56436],[92.61172,11.56423],[92.61283,11.56441],[92.61303,11.56431],[92.61395,11.56304],[92.61434,11.56424],[92.61464,11.56442],[92.61554,11.56582],[92.61584,11.56806],[92.61665,11.56933],[92.61798,11.57246],[92.61822,11.57653],[92.61801,11.57738],[92.61728,11.5789],[92.61702,11.58233],[92.61651,11.58305],[92.61509,11.58373],[92.61509,11.58449],[92.61471,11.58538],[92.61393,11.58609],[92.61256,11.58698],[92.61132,11.58821]]],[[[92.59286,11.59041],[92.59268,11.59039],[92.5925,11.59029],[92.59232,11.59003],[92.59234,11.58974],[92.59264,11.58944],[92.59304,11.58924],[92.59344,11.58918],[92.59432,11.58895],[92.59453,11.58914],[92.59443,11.5895],[92.59422,11.58979],[92.59387,11.59012],[92.59355,11.59033],[92.59299,11.59036],[92.59286,11.59041]]],[[[92.55244,11.59383],[92.55267,11.59404],[92.55267,11.59439],[92.55259,11.59475],[92.55237,11.59499],[92.55201,11.59515],[92.55168,11.59536],[92.55143,11.59539],[92.55126,11.59533],[92.55119,11.59507],[92.55122,11.59481],[92.55129,11.59444],[92.55147,11.5941],[92.5517,11.59389],[92.55216,11.59378],[92.55244,11.59383]]],[[[92.54017,11.60503],[92.53849,11.60693],[92.53576,11.60832],[92.53244,11.60267],[92.532,11.59986],[92.53051,11.59825],[92.52975,11.59893],[92.52946,11.59881],[92.52797,11.5963],[92.5282,11.59431],[92.5278,11.59258],[92.52968,11.59313],[92.53097,11.59239],[92.52943,11.59166],[92.53023,11.59063],[92.52851,11.59088],[92.5273,11.58887],[92.52798,11.58808],[92.5284,11.58644],[92.52914,11.58631],[92.5293,11.58665],[92.52866,11.5876],[92.52919,11.5879],[92.53022,11.58631],[92.53136,11.586],[92.53208,11.58503],[92.53146,11.58381],[92.53202,11.58259],[92.53206,11.5809],[92.53191,11.58036],[92.53165,11.58046],[92.5303,11.58183],[92.53114,11.58017],[92.53034,11.57964],[92.52859,11.58259],[92.52593,11.58412],[92.52556,11.58413],[92.52553,11.58376],[92.52616,11.58281],[92.52587,11.58184],[92.52701,11.58123],[92.52862,11.57841],[92.53033,11.57873],[92.53083,11.57637],[92.5331,11.57604],[92.53173,11.57549],[92.52914,11.57312],[92.52859,11.57172],[92.52912,11.57158],[92.52984,11.57244],[92.52975,11.57157],[92.53088,11.57225],[92.53116,11.57106],[92.53273,11.57006],[92.53369,11.56893],[92.53424,11.56794],[92.53441,11.5661],[92.53399,11.56637],[92.53308,11.5657],[92.53405,11.56413],[92.53359,11.56318],[92.53276,11.56289],[92.53253,11.56378],[92.5319,11.56426],[92.53126,11.56401],[92.52966,11.56207],[92.52794,11.56161],[92.52864,11.56062],[92.52735,11.55931],[92.52728,11.55585],[92.52624,11.55647],[92.52612,11.55618],[92.52683,11.5537],[92.52823,11.55381],[92.52892,11.55472],[92.52972,11.55452],[92.53137,11.55635],[92.53338,11.55757],[92.53581,11.55837],[92.53729,11.55784],[92.53851,11.55825],[92.53888,11.55866],[92.53727,11.55878],[92.53673,11.55925],[92.53667,11.56064],[92.53745,11.56146],[92.53858,11.56127],[92.5401,11.56227],[92.54165,11.56218],[92.54428,11.56128],[92.54523,11.5593],[92.54519,11.55816],[92.54606,11.55859],[92.54637,11.5577],[92.54707,11.55719],[92.54834,11.55771],[92.54949,11.55909],[92.5501,11.55883],[92.55023,11.55767],[92.55059,11.55732],[92.55294,11.55736],[92.55411,11.55797],[92.55476,11.55961],[92.55474,11.56174],[92.55617,11.56304],[92.55674,11.56515],[92.5592,11.56714],[92.55974,11.56865],[92.56172,11.56928],[92.56142,11.57143],[92.56307,11.57222],[92.56413,11.57198],[92.56575,11.57371],[92.56455,11.57583],[92.56254,11.57765],[92.5624,11.57988],[92.56153,11.58104],[92.56172,11.58306],[92.56243,11.5851],[92.56645,11.58696],[92.56732,11.58561],[92.56885,11.58473],[92.56955,11.58647],[92.57158,11.58779],[92.57093,11.58867],[92.57029,11.59255],[92.56959,11.5935],[92.56823,11.59379],[92.56622,11.59317],[92.56507,11.59391],[92.56401,11.59526],[92.5617,11.59634],[92.55826,11.5936],[92.5534,11.59405],[92.55302,11.59367],[92.55274,11.59189],[92.55081,11.59312],[92.54935,11.59354],[92.54394,11.59141],[92.54358,11.59223],[92.54468,11.59201],[92.54689,11.59271],[92.54859,11.59449],[92.54859,11.5955],[92.54926,11.59673],[92.54908,11.60104],[92.54715,11.6039],[92.54565,11.60518],[92.54178,11.60652],[92.54122,11.60626],[92.54072,11.60505],[92.54017,11.60503]]],[[[92.68631,11.62969],[92.68684,11.62999],[92.68715,11.6304],[92.6874,11.63093],[92.68748,11.63135],[92.68737,11.6315],[92.68723,11.63158],[92.68711,11.63152],[92.6869,11.63136],[92.68632,11.63108],[92.68619,11.63091],[92.68615,11.6307],[92.68625,11.63038],[92.68619,11.63005],[92.68617,11.63005],[92.68613,11.62986],[92.68621,11.62969],[92.68631,11.62969]]],[[[92.68781,11.63414],[92.68783,11.63426],[92.68767,11.63469],[92.68773,11.63481],[92.68787,11.63486],[92.6881,11.63506],[92.68858,11.63517],[92.68866,11.63522],[92.6887,11.63541],[92.68815,11.63606],[92.68804,11.6368],[92.68796,11.63695],[92.68767,11.63721],[92.68756,11.63738],[92.6875,11.63822],[92.6874,11.63841],[92.68671,11.63902],[92.68671,11.63919],[92.68683,11.6394],[92.68706,11.63963],[92.68716,11.63989],[92.68702,11.64018],[92.68675,11.64044],[92.68644,11.6405],[92.68614,11.64049],[92.68588,11.64039],[92.68575,11.64016],[92.68569,11.63988],[92.6859,11.63938],[92.6858,11.63917],[92.68569,11.63875],[92.68569,11.63851],[92.68598,11.63795],[92.68604,11.63776],[92.68598,11.63731],[92.68604,11.63714],[92.68628,11.63685],[92.68633,11.63663],[92.68619,11.63642],[92.68588,11.63625],[92.68538,11.63617],[92.68532,11.63588],[92.68563,11.63565],[92.68565,11.63541],[92.68553,11.63469],[92.68557,11.63454],[92.68577,11.63437],[92.68604,11.63399],[92.68627,11.63395],[92.68661,11.63416],[92.68675,11.63418],[92.6875,11.63401],[92.68781,11.63414]]],[[[92.7551,11.63641],[92.7553,11.6367],[92.75508,11.63707],[92.7548,11.63723],[92.75448,11.63719],[92.75431,11.63683],[92.75434,11.63661],[92.75469,11.63636],[92.7551,11.63641]]],[[[92.75396,11.63708],[92.75439,11.63729],[92.75461,11.63765],[92.75452,11.6381],[92.75427,11.63849],[92.7539,11.63832],[92.75328,11.63811],[92.75306,11.63782],[92.75323,11.63729],[92.75357,11.637],[92.75396,11.63708]]],[[[92.69747,11.66393],[92.69715,11.66402],[92.69686,11.66402],[92.69592,11.66347],[92.69556,11.66335],[92.69488,11.66327],[92.6941,11.66231],[92.6938,11.66208],[92.69262,11.6615],[92.69242,11.66135],[92.69221,11.66109],[92.69221,11.66069],[92.69262,11.66022],[92.69354,11.65947],[92.6938,11.65947],[92.6943,11.65973],[92.69451,11.65973],[92.6955,11.65938],[92.6958,11.65932],[92.69583,11.65927],[92.69609,11.65927],[92.69668,11.65938],[92.69733,11.65936],[92.69765,11.65944],[92.69771,11.6595],[92.6982,11.6596],[92.69854,11.65955],[92.69905,11.65931],[92.69951,11.65917],[92.69987,11.65924],[92.70012,11.65957],[92.70017,11.6599],[92.70003,11.66031],[92.69982,11.66144],[92.69997,11.66179],[92.70038,11.6624],[92.7005,11.66245],[92.70053,11.6626],[92.70059,11.66263],[92.70056,11.663],[92.69991,11.66341],[92.69968,11.6635],[92.69886,11.66367],[92.69842,11.66368],[92.69747,11.66393]]],[[[92.76262,11.67287],[92.76306,11.67441],[92.76315,11.67536],[92.76343,11.67606],[92.7646,11.6772],[92.76436,11.67783],[92.76489,11.67844],[92.76515,11.67916],[92.76534,11.68034],[92.76499,11.68111],[92.76491,11.68211],[92.76457,11.68216],[92.76416,11.68154],[92.76366,11.6812],[92.76206,11.67897],[92.76138,11.67838],[92.76002,11.67806],[92.75812,11.67819],[92.75884,11.67668],[92.7591,11.67642],[92.75939,11.67631],[92.75925,11.67606],[92.75981,11.67495],[92.75981,11.67466],[92.75962,11.67434],[92.75962,11.67405],[92.75989,11.67324],[92.76022,11.67297],[92.75937,11.67323],[92.75904,11.67266],[92.75917,11.67212],[92.75939,11.67193],[92.75941,11.67138],[92.75953,11.67089],[92.75937,11.67043],[92.75954,11.67021],[92.75954,11.66961],[92.76039,11.66872],[92.76188,11.67103],[92.76183,11.67139],[92.76242,11.67221],[92.76262,11.67287]]],[[[92.72232,11.68875],[92.72166,11.68875],[92.72129,11.6886],[92.7212,11.68832],[92.72114,11.68775],[92.72157,11.68722],[92.72212,11.68671],[92.72298,11.68614],[92.72355,11.68591],[92.72401,11.68611],[92.72445,11.6871],[92.72505,11.6871],[92.72502,11.68801],[92.72447,11.68818],[92.72353,11.68835],[92.72312,11.68852],[92.72315,11.68849],[92.72232,11.68875]]],[[[92.58676,11.70139],[92.58659,11.70131],[92.58656,11.70131],[92.58591,11.70079],[92.58579,11.70067],[92.58571,11.70045],[92.5858,11.69995],[92.58594,11.69983],[92.58618,11.69983],[92.58641,11.69989],[92.58676,11.70006],[92.58676,11.70056],[92.58679,11.70085],[92.58697,11.70133],[92.58685,11.70134],[92.58676,11.70139]]],[[[92.58508,11.70392],[92.5852,11.70403],[92.58533,11.70432],[92.58536,11.70471],[92.58528,11.70494],[92.58519,11.70502],[92.58509,11.70504],[92.585,11.70497],[92.58491,11.70476],[92.58481,11.70435],[92.58485,11.70406],[92.58492,11.70391],[92.58508,11.70392]]],[[[92.58302,11.70817],[92.58296,11.70832],[92.58289,11.70841],[92.58281,11.70844],[92.58274,11.70844],[92.58268,11.70839],[92.58265,11.70829],[92.58266,11.708],[92.58266,11.708],[92.58274,11.70778],[92.5828,11.7077],[92.58291,11.70768],[92.58299,11.70776],[92.58304,11.70794],[92.58302,11.70817]]],[[[93.08508,11.7831],[93.08637,11.78479],[93.08646,11.78585],[93.08616,11.78638],[93.08632,11.78718],[93.08601,11.78822],[93.08514,11.78915],[93.08395,11.78986],[93.08156,11.78971],[93.07995,11.78887],[93.07845,11.78771],[93.07852,11.78742],[93.07823,11.78701],[93.07764,11.78653],[93.07761,11.78634],[93.0778,11.78599],[93.07802,11.78593],[93.07705,11.78378],[93.07651,11.78398],[93.07623,11.78351],[93.07588,11.78252],[93.07599,11.78109],[93.07627,11.78054],[93.07638,11.78013],[93.07711,11.77968],[93.07745,11.77911],[93.07846,11.77855],[93.07923,11.77831],[93.07971,11.778],[93.0805,11.77796],[93.08122,11.77818],[93.08206,11.77857],[93.08281,11.77919],[93.08322,11.78006],[93.08443,11.78175],[93.08508,11.7831]]],[[[93.07241,11.83365],[93.07233,11.83398],[93.07231,11.83421],[93.07225,11.83434],[93.07206,11.83432],[93.07166,11.83387],[93.07163,11.83366],[93.07186,11.83358],[93.07227,11.83349],[93.07241,11.83365]]],[[[93.072,11.83763],[93.07172,11.83808],[93.07144,11.8388],[93.07121,11.83915],[93.07088,11.83903],[93.07105,11.83847],[93.07165,11.83751],[93.07188,11.83747],[93.072,11.83763]]],[[[93.01223,11.85164],[93.01163,11.85189],[93.01067,11.85138],[93.01033,11.85018],[93.01061,11.8473],[93.00917,11.84526],[93.00913,11.84438],[93.01033,11.84195],[93.01036,11.83836],[93.00994,11.83699],[93.01245,11.83336],[93.01197,11.83237],[93.01352,11.82946],[93.01377,11.82827],[93.01507,11.82856],[93.01752,11.82724],[93.01843,11.82741],[93.02295,11.82595],[93.02826,11.82092],[93.03052,11.81963],[93.03083,11.81985],[93.03423,11.81762],[93.03458,11.8155],[93.03544,11.8136],[93.03758,11.81264],[93.03918,11.81305],[93.04035,11.81227],[93.04045,11.81153],[93.04115,11.81129],[93.04127,11.81043],[93.04231,11.80987],[93.04426,11.8095],[93.04557,11.80972],[93.04715,11.8108],[93.04968,11.81095],[93.05493,11.81248],[93.05829,11.81443],[93.05894,11.81427],[93.06205,11.81753],[93.06203,11.81901],[93.06256,11.81924],[93.06356,11.82148],[93.0667,11.82524],[93.06655,11.82599],[93.06792,11.82709],[93.06918,11.8304],[93.0699,11.8308],[93.07153,11.83411],[93.07179,11.83619],[93.07029,11.83974],[93.07024,11.84105],[93.06953,11.84156],[93.06903,11.84267],[93.06461,11.84378],[93.06241,11.84531],[93.06015,11.84527],[93.05864,11.84606],[93.05307,11.84584],[93.04731,11.84448],[93.04254,11.84402],[93.04204,11.84436],[93.03998,11.84369],[93.03952,11.84394],[93.03795,11.84278],[93.03728,11.8404],[93.03598,11.8406],[93.03549,11.84135],[93.03434,11.84136],[93.03295,11.84006],[93.03243,11.83865],[93.03122,11.83739],[93.03068,11.83764],[93.03049,11.83856],[93.03133,11.8407],[93.0304,11.84153],[93.02786,11.84253],[93.0224,11.84348],[93.02097,11.84492],[93.01965,11.84492],[93.01777,11.84572],[93.01613,11.84754],[93.0153,11.84973],[93.01319,11.8505],[93.01313,11.85098],[93.01223,11.85164]]],[[[92.60349,11.92917],[92.60371,11.92952],[92.6042,11.93159],[92.60445,11.93304],[92.60483,11.93468],[92.6048,11.93531],[92.60422,11.93575],[92.60333,11.93605],[92.60234,11.93583],[92.60161,11.93536],[92.60171,11.93493],[92.60214,11.93473],[92.60255,11.93446],[92.60283,11.93391],[92.6026,11.93331],[92.60263,11.93259],[92.60331,11.93192],[92.60316,11.93089],[92.60306,11.92929],[92.60331,11.92897],[92.60349,11.92917]]],[[[92.72225,11.95133],[92.72332,11.952],[92.72366,11.95231],[92.72437,11.95302],[92.72453,11.95328],[92.7247,11.95376],[92.72466,11.95397],[92.72417,11.95428],[92.72363,11.95445],[92.72313,11.95458],[92.72284,11.95445],[92.72241,11.95363],[92.72233,11.95259],[92.72176,11.95226],[92.7216,11.95165],[92.72192,11.95127],[92.72225,11.95133]]],[[[92.60593,11.96623],[92.60553,11.96659],[92.60521,11.96676],[92.60461,11.96656],[92.60453,11.96634],[92.60421,11.9658],[92.60411,11.96535],[92.60443,11.96411],[92.60443,11.96381],[92.60429,11.96362],[92.60433,11.963],[92.60449,11.96263],[92.60479,11.96227],[92.60507,11.96182],[92.60523,11.96142],[92.60529,11.96067],[92.60583,11.9602],[92.60645,11.95955],[92.60665,11.95953],[92.60702,11.95967],[92.60711,11.9603],[92.6073,11.96054],[92.60782,11.96061],[92.6085,11.96099],[92.60862,11.96121],[92.6078,11.96578],[92.60748,11.96629],[92.60697,11.96641],[92.60639,11.96633],[92.60623,11.96611],[92.60599,11.96613],[92.60593,11.96623]]],[[[92.72816,11.94655],[92.72785,11.94705],[92.7283,11.94861],[92.728,11.94894],[92.72787,11.94925],[92.72802,11.94985],[92.72853,11.95073],[92.72898,11.95114],[92.72848,11.95264],[92.72977,11.95312],[92.73002,11.95344],[92.73046,11.95359],[92.73118,11.95433],[92.73185,11.9555],[92.73238,11.95751],[92.73246,11.95864],[92.7323,11.95964],[92.73216,11.95993],[92.73123,11.95922],[92.72924,11.95823],[92.72651,11.95715],[92.72568,11.95656],[92.72539,11.95591],[92.72519,11.95506],[92.7256,11.95342],[92.7254,11.95267],[92.72485,11.95177],[92.72412,11.95103],[92.7239,11.95052],[92.72415,11.94921],[92.7233,11.94757],[92.72315,11.94681],[92.72343,11.94571],[92.72352,11.94474],[92.72419,11.94398],[92.72411,11.94335],[92.7245,11.94281],[92.72452,11.94168],[92.72504,11.94158],[92.72622,11.9424],[92.72689,11.94251],[92.72794,11.94327],[92.72818,11.94322],[92.72873,11.94371],[92.72987,11.94382],[92.73082,11.94465],[92.73092,11.94507],[92.73077,11.94565],[92.7304,11.946],[92.72998,11.94614],[92.7286,11.94616],[92.72816,11.94655]]],[[[92.59646,11.97683],[92.59524,11.97831],[92.59454,11.9786],[92.59215,11.97836],[92.59093,11.97737],[92.58965,11.97697],[92.58684,11.97735],[92.58634,11.97529],[92.58635,11.97461],[92.58676,11.97461],[92.58681,11.97426],[92.58645,11.9717],[92.58703,11.96941],[92.58657,11.9677],[92.58679,11.96669],[92.58848,11.96575],[92.5915,11.96623],[92.59143,11.96511],[92.59345,11.9639],[92.59327,11.96368],[92.5877,11.96374],[92.58611,11.96222],[92.58563,11.96134],[92.58666,11.96012],[92.58686,11.96022],[92.58645,11.9613],[92.58698,11.9614],[92.58812,11.96276],[92.59039,11.95985],[92.59007,11.9592],[92.59111,11.95843],[92.59211,11.9598],[92.59249,11.9597],[92.59243,11.95903],[92.59125,11.95784],[92.59229,11.95674],[92.59161,11.9559],[92.58985,11.95521],[92.58957,11.95473],[92.59041,11.95372],[92.59073,11.95365],[92.59123,11.95457],[92.59193,11.95505],[92.59492,11.95301],[92.59628,11.95335],[92.59723,11.95309],[92.5953,11.9525],[92.59222,11.95396],[92.59165,11.95285],[92.59218,11.9516],[92.59137,11.95163],[92.59129,11.9506],[92.59061,11.95115],[92.59017,11.9509],[92.59059,11.95023],[92.59115,11.95],[92.59033,11.94923],[92.59021,11.94822],[92.59147,11.94802],[92.59246,11.94868],[92.59312,11.9483],[92.59308,11.94637],[92.59408,11.94558],[92.59475,11.94334],[92.5944,11.93995],[92.59358,11.9385],[92.5935,11.93763],[92.594,11.93611],[92.59358,11.93502],[92.59412,11.93332],[92.5939,11.93219],[92.59417,11.93078],[92.59386,11.92987],[92.59423,11.92879],[92.59426,11.92609],[92.59455,11.92588],[92.59559,11.92795],[92.59635,11.92846],[92.59659,11.92833],[92.59651,11.92744],[92.59699,11.92592],[92.59747,11.92497],[92.59789,11.92497],[92.59916,11.92743],[92.59986,11.92764],[92.60022,11.92962],[92.59996,11.93031],[92.60084,11.9315],[92.60057,11.93316],[92.60154,11.93618],[92.60246,11.93695],[92.6042,11.93658],[92.60537,11.93698],[92.6062,11.93795],[92.60663,11.93977],[92.60709,11.94017],[92.60814,11.94007],[92.60806,11.94323],[92.60738,11.94423],[92.60562,11.94528],[92.60595,11.94747],[92.60581,11.94996],[92.60609,11.95094],[92.60596,11.95133],[92.60447,11.95251],[92.60356,11.956],[92.60345,11.95807],[92.6038,11.95861],[92.60333,11.96033],[92.60239,11.96201],[92.60264,11.96318],[92.60189,11.96414],[92.60257,11.96519],[92.60258,11.96688],[92.60406,11.96988],[92.6042,11.97157],[92.60356,11.9736],[92.60356,11.97478],[92.60308,11.9758],[92.60221,11.97649],[92.60091,11.97551],[92.59732,11.97577],[92.59646,11.97683]]],[[[92.74224,11.96522],[92.74337,11.96583],[92.74414,11.96677],[92.74354,11.96754],[92.74327,11.96768],[92.74257,11.96766],[92.74203,11.96736],[92.7407,11.96582],[92.74041,11.96523],[92.74078,11.96503],[92.74224,11.96522]]],[[[92.58303,11.98249],[92.58253,11.98297],[92.58231,11.98292],[92.5818,11.98237],[92.58157,11.98225],[92.58133,11.98274],[92.58094,11.98173],[92.5808,11.981],[92.58109,11.98086],[92.58117,11.98042],[92.5811,11.98027],[92.58029,11.98005],[92.58021,11.97916],[92.57981,11.97726],[92.58027,11.97766],[92.58074,11.97753],[92.58117,11.97711],[92.58166,11.97714],[92.58218,11.97691],[92.583,11.97697],[92.58381,11.97679],[92.58428,11.97656],[92.58407,11.97693],[92.58389,11.97743],[92.58389,11.97811],[92.58373,11.97867],[92.58344,11.97927],[92.58326,11.98001],[92.5831,11.98137],[92.58303,11.98249]]],[[[92.99517,11.94581],[92.99549,11.94586],[92.99561,11.9462],[92.99566,11.94662],[92.99555,11.94683],[92.99521,11.94683],[92.99483,11.94666],[92.99462,11.9463],[92.9945,11.9459],[92.99465,11.94581],[92.99517,11.94581]]],[[[92.60039,11.98173],[92.60044,11.98207],[92.60042,11.98225],[92.60037,11.98238],[92.60014,11.98252],[92.59992,11.98235],[92.5999,11.98198],[92.6,11.98169],[92.60022,11.98165],[92.60039,11.98173]]],[[[92.76606,11.96774],[92.7655,11.96818],[92.7644,11.96846],[92.76248,11.96804],[92.76021,11.96843],[92.75892,11.96828],[92.75773,11.96845],[92.75699,11.96808],[92.75487,11.968],[92.7526,11.9688],[92.75062,11.96864],[92.74915,11.96908],[92.74841,11.96896],[92.74815,11.96861],[92.74818,11.96755],[92.74824,11.96691],[92.74897,11.96519],[92.74883,11.9638],[92.74827,11.96329],[92.74723,11.96316],[92.74553,11.96194],[92.74494,11.96178],[92.74339,11.96268],[92.74217,11.96286],[92.73977,11.9615],[92.73877,11.962],[92.73824,11.96169],[92.73661,11.95894],[92.73582,11.95597],[92.73574,11.95486],[92.73477,11.95335],[92.73492,11.95182],[92.73537,11.95119],[92.7357,11.95108],[92.73791,11.95218],[92.73975,11.95138],[92.74097,11.94995],[92.741,11.94842],[92.74173,11.94682],[92.74296,11.94618],[92.74418,11.94494],[92.74508,11.94535],[92.74643,11.9455],[92.74724,11.94599],[92.74845,11.94522],[92.74886,11.94459],[92.75214,11.94552],[92.75642,11.94428],[92.7582,11.9447],[92.76024,11.94645],[92.76057,11.94708],[92.76119,11.94737],[92.76216,11.94892],[92.7652,11.95186],[92.76587,11.95211],[92.76797,11.9516],[92.76952,11.95174],[92.77002,11.95203],[92.77038,11.95265],[92.77007,11.95424],[92.76856,11.9551],[92.76792,11.95571],[92.76605,11.96059],[92.76591,11.96211],[92.7674,11.96561],[92.76667,11.96711],[92.76606,11.96774]]],[[[92.74146,11.99663],[92.74062,11.99728],[92.73852,11.99728],[92.73758,11.99663],[92.73749,11.99676],[92.73644,11.99455],[92.73653,11.99298],[92.73605,11.99132],[92.73609,11.99053],[92.73628,11.99007],[92.73751,11.98923],[92.73747,11.98849],[92.73673,11.98776],[92.73654,11.98688],[92.73526,11.98438],[92.73495,11.98409],[92.73319,11.98426],[92.73209,11.98301],[92.73201,11.98265],[92.73288,11.98166],[92.73211,11.97933],[92.73212,11.97885],[92.73254,11.9786],[92.73292,11.97787],[92.7336,11.97748],[92.73365,11.97723],[92.73468,11.97692],[92.73546,11.97722],[92.73596,11.97711],[92.73624,11.97727],[92.73766,11.97912],[92.74046,11.98048],[92.74177,11.98191],[92.74274,11.98251],[92.74325,11.98321],[92.74362,11.98339],[92.74422,11.98329],[92.74471,11.98273],[92.74464,11.98042],[92.74545,11.97843],[92.74574,11.97845],[92.74624,11.97805],[92.74724,11.97809],[92.74724,11.97792],[92.7492,11.97684],[92.75,11.97691],[92.75,11.97838],[92.75132,11.97857],[92.75163,11.97918],[92.75292,11.98071],[92.75335,11.98086],[92.75425,11.98062],[92.75507,11.98065],[92.75738,11.98246],[92.75795,11.98269],[92.76063,11.98295],[92.76079,11.98317],[92.76058,11.98365],[92.75939,11.98382],[92.75777,11.98457],[92.75679,11.98544],[92.75681,11.98629],[92.75808,11.98783],[92.75875,11.98908],[92.7584,11.99156],[92.75777,11.99236],[92.75696,11.99291],[92.75635,11.99293],[92.75517,11.99248],[92.75416,11.99235],[92.75388,11.99248],[92.75301,11.99363],[92.75176,11.99369],[92.75165,11.99336],[92.75098,11.99338],[92.75078,11.99309],[92.75005,11.99316],[92.74837,11.99251],[92.748,11.99231],[92.74802,11.9921],[92.74723,11.99173],[92.74683,11.99102],[92.74409,11.99007],[92.74386,11.98971],[92.74394,11.98885],[92.74246,11.98886],[92.74209,11.98822],[92.74165,11.9883],[92.7415,11.9892],[92.74196,11.99112],[92.74146,11.99663]]],[[[92.77198,12.01893],[92.77167,12.019],[92.77152,12.01913],[92.77142,12.01914],[92.77122,12.01911],[92.77113,12.01904],[92.77109,12.01896],[92.77112,12.01877],[92.77103,12.01877],[92.77101,12.01864],[92.77119,12.01856],[92.7712,12.01802],[92.77138,12.01802],[92.77137,12.01778],[92.77123,12.01775],[92.77126,12.01766],[92.77134,12.01767],[92.77133,12.01759],[92.77122,12.01755],[92.77116,12.01764],[92.77105,12.01751],[92.77083,12.01758],[92.77064,12.0175],[92.77043,12.01751],[92.77042,12.01743],[92.77047,12.01736],[92.77015,12.01721],[92.77002,12.01707],[92.76991,12.0168],[92.76987,12.01668],[92.76993,12.01647],[92.76983,12.0164],[92.76989,12.01633],[92.76994,12.01635],[92.76987,12.01568],[92.76995,12.01556],[92.76987,12.01547],[92.76989,12.01538],[92.77004,12.01535],[92.76984,12.01508],[92.76981,12.01485],[92.76988,12.01475],[92.76981,12.01461],[92.76987,12.01455],[92.77002,12.01455],[92.7699,12.01426],[92.7699,12.0139],[92.76982,12.01383],[92.76986,12.01373],[92.76999,12.01378],[92.77002,12.01373],[92.77001,12.0135],[92.76991,12.01323],[92.76991,12.01306],[92.77,12.01274],[92.76993,12.01265],[92.76997,12.01259],[92.77014,12.01264],[92.77021,12.01247],[92.77027,12.01241],[92.77035,12.01242],[92.77073,12.0127],[92.771,12.01274],[92.771,12.01285],[92.77155,12.01273],[92.77178,12.01281],[92.77178,12.01269],[92.77183,12.01267],[92.77193,12.01271],[92.77197,12.01282],[92.7724,12.01266],[92.77257,12.0125],[92.77282,12.01244],[92.77283,12.01225],[92.77303,12.01233],[92.77365,12.01196],[92.77388,12.01199],[92.77404,12.01207],[92.77412,12.012],[92.77421,12.01205],[92.77419,12.01219],[92.77436,12.01228],[92.7744,12.01236],[92.7745,12.01233],[92.77455,12.01238],[92.77458,12.01246],[92.77452,12.01247],[92.77451,12.0126],[92.77458,12.01273],[92.77455,12.01302],[92.77463,12.01337],[92.77482,12.0135],[92.77472,12.01361],[92.77514,12.01399],[92.77521,12.01426],[92.77531,12.01435],[92.7752,12.01444],[92.77522,12.01449],[92.77591,12.01506],[92.77603,12.01533],[92.7762,12.01539],[92.77618,12.01555],[92.77637,12.01583],[92.77643,12.01618],[92.77639,12.01627],[92.77623,12.01635],[92.77625,12.01647],[92.77606,12.01645],[92.77598,12.01667],[92.77568,12.01693],[92.7756,12.01721],[92.7754,12.01726],[92.77539,12.01737],[92.77531,12.01741],[92.77519,12.01741],[92.77517,12.01755],[92.77493,12.01803],[92.77472,12.01811],[92.7747,12.01824],[92.77456,12.0182],[92.77437,12.01834],[92.7743,12.01855],[92.77419,12.01846],[92.77395,12.01863],[92.7734,12.01873],[92.77321,12.01866],[92.77312,12.01868],[92.77309,12.01875],[92.773,12.01872],[92.77299,12.01864],[92.77272,12.01873],[92.77259,12.01887],[92.77227,12.01892],[92.77225,12.019],[92.77214,12.01897],[92.77215,12.0189],[92.77198,12.01893]]],[[[92.97159,12.03543],[92.9718,12.03557],[92.97201,12.0358],[92.97215,12.03608],[92.97218,12.03627],[92.97213,12.03642],[92.97204,12.03656],[92.97191,12.03663],[92.97175,12.03665],[92.97155,12.03658],[92.97141,12.03643],[92.97119,12.03605],[92.97116,12.03596],[92.97116,12.03576],[92.97123,12.03552],[92.97131,12.0354],[92.97142,12.03538],[92.97159,12.03543]]],[[[92.99006,12.03762],[92.99,12.03769],[92.98996,12.03777],[92.98984,12.03781],[92.98961,12.038],[92.98951,12.03785],[92.98945,12.03771],[92.98934,12.03765],[92.98908,12.03786],[92.98893,12.0376],[92.98879,12.03758],[92.98877,12.03729],[92.98891,12.03725],[92.98903,12.03729],[92.98922,12.0371],[92.98938,12.03725],[92.98957,12.03703],[92.98965,12.03689],[92.98984,12.03712],[92.98985,12.03728],[92.99,12.0374],[92.99016,12.03743],[92.99022,12.03746],[92.99006,12.03762]]],[[[92.97735,12.04227],[92.97732,12.04234],[92.97727,12.04237],[92.97727,12.04243],[92.97721,12.04243],[92.97715,12.04236],[92.97716,12.04231],[92.97727,12.04223],[92.97735,12.04227]]],[[[92.97437,12.04281],[92.97443,12.04286],[92.97433,12.04292],[92.97425,12.04286],[92.97432,12.0428],[92.97437,12.04281]]],[[[92.9763,12.04267],[92.97624,12.04275],[92.97618,12.04276],[92.97614,12.04271],[92.97625,12.04261],[92.9763,12.04267]]],[[[92.97589,12.04277],[92.97591,12.04282],[92.97588,12.04288],[92.97581,12.04292],[92.9757,12.04289],[92.9757,12.04283],[92.97583,12.04276],[92.97589,12.04277]]],[[[92.97862,12.04315],[92.97868,12.04318],[92.97872,12.04326],[92.97872,12.04331],[92.97867,12.0433],[92.97862,12.04323],[92.97851,12.04319],[92.97853,12.04314],[92.97862,12.04315]]],[[[92.97806,12.04283],[92.97805,12.04292],[92.97811,12.04297],[92.97807,12.04303],[92.97806,12.0431],[92.97798,12.04327],[92.9779,12.04337],[92.97781,12.04342],[92.97774,12.04341],[92.97766,12.04335],[92.9776,12.04333],[92.97751,12.04329],[92.97741,12.04327],[92.97732,12.04324],[92.97732,12.04318],[92.97733,12.04313],[92.97708,12.04291],[92.97711,12.04286],[92.97721,12.04283],[92.97728,12.04282],[92.97729,12.04275],[92.97742,12.0426],[92.97753,12.04256],[92.97758,12.04259],[92.97766,12.04254],[92.97772,12.04248],[92.97785,12.04261],[92.97801,12.04274],[92.97806,12.04283]]],[[[92.97893,12.04365],[92.97891,12.04373],[92.97886,12.04377],[92.9788,12.04373],[92.97882,12.04366],[92.97886,12.0436],[92.97893,12.04365]]],[[[92.9786,12.0437],[92.9786,12.04377],[92.97851,12.04381],[92.97842,12.04386],[92.97827,12.04369],[92.97817,12.04373],[92.97805,12.04354],[92.97799,12.04342],[92.97813,12.04328],[92.97815,12.04316],[92.97822,12.04314],[92.97835,12.04308],[92.97834,12.04327],[92.97848,12.04339],[92.97856,12.04341],[92.97864,12.04352],[92.9786,12.04365],[92.9786,12.0437]]],[[[92.74665,12.05487],[92.74442,12.05621],[92.74375,12.05701],[92.74287,12.06072],[92.74118,12.06298],[92.73793,12.06557],[92.73628,12.06601],[92.73547,12.06551],[92.73516,12.06465],[92.73789,12.06108],[92.73907,12.05649],[92.73693,12.05393],[92.73576,12.05437],[92.73391,12.05607],[92.73351,12.05697],[92.73325,12.0604],[92.73117,12.0594],[92.72761,12.05876],[92.72693,12.05831],[92.72612,12.05703],[92.72579,12.05515],[92.72749,12.05487],[92.72808,12.05411],[92.72847,12.04883],[92.72981,12.04668],[92.73021,12.04428],[92.73027,12.04083],[92.73074,12.0391],[92.73015,12.03788],[92.72884,12.03793],[92.7293,12.0369],[92.73022,12.03741],[92.73335,12.0362],[92.7338,12.03531],[92.7334,12.03435],[92.73361,12.03409],[92.73599,12.03532],[92.73705,12.03526],[92.73923,12.03305],[92.73963,12.03372],[92.73852,12.03697],[92.73843,12.03839],[92.73721,12.03928],[92.73671,12.0413],[92.73688,12.04154],[92.73809,12.04042],[92.73951,12.04109],[92.73964,12.04143],[92.73896,12.0422],[92.74062,12.0415],[92.74042,12.04076],[92.73918,12.03979],[92.73909,12.03926],[92.74004,12.03816],[92.74144,12.03767],[92.74132,12.0355],[92.74206,12.03408],[92.74307,12.03358],[92.74489,12.0334],[92.74608,12.03603],[92.74725,12.03676],[92.74816,12.03549],[92.74782,12.03443],[92.74723,12.03402],[92.74712,12.03438],[92.74633,12.03335],[92.74609,12.03111],[92.74568,12.03086],[92.74509,12.02732],[92.74559,12.02564],[92.74642,12.02505],[92.74724,12.0251],[92.74723,12.02599],[92.74752,12.02562],[92.74812,12.02586],[92.74832,12.02661],[92.74874,12.02673],[92.74919,12.0265],[92.7493,12.0255],[92.75,12.0254],[92.74999,12.02704],[92.74952,12.02735],[92.74998,12.0286],[92.74942,12.03016],[92.75,12.03046],[92.75021,12.03208],[92.75183,12.03402],[92.7528,12.03216],[92.75138,12.02941],[92.75172,12.02757],[92.7526,12.02591],[92.75382,12.02492],[92.75457,12.0264],[92.75539,12.0268],[92.75664,12.02541],[92.75554,12.02302],[92.7559,12.0219],[92.75769,12.02133],[92.75842,12.02079],[92.75859,12.02008],[92.76057,12.01932],[92.76161,12.01941],[92.76375,12.0212],[92.7649,12.02106],[92.76501,12.02173],[92.76572,12.02242],[92.76505,12.02284],[92.76498,12.02411],[92.76655,12.02544],[92.76894,12.02483],[92.77105,12.02341],[92.77169,12.02348],[92.77276,12.02255],[92.77348,12.02241],[92.77467,12.02364],[92.77559,12.02344],[92.77558,12.02401],[92.7773,12.02449],[92.77769,12.02413],[92.77837,12.02571],[92.77818,12.02662],[92.7777,12.02738],[92.77632,12.02805],[92.77635,12.02926],[92.77557,12.02992],[92.77602,12.03131],[92.77503,12.03215],[92.77452,12.03214],[92.77479,12.03386],[92.77643,12.03491],[92.7769,12.03655],[92.77753,12.0373],[92.7765,12.03852],[92.77685,12.03883],[92.77796,12.03868],[92.77645,12.03992],[92.7765,12.04061],[92.7755,12.04049],[92.77645,12.04118],[92.77616,12.04193],[92.77643,12.04205],[92.77739,12.04061],[92.77787,12.04055],[92.77805,12.03989],[92.77845,12.03999],[92.77872,12.03923],[92.77874,12.04076],[92.78012,12.04228],[92.78154,12.04299],[92.78224,12.04425],[92.78228,12.04519],[92.78165,12.04657],[92.78219,12.04854],[92.78117,12.04859],[92.78077,12.04809],[92.77938,12.0483],[92.77904,12.04929],[92.77768,12.05023],[92.77661,12.0497],[92.7758,12.05016],[92.77579,12.04965],[92.77482,12.04957],[92.77397,12.04778],[92.77164,12.04608],[92.77093,12.04603],[92.76928,12.04703],[92.76712,12.04602],[92.7662,12.04597],[92.76398,12.04721],[92.76418,12.04787],[92.76595,12.04951],[92.76447,12.05142],[92.76364,12.0516],[92.76201,12.05105],[92.76057,12.05003],[92.75963,12.05056],[92.76075,12.05402],[92.76017,12.05463],[92.75786,12.05512],[92.75596,12.05405],[92.75468,12.05421],[92.75233,12.05379],[92.75017,12.05419],[92.75,12.05528],[92.74844,12.0544],[92.74805,12.05523],[92.74725,12.05472],[92.74665,12.05487]]],[[[92.97883,12.04398],[92.97885,12.04403],[92.97881,12.04411],[92.97878,12.04422],[92.97875,12.04428],[92.97869,12.04429],[92.97862,12.04403],[92.97871,12.04395],[92.97883,12.04398]]],[[[92.96401,12.05009],[92.96154,12.04474],[92.96176,12.0389],[92.96011,12.03124],[92.95583,12.02396],[92.95064,12.01814],[92.94942,12.0138],[92.94563,12.00999],[92.9436,12.01023],[92.93893,12.00714],[92.9283,12.00592],[92.92295,11.99844],[92.92557,11.99427],[92.92941,11.99123],[92.93052,11.9856],[92.93231,11.98367],[92.93594,11.98303],[92.9393,11.98549],[92.94006,11.98366],[92.94579,11.98464],[92.95844,11.98095],[92.9629,11.96856],[92.96449,11.96818],[92.96519,11.96117],[92.97052,11.94903],[92.97509,11.94555],[92.98656,11.94329],[92.98812,11.94645],[92.99373,11.94776],[92.99724,11.94723],[92.99934,11.95025],[92.99722,11.95438],[93.0,11.95992],[92.99763,11.95385],[93.00084,11.94839],[93.00357,11.95328],[93.00636,11.95554],[93.00821,11.95537],[93.00679,11.95792],[93.00473,11.95766],[93.00441,11.9594],[93.00497,11.95793],[93.00694,11.95822],[93.0084,11.95511],[93.0064,11.95521],[93.00373,11.9529],[93.0016,11.94751],[93.00468,11.94834],[93.00815,11.94587],[93.00997,11.94663],[93.00865,11.94523],[93.00892,11.94367],[93.01002,11.94299],[93.0129,11.94413],[93.01494,11.94215],[93.01538,11.93827],[93.01474,11.94176],[93.01281,11.94381],[93.00941,11.94272],[93.00818,11.9455],[93.00428,11.94795],[93.00183,11.94658],[92.99647,11.94605],[92.99569,11.94374],[92.99055,11.94384],[92.99174,11.93794],[92.99307,11.93633],[92.99201,11.93568],[92.99233,11.93452],[92.99751,11.93089],[93.00228,11.92984],[93.00424,11.92806],[93.00655,11.92329],[93.00965,11.91998],[93.01248,11.91275],[93.01531,11.9104],[93.02381,11.88758],[93.02544,11.88578],[93.02779,11.88388],[93.03483,11.88155],[93.03796,11.8815],[93.04313,11.88424],[93.0441,11.88372],[93.05145,11.89248],[93.05367,11.89709],[93.05409,11.90279],[93.05189,11.90653],[93.05067,11.90625],[93.05171,11.90793],[93.05111,11.90948],[93.04879,11.91],[93.05057,11.91268],[93.05037,11.91541],[93.04657,11.91646],[93.04956,11.9215],[93.04861,11.92375],[93.04739,11.92407],[93.04852,11.92526],[93.04629,11.93087],[93.04379,11.93192],[93.04533,11.93447],[93.04016,11.94279],[93.03905,11.94893],[93.03335,11.94974],[93.03161,11.94847],[93.03007,11.94885],[93.03023,11.95092],[93.02779,11.95192],[93.02836,11.95424],[93.026,11.95965],[93.02732,11.96194],[93.02728,11.96481],[93.02508,11.969],[93.02701,11.96998],[93.02833,11.97478],[93.02454,11.97466],[93.0224,11.97277],[93.02053,11.97441],[93.0167,11.98017],[93.01682,11.9834],[93.01228,11.99076],[93.01438,11.9917],[93.01236,11.99215],[93.01531,11.99518],[93.01508,11.9975],[93.01235,11.99659],[93.01066,11.99465],[93.00994,11.99624],[93.01303,11.99863],[93.00867,11.99881],[93.0071,12.00299],[93.00678,12.00632],[93.00797,12.0084],[93.01161,12.00508],[93.01283,12.00524],[93.01403,12.00866],[93.01254,12.00886],[93.01296,12.01088],[93.01684,12.0122],[93.01678,12.014],[93.01561,12.01434],[93.01692,12.01518],[93.01402,12.01653],[93.01645,12.02101],[93.01355,12.02188],[93.01269,12.02358],[93.01449,12.02447],[93.01478,12.0273],[93.01395,12.028],[93.01086,12.02709],[93.01012,12.03135],[93.00772,12.02992],[93.00666,12.03213],[93.00572,12.03158],[93.00424,12.03295],[93.00433,12.0344],[93.00101,12.03209],[92.99973,12.03544],[92.99865,12.03452],[92.99272,12.03766],[92.98798,12.03707],[92.98237,12.04283],[92.9791,12.04164],[92.97296,12.04316],[92.97202,12.03921],[92.97433,12.03688],[92.97313,12.03733],[92.97377,12.03615],[92.97198,12.03461],[92.97371,12.03178],[92.97706,12.02914],[92.97854,12.03043],[92.98135,12.02902],[92.98005,12.02729],[92.98271,12.02726],[92.98168,12.02449],[92.98347,12.02603],[92.98188,12.02413],[92.98327,12.02292],[92.98257,12.0226],[92.98109,12.02521],[92.9826,12.02705],[92.97981,12.02713],[92.98111,12.02882],[92.97836,12.02997],[92.97597,12.02777],[92.97742,12.02538],[92.97545,12.02338],[92.97732,12.01874],[92.97486,12.01664],[92.97627,12.01794],[92.97724,12.01693],[92.97607,12.01767],[92.97482,12.01625],[92.97568,12.0184],[92.97708,12.01873],[92.97507,12.02337],[92.97716,12.02545],[92.97549,12.02717],[92.97645,12.02903],[92.97097,12.03493],[92.96975,12.03449],[92.96841,12.03133],[92.96551,12.04122],[92.96508,12.04888],[92.96401,12.05009]]],[[[92.74151,12.06908],[92.74133,12.0696],[92.74155,12.07064],[92.74343,12.07171],[92.74333,12.0721],[92.74154,12.07333],[92.74082,12.07353],[92.7405,12.07289],[92.74086,12.07233],[92.74092,12.07176],[92.74066,12.07111],[92.73876,12.06952],[92.738,12.06922],[92.73696,12.06935],[92.73657,12.06913],[92.73695,12.06833],[92.7371,12.06731],[92.73679,12.06646],[92.7392,12.06528],[92.74128,12.06362],[92.74309,12.06128],[92.74371,12.06021],[92.74391,12.05926],[92.74386,12.0581],[92.74426,12.05685],[92.74555,12.05576],[92.74724,12.0553],[92.74962,12.05623],[92.75,12.05598],[92.75,12.05634],[92.75032,12.05616],[92.75328,12.05754],[92.75401,12.05814],[92.75484,12.05993],[92.75585,12.0608],[92.75651,12.06177],[92.75669,12.0625],[92.75673,12.06421],[92.75583,12.06605],[92.75518,12.06676],[92.75407,12.06762],[92.75381,12.06714],[92.75365,12.06717],[92.75373,12.06801],[92.75,12.07036],[92.75,12.07011],[92.74827,12.07092],[92.74721,12.07056],[92.74623,12.07074],[92.74401,12.07147],[92.74206,12.07049],[92.74177,12.07008],[92.74185,12.06931],[92.74255,12.06832],[92.74334,12.06775],[92.74369,12.06782],[92.7442,12.06766],[92.74472,12.06718],[92.745,12.06719],[92.74523,12.06681],[92.74426,12.06692],[92.74374,12.06738],[92.7427,12.06759],[92.74151,12.06908]]],[[[92.79855,12.07663],[92.79847,12.07657],[92.7986,12.07642],[92.79849,12.07628],[92.79832,12.07625],[92.79845,12.07609],[92.79837,12.07597],[92.79852,12.0759],[92.79857,12.07574],[92.79838,12.07569],[92.79859,12.07551],[92.79859,12.0753],[92.79862,12.07515],[92.7987,12.07526],[92.79878,12.07526],[92.79892,12.07512],[92.79908,12.07505],[92.79896,12.07532],[92.79911,12.07532],[92.79925,12.07525],[92.79934,12.07526],[92.79928,12.07538],[92.79928,12.0755],[92.79937,12.07551],[92.79925,12.07571],[92.79923,12.07584],[92.79936,12.07584],[92.79938,12.07597],[92.79919,12.07605],[92.79922,12.07632],[92.79907,12.07624],[92.79894,12.0764],[92.7989,12.07634],[92.79884,12.0764],[92.79886,12.07651],[92.79868,12.07652],[92.79855,12.07663]]],[[[92.78567,12.07355],[92.78577,12.07375],[92.78589,12.07415],[92.78614,12.07444],[92.78615,12.07471],[92.78627,12.0747],[92.78642,12.07485],[92.7865,12.07522],[92.78671,12.07557],[92.78696,12.07632],[92.78712,12.07656],[92.78719,12.07676],[92.78733,12.07697],[92.78744,12.07746],[92.78746,12.07769],[92.78735,12.07785],[92.78724,12.07787],[92.78702,12.07782],[92.78688,12.0777],[92.78683,12.07758],[92.78683,12.07749],[92.7864,12.07683],[92.78639,12.07664],[92.78645,12.07632],[92.78635,12.07609],[92.78606,12.07575],[92.78596,12.07558],[92.78597,12.0754],[92.7859,12.07512],[92.78572,12.07491],[92.78545,12.0747],[92.78539,12.07438],[92.78535,12.07431],[92.78489,12.07395],[92.78484,12.07387],[92.78481,12.07353],[92.78474,12.07342],[92.78459,12.07324],[92.78431,12.07312],[92.7842,12.073],[92.78413,12.07278],[92.78414,12.07263],[92.78458,12.07256],[92.78464,12.07251],[92.78477,12.07253],[92.78492,12.07264],[92.78505,12.07291],[92.78521,12.07306],[92.78532,12.07324],[92.78536,12.07353],[92.78549,12.07346],[92.78567,12.07355]]],[[[92.792,12.07873],[92.79197,12.0789],[92.7919,12.07888],[92.79191,12.0787],[92.792,12.07873]]],[[[92.79114,12.07902],[92.7912,12.07911],[92.7912,12.07918],[92.79114,12.07919],[92.79105,12.07908],[92.79107,12.07899],[92.79114,12.07902]]],[[[92.79177,12.07879],[92.79175,12.07889],[92.79171,12.07908],[92.79167,12.07916],[92.79159,12.07913],[92.79159,12.07906],[92.79168,12.07873],[92.79177,12.07879]]],[[[92.96889,12.0659],[92.96885,12.06602],[92.96874,12.06609],[92.96866,12.06605],[92.96872,12.06588],[92.9686,12.06581],[92.96846,12.06585],[92.96829,12.06585],[92.96798,12.0659],[92.96786,12.06582],[92.9672,12.06513],[92.96716,12.065],[92.96717,12.06471],[92.96713,12.06447],[92.96715,12.06422],[92.9672,12.06405],[92.96737,12.06378],[92.96754,12.06366],[92.96752,12.06361],[92.96744,12.06355],[92.96754,12.06341],[92.96764,12.06345],[92.96787,12.06286],[92.96802,12.06276],[92.96806,12.06258],[92.96814,12.06253],[92.96841,12.06251],[92.9686,12.06266],[92.96865,12.0628],[92.96882,12.06276],[92.96893,12.06277],[92.96915,12.06286],[92.96929,12.06285],[92.96934,12.06294],[92.96948,12.06294],[92.96947,12.06299],[92.96974,12.06298],[92.96989,12.06308],[92.96994,12.0633],[92.97007,12.06326],[92.97041,12.06322],[92.97059,12.06328],[92.97068,12.0634],[92.97072,12.06354],[92.97071,12.06365],[92.97059,12.06373],[92.97027,12.06379],[92.97022,12.06385],[92.97035,12.06405],[92.97036,12.06415],[92.97025,12.06433],[92.97034,12.0644],[92.97037,12.06449],[92.97032,12.06467],[92.97014,12.06483],[92.97008,12.06499],[92.97009,12.06531],[92.97004,12.06545],[92.96992,12.06546],[92.96993,12.0654],[92.96971,12.06539],[92.96958,12.06549],[92.96936,12.06577],[92.96924,12.06582],[92.96912,12.06581],[92.96889,12.0659]]],[[[92.96473,12.06653],[92.96471,12.0666],[92.96455,12.06657],[92.96453,12.06651],[92.96409,12.06655],[92.96395,12.06654],[92.96387,12.06662],[92.96361,12.06652],[92.96366,12.06638],[92.96333,12.0664],[92.96316,12.06636],[92.96297,12.0662],[92.96291,12.06624],[92.96258,12.06631],[92.96233,12.06645],[92.96225,12.06644],[92.9622,12.06628],[92.96201,12.06642],[92.96183,12.06643],[92.96156,12.06633],[92.96152,12.06627],[92.96164,12.06608],[92.96181,12.06589],[92.96199,12.06579],[92.9622,12.06572],[92.96228,12.06577],[92.96236,12.06576],[92.9624,12.06562],[92.96251,12.06545],[92.96265,12.06531],[92.96279,12.06525],[92.96281,12.06512],[92.96288,12.06506],[92.9629,12.06513],[92.96298,12.0651],[92.96301,12.065],[92.96306,12.06506],[92.96343,12.06481],[92.96366,12.06473],[92.96377,12.06471],[92.96394,12.06479],[92.96401,12.06465],[92.96414,12.06462],[92.9641,12.06488],[92.96441,12.06466],[92.9646,12.06464],[92.96472,12.06469],[92.9649,12.06493],[92.9652,12.06494],[92.96529,12.065],[92.96538,12.06509],[92.9654,12.06525],[92.96547,12.06528],[92.96596,12.06525],[92.96603,12.06528],[92.96608,12.06533],[92.96609,12.06539],[92.96599,12.06553],[92.96561,12.06582],[92.96562,12.06598],[92.96558,12.06607],[92.96541,12.06621],[92.965,12.06645],[92.96492,12.06648],[92.96479,12.06647],[92.96473,12.06653]]],[[[93.01217,12.06528],[93.01254,12.0661],[93.01251,12.0664],[93.01267,12.06668],[93.01249,12.06702],[93.01217,12.06744],[93.01096,12.06851],[93.01031,12.06859],[93.00947,12.06801],[93.00929,12.06727],[93.00922,12.0665],[93.00954,12.0661],[93.01013,12.06597],[93.01034,12.06568],[93.01073,12.06548],[93.01122,12.06506],[93.01162,12.06508],[93.01186,12.06501],[93.01217,12.06528]]],[[[93.00854,12.07082],[93.00832,12.07055],[93.00824,12.07014],[93.00851,12.06995],[93.0088,12.06955],[93.00896,12.06939],[93.00908,12.06947],[93.00914,12.06939],[93.00949,12.0693],[93.0096,12.06942],[93.00981,12.06944],[93.00979,12.06978],[93.00997,12.0699],[93.00965,12.07036],[93.00941,12.07053],[93.00919,12.07075],[93.00876,12.07075],[93.00854,12.07082]]],[[[92.79983,12.08923],[92.79998,12.08975],[92.79952,12.09014],[92.79928,12.09018],[92.79886,12.0897],[92.79902,12.08923],[92.79983,12.08923]]],[[[93.00743,12.07239],[93.00712,12.07224],[93.00689,12.07226],[93.00678,12.07218],[93.00658,12.07156],[93.0067,12.07133],[93.00649,12.07114],[93.00602,12.07123],[93.00603,12.07149],[93.00592,12.07167],[93.006,12.07195],[93.00575,12.07215],[93.00552,12.07213],[93.00533,12.07228],[93.00486,12.07207],[93.00451,12.07168],[93.00432,12.07124],[93.00431,12.07091],[93.00415,12.07064],[93.0042,12.07021],[93.00415,12.06996],[93.00446,12.06949],[93.00459,12.06921],[93.00472,12.06917],[93.0049,12.06895],[93.00524,12.06882],[93.00555,12.06862],[93.0058,12.06863],[93.00599,12.06875],[93.00645,12.06862],[93.00666,12.06873],[93.00664,12.06905],[93.00686,12.06901],[93.00703,12.0692],[93.00727,12.06967],[93.0072,12.06999],[93.00719,12.07019],[93.00673,12.0707],[93.00657,12.07075],[93.00661,12.07105],[93.0067,12.07113],[93.00718,12.07084],[93.00748,12.07089],[93.00758,12.07078],[93.00795,12.07081],[93.0082,12.07099],[93.00824,12.07122],[93.0082,12.07139],[93.00807,12.07144],[93.0081,12.07165],[93.0081,12.07201],[93.00796,12.07225],[93.00782,12.07227],[93.00761,12.07223],[93.00743,12.07239]]],[[[93.05253,12.07335],[93.05232,12.07316],[93.05258,12.07282],[93.05303,12.07252],[93.05335,12.07241],[93.05354,12.07252],[93.05345,12.07291],[93.05307,12.07321],[93.05272,12.07323],[93.05253,12.07335]]],[[[93.05439,12.07363],[93.05459,12.07381],[93.05404,12.07406],[93.05376,12.0739],[93.05368,12.07358],[93.05441,12.07328],[93.05439,12.07363]]],[[[93.07719,12.07692],[93.07707,12.07692],[93.07676,12.07684],[93.07666,12.07674],[93.0767,12.07648],[93.07698,12.07627],[93.07708,12.07647],[93.07731,12.07638],[93.07728,12.07667],[93.07718,12.07674],[93.07719,12.07692]]],[[[93.07854,12.07714],[93.07841,12.07706],[93.07831,12.07694],[93.07829,12.07681],[93.07843,12.07671],[93.07837,12.07653],[93.0786,12.07656],[93.07872,12.07646],[93.07887,12.07666],[93.07905,12.07659],[93.07901,12.07688],[93.07891,12.07691],[93.07894,12.0771],[93.0786,12.07705],[93.07854,12.07714]]],[[[93.08021,12.07687],[93.08036,12.07699],[93.08012,12.07729],[93.07962,12.07722],[93.07952,12.07719],[93.07946,12.07683],[93.07959,12.07675],[93.07958,12.07666],[93.07995,12.07647],[93.08003,12.07654],[93.08004,12.0767],[93.08022,12.07665],[93.08021,12.07687]]],[[[93.08231,12.07883],[93.08225,12.07867],[93.08228,12.07838],[93.08237,12.07827],[93.08257,12.07822],[93.08283,12.07827],[93.08291,12.07843],[93.0829,12.0787],[93.08284,12.07887],[93.0827,12.0789],[93.08248,12.07891],[93.08231,12.07883]]],[[[92.9568,12.09191],[92.95652,12.09222],[92.9564,12.09218],[92.95635,12.09213],[92.95629,12.09201],[92.95616,12.09169],[92.95588,12.09139],[92.95584,12.09133],[92.95582,12.09119],[92.95583,12.09113],[92.95595,12.09092],[92.95599,12.09073],[92.95605,12.09059],[92.95623,12.09058],[92.95624,12.09051],[92.95631,12.09044],[92.95648,12.09051],[92.95659,12.09035],[92.95664,12.09022],[92.95665,12.09002],[92.95672,12.08989],[92.9568,12.08983],[92.95688,12.08981],[92.95695,12.08981],[92.95703,12.08986],[92.95711,12.09012],[92.95725,12.09008],[92.95729,12.09018],[92.95719,12.09029],[92.95718,12.09039],[92.95727,12.09067],[92.95746,12.09095],[92.95757,12.09106],[92.9576,12.09118],[92.95755,12.09133],[92.95757,12.09156],[92.95749,12.09168],[92.95742,12.09176],[92.9573,12.0918],[92.95719,12.0918],[92.95713,12.09171],[92.95696,12.09185],[92.95693,12.09175],[92.9568,12.09191]]],[[[92.73939,12.11051],[92.74018,12.11096],[92.74051,12.11124],[92.74071,12.11154],[92.74079,12.11172],[92.74082,12.11191],[92.74076,12.1129],[92.74069,12.11299],[92.74051,12.11312],[92.74,12.11291],[92.73973,12.11267],[92.73941,12.11227],[92.73921,12.1118],[92.73873,12.11092],[92.73868,12.11068],[92.7387,12.11056],[92.7388,12.11044],[92.73898,12.11039],[92.73939,12.11051]]],[[[93.03434,12.10264],[93.03423,12.10369],[93.03407,12.10419],[93.03385,12.10476],[93.03366,12.10503],[93.03319,12.10495],[93.03311,12.10455],[93.0334,12.10419],[93.03362,12.10363],[93.03387,12.1029],[93.03429,12.10264],[93.03434,12.10264]]],[[[92.98997,12.10979],[92.98402,12.10942],[92.9804,12.1066],[92.97556,12.10624],[92.97563,12.10576],[92.97467,12.10597],[92.97412,12.10495],[92.97292,12.10453],[92.97211,12.10481],[92.97172,12.10384],[92.97066,12.10494],[92.97053,12.10457],[92.9698,12.10533],[92.96917,12.10508],[92.96872,12.10631],[92.96933,12.10598],[92.96888,12.10671],[92.96712,12.10809],[92.96691,12.10788],[92.9656,12.10999],[92.96335,12.10863],[92.96156,12.10947],[92.96014,12.10923],[92.95917,12.10854],[92.95789,12.10855],[92.95783,12.10747],[92.95843,12.10656],[92.95829,12.10516],[92.95876,12.10429],[92.95851,12.10326],[92.9595,12.10194],[92.95923,12.09992],[92.95982,12.09954],[92.95954,12.09843],[92.96009,12.09724],[92.95967,12.09637],[92.95875,12.09774],[92.95791,12.09652],[92.95902,12.09276],[92.95858,12.0922],[92.95893,12.09156],[92.95819,12.08956],[92.95754,12.08898],[92.95751,12.08718],[92.95986,12.08725],[92.96071,12.08771],[92.95985,12.08916],[92.96104,12.09101],[92.96116,12.0929],[92.96181,12.09334],[92.96308,12.09366],[92.96326,12.09165],[92.96404,12.09148],[92.96321,12.09],[92.96344,12.08884],[92.96305,12.08827],[92.96316,12.08756],[92.9637,12.08738],[92.96422,12.08835],[92.96372,12.08865],[92.96442,12.08916],[92.96553,12.08914],[92.96832,12.09085],[92.96867,12.09274],[92.96966,12.093],[92.96981,12.09366],[92.96975,12.09287],[92.96876,12.09255],[92.96874,12.08879],[92.96964,12.0872],[92.97177,12.08659],[92.97091,12.08635],[92.96824,12.08684],[92.96519,12.08539],[92.96337,12.08564],[92.96254,12.08522],[92.96262,12.0846],[92.96134,12.08418],[92.9606,12.08322],[92.95904,12.08346],[92.9579,12.0831],[92.95635,12.08132],[92.95671,12.08132],[92.95676,12.08025],[92.95752,12.07929],[92.95749,12.07866],[92.95662,12.0779],[92.95713,12.07743],[92.9575,12.07761],[92.95749,12.07666],[92.95852,12.07631],[92.95849,12.07556],[92.95644,12.07307],[92.95748,12.0718],[92.95717,12.06994],[92.95914,12.06889],[92.9605,12.06924],[92.96095,12.06784],[92.96163,12.06729],[92.96257,12.06722],[92.9637,12.06791],[92.96477,12.06734],[92.96563,12.06774],[92.96803,12.0668],[92.96835,12.06712],[92.96886,12.06666],[92.97115,12.06814],[92.97113,12.06765],[92.97035,12.06715],[92.97054,12.06516],[92.97188,12.06437],[92.972,12.06493],[92.97353,12.06577],[92.97492,12.06722],[92.97291,12.06485],[92.97345,12.06401],[92.97273,12.06447],[92.97306,12.06397],[92.97175,12.06305],[92.97124,12.05956],[92.97061,12.0592],[92.97122,12.05731],[92.97206,12.05641],[92.97286,12.05626],[92.97274,12.05706],[92.97205,12.05763],[92.97398,12.06044],[92.97501,12.05935],[92.97574,12.05722],[92.97671,12.05664],[92.97847,12.05445],[92.97859,12.05314],[92.9777,12.05192],[92.97874,12.05073],[92.97976,12.05013],[92.98138,12.05068],[92.98271,12.04946],[92.98342,12.04957],[92.98544,12.04803],[92.98593,12.04684],[92.98679,12.04679],[92.99037,12.04405],[92.99414,12.04368],[92.99639,12.04439],[92.99894,12.04751],[92.99876,12.04799],[92.99944,12.04806],[93.0004,12.04905],[93.0011,12.05066],[93.00121,12.05407],[93.00063,12.05477],[93.00086,12.05513],[92.99985,12.0561],[92.99973,12.05834],[93.00266,12.05955],[93.00207,12.0613],[93.00081,12.06254],[92.99884,12.06392],[92.99725,12.06425],[92.99725,12.0653],[92.99839,12.06523],[92.99943,12.06588],[93.00018,12.06753],[92.99992,12.07006],[92.99921,12.07115],[92.99832,12.07158],[92.99814,12.07331],[92.99868,12.07339],[92.99935,12.07256],[93.0002,12.07289],[93.00069,12.07417],[93.00053,12.07535],[93.0,12.07621],[93.0,12.07512],[92.99799,12.0773],[92.9959,12.0767],[92.99449,12.0784],[92.99352,12.07877],[92.99467,12.0786],[92.99604,12.07699],[92.99829,12.07762],[92.99748,12.07874],[92.99741,12.08033],[92.99602,12.08125],[92.99509,12.08133],[92.99554,12.08162],[92.99779,12.0807],[92.99785,12.07863],[92.99938,12.07849],[92.99967,12.08052],[92.99933,12.08374],[92.99976,12.08539],[92.9976,12.08699],[92.99788,12.08724],[93.00004,12.08592],[93.00139,12.08956],[93.0007,12.09049],[93.00026,12.0903],[92.99874,12.09102],[92.99865,12.09158],[92.9993,12.09248],[92.99776,12.09329],[92.99806,12.09458],[92.99849,12.09458],[92.99821,12.09326],[92.99949,12.09251],[92.99888,12.09145],[92.99906,12.09099],[93.00123,12.09057],[93.00204,12.09312],[93.00294,12.09394],[93.00324,12.09777],[93.00491,12.09897],[93.00503,12.10064],[93.00486,12.10281],[93.00416,12.10401],[93.00071,12.1054],[92.99902,12.10581],[92.99722,12.10538],[92.99529,12.10672],[92.99159,12.10724],[92.98997,12.10979]]],[[[93.0,12.10902],[93.0,12.10882],[92.99946,12.1085],[92.99918,12.10847],[92.99865,12.10873],[92.99841,12.1086],[92.99812,12.10789],[92.99868,12.10775],[92.99914,12.10734],[93.00029,12.10706],[93.00143,12.1069],[93.00269,12.10654],[93.0033,12.10648],[93.0043,12.10605],[93.00481,12.10611],[93.00493,12.10646],[93.00501,12.10732],[93.00481,12.10757],[93.00384,12.10754],[93.00276,12.10776],[93.00206,12.10829],[93.00131,12.10874],[93.0007,12.10882],[93.0,12.10882],[93.0,12.10902]]],[[[92.97755,12.10915],[92.97769,12.10927],[92.97773,12.10937],[92.97774,12.1095],[92.97774,12.10996],[92.97778,12.11059],[92.97775,12.11074],[92.9777,12.11086],[92.97733,12.11156],[92.97713,12.11187],[92.97684,12.1121],[92.97655,12.11219],[92.97631,12.11219],[92.9761,12.11213],[92.97587,12.11195],[92.97581,12.11188],[92.9758,12.11182],[92.97585,12.11162],[92.97586,12.11141],[92.97579,12.1111],[92.97577,12.11075],[92.97582,12.1105],[92.97589,12.11026],[92.97599,12.11003],[92.97615,12.1098],[92.97635,12.10962],[92.97659,12.10944],[92.97683,12.1093],[92.97697,12.10923],[92.97733,12.10915],[92.97746,12.10913],[92.97755,12.10915]]],[[[92.9921,12.10951],[92.99221,12.10956],[92.99236,12.10969],[92.99253,12.10988],[92.99265,12.11018],[92.9927,12.11042],[92.99272,12.11058],[92.99267,12.11075],[92.99259,12.11095],[92.99231,12.11134],[92.99208,12.11151],[92.99184,12.11156],[92.9916,12.11154],[92.9914,12.11148],[92.99124,12.11138],[92.99112,12.11127],[92.99104,12.11118],[92.9909,12.11096],[92.99082,12.1107],[92.99084,12.11043],[92.9909,12.1102],[92.991,12.11001],[92.99133,12.10975],[92.99175,12.1095],[92.99189,12.10946],[92.9921,12.10951]]],[[[92.97328,12.11617],[92.97322,12.11618],[92.97315,12.11634],[92.97295,12.11646],[92.97258,12.11654],[92.97237,12.11645],[92.97225,12.11642],[92.97208,12.11635],[92.97205,12.1163],[92.97205,12.11619],[92.97209,12.11612],[92.97213,12.11608],[92.97208,12.11604],[92.97201,12.11601],[92.97196,12.11597],[92.97194,12.11588],[92.97195,12.11581],[92.972,12.11575],[92.9721,12.11569],[92.97223,12.1156],[92.97228,12.11553],[92.97231,12.11544],[92.97242,12.11539],[92.97263,12.11537],[92.97277,12.11537],[92.97288,12.11533],[92.97295,12.11531],[92.97307,12.11534],[92.97316,12.11543],[92.97323,12.11556],[92.97329,12.11563],[92.97345,12.11572],[92.97355,12.11574],[92.97357,12.11584],[92.97356,12.11593],[92.97347,12.11598],[92.97351,12.11606],[92.97348,12.11614],[92.97339,12.1162],[92.97333,12.11617],[92.97328,12.11617]]],[[[92.94746,12.11654],[92.94709,12.11754],[92.9466,12.11812],[92.94635,12.11901],[92.94568,12.11988],[92.94546,12.1194],[92.9457,12.11863],[92.94557,12.11828],[92.94596,12.11721],[92.94568,12.11683],[92.94589,12.11673],[92.94578,12.11642],[92.94609,12.11558],[92.94669,12.11496],[92.94663,12.11409],[92.9477,12.1117],[92.94798,12.11005],[92.94755,12.10598],[92.94702,12.10329],[92.94675,12.09904],[92.94715,12.0927],[92.94801,12.08518],[92.9491,12.08488],[92.94898,12.08442],[92.94979,12.08284],[92.94955,12.08268],[92.95,12.08156],[92.9498,12.08145],[92.9498,12.08112],[92.95008,12.08109],[92.94986,12.08093],[92.94983,12.07966],[92.95013,12.07924],[92.95073,12.07977],[92.95068,12.08061],[92.95131,12.08134],[92.951,12.08192],[92.95126,12.08227],[92.9511,12.08267],[92.9513,12.08274],[92.95158,12.084],[92.95115,12.08479],[92.95137,12.08515],[92.95188,12.08505],[92.95201,12.08548],[92.95147,12.08692],[92.95114,12.08712],[92.95105,12.08769],[92.95061,12.08823],[92.95066,12.08894],[92.95088,12.08904],[92.95068,12.08993],[92.95095,12.09051],[92.95083,12.09098],[92.95118,12.09161],[92.95198,12.09221],[92.95217,12.09295],[92.95309,12.09331],[92.95305,12.09348],[92.95397,12.09352],[92.9539,12.09366],[92.9547,12.09394],[92.95534,12.09536],[92.95626,12.09611],[92.95612,12.09629],[92.95687,12.09747],[92.95678,12.09777],[92.95712,12.09828],[92.95707,12.09906],[92.9573,12.09923],[92.95703,12.09938],[92.95688,12.10002],[92.95667,12.10232],[92.95618,12.10296],[92.95612,12.10357],[92.95634,12.1038],[92.95589,12.10362],[92.95568,12.10464],[92.95544,12.10472],[92.95546,12.10525],[92.95498,12.10588],[92.95477,12.10731],[92.95444,12.10729],[92.95414,12.10798],[92.95404,12.1085],[92.95431,12.10854],[92.95384,12.10877],[92.95394,12.11054],[92.95364,12.11039],[92.95237,12.11173],[92.95273,12.11233],[92.95355,12.11279],[92.95377,12.11314],[92.95235,12.11311],[92.95244,12.11288],[92.95161,12.11259],[92.95126,12.11354],[92.95058,12.11442],[92.94941,12.11507],[92.94886,12.11576],[92.94828,12.11567],[92.94746,12.11654]]],[[[92.96043,12.11812],[92.96011,12.11866],[92.95995,12.11873],[92.95975,12.1192],[92.95946,12.11929],[92.95937,12.1192],[92.95935,12.11913],[92.95951,12.11885],[92.95957,12.11865],[92.95948,12.11788],[92.95958,12.11763],[92.95973,12.1174],[92.95981,12.11709],[92.9599,12.11694],[92.96003,12.11687],[92.9602,12.11698],[92.96022,12.11646],[92.96031,12.11629],[92.9607,12.11595],[92.96085,12.1157],[92.96094,12.11543],[92.96106,12.11526],[92.96119,12.11514],[92.96131,12.11513],[92.96144,12.11526],[92.96159,12.11494],[92.96208,12.11455],[92.96227,12.11412],[92.96242,12.11399],[92.96259,12.11397],[92.96265,12.11402],[92.96296,12.11463],[92.96342,12.11509],[92.96347,12.1153],[92.96343,12.11552],[92.96329,12.11566],[92.96309,12.11599],[92.96295,12.11634],[92.96283,12.1168],[92.96253,12.11703],[92.96236,12.11735],[92.9621,12.11755],[92.96171,12.11803],[92.96149,12.1181],[92.96125,12.11803],[92.96098,12.11807],[92.96058,12.11802],[92.96043,12.11812]]],[[[92.96084,12.11938],[92.96095,12.11943],[92.96101,12.11947],[92.96104,12.11958],[92.96103,12.11968],[92.96098,12.1198],[92.96089,12.1199],[92.96084,12.12013],[92.96079,12.12026],[92.9606,12.12049],[92.96051,12.12064],[92.9604,12.12075],[92.96034,12.12079],[92.96028,12.12077],[92.96017,12.12064],[92.96009,12.12048],[92.96007,12.12037],[92.96007,12.12026],[92.96011,12.12017],[92.96034,12.12],[92.96046,12.11991],[92.96054,12.11984],[92.96058,12.11976],[92.9606,12.11965],[92.96066,12.11947],[92.96071,12.11942],[92.96078,12.11938],[92.96084,12.11938]]],[[[92.95665,12.12748],[92.95645,12.12739],[92.95636,12.12747],[92.95616,12.12725],[92.95631,12.12713],[92.95624,12.12704],[92.95627,12.12679],[92.9561,12.12655],[92.95616,12.12647],[92.95605,12.12636],[92.95593,12.1261],[92.95616,12.12602],[92.95593,12.12573],[92.95613,12.12559],[92.95596,12.12529],[92.95607,12.12516],[92.95603,12.12505],[92.95611,12.12494],[92.95602,12.12486],[92.95608,12.12461],[92.95604,12.12449],[92.95621,12.12437],[92.95616,12.12423],[92.95621,12.12396],[92.95635,12.12374],[92.95639,12.12353],[92.95639,12.12331],[92.95665,12.12338],[92.95674,12.12328],[92.95692,12.12348],[92.95692,12.12361],[92.95705,12.12378],[92.95706,12.12387],[92.95732,12.12404],[92.95711,12.12418],[92.95733,12.12434],[92.95717,12.12445],[92.95728,12.12454],[92.95718,12.12467],[92.95737,12.12496],[92.9574,12.12514],[92.95767,12.12551],[92.95772,12.12569],[92.95785,12.12584],[92.95824,12.12592],[92.95805,12.12613],[92.95779,12.1266],[92.95753,12.12666],[92.95761,12.12681],[92.9574,12.12698],[92.9571,12.12718],[92.95673,12.12735],[92.95665,12.12748]]],[[[92.75411,12.14272],[92.75432,12.14335],[92.75496,12.14465],[92.75529,12.1453],[92.75565,12.14578],[92.75602,12.14597],[92.75652,12.14602],[92.75741,12.14599],[92.75764,12.14604],[92.75772,12.14613],[92.75769,12.14643],[92.75758,12.14658],[92.75658,12.14705],[92.75632,12.14734],[92.75629,12.14775],[92.75685,12.14869],[92.75683,12.14887],[92.7567,12.14898],[92.75626,12.14908],[92.7559,12.14908],[92.75521,12.14851],[92.75487,12.14816],[92.7545,12.14771],[92.75438,12.14749],[92.75428,12.14724],[92.75428,12.14691],[92.75441,12.14658],[92.75461,12.14625],[92.75464,12.14607],[92.75461,12.14561],[92.75432,12.14488],[92.75413,12.1443],[92.75368,12.14334],[92.75365,12.14315],[92.75371,12.14295],[92.75391,12.1427],[92.75402,12.14266],[92.75411,12.14272]]],[[[92.95609,12.13131],[92.95605,12.13119],[92.95586,12.13127],[92.95577,12.13105],[92.95562,12.13104],[92.95558,12.13084],[92.95539,12.13068],[92.95555,12.13059],[92.95547,12.13041],[92.95569,12.13035],[92.95578,12.1302],[92.95597,12.13036],[92.95609,12.1302],[92.95619,12.1303],[92.95628,12.13013],[92.95642,12.13027],[92.95657,12.13015],[92.95668,12.1303],[92.95686,12.13031],[92.95695,12.1302],[92.95706,12.13034],[92.95719,12.13025],[92.95742,12.13051],[92.95754,12.13053],[92.95755,12.13062],[92.95753,12.13078],[92.95743,12.13098],[92.95737,12.13104],[92.95718,12.13108],[92.95701,12.13117],[92.95687,12.13114],[92.95675,12.13124],[92.9566,12.13119],[92.95657,12.13126],[92.95649,12.13124],[92.9563,12.13126],[92.95609,12.13131]]],[[[92.85137,12.14122],[92.85149,12.14131],[92.85154,12.14145],[92.85148,12.14162],[92.85138,12.14164],[92.85115,12.14151],[92.85114,12.14134],[92.8512,12.14123],[92.85137,12.14122]]],[[[92.85184,12.14164],[92.85201,12.14175],[92.85206,12.1419],[92.85203,12.14201],[92.85186,12.14208],[92.85171,12.14203],[92.85154,12.14197],[92.85145,12.1418],[92.85154,12.1417],[92.85167,12.14162],[92.85184,12.14164]]],[[[93.00525,12.1481],[93.0053,12.14893],[93.00549,12.14899],[93.00571,12.14915],[93.0059,12.14932],[93.00595,12.14953],[93.00574,12.14972],[93.0052,12.14979],[93.00496,12.14993],[93.0044,12.15018],[93.00417,12.15],[93.00413,12.14967],[93.00461,12.14929],[93.00507,12.14916],[93.00503,12.14899],[93.00454,12.14836],[93.0047,12.14808],[93.005,12.14794],[93.00525,12.1481]]],[[[92.98779,12.15049],[92.98784,12.15051],[92.9879,12.15055],[92.988,12.15067],[92.98809,12.15081],[92.98811,12.15096],[92.9881,12.15106],[92.98804,12.15117],[92.98795,12.15128],[92.98791,12.15141],[92.98788,12.15188],[92.98782,12.15194],[92.98769,12.15196],[92.9876,12.15189],[92.98747,12.15172],[92.98741,12.15154],[92.98738,12.15128],[92.98739,12.15092],[92.98748,12.15072],[92.98755,12.15059],[92.98764,12.15052],[92.98773,12.15049],[92.98779,12.15049]]],[[[92.76017,12.17172],[92.76005,12.17219],[92.75988,12.17248],[92.75975,12.17258],[92.75963,12.17262],[92.75949,12.17262],[92.75938,12.17255],[92.75927,12.17225],[92.75936,12.17171],[92.75936,12.17147],[92.75925,12.17134],[92.75914,12.17129],[92.75884,12.17136],[92.75874,12.17135],[92.75864,12.17124],[92.75859,12.17102],[92.75864,12.17074],[92.75877,12.17051],[92.75898,12.16978],[92.75906,12.16966],[92.75918,12.16962],[92.75933,12.1697],[92.75953,12.16995],[92.75989,12.17047],[92.76001,12.17077],[92.76012,12.17115],[92.76017,12.17172]]],[[[93.00592,12.15276],[93.00564,12.15263],[93.00573,12.15236],[93.00597,12.15226],[93.0065,12.15223],[93.00663,12.15211],[93.00672,12.15193],[93.00677,12.15089],[93.00692,12.15069],[93.00714,12.15058],[93.00739,12.15056],[93.00759,12.15066],[93.00772,12.15087],[93.00776,12.1511],[93.00772,12.15172],[93.00741,12.15205],[93.00728,12.15228],[93.00732,12.1525],[93.007,12.15262],[93.00674,12.15268],[93.00592,12.15276]]],[[[92.9844,12.15426],[92.98456,12.1543],[92.98482,12.15448],[92.98503,12.15472],[92.98526,12.15494],[92.98569,12.15594],[92.9858,12.15614],[92.98584,12.15636],[92.98581,12.15652],[92.98574,12.15666],[92.98559,12.15684],[92.98541,12.15692],[92.98524,12.15689],[92.98501,12.15674],[92.98479,12.15648],[92.98458,12.15619],[92.98408,12.15593],[92.98395,12.15584],[92.98386,12.15575],[92.98376,12.15541],[92.98373,12.15514],[92.98378,12.15484],[92.98387,12.15451],[92.98396,12.15438],[92.98407,12.15429],[92.98425,12.15422],[92.9844,12.15426]]],[[[93.01362,12.15696],[93.01346,12.15718],[93.01305,12.15689],[93.01318,12.15664],[93.01273,12.15621],[93.0125,12.15633],[93.01224,12.15616],[93.01226,12.15565],[93.01249,12.15532],[93.01241,12.15517],[93.0129,12.15449],[93.01335,12.15414],[93.01384,12.15428],[93.01405,12.15449],[93.01405,12.1552],[93.01382,12.15555],[93.01386,12.15583],[93.01427,12.15625],[93.01435,12.15659],[93.01418,12.15691],[93.01399,12.15696],[93.01386,12.15692],[93.01362,12.15696]]],[[[92.99075,12.1584],[92.99055,12.16003],[92.98935,12.16021],[92.98814,12.15881],[92.98849,12.15812],[92.98801,12.15818],[92.98741,12.15753],[92.98611,12.15712],[92.98679,12.15616],[92.98663,12.15292],[92.98704,12.15244],[92.98809,12.15317],[92.9884,12.15293],[92.98849,12.15035],[92.98785,12.14679],[92.98755,12.14655],[92.98653,12.14805],[92.98512,12.14844],[92.98542,12.14881],[92.98734,12.14886],[92.9873,12.1492],[92.98655,12.14948],[92.9865,12.15009],[92.98437,12.14913],[92.98399,12.14933],[92.98635,12.15069],[92.98682,12.15188],[92.98513,12.15163],[92.98466,12.15349],[92.98386,12.15388],[92.98293,12.15066],[92.98192,12.15029],[92.98169,12.15155],[92.982,12.15224],[92.98118,12.15266],[92.98199,12.15402],[92.9817,12.15418],[92.98039,12.15339],[92.98005,12.15458],[92.97941,12.15431],[92.98005,12.15333],[92.97965,12.15272],[92.98013,12.15167],[92.97974,12.1494],[92.97891,12.14938],[92.97888,12.15038],[92.97779,12.1498],[92.97759,12.15023],[92.97732,12.15011],[92.9768,12.14879],[92.97722,12.14734],[92.97588,12.14571],[92.9764,12.14523],[92.97658,12.14428],[92.97592,12.14394],[92.9763,12.14455],[92.97561,12.14597],[92.97689,12.1475],[92.97615,12.14952],[92.97767,12.15187],[92.97697,12.15197],[92.97566,12.15025],[92.97517,12.15022],[92.9754,12.15149],[92.97493,12.15196],[92.97446,12.15164],[92.97407,12.15026],[92.97325,12.14992],[92.97205,12.15027],[92.97199,12.15002],[92.97139,12.15104],[92.97001,12.15098],[92.9692,12.15141],[92.96886,12.15121],[92.96692,12.15164],[92.96482,12.15104],[92.96482,12.15034],[92.96313,12.15153],[92.96152,12.15176],[92.9566,12.14996],[92.95478,12.14817],[92.95382,12.14594],[92.95405,12.13966],[92.95496,12.13804],[92.95507,12.1369],[92.95425,12.13574],[92.95617,12.13343],[92.9562,12.13299],[92.95788,12.13212],[92.95794,12.13119],[92.95824,12.13111],[92.95887,12.12843],[92.95939,12.12765],[92.95832,12.12754],[92.95812,12.12721],[92.95878,12.12629],[92.95981,12.12577],[92.95969,12.12514],[92.9602,12.12443],[92.95999,12.12359],[92.95883,12.12339],[92.95882,12.12297],[92.95996,12.1227],[92.96065,12.12368],[92.96129,12.12197],[92.9619,12.12175],[92.96277,12.12019],[92.96508,12.11802],[92.9684,12.11694],[92.97174,12.11774],[92.97258,12.11744],[92.97333,12.11777],[92.97488,12.1198],[92.97475,12.11912],[92.97351,12.11772],[92.97513,12.11673],[92.9764,12.11691],[92.97797,12.11827],[92.97667,12.11645],[92.97543,12.11577],[92.97499,12.11501],[92.97498,12.11389],[92.97615,12.11299],[92.97842,12.11288],[92.97911,12.1118],[92.97989,12.11136],[92.98169,12.11131],[92.98374,12.11216],[92.98566,12.11245],[92.98924,12.11227],[92.99243,12.11381],[92.99366,12.11275],[92.99486,12.1131],[92.99632,12.11214],[92.99735,12.11228],[92.99722,12.11176],[92.99934,12.11352],[92.99807,12.11136],[92.99972,12.1109],[93.00097,12.11097],[93.00168,12.1112],[93.00257,12.11215],[93.00314,12.11687],[93.00281,12.11791],[93.00213,12.11855],[93.00066,12.118],[92.99835,12.11589],[92.99722,12.11366],[92.99823,12.11613],[93.00101,12.11887],[93.00103,12.12193],[92.99905,12.12332],[92.99721,12.12784],[92.99653,12.12807],[92.99612,12.12905],[92.99495,12.13019],[92.99419,12.13259],[92.99473,12.13393],[92.99317,12.13612],[92.99387,12.13721],[92.99393,12.13879],[92.99291,12.13948],[92.99562,12.14093],[92.99511,12.1415],[92.99505,12.14238],[92.99554,12.14281],[92.99548,12.14451],[92.99497,12.145],[92.99499,12.14587],[92.99741,12.14554],[92.99784,12.14595],[92.99601,12.14689],[92.99721,12.14784],[92.99721,12.14823],[92.99651,12.14818],[92.99586,12.14874],[92.99552,12.15273],[92.99471,12.15624],[92.9941,12.15617],[92.99347,12.15519],[92.99424,12.15296],[92.99436,12.15081],[92.99396,12.14704],[92.99344,12.14536],[92.9929,12.14514],[92.99342,12.14689],[92.99328,12.14889],[92.99277,12.14835],[92.9925,12.14587],[92.9921,12.14537],[92.99185,12.14562],[92.99164,12.14864],[92.99251,12.14993],[92.99244,12.1507],[92.99101,12.14983],[92.99059,12.14828],[92.99024,12.14869],[92.99037,12.1497],[92.98975,12.14928],[92.9895,12.14949],[92.98975,12.15033],[92.98941,12.15166],[92.99115,12.15064],[92.99218,12.15152],[92.99179,12.15218],[92.9906,12.15185],[92.99034,12.15227],[92.9905,12.1531],[92.99194,12.15388],[92.99171,12.15562],[92.99086,12.15549],[92.98982,12.1537],[92.98934,12.1535],[92.98819,12.15603],[92.98957,12.15761],[92.98929,12.15839],[92.98991,12.15813],[92.98943,12.15657],[92.99075,12.1584]]],[[[92.75897,12.1798],[92.75831,12.18026],[92.75808,12.18051],[92.75768,12.18113],[92.75742,12.18126],[92.75715,12.18127],[92.75653,12.18104],[92.75562,12.18097],[92.75555,12.18085],[92.75556,12.17993],[92.75567,12.17967],[92.75583,12.17954],[92.75633,12.17958],[92.75659,12.17951],[92.75692,12.17914],[92.75722,12.17896],[92.7577,12.17889],[92.75837,12.17892],[92.75869,12.17867],[92.75874,12.17846],[92.75869,12.17747],[92.75883,12.17598],[92.75868,12.17554],[92.75816,12.17462],[92.75818,12.1741],[92.75842,12.17388],[92.7587,12.17377],[92.75901,12.17383],[92.75926,12.17403],[92.75957,12.17445],[92.75969,12.17453],[92.75994,12.17452],[92.76005,12.17447],[92.7603,12.1738],[92.76076,12.17347],[92.76098,12.17357],[92.76121,12.17381],[92.7616,12.1746],[92.76152,12.17478],[92.76136,12.17491],[92.76077,12.17498],[92.76063,12.17509],[92.76056,12.1753],[92.76045,12.17661],[92.76098,12.17726],[92.76127,12.17786],[92.76102,12.17887],[92.76129,12.17933],[92.7613,12.17981],[92.76115,12.17996],[92.76089,12.18003],[92.76038,12.17984],[92.75987,12.17976],[92.75956,12.17973],[92.75897,12.1798]]],[[[93.01304,12.1576],[93.01322,12.15777],[93.01322,12.158],[93.01316,12.15827],[93.0128,12.15866],[93.01252,12.15876],[93.01217,12.15874],[93.012,12.15841],[93.01217,12.15792],[93.01245,12.15765],[93.01276,12.15758],[93.01304,12.1576]]],[[[93.12495,12.1521],[93.12473,12.15236],[93.1244,12.1524],[93.12418,12.15306],[93.12333,12.15297],[93.12327,12.15257],[93.12284,12.15222],[93.12284,12.1525],[93.12221,12.15239],[93.11982,12.15159],[93.11972,12.15134],[93.12017,12.15113],[93.12034,12.15131],[93.12066,12.15118],[93.12082,12.15135],[93.12112,12.15127],[93.12144,12.15151],[93.12161,12.15137],[93.12091,12.15102],[93.11958,12.15097],[93.11877,12.15075],[93.11863,12.15107],[93.11823,12.15084],[93.11766,12.15082],[93.1177,12.15062],[93.11726,12.15045],[93.11709,12.15009],[93.1164,12.15005],[93.11526,12.14948],[93.11479,12.14871],[93.11483,12.14716],[93.11379,12.14705],[93.11325,12.14626],[93.11285,12.1461],[93.11276,12.14572],[93.1125,12.14556],[93.11203,12.14561],[93.11177,12.14626],[93.11135,12.1467],[93.1111,12.14667],[93.11055,12.14579],[93.1094,12.14579],[93.10856,12.14495],[93.10851,12.14332],[93.10835,12.14293],[93.10865,12.14218],[93.10821,12.14029],[93.10844,12.13876],[93.1087,12.13846],[93.1099,12.13835],[93.11056,12.1379],[93.11045,12.1352],[93.1099,12.13449],[93.10962,12.13331],[93.10983,12.1323],[93.11152,12.12978],[93.11242,12.12925],[93.11433,12.12902],[93.11463,12.12875],[93.11503,12.12884],[93.11516,12.12924],[93.11668,12.12909],[93.11716,12.12933],[93.11766,12.12994],[93.11791,12.13066],[93.11828,12.13185],[93.11819,12.13253],[93.11846,12.13282],[93.11881,12.13293],[93.11905,12.13375],[93.11966,12.13381],[93.11963,12.13408],[93.11992,12.13403],[93.11988,12.13432],[93.12012,12.1345],[93.11976,12.13472],[93.11948,12.13451],[93.11953,12.13439],[93.11916,12.13438],[93.12108,12.13629],[93.12118,12.13681],[93.12188,12.13687],[93.12183,12.13709],[93.12215,12.13717],[93.12195,12.13749],[93.12207,12.1376],[93.1218,12.1378],[93.12124,12.13708],[93.1214,12.13756],[93.12085,12.13786],[93.12171,12.13879],[93.12208,12.13783],[93.12243,12.13795],[93.12288,12.13838],[93.12337,12.13952],[93.12345,12.14097],[93.12332,12.1414],[93.12301,12.14164],[93.12223,12.14098],[93.1223,12.14087],[93.12201,12.14106],[93.1219,12.14122],[93.12206,12.14139],[93.12181,12.14184],[93.12186,12.14271],[93.12158,12.14326],[93.12169,12.14349],[93.12135,12.14382],[93.12206,12.14452],[93.12239,12.14448],[93.12252,12.14466],[93.12245,12.14498],[93.12263,12.14489],[93.12303,12.14535],[93.12319,12.14622],[93.12345,12.14652],[93.12406,12.1465],[93.12396,12.14734],[93.12366,12.14763],[93.12341,12.14703],[93.12366,12.14875],[93.12361,12.15012],[93.12372,12.15069],[93.12393,12.15005],[93.12442,12.15016],[93.12447,12.15085],[93.12398,12.15112],[93.1248,12.15145],[93.12495,12.1521]]],[[[92.72904,12.18437],[92.72978,12.18494],[92.72993,12.1854],[92.72987,12.18614],[92.73017,12.18713],[92.73034,12.18796],[92.73028,12.18856],[92.72999,12.18899],[92.72938,12.18933],[92.72868,12.18913],[92.72835,12.18878],[92.7265,12.18727],[92.72529,12.18668],[92.72448,12.1858],[92.72431,12.18503],[92.72437,12.18469],[92.72473,12.18428],[92.72514,12.18406],[92.72597,12.18418],[92.72685,12.18443],[92.72742,12.18433],[92.72827,12.18395],[92.72904,12.18437]]],[[[93.01533,12.16394],[93.0155,12.16402],[93.01562,12.16415],[93.01571,12.16431],[93.01575,12.16441],[93.01576,12.16458],[93.01572,12.1647],[93.01569,12.16477],[93.0156,12.16483],[93.01553,12.16485],[93.01544,12.16485],[93.01533,12.16482],[93.01522,12.16477],[93.01511,12.16471],[93.01504,12.16466],[93.01499,12.16459],[93.01495,12.16447],[93.01491,12.16422],[93.01493,12.16413],[93.01505,12.164],[93.01516,12.16395],[93.01533,12.16394]]],[[[93.02843,12.16659],[93.02756,12.16786],[93.02421,12.16793],[93.02389,12.16695],[93.0196,12.16764],[93.02107,12.1665],[93.02285,12.16655],[93.0225,12.16446],[93.02127,12.163],[93.01745,12.16287],[93.01849,12.16223],[93.01843,12.16068],[93.02,12.16075],[93.02028,12.15985],[93.01868,12.15815],[93.01704,12.16105],[93.01504,12.15811],[93.01623,12.15557],[93.01465,12.15414],[93.01147,12.15366],[93.01113,12.15513],[93.01044,12.15412],[93.0086,12.15653],[93.00727,12.15623],[93.00924,12.15465],[93.01018,12.15228],[93.0081,12.1532],[93.00848,12.15103],[93.00784,12.14966],[93.00556,12.14751],[93.00394,12.14776],[93.00396,12.14689],[93.00308,12.14652],[93.00351,12.14572],[93.00239,12.14491],[93.00327,12.14328],[93.00477,12.14482],[93.00452,12.14565],[93.00543,12.14606],[93.0047,12.14279],[93.00348,12.14097],[93.0025,12.14285],[93.00149,12.14233],[93.00186,12.13834],[93.00033,12.13479],[93.00176,12.1255],[93.0003,12.12714],[93.00072,12.12817],[93.00007,12.1293],[93.0008,12.1306],[93.0,12.13161],[93.00044,12.13641],[92.99968,12.13724],[92.99968,12.14028],[92.99898,12.14033],[92.99869,12.13893],[92.99722,12.1385],[92.99609,12.1393],[92.99817,12.13709],[92.9956,12.13683],[92.99722,12.1363],[92.99765,12.13436],[92.99542,12.13412],[92.99663,12.13213],[92.99535,12.13167],[92.99728,12.12943],[92.99987,12.12409],[93.00261,12.12117],[93.00221,12.11966],[93.00379,12.11748],[93.00281,12.11202],[92.99956,12.10976],[93.00595,12.10808],[93.00578,12.10687],[93.00654,12.10689],[93.00611,12.10575],[93.00719,12.10499],[93.0074,12.0985],[93.00565,12.09268],[93.00591,12.08793],[93.00458,12.0829],[93.00507,12.07676],[93.01044,12.07021],[93.01282,12.06932],[93.01668,12.06943],[93.01645,12.0668],[93.01716,12.06605],[93.01919,12.06865],[93.02037,12.06905],[93.02196,12.06847],[93.02077,12.06658],[93.02114,12.06573],[93.02324,12.06572],[93.02523,12.06751],[93.02532,12.06396],[93.0274,12.0624],[93.02817,12.06513],[93.02894,12.06457],[93.02983,12.06151],[93.03133,12.06023],[93.03076,12.05846],[93.03467,12.05371],[93.03671,12.04713],[93.03857,12.04389],[93.03986,12.0425],[93.04344,12.04264],[93.04611,12.04318],[93.04806,12.04464],[93.05119,12.04933],[93.05181,12.05268],[93.0532,12.05378],[93.05295,12.05525],[93.0536,12.05583],[93.05304,12.05794],[93.05527,12.06172],[93.05454,12.0698],[93.0538,12.07036],[93.05204,12.06939],[93.05147,12.07091],[93.05329,12.07056],[93.0541,12.07113],[93.05375,12.07201],[93.05064,12.07226],[93.05056,12.07471],[93.05106,12.07558],[93.053,12.07399],[93.05382,12.0742],[93.054,12.07658],[93.05249,12.08079],[93.0511,12.08134],[93.05066,12.08241],[93.04928,12.08266],[93.04708,12.08585],[93.0445,12.08738],[93.03739,12.0964],[93.03581,12.09687],[93.03561,12.0991],[93.03382,12.09962],[93.03441,12.1006],[93.03313,12.10205],[93.0332,12.10353],[93.03216,12.10531],[93.03349,12.10545],[93.03171,12.11076],[93.03167,12.11584],[93.03279,12.12086],[93.03545,12.12383],[93.03545,12.12586],[93.03177,12.1276],[93.03047,12.13013],[93.02908,12.13618],[93.02374,12.14147],[93.02402,12.14205],[93.02605,12.14149],[93.02778,12.14299],[93.02601,12.14805],[93.02705,12.15115],[93.0264,12.15296],[93.02689,12.15672],[93.02869,12.16272],[93.02792,12.16502],[93.02843,12.16659]]],[[[92.86595,12.18211],[92.86601,12.18221],[92.86602,12.1824],[92.86592,12.18258],[92.86577,12.18276],[92.86548,12.18283],[92.86541,12.18297],[92.86527,12.18307],[92.86514,12.18306],[92.86499,12.18295],[92.8649,12.18276],[92.86488,12.18256],[92.86488,12.18243],[92.8649,12.18229],[92.86496,12.18218],[92.86507,12.18208],[92.86517,12.182],[92.86526,12.18196],[92.86535,12.18194],[92.8654,12.18196],[92.86546,12.18201],[92.86548,12.18211],[92.86566,12.18204],[92.86582,12.18202],[92.86595,12.18211]]],[[[92.84808,12.19565],[92.84818,12.19582],[92.84819,12.19614],[92.84812,12.19651],[92.848,12.19683],[92.84783,12.19691],[92.8476,12.19693],[92.84745,12.19683],[92.84734,12.19671],[92.84721,12.19637],[92.84731,12.19609],[92.84753,12.1958],[92.8478,12.19558],[92.84802,12.19555],[92.84808,12.19565]]],[[[92.69627,12.23893],[92.69315,12.23901],[92.68767,12.23499],[92.68753,12.22919],[92.68554,12.22759],[92.68361,12.22097],[92.68614,12.21382],[92.68319,12.20617],[92.6824,12.21253],[92.6796,12.21375],[92.67825,12.21203],[92.67736,12.19687],[92.68175,12.19396],[92.68103,12.19176],[92.67994,12.19454],[92.67797,12.19513],[92.67579,12.18704],[92.67434,12.19916],[92.67614,12.20381],[92.67663,12.21539],[92.67395,12.21779],[92.66846,12.20543],[92.66438,12.20233],[92.65663,12.18076],[92.65285,12.18109],[92.66434,12.2162],[92.66705,12.21863],[92.66412,12.22185],[92.66039,12.21494],[92.65033,12.18784],[92.64454,12.1786],[92.63936,12.15453],[92.63355,12.1407],[92.63048,12.12278],[92.63452,12.12032],[92.62965,12.11956],[92.63094,12.11624],[92.62861,12.11621],[92.62719,12.11424],[92.62205,12.10139],[92.61871,12.06829],[92.6194,12.06327],[92.62492,12.05946],[92.6217,12.05167],[92.62207,12.04852],[92.62549,12.0469],[92.62816,12.043],[92.62397,12.03989],[92.62038,12.03972],[92.62181,12.03644],[92.62036,12.03152],[92.62411,12.02812],[92.62098,12.02486],[92.61725,12.02403],[92.61585,12.01205],[92.61181,11.9999],[92.61323,11.99476],[92.61554,11.99293],[92.61228,11.9918],[92.61104,11.98753],[92.61076,11.96008],[92.60792,11.95794],[92.60563,11.95915],[92.60495,11.95821],[92.60673,11.95437],[92.60846,11.9554],[92.60704,11.94892],[92.61037,11.94378],[92.60762,11.9298],[92.59948,11.9231],[92.59777,11.91832],[92.59356,11.92121],[92.59263,11.91849],[92.59409,11.90628],[92.59489,11.90476],[92.59685,11.90569],[92.59867,11.9045],[92.59997,11.90631],[92.59837,11.90622],[92.59813,11.9078],[92.59962,11.90964],[92.59711,11.91083],[92.59952,11.91215],[92.60128,11.90991],[92.60784,11.91458],[92.60901,11.92433],[92.61249,11.92558],[92.61323,11.92439],[92.61586,11.92852],[92.61517,11.9376],[92.61624,11.92883],[92.61319,11.92403],[92.61234,11.92525],[92.60901,11.92394],[92.60797,11.92061],[92.61659,11.92126],[92.62035,11.93108],[92.61816,11.92348],[92.61978,11.92183],[92.61751,11.92319],[92.61696,11.92121],[92.60981,11.92002],[92.60819,11.91414],[92.60629,11.91353],[92.609,11.91183],[92.61068,11.91462],[92.60961,11.90896],[92.60843,11.90967],[92.60769,11.90774],[92.60941,11.90472],[92.60831,11.8953],[92.60922,11.88636],[92.60627,11.88119],[92.60446,11.88169],[92.60315,11.88865],[92.6003,11.87891],[92.60137,11.87518],[92.60553,11.8795],[92.60345,11.87763],[92.59965,11.86731],[92.60367,11.86408],[92.6075,11.86718],[92.60317,11.86322],[92.60474,11.85964],[92.61165,11.85527],[92.60508,11.8586],[92.60696,11.85655],[92.60527,11.8525],[92.60891,11.85019],[92.61026,11.84731],[92.60478,11.85286],[92.60656,11.85671],[92.60271,11.85806],[92.59886,11.86724],[92.60081,11.87329],[92.59924,11.87931],[92.60097,11.88564],[92.59973,11.88951],[92.60051,11.89824],[92.5968,11.90058],[92.59822,11.89763],[92.59734,11.89636],[92.59282,11.90204],[92.59158,11.88368],[92.58767,11.88124],[92.58687,11.87649],[92.58717,11.88124],[92.59092,11.88346],[92.59136,11.8864],[92.58634,11.88639],[92.58309,11.87806],[92.58585,11.87622],[92.58419,11.87429],[92.58546,11.87627],[92.58287,11.87701],[92.58584,11.88403],[92.5837,11.89283],[92.58433,11.89744],[92.58656,11.89879],[92.58527,11.90033],[92.58416,11.89874],[92.58478,11.90457],[92.58251,11.90301],[92.58124,11.9058],[92.58472,11.9084],[92.5853,11.9121],[92.58183,11.91328],[92.58259,11.91838],[92.58106,11.91952],[92.57956,11.91754],[92.57435,11.91792],[92.57747,11.91746],[92.58088,11.92142],[92.58054,11.93137],[92.5794,11.93],[92.57779,11.93091],[92.57496,11.92877],[92.57181,11.92893],[92.57271,11.93158],[92.57108,11.9311],[92.57159,11.9343],[92.57045,11.93322],[92.57009,11.93476],[92.57153,11.93493],[92.57212,11.93855],[92.56937,11.94071],[92.5706,11.94173],[92.56919,11.95051],[92.56407,11.95081],[92.56241,11.94798],[92.56606,11.94628],[92.56778,11.94097],[92.56486,11.94501],[92.56143,11.94675],[92.55705,11.93795],[92.55102,11.93292],[92.55165,11.93003],[92.54987,11.92983],[92.54952,11.92789],[92.54637,11.93123],[92.54341,11.93214],[92.54026,11.93102],[92.54031,11.92859],[92.54392,11.92613],[92.53948,11.92319],[92.53864,11.91936],[92.54086,11.91762],[92.53602,11.91932],[92.53275,11.91312],[92.53423,11.90593],[92.53855,11.9035],[92.53413,11.90445],[92.53493,11.90033],[92.53223,11.90364],[92.53138,11.89952],[92.53073,11.90235],[92.52971,11.90306],[92.5291,11.90154],[92.52574,11.90404],[92.52244,11.90233],[92.52024,11.89862],[92.52147,11.89241],[92.5187,11.8931],[92.51775,11.89098],[92.51872,11.88735],[92.52071,11.88627],[92.519,11.88356],[92.52236,11.88007],[92.5246,11.88138],[92.52257,11.87834],[92.52241,11.87447],[92.52756,11.87249],[92.52632,11.8715],[92.52372,11.87345],[92.5241,11.87147],[92.52008,11.87665],[92.51754,11.87678],[92.51398,11.87241],[92.51248,11.86793],[92.51366,11.86735],[92.51167,11.86693],[92.51161,11.86435],[92.51396,11.86177],[92.51829,11.86109],[92.52039,11.85622],[92.51925,11.85619],[92.51827,11.86053],[92.51648,11.86107],[92.5154,11.86069],[92.51631,11.85938],[92.51468,11.86084],[92.51208,11.86025],[92.51066,11.85684],[92.50817,11.85632],[92.50821,11.85442],[92.51028,11.8538],[92.50688,11.84947],[92.5075,11.8415],[92.50982,11.8446],[92.512,11.84383],[92.51294,11.84121],[92.51672,11.84169],[92.52013,11.83967],[92.51941,11.83738],[92.51966,11.83906],[92.51645,11.84084],[92.50703,11.83522],[92.50658,11.82889],[92.50924,11.82881],[92.5069,11.82829],[92.50567,11.82452],[92.50807,11.82403],[92.50611,11.82341],[92.50993,11.8112],[92.51239,11.81538],[92.51458,11.81558],[92.51215,11.81227],[92.51455,11.80704],[92.51855,11.80665],[92.52056,11.81058],[92.52382,11.80737],[92.52623,11.81088],[92.52647,11.819],[92.52804,11.8217],[92.52724,11.82572],[92.52989,11.82902],[92.52912,11.83023],[92.53103,11.83387],[92.53279,11.83364],[92.53765,11.8403],[92.54237,11.83669],[92.54353,11.83315],[92.54176,11.83115],[92.54298,11.82873],[92.54609,11.83598],[92.5441,11.84161],[92.54502,11.84334],[92.54674,11.82944],[92.53901,11.8236],[92.53584,11.81317],[92.53141,11.80746],[92.53199,11.80581],[92.53331,11.80693],[92.53507,11.80283],[92.5384,11.80722],[92.53757,11.80358],[92.53923,11.80109],[92.54148,11.80667],[92.54537,11.80675],[92.54857,11.80891],[92.54845,11.81029],[92.54956,11.80975],[92.54275,11.80545],[92.54284,11.80135],[92.53853,11.79918],[92.5365,11.80166],[92.53523,11.79812],[92.53427,11.80141],[92.53237,11.7998],[92.53289,11.796],[92.52941,11.795],[92.53218,11.79024],[92.53765,11.79268],[92.5393,11.79032],[92.53943,11.78531],[92.54072,11.78554],[92.54054,11.78912],[92.54337,11.78833],[92.54205,11.79284],[92.54697,11.80106],[92.54958,11.80223],[92.55034,11.78099],[92.54907,11.77935],[92.55145,11.77775],[92.55022,11.77469],[92.55172,11.77215],[92.55604,11.77085],[92.55865,11.77265],[92.55063,11.76372],[92.55165,11.76076],[92.55017,11.75859],[92.5516,11.74981],[92.55061,11.74543],[92.55259,11.74124],[92.54981,11.73746],[92.55011,11.73024],[92.55211,11.72559],[92.55016,11.71951],[92.55339,11.7145],[92.55198,11.71217],[92.55447,11.71082],[92.55338,11.7076],[92.55611,11.7063],[92.55828,11.69892],[92.55805,11.6923],[92.56449,11.69132],[92.56837,11.69687],[92.57099,11.69681],[92.5743,11.71548],[92.58133,11.71618],[92.58492,11.71341],[92.58186,11.71738],[92.58524,11.71497],[92.58687,11.72704],[92.58913,11.72934],[92.59129,11.73828],[92.59101,11.73287],[92.58719,11.72575],[92.58666,11.71666],[92.59387,11.70957],[92.5983,11.71003],[92.60378,11.70702],[92.59765,11.70958],[92.58968,11.70791],[92.59249,11.70775],[92.59225,11.70262],[92.59574,11.69762],[92.59513,11.69427],[92.59897,11.69021],[92.59747,11.68597],[92.59797,11.68093],[92.59611,11.67949],[92.59446,11.67316],[92.59121,11.67241],[92.5902,11.66803],[92.59064,11.66601],[92.59348,11.66578],[92.59746,11.65665],[92.59944,11.65717],[92.59706,11.65231],[92.5977,11.64909],[92.60713,11.63963],[92.60809,11.63238],[92.60899,11.63427],[92.61229,11.63513],[92.6202,11.63297],[92.62611,11.62802],[92.63041,11.6283],[92.63203,11.64015],[92.6295,11.64964],[92.63039,11.65188],[92.63249,11.64956],[92.63436,11.6502],[92.63711,11.64581],[92.63395,11.64014],[92.63406,11.63309],[92.636,11.63221],[92.63747,11.63405],[92.6376,11.63194],[92.63905,11.63161],[92.6382,11.63637],[92.64145,11.63964],[92.6447,11.63527],[92.64307,11.6247],[92.64081,11.62051],[92.63491,11.61547],[92.62923,11.61708],[92.6291,11.62595],[92.62701,11.62644],[92.62387,11.61783],[92.62179,11.61872],[92.62179,11.62089],[92.62046,11.61913],[92.61704,11.62159],[92.60857,11.62104],[92.60845,11.61579],[92.60533,11.61026],[92.60184,11.60865],[92.60279,11.60399],[92.6074,11.60086],[92.60445,11.59319],[92.60839,11.5933],[92.61369,11.58753],[92.61706,11.58645],[92.61879,11.58259],[92.61939,11.57184],[92.61648,11.56344],[92.62017,11.56125],[92.62687,11.57141],[92.63114,11.5744],[92.6324,11.58079],[92.63713,11.57744],[92.63694,11.57506],[92.64625,11.5724],[92.64129,11.55953],[92.64845,11.54977],[92.64776,11.54644],[92.6428,11.54009],[92.6452,11.52253],[92.64942,11.51796],[92.65803,11.51272],[92.6675,11.50183],[92.6785,11.50431],[92.68223,11.50676],[92.67957,11.50933],[92.68174,11.50903],[92.68376,11.51131],[92.68692,11.50651],[92.6899,11.50619],[92.69248,11.50376],[92.69691,11.50578],[92.69531,11.49919],[92.69686,11.49606],[92.69921,11.4966],[92.69872,11.4945],[92.70379,11.49344],[92.70759,11.48946],[92.70533,11.485],[92.71023,11.47738],[92.7108,11.48756],[92.71558,11.4944],[92.71609,11.50293],[92.71896,11.50381],[92.71842,11.50572],[92.72231,11.51097],[92.72198,11.5132],[92.72664,11.51683],[92.72291,11.53027],[92.726,11.5366],[92.73109,11.54227],[92.73059,11.54592],[92.73393,11.55285],[92.73344,11.5562],[92.73103,11.55548],[92.72967,11.5582],[92.73331,11.56087],[92.73302,11.56472],[92.73623,11.56397],[92.73899,11.5678],[92.73975,11.57454],[92.73717,11.57944],[92.73907,11.57755],[92.74142,11.57876],[92.74368,11.58985],[92.74194,11.58997],[92.74134,11.59352],[92.74878,11.60198],[92.7492,11.60703],[92.75428,11.61416],[92.75108,11.62015],[92.75231,11.62109],[92.75114,11.62415],[92.75136,11.62756],[92.75261,11.62746],[92.75185,11.63269],[92.74829,11.63748],[92.74827,11.64003],[92.74015,11.64098],[92.73919,11.63853],[92.73772,11.63872],[92.73914,11.63917],[92.73903,11.64149],[92.74644,11.6405],[92.74707,11.64399],[92.75152,11.64373],[92.75485,11.6464],[92.75673,11.65115],[92.7552,11.65322],[92.75685,11.65582],[92.753,11.65802],[92.75599,11.66505],[92.75205,11.66842],[92.74724,11.66844],[92.74893,11.67418],[92.74723,11.67666],[92.7428,11.67598],[92.73541,11.6778],[92.73495,11.6732],[92.73185,11.67199],[92.72985,11.67405],[92.73084,11.68143],[92.72682,11.6813],[92.72282,11.68375],[92.71438,11.67844],[92.7141,11.67592],[92.7177,11.66984],[92.71602,11.66424],[92.72066,11.66184],[92.72747,11.66095],[92.72821,11.65822],[92.7189,11.65302],[92.70921,11.65238],[92.7084,11.65115],[92.71131,11.64438],[92.71014,11.64331],[92.70599,11.64379],[92.70499,11.64864],[92.7005,11.65446],[92.69407,11.65287],[92.69512,11.64947],[92.69887,11.64813],[92.69895,11.64237],[92.70176,11.63913],[92.69957,11.64082],[92.6971,11.63807],[92.69324,11.63889],[92.69171,11.63353],[92.694,11.62898],[92.69371,11.62478],[92.69615,11.61735],[92.70163,11.61773],[92.69615,11.61676],[92.69624,11.61488],[92.6928,11.6111],[92.69698,11.60749],[92.69504,11.60664],[92.69256,11.60866],[92.69064,11.60693],[92.69106,11.60459],[92.68987,11.6061],[92.6864,11.60299],[92.6845,11.60317],[92.68696,11.60589],[92.68771,11.61136],[92.68974,11.613],[92.69203,11.61153],[92.69426,11.61502],[92.68929,11.61451],[92.69495,11.61643],[92.69065,11.62743],[92.68842,11.6285],[92.68779,11.62743],[92.69219,11.62269],[92.69093,11.62061],[92.68802,11.62292],[92.68882,11.6174],[92.68437,11.62011],[92.6826,11.6196],[92.67936,11.61521],[92.6795,11.61319],[92.67295,11.60737],[92.67203,11.6092],[92.67353,11.60773],[92.67609,11.61196],[92.67927,11.61329],[92.68174,11.61934],[92.68489,11.62025],[92.68837,11.61814],[92.6872,11.62331],[92.68852,11.62422],[92.6912,11.62247],[92.68658,11.62822],[92.68498,11.62878],[92.68412,11.62613],[92.68405,11.63329],[92.68113,11.63808],[92.68019,11.63564],[92.68355,11.63421],[92.68284,11.63062],[92.68062,11.62768],[92.68122,11.63271],[92.67929,11.63514],[92.67892,11.62951],[92.67649,11.62858],[92.67369,11.62399],[92.66712,11.63662],[92.66809,11.64082],[92.66439,11.64674],[92.66512,11.65258],[92.66014,11.65223],[92.66669,11.65481],[92.68264,11.65072],[92.68449,11.65374],[92.68331,11.65487],[92.68562,11.65595],[92.68313,11.65927],[92.68543,11.66298],[92.69125,11.66442],[92.69159,11.66811],[92.69773,11.66554],[92.69892,11.66686],[92.70212,11.6666],[92.70772,11.67051],[92.70743,11.67218],[92.70262,11.67216],[92.69984,11.67521],[92.70346,11.68232],[92.7009,11.6919],[92.70148,11.69596],[92.70568,11.70006],[92.69452,11.69951],[92.69207,11.69796],[92.69238,11.69563],[92.69123,11.69575],[92.69176,11.69753],[92.69015,11.69737],[92.6886,11.69264],[92.68627,11.69221],[92.68962,11.69518],[92.68919,11.69722],[92.68491,11.699],[92.68795,11.70715],[92.68468,11.70892],[92.68438,11.71214],[92.6818,11.71304],[92.68222,11.7141],[92.68529,11.71272],[92.6852,11.70921],[92.68903,11.70726],[92.68673,11.70245],[92.68997,11.69774],[92.6962,11.70205],[92.69132,11.7115],[92.69412,11.71741],[92.69645,11.71888],[92.6919,11.71107],[92.69732,11.70222],[92.70379,11.70246],[92.70056,11.70596],[92.70088,11.70868],[92.69619,11.71131],[92.69603,11.71258],[92.70047,11.71051],[92.70687,11.70309],[92.7066,11.69927],[92.71095,11.69325],[92.71386,11.69777],[92.71362,11.70431],[92.71655,11.70542],[92.71847,11.70432],[92.72085,11.69727],[92.72598,11.69765],[92.72741,11.69418],[92.72847,11.6979],[92.73003,11.69853],[92.73775,11.69003],[92.74472,11.69044],[92.74463,11.70142],[92.74202,11.70798],[92.74341,11.71154],[92.74631,11.71107],[92.75,11.7038],[92.75352,11.70004],[92.75445,11.70065],[92.75687,11.70712],[92.75681,11.71126],[92.75408,11.71708],[92.75604,11.7198],[92.75515,11.72514],[92.75784,11.7285],[92.75823,11.73685],[92.76109,11.73958],[92.76052,11.74537],[92.76446,11.75074],[92.76365,11.76764],[92.76766,11.7728],[92.76592,11.77934],[92.77021,11.78562],[92.76855,11.79928],[92.77009,11.80043],[92.76964,11.80271],[92.77382,11.81247],[92.77497,11.82479],[92.77716,11.82771],[92.77539,11.83433],[92.77987,11.844],[92.77952,11.84964],[92.78083,11.85127],[92.78326,11.85058],[92.78481,11.85402],[92.78472,11.85654],[92.78251,11.85742],[92.78626,11.87258],[92.78474,11.87487],[92.78598,11.87714],[92.78512,11.88184],[92.78998,11.88545],[92.78496,11.88539],[92.77914,11.89163],[92.78005,11.89641],[92.78654,11.89971],[92.78764,11.90188],[92.78302,11.90474],[92.78788,11.91953],[92.78621,11.92304],[92.78713,11.92605],[92.78394,11.92751],[92.78182,11.93089],[92.78276,11.93374],[92.78468,11.93457],[92.78299,11.93692],[92.77902,11.93654],[92.77064,11.93955],[92.77008,11.93836],[92.76966,11.94017],[92.7659,11.93884],[92.76311,11.94081],[92.75995,11.93602],[92.75796,11.93704],[92.75,11.93125],[92.75,11.93656],[92.74853,11.93353],[92.74333,11.93119],[92.74087,11.92544],[92.74216,11.92009],[92.74421,11.92072],[92.74463,11.91936],[92.74371,11.92051],[92.74197,11.91961],[92.74075,11.92267],[92.73577,11.91634],[92.73135,11.90475],[92.7301,11.89874],[92.73546,11.89838],[92.73567,11.8965],[92.73709,11.89757],[92.73556,11.89616],[92.73489,11.89813],[92.72997,11.89737],[92.73095,11.89308],[92.72987,11.88107],[92.73175,11.88007],[92.73421,11.88324],[92.73602,11.8841],[92.73675,11.88301],[92.73452,11.88298],[92.73195,11.87905],[92.73038,11.87919],[92.7316,11.87508],[92.73293,11.87513],[92.73153,11.87464],[92.73096,11.8763],[92.72962,11.87192],[92.72846,11.86101],[92.73025,11.85757],[92.72965,11.85478],[92.72559,11.84928],[92.72389,11.84156],[92.71828,11.83185],[92.71774,11.82627],[92.71102,11.81885],[92.71031,11.81614],[92.71217,11.81238],[92.71007,11.81599],[92.70513,11.8132],[92.70513,11.81167],[92.70053,11.81198],[92.70082,11.80957],[92.70212,11.81062],[92.70362,11.80938],[92.69961,11.80963],[92.70425,11.80196],[92.70547,11.80227],[92.70516,11.80494],[92.70517,11.80105],[92.70828,11.79974],[92.7058,11.79269],[92.70803,11.79952],[92.70502,11.80005],[92.70199,11.80523],[92.70062,11.8049],[92.69891,11.80751],[92.69934,11.81127],[92.6975,11.81251],[92.68904,11.80516],[92.68416,11.80451],[92.68223,11.80252],[92.67707,11.78308],[92.67773,11.77755],[92.67626,11.77908],[92.67653,11.78317],[92.67389,11.78432],[92.67238,11.78277],[92.67412,11.78491],[92.67677,11.78356],[92.67781,11.79185],[92.67595,11.79189],[92.67454,11.79803],[92.67002,11.79804],[92.67454,11.79856],[92.67637,11.79189],[92.6775,11.79197],[92.68074,11.80389],[92.6821,11.8055],[92.68879,11.80664],[92.69232,11.81098],[92.69192,11.81367],[92.68818,11.81438],[92.68589,11.81294],[92.68717,11.81448],[92.67447,11.8209],[92.66404,11.81938],[92.6664,11.8225],[92.66252,11.82231],[92.65924,11.8261],[92.66055,11.82858],[92.65454,11.83332],[92.65553,11.83493],[92.65542,11.83264],[92.66073,11.82883],[92.65952,11.82616],[92.6628,11.82258],[92.66698,11.82311],[92.66461,11.81972],[92.67438,11.82143],[92.6899,11.81616],[92.6952,11.81291],[92.69507,11.81556],[92.69156,11.81769],[92.6957,11.82122],[92.69417,11.82266],[92.69616,11.82112],[92.69745,11.8226],[92.69918,11.82667],[92.69761,11.8273],[92.69783,11.83003],[92.69819,11.82707],[92.69996,11.82963],[92.70076,11.8287],[92.69724,11.82099],[92.69218,11.81834],[92.6928,11.81726],[92.70132,11.81421],[92.70969,11.82039],[92.71407,11.82893],[92.71379,11.83584],[92.71568,11.83327],[92.72032,11.84797],[92.72206,11.84929],[92.72526,11.86248],[92.7225,11.87714],[92.71558,11.8725],[92.71366,11.86877],[92.70931,11.86906],[92.71146,11.86734],[92.71049,11.863],[92.70787,11.86216],[92.70638,11.86444],[92.7084,11.86262],[92.71036,11.86329],[92.71112,11.86692],[92.70867,11.86815],[92.71033,11.8705],[92.70981,11.87283],[92.71234,11.86888],[92.71846,11.87689],[92.7209,11.87743],[92.72099,11.87961],[92.72222,11.87893],[92.72421,11.89118],[92.72022,11.89081],[92.71696,11.88831],[92.71367,11.88906],[92.71734,11.88881],[92.71981,11.89099],[92.71348,11.89342],[92.71276,11.89764],[92.71024,11.89583],[92.70707,11.90042],[92.70569,11.89911],[92.7039,11.90076],[92.70557,11.89946],[92.70716,11.90087],[92.70987,11.89652],[92.71335,11.89787],[92.71368,11.89437],[92.71819,11.8921],[92.72158,11.89235],[92.72507,11.89726],[92.72362,11.90277],[92.71802,11.90086],[92.71662,11.90231],[92.71805,11.9017],[92.72249,11.90483],[92.72407,11.90917],[92.72218,11.91823],[92.72395,11.92486],[92.72301,11.93144],[92.71932,11.93499],[92.71602,11.93457],[92.71337,11.92437],[92.71412,11.92192],[92.71097,11.92595],[92.71343,11.92519],[92.71378,11.9314],[92.71276,11.93419],[92.71049,11.93308],[92.7143,11.93769],[92.71717,11.93883],[92.71523,11.9459],[92.71736,11.94914],[92.71427,11.95189],[92.71282,11.95099],[92.71235,11.95399],[92.71451,11.95204],[92.71794,11.95826],[92.71634,11.96336],[92.71708,11.96598],[92.71523,11.96715],[92.7176,11.96623],[92.71729,11.96336],[92.7188,11.96267],[92.71957,11.96443],[92.72135,11.96283],[92.72417,11.96496],[92.72361,11.96736],[92.728,11.97016],[92.73059,11.96851],[92.73157,11.97107],[92.72877,11.97627],[92.72336,11.97469],[92.72243,11.97626],[92.72395,11.97817],[92.72188,11.98112],[92.72575,11.98236],[92.7284,11.99268],[92.73007,11.99388],[92.72518,11.99197],[92.72282,11.99371],[92.72289,11.98804],[92.72189,11.99308],[92.72574,11.99243],[92.7305,11.99971],[92.73162,11.99833],[92.74024,11.99766],[92.74357,11.9943],[92.74495,11.99682],[92.74395,11.99973],[92.74647,11.99631],[92.75,11.99675],[92.75,11.99546],[92.75278,11.9966],[92.75994,11.99465],[92.76394,11.98656],[92.76684,11.98983],[92.76576,11.99388],[92.77044,11.9977],[92.77041,11.99955],[92.76587,12.00378],[92.76622,12.01214],[92.7577,12.0088],[92.75564,12.00314],[92.75147,12.00321],[92.75059,12.01274],[92.75191,12.01516],[92.74925,12.01913],[92.74724,12.01693],[92.74217,12.01679],[92.73834,12.01073],[92.73687,12.01405],[92.73435,12.01545],[92.73333,12.01307],[92.73259,12.01438],[92.73847,12.01633],[92.73923,12.01886],[92.73132,12.01834],[92.73173,12.02314],[92.7285,12.02417],[92.72737,12.02307],[92.72577,12.02497],[92.72741,12.02253],[92.72514,12.02326],[92.72602,12.02543],[92.72731,12.02372],[92.73857,12.02426],[92.74001,12.02861],[92.73196,12.03022],[92.73575,12.03097],[92.73658,12.03402],[92.73328,12.03355],[92.73308,12.03571],[92.73061,12.03674],[92.72807,12.03549],[92.72839,12.03819],[92.73022,12.03919],[92.72734,12.05433],[92.72573,12.05446],[92.72545,12.04885],[92.72111,12.05159],[92.7196,12.04851],[92.71609,12.04982],[92.71535,12.04501],[92.71377,12.04438],[92.71295,12.03924],[92.71029,12.03542],[92.71044,12.03104],[92.70958,12.03392],[92.71247,12.03918],[92.71331,12.04473],[92.71501,12.04572],[92.71505,12.05168],[92.71335,12.05153],[92.71317,12.04793],[92.71099,12.05016],[92.70921,12.0455],[92.70732,12.04653],[92.70625,12.04406],[92.70074,12.04008],[92.69882,12.04203],[92.69681,12.04021],[92.6966,12.0425],[92.69729,12.04067],[92.69869,12.04247],[92.70067,12.04072],[92.70612,12.04461],[92.70714,12.04711],[92.70931,12.04639],[92.71097,12.05073],[92.71336,12.04902],[92.71244,12.05152],[92.71381,12.05278],[92.71813,12.04939],[92.72063,12.05251],[92.72507,12.04965],[92.7253,12.05739],[92.72746,12.05953],[92.73317,12.06138],[92.73614,12.05497],[92.73816,12.05723],[92.7336,12.06534],[92.73576,12.06698],[92.73599,12.07043],[92.73816,12.07014],[92.73968,12.07195],[92.73693,12.07807],[92.73245,12.0716],[92.73289,12.06838],[92.72962,12.07456],[92.72513,12.07335],[92.72436,12.07206],[92.72768,12.07047],[92.72608,12.07032],[92.72462,12.06474],[92.72276,12.0644],[92.7245,12.0653],[92.72555,12.0709],[92.72725,12.07055],[92.72405,12.07157],[92.72408,12.07288],[92.72815,12.07545],[92.7324,12.07232],[92.73612,12.07878],[92.73455,12.08326],[92.73176,12.08031],[92.73425,12.08367],[92.73396,12.08536],[92.73182,12.08518],[92.73396,12.08592],[92.73411,12.09609],[92.73008,12.09741],[92.73082,12.09473],[92.72541,12.0959],[92.73031,12.09536],[92.729,12.09762],[92.73318,12.09618],[92.73407,12.09729],[92.73575,12.10981],[92.74292,12.12015],[92.74347,12.12734],[92.75191,12.14814],[92.7534,12.15851],[92.75656,12.16316],[92.75498,12.16596],[92.7567,12.17567],[92.75092,12.18061],[92.74751,12.17727],[92.74393,12.1799],[92.7359,12.18213],[92.72825,12.1808],[92.72223,12.17732],[92.71937,12.17972],[92.71031,12.16067],[92.70933,12.16132],[92.71147,12.16771],[92.70857,12.16295],[92.70736,12.15807],[92.70979,12.15371],[92.70924,12.14781],[92.70874,12.15385],[92.70627,12.15826],[92.71192,12.17138],[92.7122,12.1755],[92.70851,12.17056],[92.70655,12.17065],[92.70235,12.16333],[92.7042,12.17884],[92.70904,12.18866],[92.70539,12.18847],[92.70424,12.19025],[92.70378,12.18764],[92.70103,12.18695],[92.70356,12.18848],[92.7036,12.19096],[92.70572,12.189],[92.71186,12.1897],[92.70663,12.19628],[92.70367,12.1928],[92.70829,12.20317],[92.70892,12.21616],[92.70747,12.21744],[92.70631,12.2165],[92.70708,12.22035],[92.70537,12.2212],[92.70526,12.2279],[92.70312,12.23215],[92.70017,12.23329],[92.69873,12.23805],[92.69627,12.23893]],[[92.7208,11.58561],[92.72337,11.58721],[92.72314,11.58993],[92.72516,11.59234],[92.72574,11.60397],[92.73015,11.60173],[92.72789,11.59689],[92.73147,11.59681],[92.73217,11.59458],[92.7353,11.59576],[92.73976,11.59139],[92.73731,11.58968],[92.7352,11.57086],[92.72985,11.56904],[92.73078,11.56741],[92.72957,11.56646],[92.72285,11.56732],[92.72123,11.56944],[92.72149,11.57404],[92.71659,11.57668],[92.71472,11.58438],[92.7208,11.58561]]],[[[92.87111,12.22887],[92.87101,12.2289],[92.87089,12.22889],[92.87077,12.22887],[92.87061,12.22876],[92.87046,12.22862],[92.87039,12.22847],[92.87037,12.22834],[92.87039,12.22827],[92.87048,12.22819],[92.87055,12.22808],[92.87062,12.22807],[92.87065,12.22799],[92.87074,12.22784],[92.87081,12.22777],[92.87092,12.2277],[92.87113,12.22765],[92.87127,12.22764],[92.8714,12.22769],[92.87152,12.22779],[92.87156,12.22795],[92.87152,12.22834],[92.87147,12.22856],[92.87136,12.22873],[92.8713,12.22872],[92.87111,12.22887]]],[[[92.73483,12.23959],[92.73229,12.24067],[92.7302,12.24252],[92.72926,12.24259],[92.72685,12.24019],[92.72604,12.23987],[92.72512,12.24033],[92.72396,12.23967],[92.7236,12.23855],[92.72406,12.23662],[92.72387,12.23532],[92.72286,12.23455],[92.72154,12.23441],[92.72086,12.23323],[92.72116,12.23115],[92.7206,12.22958],[92.72075,12.22813],[92.7221,12.22331],[92.7239,12.22129],[92.72252,12.21866],[92.72177,12.21818],[92.72148,12.21589],[92.7218,12.21535],[92.72149,12.21365],[92.72268,12.21048],[92.72252,12.20908],[92.72336,12.20728],[92.72253,12.20588],[92.72132,12.20518],[92.72156,12.20324],[92.72275,12.2021],[92.72201,12.19848],[92.72082,12.19733],[92.72081,12.19371],[92.72172,12.19231],[92.7216,12.1903],[92.72247,12.18833],[92.72399,12.18816],[92.72667,12.18996],[92.72916,12.19291],[92.7273,12.1948],[92.72851,12.19768],[92.72767,12.1948],[92.73021,12.19271],[92.73072,12.19178],[92.73117,12.18993],[92.73046,12.18931],[92.73119,12.18816],[92.73091,12.18759],[92.73262,12.18452],[92.73392,12.18465],[92.73549,12.18389],[92.73722,12.18375],[92.73932,12.18414],[92.74088,12.18343],[92.74231,12.18346],[92.74326,12.18226],[92.74555,12.18135],[92.74632,12.18011],[92.74724,12.18056],[92.74845,12.18304],[92.75,12.18415],[92.75,12.18308],[92.75085,12.18324],[92.75199,12.18212],[92.75417,12.18311],[92.75798,12.18285],[92.7601,12.18187],[92.76196,12.18237],[92.76296,12.18177],[92.76462,12.18411],[92.76654,12.18839],[92.76611,12.18991],[92.76469,12.1915],[92.76506,12.19392],[92.76705,12.19808],[92.76757,12.20063],[92.76723,12.20167],[92.76556,12.2033],[92.76197,12.20922],[92.76159,12.21317],[92.76224,12.22084],[92.76159,12.22407],[92.76186,12.22953],[92.76127,12.23001],[92.76033,12.22938],[92.75949,12.2294],[92.75744,12.23038],[92.75614,12.2297],[92.75538,12.22742],[92.7549,12.2281],[92.75513,12.22925],[92.75393,12.23066],[92.75242,12.23033],[92.75133,12.22928],[92.75054,12.22913],[92.74796,12.23063],[92.74601,12.23022],[92.74478,12.22782],[92.74411,12.22787],[92.74389,12.23031],[92.74245,12.23169],[92.74217,12.23341],[92.74045,12.23394],[92.73953,12.23613],[92.73891,12.23619],[92.73843,12.23553],[92.73751,12.22962],[92.73684,12.22816],[92.73843,12.22578],[92.74169,12.22358],[92.74296,12.22358],[92.74398,12.22294],[92.74421,12.2201],[92.74256,12.21428],[92.74403,12.21136],[92.74274,12.20485],[92.74236,12.20476],[92.74225,12.20614],[92.74323,12.21035],[92.7417,12.21406],[92.74288,12.2198],[92.74229,12.22046],[92.74138,12.22066],[92.7392,12.22302],[92.73841,12.22321],[92.73743,12.22283],[92.73597,12.22075],[92.73412,12.22062],[92.73455,12.21873],[92.7332,12.21442],[92.73335,12.2132],[92.73233,12.20969],[92.72954,12.21442],[92.73021,12.21578],[92.73062,12.21929],[92.73012,12.22183],[92.72901,12.22234],[92.72894,12.22275],[92.72968,12.22377],[92.72921,12.22464],[92.72968,12.22761],[92.72941,12.22812],[92.73095,12.22943],[92.72992,12.23153],[92.73147,12.23469],[92.73335,12.2359],[92.73328,12.23714],[92.73505,12.2389],[92.73483,12.23959]]],[[[93.08231,12.07883],[93.08734,12.08203],[93.08832,12.08497],[93.08877,12.08818],[93.08524,12.09163],[93.08558,12.09264],[93.08619,12.09319],[93.08918,12.08948],[93.09078,12.08901],[93.09329,12.09075],[93.09535,12.091],[93.09708,12.09281],[93.09797,12.09737],[93.09711,12.10187],[93.09852,12.11162],[93.09785,12.11338],[93.09894,12.11941],[93.09842,12.12063],[93.10159,12.12877],[93.10132,12.12964],[93.09715,12.13024],[93.09299,12.12881],[93.09645,12.13048],[93.10069,12.1304],[93.10097,12.13338],[93.09894,12.13878],[93.09658,12.1389],[93.09425,12.1363],[93.09256,12.13216],[93.09025,12.12922],[93.0926,12.12723],[93.09139,12.12398],[93.08928,12.12473],[93.08453,12.11934],[93.0866,12.12271],[93.08856,12.12411],[93.08848,12.12592],[93.08998,12.12682],[93.08721,12.12975],[93.08986,12.13419],[93.09224,12.13631],[93.09382,12.1414],[93.09501,12.14139],[93.09591,12.14261],[93.09731,12.14247],[93.09515,12.15362],[93.09363,12.15447],[93.09072,12.15323],[93.08906,12.15404],[93.088,12.15362],[93.08604,12.15628],[93.08656,12.15832],[93.08741,12.15841],[93.0873,12.16276],[93.09092,12.1698],[93.09043,12.17053],[93.09113,12.17101],[93.0921,12.17828],[93.09191,12.18188],[93.09047,12.18448],[93.08972,12.18383],[93.09028,12.1822],[93.08899,12.1833],[93.0851,12.17971],[93.08306,12.18069],[93.08152,12.1801],[93.0806,12.18173],[93.07816,12.18061],[93.07865,12.17969],[93.07626,12.17973],[93.07634,12.18035],[93.07804,12.17985],[93.07797,12.18078],[93.08034,12.18201],[93.08134,12.18171],[93.08149,12.18028],[93.08272,12.18092],[93.08538,12.1801],[93.08713,12.18327],[93.08888,12.18374],[93.08959,12.18563],[93.08709,12.18932],[93.0882,12.19155],[93.08793,12.19514],[93.08266,12.19974],[93.07966,12.19885],[93.0778,12.20105],[93.07983,12.20131],[93.07966,12.20206],[93.07753,12.2013],[93.07851,12.20242],[93.07708,12.20228],[93.07623,12.20314],[93.07427,12.20118],[93.0736,12.20186],[93.07173,12.20161],[93.07348,12.20224],[93.0743,12.20162],[93.07668,12.20405],[93.07709,12.20321],[93.07851,12.20373],[93.07831,12.20946],[93.06913,12.21223],[93.06861,12.21127],[93.06659,12.21172],[93.06519,12.21053],[93.06125,12.20188],[93.05459,12.19145],[93.04477,12.1652],[93.042,12.16091],[93.0421,12.15934],[93.0373,12.14461],[93.03762,12.14095],[93.03618,12.13856],[93.03638,12.13603],[93.03527,12.13209],[93.03705,12.12965],[93.03809,12.12619],[93.03927,12.12572],[93.03986,12.12636],[93.03951,12.12575],[93.04031,12.12478],[93.04262,12.1262],[93.04402,12.12522],[93.04674,12.11839],[93.04934,12.11867],[93.05252,12.12193],[93.05088,12.12294],[93.05525,12.12243],[93.05744,12.12054],[93.06009,12.12132],[93.0616,12.12304],[93.06442,12.12351],[93.06587,12.12124],[93.06689,12.12191],[93.06845,12.12148],[93.06878,12.1205],[93.06786,12.11939],[93.06797,12.12142],[93.06611,12.12089],[93.06419,12.1228],[93.06319,12.12284],[93.0624,12.11915],[93.06084,12.11915],[93.06111,12.11759],[93.0606,12.11935],[93.06204,12.11951],[93.06249,12.12278],[93.05815,12.12019],[93.05495,12.12176],[93.05336,12.12167],[93.05103,12.11748],[93.04799,12.11536],[93.04839,12.11179],[93.0568,12.09708],[93.06206,12.09338],[93.06368,12.09095],[93.06836,12.08801],[93.06921,12.086],[93.07031,12.08587],[93.07017,12.0851],[93.07193,12.08326],[93.07296,12.0802],[93.07382,12.07995],[93.07375,12.07877],[93.07728,12.07687],[93.08108,12.07751],[93.08231,12.07883]]],[[[92.93434,12.22591],[92.9341,12.22601],[92.93311,12.22555],[92.93304,12.22509],[92.92923,12.22419],[92.92757,12.22311],[92.92769,12.2228],[92.92654,12.22247],[92.92604,12.22211],[92.92598,12.22065],[92.92568,12.21966],[92.92395,12.21642],[92.92346,12.21289],[92.92422,12.20855],[92.92427,12.20735],[92.92489,12.20556],[92.92523,12.2052],[92.92582,12.20533],[92.9259,12.20569],[92.92559,12.20632],[92.92652,12.20613],[92.92979,12.20453],[92.93085,12.20365],[92.93177,12.20323],[92.93137,12.20279],[92.93192,12.19871],[92.93167,12.19589],[92.93232,12.19544],[92.93263,12.19564],[92.93271,12.19626],[92.93318,12.19681],[92.9334,12.19743],[92.93385,12.19771],[92.93445,12.1989],[92.93538,12.20158],[92.93555,12.20247],[92.93533,12.20477],[92.93579,12.20673],[92.93513,12.20969],[92.93524,12.21002],[92.9362,12.21095],[92.9368,12.21074],[92.93835,12.2115],[92.93915,12.21225],[92.93987,12.21337],[92.9407,12.21596],[92.94014,12.22059],[92.93962,12.22254],[92.9386,12.22394],[92.9376,12.22481],[92.93517,12.22566],[92.93465,12.22558],[92.93434,12.22591]]],[[[92.69831,12.24355],[92.69826,12.24502],[92.69848,12.24631],[92.6983,12.24718],[92.69836,12.24794],[92.69826,12.24812],[92.69795,12.2484],[92.69771,12.24874],[92.69731,12.24919],[92.69665,12.25014],[92.69657,12.25019],[92.69639,12.25012],[92.69611,12.24988],[92.69573,12.24939],[92.69543,12.24881],[92.69482,12.24724],[92.69475,12.24679],[92.69483,12.24646],[92.69506,12.24609],[92.69536,12.2458],[92.69628,12.24525],[92.69696,12.24473],[92.6974,12.24428],[92.69786,12.24369],[92.69803,12.24353],[92.6982,12.24348],[92.69831,12.24355]]],[[[93.01997,12.22324],[93.02037,12.22344],[93.02057,12.22375],[93.02074,12.22419],[93.0207,12.22443],[93.02057,12.22476],[93.02031,12.22509],[93.02006,12.22527],[93.0199,12.22526],[93.01932,12.22508],[93.01901,12.22494],[93.01882,12.2247],[93.0187,12.22438],[93.01871,12.22372],[93.01876,12.2234],[93.01897,12.22331],[93.01926,12.22329],[93.01964,12.22318],[93.01997,12.22324]]],[[[92.88133,12.23918],[92.88176,12.23929],[92.88205,12.23974],[92.88215,12.24001],[92.88225,12.24063],[92.88225,12.24133],[92.88212,12.24155],[92.8817,12.24171],[92.88133,12.24154],[92.88094,12.24093],[92.88059,12.23976],[92.88069,12.23939],[92.88096,12.2392],[92.88133,12.23918]]],[[[92.72288,12.25449],[92.7231,12.25489],[92.72382,12.25564],[92.724,12.25597],[92.724,12.25611],[92.72377,12.2563],[92.72303,12.25668],[92.72253,12.25674],[92.72197,12.25665],[92.72141,12.25635],[92.7209,12.25564],[92.72112,12.25536],[92.7217,12.25477],[92.72246,12.25437],[92.72281,12.25402],[92.72343,12.254],[92.72361,12.25427],[92.72343,12.25442],[92.72294,12.25435],[92.72288,12.25449]]],[[[92.7168,12.25622],[92.71687,12.25627],[92.71694,12.25641],[92.71706,12.25671],[92.71708,12.2569],[92.71707,12.2571],[92.71686,12.25768],[92.71663,12.25802],[92.71661,12.25819],[92.71662,12.25835],[92.71686,12.25885],[92.71687,12.25892],[92.71685,12.25898],[92.71677,12.25903],[92.7167,12.25901],[92.71652,12.25881],[92.71644,12.25875],[92.71634,12.25871],[92.71608,12.25871],[92.71593,12.25863],[92.71579,12.25859],[92.7157,12.2585],[92.71569,12.25834],[92.71571,12.25823],[92.71599,12.2577],[92.71624,12.25694],[92.71664,12.25633],[92.71674,12.25622],[92.7168,12.25622]]],[[[92.91199,12.24362],[92.91209,12.24391],[92.91217,12.24448],[92.91217,12.24514],[92.91207,12.24545],[92.91177,12.24562],[92.91146,12.24563],[92.91118,12.24548],[92.91095,12.24527],[92.91093,12.24501],[92.91098,12.24455],[92.91108,12.24408],[92.91116,12.24381],[92.91133,12.24368],[92.91167,12.2435],[92.91199,12.24362]]],[[[92.86582,12.25003],[92.86522,12.25051],[92.86477,12.25068],[92.86422,12.25056],[92.86362,12.25028],[92.86217,12.24881],[92.86157,12.24799],[92.86089,12.24612],[92.86085,12.24558],[92.86096,12.24484],[92.86087,12.2438],[92.86091,12.243],[92.86118,12.24188],[92.86226,12.23882],[92.86299,12.23775],[92.86371,12.237],[92.86445,12.23636],[92.86505,12.23603],[92.86548,12.23605],[92.86583,12.23618],[92.86614,12.23657],[92.86646,12.23965],[92.86678,12.24035],[92.86686,12.24075],[92.86645,12.24218],[92.86668,12.24284],[92.86696,12.24327],[92.8671,12.24401],[92.86777,12.24483],[92.86773,12.24559],[92.86782,12.24593],[92.86877,12.24844],[92.86876,12.2487],[92.86858,12.24893],[92.86774,12.24958],[92.86695,12.24977],[92.86639,12.24979],[92.86582,12.25003]]],[[[92.88023,12.24576],[92.88041,12.2458],[92.88058,12.24599],[92.88077,12.2468],[92.88091,12.24751],[92.88094,12.24801],[92.88092,12.2486],[92.88077,12.24892],[92.88062,12.24896],[92.87954,12.24984],[92.87931,12.24995],[92.87922,12.24994],[92.87914,12.24988],[92.87911,12.2498],[92.87903,12.24934],[92.87894,12.2491],[92.87869,12.2491],[92.87849,12.24896],[92.87838,12.24892],[92.87844,12.2485],[92.87879,12.2478],[92.87909,12.24708],[92.87931,12.24632],[92.87953,12.24587],[92.87989,12.24578],[92.88023,12.24576]]],[[[92.91149,12.24716],[92.91168,12.24731],[92.91183,12.24766],[92.91178,12.24799],[92.91164,12.24824],[92.9116,12.24845],[92.91164,12.24873],[92.91158,12.24903],[92.91129,12.24931],[92.91072,12.2494],[92.9104,12.24937],[92.91025,12.24928],[92.91021,12.24913],[92.91017,12.24884],[92.91021,12.24846],[92.91031,12.24793],[92.91057,12.24748],[92.91078,12.24722],[92.91114,12.2471],[92.91149,12.24716]]],[[[92.90649,12.24867],[92.90715,12.24878],[92.90754,12.24892],[92.90779,12.24917],[92.90787,12.24938],[92.90783,12.24969],[92.90771,12.25003],[92.90717,12.2506],[92.90684,12.25084],[92.90665,12.25083],[92.90646,12.25067],[92.90622,12.25031],[92.90593,12.24982],[92.90576,12.24931],[92.90575,12.24905],[92.90585,12.24889],[92.90607,12.24869],[92.90649,12.24867]]],[[[92.91136,12.24979],[92.9115,12.2498],[92.91175,12.25003],[92.91175,12.25009],[92.91182,12.25037],[92.91171,12.25104],[92.91166,12.25126],[92.91144,12.25137],[92.9113,12.25135],[92.9111,12.25119],[92.9108,12.25078],[92.91072,12.25029],[92.91072,12.25003],[92.9108,12.24994],[92.91099,12.24978],[92.91136,12.24979]]],[[[92.9073,12.25263],[92.90716,12.25267],[92.90704,12.25276],[92.90689,12.25278],[92.90646,12.2528],[92.90626,12.25277],[92.90616,12.25268],[92.90611,12.25214],[92.90609,12.25186],[92.90626,12.25139],[92.90619,12.25128],[92.90625,12.25118],[92.90659,12.25111],[92.90721,12.25111],[92.90761,12.25106],[92.90785,12.25117],[92.90794,12.25142],[92.90817,12.25169],[92.90831,12.25187],[92.90834,12.25194],[92.90835,12.25211],[92.90828,12.2526],[92.90818,12.25266],[92.90809,12.25266],[92.90788,12.2526],[92.90775,12.25258],[92.90749,12.25266],[92.90737,12.25262],[92.9073,12.25263]]],[[[92.90491,12.25413],[92.90496,12.25414],[92.90516,12.2542],[92.90518,12.25438],[92.90522,12.25457],[92.90519,12.25465],[92.90508,12.25472],[92.90493,12.25475],[92.90477,12.25463],[92.9047,12.25445],[92.9047,12.25424],[92.90478,12.25412],[92.90491,12.25413]]],[[[92.90615,12.25309],[92.90649,12.25325],[92.90705,12.25341],[92.90745,12.2536],[92.90774,12.2538],[92.90799,12.2541],[92.9081,12.25445],[92.90856,12.25488],[92.90858,12.25496],[92.90865,12.25512],[92.90859,12.25528],[92.90848,12.25532],[92.90833,12.25529],[92.90819,12.25521],[92.90805,12.25506],[92.90774,12.2547],[92.90764,12.25465],[92.90748,12.25465],[92.90729,12.25461],[92.90703,12.2545],[92.9066,12.25453],[92.90635,12.25441],[92.90616,12.25426],[92.90592,12.25419],[92.9058,12.25407],[92.90572,12.2539],[92.90542,12.25363],[92.90539,12.25338],[92.90549,12.25333],[92.90566,12.25329],[92.90575,12.25316],[92.90597,12.25303],[92.90615,12.25309]]],[[[92.91807,12.25383],[92.91833,12.25383],[92.91853,12.25398],[92.91866,12.25419],[92.9188,12.25438],[92.91883,12.25461],[92.91874,12.25484],[92.91861,12.25509],[92.91835,12.2552],[92.91812,12.25519],[92.91787,12.25507],[92.91766,12.25492],[92.91752,12.25475],[92.91752,12.25449],[92.91759,12.25422],[92.91768,12.25398],[92.9178,12.25382],[92.91807,12.25383]]],[[[92.90026,12.25758],[92.90054,12.25761],[92.9007,12.25773],[92.90083,12.25802],[92.90082,12.25819],[92.90072,12.25823],[92.90061,12.2582],[92.90028,12.25799],[92.89997,12.25788],[92.89984,12.2578],[92.89982,12.25759],[92.9001,12.25755],[92.90026,12.25758]]],[[[92.91813,12.25592],[92.9183,12.25595],[92.91858,12.25606],[92.91905,12.25631],[92.91914,12.25653],[92.91914,12.2568],[92.91884,12.25686],[92.9186,12.25687],[92.9181,12.25683],[92.91792,12.25671],[92.91777,12.25659],[92.91771,12.25647],[92.91773,12.25628],[92.91773,12.25604],[92.91776,12.25593],[92.91789,12.25591],[92.91813,12.25592]]],[[[92.91981,12.2545],[92.92004,12.25462],[92.92028,12.25506],[92.92047,12.25559],[92.92051,12.25646],[92.92043,12.25667],[92.9203,12.25684],[92.92019,12.25675],[92.92004,12.25674],[92.91995,12.25668],[92.9199,12.25659],[92.9197,12.25651],[92.91942,12.25595],[92.91923,12.25548],[92.91918,12.25522],[92.91921,12.25497],[92.91921,12.25472],[92.91933,12.25451],[92.91952,12.25442],[92.91981,12.2545]]],[[[92.90854,12.25689],[92.90841,12.2572],[92.9083,12.25728],[92.90828,12.25759],[92.90814,12.25775],[92.90813,12.25794],[92.9081,12.25803],[92.90799,12.25813],[92.90793,12.25828],[92.90783,12.25833],[92.90768,12.25827],[92.90745,12.25807],[92.90713,12.2577],[92.90686,12.25723],[92.90683,12.257],[92.9069,12.25682],[92.90684,12.25658],[92.9069,12.25627],[92.907,12.25624],[92.90706,12.25624],[92.90712,12.2563],[92.90717,12.25642],[92.90729,12.25654],[92.90753,12.25662],[92.90771,12.2568],[92.90781,12.25684],[92.90806,12.25665],[92.90828,12.25658],[92.90851,12.25658],[92.90858,12.25668],[92.90854,12.25689]]],[[[92.91327,12.26049],[92.91374,12.26051],[92.91415,12.26057],[92.91434,12.26056],[92.91442,12.26067],[92.91443,12.26102],[92.91446,12.26135],[92.91437,12.26155],[92.91415,12.26189],[92.9141,12.262],[92.91394,12.26203],[92.91366,12.26231],[92.91334,12.26245],[92.91308,12.26253],[92.9128,12.26249],[92.91262,12.26235],[92.91257,12.26213],[92.91253,12.26186],[92.91291,12.26093],[92.91317,12.26049],[92.91327,12.26049]]],[[[92.91663,12.26111],[92.91689,12.26122],[92.91709,12.26132],[92.91734,12.26142],[92.91727,12.2617],[92.91716,12.26196],[92.91701,12.26219],[92.91685,12.26226],[92.91638,12.26235],[92.91612,12.26224],[92.91592,12.26207],[92.91578,12.2619],[92.91567,12.26145],[92.91615,12.26115],[92.91642,12.26111],[92.91663,12.26111]]],[[[92.9152,12.26272],[92.91544,12.2628],[92.91563,12.26296],[92.91587,12.26313],[92.91579,12.26334],[92.91567,12.26354],[92.9155,12.26377],[92.91523,12.26385],[92.91497,12.2639],[92.91473,12.26397],[92.91449,12.26388],[92.91432,12.26371],[92.91423,12.26347],[92.91411,12.26321],[92.91427,12.26303],[92.91468,12.26279],[92.91495,12.26269],[92.9152,12.26272]]],[[[92.90067,12.26408],[92.90061,12.26486],[92.89998,12.26564],[92.89914,12.26416],[92.89788,12.26558],[92.89651,12.26451],[92.8958,12.26319],[92.8957,12.25945],[92.89521,12.25789],[92.89325,12.25609],[92.89206,12.25241],[92.89066,12.2523],[92.88972,12.25285],[92.88712,12.25266],[92.88618,12.25102],[92.88425,12.24897],[92.88465,12.24569],[92.88384,12.24221],[92.88449,12.24126],[92.88442,12.23943],[92.88488,12.23895],[92.88465,12.23857],[92.88395,12.23902],[92.88371,12.23832],[92.88299,12.23853],[92.88231,12.23762],[92.88139,12.23861],[92.88087,12.23833],[92.88045,12.23724],[92.88014,12.2385],[92.87956,12.23784],[92.87912,12.23825],[92.87884,12.24611],[92.87802,12.24832],[92.87732,12.24896],[92.87607,12.24874],[92.87392,12.24925],[92.87391,12.24896],[92.87262,12.24863],[92.86969,12.24484],[92.86885,12.23964],[92.86895,12.23744],[92.87033,12.23364],[92.87386,12.22873],[92.87347,12.22554],[92.87389,12.22197],[92.87464,12.21813],[92.87596,12.21477],[92.87703,12.20982],[92.87749,12.20931],[92.87934,12.20892],[92.881,12.20973],[92.88184,12.21092],[92.8821,12.21249],[92.88198,12.21737],[92.8851,12.21729],[92.88621,12.21805],[92.88691,12.21957],[92.8867,12.22158],[92.88531,12.22329],[92.88334,12.22392],[92.88099,12.22338],[92.88045,12.22356],[92.88163,12.22473],[92.8848,12.22506],[92.88645,12.22688],[92.88797,12.2278],[92.88926,12.22965],[92.89104,12.23132],[92.89313,12.23117],[92.89563,12.22719],[92.90024,12.22617],[92.90166,12.22554],[92.90293,12.22432],[92.90237,12.22839],[92.90271,12.22872],[92.90346,12.22716],[92.90378,12.22796],[92.90354,12.22922],[92.90481,12.22843],[92.90463,12.22716],[92.90351,12.22516],[92.90417,12.22511],[92.90618,12.22806],[92.90641,12.22982],[92.90696,12.23088],[92.90791,12.23106],[92.90961,12.22957],[92.9103,12.22841],[92.91,12.22806],[92.90808,12.22944],[92.90963,12.22469],[92.90966,12.22238],[92.91,12.2223],[92.91067,12.22319],[92.91091,12.22276],[92.91008,12.22113],[92.91061,12.22071],[92.91133,12.22094],[92.91135,12.22193],[92.91224,12.2237],[92.9125,12.22174],[92.91196,12.22047],[92.9128,12.2202],[92.91351,12.22109],[92.91357,12.22371],[92.91279,12.22703],[92.91367,12.23046],[92.9137,12.23215],[92.91131,12.23766],[92.90931,12.2401],[92.90901,12.24106],[92.90939,12.24222],[92.90914,12.24327],[92.90741,12.24568],[92.90556,12.24721],[92.90487,12.24718],[92.90446,12.24761],[92.90423,12.24825],[92.90485,12.24911],[92.9046,12.25145],[92.90515,12.25202],[92.90414,12.25304],[92.90242,12.2535],[92.90168,12.25492],[92.90083,12.25476],[92.90078,12.25542],[92.9013,12.25534],[92.90154,12.25609],[92.90132,12.25685],[92.89986,12.25675],[92.89807,12.25736],[92.89769,12.25701],[92.89779,12.25628],[92.89719,12.25621],[92.89715,12.25725],[92.89897,12.25773],[92.89766,12.25867],[92.89848,12.25902],[92.8998,12.25824],[92.90075,12.25905],[92.90105,12.26093],[92.90067,12.26408]]],[[[92.74862,12.28788],[92.74827,12.28852],[92.74748,12.28866],[92.74615,12.28814],[92.74543,12.28753],[92.7449,12.28619],[92.74406,12.28488],[92.7434,12.28293],[92.74283,12.28223],[92.74211,12.28245],[92.74167,12.2822],[92.74138,12.27968],[92.74097,12.27905],[92.74021,12.27895],[92.73979,12.27924],[92.74018,12.28196],[92.74008,12.28248],[92.73961,12.28311],[92.73899,12.2827],[92.73864,12.28164],[92.73861,12.27987],[92.73873,12.27844],[92.73924,12.2768],[92.73876,12.27529],[92.73893,12.27496],[92.7382,12.27468],[92.738,12.27529],[92.73735,12.2757],[92.73692,12.27572],[92.73627,12.27436],[92.73609,12.27326],[92.73427,12.27013],[92.73439,12.26961],[92.73471,12.26939],[92.73574,12.26963],[92.7372,12.27191],[92.73732,12.27271],[92.73806,12.27434],[92.73909,12.27469],[92.73914,12.27384],[92.73889,12.27009],[92.73823,12.26894],[92.73772,12.26591],[92.73723,12.26518],[92.73617,12.26476],[92.73573,12.26409],[92.7355,12.26288],[92.73586,12.26085],[92.73464,12.25919],[92.7345,12.25864],[92.73441,12.25688],[92.73388,12.25482],[92.73376,12.25158],[92.73379,12.25],[92.73461,12.24999],[92.7344,12.24913],[92.73458,12.24813],[92.73497,12.24821],[92.73556,12.24899],[92.73657,12.24948],[92.73707,12.25001],[92.73507,12.25001],[92.7347,12.2514],[92.73674,12.25271],[92.73888,12.25369],[92.7403,12.25403],[92.74109,12.25459],[92.74172,12.25547],[92.74193,12.25819],[92.74287,12.25992],[92.74333,12.26324],[92.74361,12.26383],[92.74432,12.26447],[92.74552,12.2681],[92.74487,12.27017],[92.74632,12.27606],[92.7471,12.28068],[92.74826,12.28206],[92.74871,12.28367],[92.7487,12.28546],[92.74934,12.28669],[92.74942,12.28736],[92.74914,12.28775],[92.74862,12.28788]]],[[[92.73521,12.28134],[92.73573,12.28206],[92.73584,12.28247],[92.73585,12.28333],[92.73614,12.28421],[92.73634,12.28633],[92.73683,12.28867],[92.73703,12.28921],[92.73727,12.29099],[92.73722,12.29208],[92.737,12.2925],[92.7366,12.29277],[92.73631,12.29268],[92.73611,12.29247],[92.73505,12.29057],[92.73479,12.28963],[92.73435,12.28746],[92.73447,12.28674],[92.73475,12.2858],[92.735,12.2844],[92.73475,12.28307],[92.73463,12.28191],[92.73468,12.2816],[92.73489,12.28132],[92.73521,12.28134]]],[[[92.75131,12.29119],[92.75135,12.29125],[92.75135,12.29134],[92.75131,12.29144],[92.75134,12.29156],[92.75133,12.29165],[92.75126,12.29172],[92.7512,12.29169],[92.75116,12.29165],[92.75107,12.29163],[92.75103,12.29163],[92.75095,12.29161],[92.75086,12.29156],[92.7508,12.29154],[92.75077,12.29145],[92.75075,12.29133],[92.75072,12.29128],[92.75065,12.29123],[92.75062,12.2911],[92.75053,12.29104],[92.75051,12.29099],[92.75055,12.2909],[92.75064,12.29084],[92.75069,12.29076],[92.75076,12.29075],[92.75077,12.29069],[92.75092,12.29063],[92.75102,12.29069],[92.75102,12.29075],[92.75118,12.2909],[92.75121,12.29097],[92.75137,12.29094],[92.75143,12.29098],[92.75143,12.29104],[92.75136,12.2911],[92.75131,12.2911],[92.75131,12.29119]]],[[[92.88914,12.27742],[92.88906,12.27763],[92.88851,12.27796],[92.88824,12.27844],[92.88835,12.27952],[92.88851,12.27992],[92.88854,12.28021],[92.8884,12.28051],[92.88813,12.28072],[92.88794,12.28064],[92.88777,12.28046],[92.88758,12.28008],[92.88758,12.2797],[92.88723,12.2793],[92.88702,12.2785],[92.88619,12.27831],[92.88562,12.27771],[92.88537,12.27779],[92.88499,12.27766],[92.8843,12.27715],[92.88417,12.27671],[92.88401,12.27653],[92.88387,12.27588],[92.8839,12.27527],[92.88406,12.27476],[92.8839,12.27449],[92.88398,12.27422],[92.88486,12.27354],[92.88515,12.27341],[92.88537,12.27344],[92.88578,12.27309],[92.88701,12.27264],[92.8886,12.2722],[92.88901,12.2725],[92.88939,12.27234],[92.88972,12.27234],[92.88982,12.27247],[92.88972,12.27374],[92.88952,12.27409],[92.88952,12.27465],[92.88936,12.27519],[92.88911,12.27562],[92.88895,12.27613],[92.88903,12.2771],[92.8892,12.27726],[92.88914,12.27742]]],[[[92.7516,12.29265],[92.75173,12.29276],[92.75185,12.29283],[92.75224,12.29292],[92.75258,12.29311],[92.75268,12.2932],[92.75283,12.29341],[92.75305,12.29376],[92.75313,12.29392],[92.75316,12.29411],[92.75307,12.2942],[92.75297,12.29426],[92.7528,12.29434],[92.75262,12.29436],[92.7523,12.29433],[92.75219,12.29423],[92.75211,12.29416],[92.75196,12.29397],[92.75185,12.29378],[92.7517,12.2937],[92.7516,12.29359],[92.75154,12.29348],[92.75151,12.29336],[92.75142,12.29319],[92.75139,12.29297],[92.7514,12.2928],[92.75142,12.2927],[92.75151,12.29261],[92.7516,12.29265]]],[[[92.76642,12.27237],[92.76645,12.27301],[92.76624,12.27378],[92.76682,12.27485],[92.7664,12.27898],[92.7666,12.28097],[92.76723,12.28382],[92.76725,12.28537],[92.76687,12.2861],[92.76626,12.28666],[92.76501,12.28707],[92.76431,12.28783],[92.76383,12.28868],[92.76386,12.28962],[92.76408,12.29021],[92.76526,12.29238],[92.76508,12.29289],[92.76264,12.294],[92.76218,12.29409],[92.76125,12.29391],[92.7605,12.29354],[92.76001,12.29297],[92.75948,12.29112],[92.75752,12.28757],[92.7562,12.28656],[92.75631,12.28511],[92.75603,12.28455],[92.75469,12.28388],[92.75392,12.28327],[92.75369,12.28197],[92.75298,12.28116],[92.75285,12.27923],[92.75228,12.27832],[92.75221,12.27787],[92.75277,12.27694],[92.75309,12.27589],[92.75408,12.2752],[92.75494,12.27414],[92.75541,12.27271],[92.75577,12.27249],[92.75701,12.27263],[92.75733,12.27239],[92.75778,12.27042],[92.75829,12.26937],[92.7588,12.26914],[92.75923,12.26923],[92.75959,12.26947],[92.76073,12.27111],[92.76112,12.27137],[92.76141,12.2713],[92.7614,12.27042],[92.76179,12.2686],[92.76174,12.26785],[92.76387,12.26517],[92.76426,12.2656],[92.76497,12.26872],[92.76615,12.27121],[92.76642,12.27237]]],[[[92.71044,12.29706],[92.70919,12.29745],[92.70556,12.29971],[92.70432,12.29996],[92.70332,12.29929],[92.70303,12.29396],[92.7016,12.29153],[92.70131,12.28989],[92.70145,12.28654],[92.70251,12.28304],[92.70209,12.27868],[92.70085,12.27636],[92.69925,12.27559],[92.69873,12.27473],[92.69979,12.27344],[92.70244,12.27195],[92.69974,12.26798],[92.69995,12.265],[92.70228,12.25777],[92.7022,12.25575],[92.70272,12.25283],[92.70283,12.24584],[92.7025,12.24495],[92.70281,12.24326],[92.70358,12.24223],[92.70536,12.24183],[92.7063,12.24091],[92.70733,12.23873],[92.70746,12.23607],[92.7083,12.23321],[92.70922,12.23039],[92.70993,12.22966],[92.71122,12.2348],[92.71133,12.23797],[92.71083,12.24026],[92.71163,12.24271],[92.7114,12.24466],[92.71195,12.24669],[92.71189,12.24823],[92.71378,12.25001],[92.71251,12.25001],[92.71256,12.25116],[92.71287,12.25232],[92.71446,12.25484],[92.7143,12.25605],[92.71498,12.25774],[92.71425,12.25928],[92.71437,12.26089],[92.71494,12.26174],[92.71736,12.26163],[92.71804,12.26385],[92.71757,12.26453],[92.71583,12.26454],[92.71546,12.26581],[92.71609,12.26767],[92.71739,12.26956],[92.71758,12.27288],[92.7185,12.27425],[92.71825,12.27604],[92.72009,12.27991],[92.7201,12.28059],[92.71888,12.28181],[92.71878,12.28319],[92.71963,12.28412],[92.72113,12.28451],[92.72102,12.28947],[92.72231,12.29011],[92.72308,12.29102],[92.72238,12.29244],[92.72273,12.29475],[92.72232,12.29595],[92.72092,12.29596],[92.71878,12.29518],[92.71726,12.29673],[92.71537,12.29596],[92.71313,12.29687],[92.71044,12.29706]]],[[[93.10434,12.26401],[93.10106,12.26383],[93.09946,12.26292],[93.09674,12.25775],[93.09629,12.25442],[93.09539,12.25153],[93.0954,12.25],[93.09381,12.25],[93.09334,12.25066],[93.09248,12.25083],[93.09171,12.25045],[93.09115,12.24908],[93.09169,12.24781],[93.09332,12.24698],[93.09398,12.24596],[93.0927,12.2454],[93.0924,12.24379],[93.091,12.24225],[93.08988,12.24354],[93.08852,12.24349],[93.08798,12.24221],[93.08943,12.24107],[93.08691,12.23994],[93.08548,12.23839],[93.08357,12.23945],[93.08309,12.24036],[93.08379,12.24125],[93.08411,12.24263],[93.08469,12.24237],[93.08528,12.24528],[93.08585,12.24555],[93.08562,12.24577],[93.08619,12.24685],[93.08693,12.25506],[93.08655,12.25704],[93.08505,12.25852],[93.0823,12.26248],[93.08062,12.26382],[93.07525,12.26317],[93.07413,12.26235],[93.07253,12.26226],[93.06995,12.26008],[93.06788,12.25578],[93.06514,12.25177],[93.06487,12.23797],[93.06219,12.23468],[93.06181,12.23345],[93.06204,12.22897],[93.06328,12.22728],[93.06631,12.2266],[93.07036,12.22492],[93.07203,12.22471],[93.07542,12.22292],[93.08103,12.21862],[93.0824,12.21711],[93.0838,12.21674],[93.08438,12.21735],[93.08408,12.21971],[93.085,12.21942],[93.08536,12.21968],[93.08574,12.22129],[93.08497,12.22259],[93.08244,12.22398],[93.08252,12.22457],[93.08355,12.22392],[93.08489,12.22445],[93.08463,12.22512],[93.08503,12.22527],[93.08562,12.22445],[93.08567,12.22538],[93.08607,12.22559],[93.0864,12.22525],[93.086,12.22472],[93.08762,12.22485],[93.08715,12.22415],[93.08794,12.22366],[93.0885,12.22467],[93.08844,12.2255],[93.08639,12.22853],[93.08649,12.22964],[93.08764,12.23003],[93.08825,12.23172],[93.09411,12.23643],[93.09532,12.23697],[93.09674,12.23662],[93.09713,12.23831],[93.09783,12.23881],[93.09696,12.23647],[93.09567,12.23674],[93.09391,12.23596],[93.09145,12.23401],[93.09081,12.23305],[93.08883,12.23179],[93.08808,12.23024],[93.08673,12.2293],[93.08683,12.2285],[93.08876,12.22597],[93.08908,12.22389],[93.08963,12.22303],[93.09006,12.22289],[93.08953,12.22391],[93.08996,12.22488],[93.09128,12.22308],[93.09105,12.22117],[93.089,12.21981],[93.08879,12.21903],[93.08728,12.21829],[93.08678,12.21488],[93.08719,12.21354],[93.08989,12.21093],[93.09336,12.20816],[93.09487,12.20818],[93.09551,12.20699],[93.0954,12.20608],[93.09618,12.20382],[93.09887,12.20078],[93.10012,12.20042],[93.10176,12.20122],[93.1026,12.20262],[93.10432,12.21043],[93.1051,12.21857],[93.1044,12.22465],[93.10347,12.22656],[93.10386,12.22745],[93.10383,12.22949],[93.10254,12.2308],[93.10211,12.23198],[93.10065,12.23258],[93.10216,12.23301],[93.1038,12.23279],[93.10534,12.23488],[93.10546,12.23637],[93.10697,12.23931],[93.10689,12.24223],[93.10724,12.2424],[93.10744,12.24514],[93.10681,12.25],[93.10715,12.25614],[93.10654,12.26226],[93.10546,12.26391],[93.10434,12.26401]]],[[[92.76842,12.28863],[92.76885,12.28955],[92.76942,12.29049],[92.77009,12.29199],[92.77107,12.29357],[92.77099,12.29381],[92.77068,12.29406],[92.77028,12.29479],[92.77008,12.295],[92.76988,12.29509],[92.76953,12.29509],[92.76886,12.29451],[92.7684,12.29329],[92.76793,12.29274],[92.7676,12.29191],[92.76711,12.2912],[92.76662,12.29071],[92.76608,12.29001],[92.76595,12.28957],[92.76594,12.28932],[92.76615,12.289],[92.76638,12.28885],[92.76754,12.2885],[92.76827,12.28846],[92.76842,12.28863]]],[[[92.76404,12.29664],[92.76437,12.29673],[92.76486,12.29714],[92.76496,12.2973],[92.76509,12.29763],[92.76511,12.29848],[92.76516,12.29881],[92.76512,12.29913],[92.76502,12.29928],[92.76498,12.2994],[92.76491,12.29947],[92.7648,12.29949],[92.76459,12.2995],[92.76448,12.29927],[92.76423,12.299],[92.76395,12.29875],[92.76352,12.29845],[92.76301,12.29796],[92.76273,12.29746],[92.76272,12.29717],[92.76296,12.29682],[92.76309,12.29673],[92.76348,12.2966],[92.76371,12.29657],[92.76404,12.29664]]],[[[92.8841,12.29035],[92.88159,12.29076],[92.88055,12.29076],[92.8797,12.29027],[92.87955,12.28928],[92.87977,12.28892],[92.8789,12.28848],[92.87854,12.28802],[92.87809,12.28809],[92.87772,12.28793],[92.87755,12.28793],[92.87781,12.28816],[92.87825,12.2889],[92.87859,12.28993],[92.8785,12.29021],[92.87834,12.29023],[92.87809,12.29003],[92.8771,12.28877],[92.87714,12.2881],[92.8773,12.28788],[92.87732,12.28767],[92.87712,12.28762],[92.87698,12.28746],[92.87702,12.28698],[92.8769,12.28646],[92.87707,12.28574],[92.87688,12.28491],[92.87688,12.28433],[92.8769,12.28403],[92.87747,12.28448],[92.87801,12.28434],[92.87844,12.28407],[92.87872,12.28378],[92.87901,12.28324],[92.88022,12.28222],[92.88076,12.28165],[92.88136,12.28032],[92.88163,12.28027],[92.88173,12.28039],[92.88141,12.28084],[92.88122,12.28161],[92.88128,12.28208],[92.88149,12.28236],[92.88196,12.28245],[92.8826,12.28217],[92.88339,12.28149],[92.88357,12.28145],[92.88365,12.28153],[92.88381,12.28069],[92.88369,12.28034],[92.88403,12.28002],[92.88452,12.27976],[92.88473,12.27994],[92.88537,12.28106],[92.8854,12.28154],[92.88592,12.28289],[92.88781,12.28465],[92.88791,12.28567],[92.88781,12.28641],[92.88752,12.28659],[92.88693,12.28768],[92.8862,12.28845],[92.88545,12.28906],[92.88527,12.28949],[92.88516,12.29011],[92.88501,12.29028],[92.8841,12.29035]]],[[[93.02897,12.27794],[93.02911,12.27823],[93.02914,12.27904],[93.02896,12.2797],[93.02876,12.27995],[93.02801,12.28018],[93.02711,12.28018],[93.02639,12.28007],[93.02617,12.27996],[93.02603,12.27975],[93.02601,12.2795],[93.02564,12.27922],[93.02541,12.27887],[93.02474,12.27826],[93.02455,12.27847],[93.02424,12.27866],[93.024,12.27861],[93.02384,12.27848],[93.02366,12.27849],[93.02332,12.27837],[93.02321,12.27826],[93.02312,12.278],[93.02276,12.27786],[93.02225,12.27753],[93.02186,12.27705],[93.02172,12.27674],[93.0214,12.27654],[93.0207,12.27568],[93.02046,12.2751],[93.02038,12.27471],[93.02045,12.2746],[93.02088,12.27441],[93.02113,12.27421],[93.02147,12.27419],[93.02315,12.2738],[93.02415,12.27336],[93.02444,12.27329],[93.02485,12.2733],[93.02532,12.27344],[93.02591,12.27371],[93.02781,12.2752],[93.02866,12.27683],[93.02838,12.27737],[93.02839,12.27758],[93.02874,12.27774],[93.02897,12.27794]]],[[[92.89122,12.29811],[92.89118,12.2982],[92.89107,12.29825],[92.89063,12.29814],[92.89039,12.29799],[92.89018,12.29777],[92.88993,12.29768],[92.88968,12.29753],[92.88957,12.29734],[92.88934,12.29718],[92.88899,12.29707],[92.88878,12.29685],[92.88854,12.29672],[92.88838,12.29658],[92.88828,12.29624],[92.88793,12.29597],[92.88789,12.29581],[92.88779,12.29562],[92.88757,12.29538],[92.88743,12.2949],[92.88708,12.29453],[92.88692,12.29398],[92.88692,12.29382],[92.88722,12.29346],[92.88777,12.29332],[92.88797,12.29312],[92.88818,12.29305],[92.8889,12.29306],[92.88947,12.29311],[92.88965,12.29317],[92.8899,12.29336],[92.89016,12.29333],[92.89065,12.29343],[92.89091,12.29368],[92.89125,12.29456],[92.89122,12.29486],[92.89124,12.29509],[92.89137,12.2957],[92.89134,12.29619],[92.89157,12.29648],[92.89166,12.29669],[92.89161,12.2975],[92.89156,12.29769],[92.89148,12.29785],[92.89137,12.29795],[92.89126,12.29795],[92.89122,12.29811]]],[[[92.88174,12.29715],[92.88149,12.29724],[92.88138,12.29736],[92.8812,12.29788],[92.88141,12.29823],[92.88199,12.29856],[92.88218,12.2988],[92.8822,12.29901],[92.88204,12.29966],[92.88186,12.29988],[92.88169,12.30023],[92.88134,12.30051],[92.88049,12.30082],[92.88005,12.30072],[92.87989,12.30058],[92.87924,12.30044],[92.87899,12.30029],[92.87845,12.29975],[92.87829,12.29888],[92.87801,12.2981],[92.87751,12.29756],[92.87675,12.29688],[92.87612,12.29561],[92.87599,12.29521],[92.87603,12.29479],[92.87636,12.29417],[92.87657,12.2941],[92.87716,12.29409],[92.87752,12.2943],[92.87794,12.294],[92.87827,12.29392],[92.87845,12.29397],[92.87919,12.29454],[92.87935,12.29459],[92.8794,12.29469],[92.87974,12.29482],[92.88023,12.29526],[92.88046,12.29537],[92.88107,12.29547],[92.88133,12.29541],[92.88153,12.29543],[92.88185,12.29533],[92.88204,12.29535],[92.88281,12.29576],[92.88383,12.29607],[92.88402,12.29615],[92.8844,12.29646],[92.88458,12.29672],[92.88473,12.29701],[92.88463,12.29721],[92.88435,12.29725],[92.88394,12.29711],[92.88318,12.29702],[92.8827,12.29712],[92.88231,12.29704],[92.88174,12.29715]]],[[[92.81047,12.31295],[92.8017,12.31135],[92.80077,12.30825],[92.795,12.30359],[92.79097,12.30404],[92.78946,12.30803],[92.78462,12.31068],[92.77692,12.30971],[92.77078,12.31301],[92.76858,12.30888],[92.76695,12.2972],[92.76998,12.29651],[92.77189,12.30198],[92.77538,12.30119],[92.77723,12.29543],[92.77413,12.29503],[92.77383,12.29351],[92.77846,12.29112],[92.7789,12.28842],[92.78169,12.28661],[92.77969,12.28315],[92.78384,12.28106],[92.7844,12.27919],[92.78587,12.28069],[92.78768,12.28024],[92.78433,12.27899],[92.78389,12.28068],[92.77886,12.28328],[92.77778,12.2766],[92.77969,12.27398],[92.778,12.27246],[92.77953,12.27414],[92.7774,12.27668],[92.77807,12.27784],[92.77682,12.27886],[92.7748,12.27569],[92.77401,12.28028],[92.7709,12.27238],[92.76596,12.26819],[92.76324,12.26248],[92.75864,12.26772],[92.75645,12.26507],[92.75642,12.26926],[92.75099,12.27477],[92.74939,12.27409],[92.74723,12.26667],[92.74824,12.26248],[92.74114,12.24538],[92.74176,12.24415],[92.74382,12.2455],[92.7472,12.24377],[92.74643,12.23512],[92.75,12.23243],[92.75725,12.23435],[92.75994,12.23715],[92.75887,12.23321],[92.76199,12.2326],[92.76595,12.24326],[92.76942,12.24291],[92.76848,12.24622],[92.76981,12.24303],[92.76624,12.24298],[92.76479,12.23705],[92.77081,12.24157],[92.76897,12.23958],[92.76818,12.23417],[92.76988,12.23087],[92.76787,12.22863],[92.76687,12.22369],[92.76862,12.22158],[92.76645,12.22242],[92.76362,12.21253],[92.76398,12.20901],[92.76878,12.20127],[92.76556,12.19271],[92.7675,12.18967],[92.76657,12.1851],[92.76426,12.18183],[92.76443,12.17647],[92.76073,12.16839],[92.76068,12.16496],[92.76346,12.16524],[92.75855,12.15939],[92.75806,12.15628],[92.75904,12.15645],[92.75667,12.15149],[92.75825,12.14567],[92.75233,12.13909],[92.74584,12.12419],[92.7441,12.11319],[92.73777,12.09754],[92.73877,12.08131],[92.74106,12.08274],[92.74305,12.08054],[92.74087,12.08202],[92.73923,12.07969],[92.74232,12.0757],[92.74721,12.07413],[92.74894,12.07631],[92.75062,12.07446],[92.75318,12.07599],[92.75415,12.08035],[92.75402,12.07677],[92.75238,12.07504],[92.75404,12.07585],[92.75531,12.0796],[92.75784,12.0815],[92.75938,12.08675],[92.75777,12.09094],[92.75895,12.09319],[92.76049,12.09307],[92.76,12.09543],[92.76357,12.09679],[92.7623,12.09742],[92.76315,12.09891],[92.76184,12.09884],[92.76234,12.10079],[92.76336,12.09962],[92.76258,12.09741],[92.76378,12.09662],[92.76033,12.09535],[92.76068,12.0929],[92.75882,12.09157],[92.76171,12.0918],[92.76126,12.09028],[92.76338,12.09015],[92.76482,12.09491],[92.76376,12.09014],[92.75906,12.09107],[92.76036,12.08907],[92.75817,12.08139],[92.75205,12.0744],[92.75796,12.07502],[92.75968,12.07811],[92.75746,12.07096],[92.76345,12.06322],[92.76744,12.06754],[92.77107,12.0676],[92.77328,12.07089],[92.77194,12.07264],[92.77813,12.07396],[92.78104,12.08003],[92.78516,12.0783],[92.78795,12.07877],[92.78819,12.08041],[92.79206,12.07897],[92.79121,12.08699],[92.79549,12.0863],[92.79521,12.09037],[92.79684,12.09249],[92.80079,12.09354],[92.79936,12.09578],[92.78748,12.1008],[92.78363,12.10603],[92.78733,12.10341],[92.79309,12.10528],[92.79235,12.10392],[92.79354,12.10354],[92.7979,12.10701],[92.79705,12.11135],[92.79953,12.11411],[92.7976,12.1115],[92.79816,12.10831],[92.80344,12.10405],[92.80887,12.10293],[92.81153,12.10695],[92.81442,12.10511],[92.81811,12.11318],[92.81723,12.11494],[92.8136,12.11538],[92.8124,12.11886],[92.80739,12.12427],[92.80287,12.12629],[92.80306,12.13068],[92.80149,12.13199],[92.81133,12.12721],[92.81455,12.12732],[92.81642,12.12461],[92.81818,12.12756],[92.81533,12.13855],[92.81879,12.13802],[92.82175,12.14073],[92.8221,12.14243],[92.82018,12.14237],[92.81874,12.14529],[92.82116,12.14985],[92.82478,12.15125],[92.82693,12.15614],[92.82004,12.15909],[92.81723,12.16312],[92.81147,12.16028],[92.80713,12.15994],[92.80706,12.16176],[92.80233,12.16428],[92.80214,12.16594],[92.80384,12.16525],[92.80369,12.16755],[92.80108,12.16838],[92.80109,12.17059],[92.80461,12.16822],[92.80342,12.16944],[92.80677,12.17116],[92.80375,12.16932],[92.8053,12.16848],[92.80393,12.16761],[92.80389,12.16458],[92.80206,12.16533],[92.80332,12.16333],[92.80765,12.16186],[92.80757,12.16007],[92.81723,12.16372],[92.82077,12.15976],[92.82237,12.16095],[92.8214,12.16484],[92.82402,12.16606],[92.82354,12.16868],[92.82077,12.17085],[92.82239,12.17814],[92.82298,12.17572],[92.82117,12.17089],[92.82421,12.16893],[92.82446,12.16642],[92.82728,12.16346],[92.82962,12.16656],[92.83514,12.16692],[92.83666,12.16563],[92.83634,12.16213],[92.8387,12.15985],[92.84386,12.15955],[92.84411,12.15788],[92.84585,12.15767],[92.84466,12.15115],[92.84275,12.14892],[92.84446,12.14745],[92.84587,12.14773],[92.85484,12.16179],[92.85444,12.16495],[92.85002,12.16504],[92.85047,12.16804],[92.85452,12.17064],[92.85217,12.17748],[92.85486,12.18066],[92.85162,12.1843],[92.85538,12.18429],[92.8566,12.18643],[92.85429,12.18738],[92.85523,12.18885],[92.85414,12.19103],[92.85215,12.19184],[92.84734,12.18929],[92.84584,12.19012],[92.84376,12.18624],[92.84002,12.18526],[92.84343,12.18647],[92.84715,12.19384],[92.847,12.19633],[92.84468,12.19771],[92.84472,12.20081],[92.84288,12.20145],[92.83936,12.19951],[92.83653,12.20204],[92.82677,12.203],[92.82869,12.20874],[92.833,12.2064],[92.83452,12.21108],[92.83166,12.21288],[92.8328,12.21453],[92.84027,12.21245],[92.83994,12.21415],[92.83607,12.21433],[92.84047,12.21909],[92.83837,12.21671],[92.83617,12.21907],[92.8345,12.218],[92.83343,12.22006],[92.83185,12.21887],[92.82925,12.2196],[92.82733,12.22251],[92.82355,12.22472],[92.82154,12.22409],[92.82037,12.22679],[92.81829,12.22739],[92.81897,12.23031],[92.81703,12.23245],[92.81005,12.23346],[92.80572,12.23076],[92.80262,12.23264],[92.80592,12.23107],[92.81114,12.23408],[92.81282,12.23276],[92.81739,12.23296],[92.81938,12.23019],[92.8187,12.2275],[92.82073,12.227],[92.82187,12.22436],[92.82393,12.225],[92.82416,12.22368],[92.8273,12.22292],[92.82928,12.21984],[92.83184,12.21902],[92.83339,12.22034],[92.83462,12.21822],[92.83622,12.21927],[92.83848,12.21697],[92.84059,12.21939],[92.84006,12.21708],[92.83641,12.21434],[92.83982,12.21445],[92.84053,12.21233],[92.83318,12.21438],[92.83206,12.21291],[92.83491,12.21146],[92.83324,12.20589],[92.82908,12.20848],[92.82756,12.203],[92.83647,12.20254],[92.83997,12.19993],[92.8446,12.2019],[92.84576,12.19768],[92.85316,12.20433],[92.85589,12.20085],[92.86207,12.20088],[92.86135,12.19752],[92.8654,12.19679],[92.8674,12.19344],[92.87188,12.1947],[92.87456,12.1923],[92.88031,12.19344],[92.88286,12.19768],[92.88166,12.20317],[92.87674,12.20282],[92.8736,12.20433],[92.87329,12.20887],[92.87089,12.21252],[92.86864,12.20886],[92.86754,12.20985],[92.8688,12.21096],[92.86727,12.21179],[92.8645,12.20879],[92.8672,12.21195],[92.86897,12.211],[92.86824,12.20927],[92.87049,12.21275],[92.87358,12.21229],[92.8715,12.22546],[92.86817,12.22843],[92.86749,12.22686],[92.86644,12.23136],[92.86742,12.23205],[92.86347,12.2319],[92.86696,12.23232],[92.86149,12.2367],[92.86082,12.24072],[92.85787,12.2445],[92.85948,12.2483],[92.85842,12.24911],[92.8648,12.25226],[92.86901,12.25169],[92.86648,12.25488],[92.86776,12.25732],[92.86673,12.25634],[92.86277,12.26023],[92.86102,12.25968],[92.86216,12.26143],[92.8614,12.25967],[92.86549,12.26094],[92.86332,12.26135],[92.86421,12.26241],[92.86277,12.26327],[92.86158,12.26252],[92.86196,12.26357],[92.86566,12.26111],[92.8632,12.26049],[92.86425,12.25831],[92.86812,12.25726],[92.86696,12.25499],[92.86963,12.25097],[92.87525,12.25061],[92.88141,12.25507],[92.88246,12.25758],[92.88661,12.25874],[92.88836,12.25654],[92.88953,12.26134],[92.88563,12.26161],[92.88604,12.26472],[92.88986,12.26326],[92.89126,12.26644],[92.88991,12.26937],[92.88664,12.26844],[92.88681,12.27079],[92.88509,12.27047],[92.8838,12.26961],[92.88457,12.26575],[92.88312,12.26225],[92.88206,12.26253],[92.8815,12.27395],[92.87845,12.27728],[92.87913,12.28164],[92.88048,12.2812],[92.87765,12.28408],[92.87632,12.28212],[92.87477,12.28308],[92.8741,12.28109],[92.87223,12.28086],[92.87438,12.2817],[92.87435,12.28324],[92.8762,12.28245],[92.8768,12.28712],[92.87309,12.28763],[92.87228,12.29199],[92.86962,12.28989],[92.86786,12.29029],[92.86774,12.29239],[92.87029,12.29472],[92.86652,12.29319],[92.8658,12.28743],[92.86344,12.28678],[92.86573,12.288],[92.866,12.29317],[92.87152,12.29539],[92.86971,12.29902],[92.87214,12.30017],[92.87223,12.30171],[92.86845,12.30092],[92.86757,12.30241],[92.86553,12.30111],[92.8601,12.30399],[92.85777,12.30298],[92.8575,12.30457],[92.85524,12.30517],[92.85247,12.3036],[92.85438,12.29963],[92.85232,12.30329],[92.849,12.30205],[92.84836,12.29955],[92.85024,12.29465],[92.85338,12.29212],[92.85224,12.2856],[92.85473,12.28839],[92.8544,12.28455],[92.85614,12.28378],[92.85375,12.28122],[92.85601,12.28353],[92.85418,12.28451],[92.85485,12.28792],[92.85225,12.28534],[92.85101,12.28755],[92.85164,12.28375],[92.85035,12.28335],[92.85316,12.29182],[92.84984,12.29424],[92.847,12.30366],[92.84271,12.30426],[92.84443,12.30083],[92.84326,12.29941],[92.84515,12.29751],[92.84402,12.29629],[92.84477,12.29768],[92.84257,12.29972],[92.84063,12.29744],[92.84394,12.30075],[92.84262,12.30339],[92.83642,12.30319],[92.83407,12.29978],[92.83519,12.29727],[92.83288,12.29655],[92.83356,12.29481],[92.83242,12.29544],[92.83125,12.29362],[92.83212,12.29202],[92.83102,12.29387],[92.83467,12.29766],[92.83273,12.30076],[92.82894,12.29932],[92.8238,12.30533],[92.81047,12.31295]]],[[[92.93349,12.31101],[92.93337,12.31138],[92.93255,12.30989],[92.92934,12.30727],[92.92805,12.3043],[92.92874,12.30267],[92.92797,12.29994],[92.92852,12.29888],[92.92773,12.29836],[92.92793,12.29745],[92.92742,12.29639],[92.92884,12.29508],[92.92887,12.29421],[92.92849,12.29307],[92.92721,12.29341],[92.92704,12.29269],[92.92724,12.29114],[92.92815,12.29046],[92.92897,12.29068],[92.92976,12.28857],[92.92924,12.28329],[92.92869,12.28255],[92.92785,12.28265],[92.9282,12.28293],[92.92777,12.28377],[92.92688,12.28201],[92.92735,12.28118],[92.92693,12.28011],[92.92787,12.27898],[92.92754,12.27809],[92.92746,12.27897],[92.92612,12.28087],[92.92456,12.2805],[92.92331,12.28378],[92.92227,12.28455],[92.92274,12.28713],[92.92182,12.28803],[92.92054,12.28792],[92.92016,12.28713],[92.92113,12.28457],[92.91917,12.28222],[92.91779,12.28244],[92.91844,12.28356],[92.918,12.28695],[92.91917,12.29061],[92.9187,12.2914],[92.91811,12.29145],[92.91763,12.28984],[92.91677,12.28946],[92.91566,12.28978],[92.91444,12.29094],[92.91539,12.29259],[92.91333,12.29119],[92.91427,12.29354],[92.91337,12.29633],[92.91379,12.29753],[92.91336,12.29908],[92.91399,12.30116],[92.91394,12.30323],[92.91339,12.3041],[92.91271,12.30343],[92.91183,12.2995],[92.91053,12.29889],[92.91104,12.29781],[92.90993,12.29473],[92.9091,12.29389],[92.90624,12.29269],[92.90305,12.29314],[92.90205,12.29264],[92.90091,12.28824],[92.90124,12.28216],[92.9003,12.28111],[92.90193,12.27897],[92.90377,12.27954],[92.90413,12.27911],[92.90339,12.27717],[92.90073,12.2757],[92.89974,12.27418],[92.89952,12.27278],[92.90037,12.27122],[92.90225,12.27068],[92.90416,12.27141],[92.90487,12.27224],[92.90544,12.27464],[92.90662,12.27537],[92.90812,12.27454],[92.90746,12.27395],[92.90807,12.27344],[92.91154,12.27313],[92.91245,12.27382],[92.9136,12.27364],[92.91012,12.27193],[92.90656,12.27239],[92.90439,12.27042],[92.90488,12.26947],[92.90679,12.26869],[92.90839,12.2687],[92.91016,12.26981],[92.91118,12.26944],[92.91161,12.26852],[92.91061,12.26648],[92.91043,12.26466],[92.91148,12.26297],[92.91326,12.26553],[92.91323,12.26634],[92.91603,12.26848],[92.91629,12.26819],[92.91443,12.2644],[92.91662,12.26375],[92.91987,12.26914],[92.92024,12.26503],[92.92187,12.25885],[92.919,12.25139],[92.91789,12.24659],[92.91751,12.23842],[92.91875,12.2337],[92.9201,12.23133],[92.92215,12.22928],[92.92284,12.22951],[92.92466,12.23177],[92.9292,12.2386],[92.92934,12.24516],[92.93017,12.24885],[92.92906,12.24976],[92.92583,12.24977],[92.92649,12.25249],[92.92762,12.2531],[92.92787,12.25456],[92.9305,12.25815],[92.93142,12.26024],[92.93612,12.26219],[92.93682,12.26602],[92.93862,12.26786],[92.93823,12.27021],[92.94012,12.2712],[92.94142,12.27379],[92.94302,12.2748],[92.94303,12.27897],[92.93927,12.28387],[92.9364,12.28563],[92.93396,12.28936],[92.93462,12.29262],[92.93677,12.29498],[92.93704,12.2977],[92.93593,12.30447],[92.93444,12.30683],[92.93441,12.30827],[92.93375,12.30898],[92.93423,12.30928],[92.93374,12.3112],[92.93349,12.31101]]],[[[93.07065,12.31505],[93.07207,12.31509],[93.07241,12.31519],[93.07259,12.31533],[93.07265,12.31557],[93.07325,12.31632],[93.07327,12.31673],[93.07241,12.31784],[93.07217,12.31801],[93.07175,12.31867],[93.07124,12.31907],[93.07134,12.31908],[93.07141,12.3192],[93.0706,12.31965],[93.06991,12.31965],[93.06925,12.3195],[93.06831,12.31948],[93.06753,12.31927],[93.06673,12.3189],[93.06595,12.31882],[93.06527,12.31817],[93.06433,12.31777],[93.06298,12.31702],[93.06222,12.31676],[93.06162,12.31617],[93.06138,12.31581],[93.06125,12.31528],[93.06128,12.315],[93.06137,12.31489],[93.06191,12.31478],[93.06222,12.3148],[93.06272,12.31511],[93.06324,12.31492],[93.06371,12.315],[93.06422,12.3149],[93.06466,12.3149],[93.06523,12.31495],[93.06551,12.31508],[93.06559,12.31519],[93.06698,12.31527],[93.06702,12.31514],[93.06724,12.31505],[93.06765,12.31514],[93.06882,12.3149],[93.06959,12.31505],[93.07024,12.31499],[93.07065,12.31505]]],[[[92.85791,12.33483],[92.85726,12.33586],[92.85728,12.3372],[92.85751,12.33798],[92.85845,12.33842],[92.85853,12.33869],[92.85755,12.34002],[92.85688,12.33992],[92.85663,12.33924],[92.85672,12.33618],[92.85613,12.33428],[92.85645,12.33328],[92.85539,12.33268],[92.85504,12.33205],[92.85604,12.33058],[92.85845,12.3298],[92.85838,12.32936],[92.85719,12.32831],[92.85773,12.32686],[92.85832,12.32627],[92.85852,12.32537],[92.85948,12.32529],[92.85999,12.32428],[92.86111,12.32373],[92.86089,12.32285],[92.85986,12.32247],[92.86048,12.32137],[92.86028,12.32011],[92.86066,12.32005],[92.86087,12.32085],[92.86165,12.32088],[92.86122,12.32144],[92.8614,12.32174],[92.86184,12.32113],[92.86175,12.32066],[92.86107,12.32062],[92.86052,12.31978],[92.86059,12.31907],[92.85885,12.31813],[92.85669,12.31816],[92.85597,12.31774],[92.85588,12.31606],[92.85617,12.31465],[92.85823,12.31406],[92.86041,12.31434],[92.86255,12.31301],[92.86376,12.31387],[92.86418,12.31594],[92.8656,12.31595],[92.86572,12.31515],[92.86629,12.31461],[92.86696,12.31454],[92.86695,12.31414],[92.86746,12.31375],[92.86901,12.31459],[92.86896,12.31584],[92.86958,12.31734],[92.87107,12.31825],[92.87167,12.31831],[92.8744,12.3177],[92.8737,12.31688],[92.87368,12.31626],[92.87549,12.31537],[92.87595,12.31463],[92.87559,12.31418],[92.87662,12.31353],[92.87715,12.31283],[92.87777,12.31287],[92.87843,12.31362],[92.87814,12.31428],[92.87953,12.31522],[92.87887,12.31642],[92.87945,12.3172],[92.87958,12.318],[92.88139,12.31972],[92.88219,12.31953],[92.8838,12.32059],[92.88528,12.3228],[92.88589,12.32259],[92.88737,12.32072],[92.88893,12.3198],[92.88966,12.31755],[92.8904,12.31695],[92.89068,12.31712],[92.89035,12.31829],[92.89126,12.31908],[92.89304,12.31845],[92.8937,12.31789],[92.89405,12.31796],[92.89498,12.31727],[92.89566,12.31797],[92.89544,12.31884],[92.89583,12.31921],[92.89563,12.31968],[92.89618,12.31987],[92.89605,12.32017],[92.8966,12.32053],[92.89663,12.32101],[92.89703,12.32124],[92.89684,12.32152],[92.89735,12.32181],[92.89764,12.32261],[92.89819,12.32279],[92.89887,12.32214],[92.89924,12.32308],[92.90008,12.3235],[92.89871,12.32446],[92.8982,12.32563],[92.8978,12.32562],[92.89741,12.326],[92.89758,12.32629],[92.89734,12.32666],[92.89594,12.32703],[92.89515,12.32698],[92.89356,12.32578],[92.89049,12.32483],[92.88863,12.32494],[92.8871,12.32588],[92.88587,12.32727],[92.88611,12.32814],[92.88782,12.32892],[92.88776,12.3305],[92.88643,12.33153],[92.88523,12.33196],[92.88308,12.33175],[92.87742,12.33055],[92.87363,12.329],[92.87136,12.32915],[92.87094,12.32869],[92.87094,12.32925],[92.86933,12.3301],[92.86861,12.32907],[92.86858,12.32949],[92.86901,12.33019],[92.86887,12.33052],[92.86499,12.33294],[92.86434,12.33225],[92.8649,12.33143],[92.86487,12.33075],[92.86445,12.33079],[92.86332,12.33183],[92.86314,12.33167],[92.86359,12.33086],[92.86316,12.33063],[92.86338,12.33088],[92.86289,12.3318],[92.8632,12.33207],[92.86475,12.33098],[92.86411,12.33236],[92.86483,12.33316],[92.86438,12.33368],[92.86368,12.33303],[92.86312,12.3331],[92.86279,12.33417],[92.86247,12.33439],[92.86097,12.33343],[92.86226,12.33457],[92.86294,12.33437],[92.86329,12.33319],[92.86378,12.33332],[92.86426,12.33398],[92.86402,12.33472],[92.86213,12.33607],[92.86133,12.33628],[92.8606,12.33545],[92.85942,12.33476],[92.85791,12.33483]]],[[[92.90596,12.33784],[92.90623,12.33846],[92.90625,12.33872],[92.90612,12.33912],[92.90608,12.33973],[92.90596,12.34008],[92.90563,12.3405],[92.90508,12.34098],[92.90473,12.34117],[92.90435,12.34119],[92.90392,12.34111],[92.90362,12.34089],[92.90354,12.34063],[92.90362,12.34022],[92.90362,12.34002],[92.90371,12.33961],[92.90426,12.33808],[92.9045,12.33782],[92.90514,12.33777],[92.90523,12.3375],[92.90563,12.33729],[92.90592,12.33731],[92.90602,12.33742],[92.90612,12.33762],[92.90596,12.33784]]],[[[92.91264,12.3395],[92.91267,12.33995],[92.91222,12.34061],[92.91232,12.34081],[92.9129,12.34097],[92.9145,12.34268],[92.91482,12.34327],[92.91506,12.34428],[92.91626,12.34636],[92.91774,12.34805],[92.91816,12.34902],[92.9182,12.34954],[92.91848,12.34978],[92.919,12.35079],[92.91883,12.35103],[92.91907,12.35117],[92.91897,12.35165],[92.91755,12.35422],[92.91668,12.35508],[92.91471,12.35612],[92.91393,12.35637],[92.91323,12.35637],[92.91259,12.35605],[92.9114,12.35453],[92.91055,12.35377],[92.90897,12.35117],[92.90826,12.34843],[92.90826,12.34743],[92.90854,12.34659],[92.90826,12.34625],[92.90826,12.34573],[92.90861,12.34514],[92.90823,12.34462],[92.90786,12.3436],[92.90793,12.34284],[92.90759,12.34276],[92.90753,12.34242],[92.90774,12.34221],[92.90674,12.34167],[92.90756,12.34142],[92.90792,12.34103],[92.90765,12.34083],[92.90836,12.33956],[92.90878,12.33916],[92.90963,12.3378],[92.91004,12.338],[92.91042,12.33771],[92.91088,12.33935],[92.911,12.33955],[92.91138,12.3393],[92.91095,12.3366],[92.91128,12.33627],[92.9113,12.33585],[92.91103,12.3354],[92.91085,12.3355],[92.91057,12.33523],[92.91039,12.33545],[92.90987,12.33423],[92.90993,12.33336],[92.91033,12.33222],[92.91112,12.33163],[92.91153,12.33155],[92.91174,12.33175],[92.91197,12.33175],[92.91241,12.33259],[92.91262,12.33233],[92.91248,12.33172],[92.91265,12.33066],[92.91299,12.33091],[92.91311,12.33121],[92.91292,12.33148],[92.91309,12.33171],[92.91312,12.33216],[92.91281,12.33278],[92.91273,12.33365],[92.91232,12.33441],[92.91235,12.3346],[92.91214,12.3348],[92.91232,12.33551],[92.91267,12.33569],[92.91232,12.33607],[92.9119,12.33617],[92.91193,12.33769],[92.91264,12.3395]]],[[[93.85312,12.30022],[93.85278,12.30083],[93.85201,12.30138],[93.85099,12.30202],[93.85032,12.30208],[93.84988,12.30152],[93.84988,12.3009],[93.84916,12.29936],[93.84873,12.29885],[93.84834,12.29874],[93.84737,12.29911],[93.84616,12.2988],[93.84526,12.2974],[93.84414,12.29668],[93.84367,12.29549],[93.84274,12.2953],[93.84231,12.29485],[93.84162,12.29488],[93.84088,12.29546],[93.84026,12.29538],[93.84014,12.29454],[93.84045,12.29344],[93.83995,12.29294],[93.83999,12.29267],[93.84018,12.29233],[93.84146,12.29169],[93.84181,12.29077],[93.84173,12.2891],[93.8415,12.28887],[93.84022,12.28887],[93.837,12.28631],[93.83693,12.28582],[93.83716,12.28539],[93.83826,12.28469],[93.83819,12.28374],[93.83613,12.28205],[93.83547,12.27977],[93.83405,12.27816],[93.83443,12.27709],[93.83519,12.27682],[93.83571,12.27617],[93.83601,12.27501],[93.83684,12.27363],[93.83805,12.2742],[93.83978,12.27347],[93.84137,12.27075],[93.84294,12.27071],[93.84389,12.26966],[93.84536,12.26917],[93.8511,12.26895],[93.85313,12.26978],[93.85781,12.27077],[93.8609,12.27197],[93.86162,12.27204],[93.86256,12.27152],[93.86339,12.27156],[93.86487,12.27265],[93.86617,12.27404],[93.867,12.27538],[93.86721,12.27896],[93.86642,12.28061],[93.86765,12.28167],[93.86777,12.28225],[93.86843,12.28311],[93.86853,12.28523],[93.868,12.28603],[93.86711,12.28618],[93.86717,12.28699],[93.86564,12.28822],[93.86569,12.29036],[93.8651,12.29167],[93.86465,12.29418],[93.8628,12.29509],[93.86133,12.29664],[93.86088,12.29671],[93.8603,12.2984],[93.85958,12.29896],[93.85845,12.29926],[93.85774,12.30069],[93.85598,12.30048],[93.85499,12.30113],[93.8545,12.3011],[93.85369,12.30022],[93.85312,12.30022]]],[[[92.89715,12.39612],[92.89717,12.39653],[92.89713,12.39676],[92.89699,12.39683],[92.89678,12.39677],[92.8967,12.39664],[92.89639,12.39645],[92.89625,12.3963],[92.89622,12.39612],[92.89596,12.39629],[92.89553,12.39618],[92.89508,12.39636],[92.89491,12.39621],[92.89465,12.39622],[92.89444,12.39595],[92.89452,12.39582],[92.89448,12.39571],[92.89436,12.39568],[92.89453,12.3954],[92.89445,12.39527],[92.89465,12.39511],[92.89457,12.39504],[92.89457,12.39493],[92.89452,12.3949],[92.89464,12.39485],[92.89465,12.39475],[92.89459,12.39465],[92.89461,12.39451],[92.89436,12.39431],[92.89464,12.39402],[92.89462,12.39373],[92.89495,12.39349],[92.89516,12.39311],[92.89571,12.39274],[92.89573,12.39268],[92.89592,12.39247],[92.8962,12.39243],[92.89659,12.39201],[92.89676,12.39208],[92.89688,12.39232],[92.89697,12.39238],[92.89697,12.39256],[92.89709,12.39273],[92.89713,12.39295],[92.89705,12.39305],[92.89702,12.39324],[92.89726,12.39331],[92.89718,12.39359],[92.89719,12.39381],[92.89729,12.39393],[92.89715,12.3942],[92.8972,12.3943],[92.8972,12.39472],[92.89732,12.39491],[92.89724,12.39521],[92.89712,12.39543],[92.89715,12.39612]]],[[[92.86497,12.40857],[92.86483,12.40865],[92.86472,12.40859],[92.86459,12.40861],[92.86452,12.4086],[92.86446,12.4086],[92.86423,12.40848],[92.86413,12.40854],[92.86407,12.40848],[92.86408,12.40838],[92.86401,12.40831],[92.86394,12.40827],[92.86393,12.40821],[92.86393,12.40794],[92.86409,12.40788],[92.86411,12.40779],[92.86426,12.40772],[92.86431,12.40774],[92.86442,12.40773],[92.86452,12.40768],[92.86461,12.40771],[92.86467,12.40775],[92.86477,12.40772],[92.86509,12.40794],[92.86513,12.40799],[92.86521,12.40807],[92.86522,12.40817],[92.86518,12.40822],[92.86519,12.40831],[92.86512,12.40834],[92.86507,12.40853],[92.86497,12.40857]]],[[[92.88753,12.40807],[92.88699,12.40844],[92.88532,12.40729],[92.88396,12.40502],[92.88364,12.40346],[92.88417,12.40123],[92.884,12.40016],[92.88249,12.39884],[92.88097,12.39838],[92.87904,12.39864],[92.87543,12.40038],[92.87339,12.40372],[92.87317,12.40576],[92.87271,12.40607],[92.87222,12.40576],[92.87202,12.40612],[92.87114,12.40566],[92.87059,12.40576],[92.86999,12.40508],[92.8699,12.40421],[92.86919,12.40376],[92.86733,12.40348],[92.86581,12.40368],[92.86546,12.40212],[92.86578,12.40144],[92.86518,12.4022],[92.86544,12.40333],[92.86403,12.40394],[92.86258,12.40517],[92.86235,12.40574],[92.86124,12.40579],[92.85867,12.40691],[92.85435,12.40935],[92.85101,12.40855],[92.84732,12.40723],[92.84549,12.40606],[92.84421,12.40373],[92.84305,12.40272],[92.8427,12.40111],[92.84315,12.40013],[92.84391,12.3953],[92.84462,12.39491],[92.84731,12.39494],[92.84869,12.39429],[92.84858,12.394],[92.84893,12.3941],[92.8512,12.39233],[92.85363,12.38946],[92.85491,12.38886],[92.85656,12.38954],[92.86018,12.38924],[92.86052,12.39148],[92.86092,12.39198],[92.86041,12.38992],[92.86087,12.38862],[92.86052,12.38861],[92.86034,12.38909],[92.86003,12.38858],[92.8603,12.38676],[92.8601,12.38557],[92.85949,12.38472],[92.85906,12.38498],[92.85846,12.38465],[92.85857,12.38414],[92.85897,12.38389],[92.85989,12.38164],[92.8606,12.38076],[92.86442,12.37928],[92.8669,12.37748],[92.8677,12.37767],[92.86843,12.38028],[92.87202,12.38476],[92.87294,12.38488],[92.87493,12.3838],[92.87549,12.3831],[92.87735,12.38255],[92.87777,12.38211],[92.87777,12.38409],[92.87861,12.38466],[92.87945,12.38424],[92.88096,12.38249],[92.88153,12.38114],[92.88102,12.38045],[92.88136,12.37861],[92.88079,12.37733],[92.88049,12.37504],[92.88137,12.37388],[92.88226,12.3737],[92.88425,12.37516],[92.88482,12.37639],[92.8846,12.37689],[92.88513,12.37839],[92.88502,12.37912],[92.88533,12.37933],[92.88542,12.38137],[92.88542,12.38166],[92.88381,12.38276],[92.88343,12.38359],[92.88339,12.38574],[92.8826,12.38849],[92.88649,12.3913],[92.88965,12.39242],[92.89065,12.39422],[92.89227,12.39554],[92.89343,12.39736],[92.89328,12.39799],[92.89363,12.39923],[92.89463,12.40014],[92.89278,12.40073],[92.8914,12.4017],[92.89102,12.40233],[92.89143,12.40388],[92.89392,12.4063],[92.89427,12.40702],[92.894,12.40732],[92.88753,12.40807]]],[[[92.87534,12.40849],[92.87655,12.40857],[92.8774,12.40882],[92.87825,12.4092],[92.87931,12.40983],[92.88059,12.41069],[92.88043,12.41096],[92.87978,12.41094],[92.87765,12.41054],[92.87623,12.41017],[92.87384,12.40917],[92.87376,12.4089],[92.87391,12.40865],[92.87485,12.4085],[92.87534,12.40849]]],[[[92.88846,12.41304],[92.88841,12.41305],[92.88831,12.4129],[92.88823,12.41281],[92.88835,12.41275],[92.88843,12.41268],[92.88849,12.41271],[92.88854,12.41285],[92.88865,12.41289],[92.88866,12.41297],[92.88853,12.41295],[92.88846,12.41304]]],[[[92.89885,12.40908],[92.8988,12.40944],[92.89875,12.40952],[92.89865,12.4096],[92.89862,12.41026],[92.89869,12.41094],[92.89861,12.41145],[92.89851,12.41193],[92.89814,12.41219],[92.89787,12.41228],[92.89752,12.41219],[92.89712,12.41197],[92.89684,12.41177],[92.8966,12.41115],[92.89646,12.41063],[92.89657,12.41011],[92.89679,12.40955],[92.89683,12.40936],[92.89682,12.4093],[92.8969,12.40919],[92.89696,12.4092],[92.89695,12.40912],[92.89704,12.40897],[92.89707,12.40872],[92.8971,12.40863],[92.89707,12.40833],[92.89734,12.40823],[92.89749,12.40821],[92.89778,12.40806],[92.89777,12.40832],[92.89811,12.40816],[92.89826,12.40821],[92.89841,12.40819],[92.89844,12.40814],[92.8986,12.40808],[92.8987,12.40814],[92.89881,12.4084],[92.89885,12.40908]]],[[[92.88883,12.41427],[92.88858,12.41433],[92.88829,12.4145],[92.888,12.41414],[92.88795,12.41368],[92.88805,12.4134],[92.88828,12.41323],[92.88851,12.41319],[92.88864,12.41323],[92.88874,12.41333],[92.88877,12.41352],[92.88883,12.41366],[92.8891,12.41366],[92.88933,12.41391],[92.88944,12.41405],[92.88933,12.4142],[92.88928,12.41417],[92.88914,12.41402],[92.88912,12.41409],[92.88904,12.41426],[92.88898,12.41424],[92.88887,12.41416],[92.88883,12.41427]]],[[[92.90214,12.4133],[92.90205,12.41337],[92.90199,12.41326],[92.90183,12.41328],[92.90176,12.41313],[92.90162,12.41304],[92.90159,12.4129],[92.90154,12.41277],[92.90148,12.41268],[92.90145,12.41259],[92.90137,12.4125],[92.90134,12.41232],[92.90139,12.41219],[92.90134,12.41207],[92.90142,12.41199],[92.90153,12.41189],[92.9017,12.41194],[92.90191,12.41194],[92.90195,12.41201],[92.90201,12.41209],[92.90209,12.41215],[92.90215,12.41233],[92.90221,12.41236],[92.90224,12.41246],[92.90235,12.41251],[92.90241,12.41252],[92.90239,12.41272],[92.90249,12.4128],[92.90249,12.41296],[92.90254,12.41311],[92.90249,12.4132],[92.90231,12.41329],[92.90219,12.41321],[92.90214,12.4133]]],[[[92.88819,12.41477],[92.88804,12.41471],[92.88794,12.41476],[92.88787,12.41471],[92.88791,12.41457],[92.88795,12.41452],[92.88797,12.41442],[92.88818,12.41446],[92.88821,12.41457],[92.88822,12.41467],[92.88819,12.41477]]],[[[92.8621,12.41258],[92.86244,12.41257],[92.86254,12.41275],[92.86492,12.41278],[92.86565,12.41291],[92.86789,12.41378],[92.86838,12.41415],[92.86868,12.41484],[92.86835,12.41568],[92.86821,12.41654],[92.86816,12.41755],[92.86832,12.41867],[92.86796,12.41986],[92.86784,12.42013],[92.86762,12.42036],[92.86723,12.42058],[92.86563,12.42105],[92.86492,12.42121],[92.86464,12.4212],[92.8642,12.42094],[92.86302,12.41992],[92.86262,12.4197],[92.85932,12.41808],[92.85864,12.41789],[92.85828,12.41761],[92.85787,12.41709],[92.85769,12.41668],[92.85786,12.41581],[92.85801,12.41566],[92.85801,12.41545],[92.85823,12.4151],[92.85831,12.41475],[92.85999,12.41341],[92.86069,12.41298],[92.86161,12.41261],[92.8621,12.41258]]],[[[92.83246,12.42692],[92.83077,12.42692],[92.82948,12.42643],[92.82901,12.42601],[92.82857,12.42402],[92.82864,12.42274],[92.8296,12.42088],[92.83056,12.42041],[92.83254,12.41863],[92.83313,12.41831],[92.83405,12.41707],[92.8354,12.41673],[92.83594,12.41629],[92.83687,12.41603],[92.83767,12.41536],[92.83797,12.41455],[92.83769,12.41272],[92.83785,12.41204],[92.83828,12.41131],[92.83892,12.41132],[92.83949,12.41158],[92.84083,12.41405],[92.84276,12.4152],[92.84394,12.41398],[92.84777,12.41111],[92.8488,12.41093],[92.85035,12.41035],[92.85171,12.40958],[92.85203,12.40963],[92.85213,12.40992],[92.85259,12.41017],[92.85307,12.40992],[92.8534,12.41022],[92.85364,12.41083],[92.85328,12.41179],[92.85341,12.41208],[92.85427,12.41267],[92.85569,12.41324],[92.85827,12.41314],[92.85843,12.41331],[92.85515,12.41449],[92.85033,12.41779],[92.84722,12.41762],[92.84611,12.4178],[92.84499,12.41909],[92.84306,12.42042],[92.84264,12.42042],[92.84259,12.42012],[92.84288,12.41894],[92.84329,12.41826],[92.84285,12.41736],[92.84259,12.41586],[92.84199,12.41601],[92.84261,12.41789],[92.84206,12.42057],[92.84168,12.42112],[92.84003,12.4228],[92.83959,12.4223],[92.83956,12.42198],[92.84016,12.42037],[92.83989,12.42025],[92.83923,12.42171],[92.839,12.42112],[92.83911,12.42039],[92.8389,12.42037],[92.83871,12.42134],[92.83972,12.42312],[92.83729,12.42492],[92.83679,12.42445],[92.83611,12.42292],[92.83619,12.422],[92.83582,12.42249],[92.83582,12.42281],[92.83645,12.42438],[92.83699,12.42511],[92.83524,12.42605],[92.83246,12.42692]]],[[[92.903,12.42154],[92.90306,12.4218],[92.90331,12.42233],[92.90342,12.42304],[92.90338,12.42329],[92.90303,12.42377],[92.90158,12.42541],[92.90083,12.42612],[92.90062,12.4262],[92.90038,12.42623],[92.89964,12.4262],[92.89926,12.42608],[92.89888,12.42587],[92.8986,12.42563],[92.89851,12.42549],[92.89867,12.42499],[92.89876,12.42452],[92.89876,12.42421],[92.89855,12.42382],[92.8986,12.42361],[92.89829,12.42338],[92.8982,12.42322],[92.89821,12.42205],[92.89823,12.42177],[92.8983,12.42165],[92.89844,12.42154],[92.89891,12.42167],[92.89901,12.42153],[92.89917,12.42157],[92.89929,12.42154],[92.90003,12.4211],[92.90052,12.42097],[92.90131,12.42055],[92.90159,12.42047],[92.90216,12.42044],[92.90248,12.42053],[92.90281,12.42085],[92.90297,12.42125],[92.903,12.42154]]],[[[92.95618,12.43462],[92.95592,12.43546],[92.95738,12.43733],[92.95746,12.43774],[92.95705,12.43755],[92.95302,12.43442],[92.95131,12.43176],[92.95132,12.43082],[92.95219,12.43009],[92.95015,12.42962],[92.94869,12.42988],[92.94754,12.42896],[92.94775,12.42627],[92.94653,12.42321],[92.94644,12.42154],[92.94648,12.41843],[92.94734,12.41558],[92.94643,12.41611],[92.94636,12.41702],[92.94423,12.42014],[92.94005,12.42185],[92.93973,12.42253],[92.94052,12.42375],[92.93842,12.42316],[92.93711,12.42177],[92.935,12.4215],[92.93467,12.42069],[92.93358,12.42055],[92.93086,12.41835],[92.93108,12.41794],[92.93029,12.41718],[92.92985,12.41517],[92.9287,12.41376],[92.92645,12.40619],[92.92485,12.40408],[92.92484,12.40188],[92.92422,12.40083],[92.92451,12.39934],[92.92413,12.3984],[92.92454,12.39816],[92.92402,12.3974],[92.92361,12.39042],[92.92536,12.39061],[92.92786,12.3882],[92.92787,12.38613],[92.92774,12.38795],[92.92631,12.38872],[92.92669,12.3865],[92.9257,12.38685],[92.92528,12.38647],[92.92324,12.38258],[92.92295,12.38274],[92.92147,12.38106],[92.91792,12.37618],[92.91717,12.37138],[92.91755,12.37025],[92.91733,12.36931],[92.91699,12.3694],[92.91735,12.36924],[92.91703,12.36789],[92.91738,12.36654],[92.91613,12.36358],[92.91673,12.3628],[92.9209,12.3639],[92.92343,12.36307],[92.92559,12.36295],[92.92619,12.36203],[92.92867,12.36101],[92.93019,12.35677],[92.93234,12.35959],[92.93417,12.36447],[92.93606,12.37152],[92.93707,12.37311],[92.93693,12.37465],[92.9376,12.37784],[92.94229,12.38171],[92.94333,12.38391],[92.94348,12.38639],[92.94251,12.38818],[92.94316,12.39134],[92.94306,12.39367],[92.9438,12.39607],[92.94323,12.39817],[92.94402,12.40195],[92.94468,12.40235],[92.94454,12.4034],[92.94543,12.40531],[92.94801,12.40673],[92.95044,12.40712],[92.95137,12.40679],[92.9533,12.41312],[92.95686,12.41604],[92.95612,12.41629],[92.95696,12.41666],[92.9572,12.41621],[92.95844,12.41717],[92.95892,12.41809],[92.9586,12.4193],[92.95941,12.41959],[92.95962,12.42118],[92.96001,12.42005],[92.96073,12.42121],[92.96094,12.42285],[92.96054,12.42379],[92.95896,12.42491],[92.95724,12.4241],[92.95763,12.42352],[92.95684,12.42369],[92.95637,12.42486],[92.95684,12.42514],[92.95708,12.42665],[92.955,12.42804],[92.95513,12.42947],[92.95463,12.42974],[92.95494,12.43063],[92.95579,12.43026],[92.95851,12.43106],[92.95676,12.43244],[92.95734,12.43461],[92.95618,12.43462]]],[[[92.68347,12.55408],[92.68316,12.55426],[92.68294,12.55524],[92.68348,12.55573],[92.68337,12.5563],[92.68265,12.55674],[92.68149,12.55674],[92.68136,12.5555],[92.68022,12.55538],[92.67661,12.55149],[92.67273,12.54561],[92.67181,12.54355],[92.66866,12.54003],[92.66726,12.53766],[92.6643,12.53547],[92.6618,12.53288],[92.66245,12.53052],[92.66385,12.52809],[92.66388,12.52656],[92.66576,12.52563],[92.66676,12.523],[92.66975,12.51996],[92.67018,12.51882],[92.67033,12.51635],[92.67127,12.51428],[92.67416,12.50984],[92.67632,12.50756],[92.67714,12.50606],[92.67814,12.50556],[92.67922,12.50565],[92.68026,12.50674],[92.68157,12.51029],[92.68301,12.5129],[92.68313,12.51473],[92.68416,12.51689],[92.68264,12.51928],[92.68242,12.52113],[92.68126,12.52298],[92.68133,12.52479],[92.68276,12.52643],[92.68263,12.52748],[92.68205,12.52852],[92.68219,12.53],[92.68157,12.53151],[92.68389,12.53387],[92.68329,12.53598],[92.68373,12.53607],[92.68532,12.53525],[92.68633,12.53666],[92.68626,12.53769],[92.68536,12.53932],[92.68544,12.54117],[92.68462,12.54215],[92.68697,12.54551],[92.68703,12.54594],[92.6864,12.54697],[92.68656,12.54797],[92.68742,12.5487],[92.68807,12.55006],[92.68701,12.55068],[92.68687,12.55184],[92.68507,12.55223],[92.6852,12.55296],[92.68629,12.55345],[92.68636,12.55378],[92.6843,12.55441],[92.68347,12.55408]]],[[[92.70099,12.63761],[92.70086,12.63775],[92.7007,12.63777],[92.7004,12.63805],[92.70026,12.63812],[92.70016,12.63822],[92.70002,12.63823],[92.69996,12.63817],[92.69991,12.63804],[92.69967,12.63802],[92.6996,12.63794],[92.69928,12.63747],[92.69921,12.63732],[92.69919,12.63714],[92.6993,12.63695],[92.69937,12.63691],[92.69953,12.6369],[92.69964,12.63698],[92.6997,12.63689],[92.69978,12.63688],[92.69983,12.63694],[92.69988,12.63708],[92.69992,12.63709],[92.69997,12.63714],[92.70003,12.63724],[92.70011,12.63709],[92.70044,12.63696],[92.70057,12.63705],[92.70058,12.63716],[92.70071,12.63703],[92.7009,12.63691],[92.70099,12.63688],[92.7011,12.63693],[92.70116,12.63698],[92.7012,12.63705],[92.70126,12.637],[92.70128,12.63694],[92.70135,12.63686],[92.70139,12.63676],[92.7015,12.63667],[92.70158,12.63664],[92.70147,12.63647],[92.70146,12.63642],[92.70156,12.63626],[92.70171,12.63618],[92.70192,12.63611],[92.7022,12.63618],[92.70227,12.63629],[92.70232,12.63641],[92.70238,12.63647],[92.70238,12.63672],[92.70248,12.63689],[92.70248,12.63696],[92.70244,12.63705],[92.70233,12.63713],[92.70239,12.63734],[92.70232,12.63752],[92.7023,12.63766],[92.70218,12.6377],[92.70193,12.6376],[92.70188,12.63754],[92.70168,12.63758],[92.70157,12.63757],[92.70151,12.6375],[92.70136,12.63753],[92.70126,12.63752],[92.70115,12.63747],[92.70099,12.63761]]],[[[92.70276,12.64006],[92.70276,12.6403],[92.70216,12.64117],[92.70205,12.64125],[92.70183,12.64128],[92.70153,12.64119],[92.70112,12.64094],[92.70067,12.64047],[92.70023,12.63992],[92.70018,12.63978],[92.70015,12.63986],[92.7,12.63983],[92.69984,12.63974],[92.69972,12.63974],[92.69971,12.63988],[92.69961,12.63983],[92.69939,12.6396],[92.69923,12.63958],[92.6992,12.63942],[92.69888,12.63918],[92.69888,12.63895],[92.69898,12.63894],[92.69908,12.6388],[92.6992,12.63889],[92.69926,12.63891],[92.69937,12.63879],[92.69964,12.63903],[92.69974,12.63888],[92.6998,12.63894],[92.69987,12.63913],[92.70001,12.63915],[92.70002,12.6393],[92.70007,12.63939],[92.70013,12.63942],[92.70013,12.63924],[92.70026,12.63871],[92.7007,12.63825],[92.70173,12.63799],[92.70218,12.63814],[92.70241,12.63837],[92.70267,12.63934],[92.70276,12.64006]]],[[[92.70037,12.64036],[92.70045,12.64043],[92.70047,12.64055],[92.70057,12.64077],[92.70064,12.6409],[92.70089,12.64106],[92.70103,12.64141],[92.70099,12.64146],[92.70088,12.64146],[92.7007,12.64134],[92.70054,12.64121],[92.70037,12.64093],[92.70016,12.64069],[92.70019,12.64041],[92.70028,12.64034],[92.70037,12.64036]]],[[[92.7025,12.64367],[92.70237,12.64372],[92.70234,12.64346],[92.7022,12.64347],[92.70209,12.64322],[92.70202,12.64317],[92.70194,12.64315],[92.70192,12.64304],[92.70186,12.64286],[92.70152,12.64268],[92.70147,12.64258],[92.70118,12.64242],[92.70123,12.64225],[92.70094,12.64175],[92.70128,12.64175],[92.7014,12.64152],[92.70147,12.64162],[92.7015,12.64183],[92.7016,12.64175],[92.70163,12.64171],[92.70171,12.64179],[92.70182,12.6417],[92.70191,12.64183],[92.70197,12.64184],[92.7021,12.64178],[92.70235,12.6416],[92.70244,12.64165],[92.7025,12.64154],[92.70258,12.6415],[92.70261,12.64135],[92.70284,12.64116],[92.70279,12.64149],[92.70274,12.64161],[92.70264,12.64174],[92.70272,12.64195],[92.70288,12.64209],[92.70264,12.64231],[92.70271,12.64242],[92.70272,12.64266],[92.70279,12.64268],[92.7026,12.64286],[92.70271,12.64299],[92.70275,12.64311],[92.7026,12.64321],[92.70251,12.64316],[92.7025,12.64367]]],[[[92.72686,12.65537],[92.72686,12.65547],[92.72637,12.65553],[92.72632,12.65518],[92.72649,12.65518],[92.72662,12.65523],[92.72672,12.65517],[92.72687,12.65515],[92.72692,12.65507],[92.72693,12.65495],[92.72703,12.6549],[92.72719,12.65454],[92.72718,12.65446],[92.72706,12.65435],[92.727,12.65425],[92.72755,12.65418],[92.72773,12.65417],[92.72788,12.65426],[92.72797,12.65421],[92.72805,12.65409],[92.72817,12.65397],[92.72805,12.65394],[92.72809,12.65355],[92.72822,12.6536],[92.72844,12.65345],[92.72881,12.65341],[92.7289,12.65308],[92.72917,12.65306],[92.72923,12.65298],[92.72948,12.65293],[92.72956,12.65296],[92.7296,12.65304],[92.72975,12.65305],[92.72988,12.6531],[92.72993,12.65301],[92.72999,12.65302],[92.73014,12.65312],[92.73003,12.65327],[92.72993,12.65333],[92.72966,12.65324],[92.72962,12.6533],[92.72959,12.65347],[92.72941,12.65351],[92.7293,12.65337],[92.72921,12.65341],[92.72924,12.65361],[92.72897,12.65363],[92.72883,12.65368],[92.72875,12.65384],[92.72869,12.6539],[92.72853,12.6539],[92.72847,12.65404],[92.72831,12.65412],[92.72831,12.65435],[92.72826,12.65442],[92.72803,12.65456],[92.72791,12.65451],[92.7278,12.65463],[92.72774,12.65465],[92.72768,12.65459],[92.72763,12.65462],[92.7276,12.65475],[92.72752,12.65473],[92.7274,12.65474],[92.72735,12.6548],[92.72735,12.655],[92.7273,12.65502],[92.72716,12.65497],[92.72705,12.65523],[92.72699,12.65526],[92.72688,12.65525],[92.72686,12.65537]]],[[[92.72546,12.65617],[92.72536,12.65641],[92.72514,12.65604],[92.72514,12.65594],[92.72496,12.65585],[92.72494,12.65565],[92.72486,12.65564],[92.72483,12.65546],[92.72474,12.65543],[92.7247,12.65535],[92.72465,12.65532],[92.72465,12.65519],[92.72458,12.65513],[92.72451,12.6552],[92.72444,12.65523],[92.72433,12.65518],[92.72418,12.65522],[92.72413,12.65519],[92.72404,12.65504],[92.72415,12.6549],[92.72418,12.65466],[92.72431,12.65466],[92.7244,12.6545],[92.72433,12.65431],[92.72446,12.65418],[92.72443,12.65407],[92.72428,12.65393],[92.72436,12.65381],[92.72447,12.65383],[92.72442,12.65373],[92.72448,12.65359],[92.72436,12.65345],[92.72444,12.65335],[92.72456,12.65328],[92.72467,12.65292],[92.72494,12.65275],[92.72511,12.65301],[92.72502,12.6532],[92.72505,12.65344],[92.7249,12.65344],[92.72508,12.65373],[92.72544,12.65404],[92.72574,12.65422],[92.72583,12.65412],[92.72599,12.65425],[92.72616,12.65425],[92.72635,12.65422],[92.72648,12.65431],[92.72657,12.65446],[92.72671,12.6545],[92.72691,12.65447],[92.72699,12.65459],[92.72694,12.65465],[92.7268,12.65475],[92.72656,12.6547],[92.72651,12.65486],[92.72646,12.65491],[92.72635,12.65493],[92.72622,12.65511],[92.7261,12.65521],[92.72604,12.65511],[92.72595,12.65514],[92.7259,12.65539],[92.72582,12.65544],[92.72582,12.65555],[92.72572,12.6556],[92.72572,12.65571],[92.72566,12.65574],[92.72564,12.65593],[92.7256,12.65603],[92.72554,12.65604],[92.72546,12.65617]]],[[[92.78086,12.64614],[92.78149,12.64667],[92.7818,12.64761],[92.78143,12.64941],[92.78149,12.65056],[92.78129,12.65269],[92.78124,12.65561],[92.78099,12.65584],[92.78065,12.6557],[92.78055,12.65517],[92.78072,12.65346],[92.7805,12.65285],[92.77942,12.64856],[92.77946,12.64705],[92.77996,12.64648],[92.78058,12.64614],[92.78086,12.64614]]],[[[92.71457,12.68858],[92.71473,12.68878],[92.71485,12.68908],[92.71485,12.68928],[92.71478,12.68937],[92.71469,12.68958],[92.71443,12.68986],[92.71414,12.69003],[92.71397,12.6901],[92.71365,12.69009],[92.71344,12.6898],[92.71333,12.68945],[92.71342,12.68909],[92.71356,12.68892],[92.71363,12.6888],[92.71389,12.68856],[92.71423,12.68849],[92.71457,12.68858]]],[[[92.72261,12.69204],[92.72269,12.69215],[92.72273,12.69226],[92.72273,12.69241],[92.72274,12.69253],[92.72273,12.69259],[92.72268,12.69263],[92.72255,12.69268],[92.72245,12.69273],[92.72239,12.69274],[92.72228,12.6926],[92.72213,12.69248],[92.72213,12.69242],[92.72217,12.69228],[92.72219,12.6921],[92.72234,12.69199],[92.72253,12.69193],[92.72261,12.69204]]],[[[92.7742,12.67358],[92.7747,12.67383],[92.77538,12.67449],[92.77633,12.67612],[92.77813,12.68011],[92.77905,12.68157],[92.7797,12.68328],[92.78003,12.68455],[92.78118,12.68661],[92.78183,12.68733],[92.78208,12.68785],[92.78199,12.68824],[92.78157,12.68827],[92.78085,12.68764],[92.77885,12.68309],[92.77703,12.68025],[92.77544,12.67733],[92.77468,12.67609],[92.77358,12.67499],[92.77285,12.67441],[92.7726,12.67397],[92.77285,12.67366],[92.7733,12.6735],[92.77375,12.67342],[92.7742,12.67358]]],[[[92.73194,12.70306],[92.73206,12.70341],[92.73194,12.70377],[92.73143,12.70434],[92.73105,12.70463],[92.73075,12.70481],[92.73067,12.70491],[92.73069,12.70547],[92.73058,12.70556],[92.73048,12.70582],[92.73036,12.70583],[92.73027,12.70579],[92.73011,12.70564],[92.73002,12.70534],[92.73001,12.7051],[92.73009,12.705],[92.73005,12.70467],[92.72991,12.70443],[92.72972,12.70368],[92.72985,12.70356],[92.72966,12.70316],[92.72965,12.70298],[92.72945,12.7028],[92.72938,12.7026],[92.72955,12.70218],[92.72966,12.70177],[92.72979,12.70155],[92.73002,12.70161],[92.73016,12.70171],[92.73024,12.70187],[92.73015,12.70208],[92.73037,12.70235],[92.73039,12.70254],[92.73109,12.70287],[92.7317,12.70291],[92.73194,12.70306]]],[[[92.78295,12.71733],[92.78281,12.71806],[92.78247,12.71872],[92.78213,12.71807],[92.78147,12.71746],[92.78067,12.7172],[92.77857,12.71805],[92.77755,12.71822],[92.777,12.71791],[92.77684,12.71698],[92.77729,12.71578],[92.77934,12.71306],[92.78078,12.7118],[92.78099,12.71155],[92.78116,12.71173],[92.78342,12.71266],[92.78389,12.71339],[92.78389,12.71371],[92.78322,12.71428],[92.78217,12.71501],[92.782,12.71536],[92.78205,12.71563],[92.78241,12.71607],[92.78282,12.71642],[92.78299,12.71695],[92.78295,12.71733]]],[[[92.78135,12.71804],[92.78178,12.71839],[92.78197,12.71869],[92.78191,12.71903],[92.78157,12.71905],[92.78127,12.71903],[92.78106,12.71902],[92.78076,12.71874],[92.78065,12.71847],[92.78068,12.71817],[92.781,12.71797],[92.78135,12.71804]]],[[[92.7377,12.7335],[92.73763,12.73364],[92.73768,12.734],[92.73767,12.73407],[92.73758,12.73412],[92.73751,12.7341],[92.73742,12.73384],[92.73734,12.73339],[92.73734,12.73323],[92.73741,12.73309],[92.73756,12.73304],[92.73771,12.73293],[92.7379,12.73274],[92.73803,12.73263],[92.73818,12.73259],[92.73834,12.73259],[92.73845,12.73263],[92.73847,12.7327],[92.73847,12.73288],[92.73839,12.73297],[92.7381,12.73305],[92.73803,12.73312],[92.73801,12.73333],[92.73797,12.73344],[92.73781,12.73344],[92.7377,12.7335]]],[[[92.7242,12.73605],[92.72363,12.7364],[92.72212,12.73767],[92.72197,12.73763],[92.72194,12.7371],[92.72173,12.73654],[92.72174,12.73619],[92.72212,12.73561],[92.7228,12.73504],[92.72288,12.73454],[92.72313,12.73411],[92.7236,12.73358],[92.72448,12.7329],[92.72452,12.73273],[92.72432,12.73219],[92.72436,12.73179],[92.72476,12.7309],[92.72493,12.73093],[92.72529,12.7302],[92.72534,12.72986],[92.72574,12.72906],[92.72572,12.72852],[92.72577,12.72825],[92.72635,12.72796],[92.72629,12.72766],[92.72633,12.72731],[92.72642,12.72721],[92.72664,12.72722],[92.7267,12.72683],[92.72686,12.72671],[92.72692,12.72678],[92.72697,12.72658],[92.72733,12.7266],[92.72741,12.72682],[92.72753,12.72682],[92.72759,12.72694],[92.72765,12.72723],[92.72764,12.72781],[92.72788,12.72821],[92.72788,12.72837],[92.72764,12.7285],[92.72793,12.72884],[92.72811,12.72874],[92.72828,12.72876],[92.72868,12.72914],[92.72901,12.72988],[92.72895,12.73061],[92.72854,12.73159],[92.72814,12.73228],[92.72732,12.73324],[92.72717,12.73352],[92.72706,12.7341],[92.72664,12.73466],[92.72656,12.73498],[92.72658,12.73546],[92.72622,12.7363],[92.72584,12.73648],[92.72562,12.73645],[92.72475,12.73608],[92.7245,12.73602],[92.7242,12.73605]]],[[[92.72609,12.75172],[92.72617,12.75172],[92.72631,12.75194],[92.72629,12.75216],[92.72606,12.75292],[92.72604,12.75303],[92.72604,12.75331],[92.72602,12.75361],[92.72592,12.75379],[92.72559,12.75388],[92.72525,12.75388],[92.72512,12.75378],[92.72502,12.75373],[92.72469,12.75342],[92.72467,12.75319],[92.72468,12.75308],[92.72474,12.75286],[92.72479,12.75276],[92.72504,12.75249],[92.72528,12.7522],[92.72554,12.75198],[92.72576,12.7518],[92.726,12.75172],[92.72609,12.75172]]],[[[92.96851,12.74042],[92.96872,12.74053],[92.96882,12.74058],[92.96882,12.7407],[92.96871,12.74078],[92.96869,12.74083],[92.96867,12.74091],[92.96895,12.74125],[92.96889,12.74139],[92.96842,12.74156],[92.96834,12.74148],[92.96829,12.74111],[92.96819,12.7409],[92.96819,12.7407],[92.96832,12.74049],[92.96838,12.74045],[92.9684,12.7404],[92.96851,12.74042]]],[[[92.96781,12.74297],[92.9676,12.74301],[92.96754,12.7432],[92.96746,12.74327],[92.96726,12.74322],[92.96712,12.74313],[92.96716,12.74301],[92.96723,12.74286],[92.96728,12.74275],[92.96739,12.74268],[92.96741,12.74278],[92.96747,12.74282],[92.96756,12.74284],[92.96776,12.74283],[92.96776,12.74276],[92.96766,12.74269],[92.96756,12.74268],[92.9675,12.7426],[92.96766,12.74249],[92.96772,12.7424],[92.96777,12.74214],[92.96791,12.74216],[92.96803,12.74214],[92.96825,12.74214],[92.96825,12.7421],[92.96821,12.74185],[92.96812,12.7418],[92.96818,12.74178],[92.96833,12.74184],[92.96833,12.7419],[92.96833,12.74199],[92.96845,12.74202],[92.96845,12.74213],[92.96834,12.74221],[92.9683,12.74244],[92.96824,12.74252],[92.96813,12.74252],[92.96807,12.74257],[92.96806,12.74271],[92.96797,12.74274],[92.96781,12.74297]]],[[[92.65476,12.76953],[92.65506,12.76988],[92.65547,12.77077],[92.65582,12.77218],[92.65597,12.77296],[92.65629,12.77403],[92.65609,12.77455],[92.65603,12.77478],[92.6557,12.77487],[92.65479,12.77443],[92.65453,12.77426],[92.65397,12.7734],[92.65365,12.77253],[92.65348,12.77141],[92.65359,12.77063],[92.65374,12.77005],[92.654,12.76962],[92.65435,12.76948],[92.65476,12.76953]]],[[[92.71674,12.77369],[92.71719,12.7739],[92.71751,12.77414],[92.7176,12.77433],[92.71758,12.77452],[92.71679,12.7748],[92.71661,12.77483],[92.71632,12.7748],[92.7161,12.77467],[92.71597,12.7745],[92.71588,12.77427],[92.71594,12.774],[92.71609,12.77383],[92.71635,12.77366],[92.71674,12.77369]]],[[[92.71651,12.77523],[92.71683,12.77539],[92.71708,12.77559],[92.71711,12.77569],[92.71692,12.77608],[92.71689,12.7766],[92.71686,12.77679],[92.71657,12.77692],[92.71574,12.77704],[92.71536,12.77707],[92.71527,12.77704],[92.71477,12.77703],[92.71471,12.77673],[92.71481,12.77613],[92.71506,12.7758],[92.71526,12.77546],[92.71562,12.77522],[92.71607,12.77514],[92.71651,12.77523]]],[[[92.9603,12.75592],[92.96026,12.75559],[92.9604,12.75551],[92.9604,12.75535],[92.96048,12.75526],[92.96059,12.75537],[92.96071,12.75525],[92.96077,12.75529],[92.96074,12.75554],[92.96066,12.75568],[92.9606,12.75589],[92.96047,12.75578],[92.9603,12.75592]]],[[[92.95492,12.75774],[92.95461,12.75768],[92.95444,12.75778],[92.95434,12.75768],[92.95417,12.75767],[92.95407,12.75764],[92.95411,12.75744],[92.95431,12.75744],[92.9546,12.75726],[92.95464,12.75746],[92.95488,12.75716],[92.95504,12.75717],[92.95517,12.75708],[92.95525,12.7573],[92.95549,12.75702],[92.95566,12.75683],[92.9558,12.75672],[92.95598,12.75665],[92.9561,12.75681],[92.95604,12.75711],[92.95604,12.75724],[92.956,12.75736],[92.95585,12.75733],[92.95578,12.75748],[92.95557,12.75745],[92.95552,12.75761],[92.95511,12.7576],[92.95511,12.75767],[92.95498,12.75761],[92.95492,12.75774]]],[[[92.9589,12.75753],[92.95857,12.7575],[92.95846,12.75753],[92.9585,12.75747],[92.95859,12.75721],[92.95855,12.75711],[92.95847,12.75707],[92.95837,12.75709],[92.95851,12.75688],[92.95865,12.75693],[92.95874,12.75673],[92.95879,12.75671],[92.95892,12.75677],[92.95902,12.75677],[92.9591,12.7566],[92.95926,12.7566],[92.95944,12.75638],[92.95963,12.75654],[92.95972,12.75631],[92.95993,12.75642],[92.95981,12.75659],[92.95977,12.75666],[92.95987,12.75681],[92.95977,12.75687],[92.95968,12.75696],[92.9595,12.75697],[92.95944,12.75707],[92.95922,12.75709],[92.95913,12.75721],[92.95898,12.75717],[92.95885,12.75723],[92.95881,12.75732],[92.95888,12.7574],[92.9589,12.75753]]],[[[92.71527,12.7831],[92.71566,12.78313],[92.71585,12.78336],[92.71592,12.78369],[92.71592,12.78386],[92.71572,12.78404],[92.71554,12.78407],[92.71513,12.78384],[92.71494,12.78366],[92.71486,12.78328],[92.71493,12.78311],[92.71527,12.7831]]],[[[92.72086,12.77881],[92.7204,12.78061],[92.72,12.78142],[92.71926,12.78445],[92.71849,12.78596],[92.71689,12.78804],[92.71657,12.78819],[92.71606,12.78783],[92.71568,12.78709],[92.71625,12.78585],[92.71662,12.78292],[92.71604,12.78209],[92.71433,12.78135],[92.71426,12.7804],[92.71391,12.77913],[92.71425,12.7786],[92.7171,12.77859],[92.7177,12.77872],[92.71829,12.77866],[92.71857,12.77843],[92.71878,12.778],[92.71879,12.77744],[92.71863,12.77699],[92.71796,12.77646],[92.7178,12.77574],[92.71777,12.77419],[92.71681,12.77306],[92.71665,12.77254],[92.71672,12.7722],[92.71756,12.77071],[92.71796,12.76959],[92.71915,12.76804],[92.72086,12.76516],[92.72067,12.76495],[92.7211,12.76467],[92.7212,12.76478],[92.72166,12.76393],[92.72276,12.7627],[92.72348,12.76218],[92.724,12.76207],[92.72425,12.76231],[92.72423,12.76281],[92.72353,12.76508],[92.72339,12.76673],[92.72347,12.76742],[92.72276,12.76937],[92.72257,12.77113],[92.72155,12.77349],[92.72162,12.77427],[92.72119,12.7753],[92.72098,12.77639],[92.72106,12.77703],[92.72086,12.77881]]],[[[92.94067,12.76983],[92.94038,12.76975],[92.94023,12.76974],[92.94014,12.76959],[92.93994,12.76959],[92.93988,12.76946],[92.9397,12.76954],[92.93958,12.76944],[92.93931,12.7694],[92.93934,12.76931],[92.93943,12.76918],[92.93929,12.76904],[92.93964,12.7688],[92.9398,12.76875],[92.93987,12.7687],[92.94048,12.76908],[92.94094,12.76932],[92.94104,12.76927],[92.94122,12.76947],[92.94104,12.76958],[92.94097,12.76965],[92.94079,12.76965],[92.94067,12.76983]]],[[[92.71718,12.78972],[92.71735,12.78975],[92.71749,12.78985],[92.71751,12.79018],[92.71724,12.79055],[92.71705,12.79068],[92.71695,12.79073],[92.71661,12.7907],[92.71651,12.79054],[92.71651,12.79039],[92.71652,12.79028],[92.71663,12.79007],[92.71686,12.78984],[92.71713,12.78972],[92.71718,12.78972]]],[[[92.94665,12.77121],[92.94651,12.77101],[92.9463,12.7712],[92.94621,12.77109],[92.94607,12.7712],[92.94601,12.7711],[92.94584,12.77112],[92.94564,12.77109],[92.94552,12.77103],[92.94536,12.77115],[92.94529,12.771],[92.94513,12.77107],[92.94502,12.77095],[92.94486,12.77097],[92.94474,12.77114],[92.94463,12.77093],[92.94453,12.77086],[92.94452,12.77069],[92.9444,12.77068],[92.94428,12.77085],[92.94417,12.77063],[92.94396,12.77071],[92.94381,12.77047],[92.94369,12.77053],[92.94357,12.7703],[92.94346,12.77038],[92.94333,12.77024],[92.94322,12.77024],[92.94308,12.7701],[92.94304,12.76998],[92.94321,12.76997],[92.9432,12.7699],[92.94299,12.76967],[92.94336,12.7697],[92.94402,12.76991],[92.94436,12.77006],[92.94453,12.77021],[92.94465,12.77023],[92.94486,12.77021],[92.9451,12.77027],[92.94524,12.77043],[92.94557,12.77025],[92.94567,12.77041],[92.94575,12.77047],[92.94596,12.77046],[92.94602,12.77055],[92.94609,12.77061],[92.94618,12.77059],[92.94629,12.77044],[92.94659,12.77052],[92.9467,12.77052],[92.94681,12.77077],[92.94702,12.77097],[92.947,12.77102],[92.9468,12.77101],[92.94678,12.77094],[92.94665,12.77121]]],[[[92.71763,12.79449],[92.71751,12.79457],[92.71711,12.79493],[92.71685,12.79524],[92.71659,12.79526],[92.71642,12.79505],[92.71664,12.79447],[92.71685,12.79413],[92.7171,12.7938],[92.71731,12.79361],[92.71738,12.79265],[92.71756,12.79213],[92.71786,12.79157],[92.71824,12.79124],[92.71858,12.79104],[92.71886,12.79109],[92.71899,12.79118],[92.71906,12.79135],[92.71898,12.7916],[92.71884,12.79176],[92.71881,12.79203],[92.71901,12.7924],[92.71903,12.79275],[92.71887,12.79311],[92.7186,12.79398],[92.71814,12.79437],[92.71782,12.79439],[92.71763,12.79449]]],[[[92.72056,12.79516],[92.72073,12.79522],[92.72093,12.79524],[92.7211,12.79524],[92.72144,12.79536],[92.72184,12.79559],[92.72235,12.79604],[92.72251,12.79634],[92.72251,12.79657],[92.72234,12.79677],[92.72213,12.79674],[92.72175,12.79653],[92.72082,12.79618],[92.72053,12.79602],[92.72034,12.7959],[92.7202,12.79571],[92.7202,12.79544],[92.72028,12.79528],[92.72035,12.7952],[92.72048,12.79513],[92.72056,12.79516]]],[[[92.71461,12.79487],[92.71485,12.79498],[92.71508,12.7952],[92.71518,12.79547],[92.7152,12.79571],[92.71519,12.79595],[92.71532,12.79609],[92.71542,12.79614],[92.71542,12.79638],[92.71537,12.7966],[92.71536,12.79686],[92.7154,12.79707],[92.71535,12.79738],[92.7152,12.7975],[92.71506,12.79755],[92.71491,12.79752],[92.71461,12.79727],[92.71441,12.7969],[92.71426,12.7965],[92.71424,12.79617],[92.71418,12.79557],[92.71419,12.79536],[92.71427,12.79489],[92.7144,12.79483],[92.71461,12.79487]]],[[[92.71576,12.79833],[92.71599,12.79838],[92.71633,12.79868],[92.7164,12.79894],[92.71615,12.79988],[92.71599,12.80071],[92.71564,12.80108],[92.71544,12.80116],[92.71533,12.80119],[92.71521,12.80116],[92.71489,12.8007],[92.71481,12.80027],[92.71479,12.79965],[92.71481,12.79919],[92.71492,12.79882],[92.71497,12.79873],[92.71524,12.79848],[92.71564,12.79831],[92.71576,12.79833]]],[[[92.71624,12.80194],[92.71631,12.80281],[92.71637,12.80326],[92.71643,12.80359],[92.71657,12.80393],[92.71659,12.80413],[92.71658,12.80424],[92.7165,12.80445],[92.71642,12.80459],[92.71628,12.8047],[92.71619,12.80476],[92.71596,12.8048],[92.71583,12.80474],[92.7154,12.80421],[92.71516,12.80372],[92.71507,12.80307],[92.71528,12.80242],[92.7155,12.80216],[92.71558,12.80208],[92.7159,12.80191],[92.71614,12.80188],[92.71624,12.80194]]],[[[92.70751,12.83005],[92.70631,12.82882],[92.70621,12.8248],[92.70548,12.8236],[92.70594,12.82283],[92.70573,12.82078],[92.70642,12.82069],[92.70547,12.81993],[92.70589,12.81893],[92.70518,12.81862],[92.70577,12.81837],[92.7034,12.81548],[92.70207,12.8158],[92.7003,12.81382],[92.7009,12.81093],[92.69946,12.81052],[92.70002,12.80932],[92.69876,12.80805],[92.69915,12.80541],[92.69866,12.8051],[92.6986,12.80601],[92.69722,12.80527],[92.6987,12.80336],[92.69841,12.80222],[92.69746,12.80106],[92.69648,12.80215],[92.69407,12.80095],[92.6937,12.79764],[92.69472,12.7936],[92.69705,12.79087],[92.69659,12.79027],[92.69751,12.78956],[92.69835,12.78541],[92.70052,12.78457],[92.70414,12.78115],[92.70788,12.77461],[92.70848,12.77208],[92.70767,12.76718],[92.70958,12.76266],[92.70982,12.75711],[92.71063,12.75431],[92.71078,12.74613],[92.71186,12.74216],[92.71214,12.73766],[92.7119,12.73646],[92.71136,12.73692],[92.71102,12.73525],[92.71007,12.73468],[92.70962,12.7329],[92.70814,12.73313],[92.70613,12.73093],[92.7064,12.73042],[92.7077,12.73095],[92.70809,12.73056],[92.70887,12.72792],[92.70914,12.72918],[92.71052,12.72879],[92.70959,12.72563],[92.71016,12.72517],[92.70942,12.72384],[92.71104,12.72254],[92.71104,12.7207],[92.71192,12.72047],[92.71504,12.72148],[92.71656,12.71917],[92.71721,12.71953],[92.71839,12.72253],[92.71872,12.72617],[92.71809,12.72947],[92.71571,12.73051],[92.71719,12.7312],[92.71704,12.73192],[92.71852,12.73204],[92.71676,12.73346],[92.71607,12.73495],[92.71689,12.73624],[92.71637,12.73691],[92.71728,12.73786],[92.71706,12.73954],[92.71764,12.74076],[92.71723,12.74378],[92.71807,12.74614],[92.71837,12.75255],[92.71731,12.75634],[92.71787,12.75623],[92.72012,12.75077],[92.72065,12.74542],[92.72194,12.74266],[92.72295,12.74304],[92.72349,12.74586],[92.72459,12.74697],[92.7248,12.74835],[92.72388,12.75141],[92.72377,12.75472],[92.72177,12.76015],[92.71648,12.76953],[92.71194,12.77496],[92.71125,12.77719],[92.7111,12.77901],[92.71296,12.78823],[92.71158,12.79743],[92.71153,12.81818],[92.71401,12.82821],[92.71316,12.82943],[92.71128,12.82955],[92.70949,12.82861],[92.70851,12.8299],[92.70751,12.83005]]],[[[92.72437,12.83218],[92.72486,12.83259],[92.72586,12.83364],[92.72603,12.83407],[92.72613,12.83475],[92.72637,12.83533],[92.72646,12.83565],[92.72659,12.83591],[92.72678,12.83684],[92.72677,12.83812],[92.72669,12.83869],[92.72651,12.83884],[92.72616,12.83873],[92.72572,12.83832],[92.72528,12.83758],[92.72513,12.83711],[92.72504,12.83651],[92.7248,12.83615],[92.72458,12.83594],[92.72425,12.8358],[92.72407,12.83559],[92.72402,12.83525],[92.72406,12.83473],[92.7239,12.83442],[92.72382,12.83409],[92.72376,12.83255],[92.72379,12.8323],[92.72387,12.83211],[92.72402,12.832],[92.72437,12.83218]]],[[[92.73127,12.85681],[92.731,12.85704],[92.73067,12.85704],[92.73045,12.85691],[92.73039,12.85678],[92.72997,12.85672],[92.72974,12.85686],[92.72934,12.85681],[92.72873,12.85646],[92.7285,12.85611],[92.72833,12.85578],[92.72838,12.85548],[92.72857,12.85504],[92.72879,12.85478],[92.72917,12.85475],[92.72947,12.85482],[92.73005,12.85531],[92.73002,12.85539],[92.73009,12.85538],[92.73023,12.85543],[92.73073,12.85588],[92.73099,12.85594],[92.7311,12.85604],[92.73114,12.85621],[92.73126,12.85632],[92.73128,12.85655],[92.73127,12.85681]]],[[[92.76318,12.85137],[92.76296,12.85194],[92.76127,12.85433],[92.76109,12.85492],[92.76098,12.85678],[92.76062,12.85781],[92.76031,12.85948],[92.75998,12.85978],[92.75944,12.85956],[92.75838,12.85845],[92.75818,12.85794],[92.75823,12.85674],[92.75808,12.85616],[92.75831,12.85563],[92.75806,12.85433],[92.75761,12.85345],[92.75756,12.85283],[92.75778,12.85222],[92.75753,12.85121],[92.75764,12.85091],[92.75837,12.85026],[92.75849,12.84985],[92.75843,12.84937],[92.75796,12.84881],[92.7571,12.84698],[92.75689,12.84564],[92.75724,12.84512],[92.75824,12.8443],[92.75891,12.84399],[92.76006,12.84385],[92.76149,12.84277],[92.76238,12.8413],[92.76254,12.8408],[92.76247,12.83998],[92.76364,12.8388],[92.76445,12.83747],[92.76495,12.83634],[92.76513,12.83611],[92.76539,12.83607],[92.76567,12.83637],[92.76582,12.83728],[92.76538,12.84084],[92.7655,12.84545],[92.76506,12.84756],[92.76563,12.84942],[92.76535,12.84996],[92.76414,12.85121],[92.76318,12.85137]]],[[[92.72627,12.86541],[92.72609,12.86575],[92.72525,12.86592],[92.72329,12.86413],[92.72282,12.86403],[92.72196,12.86435],[92.72137,12.86504],[92.72101,12.86614],[92.72067,12.86616],[92.72044,12.86527],[92.71989,12.86532],[92.71938,12.86503],[92.71936,12.8638],[92.71858,12.86338],[92.71779,12.86236],[92.71807,12.86224],[92.71852,12.8624],[92.7188,12.86217],[92.71941,12.86234],[92.71922,12.86125],[92.7195,12.86033],[92.72184,12.86032],[92.72314,12.86001],[92.72327,12.85965],[92.72158,12.86008],[92.71939,12.85994],[92.71896,12.85943],[92.71903,12.8588],[92.71883,12.85878],[92.71827,12.8594],[92.71694,12.85964],[92.71662,12.85925],[92.7166,12.85828],[92.71539,12.85614],[92.71542,12.85552],[92.71485,12.85534],[92.71399,12.85547],[92.71378,12.85571],[92.71354,12.85557],[92.71352,12.85521],[92.71426,12.85415],[92.71509,12.85443],[92.71524,12.85329],[92.71461,12.85222],[92.71328,12.85134],[92.71297,12.85059],[92.71233,12.84997],[92.71187,12.84872],[92.71143,12.84831],[92.71145,12.84503],[92.71206,12.84327],[92.71174,12.84307],[92.71152,12.84388],[92.71026,12.84436],[92.70809,12.83998],[92.70703,12.8372],[92.70727,12.83601],[92.70863,12.83349],[92.70953,12.83344],[92.71113,12.83438],[92.71143,12.83431],[92.71122,12.83371],[92.71138,12.83301],[92.71109,12.83236],[92.71131,12.83208],[92.71221,12.83201],[92.7138,12.83269],[92.71556,12.83311],[92.71619,12.83362],[92.71793,12.83581],[92.71798,12.83609],[92.71771,12.83645],[92.71824,12.83711],[92.71889,12.83905],[92.71936,12.83984],[92.71997,12.84032],[92.72004,12.84117],[92.71975,12.84153],[92.72042,12.84221],[92.72012,12.84277],[92.72064,12.84339],[92.72075,12.84407],[92.72147,12.84518],[92.72196,12.84677],[92.72277,12.84747],[92.7229,12.84813],[92.72367,12.84916],[92.72374,12.84997],[92.72486,12.85196],[92.72427,12.85344],[92.72602,12.85601],[92.72611,12.85762],[92.72681,12.8587],[92.72792,12.85965],[92.72792,12.8602],[92.72904,12.86175],[92.72869,12.86297],[92.72869,12.86384],[92.72824,12.86378],[92.72717,12.86522],[92.72644,12.8652],[92.72627,12.86541]]],[[[92.77995,12.85756],[92.78,12.85984],[92.7797,12.86167],[92.77863,12.86319],[92.77781,12.86378],[92.77675,12.86395],[92.77532,12.86255],[92.7733,12.86104],[92.77301,12.86014],[92.77318,12.85855],[92.77356,12.858],[92.7741,12.85796],[92.77359,12.85778],[92.7732,12.85803],[92.77282,12.8589],[92.77276,12.86213],[92.77003,12.86353],[92.76803,12.86208],[92.76994,12.85853],[92.76862,12.85529],[92.7684,12.85393],[92.76791,12.85302],[92.76789,12.85211],[92.76838,12.84971],[92.76985,12.8467],[92.77162,12.84454],[92.77341,12.84392],[92.77404,12.8431],[92.77453,12.84179],[92.77448,12.83857],[92.77302,12.83519],[92.77278,12.83324],[92.77397,12.83047],[92.77453,12.82972],[92.77575,12.82879],[92.77906,12.82712],[92.78023,12.82561],[92.78364,12.82465],[92.78421,12.82481],[92.78444,12.82514],[92.78438,12.82983],[92.78507,12.83257],[92.78243,12.83616],[92.78209,12.83742],[92.78079,12.84007],[92.78084,12.84144],[92.78038,12.84366],[92.78058,12.84499],[92.78042,12.84744],[92.77979,12.85122],[92.77995,12.85756]]],[[[92.76529,12.86988],[92.76547,12.87051],[92.76543,12.87239],[92.76525,12.87284],[92.76503,12.87296],[92.76486,12.87291],[92.764,12.87227],[92.76346,12.87127],[92.76322,12.87036],[92.76296,12.87004],[92.76274,12.86995],[92.76194,12.87025],[92.7614,12.86999],[92.76091,12.86962],[92.7604,12.86891],[92.76025,12.86834],[92.76033,12.86739],[92.76159,12.86643],[92.76182,12.86596],[92.76196,12.86484],[92.76162,12.8642],[92.7619,12.8635],[92.76203,12.86223],[92.7617,12.85953],[92.76193,12.85885],[92.76202,12.85726],[92.7626,12.85554],[92.7628,12.85547],[92.76329,12.85556],[92.76534,12.85527],[92.7658,12.8566],[92.76582,12.858],[92.76564,12.8616],[92.76435,12.86327],[92.76408,12.86387],[92.76447,12.86549],[92.76445,12.86639],[92.76422,12.86705],[92.76428,12.86748],[92.76414,12.86848],[92.76446,12.86901],[92.76529,12.86988]]],[[[92.75736,12.87874],[92.75721,12.8789],[92.75689,12.87911],[92.75671,12.87918],[92.75663,12.87919],[92.75647,12.87906],[92.75638,12.87889],[92.75628,12.87884],[92.75623,12.87879],[92.75613,12.87887],[92.75592,12.87882],[92.75589,12.87862],[92.75602,12.87805],[92.75607,12.87762],[92.75614,12.87739],[92.7561,12.87718],[92.75594,12.877],[92.75594,12.87675],[92.75585,12.87651],[92.75586,12.87633],[92.75595,12.8762],[92.75618,12.87611],[92.75639,12.87606],[92.7565,12.8761],[92.75676,12.87625],[92.75686,12.87617],[92.75726,12.87597],[92.75743,12.87595],[92.75771,12.87598],[92.7581,12.87626],[92.75836,12.8766],[92.7586,12.8767],[92.75885,12.87686],[92.759,12.877],[92.75918,12.87731],[92.75968,12.87787],[92.75968,12.878],[92.75965,12.87808],[92.75953,12.87817],[92.75938,12.87822],[92.75925,12.8782],[92.75907,12.87809],[92.75864,12.87795],[92.75837,12.87797],[92.75811,12.8781],[92.75779,12.87831],[92.75756,12.87851],[92.75736,12.87874]]],[[[92.83103,12.88532],[92.83109,12.88532],[92.83116,12.88535],[92.83119,12.88543],[92.83114,12.8856],[92.83103,12.88573],[92.83089,12.88578],[92.83065,12.88579],[92.83055,12.88577],[92.83047,12.88572],[92.83046,12.88568],[92.83048,12.88559],[92.83057,12.88548],[92.83074,12.88537],[92.83086,12.88534],[92.83103,12.88532]]],[[[92.83181,12.88526],[92.83201,12.88546],[92.83217,12.88567],[92.83197,12.88581],[92.83142,12.88571],[92.83127,12.88555],[92.83127,12.88534],[92.83141,12.88521],[92.83181,12.88526]]],[[[92.83393,12.88642],[92.83408,12.88643],[92.83424,12.88654],[92.83456,12.88669],[92.83475,12.88681],[92.83497,12.88696],[92.83531,12.88736],[92.83547,12.88754],[92.83543,12.88767],[92.83532,12.88775],[92.83524,12.88778],[92.83501,12.88773],[92.83488,12.88766],[92.83437,12.88719],[92.83416,12.88708],[92.83393,12.88692],[92.83369,12.88666],[92.83369,12.8866],[92.8337,12.88649],[92.83381,12.88642],[92.83393,12.88642]]],[[[92.78828,12.89323],[92.78782,12.89332],[92.78659,12.8933],[92.78611,12.89345],[92.7856,12.89343],[92.78528,12.89332],[92.78455,12.89336],[92.78359,12.89327],[92.78295,12.89301],[92.78161,12.89226],[92.78145,12.89207],[92.78114,12.89064],[92.78123,12.88937],[92.7815,12.88847],[92.78218,12.88732],[92.7822,12.88715],[92.78215,12.88701],[92.78163,12.8865],[92.7811,12.88637],[92.78089,12.88623],[92.78078,12.88601],[92.78078,12.8858],[92.78107,12.88503],[92.7817,12.88392],[92.78205,12.88358],[92.78322,12.88282],[92.78396,12.88249],[92.78445,12.88239],[92.78594,12.88311],[92.78704,12.88312],[92.78788,12.88299],[92.78841,12.88339],[92.78948,12.88521],[92.78952,12.88653],[92.78942,12.88739],[92.78991,12.88935],[92.79024,12.89019],[92.79078,12.89074],[92.79114,12.89094],[92.79138,12.89118],[92.79142,12.89136],[92.79135,12.89147],[92.79094,12.89154],[92.79054,12.89182],[92.78955,12.89269],[92.78828,12.89323]]],[[[92.89176,12.89757],[92.89212,12.89765],[92.89247,12.89776],[92.89263,12.89804],[92.89272,12.8983],[92.89273,12.89886],[92.8927,12.89925],[92.89259,12.89952],[92.89239,12.89966],[92.89192,12.89977],[92.89162,12.89979],[92.89121,12.89977],[92.89102,12.89966],[92.89091,12.89954],[92.89079,12.89927],[92.89077,12.8992],[92.89078,12.89851],[92.89097,12.89785],[92.89118,12.89768],[92.89141,12.89757],[92.89176,12.89757]]],[[[92.7543,12.91328],[92.75428,12.91349],[92.75465,12.91412],[92.75446,12.91437],[92.75422,12.91432],[92.75382,12.91387],[92.75378,12.91331],[92.7533,12.9137],[92.75317,12.91365],[92.75307,12.91328],[92.7533,12.91231],[92.75378,12.91141],[92.75336,12.91096],[92.75326,12.91024],[92.75338,12.90987],[92.75322,12.90956],[92.75338,12.90892],[92.75299,12.90806],[92.75307,12.9075],[92.75287,12.90609],[92.7533,12.90438],[92.75289,12.90191],[92.75244,12.901],[92.75276,12.90075],[92.75291,12.90027],[92.75315,12.90027],[92.75353,12.90099],[92.75407,12.90151],[92.75466,12.8999],[92.75444,12.89822],[92.75286,12.89639],[92.75277,12.89599],[92.75281,12.89524],[92.75324,12.89424],[92.75326,12.89358],[92.75219,12.89232],[92.7521,12.89243],[92.75239,12.89326],[92.75237,12.89385],[92.75155,12.89434],[92.75117,12.89588],[92.75069,12.89658],[92.74955,12.89724],[92.74907,12.89714],[92.74842,12.89652],[92.74805,12.8946],[92.74836,12.89261],[92.74874,12.89126],[92.74934,12.89079],[92.75,12.89078],[92.75035,12.89048],[92.7506,12.89091],[92.75137,12.89104],[92.75214,12.89205],[92.75225,12.89],[92.75238,12.88972],[92.75267,12.88959],[92.75329,12.88973],[92.75384,12.89009],[92.75546,12.89264],[92.75586,12.89482],[92.75584,12.89564],[92.75623,12.89722],[92.7563,12.9008],[92.75699,12.90639],[92.75673,12.90737],[92.75685,12.90824],[92.75665,12.90857],[92.75544,12.90948],[92.75545,12.91047],[92.75535,12.91067],[92.75488,12.91067],[92.75475,12.91154],[92.75447,12.91212],[92.75452,12.91253],[92.75489,12.91325],[92.7543,12.91328]]],[[[92.8795,12.90576],[92.87943,12.90581],[92.8793,12.9058],[92.87921,12.90575],[92.87926,12.90547],[92.87939,12.90496],[92.87941,12.90441],[92.87936,12.90402],[92.87918,12.90371],[92.87882,12.90289],[92.8786,12.90256],[92.87854,12.90238],[92.87855,12.90229],[92.87873,12.90222],[92.87892,12.90224],[92.87914,12.90233],[92.87925,12.90249],[92.87942,12.90261],[92.87954,12.90273],[92.87967,12.90292],[92.87981,12.90298],[92.88004,12.90302],[92.88021,12.90315],[92.88028,12.90335],[92.88044,12.90358],[92.88039,12.90367],[92.88041,12.90376],[92.88047,12.90382],[92.8804,12.90387],[92.88036,12.90398],[92.88033,12.9043],[92.88036,12.90446],[92.88025,12.90461],[92.88016,12.90483],[92.88008,12.90492],[92.88006,12.90503],[92.88008,12.90518],[92.88005,12.90528],[92.87996,12.9054],[92.87993,12.90551],[92.87986,12.90563],[92.87977,12.90572],[92.87961,12.90572],[92.8795,12.90576]]],[[[92.79313,12.91235],[92.79204,12.91443],[92.79207,12.91467],[92.79244,12.91482],[92.79213,12.91535],[92.79213,12.91644],[92.79187,12.91692],[92.791,12.91727],[92.79032,12.91712],[92.78893,12.91605],[92.7886,12.91543],[92.78922,12.91381],[92.78907,12.91273],[92.78888,12.91256],[92.78763,12.91273],[92.78687,12.91234],[92.78632,12.91254],[92.78517,12.91194],[92.7819,12.9115],[92.78053,12.91066],[92.77991,12.91052],[92.77678,12.91163],[92.77546,12.91229],[92.77376,12.91198],[92.77343,12.91163],[92.77361,12.91062],[92.77346,12.91003],[92.77436,12.90892],[92.77452,12.90819],[92.77354,12.90661],[92.77351,12.90628],[92.7747,12.90446],[92.7753,12.90435],[92.77586,12.90374],[92.77971,12.902],[92.78205,12.90254],[92.78504,12.90513],[92.78626,12.90593],[92.78706,12.90596],[92.78759,12.90567],[92.78884,12.9044],[92.78907,12.90324],[92.78874,12.90145],[92.78789,12.90104],[92.78712,12.89979],[92.7862,12.89878],[92.78624,12.89851],[92.78651,12.89824],[92.7878,12.89797],[92.79029,12.89767],[92.7918,12.89671],[92.79115,12.89684],[92.79012,12.8975],[92.78873,12.89749],[92.78487,12.89834],[92.78428,12.89787],[92.78349,12.89795],[92.78205,12.89726],[92.78182,12.89668],[92.78194,12.89555],[92.78381,12.89463],[92.78557,12.89421],[92.78797,12.89408],[92.79199,12.89223],[92.79651,12.89427],[92.79749,12.89448],[92.79842,12.89626],[92.79896,12.89682],[92.80045,12.89773],[92.79943,12.89803],[92.79911,12.89833],[92.79814,12.89938],[92.7968,12.90141],[92.79597,12.90585],[92.79587,12.90917],[92.79463,12.91054],[92.79361,12.91048],[92.79399,12.91102],[92.79313,12.91235]]],[[[92.87953,12.90741],[92.87961,12.90749],[92.87949,12.90852],[92.87931,12.90962],[92.8792,12.90995],[92.87927,12.91011],[92.87922,12.91042],[92.87929,12.9106],[92.8793,12.91079],[92.87926,12.91087],[92.87936,12.91113],[92.87939,12.91138],[92.87945,12.91157],[92.87946,12.91205],[92.87941,12.91228],[92.8791,12.91277],[92.8788,12.91292],[92.87866,12.91292],[92.87849,12.91284],[92.87843,12.91272],[92.8784,12.91254],[92.87842,12.91219],[92.87826,12.91158],[92.87809,12.91123],[92.87786,12.911],[92.87762,12.91083],[92.87742,12.91075],[92.87739,12.91035],[92.87758,12.91016],[92.87782,12.91],[92.87815,12.90993],[92.8784,12.90982],[92.87861,12.90969],[92.87872,12.90953],[92.87882,12.90926],[92.8789,12.90872],[92.87888,12.90815],[92.87903,12.90774],[92.87929,12.90744],[92.87942,12.90738],[92.87953,12.90741]]],[[[92.86439,12.91266],[92.86448,12.91281],[92.86449,12.91304],[92.86446,12.91325],[92.86437,12.91361],[92.86417,12.91413],[92.86396,12.91443],[92.86373,12.91466],[92.86334,12.91491],[92.86313,12.91494],[92.86295,12.91494],[92.86277,12.91485],[92.86262,12.91475],[92.86241,12.91449],[92.86238,12.91438],[92.8624,12.91397],[92.86256,12.91382],[92.86278,12.9137],[92.86338,12.91328],[92.86401,12.91268],[92.8642,12.91259],[92.86439,12.91266]]],[[[92.67328,12.93292],[92.67348,12.93303],[92.67351,12.93312],[92.67354,12.93325],[92.67354,12.93333],[92.67344,12.93339],[92.67324,12.93341],[92.67305,12.9333],[92.67296,12.93319],[92.67292,12.93309],[92.67292,12.93302],[92.67295,12.93293],[92.67302,12.9329],[92.67328,12.93292]]],[[[92.67226,12.9328],[92.67232,12.93286],[92.67252,12.93311],[92.67255,12.93323],[92.67257,12.93332],[92.67255,12.93339],[92.67252,12.9334],[92.6725,12.93342],[92.6725,12.93346],[92.67252,12.9335],[92.67256,12.93352],[92.6726,12.93355],[92.67249,12.93367],[92.67233,12.93365],[92.6722,12.93355],[92.67214,12.93345],[92.67209,12.93335],[92.67206,12.93322],[92.67205,12.9331],[92.67202,12.93292],[92.67204,12.93284],[92.67206,12.93279],[92.67215,12.93277],[92.67226,12.9328]]],[[[92.76606,12.92367],[92.76588,12.9245],[92.76563,12.92507],[92.76542,12.92573],[92.7653,12.92602],[92.76518,12.92609],[92.76506,12.92601],[92.76468,12.92532],[92.76457,12.9247],[92.76438,12.9244],[92.76397,12.92401],[92.76383,12.92376],[92.76365,12.92371],[92.76336,12.92378],[92.76259,12.92343],[92.76251,12.92312],[92.76208,12.92288],[92.76201,12.92254],[92.76168,12.92244],[92.76133,12.92225],[92.76124,12.92212],[92.76125,12.92185],[92.76153,12.92126],[92.76154,12.92054],[92.76191,12.91963],[92.76206,12.91956],[92.76229,12.9196],[92.76252,12.9194],[92.7629,12.91869],[92.76332,12.91821],[92.76339,12.91805],[92.76385,12.91774],[92.76408,12.91789],[92.76448,12.91835],[92.76508,12.91917],[92.76521,12.91961],[92.76603,12.92044],[92.76636,12.92089],[92.76648,12.92148],[92.7665,12.92242],[92.76606,12.92367]]],[[[92.77398,12.93222],[92.77335,12.93234],[92.77217,12.93219],[92.77158,12.93245],[92.77116,12.93255],[92.77075,12.93252],[92.77049,12.93219],[92.77037,12.93181],[92.77008,12.93158],[92.77029,12.9311],[92.77017,12.92994],[92.76999,12.92969],[92.76962,12.92961],[92.76932,12.92892],[92.76883,12.92876],[92.76872,12.9286],[92.76882,12.92823],[92.76876,12.92782],[92.76891,12.92771],[92.76944,12.92768],[92.76973,12.92757],[92.77008,12.92714],[92.77036,12.92625],[92.77084,12.92584],[92.77033,12.92578],[92.77006,12.92543],[92.76986,12.92533],[92.76911,12.92529],[92.76869,12.92497],[92.76864,12.92447],[92.76888,12.92371],[92.76874,12.92278],[92.76931,12.92162],[92.77012,12.91954],[92.77093,12.91861],[92.77123,12.91805],[92.77153,12.91774],[92.77183,12.91759],[92.77223,12.91761],[92.77226,12.91861],[92.77241,12.91898],[92.77288,12.91966],[92.77307,12.92019],[92.77361,12.92079],[92.77381,12.9212],[92.77403,12.92242],[92.774,12.92353],[92.77499,12.92594],[92.77515,12.9269],[92.77521,12.92814],[92.77493,12.92974],[92.77496,12.93045],[92.77398,12.93222]]],[[[92.93475,12.91992],[92.93472,12.91997],[92.93431,12.91976],[92.93417,12.91996],[92.93391,12.91976],[92.93372,12.91992],[92.93353,12.91955],[92.93333,12.91968],[92.93324,12.91949],[92.93304,12.91956],[92.93301,12.91927],[92.9329,12.91921],[92.93278,12.91926],[92.93275,12.91904],[92.93248,12.91913],[92.9323,12.91912],[92.93214,12.91936],[92.93179,12.91951],[92.93099,12.91923],[92.93053,12.91886],[92.93019,12.9183],[92.93012,12.91782],[92.93022,12.91744],[92.93001,12.91746],[92.92993,12.91767],[92.92977,12.91748],[92.92952,12.91749],[92.92952,12.91731],[92.92928,12.91724],[92.92925,12.91709],[92.92906,12.91695],[92.9293,12.91676],[92.9294,12.91684],[92.92956,12.91672],[92.92966,12.91677],[92.92982,12.91666],[92.92995,12.91679],[92.9302,12.91689],[92.93015,12.91703],[92.93023,12.91722],[92.93108,12.91653],[92.93222,12.91586],[92.93262,12.91524],[92.93257,12.91452],[92.93233,12.91446],[92.93225,12.91434],[92.93235,12.91414],[92.93219,12.91395],[92.93221,12.9137],[92.93199,12.91341],[92.93197,12.91319],[92.93226,12.91302],[92.93228,12.91278],[92.9325,12.91262],[92.93255,12.91229],[92.93268,12.91219],[92.9327,12.91196],[92.93284,12.91187],[92.93291,12.91172],[92.9331,12.91175],[92.93323,12.91157],[92.93339,12.91157],[92.93347,12.91147],[92.93384,12.91177],[92.93407,12.91165],[92.93436,12.91183],[92.93454,12.91181],[92.93468,12.912],[92.93483,12.91199],[92.93495,12.91206],[92.935,12.9119],[92.93559,12.91233],[92.93562,12.91261],[92.93574,12.91271],[92.93576,12.91292],[92.93601,12.91295],[92.936,12.91321],[92.93625,12.91327],[92.9364,12.91361],[92.93664,12.91367],[92.93666,12.91393],[92.93692,12.91411],[92.93687,12.9144],[92.93703,12.91457],[92.93726,12.91454],[92.93739,12.91479],[92.93723,12.91496],[92.93731,12.91515],[92.93724,12.91547],[92.93732,12.91564],[92.93727,12.91593],[92.9374,12.91611],[92.93738,12.91636],[92.9375,12.91655],[92.93742,12.91675],[92.93759,12.91701],[92.93754,12.91713],[92.93758,12.91729],[92.93779,12.91737],[92.93767,12.91766],[92.93772,12.91791],[92.93755,12.91809],[92.93715,12.91809],[92.93702,12.91843],[92.93676,12.91863],[92.9365,12.91871],[92.93643,12.9189],[92.93623,12.919],[92.93635,12.91915],[92.93608,12.91925],[92.93602,12.91947],[92.93579,12.91943],[92.93546,12.91969],[92.93531,12.91953],[92.93506,12.91976],[92.93488,12.91971],[92.93475,12.91992]]],[[[92.76161,12.93645],[92.76148,12.93658],[92.76125,12.93664],[92.76112,12.93627],[92.7608,12.93656],[92.76063,12.93662],[92.76029,12.93657],[92.76016,12.93651],[92.75968,12.93593],[92.75913,12.9354],[92.75908,12.93516],[92.75915,12.93478],[92.75987,12.93398],[92.76028,12.93335],[92.76021,12.9331],[92.75979,12.93265],[92.75975,12.93252],[92.76016,12.93189],[92.76021,12.93167],[92.76009,12.93159],[92.75991,12.93159],[92.75939,12.93189],[92.75925,12.9319],[92.75921,12.93156],[92.75931,12.93116],[92.7598,12.93007],[92.76004,12.92831],[92.76035,12.92752],[92.76076,12.92686],[92.76108,12.9265],[92.76109,12.92588],[92.76138,12.92579],[92.76162,12.92608],[92.76169,12.92632],[92.76186,12.92638],[92.76227,12.92599],[92.76211,12.92565],[92.76229,12.92551],[92.76248,12.92548],[92.76333,12.9258],[92.76377,12.92625],[92.76393,12.92694],[92.76446,12.92818],[92.76536,12.92813],[92.76561,12.92804],[92.76574,12.92821],[92.76558,12.92962],[92.76554,12.93067],[92.76535,12.93178],[92.76508,12.93283],[92.76409,12.93498],[92.76399,12.93513],[92.76375,12.93516],[92.76369,12.93496],[92.76378,12.93465],[92.7637,12.93453],[92.76301,12.93474],[92.76278,12.93493],[92.76248,12.93585],[92.76232,12.93589],[92.76203,12.93562],[92.76161,12.93645]]],[[[92.89749,12.92681],[92.89609,12.92617],[92.89449,12.91856],[92.89241,12.91566],[92.8963,12.91001],[92.89627,12.90496],[92.90036,12.90388],[92.90011,12.90284],[92.89618,12.90426],[92.8952,12.89796],[92.89108,12.89521],[92.88527,12.89341],[92.8776,12.89522],[92.87131,12.89237],[92.8702,12.88903],[92.87442,12.88547],[92.87432,12.88234],[92.87308,12.88082],[92.86539,12.88062],[92.86031,12.87807],[92.86249,12.87828],[92.8617,12.87144],[92.86461,12.86882],[92.8619,12.86859],[92.86243,12.86359],[92.86166,12.86858],[92.86444,12.86854],[92.86151,12.87117],[92.8622,12.87825],[92.85475,12.87757],[92.85285,12.87298],[92.84976,12.87314],[92.84717,12.86918],[92.85189,12.86634],[92.84887,12.86289],[92.84547,12.86199],[92.85078,12.85376],[92.84892,12.8512],[92.85007,12.845],[92.84822,12.84487],[92.84778,12.84742],[92.84604,12.84569],[92.84186,12.84619],[92.83823,12.84417],[92.84192,12.83962],[92.84053,12.83646],[92.83777,12.83531],[92.83705,12.83668],[92.83541,12.83473],[92.8318,12.8364],[92.83096,12.83467],[92.83346,12.82862],[92.83013,12.8285],[92.83044,12.82978],[92.82757,12.832],[92.82618,12.83089],[92.82728,12.82662],[92.82538,12.82559],[92.82682,12.82427],[92.82366,12.82321],[92.82902,12.81923],[92.82944,12.81721],[92.82724,12.81615],[92.82697,12.81397],[92.82841,12.81006],[92.8267,12.81403],[92.82886,12.81889],[92.82344,12.8231],[92.82658,12.8244],[92.82513,12.82568],[92.82702,12.82666],[92.82594,12.83099],[92.82765,12.83223],[92.83309,12.82881],[92.8307,12.83469],[92.83167,12.83689],[92.8355,12.83503],[92.83675,12.837],[92.83792,12.83565],[92.84074,12.83732],[92.84154,12.84063],[92.83922,12.84135],[92.83979,12.84254],[92.83618,12.84512],[92.83625,12.84711],[92.83819,12.84445],[92.84138,12.84638],[92.84554,12.84596],[92.8475,12.84773],[92.84956,12.8451],[92.84871,12.8517],[92.85034,12.85387],[92.84705,12.857],[92.84506,12.86222],[92.85108,12.86632],[92.84814,12.86707],[92.84671,12.86933],[92.84971,12.87399],[92.85268,12.87354],[92.85388,12.87711],[92.84451,12.87483],[92.84256,12.8685],[92.83838,12.86418],[92.83974,12.86139],[92.83807,12.86408],[92.83882,12.86571],[92.83635,12.86586],[92.84046,12.8659],[92.83965,12.87128],[92.83845,12.86911],[92.83886,12.87152],[92.84069,12.86982],[92.83989,12.86812],[92.84145,12.86805],[92.8444,12.87513],[92.8477,12.87607],[92.84227,12.87522],[92.8396,12.87668],[92.84207,12.88588],[92.84196,12.89079],[92.84069,12.89161],[92.83413,12.88568],[92.82975,12.88462],[92.82627,12.8874],[92.82285,12.89594],[92.80884,12.89749],[92.8067,12.88843],[92.80608,12.88932],[92.8078,12.89005],[92.80694,12.89348],[92.80844,12.89309],[92.80804,12.89719],[92.80208,12.89709],[92.79079,12.88994],[92.79136,12.88416],[92.79619,12.88446],[92.79679,12.88061],[92.79563,12.88425],[92.79202,12.88061],[92.79309,12.87687],[92.79186,12.87547],[92.79549,12.87],[92.79189,12.86966],[92.79204,12.86463],[92.79656,12.86507],[92.80026,12.86278],[92.8002,12.86077],[92.8044,12.86107],[92.80017,12.86057],[92.80022,12.86255],[92.79665,12.86483],[92.79276,12.86368],[92.7951,12.86281],[92.79559,12.86045],[92.79918,12.8593],[92.79794,12.85758],[92.80022,12.85699],[92.79993,12.85422],[92.80184,12.85171],[92.79952,12.85043],[92.80041,12.84846],[92.79938,12.85045],[92.80163,12.85168],[92.79966,12.85418],[92.80002,12.85685],[92.79778,12.85709],[92.79877,12.85946],[92.79541,12.8602],[92.79418,12.86286],[92.7884,12.86149],[92.78858,12.85577],[92.79035,12.85581],[92.78972,12.84985],[92.79157,12.85041],[92.79064,12.84892],[92.79175,12.84921],[92.79301,12.84451],[92.79171,12.849],[92.79036,12.84895],[92.79136,12.85028],[92.78955,12.8497],[92.79007,12.85604],[92.78814,12.85563],[92.78725,12.86124],[92.7832,12.86189],[92.7818,12.85998],[92.78117,12.84117],[92.78567,12.83292],[92.78482,12.82466],[92.78056,12.82385],[92.78207,12.80918],[92.78756,12.81462],[92.78921,12.82886],[92.78771,12.81529],[92.78969,12.81553],[92.79196,12.81171],[92.79383,12.81379],[92.80063,12.81283],[92.79791,12.80812],[92.80024,12.80456],[92.79756,12.80553],[92.79906,12.80646],[92.79754,12.80819],[92.79973,12.81343],[92.79612,12.81222],[92.79386,12.81338],[92.7907,12.80759],[92.79255,12.80503],[92.79236,12.79956],[92.79516,12.79908],[92.79301,12.79545],[92.79467,12.79367],[92.79302,12.79488],[92.79245,12.79342],[92.79379,12.79769],[92.79179,12.79734],[92.79494,12.79865],[92.79202,12.79964],[92.79222,12.805],[92.79034,12.8075],[92.7922,12.80968],[92.78983,12.81471],[92.78164,12.80816],[92.78042,12.80505],[92.78037,12.79799],[92.78417,12.78867],[92.78711,12.78651],[92.7835,12.78162],[92.78378,12.77568],[92.78746,12.7792],[92.79086,12.77418],[92.79338,12.77436],[92.79076,12.77393],[92.78749,12.77895],[92.78623,12.77845],[92.78719,12.77677],[92.78499,12.77716],[92.78377,12.77535],[92.78504,12.76708],[92.78383,12.76215],[92.7849,12.76737],[92.78266,12.77091],[92.78265,12.76761],[92.77936,12.76198],[92.7826,12.76778],[92.78231,12.77093],[92.78421,12.77133],[92.7833,12.77546],[92.78127,12.77404],[92.78038,12.77631],[92.7832,12.77572],[92.78296,12.78184],[92.78659,12.78615],[92.7835,12.78845],[92.77943,12.7991],[92.78077,12.80954],[92.77931,12.82412],[92.7721,12.83172],[92.7727,12.84256],[92.76635,12.84842],[92.76595,12.83619],[92.76224,12.83915],[92.76247,12.83528],[92.76492,12.83363],[92.76267,12.82886],[92.76423,12.82707],[92.76384,12.82373],[92.76549,12.82277],[92.76446,12.82102],[92.76554,12.81884],[92.76336,12.8251],[92.76121,12.82638],[92.761,12.82425],[92.75536,12.82323],[92.75511,12.81958],[92.75357,12.81919],[92.75414,12.81769],[92.75344,12.81894],[92.75556,12.82368],[92.76074,12.82455],[92.76085,12.8266],[92.76342,12.82595],[92.76207,12.82876],[92.76426,12.83327],[92.76191,12.83525],[92.76144,12.84211],[92.75661,12.8449],[92.7561,12.84679],[92.75253,12.84805],[92.75359,12.8455],[92.75052,12.84537],[92.74853,12.84347],[92.74676,12.8407],[92.74753,12.8368],[92.7455,12.84283],[92.74296,12.83904],[92.74258,12.82066],[92.74032,12.83648],[92.73912,12.83702],[92.73695,12.82821],[92.73814,12.81184],[92.73535,12.80985],[92.73774,12.80439],[92.73531,12.80725],[92.73533,12.82034],[92.73311,12.82295],[92.73074,12.83599],[92.72883,12.83508],[92.72607,12.82827],[92.72371,12.82852],[92.72207,12.82523],[92.72059,12.81534],[92.72216,12.80991],[92.72074,12.81077],[92.71961,12.80626],[92.72047,12.797],[92.72946,12.79937],[92.73121,12.80171],[92.72961,12.7992],[92.73204,12.79784],[92.73214,12.79453],[92.73746,12.7943],[92.73767,12.79572],[92.73866,12.79473],[92.73703,12.79558],[92.7376,12.79427],[92.73616,12.79336],[92.73904,12.79092],[92.73656,12.79299],[92.73558,12.79221],[92.73528,12.78725],[92.73713,12.78412],[92.73561,12.78487],[92.73525,12.78336],[92.73773,12.77916],[92.73509,12.78297],[92.73521,12.785],[92.73694,12.78415],[92.73561,12.78862],[92.73434,12.78767],[92.73274,12.78931],[92.73519,12.79001],[92.73352,12.79248],[92.73571,12.79364],[92.73211,12.79335],[92.7312,12.79752],[92.72783,12.79918],[92.72477,12.79784],[92.72,12.79029],[92.7248,12.76822],[92.73118,12.7536],[92.72941,12.75055],[92.72968,12.74389],[92.73365,12.73869],[92.73718,12.73864],[92.73744,12.73682],[92.73894,12.73962],[92.74044,12.73905],[92.739,12.73936],[92.73748,12.73656],[92.73961,12.73279],[92.73956,12.72632],[92.74584,12.72282],[92.73942,12.721],[92.73871,12.71756],[92.7397,12.71813],[92.74033,12.71534],[92.73863,12.715],[92.73793,12.71006],[92.73988,12.70207],[92.74258,12.70151],[92.74154,12.70233],[92.74367,12.70404],[92.7436,12.70651],[92.74381,12.7038],[92.74187,12.70233],[92.74413,12.70192],[92.74472,12.69917],[92.74378,12.70186],[92.73691,12.699],[92.73445,12.69968],[92.73105,12.6961],[92.73276,12.69873],[92.72965,12.69869],[92.72642,12.69409],[92.72622,12.69059],[92.73064,12.6907],[92.73482,12.68427],[92.73196,12.6726],[92.73229,12.67418],[92.73585,12.67166],[92.73592,12.67292],[92.7363,12.67162],[92.73806,12.67286],[92.73857,12.67141],[92.74035,12.67297],[92.74305,12.67023],[92.74329,12.6718],[92.74359,12.67077],[92.75,12.67502],[92.762,12.67126],[92.76939,12.6731],[92.77627,12.68486],[92.78302,12.69241],[92.78467,12.708],[92.77725,12.71353],[92.77578,12.71838],[92.78155,12.72009],[92.77883,12.72845],[92.78181,12.73369],[92.77698,12.73478],[92.77287,12.72813],[92.76958,12.72938],[92.76812,12.72607],[92.76929,12.72249],[92.76773,12.72144],[92.76787,12.72351],[92.7616,12.72281],[92.76791,12.72381],[92.76753,12.72177],[92.76876,12.72232],[92.7678,12.726],[92.76912,12.72949],[92.77233,12.72874],[92.77641,12.7352],[92.78067,12.73482],[92.77769,12.73784],[92.78088,12.73599],[92.78125,12.74038],[92.78258,12.73288],[92.77951,12.72804],[92.78314,12.725],[92.7869,12.72678],[92.7897,12.72547],[92.78097,12.72537],[92.78441,12.71288],[92.78195,12.71077],[92.78629,12.70888],[92.7871,12.70278],[92.7862,12.69125],[92.78088,12.67918],[92.77908,12.67102],[92.78183,12.66667],[92.78195,12.6616],[92.78421,12.66025],[92.78127,12.65933],[92.78388,12.65531],[92.78206,12.65468],[92.78273,12.64697],[92.78105,12.64481],[92.77992,12.63093],[92.78599,12.62452],[92.78307,12.61748],[92.78299,12.60645],[92.78049,12.602],[92.78001,12.5941],[92.77742,12.59032],[92.77893,12.57998],[92.77645,12.59047],[92.77983,12.59495],[92.7841,12.62552],[92.77882,12.62964],[92.77888,12.63713],[92.77741,12.6384],[92.77566,12.63074],[92.76953,12.62825],[92.76619,12.63161],[92.76187,12.62442],[92.76523,12.63206],[92.76981,12.6291],[92.7751,12.63136],[92.77628,12.63394],[92.77545,12.63783],[92.77839,12.6412],[92.7783,12.66016],[92.7765,12.66693],[92.77315,12.67039],[92.76943,12.66812],[92.76418,12.66781],[92.7563,12.66925],[92.75231,12.67195],[92.75067,12.66632],[92.74304,12.66769],[92.74061,12.66118],[92.73694,12.65771],[92.73283,12.65711],[92.73156,12.653],[92.7348,12.63903],[92.72852,12.63604],[92.7318,12.63278],[92.73735,12.632],[92.73577,12.62594],[92.73994,12.62273],[92.74077,12.61998],[92.74766,12.62046],[92.74086,12.6197],[92.74003,12.62237],[92.73492,12.62725],[92.7333,12.62407],[92.73477,12.62752],[92.73556,12.62617],[92.73679,12.63192],[92.73165,12.63256],[92.72748,12.63616],[92.72391,12.62629],[92.72047,12.62611],[92.72329,12.6229],[92.72371,12.62015],[92.72115,12.61886],[92.72366,12.61728],[92.72244,12.61536],[92.72338,12.61733],[92.71993,12.61841],[92.72161,12.62278],[92.72022,12.62617],[92.72153,12.62761],[92.71992,12.63641],[92.71825,12.63783],[92.71824,12.64433],[92.71325,12.64235],[92.71483,12.63962],[92.71384,12.63238],[92.71032,12.62577],[92.71126,12.62675],[92.71221,12.62273],[92.70259,12.60479],[92.70188,12.61287],[92.69321,12.60647],[92.68887,12.60892],[92.6858,12.61432],[92.68398,12.60905],[92.68548,12.60201],[92.69317,12.60225],[92.69379,12.60081],[92.70045,12.60022],[92.70223,12.60116],[92.70286,12.59768],[92.70737,12.59401],[92.70352,12.58994],[92.70406,12.58636],[92.70667,12.58572],[92.70437,12.57912],[92.70821,12.57595],[92.70384,12.56557],[92.70804,12.55672],[92.69808,12.54107],[92.69847,12.53537],[92.69961,12.53557],[92.69902,12.52839],[92.69305,12.51559],[92.69347,12.50821],[92.69629,12.51224],[92.69939,12.51162],[92.69944,12.50036],[92.70169,12.50072],[92.70495,12.50572],[92.7036,12.50175],[92.70224,12.50002],[92.69915,12.50002],[92.69846,12.49698],[92.70112,12.49645],[92.70371,12.49889],[92.70357,12.49444],[92.70596,12.49464],[92.70694,12.49279],[92.70586,12.49054],[92.70201,12.49104],[92.69954,12.46984],[92.69489,12.47037],[92.69594,12.4647],[92.69878,12.4664],[92.70019,12.46495],[92.70123,12.46125],[92.69937,12.45662],[92.70266,12.45834],[92.7045,12.45222],[92.70338,12.44959],[92.70005,12.44768],[92.70041,12.43652],[92.69803,12.42977],[92.69488,12.429],[92.69868,12.40855],[92.69513,12.40041],[92.69767,12.37851],[92.69865,12.37723],[92.70246,12.3789],[92.70277,12.3771],[92.70053,12.37597],[92.70454,12.37069],[92.70359,12.36923],[92.70011,12.36992],[92.69817,12.36733],[92.70041,12.3588],[92.6991,12.33861],[92.70027,12.33309],[92.69904,12.32828],[92.70152,12.32733],[92.70399,12.33199],[92.70709,12.32957],[92.70901,12.32997],[92.70667,12.32365],[92.70741,12.31676],[92.71042,12.31022],[92.71249,12.31277],[92.71494,12.31209],[92.71901,12.30371],[92.71786,12.30162],[92.71948,12.30034],[92.72353,12.30257],[92.73156,12.30204],[92.7356,12.31295],[92.73876,12.31497],[92.73898,12.31957],[92.74334,12.32779],[92.74119,12.32947],[92.74155,12.33358],[92.73775,12.33423],[92.7384,12.33598],[92.73806,12.33369],[92.73955,12.33472],[92.74178,12.33372],[92.74168,12.32927],[92.74154,12.33126],[92.74451,12.33369],[92.74397,12.33712],[92.74631,12.3407],[92.74711,12.34928],[92.74316,12.35337],[92.74622,12.35276],[92.7497,12.35641],[92.74831,12.35991],[92.74442,12.35813],[92.74261,12.35946],[92.74357,12.36213],[92.74652,12.36179],[92.74918,12.36562],[92.74669,12.36117],[92.7442,12.36223],[92.74293,12.35931],[92.74854,12.36016],[92.74987,12.3559],[92.74645,12.35239],[92.74372,12.35344],[92.74745,12.34981],[92.74774,12.34442],[92.74445,12.33696],[92.74504,12.33363],[92.74186,12.33085],[92.7436,12.32653],[92.73941,12.31851],[92.73956,12.315],[92.73608,12.31214],[92.73413,12.30243],[92.73534,12.30067],[92.74244,12.30167],[92.74309,12.30438],[92.74217,12.30093],[92.74461,12.29934],[92.74857,12.30348],[92.75014,12.29865],[92.75281,12.29609],[92.75734,12.29856],[92.75683,12.30385],[92.75996,12.30672],[92.76315,12.31425],[92.76416,12.31259],[92.7649,12.32213],[92.76482,12.31359],[92.76245,12.30499],[92.76358,12.30171],[92.76519,12.3035],[92.76829,12.31457],[92.77078,12.3178],[92.76903,12.32201],[92.76913,12.32675],[92.77175,12.32721],[92.7693,12.33025],[92.77193,12.33229],[92.77043,12.33376],[92.77211,12.33214],[92.76952,12.33031],[92.77198,12.32735],[92.76921,12.32648],[92.76949,12.32068],[92.77506,12.31744],[92.77642,12.3231],[92.78001,12.32316],[92.77676,12.32299],[92.77521,12.31959],[92.77663,12.31882],[92.77227,12.31677],[92.77561,12.31608],[92.77757,12.31799],[92.77928,12.31683],[92.77904,12.3185],[92.78228,12.31897],[92.7748,12.31564],[92.77867,12.31307],[92.78406,12.3138],[92.79065,12.31166],[92.79242,12.31388],[92.79091,12.31141],[92.79438,12.30628],[92.80183,12.31324],[92.80981,12.31565],[92.83145,12.30268],[92.83701,12.30646],[92.8338,12.30855],[92.83732,12.30663],[92.84746,12.30828],[92.85222,12.31351],[92.85559,12.31427],[92.85553,12.31802],[92.85377,12.31776],[92.85679,12.31853],[92.85489,12.31949],[92.86012,12.31916],[92.85919,12.32244],[92.86055,12.32349],[92.85676,12.32821],[92.85136,12.32596],[92.84837,12.32808],[92.84744,12.3258],[92.84543,12.32667],[92.84553,12.32886],[92.84282,12.32646],[92.84157,12.32798],[92.84293,12.3294],[92.84116,12.33122],[92.83936,12.33092],[92.83918,12.33252],[92.83186,12.33554],[92.8431,12.33004],[92.84255,12.3268],[92.84547,12.32926],[92.84564,12.32706],[92.84742,12.32613],[92.84838,12.32833],[92.84965,12.32692],[92.85117,12.32801],[92.85152,12.32632],[92.85421,12.32684],[92.85806,12.32947],[92.85472,12.33234],[92.85681,12.34029],[92.85899,12.33863],[92.85775,12.33554],[92.85945,12.33534],[92.85963,12.34192],[92.85663,12.34496],[92.85537,12.34272],[92.85319,12.34285],[92.85465,12.34203],[92.85379,12.34073],[92.85452,12.34201],[92.84789,12.34348],[92.85503,12.34284],[92.85706,12.34521],[92.85987,12.34211],[92.85997,12.33628],[92.86421,12.33626],[92.86507,12.33913],[92.86373,12.33579],[92.86571,12.33339],[92.86819,12.33613],[92.86598,12.33316],[92.86939,12.33126],[92.87037,12.3333],[92.86957,12.3311],[92.87144,12.32997],[92.87618,12.33129],[92.87604,12.33246],[92.87643,12.33144],[92.88302,12.3332],[92.87736,12.33328],[92.87382,12.33703],[92.87326,12.33517],[92.87365,12.33724],[92.87769,12.3336],[92.87721,12.33507],[92.87992,12.33473],[92.87996,12.34205],[92.87839,12.34394],[92.87953,12.34485],[92.8833,12.34247],[92.88554,12.34366],[92.89118,12.33897],[92.89429,12.33397],[92.89897,12.33376],[92.89489,12.33665],[92.89558,12.33877],[92.89193,12.34211],[92.88919,12.34769],[92.88993,12.35],[92.88593,12.35117],[92.88527,12.35531],[92.88333,12.35703],[92.88122,12.35653],[92.87798,12.35966],[92.8763,12.35535],[92.87229,12.35372],[92.86978,12.35746],[92.86804,12.35752],[92.8701,12.35943],[92.86943,12.362],[92.86027,12.36105],[92.85552,12.36708],[92.8535,12.36526],[92.85143,12.36725],[92.85107,12.36527],[92.84653,12.36525],[92.84628,12.36217],[92.8481,12.36078],[92.84603,12.36217],[92.84679,12.36373],[92.84461,12.36317],[92.84577,12.36429],[92.84374,12.36493],[92.84592,12.36453],[92.84539,12.36311],[92.84626,12.36545],[92.84976,12.36574],[92.85082,12.36762],[92.85343,12.36569],[92.85449,12.36757],[92.8585,12.36761],[92.86106,12.36944],[92.85608,12.37299],[92.85172,12.37957],[92.85062,12.3854],[92.84629,12.38515],[92.84423,12.38266],[92.84625,12.38108],[92.84408,12.37944],[92.84456,12.38121],[92.84611,12.38113],[92.84398,12.38253],[92.84601,12.38374],[92.8466,12.38896],[92.84233,12.3918],[92.84486,12.38772],[92.84268,12.39086],[92.84008,12.39058],[92.8395,12.38918],[92.84212,12.38694],[92.84142,12.38537],[92.83871,12.38353],[92.83755,12.38885],[92.83566,12.3838],[92.82995,12.38296],[92.82839,12.38104],[92.83019,12.37832],[92.82754,12.37861],[92.82308,12.37422],[92.82486,12.37629],[92.82124,12.37994],[92.82011,12.37917],[92.82136,12.38006],[92.82506,12.37639],[92.8276,12.37881],[92.83005,12.37846],[92.82813,12.38138],[92.83273,12.38343],[92.8324,12.38573],[92.83534,12.38414],[92.83754,12.38938],[92.83902,12.38753],[92.83884,12.38394],[92.84088,12.38533],[92.84143,12.38689],[92.83893,12.38981],[92.84155,12.39139],[92.83451,12.39462],[92.83543,12.39164],[92.8343,12.39365],[92.83179,12.39346],[92.83114,12.39095],[92.83072,12.39266],[92.82945,12.39191],[92.8307,12.39285],[92.83116,12.39117],[92.83143,12.39366],[92.83387,12.3933],[92.83428,12.39495],[92.83859,12.39425],[92.83764,12.39722],[92.83214,12.3984],[92.83241,12.40063],[92.82766,12.39425],[92.827,12.39531],[92.82476,12.39344],[92.82382,12.39577],[92.82197,12.39589],[92.82204,12.39093],[92.81967,12.38908],[92.82195,12.39115],[92.82189,12.39615],[92.82354,12.39633],[92.82502,12.39367],[92.82869,12.396],[92.82734,12.39797],[92.82515,12.39713],[92.827,12.39837],[92.82906,12.39683],[92.82636,12.40173],[92.82702,12.39958],[92.82542,12.39889],[92.82429,12.3998],[92.82589,12.40005],[92.82165,12.40229],[92.82594,12.40024],[92.8245,12.39959],[92.82557,12.39916],[92.82686,12.39985],[92.82636,12.40211],[92.82883,12.3979],[92.83252,12.40182],[92.83412,12.39814],[92.83743,12.39863],[92.83699,12.40069],[92.83873,12.39958],[92.83998,12.40394],[92.83689,12.40442],[92.83695,12.40634],[92.83749,12.40397],[92.84009,12.40518],[92.8384,12.40863],[92.82875,12.41034],[92.82388,12.40834],[92.82437,12.41179],[92.82305,12.4132],[92.8233,12.41023],[92.81664,12.40982],[92.81761,12.41405],[92.81571,12.41638],[92.81551,12.41322],[92.81039,12.40986],[92.8042,12.41127],[92.80517,12.41001],[92.8036,12.40448],[92.80153,12.40577],[92.79913,12.4008],[92.80134,12.40591],[92.80331,12.40456],[92.80416,12.41174],[92.80692,12.41027],[92.81109,12.41067],[92.81287,12.41199],[92.81373,12.41597],[92.81293,12.41219],[92.81542,12.41387],[92.81575,12.41699],[92.81813,12.41506],[92.81743,12.4106],[92.82309,12.41095],[92.82264,12.41403],[92.82452,12.41305],[92.82536,12.40951],[92.83063,12.41242],[92.82939,12.41154],[92.83033,12.40981],[92.83394,12.41048],[92.83142,12.41818],[92.8276,12.41525],[92.82606,12.41608],[92.82821,12.41592],[92.83022,12.41874],[92.82949,12.41971],[92.8249,12.41877],[92.82472,12.42075],[92.82111,12.42258],[92.82069,12.42555],[92.81533,12.42491],[92.81727,12.42208],[92.81497,12.4249],[92.82091,12.42595],[92.82163,12.42268],[92.8267,12.41915],[92.82647,12.4222],[92.82728,12.4201],[92.82856,12.42087],[92.82797,12.4248],[92.82963,12.42826],[92.82429,12.4306],[92.82384,12.42878],[92.82399,12.43069],[92.82174,12.43171],[92.80959,12.43371],[92.805,12.43876],[92.79461,12.43612],[92.79307,12.43761],[92.7924,12.43584],[92.79039,12.43694],[92.78879,12.43559],[92.78921,12.43669],[92.78724,12.43709],[92.7894,12.43677],[92.78905,12.43573],[92.79039,12.4371],[92.79265,12.43626],[92.79357,12.44626],[92.79018,12.44987],[92.78982,12.44696],[92.78731,12.44672],[92.79002,12.4478],[92.78904,12.45338],[92.79448,12.45407],[92.79238,12.4547],[92.7937,12.45818],[92.79158,12.46009],[92.79106,12.45567],[92.79141,12.4603],[92.79401,12.45823],[92.79269,12.45495],[92.79496,12.45391],[92.78914,12.45259],[92.79345,12.44745],[92.79541,12.44956],[92.79742,12.45393],[92.79569,12.4603],[92.7982,12.46407],[92.79187,12.46868],[92.78648,12.4666],[92.78159,12.46936],[92.78212,12.4679],[92.77919,12.46519],[92.78056,12.46458],[92.77972,12.46238],[92.77868,12.46388],[92.77752,12.46293],[92.77842,12.46015],[92.77732,12.46291],[92.77863,12.46418],[92.77967,12.4627],[92.77905,12.46515],[92.78176,12.4684],[92.77871,12.46976],[92.77373,12.46883],[92.77187,12.47104],[92.77497,12.46899],[92.78254,12.46958],[92.78673,12.46702],[92.79097,12.4691],[92.78542,12.47468],[92.78685,12.47796],[92.78908,12.47723],[92.78824,12.48003],[92.79049,12.48129],[92.7898,12.48342],[92.78661,12.4839],[92.79,12.48358],[92.79073,12.48078],[92.78892,12.47941],[92.78954,12.47711],[92.7869,12.47751],[92.78576,12.47471],[92.79954,12.46466],[92.79711,12.46082],[92.79903,12.45511],[92.7951,12.44489],[92.79585,12.43788],[92.80416,12.44108],[92.80923,12.43623],[92.81949,12.43496],[92.81957,12.43675],[92.81599,12.43551],[92.81022,12.44268],[92.81633,12.44481],[92.81257,12.44582],[92.81149,12.44877],[92.81366,12.45015],[92.81609,12.44713],[92.8178,12.44919],[92.81775,12.45157],[92.81563,12.45068],[92.81525,12.45472],[92.816,12.45072],[92.81766,12.45199],[92.81821,12.44905],[92.81612,12.4468],[92.81307,12.44985],[92.81211,12.44832],[92.81284,12.44635],[92.8168,12.44466],[92.81076,12.44286],[92.81633,12.43657],[92.82015,12.43706],[92.8215,12.43408],[92.83551,12.43071],[92.84091,12.4372],[92.83654,12.4363],[92.83518,12.43874],[92.83242,12.43835],[92.83334,12.44093],[92.82886,12.44199],[92.83373,12.44098],[92.83345,12.43858],[92.83517,12.43942],[92.8343,12.44169],[92.836,12.44361],[92.8346,12.44172],[92.83548,12.4393],[92.83799,12.43921],[92.83606,12.4411],[92.83826,12.43921],[92.83644,12.43869],[92.83658,12.43733],[92.8417,12.43745],[92.83706,12.43076],[92.84566,12.42347],[92.85127,12.42438],[92.8509,12.42869],[92.8493,12.42782],[92.8508,12.42903],[92.85289,12.42388],[92.85627,12.42292],[92.85936,12.42424],[92.85709,12.42772],[92.85627,12.43418],[92.85955,12.43683],[92.85663,12.4344],[92.85836,12.42655],[92.86431,12.42636],[92.86761,12.42251],[92.8709,12.42134],[92.87351,12.41771],[92.87403,12.41342],[92.87757,12.41908],[92.88216,12.42077],[92.88476,12.42452],[92.88339,12.4283],[92.88234,12.42713],[92.88338,12.42848],[92.88393,12.42717],[92.88331,12.43082],[92.88479,12.43126],[92.88402,12.42762],[92.88577,12.42673],[92.8852,12.42549],[92.88865,12.42633],[92.88529,12.42522],[92.88565,12.42205],[92.89234,12.41889],[92.89501,12.41543],[92.89716,12.41594],[92.89941,12.41719],[92.89617,12.4203],[92.89501,12.41973],[92.89586,12.42086],[92.89409,12.42181],[92.89394,12.42515],[92.89178,12.42471],[92.89349,12.42579],[92.88606,12.43485],[92.88373,12.43642],[92.87803,12.43172],[92.87479,12.43129],[92.87258,12.43386],[92.87472,12.43157],[92.87807,12.43195],[92.88338,12.43653],[92.8774,12.44063],[92.87629,12.43814],[92.87699,12.44075],[92.87505,12.44267],[92.87215,12.4401],[92.8632,12.44672],[92.86274,12.44529],[92.86036,12.44971],[92.84866,12.45806],[92.84429,12.46528],[92.84019,12.46563],[92.84083,12.46463],[92.83939,12.46446],[92.84314,12.46788],[92.83855,12.47095],[92.83823,12.4744],[92.84021,12.47574],[92.83723,12.47581],[92.8348,12.48016],[92.83208,12.48061],[92.83431,12.47555],[92.83019,12.47169],[92.83278,12.46951],[92.83127,12.4723],[92.83235,12.47269],[92.83326,12.46948],[92.83031,12.47056],[92.83063,12.47454],[92.82908,12.47162],[92.82557,12.47305],[92.8256,12.47199],[92.82556,12.47329],[92.82873,12.47168],[92.82945,12.47471],[92.83357,12.47539],[92.83157,12.48013],[92.83342,12.48152],[92.83655,12.47938],[92.83763,12.47608],[92.84084,12.47639],[92.83866,12.47362],[92.84051,12.47139],[92.84239,12.47931],[92.83487,12.4858],[92.83398,12.48847],[92.82447,12.48217],[92.82227,12.48475],[92.8158,12.48681],[92.81634,12.48782],[92.8163,12.48657],[92.82261,12.48531],[92.82462,12.48289],[92.83287,12.48926],[92.83559,12.48659],[92.83687,12.49125],[92.82253,12.50002],[92.83759,12.49334],[92.83471,12.49616],[92.83506,12.50142],[92.83714,12.50126],[92.83894,12.49747],[92.8437,12.49833],[92.84574,12.5028],[92.85046,12.50247],[92.85251,12.50574],[92.85073,12.50688],[92.85131,12.50881],[92.85515,12.50976],[92.85657,12.50791],[92.85451,12.50969],[92.85118,12.50786],[92.85292,12.50557],[92.85114,12.50213],[92.84595,12.50249],[92.84507,12.49866],[92.84218,12.49711],[92.83817,12.49738],[92.83692,12.50098],[92.83549,12.50064],[92.83542,12.49643],[92.83835,12.49159],[92.83742,12.48541],[92.84326,12.48034],[92.84319,12.47077],[92.85369,12.45731],[92.85481,12.46126],[92.85209,12.46584],[92.85349,12.47092],[92.85524,12.47119],[92.85263,12.46779],[92.85388,12.46253],[92.85696,12.46463],[92.86035,12.45867],[92.86319,12.45841],[92.85922,12.46173],[92.86236,12.46526],[92.85954,12.46516],[92.85884,12.46665],[92.85959,12.46538],[92.86282,12.46568],[92.85985,12.46177],[92.86386,12.45821],[92.85883,12.45863],[92.85571,12.46394],[92.85545,12.45705],[92.86878,12.44616],[92.87047,12.4474],[92.8674,12.45428],[92.87112,12.45525],[92.87183,12.45747],[92.869,12.45694],[92.87199,12.45806],[92.87139,12.45488],[92.86803,12.45399],[92.87117,12.44815],[92.87557,12.4466],[92.88102,12.45033],[92.8757,12.45287],[92.87607,12.45603],[92.87578,12.45321],[92.87779,12.45191],[92.88261,12.45247],[92.88527,12.45595],[92.88384,12.45777],[92.8805,12.45594],[92.87804,12.45806],[92.88123,12.46442],[92.87861,12.46725],[92.88159,12.46861],[92.88023,12.471],[92.87991,12.46822],[92.87848,12.46919],[92.8797,12.46828],[92.88041,12.47133],[92.88185,12.46873],[92.87892,12.46691],[92.88156,12.46521],[92.88314,12.46653],[92.87869,12.45806],[92.88133,12.45676],[92.88379,12.45853],[92.88622,12.45648],[92.88334,12.45103],[92.87701,12.44509],[92.88361,12.44246],[92.88511,12.44361],[92.88431,12.44528],[92.88604,12.44401],[92.88821,12.44712],[92.88555,12.44685],[92.88571,12.44937],[92.88612,12.44688],[92.89057,12.44904],[92.89501,12.44851],[92.89628,12.4501],[92.89569,12.45434],[92.89276,12.45359],[92.89066,12.45771],[92.88498,12.46028],[92.88884,12.46375],[92.8855,12.45983],[92.89056,12.45821],[92.89269,12.45402],[92.89586,12.45497],[92.89645,12.452],[92.89837,12.45244],[92.89896,12.45109],[92.89678,12.4516],[92.89566,12.44786],[92.88992,12.44787],[92.88445,12.44176],[92.8907,12.43684],[92.89438,12.43845],[92.8948,12.43598],[92.89704,12.43849],[92.89485,12.43582],[92.89454,12.43828],[92.89097,12.43656],[92.89474,12.4307],[92.90803,12.42097],[92.9082,12.41544],[92.90544,12.4077],[92.91078,12.40539],[92.91529,12.40695],[92.91506,12.41184],[92.92009,12.42611],[92.9185,12.42863],[92.92288,12.43465],[92.9218,12.43692],[92.91782,12.43701],[92.91919,12.44068],[92.91325,12.44076],[92.91359,12.44345],[92.91099,12.44439],[92.90793,12.44269],[92.90904,12.43799],[92.90819,12.44389],[92.91482,12.44442],[92.91191,12.44605],[92.91452,12.44792],[92.91425,12.45029],[92.91336,12.4488],[92.91239,12.45057],[92.9134,12.44904],[92.91441,12.45045],[92.91471,12.44786],[92.91236,12.44599],[92.91707,12.44261],[92.91953,12.44422],[92.92213,12.44234],[92.92743,12.44525],[92.93053,12.44925],[92.93344,12.44767],[92.93794,12.44807],[92.94074,12.45022],[92.94301,12.45511],[92.94464,12.45127],[92.94909,12.45671],[92.94536,12.45626],[92.94681,12.45945],[92.94323,12.46079],[92.94507,12.46007],[92.94695,12.46141],[92.94947,12.45795],[92.94759,12.46174],[92.94517,12.46216],[92.94772,12.46289],[92.95105,12.45949],[92.94871,12.4638],[92.95603,12.46634],[92.95784,12.47271],[92.95599,12.47514],[92.94991,12.4762],[92.94449,12.47241],[92.94216,12.46713],[92.93893,12.46911],[92.93376,12.46581],[92.92156,12.46484],[92.91911,12.46964],[92.91945,12.47275],[92.91547,12.473],[92.91673,12.47642],[92.91487,12.47765],[92.91181,12.47104],[92.90717,12.46924],[92.90852,12.46846],[92.90779,12.46722],[92.90825,12.46857],[92.9057,12.47065],[92.90881,12.46981],[92.91134,12.47113],[92.91388,12.47581],[92.91237,12.47833],[92.90828,12.47516],[92.90665,12.47741],[92.90828,12.47537],[92.91203,12.4787],[92.91311,12.47698],[92.91516,12.47811],[92.91913,12.47611],[92.91825,12.4786],[92.92053,12.47998],[92.91993,12.48324],[92.91824,12.48347],[92.91792,12.4813],[92.91688,12.48352],[92.914,12.48366],[92.91371,12.48654],[92.9126,12.48622],[92.91086,12.48933],[92.91429,12.50003],[92.91124,12.48926],[92.91387,12.48685],[92.9142,12.48419],[92.91693,12.48405],[92.91782,12.48167],[92.9182,12.48373],[92.92031,12.48328],[92.92088,12.47988],[92.91841,12.47817],[92.91971,12.47616],[92.91735,12.47677],[92.91617,12.47376],[92.92027,12.47289],[92.91944,12.47093],[92.92178,12.46571],[92.93262,12.4675],[92.9343,12.47009],[92.92977,12.47643],[92.92614,12.47674],[92.93142,12.47783],[92.92968,12.47713],[92.92924,12.47934],[92.93183,12.48133],[92.93074,12.4837],[92.93262,12.48472],[92.93115,12.48723],[92.92902,12.48648],[92.92653,12.48847],[92.92893,12.48923],[92.92721,12.49038],[92.92921,12.48916],[92.92681,12.4886],[92.92919,12.4867],[92.93119,12.48763],[92.93284,12.48524],[92.93172,12.48359],[92.93262,12.4819],[92.93637,12.48143],[92.94062,12.48513],[92.94223,12.49261],[92.94518,12.49498],[92.94402,12.49792],[92.9459,12.49966],[92.95281,12.49378],[92.95076,12.49211],[92.95079,12.48963],[92.95455,12.49143],[92.95626,12.48707],[92.96007,12.48567],[92.96411,12.48723],[92.96491,12.4888],[92.96325,12.48944],[92.96313,12.49233],[92.96883,12.49666],[92.9649,12.5045],[92.96685,12.5102],[92.96568,12.51318],[92.97102,12.51732],[92.96976,12.51944],[92.97438,12.52977],[92.97343,12.53595],[92.97542,12.54301],[92.96918,12.56263],[92.96496,12.56761],[92.96378,12.5746],[92.96132,12.57602],[92.96107,12.585],[92.95597,12.59275],[92.95492,12.60394],[92.95641,12.61429],[92.9588,12.61961],[92.94796,12.62754],[92.94623,12.62484],[92.94348,12.6239],[92.94751,12.62856],[92.9456,12.6299],[92.93709,12.62204],[92.9391,12.61601],[92.93622,12.61857],[92.93526,12.61762],[92.93768,12.61562],[92.92973,12.61692],[92.93438,12.61754],[92.93721,12.62377],[92.94554,12.63135],[92.95414,12.62428],[92.9567,12.62421],[92.95682,12.64029],[92.95926,12.65169],[92.96249,12.65845],[92.96092,12.66902],[92.96525,12.67702],[92.9653,12.68152],[92.96303,12.68559],[92.96547,12.69438],[92.96252,12.6953],[92.96212,12.69714],[92.96481,12.70244],[92.96386,12.7044],[92.97077,12.71297],[92.97347,12.71221],[92.97756,12.70781],[92.98005,12.7094],[92.97674,12.71912],[92.97338,12.72126],[92.9675,12.72051],[92.96444,12.72581],[92.96373,12.73014],[92.96855,12.73978],[92.96163,12.74731],[92.96171,12.75437],[92.95171,12.75711],[92.94823,12.76221],[92.94988,12.77007],[92.94825,12.77094],[92.93894,12.76753],[92.93322,12.77374],[92.92642,12.77439],[92.9334,12.77424],[92.93431,12.78347],[92.93726,12.78299],[92.94145,12.79029],[92.94869,12.7932],[92.94895,12.79613],[92.95112,12.79521],[92.94872,12.79682],[92.94971,12.79857],[92.94867,12.7996],[92.95449,12.80643],[92.9524,12.80864],[92.95071,12.81488],[92.94629,12.81792],[92.94518,12.82111],[92.94667,12.82341],[92.9438,12.82601],[92.94492,12.83269],[92.9476,12.83452],[92.94847,12.83595],[92.94692,12.83557],[92.94704,12.83692],[92.94863,12.8367],[92.94911,12.83819],[92.94356,12.83823],[92.94126,12.83552],[92.93932,12.83681],[92.93733,12.83579],[92.93567,12.83952],[92.93088,12.83835],[92.9319,12.83691],[92.9297,12.83618],[92.93131,12.83501],[92.9278,12.83258],[92.92948,12.83165],[92.92429,12.82954],[92.92555,12.82706],[92.92283,12.82611],[92.92285,12.82208],[92.92573,12.81735],[92.92779,12.81619],[92.92927,12.81776],[92.93058,12.81632],[92.92688,12.81338],[92.92799,12.80925],[92.92442,12.80108],[92.92765,12.80911],[92.92622,12.81305],[92.92976,12.81654],[92.92748,12.81576],[92.92544,12.81724],[92.92264,12.82195],[92.92256,12.82608],[92.92505,12.82733],[92.92413,12.82996],[92.92901,12.83163],[92.92743,12.8327],[92.93092,12.83512],[92.92937,12.83622],[92.93154,12.8369],[92.93041,12.8384],[92.9356,12.8398],[92.93738,12.83624],[92.94026,12.83758],[92.93949,12.84821],[92.94116,12.85599],[92.93781,12.85844],[92.93467,12.85616],[92.93257,12.85811],[92.92638,12.85814],[92.92714,12.8622],[92.92919,12.85884],[92.9284,12.86168],[92.9302,12.86302],[92.93112,12.86761],[92.93044,12.87162],[92.92803,12.87191],[92.92798,12.87398],[92.93043,12.87643],[92.92727,12.87845],[92.92801,12.88271],[92.92463,12.8879],[92.92499,12.88563],[92.92178,12.88558],[92.91893,12.89006],[92.91741,12.88615],[92.91345,12.88905],[92.91248,12.88641],[92.91009,12.88543],[92.90712,12.88537],[92.90589,12.88702],[92.9075,12.89235],[92.91252,12.89978],[92.91,12.89851],[92.90986,12.90361],[92.91948,12.90877],[92.92228,12.91205],[92.92232,12.91539],[92.91647,12.91114],[92.91036,12.90998],[92.90723,12.91244],[92.91261,12.91325],[92.91359,12.91657],[92.91232,12.91934],[92.90717,12.91538],[92.89896,12.91806],[92.89813,12.9144],[92.90078,12.91266],[92.90036,12.91153],[92.89739,12.91411],[92.899,12.91935],[92.90214,12.92008],[92.89749,12.92681]]],[[[92.67727,12.94653],[92.67746,12.94673],[92.67758,12.9469],[92.67757,12.94718],[92.67739,12.94737],[92.67719,12.94753],[92.677,12.94764],[92.67683,12.9476],[92.6766,12.94748],[92.67656,12.94743],[92.67656,12.94724],[92.67663,12.9471],[92.67676,12.94706],[92.67684,12.94691],[92.67678,12.94677],[92.67676,12.94664],[92.6768,12.94653],[92.67701,12.94645],[92.67727,12.94653]]],[[[92.67056,12.94951],[92.67048,12.94957],[92.67026,12.94978],[92.67009,12.9499],[92.67001,12.94993],[92.66987,12.94994],[92.66966,12.9499],[92.66956,12.94983],[92.66949,12.94975],[92.66953,12.94963],[92.66971,12.94934],[92.66972,12.94918],[92.66969,12.94913],[92.6695,12.94907],[92.66944,12.94901],[92.66941,12.94892],[92.66943,12.94874],[92.6695,12.94868],[92.66965,12.94867],[92.66982,12.94872],[92.66986,12.94866],[92.66989,12.94851],[92.66994,12.94844],[92.67,12.94842],[92.67008,12.94842],[92.67037,12.94856],[92.6705,12.94865],[92.67068,12.94869],[92.67074,12.94869],[92.67084,12.9486],[92.67085,12.94841],[92.67091,12.94827],[92.67072,12.94829],[92.67028,12.94813],[92.6701,12.94801],[92.67006,12.94792],[92.67006,12.9478],[92.67011,12.94778],[92.67025,12.94777],[92.67044,12.94782],[92.67058,12.9479],[92.67071,12.94794],[92.67101,12.94817],[92.67099,12.94828],[92.67131,12.94847],[92.67144,12.94849],[92.67152,12.94848],[92.67161,12.94841],[92.67182,12.94835],[92.67198,12.94839],[92.67203,12.94851],[92.67203,12.94867],[92.672,12.94886],[92.67198,12.94891],[92.67198,12.94906],[92.67223,12.94938],[92.67224,12.94953],[92.67217,12.9496],[92.6719,12.94975],[92.67172,12.94978],[92.67139,12.94976],[92.67108,12.94969],[92.6708,12.94954],[92.67069,12.9495],[92.67056,12.94951]]],[[[92.67558,12.94908],[92.67555,12.94935],[92.67543,12.94951],[92.67534,12.94959],[92.67515,12.94971],[92.67494,12.94976],[92.67461,12.94976],[92.67349,12.94959],[92.67274,12.94937],[92.67254,12.94929],[92.67238,12.94917],[92.67225,12.94902],[92.67217,12.94885],[92.67223,12.94869],[92.67238,12.94852],[92.67257,12.94843],[92.67281,12.94843],[92.67312,12.94865],[92.67321,12.94878],[92.6737,12.94879],[92.67425,12.94888],[92.67441,12.94893],[92.67456,12.94893],[92.67465,12.94896],[92.67472,12.94896],[92.67477,12.94883],[92.6747,12.94836],[92.67486,12.94836],[92.67515,12.94855],[92.67544,12.94888],[92.67558,12.94908]]],[[[92.66729,12.9513],[92.66708,12.95131],[92.6669,12.95129],[92.66674,12.95129],[92.66643,12.95117],[92.66627,12.95105],[92.66621,12.95095],[92.6662,12.95072],[92.66625,12.95063],[92.66635,12.95056],[92.66628,12.95046],[92.66627,12.95041],[92.66627,12.95029],[92.66629,12.95022],[92.66643,12.95011],[92.66678,12.95003],[92.66704,12.95006],[92.6672,12.95003],[92.66733,12.94994],[92.66744,12.9498],[92.66766,12.94972],[92.66784,12.94976],[92.66808,12.94975],[92.66816,12.94967],[92.6683,12.94944],[92.66842,12.94946],[92.66851,12.94954],[92.66859,12.94969],[92.66863,12.94983],[92.66863,12.94999],[92.66862,12.95015],[92.6686,12.95021],[92.66847,12.95038],[92.66833,12.95064],[92.66833,12.95073],[92.66836,12.95081],[92.66838,12.951],[92.66836,12.95105],[92.66826,12.95115],[92.66813,12.95119],[92.66769,12.95102],[92.66759,12.95107],[92.6674,12.95123],[92.66737,12.95128],[92.66729,12.9513]]],[[[92.6676,12.95222],[92.66737,12.95223],[92.6672,12.95218],[92.66712,12.95213],[92.66702,12.95204],[92.66699,12.95198],[92.66699,12.95191],[92.667,12.95182],[92.66704,12.95178],[92.66715,12.95177],[92.66729,12.95177],[92.66737,12.95174],[92.66746,12.95167],[92.66759,12.95156],[92.66773,12.95147],[92.66779,12.95147],[92.66786,12.95143],[92.66796,12.95143],[92.66808,12.95145],[92.66816,12.95149],[92.66822,12.95164],[92.66822,12.95172],[92.66817,12.95182],[92.66807,12.95195],[92.66792,12.95205],[92.66768,12.95218],[92.6676,12.95222]]],[[[92.67085,12.95182],[92.67039,12.95237],[92.67024,12.95233],[92.67018,12.95219],[92.67023,12.95188],[92.67015,12.95175],[92.67007,12.95177],[92.66969,12.95191],[92.66955,12.95191],[92.66942,12.95187],[92.66932,12.95179],[92.66923,12.95166],[92.66904,12.95144],[92.66892,12.95096],[92.66891,12.95062],[92.66893,12.95047],[92.66914,12.95022],[92.66925,12.95016],[92.6694,12.95014],[92.66958,12.95017],[92.66983,12.95025],[92.66996,12.95026],[92.67066,12.95007],[92.67092,12.95011],[92.67093,12.95021],[92.67091,12.95031],[92.67069,12.95067],[92.67056,12.95103],[92.67055,12.95123],[92.67061,12.9513],[92.67075,12.95132],[92.67088,12.95122],[92.67095,12.95148],[92.67093,12.95166],[92.67085,12.95182]]],[[[92.89042,12.93276],[92.89035,12.93277],[92.8902,12.93285],[92.89014,12.93282],[92.8899,12.9326],[92.88981,12.93263],[92.88978,12.93276],[92.88968,12.93269],[92.88953,12.93271],[92.88951,12.93288],[92.88914,12.93261],[92.88907,12.93231],[92.88897,12.93215],[92.88916,12.932],[92.88919,12.93172],[92.88939,12.93179],[92.88962,12.93144],[92.88977,12.93152],[92.8899,12.93146],[92.88994,12.93162],[92.89007,12.93165],[92.89015,12.93143],[92.89034,12.93162],[92.89043,12.93153],[92.89057,12.93162],[92.89067,12.93156],[92.89081,12.93174],[92.89109,12.93174],[92.89112,12.93191],[92.89124,12.93185],[92.89132,12.93187],[92.89139,12.93201],[92.89161,12.93203],[92.89166,12.93224],[92.89179,12.93236],[92.89181,12.93243],[92.89164,12.93244],[92.89159,12.93261],[92.89149,12.93262],[92.89142,12.9326],[92.89137,12.93269],[92.89132,12.93269],[92.89115,12.93261],[92.89109,12.93272],[92.89099,12.93267],[92.89086,12.93275],[92.89074,12.93271],[92.89067,12.9327],[92.89065,12.9328],[92.8905,12.93275],[92.89042,12.93276]]],[[[92.66937,12.95222],[92.6696,12.95226],[92.66971,12.95237],[92.66985,12.95256],[92.66993,12.95268],[92.66998,12.9528],[92.66997,12.95288],[92.66991,12.95299],[92.66981,12.95307],[92.66961,12.95317],[92.66948,12.95321],[92.66935,12.95317],[92.66924,12.9531],[92.66913,12.95307],[92.66907,12.95303],[92.66898,12.95293],[92.6689,12.95281],[92.66885,12.95266],[92.66887,12.95249],[92.6689,12.9524],[92.66894,12.95233],[92.66899,12.95228],[92.66905,12.95227],[92.66917,12.95223],[92.66937,12.95222]]],[[[92.87482,12.93489],[92.87574,12.93567],[92.87599,12.93619],[92.87573,12.9367],[92.87482,12.93683],[92.87408,12.9364],[92.87424,12.93507],[92.87382,12.93474],[92.8727,12.93499],[92.87017,12.93384],[92.86705,12.9332],[92.86491,12.9333],[92.86309,12.9337],[92.86203,12.93416],[92.8611,12.9341],[92.85974,12.9336],[92.85848,12.93199],[92.85767,12.93008],[92.85753,12.92881],[92.85768,12.92606],[92.85826,12.92493],[92.86038,12.92251],[92.86128,12.92091],[92.86186,12.919],[92.86268,12.91805],[92.86463,12.91698],[92.86587,12.91746],[92.86829,12.91711],[92.87036,12.91632],[92.87139,12.91583],[92.87164,12.91541],[92.87208,12.91536],[92.87224,12.91546],[92.87225,12.91622],[92.87295,12.91704],[92.87319,12.91779],[92.87307,12.91815],[92.8734,12.91833],[92.87412,12.92138],[92.8741,12.92257],[92.87349,12.92401],[92.87401,12.92463],[92.87511,12.9248],[92.87681,12.92374],[92.87927,12.91997],[92.87955,12.91982],[92.88006,12.92003],[92.88004,12.92084],[92.88075,12.92245],[92.88144,12.92238],[92.88192,12.92195],[92.88199,12.92147],[92.88251,12.9212],[92.88289,12.92156],[92.88325,12.92159],[92.8843,12.9228],[92.88467,12.92285],[92.88519,12.92346],[92.88553,12.92355],[92.88565,12.92426],[92.88537,12.92509],[92.8849,12.92567],[92.88493,12.92595],[92.88456,12.92604],[92.88458,12.9264],[92.88402,12.92695],[92.88423,12.92738],[92.88405,12.92758],[92.8847,12.92821],[92.88509,12.92829],[92.88567,12.92776],[92.88608,12.92768],[92.88611,12.9275],[92.88729,12.92756],[92.88765,12.92827],[92.88747,12.92882],[92.88756,12.9292],[92.88578,12.92989],[92.88548,12.93033],[92.88492,12.93061],[92.88346,12.93043],[92.88293,12.93089],[92.88318,12.93188],[92.88295,12.93204],[92.88265,12.93192],[92.8828,12.93133],[92.88219,12.93069],[92.88178,12.9306],[92.8799,12.93114],[92.87937,12.93152],[92.87978,12.93255],[92.87971,12.93291],[92.87883,12.93285],[92.87773,12.93199],[92.87681,12.93195],[92.87598,12.93309],[92.8763,12.93455],[92.87626,12.9352],[92.87574,12.93506],[92.87505,12.93438],[92.87487,12.93436],[92.87482,12.93489]]],[[[92.66926,12.95401],[92.669,12.95458],[92.6689,12.95505],[92.6688,12.95533],[92.66878,12.95544],[92.66882,12.95585],[92.66878,12.95602],[92.66866,12.95603],[92.6685,12.95573],[92.66821,12.95547],[92.66806,12.95529],[92.66803,12.95521],[92.66805,12.95514],[92.6682,12.95498],[92.66824,12.95487],[92.66821,12.95474],[92.66815,12.95463],[92.66795,12.9546],[92.66785,12.95455],[92.66758,12.95438],[92.66736,12.95402],[92.66727,12.95402],[92.66711,12.9542],[92.66701,12.95419],[92.66685,12.95402],[92.66674,12.95382],[92.6667,12.95357],[92.66671,12.95326],[92.66673,12.95315],[92.6668,12.95311],[92.66696,12.95309],[92.6671,12.95318],[92.66727,12.95339],[92.66736,12.95343],[92.6675,12.95345],[92.66764,12.95339],[92.66762,12.95318],[92.66767,12.95312],[92.66773,12.95312],[92.66799,12.95338],[92.66836,12.95356],[92.66848,12.95357],[92.66858,12.95352],[92.66858,12.9534],[92.66815,12.95306],[92.66808,12.95299],[92.66797,12.95279],[92.66796,12.9527],[92.66799,12.95265],[92.66817,12.95256],[92.66829,12.95256],[92.66844,12.95264],[92.66863,12.95279],[92.66885,12.95305],[92.66902,12.95317],[92.66924,12.9534],[92.6693,12.95354],[92.66932,12.95374],[92.66926,12.95401]]],[[[92.89052,12.93846],[92.89026,12.93842],[92.89,12.93846],[92.88968,12.93841],[92.88955,12.93853],[92.88911,12.93828],[92.88858,12.93778],[92.88779,12.93672],[92.88779,12.93584],[92.88786,12.9348],[92.888,12.93454],[92.8879,12.93406],[92.88783,12.93387],[92.88769,12.93365],[92.8874,12.93335],[92.88741,12.93313],[92.88754,12.93305],[92.88794,12.93303],[92.8883,12.93321],[92.88836,12.93313],[92.88865,12.9332],[92.88896,12.93354],[92.88914,12.93333],[92.88932,12.93342],[92.88941,12.93348],[92.88943,12.9336],[92.88968,12.9337],[92.88975,12.9339],[92.88992,12.9339],[92.88983,12.93409],[92.89,12.93429],[92.88997,12.93447],[92.89,12.93462],[92.89007,12.93471],[92.89015,12.93472],[92.89025,12.93492],[92.8904,12.93494],[92.89048,12.93505],[92.89077,12.93522],[92.89093,12.93538],[92.89114,12.93549],[92.89129,12.93562],[92.89145,12.93565],[92.89157,12.93589],[92.89187,12.9359],[92.89297,12.93653],[92.89319,12.93654],[92.89328,12.93646],[92.89332,12.93684],[92.89341,12.9369],[92.89341,12.93695],[92.8934,12.93705],[92.89329,12.93706],[92.8934,12.93727],[92.89316,12.93733],[92.89327,12.93752],[92.89309,12.93745],[92.89283,12.93747],[92.89279,12.93762],[92.89264,12.93761],[92.89262,12.93772],[92.89244,12.9377],[92.89223,12.93791],[92.89191,12.9379],[92.89169,12.93803],[92.8916,12.93769],[92.89155,12.93773],[92.89153,12.93808],[92.89114,12.93834],[92.8908,12.93836],[92.89061,12.93832],[92.89052,12.93846]]],[[[92.90038,12.94017],[92.90024,12.9402],[92.89997,12.94033],[92.8998,12.94037],[92.89959,12.94045],[92.89933,12.94051],[92.89911,12.94071],[92.89898,12.94089],[92.89883,12.94108],[92.89873,12.94131],[92.89861,12.9415],[92.89854,12.94154],[92.8984,12.94154],[92.89847,12.9413],[92.89858,12.94126],[92.89854,12.94112],[92.89862,12.94105],[92.89875,12.94096],[92.89875,12.94083],[92.89883,12.94073],[92.899,12.94061],[92.899,12.94056],[92.89909,12.94036],[92.89927,12.94036],[92.8993,12.94046],[92.8994,12.94044],[92.89944,12.94028],[92.89952,12.9403],[92.89965,12.94028],[92.8997,12.9402],[92.89986,12.94026],[92.89997,12.94016],[92.90012,12.9401],[92.90038,12.94017]]],[[[92.90038,12.94017],[92.90026,12.93995],[92.9003,12.93987],[92.90039,12.93985],[92.90025,12.93966],[92.90038,12.93964],[92.9004,12.93941],[92.9005,12.93941],[92.9005,12.93931],[92.90058,12.93931],[92.90062,12.93916],[92.90068,12.93909],[92.90078,12.9391],[92.9008,12.93896],[92.90093,12.93892],[92.90096,12.93883],[92.90094,12.93876],[92.90113,12.93883],[92.90119,12.93861],[92.90137,12.93866],[92.90141,12.93859],[92.9014,12.93852],[92.90154,12.93855],[92.90147,12.93845],[92.9017,12.93832],[92.9016,12.93817],[92.90181,12.93806],[92.90201,12.93774],[92.90225,12.93766],[92.9024,12.93748],[92.90249,12.93759],[92.90263,12.93744],[92.90281,12.93737],[92.90285,12.93754],[92.90291,12.93762],[92.90302,12.93761],[92.90301,12.93769],[92.90288,12.93788],[92.90297,12.93807],[92.9029,12.93816],[92.90294,12.93833],[92.90286,12.93843],[92.90279,12.93846],[92.9029,12.93869],[92.90276,12.93882],[92.90274,12.93898],[92.90244,12.93924],[92.9026,12.93941],[92.90251,12.93959],[92.90269,12.93978],[92.90234,12.93997],[92.9023,12.94014],[92.90231,12.94051],[92.90217,12.94039],[92.90203,12.94045],[92.9021,12.94061],[92.902,12.94069],[92.90174,12.94063],[92.90156,12.94049],[92.90106,12.94113],[92.90067,12.94156],[92.90053,12.94167],[92.90039,12.94175],[92.89992,12.9419],[92.89974,12.94192],[92.89943,12.9419],[92.89899,12.94176],[92.89887,12.94169],[92.89881,12.94158],[92.89885,12.94138],[92.8989,12.94132],[92.89967,12.94094],[92.90022,12.94039],[92.90038,12.94017]]],[[[92.90068,12.94226],[92.90051,12.94232],[92.90043,12.94232],[92.90014,12.94232],[92.90006,12.94228],[92.89997,12.94232],[92.89975,12.94232],[92.89965,12.94235],[92.89929,12.94236],[92.8992,12.94242],[92.89912,12.94237],[92.89907,12.9423],[92.8991,12.9422],[92.89925,12.94214],[92.89963,12.94214],[92.90016,12.94209],[92.90061,12.94202],[92.90093,12.94187],[92.90122,12.94168],[92.90138,12.94154],[92.90156,12.94122],[92.90166,12.94098],[92.90169,12.94075],[92.90182,12.94078],[92.90193,12.94078],[92.90193,12.94086],[92.90157,12.94154],[92.90159,12.94162],[92.90147,12.94176],[92.90146,12.94183],[92.90134,12.94193],[92.90128,12.94195],[92.9012,12.94194],[92.90113,12.94205],[92.90096,12.94216],[92.90086,12.94216],[92.90076,12.94221],[92.90068,12.94226]]],[[[92.89887,12.94231],[92.89877,12.94234],[92.89873,12.94242],[92.89857,12.94257],[92.89854,12.94244],[92.89851,12.94237],[92.89842,12.94235],[92.89832,12.94241],[92.89822,12.94236],[92.89828,12.94222],[92.8982,12.94207],[92.89821,12.94195],[92.89825,12.94182],[92.89838,12.94161],[92.8985,12.94161],[92.89863,12.94165],[92.89865,12.94172],[92.89869,12.94184],[92.89879,12.94194],[92.89888,12.94201],[92.89906,12.94213],[92.89899,12.94225],[92.89887,12.94231]]],[[[92.87878,12.96118],[92.87878,12.96159],[92.87886,12.96196],[92.87856,12.96228],[92.87812,12.96272],[92.87771,12.9627],[92.87752,12.96249],[92.87755,12.96228],[92.87784,12.96153],[92.8781,12.96122],[92.87866,12.96091],[92.87878,12.96118]]],[[[92.88278,12.96588],[92.88276,12.966],[92.88272,12.9661],[92.88264,12.96619],[92.88251,12.96627],[92.88241,12.96637],[92.88226,12.96645],[92.88212,12.96652],[92.88196,12.96655],[92.88189,12.96659],[92.8817,12.96656],[92.8816,12.96648],[92.88155,12.96625],[92.88155,12.96596],[92.88162,12.96585],[92.88161,12.96575],[92.8817,12.96579],[92.88175,12.9658],[92.88189,12.96557],[92.88197,12.96549],[92.88218,12.96556],[92.88233,12.96541],[92.88244,12.96539],[92.88255,12.96543],[92.88256,12.96554],[92.88265,12.96554],[92.88275,12.96562],[92.88278,12.9657],[92.88278,12.96588]]],[[[92.69482,12.99135],[92.69279,12.99225],[92.68763,12.9902],[92.68693,12.98744],[92.6823,12.98496],[92.68185,12.98228],[92.6809,12.98251],[92.68019,12.9793],[92.67862,12.9783],[92.67902,12.97618],[92.66971,12.96611],[92.67029,12.96374],[92.66806,12.9572],[92.66896,12.95757],[92.6716,12.95017],[92.67607,12.94989],[92.67713,12.9478],[92.67823,12.94926],[92.67949,12.94854],[92.67753,12.94815],[92.67901,12.94656],[92.67756,12.94295],[92.67893,12.94313],[92.679,12.94219],[92.67621,12.94019],[92.67553,12.93386],[92.6735,12.93445],[92.67428,12.93351],[92.6718,12.93074],[92.67366,12.92923],[92.67196,12.92838],[92.6694,12.92301],[92.66841,12.91849],[92.66959,12.91019],[92.66883,12.90587],[92.66474,12.90247],[92.6666,12.89648],[92.66418,12.89361],[92.6657,12.8894],[92.66346,12.88224],[92.65297,12.86757],[92.64964,12.86659],[92.65008,12.85994],[92.64861,12.86185],[92.64686,12.86201],[92.64965,12.8536],[92.64993,12.84583],[92.65415,12.83453],[92.65978,12.82664],[92.6597,12.81818],[92.66392,12.81268],[92.66553,12.80789],[92.66391,12.79858],[92.66234,12.79624],[92.66086,12.79595],[92.65918,12.79748],[92.6577,12.79532],[92.66351,12.79342],[92.66339,12.7917],[92.66662,12.79108],[92.66534,12.78402],[92.66728,12.78259],[92.66869,12.78352],[92.67301,12.80079],[92.67528,12.80492],[92.67461,12.80731],[92.67711,12.80949],[92.68201,12.80873],[92.68301,12.81198],[92.68351,12.81059],[92.68606,12.81037],[92.68529,12.81255],[92.68743,12.8141],[92.68691,12.81671],[92.68805,12.81697],[92.68614,12.82096],[92.68606,12.8224],[92.68735,12.82301],[92.68551,12.8244],[92.68684,12.82625],[92.68361,12.82978],[92.681,12.82887],[92.67459,12.82264],[92.6766,12.82612],[92.67673,12.82984],[92.6737,12.83196],[92.67606,12.83107],[92.67813,12.83198],[92.67108,12.83762],[92.67229,12.83805],[92.67325,12.83614],[92.67516,12.83608],[92.67478,12.83816],[92.67658,12.83717],[92.67861,12.83913],[92.68283,12.83603],[92.69125,12.83503],[92.6996,12.84023],[92.70293,12.845],[92.70304,12.84693],[92.70145,12.84829],[92.70277,12.85304],[92.70406,12.85281],[92.7082,12.85604],[92.71386,12.86322],[92.71376,12.8668],[92.71871,12.87484],[92.7187,12.8766],[92.71712,12.87801],[92.71274,12.87786],[92.71167,12.88237],[92.70885,12.8833],[92.70576,12.88237],[92.70441,12.88015],[92.70581,12.87959],[92.70413,12.877],[92.70289,12.87796],[92.70237,12.87672],[92.7016,12.87732],[92.70306,12.87819],[92.70402,12.87724],[92.70384,12.88004],[92.70732,12.88393],[92.7128,12.88345],[92.7156,12.88052],[92.71821,12.88132],[92.72066,12.8896],[92.7216,12.89814],[92.71971,12.89927],[92.7217,12.90097],[92.72201,12.90355],[92.7195,12.91067],[92.71972,12.91493],[92.71874,12.9155],[92.71976,12.91998],[92.71807,12.92189],[92.71404,12.92282],[92.72051,12.92497],[92.71972,12.93376],[92.72117,12.93773],[92.72146,12.94457],[92.71933,12.9475],[92.71745,12.94346],[92.71411,12.94275],[92.70978,12.94604],[92.7136,12.94347],[92.71691,12.95054],[92.71667,12.95483],[92.71838,12.95663],[92.71738,12.9564],[92.71913,12.96183],[92.71925,12.98097],[92.71679,12.98315],[92.71233,12.98255],[92.71328,12.98027],[92.70901,12.97997],[92.71052,12.97883],[92.70995,12.97809],[92.7089,12.98005],[92.71286,12.98039],[92.71172,12.98241],[92.71369,12.98359],[92.71342,12.98442],[92.71168,12.98315],[92.70863,12.98676],[92.70995,12.98814],[92.70763,12.98869],[92.70695,12.98781],[92.70526,12.98999],[92.70001,12.98788],[92.69482,12.99135]]],[[[92.88652,12.97895],[92.88658,12.97897],[92.88661,12.97903],[92.88672,12.97907],[92.88679,12.97912],[92.88699,12.97917],[92.88705,12.97922],[92.88704,12.97927],[92.88698,12.9793],[92.88695,12.97938],[92.88706,12.97951],[92.8871,12.97964],[92.88709,12.97973],[92.88702,12.9798],[92.88704,12.97989],[92.88704,12.98016],[92.88696,12.98024],[92.88694,12.98028],[92.88682,12.98037],[92.88668,12.9804],[92.88638,12.98038],[92.88622,12.98028],[92.88603,12.98014],[92.88584,12.9799],[92.88584,12.97971],[92.88584,12.97962],[92.88595,12.97938],[92.88605,12.97928],[92.88611,12.97914],[92.88627,12.97904],[92.88639,12.97903],[92.88647,12.97894],[92.88652,12.97895]]],[[[92.88843,12.98141],[92.88837,12.98144],[92.88832,12.98142],[92.88831,12.98136],[92.88828,12.98131],[92.88819,12.98122],[92.88811,12.98111],[92.8881,12.98092],[92.88814,12.98087],[92.88836,12.98087],[92.88841,12.98082],[92.88844,12.98076],[92.88852,12.98072],[92.88861,12.98072],[92.88871,12.98081],[92.88883,12.98088],[92.88885,12.98095],[92.88885,12.98112],[92.88882,12.98122],[92.88876,12.98124],[92.88869,12.98134],[92.88862,12.98139],[92.88855,12.98142],[92.88848,12.9814],[92.88843,12.98141]]],[[[92.89359,12.98416],[92.89335,12.98422],[92.89325,12.98413],[92.89313,12.98407],[92.89305,12.98399],[92.89301,12.98386],[92.89299,12.98367],[92.89295,12.9835],[92.89276,12.98325],[92.89279,12.98313],[92.89287,12.98309],[92.89301,12.98311],[92.89313,12.98316],[92.89322,12.98309],[92.89331,12.98309],[92.89341,12.98312],[92.89361,12.98343],[92.8937,12.98352],[92.89372,12.98357],[92.89373,12.98362],[92.8938,12.98368],[92.89387,12.98376],[92.89394,12.98392],[92.89393,12.98398],[92.89389,12.9841],[92.89381,12.98412],[92.89366,12.98412],[92.89359,12.98416]]],[[[92.97747,12.9862],[92.9777,12.98631],[92.97784,12.98643],[92.97801,12.98661],[92.97814,12.98697],[92.97821,12.98725],[92.97817,12.98751],[92.97808,12.98765],[92.97792,12.98772],[92.97768,12.98773],[92.97747,12.98764],[92.97727,12.98759],[92.97698,12.98732],[92.97672,12.98687],[92.97681,12.98664],[92.9769,12.9865],[92.97703,12.98632],[92.97723,12.98618],[92.97747,12.9862]]],[[[92.83126,13.00003],[92.8325,13.00138],[92.83274,13.0016],[92.83293,13.00182],[92.83308,13.00205],[92.83305,13.00227],[92.83289,13.00259],[92.83261,13.00273],[92.83251,13.00279],[92.83232,13.00278],[92.8321,13.00266],[92.83152,13.00244],[92.83114,13.00199],[92.83086,13.00138],[92.83081,13.00075],[92.83091,13.0002],[92.83096,13.00009],[92.83106,13.00003],[92.83126,13.00003]]],[[[92.97328,12.99409],[92.97352,12.9942],[92.97329,12.99432],[92.97335,12.99449],[92.97318,12.99442],[92.97288,12.99442],[92.97285,12.99416],[92.97305,12.99412],[92.97327,12.99393],[92.97328,12.99409]]],[[[92.7847,13.01363],[92.7846,13.0136],[92.7845,13.01358],[92.78446,13.0135],[92.7845,13.01341],[92.78457,13.01338],[92.78456,13.0133],[92.78448,13.01324],[92.78447,13.01314],[92.78463,13.01318],[92.78468,13.0132],[92.78474,13.01322],[92.78477,13.01328],[92.78478,13.01335],[92.78481,13.01341],[92.7848,13.01351],[92.78468,13.01348],[92.7847,13.01363]]],[[[92.97052,12.99929],[92.9704,12.99956],[92.97031,12.9996],[92.97022,12.99952],[92.97017,12.99941],[92.97023,12.99923],[92.97031,12.99913],[92.97046,12.9991],[92.97052,12.99929]]],[[[93.00736,12.99919],[93.00611,12.9992],[93.00566,12.99866],[93.00337,12.99797],[93.00379,12.99759],[93.00327,12.99722],[93.00276,12.99758],[93.00052,12.99744],[92.99725,12.99419],[92.99284,12.99193],[92.98841,12.99385],[92.9856,12.99459],[92.98444,12.99445],[92.98414,12.99294],[92.98507,12.99075],[92.98467,12.99056],[92.98508,12.9904],[92.98543,12.98846],[92.98662,12.9873],[92.98711,12.98557],[92.98423,12.98478],[92.98385,12.98241],[92.9829,12.98159],[92.98063,12.98128],[92.97869,12.98023],[92.9787,12.97619],[92.97459,12.97439],[92.972,12.97025],[92.96837,12.97177],[92.96978,12.97511],[92.96923,12.9761],[92.9657,12.97716],[92.96507,12.97804],[92.96575,12.9792],[92.96739,12.98031],[92.96804,12.9797],[92.96989,12.98029],[92.97099,12.98139],[92.97097,12.98247],[92.96964,12.98308],[92.9672,12.98558],[92.96499,12.98658],[92.96417,12.98846],[92.96341,12.98853],[92.96402,12.98912],[92.96344,12.99032],[92.96038,12.99056],[92.95869,12.99019],[92.95783,12.98949],[92.95607,12.98402],[92.95363,12.98278],[92.95112,12.98023],[92.95203,12.97804],[92.95311,12.97735],[92.95372,12.97554],[92.95821,12.97419],[92.95905,12.97344],[92.959,12.97285],[92.95671,12.9713],[92.95681,12.97066],[92.95989,12.97062],[92.96103,12.9703],[92.96145,12.96953],[92.9605,12.96861],[92.95924,12.96844],[92.95985,12.96713],[92.95977,12.96552],[92.95872,12.96523],[92.95716,12.96608],[92.95587,12.96806],[92.95342,12.96856],[92.95258,12.96816],[92.9522,12.96546],[92.95244,12.96347],[92.95296,12.96345],[92.95221,12.96298],[92.95284,12.96239],[92.95357,12.95846],[92.95426,12.95821],[92.95382,12.95834],[92.95371,12.95792],[92.95407,12.95723],[92.95471,12.95746],[92.957,12.95551],[92.96053,12.95406],[92.9687,12.95369],[92.96968,12.95243],[92.96701,12.95027],[92.97192,12.94779],[92.97259,12.94639],[92.97179,12.94563],[92.97005,12.94605],[92.9665,12.94804],[92.96081,12.94993],[92.95865,12.94966],[92.9573,12.94896],[92.95335,12.94484],[92.95153,12.94173],[92.95129,12.94201],[92.95027,12.94107],[92.95019,12.94002],[92.95091,12.93993],[92.95228,12.93819],[92.95221,12.93529],[92.95296,12.93475],[92.95335,12.93499],[92.9532,12.93428],[92.95553,12.93688],[92.9567,12.93971],[92.95884,12.94141],[92.96096,12.94206],[92.96805,12.94248],[92.97021,12.94117],[92.96873,12.93703],[92.96935,12.93471],[92.9698,12.93486],[92.97053,12.93421],[92.97099,12.9345],[92.97114,12.93408],[92.97141,12.93438],[92.97225,12.93354],[92.97514,12.9331],[92.97605,12.93239],[92.97665,12.93169],[92.97769,12.92799],[92.97864,12.92804],[92.9777,12.92925],[92.97822,12.93015],[92.9797,12.93037],[92.98018,12.93097],[92.97982,12.9312],[92.98074,12.93099],[92.98162,12.93159],[92.98141,12.93192],[92.98207,12.93203],[92.98319,12.93545],[92.98319,12.93749],[92.9819,12.93997],[92.98203,12.94074],[92.9814,12.94135],[92.9816,12.94181],[92.98113,12.94219],[92.98127,12.9429],[92.98087,12.94309],[92.97972,12.94729],[92.98291,12.9506],[92.98503,12.95178],[92.98821,12.95477],[92.98785,12.95628],[92.98669,12.95792],[92.98508,12.95903],[92.98131,12.96325],[92.98139,12.9679],[92.98221,12.96869],[92.98505,12.96983],[92.98504,12.97045],[92.98706,12.97251],[92.98868,12.97528],[92.99171,12.97808],[92.99222,12.97894],[92.99248,12.98374],[92.99424,12.98525],[92.99619,12.98586],[93.00052,12.98845],[93.00254,12.99082],[93.00283,12.99044],[93.00391,12.99135],[93.00388,12.99231],[93.00433,12.99179],[93.00526,12.99229],[93.00611,12.99362],[93.00609,12.995],[93.00736,12.9959],[93.00743,12.9976],[93.008,12.99864],[93.00736,12.99919]]],[[[92.98859,13.00151],[92.98858,13.00161],[92.98821,13.00165],[92.98771,13.00152],[92.9877,13.00141],[92.98668,13.00141],[92.98635,13.00119],[92.98601,13.00105],[92.98582,13.00078],[92.98573,13.0],[92.9858,12.99991],[92.98548,12.99971],[92.98525,12.99907],[92.98521,12.99863],[92.98567,12.99789],[92.98612,12.9977],[92.98649,12.99771],[92.98674,12.99783],[92.98679,12.9978],[92.98686,12.99781],[92.98725,12.99795],[92.98743,12.99797],[92.98765,12.9981],[92.98782,12.99831],[92.98802,12.99829],[92.98821,12.99838],[92.98844,12.99874],[92.98864,12.99893],[92.9887,12.99909],[92.9887,12.9992],[92.98864,12.99939],[92.98857,12.99944],[92.98842,12.99947],[92.9882,12.99946],[92.98839,12.99975],[92.98826,13.0],[92.9884,13.00024],[92.98862,13.00044],[92.98891,13.00045],[92.9893,13.00054],[92.98943,13.00075],[92.98931,13.00106],[92.98903,13.00141],[92.98857,13.00141],[92.98859,13.00151]]],[[[92.94928,13.0186],[92.94938,13.01879],[92.94939,13.01902],[92.94924,13.02],[92.94939,13.02151],[92.9493,13.02236],[92.94904,13.02346],[92.94838,13.02468],[92.94749,13.02541],[92.94697,13.02569],[92.94616,13.02592],[92.94533,13.02598],[92.9449,13.02596],[92.94419,13.02556],[92.94403,13.02531],[92.94407,13.02498],[92.94429,13.02472],[92.94491,13.02439],[92.94562,13.02417],[92.94606,13.02376],[92.94647,13.02247],[92.9469,13.02174],[92.94756,13.02022],[92.94796,13.01949],[92.9487,13.01879],[92.94911,13.01854],[92.94928,13.0186]]],[[[92.92984,13.02535],[92.92876,13.02654],[92.92743,13.02704],[92.92348,13.0315],[92.92199,13.03171],[92.92069,13.03131],[92.91855,13.02829],[92.91787,13.02538],[92.9141,13.01941],[92.91423,13.01901],[92.91337,13.01722],[92.91379,13.01602],[92.91338,13.01556],[92.91319,13.01286],[92.91347,13.01098],[92.91676,13.0056],[92.91976,13.00002],[92.92127,12.99989],[92.92387,12.99886],[92.92888,12.99768],[92.93113,12.99813],[92.9314,12.99876],[92.92974,13.00002],[92.931,13.00002],[92.93429,12.99734],[92.93387,12.99707],[92.93402,12.99583],[92.93488,12.99457],[92.93521,12.99452],[92.93531,12.99483],[92.93558,12.99449],[92.93569,12.99479],[92.93611,12.99435],[92.93624,12.99453],[92.93668,12.99439],[92.93689,12.99474],[92.93707,12.99448],[92.9372,12.99479],[92.93739,12.99462],[92.93787,12.99507],[92.938,12.99482],[92.93989,12.99533],[92.94083,12.99498],[92.94055,12.99439],[92.94086,12.99462],[92.94099,12.9943],[92.94147,12.99448],[92.9416,12.99417],[92.942,12.99482],[92.94209,12.9946],[92.94261,12.99496],[92.94274,12.99478],[92.94288,12.99512],[92.9433,12.99531],[92.94342,12.99508],[92.94354,12.99536],[92.94383,12.99515],[92.94383,12.9954],[92.9441,12.99539],[92.94402,12.99568],[92.94433,12.99558],[92.94444,12.99636],[92.94518,12.99673],[92.94516,12.99707],[92.94546,12.99703],[92.94623,12.99874],[92.94386,13.00105],[92.94384,13.00184],[92.94325,13.00251],[92.94253,13.00249],[92.94136,13.00307],[92.94076,13.00474],[92.94089,13.00664],[92.93945,13.00916],[92.93949,13.00974],[92.93914,13.01024],[92.93916,13.0108],[92.93992,13.01132],[92.93972,13.01168],[92.93928,13.01174],[92.9394,13.01205],[92.94027,13.01306],[92.94055,13.01286],[92.9412,13.01331],[92.94058,13.01402],[92.94143,13.01492],[92.94227,13.01647],[92.94257,13.01787],[92.94234,13.01925],[92.94126,13.02063],[92.93976,13.02046],[92.93811,13.02157],[92.93802,13.02235],[92.93943,13.02326],[92.93975,13.02377],[92.93965,13.02511],[92.93903,13.02588],[92.93489,13.02706],[92.93363,13.02675],[92.93083,13.02537],[92.92984,13.02535]]],[[[92.78552,13.05522],[92.78553,13.05533],[92.78557,13.05539],[92.78564,13.0554],[92.78565,13.05545],[92.78562,13.05554],[92.7855,13.05568],[92.78543,13.05564],[92.78532,13.05543],[92.78528,13.05533],[92.78528,13.05526],[92.78538,13.05521],[92.78552,13.05522]]],[[[92.78809,13.06079],[92.78808,13.06092],[92.78796,13.06091],[92.78793,13.06084],[92.78792,13.06079],[92.78786,13.06076],[92.78776,13.06078],[92.78773,13.06067],[92.78768,13.06062],[92.78753,13.06062],[92.78748,13.06056],[92.78748,13.06051],[92.78752,13.06045],[92.7876,13.06045],[92.78772,13.0604],[92.78775,13.06033],[92.78782,13.06025],[92.78796,13.06042],[92.78814,13.06046],[92.78816,13.06061],[92.78809,13.06079]]],[[[92.93194,13.04866],[92.93215,13.04875],[92.93228,13.04892],[92.93307,13.05106],[92.93312,13.05131],[92.93311,13.0515],[92.93306,13.0517],[92.93279,13.05215],[92.93211,13.05371],[92.93183,13.05408],[92.9314,13.05443],[92.9312,13.05447],[92.93102,13.05442],[92.93091,13.05434],[92.93037,13.05327],[92.93025,13.052],[92.93023,13.05116],[92.93029,13.05073],[92.93039,13.0505],[92.93055,13.05038],[92.93078,13.05015],[92.93095,13.04988],[92.93139,13.04895],[92.93155,13.04876],[92.93175,13.04867],[92.93194,13.04866]]],[[[92.79493,13.07527],[92.79503,13.07533],[92.7951,13.07549],[92.79512,13.07565],[92.79511,13.07575],[92.79504,13.07586],[92.79506,13.07602],[92.7951,13.07608],[92.79523,13.07618],[92.79535,13.07638],[92.79529,13.07652],[92.7951,13.07665],[92.79501,13.07677],[92.79496,13.07697],[92.7949,13.07697],[92.79484,13.07693],[92.79478,13.07685],[92.79468,13.07679],[92.79466,13.07673],[92.79473,13.07666],[92.79477,13.0766],[92.79477,13.07655],[92.79472,13.07649],[92.79458,13.07605],[92.79454,13.07597],[92.79451,13.07588],[92.79453,13.07581],[92.79458,13.07577],[92.79462,13.07571],[92.7946,13.07564],[92.79454,13.07549],[92.79459,13.07541],[92.7947,13.0753],[92.79483,13.07523],[92.79489,13.07522],[92.79493,13.07527]]],[[[92.9169,13.06003],[92.91606,13.06257],[92.91577,13.06321],[92.91475,13.06488],[92.91389,13.06669],[92.91345,13.06722],[92.91325,13.06735],[92.91307,13.0673],[92.91287,13.06716],[92.91276,13.06678],[92.91262,13.06443],[92.9124,13.06311],[92.91202,13.06182],[92.91197,13.06114],[92.91203,13.061],[92.91315,13.06018],[92.91328,13.05993],[92.91315,13.05961],[92.91217,13.05899],[92.91199,13.05855],[92.91205,13.05816],[92.91269,13.05749],[92.91306,13.05729],[92.91563,13.05641],[92.91637,13.05601],[92.91728,13.05547],[92.91845,13.05427],[92.91879,13.05422],[92.91893,13.05443],[92.91888,13.05467],[92.91803,13.05769],[92.91783,13.05872],[92.91753,13.05952],[92.91721,13.05983],[92.91698,13.0599],[92.9169,13.06003]]],[[[92.91414,13.06725],[92.91428,13.06737],[92.91437,13.06755],[92.91445,13.06773],[92.91448,13.06797],[92.91435,13.0684],[92.9141,13.06879],[92.91382,13.06899],[92.91358,13.06904],[92.91326,13.06902],[92.91318,13.069],[92.91295,13.06883],[92.91291,13.06876],[92.91294,13.06839],[92.91308,13.06817],[92.91327,13.06793],[92.91347,13.06774],[92.91357,13.06753],[92.91374,13.0673],[92.91383,13.06725],[92.91399,13.0672],[92.91414,13.06725]]],[[[92.91182,13.07415],[92.91178,13.07429],[92.9117,13.07439],[92.91163,13.07444],[92.91164,13.0745],[92.91164,13.07459],[92.91152,13.07487],[92.91135,13.07518],[92.91105,13.07565],[92.91098,13.07584],[92.91079,13.07608],[92.91038,13.07631],[92.91009,13.07641],[92.90983,13.07644],[92.90961,13.07639],[92.90949,13.07629],[92.90943,13.07618],[92.90943,13.0761],[92.90943,13.07562],[92.90946,13.07549],[92.90967,13.07526],[92.90986,13.075],[92.91091,13.07408],[92.91106,13.07402],[92.91111,13.07402],[92.91162,13.07379],[92.91175,13.07376],[92.91182,13.07382],[92.91184,13.07394],[92.91182,13.07415]]],[[[92.72762,13.08991],[92.72787,13.09],[92.72797,13.09007],[92.72834,13.09059],[92.72887,13.09119],[92.72905,13.09118],[92.72911,13.09149],[92.72942,13.09174],[92.72965,13.0922],[92.7297,13.09252],[92.73102,13.09383],[92.73122,13.09427],[92.7313,13.09464],[92.73156,13.09499],[92.73164,13.09521],[92.73158,13.09552],[92.73136,13.09578],[92.73069,13.09601],[92.72998,13.09606],[92.7294,13.09569],[92.72909,13.09538],[92.72883,13.09468],[92.72868,13.09461],[92.72813,13.09389],[92.72784,13.09341],[92.72752,13.09267],[92.72713,13.09135],[92.72699,13.09042],[92.72699,13.09009],[92.7271,13.08991],[92.72738,13.08986],[92.72762,13.08991]]],[[[92.71939,13.09869],[92.71865,13.09911],[92.71794,13.09918],[92.71602,13.09871],[92.71536,13.09888],[92.71482,13.09819],[92.71141,13.09652],[92.70755,13.09635],[92.70429,13.09569],[92.70322,13.09611],[92.7014,13.09807],[92.69973,13.09925],[92.69849,13.09922],[92.69761,13.09892],[92.69512,13.09722],[92.69446,13.0961],[92.69425,13.0951],[92.6939,13.09109],[92.69688,13.08014],[92.69691,13.07702],[92.69729,13.07618],[92.69729,13.07473],[92.69758,13.07337],[92.69781,13.07269],[92.69931,13.07045],[92.70065,13.06982],[92.7034,13.06952],[92.70451,13.06969],[92.70601,13.07086],[92.70603,13.07231],[92.70307,13.07775],[92.70297,13.07887],[92.70323,13.08026],[92.7067,13.08473],[92.70811,13.08746],[92.71145,13.09102],[92.71297,13.0918],[92.7177,13.09338],[92.71931,13.09456],[92.72011,13.0956],[92.72041,13.09698],[92.71993,13.09813],[92.71939,13.09869]]],[[[92.79319,13.09291],[92.79314,13.09294],[92.79309,13.09301],[92.79302,13.09322],[92.79297,13.09331],[92.79288,13.09339],[92.79268,13.09313],[92.79266,13.09306],[92.79265,13.09274],[92.79267,13.09266],[92.79273,13.09267],[92.79281,13.0927],[92.7929,13.09276],[92.79303,13.09281],[92.79314,13.09279],[92.79321,13.09269],[92.79325,13.09256],[92.79328,13.09249],[92.79333,13.0925],[92.79339,13.09253],[92.79345,13.09258],[92.79351,13.09264],[92.79359,13.09273],[92.7936,13.09285],[92.7935,13.09287],[92.79332,13.09288],[92.79319,13.09291]]],[[[92.79303,13.09404],[92.7929,13.09413],[92.79279,13.09412],[92.79278,13.09393],[92.79287,13.09379],[92.79289,13.09371],[92.79293,13.09364],[92.79307,13.09383],[92.79316,13.09384],[92.7933,13.09388],[92.79326,13.09404],[92.79319,13.09408],[92.79311,13.09403],[92.79303,13.09404]]],[[[92.84033,13.14292],[92.84046,13.14297],[92.84055,13.14302],[92.84065,13.14311],[92.84076,13.14335],[92.84078,13.14349],[92.84078,13.1436],[92.84073,13.14376],[92.84068,13.14387],[92.84058,13.14395],[92.84045,13.14394],[92.84034,13.1439],[92.84011,13.1437],[92.84005,13.14361],[92.84002,13.14347],[92.84,13.1433],[92.84,13.1431],[92.84004,13.143],[92.8402,13.14293],[92.84033,13.14292]]],[[[92.80864,13.14807],[92.80868,13.1482],[92.80862,13.14829],[92.80862,13.14845],[92.80864,13.1485],[92.8087,13.14857],[92.8087,13.14866],[92.80861,13.14881],[92.80868,13.14892],[92.80869,13.14897],[92.80865,13.14913],[92.80871,13.14928],[92.80867,13.14937],[92.80867,13.14945],[92.80869,13.14959],[92.80864,13.14967],[92.80861,13.1498],[92.80857,13.1499],[92.80826,13.1497],[92.80806,13.14953],[92.8079,13.14946],[92.80778,13.14933],[92.80779,13.14927],[92.8079,13.14913],[92.80796,13.14902],[92.80795,13.14891],[92.80792,13.1487],[92.80787,13.14865],[92.80775,13.14857],[92.80773,13.14849],[92.80775,13.14835],[92.80775,13.14826],[92.80769,13.14815],[92.80768,13.14808],[92.80777,13.14803],[92.80795,13.14808],[92.80801,13.14802],[92.80814,13.14794],[92.80839,13.14804],[92.80854,13.14794],[92.80858,13.14798],[92.80864,13.14807]]],[[[92.80439,13.15364],[92.80432,13.15377],[92.80425,13.15376],[92.8042,13.15372],[92.80418,13.15364],[92.80412,13.15361],[92.804,13.15362],[92.80385,13.15368],[92.80383,13.15362],[92.80373,13.1534],[92.80353,13.15337],[92.80344,13.1533],[92.80339,13.15319],[92.80336,13.153],[92.80339,13.15294],[92.8035,13.15286],[92.8035,13.15273],[92.80356,13.15262],[92.80363,13.15264],[92.8037,13.15263],[92.80375,13.15257],[92.80374,13.15244],[92.80374,13.15239],[92.8038,13.15237],[92.80398,13.15237],[92.80403,13.15234],[92.80404,13.15226],[92.8042,13.1522],[92.8043,13.15219],[92.80435,13.1522],[92.80444,13.15226],[92.80449,13.15232],[92.80454,13.15249],[92.80475,13.15251],[92.80475,13.15259],[92.80474,13.15265],[92.80475,13.15276],[92.80479,13.15283],[92.8048,13.15291],[92.80479,13.15307],[92.80477,13.15313],[92.80469,13.1532],[92.80466,13.15326],[92.80461,13.15347],[92.80457,13.15352],[92.80444,13.15357],[92.80439,13.15364]]],[[[92.8096,13.16293],[92.80976,13.16296],[92.80976,13.16304],[92.80977,13.16317],[92.8098,13.16326],[92.80976,13.16335],[92.80969,13.16346],[92.80975,13.16351],[92.80978,13.1636],[92.80965,13.16374],[92.80964,13.16394],[92.80955,13.164],[92.80949,13.16391],[92.80945,13.1638],[92.80939,13.16378],[92.80939,13.16368],[92.80947,13.16353],[92.80932,13.16342],[92.80933,13.16336],[92.80938,13.16327],[92.80935,13.16321],[92.80928,13.16313],[92.80941,13.16302],[92.80945,13.16296],[92.8095,13.16285],[92.8096,13.16293]]],[[[92.81008,13.16712],[92.80999,13.16716],[92.8099,13.16728],[92.80984,13.16732],[92.8096,13.1674],[92.80954,13.1674],[92.80944,13.16733],[92.80933,13.16716],[92.80923,13.16713],[92.80922,13.16701],[92.80927,13.16696],[92.80939,13.16696],[92.80948,13.16691],[92.80952,13.16684],[92.80953,13.16676],[92.80965,13.16675],[92.80977,13.16683],[92.80986,13.1668],[92.81007,13.16671],[92.81023,13.16662],[92.81029,13.16651],[92.81043,13.16645],[92.81046,13.1665],[92.81046,13.1666],[92.81044,13.1667],[92.81029,13.16706],[92.81021,13.16708],[92.81016,13.16709],[92.81008,13.16712]]],[[[92.80957,13.16919],[92.80949,13.16923],[92.8094,13.16919],[92.80914,13.16905],[92.80918,13.16897],[92.80925,13.16895],[92.80932,13.16895],[92.80939,13.16892],[92.80945,13.16888],[92.8097,13.16874],[92.8097,13.16868],[92.80973,13.1686],[92.8099,13.16853],[92.81,13.16852],[92.81015,13.16858],[92.81027,13.1686],[92.81032,13.16856],[92.81042,13.16856],[92.81049,13.1686],[92.81056,13.16867],[92.81061,13.16873],[92.81059,13.16882],[92.8105,13.16892],[92.81038,13.16898],[92.8102,13.16901],[92.81004,13.16906],[92.8099,13.16919],[92.80966,13.16917],[92.80957,13.16919]]],[[[92.79425,13.16755],[92.7949,13.16758],[92.79548,13.16772],[92.79635,13.168],[92.79647,13.16884],[92.79632,13.16991],[92.7961,13.17073],[92.79524,13.17127],[92.79426,13.17142],[92.79314,13.1714],[92.79237,13.1706],[92.79246,13.16935],[92.79294,13.16852],[92.79323,13.16811],[92.79311,13.16795],[92.79312,13.16785],[92.79324,13.16767],[92.79365,13.16757],[92.79425,13.16755]]],[[[92.79225,13.17158],[92.79221,13.17169],[92.79213,13.17174],[92.79203,13.17154],[92.79195,13.17152],[92.79185,13.17156],[92.7918,13.17157],[92.79174,13.17147],[92.79174,13.17138],[92.79167,13.17132],[92.79154,13.17128],[92.79159,13.17122],[92.79174,13.17116],[92.79182,13.17111],[92.79186,13.17105],[92.79187,13.17091],[92.79204,13.17091],[92.79217,13.17085],[92.79224,13.17092],[92.79228,13.17101],[92.79242,13.17111],[92.79254,13.17119],[92.79258,13.17124],[92.79246,13.17129],[92.79236,13.17144],[92.79225,13.17158]]],[[[92.82537,13.20903],[92.82515,13.20878],[92.82505,13.20882],[92.82495,13.20898],[92.82488,13.20882],[92.82477,13.20873],[92.82468,13.20873],[92.82459,13.20899],[92.82448,13.20882],[92.82435,13.20875],[92.82425,13.20876],[92.82421,13.2087],[92.82409,13.20869],[92.82393,13.20855],[92.82376,13.20861],[92.82366,13.20841],[92.82357,13.20844],[92.82354,13.20857],[92.82327,13.20827],[92.82316,13.20841],[92.82296,13.20805],[92.82273,13.2082],[92.82268,13.20785],[92.82246,13.20783],[92.82261,13.20763],[92.82238,13.20727],[92.82255,13.20723],[92.82249,13.20694],[92.82267,13.20694],[92.82281,13.20697],[92.82292,13.20695],[92.82299,13.20675],[92.8231,13.20685],[92.82322,13.2068],[92.82331,13.20703],[92.82358,13.20708],[92.82353,13.20733],[92.82381,13.20743],[92.82387,13.20763],[92.82417,13.20777],[92.82438,13.20776],[92.82481,13.20808],[92.82484,13.2082],[92.82505,13.20807],[92.82517,13.20824],[92.82534,13.20821],[92.82541,13.2084],[92.82565,13.20839],[92.82579,13.2087],[92.82601,13.20872],[92.82588,13.20894],[92.82558,13.20895],[92.82537,13.20903]]],[[[92.82728,13.20942],[92.82718,13.20957],[92.82716,13.20971],[92.82733,13.20985],[92.82709,13.21005],[92.82709,13.21019],[92.82732,13.21041],[92.82709,13.21045],[92.82705,13.21062],[92.82697,13.21073],[92.82694,13.21083],[92.82671,13.21107],[92.82662,13.21124],[92.82645,13.2114],[92.82629,13.21146],[92.82615,13.21144],[92.82603,13.21138],[92.82592,13.21135],[92.82577,13.21134],[92.82553,13.21129],[92.82559,13.21119],[92.82561,13.21104],[92.82553,13.21101],[92.82547,13.21089],[92.8255,13.21069],[92.82551,13.21055],[92.82546,13.21049],[92.82548,13.21039],[92.82572,13.21008],[92.82572,13.20992],[92.82569,13.20977],[92.82594,13.20972],[92.82598,13.20951],[92.82621,13.20949],[92.8262,13.20921],[92.82644,13.20924],[92.8266,13.20894],[92.82691,13.20909],[92.82697,13.20917],[92.82716,13.20926],[92.82728,13.20942]]],[[[92.82853,13.21047],[92.82859,13.21066],[92.82866,13.21077],[92.82868,13.21088],[92.82844,13.2109],[92.82844,13.21097],[92.82851,13.2111],[92.82825,13.2111],[92.82821,13.21115],[92.82826,13.21133],[92.82823,13.21139],[92.82803,13.21138],[92.82793,13.21144],[92.82782,13.21163],[92.82771,13.21165],[92.82771,13.21158],[92.82768,13.21143],[92.82761,13.21133],[92.82743,13.21129],[92.82731,13.21121],[92.82755,13.21107],[92.82761,13.21101],[92.82764,13.21094],[92.82764,13.21082],[92.82761,13.21069],[92.82794,13.21065],[92.82791,13.2105],[92.82783,13.21033],[92.82812,13.21041],[92.82828,13.21048],[92.8284,13.2105],[92.82853,13.21047]]],[[[93.05942,13.22379],[93.05873,13.22622],[93.05851,13.22662],[93.05833,13.22678],[93.05832,13.22701],[93.05795,13.22723],[93.05741,13.22741],[93.05682,13.22733],[93.05624,13.22691],[93.05581,13.22642],[93.05557,13.22578],[93.05571,13.22494],[93.05608,13.22427],[93.05677,13.22382],[93.05706,13.22299],[93.05738,13.2227],[93.05779,13.22191],[93.0585,13.22122],[93.06005,13.22021],[93.06037,13.21985],[93.06074,13.21975],[93.06104,13.21985],[93.0613,13.22021],[93.06132,13.22068],[93.06114,13.2211],[93.06088,13.22145],[93.05999,13.22213],[93.05961,13.22252],[93.05964,13.22266],[93.05942,13.22379]]],[[[93.06054,13.22482],[93.06081,13.22507],[93.06104,13.22551],[93.061,13.22618],[93.06102,13.22722],[93.06096,13.22769],[93.06073,13.22794],[93.06022,13.2282],[93.05971,13.22833],[93.05925,13.22811],[93.05904,13.22755],[93.0591,13.22705],[93.05949,13.22606],[93.05999,13.22505],[93.06011,13.22487],[93.06028,13.22479],[93.06054,13.22482]]],[[[92.83909,13.2486],[92.83926,13.2487],[92.83938,13.24887],[92.83934,13.24904],[92.83918,13.24916],[92.83899,13.24915],[92.83881,13.24907],[92.83869,13.2489],[92.83875,13.24873],[92.83887,13.24863],[92.83895,13.2486],[92.83909,13.2486]]],[[[93.04923,13.26369],[93.04913,13.26371],[93.04868,13.26365],[93.04857,13.26369],[93.04843,13.26377],[93.04826,13.26375],[93.04823,13.26359],[93.0483,13.26339],[93.04824,13.26332],[93.04796,13.26334],[93.04786,13.26328],[93.04786,13.26319],[93.0482,13.26294],[93.04814,13.2628],[93.04819,13.26272],[93.04835,13.26272],[93.04835,13.26258],[93.04863,13.26222],[93.04874,13.26214],[93.0488,13.26219],[93.04888,13.2623],[93.04889,13.26238],[93.04923,13.26241],[93.04922,13.26274],[93.04934,13.2628],[93.04946,13.26278],[93.04953,13.2629],[93.04943,13.26301],[93.04937,13.26325],[93.04931,13.26328],[93.04925,13.26335],[93.04929,13.26356],[93.04923,13.26369]]],[[[92.8001,13.28552],[92.8002,13.28558],[92.80029,13.28572],[92.80033,13.28603],[92.80023,13.28623],[92.80019,13.28633],[92.8002,13.28645],[92.80026,13.28665],[92.80025,13.28677],[92.80009,13.2869],[92.79989,13.28673],[92.79981,13.28665],[92.79978,13.28644],[92.79983,13.28627],[92.79984,13.28619],[92.79977,13.28596],[92.79976,13.28578],[92.79978,13.28568],[92.79991,13.28554],[92.80001,13.28552],[92.8001,13.28552]]],[[[92.81583,13.28808],[92.81563,13.28819],[92.81504,13.28813],[92.81463,13.28827],[92.81451,13.28827],[92.81439,13.28819],[92.81431,13.28799],[92.81409,13.28801],[92.81375,13.28787],[92.81367,13.28747],[92.81335,13.2875],[92.81321,13.28745],[92.81308,13.28731],[92.81307,13.28714],[92.81321,13.28688],[92.8136,13.28639],[92.81368,13.28603],[92.81382,13.28583],[92.81432,13.28562],[92.81466,13.28562],[92.8149,13.28518],[92.81512,13.28466],[92.81538,13.2845],[92.81556,13.28367],[92.81573,13.28346],[92.81603,13.28329],[92.81599,13.28254],[92.81605,13.28239],[92.81617,13.28228],[92.81642,13.28227],[92.81645,13.282],[92.81654,13.28179],[92.81676,13.28162],[92.81697,13.28171],[92.81729,13.28227],[92.8174,13.28236],[92.81776,13.28234],[92.81796,13.28252],[92.81796,13.28302],[92.81789,13.28363],[92.81812,13.28401],[92.8183,13.28461],[92.81886,13.28542],[92.81898,13.28535],[92.8192,13.28538],[92.8192,13.28571],[92.81918,13.28583],[92.81889,13.28609],[92.81873,13.28596],[92.81848,13.28602],[92.8184,13.28617],[92.81833,13.2867],[92.81821,13.28691],[92.81807,13.28691],[92.81783,13.28676],[92.81774,13.28674],[92.81761,13.28709],[92.81759,13.28734],[92.8174,13.28755],[92.81722,13.28764],[92.81706,13.2876],[92.81691,13.2875],[92.81679,13.2875],[92.81657,13.2878],[92.81645,13.28789],[92.81604,13.28793],[92.81583,13.28808]]],[[[93.0679,13.26663],[93.06798,13.26676],[93.06802,13.26682],[93.06802,13.26693],[93.06801,13.26701],[93.06799,13.26715],[93.06794,13.26717],[93.06784,13.26716],[93.06768,13.26708],[93.06757,13.26694],[93.06757,13.2668],[93.06758,13.26662],[93.06773,13.26658],[93.0679,13.26663]]],[[[93.0684,13.2672],[93.06847,13.26728],[93.06848,13.26739],[93.06846,13.26752],[93.06839,13.26759],[93.06823,13.26755],[93.06806,13.26747],[93.06802,13.26733],[93.06804,13.26721],[93.06809,13.26718],[93.06823,13.26716],[93.0684,13.2672]]],[[[93.06819,13.26776],[93.06826,13.26784],[93.06827,13.26796],[93.06825,13.26808],[93.06818,13.26815],[93.06802,13.26811],[93.06785,13.26803],[93.06781,13.26789],[93.06783,13.26777],[93.06788,13.26774],[93.06802,13.26772],[93.06819,13.26776]]],[[[93.06842,13.2686],[93.0685,13.26866],[93.0685,13.26889],[93.06842,13.269],[93.06833,13.26903],[93.06826,13.26897],[93.06818,13.26878],[93.06824,13.26864],[93.06834,13.2686],[93.06842,13.2686]]],[[[93.07089,13.27263],[93.07095,13.27264],[93.07098,13.27272],[93.071,13.27283],[93.07094,13.27291],[93.07087,13.27294],[93.07077,13.2729],[93.07072,13.27284],[93.07072,13.27273],[93.07076,13.27264],[93.07082,13.27263],[93.07089,13.27263]]],[[[93.0704,13.27285],[93.07051,13.2729],[93.07054,13.273],[93.07054,13.27308],[93.07041,13.27315],[93.07029,13.27306],[93.07027,13.27295],[93.07028,13.27287],[93.07033,13.27285],[93.0704,13.27285]]],[[[93.07004,13.27304],[93.07013,13.27312],[93.07013,13.27321],[93.07011,13.2733],[93.07006,13.27335],[93.06991,13.27336],[93.06982,13.27324],[93.06982,13.27307],[93.06987,13.27301],[93.06994,13.27299],[93.07004,13.27304]]],[[[93.07109,13.27314],[93.07112,13.27328],[93.07112,13.27344],[93.07114,13.27355],[93.07108,13.27362],[93.07095,13.27355],[93.07091,13.27341],[93.07091,13.27325],[93.07093,13.27314],[93.07109,13.27314]]],[[[93.07066,13.27349],[93.07069,13.27356],[93.07069,13.27373],[93.07056,13.2738],[93.07047,13.27371],[93.07047,13.27362],[93.0705,13.27349],[93.07066,13.27349]]],[[[93.07171,13.27366],[93.07178,13.27375],[93.07179,13.27386],[93.07177,13.27399],[93.0717,13.27406],[93.07154,13.27402],[93.07137,13.27393],[93.07134,13.27379],[93.07135,13.27368],[93.0714,13.27364],[93.07154,13.27363],[93.07171,13.27366]]],[[[93.07021,13.27372],[93.07032,13.27377],[93.07041,13.27384],[93.07043,13.27397],[93.07044,13.27409],[93.07039,13.27419],[93.07031,13.27424],[93.07024,13.27421],[93.07012,13.27415],[93.07008,13.27402],[93.07007,13.27389],[93.07008,13.2738],[93.07009,13.27373],[93.07021,13.27372]]],[[[93.07111,13.27391],[93.07118,13.27397],[93.07118,13.2742],[93.0711,13.27432],[93.07101,13.27434],[93.07094,13.27428],[93.07086,13.27409],[93.07092,13.27395],[93.07102,13.27391],[93.07111,13.27391]]],[[[93.0707,13.27454],[93.07078,13.27467],[93.07083,13.27473],[93.07083,13.27484],[93.07082,13.27492],[93.07079,13.27506],[93.07074,13.27508],[93.07065,13.27507],[93.07049,13.27499],[93.07037,13.27485],[93.07037,13.27471],[93.07039,13.27453],[93.07053,13.27449],[93.0707,13.27454]]],[[[93.03295,13.27973],[93.03304,13.28013],[93.03287,13.2804],[93.03258,13.28068],[93.0322,13.28083],[93.03173,13.28075],[93.0314,13.2806],[93.03125,13.28045],[93.03152,13.28019],[93.03165,13.27979],[93.03207,13.27953],[93.03263,13.27943],[93.03295,13.27973]]],[[[93.01495,13.28543],[93.01492,13.28556],[93.01464,13.2858],[93.01422,13.28588],[93.01383,13.28584],[93.01355,13.2856],[93.01344,13.28538],[93.01339,13.28512],[93.01341,13.2848],[93.01355,13.28464],[93.01369,13.28461],[93.01364,13.28437],[93.01369,13.2841],[93.01379,13.2839],[93.01393,13.28378],[93.01403,13.28361],[93.01448,13.28363],[93.01435,13.28336],[93.01449,13.28325],[93.01473,13.28315],[93.01535,13.28306],[93.01562,13.28331],[93.01553,13.28356],[93.01522,13.28383],[93.01563,13.28399],[93.0159,13.28407],[93.01617,13.28435],[93.0164,13.28441],[93.01652,13.28479],[93.01651,13.28502],[93.01596,13.28531],[93.01561,13.28531],[93.01501,13.28519],[93.01495,13.28543]]],[[[93.02123,13.29434],[93.02133,13.29439],[93.02139,13.29451],[93.0214,13.2946],[93.02139,13.29467],[93.02133,13.29474],[93.02105,13.29469],[93.021,13.2946],[93.02097,13.29454],[93.02096,13.29444],[93.02103,13.29436],[93.02114,13.29434],[93.02123,13.29434]]],[[[93.02169,13.29501],[93.02183,13.2951],[93.02191,13.29522],[93.0219,13.29531],[93.02177,13.29535],[93.02169,13.29535],[93.02145,13.29522],[93.02139,13.2951],[93.02142,13.29502],[93.02155,13.29497],[93.02169,13.29501]]],[[[92.98472,13.29847],[92.98493,13.29899],[92.98509,13.29946],[92.9851,13.29969],[92.98512,13.2997],[92.98511,13.29979],[92.98512,13.29987],[92.9851,13.30001],[92.98396,13.29979],[92.98332,13.29952],[92.98314,13.29937],[92.98312,13.29929],[92.9831,13.29926],[92.98301,13.29901],[92.98309,13.29849],[92.9835,13.29835],[92.98365,13.29833],[92.98377,13.29826],[92.98401,13.29817],[92.98472,13.29847]]],[[[93.04901,13.29499],[93.0491,13.29529],[93.04892,13.29546],[93.04915,13.29562],[93.04928,13.29587],[93.04918,13.29611],[93.049,13.29594],[93.04878,13.29562],[93.04851,13.29553],[93.04853,13.2951],[93.04836,13.2951],[93.04799,13.29505],[93.04764,13.29508],[93.04718,13.29556],[93.04673,13.29533],[93.04654,13.29544],[93.0456,13.29504],[93.04516,13.29464],[93.04481,13.29442],[93.04469,13.29417],[93.04487,13.29387],[93.04574,13.29383],[93.04586,13.29396],[93.04601,13.29342],[93.04641,13.29322],[93.04708,13.2934],[93.04743,13.29345],[93.04789,13.29329],[93.04852,13.29322],[93.0491,13.29371],[93.04938,13.29363],[93.04962,13.2938],[93.04971,13.29421],[93.04971,13.29436],[93.04941,13.2944],[93.0487,13.29386],[93.04817,13.2943],[93.04842,13.29454],[93.04866,13.29491],[93.04901,13.29499]]],[[[93.08012,13.29486],[93.08028,13.29489],[93.08032,13.29504],[93.08023,13.29511],[93.08016,13.29513],[93.07994,13.29513],[93.07974,13.29498],[93.0798,13.29486],[93.07994,13.29485],[93.08012,13.29486]]],[[[93.07571,13.29539],[93.07586,13.29546],[93.07587,13.29563],[93.07586,13.2957],[93.07577,13.29581],[93.07568,13.29576],[93.07558,13.29576],[93.07558,13.29555],[93.07561,13.29539],[93.07571,13.29539]]],[[[93.07605,13.29613],[93.07607,13.29587],[93.07607,13.29557],[93.0762,13.29556],[93.0763,13.29563],[93.07645,13.29583],[93.07636,13.29601],[93.07624,13.2961],[93.07605,13.29613]]],[[[93.07746,13.29566],[93.0776,13.29574],[93.0776,13.29594],[93.07752,13.29602],[93.07739,13.29601],[93.0773,13.29588],[93.0773,13.29575],[93.07736,13.29566],[93.07746,13.29566]]],[[[93.078,13.29567],[93.07819,13.29567],[93.07822,13.29581],[93.07819,13.29593],[93.07807,13.29604],[93.07788,13.29601],[93.07783,13.29589],[93.07783,13.29581],[93.07786,13.29569],[93.07792,13.29566],[93.078,13.29567]]],[[[93.07684,13.29578],[93.0769,13.29581],[93.07696,13.29588],[93.07696,13.29608],[93.07684,13.29616],[93.0767,13.29607],[93.07668,13.29593],[93.07668,13.29582],[93.07676,13.29578],[93.07684,13.29578]]],[[[93.07605,13.29613],[93.07595,13.29623],[93.07587,13.29627],[93.07574,13.2962],[93.07565,13.29604],[93.07567,13.29593],[93.07575,13.29589],[93.07589,13.29589],[93.07601,13.29593],[93.07605,13.29613]]],[[[93.07863,13.29603],[93.07863,13.29617],[93.07856,13.29631],[93.07849,13.29634],[93.07838,13.29612],[93.07843,13.29603],[93.07851,13.29597],[93.07863,13.29603]]],[[[93.07624,13.29627],[93.07624,13.29637],[93.07611,13.29658],[93.07593,13.29654],[93.07593,13.29635],[93.07605,13.29624],[93.07624,13.29627]]],[[[93.07755,13.29614],[93.07762,13.29614],[93.0777,13.29621],[93.0777,13.29635],[93.07764,13.29649],[93.07743,13.29642],[93.07743,13.29621],[93.07746,13.29614],[93.07755,13.29614]]],[[[93.07872,13.29652],[93.07878,13.29658],[93.07878,13.29667],[93.07877,13.29678],[93.07862,13.29687],[93.0785,13.29673],[93.0785,13.29658],[93.07856,13.29654],[93.07865,13.29652],[93.07872,13.29652]]],[[[93.08201,13.2971],[93.08212,13.29725],[93.08213,13.29739],[93.08205,13.29746],[93.08193,13.29752],[93.08179,13.29746],[93.08176,13.29738],[93.08176,13.29717],[93.08178,13.29707],[93.08187,13.29704],[93.08201,13.2971]]],[[[93.08,13.29749],[93.08004,13.29767],[93.08003,13.29778],[93.08,13.29786],[93.07993,13.29793],[93.07979,13.29778],[93.0797,13.29766],[93.0797,13.29753],[93.07976,13.29745],[93.07989,13.29742],[93.08,13.29749]]],[[[93.08103,13.29854],[93.08098,13.2986],[93.08092,13.29861],[93.08076,13.29855],[93.08073,13.29841],[93.08069,13.29847],[93.08056,13.29839],[93.08054,13.29826],[93.08054,13.29815],[93.08065,13.29809],[93.08079,13.29809],[93.0809,13.29826],[93.08081,13.29836],[93.08081,13.29841],[93.08088,13.29841],[93.08102,13.29839],[93.08103,13.29854]]],[[[93.08137,13.29857],[93.08144,13.29868],[93.08144,13.29879],[93.08146,13.29892],[93.0812,13.29889],[93.08112,13.29873],[93.08112,13.29861],[93.08126,13.29857],[93.08137,13.29857]]],[[[93.0821,13.29969],[93.08211,13.29982],[93.08212,13.29991],[93.0821,13.29996],[93.08201,13.30001],[93.08191,13.29995],[93.08191,13.29964],[93.08198,13.29963],[93.0821,13.29969]]],[[[93.08255,13.29991],[93.08259,13.29998],[93.08259,13.30009],[93.08252,13.30018],[93.08238,13.30024],[93.08233,13.30024],[93.08227,13.30008],[93.08231,13.29991],[93.08246,13.29988],[93.08255,13.29991]]],[[[93.08304,13.30015],[93.083,13.3003],[93.0829,13.30033],[93.08283,13.30033],[93.08282,13.30026],[93.08283,13.30015],[93.08292,13.30011],[93.08304,13.30015]]],[[[93.02186,13.31504],[93.02187,13.31515],[93.02181,13.31523],[93.0217,13.31534],[93.0216,13.31533],[93.02157,13.31528],[93.02153,13.31519],[93.02156,13.31503],[93.02171,13.31497],[93.02186,13.31504]]],[[[93.02232,13.31564],[93.02237,13.31575],[93.02237,13.31586],[93.02228,13.31596],[93.02218,13.31599],[93.0221,13.31594],[93.02207,13.31586],[93.02208,13.31574],[93.02221,13.31564],[93.02232,13.31564]]],[[[93.02209,13.31626],[93.02219,13.31636],[93.0222,13.31644],[93.02217,13.31656],[93.02206,13.3166],[93.02198,13.31653],[93.0219,13.31649],[93.02188,13.31636],[93.022,13.31622],[93.02209,13.31626]]],[[[93.02142,13.31815],[93.02155,13.31819],[93.02152,13.31841],[93.02133,13.31846],[93.02123,13.31828],[93.02127,13.31815],[93.02142,13.31815]]],[[[93.005,13.3065],[93.0048,13.30694],[93.00536,13.30786],[93.00524,13.30927],[93.00538,13.31053],[93.00699,13.31329],[93.00768,13.31483],[93.00804,13.31629],[93.00803,13.31747],[93.00856,13.32002],[93.00829,13.32071],[93.00783,13.32089],[93.0069,13.32064],[93.00488,13.31939],[93.00257,13.31725],[93.00245,13.3159],[93.00147,13.31382],[93.0,13.31298],[92.99914,13.31128],[92.9968,13.30787],[92.99544,13.30473],[92.99517,13.3029],[92.99468,13.30103],[92.99391,13.29992],[92.99391,13.29948],[92.99434,13.29848],[92.99487,13.29759],[92.99523,13.2974],[92.99592,13.29826],[92.99645,13.29982],[92.99696,13.30018],[92.99795,13.30051],[93.00022,13.3002],[93.00045,13.30048],[93.00055,13.30114],[93.0004,13.30183],[93.00047,13.30304],[93.00117,13.30379],[93.00242,13.30435],[93.00371,13.30375],[93.00529,13.30357],[93.00759,13.30374],[93.01081,13.30285],[93.01115,13.30253],[93.01091,13.30156],[93.01142,13.30114],[93.01283,13.30287],[93.01293,13.3034],[93.01246,13.30601],[93.0118,13.30725],[93.01125,13.30793],[93.00984,13.30922],[93.00865,13.30988],[93.00777,13.31005],[93.007,13.30984],[93.0065,13.30941],[93.00604,13.3087],[93.00564,13.3076],[93.00555,13.30626],[93.0053,13.30624],[93.005,13.3065]]],[[[93.00547,13.32279],[93.00504,13.32296],[93.00354,13.32311],[93.00298,13.32291],[93.00247,13.32301],[93.00146,13.32291],[93.00089,13.32263],[93.0,13.32277],[92.99961,13.32274],[92.99721,13.32215],[92.99676,13.32182],[92.99668,13.32186],[92.99657,13.3218],[92.99537,13.32091],[92.99432,13.31969],[92.99425,13.31933],[92.99434,13.31895],[92.99585,13.31771],[92.99719,13.31696],[92.99776,13.31682],[92.99832,13.31654],[92.99934,13.31624],[93.00022,13.31624],[93.0012,13.31725],[93.00162,13.3178],[93.00237,13.31932],[93.00309,13.32],[93.00517,13.3212],[93.00564,13.32164],[93.006,13.32213],[93.00595,13.32234],[93.00573,13.3226],[93.00547,13.32279]]],[[[93.0228,13.32884],[93.02139,13.32929],[93.02023,13.32943],[93.01862,13.32918],[93.01796,13.32918],[93.0175,13.32938],[93.0169,13.32923],[93.01612,13.32791],[93.01592,13.32678],[93.01557,13.32642],[93.01549,13.32585],[93.0156,13.32475],[93.01526,13.32368],[93.01515,13.32171],[93.01524,13.31959],[93.01484,13.31707],[93.01444,13.31701],[93.01453,13.31381],[93.01408,13.31164],[93.01436,13.31103],[93.01434,13.31041],[93.01385,13.30872],[93.01405,13.30813],[93.01658,13.3081],[93.01768,13.30783],[93.01863,13.30706],[93.02062,13.30453],[93.021,13.30436],[93.02108,13.30394],[93.02128,13.30394],[93.021,13.30364],[93.02093,13.30301],[93.0212,13.3016],[93.02159,13.30163],[93.02207,13.30194],[93.02232,13.30249],[93.0222,13.30277],[93.023,13.30598],[93.02314,13.30758],[93.02275,13.30863],[93.02253,13.30886],[93.02253,13.30919],[93.02151,13.31003],[93.0218,13.31118],[93.02069,13.31182],[93.02032,13.31247],[93.02072,13.31556],[93.02012,13.31598],[93.0198,13.31646],[93.01985,13.3167],[93.02056,13.31728],[93.02029,13.32147],[93.02054,13.32267],[93.02073,13.32305],[93.02114,13.32322],[93.0214,13.32385],[93.02138,13.32433],[93.02164,13.32447],[93.02132,13.32519],[93.0214,13.32543],[93.02187,13.32635],[93.02243,13.32611],[93.02293,13.32629],[93.02336,13.32611],[93.02388,13.32614],[93.02402,13.32645],[93.02431,13.32653],[93.02431,13.32683],[93.02453,13.32712],[93.02427,13.32818],[93.02379,13.32816],[93.02365,13.32838],[93.0228,13.32884]]],[[[92.9691,13.3392],[92.96887,13.33928],[92.96864,13.33905],[92.96846,13.33878],[92.96839,13.33842],[92.96821,13.33805],[92.96798,13.33806],[92.96844,13.33891],[92.96843,13.33904],[92.96823,13.33918],[92.96717,13.33895],[92.96635,13.33868],[92.96579,13.33825],[92.9654,13.33787],[92.96477,13.33697],[92.96449,13.3361],[92.96447,13.33584],[92.96401,13.33556],[92.96392,13.33542],[92.9639,13.33518],[92.96396,13.33507],[92.96441,13.33498],[92.96464,13.33496],[92.96476,13.335],[92.9652,13.33532],[92.96525,13.33469],[92.96509,13.33477],[92.96496,13.33459],[92.96504,13.33399],[92.96515,13.33375],[92.96547,13.33337],[92.96609,13.33281],[92.96661,13.33264],[92.96677,13.3327],[92.96685,13.33255],[92.96702,13.33246],[92.96715,13.33249],[92.96751,13.33298],[92.96769,13.3334],[92.96768,13.33414],[92.96735,13.33478],[92.96731,13.33514],[92.96746,13.3357],[92.96786,13.33634],[92.96821,13.33665],[92.96845,13.33703],[92.96898,13.33747],[92.96909,13.33773],[92.96903,13.33802],[92.96914,13.3381],[92.96924,13.33829],[92.96956,13.33859],[92.96967,13.33897],[92.96969,13.33914],[92.96964,13.3392],[92.96932,13.33911],[92.9691,13.3392]]],[[[93.00894,13.33726],[93.00835,13.33757],[93.00803,13.33741],[93.00803,13.33723],[93.00828,13.33728],[93.00836,13.33711],[93.00812,13.33698],[93.00806,13.33702],[93.00779,13.3371],[93.00737,13.33705],[93.00702,13.33682],[93.0066,13.33639],[93.00634,13.33593],[93.00632,13.33573],[93.00642,13.33557],[93.00659,13.33551],[93.00661,13.33508],[93.00714,13.33517],[93.00784,13.33555],[93.00829,13.33575],[93.00885,13.33655],[93.00894,13.33726]]],[[[93.01341,13.33699],[93.01378,13.33705],[93.01404,13.33717],[93.01431,13.33736],[93.01459,13.3378],[93.01499,13.33821],[93.01532,13.33874],[93.01537,13.33903],[93.01508,13.3393],[93.01447,13.33919],[93.01423,13.33919],[93.01371,13.33908],[93.01322,13.33886],[93.01294,13.33859],[93.01267,13.33808],[93.01258,13.33763],[93.0126,13.33758],[93.01241,13.33749],[93.01249,13.33713],[93.01285,13.33689],[93.01341,13.33699]]],[[[93.01977,13.34514],[93.01938,13.34558],[93.01888,13.34516],[93.01916,13.34502],[93.01923,13.34492],[93.01857,13.34524],[93.01816,13.34562],[93.01787,13.34564],[93.01756,13.34553],[93.01716,13.34513],[93.01662,13.34472],[93.01578,13.34325],[93.0156,13.3426],[93.01578,13.34155],[93.01642,13.33952],[93.01634,13.33904],[93.01604,13.33898],[93.01576,13.33874],[93.01573,13.3384],[93.01592,13.3381],[93.01644,13.33777],[93.01693,13.33795],[93.01727,13.33815],[93.01764,13.33803],[93.01766,13.3378],[93.01725,13.33707],[93.01719,13.33676],[93.01743,13.33667],[93.01846,13.3372],[93.01906,13.33771],[93.01956,13.33752],[93.02014,13.33811],[93.02025,13.33874],[93.02005,13.33909],[93.01975,13.3392],[93.01915,13.33898],[93.0192,13.33888],[93.01882,13.33914],[93.01853,13.33958],[93.01844,13.34009],[93.01847,13.34034],[93.01909,13.34051],[93.01929,13.3408],[93.01934,13.34144],[93.0195,13.34216],[93.02001,13.34284],[93.02026,13.34338],[93.02037,13.34425],[93.02023,13.34465],[93.01977,13.34514]]],[[[93.0364,13.33966],[93.0369,13.34004],[93.03744,13.34084],[93.03779,13.34172],[93.03835,13.34281],[93.03857,13.34337],[93.0386,13.34372],[93.03829,13.34426],[93.03809,13.34448],[93.0376,13.34461],[93.03735,13.3446],[93.03612,13.34391],[93.03531,13.34279],[93.03526,13.34192],[93.03545,13.34076],[93.03611,13.33963],[93.0364,13.33966]]],[[[92.82962,13.36832],[92.82979,13.36849],[92.82984,13.36867],[92.82982,13.36894],[92.82976,13.36908],[92.82949,13.36932],[92.82924,13.36937],[92.82914,13.36932],[92.82899,13.36915],[92.82888,13.3689],[92.82891,13.36862],[92.82904,13.36837],[92.8292,13.36826],[92.82938,13.36823],[92.82962,13.36832]]],[[[93.03612,13.36058],[93.03639,13.36083],[93.03628,13.3611],[93.03614,13.36133],[93.03563,13.36165],[93.03515,13.36154],[93.03497,13.36148],[93.03497,13.36117],[93.03528,13.36092],[93.0357,13.3606],[93.03612,13.36058]]],[[[93.03849,13.36365],[93.03962,13.36476],[93.04033,13.36652],[93.04049,13.36776],[93.0403,13.36809],[93.0402,13.36815],[93.03907,13.36729],[93.03785,13.36646],[93.03669,13.36543],[93.03613,13.36414],[93.03648,13.36331],[93.03698,13.36302],[93.03771,13.36292],[93.03849,13.36365]]],[[[93.08087,13.3662],[93.08094,13.36629],[93.08097,13.36636],[93.08093,13.36642],[93.08082,13.36642],[93.08072,13.36638],[93.08064,13.36631],[93.08064,13.36624],[93.08067,13.36616],[93.08076,13.36615],[93.08087,13.3662]]],[[[93.07545,13.36606],[93.07549,13.36615],[93.07609,13.36615],[93.07609,13.36662],[93.07552,13.36715],[93.07496,13.36706],[93.07449,13.36687],[93.07398,13.36675],[93.07397,13.36656],[93.07352,13.36618],[93.07343,13.36627],[93.07301,13.36636],[93.07247,13.36583],[93.07211,13.36557],[93.07225,13.36513],[93.07281,13.36462],[93.07328,13.3643],[93.07368,13.36405],[93.07409,13.36389],[93.07436,13.36408],[93.07435,13.36449],[93.07524,13.36384],[93.07522,13.36335],[93.07537,13.36298],[93.07625,13.3625],[93.07659,13.36257],[93.07695,13.36284],[93.07729,13.36322],[93.07743,13.36351],[93.07734,13.36383],[93.07695,13.36475],[93.07627,13.36493],[93.07599,13.36472],[93.07515,13.36556],[93.0758,13.36544],[93.07566,13.36583],[93.07545,13.36606]]],[[[93.0813,13.36638],[93.08137,13.36642],[93.0814,13.36649],[93.08138,13.36657],[93.08134,13.36664],[93.08122,13.36659],[93.08113,13.36655],[93.08108,13.36647],[93.08108,13.3664],[93.08118,13.36636],[93.0813,13.36638]]],[[[93.08084,13.36666],[93.08088,13.36671],[93.08089,13.3668],[93.08083,13.36689],[93.08074,13.36691],[93.08064,13.36686],[93.08062,13.36678],[93.08064,13.36666],[93.08071,13.36662],[93.08084,13.36666]]],[[[93.08225,13.36727],[93.08232,13.36738],[93.08232,13.36747],[93.08223,13.36751],[93.08215,13.36751],[93.08207,13.36747],[93.08201,13.36743],[93.082,13.3673],[93.08213,13.36723],[93.08225,13.36727]]],[[[93.08131,13.36695],[93.08162,13.36695],[93.08181,13.36741],[93.0821,13.36757],[93.08264,13.36821],[93.08287,13.36859],[93.08293,13.36923],[93.08246,13.36942],[93.08214,13.36969],[93.08196,13.36998],[93.0817,13.37027],[93.08122,13.37021],[93.08038,13.36977],[93.08031,13.36915],[93.07986,13.36893],[93.07948,13.36867],[93.07931,13.3685],[93.07922,13.36827],[93.07926,13.36808],[93.07946,13.36775],[93.07974,13.36747],[93.0806,13.3672],[93.08067,13.36698],[93.081,13.36697],[93.081,13.36683],[93.08106,13.36677],[93.08118,13.36677],[93.08127,13.36681],[93.08131,13.36687],[93.08131,13.36695]]],[[[93.03592,13.3738],[93.03632,13.37424],[93.03602,13.37463],[93.03531,13.37463],[93.03468,13.3746],[93.03482,13.37401],[93.03547,13.37359],[93.03592,13.3738]]],[[[93.0473,13.37357],[93.0449,13.37515],[93.04455,13.37517],[93.04439,13.37499],[93.04328,13.37435],[93.04128,13.37365],[93.03948,13.37345],[93.03761,13.37363],[93.03658,13.37401],[93.03648,13.37264],[93.03621,13.37135],[93.03634,13.37062],[93.03679,13.37008],[93.03811,13.36957],[93.03877,13.36944],[93.03964,13.36944],[93.04036,13.36907],[93.04078,13.36752],[93.04038,13.36582],[93.04038,13.36538],[93.04078,13.36533],[93.04144,13.36567],[93.04424,13.36639],[93.04534,13.36698],[93.04616,13.36835],[93.04641,13.36829],[93.04722,13.36898],[93.04748,13.36939],[93.04745,13.37001],[93.04708,13.37045],[93.04687,13.37109],[93.04714,13.372],[93.0473,13.37357]]],[[[93.04461,13.37547],[93.04473,13.37552],[93.04482,13.37562],[93.04487,13.37585],[93.04485,13.37618],[93.04472,13.37648],[93.04454,13.37657],[93.04438,13.37657],[93.04417,13.37641],[93.0441,13.37623],[93.04408,13.37611],[93.04417,13.37591],[93.04442,13.3755],[93.04451,13.37548],[93.04461,13.37547]]],[[[93.0778,13.37642],[93.07791,13.37644],[93.07798,13.37652],[93.07799,13.37665],[93.07793,13.37677],[93.07778,13.37682],[93.07768,13.37677],[93.07762,13.37671],[93.07761,13.3766],[93.07761,13.37652],[93.07768,13.37642],[93.0778,13.37642]]],[[[93.08001,13.37664],[93.08006,13.3767],[93.08005,13.37691],[93.08006,13.37701],[93.07993,13.37706],[93.07978,13.37701],[93.07973,13.37695],[93.07971,13.37687],[93.0797,13.37677],[93.07974,13.37666],[93.07991,13.37661],[93.08001,13.37664]]],[[[93.07724,13.37714],[93.07731,13.3772],[93.07732,13.37731],[93.07718,13.37739],[93.07709,13.3774],[93.07701,13.37737],[93.077,13.37723],[93.07706,13.37713],[93.07714,13.3771],[93.07724,13.37714]]],[[[93.07775,13.37719],[93.07784,13.37728],[93.07784,13.37737],[93.07779,13.37744],[93.07769,13.37748],[93.07758,13.37746],[93.07752,13.37737],[93.07753,13.37729],[93.07755,13.37721],[93.07763,13.37717],[93.07775,13.37719]]],[[[93.07962,13.37739],[93.07947,13.3775],[93.07902,13.37775],[93.07868,13.37742],[93.07837,13.37749],[93.07822,13.37744],[93.07811,13.37738],[93.07803,13.37723],[93.07809,13.37703],[93.07854,13.37639],[93.07872,13.37622],[93.07922,13.3761],[93.07963,13.37618],[93.07976,13.37631],[93.07978,13.37647],[93.07958,13.37675],[93.07932,13.37699],[93.07924,13.37709],[93.07933,13.37706],[93.07945,13.37706],[93.07962,13.37718],[93.07962,13.37739]]],[[[93.06002,13.36911],[93.05948,13.37061],[93.05978,13.37248],[93.05637,13.37989],[93.05656,13.38097],[93.05376,13.38307],[93.05213,13.38177],[93.04965,13.37752],[93.04901,13.37451],[93.04785,13.3736],[93.04729,13.37122],[93.04769,13.36926],[93.04587,13.36732],[93.04597,13.36686],[93.04748,13.36758],[93.04732,13.36644],[93.0483,13.36647],[93.04962,13.36522],[93.04806,13.36587],[93.04682,13.36572],[93.04677,13.36654],[93.0456,13.36672],[93.03993,13.36468],[93.03893,13.36277],[93.0407,13.36231],[93.0417,13.36496],[93.04247,13.36528],[93.04302,13.36225],[93.04405,13.36137],[93.04379,13.36109],[93.04249,13.36256],[93.04242,13.36496],[93.04178,13.36458],[93.04088,13.36192],[93.03843,13.36189],[93.03864,13.36055],[93.0401,13.35926],[93.04125,13.35988],[93.04139,13.36083],[93.04207,13.36111],[93.0445,13.35974],[93.04358,13.35933],[93.04239,13.36062],[93.04168,13.36072],[93.04176,13.35967],[93.04092,13.35897],[93.04403,13.3523],[93.04477,13.34744],[93.04424,13.34531],[93.04465,13.34535],[93.03979,13.3394],[93.04078,13.3374],[93.04029,13.33751],[93.03951,13.33019],[93.03875,13.32914],[93.03915,13.32831],[93.0378,13.32603],[93.03841,13.32222],[93.04054,13.32111],[93.04396,13.32092],[93.04576,13.32148],[93.04842,13.32302],[93.05129,13.32722],[93.05233,13.32708],[93.05355,13.32853],[93.05652,13.32977],[93.05847,13.32889],[93.05978,13.32744],[93.06084,13.32323],[93.05988,13.32014],[93.05977,13.3168],[93.06039,13.31359],[93.06244,13.30907],[93.06187,13.30612],[93.06332,13.30392],[93.06439,13.30353],[93.06612,13.30586],[93.06759,13.30625],[93.06908,13.3034],[93.0711,13.30234],[93.06893,13.30059],[93.06878,13.2998],[93.06962,13.29831],[93.07075,13.29754],[93.07411,13.29756],[93.07649,13.29635],[93.07806,13.29629],[93.07792,13.29664],[93.07934,13.29702],[93.08063,13.30052],[93.0805,13.30214],[93.07909,13.30317],[93.07867,13.3044],[93.07688,13.30544],[93.07655,13.30671],[93.07536,13.30725],[93.07395,13.30624],[93.07245,13.30382],[93.07102,13.3046],[93.06921,13.30669],[93.06997,13.30972],[93.07089,13.31081],[93.0701,13.31275],[93.07133,13.31477],[93.07205,13.31817],[93.07148,13.32266],[93.07257,13.32488],[93.07211,13.32507],[93.07252,13.3257],[93.07409,13.32614],[93.07478,13.329],[93.07625,13.33005],[93.07685,13.33029],[93.07881,13.32926],[93.07926,13.33026],[93.07903,13.33139],[93.07964,13.33157],[93.08017,13.33024],[93.083,13.33044],[93.08971,13.33366],[93.0901,13.33606],[93.089,13.33971],[93.08806,13.34604],[93.08726,13.34689],[93.08307,13.34425],[93.08137,13.34396],[93.07985,13.34477],[93.07785,13.3439],[93.07757,13.34465],[93.07973,13.34759],[93.07873,13.34954],[93.07524,13.34858],[93.07443,13.34725],[93.07073,13.3491],[93.06772,13.35321],[93.06366,13.36087],[93.0629,13.36134],[93.06248,13.36103],[93.06156,13.36232],[93.06124,13.36327],[93.06183,13.36328],[93.06193,13.36405],[93.06142,13.36826],[93.06002,13.36911]]],[[[93.0625,13.38672],[93.06256,13.38707],[93.06217,13.38724],[93.06168,13.387],[93.06136,13.3867],[93.06152,13.38642],[93.06204,13.38656],[93.062,13.38649],[93.06186,13.38645],[93.06167,13.38632],[93.06147,13.38606],[93.06123,13.38558],[93.06082,13.38583],[93.0601,13.38588],[93.05978,13.38577],[93.05941,13.38555],[93.05964,13.38512],[93.06009,13.38454],[93.06031,13.38451],[93.0606,13.38412],[93.06062,13.38388],[93.06012,13.38387],[93.06009,13.3831],[93.0603,13.38274],[93.06081,13.38249],[93.06173,13.38281],[93.06271,13.38384],[93.06319,13.38453],[93.06353,13.38473],[93.06433,13.3844],[93.06469,13.38464],[93.06495,13.38487],[93.06548,13.38491],[93.06632,13.38532],[93.06675,13.38559],[93.0669,13.38594],[93.06642,13.38677],[93.06569,13.38687],[93.06521,13.38661],[93.06462,13.38609],[93.06421,13.38606],[93.06395,13.38644],[93.06333,13.38648],[93.0625,13.38672]]],[[[93.08324,13.39621],[93.0833,13.3963],[93.08328,13.39648],[93.08322,13.39658],[93.08311,13.39661],[93.08303,13.39659],[93.08293,13.3964],[93.08299,13.39623],[93.08309,13.39615],[93.08324,13.39621]]],[[[93.08273,13.39674],[93.08282,13.39702],[93.08284,13.39731],[93.08277,13.39749],[93.08261,13.39756],[93.08254,13.39776],[93.0826,13.39795],[93.08225,13.39835],[93.08209,13.39836],[93.08194,13.39828],[93.08181,13.39804],[93.08157,13.3978],[93.08144,13.39762],[93.08153,13.39734],[93.08154,13.39703],[93.08181,13.39678],[93.08194,13.39679],[93.08164,13.39656],[93.0817,13.39642],[93.08183,13.39626],[93.08219,13.39612],[93.08261,13.39608],[93.08275,13.39614],[93.08273,13.39674]]],[[[92.84679,13.41926],[92.84691,13.41934],[92.84701,13.41946],[92.84717,13.41958],[92.84723,13.41967],[92.84723,13.41974],[92.84708,13.41996],[92.84709,13.42016],[92.84695,13.42031],[92.84685,13.42038],[92.84678,13.42038],[92.84671,13.42038],[92.84662,13.42032],[92.84643,13.42018],[92.84606,13.41975],[92.84604,13.41969],[92.84604,13.41957],[92.84613,13.41946],[92.84619,13.41942],[92.84636,13.41936],[92.84649,13.41927],[92.84661,13.41924],[92.84679,13.41926]]],[[[92.86243,13.42105],[92.86288,13.42133],[92.86292,13.42151],[92.86298,13.4216],[92.86269,13.42187],[92.86212,13.42218],[92.86228,13.42242],[92.86227,13.42256],[92.8618,13.42257],[92.8617,13.42251],[92.86154,13.42245],[92.86144,13.42238],[92.86144,13.42233],[92.86149,13.42222],[92.86156,13.42217],[92.86163,13.42203],[92.86125,13.42166],[92.86118,13.42137],[92.86118,13.42125],[92.86145,13.4211],[92.86171,13.4208],[92.86188,13.42074],[92.86203,13.42078],[92.86216,13.42075],[92.86243,13.42105]]],[[[92.81537,13.42041],[92.81507,13.42127],[92.81589,13.42288],[92.81592,13.42327],[92.81568,13.42488],[92.81459,13.42676],[92.81379,13.42754],[92.81336,13.42859],[92.81319,13.4303],[92.81294,13.43087],[92.81202,13.43177],[92.81166,13.43207],[92.81079,13.43203],[92.81051,13.43184],[92.8087,13.43047],[92.80801,13.43019],[92.80754,13.42963],[92.80707,13.42858],[92.80646,13.4281],[92.80642,13.42663],[92.80568,13.42455],[92.80519,13.42221],[92.80518,13.42133],[92.80573,13.41944],[92.80612,13.41864],[92.80646,13.41839],[92.8075,13.41866],[92.80831,13.42052],[92.80855,13.42074],[92.80906,13.42081],[92.80928,13.42061],[92.80925,13.41899],[92.80972,13.41782],[92.80971,13.41718],[92.81013,13.41666],[92.81098,13.41472],[92.81061,13.41286],[92.80998,13.41184],[92.80984,13.41109],[92.80888,13.40901],[92.8083,13.40833],[92.80795,13.40733],[92.80744,13.40689],[92.80735,13.40649],[92.80622,13.40558],[92.80575,13.40449],[92.8055,13.40202],[92.80767,13.40054],[92.80945,13.39996],[92.8111,13.39984],[92.8126,13.40051],[92.81429,13.40082],[92.81509,13.40123],[92.81592,13.40194],[92.81654,13.40331],[92.81729,13.40364],[92.81758,13.40399],[92.81752,13.40457],[92.81729,13.40484],[92.81778,13.40673],[92.8184,13.4076],[92.81805,13.40886],[92.81802,13.40984],[92.81818,13.41016],[92.81803,13.41064],[92.8186,13.41155],[92.81863,13.41259],[92.81841,13.4132],[92.81787,13.41362],[92.81769,13.41462],[92.81773,13.41503],[92.81856,13.41598],[92.81868,13.41652],[92.81811,13.41717],[92.81566,13.41805],[92.81598,13.41828],[92.81595,13.41866],[92.81565,13.41901],[92.81537,13.42041]]],[[[93.09487,13.42026],[93.09553,13.42105],[93.09568,13.42151],[93.09534,13.42167],[93.09575,13.42257],[93.09572,13.4232],[93.09499,13.4232],[93.09421,13.4229],[93.09351,13.4229],[93.09291,13.42269],[93.09207,13.42266],[93.09096,13.42211],[93.08933,13.42105],[93.08912,13.42068],[93.08896,13.42065],[93.08903,13.41999],[93.08876,13.41987],[93.08778,13.41865],[93.08759,13.41803],[93.08598,13.41643],[93.0858,13.4161],[93.08614,13.41422],[93.08566,13.4136],[93.0859,13.41326],[93.0857,13.41329],[93.08581,13.41256],[93.08561,13.41193],[93.08581,13.41172],[93.08589,13.41136],[93.08614,13.41109],[93.08625,13.41008],[93.0867,13.4097],[93.08685,13.41003],[93.0875,13.40921],[93.0888,13.40805],[93.08934,13.40731],[93.09021,13.40678],[93.09083,13.40711],[93.09088,13.40772],[93.09147,13.40877],[93.09172,13.4098],[93.09142,13.41138],[93.09085,13.41174],[93.09066,13.41174],[93.09075,13.41231],[93.09217,13.41574],[93.09287,13.41642],[93.0934,13.41721],[93.09361,13.41773],[93.09343,13.41837],[93.0936,13.41837],[93.09393,13.4186],[93.09397,13.41899],[93.09382,13.4193],[93.09356,13.41974],[93.09326,13.41992],[93.09393,13.41971],[93.09487,13.42026]]],[[[92.84338,13.43821],[92.84309,13.4383],[92.84308,13.43852],[92.84357,13.44006],[92.8441,13.44336],[92.84406,13.446],[92.84266,13.44911],[92.8417,13.45038],[92.84119,13.45047],[92.83988,13.44972],[92.83785,13.44724],[92.83661,13.44628],[92.83442,13.44144],[92.83362,13.44064],[92.83204,13.4396],[92.83206,13.43926],[92.83157,13.43913],[92.83113,13.43933],[92.82821,13.43946],[92.82656,13.4391],[92.82509,13.4397],[92.82418,13.43963],[92.82344,13.43842],[92.82266,13.43811],[92.82175,13.43732],[92.82064,13.4358],[92.81991,13.43525],[92.81952,13.43212],[92.81902,13.43136],[92.81925,13.43098],[92.81835,13.42983],[92.81866,13.42927],[92.81851,13.42864],[92.81873,13.4283],[92.81834,13.42745],[92.81826,13.42659],[92.81877,13.42546],[92.81894,13.42422],[92.81959,13.42358],[92.81988,13.42222],[92.82028,13.42205],[92.8204,13.42162],[92.82069,13.42145],[92.82081,13.42062],[92.8213,13.4205],[92.8225,13.41959],[92.82314,13.41971],[92.82365,13.41953],[92.82417,13.4198],[92.82505,13.41957],[92.82574,13.41978],[92.82648,13.4194],[92.82764,13.4193],[92.82892,13.41863],[92.83098,13.41838],[92.83226,13.41875],[92.83316,13.41937],[92.83413,13.41932],[92.83556,13.42013],[92.83738,13.41998],[92.83869,13.42074],[92.83959,13.42188],[92.83977,13.42281],[92.84034,13.423],[92.84048,13.42344],[92.84135,13.42437],[92.8415,13.42512],[92.8422,13.42536],[92.84306,13.42633],[92.84314,13.42667],[92.84288,13.4269],[92.84306,13.42741],[92.84405,13.42819],[92.8446,13.42826],[92.84499,13.42887],[92.84527,13.43031],[92.84579,13.43053],[92.84606,13.43094],[92.84385,13.43423],[92.84388,13.43514],[92.84366,13.43568],[92.84385,13.43693],[92.84338,13.43821]]],[[[93.07218,13.43228],[93.07172,13.43201],[93.07151,13.43207],[93.07124,13.43192],[93.07087,13.43141],[93.06973,13.43058],[93.0696,13.42999],[93.06925,13.42936],[93.06877,13.42887],[93.06863,13.42844],[93.06755,13.42704],[93.06718,13.42686],[93.06739,13.42652],[93.06701,13.42601],[93.06666,13.42513],[93.06602,13.42443],[93.06614,13.4233],[93.06588,13.42309],[93.06572,13.42313],[93.06553,13.42264],[93.0656,13.42072],[93.06605,13.41943],[93.06602,13.41852],[93.06618,13.41806],[93.06666,13.41804],[93.0669,13.41789],[93.06738,13.41669],[93.06689,13.41596],[93.06691,13.41506],[93.06718,13.41451],[93.06755,13.41471],[93.0677,13.41455],[93.06748,13.41452],[93.06797,13.41319],[93.06853,13.41278],[93.06963,13.41258],[93.0706,13.41287],[93.07134,13.41334],[93.07108,13.41528],[93.07054,13.4179],[93.07022,13.41825],[93.07009,13.41882],[93.07011,13.41932],[93.0705,13.42087],[93.07051,13.42171],[93.07024,13.42269],[93.07024,13.42354],[93.07072,13.42514],[93.07102,13.4255],[93.07118,13.42614],[93.07116,13.42696],[93.07172,13.42846],[93.07229,13.43083],[93.07266,13.43141],[93.07257,13.43189],[93.07218,13.43228]]],[[[93.0741,13.43213],[93.07421,13.43233],[93.07428,13.43248],[93.07441,13.43253],[93.07437,13.43285],[93.07425,13.43314],[93.07409,13.43341],[93.07342,13.43337],[93.07324,13.43323],[93.07312,13.43298],[93.07304,13.43279],[93.07307,13.43248],[93.07333,13.43208],[93.07365,13.43195],[93.0741,13.43213]]],[[[93.07756,13.43318],[93.07769,13.43333],[93.07777,13.43359],[93.07735,13.43375],[93.07695,13.43379],[93.07616,13.43385],[93.07585,13.43375],[93.07575,13.43331],[93.07604,13.43313],[93.07601,13.43307],[93.07605,13.4329],[93.07615,13.43283],[93.07621,13.43269],[93.07604,13.43254],[93.07611,13.43218],[93.07649,13.43196],[93.07703,13.43215],[93.07729,13.43236],[93.07749,13.43269],[93.07732,13.43286],[93.0772,13.43286],[93.0773,13.43309],[93.07738,13.43308],[93.07756,13.43318]]],[[[93.08684,13.43107],[93.08704,13.43128],[93.08738,13.43174],[93.08755,13.4321],[93.08755,13.4325],[93.08752,13.43278],[93.08742,13.43292],[93.08715,13.43311],[93.0869,13.433],[93.08667,13.43269],[93.08659,13.43237],[93.08671,13.43165],[93.08654,13.43144],[93.08652,13.43117],[93.08666,13.43107],[93.08684,13.43107]]],[[[92.86945,13.45359],[92.86962,13.45362],[92.86974,13.45375],[92.86981,13.45389],[92.86984,13.45406],[92.8698,13.45417],[92.86975,13.45422],[92.86956,13.45418],[92.86942,13.45403],[92.86931,13.45382],[92.86932,13.45372],[92.8694,13.4536],[92.86945,13.45359]]],[[[93.09726,13.43879],[93.09664,13.43841],[93.09651,13.43824],[93.09574,13.43808],[93.09563,13.43788],[93.09548,13.43779],[93.09546,13.4376],[93.09488,13.43745],[93.09468,13.43723],[93.09459,13.43694],[93.09433,13.43689],[93.09431,13.4365],[93.09469,13.4364],[93.09474,13.43616],[93.09491,13.43608],[93.09481,13.43583],[93.09459,13.43581],[93.09442,13.43562],[93.09418,13.43555],[93.09419,13.43463],[93.09428,13.43425],[93.09445,13.43394],[93.09479,13.4341],[93.09482,13.43422],[93.09495,13.43394],[93.0954,13.4336],[93.09563,13.43332],[93.0958,13.43292],[93.09579,13.43141],[93.09598,13.43115],[93.09635,13.43109],[93.09732,13.4305],[93.09815,13.43027],[93.09971,13.43003],[93.10039,13.42968],[93.10109,13.42959],[93.10126,13.42915],[93.10161,13.42896],[93.1024,13.42893],[93.10268,13.42914],[93.10312,13.42894],[93.10357,13.42888],[93.10442,13.42911],[93.1048,13.4295],[93.10477,13.42985],[93.10507,13.43017],[93.10485,13.43033],[93.10484,13.43046],[93.10505,13.43065],[93.10508,13.43082],[93.10484,13.4311],[93.10475,13.43142],[93.10457,13.43167],[93.10462,13.43217],[93.1045,13.43294],[93.10423,13.43304],[93.10416,13.43374],[93.10421,13.4345],[93.10447,13.4345],[93.10456,13.43472],[93.10426,13.43525],[93.10433,13.43565],[93.10419,13.43575],[93.10307,13.43578],[93.10301,13.43591],[93.10238,13.43591],[93.10183,13.43611],[93.10054,13.43638],[93.10017,13.43624],[93.09992,13.43604],[93.09944,13.4359],[93.0984,13.43596],[93.09802,13.43619],[93.09787,13.4364],[93.09805,13.43654],[93.0979,13.43667],[93.09814,13.43678],[93.09795,13.43743],[93.0981,13.43751],[93.09816,13.43855],[93.09783,13.43857],[93.09768,13.43873],[93.09745,13.43865],[93.09726,13.43879]]],[[[92.8633,13.46079],[92.86375,13.46087],[92.86413,13.46087],[92.86429,13.4609],[92.86449,13.46105],[92.86495,13.46155],[92.86517,13.46167],[92.86538,13.46166],[92.86558,13.4617],[92.86593,13.46186],[92.86647,13.46239],[92.86691,13.46266],[92.86721,13.46315],[92.86724,13.46332],[92.86703,13.46374],[92.8672,13.46407],[92.8672,13.4642],[92.86713,13.46428],[92.86695,13.46436],[92.8666,13.46431],[92.86619,13.46419],[92.86564,13.46412],[92.86536,13.46399],[92.86506,13.46393],[92.86464,13.46366],[92.86437,13.46341],[92.86416,13.46308],[92.8638,13.46269],[92.86338,13.46246],[92.86318,13.46222],[92.86315,13.46211],[92.86317,13.46198],[92.86325,13.46183],[92.86342,13.46167],[92.86342,13.46162],[92.86336,13.4615],[92.86308,13.46117],[92.86298,13.46099],[92.86307,13.46082],[92.86321,13.46078],[92.8633,13.46079]]],[[[92.87375,13.51355],[92.87343,13.51415],[92.873,13.51377],[92.8728,13.51338],[92.87206,13.51316],[92.87039,13.51425],[92.8693,13.51439],[92.86884,13.51434],[92.86735,13.51277],[92.86715,13.51195],[92.86609,13.51077],[92.86494,13.50782],[92.86462,13.50639],[92.86486,13.50555],[92.86474,13.50473],[92.86511,13.50313],[92.86574,13.5028],[92.86741,13.50235],[92.86907,13.50167],[92.87102,13.50159],[92.87251,13.50176],[92.87329,13.50339],[92.87332,13.50493],[92.8737,13.50523],[92.87385,13.50571],[92.87388,13.50704],[92.87367,13.50746],[92.87326,13.50785],[92.87291,13.50868],[92.87296,13.50889],[92.87288,13.50938],[92.87288,13.50958],[92.8732,13.50959],[92.87398,13.51105],[92.8736,13.51184],[92.87401,13.5124],[92.87403,13.51273],[92.87375,13.51355]]],[[[92.90599,13.52148],[92.90594,13.52153],[92.9059,13.52163],[92.9057,13.52156],[92.90561,13.52132],[92.90547,13.5213],[92.90544,13.52122],[92.90533,13.52114],[92.90535,13.52091],[92.90525,13.52102],[92.90523,13.52108],[92.90504,13.52106],[92.90498,13.52088],[92.90488,13.52064],[92.90502,13.5204],[92.90518,13.52045],[92.90505,13.52025],[92.90511,13.51997],[92.90548,13.52006],[92.90552,13.52023],[92.90559,13.52001],[92.90579,13.5199],[92.90598,13.52005],[92.90638,13.52006],[92.90666,13.5203],[92.90659,13.52056],[92.90646,13.52063],[92.90657,13.52087],[92.9065,13.52092],[92.90645,13.52099],[92.9065,13.52112],[92.90639,13.5212],[92.90647,13.52129],[92.90654,13.52131],[92.90649,13.52145],[92.90628,13.52148],[92.90624,13.52141],[92.90608,13.5214],[92.90599,13.52148]]],[[[92.98466,13.53003],[92.98455,13.52999],[92.98455,13.52994],[92.98451,13.52989],[92.98441,13.52993],[92.98411,13.52982],[92.98413,13.52975],[92.98411,13.52971],[92.98406,13.52969],[92.98409,13.52946],[92.98413,13.52935],[92.98418,13.52932],[92.98419,13.52927],[92.98417,13.52922],[92.98412,13.5292],[92.98413,13.52913],[92.98427,13.52899],[92.98426,13.52875],[92.98456,13.5284],[92.98492,13.52869],[92.98491,13.52895],[92.98498,13.5292],[92.98521,13.52937],[92.98503,13.52963],[92.9849,13.52974],[92.9848,13.52977],[92.98479,13.52982],[92.98481,13.52986],[92.98466,13.53003]]],[[[92.87498,13.54085],[92.87447,13.54091],[92.87417,13.54113],[92.87386,13.54125],[92.87372,13.54127],[92.87359,13.54119],[92.87364,13.54093],[92.87373,13.54071],[92.87375,13.54046],[92.8734,13.53967],[92.87328,13.53924],[92.87321,13.53887],[92.87327,13.5383],[92.87344,13.53735],[92.87353,13.53714],[92.87369,13.53703],[92.8742,13.53719],[92.87451,13.53722],[92.87471,13.53711],[92.87474,13.53697],[92.87464,13.53661],[92.87495,13.5364],[92.87494,13.53617],[92.87488,13.53603],[92.87515,13.53589],[92.87509,13.53549],[92.87541,13.53529],[92.8757,13.53528],[92.87622,13.53552],[92.87638,13.53582],[92.87678,13.53637],[92.87692,13.53674],[92.8768,13.53705],[92.87688,13.53714],[92.87735,13.53741],[92.87764,13.53782],[92.87772,13.53821],[92.87764,13.53857],[92.87739,13.53887],[92.87637,13.53972],[92.87664,13.53976],[92.87685,13.53989],[92.87692,13.54006],[92.87684,13.54027],[92.87656,13.54045],[92.87603,13.54063],[92.87525,13.54068],[92.87498,13.54085]]],[[[92.90853,13.53835],[92.90715,13.53818],[92.90694,13.53801],[92.90676,13.53761],[92.90645,13.53759],[92.90623,13.53737],[92.90532,13.53724],[92.90473,13.53724],[92.90412,13.53691],[92.90369,13.53585],[92.90306,13.53515],[92.90284,13.5345],[92.90283,13.53303],[92.90318,13.53248],[92.9028,13.53157],[92.90338,13.53087],[92.90376,13.53028],[92.90452,13.52939],[92.90575,13.52921],[92.9063,13.52928],[92.90704,13.53022],[92.90753,13.53061],[92.90815,13.53017],[92.90857,13.53029],[92.90865,13.53107],[92.9106,13.53267],[92.9112,13.53298],[92.91133,13.53326],[92.91159,13.53328],[92.91198,13.53385],[92.91212,13.53424],[92.91206,13.53535],[92.91219,13.53691],[92.91183,13.53748],[92.91071,13.53809],[92.91016,13.53803],[92.90997,13.5375],[92.90853,13.53835]]],[[[92.97883,13.53553],[92.97873,13.53573],[92.97862,13.53581],[92.97841,13.53622],[92.97849,13.53643],[92.97827,13.53664],[92.97805,13.53671],[92.97778,13.53664],[92.97766,13.53655],[92.97759,13.53645],[92.97762,13.53629],[92.9778,13.536],[92.9778,13.53572],[92.97793,13.53552],[92.97822,13.53555],[92.97836,13.53541],[92.97836,13.53535],[92.97864,13.53535],[92.97883,13.53553]]],[[[92.91479,13.54127],[92.91528,13.54131],[92.91577,13.54164],[92.91626,13.54204],[92.91645,13.54236],[92.91652,13.54283],[92.91631,13.54337],[92.91613,13.54369],[92.91542,13.54402],[92.91483,13.54417],[92.91439,13.5442],[92.91366,13.54388],[92.91325,13.5434],[92.91299,13.5428],[92.91303,13.54223],[92.91335,13.54161],[92.91378,13.54122],[92.91479,13.54127]]],[[[92.98639,13.53413],[92.9865,13.53507],[92.98643,13.53606],[92.98625,13.53654],[92.98562,13.53734],[92.98415,13.53801],[92.98315,13.53822],[92.98272,13.53818],[92.98249,13.53771],[92.98254,13.53723],[92.98226,13.53666],[92.98179,13.53604],[92.98206,13.53584],[92.98213,13.53558],[92.98201,13.53514],[92.98169,13.53513],[92.98139,13.53463],[92.98153,13.53422],[92.98198,13.53385],[92.98249,13.53364],[92.98288,13.53364],[92.98321,13.53348],[92.98265,13.53285],[92.98177,13.53252],[92.98057,13.53305],[92.97993,13.53389],[92.97947,13.53469],[92.97894,13.53496],[92.97852,13.53496],[92.97818,13.53457],[92.97829,13.53404],[92.97863,13.53313],[92.97911,13.53229],[92.97952,13.53197],[92.97962,13.53167],[92.97919,13.53164],[92.97887,13.5313],[92.97843,13.53115],[92.97839,13.53076],[92.97876,13.53036],[92.98022,13.53068],[92.98066,13.53056],[92.98239,13.5296],[92.98383,13.52895],[92.98394,13.5295],[92.98382,13.5298],[92.98419,13.53004],[92.98434,13.53029],[92.98471,13.53009],[92.98519,13.52972],[92.98543,13.52973],[92.98565,13.53026],[92.98616,13.53217],[92.98639,13.53413]]],[[[93.05723,13.5668],[93.05706,13.56688],[93.05681,13.56732],[93.05606,13.56725],[93.0558,13.56685],[93.05558,13.56695],[93.05534,13.56692],[93.05522,13.56698],[93.05475,13.5668],[93.05392,13.56673],[93.0527,13.56654],[93.05214,13.56638],[93.05117,13.56595],[93.05076,13.56547],[93.05056,13.5651],[93.05041,13.56399],[93.05053,13.56316],[93.05067,13.56271],[93.05109,13.56188],[93.05131,13.56164],[93.05188,13.56078],[93.05223,13.56002],[93.05223,13.55984],[93.05239,13.55977],[93.05288,13.55891],[93.05299,13.55891],[93.05332,13.55946],[93.05315,13.55966],[93.05314,13.55979],[93.05397,13.56084],[93.05519,13.56185],[93.05564,13.56213],[93.05591,13.56269],[93.05588,13.5633],[93.056,13.56363],[93.05588,13.56399],[93.05635,13.56544],[93.05643,13.56597],[93.05631,13.56623],[93.05607,13.56623],[93.05629,13.56631],[93.05657,13.56619],[93.05701,13.56628],[93.05723,13.5668]]],[[[93.00043,13.57251],[93.0,13.57268],[92.99974,13.57171],[92.99897,13.57093],[92.99847,13.57095],[92.99822,13.57068],[92.99824,13.57021],[92.99952,13.56894],[92.99977,13.56872],[93.0,13.56861],[93.0002,13.56864],[93.00027,13.5686],[93.0006,13.56865],[93.00082,13.56883],[93.00103,13.56911],[93.00107,13.56943],[93.00231,13.5707],[93.00233,13.57084],[93.00229,13.57111],[93.00187,13.57152],[93.00136,13.57179],[93.00118,13.57199],[93.00112,13.57224],[93.001,13.57233],[93.00081,13.57234],[93.00043,13.57251]]],[[[92.82853,13.21047],[92.82684,13.20796],[92.82373,13.20707],[92.82261,13.20451],[92.8191,13.20773],[92.81607,13.20446],[92.81495,13.20004],[92.81626,13.19715],[92.81813,13.20264],[92.82149,13.20299],[92.81957,13.20062],[92.8195,13.19688],[92.81778,13.1981],[92.81659,13.19585],[92.81773,13.194],[92.82018,13.19509],[92.82178,13.19309],[92.82084,13.18613],[92.81649,13.18541],[92.81604,13.18348],[92.81859,13.18185],[92.81913,13.18323],[92.82321,13.18287],[92.82212,13.18118],[92.82382,13.1794],[92.82492,13.1814],[92.8237,13.18283],[92.82646,13.18271],[92.82898,13.17845],[92.8346,13.17529],[92.8352,13.16574],[92.83909,13.16536],[92.83748,13.1622],[92.84279,13.16179],[92.84381,13.16313],[92.84451,13.16123],[92.84829,13.16293],[92.84918,13.16112],[92.84834,13.16278],[92.84441,13.16087],[92.84402,13.16289],[92.8433,13.16152],[92.83716,13.16199],[92.83839,13.1654],[92.83513,13.16487],[92.83399,13.17062],[92.82996,13.17145],[92.82636,13.17502],[92.82513,13.17109],[92.82779,13.16765],[92.82703,13.1634],[92.82448,13.16119],[92.81934,13.16213],[92.81803,13.16352],[92.82421,13.16196],[92.82647,13.16367],[92.82726,13.16731],[92.8233,13.17435],[92.8194,13.17237],[92.81416,13.17473],[92.81297,13.17262],[92.81502,13.1721],[92.81501,13.16974],[92.81094,13.16846],[92.81172,13.15799],[92.80793,13.15379],[92.8093,13.15187],[92.81633,13.14974],[92.81759,13.15013],[92.81704,13.15185],[92.82041,13.14506],[92.82656,13.1505],[92.83071,13.15103],[92.83262,13.14957],[92.8331,13.14425],[92.83811,13.14863],[92.83711,13.14531],[92.84191,13.14681],[92.84355,13.14174],[92.84538,13.14138],[92.84702,13.14321],[92.84657,13.14822],[92.84843,13.15022],[92.84681,13.14821],[92.84671,13.13856],[92.8419,13.13935],[92.83872,13.13484],[92.84337,13.13559],[92.84094,13.1257],[92.84335,13.12414],[92.84326,13.12202],[92.84631,13.12198],[92.84722,13.11815],[92.84634,13.1214],[92.84327,13.12171],[92.84065,13.12541],[92.84101,13.1279],[92.83945,13.12556],[92.83914,13.12717],[92.83399,13.13039],[92.83616,13.12426],[92.83371,13.1262],[92.83324,13.12336],[92.82967,13.12524],[92.83075,13.1277],[92.82893,13.13224],[92.82513,13.12856],[92.8257,13.1311],[92.82307,13.1348],[92.81857,13.13314],[92.81832,13.12793],[92.80848,13.12728],[92.81389,13.11773],[92.81408,13.11393],[92.8176,13.11366],[92.81804,13.11631],[92.81916,13.11518],[92.82361,13.11598],[92.8239,13.1137],[92.82936,13.10892],[92.82504,13.11265],[92.8214,13.11176],[92.8196,13.10627],[92.82129,13.10259],[92.8188,13.10253],[92.82184,13.09614],[92.82058,13.09121],[92.81904,13.09717],[92.81556,13.10026],[92.81378,13.09895],[92.81301,13.10306],[92.80558,13.10092],[92.80653,13.09243],[92.80466,13.08727],[92.80897,13.08353],[92.80629,13.08017],[92.81117,13.08101],[92.81051,13.07763],[92.81308,13.07607],[92.81351,13.07273],[92.81704,13.07597],[92.81864,13.0751],[92.81718,13.0756],[92.81412,13.07231],[92.81125,13.07676],[92.80825,13.07189],[92.80906,13.07591],[92.80453,13.07483],[92.80098,13.08146],[92.79765,13.08148],[92.79683,13.08272],[92.7987,13.08251],[92.80152,13.08566],[92.80082,13.09135],[92.79428,13.09053],[92.79284,13.09198],[92.79629,13.08133],[92.79539,13.07669],[92.79655,13.07608],[92.79518,13.07604],[92.79663,13.07511],[92.79676,13.06799],[92.79576,13.06415],[92.79339,13.06299],[92.79171,13.05335],[92.79923,13.04339],[92.79604,13.04718],[92.79241,13.04769],[92.79602,13.0389],[92.79166,13.03779],[92.79192,13.03292],[92.79458,13.03015],[92.78796,13.01955],[92.79183,13.01268],[92.79507,13.01282],[92.79742,13.01022],[92.80022,13.00986],[92.80167,13.01236],[92.80489,13.01264],[92.80411,13.00837],[92.80537,13.00639],[92.80772,13.00905],[92.81134,13.01008],[92.81431,13.00685],[92.81581,13.01208],[92.8174,13.01188],[92.81737,13.01557],[92.81479,13.01625],[92.81316,13.02161],[92.81135,13.02042],[92.81277,13.02185],[92.81505,13.01669],[92.81763,13.01593],[92.81818,13.01232],[92.82048,13.01215],[92.82308,13.01306],[92.82603,13.01767],[92.8292,13.01608],[92.83163,13.02045],[92.83391,13.02094],[92.83503,13.01905],[92.83502,13.02191],[92.83714,13.02307],[92.83537,13.02191],[92.83531,13.01874],[92.83401,13.02053],[92.83211,13.02009],[92.82929,13.01524],[92.82596,13.01675],[92.82281,13.0074],[92.82479,13.00359],[92.82962,13.00193],[92.82955,12.9995],[92.83311,13.00472],[92.83166,12.99856],[92.83585,12.99497],[92.83693,12.99715],[92.83799,12.99408],[92.8405,12.99438],[92.83985,12.9932],[92.84198,12.99138],[92.83964,12.99305],[92.84025,12.99427],[92.83772,12.99401],[92.8369,12.99684],[92.83563,12.99456],[92.83413,12.99687],[92.829,12.99924],[92.8283,13.00229],[92.82644,13.00263],[92.82606,12.99906],[92.82466,12.99848],[92.82618,13.00233],[92.82286,13.00651],[92.81959,13.00544],[92.81833,13.00065],[92.81547,12.99877],[92.80702,12.99901],[92.80763,12.99571],[92.80587,12.99496],[92.81079,12.99445],[92.81253,12.99176],[92.81663,12.99078],[92.81818,12.98595],[92.82168,12.98266],[92.8205,12.98027],[92.8217,12.98048],[92.82204,12.97711],[92.82148,12.98047],[92.81969,12.97912],[92.82145,12.98271],[92.81537,12.98708],[92.81158,12.98313],[92.81112,12.97251],[92.81077,12.98422],[92.80451,12.98336],[92.80215,12.98512],[92.79954,12.99188],[92.79411,12.98744],[92.79247,12.98017],[92.79715,12.97262],[92.79558,12.96763],[92.7969,12.96352],[92.79144,12.9695],[92.78998,12.96093],[92.79223,12.95733],[92.79057,12.95355],[92.79104,12.95184],[92.79535,12.94956],[92.80096,12.95217],[92.79837,12.9506],[92.79989,12.94866],[92.79909,12.94701],[92.80034,12.94729],[92.7978,12.94321],[92.8023,12.93841],[92.8003,12.93813],[92.79951,12.93421],[92.79821,12.93886],[92.79802,12.93638],[92.79229,12.93101],[92.79228,12.9281],[92.79441,12.9259],[92.79315,12.92354],[92.79501,12.91885],[92.79395,12.91389],[92.79725,12.91114],[92.80212,12.89885],[92.80438,12.90012],[92.80428,12.90635],[92.80609,12.90795],[92.80838,12.90616],[92.80975,12.90919],[92.80817,12.90589],[92.80605,12.90758],[92.80466,12.90627],[92.80457,12.90042],[92.82385,12.89696],[92.82651,12.893],[92.82775,12.89375],[92.82708,12.89823],[92.82864,12.89936],[92.82736,12.89816],[92.82793,12.89368],[92.82647,12.89258],[92.82878,12.88684],[92.83837,12.89276],[92.8426,12.89219],[92.84354,12.88761],[92.84132,12.8822],[92.84121,12.877],[92.87272,12.88352],[92.86946,12.88689],[92.86861,12.89046],[92.87032,12.89647],[92.87504,12.9019],[92.87494,12.90817],[92.87037,12.90969],[92.8642,12.90284],[92.8604,12.90311],[92.85859,12.90532],[92.8577,12.91331],[92.84968,12.91097],[92.84477,12.91263],[92.84978,12.91118],[92.85884,12.91789],[92.85595,12.92635],[92.85576,12.93368],[92.85233,12.93407],[92.84916,12.93195],[92.85037,12.93017],[92.8461,12.92951],[92.84448,12.9303],[92.84523,12.93199],[92.84436,12.93125],[92.84261,12.93341],[92.84537,12.93219],[92.84568,12.92982],[92.8504,12.93047],[92.84881,12.93183],[92.8503,12.93284],[92.84793,12.93466],[92.84912,12.93934],[92.84809,12.93489],[92.84997,12.93326],[92.8561,12.93519],[92.85224,12.94367],[92.85013,12.94452],[92.84878,12.94246],[92.84548,12.94404],[92.84917,12.94304],[92.8492,12.95055],[92.84742,12.95141],[92.84807,12.94743],[92.84233,12.94615],[92.84293,12.94288],[92.84001,12.94991],[92.84118,12.94787],[92.84484,12.94894],[92.84503,12.95348],[92.84418,12.95189],[92.84186,12.9527],[92.84409,12.95443],[92.8434,12.95679],[92.84439,12.95435],[92.84214,12.95255],[92.84386,12.95225],[92.84484,12.95382],[92.84597,12.95111],[92.84501,12.94854],[92.84235,12.94845],[92.84203,12.94714],[92.84797,12.94815],[92.84702,12.95173],[92.84821,12.95417],[92.85055,12.95469],[92.84735,12.95547],[92.85032,12.95791],[92.84808,12.95984],[92.85128,12.96102],[92.84853,12.95987],[92.85057,12.95774],[92.84778,12.95573],[92.85421,12.95472],[92.84841,12.9537],[92.84995,12.95038],[92.84942,12.94557],[92.85391,12.94357],[92.85517,12.94459],[92.85412,12.94739],[92.85533,12.94456],[92.85366,12.94019],[92.85803,12.93512],[92.87045,12.9353],[92.87619,12.94485],[92.87263,12.94919],[92.87253,12.95377],[92.87651,12.95996],[92.87327,12.964],[92.88029,12.9685],[92.87771,12.97346],[92.87961,12.97386],[92.8821,12.97804],[92.8821,12.98085],[92.88029,12.98005],[92.8802,12.98169],[92.88606,12.98597],[92.88656,12.9913],[92.88443,12.993],[92.88618,12.99889],[92.88308,13.00042],[92.88301,13.00225],[92.88487,13.00331],[92.88301,13.00544],[92.88501,13.00339],[92.88327,13.00055],[92.88645,12.99893],[92.88538,12.99409],[92.8884,12.99688],[92.89028,12.99673],[92.88773,13.00003],[92.88605,13.00728],[92.8906,12.99702],[92.885,12.99288],[92.88765,12.99131],[92.8862,12.98246],[92.89028,12.98932],[92.89621,12.99531],[92.89859,12.99386],[92.8956,12.98595],[92.89949,12.9845],[92.90139,12.98594],[92.90613,12.98357],[92.9046,12.97986],[92.90726,12.97774],[92.90493,12.97681],[92.90403,12.97386],[92.90534,12.96617],[92.90899,12.96287],[92.90701,12.96057],[92.90675,12.95401],[92.90769,12.94901],[92.91046,12.94531],[92.91404,12.94802],[92.91388,12.95035],[92.91261,12.94683],[92.91054,12.94662],[92.9123,12.94736],[92.91546,12.95459],[92.91485,12.9504],[92.91626,12.95485],[92.9198,12.95806],[92.92733,12.95674],[92.93176,12.96309],[92.93072,12.96562],[92.92993,12.96236],[92.92844,12.96659],[92.9331,12.96672],[92.93249,12.96517],[92.9347,12.96451],[92.93924,12.96828],[92.93863,12.97237],[92.93728,12.96838],[92.93419,12.96617],[92.93731,12.97023],[92.93624,12.97369],[92.93784,12.97417],[92.93862,12.97901],[92.93648,12.98286],[92.93128,12.98259],[92.9308,12.98432],[92.93322,12.98559],[92.93303,12.99129],[92.93142,12.99076],[92.93305,12.98941],[92.92789,12.99094],[92.91839,12.98728],[92.91687,12.98953],[92.91783,12.99117],[92.91474,12.99366],[92.91516,12.99886],[92.91281,13.00483],[92.91057,13.00575],[92.90142,13.00201],[92.901,13.00625],[92.89719,13.00797],[92.89919,13.00946],[92.89658,13.00925],[92.89631,13.01087],[92.89427,13.01111],[92.89981,13.00968],[92.89775,13.00806],[92.9015,13.00637],[92.90159,13.00244],[92.90243,13.00759],[92.90416,13.0067],[92.90457,13.00347],[92.91047,13.00752],[92.90606,13.015],[92.90093,13.01392],[92.90599,13.01647],[92.90444,13.02135],[92.90173,13.02188],[92.89534,13.01808],[92.89635,13.02008],[92.89855,13.01988],[92.9022,13.02274],[92.90825,13.0194],[92.91481,13.0325],[92.92111,13.03969],[92.92124,13.04426],[92.9153,13.05492],[92.91229,13.05668],[92.8971,13.05815],[92.88966,13.05068],[92.88914,13.04703],[92.88651,13.0439],[92.88144,13.04837],[92.87472,13.04837],[92.87518,13.04532],[92.87348,13.04639],[92.87258,13.04352],[92.87335,13.04677],[92.87501,13.04547],[92.87408,13.04851],[92.8792,13.0489],[92.876,13.05364],[92.87006,13.0548],[92.86679,13.05253],[92.86994,13.05132],[92.86829,13.04931],[92.8693,13.04691],[92.86356,13.04365],[92.86895,13.04697],[92.8678,13.04932],[92.86962,13.05109],[92.86634,13.0525],[92.87111,13.05556],[92.8636,13.05901],[92.86303,13.06143],[92.8655,13.06444],[92.86028,13.0656],[92.85459,13.06296],[92.84993,13.06333],[92.84887,13.05923],[92.85082,13.05521],[92.84592,13.0548],[92.84359,13.05089],[92.84555,13.05444],[92.84339,13.0573],[92.84436,13.06044],[92.84167,13.06001],[92.84434,13.06095],[92.84447,13.05626],[92.84944,13.05485],[92.84839,13.0595],[92.84959,13.06387],[92.85481,13.06364],[92.85961,13.06642],[92.85773,13.07052],[92.84793,13.0733],[92.84629,13.07514],[92.84826,13.07686],[92.84656,13.07502],[92.8478,13.07369],[92.85805,13.07136],[92.85867,13.07502],[92.85363,13.07772],[92.85803,13.0799],[92.8541,13.07765],[92.85899,13.0752],[92.85863,13.07044],[92.86041,13.06663],[92.86654,13.06455],[92.86416,13.05968],[92.87605,13.05497],[92.88578,13.04536],[92.88909,13.05217],[92.89506,13.05866],[92.91011,13.06132],[92.91214,13.06679],[92.91177,13.07112],[92.90842,13.07661],[92.89983,13.08129],[92.89831,13.09345],[92.88557,13.0923],[92.88572,13.09585],[92.89123,13.10116],[92.88897,13.1071],[92.88681,13.10791],[92.88396,13.10625],[92.88171,13.10777],[92.88088,13.10489],[92.87688,13.10207],[92.8732,13.10346],[92.87667,13.10239],[92.87668,13.10371],[92.88032,13.10519],[92.88149,13.1084],[92.88388,13.10664],[92.88876,13.10793],[92.88847,13.11392],[92.88213,13.12312],[92.88303,13.12802],[92.87822,13.13147],[92.87635,13.135],[92.87809,13.13798],[92.87455,13.13642],[92.87322,13.13745],[92.87583,13.13763],[92.87342,13.14012],[92.87668,13.14189],[92.87299,13.14908],[92.87577,13.1483],[92.87717,13.14991],[92.8758,13.14759],[92.87325,13.14866],[92.87737,13.14118],[92.87392,13.13953],[92.87834,13.13849],[92.87693,13.13509],[92.88386,13.12807],[92.8829,13.1232],[92.88751,13.11794],[92.89229,13.10331],[92.89242,13.10076],[92.88812,13.09676],[92.88711,13.09334],[92.89245,13.09593],[92.89886,13.09551],[92.90054,13.09222],[92.90087,13.08187],[92.90401,13.07947],[92.90817,13.07948],[92.91009,13.08145],[92.91223,13.07998],[92.91016,13.08108],[92.90853,13.07924],[92.91356,13.07465],[92.91283,13.07156],[92.91713,13.06571],[92.91958,13.05623],[92.92259,13.05349],[92.92708,13.05574],[92.92459,13.06484],[92.92852,13.06846],[92.92848,13.07241],[92.92897,13.06843],[92.9251,13.06428],[92.9274,13.05596],[92.93315,13.05807],[92.93455,13.0606],[92.93579,13.07735],[92.93377,13.08923],[92.93621,13.09207],[92.9356,13.09357],[92.93849,13.09199],[92.93964,13.09387],[92.93817,13.1064],[92.93685,13.10828],[92.93768,13.10519],[92.93589,13.10458],[92.93359,13.10929],[92.93627,13.10481],[92.93717,13.10832],[92.93921,13.10415],[92.94183,13.11117],[92.94212,13.11779],[92.94365,13.12228],[92.9457,13.12372],[92.94131,13.13215],[92.94166,13.13375],[92.94405,13.134],[92.93927,13.13998],[92.94008,13.14109],[92.94292,13.13989],[92.94185,13.14247],[92.94048,13.14214],[92.93997,13.14559],[92.94122,13.14552],[92.9408,13.14254],[92.94329,13.13975],[92.93975,13.14013],[92.94445,13.13391],[92.94164,13.13224],[92.94614,13.12351],[92.9426,13.11738],[92.94084,13.10519],[92.94318,13.10446],[92.94167,13.10209],[92.94398,13.10355],[92.94185,13.10181],[92.94278,13.10436],[92.94039,13.10406],[92.94077,13.09459],[92.93935,13.08867],[92.94559,13.08966],[92.93989,13.08808],[92.93895,13.09106],[92.9349,13.08928],[92.93665,13.08391],[92.93883,13.08264],[92.93669,13.08364],[92.93792,13.07791],[92.94159,13.07898],[92.93813,13.07726],[92.93729,13.06545],[92.9399,13.06324],[92.94612,13.06707],[92.94647,13.06931],[92.94955,13.06769],[92.9504,13.07005],[92.95598,13.07282],[92.95398,13.07254],[92.9529,13.07019],[92.95601,13.06916],[92.95673,13.06564],[92.95577,13.06434],[92.95581,13.0689],[92.95257,13.06999],[92.95075,13.0699],[92.94987,13.06744],[92.94663,13.06882],[92.94656,13.06661],[92.9386,13.06072],[92.93814,13.05886],[92.93928,13.05656],[92.94344,13.05467],[92.94522,13.05579],[92.94429,13.05451],[92.94541,13.05298],[92.94847,13.0515],[92.94753,13.05055],[92.94817,13.05182],[92.94302,13.05407],[92.9356,13.05283],[92.93314,13.04805],[92.9332,13.04224],[92.93474,13.03787],[92.93905,13.03388],[92.94962,13.02834],[92.95295,13.01873],[92.95964,13.01423],[92.96367,13.01496],[92.9707,13.01147],[92.97415,13.01308],[92.97443,13.01592],[92.96866,13.01814],[92.9694,13.02171],[92.96592,13.0275],[92.96731,13.02993],[92.96989,13.0281],[92.97924,13.02638],[92.98196,13.02425],[92.9866,13.02543],[92.99862,13.02418],[92.99794,13.02602],[92.99165,13.02761],[92.99123,13.03144],[92.99394,13.03481],[92.99383,13.0314],[93.0,13.03151],[93.00098,13.02813],[93.00344,13.02816],[93.0091,13.03514],[93.01089,13.04],[93.00979,13.04269],[93.01371,13.04402],[93.01293,13.04871],[93.01994,13.04955],[93.02319,13.05783],[93.02989,13.0672],[93.02574,13.07418],[93.02931,13.08055],[93.03258,13.0801],[93.03433,13.08142],[93.03529,13.08982],[93.03351,13.09264],[93.03462,13.09897],[93.03276,13.10262],[93.03159,13.11447],[93.03323,13.12176],[93.03016,13.12736],[93.03696,13.14055],[93.03355,13.16294],[93.03703,13.17158],[93.03175,13.17858],[93.03516,13.18692],[93.03613,13.19501],[93.04546,13.21057],[93.04234,13.22215],[93.04377,13.2227],[93.04553,13.21895],[93.04723,13.22421],[93.05336,13.22601],[93.05416,13.23077],[93.05683,13.23291],[93.05588,13.24165],[93.05793,13.24936],[93.05582,13.25527],[93.06022,13.26304],[93.06352,13.26324],[93.0658,13.27378],[93.04719,13.26129],[93.04402,13.25835],[93.04371,13.25427],[93.04364,13.25813],[93.04664,13.2606],[93.04441,13.26293],[93.04585,13.26501],[93.04237,13.26589],[93.03974,13.26977],[93.04663,13.27865],[93.04572,13.28275],[93.04205,13.27978],[93.03885,13.28146],[93.03608,13.27868],[93.03313,13.2797],[93.03355,13.27761],[93.02535,13.28257],[93.01835,13.27795],[93.016,13.27888],[93.01353,13.27651],[93.01109,13.27682],[93.00941,13.28184],[93.01614,13.28959],[93.01544,13.29209],[93.01155,13.29402],[93.01202,13.29559],[93.01763,13.29365],[93.02103,13.29487],[93.02101,13.29677],[93.02001,13.29831],[93.01754,13.29645],[93.01669,13.29823],[93.014,13.29791],[93.0096,13.30061],[93.00548,13.29656],[93.0075,13.29193],[93.00513,13.29719],[93.01023,13.30226],[93.00253,13.30391],[93.00068,13.30219],[93.00084,13.29873],[92.99789,13.30023],[92.99504,13.29712],[92.99336,13.2994],[92.98636,13.29916],[92.9972,13.29019],[92.99972,13.28555],[92.99881,13.2822],[93.0,13.28085],[92.99792,13.28209],[92.99894,13.28495],[92.99505,13.28286],[92.9944,13.27977],[92.99459,13.28337],[92.99643,13.28313],[92.99872,13.28601],[92.99251,13.29211],[92.98657,13.29064],[92.99078,13.28816],[92.9886,13.28621],[92.99035,13.28841],[92.98636,13.28957],[92.98271,13.28583],[92.98347,13.28303],[92.98134,13.28295],[92.98106,13.28125],[92.97996,13.28077],[92.97802,13.28335],[92.97723,13.28177],[92.97386,13.28191],[92.9737,13.2836],[92.97677,13.28218],[92.97836,13.28381],[92.98063,13.28153],[92.98115,13.28341],[92.98316,13.28329],[92.98167,13.28829],[92.98429,13.28721],[92.98616,13.2915],[92.99055,13.29191],[92.9827,13.29923],[92.98681,13.30114],[92.99367,13.30137],[92.99697,13.31489],[92.99089,13.31568],[92.98916,13.3175],[92.98836,13.31637],[92.99111,13.31389],[92.98864,13.31146],[92.99227,13.30991],[92.98876,13.31087],[92.98819,13.31219],[92.99073,13.31448],[92.98805,13.31583],[92.9875,13.31812],[92.98474,13.31787],[92.98476,13.32064],[92.98013,13.32153],[92.97727,13.32479],[92.96921,13.32423],[92.96461,13.32834],[92.95933,13.32789],[92.95901,13.32544],[92.96179,13.32332],[92.9607,13.32031],[92.95827,13.32248],[92.95263,13.31955],[92.94939,13.32084],[92.94843,13.31738],[92.94947,13.32119],[92.95264,13.32007],[92.96118,13.32308],[92.95754,13.3265],[92.95558,13.32531],[92.95191,13.32694],[92.95569,13.32577],[92.95932,13.32908],[92.95789,13.3304],[92.95978,13.3314],[92.95517,13.33691],[92.95559,13.3394],[92.95816,13.33905],[92.95537,13.3438],[92.94996,13.34482],[92.94959,13.34151],[92.94928,13.34474],[92.95064,13.34528],[92.94947,13.3491],[92.9454,13.35102],[92.94936,13.35006],[92.95082,13.34586],[92.95462,13.34428],[92.96002,13.34666],[92.95891,13.3486],[92.96104,13.3483],[92.96211,13.35482],[92.95743,13.36022],[92.95382,13.35863],[92.95387,13.36057],[92.95082,13.36153],[92.95429,13.3609],[92.95404,13.35909],[92.9575,13.36069],[92.96098,13.35677],[92.9653,13.36008],[92.97304,13.35934],[92.96925,13.35891],[92.9679,13.35701],[92.9702,13.35294],[92.96905,13.35017],[92.97095,13.34682],[92.9758,13.35132],[92.97495,13.34264],[92.97791,13.33976],[92.97998,13.33205],[92.98416,13.32802],[92.98807,13.32963],[92.98716,13.33391],[92.98858,13.34164],[92.99919,13.35049],[93.00021,13.34922],[93.00454,13.3522],[93.01075,13.35265],[93.01527,13.34868],[93.01879,13.34943],[93.02379,13.34774],[93.026,13.34437],[93.02883,13.34586],[93.03144,13.3439],[93.03401,13.34916],[93.04116,13.35154],[93.04112,13.3552],[93.03634,13.36017],[93.03153,13.35996],[93.03113,13.35856],[93.02887,13.3604],[93.02712,13.35807],[93.02438,13.35759],[93.02903,13.36083],[93.03296,13.3606],[93.03573,13.36544],[93.04005,13.36823],[93.0363,13.36982],[93.03433,13.3744],[93.02433,13.37212],[93.01683,13.37512],[93.01438,13.37128],[93.01736,13.36994],[93.01413,13.37074],[93.01641,13.37535],[93.00885,13.37935],[93.00824,13.38329],[93.0039,13.38614],[93.00318,13.3896],[92.99688,13.38466],[93.00014,13.38343],[93.00014,13.38188],[92.99383,13.37984],[92.99491,13.37634],[92.99226,13.38029],[92.99237,13.37832],[92.98873,13.37678],[92.98875,13.37889],[92.98311,13.37729],[92.97963,13.37992],[92.98529,13.37776],[92.98679,13.37858],[92.9859,13.38001],[92.98907,13.3791],[92.98875,13.37732],[92.99192,13.37871],[92.99114,13.38087],[92.99992,13.38224],[92.99678,13.38376],[92.99641,13.38757],[92.99715,13.38558],[92.99966,13.38667],[93.00373,13.39163],[93.00027,13.39266],[92.99921,13.39595],[93.00047,13.39289],[93.00365,13.39239],[93.00383,13.38729],[93.00875,13.38356],[93.00992,13.37912],[93.01288,13.3773],[93.02497,13.37322],[93.02471,13.37489],[93.02626,13.37396],[93.02751,13.37652],[93.02671,13.37362],[93.03289,13.37589],[93.03788,13.37541],[93.0367,13.37768],[93.03848,13.3796],[93.03579,13.37878],[93.03606,13.38142],[93.03411,13.38146],[93.03548,13.38189],[93.03618,13.37904],[93.03884,13.37983],[93.03712,13.37731],[93.0399,13.37524],[93.04353,13.37763],[93.04136,13.38025],[93.04192,13.38196],[93.04189,13.37999],[93.04704,13.37461],[93.04803,13.37874],[93.04568,13.37724],[93.0495,13.38112],[93.05112,13.3898],[93.05352,13.38941],[93.05553,13.39206],[93.05975,13.39122],[93.06039,13.39284],[93.06361,13.39024],[93.06337,13.39224],[93.06518,13.39141],[93.06419,13.39431],[93.0685,13.39663],[93.06946,13.40785],[93.06479,13.40631],[93.06139,13.40199],[93.06004,13.40268],[93.05956,13.39844],[93.0584,13.39902],[93.06192,13.41795],[93.06106,13.42147],[93.05776,13.42024],[93.05458,13.41214],[93.04633,13.40456],[93.04445,13.40612],[93.04525,13.40945],[93.04148,13.41443],[93.04041,13.41356],[93.03949,13.41587],[93.03606,13.41704],[93.03612,13.42075],[93.03918,13.4237],[93.03904,13.42791],[93.03259,13.42521],[93.03018,13.4283],[93.01525,13.43194],[93.01303,13.43067],[93.01442,13.43237],[93.01312,13.43394],[93.00798,13.4332],[93.00527,13.43152],[93.00751,13.42669],[93.01319,13.42519],[93.0134,13.42219],[93.01031,13.42233],[93.01033,13.42054],[93.00751,13.41821],[93.0099,13.4227],[93.0123,13.42272],[93.013,13.42486],[93.00768,13.42523],[93.00544,13.43095],[93.00056,13.43247],[93.00006,13.43582],[92.99241,13.4327],[92.99039,13.42712],[92.98909,13.42741],[92.99024,13.42818],[92.98882,13.43046],[92.99088,13.42986],[92.99168,13.43204],[92.99022,13.43584],[92.99212,13.43737],[92.99079,13.43808],[92.99274,13.4374],[92.991,13.43574],[92.99155,13.43409],[92.9938,13.43349],[92.99702,13.43559],[92.99652,13.44106],[92.99735,13.43639],[93.00071,13.43615],[93.00177,13.4326],[93.00525,13.43236],[93.01186,13.43512],[93.0154,13.43379],[93.01637,13.43538],[93.01327,13.43843],[93.00787,13.43765],[93.01271,13.43888],[93.01286,13.44373],[93.01277,13.44043],[93.01661,13.43618],[93.01654,13.43215],[93.01844,13.43164],[93.02598,13.43406],[93.03152,13.4326],[93.03426,13.43579],[93.0329,13.43793],[93.0352,13.43752],[93.0366,13.44129],[93.034,13.44225],[93.03351,13.44454],[93.03637,13.44447],[93.03647,13.44757],[93.03561,13.44866],[93.03352,13.4447],[93.035,13.44904],[93.03346,13.45122],[93.03465,13.45232],[93.0299,13.46108],[93.02746,13.46184],[93.02564,13.46064],[93.017,13.46326],[93.01447,13.4546],[93.01156,13.45329],[93.01045,13.45678],[93.01144,13.45881],[93.00781,13.45906],[93.00872,13.46149],[93.00562,13.46179],[93.00511,13.46328],[93.00946,13.4613],[93.00806,13.45937],[93.01202,13.45881],[93.0108,13.45691],[93.01192,13.45361],[93.0144,13.45532],[93.01862,13.4663],[93.02288,13.46808],[93.03099,13.4646],[93.03372,13.46586],[93.035,13.47203],[93.03383,13.47468],[93.03781,13.48028],[93.03398,13.48481],[93.03624,13.48408],[93.03916,13.48634],[93.04057,13.4923],[93.03969,13.49771],[93.04317,13.50491],[93.04232,13.51016],[93.04352,13.51473],[93.04214,13.51905],[93.04447,13.5254],[93.04421,13.52971],[93.04085,13.53532],[93.04053,13.54212],[93.02733,13.5794],[93.02518,13.57978],[93.01423,13.57223],[93.01383,13.56901],[93.01644,13.56873],[93.01633,13.5675],[93.01388,13.56634],[93.01352,13.56839],[93.01185,13.5667],[93.0118,13.56065],[93.01323,13.55965],[93.01052,13.54866],[93.00696,13.55499],[93.00832,13.55913],[93.00368,13.56626],[92.99716,13.56783],[92.98924,13.57507],[92.98585,13.5738],[92.98209,13.56944],[92.98225,13.56545],[92.98545,13.5666],[92.98231,13.56146],[92.98367,13.55673],[92.97918,13.55518],[92.97886,13.54975],[92.98297,13.54468],[92.98299,13.53958],[92.98503,13.53978],[92.98727,13.53707],[92.99033,13.53735],[92.98957,13.53885],[92.99103,13.53906],[92.9898,13.5387],[92.99051,13.53711],[92.98733,13.53642],[92.98576,13.52894],[92.98827,13.52815],[92.987,13.52354],[92.99102,13.52325],[92.99474,13.52015],[92.99549,13.5248],[93.0,13.52391],[92.99576,13.52442],[92.99541,13.5199],[92.99273,13.52156],[92.99057,13.51788],[92.989,13.51913],[92.98785,13.51775],[92.98884,13.5195],[92.99071,13.51838],[92.99201,13.52202],[92.98621,13.52302],[92.98703,13.52769],[92.97964,13.52698],[92.98066,13.52994],[92.9782,13.52923],[92.97154,13.54401],[92.96521,13.54998],[92.96307,13.54924],[92.96335,13.54704],[92.95855,13.54286],[92.95599,13.54547],[92.94972,13.54471],[92.94771,13.54278],[92.94771,13.53926],[92.94557,13.53778],[92.94124,13.53778],[92.93567,13.54176],[92.92433,13.53991],[92.92247,13.53775],[92.92046,13.5393],[92.91808,13.53867],[92.91355,13.5351],[92.91138,13.52742],[92.91444,13.52043],[92.91694,13.52105],[92.91771,13.52322],[92.92101,13.52097],[92.91909,13.52366],[92.92425,13.52113],[92.93026,13.52407],[92.93082,13.52587],[92.92996,13.52334],[92.93265,13.52078],[92.93803,13.53159],[92.93732,13.5264],[92.93945,13.52507],[92.94179,13.52618],[92.94078,13.52309],[92.94361,13.5234],[92.94408,13.52001],[92.94517,13.52008],[92.94387,13.51976],[92.94325,13.52316],[92.94046,13.522],[92.94133,13.52584],[92.93943,13.52467],[92.93612,13.52718],[92.93291,13.52025],[92.92867,13.52334],[92.92615,13.52162],[92.92716,13.51468],[92.92151,13.51351],[92.91952,13.51658],[92.91739,13.51709],[92.91326,13.51236],[92.91241,13.50839],[92.9144,13.50619],[92.91862,13.50995],[92.92225,13.50937],[92.92412,13.50503],[92.92399,13.5015],[92.92272,13.50136],[92.92722,13.49931],[92.92972,13.49602],[92.9348,13.50002],[92.9304,13.4952],[92.92748,13.4977],[92.9294,13.49137],[92.92674,13.48254],[92.92818,13.48148],[92.9318,13.48238],[92.93282,13.48102],[92.92762,13.47513],[92.92828,13.47406],[92.93106,13.47489],[92.93222,13.47186],[92.93006,13.47117],[92.92634,13.47325],[92.92211,13.47146],[92.92275,13.46716],[92.91957,13.46832],[92.92133,13.46344],[92.91891,13.45999],[92.91902,13.45663],[92.92074,13.45746],[92.92037,13.45502],[92.92028,13.45735],[92.91837,13.4565],[92.9185,13.46111],[92.92016,13.46281],[92.91557,13.46347],[92.92079,13.46305],[92.9187,13.46788],[92.92254,13.4682],[92.92106,13.47235],[92.92711,13.47402],[92.92698,13.47612],[92.93182,13.48074],[92.92469,13.48079],[92.92832,13.49154],[92.9249,13.49892],[92.91575,13.50068],[92.91234,13.49842],[92.9044,13.4983],[92.90186,13.49629],[92.90064,13.49344],[92.90311,13.49112],[92.90127,13.4873],[92.90219,13.48498],[92.89795,13.47715],[92.89325,13.47746],[92.89436,13.47263],[92.89726,13.4711],[92.89531,13.46962],[92.89866,13.46739],[92.89822,13.46515],[92.8984,13.46722],[92.8949,13.46989],[92.8964,13.47141],[92.89553,13.47216],[92.89103,13.46911],[92.88787,13.46903],[92.89108,13.46961],[92.89404,13.4724],[92.89312,13.47675],[92.89106,13.47852],[92.8862,13.47928],[92.87537,13.47645],[92.875,13.47207],[92.87371,13.47155],[92.86887,13.474],[92.87026,13.46956],[92.86952,13.46299],[92.87422,13.45964],[92.87099,13.4579],[92.87308,13.45624],[92.87092,13.45412],[92.87083,13.44513],[92.87738,13.44237],[92.87836,13.44335],[92.88024,13.43956],[92.87919,13.43575],[92.884,13.43151],[92.88715,13.43276],[92.88971,13.42788],[92.88984,13.42372],[92.89293,13.42575],[92.89779,13.42606],[92.89748,13.42783],[92.89899,13.42876],[92.89858,13.42616],[92.89001,13.42306],[92.88668,13.43197],[92.88313,13.43125],[92.87868,13.4357],[92.87321,13.43636],[92.87147,13.43333],[92.87745,13.43374],[92.87744,13.4315],[92.88113,13.43087],[92.8799,13.42885],[92.87333,13.42731],[92.87245,13.42483],[92.86828,13.42467],[92.86687,13.42226],[92.8679,13.41607],[92.87216,13.41472],[92.87362,13.41223],[92.8745,13.40207],[92.87964,13.39727],[92.8829,13.39622],[92.88577,13.39974],[92.88212,13.40427],[92.88446,13.407],[92.88675,13.40584],[92.88658,13.40171],[92.89219,13.40297],[92.89602,13.40126],[92.89185,13.40437],[92.89359,13.40797],[92.89578,13.40835],[92.89476,13.40974],[92.89679,13.41261],[92.89517,13.40966],[92.8963,13.40817],[92.8938,13.40743],[92.89226,13.40404],[92.8954,13.40312],[92.89679,13.40096],[92.89722,13.40317],[92.89943,13.4028],[92.89716,13.40276],[92.89804,13.40161],[92.89661,13.39929],[92.8932,13.39674],[92.88984,13.39979],[92.88788,13.39956],[92.88691,13.39793],[92.88897,13.39485],[92.89313,13.39593],[92.89526,13.39215],[92.89901,13.39111],[92.89873,13.38914],[92.90325,13.39072],[92.90396,13.39434],[92.90289,13.38764],[92.90725,13.38267],[92.91034,13.38482],[92.91191,13.38287],[92.91497,13.38254],[92.9214,13.39021],[92.92477,13.39021],[92.91804,13.38605],[92.91598,13.38241],[92.91194,13.38243],[92.91003,13.38433],[92.90598,13.38238],[92.90234,13.38753],[92.90291,13.38994],[92.89848,13.38854],[92.89863,13.39104],[92.89495,13.39174],[92.89389,13.39478],[92.89214,13.3956],[92.88908,13.3942],[92.88576,13.39804],[92.87985,13.39127],[92.88117,13.389],[92.8817,13.3922],[92.88352,13.39215],[92.8828,13.39029],[92.88452,13.38885],[92.88235,13.38351],[92.88481,13.38305],[92.88604,13.38494],[92.88766,13.38385],[92.88516,13.38284],[92.88457,13.38038],[92.88601,13.37867],[92.88334,13.3762],[92.8874,13.37361],[92.8855,13.37121],[92.88827,13.37141],[92.88735,13.36882],[92.88552,13.36905],[92.8857,13.36722],[92.88502,13.36939],[92.88802,13.37042],[92.88512,13.37081],[92.88702,13.37307],[92.88587,13.37483],[92.88292,13.37515],[92.88553,13.37915],[92.88441,13.38323],[92.882,13.38325],[92.88396,13.38874],[92.88243,13.39],[92.88312,13.39222],[92.88159,13.38864],[92.87917,13.39111],[92.88271,13.39508],[92.87893,13.39613],[92.87299,13.40239],[92.87278,13.40878],[92.87048,13.41399],[92.86225,13.41435],[92.86134,13.41265],[92.86331,13.4118],[92.85988,13.40943],[92.85369,13.4093],[92.85132,13.40995],[92.85061,13.41587],[92.84859,13.41835],[92.84754,13.41745],[92.85016,13.41219],[92.8451,13.41228],[92.84206,13.40965],[92.84175,13.40695],[92.84589,13.40369],[92.84124,13.40574],[92.83886,13.40119],[92.83729,13.39212],[92.84001,13.39057],[92.84042,13.38845],[92.84431,13.39255],[92.84331,13.38809],[92.84443,13.38696],[92.85037,13.38991],[92.85084,13.38591],[92.85811,13.38521],[92.86263,13.39064],[92.86238,13.40129],[92.86358,13.38982],[92.85887,13.38394],[92.86576,13.38798],[92.86705,13.39077],[92.86974,13.39068],[92.86745,13.39049],[92.86709,13.38852],[92.85736,13.38044],[92.85284,13.37955],[92.85067,13.37626],[92.85016,13.37279],[92.85198,13.37007],[92.84975,13.36703],[92.85168,13.36379],[92.8485,13.36304],[92.85101,13.35941],[92.85436,13.35918],[92.84999,13.35937],[92.84788,13.36346],[92.85122,13.36433],[92.8493,13.36631],[92.85139,13.37045],[92.84935,13.37781],[92.84715,13.37645],[92.84434,13.37888],[92.84005,13.37858],[92.8364,13.37523],[92.83333,13.37475],[92.83356,13.37327],[92.83585,13.37285],[92.83605,13.36953],[92.83217,13.3704],[92.83002,13.36909],[92.83124,13.3657],[92.8327,13.36549],[92.83154,13.36409],[92.83367,13.36261],[92.83143,13.36088],[92.83302,13.35589],[92.82985,13.35508],[92.82772,13.35029],[92.82885,13.34925],[92.83129,13.35039],[92.83076,13.3477],[92.83339,13.34684],[92.8286,13.34211],[92.83311,13.33829],[92.82552,13.33392],[92.82696,13.33265],[92.82406,13.33053],[92.82296,13.32358],[92.82531,13.3216],[92.82563,13.31629],[92.82767,13.31608],[92.82559,13.31358],[92.82231,13.31782],[92.82046,13.31085],[92.82493,13.30399],[92.82709,13.30624],[92.82993,13.30338],[92.83357,13.30365],[92.83497,13.30693],[92.83888,13.30745],[92.83442,13.30536],[92.83555,13.30367],[92.83986,13.30452],[92.84082,13.3012],[92.83346,13.29591],[92.83459,13.29163],[92.83804,13.28815],[92.83207,13.28712],[92.82809,13.29071],[92.82327,13.28965],[92.82086,13.28369],[92.8214,13.2806],[92.81939,13.27905],[92.82205,13.27391],[92.81358,13.27549],[92.8111,13.27083],[92.81414,13.26815],[92.81768,13.26996],[92.81957,13.2683],[92.82034,13.27068],[92.82425,13.27024],[92.827,13.26646],[92.83271,13.26828],[92.83667,13.26316],[92.83775,13.25902],[92.83854,13.26117],[92.84505,13.26058],[92.84913,13.26232],[92.85061,13.2653],[92.84946,13.26323],[92.85769,13.25259],[92.85665,13.25425],[92.8592,13.25687],[92.86158,13.25384],[92.862,13.25556],[92.86435,13.25443],[92.86465,13.25628],[92.86884,13.25501],[92.86717,13.25679],[92.8704,13.25831],[92.86787,13.25648],[92.86885,13.2546],[92.86499,13.25584],[92.86362,13.25374],[92.86203,13.25497],[92.86239,13.25294],[92.85945,13.2565],[92.85718,13.25442],[92.85802,13.25226],[92.85467,13.25406],[92.85513,13.25059],[92.85411,13.25431],[92.85515,13.25587],[92.85186,13.25698],[92.85017,13.26217],[92.8513,13.2516],[92.84753,13.24335],[92.84164,13.24347],[92.83902,13.2459],[92.8425,13.24082],[92.85152,13.23966],[92.85484,13.23396],[92.85181,13.22815],[92.85587,13.22389],[92.85602,13.21964],[92.85094,13.21344],[92.85444,13.21321],[92.84858,13.21241],[92.84894,13.20839],[92.85461,13.20969],[92.85857,13.20673],[92.86212,13.2066],[92.85858,13.20072],[92.86381,13.19608],[92.85785,13.19601],[92.85573,13.19054],[92.85792,13.18821],[92.85878,13.19243],[92.86051,13.19203],[92.86143,13.18503],[92.86312,13.18483],[92.86091,13.18552],[92.86043,13.19174],[92.85928,13.19211],[92.85828,13.18767],[92.85538,13.19074],[92.85717,13.19622],[92.86293,13.19647],[92.85822,13.20077],[92.86124,13.20638],[92.85848,13.20613],[92.85419,13.20905],[92.84832,13.20808],[92.84781,13.21273],[92.85519,13.21947],[92.85224,13.22186],[92.85514,13.22017],[92.85522,13.22289],[92.85096,13.22786],[92.8536,13.23392],[92.85042,13.23863],[92.8397,13.23918],[92.84105,13.24089],[92.83668,13.24393],[92.83315,13.24144],[92.83198,13.24332],[92.83046,13.24305],[92.82551,13.23717],[92.82682,13.23394],[92.82473,13.22297],[92.82935,13.22483],[92.82248,13.21671],[92.82347,13.21548],[92.82373,13.21651],[92.832,13.21544],[92.82853,13.21047]]],[[[94.26511,13.46335],[94.26427,13.46371],[94.26357,13.46436],[94.26258,13.46615],[94.26213,13.46647],[94.26151,13.46644],[94.25988,13.4658],[94.25878,13.46473],[94.25856,13.46395],[94.25828,13.46376],[94.25702,13.46374],[94.25632,13.46442],[94.25485,13.46468],[94.25321,13.46591],[94.25249,13.46605],[94.25241,13.46555],[94.25273,13.46454],[94.25127,13.46178],[94.24991,13.46026],[94.24757,13.4598],[94.24617,13.45705],[94.24313,13.45223],[94.24197,13.44915],[94.24101,13.44825],[94.23991,13.4481],[94.23945,13.44775],[94.23911,13.44672],[94.23948,13.44622],[94.23936,13.44379],[94.23979,13.44042],[94.24018,13.44011],[94.24116,13.44021],[94.2423,13.43913],[94.24328,13.43557],[94.24444,13.43411],[94.24472,13.43339],[94.2453,13.43286],[94.24672,13.43247],[94.24696,13.43309],[94.24722,13.43309],[94.24804,13.43246],[94.24923,13.43225],[94.25255,13.43287],[94.25293,13.43255],[94.25318,13.43139],[94.25339,13.43195],[94.25334,13.43302],[94.25392,13.43405],[94.25439,13.43418],[94.25605,13.43616],[94.25697,13.43654],[94.25743,13.4373],[94.25878,13.43694],[94.26106,13.43832],[94.26322,13.44079],[94.26495,13.44342],[94.26551,13.44536],[94.26527,13.44683],[94.26552,13.44946],[94.26642,13.4513],[94.26676,13.45419],[94.26622,13.45517],[94.26457,13.45706],[94.26444,13.45776],[94.26547,13.46066],[94.26627,13.46231],[94.26726,13.46331],[94.2674,13.46391],[94.26713,13.46405],[94.26562,13.46322],[94.26511,13.46335]]],[[[92.90178,13.6039],[92.90158,13.60416],[92.9011,13.60423],[92.90023,13.60382],[92.89876,13.60394],[92.89854,13.60332],[92.89807,13.60335],[92.89774,13.60307],[92.89526,13.60334],[92.89394,13.60313],[92.89248,13.60257],[92.89192,13.60274],[92.89135,13.6025],[92.89104,13.60199],[92.88782,13.59922],[92.88539,13.59761],[92.88472,13.59648],[92.88453,13.59553],[92.88398,13.59509],[92.88228,13.59186],[92.88265,13.59129],[92.88215,13.59065],[92.88211,13.58965],[92.88156,13.58884],[92.88135,13.58827],[92.88142,13.58767],[92.88076,13.58628],[92.88059,13.58502],[92.88077,13.58481],[92.88008,13.58258],[92.88022,13.58006],[92.87981,13.57797],[92.88006,13.57753],[92.88277,13.57509],[92.88333,13.57421],[92.8842,13.57374],[92.88585,13.57365],[92.88709,13.57388],[92.88871,13.5747],[92.88961,13.57557],[92.8918,13.58211],[92.89382,13.58556],[92.89485,13.5861],[92.89549,13.58758],[92.89624,13.58802],[92.89668,13.5879],[92.89743,13.58827],[92.89844,13.58888],[92.8988,13.58984],[92.90033,13.59048],[92.90046,13.59081],[92.89991,13.59196],[92.89996,13.59253],[92.90053,13.59261],[92.90099,13.59302],[92.90098,13.59329],[92.90071,13.59337],[92.90148,13.59366],[92.90227,13.59433],[92.90294,13.59447],[92.90327,13.59488],[92.90361,13.59451],[92.90393,13.59447],[92.90518,13.59821],[92.90453,13.59827],[92.90393,13.59874],[92.90352,13.59986],[92.90371,13.59998],[92.90386,13.60075],[92.90365,13.60153],[92.9032,13.60233],[92.90178,13.6039]]],[[[93.01501,13.63136],[93.01514,13.63159],[93.01502,13.63175],[93.01491,13.63205],[93.0148,13.63227],[93.01462,13.63207],[93.01474,13.63192],[93.01461,13.63178],[93.01441,13.63162],[93.01445,13.63146],[93.01437,13.63136],[93.01424,13.63125],[93.01425,13.63104],[93.01418,13.63075],[93.01449,13.63077],[93.01471,13.63057],[93.0148,13.63037],[93.01466,13.63024],[93.01447,13.63014],[93.01434,13.63037],[93.01409,13.63044],[93.01406,13.63031],[93.01442,13.63004],[93.01442,13.62992],[93.01481,13.62973],[93.01473,13.62958],[93.01455,13.62949],[93.0144,13.62933],[93.01472,13.62934],[93.0152,13.62977],[93.01523,13.63024],[93.01501,13.63136]]],[[[93.01403,13.63363],[93.01374,13.63368],[93.01372,13.63377],[93.01378,13.63394],[93.01363,13.63434],[93.0137,13.63453],[93.01387,13.63481],[93.01392,13.63502],[93.01348,13.63517],[93.01354,13.63487],[93.0133,13.63464],[93.01328,13.63442],[93.0129,13.63445],[93.01287,13.63438],[93.01318,13.63405],[93.01324,13.63375],[93.013,13.63358],[93.01298,13.6333],[93.01283,13.63309],[93.01317,13.63292],[93.0136,13.63318],[93.0136,13.6334],[93.01369,13.63338],[93.01378,13.63321],[93.0141,13.63306],[93.01403,13.63363]]],[[[93.01045,13.63867],[93.01041,13.63881],[93.01037,13.63885],[93.01008,13.63885],[93.01023,13.63861],[93.01035,13.63849],[93.01045,13.63867]]],[[[93.03507,13.64126],[93.03525,13.6416],[93.03527,13.64242],[93.03523,13.64304],[93.03498,13.64353],[93.03484,13.64365],[93.03456,13.64349],[93.03457,13.64317],[93.03445,13.64274],[93.03435,13.64255],[93.03429,13.64237],[93.03424,13.64205],[93.03433,13.64183],[93.03442,13.64151],[93.03463,13.64127],[93.03507,13.64126]]],[[[93.03442,13.64497],[93.03467,13.64518],[93.03461,13.64556],[93.03442,13.6459],[93.03463,13.64634],[93.03474,13.64687],[93.03427,13.64682],[93.03396,13.6465],[93.03364,13.64637],[93.03353,13.64603],[93.03349,13.64563],[93.03332,13.64545],[93.03338,13.64511],[93.03375,13.64492],[93.03442,13.64497]]],[[[93.06393,13.65494],[93.06226,13.65576],[93.06159,13.65583],[93.05521,13.65477],[93.05347,13.65355],[93.05261,13.65369],[93.05148,13.65229],[93.05111,13.65114],[93.05138,13.65072],[93.05089,13.6491],[93.04998,13.64804],[93.04935,13.64665],[93.04903,13.64641],[93.0488,13.64679],[93.04898,13.64811],[93.04863,13.64863],[93.04748,13.64908],[93.04625,13.64853],[93.04514,13.64737],[93.04482,13.64571],[93.04502,13.64461],[93.04554,13.64398],[93.04559,13.64329],[93.04522,13.64228],[93.04541,13.64174],[93.04447,13.64094],[93.04405,13.64089],[93.04381,13.64274],[93.04298,13.64296],[93.04269,13.64269],[93.04212,13.64012],[93.04093,13.63845],[93.04107,13.63704],[93.04175,13.63551],[93.04122,13.63483],[93.04116,13.63418],[93.04157,13.63127],[93.04188,13.63085],[93.04247,13.63068],[93.04163,13.62968],[93.04181,13.62759],[93.04257,13.62692],[93.04298,13.62716],[93.04398,13.62593],[93.04402,13.62434],[93.04441,13.6244],[93.04394,13.62246],[93.04399,13.62172],[93.04436,13.62097],[93.04539,13.62057],[93.04613,13.61984],[93.04728,13.62071],[93.0474,13.62114],[93.04761,13.6202],[93.04827,13.62013],[93.04878,13.62063],[93.04901,13.62168],[93.04838,13.62186],[93.04919,13.62544],[93.05001,13.62611],[93.05086,13.62769],[93.05197,13.63075],[93.05304,13.63274],[93.05312,13.6335],[93.05467,13.63624],[93.0546,13.63739],[93.05515,13.6389],[93.0551,13.64011],[93.05555,13.64085],[93.05513,13.64267],[93.05742,13.6445],[93.05987,13.64474],[93.06235,13.64575],[93.06434,13.64733],[93.06508,13.64851],[93.06652,13.64971],[93.06701,13.65061],[93.06759,13.65029],[93.06825,13.65071],[93.06824,13.65134],[93.06764,13.65123],[93.06783,13.65219],[93.06762,13.65271],[93.06573,13.65468],[93.06515,13.65458],[93.06446,13.65505],[93.0642,13.65469],[93.06429,13.65429],[93.0639,13.65429],[93.06393,13.65494]]],[[[93.03027,13.66275],[93.0302,13.66344],[93.02975,13.66361],[93.02976,13.66334],[93.03018,13.66269],[93.03027,13.66275]]],[[[93.10833,13.65575],[93.10835,13.656],[93.10854,13.65628],[93.10833,13.65651],[93.10804,13.65651],[93.10802,13.65623],[93.10794,13.65603],[93.10799,13.65578],[93.10833,13.65575]]],[[[93.10631,13.65752],[93.10634,13.65783],[93.10623,13.6581],[93.10592,13.65823],[93.10569,13.65803],[93.10574,13.65773],[93.10584,13.6576],[93.10592,13.65752],[93.10631,13.65752]]],[[[93.11081,13.6574],[93.11074,13.6576],[93.11068,13.65778],[93.1105,13.65796],[93.11035,13.65783],[93.11035,13.65745],[93.11045,13.6573],[93.11066,13.65722],[93.11081,13.6574]]],[[[93.10768,13.66082],[93.10784,13.66097],[93.10786,13.6612],[93.10773,13.6614],[93.10735,13.66165],[93.10717,13.6615],[93.10717,13.66132],[93.10719,13.66112],[93.10732,13.66074],[93.10768,13.66082]]],[[[93.01549,13.67696],[93.0107,13.67692],[93.00978,13.67632],[93.01079,13.67519],[93.01031,13.67486],[93.01051,13.67441],[93.00704,13.67534],[93.00586,13.6749],[93.00372,13.67317],[93.00436,13.6726],[93.00445,13.67131],[93.00543,13.67046],[93.00512,13.66958],[93.00606,13.66835],[93.00471,13.6661],[93.00595,13.66508],[93.0082,13.66445],[93.00951,13.66326],[93.01001,13.66505],[93.01106,13.66543],[93.01168,13.66506],[93.01048,13.66491],[93.00988,13.66397],[93.00996,13.66297],[93.00956,13.66275],[93.00769,13.66415],[93.00608,13.66432],[93.00425,13.66603],[93.00403,13.66864],[93.00499,13.67007],[93.00403,13.67172],[93.00362,13.67075],[93.00299,13.67091],[93.00282,13.67266],[92.99989,13.67189],[92.99806,13.67078],[92.99756,13.67118],[92.99721,13.67048],[92.99563,13.67042],[92.99414,13.66979],[92.99352,13.66999],[92.99155,13.66866],[92.98923,13.66899],[92.98839,13.66793],[92.98689,13.66777],[92.98711,13.66854],[92.98355,13.66816],[92.98324,13.6673],[92.98231,13.66719],[92.98211,13.6666],[92.98169,13.66655],[92.98146,13.66718],[92.97967,13.66661],[92.97901,13.66587],[92.97913,13.66534],[92.97797,13.66549],[92.9774,13.66435],[92.9766,13.66428],[92.97428,13.66152],[92.97433,13.66048],[92.97537,13.66202],[92.97667,13.66184],[92.97658,13.66102],[92.97526,13.65952],[92.97558,13.65831],[92.97357,13.65898],[92.97494,13.65751],[92.97396,13.65647],[92.97407,13.65559],[92.97233,13.65553],[92.97149,13.65408],[92.97132,13.64966],[92.97167,13.64735],[92.9736,13.64391],[92.97511,13.64255],[92.97576,13.64304],[92.97616,13.64441],[92.97619,13.64652],[92.97705,13.6481],[92.97719,13.65001],[92.97862,13.65068],[92.97865,13.64866],[92.97932,13.64787],[92.98022,13.648],[92.9815,13.64937],[92.9815,13.64724],[92.97996,13.64721],[92.98063,13.64697],[92.98167,13.64524],[92.98113,13.64183],[92.98258,13.64074],[92.98408,13.6405],[92.98644,13.64063],[92.98672,13.64027],[92.9883,13.64111],[92.98857,13.64212],[92.98804,13.64332],[92.98812,13.64527],[92.98928,13.64476],[92.98955,13.6451],[92.99024,13.64489],[92.98999,13.64378],[92.99047,13.64334],[92.99038,13.64275],[92.99149,13.64196],[92.9929,13.64189],[92.99342,13.64275],[92.99429,13.64262],[92.99581,13.64403],[92.99614,13.64531],[92.99536,13.64591],[92.99598,13.64646],[92.99721,13.64601],[92.99769,13.64636],[92.99767,13.64726],[92.99819,13.64723],[92.99857,13.64606],[92.99961,13.64698],[93.0,13.64686],[93.00022,13.64576],[93.00091,13.64641],[93.00093,13.6483],[93.00136,13.64855],[93.0022,13.6475],[93.00273,13.64573],[93.00421,13.64652],[93.00572,13.6466],[93.00595,13.64517],[93.00739,13.64606],[93.00884,13.64467],[93.00914,13.64497],[93.00958,13.6428],[93.01336,13.64334],[93.01355,13.6408],[93.01231,13.63957],[93.0121,13.63859],[93.01296,13.63781],[93.01421,13.63762],[93.01286,13.63697],[93.0129,13.6361],[93.01477,13.63595],[93.01589,13.63462],[93.01596,13.63287],[93.01558,13.63241],[93.01614,13.62869],[93.01707,13.62963],[93.01743,13.62869],[93.01706,13.62736],[93.01758,13.62711],[93.01909,13.62758],[93.02007,13.62671],[93.02028,13.62579],[93.01697,13.62312],[93.0181,13.62204],[93.01843,13.6225],[93.01975,13.62212],[93.02061,13.62405],[93.02241,13.62425],[93.0228,13.62352],[93.02482,13.62501],[93.02776,13.62494],[93.02856,13.62544],[93.02873,13.62666],[93.02953,13.62789],[93.03032,13.6285],[93.03105,13.62848],[93.03132,13.62991],[93.03257,13.63122],[93.03247,13.63206],[93.03186,13.63228],[93.03189,13.63333],[93.03227,13.63326],[93.03197,13.63475],[93.03119,13.63568],[93.03074,13.63538],[93.02897,13.63746],[93.02936,13.63792],[93.02853,13.6403],[93.02807,13.6445],[93.02636,13.64709],[93.0257,13.6492],[93.02559,13.65001],[93.02606,13.6506],[93.02554,13.65119],[93.02583,13.65174],[93.0251,13.65435],[93.02509,13.65641],[93.02467,13.65688],[93.02558,13.66068],[93.02477,13.66222],[93.02519,13.66338],[93.02405,13.66578],[93.0243,13.66616],[93.02316,13.66694],[93.02435,13.66675],[93.02559,13.66768],[93.02543,13.66813],[93.02306,13.66876],[93.02174,13.66971],[93.02226,13.67006],[93.02201,13.66971],[93.02263,13.66954],[93.02469,13.67003],[93.02608,13.67082],[93.02628,13.67177],[93.0251,13.6729],[93.02437,13.67291],[93.02455,13.67356],[93.02299,13.67509],[93.02017,13.67625],[93.01988,13.67383],[93.01877,13.6759],[93.01728,13.6767],[93.01549,13.67696]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"36","area_level":"State","area_name":"Telangana","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[78.33565,19.88358],[78.32876,19.88715],[78.32436,19.89483],[78.32512,19.89815],[78.33409,19.9053],[78.33328,19.91047],[78.3306,19.91469],[78.32184,19.91681],[78.30703,19.9143],[78.29783,19.87225],[78.29188,19.86172],[78.28531,19.85662],[78.28608,19.84794],[78.29975,19.841],[78.30385,19.84032],[78.31576,19.84256],[78.33641,19.83792],[78.33402,19.81459],[78.3448,19.81337],[78.35238,19.8074],[78.35707,19.80577],[78.35889,19.80289],[78.36459,19.78065],[78.36365,19.77577],[78.35893,19.76793],[78.35555,19.75201],[78.34929,19.73798],[78.34464,19.73811],[78.34123,19.73576],[78.34082,19.73333],[78.34285,19.72978],[78.33982,19.72696],[78.33929,19.72416],[78.3435,19.71547],[78.34313,19.71325],[78.31865,19.70553],[78.31573,19.70259],[78.31182,19.69105],[78.30341,19.6912],[78.30019,19.68799],[78.28785,19.68804],[78.27619,19.69242],[78.27108,19.67871],[78.26579,19.67309],[78.26265,19.66506],[78.26891,19.66407],[78.27162,19.66191],[78.27105,19.65854],[78.27901,19.65764],[78.28088,19.65093],[78.29046,19.646],[78.29208,19.64223],[78.2922,19.62741],[78.2939,19.61944],[78.30557,19.60707],[78.30382,19.58478],[78.3009,19.57907],[78.30425,19.57269],[78.30369,19.56932],[78.29729,19.5679],[78.29815,19.56404],[78.29356,19.55898],[78.27525,19.56246],[78.27431,19.55397],[78.28393,19.54141],[78.29323,19.54223],[78.29411,19.53479],[78.29244,19.52931],[78.2904,19.52762],[78.296,19.51737],[78.29701,19.51308],[78.29495,19.51317],[78.29866,19.49681],[78.30922,19.48108],[78.30434,19.45614],[78.29865,19.45195],[78.28697,19.44853],[78.27044,19.45616],[78.26868,19.44847],[78.26374,19.44893],[78.26265,19.44306],[78.25831,19.44179],[78.25338,19.43677],[78.24648,19.4352],[78.24672,19.43217],[78.24451,19.4288],[78.23743,19.42873],[78.23561,19.42675],[78.21996,19.43302],[78.21159,19.42848],[78.20253,19.4197],[78.19919,19.41484],[78.19881,19.41016],[78.19507,19.40675],[78.19244,19.40669],[78.18382,19.4122],[78.17619,19.41226],[78.18767,19.39459],[78.17679,19.3674],[78.17923,19.36284],[78.17206,19.35972],[78.17215,19.3493],[78.17623,19.33493],[78.18324,19.32998],[78.18951,19.32897],[78.19228,19.32583],[78.19021,19.32078],[78.19374,19.31489],[78.18311,19.28518],[78.17667,19.27855],[78.17817,19.27251],[78.17671,19.26294],[78.17964,19.25886],[78.17798,19.25391],[78.18177,19.24762],[78.17702,19.24216],[78.17532,19.23758],[78.16495,19.23455],[78.1584,19.23578],[78.15099,19.2295],[78.14455,19.2294],[78.13709,19.23439],[78.13428,19.23889],[78.11704,19.24864],[78.11522,19.24883],[78.11317,19.24442],[78.09531,19.24374],[78.08915,19.23937],[78.08235,19.24322],[78.08323,19.24868],[78.0791,19.25483],[78.0723,19.24925],[78.06442,19.24777],[78.05568,19.23712],[78.04161,19.24343],[78.03594,19.25063],[78.04184,19.26166],[78.04251,19.2706],[78.01482,19.27904],[78.01424,19.28596],[78.01596,19.28757],[78.0135,19.29472],[77.99868,19.2998],[77.99467,19.30539],[77.98485,19.30988],[77.97763,19.32271],[77.97411,19.32262],[77.96588,19.32746],[77.96186,19.33561],[77.94512,19.34245],[77.94229,19.34227],[77.93824,19.33411],[77.93198,19.33467],[77.92801,19.33221],[77.92331,19.32578],[77.9176,19.32328],[77.91155,19.31626],[77.89432,19.32047],[77.89003,19.3133],[77.87818,19.30928],[77.87283,19.30531],[77.86346,19.3042],[77.8664,19.29172],[77.86495,19.28813],[77.86558,19.28382],[77.88436,19.27893],[77.89419,19.27981],[77.90346,19.27796],[77.90756,19.26823],[77.90285,19.25646],[77.89092,19.25928],[77.89001,19.26089],[77.87502,19.25884],[77.8746,19.25364],[77.87141,19.25502],[77.86947,19.24817],[77.87002,19.24418],[77.8669,19.23994],[77.86814,19.23674],[77.86612,19.23261],[77.86601,19.2264],[77.85819,19.21418],[77.85481,19.20277],[77.85123,19.19975],[77.85149,19.1961],[77.84772,19.1896],[77.85401,19.18749],[77.86049,19.18035],[77.85593,19.17711],[77.85671,19.17075],[77.85453,19.1702],[77.85265,19.16682],[77.85253,19.15468],[77.84322,19.14158],[77.83795,19.13765],[77.83566,19.13808],[77.83406,19.13431],[77.83688,19.13401],[77.84156,19.11811],[77.84766,19.116],[77.84837,19.11013],[77.84621,19.10131],[77.85108,19.09203],[77.8504,19.08856],[77.84858,19.0865],[77.8423,19.08801],[77.83127,19.08608],[77.82953,19.08707],[77.82641,19.09664],[77.82358,19.09773],[77.81814,19.10498],[77.80993,19.10473],[77.80453,19.10056],[77.80312,19.09617],[77.80458,19.0918],[77.80281,19.07976],[77.80167,19.07618],[77.79786,19.07516],[77.7968,19.07259],[77.8001,19.06684],[77.7986,19.06145],[77.80035,19.05112],[77.79331,19.05257],[77.7891,19.05567],[77.77523,19.05602],[77.76481,19.06266],[77.76495,19.04714],[77.76179,19.033],[77.76556,19.02431],[77.76992,19.02241],[77.77034,19.00996],[77.77224,19.00363],[77.77535,19.00063],[77.7715,18.97916],[77.78763,18.97265],[77.78967,18.97458],[77.79114,18.98282],[77.80522,18.98186],[77.82176,18.97851],[77.81621,18.95752],[77.81984,18.95444],[77.81622,18.94728],[77.81925,18.94586],[77.83245,18.94163],[77.83562,18.94725],[77.84194,18.94987],[77.85859,18.94911],[77.85146,18.92641],[77.84791,18.9269],[77.84325,18.90869],[77.85794,18.90235],[77.87317,18.90393],[77.87394,18.90767],[77.88538,18.9042],[77.88481,18.9003],[77.89158,18.88141],[77.90391,18.88125],[77.90323,18.86663],[77.91243,18.86507],[77.91415,18.86137],[77.92514,18.86069],[77.93006,18.85873],[77.92935,18.85359],[77.93745,18.85159],[77.93478,18.84514],[77.9489,18.84329],[77.94828,18.8291],[77.94309,18.82481],[77.9345,18.82227],[77.91226,18.82689],[77.90667,18.8267],[77.88199,18.8174],[77.87141,18.81816],[77.85988,18.80905],[77.85368,18.80907],[77.83995,18.80482],[77.83851,18.79683],[77.83219,18.78825],[77.82679,18.76984],[77.81671,18.75064],[77.81234,18.73851],[77.80425,18.72724],[77.80418,18.71318],[77.80106,18.70762],[77.79622,18.70396],[77.79501,18.69704],[77.78976,18.69515],[77.79035,18.68783],[77.78729,18.68264],[77.77701,18.68536],[77.77191,18.68905],[77.77324,18.70136],[77.77033,18.70184],[77.76815,18.70586],[77.75998,18.70684],[77.7535,18.70099],[77.75059,18.69525],[77.75244,18.68934],[77.74925,18.68267],[77.74369,18.68162],[77.74313,18.67827],[77.73822,18.6765],[77.72997,18.66694],[77.73571,18.66099],[77.7302,18.65608],[77.7305,18.64515],[77.73471,18.64101],[77.74566,18.62129],[77.74557,18.60594],[77.7476,18.6032],[77.75034,18.58921],[77.74607,18.5846],[77.74347,18.57762],[77.74038,18.57522],[77.73961,18.56836],[77.73704,18.56384],[77.7385,18.55679],[77.72325,18.55333],[77.71097,18.5563],[77.70156,18.55517],[77.68833,18.54495],[77.68069,18.54525],[77.6646,18.5358],[77.66166,18.53186],[77.65586,18.5309],[77.65135,18.53226],[77.6459,18.53884],[77.64922,18.54119],[77.65207,18.55179],[77.64771,18.55299],[77.64791,18.55493],[77.63962,18.55494],[77.634,18.54392],[77.62763,18.54812],[77.62925,18.55368],[77.62647,18.55189],[77.61519,18.55085],[77.61604,18.54897],[77.61319,18.5491],[77.6125,18.54448],[77.61056,18.54454],[77.61007,18.54988],[77.59637,18.54894],[77.5953,18.53554],[77.59206,18.53232],[77.59069,18.52667],[77.59657,18.5302],[77.60044,18.5273],[77.59883,18.52421],[77.60028,18.5223],[77.59707,18.51588],[77.58775,18.51286],[77.58591,18.504],[77.59429,18.49791],[77.5944,18.4962],[77.60471,18.49637],[77.60368,18.49294],[77.60623,18.4892],[77.60361,18.48368],[77.60313,18.47685],[77.59428,18.47691],[77.59225,18.48472],[77.57637,18.48678],[77.57286,18.46981],[77.56107,18.47026],[77.56024,18.46862],[77.54856,18.46858],[77.55076,18.46041],[77.56404,18.46102],[77.5836,18.45621],[77.583,18.44994],[77.5861,18.4494],[77.5853,18.44679],[77.5743,18.4418],[77.56907,18.44287],[77.56829,18.43947],[77.56418,18.4373],[77.5602,18.43728],[77.54798,18.44323],[77.54056,18.44471],[77.52849,18.44337],[77.52752,18.44211],[77.52817,18.42891],[77.53731,18.42628],[77.5369,18.42425],[77.55647,18.41943],[77.55676,18.41714],[77.55268,18.40169],[77.5516,18.3889],[77.54592,18.38869],[77.54319,18.38609],[77.5386,18.38588],[77.53561,18.38075],[77.52547,18.37271],[77.52405,18.3642],[77.52021,18.35718],[77.52273,18.3454],[77.53023,18.33917],[77.55802,18.33142],[77.56387,18.3223],[77.57048,18.31811],[77.5714,18.30883],[77.55326,18.29809],[77.5514,18.29191],[77.56212,18.28481],[77.56694,18.28728],[77.57021,18.29253],[77.57256,18.2933],[77.57616,18.28873],[77.58185,18.28538],[77.60542,18.28128],[77.6043,18.27877],[77.60117,18.27762],[77.59445,18.26485],[77.58199,18.25963],[77.57378,18.24499],[77.57178,18.244],[77.57301,18.23944],[77.58052,18.23217],[77.57988,18.22816],[77.58185,18.22697],[77.58149,18.22486],[77.58531,18.21982],[77.58058,18.21385],[77.57482,18.20163],[77.57215,18.20351],[77.56551,18.20418],[77.56388,18.20194],[77.56346,18.19613],[77.56405,18.19426],[77.57069,18.19217],[77.57472,18.1741],[77.57716,18.17249],[77.58131,18.16232],[77.58422,18.15923],[77.5924,18.15544],[77.59684,18.15595],[77.5944,18.13272],[77.59699,18.12367],[77.59916,18.12099],[77.60155,18.1059],[77.5988,18.09333],[77.59564,18.08603],[77.58551,18.08184],[77.58358,18.08246],[77.57592,18.07806],[77.56943,18.07824],[77.56592,18.07667],[77.55971,18.07188],[77.55742,18.06373],[77.54834,18.06521],[77.54764,18.05613],[77.54961,18.05439],[77.54948,18.05124],[77.55183,18.0507],[77.55379,18.03582],[77.56061,18.03622],[77.58059,18.03158],[77.58325,18.02826],[77.58489,18.01679],[77.58859,18.01216],[77.59586,18.01285],[77.60164,18.01984],[77.60593,18.02023],[77.60794,18.01796],[77.60747,18.00985],[77.61966,18.00649],[77.62779,17.99679],[77.63875,17.99645],[77.64891,17.99888],[77.65204,17.99389],[77.64821,17.98026],[77.65586,17.96884],[77.64951,17.95907],[77.64948,17.95002],[77.6409,17.95411],[77.64062,17.95189],[77.63721,17.95232],[77.63513,17.95925],[77.63329,17.96037],[77.63301,17.96738],[77.62454,17.9596],[77.63289,17.9558],[77.63251,17.94667],[77.62294,17.94552],[77.61868,17.93949],[77.622,17.92957],[77.61904,17.90406],[77.60518,17.90781],[77.59999,17.90414],[77.58606,17.90784],[77.585,17.90193],[77.58599,17.89384],[77.59583,17.88136],[77.60037,17.8806],[77.59908,17.87309],[77.59449,17.87233],[77.58342,17.87704],[77.58059,17.87345],[77.5764,17.87542],[77.57346,17.86919],[77.57,17.86765],[77.56932,17.85156],[77.56484,17.85119],[77.56744,17.84542],[77.56068,17.83865],[77.55403,17.82007],[77.54891,17.81938],[77.5467,17.82848],[77.53238,17.82911],[77.52822,17.8279],[77.52903,17.81293],[77.52294,17.81141],[77.51494,17.80545],[77.509,17.78778],[77.50656,17.78595],[77.51233,17.78213],[77.51751,17.78249],[77.52211,17.78055],[77.52636,17.78163],[77.527,17.7799],[77.52867,17.78066],[77.53439,17.77763],[77.53751,17.77993],[77.54054,17.77777],[77.54026,17.77438],[77.54606,17.77166],[77.54823,17.76706],[77.55486,17.76397],[77.55983,17.76342],[77.56628,17.76675],[77.56915,17.76649],[77.56727,17.7596],[77.56853,17.74891],[77.56439,17.74786],[77.56094,17.74281],[77.55801,17.74139],[77.5567,17.73738],[77.54861,17.73577],[77.54623,17.73282],[77.54596,17.72684],[77.54219,17.72894],[77.53328,17.72768],[77.53133,17.72867],[77.52859,17.72517],[77.52201,17.72603],[77.51824,17.72358],[77.51655,17.72016],[77.51165,17.72092],[77.50914,17.71629],[77.49705,17.71551],[77.49227,17.70813],[77.48601,17.70793],[77.48489,17.70914],[77.48415,17.7056],[77.46748,17.70298],[77.45887,17.69862],[77.45782,17.6963],[77.45243,17.6947],[77.45216,17.69114],[77.45504,17.68893],[77.4537,17.68649],[77.45349,17.67711],[77.45482,17.67448],[77.44893,17.65943],[77.44822,17.65112],[77.45001,17.65058],[77.44972,17.64396],[77.45223,17.64],[77.45208,17.63642],[77.45589,17.63418],[77.45575,17.63249],[77.45115,17.62321],[77.44873,17.60934],[77.44476,17.60941],[77.44614,17.59647],[77.44329,17.59169],[77.44498,17.58625],[77.44312,17.58396],[77.45562,17.58233],[77.45858,17.57997],[77.46181,17.58075],[77.47082,17.57186],[77.47623,17.57061],[77.47805,17.5668],[77.49407,17.56836],[77.49618,17.55961],[77.50043,17.55619],[77.50003,17.54672],[77.5069,17.54228],[77.51544,17.55242],[77.51649,17.55915],[77.52838,17.57537],[77.53744,17.57544],[77.54512,17.56439],[77.55056,17.55173],[77.55424,17.55385],[77.56085,17.55257],[77.56737,17.55636],[77.5881,17.56],[77.58907,17.5647],[77.5938,17.56451],[77.59723,17.55373],[77.59558,17.54487],[77.5969,17.5343],[77.60301,17.53584],[77.60738,17.53225],[77.61206,17.53476],[77.61936,17.52887],[77.62097,17.5304],[77.62339,17.52563],[77.62796,17.52363],[77.637,17.52571],[77.64527,17.52238],[77.66201,17.52282],[77.66654,17.51713],[77.66864,17.51161],[77.67302,17.50942],[77.67545,17.50862],[77.67749,17.50998],[77.68342,17.50818],[77.68772,17.51182],[77.6888,17.51094],[77.6924,17.49688],[77.68801,17.48943],[77.68963,17.48281],[77.6884,17.4752],[77.6768,17.47836],[77.67053,17.47789],[77.65736,17.48092],[77.65544,17.48308],[77.65228,17.48285],[77.65333,17.49389],[77.65689,17.50646],[77.64788,17.49608],[77.64766,17.48717],[77.64479,17.47757],[77.64051,17.47646],[77.63824,17.47352],[77.61523,17.47289],[77.613,17.46683],[77.61427,17.44595],[77.60292,17.44415],[77.58424,17.4545],[77.57619,17.45617],[77.57586,17.43071],[77.56151,17.43761],[77.55269,17.43705],[77.5373,17.44375],[77.513,17.43087],[77.51417,17.41418],[77.52983,17.40818],[77.53607,17.40798],[77.53784,17.40609],[77.53723,17.40225],[77.52429,17.388],[77.52622,17.38193],[77.53315,17.3805],[77.5298,17.37071],[77.52482,17.3647],[77.51576,17.36038],[77.51148,17.36058],[77.50263,17.35707],[77.4882,17.35873],[77.48382,17.355],[77.47443,17.36151],[77.47653,17.36371],[77.476,17.36841],[77.4791,17.37072],[77.45361,17.37399],[77.45106,17.35938],[77.45168,17.35268],[77.45487,17.35178],[77.45706,17.34741],[77.45601,17.33124],[77.45245,17.32747],[77.45219,17.31755],[77.44884,17.30962],[77.44765,17.3075],[77.4456,17.30774],[77.44298,17.30122],[77.44051,17.3013],[77.43793,17.29192],[77.45488,17.28724],[77.45854,17.279],[77.45356,17.2761],[77.45081,17.27053],[77.444,17.27055],[77.43578,17.26018],[77.42633,17.25646],[77.42254,17.25076],[77.42042,17.23762],[77.41145,17.23767],[77.41039,17.24041],[77.40827,17.24121],[77.40495,17.23653],[77.38019,17.22253],[77.38296,17.21798],[77.38876,17.21532],[77.40198,17.21412],[77.40375,17.20989],[77.39839,17.21031],[77.39641,17.20753],[77.39389,17.1944],[77.38174,17.19765],[77.37227,17.19556],[77.37396,17.19455],[77.37335,17.19087],[77.36946,17.18632],[77.3719,17.18113],[77.37001,17.17579],[77.3662,17.17221],[77.36677,17.1693],[77.36261,17.16448],[77.36372,17.15878],[77.36682,17.15898],[77.3669,17.15441],[77.37817,17.15266],[77.37792,17.13994],[77.38454,17.14003],[77.40382,17.13292],[77.40666,17.12451],[77.436,17.11498],[77.43849,17.11685],[77.4458,17.11796],[77.44955,17.11502],[77.45428,17.11485],[77.45563,17.11145],[77.45919,17.1091],[77.46362,17.11],[77.46469,17.10776],[77.46285,17.09408],[77.46725,17.08633],[77.47656,17.07943],[77.48098,17.07923],[77.48194,17.07585],[77.47898,17.07263],[77.47993,17.0688],[77.48345,17.05891],[77.48984,17.05054],[77.48766,17.04953],[77.48811,17.04717],[77.49665,17.04272],[77.49495,17.02709],[77.50253,17.0141],[77.5022,17.00937],[77.49783,17.00933],[77.49187,17.00366],[77.48656,17.00321],[77.47952,16.99602],[77.48289,16.98565],[77.48134,16.97043],[77.4783,16.96837],[77.47215,16.95714],[77.46595,16.95893],[77.46523,16.95661],[77.46721,16.94985],[77.46484,16.94418],[77.46829,16.93959],[77.4642,16.92985],[77.46941,16.92806],[77.46944,16.9192],[77.46652,16.91511],[77.4592,16.91731],[77.45842,16.91491],[77.45402,16.9139],[77.4547,16.91037],[77.45791,16.90951],[77.45646,16.89992],[77.45834,16.89409],[77.45589,16.88534],[77.46036,16.88475],[77.46001,16.87468],[77.46406,16.85059],[77.45948,16.83285],[77.45708,16.83018],[77.46324,16.82221],[77.46244,16.81374],[77.46646,16.80832],[77.4657,16.80592],[77.47426,16.80232],[77.47469,16.7931],[77.47339,16.78921],[77.4765,16.78837],[77.4745,16.78124],[77.46719,16.78045],[77.44107,16.78622],[77.4395,16.78913],[77.43772,16.78337],[77.43788,16.77471],[77.44315,16.76251],[77.4333,16.73669],[77.4298,16.7348],[77.42696,16.72891],[77.42832,16.7266],[77.43036,16.72637],[77.43097,16.72312],[77.42607,16.72287],[77.42767,16.71663],[77.4328,16.7173],[77.43846,16.71168],[77.44123,16.71312],[77.44198,16.71703],[77.44613,16.71649],[77.44718,16.72073],[77.45216,16.7196],[77.45779,16.71594],[77.46133,16.719],[77.46296,16.71797],[77.46381,16.71917],[77.47405,16.71656],[77.47116,16.71178],[77.47139,16.7062],[77.46989,16.7056],[77.4698,16.68703],[77.4639,16.6763],[77.44772,16.67931],[77.44658,16.67607],[77.44423,16.67569],[77.44255,16.66985],[77.43455,16.67098],[77.42817,16.6682],[77.41886,16.66857],[77.41901,16.65844],[77.42972,16.6562],[77.4386,16.64533],[77.43434,16.64336],[77.43434,16.64138],[77.44158,16.6411],[77.44468,16.63923],[77.45649,16.64681],[77.45702,16.64968],[77.46143,16.65112],[77.4624,16.65427],[77.47291,16.6528],[77.47611,16.65011],[77.47086,16.64375],[77.46825,16.63595],[77.46438,16.6325],[77.46392,16.62824],[77.45616,16.62299],[77.45365,16.61675],[77.45819,16.61071],[77.4678,16.60976],[77.4674,16.59884],[77.46391,16.59921],[77.46225,16.59766],[77.46483,16.59242],[77.46222,16.58548],[77.43971,16.58715],[77.43085,16.57887],[77.42855,16.57365],[77.42563,16.57219],[77.42376,16.56888],[77.41537,16.56752],[77.41178,16.57086],[77.40494,16.57189],[77.40001,16.56752],[77.39287,16.56997],[77.39262,16.56399],[77.3975,16.56476],[77.39996,16.55573],[77.40418,16.55418],[77.40376,16.55119],[77.41045,16.549],[77.41902,16.54892],[77.41912,16.52238],[77.41689,16.5173],[77.40221,16.52152],[77.39498,16.51969],[77.39102,16.5162],[77.38144,16.51571],[77.37779,16.5137],[77.37272,16.50966],[77.37007,16.50458],[77.36901,16.48867],[77.3547,16.48878],[77.35143,16.49106],[77.34637,16.49037],[77.34439,16.48694],[77.34309,16.48793],[77.32956,16.48591],[77.32357,16.48684],[77.3203,16.49222],[77.29871,16.49616],[77.29932,16.48791],[77.294,16.47667],[77.26499,16.47251],[77.25073,16.47493],[77.24581,16.47773],[77.23977,16.47625],[77.23576,16.47274],[77.24441,16.46331],[77.26207,16.45184],[77.26895,16.43046],[77.27828,16.42217],[77.28796,16.40864],[77.29745,16.4069],[77.3043,16.40173],[77.31393,16.39801],[77.33342,16.39537],[77.3491,16.38385],[77.35584,16.38264],[77.37805,16.38556],[77.4017,16.3713],[77.41144,16.36745],[77.42095,16.36623],[77.42953,16.36966],[77.43711,16.37861],[77.44098,16.38077],[77.47467,16.38177],[77.48969,16.38501],[77.49535,16.38116],[77.51437,16.37497],[77.5234,16.37583],[77.53143,16.36376],[77.53877,16.35821],[77.54604,16.35693],[77.555,16.34877],[77.57272,16.34093],[77.59484,16.34318],[77.59524,16.33963],[77.58803,16.33337],[77.59083,16.32928],[77.59,16.3255],[77.59538,16.31812],[77.59202,16.30217],[77.59337,16.29744],[77.59772,16.29281],[77.582,16.29134],[77.56888,16.3036],[77.56321,16.30164],[77.54508,16.29171],[77.54082,16.28546],[77.5369,16.2668],[77.53282,16.27168],[77.52933,16.2728],[77.5296,16.27548],[77.52187,16.27803],[77.51386,16.27784],[77.51043,16.27459],[77.50481,16.2758],[77.50514,16.2676],[77.5024,16.26306],[77.49008,16.25523],[77.49298,16.24408],[77.49234,16.2293],[77.49506,16.22712],[77.50356,16.23094],[77.51362,16.23075],[77.51555,16.22837],[77.51577,16.2239],[77.51499,16.22196],[77.51215,16.22092],[77.50279,16.22366],[77.50115,16.22172],[77.49818,16.20956],[77.49949,16.19856],[77.49132,16.18453],[77.48615,16.16298],[77.49068,16.15958],[77.4916,16.13502],[77.48979,16.11962],[77.50022,16.12059],[77.50231,16.11717],[77.51081,16.11227],[77.51328,16.10802],[77.50875,16.10919],[77.50093,16.10619],[77.49378,16.08717],[77.49428,16.08565],[77.50601,16.0807],[77.50692,16.07897],[77.50261,16.05881],[77.49944,16.06102],[77.49651,16.05504],[77.49946,16.05372],[77.49681,16.04712],[77.49787,16.04409],[77.49535,16.0417],[77.494,16.03699],[77.49558,16.03098],[77.49803,16.02998],[77.49745,16.02867],[77.50225,16.02247],[77.50267,16.01871],[77.50434,16.01821],[77.50441,16.01133],[77.51405,16.00808],[77.50955,15.9804],[77.51109,15.97937],[77.51066,15.97516],[77.5164,15.96736],[77.51981,15.96691],[77.51344,15.92679],[77.53246,15.92409],[77.54898,15.91912],[77.58081,15.91848],[77.59331,15.91192],[77.59845,15.91241],[77.61139,15.91793],[77.62505,15.90904],[77.63647,15.89606],[77.6592,15.8855],[77.69275,15.88331],[77.71273,15.89452],[77.7241,15.89581],[77.73133,15.8937],[77.73881,15.88803],[77.74405,15.8861],[77.76079,15.88462],[77.76687,15.88614],[77.77723,15.88077],[77.78236,15.87617],[77.79292,15.87648],[77.80537,15.87428],[77.82731,15.88015],[77.83873,15.88509],[77.84597,15.88212],[77.85851,15.88371],[77.86232,15.88636],[77.87005,15.89724],[77.87822,15.90522],[77.88798,15.90608],[77.93696,15.8835],[77.94905,15.88476],[77.97533,15.88334],[77.99696,15.86632],[78.00886,15.86175],[78.0088,15.86478],[78.01503,15.87599],[78.02551,15.90236],[78.031,15.90296],[78.03189,15.90735],[78.04494,15.90414],[78.04682,15.8749],[78.05621,15.87465],[78.05583,15.86633],[78.07152,15.86175],[78.07136,15.85037],[78.07511,15.84718],[78.08488,15.84506],[78.08355,15.84092],[78.09879,15.83601],[78.11123,15.83836],[78.12332,15.83671],[78.13011,15.83809],[78.134,15.83626],[78.13428,15.84402],[78.13007,15.8507],[78.13554,15.8547],[78.15877,15.85376],[78.16679,15.85463],[78.17534,15.85808],[78.17667,15.87676],[78.18661,15.88481],[78.18993,15.89227],[78.17944,15.90193],[78.18443,15.90982],[78.20451,15.91798],[78.23214,15.92399],[78.25162,15.93522],[78.25362,15.94254],[78.25208,15.95383],[78.25333,15.96633],[78.25126,15.97681],[78.25982,15.99556],[78.25551,16.01285],[78.25749,16.02135],[78.26086,16.02582],[78.26698,16.02715],[78.27719,16.02432],[78.29942,16.01154],[78.31226,16.01151],[78.32193,16.01711],[78.32208,16.02868],[78.32656,16.03674],[78.34773,16.04747],[78.36197,16.0458],[78.36542,16.04678],[78.38439,16.0646],[78.39763,16.06613],[78.40145,16.07201],[78.40789,16.07481],[78.42867,16.07318],[78.43451,16.0712],[78.44111,16.07443],[78.47477,16.0685],[78.49865,16.05997],[78.52292,16.05369],[78.54205,16.04417],[78.55176,16.0428],[78.55763,16.04497],[78.58694,16.06344],[78.59239,16.0691],[78.59625,16.07797],[78.60163,16.08393],[78.60996,16.08713],[78.62724,16.08764],[78.65022,16.07881],[78.65042,16.07199],[78.66814,16.0545],[78.67262,16.04587],[78.68119,16.03479],[78.69937,16.02715],[78.72357,16.02012],[78.7355,16.00815],[78.74091,16.00866],[78.75296,16.01628],[78.76613,16.01644],[78.78548,16.02115],[78.79606,16.0284],[78.80121,16.03776],[78.8194,16.0483],[78.82765,16.06082],[78.83706,16.07037],[78.84029,16.07814],[78.84226,16.08591],[78.84231,16.09637],[78.83304,16.13732],[78.83385,16.14448],[78.85248,16.14886],[78.86463,16.14702],[78.87215,16.14397],[78.87651,16.13553],[78.87939,16.11761],[78.88698,16.09848],[78.88905,16.08519],[78.8956,16.08558],[78.90611,16.09483],[78.91793,16.10003],[78.92203,16.10431],[78.92162,16.12282],[78.92438,16.13084],[78.92428,16.13578],[78.9225,16.14003],[78.91503,16.14851],[78.91054,16.16407],[78.9047,16.17458],[78.90376,16.17935],[78.9054,16.18359],[78.91106,16.18843],[78.93001,16.19805],[78.94896,16.20354],[78.96027,16.20907],[78.96774,16.21112],[78.98572,16.21071],[79.00951,16.24021],[79.02918,16.24174],[79.04802,16.23867],[79.05858,16.23519],[79.07211,16.22707],[79.08411,16.23012],[79.09443,16.22429],[79.10158,16.22282],[79.10864,16.22848],[79.11972,16.23194],[79.12377,16.23102],[79.146,16.21397],[79.15695,16.20929],[79.17191,16.2104],[79.20628,16.22091],[79.21655,16.2274],[79.22063,16.23408],[79.22266,16.24186],[79.22459,16.27119],[79.23038,16.28249],[79.23104,16.31433],[79.23381,16.32199],[79.2343,16.33384],[79.23359,16.336],[79.21433,16.34935],[79.2102,16.35823],[79.21243,16.37347],[79.20844,16.37929],[79.20772,16.38475],[79.21156,16.44739],[79.21795,16.45382],[79.23336,16.4592],[79.21706,16.47756],[79.2146,16.48348],[79.21483,16.48791],[79.22088,16.51434],[79.22856,16.52477],[79.24125,16.52917],[79.24477,16.53181],[79.25027,16.54715],[79.25222,16.55925],[79.25684,16.56582],[79.26164,16.56692],[79.28136,16.56061],[79.29102,16.56157],[79.29552,16.56301],[79.30824,16.57415],[79.32643,16.57646],[79.34011,16.58264],[79.35369,16.57927],[79.37677,16.58275],[79.39682,16.57978],[79.41864,16.58025],[79.43305,16.59075],[79.43914,16.61291],[79.44717,16.61971],[79.45958,16.62366],[79.48333,16.6231],[79.49401,16.63304],[79.50385,16.63592],[79.51037,16.63574],[79.52942,16.63064],[79.54209,16.63225],[79.57563,16.64978],[79.59218,16.66988],[79.59892,16.67323],[79.60632,16.67131],[79.62149,16.66318],[79.63309,16.66042],[79.64828,16.67003],[79.66219,16.68665],[79.68154,16.69437],[79.71389,16.68924],[79.72289,16.69028],[79.72932,16.69551],[79.74461,16.71908],[79.77399,16.73078],[79.78583,16.73014],[79.79251,16.7255],[79.79887,16.71068],[79.8112,16.69568],[79.81726,16.69187],[79.82109,16.69151],[79.82816,16.69378],[79.85106,16.70584],[79.85885,16.70465],[79.87753,16.6973],[79.88551,16.68735],[79.89065,16.65888],[79.89372,16.65011],[79.91011,16.63392],[79.93235,16.63131],[79.94975,16.6359],[79.96477,16.64495],[79.97735,16.66228],[79.99741,16.70209],[80.00758,16.70884],[80.02215,16.71033],[80.03004,16.71441],[80.03664,16.72766],[80.05496,16.74465],[80.05386,16.76543],[80.06645,16.78641],[80.0706,16.80169],[80.06982,16.80833],[80.07325,16.81719],[80.07106,16.81809],[80.07079,16.8213],[80.0595,16.82519],[80.04818,16.83323],[80.0464,16.83868],[80.04684,16.85334],[80.02901,16.85202],[80.01704,16.85423],[80.00395,16.86179],[80.00363,16.8639],[79.99876,16.86521],[80.00156,16.86769],[80.00508,16.87645],[80.00458,16.88105],[80.01242,16.89268],[80.01738,16.91497],[80.02456,16.91506],[80.02706,16.91754],[80.0404,16.91808],[80.04455,16.92926],[80.05059,16.93642],[80.0519,16.9421],[80.04822,16.94943],[80.05245,16.95987],[80.05743,16.96404],[80.05544,16.97142],[80.08338,16.97018],[80.09156,16.96832],[80.09411,16.97558],[80.09516,16.99065],[80.10255,16.99096],[80.10963,16.98721],[80.1204,16.98789],[80.12048,16.99122],[80.12786,16.99227],[80.14024,16.99059],[80.14637,17.00026],[80.15336,17.00694],[80.15729,17.00741],[80.16202,17.00494],[80.16776,17.00559],[80.17017,17.01683],[80.17773,17.0166],[80.18038,17.01902],[80.18729,17.01995],[80.19263,17.02675],[80.192,17.03354],[80.19645,17.04403],[80.20409,17.03829],[80.19958,17.02649],[80.20206,17.01703],[80.21143,17.01027],[80.22287,17.00784],[80.22616,17.01532],[80.24007,17.00512],[80.2404,17.00215],[80.25607,17.0011],[80.25686,16.99893],[80.26488,16.99724],[80.2669,17.00134],[80.27047,17.00399],[80.28266,17.00767],[80.29359,16.99633],[80.29436,16.99383],[80.29027,16.98108],[80.29352,16.97666],[80.30659,16.97379],[80.30502,16.9537],[80.31647,16.94844],[80.31309,16.94053],[80.31387,16.92483],[80.31159,16.91666],[80.31561,16.9155],[80.32381,16.90643],[80.32497,16.90033],[80.3217,16.87963],[80.34401,16.87437],[80.3409,16.8597],[80.34938,16.85912],[80.37407,16.85239],[80.37339,16.8395],[80.37961,16.84108],[80.3737,16.82823],[80.38043,16.81745],[80.38317,16.81581],[80.38601,16.81625],[80.38733,16.81896],[80.38607,16.8249],[80.39084,16.82474],[80.39237,16.82793],[80.39668,16.8275],[80.39971,16.83355],[80.40422,16.83205],[80.4078,16.84823],[80.38347,16.85003],[80.37837,16.85199],[80.38278,16.8549],[80.37883,16.86156],[80.38413,16.86525],[80.38526,16.86329],[80.41212,16.8519],[80.42771,16.8498],[80.42794,16.84688],[80.42971,16.84673],[80.42859,16.83812],[80.4344,16.83743],[80.4382,16.83425],[80.44088,16.83427],[80.44141,16.83078],[80.45007,16.82723],[80.45327,16.82301],[80.46016,16.82004],[80.46424,16.81998],[80.46614,16.81635],[80.46383,16.80536],[80.46445,16.79545],[80.4863,16.79111],[80.49405,16.78369],[80.50439,16.77869],[80.52619,16.77459],[80.55158,16.77501],[80.57024,16.76801],[80.57687,16.77715],[80.58495,16.78355],[80.58716,16.78225],[80.58879,16.78532],[80.59685,16.7902],[80.59711,16.79221],[80.61297,16.79354],[80.5944,16.80281],[80.58455,16.81295],[80.57741,16.82333],[80.56553,16.82684],[80.56285,16.83284],[80.57014,16.84852],[80.57119,16.86112],[80.56831,16.86939],[80.57756,16.87895],[80.59591,16.88462],[80.59482,16.89889],[80.58768,16.90229],[80.58712,16.90418],[80.59234,16.90744],[80.60194,16.91859],[80.59691,16.92386],[80.59171,16.92299],[80.5904,16.92709],[80.58406,16.9288],[80.58132,16.93252],[80.58098,16.93615],[80.57547,16.93814],[80.57349,16.94132],[80.56702,16.94316],[80.54577,16.95693],[80.5347,16.96141],[80.5261,16.94788],[80.50546,16.95654],[80.49923,16.95633],[80.49559,16.94999],[80.49345,16.92743],[80.48203,16.93213],[80.47302,16.93848],[80.46743,16.94545],[80.44967,16.95476],[80.4194,16.96257],[80.40765,16.96397],[80.37136,16.97581],[80.3634,16.97607],[80.36662,16.98144],[80.37576,16.9887],[80.38692,17.00459],[80.38785,17.00927],[80.40703,17.0158],[80.4074,17.02561],[80.39576,17.03573],[80.39593,17.04633],[80.39825,17.04909],[80.39849,17.0526],[80.39382,17.05477],[80.39166,17.0613],[80.38573,17.06793],[80.39102,17.07467],[80.40063,17.08196],[80.40382,17.08196],[80.40443,17.08676],[80.40785,17.08785],[80.40903,17.0915],[80.41896,17.0923],[80.41779,17.08788],[80.41855,17.07843],[80.41705,17.07361],[80.43172,17.05552],[80.43863,17.03758],[80.4533,17.03476],[80.46486,17.03002],[80.47138,17.05037],[80.486,17.05208],[80.49093,17.05097],[80.49767,17.06265],[80.5054,17.06846],[80.51008,17.0869],[80.50403,17.09264],[80.5055,17.09824],[80.51288,17.10925],[80.51408,17.12205],[80.52759,17.11891],[80.54234,17.1246],[80.54882,17.13079],[80.55429,17.1336],[80.55732,17.13212],[80.56318,17.1331],[80.58002,17.15307],[80.60054,17.14228],[80.6064,17.13518],[80.61699,17.13158],[80.61825,17.12842],[80.6279,17.1299],[80.6363,17.12853],[80.64548,17.12352],[80.64204,17.1159],[80.64924,17.11136],[80.6656,17.10512],[80.67055,17.10119],[80.66805,17.09493],[80.65889,17.09156],[80.65709,17.08956],[80.64992,17.07137],[80.65381,17.06861],[80.6664,17.06748],[80.67107,17.07004],[80.67347,17.06664],[80.6764,17.07075],[80.67967,17.07203],[80.69496,17.07414],[80.69729,17.07679],[80.69634,17.08006],[80.69898,17.0816],[80.69945,17.08379],[80.70536,17.08078],[80.71058,17.08188],[80.7368,17.07769],[80.73888,17.07959],[80.74465,17.07694],[80.74647,17.07777],[80.75089,17.07262],[80.76498,17.06661],[80.79046,17.06346],[80.79874,17.06124],[80.81041,17.05532],[80.82882,17.05277],[80.84079,17.04671],[80.84531,17.03997],[80.85584,17.04652],[80.85911,17.05261],[80.86551,17.05856],[80.87149,17.06984],[80.87716,17.07043],[80.87611,17.07488],[80.86871,17.078],[80.86758,17.08045],[80.87521,17.09545],[80.87389,17.09854],[80.87643,17.10559],[80.87348,17.1141],[80.86833,17.12027],[80.86774,17.12313],[80.8693,17.12669],[80.87364,17.12877],[80.87825,17.13514],[80.8777,17.14981],[80.87944,17.16083],[80.8924,17.15937],[80.90703,17.15385],[80.91659,17.15369],[80.92399,17.15785],[80.92309,17.16129],[80.9252,17.16775],[80.92643,17.18348],[80.92267,17.18859],[80.91845,17.18974],[80.92105,17.20028],[80.91676,17.21096],[80.91676,17.21609],[80.91888,17.21974],[80.94128,17.21929],[80.96029,17.20407],[80.97629,17.20027],[80.99436,17.19132],[80.99845,17.19046],[81.00862,17.19186],[81.01543,17.1944],[81.03127,17.19033],[81.03687,17.19248],[81.04357,17.20233],[81.0495,17.20707],[81.05559,17.21956],[81.05461,17.22487],[81.07961,17.21528],[81.09037,17.2196],[81.10943,17.22347],[81.1276,17.22431],[81.15947,17.2308],[81.17398,17.23034],[81.17301,17.23203],[81.17502,17.23697],[81.18609,17.24849],[81.18759,17.25465],[81.18394,17.25835],[81.17818,17.26904],[81.17957,17.27837],[81.17666,17.28767],[81.18137,17.30445],[81.19041,17.32481],[81.21031,17.32605],[81.22205,17.32149],[81.23357,17.32036],[81.23913,17.32084],[81.23913,17.32349],[81.24463,17.32309],[81.24567,17.32579],[81.26825,17.32003],[81.27403,17.31719],[81.27851,17.32341],[81.28852,17.32807],[81.30111,17.34066],[81.3053,17.34591],[81.31199,17.36069],[81.31631,17.36448],[81.31647,17.369],[81.32264,17.37455],[81.31859,17.39842],[81.31238,17.40872],[81.30051,17.41271],[81.26854,17.41826],[81.25974,17.42222],[81.24551,17.43303],[81.24269,17.43206],[81.23633,17.43558],[81.22143,17.43944],[81.21905,17.44228],[81.21176,17.44174],[81.20526,17.44959],[81.2023,17.44066],[81.2027,17.43395],[81.1933,17.43563],[81.18298,17.44025],[81.17233,17.44904],[81.17555,17.46364],[81.14825,17.46365],[81.15968,17.48437],[81.14215,17.48859],[81.14487,17.49508],[81.14051,17.50466],[81.13848,17.51624],[81.12728,17.52642],[81.1245,17.52706],[81.11746,17.52207],[81.10111,17.5056],[81.09756,17.50426],[81.09135,17.50565],[81.08007,17.51505],[81.04721,17.51951],[81.0199,17.52003],[81.01483,17.52213],[81.01368,17.53662],[81.00843,17.547],[81.00281,17.55061],[80.9984,17.56468],[80.9888,17.57242],[80.98283,17.58274],[80.97673,17.58719],[80.96931,17.59838],[80.97552,17.61914],[80.98411,17.62621],[80.99592,17.62908],[81.00704,17.62171],[81.00955,17.64365],[81.00526,17.64876],[80.99209,17.65346],[80.98006,17.65261],[80.96237,17.64572],[80.95236,17.63703],[80.9381,17.63258],[80.89704,17.64064],[80.88274,17.64591],[80.87813,17.65067],[80.87607,17.66022],[80.8764,17.66838],[80.89079,17.68976],[80.89475,17.70291],[80.89099,17.71368],[80.89076,17.72188],[80.88555,17.73568],[80.90237,17.7462],[80.913,17.74592],[80.91458,17.74653],[80.91273,17.74948],[80.91444,17.75046],[80.915,17.74836],[80.91757,17.74811],[80.91946,17.7562],[80.92338,17.75729],[80.92785,17.76178],[80.94631,17.76019],[80.95562,17.77291],[80.95532,17.77462],[80.96343,17.77739],[80.96587,17.77978],[80.97217,17.77796],[80.97342,17.78012],[80.97688,17.77632],[80.98423,17.75566],[80.99132,17.74992],[81.01592,17.74503],[81.02763,17.74813],[81.04056,17.74761],[81.04416,17.74042],[81.05051,17.73401],[81.05817,17.73309],[81.06983,17.74071],[81.08258,17.7531],[81.09565,17.7622],[81.10426,17.77201],[81.10388,17.7732],[81.096,17.77449],[81.08978,17.79104],[81.08559,17.79802],[81.07326,17.78645],[81.04662,17.78231],[81.03898,17.78415],[81.03176,17.78847],[81.01767,17.79138],[81.00822,17.79937],[81.00346,17.81952],[81.00323,17.83062],[80.99645,17.84907],[80.99655,17.87175],[80.99417,17.8809],[80.99934,17.90329],[80.99834,17.91679],[80.98784,17.94445],[80.9792,18.00445],[80.97273,18.02483],[80.96954,18.03175],[80.96426,18.03814],[80.96976,18.04385],[80.96905,18.04643],[80.96244,18.06298],[80.95344,18.07863],[80.94926,18.08286],[80.95178,18.09012],[80.95551,18.12906],[80.97874,18.1508],[80.97903,18.17541],[80.95766,18.17355],[80.95162,18.16366],[80.94236,18.16038],[80.94164,18.15662],[80.9399,18.15543],[80.91417,18.14117],[80.89108,18.13598],[80.86667,18.13692],[80.86545,18.14145],[80.86016,18.14786],[80.8604,18.16139],[80.85708,18.17442],[80.85854,18.18645],[80.85291,18.202],[80.85521,18.20416],[80.86391,18.20265],[80.87097,18.20479],[80.87261,18.21058],[80.86594,18.23013],[80.86052,18.23199],[80.84343,18.23244],[80.83672,18.23892],[80.82359,18.23608],[80.8226,18.22411],[80.82407,18.19104],[80.81747,18.18911],[80.81326,18.18019],[80.79911,18.16817],[80.77544,18.16674],[80.76003,18.16763],[80.74497,18.17033],[80.7369,18.17716],[80.7372,18.22209],[80.77678,18.24285],[80.79265,18.24945],[80.79428,18.25456],[80.79406,18.26009],[80.79186,18.26274],[80.78011,18.26663],[80.77548,18.2782],[80.76884,18.28794],[80.76186,18.28823],[80.75949,18.28987],[80.75683,18.29506],[80.75874,18.2993],[80.75772,18.30191],[80.74872,18.30892],[80.74765,18.32996],[80.74214,18.3411],[80.7315,18.35491],[80.7269,18.36913],[80.73023,18.37592],[80.7294,18.37884],[80.72276,18.38456],[80.71968,18.3908],[80.73217,18.40122],[80.73487,18.41284],[80.72286,18.41518],[80.72083,18.41104],[80.71827,18.40973],[80.69895,18.42143],[80.6962,18.42473],[80.69824,18.43756],[80.70531,18.43986],[80.70172,18.44459],[80.69576,18.44457],[80.68806,18.44736],[80.6861,18.45826],[80.67873,18.46077],[80.67334,18.46656],[80.65531,18.47586],[80.6513,18.4859],[80.63721,18.50435],[80.63685,18.50702],[80.64094,18.51151],[80.63757,18.52253],[80.63109,18.5219],[80.62276,18.52856],[80.6185,18.52767],[80.61064,18.54237],[80.59991,18.55304],[80.59096,18.5579],[80.57141,18.56468],[80.56749,18.57125],[80.55643,18.57974],[80.54228,18.58691],[80.53451,18.58835],[80.53525,18.59074],[80.53074,18.59894],[80.52813,18.60266],[80.51929,18.60865],[80.51883,18.61431],[80.51466,18.61933],[80.5016,18.62157],[80.48826,18.63109],[80.47917,18.62873],[80.47752,18.62584],[80.46554,18.62394],[80.45612,18.62936],[80.43039,18.61646],[80.42762,18.61288],[80.42241,18.61512],[80.42,18.6104],[80.40914,18.60979],[80.39585,18.60493],[80.39415,18.60061],[80.38845,18.59666],[80.37827,18.60891],[80.37516,18.61066],[80.36616,18.60706],[80.36295,18.60323],[80.36215,18.59915],[80.35645,18.59508],[80.34812,18.59414],[80.3349,18.61195],[80.33102,18.62821],[80.32749,18.63538],[80.31867,18.64215],[80.30416,18.68604],[80.28417,18.7168],[80.27995,18.72074],[80.27149,18.7233],[80.26614,18.72055],[80.26501,18.7175],[80.25223,18.70681],[80.23864,18.70573],[80.23366,18.70241],[80.22968,18.70186],[80.22628,18.7056],[80.21933,18.70792],[80.21277,18.70572],[80.20043,18.69256],[80.19937,18.68321],[80.19657,18.6808],[80.19047,18.68046],[80.1787,18.68327],[80.17416,18.68818],[80.16862,18.69971],[80.15771,18.70098],[80.14846,18.69309],[80.14002,18.693],[80.12856,18.68743],[80.12438,18.68136],[80.11812,18.68052],[80.11225,18.68288],[80.10415,18.69157],[80.09904,18.69448],[80.08851,18.70728],[80.08207,18.70725],[80.07459,18.71052],[80.06926,18.71957],[80.06462,18.72326],[80.05694,18.72332],[80.0528,18.72506],[80.04141,18.74299],[80.03868,18.75297],[80.03455,18.75499],[80.02498,18.75494],[80.01854,18.77038],[80.00099,18.77607],[79.99809,18.77592],[79.99583,18.77082],[79.99305,18.76993],[79.96415,18.77382],[79.95915,18.7773],[79.94949,18.78915],[79.929,18.80263],[79.92105,18.81023],[79.91403,18.82381],[79.91578,18.82991],[79.92825,18.84091],[79.94138,18.84604],[79.94764,18.85018],[79.95851,18.85942],[79.96161,18.86663],[79.95867,18.88861],[79.95361,18.9045],[79.95742,18.92279],[79.95705,18.94288],[79.94162,18.99209],[79.94096,19.00023],[79.9424,19.00066],[79.94256,19.00698],[79.94026,19.03256],[79.93707,19.04269],[79.93191,19.04808],[79.92792,19.04932],[79.92063,19.04971],[79.89922,19.04024],[79.87704,19.0388],[79.8711,19.04102],[79.86859,19.04424],[79.866,19.0542],[79.86338,19.06869],[79.8634,19.07782],[79.85896,19.09276],[79.85843,19.10242],[79.86146,19.11226],[79.87375,19.12405],[79.92532,19.15159],[79.94567,19.16894],[79.9465,19.17425],[79.94528,19.17914],[79.92545,19.21064],[79.92422,19.21546],[79.92474,19.2273],[79.93085,19.2508],[79.93636,19.26413],[79.95057,19.28904],[79.95482,19.29376],[79.96227,19.29735],[79.96587,19.30304],[79.96557,19.31307],[79.95909,19.33086],[79.95908,19.33594],[79.96797,19.35663],[79.97023,19.37103],[79.96953,19.37469],[79.97142,19.37681],[79.97183,19.38156],[79.97404,19.3855],[79.97846,19.3872],[79.97972,19.3894],[79.97718,19.39418],[79.97794,19.40036],[79.9747,19.40436],[79.97469,19.41099],[79.97239,19.41621],[79.95248,19.44095],[79.94761,19.44968],[79.94822,19.4606],[79.94644,19.46782],[79.94388,19.47071],[79.93241,19.47654],[79.91487,19.49584],[79.90196,19.5009],[79.88085,19.50357],[79.87095,19.50906],[79.86458,19.51051],[79.85532,19.52103],[79.84817,19.52653],[79.84564,19.5328],[79.83287,19.53855],[79.82842,19.54341],[79.8249,19.55053],[79.82411,19.55679],[79.82125,19.56021],[79.82115,19.56422],[79.81483,19.57542],[79.79858,19.58197],[79.77861,19.59967],[79.75345,19.60753],[79.74407,19.6087],[79.73756,19.6064],[79.71798,19.58945],[79.709,19.58448],[79.68895,19.58387],[79.67532,19.57971],[79.65829,19.57971],[79.63546,19.57594],[79.62792,19.57317],[79.61414,19.55968],[79.61166,19.54752],[79.60604,19.53283],[79.60297,19.51455],[79.60046,19.50951],[79.59615,19.50728],[79.58404,19.50913],[79.569,19.51827],[79.55293,19.52417],[79.54839,19.53162],[79.54538,19.5507],[79.54248,19.55423],[79.53993,19.55466],[79.52922,19.55105],[79.51861,19.54311],[79.52081,19.53489],[79.51859,19.52018],[79.51483,19.51944],[79.50226,19.51164],[79.50076,19.50739],[79.49839,19.50569],[79.48263,19.50628],[79.47142,19.50019],[79.46896,19.50957],[79.45676,19.51913],[79.45327,19.5201],[79.44605,19.52692],[79.44221,19.52798],[79.43333,19.53726],[79.42256,19.53804],[79.423,19.53016],[79.42047,19.52976],[79.40532,19.53567],[79.40171,19.53845],[79.39621,19.54806],[79.39175,19.55287],[79.38732,19.55471],[79.38568,19.55833],[79.3768,19.55888],[79.37275,19.56099],[79.36947,19.5727],[79.36708,19.57294],[79.36573,19.57633],[79.35739,19.57758],[79.33481,19.57479],[79.32618,19.57743],[79.31844,19.57672],[79.31854,19.5677],[79.31393,19.56642],[79.30985,19.57151],[79.31026,19.57796],[79.30684,19.59656],[79.28436,19.59552],[79.27295,19.59884],[79.2511,19.61587],[79.24356,19.61669],[79.23864,19.60617],[79.24441,19.59487],[79.25312,19.59329],[79.25103,19.5775],[79.24622,19.56752],[79.23712,19.55714],[79.24002,19.53524],[79.23373,19.52001],[79.22116,19.52099],[79.21403,19.51119],[79.20746,19.50613],[79.20738,19.49763],[79.20385,19.49408],[79.20685,19.48582],[79.21075,19.48174],[79.21577,19.48094],[79.22319,19.47235],[79.22359,19.46907],[79.21568,19.46464],[79.20821,19.46497],[79.19031,19.45898],[79.18007,19.46188],[79.16783,19.47236],[79.16135,19.48826],[79.15755,19.48929],[79.14299,19.50053],[79.13861,19.50048],[79.13566,19.50615],[79.13311,19.50783],[79.12093,19.512],[79.11434,19.51976],[79.10539,19.52238],[79.09803,19.53203],[79.0769,19.5324],[79.06769,19.53566],[79.06534,19.53963],[79.04601,19.54833],[79.03945,19.5476],[79.02402,19.54178],[79.00687,19.54202],[78.99803,19.54008],[78.99775,19.54907],[78.98125,19.56084],[78.97985,19.55766],[78.9768,19.55694],[78.97422,19.54938],[78.9521,19.54886],[78.94044,19.55187],[78.93767,19.56187],[78.94649,19.56161],[78.95254,19.56498],[78.96487,19.57358],[78.97283,19.58239],[78.97178,19.59001],[78.95914,19.59547],[78.95562,19.60017],[78.95537,19.61912],[78.96119,19.63169],[78.96185,19.63744],[78.95739,19.64717],[78.95556,19.65579],[78.94423,19.66174],[78.91972,19.662],[78.91986,19.66697],[78.91582,19.6669],[78.91165,19.66911],[78.90768,19.66799],[78.90354,19.67001],[78.89601,19.66446],[78.88645,19.66245],[78.89048,19.65941],[78.88673,19.65507],[78.86809,19.65903],[78.86159,19.65741],[78.85192,19.65836],[78.85584,19.67731],[78.85569,19.68666],[78.85715,19.68962],[78.85992,19.68949],[78.84943,19.72197],[78.85237,19.7279],[78.85115,19.73613],[78.84795,19.7355],[78.84532,19.74688],[78.8404,19.75634],[78.84096,19.76189],[78.83351,19.76012],[78.82588,19.75514],[78.81692,19.76183],[78.80691,19.75689],[78.80216,19.75653],[78.79693,19.76001],[78.79563,19.76727],[78.7863,19.77653],[78.78237,19.77841],[78.77734,19.77986],[78.77112,19.77938],[78.75637,19.77251],[78.75171,19.77466],[78.74611,19.78117],[78.74006,19.78313],[78.73002,19.78023],[78.72415,19.76775],[78.71916,19.76665],[78.70609,19.7723],[78.70137,19.78674],[78.69256,19.79103],[78.67513,19.79486],[78.66635,19.79975],[78.65505,19.80019],[78.64274,19.80781],[78.62552,19.80816],[78.61899,19.80998],[78.61115,19.81632],[78.60731,19.81761],[78.58612,19.81879],[78.57229,19.81585],[78.56323,19.82108],[78.55201,19.82408],[78.54229,19.82383],[78.53794,19.82005],[78.53078,19.81845],[78.51502,19.81893],[78.50895,19.81205],[78.50722,19.79755],[78.49521,19.79263],[78.49024,19.79268],[78.48503,19.79605],[78.48315,19.80381],[78.47246,19.81734],[78.46923,19.81772],[78.45389,19.81295],[78.43168,19.81488],[78.42295,19.81763],[78.40028,19.83403],[78.38598,19.84609],[78.38179,19.85704],[78.38304,19.87391],[78.38067,19.88044],[78.36964,19.87977],[78.36043,19.8834],[78.33565,19.88358]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"37","area_level":"State","area_name":"Ladakh","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[74.71192,37.06379],[74.70886,37.07331],[74.70739,37.08729],[74.69012,37.08814],[74.68117,37.08671],[74.65237,37.07009],[74.6338,37.0637],[74.60479,37.05925],[74.58941,37.05916],[74.58167,37.05757],[74.56812,37.05176],[74.57496,37.04956],[74.57791,37.0458],[74.58042,37.02101],[74.56914,36.9703],[74.56575,36.95926],[74.5641,36.9579],[74.56054,36.9572],[74.55107,36.95907],[74.54255,36.96135],[74.54033,36.96332],[74.53729,36.97737],[74.53431,36.98324],[74.52296,36.99513],[74.45683,36.99829],[74.42642,36.99569],[74.41715,36.99343],[74.41269,36.98452],[74.40818,36.98156],[74.38866,36.97347],[74.37569,36.97338],[74.3508,36.96007],[74.33644,36.94703],[74.32913,36.93815],[74.31482,36.92733],[74.28261,36.90919],[74.24897,36.89361],[74.2211,36.90271],[74.15575,36.91051],[74.1442,36.89092],[74.137,36.86303],[74.1353,36.85013],[74.13346,36.8479],[74.11631,36.83573],[74.08883,36.84214],[74.08552,36.84151],[74.06868,36.8313],[74.04652,36.81082],[74.02778,36.82611],[74.00838,36.83377],[73.99542,36.83417],[73.98196,36.82958],[73.9615,36.83927],[73.95723,36.84338],[73.95056,36.84578],[73.94127,36.86211],[73.9149,36.88298],[73.90675,36.88383],[73.89302,36.87546],[73.88259,36.88098],[73.8705,36.89421],[73.85926,36.89732],[73.82044,36.90309],[73.81017,36.88858],[73.80072,36.8875],[73.79961,36.89359],[73.7941,36.90016],[73.78693,36.90015],[73.77358,36.8963],[73.76555,36.90519],[73.75876,36.90528],[73.75132,36.90969],[73.74486,36.9089],[73.73351,36.89894],[73.72873,36.89799],[73.72055,36.9007],[73.70345,36.91209],[73.69724,36.91431],[73.67109,36.9117],[73.67136,36.90449],[73.66772,36.90035],[73.66529,36.89182],[73.66701,36.88088],[73.6825,36.87344],[73.68726,36.86994],[73.68942,36.86591],[73.70619,36.85795],[73.70697,36.84642],[73.70551,36.83781],[73.71179,36.83437],[73.71984,36.83633],[73.7253,36.83508],[73.73202,36.83098],[73.73663,36.83015],[73.73866,36.82599],[73.74909,36.82737],[73.7544,36.81889],[73.75884,36.81615],[73.77397,36.81503],[73.78813,36.81897],[73.79757,36.8182],[73.79636,36.80248],[73.80041,36.79929],[73.80151,36.79422],[73.8064,36.79083],[73.81479,36.78901],[73.83159,36.79528],[73.83699,36.79513],[73.84011,36.79369],[73.85323,36.77603],[73.86799,36.76632],[73.88222,36.74847],[73.8841,36.7392],[73.88305,36.73304],[73.88529,36.7299],[73.87364,36.72059],[73.87865,36.70709],[73.87178,36.7014],[73.84866,36.70237],[73.81249,36.71477],[73.79555,36.71884],[73.78446,36.71456],[73.77985,36.71039],[73.77478,36.70209],[73.75673,36.70634],[73.73671,36.70885],[73.72707,36.71329],[73.71721,36.71171],[73.70985,36.71233],[73.70362,36.70521],[73.69498,36.69912],[73.69222,36.68912],[73.68311,36.68657],[73.64836,36.69309],[73.638,36.69795],[73.63482,36.69816],[73.62158,36.69034],[73.6156,36.69112],[73.60682,36.69492],[73.59271,36.69284],[73.58654,36.6994],[73.58556,36.70949],[73.5793,36.72238],[73.55433,36.70956],[73.54982,36.71607],[73.5342,36.71138],[73.5199,36.71029],[73.51248,36.72169],[73.50984,36.72193],[73.49763,36.71314],[73.47931,36.71946],[73.4791,36.72312],[73.46857,36.72851],[73.46641,36.73244],[73.46197,36.73505],[73.45866,36.73259],[73.44671,36.72892],[73.43388,36.731],[73.42796,36.73311],[73.42598,36.73626],[73.42532,36.74291],[73.42144,36.74298],[73.41644,36.74102],[73.41017,36.73477],[73.39895,36.73302],[73.39442,36.73007],[73.38988,36.72978],[73.38417,36.7329],[73.37378,36.73106],[73.35158,36.735],[73.35211,36.72824],[73.34833,36.72198],[73.34783,36.7164],[73.34461,36.71472],[73.31079,36.71432],[73.30394,36.70627],[73.29412,36.70423],[73.28572,36.70379],[73.26679,36.70618],[73.25556,36.70452],[73.24612,36.70538],[73.23801,36.71152],[73.2288,36.70149],[73.20955,36.69551],[73.2014,36.69553],[73.19229,36.69773],[73.18669,36.70119],[73.1855,36.70492],[73.18656,36.7103],[73.17504,36.71797],[73.17067,36.72403],[73.17055,36.71913],[73.16788,36.71302],[73.16254,36.70759],[73.13809,36.69851],[73.11644,36.6842],[73.10584,36.68589],[73.09522,36.68336],[73.06765,36.70062],[73.07071,36.67983],[73.08043,36.66998],[73.07802,36.65286],[73.07985,36.6388],[73.07411,36.62878],[73.09629,36.61353],[73.09789,36.60992],[73.09717,36.60599],[73.09395,36.59986],[73.0795,36.5856],[73.07802,36.56918],[73.06195,36.56119],[73.0525,36.54868],[73.05366,36.54094],[73.05195,36.53297],[73.01767,36.52503],[73.00017,36.51809],[72.99916,36.52006],[72.99029,36.51305],[72.97791,36.51152],[72.98276,36.50148],[72.97475,36.49433],[72.97423,36.47537],[72.97477,36.47352],[72.9823,36.47467],[72.98749,36.47284],[72.98792,36.46927],[72.98265,36.46564],[72.98247,36.46171],[72.97936,36.45732],[72.97345,36.45384],[72.96345,36.45838],[72.95558,36.45926],[72.94971,36.46193],[72.94606,36.46621],[72.92859,36.45493],[72.92361,36.45353],[72.90815,36.46092],[72.90461,36.4601],[72.88658,36.44434],[72.85967,36.43556],[72.85915,36.43366],[72.87461,36.41962],[72.87583,36.41693],[72.87067,36.41177],[72.87009,36.40748],[72.8718,36.40038],[72.87554,36.39456],[72.87412,36.39041],[72.86407,36.3789],[72.85097,36.37238],[72.85367,36.36635],[72.84009,36.36733],[72.81608,36.35644],[72.80861,36.351],[72.80603,36.34509],[72.80335,36.33081],[72.79994,36.32794],[72.78887,36.32611],[72.77825,36.3173],[72.7739,36.31593],[72.77032,36.30912],[72.76594,36.30842],[72.7609,36.30463],[72.76094,36.3007],[72.75918,36.29858],[72.75652,36.29727],[72.74825,36.3012],[72.73114,36.29826],[72.72655,36.29073],[72.72113,36.28982],[72.71975,36.28498],[72.71407,36.28474],[72.71341,36.27856],[72.71123,36.27625],[72.70756,36.27439],[72.68056,36.27103],[72.67417,36.26222],[72.68343,36.24929],[72.68483,36.24388],[72.68002,36.24334],[72.67023,36.25454],[72.66509,36.25569],[72.6622,36.25813],[72.64446,36.25841],[72.62396,36.26881],[72.61168,36.26949],[72.60512,36.2634],[72.58466,36.25689],[72.58072,36.25262],[72.57694,36.24255],[72.57274,36.23913],[72.57237,36.22852],[72.57395,36.2238],[72.56486,36.21436],[72.5575,36.21404],[72.54731,36.20541],[72.5505,36.19854],[72.54565,36.19542],[72.54452,36.18683],[72.54018,36.17913],[72.53578,36.17552],[72.53592,36.1733],[72.54913,36.16464],[72.55125,36.16132],[72.55072,36.15002],[72.55346,36.14671],[72.56123,36.14397],[72.5617,36.13989],[72.54781,36.13006],[72.54038,36.12769],[72.53415,36.11666],[72.52762,36.11022],[72.52081,36.09831],[72.51668,36.06733],[72.52592,36.05977],[72.53574,36.04729],[72.55833,36.04611],[72.56435,36.04723],[72.56876,36.04462],[72.5794,36.03583],[72.5846,36.02508],[72.58163,36.02173],[72.58353,36.01707],[72.58086,36.0133],[72.57112,36.00837],[72.56777,36.00284],[72.56878,35.99945],[72.56798,36.00144],[72.56729,35.99813],[72.55932,35.99358],[72.56226,35.98913],[72.55996,35.98696],[72.54883,35.98235],[72.53932,35.98622],[72.53867,35.98512],[72.54246,35.9742],[72.54241,35.96954],[72.53583,35.96107],[72.53445,35.95742],[72.53489,35.95064],[72.52635,35.95029],[72.51308,35.93867],[72.51365,35.93447],[72.51689,35.9321],[72.51503,35.92669],[72.51847,35.90548],[72.53161,35.9031],[72.53953,35.89574],[72.54303,35.89449],[72.55824,35.89766],[72.56057,35.88937],[72.56542,35.88759],[72.57047,35.8821],[72.58002,35.86438],[72.5851,35.85937],[72.60994,35.86156],[72.6188,35.85336],[72.62517,35.8578],[72.62814,35.85786],[72.64967,35.8389],[72.67792,35.82372],[72.68438,35.82253],[72.69987,35.83099],[72.72337,35.8522],[72.72658,35.85305],[72.74294,35.84473],[72.76144,35.8323],[72.76485,35.83315],[72.77519,35.84146],[72.77941,35.8426],[72.78429,35.84145],[72.78652,35.8425],[72.78743,35.85535],[72.78914,35.8577],[72.7966,35.86017],[72.80821,35.8591],[72.81254,35.86586],[72.8157,35.88008],[72.81916,35.88172],[72.83932,35.86713],[72.87278,35.87474],[72.88272,35.8755],[72.89113,35.87374],[72.89357,35.87139],[72.88904,35.85433],[72.88933,35.84884],[72.89245,35.84454],[72.89837,35.84078],[72.91844,35.83906],[72.92959,35.84025],[72.95827,35.84722],[72.97764,35.85743],[72.98708,35.85981],[73.00023,35.85777],[73.0123,35.84929],[73.02882,35.84706],[73.05804,35.86269],[73.06815,35.8777],[73.08388,35.87746],[73.10587,35.85751],[73.12029,35.84782],[73.14076,35.83827],[73.14866,35.83118],[73.14791,35.82875],[73.14119,35.82507],[73.13721,35.81919],[73.1265,35.77623],[73.12642,35.72102],[73.12811,35.71639],[73.13292,35.71078],[73.13796,35.70663],[73.1536,35.70035],[73.15767,35.70007],[73.1624,35.69322],[73.19432,35.67371],[73.21262,35.66892],[73.23118,35.65116],[73.2496,35.63847],[73.25989,35.62893],[73.26868,35.62439],[73.29973,35.61117],[73.32735,35.60622],[73.36348,35.59722],[73.37323,35.58893],[73.39184,35.5677],[73.39812,35.55708],[73.47736,35.5719],[73.48109,35.57125],[73.49592,35.5599],[73.50151,35.55757],[73.50726,35.55794],[73.52212,35.56619],[73.52792,35.5673],[73.53673,35.56348],[73.55025,35.55057],[73.5568,35.54684],[73.5616,35.54639],[73.58667,35.55395],[73.60172,35.55564],[73.60928,35.55816],[73.62212,35.56784],[73.62839,35.56905],[73.63795,35.56296],[73.65182,35.55102],[73.65884,35.54763],[73.67343,35.54465],[73.72126,35.54922],[73.72436,35.54366],[73.72529,35.53486],[73.72961,35.52949],[73.7785,35.52289],[73.78128,35.51241],[73.78542,35.47708],[73.79204,35.45422],[73.7524,35.436],[73.73959,35.42904],[73.72702,35.41899],[73.71486,35.39436],[73.69828,35.37573],[73.69544,35.36907],[73.6939,35.35939],[73.69289,35.35081],[73.69514,35.33221],[73.69484,35.31841],[73.69851,35.3101],[73.72498,35.27305],[73.71906,35.24247],[73.70798,35.22248],[73.72939,35.2097],[73.73353,35.20853],[73.74115,35.21485],[73.75657,35.22293],[73.77051,35.236],[73.80833,35.2395],[73.83481,35.22622],[73.84537,35.22463],[73.85278,35.21406],[73.86119,35.20714],[73.86623,35.20618],[73.89697,35.21169],[73.91521,35.20802],[73.92455,35.2039],[73.9417,35.18646],[73.95684,35.16804],[73.9777,35.18064],[74.0003,35.17999],[73.99963,35.18278],[74.00283,35.18365],[74.00498,35.17747],[74.00476,35.16773],[74.01656,35.16322],[74.02536,35.15269],[74.03381,35.14686],[74.0441,35.14979],[74.05116,35.14651],[74.06341,35.14705],[74.07213,35.15317],[74.08006,35.14949],[74.08517,35.14888],[74.09106,35.14161],[74.09581,35.14074],[74.10663,35.14796],[74.11227,35.14853],[74.11399,35.14421],[74.11364,35.13769],[74.10707,35.13027],[74.10586,35.12572],[74.11099,35.1253],[74.11902,35.11838],[74.12794,35.11612],[74.13367,35.11005],[74.13374,35.10465],[74.14467,35.09579],[74.15611,35.09088],[74.19131,35.09092],[74.21514,35.09372],[74.22022,35.08859],[74.21755,35.08223],[74.21993,35.07534],[74.22349,35.0736],[74.22698,35.0743],[74.23523,35.08139],[74.24022,35.07914],[74.2425,35.07224],[74.24141,35.06006],[74.24513,35.05211],[74.25587,35.0442],[74.26517,35.04086],[74.28823,35.04768],[74.29155,35.05467],[74.29271,35.06452],[74.30523,35.06763],[74.34752,35.06487],[74.37566,35.066],[74.38198,35.06782],[74.39956,35.09182],[74.41062,35.10129],[74.41529,35.11174],[74.42705,35.11951],[74.43874,35.13007],[74.43994,35.12594],[74.4585,35.12527],[74.49944,35.11559],[74.51224,35.10354],[74.51974,35.09285],[74.5398,35.07498],[74.53885,35.06856],[74.53007,35.06013],[74.52907,35.05129],[74.53073,35.04618],[74.55552,35.03135],[74.56047,35.02602],[74.57837,35.02432],[74.58509,35.01812],[74.58778,35.00636],[74.58502,34.99794],[74.5763,34.98654],[74.57053,34.97563],[74.56975,34.96228],[74.57701,34.91392],[74.59032,34.91584],[74.59653,34.9218],[74.60423,34.9248],[74.62008,34.92063],[74.63434,34.90986],[74.6464,34.90364],[74.66253,34.90677],[74.66409,34.9004],[74.68415,34.8788],[74.69822,34.88072],[74.70167,34.88303],[74.71145,34.88092],[74.71669,34.86649],[74.72944,34.86325],[74.73948,34.85411],[74.74026,34.84836],[74.75017,34.84499],[74.76276,34.84408],[74.77694,34.84077],[74.78785,34.85246],[74.79846,34.85207],[74.80757,34.85048],[74.81329,34.84362],[74.82325,34.83736],[74.83969,34.84074],[74.85322,34.8311],[74.86104,34.82833],[74.87215,34.83019],[74.88707,34.82228],[74.89857,34.80972],[74.90145,34.80165],[74.90731,34.79253],[74.9186,34.78511],[74.92982,34.78697],[74.95063,34.80174],[74.95674,34.80813],[75.01634,34.84825],[75.0311,34.84843],[75.04376,34.84336],[75.05712,34.84234],[75.06403,34.84711],[75.06528,34.85749],[75.06362,34.87081],[75.06412,34.90524],[75.07164,34.9192],[75.1013,34.9191],[75.14197,34.87495],[75.14423,34.85028],[75.15809,34.84548],[75.17257,34.84267],[75.19062,34.83493],[75.22324,34.81752],[75.23966,34.80183],[75.25625,34.77389],[75.25093,34.74986],[75.26357,34.74458],[75.26256,34.73168],[75.2543,34.72169],[75.25827,34.69757],[75.23207,34.69082],[75.20791,34.66542],[75.20446,34.6535],[75.21818,34.6516],[75.20948,34.64767],[75.20603,34.64378],[75.20807,34.63868],[75.21272,34.63812],[75.22062,34.63383],[75.22533,34.63463],[75.22993,34.63303],[75.23288,34.63616],[75.2415,34.63778],[75.25407,34.62828],[75.25664,34.62151],[75.25834,34.61459],[75.25326,34.6075],[75.25337,34.60413],[75.26553,34.60226],[75.26912,34.59792],[75.27799,34.59439],[75.28637,34.59543],[75.28971,34.58917],[75.29956,34.58694],[75.30636,34.57875],[75.31181,34.57686],[75.31504,34.56965],[75.3199,34.56484],[75.32853,34.56879],[75.33366,34.56801],[75.3379,34.56474],[75.34416,34.56303],[75.35267,34.55315],[75.35562,34.54687],[75.36176,34.54209],[75.36111,34.54017],[75.36557,34.5381],[75.36418,34.52899],[75.36612,34.52145],[75.3572,34.52129],[75.35293,34.51759],[75.34738,34.5027],[75.34733,34.49556],[75.34292,34.48944],[75.34459,34.48505],[75.35024,34.48014],[75.34965,34.4753],[75.35324,34.46879],[75.34905,34.46346],[75.34016,34.46056],[75.33723,34.45167],[75.3326,34.45193],[75.33049,34.4503],[75.33291,34.44709],[75.33317,34.44295],[75.32754,34.43977],[75.3297,34.43623],[75.3342,34.43324],[75.3351,34.42927],[75.3538,34.42456],[75.35738,34.418],[75.36512,34.41848],[75.37234,34.4126],[75.36963,34.40176],[75.3666,34.39774],[75.36697,34.39103],[75.37714,34.38714],[75.37795,34.38511],[75.37878,34.38206],[75.37676,34.37567],[75.37338,34.3715],[75.38571,34.36614],[75.38051,34.3583],[75.38476,34.35402],[75.38577,34.34989],[75.37602,34.34195],[75.38398,34.33672],[75.38467,34.32824],[75.39605,34.31672],[75.39027,34.31103],[75.38892,34.30548],[75.39284,34.29708],[75.4035,34.28469],[75.41089,34.28469],[75.41922,34.28189],[75.42263,34.2839],[75.42612,34.28219],[75.43087,34.28357],[75.43737,34.28248],[75.43949,34.27949],[75.44424,34.28033],[75.45362,34.28592],[75.45918,34.27942],[75.47011,34.27939],[75.47485,34.27759],[75.48217,34.27165],[75.48295,34.26904],[75.48105,34.2624],[75.48379,34.2587],[75.48238,34.25506],[75.48858,34.24662],[75.4959,34.24097],[75.49696,34.23764],[75.49536,34.2324],[75.5029,34.23435],[75.51459,34.22671],[75.52313,34.229],[75.52973,34.22683],[75.53427,34.22366],[75.53824,34.22308],[75.55533,34.21141],[75.57026,34.21137],[75.57993,34.21397],[75.59336,34.19769],[75.6046,34.19519],[75.62179,34.20179],[75.62607,34.20131],[75.63701,34.20979],[75.64812,34.212],[75.6549,34.20796],[75.65739,34.20294],[75.66242,34.19913],[75.67075,34.19803],[75.68054,34.20096],[75.68529,34.19956],[75.69072,34.19527],[75.6873,34.18694],[75.68805,34.18486],[75.68411,34.17802],[75.68278,34.17059],[75.68448,34.16678],[75.68005,34.16246],[75.67814,34.15378],[75.67016,34.14998],[75.66795,34.14429],[75.67361,34.14516],[75.68235,34.14404],[75.68571,34.14216],[75.68229,34.13556],[75.68316,34.13243],[75.69125,34.12761],[75.68563,34.12091],[75.68736,34.11605],[75.69684,34.11343],[75.70774,34.10724],[75.7188,34.10325],[75.72148,34.0944],[75.7251,34.08966],[75.73337,34.08411],[75.73475,34.07895],[75.74254,34.07326],[75.73703,34.05891],[75.74148,34.05616],[75.75,34.05485],[75.75517,34.05674],[75.76852,34.05492],[75.76769,34.04381],[75.76919,34.04128],[75.7797,34.03762],[75.78671,34.0312],[75.79694,34.03045],[75.79754,34.02598],[75.79984,34.02298],[75.81429,34.01451],[75.81827,34.00751],[75.82783,34.00626],[75.8358,34.00714],[75.84306,34.00478],[75.84371,34.00324],[75.84161,33.99957],[75.83024,33.9924],[75.8256,33.97781],[75.81963,33.97221],[75.82212,33.96558],[75.83065,33.95874],[75.83824,33.95496],[75.84525,33.95447],[75.85249,33.96225],[75.87356,33.96205],[75.88672,33.96827],[75.8932,33.96909],[75.89856,33.96744],[75.90854,33.96888],[75.91745,33.96295],[75.94286,33.96046],[75.9496,33.95589],[75.9587,33.95685],[75.96654,33.95452],[75.96883,33.96016],[75.97271,33.96252],[75.9782,33.97219],[75.99053,33.97239],[76.00542,33.97674],[76.01219,33.97439],[76.01795,33.97507],[76.02436,33.98212],[76.02654,33.97163],[76.04292,33.95255],[76.04826,33.94036],[76.04947,33.93386],[76.04898,33.93149],[76.04137,33.92529],[76.03389,33.92417],[76.03257,33.91966],[76.03804,33.91887],[76.04776,33.91242],[76.07008,33.90887],[76.08258,33.90348],[76.09191,33.90243],[76.0969,33.90041],[76.10024,33.89626],[76.10725,33.89185],[76.1179,33.88872],[76.12296,33.88905],[76.12501,33.88528],[76.13668,33.8786],[76.13847,33.87242],[76.13754,33.87008],[76.14255,33.86646],[76.14951,33.85362],[76.14908,33.85015],[76.1554,33.84725],[76.15425,33.8406],[76.15998,33.83692],[76.15687,33.82999],[76.16264,33.8212],[76.16598,33.81935],[76.16324,33.81741],[76.15975,33.80847],[76.16138,33.80185],[76.16725,33.79782],[76.18474,33.80015],[76.19867,33.78723],[76.20036,33.77564],[76.2108,33.77119],[76.21258,33.76118],[76.21885,33.75873],[76.23611,33.75987],[76.24708,33.75853],[76.24786,33.75456],[76.25002,33.75246],[76.26021,33.75],[76.26547,33.74638],[76.26726,33.74038],[76.26578,33.73378],[76.27117,33.73075],[76.26741,33.72468],[76.26713,33.71709],[76.26324,33.71209],[76.26618,33.70694],[76.26311,33.70305],[76.26569,33.69743],[76.26472,33.68942],[76.2696,33.6851],[76.26621,33.67953],[76.2705,33.67559],[76.27352,33.66935],[76.28465,33.66184],[76.28005,33.65469],[76.27412,33.65232],[76.27048,33.64331],[76.26556,33.64351],[76.25304,33.63808],[76.24891,33.63864],[76.22937,33.62983],[76.22778,33.62563],[76.23281,33.62316],[76.23723,33.61759],[76.24096,33.60959],[76.24034,33.60485],[76.23865,33.60244],[76.23071,33.60304],[76.22422,33.60031],[76.22412,33.59684],[76.22792,33.5941],[76.2314,33.58695],[76.22522,33.57728],[76.21787,33.57366],[76.20648,33.57328],[76.20544,33.5692],[76.20549,33.56771],[76.20914,33.56646],[76.21977,33.55532],[76.22503,33.54759],[76.23192,33.54519],[76.24123,33.54831],[76.24574,33.54554],[76.25965,33.56502],[76.27787,33.56752],[76.30234,33.56736],[76.30978,33.57146],[76.31014,33.57861],[76.30182,33.58976],[76.2996,33.59824],[76.30098,33.60213],[76.30768,33.60963],[76.31744,33.60718],[76.32218,33.60227],[76.3295,33.60427],[76.33624,33.61051],[76.34692,33.60494],[76.35865,33.60369],[76.36004,33.59454],[76.36646,33.58575],[76.38073,33.57695],[76.37475,33.56588],[76.37928,33.55821],[76.37992,33.55292],[76.41024,33.54313],[76.4152,33.53908],[76.4264,33.53728],[76.43508,33.54167],[76.43996,33.54742],[76.44395,33.56055],[76.44735,33.56429],[76.45072,33.5625],[76.45783,33.55428],[76.4624,33.55162],[76.46467,33.54523],[76.45849,33.53852],[76.45916,33.53389],[76.46995,33.52768],[76.47908,33.52683],[76.49188,33.51691],[76.49927,33.51742],[76.50205,33.51598],[76.5067,33.50998],[76.5078,33.49957],[76.51442,33.49514],[76.52291,33.49338],[76.52784,33.48349],[76.53477,33.48219],[76.54091,33.47068],[76.54548,33.46873],[76.54964,33.46405],[76.55409,33.46411],[76.55764,33.46203],[76.56342,33.46252],[76.56949,33.46617],[76.57654,33.45298],[76.57706,33.44335],[76.57999,33.43831],[76.57795,33.42956],[76.58185,33.42579],[76.59341,33.42576],[76.60021,33.43143],[76.60576,33.43167],[76.61088,33.4349],[76.61327,33.43893],[76.61645,33.43992],[76.62051,33.43956],[76.62896,33.43489],[76.62955,33.4239],[76.63698,33.41553],[76.63612,33.41144],[76.63212,33.40919],[76.63841,33.40343],[76.63647,33.40184],[76.641,33.39098],[76.65148,33.38342],[76.65198,33.37044],[76.65839,33.36469],[76.65864,33.35757],[76.67242,33.34916],[76.67102,33.34185],[76.67388,33.33927],[76.68238,33.33677],[76.69647,33.32781],[76.70537,33.32807],[76.71208,33.33108],[76.71775,33.32897],[76.72588,33.31516],[76.72524,33.31134],[76.72855,33.30822],[76.72865,33.30394],[76.73211,33.29933],[76.72982,33.29676],[76.72847,33.29104],[76.72986,33.28871],[76.72773,33.28348],[76.73271,33.28151],[76.7325,33.27554],[76.73848,33.26868],[76.73705,33.2611],[76.75238,33.24959],[76.75648,33.24846],[76.76767,33.24831],[76.77743,33.25377],[76.78484,33.25346],[76.793,33.25636],[76.79915,33.25624],[76.80344,33.25295],[76.80684,33.24498],[76.82006,33.23584],[76.8224,33.23678],[76.82352,33.24333],[76.83071,33.24919],[76.84317,33.24674],[76.84461,33.24227],[76.84052,33.23959],[76.83769,33.23403],[76.83185,33.22911],[76.82771,33.22257],[76.82839,33.21856],[76.82561,33.21569],[76.83176,33.21233],[76.83131,33.20995],[76.83406,33.20859],[76.83446,33.20485],[76.8293,33.20325],[76.82364,33.19762],[76.81739,33.19414],[76.82238,33.18507],[76.81884,33.17989],[76.81354,33.17724],[76.81319,33.171],[76.81737,33.16673],[76.8167,33.16034],[76.82312,33.15037],[76.82964,33.14659],[76.83005,33.14284],[76.83481,33.14065],[76.83881,33.14122],[76.84397,33.13778],[76.84299,33.13033],[76.84891,33.12871],[76.85291,33.12569],[76.84923,33.12043],[76.85507,33.11438],[76.86243,33.11272],[76.87051,33.11336],[76.87724,33.11884],[76.8851,33.12138],[76.89152,33.11412],[76.89327,33.10992],[76.89255,33.10591],[76.89749,33.10085],[76.89771,33.09869],[76.90871,33.09457],[76.90996,33.08962],[76.90569,33.08504],[76.9052,33.07952],[76.91089,33.07601],[76.91421,33.06338],[76.92546,33.04742],[76.92577,33.03827],[76.92869,33.03166],[76.93299,33.02817],[76.94097,33.02832],[76.9507,33.01818],[76.95966,33.01534],[76.96145,33.01129],[76.9606,33.00914],[76.96373,33.00517],[76.96812,33.00418],[76.97135,33.00028],[76.98082,33.0],[76.98901,33.00262],[76.99231,33.00179],[76.9959,32.99757],[77.00949,32.98866],[77.02387,32.99132],[77.03163,32.98971],[77.03894,32.99765],[77.04739,32.99862],[77.05704,32.9916],[77.07119,32.98441],[77.08016,32.98301],[77.08266,32.97844],[77.08185,32.97528],[77.08652,32.97241],[77.09684,32.9715],[77.11076,32.97514],[77.11161,32.97914],[77.11602,32.98467],[77.13372,32.98007],[77.14217,32.98149],[77.14678,32.97851],[77.15052,32.97817],[77.14912,32.96848],[77.14736,32.9657],[77.14922,32.96058],[77.14873,32.95616],[77.16113,32.95266],[77.16194,32.95064],[77.15947,32.93825],[77.16454,32.93648],[77.16171,32.93171],[77.16389,32.91823],[77.15988,32.91304],[77.15574,32.91158],[77.17044,32.91067],[77.17393,32.91333],[77.1785,32.92313],[77.18797,32.92874],[77.19287,32.92344],[77.19341,32.9164],[77.20292,32.90655],[77.21913,32.90407],[77.23367,32.89444],[77.24299,32.89216],[77.23997,32.88439],[77.23726,32.88335],[77.23759,32.88018],[77.24426,32.87267],[77.25,32.87236],[77.25331,32.86934],[77.25524,32.86602],[77.25427,32.86394],[77.26269,32.86409],[77.26629,32.86883],[77.27399,32.87385],[77.28607,32.86449],[77.29044,32.85708],[77.30086,32.84986],[77.30949,32.8516],[77.3219,32.85154],[77.32874,32.84297],[77.32534,32.83551],[77.327,32.83149],[77.32968,32.83047],[77.33203,32.8261],[77.33602,32.82498],[77.33679,32.81904],[77.33857,32.81691],[77.35315,32.81599],[77.37287,32.8232],[77.3766,32.83708],[77.37924,32.83892],[77.37988,32.84454],[77.37587,32.84918],[77.37459,32.85494],[77.38146,32.86192],[77.38779,32.86355],[77.39422,32.87132],[77.39589,32.87717],[77.4045,32.88274],[77.41344,32.88412],[77.42798,32.87561],[77.43331,32.87593],[77.43956,32.87924],[77.44481,32.8799],[77.44796,32.87531],[77.44782,32.87026],[77.45207,32.86409],[77.46119,32.85998],[77.4692,32.85868],[77.47494,32.86161],[77.48082,32.87054],[77.48619,32.87369],[77.49103,32.87961],[77.49719,32.88037],[77.50149,32.88558],[77.51258,32.87736],[77.53847,32.88608],[77.54539,32.8916],[77.55039,32.90031],[77.56372,32.9123],[77.57725,32.91445],[77.59436,32.92594],[77.60311,32.94293],[77.64316,32.94651],[77.64358,32.94922],[77.65269,32.95488],[77.65601,32.95888],[77.66413,32.95831],[77.67413,32.96119],[77.67407,32.96735],[77.67873,32.96958],[77.68202,32.97477],[77.68072,32.98379],[77.68249,32.9888],[77.68952,32.98802],[77.69778,32.98271],[77.6975,32.97938],[77.71315,32.98246],[77.7141,32.97633],[77.71957,32.96866],[77.72494,32.96932],[77.73095,32.97455],[77.73282,32.97178],[77.74101,32.96903],[77.7445,32.962],[77.74977,32.95773],[77.75091,32.95456],[77.76354,32.94905],[77.76651,32.94629],[77.76475,32.94358],[77.7658,32.94154],[77.77183,32.93802],[77.7876,32.92347],[77.79456,32.91999],[77.79973,32.91244],[77.81063,32.90703],[77.81175,32.90454],[77.81069,32.90016],[77.80667,32.89556],[77.80246,32.89333],[77.79327,32.8931],[77.78947,32.89061],[77.78398,32.88285],[77.78096,32.86579],[77.79186,32.85593],[77.79766,32.85629],[77.80549,32.84988],[77.81593,32.8483],[77.82612,32.83619],[77.83244,32.83627],[77.83532,32.84067],[77.83901,32.84201],[77.84687,32.83898],[77.8554,32.83234],[77.86919,32.82703],[77.87127,32.82248],[77.87851,32.81918],[77.88209,32.81036],[77.8811,32.80413],[77.88795,32.79869],[77.88419,32.78755],[77.89183,32.78287],[77.89456,32.77826],[77.90368,32.77188],[77.91624,32.77384],[77.92572,32.772],[77.92723,32.76572],[77.93293,32.76129],[77.93413,32.7565],[77.93143,32.75048],[77.93291,32.74655],[77.92926,32.74253],[77.93066,32.73696],[77.92703,32.73648],[77.9263,32.73482],[77.93161,32.73171],[77.93439,32.72586],[77.92803,32.722],[77.92485,32.71723],[77.92455,32.71127],[77.92163,32.70844],[77.92282,32.70643],[77.92155,32.70316],[77.92246,32.69905],[77.91829,32.69627],[77.91862,32.69054],[77.92665,32.68628],[77.93106,32.68201],[77.93457,32.68114],[77.94096,32.6734],[77.9428,32.66559],[77.94744,32.66088],[77.95512,32.65819],[77.96585,32.65757],[77.97091,32.65497],[77.97227,32.65292],[77.97056,32.64636],[77.98466,32.6415],[77.98757,32.63614],[77.9917,32.63254],[77.99151,32.63064],[77.99623,32.62683],[78.00329,32.62457],[78.01186,32.62499],[78.01282,32.62181],[78.01589,32.61961],[78.02903,32.6235],[78.02516,32.62723],[78.03345,32.63381],[78.03402,32.63693],[78.04276,32.64032],[78.04702,32.64531],[78.05639,32.63468],[78.06088,32.62642],[78.06788,32.62663],[78.07471,32.63094],[78.08134,32.62622],[78.08753,32.62465],[78.09171,32.62851],[78.09886,32.63036],[78.0992,32.63644],[78.09592,32.6444],[78.0926,32.64784],[78.11049,32.66277],[78.11676,32.66027],[78.12062,32.66073],[78.1271,32.65223],[78.13664,32.65447],[78.14719,32.65396],[78.14788,32.67187],[78.14238,32.68183],[78.14973,32.68175],[78.15836,32.68399],[78.16548,32.68311],[78.17115,32.68047],[78.17576,32.68101],[78.19692,32.67052],[78.20129,32.67043],[78.20394,32.66706],[78.21895,32.66463],[78.23223,32.67171],[78.2459,32.6716],[78.25441,32.68918],[78.2538,32.69202],[78.25577,32.69706],[78.26054,32.7029],[78.26849,32.7011],[78.27391,32.70253],[78.29318,32.70034],[78.2946,32.70363],[78.30179,32.70411],[78.30602,32.70712],[78.30685,32.71043],[78.31473,32.71739],[78.3139,32.72081],[78.30585,32.73248],[78.30988,32.7351],[78.31285,32.73978],[78.33326,32.74971],[78.35705,32.7577],[78.3649,32.75334],[78.388,32.75669],[78.38596,32.74965],[78.38656,32.74523],[78.38944,32.74069],[78.38466,32.7317],[78.38537,32.71956],[78.38887,32.71184],[78.39699,32.70757],[78.39721,32.6985],[78.40074,32.6942],[78.39168,32.68537],[78.38714,32.67725],[78.38651,32.66468],[78.38142,32.65413],[78.38775,32.64514],[78.38786,32.64078],[78.39161,32.63343],[78.40135,32.62831],[78.40838,32.6271],[78.40966,32.62313],[78.40363,32.61967],[78.40231,32.61707],[78.39753,32.61761],[78.39079,32.61488],[78.3896,32.60999],[78.38414,32.60894],[78.37961,32.60455],[78.37859,32.59794],[78.36617,32.59366],[78.3629,32.58966],[78.35056,32.58896],[78.34328,32.57808],[78.33149,32.57662],[78.32084,32.57135],[78.31336,32.56556],[78.31447,32.5602],[78.31245,32.55147],[78.3155,32.54967],[78.31297,32.54511],[78.30904,32.5431],[78.30697,32.53754],[78.30866,32.52555],[78.30455,32.51743],[78.3067,32.5115],[78.30113,32.50387],[78.29252,32.49897],[78.29264,32.48984],[78.28995,32.48514],[78.28575,32.48239],[78.28953,32.47934],[78.29127,32.47532],[78.28566,32.47155],[78.28469,32.46887],[78.28737,32.46299],[78.29785,32.46234],[78.30019,32.45548],[78.30741,32.45209],[78.31144,32.44633],[78.32083,32.44403],[78.32982,32.44351],[78.33366,32.44811],[78.33446,32.45066],[78.32844,32.45403],[78.32575,32.45964],[78.32844,32.46501],[78.34055,32.46273],[78.34897,32.46433],[78.35314,32.46994],[78.34998,32.47334],[78.34971,32.47746],[78.36378,32.48227],[78.36654,32.48544],[78.36761,32.49373],[78.36514,32.4994],[78.37856,32.50645],[78.38601,32.51301],[78.39419,32.5148],[78.39894,32.5209],[78.39952,32.5246],[78.40987,32.52401],[78.40727,32.5261],[78.42766,32.56336],[78.45128,32.5776],[78.47556,32.57918],[78.50342,32.58705],[78.51533,32.60406],[78.52431,32.6081],[78.54284,32.60895],[78.56551,32.61485],[78.58771,32.60457],[78.60526,32.59109],[78.61459,32.5981],[78.62934,32.62086],[78.64837,32.64386],[78.6568,32.64914],[78.68026,32.65555],[78.70871,32.65613],[78.722,32.6664],[78.74058,32.69123],[78.7507,32.69276],[78.75321,32.68414],[78.74975,32.66703],[78.74334,32.65498],[78.7622,32.62875],[78.77546,32.62101],[78.78236,32.59581],[78.75916,32.56779],[78.77011,32.52903],[78.77483,32.50537],[78.80455,32.45584],[78.8067,32.44425],[78.82245,32.43388],[78.8394,32.43362],[78.85994,32.41023],[78.94671,32.36125],[78.95876,32.34399],[78.97119,32.33569],[78.98334,32.34844],[79.00355,32.37488],[79.04541,32.38741],[79.09368,32.37713],[79.09924,32.38205],[79.10387,32.39665],[79.1134,32.41081],[79.12976,32.41717],[79.13517,32.4323],[79.12136,32.45814],[79.12505,32.46502],[79.13201,32.46981],[79.13894,32.46859],[79.15347,32.4715],[79.18209,32.47376],[79.23023,32.51329],[79.24093,32.51954],[79.25975,32.52265],[79.28133,32.54774],[79.29357,32.57186],[79.30526,32.58582],[79.31187,32.58763],[79.32497,32.58465],[79.33945,32.57012],[79.36237,32.56625],[79.37299,32.56048],[79.37903,32.53531],[79.38453,32.5228],[79.39662,32.51749],[79.41655,32.51808],[79.42929,32.52353],[79.43866,32.53589],[79.4515,32.55875],[79.45879,32.56589],[79.47472,32.57404],[79.52526,32.63068],[79.53749,32.65959],[79.56724,32.67007],[79.57234,32.68762],[79.58021,32.6935],[79.59241,32.711],[79.60962,32.72323],[79.61186,32.73504],[79.59794,32.74834],[79.59441,32.75948],[79.58815,32.76606],[79.57035,32.7659],[79.55708,32.76772],[79.53811,32.78636],[79.53395,32.80348],[79.51771,32.82659],[79.46549,32.88001],[79.44606,32.91181],[79.43335,32.92378],[79.42096,32.93271],[79.41395,32.94475],[79.3976,32.96185],[79.3771,32.9631],[79.36895,32.96624],[79.37172,32.9768],[79.36817,32.98252],[79.35808,32.98163],[79.35338,32.98386],[79.34623,32.98931],[79.33998,33.00188],[79.32994,33.00698],[79.3249,33.01224],[79.35674,33.01598],[79.38032,33.02767],[79.38715,33.04207],[79.36816,33.08342],[79.37322,33.10638],[79.4228,33.16496],[79.44304,33.20036],[79.45177,33.235],[79.44611,33.25773],[79.39393,33.27446],[79.35558,33.28211],[79.33112,33.2753],[79.30013,33.27327],[79.26134,33.28874],[79.22368,33.29628],[79.14903,33.29388],[79.10769,33.28911],[79.08156,33.29741],[79.01604,33.32834],[78.98703,33.33086],[78.97842,33.33641],[78.9718,33.36399],[78.95537,33.38162],[78.93998,33.41356],[78.92708,33.45429],[78.92747,33.48666],[78.94124,33.51128],[78.94377,33.52607],[78.92325,33.56025],[78.90626,33.57371],[78.90735,33.58262],[78.91452,33.60601],[78.90286,33.62201],[78.90949,33.62924],[78.92716,33.62712],[78.94034,33.61759],[78.96425,33.61373],[78.98946,33.61455],[79.03082,33.62417],[79.06609,33.6193],[79.09537,33.61254],[79.10015,33.61632],[79.09038,33.63578],[79.08171,33.67555],[79.078,33.68608],[79.04632,33.67383],[79.022,33.68615],[79.01611,33.70226],[79.01978,33.71455],[79.03798,33.74538],[79.05872,33.75618],[79.0641,33.76472],[79.06045,33.77583],[79.04361,33.7791],[79.03035,33.78805],[79.01319,33.78294],[79.00961,33.79465],[79.00233,33.80548],[78.98673,33.83623],[78.94534,33.9262],[78.9227,33.95275],[78.91832,33.96392],[78.92565,33.98249],[78.95321,34.01313],[79.00115,34.03361],[79.02483,34.03276],[79.08035,34.00995],[79.11265,34.00894],[79.13823,34.01752],[79.14667,34.03298],[79.14801,34.05507],[79.17293,34.05829],[79.18685,34.04867],[79.20599,34.04039],[79.21841,34.0417],[79.23208,34.0471],[79.2604,34.0374],[79.28294,34.02761],[79.30051,34.02965],[79.37367,34.02675],[79.41551,33.99901],[79.43745,34.01265],[79.44288,34.02117],[79.42985,34.03194],[79.41453,34.04171],[79.42111,34.07594],[79.42751,34.08077],[79.44697,34.08623],[79.46603,34.09412],[79.49595,34.12445],[79.49096,34.14711],[79.49369,34.18468],[79.50372,34.19518],[79.51314,34.20094],[79.53242,34.1992],[79.54006,34.19131],[79.57101,34.21252],[79.59214,34.23582],[79.59739,34.26476],[79.59696,34.278],[79.5796,34.29999],[79.56851,34.3202],[79.56998,34.33687],[79.56136,34.38147],[79.56894,34.40059],[79.5667,34.40559],[79.54333,34.4041],[79.53163,34.40875],[79.52755,34.41632],[79.52803,34.44209],[79.52146,34.45828],[79.52215,34.46362],[79.54035,34.46979],[79.58353,34.4785],[79.59839,34.48676],[79.6148,34.47927],[79.6335,34.47818],[79.65339,34.48057],[79.66286,34.47551],[79.68181,34.47079],[79.72588,34.46976],[79.74442,34.46206],[79.75381,34.46721],[79.79144,34.46675],[79.80385,34.47282],[79.8161,34.48309],[79.82104,34.51446],[79.80911,34.52276],[79.76978,34.53778],[79.76882,34.55227],[79.77709,34.56532],[79.79438,34.58054],[79.78991,34.59055],[79.77549,34.60208],[79.7766,34.61038],[79.82936,34.63555],[79.85824,34.6665],[79.87514,34.66794],[79.87826,34.67486],[79.92156,34.67265],[79.94466,34.6609],[79.97372,34.67681],[80.00427,34.68236],[80.04328,34.68592],[80.06531,34.69286],[80.06932,34.70089],[80.06921,34.76874],[80.075,34.80542],[80.08976,34.82805],[80.12724,34.87255],[80.17142,34.96504],[80.1869,35.008],[80.18805,35.05291],[80.18503,35.13063],[80.19916,35.1533],[80.22623,35.17956],[80.24266,35.20802],[80.25121,35.24802],[80.28392,35.31394],[80.29748,35.35287],[80.29616,35.3902],[80.29848,35.41699],[80.32121,35.43764],[80.33978,35.44967],[80.34508,35.46117],[80.33459,35.49578],[80.32683,35.52892],[80.31463,35.53608],[80.31346,35.54339],[80.31794,35.56456],[80.31171,35.58796],[80.26859,35.61543],[80.21308,35.63866],[80.1289,35.65673],[80.11216,35.68948],[80.10052,35.70616],[80.07751,35.72569],[80.06214,35.7685],[80.04261,35.80269],[80.01569,35.82616],[79.9997,35.82764],[79.9677,35.82518],[79.93834,35.80988],[79.91538,35.7928],[79.90454,35.7782],[79.89896,35.77511],[79.88709,35.77439],[79.82847,35.78692],[79.75109,35.79692],[79.72838,35.81395],[79.68231,35.83247],[79.61925,35.8453],[79.56238,35.86594],[79.53623,35.87964],[79.46804,35.88745],[79.4402,35.89408],[79.43027,35.90814],[79.41035,35.98598],[79.40093,35.99279],[79.35803,35.99173],[79.2517,35.98475],[79.2309,35.97216],[79.21313,35.95452],[79.20449,35.9277],[79.20951,35.90391],[79.21276,35.87787],[79.18164,35.85357],[79.16467,35.83819],[79.14242,35.83476],[79.03225,35.84772],[79.01315,35.85951],[78.98239,35.88966],[78.9692,35.89017],[78.95211,35.87723],[78.92512,35.86751],[78.87223,35.86234],[78.83907,35.85612],[78.81999,35.8565],[78.78622,35.86888],[78.74892,35.86477],[78.72831,35.86467],[78.71053,35.85774],[78.69524,35.859],[78.67331,35.8542],[78.66522,35.8363],[78.64643,35.82107],[78.62168,35.81111],[78.61003,35.81206],[78.56027,35.77777],[78.53416,35.76251],[78.51254,35.77204],[78.47543,35.77503],[78.44267,35.78364],[78.43024,35.77805],[78.42612,35.7682],[78.41594,35.76303],[78.41241,35.75193],[78.40907,35.74861],[78.40866,35.73906],[78.40386,35.73585],[78.33796,35.71894],[78.29793,35.72809],[78.27695,35.71837],[78.27552,35.7125],[78.27749,35.69199],[78.27719,35.67704],[78.28451,35.66449],[78.2827,35.66164],[78.26868,35.65439],[78.26561,35.64742],[78.25588,35.64579],[78.21205,35.666],[78.20699,35.66041],[78.2077,35.64778],[78.19592,35.63493],[78.19744,35.62284],[78.17599,35.62751],[78.16983,35.625],[78.17341,35.60556],[78.17064,35.5944],[78.1596,35.58149],[78.16046,35.57005],[78.16491,35.55174],[78.15724,35.54874],[78.14907,35.5416],[78.13677,35.53657],[78.13158,35.54236],[78.10575,35.55335],[78.09286,35.54956],[78.08435,35.55202],[78.07494,35.55933],[78.05556,35.58179],[78.03688,35.58503],[78.0014,35.58237],[77.99071,35.58499],[77.95781,35.60487],[77.95377,35.60158],[77.96794,35.57177],[77.96346,35.55834],[77.93752,35.51722],[77.93927,35.50691],[77.96032,35.48614],[77.97054,35.4668],[77.986,35.45483],[77.98525,35.4483],[77.97727,35.44892],[77.92932,35.49031],[77.92099,35.48795],[77.9189,35.46955],[77.91208,35.46109],[77.89375,35.46728],[77.88613,35.47743],[77.86949,35.47271],[77.86257,35.47623],[77.85263,35.48537],[77.83799,35.49186],[77.82924,35.5051],[77.82205,35.50624],[77.80963,35.49999],[77.80348,35.49088],[77.78632,35.48798],[77.76739,35.49539],[77.74912,35.50873],[77.73587,35.5211],[77.72616,35.51285],[77.72877,35.47733],[77.70779,35.47292],[77.68575,35.47217],[77.68516,35.46682],[77.67335,35.46591],[77.6531,35.48118],[77.64703,35.47924],[77.63713,35.4692],[77.62862,35.46504],[77.55664,35.47574],[77.49613,35.47778],[77.47426,35.46501],[77.44366,35.45946],[77.41884,35.46664],[77.38524,35.47386],[77.37676,35.48345],[77.36322,35.48682],[77.35468,35.49581],[77.35292,35.50671],[77.34549,35.51921],[77.33008,35.5257],[77.33204,35.53035],[77.36197,35.54316],[77.38866,35.53944],[77.41181,35.5234],[77.43052,35.51367],[77.443,35.51396],[77.45817,35.51884],[77.47342,35.51773],[77.47981,35.52266],[77.48276,35.52962],[77.4735,35.53867],[77.46522,35.55005],[77.47561,35.57143],[77.47188,35.58427],[77.45865,35.59062],[77.44656,35.59389],[77.44013,35.60213],[77.44174,35.61698],[77.44103,35.63737],[77.43794,35.65614],[77.42807,35.65985],[77.41156,35.65626],[77.40281,35.66347],[77.40183,35.68149],[77.38533,35.69165],[77.37801,35.70534],[77.36587,35.71519],[77.34375,35.72096],[77.33555,35.71975],[77.3326,35.71279],[77.32107,35.70105],[77.3124,35.70227],[77.29908,35.708],[77.28744,35.72259],[77.28031,35.71771],[77.27639,35.70842],[77.25834,35.70432],[77.24192,35.70848],[77.21301,35.73325],[77.19164,35.73237],[77.17968,35.73022],[77.16903,35.74054],[77.17636,35.76813],[77.16208,35.76495],[77.15219,35.76864],[77.14578,35.77746],[77.13504,35.78],[77.13234,35.78916],[77.12701,35.79432],[77.11566,35.79811],[77.09111,35.79503],[77.04522,35.77729],[77.01048,35.77491],[77.001,35.77556],[76.98244,35.7876],[76.95699,35.78995],[76.93561,35.78902],[76.92505,35.79333],[76.9038,35.80794],[76.88739,35.81264],[76.86115,35.83595],[76.82353,35.84149],[76.80748,35.84975],[76.79877,35.87963],[76.78299,35.9052],[76.75778,35.932],[76.73939,35.94638],[76.73214,35.95464],[76.73286,35.96176],[76.73626,35.96632],[76.759,35.98034],[76.77036,35.99811],[76.7877,36.01667],[76.81041,36.02292],[76.81345,36.03108],[76.81369,36.04063],[76.7982,36.06199],[76.78375,36.07193],[76.75218,36.08002],[76.72009,36.0977],[76.71526,36.10818],[76.71644,36.12722],[76.71112,36.14013],[76.6703,36.17391],[76.65592,36.19218],[76.64468,36.19771],[76.61691,36.17802],[76.59409,36.17832],[76.56539,36.18617],[76.54929,36.20216],[76.51032,36.21067],[76.48098,36.21973],[76.46825,36.24027],[76.4482,36.24634],[76.43678,36.25783],[76.44566,36.26562],[76.4485,36.27201],[76.4375,36.31035],[76.41339,36.32803],[76.3798,36.3469],[76.35393,36.36945],[76.33992,36.36974],[76.2744,36.35655],[76.2665,36.35884],[76.24409,36.3716],[76.23026,36.38142],[76.20073,36.397],[76.17672,36.40088],[76.16395,36.40645],[76.14462,36.42855],[76.11172,36.45966],[76.09169,36.47462],[76.07115,36.48424],[76.05333,36.4913],[76.01006,36.49513],[75.94504,36.51161],[75.89078,36.53277],[75.8668,36.54555],[75.85243,36.55834],[75.80702,36.56342],[75.74442,36.6077],[75.73466,36.62259],[75.72053,36.63834],[75.66281,36.72166],[75.61272,36.77527],[75.58553,36.78638],[75.48802,36.81639],[75.46327,36.83031],[75.45834,36.84192],[75.44982,36.88893],[75.44183,36.89952],[75.42968,36.90497],[75.41765,36.90326],[75.40878,36.90375],[75.40692,36.90803],[75.41106,36.92152],[75.42488,36.95236],[75.41845,36.9724],[75.41368,36.97743],[75.40369,36.98217],[75.37924,36.97458],[75.36889,36.97516],[75.35443,36.98848],[75.34841,37.00492],[75.35037,37.01912],[75.34657,37.05272],[75.34131,37.06076],[75.33628,37.06283],[75.32078,37.06428],[75.27654,37.06015],[75.21096,37.05002],[75.19693,37.04243],[75.17721,37.02025],[75.15296,36.98816],[75.10915,36.9619],[75.09125,36.96107],[75.05519,36.97432],[75.03708,36.98899],[75.02322,36.99211],[75.01567,36.99072],[74.95402,36.95462],[74.93413,36.93837],[74.91558,36.92026],[74.90976,36.92176],[74.8965,36.94152],[74.83479,37.00526],[74.83347,37.01472],[74.84087,37.03214],[74.8389,37.03584],[74.83583,37.03799],[74.8292,37.03903],[74.80477,37.03498],[74.78331,37.041],[74.76905,37.04122],[74.76019,37.03597],[74.75318,37.02188],[74.74942,37.01939],[74.73817,37.02678],[74.72636,37.0385],[74.71591,37.05365],[74.71192,37.06379]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"38","area_level":"State","area_name":"The Dadra And Nagar Haveli And Daman And Diu","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.96297,20.33248],[72.96112,20.33242],[72.96058,20.32859],[72.95935,20.32559],[72.95705,20.32372],[72.95664,20.32038],[72.95574,20.31808],[72.95459,20.31624],[72.95277,20.31401],[72.95451,20.31124],[72.9553,20.31051],[72.95657,20.30959],[72.95986,20.30792],[72.96449,20.30464],[72.96586,20.30261],[72.96701,20.29991],[72.96841,20.29793],[72.96959,20.29702],[72.97084,20.29686],[72.97101,20.29797],[72.97193,20.29995],[72.97225,20.30139],[72.97239,20.30407],[72.97357,20.30556],[72.97286,20.30865],[72.97415,20.31036],[72.97719,20.31207],[72.97868,20.31514],[72.98239,20.31831],[72.98256,20.32036],[72.97946,20.32743],[72.9791,20.33224],[72.9741,20.33188],[72.96958,20.33266],[72.9647,20.33237],[72.96297,20.33248]]],[[[73.09699,20.35993],[73.0958,20.36133],[73.08906,20.35869],[73.08845,20.35033],[73.09027,20.34393],[73.08782,20.34124],[73.08453,20.33182],[73.07717,20.32348],[73.07027,20.32547],[73.06665,20.33003],[73.04924,20.32441],[73.04174,20.32599],[73.0377,20.31767],[73.03561,20.2932],[73.03429,20.29163],[73.02661,20.29067],[73.01532,20.29402],[73.01669,20.31037],[73.01241,20.30933],[73.01217,20.31169],[73.00615,20.3128],[73.00942,20.30981],[73.01157,20.30039],[73.01005,20.29121],[73.00483,20.28917],[73.00102,20.29197],[72.99682,20.29076],[72.99441,20.29231],[72.98728,20.29087],[72.98536,20.28808],[72.98117,20.28927],[72.98193,20.2755],[72.97119,20.26906],[72.96223,20.27134],[72.96184,20.27502],[72.95568,20.27891],[72.95529,20.2842],[72.95205,20.28408],[72.9482,20.28777],[72.94505,20.28849],[72.94164,20.29309],[72.9357,20.29462],[72.93133,20.29288],[72.92858,20.28631],[72.9208,20.28368],[72.9202,20.28117],[72.91724,20.2808],[72.91601,20.27601],[72.91213,20.275],[72.91171,20.27026],[72.91752,20.26339],[72.91848,20.25856],[72.92366,20.25661],[72.93064,20.24441],[72.93761,20.24482],[72.95398,20.23826],[72.95829,20.23539],[72.96059,20.23033],[72.96595,20.22487],[72.96451,20.2138],[72.96164,20.20944],[72.95985,20.20122],[72.96178,20.19203],[72.96085,20.18605],[72.96303,20.18221],[72.96893,20.18342],[72.97676,20.1809],[72.97688,20.17865],[72.97372,20.17383],[72.9744,20.16025],[72.96158,20.1371],[72.96082,20.13328],[72.96358,20.12604],[72.96852,20.12366],[72.9705,20.11561],[72.97736,20.11278],[72.9796,20.11569],[72.99182,20.1177],[72.99535,20.13231],[72.9946,20.13882],[72.9975,20.14276],[72.99922,20.14257],[73.00329,20.14034],[73.005,20.13588],[73.01165,20.13402],[73.0132,20.12956],[72.99961,20.12302],[73.00074,20.1123],[73.01043,20.10578],[73.0137,20.09648],[73.02183,20.09],[73.02336,20.08472],[73.03048,20.07966],[73.0402,20.06643],[73.04738,20.0657],[73.05062,20.06374],[73.05206,20.08529],[73.05519,20.09987],[73.06369,20.09959],[73.06817,20.09679],[73.08059,20.09495],[73.08096,20.09233],[73.08355,20.09117],[73.10226,20.09124],[73.10604,20.08754],[73.10606,20.07417],[73.10846,20.0753],[73.11198,20.07117],[73.11192,20.07427],[73.11434,20.07624],[73.11893,20.07509],[73.11905,20.07866],[73.1241,20.07797],[73.1255,20.0835],[73.13071,20.08175],[73.13336,20.08618],[73.13639,20.08637],[73.13707,20.07913],[73.14247,20.0803],[73.14309,20.07643],[73.14669,20.07386],[73.14869,20.07485],[73.14919,20.079],[73.15464,20.07576],[73.15185,20.07256],[73.15447,20.07042],[73.15579,20.06588],[73.15716,20.06587],[73.15644,20.06352],[73.1635,20.06055],[73.16513,20.05524],[73.16776,20.05577],[73.17071,20.05204],[73.17663,20.05195],[73.17798,20.04703],[73.18332,20.05028],[73.19092,20.04959],[73.1921,20.05471],[73.18615,20.05917],[73.18925,20.07325],[73.18853,20.0781],[73.19691,20.07594],[73.19816,20.07785],[73.20475,20.07996],[73.20952,20.085],[73.2139,20.11899],[73.20302,20.1196],[73.19745,20.12632],[73.18964,20.12731],[73.18699,20.12945],[73.18465,20.14469],[73.18538,20.15584],[73.1883,20.15859],[73.18967,20.16426],[73.20104,20.16531],[73.20554,20.16417],[73.21416,20.17171],[73.21819,20.18152],[73.21772,20.18593],[73.20825,20.1895],[73.2067,20.18812],[73.19881,20.19446],[73.19172,20.19743],[73.19003,20.1951],[73.17795,20.19264],[73.1788,20.19775],[73.17675,20.19933],[73.17147,20.19844],[73.16873,20.20302],[73.16829,20.20823],[73.15718,20.19835],[73.15225,20.2039],[73.14757,20.20074],[73.13852,20.20451],[73.13753,20.20759],[73.13299,20.20577],[73.13261,20.19196],[73.13492,20.18499],[73.13896,20.18447],[73.14187,20.17736],[73.13604,20.17003],[73.13248,20.16942],[73.12841,20.17344],[73.11918,20.16821],[73.11948,20.16404],[73.11566,20.16222],[73.11481,20.15894],[73.11652,20.15582],[73.11566,20.15217],[73.11365,20.15209],[73.10811,20.15784],[73.09941,20.15622],[73.0903,20.16032],[73.08704,20.17032],[73.07928,20.17324],[73.07358,20.15562],[73.07066,20.15558],[73.06024,20.16189],[73.06041,20.16687],[73.06264,20.16975],[73.0628,20.17761],[73.05953,20.19393],[73.05322,20.19543],[73.0488,20.20086],[73.0534,20.20539],[73.05996,20.22334],[73.06257,20.22403],[73.06365,20.22776],[73.07051,20.2321],[73.08244,20.23089],[73.08549,20.22764],[73.08927,20.22676],[73.09774,20.2293],[73.09901,20.23194],[73.0973,20.23867],[73.10627,20.24619],[73.107,20.25077],[73.11399,20.25831],[73.126,20.26076],[73.13053,20.26949],[73.13123,20.27503],[73.13728,20.27314],[73.13997,20.27379],[73.14227,20.27642],[73.14222,20.2811],[73.14585,20.28858],[73.15173,20.29203],[73.15367,20.28523],[73.15823,20.28131],[73.16494,20.28399],[73.1663,20.28787],[73.16579,20.29407],[73.16349,20.2982],[73.16623,20.30527],[73.16573,20.31043],[73.15941,20.30885],[73.15078,20.31834],[73.12944,20.31832],[73.12645,20.3088],[73.12695,20.30551],[73.12189,20.30419],[73.11661,20.30616],[73.11154,20.30405],[73.10852,20.30527],[73.10281,20.30178],[73.10037,20.30482],[73.10291,20.31413],[73.10843,20.32457],[73.10804,20.33103],[73.11125,20.33777],[73.10803,20.33902],[73.10738,20.34391],[73.10398,20.34755],[73.10478,20.34994],[73.10169,20.35474],[73.09864,20.3547],[73.09699,20.35993]],[[72.98987,20.21333],[72.98377,20.21306],[72.97905,20.21558],[72.97478,20.21927],[72.97462,20.22573],[72.97923,20.23403],[72.98951,20.2388],[72.9984,20.23675],[73.00832,20.22896],[73.00255,20.22063],[73.00113,20.21444],[72.99295,20.21499],[72.98987,20.21333]]],[[[72.86796,20.46336],[72.859,20.46499],[72.85583,20.47116],[72.85022,20.47456],[72.84839,20.47802],[72.84627,20.47803],[72.84647,20.47139],[72.8442,20.46683],[72.83712,20.46191],[72.83544,20.45991],[72.83308,20.45512],[72.82565,20.4464],[72.8212,20.43682],[72.82008,20.43292],[72.82089,20.42337],[72.81902,20.42178],[72.81856,20.4189],[72.81708,20.41751],[72.81663,20.40667],[72.81516,20.40312],[72.81332,20.3901],[72.80965,20.38235],[72.80524,20.37606],[72.8046,20.37227],[72.80991,20.37224],[72.82616,20.36642],[72.83039,20.36794],[72.83594,20.37332],[72.84087,20.37346],[72.84423,20.37494],[72.85614,20.37203],[72.85813,20.37404],[72.86419,20.37519],[72.86569,20.37226],[72.87667,20.36977],[72.88297,20.37231],[72.89067,20.37265],[72.89149,20.37565],[72.89615,20.37907],[72.89619,20.38035],[72.8869,20.38545],[72.8871,20.38818],[72.88362,20.39122],[72.88276,20.39785],[72.88508,20.39788],[72.8877,20.40003],[72.88999,20.39898],[72.89187,20.39916],[72.89485,20.40158],[72.8959,20.40116],[72.89793,20.40235],[72.90041,20.40526],[72.90259,20.4058],[72.90329,20.40978],[72.90177,20.41021],[72.90405,20.41498],[72.90041,20.41687],[72.8979,20.42061],[72.8932,20.42173],[72.89172,20.42137],[72.89111,20.41961],[72.88919,20.41904],[72.88323,20.41992],[72.88167,20.41948],[72.8802,20.41702],[72.87533,20.41681],[72.8743,20.41487],[72.87175,20.41389],[72.87018,20.41385],[72.86842,20.4164],[72.8649,20.41731],[72.86253,20.4168],[72.85725,20.41892],[72.85838,20.42314],[72.86023,20.42489],[72.86109,20.4276],[72.86507,20.42908],[72.86836,20.43459],[72.8698,20.43952],[72.87484,20.44557],[72.87685,20.44464],[72.8789,20.44166],[72.88771,20.43825],[72.89016,20.43865],[72.89144,20.4409],[72.89532,20.44431],[72.88797,20.4506],[72.88713,20.45492],[72.888,20.46071],[72.88655,20.46233],[72.87725,20.46176],[72.87047,20.46349],[72.86796,20.46336]]],[[[70.92536,20.73799],[70.92429,20.74066],[70.91949,20.7431],[70.91586,20.74203],[70.91339,20.74014],[70.91142,20.73736],[70.91011,20.73684],[70.90535,20.73656],[70.89387,20.73239],[70.88245,20.73095],[70.87713,20.72763],[70.87597,20.72575],[70.87574,20.72316],[70.87213,20.71835],[70.87085,20.71026],[70.87139,20.70711],[70.87422,20.70641],[70.87467,20.7089],[70.87677,20.70968],[70.88774,20.70928],[70.89315,20.70764],[70.898,20.70456],[70.89895,20.70286],[70.89691,20.70102],[70.89766,20.70007],[70.89996,20.69964],[70.90975,20.70083],[70.91021,20.70133],[70.90955,20.70191],[70.91053,20.70226],[70.91183,20.70139],[70.91137,20.7],[70.91332,20.69951],[70.91701,20.70207],[70.91468,20.70221],[70.91564,20.70303],[70.91505,20.7053],[70.91556,20.70688],[70.91769,20.70922],[70.91977,20.71052],[70.92804,20.71227],[70.93234,20.71191],[70.93768,20.71037],[70.93843,20.70981],[70.93781,20.7087],[70.93821,20.70795],[70.94433,20.70588],[70.94532,20.70641],[70.94812,20.70568],[70.94893,20.70687],[70.94981,20.7058],[70.95075,20.70611],[70.95095,20.70495],[70.95231,20.70402],[70.95505,20.70451],[70.95968,20.70714],[70.961,20.70728],[70.96181,20.70613],[70.9636,20.70586],[70.96933,20.70795],[70.97052,20.70702],[70.97126,20.70435],[70.97304,20.70514],[70.97369,20.70301],[70.97418,20.70454],[70.97525,20.70484],[70.97696,20.7028],[70.9799,20.70595],[70.9852,20.70927],[70.98612,20.70899],[70.987,20.71032],[70.98931,20.70935],[70.99116,20.7107],[70.99189,20.7103],[70.99442,20.71127],[70.99738,20.71393],[70.99845,20.71715],[70.99774,20.71833],[70.99554,20.71947],[70.99331,20.72262],[70.99308,20.72657],[70.99757,20.73263],[71.0,20.73394],[71.0,20.7352],[71.00738,20.73752],[71.00231,20.74182],[70.99949,20.74223],[70.9987,20.74044],[70.9956,20.73884],[70.99307,20.73578],[70.99051,20.73541],[70.9887,20.73342],[70.98448,20.73225],[70.98101,20.72269],[70.97402,20.72787],[70.96435,20.72961],[70.9633,20.73357],[70.96041,20.73672],[70.95414,20.73492],[70.94695,20.7346],[70.93851,20.73243],[70.93172,20.73689],[70.92708,20.73696],[70.92536,20.73799]]],[[[71.15536,20.76009],[71.15544,20.76039],[71.15544,20.76065],[71.15526,20.76105],[71.15507,20.76116],[71.15471,20.76125],[71.15338,20.76143],[71.1529,20.76162],[71.15257,20.76192],[71.15209,20.76277],[71.15209,20.76337],[71.15201,20.76372],[71.15177,20.76391],[71.15159,20.76393],[71.15132,20.76387],[71.15117,20.76369],[71.15117,20.76355],[71.15124,20.76309],[71.15133,20.76284],[71.15147,20.76214],[71.1515,20.76177],[71.15145,20.76155],[71.1513,20.7613],[71.15099,20.76095],[71.1505,20.76064],[71.14999,20.76007],[71.14987,20.75975],[71.14991,20.75943],[71.1502,20.75919],[71.15071,20.75906],[71.15108,20.75907],[71.15152,20.75912],[71.15255,20.75954],[71.15316,20.75984],[71.15342,20.75988],[71.15368,20.75984],[71.15407,20.7596],[71.15443,20.75951],[71.15464,20.75952],[71.15511,20.75977],[71.15536,20.76009]]],[[[71.14734,20.77136],[71.14639,20.77134],[71.14675,20.7707],[71.14665,20.77036],[71.14642,20.77008],[71.14642,20.76997],[71.14643,20.76979],[71.14668,20.76931],[71.14645,20.76862],[71.14677,20.76777],[71.14615,20.76313],[71.14592,20.76066],[71.14607,20.75898],[71.14712,20.75876],[71.14733,20.75848],[71.14808,20.75825],[71.14843,20.75861],[71.14846,20.75965],[71.14833,20.75998],[71.14836,20.76045],[71.14846,20.76072],[71.14937,20.7613],[71.14972,20.7619],[71.14958,20.76271],[71.14924,20.76329],[71.14883,20.76616],[71.14913,20.76637],[71.14949,20.77028],[71.14976,20.77144],[71.14734,20.77136]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"4","area_level":"State","area_name":"Chandigarh","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[76.77233,30.79414],[76.77151,30.79521],[76.76744,30.79423],[76.76117,30.7911],[76.75726,30.78685],[76.75171,30.78424],[76.75234,30.78025],[76.74331,30.77592],[76.7455,30.77227],[76.74374,30.77142],[76.74299,30.76942],[76.73019,30.76465],[76.7267,30.76527],[76.72568,30.76642],[76.7207,30.76316],[76.71847,30.7639],[76.71579,30.76273],[76.71392,30.76309],[76.7136,30.76199],[76.71076,30.76098],[76.70533,30.75602],[76.70707,30.75382],[76.70794,30.74973],[76.70715,30.74782],[76.7059,30.7474],[76.70664,30.74465],[76.70518,30.74292],[76.70747,30.73945],[76.71419,30.74093],[76.71572,30.73721],[76.72127,30.72997],[76.72576,30.72783],[76.72957,30.72348],[76.7311,30.72356],[76.73121,30.71741],[76.72855,30.71578],[76.73137,30.71258],[76.72909,30.71177],[76.73003,30.70683],[76.7391,30.70575],[76.73936,30.70033],[76.7379,30.69981],[76.73962,30.69806],[76.73932,30.69286],[76.74717,30.6955],[76.74777,30.68754],[76.75026,30.68831],[76.75276,30.68449],[76.75931,30.68656],[76.76431,30.68636],[76.77018,30.67982],[76.7744,30.6721],[76.77687,30.67035],[76.77899,30.67119],[76.78145,30.67427],[76.78995,30.6756],[76.79672,30.66751],[76.80047,30.6702],[76.80259,30.66649],[76.80876,30.66732],[76.81167,30.67004],[76.8165,30.67138],[76.81691,30.67296],[76.82092,30.67489],[76.821,30.67757],[76.82199,30.67844],[76.82745,30.68213],[76.82914,30.68093],[76.82922,30.68196],[76.83189,30.68323],[76.82762,30.68767],[76.82621,30.68668],[76.82516,30.68825],[76.82755,30.6898],[76.82738,30.69197],[76.83022,30.69345],[76.8286,30.69465],[76.83528,30.70155],[76.83555,30.70358],[76.84392,30.70798],[76.84723,30.71228],[76.84832,30.7153],[76.84677,30.71689],[76.84945,30.71827],[76.84503,30.71719],[76.84357,30.71921],[76.84607,30.72229],[76.8494,30.72339],[76.84639,30.72968],[76.84822,30.7303],[76.84742,30.73141],[76.84319,30.73111],[76.84184,30.73272],[76.83716,30.73345],[76.8315,30.73951],[76.83686,30.74266],[76.83494,30.74184],[76.83343,30.74655],[76.83384,30.74983],[76.83902,30.7512],[76.8358,30.75581],[76.82635,30.7633],[76.82421,30.76096],[76.82011,30.76085],[76.81813,30.75743],[76.81768,30.75409],[76.81561,30.75271],[76.80537,30.76497],[76.81812,30.77129],[76.81957,30.77365],[76.81812,30.77544],[76.81865,30.77791],[76.81544,30.77801],[76.81352,30.78017],[76.81212,30.77925],[76.80917,30.77936],[76.80744,30.77739],[76.80213,30.77557],[76.79818,30.77206],[76.79834,30.77111],[76.79578,30.77095],[76.79169,30.76871],[76.79047,30.77071],[76.78348,30.77057],[76.77959,30.77769],[76.7873,30.77895],[76.78278,30.78917],[76.77556,30.79051],[76.77233,30.79414]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"5","area_level":"State","area_name":"Uttarakhand","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[79.25028,31.25536],[79.25239,31.266],[79.26988,31.27858],[79.27186,31.28319],[79.2715,31.28677],[79.26577,31.29321],[79.25184,31.30177],[79.23921,31.31421],[79.23936,31.31794],[79.2465,31.3253],[79.24648,31.33004],[79.225,31.3387],[79.21157,31.34639],[79.19221,31.36281],[79.18235,31.38517],[79.14357,31.42547],[79.12742,31.43486],[79.10848,31.43763],[79.09956,31.44332],[79.09,31.44499],[79.07788,31.45268],[79.07046,31.4601],[79.06424,31.46208],[79.06174,31.46135],[79.05592,31.455],[79.05247,31.44694],[79.05085,31.44003],[79.05266,31.4231],[79.05151,31.41979],[79.03503,31.40792],[79.02374,31.39637],[79.01763,31.38556],[79.01192,31.36772],[79.01083,31.35708],[78.98991,31.3453],[78.96698,31.33689],[78.94759,31.31952],[78.94422,31.30793],[78.94166,31.27421],[78.93707,31.26062],[78.93269,31.25294],[78.9121,31.25515],[78.9117,31.253],[78.91155,31.25147],[78.9161,31.24859],[78.91919,31.24222],[78.91966,31.23617],[78.92203,31.23154],[78.92206,31.22531],[78.92609,31.2231],[78.92605,31.22007],[78.93113,31.21605],[78.94773,31.21677],[78.94868,31.21331],[78.94383,31.20648],[78.94703,31.20279],[78.948,31.19851],[78.95831,31.19037],[78.95753,31.18659],[78.97266,31.17991],[78.9792,31.17902],[78.9808,31.17616],[78.98373,31.17613],[78.98591,31.17383],[78.9905,31.16127],[78.98822,31.15421],[78.99083,31.14816],[78.98758,31.14329],[78.99076,31.13806],[78.9996,31.13469],[79.00366,31.12154],[79.0068,31.11853],[79.00892,31.10992],[79.00216,31.11242],[78.99855,31.10995],[78.99004,31.10852],[78.97299,31.10808],[78.96308,31.10118],[78.95073,31.09798],[78.94512,31.10057],[78.93223,31.10068],[78.92593,31.10944],[78.92057,31.11072],[78.91273,31.10764],[78.91231,31.10208],[78.9086,31.09886],[78.90044,31.09979],[78.89064,31.0969],[78.88543,31.09872],[78.87289,31.10886],[78.86524,31.12001],[78.85352,31.12208],[78.84801,31.12511],[78.84147,31.12971],[78.83814,31.13834],[78.83121,31.1406],[78.82734,31.15262],[78.82296,31.15774],[78.82489,31.16351],[78.81807,31.16778],[78.81304,31.16888],[78.81072,31.17187],[78.81047,31.18026],[78.8143,31.18754],[78.81738,31.18961],[78.81641,31.19437],[78.80991,31.19828],[78.79675,31.19641],[78.77916,31.18889],[78.76518,31.18576],[78.75641,31.18783],[78.72838,31.18965],[78.71833,31.18777],[78.7097,31.1897],[78.70336,31.189],[78.695,31.19217],[78.68677,31.19776],[78.67882,31.19625],[78.6719,31.19688],[78.66735,31.19075],[78.66172,31.18923],[78.65801,31.18504],[78.66001,31.19108],[78.65654,31.19357],[78.65732,31.19573],[78.64907,31.20217],[78.6493,31.21087],[78.64704,31.21472],[78.63655,31.21484],[78.62597,31.21787],[78.62257,31.22407],[78.60934,31.22926],[78.60092,31.2281],[78.59676,31.22512],[78.5895,31.22667],[78.57824,31.22526],[78.57486,31.22122],[78.56807,31.21915],[78.56549,31.21348],[78.55162,31.19991],[78.52652,31.19646],[78.50756,31.19587],[78.48375,31.19894],[78.48427,31.20121],[78.48145,31.20451],[78.4798,31.21378],[78.47286,31.21845],[78.46174,31.23603],[78.45771,31.23778],[78.45571,31.24102],[78.44999,31.24064],[78.44359,31.24435],[78.43658,31.25412],[78.43425,31.25458],[78.43116,31.25275],[78.42591,31.24425],[78.42074,31.24405],[78.4142,31.23961],[78.40695,31.24219],[78.40283,31.24789],[78.40717,31.25621],[78.39772,31.26622],[78.39617,31.27531],[78.38951,31.2742],[78.3863,31.27143],[78.38354,31.28248],[78.37032,31.28633],[78.35197,31.2806],[78.34561,31.28059],[78.33991,31.28267],[78.33187,31.27761],[78.31803,31.27892],[78.31678,31.28153],[78.31116,31.28314],[78.30804,31.27554],[78.31006,31.27409],[78.31045,31.27109],[78.30633,31.25989],[78.30255,31.25902],[78.29642,31.26113],[78.29188,31.25995],[78.28287,31.26621],[78.27996,31.26247],[78.27603,31.26151],[78.2735,31.25589],[78.26908,31.25232],[78.26868,31.24858],[78.26264,31.24519],[78.26047,31.23975],[78.25539,31.23851],[78.24951,31.24004],[78.25071,31.23331],[78.24695,31.23041],[78.24317,31.2293],[78.23709,31.23267],[78.22643,31.23501],[78.22032,31.23394],[78.21626,31.22971],[78.21517,31.222],[78.21244,31.21957],[78.20916,31.22012],[78.19948,31.2172],[78.19566,31.21971],[78.19218,31.22476],[78.18703,31.22705],[78.17976,31.22565],[78.17381,31.22684],[78.16715,31.22465],[78.16023,31.22548],[78.1581,31.2189],[78.15362,31.21822],[78.14842,31.2137],[78.14768,31.21059],[78.13338,31.20833],[78.1286,31.20078],[78.12348,31.20015],[78.10362,31.18538],[78.09714,31.18421],[78.08774,31.18724],[78.06596,31.18717],[78.05121,31.17989],[78.04264,31.1785],[78.04104,31.17292],[78.03384,31.16971],[78.02971,31.16411],[78.03034,31.15097],[78.02062,31.15155],[78.01445,31.15778],[78.00863,31.16082],[78.00082,31.16195],[77.99094,31.16005],[77.98472,31.15695],[77.98059,31.16212],[77.97327,31.16615],[77.96732,31.17337],[77.9589,31.17092],[77.95362,31.16595],[77.95149,31.16131],[77.94316,31.16126],[77.93516,31.15469],[77.92479,31.15043],[77.92152,31.15047],[77.91581,31.15389],[77.90862,31.15406],[77.89874,31.15023],[77.90045,31.1422],[77.89401,31.13396],[77.88905,31.13299],[77.89068,31.12175],[77.88876,31.11921],[77.88241,31.11772],[77.88052,31.11479],[77.87803,31.11503],[77.87845,31.11633],[77.87323,31.11497],[77.86382,31.10851],[77.86047,31.10159],[77.86374,31.09396],[77.85124,31.07337],[77.83806,31.07265],[77.82893,31.05827],[77.82436,31.05545],[77.82205,31.05519],[77.82296,31.05866],[77.81136,31.0591],[77.81679,31.05669],[77.81604,31.04998],[77.82162,31.04671],[77.82137,31.04274],[77.82982,31.02876],[77.82288,31.02928],[77.81747,31.03304],[77.81145,31.03163],[77.807,31.02677],[77.80751,31.01621],[77.80994,31.01099],[77.82501,31.0098],[77.82199,31.00429],[77.83182,30.99399],[77.82417,30.98842],[77.82513,30.98509],[77.82406,30.98047],[77.82243,30.97655],[77.8163,30.97278],[77.81438,30.96178],[77.82419,30.95711],[77.83219,30.95959],[77.83769,30.95518],[77.8376,30.95317],[77.83473,30.95205],[77.82862,30.95329],[77.82436,30.9505],[77.81398,30.95383],[77.79367,30.96875],[77.77238,30.97435],[77.76917,30.97419],[77.76659,30.97013],[77.75409,30.96448],[77.74901,30.95348],[77.75075,30.94349],[77.75404,30.93754],[77.75274,30.93381],[77.76394,30.93045],[77.7628,30.91818],[77.76589,30.91968],[77.76752,30.91733],[77.7718,30.91861],[77.78265,30.91673],[77.78473,30.91715],[77.78653,30.92026],[77.79182,30.92173],[77.80493,30.92359],[77.81153,30.92327],[77.8133,30.92187],[77.81094,30.91663],[77.81587,30.91032],[77.81528,30.90438],[77.80883,30.8967],[77.80138,30.89332],[77.79886,30.86804],[77.80359,30.86499],[77.80568,30.85321],[77.78624,30.85715],[77.77923,30.86037],[77.77738,30.86315],[77.77613,30.87541],[77.77341,30.87754],[77.76321,30.8804],[77.75822,30.8768],[77.7561,30.87268],[77.75719,30.85998],[77.75418,30.85547],[77.74587,30.85112],[77.74402,30.84659],[77.75768,30.83513],[77.76128,30.82607],[77.74837,30.82163],[77.7456,30.81314],[77.73497,30.80448],[77.73294,30.80108],[77.73187,30.79187],[77.72136,30.77579],[77.71512,30.77072],[77.70378,30.76516],[77.70896,30.75249],[77.70517,30.75078],[77.70243,30.74627],[77.70505,30.74275],[77.70879,30.73972],[77.72153,30.7416],[77.72836,30.73414],[77.73319,30.73534],[77.7373,30.73034],[77.73659,30.72415],[77.74669,30.71972],[77.74741,30.71697],[77.74562,30.71387],[77.75582,30.70692],[77.7504,30.70011],[77.75258,30.69665],[77.74694,30.69443],[77.74841,30.68775],[77.74675,30.68304],[77.74741,30.67985],[77.75916,30.67577],[77.75975,30.67309],[77.76421,30.67082],[77.77251,30.6691],[77.77458,30.66476],[77.78119,30.65997],[77.78445,30.65956],[77.78853,30.66228],[77.79209,30.66017],[77.79249,30.65693],[77.7875,30.65562],[77.78123,30.64667],[77.78674,30.6417],[77.78639,30.6367],[77.79062,30.634],[77.78605,30.62994],[77.78614,30.62442],[77.79255,30.62091],[77.79626,30.61365],[77.78672,30.61431],[77.78025,30.61284],[77.77111,30.61638],[77.76894,30.61452],[77.77107,30.61053],[77.77022,30.6049],[77.77241,30.59855],[77.77167,30.5969],[77.76435,30.59592],[77.75564,30.60469],[77.7519,30.60178],[77.7461,30.60389],[77.74325,30.60149],[77.74679,30.59746],[77.74325,30.59616],[77.74287,30.59385],[77.75664,30.58561],[77.76066,30.57752],[77.76714,30.57115],[77.76752,30.56535],[77.77403,30.55784],[77.78357,30.55983],[77.79411,30.5532],[77.79718,30.55406],[77.79964,30.55766],[77.80637,30.55449],[77.81399,30.56008],[77.81785,30.56102],[77.8226,30.55378],[77.82001,30.54803],[77.82035,30.54519],[77.82351,30.54196],[77.8278,30.531],[77.82586,30.52625],[77.81982,30.52408],[77.81852,30.50807],[77.81505,30.50513],[77.80829,30.50478],[77.79986,30.50106],[77.78221,30.50027],[77.77567,30.49431],[77.76436,30.49108],[77.7394,30.47602],[77.73172,30.47314],[77.72098,30.473],[77.7072,30.45924],[77.69794,30.45586],[77.69025,30.44802],[77.67077,30.44419],[77.66298,30.44704],[77.65237,30.44805],[77.649,30.44515],[77.64865,30.44032],[77.64507,30.43255],[77.6415,30.43179],[77.637,30.43319],[77.63192,30.43125],[77.62595,30.43469],[77.62268,30.43466],[77.59871,30.42816],[77.58445,30.42051],[77.57427,30.41338],[77.57232,30.41045],[77.57604,30.39739],[77.58255,30.39987],[77.58193,30.40134],[77.58546,30.40492],[77.59043,30.40628],[77.59831,30.40488],[77.59963,30.40104],[77.6017,30.3997],[77.60288,30.40293],[77.60505,30.40171],[77.61849,30.40238],[77.62289,30.40519],[77.62504,30.40453],[77.62552,30.40175],[77.62925,30.3979],[77.63591,30.39901],[77.6409,30.40279],[77.64726,30.40473],[77.65279,30.40122],[77.65665,30.40094],[77.65973,30.39056],[77.67242,30.39047],[77.67655,30.38778],[77.67623,30.38032],[77.67808,30.37566],[77.6831,30.37646],[77.68607,30.37925],[77.6904,30.37595],[77.69472,30.36574],[77.70224,30.35562],[77.70608,30.34707],[77.70897,30.345],[77.70978,30.34161],[77.71355,30.3399],[77.72185,30.33021],[77.73209,30.32809],[77.74701,30.3201],[77.76116,30.31829],[77.76578,30.31415],[77.78425,30.30565],[77.78571,30.30298],[77.79424,30.29716],[77.83283,30.28018],[77.83902,30.27453],[77.84075,30.27376],[77.84217,30.27639],[77.84717,30.27659],[77.84653,30.27164],[77.85869,30.27141],[77.86567,30.26582],[77.86933,30.26611],[77.87958,30.26195],[77.88166,30.26227],[77.88574,30.26698],[77.894,30.26537],[77.91089,30.25699],[77.93699,30.24916],[77.93822,30.24384],[77.94147,30.23979],[77.94413,30.23925],[77.94982,30.24231],[77.95151,30.24528],[77.9565,30.24545],[77.9617,30.24237],[77.958,30.24224],[77.94692,30.23406],[77.94602,30.23036],[77.94116,30.22788],[77.93839,30.22434],[77.93793,30.22084],[77.9348,30.21928],[77.93213,30.21439],[77.91894,30.21128],[77.91802,30.20307],[77.91393,30.19647],[77.91483,30.19156],[77.91175,30.18665],[77.91202,30.18253],[77.90028,30.17259],[77.88893,30.15732],[77.88118,30.15073],[77.87688,30.13923],[77.86842,30.12683],[77.86609,30.11913],[77.86042,30.11319],[77.84936,30.1047],[77.84161,30.10265],[77.83682,30.10352],[77.83661,30.09844],[77.83303,30.09458],[77.83428,30.09052],[77.82805,30.08592],[77.82167,30.08568],[77.81045,30.09272],[77.8012,30.09548],[77.79917,30.09047],[77.7997,30.08719],[77.79675,30.08528],[77.79845,30.08355],[77.79477,30.08125],[77.79582,30.07986],[77.79084,30.07502],[77.78113,30.06048],[77.77482,30.05522],[77.77114,30.04802],[77.77005,30.04255],[77.78137,30.0335],[77.77938,30.03067],[77.78549,30.02789],[77.78276,30.02385],[77.78198,30.01863],[77.77581,30.01797],[77.77391,30.01475],[77.77168,30.01498],[77.76196,30.0093],[77.76423,30.00445],[77.75538,29.999],[77.76038,29.99511],[77.75527,29.99198],[77.75034,29.98587],[77.74768,29.986],[77.74371,29.98336],[77.74603,29.98055],[77.7402,29.97529],[77.74062,29.96956],[77.7333,29.95593],[77.73701,29.95376],[77.74836,29.95164],[77.74492,29.94784],[77.74723,29.94664],[77.743,29.94381],[77.74299,29.94094],[77.74062,29.94219],[77.73047,29.9317],[77.74289,29.92493],[77.74298,29.9181],[77.74778,29.91117],[77.73653,29.90666],[77.7386,29.90321],[77.73367,29.90157],[77.73392,29.89964],[77.72927,29.90051],[77.72856,29.89755],[77.73186,29.8928],[77.72507,29.89031],[77.72328,29.88854],[77.72412,29.88678],[77.72275,29.88442],[77.71846,29.8874],[77.71602,29.88588],[77.71471,29.88408],[77.71695,29.87847],[77.72077,29.87616],[77.71521,29.87299],[77.7143,29.86945],[77.71786,29.86679],[77.71864,29.86545],[77.71652,29.86319],[77.72344,29.85505],[77.72567,29.85613],[77.72657,29.85424],[77.74189,29.85185],[77.74389,29.84758],[77.74145,29.84671],[77.74404,29.83988],[77.74022,29.83473],[77.7557,29.8253],[77.75399,29.8208],[77.75899,29.8185],[77.75608,29.81284],[77.75158,29.81068],[77.76322,29.80263],[77.76545,29.79592],[77.77467,29.79102],[77.77219,29.78641],[77.77396,29.78401],[77.77238,29.78],[77.77786,29.77498],[77.77312,29.7687],[77.78036,29.76502],[77.77052,29.75022],[77.76931,29.75059],[77.76953,29.74534],[77.78268,29.73624],[77.76973,29.7176],[77.77172,29.71385],[77.77872,29.71068],[77.78334,29.7094],[77.78558,29.71057],[77.79185,29.70994],[77.8026,29.70339],[77.81048,29.70237],[77.79905,29.68619],[77.80924,29.67986],[77.81534,29.67831],[77.83005,29.6683],[77.83195,29.67041],[77.83568,29.66956],[77.83678,29.67171],[77.83862,29.67049],[77.8431,29.67522],[77.84709,29.67541],[77.85025,29.67998],[77.85373,29.68154],[77.8557,29.68006],[77.86281,29.68945],[77.8656,29.68781],[77.8696,29.68899],[77.87471,29.68729],[77.87948,29.69291],[77.87901,29.70024],[77.88265,29.70243],[77.8909,29.69886],[77.8945,29.69973],[77.89661,29.7022],[77.90207,29.70119],[77.91253,29.69592],[77.91396,29.69848],[77.92007,29.69929],[77.91577,29.70221],[77.91692,29.70556],[77.91979,29.705],[77.92644,29.71422],[77.93457,29.71112],[77.93815,29.71448],[77.94094,29.71084],[77.94554,29.71306],[77.95302,29.70735],[77.94957,29.70413],[77.95098,29.70159],[77.93989,29.69608],[77.94567,29.69182],[77.94589,29.68996],[77.95093,29.68736],[77.94744,29.68309],[77.94937,29.6798],[77.96996,29.66643],[77.96955,29.65623],[77.96645,29.65014],[77.97945,29.64266],[77.98186,29.64512],[77.98379,29.64364],[77.97739,29.63125],[77.97597,29.61738],[77.97769,29.61345],[77.96021,29.61165],[77.94842,29.61691],[77.94277,29.60865],[77.9333,29.60051],[77.94034,29.59271],[77.9675,29.58007],[77.96889,29.58141],[77.97311,29.58031],[77.97493,29.58502],[77.97997,29.58515],[77.98272,29.58356],[77.98645,29.58438],[77.99353,29.59122],[77.99517,29.5958],[77.99617,29.59146],[78.0008,29.58621],[78.0216,29.58085],[78.01524,29.58725],[78.01828,29.5982],[78.03109,29.60832],[78.03307,29.61161],[78.03432,29.61038],[78.04649,29.61607],[78.04885,29.61461],[78.05711,29.62669],[78.05747,29.63069],[78.06855,29.63042],[78.08188,29.62514],[78.08669,29.62503],[78.08146,29.63514],[78.0934,29.64045],[78.10403,29.64123],[78.11929,29.64997],[78.13054,29.65254],[78.13359,29.6595],[78.13758,29.66354],[78.17162,29.69157],[78.18051,29.69683],[78.1884,29.69229],[78.19603,29.69268],[78.20201,29.71443],[78.20358,29.72826],[78.20016,29.73029],[78.20392,29.73727],[78.22165,29.74066],[78.22958,29.73669],[78.24023,29.74143],[78.24592,29.73452],[78.25009,29.73426],[78.25565,29.73825],[78.25975,29.73834],[78.26219,29.74355],[78.26703,29.74284],[78.2683,29.74645],[78.28095,29.75576],[78.28453,29.76178],[78.29268,29.75906],[78.30096,29.76825],[78.30061,29.77104],[78.30363,29.77476],[78.30687,29.77551],[78.30952,29.77996],[78.3129,29.77941],[78.3211,29.7855],[78.32439,29.78986],[78.33074,29.79318],[78.33316,29.79267],[78.33566,29.79661],[78.34929,29.78848],[78.39276,29.76739],[78.40906,29.76338],[78.42851,29.76446],[78.44514,29.75038],[78.45564,29.74515],[78.47369,29.73988],[78.48782,29.73837],[78.50096,29.7329],[78.5102,29.72661],[78.51654,29.7194],[78.51871,29.70177],[78.52145,29.69347],[78.52149,29.65782],[78.53267,29.63875],[78.54081,29.62709],[78.54424,29.62555],[78.56507,29.60109],[78.58036,29.58637],[78.61773,29.55803],[78.62425,29.55654],[78.63851,29.54666],[78.65047,29.546],[78.69972,29.50621],[78.70626,29.50268],[78.71121,29.50036],[78.72009,29.50217],[78.73059,29.50038],[78.73273,29.50199],[78.73819,29.50019],[78.74501,29.50078],[78.74919,29.49596],[78.75359,29.49619],[78.75655,29.49459],[78.75903,29.49064],[78.77757,29.47714],[78.79967,29.46457],[78.81056,29.46581],[78.82274,29.45975],[78.84108,29.45715],[78.88087,29.44338],[78.9002,29.44149],[78.91872,29.43426],[78.92534,29.43383],[78.93634,29.43822],[78.94233,29.43857],[78.94038,29.43756],[78.94024,29.43526],[78.94312,29.43469],[78.93831,29.43401],[78.92571,29.42595],[78.92398,29.41881],[78.91875,29.40988],[78.91838,29.40351],[78.91148,29.39961],[78.91179,29.39375],[78.90507,29.38951],[78.90219,29.38495],[78.89216,29.38096],[78.88734,29.37305],[78.87774,29.37497],[78.87573,29.37198],[78.87958,29.36936],[78.87871,29.36601],[78.86032,29.3582],[78.85193,29.36033],[78.85113,29.35552],[78.85598,29.34972],[78.84987,29.34482],[78.84558,29.34419],[78.84024,29.34597],[78.83576,29.35046],[78.83074,29.35149],[78.82745,29.35421],[78.82834,29.35967],[78.82636,29.36143],[78.8276,29.36377],[78.82586,29.36555],[78.83026,29.36801],[78.82473,29.36713],[78.82215,29.35914],[78.81051,29.34012],[78.7999,29.33458],[78.80286,29.33125],[78.8012,29.32524],[78.80472,29.31925],[78.7982,29.31901],[78.79545,29.31471],[78.79591,29.31177],[78.78955,29.3153],[78.79054,29.31889],[78.7954,29.32501],[78.79309,29.32683],[78.79345,29.32817],[78.79052,29.33059],[78.78679,29.32611],[78.78525,29.32715],[78.77748,29.32573],[78.77333,29.32849],[78.77431,29.33198],[78.76655,29.3374],[78.76081,29.33293],[78.75376,29.33122],[78.75369,29.32732],[78.74955,29.32324],[78.75032,29.31735],[78.74508,29.31794],[78.74068,29.31579],[78.74067,29.32042],[78.73367,29.3219],[78.73577,29.31853],[78.73209,29.31756],[78.73134,29.31352],[78.73518,29.30654],[78.73445,29.30294],[78.72719,29.30551],[78.72299,29.30345],[78.71859,29.30664],[78.71837,29.30342],[78.72269,29.29932],[78.72675,29.2978],[78.72843,29.29922],[78.73452,29.29957],[78.73614,29.29676],[78.76502,29.27931],[78.77321,29.27113],[78.77019,29.26704],[78.77383,29.26199],[78.78509,29.25365],[78.78815,29.25337],[78.78975,29.25496],[78.79189,29.25227],[78.79042,29.25017],[78.79077,29.2469],[78.79324,29.24453],[78.79841,29.24442],[78.80737,29.23668],[78.82008,29.23214],[78.8199,29.23374],[78.82243,29.23332],[78.82571,29.23611],[78.82787,29.23531],[78.83231,29.23675],[78.83816,29.24255],[78.83818,29.24109],[78.8413,29.23969],[78.83946,29.23679],[78.84337,29.23484],[78.84554,29.23677],[78.84954,29.23271],[78.85107,29.23682],[78.85537,29.23852],[78.85834,29.24184],[78.86217,29.23943],[78.85859,29.23299],[78.86304,29.23209],[78.86326,29.23031],[78.87069,29.22725],[78.87264,29.22759],[78.87261,29.23031],[78.87448,29.23025],[78.87423,29.22678],[78.87648,29.22553],[78.87176,29.22257],[78.87583,29.21902],[78.87947,29.21881],[78.88052,29.217],[78.87812,29.21571],[78.87854,29.21426],[78.88328,29.21131],[78.87828,29.20636],[78.8751,29.20651],[78.87522,29.20517],[78.88104,29.19992],[78.8855,29.20317],[78.89062,29.20118],[78.89128,29.19808],[78.88675,29.19508],[78.89006,29.19221],[78.89428,29.19189],[78.89636,29.19358],[78.89974,29.18588],[78.89457,29.18576],[78.89849,29.18181],[78.90317,29.18091],[78.90347,29.17824],[78.90683,29.18006],[78.90875,29.17856],[78.90167,29.16956],[78.90905,29.16354],[78.90801,29.16069],[78.90909,29.15732],[78.90637,29.15174],[78.91287,29.15438],[78.91545,29.15245],[78.91548,29.14994],[78.91205,29.14742],[78.91105,29.14443],[78.91623,29.14067],[78.91621,29.13773],[78.91876,29.13553],[78.90718,29.12741],[78.90633,29.12501],[78.92702,29.11813],[78.93464,29.12964],[78.94286,29.12617],[78.94375,29.12751],[78.95645,29.11989],[78.96417,29.1305],[78.97287,29.12691],[78.97492,29.13145],[78.97468,29.13595],[78.97755,29.1366],[78.97676,29.13855],[78.98234,29.14305],[78.98984,29.13949],[78.99128,29.13068],[78.99665,29.13012],[79.00424,29.1259],[79.00171,29.12226],[79.0035,29.11921],[79.00625,29.11828],[79.00817,29.11191],[79.01419,29.11662],[79.0267,29.11242],[79.03456,29.1177],[79.04063,29.12767],[79.03175,29.1281],[79.02732,29.13244],[79.01921,29.12934],[79.01692,29.13077],[79.01494,29.13395],[79.02111,29.14583],[79.01782,29.15384],[79.01908,29.15572],[79.02382,29.15555],[79.02978,29.14697],[79.03461,29.14407],[79.0374,29.14482],[79.03595,29.15309],[79.03937,29.15841],[79.03237,29.15913],[79.02912,29.16413],[79.03213,29.16843],[79.03584,29.16939],[79.03944,29.16857],[79.04538,29.16418],[79.0505,29.15693],[79.0537,29.15487],[79.05942,29.15542],[79.07487,29.15164],[79.09057,29.14339],[79.10139,29.1341],[79.1119,29.12792],[79.11946,29.12577],[79.12273,29.12734],[79.12492,29.13306],[79.12687,29.13268],[79.14189,29.12433],[79.14082,29.12226],[79.1434,29.12027],[79.15017,29.11867],[79.1535,29.11518],[79.15127,29.11327],[79.15245,29.10712],[79.15084,29.10341],[79.15318,29.10155],[79.14832,29.09914],[79.15153,29.0954],[79.15002,29.09451],[79.14996,29.09176],[79.14327,29.08668],[79.14342,29.08291],[79.14212,29.08194],[79.14181,29.07763],[79.14422,29.07203],[79.1425,29.06695],[79.14587,29.06457],[79.14513,29.06296],[79.14733,29.06226],[79.14876,29.05845],[79.15332,29.05686],[79.16191,29.04896],[79.168,29.04738],[79.17029,29.04861],[79.17511,29.04625],[79.1718,29.04506],[79.17192,29.04264],[79.16916,29.04238],[79.17085,29.03942],[79.168,29.03826],[79.16884,29.03577],[79.16751,29.0322],[79.1644,29.03222],[79.16497,29.02884],[79.16235,29.02921],[79.1622,29.02409],[79.16589,29.02024],[79.16528,29.01779],[79.16843,29.01942],[79.17582,29.01574],[79.17106,29.01187],[79.18094,29.01288],[79.18267,29.01605],[79.18595,29.01764],[79.19384,29.01559],[79.19089,29.01895],[79.19077,29.02318],[79.19426,29.01972],[79.19741,29.02138],[79.20365,29.02074],[79.21173,29.02756],[79.22203,29.01945],[79.23155,29.01512],[79.24495,29.01008],[79.25102,29.01024],[79.24775,29.00334],[79.25913,28.9924],[79.29233,28.97381],[79.29885,28.9728],[79.30727,28.96647],[79.30747,28.96787],[79.31033,28.96799],[79.31092,28.96999],[79.31268,28.96897],[79.31249,28.97131],[79.30986,28.97172],[79.31265,28.97498],[79.31106,28.97526],[79.3119,28.97706],[79.32146,28.9718],[79.33722,28.97213],[79.35627,28.9677],[79.3647,28.96807],[79.36517,28.97074],[79.36099,28.97193],[79.36309,28.97798],[79.36211,28.98145],[79.36763,28.98664],[79.37236,28.98747],[79.37239,28.9846],[79.37769,28.9757],[79.37714,28.97139],[79.38175,28.9698],[79.3821,28.96224],[79.38631,28.95319],[79.3853,28.95177],[79.38733,28.94969],[79.39065,28.94739],[79.40281,28.95001],[79.40471,28.94921],[79.40433,28.95041],[79.4062,28.94985],[79.4054,28.95151],[79.40748,28.95225],[79.41583,28.94382],[79.41558,28.94137],[79.41901,28.94003],[79.41889,28.93298],[79.41584,28.92787],[79.42531,28.92296],[79.42795,28.91978],[79.42689,28.91618],[79.42487,28.91675],[79.427,28.91533],[79.42479,28.91545],[79.42692,28.91442],[79.42513,28.91437],[79.42539,28.91324],[79.42764,28.91269],[79.42511,28.91213],[79.42692,28.91128],[79.42428,28.90841],[79.42532,28.90522],[79.42252,28.90303],[79.42251,28.89948],[79.42466,28.89743],[79.42294,28.89349],[79.42773,28.89298],[79.43099,28.8868],[79.42787,28.87653],[79.42501,28.87366],[79.4249,28.86812],[79.42557,28.86642],[79.44046,28.86174],[79.44518,28.86383],[79.44623,28.86776],[79.45019,28.86772],[79.44979,28.87079],[79.45164,28.87163],[79.46194,28.86676],[79.46611,28.86777],[79.47057,28.86541],[79.47722,28.86457],[79.47892,28.86728],[79.47873,28.87114],[79.49714,28.87287],[79.50992,28.86453],[79.5114,28.86722],[79.52178,28.86474],[79.52351,28.86712],[79.53304,28.86971],[79.53716,28.87694],[79.54166,28.88043],[79.54046,28.88193],[79.54219,28.88453],[79.54595,28.88558],[79.54791,28.89097],[79.54945,28.89008],[79.55494,28.89376],[79.55275,28.8958],[79.55648,28.89926],[79.57062,28.89253],[79.56999,28.88775],[79.57124,28.88646],[79.57755,28.88864],[79.57917,28.88618],[79.57835,28.88349],[79.58427,28.87918],[79.58019,28.87115],[79.58097,28.86616],[79.57349,28.85465],[79.57565,28.85045],[79.58436,28.84627],[79.58751,28.84999],[79.59155,28.8495],[79.5936,28.85204],[79.59712,28.85125],[79.60339,28.85472],[79.6039,28.85683],[79.61331,28.85283],[79.62138,28.86431],[79.62613,28.86662],[79.63092,28.86112],[79.63601,28.86681],[79.64486,28.86343],[79.64745,28.86702],[79.65349,28.86921],[79.65557,28.86841],[79.65605,28.86977],[79.66571,28.86557],[79.66342,28.86194],[79.66744,28.8597],[79.67212,28.85801],[79.67738,28.85927],[79.68189,28.85679],[79.68367,28.85532],[79.68231,28.85347],[79.68316,28.84997],[79.692,28.84788],[79.68996,28.84533],[79.69292,28.84591],[79.70667,28.84101],[79.70752,28.84417],[79.70625,28.84445],[79.70962,28.8511],[79.71855,28.84881],[79.71991,28.84567],[79.72058,28.85027],[79.7234,28.85289],[79.72271,28.85523],[79.72637,28.86097],[79.73652,28.85626],[79.73825,28.85876],[79.74565,28.85992],[79.74907,28.87177],[79.75925,28.87085],[79.76675,28.87493],[79.78082,28.87139],[79.78344,28.87125],[79.78629,28.87341],[79.78861,28.87269],[79.79325,28.88287],[79.7998,28.88748],[79.8147,28.88369],[79.81383,28.88656],[79.81802,28.88781],[79.8293,28.88445],[79.82828,28.87828],[79.83253,28.87099],[79.83546,28.87104],[79.83565,28.87495],[79.84322,28.87588],[79.84565,28.87387],[79.84577,28.86354],[79.8496,28.8593],[79.84505,28.85537],[79.84534,28.85111],[79.84063,28.84768],[79.838,28.84832],[79.83288,28.85532],[79.83074,28.85523],[79.82978,28.85324],[79.83245,28.84584],[79.83634,28.84294],[79.83678,28.83992],[79.83087,28.83778],[79.82727,28.84167],[79.82382,28.83901],[79.8279,28.83695],[79.83131,28.83076],[79.83717,28.83235],[79.83245,28.82354],[79.82915,28.82139],[79.82945,28.81814],[79.82604,28.81493],[79.82429,28.80727],[79.81897,28.80547],[79.8199,28.81216],[79.81645,28.81692],[79.80723,28.80566],[79.80803,28.80091],[79.81394,28.79688],[79.81454,28.79889],[79.81281,28.80196],[79.81457,28.80261],[79.81995,28.79611],[79.82289,28.79563],[79.82432,28.79829],[79.82693,28.79497],[79.83081,28.79773],[79.83308,28.79682],[79.83433,28.79859],[79.83832,28.79753],[79.83986,28.80017],[79.83843,28.80122],[79.84152,28.80427],[79.84609,28.80474],[79.84547,28.80075],[79.84934,28.79964],[79.85237,28.8019],[79.85059,28.80333],[79.85289,28.80613],[79.85031,28.80601],[79.85166,28.80883],[79.85076,28.81045],[79.84659,28.81044],[79.85294,28.81373],[79.85212,28.81566],[79.84661,28.81744],[79.84785,28.81953],[79.8463,28.82318],[79.84863,28.82515],[79.85407,28.82411],[79.85371,28.82603],[79.85083,28.82693],[79.85102,28.82855],[79.85387,28.82699],[79.85772,28.83064],[79.86142,28.83053],[79.85898,28.83166],[79.86061,28.83304],[79.85888,28.8338],[79.86266,28.83706],[79.86319,28.84022],[79.8647,28.83777],[79.86719,28.83954],[79.87025,28.83845],[79.87166,28.84014],[79.87461,28.83634],[79.87337,28.8363],[79.87435,28.83424],[79.87256,28.83156],[79.87573,28.83311],[79.87847,28.83031],[79.87961,28.83241],[79.87857,28.83356],[79.8834,28.83398],[79.88212,28.83693],[79.88822,28.83656],[79.88905,28.83404],[79.89391,28.83146],[79.89199,28.82561],[79.89404,28.82379],[79.89407,28.8204],[79.91453,28.81848],[79.9107,28.81247],[79.91078,28.8099],[79.91552,28.80427],[79.90554,28.80299],[79.87849,28.81483],[79.87348,28.80939],[79.8696,28.80834],[79.87007,28.80576],[79.87473,28.80236],[79.87226,28.79936],[79.87306,28.79728],[79.8833,28.79454],[79.88426,28.79],[79.89728,28.78623],[79.90136,28.78198],[79.90647,28.78196],[79.90982,28.7854],[79.91781,28.78236],[79.91935,28.78412],[79.91884,28.7865],[79.92378,28.78671],[79.92652,28.79001],[79.93982,28.78772],[79.92852,28.77902],[79.92408,28.77316],[79.92699,28.77097],[79.92734,28.76871],[79.93057,28.76802],[79.93323,28.76428],[79.93258,28.76272],[79.9432,28.75989],[79.94315,28.75798],[79.93872,28.75313],[79.93863,28.75038],[79.94359,28.74862],[79.94648,28.74236],[79.94367,28.7348],[79.94596,28.72975],[79.9544,28.72286],[80.03013,28.74863],[80.05227,28.77828],[80.05545,28.78125],[80.06174,28.78319],[80.05867,28.78839],[80.06488,28.79443],[80.0681,28.80284],[80.05922,28.8168],[80.05179,28.82037],[80.05979,28.82539],[80.06292,28.83467],[80.06536,28.8369],[80.05847,28.91663],[80.09632,28.97574],[80.10055,28.9869],[80.11792,28.98155],[80.12669,29.00611],[80.13542,29.0074],[80.13625,29.00959],[80.1245,29.01307],[80.13124,29.0305],[80.12637,29.03194],[80.13718,29.06047],[80.12942,29.06272],[80.14479,29.1022],[80.16509,29.11848],[80.1675,29.12576],[80.17764,29.12854],[80.18319,29.13718],[80.18689,29.13667],[80.1972,29.13058],[80.20309,29.12969],[80.20969,29.12197],[80.23304,29.11849],[80.23868,29.12124],[80.24342,29.12656],[80.24835,29.12803],[80.25534,29.13735],[80.26013,29.1398],[80.2709,29.14087],[80.2727,29.14242],[80.27171,29.14714],[80.26517,29.15351],[80.25825,29.16477],[80.25774,29.16938],[80.26011,29.17248],[80.26043,29.17644],[80.25797,29.18468],[80.25873,29.18703],[80.24059,29.20291],[80.24454,29.21267],[80.24773,29.21628],[80.24786,29.22045],[80.25263,29.22144],[80.2574,29.21798],[80.25804,29.21065],[80.26039,29.20691],[80.27567,29.20666],[80.28146,29.20204],[80.28595,29.19585],[80.29049,29.19554],[80.29373,29.19776],[80.29744,29.20665],[80.29405,29.21182],[80.29608,29.22125],[80.29062,29.23181],[80.30019,29.24164],[80.29855,29.24952],[80.30008,29.25465],[80.29931,29.26102],[80.30465,29.27518],[80.30485,29.28664],[80.30706,29.28969],[80.31101,29.2909],[80.31851,29.3035],[80.316,29.30844],[80.31688,29.31525],[80.30919,29.32253],[80.29576,29.32453],[80.29092,29.33112],[80.29114,29.33604],[80.28475,29.34035],[80.27994,29.34724],[80.27996,29.35907],[80.27145,29.36437],[80.27158,29.37378],[80.27916,29.37884],[80.27309,29.38621],[80.27571,29.39222],[80.2482,29.40619],[80.24206,29.41154],[80.24598,29.41583],[80.24416,29.424],[80.24763,29.43559],[80.24224,29.44288],[80.24498,29.44679],[80.25481,29.44799],[80.25731,29.45174],[80.2661,29.44927],[80.27437,29.45012],[80.27452,29.45231],[80.26921,29.45416],[80.26907,29.45554],[80.27567,29.45852],[80.27928,29.45784],[80.27891,29.45387],[80.28083,29.4516],[80.28813,29.45124],[80.29444,29.45395],[80.2975,29.45173],[80.30178,29.45278],[80.30236,29.45509],[80.28716,29.47357],[80.28694,29.47698],[80.29352,29.47958],[80.29666,29.48526],[80.29622,29.48775],[80.29873,29.49061],[80.30116,29.49029],[80.3047,29.48623],[80.31306,29.48481],[80.31462,29.49039],[80.31313,29.49611],[80.31422,29.49943],[80.3292,29.50575],[80.33213,29.51294],[80.34171,29.51028],[80.34967,29.51921],[80.34863,29.52436],[80.35561,29.52795],[80.35788,29.53277],[80.34857,29.54044],[80.34152,29.54054],[80.34134,29.54242],[80.34563,29.54861],[80.34247,29.55277],[80.34867,29.55535],[80.36358,29.55636],[80.36219,29.56032],[80.36307,29.56393],[80.37849,29.56105],[80.37911,29.57158],[80.38805,29.57146],[80.39101,29.58116],[80.40277,29.58929],[80.40794,29.59597],[80.40893,29.60423],[80.40598,29.6133],[80.40809,29.61521],[80.40818,29.62066],[80.41098,29.62543],[80.41824,29.6267],[80.42087,29.62985],[80.41933,29.63371],[80.42026,29.63833],[80.41432,29.64351],[80.41585,29.65258],[80.41394,29.65431],[80.41012,29.6538],[80.40601,29.65986],[80.39943,29.65855],[80.398,29.65979],[80.3988,29.66211],[80.3904,29.66451],[80.38987,29.67121],[80.38417,29.67509],[80.38486,29.68547],[80.38023,29.68959],[80.37943,29.70089],[80.3767,29.7035],[80.3745,29.71308],[80.37207,29.71549],[80.37587,29.72005],[80.36825,29.72195],[80.36564,29.72638],[80.36664,29.73124],[80.3696,29.734],[80.36432,29.74015],[80.36642,29.74919],[80.36907,29.75105],[80.37179,29.7494],[80.38527,29.75046],[80.38634,29.75135],[80.38484,29.75676],[80.38577,29.75906],[80.39038,29.76049],[80.39425,29.75827],[80.39737,29.75891],[80.39627,29.76528],[80.40067,29.77458],[80.40475,29.778],[80.40368,29.78192],[80.40724,29.78409],[80.40695,29.79474],[80.4127,29.79165],[80.41588,29.79564],[80.42867,29.79785],[80.43503,29.80597],[80.43708,29.80589],[80.43947,29.80184],[80.44347,29.79926],[80.44831,29.79904],[80.45321,29.80217],[80.46432,29.80238],[80.47999,29.79539],[80.49386,29.7958],[80.49431,29.79875],[80.49261,29.80173],[80.49449,29.8019],[80.49574,29.80503],[80.49989,29.80821],[80.49754,29.81111],[80.50109,29.81739],[80.50464,29.81948],[80.50668,29.82302],[80.52195,29.82743],[80.52376,29.82948],[80.5236,29.83245],[80.52779,29.83362],[80.53138,29.83869],[80.53566,29.8389],[80.53873,29.8475],[80.54389,29.84668],[80.54823,29.85036],[80.55312,29.85134],[80.55138,29.85636],[80.55423,29.85946],[80.55427,29.86164],[80.56127,29.86645],[80.55678,29.87036],[80.56555,29.87927],[80.57239,29.89489],[80.56971,29.90875],[80.57411,29.92404],[80.57788,29.92773],[80.58133,29.937],[80.59112,29.9496],[80.60185,29.95813],[80.60868,29.9588],[80.61918,29.96359],[80.62957,29.96543],[80.63702,29.96348],[80.64056,29.95967],[80.64879,29.95573],[80.67455,29.95721],[80.68243,29.9624],[80.68398,29.967],[80.69041,29.97462],[80.69719,29.97978],[80.7,29.97967],[80.70532,29.98627],[80.71227,29.99061],[80.71896,30.00058],[80.737,29.99936],[80.74456,30.00385],[80.74954,30.00901],[80.75391,30.01984],[80.75772,30.0242],[80.75807,30.0283],[80.75562,30.03158],[80.75589,30.03985],[80.75913,30.04269],[80.75849,30.04512],[80.76103,30.04952],[80.77213,30.0541],[80.77651,30.0544],[80.77954,30.05681],[80.78932,30.06958],[80.78988,30.07329],[80.79962,30.08093],[80.80561,30.08999],[80.81373,30.09309],[80.8145,30.09582],[80.81919,30.09683],[80.82071,30.09969],[80.82584,30.10011],[80.82919,30.09729],[80.83977,30.09871],[80.84601,30.10438],[80.84586,30.10697],[80.84189,30.11117],[80.84472,30.11623],[80.85425,30.11908],[80.85496,30.12047],[80.86254,30.12105],[80.86845,30.12619],[80.87477,30.12649],[80.87683,30.13439],[80.87145,30.14759],[80.8704,30.15919],[80.86717,30.1703],[80.86776,30.17387],[80.88197,30.1837],[80.89096,30.19643],[80.89561,30.20839],[80.90273,30.21538],[80.91972,30.2142],[80.9217,30.20517],[80.92131,30.19834],[80.91828,30.18983],[80.94442,30.17869],[80.95001,30.17826],[80.96005,30.17899],[80.99961,30.19252],[81.00745,30.19183],[81.01316,30.1941],[81.03106,30.19638],[81.03503,30.19815],[81.03625,30.20163],[81.04328,30.20456],[81.04661,30.21087],[81.03105,30.22015],[81.03002,30.22184],[81.0314,30.2261],[81.0271,30.22846],[81.03321,30.24639],[81.01243,30.25495],[81.00555,30.26309],[80.98839,30.26542],[80.95749,30.2751],[80.93306,30.2801],[80.89626,30.294],[80.86272,30.29947],[80.82157,30.31556],[80.8007,30.32965],[80.78733,30.34261],[80.78462,30.34987],[80.78565,30.35414],[80.78359,30.35785],[80.75197,30.3935],[80.74572,30.39737],[80.71352,30.40817],[80.67807,30.43745],[80.65202,30.44429],[80.63786,30.45369],[80.61609,30.46515],[80.59801,30.47877],[80.58556,30.48214],[80.5802,30.48093],[80.57659,30.47819],[80.56985,30.46662],[80.56006,30.46637],[80.55554,30.46486],[80.55142,30.46089],[80.54761,30.44859],[80.53908,30.4492],[80.52459,30.46265],[80.5171,30.47318],[80.5095,30.47552],[80.49833,30.48417],[80.45596,30.49422],[80.44769,30.49765],[80.43133,30.50718],[80.42917,30.51096],[80.41948,30.51518],[80.41558,30.52533],[80.41273,30.5252],[80.40686,30.5205],[80.39831,30.51676],[80.38559,30.51505],[80.38283,30.51614],[80.38142,30.52006],[80.37833,30.52188],[80.3739,30.52145],[80.36061,30.52735],[80.31886,30.55938],[80.28307,30.57219],[80.27703,30.56583],[80.27359,30.56504],[80.26623,30.56664],[80.26171,30.56506],[80.25776,30.55884],[80.25325,30.56543],[80.24891,30.5687],[80.22683,30.57895],[80.22736,30.59343],[80.22963,30.60089],[80.2288,30.60349],[80.21709,30.60836],[80.21167,30.62242],[80.21193,30.62481],[80.21872,30.62864],[80.22182,30.63334],[80.22117,30.64182],[80.19716,30.66209],[80.19761,30.68001],[80.19971,30.68305],[80.20407,30.68485],[80.21253,30.68426],[80.2298,30.68728],[80.23457,30.68829],[80.23642,30.69038],[80.23687,30.70747],[80.24762,30.71781],[80.25051,30.73714],[80.25044,30.74235],[80.2429,30.74663],[80.24107,30.75076],[80.23966,30.76206],[80.23018,30.75918],[80.21977,30.75036],[80.21491,30.74906],[80.2001,30.76472],[80.20028,30.77268],[80.20322,30.77652],[80.19836,30.77884],[80.18756,30.78985],[80.18447,30.79724],[80.17777,30.80405],[80.15815,30.80588],[80.15597,30.80487],[80.1542,30.79974],[80.15737,30.78873],[80.15376,30.78743],[80.14354,30.78975],[80.13774,30.7841],[80.13003,30.78198],[80.12242,30.77736],[80.11091,30.7793],[80.09571,30.79089],[80.08901,30.79408],[80.08499,30.80402],[80.07675,30.8155],[80.05747,30.82941],[80.0573,30.83491],[80.05873,30.83737],[80.05602,30.84151],[80.05322,30.84199],[80.04461,30.83562],[80.04203,30.83582],[80.02507,30.84809],[80.01747,30.85556],[80.01225,30.86354],[80.00375,30.86508],[79.99729,30.86909],[79.9925,30.87694],[79.96966,30.88245],[79.96455,30.88603],[79.96215,30.89002],[79.95369,30.88506],[79.94491,30.88616],[79.93564,30.88244],[79.93085,30.88133],[79.9291,30.88243],[79.9251,30.89318],[79.9135,30.90758],[79.91039,30.91507],[79.89026,30.91864],[79.88705,30.93172],[79.88864,30.93929],[79.88496,30.94218],[79.88224,30.95086],[79.88239,30.9554],[79.87583,30.96752],[79.86271,30.97536],[79.85616,30.97742],[79.83858,30.97396],[79.83554,30.97533],[79.82276,30.97339],[79.81637,30.97393],[79.80724,30.98177],[79.80277,30.97929],[79.79862,30.9797],[79.79542,30.98162],[79.79189,30.98836],[79.78086,30.98752],[79.77463,30.98889],[79.75301,31.00786],[79.7471,31.00304],[79.73803,30.98374],[79.73548,30.98154],[79.72669,30.98028],[79.71711,30.976],[79.708,30.97832],[79.70162,30.97308],[79.69796,30.9725],[79.6749,30.98349],[79.66499,30.98292],[79.6634,30.97934],[79.66487,30.96956],[79.6636,30.96653],[79.65849,30.96294],[79.65034,30.96155],[79.63327,30.95338],[79.61985,30.95129],[79.61412,30.94425],[79.60551,30.93982],[79.60346,30.93265],[79.60185,30.93348],[79.60167,30.93995],[79.5967,30.94476],[79.59014,30.94818],[79.58295,30.94968],[79.57176,30.94855],[79.56888,30.95006],[79.56454,30.95721],[79.55559,30.95732],[79.55255,30.96007],[79.54595,30.9712],[79.54034,30.97546],[79.54065,30.97987],[79.54702,30.98553],[79.54844,30.98953],[79.53812,30.99019],[79.5242,31.01445],[79.51903,31.02671],[79.50693,31.03208],[79.49161,31.03354],[79.46859,31.03347],[79.4456,31.02805],[79.43061,31.02862],[79.42476,31.03049],[79.42248,31.04842],[79.42569,31.06636],[79.42457,31.07107],[79.40773,31.07699],[79.40402,31.08704],[79.40212,31.10214],[79.3988,31.10779],[79.33253,31.12735],[79.31748,31.13672],[79.30943,31.14744],[79.3072,31.15778],[79.30096,31.16781],[79.30316,31.19037],[79.2999,31.20573],[79.29262,31.22122],[79.28437,31.23239],[79.28017,31.23496],[79.25707,31.24017],[79.25187,31.24302],[79.25028,31.25536]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"6","area_level":"State","area_name":"Haryana","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.43919,28.11075],[76.44028,28.11501],[76.44137,28.11686],[76.44121,28.11895],[76.44074,28.12078],[76.43623,28.12683],[76.4357,28.12788],[76.43571,28.12929],[76.43326,28.13034],[76.4332,28.13222],[76.43295,28.13224],[76.43294,28.13242],[76.4336,28.13641],[76.43128,28.13792],[76.42928,28.13851],[76.4289,28.1384],[76.42791,28.1346],[76.42733,28.1335],[76.42693,28.13209],[76.42579,28.12984],[76.42418,28.12725],[76.42316,28.12611],[76.42257,28.12488],[76.42181,28.12252],[76.42263,28.12223],[76.42374,28.12081],[76.42333,28.1197],[76.42352,28.11694],[76.42289,28.115],[76.42285,28.11432],[76.42849,28.11075],[76.43047,28.10974],[76.43219,28.10974],[76.43453,28.10908],[76.43538,28.11012],[76.43964,28.11012],[76.43919,28.11075]]],[[[76.84459,30.88926],[76.84104,30.89166],[76.83404,30.9045],[76.82998,30.90714],[76.82646,30.91313],[76.8293,30.91662],[76.82606,30.92065],[76.82739,30.92122],[76.82515,30.92635],[76.8224,30.92854],[76.81114,30.92401],[76.79816,30.91524],[76.78683,30.91334],[76.77609,30.90597],[76.77735,30.89686],[76.78557,30.87641],[76.79074,30.87031],[76.80179,30.86584],[76.80472,30.86059],[76.81467,30.85244],[76.81316,30.84818],[76.814,30.84299],[76.82297,30.84477],[76.82614,30.84076],[76.82982,30.83907],[76.83742,30.8361],[76.84344,30.83596],[76.8467,30.83391],[76.84584,30.83156],[76.84815,30.82868],[76.84884,30.81414],[76.84533,30.80719],[76.84688,30.80368],[76.85417,30.79919],[76.85699,30.79475],[76.85268,30.79349],[76.8507,30.7911],[76.85437,30.78726],[76.84178,30.77446],[76.84257,30.7715],[76.84028,30.77062],[76.83897,30.7659],[76.84015,30.75889],[76.83745,30.75415],[76.83902,30.7512],[76.83384,30.74983],[76.83475,30.74217],[76.83686,30.74266],[76.8315,30.73951],[76.83716,30.73345],[76.84184,30.73272],[76.84319,30.73111],[76.84742,30.73141],[76.84822,30.7303],[76.84639,30.72968],[76.8494,30.72339],[76.84607,30.72229],[76.84357,30.71921],[76.84503,30.71719],[76.84945,30.71827],[76.84677,30.71689],[76.84835,30.71446],[76.84413,30.7082],[76.83555,30.70358],[76.83528,30.70155],[76.8286,30.69465],[76.83022,30.69345],[76.82738,30.69197],[76.82755,30.6898],[76.82516,30.68825],[76.82621,30.68668],[76.82762,30.68767],[76.83189,30.68323],[76.82914,30.68093],[76.83129,30.67903],[76.83002,30.67586],[76.83204,30.67095],[76.83154,30.66475],[76.83257,30.66312],[76.84579,30.66864],[76.84809,30.66591],[76.84469,30.66239],[76.84496,30.65902],[76.84686,30.65666],[76.85119,30.65819],[76.85302,30.6572],[76.86201,30.66359],[76.86831,30.67346],[76.87645,30.68051],[76.87426,30.67391],[76.87122,30.64212],[76.8748,30.64085],[76.87758,30.64415],[76.88512,30.64528],[76.89646,30.63583],[76.89595,30.63305],[76.89281,30.63104],[76.89555,30.62892],[76.89972,30.62814],[76.90278,30.62437],[76.91008,30.62615],[76.91307,30.61686],[76.9133,30.61397],[76.91184,30.61303],[76.91352,30.61141],[76.916,30.60989],[76.9199,30.61176],[76.92601,30.61006],[76.92234,30.60559],[76.92717,30.60361],[76.92022,30.59323],[76.90966,30.59188],[76.9198,30.58516],[76.91514,30.58218],[76.91494,30.5784],[76.91772,30.57601],[76.90897,30.56469],[76.91533,30.56192],[76.91754,30.55911],[76.91616,30.55366],[76.90494,30.54295],[76.89395,30.54864],[76.88718,30.55103],[76.8865,30.54983],[76.88816,30.54589],[76.89607,30.53812],[76.90215,30.53644],[76.90622,30.53712],[76.91249,30.53395],[76.91224,30.53038],[76.9156,30.52571],[76.92149,30.52619],[76.93202,30.52219],[76.92924,30.51709],[76.92859,30.50755],[76.93117,30.50036],[76.91893,30.48944],[76.91078,30.49428],[76.90871,30.49188],[76.90362,30.49139],[76.89896,30.48879],[76.89804,30.48376],[76.91218,30.47376],[76.91381,30.46767],[76.89956,30.44865],[76.90537,30.44493],[76.90487,30.44323],[76.90274,30.44408],[76.89755,30.4371],[76.90505,30.43407],[76.91229,30.44291],[76.90638,30.43357],[76.91649,30.42623],[76.91237,30.42051],[76.9171,30.41599],[76.91915,30.40924],[76.91805,30.40837],[76.91936,30.40741],[76.91235,30.40063],[76.91972,30.39866],[76.92273,30.40107],[76.93315,30.40155],[76.94146,30.39535],[76.93868,30.38609],[76.9349,30.38188],[76.92262,30.3746],[76.91686,30.36491],[76.90678,30.36139],[76.90271,30.36195],[76.89826,30.35882],[76.89029,30.36943],[76.89137,30.37377],[76.89796,30.3821],[76.89507,30.38471],[76.8951,30.38694],[76.88623,30.39404],[76.88335,30.39208],[76.8807,30.3939],[76.88394,30.39768],[76.88213,30.40082],[76.88434,30.40428],[76.88089,30.40612],[76.88336,30.40865],[76.87444,30.40947],[76.8683,30.41394],[76.85613,30.41765],[76.8542,30.4212],[76.85439,30.42548],[76.85002,30.43347],[76.85103,30.43525],[76.84679,30.43808],[76.84374,30.43736],[76.83775,30.43156],[76.83623,30.42961],[76.83824,30.42762],[76.82748,30.41607],[76.82183,30.41268],[76.81647,30.41334],[76.80926,30.41764],[76.80177,30.41367],[76.79514,30.41866],[76.79022,30.41455],[76.78704,30.41621],[76.77433,30.4264],[76.77728,30.43105],[76.78487,30.43535],[76.7811,30.43992],[76.77429,30.44328],[76.76556,30.43249],[76.75793,30.42982],[76.75,30.42983],[76.74105,30.42622],[76.74105,30.42424],[76.73504,30.41908],[76.74011,30.41208],[76.73799,30.40835],[76.72822,30.40036],[76.72515,30.40218],[76.72221,30.399],[76.71455,30.40244],[76.71511,30.39745],[76.71285,30.3902],[76.71864,30.38248],[76.71761,30.38004],[76.71949,30.37877],[76.7296,30.38226],[76.73124,30.37966],[76.71871,30.36658],[76.71991,30.36333],[76.72571,30.36185],[76.73339,30.36883],[76.73524,30.36785],[76.73755,30.37042],[76.74541,30.36783],[76.74929,30.3618],[76.74892,30.35699],[76.75113,30.3553],[76.74522,30.35049],[76.74609,30.34953],[76.73847,30.34632],[76.73262,30.34832],[76.72737,30.34106],[76.72975,30.33882],[76.72229,30.33324],[76.71639,30.33602],[76.71102,30.3258],[76.70487,30.32588],[76.70005,30.32805],[76.69563,30.32157],[76.68859,30.32727],[76.68209,30.31979],[76.68558,30.31755],[76.68647,30.31426],[76.67804,30.30583],[76.68079,30.30313],[76.67486,30.29935],[76.66768,30.30284],[76.66543,30.3059],[76.65955,30.29989],[76.65568,30.29839],[76.65002,30.29067],[76.63887,30.28439],[76.63542,30.28959],[76.63216,30.28385],[76.63036,30.27738],[76.63144,30.27609],[76.6256,30.2712],[76.62723,30.26938],[76.62343,30.26455],[76.62053,30.26495],[76.61441,30.2725],[76.61163,30.26953],[76.60973,30.27039],[76.6087,30.2679],[76.60113,30.27032],[76.59292,30.26174],[76.58802,30.26483],[76.58649,30.26854],[76.58382,30.27022],[76.58063,30.2652],[76.57514,30.26188],[76.57193,30.26524],[76.56203,30.26195],[76.55959,30.26484],[76.55668,30.26244],[76.55736,30.25341],[76.56005,30.24519],[76.55345,30.22996],[76.54523,30.23001],[76.54311,30.22839],[76.54567,30.22555],[76.54856,30.22514],[76.56075,30.22892],[76.56377,30.2353],[76.56621,30.23531],[76.56786,30.23809],[76.58111,30.24657],[76.5879,30.25396],[76.59066,30.25341],[76.59155,30.25576],[76.59633,30.25521],[76.60371,30.25188],[76.6061,30.24835],[76.60599,30.24567],[76.60293,30.24133],[76.62326,30.23142],[76.62751,30.22719],[76.62332,30.21982],[76.6164,30.21632],[76.61484,30.21353],[76.61553,30.21168],[76.62171,30.20764],[76.63575,30.20683],[76.63932,30.20878],[76.65426,30.20347],[76.65064,30.19314],[76.65713,30.18712],[76.65404,30.18397],[76.65165,30.17753],[76.64803,30.17542],[76.64604,30.17639],[76.64187,30.171],[76.63543,30.16998],[76.63828,30.1781],[76.6355,30.18454],[76.6456,30.18807],[76.63944,30.19437],[76.6303,30.19853],[76.61854,30.20055],[76.61419,30.20443],[76.6101,30.19847],[76.61099,30.19634],[76.60731,30.19178],[76.6234,30.18017],[76.62373,30.17503],[76.62893,30.16889],[76.63272,30.16936],[76.63931,30.15263],[76.64374,30.15021],[76.6353,30.14664],[76.63272,30.14183],[76.62353,30.14019],[76.61279,30.12672],[76.60307,30.1186],[76.59895,30.11209],[76.58655,30.11072],[76.5727,30.09906],[76.56055,30.09338],[76.55638,30.08251],[76.55,30.07885],[76.54565,30.07932],[76.54596,30.0764],[76.54376,30.07427],[76.53528,30.0731],[76.52685,30.07696],[76.52248,30.07411],[76.50828,30.07031],[76.50871,30.07895],[76.51037,30.08231],[76.50208,30.09192],[76.49798,30.09449],[76.49129,30.09462],[76.48206,30.09753],[76.47276,30.09767],[76.46255,30.10102],[76.45712,30.11014],[76.45633,30.11543],[76.45998,30.12944],[76.45801,30.1302],[76.45803,30.13183],[76.45557,30.13042],[76.45088,30.13216],[76.4439,30.13046],[76.44053,30.13142],[76.43749,30.13623],[76.4377,30.14222],[76.43977,30.14367],[76.43224,30.14695],[76.42859,30.15055],[76.43349,30.15584],[76.43652,30.15595],[76.44058,30.16584],[76.43492,30.17549],[76.43039,30.17797],[76.43382,30.18071],[76.43433,30.18311],[76.42274,30.19224],[76.40641,30.19034],[76.40362,30.18666],[76.40298,30.18211],[76.39636,30.17958],[76.38718,30.17059],[76.39349,30.16694],[76.3914,30.16432],[76.39503,30.15797],[76.40178,30.15379],[76.41009,30.14504],[76.40684,30.14491],[76.4009,30.13889],[76.39765,30.14017],[76.39111,30.1348],[76.39598,30.12612],[76.39486,30.12198],[76.39845,30.12057],[76.40006,30.11667],[76.38888,30.11323],[76.36791,30.1176],[76.3622,30.12012],[76.36076,30.12255],[76.36695,30.12418],[76.36132,30.12973],[76.35929,30.13974],[76.35306,30.14301],[76.35049,30.14683],[76.34749,30.1453],[76.34688,30.14277],[76.33781,30.14327],[76.33395,30.14199],[76.33351,30.13817],[76.34206,30.12634],[76.35217,30.12178],[76.36023,30.12017],[76.35443,30.11687],[76.34615,30.10618],[76.34626,30.10388],[76.34473,30.10477],[76.34415,30.10082],[76.33991,30.0987],[76.33119,30.09966],[76.32176,30.09506],[76.3193,30.09577],[76.31955,30.09707],[76.30757,30.10872],[76.2966,30.1144],[76.29063,30.10774],[76.28534,30.10618],[76.27855,30.11027],[76.27518,30.11459],[76.26778,30.11442],[76.25369,30.12157],[76.25311,30.12308],[76.25548,30.12372],[76.25565,30.12605],[76.24694,30.13054],[76.24401,30.12819],[76.24227,30.12938],[76.24322,30.13239],[76.23252,30.13975],[76.23438,30.14493],[76.22688,30.14454],[76.22434,30.14696],[76.21901,30.1477],[76.21649,30.15023],[76.21629,30.15293],[76.21469,30.1532],[76.2146,30.15617],[76.20767,30.15699],[76.20773,30.14427],[76.21519,30.13959],[76.21516,30.13489],[76.22428,30.12708],[76.21593,30.12374],[76.20804,30.13402],[76.20474,30.13307],[76.20244,30.13605],[76.19695,30.13246],[76.19638,30.12345],[76.21107,30.12056],[76.21709,30.12281],[76.22028,30.11527],[76.21629,30.1128],[76.21677,30.11001],[76.2238,30.11162],[76.22982,30.10669],[76.2344,30.105],[76.23634,30.10657],[76.23832,30.10561],[76.23689,30.10387],[76.24211,30.10051],[76.24893,30.10383],[76.25173,30.1075],[76.25318,30.10608],[76.25165,30.10444],[76.25249,30.10264],[76.2653,30.09878],[76.26015,30.08741],[76.25354,30.0894],[76.24967,30.08691],[76.24827,30.08482],[76.24929,30.08231],[76.24784,30.08106],[76.2467,30.08213],[76.23672,30.0679],[76.22623,30.05866],[76.22832,30.05285],[76.22181,30.04807],[76.22241,30.03669],[76.22003,30.03411],[76.21396,30.03172],[76.21317,30.0221],[76.23199,30.01521],[76.22556,30.00769],[76.21599,30.00706],[76.20926,30.00406],[76.21148,29.99545],[76.20653,29.99345],[76.21074,29.98815],[76.20806,29.98605],[76.20241,29.98932],[76.20184,29.98475],[76.20592,29.98037],[76.20477,29.97691],[76.20573,29.9743],[76.19809,29.96826],[76.20108,29.96724],[76.2053,29.96158],[76.21274,29.94709],[76.21312,29.94509],[76.21018,29.93961],[76.20352,29.94425],[76.19114,29.94882],[76.18376,29.9483],[76.17818,29.94207],[76.17814,29.93337],[76.17252,29.92882],[76.17197,29.92627],[76.17549,29.92383],[76.17918,29.92264],[76.1814,29.92362],[76.18528,29.92049],[76.18781,29.92063],[76.1893,29.90867],[76.18566,29.89244],[76.18633,29.89083],[76.18974,29.8904],[76.19346,29.88562],[76.19984,29.88841],[76.19943,29.88451],[76.20114,29.88382],[76.20977,29.88589],[76.20868,29.88738],[76.21084,29.89131],[76.21295,29.88704],[76.2174,29.88404],[76.2213,29.88336],[76.22232,29.88495],[76.22626,29.88379],[76.22682,29.88634],[76.2294,29.88563],[76.23829,29.87869],[76.24676,29.87595],[76.24387,29.86893],[76.24382,29.85241],[76.23816,29.85199],[76.23246,29.8537],[76.23047,29.85148],[76.22725,29.85177],[76.22223,29.84873],[76.22062,29.8467],[76.22055,29.83784],[76.21201,29.84301],[76.20269,29.84301],[76.19782,29.84476],[76.18487,29.82272],[76.17374,29.81791],[76.16449,29.81761],[76.15326,29.82003],[76.14549,29.81908],[76.14162,29.81546],[76.14173,29.81083],[76.13323,29.80445],[76.12395,29.79091],[76.11967,29.79228],[76.12001,29.80087],[76.11585,29.80231],[76.10509,29.81183],[76.09808,29.81061],[76.08953,29.80113],[76.085,29.80073],[76.08296,29.78796],[76.08472,29.78452],[76.08265,29.78116],[76.07678,29.77488],[76.07255,29.77858],[76.0671,29.77397],[76.06024,29.76464],[76.05682,29.76536],[76.0544,29.75772],[76.04949,29.75186],[76.04963,29.7481],[76.04385,29.74268],[76.03474,29.74453],[76.03088,29.74765],[76.03068,29.75472],[76.02611,29.75615],[76.02406,29.74898],[76.01938,29.74767],[76.01677,29.743],[76.00711,29.74074],[75.99897,29.74102],[75.9949,29.73926],[75.98889,29.73393],[75.98442,29.72711],[75.97535,29.72864],[75.97346,29.7304],[75.96757,29.72941],[75.95485,29.73193],[75.95073,29.73193],[75.94734,29.72938],[75.94113,29.73154],[75.93869,29.73066],[75.92239,29.73766],[75.91944,29.74133],[75.91497,29.74302],[75.91461,29.74796],[75.90631,29.75333],[75.9027,29.75162],[75.90448,29.74892],[75.9008,29.74888],[75.89884,29.74624],[75.88595,29.74538],[75.88238,29.751],[75.87025,29.7493],[75.86925,29.75197],[75.87036,29.75754],[75.86674,29.76653],[75.85971,29.768],[75.85832,29.7708],[75.85141,29.7727],[75.85356,29.77638],[75.85291,29.77804],[75.84583,29.78227],[75.84368,29.78983],[75.84049,29.78865],[75.83701,29.79425],[75.83799,29.7971],[75.83493,29.8088],[75.83776,29.81302],[75.83484,29.81446],[75.8303,29.81178],[75.82585,29.81451],[75.82243,29.80779],[75.81583,29.80416],[75.80988,29.80563],[75.80565,29.80472],[75.78879,29.8111],[75.78707,29.81606],[75.78297,29.8208],[75.77883,29.82234],[75.75617,29.805],[75.75063,29.8076],[75.74689,29.80732],[75.73782,29.81404],[75.7326,29.81252],[75.72068,29.81354],[75.72097,29.80992],[75.71807,29.80865],[75.71798,29.803],[75.71417,29.80185],[75.7146,29.79598],[75.71275,29.79264],[75.71665,29.78872],[75.71013,29.78041],[75.70981,29.77798],[75.71238,29.77406],[75.71031,29.7706],[75.70739,29.76928],[75.70467,29.76362],[75.70575,29.75968],[75.70925,29.75653],[75.70645,29.7532],[75.70315,29.75228],[75.69136,29.75592],[75.68267,29.76694],[75.68171,29.77227],[75.67717,29.77658],[75.66808,29.7774],[75.66408,29.77521],[75.66098,29.77683],[75.65598,29.77376],[75.65011,29.77569],[75.64246,29.77509],[75.64026,29.7725],[75.63778,29.77389],[75.63518,29.77229],[75.63449,29.75528],[75.62745,29.74836],[75.62057,29.74674],[75.61676,29.74408],[75.60688,29.74893],[75.60527,29.75195],[75.60096,29.74946],[75.58899,29.74688],[75.57998,29.73909],[75.57214,29.74335],[75.56975,29.75679],[75.56212,29.77022],[75.54489,29.77079],[75.5407,29.77358],[75.53796,29.77333],[75.5327,29.77062],[75.52866,29.76316],[75.52492,29.76185],[75.52304,29.7584],[75.52196,29.75983],[75.52327,29.76915],[75.5186,29.77582],[75.50277,29.77788],[75.49729,29.78439],[75.49217,29.78577],[75.48555,29.79152],[75.4796,29.79278],[75.46228,29.8073],[75.45954,29.80751],[75.45519,29.8057],[75.45288,29.80184],[75.45818,29.79475],[75.45605,29.79047],[75.45586,29.78428],[75.45398,29.782],[75.45121,29.78144],[75.44757,29.7838],[75.43837,29.78003],[75.42748,29.77085],[75.42172,29.77301],[75.42142,29.77508],[75.41938,29.77021],[75.41396,29.76999],[75.40632,29.76125],[75.40478,29.73899],[75.40133,29.7402],[75.39645,29.73946],[75.39548,29.73356],[75.39136,29.73279],[75.38819,29.72988],[75.38816,29.72798],[75.39347,29.72198],[75.39075,29.71903],[75.39114,29.71698],[75.38925,29.71613],[75.39214,29.71316],[75.38402,29.7122],[75.38023,29.71421],[75.37865,29.71287],[75.37636,29.71408],[75.373,29.71326],[75.36988,29.71086],[75.37082,29.70446],[75.36465,29.70392],[75.35908,29.7055],[75.35792,29.70439],[75.35861,29.69975],[75.35145,29.69606],[75.34573,29.696],[75.34892,29.68628],[75.35369,29.67959],[75.35426,29.67489],[75.35984,29.66813],[75.36017,29.6626],[75.3581,29.66075],[75.34866,29.66658],[75.34106,29.67525],[75.33377,29.67347],[75.33187,29.66318],[75.32226,29.65161],[75.32102,29.64726],[75.32349,29.64247],[75.31659,29.63062],[75.31117,29.62949],[75.3073,29.62477],[75.29574,29.62503],[75.29492,29.61571],[75.2897,29.60781],[75.30346,29.60258],[75.30564,29.59567],[75.31402,29.58925],[75.31658,29.59038],[75.31994,29.58741],[75.3113,29.58014],[75.30948,29.56083],[75.29831,29.55859],[75.28117,29.56146],[75.28038,29.55397],[75.27327,29.54999],[75.24449,29.54669],[75.23537,29.54207],[75.23911,29.55072],[75.23841,29.55886],[75.23382,29.56432],[75.23443,29.57],[75.23196,29.57479],[75.22682,29.57901],[75.22173,29.58028],[75.22744,29.58721],[75.23538,29.60307],[75.23378,29.60237],[75.2284,29.60543],[75.22149,29.61111],[75.21971,29.61542],[75.20677,29.6219],[75.19685,29.61932],[75.18307,29.6284],[75.18222,29.63596],[75.18763,29.65179],[75.18004,29.65286],[75.17466,29.6556],[75.1676,29.66954],[75.17116,29.67127],[75.17715,29.67063],[75.1796,29.67451],[75.18395,29.67334],[75.18731,29.67593],[75.18815,29.68134],[75.19949,29.68024],[75.2068,29.68751],[75.2078,29.70121],[75.20026,29.70106],[75.1978,29.70325],[75.19689,29.7157],[75.20064,29.72648],[75.21034,29.73881],[75.21749,29.73714],[75.22635,29.72887],[75.23818,29.73995],[75.24135,29.75049],[75.24161,29.75464],[75.23662,29.757],[75.22441,29.78074],[75.22631,29.78913],[75.21629,29.78771],[75.21448,29.79151],[75.20854,29.79267],[75.20968,29.81734],[75.21402,29.82398],[75.21031,29.83288],[75.19652,29.83776],[75.19104,29.84137],[75.1839,29.83363],[75.17593,29.82808],[75.17007,29.82818],[75.16564,29.82604],[75.16023,29.81284],[75.16065,29.80637],[75.1591,29.80133],[75.16665,29.78821],[75.16681,29.78469],[75.15984,29.77901],[75.15099,29.77552],[75.14649,29.78182],[75.14025,29.78614],[75.13686,29.80595],[75.13511,29.80729],[75.12668,29.80688],[75.11826,29.8027],[75.1045,29.8048],[75.10059,29.80708],[75.10034,29.8194],[75.10154,29.82155],[75.1189,29.83158],[75.11139,29.84191],[75.10316,29.84175],[75.0901,29.854],[75.08976,29.85863],[75.09341,29.85797],[75.10686,29.868],[75.11474,29.87865],[75.11043,29.89271],[75.11039,29.90191],[75.1093,29.90409],[75.10733,29.90405],[75.09904,29.91108],[75.09878,29.91278],[75.0888,29.91719],[75.08644,29.91655],[75.08049,29.9008],[75.07533,29.89634],[75.07607,29.89085],[75.07449,29.88225],[75.06999,29.87705],[75.06529,29.87879],[75.05613,29.87809],[75.05187,29.88407],[75.04699,29.88507],[75.03293,29.87981],[75.02255,29.86625],[75.00526,29.86895],[74.99813,29.86623],[74.99099,29.86782],[74.97721,29.88834],[74.97886,29.89431],[74.9529,29.90188],[74.94802,29.90723],[74.94419,29.91609],[74.94174,29.91766],[74.9364,29.92645],[74.93582,29.93068],[74.92698,29.94586],[74.92671,29.95049],[74.9229,29.95211],[74.91901,29.94707],[74.91294,29.94344],[74.90705,29.9406],[74.8972,29.93969],[74.89554,29.94073],[74.90073,29.94546],[74.90298,29.95348],[74.88796,29.96672],[74.87579,29.95761],[74.87057,29.95998],[74.86477,29.96016],[74.85542,29.95649],[74.85059,29.96197],[74.84348,29.9646],[74.83848,29.97115],[74.8285,29.97333],[74.82106,29.97103],[74.82636,29.97722],[74.82433,29.98577],[74.81786,29.9911],[74.81146,29.9924],[74.80607,29.99205],[74.77845,29.97167],[74.77535,29.97334],[74.77108,29.97172],[74.76128,29.97331],[74.75856,29.97244],[74.75833,29.97004],[74.75395,29.96964],[74.75316,29.96731],[74.73898,29.9679],[74.73099,29.96146],[74.70683,29.97054],[74.70687,29.97699],[74.70207,29.97162],[74.70018,29.97272],[74.69438,29.96784],[74.68215,29.94349],[74.67032,29.93964],[74.65169,29.9266],[74.64816,29.91971],[74.64675,29.91128],[74.64958,29.90754],[74.65436,29.90574],[74.65081,29.90508],[74.63032,29.90504],[74.59726,29.91277],[74.5897,29.91698],[74.57988,29.92567],[74.57197,29.92747],[74.55903,29.92728],[74.56068,29.9295],[74.54133,29.94078],[74.53157,29.94967],[74.5186,29.92958],[74.51553,29.91592],[74.50979,29.90842],[74.52187,29.90254],[74.54383,29.90168],[74.55116,29.88271],[74.5588,29.87448],[74.56106,29.86978],[74.55138,29.85276],[74.54419,29.84439],[74.53356,29.83882],[74.50797,29.83329],[74.48464,29.81489],[74.475,29.79288],[74.47334,29.77007],[74.47787,29.74681],[74.50314,29.74275],[74.5347,29.74059],[74.54145,29.75],[74.5486,29.75549],[74.57731,29.75414],[74.57482,29.74879],[74.57811,29.74799],[74.5793,29.74903],[74.57879,29.75223],[74.5814,29.75251],[74.58749,29.76691],[74.60009,29.76649],[74.60334,29.75791],[74.61594,29.75227],[74.60954,29.74323],[74.60815,29.7319],[74.60982,29.72176],[74.60475,29.7049],[74.60018,29.69905],[74.60121,29.69039],[74.59315,29.67676],[74.58548,29.65447],[74.58654,29.64734],[74.59138,29.63954],[74.5893,29.63181],[74.58156,29.62716],[74.58276,29.62329],[74.58032,29.61712],[74.57762,29.60001],[74.57698,29.5718],[74.57497,29.56432],[74.57592,29.56011],[74.58991,29.54791],[74.59519,29.54498],[74.6023,29.54392],[74.6077,29.53887],[74.61185,29.5385],[74.61428,29.53533],[74.61483,29.53116],[74.61903,29.53258],[74.62309,29.53105],[74.62189,29.52225],[74.60977,29.51168],[74.6046,29.50318],[74.60101,29.50106],[74.59973,29.49398],[74.59539,29.48916],[74.59588,29.4804],[74.58639,29.46505],[74.58466,29.45849],[74.57323,29.4651],[74.54377,29.46797],[74.53678,29.45956],[74.53466,29.44772],[74.53644,29.44321],[74.53458,29.43526],[74.53662,29.42455],[74.54926,29.42473],[74.56641,29.42048],[74.57366,29.40648],[74.57392,29.39994],[74.57789,29.3885],[74.58525,29.37852],[74.58973,29.37664],[74.60291,29.36491],[74.60734,29.35623],[74.59929,29.32746],[74.63438,29.32961],[74.65451,29.33294],[74.65209,29.35129],[74.65823,29.37197],[74.67979,29.36926],[74.69097,29.36592],[74.70808,29.36676],[74.71952,29.37001],[74.73921,29.35414],[74.7622,29.35438],[74.77002,29.35691],[74.78189,29.35791],[74.78755,29.36143],[74.82038,29.39721],[74.84482,29.39968],[74.84966,29.40153],[74.85058,29.40359],[74.8714,29.39487],[74.87766,29.38354],[74.90031,29.38476],[74.9168,29.3713],[74.93828,29.36203],[74.93989,29.34002],[74.95453,29.33272],[74.95807,29.32818],[74.9609,29.32025],[74.95534,29.3091],[74.94841,29.30147],[74.95581,29.28615],[74.96117,29.28058],[74.971,29.27908],[74.98326,29.28057],[74.99923,29.27031],[75.01988,29.2862],[75.03482,29.2876],[75.05,29.28608],[75.06041,29.27601],[75.06124,29.26397],[75.07321,29.24783],[75.07419,29.24327],[75.07287,29.23783],[75.07554,29.22969],[75.11961,29.22287],[75.12439,29.23987],[75.13784,29.23873],[75.16283,29.24402],[75.17439,29.25125],[75.16864,29.25875],[75.17623,29.26319],[75.18138,29.26366],[75.18367,29.26689],[75.18801,29.26819],[75.19573,29.26331],[75.19851,29.25326],[75.21014,29.23465],[75.21803,29.23187],[75.23839,29.23024],[75.24207,29.23641],[75.24215,29.24409],[75.24469,29.25],[75.2557,29.25181],[75.28377,29.24979],[75.28497,29.26909],[75.28741,29.27332],[75.29742,29.27182],[75.30579,29.2746],[75.31618,29.28178],[75.32205,29.28949],[75.33504,29.28688],[75.34061,29.28113],[75.34032,29.27347],[75.33865,29.27345],[75.34004,29.26634],[75.33991,29.26346],[75.33846,29.26347],[75.33963,29.25977],[75.33843,29.25886],[75.3396,29.25686],[75.33874,29.25197],[75.33565,29.24796],[75.33585,29.24427],[75.33431,29.24415],[75.33389,29.24116],[75.32812,29.23531],[75.32963,29.23265],[75.34269,29.22929],[75.34984,29.22377],[75.35589,29.22301],[75.35998,29.2272],[75.36129,29.22941],[75.36085,29.23944],[75.36235,29.24443],[75.3753,29.25535],[75.37729,29.25471],[75.37802,29.25683],[75.38518,29.25802],[75.38861,29.26124],[75.39266,29.26135],[75.40547,29.26054],[75.40607,29.25701],[75.40719,29.2583],[75.4107,29.25548],[75.41199,29.24275],[75.40868,29.24189],[75.40776,29.236],[75.40878,29.23506],[75.40526,29.23151],[75.40498,29.22818],[75.40208,29.2271],[75.4023,29.22243],[75.39801,29.22349],[75.39682,29.21754],[75.40293,29.21324],[75.40858,29.21331],[75.40737,29.21107],[75.41102,29.20746],[75.41228,29.19682],[75.41132,29.19392],[75.41179,29.19114],[75.41407,29.18939],[75.41294,29.18772],[75.41438,29.18431],[75.4127,29.18159],[75.40945,29.18021],[75.40588,29.17289],[75.40677,29.16975],[75.39526,29.16775],[75.38125,29.16895],[75.38137,29.15278],[75.3797,29.1508],[75.37874,29.14223],[75.37117,29.14157],[75.3715,29.1381],[75.38439,29.12947],[75.40216,29.1279],[75.40578,29.1198],[75.39387,29.11007],[75.39211,29.10199],[75.3938,29.0982],[75.39693,29.09758],[75.39574,29.09321],[75.39285,29.09285],[75.39099,29.08538],[75.39262,29.08477],[75.3927,29.07845],[75.39421,29.07824],[75.39469,29.07596],[75.39126,29.06273],[75.4106,29.06223],[75.43145,29.05631],[75.44182,29.05754],[75.44386,29.05223],[75.44217,29.05096],[75.4432,29.04804],[75.44622,29.04857],[75.44672,29.04554],[75.45193,29.03917],[75.45045,29.03539],[75.44713,29.03516],[75.44787,29.03044],[75.44632,29.03],[75.44495,29.02438],[75.44295,29.02309],[75.44295,29.02092],[75.44569,29.01797],[75.44572,29.00832],[75.4586,29.0142],[75.4629,29.01247],[75.47261,29.01431],[75.48481,29.01213],[75.50515,29.01179],[75.51558,29.00826],[75.522,29.00375],[75.52039,29.00365],[75.52077,29.0],[75.52337,28.99102],[75.52685,28.98532],[75.52742,28.971],[75.52436,28.9695],[75.52116,28.96287],[75.51475,28.96073],[75.51214,28.95692],[75.51273,28.95528],[75.51003,28.95388],[75.51046,28.95046],[75.50835,28.94831],[75.51187,28.94369],[75.51156,28.94206],[75.50874,28.94224],[75.50569,28.93591],[75.50047,28.93593],[75.50084,28.93393],[75.49413,28.93467],[75.49333,28.93627],[75.49073,28.93441],[75.48422,28.93465],[75.48382,28.9334],[75.47722,28.9347],[75.4734,28.92338],[75.48492,28.90865],[75.48398,28.90753],[75.48728,28.90795],[75.48633,28.9066],[75.48757,28.90317],[75.48981,28.90105],[75.49295,28.90114],[75.49425,28.89739],[75.4966,28.89616],[75.49861,28.87044],[75.49697,28.85697],[75.49847,28.84896],[75.5,28.84728],[75.50202,28.85093],[75.50529,28.85127],[75.50506,28.84435],[75.50767,28.84281],[75.50783,28.83922],[75.51074,28.83828],[75.51532,28.83983],[75.51555,28.83423],[75.52025,28.83399],[75.519,28.82627],[75.52011,28.82218],[75.51855,28.81706],[75.51937,28.81274],[75.51625,28.81242],[75.51182,28.80414],[75.50891,28.80272],[75.50868,28.79564],[75.51068,28.79567],[75.51127,28.79364],[75.50845,28.79131],[75.50609,28.79236],[75.50796,28.78873],[75.50466,28.78769],[75.50326,28.78253],[75.50854,28.78043],[75.51067,28.7811],[75.51405,28.77318],[75.51697,28.77468],[75.51796,28.77308],[75.51655,28.77038],[75.52206,28.7679],[75.52301,28.76608],[75.52147,28.76337],[75.52313,28.76364],[75.52212,28.76101],[75.52404,28.76098],[75.52389,28.75716],[75.52863,28.75217],[75.52914,28.74864],[75.5361,28.74517],[75.53046,28.73825],[75.54002,28.72448],[75.53991,28.72134],[75.53745,28.71801],[75.53993,28.69672],[75.53891,28.69478],[75.54502,28.6831],[75.54121,28.66049],[75.54509,28.65943],[75.54425,28.65415],[75.5498,28.64104],[75.55486,28.64384],[75.56073,28.63592],[75.56152,28.61321],[75.58627,28.61319],[75.58769,28.60799],[75.5911,28.60558],[75.62171,28.60207],[75.62406,28.59564],[75.62322,28.58901],[75.62575,28.57569],[75.62572,28.5658],[75.6317,28.5539],[75.63348,28.54444],[75.63948,28.54416],[75.64524,28.53937],[75.65372,28.53654],[75.6658,28.53599],[75.66845,28.53306],[75.671,28.52534],[75.67093,28.51712],[75.6774,28.51526],[75.68419,28.51097],[75.69022,28.50053],[75.69926,28.4954],[75.70198,28.49177],[75.70795,28.49371],[75.71859,28.49023],[75.72556,28.4895],[75.72902,28.4907],[75.73124,28.486],[75.73947,28.48476],[75.73843,28.47746],[75.73568,28.47594],[75.73567,28.46884],[75.76698,28.4613],[75.78055,28.45689],[75.78349,28.45537],[75.78386,28.45334],[75.78829,28.45355],[75.79213,28.44459],[75.78852,28.43356],[75.78083,28.43289],[75.77977,28.42751],[75.77663,28.42472],[75.76971,28.42277],[75.76672,28.41423],[75.77003,28.41264],[75.77204,28.4074],[75.77632,28.40418],[75.77679,28.40037],[75.78857,28.40415],[75.7886,28.4012],[75.79457,28.39961],[75.79948,28.40377],[75.79957,28.40715],[75.80694,28.40913],[75.80602,28.40585],[75.80982,28.40583],[75.81544,28.40762],[75.81535,28.40964],[75.81867,28.40991],[75.81985,28.40686],[75.82286,28.40562],[75.82216,28.40298],[75.83285,28.40535],[75.83741,28.40209],[75.83745,28.39737],[75.83953,28.39437],[75.84428,28.39461],[75.845,28.39168],[75.85407,28.39174],[75.85475,28.38982],[75.86401,28.389],[75.86395,28.38522],[75.87555,28.38723],[75.8904,28.38308],[75.89308,28.38969],[75.89637,28.39007],[75.89518,28.38762],[75.89761,28.38382],[75.8993,28.38396],[75.89844,28.38033],[75.90021,28.37806],[75.90064,28.37178],[75.90483,28.37327],[75.9084,28.37258],[75.90853,28.37092],[75.91824,28.372],[75.91669,28.36739],[75.92238,28.36642],[75.92355,28.36335],[75.92713,28.3629],[75.92738,28.3598],[75.92955,28.35914],[75.93009,28.34901],[75.92854,28.34312],[75.932,28.3429],[75.93297,28.3366],[75.9385,28.33734],[75.94806,28.33417],[75.95502,28.33377],[75.95517,28.33113],[75.95231,28.33101],[75.95225,28.32921],[75.95679,28.32675],[75.95784,28.31383],[75.97246,28.31858],[75.97342,28.31491],[75.97805,28.30933],[75.97793,28.30187],[75.98178,28.29953],[75.98621,28.29312],[76.00299,28.28404],[76.02633,28.27503],[76.02261,28.27035],[76.02264,28.26735],[76.01508,28.25253],[76.01474,28.25016],[76.01609,28.25019],[76.01296,28.24604],[76.01318,28.24405],[76.01653,28.24119],[76.01611,28.23695],[76.02781,28.23265],[76.02777,28.23136],[76.03721,28.22575],[76.03783,28.22271],[76.056,28.22028],[76.05573,28.21261],[76.05241,28.20402],[76.04744,28.20278],[76.04734,28.19814],[76.05094,28.19807],[76.05149,28.19629],[76.07192,28.19434],[76.07212,28.19018],[76.07437,28.19013],[76.07399,28.17359],[76.07634,28.17334],[76.07618,28.16855],[76.09545,28.15086],[76.095,28.14141],[76.09294,28.14003],[76.08788,28.13998],[76.08441,28.13693],[76.0747,28.13714],[76.06537,28.14153],[76.06966,28.15578],[76.07069,28.16515],[76.06025,28.16691],[76.04225,28.16548],[76.03179,28.16786],[76.03001,28.16409],[76.02612,28.16465],[76.01685,28.15009],[76.00749,28.15315],[76.00405,28.14772],[76.00453,28.14426],[76.00302,28.14318],[76.00061,28.13321],[76.00435,28.13199],[75.99899,28.12277],[75.98819,28.12504],[75.97667,28.12475],[75.96739,28.11382],[75.9617,28.11479],[75.94556,28.10716],[75.9386,28.08794],[75.94986,28.08612],[75.96463,28.08047],[75.97228,28.08327],[75.98343,28.08135],[75.98289,28.07665],[75.98869,28.069],[75.98833,28.0663],[75.98265,28.05741],[75.9793,28.05793],[75.97484,28.05099],[75.98441,28.04709],[75.99287,28.04633],[75.99473,28.0522],[75.99882,28.05714],[76.00766,28.05893],[76.00988,28.06763],[76.01682,28.07466],[76.02324,28.08599],[76.03537,28.08052],[76.03874,28.07822],[76.03727,28.07598],[76.0408,28.07406],[76.03882,28.06933],[76.03371,28.06334],[76.02959,28.06144],[76.02536,28.05424],[76.00828,28.05839],[76.00776,28.05571],[76.01713,28.0527],[76.01867,28.04201],[76.01639,28.03051],[75.99774,28.033],[75.99601,28.03828],[75.99462,28.03852],[75.99352,28.0352],[75.98967,28.03582],[75.98906,28.03361],[75.98348,28.03139],[75.97695,28.03137],[75.97273,28.02364],[75.97112,28.01608],[75.99521,28.00879],[75.99554,28.00689],[75.98993,27.99469],[75.98689,27.99759],[75.97761,28.0002],[75.96672,28.00003],[75.965,27.99632],[75.9658,27.98361],[75.96878,27.98094],[75.98594,27.97862],[75.98989,27.98233],[75.99994,27.97758],[75.99817,27.97529],[75.99456,27.97541],[75.98864,27.96821],[75.98196,27.96533],[75.97783,27.95438],[75.98305,27.95098],[75.97272,27.93267],[75.96816,27.93193],[75.96603,27.93498],[75.95791,27.93591],[75.95795,27.93804],[75.95168,27.94773],[75.93907,27.9406],[75.93236,27.93014],[75.93963,27.92279],[75.93939,27.92109],[75.93697,27.92187],[75.93447,27.91863],[75.93707,27.91777],[75.93828,27.91408],[75.96807,27.91437],[75.9748,27.91179],[75.97317,27.90209],[75.98749,27.90416],[75.97925,27.89555],[75.97531,27.89366],[75.98442,27.88259],[75.97763,27.87379],[75.97936,27.86545],[75.97249,27.8606],[75.97137,27.85197],[75.98703,27.84167],[75.99857,27.83821],[76.00464,27.83445],[76.00646,27.83908],[76.00955,27.84152],[76.02729,27.83852],[76.03022,27.84005],[76.03625,27.8374],[76.04023,27.83894],[76.04087,27.84128],[76.04808,27.83498],[76.06064,27.84828],[76.07489,27.84382],[76.07929,27.84575],[76.08567,27.84471],[76.0862,27.8559],[76.08888,27.86054],[76.09809,27.85686],[76.10587,27.8561],[76.11441,27.85088],[76.1156,27.85207],[76.12333,27.85102],[76.12779,27.84372],[76.1354,27.83929],[76.13227,27.82448],[76.15364,27.81975],[76.15308,27.81537],[76.16053,27.81394],[76.16937,27.80795],[76.17215,27.80515],[76.17214,27.79965],[76.17496,27.79807],[76.18265,27.79862],[76.19226,27.80926],[76.1996,27.82156],[76.20779,27.81866],[76.20754,27.81704],[76.20934,27.81634],[76.21733,27.81681],[76.22518,27.83326],[76.20885,27.84001],[76.21216,27.84644],[76.19381,27.85951],[76.19437,27.87738],[76.20028,27.87824],[76.20209,27.88732],[76.20146,27.89254],[76.18609,27.89899],[76.16821,27.90338],[76.16868,27.91528],[76.17395,27.92982],[76.17705,27.92973],[76.18241,27.95193],[76.17993,27.95287],[76.18066,27.95713],[76.18245,27.96201],[76.18401,27.96181],[76.18664,27.96548],[76.16345,27.97342],[76.16597,27.97691],[76.16693,27.98299],[76.15756,27.98721],[76.15778,27.98898],[76.16138,28.0002],[76.16955,28.00742],[76.17689,28.02155],[76.18539,28.02029],[76.19687,28.01548],[76.20334,28.02803],[76.2148,28.02658],[76.2167,28.03548],[76.20372,28.03775],[76.20181,28.02935],[76.19604,28.03039],[76.18954,28.03445],[76.18878,28.03661],[76.17794,28.0456],[76.1804,28.05452],[76.18879,28.05321],[76.1895,28.05645],[76.19918,28.05571],[76.20113,28.05842],[76.20959,28.05587],[76.20861,28.05227],[76.21934,28.04921],[76.22115,28.05022],[76.2281,28.0484],[76.23072,28.05114],[76.23804,28.04972],[76.24293,28.06436],[76.25552,28.06777],[76.26096,28.06753],[76.28385,28.05698],[76.28418,28.0515],[76.29356,28.0492],[76.29117,28.03457],[76.29216,28.02586],[76.29898,28.02271],[76.31321,28.0189],[76.31357,28.01708],[76.31895,28.01553],[76.32076,28.01598],[76.32298,28.02153],[76.32877,28.01878],[76.34236,28.03058],[76.34965,28.04588],[76.3566,28.06749],[76.35514,28.06811],[76.35567,28.07073],[76.34349,28.0702],[76.34394,28.07142],[76.33302,28.07684],[76.33422,28.07992],[76.32888,28.08768],[76.32323,28.09053],[76.31876,28.08881],[76.30144,28.09787],[76.30927,28.10819],[76.31864,28.10768],[76.33659,28.10261],[76.34646,28.11256],[76.35044,28.1142],[76.35986,28.12492],[76.33315,28.13356],[76.33348,28.13624],[76.33063,28.13704],[76.33182,28.13928],[76.3299,28.14275],[76.32097,28.14856],[76.31523,28.15037],[76.3111,28.14555],[76.29758,28.14912],[76.29787,28.15212],[76.30336,28.15483],[76.30456,28.15932],[76.30163,28.15857],[76.30143,28.16005],[76.28071,28.16553],[76.28243,28.17127],[76.28958,28.17027],[76.29227,28.17922],[76.30523,28.17588],[76.30739,28.17906],[76.30877,28.1789],[76.33318,28.16982],[76.33453,28.17236],[76.34525,28.1694],[76.35785,28.16106],[76.35418,28.1548],[76.35824,28.15492],[76.35657,28.14373],[76.36632,28.13681],[76.38173,28.13324],[76.38473,28.13671],[76.39041,28.13415],[76.39362,28.13749],[76.39568,28.13715],[76.40083,28.14502],[76.43262,28.14092],[76.4374,28.14871],[76.45995,28.14747],[76.46301,28.14811],[76.46634,28.15151],[76.47574,28.14858],[76.47557,28.14345],[76.47131,28.1385],[76.47205,28.13508],[76.47675,28.13205],[76.47638,28.13084],[76.48187,28.12837],[76.48341,28.13081],[76.49193,28.12985],[76.48708,28.11941],[76.49628,28.12007],[76.50268,28.11871],[76.50052,28.11457],[76.49905,28.1002],[76.48002,28.10052],[76.47667,28.10553],[76.47725,28.10797],[76.46369,28.10916],[76.45705,28.10529],[76.45204,28.09122],[76.44784,28.08896],[76.46765,28.07879],[76.4718,28.08024],[76.47891,28.07767],[76.50124,28.05969],[76.49686,28.05381],[76.48943,28.05278],[76.47625,28.05441],[76.47606,28.05721],[76.47238,28.05855],[76.46848,28.05715],[76.46254,28.05911],[76.45868,28.05326],[76.45467,28.04233],[76.46155,28.04053],[76.46482,28.04243],[76.48118,28.04059],[76.48227,28.04187],[76.49742,28.04331],[76.50257,28.03143],[76.51007,28.02966],[76.52041,28.03223],[76.53037,28.04024],[76.54382,28.03421],[76.54096,28.03005],[76.53927,28.0232],[76.54281,28.01777],[76.54546,28.00729],[76.54405,28.00742],[76.54072,28.00217],[76.53639,28.0],[76.54275,27.99948],[76.54109,27.98478],[76.53595,27.97952],[76.53809,27.9677],[76.54472,27.96367],[76.54814,27.96384],[76.56169,27.96613],[76.56442,27.9781],[76.58039,27.9789],[76.58374,27.99167],[76.58799,27.9933],[76.58989,27.99786],[76.60186,27.99952],[76.60619,28.00385],[76.64068,28.00232],[76.65774,28.00743],[76.66816,28.01383],[76.66302,28.02985],[76.65439,28.03468],[76.65865,28.04292],[76.65857,28.04692],[76.65559,28.05312],[76.65192,28.05633],[76.65165,28.06162],[76.65558,28.07574],[76.65727,28.0893],[76.66337,28.0912],[76.68736,28.08765],[76.688,28.09023],[76.685,28.09158],[76.69819,28.11198],[76.70302,28.1076],[76.71206,28.12545],[76.71576,28.12774],[76.74356,28.12103],[76.75313,28.13511],[76.76245,28.14264],[76.77148,28.14501],[76.77637,28.14411],[76.78206,28.14707],[76.78381,28.15091],[76.79481,28.14838],[76.80063,28.16234],[76.80029,28.16446],[76.79606,28.16693],[76.79743,28.16844],[76.79502,28.16939],[76.79573,28.18042],[76.79249,28.18419],[76.79752,28.19181],[76.80036,28.19249],[76.80123,28.18774],[76.80622,28.18654],[76.80916,28.18704],[76.81225,28.19091],[76.81303,28.19328],[76.80478,28.1973],[76.8048,28.20454],[76.8084,28.21086],[76.81279,28.209],[76.83121,28.20917],[76.83818,28.21995],[76.84606,28.21953],[76.84849,28.22162],[76.86814,28.21973],[76.8749,28.21777],[76.87274,28.21505],[76.87306,28.21102],[76.871,28.20659],[76.87471,28.20549],[76.87836,28.20712],[76.88887,28.2032],[76.89088,28.20496],[76.90677,28.20031],[76.90618,28.1973],[76.90205,28.19898],[76.89864,28.19335],[76.89226,28.19323],[76.89162,28.19029],[76.89252,28.18359],[76.90245,28.18111],[76.9015,28.17866],[76.90702,28.17295],[76.90654,28.17189],[76.91973,28.1669],[76.93199,28.15305],[76.95095,28.14988],[76.94816,28.14221],[76.95792,28.14222],[76.97055,28.13843],[76.96195,28.11127],[76.96142,28.09958],[76.95795,28.08751],[76.95791,28.07745],[76.95457,28.07313],[76.95384,28.0626],[76.94839,28.05795],[76.9396,28.04298],[76.93635,28.01206],[76.93061,27.99335],[76.93285,27.98902],[76.93351,27.98161],[76.93794,27.98282],[76.93366,27.97129],[76.9333,27.9617],[76.93074,27.9533],[76.93154,27.92235],[76.95162,27.91803],[76.9496,27.90927],[76.95057,27.89564],[76.94163,27.89708],[76.93766,27.89622],[76.93746,27.87809],[76.94129,27.86418],[76.94148,27.8555],[76.943,27.85357],[76.94232,27.84262],[76.9357,27.82881],[76.91502,27.83454],[76.91358,27.8317],[76.90999,27.8149],[76.91404,27.80811],[76.91861,27.80744],[76.919,27.80414],[76.91363,27.80101],[76.91152,27.79609],[76.91334,27.78859],[76.90904,27.78691],[76.90617,27.78778],[76.90761,27.78235],[76.9064,27.77889],[76.90228,27.77534],[76.90215,27.77136],[76.90365,27.76933],[76.90084,27.76466],[76.90055,27.74737],[76.90169,27.74397],[76.89986,27.73671],[76.89698,27.73812],[76.89255,27.73233],[76.89241,27.72567],[76.89436,27.72435],[76.89452,27.71783],[76.89878,27.71647],[76.90478,27.71734],[76.91423,27.71319],[76.91904,27.7098],[76.92103,27.70309],[76.92473,27.69992],[76.92061,27.69571],[76.91642,27.69813],[76.90863,27.69368],[76.8945,27.70138],[76.88988,27.70075],[76.88934,27.69715],[76.90623,27.68629],[76.89859,27.67754],[76.91089,27.66802],[76.90671,27.66169],[76.91206,27.65797],[76.91155,27.65403],[76.91557,27.65227],[76.92692,27.66126],[76.93223,27.65881],[76.93336,27.65603],[76.93822,27.66647],[76.94377,27.67372],[76.95313,27.66804],[76.95486,27.66469],[76.95876,27.66243],[76.96267,27.66199],[76.96613,27.65839],[76.97937,27.6536],[76.98206,27.67612],[76.98861,27.69299],[76.9872,27.69515],[76.99039,27.7095],[77.0001,27.73697],[77.01152,27.73108],[77.01982,27.74577],[77.02509,27.7439],[77.0261,27.74638],[77.03394,27.74522],[77.03647,27.74861],[77.04507,27.74328],[77.04452,27.7419],[77.04685,27.73972],[77.04614,27.7373],[77.05032,27.73504],[77.04874,27.73153],[77.05963,27.72648],[77.06543,27.7314],[77.07281,27.73115],[77.07724,27.73551],[77.08566,27.73809],[77.08248,27.74588],[77.07819,27.7512],[77.0802,27.75725],[77.07635,27.76632],[77.07456,27.76701],[77.07209,27.76446],[77.06962,27.76747],[77.05955,27.76091],[77.05585,27.76342],[77.05758,27.77001],[77.05614,27.7712],[77.03577,27.78153],[77.0344,27.77811],[77.02658,27.77924],[77.03871,27.81012],[77.04057,27.81257],[77.04438,27.81216],[77.04583,27.81496],[77.04272,27.81828],[77.0448,27.82098],[77.0538,27.81694],[77.05556,27.81792],[77.06386,27.81126],[77.07462,27.81356],[77.08167,27.80625],[77.0808,27.80408],[77.10848,27.78548],[77.1131,27.78642],[77.12285,27.79262],[77.13452,27.78604],[77.1318,27.77807],[77.13522,27.77509],[77.14358,27.78559],[77.15651,27.78453],[77.15855,27.78735],[77.16081,27.79258],[77.16155,27.80329],[77.15655,27.80878],[77.15951,27.81634],[77.16723,27.81295],[77.17985,27.81715],[77.18944,27.80902],[77.1847,27.8025],[77.18242,27.80203],[77.17893,27.80438],[77.17357,27.79441],[77.1691,27.7909],[77.17702,27.78547],[77.1778,27.7871],[77.1833,27.78678],[77.19045,27.79434],[77.19268,27.79412],[77.19857,27.79882],[77.19146,27.80683],[77.19265,27.80817],[77.19135,27.80908],[77.19784,27.81586],[77.20207,27.82376],[77.20338,27.82344],[77.20671,27.81377],[77.21333,27.80765],[77.21065,27.8011],[77.22238,27.79588],[77.22658,27.79858],[77.2326,27.7965],[77.23837,27.79182],[77.23491,27.78929],[77.23389,27.78596],[77.24174,27.78354],[77.24812,27.79119],[77.25237,27.79069],[77.2613,27.80019],[77.26876,27.81494],[77.28372,27.80105],[77.29015,27.81044],[77.29857,27.81519],[77.29648,27.82522],[77.30356,27.82553],[77.30648,27.82752],[77.31081,27.82577],[77.3125,27.82799],[77.3207,27.82534],[77.33643,27.83423],[77.33293,27.83497],[77.33199,27.83746],[77.33516,27.842],[77.33516,27.84742],[77.34833,27.85555],[77.36089,27.85077],[77.36525,27.85379],[77.37704,27.85707],[77.37702,27.85886],[77.38998,27.85731],[77.39703,27.85335],[77.41043,27.85176],[77.42186,27.85438],[77.42233,27.85779],[77.41175,27.86639],[77.41282,27.86978],[77.40932,27.87417],[77.41039,27.87981],[77.41607,27.88379],[77.42013,27.89044],[77.42784,27.88984],[77.42829,27.89092],[77.45004,27.87116],[77.46092,27.8762],[77.47327,27.88452],[77.47876,27.89445],[77.4795,27.89786],[77.47805,27.89851],[77.4807,27.90789],[77.47884,27.91088],[77.48049,27.91503],[77.47709,27.91633],[77.47965,27.92166],[77.47568,27.92474],[77.4775,27.92828],[77.4759,27.92771],[77.47528,27.92925],[77.49224,27.93847],[77.50147,27.92526],[77.50749,27.92562],[77.51676,27.93306],[77.52583,27.92726],[77.52608,27.92538],[77.5293,27.92526],[77.53661,27.93398],[77.53695,27.93797],[77.54608,27.95793],[77.54423,27.96221],[77.51872,27.96213],[77.51697,27.97115],[77.51885,27.97421],[77.52119,27.97651],[77.52946,27.97607],[77.53777,27.97902],[77.5412,27.98182],[77.54243,27.98909],[77.52425,28.0],[77.52403,28.00674],[77.52133,28.01414],[77.50839,28.02277],[77.50821,28.02524],[77.51193,28.02775],[77.51276,28.03189],[77.48841,28.0367],[77.48364,28.04045],[77.48534,28.04464],[77.49306,28.04683],[77.4986,28.05225],[77.50124,28.05852],[77.49979,28.06331],[77.47825,28.08039],[77.47435,28.08672],[77.4784,28.09101],[77.47885,28.09545],[77.48114,28.09754],[77.48211,28.10703],[77.48981,28.10556],[77.49068,28.09716],[77.49218,28.0951],[77.49938,28.09461],[77.50054,28.09702],[77.4979,28.10446],[77.49847,28.10892],[77.5018,28.11477],[77.50938,28.11989],[77.51236,28.12484],[77.51236,28.12714],[77.50908,28.13021],[77.49377,28.13285],[77.49136,28.13654],[77.49219,28.13869],[77.50242,28.14322],[77.50424,28.14543],[77.50469,28.14973],[77.50049,28.1548],[77.5021,28.16118],[77.5112,28.16685],[77.51575,28.1634],[77.52228,28.1612],[77.53696,28.16563],[77.5459,28.17194],[77.54964,28.17975],[77.54795,28.18711],[77.54515,28.19088],[77.5376,28.19035],[77.53062,28.18586],[77.51748,28.19314],[77.51337,28.19183],[77.50853,28.18643],[77.50655,28.18168],[77.50119,28.18167],[77.49839,28.18453],[77.49962,28.19502],[77.49696,28.20535],[77.50206,28.20959],[77.50588,28.20952],[77.51748,28.20459],[77.52196,28.19659],[77.52403,28.19568],[77.53026,28.19861],[77.53466,28.20369],[77.53525,28.21026],[77.53289,28.21442],[77.52143,28.22021],[77.52128,28.22444],[77.52583,28.229],[77.54675,28.23799],[77.55042,28.24236],[77.54461,28.24873],[77.53742,28.24827],[77.53235,28.24495],[77.52471,28.24572],[77.522,28.24227],[77.51877,28.24253],[77.51325,28.24721],[77.50863,28.24655],[77.50955,28.24961],[77.50145,28.25244],[77.49922,28.25],[77.49915,28.24738],[77.49269,28.25198],[77.49079,28.27133],[77.49414,28.27483],[77.49467,28.27276],[77.49877,28.27841],[77.50343,28.28007],[77.50029,28.28152],[77.50173,28.28386],[77.4985,28.2856],[77.50294,28.28908],[77.50707,28.30569],[77.48571,28.32163],[77.48486,28.32569],[77.48195,28.32506],[77.47174,28.32811],[77.47318,28.33255],[77.47121,28.33482],[77.47818,28.33934],[77.49015,28.34345],[77.4963,28.34914],[77.5052,28.36264],[77.50005,28.36564],[77.50482,28.36999],[77.50279,28.36992],[77.49122,28.38515],[77.48281,28.38782],[77.47344,28.39697],[77.47567,28.39957],[77.48021,28.39873],[77.4813,28.40489],[77.48377,28.40809],[77.47763,28.41906],[77.46355,28.41515],[77.46115,28.41767],[77.4625,28.42436],[77.45161,28.42474],[77.45225,28.42688],[77.44126,28.42873],[77.44212,28.43083],[77.43552,28.43095],[77.43921,28.43504],[77.43597,28.43771],[77.43826,28.43868],[77.43343,28.45492],[77.41901,28.45223],[77.40006,28.45564],[77.40809,28.46717],[77.40578,28.46577],[77.39194,28.47203],[77.38734,28.468],[77.38047,28.47027],[77.37818,28.47252],[77.37835,28.47454],[77.37474,28.47648],[77.37006,28.4857],[77.37174,28.49844],[77.36777,28.50025],[77.36269,28.49883],[77.3581,28.50185],[77.35562,28.4992],[77.35247,28.4996],[77.34774,28.50419],[77.34761,28.51046],[77.34511,28.51323],[77.33611,28.50519],[77.32683,28.49011],[77.31837,28.48737],[77.3141,28.48361],[77.30653,28.48939],[77.30079,28.48985],[77.3006,28.49417],[77.29027,28.49654],[77.27653,28.49328],[77.27206,28.4908],[77.26945,28.48664],[77.2433,28.47882],[77.23559,28.47112],[77.23292,28.45791],[77.23441,28.45472],[77.24251,28.45615],[77.24656,28.45271],[77.2492,28.44518],[77.24883,28.43292],[77.25264,28.43291],[77.2493,28.42418],[77.23841,28.42083],[77.22852,28.41391],[77.21661,28.40973],[77.21601,28.41146],[77.19053,28.40721],[77.18437,28.41043],[77.17448,28.40467],[77.17145,28.40626],[77.17114,28.40924],[77.16517,28.41423],[77.16593,28.42569],[77.1623,28.42894],[77.15507,28.43209],[77.14831,28.4374],[77.14108,28.4367],[77.13233,28.43914],[77.12363,28.44546],[77.12185,28.45851],[77.11078,28.47131],[77.11297,28.47123],[77.11469,28.48097],[77.12073,28.49594],[77.11697,28.49636],[77.09681,28.5058],[77.09592,28.50652],[77.09853,28.51104],[77.09345,28.51395],[77.0718,28.52019],[77.06682,28.51201],[77.05895,28.51264],[77.04624,28.5167],[77.04851,28.52074],[77.03176,28.53157],[77.02404,28.53309],[77.01544,28.53974],[77.00665,28.54141],[77.00023,28.53209],[77.01455,28.52395],[77.01711,28.52083],[77.01022,28.51435],[76.99656,28.51975],[76.99519,28.51672],[76.99039,28.5135],[76.98276,28.51712],[76.9781,28.52132],[76.97075,28.5152],[76.95167,28.50422],[76.94166,28.50454],[76.93349,28.5097],[76.92734,28.51051],[76.92079,28.50698],[76.9144,28.51167],[76.90793,28.51381],[76.90302,28.50893],[76.89862,28.50874],[76.89223,28.50083],[76.88545,28.50114],[76.88569,28.50245],[76.88041,28.5062],[76.88713,28.52057],[76.87703,28.5244],[76.87458,28.52701],[76.87321,28.53275],[76.86738,28.53555],[76.86472,28.5435],[76.84536,28.55041],[76.84241,28.5563],[76.84069,28.57166],[76.83889,28.57328],[76.83953,28.58279],[76.84611,28.5848],[76.86315,28.5854],[76.86607,28.58796],[76.87176,28.60286],[76.87734,28.60883],[76.8824,28.62279],[76.88833,28.63196],[76.89327,28.63169],[76.90647,28.6238],[76.91429,28.63235],[76.9202,28.6315],[76.93457,28.61835],[76.94299,28.628],[76.94446,28.63329],[76.9365,28.63783],[76.92496,28.65015],[76.93534,28.66786],[76.94885,28.67019],[76.95241,28.66961],[76.9538,28.66772],[76.95803,28.68463],[76.96783,28.69963],[76.9482,28.71299],[76.9594,28.72925],[76.96006,28.73274],[76.95593,28.73823],[76.95828,28.74323],[76.94449,28.75407],[76.94651,28.7588],[76.95557,28.76778],[76.94981,28.77706],[76.95007,28.78326],[76.95385,28.79091],[76.94604,28.79797],[76.94189,28.79866],[76.94628,28.80662],[76.94591,28.81112],[76.95101,28.81818],[76.96176,28.81481],[76.96487,28.8204],[76.96347,28.82226],[76.96432,28.82546],[76.96701,28.82805],[76.97308,28.82685],[76.97668,28.82222],[76.97969,28.82123],[76.98591,28.82939],[76.98724,28.8353],[76.99481,28.83951],[76.99928,28.83788],[77.00744,28.84071],[77.02333,28.83936],[77.04023,28.83206],[77.04261,28.83426],[77.04184,28.83786],[77.04513,28.84093],[77.04569,28.84746],[77.05781,28.86775],[77.06098,28.87104],[77.06924,28.86719],[77.07175,28.86893],[77.07461,28.86752],[77.07924,28.87195],[77.07765,28.87718],[77.08266,28.8835],[77.08683,28.88089],[77.08756,28.87533],[77.09493,28.87123],[77.10983,28.87007],[77.12084,28.85994],[77.12093,28.85831],[77.1249,28.85763],[77.12548,28.85986],[77.13222,28.8636],[77.14032,28.86206],[77.14255,28.85971],[77.14199,28.85624],[77.14531,28.85364],[77.14202,28.84705],[77.14241,28.83886],[77.15775,28.83669],[77.15678,28.83897],[77.16595,28.84907],[77.1721,28.84991],[77.17306,28.85723],[77.1754,28.85832],[77.18142,28.85751],[77.19771,28.85923],[77.20992,28.85772],[77.20819,28.86184],[77.19495,28.86486],[77.1893,28.86788],[77.19196,28.87502],[77.18868,28.88008],[77.19546,28.88621],[77.20822,28.8881],[77.21541,28.88474],[77.22056,28.87879],[77.22352,28.87855],[77.2281,28.88119],[77.2275,28.89332],[77.23247,28.89795],[77.23262,28.90384],[77.23475,28.90906],[77.23123,28.92053],[77.22489,28.92305],[77.22198,28.92816],[77.214,28.93254],[77.2073,28.93488],[77.20141,28.93392],[77.1959,28.93933],[77.19719,28.94654],[77.19298,28.95891],[77.19533,28.96692],[77.20113,28.97279],[77.20274,28.98526],[77.20188,28.98848],[77.19797,28.99026],[77.19909,28.99203],[77.19766,28.99218],[77.19096,29.00592],[77.19075,29.00939],[77.1931,29.01316],[77.18903,29.02355],[77.18912,29.02767],[77.18511,29.03149],[77.17776,29.02964],[77.16697,29.03382],[77.1669,29.03737],[77.16994,29.03974],[77.17214,29.04648],[77.16804,29.05455],[77.16376,29.07943],[77.16226,29.0809],[77.15669,29.07922],[77.14676,29.08055],[77.14268,29.08359],[77.13397,29.096],[77.13896,29.10801],[77.14608,29.11052],[77.14908,29.11765],[77.14745,29.13352],[77.13596,29.14196],[77.13621,29.14952],[77.1429,29.15623],[77.14356,29.16931],[77.14716,29.18051],[77.14376,29.18313],[77.14018,29.19213],[77.14329,29.19434],[77.1422,29.20408],[77.13433,29.21001],[77.13141,29.21749],[77.13349,29.22347],[77.14785,29.2304],[77.15,29.23276],[77.14875,29.23961],[77.14978,29.25],[77.14539,29.25756],[77.13995,29.26139],[77.13895,29.26784],[77.14386,29.27663],[77.14502,29.2833],[77.14948,29.2881],[77.15066,29.29471],[77.15828,29.30288],[77.16055,29.3134],[77.16031,29.31581],[77.15664,29.31868],[77.15653,29.32279],[77.16115,29.33236],[77.15976,29.33678],[77.15174,29.34111],[77.13528,29.3399],[77.12953,29.34258],[77.12445,29.35143],[77.12896,29.35703],[77.12345,29.36724],[77.1233,29.37034],[77.12703,29.37576],[77.14257,29.37747],[77.15741,29.38731],[77.15347,29.39067],[77.15103,29.38994],[77.1509,29.38716],[77.14737,29.38785],[77.1426,29.39073],[77.13666,29.39677],[77.13569,29.39971],[77.13325,29.40084],[77.13425,29.40477],[77.13184,29.41298],[77.13312,29.41877],[77.14436,29.42653],[77.14842,29.43408],[77.14452,29.44531],[77.13393,29.44751],[77.12321,29.45537],[77.12268,29.46889],[77.13072,29.47591],[77.13331,29.48306],[77.12924,29.49027],[77.1215,29.49536],[77.12118,29.49821],[77.11301,29.5066],[77.10356,29.50726],[77.10122,29.51491],[77.09637,29.51949],[77.09754,29.52735],[77.10248,29.53234],[77.10218,29.53882],[77.10358,29.53902],[77.10835,29.54783],[77.12191,29.55201],[77.12626,29.55618],[77.12684,29.55945],[77.12079,29.56372],[77.12098,29.56647],[77.10501,29.5722],[77.09971,29.57657],[77.09923,29.57914],[77.09579,29.58245],[77.09008,29.5847],[77.0862,29.58439],[77.08395,29.58724],[77.08418,29.59092],[77.08813,29.59406],[77.09515,29.59539],[77.10202,29.59413],[77.10953,29.59743],[77.10863,29.60091],[77.11302,29.61063],[77.10862,29.61344],[77.10378,29.61405],[77.10158,29.61983],[77.10169,29.62152],[77.1047,29.62312],[77.1062,29.63233],[77.11478,29.63828],[77.1188,29.63551],[77.13152,29.64184],[77.1324,29.64725],[77.13716,29.64942],[77.14101,29.65497],[77.13806,29.66663],[77.14257,29.66835],[77.14655,29.67223],[77.14339,29.6749],[77.14245,29.68045],[77.14734,29.68322],[77.15111,29.69045],[77.15655,29.69258],[77.15483,29.69591],[77.1556,29.6993],[77.14941,29.7057],[77.14953,29.70949],[77.14574,29.71097],[77.14501,29.71366],[77.13975,29.7147],[77.13779,29.71755],[77.13423,29.71843],[77.13289,29.72239],[77.13361,29.72847],[77.13907,29.73227],[77.13906,29.73821],[77.13685,29.73962],[77.1355,29.74408],[77.12719,29.7473],[77.12246,29.75124],[77.11998,29.7554],[77.11981,29.76008],[77.12221,29.76708],[77.12531,29.7695],[77.13891,29.76962],[77.14662,29.77183],[77.14745,29.77884],[77.15137,29.7882],[77.15878,29.79231],[77.16429,29.79172],[77.1726,29.80164],[77.17367,29.80505],[77.17249,29.80776],[77.1792,29.81267],[77.17825,29.8458],[77.18323,29.85453],[77.18694,29.85783],[77.18946,29.85847],[77.19314,29.85675],[77.19734,29.85874],[77.19911,29.86287],[77.20135,29.86419],[77.20203,29.8689],[77.20013,29.88949],[77.19363,29.89075],[77.18832,29.89407],[77.18631,29.89813],[77.18576,29.90753],[77.18992,29.91322],[77.19936,29.91423],[77.20163,29.917],[77.21119,29.91866],[77.21748,29.92342],[77.22105,29.93288],[77.22595,29.93435],[77.23631,29.9509],[77.23693,29.95474],[77.24401,29.95979],[77.24687,29.96832],[77.24698,29.97659],[77.26153,29.98288],[77.27766,30.00024],[77.27556,30.00634],[77.27926,30.01216],[77.27956,30.02078],[77.28227,30.02941],[77.27637,30.03755],[77.27778,30.04181],[77.28494,30.0424],[77.29693,30.05332],[77.3002,30.05248],[77.30298,30.0553],[77.3189,30.0565],[77.32846,30.05333],[77.3343,30.05374],[77.34522,30.06932],[77.36264,30.07638],[77.36845,30.0836],[77.37745,30.09002],[77.38239,30.09159],[77.38851,30.08688],[77.39148,30.08988],[77.4062,30.08825],[77.42386,30.10321],[77.41694,30.10544],[77.41023,30.10473],[77.40316,30.11175],[77.40559,30.11389],[77.41227,30.11433],[77.41349,30.11294],[77.42189,30.12859],[77.42505,30.13145],[77.41978,30.13524],[77.4227,30.14011],[77.42279,30.15029],[77.42753,30.1557],[77.42569,30.15812],[77.42976,30.16398],[77.43481,30.16399],[77.43504,30.1608],[77.43643,30.16047],[77.44071,30.16498],[77.44956,30.16578],[77.45781,30.16267],[77.47183,30.18189],[77.4754,30.17912],[77.48053,30.18422],[77.48675,30.19535],[77.49483,30.20401],[77.50462,30.2252],[77.52049,30.24466],[77.53024,30.25048],[77.53825,30.27796],[77.54658,30.28147],[77.56852,30.29898],[77.5831,30.30761],[77.58643,30.31305],[77.58609,30.31541],[77.57856,30.32525],[77.57798,30.33078],[77.5862,30.33942],[77.58853,30.34571],[77.5909,30.34782],[77.59249,30.35479],[77.60185,30.36145],[77.60459,30.36739],[77.5897,30.3746],[77.58564,30.37947],[77.58016,30.37734],[77.57122,30.38084],[77.55324,30.39027],[77.54679,30.39601],[77.54796,30.40037],[77.53639,30.41076],[77.52883,30.42241],[77.52543,30.43332],[77.52555,30.44053],[77.5198,30.44539],[77.51538,30.44514],[77.50299,30.42983],[77.49995,30.41888],[77.50161,30.4087],[77.49871,30.40582],[77.49294,30.41169],[77.47954,30.40602],[77.4735,30.401],[77.46567,30.4025],[77.46271,30.40098],[77.45445,30.40081],[77.44532,30.396],[77.43849,30.40404],[77.42289,30.40408],[77.42382,30.41075],[77.43038,30.41169],[77.43376,30.41702],[77.445,30.41867],[77.44636,30.42294],[77.45369,30.43035],[77.45396,30.43373],[77.46156,30.43461],[77.46144,30.44388],[77.4662,30.45001],[77.45901,30.4581],[77.45612,30.45854],[77.45159,30.44827],[77.44963,30.4485],[77.44542,30.44476],[77.44274,30.43974],[77.43598,30.43278],[77.42197,30.42512],[77.41742,30.42538],[77.41587,30.41909],[77.40948,30.41534],[77.40954,30.40979],[77.40523,30.41019],[77.39864,30.41742],[77.40434,30.42214],[77.40399,30.42533],[77.40614,30.4256],[77.40652,30.42791],[77.40831,30.42872],[77.40353,30.43088],[77.40022,30.4288],[77.399,30.43138],[77.39137,30.43167],[77.38967,30.43476],[77.39049,30.4414],[77.38756,30.442],[77.37768,30.44087],[77.36723,30.44222],[77.36398,30.43437],[77.36346,30.44325],[77.35481,30.4557],[77.35358,30.46075],[77.34669,30.45783],[77.34188,30.45994],[77.33267,30.45766],[77.32823,30.45575],[77.32588,30.45168],[77.3211,30.44807],[77.31924,30.44796],[77.31923,30.4503],[77.31667,30.44814],[77.30872,30.44916],[77.30683,30.45025],[77.30783,30.45273],[77.30392,30.45199],[77.29439,30.45451],[77.29182,30.45699],[77.29285,30.45951],[77.29107,30.46061],[77.28988,30.4604],[77.29117,30.45923],[77.28809,30.45765],[77.28333,30.45777],[77.27973,30.46025],[77.27826,30.45846],[77.27426,30.45875],[77.27245,30.46955],[77.26615,30.47434],[77.26536,30.47683],[77.25476,30.47665],[77.25266,30.47847],[77.251,30.47698],[77.24153,30.48306],[77.23751,30.48267],[77.23238,30.4845],[77.23034,30.48334],[77.22809,30.48545],[77.22101,30.4799],[77.21652,30.47067],[77.21351,30.46841],[77.20907,30.48274],[77.21304,30.49639],[77.20939,30.50003],[77.20132,30.5153],[77.19681,30.51729],[77.19786,30.5195],[77.19504,30.52257],[77.18722,30.52372],[77.18119,30.52788],[77.17446,30.52921],[77.17258,30.53021],[77.17288,30.53231],[77.17034,30.53337],[77.15232,30.53431],[77.14536,30.53645],[77.13568,30.54302],[77.12793,30.55672],[77.12173,30.56294],[77.13428,30.56955],[77.13829,30.56894],[77.13765,30.57162],[77.14018,30.57808],[77.14821,30.57675],[77.15317,30.58336],[77.15764,30.58399],[77.16111,30.58661],[77.15941,30.58887],[77.16557,30.5916],[77.16427,30.59437],[77.17377,30.60055],[77.1708,30.60437],[77.1727,30.61114],[77.17058,30.61365],[77.17255,30.61954],[77.1714,30.62755],[77.17334,30.63332],[77.17691,30.63697],[77.16771,30.64237],[77.16476,30.65126],[77.16304,30.65084],[77.16281,30.65468],[77.16822,30.66408],[77.16853,30.66954],[77.16658,30.67485],[77.16089,30.68021],[77.16175,30.68305],[77.16719,30.6839],[77.16121,30.69093],[77.15483,30.6926],[77.14788,30.69947],[77.14219,30.69946],[77.13761,30.70618],[77.12885,30.71075],[77.12796,30.7161],[77.12439,30.72177],[77.12034,30.71878],[77.11373,30.71819],[77.11348,30.72079],[77.11146,30.72143],[77.11536,30.72482],[77.1141,30.72857],[77.10951,30.72918],[77.10126,30.734],[77.09353,30.74233],[77.07802,30.74401],[77.06806,30.74094],[77.06258,30.74568],[77.05547,30.74543],[77.04719,30.75295],[77.04838,30.74923],[77.04479,30.75164],[77.04162,30.7502],[77.04562,30.74133],[77.0335,30.74029],[77.03309,30.73864],[77.027,30.73687],[77.01751,30.74342],[77.01775,30.74828],[77.02109,30.74888],[77.02038,30.75245],[77.01624,30.75033],[77.01893,30.75469],[77.01861,30.76554],[77.01469,30.76786],[77.01042,30.76703],[77.00794,30.76919],[77.00127,30.77044],[77.00587,30.77411],[77.00897,30.77355],[77.01425,30.77566],[77.01859,30.7803],[77.01823,30.78277],[77.0169,30.7801],[77.01548,30.78088],[77.0166,30.78572],[77.01786,30.78603],[77.01241,30.78803],[77.01513,30.79309],[77.01196,30.80014],[77.01252,30.80919],[77.01069,30.8097],[77.00278,30.80564],[77.00016,30.81073],[76.99724,30.81219],[76.98659,30.81399],[76.98452,30.81226],[76.97758,30.81235],[76.97817,30.81691],[76.97391,30.81854],[76.97046,30.82465],[76.96512,30.82556],[76.96209,30.82362],[76.96208,30.82139],[76.96007,30.82731],[76.95189,30.81756],[76.9508,30.81383],[76.94891,30.81407],[76.94861,30.8167],[76.94594,30.81842],[76.94264,30.81743],[76.94895,30.82443],[76.944,30.83766],[76.95125,30.85052],[76.94862,30.85337],[76.94383,30.85294],[76.94303,30.85997],[76.93546,30.86969],[76.93838,30.87106],[76.9364,30.87457],[76.93311,30.87444],[76.92839,30.87142],[76.92658,30.87257],[76.93107,30.87316],[76.93015,30.87624],[76.93615,30.87777],[76.93647,30.88464],[76.93096,30.88774],[76.92839,30.89145],[76.92482,30.88991],[76.92746,30.88596],[76.92566,30.88481],[76.92139,30.88505],[76.92055,30.88725],[76.91795,30.88758],[76.91687,30.90077],[76.90953,30.897],[76.90862,30.89416],[76.89909,30.8927],[76.89495,30.89042],[76.89535,30.88698],[76.88733,30.88553],[76.8853,30.88296],[76.87595,30.8809],[76.87837,30.87574],[76.86958,30.87312],[76.86719,30.87604],[76.863,30.87762],[76.8604,30.88367],[76.85606,30.88424],[76.85109,30.88995],[76.84459,30.88926]],[[76.91979,30.88384],[76.92203,30.88261],[76.92424,30.87645],[76.92235,30.88047],[76.91741,30.88346],[76.91769,30.88646],[76.91979,30.88384]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"7","area_level":"State","area_name":"Delhi","geometry_source":"SOI_States"},"geometry":{"type":"Polygon","coordinates":[[[77.09917,28.87068],[77.09385,28.87153],[77.08756,28.87533],[77.08683,28.88089],[77.08266,28.8835],[77.07765,28.87718],[77.07924,28.87195],[77.07461,28.86752],[77.07175,28.86893],[77.06924,28.86719],[77.06098,28.87104],[77.05781,28.86775],[77.04569,28.84746],[77.04513,28.84093],[77.04184,28.83786],[77.04261,28.83426],[77.04023,28.83206],[77.02333,28.83936],[77.00744,28.84071],[76.99928,28.83788],[76.99481,28.83951],[76.98724,28.8353],[76.98591,28.82939],[76.97969,28.82123],[76.97668,28.82222],[76.97308,28.82685],[76.96701,28.82805],[76.96432,28.82546],[76.96347,28.82226],[76.96487,28.8204],[76.96176,28.81481],[76.95101,28.81818],[76.94835,28.81537],[76.94576,28.81069],[76.94614,28.80623],[76.94189,28.79866],[76.94604,28.79797],[76.95385,28.79091],[76.95007,28.78326],[76.94981,28.77706],[76.95557,28.76778],[76.94651,28.7588],[76.94449,28.75407],[76.95828,28.74323],[76.95593,28.73823],[76.96006,28.73274],[76.9594,28.72925],[76.9482,28.71299],[76.96783,28.69963],[76.95803,28.68463],[76.9538,28.66772],[76.95241,28.66961],[76.94885,28.67019],[76.93534,28.66786],[76.92496,28.65015],[76.9365,28.63783],[76.94446,28.63329],[76.94299,28.628],[76.93457,28.61835],[76.91978,28.63163],[76.91429,28.63235],[76.90647,28.6238],[76.89327,28.63169],[76.88785,28.63166],[76.8824,28.62279],[76.87734,28.60883],[76.87176,28.60286],[76.86788,28.59063],[76.86431,28.586],[76.84611,28.5848],[76.83953,28.58279],[76.83889,28.57328],[76.84083,28.57109],[76.84241,28.5563],[76.84646,28.54975],[76.86472,28.5435],[76.86738,28.53555],[76.87321,28.53275],[76.87458,28.52701],[76.87703,28.5244],[76.88713,28.52057],[76.88041,28.5062],[76.88569,28.50245],[76.88545,28.50114],[76.89223,28.50083],[76.89862,28.50874],[76.90302,28.50893],[76.90793,28.51381],[76.9144,28.51167],[76.92079,28.50698],[76.92734,28.51051],[76.93349,28.5097],[76.94166,28.50454],[76.95167,28.50422],[76.97075,28.5152],[76.9781,28.52132],[76.98276,28.51712],[76.99039,28.5135],[76.99519,28.51672],[76.99656,28.51975],[77.01022,28.51435],[77.01711,28.52083],[77.01455,28.52395],[77.00023,28.53209],[77.00665,28.54141],[77.01544,28.53974],[77.02404,28.53309],[77.03176,28.53157],[77.04851,28.52074],[77.04624,28.5167],[77.05895,28.51264],[77.06682,28.51201],[77.0718,28.52019],[77.09313,28.5141],[77.09853,28.51104],[77.09592,28.50652],[77.09681,28.5058],[77.11697,28.49636],[77.12073,28.49594],[77.11469,28.48097],[77.11297,28.47123],[77.11078,28.47131],[77.12185,28.45851],[77.12363,28.44546],[77.12859,28.44093],[77.14108,28.4367],[77.14831,28.4374],[77.15507,28.43209],[77.1623,28.42894],[77.16593,28.42569],[77.16517,28.41423],[77.17114,28.40924],[77.17145,28.40626],[77.17448,28.40467],[77.18437,28.41043],[77.19053,28.40721],[77.21601,28.41146],[77.21661,28.40973],[77.22852,28.41391],[77.23841,28.42083],[77.24918,28.42406],[77.25016,28.42608],[77.25264,28.43291],[77.24883,28.43292],[77.24909,28.44609],[77.24619,28.45345],[77.24251,28.45615],[77.23441,28.45472],[77.23292,28.45791],[77.23559,28.47112],[77.2433,28.47882],[77.26945,28.48664],[77.27206,28.4908],[77.27653,28.49328],[77.29027,28.49654],[77.3006,28.49417],[77.30079,28.48985],[77.30653,28.48939],[77.3141,28.48361],[77.31837,28.48737],[77.32683,28.49011],[77.33611,28.50519],[77.34544,28.51325],[77.34741,28.51839],[77.34704,28.52083],[77.33399,28.52541],[77.33017,28.53228],[77.32472,28.53492],[77.3209,28.5409],[77.30379,28.55243],[77.29997,28.55976],[77.30123,28.5627],[77.29709,28.56597],[77.30005,28.5758],[77.29838,28.58015],[77.31017,28.59046],[77.3134,28.59659],[77.32517,28.59805],[77.32836,28.60016],[77.33677,28.60181],[77.34168,28.60606],[77.34242,28.60888],[77.34147,28.61698],[77.34256,28.62197],[77.33063,28.63139],[77.3237,28.63432],[77.31627,28.64121],[77.31988,28.65109],[77.32076,28.66349],[77.32372,28.66896],[77.3236,28.67671],[77.3301,28.67822],[77.33292,28.68196],[77.3303,28.69039],[77.32327,28.69858],[77.32574,28.70285],[77.32445,28.7065],[77.32543,28.70888],[77.33108,28.7131],[77.32206,28.7121],[77.31773,28.71398],[77.30623,28.71326],[77.29904,28.70985],[77.29678,28.70444],[77.29152,28.70615],[77.28736,28.71027],[77.28624,28.71453],[77.28909,28.71682],[77.28883,28.71957],[77.29077,28.72238],[77.28628,28.72458],[77.27644,28.73545],[77.27291,28.73627],[77.26082,28.73416],[77.25519,28.73974],[77.25456,28.74356],[77.2562,28.74388],[77.25918,28.75],[77.25637,28.7562],[77.24878,28.75528],[77.23556,28.76092],[77.23588,28.77073],[77.23179,28.77079],[77.23145,28.77441],[77.22187,28.77739],[77.23415,28.78372],[77.22854,28.78653],[77.2143,28.78524],[77.20263,28.79246],[77.19913,28.79923],[77.2013,28.81294],[77.21896,28.80824],[77.22026,28.81914],[77.22439,28.82532],[77.223,28.83338],[77.21665,28.84151],[77.21732,28.85133],[77.21424,28.85582],[77.19771,28.85923],[77.18142,28.85751],[77.1754,28.85832],[77.17306,28.85723],[77.1721,28.84991],[77.16595,28.84907],[77.15678,28.83897],[77.15775,28.83669],[77.14597,28.83792],[77.14241,28.83886],[77.14202,28.84705],[77.14531,28.85364],[77.14199,28.85624],[77.14255,28.85971],[77.14032,28.86206],[77.13222,28.8636],[77.12337,28.85762],[77.12086,28.85836],[77.12084,28.85994],[77.10983,28.87007],[77.09917,28.87068]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"8","area_level":"State","area_name":"Rajasthan","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[75.21605,24.88896],[75.21435,24.89207],[75.21327,24.89332],[75.21095,24.89409],[75.20847,24.8943],[75.20805,24.89349],[75.20877,24.89168],[75.2076,24.88788],[75.20541,24.87701],[75.20504,24.87584],[75.20258,24.87293],[75.20073,24.86784],[75.20173,24.86653],[75.2053,24.86475],[75.20645,24.86295],[75.20814,24.8614],[75.20901,24.85901],[75.20874,24.85403],[75.21002,24.85444],[75.21601,24.85075],[75.21794,24.84655],[75.2203,24.84577],[75.22264,24.84409],[75.22607,24.84505],[75.23266,24.84812],[75.23634,24.8518],[75.23783,24.85455],[75.24304,24.86065],[75.24672,24.86197],[75.24913,24.86707],[75.24913,24.87036],[75.25067,24.88051],[75.24656,24.88347],[75.2456,24.88506],[75.24296,24.88722],[75.23894,24.8866],[75.23783,24.88581],[75.23601,24.88321],[75.23312,24.88087],[75.23008,24.87729],[75.22896,24.87654],[75.22615,24.87566],[75.22344,24.87408],[75.22163,24.87378],[75.22018,24.87459],[75.2194,24.87561],[75.21967,24.87928],[75.22126,24.88272],[75.22121,24.88542],[75.22027,24.88788],[75.21772,24.88894],[75.21605,24.88896]]],[[[74.49624,29.94455],[74.13658,29.9654],[73.89512,29.97408],[73.89539,29.98221],[73.88622,29.99603],[73.88653,30.01249],[73.89362,30.02189],[73.90405,30.05012],[73.92989,30.06875],[73.94952,30.09614],[73.95217,30.10434],[73.96763,30.11929],[73.97565,30.12099],[73.97082,30.12541],[73.96814,30.14484],[73.96833,30.16867],[73.97215,30.17524],[73.97383,30.18194],[73.97433,30.18911],[73.97256,30.19815],[73.9097,30.15042],[73.82782,30.09233],[73.81993,30.08529],[73.80656,30.06803],[73.597,30.01898],[73.39693,29.946],[73.33702,29.74518],[73.28389,29.58105],[73.2821,29.57203],[73.08443,29.23627],[73.00436,29.15295],[72.94584,29.02795],[72.73309,28.94809],[72.4794,28.81208],[72.40377,28.783],[72.3907,28.77036],[72.3546,28.73353],[72.29924,28.66975],[72.28072,28.60891],[72.23418,28.47873],[72.20613,28.39427],[72.13224,28.3131],[72.00429,28.21866],[71.92736,28.12174],[71.89834,27.96121],[71.89176,27.95968],[71.88997,27.95481],[71.89176,27.95968],[71.8829,27.95763],[71.66643,27.87776],[71.38306,27.87263],[71.20554,27.83542],[71.15039,27.81371],[71.06199,27.77409],[70.98269,27.74223],[70.9632,27.72938],[70.9512,27.72885],[70.90612,27.70959],[70.87184,27.7056],[70.75932,27.72127],[70.75067,27.73361],[70.73977,27.74192],[70.73241,27.76033],[70.69818,27.81118],[70.68437,27.82819],[70.67849,27.87243],[70.6774,27.92185],[70.59854,27.99315],[70.58946,28.01044],[70.55432,28.02632],[70.50582,28.03704],[70.48874,28.03458],[70.43947,28.02024],[70.37219,28.01183],[70.29618,27.93602],[70.22701,27.90137],[70.20649,27.87921],[70.19765,27.86722],[70.14537,27.8205],[70.1324,27.80596],[70.12361,27.78876],[70.07224,27.66314],[70.0259,27.56292],[69.96629,27.52351],[69.93389,27.49783],[69.89093,27.4335],[69.86248,27.40181],[69.78328,27.34265],[69.76014,27.32103],[69.71352,27.29244],[69.70271,27.28432],[69.64267,27.22336],[69.62794,27.21106],[69.60053,27.19415],[69.58684,27.18332],[69.51331,27.00998],[69.51371,27.00213],[69.49787,26.86835],[69.48848,26.83024],[69.48443,26.80484],[69.48617,26.79802],[69.51031,26.7435],[69.72249,26.65331],[69.7919,26.59831],[69.82312,26.58903],[69.88677,26.57887],[69.93466,26.58153],[70.05623,26.60057],[70.1172,26.58688],[70.13845,26.57162],[70.15502,26.56378],[70.17418,26.55144],[70.17948,26.50574],[70.18351,26.49377],[70.18462,26.48164],[70.1769,26.42401],[70.18536,26.37433],[70.17907,26.34271],[70.16351,26.29493],[70.17505,26.25153],[70.16827,26.21809],[70.14125,26.15579],[70.14342,26.15275],[70.14119,26.15586],[70.13877,26.1533],[70.08339,26.08329],[70.09976,25.93826],[70.17445,25.82837],[70.19711,25.81548],[70.22241,25.79311],[70.24724,25.76161],[70.25169,25.75524],[70.26273,25.72021],[70.26865,25.7136],[70.35856,25.68011],[70.387,25.67383],[70.4486,25.68196],[70.50222,25.68477],[70.53015,25.68348],[70.59395,25.71062],[70.60885,25.71497],[70.64726,25.71261],[70.66007,25.70215],[70.67393,25.67584],[70.67355,25.64466],[70.67021,25.63263],[70.67135,25.61099],[70.66941,25.59354],[70.66714,25.53134],[70.67845,25.5252],[70.67138,25.46093],[70.6728,25.45714],[70.67201,25.42025],[70.66481,25.39688],[70.68718,25.37517],[70.7368,25.33256],[70.75158,25.27782],[70.84219,25.19061],[70.88867,25.14817],[70.91122,25.03084],[70.91978,24.99569],[70.93763,24.93856],[70.94396,24.92546],[70.957,24.91042],[70.99212,24.86344],[71.01801,24.81924],[71.02648,24.80885],[71.03384,24.78804],[71.0653,24.71746],[71.10718,24.67971],[71.1134,24.67526],[71.28782,24.61623],[71.2987,24.62407],[71.298,24.62612],[71.30455,24.62866],[71.30437,24.63528],[71.3135,24.64765],[71.34817,24.66094],[71.35864,24.63075],[71.36713,24.6293],[71.36934,24.62642],[71.37327,24.6277],[71.3778,24.62597],[71.38129,24.62887],[71.38299,24.63366],[71.39116,24.63129],[71.39623,24.63503],[71.39838,24.64078],[71.42258,24.64783],[71.42901,24.65692],[71.44772,24.66839],[71.46199,24.66652],[71.47917,24.67965],[71.49136,24.67926],[71.5,24.68043],[71.50264,24.68214],[71.51375,24.67892],[71.52134,24.68317],[71.5289,24.6847],[71.54183,24.67576],[71.56021,24.67852],[71.573,24.68342],[71.5777,24.6814],[71.58453,24.67005],[71.58975,24.66716],[71.6076,24.67655],[71.6111,24.67299],[71.61682,24.67087],[71.61926,24.6674],[71.62415,24.66972],[71.62686,24.66712],[71.62474,24.66386],[71.62737,24.66427],[71.62888,24.65992],[71.63875,24.65954],[71.63994,24.65128],[71.64392,24.64393],[71.64724,24.64458],[71.65537,24.63919],[71.66271,24.64442],[71.66448,24.64344],[71.67745,24.64631],[71.69043,24.6542],[71.6971,24.65445],[71.70636,24.6613],[71.73556,24.66005],[71.74774,24.66507],[71.76243,24.66863],[71.77269,24.67587],[71.78027,24.67491],[71.79153,24.67734],[71.80296,24.67165],[71.81039,24.65606],[71.80253,24.63113],[71.8059,24.62675],[71.81604,24.62032],[71.82127,24.62017],[71.83084,24.62339],[71.83783,24.6213],[71.85217,24.60936],[71.85562,24.62207],[71.86539,24.63071],[71.85749,24.6522],[71.85777,24.66617],[71.86135,24.6723],[71.87175,24.68177],[71.87655,24.68164],[71.88503,24.67755],[71.88823,24.67214],[71.89952,24.67674],[71.9075,24.67756],[71.91861,24.67211],[71.92017,24.67092],[71.92032,24.66416],[71.91701,24.66029],[71.91164,24.65857],[71.91544,24.64951],[71.9255,24.63604],[71.93601,24.6354],[71.93864,24.6365],[71.93987,24.6338],[71.94618,24.64109],[71.95528,24.64524],[71.96425,24.64583],[71.97744,24.65692],[71.9883,24.65753],[71.98275,24.673],[71.98385,24.68595],[71.99383,24.69506],[71.99516,24.69317],[72.0011,24.69488],[72.00143,24.68841],[72.00593,24.69043],[72.0125,24.69058],[72.01783,24.69478],[72.02846,24.69733],[72.03494,24.70245],[72.04258,24.70437],[72.04853,24.71056],[72.06133,24.71211],[72.0852,24.70641],[72.09116,24.69097],[72.09275,24.68195],[72.08614,24.67759],[72.08721,24.67002],[72.09002,24.66414],[72.08982,24.6587],[72.09806,24.65612],[72.10248,24.65046],[72.10762,24.649],[72.10877,24.64665],[72.11496,24.64843],[72.11699,24.64336],[72.12457,24.6386],[72.12819,24.6417],[72.15026,24.64367],[72.16033,24.63526],[72.16481,24.62128],[72.17034,24.62318],[72.18389,24.61973],[72.19203,24.62005],[72.19657,24.61472],[72.19779,24.6167],[72.19475,24.62302],[72.20221,24.62311],[72.21033,24.62685],[72.21669,24.6269],[72.22687,24.63916],[72.23037,24.64061],[72.234,24.64043],[72.23698,24.63539],[72.24229,24.63458],[72.24857,24.6269],[72.25469,24.62488],[72.26312,24.63093],[72.26789,24.6368],[72.27084,24.63757],[72.27223,24.63704],[72.27068,24.63052],[72.27366,24.62837],[72.28298,24.62575],[72.2892,24.61953],[72.29715,24.62479],[72.30499,24.61755],[72.31517,24.61995],[72.32022,24.61778],[72.33545,24.6333],[72.33795,24.63007],[72.34733,24.62846],[72.34764,24.62605],[72.34319,24.62119],[72.34531,24.61563],[72.34393,24.60963],[72.33867,24.6056],[72.33851,24.60015],[72.33559,24.59858],[72.33062,24.59955],[72.31357,24.59402],[72.30778,24.59589],[72.30728,24.59788],[72.30462,24.59898],[72.30538,24.60279],[72.30328,24.60343],[72.30325,24.60573],[72.29739,24.60897],[72.29519,24.60941],[72.28975,24.60387],[72.28535,24.60714],[72.27634,24.60753],[72.26435,24.60448],[72.2643,24.60006],[72.25845,24.5983],[72.25688,24.59417],[72.24847,24.58934],[72.2464,24.58561],[72.25148,24.58025],[72.2531,24.5751],[72.26321,24.56501],[72.26473,24.56028],[72.27131,24.56136],[72.27521,24.56523],[72.2855,24.56536],[72.29013,24.55074],[72.2893,24.54802],[72.29543,24.54663],[72.29934,24.54729],[72.30186,24.55021],[72.3236,24.55132],[72.32688,24.55397],[72.32899,24.55241],[72.3304,24.55454],[72.32687,24.55802],[72.33093,24.5693],[72.34095,24.56322],[72.34874,24.56245],[72.35373,24.56376],[72.35429,24.55656],[72.35796,24.55564],[72.35836,24.5509],[72.3605,24.55092],[72.36123,24.5478],[72.36752,24.54772],[72.36986,24.5437],[72.36751,24.53977],[72.36816,24.53734],[72.3709,24.53101],[72.37646,24.52469],[72.37969,24.51239],[72.38234,24.51104],[72.38573,24.51187],[72.38858,24.50768],[72.39172,24.51085],[72.40004,24.51447],[72.41297,24.51725],[72.41633,24.52117],[72.42015,24.5201],[72.42344,24.51669],[72.42533,24.51758],[72.43383,24.51588],[72.43631,24.51715],[72.44108,24.51533],[72.44143,24.51136],[72.44368,24.50898],[72.44293,24.50398],[72.43022,24.48017],[72.43378,24.46011],[72.44389,24.44996],[72.44804,24.44779],[72.45146,24.44211],[72.45209,24.43397],[72.45841,24.42487],[72.45724,24.4148],[72.47499,24.4144],[72.50042,24.41705],[72.49319,24.45908],[72.50444,24.45837],[72.5048,24.4716],[72.51449,24.48396],[72.52019,24.5],[72.52631,24.50323],[72.5335,24.50381],[72.53525,24.50567],[72.53598,24.51761],[72.53824,24.51968],[72.57594,24.47885],[72.61357,24.47231],[72.65633,24.46222],[72.67094,24.46488],[72.68088,24.46514],[72.68336,24.46388],[72.68823,24.45781],[72.6875,24.4526],[72.67977,24.44293],[72.68915,24.41173],[72.69191,24.40612],[72.7199,24.37478],[72.72433,24.36762],[72.73086,24.3643],[72.74939,24.36504],[72.77141,24.36823],[72.80582,24.36294],[72.8085,24.36676],[72.81478,24.37023],[72.83649,24.36916],[72.84976,24.37204],[72.85408,24.37131],[72.85568,24.36864],[72.85767,24.36818],[72.85858,24.36974],[72.8698,24.36378],[72.86997,24.36586],[72.89115,24.35697],[72.91073,24.33721],[72.91363,24.338],[72.91979,24.34442],[72.93677,24.34776],[72.95094,24.35636],[72.95403,24.35636],[72.96678,24.36535],[72.9685,24.3689],[72.97755,24.37464],[72.97436,24.38275],[72.95967,24.39127],[72.95441,24.39132],[72.9493,24.39818],[72.9524,24.40253],[72.96193,24.40593],[72.96719,24.41158],[72.96836,24.41494],[72.96558,24.41851],[72.96733,24.42168],[72.9667,24.42385],[72.96993,24.42863],[72.97367,24.43169],[72.97864,24.43186],[72.98121,24.43438],[72.98048,24.43774],[72.97395,24.44116],[72.97316,24.44368],[72.97487,24.44948],[72.96796,24.45091],[72.98619,24.4694],[72.99101,24.4776],[73.00098,24.48355],[73.00425,24.48147],[73.00666,24.47544],[73.00145,24.46928],[73.00382,24.46638],[73.01102,24.4666],[73.0201,24.46445],[73.02066,24.46585],[73.02894,24.46527],[73.03235,24.46688],[73.03523,24.46385],[73.03721,24.46444],[73.03707,24.46677],[73.04932,24.46887],[73.04857,24.47426],[73.0573,24.47769],[73.06108,24.48075],[73.06086,24.48361],[73.06803,24.48326],[73.07013,24.48687],[73.07306,24.48678],[73.07178,24.49091],[73.07434,24.49303],[73.07786,24.49477],[73.08044,24.49424],[73.08178,24.49717],[73.08788,24.49765],[73.09629,24.48974],[73.10279,24.48883],[73.10893,24.48579],[73.11046,24.47488],[73.1092,24.47215],[73.11179,24.46836],[73.11215,24.45992],[73.11021,24.45772],[73.10006,24.45427],[73.09845,24.44622],[73.10283,24.43301],[73.10099,24.42741],[73.09019,24.41409],[73.08672,24.41253],[73.08112,24.40128],[73.0765,24.3966],[73.0875,24.38663],[73.09006,24.38625],[73.10002,24.39039],[73.10269,24.38743],[73.10227,24.38172],[73.10534,24.38259],[73.1076,24.37753],[73.11186,24.37341],[73.12092,24.37009],[73.1243,24.36729],[73.131,24.3656],[73.13347,24.36665],[73.14589,24.35673],[73.15257,24.35384],[73.15534,24.35614],[73.15856,24.3541],[73.16482,24.356],[73.17137,24.35542],[73.18147,24.36625],[73.19919,24.37651],[73.20668,24.37466],[73.21721,24.36752],[73.21926,24.3639],[73.20903,24.35216],[73.20626,24.35126],[73.19857,24.33193],[73.1885,24.33363],[73.18659,24.33546],[73.18621,24.33974],[73.18166,24.34332],[73.17635,24.33788],[73.17656,24.33428],[73.17456,24.33007],[73.17623,24.32473],[73.17372,24.31906],[73.17359,24.30859],[73.16922,24.3003],[73.16652,24.29925],[73.14087,24.31109],[73.13544,24.30843],[73.13099,24.28867],[73.12433,24.27166],[73.11828,24.26674],[73.11021,24.25495],[73.10796,24.25401],[73.1036,24.25549],[73.09536,24.24935],[73.09338,24.23798],[73.08787,24.23492],[73.08804,24.23263],[73.09014,24.23383],[73.09784,24.23094],[73.09871,24.22616],[73.07845,24.21937],[73.07927,24.2051],[73.07703,24.20518],[73.0768,24.20227],[73.06744,24.19469],[73.07665,24.17912],[73.09916,24.15947],[73.10386,24.14988],[73.10343,24.14375],[73.10637,24.14201],[73.11042,24.14231],[73.12216,24.13065],[73.12522,24.12486],[73.13001,24.12228],[73.13812,24.12221],[73.15353,24.11278],[73.15719,24.10953],[73.15499,24.10869],[73.15892,24.09833],[73.17514,24.09422],[73.18318,24.08966],[73.19657,24.08684],[73.19832,24.08427],[73.21323,24.07804],[73.20531,24.06139],[73.20238,24.05099],[73.19314,24.041],[73.19955,24.03623],[73.20891,24.03389],[73.21086,24.03153],[73.21074,24.02885],[73.22937,24.02211],[73.22975,24.01567],[73.23353,24.01255],[73.23663,24.01234],[73.23741,24.00744],[73.23988,24.00343],[73.24279,24.00228],[73.24933,24.00319],[73.25237,24.00948],[73.25844,24.01197],[73.261,24.01771],[73.26533,24.02032],[73.27047,24.02103],[73.27548,24.0191],[73.27938,24.02031],[73.28311,24.01887],[73.28614,24.02177],[73.28673,24.02467],[73.28985,24.02666],[73.29063,24.03326],[73.29736,24.04353],[73.30045,24.04631],[73.30732,24.04566],[73.30835,24.04793],[73.31739,24.05321],[73.31632,24.0576],[73.32406,24.06964],[73.32397,24.07413],[73.32595,24.07696],[73.32212,24.09682],[73.32701,24.10922],[73.36199,24.10466],[73.36284,24.10063],[73.36088,24.09631],[73.36071,24.08749],[73.36205,24.08628],[73.36087,24.08128],[73.36532,24.07906],[73.36737,24.07583],[73.3703,24.07637],[73.38625,24.06473],[73.4047,24.04103],[73.40089,24.03221],[73.40666,24.01852],[73.40799,24.00809],[73.40375,23.9933],[73.39788,23.98951],[73.40458,23.9908],[73.41496,23.98578],[73.41604,23.97016],[73.41323,23.95883],[73.41421,23.955],[73.41303,23.94596],[73.41491,23.94458],[73.41324,23.93916],[73.4163,23.93787],[73.41692,23.93465],[73.42083,23.93082],[73.42006,23.92488],[73.41455,23.92159],[73.40899,23.92158],[73.40652,23.91651],[73.40039,23.91683],[73.39516,23.91902],[73.38746,23.91591],[73.38382,23.90886],[73.37863,23.90453],[73.37771,23.89615],[73.37101,23.89114],[73.36802,23.87833],[73.36605,23.87833],[73.3652,23.87548],[73.36112,23.8727],[73.35813,23.86194],[73.35572,23.85923],[73.35607,23.85457],[73.35384,23.85285],[73.35783,23.84661],[73.36771,23.83946],[73.36686,23.83664],[73.36855,23.83188],[73.36508,23.82376],[73.36638,23.82218],[73.36811,23.8226],[73.36791,23.81423],[73.35872,23.79568],[73.35184,23.7914],[73.35606,23.78502],[73.36333,23.78223],[73.36377,23.77815],[73.36656,23.77704],[73.36724,23.77437],[73.37152,23.77049],[73.37077,23.76526],[73.38282,23.76824],[73.38624,23.77666],[73.39446,23.78293],[73.39919,23.78312],[73.40025,23.78506],[73.40858,23.77917],[73.41078,23.78016],[73.41802,23.77681],[73.41641,23.77032],[73.41928,23.76951],[73.42433,23.76164],[73.42702,23.76009],[73.43115,23.76125],[73.43063,23.75804],[73.43189,23.75652],[73.43658,23.75696],[73.44773,23.75287],[73.44869,23.7511],[73.44668,23.7444],[73.44921,23.73481],[73.45011,23.73336],[73.45674,23.73352],[73.46037,23.72731],[73.47142,23.71973],[73.47352,23.70523],[73.48141,23.7042],[73.49066,23.7069],[73.50739,23.70304],[73.50518,23.69881],[73.50841,23.69549],[73.50388,23.65672],[73.49661,23.64916],[73.49951,23.64873],[73.49943,23.64682],[73.50582,23.64701],[73.50877,23.64439],[73.50573,23.63884],[73.49377,23.63234],[73.50379,23.62443],[73.5027,23.6228],[73.50346,23.61832],[73.50639,23.61903],[73.52308,23.6069],[73.52487,23.61184],[73.53118,23.61418],[73.53301,23.61955],[73.54647,23.62599],[73.56855,23.6529],[73.57266,23.65377],[73.57902,23.65261],[73.59818,23.65389],[73.61548,23.65212],[73.62072,23.64574],[73.62678,23.64187],[73.64067,23.62821],[73.65566,23.62129],[73.64898,23.60837],[73.64485,23.60411],[73.64503,23.59678],[73.64336,23.59437],[73.64761,23.57462],[73.64416,23.57226],[73.64968,23.5681],[73.64719,23.56606],[73.64058,23.56802],[73.63662,23.5646],[73.63311,23.55509],[73.63514,23.53836],[73.63307,23.52869],[73.65052,23.51855],[73.65532,23.5124],[73.65636,23.50746],[73.64962,23.49647],[73.64533,23.49769],[73.64072,23.49641],[73.63917,23.48708],[73.64033,23.48272],[73.63344,23.46995],[73.63432,23.46238],[73.63067,23.45792],[73.62721,23.44857],[73.63602,23.44906],[73.64619,23.44142],[73.64746,23.43645],[73.66052,23.44803],[73.67391,23.45411],[73.68523,23.45359],[73.69212,23.45843],[73.69539,23.45591],[73.6974,23.45667],[73.70427,23.45144],[73.70686,23.44564],[73.70511,23.4382],[73.71164,23.4355],[73.71165,23.43392],[73.70799,23.43116],[73.71045,23.42536],[73.70808,23.42232],[73.71122,23.42187],[73.71451,23.41673],[73.71371,23.41381],[73.72081,23.41013],[73.72875,23.42321],[73.735,23.42549],[73.73658,23.42981],[73.74988,23.44074],[73.75645,23.45018],[73.75573,23.45432],[73.76723,23.45312],[73.77056,23.44807],[73.77229,23.43782],[73.77657,23.43779],[73.77898,23.4313],[73.78628,23.43023],[73.79447,23.43112],[73.80344,23.43777],[73.8186,23.43846],[73.82871,23.44769],[73.82868,23.44383],[73.8318,23.44045],[73.83313,23.43582],[73.83023,23.42623],[73.83413,23.42362],[73.83509,23.42044],[73.83963,23.41882],[73.84087,23.41335],[73.84566,23.41045],[73.84556,23.40752],[73.84932,23.40548],[73.85004,23.40198],[73.85817,23.39624],[73.85927,23.39214],[73.86361,23.38949],[73.86338,23.38725],[73.86084,23.38567],[73.86178,23.38363],[73.86585,23.38422],[73.86636,23.38126],[73.86921,23.38191],[73.86776,23.37805],[73.87191,23.37726],[73.87297,23.37945],[73.87376,23.37686],[73.87248,23.37587],[73.87374,23.37515],[73.87246,23.37247],[73.87408,23.37073],[73.87433,23.36367],[73.88034,23.3585],[73.88723,23.35728],[73.88979,23.35091],[73.89131,23.35048],[73.89078,23.34889],[73.89266,23.34828],[73.8896,23.33637],[73.89193,23.33411],[73.90094,23.33597],[73.91858,23.33547],[73.9337,23.33859],[73.93941,23.34441],[73.93697,23.36058],[73.93801,23.36794],[73.95227,23.37518],[73.9575,23.37954],[73.95986,23.37771],[73.96176,23.37244],[73.96681,23.3749],[73.97421,23.37274],[73.97706,23.36485],[73.98041,23.36238],[73.97915,23.35901],[73.9814,23.33814],[73.98758,23.33576],[74.00439,23.33592],[74.02865,23.33167],[74.02481,23.32106],[74.03075,23.31291],[74.03307,23.30599],[74.03552,23.30501],[74.04086,23.30873],[74.04486,23.30881],[74.0424,23.30029],[74.03883,23.29857],[74.03816,23.29345],[74.04829,23.29332],[74.07138,23.29882],[74.08298,23.29609],[74.08593,23.29804],[74.09617,23.29325],[74.10058,23.29381],[74.10755,23.28444],[74.10922,23.27436],[74.12793,23.26899],[74.13264,23.26619],[74.13237,23.25925],[74.13077,23.25649],[74.13201,23.2472],[74.13008,23.24512],[74.13258,23.24078],[74.1325,23.23159],[74.13373,23.22986],[74.13116,23.22923],[74.13447,23.22303],[74.12862,23.21666],[74.12814,23.21388],[74.13007,23.21115],[74.11921,23.204],[74.11902,23.1919],[74.11638,23.18466],[74.12148,23.17619],[74.1412,23.17315],[74.14526,23.16836],[74.14794,23.15766],[74.15273,23.15239],[74.15407,23.15204],[74.15448,23.15649],[74.16679,23.15572],[74.17244,23.15454],[74.17888,23.14728],[74.18542,23.15682],[74.18293,23.16634],[74.1887,23.1752],[74.1886,23.17815],[74.19578,23.18054],[74.20121,23.1893],[74.20292,23.19031],[74.20712,23.18909],[74.21256,23.18693],[74.21252,23.18367],[74.22379,23.18151],[74.23137,23.17893],[74.23164,23.17727],[74.2408,23.18469],[74.24286,23.17734],[74.24736,23.17143],[74.2611,23.16497],[74.26747,23.15835],[74.27437,23.13075],[74.27837,23.12499],[74.28712,23.11712],[74.28577,23.11257],[74.27712,23.0994],[74.27889,23.09219],[74.28287,23.08853],[74.29469,23.08544],[74.30734,23.07777],[74.31439,23.06993],[74.3189,23.05866],[74.3209,23.06142],[74.33281,23.06219],[74.3416,23.0679],[74.35589,23.07981],[74.35439,23.08604],[74.35629,23.08865],[74.37741,23.10637],[74.3862,23.11152],[74.38905,23.11147],[74.38974,23.10962],[74.39217,23.11117],[74.39836,23.11011],[74.40631,23.11202],[74.42158,23.10437],[74.42738,23.1067],[74.43225,23.1049],[74.44039,23.09518],[74.44072,23.09068],[74.45408,23.08833],[74.45773,23.08463],[74.46384,23.08179],[74.46702,23.08303],[74.47439,23.08166],[74.47472,23.08365],[74.48924,23.08768],[74.49174,23.0859],[74.4992,23.08688],[74.50586,23.08514],[74.50908,23.08675],[74.50691,23.0914],[74.51028,23.09446],[74.51485,23.09628],[74.52338,23.09626],[74.53144,23.09907],[74.53934,23.10334],[74.54551,23.10984],[74.54642,23.11435],[74.54479,23.11971],[74.53937,23.1293],[74.57223,23.13315],[74.57678,23.13418],[74.58549,23.13975],[74.5965,23.13789],[74.60661,23.14256],[74.6184,23.15037],[74.62494,23.16172],[74.63271,23.16395],[74.6493,23.17522],[74.66425,23.19516],[74.67154,23.19996],[74.68187,23.19387],[74.69881,23.1923],[74.70808,23.19423],[74.7151,23.19071],[74.72453,23.1966],[74.72505,23.20089],[74.74214,23.20891],[74.74443,23.21166],[74.74056,23.21768],[74.74891,23.22376],[74.74752,23.22665],[74.74099,23.22643],[74.74128,23.22475],[74.73377,23.22042],[74.73291,23.21757],[74.72637,23.21501],[74.72283,23.21679],[74.71694,23.21578],[74.71566,23.21914],[74.70222,23.21451],[74.69207,23.21915],[74.69167,23.22559],[74.70423,23.22885],[74.70589,23.23152],[74.70881,23.23142],[74.71511,23.23668],[74.71297,23.2428],[74.71277,23.25053],[74.70767,23.25483],[74.69878,23.25731],[74.70107,23.26466],[74.69996,23.26837],[74.69243,23.26584],[74.68622,23.26759],[74.67676,23.27381],[74.67314,23.26996],[74.66378,23.26741],[74.64856,23.25593],[74.63856,23.25541],[74.62681,23.25869],[74.62391,23.27179],[74.62484,23.27387],[74.62185,23.27367],[74.61689,23.27938],[74.60795,23.28246],[74.60168,23.28023],[74.59829,23.27694],[74.58922,23.27904],[74.58499,23.27694],[74.58528,23.27951],[74.57934,23.28461],[74.57685,23.28481],[74.57369,23.28922],[74.57437,23.29517],[74.56824,23.29518],[74.56321,23.29269],[74.56337,23.28826],[74.55647,23.27843],[74.55348,23.27747],[74.54967,23.27861],[74.54667,23.27712],[74.54147,23.28673],[74.53957,23.2997],[74.53427,23.30065],[74.53192,23.30636],[74.52792,23.31075],[74.53108,23.3128],[74.52973,23.32067],[74.52362,23.32113],[74.51503,23.3161],[74.51404,23.32805],[74.53527,23.33082],[74.5401,23.33625],[74.53819,23.34599],[74.54156,23.35749],[74.53982,23.36187],[74.54239,23.36466],[74.54663,23.3649],[74.55469,23.36129],[74.5577,23.36191],[74.55769,23.368],[74.55925,23.37118],[74.56513,23.37285],[74.56894,23.3763],[74.56949,23.37839],[74.56657,23.38614],[74.57304,23.39636],[74.56995,23.4126],[74.57235,23.42067],[74.57507,23.42321],[74.58184,23.42156],[74.58718,23.42651],[74.59425,23.42415],[74.59657,23.42828],[74.59907,23.42875],[74.59932,23.43726],[74.60617,23.44453],[74.60991,23.45163],[74.60974,23.45367],[74.60389,23.45726],[74.6127,23.46193],[74.61623,23.45978],[74.63187,23.46139],[74.63354,23.46707],[74.63277,23.46951],[74.6368,23.46728],[74.63872,23.46356],[74.65188,23.46228],[74.65895,23.4673],[74.66642,23.47752],[74.66606,23.4825],[74.67703,23.48273],[74.68131,23.48523],[74.68217,23.48789],[74.68034,23.49478],[74.68653,23.49474],[74.69674,23.50266],[74.70349,23.50501],[74.71872,23.50323],[74.72373,23.49629],[74.72924,23.49662],[74.73294,23.50144],[74.73405,23.50818],[74.73912,23.51379],[74.73468,23.51821],[74.73529,23.52057],[74.76151,23.52114],[74.76237,23.5264],[74.76689,23.53086],[74.76723,23.53557],[74.77092,23.54239],[74.77368,23.54437],[74.79411,23.55088],[74.79901,23.5381],[74.8033,23.53308],[74.80648,23.53813],[74.81032,23.54082],[74.81807,23.54237],[74.82212,23.54085],[74.82923,23.55055],[74.84029,23.54988],[74.84683,23.55186],[74.84663,23.55406],[74.84878,23.5544],[74.84846,23.55607],[74.85089,23.55876],[74.85012,23.56068],[74.85252,23.56415],[74.85351,23.57099],[74.85691,23.57393],[74.86827,23.57417],[74.87137,23.57827],[74.87336,23.5769],[74.87331,23.58159],[74.8709,23.58552],[74.86991,23.59193],[74.87985,23.59522],[74.88208,23.60618],[74.88468,23.60663],[74.88506,23.6081],[74.89361,23.6095],[74.89776,23.6161],[74.90165,23.61758],[74.90087,23.61863],[74.90363,23.62314],[74.90294,23.6251],[74.90679,23.62446],[74.91003,23.62222],[74.91107,23.61916],[74.91499,23.61811],[74.92444,23.61999],[74.92746,23.6219],[74.92735,23.62525],[74.93654,23.62877],[74.9361,23.63958],[74.92841,23.64155],[74.92401,23.65065],[74.92429,23.65721],[74.92168,23.66649],[74.91754,23.66941],[74.90801,23.6711],[74.9071,23.67458],[74.90384,23.67474],[74.9042,23.68014],[74.89946,23.6822],[74.89959,23.68402],[74.91772,23.69065],[74.92159,23.69465],[74.9183,23.70563],[74.92014,23.71107],[74.92023,23.71918],[74.92445,23.7184],[74.92658,23.72021],[74.92526,23.7234],[74.92798,23.72406],[74.92862,23.72801],[74.93638,23.72958],[74.9351,23.73284],[74.93177,23.73434],[74.92996,23.7401],[74.93032,23.74956],[74.92633,23.7517],[74.92452,23.75639],[74.93425,23.75792],[74.9404,23.76474],[74.93882,23.77013],[74.93531,23.77329],[74.93199,23.7842],[74.92848,23.78789],[74.92434,23.79662],[74.90371,23.79431],[74.90389,23.79849],[74.90676,23.80444],[74.90638,23.81583],[74.90854,23.82293],[74.91159,23.82614],[74.9089,23.83572],[74.91384,23.84168],[74.9124,23.84595],[74.90601,23.84807],[74.90367,23.85274],[74.90404,23.86925],[74.90262,23.87295],[74.90819,23.88162],[74.91049,23.90629],[74.91292,23.91107],[74.9209,23.91909],[74.92121,23.92413],[74.91621,23.92989],[74.91651,23.93175],[74.92824,23.9394],[74.92907,23.95444],[74.93075,23.95699],[74.9472,23.9626],[74.95914,23.97216],[74.96272,23.97874],[74.9625,23.98918],[74.96469,23.99583],[74.96315,23.99807],[74.96339,24.0022],[74.96482,24.00594],[74.97226,24.01326],[74.97647,24.02063],[74.9823,24.02541],[74.97895,24.03125],[74.97817,24.03666],[74.97657,24.03605],[74.97382,24.03979],[74.97144,24.03854],[74.9692,24.04038],[74.96057,24.03884],[74.96006,24.04603],[74.95535,24.04696],[74.95531,24.0486],[74.94579,24.0495],[74.93934,24.05392],[74.9382,24.06308],[74.94068,24.06992],[74.93239,24.07429],[74.92747,24.07439],[74.9209,24.07754],[74.92088,24.08024],[74.91874,24.08099],[74.92066,24.08685],[74.9177,24.09093],[74.91817,24.09806],[74.9152,24.10262],[74.90847,24.10462],[74.90352,24.1093],[74.90824,24.12124],[74.90124,24.12604],[74.90207,24.13899],[74.8954,24.15306],[74.89611,24.15795],[74.89064,24.16262],[74.88974,24.16545],[74.8865,24.16572],[74.88473,24.16994],[74.8821,24.17028],[74.88171,24.1731],[74.87975,24.17361],[74.8845,24.18224],[74.89053,24.18772],[74.89447,24.19019],[74.89903,24.19067],[74.90235,24.19723],[74.907,24.20066],[74.91034,24.21011],[74.90577,24.21305],[74.89802,24.21434],[74.8971,24.22729],[74.88714,24.22969],[74.87792,24.23782],[74.86758,24.24309],[74.85178,24.23674],[74.83926,24.23727],[74.83332,24.23986],[74.82328,24.23982],[74.81082,24.24418],[74.79504,24.24316],[74.78687,24.23975],[74.77483,24.23871],[74.76222,24.24118],[74.75874,24.24328],[74.75432,24.24217],[74.75435,24.24455],[74.74711,24.25347],[74.74918,24.25841],[74.76728,24.27407],[74.77461,24.27805],[74.77515,24.28242],[74.78132,24.28917],[74.78075,24.30599],[74.78366,24.31451],[74.78314,24.31935],[74.77886,24.32386],[74.78118,24.33834],[74.79089,24.34486],[74.79406,24.35126],[74.80199,24.35855],[74.80107,24.36437],[74.80842,24.37655],[74.80726,24.38083],[74.81096,24.38254],[74.81731,24.37949],[74.82259,24.37959],[74.82492,24.38826],[74.82519,24.40002],[74.83024,24.40152],[74.83498,24.40649],[74.83977,24.40814],[74.8474,24.4204],[74.8551,24.42414],[74.85379,24.43628],[74.85523,24.4409],[74.85387,24.44453],[74.85141,24.4456],[74.84713,24.44244],[74.84136,24.44101],[74.83393,24.44318],[74.83188,24.4421],[74.83228,24.43836],[74.83009,24.43514],[74.81375,24.43674],[74.81899,24.45269],[74.82176,24.45311],[74.81535,24.46847],[74.80618,24.4671],[74.78694,24.47224],[74.77714,24.4605],[74.76942,24.46321],[74.76566,24.46677],[74.75012,24.4667],[74.74815,24.46992],[74.74609,24.46978],[74.74432,24.47372],[74.7317,24.4808],[74.72795,24.48908],[74.72036,24.48916],[74.70873,24.48647],[74.71216,24.50046],[74.71814,24.50898],[74.72478,24.51204],[74.72467,24.51318],[74.74463,24.51346],[74.74653,24.51969],[74.7458,24.52535],[74.74358,24.52748],[74.74422,24.53231],[74.75553,24.53488],[74.75275,24.54408],[74.75359,24.5536],[74.74351,24.57146],[74.74915,24.57464],[74.75329,24.57435],[74.75198,24.57743],[74.75278,24.57964],[74.7582,24.57716],[74.76007,24.57766],[74.7601,24.57944],[74.76684,24.57967],[74.76685,24.57856],[74.77813,24.58147],[74.78063,24.58569],[74.78643,24.58593],[74.78596,24.59416],[74.78333,24.59436],[74.78282,24.60542],[74.78075,24.60536],[74.7794,24.61544],[74.78575,24.61929],[74.79174,24.61977],[74.79021,24.62228],[74.79128,24.63178],[74.79652,24.63467],[74.80294,24.6342],[74.80631,24.6484],[74.81175,24.65205],[74.81414,24.65018],[74.81626,24.65855],[74.81367,24.65932],[74.81458,24.66575],[74.80359,24.66536],[74.80072,24.6666],[74.798,24.66397],[74.79075,24.66508],[74.79022,24.65987],[74.78394,24.65775],[74.78169,24.65818],[74.78055,24.6605],[74.77428,24.65948],[74.77194,24.66148],[74.7777,24.68132],[74.78074,24.68419],[74.78431,24.69176],[74.78451,24.70171],[74.78761,24.70418],[74.7796,24.73245],[74.78211,24.72881],[74.78484,24.72814],[74.78909,24.7318],[74.80397,24.73397],[74.79921,24.76377],[74.79978,24.77907],[74.8088,24.78105],[74.81441,24.76064],[74.8161,24.74801],[74.82321,24.73504],[74.83044,24.72777],[74.82985,24.72042],[74.83689,24.70773],[74.83583,24.70674],[74.84373,24.6987],[74.8481,24.69977],[74.84639,24.69623],[74.84948,24.68791],[74.8545,24.68765],[74.85018,24.6842],[74.8515,24.67767],[74.85309,24.67818],[74.8525,24.68422],[74.85938,24.68284],[74.86014,24.67894],[74.85796,24.67436],[74.86077,24.67436],[74.86355,24.66965],[74.86499,24.66962],[74.86489,24.66549],[74.86869,24.66305],[74.86837,24.65741],[74.87558,24.65266],[74.87139,24.65255],[74.87166,24.6505],[74.87378,24.64968],[74.87323,24.64647],[74.87655,24.64285],[74.8782,24.64681],[74.88439,24.64142],[74.88323,24.63822],[74.88908,24.63383],[74.89398,24.63781],[74.89402,24.6418],[74.89249,24.64249],[74.89498,24.64394],[74.89861,24.64186],[74.89811,24.63757],[74.90182,24.63281],[74.90136,24.63704],[74.90526,24.64087],[74.90945,24.63792],[74.91149,24.63885],[74.91386,24.637],[74.91724,24.63777],[74.91976,24.63625],[74.92493,24.63791],[74.92917,24.63546],[74.93601,24.63979],[74.93704,24.63801],[74.93915,24.63795],[74.9408,24.64059],[74.94309,24.6378],[74.9441,24.6419],[74.9422,24.64714],[74.94382,24.64809],[74.94741,24.64572],[74.94976,24.64972],[74.9513,24.64724],[74.95403,24.65196],[74.95302,24.65374],[74.95646,24.65579],[74.95855,24.66093],[74.96128,24.65604],[74.96228,24.65642],[74.96076,24.66547],[74.96489,24.67029],[74.96019,24.67777],[74.97631,24.67875],[74.98305,24.68195],[74.99339,24.68281],[75.00172,24.68642],[75.00046,24.69184],[74.99193,24.69322],[74.99388,24.72601],[74.99239,24.73175],[75.01603,24.73212],[75.0144,24.7347],[75.01515,24.74012],[75.00693,24.77125],[75.00149,24.77452],[74.99912,24.77475],[74.99041,24.76923],[74.98441,24.76883],[74.98171,24.76412],[74.97562,24.76369],[74.97202,24.76378],[74.96915,24.77061],[74.96477,24.76932],[74.95343,24.77368],[74.94798,24.77199],[74.94061,24.77474],[74.93739,24.77836],[74.93089,24.7791],[74.92129,24.7707],[74.91453,24.7692],[74.91042,24.77042],[74.90671,24.78183],[74.89211,24.7836],[74.88042,24.78941],[74.87932,24.79738],[74.86043,24.79849],[74.85911,24.79588],[74.86094,24.78543],[74.86017,24.77942],[74.84937,24.77613],[74.84832,24.77967],[74.8405,24.78974],[74.8387,24.79804],[74.86152,24.80414],[74.85953,24.80771],[74.86085,24.82246],[74.85876,24.83851],[74.85107,24.85129],[74.84997,24.85737],[74.84657,24.8605],[74.84037,24.88482],[74.83748,24.88726],[74.83074,24.88693],[74.82529,24.90015],[74.82489,24.92291],[74.82653,24.92451],[74.82638,24.93352],[74.83386,24.94413],[74.83322,24.95972],[74.84263,24.96885],[74.84815,24.96614],[74.85176,24.96707],[74.85904,24.96223],[74.85911,24.95579],[74.86258,24.95318],[74.86571,24.93502],[74.86948,24.92497],[74.87939,24.92998],[74.8807,24.93736],[74.88785,24.93755],[74.89195,24.92974],[74.90294,24.92951],[74.9078,24.91829],[74.91334,24.91618],[74.913,24.90869],[74.91638,24.90729],[74.91041,24.89437],[74.91694,24.88619],[74.92066,24.88487],[74.9239,24.8783],[74.9267,24.87981],[74.93159,24.8754],[74.93223,24.88131],[74.94128,24.8807],[74.94108,24.8794],[74.94498,24.87891],[74.94925,24.88145],[74.95261,24.88068],[74.95088,24.87601],[74.9519,24.87646],[74.95193,24.87416],[74.94821,24.86457],[74.95676,24.8607],[74.95866,24.85819],[74.96811,24.85612],[74.98057,24.85865],[74.98402,24.85685],[74.98491,24.8533],[74.99218,24.85457],[74.99388,24.85346],[75.00157,24.85612],[75.00831,24.85642],[75.01476,24.854],[75.02099,24.84857],[75.03305,24.84441],[75.03888,24.84555],[75.04196,24.84697],[75.04145,24.84921],[75.04716,24.84958],[75.05131,24.85267],[75.05186,24.85589],[75.05659,24.86214],[75.05993,24.86361],[75.05936,24.86688],[75.05548,24.86983],[75.05531,24.87189],[75.06277,24.87148],[75.06386,24.86769],[75.06544,24.86802],[75.07653,24.88068],[75.08821,24.87871],[75.08719,24.87079],[75.09849,24.87245],[75.11249,24.87852],[75.11693,24.87826],[75.11892,24.8823],[75.11853,24.88525],[75.11625,24.8919],[75.1144,24.89277],[75.11741,24.89501],[75.1161,24.89706],[75.11334,24.89724],[75.11324,24.89971],[75.11592,24.90621],[75.11949,24.91018],[75.11643,24.91059],[75.11677,24.9218],[75.11837,24.9256],[75.11412,24.93644],[75.11508,24.94387],[75.11356,24.96681],[75.12757,24.96788],[75.13559,24.97604],[75.14149,24.97818],[75.13845,24.97985],[75.13023,24.97962],[75.13219,24.98361],[75.13723,24.98619],[75.13936,24.98566],[75.14186,24.98993],[75.15177,24.98907],[75.15312,24.99475],[75.15582,24.99364],[75.15868,25.0011],[75.16633,25.00288],[75.16613,25.00592],[75.16857,25.00593],[75.16388,25.01664],[75.15673,25.02112],[75.15163,25.02036],[75.15136,25.02618],[75.15224,25.03142],[75.15712,25.03587],[75.15536,25.03661],[75.15594,25.03771],[75.16452,25.04186],[75.16412,25.04569],[75.16708,25.04841],[75.17609,25.03975],[75.18391,25.03712],[75.19085,25.03645],[75.19333,25.04364],[75.19685,25.04449],[75.19943,25.04298],[75.1988,25.03771],[75.20537,25.03947],[75.21784,25.03488],[75.22183,25.03678],[75.22512,25.0341],[75.23012,25.03705],[75.24029,25.03514],[75.25,25.0358],[75.2539,25.03949],[75.26838,25.04244],[75.27385,25.03951],[75.28319,25.03806],[75.29397,25.03906],[75.3011,25.04174],[75.32514,25.03917],[75.33216,25.04149],[75.34718,25.03214],[75.34639,25.03073],[75.34272,25.03072],[75.35021,25.0224],[75.35035,25.01753],[75.33914,25.01728],[75.33926,25.01932],[75.33298,25.01665],[75.32054,25.00677],[75.31653,25.00556],[75.31177,24.99537],[75.31346,24.98001],[75.31847,24.97413],[75.32723,24.97097],[75.32702,24.96744],[75.33157,24.95764],[75.33691,24.9554],[75.33528,24.94379],[75.32909,24.93415],[75.32583,24.91947],[75.321,24.91279],[75.31845,24.89416],[75.31274,24.88514],[75.31512,24.88934],[75.31527,24.89443],[75.31165,24.90758],[75.30859,24.91661],[75.30272,24.91987],[75.30088,24.92362],[75.30141,24.92628],[75.30487,24.92866],[75.30023,24.93336],[75.2977,24.93301],[75.29009,24.93766],[75.28677,24.94614],[75.2884,24.95161],[75.28187,24.95309],[75.28531,24.96478],[75.28219,24.96561],[75.27812,24.96375],[75.27779,24.96493],[75.27389,24.96404],[75.27292,24.95971],[75.27057,24.95713],[75.27082,24.95273],[75.26671,24.95088],[75.26708,24.94715],[75.26892,24.94223],[75.27293,24.93818],[75.27264,24.93594],[75.27926,24.93435],[75.27728,24.92494],[75.28784,24.92352],[75.28779,24.91983],[75.29348,24.91129],[75.29407,24.90755],[75.28674,24.90876],[75.2843,24.90796],[75.27733,24.89915],[75.2727,24.90405],[75.26731,24.89944],[75.26407,24.89521],[75.26507,24.89219],[75.2633,24.89108],[75.26231,24.88264],[75.26343,24.87486],[75.27436,24.87478],[75.27813,24.87274],[75.28111,24.86838],[75.29019,24.86621],[75.29463,24.85762],[75.30805,24.85604],[75.3153,24.85791],[75.31838,24.86061],[75.32277,24.86919],[75.32259,24.87315],[75.32664,24.87487],[75.33829,24.87276],[75.35053,24.87365],[75.37363,24.86774],[75.39598,24.87752],[75.40178,24.8827],[75.41613,24.88608],[75.4217,24.8861],[75.4258,24.88429],[75.42431,24.88084],[75.42576,24.86907],[75.41908,24.86201],[75.41971,24.85619],[75.41857,24.85441],[75.41239,24.85213],[75.40393,24.84516],[75.39602,24.84155],[75.38129,24.8382],[75.37171,24.83265],[75.36268,24.83002],[75.34541,24.82168],[75.33586,24.82217],[75.32843,24.81903],[75.31704,24.8039],[75.3116,24.80118],[75.30473,24.80205],[75.29794,24.80714],[75.29734,24.81269],[75.29486,24.81571],[75.2958,24.82026],[75.29031,24.8286],[75.28996,24.83366],[75.27294,24.84284],[75.26232,24.84221],[75.25023,24.84569],[75.24042,24.8457],[75.23691,24.84224],[75.22409,24.84392],[75.22622,24.84038],[75.2252,24.83398],[75.23238,24.83133],[75.24909,24.82982],[75.25006,24.82666],[75.25396,24.82427],[75.25426,24.81848],[75.25232,24.81311],[75.25032,24.80954],[75.24413,24.80471],[75.23303,24.80266],[75.2217,24.80322],[75.21867,24.80512],[75.2152,24.80212],[75.20727,24.79191],[75.20694,24.78837],[75.2047,24.7856],[75.20745,24.7812],[75.20158,24.77174],[75.20497,24.77045],[75.20811,24.77161],[75.20542,24.76946],[75.19291,24.77357],[75.19037,24.75341],[75.1844,24.74855],[75.18701,24.7475],[75.18763,24.74374],[75.19764,24.74325],[75.20404,24.73137],[75.20807,24.71934],[75.21944,24.70255],[75.22451,24.71516],[75.22838,24.71762],[75.24155,24.71344],[75.2517,24.7136],[75.2649,24.71751],[75.26853,24.71475],[75.28419,24.70892],[75.3204,24.7024],[75.32995,24.70298],[75.34904,24.7008],[75.3707,24.69239],[75.3918,24.69038],[75.43406,24.68211],[75.45646,24.68045],[75.48941,24.68665],[75.50633,24.69993],[75.51835,24.70588],[75.53025,24.70948],[75.53343,24.71205],[75.54009,24.70565],[75.54822,24.70294],[75.55201,24.70515],[75.55388,24.70446],[75.56319,24.70736],[75.57479,24.70777],[75.57534,24.71219],[75.58097,24.71177],[75.58297,24.71326],[75.58457,24.7083],[75.59057,24.70578],[75.59857,24.69808],[75.60851,24.68155],[75.61079,24.68041],[75.64596,24.68492],[75.65772,24.69299],[75.68342,24.72512],[75.74048,24.75502],[75.75683,24.76155],[75.76981,24.75843],[75.77757,24.76138],[75.78473,24.7618],[75.79797,24.75631],[75.80217,24.75646],[75.82646,24.73486],[75.83361,24.73185],[75.83413,24.72849],[75.83732,24.72505],[75.8378,24.71801],[75.83357,24.6882],[75.82853,24.67648],[75.82842,24.6722],[75.82494,24.66745],[75.83845,24.66863],[75.84126,24.66544],[75.84776,24.66302],[75.84691,24.66096],[75.84836,24.65749],[75.84691,24.65188],[75.84876,24.6474],[75.84097,24.63811],[75.84142,24.63494],[75.84627,24.63099],[75.8426,24.62808],[75.8447,24.62722],[75.84215,24.62625],[75.84181,24.62385],[75.83811,24.6231],[75.83716,24.6209],[75.82809,24.62043],[75.82485,24.61345],[75.82588,24.61073],[75.83275,24.60505],[75.83639,24.60615],[75.83253,24.59559],[75.83546,24.59495],[75.83837,24.59765],[75.84166,24.60702],[75.84579,24.60764],[75.84587,24.60948],[75.84924,24.61088],[75.86302,24.61003],[75.86284,24.60613],[75.87115,24.60666],[75.87219,24.59034],[75.87837,24.58339],[75.89412,24.57976],[75.89873,24.57628],[75.90645,24.57562],[75.91446,24.57225],[75.91482,24.569],[75.91219,24.56131],[75.90585,24.56276],[75.90367,24.54893],[75.90596,24.54537],[75.9161,24.54266],[75.92059,24.53588],[75.92334,24.53518],[75.92055,24.52166],[75.91138,24.5139],[75.90777,24.51296],[75.90112,24.51879],[75.89053,24.51883],[75.88988,24.51014],[75.88786,24.50807],[75.8982,24.50452],[75.90282,24.5046],[75.90393,24.49691],[75.90792,24.49237],[75.91164,24.49191],[75.91009,24.48309],[75.90539,24.47247],[75.90886,24.46218],[75.90906,24.45501],[75.90263,24.45379],[75.90306,24.44956],[75.90023,24.44222],[75.89037,24.43937],[75.87575,24.43037],[75.87509,24.42636],[75.86119,24.42155],[75.85548,24.41797],[75.84449,24.41549],[75.84201,24.41627],[75.83879,24.41418],[75.83557,24.41487],[75.82771,24.42167],[75.82484,24.42731],[75.81689,24.42942],[75.80986,24.43404],[75.81445,24.45036],[75.81347,24.46202],[75.80335,24.46825],[75.7894,24.47153],[75.78534,24.46788],[75.78427,24.4579],[75.78606,24.45326],[75.78119,24.44962],[75.77339,24.4497],[75.7741,24.44191],[75.77132,24.44172],[75.76656,24.43431],[75.7632,24.43317],[75.76179,24.43086],[75.75786,24.43115],[75.7476,24.42418],[75.74759,24.42289],[75.75589,24.42066],[75.75469,24.4167],[75.75531,24.40653],[75.7499,24.40438],[75.74952,24.40097],[75.74322,24.39934],[75.74279,24.39773],[75.73148,24.39872],[75.72791,24.39641],[75.72775,24.39052],[75.72949,24.37775],[75.73411,24.3784],[75.73689,24.3823],[75.73898,24.37824],[75.73997,24.36096],[75.73753,24.35356],[75.74075,24.35129],[75.7432,24.35168],[75.74212,24.34986],[75.74318,24.34005],[75.73822,24.33482],[75.73984,24.33215],[75.7488,24.32699],[75.75734,24.31925],[75.76096,24.3145],[75.76647,24.29802],[75.78581,24.29664],[75.78715,24.29872],[75.80183,24.30213],[75.80353,24.29843],[75.80652,24.29978],[75.81073,24.29609],[75.80893,24.29409],[75.81218,24.29331],[75.81365,24.28995],[75.81189,24.28549],[75.81844,24.28069],[75.81679,24.27837],[75.81319,24.27841],[75.81171,24.27528],[75.81257,24.27138],[75.81419,24.27128],[75.8142,24.2677],[75.81153,24.25774],[75.81922,24.25697],[75.81299,24.25047],[75.81474,24.24606],[75.81352,24.24537],[75.81798,24.24215],[75.81802,24.23872],[75.8255,24.23696],[75.83023,24.23376],[75.82365,24.22998],[75.81794,24.22947],[75.81568,24.22581],[75.80936,24.2297],[75.80988,24.225],[75.80737,24.21777],[75.7949,24.2147],[75.7928,24.21035],[75.77744,24.20998],[75.77223,24.20055],[75.77259,24.19419],[75.77098,24.18897],[75.77394,24.18127],[75.76376,24.1745],[75.76388,24.17],[75.76031,24.16604],[75.76152,24.16209],[75.75871,24.15878],[75.75917,24.15547],[75.75162,24.14771],[75.75096,24.14333],[75.75583,24.14029],[75.7577,24.13491],[75.7622,24.13073],[75.76412,24.1211],[75.77003,24.11579],[75.77357,24.11899],[75.77864,24.11926],[75.78264,24.11595],[75.78405,24.11228],[75.78327,24.10785],[75.7876,24.10479],[75.79089,24.10541],[75.78913,24.10419],[75.78762,24.0987],[75.79286,24.09185],[75.8057,24.09957],[75.81657,24.08547],[75.8357,24.09212],[75.83503,24.07351],[75.83672,24.05706],[75.81498,24.05154],[75.81045,24.04865],[75.78169,24.04253],[75.78057,24.03952],[75.78309,24.02214],[75.77528,24.01699],[75.77537,24.01411],[75.77677,24.01446],[75.77339,24.00787],[75.76266,24.00988],[75.76399,24.00537],[75.7685,24.00092],[75.76843,23.99753],[75.76534,23.99268],[75.75352,23.99098],[75.74225,23.99273],[75.74194,23.98864],[75.7434,23.98847],[75.74364,23.98629],[75.74145,23.98296],[75.74113,23.97694],[75.73621,23.97533],[75.73067,23.97678],[75.72893,23.97317],[75.72953,23.97025],[75.71828,23.96834],[75.71752,23.96686],[75.70173,23.96659],[75.69882,23.98784],[75.6925,23.98696],[75.68699,23.98877],[75.68772,24.00546],[75.67818,24.00731],[75.67434,24.01768],[75.6581,24.01024],[75.6546,24.00641],[75.6509,24.00631],[75.65049,24.00517],[75.65264,24.00397],[75.65163,24.00282],[75.64752,24.00351],[75.64108,24.00075],[75.64005,23.99789],[75.63502,23.99788],[75.63,23.99505],[75.62581,23.99639],[75.61977,23.99495],[75.61578,23.99659],[75.6071,23.99255],[75.60379,23.99545],[75.59802,23.99414],[75.59552,23.99],[75.59547,23.99447],[75.58791,23.99064],[75.58134,23.9914],[75.581,23.99674],[75.57953,23.99839],[75.57751,23.99414],[75.5758,23.99413],[75.57628,23.99716],[75.57235,23.99878],[75.56551,24.00768],[75.54822,24.00721],[75.53963,24.00906],[75.52105,24.02502],[75.50469,24.00596],[75.49227,23.99722],[75.48323,23.98755],[75.47468,23.98284],[75.46885,23.97445],[75.46531,23.94753],[75.46004,23.93242],[75.45939,23.92078],[75.46206,23.91476],[75.46597,23.9121],[75.47737,23.91152],[75.49165,23.90678],[75.50111,23.89779],[75.50567,23.88725],[75.52149,23.88493],[75.53075,23.87662],[75.54709,23.86956],[75.55308,23.86162],[75.56322,23.85758],[75.56593,23.85342],[75.5665,23.84387],[75.57676,23.84231],[75.57903,23.8398],[75.57933,23.83511],[75.57806,23.83121],[75.57461,23.82848],[75.56669,23.8332],[75.56062,23.83142],[75.55912,23.82832],[75.5593,23.81818],[75.56679,23.80958],[75.57157,23.80915],[75.5806,23.81228],[75.58901,23.80978],[75.58345,23.79482],[75.59844,23.79776],[75.60893,23.79755],[75.61435,23.80105],[75.62045,23.80093],[75.62704,23.79544],[75.63848,23.79566],[75.64401,23.79778],[75.65001,23.79546],[75.6545,23.7984],[75.65998,23.78423],[75.67563,23.78189],[75.68046,23.76527],[75.68672,23.75594],[75.68971,23.76216],[75.69294,23.77603],[75.6965,23.77974],[75.69964,23.78034],[75.70184,23.78639],[75.69012,23.81325],[75.69277,23.81645],[75.69799,23.81337],[75.70621,23.81331],[75.7073,23.81123],[75.71256,23.81315],[75.72159,23.81179],[75.72098,23.81875],[75.72647,23.82021],[75.72404,23.82376],[75.72227,23.83536],[75.71895,23.84067],[75.72565,23.84183],[75.73131,23.85313],[75.73641,23.85625],[75.73522,23.86199],[75.72759,23.85872],[75.71085,23.86241],[75.70894,23.86923],[75.70523,23.86858],[75.70349,23.87249],[75.70157,23.87283],[75.70219,23.88173],[75.70548,23.88265],[75.70427,23.88876],[75.70609,23.8991],[75.70805,23.8994],[75.71028,23.89551],[75.71547,23.89305],[75.7193,23.89706],[75.72711,23.89328],[75.73523,23.89811],[75.73949,23.89216],[75.74,23.889],[75.7527,23.88735],[75.76454,23.87555],[75.7617,23.86576],[75.76454,23.85174],[75.77345,23.84814],[75.78125,23.84873],[75.78329,23.84923],[75.78506,23.85282],[75.79201,23.85845],[75.79385,23.86701],[75.799,23.86856],[75.803,23.86545],[75.81736,23.86786],[75.82087,23.87331],[75.83265,23.87992],[75.83365,23.87795],[75.83547,23.87818],[75.83508,23.87684],[75.83914,23.87862],[75.84056,23.87458],[75.84476,23.87619],[75.84478,23.88395],[75.84878,23.88415],[75.85302,23.88748],[75.87063,23.89042],[75.87479,23.88537],[75.87652,23.88524],[75.87642,23.88002],[75.8871,23.87911],[75.89484,23.8894],[75.90486,23.88916],[75.92178,23.89613],[75.9238,23.89847],[75.92714,23.89774],[75.92858,23.8991],[75.93199,23.89622],[75.93751,23.89669],[75.93944,23.89947],[75.94132,23.89946],[75.94108,23.90176],[75.94389,23.90298],[75.94466,23.90896],[75.94917,23.9126],[75.95303,23.91172],[75.95137,23.91553],[75.95531,23.92084],[75.96038,23.92325],[75.96781,23.92416],[75.97453,23.92902],[75.98136,23.92897],[75.98223,23.93104],[75.97996,23.93591],[75.98761,23.94174],[75.98388,23.95027],[75.98676,23.95885],[75.98391,23.96742],[75.98485,23.97403],[75.97596,23.98221],[75.97243,23.98847],[75.96744,23.99123],[75.96719,23.99987],[75.96222,24.01469],[75.96346,24.01871],[75.97064,24.02036],[75.99702,24.01769],[76.0,24.02089],[76.01067,24.02504],[76.0213,24.03419],[76.01941,24.03742],[76.02202,24.04119],[76.02223,24.04724],[76.02817,24.05174],[76.03056,24.05154],[76.03169,24.05787],[76.0346,24.05845],[76.03681,24.0629],[76.03996,24.06316],[76.04267,24.06602],[76.04543,24.06451],[76.04896,24.06667],[76.05465,24.06526],[76.05767,24.06754],[76.06325,24.06827],[76.06758,24.07072],[76.07275,24.07666],[76.07584,24.07084],[76.08451,24.07694],[76.08927,24.07704],[76.0927,24.08253],[76.09635,24.08341],[76.10062,24.08711],[76.10492,24.08744],[76.10666,24.08429],[76.11457,24.08474],[76.11804,24.08712],[76.12179,24.0847],[76.12679,24.08873],[76.12064,24.10821],[76.13114,24.11549],[76.12679,24.13249],[76.12244,24.1377],[76.12496,24.15107],[76.12442,24.15945],[76.1213,24.16301],[76.11378,24.16387],[76.11738,24.19399],[76.13227,24.20856],[76.1378,24.21802],[76.14512,24.22302],[76.14843,24.23203],[76.14312,24.25574],[76.13905,24.25625],[76.14139,24.26718],[76.13672,24.27081],[76.14054,24.27463],[76.14329,24.2829],[76.14932,24.28478],[76.15968,24.2827],[76.16255,24.28473],[76.16533,24.29223],[76.1647,24.29461],[76.16888,24.29707],[76.16587,24.29981],[76.16461,24.30659],[76.16556,24.30789],[76.17015,24.30606],[76.17411,24.30721],[76.17415,24.31268],[76.17963,24.31687],[76.18552,24.32928],[76.18992,24.32342],[76.19558,24.31055],[76.20286,24.30492],[76.20473,24.3009],[76.20424,24.29802],[76.19729,24.28796],[76.19459,24.27319],[76.20093,24.27107],[76.20214,24.26883],[76.20295,24.24476],[76.20647,24.22841],[76.20333,24.22052],[76.2047,24.21725],[76.21164,24.21219],[76.21255,24.20994],[76.21752,24.21126],[76.22478,24.21654],[76.22765,24.21541],[76.23995,24.21889],[76.25211,24.21428],[76.25813,24.21463],[76.26715,24.21036],[76.27554,24.21088],[76.28232,24.20731],[76.2854,24.20954],[76.28736,24.22986],[76.29568,24.23185],[76.30186,24.23608],[76.31084,24.23763],[76.31911,24.24481],[76.32291,24.24554],[76.33988,24.24411],[76.34856,24.24062],[76.35721,24.23974],[76.35834,24.23544],[76.3729,24.22785],[76.38191,24.221],[76.40158,24.21527],[76.40796,24.20352],[76.41168,24.20051],[76.4148,24.20064],[76.42057,24.20864],[76.41642,24.21097],[76.41622,24.22063],[76.43022,24.22131],[76.45227,24.20936],[76.46052,24.21851],[76.46272,24.22322],[76.47051,24.22615],[76.47048,24.22298],[76.47403,24.22217],[76.48054,24.20808],[76.4958,24.2054],[76.49947,24.20607],[76.50454,24.20309],[76.50873,24.19358],[76.50944,24.18213],[76.51293,24.16659],[76.51537,24.16263],[76.52241,24.15707],[76.52742,24.15673],[76.54469,24.16285],[76.55195,24.16328],[76.5618,24.17334],[76.56618,24.17444],[76.56989,24.17802],[76.5705,24.17489],[76.57489,24.17572],[76.57773,24.17917],[76.57467,24.18656],[76.56427,24.19095],[76.56654,24.20338],[76.56876,24.20483],[76.57025,24.20899],[76.57774,24.21175],[76.582,24.21134],[76.58341,24.21627],[76.58944,24.21702],[76.59523,24.22332],[76.59439,24.22844],[76.58784,24.23473],[76.58354,24.24287],[76.58606,24.24444],[76.5956,24.24402],[76.6112,24.23865],[76.61479,24.25362],[76.61765,24.25883],[76.62257,24.25735],[76.62386,24.25915],[76.6313,24.26082],[76.6372,24.25834],[76.6366,24.26425],[76.63997,24.26822],[76.64347,24.26939],[76.65303,24.2635],[76.65673,24.26483],[76.66513,24.26193],[76.66668,24.26365],[76.67775,24.26664],[76.6781,24.27123],[76.68127,24.27507],[76.68753,24.27918],[76.69275,24.28023],[76.69137,24.28574],[76.69277,24.28648],[76.69523,24.27763],[76.69309,24.26793],[76.69409,24.26166],[76.70148,24.25042],[76.70273,24.2432],[76.70051,24.23898],[76.69436,24.23631],[76.69044,24.23057],[76.6781,24.20489],[76.67589,24.19085],[76.6863,24.1862],[76.69204,24.18057],[76.69296,24.17641],[76.69858,24.17193],[76.69831,24.16847],[76.71143,24.16384],[76.71912,24.15869],[76.72608,24.16072],[76.72619,24.16857],[76.75792,24.16826],[76.76078,24.165],[76.75978,24.16014],[76.77019,24.16012],[76.7738,24.15007],[76.77837,24.14699],[76.78088,24.1394],[76.78822,24.13215],[76.79,24.12272],[76.79613,24.12136],[76.80129,24.11667],[76.80637,24.11818],[76.81158,24.12275],[76.83308,24.12202],[76.83632,24.12673],[76.85377,24.13353],[76.85459,24.13583],[76.87841,24.13569],[76.88009,24.13506],[76.8788,24.13023],[76.88397,24.13004],[76.88602,24.12801],[76.89128,24.12673],[76.89227,24.12786],[76.9006,24.12743],[76.90465,24.14385],[76.90994,24.15273],[76.9095,24.16298],[76.9157,24.17353],[76.91629,24.18785],[76.93143,24.18356],[76.93577,24.18373],[76.93987,24.19339],[76.9472,24.19873],[76.9474,24.20131],[76.94593,24.20611],[76.93347,24.20706],[76.93157,24.21035],[76.9223,24.2117],[76.92294,24.22605],[76.91812,24.22994],[76.91576,24.22964],[76.91265,24.23795],[76.90528,24.2368],[76.89616,24.24309],[76.8882,24.24489],[76.88597,24.24778],[76.88784,24.25213],[76.87963,24.2553],[76.87992,24.26028],[76.87313,24.26262],[76.87351,24.26592],[76.86262,24.27332],[76.86012,24.29409],[76.85688,24.30292],[76.85167,24.31234],[76.84105,24.32241],[76.83787,24.33415],[76.83731,24.3464],[76.83188,24.35797],[76.83735,24.35959],[76.85139,24.37052],[76.84523,24.37513],[76.85069,24.38344],[76.84369,24.40305],[76.83793,24.40648],[76.83738,24.40971],[76.83906,24.41317],[76.84574,24.41592],[76.85045,24.42413],[76.84592,24.43078],[76.84434,24.43717],[76.84108,24.44014],[76.84103,24.44355],[76.84481,24.45068],[76.85007,24.44923],[76.85159,24.45012],[76.85251,24.45552],[76.85116,24.46036],[76.85308,24.46589],[76.84775,24.47348],[76.84661,24.48596],[76.84227,24.48832],[76.8354,24.48892],[76.83666,24.49318],[76.82815,24.50313],[76.82867,24.51273],[76.82275,24.52043],[76.81631,24.52441],[76.81639,24.53358],[76.8216,24.53459],[76.83812,24.54561],[76.86062,24.54777],[76.86192,24.5493],[76.86963,24.54437],[76.87411,24.53921],[76.87666,24.53879],[76.87477,24.53363],[76.87157,24.53211],[76.87307,24.52702],[76.88431,24.52145],[76.88986,24.52486],[76.89433,24.5383],[76.90187,24.54585],[76.9179,24.54348],[76.91667,24.53705],[76.92083,24.52854],[76.9218,24.52049],[76.91979,24.51805],[76.91578,24.50264],[76.91725,24.4968],[76.91615,24.48993],[76.91794,24.48555],[76.91693,24.48327],[76.91842,24.48069],[76.9267,24.47408],[76.93852,24.47231],[76.94106,24.47052],[76.94311,24.46514],[76.95076,24.46571],[76.95095,24.4618],[76.95222,24.46386],[76.95549,24.46451],[76.96079,24.46342],[76.96214,24.46165],[76.97761,24.46138],[76.98234,24.46782],[76.98349,24.47279],[77.0036,24.47374],[77.00882,24.47674],[77.00928,24.47808],[77.00713,24.47902],[77.0088,24.4819],[77.01374,24.48325],[77.01096,24.48734],[77.01183,24.49166],[77.02897,24.49608],[77.03066,24.50183],[77.02933,24.5167],[77.03037,24.51895],[77.03554,24.52089],[77.03511,24.52435],[77.03689,24.5279],[77.0422,24.52477],[77.05471,24.52628],[77.05435,24.53181],[77.05763,24.53713],[77.05975,24.54588],[77.06816,24.55581],[77.07133,24.57276],[77.06983,24.58406],[77.06526,24.59427],[77.06558,24.60032],[77.06867,24.6088],[77.06717,24.61579],[77.06788,24.63025],[77.06499,24.64384],[77.05728,24.65383],[77.04374,24.67871],[77.04132,24.68675],[77.04148,24.6994],[77.03167,24.71132],[77.02582,24.71432],[77.01378,24.71218],[77.00166,24.71604],[76.99788,24.72046],[76.9977,24.72783],[76.99552,24.73333],[76.98946,24.73614],[76.97912,24.73516],[76.97456,24.7362],[76.96907,24.74231],[76.96457,24.75455],[76.95396,24.76036],[76.94353,24.75755],[76.93153,24.74364],[76.92319,24.74231],[76.90749,24.73159],[76.90224,24.73341],[76.89597,24.74311],[76.88948,24.74726],[76.8816,24.74675],[76.87438,24.74376],[76.85613,24.74249],[76.8502,24.74658],[76.84859,24.75039],[76.84925,24.76303],[76.84752,24.76927],[76.83546,24.77884],[76.82349,24.79412],[76.80756,24.80419],[76.802,24.81013],[76.80252,24.81885],[76.79988,24.82401],[76.81197,24.82557],[76.8225,24.83214],[76.82508,24.83555],[76.83257,24.83657],[76.84113,24.83458],[76.84617,24.83656],[76.86208,24.83731],[76.86889,24.8395],[76.88148,24.8363],[76.89789,24.83823],[76.90373,24.84238],[76.91665,24.84675],[76.92496,24.84658],[76.92953,24.84867],[76.9341,24.85525],[76.94054,24.85782],[76.94411,24.86537],[76.94856,24.86907],[76.94396,24.87444],[76.93359,24.87508],[76.93425,24.87975],[76.93263,24.88199],[76.92298,24.88036],[76.91305,24.88784],[76.91382,24.89831],[76.91642,24.90426],[76.91966,24.90454],[76.92141,24.90842],[76.92229,24.91249],[76.92042,24.91677],[76.90937,24.92111],[76.89049,24.91969],[76.88868,24.92339],[76.88937,24.93392],[76.88555,24.93873],[76.87763,24.9414],[76.87196,24.94789],[76.86748,24.95649],[76.86269,24.9598],[76.86239,24.96442],[76.86389,24.96552],[76.86513,24.9755],[76.86729,24.9803],[76.86721,24.99016],[76.86135,24.99973],[76.85678,25.00248],[76.86243,25.00255],[76.86733,25.00603],[76.87604,25.00706],[76.8785,25.02848],[76.87616,25.0414],[76.88754,25.04377],[76.91159,25.043],[76.92572,25.04695],[76.93433,25.04563],[76.94509,25.04674],[76.9523,25.05216],[76.95896,25.05217],[76.96167,25.05637],[76.96584,25.05155],[76.9682,25.0511],[76.96873,25.05462],[76.9733,25.05843],[76.97343,25.06076],[76.97148,25.06224],[76.97464,25.06643],[76.9786,25.06639],[76.98984,25.07313],[76.99907,25.07485],[77.01048,25.07345],[77.02404,25.06593],[77.02969,25.06585],[77.0324,25.06895],[77.03759,25.06854],[77.04278,25.0634],[77.08483,25.05424],[77.08913,25.06216],[77.09598,25.06543],[77.12257,25.06665],[77.13342,25.08485],[77.14149,25.08859],[77.14772,25.09511],[77.1506,25.09333],[77.1494,25.08636],[77.16712,25.08461],[77.17158,25.09791],[77.16876,25.10301],[77.17442,25.11181],[77.18423,25.10814],[77.1959,25.10932],[77.2053,25.11387],[77.2151,25.109],[77.22572,25.10895],[77.23696,25.10661],[77.24879,25.10995],[77.25936,25.11089],[77.27001,25.11609],[77.27461,25.11069],[77.28883,25.10601],[77.29257,25.10028],[77.29159,25.09716],[77.29774,25.09123],[77.29826,25.08588],[77.31078,25.07983],[77.31155,25.08242],[77.31484,25.08467],[77.32191,25.08554],[77.33834,25.09217],[77.33781,25.09485],[77.35043,25.09576],[77.35729,25.09351],[77.37567,25.10464],[77.37558,25.11029],[77.39438,25.11992],[77.40243,25.11255],[77.40219,25.10929],[77.40662,25.11169],[77.40537,25.11721],[77.40128,25.12164],[77.39058,25.12339],[77.39616,25.13728],[77.39469,25.15644],[77.393,25.15923],[77.39468,25.16213],[77.40003,25.16556],[77.40014,25.18388],[77.40945,25.18294],[77.41629,25.18611],[77.42158,25.18571],[77.42197,25.18331],[77.42662,25.18807],[77.4185,25.19842],[77.41468,25.22013],[77.4117,25.22401],[77.39977,25.22609],[77.39442,25.22994],[77.39313,25.23376],[77.38765,25.23902],[77.38662,25.2427],[77.38242,25.24569],[77.37037,25.24601],[77.36905,25.25546],[77.36625,25.25766],[77.36611,25.25991],[77.36225,25.26269],[77.35816,25.26178],[77.35509,25.26348],[77.35417,25.2736],[77.35694,25.27384],[77.35755,25.27579],[77.36266,25.27901],[77.37395,25.27452],[77.37587,25.28512],[77.381,25.29273],[77.37962,25.29754],[77.38148,25.3046],[77.37785,25.31572],[77.37476,25.32009],[77.37171,25.32089],[77.36977,25.32725],[77.36761,25.3286],[77.358,25.32616],[77.35708,25.32289],[77.35282,25.32041],[77.34212,25.32177],[77.35036,25.32982],[77.3616,25.35661],[77.36132,25.35876],[77.36669,25.36031],[77.36413,25.36358],[77.36105,25.36461],[77.35914,25.36938],[77.35166,25.36969],[77.3505,25.38407],[77.35766,25.39874],[77.368,25.40209],[77.37097,25.40849],[77.36094,25.41899],[77.3539,25.41889],[77.34994,25.4157],[77.3442,25.41862],[77.34354,25.42078],[77.33464,25.42381],[77.3349,25.42542],[77.33124,25.42746],[77.31994,25.42771],[77.31546,25.43147],[77.30688,25.43026],[77.2938,25.4243],[77.28635,25.41855],[77.27813,25.40918],[77.27564,25.40355],[77.26694,25.39565],[77.25094,25.38794],[77.24787,25.38019],[77.24395,25.37904],[77.23617,25.38039],[77.23394,25.3787],[77.23157,25.3727],[77.22794,25.36867],[77.22987,25.36089],[77.22815,25.34657],[77.22562,25.34237],[77.22432,25.33553],[77.22566,25.3347],[77.22923,25.33761],[77.23395,25.33377],[77.22578,25.33031],[77.22695,25.32526],[77.22337,25.31879],[77.2175,25.31784],[77.21523,25.32034],[77.21632,25.32305],[77.21988,25.32478],[77.21947,25.32779],[77.21722,25.32953],[77.20555,25.32648],[77.20828,25.31434],[77.21139,25.30934],[77.20919,25.30865],[77.20942,25.30631],[77.1856,25.309],[77.17967,25.31191],[77.16536,25.30823],[77.15374,25.31261],[77.14412,25.32053],[77.13864,25.32205],[77.13503,25.32067],[77.12508,25.33027],[77.11768,25.32945],[77.11249,25.33198],[77.10903,25.33063],[77.08367,25.33656],[77.07523,25.32823],[77.07496,25.32522],[77.07005,25.31849],[77.06395,25.31657],[77.05691,25.31655],[77.0459,25.32144],[77.04377,25.31269],[77.03169,25.29439],[77.0257,25.29627],[76.99688,25.2984],[76.98047,25.29793],[76.97374,25.30041],[76.96065,25.29729],[76.95781,25.28441],[76.94225,25.28216],[76.9299,25.28297],[76.92327,25.28546],[76.92739,25.29153],[76.92941,25.30319],[76.91765,25.30926],[76.90154,25.32363],[76.88148,25.32413],[76.87211,25.32895],[76.8704,25.32703],[76.86577,25.3285],[76.86348,25.33123],[76.85728,25.33278],[76.85201,25.33203],[76.83944,25.3262],[76.83078,25.3273],[76.82036,25.32628],[76.8145,25.32297],[76.80027,25.31965],[76.78966,25.31954],[76.77881,25.31556],[76.76971,25.31771],[76.76627,25.32022],[76.76037,25.31974],[76.75619,25.32257],[76.74028,25.32775],[76.72932,25.32857],[76.72559,25.33129],[76.7237,25.3355],[76.71695,25.33846],[76.71112,25.3461],[76.7033,25.34789],[76.70028,25.35163],[76.68882,25.35225],[76.68255,25.34837],[76.67793,25.35066],[76.67715,25.34782],[76.67532,25.34923],[76.67344,25.34802],[76.6695,25.3491],[76.6688,25.35301],[76.66351,25.35795],[76.66043,25.36519],[76.65883,25.36541],[76.65857,25.36154],[76.65682,25.3612],[76.65406,25.3631],[76.65355,25.36711],[76.64927,25.36662],[76.64936,25.37156],[76.64585,25.37072],[76.64647,25.37317],[76.64383,25.37794],[76.64067,25.37953],[76.63976,25.38353],[76.63556,25.38344],[76.63089,25.38123],[76.62891,25.37779],[76.62279,25.37678],[76.61664,25.38076],[76.60828,25.39094],[76.59847,25.39233],[76.59823,25.40543],[76.58627,25.43356],[76.58243,25.43686],[76.56753,25.44034],[76.56223,25.44762],[76.55598,25.45203],[76.55519,25.45446],[76.55715,25.4594],[76.55807,25.47054],[76.55546,25.48257],[76.53773,25.50272],[76.53775,25.50901],[76.53431,25.5144],[76.52496,25.51851],[76.51661,25.52667],[76.51998,25.54727],[76.51415,25.56299],[76.50552,25.57488],[76.50376,25.57977],[76.50384,25.5856],[76.51116,25.59989],[76.51244,25.60695],[76.5098,25.6313],[76.50559,25.6381],[76.50227,25.63762],[76.49894,25.63944],[76.49661,25.64681],[76.49817,25.65675],[76.504,25.66844],[76.50384,25.6732],[76.49891,25.67808],[76.49144,25.67902],[76.47945,25.6842],[76.47292,25.69765],[76.47199,25.70394],[76.47343,25.70992],[76.47968,25.71682],[76.49109,25.72083],[76.5014,25.72997],[76.52032,25.72875],[76.52377,25.72983],[76.52295,25.73746],[76.52522,25.74175],[76.52088,25.75211],[76.51726,25.75523],[76.51789,25.76713],[76.51548,25.77644],[76.52101,25.7936],[76.53473,25.81917],[76.55611,25.8349],[76.58277,25.87105],[76.58928,25.87498],[76.59409,25.87527],[76.61448,25.86844],[76.62322,25.87055],[76.6261,25.87573],[76.63062,25.89914],[76.63575,25.905],[76.64026,25.90761],[76.67011,25.91072],[76.6872,25.90786],[76.70725,25.90051],[76.71633,25.90116],[76.73323,25.90632],[76.75273,25.91734],[76.75662,25.92101],[76.75765,25.92663],[76.75179,25.92817],[76.74659,25.9341],[76.7464,25.93768],[76.74886,25.94047],[76.768,25.93765],[76.78141,25.93845],[76.78903,25.94109],[76.80745,25.96537],[76.80831,25.97324],[76.80358,25.97453],[76.80252,25.97822],[76.80678,25.98981],[76.81925,26.00348],[76.8262,26.00739],[76.83276,26.01871],[76.84078,26.02649],[76.8568,26.03473],[76.86631,26.03436],[76.87581,26.04315],[76.88485,26.04804],[76.88973,26.06266],[76.89416,26.06724],[76.89772,26.07425],[76.90025,26.08708],[76.89978,26.0925],[76.91811,26.09876],[76.93653,26.10177],[76.94077,26.10053],[76.94766,26.10274],[76.97748,26.12486],[76.98712,26.12804],[76.99761,26.12907],[77.00215,26.13399],[77.00288,26.138],[77.00156,26.14246],[77.00631,26.15102],[77.01525,26.15704],[77.02914,26.17119],[77.05448,26.17957],[77.08226,26.17906],[77.09675,26.18324],[77.10093,26.18656],[77.10596,26.19614],[77.11198,26.20235],[77.11291,26.21398],[77.11643,26.22058],[77.13604,26.23345],[77.14172,26.23437],[77.15254,26.23189],[77.16619,26.23226],[77.17013,26.23349],[77.17145,26.23795],[77.17519,26.23892],[77.19993,26.22981],[77.20389,26.22987],[77.21284,26.23377],[77.2168,26.24004],[77.23089,26.24598],[77.25177,26.25978],[77.27105,26.26758],[77.27898,26.27596],[77.29843,26.29102],[77.3166,26.31147],[77.31762,26.31746],[77.31464,26.31872],[77.32139,26.334],[77.32897,26.34255],[77.33059,26.34387],[77.33525,26.34134],[77.34212,26.35181],[77.35599,26.35503],[77.36837,26.36415],[77.37562,26.36557],[77.3904,26.35652],[77.39705,26.36078],[77.41395,26.36344],[77.44095,26.36081],[77.44468,26.36176],[77.44856,26.36753],[77.44622,26.37528],[77.43505,26.39438],[77.43506,26.40004],[77.43735,26.40328],[77.44874,26.40461],[77.45968,26.40378],[77.48651,26.41082],[77.52146,26.40721],[77.53838,26.4113],[77.54633,26.41612],[77.55867,26.43518],[77.5624,26.43684],[77.57147,26.43645],[77.58903,26.44648],[77.61348,26.45272],[77.62297,26.46142],[77.62747,26.47242],[77.63332,26.47869],[77.65058,26.4879],[77.65984,26.49112],[77.67372,26.50283],[77.68024,26.50426],[77.69129,26.49964],[77.71331,26.49827],[77.72701,26.50232],[77.73374,26.5078],[77.73811,26.51421],[77.74029,26.52725],[77.74591,26.53875],[77.75748,26.53984],[77.76781,26.54758],[77.78371,26.55204],[77.81074,26.54719],[77.82201,26.54958],[77.83251,26.56147],[77.83568,26.57603],[77.83378,26.58238],[77.82704,26.59179],[77.82733,26.59605],[77.83206,26.59891],[77.83578,26.60615],[77.85066,26.61254],[77.85881,26.6136],[77.88577,26.61244],[77.89428,26.61471],[77.8967,26.61706],[77.89811,26.62315],[77.89752,26.65285],[77.89953,26.65642],[77.90426,26.65906],[77.91554,26.66102],[77.93522,26.66024],[77.94303,26.65819],[77.95318,26.65894],[77.98012,26.67121],[77.98476,26.67481],[77.99604,26.69257],[78.00043,26.69486],[78.01796,26.6925],[78.03164,26.68631],[78.03437,26.68703],[78.05601,26.68363],[78.07409,26.6706],[78.07879,26.67044],[78.09267,26.67626],[78.09521,26.67927],[78.09616,26.68488],[78.09233,26.71864],[78.09593,26.7278],[78.10137,26.73709],[78.10808,26.73751],[78.11164,26.74064],[78.1184,26.74216],[78.12353,26.74688],[78.12371,26.75],[78.12065,26.75415],[78.10735,26.75944],[78.10345,26.76332],[78.10122,26.77409],[78.10216,26.78149],[78.10596,26.78888],[78.11426,26.79526],[78.12468,26.79642],[78.14326,26.79117],[78.15619,26.78397],[78.184,26.78382],[78.18761,26.78968],[78.18722,26.79487],[78.18047,26.80414],[78.16838,26.81283],[78.16727,26.81541],[78.16872,26.82039],[78.17233,26.82389],[78.17731,26.82559],[78.20211,26.82138],[78.22228,26.83132],[78.21858,26.8345],[78.22081,26.84012],[78.22017,26.84378],[78.21702,26.84336],[78.21273,26.84613],[78.21176,26.85069],[78.20222,26.86633],[78.19698,26.88218],[78.20006,26.88302],[78.20261,26.88172],[78.20841,26.87197],[78.20862,26.86886],[78.2127,26.86982],[78.21258,26.87137],[78.21922,26.87187],[78.22664,26.87488],[78.23264,26.87428],[78.23421,26.87599],[78.23708,26.88897],[78.24371,26.88869],[78.2469,26.89307],[78.25081,26.89178],[78.25913,26.89674],[78.26229,26.90195],[78.2637,26.90831],[78.27077,26.9151],[78.27226,26.91919],[78.27159,26.92122],[78.26531,26.92259],[78.26485,26.92675],[78.25856,26.93371],[78.25496,26.93531],[78.25364,26.9352],[78.25319,26.93273],[78.25567,26.92866],[78.25462,26.92581],[78.2479,26.92865],[78.24191,26.92614],[78.23862,26.92664],[78.23738,26.93597],[78.23129,26.93658],[78.22669,26.94527],[78.2242,26.94646],[78.22056,26.94343],[78.21643,26.93508],[78.21014,26.93123],[78.20517,26.93263],[78.19766,26.94093],[78.19155,26.94246],[78.18128,26.94084],[78.17199,26.94817],[78.15646,26.94321],[78.15129,26.94801],[78.14727,26.94944],[78.14268,26.94983],[78.1328,26.94737],[78.12451,26.94928],[78.11444,26.944],[78.11177,26.93976],[78.11375,26.93599],[78.12278,26.93452],[78.1232,26.93183],[78.12108,26.93204],[78.12182,26.92258],[78.12019,26.92149],[78.10517,26.92682],[78.10176,26.91783],[78.10158,26.91635],[78.1084,26.91219],[78.11265,26.90291],[78.11293,26.89901],[78.1112,26.89588],[78.10737,26.89638],[78.10434,26.90343],[78.10021,26.9049],[78.09438,26.9033],[78.09867,26.89659],[78.09604,26.89378],[78.07173,26.90637],[78.06695,26.91139],[78.0641,26.90652],[78.05952,26.90885],[78.05585,26.90691],[78.04881,26.91013],[78.04805,26.90747],[78.05126,26.9017],[78.05212,26.89421],[78.05019,26.87578],[78.05172,26.87072],[78.05597,26.86839],[78.04466,26.86998],[78.032,26.8518],[78.02647,26.84953],[78.02224,26.85268],[78.02096,26.85751],[78.03227,26.86516],[78.03528,26.86837],[78.03548,26.8708],[78.03119,26.87363],[78.02423,26.87257],[78.02577,26.8789],[78.02778,26.88044],[78.02722,26.88397],[78.02997,26.8841],[78.03019,26.88603],[78.0234,26.89099],[78.02132,26.90032],[78.01459,26.90291],[78.00963,26.90405],[78.00565,26.90207],[78.00224,26.9029],[77.99303,26.89249],[77.98873,26.89169],[77.98721,26.88935],[77.97645,26.89221],[77.97232,26.89607],[77.97341,26.89821],[77.97139,26.90032],[77.97345,26.90294],[77.97134,26.90587],[77.96958,26.90597],[77.95813,26.89683],[77.94841,26.89358],[77.943,26.89711],[77.93969,26.90678],[77.92577,26.90982],[77.91562,26.90739],[77.91302,26.90886],[77.91558,26.91419],[77.90636,26.91778],[77.90355,26.9146],[77.90686,26.91265],[77.90883,26.90638],[77.90672,26.89286],[77.9089,26.89062],[77.90432,26.88333],[77.89649,26.884],[77.89187,26.88707],[77.8938,26.88892],[77.89248,26.89016],[77.88452,26.89098],[77.88082,26.89945],[77.87756,26.90237],[77.86896,26.90164],[77.86771,26.90628],[77.85782,26.90626],[77.85024,26.91283],[77.84185,26.91257],[77.83638,26.91676],[77.83194,26.91427],[77.82383,26.91993],[77.8215,26.91777],[77.815,26.91975],[77.81021,26.92419],[77.7982,26.916],[77.79299,26.91705],[77.78647,26.92234],[77.78688,26.92386],[77.77949,26.92686],[77.78047,26.92985],[77.77475,26.93215],[77.7606,26.93262],[77.75896,26.93145],[77.75891,26.92648],[77.75318,26.91687],[77.74571,26.92102],[77.744,26.91876],[77.73779,26.92058],[77.73238,26.92015],[77.72492,26.91038],[77.71764,26.89726],[77.723,26.89514],[77.72698,26.89022],[77.7259,26.88876],[77.72788,26.88526],[77.72261,26.87432],[77.70651,26.87684],[77.70124,26.86775],[77.6976,26.86738],[77.69615,26.8677],[77.6943,26.87396],[77.68665,26.87525],[77.68232,26.8694],[77.67643,26.86848],[77.67458,26.86349],[77.67474,26.85755],[77.62976,26.84147],[77.6204,26.8428],[77.61823,26.83204],[77.61034,26.82858],[77.60762,26.8278],[77.60837,26.83912],[77.60081,26.83561],[77.59243,26.82791],[77.57805,26.82721],[77.57448,26.82086],[77.5576,26.81764],[77.54197,26.82242],[77.52569,26.81887],[77.52011,26.82179],[77.51698,26.82578],[77.51761,26.83776],[77.52086,26.83818],[77.52071,26.84152],[77.51771,26.84284],[77.51768,26.84423],[77.50782,26.84571],[77.50117,26.84445],[77.5014,26.83519],[77.49912,26.82412],[77.50069,26.81701],[77.49366,26.80156],[77.49324,26.79767],[77.48747,26.78815],[77.48886,26.78604],[77.48895,26.77904],[77.50256,26.76873],[77.49463,26.75705],[77.48523,26.74801],[77.47804,26.7457],[77.4663,26.74465],[77.46141,26.74198],[77.45456,26.74187],[77.45623,26.74974],[77.46226,26.7574],[77.46367,26.75669],[77.46713,26.76299],[77.47037,26.76466],[77.46745,26.76748],[77.46691,26.77373],[77.45345,26.77788],[77.45151,26.77405],[77.44666,26.77392],[77.44184,26.7686],[77.43832,26.77012],[77.43664,26.76764],[77.43269,26.76784],[77.43428,26.76972],[77.43134,26.77108],[77.43363,26.77344],[77.43319,26.77482],[77.43524,26.77524],[77.43384,26.77957],[77.43708,26.78429],[77.4338,26.78737],[77.43229,26.78703],[77.42827,26.79319],[77.42909,26.80157],[77.42516,26.80152],[77.42061,26.81059],[77.40816,26.81671],[77.39787,26.83037],[77.4052,26.83478],[77.4213,26.83983],[77.42968,26.84708],[77.43116,26.85268],[77.42664,26.859],[77.42728,26.86409],[77.43807,26.86312],[77.4454,26.86826],[77.44842,26.87533],[77.45444,26.87183],[77.45896,26.87284],[77.4619,26.87749],[77.46032,26.88584],[77.46833,26.88722],[77.49026,26.90049],[77.49968,26.90207],[77.52349,26.91114],[77.54292,26.91627],[77.54506,26.91531],[77.55342,26.92004],[77.5832,26.92416],[77.58789,26.93106],[77.58851,26.93552],[77.59109,26.93597],[77.59224,26.94028],[77.59733,26.9383],[77.5975,26.93515],[77.60214,26.93327],[77.62295,26.94978],[77.6299,26.95172],[77.63496,26.95574],[77.64958,26.96288],[77.66088,26.97122],[77.66377,26.96723],[77.66381,26.96426],[77.66545,26.96278],[77.6682,26.96377],[77.66857,26.96174],[77.67092,26.96299],[77.67217,26.95997],[77.6736,26.96378],[77.67692,26.96556],[77.67625,26.97322],[77.69949,26.97512],[77.7224,26.98785],[77.72948,26.98296],[77.73907,26.98422],[77.74347,26.98317],[77.7475,26.98959],[77.74572,26.99505],[77.75327,26.99275],[77.75858,26.99696],[77.75196,26.99778],[77.75029,27.00187],[77.758,27.0018],[77.75999,26.99981],[77.76224,27.00096],[77.76296,27.00685],[77.75986,27.00629],[77.75679,27.01043],[77.75952,27.01798],[77.74954,27.02121],[77.75108,27.02885],[77.74861,27.03086],[77.74111,27.02904],[77.73769,27.02975],[77.73285,27.02353],[77.7293,27.00752],[77.73006,26.99389],[77.71194,26.9971],[77.70526,27.00379],[77.70649,27.0069],[77.70573,27.01446],[77.68962,27.02667],[77.69291,27.03442],[77.69306,27.04085],[77.67977,27.04708],[77.67564,27.04138],[77.67341,27.02887],[77.66558,27.01725],[77.66023,27.02103],[77.6563,27.02098],[77.64221,27.02567],[77.63649,27.01942],[77.63415,27.01245],[77.63003,27.01021],[77.6299,27.01384],[77.62797,27.01507],[77.62853,27.01869],[77.62346,27.02199],[77.61497,27.02353],[77.60182,27.02253],[77.59605,27.02657],[77.59681,27.0327],[77.58209,27.03577],[77.57919,27.03821],[77.56321,27.02937],[77.56714,27.04687],[77.5729,27.04883],[77.57304,27.05275],[77.57531,27.05641],[77.57535,27.05987],[77.57276,27.06451],[77.57722,27.06833],[77.57169,27.07187],[77.56675,27.07319],[77.56583,27.07215],[77.55934,27.07313],[77.55888,27.07196],[77.55687,27.07534],[77.55359,27.07603],[77.54767,27.07154],[77.5447,27.07191],[77.54164,27.06261],[77.53162,27.06457],[77.52555,27.06375],[77.51935,27.06662],[77.52637,27.07824],[77.52636,27.08462],[77.52265,27.08917],[77.51059,27.09042],[77.50762,27.08888],[77.50544,27.0923],[77.51774,27.10246],[77.52039,27.10437],[77.53757,27.09833],[77.53993,27.10623],[77.54329,27.10422],[77.54904,27.10751],[77.55028,27.11128],[77.56248,27.11017],[77.58123,27.11924],[77.58811,27.11652],[77.59266,27.12023],[77.59785,27.118],[77.60446,27.12425],[77.60299,27.12455],[77.60282,27.13276],[77.59897,27.13455],[77.59754,27.1389],[77.59897,27.14345],[77.60032,27.1423],[77.60555,27.14356],[77.61369,27.1506],[77.61415,27.15249],[77.61217,27.15284],[77.61057,27.15581],[77.61005,27.16286],[77.61826,27.16886],[77.61996,27.17355],[77.63434,27.16788],[77.63787,27.16384],[77.64412,27.16555],[77.649,27.17032],[77.6584,27.17011],[77.67301,27.18196],[77.68113,27.1944],[77.67553,27.19807],[77.66564,27.20901],[77.66354,27.20728],[77.65029,27.20807],[77.64671,27.21022],[77.64506,27.21688],[77.64832,27.22353],[77.65255,27.22609],[77.65282,27.23484],[77.64294,27.2349],[77.64554,27.24328],[77.64301,27.24789],[77.63737,27.25098],[77.63318,27.25813],[77.62731,27.2595],[77.62116,27.25519],[77.61643,27.2578],[77.61602,27.26171],[77.61319,27.26582],[77.6171,27.27086],[77.61821,27.26966],[77.62178,27.27505],[77.6147,27.27892],[77.61683,27.28645],[77.6118,27.29078],[77.60629,27.2921],[77.60571,27.29055],[77.59867,27.2972],[77.60052,27.30073],[77.60801,27.30057],[77.61016,27.30614],[77.61449,27.30717],[77.61873,27.31227],[77.6219,27.31305],[77.62231,27.3207],[77.62081,27.3264],[77.62271,27.33619],[77.61636,27.34043],[77.6147,27.33658],[77.61199,27.33623],[77.61254,27.33192],[77.60453,27.33205],[77.6013,27.33429],[77.59965,27.33217],[77.59117,27.33046],[77.58379,27.3213],[77.57878,27.32266],[77.57727,27.32358],[77.57705,27.32794],[77.54794,27.33689],[77.54556,27.34957],[77.53957,27.34795],[77.52952,27.35166],[77.52993,27.35268],[77.52257,27.35725],[77.51969,27.36118],[77.5161,27.36252],[77.51585,27.36793],[77.51326,27.37011],[77.50991,27.36981],[77.50844,27.37182],[77.50953,27.37405],[77.50719,27.37709],[77.48462,27.38353],[77.4727,27.37708],[77.47025,27.38348],[77.43998,27.39033],[77.43806,27.40895],[77.43222,27.41539],[77.4211,27.42202],[77.42584,27.43631],[77.42666,27.44511],[77.42934,27.44455],[77.43264,27.44713],[77.4362,27.44646],[77.43866,27.44905],[77.43662,27.45331],[77.43781,27.45632],[77.43367,27.46],[77.42609,27.46294],[77.42709,27.46417],[77.4257,27.46689],[77.42223,27.46125],[77.41907,27.46996],[77.41576,27.47264],[77.40155,27.4765],[77.39894,27.47945],[77.3988,27.48283],[77.401,27.49727],[77.39898,27.50019],[77.39057,27.5047],[77.39165,27.50814],[77.38739,27.51289],[77.38284,27.51569],[77.37403,27.51186],[77.3679,27.51547],[77.35735,27.51657],[77.33999,27.52662],[77.33869,27.53134],[77.34006,27.53889],[77.34598,27.53874],[77.34916,27.54315],[77.33808,27.54974],[77.33625,27.55767],[77.33681,27.56668],[77.33838,27.56907],[77.33727,27.56976],[77.33959,27.57261],[77.34526,27.57237],[77.34722,27.57473],[77.34724,27.57773],[77.35144,27.58122],[77.35018,27.58344],[77.35822,27.58896],[77.35326,27.59326],[77.34411,27.59708],[77.33453,27.5913],[77.31706,27.60675],[77.31878,27.6108],[77.32721,27.6204],[77.34619,27.6395],[77.35258,27.65124],[77.34478,27.66092],[77.34568,27.67343],[77.34096,27.67676],[77.34455,27.6812],[77.34082,27.68635],[77.3414,27.69508],[77.33846,27.69841],[77.34115,27.70337],[77.33023,27.70906],[77.32929,27.7076],[77.3221,27.70662],[77.31175,27.70869],[77.3097,27.70663],[77.30393,27.71079],[77.30299,27.72591],[77.31938,27.73349],[77.31945,27.73667],[77.31217,27.74194],[77.31414,27.74464],[77.3084,27.75097],[77.30797,27.75281],[77.3117,27.75804],[77.3093,27.75944],[77.30784,27.76721],[77.31275,27.77396],[77.3105,27.7772],[77.31048,27.78288],[77.30868,27.78447],[77.31044,27.78808],[77.30883,27.7869],[77.30596,27.78846],[77.30447,27.79007],[77.30581,27.79105],[77.30286,27.79405],[77.29542,27.79674],[77.28579,27.79621],[77.28518,27.79862],[77.2829,27.79937],[77.28369,27.80107],[77.26876,27.81494],[77.26443,27.80464],[77.25237,27.79069],[77.24812,27.79119],[77.24174,27.78354],[77.2367,27.78452],[77.23382,27.78706],[77.23822,27.79227],[77.2326,27.7965],[77.22658,27.79858],[77.22238,27.79588],[77.21065,27.8011],[77.21333,27.80765],[77.20671,27.81377],[77.20338,27.82344],[77.20207,27.82376],[77.19784,27.81586],[77.19135,27.80908],[77.19265,27.80817],[77.19146,27.80683],[77.19857,27.79882],[77.19268,27.79412],[77.19045,27.79434],[77.1833,27.78678],[77.1778,27.7871],[77.17702,27.78547],[77.1691,27.7909],[77.17357,27.79441],[77.17893,27.80438],[77.18242,27.80203],[77.1847,27.8025],[77.18944,27.80902],[77.17985,27.81715],[77.16723,27.81295],[77.15951,27.81634],[77.15655,27.80878],[77.16155,27.80329],[77.16081,27.79258],[77.15855,27.78735],[77.15651,27.78453],[77.14358,27.78559],[77.13522,27.77509],[77.1318,27.77807],[77.13452,27.78604],[77.12285,27.79262],[77.1131,27.78642],[77.10848,27.78548],[77.0808,27.80408],[77.08167,27.80625],[77.07462,27.81356],[77.06386,27.81126],[77.05556,27.81792],[77.0538,27.81694],[77.0448,27.82098],[77.04272,27.81828],[77.04583,27.81496],[77.04438,27.81216],[77.04057,27.81257],[77.03871,27.81012],[77.02658,27.77924],[77.0344,27.77811],[77.03577,27.78153],[77.05614,27.7712],[77.05758,27.77001],[77.05585,27.76342],[77.05955,27.76091],[77.06962,27.76747],[77.07209,27.76446],[77.07456,27.76701],[77.07635,27.76632],[77.0802,27.75725],[77.07819,27.7512],[77.08248,27.74588],[77.08566,27.73809],[77.07724,27.73551],[77.07281,27.73115],[77.06543,27.7314],[77.05963,27.72648],[77.04874,27.73153],[77.05032,27.73504],[77.04614,27.7373],[77.04685,27.73972],[77.04452,27.7419],[77.04507,27.74328],[77.03647,27.74861],[77.03394,27.74522],[77.0261,27.74638],[77.02509,27.7439],[77.01982,27.74577],[77.01152,27.73108],[77.0001,27.73697],[76.99039,27.7095],[76.9872,27.69515],[76.98861,27.69299],[76.98206,27.67612],[76.97937,27.6536],[76.96613,27.65839],[76.96267,27.66199],[76.95876,27.66243],[76.95486,27.66469],[76.95313,27.66804],[76.94377,27.67372],[76.93822,27.66647],[76.93336,27.65603],[76.93223,27.65881],[76.92692,27.66126],[76.91557,27.65227],[76.91083,27.65467],[76.91206,27.65797],[76.90671,27.66169],[76.91089,27.66802],[76.89859,27.67754],[76.90623,27.68629],[76.89033,27.69571],[76.88988,27.70075],[76.89514,27.70115],[76.90863,27.69368],[76.91642,27.69813],[76.92061,27.69571],[76.92473,27.69992],[76.92103,27.70309],[76.91904,27.7098],[76.91423,27.71319],[76.90478,27.71734],[76.89878,27.71647],[76.89452,27.71783],[76.89436,27.72435],[76.89241,27.72567],[76.89268,27.73346],[76.89698,27.73812],[76.89986,27.73671],[76.90169,27.74397],[76.90055,27.74737],[76.90084,27.76466],[76.90365,27.76933],[76.90215,27.77136],[76.90228,27.77534],[76.9064,27.77889],[76.90761,27.78235],[76.90617,27.78778],[76.90904,27.78691],[76.91334,27.78859],[76.91152,27.79609],[76.91363,27.80101],[76.919,27.80414],[76.91861,27.80744],[76.91404,27.80811],[76.90999,27.8149],[76.91358,27.8317],[76.91502,27.83454],[76.9357,27.82881],[76.94232,27.84262],[76.943,27.85357],[76.94148,27.8555],[76.94129,27.86418],[76.93746,27.87809],[76.93766,27.89622],[76.94163,27.89708],[76.95057,27.89564],[76.9496,27.90927],[76.95162,27.91803],[76.93154,27.92235],[76.93074,27.9533],[76.9333,27.9617],[76.93366,27.97129],[76.93794,27.98282],[76.93351,27.98161],[76.93285,27.98902],[76.93061,27.99335],[76.93635,28.01206],[76.9396,28.04298],[76.94839,28.05795],[76.95384,28.0626],[76.95457,28.07313],[76.95791,28.07745],[76.95795,28.08751],[76.96142,28.09958],[76.96195,28.11127],[76.97055,28.13843],[76.95792,28.14222],[76.94816,28.14221],[76.95095,28.14988],[76.93199,28.15305],[76.91973,28.1669],[76.90654,28.17189],[76.90702,28.17295],[76.9015,28.17866],[76.90245,28.18111],[76.89252,28.18359],[76.89162,28.19029],[76.89226,28.19323],[76.89864,28.19335],[76.90205,28.19898],[76.90618,28.1973],[76.90677,28.20031],[76.89088,28.20496],[76.88887,28.2032],[76.87836,28.20712],[76.87471,28.20549],[76.871,28.20659],[76.87306,28.21102],[76.87274,28.21505],[76.8749,28.21777],[76.85761,28.2212],[76.85498,28.22013],[76.84689,28.22148],[76.84606,28.21953],[76.83818,28.21995],[76.83121,28.20917],[76.81279,28.209],[76.8084,28.21086],[76.8048,28.20454],[76.80478,28.1973],[76.81303,28.19328],[76.81225,28.19091],[76.80916,28.18704],[76.80622,28.18654],[76.80123,28.18774],[76.80036,28.19249],[76.79752,28.19181],[76.79249,28.18419],[76.79573,28.18042],[76.79502,28.16939],[76.79743,28.16844],[76.79606,28.16693],[76.80029,28.16446],[76.80063,28.16234],[76.79481,28.14838],[76.78381,28.15091],[76.78206,28.14707],[76.77637,28.14411],[76.77148,28.14501],[76.76245,28.14264],[76.75313,28.13511],[76.74356,28.12103],[76.71576,28.12774],[76.71206,28.12545],[76.70302,28.1076],[76.69819,28.11198],[76.685,28.09158],[76.688,28.09023],[76.68736,28.08765],[76.66337,28.0912],[76.65716,28.08917],[76.65558,28.07574],[76.65165,28.06162],[76.65192,28.05633],[76.65559,28.05312],[76.65857,28.04692],[76.65865,28.04292],[76.65439,28.03468],[76.66302,28.02985],[76.66816,28.01383],[76.65774,28.00743],[76.64068,28.00232],[76.60619,28.00385],[76.60186,27.99952],[76.58989,27.99786],[76.58799,27.9933],[76.58374,27.99167],[76.58039,27.9789],[76.56442,27.9781],[76.56169,27.96613],[76.54814,27.96384],[76.54472,27.96367],[76.53809,27.9677],[76.53595,27.97952],[76.54109,27.98478],[76.54275,27.99948],[76.53639,28.0],[76.54072,28.00217],[76.54405,28.00742],[76.54546,28.00729],[76.54281,28.01777],[76.53927,28.0232],[76.54096,28.03005],[76.54382,28.03421],[76.53037,28.04024],[76.52041,28.03223],[76.51007,28.02966],[76.50257,28.03143],[76.49742,28.04331],[76.48227,28.04187],[76.48118,28.04059],[76.46482,28.04243],[76.46155,28.04053],[76.45467,28.04233],[76.45868,28.05326],[76.46254,28.05911],[76.46848,28.05715],[76.47238,28.05855],[76.47606,28.05721],[76.47625,28.05441],[76.48943,28.05278],[76.49686,28.05381],[76.50124,28.05969],[76.47891,28.07767],[76.4718,28.08024],[76.46765,28.07879],[76.44784,28.08896],[76.45204,28.09122],[76.45705,28.10529],[76.46369,28.10916],[76.47725,28.10797],[76.47667,28.10553],[76.48002,28.10052],[76.49905,28.1002],[76.50052,28.11457],[76.50268,28.11871],[76.49628,28.12007],[76.48708,28.11941],[76.49193,28.12985],[76.48341,28.13081],[76.48187,28.12837],[76.47638,28.13084],[76.47675,28.13205],[76.47205,28.13508],[76.47131,28.1385],[76.47557,28.14345],[76.47574,28.14858],[76.46634,28.15151],[76.46301,28.14811],[76.45995,28.14747],[76.4374,28.14871],[76.43262,28.14092],[76.40083,28.14502],[76.39568,28.13715],[76.39362,28.13749],[76.39041,28.13415],[76.38473,28.13671],[76.38173,28.13324],[76.36632,28.13681],[76.35657,28.14373],[76.35824,28.15492],[76.35418,28.1548],[76.35785,28.16106],[76.34525,28.1694],[76.33453,28.17236],[76.33318,28.16982],[76.30877,28.1789],[76.30739,28.17906],[76.30523,28.17588],[76.29227,28.17922],[76.28958,28.17027],[76.28243,28.17127],[76.28071,28.16553],[76.30143,28.16005],[76.30163,28.15857],[76.30456,28.15932],[76.30336,28.15483],[76.29787,28.15212],[76.29758,28.14912],[76.3111,28.14555],[76.31523,28.15037],[76.32097,28.14856],[76.3299,28.14275],[76.33182,28.13928],[76.33063,28.13704],[76.33348,28.13624],[76.33315,28.13356],[76.35986,28.12492],[76.35044,28.1142],[76.34646,28.11256],[76.33659,28.10261],[76.31864,28.10768],[76.30927,28.10819],[76.30144,28.09787],[76.31876,28.08881],[76.32323,28.09053],[76.32888,28.08768],[76.33422,28.07992],[76.33302,28.07684],[76.34394,28.07142],[76.34349,28.0702],[76.35567,28.07073],[76.35514,28.06811],[76.3566,28.06749],[76.34965,28.04588],[76.34236,28.03058],[76.32877,28.01878],[76.32298,28.02153],[76.32076,28.01598],[76.31895,28.01553],[76.31357,28.01708],[76.31321,28.0189],[76.29898,28.02271],[76.29216,28.02586],[76.29117,28.03457],[76.29356,28.0492],[76.28418,28.0515],[76.28385,28.05698],[76.26096,28.06753],[76.25552,28.06777],[76.24293,28.06436],[76.23804,28.04972],[76.23072,28.05114],[76.2281,28.0484],[76.22115,28.05022],[76.21934,28.04921],[76.20861,28.05227],[76.20959,28.05587],[76.20113,28.05842],[76.19918,28.05571],[76.1895,28.05645],[76.18879,28.05321],[76.1804,28.05452],[76.17794,28.0456],[76.18878,28.03661],[76.18954,28.03445],[76.19604,28.03039],[76.20181,28.02935],[76.20372,28.03775],[76.2167,28.03548],[76.2148,28.02658],[76.20334,28.02803],[76.19687,28.01548],[76.18539,28.02029],[76.17689,28.02155],[76.16955,28.00742],[76.16138,28.0002],[76.15778,27.98898],[76.15756,27.98721],[76.16693,27.98299],[76.16597,27.97691],[76.16345,27.97342],[76.18664,27.96548],[76.18401,27.96181],[76.18245,27.96201],[76.18066,27.95713],[76.17993,27.95287],[76.18241,27.95193],[76.17705,27.92973],[76.17395,27.92982],[76.16868,27.91528],[76.16821,27.90338],[76.18609,27.89899],[76.20146,27.89254],[76.20209,27.88732],[76.20028,27.87824],[76.19437,27.87738],[76.19381,27.85951],[76.21216,27.84644],[76.20885,27.84001],[76.22518,27.83326],[76.21733,27.81681],[76.20934,27.81634],[76.20754,27.81704],[76.20779,27.81866],[76.1996,27.82156],[76.19226,27.80926],[76.18265,27.79862],[76.17496,27.79807],[76.17214,27.79965],[76.17215,27.80515],[76.16937,27.80795],[76.16053,27.81394],[76.15308,27.81537],[76.15364,27.81975],[76.13227,27.82448],[76.1354,27.83929],[76.12779,27.84372],[76.12333,27.85102],[76.1156,27.85207],[76.11441,27.85088],[76.10587,27.8561],[76.09809,27.85686],[76.08888,27.86054],[76.0862,27.8559],[76.08567,27.84471],[76.07929,27.84575],[76.07489,27.84382],[76.06064,27.84828],[76.04808,27.83498],[76.04087,27.84128],[76.04023,27.83894],[76.03625,27.8374],[76.03022,27.84005],[76.02729,27.83852],[76.00955,27.84152],[76.00646,27.83908],[76.00464,27.83445],[75.99857,27.83821],[75.98703,27.84167],[75.97137,27.85197],[75.97249,27.8606],[75.97936,27.86545],[75.97763,27.87379],[75.98442,27.88259],[75.97531,27.89366],[75.97925,27.89555],[75.98749,27.90416],[75.97317,27.90209],[75.9748,27.91179],[75.96807,27.91437],[75.93828,27.91408],[75.93707,27.91777],[75.93447,27.91863],[75.93697,27.92187],[75.93939,27.92109],[75.93963,27.92279],[75.93236,27.93014],[75.93907,27.9406],[75.95168,27.94773],[75.95795,27.93804],[75.95791,27.93591],[75.96603,27.93498],[75.96816,27.93193],[75.97272,27.93267],[75.98305,27.95098],[75.97783,27.95438],[75.98196,27.96533],[75.98864,27.96821],[75.99456,27.97541],[75.99817,27.97529],[75.99994,27.97758],[75.98989,27.98233],[75.98594,27.97862],[75.96878,27.98094],[75.9658,27.98361],[75.965,27.99632],[75.96672,28.00003],[75.97761,28.0002],[75.98689,27.99759],[75.98993,27.99469],[75.99554,28.00689],[75.99521,28.00879],[75.97112,28.01608],[75.97273,28.02364],[75.97695,28.03137],[75.98348,28.03139],[75.98906,28.03361],[75.98967,28.03582],[75.99352,28.0352],[75.99462,28.03852],[75.99601,28.03828],[75.99774,28.033],[76.01639,28.03051],[76.01867,28.04201],[76.01713,28.0527],[76.00776,28.05571],[76.00828,28.05839],[76.02536,28.05424],[76.02959,28.06144],[76.03371,28.06334],[76.03882,28.06933],[76.0408,28.07406],[76.03727,28.07598],[76.03874,28.07822],[76.03537,28.08052],[76.02324,28.08599],[76.01682,28.07466],[76.00988,28.06763],[76.00766,28.05893],[75.99882,28.05714],[75.99473,28.0522],[75.99287,28.04633],[75.98441,28.04709],[75.97484,28.05099],[75.9793,28.05793],[75.98265,28.05741],[75.98833,28.0663],[75.98869,28.069],[75.98289,28.07665],[75.98343,28.08135],[75.97228,28.08327],[75.96463,28.08047],[75.94986,28.08612],[75.9386,28.08794],[75.94556,28.10716],[75.9617,28.11479],[75.96739,28.11382],[75.97667,28.12475],[75.98819,28.12504],[75.99899,28.12277],[76.00435,28.13199],[76.00061,28.13321],[76.00302,28.14318],[76.00453,28.14426],[76.00405,28.14772],[76.00749,28.15315],[76.01685,28.15009],[76.02612,28.16465],[76.03001,28.16409],[76.03179,28.16786],[76.04225,28.16548],[76.06025,28.16691],[76.07069,28.16515],[76.06966,28.15578],[76.06537,28.14153],[76.0747,28.13714],[76.08441,28.13693],[76.08788,28.13998],[76.09294,28.14003],[76.095,28.14141],[76.09545,28.15086],[76.07618,28.16855],[76.07634,28.17334],[76.07399,28.17359],[76.07437,28.19013],[76.07212,28.19018],[76.07192,28.19434],[76.05149,28.19629],[76.05094,28.19807],[76.04734,28.19814],[76.04744,28.20278],[76.05241,28.20402],[76.05573,28.21261],[76.056,28.22028],[76.03783,28.22271],[76.03721,28.22575],[76.02777,28.23136],[76.02781,28.23265],[76.01611,28.23695],[76.01653,28.24119],[76.01318,28.24405],[76.01296,28.24604],[76.01609,28.25019],[76.01474,28.25016],[76.01508,28.25253],[76.02264,28.26735],[76.02261,28.27035],[76.02633,28.27503],[76.00299,28.28404],[75.98621,28.29312],[75.98178,28.29953],[75.97793,28.30187],[75.97805,28.30933],[75.97342,28.31491],[75.97246,28.31858],[75.95784,28.31383],[75.95679,28.32675],[75.95225,28.32921],[75.95231,28.33101],[75.95517,28.33113],[75.95502,28.33377],[75.94806,28.33417],[75.9385,28.33734],[75.93297,28.3366],[75.932,28.3429],[75.92854,28.34312],[75.93009,28.34901],[75.92955,28.35914],[75.92738,28.3598],[75.92713,28.3629],[75.92355,28.36335],[75.92238,28.36642],[75.91669,28.36739],[75.91824,28.372],[75.90853,28.37092],[75.9084,28.37258],[75.90483,28.37327],[75.90064,28.37178],[75.90021,28.37806],[75.89844,28.38033],[75.8993,28.38396],[75.89761,28.38382],[75.89518,28.38762],[75.89637,28.39007],[75.89308,28.38969],[75.8904,28.38308],[75.87555,28.38723],[75.86395,28.38522],[75.86401,28.389],[75.85475,28.38982],[75.85407,28.39174],[75.845,28.39168],[75.84428,28.39461],[75.83953,28.39437],[75.83745,28.39737],[75.83741,28.40209],[75.83285,28.40535],[75.82216,28.40298],[75.82286,28.40562],[75.81985,28.40686],[75.81867,28.40991],[75.81535,28.40964],[75.81544,28.40762],[75.80982,28.40583],[75.80602,28.40585],[75.80694,28.40913],[75.79957,28.40715],[75.79948,28.40377],[75.79457,28.39961],[75.7886,28.4012],[75.78857,28.40415],[75.77679,28.40037],[75.77632,28.40418],[75.77204,28.4074],[75.77003,28.41264],[75.76672,28.41423],[75.76971,28.42277],[75.77663,28.42472],[75.77977,28.42751],[75.78083,28.43289],[75.78852,28.43356],[75.79213,28.44459],[75.78829,28.45355],[75.78386,28.45334],[75.78349,28.45537],[75.78055,28.45689],[75.76698,28.4613],[75.73567,28.46884],[75.73568,28.47594],[75.73843,28.47746],[75.73947,28.48476],[75.73124,28.486],[75.72902,28.4907],[75.72556,28.4895],[75.71859,28.49023],[75.70795,28.49371],[75.70198,28.49177],[75.69926,28.4954],[75.69022,28.50053],[75.68419,28.51097],[75.6774,28.51526],[75.67093,28.51712],[75.671,28.52534],[75.66845,28.53306],[75.6658,28.53599],[75.65372,28.53654],[75.64524,28.53937],[75.63948,28.54416],[75.63348,28.54444],[75.6317,28.5539],[75.62572,28.5658],[75.62575,28.57569],[75.62322,28.58901],[75.62406,28.59564],[75.62171,28.60207],[75.5911,28.60558],[75.58769,28.60799],[75.58627,28.61319],[75.56152,28.61321],[75.56073,28.63592],[75.55486,28.64384],[75.5498,28.64104],[75.54425,28.65415],[75.54509,28.65943],[75.54121,28.66049],[75.54502,28.6831],[75.53891,28.69478],[75.53993,28.69672],[75.53745,28.71801],[75.53991,28.72134],[75.54002,28.72448],[75.53046,28.73825],[75.5361,28.74517],[75.52914,28.74864],[75.52863,28.75217],[75.52389,28.75716],[75.52404,28.76098],[75.52212,28.76101],[75.52313,28.76364],[75.52147,28.76337],[75.52301,28.76608],[75.52206,28.7679],[75.51655,28.77038],[75.51796,28.77308],[75.51697,28.77468],[75.51405,28.77318],[75.51067,28.7811],[75.50854,28.78043],[75.50326,28.78253],[75.50466,28.78769],[75.50796,28.78873],[75.50609,28.79236],[75.50845,28.79131],[75.51127,28.79364],[75.51068,28.79567],[75.50868,28.79564],[75.50891,28.80272],[75.51182,28.80414],[75.51625,28.81242],[75.51937,28.81274],[75.51855,28.81706],[75.52011,28.82218],[75.519,28.82627],[75.52025,28.83399],[75.51555,28.83423],[75.51532,28.83983],[75.51074,28.83828],[75.50783,28.83922],[75.50767,28.84281],[75.50506,28.84435],[75.50529,28.85127],[75.50202,28.85093],[75.5,28.84728],[75.49847,28.84896],[75.49697,28.85697],[75.49861,28.87044],[75.4966,28.89616],[75.49425,28.89739],[75.49295,28.90114],[75.48981,28.90105],[75.48757,28.90317],[75.48633,28.9066],[75.48728,28.90795],[75.48398,28.90753],[75.48492,28.90865],[75.4734,28.92338],[75.47722,28.9347],[75.48382,28.9334],[75.48422,28.93465],[75.49073,28.93441],[75.49333,28.93627],[75.49413,28.93467],[75.50084,28.93393],[75.50047,28.93593],[75.50569,28.93591],[75.50874,28.94224],[75.51156,28.94206],[75.51187,28.94369],[75.50835,28.94831],[75.51046,28.95046],[75.51003,28.95388],[75.51273,28.95528],[75.51214,28.95692],[75.51475,28.96073],[75.52116,28.96287],[75.52436,28.9695],[75.52742,28.971],[75.52685,28.98532],[75.52337,28.99102],[75.52077,29.0],[75.52039,29.00365],[75.522,29.00375],[75.51558,29.00826],[75.50515,29.01179],[75.48481,29.01213],[75.47261,29.01431],[75.4629,29.01247],[75.4586,29.0142],[75.44572,29.00832],[75.44569,29.01797],[75.44295,29.02092],[75.44295,29.02309],[75.44495,29.02438],[75.44632,29.03],[75.44787,29.03044],[75.44713,29.03516],[75.45045,29.03539],[75.45193,29.03917],[75.44672,29.04554],[75.44622,29.04857],[75.4432,29.04804],[75.44217,29.05096],[75.44386,29.05223],[75.44182,29.05754],[75.43145,29.05631],[75.4106,29.06223],[75.39126,29.06273],[75.39469,29.07596],[75.39421,29.07824],[75.3927,29.07845],[75.39262,29.08477],[75.39099,29.08538],[75.39285,29.09285],[75.39574,29.09321],[75.39693,29.09758],[75.3938,29.0982],[75.39211,29.10199],[75.39387,29.11007],[75.40578,29.1198],[75.40216,29.1279],[75.38439,29.12947],[75.3715,29.1381],[75.37117,29.14157],[75.37874,29.14223],[75.3797,29.1508],[75.38137,29.15278],[75.38125,29.16895],[75.39526,29.16775],[75.40677,29.16975],[75.40588,29.17289],[75.40945,29.18021],[75.4127,29.18159],[75.41438,29.18431],[75.41294,29.18772],[75.41407,29.18939],[75.41179,29.19114],[75.41132,29.19392],[75.41228,29.19682],[75.41102,29.20746],[75.40737,29.21107],[75.40858,29.21331],[75.40293,29.21324],[75.39682,29.21754],[75.39801,29.22349],[75.4023,29.22243],[75.40208,29.2271],[75.40498,29.22818],[75.40526,29.23151],[75.40878,29.23506],[75.40776,29.236],[75.40868,29.24189],[75.41199,29.24275],[75.4107,29.25548],[75.40719,29.2583],[75.40607,29.25701],[75.40547,29.26054],[75.39266,29.26135],[75.38861,29.26124],[75.38518,29.25802],[75.37802,29.25683],[75.37729,29.25471],[75.3753,29.25535],[75.36235,29.24443],[75.36085,29.23944],[75.36129,29.22941],[75.35998,29.2272],[75.35589,29.22301],[75.34984,29.22377],[75.34269,29.22929],[75.32963,29.23265],[75.32812,29.23531],[75.33389,29.24116],[75.33431,29.24415],[75.33585,29.24427],[75.33565,29.24796],[75.33874,29.25197],[75.3396,29.25686],[75.33843,29.25886],[75.33963,29.25977],[75.33846,29.26347],[75.33991,29.26346],[75.34004,29.26634],[75.33865,29.27345],[75.34032,29.27347],[75.34061,29.28113],[75.33504,29.28688],[75.32205,29.28949],[75.31618,29.28178],[75.30579,29.2746],[75.29742,29.27182],[75.28741,29.27332],[75.28497,29.26909],[75.28377,29.24979],[75.2557,29.25181],[75.24469,29.25],[75.24215,29.24409],[75.24207,29.23641],[75.23839,29.23024],[75.21803,29.23187],[75.21014,29.23465],[75.19851,29.25326],[75.19573,29.26331],[75.18801,29.26819],[75.18367,29.26689],[75.18138,29.26366],[75.17623,29.26319],[75.16864,29.25875],[75.17439,29.25125],[75.16283,29.24402],[75.13784,29.23873],[75.12439,29.23987],[75.11961,29.22287],[75.07554,29.22969],[75.07287,29.23783],[75.07419,29.24327],[75.07321,29.24783],[75.06124,29.26397],[75.06041,29.27601],[75.05,29.28608],[75.03482,29.2876],[75.01988,29.2862],[74.99923,29.27031],[74.98326,29.28057],[74.971,29.27908],[74.96117,29.28058],[74.95581,29.28615],[74.94841,29.30147],[74.95534,29.3091],[74.9609,29.32025],[74.95807,29.32818],[74.95453,29.33272],[74.93989,29.34002],[74.93828,29.36203],[74.9168,29.3713],[74.90031,29.38476],[74.87766,29.38354],[74.8714,29.39487],[74.85058,29.40359],[74.84966,29.40153],[74.84482,29.39968],[74.82038,29.39721],[74.78755,29.36143],[74.78189,29.35791],[74.77002,29.35691],[74.7622,29.35438],[74.73921,29.35414],[74.71952,29.37001],[74.70808,29.36676],[74.69097,29.36592],[74.67979,29.36926],[74.65823,29.37197],[74.65209,29.35129],[74.65451,29.33294],[74.63438,29.32961],[74.59929,29.32746],[74.60734,29.35623],[74.60291,29.36491],[74.58973,29.37664],[74.58525,29.37852],[74.57789,29.3885],[74.57392,29.39994],[74.57366,29.40648],[74.56641,29.42048],[74.54926,29.42473],[74.53662,29.42455],[74.53458,29.43526],[74.53644,29.44321],[74.53466,29.44772],[74.53678,29.45956],[74.54377,29.46797],[74.57323,29.4651],[74.58466,29.45849],[74.58639,29.46505],[74.59588,29.4804],[74.59539,29.48916],[74.59973,29.49398],[74.60101,29.50106],[74.6046,29.50318],[74.60977,29.51168],[74.62189,29.52225],[74.62309,29.53105],[74.61903,29.53258],[74.61483,29.53116],[74.61428,29.53533],[74.61185,29.5385],[74.6077,29.53887],[74.6023,29.54392],[74.59519,29.54498],[74.58991,29.54791],[74.57592,29.56011],[74.57497,29.56432],[74.57698,29.5718],[74.57762,29.60001],[74.58032,29.61712],[74.58276,29.62329],[74.58156,29.62716],[74.5893,29.63181],[74.59138,29.63954],[74.58654,29.64734],[74.58548,29.65447],[74.59315,29.67676],[74.60121,29.69039],[74.60018,29.69905],[74.60475,29.7049],[74.60982,29.72176],[74.60815,29.7319],[74.60954,29.74323],[74.61594,29.75227],[74.60334,29.75791],[74.601,29.7659],[74.59634,29.7674],[74.58749,29.76691],[74.5814,29.75251],[74.57879,29.75223],[74.5793,29.74903],[74.5775,29.74784],[74.57482,29.74879],[74.57731,29.75414],[74.55242,29.75567],[74.54614,29.75445],[74.53399,29.7404],[74.50671,29.74231],[74.47787,29.74681],[74.47362,29.76721],[74.47354,29.78632],[74.48352,29.8136],[74.50797,29.83329],[74.53356,29.83882],[74.54419,29.84439],[74.55138,29.85276],[74.56112,29.87004],[74.55116,29.88271],[74.54383,29.90168],[74.52187,29.90254],[74.50979,29.90842],[74.51553,29.91592],[74.5186,29.92958],[74.52716,29.94294],[74.49624,29.94455]],[[76.43453,28.10908],[76.43047,28.10974],[76.42285,28.11432],[76.42374,28.12081],[76.42181,28.12252],[76.42928,28.13851],[76.4336,28.13641],[76.43326,28.13034],[76.43571,28.12929],[76.44104,28.11988],[76.43964,28.11012],[76.43453,28.10908]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"9","area_level":"State","area_name":"Uttar Pradesh","geometry_source":"SOI_States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.36506,25.14453],[79.36233,25.14386],[79.36031,25.14426],[79.3582,25.14329],[79.35832,25.14126],[79.35414,25.13021],[79.35303,25.12835],[79.35052,25.12636],[79.35117,25.12579],[79.35304,25.12624],[79.35506,25.12446],[79.35365,25.12303],[79.35257,25.12298],[79.35215,25.11987],[79.35023,25.11896],[79.35037,25.1181],[79.35106,25.11598],[79.35255,25.11548],[79.35521,25.11257],[79.35639,25.10939],[79.36193,25.10623],[79.36899,25.10449],[79.37394,25.10407],[79.37969,25.10122],[79.37946,25.09897],[79.37251,25.09199],[79.37377,25.09177],[79.37757,25.08692],[79.37957,25.08561],[79.37789,25.08308],[79.37667,25.07563],[79.37749,25.07542],[79.37466,25.06773],[79.37983,25.06695],[79.37936,25.06577],[79.37981,25.06479],[79.37102,25.06293],[79.37008,25.06227],[79.36982,25.0598],[79.36908,25.05908],[79.36534,25.05903],[79.36347,25.05985],[79.36002,25.06325],[79.3591,25.06608],[79.3574,25.06827],[79.35419,25.068],[79.35113,25.06888],[79.3492,25.0625],[79.35806,25.05935],[79.35843,25.05851],[79.35604,25.05767],[79.35622,25.05643],[79.35977,25.05345],[79.35611,25.04047],[79.3598,25.03928],[79.36418,25.04098],[79.36748,25.04607],[79.36202,25.0482],[79.36403,25.05038],[79.36773,25.05195],[79.3678,25.05437],[79.36904,25.05432],[79.37533,25.05075],[79.37392,25.04817],[79.37402,25.04482],[79.37726,25.0452],[79.37843,25.04318],[79.38141,25.04182],[79.38333,25.04275],[79.38429,25.04236],[79.3847,25.04092],[79.38414,25.03854],[79.3942,25.03574],[79.39527,25.03477],[79.39496,25.03212],[79.39767,25.03284],[79.3998,25.03442],[79.40126,25.03437],[79.40181,25.03513],[79.40409,25.03376],[79.40604,25.03389],[79.40706,25.03507],[79.4096,25.03386],[79.41091,25.03528],[79.41305,25.03527],[79.41394,25.03817],[79.41695,25.03777],[79.41638,25.04107],[79.42024,25.0406],[79.42204,25.04157],[79.42252,25.04397],[79.42386,25.045],[79.42466,25.053],[79.42245,25.05485],[79.42591,25.05859],[79.41938,25.06173],[79.41848,25.06077],[79.41259,25.06384],[79.40984,25.06375],[79.40739,25.06478],[79.4072,25.06595],[79.40596,25.06672],[79.40676,25.0671],[79.40469,25.0683],[79.40485,25.07358],[79.40555,25.07411],[79.40593,25.07678],[79.40488,25.07703],[79.40578,25.07744],[79.40503,25.07853],[79.40416,25.07794],[79.40237,25.07869],[79.39821,25.0831],[79.39432,25.08317],[79.38719,25.0857],[79.38896,25.08845],[79.38936,25.09177],[79.38677,25.09938],[79.38686,25.1021],[79.38037,25.1076],[79.38041,25.11142],[79.38261,25.11273],[79.38139,25.1154],[79.38247,25.11723],[79.38113,25.11986],[79.3809,25.12243],[79.37975,25.12232],[79.3777,25.12518],[79.37524,25.12509],[79.3742,25.12356],[79.37254,25.12427],[79.37132,25.12345],[79.36382,25.12565],[79.3642,25.12763],[79.37064,25.13605],[79.3742,25.1426],[79.37279,25.14334],[79.37105,25.14303],[79.36875,25.14423],[79.36741,25.14388],[79.36506,25.14453]]],[[[79.36626,25.17158],[79.37104,25.17779],[79.37256,25.18002],[79.37227,25.18066],[79.37132,25.18133],[79.37048,25.18171],[79.36731,25.18446],[79.36608,25.18508],[79.36542,25.18525],[79.36405,25.18625],[79.36345,25.18687],[79.35952,25.18855],[79.35936,25.18839],[79.35942,25.18726],[79.35902,25.18533],[79.35853,25.18411],[79.35516,25.17948],[79.35455,25.17733],[79.35447,25.17589],[79.35679,25.17404],[79.36074,25.17173],[79.36146,25.1711],[79.36425,25.17102],[79.36538,25.17111],[79.36626,25.17158]]],[[[77.6017,30.3997],[77.59963,30.40104],[77.59831,30.40488],[77.59043,30.40628],[77.58546,30.40492],[77.58193,30.40134],[77.58255,30.39987],[77.57604,30.39739],[77.5847,30.38529],[77.58563,30.37947],[77.58733,30.37877],[77.58669,30.37693],[77.60459,30.36739],[77.60185,30.36145],[77.59249,30.35479],[77.5909,30.34782],[77.58853,30.34571],[77.5862,30.33942],[77.57798,30.33078],[77.57856,30.32525],[77.58609,30.31541],[77.58629,30.3127],[77.58185,30.30632],[77.56852,30.29898],[77.54658,30.28147],[77.53825,30.27796],[77.53024,30.25048],[77.52049,30.24466],[77.50462,30.2252],[77.49483,30.20401],[77.48675,30.19535],[77.48053,30.18422],[77.4754,30.17912],[77.47183,30.18189],[77.45694,30.16234],[77.44956,30.16578],[77.44071,30.16498],[77.43643,30.16047],[77.43504,30.1608],[77.43481,30.16399],[77.42976,30.16398],[77.42569,30.15812],[77.42753,30.1557],[77.42219,30.14868],[77.4227,30.14011],[77.41978,30.13524],[77.42505,30.13145],[77.42189,30.12859],[77.41349,30.11294],[77.41227,30.11433],[77.40559,30.11389],[77.40316,30.11175],[77.41023,30.10473],[77.41694,30.10544],[77.42386,30.10321],[77.4062,30.08825],[77.39148,30.08988],[77.38851,30.08688],[77.38239,30.09159],[77.37745,30.09002],[77.36845,30.0836],[77.36264,30.07638],[77.34522,30.06932],[77.3343,30.05374],[77.32846,30.05333],[77.3189,30.0565],[77.30298,30.0553],[77.3002,30.05248],[77.29693,30.05332],[77.28494,30.0424],[77.27778,30.04181],[77.27637,30.03755],[77.28227,30.02941],[77.27956,30.02078],[77.27926,30.01216],[77.27556,30.00634],[77.27766,30.00024],[77.26153,29.98288],[77.24698,29.97659],[77.24687,29.96832],[77.24401,29.95979],[77.23693,29.95474],[77.23631,29.9509],[77.22595,29.93435],[77.22105,29.93288],[77.21748,29.92342],[77.21119,29.91866],[77.20402,29.91808],[77.19936,29.91423],[77.19047,29.9135],[77.18797,29.91136],[77.18576,29.90753],[77.18631,29.89813],[77.19086,29.89202],[77.20013,29.88949],[77.20203,29.8689],[77.20135,29.86419],[77.19911,29.86287],[77.19734,29.85874],[77.19314,29.85675],[77.18946,29.85847],[77.18694,29.85783],[77.18323,29.85453],[77.17825,29.8458],[77.1794,29.81308],[77.17249,29.80776],[77.17367,29.80505],[77.1726,29.80164],[77.16429,29.79172],[77.15878,29.79231],[77.15137,29.7882],[77.14745,29.77884],[77.14662,29.77183],[77.13891,29.76962],[77.12531,29.7695],[77.12221,29.76708],[77.11981,29.76008],[77.11998,29.7554],[77.12246,29.75124],[77.12719,29.7473],[77.1355,29.74408],[77.13685,29.73962],[77.13906,29.73821],[77.13907,29.73227],[77.13361,29.72847],[77.13289,29.72239],[77.13423,29.71843],[77.13779,29.71755],[77.13975,29.7147],[77.14501,29.71366],[77.14574,29.71097],[77.14953,29.70949],[77.14941,29.7057],[77.1556,29.6993],[77.15483,29.69591],[77.15655,29.69258],[77.15111,29.69045],[77.14734,29.68322],[77.14245,29.68045],[77.14339,29.6749],[77.14655,29.67223],[77.14257,29.66835],[77.13806,29.66663],[77.14101,29.65497],[77.13716,29.64942],[77.1324,29.64725],[77.13152,29.64184],[77.1188,29.63551],[77.11478,29.63828],[77.1062,29.63233],[77.1047,29.62312],[77.10169,29.62152],[77.10158,29.61983],[77.10378,29.61405],[77.10862,29.61344],[77.11302,29.61063],[77.10863,29.60091],[77.10953,29.59743],[77.10202,29.59413],[77.09515,29.59539],[77.08813,29.59406],[77.08503,29.59218],[77.08395,29.58904],[77.08546,29.5848],[77.09579,29.58245],[77.09923,29.57914],[77.09971,29.57657],[77.10501,29.5722],[77.12098,29.56647],[77.12079,29.56372],[77.12684,29.55945],[77.12626,29.55618],[77.12191,29.55201],[77.10835,29.54783],[77.10358,29.53902],[77.10218,29.53882],[77.10248,29.53234],[77.09754,29.52735],[77.09637,29.51949],[77.10122,29.51491],[77.10356,29.50726],[77.11301,29.5066],[77.12118,29.49821],[77.1215,29.49536],[77.12924,29.49027],[77.13331,29.48306],[77.13072,29.47591],[77.12268,29.46889],[77.12321,29.45537],[77.13393,29.44751],[77.14452,29.44531],[77.14842,29.43408],[77.14436,29.42653],[77.13312,29.41877],[77.13184,29.41298],[77.13425,29.40477],[77.13325,29.40084],[77.13569,29.39971],[77.13666,29.39677],[77.1426,29.39073],[77.14737,29.38785],[77.1509,29.38716],[77.15103,29.38994],[77.15347,29.39067],[77.15741,29.38731],[77.14257,29.37747],[77.12703,29.37576],[77.1233,29.37034],[77.12345,29.36724],[77.12896,29.35703],[77.12445,29.35143],[77.12953,29.34258],[77.13528,29.3399],[77.15174,29.34111],[77.15976,29.33678],[77.16115,29.33236],[77.15653,29.32279],[77.15664,29.31868],[77.16031,29.31581],[77.16055,29.3134],[77.15828,29.30288],[77.15066,29.29471],[77.14948,29.2881],[77.14502,29.2833],[77.14386,29.27663],[77.13895,29.26784],[77.13995,29.26139],[77.14539,29.25756],[77.14978,29.25],[77.14875,29.23961],[77.15,29.23276],[77.14785,29.2304],[77.13349,29.22347],[77.13141,29.21749],[77.13433,29.21001],[77.1422,29.20408],[77.14329,29.19434],[77.14018,29.19213],[77.14376,29.18313],[77.14716,29.18051],[77.14356,29.16931],[77.1429,29.15623],[77.13621,29.14952],[77.13596,29.14196],[77.14745,29.13352],[77.14908,29.11765],[77.14608,29.11052],[77.13896,29.10801],[77.13408,29.09515],[77.14346,29.08267],[77.14676,29.08055],[77.15669,29.07922],[77.16226,29.0809],[77.16376,29.07943],[77.16804,29.05455],[77.17214,29.04648],[77.16994,29.03974],[77.1669,29.03737],[77.16697,29.03382],[77.17776,29.02964],[77.18511,29.03149],[77.18912,29.02767],[77.18903,29.02355],[77.1931,29.01316],[77.19075,29.00939],[77.19096,29.00592],[77.19766,28.99218],[77.19909,28.99203],[77.19797,28.99026],[77.20188,28.98848],[77.20274,28.98526],[77.20113,28.97279],[77.19533,28.96692],[77.19298,28.95891],[77.19719,28.94654],[77.19562,28.94145],[77.19645,28.93821],[77.20141,28.93392],[77.21035,28.93421],[77.22198,28.92816],[77.22489,28.92305],[77.23084,28.92108],[77.2345,28.9108],[77.23288,28.89889],[77.2275,28.89332],[77.22844,28.88221],[77.22667,28.88009],[77.22056,28.87879],[77.21541,28.88474],[77.20599,28.88833],[77.19546,28.88621],[77.18868,28.88008],[77.19196,28.87502],[77.18939,28.86928],[77.19045,28.86651],[77.20819,28.86184],[77.20991,28.85772],[77.21587,28.85407],[77.21732,28.85133],[77.21665,28.84151],[77.223,28.83338],[77.22439,28.82532],[77.22026,28.81914],[77.21896,28.80824],[77.2013,28.81294],[77.19928,28.7977],[77.20421,28.79063],[77.21334,28.78552],[77.22854,28.78653],[77.23415,28.78372],[77.22187,28.77739],[77.23145,28.77441],[77.23179,28.77079],[77.23588,28.77073],[77.23556,28.76092],[77.24878,28.75528],[77.25637,28.7562],[77.25918,28.75],[77.2562,28.74388],[77.25456,28.74356],[77.25519,28.73974],[77.26082,28.73416],[77.27291,28.73627],[77.27644,28.73545],[77.28628,28.72458],[77.29077,28.72238],[77.28883,28.71957],[77.28909,28.71682],[77.28624,28.71453],[77.28736,28.71027],[77.29152,28.70615],[77.29678,28.70444],[77.29904,28.70985],[77.30623,28.71326],[77.31773,28.71398],[77.32206,28.7121],[77.33108,28.7131],[77.32543,28.70888],[77.32445,28.7065],[77.32574,28.70285],[77.32327,28.69858],[77.3303,28.69039],[77.33292,28.68196],[77.3301,28.67822],[77.3236,28.67671],[77.32372,28.66896],[77.32076,28.66349],[77.31988,28.65109],[77.31627,28.64121],[77.3237,28.63432],[77.33063,28.63139],[77.34256,28.62197],[77.34147,28.61698],[77.34242,28.60888],[77.34168,28.60606],[77.33677,28.60181],[77.32836,28.60016],[77.32517,28.59805],[77.3134,28.59659],[77.31017,28.59046],[77.29838,28.58015],[77.30005,28.5758],[77.29709,28.56597],[77.30123,28.5627],[77.29997,28.55976],[77.30379,28.55243],[77.3209,28.5409],[77.32472,28.53492],[77.33017,28.53228],[77.33399,28.52541],[77.34737,28.52055],[77.34543,28.51322],[77.34761,28.51046],[77.34774,28.50419],[77.35163,28.50008],[77.35562,28.4992],[77.3581,28.50185],[77.36269,28.49883],[77.36777,28.50025],[77.37174,28.49844],[77.37006,28.4857],[77.37474,28.47648],[77.37835,28.47454],[77.37818,28.47252],[77.38047,28.47027],[77.38734,28.468],[77.39194,28.47203],[77.40578,28.46577],[77.40809,28.46717],[77.40006,28.45564],[77.41901,28.45223],[77.43343,28.45492],[77.43826,28.43868],[77.43597,28.43771],[77.43921,28.43504],[77.43552,28.43095],[77.44212,28.43083],[77.44126,28.42873],[77.45225,28.42688],[77.45161,28.42474],[77.4625,28.42436],[77.46115,28.41767],[77.46355,28.41515],[77.47763,28.41906],[77.48377,28.40809],[77.4813,28.40489],[77.48021,28.39873],[77.47567,28.39957],[77.47344,28.39697],[77.48281,28.38782],[77.49122,28.38515],[77.50279,28.36992],[77.50482,28.36999],[77.50005,28.36564],[77.5052,28.36264],[77.4963,28.34914],[77.49015,28.34345],[77.47818,28.33934],[77.47121,28.33482],[77.47318,28.33255],[77.47174,28.32811],[77.48195,28.32506],[77.48486,28.32569],[77.48571,28.32163],[77.50707,28.30569],[77.50294,28.28908],[77.4985,28.2856],[77.50173,28.28386],[77.50029,28.28152],[77.50343,28.28007],[77.49877,28.27841],[77.49467,28.27276],[77.49414,28.27483],[77.49079,28.27133],[77.49269,28.25198],[77.49915,28.24738],[77.49922,28.25],[77.50145,28.25244],[77.50955,28.24961],[77.50863,28.24655],[77.51325,28.24721],[77.51877,28.24253],[77.522,28.24227],[77.52471,28.24572],[77.53235,28.24495],[77.53742,28.24827],[77.54461,28.24873],[77.55042,28.24236],[77.54675,28.23799],[77.52583,28.229],[77.52128,28.22444],[77.52143,28.22021],[77.53289,28.21442],[77.53525,28.21026],[77.53466,28.20369],[77.53026,28.19861],[77.52403,28.19568],[77.52196,28.19659],[77.51748,28.20459],[77.50588,28.20952],[77.50206,28.20959],[77.49696,28.20535],[77.49962,28.19502],[77.49839,28.18453],[77.50119,28.18167],[77.50655,28.18168],[77.50853,28.18643],[77.51337,28.19183],[77.51748,28.19314],[77.53062,28.18586],[77.5376,28.19035],[77.54515,28.19088],[77.54795,28.18711],[77.54964,28.17975],[77.5459,28.17194],[77.53696,28.16563],[77.52228,28.1612],[77.51575,28.1634],[77.5112,28.16685],[77.5021,28.16118],[77.50049,28.1548],[77.50469,28.14973],[77.50424,28.14543],[77.50242,28.14322],[77.49219,28.13869],[77.49136,28.13654],[77.49377,28.13285],[77.50908,28.13021],[77.51236,28.12714],[77.51236,28.12484],[77.50938,28.11989],[77.5018,28.11477],[77.49847,28.10892],[77.4979,28.10446],[77.50054,28.09702],[77.49938,28.09461],[77.49218,28.0951],[77.49068,28.09716],[77.48981,28.10556],[77.48262,28.10719],[77.48182,28.09966],[77.47885,28.09545],[77.47873,28.09161],[77.47426,28.08744],[77.47825,28.08039],[77.49979,28.06331],[77.50124,28.05852],[77.4986,28.05225],[77.49306,28.04683],[77.48534,28.04464],[77.48364,28.04045],[77.48841,28.0367],[77.51276,28.03189],[77.51193,28.02775],[77.50821,28.02524],[77.50839,28.02277],[77.52133,28.01414],[77.52403,28.00674],[77.52425,28.0],[77.54243,27.98909],[77.5412,27.98182],[77.53777,27.97902],[77.52946,27.97607],[77.52119,27.97651],[77.51697,27.97115],[77.51872,27.96213],[77.54423,27.96221],[77.54608,27.95793],[77.54499,27.9533],[77.53695,27.93797],[77.53661,27.93398],[77.5293,27.92526],[77.52608,27.92538],[77.52583,27.92726],[77.51676,27.93306],[77.50749,27.92562],[77.50182,27.92522],[77.49732,27.92975],[77.49279,27.93833],[77.48474,27.93495],[77.47528,27.92925],[77.4759,27.92771],[77.4775,27.92828],[77.47568,27.92474],[77.47965,27.92166],[77.47709,27.91633],[77.48049,27.91503],[77.4788,27.90991],[77.4807,27.90789],[77.47921,27.9057],[77.47805,27.89851],[77.4795,27.89786],[77.47744,27.89051],[77.47217,27.88359],[77.45053,27.87103],[77.43936,27.87958],[77.43567,27.88517],[77.42829,27.89092],[77.42784,27.88984],[77.42013,27.89044],[77.41607,27.88379],[77.41039,27.87981],[77.40932,27.87417],[77.41282,27.86978],[77.41175,27.86639],[77.42233,27.85779],[77.42186,27.85438],[77.41043,27.85176],[77.39703,27.85335],[77.38998,27.85731],[77.37702,27.85886],[77.37704,27.85707],[77.36525,27.85379],[77.36089,27.85077],[77.34833,27.85555],[77.33516,27.84742],[77.33516,27.842],[77.33199,27.83746],[77.33293,27.83497],[77.33643,27.83423],[77.33118,27.83105],[77.3207,27.82534],[77.3125,27.82799],[77.31081,27.82577],[77.30648,27.82752],[77.30356,27.82553],[77.29648,27.82522],[77.29857,27.81519],[77.28946,27.80977],[77.28294,27.79979],[77.28666,27.79592],[77.29542,27.79674],[77.30082,27.7954],[77.30581,27.79105],[77.30447,27.79007],[77.30596,27.78846],[77.30883,27.7869],[77.31044,27.78808],[77.30868,27.78447],[77.31048,27.78288],[77.3105,27.7772],[77.31275,27.77396],[77.31045,27.77242],[77.30784,27.76643],[77.3093,27.75944],[77.3117,27.75804],[77.30797,27.75281],[77.31096,27.74687],[77.31414,27.74464],[77.31217,27.74194],[77.31852,27.73811],[77.31938,27.73349],[77.30299,27.72591],[77.30384,27.71109],[77.3097,27.70663],[77.31175,27.70869],[77.3221,27.70662],[77.32929,27.7076],[77.33023,27.70906],[77.34115,27.70337],[77.33846,27.69841],[77.3414,27.69508],[77.34082,27.68635],[77.34455,27.6812],[77.34096,27.67676],[77.34568,27.67343],[77.34478,27.66092],[77.35258,27.65124],[77.34619,27.6395],[77.32721,27.6204],[77.31878,27.6108],[77.31706,27.60675],[77.33453,27.5913],[77.34411,27.59708],[77.35326,27.59326],[77.35822,27.58896],[77.35018,27.58344],[77.35144,27.58122],[77.34724,27.57773],[77.34722,27.57473],[77.34526,27.57237],[77.33959,27.57261],[77.33727,27.56976],[77.33838,27.56907],[77.33681,27.56668],[77.33625,27.55767],[77.33808,27.54974],[77.34916,27.54315],[77.34598,27.53874],[77.34006,27.53889],[77.33869,27.53134],[77.33999,27.52662],[77.35735,27.51657],[77.3679,27.51547],[77.37403,27.51186],[77.38284,27.51569],[77.38739,27.51289],[77.39165,27.50814],[77.39057,27.5047],[77.39898,27.50019],[77.401,27.49727],[77.3988,27.48283],[77.39894,27.47945],[77.40155,27.4765],[77.41576,27.47264],[77.41907,27.46996],[77.42223,27.46125],[77.4257,27.46689],[77.42709,27.46417],[77.42609,27.46294],[77.43367,27.46],[77.43781,27.45632],[77.43662,27.45331],[77.43866,27.44905],[77.4362,27.44646],[77.43264,27.44713],[77.42934,27.44455],[77.42666,27.44511],[77.42584,27.43631],[77.4211,27.42202],[77.43222,27.41539],[77.43806,27.40895],[77.43953,27.39072],[77.47025,27.38348],[77.4727,27.37708],[77.48462,27.38353],[77.50719,27.37709],[77.50953,27.37405],[77.50844,27.37182],[77.50991,27.36981],[77.51326,27.37011],[77.51585,27.36793],[77.5161,27.36252],[77.51969,27.36118],[77.52257,27.35725],[77.52993,27.35268],[77.52952,27.35166],[77.53957,27.34795],[77.54556,27.34957],[77.54794,27.33689],[77.57705,27.32794],[77.57727,27.32358],[77.57878,27.32266],[77.58379,27.3213],[77.59117,27.33046],[77.59965,27.33217],[77.6013,27.33429],[77.60453,27.33205],[77.61254,27.33192],[77.61199,27.33623],[77.6147,27.33658],[77.61636,27.34043],[77.62271,27.33619],[77.62081,27.3264],[77.62231,27.3207],[77.6219,27.31305],[77.61873,27.31227],[77.61449,27.30717],[77.61016,27.30614],[77.60801,27.30057],[77.60052,27.30073],[77.59867,27.2972],[77.60571,27.29055],[77.60629,27.2921],[77.6118,27.29078],[77.61683,27.28645],[77.6147,27.27892],[77.62178,27.27505],[77.61821,27.26966],[77.6171,27.27086],[77.61319,27.26582],[77.61602,27.26171],[77.61643,27.2578],[77.62116,27.25519],[77.62731,27.2595],[77.63318,27.25813],[77.63737,27.25098],[77.64301,27.24789],[77.64554,27.24328],[77.64294,27.2349],[77.65282,27.23484],[77.65255,27.22609],[77.64832,27.22353],[77.64506,27.21688],[77.64671,27.21022],[77.65029,27.20807],[77.66354,27.20728],[77.66564,27.20901],[77.67553,27.19807],[77.68113,27.1944],[77.67301,27.18196],[77.6584,27.17011],[77.649,27.17032],[77.64412,27.16555],[77.63787,27.16384],[77.63434,27.16788],[77.61996,27.17355],[77.61826,27.16886],[77.61005,27.16286],[77.61057,27.15581],[77.61217,27.15284],[77.61415,27.15249],[77.61369,27.1506],[77.60555,27.14356],[77.60032,27.1423],[77.59897,27.14345],[77.59754,27.1389],[77.59897,27.13455],[77.60282,27.13276],[77.60299,27.12455],[77.60446,27.12425],[77.59785,27.118],[77.59266,27.12023],[77.58811,27.11652],[77.58123,27.11924],[77.56248,27.11017],[77.55028,27.11128],[77.54904,27.10751],[77.54329,27.10422],[77.53993,27.10623],[77.53757,27.09833],[77.52039,27.10437],[77.51774,27.10246],[77.50544,27.0923],[77.50762,27.08888],[77.51059,27.09042],[77.52265,27.08917],[77.52636,27.08462],[77.52637,27.07824],[77.51935,27.06662],[77.52555,27.06375],[77.53162,27.06457],[77.54164,27.06261],[77.5447,27.07191],[77.54767,27.07154],[77.55359,27.07603],[77.55687,27.07534],[77.55888,27.07196],[77.55934,27.07313],[77.56583,27.07215],[77.56675,27.07319],[77.57169,27.07187],[77.57722,27.06833],[77.57276,27.06451],[77.57535,27.05987],[77.57531,27.05641],[77.57304,27.05275],[77.5729,27.04883],[77.56714,27.04687],[77.56321,27.02937],[77.57919,27.03821],[77.58209,27.03577],[77.59681,27.0327],[77.59605,27.02657],[77.60182,27.02253],[77.61497,27.02353],[77.62346,27.02199],[77.62853,27.01869],[77.62797,27.01507],[77.6299,27.01384],[77.63003,27.01021],[77.63415,27.01245],[77.63649,27.01942],[77.64221,27.02567],[77.6563,27.02098],[77.66023,27.02103],[77.66558,27.01725],[77.67341,27.02887],[77.67564,27.04138],[77.67977,27.04708],[77.69306,27.04085],[77.69291,27.03442],[77.68962,27.02667],[77.70573,27.01446],[77.70649,27.0069],[77.70526,27.00379],[77.71194,26.9971],[77.73006,26.99389],[77.7293,27.00752],[77.73285,27.02353],[77.73769,27.02975],[77.74111,27.02904],[77.74849,27.03088],[77.75099,27.02904],[77.74954,27.02121],[77.75952,27.01798],[77.75686,27.01009],[77.75986,27.00629],[77.76296,27.00685],[77.76138,26.99998],[77.758,27.0018],[77.75029,27.00187],[77.75196,26.99778],[77.75858,26.99696],[77.75327,26.99275],[77.74572,26.99505],[77.7475,26.98959],[77.74347,26.98317],[77.73907,26.98422],[77.72948,26.98296],[77.7224,26.98785],[77.69949,26.97512],[77.67625,26.97322],[77.67692,26.96556],[77.6736,26.96378],[77.67217,26.95997],[77.67092,26.96299],[77.66857,26.96174],[77.6682,26.96377],[77.66545,26.96278],[77.66381,26.96426],[77.66377,26.96723],[77.66088,26.97122],[77.64958,26.96288],[77.63496,26.95574],[77.6299,26.95172],[77.62295,26.94978],[77.60214,26.93327],[77.5975,26.93515],[77.59733,26.9383],[77.59224,26.94028],[77.59109,26.93597],[77.58851,26.93552],[77.58789,26.93106],[77.5832,26.92416],[77.55342,26.92004],[77.54506,26.91531],[77.54292,26.91627],[77.52349,26.91114],[77.49968,26.90207],[77.49026,26.90049],[77.46833,26.88722],[77.46032,26.88584],[77.4619,26.87749],[77.45896,26.87284],[77.45444,26.87183],[77.44842,26.87533],[77.4454,26.86826],[77.43807,26.86312],[77.42728,26.86409],[77.42664,26.859],[77.43116,26.85268],[77.42968,26.84708],[77.4213,26.83983],[77.4052,26.83478],[77.39787,26.83037],[77.40816,26.81671],[77.42061,26.81059],[77.42516,26.80152],[77.42909,26.80157],[77.42827,26.79319],[77.43229,26.78703],[77.4338,26.78737],[77.43708,26.78429],[77.43384,26.77957],[77.43524,26.77524],[77.43319,26.77482],[77.43363,26.77344],[77.43134,26.77108],[77.43428,26.76972],[77.43269,26.76784],[77.43664,26.76764],[77.43832,26.77012],[77.44184,26.7686],[77.44666,26.77392],[77.45151,26.77405],[77.45345,26.77788],[77.46691,26.77373],[77.46745,26.76748],[77.47037,26.76466],[77.46713,26.76299],[77.46367,26.75669],[77.46214,26.75728],[77.45567,26.74778],[77.45456,26.74187],[77.46036,26.74182],[77.4663,26.74465],[77.47804,26.7457],[77.48523,26.74801],[77.49463,26.75705],[77.50256,26.76873],[77.48895,26.77904],[77.48886,26.78604],[77.48747,26.78815],[77.49324,26.79767],[77.49366,26.80156],[77.50069,26.81701],[77.49912,26.82412],[77.5014,26.83519],[77.50117,26.84445],[77.50782,26.84571],[77.51768,26.84423],[77.51771,26.84284],[77.52071,26.84152],[77.52086,26.83818],[77.51761,26.83776],[77.51698,26.82578],[77.52011,26.82179],[77.52569,26.81887],[77.54197,26.82242],[77.5576,26.81764],[77.57448,26.82086],[77.57805,26.82721],[77.59243,26.82791],[77.60081,26.83561],[77.60837,26.83912],[77.60762,26.8278],[77.61034,26.82858],[77.61823,26.83204],[77.6204,26.8428],[77.62976,26.84147],[77.67474,26.85755],[77.67458,26.86349],[77.67643,26.86848],[77.68232,26.8694],[77.68665,26.87525],[77.6943,26.87396],[77.69615,26.8677],[77.6976,26.86738],[77.70124,26.86775],[77.70651,26.87684],[77.72261,26.87432],[77.72788,26.88526],[77.7259,26.88876],[77.72698,26.89022],[77.723,26.89514],[77.71764,26.89726],[77.72492,26.91038],[77.73238,26.92015],[77.73779,26.92058],[77.744,26.91876],[77.74571,26.92102],[77.75318,26.91687],[77.75891,26.92648],[77.75985,26.93246],[77.77475,26.93215],[77.78047,26.92985],[77.77949,26.92686],[77.78688,26.92386],[77.78647,26.92234],[77.79299,26.91705],[77.7982,26.916],[77.81021,26.92419],[77.815,26.91975],[77.8215,26.91777],[77.82383,26.91993],[77.83194,26.91427],[77.83638,26.91676],[77.84185,26.91257],[77.85024,26.91283],[77.85782,26.90626],[77.86771,26.90628],[77.86896,26.90164],[77.87756,26.90237],[77.88082,26.89945],[77.88452,26.89098],[77.89248,26.89016],[77.8938,26.88892],[77.89187,26.88707],[77.89649,26.884],[77.90432,26.88333],[77.9089,26.89062],[77.90672,26.89286],[77.90883,26.90638],[77.90686,26.91265],[77.90355,26.9146],[77.90636,26.91778],[77.91558,26.91419],[77.91302,26.90886],[77.91562,26.90739],[77.92577,26.90982],[77.93969,26.90678],[77.943,26.89711],[77.94841,26.89358],[77.95813,26.89683],[77.96958,26.90597],[77.97134,26.90587],[77.97345,26.90294],[77.97139,26.90032],[77.97341,26.89821],[77.97232,26.89607],[77.97645,26.89221],[77.98721,26.88935],[77.98873,26.89169],[77.99303,26.89249],[78.00224,26.9029],[78.00565,26.90207],[78.00963,26.90405],[78.01459,26.90291],[78.02132,26.90032],[78.0234,26.89099],[78.03019,26.88603],[78.02997,26.8841],[78.02722,26.88397],[78.02778,26.88044],[78.02577,26.8789],[78.02423,26.87257],[78.03119,26.87363],[78.03548,26.8708],[78.03528,26.86837],[78.03227,26.86516],[78.02096,26.85751],[78.02224,26.85268],[78.02647,26.84953],[78.032,26.8518],[78.04466,26.86998],[78.05597,26.86839],[78.05172,26.87072],[78.05019,26.87578],[78.05212,26.89421],[78.05126,26.9017],[78.04805,26.90747],[78.04881,26.91013],[78.05585,26.90691],[78.05952,26.90885],[78.0641,26.90652],[78.06695,26.91139],[78.07173,26.90637],[78.09604,26.89378],[78.09867,26.89659],[78.09438,26.9033],[78.10021,26.9049],[78.10434,26.90343],[78.10737,26.89638],[78.1112,26.89588],[78.1131,26.89998],[78.11236,26.90358],[78.1084,26.91219],[78.10164,26.91698],[78.10517,26.92682],[78.12019,26.92149],[78.12182,26.92258],[78.12108,26.93204],[78.1232,26.93183],[78.12278,26.93452],[78.11375,26.93599],[78.11177,26.93976],[78.11856,26.94697],[78.12451,26.94928],[78.1328,26.94737],[78.14448,26.94988],[78.15129,26.94801],[78.15646,26.94321],[78.17199,26.94817],[78.18128,26.94084],[78.19155,26.94246],[78.19766,26.94093],[78.20517,26.93263],[78.21014,26.93123],[78.21643,26.93508],[78.22151,26.94472],[78.22496,26.9463],[78.23129,26.93658],[78.23738,26.93597],[78.2383,26.92685],[78.24191,26.92614],[78.2479,26.92865],[78.25419,26.92563],[78.25576,26.92809],[78.25319,26.93273],[78.25364,26.9352],[78.25729,26.93457],[78.26485,26.92675],[78.26531,26.92259],[78.27159,26.92122],[78.27077,26.9151],[78.2637,26.90831],[78.26229,26.90195],[78.25913,26.89674],[78.25081,26.89178],[78.2469,26.89307],[78.24371,26.88869],[78.23708,26.88897],[78.23421,26.87599],[78.23264,26.87428],[78.22664,26.87488],[78.21922,26.87187],[78.21258,26.87137],[78.2127,26.86982],[78.20862,26.86886],[78.20841,26.87197],[78.20261,26.88172],[78.19762,26.88257],[78.19682,26.87952],[78.20222,26.86633],[78.21176,26.85069],[78.21273,26.84613],[78.21702,26.84336],[78.22017,26.84378],[78.22081,26.84012],[78.21858,26.8345],[78.21959,26.83267],[78.222,26.83046],[78.22975,26.82981],[78.24207,26.82503],[78.25996,26.81417],[78.26791,26.81358],[78.27246,26.81593],[78.27489,26.82519],[78.27312,26.84294],[78.27824,26.85086],[78.28251,26.85444],[78.30424,26.86245],[78.33055,26.86238],[78.35391,26.86892],[78.36265,26.86924],[78.3686,26.86709],[78.37276,26.86336],[78.38256,26.84065],[78.3929,26.8236],[78.39905,26.81848],[78.40555,26.81841],[78.42765,26.82537],[78.43429,26.82571],[78.44012,26.81998],[78.45317,26.79771],[78.4617,26.78819],[78.47963,26.78703],[78.49779,26.78159],[78.52323,26.78031],[78.54408,26.76461],[78.56478,26.76113],[78.57173,26.75167],[78.57686,26.74897],[78.58161,26.74889],[78.59281,26.75234],[78.60303,26.75005],[78.613,26.75243],[78.61624,26.75603],[78.61931,26.76666],[78.62845,26.77323],[78.64683,26.76946],[78.66291,26.76243],[78.67053,26.76241],[78.67591,26.76757],[78.67739,26.77809],[78.68452,26.78875],[78.69841,26.79238],[78.71084,26.79238],[78.7229,26.79727],[78.72803,26.79489],[78.72988,26.79222],[78.72565,26.77905],[78.72719,26.77647],[78.73621,26.77468],[78.73978,26.77694],[78.74692,26.78667],[78.7536,26.78701],[78.75827,26.78452],[78.76129,26.78075],[78.76674,26.76332],[78.77102,26.75908],[78.78512,26.75918],[78.81239,26.76335],[78.81899,26.76094],[78.82243,26.75725],[78.83194,26.73941],[78.84319,26.7283],[78.85848,26.70928],[78.87236,26.69779],[78.88918,26.69696],[78.90007,26.70054],[78.90683,26.7065],[78.91256,26.70683],[78.92419,26.70343],[78.93438,26.69757],[78.95606,26.69168],[78.9586,26.68733],[78.95772,26.68306],[78.94887,26.67492],[78.94248,26.66407],[78.94298,26.65669],[78.94549,26.65482],[78.94929,26.65454],[78.9572,26.65766],[78.9711,26.67145],[78.97915,26.67563],[78.99457,26.67715],[79.00378,26.67374],[79.00852,26.66929],[79.00863,26.66331],[78.99346,26.64191],[79.00803,26.62356],[79.01706,26.60104],[78.99808,26.59763],[78.99205,26.59406],[78.98914,26.59556],[78.98748,26.59283],[78.98759,26.58632],[78.99004,26.58465],[78.98978,26.57845],[78.99107,26.57701],[79.00069,26.57798],[79.00724,26.56546],[79.00628,26.55937],[79.01434,26.55105],[79.01269,26.54912],[79.00702,26.54859],[79.00774,26.54387],[79.00992,26.54322],[79.01457,26.54619],[79.01712,26.54149],[79.01887,26.54095],[79.02638,26.54679],[79.02834,26.54669],[79.02915,26.54317],[79.0266,26.53571],[79.03981,26.52986],[79.0383,26.51845],[79.03966,26.51511],[79.04183,26.51457],[79.0462,26.51821],[79.04862,26.518],[79.04493,26.5103],[79.0538,26.50254],[79.05632,26.49509],[79.06813,26.49662],[79.0678,26.4846],[79.0717,26.47887],[79.0616,26.46532],[79.05779,26.46235],[79.05262,26.45374],[79.0573,26.45249],[79.06215,26.45384],[79.06382,26.44871],[79.06807,26.44598],[79.06755,26.4441],[79.06989,26.44162],[79.07701,26.44214],[79.07879,26.44036],[79.08132,26.44123],[79.08172,26.44297],[79.08381,26.44146],[79.08784,26.44618],[79.0959,26.44259],[79.09722,26.44479],[79.09607,26.44999],[79.09972,26.45259],[79.10788,26.44814],[79.11801,26.44558],[79.1219,26.44705],[79.12301,26.44406],[79.12703,26.44296],[79.12928,26.44047],[79.13518,26.44013],[79.12828,26.43142],[79.12432,26.42261],[79.1237,26.41156],[79.12528,26.41238],[79.12598,26.41125],[79.10469,26.40638],[79.10025,26.40817],[79.0995,26.41201],[79.09521,26.41264],[79.09435,26.41085],[79.09609,26.40798],[79.09438,26.40833],[79.09187,26.40595],[79.089,26.39663],[79.09639,26.38305],[79.09684,26.381],[79.0943,26.37615],[79.09692,26.37549],[79.0954,26.37373],[79.09637,26.37232],[79.09479,26.36967],[79.09135,26.37113],[79.08731,26.36843],[79.08424,26.36232],[79.08561,26.36109],[79.08447,26.35811],[79.08907,26.35463],[79.09387,26.35393],[79.09809,26.35555],[79.10309,26.35319],[79.10475,26.34946],[79.10758,26.34963],[79.10926,26.35213],[79.11095,26.35156],[79.11085,26.34961],[79.11628,26.3498],[79.1163,26.3483],[79.12284,26.34693],[79.12779,26.34221],[79.12844,26.33888],[79.13221,26.33718],[79.13413,26.33914],[79.13883,26.33751],[79.13722,26.33551],[79.13263,26.33532],[79.13497,26.32474],[79.12742,26.32186],[79.12515,26.32704],[79.12492,26.32241],[79.11553,26.32048],[79.11625,26.31665],[79.11983,26.31258],[79.1249,26.31159],[79.11753,26.30517],[79.1186,26.30034],[79.11742,26.29891],[79.11368,26.30195],[79.11331,26.30464],[79.10952,26.30652],[79.10193,26.30682],[79.0979,26.30093],[79.09708,26.29453],[79.08989,26.28772],[79.09652,26.27849],[79.09107,26.27252],[79.09065,26.27003],[79.0869,26.27139],[79.08775,26.27331],[79.0857,26.27403],[79.08545,26.27622],[79.08361,26.27549],[79.08443,26.27969],[79.08069,26.27841],[79.07701,26.28062],[79.07453,26.27783],[79.06464,26.27704],[79.06184,26.27174],[79.05351,26.26269],[79.05693,26.26025],[79.05566,26.25886],[79.04564,26.26031],[79.04597,26.25645],[79.0521,26.2546],[79.05343,26.25082],[79.05712,26.24904],[79.06446,26.2493],[79.0697,26.2457],[79.06894,26.24317],[79.07094,26.24152],[79.0642,26.23883],[79.06243,26.2365],[79.06535,26.22977],[79.06344,26.2259],[79.05333,26.22804],[79.0471,26.22417],[79.03786,26.22733],[79.0346,26.22537],[79.03067,26.23929],[79.01944,26.24761],[79.01088,26.24468],[79.00957,26.24201],[79.00372,26.24441],[78.9968,26.24189],[78.9939,26.23874],[78.99169,26.23896],[78.98936,26.23498],[78.99655,26.22804],[79.01363,26.22551],[79.02582,26.2201],[79.02481,26.2084],[79.02783,26.20328],[79.02083,26.20021],[79.02009,26.19822],[79.02583,26.19177],[79.00688,26.19167],[78.99768,26.19849],[78.99367,26.19689],[78.98311,26.18436],[78.98661,26.18242],[78.99471,26.17291],[78.99955,26.16993],[79.00447,26.16922],[79.00529,26.16744],[79.00413,26.16638],[79.00614,26.16392],[79.00476,26.16263],[79.00823,26.1564],[79.00428,26.14982],[79.0049,26.14805],[78.99854,26.15001],[78.99426,26.1462],[78.97996,26.1511],[78.96696,26.15014],[78.96438,26.14846],[78.96565,26.14141],[78.96372,26.1404],[78.9629,26.13653],[78.95157,26.13432],[78.94887,26.12868],[78.95848,26.12797],[78.96237,26.12532],[78.96344,26.12216],[78.97683,26.11604],[78.97746,26.11114],[78.97559,26.1052],[78.987,26.0995],[78.99358,26.09371],[79.0021,26.09017],[79.00866,26.09321],[79.01257,26.08991],[79.01206,26.08318],[79.00841,26.08014],[79.00814,26.07542],[79.00275,26.06665],[78.99069,26.06883],[78.98943,26.06284],[78.9863,26.06043],[78.98614,26.05368],[78.98188,26.05161],[78.98015,26.04812],[78.9769,26.04794],[78.97655,26.05104],[78.97273,26.05028],[78.97389,26.04504],[78.9693,26.04563],[78.96039,26.03486],[78.95455,26.03338],[78.95302,26.02934],[78.94826,26.02775],[78.95351,26.01522],[78.94823,26.01051],[78.94821,26.00822],[78.94449,26.00628],[78.9466,26.00116],[78.95129,25.99852],[78.95606,25.99801],[78.95681,25.99654],[78.95554,25.99491],[78.9483,25.99319],[78.94932,25.99123],[78.95298,25.991],[78.95315,25.98906],[78.94354,25.97887],[78.94068,25.97851],[78.93611,25.98184],[78.93318,25.97933],[78.93494,25.97498],[78.93781,25.97377],[78.93761,25.96453],[78.93473,25.96442],[78.93484,25.96137],[78.9305,25.95893],[78.93484,25.95586],[78.93429,25.95314],[78.9371,25.95275],[78.93329,25.94818],[78.93885,25.94427],[78.93896,25.94269],[78.93609,25.94167],[78.93207,25.94745],[78.92748,25.94725],[78.92154,25.94065],[78.91671,25.94005],[78.91569,25.93797],[78.90825,25.9345],[78.90969,25.93153],[78.90576,25.92953],[78.90566,25.92562],[78.89859,25.91794],[78.88464,25.91393],[78.88337,25.90901],[78.88845,25.90422],[78.89115,25.89715],[78.89481,25.89517],[78.88698,25.88471],[78.88672,25.88291],[78.89168,25.88024],[78.88738,25.86849],[78.87621,25.87588],[78.87306,25.87514],[78.86411,25.87141],[78.86195,25.86556],[78.85241,25.85665],[78.8506,25.85218],[78.85141,25.83846],[78.86209,25.84274],[78.8643,25.83594],[78.87258,25.83509],[78.87193,25.82811],[78.87424,25.82215],[78.87061,25.81679],[78.86997,25.80903],[78.87281,25.80832],[78.87244,25.80138],[78.87039,25.80137],[78.86708,25.79321],[78.86439,25.79308],[78.86364,25.79078],[78.85715,25.79182],[78.85553,25.79516],[78.84595,25.80078],[78.84745,25.80268],[78.84465,25.80342],[78.84753,25.80334],[78.84478,25.80456],[78.846,25.80519],[78.84473,25.80605],[78.84618,25.80719],[78.84564,25.81136],[78.84796,25.81517],[78.84555,25.82155],[78.81844,25.82901],[78.81487,25.82236],[78.81038,25.8169],[78.80777,25.81685],[78.80627,25.81309],[78.8092,25.80989],[78.81143,25.8096],[78.81145,25.80769],[78.81431,25.80704],[78.82046,25.81574],[78.82831,25.81434],[78.8333,25.80962],[78.82862,25.79571],[78.80829,25.80097],[78.80292,25.79208],[78.79785,25.78838],[78.79138,25.77581],[78.78597,25.76924],[78.78628,25.76472],[78.78288,25.75848],[78.77883,25.75787],[78.77628,25.75978],[78.77296,25.75861],[78.77208,25.75722],[78.77356,25.75527],[78.77081,25.74863],[78.75873,25.75452],[78.75286,25.75],[78.7557,25.73047],[78.76333,25.71993],[78.77478,25.717],[78.78363,25.70872],[78.79991,25.70507],[78.79998,25.70294],[78.79511,25.69978],[78.79557,25.69672],[78.80453,25.69228],[78.80716,25.68412],[78.8125,25.68105],[78.8167,25.67632],[78.81878,25.6692],[78.8157,25.66233],[78.81987,25.64857],[78.81613,25.63581],[78.81169,25.63208],[78.81176,25.62078],[78.79799,25.61643],[78.79394,25.61242],[78.78236,25.61271],[78.77881,25.61091],[78.77397,25.61205],[78.76621,25.6102],[78.75032,25.60304],[78.74927,25.59877],[78.74215,25.59699],[78.73531,25.60101],[78.73177,25.60625],[78.72457,25.60216],[78.72065,25.60554],[78.71733,25.60533],[78.71598,25.6036],[78.71634,25.59953],[78.7042,25.59791],[78.70018,25.59507],[78.69942,25.59091],[78.69508,25.58783],[78.68731,25.58889],[78.67886,25.5853],[78.67489,25.57733],[78.6675,25.5747],[78.65867,25.55989],[78.6463,25.56075],[78.62419,25.56738],[78.6308,25.57893],[78.61814,25.58366],[78.61596,25.58353],[78.61078,25.57797],[78.61169,25.56987],[78.60155,25.56912],[78.59802,25.57069],[78.59243,25.56319],[78.59113,25.55834],[78.58774,25.5566],[78.58227,25.56138],[78.56921,25.56462],[78.56675,25.56256],[78.56316,25.56274],[78.56063,25.55905],[78.5587,25.56058],[78.55565,25.55928],[78.54466,25.56158],[78.54248,25.56295],[78.54219,25.56535],[78.5327,25.57166],[78.52837,25.56666],[78.52746,25.56801],[78.52366,25.56699],[78.51912,25.57029],[78.51275,25.56931],[78.50912,25.57254],[78.5066,25.57152],[78.50672,25.57297],[78.50206,25.57493],[78.49986,25.57416],[78.49766,25.57779],[78.49334,25.5787],[78.4871,25.57315],[78.48635,25.57436],[78.48266,25.57222],[78.48332,25.5708],[78.47864,25.56741],[78.47833,25.56468],[78.47537,25.56466],[78.46685,25.55932],[78.46567,25.55637],[78.46657,25.55337],[78.46983,25.55348],[78.46627,25.55118],[78.46469,25.54551],[78.4563,25.54806],[78.45096,25.55176],[78.44656,25.55943],[78.44762,25.56072],[78.44647,25.56146],[78.44937,25.56329],[78.4436,25.5632],[78.42828,25.55043],[78.42783,25.54539],[78.42635,25.54279],[78.42107,25.53992],[78.41934,25.53296],[78.42031,25.52403],[78.41906,25.51814],[78.42885,25.51154],[78.42853,25.50993],[78.42248,25.51003],[78.42059,25.50813],[78.41881,25.50902],[78.41681,25.5017],[78.4193,25.50039],[78.42869,25.48785],[78.42741,25.48485],[78.43131,25.47363],[78.42781,25.4712],[78.41649,25.47648],[78.41411,25.46979],[78.40386,25.4671],[78.40031,25.46355],[78.39722,25.45627],[78.39496,25.44421],[78.38095,25.44035],[78.37766,25.43681],[78.37643,25.43865],[78.36946,25.43833],[78.36219,25.44598],[78.3602,25.45147],[78.35454,25.45198],[78.34902,25.44281],[78.34991,25.44096],[78.34698,25.43528],[78.34179,25.43098],[78.3389,25.43102],[78.33939,25.42638],[78.34309,25.42002],[78.33884,25.40698],[78.34091,25.40283],[78.34053,25.39952],[78.33138,25.39075],[78.32237,25.38741],[78.31685,25.37867],[78.30794,25.3812],[78.30531,25.37675],[78.30611,25.37518],[78.3008,25.35993],[78.30498,25.3605],[78.31605,25.35755],[78.31909,25.35496],[78.32806,25.35254],[78.3373,25.33639],[78.33755,25.33025],[78.34379,25.32846],[78.3387,25.32406],[78.3337,25.3226],[78.33055,25.319],[78.32935,25.3196],[78.32489,25.31595],[78.32274,25.31633],[78.31126,25.30519],[78.31173,25.3033],[78.3166,25.30184],[78.3197,25.29883],[78.32991,25.29649],[78.33397,25.29241],[78.35459,25.29225],[78.35011,25.27733],[78.35709,25.27314],[78.36055,25.27272],[78.36637,25.26673],[78.36877,25.26138],[78.37251,25.25991],[78.3598,25.24219],[78.36739,25.23685],[78.37296,25.23719],[78.37488,25.23924],[78.37852,25.23869],[78.37714,25.22784],[78.38206,25.22259],[78.39672,25.21691],[78.39796,25.21822],[78.4025,25.2176],[78.4049,25.21488],[78.41095,25.21267],[78.3993,25.20862],[78.39829,25.20538],[78.39138,25.20119],[78.39156,25.19894],[78.39466,25.19735],[78.39413,25.1935],[78.39608,25.18722],[78.41664,25.18353],[78.41636,25.17644],[78.42474,25.17208],[78.4234,25.16931],[78.44337,25.16548],[78.44608,25.16823],[78.45155,25.16893],[78.45826,25.16372],[78.45187,25.15998],[78.44785,25.15271],[78.43206,25.15517],[78.4273,25.15399],[78.42737,25.14589],[78.44203,25.13094],[78.44795,25.12811],[78.44682,25.12177],[78.43444,25.12014],[78.41544,25.12843],[78.40682,25.12893],[78.39973,25.12411],[78.38786,25.10572],[78.38345,25.10172],[78.36084,25.09573],[78.33863,25.08658],[78.3355,25.08114],[78.33549,25.06656],[78.34018,25.04028],[78.34737,25.02153],[78.34536,25.01208],[78.33385,24.9955],[78.31682,24.99001],[78.31181,24.98563],[78.30703,24.97747],[78.29459,24.96306],[78.28666,24.95814],[78.27915,24.95607],[78.27093,24.94877],[78.26595,24.94102],[78.25623,24.9368],[78.2494,24.92987],[78.22381,24.91531],[78.21059,24.89481],[78.19495,24.88943],[78.17351,24.87864],[78.16906,24.86934],[78.16897,24.86262],[78.17327,24.84669],[78.17751,24.84333],[78.19347,24.84252],[78.1976,24.83978],[78.20403,24.8244],[78.21668,24.80859],[78.23174,24.77714],[78.23574,24.77175],[78.23505,24.76381],[78.23178,24.76236],[78.22557,24.75303],[78.22614,24.74691],[78.25035,24.71148],[78.25752,24.70417],[78.26534,24.67934],[78.2767,24.66299],[78.27522,24.65818],[78.26405,24.6511],[78.26267,24.646],[78.26532,24.63141],[78.27618,24.61948],[78.27798,24.61476],[78.2733,24.59576],[78.27289,24.57941],[78.26733,24.57595],[78.26482,24.5675],[78.26646,24.55939],[78.26447,24.5522],[78.2561,24.54714],[78.24351,24.5442],[78.22944,24.53753],[78.22591,24.53129],[78.22542,24.52137],[78.22809,24.51738],[78.23321,24.51408],[78.24442,24.51142],[78.24602,24.50954],[78.24773,24.5026],[78.24406,24.48905],[78.24589,24.48614],[78.24957,24.48358],[78.26802,24.47904],[78.27498,24.47392],[78.27379,24.46723],[78.26416,24.4557],[78.26452,24.4531],[78.26969,24.44694],[78.307,24.42309],[78.32189,24.4088],[78.34075,24.40207],[78.34385,24.39914],[78.34491,24.39387],[78.3489,24.38744],[78.3562,24.38543],[78.36579,24.38598],[78.36967,24.37493],[78.35793,24.36758],[78.35693,24.36282],[78.3468,24.35241],[78.34329,24.34462],[78.33442,24.33801],[78.3292,24.32945],[78.32933,24.3265],[78.33146,24.32393],[78.34201,24.31882],[78.34555,24.31447],[78.34559,24.30624],[78.34805,24.29958],[78.35816,24.29231],[78.36627,24.29107],[78.37033,24.28404],[78.3781,24.28408],[78.38085,24.28041],[78.38187,24.27312],[78.38567,24.26967],[78.38705,24.2709],[78.38797,24.26907],[78.38894,24.27093],[78.39538,24.26896],[78.39813,24.26944],[78.40001,24.27202],[78.40358,24.2706],[78.41164,24.27163],[78.41167,24.27282],[78.41396,24.27298],[78.41408,24.27792],[78.4184,24.28494],[78.4242,24.28558],[78.4307,24.28377],[78.43388,24.28792],[78.43394,24.29127],[78.43999,24.29588],[78.43762,24.30858],[78.43869,24.31254],[78.44587,24.31587],[78.44389,24.31935],[78.45527,24.32407],[78.45639,24.32818],[78.46366,24.33013],[78.47758,24.33848],[78.47421,24.34777],[78.47429,24.35634],[78.50048,24.38907],[78.50223,24.39034],[78.51838,24.38782],[78.52565,24.38319],[78.52729,24.37914],[78.52983,24.37891],[78.52723,24.37525],[78.52991,24.37238],[78.52988,24.3681],[78.53837,24.36795],[78.55934,24.35674],[78.56331,24.35798],[78.57319,24.35099],[78.575,24.35532],[78.57647,24.35565],[78.586,24.35374],[78.5831,24.34983],[78.58429,24.3465],[78.58929,24.33772],[78.5961,24.33518],[78.59652,24.332],[78.60104,24.32655],[78.60365,24.3145],[78.60942,24.30855],[78.61582,24.30963],[78.61821,24.30709],[78.61914,24.31033],[78.62341,24.3071],[78.62624,24.30732],[78.62844,24.30394],[78.62809,24.30031],[78.61997,24.29289],[78.62003,24.29032],[78.62454,24.28656],[78.6258,24.28059],[78.63137,24.28643],[78.63877,24.28513],[78.64565,24.27853],[78.64928,24.27163],[78.66005,24.26759],[78.6643,24.2561],[78.66383,24.25067],[78.66712,24.24476],[78.66664,24.24196],[78.66863,24.24004],[78.68252,24.23823],[78.70306,24.22692],[78.70871,24.23431],[78.72557,24.23644],[78.72364,24.24],[78.72638,24.24203],[78.72789,24.24822],[78.73417,24.25241],[78.74126,24.24734],[78.74181,24.24501],[78.739,24.23808],[78.74042,24.23498],[78.7416,24.23384],[78.75042,24.23389],[78.75496,24.23834],[78.75545,24.24112],[78.75979,24.24407],[78.75987,24.25733],[78.76189,24.25954],[78.76741,24.25311],[78.76865,24.24843],[78.76766,24.23879],[78.76452,24.2318],[78.76751,24.22668],[78.76737,24.22021],[78.77133,24.21447],[78.77699,24.21108],[78.78113,24.20605],[78.78075,24.19977],[78.783,24.18915],[78.78943,24.17711],[78.79282,24.17683],[78.79534,24.17813],[78.80621,24.17829],[78.81267,24.18103],[78.81439,24.18589],[78.8122,24.19105],[78.81294,24.20297],[78.81495,24.2068],[78.82177,24.20415],[78.82376,24.19685],[78.82675,24.19545],[78.83807,24.20734],[78.84689,24.21377],[78.8521,24.21404],[78.86095,24.20921],[78.8768,24.2138],[78.88185,24.21701],[78.88805,24.22728],[78.88407,24.24335],[78.88437,24.25],[78.90546,24.26453],[78.91607,24.26763],[78.91866,24.28298],[78.91161,24.288],[78.90964,24.298],[78.91888,24.30023],[78.92365,24.30649],[78.94125,24.31529],[78.96301,24.34421],[78.97145,24.34761],[78.9707,24.35138],[78.97259,24.35449],[78.96991,24.37028],[78.97503,24.37857],[78.97693,24.38875],[78.98435,24.40478],[78.98405,24.41026],[78.99245,24.41891],[78.99365,24.42275],[78.98576,24.44168],[78.96522,24.43873],[78.96096,24.43954],[78.9548,24.43703],[78.94748,24.43662],[78.94272,24.44408],[78.94178,24.45107],[78.93992,24.45345],[78.92827,24.46019],[78.91512,24.4582],[78.91421,24.45962],[78.91485,24.46229],[78.9127,24.46558],[78.91221,24.47344],[78.91634,24.48233],[78.92058,24.49972],[78.92495,24.49963],[78.92719,24.49452],[78.9318,24.49138],[78.93714,24.49105],[78.92792,24.48433],[78.92722,24.48207],[78.93622,24.47942],[78.94312,24.47901],[78.96347,24.48353],[78.97044,24.48922],[78.97152,24.49424],[78.96561,24.49792],[78.95705,24.49876],[78.94726,24.5024],[78.94804,24.51515],[78.95132,24.51878],[78.94648,24.52585],[78.94368,24.53451],[78.94815,24.54414],[78.95321,24.5469],[78.94711,24.55071],[78.94834,24.55425],[78.94645,24.55715],[78.93502,24.56076],[78.9338,24.56396],[78.92921,24.56573],[78.92493,24.57499],[78.92343,24.5735],[78.92015,24.57481],[78.91262,24.59074],[78.91257,24.60017],[78.91114,24.60012],[78.91003,24.60297],[78.90206,24.60616],[78.90207,24.60779],[78.90061,24.60722],[78.89915,24.61425],[78.89701,24.61479],[78.89479,24.6213],[78.8962,24.62572],[78.89218,24.62929],[78.88941,24.62962],[78.88999,24.63114],[78.88555,24.63495],[78.88636,24.63737],[78.88231,24.64041],[78.88323,24.64129],[78.87721,24.64221],[78.87705,24.64081],[78.87447,24.64178],[78.86802,24.63999],[78.86861,24.6368],[78.86623,24.62743],[78.85977,24.61764],[78.85555,24.61785],[78.85253,24.6247],[78.84873,24.62213],[78.8433,24.62329],[78.83776,24.6158],[78.83461,24.60456],[78.82637,24.6046],[78.82383,24.60244],[78.81679,24.60099],[78.81244,24.6021],[78.81145,24.60393],[78.80322,24.60353],[78.8032,24.59929],[78.799,24.59437],[78.78379,24.58856],[78.77657,24.58874],[78.76933,24.59417],[78.75203,24.60018],[78.75457,24.60382],[78.75109,24.61721],[78.75482,24.61992],[78.75208,24.62192],[78.7527,24.63401],[78.75001,24.64185],[78.75196,24.64241],[78.74948,24.64676],[78.75064,24.64856],[78.74919,24.64817],[78.74863,24.65106],[78.7454,24.6516],[78.74393,24.65406],[78.74719,24.65651],[78.74677,24.66268],[78.75051,24.66419],[78.75474,24.66915],[78.75879,24.66904],[78.76147,24.6709],[78.76522,24.68087],[78.76364,24.69048],[78.77098,24.69141],[78.77354,24.69662],[78.77795,24.69948],[78.781,24.70608],[78.78115,24.70893],[78.77685,24.71364],[78.77329,24.73117],[78.7723,24.74311],[78.7766,24.75183],[78.77,24.75808],[78.77135,24.76883],[78.77035,24.7747],[78.7728,24.78257],[78.7704,24.7884],[78.77429,24.79462],[78.78703,24.80131],[78.78984,24.81098],[78.78342,24.81612],[78.77593,24.83072],[78.77357,24.84094],[78.77477,24.84975],[78.77004,24.85902],[78.76219,24.86002],[78.7539,24.86883],[78.74676,24.86522],[78.72913,24.87895],[78.72217,24.88166],[78.71089,24.87966],[78.70503,24.88725],[78.69668,24.89318],[78.68365,24.89499],[78.67656,24.89863],[78.66724,24.91379],[78.66339,24.93844],[78.65577,24.94037],[78.65186,24.93838],[78.64988,24.94102],[78.65284,24.9438],[78.65236,24.94784],[78.63613,24.95927],[78.63173,24.95769],[78.63164,24.96162],[78.63394,24.96339],[78.633,24.96712],[78.64003,24.97208],[78.63893,24.97578],[78.6414,24.97778],[78.64143,24.98197],[78.64401,24.98429],[78.64471,25.00332],[78.64706,25.00612],[78.64572,25.0186],[78.65336,25.03145],[78.65192,25.03916],[78.65262,25.05059],[78.63602,25.07717],[78.62815,25.0862],[78.61326,25.08758],[78.60245,25.09442],[78.60191,25.09784],[78.60568,25.10887],[78.60429,25.1175],[78.60533,25.12693],[78.60333,25.14596],[78.60068,25.15539],[78.58334,25.18733],[78.57639,25.1952],[78.57054,25.20519],[78.5702,25.22388],[78.56819,25.22474],[78.56281,25.22148],[78.55644,25.21025],[78.55554,25.21142],[78.56012,25.222],[78.56744,25.22994],[78.56808,25.24084],[78.5731,25.24584],[78.5779,25.25482],[78.57127,25.25722],[78.5705,25.25831],[78.57204,25.25957],[78.56846,25.25978],[78.563,25.26368],[78.55972,25.26359],[78.54983,25.26776],[78.54527,25.26471],[78.54118,25.26568],[78.53731,25.26889],[78.53361,25.26837],[78.53084,25.27711],[78.53372,25.28063],[78.5318,25.28162],[78.53092,25.28465],[78.51665,25.27789],[78.51056,25.27678],[78.50753,25.28454],[78.50343,25.28953],[78.48698,25.281],[78.48364,25.27736],[78.47289,25.27374],[78.46495,25.26659],[78.45085,25.26211],[78.43829,25.27458],[78.43659,25.2827],[78.43503,25.28416],[78.43893,25.28866],[78.44034,25.29547],[78.44519,25.29931],[78.45379,25.30127],[78.46709,25.29076],[78.47118,25.29034],[78.47295,25.2855],[78.47756,25.28948],[78.47693,25.29663],[78.47804,25.29852],[78.48434,25.3009],[78.49478,25.31308],[78.49717,25.31943],[78.5023,25.3209],[78.50298,25.3187],[78.5006,25.31378],[78.50359,25.30407],[78.50275,25.30087],[78.50657,25.29952],[78.5099,25.29555],[78.5202,25.29946],[78.53119,25.30002],[78.534,25.31013],[78.53754,25.31066],[78.55307,25.31964],[78.55007,25.32238],[78.54694,25.32198],[78.54386,25.32418],[78.54371,25.32603],[78.53964,25.32775],[78.54048,25.33011],[78.53705,25.33823],[78.54123,25.34554],[78.53064,25.35148],[78.532,25.35658],[78.53649,25.3602],[78.55184,25.3567],[78.55281,25.35294],[78.56138,25.34122],[78.56727,25.34074],[78.57083,25.3433],[78.57751,25.34384],[78.58329,25.34697],[78.58475,25.35338],[78.58779,25.35588],[78.58877,25.36597],[78.5857,25.37417],[78.57778,25.38124],[78.56924,25.37731],[78.56289,25.37726],[78.56354,25.38326],[78.56616,25.3871],[78.5665,25.39353],[78.57612,25.39073],[78.58145,25.38571],[78.58364,25.3877],[78.59019,25.38603],[78.59941,25.39256],[78.59843,25.39627],[78.60225,25.39916],[78.60111,25.409],[78.60667,25.4113],[78.60446,25.41351],[78.60967,25.41602],[78.61392,25.41458],[78.61938,25.41559],[78.62362,25.41347],[78.62575,25.40123],[78.631,25.3993],[78.63582,25.40069],[78.64493,25.41267],[78.64456,25.41947],[78.64096,25.42942],[78.64136,25.43349],[78.64321,25.43531],[78.65068,25.43637],[78.65398,25.43841],[78.65625,25.43779],[78.65983,25.44166],[78.66545,25.43978],[78.67041,25.44002],[78.68171,25.43322],[78.68987,25.44575],[78.69655,25.44299],[78.69961,25.44009],[78.6997,25.43701],[78.70257,25.43294],[78.71143,25.4281],[78.70906,25.42401],[78.70307,25.41894],[78.6749,25.39957],[78.67142,25.40507],[78.66831,25.40648],[78.66601,25.41581],[78.6589,25.4085],[78.65916,25.40579],[78.66362,25.40088],[78.66234,25.39633],[78.66629,25.39273],[78.65895,25.38529],[78.66384,25.38256],[78.67536,25.38115],[78.69467,25.37386],[78.6996,25.38189],[78.70301,25.37377],[78.70761,25.37193],[78.71405,25.37215],[78.7136,25.36962],[78.70791,25.36309],[78.70879,25.35199],[78.72412,25.34397],[78.72752,25.3443],[78.73096,25.34872],[78.738,25.34794],[78.74105,25.34498],[78.75278,25.34591],[78.75478,25.35147],[78.75997,25.35044],[78.77459,25.3531],[78.77444,25.35614],[78.76592,25.36915],[78.77366,25.37617],[78.75986,25.38166],[78.75692,25.38544],[78.76134,25.38594],[78.76517,25.39091],[78.76798,25.40003],[78.76479,25.40187],[78.75676,25.39506],[78.75,25.39385],[78.74815,25.39099],[78.74556,25.40281],[78.74686,25.40306],[78.74974,25.41106],[78.75811,25.4154],[78.76738,25.41496],[78.77495,25.41987],[78.77917,25.41925],[78.78251,25.41571],[78.78792,25.41986],[78.79581,25.41645],[78.79977,25.41927],[78.79812,25.42084],[78.7991,25.42289],[78.81974,25.41991],[78.82137,25.42258],[78.81047,25.43035],[78.80951,25.43422],[78.80297,25.43716],[78.78514,25.43578],[78.78212,25.4342],[78.77848,25.42917],[78.7734,25.42697],[78.7707,25.42285],[78.76236,25.4269],[78.75799,25.43208],[78.75611,25.43824],[78.75775,25.44025],[78.75383,25.44317],[78.75236,25.44671],[78.75,25.44858],[78.73745,25.44979],[78.73706,25.45499],[78.73507,25.45733],[78.73183,25.45806],[78.73274,25.48485],[78.73346,25.48943],[78.73635,25.49382],[78.74283,25.49878],[78.74627,25.49662],[78.74541,25.49582],[78.74772,25.49334],[78.74631,25.48942],[78.74784,25.4887],[78.74733,25.48476],[78.7572,25.48069],[78.75622,25.4786],[78.75821,25.47553],[78.76783,25.46943],[78.77104,25.47191],[78.7728,25.47627],[78.77493,25.47611],[78.77632,25.4784],[78.78681,25.4795],[78.79156,25.48342],[78.79669,25.48276],[78.8051,25.47533],[78.81825,25.47165],[78.81797,25.46751],[78.81046,25.46142],[78.80638,25.45447],[78.80917,25.45341],[78.81248,25.4566],[78.81426,25.45614],[78.81593,25.46176],[78.82061,25.46774],[78.83123,25.46118],[78.84089,25.4615],[78.83518,25.45479],[78.85489,25.44769],[78.85207,25.44549],[78.84826,25.44595],[78.84563,25.44331],[78.84184,25.44382],[78.84046,25.4417],[78.82576,25.44335],[78.8234,25.44261],[78.82073,25.43869],[78.82433,25.4342],[78.82357,25.43134],[78.82802,25.42825],[78.83163,25.43157],[78.83756,25.42804],[78.84415,25.42775],[78.84807,25.42974],[78.8484,25.43626],[78.85651,25.44668],[78.8607,25.445],[78.86388,25.45124],[78.86298,25.45614],[78.86547,25.45893],[78.86617,25.46567],[78.86031,25.47126],[78.8603,25.47925],[78.85744,25.48424],[78.85536,25.48448],[78.85565,25.48837],[78.85307,25.49084],[78.84019,25.49336],[78.84232,25.49891],[78.83282,25.4995],[78.83496,25.50582],[78.84154,25.51254],[78.85216,25.51387],[78.86648,25.51205],[78.87107,25.5132],[78.87611,25.51747],[78.88438,25.51558],[78.88706,25.52684],[78.88644,25.53243],[78.87791,25.53681],[78.87429,25.54095],[78.87749,25.54943],[78.88265,25.55396],[78.89524,25.55535],[78.90005,25.5522],[78.90564,25.55123],[78.9112,25.55516],[78.91711,25.55229],[78.91645,25.54555],[78.921,25.5373],[78.92337,25.53594],[78.92795,25.5498],[78.93087,25.5509],[78.9331,25.55534],[78.93937,25.55722],[78.94413,25.55627],[78.9433,25.55378],[78.95179,25.54879],[78.94755,25.54086],[78.95285,25.53753],[78.94685,25.52946],[78.93642,25.51979],[78.9272,25.52498],[78.92244,25.51567],[78.9199,25.5154],[78.92712,25.5074],[78.93499,25.50526],[78.933,25.49936],[78.93676,25.49542],[78.94109,25.49503],[78.9402,25.49334],[78.94216,25.49245],[78.93719,25.48933],[78.92698,25.49185],[78.92681,25.48996],[78.94391,25.48293],[78.93602,25.46161],[78.92399,25.45949],[78.92522,25.45712],[78.92351,25.45384],[78.91541,25.44626],[78.90897,25.44508],[78.90887,25.44242],[78.92165,25.43242],[78.93264,25.4303],[78.93151,25.42756],[78.93245,25.42404],[78.93827,25.42225],[78.94678,25.43593],[78.95037,25.43733],[78.95094,25.44055],[78.95348,25.43901],[78.958,25.44028],[78.9603,25.43715],[78.967,25.43462],[78.96974,25.43166],[78.96999,25.42323],[78.97623,25.41996],[78.96846,25.40467],[78.97204,25.40298],[78.9738,25.39789],[78.9733,25.39418],[78.96993,25.39011],[78.98751,25.38129],[78.98619,25.37807],[78.98933,25.37404],[78.9816,25.36954],[78.97896,25.36954],[78.97524,25.36607],[78.9654,25.37068],[78.96354,25.3689],[78.95916,25.37151],[78.95181,25.36067],[78.95044,25.36061],[78.945,25.35041],[78.93871,25.34698],[78.92699,25.35161],[78.92382,25.35483],[78.92325,25.35879],[78.91453,25.35762],[78.90134,25.36162],[78.89968,25.36861],[78.89657,25.37186],[78.89642,25.37411],[78.89908,25.37769],[78.91259,25.37712],[78.91594,25.38144],[78.92861,25.38021],[78.92857,25.37834],[78.93829,25.37483],[78.94212,25.38294],[78.94541,25.38561],[78.94737,25.38488],[78.95103,25.38969],[78.95237,25.38854],[78.95755,25.39368],[78.95647,25.39719],[78.95355,25.39815],[78.9533,25.39995],[78.9402,25.40038],[78.93598,25.39513],[78.93474,25.39518],[78.93506,25.39897],[78.93166,25.39988],[78.92969,25.39589],[78.91981,25.39697],[78.91776,25.3961],[78.91377,25.38425],[78.88024,25.38589],[78.88145,25.38226],[78.87464,25.3797],[78.87178,25.38095],[78.86786,25.37244],[78.86287,25.37117],[78.86154,25.36937],[78.85834,25.3644],[78.85953,25.36312],[78.85701,25.36292],[78.85161,25.35746],[78.84574,25.35555],[78.84731,25.35051],[78.84359,25.34947],[78.84104,25.34497],[78.8413,25.34264],[78.84483,25.34202],[78.84994,25.33494],[78.84616,25.32698],[78.84716,25.33678],[78.84261,25.33655],[78.84207,25.33262],[78.83936,25.3318],[78.83445,25.32322],[78.8219,25.3161],[78.82129,25.31151],[78.81719,25.30877],[78.8193,25.30694],[78.81437,25.30851],[78.81034,25.30781],[78.79824,25.31394],[78.79232,25.30809],[78.78778,25.29601],[78.79117,25.29589],[78.79393,25.29117],[78.79881,25.28917],[78.80459,25.29282],[78.81715,25.30668],[78.82273,25.3068],[78.82857,25.30274],[78.8278,25.30141],[78.82099,25.30135],[78.81845,25.29895],[78.82043,25.29609],[78.8174,25.29111],[78.81808,25.28313],[78.81293,25.28006],[78.81374,25.27762],[78.81088,25.27559],[78.80947,25.2706],[78.81865,25.26355],[78.82291,25.2562],[78.83274,25.25252],[78.83514,25.24291],[78.8428,25.22769],[78.84965,25.22879],[78.85217,25.23082],[78.85214,25.23732],[78.85392,25.24107],[78.85737,25.24396],[78.85629,25.25665],[78.85993,25.2577],[78.865,25.2647],[78.86661,25.28039],[78.87281,25.28042],[78.87498,25.27838],[78.8799,25.28598],[78.87176,25.29912],[78.87088,25.30335],[78.87446,25.30845],[78.86397,25.31022],[78.86262,25.31445],[78.86554,25.31844],[78.86757,25.32555],[78.88125,25.32492],[78.88037,25.33211],[78.882,25.34364],[78.88657,25.34339],[78.89266,25.33864],[78.89601,25.3397],[78.91184,25.33256],[78.91389,25.33497],[78.91619,25.33494],[78.92091,25.34359],[78.92254,25.3429],[78.93222,25.33594],[78.93006,25.3295],[78.92672,25.32724],[78.92793,25.32413],[78.93225,25.32517],[78.93276,25.32698],[78.93774,25.32718],[78.94631,25.3339],[78.94771,25.34213],[78.95318,25.34047],[78.95771,25.3459],[78.96062,25.34508],[78.96151,25.34345],[78.95727,25.32494],[78.95748,25.31625],[78.96029,25.30737],[78.95743,25.30224],[78.96387,25.29936],[78.9689,25.29259],[78.97561,25.28814],[78.97687,25.28292],[78.97992,25.27905],[78.97754,25.27673],[78.97353,25.27716],[78.95551,25.28276],[78.94868,25.27418],[78.95392,25.26934],[78.9546,25.26136],[78.94732,25.26179],[78.94514,25.25942],[78.93759,25.25969],[78.93293,25.2633],[78.92925,25.26982],[78.91703,25.27359],[78.91233,25.26924],[78.90841,25.25647],[78.90385,25.25247],[78.90239,25.24589],[78.89977,25.24312],[78.89338,25.24471],[78.88581,25.25375],[78.88092,25.25401],[78.87711,25.24507],[78.87176,25.23922],[78.86953,25.23111],[78.87036,25.22643],[78.87722,25.22374],[78.89058,25.21442],[78.88635,25.21],[78.8868,25.20604],[78.88283,25.19794],[78.87398,25.19137],[78.87064,25.18701],[78.87255,25.18656],[78.87344,25.18389],[78.87285,25.17541],[78.87437,25.17241],[78.87998,25.17106],[78.87865,25.16684],[78.8804,25.15762],[78.88191,25.15689],[78.88771,25.16101],[78.89028,25.16066],[78.89806,25.16862],[78.90296,25.17036],[78.90305,25.17492],[78.90965,25.17787],[78.91189,25.18084],[78.90754,25.18479],[78.92521,25.20445],[78.93433,25.21189],[78.93529,25.2107],[78.94656,25.21429],[78.95165,25.21288],[78.95386,25.21896],[78.95747,25.21746],[78.96308,25.21108],[78.96498,25.21718],[78.97029,25.21644],[78.97594,25.21198],[78.9806,25.21146],[78.98074,25.20532],[78.99277,25.19686],[79.00587,25.19505],[79.00537,25.20708],[79.00614,25.21224],[79.00742,25.212],[79.00103,25.22105],[79.00251,25.22795],[78.99923,25.23151],[79.00119,25.2337],[78.99466,25.23222],[78.98289,25.23425],[78.9846,25.23958],[78.98062,25.23994],[78.97608,25.23666],[78.97472,25.23729],[78.97484,25.24049],[78.97995,25.25452],[78.98522,25.25916],[78.98683,25.26414],[78.99493,25.26708],[78.99437,25.27316],[79.01215,25.27243],[79.01322,25.27405],[79.02285,25.2679],[79.02084,25.26444],[79.02561,25.26128],[79.02432,25.25723],[79.01799,25.24927],[79.02139,25.24538],[79.02177,25.24157],[79.02485,25.24087],[79.02613,25.24222],[79.02847,25.2406],[79.03387,25.24285],[79.03999,25.24268],[79.03365,25.23372],[79.06368,25.22176],[79.06373,25.21487],[79.06057,25.20964],[79.06195,25.20665],[79.06032,25.20107],[79.06242,25.20028],[79.06414,25.20169],[79.06432,25.19947],[79.06205,25.19904],[79.06098,25.19518],[79.06209,25.19333],[79.05967,25.19041],[79.05206,25.18743],[79.04859,25.19345],[79.05402,25.20169],[79.05233,25.20744],[79.04873,25.20609],[79.0445,25.20174],[79.04223,25.1967],[79.03091,25.18448],[79.03157,25.18035],[79.03469,25.17799],[79.03439,25.1741],[79.04004,25.1709],[79.03686,25.1666],[79.03184,25.164],[79.03688,25.16139],[79.03236,25.15645],[79.03342,25.1525],[79.02939,25.14378],[79.02938,25.14029],[79.03533,25.13665],[79.05081,25.13398],[79.0528,25.13816],[79.05548,25.139],[79.05559,25.14133],[79.06125,25.14489],[79.06299,25.14798],[79.068,25.1497],[79.07124,25.16112],[79.07149,25.1702],[79.07388,25.17364],[79.07678,25.17429],[79.08141,25.18134],[79.08862,25.18435],[79.08815,25.18695],[79.09063,25.19081],[79.09545,25.18246],[79.09461,25.17663],[79.09585,25.1747],[79.11317,25.16451],[79.12609,25.16122],[79.116,25.13965],[79.12126,25.13425],[79.13213,25.12711],[79.12437,25.11879],[79.12351,25.11491],[79.12402,25.11078],[79.13189,25.10901],[79.14017,25.10858],[79.14391,25.11487],[79.15772,25.11144],[79.15931,25.10744],[79.16127,25.10893],[79.16226,25.10737],[79.16429,25.1088],[79.1658,25.10719],[79.16887,25.10857],[79.17316,25.10782],[79.17544,25.10893],[79.1779,25.11558],[79.18134,25.11648],[79.186,25.11493],[79.18545,25.12066],[79.18729,25.12638],[79.17462,25.12821],[79.17727,25.13776],[79.17618,25.14006],[79.17732,25.14164],[79.18164,25.14144],[79.18315,25.14335],[79.18515,25.14202],[79.18612,25.1442],[79.19034,25.14331],[79.19221,25.14621],[79.19605,25.14284],[79.20431,25.13992],[79.20246,25.13251],[79.20524,25.12915],[79.20384,25.12561],[79.2136,25.12066],[79.21241,25.11399],[79.21503,25.11141],[79.21718,25.1108],[79.21803,25.11291],[79.22228,25.11504],[79.22737,25.122],[79.24037,25.11326],[79.24544,25.11398],[79.24809,25.11686],[79.24304,25.12298],[79.24611,25.1348],[79.24994,25.13871],[79.24922,25.1403],[79.23634,25.1405],[79.22416,25.14605],[79.23168,25.15126],[79.23335,25.1541],[79.2446,25.15905],[79.25151,25.15938],[79.26489,25.15173],[79.26646,25.14626],[79.26354,25.14071],[79.26881,25.13845],[79.2649,25.13387],[79.26404,25.12824],[79.2599,25.12526],[79.2659,25.12147],[79.27032,25.12053],[79.27279,25.12256],[79.27772,25.11994],[79.27818,25.11743],[79.28255,25.11754],[79.2879,25.12778],[79.28711,25.13186],[79.29241,25.13053],[79.29799,25.13188],[79.30697,25.12931],[79.31122,25.13581],[79.31365,25.13624],[79.31526,25.14715],[79.32313,25.14983],[79.31363,25.16188],[79.31045,25.17213],[79.30437,25.17823],[79.30869,25.17899],[79.31005,25.18188],[79.30851,25.19829],[79.30143,25.20143],[79.29891,25.19146],[79.29226,25.18417],[79.28462,25.19119],[79.28182,25.20891],[79.28543,25.22028],[79.28596,25.22764],[79.28355,25.23798],[79.27925,25.24473],[79.28499,25.24593],[79.2939,25.24033],[79.29919,25.23993],[79.30522,25.23246],[79.30816,25.23194],[79.30687,25.22492],[79.30899,25.22368],[79.32473,25.21851],[79.32853,25.22132],[79.32779,25.21342],[79.32938,25.21146],[79.32821,25.20986],[79.33836,25.19796],[79.34925,25.20654],[79.35189,25.21216],[79.34772,25.21308],[79.34452,25.21726],[79.33607,25.223],[79.33276,25.22828],[79.33451,25.22959],[79.33908,25.22661],[79.34358,25.22706],[79.34534,25.23473],[79.34468,25.25],[79.35086,25.26392],[79.34335,25.26896],[79.33818,25.26802],[79.33521,25.2698],[79.32959,25.25761],[79.32701,25.25579],[79.31652,25.25596],[79.31039,25.25989],[79.30991,25.26262],[79.30336,25.26963],[79.30291,25.27429],[79.29379,25.28358],[79.29008,25.28041],[79.28783,25.2737],[79.28927,25.27278],[79.28268,25.26216],[79.27532,25.26327],[79.27354,25.26061],[79.26447,25.26895],[79.26282,25.27339],[79.26753,25.28462],[79.27052,25.30972],[79.27833,25.32015],[79.2789,25.32399],[79.29568,25.32364],[79.29916,25.32878],[79.29831,25.33287],[79.29989,25.33763],[79.30842,25.33401],[79.32654,25.33525],[79.33097,25.33184],[79.33905,25.32922],[79.34209,25.329],[79.34444,25.33232],[79.35223,25.32988],[79.34697,25.32199],[79.34467,25.32301],[79.34133,25.31893],[79.33965,25.31128],[79.342,25.3105],[79.34136,25.30762],[79.34658,25.30508],[79.34096,25.29955],[79.33615,25.2881],[79.35193,25.28334],[79.35831,25.28424],[79.35661,25.27853],[79.35856,25.27679],[79.35478,25.26884],[79.35528,25.2659],[79.3629,25.2617],[79.36982,25.25999],[79.37021,25.26553],[79.37389,25.2725],[79.3725,25.27299],[79.37307,25.27503],[79.37021,25.27651],[79.36995,25.2798],[79.36734,25.28121],[79.36859,25.29246],[79.38754,25.28582],[79.38665,25.28152],[79.38903,25.27958],[79.39205,25.27957],[79.39457,25.28275],[79.40761,25.27392],[79.4085,25.26163],[79.40678,25.25806],[79.40881,25.25609],[79.4259,25.25354],[79.43745,25.25488],[79.4405,25.25807],[79.44484,25.25916],[79.45013,25.26307],[79.45538,25.26905],[79.45743,25.26852],[79.46227,25.27106],[79.46292,25.27221],[79.46024,25.27407],[79.45858,25.27978],[79.46116,25.28252],[79.46651,25.27975],[79.46722,25.2833],[79.4793,25.27843],[79.47845,25.27301],[79.48154,25.27082],[79.48192,25.26854],[79.49446,25.26691],[79.49307,25.26206],[79.47635,25.26508],[79.47567,25.26099],[79.46246,25.26467],[79.46214,25.25627],[79.45609,25.2475],[79.45351,25.24822],[79.45057,25.24379],[79.44653,25.2442],[79.43266,25.22064],[79.43372,25.21763],[79.43568,25.21684],[79.44883,25.21507],[79.44037,25.19882],[79.43737,25.19682],[79.42172,25.20033],[79.41208,25.20032],[79.4123,25.19831],[79.40836,25.19469],[79.41151,25.19059],[79.41163,25.1827],[79.40307,25.17638],[79.39337,25.17318],[79.3899,25.17011],[79.39225,25.16905],[79.3896,25.16545],[79.38395,25.14271],[79.3907,25.14128],[79.38757,25.13031],[79.39601,25.12836],[79.39308,25.11694],[79.40574,25.10636],[79.41155,25.11018],[79.41439,25.10942],[79.41996,25.11106],[79.42119,25.11518],[79.42613,25.11906],[79.42689,25.12583],[79.42552,25.13015],[79.41577,25.1331],[79.4213,25.13543],[79.42702,25.13543],[79.43527,25.13171],[79.4392,25.1278],[79.43696,25.10547],[79.43892,25.10122],[79.44137,25.10395],[79.44618,25.10479],[79.45211,25.10865],[79.4597,25.12006],[79.46971,25.12476],[79.4715,25.12812],[79.47724,25.12745],[79.47014,25.10797],[79.46823,25.09417],[79.46502,25.08805],[79.4724,25.08778],[79.47528,25.08617],[79.47731,25.08179],[79.48081,25.08153],[79.48284,25.07965],[79.4915,25.07965],[79.49529,25.08355],[79.5,25.08344],[79.50304,25.08888],[79.5036,25.09351],[79.50584,25.09545],[79.51041,25.09683],[79.51873,25.09504],[79.52062,25.09762],[79.52489,25.09697],[79.52611,25.09989],[79.52425,25.10716],[79.51876,25.1181],[79.52112,25.12519],[79.51795,25.12703],[79.52078,25.12699],[79.52391,25.13135],[79.52751,25.13109],[79.53289,25.13331],[79.53238,25.13882],[79.53486,25.14002],[79.53466,25.14215],[79.53891,25.1405],[79.54184,25.14284],[79.54648,25.14836],[79.55164,25.16071],[79.5569,25.16365],[79.56041,25.16758],[79.56041,25.16979],[79.56506,25.17063],[79.56878,25.16898],[79.56936,25.1718],[79.57628,25.16822],[79.57529,25.16707],[79.57725,25.16565],[79.57736,25.1626],[79.57581,25.16189],[79.57805,25.16022],[79.57968,25.15346],[79.58249,25.15088],[79.58914,25.1487],[79.59369,25.14898],[79.59569,25.14337],[79.59981,25.14383],[79.60699,25.15277],[79.60636,25.14976],[79.60762,25.14928],[79.60573,25.14343],[79.60332,25.14293],[79.5998,25.13511],[79.59941,25.12814],[79.60114,25.12749],[79.60834,25.12804],[79.62038,25.13447],[79.62205,25.13593],[79.62154,25.14046],[79.62271,25.14061],[79.6288,25.13422],[79.63642,25.13138],[79.6375,25.12906],[79.64151,25.12692],[79.64922,25.12971],[79.66048,25.12471],[79.67001,25.12284],[79.67322,25.12036],[79.67637,25.1243],[79.67834,25.13178],[79.68336,25.13515],[79.68806,25.13267],[79.69289,25.13324],[79.71725,25.12877],[79.73564,25.13129],[79.73985,25.13535],[79.7485,25.13935],[79.76199,25.13427],[79.76365,25.13005],[79.77262,25.1251],[79.80488,25.11309],[79.80833,25.11003],[79.82397,25.10825],[79.82657,25.10626],[79.8287,25.09932],[79.84504,25.09403],[79.86153,25.09621],[79.85775,25.10082],[79.85427,25.10338],[79.85249,25.10288],[79.85325,25.10583],[79.84983,25.10759],[79.85039,25.11023],[79.84801,25.11053],[79.84683,25.11598],[79.85179,25.12171],[79.85277,25.12563],[79.85162,25.12855],[79.86614,25.14106],[79.86882,25.14053],[79.87491,25.14338],[79.88153,25.14205],[79.8734,25.149],[79.86914,25.14767],[79.86646,25.14982],[79.8656,25.16105],[79.87009,25.17227],[79.86309,25.17719],[79.86537,25.17995],[79.86504,25.18804],[79.85891,25.19354],[79.85602,25.19405],[79.86173,25.20476],[79.86173,25.20953],[79.86366,25.21263],[79.86586,25.21178],[79.86705,25.21355],[79.86577,25.2153],[79.86859,25.21649],[79.86034,25.22221],[79.85275,25.2251],[79.85116,25.22702],[79.85138,25.23556],[79.85732,25.23472],[79.86452,25.23635],[79.8681,25.24079],[79.87239,25.24276],[79.87788,25.25102],[79.89292,25.24151],[79.89631,25.24255],[79.90208,25.24079],[79.90503,25.24902],[79.90749,25.25089],[79.91652,25.24462],[79.91847,25.23752],[79.91755,25.22683],[79.92202,25.23184],[79.92303,25.24178],[79.92762,25.24961],[79.93654,25.24754],[79.93657,25.25371],[79.9388,25.258],[79.94833,25.26866],[79.95325,25.26453],[79.96049,25.26423],[79.96848,25.26655],[79.98078,25.26185],[79.98666,25.26739],[80.00512,25.26571],[80.0043,25.26935],[80.00728,25.27214],[80.00159,25.27384],[80.00109,25.27648],[79.99851,25.27754],[79.99894,25.28597],[80.00192,25.28902],[80.00448,25.28796],[80.00779,25.29178],[80.01093,25.29281],[80.01198,25.29563],[80.01905,25.29909],[80.02221,25.29762],[80.02265,25.30349],[80.02095,25.30544],[80.02426,25.31196],[80.01963,25.31579],[80.01779,25.32253],[80.02338,25.32624],[80.02412,25.32947],[80.02682,25.33154],[80.02584,25.33467],[80.02743,25.3346],[80.02742,25.33665],[80.03342,25.34202],[80.03776,25.34027],[80.03827,25.3385],[80.03895,25.33971],[80.04295,25.33802],[80.06146,25.34031],[80.0647,25.33833],[80.06704,25.33943],[80.07148,25.33842],[80.07267,25.33695],[80.08207,25.34463],[80.08878,25.35585],[80.10096,25.35087],[80.10314,25.35154],[80.10529,25.34855],[80.11737,25.34152],[80.11883,25.34329],[80.12658,25.34026],[80.1311,25.33423],[80.14178,25.35066],[80.14939,25.35761],[80.15808,25.35905],[80.16304,25.36299],[80.16716,25.36408],[80.16734,25.3733],[80.16896,25.37686],[80.1821,25.3768],[80.189,25.37924],[80.19493,25.37816],[80.19655,25.38117],[80.19587,25.3991],[80.19711,25.40083],[80.196,25.40205],[80.20237,25.41404],[80.20756,25.41136],[80.20547,25.40682],[80.20618,25.40447],[80.22036,25.39813],[80.22082,25.39674],[80.23173,25.40236],[80.23616,25.40782],[80.24291,25.40357],[80.25342,25.40083],[80.25554,25.40438],[80.25551,25.40956],[80.26127,25.41607],[80.26384,25.42402],[80.26793,25.4221],[80.27992,25.42076],[80.28506,25.41546],[80.28561,25.41711],[80.28845,25.41703],[80.31541,25.38887],[80.31655,25.37761],[80.32031,25.36605],[80.31127,25.36057],[80.30955,25.35436],[80.31238,25.34407],[80.31819,25.33926],[80.32267,25.33209],[80.31885,25.32223],[80.32136,25.31232],[80.31851,25.30506],[80.31117,25.29823],[80.3108,25.28641],[80.32551,25.27823],[80.34821,25.27845],[80.35143,25.27716],[80.35497,25.27092],[80.35681,25.2618],[80.36587,25.25107],[80.36939,25.24953],[80.36963,25.24763],[80.38358,25.23729],[80.38867,25.23751],[80.39626,25.24643],[80.40013,25.24634],[80.40334,25.24403],[80.41075,25.22408],[80.40773,25.21802],[80.41209,25.21324],[80.41458,25.20565],[80.42209,25.19741],[80.43167,25.17762],[80.42819,25.16953],[80.41989,25.16318],[80.40988,25.16296],[80.3902,25.15839],[80.38508,25.15561],[80.37655,25.14583],[80.37488,25.14553],[80.37348,25.1474],[80.36225,25.14437],[80.35782,25.1425],[80.35456,25.13836],[80.35385,25.13595],[80.35641,25.13216],[80.35232,25.13095],[80.35534,25.12849],[80.35472,25.12642],[80.36915,25.11777],[80.37388,25.11654],[80.37571,25.11756],[80.37608,25.11636],[80.37473,25.1087],[80.3701,25.10222],[80.37048,25.09972],[80.36241,25.09756],[80.36008,25.09388],[80.35654,25.09489],[80.35404,25.09155],[80.35134,25.09139],[80.35034,25.08935],[80.35212,25.08906],[80.35161,25.08816],[80.34843,25.08665],[80.34838,25.08278],[80.35154,25.08118],[80.34578,25.0649],[80.34908,25.06242],[80.35597,25.06157],[80.35423,25.05933],[80.3562,25.05736],[80.35533,25.05563],[80.35071,25.05317],[80.34452,25.05574],[80.34365,25.05347],[80.34067,25.05443],[80.34046,25.05862],[80.33675,25.05907],[80.33419,25.05636],[80.33148,25.04798],[80.32119,25.04992],[80.3114,25.04423],[80.30762,25.04642],[80.30465,25.05086],[80.3029,25.0511],[80.30368,25.05175],[80.2997,25.05365],[80.29691,25.05319],[80.29054,25.05954],[80.2849,25.05396],[80.2855,25.04974],[80.28809,25.04661],[80.28787,25.03812],[80.27362,25.02597],[80.29238,25.0167],[80.29975,25.01558],[80.30021,25.01283],[80.3044,25.01109],[80.30826,25.00584],[80.31338,25.00352],[80.32063,25.00283],[80.32314,24.99774],[80.33099,24.9922],[80.34166,25.01348],[80.34517,25.01673],[80.352,25.01751],[80.35345,25.01339],[80.35738,25.01158],[80.36295,25.0236],[80.36919,25.01993],[80.37186,25.02084],[80.37746,25.01954],[80.37588,25.01467],[80.37849,25.00435],[80.38732,25.00431],[80.39388,25.00836],[80.39644,25.01195],[80.39144,25.01308],[80.3909,25.01615],[80.38512,25.01826],[80.38694,25.02395],[80.37785,25.02702],[80.3833,25.03527],[80.38568,25.03557],[80.38707,25.03246],[80.38984,25.03556],[80.38536,25.04183],[80.37826,25.04043],[80.37051,25.04269],[80.37483,25.04894],[80.37266,25.05336],[80.37366,25.05591],[80.38097,25.05186],[80.388,25.05091],[80.38846,25.05503],[80.39216,25.05847],[80.39227,25.06381],[80.39954,25.06435],[80.40062,25.06957],[80.4023,25.06575],[80.4053,25.06772],[80.40657,25.0637],[80.40412,25.06167],[80.40872,25.05525],[80.41449,25.05731],[80.41814,25.06901],[80.41615,25.07026],[80.41611,25.07318],[80.42311,25.06868],[80.42835,25.06734],[80.42889,25.06565],[80.43303,25.06576],[80.43727,25.06934],[80.43956,25.07514],[80.44322,25.07415],[80.44401,25.07797],[80.44965,25.07849],[80.44996,25.07518],[80.45271,25.07474],[80.44642,25.07112],[80.45146,25.06897],[80.45143,25.06221],[80.45706,25.06331],[80.46357,25.06803],[80.46852,25.0606],[80.46974,25.04719],[80.47271,25.04603],[80.46999,25.04432],[80.47153,25.04239],[80.47414,25.04276],[80.47515,25.03794],[80.48174,25.03802],[80.48357,25.0409],[80.4865,25.04053],[80.48882,25.04348],[80.50188,25.03725],[80.49559,25.0291],[80.48972,25.03134],[80.48807,25.03019],[80.48485,25.03367],[80.48271,25.03111],[80.4784,25.0326],[80.47435,25.03053],[80.46464,25.03575],[80.46317,25.03981],[80.45636,25.03934],[80.45445,25.04222],[80.44895,25.04055],[80.44767,25.03693],[80.44585,25.03736],[80.44139,25.03341],[80.43309,25.02374],[80.43552,25.02155],[80.43938,25.02299],[80.44411,25.02085],[80.44747,25.01422],[80.45245,25.01515],[80.45317,25.01346],[80.45124,25.00991],[80.45487,25.00573],[80.45384,25.00313],[80.44353,25.0041],[80.44288,25.00207],[80.43679,25.00148],[80.43565,24.99826],[80.43718,24.99741],[80.43703,24.99452],[80.44476,24.99442],[80.44691,25.00203],[80.45188,24.99944],[80.45652,25.00402],[80.46285,25.00253],[80.46396,24.99538],[80.45592,24.99125],[80.45943,24.98483],[80.45614,24.98164],[80.46524,24.97577],[80.47644,24.97646],[80.47866,24.97395],[80.47836,24.97994],[80.48039,24.986],[80.48829,24.98988],[80.49259,24.98938],[80.4975,24.99565],[80.49662,24.99887],[80.4993,25.00621],[80.50079,25.00447],[80.50541,25.00538],[80.50962,25.00313],[80.51476,25.00295],[80.51762,25.00878],[80.52359,25.00658],[80.52503,25.00356],[80.53084,25.00125],[80.5386,25.00043],[80.54371,25.0029],[80.54948,25.00247],[80.54339,25.01134],[80.54437,25.01405],[80.54137,25.01668],[80.54167,25.01904],[80.54393,25.0198],[80.54745,25.02493],[80.54816,25.02993],[80.54607,25.03242],[80.54082,25.03245],[80.5323,25.03792],[80.51832,25.04094],[80.51415,25.04336],[80.50058,25.04153],[80.50307,25.04524],[80.50066,25.04781],[80.50097,25.05146],[80.50645,25.05384],[80.50899,25.05879],[80.50183,25.07069],[80.49641,25.07295],[80.50338,25.07305],[80.50663,25.08397],[80.50053,25.08722],[80.49246,25.08823],[80.48858,25.09094],[80.48687,25.09018],[80.48077,25.09291],[80.47953,25.09634],[80.48152,25.09587],[80.48065,25.09868],[80.48272,25.10021],[80.48518,25.09794],[80.4876,25.09883],[80.48791,25.09671],[80.48957,25.09852],[80.49235,25.09801],[80.49311,25.09963],[80.4983,25.09659],[80.49974,25.10031],[80.50479,25.09953],[80.51813,25.0947],[80.52097,25.09109],[80.5191,25.08227],[80.5216,25.07605],[80.53349,25.07014],[80.54074,25.07172],[80.5458,25.0644],[80.55223,25.06282],[80.56758,25.07336],[80.56812,25.07748],[80.56665,25.07802],[80.56845,25.08688],[80.57586,25.08153],[80.58219,25.08212],[80.59511,25.07942],[80.59621,25.07642],[80.59726,25.07768],[80.60002,25.07335],[80.60328,25.0722],[80.60424,25.06901],[80.61314,25.0657],[80.61446,25.06658],[80.61415,25.06921],[80.61115,25.07713],[80.60986,25.07938],[80.6062,25.08016],[80.60673,25.08628],[80.60281,25.08518],[80.5982,25.08726],[80.59943,25.08024],[80.59603,25.07981],[80.59712,25.08185],[80.59229,25.0902],[80.59772,25.0889],[80.59785,25.09117],[80.59371,25.0945],[80.59613,25.09908],[80.59233,25.1032],[80.59511,25.10519],[80.59756,25.11393],[80.60021,25.11391],[80.6019,25.11637],[80.60719,25.11791],[80.60638,25.1212],[80.60244,25.12254],[80.60003,25.12615],[80.59677,25.12791],[80.595,25.1272],[80.59764,25.14125],[80.59678,25.14375],[80.6007,25.14985],[80.60654,25.15036],[80.60844,25.14983],[80.60967,25.14569],[80.61268,25.14319],[80.6105,25.13756],[80.61034,25.12901],[80.61221,25.12749],[80.61643,25.12835],[80.62002,25.13392],[80.62237,25.13494],[80.62851,25.1334],[80.63455,25.12863],[80.63254,25.1225],[80.63823,25.11687],[80.63574,25.11316],[80.63237,25.11305],[80.63078,25.11598],[80.62741,25.11741],[80.62445,25.11488],[80.62501,25.11127],[80.61958,25.10816],[80.61875,25.10649],[80.62077,25.10498],[80.61881,25.10049],[80.61133,25.10074],[80.60808,25.09843],[80.61025,25.09577],[80.62394,25.08869],[80.62603,25.08294],[80.62765,25.08535],[80.62581,25.08671],[80.62837,25.08716],[80.62881,25.09043],[80.63421,25.08988],[80.63389,25.08765],[80.63931,25.08715],[80.64097,25.08925],[80.63947,25.09081],[80.64042,25.09249],[80.64166,25.09201],[80.64089,25.08724],[80.64266,25.08857],[80.64768,25.08731],[80.65193,25.08378],[80.65597,25.08471],[80.65839,25.08087],[80.65867,25.07091],[80.66174,25.06761],[80.66915,25.07311],[80.67292,25.08252],[80.67877,25.07704],[80.68501,25.07661],[80.68289,25.07429],[80.68431,25.07306],[80.68244,25.07014],[80.68403,25.06773],[80.67386,25.06061],[80.67581,25.05583],[80.68026,25.05771],[80.68103,25.05329],[80.67974,25.04846],[80.69117,25.05173],[80.69602,25.05501],[80.70838,25.05673],[80.72072,25.06401],[80.73234,25.06369],[80.73431,25.05594],[80.73691,25.05296],[80.73775,25.05466],[80.74303,25.05595],[80.74253,25.05383],[80.75107,25.05407],[80.75206,25.05676],[80.76171,25.05601],[80.76588,25.05289],[80.77576,25.05482],[80.78467,25.06167],[80.78779,25.06139],[80.78409,25.06885],[80.78363,25.07595],[80.77193,25.07821],[80.76999,25.07717],[80.76886,25.07923],[80.75713,25.08232],[80.75524,25.08679],[80.7575,25.09083],[80.7541,25.09031],[80.75193,25.09289],[80.74336,25.09272],[80.7366,25.09487],[80.73512,25.08924],[80.72545,25.09143],[80.72324,25.09465],[80.72324,25.10507],[80.72631,25.11116],[80.73066,25.11264],[80.72735,25.11855],[80.72385,25.12158],[80.72286,25.12027],[80.71087,25.11976],[80.70763,25.11765],[80.7041,25.12227],[80.70439,25.12837],[80.70761,25.13054],[80.71811,25.13034],[80.72011,25.13241],[80.71921,25.13467],[80.72089,25.13886],[80.72042,25.1358],[80.72157,25.13529],[80.72318,25.13714],[80.72763,25.13768],[80.73024,25.14632],[80.73165,25.14495],[80.73189,25.13936],[80.7336,25.14048],[80.73483,25.13936],[80.73258,25.13321],[80.73675,25.13536],[80.74195,25.12363],[80.74545,25.12911],[80.75391,25.1328],[80.7618,25.13483],[80.77206,25.13263],[80.77903,25.13861],[80.77878,25.14226],[80.78417,25.13694],[80.78171,25.13363],[80.78638,25.12944],[80.79136,25.13168],[80.79475,25.13059],[80.79708,25.13657],[80.80078,25.1354],[80.80376,25.13757],[80.8084,25.13679],[80.81319,25.13467],[80.81527,25.13165],[80.81195,25.12408],[80.81597,25.12241],[80.81724,25.12423],[80.8225,25.12395],[80.82665,25.12145],[80.82439,25.11613],[80.82781,25.11522],[80.82989,25.10006],[80.83372,25.10349],[80.83408,25.10603],[80.83605,25.10658],[80.83554,25.10513],[80.83814,25.10431],[80.83911,25.1055],[80.83754,25.10593],[80.84061,25.10861],[80.8407,25.11429],[80.83891,25.11893],[80.84061,25.1232],[80.83808,25.12518],[80.83645,25.13056],[80.83784,25.14143],[80.83982,25.14455],[80.83991,25.15549],[80.84326,25.15952],[80.8491,25.1626],[80.84622,25.17172],[80.84303,25.17599],[80.83879,25.17615],[80.83928,25.17994],[80.83814,25.18035],[80.84415,25.1869],[80.84508,25.18494],[80.85563,25.18247],[80.85717,25.18068],[80.86415,25.18278],[80.86808,25.17845],[80.86879,25.17451],[80.87238,25.17809],[80.8795,25.18126],[80.88057,25.18687],[80.88466,25.18794],[80.88432,25.18612],[80.88197,25.18507],[80.88208,25.18244],[80.88518,25.1818],[80.88618,25.17908],[80.88876,25.17812],[80.88924,25.17549],[80.89891,25.16632],[80.90372,25.15931],[80.91291,25.15908],[80.89454,25.13818],[80.89573,25.13529],[80.89478,25.13401],[80.88863,25.13252],[80.87952,25.13834],[80.87886,25.12565],[80.87494,25.12026],[80.86844,25.11568],[80.86925,25.11225],[80.87423,25.10862],[80.87459,25.10415],[80.87859,25.1021],[80.87959,25.09925],[80.86718,25.07951],[80.8676,25.07534],[80.86915,25.07284],[80.87642,25.0734],[80.87804,25.06547],[80.86966,25.05886],[80.86375,25.05652],[80.85546,25.04731],[80.8464,25.04444],[80.84012,25.03342],[80.83178,25.03287],[80.83655,25.02269],[80.84303,25.01962],[80.85513,25.00399],[80.85174,24.98825],[80.84589,24.98392],[80.83292,24.98198],[80.82587,24.9762],[80.82543,24.96966],[80.82379,24.96777],[80.81588,24.96621],[80.81383,24.96749],[80.81389,24.96936],[80.81137,24.97023],[80.7998,24.96841],[80.79221,24.96487],[80.79518,24.96023],[80.79951,24.95854],[80.80517,24.95351],[80.80993,24.95273],[80.80584,24.94368],[80.80817,24.93868],[80.82005,24.93291],[80.81391,24.92743],[80.81199,24.92255],[80.8298,24.91801],[80.83254,24.92001],[80.83723,24.92032],[80.83744,24.92833],[80.85133,24.93157],[80.85667,24.93158],[80.86073,24.92867],[80.87324,24.93581],[80.87757,24.9345],[80.88083,24.93534],[80.87902,24.93677],[80.87897,24.93949],[80.89172,24.94511],[80.89546,24.94511],[80.89946,24.94004],[80.90447,24.93806],[80.90708,24.93505],[80.90524,24.93866],[80.90016,24.94121],[80.89762,24.94503],[80.89915,24.94862],[80.92835,24.96106],[80.93635,24.96198],[80.946,24.96627],[80.95006,24.96441],[80.95095,24.95896],[80.95405,24.95434],[80.94771,24.94097],[80.9557,24.94055],[80.95879,24.93858],[80.95655,24.92989],[80.95729,24.92306],[80.9557,24.92192],[80.95752,24.92181],[80.95718,24.91785],[80.95992,24.91921],[80.96186,24.92576],[80.96574,24.92607],[80.9646,24.92982],[80.96825,24.93003],[80.9702,24.93305],[80.97385,24.93419],[80.98538,24.93288],[80.98618,24.9306],[80.98276,24.92664],[80.98675,24.9232],[80.98763,24.92604],[80.99653,24.92811],[80.99722,24.93288],[81.0004,24.93604],[81.00451,24.93722],[81.00952,24.93599],[81.01316,24.92793],[81.01718,24.93102],[81.02307,24.92762],[81.02467,24.93309],[81.02885,24.93326],[81.02261,24.93578],[81.0212,24.93945],[81.01354,24.94776],[81.01627,24.9515],[81.02558,24.94005],[81.02419,24.94342],[81.02548,24.94475],[81.02835,24.94349],[81.02585,24.94875],[81.02856,24.94859],[81.03373,24.95261],[81.0499,24.94981],[81.05518,24.95216],[81.06085,24.95192],[81.06625,24.94903],[81.0705,24.94984],[81.07971,24.94828],[81.08451,24.94991],[81.0903,24.94494],[81.08704,24.93322],[81.0897,24.93152],[81.09046,24.92887],[81.09336,24.92899],[81.0963,24.92119],[81.10388,24.9183],[81.1123,24.90737],[81.11808,24.90787],[81.12248,24.89967],[81.1396,24.88753],[81.14124,24.89025],[81.13991,24.89675],[81.14165,24.90324],[81.14512,24.90672],[81.14546,24.9103],[81.1504,24.9137],[81.1602,24.91356],[81.16079,24.91912],[81.15852,24.92344],[81.16132,24.92792],[81.16378,24.92831],[81.16371,24.93764],[81.16606,24.93816],[81.16402,24.94265],[81.16801,24.95523],[81.17221,24.9573],[81.17937,24.94988],[81.18515,24.95204],[81.18881,24.94472],[81.19223,24.94501],[81.19715,24.94147],[81.19737,24.93867],[81.20097,24.93801],[81.20354,24.93266],[81.20719,24.93043],[81.2007,24.93178],[81.19759,24.92795],[81.19162,24.92718],[81.19291,24.92535],[81.19639,24.92468],[81.20162,24.9269],[81.2035,24.92476],[81.21017,24.92262],[81.21387,24.92756],[81.21964,24.92862],[81.22061,24.93453],[81.21935,24.93511],[81.2173,24.93239],[81.21523,24.93288],[81.21318,24.94532],[81.21114,24.94614],[81.21463,24.94852],[81.21443,24.95796],[81.20714,24.96448],[81.22028,24.97382],[81.22087,24.97761],[81.21643,24.98627],[81.20892,24.99262],[81.21208,24.9957],[81.21304,25.0],[81.2208,24.9974],[81.22666,25.00196],[81.23935,25.01922],[81.24183,25.02587],[81.2451,25.02752],[81.25373,25.0389],[81.25857,25.049],[81.26382,25.05276],[81.26204,25.05808],[81.2689,25.06745],[81.26506,25.07355],[81.25949,25.07574],[81.26667,25.08439],[81.26156,25.08837],[81.25849,25.09752],[81.255,25.09854],[81.25214,25.10208],[81.25327,25.10776],[81.2572,25.11106],[81.26133,25.11018],[81.26472,25.11669],[81.26479,25.12228],[81.26276,25.12538],[81.26818,25.12809],[81.26851,25.13156],[81.26615,25.13969],[81.27755,25.14651],[81.28167,25.15206],[81.2751,25.16346],[81.27752,25.166],[81.28897,25.16188],[81.29658,25.16269],[81.29921,25.16447],[81.31343,25.16374],[81.3155,25.15888],[81.31229,25.15591],[81.31322,25.14945],[81.31192,25.13756],[81.31432,25.13539],[81.31569,25.12709],[81.3179,25.1254],[81.31624,25.12349],[81.31857,25.12282],[81.32127,25.11877],[81.32147,25.11277],[81.33108,25.11463],[81.32629,25.11921],[81.3252,25.12239],[81.32401,25.12763],[81.32503,25.13651],[81.31867,25.14397],[81.31956,25.15678],[81.32232,25.16193],[81.33452,25.16929],[81.34528,25.1619],[81.35273,25.16202],[81.35402,25.16391],[81.35728,25.1631],[81.3617,25.15923],[81.36268,25.15306],[81.36882,25.1439],[81.37573,25.14173],[81.37541,25.13904],[81.3709,25.13484],[81.38228,25.13608],[81.38538,25.13216],[81.39261,25.13096],[81.39405,25.12924],[81.39326,25.12623],[81.3954,25.12616],[81.39521,25.12274],[81.39992,25.11922],[81.41429,25.12093],[81.40853,25.12523],[81.4057,25.12911],[81.40619,25.13129],[81.4154,25.12844],[81.42187,25.12855],[81.42561,25.1326],[81.42892,25.13049],[81.43852,25.13033],[81.43693,25.12815],[81.4379,25.12389],[81.44513,25.11608],[81.44668,25.11109],[81.4457,25.10926],[81.44766,25.10717],[81.4445,25.10594],[81.43426,25.10723],[81.43069,25.10558],[81.42717,25.10712],[81.41371,25.10792],[81.40727,25.10491],[81.41759,25.10235],[81.42407,25.09809],[81.42993,25.09762],[81.43677,25.09408],[81.45451,25.09039],[81.46481,25.09011],[81.46733,25.0884],[81.46506,25.08381],[81.46927,25.07979],[81.48205,25.07675],[81.48647,25.07346],[81.49113,25.07232],[81.49364,25.08027],[81.49844,25.07874],[81.49947,25.07682],[81.50108,25.07743],[81.50298,25.08971],[81.50024,25.09638],[81.50665,25.09553],[81.5181,25.10074],[81.50307,25.10687],[81.49826,25.10506],[81.49583,25.10853],[81.49032,25.10945],[81.48866,25.11421],[81.48414,25.11595],[81.48744,25.12377],[81.48076,25.12764],[81.48005,25.13255],[81.48519,25.13483],[81.49388,25.13208],[81.49638,25.12898],[81.49618,25.14047],[81.49951,25.14868],[81.5088,25.14782],[81.50998,25.14601],[81.5139,25.14564],[81.51548,25.14304],[81.51916,25.14315],[81.52724,25.13809],[81.5309,25.14521],[81.52658,25.14779],[81.5227,25.14667],[81.52992,25.15161],[81.5365,25.16055],[81.53099,25.1647],[81.52496,25.16457],[81.52533,25.16563],[81.51792,25.1705],[81.51617,25.17407],[81.51464,25.17358],[81.51248,25.17734],[81.51441,25.17953],[81.5146,25.18434],[81.51858,25.18605],[81.52496,25.18386],[81.52746,25.18085],[81.53284,25.18239],[81.53443,25.18066],[81.5398,25.18036],[81.53991,25.18608],[81.54546,25.18506],[81.55411,25.18609],[81.55594,25.18358],[81.56291,25.18651],[81.57017,25.19208],[81.57857,25.19085],[81.59562,25.18182],[81.59508,25.17749],[81.58846,25.16577],[81.59436,25.16373],[81.60463,25.16303],[81.60894,25.16469],[81.61182,25.16392],[81.6154,25.16901],[81.61876,25.1674],[81.62042,25.16242],[81.62621,25.16047],[81.62418,25.15614],[81.62571,25.14485],[81.62332,25.14104],[81.62061,25.14029],[81.61459,25.14439],[81.61046,25.1391],[81.60258,25.13615],[81.59806,25.13134],[81.60233,25.12725],[81.60059,25.12403],[81.5983,25.12378],[81.6,25.12313],[81.59804,25.12229],[81.59696,25.11909],[81.60061,25.11627],[81.60639,25.11627],[81.61011,25.11252],[81.60849,25.11174],[81.61023,25.10876],[81.60832,25.09605],[81.61147,25.09506],[81.61466,25.10004],[81.61632,25.10773],[81.61897,25.11013],[81.62314,25.11099],[81.62365,25.11223],[81.6205,25.11565],[81.62408,25.12004],[81.63294,25.11712],[81.63171,25.11178],[81.62834,25.10679],[81.63206,25.10643],[81.63357,25.1027],[81.64086,25.09849],[81.62861,25.09474],[81.62879,25.09128],[81.62143,25.09016],[81.61579,25.08034],[81.60543,25.07848],[81.60035,25.07385],[81.61054,25.06865],[81.60914,25.06562],[81.61745,25.06092],[81.61692,25.05879],[81.61032,25.06107],[81.61143,25.0565],[81.62765,25.05263],[81.63331,25.05934],[81.64122,25.05676],[81.65148,25.06716],[81.6527,25.07082],[81.66051,25.07161],[81.66267,25.07417],[81.66416,25.07259],[81.66654,25.07511],[81.66856,25.07171],[81.6672,25.06136],[81.67088,25.05991],[81.67797,25.06204],[81.68232,25.06119],[81.68574,25.05839],[81.68862,25.05174],[81.69151,25.05148],[81.69344,25.0488],[81.68872,25.03954],[81.68975,25.03895],[81.7071,25.03523],[81.71331,25.03607],[81.72141,25.03825],[81.72168,25.04232],[81.71909,25.04184],[81.72388,25.05017],[81.73044,25.04746],[81.73151,25.04864],[81.74041,25.04483],[81.74256,25.04144],[81.74188,25.03894],[81.7467,25.03742],[81.7458,25.03347],[81.755,25.03484],[81.75517,25.03169],[81.758,25.02739],[81.78089,25.01888],[81.79221,25.00441],[81.80377,25.0017],[81.80559,25.00524],[81.80464,25.0059],[81.81038,25.01269],[81.81401,25.01069],[81.81772,25.0152],[81.81949,25.01414],[81.82305,25.01712],[81.82568,25.01679],[81.8319,25.01213],[81.83482,25.01697],[81.84874,25.01164],[81.84865,25.00822],[81.85347,25.00268],[81.85955,25.00314],[81.86521,25.00087],[81.86642,25.00235],[81.87255,24.99976],[81.87419,24.99517],[81.87688,24.99579],[81.87688,24.9994],[81.8909,24.99576],[81.88991,24.99186],[81.89131,24.98887],[81.89548,24.98968],[81.90169,24.9994],[81.8974,25.00352],[81.89484,25.00782],[81.89556,25.00952],[81.89812,25.01064],[81.90727,25.00567],[81.90634,24.99503],[81.90146,24.9865],[81.90299,24.98374],[81.90593,24.98272],[81.90517,24.98137],[81.90786,24.98012],[81.90408,24.9722],[81.90751,24.97076],[81.90805,24.96847],[81.90939,24.9607],[81.9075,24.95951],[81.91006,24.95243],[81.90907,24.94264],[81.91036,24.93738],[81.91406,24.93626],[81.91965,24.92812],[81.91755,24.92328],[81.91902,24.9219],[81.91835,24.91952],[81.90671,24.9044],[81.90643,24.90026],[81.90353,24.89875],[81.90786,24.89654],[81.90479,24.89507],[81.90574,24.89269],[81.90284,24.89168],[81.90442,24.89139],[81.90355,24.89001],[81.90495,24.88678],[81.90891,24.88574],[81.90657,24.88345],[81.90789,24.88135],[81.91463,24.88072],[81.9165,24.8772],[81.92057,24.87739],[81.92006,24.87432],[81.9255,24.8722],[81.92801,24.87403],[81.93372,24.8707],[81.93463,24.86808],[81.93272,24.85874],[81.93768,24.85285],[81.9365,24.85201],[81.93794,24.84973],[81.94357,24.84658],[81.9424,24.8452],[81.94417,24.84124],[81.96061,24.83654],[81.96527,24.82704],[81.96792,24.82902],[81.96875,24.83618],[81.97154,24.83893],[81.98531,24.83925],[81.99225,24.84224],[82.00311,24.84145],[82.01072,24.84691],[82.01694,24.84598],[82.024,24.8412],[82.03123,24.84024],[82.04521,24.82862],[82.05143,24.83052],[82.07157,24.81918],[82.07505,24.82194],[82.09765,24.81615],[82.1057,24.80538],[82.11032,24.80055],[82.11218,24.80052],[82.11561,24.78444],[82.12032,24.78813],[82.1231,24.78694],[82.12593,24.78831],[82.12958,24.78563],[82.13009,24.78809],[82.13388,24.78798],[82.13188,24.79161],[82.13866,24.79946],[82.14435,24.79702],[82.14973,24.79191],[82.15092,24.79462],[82.15327,24.79158],[82.16702,24.78544],[82.16774,24.79118],[82.17133,24.79059],[82.17823,24.79287],[82.1789,24.79507],[82.16965,24.79805],[82.16665,24.80088],[82.16996,24.79938],[82.17512,24.80091],[82.17818,24.81089],[82.1848,24.80971],[82.1911,24.81069],[82.1994,24.81775],[82.20359,24.8192],[82.19814,24.81627],[82.19162,24.80576],[82.18876,24.80579],[82.18388,24.7989],[82.18426,24.79563],[82.19542,24.79187],[82.2033,24.7923],[82.20632,24.79612],[82.21215,24.79364],[82.21615,24.79414],[82.21729,24.79018],[82.21512,24.79021],[82.21183,24.78671],[82.20921,24.77844],[82.21792,24.77668],[82.21404,24.77287],[82.21035,24.77472],[82.20944,24.77153],[82.20402,24.77623],[82.19655,24.77806],[82.1949,24.77519],[82.20006,24.76862],[82.19542,24.76417],[82.2037,24.76049],[82.20326,24.75834],[82.19747,24.74978],[82.1975,24.74677],[82.18664,24.73863],[82.18398,24.73885],[82.17745,24.73233],[82.18132,24.73256],[82.18525,24.73572],[82.18815,24.73419],[82.19142,24.73759],[82.19709,24.73816],[82.19953,24.73525],[82.20326,24.73404],[82.20497,24.73578],[82.20914,24.73385],[82.21404,24.73443],[82.21592,24.73054],[82.21574,24.72649],[82.21936,24.7246],[82.21997,24.72195],[82.2213,24.72233],[82.2213,24.72721],[82.21888,24.72845],[82.22003,24.73105],[82.21755,24.73746],[82.21058,24.73979],[82.20957,24.74212],[82.20641,24.74352],[82.20657,24.74719],[82.21585,24.75488],[82.21873,24.75013],[82.22225,24.74825],[82.22227,24.74657],[82.22884,24.74558],[82.22928,24.74935],[82.22689,24.75273],[82.22813,24.75436],[82.22475,24.75783],[82.22646,24.76124],[82.23136,24.75598],[82.23132,24.75926],[82.23324,24.75826],[82.23413,24.76059],[82.23542,24.7602],[82.23791,24.75501],[82.23744,24.75174],[82.23993,24.75078],[82.24257,24.74467],[82.24516,24.74441],[82.24623,24.75445],[82.24874,24.7562],[82.24981,24.76284],[82.2466,24.76662],[82.24614,24.76966],[82.24666,24.77104],[82.25093,24.76993],[82.24947,24.76813],[82.25081,24.75732],[82.25327,24.75156],[82.25558,24.7521],[82.25548,24.74824],[82.25067,24.73547],[82.24771,24.73286],[82.24522,24.73279],[82.2447,24.7307],[82.24982,24.7194],[82.25097,24.71147],[82.25024,24.70991],[82.24616,24.70906],[82.24518,24.70351],[82.25011,24.69745],[82.24693,24.69225],[82.24482,24.69202],[82.24231,24.69478],[82.2394,24.69021],[82.2354,24.69039],[82.23452,24.68563],[82.22971,24.68179],[82.2335,24.68099],[82.23654,24.6767],[82.2351,24.6709],[82.23971,24.66127],[82.24115,24.66205],[82.24011,24.66966],[82.24517,24.67092],[82.24753,24.66866],[82.249,24.67116],[82.25109,24.66808],[82.25419,24.67018],[82.25634,24.66861],[82.25708,24.66446],[82.25527,24.66045],[82.26087,24.66131],[82.26351,24.66591],[82.27255,24.67355],[82.27257,24.67541],[82.26456,24.67639],[82.26286,24.67826],[82.26876,24.68341],[82.28062,24.67541],[82.28519,24.67578],[82.2853,24.66838],[82.28801,24.66586],[82.29836,24.66552],[82.29925,24.66726],[82.30314,24.6671],[82.3036,24.66331],[82.29636,24.66125],[82.3039,24.65369],[82.29998,24.64698],[82.3038,24.64376],[82.30084,24.64246],[82.30188,24.63914],[82.30021,24.63433],[82.30368,24.62519],[82.29996,24.61207],[82.29541,24.6089],[82.2968,24.60584],[82.29896,24.60486],[82.30168,24.6078],[82.31543,24.60782],[82.31964,24.6062],[82.32197,24.61246],[82.32961,24.61843],[82.33617,24.62],[82.33706,24.61895],[82.33864,24.62036],[82.34433,24.61553],[82.34718,24.61663],[82.34963,24.6151],[82.35559,24.60423],[82.36477,24.5972],[82.40197,24.59136],[82.40414,24.59632],[82.4114,24.59454],[82.41611,24.5912],[82.41715,24.59435],[82.42008,24.59481],[82.42202,24.59962],[82.41081,24.61374],[82.41327,24.61647],[82.41321,24.62031],[82.409,24.62524],[82.40968,24.63542],[82.41776,24.64127],[82.41612,24.64526],[82.41845,24.65172],[82.41625,24.65271],[82.41594,24.65631],[82.41202,24.6597],[82.4115,24.66531],[82.41389,24.67017],[82.40677,24.67698],[82.40868,24.67933],[82.4062,24.68112],[82.41577,24.68949],[82.4155,24.69226],[82.42945,24.70259],[82.43845,24.70101],[82.45303,24.68854],[82.45373,24.68453],[82.45024,24.67441],[82.45672,24.67319],[82.46832,24.67398],[82.46864,24.67562],[82.47983,24.67834],[82.48353,24.67701],[82.48924,24.67137],[82.49395,24.67093],[82.50506,24.67164],[82.51074,24.67527],[82.51741,24.67344],[82.52295,24.67627],[82.52978,24.65253],[82.53963,24.64785],[82.57984,24.65929],[82.59304,24.66878],[82.60718,24.67554],[82.6366,24.68235],[82.65747,24.69511],[82.67085,24.69703],[82.67615,24.69071],[82.68657,24.68579],[82.70089,24.67602],[82.70179,24.67166],[82.69875,24.66253],[82.6982,24.6462],[82.7067,24.63627],[82.70942,24.63907],[82.71796,24.64255],[82.7168,24.63709],[82.71817,24.63467],[82.72284,24.6384],[82.72813,24.63535],[82.73229,24.64428],[82.74106,24.64161],[82.74633,24.64208],[82.75309,24.63695],[82.75352,24.64091],[82.76208,24.64259],[82.7743,24.64177],[82.77193,24.6349],[82.77227,24.62193],[82.77562,24.62047],[82.7754,24.61466],[82.77955,24.61394],[82.77007,24.6037],[82.76989,24.59897],[82.76546,24.59577],[82.78017,24.59462],[82.7916,24.59818],[82.80303,24.59768],[82.80318,24.58758],[82.80122,24.583],[82.80272,24.5826],[82.80308,24.57912],[82.80125,24.57686],[82.80564,24.56978],[82.80494,24.55607],[82.80755,24.54899],[82.79131,24.54356],[82.75552,24.53745],[82.75153,24.53772],[82.7526,24.54369],[82.74908,24.54331],[82.75248,24.54662],[82.75164,24.54991],[82.74755,24.54978],[82.7431,24.55182],[82.74237,24.54692],[82.72201,24.55529],[82.71918,24.55247],[82.72065,24.55168],[82.71955,24.54944],[82.72116,24.54567],[82.72804,24.5399],[82.73103,24.53508],[82.72949,24.53114],[82.72094,24.5295],[82.72348,24.52547],[82.72128,24.52346],[82.72312,24.51831],[82.72063,24.51403],[82.72432,24.50957],[82.72927,24.50905],[82.73592,24.50174],[82.74362,24.49896],[82.74356,24.49535],[82.74325,24.49177],[82.73998,24.48735],[82.74012,24.48202],[82.73373,24.47857],[82.73423,24.47553],[82.72989,24.47265],[82.73098,24.47089],[82.73472,24.47044],[82.73636,24.46165],[82.7348,24.45678],[82.7314,24.45404],[82.73111,24.45147],[82.73311,24.45024],[82.73412,24.44667],[82.73089,24.43758],[82.73489,24.43545],[82.73263,24.43084],[82.73439,24.43238],[82.73587,24.4311],[82.73921,24.43237],[82.73921,24.42764],[82.72341,24.41679],[82.71321,24.38024],[82.71913,24.37833],[82.71902,24.37357],[82.72299,24.37117],[82.72375,24.3682],[82.72597,24.36794],[82.73195,24.36947],[82.73982,24.36736],[82.74414,24.37047],[82.75591,24.36963],[82.7549,24.37409],[82.76037,24.37368],[82.76021,24.37735],[82.76401,24.37627],[82.76519,24.3748],[82.76392,24.37046],[82.76892,24.3709],[82.7697,24.36955],[82.76873,24.36633],[82.76514,24.36522],[82.76741,24.36085],[82.76557,24.35994],[82.76688,24.35816],[82.7645,24.35425],[82.76796,24.35285],[82.76925,24.34664],[82.77364,24.34342],[82.76932,24.34187],[82.76838,24.3392],[82.76993,24.33301],[82.7671,24.33029],[82.7715,24.32816],[82.76894,24.32403],[82.76844,24.31677],[82.76595,24.3157],[82.7661,24.31327],[82.77322,24.30736],[82.77151,24.29504],[82.7622,24.26958],[82.75616,24.26142],[82.7555,24.25584],[82.75788,24.25],[82.75929,24.23706],[82.75,24.22637],[82.73648,24.22295],[82.73471,24.21731],[82.7396,24.2001],[82.74444,24.16548],[82.73585,24.15387],[82.7293,24.14796],[82.72808,24.13514],[82.71051,24.13622],[82.70429,24.1393],[82.69971,24.13924],[82.6949,24.14329],[82.69302,24.14873],[82.68288,24.15459],[82.6773,24.15246],[82.6707,24.14712],[82.67413,24.14097],[82.67052,24.13666],[82.66682,24.13693],[82.66819,24.13497],[82.6643,24.12947],[82.66524,24.12449],[82.67064,24.11988],[82.67715,24.11999],[82.67806,24.11479],[82.68063,24.11485],[82.68022,24.11259],[82.6834,24.11184],[82.68295,24.10936],[82.68706,24.10829],[82.69127,24.10337],[82.69132,24.10524],[82.69262,24.10481],[82.69585,24.10004],[82.70754,24.09639],[82.70488,24.09487],[82.71182,24.08927],[82.70987,24.08505],[82.71029,24.08101],[82.71422,24.07971],[82.7139,24.07625],[82.71642,24.07772],[82.72856,24.07814],[82.73314,24.08045],[82.73897,24.07576],[82.74023,24.07723],[82.74475,24.07497],[82.74749,24.07103],[82.75001,24.07084],[82.75343,24.07731],[82.75968,24.07773],[82.76021,24.07258],[82.76305,24.06991],[82.76565,24.07083],[82.7676,24.07589],[82.77402,24.0763],[82.77054,24.05632],[82.76737,24.04856],[82.75558,24.0333],[82.74718,24.02727],[82.74917,24.02356],[82.7507,24.01198],[82.769,24.00568],[82.77564,24.00645],[82.78436,24.00464],[82.78879,24.00828],[82.79989,24.00341],[82.80418,24.00352],[82.80629,23.99776],[82.80458,23.99595],[82.80561,23.98992],[82.8085,23.98606],[82.80533,23.98288],[82.80538,23.98012],[82.80224,23.9793],[82.80783,23.96555],[82.81258,23.9599],[82.82672,23.9623],[82.83699,23.9568],[82.84112,23.95066],[82.84865,23.94535],[82.85335,23.94547],[82.85828,23.93926],[82.86111,23.93893],[82.86522,23.9264],[82.87725,23.91779],[82.88471,23.90884],[82.90516,23.89789],[82.9117,23.8975],[82.92722,23.89229],[82.93065,23.88946],[82.93662,23.87707],[82.94788,23.87142],[82.97458,23.87163],[82.98284,23.87416],[82.99722,23.87259],[83.00163,23.87364],[83.00125,23.87679],[83.01871,23.87947],[83.03531,23.87965],[83.05425,23.8793],[83.06213,23.87394],[83.07194,23.87388],[83.07505,23.87012],[83.09138,23.87155],[83.11577,23.88019],[83.14148,23.88492],[83.14759,23.88898],[83.14822,23.89329],[83.15384,23.89673],[83.15277,23.89947],[83.15422,23.90404],[83.15948,23.90738],[83.16367,23.90877],[83.17119,23.90777],[83.17467,23.9123],[83.17827,23.91216],[83.18129,23.9151],[83.18803,23.91452],[83.18976,23.91735],[83.19317,23.91693],[83.19464,23.91433],[83.19843,23.91406],[83.20792,23.92139],[83.20794,23.92424],[83.20382,23.92868],[83.20846,23.93057],[83.21193,23.93574],[83.21599,23.9379],[83.21552,23.94551],[83.22003,23.94885],[83.21994,23.95271],[83.22313,23.95815],[83.22282,23.9622],[83.21861,23.96898],[83.21967,23.97294],[83.22691,23.97788],[83.22333,23.98421],[83.22361,23.98665],[83.2305,23.98877],[83.23143,23.99398],[83.23366,23.99607],[83.24243,23.99718],[83.24114,24.0053],[83.24259,24.01159],[83.25188,24.01491],[83.25768,24.01311],[83.25976,24.00947],[83.26363,24.00924],[83.27275,24.01817],[83.27911,24.01827],[83.28345,24.03242],[83.284,24.03953],[83.28211,24.04973],[83.2874,24.05511],[83.29946,24.07893],[83.3056,24.07964],[83.30769,24.08205],[83.31475,24.09097],[83.32145,24.10602],[83.32935,24.10133],[83.33422,24.10411],[83.34491,24.11085],[83.35037,24.1215],[83.35406,24.12491],[83.35481,24.13559],[83.35876,24.14035],[83.36156,24.14884],[83.36198,24.15639],[83.37177,24.17429],[83.37502,24.1861],[83.38299,24.19792],[83.38139,24.20019],[83.38185,24.2046],[83.38036,24.20506],[83.38065,24.20776],[83.37862,24.21076],[83.37937,24.21325],[83.38301,24.21479],[83.38122,24.21709],[83.38462,24.22054],[83.38134,24.2259],[83.37857,24.22666],[83.37873,24.23036],[83.38115,24.23397],[83.38488,24.23605],[83.38524,24.23911],[83.39764,24.24384],[83.40032,24.25639],[83.40753,24.26213],[83.4091,24.26633],[83.40635,24.28596],[83.40717,24.28878],[83.40177,24.29227],[83.40149,24.29554],[83.39236,24.29599],[83.38623,24.29878],[83.38428,24.30659],[83.37998,24.31087],[83.38037,24.31378],[83.38576,24.31728],[83.38777,24.3162],[83.3921,24.32478],[83.41142,24.33986],[83.42097,24.33799],[83.43263,24.33823],[83.43404,24.34297],[83.43947,24.34625],[83.44517,24.35884],[83.45727,24.36455],[83.44854,24.3701],[83.44797,24.37373],[83.4495,24.37703],[83.44537,24.37823],[83.44227,24.38608],[83.4388,24.38773],[83.43976,24.38883],[83.43749,24.39209],[83.43352,24.39328],[83.43268,24.39617],[83.43604,24.39925],[83.43442,24.40075],[83.43002,24.39995],[83.41894,24.40621],[83.40507,24.40478],[83.40331,24.41982],[83.40489,24.436],[83.39412,24.43465],[83.38551,24.45127],[83.38542,24.45702],[83.39068,24.46517],[83.39093,24.47358],[83.39347,24.47539],[83.39353,24.47792],[83.3982,24.48542],[83.39536,24.48873],[83.39837,24.49295],[83.39609,24.49447],[83.39694,24.4969],[83.40315,24.50389],[83.42943,24.51093],[83.46894,24.51673],[83.4842,24.52211],[83.50329,24.52543],[83.49861,24.5318],[83.49712,24.5391],[83.52228,24.54766],[83.52275,24.55568],[83.52829,24.56158],[83.5301,24.56732],[83.52881,24.57458],[83.53022,24.58205],[83.528,24.58627],[83.52435,24.58894],[83.52266,24.59855],[83.52353,24.60313],[83.5273,24.60587],[83.53042,24.6124],[83.54192,24.61275],[83.54327,24.6173],[83.54796,24.62288],[83.5437,24.62828],[83.53153,24.62696],[83.52469,24.62782],[83.52476,24.62943],[83.52679,24.63001],[83.52981,24.64303],[83.52019,24.64106],[83.5099,24.6483],[83.50479,24.6469],[83.50288,24.6478],[83.50049,24.65125],[83.50399,24.6663],[83.50915,24.67119],[83.52038,24.6775],[83.51684,24.68112],[83.51776,24.68301],[83.5108,24.68578],[83.50701,24.69282],[83.49886,24.69486],[83.50054,24.69732],[83.49864,24.70333],[83.49529,24.70452],[83.48974,24.70045],[83.48513,24.70167],[83.48544,24.71535],[83.48833,24.72279],[83.48934,24.73633],[83.4709,24.73237],[83.46227,24.73309],[83.4581,24.73135],[83.45733,24.7338],[83.45319,24.735],[83.45083,24.73855],[83.44864,24.73833],[83.44156,24.75097],[83.44138,24.75645],[83.43744,24.75734],[83.43485,24.76079],[83.42784,24.7631],[83.42783,24.76829],[83.42197,24.7694],[83.41282,24.77502],[83.40794,24.77411],[83.39778,24.77811],[83.39699,24.78179],[83.39305,24.78273],[83.39325,24.78653],[83.39118,24.78947],[83.39964,24.79666],[83.39583,24.80001],[83.39374,24.80476],[83.39925,24.80895],[83.40185,24.8139],[83.40136,24.81888],[83.3951,24.82617],[83.39659,24.83235],[83.39283,24.8361],[83.39252,24.8406],[83.38682,24.83975],[83.38142,24.84652],[83.37995,24.84952],[83.38051,24.85371],[83.37657,24.85639],[83.37674,24.86014],[83.36928,24.86231],[83.35753,24.87054],[83.36088,24.87424],[83.36801,24.87668],[83.36946,24.87987],[83.35827,24.88813],[83.35826,24.89077],[83.36479,24.89085],[83.36588,24.89302],[83.35745,24.90051],[83.35458,24.90547],[83.35645,24.90747],[83.3623,24.90902],[83.36367,24.91301],[83.36224,24.91827],[83.36285,24.92773],[83.36094,24.93237],[83.3649,24.9375],[83.36105,24.94228],[83.36145,24.95372],[83.35969,24.95615],[83.35502,24.95663],[83.34983,24.96306],[83.3437,24.96206],[83.34311,24.96307],[83.34503,24.97215],[83.34337,24.9812],[83.3502,24.99018],[83.35254,24.99656],[83.34981,25.00925],[83.33412,25.0141],[83.32658,25.01291],[83.32022,25.01726],[83.32141,25.02467],[83.3248,25.02473],[83.32434,25.03733],[83.33571,25.05093],[83.34335,25.05088],[83.34275,25.05987],[83.33594,25.06146],[83.34042,25.06865],[83.34131,25.08154],[83.34411,25.08615],[83.34727,25.0868],[83.34819,25.1006],[83.35069,25.10507],[83.35009,25.11328],[83.36328,25.11118],[83.36606,25.12511],[83.36737,25.12523],[83.36817,25.12989],[83.36191,25.13268],[83.36379,25.13789],[83.36341,25.15347],[83.3513,25.15701],[83.35163,25.16296],[83.35637,25.17763],[83.35297,25.17864],[83.35353,25.18333],[83.34979,25.18489],[83.35195,25.18866],[83.3538,25.18886],[83.35725,25.19966],[83.36339,25.19822],[83.3663,25.19536],[83.37269,25.20033],[83.38194,25.20175],[83.38353,25.20328],[83.38248,25.2107],[83.38622,25.21215],[83.38971,25.21008],[83.39038,25.20496],[83.39312,25.20434],[83.39586,25.20759],[83.39524,25.21452],[83.39761,25.21631],[83.40217,25.21278],[83.4009,25.20952],[83.40204,25.20906],[83.40384,25.21315],[83.40206,25.2212],[83.40277,25.22437],[83.40928,25.22932],[83.40657,25.23381],[83.40626,25.23773],[83.4077,25.23952],[83.41257,25.23495],[83.41361,25.23549],[83.4128,25.23885],[83.40886,25.24079],[83.40991,25.24661],[83.41798,25.25066],[83.42182,25.24652],[83.42672,25.24639],[83.42741,25.24791],[83.42475,25.25182],[83.42721,25.25367],[83.43269,25.25045],[83.43366,25.24553],[83.43623,25.24424],[83.43703,25.24887],[83.44077,25.25331],[83.43896,25.25783],[83.44214,25.25915],[83.44302,25.25456],[83.44651,25.25752],[83.447,25.2599],[83.45009,25.26104],[83.45299,25.25627],[83.46268,25.25036],[83.46792,25.25234],[83.47066,25.2576],[83.47701,25.26151],[83.47971,25.26752],[83.4768,25.27181],[83.48003,25.27625],[83.48532,25.27932],[83.48699,25.28359],[83.48995,25.28404],[83.49038,25.28948],[83.49235,25.28973],[83.49354,25.2877],[83.49337,25.28491],[83.49107,25.28278],[83.49138,25.27991],[83.49739,25.28035],[83.49797,25.28584],[83.50228,25.28747],[83.50447,25.28658],[83.50199,25.2824],[83.50546,25.28104],[83.50892,25.28844],[83.51104,25.28879],[83.51525,25.2847],[83.52694,25.29298],[83.5237,25.29614],[83.52346,25.30256],[83.52808,25.30247],[83.53401,25.29735],[83.53837,25.30436],[83.5428,25.30408],[83.54514,25.30675],[83.55409,25.30849],[83.55376,25.31022],[83.54723,25.31406],[83.53729,25.30977],[83.53715,25.313],[83.53991,25.31579],[83.55392,25.31481],[83.5573,25.31148],[83.5617,25.31359],[83.57206,25.31466],[83.57348,25.31249],[83.57073,25.30718],[83.57372,25.30613],[83.5771,25.31011],[83.57624,25.31504],[83.58062,25.3171],[83.58574,25.31531],[83.58742,25.32175],[83.59628,25.32767],[83.60601,25.3287],[83.6081,25.33152],[83.61685,25.33206],[83.62138,25.33147],[83.62404,25.32872],[83.62844,25.32852],[83.62989,25.33386],[83.63414,25.33435],[83.63515,25.33584],[83.63371,25.34321],[83.64219,25.33973],[83.6463,25.34247],[83.6488,25.33927],[83.64933,25.3445],[83.65281,25.34834],[83.64916,25.35398],[83.65135,25.3574],[83.65453,25.35688],[83.65794,25.35963],[83.65595,25.36836],[83.65986,25.36373],[83.66439,25.36191],[83.66709,25.36272],[83.66392,25.37283],[83.67666,25.36434],[83.69371,25.36963],[83.69453,25.37123],[83.68938,25.37571],[83.68401,25.37626],[83.68206,25.37862],[83.69059,25.38395],[83.69655,25.38247],[83.69448,25.38895],[83.70168,25.39616],[83.70396,25.39633],[83.70526,25.39468],[83.70661,25.38635],[83.71012,25.38604],[83.71362,25.3935],[83.71743,25.39752],[83.72446,25.40001],[83.73059,25.39743],[83.73235,25.39815],[83.73407,25.4062],[83.74059,25.41063],[83.74351,25.40787],[83.74507,25.40046],[83.75546,25.40447],[83.76627,25.40095],[83.76628,25.3974],[83.75651,25.39675],[83.75499,25.39225],[83.75778,25.38952],[83.76897,25.38636],[83.76914,25.39339],[83.77278,25.39816],[83.7763,25.39903],[83.78481,25.3963],[83.78965,25.39677],[83.80784,25.4091],[83.81439,25.42121],[83.81302,25.4231],[83.80096,25.42549],[83.80006,25.42775],[83.80156,25.42983],[83.8124,25.42962],[83.82151,25.43434],[83.82914,25.43621],[83.83288,25.43566],[83.83179,25.43217],[83.83299,25.43103],[83.84635,25.43435],[83.84652,25.4388],[83.84192,25.44692],[83.82537,25.4459],[83.81959,25.45026],[83.81281,25.4482],[83.81269,25.45364],[83.81656,25.46276],[83.82489,25.4658],[83.83049,25.45838],[83.83278,25.45761],[83.85675,25.46857],[83.8636,25.48441],[83.87074,25.48751],[83.87159,25.49313],[83.87781,25.49925],[83.87742,25.50392],[83.87416,25.50953],[83.87621,25.51806],[83.89418,25.51992],[83.90209,25.52403],[83.91419,25.54521],[83.92459,25.55431],[83.95837,25.57082],[84.01741,25.61469],[84.04616,25.62691],[84.08128,25.63631],[84.08512,25.65258],[84.07516,25.69527],[84.08896,25.71309],[84.10506,25.72122],[84.12913,25.72371],[84.1399,25.73166],[84.14223,25.72815],[84.14164,25.72174],[84.13525,25.72403],[84.12988,25.71779],[84.14174,25.71609],[84.14981,25.7188],[84.1526,25.72346],[84.1557,25.72385],[84.15275,25.72695],[84.14897,25.72695],[84.15086,25.72925],[84.15467,25.72924],[84.15449,25.72744],[84.16298,25.72487],[84.16694,25.72158],[84.16993,25.72291],[84.17423,25.72062],[84.17454,25.71763],[84.19889,25.70208],[84.20601,25.66946],[84.22322,25.66251],[84.27436,25.66289],[84.27686,25.66041],[84.29451,25.66113],[84.30026,25.66539],[84.29954,25.6685],[84.29139,25.67065],[84.28815,25.67326],[84.28761,25.67755],[84.29291,25.67565],[84.29798,25.67739],[84.29918,25.67194],[84.31689,25.67249],[84.31703,25.66729],[84.32435,25.67103],[84.32956,25.70866],[84.32842,25.73193],[84.33634,25.74423],[84.36518,25.74256],[84.37522,25.73533],[84.3769,25.73715],[84.37177,25.74203],[84.37374,25.74429],[84.37783,25.73928],[84.38495,25.74751],[84.3917,25.74516],[84.39363,25.7442],[84.39012,25.73691],[84.38782,25.7376],[84.38439,25.73277],[84.40004,25.72937],[84.39851,25.72555],[84.40058,25.72492],[84.40654,25.71598],[84.40109,25.70834],[84.40674,25.69842],[84.41477,25.69804],[84.42318,25.69367],[84.42768,25.69362],[84.42808,25.70119],[84.43155,25.70768],[84.42965,25.71162],[84.44029,25.71106],[84.44041,25.70836],[84.44428,25.70849],[84.44425,25.71065],[84.45351,25.71433],[84.45289,25.70943],[84.46217,25.70928],[84.46423,25.70077],[84.46249,25.69767],[84.46829,25.69853],[84.46893,25.69662],[84.46606,25.69535],[84.46588,25.69168],[84.4708,25.68724],[84.49361,25.69084],[84.49196,25.67649],[84.49606,25.67674],[84.49934,25.67468],[84.50437,25.67764],[84.5054,25.67692],[84.50775,25.68185],[84.52005,25.67496],[84.52887,25.68249],[84.53446,25.72423],[84.53944,25.72673],[84.53519,25.69077],[84.55105,25.68585],[84.55645,25.68195],[84.55532,25.68009],[84.55743,25.67951],[84.5618,25.6858],[84.5642,25.71377],[84.56028,25.7369],[84.60032,25.73837],[84.60776,25.73533],[84.6114,25.73249],[84.6112,25.73108],[84.62743,25.7263],[84.62884,25.72617],[84.63017,25.72885],[84.63465,25.72794],[84.63178,25.73928],[84.62535,25.74753],[84.6107,25.75469],[84.60296,25.76194],[84.60622,25.76127],[84.60738,25.77141],[84.61346,25.77577],[84.61835,25.77129],[84.61941,25.7724],[84.62347,25.7708],[84.62457,25.79217],[84.58178,25.82508],[84.55211,25.84018],[84.55087,25.84068],[84.54861,25.82854],[84.53052,25.83161],[84.53076,25.8535],[84.52322,25.86029],[84.5337,25.86403],[84.54066,25.85966],[84.54322,25.85996],[84.53398,25.87637],[84.51075,25.87176],[84.48949,25.88832],[84.49015,25.88645],[84.47852,25.88506],[84.4724,25.88171],[84.46015,25.88951],[84.45953,25.88815],[84.4544,25.88773],[84.43662,25.8916],[84.43531,25.88987],[84.42756,25.89124],[84.4289,25.89751],[84.42496,25.90167],[84.41987,25.91351],[84.41376,25.923],[84.4119,25.93078],[84.38737,25.93733],[84.35395,25.95878],[84.31187,25.94377],[84.29691,25.94517],[84.28229,25.95878],[84.24491,25.97579],[84.24513,25.98063],[84.23929,25.98506],[84.21768,25.99473],[84.21307,25.9949],[84.20708,25.99983],[84.20153,25.99036],[84.19628,25.98788],[84.18648,25.99345],[84.17604,25.99652],[84.17463,25.99284],[84.17567,25.99137],[84.17003,25.98768],[84.17246,26.0246],[84.13729,26.05221],[84.12112,26.07654],[84.10381,26.09274],[84.08867,26.10024],[84.05597,26.09999],[84.04873,26.10906],[84.05004,26.12001],[84.05177,26.12056],[84.05012,26.13002],[84.04345,26.13484],[84.02744,26.1424],[84.03436,26.15119],[84.03345,26.16069],[84.0187,26.16747],[84.00938,26.17559],[84.00801,26.18741],[84.01323,26.19402],[84.01665,26.19605],[84.02663,26.19691],[84.02859,26.19565],[84.03235,26.19984],[84.03538,26.19863],[84.03835,26.20097],[84.03924,26.20905],[84.03188,26.2094],[84.02907,26.21119],[84.02766,26.21432],[84.03121,26.21689],[84.02926,26.21984],[84.02212,26.22017],[84.0153,26.22328],[84.01222,26.23212],[84.0156,26.23377],[84.01923,26.23894],[84.02466,26.23777],[84.02726,26.23965],[84.03823,26.23699],[84.0377,26.23206],[84.04213,26.22996],[84.0512,26.22915],[84.06208,26.22227],[84.06346,26.22415],[84.08016,26.2223],[84.08022,26.21971],[84.08641,26.21875],[84.08825,26.22353],[84.08764,26.23036],[84.09017,26.23034],[84.09104,26.23378],[84.09812,26.23332],[84.09949,26.23732],[84.10602,26.23669],[84.10708,26.24123],[84.11744,26.24011],[84.11968,26.24791],[84.11679,26.24974],[84.12002,26.25807],[84.12169,26.25887],[84.12726,26.258],[84.12917,26.25555],[84.13222,26.25903],[84.14655,26.25521],[84.15116,26.25779],[84.16309,26.24184],[84.16621,26.24095],[84.1615,26.25032],[84.16117,26.25592],[84.16408,26.25911],[84.17278,26.26151],[84.17662,26.26454],[84.17451,26.29227],[84.17774,26.3032],[84.18394,26.3087],[84.18597,26.3129],[84.17254,26.33435],[84.17284,26.3535],[84.1759,26.3606],[84.17668,26.37068],[84.17542,26.37309],[84.16378,26.37544],[84.16113,26.37407],[84.13752,26.37794],[84.1356,26.38171],[84.12466,26.38304],[84.12199,26.38512],[84.1029,26.38571],[84.09929,26.3846],[84.08876,26.38678],[84.08771,26.38416],[84.08401,26.38178],[84.07917,26.38251],[84.07918,26.38465],[84.07609,26.38507],[84.07581,26.38644],[84.06816,26.38827],[84.06798,26.39108],[84.06513,26.39285],[84.06547,26.39647],[84.06244,26.39842],[84.06313,26.40072],[84.05538,26.4022],[84.05287,26.4046],[84.04937,26.40374],[84.04951,26.40711],[84.04363,26.40951],[84.0412,26.40726],[84.03968,26.41089],[84.04097,26.41269],[84.03386,26.41165],[84.03486,26.41946],[84.02261,26.43089],[84.02442,26.43424],[84.02379,26.44025],[84.01683,26.44755],[84.00763,26.44396],[83.9979,26.44681],[83.99126,26.43224],[83.98101,26.4328],[83.96333,26.4373],[83.94624,26.43862],[83.94678,26.44098],[83.92445,26.44449],[83.91056,26.44991],[83.91104,26.44705],[83.90802,26.44709],[83.90923,26.45375],[83.91146,26.45591],[83.90973,26.46616],[83.91231,26.4757],[83.90962,26.47569],[83.9106,26.48322],[83.91269,26.48388],[83.9124,26.49773],[83.91517,26.50284],[83.90674,26.50938],[83.90606,26.51265],[83.90809,26.51908],[83.9164,26.51667],[83.9223,26.51961],[83.92706,26.51888],[83.93124,26.52032],[83.93462,26.52513],[83.94036,26.52524],[83.94668,26.51878],[83.95279,26.51776],[83.95261,26.51635],[83.9484,26.51476],[83.94901,26.5102],[83.9517,26.50887],[83.96194,26.51023],[83.96347,26.50808],[83.97083,26.50751],[83.97391,26.5083],[83.97201,26.51028],[83.97362,26.51266],[83.97184,26.51421],[83.97151,26.51761],[83.97652,26.52583],[83.97511,26.52785],[83.97613,26.53351],[83.98274,26.53153],[83.99264,26.53317],[83.99882,26.52723],[84.00685,26.52528],[84.00649,26.52226],[84.00832,26.52194],[84.01406,26.52738],[84.02381,26.53191],[84.04812,26.5364],[84.05633,26.54417],[84.0551,26.55838],[84.05941,26.56128],[84.05838,26.56327],[84.06064,26.5682],[84.06688,26.57269],[84.06611,26.57699],[84.0756,26.58341],[84.07504,26.58591],[84.07784,26.59033],[84.08329,26.59249],[84.08488,26.59828],[84.08909,26.60302],[84.08998,26.60693],[84.08636,26.6124],[84.08863,26.61784],[84.0852,26.62383],[84.08735,26.62585],[84.0884,26.63487],[84.0865,26.63914],[84.1006,26.63595],[84.10296,26.63351],[84.11197,26.63064],[84.11251,26.6344],[84.13055,26.63346],[84.13632,26.63603],[84.14516,26.63472],[84.1587,26.6362],[84.15885,26.63213],[84.15662,26.62697],[84.16029,26.62451],[84.16927,26.62264],[84.17362,26.62282],[84.17443,26.62427],[84.20119,26.62477],[84.20848,26.62276],[84.21108,26.62001],[84.22795,26.61751],[84.22928,26.61654],[84.22923,26.61315],[84.2391,26.61298],[84.23956,26.61001],[84.26647,26.60574],[84.2686,26.60361],[84.26792,26.60165],[84.28132,26.5996],[84.28453,26.59959],[84.28582,26.6058],[84.29451,26.6026],[84.29582,26.60446],[84.30011,26.60378],[84.30325,26.61444],[84.30542,26.61427],[84.30727,26.61632],[84.316,26.61448],[84.3191,26.61151],[84.3258,26.61162],[84.33163,26.61249],[84.33502,26.61555],[84.35399,26.61998],[84.36487,26.61632],[84.37879,26.6147],[84.38619,26.62168],[84.39073,26.62109],[84.39988,26.62454],[84.4104,26.62322],[84.41971,26.62682],[84.41327,26.63733],[84.40978,26.64674],[84.41122,26.65036],[84.41041,26.67025],[84.4063,26.67092],[84.40516,26.67303],[84.40391,26.67177],[84.37658,26.6775],[84.35018,26.67805],[84.34304,26.6809],[84.33503,26.68155],[84.33006,26.6841],[84.32586,26.71415],[84.32424,26.71516],[84.31811,26.73199],[84.31468,26.73531],[84.31421,26.73904],[84.30587,26.74949],[84.28579,26.74993],[84.27568,26.74197],[84.26629,26.73995],[84.25542,26.72662],[84.24942,26.72916],[84.24067,26.73872],[84.23258,26.75367],[84.25,26.77373],[84.25717,26.78938],[84.25998,26.80503],[84.26,26.80699],[84.25421,26.81243],[84.25682,26.81823],[84.25036,26.81933],[84.25354,26.82523],[84.26093,26.83022],[84.2601,26.83351],[84.26181,26.84258],[84.25693,26.84922],[84.25409,26.85659],[84.23557,26.86771],[84.21949,26.8716],[84.20611,26.86172],[84.19786,26.85955],[84.19303,26.86075],[84.19013,26.85847],[84.1833,26.84751],[84.18679,26.84164],[84.18174,26.83348],[84.1776,26.83239],[84.1661,26.83377],[84.15622,26.83756],[84.14917,26.84258],[84.14584,26.8481],[84.14061,26.85265],[84.14037,26.8676],[84.14233,26.87153],[84.14709,26.87245],[84.14351,26.87961],[84.14771,26.88228],[84.14641,26.88542],[84.14153,26.88712],[84.14,26.88463],[84.13547,26.88333],[84.13128,26.88445],[84.129,26.8932],[84.11795,26.88771],[84.11636,26.88912],[84.11587,26.89494],[84.11042,26.8986],[84.10758,26.89693],[84.10676,26.88774],[84.1045,26.88191],[84.09814,26.87594],[84.09649,26.87623],[84.09433,26.88162],[84.08736,26.88169],[84.08421,26.87744],[84.08141,26.87737],[84.07822,26.87904],[84.07521,26.88342],[84.06699,26.88849],[84.06027,26.8881],[84.06085,26.89563],[84.05806,26.90189],[84.05528,26.90263],[84.05237,26.90641],[84.05309,26.9096],[84.05909,26.91646],[84.05997,26.92019],[84.05621,26.92311],[84.05336,26.92967],[84.04323,26.93179],[84.04654,26.93916],[84.04311,26.9405],[84.03497,26.9382],[84.03214,26.94118],[84.03491,26.94521],[84.04201,26.9468],[84.04597,26.95245],[84.0528,26.95498],[84.05483,26.96006],[84.053,26.9675],[84.05379,26.97523],[84.04576,26.98224],[84.04785,26.9846],[84.054,26.98517],[84.0567,26.98966],[84.05256,26.9947],[84.05281,26.99695],[84.0459,27.005],[84.03731,27.00908],[84.04425,27.01672],[84.04413,27.02318],[84.04953,27.03502],[84.0495,27.04327],[84.04714,27.04576],[84.03908,27.04404],[84.03132,27.04563],[84.02818,27.04947],[84.018,27.05602],[84.01189,27.05698],[84.0056,27.06023],[84.00006,27.06859],[84.00396,27.07152],[84.0166,27.0718],[84.02048,27.07941],[84.02862,27.08603],[84.02494,27.09248],[84.03037,27.09384],[84.03034,27.09763],[84.02397,27.10012],[84.02201,27.10413],[84.01644,27.10542],[84.00877,27.09924],[84.0032,27.10186],[83.99999,27.10029],[83.98926,27.09085],[83.9784,27.09076],[83.96698,27.08712],[83.9644,27.08412],[83.95284,27.08493],[83.94647,27.09082],[83.94767,27.11249],[83.95219,27.11862],[83.95952,27.12207],[83.9628,27.12769],[83.95906,27.13688],[83.97536,27.15582],[83.97874,27.16487],[83.98844,27.1716],[83.99327,27.17317],[83.99418,27.17517],[83.99339,27.18164],[83.98882,27.18843],[83.98696,27.19753],[83.97177,27.20845],[83.96747,27.20951],[83.96752,27.21306],[83.97274,27.21819],[83.97018,27.22399],[83.96254,27.22664],[83.96332,27.22851],[83.96081,27.23148],[83.95341,27.23625],[83.9324,27.23936],[83.9233,27.24178],[83.9193,27.24454],[83.9121,27.24576],[83.90507,27.25762],[83.90469,27.27238],[83.90583,27.27496],[83.91258,27.27756],[83.92087,27.28409],[83.92983,27.29269],[83.93407,27.29975],[83.93383,27.30828],[83.92548,27.32141],[83.91663,27.32654],[83.90237,27.32629],[83.87144,27.30724],[83.85934,27.30807],[83.85266,27.31729],[83.84542,27.31518],[83.83657,27.32222],[83.86234,27.33568],[83.86408,27.34716],[83.83084,27.36979],[83.61425,27.46944],[83.38818,27.47976],[83.39181,27.47794],[83.39223,27.47592],[83.38967,27.47459],[83.38826,27.47078],[83.3953,27.46964],[83.39509,27.46661],[83.39762,27.46552],[83.40108,27.46731],[83.40242,27.46619],[83.39952,27.46296],[83.39999,27.45908],[83.40174,27.45754],[83.39762,27.44825],[83.38351,27.44224],[83.38615,27.43909],[83.38391,27.43628],[83.3916,27.4298],[83.39291,27.42483],[83.40093,27.42092],[83.39971,27.41899],[83.40496,27.41885],[83.40685,27.41535],[83.40917,27.4149],[83.40934,27.41281],[83.40599,27.41137],[83.40539,27.40543],[83.40232,27.40088],[83.39648,27.39598],[83.39279,27.39589],[83.38451,27.39017],[83.38481,27.3857],[83.3879,27.38327],[83.38627,27.38052],[83.38768,27.37562],[83.38214,27.37051],[83.37464,27.37],[83.37213,27.36461],[83.37376,27.35722],[83.36904,27.35779],[83.36802,27.35571],[83.36407,27.35547],[83.35789,27.35072],[83.35923,27.34326],[83.35398,27.34403],[83.35087,27.34227],[83.35224,27.33993],[83.34411,27.33827],[83.34303,27.33505],[83.33717,27.33263],[83.33502,27.33383],[83.33182,27.33284],[83.32723,27.33417],[83.32501,27.33661],[83.31784,27.33742],[83.31885,27.33611],[83.31565,27.33292],[83.31759,27.33016],[83.30847,27.33363],[83.30486,27.3313],[83.30064,27.3345],[83.29488,27.33331],[83.29441,27.33493],[83.29163,27.33493],[83.29292,27.336],[83.27243,27.35263],[83.26532,27.36537],[83.27215,27.38335],[83.23996,27.40641],[83.22573,27.41168],[83.21883,27.41622],[83.21111,27.42349],[83.19591,27.44639],[83.18795,27.45432],[83.16572,27.45746],[83.07722,27.4527],[83.03457,27.44872],[83.01896,27.45391],[82.95409,27.46773],[82.94462,27.47693],[82.93957,27.49104],[82.92929,27.50119],[82.86585,27.49856],[82.83251,27.50194],[82.80144,27.4964],[82.78502,27.5],[82.73555,27.50235],[82.73509,27.50799],[82.73764,27.50863],[82.73656,27.50929],[82.73679,27.51789],[82.73872,27.51855],[82.74317,27.51652],[82.7419,27.52073],[82.7463,27.52067],[82.74718,27.51927],[82.74965,27.52257],[82.74746,27.52281],[82.74931,27.52451],[82.74795,27.52684],[82.74623,27.52562],[82.74704,27.52773],[82.74514,27.5287],[82.74716,27.53129],[82.74434,27.52952],[82.74553,27.53135],[82.74196,27.53165],[82.74451,27.53371],[82.74393,27.53559],[82.74067,27.5363],[82.74324,27.54115],[82.74173,27.54099],[82.74123,27.54265],[82.74273,27.54303],[82.74065,27.54438],[82.74197,27.54606],[82.73901,27.54483],[82.73777,27.54656],[82.74096,27.54995],[82.73881,27.55006],[82.73828,27.55187],[82.74013,27.55132],[82.7412,27.55344],[82.74695,27.55556],[82.74352,27.56029],[82.75085,27.56491],[82.75081,27.56769],[82.74742,27.57252],[82.74922,27.57403],[82.74866,27.57641],[82.75089,27.57698],[82.75235,27.5852],[82.75577,27.5878],[82.75039,27.59369],[82.74504,27.59549],[82.74567,27.60076],[82.73512,27.60993],[82.73666,27.61219],[82.73371,27.61871],[82.73652,27.62242],[82.73112,27.62385],[82.73667,27.62596],[82.73404,27.62876],[82.73838,27.63249],[82.73517,27.63593],[82.73767,27.63742],[82.7366,27.64345],[82.73345,27.64292],[82.73349,27.64645],[82.72887,27.64579],[82.73211,27.64914],[82.72575,27.65838],[82.72333,27.65924],[82.72019,27.65753],[82.71895,27.6589],[82.72022,27.66182],[82.71448,27.6626],[82.7115,27.66529],[82.71558,27.66763],[82.71297,27.67085],[82.7159,27.67291],[82.71595,27.67587],[82.71419,27.67716],[82.71834,27.68736],[82.71574,27.69178],[82.70974,27.69558],[82.70608,27.7017],[82.7054,27.71026],[82.70765,27.72292],[82.70509,27.71663],[82.70209,27.71615],[82.69913,27.72195],[82.69533,27.71816],[82.68904,27.71513],[82.68089,27.71391],[82.6658,27.71594],[82.66432,27.72264],[82.65524,27.71346],[82.63807,27.70911],[82.62735,27.71144],[82.62741,27.70926],[82.61887,27.70233],[82.60519,27.70607],[82.60029,27.70435],[82.59408,27.69737],[82.58509,27.69905],[82.55465,27.68853],[82.54989,27.68888],[82.54128,27.6857],[82.53932,27.68776],[82.53138,27.68652],[82.51661,27.69056],[82.50084,27.68513],[82.49224,27.68437],[82.48989,27.68165],[82.48431,27.68107],[82.48204,27.68316],[82.47331,27.67667],[82.44867,27.67932],[82.43662,27.68598],[82.42711,27.68916],[82.41287,27.69905],[82.40172,27.70372],[82.38273,27.72076],[82.36772,27.74292],[82.33669,27.75461],[82.30346,27.77283],[82.25271,27.81035],[82.23044,27.82114],[82.20831,27.84358],[82.17663,27.85548],[82.15401,27.86681],[82.15024,27.85846],[82.14847,27.85837],[82.12138,27.86585],[82.11392,27.87822],[82.10056,27.88612],[82.09109,27.89455],[82.08979,27.89931],[82.0805,27.90886],[82.06996,27.92365],[82.06214,27.92169],[82.04468,27.9246],[82.02513,27.9251],[81.9913,27.92916],[81.96832,27.92912],[81.96179,27.92332],[81.95939,27.91648],[81.95093,27.91036],[81.9475,27.90334],[81.93822,27.89398],[81.93803,27.88788],[81.92984,27.88265],[81.92523,27.87533],[81.92585,27.85983],[81.90012,27.85358],[81.88496,27.85695],[81.87762,27.86612],[81.83957,27.89137],[81.83409,27.89723],[81.82106,27.90368],[81.80494,27.90332],[81.69844,27.98819],[81.64376,27.99362],[81.63885,27.99734],[81.6273,28.00193],[81.62399,28.0016],[81.61807,28.00946],[81.59604,28.02127],[81.58448,28.02547],[81.54742,28.0493],[81.47828,28.08271],[81.47981,28.1103],[81.48401,28.11857],[81.47368,28.12545],[81.46769,28.12724],[81.44993,28.14085],[81.45023,28.15089],[81.44608,28.1559],[81.44668,28.16102],[81.41769,28.17374],[81.39061,28.17373],[81.37351,28.1773],[81.37228,28.17655],[81.37449,28.1749],[81.36771,28.16754],[81.36702,28.16309],[81.36958,28.16034],[81.37636,28.15914],[81.37758,28.15662],[81.37623,28.14996],[81.37108,28.14349],[81.36717,28.14149],[81.33477,28.14029],[81.31803,28.13367],[81.31536,28.13722],[81.31826,28.14519],[81.32806,28.14808],[81.32038,28.16028],[81.31206,28.1559],[81.31014,28.16039],[81.302,28.16476],[81.30268,28.16768],[81.32135,28.16889],[81.32466,28.17529],[81.31844,28.18251],[81.32094,28.19755],[81.29947,28.22009],[81.29198,28.22292],[81.28601,28.22872],[81.23264,28.28915],[81.23448,28.32474],[81.21914,28.34547],[81.21329,28.35851],[81.2106,28.36083],[81.11632,28.37713],[81.07974,28.38506],[81.04699,28.41043],[81.03567,28.41358],[81.03383,28.3989],[81.01753,28.41547],[81.0342,28.42818],[81.02942,28.43879],[81.01928,28.43147],[81.01261,28.43782],[81.01676,28.45129],[80.99889,28.45306],[80.98895,28.44154],[80.97765,28.44242],[80.97883,28.43415],[80.96497,28.43791],[80.96787,28.44303],[80.96464,28.44484],[80.98017,28.45524],[80.96699,28.45715],[80.96416,28.44962],[80.95173,28.44764],[80.95143,28.45578],[80.94437,28.45493],[80.93202,28.45889],[80.94555,28.46626],[80.94257,28.46889],[80.93237,28.46349],[80.93052,28.45777],[80.91722,28.46005],[80.91954,28.46423],[80.91415,28.46843],[80.91541,28.45764],[80.90556,28.46637],[80.90153,28.48611],[80.90673,28.49014],[80.90874,28.49811],[80.90005,28.50109],[80.89609,28.50702],[80.88542,28.50774],[80.87543,28.51071],[80.86152,28.50439],[80.86595,28.48958],[80.85563,28.49756],[80.84454,28.49575],[80.84386,28.49978],[80.83003,28.5121],[80.81545,28.52071],[80.79968,28.52123],[80.78919,28.52452],[80.78461,28.52936],[80.7896,28.54339],[80.78285,28.54669],[80.76971,28.54995],[80.7686,28.56591],[80.7383,28.57483],[80.73846,28.56639],[80.7244,28.57529],[80.71453,28.5684],[80.70363,28.57922],[80.69045,28.5876],[80.69575,28.60349],[80.67747,28.60445],[80.67974,28.62109],[80.67084,28.62794],[80.66763,28.64219],[80.6513,28.63407],[80.64142,28.64332],[80.63329,28.63748],[80.61161,28.63952],[80.6062,28.65243],[80.58945,28.64804],[80.59743,28.65605],[80.58024,28.66146],[80.59052,28.68004],[80.56866,28.68813],[80.55026,28.69174],[80.53953,28.69076],[80.50593,28.67084],[80.50338,28.66514],[80.51138,28.62323],[80.51477,28.61585],[80.52154,28.57675],[80.52556,28.57319],[80.52983,28.57491],[80.5306,28.57262],[80.52278,28.553],[80.51974,28.55448],[80.51762,28.55196],[80.51501,28.55754],[80.50576,28.56849],[80.49961,28.56973],[80.4937,28.57656],[80.48382,28.58228],[80.48144,28.58532],[80.47422,28.58312],[80.46868,28.58353],[80.47111,28.58481],[80.47204,28.59104],[80.4603,28.61439],[80.46151,28.6155],[80.46345,28.61455],[80.4637,28.61608],[80.45943,28.61771],[80.46139,28.61897],[80.46065,28.62043],[80.45194,28.62886],[80.44272,28.62881],[80.43599,28.63665],[80.42334,28.63777],[80.42291,28.63961],[80.42082,28.63989],[80.41434,28.63947],[80.40435,28.63495],[80.38582,28.63009],[80.37885,28.63036],[80.37635,28.62894],[80.37433,28.63037],[80.37082,28.62956],[80.37086,28.63245],[80.36741,28.63492],[80.361,28.63526],[80.35709,28.64149],[80.36027,28.64581],[80.35593,28.64686],[80.34553,28.65532],[80.32573,28.66648],[80.32509,28.67228],[80.32114,28.68161],[80.32272,28.68691],[80.32101,28.694],[80.31712,28.70014],[80.30796,28.705],[80.29918,28.70672],[80.29786,28.70971],[80.29348,28.71174],[80.27915,28.70972],[80.25652,28.72925],[80.26255,28.73291],[80.26557,28.74361],[80.25658,28.75425],[80.25105,28.75752],[80.24347,28.75579],[80.23692,28.75714],[80.23477,28.75943],[80.21599,28.75557],[80.17069,28.78282],[80.13819,28.81383],[80.11805,28.82898],[80.07482,28.82449],[80.06536,28.8369],[80.06292,28.83467],[80.05979,28.82539],[80.05179,28.82037],[80.05922,28.8168],[80.0681,28.80284],[80.06488,28.79443],[80.05867,28.78839],[80.06174,28.78319],[80.05545,28.78125],[80.05227,28.77828],[80.03013,28.74863],[79.95416,28.72283],[79.94549,28.73058],[79.94369,28.73511],[79.94648,28.74236],[79.94359,28.74862],[79.93863,28.75038],[79.93872,28.75313],[79.94315,28.75798],[79.9432,28.75989],[79.93258,28.76272],[79.93323,28.76428],[79.93057,28.76802],[79.92734,28.76871],[79.92699,28.77097],[79.92408,28.77316],[79.92852,28.77902],[79.93982,28.78772],[79.92652,28.79001],[79.92378,28.78671],[79.91884,28.7865],[79.91935,28.78412],[79.91781,28.78236],[79.90982,28.7854],[79.90647,28.78196],[79.90136,28.78198],[79.89728,28.78623],[79.88426,28.79],[79.8833,28.79454],[79.87306,28.79728],[79.87226,28.79936],[79.87473,28.80236],[79.87007,28.80576],[79.8696,28.80834],[79.87348,28.80939],[79.87849,28.81483],[79.90554,28.80299],[79.91552,28.80427],[79.91078,28.8099],[79.9107,28.81247],[79.91453,28.81848],[79.89407,28.8204],[79.89404,28.82379],[79.89199,28.82561],[79.89391,28.83146],[79.88905,28.83404],[79.88822,28.83656],[79.88212,28.83693],[79.8834,28.83398],[79.87857,28.83356],[79.87961,28.83241],[79.87847,28.83031],[79.87573,28.83311],[79.87256,28.83156],[79.87435,28.83424],[79.87337,28.8363],[79.87461,28.83634],[79.87166,28.84014],[79.87025,28.83845],[79.86719,28.83954],[79.8647,28.83777],[79.86319,28.84022],[79.86266,28.83706],[79.85888,28.8338],[79.86061,28.83304],[79.85898,28.83166],[79.86142,28.83053],[79.85772,28.83064],[79.85387,28.82699],[79.85102,28.82855],[79.85083,28.82693],[79.85371,28.82603],[79.85407,28.82411],[79.84863,28.82515],[79.8463,28.82318],[79.84785,28.81953],[79.84661,28.81744],[79.85212,28.81566],[79.85294,28.81373],[79.84659,28.81044],[79.85076,28.81045],[79.85166,28.80883],[79.85031,28.80601],[79.85289,28.80613],[79.85059,28.80333],[79.85237,28.8019],[79.84934,28.79964],[79.84547,28.80075],[79.84543,28.80483],[79.83935,28.80308],[79.84033,28.80195],[79.83843,28.80122],[79.83986,28.80017],[79.83832,28.79753],[79.83433,28.79859],[79.83308,28.79682],[79.83081,28.79773],[79.82693,28.79497],[79.82432,28.79829],[79.82289,28.79563],[79.81995,28.79611],[79.81457,28.80261],[79.81281,28.80196],[79.81454,28.79889],[79.81394,28.79688],[79.80876,28.80001],[79.80673,28.80318],[79.80723,28.80566],[79.81645,28.81692],[79.8199,28.81216],[79.81897,28.80547],[79.82429,28.80727],[79.82604,28.81493],[79.82945,28.81814],[79.82915,28.82139],[79.83245,28.82354],[79.83717,28.83235],[79.83131,28.83076],[79.8279,28.83695],[79.82382,28.83901],[79.82727,28.84167],[79.83087,28.83778],[79.83678,28.83992],[79.83634,28.84294],[79.83245,28.84584],[79.82978,28.85324],[79.83074,28.85523],[79.83288,28.85532],[79.838,28.84832],[79.84063,28.84768],[79.84534,28.85111],[79.84505,28.85537],[79.8496,28.8593],[79.84577,28.86354],[79.84667,28.86874],[79.84468,28.87503],[79.84101,28.87602],[79.83538,28.87489],[79.83573,28.87143],[79.83308,28.87071],[79.82839,28.87782],[79.8293,28.88445],[79.81802,28.88781],[79.81383,28.88656],[79.8147,28.88369],[79.7998,28.88748],[79.79509,28.88526],[79.78861,28.87269],[79.78629,28.87341],[79.78344,28.87125],[79.76675,28.87493],[79.75925,28.87085],[79.74907,28.87177],[79.74565,28.85992],[79.73825,28.85876],[79.73652,28.85626],[79.72637,28.86097],[79.72271,28.85523],[79.7234,28.85289],[79.72058,28.85027],[79.71991,28.84567],[79.71855,28.84881],[79.70962,28.8511],[79.70625,28.84445],[79.70752,28.84417],[79.70667,28.84101],[79.69292,28.84591],[79.68996,28.84533],[79.692,28.84788],[79.68316,28.84997],[79.68231,28.85347],[79.68367,28.85532],[79.68189,28.85679],[79.67738,28.85927],[79.67212,28.85801],[79.66744,28.8597],[79.66342,28.86194],[79.66571,28.86557],[79.65605,28.86977],[79.65557,28.86841],[79.65349,28.86921],[79.64745,28.86702],[79.64486,28.86343],[79.63601,28.86681],[79.63092,28.86112],[79.62613,28.86662],[79.62138,28.86431],[79.61331,28.85283],[79.6039,28.85683],[79.60339,28.85472],[79.59712,28.85125],[79.5936,28.85204],[79.59155,28.8495],[79.58751,28.84999],[79.58436,28.84627],[79.57565,28.85045],[79.57349,28.85465],[79.58097,28.86616],[79.58019,28.87115],[79.58427,28.87918],[79.57835,28.88349],[79.57917,28.88618],[79.57755,28.88864],[79.57124,28.88646],[79.56999,28.88775],[79.57062,28.89253],[79.55648,28.89926],[79.55275,28.8958],[79.55494,28.89376],[79.54945,28.89008],[79.54791,28.89097],[79.54595,28.88558],[79.54219,28.88453],[79.54046,28.88193],[79.54166,28.88043],[79.53716,28.87694],[79.53304,28.86971],[79.52351,28.86712],[79.52178,28.86474],[79.5114,28.86722],[79.50992,28.86453],[79.50252,28.87055],[79.49683,28.87289],[79.47873,28.87114],[79.47892,28.86728],[79.47722,28.86457],[79.47057,28.86541],[79.46611,28.86777],[79.46194,28.86676],[79.45164,28.87163],[79.44979,28.87079],[79.45019,28.86772],[79.44584,28.8675],[79.44518,28.86383],[79.44172,28.86166],[79.42557,28.86642],[79.42501,28.87366],[79.42787,28.87653],[79.43099,28.8868],[79.42773,28.89298],[79.42294,28.89349],[79.42466,28.89743],[79.4222,28.90134],[79.42532,28.90522],[79.42428,28.90841],[79.42692,28.91128],[79.42511,28.91213],[79.42764,28.91269],[79.42539,28.91324],[79.42513,28.91437],[79.42692,28.91442],[79.42479,28.91545],[79.427,28.91533],[79.42487,28.91675],[79.42689,28.91618],[79.42795,28.91978],[79.42531,28.92296],[79.41584,28.92787],[79.41889,28.93298],[79.41901,28.94003],[79.41558,28.94137],[79.41583,28.94382],[79.40803,28.95193],[79.40615,28.95222],[79.4063,28.95001],[79.40433,28.95041],[79.40471,28.94921],[79.40281,28.95001],[79.39065,28.94739],[79.3853,28.95177],[79.38631,28.95319],[79.3821,28.96224],[79.38175,28.9698],[79.37714,28.97139],[79.37769,28.9757],[79.37239,28.9846],[79.37236,28.98747],[79.36763,28.98664],[79.36211,28.98145],[79.36309,28.97798],[79.36099,28.97193],[79.36517,28.97074],[79.3647,28.96807],[79.35627,28.9677],[79.33722,28.97213],[79.32146,28.9718],[79.3119,28.97706],[79.31106,28.97526],[79.31265,28.97498],[79.30986,28.97172],[79.31249,28.97131],[79.31268,28.96897],[79.31092,28.96999],[79.31033,28.96799],[79.30747,28.96787],[79.30727,28.96647],[79.29885,28.9728],[79.29233,28.97381],[79.25913,28.9924],[79.24775,29.00334],[79.25102,29.01024],[79.24495,29.01008],[79.23155,29.01512],[79.22203,29.01945],[79.21173,29.02756],[79.20365,29.02074],[79.19741,29.02138],[79.19426,29.01972],[79.19077,29.02318],[79.19089,29.01895],[79.19384,29.01559],[79.18595,29.01764],[79.18267,29.01605],[79.18094,29.01288],[79.17106,29.01187],[79.17582,29.01574],[79.16843,29.01942],[79.16528,29.01779],[79.16589,29.02024],[79.1622,29.02409],[79.16235,29.02921],[79.16497,29.02884],[79.1644,29.03222],[79.16751,29.0322],[79.16884,29.03577],[79.168,29.03826],[79.17085,29.03942],[79.16916,29.04238],[79.17192,29.04264],[79.1718,29.04506],[79.17511,29.04625],[79.17029,29.04861],[79.168,29.04738],[79.16191,29.04896],[79.15332,29.05686],[79.14876,29.05845],[79.14733,29.06226],[79.14513,29.06296],[79.14587,29.06457],[79.1425,29.06695],[79.14422,29.07203],[79.14181,29.07763],[79.14212,29.08194],[79.14342,29.08291],[79.14327,29.08668],[79.14996,29.09176],[79.15002,29.09451],[79.15153,29.0954],[79.14832,29.09914],[79.15318,29.10155],[79.15084,29.10341],[79.15245,29.10712],[79.15127,29.11327],[79.1535,29.11518],[79.15017,29.11867],[79.1434,29.12027],[79.14082,29.12226],[79.14189,29.12433],[79.12687,29.13268],[79.12492,29.13306],[79.12273,29.12734],[79.11946,29.12577],[79.1119,29.12792],[79.10139,29.1341],[79.09057,29.14339],[79.07487,29.15164],[79.05942,29.15542],[79.0537,29.15487],[79.0505,29.15693],[79.04538,29.16418],[79.03944,29.16857],[79.03584,29.16939],[79.03213,29.16843],[79.02912,29.16413],[79.03237,29.15913],[79.03937,29.15841],[79.03595,29.15309],[79.0374,29.14482],[79.03461,29.14407],[79.02978,29.14697],[79.02382,29.15555],[79.01908,29.15572],[79.01782,29.15384],[79.02111,29.14583],[79.01494,29.13395],[79.01692,29.13077],[79.01921,29.12934],[79.02732,29.13244],[79.03175,29.1281],[79.04063,29.12767],[79.03456,29.1177],[79.0267,29.11242],[79.01419,29.11662],[79.00817,29.11191],[79.00625,29.11828],[79.0035,29.11921],[79.00171,29.12226],[79.00424,29.1259],[78.99665,29.13012],[78.99128,29.13068],[78.98984,29.13949],[78.98234,29.14305],[78.97676,29.13855],[78.97755,29.1366],[78.97468,29.13595],[78.97492,29.13145],[78.97287,29.12691],[78.96417,29.1305],[78.95645,29.11989],[78.94375,29.12751],[78.94286,29.12617],[78.93464,29.12964],[78.92702,29.11813],[78.90633,29.12501],[78.90718,29.12741],[78.91876,29.13553],[78.91621,29.13773],[78.91623,29.14067],[78.91105,29.14443],[78.91205,29.14742],[78.91548,29.14994],[78.91545,29.15245],[78.91287,29.15438],[78.90637,29.15174],[78.90909,29.15732],[78.90801,29.16069],[78.90905,29.16354],[78.90167,29.16956],[78.90875,29.17856],[78.90683,29.18006],[78.90347,29.17824],[78.90317,29.18091],[78.89849,29.18181],[78.89457,29.18576],[78.89974,29.18588],[78.89636,29.19358],[78.89428,29.19189],[78.89006,29.19221],[78.88675,29.19508],[78.89128,29.19808],[78.89062,29.20118],[78.8855,29.20317],[78.88104,29.19992],[78.87522,29.20517],[78.8751,29.20651],[78.87828,29.20636],[78.88328,29.21131],[78.87854,29.21426],[78.87812,29.21571],[78.88052,29.217],[78.87947,29.21881],[78.87583,29.21902],[78.87176,29.22257],[78.87648,29.22553],[78.87423,29.22678],[78.87448,29.23025],[78.87261,29.23031],[78.87264,29.22759],[78.87069,29.22725],[78.86326,29.23031],[78.86304,29.23209],[78.85859,29.23299],[78.86217,29.23943],[78.85834,29.24184],[78.85537,29.23852],[78.85107,29.23682],[78.84954,29.23271],[78.84554,29.23677],[78.84337,29.23484],[78.83946,29.23679],[78.8413,29.23969],[78.83818,29.24109],[78.83816,29.24255],[78.83231,29.23675],[78.82787,29.23531],[78.82571,29.23611],[78.82243,29.23332],[78.8199,29.23374],[78.82008,29.23214],[78.80737,29.23668],[78.79841,29.24442],[78.79324,29.24453],[78.79077,29.2469],[78.79042,29.25017],[78.79189,29.25227],[78.78975,29.25496],[78.78815,29.25337],[78.78509,29.25365],[78.77383,29.26199],[78.77019,29.26704],[78.77321,29.27113],[78.76502,29.27931],[78.73614,29.29676],[78.73452,29.29957],[78.72843,29.29922],[78.72675,29.2978],[78.72269,29.29932],[78.71837,29.30342],[78.71859,29.30664],[78.72299,29.30345],[78.72719,29.30551],[78.73445,29.30294],[78.73518,29.30654],[78.73134,29.31352],[78.73209,29.31756],[78.73577,29.31853],[78.73367,29.3219],[78.74067,29.32042],[78.74068,29.31579],[78.74508,29.31794],[78.75032,29.31735],[78.74955,29.32324],[78.75369,29.32732],[78.75376,29.33122],[78.76081,29.33293],[78.76655,29.3374],[78.77431,29.33198],[78.77333,29.32849],[78.77748,29.32573],[78.78525,29.32715],[78.78679,29.32611],[78.79052,29.33059],[78.79345,29.32817],[78.79309,29.32683],[78.7954,29.32501],[78.79054,29.31889],[78.78955,29.3153],[78.79591,29.31177],[78.79545,29.31471],[78.7982,29.31901],[78.80472,29.31925],[78.8012,29.32524],[78.80286,29.33125],[78.7999,29.33458],[78.81051,29.34012],[78.82215,29.35914],[78.82473,29.36713],[78.83026,29.36801],[78.82586,29.36555],[78.8276,29.36377],[78.82636,29.36143],[78.82834,29.35967],[78.82745,29.35421],[78.83074,29.35149],[78.83576,29.35046],[78.84024,29.34597],[78.84558,29.34419],[78.84987,29.34482],[78.85598,29.34972],[78.85113,29.35552],[78.85193,29.36033],[78.86032,29.3582],[78.87871,29.36601],[78.87958,29.36936],[78.87573,29.37198],[78.87774,29.37497],[78.88734,29.37305],[78.89216,29.38096],[78.90219,29.38495],[78.90507,29.38951],[78.91179,29.39375],[78.91148,29.39961],[78.91838,29.40351],[78.91875,29.40988],[78.92398,29.41881],[78.92571,29.42595],[78.93831,29.43401],[78.94312,29.43469],[78.94024,29.43526],[78.94038,29.43756],[78.94233,29.43857],[78.93634,29.43822],[78.92534,29.43383],[78.91872,29.43426],[78.9002,29.44149],[78.88087,29.44338],[78.84108,29.45715],[78.82274,29.45975],[78.81056,29.46581],[78.79967,29.46457],[78.77757,29.47714],[78.75903,29.49064],[78.75655,29.49459],[78.75359,29.49619],[78.74919,29.49596],[78.74501,29.50078],[78.73819,29.50019],[78.73273,29.50199],[78.73059,29.50038],[78.72009,29.50217],[78.71121,29.50036],[78.70626,29.50268],[78.69972,29.50621],[78.65047,29.546],[78.63851,29.54666],[78.62425,29.55654],[78.61773,29.55803],[78.58036,29.58637],[78.56507,29.60109],[78.54424,29.62555],[78.54081,29.62709],[78.53267,29.63875],[78.52149,29.65782],[78.52145,29.69347],[78.51871,29.70177],[78.51654,29.7194],[78.5102,29.72661],[78.50096,29.7329],[78.48782,29.73837],[78.47369,29.73988],[78.45564,29.74515],[78.44514,29.75038],[78.42851,29.76446],[78.40906,29.76338],[78.39276,29.76739],[78.34929,29.78848],[78.33566,29.79661],[78.33316,29.79267],[78.33074,29.79318],[78.32439,29.78986],[78.3211,29.7855],[78.3129,29.77941],[78.30952,29.77996],[78.30687,29.77551],[78.30363,29.77476],[78.30061,29.77104],[78.30096,29.76825],[78.29268,29.75906],[78.28453,29.76178],[78.28095,29.75576],[78.2683,29.74645],[78.26703,29.74284],[78.26219,29.74355],[78.25975,29.73834],[78.25565,29.73825],[78.25009,29.73426],[78.24592,29.73452],[78.24023,29.74143],[78.22958,29.73669],[78.22165,29.74066],[78.20392,29.73727],[78.20016,29.73029],[78.20358,29.72826],[78.20201,29.71443],[78.19603,29.69268],[78.1884,29.69229],[78.18051,29.69683],[78.17162,29.69157],[78.13758,29.66354],[78.13359,29.6595],[78.13054,29.65254],[78.11929,29.64997],[78.10403,29.64123],[78.0934,29.64045],[78.08146,29.63514],[78.08669,29.62503],[78.08188,29.62514],[78.06855,29.63042],[78.05747,29.63069],[78.05711,29.62669],[78.04885,29.61461],[78.04649,29.61607],[78.03432,29.61038],[78.03307,29.61161],[78.03109,29.60832],[78.01828,29.5982],[78.01524,29.58725],[78.0216,29.58085],[78.0008,29.58621],[77.99617,29.59146],[77.99517,29.5958],[77.99353,29.59122],[77.98645,29.58438],[77.98272,29.58356],[77.97997,29.58515],[77.97493,29.58502],[77.97311,29.58031],[77.96889,29.58141],[77.9671,29.58014],[77.94034,29.59271],[77.9333,29.60051],[77.94277,29.60865],[77.94842,29.61691],[77.96021,29.61165],[77.97769,29.61345],[77.97597,29.61738],[77.97739,29.63125],[77.98379,29.64364],[77.98186,29.64512],[77.97945,29.64266],[77.96645,29.65014],[77.96955,29.65623],[77.96996,29.66643],[77.94937,29.6798],[77.94744,29.68309],[77.95093,29.68736],[77.94589,29.68996],[77.94567,29.69182],[77.93989,29.69608],[77.95098,29.70159],[77.94957,29.70413],[77.95302,29.70735],[77.94702,29.71248],[77.94094,29.71084],[77.93815,29.71448],[77.93457,29.71112],[77.92644,29.71422],[77.91979,29.705],[77.91692,29.70556],[77.91577,29.70221],[77.92007,29.69929],[77.91396,29.69848],[77.91253,29.69592],[77.90207,29.70119],[77.89661,29.7022],[77.8945,29.69973],[77.8909,29.69886],[77.88265,29.70243],[77.87901,29.70024],[77.87948,29.69291],[77.87471,29.68729],[77.8696,29.68899],[77.8656,29.68781],[77.86281,29.68945],[77.8557,29.68006],[77.85373,29.68154],[77.85025,29.67998],[77.84709,29.67541],[77.8431,29.67522],[77.83862,29.67049],[77.83678,29.67171],[77.83568,29.66956],[77.83195,29.67041],[77.83005,29.6683],[77.81534,29.67831],[77.80924,29.67986],[77.79905,29.68619],[77.81048,29.70237],[77.8026,29.70339],[77.79185,29.70994],[77.78558,29.71057],[77.78334,29.7094],[77.77872,29.71068],[77.77172,29.71385],[77.76973,29.7176],[77.78268,29.73624],[77.76953,29.74534],[77.76931,29.75059],[77.77052,29.75022],[77.78036,29.76502],[77.77312,29.7687],[77.77786,29.77498],[77.77238,29.78],[77.77396,29.78401],[77.77219,29.78641],[77.77467,29.79102],[77.76545,29.79592],[77.76322,29.80263],[77.75158,29.81068],[77.75608,29.81284],[77.75899,29.8185],[77.75399,29.8208],[77.7557,29.8253],[77.74022,29.83473],[77.74404,29.83988],[77.74145,29.84671],[77.74389,29.84758],[77.74189,29.85185],[77.72657,29.85424],[77.72567,29.85613],[77.72344,29.85505],[77.71652,29.86319],[77.71864,29.86545],[77.71786,29.86679],[77.7143,29.86945],[77.71521,29.87299],[77.72077,29.87616],[77.71695,29.87847],[77.71471,29.88408],[77.71602,29.88588],[77.71846,29.8874],[77.72275,29.88442],[77.72412,29.88678],[77.72328,29.88854],[77.72507,29.89031],[77.73186,29.8928],[77.72856,29.89755],[77.72927,29.90051],[77.73392,29.89964],[77.73367,29.90157],[77.7386,29.90321],[77.73653,29.90666],[77.74778,29.91117],[77.74298,29.9181],[77.74289,29.92493],[77.73047,29.9317],[77.74062,29.94219],[77.74299,29.94094],[77.743,29.94381],[77.74723,29.94664],[77.74492,29.94784],[77.74836,29.95164],[77.73701,29.95376],[77.7333,29.95593],[77.74062,29.96956],[77.7402,29.97529],[77.74603,29.98055],[77.74371,29.98336],[77.74768,29.986],[77.75034,29.98587],[77.75527,29.99198],[77.76038,29.99511],[77.75538,29.999],[77.76423,30.00445],[77.76196,30.0093],[77.77168,30.01498],[77.77391,30.01475],[77.77581,30.01797],[77.78198,30.01863],[77.78276,30.02385],[77.78549,30.02789],[77.77938,30.03067],[77.78137,30.0335],[77.77005,30.04255],[77.77114,30.04802],[77.77482,30.05522],[77.78113,30.06048],[77.79084,30.07502],[77.79582,30.07986],[77.79477,30.08125],[77.79845,30.08355],[77.79675,30.08528],[77.7997,30.08719],[77.79917,30.09047],[77.8012,30.09548],[77.81045,30.09272],[77.82167,30.08568],[77.82805,30.08592],[77.83428,30.09052],[77.83303,30.09458],[77.83661,30.09844],[77.83682,30.10352],[77.84161,30.10265],[77.84936,30.1047],[77.86042,30.11319],[77.86609,30.11913],[77.86842,30.12683],[77.87688,30.13923],[77.88118,30.15073],[77.88893,30.15732],[77.90028,30.17259],[77.91202,30.18253],[77.91175,30.18665],[77.91483,30.19156],[77.91393,30.19647],[77.91802,30.20307],[77.91894,30.21128],[77.93213,30.21439],[77.9348,30.21928],[77.93793,30.22084],[77.93839,30.22434],[77.94116,30.22788],[77.94602,30.23036],[77.94692,30.23406],[77.958,30.24224],[77.9617,30.24237],[77.9565,30.24545],[77.95151,30.24528],[77.94982,30.24231],[77.94413,30.23925],[77.94147,30.23979],[77.93822,30.24384],[77.93699,30.24916],[77.91089,30.25699],[77.894,30.26537],[77.88574,30.26698],[77.88166,30.26227],[77.87958,30.26195],[77.86933,30.26611],[77.86567,30.26582],[77.85869,30.27141],[77.84653,30.27164],[77.84717,30.27659],[77.84217,30.27639],[77.84075,30.27376],[77.83902,30.27453],[77.83283,30.28018],[77.79424,30.29716],[77.78571,30.30298],[77.78425,30.30565],[77.76578,30.31415],[77.76116,30.31829],[77.74701,30.3201],[77.73209,30.32809],[77.72185,30.33021],[77.71355,30.3399],[77.70978,30.34161],[77.70897,30.345],[77.70608,30.34707],[77.70224,30.35562],[77.69472,30.36574],[77.6904,30.37595],[77.68607,30.37925],[77.6831,30.37646],[77.67808,30.37566],[77.67623,30.38032],[77.67655,30.38778],[77.67242,30.39047],[77.65973,30.39056],[77.65665,30.40094],[77.65279,30.40122],[77.64726,30.40473],[77.6409,30.40279],[77.63591,30.39901],[77.62925,30.3979],[77.62552,30.40175],[77.62504,30.40453],[77.62289,30.40519],[77.61849,30.40238],[77.60505,30.40171],[77.60288,30.40293],[77.6017,30.3997]],[[78.5013,25.17063],[78.50842,25.17793],[78.51559,25.1809],[78.52963,25.18023],[78.52723,25.17718],[78.51298,25.17024],[78.50306,25.1632],[78.49665,25.15368],[78.49426,25.15265],[78.49295,25.15532],[78.5013,25.17063]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"1","area_level":"District","area_name":"Anantnag","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.276,34.24863],[75.26317,34.25463],[75.26101,34.25244],[75.25965,34.2469],[75.24911,34.24279],[75.24309,34.24257],[75.23508,34.23386],[75.2232,34.23426],[75.21519,34.22859],[75.20687,34.2295],[75.2041,34.2251],[75.20372,34.22017],[75.19212,34.21252],[75.19291,34.20199],[75.18846,34.19635],[75.18186,34.19507],[75.17037,34.20332],[75.15962,34.20352],[75.15359,34.20697],[75.14592,34.20021],[75.13312,34.19998],[75.1254,34.19559],[75.13722,34.18331],[75.13142,34.17165],[75.12693,34.16831],[75.10886,34.17068],[75.10329,34.16963],[75.10582,34.15913],[75.09662,34.15435],[75.10372,34.15136],[75.11367,34.15066],[75.13666,34.13974],[75.13792,34.13305],[75.14646,34.12135],[75.14151,34.11638],[75.13852,34.10453],[75.1422,34.09523],[75.14958,34.09426],[75.15412,34.07757],[75.16042,34.07916],[75.17521,34.0713],[75.18404,34.0713],[75.19025,34.06781],[75.19749,34.06699],[75.20459,34.06877],[75.20374,34.06562],[75.20561,34.06111],[75.21037,34.058],[75.20924,34.05229],[75.2158,34.05158],[75.21868,34.03677],[75.23351,34.03167],[75.23509,34.02662],[75.23373,34.02098],[75.22271,34.01691],[75.22634,34.00995],[75.22336,34.00466],[75.22393,33.99224],[75.22014,33.9812],[75.22245,33.96363],[75.22598,33.95447],[75.22415,33.95019],[75.22021,33.94726],[75.22028,33.94495],[75.21503,33.93568],[75.20183,33.92071],[75.19881,33.91504],[75.19922,33.91234],[75.19391,33.90527],[75.16508,33.90009],[75.15519,33.88411],[75.15024,33.88135],[75.14921,33.87818],[75.14293,33.87355],[75.13777,33.87321],[75.13218,33.87555],[75.1215,33.86576],[75.10993,33.87026],[75.10099,33.87124],[75.10096,33.8687],[75.09812,33.86496],[75.08992,33.86096],[75.08834,33.85802],[75.08532,33.85732],[75.08112,33.85291],[75.07306,33.85302],[75.07031,33.85572],[75.06442,33.85172],[75.06162,33.85414],[75.05862,33.85315],[75.05679,33.8585],[75.04652,33.85295],[75.05069,33.85267],[75.05592,33.84742],[75.06068,33.84615],[75.07547,33.83386],[75.07606,33.83116],[75.0925,33.81344],[75.10083,33.81112],[75.10612,33.80686],[75.10783,33.80172],[75.10147,33.7901],[75.10345,33.78267],[75.1033,33.772],[75.11295,33.77089],[75.1148,33.77563],[75.11745,33.77778],[75.12185,33.76499],[75.12137,33.74878],[75.12268,33.7406],[75.12756,33.73518],[75.12063,33.73635],[75.11963,33.73124],[75.11375,33.73014],[75.1117,33.72821],[75.11374,33.72671],[75.11598,33.72026],[75.11799,33.72164],[75.12361,33.72059],[75.12356,33.71727],[75.12989,33.71652],[75.12948,33.71519],[75.12895,33.71402],[75.12569,33.71425],[75.12364,33.70826],[75.12593,33.7058],[75.12026,33.70128],[75.11652,33.70113],[75.10702,33.70526],[75.10346,33.69595],[75.09822,33.6883],[75.09941,33.68417],[75.10297,33.68362],[75.10773,33.68561],[75.1017,33.67296],[75.12059,33.6729],[75.12074,33.67032],[75.1278,33.66013],[75.13751,33.65417],[75.12004,33.64914],[75.12489,33.63383],[75.13053,33.63592],[75.13571,33.62826],[75.13601,33.62451],[75.12901,33.62319],[75.12649,33.62035],[75.13082,33.61429],[75.13876,33.61005],[75.14041,33.60624],[75.14074,33.60249],[75.13467,33.58967],[75.14909,33.59249],[75.1526,33.58875],[75.1571,33.59014],[75.16126,33.58878],[75.16606,33.59665],[75.17503,33.59148],[75.17504,33.59015],[75.16951,33.5906],[75.17,33.57964],[75.16056,33.57006],[75.16009,33.5648],[75.15199,33.55727],[75.15113,33.55106],[75.14606,33.54556],[75.14184,33.53565],[75.14309,33.5293],[75.14129,33.52534],[75.15754,33.52374],[75.16515,33.5251],[75.17547,33.52433],[75.18622,33.51722],[75.19875,33.5166],[75.2056,33.50908],[75.20925,33.50828],[75.21753,33.50271],[75.22276,33.50207],[75.23118,33.49587],[75.23079,33.4939],[75.23523,33.48893],[75.24256,33.48559],[75.24792,33.47527],[75.25971,33.46927],[75.27975,33.45143],[75.29024,33.43538],[75.30818,33.42376],[75.31557,33.41435],[75.32906,33.40524],[75.33056,33.39623],[75.33775,33.39325],[75.34938,33.3841],[75.35429,33.38346],[75.35747,33.38113],[75.36572,33.38128],[75.37573,33.37802],[75.37693,33.36784],[75.38003,33.3651],[75.39758,33.36606],[75.41636,33.38128],[75.4431,33.37908],[75.44666,33.38166],[75.44711,33.38666],[75.4525,33.39859],[75.46415,33.40437],[75.47241,33.40078],[75.48189,33.40733],[75.47913,33.41361],[75.47413,33.4191],[75.47706,33.42482],[75.48353,33.43081],[75.48385,33.43444],[75.47961,33.4381],[75.48716,33.44431],[75.48967,33.45297],[75.48214,33.45905],[75.48115,33.47082],[75.47484,33.47505],[75.47116,33.48325],[75.46897,33.48484],[75.46694,33.49958],[75.48248,33.51229],[75.48649,33.52287],[75.49859,33.52896],[75.50481,33.52718],[75.5103,33.52884],[75.51124,33.53904],[75.51394,33.54167],[75.50678,33.54493],[75.50274,33.54991],[75.50806,33.56221],[75.50548,33.56917],[75.50636,33.57317],[75.50852,33.5751],[75.50975,33.58124],[75.51878,33.587],[75.52389,33.58715],[75.53463,33.60118],[75.53283,33.60723],[75.5262,33.61477],[75.52204,33.61628],[75.5225,33.62439],[75.51804,33.62381],[75.50985,33.61899],[75.50766,33.62064],[75.51052,33.63133],[75.50803,33.63316],[75.50375,33.6296],[75.5,33.62891],[75.5,33.63627],[75.50557,33.64135],[75.50462,33.64782],[75.5167,33.6544],[75.51151,33.65741],[75.50824,33.66197],[75.50612,33.67472],[75.50912,33.68169],[75.50056,33.69105],[75.5,33.69632],[75.50137,33.69961],[75.51024,33.70313],[75.52098,33.71535],[75.51207,33.71965],[75.51087,33.72299],[75.50553,33.7256],[75.49515,33.73914],[75.48226,33.74722],[75.47606,33.74824],[75.47767,33.75092],[75.47122,33.7555],[75.46353,33.75709],[75.46967,33.76414],[75.46528,33.76681],[75.46854,33.77274],[75.47691,33.77601],[75.48132,33.78056],[75.48177,33.78486],[75.46998,33.79146],[75.46067,33.79454],[75.45844,33.80254],[75.4513,33.80827],[75.45545,33.81089],[75.45495,33.81466],[75.44322,33.82084],[75.44211,33.82457],[75.44313,33.82913],[75.43552,33.83146],[75.437,33.83621],[75.43562,33.8389],[75.43182,33.83962],[75.42652,33.8457],[75.42826,33.85278],[75.4194,33.86458],[75.41525,33.87408],[75.41421,33.88567],[75.41171,33.88774],[75.41013,33.89286],[75.40361,33.8917],[75.40127,33.895],[75.3981,33.8957],[75.39869,33.89809],[75.39359,33.90282],[75.39281,33.9082],[75.3954,33.91232],[75.39109,33.91607],[75.39209,33.91967],[75.39496,33.92184],[75.39725,33.9305],[75.39527,33.93329],[75.39065,33.93472],[75.38921,33.93744],[75.39628,33.94037],[75.39399,33.94892],[75.39504,33.95091],[75.39402,33.96254],[75.40323,33.96718],[75.40547,33.97105],[75.41403,33.97776],[75.41471,33.9804],[75.4192,33.98045],[75.42964,33.98471],[75.42919,33.99],[75.43435,33.99422],[75.43334,33.99708],[75.43828,34.00254],[75.43661,34.01238],[75.43386,34.01493],[75.43315,34.01969],[75.44301,34.02757],[75.44161,34.0314],[75.44704,34.03452],[75.44665,34.03993],[75.44946,34.04151],[75.45671,34.03633],[75.46063,34.03742],[75.46046,34.04189],[75.46488,34.04314],[75.47954,34.03853],[75.48284,34.04359],[75.48795,34.04483],[75.49474,34.04361],[75.49529,34.04054],[75.49724,34.03913],[75.50022,34.0401],[75.50474,34.03868],[75.51521,34.04188],[75.52163,34.0463],[75.51995,34.04848],[75.52081,34.05047],[75.52687,34.0536],[75.52778,34.05771],[75.53176,34.06218],[75.53232,34.07321],[75.52966,34.08023],[75.53162,34.08481],[75.52945,34.09027],[75.53013,34.09325],[75.52721,34.09527],[75.52951,34.10184],[75.53311,34.10362],[75.53732,34.10913],[75.53648,34.11384],[75.53291,34.1187],[75.53917,34.12623],[75.54068,34.13151],[75.53942,34.13539],[75.54689,34.14176],[75.54897,34.15241],[75.55215,34.15568],[75.57233,34.1567],[75.57564,34.16267],[75.57643,34.16982],[75.58813,34.17548],[75.58634,34.17968],[75.58668,34.18411],[75.59336,34.19769],[75.57993,34.21397],[75.57026,34.21137],[75.55533,34.21141],[75.53824,34.22308],[75.53427,34.22366],[75.52973,34.22683],[75.52313,34.229],[75.51459,34.22671],[75.5029,34.23435],[75.49535,34.2324],[75.49272,34.22541],[75.47396,34.2194],[75.46894,34.21497],[75.46666,34.20849],[75.46056,34.21129],[75.45691,34.21058],[75.44247,34.21778],[75.42624,34.2306],[75.41588,34.23362],[75.41082,34.23788],[75.40408,34.22895],[75.404,34.21761],[75.39143,34.21307],[75.37839,34.20593],[75.36391,34.21293],[75.35185,34.21217],[75.34742,34.21377],[75.33386,34.21454],[75.33112,34.21633],[75.33065,34.22002],[75.32834,34.22234],[75.32402,34.22308],[75.31771,34.22767],[75.31797,34.23038],[75.31482,34.23312],[75.29287,34.23683],[75.28775,34.24181],[75.28661,34.24745],[75.28297,34.25],[75.28159,34.24832],[75.276,34.24863]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"10","area_level":"District","area_name":"Poonch","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.50217,34.14436],[73.49334,34.14647],[73.49093,34.13967],[73.49719,34.13245],[73.49443,34.12468],[73.49835,34.1123],[73.49763,34.10486],[73.50129,34.0966],[73.49923,34.08775],[73.49967,34.07457],[73.5078,34.06486],[73.51139,34.04944],[73.51136,34.0326],[73.51789,34.0218],[73.51645,33.99883],[73.52607,33.99142],[73.52778,33.98815],[73.5291,33.9823],[73.5322,33.97816],[73.53254,33.97216],[73.53643,33.96519],[73.53779,33.95634],[73.5454,33.94382],[73.54761,33.93693],[73.55005,33.93383],[73.55772,33.9299],[73.56312,33.92047],[73.58444,33.90496],[73.59092,33.89748],[73.59355,33.88977],[73.59333,33.87879],[73.58779,33.87444],[73.58716,33.86067],[73.57795,33.84749],[73.5747,33.82245],[73.56971,33.81527],[73.56684,33.80001],[73.55992,33.78133],[73.56383,33.77496],[73.56964,33.77211],[73.57483,33.76329],[73.58396,33.76009],[73.59465,33.75123],[73.59678,33.74714],[73.5987,33.73587],[73.60356,33.72566],[73.60314,33.71509],[73.59819,33.70149],[73.60187,33.69032],[73.61342,33.68032],[73.61793,33.67114],[73.63372,33.66033],[73.63956,33.64668],[73.65949,33.63741],[73.67071,33.63722],[73.68976,33.63162],[73.69526,33.62814],[73.71122,33.6112],[73.71139,33.6058],[73.72606,33.59549],[73.72677,33.59019],[73.73177,33.58183],[73.73673,33.57843],[73.74092,33.57888],[73.74781,33.59598],[73.74501,33.61952],[73.7492,33.61998],[73.77288,33.61077],[73.77975,33.61182],[73.79177,33.6201],[73.80028,33.62029],[73.812,33.61784],[73.81845,33.61483],[73.83019,33.59778],[73.83836,33.59129],[73.85175,33.58671],[73.86958,33.59592],[73.87392,33.60205],[73.88026,33.60264],[73.88735,33.59612],[73.91661,33.59763],[73.92761,33.60102],[73.93897,33.61414],[73.95205,33.62017],[73.96609,33.6156],[73.97529,33.60686],[73.98933,33.60183],[74.00538,33.59855],[74.02015,33.60401],[74.02717,33.59825],[74.03611,33.60289],[74.04801,33.59896],[74.072,33.59618],[74.07926,33.59696],[74.0846,33.59425],[74.09336,33.59403],[74.09624,33.58832],[74.09298,33.58422],[74.08537,33.58032],[74.08343,33.5759],[74.0813,33.5751],[74.08197,33.5704],[74.08017,33.56308],[74.0668,33.55516],[74.05929,33.55453],[74.05513,33.5524],[74.05542,33.5466],[74.04864,33.54218],[74.04145,33.53866],[74.03154,33.53758],[74.03144,33.53233],[74.03552,33.52884],[74.03842,33.52149],[74.03719,33.51999],[74.03242,33.52147],[74.02565,33.51833],[74.02851,33.5117],[74.03077,33.50997],[74.03912,33.50901],[74.04525,33.49778],[74.04637,33.49273],[74.0534,33.49081],[74.05662,33.47986],[74.0605,33.47872],[74.0647,33.47434],[74.06585,33.46857],[74.05951,33.46545],[74.05373,33.4598],[74.0557,33.45515],[74.06479,33.44511],[74.07424,33.43946],[74.07875,33.42728],[74.09079,33.41173],[74.08903,33.40368],[74.09029,33.39574],[74.09384,33.39405],[74.11788,33.39651],[74.11899,33.39311],[74.12243,33.39195],[74.13839,33.39096],[74.13809,33.39689],[74.14922,33.39979],[74.15171,33.40275],[74.15618,33.40451],[74.16071,33.41005],[74.16999,33.41237],[74.17374,33.41177],[74.18581,33.42199],[74.18612,33.4244],[74.18271,33.42751],[74.19171,33.43357],[74.19846,33.44547],[74.20446,33.44834],[74.21668,33.47154],[74.21819,33.48205],[74.22307,33.48487],[74.22744,33.49016],[74.22793,33.50436],[74.226,33.50936],[74.222,33.51482],[74.21677,33.51732],[74.2121,33.53081],[74.20789,33.53456],[74.20778,33.53786],[74.21091,33.54172],[74.21112,33.54652],[74.22173,33.55211],[74.22543,33.55017],[74.23239,33.55057],[74.24408,33.55583],[74.24866,33.55367],[74.25403,33.5426],[74.25918,33.55011],[74.26467,33.55164],[74.27836,33.54733],[74.27853,33.55104],[74.28181,33.55088],[74.28581,33.54754],[74.29892,33.55405],[74.30059,33.55861],[74.29964,33.56434],[74.30744,33.57233],[74.31332,33.57174],[74.32441,33.577],[74.32834,33.57614],[74.3331,33.57177],[74.34941,33.57737],[74.35649,33.58406],[74.37005,33.5813],[74.37566,33.58354],[74.38592,33.58052],[74.388,33.57797],[74.40066,33.57704],[74.40891,33.57202],[74.41994,33.57212],[74.42402,33.57038],[74.44112,33.55558],[74.44208,33.55414],[74.44064,33.55204],[74.44797,33.54517],[74.47349,33.53111],[74.48957,33.52017],[74.49823,33.51116],[74.49823,33.50659],[74.50697,33.50018],[74.50601,33.49883],[74.51005,33.48496],[74.51774,33.48545],[74.52237,33.48024],[74.52157,33.47733],[74.52485,33.47568],[74.52837,33.47077],[74.53339,33.47178],[74.54034,33.46816],[74.54323,33.47518],[74.53998,33.47774],[74.54157,33.481],[74.53785,33.48681],[74.54105,33.48898],[74.54554,33.48866],[74.56052,33.49348],[74.5713,33.49163],[74.57311,33.49278],[74.57303,33.49676],[74.56989,33.50281],[74.57014,33.5046],[74.57434,33.50737],[74.57382,33.51172],[74.57578,33.51416],[74.57108,33.51759],[74.56799,33.51797],[74.56547,33.52395],[74.55641,33.52463],[74.55553,33.52756],[74.5479,33.52912],[74.54755,33.53066],[74.54571,33.52833],[74.53778,33.52787],[74.53316,33.53229],[74.5291,33.54679],[74.52549,33.54951],[74.51971,33.55041],[74.51582,33.55405],[74.51801,33.55997],[74.52791,33.56707],[74.5219,33.57345],[74.52425,33.57887],[74.5211,33.58267],[74.52045,33.58618],[74.51575,33.59104],[74.51377,33.59967],[74.51529,33.60243],[74.52068,33.60552],[74.5203,33.60953],[74.52733,33.61681],[74.52511,33.62487],[74.52218,33.62523],[74.51951,33.6287],[74.51972,33.64134],[74.52943,33.64329],[74.53096,33.65433],[74.53314,33.65736],[74.53175,33.66011],[74.53928,33.6663],[74.54358,33.67363],[74.54389,33.67923],[74.54113,33.68256],[74.54261,33.68398],[74.54201,33.68845],[74.5436,33.6929],[74.53678,33.6953],[74.52789,33.69499],[74.52645,33.69981],[74.51808,33.70254],[74.51595,33.70534],[74.50437,33.70396],[74.50789,33.71105],[74.50315,33.7154],[74.50171,33.71926],[74.49505,33.72395],[74.49106,33.72451],[74.48797,33.7291],[74.4799,33.73316],[74.47466,33.73318],[74.47322,33.73936],[74.4662,33.74769],[74.46631,33.75016],[74.45742,33.75211],[74.45319,33.75522],[74.45254,33.75986],[74.44993,33.76397],[74.46451,33.77309],[74.46321,33.77856],[74.47034,33.78457],[74.45706,33.79652],[74.45257,33.80496],[74.4453,33.80734],[74.44304,33.81026],[74.43923,33.8115],[74.43816,33.81563],[74.44277,33.82139],[74.44174,33.82451],[74.43265,33.82464],[74.41719,33.83583],[74.41637,33.83858],[74.41086,33.84402],[74.41021,33.85141],[74.41413,33.8587],[74.40819,33.86356],[74.40628,33.86944],[74.40159,33.87433],[74.40342,33.87793],[74.40243,33.8832],[74.40419,33.88585],[74.41509,33.88784],[74.40899,33.89617],[74.41757,33.90299],[74.4192,33.90841],[74.41132,33.90794],[74.40985,33.90908],[74.41007,33.91306],[74.40524,33.9206],[74.39609,33.92699],[74.39504,33.93377],[74.39089,33.93647],[74.38737,33.94594],[74.38105,33.94696],[74.37704,33.9494],[74.3731,33.94796],[74.35357,33.95665],[74.33261,33.95232],[74.32949,33.95608],[74.31655,33.95701],[74.31971,33.95863],[74.31845,33.96339],[74.31371,33.96744],[74.3122,33.97108],[74.31314,33.97346],[74.31703,33.97488],[74.31558,33.97779],[74.31262,33.97844],[74.30492,33.98615],[74.30207,33.99552],[74.28354,33.9933],[74.27794,33.99055],[74.27608,33.98647],[74.27157,33.98652],[74.27045,33.98974],[74.26745,33.9904],[74.2673,33.99307],[74.26431,33.99541],[74.26321,33.99875],[74.2567,33.9993],[74.25561,34.00322],[74.20532,34.00073],[74.18549,33.98945],[74.16483,33.99294],[74.15559,33.99808],[74.14435,34.00138],[74.13008,34.00083],[74.1141,33.9916],[74.11016,33.98549],[74.10269,33.98147],[74.08482,33.97797],[74.05507,33.9626],[74.03708,33.95612],[74.0284,33.95684],[74.0204,33.96038],[74.00935,33.9606],[74.00576,33.96513],[74.00522,33.97233],[74.00187,33.97983],[73.9941,33.98616],[73.95812,33.99488],[73.92465,34.02068],[73.91852,34.02298],[73.88785,34.02711],[73.87387,34.03456],[73.84882,34.07042],[73.84085,34.07584],[73.82726,34.08059],[73.80887,34.08307],[73.79364,34.08301],[73.79097,34.08718],[73.78839,34.0826],[73.74266,34.0762],[73.69726,34.07616],[73.69055,34.06583],[73.68433,34.06082],[73.66617,34.05626],[73.65309,34.05524],[73.64208,34.05732],[73.63538,34.06005],[73.62444,34.07286],[73.61821,34.08407],[73.61165,34.07932],[73.6117,34.0713],[73.60856,34.06807],[73.60081,34.06672],[73.59266,34.07355],[73.59016,34.08025],[73.57978,34.09208],[73.55695,34.10658],[73.54653,34.11633],[73.54075,34.12349],[73.53749,34.13305],[73.52876,34.14401],[73.51642,34.14633],[73.50838,34.14352],[73.50217,34.14436]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"100","area_level":"District","area_name":"Ganganagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.29673,29.95544],[74.09946,29.96721],[73.89512,29.97408],[73.89539,29.98221],[73.88622,29.99603],[73.88653,30.01249],[73.89362,30.02189],[73.90405,30.05012],[73.92989,30.06875],[73.94952,30.09614],[73.95217,30.10434],[73.96763,30.11929],[73.97565,30.12099],[73.97082,30.12541],[73.96814,30.14484],[73.96833,30.16867],[73.97215,30.17524],[73.97383,30.18194],[73.97433,30.18911],[73.97256,30.19815],[73.9097,30.15042],[73.82782,30.09233],[73.81993,30.08529],[73.80656,30.06803],[73.597,30.01898],[73.39693,29.946],[73.33702,29.74518],[73.28389,29.58105],[73.2821,29.57203],[73.08443,29.23627],[73.00436,29.15295],[72.94584,29.02795],[72.73309,28.94809],[72.66187,28.91019],[72.66196,28.8938],[72.67208,28.89379],[72.67757,28.86444],[72.68665,28.84774],[72.68705,28.83534],[72.70818,28.83489],[72.7081,28.82644],[72.71332,28.82624],[72.71339,28.81741],[72.75041,28.8177],[72.75046,28.82068],[72.7557,28.8152],[72.75,28.80905],[72.74517,28.79758],[72.7504,28.79722],[72.75033,28.78381],[72.79385,28.78361],[72.79372,28.77695],[72.80643,28.77686],[72.80649,28.7747],[72.82676,28.77458],[72.82686,28.7678],[72.83438,28.76788],[72.83439,28.76332],[72.84742,28.76331],[72.84744,28.75876],[72.86792,28.75877],[72.86789,28.75435],[72.89373,28.75424],[72.89368,28.73854],[72.85764,28.73851],[72.85761,28.7249],[73.00945,28.72495],[73.00947,28.72949],[73.01462,28.72949],[73.01463,28.73176],[73.03778,28.73174],[73.03783,28.74082],[73.03269,28.74083],[73.03271,28.74763],[73.04816,28.74763],[73.04817,28.75101],[73.05201,28.75017],[73.06657,28.75492],[73.08044,28.76186],[73.09943,28.76492],[73.10589,28.76354],[73.12533,28.77371],[73.13521,28.781],[73.14733,28.78417],[73.15553,28.79415],[73.15084,28.8044],[73.15677,28.81316],[73.15511,28.8167],[73.16428,28.82599],[73.16705,28.82506],[73.1817,28.83466],[73.19989,28.85157],[73.21189,28.85143],[73.21525,28.84836],[73.22103,28.85137],[73.19861,28.87447],[73.20162,28.87444],[73.20596,28.87776],[73.20995,28.87518],[73.22075,28.87842],[73.22106,28.8856],[73.21855,28.88613],[73.21305,28.89395],[73.2092,28.89444],[73.20871,28.92166],[73.21735,28.92081],[73.22261,28.91852],[73.23169,28.91958],[73.2348,28.91711],[73.23557,28.92659],[73.24293,28.92661],[73.24275,28.93223],[73.24954,28.93566],[73.28108,28.93567],[73.28129,28.96744],[73.2794,28.96737],[73.28089,28.96922],[73.30965,28.96961],[73.30967,28.97421],[73.31224,28.97418],[73.31235,28.98778],[73.32526,28.98769],[73.32531,29.00148],[73.37412,29.00073],[73.37408,29.00176],[73.36363,29.00189],[73.36381,29.01269],[73.4003,29.01255],[73.39987,29.00618],[73.43915,29.00592],[73.43923,29.00368],[73.44675,29.00373],[73.44675,29.00159],[73.46491,29.00139],[73.46498,28.99337],[73.46222,28.98607],[73.46743,28.98205],[73.48048,29.0],[73.48178,29.00543],[73.50608,29.00529],[73.50613,29.00332],[73.51952,28.9934],[73.53753,29.0],[73.55843,29.00292],[73.56211,28.99845],[73.57437,29.00141],[73.5841,29.00618],[73.58997,29.01183],[73.58985,29.01335],[73.5959,29.0167],[73.60077,29.02247],[73.59923,29.02471],[73.61763,29.03418],[73.62752,29.03672],[73.63323,29.03019],[73.63327,29.02795],[73.63939,29.02772],[73.64588,29.02153],[73.65107,29.02217],[73.65438,29.01676],[73.66343,29.01797],[73.6668,29.01506],[73.67453,29.01577],[73.68018,29.01847],[73.69085,29.03599],[73.69957,29.0341],[73.69815,29.03213],[73.69845,29.02576],[73.70334,29.02318],[73.71104,29.02367],[73.71302,29.02146],[73.72712,29.02437],[73.73486,29.0174],[73.73695,29.01818],[73.74033,29.00355],[73.74768,29.01079],[73.75177,29.01837],[73.75217,29.02554],[73.75984,29.03122],[73.7709,29.04959],[73.77487,29.04776],[73.78354,29.04848],[73.78243,29.04154],[73.78368,29.03666],[73.79416,29.03917],[73.80049,29.03615],[73.80141,29.02099],[73.79588,29.01624],[73.79821,29.00475],[73.80643,28.99711],[73.80885,28.99008],[73.81333,28.99128],[73.8193,28.99034],[73.82456,28.98612],[73.82675,28.98229],[73.82615,28.97848],[73.82866,28.96936],[73.83109,28.96513],[73.83735,28.96864],[73.83846,28.96671],[73.84282,28.96795],[73.85226,28.95101],[73.8449,28.94524],[73.84603,28.93666],[73.86299,28.93726],[73.8736,28.94076],[73.87838,28.9393],[73.90794,28.95427],[73.90864,28.95957],[73.92571,28.96193],[73.9268,28.96452],[73.9353,28.96389],[73.93799,28.96604],[73.96809,28.97538],[73.96632,28.95934],[73.96209,28.95415],[73.96067,28.94649],[73.95781,28.94425],[73.95996,28.94217],[73.95904,28.93931],[73.96162,28.93854],[73.96307,28.93472],[73.96348,28.92884],[73.96212,28.92708],[73.97141,28.90162],[73.99216,28.91064],[74.00454,28.92089],[74.01171,28.92431],[74.01302,28.92643],[74.01207,28.92773],[74.01526,28.93156],[74.02645,28.93352],[74.02373,28.94116],[74.0248,28.94164],[74.02291,28.94239],[74.02196,28.94535],[74.02397,28.94843],[74.02287,28.94916],[74.02389,28.95183],[74.02225,28.95552],[74.01842,28.95582],[74.01801,28.9596],[74.01856,28.96352],[74.02067,28.96503],[74.01876,28.96967],[74.02048,28.971],[74.02087,28.97461],[74.0195,28.98706],[74.02141,28.98761],[74.02987,28.99875],[74.03046,29.00002],[74.02779,29.0039],[74.06139,29.01842],[74.06397,29.02089],[74.07091,29.0226],[74.07877,29.02829],[74.08246,29.02901],[74.08374,29.03215],[74.09171,29.03686],[74.09491,29.04339],[74.10105,29.04413],[74.10101,29.04804],[74.10322,29.04911],[74.10474,29.05306],[74.11079,29.05712],[74.10995,29.06177],[74.11217,29.06462],[74.11805,29.06411],[74.12178,29.06558],[74.12888,29.06397],[74.13594,29.06861],[74.13741,29.07438],[74.13557,29.0745],[74.13456,29.08244],[74.14372,29.088],[74.14377,29.09208],[74.14712,29.09326],[74.15306,29.10343],[74.16255,29.11124],[74.15937,29.12115],[74.16082,29.12805],[74.16349,29.13104],[74.16598,29.1389],[74.17832,29.14628],[74.2025,29.14958],[74.20239,29.15307],[74.20433,29.15451],[74.20362,29.16388],[74.20668,29.17247],[74.20546,29.17402],[74.20269,29.1735],[74.20291,29.1761],[74.19886,29.1846],[74.19932,29.18885],[74.20627,29.19001],[74.20691,29.19396],[74.20926,29.19599],[74.20703,29.20101],[74.20926,29.2025],[74.20855,29.20487],[74.21035,29.20525],[74.20746,29.208],[74.20962,29.21002],[74.21029,29.21715],[74.21532,29.22],[74.2154,29.22208],[74.21264,29.2237],[74.21252,29.22921],[74.21632,29.24201],[74.2086,29.24432],[74.20685,29.25235],[74.20433,29.25235],[74.20439,29.2572],[74.19945,29.25932],[74.19927,29.26397],[74.20109,29.26519],[74.19935,29.26682],[74.18945,29.26833],[74.18729,29.27389],[74.18839,29.27744],[74.18651,29.27798],[74.19047,29.2808],[74.19226,29.2798],[74.19301,29.28238],[74.19807,29.2835],[74.20336,29.28946],[74.21449,29.29414],[74.21388,29.2957],[74.21651,29.29759],[74.23605,29.29788],[74.23612,29.30242],[74.24389,29.30235],[74.24385,29.30008],[74.24644,29.30006],[74.24648,29.30229],[74.24137,29.30691],[74.24148,29.31372],[74.23891,29.31543],[74.2391,29.32736],[74.22986,29.32751],[74.2293,29.33655],[74.21593,29.33665],[74.216,29.34119],[74.20563,29.34128],[74.2055,29.3322],[74.20291,29.33222],[74.20288,29.32995],[74.19511,29.33041],[74.19365,29.33287],[74.18998,29.3327],[74.18475,29.33011],[74.17952,29.32992],[74.16826,29.32453],[74.16651,29.3258],[74.16618,29.31392],[74.16449,29.31191],[74.16112,29.31297],[74.15383,29.30876],[74.15242,29.30175],[74.14137,29.30158],[74.14026,29.29533],[74.12682,29.29098],[74.1249,29.2954],[74.11373,29.29662],[74.10772,29.29486],[74.10103,29.28503],[74.10169,29.26955],[74.09602,29.26706],[74.09667,29.26456],[74.09173,29.2578],[74.07256,29.26503],[74.06118,29.27203],[74.06028,29.27531],[74.05424,29.27534],[74.04514,29.28701],[74.03234,29.2874],[74.02523,29.28213],[74.01854,29.28673],[74.01585,29.30853],[74.0191,29.31698],[74.01932,29.32802],[74.01555,29.33304],[74.00376,29.33369],[74.00047,29.3581],[73.9986,29.36243],[73.99325,29.36773],[73.99302,29.37733],[73.98924,29.37738],[73.98975,29.38337],[73.98654,29.38331],[73.98686,29.3896],[73.98428,29.38941],[73.98455,29.40042],[73.97242,29.38502],[73.95525,29.38809],[73.93876,29.36885],[73.90995,29.3692],[73.91017,29.37301],[73.9026,29.37293],[73.90251,29.40015],[73.90701,29.40484],[73.90667,29.41438],[73.90154,29.41443],[73.90136,29.41703],[73.8938,29.41689],[73.89358,29.42093],[73.88653,29.42085],[73.88585,29.44873],[73.92247,29.44874],[73.92257,29.45349],[73.9281,29.45357],[73.92825,29.45514],[73.93669,29.45375],[73.94333,29.45032],[73.94346,29.45774],[73.95369,29.45774],[73.95351,29.46488],[73.9509,29.46489],[73.95104,29.48365],[73.95621,29.48387],[73.95637,29.47743],[73.95898,29.47734],[73.95901,29.47511],[73.96424,29.47524],[73.96411,29.48558],[73.9692,29.48535],[73.96942,29.48833],[73.96661,29.48833],[73.96659,29.49243],[73.96347,29.49235],[73.96393,29.50401],[73.95679,29.504],[73.95673,29.50613],[73.95174,29.50623],[73.95177,29.51073],[73.94481,29.51082],[73.94482,29.51417],[73.94979,29.51407],[73.94991,29.51624],[73.95772,29.51636],[73.95775,29.51859],[73.9522,29.51853],[73.95241,29.5282],[73.94217,29.52803],[73.94224,29.53073],[73.94458,29.53089],[73.94455,29.53733],[73.94743,29.5373],[73.94755,29.54019],[73.95501,29.54013],[73.95548,29.55261],[73.95794,29.55274],[73.95793,29.55507],[73.96051,29.55502],[73.96059,29.55696],[73.93623,29.56186],[73.92121,29.55804],[73.92134,29.56028],[73.91609,29.56033],[73.91566,29.56842],[73.92066,29.56804],[73.9206,29.57084],[73.93124,29.5707],[73.93115,29.56861],[73.95013,29.56824],[73.95011,29.56938],[73.9553,29.57024],[73.95522,29.56829],[73.9627,29.56816],[73.96279,29.57716],[73.95984,29.57707],[73.95979,29.58392],[73.96224,29.58373],[73.96227,29.58696],[73.94492,29.58719],[73.94547,29.60664],[73.94847,29.60651],[73.94853,29.61132],[73.94316,29.61122],[73.94324,29.61335],[73.93768,29.61358],[73.93765,29.60885],[73.94045,29.60891],[73.94041,29.60646],[73.93488,29.60616],[73.93441,29.59344],[73.91318,29.60907],[73.90984,29.60984],[73.90969,29.60349],[73.90676,29.60328],[73.90432,29.59759],[73.89721,29.59785],[73.89657,29.60093],[73.8916,29.60089],[73.89161,29.59849],[73.88858,29.5985],[73.88862,29.59605],[73.88555,29.5959],[73.88542,29.59347],[73.88257,29.59336],[73.88256,29.58896],[73.86443,29.58901],[73.86424,29.59648],[73.85584,29.59096],[73.85312,29.59178],[73.85295,29.58925],[73.84792,29.58932],[73.84793,29.59809],[73.85031,29.60055],[73.85272,29.60047],[73.85362,29.60805],[73.86053,29.60766],[73.86061,29.61208],[73.85784,29.61211],[73.85766,29.62554],[73.85197,29.6254],[73.85188,29.6302],[73.84245,29.63045],[73.83811,29.639],[73.83416,29.6428],[73.83138,29.64266],[73.83118,29.65561],[73.84446,29.65567],[73.84445,29.65753],[73.85747,29.65756],[73.8576,29.65952],[73.86505,29.65953],[73.88057,29.66889],[73.88874,29.66934],[73.88883,29.67138],[73.91184,29.67183],[73.91177,29.66936],[73.91969,29.66927],[73.91975,29.667],[73.93772,29.66672],[73.92496,29.67217],[73.92484,29.68275],[73.9379,29.68294],[73.93777,29.68036],[73.94026,29.68058],[73.94015,29.67387],[73.94556,29.67378],[73.9455,29.66916],[73.94806,29.66919],[73.94813,29.67152],[73.95088,29.67144],[73.95097,29.67601],[73.95854,29.67612],[73.95855,29.70193],[73.97923,29.69328],[73.97896,29.72303],[73.98197,29.72296],[73.98196,29.71868],[74.01908,29.71904],[74.0191,29.7235],[74.02402,29.72351],[74.02418,29.73034],[74.0293,29.73025],[74.02923,29.73275],[74.0373,29.73267],[74.03728,29.73507],[74.04247,29.73508],[74.04246,29.73775],[74.04757,29.73767],[74.04761,29.7354],[74.05282,29.73523],[74.05285,29.72819],[74.07048,29.73065],[74.07318,29.73924],[74.08104,29.73938],[74.08119,29.73222],[74.08898,29.73235],[74.08907,29.73011],[74.11257,29.73013],[74.11257,29.72778],[74.11518,29.72774],[74.11512,29.72541],[74.11758,29.7254],[74.11761,29.72318],[74.12033,29.72312],[74.12042,29.71627],[74.13275,29.71672],[74.13311,29.7413],[74.13572,29.73952],[74.13497,29.76303],[74.14106,29.76297],[74.14123,29.75739],[74.14399,29.75736],[74.14395,29.75059],[74.1522,29.75046],[74.15227,29.75255],[74.15543,29.75247],[74.1556,29.75459],[74.16116,29.75459],[74.16126,29.75642],[74.16429,29.75636],[74.16445,29.75862],[74.16963,29.75847],[74.16973,29.76067],[74.18262,29.76032],[74.18262,29.75794],[74.18524,29.75785],[74.18267,29.72827],[74.19079,29.73489],[74.20114,29.73485],[74.20061,29.75097],[74.19788,29.75111],[74.19869,29.77019],[74.20887,29.77183],[74.21015,29.80173],[74.23207,29.80892],[74.22551,29.8254],[74.22973,29.82523],[74.22885,29.84136],[74.2321,29.84138],[74.23208,29.8441],[74.23717,29.844],[74.23723,29.84211],[74.25108,29.8418],[74.2511,29.8391],[74.26766,29.83861],[74.26788,29.84053],[74.27608,29.84031],[74.27625,29.84262],[74.28175,29.84254],[74.28194,29.86407],[74.27676,29.86413],[74.27683,29.87505],[74.25806,29.86978],[74.25787,29.87326],[74.25519,29.87326],[74.25353,29.88914],[74.25831,29.88906],[74.25831,29.89592],[74.26328,29.8959],[74.26333,29.89999],[74.26595,29.89995],[74.26602,29.90206],[74.26846,29.90211],[74.26873,29.90886],[74.27389,29.9089],[74.27439,29.91601],[74.27931,29.91829],[74.27934,29.92042],[74.2904,29.92092],[74.29484,29.92342],[74.295,29.92527],[74.2975,29.92539],[74.29673,29.95544]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"101","area_level":"District","area_name":"Hanumangarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.11519,28.90752],[74.11158,28.9022],[74.11362,28.89967],[74.11289,28.89485],[74.12188,28.89799],[74.124,28.89556],[74.12256,28.89261],[74.12384,28.88669],[74.12681,28.88279],[74.12803,28.88351],[74.13139,28.88088],[74.13149,28.87143],[74.12699,28.86858],[74.1282,28.86482],[74.12278,28.86287],[74.12275,28.85787],[74.12412,28.85761],[74.12344,28.85522],[74.121,28.85479],[74.12172,28.85217],[74.12356,28.8529],[74.12339,28.8513],[74.11857,28.84627],[74.12002,28.84489],[74.11952,28.84139],[74.12642,28.84142],[74.12716,28.83948],[74.1184,28.8366],[74.11442,28.83277],[74.10886,28.83241],[74.10611,28.83614],[74.09788,28.8301],[74.09612,28.82697],[74.09228,28.82672],[74.09234,28.82461],[74.08992,28.8238],[74.09038,28.81986],[74.08307,28.81524],[74.08302,28.80929],[74.07962,28.80873],[74.0724,28.80245],[74.0708,28.79163],[74.06109,28.78447],[74.05896,28.78476],[74.05962,28.7793],[74.05719,28.77876],[74.05751,28.77655],[74.06279,28.77662],[74.0686,28.77897],[74.07017,28.78192],[74.08849,28.78778],[74.09128,28.78752],[74.09261,28.78303],[74.09437,28.78285],[74.10698,28.7867],[74.11372,28.79236],[74.13655,28.79661],[74.13865,28.79615],[74.13918,28.79249],[74.14153,28.7915],[74.14603,28.78489],[74.15151,28.78398],[74.15161,28.782],[74.1572,28.7818],[74.16005,28.77663],[74.16184,28.77629],[74.16611,28.77757],[74.16784,28.78271],[74.17223,28.78593],[74.17098,28.79438],[74.17639,28.79581],[74.18033,28.8008],[74.18707,28.80322],[74.1942,28.80839],[74.19669,28.80724],[74.20619,28.80938],[74.20784,28.80738],[74.21173,28.80703],[74.22681,28.81199],[74.2273,28.81032],[74.23357,28.807],[74.2453,28.81199],[74.24817,28.80744],[74.24983,28.8084],[74.25209,28.7992],[74.25545,28.80063],[74.26412,28.79559],[74.2739,28.798],[74.27483,28.80007],[74.28906,28.80727],[74.2894,28.80997],[74.29637,28.81464],[74.30342,28.81689],[74.3064,28.82243],[74.32077,28.82763],[74.32037,28.83142],[74.33437,28.83698],[74.33722,28.84008],[74.34894,28.84337],[74.35162,28.84864],[74.36209,28.8529],[74.36388,28.85844],[74.36932,28.86119],[74.36804,28.86416],[74.37715,28.8684],[74.3812,28.87241],[74.38135,28.8751],[74.39869,28.87793],[74.40039,28.88147],[74.41326,28.88438],[74.41925,28.88478],[74.42139,28.87777],[74.42351,28.87568],[74.42994,28.85817],[74.43238,28.8459],[74.43586,28.8419],[74.43826,28.82893],[74.45633,28.82871],[74.46608,28.81745],[74.47724,28.81508],[74.48444,28.81943],[74.49087,28.81898],[74.52445,28.8259],[74.53664,28.82217],[74.5396,28.82354],[74.53985,28.81993],[74.54249,28.81654],[74.54275,28.81889],[74.55591,28.82098],[74.58302,28.82914],[74.58769,28.82555],[74.58765,28.82394],[74.59063,28.82369],[74.5907,28.81859],[74.59574,28.81714],[74.59649,28.81154],[74.61165,28.81004],[74.61891,28.81202],[74.63255,28.81256],[74.63479,28.8184],[74.63335,28.82236],[74.63409,28.83456],[74.6358,28.83636],[74.65094,28.83585],[74.65201,28.83751],[74.66839,28.83629],[74.67412,28.83748],[74.67514,28.83619],[74.6842,28.83764],[74.68571,28.8362],[74.69025,28.83617],[74.69296,28.83332],[74.69673,28.83585],[74.70024,28.84117],[74.7062,28.84249],[74.70866,28.84476],[74.71883,28.84618],[74.72095,28.85039],[74.75,28.85379],[74.75557,28.84039],[74.75368,28.83918],[74.75436,28.8301],[74.76321,28.82388],[74.77348,28.8237],[74.78878,28.82971],[74.79916,28.83042],[74.79925,28.83293],[74.80038,28.8329],[74.80019,28.83624],[74.79864,28.83701],[74.7987,28.84325],[74.80147,28.84613],[74.79786,28.85758],[74.79415,28.85671],[74.79181,28.85822],[74.78976,28.86577],[74.78734,28.86625],[74.78761,28.86855],[74.77772,28.87235],[74.77807,28.87403],[74.76925,28.87402],[74.76925,28.88662],[74.76719,28.891],[74.77345,28.89576],[74.775,28.89978],[74.77978,28.90051],[74.77886,28.90695],[74.78297,28.90924],[74.78268,28.91473],[74.7848,28.9155],[74.78477,28.91736],[74.78873,28.91924],[74.79143,28.91879],[74.80076,28.92491],[74.80057,28.92784],[74.8039,28.92946],[74.81789,28.93359],[74.8425,28.93476],[74.85953,28.94167],[74.86028,28.94401],[74.8676,28.94167],[74.87158,28.94244],[74.87182,28.94126],[74.87765,28.94299],[74.89244,28.93764],[74.90209,28.93898],[74.89815,28.93213],[74.89952,28.93191],[74.89985,28.92842],[74.91061,28.92095],[74.91544,28.91496],[74.91887,28.90514],[74.91875,28.90311],[74.91652,28.90303],[74.91654,28.89642],[74.92335,28.89594],[74.92315,28.89345],[74.9432,28.89379],[74.94314,28.89754],[74.94754,28.90681],[74.99652,28.9098],[74.99865,28.91681],[75.00245,28.91888],[75.00331,28.93062],[75.00971,28.93134],[75.01577,28.93396],[75.01577,28.93525],[75.03592,28.93842],[75.0397,28.93423],[75.03788,28.9315],[75.0415,28.93087],[75.0422,28.92809],[75.04213,28.92492],[75.03935,28.92427],[75.04109,28.92266],[75.04338,28.914],[75.04167,28.91232],[75.04106,28.90759],[75.04326,28.89625],[75.04482,28.89552],[75.03876,28.89274],[75.03822,28.889],[75.0323,28.88546],[75.02907,28.88101],[75.02687,28.85802],[75.02782,28.85065],[75.03051,28.85143],[75.03435,28.84923],[75.04246,28.85061],[75.04603,28.85428],[75.05007,28.85569],[75.07917,28.86231],[75.08718,28.86552],[75.0971,28.87337],[75.10827,28.87492],[75.10848,28.87605],[75.12147,28.87551],[75.12255,28.87682],[75.12822,28.87628],[75.12781,28.87379],[75.13387,28.87207],[75.14067,28.87207],[75.14481,28.87483],[75.14758,28.87421],[75.15012,28.87138],[75.15086,28.86758],[75.15759,28.86399],[75.15425,28.86164],[75.15653,28.85483],[75.16722,28.85212],[75.16803,28.84442],[75.17301,28.84507],[75.17497,28.85282],[75.18685,28.8616],[75.18766,28.86582],[75.19013,28.86762],[75.19822,28.86808],[75.19845,28.86155],[75.2228,28.85824],[75.22037,28.86537],[75.22555,28.86745],[75.22598,28.86614],[75.23069,28.86595],[75.23507,28.8728],[75.24028,28.87587],[75.24194,28.88215],[75.24759,28.88401],[75.24883,28.8899],[75.24496,28.89961],[75.2409,28.9027],[75.24024,28.91003],[75.24333,28.92554],[75.24068,28.92691],[75.24415,28.92876],[75.24446,28.93108],[75.24999,28.93231],[75.2523,28.93446],[75.25268,28.93092],[75.2502,28.92979],[75.251,28.92709],[75.26008,28.92918],[75.2596,28.92725],[75.26214,28.9276],[75.26248,28.92642],[75.27201,28.92811],[75.27401,28.93053],[75.27714,28.93108],[75.28052,28.92929],[75.28067,28.92674],[75.27821,28.92423],[75.28024,28.92529],[75.28047,28.92403],[75.28341,28.92365],[75.28315,28.92219],[75.29098,28.92171],[75.29035,28.91709],[75.29411,28.91771],[75.29497,28.92149],[75.29168,28.92177],[75.29412,28.92624],[75.29527,28.92579],[75.29384,28.92229],[75.29556,28.92207],[75.29631,28.92526],[75.29886,28.9264],[75.29821,28.93349],[75.30058,28.9497],[75.3085,28.95083],[75.30602,28.95983],[75.29906,28.9629],[75.29489,28.96255],[75.29204,28.96923],[75.29546,28.98294],[75.30225,28.98198],[75.31648,28.98546],[75.31796,28.98333],[75.33424,28.98174],[75.33528,28.97995],[75.35317,28.97061],[75.35374,28.96662],[75.35771,28.96707],[75.35744,28.94733],[75.35457,28.94422],[75.3355,28.93967],[75.33514,28.93335],[75.33063,28.9214],[75.33316,28.92042],[75.33354,28.91478],[75.34334,28.91767],[75.34442,28.91425],[75.35401,28.91224],[75.35765,28.9134],[75.36351,28.9124],[75.3752,28.91505],[75.37463,28.91754],[75.37662,28.92235],[75.38077,28.9242],[75.3783,28.93806],[75.39995,28.94086],[75.4006,28.94577],[75.39859,28.95696],[75.40282,28.96993],[75.40757,28.97116],[75.40879,28.97389],[75.41222,28.97459],[75.41576,28.97911],[75.41871,28.97918],[75.42072,28.98133],[75.42253,28.99613],[75.42549,28.99595],[75.42776,28.99984],[75.43237,28.9987],[75.43161,28.99349],[75.43477,28.99351],[75.43409,28.99063],[75.44114,28.99],[75.44156,28.99146],[75.44458,28.98641],[75.45185,28.98424],[75.45166,28.97635],[75.44905,28.97635],[75.44861,28.97119],[75.45159,28.97057],[75.45243,28.97238],[75.45369,28.97135],[75.45154,28.96958],[75.45367,28.95428],[75.45952,28.95159],[75.46954,28.94292],[75.47107,28.93399],[75.47633,28.9321],[75.47722,28.9347],[75.48382,28.9334],[75.48422,28.93465],[75.49073,28.93441],[75.49333,28.93627],[75.49413,28.93467],[75.50084,28.93393],[75.50047,28.93593],[75.50569,28.93591],[75.50874,28.94224],[75.51156,28.94206],[75.51187,28.94369],[75.50835,28.94831],[75.51046,28.95046],[75.51003,28.95388],[75.51273,28.95528],[75.51214,28.95692],[75.51475,28.96073],[75.52116,28.96287],[75.52436,28.9695],[75.52726,28.97045],[75.52803,28.97722],[75.52667,28.98605],[75.52337,28.99102],[75.52077,29.0],[75.52039,29.00365],[75.522,29.00375],[75.51558,29.00826],[75.49776,29.01277],[75.48659,29.012],[75.47261,29.01431],[75.4629,29.01247],[75.45991,29.01437],[75.44572,29.00832],[75.44569,29.01797],[75.44295,29.02092],[75.44295,29.02309],[75.44495,29.02438],[75.44632,29.03],[75.44787,29.03044],[75.44713,29.03516],[75.45045,29.03539],[75.45193,29.03917],[75.44672,29.04554],[75.44622,29.04857],[75.4432,29.04804],[75.44217,29.05096],[75.44386,29.05223],[75.44182,29.05754],[75.43145,29.05631],[75.4106,29.06223],[75.39126,29.06273],[75.39469,29.07596],[75.39421,29.07824],[75.3927,29.07845],[75.39262,29.08477],[75.39099,29.08538],[75.39297,29.09308],[75.39574,29.09321],[75.39688,29.09634],[75.39693,29.09758],[75.3938,29.0982],[75.39211,29.10199],[75.39371,29.10969],[75.40579,29.12016],[75.40216,29.1279],[75.38439,29.12947],[75.3715,29.1381],[75.3711,29.14106],[75.37437,29.14278],[75.37874,29.14223],[75.3797,29.1508],[75.38137,29.15278],[75.38125,29.16895],[75.39526,29.16775],[75.40677,29.16975],[75.40588,29.17289],[75.40945,29.18021],[75.4127,29.18159],[75.41438,29.18431],[75.41294,29.18772],[75.41407,29.18939],[75.41179,29.19114],[75.41132,29.19392],[75.41228,29.19682],[75.41102,29.20746],[75.40737,29.21107],[75.40858,29.21331],[75.40293,29.21324],[75.39682,29.21754],[75.39801,29.22349],[75.4023,29.22243],[75.40208,29.2271],[75.40498,29.22818],[75.40526,29.23151],[75.40878,29.23506],[75.40776,29.236],[75.40868,29.24189],[75.41199,29.24275],[75.4107,29.25548],[75.40719,29.2583],[75.40607,29.25701],[75.40547,29.26054],[75.38861,29.26124],[75.38518,29.25802],[75.37802,29.25683],[75.37729,29.25471],[75.3753,29.25535],[75.36153,29.24298],[75.36129,29.22941],[75.35998,29.2272],[75.35589,29.22301],[75.34984,29.22377],[75.34269,29.22929],[75.32963,29.23265],[75.32812,29.23531],[75.33389,29.24116],[75.33431,29.24415],[75.33585,29.24427],[75.33565,29.24796],[75.33874,29.25197],[75.3396,29.25686],[75.33843,29.25886],[75.33963,29.25977],[75.33846,29.26347],[75.33991,29.26346],[75.34004,29.26634],[75.33865,29.27345],[75.34032,29.27347],[75.34061,29.28113],[75.33504,29.28688],[75.32205,29.28949],[75.31618,29.28178],[75.30579,29.2746],[75.29742,29.27182],[75.28741,29.27332],[75.28497,29.26909],[75.28377,29.24979],[75.2557,29.25181],[75.24469,29.25],[75.24215,29.24409],[75.24207,29.23641],[75.23839,29.23024],[75.21803,29.23187],[75.21014,29.23465],[75.19851,29.25326],[75.19573,29.26331],[75.18801,29.26819],[75.18367,29.26689],[75.18138,29.26366],[75.17623,29.26319],[75.16864,29.25875],[75.17439,29.25125],[75.16283,29.24402],[75.13784,29.23873],[75.12439,29.23987],[75.11961,29.22287],[75.08209,29.228],[75.07532,29.22978],[75.07439,29.23132],[75.07287,29.23783],[75.07419,29.24327],[75.07321,29.24783],[75.06124,29.26397],[75.06041,29.27601],[75.05,29.28608],[75.03482,29.2876],[75.01988,29.2862],[74.99923,29.27031],[74.98326,29.28057],[74.971,29.27908],[74.96117,29.28058],[74.95581,29.28615],[74.94841,29.30147],[74.95534,29.3091],[74.9609,29.32025],[74.95807,29.32818],[74.95453,29.33272],[74.93989,29.34002],[74.93828,29.36203],[74.9168,29.3713],[74.90031,29.38476],[74.87766,29.38354],[74.8714,29.39487],[74.85058,29.40359],[74.84966,29.40153],[74.84482,29.39968],[74.82038,29.39721],[74.78755,29.36143],[74.78189,29.35791],[74.77002,29.35691],[74.7622,29.35438],[74.73921,29.35414],[74.71952,29.37001],[74.70808,29.36676],[74.69097,29.36592],[74.67979,29.36926],[74.65823,29.37197],[74.65209,29.35129],[74.65451,29.33294],[74.63438,29.32961],[74.59929,29.32746],[74.60734,29.35623],[74.60291,29.36491],[74.58973,29.37664],[74.58525,29.37852],[74.57789,29.3885],[74.57392,29.39994],[74.57366,29.40648],[74.56641,29.42048],[74.54926,29.42473],[74.53662,29.42455],[74.53458,29.43526],[74.53644,29.44321],[74.53466,29.44772],[74.53678,29.45956],[74.54377,29.46797],[74.57323,29.4651],[74.58466,29.45849],[74.58639,29.46505],[74.59588,29.4804],[74.59539,29.48916],[74.59973,29.49398],[74.60101,29.50106],[74.6046,29.50318],[74.60977,29.51168],[74.62189,29.52225],[74.62309,29.53105],[74.61903,29.53258],[74.61483,29.53116],[74.61428,29.53533],[74.61185,29.5385],[74.6077,29.53887],[74.6023,29.54392],[74.59519,29.54498],[74.58991,29.54791],[74.57592,29.56011],[74.57497,29.56432],[74.57698,29.5718],[74.57762,29.60001],[74.58032,29.61712],[74.58276,29.62329],[74.58156,29.62716],[74.5893,29.63181],[74.59138,29.63954],[74.58654,29.64734],[74.58548,29.65447],[74.59315,29.67676],[74.60121,29.69039],[74.60018,29.69905],[74.60475,29.7049],[74.60982,29.72176],[74.60815,29.7319],[74.60954,29.74323],[74.61594,29.75227],[74.60334,29.75791],[74.60009,29.76649],[74.58749,29.76691],[74.5814,29.75251],[74.57879,29.75223],[74.5793,29.74903],[74.57811,29.74799],[74.57482,29.74879],[74.57731,29.75414],[74.5486,29.75549],[74.54145,29.75],[74.5347,29.74059],[74.50671,29.74231],[74.47787,29.74681],[74.47362,29.76721],[74.47382,29.78783],[74.48352,29.8136],[74.50797,29.83329],[74.53356,29.83882],[74.54419,29.84439],[74.55138,29.85276],[74.56106,29.86978],[74.5588,29.87448],[74.55116,29.88271],[74.54383,29.90168],[74.52187,29.90254],[74.50979,29.90842],[74.51553,29.91592],[74.5186,29.92958],[74.52716,29.94294],[74.29673,29.95544],[74.2975,29.92539],[74.295,29.92527],[74.29484,29.92342],[74.2904,29.92092],[74.27934,29.92042],[74.27931,29.91829],[74.27439,29.91601],[74.27389,29.9089],[74.26873,29.90886],[74.26846,29.90211],[74.26602,29.90206],[74.26595,29.89995],[74.26333,29.89999],[74.26328,29.8959],[74.25831,29.89592],[74.25831,29.88906],[74.25353,29.88914],[74.25519,29.87326],[74.25787,29.87326],[74.25806,29.86978],[74.27683,29.87505],[74.27676,29.86413],[74.28194,29.86407],[74.28175,29.84254],[74.27625,29.84262],[74.27608,29.84031],[74.26788,29.84053],[74.26766,29.83861],[74.2511,29.8391],[74.25108,29.8418],[74.23723,29.84211],[74.23717,29.844],[74.23208,29.8441],[74.2321,29.84138],[74.22885,29.84136],[74.22973,29.82523],[74.22551,29.8254],[74.23207,29.80892],[74.21015,29.80173],[74.20887,29.77183],[74.19869,29.77019],[74.19788,29.75111],[74.20061,29.75097],[74.20114,29.73485],[74.19079,29.73489],[74.18267,29.72827],[74.18524,29.75785],[74.18262,29.75794],[74.18262,29.76032],[74.16973,29.76067],[74.16963,29.75847],[74.16445,29.75862],[74.16429,29.75636],[74.16126,29.75642],[74.16116,29.75459],[74.1556,29.75459],[74.15543,29.75247],[74.15227,29.75255],[74.1522,29.75046],[74.14395,29.75059],[74.14399,29.75736],[74.14123,29.75739],[74.14106,29.76297],[74.13497,29.76303],[74.13572,29.73952],[74.13311,29.7413],[74.13275,29.71672],[74.12042,29.71627],[74.12033,29.72312],[74.11761,29.72318],[74.11758,29.7254],[74.11512,29.72541],[74.11518,29.72774],[74.11257,29.72778],[74.11257,29.73013],[74.08907,29.73011],[74.08898,29.73235],[74.08119,29.73222],[74.08104,29.73938],[74.07318,29.73924],[74.07048,29.73065],[74.05285,29.72819],[74.05282,29.73523],[74.04761,29.7354],[74.04757,29.73767],[74.04246,29.73775],[74.04247,29.73508],[74.03728,29.73507],[74.0373,29.73267],[74.02923,29.73275],[74.0293,29.73025],[74.02418,29.73034],[74.02402,29.72351],[74.0191,29.7235],[74.01908,29.71904],[73.98196,29.71868],[73.98197,29.72296],[73.97896,29.72303],[73.97923,29.69328],[73.95855,29.70193],[73.95854,29.67612],[73.95097,29.67601],[73.95088,29.67144],[73.94813,29.67152],[73.94806,29.66919],[73.9455,29.66916],[73.94556,29.67378],[73.94015,29.67387],[73.94026,29.68058],[73.93777,29.68036],[73.9379,29.68294],[73.92484,29.68275],[73.92496,29.67217],[73.93772,29.66672],[73.91975,29.667],[73.91969,29.66927],[73.91177,29.66936],[73.91184,29.67183],[73.88883,29.67138],[73.88874,29.66934],[73.88057,29.66889],[73.86505,29.65953],[73.8576,29.65952],[73.85747,29.65756],[73.84445,29.65753],[73.84446,29.65567],[73.83118,29.65561],[73.83138,29.64266],[73.83416,29.6428],[73.83811,29.639],[73.84245,29.63045],[73.85188,29.6302],[73.85197,29.6254],[73.85766,29.62554],[73.85784,29.61211],[73.86061,29.61208],[73.86053,29.60766],[73.85362,29.60805],[73.85272,29.60047],[73.85031,29.60055],[73.84793,29.59809],[73.84792,29.58932],[73.85295,29.58925],[73.85312,29.59178],[73.85584,29.59096],[73.86424,29.59648],[73.86443,29.58901],[73.88256,29.58896],[73.88257,29.59336],[73.88542,29.59347],[73.88555,29.5959],[73.88862,29.59605],[73.88858,29.5985],[73.89161,29.59849],[73.8916,29.60089],[73.89657,29.60093],[73.89721,29.59785],[73.90432,29.59759],[73.90676,29.60328],[73.90969,29.60349],[73.90984,29.60984],[73.91318,29.60907],[73.93441,29.59344],[73.93488,29.60616],[73.94041,29.60646],[73.94045,29.60891],[73.93765,29.60885],[73.93768,29.61358],[73.94324,29.61335],[73.94316,29.61122],[73.94853,29.61132],[73.94847,29.60651],[73.94547,29.60664],[73.94492,29.58719],[73.96227,29.58696],[73.96224,29.58373],[73.95979,29.58392],[73.95984,29.57707],[73.96279,29.57716],[73.9627,29.56816],[73.95522,29.56829],[73.9553,29.57024],[73.95011,29.56938],[73.95013,29.56824],[73.93115,29.56861],[73.93124,29.5707],[73.9206,29.57084],[73.92066,29.56804],[73.91566,29.56842],[73.91609,29.56033],[73.92134,29.56028],[73.92121,29.55804],[73.93623,29.56186],[73.96059,29.55696],[73.96051,29.55502],[73.95793,29.55507],[73.95794,29.55274],[73.95548,29.55261],[73.95501,29.54013],[73.94755,29.54019],[73.94743,29.5373],[73.94455,29.53733],[73.94458,29.53089],[73.94224,29.53073],[73.94217,29.52803],[73.95241,29.5282],[73.9522,29.51853],[73.95775,29.51859],[73.95772,29.51636],[73.94991,29.51624],[73.94979,29.51407],[73.94482,29.51417],[73.94481,29.51082],[73.95177,29.51073],[73.95174,29.50623],[73.95673,29.50613],[73.95679,29.504],[73.96393,29.50401],[73.96347,29.49235],[73.96659,29.49243],[73.96661,29.48833],[73.96942,29.48833],[73.9692,29.48535],[73.96411,29.48558],[73.96424,29.47524],[73.95901,29.47511],[73.95898,29.47734],[73.95637,29.47743],[73.95621,29.48387],[73.95104,29.48365],[73.9509,29.46489],[73.95351,29.46488],[73.95369,29.45774],[73.94346,29.45774],[73.94333,29.45032],[73.93669,29.45375],[73.92825,29.45514],[73.9281,29.45357],[73.92257,29.45349],[73.92247,29.44874],[73.88585,29.44873],[73.88653,29.42085],[73.89358,29.42093],[73.8938,29.41689],[73.90136,29.41703],[73.90154,29.41443],[73.90667,29.41438],[73.90701,29.40484],[73.90251,29.40015],[73.9026,29.37293],[73.91017,29.37301],[73.90995,29.3692],[73.93876,29.36885],[73.95525,29.38809],[73.97242,29.38502],[73.98455,29.40042],[73.98428,29.38941],[73.98686,29.3896],[73.98654,29.38331],[73.98975,29.38337],[73.98924,29.37738],[73.99302,29.37733],[73.99325,29.36773],[73.9986,29.36243],[74.00047,29.3581],[74.00376,29.33369],[74.01555,29.33304],[74.01932,29.32802],[74.0191,29.31698],[74.01585,29.30853],[74.01854,29.28673],[74.02523,29.28213],[74.03234,29.2874],[74.04514,29.28701],[74.05424,29.27534],[74.06028,29.27531],[74.06118,29.27203],[74.07256,29.26503],[74.09173,29.2578],[74.09667,29.26456],[74.09602,29.26706],[74.10169,29.26955],[74.10103,29.28503],[74.10772,29.29486],[74.11373,29.29662],[74.1249,29.2954],[74.12682,29.29098],[74.14026,29.29533],[74.14137,29.30158],[74.15242,29.30175],[74.15383,29.30876],[74.16112,29.31297],[74.16449,29.31191],[74.16618,29.31392],[74.16651,29.3258],[74.16826,29.32453],[74.17952,29.32992],[74.18475,29.33011],[74.18998,29.3327],[74.19365,29.33287],[74.19511,29.33041],[74.20288,29.32995],[74.20291,29.33222],[74.2055,29.3322],[74.20661,29.34144],[74.216,29.34119],[74.21593,29.33665],[74.2293,29.33655],[74.22986,29.32751],[74.2391,29.32736],[74.23891,29.31543],[74.24148,29.31372],[74.24137,29.30691],[74.24565,29.3036],[74.24644,29.30006],[74.24385,29.30008],[74.24389,29.30235],[74.23612,29.30242],[74.23605,29.29788],[74.21651,29.29759],[74.21388,29.2957],[74.21449,29.29414],[74.20336,29.28946],[74.19807,29.2835],[74.19301,29.28238],[74.19226,29.2798],[74.19047,29.2808],[74.18651,29.27798],[74.18839,29.27744],[74.18729,29.27389],[74.18945,29.26833],[74.19935,29.26682],[74.20109,29.26519],[74.19927,29.26397],[74.19945,29.25932],[74.20439,29.2572],[74.20433,29.25235],[74.20685,29.25235],[74.2086,29.24432],[74.21632,29.24201],[74.21252,29.22921],[74.21264,29.2237],[74.2154,29.22208],[74.21532,29.22],[74.21029,29.21715],[74.20962,29.21002],[74.20746,29.208],[74.21035,29.20525],[74.20855,29.20487],[74.20926,29.2025],[74.20703,29.20101],[74.20926,29.19599],[74.20691,29.19396],[74.20627,29.19001],[74.19932,29.18885],[74.19886,29.1846],[74.20291,29.1761],[74.20269,29.1735],[74.20546,29.17402],[74.20668,29.17247],[74.20362,29.16388],[74.20433,29.15451],[74.20239,29.15307],[74.2025,29.14958],[74.17832,29.14628],[74.16598,29.1389],[74.16349,29.13104],[74.16082,29.12805],[74.15937,29.12115],[74.16255,29.11124],[74.15306,29.10343],[74.14712,29.09326],[74.14377,29.09208],[74.14372,29.088],[74.13456,29.08244],[74.13557,29.0745],[74.13741,29.07438],[74.13594,29.06861],[74.12888,29.06397],[74.12178,29.06558],[74.11805,29.06411],[74.11217,29.06462],[74.10995,29.06177],[74.11079,29.05712],[74.10474,29.05306],[74.10322,29.04911],[74.10101,29.04804],[74.10105,29.04413],[74.09491,29.04339],[74.09171,29.03686],[74.08374,29.03215],[74.08246,29.02901],[74.04088,29.00955],[74.04099,28.99755],[74.04452,28.99668],[74.04977,28.99877],[74.05487,28.99829],[74.05446,28.99685],[74.05702,28.99612],[74.05702,28.99217],[74.06428,28.98022],[74.06736,28.96895],[74.07079,28.9696],[74.07597,28.96305],[74.07217,28.9565],[74.06914,28.95669],[74.06945,28.94871],[74.06645,28.94643],[74.06497,28.9419],[74.06726,28.93516],[74.07536,28.93961],[74.07704,28.93412],[74.08103,28.93399],[74.08334,28.9315],[74.0913,28.9342],[74.09296,28.93717],[74.09621,28.93855],[74.09782,28.93718],[74.10897,28.93992],[74.11155,28.93976],[74.11173,28.9385],[74.11548,28.93925],[74.11507,28.93474],[74.11184,28.93137],[74.11334,28.93015],[74.11334,28.92673],[74.10841,28.92414],[74.11058,28.91883],[74.11593,28.9153],[74.11672,28.91136],[74.11404,28.90954],[74.11437,28.90828],[74.1162,28.90859],[74.11519,28.90752]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"102","area_level":"District","area_name":"Jaipur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.08784,27.86066],[76.08575,27.85276],[76.08567,27.84471],[76.07929,27.84575],[76.07488,27.84381],[76.07611,27.84039],[76.09082,27.8294],[76.09186,27.826],[76.09058,27.82333],[76.09207,27.82025],[76.09131,27.81622],[76.08979,27.81566],[76.09097,27.81124],[76.0888,27.80522],[76.08512,27.80205],[76.0771,27.80286],[76.07706,27.79618],[76.07491,27.7896],[76.07629,27.78871],[76.07326,27.7853],[76.07274,27.77982],[76.06791,27.76762],[76.05274,27.76911],[76.05134,27.7616],[76.04523,27.75446],[76.04868,27.75156],[76.03423,27.73746],[76.03411,27.72697],[76.02982,27.72317],[76.02976,27.7194],[76.01,27.71046],[75.99083,27.69225],[75.98452,27.6763],[75.9792,27.65344],[75.97419,27.6469],[75.97189,27.64667],[75.96974,27.64105],[75.96466,27.6423],[75.95806,27.63736],[75.95764,27.634],[75.95965,27.63338],[75.95839,27.63164],[75.96618,27.62614],[75.96471,27.62231],[75.94778,27.62222],[75.9414,27.61911],[75.9481,27.61139],[75.94973,27.59786],[75.94493,27.59303],[75.94557,27.59131],[75.95403,27.59506],[75.95885,27.59198],[75.95968,27.59617],[75.96363,27.59931],[75.96795,27.59164],[75.96455,27.5912],[75.95556,27.5846],[75.94361,27.57079],[75.94216,27.56488],[75.95327,27.56246],[75.95077,27.53029],[75.94514,27.51618],[75.9417,27.51207],[75.93948,27.49722],[75.94963,27.49651],[75.95097,27.49772],[75.97541,27.49977],[75.98491,27.49598],[75.98643,27.48171],[75.98435,27.47828],[75.98642,27.4751],[75.98503,27.47347],[75.98698,27.4683],[75.97367,27.46973],[75.96994,27.47163],[75.96462,27.46467],[75.9641,27.47031],[75.95402,27.47154],[75.95338,27.46757],[75.94411,27.46963],[75.94148,27.46359],[75.93787,27.46006],[75.92854,27.46265],[75.92741,27.45933],[75.9216,27.45934],[75.92046,27.45151],[75.91918,27.45113],[75.90471,27.45179],[75.89184,27.45442],[75.88919,27.45309],[75.88828,27.44785],[75.88344,27.44409],[75.88326,27.43905],[75.8783,27.42924],[75.87662,27.42905],[75.87125,27.41679],[75.87128,27.4096],[75.87519,27.40694],[75.87881,27.40103],[75.88455,27.39725],[75.87828,27.39174],[75.8763,27.38779],[75.86587,27.38642],[75.86146,27.38767],[75.85974,27.38884],[75.85715,27.39649],[75.8514,27.39746],[75.84859,27.39976],[75.84304,27.39452],[75.83842,27.3858],[75.82698,27.38644],[75.82569,27.38871],[75.82074,27.3878],[75.81359,27.40075],[75.80951,27.39254],[75.80766,27.39226],[75.80126,27.38183],[75.80233,27.38119],[75.80106,27.37878],[75.7973,27.37558],[75.78293,27.38043],[75.7794,27.37994],[75.78001,27.38808],[75.78205,27.39028],[75.77915,27.39153],[75.77685,27.39819],[75.75791,27.39733],[75.74086,27.39974],[75.74015,27.39667],[75.73507,27.39123],[75.73231,27.39149],[75.73253,27.38679],[75.72972,27.3811],[75.7237,27.38038],[75.72094,27.37775],[75.72027,27.37527],[75.72464,27.37194],[75.72404,27.36845],[75.72655,27.36767],[75.72371,27.36136],[75.68813,27.36725],[75.68527,27.3664],[75.68499,27.36495],[75.67822,27.36513],[75.67302,27.36287],[75.66657,27.35909],[75.66473,27.356],[75.66647,27.34698],[75.66623,27.33695],[75.66139,27.33087],[75.64993,27.3309],[75.63922,27.33398],[75.62896,27.33421],[75.6282,27.32925],[75.62442,27.32542],[75.61895,27.31111],[75.61712,27.311],[75.6137,27.30593],[75.60291,27.30435],[75.60055,27.30099],[75.5923,27.30349],[75.58909,27.30014],[75.58157,27.29937],[75.57768,27.29986],[75.57725,27.30241],[75.57165,27.3031],[75.57619,27.318],[75.57956,27.32017],[75.57952,27.32223],[75.57619,27.33498],[75.56468,27.33928],[75.5468,27.33594],[75.52747,27.33578],[75.52378,27.32913],[75.52005,27.32898],[75.51659,27.3237],[75.51148,27.32351],[75.51103,27.32048],[75.50919,27.31994],[75.50677,27.3152],[75.50514,27.30648],[75.50246,27.30503],[75.50234,27.3022],[75.49169,27.29872],[75.49009,27.29354],[75.48669,27.29289],[75.48556,27.28748],[75.47799,27.28679],[75.47583,27.28245],[75.4573,27.2805],[75.45604,27.28724],[75.4539,27.28715],[75.45386,27.28891],[75.45019,27.29041],[75.44715,27.29026],[75.44687,27.29183],[75.44236,27.29218],[75.42926,27.29106],[75.42677,27.28584],[75.40566,27.28953],[75.3971,27.28698],[75.37961,27.2886],[75.37943,27.28219],[75.38642,27.28184],[75.38777,27.27949],[75.39321,27.27882],[75.38786,27.26731],[75.38806,27.24381],[75.39003,27.24335],[75.39006,27.22891],[75.38563,27.22905],[75.38483,27.22584],[75.37325,27.22504],[75.36572,27.2263],[75.36019,27.22317],[75.35475,27.22289],[75.35237,27.21577],[75.35031,27.21627],[75.34689,27.21005],[75.32801,27.21079],[75.3259,27.20563],[75.32164,27.20696],[75.31371,27.18497],[75.31563,27.18353],[75.31445,27.17561],[75.31628,27.14379],[75.32869,27.14321],[75.32863,27.13552],[75.33852,27.13444],[75.34047,27.12721],[75.33819,27.12208],[75.3376,27.11395],[75.34364,27.11373],[75.34398,27.10791],[75.34657,27.10785],[75.34657,27.10581],[75.35742,27.10728],[75.3575,27.10881],[75.36183,27.10843],[75.3649,27.0986],[75.36438,27.08348],[75.34946,27.08292],[75.34306,27.0843],[75.33929,27.08564],[75.33433,27.09174],[75.33126,27.09205],[75.33095,27.08951],[75.3258,27.08923],[75.31784,27.0857],[75.27848,27.08808],[75.26648,27.08598],[75.24847,27.08624],[75.21894,27.08031],[75.21907,27.07631],[75.22042,27.07599],[75.21872,27.07067],[75.22022,27.06891],[75.21985,27.05224],[75.2393,27.04797],[75.23956,27.0445],[75.24133,27.04291],[75.24132,27.03749],[75.25627,27.0354],[75.25493,27.03113],[75.25114,27.03033],[75.24565,27.02045],[75.24258,27.02071],[75.24189,27.0172],[75.24035,27.01706],[75.24046,27.01364],[75.22347,27.01452],[75.2211,27.01359],[75.22097,27.01088],[75.21478,27.01029],[75.21487,27.0083],[75.20196,27.00805],[75.20178,27.00486],[75.20018,27.00505],[75.1997,26.99118],[75.20116,26.9753],[75.18141,26.97514],[75.15911,26.97197],[75.16052,26.96572],[75.1631,26.96536],[75.16422,26.96043],[75.1616,26.93315],[75.01075,26.94613],[75.0126,26.9266],[75.0103,26.9119],[75.01103,26.89525],[75.00811,26.89376],[74.99704,26.89322],[74.99704,26.89113],[74.99068,26.8898],[74.97575,26.89083],[74.9659,26.87502],[74.96021,26.87382],[74.95472,26.86578],[74.95619,26.85119],[74.95373,26.85085],[74.95391,26.84882],[74.94171,26.84662],[74.94242,26.84475],[74.91446,26.83771],[74.92495,26.81584],[74.92532,26.79249],[74.93122,26.79367],[74.93323,26.781],[74.93786,26.78126],[74.9383,26.78003],[74.93715,26.75943],[74.93896,26.74895],[74.94817,26.74965],[74.951,26.75363],[74.9522,26.75319],[74.95767,26.7579],[74.98343,26.76298],[74.98327,26.76637],[74.99274,26.7567],[74.99768,26.75497],[74.99732,26.75336],[75.00842,26.75279],[75.00758,26.74875],[75.00313,26.7429],[75.0004,26.73197],[74.97747,26.73568],[74.94272,26.73322],[74.94285,26.72403],[74.96223,26.7234],[74.96458,26.72109],[74.96584,26.71308],[74.96829,26.71163],[74.96553,26.70711],[74.96299,26.70677],[74.96184,26.69882],[74.96276,26.6929],[74.96489,26.69092],[74.96473,26.68402],[74.96724,26.68032],[74.97771,26.67484],[74.98464,26.68108],[74.99192,26.68319],[74.99368,26.68707],[74.99807,26.68701],[74.99843,26.69024],[75.0113,26.68987],[75.00952,26.68576],[75.01316,26.68397],[75.02001,26.66858],[75.02058,26.66394],[75.02557,26.66486],[75.02983,26.6628],[75.02988,26.66453],[75.03791,26.66454],[75.03951,26.66398],[75.04057,26.6599],[75.04449,26.65838],[75.06532,26.65493],[75.06835,26.64486],[75.06595,26.63285],[75.06402,26.63344],[75.06127,26.62497],[75.06803,26.6133],[75.08139,26.61169],[75.08138,26.60902],[75.07879,26.59679],[75.07919,26.5892],[75.06933,26.58599],[75.06533,26.57835],[75.06345,26.57264],[75.06382,26.56751],[75.06211,26.5665],[75.06297,26.56324],[75.06105,26.55876],[75.06149,26.55524],[75.06967,26.54701],[75.07474,26.54495],[75.08245,26.55417],[75.09615,26.55847],[75.09653,26.55983],[75.10979,26.55775],[75.11859,26.5524],[75.1181,26.5502],[75.12071,26.54979],[75.12019,26.54699],[75.122,26.54621],[75.12166,26.54092],[75.12111,26.53797],[75.11526,26.53035],[75.11376,26.52332],[75.12353,26.52042],[75.12761,26.51734],[75.12938,26.51355],[75.15037,26.50327],[75.15135,26.49994],[75.14945,26.48993],[75.14582,26.48279],[75.14403,26.47326],[75.14621,26.47009],[75.15475,26.46917],[75.15645,26.47255],[75.16196,26.47398],[75.1616,26.46257],[75.17172,26.46333],[75.17172,26.46927],[75.17714,26.47909],[75.18237,26.48465],[75.18914,26.48749],[75.19718,26.48143],[75.19932,26.48134],[75.19527,26.49926],[75.19627,26.50363],[75.20117,26.50751],[75.2027,26.51772],[75.21994,26.51954],[75.22588,26.52343],[75.2348,26.52433],[75.24022,26.52798],[75.25091,26.53114],[75.25207,26.53275],[75.2502,26.53862],[75.25092,26.54425],[75.26052,26.54967],[75.27014,26.54921],[75.27017,26.55423],[75.27798,26.56096],[75.28551,26.56452],[75.28838,26.56375],[75.28782,26.55876],[75.2911,26.55696],[75.30065,26.56044],[75.31341,26.55907],[75.32887,26.56136],[75.33147,26.55033],[75.33368,26.5502],[75.33362,26.54708],[75.33518,26.54678],[75.33442,26.54155],[75.33572,26.54086],[75.33395,26.53721],[75.33833,26.53411],[75.33475,26.52198],[75.3449,26.51913],[75.34352,26.50582],[75.3462,26.5028],[75.34818,26.50302],[75.34802,26.49992],[75.34993,26.4971],[75.36638,26.48866],[75.37838,26.49042],[75.38739,26.48127],[75.38985,26.484],[75.41058,26.48318],[75.40735,26.4927],[75.40881,26.49514],[75.41394,26.4874],[75.43353,26.48227],[75.4378,26.48583],[75.43928,26.49056],[75.44574,26.49032],[75.45487,26.49608],[75.46498,26.49157],[75.46722,26.48858],[75.47365,26.48793],[75.48182,26.48237],[75.50181,26.4826],[75.50021,26.47891],[75.50364,26.47341],[75.51152,26.47065],[75.51109,26.46566],[75.51915,26.46564],[75.52133,26.46325],[75.53122,26.47023],[75.53429,26.47641],[75.54553,26.48122],[75.54614,26.48584],[75.55042,26.48674],[75.5524,26.48376],[75.55575,26.48342],[75.56049,26.47963],[75.57278,26.4758],[75.57107,26.47014],[75.56993,26.44785],[75.57864,26.44474],[75.57864,26.44615],[75.581,26.44571],[75.58154,26.44809],[75.58803,26.44813],[75.59652,26.44421],[75.61349,26.4403],[75.626,26.44491],[75.64583,26.44268],[75.652,26.4535],[75.65214,26.46608],[75.65597,26.46517],[75.65843,26.46124],[75.68176,26.46049],[75.68273,26.4535],[75.69423,26.45076],[75.69504,26.44736],[75.70982,26.44666],[75.7186,26.45528],[75.72716,26.46688],[75.73707,26.45506],[75.73586,26.45001],[75.74094,26.44704],[75.74812,26.46055],[75.7471,26.46952],[75.76867,26.4665],[75.77082,26.47145],[75.76856,26.48117],[75.77396,26.48769],[75.76477,26.49674],[75.76923,26.49847],[75.76647,26.50414],[75.76097,26.50732],[75.76001,26.51779],[75.76839,26.5182],[75.7691,26.51985],[75.77257,26.52018],[75.7792,26.52426],[75.77981,26.52718],[75.77672,26.52811],[75.77755,26.53073],[75.77582,26.53208],[75.76996,26.53093],[75.77045,26.53508],[75.77218,26.53546],[75.77166,26.53945],[75.7731,26.5396],[75.77248,26.54286],[75.77836,26.54246],[75.78108,26.54501],[75.78303,26.5435],[75.79029,26.54854],[75.79564,26.54704],[75.7967,26.55068],[75.80332,26.5458],[75.80224,26.54297],[75.80507,26.54168],[75.80285,26.5394],[75.80251,26.53425],[75.79447,26.53014],[75.8037,26.52656],[75.80473,26.52485],[75.80716,26.52523],[75.80895,26.52323],[75.8113,26.52375],[75.81512,26.52064],[75.82289,26.51888],[75.82503,26.51685],[75.83416,26.5176],[75.84454,26.51332],[75.84971,26.52],[75.85314,26.51926],[75.85578,26.52191],[75.85851,26.52134],[75.8578,26.51997],[75.86089,26.51783],[75.86977,26.52005],[75.87739,26.51985],[75.88156,26.51874],[75.88124,26.51518],[75.89308,26.51014],[75.89472,26.51193],[75.9029,26.5087],[75.90472,26.51253],[75.9064,26.51288],[75.92019,26.50926],[75.92841,26.5088],[75.93286,26.50725],[75.93288,26.50163],[75.93519,26.50064],[75.93516,26.49687],[75.93733,26.49518],[75.95568,26.49254],[75.95529,26.48861],[75.96131,26.48588],[75.96912,26.50195],[75.97332,26.50708],[75.98353,26.50473],[75.98492,26.50937],[75.99036,26.5073],[75.99031,26.50515],[75.99612,26.50318],[75.99595,26.50161],[76.00899,26.49985],[76.01295,26.51085],[76.01795,26.50749],[76.01974,26.51179],[76.02257,26.51108],[76.02521,26.52085],[76.03097,26.52086],[76.03165,26.51497],[76.04785,26.51373],[76.05188,26.51224],[76.05004,26.50974],[76.05244,26.50853],[76.06288,26.50897],[76.07067,26.52772],[76.0832,26.52255],[76.08712,26.5251],[76.08885,26.52899],[76.0961,26.53044],[76.10044,26.53881],[76.11387,26.53548],[76.12119,26.52824],[76.13192,26.53213],[76.1432,26.52635],[76.15154,26.519],[76.15444,26.5211],[76.15338,26.54735],[76.15691,26.55801],[76.15683,26.56257],[76.16053,26.56418],[76.16199,26.56689],[76.156,26.571],[76.15659,26.57455],[76.16306,26.57941],[76.16576,26.58683],[76.16764,26.60227],[76.17098,26.60535],[76.17519,26.60175],[76.17661,26.60218],[76.18352,26.61209],[76.17727,26.61589],[76.17582,26.61899],[76.18088,26.62523],[76.17938,26.63174],[76.17424,26.63538],[76.1735,26.638],[76.16784,26.63768],[76.1645,26.63912],[76.16318,26.64233],[76.16435,26.64528],[76.15411,26.65892],[76.15855,26.66192],[76.1583,26.66375],[76.15304,26.66737],[76.15577,26.67018],[76.15237,26.67632],[76.1564,26.6815],[76.15032,26.69298],[76.14476,26.6939],[76.14662,26.69842],[76.14969,26.69687],[76.15061,26.69872],[76.15153,26.7086],[76.16486,26.71754],[76.16819,26.71742],[76.16866,26.71496],[76.1762,26.71427],[76.17052,26.71031],[76.17072,26.70839],[76.17494,26.70637],[76.17124,26.68981],[76.17981,26.68694],[76.18345,26.69607],[76.18717,26.69918],[76.18666,26.70126],[76.19044,26.71082],[76.19454,26.70993],[76.19599,26.71391],[76.2038,26.71363],[76.20779,26.71978],[76.20625,26.72104],[76.20927,26.72256],[76.21066,26.72094],[76.21135,26.72355],[76.20102,26.72735],[76.19638,26.72396],[76.1937,26.72565],[76.19098,26.72477],[76.18985,26.72679],[76.18332,26.72557],[76.18338,26.72769],[76.18162,26.72804],[76.18226,26.72995],[76.18359,26.7297],[76.18251,26.73207],[76.18639,26.73558],[76.19034,26.736],[76.19639,26.73287],[76.19844,26.73719],[76.18791,26.74144],[76.19327,26.75264],[76.18866,26.75161],[76.18839,26.74874],[76.18354,26.74994],[76.18437,26.75387],[76.18022,26.75174],[76.17938,26.75737],[76.18204,26.75731],[76.18233,26.75914],[76.18516,26.75813],[76.18573,26.76383],[76.18277,26.76342],[76.18071,26.76575],[76.18648,26.76719],[76.18719,26.769],[76.19351,26.76765],[76.19472,26.76887],[76.19714,26.77854],[76.19438,26.78151],[76.19477,26.7833],[76.19275,26.78411],[76.19322,26.7852],[76.19639,26.78297],[76.198,26.78372],[76.1971,26.78534],[76.19936,26.78806],[76.19852,26.78937],[76.20528,26.79098],[76.20496,26.79399],[76.20659,26.79369],[76.2078,26.79544],[76.2048,26.79553],[76.20447,26.80102],[76.20819,26.80082],[76.20832,26.79951],[76.21354,26.80144],[76.22,26.80011],[76.21924,26.80344],[76.2214,26.80198],[76.22105,26.80429],[76.22245,26.80378],[76.2236,26.80603],[76.22599,26.80642],[76.2268,26.80939],[76.22943,26.80937],[76.22871,26.805],[76.23171,26.80204],[76.24019,26.79832],[76.24209,26.80037],[76.24892,26.79708],[76.25062,26.80031],[76.2554,26.8035],[76.24881,26.81225],[76.25244,26.82005],[76.25804,26.82338],[76.26128,26.83002],[76.26125,26.83398],[76.24839,26.83481],[76.24758,26.83939],[76.24074,26.84448],[76.24509,26.84933],[76.24876,26.86073],[76.24928,26.86372],[76.24748,26.86419],[76.2485,26.86571],[76.25352,26.86368],[76.26334,26.86641],[76.26157,26.87253],[76.25013,26.87255],[76.24676,26.87396],[76.24644,26.87566],[76.23866,26.87726],[76.23785,26.88017],[76.23513,26.88088],[76.23708,26.894],[76.22424,26.89741],[76.22479,26.89973],[76.22304,26.89995],[76.2248,26.9056],[76.21771,26.90854],[76.21979,26.90887],[76.22132,26.91573],[76.21974,26.91602],[76.22034,26.91871],[76.22817,26.91556],[76.2315,26.92138],[76.23768,26.92531],[76.2392,26.93253],[76.23546,26.9334],[76.23515,26.93529],[76.23414,26.93285],[76.22954,26.93412],[76.23384,26.9448],[76.23546,26.94266],[76.23685,26.9436],[76.23803,26.9419],[76.24598,26.94108],[76.24869,26.94647],[76.24716,26.94697],[76.24742,26.94865],[76.24405,26.94988],[76.23331,26.95034],[76.22252,26.95476],[76.22494,26.96459],[76.22467,26.98105],[76.23187,27.00766],[76.2368,27.00739],[76.2389,27.01544],[76.24223,27.01973],[76.24509,27.01915],[76.24648,27.02133],[76.25474,27.02012],[76.25619,27.02261],[76.25854,27.02184],[76.25975,27.0232],[76.25614,27.02924],[76.26057,27.03175],[76.26601,27.03084],[76.2676,27.03191],[76.26781,27.03443],[76.27843,27.04341],[76.28058,27.05029],[76.27873,27.05199],[76.28098,27.06438],[76.27689,27.0653],[76.27552,27.07249],[76.2769,27.07843],[76.2766,27.09476],[76.27878,27.102],[76.27757,27.10511],[76.28236,27.12457],[76.28306,27.13915],[76.28113,27.14595],[76.28242,27.14934],[76.2807,27.15705],[76.27488,27.16142],[76.27591,27.16432],[76.272,27.17757],[76.26569,27.1841],[76.26411,27.18064],[76.25983,27.18102],[76.25048,27.17418],[76.2355,27.14574],[76.21359,27.13824],[76.21355,27.13481],[76.20939,27.13282],[76.1984,27.11422],[76.19385,27.11651],[76.185,27.11752],[76.17343,27.12878],[76.17834,27.13287],[76.18017,27.1408],[76.17627,27.16678],[76.17766,27.16941],[76.17638,27.17767],[76.17749,27.18352],[76.1622,27.17874],[76.1592,27.18032],[76.1489,27.18041],[76.14819,27.19157],[76.15509,27.20699],[76.15287,27.21264],[76.15432,27.21634],[76.14815,27.21636],[76.14273,27.2199],[76.13088,27.1955],[76.12108,27.19387],[76.12139,27.20126],[76.13313,27.22323],[76.11464,27.22777],[76.11397,27.23553],[76.11722,27.25015],[76.13104,27.26021],[76.13048,27.2707],[76.13295,27.2738],[76.1342,27.28035],[76.14389,27.27965],[76.14654,27.29556],[76.15167,27.30765],[76.15052,27.3112],[76.16857,27.30913],[76.17027,27.32528],[76.17469,27.3362],[76.17615,27.3388],[76.1796,27.33739],[76.19162,27.3508],[76.19135,27.35414],[76.19886,27.36398],[76.19708,27.36823],[76.19166,27.3693],[76.1931,27.37434],[76.1955,27.37376],[76.20115,27.37584],[76.20417,27.37926],[76.2068,27.38922],[76.21227,27.39328],[76.21439,27.40408],[76.21951,27.40075],[76.2243,27.40288],[76.22389,27.4073],[76.22758,27.41753],[76.22585,27.42004],[76.22638,27.42718],[76.22452,27.43048],[76.22175,27.43174],[76.22163,27.43402],[76.22505,27.44767],[76.23093,27.44823],[76.25123,27.44117],[76.25145,27.44287],[76.23786,27.44851],[76.23139,27.45075],[76.22446,27.44889],[76.22194,27.45294],[76.21395,27.45449],[76.21792,27.46002],[76.22073,27.45554],[76.22431,27.45906],[76.22721,27.45728],[76.22747,27.45918],[76.22504,27.46111],[76.22928,27.46123],[76.23097,27.46949],[76.22524,27.46915],[76.22523,27.47181],[76.23302,27.47054],[76.2379,27.47403],[76.23613,27.47761],[76.24094,27.48205],[76.24118,27.48721],[76.23939,27.4913],[76.24122,27.49551],[76.24022,27.50142],[76.24137,27.50364],[76.22766,27.513],[76.23392,27.51941],[76.23516,27.52365],[76.22384,27.52969],[76.20603,27.53376],[76.21289,27.54877],[76.20738,27.55337],[76.20904,27.56626],[76.20785,27.56657],[76.20968,27.56889],[76.20806,27.56915],[76.2089,27.57056],[76.20644,27.57129],[76.20492,27.57425],[76.20469,27.58672],[76.20283,27.58624],[76.20255,27.58905],[76.20427,27.5992],[76.19777,27.60185],[76.19373,27.60648],[76.19541,27.61225],[76.19396,27.61388],[76.19667,27.61477],[76.19733,27.62173],[76.2068,27.61957],[76.20577,27.62479],[76.22088,27.62504],[76.22545,27.62127],[76.22972,27.62067],[76.24033,27.62335],[76.24531,27.6294],[76.24711,27.63468],[76.24478,27.6375],[76.24398,27.6438],[76.24838,27.65191],[76.24854,27.65634],[76.24543,27.66186],[76.23654,27.66359],[76.23646,27.66714],[76.23933,27.67027],[76.24972,27.6692],[76.24961,27.67293],[76.24094,27.67938],[76.24138,27.68414],[76.24286,27.68613],[76.24894,27.68653],[76.25309,27.69225],[76.25392,27.69622],[76.24861,27.71137],[76.25076,27.72139],[76.24907,27.72843],[76.24742,27.7335],[76.24158,27.74027],[76.24031,27.75],[76.23813,27.75389],[76.24329,27.76284],[76.25872,27.76287],[76.26132,27.77409],[76.26617,27.77608],[76.26917,27.7821],[76.26442,27.79822],[76.27238,27.80003],[76.28747,27.80001],[76.26709,27.81645],[76.25575,27.82128],[76.26291,27.83237],[76.25425,27.84147],[76.23851,27.84778],[76.23091,27.83505],[76.22392,27.83196],[76.22372,27.8288],[76.21733,27.81681],[76.20934,27.81634],[76.20754,27.81704],[76.20779,27.81866],[76.1996,27.82156],[76.19226,27.80926],[76.18265,27.79862],[76.17496,27.79807],[76.17214,27.79965],[76.17215,27.80515],[76.16937,27.80795],[76.16053,27.81394],[76.15308,27.81537],[76.15364,27.81975],[76.13227,27.82448],[76.1354,27.83929],[76.12779,27.84372],[76.12333,27.85102],[76.1156,27.85207],[76.11441,27.85088],[76.10587,27.8561],[76.09809,27.85686],[76.08784,27.86066]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"103","area_level":"District","area_name":"Jaisalmer","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[71.76478,27.91442],[71.66643,27.87776],[71.38306,27.87263],[71.20554,27.83542],[71.15039,27.81371],[71.06199,27.77409],[70.98269,27.74223],[70.9632,27.72938],[70.9512,27.72885],[70.90612,27.70959],[70.87184,27.7056],[70.75932,27.72127],[70.75067,27.73361],[70.73977,27.74192],[70.73241,27.76033],[70.69818,27.81118],[70.68437,27.82819],[70.67849,27.87243],[70.6774,27.92185],[70.59854,27.99315],[70.58946,28.01044],[70.55432,28.02632],[70.50582,28.03704],[70.48874,28.03458],[70.43947,28.02024],[70.37219,28.01183],[70.29618,27.93602],[70.22701,27.90137],[70.20649,27.87921],[70.19765,27.86722],[70.14537,27.8205],[70.1324,27.80596],[70.12361,27.78876],[70.07224,27.66314],[70.0259,27.56292],[69.96629,27.52351],[69.93389,27.49783],[69.89093,27.4335],[69.86248,27.40181],[69.78328,27.34265],[69.76014,27.32103],[69.71352,27.29244],[69.70271,27.28432],[69.64267,27.22336],[69.62794,27.21106],[69.60053,27.19415],[69.58684,27.18332],[69.51331,27.00998],[69.51371,27.00213],[69.49787,26.86835],[69.48848,26.83024],[69.48443,26.80484],[69.48617,26.79802],[69.51031,26.7435],[69.71971,26.6547],[69.73011,26.64845],[69.7919,26.59831],[69.82312,26.58903],[69.88677,26.57887],[69.93466,26.58153],[70.05623,26.60057],[70.1172,26.58688],[70.13845,26.57162],[70.15502,26.56378],[70.17418,26.55144],[70.17948,26.50574],[70.18351,26.49377],[70.18462,26.48164],[70.1769,26.42401],[70.18536,26.37433],[70.17907,26.34271],[70.16351,26.29493],[70.17505,26.25153],[70.17302,26.24111],[70.16827,26.21809],[70.14125,26.15579],[70.14574,26.15135],[70.17609,26.15379],[70.20082,26.14556],[70.21629,26.13175],[70.22034,26.11869],[70.22545,26.12235],[70.23554,26.13479],[70.24644,26.15331],[70.25055,26.15741],[70.25694,26.16096],[70.2691,26.16333],[70.2709,26.15383],[70.27807,26.15124],[70.28448,26.15475],[70.29016,26.15518],[70.29957,26.14436],[70.31686,26.14636],[70.32867,26.14985],[70.33235,26.14957],[70.34933,26.13956],[70.36255,26.14225],[70.36957,26.14867],[70.37701,26.15891],[70.38364,26.17151],[70.39108,26.17609],[70.40794,26.19772],[70.42431,26.19267],[70.42569,26.18669],[70.43135,26.1841],[70.42804,26.1765],[70.43067,26.17467],[70.43609,26.17757],[70.46186,26.1791],[70.46579,26.17619],[70.47629,26.17633],[70.49998,26.17221],[70.5252,26.17913],[70.55908,26.19778],[70.59549,26.20164],[70.63011,26.19598],[70.63501,26.19573],[70.63786,26.19723],[70.65421,26.19623],[70.66378,26.19789],[70.68089,26.21101],[70.68413,26.21164],[70.68693,26.20946],[70.69512,26.20953],[70.70566,26.20717],[70.71617,26.21021],[70.71925,26.19362],[70.71055,26.17607],[70.70875,26.16979],[70.71075,26.16541],[70.72691,26.15699],[70.74166,26.14128],[70.75,26.14582],[70.76173,26.14281],[70.77605,26.14219],[70.81083,26.13631],[70.84194,26.13406],[70.85568,26.1297],[70.86791,26.13105],[70.88261,26.11533],[70.90073,26.10101],[70.9186,26.07742],[70.91728,26.0757],[70.94014,26.05361],[70.9425,26.05008],[70.94228,26.04554],[70.93913,26.03789],[70.94105,26.02923],[70.94848,26.02679],[70.95277,26.01949],[70.9583,26.01763],[70.96368,26.02325],[70.96781,26.03288],[70.96077,26.054],[70.95195,26.06314],[70.94025,26.0795],[70.94483,26.0786],[70.95099,26.08003],[70.95878,26.0879],[70.96015,26.0942],[70.98017,26.10158],[70.99999,26.11336],[71.01577,26.11669],[71.02417,26.11368],[71.05027,26.13917],[71.04456,26.14664],[71.03855,26.16691],[71.03949,26.1724],[71.03418,26.17811],[71.03076,26.17701],[71.0228,26.19005],[71.01136,26.19949],[71.01302,26.21201],[71.01102,26.21762],[71.00953,26.21669],[71.00984,26.22094],[71.00781,26.22315],[71.0,26.22233],[70.99378,26.21907],[70.98819,26.22133],[70.98657,26.21868],[70.97852,26.21727],[70.97406,26.22059],[70.96339,26.22],[70.94082,26.22402],[70.93874,26.22828],[70.94736,26.236],[70.94952,26.24458],[70.9564,26.24998],[70.96873,26.25107],[70.99901,26.25969],[71.00222,26.27526],[71.0114,26.2798],[71.02877,26.28331],[71.04314,26.28113],[71.05552,26.28331],[71.07056,26.29456],[71.06845,26.30225],[71.05907,26.31243],[71.07556,26.32253],[71.09103,26.31325],[71.1085,26.31043],[71.12645,26.30281],[71.12832,26.30354],[71.13028,26.30818],[71.13135,26.30465],[71.13725,26.30519],[71.14096,26.3078],[71.14815,26.31748],[71.14928,26.3232],[71.15326,26.3262],[71.16456,26.34142],[71.18043,26.37244],[71.18976,26.38469],[71.19016,26.39019],[71.18298,26.39825],[71.18146,26.40484],[71.18238,26.40725],[71.18669,26.41387],[71.19788,26.41853],[71.20483,26.43215],[71.21348,26.43521],[71.21205,26.44031],[71.21297,26.44253],[71.21678,26.44292],[71.23834,26.45576],[71.25569,26.45952],[71.26035,26.46191],[71.26198,26.46054],[71.27603,26.46347],[71.28363,26.46681],[71.29672,26.46381],[71.29883,26.45835],[71.30702,26.45229],[71.30609,26.44774],[71.30743,26.43574],[71.31707,26.43228],[71.3242,26.42664],[71.32718,26.42076],[71.33881,26.43544],[71.34736,26.44044],[71.35286,26.44607],[71.36843,26.45271],[71.3898,26.4679],[71.40042,26.47023],[71.41018,26.4777],[71.41367,26.48433],[71.42135,26.49239],[71.43072,26.49697],[71.43627,26.49668],[71.44494,26.50663],[71.44813,26.51353],[71.46071,26.50433],[71.46086,26.499],[71.46543,26.48743],[71.46814,26.47373],[71.48824,26.45752],[71.51103,26.47038],[71.52003,26.4867],[71.54289,26.48974],[71.57039,26.5045],[71.5796,26.50666],[71.58585,26.50224],[71.59276,26.50021],[71.60408,26.48547],[71.60906,26.4876],[71.61316,26.48125],[71.61514,26.4731],[71.62085,26.46239],[71.623,26.44787],[71.6225,26.43729],[71.62421,26.43342],[71.63176,26.43012],[71.62298,26.41707],[71.63469,26.40462],[71.64504,26.40412],[71.6594,26.39086],[71.66263,26.39071],[71.67546,26.38336],[71.67739,26.38442],[71.68349,26.38174],[71.68609,26.38708],[71.70255,26.39219],[71.71601,26.38537],[71.71676,26.38663],[71.72031,26.38324],[71.73802,26.37551],[71.75208,26.36235],[71.75743,26.3503],[71.75555,26.34845],[71.78754,26.34629],[71.80251,26.33321],[71.8133,26.33361],[71.81753,26.35834],[71.82409,26.36609],[71.83627,26.37453],[71.83827,26.37397],[71.85911,26.3616],[71.88321,26.33913],[71.88688,26.3209],[71.89394,26.30629],[71.89164,26.30422],[71.89325,26.29796],[71.90808,26.30021],[71.91682,26.29682],[71.92129,26.30066],[71.92541,26.30033],[71.94035,26.31518],[71.94525,26.31604],[71.94919,26.31342],[71.95877,26.31595],[71.96247,26.32012],[71.96949,26.31761],[71.98213,26.31859],[71.99517,26.32804],[72.0089,26.34203],[72.0151,26.34215],[72.0286,26.3506],[72.0353,26.34966],[72.04604,26.35218],[72.04632,26.35017],[72.05839,26.35577],[72.05914,26.35397],[72.06202,26.35418],[72.06214,26.3525],[72.06612,26.3504],[72.07162,26.35029],[72.07435,26.35391],[72.07614,26.36439],[72.07651,26.37424],[72.07248,26.39962],[72.07692,26.41403],[72.07935,26.42928],[72.07971,26.44127],[72.07722,26.45284],[72.06129,26.46726],[72.05051,26.48133],[72.04567,26.48315],[72.028,26.5],[72.04127,26.51758],[72.03952,26.52],[72.05248,26.53382],[72.06141,26.55009],[72.07378,26.5579],[72.07319,26.56174],[72.07833,26.56951],[72.07679,26.57094],[72.09791,26.60285],[72.09505,26.60497],[72.09627,26.60853],[72.09024,26.61863],[72.08242,26.62644],[72.07432,26.62829],[72.06783,26.63213],[72.05934,26.64165],[72.06611,26.64618],[72.06427,26.6493],[72.05328,26.66418],[72.03843,26.67486],[72.0398,26.68768],[72.04076,26.68887],[72.04438,26.68655],[72.0564,26.70373],[72.05484,26.70499],[72.05972,26.71116],[72.0696,26.72026],[72.07529,26.71522],[72.0781,26.71953],[72.08637,26.71907],[72.08702,26.72247],[72.08214,26.72552],[72.08687,26.73095],[72.08355,26.73719],[72.06388,26.75718],[72.0639,26.75875],[72.05813,26.76267],[72.06063,26.77499],[72.06001,26.78306],[72.04496,26.79069],[72.049,26.79924],[72.05547,26.804],[72.06307,26.80339],[72.06959,26.806],[72.08471,26.80831],[72.09119,26.82141],[72.09883,26.83045],[72.09003,26.84122],[72.08833,26.8505],[72.09223,26.85226],[72.09431,26.8574],[72.10163,26.85923],[72.10243,26.86454],[72.09665,26.88092],[72.10279,26.88738],[72.08831,26.90236],[72.0791,26.9152],[72.06435,26.92013],[72.05534,26.92939],[72.03799,26.93573],[72.04998,26.96816],[72.04505,26.97974],[72.04187,26.99393],[72.04348,26.99756],[72.03859,27.01408],[72.04244,27.01812],[72.03685,27.02395],[72.03295,27.02368],[72.03931,27.03128],[72.04466,27.02964],[72.04877,27.03096],[72.05139,27.03932],[72.04284,27.04389],[72.03904,27.04311],[72.02934,27.04645],[72.0301,27.05482],[72.02613,27.05561],[72.03218,27.06252],[72.03201,27.06883],[72.03622,27.07722],[72.03712,27.0907],[72.03921,27.09261],[72.04281,27.10287],[72.04229,27.10543],[72.03273,27.11628],[72.00432,27.12669],[71.99211,27.13498],[71.97653,27.13989],[71.96219,27.14153],[71.95415,27.15784],[71.95716,27.17219],[71.9562,27.17947],[71.95151,27.18543],[71.9469,27.18438],[71.94503,27.18553],[71.93511,27.18055],[71.93497,27.17848],[71.92582,27.17575],[71.91281,27.17951],[71.9118,27.19242],[71.91309,27.21013],[71.90747,27.22067],[71.91026,27.22028],[71.91261,27.22301],[71.91004,27.2244],[71.91374,27.23037],[71.91128,27.23856],[71.90157,27.25196],[71.90454,27.25446],[71.89693,27.26248],[71.89339,27.27524],[71.88554,27.28258],[71.88535,27.29171],[71.88315,27.28889],[71.86158,27.2933],[71.84626,27.3069],[71.84584,27.30898],[71.8412,27.30467],[71.83537,27.30908],[71.84161,27.31568],[71.83381,27.32116],[71.82477,27.32249],[71.82244,27.32684],[71.82342,27.32937],[71.81609,27.34283],[71.81405,27.35451],[71.81655,27.36866],[71.82113,27.3813],[71.81964,27.38495],[71.82035,27.40132],[71.81867,27.41705],[71.80698,27.43799],[71.80728,27.4478],[71.81441,27.45461],[71.81749,27.46396],[71.82404,27.47338],[71.83314,27.48214],[71.84404,27.48017],[71.87618,27.48746],[71.89251,27.47677],[71.89407,27.48135],[71.88983,27.49735],[71.89644,27.50612],[71.89808,27.5194],[71.89606,27.52264],[71.89664,27.52791],[71.89996,27.53609],[71.91061,27.54356],[71.92422,27.56297],[71.9466,27.55952],[71.95864,27.55171],[71.96757,27.55328],[71.97516,27.55916],[71.99773,27.57],[72.04668,27.61831],[72.07966,27.59728],[72.09485,27.59174],[72.10961,27.5937],[72.11596,27.58886],[72.11535,27.58337],[72.12217,27.58534],[72.12818,27.58112],[72.12811,27.57873],[72.12164,27.57173],[72.11732,27.57239],[72.10453,27.56081],[72.11423,27.54782],[72.11675,27.54862],[72.12599,27.54666],[72.14433,27.53598],[72.14358,27.53158],[72.13762,27.52253],[72.14622,27.51645],[72.15281,27.4995],[72.15552,27.50101],[72.16021,27.49595],[72.15467,27.48912],[72.15729,27.48557],[72.15875,27.47887],[72.15711,27.47681],[72.1753,27.46226],[72.18409,27.46516],[72.20289,27.47581],[72.20243,27.47994],[72.20958,27.48028],[72.21026,27.49266],[72.21653,27.4943],[72.22509,27.49357],[72.23501,27.4873],[72.23895,27.48098],[72.24357,27.48374],[72.2466,27.4904],[72.24427,27.49488],[72.24311,27.50276],[72.24374,27.5243],[72.24839,27.53651],[72.26297,27.54801],[72.28043,27.55347],[72.2565,27.56101],[72.2766,27.56851],[72.29762,27.59985],[72.30497,27.61701],[72.31727,27.63436],[72.32466,27.65865],[72.33541,27.68265],[72.33786,27.69342],[72.32887,27.69566],[72.29434,27.70981],[72.27195,27.70284],[72.24525,27.6747],[72.22069,27.6603],[72.21516,27.67836],[72.18616,27.69717],[72.1411,27.71381],[72.1141,27.71369],[72.10529,27.70826],[72.09514,27.71505],[72.09287,27.72056],[72.09056,27.72169],[72.0972,27.73495],[72.09492,27.73571],[72.09194,27.74072],[72.09834,27.74931],[72.10069,27.75],[72.10135,27.75234],[72.11609,27.75155],[72.13398,27.7642],[72.15018,27.78031],[72.15096,27.79115],[72.14912,27.81552],[72.13806,27.84642],[72.14928,27.8603],[72.14277,27.87497],[72.0885,27.90375],[72.08266,27.9096],[72.07875,27.91973],[72.06726,27.92977],[72.03522,27.94513],[72.02885,27.95065],[72.01778,27.94585],[72.00282,27.93653],[71.98422,27.9291],[71.96359,27.93235],[71.94796,27.91441],[71.93869,27.89622],[71.93119,27.89141],[71.93299,27.88946],[71.93814,27.89048],[71.93991,27.8888],[71.93884,27.87965],[71.9332,27.87221],[71.92834,27.87232],[71.92432,27.8668],[71.92225,27.86705],[71.92062,27.87133],[71.91723,27.87381],[71.91255,27.88095],[71.90958,27.87902],[71.89979,27.88243],[71.89685,27.87623],[71.89761,27.87234],[71.89163,27.86874],[71.88832,27.87316],[71.88285,27.87685],[71.88265,27.88272],[71.88485,27.88753],[71.8876,27.92857],[71.88308,27.93817],[71.89176,27.95968],[71.8829,27.95763],[71.76478,27.91442]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"104","area_level":"District","area_name":"Jalore","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.77784,25.80256],[72.76591,25.80419],[72.75803,25.80976],[72.75506,25.80282],[72.75224,25.78751],[72.73978,25.77861],[72.73219,25.7755],[72.72768,25.77596],[72.72217,25.76295],[72.72436,25.75363],[72.73573,25.75144],[72.75599,25.73993],[72.75691,25.738],[72.75507,25.73607],[72.75648,25.7332],[72.75925,25.73359],[72.75872,25.72455],[72.75319,25.72422],[72.75001,25.72224],[72.74171,25.712],[72.74256,25.71112],[72.73134,25.69864],[72.72269,25.69313],[72.721,25.68734],[72.71683,25.68813],[72.71608,25.69016],[72.70806,25.68371],[72.70425,25.67793],[72.6964,25.67477],[72.69401,25.6766],[72.68699,25.66928],[72.69019,25.66367],[72.69172,25.66424],[72.69844,25.65731],[72.69851,25.64428],[72.70171,25.64283],[72.70363,25.64416],[72.70788,25.64354],[72.71192,25.63849],[72.71796,25.63466],[72.71656,25.63032],[72.71847,25.62644],[72.71974,25.6092],[72.70411,25.6009],[72.69503,25.60489],[72.69191,25.6041],[72.67674,25.61261],[72.67397,25.61108],[72.67008,25.61152],[72.66412,25.60808],[72.65761,25.60745],[72.64475,25.61007],[72.63497,25.60752],[72.6277,25.61183],[72.62124,25.60138],[72.60624,25.60916],[72.59644,25.61009],[72.59628,25.60811],[72.59061,25.6087],[72.58931,25.605],[72.58414,25.60385],[72.57242,25.58542],[72.54769,25.56291],[72.55079,25.55647],[72.54956,25.55263],[72.54574,25.54948],[72.55636,25.5376],[72.56115,25.5309],[72.55998,25.52987],[72.55591,25.53179],[72.53892,25.52365],[72.52743,25.51385],[72.52807,25.51256],[72.52191,25.50452],[72.51495,25.50763],[72.50957,25.50715],[72.50371,25.5],[72.50223,25.49417],[72.50574,25.49351],[72.50506,25.48965],[72.48501,25.48393],[72.48395,25.47875],[72.48143,25.4759],[72.48241,25.47227],[72.47132,25.46456],[72.46334,25.45631],[72.45726,25.45938],[72.45311,25.45735],[72.45148,25.45879],[72.43841,25.44705],[72.42268,25.43962],[72.41055,25.43919],[72.40524,25.44334],[72.38164,25.44274],[72.38067,25.44674],[72.37746,25.44626],[72.37056,25.4486],[72.3667,25.44778],[72.35839,25.45491],[72.3557,25.45918],[72.35329,25.45506],[72.35531,25.45041],[72.35348,25.44727],[72.354,25.4442],[72.35132,25.44177],[72.347,25.44539],[72.34224,25.44649],[72.3369,25.43982],[72.33148,25.42633],[72.33045,25.39989],[72.32882,25.39417],[72.32001,25.38801],[72.31414,25.38615],[72.31309,25.38711],[72.30769,25.38354],[72.30364,25.38794],[72.29821,25.38599],[72.28987,25.39185],[72.28547,25.40031],[72.28266,25.39997],[72.27629,25.40289],[72.26883,25.41046],[72.26296,25.40736],[72.25278,25.41072],[72.25065,25.4154],[72.24633,25.41431],[72.24004,25.40846],[72.23747,25.41076],[72.23144,25.40619],[72.22119,25.40458],[72.18801,25.42399],[72.17028,25.42715],[72.1629,25.4321],[72.16202,25.43612],[72.15657,25.4318],[72.15192,25.43617],[72.12898,25.43158],[72.11701,25.42706],[72.10721,25.42004],[72.1004,25.43018],[72.09883,25.44128],[72.09128,25.44963],[72.09117,25.46222],[72.0893,25.46425],[72.06756,25.47412],[72.05594,25.48232],[72.0336,25.47431],[72.01573,25.45512],[72.00103,25.44408],[71.99732,25.43912],[71.98729,25.43507],[71.97865,25.42655],[71.97616,25.41858],[71.97615,25.40687],[71.96681,25.39294],[71.95939,25.38566],[71.95311,25.38277],[71.94618,25.37417],[71.93938,25.36942],[71.93287,25.35889],[71.92854,25.356],[71.92705,25.35691],[71.91732,25.34695],[71.91748,25.33728],[71.92142,25.33207],[71.9296,25.32627],[71.93333,25.3266],[71.93712,25.32472],[71.94715,25.31632],[71.93608,25.29672],[71.93424,25.2918],[71.93329,25.27992],[71.9034,25.26764],[71.89121,25.25749],[71.88579,25.25589],[71.88965,25.25002],[71.89935,25.24379],[71.89555,25.23681],[71.88004,25.22545],[71.87981,25.22238],[71.87633,25.21881],[71.85386,25.20748],[71.84672,25.20064],[71.83639,25.15884],[71.83608,25.1562],[71.83884,25.15297],[71.83368,25.14261],[71.83473,25.14063],[71.82391,25.12593],[71.82264,25.11977],[71.81595,25.12018],[71.80772,25.11676],[71.80368,25.1128],[71.8002,25.10327],[71.80524,25.09721],[71.79665,25.08749],[71.79101,25.07825],[71.79929,25.07386],[71.80481,25.06892],[71.80167,25.06469],[71.80332,25.06162],[71.80124,25.0593],[71.80147,25.05434],[71.79712,25.05216],[71.78602,25.06531],[71.77576,25.06586],[71.76769,25.07424],[71.76188,25.07434],[71.75239,25.06979],[71.73815,25.06777],[71.73763,25.06035],[71.73306,25.05211],[71.72809,25.04856],[71.72695,25.04276],[71.72737,25.03613],[71.72892,25.03407],[71.727,25.02608],[71.71924,25.0208],[71.71363,25.02158],[71.69202,24.99338],[71.68274,24.98706],[71.66585,25.00032],[71.6521,25.02168],[71.64698,25.02529],[71.64404,25.02548],[71.63381,25.03422],[71.61442,25.03192],[71.59138,25.02511],[71.58592,25.02144],[71.56711,25.00183],[71.56676,24.99559],[71.55698,24.98357],[71.5523,24.98039],[71.53863,24.97707],[71.53235,24.97224],[71.53011,24.97373],[71.52532,24.98334],[71.52785,24.98853],[71.52555,24.99918],[71.51477,25.00863],[71.50641,25.00948],[71.49018,25.00534],[71.49031,24.99199],[71.48373,24.98803],[71.48245,24.99166],[71.475,24.99786],[71.46592,24.9969],[71.45225,24.98735],[71.44608,24.986],[71.43634,24.97837],[71.4246,24.97535],[71.42118,24.97674],[71.41387,24.96998],[71.41154,24.97215],[71.39997,24.9707],[71.3872,24.97486],[71.38397,24.96611],[71.37887,24.96062],[71.34843,24.94206],[71.3428,24.94358],[71.33918,24.93894],[71.33962,24.92596],[71.34302,24.91825],[71.34605,24.9172],[71.34654,24.91182],[71.32909,24.89591],[71.32654,24.89958],[71.31709,24.90413],[71.31131,24.8997],[71.30788,24.89035],[71.30559,24.88812],[71.32707,24.86829],[71.32957,24.85049],[71.32654,24.84371],[71.31951,24.84042],[71.31789,24.83655],[71.30349,24.82218],[71.2889,24.82736],[71.28445,24.82527],[71.28662,24.81686],[71.2791,24.81433],[71.26365,24.80531],[71.25445,24.795],[71.24384,24.80132],[71.25725,24.75569],[71.26148,24.74916],[71.26426,24.74832],[71.23991,24.72132],[71.20955,24.69834],[71.18783,24.6497],[71.28782,24.61623],[71.2987,24.62407],[71.298,24.62612],[71.30455,24.62866],[71.30437,24.63528],[71.3135,24.64765],[71.34817,24.66094],[71.35864,24.63075],[71.36713,24.6293],[71.36934,24.62642],[71.37327,24.6277],[71.3778,24.62597],[71.38129,24.62887],[71.38299,24.63366],[71.39116,24.63129],[71.39623,24.63503],[71.39838,24.64078],[71.42258,24.64783],[71.42901,24.65692],[71.44772,24.66839],[71.46199,24.66652],[71.47917,24.67965],[71.49136,24.67926],[71.5,24.68043],[71.50264,24.68214],[71.51375,24.67892],[71.52134,24.68317],[71.5289,24.6847],[71.54183,24.67576],[71.56021,24.67852],[71.573,24.68342],[71.5777,24.6814],[71.58453,24.67005],[71.58975,24.66716],[71.6076,24.67655],[71.6111,24.67299],[71.61682,24.67087],[71.61926,24.6674],[71.62415,24.66972],[71.62686,24.66712],[71.62474,24.66386],[71.62737,24.66427],[71.62888,24.65992],[71.63875,24.65954],[71.63994,24.65128],[71.64392,24.64393],[71.64724,24.64458],[71.65537,24.63919],[71.66271,24.64442],[71.66448,24.64344],[71.67745,24.64631],[71.69043,24.6542],[71.6971,24.65445],[71.70636,24.6613],[71.73556,24.66005],[71.74774,24.66507],[71.76243,24.66863],[71.77269,24.67587],[71.78027,24.67491],[71.79153,24.67734],[71.80296,24.67165],[71.81039,24.65606],[71.80253,24.63113],[71.8059,24.62675],[71.81604,24.62032],[71.82127,24.62017],[71.83084,24.62339],[71.83783,24.6213],[71.85217,24.60936],[71.85562,24.62207],[71.86539,24.63071],[71.85749,24.6522],[71.85777,24.66617],[71.86135,24.6723],[71.87175,24.68177],[71.87655,24.68164],[71.88503,24.67755],[71.88823,24.67214],[71.89952,24.67674],[71.9075,24.67756],[71.91861,24.67211],[71.92017,24.67092],[71.92032,24.66416],[71.91701,24.66029],[71.91164,24.65857],[71.91544,24.64951],[71.9255,24.63604],[71.93601,24.6354],[71.93864,24.6365],[71.93987,24.6338],[71.94618,24.64109],[71.95528,24.64524],[71.96425,24.64583],[71.97744,24.65692],[71.9883,24.65753],[71.98275,24.673],[71.98385,24.68595],[71.99383,24.69506],[71.99516,24.69317],[72.0011,24.69488],[72.00143,24.68841],[72.00593,24.69043],[72.0125,24.69058],[72.01783,24.69478],[72.02846,24.69733],[72.03494,24.70245],[72.04258,24.70437],[72.04853,24.71056],[72.05833,24.71254],[72.0852,24.70641],[72.09116,24.69097],[72.09275,24.68195],[72.08614,24.67759],[72.08721,24.67002],[72.09002,24.66414],[72.08982,24.6587],[72.09806,24.65612],[72.10248,24.65046],[72.10762,24.649],[72.10877,24.64665],[72.11496,24.64843],[72.11699,24.64336],[72.12457,24.6386],[72.12819,24.6417],[72.15026,24.64367],[72.16033,24.63526],[72.16481,24.62128],[72.17034,24.62318],[72.18389,24.61973],[72.19203,24.62005],[72.19657,24.61472],[72.19779,24.6167],[72.19475,24.62302],[72.20221,24.62311],[72.21033,24.62685],[72.21669,24.6269],[72.22687,24.63916],[72.23037,24.64061],[72.234,24.64043],[72.23698,24.63539],[72.24229,24.63458],[72.24857,24.6269],[72.25469,24.62488],[72.26312,24.63093],[72.26789,24.6368],[72.27084,24.63757],[72.2828,24.65358],[72.28844,24.65201],[72.29475,24.64759],[72.3012,24.63923],[72.30038,24.63284],[72.29597,24.62808],[72.29636,24.62489],[72.3003,24.62286],[72.30499,24.61755],[72.31517,24.61995],[72.32022,24.61778],[72.33545,24.6333],[72.33042,24.64167],[72.32584,24.64323],[72.32269,24.64772],[72.31912,24.6479],[72.31621,24.6505],[72.31367,24.65507],[72.31169,24.67367],[72.31928,24.68358],[72.32064,24.69092],[72.32355,24.69447],[72.32488,24.70066],[72.33046,24.71188],[72.34469,24.7237],[72.35461,24.74045],[72.36656,24.75606],[72.36938,24.75745],[72.37323,24.76574],[72.39075,24.76788],[72.39699,24.77505],[72.40016,24.77589],[72.40668,24.76825],[72.41428,24.7546],[72.41882,24.75667],[72.44069,24.75536],[72.44744,24.7601],[72.47706,24.75312],[72.49111,24.7597],[72.49356,24.76845],[72.49379,24.78002],[72.48825,24.80173],[72.48841,24.8073],[72.48934,24.81393],[72.49756,24.81908],[72.49533,24.82574],[72.4954,24.83204],[72.49239,24.83423],[72.49418,24.8372],[72.49016,24.84006],[72.49124,24.84815],[72.48898,24.85271],[72.48438,24.85694],[72.48398,24.86267],[72.48168,24.86438],[72.47887,24.87118],[72.48189,24.87482],[72.48419,24.87258],[72.48682,24.87264],[72.50349,24.881],[72.49958,24.90167],[72.49212,24.90647],[72.49276,24.90749],[72.49635,24.90658],[72.4993,24.91066],[72.49604,24.91647],[72.50043,24.91892],[72.51023,24.93058],[72.5171,24.9354],[72.52073,24.93136],[72.52564,24.92998],[72.53122,24.93177],[72.54535,24.93038],[72.56494,24.93332],[72.57454,24.94136],[72.58514,24.95554],[72.59705,24.96306],[72.60283,24.9678],[72.60405,24.97094],[72.61083,24.97475],[72.61419,24.98546],[72.62158,24.98722],[72.62751,24.99659],[72.63359,25.00001],[72.63799,25.01604],[72.64897,25.01573],[72.64888,25.02445],[72.65682,25.02699],[72.65522,25.03081],[72.65655,25.03921],[72.65976,25.039],[72.65983,25.04225],[72.66334,25.04607],[72.67795,25.04941],[72.68179,25.04938],[72.68894,25.04628],[72.68852,25.05417],[72.69108,25.05822],[72.69179,25.06454],[72.69107,25.07551],[72.69476,25.07849],[72.70448,25.0816],[72.7064,25.09835],[72.71075,25.10647],[72.731,25.12266],[72.73882,25.12635],[72.74454,25.14463],[72.74531,25.15715],[72.74677,25.15917],[72.75856,25.17021],[72.76452,25.17943],[72.77118,25.18617],[72.78033,25.18846],[72.77821,25.19881],[72.77781,25.2171],[72.78009,25.2232],[72.79072,25.23521],[72.80263,25.25642],[72.80924,25.25408],[72.81209,25.25619],[72.82048,25.28014],[72.82398,25.28265],[72.8264,25.28228],[72.82869,25.2852],[72.83783,25.27999],[72.84372,25.27345],[72.85113,25.27418],[72.8637,25.26095],[72.86734,25.25268],[72.87103,25.25012],[72.88033,25.24946],[72.88639,25.24524],[72.89621,25.2456],[72.89726,25.25062],[72.89992,25.25277],[72.90172,25.24959],[72.90925,25.25022],[72.9128,25.25456],[72.9167,25.25579],[72.92136,25.24633],[72.94015,25.24265],[72.94176,25.24447],[72.946,25.24252],[72.94723,25.24249],[72.94714,25.24408],[72.96401,25.24457],[72.96496,25.24327],[72.97503,25.24742],[72.98574,25.24951],[72.98758,25.25456],[72.9925,25.25929],[72.99453,25.26565],[72.99773,25.27836],[72.99566,25.2865],[72.97807,25.31578],[72.97512,25.33131],[72.97288,25.3349],[72.96519,25.34089],[72.9543,25.34586],[72.94885,25.35251],[72.94017,25.35601],[72.93657,25.3604],[72.94072,25.36001],[72.94492,25.36274],[72.95645,25.37479],[72.96513,25.37172],[72.97504,25.37124],[72.98282,25.35895],[72.99259,25.34789],[73.00867,25.35682],[73.00528,25.36903],[72.99663,25.37199],[72.99063,25.37663],[72.99179,25.37931],[73.00202,25.38676],[72.99896,25.391],[73.00202,25.3922],[73.01546,25.38388],[73.01652,25.3804],[73.01849,25.37997],[73.03846,25.3937],[73.04795,25.40856],[73.05296,25.41339],[73.06157,25.43405],[73.06148,25.43742],[73.05339,25.44451],[73.06241,25.44778],[73.07651,25.45856],[73.08821,25.46415],[73.09123,25.46728],[73.08287,25.49036],[73.079,25.48968],[73.07022,25.4944],[73.06549,25.49395],[73.06,25.49651],[73.05645,25.49917],[73.05658,25.50279],[73.0509,25.50854],[73.05259,25.51205],[73.05114,25.51582],[73.05357,25.51739],[73.05193,25.52264],[73.05487,25.52762],[73.05268,25.53368],[73.05417,25.53978],[73.05177,25.54739],[73.05442,25.55191],[73.05369,25.55711],[73.04208,25.56197],[73.03702,25.57264],[73.02767,25.58059],[73.0184,25.58527],[73.01174,25.58511],[73.01255,25.58975],[73.00611,25.59068],[73.00122,25.59338],[72.99242,25.59968],[72.98759,25.60533],[72.98022,25.60481],[72.97742,25.61808],[72.97584,25.62144],[72.9709,25.62534],[72.96788,25.62359],[72.96301,25.62412],[72.96175,25.62988],[72.93654,25.63546],[72.93779,25.64734],[72.93141,25.64775],[72.93142,25.65084],[72.9293,25.65032],[72.92155,25.66094],[72.92348,25.66343],[72.92032,25.66583],[72.91929,25.67047],[72.92794,25.67702],[72.93154,25.6852],[72.92925,25.68338],[72.92587,25.68579],[72.92439,25.68466],[72.91923,25.68567],[72.9155,25.68356],[72.91351,25.6875],[72.90923,25.68974],[72.90763,25.68842],[72.90574,25.69055],[72.90139,25.689],[72.89903,25.692],[72.89262,25.68894],[72.89056,25.69452],[72.88763,25.6959],[72.88768,25.69897],[72.88447,25.70174],[72.89889,25.71021],[72.8902,25.72467],[72.88953,25.73544],[72.89063,25.73625],[72.88231,25.73633],[72.87887,25.74063],[72.87488,25.73687],[72.86994,25.74582],[72.8708,25.75029],[72.86039,25.75361],[72.84163,25.75581],[72.84164,25.75831],[72.83645,25.76019],[72.83198,25.7656],[72.82377,25.76439],[72.81693,25.77275],[72.80805,25.77687],[72.80145,25.78196],[72.79971,25.79306],[72.78497,25.79749],[72.77784,25.80256]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"105","area_level":"District","area_name":"Jhalawar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.36021,24.8704],[76.35449,24.86992],[76.33946,24.86367],[76.3317,24.86365],[76.3307,24.86086],[76.33185,24.85829],[76.32745,24.84741],[76.32395,24.84619],[76.31739,24.84872],[76.31497,24.84724],[76.31225,24.84244],[76.31332,24.83654],[76.30635,24.83673],[76.3041,24.84034],[76.30222,24.84005],[76.30149,24.83647],[76.3066,24.83624],[76.30528,24.83362],[76.28676,24.83405],[76.2911,24.81791],[76.28979,24.81509],[76.28733,24.81458],[76.28505,24.80833],[76.28127,24.80683],[76.28011,24.80811],[76.27956,24.80659],[76.26635,24.80712],[76.26519,24.80988],[76.26805,24.82118],[76.26571,24.82287],[76.26975,24.83661],[76.269,24.84221],[76.2574,24.84319],[76.25129,24.83984],[76.25028,24.8321],[76.25322,24.82699],[76.23936,24.82914],[76.22085,24.82907],[76.22722,24.81344],[76.22104,24.79642],[76.21938,24.78064],[76.21553,24.77204],[76.2019,24.75422],[76.19683,24.75362],[76.1926,24.75675],[76.15475,24.74389],[76.15234,24.74494],[76.14096,24.75317],[76.14146,24.75666],[76.13858,24.76848],[76.14074,24.78082],[76.15248,24.79638],[76.14974,24.79529],[76.14299,24.79646],[76.13791,24.7999],[76.13441,24.79077],[76.12162,24.78148],[76.11504,24.77331],[76.11809,24.76907],[76.11548,24.76435],[76.09073,24.7549],[76.07176,24.74436],[76.06544,24.74273],[76.06666,24.74134],[76.05767,24.73179],[76.05869,24.72943],[76.06788,24.72131],[76.06866,24.71833],[76.08187,24.71179],[76.08329,24.71247],[76.09307,24.70431],[76.09897,24.69733],[76.09892,24.69339],[76.10091,24.691],[76.09117,24.68727],[76.08028,24.67945],[76.06599,24.67318],[76.06184,24.66821],[76.06261,24.64451],[76.05548,24.63423],[76.05673,24.6259],[76.05539,24.61949],[76.06111,24.61187],[76.06403,24.60306],[76.07129,24.59002],[76.07498,24.57843],[76.0743,24.57253],[76.07105,24.56971],[76.0655,24.56984],[76.05612,24.56257],[76.05223,24.56475],[76.05414,24.56769],[76.04566,24.57053],[76.04289,24.56221],[76.03451,24.56227],[76.03036,24.55379],[76.02859,24.55448],[76.02706,24.55071],[76.01105,24.55746],[76.00406,24.55495],[76.00406,24.55681],[75.9986,24.55713],[75.99869,24.55899],[75.99287,24.55993],[75.98855,24.55885],[75.98807,24.55558],[75.97414,24.56051],[75.96339,24.56223],[75.96296,24.56355],[75.95732,24.56241],[75.95862,24.54973],[75.95306,24.5492],[75.95196,24.54336],[75.94765,24.54435],[75.94753,24.54608],[75.93802,24.55017],[75.93194,24.55104],[75.92067,24.54894],[75.9176,24.54096],[75.92059,24.53588],[75.92334,24.53518],[75.92055,24.52166],[75.91138,24.5139],[75.90777,24.51296],[75.90112,24.51879],[75.89053,24.51883],[75.88988,24.51014],[75.88786,24.50807],[75.8982,24.50452],[75.90282,24.5046],[75.90393,24.49691],[75.90792,24.49237],[75.9117,24.49169],[75.91009,24.48309],[75.90539,24.47247],[75.90886,24.46218],[75.90906,24.45501],[75.90263,24.45379],[75.90306,24.44956],[75.90023,24.44222],[75.89037,24.43937],[75.87575,24.43037],[75.87509,24.42636],[75.86119,24.42155],[75.85706,24.41853],[75.84644,24.41574],[75.84201,24.41627],[75.83879,24.41418],[75.83557,24.41487],[75.826,24.42343],[75.82484,24.42731],[75.81689,24.42942],[75.80986,24.43404],[75.81445,24.45036],[75.81407,24.4613],[75.80335,24.46825],[75.7894,24.47153],[75.78534,24.46788],[75.78427,24.4579],[75.78606,24.45326],[75.78119,24.44962],[75.77339,24.4497],[75.7741,24.44191],[75.77132,24.44172],[75.76656,24.43431],[75.7632,24.43317],[75.76179,24.43086],[75.75786,24.43115],[75.7476,24.42418],[75.74759,24.42289],[75.75589,24.42066],[75.75469,24.4167],[75.75531,24.40653],[75.7499,24.40438],[75.74952,24.40097],[75.74322,24.39934],[75.74279,24.39773],[75.73158,24.39876],[75.72791,24.39641],[75.72925,24.3781],[75.73304,24.37787],[75.73787,24.38234],[75.73898,24.37824],[75.73997,24.36096],[75.73753,24.35356],[75.74075,24.35129],[75.7432,24.35168],[75.74212,24.34986],[75.74318,24.34005],[75.73822,24.33482],[75.73984,24.33215],[75.7488,24.32699],[75.75734,24.31925],[75.76096,24.3145],[75.76647,24.29802],[75.78581,24.29664],[75.78715,24.29872],[75.80183,24.30213],[75.80353,24.29843],[75.80652,24.29978],[75.81073,24.29609],[75.80893,24.29409],[75.81218,24.29331],[75.81365,24.28995],[75.81189,24.28549],[75.81844,24.28069],[75.81679,24.27837],[75.81319,24.27841],[75.81171,24.27528],[75.81257,24.27138],[75.81419,24.27128],[75.8142,24.2677],[75.81153,24.25774],[75.81922,24.25697],[75.81299,24.25047],[75.81474,24.24606],[75.81352,24.24537],[75.81798,24.24215],[75.81802,24.23872],[75.8255,24.23696],[75.83023,24.23376],[75.82365,24.22998],[75.81794,24.22947],[75.81568,24.22581],[75.80936,24.2297],[75.80988,24.225],[75.80737,24.21777],[75.7949,24.2147],[75.7928,24.21035],[75.77744,24.20998],[75.77223,24.20055],[75.77259,24.19419],[75.77098,24.18897],[75.77394,24.18127],[75.76376,24.1745],[75.76388,24.17],[75.76031,24.16604],[75.76152,24.16209],[75.75871,24.15878],[75.75917,24.15547],[75.75162,24.14771],[75.75096,24.14333],[75.75583,24.14029],[75.7577,24.13491],[75.7622,24.13073],[75.76412,24.1211],[75.77003,24.11579],[75.77357,24.11899],[75.77864,24.11926],[75.78264,24.11595],[75.78405,24.11228],[75.78327,24.10785],[75.7876,24.10479],[75.79089,24.10541],[75.78913,24.10419],[75.78762,24.0987],[75.79286,24.09185],[75.8057,24.09957],[75.81657,24.08547],[75.8357,24.09212],[75.83503,24.07351],[75.83672,24.05706],[75.81498,24.05154],[75.81045,24.04865],[75.78169,24.04253],[75.78057,24.03952],[75.78309,24.02214],[75.77528,24.01699],[75.77537,24.01411],[75.77677,24.01446],[75.77339,24.00787],[75.76266,24.00988],[75.76399,24.00537],[75.7685,24.00092],[75.76843,23.99753],[75.76534,23.99268],[75.75352,23.99098],[75.74225,23.99273],[75.74194,23.98864],[75.7434,23.98847],[75.74364,23.98629],[75.74145,23.98296],[75.74113,23.97694],[75.73621,23.97533],[75.73067,23.97678],[75.72893,23.97317],[75.72953,23.97025],[75.71828,23.96834],[75.71752,23.96686],[75.70173,23.96659],[75.69882,23.98784],[75.6925,23.98696],[75.68699,23.98877],[75.68772,24.00546],[75.67818,24.00731],[75.67434,24.01768],[75.6581,24.01024],[75.6546,24.00641],[75.6509,24.00631],[75.65049,24.00517],[75.65264,24.00397],[75.65163,24.00282],[75.64752,24.00351],[75.64108,24.00075],[75.64005,23.99789],[75.63502,23.99788],[75.63,23.99505],[75.62581,23.99639],[75.61977,23.99495],[75.61578,23.99659],[75.6071,23.99255],[75.60379,23.99545],[75.59802,23.99414],[75.59552,23.99],[75.59547,23.99447],[75.58791,23.99064],[75.58134,23.9914],[75.581,23.99674],[75.57953,23.99839],[75.57751,23.99414],[75.5758,23.99413],[75.57628,23.99716],[75.57235,23.99878],[75.56551,24.00768],[75.54822,24.00721],[75.53963,24.00906],[75.52105,24.02502],[75.50469,24.00596],[75.49227,23.99722],[75.48323,23.98755],[75.47468,23.98284],[75.46885,23.97445],[75.46531,23.94753],[75.46004,23.93242],[75.45939,23.92078],[75.46206,23.91476],[75.46597,23.9121],[75.47737,23.91152],[75.49165,23.90678],[75.50111,23.89779],[75.50567,23.88725],[75.52149,23.88493],[75.53075,23.87662],[75.54709,23.86956],[75.55308,23.86162],[75.56322,23.85758],[75.56593,23.85342],[75.5665,23.84387],[75.57676,23.84231],[75.57903,23.8398],[75.57933,23.83511],[75.57806,23.83121],[75.57461,23.82848],[75.56669,23.8332],[75.56062,23.83142],[75.55912,23.82832],[75.5593,23.81818],[75.56679,23.80958],[75.57157,23.80915],[75.5806,23.81228],[75.58901,23.80978],[75.58345,23.79482],[75.59844,23.79776],[75.60893,23.79755],[75.61435,23.80105],[75.62045,23.80093],[75.62704,23.79544],[75.63848,23.79566],[75.64401,23.79778],[75.65001,23.79546],[75.6545,23.7984],[75.65998,23.78423],[75.67563,23.78189],[75.68046,23.76527],[75.68672,23.75594],[75.68971,23.76216],[75.69294,23.77603],[75.6965,23.77974],[75.69964,23.78034],[75.70184,23.78639],[75.69012,23.81325],[75.69277,23.81645],[75.69799,23.81337],[75.70621,23.81331],[75.7073,23.81123],[75.71256,23.81315],[75.72159,23.81179],[75.72098,23.81875],[75.72647,23.82021],[75.72404,23.82376],[75.72227,23.83536],[75.71895,23.84067],[75.72565,23.84183],[75.73131,23.85313],[75.73641,23.85625],[75.73522,23.86199],[75.72759,23.85872],[75.71085,23.86241],[75.70894,23.86923],[75.70523,23.86858],[75.70349,23.87249],[75.70157,23.87283],[75.70219,23.88173],[75.70548,23.88265],[75.70427,23.88876],[75.70609,23.8991],[75.70805,23.8994],[75.71028,23.89551],[75.71547,23.89305],[75.7193,23.89706],[75.72711,23.89328],[75.73523,23.89811],[75.73949,23.89216],[75.74,23.889],[75.7527,23.88735],[75.76454,23.87555],[75.7617,23.86576],[75.76454,23.85174],[75.77345,23.84814],[75.78125,23.84873],[75.78329,23.84923],[75.78506,23.85282],[75.79201,23.85845],[75.79385,23.86701],[75.799,23.86856],[75.803,23.86545],[75.81736,23.86786],[75.82087,23.87331],[75.83265,23.87992],[75.83365,23.87795],[75.83547,23.87818],[75.83508,23.87684],[75.83914,23.87862],[75.84056,23.87458],[75.84476,23.87619],[75.84478,23.88395],[75.84878,23.88415],[75.85302,23.88748],[75.87063,23.89042],[75.87479,23.88537],[75.87652,23.88524],[75.87642,23.88002],[75.8871,23.87911],[75.89484,23.8894],[75.90486,23.88916],[75.92178,23.89613],[75.9238,23.89847],[75.92714,23.89774],[75.92858,23.8991],[75.93199,23.89622],[75.93751,23.89669],[75.93944,23.89947],[75.94132,23.89946],[75.94108,23.90176],[75.94389,23.90298],[75.94466,23.90896],[75.94917,23.9126],[75.95303,23.91172],[75.95137,23.91553],[75.95531,23.92084],[75.96038,23.92325],[75.96781,23.92416],[75.97453,23.92902],[75.98136,23.92897],[75.98223,23.93104],[75.97996,23.93591],[75.98761,23.94174],[75.98388,23.95027],[75.98676,23.95885],[75.98391,23.96742],[75.98485,23.97403],[75.97596,23.98221],[75.97243,23.98847],[75.96744,23.99123],[75.96719,23.99987],[75.96222,24.01469],[75.96346,24.01871],[75.97064,24.02036],[75.99702,24.01769],[76.0,24.02089],[76.01067,24.02504],[76.0213,24.03419],[76.01941,24.03742],[76.02202,24.04119],[76.02223,24.04724],[76.02817,24.05174],[76.03056,24.05154],[76.03169,24.05787],[76.0346,24.05845],[76.03681,24.0629],[76.03996,24.06316],[76.04267,24.06602],[76.04543,24.06451],[76.04896,24.06667],[76.05465,24.06526],[76.05767,24.06754],[76.06325,24.06827],[76.06758,24.07072],[76.07275,24.07666],[76.07584,24.07084],[76.08451,24.07694],[76.08927,24.07704],[76.0927,24.08253],[76.09635,24.08341],[76.10062,24.08711],[76.10492,24.08744],[76.10666,24.08429],[76.11457,24.08474],[76.11804,24.08712],[76.12179,24.0847],[76.12679,24.08873],[76.12064,24.10821],[76.13114,24.11549],[76.12679,24.13249],[76.12244,24.1377],[76.12496,24.15107],[76.12442,24.15945],[76.1213,24.16301],[76.11378,24.16387],[76.11738,24.19399],[76.13227,24.20856],[76.1378,24.21802],[76.14512,24.22302],[76.14843,24.23203],[76.14312,24.25574],[76.13905,24.25625],[76.14139,24.26718],[76.13672,24.27081],[76.14054,24.27463],[76.14329,24.2829],[76.14932,24.28478],[76.15968,24.2827],[76.16255,24.28473],[76.16533,24.29223],[76.1647,24.29461],[76.16888,24.29707],[76.16587,24.29981],[76.16461,24.30659],[76.16556,24.30789],[76.17015,24.30606],[76.17411,24.30721],[76.17415,24.31268],[76.17963,24.31687],[76.18552,24.32928],[76.18992,24.32342],[76.19558,24.31055],[76.20286,24.30492],[76.20473,24.3009],[76.20424,24.29802],[76.19729,24.28796],[76.19459,24.27319],[76.20093,24.27107],[76.20214,24.26883],[76.20295,24.24476],[76.20647,24.22841],[76.20333,24.22052],[76.2047,24.21725],[76.21164,24.21219],[76.21255,24.20994],[76.21752,24.21126],[76.22478,24.21654],[76.22765,24.21541],[76.23995,24.21889],[76.25211,24.21428],[76.25813,24.21463],[76.26715,24.21036],[76.27554,24.21088],[76.28232,24.20731],[76.2854,24.20954],[76.28736,24.22986],[76.29568,24.23185],[76.30186,24.23608],[76.31084,24.23763],[76.31911,24.24481],[76.32291,24.24554],[76.33988,24.24411],[76.34856,24.24062],[76.35721,24.23974],[76.35834,24.23544],[76.3729,24.22785],[76.38191,24.221],[76.40158,24.21527],[76.40796,24.20352],[76.41168,24.20051],[76.4148,24.20064],[76.42057,24.20864],[76.41642,24.21097],[76.41622,24.22063],[76.43022,24.22131],[76.45227,24.20936],[76.46052,24.21851],[76.46272,24.22322],[76.47051,24.22615],[76.47048,24.22298],[76.47403,24.22217],[76.48054,24.20808],[76.4958,24.2054],[76.49947,24.20607],[76.50454,24.20309],[76.50873,24.19358],[76.50944,24.18213],[76.51293,24.16659],[76.51537,24.16263],[76.52241,24.15707],[76.52742,24.15673],[76.54469,24.16285],[76.55195,24.16328],[76.5618,24.17334],[76.56618,24.17444],[76.56989,24.17802],[76.5705,24.17489],[76.57489,24.17572],[76.57773,24.17917],[76.57467,24.18656],[76.56427,24.19095],[76.56654,24.20338],[76.56876,24.20483],[76.57025,24.20899],[76.57774,24.21175],[76.582,24.21134],[76.58341,24.21627],[76.58944,24.21702],[76.59523,24.22332],[76.59439,24.22844],[76.58784,24.23473],[76.58354,24.24287],[76.58606,24.24444],[76.5956,24.24402],[76.6112,24.23865],[76.61479,24.25362],[76.61765,24.25883],[76.62257,24.25735],[76.62386,24.25915],[76.6313,24.26082],[76.6372,24.25834],[76.6366,24.26425],[76.63997,24.26822],[76.64347,24.26939],[76.65303,24.2635],[76.65673,24.26483],[76.66513,24.26193],[76.66668,24.26365],[76.67775,24.26664],[76.6781,24.27123],[76.68127,24.27507],[76.68753,24.27918],[76.69275,24.28023],[76.69137,24.28574],[76.69277,24.28648],[76.69523,24.27763],[76.69309,24.26793],[76.69409,24.26166],[76.70148,24.25042],[76.70273,24.2432],[76.70051,24.23898],[76.69436,24.23631],[76.69044,24.23057],[76.6781,24.20489],[76.67589,24.19085],[76.6863,24.1862],[76.69204,24.18057],[76.69296,24.17641],[76.69858,24.17193],[76.69831,24.16847],[76.71143,24.16384],[76.71912,24.15869],[76.72608,24.16072],[76.72619,24.16857],[76.75792,24.16826],[76.76078,24.165],[76.75978,24.16014],[76.77019,24.16012],[76.7738,24.15007],[76.77837,24.14699],[76.78088,24.1394],[76.78822,24.13215],[76.79,24.12272],[76.79613,24.12136],[76.80129,24.11667],[76.80637,24.11818],[76.81158,24.12275],[76.83308,24.12202],[76.83632,24.12673],[76.85377,24.13353],[76.85459,24.13583],[76.87841,24.13569],[76.88009,24.13506],[76.8788,24.13023],[76.88397,24.13004],[76.88602,24.12801],[76.89128,24.12673],[76.90129,24.12822],[76.90465,24.14385],[76.90994,24.15273],[76.91068,24.15865],[76.90895,24.16128],[76.9157,24.17353],[76.91629,24.18785],[76.93143,24.18356],[76.93577,24.18373],[76.93987,24.19339],[76.9472,24.19873],[76.9474,24.20131],[76.94593,24.20611],[76.93347,24.20706],[76.93157,24.21035],[76.9223,24.2117],[76.92294,24.22605],[76.91812,24.22994],[76.91576,24.22964],[76.91265,24.23795],[76.90528,24.2368],[76.89616,24.24309],[76.8882,24.24489],[76.88597,24.24778],[76.88784,24.25213],[76.87963,24.2553],[76.87992,24.26028],[76.87313,24.26262],[76.87351,24.26592],[76.86262,24.27332],[76.86012,24.29409],[76.85688,24.30292],[76.85167,24.31234],[76.84105,24.32241],[76.83787,24.33415],[76.83731,24.3464],[76.83188,24.35797],[76.83735,24.35959],[76.85139,24.37052],[76.84523,24.37513],[76.85062,24.38246],[76.84907,24.38954],[76.84325,24.40378],[76.83751,24.40736],[76.83841,24.41265],[76.84574,24.41592],[76.85056,24.42452],[76.84592,24.43078],[76.84476,24.43644],[76.83491,24.43537],[76.83152,24.43656],[76.82676,24.43518],[76.8236,24.43639],[76.81721,24.43442],[76.815,24.43198],[76.81766,24.42786],[76.81629,24.42668],[76.81074,24.43295],[76.8044,24.43162],[76.7975,24.43438],[76.79637,24.43717],[76.79151,24.43949],[76.77853,24.43635],[76.77496,24.44291],[76.76031,24.44741],[76.76039,24.44453],[76.75478,24.44505],[76.75094,24.43932],[76.74019,24.42933],[76.73706,24.42295],[76.7311,24.42294],[76.72562,24.41325],[76.72245,24.41692],[76.71959,24.41243],[76.71463,24.41391],[76.71197,24.40322],[76.7005,24.41334],[76.69734,24.41858],[76.69708,24.42593],[76.67722,24.43905],[76.67176,24.43771],[76.66432,24.43061],[76.65831,24.42152],[76.64287,24.41336],[76.62803,24.41187],[76.60785,24.42388],[76.5961,24.44275],[76.59356,24.45403],[76.57386,24.46404],[76.57365,24.46772],[76.57736,24.47293],[76.58022,24.48624],[76.57966,24.49038],[76.57043,24.49399],[76.55931,24.49245],[76.5463,24.49787],[76.53831,24.50501],[76.5352,24.51085],[76.53742,24.53816],[76.53593,24.56175],[76.53094,24.57166],[76.52001,24.57657],[76.51807,24.58341],[76.52146,24.60832],[76.51775,24.61744],[76.51942,24.61992],[76.52084,24.62952],[76.52784,24.64476],[76.52909,24.66005],[76.50567,24.65211],[76.48866,24.64933],[76.48454,24.65878],[76.47639,24.65911],[76.47199,24.66698],[76.47125,24.67341],[76.47247,24.67903],[76.46812,24.6909],[76.46346,24.69542],[76.46274,24.70187],[76.45959,24.70699],[76.4569,24.72862],[76.44748,24.73771],[76.44505,24.74542],[76.44332,24.76592],[76.44014,24.77747],[76.44169,24.79056],[76.43948,24.80868],[76.44119,24.81164],[76.44307,24.83117],[76.41843,24.82958],[76.42028,24.83523],[76.41898,24.83909],[76.41565,24.84171],[76.40538,24.84256],[76.40396,24.83878],[76.40194,24.83984],[76.39888,24.8347],[76.39105,24.84012],[76.39062,24.84218],[76.38757,24.84217],[76.38615,24.84651],[76.37721,24.85382],[76.3768,24.86038],[76.37352,24.86314],[76.36846,24.8624],[76.36021,24.8704]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"106","area_level":"District","area_name":"Jhunjhunu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.6703,28.51811],[75.66808,28.51758],[75.66499,28.51028],[75.63889,28.50948],[75.63672,28.51195],[75.6334,28.51217],[75.60815,28.50824],[75.60735,28.50148],[75.60866,28.50103],[75.61088,28.49382],[75.61068,28.48617],[75.60526,28.46543],[75.60192,28.45697],[75.59995,28.4568],[75.60073,28.4522],[75.60308,28.44921],[75.58851,28.44726],[75.58564,28.44137],[75.58899,28.43537],[75.59288,28.43395],[75.59273,28.43021],[75.60103,28.42815],[75.61177,28.41743],[75.61114,28.40806],[75.59858,28.40798],[75.59846,28.40655],[75.59574,28.40594],[75.59419,28.409],[75.56996,28.41055],[75.56991,28.41262],[75.56834,28.41283],[75.56578,28.39088],[75.56722,28.39052],[75.56757,28.38043],[75.55286,28.38058],[75.54233,28.37804],[75.54183,28.383],[75.53946,28.38317],[75.53924,28.38447],[75.52856,28.38523],[75.52863,28.37381],[75.51643,28.37177],[75.51214,28.3695],[75.51108,28.36148],[75.51203,28.34748],[75.50894,28.34066],[75.50544,28.33986],[75.49247,28.33764],[75.49195,28.34125],[75.48247,28.34175],[75.48238,28.34327],[75.47791,28.34361],[75.45684,28.34007],[75.45136,28.3496],[75.44845,28.35881],[75.44883,28.3643],[75.44627,28.36431],[75.44281,28.36778],[75.41539,28.36418],[75.41502,28.3572],[75.41646,28.35213],[75.41845,28.3515],[75.41917,28.34439],[75.41761,28.34253],[75.41096,28.34181],[75.41123,28.33833],[75.40785,28.33713],[75.40311,28.33729],[75.40156,28.33575],[75.39727,28.33899],[75.39126,28.33721],[75.3898,28.34076],[75.37867,28.33866],[75.37757,28.34431],[75.36909,28.34609],[75.36689,28.34916],[75.36243,28.34746],[75.36188,28.34868],[75.35851,28.34795],[75.35731,28.35724],[75.35276,28.3561],[75.35267,28.3591],[75.34984,28.3595],[75.34765,28.36232],[75.34027,28.36022],[75.33687,28.36551],[75.33269,28.3666],[75.32971,28.37842],[75.33013,28.39505],[75.32751,28.39458],[75.32078,28.40463],[75.31622,28.4043],[75.31412,28.40931],[75.30955,28.41416],[75.30389,28.41722],[75.3017,28.42005],[75.30029,28.42804],[75.29733,28.42902],[75.28988,28.42533],[75.27773,28.45186],[75.26504,28.44991],[75.26495,28.45177],[75.26212,28.45104],[75.24943,28.4644],[75.24338,28.45933],[75.23879,28.45934],[75.23234,28.4566],[75.23322,28.44138],[75.23498,28.44005],[75.21808,28.42949],[75.21929,28.42281],[75.21759,28.422],[75.21724,28.41797],[75.21868,28.41696],[75.22016,28.40793],[75.22316,28.40309],[75.22893,28.40468],[75.22458,28.39588],[75.20914,28.3897],[75.20315,28.38915],[75.18679,28.38206],[75.18547,28.38459],[75.18113,28.38399],[75.17845,28.38658],[75.16369,28.38055],[75.16268,28.38678],[75.16404,28.38787],[75.16369,28.39055],[75.16023,28.3985],[75.15851,28.40858],[75.15536,28.41074],[75.15072,28.40991],[75.14989,28.41198],[75.12902,28.40684],[75.1277,28.406],[75.128,28.40086],[75.12581,28.39687],[75.12879,28.39315],[75.12915,28.39015],[75.14364,28.38539],[75.14605,28.38181],[75.15106,28.36447],[75.15321,28.36479],[75.15481,28.35696],[75.16404,28.3441],[75.16279,28.33879],[75.14775,28.33272],[75.14922,28.32013],[75.15315,28.31324],[75.14625,28.3105],[75.14342,28.30546],[75.14304,28.29832],[75.14621,28.29597],[75.14549,28.29312],[75.13492,28.28936],[75.12368,28.28888],[75.11486,28.28222],[75.11372,28.27641],[75.10497,28.27277],[75.09816,28.26549],[75.09297,28.2652],[75.08813,28.26715],[75.07943,28.26397],[75.07697,28.26842],[75.06666,28.2643],[75.06587,28.26187],[75.06014,28.25859],[75.04576,28.2549],[75.04713,28.24882],[75.04207,28.24752],[75.04133,28.24257],[75.04613,28.23466],[75.04419,28.23429],[75.04495,28.23067],[75.04904,28.23053],[75.04929,28.22814],[75.04444,28.22447],[75.03464,28.22155],[75.03604,28.21849],[75.02751,28.21463],[75.0288,28.20803],[75.02461,28.20646],[75.02429,28.2032],[75.02828,28.20381],[75.03192,28.19628],[75.03744,28.19767],[75.03863,28.19365],[75.04329,28.19512],[75.04566,28.19123],[75.05562,28.19262],[75.0552,28.19362],[75.05747,28.19438],[75.07294,28.19526],[75.0737,28.19328],[75.07961,28.19381],[75.08321,28.18502],[75.06656,28.17477],[75.05856,28.1724],[75.05343,28.16817],[75.05531,28.16272],[75.0537,28.15913],[75.0653,28.16266],[75.06559,28.15986],[75.07219,28.16266],[75.07314,28.16069],[75.07705,28.16003],[75.08915,28.16192],[75.09193,28.15497],[75.09858,28.15607],[75.10217,28.15046],[75.10845,28.15181],[75.1069,28.15031],[75.10897,28.1509],[75.11016,28.14885],[75.10732,28.14721],[75.11076,28.1429],[75.11237,28.14324],[75.11383,28.14006],[75.11817,28.14068],[75.1194,28.13788],[75.12763,28.13626],[75.12915,28.12104],[75.12429,28.12137],[75.11469,28.11837],[75.11436,28.11594],[75.10998,28.11629],[75.10875,28.11507],[75.11295,28.11281],[75.11266,28.10638],[75.11451,28.10503],[75.11454,28.08903],[75.10978,28.08711],[75.11034,28.08564],[75.10426,28.08259],[75.10417,28.08066],[75.10033,28.07946],[75.10127,28.0759],[75.09767,28.0716],[75.10351,28.06108],[75.10524,28.06137],[75.1072,28.05014],[75.11379,28.0483],[75.11519,28.04554],[75.11701,28.04598],[75.11678,28.04336],[75.12007,28.03833],[75.12186,28.03944],[75.12484,28.03144],[75.1246,28.02814],[75.12748,28.02747],[75.12818,28.0252],[75.14247,28.02876],[75.14459,28.02717],[75.14699,28.02072],[75.14821,28.02136],[75.14979,28.01894],[75.15503,28.00385],[75.16008,27.99536],[75.16111,27.99187],[75.15767,27.98989],[75.16534,27.95918],[75.17321,27.96044],[75.1777,27.95869],[75.19322,27.95834],[75.19504,27.939],[75.19375,27.93755],[75.19443,27.93442],[75.19273,27.93421],[75.19312,27.92075],[75.1915,27.91667],[75.19391,27.91179],[75.20082,27.91285],[75.20152,27.90981],[75.20314,27.90966],[75.20232,27.90293],[75.20432,27.89385],[75.20192,27.89203],[75.20989,27.88239],[75.22051,27.8818],[75.22943,27.87941],[75.23832,27.85319],[75.24381,27.84637],[75.24357,27.83627],[75.23864,27.83258],[75.24117,27.82657],[75.23826,27.82566],[75.24046,27.81411],[75.24719,27.81796],[75.27026,27.82342],[75.28741,27.82055],[75.28766,27.80581],[75.29035,27.80129],[75.28932,27.79794],[75.29093,27.78987],[75.2896,27.77405],[75.27588,27.76912],[75.26008,27.76681],[75.2671,27.76104],[75.26771,27.75501],[75.27139,27.75493],[75.27164,27.75092],[75.27341,27.75083],[75.2765,27.74175],[75.27772,27.74215],[75.27832,27.73668],[75.28606,27.72299],[75.28587,27.71862],[75.29213,27.71764],[75.29718,27.71428],[75.29993,27.71485],[75.30476,27.71101],[75.32191,27.70979],[75.32276,27.70823],[75.3212,27.7072],[75.32588,27.69745],[75.35062,27.70181],[75.35707,27.69687],[75.3654,27.69435],[75.37239,27.68551],[75.37459,27.68351],[75.37756,27.68404],[75.37834,27.68153],[75.37233,27.67846],[75.37284,27.6694],[75.37095,27.65622],[75.37315,27.65448],[75.37506,27.64351],[75.37867,27.64774],[75.3818,27.64808],[75.39057,27.65572],[75.3919,27.66055],[75.39497,27.66319],[75.4051,27.66089],[75.40685,27.65881],[75.40564,27.65488],[75.40836,27.65051],[75.41466,27.64774],[75.41776,27.64395],[75.42333,27.64123],[75.42877,27.64164],[75.42937,27.64668],[75.44023,27.6574],[75.45344,27.65741],[75.4577,27.66395],[75.46434,27.66837],[75.46624,27.67118],[75.4655,27.68013],[75.4695,27.68799],[75.47503,27.69453],[75.4804,27.68803],[75.49259,27.68731],[75.50159,27.69168],[75.50735,27.69228],[75.50914,27.69477],[75.51314,27.69176],[75.51558,27.69577],[75.51828,27.69551],[75.52038,27.69794],[75.52397,27.69679],[75.52507,27.70165],[75.5294,27.70516],[75.53481,27.70572],[75.53739,27.71088],[75.54015,27.71204],[75.54989,27.70754],[75.55371,27.70752],[75.55497,27.7092],[75.56896,27.69958],[75.57715,27.70718],[75.59044,27.70251],[75.58929,27.70764],[75.5927,27.71112],[75.59809,27.71089],[75.60644,27.70713],[75.61482,27.70657],[75.61871,27.70261],[75.62082,27.70587],[75.62863,27.70967],[75.63238,27.71596],[75.64045,27.71724],[75.64378,27.72022],[75.64796,27.71771],[75.65503,27.71817],[75.66675,27.71575],[75.65902,27.69601],[75.66143,27.69454],[75.66163,27.68919],[75.66464,27.68735],[75.66464,27.68321],[75.66942,27.68447],[75.66749,27.677],[75.68479,27.67533],[75.69113,27.67918],[75.69671,27.69068],[75.69446,27.69438],[75.69923,27.70623],[75.69822,27.70896],[75.70042,27.71665],[75.70158,27.7175],[75.70495,27.71589],[75.70772,27.71929],[75.70761,27.72424],[75.71333,27.73107],[75.71177,27.73399],[75.7123,27.73706],[75.72008,27.74815],[75.71014,27.75444],[75.71142,27.76031],[75.72111,27.76732],[75.72976,27.78029],[75.7364,27.7942],[75.76372,27.82107],[75.76808,27.8309],[75.77945,27.83934],[75.7866,27.84021],[75.79783,27.84674],[75.80447,27.85659],[75.81597,27.85874],[75.83376,27.86967],[75.84385,27.87313],[75.87062,27.88932],[75.88839,27.90782],[75.89143,27.90512],[75.89839,27.91305],[75.90861,27.90639],[75.90982,27.9093],[75.90914,27.91615],[75.91933,27.91914],[75.92377,27.92544],[75.93238,27.92995],[75.93691,27.93848],[75.94659,27.9459],[75.95168,27.94773],[75.95795,27.93804],[75.95791,27.93591],[75.96603,27.93498],[75.96816,27.93193],[75.97272,27.93267],[75.98305,27.95098],[75.97783,27.95438],[75.98196,27.96533],[75.98864,27.96821],[75.99456,27.97541],[75.99817,27.97529],[75.99975,27.97705],[75.98989,27.98233],[75.98594,27.97862],[75.96878,27.98094],[75.9658,27.98361],[75.965,27.99632],[75.96672,28.00003],[75.97761,28.0002],[75.98689,27.99759],[75.98993,27.99469],[75.99554,28.00689],[75.99521,28.00879],[75.97112,28.01608],[75.97273,28.02364],[75.97695,28.03137],[75.98348,28.03139],[75.98906,28.03361],[75.98967,28.03582],[75.99352,28.0352],[75.99462,28.03852],[75.99601,28.03828],[75.99774,28.033],[76.01639,28.03051],[76.01867,28.04201],[76.01713,28.0527],[76.00776,28.05571],[76.00828,28.05839],[76.02536,28.05424],[76.02959,28.06144],[76.03371,28.06334],[76.03882,28.06933],[76.0408,28.07406],[76.03727,28.07598],[76.03874,28.07822],[76.03537,28.08052],[76.02324,28.08599],[76.01682,28.07466],[76.00988,28.06763],[76.00766,28.05893],[75.99882,28.05714],[75.99473,28.0522],[75.99287,28.04633],[75.98441,28.04709],[75.97484,28.05099],[75.9793,28.05793],[75.98265,28.05741],[75.98833,28.0663],[75.98869,28.069],[75.98289,28.07665],[75.98343,28.08135],[75.97228,28.08327],[75.96463,28.08047],[75.94986,28.08612],[75.9386,28.08794],[75.94593,28.10766],[75.9617,28.11479],[75.96739,28.11382],[75.97667,28.12475],[75.98819,28.12504],[75.99899,28.12277],[76.00435,28.13199],[76.00061,28.13321],[76.00302,28.14318],[76.00453,28.14426],[76.00405,28.14772],[76.00749,28.15315],[76.01685,28.15009],[76.02612,28.16465],[76.03001,28.16409],[76.03179,28.16786],[76.04225,28.16548],[76.06025,28.16691],[76.07069,28.16515],[76.06966,28.15578],[76.06537,28.14153],[76.07301,28.13762],[76.07906,28.13685],[76.0851,28.1371],[76.08788,28.13998],[76.095,28.14141],[76.09545,28.15086],[76.07618,28.16855],[76.07634,28.17334],[76.07399,28.17359],[76.07437,28.19013],[76.07212,28.19018],[76.07192,28.19434],[76.05149,28.19629],[76.05094,28.19807],[76.04734,28.19814],[76.04744,28.20278],[76.05241,28.20402],[76.05573,28.21261],[76.056,28.22028],[76.03783,28.22271],[76.03721,28.22575],[76.02777,28.23136],[76.02781,28.23265],[76.01611,28.23695],[76.01653,28.24119],[76.01318,28.24405],[76.01296,28.24604],[76.01609,28.25019],[76.01474,28.25016],[76.01508,28.25253],[76.02264,28.26735],[76.02261,28.27035],[76.02633,28.27503],[76.00299,28.28404],[75.98621,28.29312],[75.98178,28.29953],[75.97793,28.30187],[75.97805,28.30933],[75.97342,28.31491],[75.97246,28.31858],[75.95784,28.31383],[75.95679,28.32675],[75.95225,28.32921],[75.95231,28.33101],[75.95517,28.33113],[75.95502,28.33377],[75.94806,28.33417],[75.9385,28.33734],[75.93297,28.3366],[75.932,28.3429],[75.92854,28.34312],[75.93009,28.34901],[75.92955,28.35914],[75.92738,28.3598],[75.92713,28.3629],[75.92355,28.36335],[75.92238,28.36642],[75.91669,28.36739],[75.91824,28.372],[75.90853,28.37092],[75.9084,28.37258],[75.90483,28.37327],[75.90064,28.37178],[75.90021,28.37806],[75.89844,28.38033],[75.8993,28.38396],[75.89761,28.38382],[75.89518,28.38762],[75.89637,28.39007],[75.89308,28.38969],[75.8904,28.38308],[75.87555,28.38723],[75.86395,28.38522],[75.86401,28.389],[75.85475,28.38982],[75.85407,28.39174],[75.845,28.39168],[75.84428,28.39461],[75.83953,28.39437],[75.83745,28.39737],[75.83741,28.40209],[75.83285,28.40535],[75.82216,28.40298],[75.82286,28.40562],[75.81985,28.40686],[75.81867,28.40991],[75.81535,28.40964],[75.81544,28.40762],[75.80982,28.40583],[75.80602,28.40585],[75.80694,28.40913],[75.79957,28.40715],[75.79948,28.40377],[75.79457,28.39961],[75.7886,28.4012],[75.78857,28.40415],[75.77679,28.40037],[75.77632,28.40418],[75.77204,28.4074],[75.77003,28.41264],[75.76672,28.41423],[75.76971,28.42277],[75.77663,28.42472],[75.77977,28.42751],[75.78083,28.43289],[75.78852,28.43356],[75.79213,28.44459],[75.78829,28.45355],[75.78386,28.45334],[75.78349,28.45537],[75.78055,28.45689],[75.76698,28.4613],[75.73567,28.46884],[75.73568,28.47594],[75.73843,28.47746],[75.73947,28.48476],[75.73124,28.486],[75.72902,28.4907],[75.72556,28.4895],[75.71859,28.49023],[75.70795,28.49371],[75.70198,28.49177],[75.69926,28.4954],[75.69022,28.50053],[75.68419,28.51097],[75.6703,28.51811]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"107","area_level":"District","area_name":"Jodhpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.0894,27.59358],[72.07966,27.59728],[72.04668,27.61831],[71.99773,27.57],[71.97516,27.55916],[71.96757,27.55328],[71.95864,27.55171],[71.9466,27.55952],[71.92422,27.56297],[71.91061,27.54356],[71.89996,27.53609],[71.89664,27.52791],[71.89606,27.52264],[71.89808,27.5194],[71.89644,27.50612],[71.88983,27.49735],[71.89407,27.48135],[71.89251,27.47677],[71.87618,27.48746],[71.84404,27.48017],[71.83314,27.48214],[71.82404,27.47338],[71.81749,27.46396],[71.81441,27.45461],[71.80728,27.4478],[71.80698,27.43799],[71.81867,27.41705],[71.82035,27.40132],[71.81964,27.38495],[71.82113,27.3813],[71.81655,27.36866],[71.814,27.35265],[71.81692,27.34075],[71.82342,27.32937],[71.82244,27.32684],[71.82477,27.32249],[71.83381,27.32116],[71.84161,27.31568],[71.83537,27.30908],[71.8412,27.30467],[71.84584,27.30898],[71.84626,27.3069],[71.86158,27.2933],[71.88315,27.28889],[71.88535,27.29171],[71.88554,27.28258],[71.89339,27.27524],[71.89693,27.26248],[71.90454,27.25446],[71.90157,27.25196],[71.91128,27.23856],[71.91374,27.23037],[71.91004,27.2244],[71.91261,27.22301],[71.91026,27.22028],[71.90747,27.22067],[71.91309,27.21013],[71.9118,27.19242],[71.91281,27.17951],[71.92582,27.17575],[71.93497,27.17848],[71.93511,27.18055],[71.94503,27.18553],[71.9469,27.18438],[71.95151,27.18543],[71.9562,27.17947],[71.95716,27.17219],[71.95415,27.15784],[71.96219,27.14153],[71.97653,27.13989],[71.99211,27.13498],[72.00432,27.12669],[72.03273,27.11628],[72.04229,27.10543],[72.04281,27.10287],[72.03921,27.09261],[72.03712,27.0907],[72.03622,27.07722],[72.03201,27.06883],[72.03218,27.06252],[72.02613,27.05561],[72.0301,27.05482],[72.02934,27.04645],[72.03904,27.04311],[72.04284,27.04389],[72.05139,27.03932],[72.04877,27.03096],[72.04466,27.02964],[72.03931,27.03128],[72.03295,27.02368],[72.03685,27.02395],[72.04244,27.01812],[72.03859,27.01408],[72.04348,26.99756],[72.04187,26.99393],[72.04505,26.97974],[72.04998,26.96816],[72.03799,26.93573],[72.05534,26.92939],[72.06435,26.92013],[72.0791,26.9152],[72.08831,26.90236],[72.10279,26.88738],[72.09665,26.88092],[72.10243,26.86454],[72.10163,26.85923],[72.09431,26.8574],[72.09223,26.85226],[72.08833,26.8505],[72.09003,26.84122],[72.09883,26.83045],[72.09119,26.82141],[72.08471,26.80831],[72.06959,26.806],[72.06307,26.80339],[72.05547,26.804],[72.049,26.79924],[72.04496,26.79069],[72.06001,26.78306],[72.06063,26.77499],[72.05813,26.76267],[72.0639,26.75875],[72.06388,26.75718],[72.08355,26.73719],[72.08687,26.73095],[72.08214,26.72552],[72.08702,26.72247],[72.08637,26.71907],[72.0781,26.71953],[72.07529,26.71522],[72.0696,26.72026],[72.05972,26.71116],[72.05484,26.70499],[72.0564,26.70373],[72.04438,26.68655],[72.04076,26.68887],[72.0398,26.68768],[72.03843,26.67486],[72.05328,26.66418],[72.06427,26.6493],[72.06611,26.64618],[72.05934,26.64165],[72.06783,26.63213],[72.07432,26.62829],[72.08242,26.62644],[72.09024,26.61863],[72.09627,26.60853],[72.09505,26.60497],[72.09791,26.60285],[72.07679,26.57094],[72.07833,26.56951],[72.07319,26.56174],[72.07378,26.5579],[72.06141,26.55009],[72.05248,26.53382],[72.03952,26.52],[72.04127,26.51758],[72.028,26.5],[72.04567,26.48315],[72.05051,26.48133],[72.06129,26.46726],[72.07722,26.45284],[72.07971,26.44127],[72.07935,26.42928],[72.07692,26.41403],[72.07248,26.39962],[72.07651,26.37424],[72.07614,26.36439],[72.07435,26.35391],[72.07152,26.34984],[72.07486,26.34901],[72.07633,26.34439],[72.0806,26.34444],[72.09159,26.33396],[72.09147,26.3292],[72.09693,26.32273],[72.1076,26.31638],[72.114,26.32182],[72.12062,26.31425],[72.14036,26.3258],[72.13446,26.31856],[72.15301,26.31153],[72.15197,26.30976],[72.15788,26.29974],[72.16129,26.2992],[72.16065,26.2967],[72.16273,26.29498],[72.16335,26.28997],[72.15852,26.28263],[72.1593,26.28142],[72.16453,26.28223],[72.16893,26.27854],[72.16695,26.27554],[72.17178,26.2765],[72.17703,26.27205],[72.18341,26.27184],[72.19595,26.26295],[72.20494,26.25539],[72.20917,26.23666],[72.21179,26.23425],[72.243,26.21983],[72.26885,26.19716],[72.28456,26.21503],[72.28781,26.2143],[72.29251,26.219],[72.30148,26.21476],[72.3058,26.2165],[72.32062,26.22679],[72.33409,26.24091],[72.33708,26.23916],[72.34211,26.24456],[72.35192,26.23886],[72.35245,26.23726],[72.3536,26.23852],[72.36258,26.23177],[72.37166,26.22826],[72.3746,26.22483],[72.37752,26.2275],[72.38026,26.22543],[72.38459,26.22894],[72.38813,26.22901],[72.39999,26.23491],[72.40394,26.2349],[72.40454,26.23636],[72.40835,26.23461],[72.41248,26.23621],[72.41214,26.23935],[72.41047,26.2404],[72.41705,26.25095],[72.42589,26.26003],[72.4234,26.2695],[72.41487,26.27629],[72.41723,26.2798],[72.42645,26.28984],[72.43017,26.29193],[72.43278,26.29114],[72.43545,26.29452],[72.43938,26.29529],[72.45286,26.29445],[72.45816,26.30084],[72.46002,26.2997],[72.46179,26.30159],[72.46445,26.29943],[72.4712,26.30344],[72.47141,26.30211],[72.4891,26.29811],[72.4899,26.29627],[72.49262,26.29648],[72.49187,26.29324],[72.49498,26.29043],[72.49866,26.29135],[72.50152,26.29018],[72.50297,26.28536],[72.50207,26.28356],[72.50613,26.27996],[72.51043,26.28114],[72.51527,26.28594],[72.51642,26.2845],[72.51796,26.28605],[72.52308,26.28652],[72.52143,26.28583],[72.5235,26.28363],[72.52545,26.28378],[72.52403,26.27909],[72.53017,26.27754],[72.53217,26.27471],[72.53401,26.27588],[72.53861,26.27181],[72.54274,26.27252],[72.54942,26.26453],[72.55695,26.26733],[72.56068,26.27047],[72.56643,26.26692],[72.57167,26.26992],[72.57218,26.26888],[72.57747,26.27087],[72.57992,26.27006],[72.58744,26.2766],[72.58991,26.27548],[72.59547,26.27844],[72.59971,26.27089],[72.60224,26.27118],[72.61964,26.25],[72.63364,26.22922],[72.63616,26.23094],[72.64014,26.22815],[72.64457,26.22175],[72.64668,26.22218],[72.65408,26.21519],[72.66261,26.20387],[72.66948,26.20301],[72.67288,26.20044],[72.67357,26.19796],[72.67912,26.19814],[72.68087,26.1938],[72.6843,26.19151],[72.68154,26.19041],[72.68536,26.18591],[72.68793,26.18775],[72.69019,26.18524],[72.68843,26.18199],[72.68529,26.18126],[72.67908,26.17273],[72.68338,26.16688],[72.68155,26.16535],[72.68377,26.15944],[72.68228,26.15531],[72.68931,26.14151],[72.68516,26.13807],[72.68851,26.13506],[72.69354,26.12384],[72.6956,26.12464],[72.69797,26.12326],[72.69695,26.12018],[72.69897,26.11679],[72.69318,26.11365],[72.69713,26.10663],[72.68368,26.09616],[72.68503,26.08421],[72.6835,26.08054],[72.67639,26.07432],[72.67733,26.0722],[72.67517,26.06951],[72.67963,26.06763],[72.68623,26.06927],[72.68912,26.06492],[72.68974,26.06227],[72.68532,26.05966],[72.68449,26.05402],[72.689,26.04136],[72.69078,26.04199],[72.69375,26.03739],[72.68351,26.03037],[72.66181,26.02127],[72.65277,26.01918],[72.65248,26.0177],[72.64937,26.01672],[72.64898,26.01804],[72.64791,26.01347],[72.64571,26.01213],[72.63846,26.01229],[72.61453,26.00349],[72.6143,26.00139],[72.61095,26.00037],[72.62031,25.9871],[72.61938,25.97884],[72.62055,25.97452],[72.62309,25.97097],[72.62772,25.96951],[72.63183,25.96485],[72.63576,25.96473],[72.64199,25.96008],[72.64361,25.95625],[72.64714,25.95889],[72.65275,25.95928],[72.65543,25.95692],[72.67187,25.95221],[72.67486,25.94727],[72.67985,25.94672],[72.68133,25.94124],[72.68299,25.94022],[72.68807,25.94137],[72.69174,25.93545],[72.69192,25.93198],[72.70521,25.9355],[72.71235,25.92813],[72.7163,25.92547],[72.71752,25.92632],[72.72178,25.9206],[72.72482,25.91883],[72.72718,25.92052],[72.73103,25.91569],[72.73111,25.91203],[72.7327,25.91257],[72.73444,25.9095],[72.73734,25.9111],[72.73817,25.90489],[72.73917,25.90333],[72.74148,25.90378],[72.74201,25.90036],[72.7463,25.90036],[72.74912,25.89761],[72.75304,25.89694],[72.7515,25.88548],[72.75352,25.88061],[72.78085,25.88411],[72.79632,25.86158],[72.80442,25.85478],[72.808,25.85588],[72.80966,25.85268],[72.82484,25.86229],[72.83019,25.86413],[72.82998,25.86165],[72.83156,25.86127],[72.83946,25.86612],[72.84258,25.87711],[72.84166,25.88173],[72.84298,25.88665],[72.84169,25.88958],[72.8457,25.89145],[72.84584,25.89353],[72.8539,25.8925],[72.8554,25.89728],[72.85918,25.89899],[72.86748,25.89887],[72.86916,25.89029],[72.87295,25.8888],[72.87882,25.89263],[72.88516,25.89255],[72.88926,25.88993],[72.91629,25.89238],[72.93248,25.90118],[72.9374,25.90236],[72.95858,25.90025],[72.95981,25.90632],[72.96242,25.90676],[72.96507,25.91154],[72.9741,25.91981],[72.9727,25.93356],[72.98136,25.93799],[72.99273,25.93975],[72.99876,25.9491],[72.99624,25.95435],[73.02511,25.95315],[73.04283,25.96458],[73.0453,25.9714],[73.04748,25.97137],[73.05076,25.97624],[73.05055,25.98105],[73.0523,25.98351],[73.05099,25.99018],[73.05256,25.99185],[73.05328,26.0],[73.04886,26.01145],[73.05255,26.01449],[73.05924,26.01457],[73.07107,26.01861],[73.08355,26.01871],[73.09819,26.02477],[73.09968,26.02736],[73.11428,26.02867],[73.12032,26.03232],[73.12155,26.0365],[73.12628,26.04177],[73.13557,26.04586],[73.14227,26.04489],[73.1524,26.0366],[73.16179,26.0323],[73.18548,26.03358],[73.17738,26.05345],[73.18681,26.06039],[73.1854,26.06233],[73.19406,26.06901],[73.19186,26.08197],[73.19708,26.0814],[73.19882,26.07692],[73.20247,26.07657],[73.20348,26.07329],[73.20824,26.075],[73.20935,26.07239],[73.21882,26.0761],[73.2216,26.0759],[73.22343,26.0718],[73.23124,26.07751],[73.23186,26.08094],[73.23972,26.08291],[73.24071,26.07876],[73.24718,26.06905],[73.25837,26.06987],[73.25952,26.06734],[73.25827,26.06585],[73.25,26.0651],[73.2524,26.05828],[73.25661,26.05413],[73.26384,26.05741],[73.26739,26.05665],[73.2745,26.04943],[73.27209,26.04507],[73.27846,26.03881],[73.29468,26.03155],[73.30429,26.0317],[73.30756,26.02574],[73.30789,26.01429],[73.31751,26.01035],[73.31994,26.01106],[73.32294,26.01377],[73.31745,26.02484],[73.31584,26.03615],[73.32709,26.042],[73.32616,26.04611],[73.32919,26.05025],[73.32871,26.05364],[73.34673,26.06322],[73.3513,26.06301],[73.35521,26.06036],[73.3585,26.06202],[73.35712,26.07505],[73.36393,26.07837],[73.3623,26.08105],[73.35698,26.07928],[73.3564,26.08238],[73.35208,26.08213],[73.35214,26.08407],[73.34852,26.08761],[73.34135,26.11562],[73.36045,26.13138],[73.3665,26.13479],[73.37057,26.13323],[73.37246,26.13638],[73.37562,26.13742],[73.37293,26.1481],[73.37794,26.14942],[73.37521,26.15357],[73.38702,26.15262],[73.38918,26.15768],[73.40254,26.16057],[73.40533,26.13748],[73.40455,26.1335],[73.40938,26.12406],[73.41589,26.12725],[73.42844,26.12791],[73.42808,26.12926],[73.43145,26.13017],[73.43162,26.12705],[73.43758,26.12492],[73.44512,26.11034],[73.44802,26.11061],[73.44906,26.10742],[73.45352,26.10655],[73.46405,26.08355],[73.47612,26.08377],[73.4848,26.07987],[73.48639,26.08375],[73.49139,26.08018],[73.49705,26.08424],[73.50535,26.07228],[73.50762,26.06584],[73.51453,26.06648],[73.52556,26.06141],[73.52756,26.06167],[73.52622,26.06992],[73.52797,26.07327],[73.52758,26.07757],[73.52429,26.08695],[73.52424,26.09165],[73.52219,26.09138],[73.52165,26.10006],[73.53394,26.10292],[73.53456,26.10185],[73.54201,26.10636],[73.55132,26.10625],[73.5582,26.10309],[73.56293,26.10722],[73.56807,26.10757],[73.56968,26.11057],[73.57864,26.1121],[73.57798,26.11967],[73.5733,26.12617],[73.57496,26.12797],[73.58701,26.12296],[73.59955,26.12826],[73.60192,26.12465],[73.60558,26.12571],[73.60536,26.1284],[73.61223,26.12856],[73.61299,26.1336],[73.61798,26.13428],[73.62428,26.1432],[73.6283,26.14475],[73.64709,26.12891],[73.64847,26.12528],[73.65248,26.12254],[73.65103,26.11891],[73.654,26.1177],[73.65026,26.11225],[73.6488,26.10624],[73.64994,26.10199],[73.64902,26.09284],[73.64645,26.08876],[73.64812,26.07732],[73.65316,26.07678],[73.65294,26.07071],[73.65605,26.07061],[73.65593,26.06938],[73.66805,26.06689],[73.6747,26.06752],[73.6773,26.06511],[73.67753,26.0674],[73.6867,26.06439],[73.69439,26.06545],[73.70859,26.09048],[73.70835,26.0945],[73.73212,26.11073],[73.74104,26.11049],[73.74094,26.10464],[73.74541,26.10392],[73.7487,26.10136],[73.751,26.09853],[73.75277,26.09047],[73.75776,26.09015],[73.758,26.0915],[73.76058,26.09155],[73.75986,26.09419],[73.76751,26.09609],[73.78359,26.09613],[73.8001,26.09206],[73.81127,26.11065],[73.80889,26.11161],[73.80992,26.114],[73.80581,26.11804],[73.80548,26.12766],[73.80389,26.12747],[73.80296,26.131],[73.79906,26.1337],[73.79439,26.14349],[73.79157,26.1437],[73.79173,26.1466],[73.78367,26.14884],[73.78502,26.15942],[73.78366,26.16305],[73.78748,26.16346],[73.79011,26.17279],[73.79108,26.1855],[73.79854,26.20083],[73.80411,26.20013],[73.79848,26.21573],[73.79285,26.22491],[73.7915,26.22401],[73.78669,26.23364],[73.79032,26.23553],[73.7893,26.23972],[73.79077,26.24736],[73.80785,26.26348],[73.80432,26.27522],[73.81019,26.28305],[73.8105,26.28613],[73.80792,26.29211],[73.80814,26.29757],[73.79981,26.29807],[73.80344,26.30931],[73.80172,26.3115],[73.79649,26.31306],[73.79542,26.31046],[73.79396,26.3109],[73.79527,26.31355],[73.78609,26.31813],[73.79607,26.31797],[73.80152,26.31588],[73.80346,26.31112],[73.80673,26.31086],[73.81008,26.31694],[73.80739,26.32352],[73.8113,26.33438],[73.80978,26.33799],[73.80686,26.33799],[73.81139,26.34641],[73.81119,26.35606],[73.82313,26.36302],[73.82617,26.36276],[73.83254,26.3695],[73.8436,26.3708],[73.84783,26.37542],[73.8486,26.37723],[73.84658,26.37871],[73.83899,26.38176],[73.8436,26.40524],[73.86215,26.41446],[73.86355,26.41606],[73.86194,26.41933],[73.86527,26.4205],[73.86797,26.42427],[73.86716,26.42653],[73.87007,26.42913],[73.86748,26.43574],[73.86474,26.4362],[73.86304,26.43946],[73.861,26.43887],[73.8571,26.44565],[73.85641,26.45472],[73.85461,26.45779],[73.85461,26.46644],[73.84921,26.46678],[73.84862,26.47149],[73.83535,26.47398],[73.83448,26.48351],[73.83031,26.48301],[73.82803,26.48782],[73.81556,26.4941],[73.81744,26.49841],[73.81588,26.49926],[73.8193,26.5023],[73.81727,26.5023],[73.81697,26.50425],[73.80856,26.50309],[73.79658,26.5046],[73.78914,26.50882],[73.7878,26.5111],[73.78282,26.5123],[73.7791,26.52222],[73.77489,26.5237],[73.76462,26.5314],[73.76777,26.53325],[73.76741,26.53595],[73.76273,26.5337],[73.7566,26.53898],[73.73052,26.54004],[73.72082,26.53906],[73.72207,26.54632],[73.71969,26.55265],[73.7127,26.55889],[73.70552,26.57398],[73.70046,26.57335],[73.70159,26.5797],[73.70089,26.58399],[73.69846,26.58536],[73.69748,26.59324],[73.70081,26.60155],[73.69732,26.60673],[73.69106,26.60887],[73.6937,26.61156],[73.69241,26.61726],[73.68866,26.61759],[73.6913,26.62305],[73.68928,26.62485],[73.68655,26.63258],[73.6823,26.6332],[73.68192,26.63451],[73.68395,26.63545],[73.68223,26.64222],[73.67916,26.64241],[73.67858,26.6469],[73.66338,26.64694],[73.65977,26.65016],[73.67013,26.66688],[73.67034,26.6709],[73.67285,26.67213],[73.67304,26.68099],[73.66082,26.68755],[73.65578,26.6936],[73.65545,26.70276],[73.65214,26.71477],[73.65406,26.71584],[73.65452,26.71912],[73.65873,26.72185],[73.66081,26.73086],[73.66224,26.73011],[73.66809,26.74191],[73.66738,26.74334],[73.67294,26.74904],[73.67223,26.7526],[73.67776,26.75428],[73.67882,26.75741],[73.67302,26.76092],[73.666,26.77712],[73.6629,26.77745],[73.66212,26.78577],[73.66042,26.78882],[73.66071,26.79369],[73.6629,26.79659],[73.65715,26.80752],[73.65119,26.80497],[73.63564,26.80674],[73.63441,26.82317],[73.63221,26.82474],[73.63048,26.82365],[73.63165,26.82976],[73.62942,26.83361],[73.63104,26.83629],[73.63138,26.84235],[73.63006,26.84434],[73.62466,26.84348],[73.62345,26.84561],[73.61976,26.84591],[73.61909,26.84231],[73.61615,26.83902],[73.61187,26.84186],[73.61047,26.8448],[73.6095,26.84345],[73.60399,26.84632],[73.60462,26.85068],[73.59643,26.85223],[73.59527,26.85455],[73.59636,26.85674],[73.59316,26.85779],[73.59324,26.86392],[73.58089,26.86098],[73.57852,26.86283],[73.5789,26.86466],[73.57719,26.86487],[73.56477,26.8615],[73.5598,26.86249],[73.55385,26.86126],[73.55408,26.85943],[73.53911,26.85912],[73.5335,26.85691],[73.51515,26.88042],[73.50546,26.88653],[73.49821,26.88838],[73.48227,26.88328],[73.47378,26.87791],[73.47292,26.87969],[73.46114,26.87546],[73.45868,26.87705],[73.44785,26.87322],[73.44182,26.88576],[73.43032,26.88825],[73.41148,26.88564],[73.40418,26.88385],[73.39904,26.87536],[73.39138,26.87551],[73.38703,26.86862],[73.38387,26.86741],[73.377,26.86641],[73.37323,26.87037],[73.37094,26.86851],[73.35412,26.87035],[73.34945,26.86382],[73.34371,26.86232],[73.33769,26.85791],[73.32476,26.85406],[73.3236,26.85631],[73.31652,26.85567],[73.31411,26.86153],[73.31156,26.86103],[73.31109,26.86374],[73.30417,26.86291],[73.30225,26.86486],[73.30073,26.86439],[73.29972,26.86804],[73.29309,26.86832],[73.2913,26.87355],[73.28445,26.87162],[73.28511,26.86929],[73.27824,26.86592],[73.27893,26.86359],[73.27604,26.86177],[73.2663,26.86332],[73.26632,26.86179],[73.26469,26.86173],[73.26464,26.86322],[73.25692,26.86195],[73.25347,26.86279],[73.2521,26.86478],[73.24303,26.86229],[73.24235,26.8633],[73.2381,26.86088],[73.23465,26.86902],[73.23065,26.86647],[73.22862,26.86885],[73.22167,26.86664],[73.21818,26.86787],[73.21502,26.86567],[73.21043,26.87023],[73.20421,26.86884],[73.20076,26.87162],[73.20268,26.87437],[73.20263,26.87974],[73.20027,26.87953],[73.19776,26.88204],[73.19194,26.88074],[73.19013,26.88253],[73.18667,26.88179],[73.18405,26.88318],[73.17605,26.90336],[73.17739,26.90461],[73.17609,26.90782],[73.178,26.9122],[73.17526,26.92045],[73.17574,26.92522],[73.16955,26.93296],[73.16675,26.93216],[73.16418,26.9279],[73.15392,26.92439],[73.14973,26.92732],[73.14746,26.93198],[73.14386,26.93247],[73.12916,26.94231],[73.12716,26.94318],[73.12191,26.94151],[73.11883,26.95167],[73.10975,26.96465],[73.10807,26.9696],[73.1079,26.98009],[73.11751,26.98555],[73.11999,26.9899],[73.11829,26.99768],[73.11164,27.00092],[73.10884,27.00597],[73.10801,27.01265],[73.11,27.01579],[73.1079,27.02054],[73.11176,27.02715],[73.12256,27.035],[73.12691,27.04055],[73.13402,27.04461],[73.1383,27.04862],[73.13818,27.05022],[73.13124,27.05751],[73.13348,27.05974],[73.12709,27.07182],[73.12472,27.08258],[73.12043,27.09105],[73.11368,27.09624],[73.11076,27.1014],[73.10274,27.10684],[73.09874,27.1176],[73.10779,27.12449],[73.11332,27.13238],[73.11429,27.1385],[73.11667,27.14245],[73.11582,27.14689],[73.11688,27.14737],[73.11316,27.15537],[73.11526,27.15731],[73.11536,27.16118],[73.11308,27.16424],[73.11515,27.1702],[73.11037,27.18044],[73.11157,27.18406],[73.10643,27.19823],[73.10813,27.20109],[73.10357,27.20578],[73.10481,27.21194],[73.09983,27.21787],[73.0998,27.22177],[73.10139,27.22295],[73.09773,27.22849],[73.09472,27.22815],[73.08573,27.2399],[73.10335,27.25193],[73.1024,27.2535],[73.10985,27.25683],[73.10834,27.25953],[73.11157,27.2613],[73.11146,27.26466],[73.11358,27.26777],[73.11237,27.27049],[73.11894,27.27535],[73.11532,27.27806],[73.11861,27.28659],[73.12386,27.2923],[73.13193,27.29729],[73.12724,27.3033],[73.13405,27.30953],[73.13055,27.31664],[73.13254,27.32024],[73.13045,27.3251],[73.12594,27.35361],[73.12959,27.35726],[73.12564,27.35855],[73.12998,27.3651],[73.12935,27.36692],[73.12568,27.36799],[73.12484,27.37294],[73.12675,27.37631],[73.12127,27.38343],[73.1253,27.38847],[73.12381,27.39321],[73.12585,27.39545],[73.12454,27.39767],[73.12509,27.4013],[73.11952,27.40351],[73.11843,27.4063],[73.11332,27.40868],[73.10974,27.41834],[73.09134,27.42814],[73.08895,27.42726],[73.08752,27.42848],[73.08359,27.42556],[73.08161,27.42838],[73.07507,27.42946],[73.07202,27.42945],[73.06674,27.42516],[73.06367,27.4263],[73.0605,27.42414],[73.05686,27.42606],[73.0534,27.42345],[73.04747,27.42412],[73.03832,27.42073],[73.03375,27.42156],[73.01494,27.40973],[73.00608,27.39945],[73.0,27.39654],[72.9892,27.38623],[72.97953,27.38182],[72.97377,27.38484],[72.97355,27.38754],[72.97131,27.38947],[72.96664,27.38665],[72.96395,27.38869],[72.96188,27.39335],[72.95654,27.39507],[72.95103,27.40233],[72.94225,27.40319],[72.94124,27.40821],[72.94284,27.41903],[72.94117,27.4309],[72.93702,27.44439],[72.93199,27.44859],[72.91383,27.43386],[72.89523,27.41505],[72.88893,27.42549],[72.89071,27.43369],[72.88794,27.4509],[72.87582,27.44767],[72.87161,27.4446],[72.86197,27.44435],[72.8598,27.44592],[72.85329,27.44402],[72.85214,27.44553],[72.85675,27.44928],[72.86507,27.46266],[72.87526,27.47324],[72.87361,27.47655],[72.87049,27.47834],[72.85678,27.47949],[72.84962,27.47338],[72.84805,27.47438],[72.82805,27.47006],[72.82589,27.46834],[72.81771,27.47798],[72.81589,27.48882],[72.8194,27.49092],[72.81947,27.49615],[72.82164,27.49812],[72.81795,27.5],[72.82035,27.5074],[72.81331,27.51798],[72.81573,27.52132],[72.81708,27.52028],[72.8208,27.52337],[72.82365,27.52027],[72.82603,27.52154],[72.83656,27.53174],[72.84131,27.54088],[72.84056,27.55288],[72.84302,27.55679],[72.83925,27.57185],[72.82638,27.58503],[72.82207,27.58245],[72.823,27.58096],[72.79956,27.57146],[72.7882,27.57094],[72.78198,27.56727],[72.78075,27.57007],[72.77709,27.56748],[72.76685,27.56499],[72.77405,27.54809],[72.77414,27.54028],[72.77325,27.5359],[72.76155,27.52524],[72.74686,27.53751],[72.72681,27.55039],[72.72361,27.55717],[72.72164,27.56925],[72.71195,27.5897],[72.70673,27.58785],[72.70378,27.59419],[72.69028,27.60535],[72.66891,27.57387],[72.66716,27.56532],[72.66668,27.54624],[72.6557,27.53641],[72.649,27.54446],[72.64703,27.54344],[72.63827,27.56319],[72.62061,27.5732],[72.61286,27.58671],[72.61742,27.59298],[72.60434,27.60139],[72.5989,27.60798],[72.59142,27.60321],[72.5866,27.61079],[72.57727,27.60898],[72.56353,27.60887],[72.55411,27.62028],[72.54185,27.61641],[72.50907,27.59069],[72.50227,27.58993],[72.49708,27.58645],[72.4954,27.59028],[72.49087,27.58904],[72.48289,27.59042],[72.47161,27.58967],[72.46301,27.59417],[72.46056,27.5913],[72.44647,27.589],[72.43853,27.56904],[72.43497,27.56596],[72.41374,27.55666],[72.41319,27.55457],[72.40329,27.54681],[72.39637,27.55383],[72.38174,27.5469],[72.36558,27.53063],[72.36303,27.52204],[72.3593,27.49388],[72.35688,27.49264],[72.34157,27.5082],[72.32395,27.51715],[72.30038,27.5],[72.29813,27.49382],[72.2933,27.49075],[72.2887,27.47705],[72.26478,27.45807],[72.25211,27.46247],[72.24223,27.47593],[72.25059,27.49279],[72.24651,27.49879],[72.24672,27.51214],[72.27605,27.51732],[72.28441,27.52543],[72.28281,27.52919],[72.28803,27.53102],[72.29094,27.54749],[72.28043,27.55347],[72.26297,27.54801],[72.24839,27.53651],[72.24374,27.5243],[72.24311,27.50276],[72.24427,27.49488],[72.2466,27.4904],[72.24357,27.48374],[72.23895,27.48098],[72.23501,27.4873],[72.22509,27.49357],[72.21653,27.4943],[72.21026,27.49266],[72.20958,27.48028],[72.20243,27.47994],[72.20289,27.47581],[72.18409,27.46516],[72.1753,27.46226],[72.15711,27.47681],[72.15875,27.47887],[72.15729,27.48557],[72.15467,27.48912],[72.16021,27.49595],[72.15552,27.50101],[72.15281,27.4995],[72.14622,27.51645],[72.13762,27.52253],[72.14358,27.53158],[72.14433,27.53598],[72.12599,27.54666],[72.11675,27.54862],[72.11423,27.54782],[72.10453,27.56081],[72.11732,27.57239],[72.12164,27.57173],[72.12811,27.57873],[72.12818,27.58112],[72.12217,27.58534],[72.11535,27.58337],[72.11596,27.58886],[72.10961,27.5937],[72.09485,27.59174],[72.0894,27.59358]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"108","area_level":"District","area_name":"Karauli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.83433,26.99811],[76.82554,26.99967],[76.81661,26.99762],[76.81507,26.99912],[76.81014,26.99697],[76.80075,26.98596],[76.79715,26.98442],[76.79606,26.97135],[76.79807,26.96415],[76.79323,26.93334],[76.78228,26.91592],[76.77268,26.91235],[76.76667,26.90786],[76.76813,26.90298],[76.77551,26.89399],[76.77005,26.88926],[76.75373,26.8768],[76.71467,26.86297],[76.71229,26.85872],[76.68476,26.8442],[76.67066,26.83437],[76.64253,26.80815],[76.63,26.80155],[76.62222,26.7925],[76.61565,26.79168],[76.61714,26.78846],[76.61348,26.78214],[76.60427,26.78044],[76.60238,26.77803],[76.59431,26.77844],[76.5747,26.78809],[76.57425,26.78044],[76.56968,26.77124],[76.55432,26.77774],[76.54243,26.77229],[76.54161,26.77852],[76.5368,26.78192],[76.51021,26.7636],[76.49885,26.75189],[76.4989,26.75021],[76.48339,26.73756],[76.48009,26.733],[76.48025,26.72449],[76.47584,26.71822],[76.47386,26.71768],[76.48167,26.71308],[76.48837,26.71147],[76.4902,26.70501],[76.49788,26.69985],[76.49852,26.70194],[76.50094,26.70253],[76.50677,26.70003],[76.51202,26.69976],[76.52368,26.6902],[76.53317,26.68671],[76.55729,26.66599],[76.56764,26.6618],[76.58783,26.64939],[76.59643,26.65805],[76.60219,26.66089],[76.60381,26.66439],[76.6156,26.65502],[76.61705,26.6567],[76.6204,26.65411],[76.61434,26.64303],[76.6222,26.64088],[76.62481,26.63858],[76.64243,26.61752],[76.63964,26.60992],[76.65367,26.60721],[76.66953,26.60901],[76.67039,26.60158],[76.67581,26.60062],[76.67655,26.59838],[76.68493,26.59328],[76.69433,26.57976],[76.70096,26.57859],[76.70804,26.57459],[76.72004,26.57386],[76.7249,26.57182],[76.73195,26.57116],[76.74249,26.57419],[76.74735,26.57324],[76.74693,26.57124],[76.75639,26.56637],[76.75936,26.5687],[76.76159,26.56759],[76.77935,26.58258],[76.77952,26.59843],[76.79331,26.59735],[76.79762,26.60474],[76.82259,26.63137],[76.83146,26.64561],[76.83241,26.65161],[76.85724,26.64694],[76.85966,26.65426],[76.87048,26.65992],[76.87128,26.66932],[76.87831,26.668],[76.88059,26.67073],[76.89043,26.66909],[76.8937,26.67598],[76.90137,26.67731],[76.91762,26.68346],[76.92876,26.67644],[76.93722,26.67549],[76.94299,26.67158],[76.95094,26.67131],[76.95254,26.66905],[76.9538,26.64967],[76.95648,26.6463],[76.95427,26.64272],[76.95813,26.6409],[76.95917,26.63545],[76.96166,26.63494],[76.96025,26.6255],[76.96917,26.62422],[76.97012,26.62095],[76.97536,26.61822],[76.97612,26.61385],[76.97991,26.61159],[76.97799,26.60594],[76.98132,26.6039],[76.98129,26.60209],[76.97725,26.60174],[76.97732,26.59694],[76.9631,26.59012],[76.95016,26.5874],[76.93956,26.58939],[76.93575,26.57485],[76.93648,26.57343],[76.95304,26.56863],[76.96833,26.57151],[76.96992,26.5612],[76.97249,26.5587],[76.97028,26.55121],[76.96296,26.5492],[76.95503,26.54335],[76.94928,26.54152],[76.94154,26.54192],[76.94159,26.54564],[76.94023,26.5467],[76.92938,26.55166],[76.92755,26.551],[76.91374,26.55837],[76.91265,26.55728],[76.90969,26.55818],[76.90522,26.52298],[76.88815,26.51835],[76.88206,26.51401],[76.87694,26.51349],[76.87375,26.5097],[76.86836,26.50829],[76.86563,26.5016],[76.85849,26.50192],[76.84306,26.48743],[76.82837,26.47714],[76.81274,26.48493],[76.80243,26.48286],[76.78618,26.47001],[76.7801,26.46898],[76.77274,26.46032],[76.78355,26.45019],[76.77927,26.4465],[76.77622,26.44015],[76.76429,26.43704],[76.76061,26.43324],[76.75317,26.42939],[76.7539,26.42805],[76.75,26.43],[76.74679,26.42778],[76.7414,26.42854],[76.73273,26.42196],[76.73021,26.41536],[76.71935,26.41493],[76.71341,26.41132],[76.7106,26.40659],[76.69935,26.40066],[76.69362,26.39584],[76.68628,26.39424],[76.67836,26.38428],[76.68602,26.37007],[76.68848,26.36866],[76.67547,26.35133],[76.67076,26.35029],[76.67027,26.34889],[76.66285,26.35172],[76.65908,26.34892],[76.64858,26.34752],[76.63784,26.34146],[76.62835,26.32976],[76.63221,26.32096],[76.6312,26.31688],[76.62341,26.31544],[76.62469,26.32312],[76.61418,26.32933],[76.60692,26.32522],[76.60747,26.331],[76.60229,26.33581],[76.59554,26.33283],[76.59522,26.32878],[76.59226,26.32647],[76.58855,26.32635],[76.58373,26.32209],[76.58601,26.31813],[76.58451,26.31495],[76.58034,26.31483],[76.56845,26.31899],[76.56575,26.31828],[76.56675,26.30878],[76.56425,26.30471],[76.56714,26.30446],[76.56856,26.2993],[76.57252,26.29626],[76.56707,26.29052],[76.5696,26.28364],[76.55738,26.27839],[76.55138,26.26672],[76.552,26.2644],[76.55573,26.26228],[76.57027,26.2684],[76.57866,26.26857],[76.58124,26.2705],[76.5865,26.27015],[76.58967,26.26788],[76.5911,26.26937],[76.59265,26.26862],[76.59241,26.26625],[76.59657,26.26638],[76.59783,26.27364],[76.60484,26.27242],[76.60316,26.266],[76.60379,26.26114],[76.6073,26.25995],[76.6085,26.25789],[76.60671,26.25132],[76.60359,26.24475],[76.59984,26.24153],[76.58315,26.23298],[76.5819,26.22876],[76.58761,26.22291],[76.57803,26.21536],[76.60326,26.20227],[76.62882,26.18446],[76.63414,26.18577],[76.65601,26.18335],[76.66073,26.17645],[76.66325,26.17517],[76.66432,26.17087],[76.66818,26.16652],[76.67524,26.16678],[76.68481,26.17054],[76.68435,26.17361],[76.68966,26.18119],[76.69556,26.17975],[76.69981,26.18192],[76.70359,26.18049],[76.7033,26.17737],[76.70936,26.17643],[76.7115,26.17167],[76.71842,26.16997],[76.72655,26.16161],[76.72454,26.15523],[76.73212,26.15534],[76.73487,26.15247],[76.73727,26.15579],[76.74032,26.15531],[76.74073,26.15261],[76.74378,26.15067],[76.75437,26.13698],[76.75848,26.12891],[76.76383,26.12358],[76.76358,26.12105],[76.76741,26.11512],[76.77158,26.11078],[76.77399,26.11018],[76.77737,26.10623],[76.79065,26.10624],[76.79488,26.10255],[76.80098,26.09582],[76.8023,26.09088],[76.80609,26.08546],[76.80715,26.08207],[76.80563,26.08019],[76.80908,26.07588],[76.81036,26.06937],[76.81358,26.0704],[76.82035,26.06935],[76.8275,26.07263],[76.82997,26.06788],[76.83446,26.06629],[76.84183,26.05479],[76.84891,26.05038],[76.85114,26.04298],[76.84734,26.04054],[76.8473,26.03746],[76.85142,26.0321],[76.85707,26.03482],[76.86631,26.03436],[76.87581,26.04315],[76.88485,26.04804],[76.88973,26.06266],[76.89416,26.06724],[76.89772,26.07425],[76.90025,26.08708],[76.89978,26.0925],[76.91811,26.09876],[76.93653,26.10177],[76.94077,26.10053],[76.94766,26.10274],[76.97748,26.12486],[76.98712,26.12804],[76.99761,26.12907],[77.00215,26.13399],[77.00288,26.138],[77.00156,26.14246],[77.00631,26.15102],[77.01525,26.15704],[77.02399,26.16733],[77.03162,26.17261],[77.05448,26.17957],[77.08226,26.17906],[77.09675,26.18324],[77.10093,26.18656],[77.10596,26.19614],[77.11198,26.20235],[77.11291,26.21398],[77.11643,26.22058],[77.13472,26.23295],[77.14172,26.23437],[77.15254,26.23189],[77.16619,26.23226],[77.17013,26.23349],[77.17186,26.23823],[77.17636,26.23889],[77.19349,26.23141],[77.20389,26.22987],[77.21284,26.23377],[77.2168,26.24004],[77.23089,26.24598],[77.25177,26.25978],[77.27105,26.26758],[77.27898,26.27596],[77.29843,26.29102],[77.3166,26.31147],[77.31762,26.31746],[77.31464,26.31872],[77.32139,26.334],[77.32897,26.34255],[77.33059,26.34387],[77.33525,26.34134],[77.34212,26.35181],[77.35483,26.3545],[77.36685,26.36345],[77.37569,26.36554],[77.37583,26.36882],[77.37253,26.36984],[77.37143,26.37471],[77.37015,26.37406],[77.36944,26.37556],[77.37003,26.37748],[77.36522,26.37971],[77.36011,26.3774],[77.35655,26.37882],[77.35509,26.39708],[77.3461,26.39396],[77.34166,26.39628],[77.33905,26.39598],[77.34526,26.40728],[77.34619,26.41416],[77.34398,26.42384],[77.32922,26.42585],[77.33171,26.43206],[77.31716,26.43581],[77.31555,26.43884],[77.30651,26.43911],[77.29512,26.43495],[77.29324,26.43492],[77.2894,26.43849],[77.2859,26.4367],[77.28186,26.43714],[77.27485,26.43117],[77.2701,26.43226],[77.26408,26.43078],[77.26155,26.42805],[77.25533,26.4314],[77.2548,26.43607],[77.25,26.44319],[77.25092,26.45843],[77.24747,26.4596],[77.24929,26.46255],[77.24757,26.46502],[77.25064,26.46816],[77.24455,26.47016],[77.24364,26.47416],[77.23946,26.46988],[77.2378,26.47041],[77.24232,26.48147],[77.23811,26.48712],[77.23881,26.49304],[77.23439,26.49512],[77.2389,26.49834],[77.23875,26.50122],[77.23753,26.50461],[77.23546,26.50564],[77.23671,26.50788],[77.23562,26.51008],[77.23359,26.50999],[77.23371,26.51253],[77.23058,26.51414],[77.22981,26.51683],[77.23122,26.51958],[77.22938,26.52049],[77.22727,26.52875],[77.23822,26.54057],[77.24147,26.54744],[77.24819,26.54819],[77.25232,26.55131],[77.25547,26.55159],[77.25533,26.5547],[77.26696,26.55077],[77.26922,26.55328],[77.27766,26.5543],[77.28192,26.55688],[77.2893,26.55461],[77.28889,26.56095],[77.29433,26.56639],[77.31254,26.57711],[77.31496,26.58014],[77.33291,26.58676],[77.33546,26.58642],[77.34613,26.59242],[77.35526,26.59184],[77.36922,26.60615],[77.36908,26.61195],[77.37396,26.61341],[77.37283,26.61499],[77.37599,26.61643],[77.37614,26.61855],[77.38282,26.61574],[77.38946,26.61562],[77.39492,26.63262],[77.3889,26.63528],[77.37524,26.63462],[77.35957,26.63734],[77.36,26.6345],[77.35754,26.63183],[77.35502,26.63654],[77.35099,26.63591],[77.34956,26.63975],[77.34592,26.6415],[77.35146,26.65586],[77.35699,26.65404],[77.36499,26.65703],[77.36762,26.65706],[77.36932,26.6546],[77.37208,26.65631],[77.36324,26.66831],[77.35831,26.67905],[77.34601,26.69138],[77.34598,26.71275],[77.35069,26.73526],[77.34658,26.74666],[77.34806,26.75354],[77.35051,26.75584],[77.3403,26.76292],[77.33751,26.76654],[77.34746,26.77487],[77.35253,26.78598],[77.35008,26.78746],[77.35805,26.79633],[77.35098,26.80509],[77.34574,26.80202],[77.33666,26.80797],[77.33314,26.80499],[77.33332,26.80033],[77.32965,26.80105],[77.32168,26.79795],[77.31692,26.79502],[77.31393,26.78865],[77.30624,26.78549],[77.29946,26.7802],[77.29323,26.78028],[77.28262,26.794],[77.28133,26.79827],[77.27696,26.80107],[77.27764,26.80419],[77.27433,26.80388],[77.27292,26.80745],[77.26549,26.81444],[77.25563,26.82086],[77.22684,26.79221],[77.22386,26.79177],[77.2054,26.77965],[77.19872,26.78587],[77.19943,26.78746],[77.19646,26.79219],[77.19614,26.7968],[77.20866,26.81146],[77.18664,26.82252],[77.17131,26.82419],[77.17186,26.82919],[77.16738,26.83331],[77.1599,26.82833],[77.15742,26.82333],[77.15282,26.83023],[77.13718,26.8348],[77.13494,26.83649],[77.13353,26.84179],[77.11621,26.85411],[77.11606,26.85738],[77.11056,26.86662],[77.10351,26.87418],[77.10162,26.87303],[77.09759,26.86264],[77.07539,26.85834],[77.05992,26.86585],[77.04451,26.86837],[77.01079,26.865],[76.99944,26.87116],[76.9868,26.86108],[76.98616,26.85769],[76.96283,26.86142],[76.95366,26.86791],[76.9527,26.87298],[76.9579,26.8876],[76.95637,26.89165],[76.9574,26.89926],[76.95356,26.90789],[76.95271,26.91518],[76.94169,26.93025],[76.92394,26.94665],[76.91756,26.95056],[76.9127,26.9606],[76.90215,26.96864],[76.90198,26.97163],[76.8822,26.97496],[76.88015,26.98313],[76.8594,26.99414],[76.83952,26.99526],[76.83433,26.99811]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"109","area_level":"District","area_name":"Kota","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.56601,25.84812],[76.55234,25.84392],[76.54712,25.83837],[76.53858,25.83998],[76.53103,25.84349],[76.50834,25.83866],[76.49194,25.84552],[76.4784,25.84162],[76.47537,25.83851],[76.47325,25.83266],[76.47817,25.8217],[76.47841,25.81591],[76.45009,25.78153],[76.44157,25.77355],[76.43179,25.7693],[76.40642,25.76898],[76.40113,25.76516],[76.39331,25.75549],[76.37232,25.75211],[76.36607,25.74977],[76.3531,25.73657],[76.35125,25.72075],[76.33832,25.70234],[76.32904,25.70039],[76.31596,25.70538],[76.30923,25.70552],[76.30314,25.70363],[76.29624,25.69822],[76.29135,25.68937],[76.29679,25.66857],[76.30064,25.66481],[76.3131,25.65991],[76.31709,25.65481],[76.31811,25.64769],[76.317,25.64191],[76.31304,25.63855],[76.29654,25.63593],[76.28996,25.6301],[76.29093,25.61643],[76.28807,25.60664],[76.28947,25.60326],[76.29361,25.59973],[76.29486,25.58729],[76.28337,25.57211],[76.28631,25.56101],[76.28669,25.54551],[76.2817,25.53466],[76.27708,25.53054],[76.27489,25.52376],[76.26848,25.51318],[76.2619,25.50849],[76.24485,25.50953],[76.23296,25.50552],[76.22008,25.49795],[76.2132,25.4898],[76.2045,25.48655],[76.20111,25.4874],[76.19765,25.496],[76.19141,25.50124],[76.18754,25.5011],[76.18143,25.49655],[76.17833,25.48747],[76.18127,25.4819],[76.18059,25.46794],[76.17505,25.45505],[76.17393,25.44292],[76.17088,25.44085],[76.16267,25.44048],[76.1592,25.43759],[76.15793,25.43468],[76.16237,25.43045],[76.16298,25.42658],[76.15609,25.4166],[76.15023,25.41334],[76.14553,25.41386],[76.14014,25.41177],[76.13399,25.40788],[76.13256,25.40508],[76.134,25.39927],[76.14793,25.39587],[76.15279,25.38886],[76.14914,25.38115],[76.14024,25.37773],[76.135,25.37353],[76.13931,25.36881],[76.14926,25.3678],[76.15593,25.35993],[76.15542,25.34664],[76.15172,25.34125],[76.14841,25.3393],[76.14352,25.33913],[76.13462,25.34729],[76.12988,25.34816],[76.12001,25.34218],[76.11281,25.3329],[76.10741,25.33101],[76.10148,25.33574],[76.09771,25.34333],[76.08398,25.35227],[76.06663,25.34936],[76.06836,25.3342],[76.06126,25.32684],[76.0485,25.3208],[76.04056,25.32619],[76.02752,25.31919],[76.02142,25.31316],[76.02034,25.30712],[76.02512,25.29603],[76.0334,25.28433],[76.03345,25.27962],[76.03102,25.27542],[76.02302,25.26861],[76.01625,25.2648],[76.00523,25.26227],[76.00072,25.25893],[75.99721,25.25],[75.99779,25.24262],[75.99636,25.23811],[75.98893,25.2313],[75.98267,25.23254],[75.97344,25.25],[75.96047,25.26425],[75.95043,25.27037],[75.94466,25.28361],[75.93699,25.28709],[75.93121,25.28549],[75.92138,25.27615],[75.90876,25.27034],[75.90439,25.2649],[75.90044,25.25434],[75.89568,25.24771],[75.8848,25.24154],[75.87466,25.24083],[75.86612,25.23212],[75.85661,25.2347],[75.82972,25.22952],[75.82208,25.23195],[75.81975,25.22995],[75.81184,25.23167],[75.80806,25.23683],[75.80658,25.2355],[75.80387,25.23674],[75.80269,25.23944],[75.8027,25.24201],[75.80541,25.24331],[75.81658,25.24504],[75.80869,25.25717],[75.79868,25.25851],[75.78997,25.26488],[75.79009,25.26681],[75.78211,25.26561],[75.77777,25.25169],[75.77892,25.24252],[75.77782,25.23984],[75.78055,25.23817],[75.78061,25.23555],[75.76831,25.20823],[75.75165,25.19132],[75.72387,25.17519],[75.72333,25.17228],[75.72653,25.16305],[75.7354,25.14985],[75.72392,25.1394],[75.71126,25.1319],[75.71122,25.12401],[75.71997,25.12004],[75.72863,25.11696],[75.73091,25.11913],[75.74262,25.11809],[75.74382,25.11274],[75.74247,25.10847],[75.73821,25.10279],[75.73131,25.09824],[75.7222,25.07905],[75.71544,25.07086],[75.69989,25.06195],[75.68982,25.05391],[75.67574,25.03576],[75.66927,25.0333],[75.65413,25.03142],[75.64827,25.02889],[75.64139,25.01844],[75.63,25.00669],[75.62628,25.0],[75.617,24.99442],[75.61657,24.99104],[75.61792,24.98938],[75.62604,24.98816],[75.63256,24.98264],[75.64832,24.97738],[75.65125,24.96352],[75.67305,24.938],[75.68956,24.93023],[75.69468,24.92357],[75.72053,24.90856],[75.74901,24.88553],[75.76621,24.87717],[75.78282,24.87669],[75.79647,24.87231],[75.81205,24.87048],[75.81212,24.86627],[75.81573,24.86387],[75.81346,24.85393],[75.81295,24.84016],[75.80935,24.82331],[75.80442,24.81963],[75.80288,24.81504],[75.80073,24.79026],[75.79202,24.77251],[75.78397,24.76384],[75.78473,24.76172],[75.79797,24.75631],[75.80217,24.75646],[75.80564,24.75408],[75.82646,24.73486],[75.8332,24.7323],[75.83413,24.72849],[75.83732,24.72505],[75.8378,24.71801],[75.83357,24.6882],[75.82853,24.67648],[75.82842,24.6722],[75.82494,24.66745],[75.83845,24.66863],[75.84126,24.66544],[75.84776,24.66302],[75.84691,24.66096],[75.84836,24.65749],[75.84691,24.65188],[75.84876,24.6474],[75.84097,24.63811],[75.84142,24.63494],[75.84627,24.63099],[75.8426,24.62808],[75.8447,24.62722],[75.84215,24.62625],[75.84181,24.62385],[75.83811,24.6231],[75.83716,24.6209],[75.82809,24.62043],[75.82485,24.61345],[75.82588,24.61073],[75.83275,24.60505],[75.83639,24.60615],[75.83253,24.59559],[75.83546,24.59495],[75.83837,24.59765],[75.84166,24.60702],[75.84579,24.60764],[75.84587,24.60948],[75.84924,24.61088],[75.86302,24.61003],[75.86284,24.60613],[75.87115,24.60666],[75.87219,24.59034],[75.87837,24.58339],[75.89412,24.57976],[75.89873,24.57628],[75.90645,24.57562],[75.91446,24.57225],[75.91482,24.569],[75.91219,24.56131],[75.90585,24.56276],[75.90525,24.55302],[75.90358,24.55098],[75.90419,24.5464],[75.90596,24.54537],[75.91531,24.54315],[75.9176,24.54096],[75.92067,24.54894],[75.93194,24.55104],[75.94311,24.54875],[75.94294,24.54752],[75.94753,24.54608],[75.94765,24.54435],[75.95196,24.54336],[75.95306,24.5492],[75.95862,24.54973],[75.95732,24.56241],[75.96296,24.56355],[75.96339,24.56223],[75.97414,24.56051],[75.98807,24.55558],[75.98855,24.55885],[75.99287,24.55993],[75.99869,24.55899],[75.9986,24.55713],[76.00406,24.55681],[76.00406,24.55495],[76.01105,24.55746],[76.02706,24.55071],[76.02859,24.55448],[76.03036,24.55379],[76.03451,24.56227],[76.04289,24.56221],[76.04566,24.57053],[76.05414,24.56769],[76.05223,24.56475],[76.05612,24.56257],[76.0655,24.56984],[76.07105,24.56971],[76.07376,24.57158],[76.07498,24.57843],[76.07129,24.59002],[76.06403,24.60306],[76.06111,24.61187],[76.05539,24.61949],[76.05673,24.6259],[76.05548,24.63423],[76.06261,24.64451],[76.06184,24.66821],[76.06599,24.67318],[76.08028,24.67945],[76.09117,24.68727],[76.10091,24.691],[76.09892,24.69339],[76.09897,24.69733],[76.09307,24.70431],[76.08329,24.71247],[76.08187,24.71179],[76.06841,24.71852],[76.06788,24.72131],[76.05767,24.73179],[76.06666,24.74134],[76.06544,24.74273],[76.07176,24.74436],[76.09073,24.7549],[76.11548,24.76435],[76.11809,24.76907],[76.11504,24.77331],[76.12162,24.78148],[76.13441,24.79077],[76.13791,24.7999],[76.14299,24.79646],[76.14974,24.79529],[76.15248,24.79638],[76.14074,24.78082],[76.13858,24.76848],[76.14146,24.75666],[76.14096,24.75317],[76.15234,24.74494],[76.15475,24.74389],[76.1926,24.75675],[76.19683,24.75362],[76.2019,24.75422],[76.21553,24.77204],[76.21938,24.78064],[76.22104,24.79642],[76.22722,24.81344],[76.22085,24.82907],[76.23936,24.82914],[76.25322,24.82699],[76.25028,24.8321],[76.25129,24.83984],[76.2574,24.84319],[76.269,24.84221],[76.26975,24.83661],[76.26571,24.82287],[76.26805,24.82118],[76.26519,24.80988],[76.26635,24.80712],[76.27956,24.80659],[76.28011,24.80811],[76.28127,24.80683],[76.28505,24.80833],[76.28733,24.81458],[76.28979,24.81509],[76.2911,24.81791],[76.28676,24.83405],[76.30528,24.83362],[76.3066,24.83624],[76.30149,24.83647],[76.30222,24.84005],[76.3041,24.84034],[76.30635,24.83673],[76.31332,24.83654],[76.31225,24.84244],[76.31497,24.84724],[76.31739,24.84872],[76.32395,24.84619],[76.32745,24.84741],[76.33185,24.85829],[76.3307,24.86086],[76.3317,24.86365],[76.34023,24.86386],[76.35893,24.87063],[76.36846,24.8624],[76.37352,24.86314],[76.3768,24.86038],[76.37721,24.85382],[76.38615,24.84651],[76.38757,24.84217],[76.39062,24.84218],[76.39105,24.84012],[76.39888,24.8347],[76.40194,24.83984],[76.40396,24.83878],[76.40538,24.84256],[76.41565,24.84171],[76.42017,24.83613],[76.41843,24.82958],[76.44244,24.83101],[76.44553,24.84835],[76.44023,24.85921],[76.45838,24.86168],[76.46557,24.86415],[76.48757,24.8596],[76.48868,24.86731],[76.48255,24.87604],[76.49286,24.87653],[76.48984,24.88024],[76.4904,24.88637],[76.50152,24.88163],[76.50432,24.88613],[76.50729,24.89626],[76.50176,24.90251],[76.49632,24.90285],[76.48752,24.89979],[76.48511,24.90066],[76.4808,24.90544],[76.48132,24.90779],[76.47517,24.91991],[76.47285,24.93002],[76.46907,24.93279],[76.44419,24.93309],[76.44259,24.93941],[76.44457,24.94172],[76.44779,24.94244],[76.44127,24.9569],[76.43272,24.96652],[76.40967,24.9799],[76.39015,24.98513],[76.3699,24.98165],[76.35044,24.98846],[76.34308,24.9856],[76.32467,24.96395],[76.31613,24.95893],[76.30886,24.95856],[76.29895,24.96194],[76.29205,24.97034],[76.27549,25.0],[76.26678,25.01097],[76.26096,25.02414],[76.24933,25.03433],[76.22324,25.07081],[76.21259,25.10495],[76.20863,25.11285],[76.1974,25.12642],[76.20188,25.12992],[76.20185,25.14367],[76.20939,25.1571],[76.21238,25.15881],[76.22709,25.15933],[76.23273,25.16192],[76.23688,25.16663],[76.23516,25.18285],[76.23828,25.18441],[76.24556,25.1828],[76.24794,25.18444],[76.24795,25.1885],[76.24335,25.19617],[76.24755,25.21091],[76.24348,25.2288],[76.24801,25.24007],[76.25358,25.24243],[76.27576,25.2435],[76.28166,25.24615],[76.28529,25.25],[76.28641,25.25615],[76.28813,25.2578],[76.28597,25.2634],[76.2872,25.26964],[76.30175,25.29268],[76.30117,25.30215],[76.30248,25.3085],[76.30126,25.32096],[76.30289,25.32972],[76.30441,25.33438],[76.31292,25.34241],[76.31601,25.34874],[76.32125,25.37641],[76.32025,25.37787],[76.32308,25.38166],[76.32755,25.38126],[76.33247,25.38427],[76.33604,25.37923],[76.34334,25.37858],[76.34668,25.38065],[76.35522,25.39214],[76.36636,25.39523],[76.37027,25.39224],[76.37059,25.38866],[76.3778,25.38437],[76.38215,25.38512],[76.3851,25.39262],[76.38708,25.3931],[76.39144,25.39138],[76.40372,25.39241],[76.40613,25.38705],[76.41087,25.38642],[76.41132,25.38404],[76.41295,25.38411],[76.41369,25.38681],[76.42223,25.38369],[76.42388,25.38681],[76.428,25.38461],[76.43803,25.38462],[76.4403,25.38968],[76.43884,25.38937],[76.4374,25.39225],[76.43704,25.40198],[76.44167,25.40791],[76.45558,25.40766],[76.46214,25.40926],[76.46298,25.4114],[76.46616,25.41225],[76.47299,25.41034],[76.47572,25.4139],[76.48076,25.41315],[76.48579,25.41728],[76.49012,25.41493],[76.4926,25.4253],[76.49122,25.42949],[76.4947,25.43048],[76.51086,25.42792],[76.51024,25.42552],[76.51273,25.4243],[76.5118,25.42007],[76.5207,25.41699],[76.52266,25.42018],[76.52642,25.41849],[76.5275,25.42399],[76.53376,25.42493],[76.53504,25.41955],[76.53821,25.4187],[76.541,25.41876],[76.54238,25.42187],[76.54622,25.41913],[76.54859,25.42107],[76.55276,25.42104],[76.55284,25.41885],[76.55915,25.41738],[76.55843,25.41368],[76.57083,25.41101],[76.57276,25.407],[76.57555,25.40678],[76.57462,25.41392],[76.57568,25.42025],[76.57285,25.42455],[76.57133,25.43474],[76.57237,25.43833],[76.56753,25.44034],[76.56223,25.44762],[76.55519,25.45349],[76.55807,25.47054],[76.55546,25.48257],[76.53773,25.50272],[76.53775,25.50901],[76.53431,25.5144],[76.52496,25.51851],[76.51642,25.52715],[76.51967,25.53931],[76.51998,25.54727],[76.51415,25.56299],[76.50506,25.57567],[76.50331,25.58269],[76.50538,25.58968],[76.51116,25.59989],[76.5123,25.60555],[76.50988,25.63092],[76.50559,25.6381],[76.50227,25.63762],[76.49894,25.63944],[76.49658,25.64707],[76.49817,25.65675],[76.504,25.66844],[76.50384,25.6732],[76.49891,25.67808],[76.49144,25.67902],[76.48039,25.68326],[76.47556,25.69091],[76.47199,25.70394],[76.47343,25.70992],[76.47732,25.71505],[76.48161,25.71805],[76.49109,25.72083],[76.5014,25.72997],[76.52032,25.72875],[76.52377,25.72983],[76.52295,25.73746],[76.52522,25.74175],[76.52088,25.75211],[76.51726,25.75523],[76.51789,25.76713],[76.51548,25.77644],[76.51924,25.78895],[76.53473,25.81917],[76.55411,25.83297],[76.56601,25.84812]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"11","area_level":"District","area_name":"Pulwama","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.08153,34.1011],[75.069,34.10469],[75.06059,34.10964],[75.05723,34.1031],[75.04859,34.09917],[75.04517,34.09473],[75.03799,34.09566],[75.03739,34.08697],[75.03503,34.08365],[75.02718,34.08565],[75.01531,34.08496],[75.01089,34.07688],[75.00556,34.07188],[75.00193,34.06445],[74.99733,34.06298],[74.99279,34.05863],[74.99243,34.0498],[74.98381,34.04621],[74.97885,34.04764],[74.97304,34.0523],[74.97083,34.04892],[74.96509,34.05002],[74.95904,34.04596],[74.95992,34.04329],[74.9576,34.04139],[74.95886,34.0402],[74.95582,34.0393],[74.95496,34.03426],[74.95092,34.02922],[74.94553,34.02875],[74.94322,34.02683],[74.93115,34.02877],[74.93093,34.03087],[74.92882,34.03099],[74.92935,34.03381],[74.92711,34.03775],[74.9217,34.03544],[74.92205,34.03189],[74.91948,34.0297],[74.91589,34.03014],[74.91472,34.03279],[74.91557,34.03715],[74.90305,34.03496],[74.90144,34.0336],[74.90129,34.02954],[74.89597,34.023],[74.89647,34.01888],[74.90214,34.01799],[74.91039,34.02453],[74.91422,34.02408],[74.91633,34.02132],[74.91056,34.01868],[74.90813,34.0148],[74.90263,34.01176],[74.90013,34.01199],[74.89994,34.00996],[74.89821,34.00921],[74.90241,34.00068],[74.90101,34.0],[74.90232,33.99595],[74.89621,33.99607],[74.89453,33.9925],[74.89125,33.99101],[74.88282,33.97461],[74.87404,33.96959],[74.8666,33.96142],[74.86229,33.95517],[74.86135,33.94974],[74.85848,33.9458],[74.85015,33.93975],[74.8447,33.9308],[74.84276,33.9351],[74.84038,33.93311],[74.83812,33.91663],[74.82262,33.89833],[74.82074,33.89391],[74.8202,33.88925],[74.82215,33.88519],[74.82237,33.87933],[74.81856,33.86532],[74.79699,33.84657],[74.80014,33.84165],[74.79282,33.83918],[74.79069,33.83543],[74.79572,33.82658],[74.79209,33.82689],[74.78691,33.82165],[74.77593,33.82139],[74.77154,33.81619],[74.77445,33.81079],[74.77132,33.81001],[74.75762,33.81201],[74.75613,33.82126],[74.74188,33.82177],[74.73618,33.81576],[74.723,33.80644],[74.71667,33.80848],[74.71181,33.79516],[74.71394,33.79419],[74.73152,33.80138],[74.73684,33.80144],[74.73949,33.80504],[74.74522,33.80754],[74.75848,33.80863],[74.7613,33.80695],[74.76548,33.79829],[74.76915,33.79552],[74.77383,33.79499],[74.77772,33.79122],[74.7983,33.79987],[74.80894,33.79807],[74.82495,33.78526],[74.84541,33.80829],[74.84684,33.81233],[74.84358,33.81733],[74.85017,33.82147],[74.85656,33.81615],[74.86258,33.81505],[74.87745,33.81711],[74.87666,33.81262],[74.86395,33.80647],[74.85665,33.79977],[74.86224,33.79507],[74.87423,33.79589],[74.87796,33.791],[74.87977,33.791],[74.88619,33.79816],[74.89045,33.79661],[74.89284,33.79924],[74.89135,33.8023],[74.89995,33.8088],[74.90434,33.81026],[74.90652,33.80711],[74.91016,33.80596],[74.92154,33.8139],[74.92628,33.81417],[74.92596,33.81097],[74.92809,33.80951],[74.93405,33.80951],[74.92708,33.80369],[74.92701,33.80113],[74.93584,33.80284],[74.93494,33.79573],[74.94055,33.79141],[74.96609,33.79506],[74.98033,33.80944],[74.99616,33.79925],[75.00308,33.80099],[75.0,33.80518],[75.00069,33.81175],[75.01144,33.80927],[75.02317,33.81064],[75.02757,33.80864],[75.03479,33.81144],[75.0415,33.81076],[75.04217,33.81224],[75.03921,33.81439],[75.04024,33.81571],[75.04524,33.81249],[75.04982,33.81497],[75.05143,33.81381],[75.04842,33.81159],[75.04958,33.81127],[75.05409,33.81275],[75.05999,33.81808],[75.06536,33.81795],[75.05914,33.83282],[75.06034,33.83458],[75.06687,33.8356],[75.06728,33.83864],[75.06068,33.84615],[75.05592,33.84742],[75.05069,33.85267],[75.04652,33.85295],[75.05679,33.8585],[75.05862,33.85315],[75.06162,33.85414],[75.06442,33.85172],[75.07031,33.85572],[75.07306,33.85302],[75.08112,33.85291],[75.08532,33.85732],[75.08834,33.85802],[75.08992,33.86096],[75.09812,33.86496],[75.10096,33.8687],[75.10099,33.87124],[75.10993,33.87026],[75.1215,33.86576],[75.13218,33.87555],[75.14,33.87281],[75.14461,33.87459],[75.14921,33.87818],[75.15024,33.88135],[75.15519,33.88411],[75.16274,33.89796],[75.16758,33.90154],[75.17964,33.90174],[75.18619,33.90473],[75.19391,33.90527],[75.19922,33.91234],[75.19881,33.91504],[75.20183,33.92071],[75.21503,33.93568],[75.22028,33.94495],[75.22021,33.94726],[75.22415,33.95019],[75.22598,33.95447],[75.22245,33.96363],[75.22014,33.9812],[75.22393,33.99224],[75.22336,34.00466],[75.22634,34.00995],[75.22271,34.01691],[75.23373,34.02098],[75.23509,34.02662],[75.23351,34.03167],[75.21868,34.03677],[75.2158,34.05158],[75.20924,34.05229],[75.21037,34.058],[75.20561,34.06111],[75.20374,34.06562],[75.20459,34.06877],[75.19749,34.06699],[75.19025,34.06781],[75.18404,34.0713],[75.17521,34.0713],[75.16042,34.07916],[75.15412,34.07757],[75.14958,34.09426],[75.14006,34.09537],[75.12541,34.09373],[75.11464,34.08901],[75.1097,34.0984],[75.10112,34.09696],[75.09449,34.10139],[75.08153,34.1011]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"110","area_level":"District","area_name":"Nagaur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.40969,27.68975],[74.40371,27.70053],[74.39518,27.69796],[74.38837,27.69181],[74.37225,27.68276],[74.37163,27.6839],[74.36726,27.68279],[74.36418,27.68498],[74.35678,27.6844],[74.35368,27.68584],[74.34172,27.68119],[74.34284,27.67812],[74.33327,27.67365],[74.33368,27.66105],[74.32251,27.65334],[74.31008,27.64918],[74.31096,27.64663],[74.30874,27.64537],[74.31213,27.63687],[74.29062,27.63062],[74.2786,27.62528],[74.2788,27.6237],[74.27559,27.62181],[74.27492,27.61379],[74.26786,27.61035],[74.2686,27.60901],[74.26401,27.60561],[74.25415,27.60122],[74.25772,27.57645],[74.25475,27.57497],[74.25665,27.56338],[74.25317,27.56248],[74.24786,27.55681],[74.24355,27.55562],[74.24506,27.5467],[74.2408,27.54541],[74.24072,27.54111],[74.23756,27.53786],[74.23912,27.53325],[74.23618,27.53065],[74.23851,27.52536],[74.22689,27.52221],[74.22544,27.51774],[74.21937,27.51617],[74.209,27.50639],[74.20723,27.50664],[74.19605,27.49873],[74.1972,27.49024],[74.19358,27.48856],[74.19401,27.48256],[74.19146,27.48118],[74.19552,27.47698],[74.20154,27.47712],[74.20359,27.47203],[74.20669,27.46989],[74.20896,27.47066],[74.20989,27.46797],[74.20353,27.46471],[74.20381,27.45704],[74.20083,27.44592],[74.20384,27.42274],[74.195,27.422],[74.1828,27.42434],[74.15538,27.411],[74.14821,27.41811],[74.14626,27.41706],[74.1408,27.42715],[74.14919,27.43052],[74.14932,27.43239],[74.14718,27.44217],[74.14196,27.452],[74.13617,27.45669],[74.13492,27.45599],[74.13203,27.46165],[74.11939,27.45891],[74.11869,27.46003],[74.12129,27.46175],[74.11192,27.47432],[74.09649,27.4777],[74.08237,27.47815],[74.07954,27.48096],[74.07956,27.48562],[74.07791,27.48765],[74.06752,27.49393],[74.06451,27.50142],[74.06688,27.50392],[74.0634,27.5071],[74.06323,27.50984],[74.0613,27.50881],[74.05279,27.51874],[74.04599,27.52217],[74.0436,27.52542],[74.03998,27.52708],[74.03765,27.5263],[74.03357,27.5293],[74.0299,27.53535],[74.02261,27.53183],[74.0198,27.52775],[74.018,27.52786],[74.00647,27.51912],[74.01038,27.51521],[74.00978,27.51367],[74.00537,27.51178],[74.00268,27.51512],[74.00045,27.51328],[74.00207,27.51181],[73.99999,27.50857],[73.99673,27.51093],[73.99121,27.50446],[73.98836,27.51079],[73.97809,27.50685],[73.97798,27.50427],[73.97122,27.50354],[73.96043,27.50551],[73.95673,27.5105],[73.94609,27.50697],[73.94219,27.50088],[73.93355,27.49918],[73.91744,27.49104],[73.90836,27.48942],[73.90575,27.49193],[73.90238,27.492],[73.8994,27.49597],[73.89751,27.49555],[73.89176,27.5],[73.88811,27.51476],[73.87847,27.53763],[73.87472,27.53845],[73.86474,27.53557],[73.86138,27.53596],[73.85709,27.53151],[73.85056,27.5285],[73.84324,27.52111],[73.84358,27.51696],[73.83417,27.51098],[73.83016,27.50617],[73.81867,27.50045],[73.81338,27.50024],[73.80959,27.49802],[73.80163,27.50014],[73.80021,27.49818],[73.79673,27.49768],[73.7914,27.49984],[73.78905,27.50435],[73.77926,27.51353],[73.77207,27.52799],[73.76624,27.52876],[73.75849,27.53507],[73.74843,27.53423],[73.74366,27.53208],[73.74576,27.52789],[73.73394,27.52188],[73.72699,27.51996],[73.72409,27.52267],[73.71523,27.51919],[73.71074,27.52037],[73.70453,27.51946],[73.70043,27.52872],[73.69756,27.53115],[73.69387,27.53881],[73.68911,27.54328],[73.68871,27.54641],[73.68621,27.54692],[73.68047,27.55367],[73.67541,27.55354],[73.67131,27.55667],[73.6634,27.56613],[73.65751,27.56515],[73.64748,27.558],[73.6324,27.54345],[73.62597,27.54049],[73.62115,27.53989],[73.62007,27.54116],[73.61586,27.53782],[73.62889,27.51748],[73.61529,27.50657],[73.61363,27.4977],[73.61058,27.49518],[73.61324,27.49119],[73.61102,27.48876],[73.59785,27.48573],[73.59291,27.48207],[73.59096,27.48666],[73.58963,27.48681],[73.57851,27.48169],[73.57595,27.48763],[73.57098,27.48428],[73.56683,27.49012],[73.56157,27.49304],[73.5546,27.49215],[73.5537,27.49414],[73.54682,27.49657],[73.54317,27.49611],[73.5395,27.49122],[73.52835,27.48409],[73.52467,27.4774],[73.52487,27.47148],[73.51923,27.46792],[73.52228,27.46137],[73.51723,27.4573],[73.52144,27.45313],[73.51658,27.45126],[73.52202,27.44541],[73.50238,27.43373],[73.50338,27.4183],[73.49932,27.41175],[73.50172,27.40625],[73.49953,27.39336],[73.50025,27.39092],[73.50172,27.39103],[73.50214,27.38636],[73.50707,27.38516],[73.51048,27.38738],[73.51284,27.386],[73.5167,27.38212],[73.51719,27.37855],[73.52142,27.37161],[73.5,27.36458],[73.48669,27.35754],[73.48587,27.35016],[73.48821,27.34013],[73.49533,27.3282],[73.47601,27.32048],[73.4514,27.3132],[73.4388,27.31275],[73.43697,27.30704],[73.41778,27.29763],[73.40986,27.29092],[73.39571,27.28337],[73.38635,27.27373],[73.38017,27.27116],[73.37907,27.26902],[73.37679,27.26805],[73.37619,27.27329],[73.36465,27.26623],[73.34521,27.24895],[73.3421,27.24266],[73.33857,27.23997],[73.3378,27.22245],[73.33552,27.21952],[73.34012,27.21882],[73.34604,27.21415],[73.34911,27.21409],[73.35209,27.20996],[73.34381,27.20387],[73.3455,27.20073],[73.33936,27.19695],[73.33601,27.19241],[73.33699,27.19067],[73.33102,27.18797],[73.33122,27.18549],[73.32711,27.18307],[73.32562,27.18795],[73.3284,27.19127],[73.3253,27.19529],[73.31939,27.19533],[73.31703,27.19792],[73.31449,27.1956],[73.31102,27.20008],[73.30897,27.20011],[73.30673,27.20726],[73.2902,27.2325],[73.27645,27.24137],[73.27342,27.24646],[73.26815,27.25],[73.26442,27.25529],[73.26158,27.25516],[73.25979,27.25989],[73.25801,27.25999],[73.25711,27.26205],[73.26105,27.26872],[73.25163,27.28386],[73.24961,27.28337],[73.24781,27.28664],[73.24616,27.28549],[73.24643,27.28804],[73.23963,27.2928],[73.24064,27.29437],[73.23923,27.29564],[73.24324,27.30018],[73.23993,27.30143],[73.23892,27.30518],[73.24646,27.3117],[73.24132,27.31822],[73.24119,27.32174],[73.23603,27.32079],[73.23377,27.32464],[73.23168,27.32402],[73.22762,27.33503],[73.2196,27.33529],[73.18715,27.31474],[73.1877,27.30946],[73.18293,27.30468],[73.18378,27.30009],[73.18177,27.28731],[73.16459,27.28852],[73.16409,27.2906],[73.15974,27.29138],[73.1602,27.29355],[73.15393,27.29567],[73.13374,27.30944],[73.12724,27.3033],[73.13193,27.29729],[73.12386,27.2923],[73.11861,27.28659],[73.11532,27.27806],[73.11894,27.27535],[73.11237,27.27049],[73.11358,27.26777],[73.11146,27.26466],[73.11157,27.2613],[73.10834,27.25953],[73.10985,27.25683],[73.1024,27.2535],[73.10335,27.25193],[73.08573,27.2399],[73.09472,27.22815],[73.09773,27.22849],[73.10139,27.22295],[73.0998,27.22177],[73.09983,27.21787],[73.10481,27.21194],[73.10357,27.20578],[73.10813,27.20109],[73.10643,27.19823],[73.11157,27.18406],[73.11037,27.18044],[73.11515,27.1702],[73.11308,27.16424],[73.11536,27.16118],[73.11526,27.15731],[73.11316,27.15537],[73.11688,27.14737],[73.11582,27.14689],[73.11667,27.14245],[73.11429,27.1385],[73.11332,27.13238],[73.10779,27.12449],[73.09874,27.1176],[73.10274,27.10684],[73.11076,27.1014],[73.11368,27.09624],[73.12043,27.09105],[73.12472,27.08258],[73.12709,27.07182],[73.13348,27.05974],[73.13124,27.05751],[73.13818,27.05022],[73.1383,27.04862],[73.13402,27.04461],[73.12691,27.04055],[73.12256,27.035],[73.11176,27.02715],[73.1079,27.02054],[73.11,27.01579],[73.10801,27.01265],[73.10884,27.00597],[73.11164,27.00092],[73.11829,26.99768],[73.11999,26.9899],[73.11751,26.98555],[73.1079,26.98009],[73.10807,26.9696],[73.10975,26.96465],[73.11883,26.95167],[73.12191,26.94151],[73.12716,26.94318],[73.12916,26.94231],[73.14386,26.93247],[73.14746,26.93198],[73.14973,26.92732],[73.15392,26.92439],[73.16418,26.9279],[73.16675,26.93216],[73.16955,26.93296],[73.17574,26.92522],[73.17526,26.92045],[73.178,26.9122],[73.17609,26.90782],[73.17739,26.90461],[73.17605,26.90336],[73.18405,26.88318],[73.18667,26.88179],[73.19013,26.88253],[73.19194,26.88074],[73.19776,26.88204],[73.20027,26.87953],[73.20263,26.87974],[73.20268,26.87437],[73.20076,26.87162],[73.20421,26.86884],[73.21043,26.87023],[73.21502,26.86567],[73.21818,26.86787],[73.22167,26.86664],[73.22862,26.86885],[73.23065,26.86647],[73.23465,26.86902],[73.2381,26.86088],[73.24235,26.8633],[73.24303,26.86229],[73.2521,26.86478],[73.25347,26.86279],[73.25692,26.86195],[73.26464,26.86322],[73.26469,26.86173],[73.26632,26.86179],[73.2663,26.86332],[73.27604,26.86177],[73.27893,26.86359],[73.27824,26.86592],[73.28511,26.86929],[73.28445,26.87162],[73.2913,26.87355],[73.29309,26.86832],[73.29972,26.86804],[73.30073,26.86439],[73.30225,26.86486],[73.30417,26.86291],[73.31109,26.86374],[73.31156,26.86103],[73.31411,26.86153],[73.31652,26.85567],[73.3236,26.85631],[73.32476,26.85406],[73.33769,26.85791],[73.34371,26.86232],[73.34945,26.86382],[73.35412,26.87035],[73.37094,26.86851],[73.37323,26.87037],[73.377,26.86641],[73.38387,26.86741],[73.38703,26.86862],[73.39138,26.87551],[73.39904,26.87536],[73.40418,26.88385],[73.41148,26.88564],[73.43032,26.88825],[73.44182,26.88576],[73.44785,26.87322],[73.45868,26.87705],[73.46114,26.87546],[73.47292,26.87969],[73.47378,26.87791],[73.48227,26.88328],[73.49821,26.88838],[73.50546,26.88653],[73.51515,26.88042],[73.5335,26.85691],[73.53911,26.85912],[73.55408,26.85943],[73.55385,26.86126],[73.5598,26.86249],[73.56477,26.8615],[73.57719,26.86487],[73.5789,26.86466],[73.57852,26.86283],[73.58089,26.86098],[73.59324,26.86392],[73.59316,26.85779],[73.59636,26.85674],[73.59527,26.85455],[73.59643,26.85223],[73.60462,26.85068],[73.60399,26.84632],[73.6095,26.84345],[73.61047,26.8448],[73.61187,26.84186],[73.61615,26.83902],[73.61909,26.84231],[73.61976,26.84591],[73.62345,26.84561],[73.62466,26.84348],[73.63006,26.84434],[73.63138,26.84235],[73.63104,26.83629],[73.62942,26.83361],[73.63165,26.82976],[73.63048,26.82365],[73.63221,26.82474],[73.63441,26.82317],[73.63564,26.80674],[73.65119,26.80497],[73.65715,26.80752],[73.6629,26.79659],[73.66071,26.79369],[73.66042,26.78882],[73.66212,26.78577],[73.6629,26.77745],[73.666,26.77712],[73.67302,26.76092],[73.67882,26.75741],[73.67776,26.75428],[73.67223,26.7526],[73.67294,26.74904],[73.66738,26.74334],[73.66809,26.74191],[73.66224,26.73011],[73.66081,26.73086],[73.65873,26.72185],[73.65452,26.71912],[73.65406,26.71584],[73.65214,26.71477],[73.65545,26.70276],[73.65578,26.6936],[73.66082,26.68755],[73.67304,26.68099],[73.67285,26.67213],[73.67034,26.6709],[73.67013,26.66688],[73.65977,26.65016],[73.66338,26.64694],[73.67858,26.6469],[73.67916,26.64241],[73.68223,26.64222],[73.68395,26.63545],[73.68192,26.63451],[73.6823,26.6332],[73.68655,26.63258],[73.68928,26.62485],[73.6913,26.62305],[73.68866,26.61759],[73.69241,26.61726],[73.6937,26.61156],[73.69106,26.60887],[73.69732,26.60673],[73.70081,26.60155],[73.69748,26.59324],[73.69846,26.58536],[73.70089,26.58399],[73.70159,26.5797],[73.70046,26.57335],[73.70552,26.57398],[73.7127,26.55889],[73.71969,26.55265],[73.72207,26.54632],[73.72082,26.53906],[73.73052,26.54004],[73.7566,26.53898],[73.76273,26.5337],[73.76741,26.53595],[73.76777,26.53325],[73.76462,26.5314],[73.77489,26.5237],[73.7791,26.52222],[73.78282,26.5123],[73.7878,26.5111],[73.78914,26.50882],[73.79658,26.5046],[73.80856,26.50309],[73.81697,26.50425],[73.81727,26.5023],[73.8193,26.5023],[73.81588,26.49926],[73.81744,26.49841],[73.81556,26.4941],[73.82803,26.48782],[73.83031,26.48301],[73.83448,26.48351],[73.83535,26.47398],[73.84862,26.47149],[73.84921,26.46678],[73.85461,26.46644],[73.85461,26.45779],[73.85928,26.4409],[73.86069,26.44088],[73.861,26.43887],[73.86356,26.4391],[73.86618,26.43525],[73.86748,26.43574],[73.87079,26.42856],[73.88116,26.42489],[73.89523,26.42435],[73.9118,26.42882],[73.91464,26.42523],[73.91589,26.4263],[73.91978,26.4243],[73.93156,26.42349],[73.93937,26.42088],[73.94141,26.42286],[73.94434,26.42302],[73.95431,26.41952],[73.96207,26.42285],[73.96779,26.42939],[73.96978,26.43477],[73.9775,26.42964],[73.97877,26.4307],[73.98393,26.42316],[73.98841,26.42534],[74.0,26.4242],[74.0004,26.42307],[74.01973,26.42409],[74.02848,26.42665],[74.02918,26.42521],[74.03091,26.42559],[74.03295,26.42088],[74.03068,26.41613],[74.0365,26.41247],[74.04193,26.41315],[74.04591,26.41931],[74.0628,26.42445],[74.07818,26.42334],[74.08293,26.4211],[74.08304,26.41957],[74.08909,26.41783],[74.09016,26.41575],[74.10238,26.41585],[74.104,26.42315],[74.10156,26.43323],[74.10241,26.4443],[74.11284,26.45487],[74.12223,26.45716],[74.12747,26.44623],[74.13068,26.44423],[74.13146,26.44056],[74.13449,26.43793],[74.13872,26.43717],[74.13891,26.43502],[74.1372,26.43458],[74.13926,26.43028],[74.146,26.43065],[74.14617,26.42822],[74.15711,26.4244],[74.1573,26.41684],[74.16001,26.41007],[74.17272,26.41555],[74.17268,26.42304],[74.18403,26.42421],[74.19192,26.42684],[74.18995,26.43781],[74.19431,26.43818],[74.19459,26.44014],[74.19832,26.44057],[74.19844,26.44175],[74.20389,26.44115],[74.20398,26.44312],[74.20977,26.44348],[74.21091,26.44541],[74.21867,26.44498],[74.22682,26.45441],[74.22922,26.4532],[74.23736,26.46129],[74.26388,26.45298],[74.27237,26.45384],[74.27463,26.45752],[74.2779,26.45614],[74.27894,26.45333],[74.28907,26.45148],[74.29213,26.44796],[74.29309,26.45075],[74.29597,26.45083],[74.29937,26.45353],[74.30945,26.45615],[74.31502,26.45537],[74.31722,26.45195],[74.31723,26.44864],[74.32283,26.44319],[74.32789,26.4412],[74.33296,26.44156],[74.34218,26.44541],[74.34291,26.44876],[74.35015,26.45347],[74.35346,26.46931],[74.36405,26.47501],[74.36965,26.47603],[74.37145,26.48394],[74.37011,26.48748],[74.38739,26.48857],[74.39015,26.48766],[74.39098,26.48509],[74.39456,26.48435],[74.39748,26.4851],[74.39704,26.48679],[74.39951,26.48675],[74.39992,26.48818],[74.4036,26.48799],[74.40408,26.48946],[74.43115,26.48633],[74.43245,26.49511],[74.44085,26.50365],[74.46253,26.48708],[74.48274,26.49858],[74.49155,26.51253],[74.50288,26.51975],[74.50611,26.52468],[74.51052,26.52744],[74.50922,26.52858],[74.52019,26.54483],[74.52992,26.55127],[74.53697,26.55871],[74.54999,26.58013],[74.55844,26.58883],[74.56409,26.60042],[74.57162,26.60712],[74.57871,26.61796],[74.58844,26.62854],[74.59241,26.62672],[74.60297,26.61489],[74.60123,26.61325],[74.60209,26.61214],[74.61358,26.60365],[74.60967,26.59995],[74.61293,26.59548],[74.61734,26.56842],[74.62664,26.573],[74.63468,26.58007],[74.63976,26.58817],[74.64727,26.59308],[74.64794,26.59078],[74.65188,26.59037],[74.65506,26.58698],[74.6629,26.59295],[74.66982,26.59478],[74.67435,26.60133],[74.67356,26.60898],[74.67646,26.60918],[74.67671,26.61095],[74.67966,26.61228],[74.6804,26.61691],[74.68628,26.62405],[74.69414,26.64717],[74.70211,26.65235],[74.71464,26.66699],[74.71726,26.67533],[74.71532,26.67823],[74.71603,26.6871],[74.72186,26.69998],[74.71267,26.70273],[74.71218,26.70559],[74.68792,26.70628],[74.67713,26.71058],[74.66886,26.71043],[74.66304,26.71253],[74.68359,26.73656],[74.68076,26.74033],[74.68113,26.74571],[74.68556,26.75004],[74.68677,26.75452],[74.6898,26.75546],[74.69282,26.76316],[74.69749,26.76378],[74.69497,26.77126],[74.69885,26.77384],[74.71165,26.77592],[74.71297,26.77574],[74.71341,26.77216],[74.71702,26.7725],[74.7188,26.77092],[74.73985,26.77193],[74.74086,26.76921],[74.75,26.7711],[74.75132,26.78511],[74.75752,26.78803],[74.75904,26.7912],[74.7695,26.79325],[74.77597,26.79003],[74.78013,26.79793],[74.77927,26.80107],[74.77611,26.80244],[74.77684,26.81269],[74.77461,26.81398],[74.77583,26.81936],[74.76903,26.82372],[74.76772,26.82837],[74.76555,26.82866],[74.77213,26.83967],[74.77023,26.84163],[74.76949,26.84981],[74.78536,26.85329],[74.79924,26.85371],[74.8047,26.85684],[74.8073,26.8625],[74.81375,26.867],[74.81921,26.88103],[74.81847,26.88397],[74.81596,26.88489],[74.82262,26.89297],[74.82794,26.90413],[74.82731,26.9091],[74.82347,26.91224],[74.82623,26.92751],[74.83376,26.93268],[74.83296,26.94],[74.83691,26.94593],[74.83932,26.95606],[74.84183,26.95797],[74.85361,26.97867],[74.86989,26.97448],[74.90415,26.97691],[74.90436,26.97575],[74.90909,26.97589],[74.91084,26.9734],[74.91043,26.96641],[74.91683,26.9644],[74.94602,26.96227],[74.94878,26.96364],[74.9595,26.96102],[74.96367,26.95351],[74.96425,26.94712],[74.96782,26.94577],[74.96939,26.94839],[74.97622,26.94793],[74.98107,26.94351],[74.98026,26.92994],[74.97909,26.92988],[74.97912,26.92598],[74.97767,26.92595],[74.97667,26.91208],[74.97171,26.8983],[74.97331,26.89135],[74.99068,26.8898],[74.99704,26.89113],[74.99704,26.89322],[75.00811,26.89376],[75.01103,26.89525],[75.01134,26.90038],[75.0103,26.9119],[75.0126,26.9266],[75.01075,26.94613],[75.1616,26.93315],[75.16422,26.96043],[75.1631,26.96536],[75.16052,26.96572],[75.15911,26.97197],[75.18141,26.97514],[75.20116,26.9753],[75.1997,26.99118],[75.20018,27.00505],[75.20178,27.00486],[75.20196,27.00805],[75.21487,27.0083],[75.21478,27.01029],[75.22097,27.01088],[75.2211,27.01359],[75.22347,27.01452],[75.24046,27.01364],[75.24035,27.01706],[75.24189,27.0172],[75.24258,27.02071],[75.24565,27.02045],[75.25114,27.03033],[75.25493,27.03113],[75.25627,27.0354],[75.24132,27.03749],[75.24133,27.04291],[75.23956,27.0445],[75.2393,27.04797],[75.21985,27.05224],[75.22022,27.06891],[75.21872,27.07067],[75.22042,27.07599],[75.21907,27.07631],[75.21894,27.08031],[75.24847,27.08624],[75.26648,27.08598],[75.27848,27.08808],[75.31784,27.0857],[75.3258,27.08923],[75.33095,27.08951],[75.33126,27.09205],[75.33433,27.09174],[75.33929,27.08564],[75.34306,27.0843],[75.34946,27.08292],[75.36438,27.08348],[75.36503,27.09628],[75.36366,27.1057],[75.36205,27.10582],[75.36183,27.10843],[75.3575,27.10881],[75.35742,27.10728],[75.34657,27.10581],[75.34657,27.10785],[75.34398,27.10791],[75.34364,27.11373],[75.3376,27.11395],[75.33819,27.12208],[75.34039,27.12556],[75.33974,27.13187],[75.33852,27.13444],[75.32863,27.13552],[75.32869,27.14321],[75.31537,27.14392],[75.31544,27.14188],[75.29799,27.13994],[75.2975,27.12606],[75.28316,27.12131],[75.27695,27.1216],[75.27217,27.12829],[75.26751,27.12979],[75.2672,27.12866],[75.25027,27.12747],[75.25034,27.1253],[75.23328,27.12374],[75.23271,27.13004],[75.22854,27.1297],[75.22858,27.13085],[75.20338,27.12938],[75.20431,27.12754],[75.20142,27.12592],[75.19698,27.12611],[75.19799,27.12846],[75.19532,27.12809],[75.19446,27.13586],[75.19263,27.13808],[75.17952,27.13713],[75.17078,27.13912],[75.17009,27.1454],[75.17286,27.148],[75.17691,27.14837],[75.17909,27.15236],[75.17667,27.15581],[75.16819,27.15753],[75.15953,27.15698],[75.15933,27.1599],[75.15573,27.16055],[75.15552,27.16325],[75.14017,27.16324],[75.12765,27.16653],[75.12236,27.17927],[75.11613,27.17874],[75.12225,27.19473],[75.12207,27.20121],[75.11913,27.20269],[75.12448,27.2087],[75.12298,27.20845],[75.12111,27.21171],[75.11393,27.21366],[75.11184,27.21709],[75.08998,27.21457],[75.06929,27.21602],[75.07425,27.22349],[75.08017,27.22888],[75.08106,27.23359],[75.07943,27.23424],[75.08635,27.24347],[75.09991,27.24372],[75.11415,27.25623],[75.11453,27.25969],[75.12253,27.26763],[75.12918,27.27226],[75.13299,27.28074],[75.15582,27.27818],[75.15965,27.29478],[75.16489,27.30352],[75.16341,27.31354],[75.16041,27.31789],[75.13899,27.3209],[75.13802,27.32447],[75.12614,27.32989],[75.12161,27.33634],[75.10687,27.3354],[75.10631,27.341],[75.1119,27.34211],[75.1144,27.35194],[75.1157,27.35188],[75.11579,27.35546],[75.11383,27.35697],[75.11527,27.36959],[75.11766,27.3704],[75.11516,27.37732],[75.10739,27.37815],[75.10764,27.3803],[75.10586,27.38139],[75.09388,27.3822],[75.09242,27.38413],[75.08688,27.38385],[75.08507,27.38599],[75.07771,27.38573],[75.04556,27.37759],[75.04642,27.37211],[75.04411,27.36793],[75.0437,27.36275],[75.04051,27.36068],[75.03865,27.36154],[75.03753,27.35624],[75.03526,27.35605],[75.03521,27.35457],[75.02681,27.35373],[75.02565,27.35212],[75.01644,27.35117],[75.00677,27.34709],[74.98288,27.3483],[74.97842,27.34714],[74.97477,27.34907],[74.9632,27.34966],[74.95182,27.34855],[74.94646,27.3503],[74.94299,27.34771],[74.94279,27.34158],[74.93903,27.33872],[74.93116,27.33644],[74.91098,27.33663],[74.89788,27.33164],[74.89828,27.3157],[74.89432,27.3153],[74.88415,27.31029],[74.8793,27.31029],[74.8753,27.32454],[74.86909,27.3304],[74.86623,27.33546],[74.86954,27.33981],[74.87585,27.34213],[74.876,27.34402],[74.87961,27.3455],[74.87645,27.35526],[74.87566,27.36656],[74.8733,27.3687],[74.8742,27.37251],[74.872,27.37349],[74.86278,27.37018],[74.85667,27.37281],[74.85456,27.37666],[74.84635,27.37764],[74.84575,27.38488],[74.8479,27.38869],[74.85486,27.39494],[74.85912,27.40183],[74.86813,27.40804],[74.86828,27.40961],[74.8732,27.41149],[74.86368,27.43173],[74.85893,27.45024],[74.85478,27.44961],[74.85368,27.45311],[74.85106,27.45355],[74.84259,27.45154],[74.83037,27.45341],[74.81934,27.45121],[74.80041,27.45022],[74.79775,27.46308],[74.79915,27.46461],[74.79825,27.46814],[74.80025,27.46967],[74.80246,27.47623],[74.79658,27.48723],[74.79066,27.48567],[74.78961,27.48746],[74.78541,27.48624],[74.7829,27.48968],[74.77969,27.49079],[74.77452,27.48954],[74.77115,27.49441],[74.75445,27.48778],[74.75284,27.49561],[74.75,27.50069],[74.73132,27.49359],[74.72511,27.50129],[74.72027,27.50193],[74.71934,27.50736],[74.72164,27.50836],[74.72371,27.51233],[74.72321,27.51769],[74.72137,27.51907],[74.7201,27.52381],[74.72288,27.52483],[74.72328,27.52714],[74.71947,27.53253],[74.71861,27.53964],[74.72243,27.54393],[74.73703,27.54965],[74.76108,27.56596],[74.75835,27.57859],[74.76098,27.57985],[74.76051,27.58195],[74.75565,27.59344],[74.74137,27.58495],[74.7304,27.60935],[74.71309,27.60084],[74.70761,27.59655],[74.70495,27.59694],[74.70334,27.59965],[74.70471,27.6024],[74.69922,27.61624],[74.70001,27.62263],[74.71144,27.62996],[74.70886,27.63533],[74.71094,27.63601],[74.71008,27.63759],[74.71262,27.63926],[74.70279,27.65312],[74.69346,27.6525],[74.69199,27.65448],[74.68758,27.65439],[74.68703,27.65842],[74.68449,27.6581],[74.68315,27.66042],[74.68113,27.66851],[74.67509,27.66702],[74.67443,27.66955],[74.67268,27.66898],[74.67126,27.66727],[74.67197,27.6655],[74.66782,27.66438],[74.66487,27.66109],[74.64756,27.65474],[74.63742,27.65361],[74.627,27.64835],[74.62467,27.65427],[74.62024,27.65975],[74.61739,27.65853],[74.61516,27.66138],[74.61261,27.66546],[74.61159,27.67215],[74.60736,27.67469],[74.60543,27.67839],[74.62244,27.68835],[74.62193,27.69011],[74.62683,27.69505],[74.62389,27.69871],[74.61922,27.69654],[74.61511,27.69911],[74.60905,27.70762],[74.59802,27.70259],[74.59034,27.6943],[74.58416,27.69154],[74.56834,27.67374],[74.56272,27.66967],[74.55978,27.66967],[74.56084,27.66764],[74.55531,27.6652],[74.54521,27.66382],[74.54318,27.66562],[74.53851,27.66381],[74.52656,27.6761],[74.49463,27.66652],[74.49505,27.67846],[74.49193,27.68822],[74.47436,27.6859],[74.463,27.68165],[74.45986,27.6882],[74.4564,27.6874],[74.45381,27.69365],[74.45102,27.6934],[74.45079,27.69464],[74.43989,27.69146],[74.43406,27.69231],[74.40969,27.68975]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"111","area_level":"District","area_name":"Pali","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.13118,26.44103],[74.13068,26.44423],[74.12747,26.44623],[74.12223,26.45716],[74.11284,26.45487],[74.11008,26.45262],[74.10171,26.44238],[74.10163,26.43243],[74.104,26.42315],[74.10238,26.41585],[74.09016,26.41575],[74.08909,26.41783],[74.08304,26.41957],[74.08293,26.4211],[74.07818,26.42334],[74.0628,26.42445],[74.04591,26.41931],[74.04193,26.41315],[74.0365,26.41247],[74.03068,26.41613],[74.03295,26.42088],[74.03091,26.42559],[74.02918,26.42521],[74.02848,26.42665],[74.01973,26.42409],[74.0004,26.42307],[74.0,26.4242],[73.98841,26.42534],[73.98393,26.42316],[73.97877,26.4307],[73.9775,26.42964],[73.96978,26.43477],[73.96779,26.42939],[73.96207,26.42285],[73.95431,26.41952],[73.94434,26.42302],[73.94141,26.42286],[73.93937,26.42088],[73.93156,26.42349],[73.91978,26.4243],[73.91589,26.4263],[73.91464,26.42523],[73.9118,26.42882],[73.89523,26.42435],[73.88947,26.42425],[73.88116,26.42489],[73.87007,26.42913],[73.86716,26.42653],[73.86797,26.42427],[73.86527,26.4205],[73.86194,26.41933],[73.86355,26.41606],[73.86215,26.41446],[73.84457,26.40644],[73.83899,26.38176],[73.8486,26.37723],[73.8436,26.3708],[73.83254,26.3695],[73.82617,26.36276],[73.82313,26.36302],[73.81119,26.35606],[73.81139,26.34641],[73.80686,26.33799],[73.80978,26.33799],[73.8113,26.33438],[73.80739,26.32352],[73.81008,26.31694],[73.80673,26.31086],[73.80346,26.31112],[73.80152,26.31588],[73.79607,26.31797],[73.78609,26.31813],[73.79527,26.31355],[73.79396,26.3109],[73.79542,26.31046],[73.79649,26.31306],[73.80172,26.3115],[73.80344,26.30931],[73.79981,26.29807],[73.80814,26.29757],[73.80792,26.29211],[73.8105,26.28613],[73.81019,26.28305],[73.80432,26.27522],[73.80785,26.26348],[73.79077,26.24736],[73.7893,26.23972],[73.79032,26.23553],[73.78669,26.23364],[73.7915,26.22401],[73.79285,26.22491],[73.79848,26.21573],[73.80411,26.20013],[73.79854,26.20083],[73.79108,26.1855],[73.79011,26.17279],[73.78748,26.16346],[73.78366,26.16305],[73.78502,26.15942],[73.78367,26.14884],[73.79173,26.1466],[73.79157,26.1437],[73.79439,26.14349],[73.79906,26.1337],[73.80296,26.131],[73.80389,26.12747],[73.80548,26.12766],[73.80581,26.11804],[73.80992,26.114],[73.80889,26.11161],[73.81127,26.11065],[73.8001,26.09206],[73.78359,26.09613],[73.76751,26.09609],[73.75986,26.09419],[73.76058,26.09155],[73.758,26.0915],[73.75776,26.09015],[73.75277,26.09047],[73.751,26.09853],[73.7487,26.10136],[73.74541,26.10392],[73.74094,26.10464],[73.74104,26.11049],[73.73212,26.11073],[73.70835,26.0945],[73.70859,26.09048],[73.69439,26.06545],[73.6867,26.06439],[73.67753,26.0674],[73.6773,26.06511],[73.6747,26.06752],[73.66805,26.06689],[73.65593,26.06938],[73.65605,26.07061],[73.65294,26.07071],[73.65316,26.07678],[73.64812,26.07732],[73.64645,26.08876],[73.64902,26.09284],[73.64994,26.10199],[73.6488,26.10624],[73.65026,26.11225],[73.654,26.1177],[73.65103,26.11891],[73.65248,26.12254],[73.64847,26.12528],[73.64709,26.12891],[73.6283,26.14475],[73.62428,26.1432],[73.61798,26.13428],[73.61299,26.1336],[73.61223,26.12856],[73.60536,26.1284],[73.60558,26.12571],[73.60192,26.12465],[73.59955,26.12826],[73.58701,26.12296],[73.57496,26.12797],[73.5733,26.12617],[73.57798,26.11967],[73.57864,26.1121],[73.56968,26.11057],[73.56807,26.10757],[73.56293,26.10722],[73.5582,26.10309],[73.55132,26.10625],[73.54201,26.10636],[73.53456,26.10185],[73.53394,26.10292],[73.52165,26.10006],[73.52219,26.09138],[73.52424,26.09165],[73.52429,26.08695],[73.52758,26.07757],[73.52797,26.07327],[73.52622,26.06992],[73.52756,26.06167],[73.52556,26.06141],[73.51453,26.06648],[73.50762,26.06584],[73.50535,26.07228],[73.49705,26.08424],[73.49139,26.08018],[73.48639,26.08375],[73.4848,26.07987],[73.47612,26.08377],[73.46405,26.08355],[73.45352,26.10655],[73.44906,26.10742],[73.44802,26.11061],[73.44512,26.11034],[73.43758,26.12492],[73.43162,26.12705],[73.43145,26.13017],[73.42808,26.12926],[73.42844,26.12791],[73.41589,26.12725],[73.40938,26.12406],[73.40455,26.1335],[73.40533,26.13748],[73.40254,26.16057],[73.38918,26.15768],[73.38702,26.15262],[73.37521,26.15357],[73.37794,26.14942],[73.37293,26.1481],[73.37562,26.13742],[73.37246,26.13638],[73.37057,26.13323],[73.3665,26.13479],[73.36045,26.13138],[73.34135,26.11562],[73.34852,26.08761],[73.35214,26.08407],[73.35208,26.08213],[73.3564,26.08238],[73.35698,26.07928],[73.3623,26.08105],[73.36393,26.07837],[73.35712,26.07505],[73.3585,26.06202],[73.35521,26.06036],[73.3513,26.06301],[73.34673,26.06322],[73.32871,26.05364],[73.32919,26.05025],[73.32616,26.04611],[73.32709,26.042],[73.31584,26.03615],[73.31745,26.02484],[73.32294,26.01377],[73.31994,26.01106],[73.31751,26.01035],[73.30789,26.01429],[73.30756,26.02574],[73.30429,26.0317],[73.29468,26.03155],[73.27846,26.03881],[73.27209,26.04507],[73.2745,26.04943],[73.26739,26.05665],[73.26384,26.05741],[73.25661,26.05413],[73.2524,26.05828],[73.25,26.0651],[73.25827,26.06585],[73.25952,26.06734],[73.25837,26.06987],[73.24718,26.06905],[73.24071,26.07876],[73.23972,26.08291],[73.23186,26.08094],[73.23124,26.07751],[73.22343,26.0718],[73.2216,26.0759],[73.21882,26.0761],[73.20935,26.07239],[73.20824,26.075],[73.20348,26.07329],[73.20247,26.07657],[73.19882,26.07692],[73.19708,26.0814],[73.19186,26.08197],[73.19406,26.06901],[73.1854,26.06233],[73.18681,26.06039],[73.17738,26.05345],[73.18548,26.03358],[73.16179,26.0323],[73.1524,26.0366],[73.14227,26.04489],[73.13557,26.04586],[73.12628,26.04177],[73.12155,26.0365],[73.12032,26.03232],[73.11428,26.02867],[73.09968,26.02736],[73.09819,26.02477],[73.08355,26.01871],[73.07107,26.01861],[73.05924,26.01457],[73.05255,26.01449],[73.04886,26.01145],[73.05328,26.0],[73.05256,25.99185],[73.05099,25.99018],[73.0523,25.98351],[73.05055,25.98105],[73.05076,25.97624],[73.04748,25.97137],[73.0453,25.9714],[73.04283,25.96458],[73.02511,25.95315],[72.99624,25.95435],[72.99876,25.9491],[72.99273,25.93975],[72.98136,25.93799],[72.9727,25.93356],[72.9741,25.91981],[72.96507,25.91154],[72.96242,25.90676],[72.95981,25.90632],[72.95858,25.90025],[72.9374,25.90236],[72.93248,25.90118],[72.91629,25.89238],[72.88926,25.88993],[72.88516,25.89255],[72.87882,25.89263],[72.87295,25.8888],[72.86916,25.89029],[72.86748,25.89887],[72.85918,25.89899],[72.8554,25.89728],[72.8539,25.8925],[72.84584,25.89353],[72.8457,25.89145],[72.84169,25.88958],[72.84298,25.88665],[72.84166,25.88173],[72.84258,25.87711],[72.84041,25.86772],[72.8355,25.86379],[72.83746,25.85382],[72.84974,25.83923],[72.84295,25.82915],[72.84065,25.822],[72.83388,25.81674],[72.82519,25.81636],[72.81874,25.82184],[72.81526,25.82154],[72.80705,25.82516],[72.80606,25.82854],[72.80186,25.82757],[72.79164,25.81322],[72.78219,25.81009],[72.77767,25.80556],[72.77784,25.80256],[72.78497,25.79749],[72.79971,25.79306],[72.80145,25.78196],[72.80805,25.77687],[72.81693,25.77275],[72.82377,25.76439],[72.83198,25.7656],[72.83645,25.76019],[72.84164,25.75831],[72.84163,25.75581],[72.86039,25.75361],[72.8708,25.75029],[72.86994,25.74582],[72.87488,25.73687],[72.87887,25.74063],[72.88231,25.73633],[72.89063,25.73625],[72.88953,25.73544],[72.8902,25.72467],[72.89889,25.71021],[72.88447,25.70174],[72.88768,25.69897],[72.88763,25.6959],[72.89056,25.69452],[72.89262,25.68894],[72.89903,25.692],[72.90139,25.689],[72.90574,25.69055],[72.90763,25.68842],[72.90923,25.68974],[72.91351,25.6875],[72.9155,25.68356],[72.91923,25.68567],[72.92439,25.68466],[72.92587,25.68579],[72.92925,25.68338],[72.93154,25.6852],[72.92794,25.67702],[72.91929,25.67047],[72.92032,25.66583],[72.92348,25.66343],[72.92155,25.66094],[72.9293,25.65032],[72.93142,25.65084],[72.93141,25.64775],[72.93779,25.64734],[72.93654,25.63546],[72.96175,25.62988],[72.96301,25.62412],[72.96788,25.62359],[72.9709,25.62534],[72.97584,25.62144],[72.97742,25.61808],[72.98022,25.60481],[72.98759,25.60533],[72.99242,25.59968],[73.00122,25.59338],[73.00611,25.59068],[73.01255,25.58975],[73.01174,25.58511],[73.0184,25.58527],[73.02767,25.58059],[73.03702,25.57264],[73.04208,25.56197],[73.05369,25.55711],[73.05442,25.55191],[73.05177,25.54739],[73.05417,25.53978],[73.05268,25.53368],[73.05487,25.52762],[73.05193,25.52264],[73.05357,25.51739],[73.05114,25.51582],[73.05259,25.51205],[73.0509,25.50854],[73.05658,25.50279],[73.05645,25.49917],[73.06,25.49651],[73.06549,25.49395],[73.07022,25.4944],[73.079,25.48968],[73.08287,25.49036],[73.08761,25.47911],[73.09123,25.46728],[73.08995,25.46551],[73.07666,25.45866],[73.06241,25.44778],[73.05339,25.44451],[73.06148,25.43742],[73.06157,25.43405],[73.05296,25.41339],[73.04795,25.40856],[73.03846,25.3937],[73.01849,25.37997],[73.01652,25.3804],[73.01546,25.38388],[73.00202,25.3922],[72.99896,25.391],[73.00202,25.38676],[72.99179,25.37931],[72.99063,25.37663],[72.99663,25.37199],[73.00528,25.36903],[73.00867,25.35682],[72.99259,25.34789],[72.98282,25.35895],[72.97504,25.37124],[72.96513,25.37172],[72.95645,25.37479],[72.94492,25.36274],[72.94072,25.36001],[72.93657,25.3604],[72.94017,25.35601],[72.94885,25.35251],[72.9543,25.34586],[72.96519,25.34089],[72.97288,25.3349],[72.97512,25.33131],[72.97807,25.31578],[72.99566,25.2865],[72.99773,25.27836],[72.9925,25.25929],[72.98932,25.25706],[72.98539,25.24926],[72.97503,25.24742],[72.96496,25.24327],[72.96401,25.24457],[72.94714,25.24408],[72.94723,25.24249],[72.94306,25.24297],[72.9429,25.24438],[72.94015,25.24265],[72.93598,25.24364],[72.93917,25.23892],[72.93735,25.23006],[72.93873,25.22424],[72.94183,25.22379],[72.94292,25.21851],[72.95507,25.21572],[72.96751,25.22561],[72.9733,25.22408],[72.97295,25.22037],[72.975,25.21988],[72.97582,25.21769],[72.97161,25.20273],[72.97377,25.19361],[72.95879,25.19381],[72.95497,25.18981],[72.95781,25.18211],[72.95045,25.1813],[72.94766,25.18662],[72.94268,25.18612],[72.9483,25.17718],[72.94841,25.1714],[72.94602,25.17041],[72.9455,25.16643],[72.95072,25.15295],[72.94984,25.1424],[72.97083,25.1421],[72.97637,25.13738],[72.97955,25.13722],[72.98098,25.139],[72.98129,25.13733],[72.983,25.13771],[72.98085,25.14436],[72.9854,25.14514],[72.98501,25.14854],[72.99587,25.14602],[72.9947,25.14135],[72.99682,25.14123],[72.99487,25.13504],[72.99609,25.13346],[72.99373,25.12903],[72.99463,25.11612],[72.99656,25.1038],[72.99951,25.10061],[73.01874,25.09404],[73.02213,25.08924],[73.0406,25.10238],[73.04786,25.10541],[73.04452,25.11842],[73.04329,25.13306],[73.0379,25.14285],[73.0419,25.16142],[73.0437,25.16291],[73.05398,25.1596],[73.06279,25.15147],[73.07042,25.14752],[73.07842,25.13718],[73.0864,25.13417],[73.08889,25.12939],[73.09807,25.12116],[73.10413,25.12069],[73.10493,25.11502],[73.11043,25.11042],[73.11737,25.10799],[73.12118,25.10952],[73.11999,25.11105],[73.12193,25.11455],[73.13045,25.10173],[73.13607,25.09764],[73.12998,25.08803],[73.13203,25.0815],[73.12988,25.06652],[73.11672,25.05216],[73.11158,25.04192],[73.10397,25.03666],[73.0777,25.02631],[73.07086,25.02191],[73.06657,25.01662],[73.05379,25.00909],[73.04132,24.98639],[73.03838,24.97247],[73.0274,24.96617],[73.01495,24.96936],[73.00955,24.96495],[73.00302,24.96537],[72.99637,24.96185],[72.99426,24.94891],[72.99922,24.93811],[72.99654,24.93594],[72.99194,24.92202],[73.0014,24.91507],[73.01249,24.91003],[73.03904,24.88763],[73.05591,24.88693],[73.06408,24.87555],[73.07873,24.86124],[73.08362,24.85935],[73.1064,24.85808],[73.11294,24.84484],[73.1149,24.84576],[73.12412,24.84197],[73.1258,24.84024],[73.12572,24.83725],[73.12777,24.83802],[73.13354,24.84654],[73.14849,24.84561],[73.16245,24.82579],[73.16745,24.82299],[73.17127,24.80841],[73.17188,24.78014],[73.16563,24.77318],[73.16451,24.76881],[73.1553,24.76099],[73.15427,24.75562],[73.14718,24.75064],[73.14624,24.74837],[73.15604,24.75095],[73.17035,24.76254],[73.18287,24.76664],[73.19343,24.7765],[73.19911,24.77857],[73.20209,24.77757],[73.20506,24.78215],[73.20962,24.78547],[73.21722,24.78433],[73.2209,24.78682],[73.23298,24.78449],[73.23997,24.79579],[73.24055,24.82367],[73.2583,24.83789],[73.26012,24.84297],[73.2695,24.85243],[73.27367,24.86351],[73.27203,24.87386],[73.27878,24.87463],[73.28093,24.87269],[73.28295,24.87833],[73.27938,24.88194],[73.2803,24.88645],[73.28421,24.88683],[73.29021,24.89343],[73.29733,24.89728],[73.29839,24.90106],[73.30828,24.89247],[73.31562,24.89627],[73.31564,24.89907],[73.32095,24.90578],[73.33089,24.90609],[73.33617,24.91795],[73.3369,24.93214],[73.34259,24.93601],[73.34675,24.94771],[73.34691,24.94893],[73.34467,24.94901],[73.34513,24.95279],[73.3504,24.95859],[73.34733,24.96167],[73.3456,24.96117],[73.33687,24.96518],[73.33558,24.96843],[73.33011,24.97342],[73.33852,24.98382],[73.33886,24.9861],[73.34222,24.98605],[73.34596,24.98896],[73.34633,24.99389],[73.34442,24.99419],[73.34359,24.99839],[73.3442,25.00223],[73.34594,25.00281],[73.34311,25.01063],[73.35213,25.0105],[73.35468,25.01235],[73.3542,25.01662],[73.35084,25.01869],[73.35549,25.02435],[73.37189,25.03282],[73.37248,25.03718],[73.37432,25.03748],[73.37669,25.04206],[73.38125,25.04511],[73.38437,25.05364],[73.38634,25.05326],[73.38722,25.05475],[73.38945,25.06587],[73.39241,25.06783],[73.39885,25.07728],[73.4055,25.07897],[73.40973,25.0825],[73.4097,25.08766],[73.41712,25.08681],[73.42041,25.08856],[73.43478,25.08966],[73.44161,25.08833],[73.44857,25.09049],[73.45442,25.08948],[73.46349,25.09358],[73.46652,25.09697],[73.47083,25.09794],[73.4728,25.10306],[73.47766,25.10247],[73.48747,25.10449],[73.49052,25.10801],[73.48934,25.11612],[73.49467,25.11592],[73.50069,25.11822],[73.49727,25.12322],[73.50176,25.12904],[73.51131,25.13301],[73.52011,25.14298],[73.52678,25.14477],[73.54283,25.15655],[73.54697,25.15388],[73.55049,25.15808],[73.55053,25.16325],[73.55585,25.16717],[73.56386,25.16656],[73.56503,25.17403],[73.57307,25.18415],[73.57324,25.1866],[73.58253,25.18677],[73.59045,25.18907],[73.59148,25.1919],[73.59423,25.19341],[73.59324,25.20184],[73.5964,25.20222],[73.5973,25.2051],[73.60153,25.20568],[73.60174,25.21603],[73.60285,25.22129],[73.60466,25.22218],[73.60928,25.24999],[73.61067,25.25236],[73.61412,25.25026],[73.61871,25.25331],[73.6211,25.25968],[73.61771,25.26334],[73.61524,25.27253],[73.61253,25.27351],[73.6137,25.27664],[73.60961,25.28296],[73.6102,25.28755],[73.61516,25.29134],[73.61919,25.29823],[73.63713,25.31334],[73.64312,25.31535],[73.64871,25.30761],[73.64666,25.3234],[73.65238,25.32531],[73.65945,25.3317],[73.6616,25.332],[73.66478,25.33646],[73.66481,25.34079],[73.6684,25.34476],[73.6834,25.35061],[73.69086,25.35714],[73.69818,25.35958],[73.71037,25.37826],[73.70889,25.3792],[73.7099,25.38047],[73.71452,25.37806],[73.71609,25.37931],[73.72376,25.37926],[73.72569,25.37797],[73.73221,25.37926],[73.7404,25.39099],[73.74319,25.39254],[73.75287,25.41062],[73.75085,25.41895],[73.75406,25.42873],[73.75396,25.43789],[73.759,25.44137],[73.76936,25.45873],[73.7747,25.46993],[73.77543,25.47687],[73.77983,25.48394],[73.78657,25.48695],[73.79685,25.49466],[73.80214,25.50612],[73.80593,25.51011],[73.80772,25.52131],[73.81252,25.53618],[73.82362,25.5527],[73.8332,25.57481],[73.8275,25.58119],[73.83028,25.58331],[73.83753,25.60011],[73.84512,25.60503],[73.85753,25.62456],[73.86343,25.63606],[73.86429,25.64964],[73.86967,25.65207],[73.88497,25.6678],[73.89329,25.66666],[73.89802,25.67218],[73.90266,25.67214],[73.90434,25.67764],[73.91566,25.6971],[73.91127,25.70605],[73.91325,25.72506],[73.90752,25.74077],[73.92503,25.76164],[73.92581,25.76625],[73.93183,25.76754],[73.92998,25.784],[73.92472,25.78715],[73.92505,25.79194],[73.94527,25.80411],[73.9459,25.81194],[73.94465,25.82018],[73.94201,25.82557],[73.9479,25.83494],[73.95417,25.84036],[73.96728,25.83585],[73.96908,25.83329],[73.97415,25.83799],[73.97473,25.84034],[73.97331,25.84132],[73.97468,25.84673],[73.97857,25.85193],[73.99654,25.86571],[74.00622,25.8633],[74.0189,25.85263],[74.0539,25.82925],[74.05611,25.8324],[74.0664,25.83758],[74.06756,25.83874],[74.06524,25.84033],[74.06694,25.84164],[74.07793,25.84567],[74.08071,25.84834],[74.09081,25.85214],[74.09757,25.84769],[74.10875,25.85443],[74.11212,25.8616],[74.11758,25.86425],[74.11594,25.86596],[74.11576,25.87034],[74.11743,25.88053],[74.12467,25.88363],[74.13205,25.884],[74.13908,25.8895],[74.14091,25.89178],[74.13992,25.8978],[74.15075,25.91087],[74.15744,25.9154],[74.16252,25.92502],[74.16298,25.92739],[74.14736,25.9432],[74.15711,25.95719],[74.14991,25.9582],[74.14632,25.95595],[74.14025,25.95866],[74.13367,25.9559],[74.12691,25.96038],[74.13113,25.96205],[74.14973,25.98557],[74.16572,25.99971],[74.17034,26.00958],[74.16868,26.01565],[74.15518,26.0257],[74.15282,26.04265],[74.15346,26.04618],[74.15958,26.05232],[74.16304,26.06776],[74.17041,26.06767],[74.17699,26.0628],[74.17615,26.0421],[74.17764,26.03647],[74.18079,26.03255],[74.18614,26.03209],[74.19386,26.03614],[74.20651,26.04782],[74.21001,26.04629],[74.21837,26.04755],[74.22198,26.05181],[74.22127,26.05499],[74.22655,26.05783],[74.22985,26.05801],[74.23164,26.05469],[74.23967,26.0521],[74.24483,26.05385],[74.24036,26.05988],[74.23787,26.06647],[74.24448,26.07886],[74.25,26.08561],[74.25853,26.09058],[74.25941,26.09607],[74.26627,26.10278],[74.27219,26.10203],[74.27943,26.11216],[74.28172,26.11279],[74.28633,26.12139],[74.29545,26.12369],[74.30189,26.13332],[74.29132,26.1432],[74.29168,26.14559],[74.28506,26.15193],[74.273,26.15867],[74.27072,26.16308],[74.27281,26.17374],[74.28617,26.16879],[74.29048,26.17035],[74.29301,26.17769],[74.3011,26.18559],[74.30372,26.18646],[74.31039,26.18485],[74.31712,26.18141],[74.31935,26.18312],[74.32012,26.18698],[74.34035,26.19611],[74.3523,26.1947],[74.35414,26.19136],[74.36759,26.19122],[74.37533,26.21065],[74.37506,26.22648],[74.36873,26.22927],[74.36865,26.23974],[74.37375,26.25024],[74.37853,26.25534],[74.39827,26.26489],[74.39832,26.26758],[74.38726,26.27783],[74.36019,26.2913],[74.35348,26.2875],[74.34376,26.27622],[74.33251,26.26893],[74.32849,26.26375],[74.32121,26.26071],[74.31039,26.25156],[74.30452,26.25057],[74.29598,26.25153],[74.27324,26.26038],[74.27382,26.26295],[74.26996,26.26588],[74.26517,26.27638],[74.25941,26.27722],[74.2521,26.28609],[74.27174,26.30898],[74.27885,26.31252],[74.28934,26.32073],[74.29463,26.32202],[74.29721,26.32495],[74.30395,26.32752],[74.30474,26.3292],[74.30698,26.34579],[74.30339,26.35793],[74.30414,26.37119],[74.30263,26.37522],[74.30459,26.38245],[74.29296,26.39099],[74.2924,26.40167],[74.28877,26.40783],[74.28756,26.42002],[74.289,26.4248],[74.28894,26.43562],[74.29213,26.44796],[74.28907,26.45148],[74.27894,26.45333],[74.2779,26.45614],[74.27463,26.45752],[74.27237,26.45384],[74.26388,26.45298],[74.23736,26.46129],[74.22922,26.4532],[74.22682,26.45441],[74.21867,26.44498],[74.21091,26.44541],[74.20977,26.44348],[74.20398,26.44312],[74.20389,26.44115],[74.19844,26.44175],[74.19832,26.44057],[74.19459,26.44014],[74.19431,26.43818],[74.18995,26.43781],[74.19192,26.42684],[74.18403,26.42421],[74.17268,26.42304],[74.17272,26.41555],[74.16001,26.41007],[74.1573,26.41684],[74.15711,26.4244],[74.14617,26.42822],[74.146,26.43065],[74.13929,26.43025],[74.1372,26.43458],[74.13891,26.43502],[74.13872,26.43717],[74.13449,26.43793],[74.13118,26.44103]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"112","area_level":"District","area_name":"Rajsamand","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.11825,25.86341],[74.11319,25.86254],[74.10875,25.85443],[74.09757,25.84769],[74.09358,25.85119],[74.08782,25.84478],[74.08022,25.84574],[74.07851,25.84103],[74.07505,25.83883],[74.06263,25.83311],[74.06105,25.83291],[74.06079,25.83461],[74.05611,25.8324],[74.0539,25.82925],[74.05937,25.8258],[74.06303,25.81945],[74.06491,25.81571],[74.06355,25.8125],[74.06608,25.80653],[74.077,25.80052],[74.07766,25.79626],[74.08277,25.79548],[74.09091,25.79033],[74.09158,25.78595],[74.09551,25.78207],[74.09139,25.77596],[74.09444,25.76917],[74.0908,25.76667],[74.08502,25.76787],[74.07117,25.76218],[74.06364,25.7572],[74.053,25.75421],[74.04931,25.75382],[74.04449,25.76043],[74.04306,25.75802],[74.03666,25.75823],[74.0214,25.74772],[74.00931,25.74253],[74.00424,25.73286],[73.97782,25.71152],[73.98723,25.70692],[73.99365,25.70802],[74.00738,25.70694],[74.01295,25.70502],[74.01472,25.70209],[74.01084,25.69619],[73.99005,25.68305],[73.98542,25.67527],[73.98856,25.66873],[73.98692,25.66642],[73.9786,25.66837],[73.96934,25.65872],[73.9612,25.65609],[73.9505,25.64773],[73.94497,25.64976],[73.94651,25.65532],[73.94014,25.66227],[73.93934,25.66655],[73.92923,25.67177],[73.93211,25.67824],[73.91818,25.68106],[73.90916,25.68496],[73.90266,25.67214],[73.89802,25.67218],[73.89329,25.66666],[73.88497,25.6678],[73.86967,25.65207],[73.86429,25.64964],[73.86343,25.63606],[73.85753,25.62456],[73.84512,25.60503],[73.83753,25.60011],[73.83028,25.58331],[73.8275,25.58119],[73.8332,25.57481],[73.82362,25.5527],[73.81252,25.53618],[73.80772,25.52131],[73.80593,25.51011],[73.80214,25.50612],[73.79685,25.49466],[73.78657,25.48695],[73.77983,25.48394],[73.77543,25.47687],[73.7747,25.46993],[73.76936,25.45873],[73.759,25.44137],[73.75396,25.43789],[73.75406,25.42873],[73.75085,25.41895],[73.75287,25.41062],[73.74342,25.39285],[73.7404,25.39099],[73.73221,25.37926],[73.72569,25.37797],[73.72376,25.37926],[73.71609,25.37931],[73.71452,25.37806],[73.7099,25.38047],[73.70889,25.3792],[73.71037,25.37826],[73.69818,25.35958],[73.69086,25.35714],[73.6834,25.35061],[73.6684,25.34476],[73.66481,25.34079],[73.66478,25.33646],[73.6616,25.332],[73.65945,25.3317],[73.65238,25.32531],[73.64666,25.3234],[73.64871,25.30761],[73.64554,25.31331],[73.64208,25.31515],[73.63713,25.31334],[73.61919,25.29823],[73.61516,25.29134],[73.6102,25.28755],[73.60961,25.28296],[73.61365,25.27685],[73.61253,25.27351],[73.61524,25.27253],[73.61771,25.26334],[73.62113,25.26052],[73.6206,25.25718],[73.61552,25.25099],[73.61412,25.25026],[73.61067,25.25236],[73.60928,25.24999],[73.60466,25.22218],[73.60285,25.22129],[73.60174,25.21603],[73.60153,25.20568],[73.5973,25.2051],[73.5964,25.20222],[73.59324,25.20184],[73.59423,25.19341],[73.59148,25.1919],[73.59014,25.1889],[73.58253,25.18677],[73.57324,25.1866],[73.57307,25.18415],[73.56503,25.17403],[73.56386,25.16656],[73.55585,25.16717],[73.55053,25.16325],[73.55049,25.15808],[73.54697,25.15388],[73.54283,25.15655],[73.52678,25.14477],[73.52011,25.14298],[73.51131,25.13301],[73.50176,25.12904],[73.49727,25.12322],[73.50069,25.11822],[73.49467,25.11592],[73.48934,25.11612],[73.49052,25.10801],[73.48747,25.10449],[73.49107,25.10045],[73.49821,25.09824],[73.50264,25.0944],[73.50366,25.09023],[73.49934,25.08438],[73.50487,25.07845],[73.50193,25.07465],[73.49954,25.07434],[73.49978,25.06584],[73.49528,25.05449],[73.49679,25.05381],[73.47271,25.02499],[73.48178,25.01798],[73.4796,25.00945],[73.49059,25.00532],[73.50327,25.02258],[73.53215,25.01096],[73.52329,24.99522],[73.51897,24.9936],[73.5186,24.99078],[73.50801,24.97399],[73.51389,24.97069],[73.52405,24.96823],[73.52649,24.9656],[73.52636,24.96273],[73.52795,24.96248],[73.52815,24.95575],[73.53426,24.95324],[73.53232,24.94008],[73.53653,24.93409],[73.53549,24.9241],[73.5378,24.91493],[73.54006,24.91471],[73.54069,24.91222],[73.54305,24.91088],[73.54444,24.91222],[73.54816,24.90984],[73.54818,24.91232],[73.54992,24.91268],[73.55392,24.91146],[73.56828,24.91312],[73.56627,24.89601],[73.56886,24.89268],[73.5729,24.89035],[73.58018,24.89186],[73.58162,24.8989],[73.58349,24.89895],[73.58803,24.89523],[73.58795,24.89358],[73.59229,24.89208],[73.59179,24.88888],[73.59646,24.8877],[73.59647,24.88498],[73.60602,24.88164],[73.60562,24.87819],[73.60896,24.86977],[73.61222,24.87339],[73.61889,24.87303],[73.61893,24.87479],[73.62345,24.87906],[73.62428,24.87589],[73.64025,24.88166],[73.64625,24.88192],[73.64722,24.88025],[73.65324,24.88091],[73.66508,24.87263],[73.66568,24.87477],[73.66783,24.87495],[73.66904,24.87166],[73.67124,24.87163],[73.67359,24.86835],[73.68456,24.86646],[73.68907,24.86161],[73.68753,24.85761],[73.68842,24.8553],[73.68721,24.85522],[73.68779,24.85131],[73.68548,24.84619],[73.68749,24.84514],[73.68413,24.84321],[73.68405,24.83794],[73.68101,24.83467],[73.67612,24.83281],[73.66522,24.83452],[73.66303,24.82626],[73.66465,24.82558],[73.66482,24.82283],[73.66141,24.8143],[73.6574,24.81232],[73.64845,24.79514],[73.65114,24.79411],[73.65488,24.78891],[73.65533,24.7843],[73.65316,24.77809],[73.66874,24.77692],[73.67159,24.77532],[73.67227,24.76951],[73.66943,24.76149],[73.66133,24.75687],[73.65147,24.75644],[73.64732,24.74922],[73.64536,24.7404],[73.65086,24.73801],[73.65505,24.7296],[73.66843,24.72623],[73.66974,24.72984],[73.66665,24.73724],[73.68111,24.73948],[73.68768,24.7443],[73.69033,24.7379],[73.69757,24.73711],[73.69821,24.74252],[73.69294,24.74772],[73.70302,24.74914],[73.70433,24.75235],[73.70079,24.75791],[73.70717,24.76243],[73.71457,24.76341],[73.71573,24.76876],[73.70968,24.76757],[73.70663,24.77082],[73.70399,24.77133],[73.70042,24.77635],[73.7007,24.78463],[73.7052,24.78854],[73.70978,24.78062],[73.71763,24.77566],[73.7197,24.7691],[73.72366,24.7692],[73.72704,24.76691],[73.73359,24.75863],[73.73256,24.75307],[73.73803,24.74279],[73.73755,24.7389],[73.73985,24.73905],[73.74425,24.72993],[73.75,24.73102],[73.75469,24.72883],[73.75776,24.73047],[73.75959,24.72756],[73.75994,24.7168],[73.76736,24.71567],[73.77263,24.7184],[73.77469,24.72293],[73.78373,24.72443],[73.78703,24.73573],[73.79095,24.74218],[73.79901,24.74332],[73.81077,24.7478],[73.81027,24.75041],[73.80142,24.75207],[73.79672,24.74736],[73.79008,24.7458],[73.78775,24.75091],[73.77911,24.75443],[73.78167,24.75923],[73.7806,24.76771],[73.78431,24.77138],[73.78311,24.7741],[73.77575,24.77692],[73.77568,24.77933],[73.77861,24.77967],[73.77982,24.78215],[73.78235,24.78123],[73.78464,24.78384],[73.78197,24.78923],[73.78222,24.79362],[73.78408,24.7939],[73.78492,24.79995],[73.78894,24.80353],[73.79511,24.80367],[73.7999,24.79967],[73.80765,24.79805],[73.81164,24.80167],[73.80328,24.81327],[73.80054,24.81258],[73.80316,24.81817],[73.81221,24.81699],[73.82171,24.82255],[73.82465,24.83254],[73.82163,24.83622],[73.82265,24.83966],[73.81997,24.84145],[73.81746,24.84652],[73.81204,24.84582],[73.80998,24.84869],[73.81016,24.85566],[73.80581,24.86016],[73.79705,24.86311],[73.80236,24.86547],[73.80325,24.86917],[73.82231,24.88898],[73.82779,24.89216],[73.82787,24.89367],[73.83467,24.89402],[73.83727,24.89603],[73.83696,24.90371],[73.83926,24.90672],[73.85301,24.90242],[73.85782,24.89715],[73.86384,24.89849],[73.86803,24.8953],[73.87146,24.89504],[73.87597,24.8924],[73.87229,24.89097],[73.87253,24.88928],[73.87634,24.88806],[73.87755,24.8908],[73.87894,24.88688],[73.88736,24.88556],[73.89708,24.87538],[73.90147,24.87515],[73.90791,24.87979],[73.91404,24.89194],[73.92912,24.88468],[73.92793,24.8798],[73.92909,24.87036],[73.93305,24.85894],[73.93758,24.85144],[73.9376,24.84819],[73.94201,24.84649],[73.94733,24.84786],[73.95267,24.84563],[73.96004,24.85485],[73.95826,24.8639],[73.96027,24.87496],[73.95837,24.88179],[73.95967,24.89224],[73.95735,24.89739],[73.95191,24.9011],[73.95865,24.90007],[73.96402,24.90134],[73.9717,24.90675],[73.97296,24.91131],[73.98117,24.90847],[73.98444,24.90895],[73.99046,24.91312],[73.9951,24.92153],[74.00389,24.91163],[74.01175,24.90804],[74.01094,24.9056],[74.01358,24.90398],[74.01336,24.90063],[74.01694,24.8957],[74.02063,24.89573],[74.02037,24.89326],[74.03349,24.90305],[74.04611,24.90405],[74.05582,24.90768],[74.05955,24.90331],[74.06114,24.89847],[74.06436,24.88155],[74.07013,24.87769],[74.06902,24.87319],[74.07498,24.87405],[74.08214,24.86726],[74.09969,24.86625],[74.1165,24.88145],[74.12558,24.88528],[74.14317,24.88071],[74.15279,24.89833],[74.15755,24.89833],[74.15838,24.9148],[74.17066,24.91679],[74.17609,24.9234],[74.17897,24.92463],[74.18321,24.93392],[74.18295,24.94136],[74.18479,24.94423],[74.18798,24.94497],[74.19437,24.95051],[74.19814,24.96204],[74.19424,24.97897],[74.19618,24.98624],[74.2024,24.98348],[74.21146,24.98929],[74.22149,24.99025],[74.22175,24.99492],[74.2356,24.99519],[74.23525,24.99246],[74.23646,24.99178],[74.2373,24.99518],[74.25129,24.98984],[74.25712,24.98567],[74.25778,24.98241],[74.26095,24.9821],[74.26328,24.98273],[74.26498,24.98618],[74.26223,24.98638],[74.2622,24.98901],[74.26852,24.99462],[74.27069,24.99384],[74.27205,24.99539],[74.27846,24.99241],[74.28183,24.99839],[74.28739,24.99602],[74.29151,25.00195],[74.29988,24.9964],[74.29964,24.99355],[74.30357,24.99223],[74.3059,25.0],[74.31483,25.0113],[74.31147,25.01511],[74.31687,25.02515],[74.32081,25.02526],[74.31868,25.03149],[74.31568,25.0316],[74.31503,25.03569],[74.29451,25.03733],[74.29656,25.04463],[74.29541,25.04711],[74.28495,25.05299],[74.28234,25.05881],[74.27486,25.06345],[74.26953,25.06219],[74.26878,25.05852],[74.26489,25.0606],[74.26398,25.06308],[74.24491,25.07035],[74.22718,25.06854],[74.22207,25.06495],[74.21857,25.05759],[74.22603,25.05012],[74.21253,25.04886],[74.21109,25.0492],[74.2108,25.05154],[74.2022,25.0556],[74.19723,25.05621],[74.19299,25.05447],[74.18931,25.05679],[74.18769,25.06037],[74.18831,25.06812],[74.18704,25.07227],[74.189,25.07732],[74.18648,25.08637],[74.18786,25.08829],[74.18086,25.0896],[74.18385,25.09506],[74.1881,25.09402],[74.18839,25.0993],[74.1819,25.10065],[74.17774,25.10386],[74.1766,25.10651],[74.17878,25.11318],[74.16959,25.12036],[74.16603,25.12622],[74.15278,25.12302],[74.15011,25.1275],[74.14696,25.1291],[74.13216,25.12923],[74.13221,25.13219],[74.1132,25.14044],[74.10963,25.13415],[74.09912,25.13713],[74.09969,25.13898],[74.09727,25.13987],[74.09768,25.14128],[74.09307,25.14203],[74.09434,25.15083],[74.07963,25.1503],[74.07926,25.14835],[74.069,25.14098],[74.06056,25.14152],[74.05738,25.14747],[74.06304,25.15236],[74.07507,25.17974],[74.08329,25.17737],[74.08468,25.18176],[74.08782,25.18216],[74.09076,25.18541],[74.10038,25.18478],[74.1031,25.18952],[74.10429,25.2042],[74.124,25.24272],[74.11278,25.24696],[74.10167,25.23721],[74.09795,25.23584],[74.09737,25.23376],[74.08026,25.24142],[74.06258,25.24336],[74.05094,25.23591],[74.04714,25.238],[74.04774,25.24366],[74.03882,25.26328],[74.03482,25.26159],[74.02982,25.26215],[74.03096,25.26812],[74.0278,25.27163],[74.02852,25.28364],[74.03599,25.29061],[74.0375,25.29887],[74.03642,25.30191],[74.03135,25.30287],[74.02467,25.30855],[74.02233,25.30841],[74.02297,25.31594],[74.0248,25.31662],[74.02641,25.31366],[74.03191,25.31435],[74.04124,25.31001],[74.04174,25.30759],[74.04546,25.30544],[74.04492,25.30079],[74.05343,25.30336],[74.06238,25.30073],[74.06839,25.30196],[74.07707,25.30043],[74.08126,25.30523],[74.07954,25.30659],[74.08426,25.30925],[74.08278,25.31052],[74.0798,25.30833],[74.07904,25.31036],[74.08307,25.31494],[74.08189,25.32058],[74.07526,25.32615],[74.06789,25.31945],[74.06073,25.32357],[74.05074,25.32326],[74.04832,25.32828],[74.03732,25.33059],[74.0341,25.33407],[74.03174,25.33929],[74.02908,25.34012],[74.02683,25.34416],[74.02209,25.34782],[74.02155,25.35186],[74.0238,25.35472],[74.02584,25.36475],[74.022,25.36834],[74.02121,25.3753],[74.01413,25.37786],[74.0129,25.38549],[74.01483,25.38813],[74.01258,25.38864],[74.01823,25.39254],[74.02069,25.3913],[74.02341,25.39273],[74.03081,25.38612],[74.03965,25.39871],[74.04972,25.3957],[74.05578,25.40299],[74.06083,25.40233],[74.06714,25.40506],[74.07002,25.40234],[74.07508,25.40618],[74.07684,25.41168],[74.06708,25.41514],[74.06114,25.41495],[74.05638,25.41769],[74.05799,25.42343],[74.06515,25.43069],[74.06516,25.43303],[74.05972,25.43911],[74.0574,25.4369],[74.03933,25.4393],[74.0344,25.43876],[74.02618,25.43503],[74.01985,25.43647],[74.01699,25.43862],[74.01767,25.44575],[74.01977,25.44626],[74.02085,25.45141],[74.01482,25.45208],[74.0211,25.45257],[74.02115,25.45381],[74.02327,25.45272],[74.02689,25.45828],[74.02969,25.45741],[74.02753,25.46346],[74.03683,25.46365],[74.03969,25.46004],[74.05009,25.4602],[74.05332,25.46266],[74.05036,25.46568],[74.04385,25.46619],[74.04806,25.46878],[74.03757,25.47326],[74.03693,25.47749],[74.04082,25.48629],[74.03556,25.48782],[74.03923,25.49392],[74.04227,25.49526],[74.04235,25.49876],[74.04596,25.49835],[74.05145,25.49459],[74.05496,25.49509],[74.0678,25.48859],[74.07488,25.4938],[74.07605,25.49177],[74.07671,25.49293],[74.08314,25.49185],[74.08711,25.49334],[74.09309,25.49203],[74.09508,25.49739],[74.09317,25.49814],[74.09222,25.49535],[74.09046,25.49513],[74.08334,25.5],[74.08656,25.50074],[74.08737,25.50465],[74.09581,25.50572],[74.09918,25.50913],[74.09834,25.51241],[74.10098,25.51154],[74.10404,25.51282],[74.10387,25.51421],[74.09364,25.51959],[74.09413,25.5206],[74.08461,25.5239],[74.08205,25.52735],[74.07809,25.5385],[74.0825,25.54817],[74.08449,25.55803],[74.07258,25.56039],[74.06637,25.56385],[74.06631,25.5621],[74.06271,25.56192],[74.0549,25.56624],[74.05493,25.57286],[74.06627,25.58194],[74.08291,25.5834],[74.09037,25.5958],[74.09728,25.59107],[74.10417,25.59195],[74.10924,25.6036],[74.11909,25.60649],[74.11591,25.61398],[74.11374,25.62722],[74.11674,25.6374],[74.12778,25.64689],[74.11986,25.65171],[74.11931,25.6553],[74.11636,25.65842],[74.10706,25.65771],[74.09868,25.66336],[74.09199,25.67216],[74.08518,25.67616],[74.08147,25.67584],[74.07959,25.67801],[74.07925,25.68144],[74.08564,25.6971],[74.08415,25.70413],[74.09901,25.71469],[74.10092,25.71866],[74.10786,25.72232],[74.11379,25.71973],[74.11946,25.72188],[74.13204,25.72325],[74.14363,25.72691],[74.14722,25.73151],[74.15645,25.73405],[74.16484,25.73035],[74.17012,25.73219],[74.17415,25.73631],[74.18247,25.73699],[74.18263,25.73935],[74.18412,25.7399],[74.1952,25.73957],[74.19084,25.76171],[74.18711,25.76476],[74.18934,25.76837],[74.19557,25.76761],[74.20289,25.7734],[74.20733,25.7747],[74.20252,25.78313],[74.19835,25.80065],[74.20329,25.8017],[74.21302,25.80719],[74.19521,25.8149],[74.19391,25.8204],[74.18116,25.8178],[74.17135,25.8116],[74.17284,25.82641],[74.17594,25.8275],[74.18027,25.83403],[74.17927,25.83907],[74.18409,25.84861],[74.17949,25.84632],[74.15765,25.85235],[74.15167,25.85732],[74.13771,25.85668],[74.12693,25.86351],[74.11825,25.86341]],[[74.11796,24.96963],[74.12211,24.9686],[74.12354,24.96506],[74.12823,24.96431],[74.12836,24.96111],[74.12483,24.95946],[74.12031,24.95332],[74.11763,24.95278],[74.11658,24.96867],[74.11796,24.96963]]],[[[74.24206,25.85767],[74.24575,25.8609],[74.24934,25.86548],[74.25564,25.86897],[74.25131,25.87172],[74.24828,25.8749],[74.24631,25.87829],[74.24073,25.88532],[74.23689,25.88584],[74.23366,25.88686],[74.23374,25.88773],[74.22894,25.89018],[74.2275,25.89142],[74.22461,25.8948],[74.22533,25.89612],[74.22083,25.89733],[74.21962,25.89363],[74.21879,25.89285],[74.21205,25.89228],[74.21121,25.89022],[74.21093,25.8867],[74.20854,25.88593],[74.20831,25.88203],[74.20628,25.88098],[74.20794,25.87731],[74.20433,25.87519],[74.20527,25.87165],[74.20166,25.87032],[74.19991,25.86786],[74.19852,25.86492],[74.19454,25.86143],[74.19562,25.85955],[74.1945,25.85646],[74.19439,25.85372],[74.19707,25.85363],[74.19973,25.85191],[74.20263,25.85437],[74.20742,25.85432],[74.2095,25.85329],[74.21173,25.85344],[74.21254,25.85555],[74.2132,25.851],[74.22233,25.8462],[74.22423,25.84435],[74.22733,25.84312],[74.23056,25.84442],[74.23136,25.84632],[74.23463,25.84799],[74.23479,25.85172],[74.23718,25.85495],[74.24206,25.85767]]],[[[74.35504,26.01876],[74.34971,26.02425],[74.34552,26.022],[74.3463,26.02014],[74.34409,26.01567],[74.33655,26.01889],[74.33238,26.01474],[74.32923,26.0136],[74.32315,26.01362],[74.31759,26.00895],[74.31987,26.00391],[74.32236,26.00246],[74.32176,26.0],[74.31251,25.99818],[74.31154,25.99506],[74.31086,25.99582],[74.30878,25.99365],[74.30896,25.99207],[74.30311,25.98988],[74.29653,25.98243],[74.29347,25.98172],[74.29239,25.98008],[74.29319,25.97745],[74.29181,25.97258],[74.2944,25.97095],[74.29455,25.9693],[74.28846,25.96732],[74.28281,25.96201],[74.28833,25.96129],[74.2884,25.95714],[74.29048,25.95321],[74.2899,25.94949],[74.29162,25.9466],[74.29246,25.94087],[74.29094,25.93931],[74.29205,25.93449],[74.29128,25.92658],[74.2948,25.92413],[74.2984,25.92429],[74.3002,25.92304],[74.30001,25.91493],[74.2959,25.91433],[74.28877,25.91106],[74.28516,25.91852],[74.2865,25.92027],[74.28511,25.92444],[74.28277,25.92691],[74.28429,25.93078],[74.28262,25.93684],[74.28319,25.9393],[74.27884,25.93974],[74.2752,25.94367],[74.27678,25.9447],[74.27584,25.94682],[74.27728,25.94913],[74.27664,25.9513],[74.27076,25.95037],[74.26845,25.94532],[74.27243,25.94374],[74.27218,25.94261],[74.27012,25.94125],[74.27089,25.93928],[74.26685,25.93441],[74.25627,25.93619],[74.2504,25.93288],[74.25083,25.93632],[74.24747,25.93866],[74.24169,25.93357],[74.22869,25.93467],[74.23016,25.92896],[74.23286,25.92724],[74.23283,25.91649],[74.23559,25.9152],[74.23614,25.91243],[74.24014,25.90807],[74.24323,25.90966],[74.24505,25.9081],[74.24491,25.90437],[74.24745,25.9025],[74.24817,25.89859],[74.24573,25.89515],[74.24787,25.89475],[74.24831,25.89227],[74.26125,25.87996],[74.26197,25.87561],[74.26912,25.87151],[74.28095,25.87765],[74.2928,25.88994],[74.29603,25.8911],[74.30026,25.89004],[74.30712,25.89658],[74.31143,25.89529],[74.3166,25.88676],[74.32606,25.89237],[74.32787,25.89238],[74.33241,25.89753],[74.34476,25.90141],[74.34698,25.90345],[74.34828,25.90731],[74.34725,25.91958],[74.34352,25.92178],[74.32993,25.92274],[74.32809,25.92884],[74.33011,25.93374],[74.329,25.93688],[74.33693,25.94162],[74.33935,25.93975],[74.34451,25.94014],[74.34558,25.94163],[74.34811,25.94222],[74.35065,25.94806],[74.35373,25.95073],[74.37082,25.95278],[74.37587,25.9547],[74.38858,25.96356],[74.3863,25.97141],[74.38648,25.97502],[74.39163,25.98551],[74.39092,25.98787],[74.38539,25.99263],[74.38803,25.99998],[74.3863,26.00558],[74.38447,26.00585],[74.38021,26.0102],[74.37919,26.0075],[74.37575,26.01177],[74.37287,26.01236],[74.36935,26.01597],[74.36237,26.01858],[74.35794,26.01574],[74.35504,26.01876]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"113","area_level":"District","area_name":"Sawai Madhopur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.4974,26.70015],[76.4902,26.70501],[76.48837,26.71147],[76.48167,26.71308],[76.47386,26.71768],[76.46754,26.70327],[76.45701,26.68923],[76.45346,26.68814],[76.45672,26.68338],[76.46365,26.6779],[76.46335,26.66923],[76.45524,26.66496],[76.45024,26.65122],[76.44438,26.64647],[76.44289,26.64003],[76.43526,26.62624],[76.42431,26.60995],[76.41922,26.6073],[76.41857,26.5998],[76.41415,26.58935],[76.41452,26.58686],[76.40443,26.57016],[76.40386,26.56583],[76.40709,26.56226],[76.40643,26.55573],[76.41585,26.55119],[76.41121,26.54488],[76.42329,26.54293],[76.43356,26.55017],[76.43727,26.54995],[76.43891,26.55654],[76.44387,26.56],[76.44829,26.55659],[76.44899,26.55252],[76.45906,26.54451],[76.45841,26.53455],[76.46192,26.52141],[76.46567,26.52083],[76.47095,26.51601],[76.47603,26.51735],[76.47908,26.50424],[76.47735,26.4933],[76.47437,26.49033],[76.47054,26.49065],[76.46727,26.4849],[76.46513,26.47587],[76.45433,26.47834],[76.44853,26.47172],[76.44229,26.44336],[76.43932,26.44227],[76.43254,26.43495],[76.42673,26.43501],[76.42445,26.42468],[76.4215,26.42029],[76.41188,26.41608],[76.41432,26.40927],[76.41253,26.40164],[76.4134,26.39798],[76.4121,26.39475],[76.41038,26.39499],[76.40917,26.39311],[76.41047,26.39014],[76.40935,26.38827],[76.4061,26.38952],[76.40649,26.38633],[76.40484,26.38442],[76.40604,26.38329],[76.40357,26.37881],[76.39472,26.38723],[76.37828,26.39265],[76.36576,26.40182],[76.34141,26.40974],[76.33965,26.4173],[76.34167,26.42607],[76.33938,26.43693],[76.33413,26.44692],[76.32092,26.45735],[76.30726,26.45786],[76.29888,26.45383],[76.29104,26.45563],[76.27936,26.4482],[76.26831,26.44964],[76.25916,26.44481],[76.25026,26.44248],[76.2413,26.44781],[76.24274,26.45518],[76.24522,26.45895],[76.24283,26.46119],[76.23539,26.46397],[76.22437,26.46326],[76.20805,26.47448],[76.19248,26.48038],[76.18219,26.48189],[76.17567,26.48658],[76.16796,26.48373],[76.15881,26.47427],[76.15617,26.47405],[76.15092,26.46737],[76.14489,26.47033],[76.14159,26.47022],[76.14122,26.46805],[76.13762,26.46569],[76.1368,26.46051],[76.13196,26.46017],[76.13378,26.45429],[76.13863,26.4473],[76.14307,26.4446],[76.15276,26.44284],[76.15296,26.43885],[76.15103,26.42834],[76.14825,26.42571],[76.14788,26.41821],[76.15114,26.41186],[76.14202,26.4008],[76.13008,26.37525],[76.12944,26.36788],[76.13829,26.36369],[76.14078,26.35908],[76.13651,26.34998],[76.12842,26.34996],[76.12569,26.3455],[76.12402,26.34565],[76.12405,26.34004],[76.12667,26.33934],[76.12498,26.33481],[76.12921,26.33471],[76.13999,26.32647],[76.14072,26.32277],[76.13483,26.31954],[76.14333,26.31571],[76.14492,26.31099],[76.14038,26.30912],[76.1403,26.30338],[76.13786,26.29645],[76.13647,26.29525],[76.13227,26.2963],[76.13195,26.29391],[76.12812,26.29039],[76.12244,26.29044],[76.12319,26.28503],[76.11916,26.28469],[76.12136,26.28018],[76.11887,26.27777],[76.11022,26.27623],[76.11097,26.2603],[76.11791,26.25825],[76.11987,26.25332],[76.11717,26.25017],[76.11214,26.24799],[76.10454,26.24755],[76.10407,26.24518],[76.10235,26.24499],[76.1018,26.24075],[76.09619,26.2396],[76.08531,26.24049],[76.06657,26.24543],[76.06637,26.24414],[76.05854,26.24406],[76.04583,26.24988],[76.02603,26.2529],[76.02581,26.23623],[76.02796,26.22331],[76.00693,26.22011],[75.99015,26.22149],[75.98738,26.21092],[75.98314,26.21154],[75.98001,26.20082],[75.98085,26.19532],[75.98975,26.19622],[75.99575,26.1945],[76.00106,26.1917],[76.00071,26.18937],[76.00359,26.18843],[76.00183,26.18691],[76.00431,26.18577],[76.00111,26.17407],[75.99837,26.17134],[76.00205,26.16559],[76.00197,26.16242],[76.00093,26.16095],[75.99388,26.16138],[75.99974,26.15576],[75.99377,26.11663],[75.99773,26.11678],[76.00612,26.11224],[76.02323,26.1083],[76.03082,26.10929],[76.03949,26.11498],[76.04678,26.11248],[76.05385,26.11323],[76.05626,26.11497],[76.05907,26.12217],[76.05893,26.12705],[76.06335,26.13096],[76.07702,26.11919],[76.08058,26.11774],[76.07809,26.10795],[76.08256,26.10486],[76.08804,26.1042],[76.08211,26.0907],[76.08296,26.08596],[76.07937,26.0687],[76.08342,26.06767],[76.08323,26.06133],[76.08876,26.05831],[76.09824,26.06138],[76.09957,26.06021],[76.10566,26.06069],[76.10761,26.04761],[76.10397,26.04768],[76.10256,26.04455],[76.10037,26.04456],[76.10114,26.04237],[76.08954,26.0446],[76.09107,26.04149],[76.0896,26.03696],[76.08584,26.03643],[76.08997,26.03387],[76.08697,26.03301],[76.0869,26.03001],[76.08042,26.02816],[76.08311,26.02448],[76.07982,26.02397],[76.0803,26.01885],[76.07516,26.01487],[76.07224,26.01564],[76.06874,26.01355],[76.06995,26.01119],[76.06697,26.01002],[76.06916,26.00885],[76.06915,26.00702],[76.06534,26.00795],[76.0674,26.0043],[76.06288,26.00498],[76.06237,26.00245],[76.06289,26.00155],[76.06496,26.00325],[76.06415,26.00149],[76.06828,26.00075],[76.06653,25.99944],[76.06692,25.99789],[76.06495,25.99799],[76.06492,25.99566],[76.06305,25.9977],[76.06187,25.99494],[76.05938,25.99614],[76.06031,25.99339],[76.08202,25.98709],[76.08623,25.9922],[76.09041,26.00199],[76.09537,26.00034],[76.1106,25.99211],[76.11258,25.98906],[76.1111,25.9863],[76.11929,25.98196],[76.11829,25.97646],[76.1314,25.9733],[76.12965,25.96549],[76.13562,25.96403],[76.13797,25.97252],[76.14232,25.98052],[76.14706,25.9832],[76.15067,25.98997],[76.15695,25.98767],[76.17226,25.9863],[76.17758,25.99835],[76.181,26.01544],[76.18651,26.01486],[76.18701,26.01046],[76.19548,26.0119],[76.21667,26.01112],[76.22339,26.0153],[76.22599,26.02176],[76.22592,26.02827],[76.24061,26.02172],[76.23887,25.99352],[76.23485,25.98291],[76.24457,25.98076],[76.24287,25.9736],[76.24632,25.96736],[76.24526,25.95946],[76.24274,25.95798],[76.23587,25.93393],[76.24244,25.93147],[76.24254,25.92844],[76.2411,25.92873],[76.2408,25.92709],[76.24102,25.91919],[76.23883,25.91512],[76.23505,25.91397],[76.20894,25.91568],[76.20703,25.91064],[76.20925,25.90484],[76.20772,25.89989],[76.21025,25.89791],[76.21408,25.88679],[76.21087,25.8831],[76.21219,25.87886],[76.21062,25.87417],[76.2104,25.86084],[76.21161,25.85983],[76.21369,25.86104],[76.22928,25.8502],[76.24084,25.84679],[76.24351,25.83727],[76.25017,25.83485],[76.25325,25.82798],[76.26189,25.8212],[76.26909,25.81929],[76.2716,25.8256],[76.27598,25.82789],[76.27988,25.83669],[76.28251,25.83385],[76.28788,25.83203],[76.2876,25.82924],[76.28999,25.82608],[76.28989,25.82056],[76.29469,25.82206],[76.29746,25.8253],[76.30429,25.82336],[76.30684,25.82567],[76.31032,25.8246],[76.31538,25.81861],[76.31688,25.8188],[76.31226,25.81157],[76.31607,25.79752],[76.31946,25.79327],[76.322,25.77887],[76.33147,25.77287],[76.33293,25.77006],[76.33231,25.7653],[76.33451,25.76323],[76.33577,25.7584],[76.34555,25.75282],[76.34646,25.74787],[76.35618,25.74104],[76.36803,25.75076],[76.39432,25.75603],[76.40113,25.76516],[76.40572,25.76873],[76.43179,25.7693],[76.44157,25.77355],[76.45009,25.78153],[76.47841,25.81591],[76.47817,25.8217],[76.47382,25.82967],[76.47335,25.83396],[76.47605,25.83939],[76.48064,25.8428],[76.49194,25.84552],[76.5108,25.83848],[76.51425,25.84071],[76.53103,25.84349],[76.53858,25.83998],[76.54728,25.8384],[76.55234,25.84392],[76.56601,25.84812],[76.57886,25.86697],[76.58928,25.87498],[76.59599,25.87499],[76.61448,25.86844],[76.62374,25.8709],[76.6261,25.87573],[76.63062,25.89914],[76.63575,25.905],[76.64026,25.90761],[76.656,25.91019],[76.67459,25.91026],[76.6872,25.90786],[76.70725,25.90051],[76.71633,25.90116],[76.73243,25.90597],[76.75273,25.91734],[76.75759,25.92262],[76.75765,25.92663],[76.75179,25.92817],[76.74659,25.9341],[76.7464,25.93768],[76.74809,25.9399],[76.75139,25.941],[76.768,25.93765],[76.78524,25.93928],[76.79096,25.94267],[76.80461,25.96043],[76.80868,25.97132],[76.80773,25.97372],[76.80358,25.97453],[76.8026,25.9761],[76.80455,25.98611],[76.81925,26.00348],[76.82685,26.00809],[76.83601,26.02235],[76.84425,26.02888],[76.85142,26.0321],[76.8473,26.03746],[76.84734,26.04054],[76.85114,26.04298],[76.84869,26.05081],[76.84183,26.05479],[76.83464,26.06611],[76.82997,26.06788],[76.82765,26.07257],[76.82035,26.06935],[76.81358,26.0704],[76.81036,26.06937],[76.80908,26.07588],[76.80563,26.08019],[76.80715,26.08207],[76.80609,26.08546],[76.8023,26.09088],[76.80098,26.09582],[76.79488,26.10255],[76.79065,26.10624],[76.77737,26.10623],[76.77399,26.11018],[76.77158,26.11078],[76.76741,26.11512],[76.76358,26.12105],[76.76383,26.12358],[76.75848,26.12891],[76.75437,26.13698],[76.74378,26.15067],[76.74073,26.15261],[76.74032,26.15531],[76.73727,26.15579],[76.73487,26.15247],[76.73212,26.15534],[76.72454,26.15523],[76.72655,26.16161],[76.71842,26.16997],[76.7115,26.17167],[76.70936,26.17643],[76.7033,26.17737],[76.70447,26.17963],[76.7031,26.1808],[76.69881,26.18186],[76.69556,26.17975],[76.68966,26.18119],[76.68435,26.17361],[76.68481,26.17054],[76.67524,26.16678],[76.66818,26.16652],[76.66432,26.17087],[76.66325,26.17517],[76.66073,26.17645],[76.65601,26.18335],[76.63414,26.18577],[76.62882,26.18446],[76.60326,26.20227],[76.57803,26.21536],[76.58761,26.22291],[76.58268,26.22724],[76.58236,26.23199],[76.60347,26.24462],[76.6085,26.25789],[76.6073,26.25995],[76.60379,26.26114],[76.60316,26.266],[76.60484,26.27242],[76.59783,26.27364],[76.59657,26.26638],[76.59241,26.26625],[76.59265,26.26862],[76.5911,26.26937],[76.58967,26.26788],[76.5865,26.27015],[76.58124,26.2705],[76.57866,26.26857],[76.57027,26.2684],[76.55573,26.26228],[76.55179,26.26468],[76.55138,26.26672],[76.55738,26.27839],[76.5696,26.28364],[76.56707,26.29052],[76.57252,26.29626],[76.56856,26.2993],[76.56714,26.30446],[76.56428,26.30461],[76.56675,26.30878],[76.56512,26.31755],[76.56845,26.31899],[76.58034,26.31483],[76.58503,26.31521],[76.58601,26.31813],[76.58373,26.32209],[76.58855,26.32635],[76.59226,26.32647],[76.59522,26.32878],[76.59554,26.33283],[76.60229,26.33581],[76.60747,26.331],[76.60692,26.32522],[76.61418,26.32933],[76.62469,26.32312],[76.62341,26.31544],[76.6312,26.31688],[76.63221,26.32096],[76.62835,26.32976],[76.63784,26.34146],[76.64858,26.34752],[76.65908,26.34892],[76.66285,26.35172],[76.67027,26.34889],[76.67076,26.35029],[76.67547,26.35133],[76.68848,26.36866],[76.68602,26.37007],[76.67836,26.38428],[76.68628,26.39424],[76.69362,26.39584],[76.69935,26.40066],[76.7106,26.40659],[76.71341,26.41132],[76.71935,26.41493],[76.73021,26.41536],[76.73273,26.42196],[76.7414,26.42854],[76.74679,26.42778],[76.75,26.43],[76.7539,26.42805],[76.75317,26.42939],[76.76061,26.43324],[76.76429,26.43704],[76.77622,26.44015],[76.77927,26.4465],[76.78355,26.45019],[76.77274,26.46032],[76.7801,26.46898],[76.78618,26.47001],[76.80243,26.48286],[76.81274,26.48493],[76.82837,26.47714],[76.84306,26.48743],[76.85849,26.50192],[76.86563,26.5016],[76.86836,26.50829],[76.87375,26.5097],[76.87694,26.51349],[76.88206,26.51401],[76.88815,26.51835],[76.90419,26.52222],[76.90782,26.53843],[76.90969,26.55818],[76.91265,26.55728],[76.91374,26.55837],[76.92755,26.551],[76.92938,26.55166],[76.94023,26.5467],[76.94159,26.54564],[76.94154,26.54192],[76.94928,26.54152],[76.95503,26.54335],[76.96296,26.5492],[76.97028,26.55121],[76.97249,26.5587],[76.96992,26.5612],[76.96833,26.57151],[76.95304,26.56863],[76.93648,26.57343],[76.93645,26.58095],[76.93956,26.58939],[76.95016,26.5874],[76.9631,26.59012],[76.97732,26.59694],[76.97725,26.60174],[76.98045,26.60176],[76.98147,26.60317],[76.97799,26.60594],[76.98024,26.61014],[76.97612,26.61385],[76.97536,26.61822],[76.97012,26.62095],[76.96917,26.62422],[76.96025,26.6255],[76.96166,26.63494],[76.95917,26.63545],[76.95813,26.6409],[76.95427,26.64272],[76.95648,26.6463],[76.9538,26.64967],[76.95159,26.67075],[76.94299,26.67158],[76.93608,26.67585],[76.92949,26.67615],[76.91762,26.68346],[76.90137,26.67731],[76.8937,26.67598],[76.89043,26.66909],[76.88059,26.67073],[76.87831,26.668],[76.87128,26.66932],[76.87048,26.65992],[76.85966,26.65426],[76.85724,26.64694],[76.83241,26.65161],[76.83146,26.64561],[76.82259,26.63137],[76.79762,26.60474],[76.79331,26.59735],[76.77952,26.59843],[76.77982,26.58323],[76.76159,26.56759],[76.75936,26.5687],[76.75639,26.56637],[76.74693,26.57124],[76.74735,26.57324],[76.74288,26.57418],[76.73195,26.57116],[76.70804,26.57459],[76.69317,26.58077],[76.68493,26.59328],[76.67655,26.59838],[76.67581,26.60062],[76.67039,26.60158],[76.66953,26.60901],[76.65367,26.60721],[76.63964,26.60992],[76.64243,26.61752],[76.62481,26.63858],[76.6222,26.64088],[76.61434,26.64303],[76.6204,26.65411],[76.61705,26.6567],[76.6156,26.65502],[76.60381,26.66439],[76.60219,26.66089],[76.59643,26.65805],[76.58783,26.64939],[76.56764,26.6618],[76.55729,26.66599],[76.53317,26.68671],[76.52368,26.6902],[76.51202,26.69976],[76.50677,26.70003],[76.50094,26.70253],[76.4974,26.70015]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"114","area_level":"District","area_name":"Sikar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.00573,28.20099],[75.00319,28.20303],[74.96666,28.19517],[74.94627,28.1852],[74.94201,28.19],[74.94049,28.1946],[74.93149,28.1947],[74.93097,28.19628],[74.92194,28.19414],[74.91945,28.19528],[74.90219,28.19077],[74.89743,28.191],[74.89664,28.1923],[74.88857,28.1895],[74.88396,28.17995],[74.88323,28.16727],[74.87216,28.15115],[74.87095,28.14604],[74.86572,28.14562],[74.8651,28.14152],[74.8619,28.14028],[74.85718,28.14138],[74.85866,28.13358],[74.8369,28.12299],[74.82919,28.11293],[74.82703,28.1123],[74.81864,28.11222],[74.81758,28.11355],[74.81478,28.11279],[74.8142,28.11475],[74.80873,28.11445],[74.80748,28.11834],[74.79474,28.11545],[74.79281,28.111],[74.79439,28.10525],[74.7905,28.10306],[74.78893,28.09835],[74.7896,28.09555],[74.78744,28.09296],[74.78836,28.08702],[74.7869,28.08683],[74.78565,28.08149],[74.78757,28.07477],[74.79663,28.07118],[74.79785,28.06721],[74.80207,28.06603],[74.80717,28.0614],[74.80917,28.05449],[74.80626,28.05311],[74.80386,28.04852],[74.80577,28.04421],[74.80374,28.04305],[74.80447,28.04076],[74.80244,28.03703],[74.80315,28.03037],[74.80064,28.02705],[74.79766,28.02721],[74.79294,28.02449],[74.79484,28.01683],[74.79295,28.0154],[74.79165,28.01],[74.79217,28.00347],[74.77482,27.99801],[74.76816,27.99175],[74.76417,27.99228],[74.76095,27.98879],[74.76457,27.98094],[74.76924,27.98011],[74.76986,27.97506],[74.77252,27.97419],[74.77546,27.96714],[74.77546,27.96368],[74.78251,27.95796],[74.78495,27.95355],[74.79354,27.9522],[74.79632,27.94966],[74.7972,27.94625],[74.80114,27.94618],[74.80461,27.94021],[74.81939,27.94187],[74.82246,27.9307],[74.82465,27.92994],[74.82685,27.92487],[74.83096,27.92533],[74.83212,27.92354],[74.82717,27.91724],[74.82837,27.91317],[74.82647,27.90908],[74.81588,27.90655],[74.79263,27.89446],[74.78883,27.90059],[74.787,27.89915],[74.78585,27.90018],[74.77765,27.8992],[74.77611,27.90129],[74.74413,27.89216],[74.73678,27.89145],[74.73345,27.88648],[74.73558,27.87996],[74.73079,27.87634],[74.73636,27.87524],[74.7421,27.87712],[74.74275,27.87488],[74.7384,27.87252],[74.73126,27.87252],[74.73091,27.87104],[74.7329,27.86488],[74.73541,27.86336],[74.73768,27.85865],[74.74452,27.86165],[74.75039,27.85927],[74.75427,27.86019],[74.75681,27.85847],[74.7651,27.85879],[74.76455,27.85425],[74.76759,27.84856],[74.77036,27.84571],[74.7729,27.84571],[74.77443,27.84041],[74.77895,27.83439],[74.78619,27.83603],[74.79567,27.84089],[74.80268,27.83076],[74.80434,27.82469],[74.81125,27.81472],[74.81767,27.80141],[74.79872,27.79211],[74.79993,27.78888],[74.79029,27.78397],[74.79112,27.7815],[74.78507,27.77839],[74.78623,27.7756],[74.77538,27.77242],[74.76408,27.76587],[74.76202,27.76809],[74.75757,27.76701],[74.75625,27.76995],[74.74335,27.76675],[74.73377,27.75598],[74.73607,27.75252],[74.73286,27.74871],[74.7344,27.74557],[74.73115,27.74322],[74.73151,27.74092],[74.72782,27.73259],[74.72721,27.73038],[74.72959,27.72519],[74.7271,27.72202],[74.72791,27.72004],[74.73875,27.72484],[74.74051,27.71847],[74.74803,27.71995],[74.7501,27.70742],[74.74834,27.70566],[74.74956,27.70138],[74.74888,27.68957],[74.74662,27.68603],[74.73921,27.68328],[74.73594,27.67748],[74.72833,27.67667],[74.72549,27.67776],[74.72356,27.67609],[74.72055,27.67837],[74.71452,27.6768],[74.71117,27.67978],[74.69933,27.679],[74.69223,27.672],[74.68057,27.66961],[74.68315,27.66042],[74.68449,27.6581],[74.68703,27.65842],[74.68758,27.65439],[74.69199,27.65448],[74.69346,27.6525],[74.70279,27.65312],[74.71262,27.63926],[74.71008,27.63759],[74.71094,27.63601],[74.70886,27.63533],[74.71144,27.62996],[74.70001,27.62263],[74.69922,27.61624],[74.70471,27.6024],[74.70334,27.59965],[74.70495,27.59694],[74.70761,27.59655],[74.71309,27.60084],[74.7304,27.60935],[74.74137,27.58495],[74.75565,27.59344],[74.76051,27.58195],[74.76098,27.57985],[74.75835,27.57859],[74.76108,27.56596],[74.73703,27.54965],[74.72243,27.54393],[74.71861,27.53964],[74.71947,27.53253],[74.72328,27.52714],[74.72288,27.52483],[74.7201,27.52381],[74.72137,27.51907],[74.72321,27.51769],[74.72371,27.51233],[74.72164,27.50836],[74.71934,27.50736],[74.72027,27.50193],[74.72511,27.50129],[74.73132,27.49359],[74.75,27.50069],[74.75284,27.49561],[74.75445,27.48778],[74.77115,27.49441],[74.77452,27.48954],[74.77969,27.49079],[74.7829,27.48968],[74.78541,27.48624],[74.78961,27.48746],[74.79066,27.48567],[74.79658,27.48723],[74.80246,27.47623],[74.80025,27.46967],[74.79825,27.46814],[74.79915,27.46461],[74.79775,27.46308],[74.80041,27.45022],[74.81934,27.45121],[74.83037,27.45341],[74.84259,27.45154],[74.85106,27.45355],[74.85368,27.45311],[74.85478,27.44961],[74.85893,27.45024],[74.86368,27.43173],[74.8732,27.41149],[74.86828,27.40961],[74.86813,27.40804],[74.85912,27.40183],[74.85486,27.39494],[74.8479,27.38869],[74.84575,27.38488],[74.84635,27.37764],[74.85456,27.37666],[74.85667,27.37281],[74.86278,27.37018],[74.872,27.37349],[74.8742,27.37251],[74.8733,27.3687],[74.87566,27.36656],[74.87645,27.35526],[74.87961,27.3455],[74.876,27.34402],[74.87585,27.34213],[74.86954,27.33981],[74.86623,27.33546],[74.86909,27.3304],[74.8753,27.32454],[74.8793,27.31029],[74.88415,27.31029],[74.89432,27.3153],[74.89828,27.3157],[74.89788,27.33164],[74.91098,27.33663],[74.93116,27.33644],[74.93903,27.33872],[74.94279,27.34158],[74.94299,27.34771],[74.94646,27.3503],[74.95182,27.34855],[74.9632,27.34966],[74.97477,27.34907],[74.97842,27.34714],[74.98288,27.3483],[75.00654,27.34705],[75.01995,27.35217],[75.03521,27.35457],[75.03526,27.35605],[75.03753,27.35624],[75.03865,27.36154],[75.04051,27.36068],[75.0437,27.36275],[75.04411,27.36793],[75.04642,27.37211],[75.04556,27.37759],[75.07771,27.38573],[75.08507,27.38599],[75.08688,27.38385],[75.09242,27.38413],[75.09388,27.3822],[75.10586,27.38139],[75.10764,27.3803],[75.10739,27.37815],[75.11516,27.37732],[75.11766,27.3704],[75.11527,27.36959],[75.11383,27.35697],[75.11579,27.35546],[75.1157,27.35188],[75.1144,27.35194],[75.1119,27.34211],[75.10631,27.341],[75.10687,27.3354],[75.12161,27.33634],[75.12614,27.32989],[75.13802,27.32447],[75.13899,27.3209],[75.16041,27.31789],[75.16341,27.31354],[75.16489,27.30352],[75.15965,27.29478],[75.15582,27.27818],[75.13299,27.28074],[75.12918,27.27226],[75.12253,27.26763],[75.11453,27.25969],[75.11415,27.25623],[75.09991,27.24372],[75.08635,27.24347],[75.07943,27.23424],[75.08106,27.23359],[75.08017,27.22888],[75.07425,27.22349],[75.06929,27.21602],[75.08998,27.21457],[75.11184,27.21709],[75.11393,27.21366],[75.12111,27.21171],[75.12298,27.20845],[75.12448,27.2087],[75.11913,27.20269],[75.12207,27.20121],[75.12225,27.19473],[75.11613,27.17874],[75.12236,27.17927],[75.12765,27.16653],[75.14017,27.16324],[75.15552,27.16325],[75.15573,27.16055],[75.15933,27.1599],[75.15953,27.15698],[75.16819,27.15753],[75.17667,27.15581],[75.17909,27.15236],[75.17691,27.14837],[75.17286,27.148],[75.17009,27.1454],[75.17078,27.13912],[75.17952,27.13713],[75.19263,27.13808],[75.19446,27.13586],[75.19532,27.12809],[75.19799,27.12846],[75.19698,27.12611],[75.20142,27.12592],[75.20431,27.12754],[75.20338,27.12938],[75.22858,27.13085],[75.22854,27.1297],[75.23271,27.13004],[75.23328,27.12374],[75.25034,27.1253],[75.25027,27.12747],[75.2672,27.12866],[75.26751,27.12979],[75.27217,27.12829],[75.27695,27.1216],[75.28316,27.12131],[75.2975,27.12606],[75.29799,27.13994],[75.31544,27.14188],[75.31614,27.15222],[75.31445,27.17561],[75.31563,27.18353],[75.31371,27.18497],[75.32164,27.20696],[75.3259,27.20563],[75.32722,27.20995],[75.33119,27.21122],[75.34689,27.21005],[75.35031,27.21627],[75.35237,27.21577],[75.35475,27.22289],[75.36019,27.22317],[75.36572,27.2263],[75.37325,27.22504],[75.38483,27.22584],[75.38563,27.22905],[75.39006,27.22891],[75.39003,27.24335],[75.38806,27.24381],[75.38786,27.26731],[75.39321,27.27882],[75.38777,27.27949],[75.38642,27.28184],[75.37943,27.28219],[75.37961,27.2886],[75.3971,27.28698],[75.40566,27.28953],[75.42677,27.28584],[75.42926,27.29106],[75.44236,27.29218],[75.44687,27.29183],[75.44715,27.29026],[75.45019,27.29041],[75.45386,27.28891],[75.4539,27.28715],[75.45604,27.28724],[75.4573,27.2805],[75.47583,27.28245],[75.47799,27.28679],[75.48556,27.28748],[75.48669,27.29289],[75.49009,27.29354],[75.49169,27.29872],[75.50234,27.3022],[75.50246,27.30503],[75.50514,27.30648],[75.50677,27.3152],[75.50919,27.31994],[75.51103,27.32048],[75.51148,27.32351],[75.51659,27.3237],[75.52005,27.32898],[75.52378,27.32913],[75.52747,27.33578],[75.5468,27.33594],[75.56468,27.33928],[75.57619,27.33498],[75.57952,27.32223],[75.57956,27.32017],[75.57619,27.318],[75.57165,27.3031],[75.57725,27.30241],[75.57768,27.29986],[75.58157,27.29937],[75.58909,27.30014],[75.5923,27.30349],[75.60055,27.30099],[75.60291,27.30435],[75.6137,27.30593],[75.61712,27.311],[75.61895,27.31111],[75.62442,27.32542],[75.6282,27.32925],[75.62896,27.33421],[75.63922,27.33398],[75.64993,27.3309],[75.66139,27.33087],[75.66623,27.33695],[75.66647,27.34698],[75.66473,27.356],[75.66657,27.35909],[75.67302,27.36287],[75.67822,27.36513],[75.68499,27.36495],[75.68527,27.3664],[75.68813,27.36725],[75.72371,27.36136],[75.72655,27.36767],[75.72404,27.36845],[75.72464,27.37194],[75.72027,27.37527],[75.72094,27.37775],[75.7237,27.38038],[75.72972,27.3811],[75.73253,27.38679],[75.73231,27.39149],[75.73507,27.39123],[75.74015,27.39667],[75.74086,27.39974],[75.75791,27.39733],[75.77685,27.39819],[75.77915,27.39153],[75.78205,27.39028],[75.78001,27.38808],[75.7794,27.37994],[75.78293,27.38043],[75.7973,27.37558],[75.80106,27.37878],[75.80233,27.38119],[75.80126,27.38183],[75.80766,27.39226],[75.80951,27.39254],[75.81359,27.40075],[75.82074,27.3878],[75.82569,27.38871],[75.82698,27.38644],[75.83842,27.3858],[75.84304,27.39452],[75.84859,27.39976],[75.8514,27.39746],[75.85715,27.39649],[75.85974,27.38884],[75.86146,27.38767],[75.86587,27.38642],[75.8763,27.38779],[75.87828,27.39174],[75.88455,27.39725],[75.87881,27.40103],[75.87519,27.40694],[75.87128,27.4096],[75.87125,27.41679],[75.87662,27.42905],[75.8783,27.42924],[75.88326,27.43905],[75.88344,27.44409],[75.88828,27.44785],[75.88919,27.45309],[75.89184,27.45442],[75.90471,27.45179],[75.91918,27.45113],[75.92046,27.45151],[75.9216,27.45934],[75.92741,27.45933],[75.92854,27.46265],[75.93787,27.46006],[75.94148,27.46359],[75.94411,27.46963],[75.95338,27.46757],[75.95402,27.47154],[75.9641,27.47031],[75.96462,27.46467],[75.96994,27.47163],[75.97367,27.46973],[75.98698,27.4683],[75.98503,27.47347],[75.98642,27.4751],[75.98435,27.47828],[75.98643,27.48171],[75.98491,27.49598],[75.97541,27.49977],[75.95097,27.49772],[75.94963,27.49651],[75.93948,27.49722],[75.9417,27.51207],[75.94514,27.51618],[75.95077,27.53029],[75.95327,27.56246],[75.94216,27.56488],[75.94361,27.57079],[75.95556,27.5846],[75.96455,27.5912],[75.96795,27.59164],[75.96363,27.59931],[75.95968,27.59617],[75.95885,27.59198],[75.95403,27.59506],[75.94557,27.59131],[75.94493,27.59303],[75.94973,27.59786],[75.9481,27.61139],[75.9414,27.61911],[75.94778,27.62222],[75.96471,27.62231],[75.96618,27.62614],[75.95839,27.63164],[75.95965,27.63338],[75.95764,27.634],[75.95806,27.63736],[75.96466,27.6423],[75.96974,27.64105],[75.97189,27.64667],[75.97419,27.6469],[75.9792,27.65344],[75.98452,27.6763],[75.99083,27.69225],[76.01,27.71046],[76.02976,27.7194],[76.02982,27.72317],[76.03411,27.72697],[76.03423,27.73746],[76.04868,27.75156],[76.04523,27.75446],[76.05134,27.7616],[76.05274,27.76911],[76.06791,27.76762],[76.07274,27.77982],[76.07326,27.7853],[76.07629,27.78871],[76.07491,27.7896],[76.07706,27.79618],[76.0771,27.80286],[76.08436,27.80188],[76.08813,27.80426],[76.09097,27.81124],[76.08979,27.81566],[76.09131,27.81622],[76.09207,27.82025],[76.09058,27.82333],[76.09186,27.826],[76.09082,27.8294],[76.07611,27.84039],[76.07568,27.84347],[76.06064,27.84828],[76.04808,27.83498],[76.04087,27.84128],[76.04023,27.83894],[76.03625,27.8374],[76.03022,27.84005],[76.02729,27.83852],[76.00955,27.84152],[76.00646,27.83908],[76.00464,27.83445],[75.99857,27.83821],[75.98703,27.84167],[75.97138,27.85251],[75.97249,27.8606],[75.97936,27.86545],[75.97763,27.87379],[75.98442,27.88259],[75.97531,27.89366],[75.97925,27.89555],[75.98749,27.90416],[75.97317,27.90209],[75.9748,27.91179],[75.96807,27.91437],[75.93828,27.91408],[75.93707,27.91777],[75.93447,27.91863],[75.93697,27.92187],[75.93939,27.92109],[75.93963,27.92279],[75.93238,27.92995],[75.92377,27.92544],[75.91933,27.91914],[75.90914,27.91615],[75.90982,27.9093],[75.90861,27.90639],[75.89839,27.91305],[75.89143,27.90512],[75.88839,27.90782],[75.87062,27.88932],[75.84385,27.87313],[75.83376,27.86967],[75.81597,27.85874],[75.80447,27.85659],[75.79783,27.84674],[75.7866,27.84021],[75.77945,27.83934],[75.76808,27.8309],[75.76372,27.82107],[75.7364,27.7942],[75.72976,27.78029],[75.72111,27.76732],[75.71142,27.76031],[75.71014,27.75444],[75.71989,27.74922],[75.71989,27.74739],[75.7123,27.73706],[75.71177,27.73399],[75.71333,27.73107],[75.70761,27.72424],[75.70772,27.71929],[75.70495,27.71589],[75.70158,27.7175],[75.70042,27.71665],[75.69822,27.70896],[75.69923,27.70623],[75.69446,27.69438],[75.69671,27.69068],[75.69113,27.67918],[75.68479,27.67533],[75.66749,27.677],[75.66942,27.68447],[75.66464,27.68321],[75.66464,27.68735],[75.66163,27.68919],[75.66152,27.6943],[75.65912,27.69677],[75.66675,27.71575],[75.65503,27.71817],[75.64796,27.71771],[75.64378,27.72022],[75.64045,27.71724],[75.63238,27.71596],[75.62863,27.70967],[75.62082,27.70587],[75.61871,27.70261],[75.61482,27.70657],[75.60644,27.70713],[75.59809,27.71089],[75.5927,27.71112],[75.58929,27.70764],[75.59044,27.70251],[75.57715,27.70718],[75.56896,27.69958],[75.55497,27.7092],[75.55371,27.70752],[75.54989,27.70754],[75.54015,27.71204],[75.53739,27.71088],[75.53481,27.70572],[75.5294,27.70516],[75.52507,27.70165],[75.52397,27.69679],[75.52038,27.69794],[75.51828,27.69551],[75.51558,27.69577],[75.51314,27.69176],[75.50914,27.69477],[75.50735,27.69228],[75.50159,27.69168],[75.49259,27.68731],[75.4804,27.68803],[75.47503,27.69453],[75.4695,27.68799],[75.4655,27.68013],[75.46624,27.67118],[75.46434,27.66837],[75.4577,27.66395],[75.45344,27.65741],[75.44023,27.6574],[75.42937,27.64668],[75.42877,27.64164],[75.42333,27.64123],[75.41776,27.64395],[75.41466,27.64774],[75.40836,27.65051],[75.40564,27.65488],[75.40685,27.65881],[75.4051,27.66089],[75.39497,27.66319],[75.3919,27.66055],[75.39057,27.65572],[75.3818,27.64808],[75.37867,27.64774],[75.37506,27.64351],[75.37315,27.65448],[75.37095,27.65622],[75.37284,27.6694],[75.37233,27.67846],[75.37834,27.68153],[75.37756,27.68404],[75.37459,27.68351],[75.37239,27.68551],[75.3654,27.69435],[75.35707,27.69687],[75.35062,27.70181],[75.32588,27.69745],[75.3212,27.7072],[75.32276,27.70823],[75.32191,27.70979],[75.30476,27.71101],[75.29993,27.71485],[75.29718,27.71428],[75.29213,27.71764],[75.28587,27.71862],[75.28606,27.72299],[75.27832,27.73668],[75.27772,27.74215],[75.2765,27.74175],[75.27341,27.75083],[75.27164,27.75092],[75.27139,27.75493],[75.26771,27.75501],[75.2671,27.76104],[75.26008,27.76681],[75.27588,27.76912],[75.2896,27.77405],[75.29093,27.78987],[75.28932,27.79794],[75.29035,27.80129],[75.28766,27.80581],[75.28741,27.82055],[75.27026,27.82342],[75.24719,27.81796],[75.24046,27.81411],[75.23826,27.82566],[75.24117,27.82657],[75.23864,27.83258],[75.24357,27.83627],[75.24381,27.84637],[75.23832,27.85319],[75.22943,27.87941],[75.22051,27.8818],[75.20989,27.88239],[75.20192,27.89203],[75.20432,27.89385],[75.20232,27.90293],[75.20314,27.90966],[75.20152,27.90981],[75.20082,27.91285],[75.19391,27.91179],[75.1915,27.91667],[75.19312,27.92075],[75.19273,27.93421],[75.19443,27.93442],[75.19375,27.93755],[75.19504,27.939],[75.19322,27.95834],[75.1777,27.95869],[75.17321,27.96044],[75.16534,27.95918],[75.15767,27.98989],[75.16111,27.99187],[75.16008,27.99536],[75.15503,28.00385],[75.14979,28.01894],[75.14821,28.02136],[75.14699,28.02072],[75.14459,28.02717],[75.14247,28.02876],[75.12818,28.0252],[75.12748,28.02747],[75.1246,28.02814],[75.12484,28.03144],[75.12186,28.03944],[75.12007,28.03833],[75.11678,28.04336],[75.11701,28.04598],[75.11519,28.04554],[75.11379,28.0483],[75.1072,28.05014],[75.10524,28.06137],[75.10351,28.06108],[75.09767,28.0716],[75.10127,28.0759],[75.10033,28.07946],[75.10417,28.08066],[75.10426,28.08259],[75.11034,28.08564],[75.10978,28.08711],[75.11454,28.08903],[75.11451,28.10503],[75.11266,28.10638],[75.11295,28.11281],[75.10875,28.11507],[75.10998,28.11629],[75.11436,28.11594],[75.11469,28.11837],[75.12429,28.12137],[75.12915,28.12104],[75.12763,28.13626],[75.1194,28.13788],[75.11817,28.14068],[75.11383,28.14006],[75.11237,28.14324],[75.11076,28.1429],[75.10732,28.14721],[75.11016,28.14885],[75.10897,28.1509],[75.1069,28.15031],[75.10845,28.15181],[75.10217,28.15046],[75.09858,28.15607],[75.09193,28.15497],[75.08915,28.16192],[75.07705,28.16003],[75.07314,28.16069],[75.07219,28.16266],[75.06559,28.15986],[75.0653,28.16266],[75.05346,28.15934],[75.05531,28.16272],[75.05343,28.16817],[75.05856,28.1724],[75.06656,28.17477],[75.08321,28.18502],[75.07961,28.19381],[75.0737,28.19328],[75.07294,28.19526],[75.05747,28.19438],[75.0552,28.19362],[75.05562,28.19262],[75.04566,28.19123],[75.04329,28.19512],[75.03863,28.19365],[75.03744,28.19767],[75.03192,28.19628],[75.02828,28.20381],[75.02429,28.2032],[75.02516,28.19826],[75.02013,28.19765],[75.01224,28.19347],[75.00951,28.19838],[75.00795,28.19968],[75.0055,28.19909],[75.00573,28.20099]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"115","area_level":"District","area_name":"Sirohi","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.28627,24.65213],[72.28453,24.65315],[72.2828,24.65358],[72.28148,24.65268],[72.28079,24.65187],[72.28045,24.65078],[72.27848,24.64738],[72.27478,24.6418],[72.27084,24.63757],[72.2684,24.63714],[72.27084,24.63757],[72.27223,24.63704],[72.27068,24.63052],[72.2716,24.6302],[72.27366,24.62837],[72.27515,24.62762],[72.27789,24.62762],[72.27898,24.6274],[72.28298,24.62575],[72.2892,24.61953],[72.29636,24.62489],[72.29597,24.62808],[72.30038,24.63284],[72.3012,24.63646],[72.30133,24.63824],[72.3012,24.63923],[72.29905,24.64212],[72.29837,24.64262],[72.29758,24.6424],[72.29714,24.64296],[72.29618,24.64461],[72.29663,24.64561],[72.29547,24.647],[72.28844,24.65201],[72.2881,24.65213],[72.28719,24.6516],[72.28627,24.65213]]],[[[72.8308,25.28416],[72.82869,25.2852],[72.8264,25.28228],[72.82398,25.28265],[72.82048,25.28014],[72.81209,25.25619],[72.80924,25.25408],[72.80263,25.25642],[72.79072,25.23521],[72.78009,25.2232],[72.77781,25.2171],[72.77821,25.19881],[72.78064,25.18911],[72.77118,25.18617],[72.76452,25.17943],[72.75856,25.17021],[72.74531,25.15715],[72.74454,25.14463],[72.73882,25.12635],[72.731,25.12266],[72.71075,25.10647],[72.7064,25.09835],[72.70448,25.0816],[72.69476,25.07849],[72.69107,25.07551],[72.69179,25.06454],[72.69108,25.05822],[72.68852,25.05417],[72.68894,25.04628],[72.68179,25.04938],[72.67795,25.04941],[72.66334,25.04607],[72.65983,25.04225],[72.65976,25.039],[72.65655,25.03921],[72.65522,25.03081],[72.65682,25.02699],[72.64888,25.02445],[72.64897,25.01573],[72.63799,25.01604],[72.63359,25.00001],[72.62751,24.99659],[72.62158,24.98722],[72.61419,24.98546],[72.61083,24.97475],[72.60405,24.97094],[72.60283,24.9678],[72.59705,24.96306],[72.58514,24.95554],[72.57454,24.94136],[72.56494,24.93332],[72.54535,24.93038],[72.53122,24.93177],[72.52564,24.92998],[72.52073,24.93136],[72.5171,24.9354],[72.51023,24.93058],[72.50043,24.91892],[72.49604,24.91647],[72.4993,24.91066],[72.49635,24.90658],[72.49276,24.90749],[72.49212,24.90647],[72.49958,24.90167],[72.50349,24.881],[72.48682,24.87264],[72.48419,24.87258],[72.48189,24.87482],[72.47887,24.87118],[72.48168,24.86438],[72.48398,24.86267],[72.48438,24.85694],[72.48898,24.85271],[72.49124,24.84815],[72.49016,24.84006],[72.49418,24.8372],[72.49239,24.83423],[72.4954,24.83204],[72.49533,24.82574],[72.49756,24.81908],[72.48934,24.81393],[72.48841,24.8073],[72.48825,24.80173],[72.49379,24.78002],[72.49297,24.76432],[72.49005,24.75832],[72.47706,24.75312],[72.44744,24.7601],[72.44069,24.75536],[72.41882,24.75667],[72.41428,24.7546],[72.40668,24.76825],[72.40016,24.77589],[72.39699,24.77505],[72.39075,24.76788],[72.37323,24.76574],[72.36938,24.75745],[72.36656,24.75606],[72.35461,24.74045],[72.34469,24.7237],[72.33046,24.71188],[72.32488,24.70066],[72.32355,24.69447],[72.32064,24.69092],[72.31928,24.68358],[72.31169,24.67367],[72.31367,24.65507],[72.31621,24.6505],[72.31912,24.6479],[72.32269,24.64772],[72.32584,24.64323],[72.33042,24.64167],[72.33795,24.63007],[72.34802,24.62784],[72.34319,24.62119],[72.34531,24.61563],[72.34469,24.61221],[72.34393,24.60963],[72.33867,24.6056],[72.33851,24.60015],[72.33559,24.59858],[72.33062,24.59955],[72.31357,24.59402],[72.30778,24.59589],[72.30728,24.59788],[72.30462,24.59898],[72.30538,24.60279],[72.30328,24.60343],[72.30325,24.60573],[72.29739,24.60897],[72.29519,24.60941],[72.28975,24.60387],[72.28535,24.60714],[72.27634,24.60753],[72.26435,24.60448],[72.2643,24.60006],[72.25845,24.5983],[72.25688,24.59417],[72.24972,24.59028],[72.24627,24.58628],[72.25148,24.58025],[72.2531,24.5751],[72.26321,24.56501],[72.26368,24.56109],[72.27131,24.56136],[72.27521,24.56523],[72.2855,24.56536],[72.29013,24.55074],[72.2893,24.54802],[72.29543,24.54663],[72.29934,24.54729],[72.30186,24.55021],[72.3236,24.55132],[72.32688,24.55397],[72.32899,24.55241],[72.3304,24.55454],[72.32687,24.55802],[72.33093,24.5693],[72.34095,24.56322],[72.34874,24.56245],[72.35373,24.56376],[72.35429,24.55656],[72.35796,24.55564],[72.35836,24.5509],[72.3605,24.55092],[72.36123,24.5478],[72.36752,24.54772],[72.36986,24.5437],[72.36751,24.53977],[72.36816,24.53734],[72.3709,24.53101],[72.37646,24.52469],[72.37969,24.51239],[72.38234,24.51104],[72.38573,24.51187],[72.38858,24.50768],[72.39172,24.51085],[72.40004,24.51447],[72.41297,24.51725],[72.41633,24.52117],[72.42015,24.5201],[72.42344,24.51669],[72.42533,24.51758],[72.43383,24.51588],[72.43631,24.51715],[72.44108,24.51533],[72.44143,24.51136],[72.44368,24.50898],[72.44293,24.50398],[72.43022,24.48017],[72.43378,24.46011],[72.44389,24.44996],[72.44804,24.44779],[72.45146,24.44211],[72.45209,24.43397],[72.45841,24.42487],[72.45724,24.4148],[72.47499,24.4144],[72.50042,24.41705],[72.49319,24.45908],[72.50444,24.45837],[72.5048,24.4716],[72.51449,24.48396],[72.52019,24.5],[72.52631,24.50323],[72.5335,24.50381],[72.53525,24.50567],[72.53598,24.51761],[72.53824,24.51968],[72.57594,24.47885],[72.61357,24.47231],[72.65633,24.46222],[72.67094,24.46488],[72.68088,24.46514],[72.68336,24.46388],[72.68823,24.45781],[72.6875,24.4526],[72.67977,24.44293],[72.68915,24.41173],[72.69191,24.40612],[72.7199,24.37478],[72.72433,24.36762],[72.73086,24.3643],[72.74939,24.36504],[72.77141,24.36823],[72.80582,24.36294],[72.8085,24.36676],[72.81478,24.37023],[72.83649,24.36916],[72.84976,24.37204],[72.85408,24.37131],[72.85568,24.36864],[72.85767,24.36818],[72.85858,24.36974],[72.8698,24.36378],[72.86997,24.36586],[72.89115,24.35697],[72.91073,24.33721],[72.91363,24.338],[72.91979,24.34442],[72.93677,24.34776],[72.95094,24.35636],[72.95403,24.35636],[72.96678,24.36535],[72.9685,24.3689],[72.97755,24.37464],[72.97436,24.38275],[72.95967,24.39127],[72.95441,24.39132],[72.9493,24.39818],[72.9524,24.40253],[72.96193,24.40593],[72.96719,24.41158],[72.96836,24.41494],[72.96558,24.41851],[72.96733,24.42168],[72.9667,24.42385],[72.96993,24.42863],[72.97367,24.43169],[72.97864,24.43186],[72.98121,24.43438],[72.98048,24.43774],[72.97395,24.44116],[72.97316,24.44368],[72.97487,24.44948],[72.96796,24.45091],[72.98619,24.4694],[72.98748,24.47353],[72.9933,24.47965],[73.00098,24.48355],[73.00275,24.48651],[73.01178,24.48876],[73.01569,24.49353],[73.01321,24.49883],[73.0219,24.51288],[73.02179,24.51904],[73.03817,24.52997],[73.04928,24.54206],[73.04809,24.55237],[73.05061,24.55456],[73.0557,24.55393],[73.07136,24.58238],[73.07072,24.58439],[73.07433,24.59098],[73.07826,24.59023],[73.08828,24.60721],[73.08797,24.61821],[73.09032,24.62458],[73.08775,24.6314],[73.09577,24.63556],[73.10434,24.64322],[73.10865,24.65717],[73.11394,24.65707],[73.12369,24.66802],[73.13458,24.66828],[73.13889,24.67472],[73.13826,24.67711],[73.14207,24.6794],[73.13849,24.68324],[73.14563,24.68959],[73.14944,24.71895],[73.14697,24.72101],[73.14635,24.72488],[73.15009,24.7373],[73.1463,24.74322],[73.14624,24.74837],[73.14718,24.75064],[73.15427,24.75562],[73.1553,24.76099],[73.16451,24.76881],[73.16563,24.77318],[73.17103,24.77808],[73.17127,24.80841],[73.16745,24.82299],[73.16245,24.82579],[73.14849,24.84561],[73.13354,24.84654],[73.12777,24.83802],[73.12572,24.83725],[73.1258,24.84024],[73.12412,24.84197],[73.1149,24.84576],[73.11294,24.84484],[73.1064,24.85808],[73.08362,24.85935],[73.07873,24.86124],[73.06408,24.87555],[73.05591,24.88693],[73.03904,24.88763],[73.01249,24.91003],[73.0014,24.91507],[72.99194,24.92202],[72.99654,24.93594],[72.99922,24.93811],[72.99426,24.94891],[72.99637,24.96185],[73.00302,24.96537],[73.00955,24.96495],[73.01495,24.96936],[73.0274,24.96617],[73.03838,24.97247],[73.04132,24.98639],[73.05379,25.00909],[73.06657,25.01662],[73.07086,25.02191],[73.0777,25.02631],[73.10397,25.03666],[73.11158,25.04192],[73.11672,25.05216],[73.12988,25.06652],[73.13203,25.0815],[73.12998,25.08803],[73.13607,25.09764],[73.13045,25.10173],[73.12193,25.11455],[73.11999,25.11105],[73.12118,25.10952],[73.11737,25.10799],[73.11043,25.11042],[73.10493,25.11502],[73.10413,25.12069],[73.09807,25.12116],[73.08889,25.12939],[73.0864,25.13417],[73.07842,25.13718],[73.07042,25.14752],[73.06279,25.15147],[73.05398,25.1596],[73.0437,25.16291],[73.0419,25.16142],[73.0379,25.14285],[73.04329,25.13306],[73.04452,25.11842],[73.04786,25.10541],[73.0406,25.10238],[73.02213,25.08924],[73.01874,25.09404],[72.99963,25.10053],[72.99656,25.1038],[72.99463,25.11612],[72.99373,25.12903],[72.99609,25.13346],[72.99487,25.13504],[72.99682,25.14123],[72.9947,25.14135],[72.99587,25.14602],[72.98501,25.14854],[72.9854,25.14514],[72.98085,25.14436],[72.983,25.13771],[72.98129,25.13733],[72.98098,25.139],[72.97955,25.13722],[72.97637,25.13738],[72.97083,25.1421],[72.94984,25.1424],[72.95072,25.15295],[72.9455,25.16643],[72.94602,25.17041],[72.94841,25.1714],[72.9483,25.17718],[72.94268,25.18612],[72.94766,25.18662],[72.95045,25.1813],[72.95781,25.18211],[72.95497,25.18981],[72.95879,25.19381],[72.97377,25.19361],[72.97161,25.20273],[72.97582,25.21769],[72.975,25.21988],[72.97295,25.22037],[72.9733,25.22408],[72.96751,25.22561],[72.95507,25.21572],[72.94292,25.21851],[72.94183,25.22379],[72.93873,25.22424],[72.93735,25.23006],[72.93917,25.23892],[72.93634,25.24326],[72.92136,25.24633],[72.9167,25.25579],[72.9128,25.25456],[72.90925,25.25022],[72.90172,25.24959],[72.89992,25.25277],[72.89726,25.25062],[72.89621,25.2456],[72.88639,25.24524],[72.88033,25.24946],[72.87029,25.25035],[72.8662,25.25429],[72.8637,25.26095],[72.85113,25.27418],[72.84372,25.27345],[72.83783,25.27999],[72.8308,25.28416]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"116","area_level":"District","area_name":"Tonk","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.2911,26.55696],[75.28782,26.55876],[75.28838,26.56375],[75.28408,26.56417],[75.27017,26.55423],[75.27014,26.54921],[75.26052,26.54967],[75.25092,26.54425],[75.2502,26.53862],[75.25207,26.53275],[75.25091,26.53114],[75.24022,26.52798],[75.2348,26.52433],[75.22588,26.52343],[75.21994,26.51954],[75.2027,26.51772],[75.20117,26.50751],[75.19627,26.50363],[75.19527,26.49926],[75.19932,26.48134],[75.19718,26.48143],[75.18914,26.48749],[75.18237,26.48465],[75.17714,26.47909],[75.17172,26.46927],[75.17172,26.46333],[75.16884,26.46308],[75.17067,26.45248],[75.17454,26.44475],[75.17101,26.4401],[75.16923,26.43988],[75.16854,26.42489],[75.16398,26.42207],[75.16529,26.41933],[75.16853,26.41841],[75.1676,26.41679],[75.16548,26.41416],[75.16146,26.41276],[75.14223,26.41199],[75.13178,26.40923],[75.12862,26.40257],[75.1285,26.39385],[75.13401,26.38326],[75.13461,26.37826],[75.14364,26.3739],[75.14163,26.36426],[75.13415,26.36417],[75.12479,26.35329],[75.12612,26.35207],[75.12655,26.34298],[75.12898,26.34106],[75.12811,26.33816],[75.12927,26.33785],[75.13021,26.32376],[75.13221,26.32135],[75.13147,26.31985],[75.13551,26.3173],[75.13365,26.30636],[75.12907,26.29519],[75.12451,26.29207],[75.11202,26.28829],[75.11485,26.28221],[75.11326,26.27666],[75.11845,26.26889],[75.11782,26.26165],[75.11554,26.25851],[75.12132,26.25324],[75.14038,26.24514],[75.13959,26.23712],[75.14278,26.22995],[75.14109,26.22686],[75.15269,26.22108],[75.15525,26.20422],[75.15811,26.20081],[75.15761,26.18948],[75.16168,26.18763],[75.15627,26.18178],[75.16769,26.17506],[75.16773,26.17241],[75.1827,26.16913],[75.18374,26.16664],[75.18122,26.16388],[75.18707,26.15976],[75.18565,26.1522],[75.18651,26.14614],[75.18159,26.12149],[75.18179,26.11683],[75.18727,26.111],[75.20826,26.10692],[75.21707,26.10766],[75.21845,26.10334],[75.22451,26.09699],[75.23218,26.09111],[75.23912,26.08978],[75.24152,26.08493],[75.24385,26.08431],[75.24266,26.07944],[75.2471,26.08144],[75.25589,26.08943],[75.2584,26.09744],[75.26203,26.09939],[75.26197,26.105],[75.26884,26.11332],[75.27204,26.12737],[75.27076,26.13062],[75.27295,26.13178],[75.27265,26.13454],[75.2862,26.13983],[75.28995,26.14533],[75.29744,26.14727],[75.30478,26.14668],[75.32889,26.13831],[75.33229,26.13551],[75.33394,26.13138],[75.3363,26.13186],[75.33,26.1181],[75.32871,26.10695],[75.3299,26.10617],[75.32222,26.09645],[75.31518,26.09445],[75.31208,26.0883],[75.30889,26.08644],[75.30445,26.08017],[75.30348,26.0719],[75.30575,26.06291],[75.31402,26.0613],[75.31374,26.05954],[75.32132,26.05605],[75.32887,26.05572],[75.32834,26.05413],[75.33012,26.05382],[75.32873,26.05077],[75.33383,26.04854],[75.33476,26.04523],[75.34265,26.03702],[75.34115,26.03582],[75.34424,26.03387],[75.34594,26.02323],[75.34878,26.02303],[75.35168,26.02039],[75.35263,26.01736],[75.35058,26.01164],[75.34927,26.01168],[75.34601,26.00242],[75.33186,26.00333],[75.32681,26.00132],[75.32426,25.99797],[75.31614,25.99699],[75.30432,25.98874],[75.29832,25.97822],[75.30182,25.9775],[75.30237,25.97138],[75.30734,25.96812],[75.30781,25.96476],[75.30684,25.95938],[75.29982,25.94506],[75.28735,25.94907],[75.2854,25.9466],[75.27048,25.95069],[75.27034,25.94787],[75.26558,25.94847],[75.26431,25.94574],[75.25427,25.93933],[75.25065,25.94061],[75.24737,25.9382],[75.24875,25.93353],[75.24422,25.91091],[75.24379,25.90016],[75.24519,25.89807],[75.25359,25.89051],[75.26531,25.88531],[75.26376,25.85457],[75.26632,25.8537],[75.27118,25.85602],[75.27352,25.85903],[75.28026,25.86053],[75.29788,25.85407],[75.30334,25.85933],[75.30563,25.85945],[75.31568,25.85457],[75.32127,25.84374],[75.33251,25.83421],[75.34622,25.83333],[75.3496,25.83176],[75.3424,25.82836],[75.33558,25.82],[75.33485,25.81153],[75.33711,25.80187],[75.33235,25.79053],[75.32531,25.78209],[75.32193,25.77243],[75.31771,25.7666],[75.33148,25.75942],[75.3392,25.76275],[75.3544,25.75824],[75.35985,25.75938],[75.36105,25.76096],[75.3714,25.76013],[75.37065,25.75842],[75.3803,25.75383],[75.37947,25.75162],[75.38554,25.75006],[75.38781,25.75632],[75.38934,25.75611],[75.39112,25.75979],[75.39204,25.76403],[75.38896,25.76542],[75.38993,25.76712],[75.39756,25.77525],[75.40127,25.77525],[75.40286,25.77366],[75.40169,25.77241],[75.41549,25.76667],[75.4215,25.75863],[75.4226,25.75183],[75.42707,25.74599],[75.43277,25.74452],[75.4351,25.74799],[75.4382,25.74703],[75.46099,25.72083],[75.474,25.731],[75.47322,25.737],[75.48578,25.73286],[75.49406,25.73716],[75.50765,25.73964],[75.51016,25.74727],[75.5164,25.74962],[75.52068,25.74499],[75.5203,25.7402],[75.52459,25.73119],[75.52569,25.72226],[75.52896,25.7164],[75.53307,25.71335],[75.55318,25.69948],[75.55441,25.70046],[75.55988,25.699],[75.56736,25.70178],[75.57097,25.70577],[75.57153,25.70969],[75.57442,25.7112],[75.59378,25.71262],[75.58937,25.71069],[75.58853,25.70743],[75.586,25.70574],[75.5876,25.70096],[75.58628,25.69611],[75.58795,25.69575],[75.59231,25.68774],[75.60462,25.68636],[75.61557,25.68022],[75.62224,25.68292],[75.62454,25.68804],[75.63568,25.7002],[75.628,25.70376],[75.62673,25.70583],[75.62864,25.70687],[75.62869,25.7111],[75.63122,25.71385],[75.64008,25.71754],[75.64145,25.7226],[75.65119,25.73425],[75.65165,25.7428],[75.6538,25.74938],[75.66736,25.75099],[75.68525,25.75994],[75.6917,25.7614],[75.69771,25.75517],[75.70123,25.75372],[75.70769,25.75926],[75.71917,25.76195],[75.73039,25.76065],[75.73357,25.75665],[75.74194,25.75416],[75.75371,25.75734],[75.75781,25.76384],[75.75906,25.77266],[75.75661,25.78419],[75.75352,25.78565],[75.76145,25.79475],[75.76139,25.79704],[75.76747,25.79865],[75.76544,25.80714],[75.76635,25.8204],[75.771,25.82375],[75.77527,25.8234],[75.77624,25.82707],[75.77982,25.8261],[75.78812,25.82066],[75.79218,25.81397],[75.79012,25.81142],[75.79157,25.81086],[75.7904,25.80271],[75.79581,25.79997],[75.80581,25.80574],[75.80872,25.80519],[75.81112,25.80904],[75.81427,25.8106],[75.81416,25.81634],[75.81107,25.82279],[75.80881,25.82248],[75.80761,25.83024],[75.8116,25.84473],[75.81666,25.84442],[75.81613,25.84783],[75.81884,25.85446],[75.84551,25.85759],[75.85051,25.86548],[75.85009,25.86937],[75.86212,25.87586],[75.86895,25.87498],[75.87059,25.86663],[75.87365,25.8627],[75.87935,25.86106],[75.87901,25.85904],[75.8838,25.85861],[75.8875,25.8524],[75.89316,25.84912],[75.8896,25.84142],[75.88697,25.8431],[75.88214,25.83431],[75.8809,25.82042],[75.88708,25.81862],[75.89193,25.82107],[75.90348,25.81757],[75.90822,25.823],[75.91087,25.82176],[75.91779,25.82222],[75.9243,25.82757],[75.92526,25.82696],[75.9282,25.83483],[75.93023,25.83573],[75.92927,25.8368],[75.93145,25.84232],[75.92805,25.86068],[75.9297,25.87172],[75.93312,25.87104],[75.93562,25.87313],[75.94285,25.87449],[75.94658,25.87367],[75.94716,25.87195],[75.95096,25.87263],[75.951,25.87411],[75.95295,25.87012],[75.95916,25.87053],[75.95876,25.86688],[75.96013,25.86657],[75.96053,25.86898],[75.96294,25.86823],[75.96215,25.86925],[75.96349,25.87038],[75.96408,25.86876],[75.96663,25.87035],[75.96644,25.86845],[75.9683,25.86758],[75.9713,25.87091],[75.97126,25.87317],[75.97657,25.87152],[75.98005,25.87337],[75.98066,25.87548],[76.00767,25.88082],[76.01139,25.87582],[76.01091,25.86643],[76.03545,25.86147],[76.04156,25.86547],[76.04493,25.86098],[76.05056,25.8615],[76.05217,25.86364],[76.05451,25.85746],[76.05399,25.85592],[76.05123,25.85611],[76.04817,25.8459],[76.04896,25.84173],[76.05144,25.8418],[76.05317,25.83459],[76.04897,25.82694],[76.04489,25.81316],[76.06028,25.80513],[76.07177,25.80386],[76.07587,25.8074],[76.08404,25.80987],[76.10541,25.80527],[76.1046,25.79416],[76.1072,25.78691],[76.1178,25.78336],[76.12073,25.78515],[76.12663,25.78392],[76.13091,25.78564],[76.13803,25.78486],[76.15081,25.77109],[76.14897,25.76347],[76.1588,25.7572],[76.16047,25.76001],[76.15848,25.76614],[76.1598,25.77005],[76.15665,25.77732],[76.1588,25.77959],[76.15763,25.78166],[76.15985,25.78356],[76.15922,25.7852],[76.16244,25.78745],[76.16331,25.7913],[76.16215,25.79396],[76.16399,25.79687],[76.1629,25.79804],[76.16519,25.80223],[76.16179,25.80838],[76.16329,25.81239],[76.17424,25.81436],[76.17907,25.81961],[76.18906,25.83448],[76.18797,25.84219],[76.20148,25.84059],[76.20782,25.83778],[76.21087,25.8314],[76.21382,25.83051],[76.21498,25.8277],[76.21392,25.82616],[76.21654,25.81553],[76.21625,25.81057],[76.22411,25.80367],[76.22752,25.80455],[76.23554,25.79988],[76.23491,25.79701],[76.23627,25.79488],[76.2456,25.793],[76.24993,25.79683],[76.25549,25.79764],[76.25676,25.80371],[76.25937,25.80627],[76.26692,25.80549],[76.27458,25.79798],[76.27582,25.79447],[76.28058,25.79132],[76.28016,25.78581],[76.2863,25.78165],[76.28813,25.787],[76.29206,25.79146],[76.29089,25.79822],[76.29861,25.80374],[76.3064,25.80429],[76.31696,25.81723],[76.31032,25.8246],[76.30684,25.82567],[76.30429,25.82336],[76.29741,25.82529],[76.29469,25.82206],[76.28989,25.82056],[76.28999,25.82608],[76.2876,25.82924],[76.28788,25.83203],[76.28251,25.83385],[76.27988,25.83669],[76.27598,25.82789],[76.2716,25.8256],[76.26909,25.81929],[76.26189,25.8212],[76.25325,25.82798],[76.25017,25.83485],[76.24351,25.83727],[76.24084,25.84679],[76.22928,25.8502],[76.21369,25.86104],[76.21161,25.85983],[76.2104,25.86084],[76.21062,25.87417],[76.21219,25.87886],[76.21087,25.8831],[76.21408,25.88679],[76.21025,25.89791],[76.20772,25.89989],[76.20925,25.90484],[76.20703,25.91064],[76.20894,25.91568],[76.23505,25.91397],[76.23883,25.91512],[76.24102,25.91919],[76.2408,25.92709],[76.2411,25.92873],[76.24254,25.92844],[76.24244,25.93147],[76.23587,25.93393],[76.24274,25.95798],[76.24526,25.95946],[76.24632,25.96736],[76.24287,25.9736],[76.24457,25.98076],[76.23485,25.98291],[76.23887,25.99352],[76.24061,26.02172],[76.22592,26.02827],[76.22599,26.02176],[76.22339,26.0153],[76.21667,26.01112],[76.19548,26.0119],[76.18701,26.01046],[76.18651,26.01486],[76.181,26.01544],[76.17758,25.99835],[76.17226,25.9863],[76.15695,25.98767],[76.15067,25.98997],[76.14706,25.9832],[76.14232,25.98052],[76.13797,25.97252],[76.13595,25.96432],[76.12965,25.96549],[76.1314,25.9733],[76.11829,25.97646],[76.11929,25.98196],[76.1111,25.9863],[76.11258,25.98906],[76.1106,25.99211],[76.09537,26.00034],[76.09041,26.00199],[76.08623,25.9922],[76.08202,25.98709],[76.06291,25.9921],[76.05923,25.99567],[76.06202,25.99501],[76.06299,25.9977],[76.0648,25.99562],[76.06496,25.99802],[76.06697,25.99793],[76.06829,26.00114],[76.06415,26.00149],[76.06481,26.00328],[76.06268,26.00159],[76.06265,26.00472],[76.0674,26.0043],[76.06517,26.00774],[76.06915,26.00702],[76.06916,26.00885],[76.06697,26.01002],[76.06995,26.01119],[76.06874,26.01355],[76.07224,26.01564],[76.07516,26.01487],[76.0803,26.01885],[76.07982,26.02397],[76.08311,26.02448],[76.08042,26.02816],[76.0869,26.03001],[76.08697,26.03301],[76.08997,26.03387],[76.08584,26.03643],[76.0896,26.03696],[76.09107,26.04149],[76.08954,26.0446],[76.10114,26.04237],[76.10037,26.04456],[76.10256,26.04455],[76.10397,26.04768],[76.1077,26.04782],[76.10566,26.06069],[76.09957,26.06021],[76.09824,26.06138],[76.09618,26.05985],[76.08665,26.05869],[76.08323,26.06133],[76.08342,26.06767],[76.07937,26.0687],[76.08296,26.08596],[76.08211,26.0907],[76.08821,26.10239],[76.08804,26.1042],[76.08256,26.10486],[76.07809,26.10795],[76.08058,26.11774],[76.07702,26.11919],[76.06335,26.13096],[76.05893,26.12705],[76.05907,26.12217],[76.05626,26.11497],[76.05385,26.11323],[76.04678,26.11248],[76.03949,26.11498],[76.03082,26.10929],[76.02323,26.1083],[76.00612,26.11224],[75.99773,26.11678],[75.99377,26.11663],[75.99974,26.15576],[75.99388,26.16138],[76.00093,26.16095],[76.00197,26.16242],[76.00205,26.16559],[75.99837,26.17134],[76.00111,26.17407],[76.00431,26.18577],[76.00183,26.18691],[76.00359,26.18843],[76.00071,26.18937],[76.00106,26.1917],[75.99575,26.1945],[75.98975,26.19622],[75.98085,26.19532],[75.97963,26.19797],[75.98314,26.21154],[75.98738,26.21092],[75.99015,26.22149],[76.00693,26.22011],[76.02796,26.22331],[76.02581,26.23623],[76.02603,26.2529],[76.04583,26.24988],[76.05854,26.24406],[76.06637,26.24414],[76.06657,26.24543],[76.08766,26.24007],[76.1018,26.24075],[76.10235,26.24499],[76.10407,26.24518],[76.10454,26.24755],[76.11433,26.24882],[76.12022,26.25399],[76.11783,26.25831],[76.11097,26.2603],[76.11022,26.27624],[76.11887,26.27777],[76.12136,26.28018],[76.11916,26.28469],[76.12319,26.28503],[76.12244,26.29044],[76.12812,26.29039],[76.13195,26.29391],[76.13227,26.2963],[76.13647,26.29525],[76.13786,26.29645],[76.1403,26.30338],[76.14038,26.30912],[76.14492,26.31099],[76.14333,26.31571],[76.13483,26.31954],[76.14072,26.32277],[76.13999,26.32647],[76.12921,26.33471],[76.12498,26.33481],[76.12667,26.33934],[76.12405,26.34004],[76.12402,26.34565],[76.12569,26.3455],[76.12842,26.34996],[76.13651,26.34998],[76.14078,26.35908],[76.13829,26.36369],[76.12944,26.36788],[76.13008,26.37525],[76.14202,26.4008],[76.15114,26.41186],[76.14789,26.41814],[76.14797,26.42141],[76.14826,26.42575],[76.15103,26.42834],[76.15304,26.44138],[76.15275,26.44285],[76.13995,26.44606],[76.13378,26.45429],[76.13196,26.46016],[76.1368,26.46051],[76.13762,26.46569],[76.14122,26.46805],[76.14159,26.47022],[76.14489,26.47033],[76.15092,26.46737],[76.15617,26.47405],[76.15881,26.47427],[76.16791,26.4837],[76.17567,26.48658],[76.16854,26.49593],[76.15259,26.50375],[76.14951,26.51101],[76.15154,26.519],[76.14634,26.52412],[76.13133,26.53225],[76.12119,26.52824],[76.11387,26.53548],[76.10044,26.53881],[76.0961,26.53044],[76.08885,26.52899],[76.08712,26.5251],[76.0832,26.52255],[76.07067,26.52772],[76.06288,26.50897],[76.05244,26.50853],[76.05004,26.50974],[76.05188,26.51224],[76.04785,26.51373],[76.03165,26.51497],[76.03097,26.52086],[76.02521,26.52085],[76.02257,26.51108],[76.01974,26.51179],[76.01795,26.50749],[76.01295,26.51085],[76.00899,26.49985],[75.99595,26.50161],[75.99612,26.50318],[75.99031,26.50515],[75.99036,26.5073],[75.98492,26.50937],[75.98353,26.50473],[75.97332,26.50708],[75.96912,26.50195],[75.96131,26.48588],[75.95529,26.48861],[75.95568,26.49254],[75.93733,26.49518],[75.93516,26.49687],[75.93519,26.50064],[75.93288,26.50163],[75.93286,26.50725],[75.92841,26.5088],[75.92019,26.50926],[75.9064,26.51288],[75.90472,26.51253],[75.9029,26.5087],[75.89472,26.51193],[75.89308,26.51014],[75.88124,26.51518],[75.88156,26.51874],[75.87739,26.51985],[75.86977,26.52005],[75.86089,26.51783],[75.8578,26.51997],[75.85851,26.52134],[75.85578,26.52191],[75.85314,26.51926],[75.84971,26.52],[75.84454,26.51332],[75.83416,26.5176],[75.82503,26.51685],[75.82289,26.51888],[75.81512,26.52064],[75.8113,26.52375],[75.80895,26.52323],[75.80716,26.52523],[75.80473,26.52485],[75.8037,26.52656],[75.79447,26.53014],[75.80251,26.53425],[75.80285,26.5394],[75.80507,26.54168],[75.80224,26.54297],[75.80332,26.5458],[75.7967,26.55068],[75.79564,26.54704],[75.79029,26.54854],[75.78303,26.5435],[75.78108,26.54501],[75.77836,26.54246],[75.77248,26.54286],[75.7731,26.5396],[75.77166,26.53945],[75.77218,26.53546],[75.77045,26.53508],[75.76996,26.53093],[75.77582,26.53208],[75.77755,26.53073],[75.77672,26.52811],[75.77981,26.52718],[75.7792,26.52426],[75.77257,26.52018],[75.7691,26.51985],[75.76839,26.5182],[75.76001,26.51779],[75.76097,26.50732],[75.76647,26.50414],[75.76923,26.49847],[75.76477,26.49674],[75.77396,26.48769],[75.76856,26.48117],[75.77082,26.47145],[75.76867,26.4665],[75.7471,26.46952],[75.74812,26.46055],[75.74094,26.44704],[75.73586,26.45001],[75.73707,26.45506],[75.72716,26.46688],[75.7186,26.45528],[75.70982,26.44666],[75.69504,26.44736],[75.69423,26.45076],[75.68273,26.4535],[75.68176,26.46049],[75.65843,26.46124],[75.65597,26.46517],[75.65214,26.46608],[75.652,26.4535],[75.64583,26.44268],[75.626,26.44491],[75.61457,26.44026],[75.59652,26.44421],[75.58803,26.44813],[75.58154,26.44809],[75.581,26.44571],[75.57864,26.44615],[75.57864,26.44474],[75.56993,26.44785],[75.57107,26.47014],[75.57278,26.4758],[75.56049,26.47963],[75.55575,26.48342],[75.5524,26.48376],[75.55042,26.48674],[75.54614,26.48584],[75.54553,26.48122],[75.53429,26.47641],[75.53122,26.47023],[75.52133,26.46325],[75.51915,26.46564],[75.51109,26.46566],[75.51152,26.47065],[75.50364,26.47341],[75.50021,26.47891],[75.50181,26.4826],[75.48182,26.48237],[75.47365,26.48793],[75.46722,26.48858],[75.46498,26.49157],[75.45487,26.49608],[75.44574,26.49032],[75.43928,26.49056],[75.4378,26.48583],[75.43353,26.48227],[75.41394,26.4874],[75.40881,26.49514],[75.40735,26.4927],[75.41058,26.48318],[75.38985,26.484],[75.38739,26.48127],[75.37838,26.49042],[75.36638,26.48866],[75.34993,26.4971],[75.34802,26.49992],[75.34818,26.50302],[75.3462,26.5028],[75.34352,26.50582],[75.3449,26.51913],[75.33475,26.52198],[75.33833,26.53411],[75.33395,26.53721],[75.33572,26.54086],[75.33442,26.54155],[75.33518,26.54678],[75.33362,26.54708],[75.33368,26.5502],[75.33147,26.55033],[75.32887,26.56136],[75.31341,26.55907],[75.30065,26.56044],[75.2911,26.55696]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"117","area_level":"District","area_name":"Udaipur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.09606,24.23112],[73.09808,24.2307],[73.09871,24.22616],[73.07845,24.21937],[73.07927,24.2051],[73.07703,24.20518],[73.0768,24.20227],[73.06744,24.19469],[73.07665,24.17912],[73.09834,24.16051],[73.10386,24.14988],[73.10343,24.14375],[73.10637,24.14201],[73.11042,24.14231],[73.12216,24.13065],[73.12522,24.12486],[73.13001,24.12228],[73.13812,24.12221],[73.15642,24.11038],[73.15719,24.10953],[73.15499,24.10869],[73.1568,24.10596],[73.15589,24.10381],[73.15892,24.09833],[73.17514,24.09422],[73.18318,24.08966],[73.19657,24.08684],[73.19832,24.08427],[73.21323,24.07804],[73.20531,24.06139],[73.20238,24.05099],[73.19314,24.041],[73.19955,24.03623],[73.20891,24.03389],[73.21086,24.03153],[73.21074,24.02885],[73.22937,24.02211],[73.22975,24.01567],[73.23353,24.01255],[73.23663,24.01234],[73.23988,24.00343],[73.24305,24.00225],[73.24933,24.00319],[73.25237,24.00948],[73.25844,24.01197],[73.261,24.01771],[73.26533,24.02032],[73.27047,24.02103],[73.27548,24.0191],[73.27938,24.02031],[73.28311,24.01887],[73.28614,24.02177],[73.28673,24.02467],[73.28985,24.02666],[73.29063,24.03326],[73.29736,24.04353],[73.30045,24.04631],[73.30732,24.04566],[73.30835,24.04793],[73.31726,24.05305],[73.31632,24.0576],[73.32406,24.06964],[73.32397,24.07413],[73.32595,24.07696],[73.32212,24.09682],[73.32701,24.10922],[73.36199,24.10466],[73.36284,24.10063],[73.36088,24.09631],[73.36071,24.08749],[73.36205,24.08628],[73.36087,24.08128],[73.36532,24.07906],[73.36737,24.07583],[73.3703,24.07637],[73.38625,24.06473],[73.4047,24.04103],[73.40089,24.03221],[73.40666,24.01852],[73.40799,24.00809],[73.40375,23.9933],[73.39788,23.98951],[73.40458,23.9908],[73.41496,23.98578],[73.41604,23.97016],[73.41323,23.95883],[73.41421,23.955],[73.41303,23.94596],[73.41491,23.94458],[73.41324,23.93916],[73.4163,23.93787],[73.41692,23.93465],[73.42083,23.93082],[73.42006,23.92488],[73.41455,23.92159],[73.40899,23.92158],[73.40652,23.91651],[73.40039,23.91683],[73.39516,23.91902],[73.38746,23.91591],[73.38382,23.90886],[73.37863,23.90453],[73.37771,23.89615],[73.37101,23.89114],[73.36802,23.87833],[73.36605,23.87833],[73.3652,23.87548],[73.36112,23.8727],[73.35813,23.86194],[73.35572,23.85923],[73.35607,23.85457],[73.35384,23.85285],[73.35783,23.84661],[73.36771,23.83946],[73.36686,23.83664],[73.36855,23.83188],[73.36508,23.82376],[73.36638,23.82218],[73.36811,23.8226],[73.36791,23.81423],[73.37439,23.81371],[73.37917,23.80731],[73.38167,23.81227],[73.38937,23.80913],[73.39441,23.8088],[73.40064,23.80569],[73.40187,23.80281],[73.40592,23.80659],[73.41121,23.80789],[73.41401,23.81533],[73.41505,23.82618],[73.42251,23.82758],[73.42368,23.83052],[73.42686,23.83203],[73.43084,23.83713],[73.44737,23.83675],[73.46295,23.83975],[73.46866,23.84485],[73.46882,23.86135],[73.47147,23.86958],[73.48203,23.86966],[73.48721,23.88458],[73.49928,23.90505],[73.49775,23.90848],[73.50982,23.91985],[73.51485,23.92989],[73.52408,23.9289],[73.54424,23.93432],[73.54812,23.93688],[73.55358,23.94409],[73.56363,23.95103],[73.57274,23.96217],[73.5765,23.95767],[73.58761,23.96255],[73.58717,23.96498],[73.60116,23.96232],[73.61159,23.96264],[73.61494,23.95878],[73.63367,23.94977],[73.63621,23.94614],[73.65101,23.94289],[73.65147,23.94623],[73.66367,23.9499],[73.66633,23.94769],[73.6692,23.94019],[73.67101,23.93979],[73.69347,23.95723],[73.70346,23.95439],[73.70584,23.95011],[73.72916,23.94605],[73.73168,23.94185],[73.73542,23.93966],[73.73909,23.93955],[73.74602,23.94588],[73.75212,23.94843],[73.76735,23.93666],[73.77376,23.93556],[73.77891,23.93795],[73.78706,23.94808],[73.79283,23.94493],[73.80544,23.94451],[73.81024,23.93563],[73.81986,23.94113],[73.82669,23.93904],[73.83097,23.9355],[73.83836,23.93417],[73.85655,23.93648],[73.86062,23.94195],[73.8651,23.95635],[73.86708,23.95864],[73.87411,23.95931],[73.87639,23.96164],[73.87617,23.9649],[73.89016,23.96935],[73.89655,23.97641],[73.91623,23.98542],[73.92362,23.98517],[73.94093,23.97622],[73.95696,23.9802],[73.97254,23.97961],[73.98522,23.97199],[73.99678,23.96825],[74.00179,23.96897],[74.00941,23.97349],[74.01846,23.97192],[74.03302,23.97808],[74.04344,23.97988],[74.05394,23.97593],[74.06388,23.96895],[74.07169,23.96649],[74.08204,23.97253],[74.08862,23.98479],[74.09372,23.98987],[74.09929,23.99129],[74.10847,23.98806],[74.11464,23.98872],[74.12702,23.99901],[74.14044,24.00678],[74.14621,24.00993],[74.1543,24.01115],[74.15779,24.00953],[74.16108,24.00535],[74.16049,23.9937],[74.16366,23.97306],[74.1724,23.96713],[74.18855,23.9628],[74.19849,23.95454],[74.21111,23.93089],[74.21386,23.91958],[74.21837,23.91294],[74.21906,23.90741],[74.23016,23.91162],[74.2473,23.9264],[74.26481,23.93258],[74.26897,23.93588],[74.27169,23.95036],[74.24472,23.97206],[74.24154,23.98006],[74.25106,23.98558],[74.25669,23.99107],[74.26043,23.99909],[74.2627,24.01313],[74.26973,24.02286],[74.26418,24.04318],[74.25467,24.05849],[74.24534,24.05935],[74.23494,24.07067],[74.23312,24.07995],[74.22457,24.09396],[74.2238,24.09847],[74.23057,24.10555],[74.23549,24.10571],[74.24459,24.1134],[74.24765,24.11834],[74.25193,24.11778],[74.25327,24.12072],[74.25644,24.11696],[74.26425,24.1246],[74.26179,24.12709],[74.25809,24.14471],[74.25266,24.14889],[74.23531,24.15482],[74.23299,24.16029],[74.22763,24.16666],[74.22846,24.16981],[74.22457,24.1746],[74.22342,24.18097],[74.21769,24.18903],[74.21636,24.19475],[74.21032,24.19553],[74.204,24.20063],[74.19802,24.20193],[74.19865,24.2075],[74.19676,24.20829],[74.19447,24.20836],[74.192,24.20274],[74.18602,24.20087],[74.17049,24.21693],[74.18771,24.21859],[74.19962,24.21675],[74.21932,24.19932],[74.22717,24.19881],[74.2399,24.20664],[74.23922,24.20295],[74.24952,24.20489],[74.26342,24.20261],[74.26377,24.20049],[74.27494,24.19551],[74.28252,24.19773],[74.29363,24.19231],[74.30462,24.19188],[74.30049,24.19635],[74.32652,24.18685],[74.33105,24.17943],[74.33703,24.17739],[74.34886,24.16937],[74.35684,24.16674],[74.36918,24.1712],[74.37322,24.16991],[74.37926,24.17145],[74.393,24.18862],[74.39748,24.19754],[74.38875,24.2079],[74.3789,24.21491],[74.37391,24.22244],[74.37331,24.23204],[74.38311,24.2417],[74.40536,24.24974],[74.424,24.25197],[74.43097,24.25709],[74.43183,24.26057],[74.43146,24.26994],[74.42692,24.28312],[74.42809,24.28625],[74.42613,24.28604],[74.42537,24.28792],[74.41975,24.28704],[74.41917,24.28935],[74.41744,24.28697],[74.41023,24.28855],[74.40488,24.28077],[74.40297,24.28364],[74.38045,24.28],[74.37249,24.28327],[74.36721,24.28326],[74.36877,24.28793],[74.37095,24.2892],[74.36961,24.29189],[74.37198,24.29307],[74.37195,24.29598],[74.37653,24.29614],[74.37842,24.29794],[74.37793,24.29948],[74.36892,24.29974],[74.36766,24.30774],[74.36213,24.31567],[74.36204,24.32733],[74.35978,24.33231],[74.35615,24.33334],[74.35637,24.33878],[74.34345,24.33536],[74.34585,24.34103],[74.34456,24.34613],[74.33738,24.34335],[74.33401,24.34374],[74.33841,24.34896],[74.34259,24.3501],[74.34361,24.35214],[74.34362,24.35513],[74.34186,24.35473],[74.34257,24.36432],[74.34484,24.36551],[74.34402,24.36885],[74.34867,24.37045],[74.35339,24.36801],[74.35915,24.37302],[74.36651,24.37174],[74.36565,24.3855],[74.36134,24.40107],[74.35266,24.40599],[74.34334,24.41617],[74.33508,24.41845],[74.33102,24.40989],[74.32493,24.40675],[74.30942,24.40644],[74.31022,24.41271],[74.30757,24.42053],[74.31034,24.4306],[74.31378,24.43218],[74.31031,24.43687],[74.30911,24.44163],[74.31339,24.44527],[74.31976,24.44647],[74.32234,24.45383],[74.32986,24.4565],[74.32869,24.46451],[74.33332,24.47059],[74.34268,24.47811],[74.34109,24.48348],[74.3211,24.48452],[74.31616,24.46992],[74.31576,24.46412],[74.31334,24.46455],[74.30837,24.46167],[74.30094,24.46099],[74.29809,24.46346],[74.29172,24.46378],[74.28718,24.47424],[74.28371,24.4773],[74.27512,24.46406],[74.27283,24.45772],[74.26856,24.45405],[74.26384,24.46151],[74.26719,24.46453],[74.26444,24.46503],[74.26414,24.46731],[74.26833,24.46906],[74.26824,24.47809],[74.26409,24.4813],[74.26171,24.48012],[74.25833,24.48168],[74.25798,24.48445],[74.2563,24.4845],[74.25504,24.48121],[74.25236,24.48125],[74.25443,24.4768],[74.25429,24.47405],[74.2525,24.47378],[74.25201,24.46523],[74.25566,24.46562],[74.25643,24.46403],[74.25759,24.46422],[74.25698,24.46606],[74.26108,24.46606],[74.25963,24.4586],[74.26115,24.45297],[74.25707,24.45045],[74.25538,24.45399],[74.253,24.45283],[74.25188,24.45521],[74.25051,24.45494],[74.25078,24.45132],[74.24784,24.45052],[74.24458,24.44221],[74.24588,24.4383],[74.24041,24.4365],[74.23062,24.42866],[74.22235,24.4283],[74.2226,24.43128],[74.20585,24.43988],[74.1984,24.44704],[74.2012,24.44824],[74.20192,24.45044],[74.20068,24.45162],[74.20456,24.45445],[74.20702,24.46075],[74.20553,24.46201],[74.20641,24.46406],[74.20914,24.4638],[74.21509,24.46771],[74.21406,24.47241],[74.21725,24.47587],[74.21827,24.48116],[74.21957,24.47884],[74.22218,24.47852],[74.23192,24.481],[74.23864,24.48637],[74.2401,24.48365],[74.24296,24.48365],[74.23865,24.4962],[74.23918,24.50339],[74.24083,24.50411],[74.24206,24.50192],[74.2467,24.49967],[74.25061,24.5016],[74.25423,24.50617],[74.25067,24.5059],[74.25072,24.51509],[74.25294,24.51407],[74.25897,24.51569],[74.2693,24.51553],[74.27158,24.52067],[74.26936,24.52239],[74.27031,24.52639],[74.27147,24.52957],[74.27433,24.52957],[74.27407,24.53457],[74.2729,24.53957],[74.26809,24.54124],[74.26261,24.54706],[74.26682,24.55852],[74.26524,24.56768],[74.26746,24.57458],[74.27172,24.57646],[74.25878,24.57904],[74.24496,24.5841],[74.23655,24.60008],[74.22956,24.59558],[74.21537,24.5918],[74.21169,24.60125],[74.21444,24.61464],[74.23919,24.6125],[74.25112,24.61679],[74.24253,24.62872],[74.24261,24.64054],[74.22562,24.64893],[74.21705,24.63905],[74.21286,24.63025],[74.21137,24.62472],[74.21339,24.62387],[74.21282,24.6159],[74.19634,24.61425],[74.19629,24.63249],[74.1989,24.63427],[74.20012,24.64168],[74.2058,24.64374],[74.20471,24.65296],[74.20063,24.66293],[74.19542,24.66296],[74.18995,24.66509],[74.18415,24.65957],[74.18465,24.65674],[74.18321,24.6563],[74.1776,24.6661],[74.17133,24.66917],[74.15668,24.66881],[74.15435,24.66652],[74.15243,24.6667],[74.15382,24.67077],[74.15254,24.67649],[74.15567,24.6849],[74.16995,24.68347],[74.17198,24.68682],[74.17409,24.69879],[74.17138,24.70193],[74.17217,24.70541],[74.17044,24.71132],[74.1493,24.72455],[74.14387,24.72083],[74.13652,24.72015],[74.13341,24.72255],[74.12843,24.73141],[74.12381,24.73027],[74.11351,24.73289],[74.1108,24.72963],[74.10494,24.73448],[74.1126,24.74119],[74.11597,24.75037],[74.11853,24.75177],[74.11779,24.75546],[74.10757,24.76334],[74.10564,24.78248],[74.10725,24.78267],[74.1091,24.78894],[74.11402,24.79021],[74.10905,24.79936],[74.10796,24.80809],[74.11989,24.82495],[74.12519,24.83736],[74.12794,24.83794],[74.13016,24.84326],[74.12924,24.84875],[74.11173,24.8508],[74.10574,24.85773],[74.10519,24.86168],[74.11375,24.86471],[74.13655,24.85948],[74.13735,24.8713],[74.14317,24.88071],[74.12558,24.88528],[74.1165,24.88145],[74.09969,24.86625],[74.08059,24.86767],[74.0775,24.87118],[74.07823,24.87196],[74.07498,24.87405],[74.06902,24.87319],[74.07013,24.87769],[74.06436,24.88155],[74.06114,24.89847],[74.05955,24.90331],[74.05582,24.90768],[74.04611,24.90405],[74.03349,24.90305],[74.02037,24.89326],[74.02063,24.89573],[74.01694,24.8957],[74.01336,24.90063],[74.01358,24.90398],[74.01094,24.9056],[74.01175,24.90804],[74.00389,24.91163],[73.9951,24.92153],[73.99046,24.91312],[73.98444,24.90895],[73.98117,24.90847],[73.97296,24.91131],[73.9717,24.90675],[73.96402,24.90134],[73.95865,24.90007],[73.95191,24.9011],[73.95735,24.89739],[73.95967,24.89224],[73.95837,24.88179],[73.96027,24.87496],[73.95826,24.8639],[73.96004,24.85485],[73.95267,24.84563],[73.94733,24.84786],[73.94201,24.84649],[73.9376,24.84819],[73.93758,24.85144],[73.93305,24.85894],[73.92909,24.87036],[73.92793,24.8798],[73.92912,24.88468],[73.91404,24.89194],[73.90791,24.87979],[73.90147,24.87515],[73.89708,24.87538],[73.88736,24.88556],[73.87894,24.88688],[73.87755,24.8908],[73.87634,24.88806],[73.87253,24.88928],[73.87229,24.89097],[73.87597,24.8924],[73.87146,24.89504],[73.86803,24.8953],[73.86384,24.89849],[73.85782,24.89715],[73.85301,24.90242],[73.83926,24.90672],[73.83696,24.90371],[73.83727,24.89603],[73.83467,24.89402],[73.82787,24.89367],[73.82779,24.89216],[73.82231,24.88898],[73.80325,24.86917],[73.80236,24.86547],[73.79705,24.86311],[73.80581,24.86016],[73.81016,24.85566],[73.80998,24.84869],[73.81204,24.84582],[73.81746,24.84652],[73.81997,24.84145],[73.82265,24.83966],[73.82163,24.83622],[73.82465,24.83254],[73.82171,24.82255],[73.81221,24.81699],[73.80316,24.81817],[73.80054,24.81258],[73.80328,24.81327],[73.81164,24.80167],[73.80765,24.79805],[73.7999,24.79967],[73.79511,24.80367],[73.78894,24.80353],[73.78492,24.79995],[73.78408,24.7939],[73.78222,24.79362],[73.78197,24.78923],[73.78464,24.78384],[73.78235,24.78123],[73.77982,24.78215],[73.77861,24.77967],[73.77568,24.77933],[73.77575,24.77692],[73.78311,24.7741],[73.78431,24.77138],[73.7806,24.76771],[73.78167,24.75923],[73.77911,24.75443],[73.78775,24.75091],[73.79008,24.7458],[73.79672,24.74736],[73.80142,24.75207],[73.81027,24.75041],[73.81077,24.7478],[73.79901,24.74332],[73.79095,24.74218],[73.78703,24.73573],[73.78373,24.72443],[73.77469,24.72293],[73.77263,24.7184],[73.76736,24.71567],[73.75994,24.7168],[73.75959,24.72756],[73.75776,24.73047],[73.75469,24.72883],[73.75,24.73102],[73.74425,24.72993],[73.73985,24.73905],[73.73755,24.7389],[73.73803,24.74279],[73.73256,24.75307],[73.73359,24.75863],[73.72704,24.76691],[73.72366,24.7692],[73.7197,24.7691],[73.71763,24.77566],[73.70978,24.78062],[73.7052,24.78854],[73.7007,24.78463],[73.70042,24.77635],[73.70399,24.77133],[73.70663,24.77082],[73.70968,24.76757],[73.71573,24.76876],[73.71457,24.76341],[73.70717,24.76243],[73.70079,24.75791],[73.70433,24.75235],[73.70302,24.74914],[73.69294,24.74772],[73.69821,24.74252],[73.69757,24.73711],[73.69033,24.7379],[73.68768,24.7443],[73.68111,24.73948],[73.66665,24.73724],[73.66974,24.72984],[73.66843,24.72623],[73.65505,24.7296],[73.65086,24.73801],[73.64536,24.7404],[73.64732,24.74922],[73.65147,24.75644],[73.66133,24.75687],[73.66943,24.76149],[73.67227,24.76951],[73.67159,24.77532],[73.66874,24.77692],[73.65316,24.77809],[73.65533,24.7843],[73.65488,24.78891],[73.65114,24.79411],[73.64845,24.79514],[73.6574,24.81232],[73.66141,24.8143],[73.66482,24.82283],[73.66465,24.82558],[73.66303,24.82626],[73.66522,24.83452],[73.67612,24.83281],[73.68101,24.83467],[73.68405,24.83794],[73.68413,24.84321],[73.68749,24.84514],[73.68548,24.84619],[73.68779,24.85131],[73.68721,24.85522],[73.68842,24.8553],[73.68753,24.85761],[73.68907,24.86161],[73.68456,24.86646],[73.67359,24.86835],[73.67124,24.87163],[73.66904,24.87166],[73.66783,24.87495],[73.66568,24.87477],[73.66508,24.87263],[73.65324,24.88091],[73.64722,24.88025],[73.64625,24.88192],[73.64025,24.88166],[73.62428,24.87589],[73.62345,24.87906],[73.61893,24.87479],[73.61889,24.87303],[73.61222,24.87339],[73.60896,24.86977],[73.60562,24.87819],[73.60602,24.88164],[73.59647,24.88498],[73.59646,24.8877],[73.59179,24.88888],[73.59229,24.89208],[73.58795,24.89358],[73.58803,24.89523],[73.58349,24.89895],[73.58162,24.8989],[73.58018,24.89186],[73.5729,24.89035],[73.56886,24.89268],[73.56627,24.89601],[73.56828,24.91312],[73.55392,24.91146],[73.54992,24.91268],[73.54818,24.91232],[73.54816,24.90984],[73.54444,24.91222],[73.54305,24.91088],[73.54069,24.91222],[73.54006,24.91471],[73.5378,24.91493],[73.53549,24.9241],[73.53653,24.93409],[73.53232,24.94008],[73.53426,24.95324],[73.52815,24.95575],[73.52795,24.96248],[73.52636,24.96273],[73.52649,24.9656],[73.52405,24.96823],[73.51389,24.97069],[73.50801,24.97399],[73.5186,24.99078],[73.51897,24.9936],[73.52329,24.99522],[73.53215,25.01096],[73.50327,25.02258],[73.49059,25.00532],[73.4796,25.00945],[73.48178,25.01798],[73.47271,25.02499],[73.49679,25.05381],[73.49528,25.05449],[73.49978,25.06584],[73.49954,25.07434],[73.50193,25.07465],[73.50487,25.07845],[73.49934,25.08438],[73.50366,25.09023],[73.50264,25.0944],[73.49821,25.09824],[73.49107,25.10045],[73.48747,25.10449],[73.47766,25.10247],[73.4728,25.10306],[73.47083,25.09794],[73.46652,25.09697],[73.46349,25.09358],[73.45442,25.08948],[73.44857,25.09049],[73.44161,25.08833],[73.43478,25.08966],[73.42041,25.08856],[73.41712,25.08681],[73.4097,25.08766],[73.40973,25.0825],[73.4055,25.07897],[73.39885,25.07728],[73.39241,25.06783],[73.38945,25.06587],[73.38722,25.05475],[73.38634,25.05326],[73.38437,25.05364],[73.38125,25.04511],[73.37669,25.04206],[73.37432,25.03748],[73.37248,25.03718],[73.37189,25.03282],[73.35609,25.02496],[73.35084,25.01869],[73.3542,25.01662],[73.35468,25.01235],[73.35213,25.0105],[73.34311,25.01063],[73.34594,25.00281],[73.3442,25.00223],[73.34359,24.99839],[73.34442,24.99419],[73.34633,24.99389],[73.34596,24.98896],[73.34222,24.98605],[73.33886,24.9861],[73.33852,24.98382],[73.33011,24.97342],[73.33558,24.96843],[73.33687,24.96518],[73.3456,24.96117],[73.34733,24.96167],[73.3504,24.95859],[73.34513,24.95279],[73.34467,24.94901],[73.34691,24.94893],[73.34675,24.94771],[73.34259,24.93601],[73.3369,24.93214],[73.33617,24.91795],[73.33089,24.90609],[73.32095,24.90578],[73.31564,24.89907],[73.31562,24.89627],[73.30828,24.89247],[73.29839,24.90106],[73.29733,24.89728],[73.29021,24.89343],[73.28421,24.88683],[73.2803,24.88645],[73.27938,24.88194],[73.28295,24.87833],[73.28093,24.87269],[73.27878,24.87463],[73.27203,24.87386],[73.27367,24.86351],[73.2695,24.85243],[73.26012,24.84297],[73.2583,24.83789],[73.24055,24.82367],[73.23997,24.79579],[73.23298,24.78449],[73.2209,24.78682],[73.21722,24.78433],[73.20962,24.78547],[73.20506,24.78215],[73.20209,24.77757],[73.19911,24.77857],[73.19343,24.7765],[73.18287,24.76664],[73.17035,24.76254],[73.15604,24.75095],[73.14624,24.74837],[73.1463,24.74322],[73.15009,24.7373],[73.14635,24.72488],[73.14697,24.72101],[73.14944,24.71895],[73.14563,24.68959],[73.13849,24.68324],[73.14207,24.6794],[73.13826,24.67711],[73.13889,24.67472],[73.13458,24.66828],[73.12369,24.66802],[73.11394,24.65707],[73.10865,24.65717],[73.10434,24.64322],[73.09577,24.63556],[73.08775,24.6314],[73.09032,24.62458],[73.08797,24.61821],[73.08785,24.60646],[73.07826,24.59023],[73.07433,24.59098],[73.07072,24.58439],[73.07136,24.58238],[73.0557,24.55393],[73.05061,24.55456],[73.04809,24.55237],[73.04928,24.54206],[73.03817,24.52997],[73.02179,24.51904],[73.0219,24.51288],[73.01321,24.49883],[73.01566,24.49344],[73.01133,24.48834],[73.00275,24.48651],[73.00098,24.48355],[73.00425,24.48147],[73.00666,24.47544],[73.00145,24.46928],[73.00382,24.46638],[73.01102,24.4666],[73.0201,24.46445],[73.02066,24.46585],[73.02894,24.46527],[73.03235,24.46688],[73.03523,24.46385],[73.03721,24.46444],[73.03707,24.46677],[73.04932,24.46887],[73.04857,24.47426],[73.0573,24.47769],[73.06108,24.48075],[73.06086,24.48361],[73.06803,24.48326],[73.07013,24.48687],[73.07306,24.48678],[73.07235,24.49165],[73.07786,24.49477],[73.08044,24.49424],[73.08142,24.497],[73.08423,24.49798],[73.08953,24.49663],[73.09839,24.48863],[73.10776,24.4872],[73.11011,24.48126],[73.1092,24.47215],[73.11179,24.46836],[73.11215,24.45992],[73.11021,24.45772],[73.10006,24.45427],[73.09845,24.44622],[73.10283,24.43301],[73.10099,24.42741],[73.09019,24.41409],[73.08672,24.41253],[73.08112,24.40128],[73.0765,24.3966],[73.0875,24.38663],[73.09006,24.38625],[73.10002,24.39039],[73.10269,24.38743],[73.10227,24.38172],[73.10534,24.38259],[73.1076,24.37753],[73.11186,24.37341],[73.12092,24.37009],[73.1243,24.36729],[73.131,24.3656],[73.13347,24.36665],[73.14589,24.35673],[73.15257,24.35384],[73.15534,24.35614],[73.15856,24.3541],[73.16482,24.356],[73.17137,24.35542],[73.18147,24.36625],[73.19919,24.37651],[73.20668,24.37466],[73.21579,24.36872],[73.2192,24.36452],[73.20903,24.35216],[73.20626,24.35126],[73.19857,24.33193],[73.1885,24.33363],[73.18659,24.33546],[73.18621,24.33974],[73.18166,24.34332],[73.17635,24.33788],[73.17656,24.33428],[73.17456,24.33007],[73.17623,24.32473],[73.17372,24.31906],[73.17359,24.30859],[73.16922,24.3003],[73.16652,24.29925],[73.14087,24.31109],[73.13544,24.30843],[73.13099,24.28867],[73.12433,24.27166],[73.11828,24.26674],[73.11021,24.25495],[73.10796,24.25401],[73.1036,24.25549],[73.09536,24.24935],[73.09338,24.23798],[73.08787,24.23492],[73.08804,24.23263],[73.09063,24.23374],[73.09606,24.23112]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"118","area_level":"District","area_name":"Agra","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.18117,27.40699],[78.17896,27.40939],[78.17699,27.40747],[78.17623,27.40647],[78.17857,27.405],[78.17851,27.4006],[78.17621,27.39789],[78.17198,27.39847],[78.17104,27.39702],[78.17524,27.3938],[78.17398,27.39163],[78.17526,27.38954],[78.16897,27.38495],[78.16152,27.38807],[78.15716,27.38414],[78.15111,27.38197],[78.13568,27.36458],[78.12347,27.36817],[78.12143,27.37266],[78.10818,27.36742],[78.1032,27.36961],[78.09155,27.38081],[78.09016,27.38514],[78.08729,27.38558],[78.08153,27.39032],[78.08118,27.39321],[78.08008,27.39339],[78.07995,27.39036],[78.07836,27.38917],[78.07394,27.38812],[78.06961,27.38096],[78.07114,27.37962],[78.06913,27.37673],[78.0696,27.37903],[78.06721,27.3805],[78.06503,27.38005],[78.063,27.38193],[78.0584,27.38045],[78.05818,27.38173],[78.05604,27.38138],[78.05176,27.37715],[78.05391,27.37634],[78.05105,27.37267],[78.0512,27.36865],[78.06285,27.36657],[78.06638,27.36909],[78.08248,27.3581],[78.08884,27.35658],[78.08493,27.35589],[78.08427,27.35133],[78.07946,27.35184],[78.07555,27.3481],[78.07269,27.34177],[78.07473,27.3374],[78.07401,27.33598],[78.07165,27.33476],[78.0621,27.33911],[78.05777,27.33922],[78.05818,27.34099],[78.04371,27.34816],[78.03782,27.34097],[78.04076,27.33553],[78.03498,27.33259],[78.02889,27.333],[78.02971,27.32857],[78.02839,27.32668],[78.02337,27.3269],[78.01689,27.32162],[78.01344,27.32438],[78.01317,27.32651],[78.00967,27.32649],[78.01127,27.32307],[78.0136,27.32282],[78.01161,27.31907],[78.00371,27.32172],[78.00471,27.32369],[78.00183,27.32339],[77.99652,27.32877],[77.99369,27.32723],[77.99468,27.32508],[77.98939,27.32686],[77.98728,27.32523],[77.98133,27.32651],[77.97745,27.32152],[77.97702,27.31831],[77.97896,27.31692],[77.97809,27.31511],[77.98107,27.30855],[77.98801,27.30208],[77.98629,27.28834],[77.98926,27.28566],[77.98797,27.28433],[77.98618,27.28533],[77.97697,27.27861],[77.97411,27.27872],[77.96961,27.26846],[77.96093,27.2677],[77.96253,27.28667],[77.96168,27.29291],[77.95883,27.29559],[77.95351,27.29436],[77.95072,27.29027],[77.94984,27.28292],[77.94671,27.27643],[77.93431,27.27109],[77.92822,27.26572],[77.92852,27.2615],[77.93713,27.25103],[77.9386,27.24511],[77.9361,27.23945],[77.92754,27.2334],[77.92165,27.23399],[77.91348,27.2386],[77.90473,27.25196],[77.91049,27.26234],[77.91294,27.27397],[77.91497,27.27602],[77.91528,27.28246],[77.91321,27.287],[77.90587,27.29312],[77.90479,27.29204],[77.9011,27.29361],[77.89361,27.29307],[77.87852,27.29612],[77.86852,27.29332],[77.86328,27.28872],[77.86291,27.27717],[77.86508,27.27319],[77.87057,27.27082],[77.87865,27.27157],[77.88315,27.26863],[77.88309,27.25726],[77.87909,27.25347],[77.87189,27.25065],[77.86247,27.25057],[77.85646,27.25417],[77.85146,27.25988],[77.8508,27.26655],[77.85433,27.28512],[77.85353,27.29385],[77.85176,27.29644],[77.83942,27.28688],[77.83441,27.2853],[77.82948,27.28022],[77.82389,27.27948],[77.81791,27.27491],[77.81509,27.26691],[77.81906,27.26284],[77.81897,27.26071],[77.81604,27.25968],[77.80399,27.2645],[77.79986,27.25978],[77.79396,27.25763],[77.79068,27.25827],[77.78743,27.25018],[77.79247,27.24392],[77.78276,27.23446],[77.77231,27.23868],[77.77287,27.24063],[77.77124,27.24224],[77.76313,27.24678],[77.75686,27.24786],[77.74053,27.24102],[77.73148,27.24733],[77.71471,27.25334],[77.71135,27.24659],[77.70633,27.24746],[77.70337,27.24887],[77.70252,27.25342],[77.69985,27.25437],[77.69379,27.2476],[77.68847,27.24541],[77.68437,27.2408],[77.67194,27.24233],[77.66652,27.24031],[77.65049,27.24414],[77.64561,27.24248],[77.64294,27.2349],[77.65282,27.23484],[77.65255,27.22609],[77.64832,27.22353],[77.64506,27.21688],[77.64671,27.21022],[77.65029,27.20807],[77.66354,27.20728],[77.66564,27.20901],[77.67553,27.19807],[77.68113,27.1944],[77.67385,27.18286],[77.6584,27.17011],[77.649,27.17032],[77.64073,27.16425],[77.63787,27.16384],[77.63434,27.16788],[77.61996,27.17355],[77.61826,27.16886],[77.61005,27.16286],[77.61057,27.15581],[77.61217,27.15284],[77.61415,27.15249],[77.61369,27.1506],[77.60555,27.14356],[77.60032,27.1423],[77.59897,27.14345],[77.59754,27.1389],[77.59897,27.13455],[77.60282,27.13276],[77.60299,27.12455],[77.60446,27.12425],[77.59785,27.118],[77.59266,27.12023],[77.58811,27.11652],[77.58123,27.11924],[77.56248,27.11017],[77.55028,27.11128],[77.54904,27.10751],[77.54329,27.10422],[77.53993,27.10623],[77.53757,27.09833],[77.52014,27.10434],[77.50566,27.09176],[77.50762,27.08888],[77.51059,27.09042],[77.52265,27.08917],[77.52636,27.08462],[77.52637,27.07824],[77.51935,27.06662],[77.5238,27.06425],[77.53162,27.06457],[77.54164,27.06261],[77.5447,27.07191],[77.54767,27.07154],[77.55359,27.07603],[77.55687,27.07534],[77.55888,27.07196],[77.55934,27.07313],[77.56796,27.07307],[77.57667,27.06903],[77.57276,27.06451],[77.57548,27.05859],[77.5729,27.04883],[77.56714,27.04687],[77.56321,27.02937],[77.57919,27.03821],[77.58209,27.03577],[77.59681,27.0327],[77.59605,27.02657],[77.60182,27.02253],[77.61497,27.02353],[77.62346,27.02199],[77.62853,27.01869],[77.62921,27.01055],[77.63121,27.01022],[77.63415,27.01245],[77.63649,27.01942],[77.64221,27.02567],[77.6563,27.02098],[77.66023,27.02103],[77.66558,27.01725],[77.67341,27.02887],[77.67564,27.04138],[77.68012,27.04704],[77.69306,27.04085],[77.69291,27.03442],[77.68962,27.02667],[77.70573,27.01446],[77.70649,27.0069],[77.70526,27.00379],[77.71136,26.99741],[77.73006,26.99389],[77.7293,27.00752],[77.73343,27.0248],[77.73769,27.02975],[77.74111,27.02904],[77.74849,27.03088],[77.75108,27.02885],[77.74954,27.02121],[77.75952,27.01798],[77.75679,27.01043],[77.75986,27.00629],[77.76296,27.00685],[77.76224,27.00096],[77.75999,26.99981],[77.758,27.0018],[77.75029,27.00187],[77.75196,26.99778],[77.75858,26.99696],[77.75327,26.99275],[77.74572,26.99505],[77.7475,26.98959],[77.74347,26.98317],[77.73907,26.98422],[77.72948,26.98296],[77.7224,26.98785],[77.69949,26.97512],[77.67625,26.97322],[77.67692,26.96556],[77.6736,26.96378],[77.67217,26.95997],[77.67092,26.96299],[77.66857,26.96174],[77.6682,26.96377],[77.66545,26.96278],[77.66381,26.96426],[77.66377,26.96723],[77.66088,26.97122],[77.64958,26.96288],[77.63496,26.95574],[77.6299,26.95172],[77.62295,26.94978],[77.60214,26.93327],[77.5975,26.93515],[77.59733,26.9383],[77.59224,26.94028],[77.59109,26.93597],[77.58851,26.93552],[77.58789,26.93106],[77.5832,26.92416],[77.55342,26.92004],[77.54506,26.91531],[77.54292,26.91627],[77.52349,26.91114],[77.49968,26.90207],[77.49026,26.90049],[77.46833,26.88722],[77.46032,26.88584],[77.4619,26.87749],[77.45896,26.87284],[77.45444,26.87183],[77.44842,26.87533],[77.4454,26.86826],[77.43807,26.86312],[77.42728,26.86409],[77.42664,26.859],[77.43116,26.85268],[77.42968,26.84708],[77.4213,26.83983],[77.4052,26.83478],[77.39787,26.83037],[77.40816,26.81671],[77.42061,26.81059],[77.42516,26.80152],[77.42909,26.80157],[77.42827,26.79319],[77.43229,26.78703],[77.4338,26.78737],[77.43708,26.78429],[77.43384,26.77957],[77.43524,26.77524],[77.43319,26.77482],[77.43363,26.77344],[77.43134,26.77108],[77.43428,26.76972],[77.43269,26.76784],[77.43664,26.76764],[77.43832,26.77012],[77.44184,26.7686],[77.44666,26.77392],[77.45151,26.77405],[77.45345,26.77788],[77.46691,26.77373],[77.46745,26.76748],[77.47037,26.76466],[77.46713,26.76299],[77.46367,26.75669],[77.46226,26.7574],[77.45623,26.74974],[77.45456,26.74187],[77.46141,26.74198],[77.4663,26.74465],[77.47804,26.7457],[77.48523,26.74801],[77.49463,26.75705],[77.50256,26.76873],[77.48895,26.77904],[77.48886,26.78604],[77.48747,26.78815],[77.49324,26.79767],[77.49366,26.80156],[77.50069,26.81701],[77.49912,26.82412],[77.5014,26.83519],[77.50117,26.84445],[77.50782,26.84571],[77.51768,26.84423],[77.51771,26.84284],[77.52071,26.84152],[77.52086,26.83818],[77.51761,26.83776],[77.51698,26.82578],[77.52011,26.82179],[77.52569,26.81887],[77.54197,26.82242],[77.5576,26.81764],[77.57448,26.82086],[77.57805,26.82721],[77.59243,26.82791],[77.60081,26.83561],[77.60837,26.83912],[77.60762,26.8278],[77.61034,26.82858],[77.61823,26.83204],[77.6204,26.8428],[77.62976,26.84147],[77.67474,26.85755],[77.67458,26.86349],[77.67643,26.86848],[77.68232,26.8694],[77.68665,26.87525],[77.6943,26.87396],[77.69615,26.8677],[77.6976,26.86738],[77.70124,26.86775],[77.70651,26.87684],[77.72261,26.87432],[77.72788,26.88526],[77.7259,26.88876],[77.72698,26.89022],[77.723,26.89514],[77.71764,26.89726],[77.72492,26.91038],[77.73238,26.92015],[77.73779,26.92058],[77.744,26.91876],[77.74571,26.92102],[77.75318,26.91687],[77.75891,26.92648],[77.75985,26.93246],[77.77475,26.93215],[77.78047,26.92985],[77.77949,26.92686],[77.78688,26.92386],[77.78647,26.92234],[77.79299,26.91705],[77.7982,26.916],[77.81021,26.92419],[77.815,26.91975],[77.8215,26.91777],[77.82383,26.91993],[77.83194,26.91427],[77.83638,26.91676],[77.84185,26.91257],[77.85024,26.91283],[77.85782,26.90626],[77.86771,26.90628],[77.86896,26.90164],[77.87756,26.90237],[77.88082,26.89945],[77.88452,26.89098],[77.89248,26.89016],[77.8938,26.88892],[77.89187,26.88707],[77.89649,26.884],[77.90432,26.88333],[77.9089,26.89062],[77.90672,26.89286],[77.90883,26.90638],[77.90686,26.91265],[77.90355,26.9146],[77.90636,26.91778],[77.91558,26.91419],[77.91302,26.90886],[77.91562,26.90739],[77.92577,26.90982],[77.93969,26.90678],[77.943,26.89711],[77.94841,26.89358],[77.95813,26.89683],[77.96958,26.90597],[77.97134,26.90587],[77.97345,26.90294],[77.97139,26.90032],[77.97341,26.89821],[77.97232,26.89607],[77.97645,26.89221],[77.98721,26.88935],[77.98873,26.89169],[77.99303,26.89249],[78.00224,26.9029],[78.00565,26.90207],[78.00963,26.90405],[78.01459,26.90291],[78.02132,26.90032],[78.0234,26.89099],[78.03019,26.88603],[78.02997,26.8841],[78.02722,26.88397],[78.02778,26.88044],[78.02577,26.8789],[78.02423,26.87257],[78.03119,26.87363],[78.03548,26.8708],[78.03528,26.86837],[78.03227,26.86516],[78.02096,26.85751],[78.02224,26.85268],[78.02647,26.84953],[78.032,26.8518],[78.04466,26.86998],[78.05597,26.86839],[78.05172,26.87072],[78.05019,26.87578],[78.05212,26.89421],[78.05126,26.9017],[78.04805,26.90747],[78.04881,26.91013],[78.05585,26.90691],[78.05952,26.90885],[78.0641,26.90652],[78.06695,26.91139],[78.07173,26.90637],[78.09604,26.89378],[78.09867,26.89659],[78.09438,26.9033],[78.10021,26.9049],[78.10434,26.90343],[78.10737,26.89638],[78.1112,26.89588],[78.11293,26.89901],[78.11265,26.90291],[78.1084,26.91219],[78.10158,26.91635],[78.10176,26.91783],[78.10517,26.92682],[78.12019,26.92149],[78.12182,26.92258],[78.12108,26.93204],[78.1232,26.93183],[78.12278,26.93452],[78.11375,26.93599],[78.11183,26.94028],[78.11856,26.94697],[78.12557,26.94939],[78.1328,26.94737],[78.14268,26.94983],[78.14754,26.94938],[78.15129,26.94801],[78.15646,26.94321],[78.17199,26.94817],[78.18128,26.94084],[78.19155,26.94246],[78.19766,26.94093],[78.20517,26.93263],[78.21014,26.93123],[78.21643,26.93508],[78.22056,26.94343],[78.2242,26.94646],[78.22669,26.94527],[78.23129,26.93658],[78.23738,26.93597],[78.23862,26.92664],[78.24191,26.92614],[78.2479,26.92865],[78.25462,26.92581],[78.25576,26.92809],[78.25319,26.93273],[78.25411,26.93546],[78.25856,26.93371],[78.26485,26.92675],[78.26531,26.92259],[78.27159,26.92122],[78.27077,26.9151],[78.2637,26.90831],[78.26229,26.90195],[78.25913,26.89674],[78.25081,26.89178],[78.2469,26.89307],[78.24371,26.88869],[78.23708,26.88897],[78.23421,26.87599],[78.23264,26.87428],[78.22664,26.87488],[78.21922,26.87187],[78.21258,26.87137],[78.2127,26.86982],[78.20862,26.86886],[78.20841,26.87197],[78.20261,26.88172],[78.20006,26.88302],[78.1965,26.88092],[78.20222,26.86633],[78.21176,26.85069],[78.21273,26.84613],[78.21702,26.84336],[78.22017,26.84378],[78.22081,26.84012],[78.21858,26.8345],[78.21959,26.83267],[78.222,26.83046],[78.22975,26.82981],[78.24207,26.82503],[78.25627,26.81571],[78.26173,26.81377],[78.26791,26.81358],[78.27246,26.81593],[78.27489,26.82519],[78.27312,26.84294],[78.27824,26.85086],[78.28251,26.85444],[78.30424,26.86245],[78.33149,26.86249],[78.34232,26.86643],[78.35996,26.86954],[78.3686,26.86709],[78.37276,26.86336],[78.38256,26.84065],[78.3929,26.8236],[78.39905,26.81848],[78.40555,26.81841],[78.42765,26.82537],[78.43429,26.82571],[78.44012,26.81998],[78.45317,26.79771],[78.4617,26.78819],[78.47963,26.78703],[78.49779,26.78159],[78.52323,26.78031],[78.54408,26.76461],[78.56478,26.76113],[78.57273,26.75068],[78.57746,26.74886],[78.59281,26.75234],[78.60303,26.75005],[78.613,26.75243],[78.61624,26.75603],[78.61931,26.76666],[78.62845,26.77323],[78.64683,26.76946],[78.66291,26.76243],[78.67053,26.76241],[78.67591,26.76757],[78.67739,26.77809],[78.68452,26.78875],[78.69841,26.79238],[78.71084,26.79238],[78.7221,26.79728],[78.72678,26.79575],[78.72988,26.79222],[78.72565,26.77905],[78.72815,26.77574],[78.73718,26.77508],[78.74692,26.78667],[78.7536,26.78701],[78.75827,26.78452],[78.76215,26.77925],[78.76718,26.76254],[78.77102,26.75908],[78.77692,26.75847],[78.78041,26.76752],[78.78062,26.7747],[78.78432,26.77674],[78.78365,26.77828],[78.79183,26.79461],[78.79306,26.80125],[78.7995,26.80274],[78.80705,26.80011],[78.80893,26.80177],[78.81287,26.80016],[78.81523,26.80167],[78.82089,26.79832],[78.82108,26.79509],[78.8327,26.79218],[78.83406,26.79103],[78.83334,26.78918],[78.84621,26.79804],[78.8539,26.81046],[78.84786,26.81764],[78.84572,26.82556],[78.84141,26.83198],[78.82573,26.8439],[78.82803,26.84889],[78.82066,26.85673],[78.81907,26.85671],[78.81939,26.86341],[78.81609,26.86933],[78.81829,26.86975],[78.81775,26.87097],[78.81514,26.87053],[78.81429,26.86865],[78.81068,26.87319],[78.80483,26.87344],[78.80635,26.87481],[78.80448,26.8755],[78.80084,26.87447],[78.79768,26.86869],[78.79775,26.86388],[78.7931,26.86263],[78.78343,26.8632],[78.7811,26.86943],[78.78661,26.87895],[78.78215,26.88262],[78.77608,26.88239],[78.77112,26.89595],[78.76828,26.8985],[78.76999,26.902],[78.76663,26.90636],[78.75844,26.909],[78.75378,26.90682],[78.75521,26.8899],[78.75355,26.88751],[78.74893,26.88663],[78.74336,26.89133],[78.74158,26.89492],[78.74152,26.90124],[78.74578,26.91537],[78.73841,26.92257],[78.73441,26.923],[78.73071,26.92046],[78.73011,26.90463],[78.72302,26.90026],[78.71437,26.90118],[78.71051,26.90324],[78.71003,26.91368],[78.70773,26.91846],[78.703,26.9187],[78.69906,26.91579],[78.69712,26.91191],[78.69325,26.91051],[78.68316,26.9188],[78.67614,26.92035],[78.67286,26.9167],[78.6708,26.90985],[78.67173,26.89833],[78.67639,26.888],[78.67478,26.87967],[78.66858,26.87827],[78.66137,26.88543],[78.64948,26.88121],[78.63929,26.88194],[78.63458,26.88565],[78.63507,26.89846],[78.63334,26.90752],[78.63147,26.90968],[78.62081,26.91401],[78.6178,26.9187],[78.61695,26.92274],[78.61845,26.93109],[78.62431,26.94159],[78.62178,26.94486],[78.6025,26.95114],[78.59617,26.94929],[78.59657,26.94343],[78.60599,26.93593],[78.60941,26.92509],[78.60436,26.9189],[78.59806,26.91877],[78.59473,26.92091],[78.58573,26.93532],[78.57127,26.94439],[78.57131,26.94858],[78.57731,26.95784],[78.57594,26.96193],[78.57253,26.96325],[78.56091,26.9633],[78.55084,26.96019],[78.54473,26.96068],[78.53744,26.96444],[78.52763,26.97407],[78.52112,26.9762],[78.51491,26.9735],[78.51201,26.96766],[78.51459,26.9646],[78.52308,26.96172],[78.52578,26.95909],[78.52461,26.94245],[78.52623,26.93858],[78.51443,26.94002],[78.51541,26.95608],[78.51157,26.96162],[78.50583,26.96281],[78.49318,26.96086],[78.48331,26.96496],[78.48188,26.96955],[78.48523,26.98269],[78.48442,26.98704],[78.48044,26.99167],[78.47644,26.99174],[78.46379,26.98408],[78.45052,26.98423],[78.44891,26.99027],[78.45351,27.00787],[78.45062,27.01349],[78.44359,27.01866],[78.43589,27.02958],[78.43337,27.04384],[78.42347,27.05334],[78.41566,27.05628],[78.39825,27.05598],[78.39264,27.05728],[78.38214,27.06473],[78.36404,27.08134],[78.36039,27.08261],[78.35542,27.07997],[78.34973,27.07248],[78.3343,27.07588],[78.32993,27.07445],[78.32577,27.07026],[78.31942,27.05457],[78.31624,27.05223],[78.31133,27.05355],[78.31018,27.06012],[78.3127,27.07231],[78.30897,27.08443],[78.31123,27.09804],[78.31895,27.10077],[78.33436,27.09952],[78.33704,27.10191],[78.34175,27.11301],[78.34434,27.11472],[78.35793,27.11011],[78.36645,27.11221],[78.37202,27.12004],[78.37142,27.1222],[78.3675,27.12415],[78.3399,27.12887],[78.33466,27.12373],[78.33259,27.1175],[78.32843,27.11177],[78.32326,27.10988],[78.31715,27.11428],[78.3156,27.12266],[78.31346,27.12609],[78.30521,27.12673],[78.30157,27.12535],[78.29528,27.11918],[78.29185,27.11292],[78.29116,27.10534],[78.29491,27.08826],[78.2905,27.08326],[78.28352,27.08072],[78.27706,27.08101],[78.27164,27.08343],[78.26546,27.10046],[78.25872,27.10875],[78.24592,27.11291],[78.24092,27.11301],[78.23869,27.11076],[78.239,27.10363],[78.25443,27.09578],[78.25817,27.0906],[78.25866,27.08498],[78.25512,27.07963],[78.24514,27.07479],[78.23305,27.07423],[78.22411,27.07658],[78.22287,27.08077],[78.22835,27.0882],[78.22881,27.09503],[78.22311,27.10077],[78.20947,27.10475],[78.20483,27.10893],[78.19991,27.12141],[78.2016,27.13079],[78.20825,27.13631],[78.20857,27.14066],[78.21599,27.14816],[78.22068,27.15652],[78.22049,27.15935],[78.21503,27.17146],[78.21023,27.17385],[78.20598,27.18145],[78.19686,27.18489],[78.19726,27.18802],[78.19422,27.19168],[78.19978,27.20471],[78.20409,27.20844],[78.20422,27.21167],[78.2074,27.21444],[78.2058,27.21639],[78.21121,27.22156],[78.20177,27.22927],[78.20134,27.23293],[78.20481,27.23904],[78.20617,27.23857],[78.2178,27.24658],[78.21813,27.24786],[78.21406,27.25069],[78.21137,27.25134],[78.21044,27.24996],[78.20672,27.25216],[78.2046,27.25543],[78.20519,27.25808],[78.21161,27.26505],[78.20755,27.27051],[78.21997,27.28781],[78.20839,27.29179],[78.19855,27.29838],[78.19708,27.30499],[78.19398,27.30781],[78.20008,27.31193],[78.20114,27.30989],[78.2059,27.31157],[78.20754,27.30678],[78.20521,27.30224],[78.20958,27.30119],[78.21111,27.30265],[78.21092,27.30648],[78.21796,27.30928],[78.21868,27.31196],[78.2216,27.31113],[78.22518,27.30641],[78.23042,27.30996],[78.23294,27.30777],[78.23544,27.31395],[78.24279,27.31141],[78.25029,27.30181],[78.25923,27.30143],[78.26747,27.30318],[78.26546,27.30611],[78.26671,27.31362],[78.2687,27.31485],[78.26788,27.31586],[78.27055,27.31955],[78.27839,27.32436],[78.27763,27.33343],[78.27466,27.33766],[78.27905,27.34147],[78.27854,27.3437],[78.27988,27.34271],[78.28313,27.34485],[78.28423,27.34818],[78.28301,27.35344],[78.28826,27.35669],[78.28413,27.36196],[78.28718,27.36666],[78.28593,27.37413],[78.29164,27.3753],[78.29061,27.37797],[78.29536,27.38305],[78.29073,27.38731],[78.28602,27.38428],[78.28527,27.38878],[78.27775,27.39444],[78.2715,27.38863],[78.26849,27.39097],[78.26303,27.39033],[78.25725,27.39497],[78.25073,27.39199],[78.24408,27.39483],[78.23915,27.4009],[78.23366,27.40067],[78.22576,27.40559],[78.21509,27.40044],[78.20425,27.40314],[78.19197,27.40134],[78.18117,27.40699]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"119","area_level":"District","area_name":"Aligarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.84597,28.17343],[77.83989,28.17972],[77.8366,28.17493],[77.82981,28.17063],[77.82439,28.17235],[77.82234,28.17005],[77.82213,28.16648],[77.81876,28.16731],[77.81437,28.16461],[77.8054,28.16272],[77.80966,28.15286],[77.80777,28.15089],[77.80858,28.14793],[77.79306,28.14529],[77.78529,28.14875],[77.7823,28.14801],[77.77264,28.13656],[77.76634,28.14134],[77.76571,28.14599],[77.76216,28.14827],[77.76103,28.15186],[77.76208,28.15332],[77.75944,28.15782],[77.76064,28.15945],[77.75426,28.16085],[77.75234,28.15965],[77.74325,28.15198],[77.74503,28.14635],[77.74195,28.1368],[77.73114,28.13037],[77.73424,28.12702],[77.73161,28.11829],[77.72428,28.11325],[77.72822,28.11148],[77.72886,28.09879],[77.72128,28.08996],[77.72057,28.09094],[77.71202,28.08707],[77.70027,28.09056],[77.69534,28.08685],[77.68721,28.09151],[77.68085,28.09835],[77.67992,28.10133],[77.67271,28.10292],[77.67357,28.10927],[77.66863,28.1126],[77.66619,28.11794],[77.66457,28.11713],[77.66182,28.1197],[77.6574,28.11898],[77.65464,28.12195],[77.64742,28.11299],[77.64515,28.11387],[77.64291,28.11263],[77.64481,28.10928],[77.63763,28.103],[77.63166,28.10627],[77.62916,28.1058],[77.62612,28.10946],[77.62457,28.10747],[77.61773,28.10894],[77.6146,28.10884],[77.61386,28.1072],[77.60795,28.11152],[77.60198,28.11899],[77.59153,28.10774],[77.58989,28.10679],[77.58828,28.10824],[77.58722,28.10586],[77.58517,28.10658],[77.58031,28.10412],[77.57697,28.10048],[77.57649,28.09694],[77.56735,28.08797],[77.55166,28.08863],[77.54546,28.09122],[77.54137,28.08899],[77.53498,28.09117],[77.52526,28.08962],[77.52161,28.08722],[77.50745,28.08999],[77.49754,28.08538],[77.48414,28.08814],[77.47561,28.08512],[77.47825,28.08039],[77.49979,28.06331],[77.50124,28.05852],[77.4986,28.05225],[77.49306,28.04683],[77.48534,28.04464],[77.48364,28.04045],[77.48841,28.0367],[77.51276,28.03189],[77.51193,28.02775],[77.50821,28.02524],[77.50839,28.02277],[77.52133,28.01414],[77.52403,28.00674],[77.52425,28.0],[77.54243,27.98909],[77.5412,27.98182],[77.53777,27.97902],[77.52946,27.97607],[77.52119,27.97651],[77.51697,27.97115],[77.51872,27.96213],[77.54423,27.96221],[77.54608,27.95793],[77.53695,27.93797],[77.53661,27.93398],[77.5293,27.92526],[77.5262,27.92537],[77.52791,27.92096],[77.53224,27.92109],[77.5367,27.91825],[77.5428,27.91888],[77.54442,27.91644],[77.55151,27.91275],[77.55769,27.91145],[77.56323,27.91438],[77.56753,27.91909],[77.56826,27.9266],[77.57283,27.92944],[77.57771,27.92984],[77.58263,27.92805],[77.58394,27.93305],[77.59047,27.93547],[77.59247,27.93805],[77.60186,27.93476],[77.60585,27.9376],[77.61467,27.93264],[77.62125,27.93314],[77.62464,27.93554],[77.62584,27.94247],[77.62868,27.94565],[77.62801,27.94752],[77.6297,27.95097],[77.6429,27.96762],[77.65634,27.96585],[77.65918,27.96355],[77.66093,27.95613],[77.67295,27.94503],[77.68685,27.94235],[77.69307,27.94404],[77.69566,27.94294],[77.70395,27.9474],[77.72312,27.93306],[77.73074,27.9336],[77.74298,27.92315],[77.7435,27.91392],[77.76066,27.90568],[77.76254,27.90631],[77.76468,27.90321],[77.76205,27.89933],[77.7638,27.89647],[77.76025,27.88874],[77.76273,27.88506],[77.76524,27.8736],[77.77741,27.86423],[77.78398,27.86544],[77.80005,27.86251],[77.80226,27.86386],[77.80896,27.85918],[77.78887,27.84925],[77.78652,27.85013],[77.78024,27.84557],[77.78202,27.84326],[77.78066,27.84077],[77.78588,27.83646],[77.78874,27.82933],[77.79654,27.82521],[77.79994,27.82549],[77.80267,27.82797],[77.80864,27.82207],[77.80637,27.81977],[77.81368,27.81435],[77.81505,27.81131],[77.8111,27.8068],[77.80952,27.79993],[77.81303,27.79691],[77.81528,27.79179],[77.81328,27.79025],[77.81267,27.78687],[77.81607,27.77941],[77.81454,27.77759],[77.82099,27.7752],[77.82452,27.76682],[77.83444,27.75707],[77.83139,27.75342],[77.83238,27.75288],[77.82785,27.75019],[77.81812,27.75398],[77.81494,27.75249],[77.8122,27.7537],[77.80549,27.7531],[77.80279,27.74917],[77.80165,27.74957],[77.79423,27.7352],[77.79641,27.73359],[77.79402,27.72843],[77.79588,27.72732],[77.79534,27.72607],[77.80026,27.72407],[77.79434,27.71222],[77.79943,27.70528],[77.79982,27.70073],[77.79629,27.69567],[77.78811,27.68922],[77.79035,27.68638],[77.78852,27.68445],[77.81553,27.66744],[77.81863,27.6711],[77.81689,27.6722],[77.81887,27.67383],[77.82658,27.67025],[77.83093,27.67044],[77.83104,27.66817],[77.82759,27.66817],[77.82678,27.6664],[77.82976,27.66536],[77.8288,27.66262],[77.83392,27.65897],[77.83322,27.65772],[77.83713,27.65715],[77.8386,27.65925],[77.839,27.65757],[77.84097,27.6574],[77.84101,27.65487],[77.84833,27.65475],[77.84776,27.65322],[77.8499,27.65234],[77.84783,27.64734],[77.84916,27.64662],[77.84873,27.64453],[77.85271,27.64032],[77.85222,27.63685],[77.85743,27.63147],[77.86206,27.62151],[77.8523,27.61237],[77.84916,27.60638],[77.8528,27.59991],[77.86315,27.59018],[77.86482,27.57921],[77.86874,27.57204],[77.87429,27.57141],[77.87528,27.57615],[77.88093,27.58169],[77.88243,27.58627],[77.88513,27.58781],[77.88936,27.58937],[77.89434,27.58597],[77.89783,27.58267],[77.8956,27.57905],[77.89809,27.57857],[77.90424,27.58865],[77.90779,27.58795],[77.90975,27.59137],[77.91869,27.59036],[77.91642,27.59307],[77.91837,27.59415],[77.91691,27.59421],[77.91609,27.59648],[77.91925,27.60129],[77.94089,27.61004],[77.94762,27.60424],[77.95492,27.61028],[77.95353,27.61205],[77.95685,27.61475],[77.96038,27.6153],[77.96331,27.61251],[77.96355,27.60491],[77.97147,27.59583],[77.9755,27.6012],[77.97864,27.60286],[77.98713,27.60381],[77.99629,27.60168],[78.00187,27.60526],[77.98845,27.61428],[77.98144,27.62153],[77.98283,27.62824],[77.98558,27.63505],[77.9988,27.64303],[78.00523,27.64926],[78.01323,27.64791],[78.01717,27.64544],[78.02113,27.64626],[78.02186,27.65089],[78.01864,27.65259],[78.01477,27.65867],[78.01948,27.6608],[78.0228,27.66773],[78.02052,27.67186],[78.01021,27.67827],[78.00705,27.6827],[77.99845,27.68589],[77.99129,27.692],[77.99843,27.6956],[78.00297,27.70123],[78.001,27.70414],[78.0096,27.70931],[78.01529,27.71639],[78.01388,27.71824],[78.01524,27.72135],[78.01115,27.72554],[78.00804,27.72413],[78.00445,27.72834],[78.00819,27.73161],[78.01233,27.74023],[78.01336,27.74102],[78.01818,27.7373],[78.02004,27.7383],[78.0307,27.7328],[78.04395,27.74572],[78.04181,27.74948],[78.03884,27.748],[78.02641,27.75301],[78.02321,27.75026],[78.019,27.75482],[78.01753,27.7584],[78.0184,27.76073],[78.02235,27.76356],[78.0252,27.76887],[78.02996,27.76696],[78.03685,27.7716],[78.04169,27.77187],[78.04253,27.77426],[78.04057,27.77545],[78.04044,27.78438],[78.04395,27.78281],[78.06143,27.79317],[78.07179,27.77924],[78.06679,27.77472],[78.0664,27.77023],[78.07624,27.76865],[78.08034,27.77216],[78.08693,27.76523],[78.09265,27.76777],[78.09716,27.76508],[78.1047,27.76815],[78.11178,27.76871],[78.11778,27.76522],[78.1237,27.77154],[78.12454,27.77054],[78.12592,27.77203],[78.13219,27.76796],[78.13562,27.77227],[78.14606,27.76496],[78.15142,27.75822],[78.15776,27.76199],[78.16285,27.76143],[78.16484,27.76344],[78.16976,27.76179],[78.18047,27.75328],[78.17837,27.75084],[78.18193,27.74648],[78.17181,27.73561],[78.17492,27.73423],[78.17702,27.72842],[78.18242,27.72177],[78.17844,27.72082],[78.17326,27.71559],[78.19209,27.70621],[78.2038,27.69298],[78.21172,27.69285],[78.21571,27.69464],[78.21617,27.68873],[78.21982,27.68628],[78.22752,27.67367],[78.23807,27.66797],[78.24036,27.66506],[78.25682,27.6832],[78.26402,27.699],[78.27131,27.70632],[78.28755,27.71117],[78.29151,27.71401],[78.29127,27.71604],[78.30361,27.72214],[78.32695,27.72245],[78.35258,27.74439],[78.37059,27.74826],[78.37163,27.75016],[78.36484,27.76909],[78.36669,27.77854],[78.36344,27.78618],[78.37196,27.79708],[78.37925,27.80235],[78.38429,27.81485],[78.39097,27.82005],[78.39755,27.82828],[78.40555,27.8315],[78.40669,27.83415],[78.40552,27.84186],[78.40848,27.84794],[78.41489,27.8456],[78.4159,27.84715],[78.41705,27.84594],[78.42137,27.84653],[78.43012,27.83951],[78.43824,27.83787],[78.44535,27.83888],[78.44518,27.83095],[78.45746,27.82292],[78.45726,27.82138],[78.45441,27.82075],[78.45764,27.81967],[78.45613,27.81772],[78.45963,27.81626],[78.46123,27.81375],[78.45945,27.81307],[78.46345,27.81077],[78.47169,27.81106],[78.48568,27.80634],[78.49042,27.80221],[78.50161,27.79929],[78.51036,27.80209],[78.51879,27.81386],[78.51754,27.81571],[78.5151,27.8153],[78.51594,27.81915],[78.51365,27.82072],[78.51284,27.82418],[78.51605,27.82512],[78.51359,27.82672],[78.51442,27.82904],[78.50941,27.82961],[78.50691,27.83213],[78.51426,27.84139],[78.49882,27.85252],[78.49312,27.85373],[78.49178,27.85741],[78.49469,27.85959],[78.49973,27.85941],[78.50696,27.86686],[78.50831,27.86895],[78.50612,27.87199],[78.50767,27.87266],[78.507,27.87479],[78.51185,27.87904],[78.51109,27.88096],[78.51441,27.88373],[78.51302,27.88572],[78.51923,27.89453],[78.53463,27.89895],[78.52837,27.90601],[78.531,27.90939],[78.53333,27.91089],[78.53944,27.90797],[78.54946,27.90944],[78.55222,27.91148],[78.55393,27.91586],[78.57349,27.93645],[78.56677,27.9425],[78.58585,27.95725],[78.58579,27.95908],[78.58061,27.96322],[78.58744,27.97176],[78.59199,27.97335],[78.5937,27.97657],[78.59966,27.98129],[78.59817,27.98423],[78.59504,27.98487],[78.59142,27.99429],[78.59658,27.99796],[78.59422,28.00003],[78.59528,28.00759],[78.59389,28.01178],[78.59759,28.01511],[78.6026,28.01485],[78.60772,28.01799],[78.59541,28.03316],[78.58902,28.03373],[78.59594,28.03448],[78.60492,28.0382],[78.59091,28.0414],[78.58198,28.0487],[78.5731,28.0498],[78.5828,28.06089],[78.57925,28.06365],[78.56515,28.06174],[78.55718,28.06443],[78.54613,28.05088],[78.54005,28.04916],[78.53799,28.04578],[78.53094,28.04388],[78.53132,28.05022],[78.52488,28.05571],[78.52104,28.05636],[78.51968,28.05941],[78.51974,28.06354],[78.5224,28.06743],[78.50713,28.07879],[78.51556,28.08619],[78.49077,28.1054],[78.49026,28.10895],[78.48431,28.10786],[78.47944,28.11358],[78.45197,28.09015],[78.44467,28.08168],[78.4296,28.08767],[78.42434,28.09347],[78.41235,28.08324],[78.40672,28.08947],[78.40105,28.08729],[78.39772,28.09158],[78.39915,28.09317],[78.39351,28.09581],[78.3935,28.09723],[78.39555,28.09789],[78.39503,28.09917],[78.38758,28.10486],[78.38359,28.10529],[78.37708,28.09903],[78.37739,28.09751],[78.37101,28.0936],[78.36892,28.09506],[78.3658,28.09796],[78.36578,28.10136],[78.36917,28.10448],[78.36936,28.10785],[78.37392,28.11226],[78.36791,28.12042],[78.37064,28.12676],[78.36774,28.12943],[78.36877,28.13048],[78.36591,28.13433],[78.36298,28.13317],[78.36025,28.13702],[78.35657,28.1368],[78.3485,28.14541],[78.34458,28.14211],[78.33945,28.14658],[78.3352,28.14516],[78.33187,28.14181],[78.33117,28.137],[78.32538,28.1288],[78.32252,28.13049],[78.3193,28.12981],[78.31618,28.12401],[78.31317,28.1217],[78.30802,28.12319],[78.29916,28.11643],[78.29779,28.11727],[78.29529,28.11379],[78.29049,28.11815],[78.28417,28.11328],[78.2758,28.11136],[78.27389,28.11637],[78.26895,28.1179],[78.26357,28.11545],[78.25805,28.11544],[78.25777,28.1113],[78.24971,28.10823],[78.24536,28.11121],[78.23336,28.11248],[78.22694,28.10974],[78.22643,28.10659],[78.22825,28.10327],[78.22493,28.10083],[78.22186,28.10133],[78.21602,28.09876],[78.21313,28.0935],[78.20978,28.09406],[78.20929,28.09617],[78.2086,28.09463],[78.20578,28.09589],[78.20611,28.09978],[78.20384,28.10095],[78.19559,28.09431],[78.17998,28.07702],[78.17477,28.07485],[78.16455,28.07476],[78.16196,28.07569],[78.15875,28.0803],[78.15131,28.07319],[78.14953,28.07486],[78.14819,28.06938],[78.13758,28.06332],[78.13534,28.05985],[78.12453,28.05926],[78.11598,28.06462],[78.11283,28.06872],[78.12104,28.07887],[78.12003,28.08235],[78.1215,28.08369],[78.11984,28.08767],[78.11247,28.09632],[78.10523,28.09905],[78.10491,28.10312],[78.0991,28.11003],[78.09028,28.10273],[78.07791,28.10129],[78.07759,28.10752],[78.08131,28.11108],[78.0811,28.11328],[78.08375,28.1169],[78.08049,28.11966],[78.07695,28.11877],[78.07155,28.11244],[78.06122,28.11307],[78.05949,28.11808],[78.05132,28.12507],[78.04672,28.12208],[78.03183,28.12895],[78.02029,28.12348],[78.02072,28.12213],[78.01703,28.11853],[78.01849,28.11628],[78.01787,28.11374],[78.02147,28.11068],[78.00918,28.09889],[78.00183,28.09401],[78.0049,28.0842],[77.99376,28.07783],[77.99014,28.07862],[77.98722,28.08291],[77.9792,28.08728],[77.97331,28.08482],[77.96672,28.08502],[77.9604,28.09061],[77.95396,28.08553],[77.95221,28.08763],[77.94817,28.08824],[77.94659,28.08713],[77.9441,28.08821],[77.93867,28.08516],[77.93674,28.08672],[77.93438,28.08521],[77.93324,28.08672],[77.93207,28.08583],[77.93136,28.08697],[77.93477,28.08986],[77.93526,28.09573],[77.92357,28.10441],[77.91505,28.09908],[77.90318,28.11345],[77.90429,28.11431],[77.89933,28.11711],[77.89545,28.11459],[77.89462,28.11585],[77.89138,28.11504],[77.88164,28.12508],[77.8728,28.12843],[77.86404,28.14057],[77.85376,28.14149],[77.8478,28.1359],[77.84257,28.13752],[77.83871,28.14228],[77.83978,28.14525],[77.84979,28.15518],[77.84865,28.16061],[77.84267,28.16412],[77.84749,28.17205],[77.84597,28.17343]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"12","area_level":"District","area_name":"Rajouri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.36872,33.58137],[74.35649,33.58406],[74.34941,33.57737],[74.3331,33.57177],[74.32834,33.57614],[74.32441,33.577],[74.31332,33.57174],[74.30744,33.57233],[74.29964,33.56434],[74.30059,33.55861],[74.29892,33.55405],[74.28581,33.54754],[74.28181,33.55088],[74.27853,33.55104],[74.27836,33.54733],[74.26467,33.55164],[74.25918,33.55011],[74.25403,33.5426],[74.24866,33.55367],[74.24408,33.55583],[74.23239,33.55057],[74.22543,33.55017],[74.22173,33.55211],[74.21066,33.54615],[74.21091,33.54172],[74.20778,33.53786],[74.20789,33.53456],[74.2121,33.53081],[74.21677,33.51732],[74.222,33.51482],[74.226,33.50936],[74.22793,33.50436],[74.22744,33.49016],[74.22307,33.48487],[74.21819,33.48205],[74.21668,33.47154],[74.20446,33.44834],[74.19846,33.44547],[74.19171,33.43357],[74.18271,33.42751],[74.18612,33.4244],[74.18512,33.42121],[74.17374,33.41177],[74.16999,33.41237],[74.16071,33.41005],[74.15618,33.40451],[74.15171,33.40275],[74.14922,33.39979],[74.13728,33.39579],[74.14253,33.38392],[74.14542,33.37063],[74.14782,33.36779],[74.15534,33.36525],[74.16656,33.35736],[74.1639,33.34802],[74.15996,33.34978],[74.14875,33.34226],[74.1457,33.33712],[74.14073,33.33431],[74.14741,33.32791],[74.15008,33.31957],[74.13612,33.3068],[74.09172,33.28482],[74.07078,33.2829],[74.05012,33.2746],[74.03628,33.26594],[74.02019,33.26103],[74.00586,33.24958],[74.00196,33.23595],[74.00707,33.23074],[74.006,33.22833],[74.00813,33.22493],[74.0055,33.22339],[74.0071,33.21871],[74.00661,33.21373],[74.00885,33.21477],[74.01647,33.21193],[74.01735,33.20408],[74.02418,33.20338],[74.03593,33.19624],[74.04854,33.20055],[74.05009,33.20044],[74.05219,33.19413],[74.06213,33.19773],[74.06962,33.19513],[74.07337,33.18657],[74.08679,33.17336],[74.09977,33.1665],[74.1071,33.16761],[74.11647,33.15944],[74.11922,33.16151],[74.13051,33.15969],[74.12999,33.15658],[74.13337,33.15494],[74.13377,33.14937],[74.13736,33.14753],[74.14213,33.14773],[74.15303,33.13623],[74.15607,33.12567],[74.16271,33.12311],[74.15951,33.11045],[74.16335,33.10549],[74.16791,33.10399],[74.16659,33.103],[74.17748,33.0989],[74.18207,33.09074],[74.18033,33.08773],[74.17588,33.08731],[74.17352,33.08144],[74.17075,33.08111],[74.17069,33.07415],[74.18326,33.07282],[74.18764,33.07074],[74.1917,33.07251],[74.20243,33.06656],[74.20835,33.06717],[74.21439,33.06122],[74.21767,33.06218],[74.2306,33.05629],[74.23552,33.05123],[74.24379,33.04994],[74.24917,33.04562],[74.25633,33.04539],[74.25936,33.04305],[74.26734,33.04459],[74.27741,33.03822],[74.287,33.03667],[74.30213,33.0314],[74.30977,33.03215],[74.31372,33.02992],[74.3185,33.032],[74.32458,33.03161],[74.32566,33.02874],[74.32026,33.02179],[74.32056,33.00738],[74.32689,32.99965],[74.33985,32.95439],[74.34763,32.95151],[74.34928,32.95463],[74.3504,32.95085],[74.35451,32.95293],[74.36489,32.95287],[74.3663,32.9545],[74.36903,32.95001],[74.3722,32.95329],[74.38109,32.95407],[74.38234,32.95662],[74.3917,32.95968],[74.39287,32.96509],[74.39449,32.96617],[74.40041,32.96566],[74.40385,32.9673],[74.4047,32.97036],[74.4203,32.98896],[74.44551,33.00185],[74.44669,33.00697],[74.44546,33.01134],[74.44809,33.01497],[74.48617,33.01608],[74.49591,33.01809],[74.51319,33.01336],[74.51636,33.01572],[74.51386,33.02115],[74.51542,33.02601],[74.51081,33.03216],[74.50455,33.03243],[74.49662,33.03577],[74.49841,33.04183],[74.50898,33.04173],[74.5122,33.04552],[74.51015,33.05524],[74.52555,33.0556],[74.52649,33.05327],[74.53355,33.05152],[74.55742,33.05153],[74.55767,33.05322],[74.56165,33.05317],[74.56498,33.05652],[74.56294,33.06048],[74.56289,33.06838],[74.59271,33.06907],[74.59912,33.07255],[74.59893,33.08179],[74.60427,33.09075],[74.62443,33.0921],[74.62821,33.09004],[74.63543,33.09373],[74.62288,33.103],[74.62376,33.10464],[74.63055,33.10522],[74.63416,33.1087],[74.63068,33.1095],[74.6276,33.10559],[74.6281,33.10802],[74.62248,33.10968],[74.62166,33.12105],[74.61597,33.12599],[74.61765,33.13123],[74.6242,33.1318],[74.62995,33.1395],[74.63019,33.14265],[74.62653,33.14689],[74.61189,33.15078],[74.61056,33.15391],[74.6074,33.15532],[74.60481,33.15402],[74.60238,33.15741],[74.58121,33.15367],[74.57212,33.15714],[74.56862,33.16221],[74.56152,33.16593],[74.55732,33.16659],[74.55302,33.16419],[74.54505,33.16487],[74.53922,33.17109],[74.52459,33.17555],[74.52131,33.18037],[74.52207,33.1871],[74.53158,33.19262],[74.5375,33.19316],[74.5384,33.18697],[74.54747,33.17979],[74.54823,33.19006],[74.55239,33.19059],[74.56134,33.19514],[74.57091,33.19436],[74.573,33.19287],[74.57377,33.19546],[74.56942,33.19883],[74.5683,33.20236],[74.57945,33.20179],[74.58292,33.20303],[74.5912,33.19973],[74.59633,33.20024],[74.60015,33.19834],[74.6031,33.19317],[74.60608,33.19546],[74.6081,33.19333],[74.6095,33.19362],[74.61142,33.20079],[74.61891,33.20228],[74.62214,33.2051],[74.62796,33.20396],[74.62811,33.20231],[74.63352,33.20197],[74.64406,33.19656],[74.65439,33.19488],[74.65578,33.18631],[74.66195,33.1852],[74.66433,33.19241],[74.67294,33.1964],[74.68195,33.19479],[74.68788,33.19631],[74.68311,33.20189],[74.68292,33.20696],[74.689,33.21827],[74.68936,33.23345],[74.69175,33.237],[74.69293,33.24415],[74.69116,33.24961],[74.68449,33.25319],[74.67858,33.25419],[74.67636,33.26009],[74.67286,33.26311],[74.65248,33.27256],[74.65278,33.27687],[74.65815,33.28904],[74.66967,33.29512],[74.67026,33.30262],[74.64821,33.32547],[74.65394,33.33642],[74.6483,33.34046],[74.6492,33.35126],[74.65076,33.35251],[74.6581,33.35168],[74.66138,33.35322],[74.66618,33.35044],[74.67097,33.35044],[74.67401,33.35435],[74.6863,33.3612],[74.67681,33.36835],[74.67887,33.37118],[74.67525,33.37386],[74.67418,33.37935],[74.67105,33.38195],[74.67191,33.38469],[74.67013,33.38985],[74.67372,33.3926],[74.6744,33.39528],[74.66691,33.39438],[74.66547,33.40049],[74.66623,33.405],[74.67212,33.41425],[74.67249,33.41798],[74.66829,33.42494],[74.66838,33.43227],[74.66539,33.43525],[74.66184,33.43531],[74.65642,33.44115],[74.64595,33.4384],[74.62507,33.44353],[74.61947,33.44236],[74.61785,33.44569],[74.6191,33.44915],[74.61113,33.4507],[74.60193,33.46041],[74.60362,33.46608],[74.61963,33.46383],[74.62208,33.46688],[74.62758,33.46604],[74.62989,33.46817],[74.62905,33.47564],[74.63029,33.47788],[74.63577,33.48004],[74.63563,33.48651],[74.63017,33.49025],[74.62708,33.49796],[74.61873,33.49721],[74.61422,33.49893],[74.60695,33.49598],[74.60386,33.50132],[74.58996,33.50281],[74.58848,33.50461],[74.58883,33.50935],[74.57449,33.50756],[74.56989,33.50281],[74.57303,33.49676],[74.57237,33.49195],[74.56052,33.49348],[74.54554,33.48866],[74.54105,33.48898],[74.53785,33.48681],[74.54157,33.481],[74.53998,33.47774],[74.54323,33.47518],[74.54034,33.46816],[74.53339,33.47178],[74.52837,33.47077],[74.52485,33.47568],[74.52157,33.47733],[74.52237,33.48024],[74.51774,33.48545],[74.51005,33.48496],[74.50601,33.49883],[74.50697,33.50018],[74.49823,33.50659],[74.49823,33.51116],[74.48957,33.52017],[74.47349,33.53111],[74.44797,33.54517],[74.44064,33.55204],[74.44208,33.55414],[74.44112,33.55558],[74.42402,33.57038],[74.41994,33.57212],[74.40891,33.57202],[74.40066,33.57704],[74.388,33.57797],[74.38592,33.58052],[74.37566,33.58354],[74.36872,33.58137]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"120","area_level":"District","area_name":"Prayagraj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.94656,25.74023],[81.93632,25.74497],[81.93551,25.74927],[81.92873,25.7539],[81.91976,25.73547],[81.92191,25.7317],[81.91951,25.72586],[81.91418,25.72307],[81.91327,25.72027],[81.91479,25.71564],[81.91089,25.71657],[81.90471,25.71399],[81.89138,25.71872],[81.88587,25.71183],[81.87849,25.71602],[81.87874,25.72106],[81.87719,25.72197],[81.86732,25.72485],[81.86229,25.71708],[81.86045,25.71739],[81.85723,25.71883],[81.85732,25.72348],[81.84316,25.73133],[81.83944,25.7263],[81.83052,25.72781],[81.8269,25.72593],[81.82002,25.72615],[81.82528,25.74162],[81.81632,25.74296],[81.80846,25.74706],[81.80223,25.74766],[81.79793,25.74994],[81.79649,25.74859],[81.79408,25.75015],[81.78806,25.75004],[81.78632,25.74721],[81.78433,25.74813],[81.77925,25.74399],[81.7782,25.74498],[81.7706,25.74316],[81.77033,25.74196],[81.76334,25.74019],[81.75948,25.73622],[81.75521,25.73598],[81.7524,25.73413],[81.7508,25.7302],[81.75152,25.72672],[81.74971,25.72589],[81.74925,25.72332],[81.75408,25.71979],[81.75505,25.71344],[81.75363,25.71112],[81.74704,25.7093],[81.74663,25.70642],[81.74024,25.69935],[81.74191,25.69721],[81.74797,25.69608],[81.75297,25.69136],[81.75228,25.68659],[81.75504,25.68469],[81.75382,25.68182],[81.7551,25.67895],[81.75287,25.67855],[81.75106,25.67344],[81.75081,25.67082],[81.7523,25.66971],[81.74422,25.66799],[81.73134,25.67354],[81.71971,25.6752],[81.71428,25.66952],[81.70653,25.67231],[81.69676,25.66979],[81.69518,25.66566],[81.69239,25.66364],[81.70338,25.65986],[81.70455,25.65814],[81.70527,25.65914],[81.70904,25.65795],[81.71292,25.65982],[81.71855,25.65821],[81.71748,25.65689],[81.71965,25.65582],[81.71805,25.65081],[81.71957,25.64982],[81.71872,25.64583],[81.72101,25.64393],[81.72075,25.6422],[81.73054,25.6383],[81.725,25.62191],[81.7131,25.62629],[81.70376,25.6331],[81.69855,25.63401],[81.69006,25.63253],[81.68385,25.63497],[81.68145,25.63256],[81.67497,25.63116],[81.67403,25.62726],[81.66838,25.62764],[81.66475,25.61809],[81.66099,25.61554],[81.66122,25.61199],[81.65815,25.60846],[81.65694,25.61088],[81.65226,25.6127],[81.6511,25.61823],[81.64826,25.61779],[81.64216,25.62319],[81.63704,25.62347],[81.63639,25.6253],[81.63887,25.62713],[81.63453,25.6317],[81.63419,25.63611],[81.62778,25.63909],[81.63164,25.63913],[81.63517,25.64278],[81.6398,25.64206],[81.63845,25.6458],[81.63418,25.64653],[81.63281,25.65305],[81.63579,25.65866],[81.64215,25.65783],[81.6392,25.66133],[81.63979,25.66412],[81.63837,25.66643],[81.62877,25.66667],[81.6247,25.66478],[81.61989,25.66493],[81.60688,25.66847],[81.60679,25.66298],[81.60498,25.66121],[81.59922,25.65981],[81.59656,25.66074],[81.59647,25.65917],[81.60352,25.6576],[81.60022,25.65358],[81.60107,25.64715],[81.60802,25.64563],[81.6052,25.64715],[81.60654,25.64801],[81.6135,25.64592],[81.61532,25.64327],[81.61823,25.64465],[81.61913,25.64317],[81.61885,25.63926],[81.61697,25.63692],[81.62034,25.6285],[81.6184,25.62393],[81.61645,25.6239],[81.61348,25.61994],[81.60795,25.61798],[81.60411,25.6122],[81.60403,25.61075],[81.6108,25.60801],[81.61071,25.59794],[81.62245,25.59823],[81.62835,25.59668],[81.63718,25.59057],[81.642,25.58307],[81.64346,25.57289],[81.64206,25.56116],[81.64568,25.54892],[81.64127,25.52703],[81.64402,25.52512],[81.6728,25.52224],[81.69951,25.51272],[81.69007,25.50324],[81.6839,25.50438],[81.67824,25.50273],[81.6739,25.5081],[81.67051,25.50608],[81.66677,25.49488],[81.6601,25.49185],[81.65754,25.48627],[81.64834,25.48806],[81.64324,25.47936],[81.63715,25.47287],[81.63753,25.47059],[81.6402,25.46902],[81.64537,25.47708],[81.64609,25.48116],[81.64812,25.48252],[81.65422,25.48022],[81.65206,25.47581],[81.65944,25.47006],[81.6584,25.46527],[81.65437,25.45899],[81.65388,25.45122],[81.64986,25.44418],[81.64559,25.4406],[81.65452,25.4374],[81.65331,25.43207],[81.65038,25.42977],[81.64589,25.41842],[81.65465,25.41663],[81.6634,25.41705],[81.6639,25.41558],[81.66209,25.40827],[81.65732,25.40321],[81.6596,25.39963],[81.65905,25.39812],[81.6612,25.39664],[81.66032,25.39365],[81.6624,25.39226],[81.65844,25.38138],[81.6746,25.37281],[81.67793,25.37766],[81.6771,25.37909],[81.67961,25.38457],[81.68149,25.38611],[81.69311,25.38759],[81.69419,25.39411],[81.7008,25.39122],[81.71336,25.38975],[81.70808,25.37787],[81.69947,25.37205],[81.69787,25.36752],[81.69795,25.35742],[81.67375,25.35653],[81.66162,25.35443],[81.64526,25.35456],[81.62867,25.35073],[81.59868,25.3339],[81.56769,25.30481],[81.54997,25.29217],[81.55122,25.28555],[81.54948,25.28421],[81.55384,25.28009],[81.55201,25.27339],[81.55406,25.26398],[81.55211,25.25585],[81.55419,25.25576],[81.55673,25.25224],[81.55748,25.25033],[81.55531,25.24943],[81.5622,25.2387],[81.55235,25.23357],[81.54368,25.23489],[81.52828,25.23368],[81.52259,25.23569],[81.52312,25.22782],[81.52166,25.22572],[81.51862,25.22563],[81.51959,25.22101],[81.51708,25.21017],[81.51807,25.20753],[81.51702,25.19611],[81.52727,25.19199],[81.52994,25.19312],[81.53965,25.19059],[81.53982,25.18609],[81.54546,25.18506],[81.55411,25.18609],[81.55594,25.18358],[81.56291,25.18651],[81.57017,25.19208],[81.57857,25.19085],[81.59562,25.18182],[81.59508,25.17749],[81.58846,25.16577],[81.59436,25.16373],[81.60463,25.16303],[81.60894,25.16469],[81.61182,25.16392],[81.6154,25.16901],[81.61876,25.1674],[81.62042,25.16242],[81.62621,25.16047],[81.62418,25.15614],[81.62571,25.14485],[81.62332,25.14104],[81.62061,25.14029],[81.61459,25.14439],[81.61046,25.1391],[81.60258,25.13615],[81.59806,25.13134],[81.60233,25.12725],[81.60059,25.12403],[81.5983,25.12378],[81.6,25.12313],[81.59804,25.12229],[81.59696,25.11909],[81.60061,25.11627],[81.60639,25.11627],[81.61011,25.11252],[81.60849,25.11174],[81.61023,25.10876],[81.60832,25.09605],[81.61147,25.09506],[81.61466,25.10004],[81.61632,25.10773],[81.61897,25.11013],[81.62314,25.11099],[81.62365,25.11223],[81.6205,25.11565],[81.62408,25.12004],[81.63294,25.11712],[81.63171,25.11178],[81.62834,25.10679],[81.63206,25.10643],[81.63357,25.1027],[81.64086,25.09849],[81.62861,25.09474],[81.62879,25.09128],[81.62143,25.09016],[81.61579,25.08034],[81.60543,25.07848],[81.60035,25.07385],[81.61054,25.06865],[81.60914,25.06562],[81.61745,25.06092],[81.61692,25.05879],[81.61032,25.06107],[81.61143,25.0565],[81.62765,25.05263],[81.63331,25.05934],[81.64122,25.05676],[81.65148,25.06716],[81.6527,25.07082],[81.66051,25.07161],[81.66267,25.07417],[81.66416,25.07259],[81.66654,25.07511],[81.66856,25.07171],[81.6672,25.06136],[81.67088,25.05991],[81.67797,25.06204],[81.68232,25.06119],[81.68574,25.05839],[81.68862,25.05174],[81.69151,25.05148],[81.69344,25.0488],[81.68872,25.03954],[81.68975,25.03895],[81.7071,25.03523],[81.71331,25.03607],[81.72141,25.03825],[81.72168,25.04232],[81.71909,25.04184],[81.72388,25.05017],[81.73044,25.04746],[81.73151,25.04864],[81.74041,25.04483],[81.74256,25.04144],[81.74188,25.03894],[81.7467,25.03742],[81.7458,25.03347],[81.755,25.03484],[81.75517,25.03169],[81.758,25.02739],[81.78089,25.01888],[81.79221,25.00441],[81.80377,25.0017],[81.80559,25.00524],[81.80464,25.0059],[81.81038,25.01269],[81.81401,25.01069],[81.81772,25.0152],[81.81949,25.01414],[81.82305,25.01712],[81.82568,25.01679],[81.8319,25.01213],[81.83482,25.01697],[81.84874,25.01164],[81.84865,25.00822],[81.85347,25.00268],[81.85955,25.00314],[81.86521,25.00087],[81.86642,25.00235],[81.87255,24.99976],[81.87419,24.99517],[81.87688,24.99579],[81.87688,24.9994],[81.8909,24.99576],[81.89042,24.98927],[81.89233,24.98889],[81.89548,24.98968],[81.90169,24.9994],[81.8974,25.00352],[81.89484,25.00782],[81.89556,25.00952],[81.89812,25.01064],[81.9012,25.00959],[81.90781,25.00483],[81.90578,24.9932],[81.90141,24.9869],[81.90299,24.98374],[81.90593,24.98272],[81.90517,24.98137],[81.90786,24.98012],[81.90408,24.9722],[81.90751,24.97076],[81.90939,24.9607],[81.9075,24.95951],[81.91006,24.95243],[81.90918,24.94142],[81.91088,24.93942],[81.91036,24.93738],[81.91406,24.93626],[81.91965,24.92812],[81.91755,24.92328],[81.91902,24.9219],[81.91835,24.91952],[81.90671,24.9044],[81.90643,24.90026],[81.90353,24.89875],[81.90786,24.89654],[81.90479,24.89507],[81.90574,24.89269],[81.90284,24.89168],[81.90442,24.89139],[81.90355,24.89001],[81.90495,24.88678],[81.90891,24.88574],[81.90657,24.88345],[81.90789,24.88135],[81.91463,24.88072],[81.9165,24.8772],[81.92057,24.87739],[81.92006,24.87432],[81.9255,24.8722],[81.92801,24.87403],[81.93372,24.8707],[81.93463,24.86808],[81.93272,24.85874],[81.93768,24.85285],[81.9365,24.85201],[81.93794,24.84973],[81.94357,24.84658],[81.9424,24.8452],[81.94417,24.84124],[81.95936,24.83758],[81.96527,24.82704],[81.96792,24.82902],[81.96875,24.83618],[81.97154,24.83893],[81.98531,24.83925],[81.99225,24.84224],[82.00311,24.84145],[82.01072,24.84691],[82.01694,24.84598],[82.024,24.8412],[82.03123,24.84024],[82.04521,24.82862],[82.05143,24.83052],[82.07157,24.81918],[82.07505,24.82194],[82.09765,24.81615],[82.10658,24.80461],[82.10557,24.80832],[82.10666,24.80942],[82.10348,24.81145],[82.10251,24.81483],[82.09459,24.82306],[82.09486,24.82518],[82.08929,24.82577],[82.08754,24.82816],[82.08014,24.83179],[82.08827,24.83371],[82.09302,24.83241],[82.09473,24.83319],[82.09488,24.8381],[82.1095,24.84109],[82.11401,24.846],[82.11874,24.84483],[82.11572,24.85366],[82.10903,24.85032],[82.0994,24.84981],[82.09617,24.8471],[82.09324,24.84714],[82.09195,24.84912],[82.09826,24.85224],[82.10235,24.85816],[82.10172,24.86209],[82.10962,24.86091],[82.11187,24.86191],[82.11021,24.86457],[82.11149,24.87114],[82.10869,24.87523],[82.11147,24.87606],[82.11499,24.87452],[82.11908,24.87104],[82.12042,24.86483],[82.12297,24.86486],[82.12748,24.86856],[82.1303,24.86836],[82.13037,24.87195],[82.13258,24.87489],[82.13196,24.87877],[82.13537,24.87903],[82.14096,24.88323],[82.1444,24.88673],[82.14484,24.88989],[82.14701,24.89201],[82.14846,24.89141],[82.15116,24.8957],[82.15533,24.89445],[82.15652,24.89065],[82.16007,24.88796],[82.16666,24.88724],[82.17406,24.89658],[82.17981,24.8999],[82.17962,24.90604],[82.18697,24.91439],[82.19,24.91274],[82.18819,24.90966],[82.19006,24.90855],[82.19525,24.91112],[82.20175,24.91786],[82.19947,24.91971],[82.20465,24.92935],[82.20372,24.93015],[82.20871,24.93712],[82.21474,24.93324],[82.2259,24.92993],[82.23044,24.93857],[82.23011,24.94574],[82.23194,24.94805],[82.23075,24.94947],[82.23928,24.96055],[82.24815,24.95181],[82.25116,24.9519],[82.25408,24.95525],[82.2565,24.96331],[82.25804,24.96475],[82.26009,24.96364],[82.26498,24.96487],[82.2738,24.98209],[82.28177,24.9921],[82.28435,24.99077],[82.28592,24.9927],[82.29056,25.00093],[82.28965,25.00383],[82.29099,25.00616],[82.29503,25.00506],[82.29765,25.0107],[82.30162,25.0111],[82.30195,25.01517],[82.30378,25.01706],[82.30359,25.02645],[82.30524,25.03103],[82.30283,25.03196],[82.30262,25.03357],[82.30546,25.03863],[82.29755,25.04497],[82.29581,25.04919],[82.29786,25.05104],[82.30327,25.05157],[82.30815,25.05702],[82.31222,25.05677],[82.3166,25.0594],[82.31877,25.06534],[82.32546,25.07156],[82.32479,25.08662],[82.31705,25.09411],[82.31109,25.1027],[82.30586,25.10355],[82.30191,25.10722],[82.30402,25.11381],[82.3027,25.11491],[82.30386,25.11793],[82.30272,25.12031],[82.30542,25.12649],[82.29785,25.12823],[82.29656,25.13438],[82.30236,25.15185],[82.29945,25.15351],[82.29694,25.14689],[82.28893,25.14908],[82.29166,25.15437],[82.2788,25.15866],[82.2767,25.15481],[82.27165,25.15637],[82.26862,25.16102],[82.26817,25.18281],[82.24814,25.17882],[82.2307,25.17818],[82.21856,25.18079],[82.20984,25.18569],[82.20076,25.1945],[82.19633,25.20699],[82.1956,25.21742],[82.19821,25.23243],[82.2122,25.24848],[82.22105,25.2699],[82.22214,25.2777],[82.22613,25.27678],[82.22973,25.27377],[82.23365,25.27527],[82.23816,25.27268],[82.24344,25.27417],[82.25126,25.27235],[82.25497,25.28232],[82.26019,25.2884],[82.26123,25.29237],[82.26366,25.29203],[82.26457,25.29392],[82.26902,25.29077],[82.27243,25.29379],[82.27813,25.29459],[82.27956,25.29873],[82.2829,25.29782],[82.28353,25.29944],[82.28996,25.29715],[82.2942,25.30418],[82.29912,25.30229],[82.30303,25.31139],[82.30478,25.31194],[82.30045,25.31449],[82.30164,25.32141],[82.30013,25.3244],[82.30403,25.32787],[82.3104,25.32563],[82.31417,25.33023],[82.31607,25.33858],[82.31893,25.34212],[82.31609,25.34401],[82.31819,25.34833],[82.31401,25.35149],[82.31563,25.35665],[82.31281,25.35848],[82.30811,25.36696],[82.31804,25.37513],[82.3183,25.38235],[82.31202,25.38471],[82.31323,25.38821],[82.31791,25.39572],[82.32444,25.39205],[82.32809,25.40077],[82.34058,25.3989],[82.34534,25.40744],[82.34767,25.40754],[82.35273,25.42232],[82.34981,25.4238],[82.3506,25.4261],[82.34739,25.42672],[82.34626,25.43358],[82.34181,25.43692],[82.34219,25.44149],[82.3374,25.44431],[82.33565,25.44916],[82.33422,25.44788],[82.33075,25.44996],[82.32481,25.44721],[82.32252,25.4492],[82.32384,25.4546],[82.31721,25.45592],[82.30726,25.46155],[82.31019,25.46535],[82.31108,25.47259],[82.31061,25.47759],[82.30722,25.48333],[82.28655,25.47955],[82.28273,25.4849],[82.28349,25.492],[82.28679,25.4988],[82.29376,25.4984],[82.30096,25.49396],[82.31114,25.49575],[82.31493,25.49833],[82.31565,25.50348],[82.31121,25.50833],[82.30584,25.51057],[82.2994,25.51091],[82.29604,25.51447],[82.29646,25.51741],[82.29977,25.51865],[82.29877,25.52178],[82.30097,25.52035],[82.31704,25.52036],[82.32011,25.51677],[82.3244,25.50166],[82.32932,25.49737],[82.33617,25.50192],[82.33904,25.5093],[82.33276,25.51691],[82.33023,25.52349],[82.32638,25.52655],[82.3251,25.53128],[82.33271,25.53556],[82.32956,25.53734],[82.32581,25.54287],[82.31859,25.54558],[82.31203,25.54555],[82.31051,25.54731],[82.29977,25.54772],[82.29532,25.54114],[82.29041,25.54177],[82.28586,25.55349],[82.27665,25.55445],[82.2729,25.55642],[82.26947,25.55907],[82.26786,25.56334],[82.26404,25.5653],[82.26073,25.56567],[82.25643,25.56214],[82.25066,25.56098],[82.24561,25.56818],[82.24815,25.57269],[82.251,25.57101],[82.25126,25.57783],[82.24604,25.58043],[82.23047,25.58565],[82.22402,25.58942],[82.22129,25.58702],[82.21376,25.58594],[82.21149,25.58168],[82.21172,25.57771],[82.20977,25.57831],[82.20907,25.57609],[82.20446,25.57298],[82.20138,25.57553],[82.20399,25.57635],[82.20187,25.5842],[82.19308,25.58306],[82.18568,25.57718],[82.1815,25.58065],[82.17878,25.58074],[82.17772,25.58424],[82.17438,25.58528],[82.17148,25.59035],[82.17336,25.59346],[82.17144,25.59811],[82.16158,25.59751],[82.15484,25.60058],[82.14756,25.61293],[82.14623,25.61192],[82.14033,25.62099],[82.1371,25.62234],[82.13812,25.62785],[82.13699,25.63037],[82.13084,25.63302],[82.12401,25.6404],[82.12252,25.64496],[82.12698,25.64674],[82.13604,25.64523],[82.13908,25.65171],[82.14284,25.64946],[82.14559,25.65068],[82.14642,25.65173],[82.14509,25.65334],[82.13856,25.65472],[82.14411,25.66791],[82.15368,25.66771],[82.15557,25.6784],[82.14319,25.6813],[82.13694,25.67898],[82.12706,25.68177],[82.12311,25.67643],[82.12294,25.6714],[82.12691,25.66401],[82.12604,25.65786],[82.12327,25.65922],[82.11842,25.65791],[82.11497,25.65532],[82.11653,25.65271],[82.11484,25.65182],[82.11059,25.65097],[82.10522,25.65641],[82.09864,25.6574],[82.09562,25.66033],[82.08705,25.65374],[82.08021,25.65504],[82.07829,25.65408],[82.0741,25.65575],[82.06365,25.65511],[82.06231,25.65936],[82.06756,25.67851],[82.06462,25.67825],[82.06265,25.68235],[82.05977,25.68415],[82.0541,25.68398],[82.04738,25.68752],[82.0446,25.68693],[82.03568,25.68957],[82.02778,25.69506],[82.01864,25.69392],[82.012,25.69502],[82.0119,25.69891],[82.01861,25.70381],[82.03424,25.70474],[82.0451,25.7077],[82.0424,25.71262],[82.04428,25.71546],[82.04382,25.72017],[82.03597,25.73014],[82.03146,25.73192],[82.02879,25.73769],[82.02137,25.74178],[82.02148,25.74354],[82.01454,25.74527],[82.00951,25.74402],[82.0046,25.7451],[82.00328,25.74262],[81.99929,25.74426],[81.9943,25.74023],[81.99405,25.74299],[81.99118,25.7422],[81.9913,25.74363],[81.98801,25.74465],[81.9846,25.74846],[81.98158,25.74694],[81.97934,25.73725],[81.96751,25.73814],[81.96313,25.74361],[81.95965,25.74124],[81.94939,25.7425],[81.94656,25.74023]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"121","area_level":"District","area_name":"Ambedkar Nagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.49758,26.6373],[82.47952,26.64493],[82.47304,26.65253],[82.47204,26.64951],[82.47522,26.64788],[82.46787,26.62969],[82.46871,26.62648],[82.47244,26.62593],[82.47078,26.62096],[82.4771,26.61939],[82.47595,26.6106],[82.47428,26.60838],[82.46739,26.60656],[82.46413,26.60198],[82.45291,26.60516],[82.45315,26.60013],[82.44997,26.59559],[82.45331,26.59267],[82.45806,26.5922],[82.45767,26.58697],[82.46521,26.58264],[82.4623,26.57774],[82.45869,26.57878],[82.45685,26.57687],[82.45831,26.56898],[82.45214,26.57],[82.44818,26.5583],[82.44296,26.56301],[82.43805,26.56395],[82.43504,26.55441],[82.43089,26.55596],[82.42867,26.55138],[82.4294,26.54716],[82.42635,26.54673],[82.42091,26.54902],[82.41441,26.55839],[82.40919,26.55121],[82.40327,26.55081],[82.40171,26.54277],[82.39488,26.54337],[82.39063,26.54165],[82.38761,26.54331],[82.38602,26.54647],[82.3808,26.54695],[82.37811,26.54941],[82.37345,26.54941],[82.37087,26.54692],[82.37034,26.5522],[82.36864,26.55371],[82.36618,26.55334],[82.36568,26.55708],[82.36725,26.55815],[82.37134,26.55609],[82.37265,26.55789],[82.3719,26.56021],[82.37515,26.55852],[82.37707,26.55942],[82.37625,26.56232],[82.37791,26.5628],[82.37823,26.56618],[82.37655,26.56695],[82.3775,26.56846],[82.3755,26.57006],[82.37536,26.5726],[82.36976,26.57229],[82.36732,26.57485],[82.36397,26.57348],[82.36054,26.57845],[82.35458,26.57984],[82.35118,26.57934],[82.35359,26.57765],[82.35247,26.57661],[82.34751,26.57774],[82.34595,26.57281],[82.34349,26.57401],[82.34284,26.5779],[82.33611,26.57849],[82.33368,26.572],[82.3301,26.56831],[82.32786,26.55511],[82.31954,26.5496],[82.31468,26.53575],[82.30958,26.52656],[82.30892,26.5174],[82.30643,26.51291],[82.31522,26.51235],[82.31638,26.51172],[82.31545,26.50937],[82.30123,26.49489],[82.29801,26.48657],[82.29302,26.48516],[82.29056,26.48804],[82.29075,26.48604],[82.28492,26.48505],[82.28671,26.48268],[82.28585,26.47238],[82.28386,26.47029],[82.28047,26.46976],[82.27867,26.4607],[82.27358,26.44933],[82.26696,26.45166],[82.26403,26.44405],[82.25885,26.44435],[82.25808,26.43859],[82.26192,26.43461],[82.25812,26.43175],[82.25482,26.43409],[82.25605,26.43081],[82.25352,26.4216],[82.24208,26.4229],[82.24066,26.41843],[82.23548,26.41997],[82.23536,26.41514],[82.23159,26.4126],[82.22085,26.41222],[82.22001,26.40996],[82.22166,26.4058],[82.22683,26.40088],[82.23773,26.39792],[82.24,26.39966],[82.242,26.39855],[82.24116,26.3959],[82.24753,26.39182],[82.24813,26.3932],[82.25211,26.39163],[82.25663,26.40278],[82.26466,26.40407],[82.2685,26.40034],[82.27309,26.40012],[82.27588,26.39712],[82.27825,26.39071],[82.28023,26.39016],[82.28136,26.39228],[82.28472,26.3913],[82.28443,26.39641],[82.29794,26.40078],[82.29702,26.40396],[82.29933,26.40352],[82.30132,26.40562],[82.30325,26.40351],[82.30284,26.40124],[82.30543,26.40144],[82.30542,26.39911],[82.30996,26.39758],[82.31039,26.39533],[82.31209,26.3944],[82.31513,26.39598],[82.31636,26.39336],[82.31848,26.39295],[82.31786,26.38725],[82.3146,26.38513],[82.31612,26.38295],[82.3134,26.38122],[82.3154,26.37931],[82.32655,26.38606],[82.33949,26.38143],[82.35621,26.38336],[82.3597,26.38157],[82.36299,26.38359],[82.36477,26.38167],[82.36683,26.38244],[82.37301,26.38134],[82.37577,26.37898],[82.3778,26.37966],[82.38075,26.37637],[82.38402,26.37588],[82.3841,26.36803],[82.38219,26.36497],[82.38893,26.36543],[82.39439,26.35839],[82.39867,26.35912],[82.40036,26.35632],[82.39925,26.35452],[82.40086,26.35194],[82.39976,26.34689],[82.40113,26.34027],[82.39917,26.33399],[82.40098,26.32591],[82.40263,26.32384],[82.40682,26.32437],[82.41737,26.31936],[82.41222,26.31454],[82.41121,26.31043],[82.4078,26.30724],[82.4048,26.30087],[82.39838,26.30078],[82.40377,26.29599],[82.40164,26.29052],[82.40592,26.2894],[82.40757,26.29222],[82.41316,26.28936],[82.41935,26.28905],[82.43074,26.29926],[82.43399,26.2993],[82.43164,26.30646],[82.4358,26.30772],[82.43819,26.30682],[82.43758,26.30287],[82.43895,26.30395],[82.44402,26.30065],[82.44668,26.30097],[82.44672,26.30247],[82.44824,26.3014],[82.44793,26.29952],[82.45039,26.29838],[82.45168,26.2918],[82.45043,26.28861],[82.44605,26.28836],[82.4464,26.28722],[82.44902,26.28704],[82.45474,26.28169],[82.46869,26.28312],[82.46941,26.27962],[82.47231,26.277],[82.47638,26.27716],[82.47488,26.27801],[82.47839,26.28167],[82.47814,26.28561],[82.48002,26.28384],[82.48217,26.28461],[82.48609,26.27999],[82.48918,26.28241],[82.49137,26.28223],[82.49343,26.2849],[82.49466,26.28439],[82.49456,26.28609],[82.50005,26.28801],[82.50099,26.29059],[82.5059,26.29076],[82.50776,26.29263],[82.50902,26.29066],[82.51068,26.29343],[82.52168,26.2872],[82.52185,26.28295],[82.52562,26.28426],[82.52485,26.28213],[82.52629,26.28225],[82.52668,26.28368],[82.52891,26.28296],[82.53291,26.28558],[82.53594,26.28084],[82.53951,26.27993],[82.54271,26.28135],[82.54156,26.28235],[82.54498,26.28434],[82.54495,26.28625],[82.54696,26.28557],[82.54956,26.28839],[82.55615,26.28332],[82.55548,26.27943],[82.55861,26.27451],[82.56243,26.2751],[82.56441,26.27379],[82.56405,26.27219],[82.56635,26.27319],[82.56896,26.26689],[82.57391,26.26947],[82.57794,26.26787],[82.57792,26.26465],[82.57496,26.26054],[82.57895,26.25687],[82.58523,26.25555],[82.58576,26.25698],[82.59021,26.25525],[82.5967,26.26039],[82.60004,26.25859],[82.60161,26.26085],[82.59983,26.26334],[82.60539,26.26442],[82.6035,26.26225],[82.60774,26.2619],[82.60716,26.25908],[82.6095,26.25336],[82.61798,26.25439],[82.62074,26.25275],[82.62363,26.24627],[82.62794,26.24727],[82.62993,26.2435],[82.63354,26.24229],[82.63985,26.2526],[82.64511,26.24889],[82.64538,26.24374],[82.64898,26.24232],[82.65255,26.24708],[82.65497,26.25585],[82.65926,26.26045],[82.66311,26.2603],[82.66319,26.26194],[82.66509,26.26052],[82.66505,26.25227],[82.671,26.25278],[82.67683,26.25716],[82.68162,26.25686],[82.68363,26.26026],[82.68857,26.25833],[82.6917,26.26251],[82.68931,26.26753],[82.69737,26.26624],[82.69775,26.26351],[82.70123,26.26266],[82.70484,26.26434],[82.71521,26.25682],[82.72327,26.25452],[82.72513,26.25243],[82.7217,26.24575],[82.72305,26.24332],[82.72764,26.24424],[82.73107,26.24225],[82.73273,26.24501],[82.73509,26.24514],[82.73787,26.24797],[82.73831,26.25132],[82.7416,26.25325],[82.74581,26.25992],[82.74806,26.26],[82.74874,26.26473],[82.75284,26.26162],[82.74807,26.25138],[82.74499,26.24887],[82.7499,26.24113],[82.751,26.23265],[82.74678,26.22637],[82.74836,26.22528],[82.7486,26.22203],[82.75094,26.22194],[82.75338,26.21933],[82.75396,26.21389],[82.75856,26.21083],[82.76662,26.21125],[82.77467,26.19862],[82.77486,26.1939],[82.77747,26.19278],[82.78201,26.19712],[82.78365,26.19675],[82.78548,26.18746],[82.79558,26.1889],[82.80062,26.1864],[82.8037,26.18995],[82.81366,26.18705],[82.82147,26.18692],[82.82427,26.1844],[82.82481,26.17886],[82.83461,26.17978],[82.83425,26.17462],[82.83865,26.17088],[82.83959,26.16729],[82.84483,26.16667],[82.84833,26.16301],[82.85225,26.16634],[82.85543,26.1654],[82.85824,26.16316],[82.85756,26.16123],[82.85987,26.15804],[82.86621,26.15665],[82.86971,26.16071],[82.87058,26.1646],[82.8677,26.16713],[82.87099,26.16746],[82.87055,26.16934],[82.87327,26.17196],[82.87963,26.16553],[82.88335,26.17296],[82.88919,26.17896],[82.88494,26.1833],[82.88567,26.18658],[82.88074,26.1854],[82.87257,26.18657],[82.86341,26.20266],[82.8602,26.20428],[82.85821,26.20233],[82.85613,26.20455],[82.85986,26.20676],[82.86382,26.20726],[82.86484,26.20573],[82.86866,26.20691],[82.86748,26.21038],[82.86301,26.21277],[82.86363,26.21652],[82.86222,26.21809],[82.8636,26.2204],[82.86747,26.21931],[82.87068,26.22224],[82.87506,26.22796],[82.87485,26.23244],[82.88275,26.23233],[82.87975,26.24181],[82.8828,26.24526],[82.88593,26.24573],[82.88501,26.25241],[82.8756,26.25786],[82.87452,26.26264],[82.87644,26.26901],[82.87098,26.27374],[82.88029,26.28603],[82.87857,26.29147],[82.87464,26.29196],[82.87174,26.29854],[82.87268,26.30341],[82.86986,26.30684],[82.87205,26.31141],[82.86811,26.31061],[82.86612,26.31381],[82.86215,26.31195],[82.86055,26.31922],[82.86349,26.32483],[82.87368,26.31998],[82.88222,26.32541],[82.89158,26.34144],[82.89628,26.34448],[82.8964,26.34802],[82.88935,26.35347],[82.8766,26.35708],[82.87005,26.35685],[82.87573,26.37205],[82.88203,26.37699],[82.88189,26.38262],[82.8897,26.38559],[82.89806,26.38593],[82.91809,26.39373],[82.91722,26.39576],[82.91322,26.39774],[82.9149,26.39979],[82.91089,26.40383],[82.91394,26.41076],[82.92542,26.41176],[82.93549,26.40989],[82.93764,26.40216],[82.935,26.40071],[82.92996,26.39055],[82.9366,26.38214],[82.94275,26.38712],[82.94452,26.38343],[82.94371,26.38205],[82.94501,26.38168],[82.95017,26.38826],[82.95301,26.38764],[82.95325,26.38994],[82.96412,26.38336],[82.96996,26.3851],[82.97377,26.38326],[82.97654,26.37432],[82.96712,26.36373],[82.96512,26.35849],[82.9708,26.35234],[82.97223,26.34652],[82.97462,26.34566],[82.98148,26.35141],[82.98732,26.35198],[82.99174,26.34777],[82.9937,26.34929],[83.00071,26.34713],[82.99764,26.34368],[82.99796,26.34206],[83.01149,26.33467],[83.02184,26.33809],[83.02361,26.33508],[83.02807,26.33322],[83.02756,26.32954],[83.03357,26.32432],[83.03386,26.32176],[83.03856,26.31609],[83.03805,26.31094],[83.03317,26.30564],[83.03535,26.30361],[83.03484,26.30017],[83.04079,26.29699],[83.04041,26.29358],[83.04189,26.29456],[83.046,26.29254],[83.04349,26.28884],[83.04854,26.2874],[83.04964,26.28941],[83.05185,26.28811],[83.05256,26.28917],[83.05849,26.28534],[83.06016,26.28743],[83.0645,26.27951],[83.06756,26.28169],[83.0698,26.27998],[83.0744,26.2825],[83.07489,26.29103],[83.0772,26.28871],[83.082,26.2879],[83.08054,26.28594],[83.08406,26.27972],[83.08554,26.28145],[83.09045,26.2811],[83.0943,26.28296],[83.09668,26.27907],[83.09795,26.27962],[83.09691,26.28223],[83.09834,26.28404],[83.10177,26.28154],[83.10896,26.2835],[83.10769,26.2897],[83.10932,26.29777],[83.11335,26.29923],[83.1116,26.30156],[83.11417,26.30144],[83.1108,26.30585],[83.11204,26.30776],[83.10938,26.31019],[83.11056,26.31149],[83.1127,26.31021],[83.11379,26.31118],[83.11352,26.31394],[83.11061,26.31496],[83.10977,26.31739],[83.11179,26.32089],[83.10945,26.32428],[83.11173,26.3528],[83.1135,26.35806],[83.12299,26.36832],[83.13217,26.38543],[83.11764,26.39323],[83.1097,26.39225],[83.09941,26.39486],[83.08955,26.39163],[83.08525,26.39242],[83.06212,26.41292],[83.05275,26.42582],[83.04682,26.43058],[83.04581,26.43677],[83.03623,26.44429],[83.02549,26.45698],[83.02573,26.46863],[83.01949,26.47449],[83.00173,26.48204],[82.97229,26.48612],[82.9594,26.48982],[82.94269,26.50031],[82.91873,26.50657],[82.90684,26.51253],[82.89952,26.5144],[82.88699,26.52125],[82.88435,26.52566],[82.8593,26.54212],[82.84921,26.55672],[82.84501,26.55776],[82.8379,26.56325],[82.82714,26.56234],[82.81669,26.5695],[82.79017,26.56916],[82.77376,26.56442],[82.75753,26.5572],[82.7527,26.55681],[82.74639,26.5597],[82.72544,26.55301],[82.7122,26.55462],[82.70837,26.55684],[82.70447,26.56592],[82.69339,26.56851],[82.68514,26.57431],[82.68433,26.58393],[82.66627,26.5963],[82.66289,26.60443],[82.64917,26.60682],[82.63963,26.60149],[82.6262,26.60065],[82.59685,26.60281],[82.59221,26.60189],[82.57711,26.60429],[82.56996,26.61099],[82.54002,26.62598],[82.49758,26.6373]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"122","area_level":"District","area_name":"Auraiya","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.37692,26.93747],[79.36285,26.94662],[79.35897,26.94738],[79.3521,26.93601],[79.34554,26.93328],[79.34965,26.92841],[79.34949,26.92264],[79.3465,26.91653],[79.34224,26.91486],[79.34211,26.91025],[79.34453,26.90535],[79.34098,26.90192],[79.34718,26.89884],[79.34451,26.89228],[79.34051,26.89316],[79.33911,26.89153],[79.34689,26.88657],[79.34235,26.87981],[79.34459,26.87795],[79.34149,26.85842],[79.33617,26.85291],[79.337,26.84825],[79.33399,26.84556],[79.34616,26.83343],[79.33152,26.81844],[79.33272,26.81412],[79.33928,26.80787],[79.33933,26.79957],[79.33499,26.79047],[79.3291,26.79119],[79.32449,26.77855],[79.32602,26.7774],[79.32585,26.7651],[79.33291,26.75921],[79.33928,26.75688],[79.33653,26.75117],[79.33853,26.74683],[79.3377,26.73915],[79.34027,26.73748],[79.34303,26.73154],[79.33795,26.72373],[79.33114,26.72123],[79.3309,26.71645],[79.32836,26.71164],[79.32208,26.70489],[79.31652,26.70806],[79.31342,26.69836],[79.31837,26.69752],[79.30844,26.69515],[79.30795,26.68941],[79.30489,26.68716],[79.30986,26.68621],[79.3162,26.6808],[79.31496,26.67693],[79.30647,26.6711],[79.31498,26.66516],[79.31949,26.65879],[79.31663,26.65436],[79.31176,26.65175],[79.31137,26.64852],[79.31292,26.646],[79.30993,26.64004],[79.30636,26.64087],[79.30264,26.63694],[79.2985,26.6372],[79.29021,26.63015],[79.28912,26.63095],[79.28141,26.61979],[79.27351,26.62175],[79.26535,26.61957],[79.26107,26.62236],[79.25676,26.61876],[79.25526,26.61638],[79.257,26.61512],[79.25434,26.61195],[79.25613,26.6099],[79.25379,26.60626],[79.24927,26.60462],[79.23727,26.59154],[79.23756,26.5893],[79.22723,26.578],[79.22144,26.56684],[79.21875,26.56465],[79.21843,26.55991],[79.21982,26.55688],[79.22087,26.55746],[79.22148,26.55414],[79.22065,26.54881],[79.21816,26.54691],[79.20677,26.54596],[79.20526,26.54383],[79.20749,26.53687],[79.21162,26.53575],[79.23102,26.54192],[79.23659,26.54186],[79.24006,26.53699],[79.24298,26.52827],[79.24313,26.51919],[79.24161,26.51551],[79.24396,26.51241],[79.2558,26.51263],[79.2826,26.52641],[79.287,26.52711],[79.30166,26.52497],[79.30584,26.52182],[79.30653,26.51728],[79.29937,26.51195],[79.2925,26.5095],[79.2832,26.50799],[79.27011,26.50831],[79.25629,26.50025],[79.25045,26.49229],[79.26084,26.48925],[79.26711,26.48447],[79.2692,26.4802],[79.26894,26.47377],[79.26331,26.46381],[79.25491,26.45722],[79.22409,26.44831],[79.21835,26.44427],[79.21255,26.43718],[79.22304,26.42802],[79.24347,26.4261],[79.28338,26.43807],[79.28702,26.44234],[79.29707,26.44049],[79.3026,26.43608],[79.30751,26.42028],[79.31437,26.40732],[79.32051,26.39952],[79.32483,26.3985],[79.34557,26.40115],[79.36478,26.40694],[79.38208,26.41364],[79.3877,26.41877],[79.40389,26.42439],[79.45121,26.4333],[79.46885,26.43323],[79.47664,26.42932],[79.48676,26.41863],[79.49027,26.40997],[79.49039,26.39126],[79.49213,26.38582],[79.50579,26.36424],[79.54134,26.39678],[79.54537,26.40255],[79.55313,26.4041],[79.55775,26.40854],[79.57691,26.43344],[79.56761,26.44285],[79.56888,26.44577],[79.56797,26.44685],[79.57033,26.45028],[79.57589,26.44721],[79.59084,26.46416],[79.59384,26.46254],[79.59844,26.46622],[79.59995,26.47026],[79.59749,26.4741],[79.59408,26.476],[79.59613,26.47944],[79.61188,26.48933],[79.61641,26.48745],[79.62132,26.49131],[79.62137,26.49337],[79.61395,26.49876],[79.61007,26.504],[79.62175,26.51466],[79.63144,26.50812],[79.63668,26.51003],[79.63342,26.51758],[79.63752,26.52058],[79.63658,26.52505],[79.63835,26.53089],[79.63479,26.54122],[79.62771,26.54426],[79.63566,26.55002],[79.64135,26.55698],[79.64584,26.57131],[79.63446,26.57644],[79.63462,26.58447],[79.6325,26.5919],[79.63986,26.60692],[79.64402,26.6054],[79.64501,26.60709],[79.64814,26.60643],[79.65485,26.60251],[79.66078,26.61526],[79.67249,26.61129],[79.67345,26.61876],[79.67691,26.62072],[79.68072,26.62629],[79.6797,26.62712],[79.68231,26.63181],[79.68983,26.63551],[79.69269,26.63473],[79.69632,26.64019],[79.70684,26.64361],[79.7137,26.65528],[79.71705,26.65824],[79.71608,26.6621],[79.7187,26.66499],[79.71471,26.66885],[79.71166,26.67575],[79.7202,26.68841],[79.72033,26.69081],[79.71611,26.69279],[79.7114,26.70493],[79.70331,26.71191],[79.70171,26.71551],[79.69643,26.71747],[79.69359,26.7281],[79.69129,26.72812],[79.69051,26.73172],[79.67873,26.73503],[79.67413,26.73878],[79.67467,26.74389],[79.69234,26.74384],[79.69626,26.74253],[79.69653,26.74535],[79.69885,26.74765],[79.70319,26.74899],[79.71677,26.74876],[79.71986,26.75022],[79.72049,26.75293],[79.7229,26.75173],[79.73046,26.76563],[79.73859,26.76647],[79.74442,26.7645],[79.74742,26.7671],[79.74771,26.77186],[79.75686,26.78274],[79.75252,26.78855],[79.75568,26.79535],[79.75089,26.79819],[79.7462,26.80643],[79.74086,26.80982],[79.73969,26.81279],[79.72564,26.804],[79.7215,26.80445],[79.71335,26.80938],[79.71643,26.81354],[79.70524,26.82208],[79.7011,26.82344],[79.70572,26.8372],[79.68937,26.84752],[79.69,26.84906],[79.67397,26.86305],[79.67433,26.86455],[79.66486,26.86585],[79.66155,26.86804],[79.66361,26.87572],[79.66154,26.8783],[79.66219,26.88324],[79.66552,26.88705],[79.64792,26.89481],[79.64576,26.89341],[79.63604,26.89336],[79.62919,26.88938],[79.62604,26.88512],[79.62373,26.88475],[79.61381,26.89347],[79.59993,26.8925],[79.59861,26.88681],[79.59537,26.88429],[79.58995,26.883],[79.58411,26.87575],[79.58013,26.87366],[79.57934,26.86806],[79.58298,26.86582],[79.58266,26.86466],[79.57642,26.86423],[79.57032,26.86196],[79.57011,26.86052],[79.5596,26.85996],[79.55073,26.87022],[79.53758,26.8757],[79.52868,26.87156],[79.52151,26.8803],[79.51719,26.87904],[79.51238,26.87479],[79.50993,26.87907],[79.50491,26.88199],[79.50082,26.88324],[79.49646,26.88229],[79.49246,26.8857],[79.49241,26.88738],[79.49041,26.88704],[79.48806,26.89201],[79.48172,26.89506],[79.48229,26.90005],[79.47865,26.89916],[79.47859,26.89584],[79.47557,26.89623],[79.46659,26.90695],[79.45946,26.90256],[79.4572,26.90507],[79.45546,26.9035],[79.45897,26.91567],[79.45637,26.91552],[79.45569,26.91317],[79.45451,26.9138],[79.44774,26.93057],[79.44214,26.92925],[79.43974,26.93086],[79.43412,26.92918],[79.43443,26.93394],[79.44098,26.93385],[79.43599,26.93658],[79.43698,26.9414],[79.43012,26.94176],[79.42489,26.93626],[79.41547,26.93415],[79.40036,26.93655],[79.3998,26.93058],[79.39281,26.92669],[79.38898,26.9324],[79.38049,26.93728],[79.37692,26.93747]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"123","area_level":"District","area_name":"Azamgarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.93063,26.41046],[82.92542,26.41176],[82.91394,26.41076],[82.91089,26.40383],[82.9149,26.39979],[82.91322,26.39774],[82.91848,26.39445],[82.91657,26.39254],[82.89806,26.38593],[82.8897,26.38559],[82.88189,26.38262],[82.88203,26.37699],[82.87573,26.37205],[82.87005,26.35685],[82.8766,26.35708],[82.88935,26.35347],[82.89594,26.34856],[82.8969,26.34563],[82.89158,26.34144],[82.88222,26.32541],[82.87368,26.31998],[82.86349,26.32483],[82.86055,26.31922],[82.86215,26.31195],[82.86612,26.31381],[82.86811,26.31061],[82.87205,26.31141],[82.86986,26.30684],[82.87268,26.30341],[82.87174,26.29854],[82.87464,26.29196],[82.87857,26.29147],[82.88029,26.28603],[82.87098,26.27374],[82.87644,26.26901],[82.87452,26.26264],[82.8756,26.25786],[82.88501,26.25241],[82.88593,26.24573],[82.8828,26.24526],[82.87975,26.24181],[82.88275,26.23233],[82.87485,26.23244],[82.87506,26.22796],[82.87068,26.22224],[82.86747,26.21931],[82.8636,26.2204],[82.86222,26.21809],[82.86363,26.21652],[82.86301,26.21277],[82.86748,26.21038],[82.86866,26.20691],[82.86484,26.20573],[82.86382,26.20726],[82.85986,26.20676],[82.85613,26.20455],[82.85821,26.20233],[82.8602,26.20428],[82.86341,26.20266],[82.87257,26.18657],[82.8788,26.18542],[82.88608,26.18624],[82.88494,26.1833],[82.88911,26.17852],[82.88335,26.17296],[82.88182,26.16786],[82.87963,26.16553],[82.87275,26.17167],[82.87055,26.16934],[82.87099,26.16746],[82.8677,26.16713],[82.87058,26.1646],[82.86971,26.16071],[82.86621,26.15665],[82.85987,26.15804],[82.85756,26.16123],[82.85824,26.16316],[82.85543,26.1654],[82.85225,26.16634],[82.84833,26.16301],[82.84483,26.16667],[82.83959,26.16729],[82.83865,26.17088],[82.83425,26.17462],[82.83461,26.17978],[82.82481,26.17886],[82.82427,26.1844],[82.82147,26.18692],[82.81366,26.18705],[82.8037,26.18995],[82.80062,26.1864],[82.79558,26.1889],[82.78489,26.18771],[82.78529,26.19328],[82.78365,26.19675],[82.78201,26.19712],[82.77747,26.19278],[82.77486,26.1939],[82.77467,26.19862],[82.76662,26.21125],[82.75713,26.2116],[82.75303,26.21499],[82.75313,26.21966],[82.75094,26.22194],[82.7486,26.22203],[82.74836,26.22528],[82.74678,26.22637],[82.75071,26.23077],[82.7501,26.24058],[82.74499,26.24887],[82.74807,26.25138],[82.75284,26.26162],[82.75155,26.26271],[82.74874,26.26473],[82.74806,26.26],[82.74581,26.25992],[82.7416,26.25325],[82.73831,26.25132],[82.73787,26.24797],[82.73509,26.24514],[82.73273,26.24501],[82.73107,26.24225],[82.72764,26.24424],[82.72305,26.24332],[82.7217,26.24575],[82.72513,26.25243],[82.72327,26.25452],[82.71521,26.25682],[82.70484,26.26434],[82.70123,26.26266],[82.69775,26.26351],[82.69737,26.26624],[82.68931,26.26753],[82.6917,26.26251],[82.69052,26.26038],[82.68857,26.25833],[82.68363,26.26026],[82.68162,26.25686],[82.6782,26.25518],[82.67694,26.24825],[82.68286,26.24143],[82.67508,26.23625],[82.67135,26.2287],[82.67427,26.22229],[82.68445,26.22101],[82.68442,26.21514],[82.68901,26.20872],[82.68395,26.20057],[82.68285,26.18977],[82.68467,26.18491],[82.68395,26.1792],[82.68591,26.17859],[82.68399,26.17648],[82.68508,26.1725],[82.68289,26.16319],[82.69257,26.15888],[82.6924,26.15634],[82.68869,26.15674],[82.68627,26.15385],[82.67868,26.1515],[82.67662,26.1454],[82.67297,26.14427],[82.66902,26.14533],[82.66555,26.14282],[82.66522,26.13657],[82.66717,26.13316],[82.67074,26.13099],[82.66747,26.12336],[82.6721,26.12047],[82.67664,26.12088],[82.67738,26.11839],[82.68023,26.11661],[82.67939,26.11524],[82.68092,26.11294],[82.6772,26.11039],[82.67684,26.10421],[82.67902,26.1051],[82.68401,26.10292],[82.68353,26.09897],[82.68841,26.09711],[82.69255,26.09829],[82.70173,26.09716],[82.70224,26.09541],[82.70658,26.09492],[82.69703,26.06716],[82.69988,26.06563],[82.70161,26.06738],[82.70757,26.06252],[82.71249,26.05052],[82.70883,26.04754],[82.70334,26.05054],[82.69856,26.04007],[82.70569,26.03975],[82.71739,26.04295],[82.71895,26.03786],[82.72189,26.03556],[82.72098,26.03285],[82.71904,26.03456],[82.71249,26.03293],[82.71114,26.02948],[82.70523,26.02762],[82.70306,26.02457],[82.71107,26.02422],[82.72401,26.02781],[82.72675,26.02437],[82.73118,26.02548],[82.72882,26.02147],[82.73169,26.01744],[82.72635,26.01699],[82.72229,26.00916],[82.7258,26.00475],[82.72473,25.99795],[82.72587,25.99154],[82.73072,25.9847],[82.73059,25.98242],[82.7342,25.9836],[82.73289,25.97741],[82.7356,25.97123],[82.74447,25.96652],[82.74444,25.96254],[82.74771,25.95982],[82.7478,25.95517],[82.74966,25.95447],[82.74741,25.94708],[82.75294,25.94357],[82.75115,25.93682],[82.7594,25.93366],[82.75536,25.92684],[82.76352,25.92284],[82.76171,25.91643],[82.76356,25.91496],[82.76222,25.91149],[82.76747,25.90789],[82.76936,25.89826],[82.77275,25.89632],[82.77025,25.89391],[82.76642,25.89621],[82.76464,25.88469],[82.76723,25.88289],[82.77028,25.88423],[82.77359,25.88139],[82.76778,25.87671],[82.76546,25.87173],[82.76307,25.87022],[82.76175,25.86512],[82.76294,25.86029],[82.76437,25.86016],[82.76346,25.85831],[82.76513,25.85638],[82.76509,25.85189],[82.76236,25.85043],[82.75449,25.83687],[82.76873,25.83105],[82.78004,25.83],[82.78559,25.8269],[82.78432,25.82389],[82.7866,25.8187],[82.79258,25.81769],[82.80086,25.80539],[82.80858,25.806],[82.80895,25.79979],[82.80624,25.78857],[82.81795,25.78543],[82.81941,25.7831],[82.82215,25.78236],[82.82056,25.77581],[82.82174,25.7739],[82.82557,25.77284],[82.82539,25.7697],[82.83874,25.7689],[82.84489,25.76685],[82.85871,25.77232],[82.86531,25.77111],[82.87011,25.77377],[82.87847,25.77335],[82.89024,25.76924],[82.89921,25.77491],[82.9012,25.77045],[82.9024,25.77143],[82.90687,25.76801],[82.9125,25.76765],[82.91881,25.75972],[82.92402,25.7572],[82.92652,25.75848],[82.92929,25.75741],[82.9299,25.75425],[82.92769,25.74929],[82.92899,25.74728],[82.92329,25.74435],[82.92291,25.73911],[82.92147,25.73805],[82.92462,25.73498],[82.92393,25.73245],[82.92707,25.72982],[82.9279,25.73218],[82.92977,25.72994],[82.93171,25.73001],[82.93199,25.73219],[82.93376,25.73112],[82.9329,25.72367],[82.93456,25.7229],[82.93536,25.71865],[82.94116,25.71648],[82.94207,25.70802],[82.95423,25.70582],[82.95802,25.70803],[82.96817,25.69972],[82.97624,25.69033],[82.97651,25.68595],[82.98062,25.68478],[82.97973,25.68259],[82.98197,25.68017],[82.98433,25.68075],[82.98511,25.68343],[82.99239,25.68583],[82.99862,25.68435],[83.00124,25.69414],[82.99799,25.69361],[82.99736,25.69792],[83.00286,25.69974],[83.00336,25.70338],[82.99983,25.70416],[83.00366,25.71067],[83.00895,25.71505],[83.01128,25.71112],[83.01376,25.71117],[83.01406,25.70914],[83.01865,25.70559],[83.02162,25.70671],[83.02767,25.70334],[83.03095,25.70556],[83.03061,25.70204],[83.03277,25.69774],[83.03638,25.70058],[83.04397,25.70164],[83.04073,25.69149],[83.05262,25.68929],[83.05644,25.68333],[83.06878,25.68442],[83.0714,25.68618],[83.079,25.68254],[83.07732,25.67184],[83.0681,25.66812],[83.06205,25.65945],[83.06624,25.65237],[83.07896,25.65169],[83.08663,25.64958],[83.08775,25.65813],[83.09848,25.65772],[83.10033,25.6554],[83.10571,25.65463],[83.1096,25.65583],[83.11484,25.65392],[83.12066,25.6546],[83.13574,25.6404],[83.13795,25.64104],[83.13896,25.63875],[83.14081,25.64005],[83.14188,25.63627],[83.14866,25.63598],[83.15309,25.63904],[83.15116,25.64011],[83.15193,25.65014],[83.14742,25.65342],[83.14874,25.65718],[83.15051,25.65947],[83.15332,25.6599],[83.15488,25.66379],[83.15783,25.66356],[83.15861,25.66488],[83.16611,25.66347],[83.16563,25.66167],[83.17171,25.6627],[83.17323,25.66779],[83.17175,25.67276],[83.17707,25.67099],[83.18183,25.67204],[83.18285,25.67561],[83.18701,25.67684],[83.18488,25.68134],[83.18641,25.68663],[83.18533,25.69073],[83.19005,25.69306],[83.18917,25.69557],[83.19147,25.69699],[83.19117,25.69982],[83.1939,25.70213],[83.19859,25.70425],[83.20253,25.70237],[83.20665,25.70345],[83.20909,25.70176],[83.21481,25.70185],[83.21532,25.70436],[83.22253,25.70177],[83.22839,25.70153],[83.22887,25.70387],[83.23483,25.70336],[83.23371,25.70485],[83.23646,25.70736],[83.24032,25.70683],[83.24153,25.70864],[83.23264,25.71745],[83.22958,25.72456],[83.22093,25.72946],[83.21389,25.73134],[83.21715,25.73769],[83.21971,25.74929],[83.21595,25.75274],[83.21806,25.75876],[83.21696,25.76238],[83.21084,25.76279],[83.20797,25.75841],[83.20046,25.76318],[83.18901,25.76635],[83.19359,25.77853],[83.19865,25.77714],[83.20326,25.77106],[83.20545,25.77044],[83.20858,25.77398],[83.21133,25.77149],[83.21363,25.77224],[83.2142,25.76824],[83.2181,25.76886],[83.2169,25.76039],[83.21861,25.75912],[83.22363,25.75978],[83.23026,25.76358],[83.23277,25.76858],[83.23656,25.76897],[83.23852,25.76497],[83.24046,25.76634],[83.24597,25.76539],[83.24694,25.77076],[83.2516,25.77006],[83.25288,25.77222],[83.25557,25.77263],[83.25503,25.7744],[83.25691,25.77576],[83.25795,25.77304],[83.26075,25.77222],[83.26236,25.77677],[83.27102,25.77674],[83.27064,25.77281],[83.27495,25.77641],[83.2767,25.76988],[83.28013,25.76794],[83.27979,25.7593],[83.2812,25.75875],[83.28181,25.76111],[83.28439,25.76248],[83.28482,25.75796],[83.28323,25.75645],[83.28563,25.7555],[83.2878,25.75727],[83.29128,25.75707],[83.29538,25.75558],[83.29926,25.75689],[83.30312,25.75551],[83.30417,25.75818],[83.30294,25.7584],[83.30314,25.76188],[83.30186,25.76153],[83.30177,25.76312],[83.30391,25.76432],[83.29854,25.76652],[83.29995,25.76843],[83.3052,25.76957],[83.30361,25.77458],[83.30708,25.77676],[83.30544,25.77798],[83.30661,25.78012],[83.30479,25.78543],[83.30744,25.78791],[83.30827,25.78585],[83.30918,25.78725],[83.31349,25.78772],[83.31671,25.79514],[83.32006,25.79595],[83.32024,25.80083],[83.31704,25.80128],[83.31741,25.80697],[83.31953,25.80688],[83.32307,25.81439],[83.32616,25.81347],[83.32952,25.81473],[83.33231,25.81124],[83.33862,25.81092],[83.34344,25.81532],[83.34575,25.81471],[83.34395,25.81894],[83.3448,25.82094],[83.3484,25.81998],[83.35242,25.82295],[83.35458,25.82033],[83.35477,25.82659],[83.35341,25.82812],[83.34352,25.83099],[83.3415,25.82962],[83.33806,25.83228],[83.33923,25.8346],[83.33297,25.83957],[83.33027,25.83978],[83.32772,25.84398],[83.32409,25.8404],[83.32065,25.84135],[83.3154,25.83944],[83.31652,25.84303],[83.32102,25.84388],[83.32341,25.84718],[83.32331,25.84892],[83.31841,25.84808],[83.31913,25.85213],[83.31756,25.85354],[83.32484,25.86212],[83.32033,25.86626],[83.3204,25.87368],[83.32205,25.875],[83.32011,25.88202],[83.32085,25.88444],[83.32045,25.88622],[83.31737,25.88611],[83.31703,25.88979],[83.32029,25.8909],[83.3191,25.89505],[83.32882,25.89737],[83.33089,25.90181],[83.33313,25.90294],[83.33618,25.90264],[83.33534,25.90058],[83.33978,25.90078],[83.34449,25.89886],[83.34745,25.9017],[83.34459,25.9024],[83.34704,25.90812],[83.35135,25.90799],[83.35178,25.91444],[83.33816,25.91917],[83.33922,25.92475],[83.34164,25.92557],[83.35489,25.91523],[83.35474,25.91798],[83.35704,25.9177],[83.35967,25.92029],[83.3586,25.92689],[83.36168,25.92717],[83.36205,25.92215],[83.36376,25.92052],[83.36729,25.92181],[83.36859,25.92033],[83.36988,25.92232],[83.37412,25.92362],[83.37496,25.93526],[83.37204,25.93485],[83.36798,25.93877],[83.36223,25.93984],[83.3603,25.93769],[83.35535,25.9408],[83.35264,25.94603],[83.35038,25.94733],[83.34251,25.94612],[83.34103,25.95299],[83.33738,25.95157],[83.33325,25.95359],[83.32534,25.94976],[83.31892,25.95049],[83.30962,25.94336],[83.29736,25.94732],[83.29549,25.94611],[83.29909,25.95855],[83.30814,25.9628],[83.31013,25.96621],[83.30923,25.96974],[83.30534,25.97293],[83.30698,25.97726],[83.30555,25.98461],[83.31117,25.98436],[83.32041,25.9892],[83.31862,26.00276],[83.32182,26.0095],[83.32591,26.01372],[83.33114,26.03127],[83.32928,26.03562],[83.31866,26.03587],[83.31965,26.04936],[83.32498,26.05198],[83.33522,26.05164],[83.34243,26.05338],[83.34584,26.05026],[83.35032,26.05276],[83.35912,26.05064],[83.3604,26.05248],[83.37192,26.05696],[83.37239,26.06053],[83.36905,26.06269],[83.3594,26.06021],[83.3594,26.06889],[83.36781,26.07273],[83.36804,26.07563],[83.37465,26.07944],[83.37817,26.07852],[83.3824,26.08373],[83.38421,26.08925],[83.3906,26.08721],[83.39248,26.08862],[83.39241,26.09322],[83.3953,26.09508],[83.39642,26.0982],[83.40588,26.09518],[83.40568,26.10739],[83.40839,26.11065],[83.41606,26.10843],[83.41895,26.11067],[83.41147,26.12318],[83.41994,26.124],[83.422,26.12633],[83.422,26.13398],[83.41713,26.1489],[83.41332,26.15153],[83.41568,26.1557],[83.41289,26.1599],[83.41616,26.16226],[83.40875,26.1676],[83.4124,26.17117],[83.41354,26.17472],[83.41817,26.17688],[83.41968,26.18663],[83.42485,26.18639],[83.42859,26.18956],[83.43141,26.19704],[83.42997,26.20191],[83.43552,26.21128],[83.44849,26.2233],[83.45097,26.22328],[83.4502,26.23044],[83.45609,26.23838],[83.45576,26.24323],[83.46515,26.25365],[83.46555,26.26659],[83.46829,26.27954],[83.43452,26.2752],[83.41785,26.2842],[83.4179,26.2741],[83.41097,26.27961],[83.40106,26.28438],[83.40076,26.29581],[83.3911,26.30599],[83.3742,26.3197],[83.36826,26.32683],[83.34984,26.33628],[83.34082,26.34783],[83.33713,26.35035],[83.33459,26.35057],[83.33236,26.34493],[83.32525,26.3438],[83.31824,26.3487],[83.31797,26.35117],[83.30149,26.34989],[83.2884,26.35724],[83.2839,26.35819],[83.25905,26.37785],[83.25265,26.37925],[83.2499,26.38356],[83.24439,26.38741],[83.23591,26.38899],[83.22838,26.39478],[83.19782,26.39318],[83.18294,26.3976],[83.17019,26.39403],[83.15831,26.39688],[83.14798,26.39242],[83.14389,26.38808],[83.13217,26.38543],[83.12299,26.36832],[83.1135,26.35806],[83.11173,26.3528],[83.10945,26.32428],[83.11179,26.32158],[83.11009,26.31586],[83.11352,26.31394],[83.11379,26.31118],[83.1127,26.31021],[83.11056,26.31149],[83.10938,26.31019],[83.11204,26.30776],[83.1108,26.30585],[83.11417,26.30144],[83.1116,26.30156],[83.11335,26.29923],[83.10932,26.29777],[83.10769,26.2897],[83.10896,26.2835],[83.10177,26.28154],[83.09834,26.28404],[83.09691,26.28223],[83.09795,26.27962],[83.09668,26.27907],[83.0943,26.28296],[83.09045,26.2811],[83.08554,26.28145],[83.08406,26.27972],[83.08054,26.28594],[83.082,26.2879],[83.0772,26.28871],[83.07489,26.29103],[83.0744,26.2825],[83.0698,26.27998],[83.068,26.28176],[83.06405,26.27962],[83.06016,26.28743],[83.05849,26.28534],[83.05256,26.28917],[83.05185,26.28811],[83.04964,26.28941],[83.04854,26.2874],[83.04349,26.28884],[83.046,26.29254],[83.04189,26.29456],[83.04041,26.29358],[83.04079,26.29699],[83.03484,26.30017],[83.03535,26.30361],[83.03317,26.30564],[83.03805,26.31094],[83.03856,26.31609],[83.03386,26.32176],[83.03357,26.32432],[83.02756,26.32954],[83.02807,26.33322],[83.02361,26.33508],[83.02201,26.33798],[83.01149,26.33467],[82.99796,26.34206],[82.99764,26.34368],[83.00071,26.34713],[82.9937,26.34929],[82.99174,26.34777],[82.98732,26.35198],[82.98148,26.35141],[82.97462,26.34566],[82.97223,26.34652],[82.9708,26.35234],[82.96512,26.35849],[82.96712,26.36373],[82.97654,26.37432],[82.97377,26.38326],[82.96996,26.3851],[82.96412,26.38336],[82.95325,26.38994],[82.95301,26.38764],[82.95017,26.38826],[82.94501,26.38168],[82.94371,26.38205],[82.94452,26.38343],[82.94275,26.38712],[82.9366,26.38214],[82.92996,26.39055],[82.935,26.40071],[82.93764,26.40216],[82.93549,26.40989],[82.93063,26.41046]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"124","area_level":"District","area_name":"Baghpat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.15903,29.29436],[77.15268,29.29812],[77.14992,29.29299],[77.14948,29.2881],[77.14502,29.2833],[77.14386,29.27663],[77.13895,29.26784],[77.13995,29.26139],[77.14539,29.25756],[77.14978,29.25],[77.14875,29.23961],[77.15,29.23276],[77.14785,29.2304],[77.13349,29.22347],[77.13141,29.21749],[77.13433,29.21001],[77.1422,29.20408],[77.14329,29.19434],[77.14018,29.19213],[77.14376,29.18313],[77.14716,29.18051],[77.14356,29.16931],[77.1429,29.15623],[77.13621,29.14952],[77.13596,29.14196],[77.14745,29.13352],[77.14908,29.11765],[77.14608,29.11052],[77.13896,29.10801],[77.13408,29.09515],[77.14346,29.08267],[77.14676,29.08055],[77.15669,29.07922],[77.16226,29.0809],[77.16376,29.07943],[77.16804,29.05455],[77.17214,29.04648],[77.16994,29.03974],[77.1669,29.03737],[77.16697,29.03382],[77.17776,29.02964],[77.18511,29.03149],[77.18912,29.02767],[77.18903,29.02355],[77.1931,29.01316],[77.19075,29.00939],[77.19096,29.00592],[77.19766,28.99218],[77.19909,28.99203],[77.19797,28.99026],[77.20188,28.98848],[77.20274,28.98526],[77.20113,28.97279],[77.19533,28.96692],[77.19298,28.95891],[77.19719,28.94654],[77.19562,28.94145],[77.19645,28.93821],[77.20141,28.93392],[77.21035,28.93421],[77.22198,28.92816],[77.22489,28.92305],[77.23123,28.92053],[77.23475,28.90906],[77.23262,28.90384],[77.23247,28.89795],[77.2275,28.89332],[77.2281,28.88119],[77.22352,28.87855],[77.22056,28.87879],[77.21541,28.88474],[77.2104,28.88765],[77.19824,28.88751],[77.18868,28.88008],[77.19196,28.87502],[77.1893,28.86788],[77.19495,28.86486],[77.20819,28.86184],[77.20991,28.85772],[77.2148,28.8553],[77.21732,28.85133],[77.21665,28.84151],[77.22203,28.83392],[77.22702,28.83112],[77.22602,28.8301],[77.23068,28.82263],[77.24087,28.82375],[77.24903,28.82265],[77.25791,28.83455],[77.26147,28.83234],[77.27381,28.8349],[77.28135,28.83434],[77.29317,28.82745],[77.29165,28.81359],[77.29977,28.80896],[77.29645,28.80099],[77.30462,28.79063],[77.3126,28.79505],[77.31966,28.79522],[77.32419,28.80212],[77.34135,28.79493],[77.34357,28.79622],[77.34824,28.806],[77.35296,28.80418],[77.35876,28.79844],[77.35813,28.79107],[77.3634,28.78614],[77.36777,28.78656],[77.37493,28.7826],[77.38957,28.7795],[77.39513,28.77664],[77.39849,28.7797],[77.40599,28.78244],[77.40274,28.79778],[77.39429,28.8037],[77.39905,28.81022],[77.40549,28.81368],[77.40005,28.81978],[77.40216,28.82161],[77.39622,28.82173],[77.39008,28.82849],[77.40222,28.83238],[77.40294,28.83561],[77.40724,28.83749],[77.40827,28.83642],[77.41231,28.83717],[77.41415,28.84039],[77.41011,28.84622],[77.4013,28.84999],[77.40795,28.86737],[77.40233,28.87533],[77.40282,28.87757],[77.40809,28.87702],[77.41912,28.8801],[77.42252,28.88968],[77.42739,28.89165],[77.42966,28.89544],[77.43076,28.90311],[77.43771,28.91596],[77.44294,28.9193],[77.44044,28.92137],[77.44113,28.92601],[77.44373,28.92547],[77.44471,28.92778],[77.4587,28.92535],[77.45986,28.9279],[77.46463,28.9307],[77.46274,28.94198],[77.4704,28.94668],[77.46094,28.94987],[77.47527,28.96596],[77.46836,28.9709],[77.46669,28.97458],[77.47036,28.98969],[77.46174,28.99009],[77.45876,28.99206],[77.45787,28.99647],[77.46174,29.00029],[77.46164,29.00218],[77.4566,29.00827],[77.45757,29.01287],[77.45159,29.01927],[77.46037,29.02255],[77.46105,29.02464],[77.45661,29.03],[77.45084,29.03153],[77.44545,29.02966],[77.44351,29.03368],[77.44738,29.03934],[77.44717,29.0477],[77.45334,29.0497],[77.45482,29.05329],[77.447,29.06858],[77.45934,29.07196],[77.462,29.07455],[77.46174,29.07758],[77.45693,29.08195],[77.45042,29.0796],[77.44317,29.0807],[77.43631,29.08386],[77.43117,29.08385],[77.42404,29.08741],[77.42261,29.09199],[77.43461,29.0942],[77.42966,29.10636],[77.43153,29.10847],[77.43905,29.11038],[77.44269,29.11751],[77.43959,29.12258],[77.44032,29.12993],[77.44936,29.12717],[77.45724,29.12836],[77.45633,29.13645],[77.45781,29.14192],[77.4708,29.14356],[77.46901,29.14782],[77.47145,29.15278],[77.46816,29.1624],[77.46945,29.16435],[77.47799,29.16757],[77.47999,29.17089],[77.47815,29.17361],[77.47138,29.1747],[77.46711,29.17754],[77.46564,29.18141],[77.46738,29.18681],[77.47338,29.19125],[77.47969,29.19246],[77.49059,29.18602],[77.50151,29.18513],[77.5045,29.19131],[77.4883,29.20211],[77.4858,29.20218],[77.48085,29.19835],[77.48012,29.20336],[77.4684,29.21188],[77.46983,29.21341],[77.46202,29.21881],[77.45555,29.22578],[77.45552,29.23021],[77.45004,29.23006],[77.44262,29.22695],[77.43188,29.23355],[77.42266,29.23519],[77.41585,29.24264],[77.40432,29.24835],[77.40311,29.2474],[77.39278,29.25108],[77.38455,29.2498],[77.37908,29.24429],[77.3785,29.24036],[77.37459,29.23974],[77.37401,29.23806],[77.36185,29.24251],[77.35096,29.24118],[77.32299,29.2521],[77.31621,29.25032],[77.32081,29.25699],[77.30382,29.26373],[77.29405,29.25726],[77.27788,29.26827],[77.27701,29.26663],[77.26731,29.26487],[77.2558,29.27076],[77.25172,29.27045],[77.24973,29.28095],[77.24791,29.27965],[77.23626,29.28233],[77.22872,29.27951],[77.20556,29.27615],[77.20331,29.27438],[77.18455,29.28069],[77.18661,29.28519],[77.18176,29.29003],[77.15903,29.29436]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"125","area_level":"District","area_name":"Bahraich","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.18026,28.36656],[81.08912,28.3823],[81.07974,28.38506],[81.05459,28.40386],[81.05088,28.4018],[81.04834,28.39379],[81.03857,28.38312],[81.0393,28.37388],[81.04626,28.36803],[81.06094,28.36168],[81.0673,28.34882],[81.06843,28.33822],[81.05229,28.31279],[81.04991,28.30361],[81.04649,28.30159],[81.04059,28.28415],[81.04236,28.28143],[81.04811,28.2798],[81.06701,28.27839],[81.07345,28.27261],[81.0745,28.26877],[81.07114,28.25588],[81.0595,28.24102],[81.06318,28.22847],[81.08714,28.21748],[81.10122,28.21896],[81.10848,28.21361],[81.11133,28.20228],[81.11535,28.20043],[81.12017,28.18086],[81.12631,28.16919],[81.13675,28.16683],[81.13859,28.1553],[81.15533,28.14405],[81.18274,28.1345],[81.19207,28.11829],[81.19741,28.10437],[81.19492,28.0949],[81.18626,28.08643],[81.16957,28.05947],[81.17569,28.04869],[81.18437,28.03867],[81.18362,28.03319],[81.18758,28.02608],[81.19171,28.02376],[81.19647,28.01428],[81.19562,28.00831],[81.2192,27.99171],[81.22418,27.98725],[81.22777,27.97936],[81.23964,27.9718],[81.24191,27.96671],[81.24196,27.96139],[81.2482,27.95456],[81.25548,27.95031],[81.27018,27.94644],[81.28016,27.94173],[81.28198,27.93749],[81.29038,27.93144],[81.30046,27.91948],[81.29673,27.91049],[81.30546,27.90779],[81.30367,27.90374],[81.29349,27.89497],[81.27814,27.88523],[81.28198,27.85712],[81.28741,27.85036],[81.29314,27.84772],[81.29447,27.83671],[81.29038,27.8246],[81.27684,27.81931],[81.27546,27.81783],[81.27572,27.81434],[81.2833,27.79982],[81.29284,27.79374],[81.29444,27.78666],[81.29226,27.7775],[81.28075,27.75971],[81.27168,27.75018],[81.27686,27.74932],[81.27171,27.73981],[81.27969,27.7298],[81.28583,27.71768],[81.28997,27.71465],[81.2921,27.70223],[81.2911,27.69983],[81.28735,27.69912],[81.28712,27.68512],[81.28503,27.68384],[81.27891,27.68424],[81.2778,27.67843],[81.28174,27.67344],[81.29397,27.66637],[81.29088,27.6519],[81.29284,27.65199],[81.29679,27.64674],[81.29694,27.6428],[81.30031,27.64029],[81.30152,27.63195],[81.29802,27.63147],[81.28903,27.63788],[81.27764,27.63186],[81.27101,27.63232],[81.27389,27.62989],[81.27403,27.627],[81.26937,27.61458],[81.27005,27.61329],[81.26623,27.61111],[81.26152,27.60413],[81.27189,27.60302],[81.26638,27.59578],[81.26577,27.59147],[81.27239,27.58617],[81.27251,27.58924],[81.28429,27.56494],[81.29049,27.56566],[81.29739,27.56188],[81.30685,27.55959],[81.30725,27.55358],[81.30232,27.53821],[81.3151,27.53727],[81.31725,27.53097],[81.32268,27.52953],[81.31909,27.52157],[81.31954,27.51826],[81.32248,27.51648],[81.31887,27.5002],[81.33219,27.49022],[81.33142,27.48125],[81.33403,27.47328],[81.33097,27.46287],[81.3358,27.4568],[81.34103,27.4566],[81.3421,27.45233],[81.34648,27.44918],[81.3527,27.44094],[81.35398,27.43785],[81.35074,27.42673],[81.35645,27.42483],[81.35983,27.42533],[81.35881,27.42126],[81.37324,27.40961],[81.37663,27.39657],[81.38859,27.38159],[81.39549,27.37708],[81.40492,27.37489],[81.40863,27.37169],[81.41323,27.36393],[81.41642,27.35289],[81.41342,27.34456],[81.41259,27.33419],[81.43042,27.32562],[81.43732,27.31663],[81.43868,27.31029],[81.43675,27.29665],[81.43775,27.28107],[81.43322,27.27127],[81.43253,27.26623],[81.43296,27.25926],[81.43611,27.25021],[81.43534,27.22131],[81.44806,27.21245],[81.45565,27.19896],[81.45817,27.19042],[81.45415,27.18717],[81.43888,27.18221],[81.43681,27.17908],[81.44402,27.14068],[81.44739,27.12992],[81.45543,27.11912],[81.47629,27.1081],[81.48046,27.09555],[81.47871,27.07552],[81.48799,27.07135],[81.49329,27.06391],[81.50491,27.05905],[81.51609,27.08603],[81.53635,27.08495],[81.53835,27.08364],[81.53931,27.07887],[81.54261,27.07712],[81.54019,27.08172],[81.54295,27.08736],[81.54538,27.08701],[81.54684,27.08878],[81.53934,27.09481],[81.54949,27.10771],[81.5586,27.11522],[81.56072,27.11497],[81.56421,27.12038],[81.56604,27.11969],[81.5682,27.12186],[81.56947,27.12558],[81.56641,27.12843],[81.56739,27.12949],[81.57659,27.12293],[81.58119,27.1218],[81.5859,27.11755],[81.58898,27.12089],[81.59044,27.12959],[81.59746,27.13556],[81.59708,27.13792],[81.60298,27.13912],[81.60577,27.14576],[81.6135,27.14317],[81.62919,27.14158],[81.63022,27.15003],[81.62832,27.15157],[81.63034,27.15851],[81.63659,27.16037],[81.6394,27.15748],[81.64132,27.15777],[81.63926,27.16513],[81.6449,27.16768],[81.64449,27.17494],[81.64673,27.17666],[81.64229,27.17857],[81.63796,27.17766],[81.64001,27.18326],[81.64351,27.18468],[81.64155,27.1877],[81.64696,27.18741],[81.64876,27.19372],[81.65522,27.20269],[81.6603,27.20062],[81.66439,27.19635],[81.66647,27.20028],[81.66203,27.20629],[81.66438,27.20831],[81.66566,27.21291],[81.66216,27.21558],[81.66543,27.21833],[81.66048,27.22185],[81.66101,27.22528],[81.66608,27.2328],[81.66504,27.23338],[81.67018,27.23812],[81.68111,27.23671],[81.68437,27.24061],[81.68136,27.25026],[81.68446,27.25583],[81.68941,27.26093],[81.69073,27.25772],[81.6927,27.25728],[81.70342,27.26613],[81.70785,27.2769],[81.70956,27.29195],[81.69909,27.29801],[81.68275,27.30141],[81.6806,27.30566],[81.68329,27.31601],[81.69249,27.31868],[81.71574,27.31645],[81.72012,27.31947],[81.72154,27.32467],[81.7262,27.32344],[81.73353,27.33008],[81.73889,27.32665],[81.74516,27.32582],[81.74968,27.31734],[81.76051,27.30961],[81.76317,27.30839],[81.76642,27.31125],[81.772,27.30697],[81.77572,27.30775],[81.77967,27.30217],[81.77536,27.29485],[81.78112,27.29007],[81.7858,27.29507],[81.7895,27.29182],[81.79474,27.29234],[81.79941,27.28117],[81.79743,27.27351],[81.80821,27.2704],[81.81109,27.26685],[81.81423,27.26584],[81.81862,27.27214],[81.82418,27.27009],[81.82889,27.27769],[81.83378,27.27681],[81.83783,27.28143],[81.83931,27.29025],[81.83611,27.29314],[81.83886,27.29632],[81.83743,27.29827],[81.8462,27.3127],[81.84819,27.32177],[81.85153,27.32179],[81.85343,27.32682],[81.86087,27.32341],[81.8654,27.32833],[81.87042,27.3304],[81.87487,27.33073],[81.87585,27.32557],[81.88628,27.32935],[81.88974,27.32557],[81.892,27.31991],[81.89086,27.31794],[81.89351,27.3154],[81.90368,27.32069],[81.91352,27.31348],[81.91672,27.31245],[81.92085,27.31447],[81.92224,27.31274],[81.92325,27.31715],[81.92125,27.31907],[81.92346,27.32401],[81.92274,27.3258],[81.90916,27.33213],[81.91084,27.33899],[81.9167,27.34328],[81.91858,27.34796],[81.91279,27.35153],[81.91521,27.35659],[81.90631,27.36375],[81.91098,27.372],[81.91551,27.37116],[81.91918,27.3767],[81.92276,27.37748],[81.92393,27.38048],[81.93065,27.37771],[81.93912,27.38617],[81.9314,27.39157],[81.93204,27.4031],[81.93139,27.40668],[81.92657,27.40883],[81.92782,27.41531],[81.93204,27.41876],[81.93715,27.41946],[81.93711,27.42376],[81.94174,27.42689],[81.93976,27.42763],[81.94134,27.42833],[81.93944,27.43186],[81.94326,27.43474],[81.94625,27.43424],[81.94725,27.43169],[81.95232,27.43035],[81.95291,27.43167],[81.95495,27.4291],[81.95527,27.4314],[81.9633,27.43248],[81.9694,27.43965],[81.9706,27.43631],[81.97709,27.43653],[81.97738,27.43359],[81.98003,27.43337],[81.97908,27.437],[81.98654,27.44217],[81.98547,27.44589],[81.98871,27.45525],[81.99036,27.47492],[81.98504,27.47592],[81.9662,27.48588],[81.96278,27.49367],[81.95835,27.49664],[81.94708,27.50001],[81.93259,27.4958],[81.91532,27.49982],[81.91452,27.49833],[81.91719,27.49564],[81.91283,27.49375],[81.90369,27.50293],[81.90488,27.50551],[81.90258,27.50709],[81.90387,27.50942],[81.90243,27.51035],[81.90289,27.51291],[81.89458,27.5143],[81.89241,27.51089],[81.88437,27.51246],[81.87777,27.51581],[81.87666,27.51466],[81.87134,27.5152],[81.86878,27.51685],[81.86667,27.52198],[81.87199,27.53237],[81.87236,27.53623],[81.86713,27.54181],[81.86075,27.54059],[81.85594,27.54224],[81.84999,27.53747],[81.84413,27.53019],[81.84512,27.52776],[81.84364,27.52606],[81.84311,27.51709],[81.84085,27.51369],[81.83669,27.51305],[81.83589,27.51124],[81.82439,27.51301],[81.81025,27.52072],[81.80662,27.52112],[81.80583,27.51941],[81.79536,27.52326],[81.78582,27.50677],[81.77799,27.50793],[81.77493,27.50029],[81.76723,27.50224],[81.76342,27.49845],[81.76009,27.50696],[81.75607,27.50978],[81.75317,27.50973],[81.75936,27.51841],[81.76227,27.51685],[81.76875,27.51746],[81.77144,27.51549],[81.77624,27.52498],[81.76625,27.53072],[81.76895,27.5375],[81.7707,27.5366],[81.77462,27.54135],[81.77179,27.55088],[81.77274,27.55411],[81.76771,27.55679],[81.76604,27.56376],[81.75841,27.56682],[81.75177,27.56134],[81.74599,27.56248],[81.74392,27.56529],[81.73262,27.56807],[81.73095,27.56997],[81.72883,27.56627],[81.72262,27.56298],[81.71544,27.55413],[81.71366,27.5551],[81.71037,27.55288],[81.70676,27.55472],[81.70565,27.55744],[81.69278,27.56438],[81.69409,27.56676],[81.69058,27.56844],[81.69061,27.57057],[81.68837,27.57215],[81.68485,27.57354],[81.68189,27.57185],[81.68275,27.57811],[81.69156,27.57634],[81.6965,27.5847],[81.69074,27.58722],[81.69484,27.59418],[81.69061,27.59751],[81.69578,27.60738],[81.70576,27.61707],[81.70714,27.62038],[81.69998,27.62445],[81.70457,27.63076],[81.69923,27.63385],[81.69196,27.63314],[81.68421,27.64059],[81.67607,27.63756],[81.67203,27.63846],[81.66634,27.63246],[81.65741,27.63862],[81.65706,27.64038],[81.65899,27.64364],[81.66533,27.64026],[81.67113,27.64716],[81.67536,27.64667],[81.68212,27.65037],[81.68003,27.66295],[81.67739,27.66453],[81.68395,27.66999],[81.68661,27.67661],[81.67973,27.68864],[81.68408,27.69068],[81.68693,27.69745],[81.69533,27.69363],[81.70146,27.69734],[81.70205,27.70061],[81.69526,27.70718],[81.69752,27.71477],[81.69338,27.72178],[81.69584,27.72659],[81.69391,27.73046],[81.68683,27.73107],[81.68569,27.73356],[81.67979,27.73259],[81.67541,27.736],[81.66651,27.73786],[81.66448,27.74136],[81.66632,27.74478],[81.66488,27.74726],[81.66648,27.75152],[81.67245,27.75425],[81.66934,27.75687],[81.65985,27.75944],[81.65729,27.76456],[81.64473,27.77542],[81.65414,27.7902],[81.65255,27.7921],[81.64894,27.79188],[81.64783,27.78999],[81.64394,27.79417],[81.64852,27.80368],[81.64615,27.80585],[81.6572,27.81473],[81.65323,27.81976],[81.64912,27.81823],[81.64649,27.81914],[81.64877,27.82498],[81.64139,27.83012],[81.64043,27.82852],[81.63077,27.83139],[81.62293,27.83536],[81.61865,27.83945],[81.61305,27.83587],[81.60814,27.83922],[81.61424,27.84627],[81.61012,27.85008],[81.6126,27.85314],[81.60786,27.8571],[81.61705,27.87255],[81.61948,27.87352],[81.62618,27.87154],[81.63189,27.87707],[81.63267,27.88019],[81.63704,27.88259],[81.64512,27.87972],[81.64921,27.8835],[81.65245,27.88264],[81.65986,27.87581],[81.66344,27.87611],[81.6655,27.87217],[81.67224,27.86939],[81.67617,27.86544],[81.67864,27.86813],[81.67781,27.87],[81.68224,27.87471],[81.68467,27.87047],[81.68858,27.86928],[81.69293,27.87457],[81.68566,27.87698],[81.68715,27.87918],[81.68398,27.8804],[81.68967,27.89096],[81.69427,27.88778],[81.69885,27.88933],[81.70668,27.88658],[81.71317,27.88887],[81.71218,27.89066],[81.71624,27.89394],[81.71819,27.89797],[81.71295,27.90109],[81.7116,27.89993],[81.71006,27.90088],[81.70966,27.90467],[81.71145,27.90694],[81.70664,27.90761],[81.705,27.91083],[81.70957,27.91805],[81.71004,27.92264],[81.71256,27.92384],[81.71796,27.92196],[81.72124,27.92632],[81.72385,27.9316],[81.71784,27.93596],[81.72595,27.94791],[81.73248,27.94349],[81.74299,27.95267],[81.69844,27.98819],[81.64376,27.99362],[81.63885,27.99734],[81.6273,28.00193],[81.62399,28.0016],[81.61807,28.00946],[81.59604,28.02127],[81.58448,28.02547],[81.54742,28.0493],[81.47828,28.08271],[81.47981,28.1103],[81.48401,28.11857],[81.47368,28.12545],[81.46769,28.12724],[81.44993,28.14085],[81.45023,28.15089],[81.44608,28.1559],[81.44697,28.16071],[81.42672,28.17068],[81.41277,28.17455],[81.39061,28.17373],[81.37351,28.1773],[81.37228,28.17655],[81.37449,28.1749],[81.36771,28.16754],[81.36702,28.16309],[81.36958,28.16034],[81.37636,28.15914],[81.37758,28.15662],[81.37623,28.14996],[81.37108,28.14349],[81.36717,28.14149],[81.33477,28.14029],[81.31803,28.13367],[81.31536,28.13722],[81.31826,28.14519],[81.32806,28.14808],[81.32038,28.16028],[81.31206,28.1559],[81.31014,28.16039],[81.302,28.16476],[81.30268,28.16768],[81.32135,28.16889],[81.32466,28.17529],[81.31844,28.18251],[81.32094,28.19755],[81.29947,28.22009],[81.29198,28.22292],[81.28601,28.22872],[81.23264,28.28915],[81.23448,28.32474],[81.21914,28.34547],[81.21329,28.35851],[81.2106,28.36083],[81.18026,28.36656]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"126","area_level":"District","area_name":"Ballia","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.85254,26.18865],[83.84384,26.19163],[83.82603,26.1885],[83.80842,26.19047],[83.81083,26.18441],[83.80709,26.17958],[83.79321,26.16973],[83.78901,26.16916],[83.77914,26.16308],[83.77937,26.15837],[83.78517,26.15432],[83.7862,26.15143],[83.78863,26.15084],[83.79093,26.14723],[83.802,26.14223],[83.80507,26.13369],[83.80268,26.12984],[83.7982,26.12922],[83.79795,26.12368],[83.79555,26.11815],[83.79226,26.11591],[83.79457,26.10713],[83.78954,26.10449],[83.78507,26.10568],[83.78307,26.1044],[83.78347,26.10312],[83.77738,26.10066],[83.77112,26.10146],[83.76919,26.09823],[83.76112,26.1012],[83.7607,26.09902],[83.76603,26.09477],[83.76408,26.09211],[83.76142,26.09203],[83.75532,26.09675],[83.75283,26.09656],[83.75066,26.09353],[83.75564,26.09149],[83.75676,26.08813],[83.7512,26.08517],[83.74841,26.08932],[83.74225,26.09038],[83.73947,26.08254],[83.73101,26.0831],[83.73116,26.08851],[83.72737,26.08892],[83.72294,26.087],[83.71953,26.08787],[83.7173,26.09427],[83.70811,26.09406],[83.69597,26.08416],[83.69479,26.07622],[83.69304,26.07615],[83.692,26.07388],[83.68364,26.07474],[83.68122,26.07358],[83.68176,26.06659],[83.68428,26.06543],[83.68757,26.05938],[83.68646,26.0563],[83.67974,26.05344],[83.67735,26.04347],[83.67957,26.02813],[83.67803,26.02433],[83.67953,26.02235],[83.67597,26.02029],[83.68074,26.01514],[83.67702,26.01086],[83.68942,26.00437],[83.69925,26.00906],[83.71352,26.01117],[83.73904,26.00459],[83.7495,26.0048],[83.75363,26.00287],[83.7522,25.99793],[83.76242,25.99421],[83.76692,26.00077],[83.77601,26.00009],[83.77592,25.99284],[83.7801,25.99076],[83.77893,25.98621],[83.77417,25.98574],[83.77014,25.97958],[83.76707,25.98215],[83.76569,25.97435],[83.76832,25.97231],[83.77045,25.97273],[83.77365,25.97456],[83.77608,25.97862],[83.78829,25.97684],[83.78087,25.93981],[83.78105,25.93329],[83.78915,25.93439],[83.80087,25.92954],[83.79864,25.92037],[83.80723,25.91754],[83.80709,25.91568],[83.805,25.91327],[83.80099,25.91346],[83.7997,25.91149],[83.8011,25.90936],[83.79755,25.90247],[83.78083,25.90076],[83.77642,25.90256],[83.773,25.90019],[83.76587,25.90026],[83.76426,25.89423],[83.76254,25.89584],[83.75729,25.89643],[83.75818,25.89356],[83.75629,25.89226],[83.75502,25.88623],[83.75056,25.8874],[83.74879,25.88346],[83.73795,25.88368],[83.73719,25.8809],[83.74101,25.88095],[83.73442,25.87758],[83.73645,25.87628],[83.73413,25.8739],[83.735,25.87188],[83.73131,25.86965],[83.73178,25.86081],[83.72814,25.86038],[83.72111,25.85553],[83.72698,25.85761],[83.73096,25.857],[83.72806,25.85276],[83.72819,25.85001],[83.73077,25.84785],[83.73539,25.84838],[83.73709,25.84713],[83.73521,25.84111],[83.7381,25.84184],[83.74303,25.85126],[83.74412,25.85727],[83.74827,25.8557],[83.74924,25.8517],[83.74668,25.84923],[83.7454,25.84428],[83.7509,25.83414],[83.7543,25.8337],[83.75942,25.82792],[83.76557,25.82578],[83.767,25.81961],[83.77057,25.81691],[83.77871,25.81363],[83.78678,25.81553],[83.78743,25.81382],[83.78397,25.81221],[83.78679,25.80872],[83.79016,25.80887],[83.79528,25.81331],[83.79979,25.81223],[83.80074,25.80703],[83.79872,25.80549],[83.79909,25.80342],[83.81188,25.79312],[83.81317,25.79057],[83.82039,25.78673],[83.81901,25.7836],[83.81334,25.78146],[83.81494,25.77777],[83.8209,25.77797],[83.82593,25.78429],[83.83136,25.78677],[83.83323,25.79374],[83.8418,25.79105],[83.84771,25.78651],[83.85196,25.78598],[83.85716,25.79315],[83.85306,25.79575],[83.85441,25.79816],[83.85899,25.79585],[83.8601,25.79247],[83.86417,25.79221],[83.86348,25.78867],[83.86636,25.78545],[83.86635,25.77772],[83.87253,25.77967],[83.87506,25.77881],[83.87486,25.77738],[83.87819,25.77728],[83.87973,25.77269],[83.87879,25.7707],[83.8828,25.76636],[83.88264,25.76441],[83.89164,25.7628],[83.90094,25.75733],[83.90112,25.76069],[83.90472,25.76097],[83.90334,25.7645],[83.90654,25.76649],[83.90803,25.76402],[83.91591,25.7611],[83.91003,25.7552],[83.91232,25.74934],[83.91703,25.75012],[83.921,25.75687],[83.92477,25.75889],[83.92161,25.76307],[83.92236,25.76572],[83.9252,25.76766],[83.92882,25.76724],[83.93422,25.76316],[83.93928,25.7642],[83.93663,25.76001],[83.94123,25.7613],[83.941,25.7587],[83.94707,25.75845],[83.94957,25.75675],[83.94623,25.75053],[83.95277,25.74961],[83.95353,25.74601],[83.94795,25.7424],[83.94763,25.74032],[83.95096,25.73508],[83.95704,25.73436],[83.95616,25.73087],[83.96057,25.72934],[83.95919,25.72547],[83.95428,25.72682],[83.95212,25.72129],[83.94108,25.72357],[83.93618,25.70835],[83.95237,25.70237],[83.95157,25.68531],[83.954,25.68521],[83.95955,25.68911],[83.96258,25.68712],[83.96194,25.68426],[83.95565,25.67646],[83.94725,25.6752],[83.94487,25.67066],[83.94263,25.65742],[83.93701,25.65665],[83.9365,25.6423],[83.93368,25.64104],[83.93227,25.63778],[83.92718,25.63748],[83.92732,25.63558],[83.92066,25.63458],[83.92649,25.62226],[83.92706,25.61799],[83.9312,25.6188],[83.93425,25.61578],[83.93637,25.61574],[83.94329,25.59139],[83.94,25.59005],[83.94165,25.58131],[83.93514,25.5813],[83.9343,25.58729],[83.93079,25.58824],[83.93085,25.57838],[83.92931,25.57135],[83.92723,25.56976],[83.92706,25.56511],[83.93025,25.55748],[83.95837,25.57082],[84.01741,25.61469],[84.04616,25.62691],[84.08128,25.63631],[84.08512,25.65258],[84.07531,25.69557],[84.09048,25.71402],[84.10506,25.72122],[84.12913,25.72371],[84.1399,25.73166],[84.14223,25.72815],[84.14164,25.72174],[84.13525,25.72403],[84.12988,25.71779],[84.14037,25.71587],[84.14981,25.7188],[84.1526,25.72346],[84.1557,25.72385],[84.15275,25.72695],[84.14927,25.72774],[84.15086,25.72925],[84.15467,25.72924],[84.15449,25.72744],[84.16298,25.72487],[84.16694,25.72158],[84.16993,25.72291],[84.17423,25.72062],[84.17454,25.71763],[84.19889,25.70208],[84.20601,25.66946],[84.22322,25.66251],[84.27436,25.66289],[84.27686,25.66041],[84.29451,25.66113],[84.30026,25.66539],[84.29954,25.6685],[84.29139,25.67065],[84.28815,25.67326],[84.28761,25.67755],[84.29291,25.67565],[84.29798,25.67739],[84.29918,25.67194],[84.31689,25.67249],[84.31703,25.66729],[84.32435,25.67103],[84.32956,25.70866],[84.32842,25.73193],[84.33634,25.74423],[84.36518,25.74256],[84.37522,25.73533],[84.3769,25.73715],[84.37177,25.74203],[84.37374,25.74429],[84.37783,25.73928],[84.38495,25.74751],[84.3917,25.74516],[84.39363,25.7442],[84.39012,25.73691],[84.38782,25.7376],[84.38439,25.73277],[84.40004,25.72937],[84.39851,25.72555],[84.40058,25.72492],[84.40654,25.71598],[84.40109,25.70834],[84.40674,25.69842],[84.41477,25.69804],[84.42318,25.69367],[84.42768,25.69362],[84.42808,25.70119],[84.43155,25.70768],[84.42965,25.71162],[84.44029,25.71106],[84.44041,25.70836],[84.44428,25.70849],[84.44425,25.71065],[84.45351,25.71433],[84.45289,25.70943],[84.46217,25.70928],[84.46423,25.70077],[84.46249,25.69767],[84.46829,25.69853],[84.46893,25.69662],[84.46606,25.69535],[84.46588,25.69168],[84.4708,25.68724],[84.49361,25.69084],[84.49196,25.67649],[84.49606,25.67674],[84.49934,25.67468],[84.50437,25.67764],[84.5054,25.67692],[84.50775,25.68185],[84.52005,25.67496],[84.52887,25.68249],[84.53446,25.72423],[84.53944,25.72673],[84.53519,25.69077],[84.55105,25.68585],[84.55645,25.68195],[84.55532,25.68009],[84.55743,25.67951],[84.5618,25.6858],[84.5642,25.71377],[84.56028,25.7369],[84.60032,25.73837],[84.60776,25.73533],[84.6114,25.73249],[84.6112,25.73108],[84.62743,25.7263],[84.62884,25.72617],[84.63017,25.72885],[84.63465,25.72794],[84.63178,25.73928],[84.62535,25.74753],[84.6107,25.75469],[84.60296,25.76194],[84.60622,25.76127],[84.60738,25.77141],[84.61346,25.77577],[84.61835,25.77129],[84.61941,25.7724],[84.62347,25.7708],[84.62457,25.79217],[84.58178,25.82508],[84.55211,25.84018],[84.55087,25.84068],[84.54861,25.82854],[84.53052,25.83161],[84.53076,25.8535],[84.52322,25.86029],[84.5337,25.86403],[84.54066,25.85966],[84.54322,25.85996],[84.53398,25.87637],[84.51075,25.87176],[84.48949,25.88832],[84.49015,25.88645],[84.47852,25.88506],[84.4724,25.88171],[84.46015,25.88951],[84.45953,25.88815],[84.4544,25.88773],[84.43662,25.8916],[84.43531,25.88987],[84.42756,25.89124],[84.4289,25.89751],[84.42496,25.90167],[84.41987,25.91351],[84.41376,25.923],[84.4119,25.93078],[84.38737,25.93733],[84.35395,25.95878],[84.31187,25.94377],[84.29691,25.94517],[84.28229,25.95878],[84.24491,25.97579],[84.24513,25.98063],[84.23929,25.98506],[84.21768,25.99473],[84.21307,25.9949],[84.20708,25.99983],[84.20153,25.99036],[84.19628,25.98788],[84.18648,25.99345],[84.17604,25.99652],[84.17463,25.99284],[84.17567,25.99137],[84.17003,25.98768],[84.17246,26.0246],[84.13729,26.05221],[84.12112,26.07654],[84.10381,26.09274],[84.08867,26.10024],[84.05592,26.10005],[84.05222,26.08947],[84.04408,26.09552],[84.03774,26.09702],[84.01527,26.11415],[84.00571,26.11222],[83.99679,26.11692],[83.98094,26.11396],[83.97732,26.11531],[83.97274,26.12342],[83.96333,26.13184],[83.959,26.13089],[83.95374,26.12667],[83.93615,26.1218],[83.93034,26.12302],[83.91952,26.11969],[83.90762,26.12131],[83.89679,26.12714],[83.88713,26.13523],[83.88567,26.13936],[83.87622,26.14683],[83.87196,26.15767],[83.86427,26.16523],[83.8649,26.18117],[83.85254,26.18865]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"127","area_level":"District","area_name":"Balrampur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.20877,27.8431],[82.20489,27.84286],[82.20532,27.83278],[82.20297,27.82518],[82.20432,27.82224],[82.20012,27.81614],[82.19976,27.80916],[82.19681,27.80701],[82.19758,27.80385],[82.19475,27.80522],[82.19221,27.80416],[82.19127,27.7978],[82.18766,27.7963],[82.18624,27.79327],[82.18435,27.7928],[82.18388,27.79536],[82.18183,27.79563],[82.18152,27.78882],[82.16707,27.79248],[82.16278,27.79063],[82.16014,27.78336],[82.15091,27.77339],[82.15306,27.7713],[82.15117,27.7685],[82.14522,27.76955],[82.14541,27.76666],[82.14261,27.76493],[82.14348,27.76299],[82.14078,27.75606],[82.14313,27.75247],[82.13974,27.75023],[82.13853,27.74557],[82.13184,27.73875],[82.12438,27.73503],[82.12773,27.73142],[82.13482,27.73034],[82.13425,27.72294],[82.1287,27.71332],[82.13153,27.71165],[82.13347,27.70754],[82.1292,27.70728],[82.12593,27.7038],[82.12827,27.70012],[82.12346,27.69382],[82.12463,27.69188],[82.12129,27.69156],[82.11751,27.68665],[82.11279,27.68378],[82.11004,27.67913],[82.10683,27.68105],[82.10195,27.68038],[82.09207,27.66881],[82.09657,27.66392],[82.09771,27.66023],[82.09209,27.65688],[82.08443,27.64725],[82.08796,27.6401],[82.08534,27.63442],[82.08095,27.63287],[82.07655,27.62383],[82.07131,27.62442],[82.0696,27.62149],[82.06608,27.62016],[82.05899,27.62336],[82.05636,27.61402],[82.05292,27.61497],[82.04469,27.61294],[82.03939,27.60152],[82.02611,27.58905],[82.02166,27.57978],[82.03324,27.56759],[82.03219,27.56487],[82.03639,27.5622],[82.03215,27.5508],[82.04153,27.54638],[82.04694,27.55936],[82.05542,27.55436],[82.04756,27.54501],[82.04024,27.54186],[82.04912,27.53725],[82.0483,27.5344],[82.04469,27.53484],[82.04266,27.53264],[82.04982,27.52243],[82.0539,27.51939],[82.04864,27.51345],[82.05074,27.51161],[82.04923,27.49898],[82.056,27.49811],[82.05888,27.49304],[82.05196,27.44628],[82.05657,27.44492],[82.06094,27.43966],[82.06454,27.43808],[82.06648,27.44061],[82.07054,27.43956],[82.06951,27.43765],[82.0725,27.43381],[82.06797,27.42614],[82.06802,27.4235],[82.08273,27.41905],[82.07721,27.41409],[82.07275,27.40036],[82.07767,27.39865],[82.07966,27.39478],[82.08265,27.39413],[82.08615,27.40081],[82.08952,27.40229],[82.09039,27.40052],[82.08826,27.40023],[82.08842,27.39891],[82.09409,27.39932],[82.09667,27.39568],[82.10049,27.39465],[82.10276,27.40189],[82.1048,27.40359],[82.10382,27.40445],[82.10682,27.40693],[82.11096,27.40751],[82.11307,27.40288],[82.11735,27.40425],[82.11959,27.39905],[82.11785,27.39453],[82.12243,27.39223],[82.12046,27.38937],[82.12138,27.38712],[82.11559,27.38298],[82.11529,27.37992],[82.11269,27.37969],[82.11182,27.37686],[82.11712,27.37227],[82.12148,27.37562],[82.12547,27.37078],[82.13333,27.36818],[82.13254,27.36315],[82.14002,27.36149],[82.14265,27.35749],[82.1437,27.35112],[82.14738,27.34754],[82.14699,27.34019],[82.14373,27.33724],[82.14667,27.33332],[82.15415,27.3292],[82.15655,27.32563],[82.15896,27.32658],[82.16852,27.32425],[82.17635,27.32628],[82.17927,27.32504],[82.18105,27.32142],[82.19041,27.31972],[82.19158,27.31473],[82.19369,27.31474],[82.19534,27.31079],[82.19938,27.31013],[82.20282,27.31146],[82.20614,27.30971],[82.20725,27.30751],[82.20586,27.30315],[82.21057,27.30296],[82.22021,27.29648],[82.22765,27.2971],[82.22746,27.29281],[82.23096,27.29188],[82.2315,27.28864],[82.23634,27.28749],[82.24297,27.28049],[82.24451,27.27622],[82.25063,27.27598],[82.24954,27.27379],[82.25086,27.27282],[82.25338,27.27592],[82.25408,27.27424],[82.25804,27.27345],[82.255,27.2706],[82.25629,27.2634],[82.25813,27.2633],[82.25736,27.26132],[82.26017,27.26216],[82.25957,27.2656],[82.26233,27.26537],[82.27006,27.26167],[82.27126,27.25871],[82.27533,27.2594],[82.27528,27.25541],[82.27665,27.25543],[82.27486,27.25405],[82.27591,27.25141],[82.28749,27.25344],[82.28829,27.24776],[82.29071,27.24775],[82.28846,27.24667],[82.28899,27.24554],[82.29679,27.24683],[82.29381,27.24009],[82.29727,27.23427],[82.30169,27.23464],[82.30625,27.2284],[82.3085,27.22791],[82.30401,27.21721],[82.30124,27.21444],[82.30137,27.21229],[82.28846,27.21738],[82.29059,27.22224],[82.28222,27.22469],[82.27759,27.22948],[82.2792,27.23113],[82.27195,27.23519],[82.27034,27.23108],[82.26638,27.22835],[82.24575,27.22215],[82.2442,27.21748],[82.23585,27.20795],[82.23707,27.19895],[82.22856,27.18235],[82.22716,27.1751],[82.22787,27.16905],[82.22996,27.16605],[82.23494,27.16438],[82.23146,27.16323],[82.2322,27.15998],[82.23481,27.16076],[82.23623,27.15869],[82.23406,27.15741],[82.23379,27.15527],[82.23897,27.15284],[82.23856,27.15554],[82.2417,27.15587],[82.24249,27.15396],[82.24122,27.15301],[82.24285,27.15172],[82.23947,27.15174],[82.23992,27.14992],[82.24551,27.14867],[82.24973,27.14415],[82.25331,27.14396],[82.25346,27.14165],[82.25577,27.14172],[82.2563,27.14005],[82.25745,27.1421],[82.25995,27.13901],[82.26155,27.14013],[82.26797,27.13677],[82.2647,27.1294],[82.27184,27.12791],[82.27043,27.12065],[82.27151,27.11789],[82.27307,27.11853],[82.276,27.11652],[82.27473,27.11386],[82.28002,27.11541],[82.28374,27.11264],[82.28768,27.11447],[82.28789,27.1116],[82.291,27.11234],[82.2912,27.1139],[82.292,27.11158],[82.29508,27.11198],[82.29598,27.11033],[82.29413,27.11002],[82.29373,27.10677],[82.29192,27.10704],[82.29042,27.10426],[82.29426,27.10585],[82.294,27.10343],[82.29612,27.1033],[82.29512,27.10245],[82.29715,27.09989],[82.29854,27.10187],[82.29968,27.09952],[82.30157,27.09976],[82.30538,27.10661],[82.30804,27.10626],[82.30861,27.10459],[82.31037,27.10658],[82.31505,27.10374],[82.3173,27.1047],[82.31691,27.09828],[82.31933,27.09922],[82.32021,27.09655],[82.32306,27.09724],[82.32464,27.09568],[82.32321,27.09357],[82.32531,27.09086],[82.3223,27.08758],[82.32392,27.08475],[82.32014,27.07743],[82.32159,27.07596],[82.32467,27.07888],[82.32269,27.07286],[82.3249,27.06605],[82.32762,27.06452],[82.33196,27.06505],[82.33374,27.07124],[82.33831,27.06837],[82.33795,27.07066],[82.34289,27.07044],[82.34791,27.06238],[82.35333,27.05887],[82.35435,27.0615],[82.35875,27.05775],[82.36163,27.05845],[82.36119,27.05641],[82.36478,27.05598],[82.36523,27.05345],[82.36393,27.05343],[82.36641,27.05174],[82.37022,27.05426],[82.37003,27.05579],[82.37108,27.0531],[82.37573,27.058],[82.37846,27.05875],[82.38005,27.06173],[82.37492,27.06478],[82.37875,27.06767],[82.37825,27.06967],[82.38017,27.07005],[82.38193,27.07394],[82.3926,27.06678],[82.39664,27.07413],[82.40044,27.07249],[82.40423,27.07422],[82.40058,27.07699],[82.39805,27.08128],[82.39917,27.08244],[82.39521,27.08473],[82.39953,27.09301],[82.40536,27.09343],[82.40666,27.08967],[82.40582,27.08682],[82.41238,27.08566],[82.41254,27.08167],[82.41558,27.08572],[82.42138,27.08501],[82.42048,27.09228],[82.42269,27.09356],[82.42361,27.09766],[82.42751,27.09876],[82.43139,27.10597],[82.43816,27.10912],[82.43891,27.1124],[82.43598,27.11386],[82.43555,27.11238],[82.43116,27.1122],[82.43306,27.11889],[82.43075,27.11845],[82.43169,27.12358],[82.43633,27.13118],[82.43262,27.13326],[82.43537,27.14045],[82.44008,27.14058],[82.44153,27.13704],[82.44512,27.13494],[82.44761,27.13654],[82.45062,27.13557],[82.45131,27.12379],[82.46044,27.12063],[82.46636,27.12918],[82.46871,27.13393],[82.46203,27.13873],[82.45983,27.14464],[82.45598,27.14745],[82.45544,27.15071],[82.4507,27.15151],[82.45093,27.15335],[82.44685,27.15411],[82.44534,27.15848],[82.44344,27.15889],[82.44603,27.15982],[82.44431,27.16275],[82.43918,27.16466],[82.44067,27.16523],[82.4391,27.16583],[82.43842,27.17208],[82.44232,27.17572],[82.44497,27.18186],[82.44966,27.18091],[82.45342,27.18364],[82.45443,27.18638],[82.45834,27.18742],[82.4653,27.19381],[82.47017,27.19655],[82.47396,27.1967],[82.47846,27.20226],[82.48748,27.19618],[82.49712,27.19426],[82.50826,27.18835],[82.50978,27.18587],[82.5088,27.17901],[82.51677,27.17495],[82.51912,27.1754],[82.51968,27.18032],[82.52589,27.17985],[82.54057,27.18389],[82.55989,27.18012],[82.56543,27.18195],[82.56687,27.18484],[82.56581,27.19066],[82.56219,27.19631],[82.54714,27.20019],[82.5439,27.20253],[82.54378,27.20442],[82.5455,27.20543],[82.55356,27.20263],[82.55525,27.20463],[82.55522,27.21006],[82.55293,27.21543],[82.54721,27.216],[82.53144,27.21161],[82.5249,27.21409],[82.51205,27.21139],[82.51169,27.21382],[82.52096,27.23109],[82.49688,27.23658],[82.50736,27.24854],[82.52344,27.24929],[82.52474,27.25298],[82.5218,27.25844],[82.51899,27.25951],[82.5148,27.25922],[82.50511,27.25491],[82.50364,27.2558],[82.50494,27.26665],[82.51262,27.27503],[82.51211,27.27601],[82.49343,27.27585],[82.48981,27.27854],[82.49145,27.28659],[82.49875,27.29265],[82.51458,27.30066],[82.51476,27.30321],[82.50126,27.29886],[82.49159,27.29268],[82.4875,27.29267],[82.48434,27.29804],[82.48353,27.30238],[82.48469,27.30555],[82.49176,27.31106],[82.49467,27.31544],[82.50507,27.31492],[82.51048,27.31037],[82.51254,27.31057],[82.51297,27.31368],[82.50989,27.31926],[82.50049,27.32385],[82.49702,27.32227],[82.49326,27.31682],[82.48997,27.31828],[82.47479,27.31843],[82.47198,27.32031],[82.47518,27.32664],[82.47983,27.32687],[82.48997,27.33421],[82.49051,27.33694],[82.48715,27.34203],[82.48864,27.35275],[82.49224,27.35881],[82.50175,27.36674],[82.51351,27.36546],[82.51878,27.36088],[82.52153,27.36078],[82.52205,27.36731],[82.52399,27.36758],[82.52649,27.36264],[82.52855,27.36201],[82.53255,27.36267],[82.5388,27.36928],[82.54257,27.36902],[82.54339,27.37267],[82.54168,27.37395],[82.54368,27.38122],[82.55049,27.38308],[82.55443,27.39516],[82.5608,27.39527],[82.56497,27.39736],[82.5714,27.40629],[82.56786,27.41548],[82.56854,27.41651],[82.57221,27.41344],[82.57314,27.41625],[82.57611,27.41625],[82.57281,27.41779],[82.57781,27.4223],[82.58388,27.4228],[82.58369,27.41789],[82.58684,27.41565],[82.58983,27.41514],[82.59112,27.41725],[82.59409,27.41757],[82.59561,27.41071],[82.59832,27.40779],[82.59939,27.40856],[82.5986,27.41116],[82.60165,27.4161],[82.60426,27.41668],[82.60608,27.41405],[82.61309,27.41413],[82.61448,27.41482],[82.61328,27.41618],[82.61452,27.41805],[82.61797,27.41396],[82.61575,27.41175],[82.61666,27.40689],[82.62135,27.40461],[82.62474,27.40893],[82.62714,27.40674],[82.62404,27.40502],[82.62286,27.40231],[82.62852,27.40138],[82.6303,27.40238],[82.63085,27.411],[82.6331,27.41006],[82.63465,27.40481],[82.6431,27.4085],[82.65068,27.40861],[82.65105,27.41074],[82.65639,27.40909],[82.65758,27.40513],[82.65424,27.40468],[82.65557,27.4071],[82.65063,27.40804],[82.65075,27.40346],[82.65396,27.40262],[82.65596,27.40432],[82.65946,27.40071],[82.66041,27.40292],[82.65874,27.40942],[82.66399,27.41222],[82.66498,27.41563],[82.66852,27.41257],[82.66939,27.4093],[82.6621,27.40599],[82.66134,27.40445],[82.66358,27.40362],[82.66857,27.40523],[82.6722,27.40965],[82.67924,27.41376],[82.68243,27.41341],[82.68509,27.4087],[82.69177,27.41413],[82.6946,27.40732],[82.69844,27.40736],[82.69898,27.40888],[82.69672,27.40893],[82.69263,27.41595],[82.69364,27.41712],[82.69834,27.41683],[82.69893,27.4134],[82.7065,27.40736],[82.70669,27.41081],[82.70152,27.41919],[82.70246,27.42154],[82.70627,27.41842],[82.70588,27.41435],[82.70807,27.41184],[82.71425,27.4137],[82.71586,27.41286],[82.71582,27.40976],[82.71113,27.40803],[82.71566,27.40103],[82.71723,27.40121],[82.72549,27.41186],[82.72773,27.41133],[82.72692,27.40509],[82.72938,27.40581],[82.72965,27.40785],[82.73144,27.40793],[82.7305,27.41275],[82.73254,27.41682],[82.74097,27.41415],[82.74545,27.40974],[82.75572,27.40614],[82.76052,27.41213],[82.76468,27.41199],[82.75967,27.41714],[82.75907,27.42623],[82.75592,27.42951],[82.75442,27.43406],[82.74562,27.43901],[82.74439,27.44341],[82.74571,27.4455],[82.74256,27.44603],[82.74045,27.44415],[82.74104,27.44697],[82.73554,27.44915],[82.73428,27.4518],[82.73113,27.45185],[82.73195,27.45617],[82.729,27.45863],[82.72621,27.45697],[82.72242,27.45933],[82.72105,27.45831],[82.71664,27.46002],[82.71573,27.46804],[82.71935,27.46942],[82.72336,27.47672],[82.72685,27.47771],[82.72597,27.48029],[82.73039,27.48213],[82.72899,27.48342],[82.73153,27.48644],[82.72857,27.48889],[82.73292,27.49269],[82.73195,27.49562],[82.7354,27.49869],[82.73509,27.50799],[82.73764,27.50863],[82.73656,27.50929],[82.73679,27.51789],[82.73872,27.51855],[82.74317,27.51652],[82.7419,27.52073],[82.7463,27.52067],[82.74718,27.51927],[82.74965,27.52257],[82.74746,27.52281],[82.74931,27.52451],[82.74795,27.52684],[82.74623,27.52562],[82.74704,27.52773],[82.74514,27.5287],[82.74716,27.53129],[82.74434,27.52952],[82.74553,27.53135],[82.74196,27.53165],[82.74451,27.53371],[82.74393,27.53559],[82.74067,27.5363],[82.74324,27.54115],[82.74173,27.54099],[82.74123,27.54265],[82.74273,27.54303],[82.74065,27.54438],[82.74197,27.54606],[82.73901,27.54483],[82.73777,27.54656],[82.74096,27.54995],[82.73881,27.55006],[82.73828,27.55187],[82.74013,27.55132],[82.7412,27.55344],[82.74695,27.55556],[82.74352,27.56029],[82.75085,27.56491],[82.75081,27.56769],[82.74742,27.57252],[82.74922,27.57403],[82.74866,27.57641],[82.75089,27.57698],[82.75235,27.5852],[82.75577,27.5878],[82.75039,27.59369],[82.74504,27.59549],[82.74567,27.60076],[82.73512,27.60993],[82.73666,27.61219],[82.73371,27.61871],[82.73652,27.62242],[82.73112,27.62385],[82.73667,27.62596],[82.73404,27.62876],[82.73838,27.63249],[82.73517,27.63593],[82.73767,27.63742],[82.7366,27.64345],[82.73345,27.64292],[82.73349,27.64645],[82.72887,27.64579],[82.73211,27.64914],[82.72575,27.65838],[82.72333,27.65924],[82.72019,27.65753],[82.71895,27.6589],[82.72022,27.66182],[82.71448,27.6626],[82.7115,27.66529],[82.71558,27.66763],[82.71297,27.67085],[82.7159,27.67291],[82.71595,27.67587],[82.71419,27.67716],[82.71834,27.68736],[82.71574,27.69178],[82.70974,27.69558],[82.70608,27.7017],[82.7054,27.71026],[82.70765,27.72292],[82.70509,27.71663],[82.70209,27.71615],[82.69913,27.72195],[82.69533,27.71816],[82.68904,27.71513],[82.68089,27.71391],[82.6658,27.71594],[82.66432,27.72264],[82.65524,27.71346],[82.63807,27.70911],[82.62735,27.71144],[82.62741,27.70926],[82.61887,27.70233],[82.60519,27.70607],[82.60029,27.70435],[82.59408,27.69737],[82.58509,27.69905],[82.55465,27.68853],[82.54989,27.68888],[82.54128,27.6857],[82.53932,27.68776],[82.53138,27.68652],[82.51661,27.69056],[82.50084,27.68513],[82.49224,27.68437],[82.48989,27.68165],[82.48431,27.68107],[82.48204,27.68316],[82.47331,27.67667],[82.44867,27.67932],[82.43662,27.68598],[82.42711,27.68916],[82.41287,27.69905],[82.40172,27.70372],[82.38273,27.72076],[82.36772,27.74292],[82.33669,27.75461],[82.30346,27.77283],[82.25271,27.81035],[82.23044,27.82114],[82.20877,27.8431]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"128","area_level":"District","area_name":"Banda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.4296,25.90849],[80.40521,25.91375],[80.37905,25.91184],[80.36689,25.90962],[80.34579,25.90003],[80.34955,25.88501],[80.35016,25.87962],[80.34855,25.87673],[80.35151,25.87096],[80.34799,25.86653],[80.34333,25.86743],[80.34048,25.86626],[80.33671,25.85666],[80.33039,25.84908],[80.32872,25.84368],[80.32478,25.84595],[80.31278,25.84737],[80.30259,25.84731],[80.30165,25.84503],[80.30044,25.84701],[80.29679,25.84616],[80.28686,25.83979],[80.28857,25.83506],[80.2941,25.83022],[80.29755,25.824],[80.28537,25.8149],[80.27608,25.82067],[80.25929,25.80752],[80.25048,25.81231],[80.23605,25.80517],[80.23169,25.79907],[80.23691,25.79539],[80.25653,25.79157],[80.26324,25.78581],[80.2705,25.78285],[80.26777,25.77757],[80.27034,25.77541],[80.27128,25.77111],[80.28715,25.76827],[80.29359,25.76921],[80.29908,25.76354],[80.30472,25.76262],[80.31239,25.75491],[80.3198,25.75111],[80.32663,25.74238],[80.32806,25.73681],[80.32653,25.7346],[80.32813,25.73216],[80.33826,25.72754],[80.34569,25.72029],[80.34685,25.71231],[80.3492,25.71171],[80.35074,25.7037],[80.34717,25.70342],[80.34173,25.70761],[80.32922,25.71217],[80.32355,25.71231],[80.30742,25.70054],[80.30542,25.6971],[80.30542,25.68063],[80.31524,25.66984],[80.31827,25.66376],[80.31968,25.65268],[80.3165,25.64401],[80.30188,25.63276],[80.28628,25.63076],[80.28,25.62817],[80.27778,25.62537],[80.27875,25.62161],[80.29117,25.61324],[80.29383,25.60879],[80.28222,25.5951],[80.27937,25.58403],[80.26876,25.58491],[80.26831,25.58674],[80.26245,25.58771],[80.26021,25.59055],[80.25701,25.58985],[80.25485,25.59186],[80.24954,25.58658],[80.2509,25.58541],[80.24595,25.57658],[80.24305,25.57721],[80.24186,25.57599],[80.24129,25.56662],[80.23706,25.56707],[80.23253,25.55845],[80.22059,25.55826],[80.21756,25.55994],[80.21288,25.55212],[80.2141,25.54987],[80.20801,25.52938],[80.2147,25.52937],[80.22441,25.52662],[80.21913,25.51349],[80.22541,25.50963],[80.222,25.49714],[80.22312,25.49628],[80.22112,25.49441],[80.21258,25.49685],[80.21147,25.49548],[80.22663,25.47279],[80.21498,25.4696],[80.21118,25.47474],[80.20831,25.48398],[80.20304,25.4853],[80.20305,25.47997],[80.1991,25.47619],[80.19424,25.46549],[80.19391,25.45685],[80.19796,25.45139],[80.19287,25.4434],[80.18118,25.4481],[80.17834,25.44706],[80.17483,25.44811],[80.17537,25.45017],[80.15663,25.45722],[80.14445,25.45954],[80.14232,25.45867],[80.14059,25.45127],[80.1368,25.44643],[80.13669,25.43849],[80.13488,25.43726],[80.13748,25.43408],[80.13542,25.43443],[80.13438,25.43195],[80.13202,25.43158],[80.1309,25.42894],[80.13231,25.42849],[80.1301,25.42401],[80.12707,25.42325],[80.12792,25.42121],[80.12374,25.42072],[80.12592,25.41769],[80.11781,25.41157],[80.11791,25.40767],[80.12377,25.40837],[80.13404,25.40565],[80.13364,25.40918],[80.13514,25.41059],[80.13805,25.40961],[80.13931,25.41196],[80.15223,25.40681],[80.15252,25.40184],[80.14985,25.39595],[80.13992,25.39788],[80.13381,25.4012],[80.13238,25.39076],[80.13027,25.38917],[80.13026,25.38702],[80.13321,25.38524],[80.13628,25.38651],[80.14234,25.38442],[80.14114,25.38153],[80.13909,25.37932],[80.12905,25.38237],[80.12601,25.38148],[80.12557,25.37887],[80.12391,25.37909],[80.12231,25.37635],[80.12091,25.36544],[80.10722,25.35561],[80.10371,25.35007],[80.11737,25.34152],[80.11883,25.34329],[80.12658,25.34026],[80.1311,25.33423],[80.14178,25.35066],[80.14939,25.35761],[80.15808,25.35905],[80.16304,25.36299],[80.16716,25.36408],[80.16734,25.3733],[80.16896,25.37686],[80.1821,25.3768],[80.189,25.37924],[80.19493,25.37816],[80.19655,25.38117],[80.19587,25.3991],[80.19711,25.40083],[80.196,25.40205],[80.20237,25.41404],[80.20756,25.41136],[80.20547,25.40682],[80.20618,25.40447],[80.22036,25.39813],[80.22082,25.39674],[80.23173,25.40236],[80.23616,25.40782],[80.24291,25.40357],[80.25342,25.40083],[80.25554,25.40438],[80.25551,25.40956],[80.26127,25.41607],[80.26384,25.42402],[80.26793,25.4221],[80.27992,25.42076],[80.28506,25.41546],[80.28561,25.41711],[80.28845,25.41703],[80.29953,25.40653],[80.31494,25.39011],[80.31655,25.37761],[80.3204,25.36716],[80.31944,25.36477],[80.31127,25.36057],[80.30965,25.35549],[80.31154,25.34558],[80.32174,25.33502],[80.32267,25.33209],[80.31885,25.32223],[80.32136,25.31232],[80.31851,25.30506],[80.31117,25.29823],[80.3108,25.28641],[80.32551,25.27823],[80.34821,25.27845],[80.35143,25.27716],[80.35497,25.27092],[80.35681,25.2618],[80.36587,25.25107],[80.36939,25.24953],[80.36963,25.24763],[80.38358,25.23729],[80.38867,25.23751],[80.39626,25.24643],[80.40013,25.24634],[80.40334,25.24403],[80.41075,25.22408],[80.40773,25.21802],[80.41209,25.21324],[80.41458,25.20565],[80.42147,25.19832],[80.42649,25.18985],[80.43168,25.1768],[80.4279,25.16919],[80.41989,25.16318],[80.40988,25.16296],[80.3902,25.15839],[80.38508,25.15561],[80.37655,25.14583],[80.37488,25.14553],[80.37348,25.1474],[80.36225,25.14437],[80.35782,25.1425],[80.35456,25.13836],[80.35385,25.13595],[80.35641,25.13216],[80.35232,25.13095],[80.35534,25.12849],[80.35472,25.12642],[80.36915,25.11777],[80.37388,25.11654],[80.37571,25.11756],[80.37608,25.11636],[80.37473,25.1087],[80.3701,25.10222],[80.37048,25.09972],[80.36241,25.09756],[80.36008,25.09388],[80.35654,25.09489],[80.35404,25.09155],[80.35134,25.09139],[80.35034,25.08935],[80.35212,25.08906],[80.35161,25.08816],[80.34843,25.08665],[80.34838,25.08278],[80.35154,25.08118],[80.34578,25.0649],[80.34908,25.06242],[80.35597,25.06157],[80.35423,25.05933],[80.3562,25.05736],[80.35533,25.05563],[80.35071,25.05317],[80.34452,25.05574],[80.34365,25.05347],[80.34067,25.05443],[80.34046,25.05862],[80.33675,25.05907],[80.33419,25.05636],[80.33148,25.04798],[80.32119,25.04992],[80.3114,25.04423],[80.30762,25.04642],[80.30465,25.05086],[80.3029,25.0511],[80.30368,25.05175],[80.2997,25.05365],[80.29691,25.05319],[80.29054,25.05954],[80.2849,25.05396],[80.2855,25.04974],[80.28809,25.04661],[80.28787,25.03812],[80.27362,25.02597],[80.29238,25.0167],[80.29975,25.01558],[80.30021,25.01283],[80.3044,25.01109],[80.30826,25.00584],[80.31338,25.00352],[80.32063,25.00283],[80.32314,24.99774],[80.33099,24.9922],[80.34166,25.01348],[80.34517,25.01673],[80.352,25.01751],[80.35345,25.01339],[80.35738,25.01158],[80.36295,25.0236],[80.36919,25.01993],[80.37186,25.02084],[80.37746,25.01954],[80.37588,25.01467],[80.37849,25.00435],[80.38732,25.00431],[80.39388,25.00836],[80.39644,25.01195],[80.39144,25.01308],[80.3909,25.01615],[80.38512,25.01826],[80.38694,25.02395],[80.37785,25.02702],[80.3833,25.03527],[80.38568,25.03557],[80.38707,25.03246],[80.38984,25.03556],[80.38536,25.04183],[80.37826,25.04043],[80.37051,25.04269],[80.37483,25.04894],[80.37266,25.05336],[80.37366,25.05591],[80.38097,25.05186],[80.388,25.05091],[80.38846,25.05503],[80.39216,25.05847],[80.39227,25.06381],[80.39954,25.06435],[80.40062,25.06957],[80.4023,25.06575],[80.4053,25.06772],[80.40657,25.0637],[80.40412,25.06167],[80.40872,25.05525],[80.41449,25.05731],[80.41814,25.06901],[80.41615,25.07026],[80.41611,25.07318],[80.42311,25.06868],[80.42835,25.06734],[80.42889,25.06565],[80.43303,25.06576],[80.43727,25.06934],[80.43956,25.07514],[80.44322,25.07415],[80.44401,25.07797],[80.44965,25.07849],[80.44996,25.07518],[80.45271,25.07474],[80.44642,25.07112],[80.45146,25.06897],[80.45143,25.06221],[80.45706,25.06331],[80.46357,25.06803],[80.46852,25.0606],[80.46974,25.04719],[80.47271,25.04603],[80.46999,25.04432],[80.47153,25.04239],[80.47414,25.04276],[80.47515,25.03794],[80.48174,25.03802],[80.48357,25.0409],[80.4865,25.04053],[80.48882,25.04348],[80.50188,25.03725],[80.49559,25.0291],[80.48972,25.03134],[80.48807,25.03019],[80.48485,25.03367],[80.48271,25.03111],[80.4784,25.0326],[80.47435,25.03053],[80.46464,25.03575],[80.46317,25.03981],[80.45636,25.03934],[80.45445,25.04222],[80.44895,25.04055],[80.44767,25.03693],[80.44585,25.03736],[80.44139,25.03341],[80.43309,25.02374],[80.43552,25.02155],[80.43938,25.02299],[80.44411,25.02085],[80.44747,25.01422],[80.45245,25.01515],[80.45317,25.01346],[80.45124,25.00991],[80.45487,25.00573],[80.45384,25.00313],[80.44353,25.0041],[80.44288,25.00207],[80.43679,25.00148],[80.43565,24.99826],[80.43718,24.99741],[80.43703,24.99452],[80.44476,24.99442],[80.44691,25.00203],[80.45188,24.99944],[80.45652,25.00402],[80.46285,25.00253],[80.46396,24.99538],[80.45592,24.99125],[80.45943,24.98483],[80.45614,24.98164],[80.46524,24.97577],[80.47644,24.97646],[80.47826,24.97393],[80.48039,24.986],[80.48829,24.98988],[80.49259,24.98938],[80.4975,24.99565],[80.49662,24.99887],[80.4993,25.00621],[80.50079,25.00447],[80.50541,25.00538],[80.50962,25.00313],[80.51476,25.00295],[80.51762,25.00878],[80.52359,25.00658],[80.52503,25.00356],[80.53084,25.00125],[80.5386,25.00043],[80.54371,25.0029],[80.54948,25.00247],[80.54339,25.01134],[80.54437,25.01405],[80.54137,25.01668],[80.54167,25.01904],[80.54393,25.0198],[80.54745,25.02493],[80.54816,25.02993],[80.54607,25.03242],[80.54082,25.03245],[80.5323,25.03792],[80.51832,25.04094],[80.51415,25.04336],[80.50058,25.04153],[80.50307,25.04524],[80.50066,25.04781],[80.50097,25.05146],[80.50645,25.05384],[80.50899,25.05879],[80.50183,25.07069],[80.49641,25.07295],[80.50338,25.07305],[80.50663,25.08397],[80.50053,25.08722],[80.49246,25.08823],[80.48858,25.09094],[80.48687,25.09018],[80.48077,25.09291],[80.4795,25.09602],[80.48152,25.09587],[80.48065,25.09868],[80.48303,25.10019],[80.48518,25.09794],[80.4876,25.09883],[80.48791,25.09671],[80.48957,25.09852],[80.49235,25.09801],[80.49311,25.09963],[80.4983,25.09659],[80.49974,25.10031],[80.51528,25.09626],[80.52097,25.09109],[80.5191,25.08227],[80.5216,25.07605],[80.53349,25.07014],[80.54074,25.07172],[80.5458,25.0644],[80.55223,25.06282],[80.56758,25.07336],[80.56812,25.07748],[80.56665,25.07802],[80.56845,25.08688],[80.57586,25.08153],[80.58219,25.08212],[80.59511,25.07942],[80.59621,25.07642],[80.59726,25.07768],[80.60002,25.07335],[80.60328,25.0722],[80.60424,25.06901],[80.61314,25.0657],[80.61446,25.06658],[80.61415,25.06921],[80.61115,25.07713],[80.60986,25.07938],[80.6062,25.08016],[80.60673,25.08628],[80.60281,25.08518],[80.5982,25.08726],[80.59943,25.08024],[80.59603,25.07981],[80.59712,25.08185],[80.59229,25.0902],[80.59772,25.0889],[80.59785,25.09117],[80.59371,25.0945],[80.59613,25.09908],[80.59233,25.1032],[80.59511,25.10519],[80.59756,25.11393],[80.60021,25.11391],[80.6019,25.11637],[80.60719,25.11791],[80.60638,25.1212],[80.60244,25.12254],[80.60003,25.12615],[80.59677,25.12791],[80.595,25.1272],[80.59764,25.14125],[80.59678,25.14375],[80.6019,25.15043],[80.60844,25.14983],[80.60967,25.14569],[80.61268,25.14319],[80.61039,25.13631],[80.61034,25.12901],[80.61161,25.1277],[80.61643,25.12835],[80.62002,25.13392],[80.62237,25.13494],[80.62851,25.1334],[80.63455,25.12863],[80.63254,25.1225],[80.63823,25.11687],[80.63574,25.11316],[80.63237,25.11305],[80.63078,25.11598],[80.62741,25.11741],[80.62445,25.11488],[80.62501,25.11127],[80.61958,25.10816],[80.61875,25.10649],[80.62077,25.10498],[80.61881,25.10049],[80.61266,25.10097],[80.60804,25.09872],[80.61025,25.09577],[80.62394,25.08869],[80.62603,25.08294],[80.62765,25.08535],[80.62581,25.08671],[80.62837,25.08716],[80.62881,25.09043],[80.63421,25.08988],[80.63389,25.08765],[80.63931,25.08715],[80.64097,25.08925],[80.63947,25.09081],[80.64042,25.09249],[80.64166,25.09201],[80.64089,25.08724],[80.64409,25.08831],[80.65193,25.08378],[80.65523,25.08493],[80.65782,25.08323],[80.65867,25.07091],[80.66174,25.06761],[80.66915,25.07311],[80.67292,25.08252],[80.67877,25.07704],[80.68501,25.07661],[80.68289,25.07429],[80.68431,25.07306],[80.68244,25.07014],[80.68403,25.06773],[80.67386,25.06061],[80.67581,25.05583],[80.68026,25.05771],[80.68103,25.05329],[80.67974,25.04846],[80.69117,25.05173],[80.69602,25.05501],[80.70838,25.05673],[80.71769,25.06214],[80.71958,25.06628],[80.71566,25.07264],[80.70956,25.0745],[80.7063,25.07189],[80.69526,25.08201],[80.70392,25.08366],[80.71163,25.09175],[80.71557,25.09146],[80.70929,25.09592],[80.70008,25.09809],[80.69924,25.10026],[80.69506,25.1023],[80.69582,25.10641],[80.69189,25.1107],[80.69444,25.12394],[80.69328,25.12663],[80.68472,25.13169],[80.68412,25.13475],[80.68842,25.14864],[80.69124,25.14942],[80.69355,25.15573],[80.70753,25.15769],[80.71095,25.16192],[80.71499,25.16217],[80.71152,25.17225],[80.70768,25.17552],[80.70991,25.18304],[80.71373,25.18582],[80.71013,25.19268],[80.71127,25.20433],[80.70901,25.20619],[80.70704,25.21154],[80.70452,25.21318],[80.70233,25.21198],[80.69927,25.21336],[80.69839,25.20879],[80.69427,25.20814],[80.68807,25.22058],[80.69041,25.22352],[80.68956,25.22774],[80.69252,25.233],[80.69002,25.23945],[80.69121,25.24055],[80.69379,25.26493],[80.69187,25.26941],[80.69546,25.27055],[80.69892,25.27477],[80.70908,25.27729],[80.7107,25.27993],[80.70943,25.28573],[80.71474,25.29047],[80.72064,25.28536],[80.72313,25.28666],[80.72427,25.27989],[80.72814,25.27866],[80.73168,25.28671],[80.73687,25.29208],[80.74378,25.29453],[80.7453,25.29365],[80.74448,25.29621],[80.74834,25.29892],[80.75252,25.29759],[80.75492,25.30642],[80.75976,25.30926],[80.75856,25.31282],[80.7613,25.3163],[80.76008,25.31841],[80.75591,25.31919],[80.75816,25.32315],[80.7678,25.32197],[80.77114,25.32312],[80.77152,25.32491],[80.76968,25.32652],[80.77025,25.33028],[80.77278,25.33005],[80.77223,25.32774],[80.77386,25.32739],[80.7762,25.32931],[80.7832,25.3289],[80.78534,25.33542],[80.78863,25.33216],[80.79066,25.33234],[80.79474,25.34001],[80.79837,25.343],[80.80028,25.34204],[80.80158,25.3346],[80.80365,25.33424],[80.80702,25.34024],[80.81534,25.34222],[80.81854,25.34943],[80.82601,25.34509],[80.83314,25.35012],[80.8365,25.35036],[80.84033,25.3567],[80.84421,25.35901],[80.84423,25.36299],[80.85035,25.36457],[80.85031,25.3688],[80.85518,25.36684],[80.86399,25.37431],[80.86647,25.38408],[80.86563,25.38783],[80.87145,25.38902],[80.87288,25.39149],[80.87259,25.39377],[80.87002,25.39528],[80.8709,25.39845],[80.87535,25.39969],[80.87651,25.40157],[80.88388,25.4003],[80.88342,25.40277],[80.88744,25.41405],[80.88578,25.41384],[80.88508,25.41599],[80.88246,25.41527],[80.88808,25.42093],[80.89485,25.4233],[80.89759,25.42828],[80.90314,25.42942],[80.90457,25.43398],[80.90253,25.4355],[80.90258,25.43929],[80.90765,25.4408],[80.91731,25.43649],[80.92045,25.44157],[80.92606,25.43933],[80.92686,25.44562],[80.93645,25.45064],[80.93504,25.45751],[80.93119,25.45763],[80.9322,25.4616],[80.94078,25.46827],[80.9449,25.46915],[80.94971,25.4654],[80.9549,25.46862],[80.9593,25.46719],[80.95781,25.46298],[80.96042,25.46267],[80.96872,25.46422],[80.96976,25.46686],[80.97312,25.46786],[80.97845,25.46211],[80.97994,25.46687],[80.97847,25.47413],[80.98643,25.47697],[80.99475,25.47557],[80.99675,25.48051],[80.99493,25.48525],[80.99826,25.48597],[81.02458,25.50541],[81.01936,25.50887],[81.01876,25.51624],[81.01104,25.52215],[81.00476,25.53567],[81.00678,25.53891],[81.01483,25.53872],[81.02042,25.54686],[81.0011,25.56486],[80.99754,25.57005],[80.99875,25.57343],[81.00552,25.57933],[81.02261,25.58538],[81.02788,25.58941],[81.03447,25.60338],[81.03662,25.61589],[81.0358,25.62418],[81.03214,25.63109],[81.02346,25.63524],[81.01953,25.63414],[81.01555,25.62928],[81.00954,25.62558],[80.99206,25.62006],[80.97389,25.61032],[80.96287,25.60743],[80.95551,25.60891],[80.9479,25.61605],[80.94398,25.62443],[80.94185,25.63458],[80.94262,25.64642],[80.94637,25.65328],[80.9487,25.6734],[80.94773,25.68093],[80.94532,25.68528],[80.93751,25.69102],[80.93133,25.69245],[80.91645,25.68611],[80.89867,25.68132],[80.87792,25.6777],[80.85917,25.67829],[80.85523,25.68303],[80.85095,25.711],[80.84831,25.71894],[80.8439,25.72358],[80.83803,25.72623],[80.83336,25.72614],[80.8215,25.72091],[80.81406,25.71287],[80.80008,25.7022],[80.77727,25.68889],[80.76118,25.68448],[80.71908,25.68082],[80.70601,25.68394],[80.69853,25.68955],[80.69181,25.69038],[80.65158,25.70661],[80.63906,25.70572],[80.62559,25.71019],[80.6122,25.71228],[80.60287,25.71109],[80.58797,25.71511],[80.57777,25.71516],[80.56716,25.71894],[80.5563,25.72876],[80.55489,25.73385],[80.56827,25.74943],[80.57463,25.75344],[80.57677,25.75692],[80.57829,25.76946],[80.5757,25.77999],[80.56815,25.78336],[80.56321,25.7837],[80.53661,25.7771],[80.52931,25.77255],[80.52275,25.77354],[80.51167,25.77915],[80.47454,25.80668],[80.46895,25.81344],[80.46573,25.82332],[80.46755,25.83121],[80.47073,25.83392],[80.47733,25.83608],[80.48834,25.837],[80.50369,25.83414],[80.51882,25.83443],[80.529,25.83575],[80.53848,25.83979],[80.54803,25.84897],[80.55462,25.86025],[80.55525,25.86508],[80.55202,25.87158],[80.5474,25.87552],[80.53853,25.87851],[80.52368,25.88091],[80.50967,25.88034],[80.50433,25.88192],[80.48235,25.89807],[80.44342,25.90779],[80.4296,25.90849]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"129","area_level":"District","area_name":"Bara Banki","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.29481,27.35383],[81.29183,27.35931],[81.28944,27.35319],[81.28456,27.35402],[81.28415,27.34661],[81.27684,27.33636],[81.27737,27.33421],[81.28062,27.33234],[81.27328,27.33142],[81.27198,27.32857],[81.25805,27.33471],[81.25395,27.32973],[81.255,27.32517],[81.25232,27.31805],[81.24827,27.31398],[81.24089,27.32254],[81.2359,27.31894],[81.23133,27.31902],[81.22834,27.32383],[81.22386,27.31627],[81.22512,27.31149],[81.23994,27.3069],[81.23125,27.29871],[81.23276,27.29446],[81.23555,27.294],[81.23775,27.28765],[81.24255,27.28468],[81.23836,27.28098],[81.23666,27.27497],[81.24198,27.27046],[81.23285,27.26267],[81.22799,27.26936],[81.22811,27.27186],[81.22528,27.27241],[81.22279,27.26778],[81.21779,27.26373],[81.21588,27.25869],[81.20965,27.25552],[81.2073,27.25249],[81.21371,27.24768],[81.20718,27.2372],[81.20422,27.23881],[81.20128,27.23651],[81.19554,27.23739],[81.18301,27.2454],[81.18398,27.25563],[81.17663,27.26024],[81.17664,27.26381],[81.17348,27.26695],[81.16782,27.26865],[81.16246,27.26554],[81.15866,27.26613],[81.15362,27.26021],[81.14858,27.25792],[81.1404,27.26216],[81.13923,27.26538],[81.13159,27.27153],[81.11669,27.27217],[81.11281,27.27455],[81.11068,27.2715],[81.10071,27.26516],[81.09678,27.26859],[81.09155,27.26413],[81.08934,27.25936],[81.0909,27.25546],[81.09045,27.25101],[81.08466,27.2477],[81.07956,27.23595],[81.08517,27.22868],[81.08218,27.22621],[81.07663,27.22954],[81.07254,27.22354],[81.06672,27.21912],[81.0619,27.22194],[81.05675,27.2176],[81.05348,27.21754],[81.05466,27.22766],[81.05352,27.22863],[81.04922,27.22691],[81.04205,27.22921],[81.03877,27.22663],[81.03221,27.22988],[81.02939,27.22544],[81.0269,27.22528],[81.01937,27.22849],[81.01663,27.22838],[81.01589,27.22512],[81.00745,27.2276],[81.0023,27.22678],[80.99682,27.23118],[80.9883,27.23215],[80.96929,27.24026],[80.96753,27.23794],[80.96564,27.21709],[80.95638,27.21928],[80.95401,27.21436],[80.9504,27.21219],[80.94556,27.19974],[80.94156,27.20031],[80.93721,27.19437],[80.93088,27.19999],[80.92705,27.20098],[80.92826,27.19434],[80.92393,27.18703],[80.92491,27.18257],[80.93035,27.18145],[80.93146,27.17527],[80.93403,27.17141],[80.93342,27.16469],[80.93044,27.15822],[80.9402,27.1507],[80.9447,27.14875],[80.94814,27.14969],[80.94927,27.14611],[80.94827,27.14221],[80.95327,27.14081],[80.95918,27.14178],[80.96424,27.14512],[80.97705,27.13951],[80.97721,27.14163],[80.97954,27.14208],[80.98426,27.1382],[80.99023,27.13801],[80.99294,27.14309],[80.99793,27.14764],[81.01153,27.14112],[81.01297,27.14015],[81.01192,27.13717],[81.01474,27.13627],[81.01425,27.13443],[81.01551,27.13377],[81.01425,27.13034],[81.02076,27.12715],[81.02437,27.11896],[81.02285,27.11259],[81.01997,27.11019],[81.01941,27.1058],[81.01747,27.10707],[81.01573,27.10538],[81.03176,27.09758],[81.03425,27.09927],[81.03597,27.09718],[81.03545,27.09194],[81.04361,27.09398],[81.04861,27.09266],[81.04764,27.09122],[81.04909,27.08778],[81.04525,27.0813],[81.04487,27.07782],[81.04203,27.07848],[81.03689,27.07336],[81.0332,27.07425],[81.03092,27.07093],[81.02325,27.07347],[81.01885,27.06832],[81.01208,27.06571],[81.01115,27.06846],[81.00618,27.07159],[80.9964,27.07364],[80.99382,27.07581],[80.98774,27.06721],[80.98346,27.06986],[80.97993,27.06249],[80.97504,27.06114],[80.97203,27.05515],[80.97717,27.04638],[80.9761,27.04355],[80.97826,27.03779],[80.98286,27.04015],[81.00182,27.03783],[80.99983,27.03209],[80.99316,27.02492],[81.00178,27.01988],[80.99584,27.01077],[80.99763,27.00714],[80.9956,27.00327],[80.99641,27.00023],[80.99971,27.00017],[81.00577,26.99645],[81.00751,26.99871],[81.01576,26.99381],[81.01985,26.98897],[81.02449,26.98837],[81.02833,26.98524],[81.0217,26.97664],[81.02984,26.96756],[81.03524,26.96483],[81.04043,26.96928],[81.04365,26.96781],[81.04826,26.96834],[81.05363,26.97406],[81.06361,26.96829],[81.05764,26.96016],[81.05299,26.9593],[81.04839,26.9613],[81.04673,26.95634],[81.0444,26.95725],[81.04237,26.95549],[81.04023,26.946],[81.0428,26.94321],[81.04111,26.94004],[81.05004,26.93638],[81.04897,26.93425],[81.05435,26.93405],[81.0639,26.92835],[81.06308,26.92661],[81.06501,26.92522],[81.06355,26.9228],[81.06872,26.91895],[81.07241,26.91073],[81.07899,26.90957],[81.082,26.91055],[81.0877,26.9174],[81.09537,26.91416],[81.09405,26.90933],[81.09921,26.90213],[81.09793,26.89814],[81.09229,26.89425],[81.09134,26.89117],[81.08872,26.892],[81.08765,26.89014],[81.0984,26.88369],[81.09711,26.87882],[81.09869,26.87897],[81.09713,26.87651],[81.09968,26.87248],[81.09679,26.86953],[81.10047,26.86993],[81.09773,26.86878],[81.09582,26.86343],[81.09097,26.85853],[81.09526,26.85374],[81.0911,26.84534],[81.09198,26.84173],[81.08941,26.83969],[81.08981,26.83603],[81.10022,26.84046],[81.12982,26.83365],[81.13712,26.82738],[81.13862,26.81539],[81.14097,26.81257],[81.14364,26.81165],[81.15395,26.81368],[81.15679,26.81237],[81.16018,26.80709],[81.16673,26.80884],[81.16871,26.80797],[81.15645,26.79828],[81.16026,26.79105],[81.15815,26.77793],[81.15952,26.77529],[81.16506,26.77617],[81.17408,26.78933],[81.18726,26.77951],[81.19154,26.78105],[81.19209,26.79055],[81.1948,26.7924],[81.20558,26.78945],[81.21377,26.78366],[81.21254,26.78124],[81.2075,26.77976],[81.19391,26.7695],[81.18911,26.76176],[81.19812,26.75236],[81.20414,26.74282],[81.20344,26.72906],[81.20796,26.72392],[81.2154,26.72264],[81.2136,26.71547],[81.2175,26.71022],[81.21673,26.70581],[81.21468,26.70264],[81.2094,26.7053],[81.20744,26.70252],[81.20996,26.70087],[81.19574,26.68316],[81.18983,26.67984],[81.1886,26.67661],[81.19055,26.67469],[81.18873,26.67075],[81.18287,26.66248],[81.17061,26.65078],[81.16654,26.64396],[81.17326,26.63569],[81.17261,26.6325],[81.1695,26.62937],[81.18237,26.6214],[81.18231,26.61947],[81.17873,26.61955],[81.17668,26.61768],[81.17708,26.61345],[81.16706,26.60945],[81.16357,26.60612],[81.16276,26.60463],[81.16559,26.60166],[81.16607,26.59548],[81.16787,26.59523],[81.17401,26.60035],[81.17555,26.59858],[81.17717,26.60015],[81.17779,26.59847],[81.18057,26.59835],[81.18357,26.60065],[81.18335,26.60353],[81.18153,26.60283],[81.18,26.60463],[81.18169,26.60664],[81.19019,26.60471],[81.20613,26.59543],[81.21304,26.59445],[81.2136,26.59682],[81.21711,26.59662],[81.21886,26.59895],[81.2266,26.59586],[81.23182,26.58991],[81.24034,26.58889],[81.24716,26.58616],[81.24727,26.58232],[81.2502,26.57976],[81.26248,26.57825],[81.2668,26.57455],[81.27377,26.57462],[81.27729,26.57102],[81.29247,26.56442],[81.29733,26.55431],[81.30132,26.54989],[81.29993,26.54588],[81.31537,26.54072],[81.32325,26.55309],[81.3339,26.55125],[81.34485,26.54408],[81.3457,26.54595],[81.3515,26.546],[81.36514,26.563],[81.36988,26.57245],[81.36855,26.57388],[81.36918,26.57667],[81.37449,26.5803],[81.38175,26.58988],[81.39097,26.58518],[81.39139,26.57563],[81.39812,26.57469],[81.40093,26.57034],[81.40711,26.57225],[81.41603,26.56379],[81.41784,26.56665],[81.42289,26.56596],[81.4265,26.56482],[81.4317,26.56024],[81.43846,26.56697],[81.44605,26.56401],[81.44685,26.56641],[81.4454,26.56861],[81.4571,26.57486],[81.46778,26.56833],[81.46956,26.56265],[81.47356,26.56075],[81.47373,26.55489],[81.47502,26.55465],[81.47594,26.55729],[81.4804,26.55607],[81.48129,26.55164],[81.48519,26.54806],[81.48647,26.54331],[81.49187,26.5434],[81.49498,26.54985],[81.51202,26.55103],[81.51394,26.54987],[81.51411,26.54267],[81.51292,26.54197],[81.5165,26.53833],[81.51572,26.53567],[81.50971,26.53581],[81.50734,26.53157],[81.51033,26.52811],[81.51547,26.53176],[81.52065,26.53083],[81.52769,26.53261],[81.5411,26.52533],[81.54365,26.52535],[81.54699,26.52637],[81.54701,26.52911],[81.54412,26.53498],[81.53955,26.53825],[81.53747,26.543],[81.53552,26.54386],[81.54289,26.55017],[81.54296,26.55432],[81.55176,26.56272],[81.55383,26.57179],[81.54604,26.57409],[81.54442,26.57657],[81.55339,26.59052],[81.56273,26.58863],[81.56407,26.59175],[81.5661,26.59156],[81.56749,26.59927],[81.56562,26.59983],[81.56565,26.6021],[81.57203,26.60738],[81.57455,26.6128],[81.57222,26.61619],[81.56858,26.61726],[81.56428,26.61716],[81.56091,26.61399],[81.55981,26.61604],[81.55746,26.61529],[81.55821,26.61657],[81.55618,26.61669],[81.55899,26.61917],[81.55584,26.62226],[81.55657,26.62325],[81.55475,26.62373],[81.55474,26.62699],[81.55593,26.62802],[81.56077,26.62686],[81.56435,26.63887],[81.55863,26.64335],[81.55925,26.64531],[81.55006,26.64306],[81.54459,26.64511],[81.54313,26.65319],[81.54436,26.66426],[81.54822,26.66867],[81.5633,26.67571],[81.57047,26.68353],[81.57616,26.68633],[81.58055,26.68677],[81.58712,26.68114],[81.59348,26.67888],[81.5997,26.67798],[81.60219,26.6803],[81.60022,26.69288],[81.59438,26.70026],[81.59606,26.70278],[81.60434,26.70654],[81.60441,26.71016],[81.60264,26.71049],[81.60294,26.71423],[81.6014,26.71567],[81.60497,26.72372],[81.59874,26.72227],[81.59854,26.72669],[81.58746,26.72963],[81.58708,26.73425],[81.58092,26.73865],[81.58118,26.74287],[81.57032,26.74897],[81.57593,26.75649],[81.56847,26.76134],[81.5728,26.76715],[81.55981,26.77288],[81.55872,26.77864],[81.55616,26.77868],[81.55262,26.78195],[81.55888,26.78104],[81.56038,26.78416],[81.55331,26.78647],[81.55794,26.78902],[81.56815,26.79103],[81.56473,26.79292],[81.56591,26.79518],[81.56381,26.79549],[81.56315,26.79932],[81.56439,26.80021],[81.56599,26.79733],[81.56918,26.79911],[81.56797,26.80155],[81.57378,26.8039],[81.57438,26.80999],[81.57151,26.81049],[81.57334,26.81295],[81.5756,26.81045],[81.57732,26.81161],[81.57591,26.81832],[81.57441,26.81492],[81.57215,26.81776],[81.57265,26.82073],[81.57541,26.82228],[81.57336,26.826],[81.57625,26.83402],[81.57861,26.83694],[81.58309,26.83667],[81.58665,26.83588],[81.58988,26.83287],[81.59494,26.83806],[81.59842,26.8473],[81.6036,26.85092],[81.60998,26.84549],[81.60881,26.84404],[81.613,26.84167],[81.61054,26.84132],[81.61354,26.83351],[81.61896,26.83257],[81.6239,26.82963],[81.62701,26.83062],[81.64083,26.8227],[81.65039,26.83551],[81.65184,26.835],[81.65483,26.83912],[81.65079,26.84189],[81.65221,26.84528],[81.66751,26.83723],[81.67116,26.84188],[81.68034,26.83745],[81.68739,26.8444],[81.69323,26.84384],[81.69564,26.8464],[81.69895,26.84556],[81.70097,26.84896],[81.71526,26.8416],[81.71797,26.84583],[81.71968,26.84504],[81.72057,26.85195],[81.72284,26.85506],[81.73035,26.85745],[81.73237,26.85602],[81.73645,26.86055],[81.73847,26.86595],[81.74695,26.87381],[81.75495,26.87332],[81.76115,26.87996],[81.74705,26.89102],[81.73659,26.90603],[81.73104,26.90935],[81.73469,26.9134],[81.73955,26.90887],[81.73142,26.92036],[81.73074,26.91738],[81.72556,26.91938],[81.72285,26.92602],[81.72558,26.93075],[81.72665,26.93942],[81.72844,26.93901],[81.72869,26.94176],[81.73269,26.9471],[81.73739,26.95004],[81.73305,26.95611],[81.72847,26.96731],[81.71933,26.97218],[81.71754,26.9637],[81.7134,26.96428],[81.70101,26.95783],[81.69889,26.96134],[81.69058,26.96047],[81.68754,26.95692],[81.68884,26.96153],[81.6839,26.96712],[81.68208,26.96588],[81.67432,26.97083],[81.65119,26.98008],[81.65401,26.99698],[81.64959,26.9983],[81.64786,26.99713],[81.64724,27.00027],[81.63791,27.00027],[81.63599,27.00788],[81.62604,27.01078],[81.62819,27.01854],[81.61905,27.01888],[81.62019,27.02191],[81.61877,27.03204],[81.61319,27.03119],[81.61078,27.03709],[81.60696,27.03386],[81.59937,27.0358],[81.59251,27.03146],[81.59116,27.03334],[81.58943,27.03178],[81.58857,27.04011],[81.58435,27.0398],[81.57636,27.04528],[81.568,27.04794],[81.56066,27.05354],[81.54107,27.05202],[81.5402,27.05621],[81.52026,27.07318],[81.51486,27.0843],[81.50491,27.05905],[81.49329,27.06391],[81.48799,27.07135],[81.47871,27.07552],[81.48046,27.09555],[81.47629,27.1081],[81.4559,27.11876],[81.44791,27.12901],[81.4439,27.14117],[81.43995,27.16159],[81.43679,27.17868],[81.43788,27.18136],[81.45415,27.18717],[81.45817,27.19042],[81.45565,27.19896],[81.44806,27.21245],[81.43534,27.22131],[81.43611,27.25021],[81.43296,27.25926],[81.43253,27.26623],[81.43322,27.27127],[81.43775,27.28107],[81.43675,27.29665],[81.43863,27.31303],[81.43222,27.32409],[81.41259,27.33419],[81.3953,27.34078],[81.39447,27.33451],[81.40014,27.32899],[81.39977,27.32583],[81.39302,27.3248],[81.38976,27.31958],[81.38415,27.3194],[81.37986,27.31616],[81.38904,27.31566],[81.39125,27.30928],[81.38829,27.30819],[81.38214,27.31216],[81.3836,27.30399],[81.38224,27.30211],[81.38257,27.2948],[81.37711,27.29564],[81.37342,27.29295],[81.37167,27.28265],[81.38129,27.2776],[81.37275,27.27325],[81.3769,27.26741],[81.37528,27.26626],[81.37041,27.26751],[81.36386,27.26523],[81.35943,27.25769],[81.34799,27.25734],[81.34113,27.25375],[81.33824,27.25882],[81.33538,27.27169],[81.32589,27.27303],[81.32106,27.27044],[81.31487,27.27858],[81.3218,27.29708],[81.31778,27.29896],[81.31366,27.29538],[81.30962,27.29646],[81.30554,27.29995],[81.30859,27.30617],[81.31276,27.30949],[81.31556,27.32048],[81.30599,27.32824],[81.30242,27.32918],[81.2969,27.33591],[81.29482,27.34248],[81.29854,27.3478],[81.29481,27.35383]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"13","area_level":"District","area_name":"Srinagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.87666,34.20724],[74.87288,34.21201],[74.87065,34.20594],[74.86656,34.20512],[74.85768,34.19957],[74.85539,34.18226],[74.84826,34.17768],[74.82522,34.17526],[74.81755,34.18322],[74.80711,34.18286],[74.80946,34.17578],[74.81758,34.16632],[74.81759,34.16289],[74.80414,34.16356],[74.79903,34.17428],[74.79519,34.17553],[74.77103,34.17583],[74.7654,34.17422],[74.75103,34.16061],[74.74365,34.16065],[74.73479,34.16569],[74.72379,34.16557],[74.70973,34.17626],[74.69316,34.18561],[74.67592,34.18408],[74.68389,34.17565],[74.69485,34.17283],[74.69688,34.16502],[74.70115,34.15964],[74.70235,34.15545],[74.69275,34.15251],[74.67563,34.13219],[74.67471,34.12868],[74.67683,34.13046],[74.68212,34.12898],[74.69174,34.12379],[74.68605,34.11903],[74.68565,34.11145],[74.67511,34.10738],[74.67972,34.10441],[74.68167,34.10584],[74.68449,34.10506],[74.68169,34.10066],[74.68621,34.10046],[74.68545,34.09741],[74.6881,34.09479],[74.70094,34.1],[74.70314,34.10383],[74.70756,34.10498],[74.70542,34.10738],[74.70627,34.10838],[74.71154,34.1071],[74.70836,34.10046],[74.71016,34.09535],[74.71759,34.09346],[74.71806,34.09496],[74.72043,34.0953],[74.74356,34.09092],[74.76582,34.0741],[74.7715,34.07193],[74.76197,34.06777],[74.75869,34.06036],[74.76662,34.05548],[74.76766,34.04952],[74.77145,34.04752],[74.77368,34.04378],[74.77254,34.04103],[74.77968,34.03976],[74.78215,34.03487],[74.77688,34.02958],[74.79549,34.02041],[74.79777,34.02027],[74.79867,34.02227],[74.79343,34.02916],[74.80207,34.02847],[74.80024,34.0368],[74.79856,34.03835],[74.79987,34.0413],[74.80838,34.04466],[74.83223,34.04544],[74.8214,34.03168],[74.82668,34.02874],[74.83033,34.0306],[74.83574,34.03741],[74.83672,34.04354],[74.84676,34.05175],[74.85715,34.04749],[74.8618,34.04079],[74.8712,34.03534],[74.87679,34.03549],[74.88334,34.03878],[74.90144,34.0336],[74.91557,34.03715],[74.91472,34.03279],[74.9167,34.02939],[74.92205,34.03189],[74.92278,34.03644],[74.92711,34.03775],[74.92935,34.03381],[74.92882,34.03099],[74.93093,34.03087],[74.93115,34.02877],[74.94322,34.02683],[74.94553,34.02875],[74.95137,34.0294],[74.95204,34.03208],[74.95496,34.03426],[74.95582,34.0393],[74.95886,34.0402],[74.9576,34.04139],[74.95992,34.04329],[74.95904,34.04596],[74.96509,34.05002],[74.97003,34.04872],[74.97304,34.0523],[74.97908,34.05231],[74.97505,34.05446],[74.97702,34.05731],[74.97704,34.06498],[74.97984,34.06854],[74.99058,34.07535],[75.00136,34.07946],[75.00174,34.08171],[75.0,34.08285],[74.99555,34.08192],[74.99138,34.08573],[74.99087,34.09113],[74.97936,34.09815],[74.97632,34.09778],[74.97836,34.09056],[74.98205,34.08733],[74.97975,34.08168],[74.97333,34.0808],[74.9717,34.07667],[74.96316,34.07702],[74.95834,34.07222],[74.95488,34.07448],[74.94989,34.07427],[74.94947,34.07879],[74.94788,34.0784],[74.94644,34.0752],[74.9445,34.07652],[74.94103,34.06946],[74.93576,34.06576],[74.93274,34.06593],[74.93196,34.06913],[74.9305,34.06916],[74.92987,34.06534],[74.92739,34.06249],[74.92153,34.06093],[74.91669,34.06212],[74.91903,34.06102],[74.92293,34.05465],[74.91629,34.05095],[74.89786,34.04603],[74.89641,34.04887],[74.89435,34.04917],[74.89077,34.04768],[74.88817,34.04427],[74.88398,34.04332],[74.87543,34.04481],[74.87165,34.04886],[74.8667,34.05098],[74.86958,34.05423],[74.86862,34.057],[74.85983,34.07005],[74.86196,34.07437],[74.86737,34.07372],[74.86838,34.08083],[74.87093,34.08264],[74.8784,34.08376],[74.88178,34.07972],[74.88493,34.07978],[74.89041,34.08662],[74.88828,34.09021],[74.88863,34.09487],[74.89186,34.09512],[74.89592,34.09302],[74.9003,34.09509],[74.91031,34.0921],[74.91189,34.09321],[74.90756,34.09773],[74.90294,34.09872],[74.90181,34.104],[74.89798,34.1061],[74.89353,34.11867],[74.89109,34.11926],[74.89497,34.12161],[74.8891,34.12912],[74.8894,34.13073],[74.89252,34.13201],[74.89266,34.13596],[74.88813,34.13961],[74.88806,34.14732],[74.9007,34.15221],[74.90502,34.15782],[74.91654,34.15704],[74.91816,34.15348],[74.92402,34.15553],[74.92659,34.15265],[74.93058,34.15371],[74.9338,34.15882],[74.93211,34.16192],[74.92593,34.16107],[74.92324,34.16835],[74.92373,34.17341],[74.91188,34.17354],[74.91039,34.17566],[74.91706,34.17913],[74.92021,34.17802],[74.92374,34.17894],[74.9248,34.18239],[74.92783,34.18402],[74.92034,34.18499],[74.91652,34.19005],[74.92046,34.19084],[74.92204,34.1928],[74.92343,34.197],[74.92625,34.19919],[74.92645,34.2035],[74.92293,34.20587],[74.92025,34.20411],[74.92049,34.20043],[74.91742,34.19961],[74.91587,34.20267],[74.91438,34.19907],[74.91155,34.19778],[74.90917,34.19899],[74.90526,34.19336],[74.89638,34.19121],[74.89094,34.19323],[74.88457,34.19038],[74.87815,34.19023],[74.8746,34.19511],[74.87602,34.19763],[74.87496,34.20056],[74.87823,34.20311],[74.88412,34.2038],[74.88152,34.20631],[74.8813,34.20874],[74.87666,34.20724]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"130","area_level":"District","area_name":"Bareilly","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.42221,28.90033],[79.41749,28.90119],[79.41622,28.89983],[79.41832,28.89626],[79.41719,28.8928],[79.41845,28.88758],[79.39808,28.89557],[79.39689,28.89392],[79.38785,28.89593],[79.38486,28.89503],[79.38569,28.88935],[79.38443,28.88612],[79.39117,28.88201],[79.39357,28.87816],[79.39705,28.87593],[79.39985,28.87543],[79.40062,28.87698],[79.40539,28.8752],[79.40864,28.87319],[79.40886,28.87138],[79.41457,28.87017],[79.41417,28.86657],[79.4118,28.86471],[79.40546,28.8658],[79.40146,28.86212],[79.39639,28.86338],[79.3939,28.8622],[79.38873,28.86419],[79.38024,28.85966],[79.38091,28.85614],[79.38208,28.85673],[79.38423,28.85434],[79.39247,28.85127],[79.39906,28.85801],[79.40999,28.853],[79.4091,28.84906],[79.41059,28.84666],[79.40829,28.84179],[79.40614,28.84257],[79.40339,28.84026],[79.40108,28.84136],[79.39938,28.83791],[79.40152,28.83762],[79.40111,28.83609],[79.40321,28.83706],[79.40421,28.83272],[79.39793,28.83256],[79.39792,28.83454],[79.394,28.83246],[79.39033,28.83375],[79.38994,28.83057],[79.38716,28.83153],[79.38953,28.82874],[79.38821,28.82721],[79.37949,28.83101],[79.38121,28.83278],[79.37868,28.83347],[79.37893,28.83656],[79.36843,28.83912],[79.36698,28.83911],[79.36747,28.83693],[79.36446,28.8333],[79.36458,28.82827],[79.37174,28.82317],[79.36945,28.82135],[79.3706,28.81526],[79.37986,28.81072],[79.37828,28.80915],[79.3794,28.80703],[79.375,28.80683],[79.37588,28.80395],[79.37986,28.8023],[79.37679,28.79986],[79.37893,28.79857],[79.37234,28.78862],[79.38652,28.78342],[79.38744,28.77793],[79.38358,28.77454],[79.38162,28.77029],[79.37377,28.77293],[79.36843,28.77203],[79.36251,28.77491],[79.35927,28.77951],[79.35187,28.78464],[79.34556,28.77575],[79.35966,28.76812],[79.36545,28.76291],[79.36262,28.75778],[79.36045,28.75826],[79.35983,28.75247],[79.34889,28.74861],[79.34111,28.75052],[79.34124,28.74555],[79.33982,28.74659],[79.33809,28.74216],[79.33385,28.74006],[79.33136,28.74335],[79.32504,28.7455],[79.32001,28.73904],[79.31134,28.74343],[79.30896,28.74197],[79.30712,28.74314],[79.29918,28.73186],[79.29738,28.73275],[79.29552,28.73116],[79.29681,28.72675],[79.29553,28.72081],[79.29247,28.72091],[79.28822,28.71404],[79.28819,28.71086],[79.28595,28.71006],[79.28634,28.7032],[79.28039,28.6982],[79.27647,28.69088],[79.2766,28.68775],[79.27253,28.68892],[79.26616,28.6781],[79.26052,28.67319],[79.25484,28.66459],[79.25285,28.66496],[79.25175,28.66307],[79.25,28.66351],[79.24601,28.6609],[79.24224,28.66258],[79.23945,28.66091],[79.23588,28.6619],[79.23412,28.65931],[79.23344,28.65771],[79.23795,28.65518],[79.23786,28.65187],[79.2295,28.63765],[79.24115,28.63312],[79.23883,28.63017],[79.24237,28.62727],[79.23775,28.62336],[79.23373,28.61577],[79.2288,28.618],[79.22784,28.61619],[79.22352,28.6165],[79.22104,28.61423],[79.2191,28.61032],[79.22293,28.60918],[79.21474,28.60119],[79.21764,28.59691],[79.21265,28.59519],[79.21245,28.58654],[79.2148,28.58559],[79.21127,28.57923],[79.2055,28.57499],[79.205,28.57178],[79.19859,28.57346],[79.193,28.57066],[79.19074,28.57258],[79.19097,28.576],[79.185,28.57514],[79.18121,28.56762],[79.17637,28.56738],[79.17339,28.56171],[79.16772,28.56185],[79.16345,28.55913],[79.16023,28.56061],[79.15849,28.55775],[79.16174,28.55358],[79.16074,28.55064],[79.16292,28.54835],[79.1614,28.54866],[79.15568,28.5424],[79.14752,28.53841],[79.14577,28.53141],[79.13061,28.51843],[79.13007,28.51517],[79.12465,28.51779],[79.116,28.51276],[79.11217,28.51389],[79.10455,28.50819],[79.10005,28.51177],[79.09029,28.51305],[79.07507,28.50821],[79.06961,28.5029],[79.07317,28.50194],[79.07139,28.4988],[79.07517,28.49491],[79.07286,28.49223],[79.07402,28.48963],[79.06966,28.4851],[79.0656,28.48719],[79.06288,28.48351],[79.05769,28.48727],[79.05534,28.4878],[79.05088,28.48532],[79.04771,28.48841],[79.04647,28.48725],[79.04475,28.48858],[79.0419,28.48611],[79.0444,28.48356],[79.04734,28.48308],[79.04958,28.47936],[79.04847,28.47862],[79.05252,28.47554],[79.04932,28.47234],[79.05033,28.47096],[79.04496,28.46624],[79.04336,28.46756],[79.03702,28.46714],[79.03115,28.46171],[79.03406,28.45166],[79.03018,28.44624],[79.02652,28.44798],[79.01757,28.43783],[79.00974,28.44252],[79.00427,28.4369],[79.0028,28.43176],[78.99965,28.42851],[78.9977,28.43095],[78.99155,28.4334],[78.98907,28.43102],[78.98296,28.43408],[78.98274,28.43619],[78.96968,28.42201],[78.9695,28.41916],[78.9834,28.41093],[78.98668,28.41197],[78.98736,28.41382],[78.98734,28.41238],[78.99013,28.41321],[78.99183,28.41142],[78.99591,28.41122],[78.99752,28.40876],[78.99616,28.40544],[78.99932,28.40544],[78.99846,28.39991],[79.00031,28.39937],[79.00028,28.3977],[79.00346,28.39756],[79.00438,28.3954],[79.00318,28.39403],[79.0071,28.39028],[79.00896,28.39033],[79.0095,28.3928],[79.0132,28.39165],[79.01262,28.39288],[79.01614,28.39387],[79.01402,28.39528],[79.01761,28.39479],[79.01692,28.39133],[79.01838,28.39171],[79.01985,28.38773],[79.02079,28.39297],[79.02289,28.39072],[79.02707,28.393],[79.02659,28.39414],[79.03766,28.39005],[79.03874,28.39092],[79.04039,28.3892],[79.04293,28.39081],[79.04316,28.38846],[79.04477,28.38921],[79.04559,28.38625],[79.05025,28.38543],[79.05083,28.38294],[79.05469,28.38516],[79.05655,28.38311],[79.05724,28.38445],[79.05921,28.38316],[79.06126,28.38023],[79.06125,28.3785],[79.05915,28.37872],[79.06087,28.37372],[79.06378,28.37478],[79.06769,28.37164],[79.06574,28.37164],[79.066,28.36973],[79.0626,28.36601],[79.06367,28.36269],[79.06157,28.36057],[79.0628,28.35697],[79.05719,28.35219],[79.05823,28.35181],[79.05694,28.34878],[79.06149,28.34397],[79.06227,28.33796],[79.06065,28.33236],[79.06723,28.32839],[79.07242,28.33236],[79.07609,28.33225],[79.08414,28.32466],[79.07725,28.31369],[79.07908,28.31072],[79.08097,28.31101],[79.08667,28.307],[79.08541,28.30154],[79.08848,28.29935],[79.0864,28.29237],[79.08263,28.28849],[79.08065,28.2889],[79.07772,28.28355],[79.08154,28.27785],[79.07768,28.27339],[79.08019,28.27153],[79.07825,28.2663],[79.08072,28.26129],[79.08668,28.25627],[79.09554,28.2505],[79.09748,28.25182],[79.10161,28.24956],[79.10138,28.24823],[79.10871,28.24548],[79.11423,28.23861],[79.10879,28.23404],[79.11312,28.23025],[79.11335,28.22704],[79.10116,28.22053],[79.10275,28.21763],[79.10181,28.21605],[79.11052,28.21101],[79.11202,28.20181],[79.11424,28.20121],[79.11564,28.20361],[79.12287,28.20203],[79.1293,28.20481],[79.13976,28.19953],[79.13957,28.19295],[79.14296,28.19015],[79.14925,28.19502],[79.15382,28.19607],[79.15674,28.19414],[79.15896,28.19495],[79.16179,28.19125],[79.16558,28.19252],[79.1766,28.18641],[79.18114,28.19144],[79.182,28.1974],[79.18621,28.20347],[79.20594,28.20298],[79.21058,28.19929],[79.22128,28.19732],[79.22816,28.1994],[79.23367,28.19358],[79.23398,28.19045],[79.23839,28.18885],[79.2419,28.19083],[79.24033,28.18814],[79.24187,28.18469],[79.24347,28.18626],[79.24742,28.18462],[79.25165,28.18598],[79.24916,28.18403],[79.25475,28.18293],[79.25546,28.18018],[79.25815,28.17898],[79.258,28.17389],[79.2601,28.17757],[79.26245,28.17376],[79.26578,28.17436],[79.26747,28.17914],[79.27506,28.17918],[79.28186,28.18466],[79.29008,28.18265],[79.29524,28.18491],[79.29803,28.18099],[79.30303,28.18044],[79.30816,28.18628],[79.31066,28.18683],[79.32182,28.18125],[79.32456,28.17837],[79.32367,28.17131],[79.31836,28.1654],[79.32145,28.16376],[79.3235,28.16506],[79.33076,28.16027],[79.33695,28.1706],[79.34163,28.17041],[79.34661,28.17332],[79.35158,28.16643],[79.35881,28.16752],[79.36046,28.16874],[79.361,28.17263],[79.36519,28.1756],[79.3736,28.17344],[79.3751,28.17567],[79.37374,28.17991],[79.38849,28.17888],[79.38956,28.17622],[79.39336,28.1766],[79.40342,28.16777],[79.41415,28.17495],[79.41912,28.17322],[79.42415,28.1737],[79.42485,28.1657],[79.42758,28.16061],[79.4473,28.15498],[79.45116,28.1489],[79.45346,28.14009],[79.46704,28.13041],[79.47571,28.12934],[79.48742,28.12406],[79.49533,28.12275],[79.50521,28.10439],[79.50307,28.09289],[79.50782,28.08554],[79.51004,28.0759],[79.50692,28.06464],[79.50519,28.06088],[79.49661,28.05366],[79.4876,28.05245],[79.48808,28.04648],[79.48544,28.04559],[79.48732,28.03383],[79.49131,28.03238],[79.49142,28.0277],[79.49774,28.02487],[79.50418,28.01535],[79.5198,28.03251],[79.51727,28.03621],[79.51408,28.03569],[79.51028,28.0411],[79.51296,28.04234],[79.51706,28.03841],[79.5182,28.04216],[79.52455,28.0475],[79.53172,28.05769],[79.53491,28.0575],[79.53948,28.05454],[79.54157,28.05601],[79.55125,28.04792],[79.55361,28.04987],[79.55076,28.05196],[79.55361,28.05644],[79.55333,28.05949],[79.55896,28.06551],[79.56167,28.06748],[79.57501,28.05896],[79.57478,28.0603],[79.58255,28.06815],[79.5874,28.0657],[79.59497,28.07206],[79.59372,28.07305],[79.595,28.0741],[79.5997,28.07556],[79.59902,28.07987],[79.59676,28.08149],[79.60139,28.08599],[79.60978,28.07859],[79.61236,28.08038],[79.62322,28.07227],[79.62864,28.07672],[79.6373,28.07057],[79.64241,28.06972],[79.6442,28.07043],[79.64643,28.07626],[79.65268,28.07668],[79.65321,28.08088],[79.64883,28.07917],[79.64703,28.0807],[79.6511,28.08459],[79.652,28.09147],[79.65699,28.0924],[79.65662,28.09354],[79.64954,28.09441],[79.6544,28.09668],[79.65591,28.09984],[79.6483,28.10199],[79.64593,28.1065],[79.65704,28.10973],[79.65857,28.11369],[79.65653,28.1165],[79.649,28.11384],[79.64654,28.11441],[79.64673,28.12001],[79.64964,28.12449],[79.64436,28.12388],[79.64229,28.12509],[79.64269,28.1327],[79.63898,28.13392],[79.64225,28.13625],[79.64264,28.13891],[79.6378,28.14119],[79.63566,28.14411],[79.64107,28.14675],[79.64273,28.14514],[79.64593,28.14557],[79.64853,28.14772],[79.64554,28.14885],[79.64695,28.15158],[79.64336,28.15236],[79.65029,28.15859],[79.65131,28.15731],[79.65227,28.15934],[79.65001,28.16365],[79.65256,28.16898],[79.65051,28.16998],[79.65073,28.17155],[79.65271,28.17295],[79.6542,28.17165],[79.65541,28.17691],[79.65928,28.17952],[79.66338,28.18103],[79.66811,28.18037],[79.66599,28.18398],[79.66731,28.18482],[79.65841,28.19074],[79.6646,28.19467],[79.66002,28.2],[79.65814,28.19978],[79.66985,28.21075],[79.67416,28.21056],[79.68558,28.20402],[79.6906,28.20524],[79.69291,28.20746],[79.6988,28.21681],[79.69462,28.22333],[79.68937,28.22451],[79.6984,28.2379],[79.70209,28.23546],[79.71229,28.23959],[79.70491,28.24735],[79.69832,28.25163],[79.7018,28.25652],[79.709,28.25286],[79.71317,28.2562],[79.71362,28.26155],[79.71648,28.26464],[79.71949,28.26117],[79.72006,28.25149],[79.7314,28.25283],[79.73963,28.25163],[79.74153,28.25541],[79.7375,28.26408],[79.73702,28.27099],[79.73869,28.2773],[79.7336,28.28142],[79.71671,28.28766],[79.71529,28.29014],[79.7165,28.29316],[79.70879,28.29771],[79.7034,28.29846],[79.70168,28.30325],[79.70338,28.30726],[79.69706,28.30957],[79.69921,28.31363],[79.70505,28.31634],[79.70925,28.32076],[79.71346,28.329],[79.71653,28.32838],[79.72059,28.33817],[79.7249,28.33977],[79.72597,28.34391],[79.72147,28.34933],[79.72364,28.35182],[79.72753,28.35272],[79.73145,28.35944],[79.73337,28.36762],[79.72424,28.37131],[79.71715,28.36843],[79.71151,28.37361],[79.71216,28.38081],[79.69627,28.38554],[79.70418,28.3932],[79.70653,28.39156],[79.71388,28.39406],[79.71954,28.40096],[79.7266,28.40635],[79.72578,28.41234],[79.72817,28.41416],[79.7398,28.41138],[79.73739,28.40621],[79.74609,28.40484],[79.74763,28.40312],[79.75121,28.40294],[79.75615,28.40901],[79.75771,28.41374],[79.75384,28.42144],[79.75287,28.44226],[79.74688,28.43965],[79.747,28.44742],[79.74999,28.45504],[79.75882,28.458],[79.76279,28.45781],[79.76244,28.45429],[79.76768,28.45056],[79.77339,28.43938],[79.76812,28.436],[79.76996,28.43372],[79.77429,28.43466],[79.77795,28.43306],[79.78529,28.43807],[79.78952,28.43813],[79.79143,28.44362],[79.78524,28.45298],[79.77741,28.45784],[79.77692,28.46102],[79.77543,28.4612],[79.7758,28.47426],[79.78075,28.4763],[79.78112,28.48101],[79.78398,28.48661],[79.78131,28.49487],[79.78268,28.50191],[79.78151,28.50453],[79.76337,28.50774],[79.75499,28.5124],[79.75264,28.5154],[79.75439,28.51949],[79.75201,28.52159],[79.75453,28.52804],[79.75154,28.53021],[79.74362,28.52868],[79.73728,28.53003],[79.73671,28.52672],[79.7326,28.52297],[79.72887,28.52308],[79.7284,28.51839],[79.73647,28.51276],[79.7355,28.51175],[79.71308,28.52245],[79.71368,28.52543],[79.70826,28.52566],[79.70833,28.52816],[79.71084,28.52702],[79.713,28.52968],[79.7102,28.53177],[79.70848,28.53099],[79.7076,28.53343],[79.7154,28.53246],[79.71408,28.5332],[79.71412,28.538],[79.71639,28.53894],[79.71634,28.54072],[79.72094,28.54561],[79.72027,28.54736],[79.72325,28.55143],[79.72302,28.5549],[79.7186,28.55616],[79.71441,28.5525],[79.70721,28.55237],[79.70378,28.54601],[79.69788,28.54769],[79.69505,28.54511],[79.69005,28.54745],[79.68707,28.55775],[79.68918,28.55813],[79.68949,28.5618],[79.69453,28.57143],[79.70362,28.56977],[79.70558,28.57164],[79.70553,28.57375],[79.70149,28.57502],[79.70325,28.57623],[79.70647,28.57419],[79.70404,28.57792],[79.70909,28.57829],[79.70701,28.57866],[79.70717,28.58198],[79.70596,28.58037],[79.70441,28.5819],[79.70779,28.58439],[79.69829,28.5831],[79.69658,28.58057],[79.69259,28.58312],[79.69035,28.58149],[79.67696,28.58657],[79.68161,28.59663],[79.6751,28.60071],[79.67654,28.60339],[79.67406,28.60572],[79.66964,28.60687],[79.66693,28.60279],[79.6601,28.6046],[79.65584,28.5993],[79.64779,28.59978],[79.64042,28.59502],[79.63215,28.59977],[79.63307,28.60909],[79.62695,28.60994],[79.62547,28.61208],[79.62569,28.61678],[79.62361,28.62008],[79.62719,28.62399],[79.62795,28.6279],[79.63702,28.63375],[79.62746,28.63759],[79.62633,28.63992],[79.62237,28.6406],[79.62181,28.64241],[79.62164,28.64441],[79.62317,28.64442],[79.62576,28.64838],[79.62194,28.64983],[79.62529,28.65678],[79.63108,28.66199],[79.63423,28.67017],[79.62667,28.67651],[79.62584,28.67996],[79.62776,28.68372],[79.62725,28.68633],[79.63316,28.68857],[79.64047,28.69571],[79.64422,28.70149],[79.6435,28.70633],[79.65204,28.71679],[79.65376,28.71622],[79.65554,28.72006],[79.66089,28.71787],[79.66323,28.72042],[79.66597,28.71899],[79.66877,28.72153],[79.6736,28.71953],[79.67635,28.72588],[79.67913,28.72676],[79.67911,28.73006],[79.68234,28.72738],[79.69026,28.74046],[79.68651,28.74231],[79.68774,28.74613],[79.68551,28.7482],[79.68599,28.75045],[79.68956,28.75324],[79.6745,28.75904],[79.67223,28.76222],[79.67369,28.76548],[79.6676,28.76597],[79.66938,28.76908],[79.66771,28.77225],[79.67253,28.77689],[79.67105,28.78204],[79.67214,28.78408],[79.67406,28.78386],[79.67864,28.792],[79.6732,28.79535],[79.67398,28.80551],[79.67582,28.80578],[79.6746,28.80705],[79.67654,28.80863],[79.67533,28.81249],[79.67728,28.81298],[79.67802,28.81789],[79.67386,28.82329],[79.67476,28.82826],[79.67289,28.82875],[79.67369,28.83019],[79.67243,28.83095],[79.67389,28.8328],[79.66864,28.83834],[79.67746,28.84922],[79.6804,28.84792],[79.68263,28.84892],[79.68231,28.85347],[79.68367,28.85532],[79.67738,28.85927],[79.67212,28.85801],[79.66744,28.8597],[79.66342,28.86194],[79.66571,28.86557],[79.65605,28.86977],[79.65557,28.86841],[79.65349,28.86921],[79.64745,28.86702],[79.64486,28.86343],[79.63601,28.86681],[79.63092,28.86112],[79.62613,28.86662],[79.62138,28.86431],[79.61331,28.85283],[79.6039,28.85683],[79.60339,28.85472],[79.59712,28.85125],[79.5936,28.85204],[79.59155,28.8495],[79.58751,28.84999],[79.58436,28.84627],[79.57565,28.85045],[79.57349,28.85465],[79.58097,28.86616],[79.58019,28.87115],[79.58427,28.87918],[79.57835,28.88349],[79.57917,28.88618],[79.57755,28.88864],[79.57124,28.88646],[79.56999,28.88775],[79.57062,28.89253],[79.55648,28.89926],[79.55275,28.8958],[79.55494,28.89376],[79.54945,28.89008],[79.54791,28.89097],[79.54595,28.88558],[79.54219,28.88453],[79.54046,28.88193],[79.54166,28.88043],[79.53716,28.87694],[79.53304,28.86971],[79.52351,28.86712],[79.52178,28.86474],[79.5114,28.86722],[79.50992,28.86453],[79.49714,28.87287],[79.47873,28.87114],[79.47892,28.86728],[79.47722,28.86457],[79.47057,28.86541],[79.46611,28.86777],[79.46194,28.86676],[79.45164,28.87163],[79.44979,28.87079],[79.45019,28.86772],[79.44623,28.86776],[79.44518,28.86383],[79.44046,28.86174],[79.42543,28.86653],[79.42501,28.87366],[79.42787,28.87653],[79.43099,28.8868],[79.42773,28.89298],[79.42294,28.89349],[79.42466,28.89743],[79.42221,28.90033]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"131","area_level":"District","area_name":"Basti","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.65941,27.1148],[82.66041,27.12371],[82.65813,27.12404],[82.6399,27.11584],[82.63892,27.1087],[82.6367,27.105],[82.63076,27.10695],[82.61982,27.10644],[82.61636,27.1005],[82.61313,27.09924],[82.60529,27.10013],[82.60163,27.10233],[82.59897,27.10676],[82.58777,27.1062],[82.57888,27.10148],[82.57255,27.09087],[82.55906,27.082],[82.56343,27.07663],[82.56031,27.07665],[82.55931,27.07428],[82.56749,27.07201],[82.56612,27.06941],[82.56408,27.06956],[82.56752,27.06343],[82.56507,27.06119],[82.56509,27.06377],[82.56025,27.06323],[82.55869,27.05648],[82.56061,27.05319],[82.55795,27.05377],[82.55445,27.05192],[82.5544,27.0496],[82.55987,27.04851],[82.56182,27.04503],[82.56539,27.04632],[82.56117,27.03884],[82.56372,27.03873],[82.56491,27.04049],[82.56904,27.03721],[82.57196,27.03089],[82.57187,27.02846],[82.56867,27.02945],[82.56942,27.0247],[82.56673,27.02375],[82.56832,27.02184],[82.5668,27.02072],[82.56949,27.01969],[82.56856,27.0173],[82.57002,27.01446],[82.57171,27.01435],[82.57106,27.01285],[82.57384,27.0139],[82.57278,27.01653],[82.57592,27.01649],[82.57583,27.01405],[82.57761,27.01376],[82.5807,27.01948],[82.58158,27.01745],[82.58029,27.01638],[82.58677,27.01462],[82.5879,27.0118],[82.58974,27.01169],[82.58888,27.00987],[82.59373,27.01105],[82.59574,27.00946],[82.59692,27.01071],[82.60138,27.00729],[82.60499,27.00682],[82.60653,27.00392],[82.60835,27.00497],[82.60934,27.00338],[82.61029,27.00519],[82.61231,27.00375],[82.61042,27.00312],[82.61121,27.00203],[82.61389,27.00224],[82.6136,27.00026],[82.6084,26.99856],[82.58414,27.00049],[82.5817,26.9973],[82.58332,26.99659],[82.58314,26.9921],[82.57892,26.99306],[82.57476,26.99133],[82.56973,26.98593],[82.56767,26.98571],[82.56589,26.98852],[82.56315,26.98668],[82.56223,26.98456],[82.56461,26.97499],[82.56246,26.97077],[82.56329,26.9669],[82.56204,26.96488],[82.54823,26.96159],[82.54849,26.95894],[82.54539,26.9543],[82.54296,26.95429],[82.53916,26.95045],[82.52796,26.9499],[82.52026,26.95167],[82.51112,26.94684],[82.51002,26.94323],[82.50615,26.94064],[82.50008,26.93016],[82.50084,26.92027],[82.49837,26.92032],[82.49928,26.91937],[82.49674,26.91397],[82.49021,26.90882],[82.48834,26.90341],[82.47903,26.90338],[82.47481,26.9098],[82.4556,26.92196],[82.45264,26.92435],[82.45282,26.92638],[82.44422,26.93162],[82.43948,26.92692],[82.43515,26.92696],[82.41262,26.93891],[82.41214,26.93699],[82.41043,26.93713],[82.40615,26.94176],[82.38829,26.94944],[82.38631,26.94658],[82.38677,26.94072],[82.38007,26.93998],[82.37817,26.93581],[82.37014,26.93725],[82.3677,26.93186],[82.36425,26.9331],[82.36167,26.93076],[82.3568,26.93291],[82.35549,26.93147],[82.35343,26.93216],[82.33987,26.94533],[82.33272,26.94927],[82.33227,26.95236],[82.32716,26.95513],[82.32699,26.96761],[82.31603,26.97833],[82.3138,26.97451],[82.31465,26.97044],[82.31195,26.96862],[82.30234,26.96699],[82.30286,26.96422],[82.29793,26.96294],[82.29879,26.9613],[82.29651,26.96049],[82.29552,26.95738],[82.28999,26.95194],[82.29089,26.94904],[82.28513,26.94796],[82.28232,26.94607],[82.28285,26.94447],[82.27507,26.94313],[82.27588,26.93987],[82.27421,26.93606],[82.26329,26.9421],[82.25843,26.94234],[82.25165,26.93436],[82.24392,26.93386],[82.24099,26.93187],[82.23386,26.91982],[82.23877,26.91868],[82.2371,26.91464],[82.24715,26.90518],[82.25007,26.89523],[82.23794,26.87352],[82.23189,26.87159],[82.23047,26.86809],[82.23207,26.86216],[82.23798,26.8597],[82.23641,26.85829],[82.24041,26.85481],[82.23664,26.85315],[82.24373,26.83654],[82.24715,26.83415],[82.24582,26.8324],[82.24705,26.82766],[82.25096,26.82518],[82.25586,26.82619],[82.25841,26.8197],[82.25281,26.8112],[82.24688,26.81088],[82.23805,26.81865],[82.22867,26.81223],[82.23961,26.80937],[82.24507,26.80395],[82.254,26.78614],[82.26525,26.77365],[82.26579,26.76502],[82.27444,26.74553],[82.28206,26.73783],[82.31691,26.72283],[82.32591,26.70925],[82.36435,26.67155],[82.38138,26.65748],[82.39217,26.65225],[82.42653,26.64192],[82.44509,26.63941],[82.45197,26.64071],[82.4628,26.65215],[82.47247,26.65267],[82.47542,26.65098],[82.47952,26.64493],[82.49633,26.63753],[82.54334,26.62455],[82.56996,26.61099],[82.57711,26.60429],[82.59221,26.60189],[82.59685,26.60281],[82.6262,26.60065],[82.63963,26.60149],[82.64917,26.60682],[82.66289,26.60443],[82.66627,26.5963],[82.68433,26.58393],[82.68514,26.57431],[82.69339,26.56851],[82.70447,26.56592],[82.70837,26.55684],[82.7122,26.55462],[82.72544,26.55301],[82.74639,26.5597],[82.7527,26.55681],[82.75753,26.5572],[82.77376,26.56442],[82.79017,26.56916],[82.81937,26.5687],[82.82761,26.59408],[82.82185,26.59796],[82.8255,26.6073],[82.83172,26.60953],[82.83325,26.61158],[82.85082,26.60886],[82.85981,26.6012],[82.86496,26.60243],[82.8656,26.60697],[82.86404,26.61067],[82.8685,26.61581],[82.87887,26.61563],[82.88519,26.60923],[82.89046,26.61333],[82.89455,26.6102],[82.89848,26.6169],[82.90219,26.61905],[82.90376,26.62337],[82.90769,26.62301],[82.90771,26.6285],[82.90559,26.62975],[82.90796,26.63034],[82.90671,26.63271],[82.90433,26.63213],[82.90453,26.62876],[82.89974,26.63076],[82.9076,26.636],[82.90924,26.63563],[82.90905,26.63288],[82.91176,26.63353],[82.91406,26.63007],[82.91994,26.6271],[82.92405,26.62153],[82.93391,26.61783],[82.93447,26.62023],[82.92618,26.62874],[82.92331,26.63556],[82.92403,26.63766],[82.9194,26.63899],[82.91927,26.64518],[82.9179,26.64706],[82.91659,26.64613],[82.91427,26.64751],[82.91673,26.65573],[82.92271,26.65707],[82.92379,26.66158],[82.92728,26.66587],[82.93197,26.66606],[82.93609,26.67031],[82.9335,26.67167],[82.94232,26.67765],[82.95115,26.67548],[82.94849,26.67253],[82.96028,26.66968],[82.96513,26.66938],[82.96951,26.67213],[82.97023,26.67452],[82.96723,26.68113],[82.96312,26.68002],[82.96611,26.6875],[82.96512,26.69035],[82.96625,26.69207],[82.96964,26.69228],[82.97033,26.69026],[82.97256,26.69078],[82.97407,26.69541],[82.97571,26.69607],[82.97566,26.7002],[82.97305,26.70533],[82.97388,26.70672],[82.97707,26.70659],[82.97631,26.71183],[82.96345,26.72668],[82.96595,26.73394],[82.9634,26.73751],[82.96543,26.73719],[82.96525,26.73972],[82.96191,26.74298],[82.95991,26.74157],[82.9552,26.74879],[82.95265,26.74677],[82.94978,26.75031],[82.95138,26.75168],[82.95048,26.75316],[82.94545,26.75168],[82.9436,26.75297],[82.9407,26.75133],[82.94096,26.7605],[82.93821,26.75914],[82.93753,26.76424],[82.93378,26.76202],[82.93235,26.76443],[82.92712,26.76668],[82.9276,26.76501],[82.92278,26.76125],[82.9189,26.76085],[82.92114,26.77239],[82.92392,26.7764],[82.92415,26.78339],[82.9266,26.78217],[82.93024,26.78619],[82.93152,26.79082],[82.92524,26.7913],[82.92524,26.78982],[82.92269,26.78969],[82.92095,26.78754],[82.9186,26.78844],[82.91045,26.78612],[82.91008,26.78244],[82.90785,26.78124],[82.90591,26.78111],[82.9071,26.78431],[82.90355,26.78433],[82.90427,26.78657],[82.90255,26.78739],[82.90295,26.78542],[82.90046,26.78512],[82.89935,26.78316],[82.89717,26.7848],[82.89592,26.78142],[82.88679,26.7789],[82.88471,26.78178],[82.88529,26.78442],[82.88232,26.78223],[82.8806,26.78392],[82.88489,26.79197],[82.87935,26.79425],[82.88045,26.79949],[82.88413,26.80258],[82.88239,26.80796],[82.88654,26.81351],[82.88721,26.81739],[82.88369,26.82157],[82.88072,26.82172],[82.88244,26.82982],[82.87296,26.83533],[82.86817,26.83524],[82.86436,26.83212],[82.86224,26.83217],[82.86147,26.82919],[82.85667,26.83057],[82.85185,26.83359],[82.85017,26.83688],[82.8511,26.83988],[82.84521,26.83983],[82.83933,26.84571],[82.83687,26.84513],[82.83086,26.83813],[82.82688,26.83883],[82.82558,26.83987],[82.82831,26.84981],[82.82493,26.84801],[82.82242,26.85015],[82.82757,26.8572],[82.83142,26.85513],[82.83195,26.85737],[82.83998,26.85678],[82.84047,26.86312],[82.83622,26.86559],[82.83944,26.86876],[82.84242,26.86919],[82.84656,26.87601],[82.85098,26.87379],[82.85589,26.87856],[82.86918,26.87735],[82.87268,26.87868],[82.87137,26.88183],[82.86303,26.88705],[82.86309,26.89158],[82.85577,26.89562],[82.85483,26.89856],[82.85607,26.89965],[82.86567,26.89821],[82.86736,26.90096],[82.86998,26.90166],[82.87083,26.90449],[82.86923,26.90729],[82.8719,26.91533],[82.8683,26.91433],[82.86023,26.91701],[82.85805,26.91363],[82.8527,26.91413],[82.84856,26.91677],[82.85099,26.92494],[82.86339,26.92431],[82.8668,26.93601],[82.86975,26.94013],[82.87252,26.93964],[82.87561,26.94244],[82.88495,26.9418],[82.88246,26.93124],[82.89047,26.93191],[82.90009,26.92647],[82.90936,26.92443],[82.91485,26.91788],[82.93018,26.92249],[82.93056,26.92792],[82.91166,26.9352],[82.90684,26.93865],[82.90555,26.94422],[82.90623,26.95184],[82.90831,26.9556],[82.91321,26.95907],[82.90969,26.96179],[82.91382,26.96259],[82.91127,26.96481],[82.91408,26.96642],[82.91239,26.96788],[82.91277,26.97136],[82.90947,26.97309],[82.90925,26.97601],[82.9041,26.9784],[82.9038,26.98069],[82.89947,26.98082],[82.90265,26.98444],[82.9051,26.98497],[82.90264,26.98719],[82.90393,26.98972],[82.90244,26.98979],[82.90279,26.99108],[82.91038,26.99126],[82.91087,26.99587],[82.90754,27.00143],[82.90632,26.99963],[82.90497,27.00163],[82.90357,26.99982],[82.90208,27.00239],[82.89773,27.0025],[82.89657,27.00763],[82.89411,27.00924],[82.89636,27.0117],[82.89495,27.01458],[82.88865,27.01184],[82.88565,27.01309],[82.88369,27.00977],[82.88271,27.01273],[82.87985,27.01244],[82.87997,27.01548],[82.87405,27.01914],[82.87359,27.0225],[82.86936,27.0232],[82.86948,27.02825],[82.87146,27.03008],[82.86982,27.03287],[82.86659,27.03148],[82.86708,27.03395],[82.86458,27.03804],[82.85878,27.03889],[82.85725,27.03559],[82.854,27.03428],[82.85478,27.03327],[82.84852,27.02974],[82.84807,27.02701],[82.84245,27.0264],[82.84399,27.0233],[82.84149,27.02368],[82.83993,27.02193],[82.83707,27.02304],[82.83745,27.02112],[82.8351,27.0218],[82.83595,27.02004],[82.83323,27.02026],[82.83329,27.01752],[82.82932,27.01909],[82.82283,27.02856],[82.82487,27.02975],[82.82081,27.03137],[82.82178,27.033],[82.81865,27.03851],[82.81711,27.03799],[82.81423,27.04122],[82.80839,27.04001],[82.80821,27.04197],[82.806,27.0421],[82.80566,27.04499],[82.80293,27.04662],[82.8012,27.04533],[82.80048,27.0476],[82.79916,27.04654],[82.7937,27.048],[82.7958,27.04905],[82.79431,27.04999],[82.79546,27.05185],[82.79285,27.05633],[82.79381,27.06025],[82.79214,27.06168],[82.79376,27.06285],[82.79221,27.06325],[82.79167,27.06564],[82.79278,27.06751],[82.79203,27.07327],[82.78908,27.07867],[82.79051,27.08035],[82.78813,27.08148],[82.78622,27.08048],[82.78578,27.08298],[82.77777,27.08777],[82.77911,27.08876],[82.77813,27.09145],[82.77442,27.09396],[82.77284,27.09332],[82.77328,27.09473],[82.77083,27.09519],[82.77177,27.0973],[82.76808,27.09801],[82.76914,27.09936],[82.76709,27.09846],[82.76379,27.10631],[82.76621,27.10723],[82.76341,27.11201],[82.76069,27.1111],[82.75701,27.11236],[82.75686,27.11123],[82.75114,27.11038],[82.74852,27.11102],[82.74743,27.11376],[82.7449,27.11126],[82.73902,27.1107],[82.7348,27.10464],[82.73028,27.10438],[82.72936,27.10175],[82.72785,27.10274],[82.72644,27.10101],[82.72572,27.10222],[82.72229,27.10002],[82.72293,27.10278],[82.71823,27.10949],[82.71386,27.10898],[82.71367,27.10749],[82.71011,27.10595],[82.70693,27.10656],[82.70594,27.10857],[82.70301,27.10696],[82.69808,27.10775],[82.69384,27.11039],[82.69429,27.1134],[82.68994,27.11275],[82.6885,27.11521],[82.68781,27.11356],[82.67917,27.11188],[82.65941,27.1148]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"132","area_level":"District","area_name":"Bijnor","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.34164,29.7931],[78.33566,29.79661],[78.33316,29.79267],[78.33074,29.79318],[78.32439,29.78986],[78.31832,29.78308],[78.3129,29.77941],[78.30995,29.78026],[78.30687,29.77551],[78.30363,29.77476],[78.30061,29.77104],[78.30096,29.76825],[78.29268,29.75906],[78.28453,29.76178],[78.28095,29.75576],[78.2683,29.74645],[78.26703,29.74284],[78.26231,29.74364],[78.26003,29.7385],[78.25565,29.73825],[78.25009,29.73426],[78.24592,29.73452],[78.24023,29.74143],[78.22958,29.73669],[78.22165,29.74066],[78.20392,29.73727],[78.20016,29.73029],[78.20358,29.72826],[78.20201,29.71443],[78.19603,29.69268],[78.1884,29.69229],[78.18051,29.69683],[78.17162,29.69157],[78.13758,29.66354],[78.13359,29.6595],[78.13054,29.65254],[78.11929,29.64997],[78.10403,29.64123],[78.0934,29.64045],[78.08146,29.63514],[78.08669,29.62503],[78.08188,29.62514],[78.06855,29.63042],[78.05747,29.63069],[78.05711,29.62669],[78.04885,29.61461],[78.04649,29.61607],[78.03432,29.61038],[78.03307,29.61161],[78.03109,29.60832],[78.01828,29.5982],[78.01524,29.58725],[78.0216,29.58085],[78.023,29.56202],[78.01682,29.55874],[78.00859,29.55972],[78.00186,29.54571],[77.9964,29.54591],[77.99566,29.53199],[77.98737,29.53416],[77.98788,29.53054],[77.98595,29.52777],[77.9886,29.51502],[77.99139,29.51019],[77.9975,29.50901],[77.99257,29.50075],[77.99365,29.4971],[77.98928,29.48546],[77.98992,29.48405],[77.99307,29.48103],[78.00176,29.47895],[78.0042,29.47014],[78.00988,29.4698],[78.02042,29.46621],[78.02151,29.45935],[78.01615,29.45623],[78.02304,29.44995],[78.02421,29.44664],[78.02123,29.42964],[78.03215,29.41809],[78.03554,29.41033],[78.04331,29.41064],[78.0457,29.40855],[78.04673,29.40277],[78.04554,29.39958],[78.03053,29.39161],[78.02657,29.38637],[78.02921,29.38274],[78.03019,29.37332],[78.03154,29.37117],[78.03738,29.3691],[78.04172,29.36007],[78.04603,29.3558],[78.06345,29.35326],[78.06572,29.3353],[78.07723,29.32882],[78.08328,29.32189],[78.08841,29.31941],[78.09154,29.30136],[78.09641,29.29455],[78.0982,29.28363],[78.10882,29.27488],[78.11481,29.2587],[78.11333,29.25409],[78.11535,29.2499],[78.11555,29.24425],[78.1114,29.24087],[78.11291,29.2328],[78.11061,29.21938],[78.10807,29.21609],[78.11072,29.21191],[78.1079,29.20513],[78.11489,29.19181],[78.11864,29.18923],[78.12344,29.18165],[78.12386,29.17135],[78.11495,29.15834],[78.1029,29.15728],[78.09801,29.15538],[78.09022,29.14561],[78.08603,29.13328],[78.08719,29.11628],[78.08952,29.11088],[78.09361,29.10816],[78.08778,29.09242],[78.08458,29.0884],[78.07565,29.0823],[78.07308,29.08231],[78.10474,29.0715],[78.12205,29.07074],[78.12613,29.06728],[78.13408,29.065],[78.13661,29.0532],[78.13454,29.04417],[78.1363,29.04394],[78.14082,29.05026],[78.14799,29.05215],[78.15146,29.04483],[78.1518,29.04743],[78.15615,29.04866],[78.15722,29.05335],[78.1612,29.055],[78.16158,29.05362],[78.16658,29.05382],[78.17438,29.05026],[78.18235,29.04436],[78.18446,29.04105],[78.19084,29.04733],[78.19614,29.04137],[78.20524,29.0393],[78.20839,29.0343],[78.21512,29.02951],[78.21754,29.03118],[78.22025,29.0302],[78.22352,29.03556],[78.22864,29.03543],[78.2321,29.03354],[78.23352,29.0349],[78.23835,29.03199],[78.24582,29.03647],[78.25239,29.03566],[78.24951,29.03362],[78.25014,29.03199],[78.25433,29.03468],[78.25846,29.03489],[78.26858,29.02662],[78.27562,29.02405],[78.28577,29.03627],[78.29232,29.03226],[78.28649,29.02802],[78.28982,29.02616],[78.28843,29.0248],[78.29086,29.02326],[78.29334,29.02535],[78.30197,29.02181],[78.30906,29.02383],[78.31431,29.02258],[78.32013,29.03044],[78.33659,29.01885],[78.34229,29.01933],[78.34679,29.0174],[78.36458,29.02461],[78.36748,29.02211],[78.37261,29.02686],[78.38122,29.0204],[78.3838,29.0232],[78.38659,29.02083],[78.39142,29.02919],[78.39533,29.03009],[78.40001,29.02771],[78.41109,29.0378],[78.41381,29.03474],[78.41746,29.03855],[78.42035,29.03788],[78.42282,29.04218],[78.42496,29.04118],[78.43141,29.04966],[78.43544,29.04755],[78.43851,29.05163],[78.44141,29.05022],[78.44522,29.05459],[78.44773,29.05321],[78.45026,29.05606],[78.44953,29.05819],[78.4556,29.05499],[78.45689,29.05615],[78.47286,29.0507],[78.47699,29.05411],[78.48385,29.05077],[78.48903,29.04487],[78.4883,29.04323],[78.49063,29.04234],[78.49367,29.05022],[78.5012,29.04788],[78.50379,29.05188],[78.50618,29.05259],[78.50949,29.05805],[78.51623,29.06414],[78.51737,29.06841],[78.52175,29.06495],[78.52466,29.06721],[78.5342,29.06697],[78.53484,29.06471],[78.53746,29.06341],[78.54652,29.0612],[78.5518,29.06836],[78.556,29.06676],[78.55866,29.07146],[78.56263,29.06977],[78.56177,29.07449],[78.56423,29.07698],[78.57055,29.07268],[78.57857,29.07241],[78.58121,29.06983],[78.58493,29.07144],[78.58845,29.0685],[78.59605,29.07646],[78.59964,29.0784],[78.60264,29.07613],[78.60708,29.0802],[78.6071,29.08249],[78.60922,29.0815],[78.61232,29.08257],[78.61608,29.08561],[78.6161,29.08995],[78.60664,29.09693],[78.61299,29.10269],[78.62218,29.10623],[78.62611,29.10951],[78.63026,29.10774],[78.63998,29.11009],[78.65022,29.123],[78.64781,29.1247],[78.65101,29.12987],[78.65032,29.1309],[78.63283,29.14236],[78.63109,29.14487],[78.63121,29.14889],[78.63587,29.15419],[78.6431,29.15915],[78.64529,29.1547],[78.65063,29.15184],[78.65757,29.1445],[78.65941,29.1467],[78.65754,29.15347],[78.66011,29.15695],[78.65444,29.16345],[78.65331,29.16693],[78.65945,29.17697],[78.67637,29.18734],[78.68198,29.18571],[78.69216,29.18857],[78.69832,29.1921],[78.69694,29.19227],[78.6967,29.19897],[78.6983,29.2003],[78.69554,29.20332],[78.68971,29.19646],[78.67886,29.18929],[78.67654,29.1929],[78.67025,29.1907],[78.68212,29.20436],[78.67418,29.2115],[78.68767,29.22114],[78.6965,29.23271],[78.68887,29.23971],[78.70396,29.24683],[78.70329,29.25043],[78.70592,29.25371],[78.71022,29.25242],[78.71746,29.25503],[78.7204,29.2534],[78.72917,29.25919],[78.7305,29.26248],[78.73346,29.26082],[78.74042,29.26234],[78.74781,29.26161],[78.75262,29.26816],[78.7632,29.26095],[78.76628,29.26416],[78.77141,29.26472],[78.77019,29.26704],[78.77321,29.27113],[78.76502,29.27931],[78.73614,29.29676],[78.73452,29.29957],[78.72843,29.29922],[78.72675,29.2978],[78.72269,29.29932],[78.71837,29.30342],[78.71886,29.30693],[78.72299,29.30345],[78.72719,29.30551],[78.73445,29.30294],[78.73518,29.30654],[78.73134,29.31352],[78.73209,29.31756],[78.73577,29.31853],[78.73367,29.3219],[78.74067,29.32042],[78.74068,29.31579],[78.74508,29.31794],[78.75032,29.31735],[78.74955,29.32324],[78.75369,29.32732],[78.75376,29.33122],[78.76081,29.33293],[78.76655,29.3374],[78.77431,29.33198],[78.77333,29.32849],[78.77748,29.32573],[78.78525,29.32715],[78.78679,29.32611],[78.79052,29.33059],[78.79345,29.32817],[78.79309,29.32683],[78.7954,29.32501],[78.79054,29.31889],[78.78955,29.3153],[78.79591,29.31177],[78.79545,29.31471],[78.7982,29.31901],[78.80472,29.31925],[78.8012,29.32524],[78.80286,29.33125],[78.7999,29.33458],[78.81051,29.34012],[78.82215,29.35914],[78.82529,29.36761],[78.83026,29.36801],[78.82586,29.36555],[78.8276,29.36377],[78.82636,29.36143],[78.82834,29.35967],[78.82745,29.35421],[78.83074,29.35149],[78.83576,29.35046],[78.84024,29.34597],[78.84558,29.34419],[78.84987,29.34482],[78.85598,29.34972],[78.85113,29.35552],[78.85193,29.36033],[78.86032,29.3582],[78.8717,29.36221],[78.87977,29.36755],[78.87958,29.36936],[78.87595,29.37105],[78.87774,29.37497],[78.88734,29.37305],[78.8925,29.38125],[78.90219,29.38495],[78.90507,29.38951],[78.91221,29.39422],[78.91118,29.39882],[78.91256,29.40117],[78.91838,29.40351],[78.91875,29.40988],[78.92398,29.41881],[78.92571,29.42595],[78.93831,29.43401],[78.94312,29.43469],[78.94024,29.43526],[78.94167,29.43868],[78.93634,29.43822],[78.92534,29.43383],[78.91872,29.43426],[78.9002,29.44149],[78.88087,29.44338],[78.84108,29.45715],[78.82274,29.45975],[78.81056,29.46581],[78.79967,29.46457],[78.77757,29.47714],[78.75903,29.49064],[78.75655,29.49459],[78.75359,29.49619],[78.74919,29.49596],[78.74501,29.50078],[78.73819,29.50019],[78.73273,29.50199],[78.73059,29.50038],[78.72009,29.50217],[78.71121,29.50036],[78.70037,29.50573],[78.65259,29.54463],[78.64775,29.54677],[78.63851,29.54666],[78.62425,29.55654],[78.61773,29.55803],[78.5812,29.58561],[78.56507,29.60109],[78.54424,29.62555],[78.54081,29.62709],[78.52149,29.65782],[78.52145,29.69347],[78.51871,29.70177],[78.51654,29.7194],[78.50676,29.72944],[78.48782,29.73837],[78.47369,29.73988],[78.45564,29.74515],[78.44514,29.75038],[78.42851,29.76446],[78.40906,29.76338],[78.39276,29.76739],[78.34164,29.7931]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"133","area_level":"District","area_name":"Budaun","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.88415,28.47121],[78.88283,28.47225],[78.87884,28.46959],[78.87564,28.46414],[78.86902,28.466],[78.86591,28.46523],[78.86602,28.46063],[78.86458,28.4609],[78.86062,28.45574],[78.85876,28.45558],[78.85935,28.44865],[78.85807,28.44695],[78.85266,28.44818],[78.84976,28.45291],[78.8394,28.44476],[78.83433,28.44678],[78.82551,28.43884],[78.82302,28.43863],[78.81222,28.44456],[78.80089,28.43074],[78.80472,28.4202],[78.79301,28.40941],[78.79303,28.40643],[78.79749,28.40197],[78.79436,28.40152],[78.79423,28.39791],[78.78668,28.39477],[78.78336,28.39914],[78.78134,28.39842],[78.77298,28.40259],[78.7711,28.40158],[78.76681,28.40496],[78.76685,28.40248],[78.7618,28.39931],[78.75967,28.39506],[78.76938,28.38662],[78.76032,28.37638],[78.76148,28.37418],[78.75908,28.37181],[78.752,28.36818],[78.74695,28.37208],[78.74417,28.37236],[78.74121,28.36729],[78.73367,28.37563],[78.72873,28.37085],[78.72973,28.36989],[78.72644,28.37113],[78.72099,28.36479],[78.71966,28.36741],[78.71726,28.36771],[78.71554,28.36547],[78.71126,28.36833],[78.7085,28.36558],[78.70702,28.36644],[78.70297,28.3622],[78.69813,28.36022],[78.69891,28.35763],[78.6928,28.3481],[78.68174,28.33917],[78.68009,28.33519],[78.67746,28.3343],[78.67603,28.33589],[78.66763,28.33654],[78.66432,28.33379],[78.66535,28.32931],[78.65251,28.31803],[78.66233,28.30873],[78.65539,28.30287],[78.65738,28.30117],[78.65606,28.30034],[78.65722,28.29892],[78.65208,28.29496],[78.64941,28.29515],[78.64355,28.29022],[78.64282,28.28757],[78.64488,28.28503],[78.64392,28.28399],[78.64802,28.28033],[78.64612,28.27871],[78.64788,28.27687],[78.64683,28.27608],[78.65137,28.26972],[78.6392,28.26081],[78.64161,28.25847],[78.64061,28.25457],[78.63605,28.25142],[78.63253,28.2441],[78.63555,28.23364],[78.6311,28.23018],[78.6308,28.22777],[78.63685,28.22228],[78.63238,28.21581],[78.61703,28.20894],[78.61709,28.20543],[78.61166,28.20337],[78.60988,28.19853],[78.60669,28.19573],[78.60163,28.19674],[78.59972,28.19542],[78.59224,28.18563],[78.59202,28.18236],[78.5944,28.17917],[78.59836,28.17994],[78.59689,28.17632],[78.60412,28.17443],[78.60204,28.17107],[78.60557,28.17073],[78.6103,28.17278],[78.61193,28.16916],[78.61107,28.166],[78.60144,28.15938],[78.59291,28.16088],[78.58723,28.15413],[78.58597,28.14662],[78.57804,28.1478],[78.57466,28.14258],[78.57441,28.13893],[78.57667,28.13609],[78.58318,28.14023],[78.59386,28.13309],[78.58176,28.1231],[78.58908,28.11575],[78.57978,28.10755],[78.57949,28.10299],[78.57224,28.10228],[78.57197,28.09899],[78.58359,28.09746],[78.58565,28.09526],[78.58569,28.09207],[78.59073,28.09002],[78.58911,28.08636],[78.59131,28.08462],[78.58831,28.07583],[78.58317,28.07115],[78.58105,28.06634],[78.58026,28.06318],[78.5828,28.06089],[78.5731,28.0498],[78.58198,28.0487],[78.59091,28.0414],[78.60453,28.03861],[78.6048,28.0374],[78.59594,28.03448],[78.58902,28.03373],[78.59541,28.03316],[78.60772,28.01799],[78.61027,28.01937],[78.61716,28.01602],[78.62358,28.02471],[78.62807,28.02795],[78.63587,28.01863],[78.64495,28.01792],[78.6522,28.01382],[78.6505,28.01231],[78.65535,28.01241],[78.6534,28.01444],[78.66605,28.01596],[78.65988,28.01319],[78.65901,28.0106],[78.65347,28.0079],[78.6599,28.00289],[78.67018,28.00012],[78.6927,27.99821],[78.69969,27.99564],[78.7036,27.99326],[78.70513,27.98451],[78.71089,27.97743],[78.7165,27.97573],[78.71788,27.97359],[78.71743,27.9694],[78.72229,27.96363],[78.73123,27.96044],[78.73477,27.96251],[78.74162,27.95558],[78.74538,27.95772],[78.74948,27.95709],[78.75737,27.94854],[78.76571,27.96309],[78.77561,27.96083],[78.77759,27.95889],[78.77747,27.95534],[78.78697,27.95173],[78.78773,27.95335],[78.79887,27.95095],[78.80302,27.95557],[78.81475,27.95201],[78.82135,27.93976],[78.84634,27.92851],[78.85485,27.91694],[78.86227,27.91231],[78.86878,27.90974],[78.88761,27.91597],[78.91029,27.88397],[78.92041,27.87511],[78.91978,27.8625],[78.91692,27.8596],[78.91873,27.85788],[78.91837,27.85332],[78.92054,27.85309],[78.91751,27.85005],[78.92929,27.8502],[78.93539,27.845],[78.95021,27.85312],[78.96374,27.84718],[78.97146,27.86481],[78.98419,27.87417],[79.00392,27.86142],[79.01603,27.8564],[79.01268,27.85186],[79.00952,27.85112],[79.00086,27.83782],[79.0109,27.84102],[79.01092,27.83847],[79.02098,27.84207],[79.03263,27.83717],[79.05848,27.83439],[79.06508,27.83731],[79.06284,27.8411],[79.06994,27.84383],[79.07275,27.84188],[79.07329,27.83907],[79.08935,27.83465],[79.09709,27.82991],[79.11007,27.83824],[79.1151,27.84436],[79.12058,27.84773],[79.12191,27.84708],[79.12865,27.84096],[79.13661,27.83702],[79.13859,27.83821],[79.14342,27.83276],[79.14283,27.83152],[79.14734,27.82912],[79.13375,27.81406],[79.14177,27.81419],[79.16394,27.7969],[79.16536,27.78246],[79.16996,27.77685],[79.17424,27.77563],[79.17043,27.77106],[79.17544,27.7705],[79.18703,27.76473],[79.18817,27.76034],[79.19607,27.75018],[79.18143,27.71533],[79.21921,27.70085],[79.22022,27.70013],[79.21915,27.69839],[79.22745,27.69241],[79.22957,27.69646],[79.23107,27.69638],[79.23014,27.7048],[79.23513,27.70849],[79.24333,27.69682],[79.25235,27.69762],[79.25823,27.69417],[79.2561,27.68736],[79.27354,27.68062],[79.27883,27.68229],[79.29381,27.67022],[79.29961,27.66979],[79.28951,27.68193],[79.29158,27.68598],[79.3031,27.68299],[79.30204,27.6815],[79.30312,27.67966],[79.30848,27.67668],[79.30573,27.67287],[79.30899,27.67095],[79.34595,27.66115],[79.35199,27.6578],[79.35687,27.6684],[79.34883,27.6708],[79.35025,27.67348],[79.349,27.67655],[79.34674,27.67875],[79.34383,27.67894],[79.3391,27.68385],[79.34318,27.69415],[79.3417,27.69913],[79.3371,27.69972],[79.33898,27.70275],[79.3374,27.70336],[79.33948,27.71124],[79.33212,27.71985],[79.32289,27.72554],[79.32947,27.73496],[79.33403,27.7352],[79.33735,27.73781],[79.33962,27.73595],[79.34139,27.73758],[79.34408,27.73695],[79.34807,27.73855],[79.35229,27.73581],[79.35608,27.73725],[79.35666,27.73367],[79.36056,27.73485],[79.3592,27.73933],[79.35568,27.74199],[79.35547,27.75141],[79.35254,27.75289],[79.34623,27.75258],[79.35268,27.77788],[79.35523,27.78254],[79.35089,27.78767],[79.35325,27.79302],[79.35892,27.79758],[79.35913,27.80331],[79.36232,27.80459],[79.36118,27.80199],[79.36984,27.80415],[79.36846,27.80155],[79.3697,27.80097],[79.37245,27.80477],[79.37081,27.80863],[79.3757,27.81083],[79.37065,27.81354],[79.37149,27.81995],[79.37884,27.82327],[79.3818,27.82297],[79.37979,27.82119],[79.38295,27.81839],[79.37923,27.81686],[79.38568,27.8179],[79.38445,27.8161],[79.3861,27.81528],[79.3899,27.81938],[79.39249,27.8176],[79.3937,27.8184],[79.39188,27.82088],[79.39536,27.82209],[79.39551,27.82867],[79.40424,27.83141],[79.40224,27.8335],[79.39879,27.83357],[79.40471,27.83655],[79.40268,27.83881],[79.39937,27.8378],[79.40458,27.84475],[79.41388,27.84042],[79.41679,27.83598],[79.4155,27.83255],[79.41698,27.83029],[79.43284,27.84338],[79.43713,27.84243],[79.44157,27.83594],[79.45276,27.83813],[79.45568,27.84027],[79.45267,27.84439],[79.4564,27.85081],[79.46278,27.84845],[79.46588,27.85095],[79.47096,27.84446],[79.47479,27.84262],[79.48252,27.84347],[79.48544,27.84878],[79.4734,27.85592],[79.47548,27.86159],[79.47203,27.86206],[79.46841,27.86522],[79.47056,27.87117],[79.46089,27.8747],[79.46536,27.88371],[79.45365,27.8871],[79.45398,27.89391],[79.46255,27.89717],[79.46359,27.89912],[79.46501,27.90747],[79.46169,27.91264],[79.46607,27.92121],[79.46543,27.92484],[79.48053,27.93082],[79.48424,27.93006],[79.48177,27.94716],[79.48618,27.94209],[79.486,27.93887],[79.4883,27.93962],[79.48947,27.94242],[79.48952,27.94692],[79.47637,27.95382],[79.47138,27.96588],[79.46694,27.96282],[79.46461,27.9635],[79.45972,27.95845],[79.4572,27.96074],[79.4633,27.96515],[79.47484,27.97835],[79.4753,27.98117],[79.47011,27.98642],[79.47375,27.99236],[79.48178,27.99979],[79.50808,28.00007],[79.50317,28.01826],[79.49774,28.02487],[79.49142,28.0277],[79.49131,28.03238],[79.48732,28.03383],[79.48549,28.04053],[79.48544,28.04559],[79.48808,28.04648],[79.4876,28.05245],[79.49442,28.0526],[79.50476,28.06042],[79.51,28.07522],[79.50782,28.08554],[79.50307,28.09289],[79.50543,28.10385],[79.49656,28.12105],[79.49533,28.12275],[79.48742,28.12406],[79.47571,28.12934],[79.46704,28.13041],[79.4583,28.13624],[79.45291,28.14102],[79.45116,28.1489],[79.4473,28.15498],[79.42758,28.16061],[79.42485,28.1657],[79.42415,28.1737],[79.41912,28.17322],[79.41415,28.17495],[79.40342,28.16777],[79.39336,28.1766],[79.38956,28.17622],[79.38849,28.17888],[79.37374,28.17991],[79.3751,28.17567],[79.3736,28.17344],[79.36519,28.1756],[79.361,28.17263],[79.36046,28.16874],[79.35881,28.16752],[79.35158,28.16643],[79.34661,28.17332],[79.34163,28.17041],[79.33695,28.1706],[79.33076,28.16027],[79.3235,28.16506],[79.32145,28.16376],[79.31836,28.1654],[79.32367,28.17131],[79.32456,28.17837],[79.32182,28.18125],[79.31066,28.18683],[79.30816,28.18628],[79.30303,28.18044],[79.29803,28.18099],[79.29524,28.18491],[79.29008,28.18265],[79.28186,28.18466],[79.27506,28.17918],[79.26747,28.17914],[79.26578,28.17436],[79.26245,28.17376],[79.2601,28.17757],[79.258,28.17389],[79.25815,28.17898],[79.25546,28.18018],[79.25475,28.18293],[79.24916,28.18403],[79.25165,28.18598],[79.24742,28.18462],[79.24347,28.18626],[79.24187,28.18469],[79.24033,28.18814],[79.2419,28.19083],[79.23839,28.18885],[79.23398,28.19045],[79.23367,28.19358],[79.22816,28.1994],[79.22128,28.19732],[79.21058,28.19929],[79.20594,28.20298],[79.18621,28.20347],[79.182,28.1974],[79.18114,28.19144],[79.1766,28.18641],[79.16558,28.19252],[79.16179,28.19125],[79.15896,28.19495],[79.15674,28.19414],[79.15382,28.19607],[79.14925,28.19502],[79.14296,28.19015],[79.13957,28.19295],[79.13976,28.19953],[79.1293,28.20481],[79.12287,28.20203],[79.11564,28.20361],[79.11284,28.20131],[79.11052,28.21101],[79.10181,28.21605],[79.10275,28.21763],[79.10116,28.22053],[79.11335,28.22704],[79.11312,28.23025],[79.10879,28.23404],[79.11423,28.23861],[79.10871,28.24548],[79.10138,28.24823],[79.10161,28.24956],[79.09748,28.25182],[79.09554,28.2505],[79.08832,28.25506],[79.08206,28.2599],[79.07856,28.26506],[79.07843,28.26938],[79.08019,28.27153],[79.07768,28.27339],[79.08154,28.27785],[79.07772,28.28355],[79.08065,28.2889],[79.08263,28.28849],[79.0864,28.29237],[79.08848,28.29935],[79.08541,28.30154],[79.08667,28.307],[79.08097,28.31101],[79.07908,28.31072],[79.07725,28.31369],[79.08414,28.32466],[79.08298,28.32614],[79.07609,28.33225],[79.07242,28.33236],[79.06723,28.32839],[79.06065,28.33236],[79.06227,28.33796],[79.06149,28.34397],[79.05694,28.34878],[79.05823,28.35181],[79.05719,28.35219],[79.0628,28.35697],[79.06157,28.36057],[79.06367,28.36269],[79.0626,28.36601],[79.066,28.36973],[79.06574,28.37164],[79.06775,28.37153],[79.06378,28.37478],[79.06087,28.37372],[79.05915,28.37872],[79.06125,28.3785],[79.06126,28.38023],[79.05921,28.38316],[79.05724,28.38445],[79.05655,28.38311],[79.05469,28.38516],[79.05083,28.38294],[79.05025,28.38543],[79.04559,28.38625],[79.04477,28.38921],[79.04316,28.38846],[79.04325,28.3907],[79.04039,28.3892],[79.03874,28.39092],[79.03766,28.39005],[79.02693,28.39415],[79.02289,28.39072],[79.0209,28.39308],[79.02001,28.38771],[79.01838,28.39171],[79.01692,28.39133],[79.01688,28.39527],[79.01373,28.39513],[79.01614,28.39387],[79.01262,28.39288],[79.0132,28.39165],[79.0095,28.3928],[79.00896,28.39033],[79.0071,28.39028],[79.00318,28.39403],[79.00438,28.3954],[79.00346,28.39756],[79.00028,28.3977],[79.00031,28.39937],[78.99846,28.39991],[78.99932,28.40544],[78.99616,28.40544],[78.99752,28.40876],[78.99591,28.41122],[78.99183,28.41142],[78.99013,28.41321],[78.98734,28.41238],[78.98736,28.41382],[78.98668,28.41197],[78.98308,28.41103],[78.97889,28.41333],[78.97892,28.41468],[78.97294,28.41599],[78.97322,28.41782],[78.97121,28.41921],[78.97013,28.41828],[78.9689,28.42314],[78.96682,28.41908],[78.96217,28.42126],[78.96308,28.41867],[78.9597,28.41729],[78.95803,28.41948],[78.95687,28.41793],[78.95279,28.41899],[78.9493,28.42762],[78.94922,28.42906],[78.95184,28.43056],[78.95179,28.43517],[78.94947,28.4394],[78.94677,28.43981],[78.94412,28.44385],[78.94505,28.44499],[78.9433,28.4448],[78.94381,28.4466],[78.9421,28.44656],[78.93994,28.45513],[78.94073,28.46017],[78.93502,28.46352],[78.92465,28.45851],[78.92081,28.46266],[78.91666,28.46451],[78.91267,28.46206],[78.90978,28.46512],[78.91124,28.46699],[78.90632,28.47101],[78.89787,28.46183],[78.89406,28.46256],[78.88945,28.46798],[78.88415,28.47121]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"134","area_level":"District","area_name":"Bulandshahr","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.97073,28.71104],[77.96705,28.71428],[77.96292,28.71536],[77.95193,28.70334],[77.94867,28.70225],[77.94021,28.70529],[77.93064,28.70073],[77.92169,28.68568],[77.91141,28.67372],[77.91509,28.67089],[77.91043,28.66726],[77.90479,28.66957],[77.89953,28.66357],[77.9003,28.65691],[77.90408,28.654],[77.90836,28.65413],[77.91125,28.65111],[77.89961,28.64047],[77.90173,28.63816],[77.90181,28.63374],[77.89472,28.63332],[77.89198,28.63574],[77.87475,28.64262],[77.87221,28.64633],[77.86732,28.64438],[77.8655,28.64817],[77.85509,28.65509],[77.84808,28.64573],[77.84829,28.64245],[77.83832,28.6328],[77.83414,28.63415],[77.82793,28.62868],[77.82142,28.62889],[77.81736,28.62597],[77.81509,28.62825],[77.80443,28.62407],[77.79801,28.61615],[77.79594,28.61718],[77.79468,28.61189],[77.78951,28.6068],[77.78719,28.60196],[77.78787,28.59916],[77.78478,28.59506],[77.78593,28.59457],[77.77763,28.58651],[77.76451,28.58897],[77.76091,28.58282],[77.7583,28.58452],[77.75755,28.5827],[77.75516,28.58311],[77.75269,28.58068],[77.75365,28.57613],[77.75258,28.57489],[77.75418,28.5741],[77.75068,28.57043],[77.75219,28.56669],[77.74824,28.56315],[77.74786,28.55892],[77.73406,28.56077],[77.71983,28.54954],[77.71222,28.55707],[77.70456,28.55564],[77.69649,28.55727],[77.69571,28.55619],[77.68635,28.55659],[77.68545,28.55567],[77.6893,28.55141],[77.6884,28.5485],[77.68969,28.54734],[77.6879,28.53876],[77.6926,28.53522],[77.69136,28.53228],[77.68571,28.52804],[77.68741,28.52689],[77.68357,28.51649],[77.68614,28.51168],[77.68063,28.50962],[77.67783,28.51042],[77.67602,28.5071],[77.67033,28.50565],[77.66741,28.50265],[77.66836,28.49737],[77.66266,28.49985],[77.65544,28.49614],[77.65326,28.49733],[77.65061,28.4916],[77.64501,28.49335],[77.63878,28.48908],[77.63702,28.48945],[77.62291,28.47881],[77.62159,28.47504],[77.62407,28.47597],[77.63119,28.47453],[77.63211,28.4674],[77.6346,28.46481],[77.64231,28.46747],[77.6458,28.46663],[77.65128,28.4618],[77.64869,28.45824],[77.64952,28.45687],[77.64177,28.44803],[77.63805,28.43908],[77.63111,28.43443],[77.63012,28.43057],[77.63282,28.42741],[77.64469,28.42796],[77.64671,28.43053],[77.65677,28.42508],[77.6592,28.42822],[77.65799,28.43267],[77.65571,28.43451],[77.65626,28.43693],[77.66272,28.44055],[77.66732,28.44536],[77.66768,28.44792],[77.66259,28.45072],[77.66114,28.44987],[77.66105,28.45106],[77.66328,28.45295],[77.67591,28.44607],[77.67479,28.44379],[77.67757,28.44345],[77.67779,28.44139],[77.67261,28.43818],[77.67193,28.43618],[77.6672,28.43518],[77.66071,28.42889],[77.66657,28.42457],[77.67255,28.42652],[77.67482,28.42555],[77.68292,28.41939],[77.68218,28.41389],[77.67067,28.40591],[77.66743,28.401],[77.6671,28.39485],[77.66951,28.3935],[77.66899,28.39217],[77.67276,28.39091],[77.66743,28.38051],[77.6721,28.38148],[77.67681,28.37798],[77.68017,28.3779],[77.68691,28.37333],[77.69609,28.36277],[77.70718,28.35935],[77.71651,28.35335],[77.71532,28.35258],[77.71633,28.34726],[77.71272,28.34489],[77.71616,28.34161],[77.71327,28.33826],[77.71606,28.33267],[77.72116,28.32823],[77.72573,28.33173],[77.73291,28.32568],[77.73494,28.32056],[77.73792,28.31788],[77.72343,28.30682],[77.72517,28.30506],[77.72412,28.29518],[77.71276,28.29022],[77.71018,28.29192],[77.68813,28.27985],[77.69718,28.26277],[77.69099,28.25642],[77.69671,28.24769],[77.69675,28.24038],[77.6983,28.23744],[77.70757,28.23354],[77.71394,28.23555],[77.71121,28.23012],[77.71424,28.22776],[77.7153,28.22468],[77.71536,28.2168],[77.72842,28.21043],[77.72011,28.20267],[77.71312,28.19077],[77.71301,28.18778],[77.70678,28.18103],[77.70763,28.17864],[77.71273,28.17516],[77.70649,28.16365],[77.71577,28.16492],[77.71901,28.16225],[77.72525,28.16329],[77.73194,28.15748],[77.73208,28.15533],[77.72895,28.15119],[77.72321,28.14951],[77.7192,28.14506],[77.72004,28.1369],[77.72443,28.13691],[77.72541,28.1341],[77.73203,28.13144],[77.74159,28.1365],[77.74503,28.14635],[77.74325,28.15198],[77.75426,28.16085],[77.76064,28.15945],[77.75944,28.15782],[77.76208,28.15332],[77.76103,28.15186],[77.76216,28.14827],[77.76571,28.14599],[77.76634,28.14134],[77.77264,28.13656],[77.7823,28.14801],[77.78529,28.14875],[77.79306,28.14529],[77.80858,28.14793],[77.80777,28.15089],[77.80966,28.15286],[77.8054,28.16272],[77.81437,28.16461],[77.81876,28.16731],[77.82213,28.16648],[77.82234,28.17005],[77.82439,28.17235],[77.82981,28.17063],[77.8366,28.17493],[77.83989,28.17972],[77.84749,28.17205],[77.84267,28.16412],[77.84865,28.16061],[77.84975,28.15677],[77.8496,28.15495],[77.83978,28.14525],[77.83871,28.14228],[77.84257,28.13752],[77.8478,28.1359],[77.85376,28.14149],[77.86404,28.14057],[77.8728,28.12843],[77.88164,28.12508],[77.89138,28.11504],[77.89462,28.11585],[77.89545,28.11459],[77.89933,28.11711],[77.90429,28.11431],[77.90318,28.11345],[77.91505,28.09908],[77.92357,28.10441],[77.93526,28.09573],[77.93477,28.08986],[77.93136,28.08697],[77.93207,28.08583],[77.93324,28.08672],[77.93438,28.08521],[77.93674,28.08672],[77.93867,28.08516],[77.9441,28.08821],[77.94659,28.08713],[77.94817,28.08824],[77.95221,28.08763],[77.95396,28.08553],[77.9604,28.09061],[77.96672,28.08502],[77.97331,28.08482],[77.9792,28.08728],[77.98722,28.08291],[77.99014,28.07862],[77.99376,28.07783],[78.0049,28.0842],[78.00183,28.09401],[78.00918,28.09889],[78.02147,28.11068],[78.01787,28.11374],[78.01849,28.11628],[78.01703,28.11853],[78.02072,28.12213],[78.02029,28.12348],[78.03183,28.12895],[78.04672,28.12208],[78.05132,28.12507],[78.05949,28.11808],[78.06122,28.11307],[78.07155,28.11244],[78.07695,28.11877],[78.08049,28.11966],[78.08375,28.1169],[78.0811,28.11328],[78.08131,28.11108],[78.07759,28.10752],[78.07791,28.10129],[78.09028,28.10273],[78.0991,28.11003],[78.10491,28.10312],[78.10523,28.09905],[78.11247,28.09632],[78.11984,28.08767],[78.1215,28.08369],[78.12003,28.08235],[78.12104,28.07887],[78.11283,28.06872],[78.11945,28.06183],[78.12579,28.0592],[78.13534,28.05985],[78.13758,28.06332],[78.14819,28.06938],[78.14953,28.07486],[78.15131,28.07319],[78.15875,28.0803],[78.16196,28.07569],[78.16455,28.07476],[78.17477,28.07485],[78.17998,28.07702],[78.19559,28.09431],[78.20384,28.10095],[78.20611,28.09978],[78.20578,28.09589],[78.2086,28.09463],[78.20929,28.09617],[78.20978,28.09406],[78.21313,28.0935],[78.21602,28.09876],[78.22186,28.10133],[78.22493,28.10083],[78.22825,28.10327],[78.22643,28.10659],[78.22694,28.10974],[78.23336,28.11248],[78.24536,28.11121],[78.24971,28.10823],[78.25777,28.1113],[78.25805,28.11544],[78.26357,28.11545],[78.26895,28.1179],[78.27389,28.11637],[78.2758,28.11136],[78.28417,28.11328],[78.29049,28.11815],[78.29529,28.11379],[78.29779,28.11727],[78.29916,28.11643],[78.30802,28.12319],[78.31317,28.1217],[78.31618,28.12401],[78.3193,28.12981],[78.32252,28.13049],[78.32538,28.1288],[78.33117,28.137],[78.33187,28.14181],[78.3352,28.14516],[78.33946,28.14658],[78.34458,28.14211],[78.3485,28.14541],[78.35657,28.1368],[78.36025,28.13702],[78.36298,28.13317],[78.36591,28.13433],[78.36877,28.13048],[78.36774,28.12943],[78.37064,28.12676],[78.36791,28.12042],[78.37392,28.11226],[78.36936,28.10785],[78.36917,28.10448],[78.36674,28.10341],[78.3656,28.10061],[78.3658,28.09796],[78.371,28.0936],[78.37739,28.09751],[78.37708,28.09903],[78.38359,28.10529],[78.38758,28.10486],[78.39503,28.09917],[78.39555,28.09789],[78.3935,28.09723],[78.39351,28.09581],[78.39915,28.09317],[78.39772,28.09158],[78.40105,28.08729],[78.40672,28.08947],[78.41236,28.08324],[78.42434,28.09347],[78.4296,28.08767],[78.44467,28.08168],[78.45197,28.09015],[78.47748,28.11306],[78.46648,28.12309],[78.4662,28.12775],[78.46217,28.13082],[78.4606,28.14816],[78.4568,28.15214],[78.44627,28.15247],[78.44259,28.15653],[78.43472,28.16047],[78.43484,28.16521],[78.43325,28.16654],[78.4126,28.17194],[78.40147,28.18144],[78.39842,28.18504],[78.39647,28.19093],[78.39971,28.19854],[78.39592,28.21113],[78.38222,28.21883],[78.38264,28.22247],[78.37673,28.22519],[78.36875,28.23496],[78.36624,28.23927],[78.36541,28.25092],[78.36754,28.25419],[78.35889,28.25914],[78.35449,28.2698],[78.34641,28.27176],[78.32084,28.26971],[78.31298,28.27431],[78.3088,28.28127],[78.31279,28.28459],[78.31241,28.28866],[78.30581,28.29596],[78.30088,28.31928],[78.28747,28.33241],[78.28373,28.34714],[78.2695,28.35746],[78.25989,28.36703],[78.25849,28.37395],[78.26059,28.37889],[78.2657,28.3802],[78.27194,28.37444],[78.27661,28.38079],[78.27959,28.38955],[78.28525,28.3932],[78.29905,28.39683],[78.31144,28.41364],[78.31105,28.42344],[78.30502,28.43638],[78.2894,28.45062],[78.2723,28.45623],[78.26418,28.45552],[78.25804,28.46001],[78.25587,28.46448],[78.25474,28.47948],[78.25892,28.48061],[78.26913,28.48929],[78.26171,28.49666],[78.26297,28.50098],[78.25492,28.50477],[78.25005,28.51139],[78.24466,28.50989],[78.23335,28.51014],[78.22142,28.51517],[78.2162,28.51934],[78.21512,28.52309],[78.20938,28.52933],[78.20341,28.54512],[78.20489,28.54894],[78.19968,28.56354],[78.20015,28.5707],[78.20436,28.57739],[78.20311,28.58115],[78.20578,28.59658],[78.20446,28.60255],[78.19912,28.60373],[78.19854,28.61046],[78.20095,28.61988],[78.20665,28.62031],[78.21056,28.62684],[78.18429,28.62733],[78.18205,28.62946],[78.17535,28.63085],[78.17248,28.62913],[78.1676,28.63495],[78.15169,28.64548],[78.14766,28.64248],[78.14083,28.64599],[78.13495,28.64207],[78.13017,28.63533],[78.11989,28.64412],[78.10376,28.64727],[78.08902,28.65478],[78.08706,28.65671],[78.09014,28.66295],[78.08668,28.66586],[78.08751,28.66771],[78.08393,28.67182],[78.07948,28.67404],[78.07467,28.67536],[78.06814,28.6664],[78.05403,28.67306],[78.0519,28.67216],[78.03689,28.6789],[78.03233,28.67945],[78.0207,28.68601],[78.01838,28.68333],[78.01142,28.68916],[78.01312,28.69173],[78.01257,28.69514],[78.00865,28.69972],[78.0032,28.69842],[77.99949,28.70091],[77.98982,28.70092],[77.9866,28.69831],[77.97822,28.70875],[77.97452,28.70885],[77.97244,28.71241],[77.97073,28.71104]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"135","area_level":"District","area_name":"Chandauli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.33576,25.4636],[83.32161,25.47109],[83.30664,25.48889],[83.24432,25.52399],[83.22938,25.53014],[83.20817,25.53476],[83.19922,25.53527],[83.19137,25.53345],[83.18293,25.52786],[83.17788,25.52175],[83.17077,25.50043],[83.16504,25.48982],[83.14127,25.47456],[83.1293,25.45918],[83.12519,25.45015],[83.12719,25.44334],[83.13912,25.43436],[83.14898,25.43013],[83.15321,25.43214],[83.15723,25.4317],[83.17026,25.42432],[83.18369,25.42061],[83.18818,25.41626],[83.18713,25.41002],[83.1821,25.39947],[83.18263,25.38638],[83.16842,25.34744],[83.15654,25.33292],[83.13869,25.3203],[83.1271,25.32233],[83.11264,25.32839],[83.10124,25.33064],[83.06972,25.32833],[83.05815,25.33009],[83.02878,25.31984],[83.02065,25.31488],[83.00968,25.30216],[83.00912,25.29583],[83.0225,25.29357],[83.02212,25.29129],[83.03134,25.2869],[83.0337,25.28992],[83.0353,25.28015],[83.04059,25.2691],[83.06744,25.24796],[83.06321,25.24449],[83.05616,25.24705],[83.03085,25.24907],[83.03026,25.24361],[83.04231,25.2415],[83.04231,25.23892],[83.04626,25.23736],[83.04768,25.23487],[83.05659,25.23229],[83.06358,25.23276],[83.07006,25.2299],[83.07039,25.21995],[83.0729,25.21249],[83.08657,25.21314],[83.09265,25.21194],[83.09123,25.20586],[83.09953,25.20365],[83.1039,25.20084],[83.12219,25.20286],[83.12257,25.19315],[83.12452,25.1921],[83.12496,25.18711],[83.14206,25.18582],[83.14441,25.1841],[83.14612,25.18508],[83.14562,25.18726],[83.15329,25.18781],[83.15452,25.18604],[83.15883,25.18957],[83.16666,25.18673],[83.17273,25.18636],[83.17385,25.18277],[83.18093,25.17853],[83.17951,25.17466],[83.18117,25.16898],[83.17961,25.17053],[83.17553,25.16673],[83.17128,25.16827],[83.17022,25.16705],[83.16963,25.15081],[83.17185,25.13763],[83.1585,25.13837],[83.15728,25.1368],[83.1586,25.13358],[83.1499,25.13293],[83.1498,25.13072],[83.14624,25.13125],[83.14625,25.12962],[83.14454,25.12971],[83.14473,25.13496],[83.14018,25.13487],[83.14008,25.13008],[83.1331,25.13063],[83.13189,25.12427],[83.13745,25.12243],[83.13257,25.11749],[83.13897,25.11681],[83.13856,25.10824],[83.13431,25.10594],[83.12671,25.10618],[83.12543,25.09684],[83.13262,25.09588],[83.131,25.08824],[83.13201,25.08566],[83.12979,25.08022],[83.1313,25.07377],[83.13626,25.07119],[83.13312,25.06557],[83.13252,25.06041],[83.11634,25.05838],[83.10926,25.06538],[83.09833,25.06953],[83.09823,25.06593],[83.08858,25.0665],[83.08099,25.06475],[83.07735,25.06696],[83.07179,25.06668],[83.07249,25.07055],[83.07148,25.07065],[83.07047,25.06917],[83.06764,25.06935],[83.06477,25.06375],[83.06158,25.06355],[83.05996,25.06078],[83.06087,25.05728],[83.06269,25.05783],[83.06461,25.06244],[83.06664,25.05783],[83.06532,25.05673],[83.0681,25.05447],[83.06654,25.04917],[83.06947,25.04494],[83.06846,25.04401],[83.06401,25.04705],[83.063,25.04465],[83.06412,25.04152],[83.06786,25.03821],[83.06968,25.04005],[83.06966,25.03787],[83.07231,25.03664],[83.07134,25.03543],[83.07292,25.03447],[83.0707,25.03281],[83.07367,25.03116],[83.06878,25.03096],[83.06928,25.02809],[83.06769,25.02516],[83.07162,25.0247],[83.07435,25.01514],[83.07496,25.00777],[83.06829,25.00353],[83.06991,24.99719],[83.07331,24.99259],[83.07441,24.97625],[83.05625,24.9741],[83.05577,24.96947],[83.06124,24.9707],[83.06127,24.95768],[83.06475,24.9333],[83.06984,24.92785],[83.08001,24.90186],[83.07771,24.89807],[83.07562,24.88196],[83.08486,24.87336],[83.08616,24.86938],[83.0825,24.86361],[83.08266,24.86142],[83.0922,24.84088],[83.10405,24.83889],[83.10409,24.83655],[83.10263,24.83659],[83.10545,24.83499],[83.10642,24.83009],[83.11049,24.82909],[83.11164,24.83092],[83.11412,24.8278],[83.11637,24.82857],[83.11679,24.83345],[83.12363,24.8368],[83.12883,24.8356],[83.12389,24.8217],[83.11591,24.82248],[83.10816,24.82006],[83.10353,24.82135],[83.10039,24.81954],[83.10062,24.81768],[83.09809,24.81775],[83.0958,24.81385],[83.09568,24.80918],[83.09129,24.80572],[83.09081,24.8019],[83.08899,24.80085],[83.09381,24.80126],[83.09267,24.79799],[83.09418,24.79549],[83.08627,24.78161],[83.09818,24.77932],[83.09711,24.77319],[83.10367,24.77008],[83.12554,24.76396],[83.13819,24.75773],[83.1371,24.75388],[83.14429,24.75223],[83.14584,24.7505],[83.14976,24.73732],[83.15237,24.73668],[83.15528,24.72987],[83.15973,24.72664],[83.17276,24.72667],[83.17813,24.72009],[83.17684,24.72234],[83.1777,24.72361],[83.18155,24.72629],[83.18366,24.72596],[83.18572,24.72312],[83.18055,24.71906],[83.18305,24.71765],[83.18628,24.7197],[83.19545,24.71647],[83.19573,24.72122],[83.19833,24.721],[83.1986,24.72276],[83.20073,24.72269],[83.20308,24.7255],[83.20699,24.72529],[83.21192,24.72989],[83.22073,24.729],[83.22136,24.7321],[83.22645,24.73501],[83.2308,24.73416],[83.23326,24.7354],[83.23749,24.73119],[83.23857,24.73267],[83.24561,24.73082],[83.24514,24.7275],[83.24654,24.72707],[83.25588,24.72747],[83.25641,24.72936],[83.25484,24.73036],[83.25759,24.73636],[83.26012,24.73472],[83.26187,24.72922],[83.26832,24.72711],[83.26957,24.73017],[83.27282,24.73173],[83.27645,24.73122],[83.2778,24.73402],[83.28233,24.73683],[83.2838,24.73074],[83.28746,24.72772],[83.28957,24.72078],[83.30305,24.71979],[83.30594,24.72729],[83.30263,24.73097],[83.30285,24.73722],[83.30892,24.73823],[83.31168,24.74668],[83.31645,24.74654],[83.31629,24.75516],[83.31855,24.7565],[83.31866,24.7585],[83.32546,24.76004],[83.33001,24.76682],[83.33045,24.7704],[83.33276,24.7718],[83.32962,24.77625],[83.32735,24.77117],[83.32629,24.77274],[83.32147,24.77323],[83.31866,24.77839],[83.32076,24.78912],[83.32578,24.78913],[83.32761,24.78491],[83.33803,24.77453],[83.33683,24.77294],[83.34379,24.77386],[83.35166,24.77774],[83.35828,24.77679],[83.36219,24.7742],[83.36486,24.77509],[83.37522,24.77315],[83.38727,24.7768],[83.39352,24.7823],[83.39325,24.78653],[83.39118,24.78947],[83.39964,24.79666],[83.39583,24.80001],[83.39374,24.80476],[83.39925,24.80895],[83.40185,24.8139],[83.40136,24.81888],[83.3951,24.82617],[83.39659,24.83235],[83.39283,24.8361],[83.39252,24.8406],[83.38682,24.83975],[83.38142,24.84652],[83.37995,24.84952],[83.38051,24.85371],[83.37657,24.85639],[83.37674,24.86014],[83.36928,24.86231],[83.35743,24.87091],[83.36088,24.87424],[83.36801,24.87668],[83.36946,24.87987],[83.35827,24.88813],[83.35826,24.89077],[83.36479,24.89085],[83.36588,24.89302],[83.35745,24.90051],[83.35458,24.90547],[83.35645,24.90747],[83.3623,24.90902],[83.36367,24.91301],[83.36224,24.91827],[83.36285,24.92773],[83.36094,24.93237],[83.3649,24.9375],[83.36105,24.94228],[83.36145,24.95372],[83.35969,24.95615],[83.35502,24.95663],[83.34983,24.96306],[83.3437,24.96206],[83.34311,24.96307],[83.34503,24.97215],[83.34337,24.9812],[83.3502,24.99018],[83.35254,24.99656],[83.34981,25.00925],[83.33412,25.0141],[83.32658,25.01291],[83.32022,25.01726],[83.32141,25.02467],[83.3248,25.02473],[83.32434,25.03733],[83.33571,25.05093],[83.34335,25.05088],[83.34275,25.05987],[83.33594,25.06146],[83.34042,25.06865],[83.34131,25.08154],[83.34411,25.08615],[83.34727,25.0868],[83.34819,25.1006],[83.35069,25.10507],[83.35009,25.11328],[83.36328,25.11118],[83.36606,25.12511],[83.36737,25.12523],[83.36817,25.12989],[83.36191,25.13268],[83.36379,25.13789],[83.36341,25.15347],[83.3513,25.15701],[83.35163,25.16296],[83.35637,25.17763],[83.35297,25.17864],[83.35353,25.18333],[83.34979,25.18489],[83.35195,25.18866],[83.3538,25.18886],[83.35725,25.19966],[83.36339,25.19822],[83.3663,25.19536],[83.37269,25.20033],[83.38194,25.20175],[83.38353,25.20328],[83.38248,25.2107],[83.38622,25.21215],[83.38971,25.21008],[83.39038,25.20496],[83.39312,25.20434],[83.39586,25.20759],[83.39524,25.21452],[83.39761,25.21631],[83.40217,25.21278],[83.4009,25.20952],[83.40204,25.20906],[83.40384,25.21315],[83.40206,25.2212],[83.40277,25.22437],[83.40928,25.22932],[83.40657,25.23381],[83.40626,25.23773],[83.4077,25.23952],[83.41257,25.23495],[83.41361,25.23549],[83.4128,25.23885],[83.40886,25.24079],[83.41039,25.24695],[83.41798,25.25066],[83.42182,25.24652],[83.42672,25.24639],[83.42741,25.24791],[83.42475,25.25182],[83.42721,25.25367],[83.43269,25.25045],[83.43366,25.24553],[83.43623,25.24424],[83.43703,25.24887],[83.44077,25.25331],[83.43896,25.25783],[83.44214,25.25915],[83.44302,25.25456],[83.44651,25.25752],[83.447,25.2599],[83.45009,25.26104],[83.45409,25.25534],[83.46411,25.25069],[83.46792,25.25234],[83.47066,25.2576],[83.47701,25.26151],[83.47971,25.26752],[83.4768,25.27181],[83.48003,25.27625],[83.48532,25.27932],[83.48699,25.28359],[83.48995,25.28404],[83.49038,25.28948],[83.49235,25.28973],[83.49354,25.2877],[83.49337,25.28491],[83.49107,25.28278],[83.49138,25.27991],[83.49739,25.28035],[83.49797,25.28584],[83.50228,25.28747],[83.50447,25.28658],[83.50199,25.2824],[83.50546,25.28104],[83.50892,25.28844],[83.51104,25.28879],[83.51525,25.2847],[83.52694,25.29298],[83.5237,25.29614],[83.52346,25.30256],[83.52808,25.30247],[83.53181,25.29801],[83.53433,25.29741],[83.53837,25.30436],[83.5428,25.30408],[83.54514,25.30675],[83.55426,25.30888],[83.54723,25.31406],[83.53729,25.30977],[83.53715,25.313],[83.5398,25.31573],[83.52974,25.32356],[83.53628,25.34613],[83.54647,25.34549],[83.54632,25.35242],[83.53911,25.35521],[83.53748,25.36341],[83.53112,25.36484],[83.53129,25.37072],[83.52496,25.37947],[83.52266,25.37982],[83.52816,25.38304],[83.53088,25.39231],[83.51784,25.39665],[83.49798,25.40836],[83.4759,25.42525],[83.45978,25.44064],[83.43891,25.45465],[83.42706,25.46784],[83.42467,25.47421],[83.40471,25.4935],[83.3946,25.49615],[83.3831,25.49342],[83.35799,25.47866],[83.34144,25.46541],[83.33576,25.4636]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"136","area_level":"District","area_name":"Chitrakoot","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.0258,25.53951],[81.02043,25.54688],[81.01483,25.53872],[81.00678,25.53891],[81.00476,25.53567],[81.01104,25.52215],[81.01876,25.51624],[81.01936,25.50887],[81.02458,25.50541],[80.99826,25.48597],[80.99493,25.48525],[80.99675,25.48051],[80.99475,25.47557],[80.98643,25.47697],[80.97847,25.47413],[80.97994,25.46687],[80.9788,25.4623],[80.97704,25.46221],[80.97312,25.46786],[80.96976,25.46686],[80.96872,25.46422],[80.96042,25.46267],[80.95781,25.46298],[80.9593,25.46719],[80.9549,25.46862],[80.94971,25.4654],[80.9449,25.46915],[80.94078,25.46827],[80.9322,25.4616],[80.93119,25.45763],[80.93504,25.45751],[80.93645,25.45064],[80.92686,25.44562],[80.92606,25.43933],[80.92045,25.44157],[80.91731,25.43649],[80.90765,25.4408],[80.90258,25.43929],[80.90253,25.4355],[80.90457,25.43398],[80.90314,25.42942],[80.89759,25.42828],[80.89485,25.4233],[80.88808,25.42093],[80.88246,25.41527],[80.88508,25.41599],[80.88578,25.41384],[80.88744,25.41405],[80.88342,25.40277],[80.88388,25.4003],[80.87651,25.40157],[80.87535,25.39969],[80.8709,25.39845],[80.87002,25.39528],[80.87259,25.39377],[80.87288,25.39149],[80.87145,25.38902],[80.86563,25.38783],[80.86647,25.38408],[80.86399,25.37431],[80.85518,25.36684],[80.85031,25.3688],[80.85035,25.36457],[80.84423,25.36299],[80.84421,25.35901],[80.84033,25.3567],[80.8365,25.35036],[80.83314,25.35012],[80.82601,25.34509],[80.81854,25.34943],[80.81534,25.34222],[80.80702,25.34024],[80.80365,25.33424],[80.80158,25.3346],[80.80028,25.34204],[80.79837,25.343],[80.79474,25.34001],[80.79066,25.33234],[80.78863,25.33216],[80.78534,25.33542],[80.7832,25.3289],[80.7762,25.32931],[80.77386,25.32739],[80.77223,25.32774],[80.77278,25.33005],[80.77025,25.33028],[80.76968,25.32652],[80.77152,25.32491],[80.77114,25.32312],[80.7678,25.32197],[80.75816,25.32315],[80.75591,25.31919],[80.76008,25.31841],[80.7613,25.3163],[80.75856,25.31282],[80.75976,25.30926],[80.75492,25.30642],[80.75252,25.29759],[80.74834,25.29892],[80.74448,25.29621],[80.7453,25.29365],[80.74378,25.29453],[80.73687,25.29208],[80.73168,25.28671],[80.72814,25.27866],[80.72427,25.27989],[80.72313,25.28666],[80.72064,25.28536],[80.71474,25.29047],[80.70943,25.28573],[80.7107,25.27993],[80.70908,25.27729],[80.69892,25.27477],[80.69546,25.27055],[80.69187,25.26941],[80.69379,25.26493],[80.69121,25.24055],[80.69002,25.23945],[80.69252,25.233],[80.68956,25.22774],[80.69041,25.22352],[80.68807,25.22058],[80.69427,25.20814],[80.69839,25.20879],[80.69927,25.21336],[80.70233,25.21198],[80.70452,25.21318],[80.70704,25.21154],[80.70901,25.20619],[80.71127,25.20433],[80.71013,25.19268],[80.71373,25.18582],[80.70991,25.18304],[80.70768,25.17552],[80.71152,25.17225],[80.71499,25.16217],[80.71095,25.16192],[80.70753,25.15769],[80.69355,25.15573],[80.69124,25.14942],[80.68842,25.14864],[80.68405,25.13608],[80.68472,25.13169],[80.69386,25.12561],[80.69359,25.11469],[80.69189,25.1107],[80.69582,25.10641],[80.69506,25.1023],[80.69924,25.10026],[80.70008,25.09809],[80.70929,25.09592],[80.71557,25.09146],[80.71193,25.09193],[80.70392,25.08366],[80.69511,25.08262],[80.69551,25.0816],[80.7063,25.07189],[80.70956,25.0745],[80.71566,25.07264],[80.71958,25.06628],[80.71901,25.06382],[80.73234,25.06369],[80.73639,25.0532],[80.74303,25.05595],[80.74253,25.05383],[80.75107,25.05407],[80.75284,25.05678],[80.76171,25.05601],[80.76588,25.05289],[80.77576,25.05482],[80.78467,25.06167],[80.78781,25.06155],[80.78409,25.06885],[80.78363,25.07595],[80.77193,25.07821],[80.76999,25.07717],[80.76886,25.07923],[80.75713,25.08232],[80.75524,25.08679],[80.7575,25.09083],[80.7541,25.09031],[80.75193,25.09289],[80.74336,25.09272],[80.7366,25.09487],[80.73512,25.08924],[80.72545,25.09143],[80.72324,25.09465],[80.72324,25.10507],[80.72631,25.11116],[80.73066,25.11264],[80.72459,25.1211],[80.71087,25.11976],[80.70763,25.11765],[80.70588,25.11907],[80.70347,25.12641],[80.70504,25.12914],[80.70761,25.13054],[80.71811,25.13034],[80.72011,25.13241],[80.71921,25.13467],[80.72089,25.13886],[80.72042,25.1358],[80.72157,25.13529],[80.72318,25.13714],[80.72763,25.13768],[80.73024,25.14632],[80.73165,25.14495],[80.73189,25.13936],[80.7336,25.14048],[80.73483,25.13936],[80.73258,25.13321],[80.73675,25.13536],[80.74195,25.12363],[80.74545,25.12911],[80.75391,25.1328],[80.7618,25.13483],[80.77206,25.13263],[80.77903,25.13861],[80.77878,25.14226],[80.78417,25.13694],[80.78171,25.13363],[80.78638,25.12944],[80.79136,25.13168],[80.79475,25.13059],[80.79708,25.13657],[80.80078,25.1354],[80.80376,25.13757],[80.81319,25.13467],[80.81527,25.13165],[80.81195,25.12408],[80.81597,25.12241],[80.81724,25.12423],[80.8225,25.12395],[80.82665,25.12145],[80.82439,25.11613],[80.82781,25.11522],[80.82989,25.10006],[80.83372,25.10349],[80.83408,25.10603],[80.83605,25.10658],[80.83554,25.10513],[80.83814,25.10431],[80.83911,25.1055],[80.83754,25.10593],[80.84061,25.10861],[80.8407,25.11429],[80.83891,25.11893],[80.84061,25.1232],[80.83808,25.12518],[80.83645,25.13056],[80.83784,25.14143],[80.83982,25.14455],[80.83991,25.15549],[80.84326,25.15952],[80.8491,25.1626],[80.84491,25.17372],[80.84303,25.17599],[80.83879,25.17615],[80.83948,25.17726],[80.83815,25.17769],[80.83928,25.17994],[80.83814,25.18035],[80.84312,25.18655],[80.85563,25.18247],[80.85717,25.18068],[80.86415,25.18278],[80.86808,25.17845],[80.86879,25.17451],[80.87238,25.17809],[80.8795,25.18126],[80.88057,25.18687],[80.88466,25.18794],[80.88432,25.18612],[80.88197,25.18507],[80.88208,25.18244],[80.88518,25.1818],[80.88618,25.17908],[80.88876,25.17812],[80.88924,25.17549],[80.89891,25.16632],[80.90372,25.15931],[80.91291,25.15908],[80.89454,25.13818],[80.89573,25.13529],[80.89478,25.13401],[80.88863,25.13252],[80.87952,25.13834],[80.87886,25.12565],[80.87494,25.12026],[80.86844,25.11568],[80.86925,25.11225],[80.87423,25.10862],[80.87459,25.10415],[80.87859,25.1021],[80.87959,25.09925],[80.86718,25.07951],[80.8676,25.07534],[80.86915,25.07284],[80.87642,25.0734],[80.87804,25.06547],[80.86966,25.05886],[80.86375,25.05652],[80.85546,25.04731],[80.8464,25.04444],[80.84012,25.03342],[80.83178,25.03287],[80.83655,25.02269],[80.84303,25.01962],[80.85513,25.00399],[80.85174,24.98825],[80.84589,24.98392],[80.83292,24.98198],[80.82587,24.9762],[80.82543,24.96966],[80.82379,24.96777],[80.81588,24.96621],[80.81383,24.96749],[80.81389,24.96936],[80.81137,24.97023],[80.7998,24.96841],[80.79221,24.96487],[80.79518,24.96023],[80.79951,24.95854],[80.80517,24.95351],[80.80993,24.95273],[80.80584,24.94368],[80.80817,24.93868],[80.82005,24.93291],[80.81391,24.92743],[80.81199,24.92255],[80.8298,24.91801],[80.83254,24.92001],[80.83723,24.92032],[80.83744,24.92833],[80.85133,24.93157],[80.85667,24.93158],[80.86073,24.92867],[80.87324,24.93581],[80.87757,24.9345],[80.88083,24.93534],[80.87902,24.93677],[80.87897,24.93949],[80.89172,24.94511],[80.89546,24.94511],[80.89946,24.94004],[80.90447,24.93806],[80.90708,24.93505],[80.90524,24.93866],[80.90016,24.94121],[80.89762,24.94503],[80.89915,24.94862],[80.92835,24.96106],[80.93635,24.96198],[80.946,24.96627],[80.95006,24.96441],[80.95095,24.95896],[80.95405,24.95434],[80.94771,24.94097],[80.9557,24.94055],[80.95879,24.93858],[80.95655,24.92989],[80.95729,24.92306],[80.9557,24.92192],[80.95752,24.92181],[80.95718,24.91785],[80.95992,24.91921],[80.96186,24.92576],[80.96574,24.92607],[80.9646,24.92982],[80.96825,24.93003],[80.9702,24.93305],[80.97385,24.93419],[80.98538,24.93288],[80.98618,24.9306],[80.98276,24.92664],[80.98675,24.9232],[80.98763,24.92604],[80.99653,24.92811],[80.99722,24.93288],[81.0004,24.93604],[81.00451,24.93722],[81.00952,24.93599],[81.01316,24.92793],[81.01718,24.93102],[81.02307,24.92762],[81.02467,24.93309],[81.02885,24.93326],[81.02261,24.93578],[81.0212,24.93945],[81.01354,24.94776],[81.01627,24.9515],[81.02558,24.94005],[81.02419,24.94342],[81.02548,24.94475],[81.02835,24.94349],[81.02585,24.94875],[81.02856,24.94859],[81.03373,24.95261],[81.0499,24.94981],[81.05518,24.95216],[81.06085,24.95192],[81.06625,24.94903],[81.0705,24.94984],[81.07971,24.94828],[81.08451,24.94991],[81.0903,24.94494],[81.08704,24.93322],[81.0897,24.93152],[81.09046,24.92887],[81.09336,24.92899],[81.0963,24.92119],[81.10388,24.9183],[81.1123,24.90737],[81.11808,24.90787],[81.12248,24.89967],[81.1396,24.88753],[81.14124,24.89025],[81.13991,24.89675],[81.14165,24.90324],[81.14512,24.90672],[81.14546,24.9103],[81.1504,24.9137],[81.1602,24.91356],[81.16079,24.91912],[81.15852,24.92344],[81.16132,24.92792],[81.16378,24.92831],[81.16371,24.93764],[81.16606,24.93816],[81.16402,24.94265],[81.16801,24.95523],[81.17221,24.9573],[81.17937,24.94988],[81.18515,24.95204],[81.18881,24.94472],[81.19223,24.94501],[81.19715,24.94147],[81.19737,24.93867],[81.20097,24.93801],[81.20354,24.93266],[81.20719,24.93043],[81.20129,24.93194],[81.19759,24.92795],[81.19147,24.92621],[81.19639,24.92468],[81.20162,24.9269],[81.2035,24.92476],[81.21017,24.92262],[81.21387,24.92756],[81.21964,24.92862],[81.22063,24.93425],[81.21935,24.93511],[81.2173,24.93239],[81.21523,24.93288],[81.21318,24.94532],[81.21114,24.94614],[81.21463,24.94852],[81.21443,24.95796],[81.20714,24.96448],[81.22028,24.97382],[81.22101,24.97646],[81.21643,24.98627],[81.20892,24.99262],[81.21208,24.9957],[81.21304,25.0],[81.2208,24.9974],[81.22666,25.00196],[81.23935,25.01922],[81.24183,25.02587],[81.2451,25.02752],[81.25373,25.0389],[81.25857,25.049],[81.26382,25.05276],[81.26204,25.05808],[81.2689,25.06745],[81.26506,25.07355],[81.25949,25.07574],[81.26667,25.08439],[81.26156,25.08837],[81.25849,25.09752],[81.255,25.09854],[81.25214,25.10208],[81.25327,25.10776],[81.2572,25.11106],[81.26133,25.11018],[81.26472,25.11669],[81.26479,25.12228],[81.26276,25.12538],[81.26818,25.12809],[81.26851,25.13156],[81.26615,25.13969],[81.27755,25.14651],[81.28167,25.15206],[81.2751,25.16346],[81.27752,25.166],[81.28897,25.16188],[81.29658,25.16269],[81.29921,25.16447],[81.31343,25.16374],[81.3155,25.15888],[81.31229,25.15591],[81.31322,25.14945],[81.31192,25.13756],[81.31432,25.13539],[81.31569,25.12709],[81.3179,25.1254],[81.31624,25.12349],[81.31857,25.12282],[81.32127,25.11877],[81.32147,25.11277],[81.33108,25.11463],[81.32629,25.11921],[81.3252,25.12239],[81.32401,25.12763],[81.32503,25.13651],[81.31867,25.14397],[81.31956,25.15678],[81.32232,25.16193],[81.33452,25.16929],[81.34528,25.1619],[81.35273,25.16202],[81.35402,25.16391],[81.35728,25.1631],[81.3617,25.15923],[81.36268,25.15306],[81.36882,25.1439],[81.37573,25.14173],[81.37541,25.13904],[81.3709,25.13484],[81.38228,25.13608],[81.38538,25.13216],[81.39261,25.13096],[81.39405,25.12924],[81.39326,25.12623],[81.3954,25.12616],[81.39521,25.12274],[81.39992,25.11922],[81.41429,25.12093],[81.40853,25.12523],[81.4057,25.12911],[81.40619,25.13129],[81.4154,25.12844],[81.42187,25.12855],[81.42561,25.1326],[81.42892,25.13049],[81.43852,25.13033],[81.43693,25.12815],[81.4379,25.12389],[81.44513,25.11608],[81.44668,25.11109],[81.4457,25.10926],[81.44766,25.10717],[81.4445,25.10594],[81.43426,25.10723],[81.43069,25.10558],[81.42717,25.10712],[81.41371,25.10792],[81.40727,25.10491],[81.41759,25.10235],[81.42407,25.09809],[81.42993,25.09762],[81.43677,25.09408],[81.45451,25.09039],[81.46481,25.09011],[81.46733,25.0884],[81.46506,25.08381],[81.46927,25.07979],[81.48205,25.07675],[81.48647,25.07346],[81.49113,25.07232],[81.49364,25.08027],[81.50069,25.07693],[81.50298,25.08971],[81.50024,25.09638],[81.50665,25.09553],[81.5181,25.10074],[81.50307,25.10687],[81.49826,25.10506],[81.49583,25.10853],[81.49032,25.10945],[81.48866,25.11421],[81.48414,25.11595],[81.48744,25.12377],[81.48076,25.12764],[81.47996,25.13218],[81.48519,25.13483],[81.49388,25.13208],[81.49638,25.12898],[81.49618,25.14047],[81.49951,25.14868],[81.5088,25.14782],[81.50998,25.14601],[81.5139,25.14564],[81.51548,25.14304],[81.51916,25.14315],[81.5266,25.13811],[81.53024,25.14285],[81.5309,25.14521],[81.52658,25.14779],[81.5227,25.14667],[81.52992,25.15161],[81.5365,25.16055],[81.53099,25.1647],[81.52496,25.16457],[81.52533,25.16563],[81.51792,25.1705],[81.51617,25.17407],[81.51464,25.17358],[81.51248,25.17734],[81.51441,25.17953],[81.5146,25.18434],[81.51838,25.18605],[81.52496,25.18386],[81.52746,25.18085],[81.53284,25.18239],[81.53443,25.18066],[81.5398,25.18036],[81.54026,25.1895],[81.52994,25.19312],[81.52727,25.19199],[81.51702,25.19611],[81.51807,25.20753],[81.51708,25.21017],[81.51959,25.22101],[81.51862,25.22563],[81.52166,25.22572],[81.52312,25.22782],[81.52285,25.23583],[81.52828,25.23368],[81.54368,25.23489],[81.55235,25.23357],[81.5622,25.2387],[81.55531,25.24943],[81.55748,25.25033],[81.55673,25.25224],[81.55419,25.25576],[81.55211,25.25585],[81.55406,25.26398],[81.55201,25.27339],[81.55384,25.28009],[81.54948,25.28421],[81.55122,25.28555],[81.54997,25.29217],[81.5285,25.27839],[81.50746,25.26942],[81.47744,25.26617],[81.47113,25.26769],[81.46507,25.26032],[81.46107,25.25867],[81.45376,25.25852],[81.42576,25.26836],[81.39722,25.27142],[81.38487,25.27604],[81.38335,25.27827],[81.38372,25.28365],[81.39956,25.30322],[81.40146,25.30796],[81.40197,25.3175],[81.3968,25.32861],[81.38945,25.33347],[81.37637,25.33896],[81.3497,25.34623],[81.33073,25.34886],[81.30394,25.33999],[81.29632,25.34175],[81.28986,25.34046],[81.28052,25.33432],[81.27604,25.32709],[81.26995,25.3254],[81.26498,25.32591],[81.25629,25.33498],[81.24269,25.35874],[81.23574,25.3619],[81.20692,25.36881],[81.19078,25.37027],[81.17497,25.37633],[81.15531,25.38988],[81.1499,25.39711],[81.14725,25.40299],[81.14666,25.40976],[81.15191,25.4277],[81.15637,25.43115],[81.16559,25.43305],[81.18529,25.44575],[81.19466,25.45789],[81.19548,25.46391],[81.19326,25.48333],[81.18984,25.48978],[81.16614,25.50037],[81.13663,25.50891],[81.12342,25.51073],[81.10154,25.51783],[81.07947,25.51865],[81.03727,25.53018],[81.03131,25.53368],[81.0258,25.53951]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"137","area_level":"District","area_name":"Deoria","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.84909,26.75034],[83.83996,26.75918],[83.83726,26.75652],[83.83577,26.75069],[83.84108,26.75048],[83.83642,26.74717],[83.83404,26.74757],[83.83176,26.74449],[83.83038,26.74585],[83.82791,26.74488],[83.824,26.74693],[83.81899,26.74615],[83.81576,26.74786],[83.81406,26.74498],[83.81287,26.74825],[83.81009,26.74862],[83.80913,26.75032],[83.80936,26.74154],[83.80719,26.73172],[83.80863,26.72927],[83.80804,26.72481],[83.80137,26.72643],[83.80073,26.72392],[83.80275,26.72063],[83.80051,26.71922],[83.80109,26.71752],[83.79919,26.71513],[83.7911,26.71431],[83.79029,26.70917],[83.77721,26.71031],[83.776,26.70384],[83.76951,26.70345],[83.77041,26.70019],[83.76776,26.70175],[83.76707,26.69889],[83.7607,26.70526],[83.75692,26.70678],[83.75388,26.695],[83.74795,26.6923],[83.74199,26.69263],[83.73779,26.69508],[83.73815,26.69633],[83.72321,26.6984],[83.72019,26.69179],[83.72175,26.69134],[83.72165,26.68732],[83.71104,26.68848],[83.70305,26.68301],[83.69374,26.68287],[83.69836,26.69942],[83.69435,26.70237],[83.68845,26.70373],[83.68815,26.70023],[83.68005,26.70205],[83.67622,26.69198],[83.67355,26.6913],[83.67221,26.68383],[83.66419,26.68306],[83.66341,26.67893],[83.66154,26.67907],[83.65502,26.66733],[83.65338,26.66193],[83.65451,26.66029],[83.64896,26.66135],[83.6493,26.65981],[83.64397,26.6594],[83.62694,26.66148],[83.62958,26.65954],[83.62818,26.65806],[83.63004,26.65811],[83.62847,26.65648],[83.63017,26.6551],[83.62661,26.65262],[83.62721,26.6491],[83.63202,26.64704],[83.63109,26.64506],[83.62799,26.64439],[83.63022,26.6424],[83.62907,26.63946],[83.63164,26.63752],[83.63334,26.63081],[83.63155,26.62931],[83.63182,26.62717],[83.63355,26.62367],[83.62969,26.62266],[83.62961,26.6199],[83.62629,26.62131],[83.62576,26.61954],[83.62317,26.61978],[83.62211,26.61583],[83.61983,26.6163],[83.61914,26.61823],[83.61637,26.61711],[83.6199,26.6151],[83.61826,26.61442],[83.61988,26.6114],[83.61794,26.61016],[83.62024,26.60945],[83.61853,26.60334],[83.62055,26.60325],[83.62131,26.6049],[83.62444,26.59838],[83.62677,26.59932],[83.62639,26.59701],[83.63096,26.59158],[83.62958,26.58987],[83.63192,26.58882],[83.63085,26.58625],[83.62907,26.5863],[83.63182,26.58463],[83.63078,26.58243],[83.62531,26.58128],[83.62885,26.57676],[83.62664,26.57445],[83.62817,26.5705],[83.62626,26.5712],[83.62657,26.56846],[83.62507,26.5681],[83.62476,26.56988],[83.62327,26.56787],[83.62334,26.57079],[83.61997,26.57046],[83.61837,26.57327],[83.61318,26.56643],[83.61454,26.56438],[83.61244,26.56368],[83.61477,26.56099],[83.61499,26.55808],[83.61229,26.5557],[83.61623,26.55467],[83.61403,26.55235],[83.61296,26.55371],[83.60867,26.55146],[83.61124,26.54937],[83.60633,26.54624],[83.60872,26.5449],[83.60717,26.54306],[83.6092,26.54138],[83.6057,26.53912],[83.60805,26.53673],[83.60578,26.53763],[83.6066,26.53573],[83.60295,26.53264],[83.60138,26.52709],[83.60375,26.52581],[83.6022,26.52338],[83.60332,26.52162],[83.59981,26.51806],[83.60055,26.51519],[83.58596,26.51257],[83.57924,26.51549],[83.57788,26.51352],[83.57365,26.51561],[83.56832,26.50761],[83.55357,26.51241],[83.54906,26.50926],[83.54846,26.50709],[83.54968,26.50535],[83.55295,26.50561],[83.55505,26.49797],[83.55159,26.49148],[83.54624,26.48923],[83.54402,26.48995],[83.54307,26.5003],[83.53982,26.5016],[83.53365,26.49639],[83.52744,26.49819],[83.52762,26.49606],[83.51893,26.49916],[83.51746,26.49748],[83.51467,26.49898],[83.51379,26.49491],[83.50917,26.49462],[83.5077,26.49669],[83.50575,26.4953],[83.49937,26.49634],[83.49354,26.4922],[83.49309,26.48893],[83.48719,26.48076],[83.49362,26.46759],[83.49377,26.46268],[83.49158,26.46082],[83.47984,26.46288],[83.47729,26.4613],[83.47675,26.45878],[83.48157,26.45513],[83.48758,26.44474],[83.496,26.43517],[83.49799,26.422],[83.5057,26.41745],[83.48657,26.40536],[83.4853,26.40102],[83.48712,26.39374],[83.49005,26.39115],[83.49514,26.39096],[83.50065,26.39536],[83.49977,26.40124],[83.52403,26.40157],[83.52609,26.39883],[83.52461,26.3938],[83.51059,26.38453],[83.516,26.38272],[83.52996,26.38649],[83.53289,26.38544],[83.53652,26.36148],[83.53924,26.3577],[83.54488,26.35555],[83.54691,26.35679],[83.55094,26.365],[83.55535,26.37783],[83.55813,26.37816],[83.56594,26.37385],[83.56894,26.37528],[83.56858,26.37806],[83.56277,26.38527],[83.54696,26.38772],[83.54586,26.38967],[83.54718,26.39206],[83.56259,26.39297],[83.58327,26.39832],[83.58523,26.39628],[83.58511,26.39034],[83.58043,26.38344],[83.57852,26.37579],[83.58336,26.36235],[83.58604,26.36005],[83.58981,26.35968],[83.60903,26.37009],[83.61129,26.37003],[83.61288,26.36532],[83.60004,26.35124],[83.59956,26.34877],[83.61673,26.34289],[83.61734,26.34143],[83.61089,26.33462],[83.61988,26.32955],[83.62217,26.32193],[83.62485,26.32207],[83.6344,26.32967],[83.63817,26.32917],[83.63459,26.32211],[83.62327,26.32066],[83.62263,26.31547],[83.62037,26.31195],[83.62007,26.3028],[83.61849,26.30103],[83.62516,26.2973],[83.63244,26.30166],[83.64643,26.31421],[83.65584,26.31813],[83.65968,26.31811],[83.66528,26.3143],[83.66806,26.30886],[83.66953,26.28907],[83.67104,26.28717],[83.65501,26.2807],[83.6453,26.27936],[83.63827,26.27298],[83.63801,26.24821],[83.63423,26.2429],[83.63139,26.22491],[83.64479,26.22503],[83.66037,26.22955],[83.66301,26.23132],[83.66241,26.23501],[83.66453,26.23666],[83.69022,26.24123],[83.70669,26.25061],[83.70775,26.25485],[83.71523,26.25808],[83.73012,26.25813],[83.74004,26.26199],[83.74252,26.26618],[83.74964,26.25976],[83.75353,26.26059],[83.75261,26.256],[83.75716,26.25421],[83.75721,26.24933],[83.76673,26.2408],[83.77159,26.23887],[83.7773,26.23263],[83.7895,26.23011],[83.82225,26.23129],[83.82931,26.23426],[83.83412,26.23359],[83.84405,26.21826],[83.84758,26.20868],[83.85553,26.20046],[83.8612,26.18384],[83.8649,26.18117],[83.86427,26.16523],[83.87196,26.15767],[83.87622,26.14683],[83.88567,26.13936],[83.88756,26.13476],[83.90492,26.12235],[83.91952,26.11969],[83.93034,26.12302],[83.93615,26.1218],[83.95374,26.12667],[83.959,26.13089],[83.96333,26.13184],[83.97274,26.12342],[83.97732,26.11531],[83.98094,26.11396],[83.99679,26.11692],[84.00571,26.11222],[84.01527,26.11415],[84.03774,26.09702],[84.04408,26.09552],[84.05265,26.08948],[84.05595,26.10006],[84.04873,26.10906],[84.05004,26.12001],[84.05177,26.12056],[84.05065,26.12896],[84.04345,26.13484],[84.02744,26.1424],[84.03436,26.15119],[84.03345,26.16069],[84.01672,26.16887],[84.00995,26.17448],[84.00838,26.17954],[84.00846,26.18877],[84.01323,26.19402],[84.01665,26.19605],[84.02663,26.19691],[84.02859,26.19565],[84.03235,26.19984],[84.03538,26.19863],[84.03835,26.20097],[84.03924,26.20905],[84.03188,26.2094],[84.02907,26.21119],[84.02766,26.21432],[84.03121,26.21689],[84.02859,26.2203],[84.02302,26.22002],[84.01579,26.22239],[84.01231,26.2324],[84.0156,26.23377],[84.01923,26.23894],[84.02466,26.23777],[84.02726,26.23965],[84.03823,26.23699],[84.0377,26.23206],[84.04213,26.22996],[84.0512,26.22915],[84.06208,26.22227],[84.06346,26.22415],[84.08016,26.2223],[84.08022,26.21971],[84.08641,26.21875],[84.08825,26.22353],[84.08764,26.23036],[84.09017,26.23034],[84.09104,26.23378],[84.09812,26.23332],[84.09949,26.23732],[84.10602,26.23669],[84.10708,26.24123],[84.11744,26.24011],[84.11968,26.24791],[84.11679,26.24974],[84.12002,26.25807],[84.12169,26.25887],[84.12726,26.258],[84.12917,26.25555],[84.13222,26.25903],[84.14655,26.25521],[84.15116,26.25779],[84.16309,26.24184],[84.16621,26.24095],[84.1615,26.25032],[84.16117,26.25592],[84.16408,26.25911],[84.17278,26.26151],[84.17662,26.26454],[84.17451,26.29227],[84.17774,26.3032],[84.18394,26.3087],[84.18597,26.3129],[84.17254,26.33435],[84.17284,26.3535],[84.1759,26.3606],[84.17668,26.37068],[84.17542,26.37309],[84.16378,26.37544],[84.16113,26.37407],[84.13752,26.37794],[84.1356,26.38171],[84.12466,26.38304],[84.12199,26.38512],[84.1029,26.38571],[84.09929,26.3846],[84.08876,26.38678],[84.08771,26.38416],[84.08401,26.38178],[84.07917,26.38251],[84.07918,26.38465],[84.07609,26.38507],[84.07581,26.38644],[84.06816,26.38827],[84.06798,26.39108],[84.06513,26.39285],[84.06547,26.39647],[84.06244,26.39842],[84.06313,26.40072],[84.05538,26.4022],[84.05287,26.4046],[84.04937,26.40374],[84.04951,26.40711],[84.04363,26.40951],[84.0412,26.40726],[84.03968,26.41089],[84.04097,26.41269],[84.03386,26.41165],[84.03486,26.41946],[84.02261,26.43089],[84.02442,26.43424],[84.02379,26.44025],[84.01683,26.44755],[84.00763,26.44396],[83.9979,26.44681],[83.99126,26.43224],[83.98101,26.4328],[83.96333,26.4373],[83.94624,26.43862],[83.94678,26.44098],[83.92445,26.44449],[83.91056,26.44991],[83.91104,26.44705],[83.90802,26.44709],[83.90923,26.45375],[83.91146,26.45591],[83.90973,26.46616],[83.91231,26.4757],[83.90962,26.47569],[83.9106,26.48322],[83.91269,26.48388],[83.9124,26.49773],[83.91517,26.50284],[83.90674,26.50938],[83.90606,26.51265],[83.90809,26.51908],[83.9164,26.51667],[83.9223,26.51961],[83.92706,26.51888],[83.93124,26.52032],[83.93462,26.52513],[83.94036,26.52524],[83.94668,26.51878],[83.95279,26.51776],[83.95261,26.51635],[83.94941,26.51596],[83.94772,26.51248],[83.95102,26.50905],[83.96147,26.51028],[83.96608,26.50759],[83.97368,26.50804],[83.97201,26.51028],[83.97362,26.51266],[83.97184,26.51421],[83.97151,26.51761],[83.97652,26.52583],[83.97511,26.52785],[83.97613,26.53351],[83.98274,26.53153],[83.99264,26.53317],[83.99882,26.52723],[84.00685,26.52528],[84.00649,26.52226],[84.00832,26.52194],[84.01406,26.52738],[84.02381,26.53191],[84.04812,26.5364],[84.05633,26.54417],[84.05644,26.54913],[84.05477,26.55113],[84.04553,26.55364],[84.03383,26.56394],[84.03121,26.57261],[84.01791,26.5771],[84.01487,26.57551],[84.00993,26.57894],[84.00725,26.58555],[84.0046,26.58811],[84.00428,26.59348],[83.99694,26.59623],[83.99505,26.59339],[83.99268,26.59507],[83.98831,26.60156],[83.98625,26.61275],[83.97462,26.62299],[83.96639,26.62463],[83.963,26.62863],[83.96154,26.63262],[83.96534,26.63738],[83.96718,26.64447],[83.96248,26.65776],[83.95901,26.65776],[83.96066,26.66106],[83.96122,26.67036],[83.95732,26.67483],[83.9553,26.67368],[83.9506,26.67713],[83.94677,26.67562],[83.93681,26.67879],[83.93168,26.67676],[83.92739,26.67928],[83.92434,26.67857],[83.9209,26.68135],[83.92061,26.68447],[83.91494,26.68606],[83.91255,26.69045],[83.90584,26.69083],[83.90219,26.6973],[83.90308,26.70172],[83.89458,26.70628],[83.89436,26.71114],[83.8961,26.71338],[83.89529,26.71724],[83.88952,26.72619],[83.88763,26.73426],[83.8761,26.74176],[83.8682,26.75025],[83.86041,26.75063],[83.85018,26.74845],[83.84909,26.75034]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"138","area_level":"District","area_name":"Etah","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.55677,27.78204],[78.55208,27.78618],[78.54745,27.78126],[78.54286,27.78349],[78.5326,27.77566],[78.52748,27.76997],[78.53289,27.76684],[78.53815,27.76011],[78.53367,27.75335],[78.52713,27.75277],[78.51207,27.74045],[78.52728,27.72463],[78.5066,27.70619],[78.51806,27.69347],[78.5131,27.69287],[78.51005,27.68844],[78.50401,27.68548],[78.50515,27.67852],[78.5122,27.67043],[78.51643,27.67018],[78.50977,27.66888],[78.51022,27.66469],[78.50462,27.65926],[78.50744,27.65654],[78.50322,27.65131],[78.50446,27.64815],[78.49777,27.64321],[78.4992,27.63416],[78.50499,27.624],[78.49994,27.61761],[78.49849,27.61964],[78.49248,27.61517],[78.48692,27.61364],[78.47042,27.61961],[78.4635,27.6112],[78.45865,27.60987],[78.45585,27.6067],[78.45342,27.60737],[78.44827,27.60343],[78.45061,27.60004],[78.44738,27.59617],[78.43855,27.59142],[78.42258,27.58822],[78.41534,27.57946],[78.41128,27.5806],[78.40936,27.58328],[78.40487,27.58242],[78.39904,27.59017],[78.38803,27.57892],[78.3934,27.57208],[78.39143,27.56993],[78.38518,27.56724],[78.3797,27.56827],[78.37522,27.56554],[78.37059,27.56772],[78.36295,27.56043],[78.35965,27.56089],[78.35823,27.56296],[78.36465,27.56919],[78.36066,27.57512],[78.35553,27.57412],[78.34722,27.57546],[78.33899,27.58039],[78.33866,27.58327],[78.33276,27.58308],[78.33334,27.58076],[78.33156,27.57731],[78.31817,27.57406],[78.31731,27.57028],[78.31965,27.56601],[78.31132,27.55553],[78.31828,27.54835],[78.31454,27.54327],[78.30514,27.55184],[78.29992,27.54708],[78.29831,27.5478],[78.29327,27.54451],[78.28969,27.54446],[78.28573,27.55377],[78.28114,27.55578],[78.27126,27.54895],[78.28358,27.53601],[78.28197,27.53256],[78.27698,27.53039],[78.27695,27.52885],[78.272,27.52529],[78.27026,27.52686],[78.26644,27.526],[78.26445,27.52716],[78.25729,27.51904],[78.25239,27.51823],[78.24965,27.51963],[78.24529,27.52564],[78.24672,27.52718],[78.24379,27.52864],[78.23986,27.52604],[78.23698,27.52545],[78.2322,27.52717],[78.22868,27.5252],[78.22358,27.52884],[78.21337,27.52419],[78.22017,27.51462],[78.21817,27.50994],[78.21228,27.50589],[78.20656,27.5085],[78.20387,27.50219],[78.20261,27.49775],[78.2058,27.49554],[78.20516,27.49329],[78.20807,27.49019],[78.20669,27.48181],[78.20266,27.47945],[78.20007,27.47974],[78.19963,27.47746],[78.20227,27.47465],[78.1954,27.46494],[78.19591,27.46121],[78.19891,27.45893],[78.19683,27.45556],[78.19133,27.45644],[78.18663,27.4527],[78.18681,27.45011],[78.18404,27.44844],[78.18469,27.4466],[78.18118,27.44259],[78.18165,27.43997],[78.17881,27.43738],[78.17671,27.43766],[78.17385,27.42977],[78.18126,27.42476],[78.18815,27.42713],[78.1939,27.43372],[78.19951,27.4343],[78.20205,27.42842],[78.19707,27.4246],[78.19835,27.42313],[78.19696,27.41853],[78.19266,27.41594],[78.19426,27.40908],[78.19657,27.40728],[78.19691,27.40255],[78.1992,27.40322],[78.20123,27.40173],[78.20425,27.40314],[78.21589,27.40047],[78.22076,27.40423],[78.22576,27.40559],[78.23366,27.40067],[78.23915,27.4009],[78.24408,27.39483],[78.25073,27.39199],[78.25725,27.39497],[78.26303,27.39033],[78.26849,27.39097],[78.2715,27.38863],[78.27775,27.39444],[78.28527,27.38878],[78.28647,27.38412],[78.29476,27.38869],[78.29781,27.39298],[78.30051,27.39354],[78.31882,27.37537],[78.32299,27.37523],[78.32178,27.37806],[78.32325,27.38301],[78.32919,27.38936],[78.33428,27.3908],[78.33802,27.38829],[78.35227,27.3969],[78.35726,27.39523],[78.36293,27.38984],[78.36562,27.37852],[78.37582,27.37016],[78.38037,27.36925],[78.38214,27.36462],[78.38498,27.36434],[78.38707,27.36214],[78.39148,27.36843],[78.39529,27.36819],[78.3994,27.37208],[78.4056,27.3693],[78.41694,27.3692],[78.43405,27.3609],[78.44104,27.36545],[78.44521,27.37238],[78.45653,27.37452],[78.45979,27.36738],[78.46981,27.35656],[78.4717,27.34852],[78.47768,27.34294],[78.49005,27.35351],[78.48332,27.35779],[78.48871,27.36398],[78.48439,27.37481],[78.48431,27.38018],[78.48607,27.38283],[78.48458,27.38376],[78.49145,27.38754],[78.4903,27.39315],[78.48894,27.39428],[78.48467,27.39276],[78.47505,27.40201],[78.47119,27.41002],[78.46421,27.41772],[78.46367,27.42486],[78.4677,27.42815],[78.47171,27.42912],[78.47559,27.42875],[78.47966,27.42524],[78.49123,27.42327],[78.49411,27.42904],[78.50428,27.43659],[78.5032,27.43958],[78.50663,27.43995],[78.50487,27.45633],[78.51093,27.46408],[78.5177,27.46264],[78.52184,27.45666],[78.52282,27.44971],[78.52879,27.44985],[78.53063,27.45177],[78.53459,27.4494],[78.54039,27.44188],[78.54376,27.44213],[78.54866,27.45159],[78.55347,27.45661],[78.55214,27.4607],[78.56395,27.47243],[78.56977,27.47483],[78.58271,27.4738],[78.58669,27.4765],[78.58726,27.49087],[78.59011,27.49409],[78.59404,27.49198],[78.59872,27.49832],[78.59673,27.5086],[78.6064,27.51072],[78.61247,27.50904],[78.61935,27.50316],[78.62333,27.50311],[78.62793,27.4901],[78.63003,27.48827],[78.63269,27.48954],[78.6328,27.49125],[78.64394,27.48919],[78.65135,27.49318],[78.65303,27.49075],[78.65891,27.4914],[78.66183,27.48986],[78.66472,27.47874],[78.66407,27.47303],[78.66306,27.47208],[78.65976,27.4739],[78.6493,27.46064],[78.64606,27.44479],[78.64377,27.43841],[78.64096,27.43637],[78.64082,27.43182],[78.63941,27.43215],[78.64306,27.42801],[78.64101,27.42623],[78.64326,27.42054],[78.65955,27.41946],[78.66399,27.41482],[78.66854,27.41776],[78.67021,27.41641],[78.67299,27.41291],[78.67069,27.41101],[78.67503,27.40017],[78.67346,27.39526],[78.68251,27.38787],[78.68529,27.38346],[78.70671,27.37689],[78.71213,27.37985],[78.71369,27.37709],[78.71333,27.37271],[78.71813,27.36875],[78.71922,27.36464],[78.71584,27.35416],[78.71806,27.34433],[78.72716,27.34081],[78.73461,27.33195],[78.74354,27.33526],[78.75445,27.34524],[78.76583,27.33629],[78.77506,27.33449],[78.77605,27.33606],[78.77941,27.33632],[78.78203,27.34182],[78.78206,27.34732],[78.79279,27.34846],[78.80388,27.35234],[78.80992,27.35695],[78.81698,27.35277],[78.821,27.35614],[78.82516,27.35668],[78.82758,27.35514],[78.82976,27.35875],[78.834,27.36105],[78.83526,27.36531],[78.84438,27.37399],[78.85444,27.39231],[78.84285,27.40047],[78.83952,27.39843],[78.84093,27.40526],[78.83788,27.41055],[78.85161,27.4176],[78.86162,27.42701],[78.86065,27.42939],[78.86417,27.43225],[78.86775,27.43842],[78.87154,27.43745],[78.87156,27.44503],[78.87604,27.45122],[78.88072,27.45564],[78.88586,27.45636],[78.88246,27.46249],[78.88672,27.4664],[78.88538,27.46795],[78.88702,27.46985],[78.88559,27.47247],[78.88706,27.47339],[78.89021,27.47266],[78.89039,27.47084],[78.8962,27.47051],[78.90366,27.46691],[78.90272,27.4662],[78.90709,27.46067],[78.91048,27.45969],[78.90821,27.45855],[78.90929,27.45645],[78.91337,27.4577],[78.91838,27.45341],[78.92195,27.45322],[78.92601,27.44602],[78.93471,27.45278],[78.93948,27.45106],[78.94026,27.44878],[78.93577,27.44758],[78.93771,27.44233],[78.93571,27.43746],[78.94084,27.43626],[78.93868,27.43168],[78.94855,27.42655],[78.9514,27.42818],[78.95211,27.42635],[78.95497,27.4296],[78.95823,27.42989],[78.9585,27.42492],[78.95603,27.42218],[78.96087,27.41826],[78.96813,27.42329],[78.97254,27.41751],[78.97543,27.4179],[78.9747,27.42038],[78.97676,27.42231],[78.97552,27.42436],[78.97684,27.42765],[78.98449,27.42947],[78.99398,27.42446],[78.99456,27.42245],[78.98967,27.42171],[78.99351,27.4209],[78.99893,27.4263],[78.99718,27.43054],[78.99855,27.43247],[79.00945,27.42817],[79.01214,27.43011],[79.02002,27.42748],[79.02966,27.42992],[79.0319,27.42808],[79.03558,27.42993],[79.05658,27.42042],[79.05775,27.42286],[79.06159,27.42266],[79.06133,27.41973],[79.06305,27.41799],[79.06575,27.41957],[79.06928,27.41768],[79.07198,27.42094],[79.09947,27.4304],[79.10676,27.43479],[79.10774,27.43337],[79.10584,27.43067],[79.10877,27.4272],[79.11174,27.42629],[79.10968,27.41873],[79.11186,27.41706],[79.11747,27.41769],[79.11864,27.41288],[79.11714,27.41106],[79.11524,27.41324],[79.11416,27.41234],[79.1152,27.40615],[79.11821,27.40745],[79.12815,27.40247],[79.12934,27.40415],[79.13259,27.40355],[79.13377,27.40173],[79.13545,27.40359],[79.13733,27.39744],[79.14105,27.39808],[79.13805,27.39467],[79.13846,27.39126],[79.14009,27.39116],[79.13901,27.38678],[79.14108,27.3878],[79.14301,27.38634],[79.14256,27.38122],[79.13988,27.38282],[79.13885,27.38136],[79.14204,27.37991],[79.14085,27.37802],[79.14535,27.37918],[79.15113,27.37831],[79.14944,27.37534],[79.15118,27.37424],[79.15213,27.37791],[79.15685,27.37562],[79.15535,27.37864],[79.15681,27.37948],[79.15947,27.37577],[79.15895,27.37992],[79.16006,27.38076],[79.16176,27.38039],[79.16273,27.37774],[79.16634,27.3774],[79.16765,27.37455],[79.17363,27.37672],[79.17558,27.37253],[79.17222,27.37144],[79.17626,27.37037],[79.17608,27.37217],[79.1779,27.3733],[79.17926,27.37029],[79.17716,27.36823],[79.18091,27.36676],[79.18012,27.36533],[79.18151,27.36604],[79.18516,27.36266],[79.18809,27.36638],[79.18994,27.36052],[79.19156,27.36217],[79.19322,27.35953],[79.19593,27.36133],[79.19496,27.35719],[79.19754,27.35678],[79.19499,27.35026],[79.19998,27.34547],[79.20303,27.34741],[79.20569,27.34532],[79.20655,27.34428],[79.20387,27.34299],[79.20774,27.34311],[79.20515,27.34115],[79.20771,27.34115],[79.20607,27.33969],[79.2084,27.33895],[79.20746,27.3372],[79.21236,27.33277],[79.215,27.33215],[79.21626,27.334],[79.2186,27.33238],[79.22043,27.33638],[79.22413,27.33351],[79.22468,27.33086],[79.22686,27.32989],[79.22887,27.33178],[79.22904,27.32895],[79.23207,27.32719],[79.23635,27.32644],[79.23741,27.32716],[79.23448,27.32884],[79.23564,27.32958],[79.23822,27.32863],[79.23917,27.32621],[79.24044,27.32855],[79.24239,27.32885],[79.24486,27.32368],[79.24843,27.32835],[79.25064,27.32751],[79.24993,27.32553],[79.25137,27.32484],[79.25546,27.33035],[79.25187,27.33021],[79.25138,27.33397],[79.25407,27.34217],[79.26153,27.3381],[79.26602,27.34269],[79.27588,27.34744],[79.27723,27.35051],[79.27379,27.35795],[79.26471,27.36287],[79.26137,27.36235],[79.25432,27.37073],[79.25327,27.37817],[79.25532,27.38064],[79.25293,27.3838],[79.25247,27.38801],[79.25559,27.39341],[79.23296,27.40623],[79.22924,27.40506],[79.22379,27.41126],[79.23096,27.4184],[79.2373,27.41848],[79.2437,27.41475],[79.25045,27.41746],[79.25971,27.42844],[79.25748,27.43052],[79.25941,27.43161],[79.25849,27.43887],[79.26258,27.44481],[79.25091,27.45453],[79.25773,27.46266],[79.24804,27.4688],[79.24649,27.47211],[79.24975,27.47566],[79.25092,27.47892],[79.24918,27.48247],[79.25148,27.48466],[79.25661,27.48728],[79.25924,27.49109],[79.26259,27.48999],[79.27069,27.49359],[79.26686,27.50006],[79.26789,27.50301],[79.27185,27.50639],[79.2716,27.51211],[79.27326,27.5146],[79.27067,27.51489],[79.27033,27.51811],[79.26478,27.52088],[79.25713,27.52062],[79.25157,27.51779],[79.24901,27.52111],[79.24362,27.52182],[79.24177,27.52436],[79.23218,27.52806],[79.22055,27.53643],[79.22482,27.54241],[79.22591,27.54574],[79.22443,27.54645],[79.22484,27.54794],[79.23027,27.55566],[79.22856,27.55736],[79.22928,27.56299],[79.22781,27.56657],[79.21579,27.57896],[79.20277,27.56352],[79.19939,27.5646],[79.1921,27.56294],[79.18553,27.57016],[79.1801,27.56512],[79.16523,27.57501],[79.16553,27.56837],[79.16194,27.56762],[79.15901,27.57822],[79.15423,27.5757],[79.15129,27.56766],[79.14846,27.56739],[79.14285,27.5619],[79.13639,27.56447],[79.125,27.5592],[79.11393,27.56223],[79.10796,27.56108],[79.1068,27.56366],[79.09938,27.55969],[79.09569,27.56156],[79.09298,27.55894],[79.07837,27.56119],[79.07592,27.55795],[79.06378,27.56845],[79.0615,27.56787],[79.05759,27.57064],[79.05565,27.56964],[79.05386,27.57082],[79.0542,27.57472],[79.05079,27.57688],[79.04824,27.57616],[79.03145,27.584],[79.03419,27.5885],[79.0286,27.59398],[79.03025,27.5948],[79.02867,27.59839],[79.02331,27.60302],[79.02268,27.60634],[79.01566,27.60992],[79.01684,27.61267],[79.01377,27.61617],[79.00546,27.6195],[79.00606,27.62539],[78.99818,27.6339],[79.00024,27.63723],[78.99743,27.64076],[79.00021,27.64422],[78.99529,27.6473],[78.98021,27.63381],[78.97458,27.63554],[78.97153,27.6224],[78.96715,27.61501],[78.97031,27.61332],[78.97115,27.61558],[78.97558,27.61156],[78.97971,27.60572],[78.9787,27.60264],[78.98281,27.60045],[78.98214,27.59834],[78.96983,27.58901],[78.97558,27.58441],[78.97233,27.58172],[78.96872,27.57307],[78.96662,27.5735],[78.96811,27.56789],[78.95857,27.56237],[78.95178,27.57482],[78.94832,27.57195],[78.94051,27.56919],[78.92871,27.55981],[78.92077,27.56296],[78.91723,27.56187],[78.90984,27.55741],[78.90286,27.54948],[78.89097,27.55074],[78.88686,27.55213],[78.8865,27.55643],[78.88458,27.55855],[78.89248,27.55825],[78.89367,27.56164],[78.89039,27.56213],[78.89049,27.56386],[78.89385,27.56768],[78.89692,27.56857],[78.89515,27.57217],[78.8931,27.57151],[78.89031,27.57434],[78.89136,27.57827],[78.89379,27.57719],[78.89498,27.57887],[78.88988,27.58252],[78.88916,27.5856],[78.8865,27.58765],[78.88214,27.58801],[78.87323,27.59215],[78.87007,27.58763],[78.87203,27.58136],[78.86682,27.58038],[78.86439,27.57815],[78.85951,27.57873],[78.85811,27.58026],[78.85445,27.57846],[78.85478,27.58259],[78.85797,27.58411],[78.85991,27.58778],[78.85897,27.59514],[78.84915,27.59773],[78.8499,27.59958],[78.8471,27.60074],[78.84491,27.59984],[78.8447,27.59804],[78.8421,27.59768],[78.83895,27.59909],[78.84091,27.60154],[78.83104,27.60619],[78.82776,27.60593],[78.82838,27.60209],[78.8261,27.60787],[78.82093,27.60598],[78.82006,27.60419],[78.81123,27.60547],[78.81091,27.60297],[78.80704,27.60556],[78.80645,27.6082],[78.80465,27.60642],[78.80257,27.6079],[78.80434,27.60993],[78.7995,27.61244],[78.79776,27.61716],[78.79329,27.62246],[78.78896,27.62146],[78.7887,27.62766],[78.78108,27.62667],[78.77984,27.62914],[78.78141,27.63228],[78.77586,27.63006],[78.77726,27.63229],[78.77477,27.63293],[78.77485,27.63621],[78.77164,27.63364],[78.76099,27.63097],[78.7516,27.63245],[78.74875,27.63636],[78.74551,27.63751],[78.74335,27.63717],[78.7432,27.63401],[78.74127,27.63403],[78.74118,27.64351],[78.74048,27.64472],[78.73711,27.64224],[78.73818,27.64629],[78.73485,27.64705],[78.73305,27.65308],[78.72539,27.65973],[78.72776,27.66302],[78.7244,27.66412],[78.7253,27.666],[78.72323,27.66577],[78.72303,27.66851],[78.71912,27.66758],[78.7206,27.67192],[78.71829,27.67194],[78.71405,27.6679],[78.71327,27.67186],[78.71109,27.67038],[78.70815,27.67134],[78.70315,27.67539],[78.70057,27.6795],[78.70229,27.68023],[78.70233,27.68211],[78.69997,27.6834],[78.70047,27.68562],[78.69567,27.68536],[78.69552,27.68815],[78.69718,27.68947],[78.69499,27.6909],[78.69474,27.69789],[78.69623,27.70102],[78.69183,27.70728],[78.69393,27.70948],[78.69325,27.71317],[78.69666,27.71427],[78.68647,27.72932],[78.68705,27.73335],[78.69132,27.73668],[78.68851,27.73853],[78.68755,27.74181],[78.6851,27.74124],[78.68338,27.74265],[78.67891,27.73747],[78.67116,27.73425],[78.66355,27.7399],[78.6613,27.74669],[78.6526,27.75014],[78.64302,27.74222],[78.63944,27.7428],[78.63574,27.74111],[78.63319,27.74271],[78.62932,27.74128],[78.61826,27.74545],[78.61261,27.7437],[78.61128,27.74421],[78.61214,27.74674],[78.6021,27.75522],[78.60414,27.75769],[78.60171,27.7607],[78.60499,27.76275],[78.60272,27.76621],[78.6036,27.76795],[78.59971,27.77125],[78.59713,27.77226],[78.59217,27.76803],[78.5874,27.76941],[78.58515,27.768],[78.57953,27.77128],[78.57645,27.76796],[78.5714,27.7706],[78.56667,27.768],[78.55677,27.78204]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"139","area_level":"District","area_name":"Etawah","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.18026,27.0063],[79.16721,27.0062],[79.16391,27.00153],[79.16375,26.99749],[79.15767,26.99923],[79.14644,26.99751],[79.13457,27.00118],[79.12495,26.99411],[79.12063,26.99533],[79.11708,27.00038],[79.1125,26.99345],[79.10549,26.99677],[79.1023,26.99623],[79.09299,26.99946],[79.09404,26.99398],[79.09868,26.98618],[79.09734,26.98223],[79.09089,26.98043],[79.08671,26.97675],[79.08429,26.97843],[79.08331,26.98428],[79.07659,26.99118],[79.07375,26.98907],[79.06399,26.98843],[79.05175,26.98162],[79.04923,26.97526],[79.04966,26.97192],[79.04794,26.9708],[79.04511,26.97215],[79.04239,26.96797],[79.03941,26.96639],[79.03464,26.96726],[79.02508,26.95267],[79.01152,26.94514],[79.00949,26.94892],[79.008,26.94896],[79.00664,26.95347],[78.99947,26.95745],[79.00335,26.96869],[78.99123,26.9802],[78.98835,26.97615],[78.97793,26.97798],[78.97629,26.97684],[78.96363,26.9831],[78.95806,26.98823],[78.9509,26.98533],[78.95097,26.98257],[78.95546,26.98035],[78.95187,26.977],[78.94975,26.97869],[78.94726,26.97718],[78.94435,26.96925],[78.93638,26.97216],[78.93529,26.98047],[78.92376,26.98452],[78.92603,26.98216],[78.91904,26.97401],[78.92544,26.96825],[78.92181,26.9625],[78.91992,26.96434],[78.91466,26.96175],[78.90963,26.96552],[78.90731,26.96394],[78.89657,26.96769],[78.8864,26.96244],[78.88402,26.96349],[78.87579,26.96084],[78.87204,26.96132],[78.86708,26.95841],[78.85789,26.96537],[78.85565,26.97075],[78.85309,26.97231],[78.85117,26.96838],[78.84667,26.96547],[78.84479,26.9665],[78.84503,26.96477],[78.84139,26.96396],[78.83939,26.96046],[78.83654,26.9594],[78.83907,26.9585],[78.83848,26.95632],[78.84111,26.95327],[78.83839,26.95342],[78.83177,26.94904],[78.82821,26.94902],[78.82073,26.95416],[78.8147,26.95401],[78.80706,26.9584],[78.79496,26.95012],[78.79054,26.95084],[78.78788,26.94494],[78.78267,26.94715],[78.78116,26.9456],[78.77683,26.94879],[78.7665,26.93716],[78.76091,26.93361],[78.75199,26.91893],[78.74578,26.91537],[78.74134,26.89826],[78.74336,26.89133],[78.7487,26.88676],[78.75107,26.88647],[78.75519,26.88927],[78.75378,26.90682],[78.75844,26.909],[78.76716,26.90594],[78.76999,26.902],[78.76828,26.8985],[78.77112,26.89595],[78.77608,26.88239],[78.78215,26.88262],[78.78661,26.87895],[78.7811,26.86943],[78.78236,26.86441],[78.78468,26.86261],[78.79775,26.86388],[78.79768,26.86869],[78.80084,26.87447],[78.80448,26.8755],[78.80635,26.87481],[78.80483,26.87344],[78.81068,26.87319],[78.81429,26.86865],[78.81514,26.87053],[78.81775,26.87097],[78.81829,26.86975],[78.81609,26.86933],[78.81939,26.86341],[78.81907,26.85671],[78.82066,26.85673],[78.82803,26.84889],[78.82573,26.8439],[78.84141,26.83198],[78.84572,26.82556],[78.84786,26.81764],[78.8539,26.81046],[78.84764,26.7994],[78.83334,26.78918],[78.83406,26.79103],[78.8327,26.79218],[78.82108,26.79509],[78.82089,26.79832],[78.81523,26.80167],[78.81287,26.80016],[78.80893,26.80177],[78.80705,26.80011],[78.7995,26.80274],[78.79306,26.80125],[78.79183,26.79461],[78.78365,26.77828],[78.78432,26.77674],[78.78062,26.7747],[78.78041,26.76752],[78.77692,26.75847],[78.81239,26.76335],[78.81899,26.76094],[78.82243,26.75725],[78.83194,26.73941],[78.84319,26.7283],[78.85848,26.70928],[78.87236,26.69779],[78.88918,26.69696],[78.90007,26.70054],[78.90683,26.7065],[78.91256,26.70683],[78.92419,26.70343],[78.93438,26.69757],[78.95606,26.69168],[78.9586,26.68733],[78.95772,26.68306],[78.94887,26.67492],[78.94248,26.66407],[78.94298,26.65669],[78.94549,26.65482],[78.94929,26.65454],[78.9572,26.65766],[78.9711,26.67145],[78.98334,26.67688],[78.99778,26.67664],[79.00852,26.66929],[79.00863,26.66331],[78.99346,26.64191],[79.00803,26.62356],[79.01706,26.60104],[78.99808,26.59763],[78.99205,26.59406],[78.98914,26.59556],[78.98748,26.59283],[78.98759,26.58632],[78.99004,26.58465],[78.98978,26.57845],[78.99107,26.57701],[79.00069,26.57798],[79.00724,26.56546],[79.00628,26.55937],[79.01434,26.55105],[79.01269,26.54912],[79.00702,26.54859],[79.00774,26.54387],[79.00992,26.54322],[79.01457,26.54619],[79.01712,26.54149],[79.01887,26.54095],[79.02638,26.54679],[79.02834,26.54669],[79.02915,26.54317],[79.0266,26.53571],[79.03981,26.52986],[79.0383,26.51845],[79.03966,26.51511],[79.04183,26.51457],[79.0462,26.51821],[79.04862,26.518],[79.04493,26.5103],[79.0538,26.50254],[79.05632,26.49509],[79.06813,26.49662],[79.0678,26.4846],[79.0717,26.47887],[79.0616,26.46532],[79.05779,26.46235],[79.05262,26.45374],[79.0573,26.45249],[79.06215,26.45384],[79.06382,26.44871],[79.06807,26.44598],[79.06755,26.4441],[79.06967,26.44166],[79.07701,26.44214],[79.07879,26.44036],[79.08132,26.44123],[79.08172,26.44297],[79.08381,26.44146],[79.08784,26.44618],[79.0959,26.44259],[79.09722,26.44479],[79.09607,26.44999],[79.09972,26.45259],[79.10788,26.44814],[79.11801,26.44558],[79.1219,26.44705],[79.12301,26.44406],[79.12703,26.44296],[79.12937,26.44044],[79.14224,26.43828],[79.14531,26.43995],[79.14715,26.43865],[79.14838,26.44042],[79.15536,26.43992],[79.16559,26.43544],[79.17279,26.43442],[79.17956,26.42804],[79.18586,26.43105],[79.19549,26.42499],[79.20116,26.42737],[79.20983,26.43777],[79.21255,26.43718],[79.22295,26.44769],[79.25491,26.45722],[79.26331,26.46381],[79.26894,26.47377],[79.2692,26.4802],[79.26711,26.48447],[79.26084,26.48925],[79.25045,26.49229],[79.25629,26.50025],[79.27011,26.50831],[79.2832,26.50799],[79.2925,26.5095],[79.29937,26.51195],[79.30653,26.51728],[79.30584,26.52182],[79.30166,26.52497],[79.287,26.52711],[79.2826,26.52641],[79.2558,26.51263],[79.24396,26.51241],[79.24161,26.51551],[79.24313,26.51919],[79.24298,26.52827],[79.24006,26.53699],[79.23659,26.54186],[79.23102,26.54192],[79.21162,26.53575],[79.20749,26.53687],[79.20526,26.54383],[79.20677,26.54596],[79.21816,26.54691],[79.22065,26.54881],[79.22148,26.55414],[79.22087,26.55746],[79.21982,26.55688],[79.21843,26.55991],[79.21875,26.56465],[79.22144,26.56684],[79.22723,26.578],[79.23756,26.5893],[79.23727,26.59154],[79.24927,26.60462],[79.25379,26.60626],[79.25613,26.6099],[79.25434,26.61195],[79.257,26.61512],[79.25526,26.61638],[79.25676,26.61876],[79.26107,26.62236],[79.26535,26.61957],[79.27351,26.62175],[79.28141,26.61979],[79.28912,26.63095],[79.29021,26.63015],[79.2985,26.6372],[79.30264,26.63694],[79.30636,26.64087],[79.30993,26.64004],[79.31292,26.646],[79.31137,26.64852],[79.31176,26.65175],[79.31663,26.65436],[79.31949,26.65879],[79.31498,26.66516],[79.30647,26.6711],[79.31496,26.67693],[79.3162,26.6808],[79.30986,26.68621],[79.30489,26.68716],[79.30795,26.68941],[79.30844,26.69515],[79.31837,26.69752],[79.31342,26.69836],[79.31652,26.70806],[79.32208,26.70489],[79.32836,26.71164],[79.3309,26.71645],[79.33114,26.72123],[79.33795,26.72373],[79.34303,26.73154],[79.34027,26.73748],[79.3377,26.73915],[79.33853,26.74683],[79.33653,26.75117],[79.33928,26.75688],[79.33291,26.75921],[79.32585,26.7651],[79.32602,26.7774],[79.32449,26.77855],[79.3291,26.79119],[79.33499,26.79047],[79.33933,26.79957],[79.33928,26.80787],[79.33272,26.81412],[79.33152,26.81844],[79.34616,26.83343],[79.33399,26.84556],[79.337,26.84825],[79.33617,26.85291],[79.34149,26.85842],[79.34459,26.87795],[79.34235,26.87981],[79.34689,26.88657],[79.33911,26.89153],[79.34051,26.89316],[79.34451,26.89228],[79.3458,26.89398],[79.34718,26.89884],[79.34106,26.90108],[79.34453,26.90535],[79.34211,26.91025],[79.34224,26.91486],[79.3465,26.91653],[79.34818,26.91917],[79.34965,26.92841],[79.34554,26.93328],[79.33981,26.93233],[79.33806,26.93619],[79.33002,26.94061],[79.31699,26.94368],[79.31694,26.95215],[79.32497,26.96037],[79.31887,26.96517],[79.31953,26.97095],[79.32238,26.97312],[79.31735,26.97477],[79.3173,26.97754],[79.30746,26.98143],[79.30335,26.98468],[79.30179,26.98304],[79.29795,26.98306],[79.29403,26.97832],[79.28947,26.97967],[79.28513,26.98578],[79.28318,26.98361],[79.27763,26.985],[79.27444,26.9842],[79.27246,26.9875],[79.27346,26.98979],[79.27131,26.99003],[79.26939,26.98963],[79.26656,26.98446],[79.25677,26.98167],[79.25549,26.97963],[79.24824,26.98413],[79.24225,26.9809],[79.24017,26.98164],[79.2333,26.9755],[79.22569,26.97532],[79.2172,26.97108],[79.21358,26.97245],[79.20901,26.97007],[79.19469,26.97826],[79.19327,26.98582],[79.19468,26.98729],[79.19467,26.99719],[79.19135,27.00145],[79.18026,27.0063]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"14","area_level":"District","area_name":"Udhampur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.09803,33.18676],[75.09584,33.18814],[75.08886,33.18234],[75.08553,33.17659],[75.07628,33.17212],[75.07806,33.16465],[75.06936,33.1616],[75.06506,33.15593],[75.06019,33.1548],[75.06204,33.15109],[75.06128,33.14832],[75.06334,33.14755],[75.06564,33.14996],[75.06672,33.14649],[75.07189,33.14446],[75.06882,33.14213],[75.06932,33.13854],[75.07474,33.14146],[75.07705,33.14043],[75.07353,33.13322],[75.06892,33.12947],[75.06479,33.12839],[75.05939,33.12785],[75.04825,33.12997],[75.04032,33.12554],[75.03239,33.11736],[75.02196,33.10998],[75.00068,33.10272],[74.98799,33.09626],[74.97532,33.08379],[74.97088,33.07789],[74.96963,33.07307],[74.98106,33.0739],[74.99877,33.06242],[74.99039,33.05723],[74.98879,33.05112],[74.97171,33.04577],[74.96283,33.0393],[74.96523,33.02997],[74.97537,33.03],[74.97622,33.02545],[74.9848,33.02677],[74.99678,33.01789],[74.99866,33.01479],[74.9958,33.00566],[74.99243,33.00174],[74.99527,32.99763],[74.9939,32.98865],[74.98876,32.98003],[74.98717,32.97416],[74.98369,32.97162],[74.98466,32.9622],[74.97892,32.95796],[74.97755,32.94816],[74.9743,32.94784],[74.96996,32.94219],[74.97826,32.92908],[74.97883,32.92487],[74.9917,32.9119],[75.00201,32.9053],[75.01121,32.89618],[75.01226,32.8926],[75.0272,32.88312],[75.03286,32.87488],[75.04274,32.87107],[75.04985,32.86639],[75.05557,32.86552],[75.07677,32.84728],[75.09862,32.83446],[75.1116,32.82912],[75.11447,32.8268],[75.11624,32.82183],[75.12882,32.81566],[75.13179,32.81129],[75.12812,32.79956],[75.13089,32.79433],[75.14599,32.79077],[75.15328,32.787],[75.1574,32.78848],[75.15764,32.78326],[75.1614,32.77447],[75.16519,32.77292],[75.16692,32.77028],[75.16702,32.76784],[75.16382,32.76353],[75.14514,32.75751],[75.14139,32.75517],[75.13928,32.7505],[75.13244,32.74956],[75.13396,32.74618],[75.12941,32.74258],[75.13098,32.74014],[75.13008,32.73952],[75.12457,32.74095],[75.12128,32.74442],[75.11349,32.74245],[75.10235,32.73265],[75.09766,32.73103],[75.09169,32.72139],[75.09378,32.71613],[75.09938,32.71781],[75.10514,32.71552],[75.11142,32.71043],[75.11409,32.70956],[75.11766,32.71084],[75.12259,32.70748],[75.12418,32.71201],[75.11867,32.7172],[75.12567,32.71569],[75.13328,32.72038],[75.13635,32.72523],[75.14322,32.72299],[75.14692,32.72644],[75.15098,32.72379],[75.15117,32.72039],[75.15788,32.71574],[75.15729,32.71198],[75.15862,32.71096],[75.16336,32.71008],[75.16609,32.71159],[75.17638,32.70499],[75.17832,32.70101],[75.18217,32.69953],[75.18578,32.69568],[75.18812,32.69114],[75.19348,32.68878],[75.19976,32.68912],[75.20189,32.68488],[75.20456,32.68543],[75.20747,32.68326],[75.20182,32.67662],[75.20502,32.66666],[75.20439,32.66313],[75.21038,32.65895],[75.20203,32.6591],[75.20292,32.65583],[75.19825,32.65246],[75.20642,32.6534],[75.20866,32.65168],[75.20747,32.64476],[75.2231,32.63979],[75.23,32.64435],[75.23882,32.64256],[75.2384,32.64509],[75.24546,32.64639],[75.2462,32.65502],[75.24906,32.65563],[75.25209,32.65587],[75.25669,32.65161],[75.26062,32.65021],[75.2704,32.65102],[75.27896,32.64812],[75.27963,32.64569],[75.28706,32.64361],[75.28983,32.64779],[75.29428,32.64818],[75.29917,32.65321],[75.30438,32.65385],[75.30898,32.65168],[75.31135,32.65526],[75.31634,32.6564],[75.31832,32.65917],[75.32414,32.66058],[75.32696,32.66334],[75.33141,32.66389],[75.3324,32.66614],[75.34591,32.66663],[75.34614,32.65924],[75.34989,32.66362],[75.35359,32.66433],[75.35771,32.67077],[75.35907,32.67029],[75.35724,32.66666],[75.35841,32.66098],[75.36125,32.65957],[75.36233,32.66166],[75.36683,32.66294],[75.37105,32.66876],[75.37538,32.66879],[75.36579,32.67856],[75.37197,32.67862],[75.37459,32.67213],[75.37716,32.67311],[75.37741,32.67748],[75.3794,32.67987],[75.37147,32.69245],[75.37574,32.70007],[75.3806,32.69493],[75.38241,32.68574],[75.3865,32.67992],[75.38789,32.67374],[75.39378,32.66994],[75.39881,32.67443],[75.40624,32.6738],[75.40484,32.67654],[75.40813,32.67592],[75.41189,32.68155],[75.41496,32.68176],[75.41931,32.68097],[75.42021,32.67443],[75.42881,32.66302],[75.42978,32.66959],[75.43176,32.66988],[75.43304,32.67235],[75.43561,32.67299],[75.43889,32.67057],[75.4412,32.67356],[75.4445,32.67453],[75.45118,32.66777],[75.4552,32.66805],[75.45707,32.66516],[75.46518,32.66884],[75.46604,32.67308],[75.47379,32.67797],[75.47781,32.685],[75.47438,32.69032],[75.48036,32.69503],[75.48127,32.69792],[75.47668,32.70691],[75.47646,32.71046],[75.48354,32.71411],[75.48347,32.72258],[75.48197,32.72606],[75.4827,32.73291],[75.4899,32.74077],[75.49072,32.75651],[75.49568,32.76674],[75.50334,32.76577],[75.51676,32.77049],[75.52027,32.76771],[75.52425,32.77036],[75.53036,32.77162],[75.55218,32.77331],[75.55272,32.76781],[75.55585,32.76595],[75.55909,32.75772],[75.56391,32.75943],[75.574,32.75666],[75.58292,32.74431],[75.58429,32.74554],[75.58375,32.74984],[75.58782,32.75176],[75.58631,32.75335],[75.58799,32.75706],[75.58626,32.76074],[75.59742,32.7651],[75.59989,32.76857],[75.61189,32.77136],[75.61628,32.7758],[75.61998,32.7736],[75.63401,32.77118],[75.64572,32.77214],[75.64938,32.77472],[75.65615,32.77317],[75.6615,32.77757],[75.66884,32.77928],[75.67183,32.78806],[75.68198,32.78928],[75.68771,32.79515],[75.69012,32.79523],[75.69074,32.80467],[75.6875,32.8087],[75.69043,32.81596],[75.68235,32.82161],[75.68695,32.82814],[75.68913,32.829],[75.69008,32.83302],[75.69524,32.83782],[75.69427,32.84356],[75.69204,32.84696],[75.68548,32.8503],[75.68117,32.86791],[75.6774,32.86791],[75.675,32.87041],[75.67525,32.87741],[75.67687,32.88002],[75.67207,32.88991],[75.67299,32.89273],[75.66803,32.91176],[75.66491,32.91899],[75.66236,32.92076],[75.66259,32.92284],[75.65918,32.92262],[75.65964,32.92448],[75.65622,32.92771],[75.63713,32.92986],[75.63178,32.93504],[75.6283,32.9357],[75.62366,32.93975],[75.60889,32.93931],[75.60582,32.94358],[75.59594,32.94983],[75.58214,32.94706],[75.57784,32.95246],[75.57908,32.95753],[75.57721,32.96095],[75.57071,32.96168],[75.56218,32.9679],[75.55169,32.96597],[75.55034,32.96162],[75.54428,32.95692],[75.54222,32.9529],[75.53422,32.94943],[75.53235,32.95035],[75.52995,32.95626],[75.52225,32.95993],[75.51205,32.95665],[75.50544,32.95875],[75.50052,32.9556],[75.4893,32.95493],[75.47638,32.95745],[75.47032,32.9615],[75.46215,32.95784],[75.45991,32.96104],[75.45236,32.9622],[75.45308,32.96874],[75.44881,32.97487],[75.44514,32.97489],[75.43563,32.97934],[75.41726,32.9931],[75.42283,32.99964],[75.43646,33.00546],[75.42826,33.03716],[75.41938,33.05654],[75.41501,33.05509],[75.41396,33.05131],[75.41033,33.04876],[75.40733,33.0382],[75.40831,33.03513],[75.39739,33.03515],[75.39202,33.03784],[75.39059,33.04154],[75.38127,33.04457],[75.3765,33.04785],[75.37008,33.05643],[75.36941,33.06857],[75.36391,33.06637],[75.34423,33.07217],[75.34238,33.07346],[75.34125,33.07782],[75.33495,33.07864],[75.3281,33.08598],[75.30887,33.09236],[75.30015,33.09454],[75.26824,33.09434],[75.25694,33.10032],[75.24524,33.10318],[75.23461,33.11747],[75.22333,33.13864],[75.21856,33.14313],[75.21016,33.14673],[75.20225,33.14924],[75.19264,33.14985],[75.1687,33.14623],[75.15643,33.14133],[75.15319,33.14425],[75.1506,33.1505],[75.13258,33.17003],[75.12158,33.17858],[75.10782,33.18127],[75.09803,33.18676]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"140","area_level":"District","area_name":"Ayodhya","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.7637,26.86081],[81.7483,26.8666],[81.74387,26.86989],[81.73847,26.86595],[81.73645,26.86055],[81.73237,26.85602],[81.73035,26.85745],[81.72284,26.85506],[81.72057,26.85195],[81.71968,26.84504],[81.71797,26.84583],[81.71526,26.8416],[81.70097,26.84896],[81.69895,26.84556],[81.69564,26.8464],[81.69323,26.84384],[81.68739,26.8444],[81.68034,26.83745],[81.67116,26.84188],[81.66751,26.83723],[81.65221,26.84528],[81.65079,26.84189],[81.65483,26.83912],[81.65184,26.835],[81.65039,26.83551],[81.64083,26.8227],[81.62701,26.83062],[81.6239,26.82963],[81.61896,26.83257],[81.61354,26.83351],[81.61054,26.84132],[81.61265,26.84216],[81.60881,26.84404],[81.60998,26.84549],[81.6036,26.85092],[81.60198,26.84928],[81.60101,26.85005],[81.59842,26.8473],[81.59494,26.83806],[81.58988,26.83287],[81.58618,26.83612],[81.57861,26.83694],[81.57709,26.83532],[81.57336,26.826],[81.57541,26.82228],[81.57265,26.82073],[81.57215,26.81776],[81.57441,26.81492],[81.57591,26.81832],[81.57732,26.81161],[81.5756,26.81045],[81.57334,26.81295],[81.57151,26.81049],[81.57438,26.80999],[81.57378,26.8039],[81.56797,26.80155],[81.56918,26.79911],[81.56599,26.79733],[81.56439,26.80021],[81.56315,26.79932],[81.56381,26.79549],[81.56591,26.79518],[81.56473,26.79292],[81.56815,26.79103],[81.55794,26.78902],[81.55298,26.7861],[81.56088,26.78358],[81.55888,26.78104],[81.55263,26.78211],[81.55616,26.77868],[81.55872,26.77864],[81.55981,26.77288],[81.5728,26.76715],[81.56847,26.76134],[81.57593,26.75649],[81.57032,26.74897],[81.58118,26.74287],[81.58092,26.73865],[81.58708,26.73425],[81.58807,26.72917],[81.59854,26.72669],[81.59874,26.72227],[81.60497,26.72372],[81.6014,26.71567],[81.60473,26.708],[81.60287,26.70517],[81.59606,26.70278],[81.59438,26.70026],[81.60022,26.69288],[81.60229,26.68336],[81.60133,26.67884],[81.58982,26.67981],[81.58055,26.68677],[81.5721,26.68484],[81.5633,26.67571],[81.55014,26.66988],[81.54519,26.66566],[81.54315,26.65493],[81.54459,26.64511],[81.55006,26.64306],[81.56434,26.64788],[81.56814,26.65392],[81.55971,26.66387],[81.56777,26.66612],[81.57536,26.66173],[81.58321,26.65383],[81.6005,26.65117],[81.6058,26.64571],[81.61496,26.6286],[81.62593,26.63077],[81.62746,26.63512],[81.62386,26.63549],[81.62412,26.63738],[81.6266,26.63793],[81.62724,26.63976],[81.63648,26.63745],[81.64164,26.6396],[81.64585,26.63738],[81.65304,26.62778],[81.66322,26.62587],[81.66747,26.61491],[81.67599,26.60701],[81.67625,26.60257],[81.67328,26.60038],[81.66913,26.60103],[81.65542,26.60992],[81.64886,26.6087],[81.65053,26.59805],[81.64824,26.58459],[81.65097,26.58344],[81.65447,26.58428],[81.66252,26.59038],[81.66714,26.58573],[81.67198,26.58423],[81.67922,26.58917],[81.69849,26.59113],[81.70171,26.58968],[81.70352,26.58433],[81.70357,26.58172],[81.69975,26.57563],[81.70114,26.56545],[81.69802,26.55268],[81.69769,26.54271],[81.69163,26.53967],[81.68223,26.54442],[81.6786,26.5419],[81.67437,26.53278],[81.67428,26.52879],[81.68214,26.52538],[81.69857,26.522],[81.70954,26.522],[81.71953,26.51871],[81.72054,26.52097],[81.71594,26.52219],[81.71518,26.52566],[81.71865,26.52759],[81.72383,26.52566],[81.72519,26.52693],[81.72017,26.5311],[81.72074,26.53282],[81.71623,26.53216],[81.71887,26.53815],[81.72873,26.54183],[81.73132,26.54615],[81.73662,26.5465],[81.74841,26.54346],[81.75561,26.54723],[81.76054,26.54595],[81.76211,26.54698],[81.76464,26.54337],[81.76916,26.54374],[81.77285,26.54173],[81.78284,26.54389],[81.78753,26.53749],[81.79578,26.53255],[81.7979,26.52847],[81.80021,26.53131],[81.80183,26.53118],[81.80071,26.53295],[81.80522,26.53348],[81.80505,26.53793],[81.80783,26.53751],[81.80982,26.54016],[81.81907,26.53284],[81.82291,26.5241],[81.8304,26.52087],[81.83312,26.52181],[81.83399,26.52123],[81.8318,26.51867],[81.84648,26.51216],[81.84841,26.52014],[81.84758,26.52401],[81.85865,26.52275],[81.8636,26.53383],[81.86534,26.53446],[81.86686,26.53258],[81.86921,26.53429],[81.87142,26.53345],[81.87588,26.53835],[81.87978,26.53762],[81.88273,26.53503],[81.88772,26.5346],[81.89872,26.5291],[81.89578,26.52351],[81.89106,26.52515],[81.88873,26.52274],[81.89638,26.508],[81.90123,26.51138],[81.91248,26.50806],[81.91708,26.51968],[81.92653,26.51667],[81.92772,26.51226],[81.93301,26.51215],[81.93979,26.5072],[81.94827,26.51215],[81.96073,26.5106],[81.97336,26.51466],[81.98116,26.51033],[81.9826,26.50638],[81.98029,26.50375],[81.98925,26.49734],[81.99544,26.49515],[81.99848,26.49633],[82.00368,26.49079],[82.00797,26.4928],[82.00776,26.48668],[82.00475,26.48136],[82.00776,26.47941],[82.00944,26.47905],[82.01552,26.48682],[82.01591,26.49326],[82.01806,26.49613],[82.01935,26.49382],[82.02581,26.49149],[82.02474,26.4858],[82.03113,26.48253],[82.03472,26.48815],[82.03825,26.48657],[82.04139,26.48425],[82.0376,26.47691],[82.03812,26.47325],[82.04371,26.47058],[82.04592,26.46779],[82.04996,26.46812],[82.05466,26.47406],[82.06234,26.47866],[82.06729,26.47751],[82.07135,26.47389],[82.07381,26.47533],[82.07986,26.47296],[82.08466,26.47696],[82.09591,26.4785],[82.10152,26.47666],[82.10802,26.47182],[82.11147,26.46046],[82.11758,26.46053],[82.12062,26.45851],[82.12563,26.4708],[82.13323,26.46692],[82.13324,26.46263],[82.13481,26.4621],[82.13179,26.45647],[82.12611,26.45652],[82.12479,26.45247],[82.1258,26.44989],[82.13693,26.44489],[82.1406,26.44641],[82.14412,26.45168],[82.15354,26.44719],[82.15156,26.44325],[82.1478,26.44156],[82.14853,26.43878],[82.14621,26.4361],[82.15129,26.43412],[82.15687,26.43442],[82.16581,26.43047],[82.16868,26.43111],[82.17086,26.42374],[82.17728,26.42006],[82.17955,26.42223],[82.1831,26.42064],[82.18649,26.42167],[82.18329,26.41072],[82.19727,26.40742],[82.20266,26.40988],[82.21582,26.4077],[82.22001,26.40996],[82.22085,26.41222],[82.23159,26.4126],[82.23536,26.41514],[82.23548,26.41997],[82.24066,26.41843],[82.24208,26.4229],[82.25352,26.4216],[82.25605,26.43081],[82.25482,26.43409],[82.25812,26.43175],[82.26192,26.43461],[82.25808,26.43859],[82.25885,26.44435],[82.26403,26.44405],[82.26696,26.45166],[82.27358,26.44933],[82.27867,26.4607],[82.28047,26.46976],[82.28414,26.47045],[82.28621,26.47321],[82.28671,26.48268],[82.28492,26.48505],[82.29075,26.48604],[82.29056,26.48804],[82.29302,26.48516],[82.29801,26.48657],[82.30123,26.49489],[82.30317,26.49546],[82.31011,26.50532],[82.31241,26.50562],[82.31575,26.50994],[82.31638,26.51172],[82.31459,26.51256],[82.30643,26.51291],[82.30892,26.5174],[82.30958,26.52656],[82.31468,26.53575],[82.31954,26.5496],[82.32786,26.55511],[82.3301,26.56831],[82.33368,26.572],[82.33611,26.57849],[82.34284,26.5779],[82.34349,26.57401],[82.34595,26.57281],[82.34751,26.57774],[82.35247,26.57661],[82.35359,26.57765],[82.35118,26.57934],[82.35458,26.57984],[82.36054,26.57845],[82.36397,26.57348],[82.36732,26.57485],[82.36976,26.57229],[82.37536,26.5726],[82.3755,26.57006],[82.3775,26.56846],[82.37655,26.56695],[82.37823,26.56618],[82.37791,26.5628],[82.37625,26.56232],[82.37707,26.55942],[82.37515,26.55852],[82.3719,26.56021],[82.37265,26.55789],[82.37134,26.55609],[82.36725,26.55815],[82.36568,26.55708],[82.36618,26.55334],[82.36864,26.55371],[82.37034,26.5522],[82.37087,26.54692],[82.37345,26.54941],[82.37811,26.54941],[82.3808,26.54695],[82.38602,26.54647],[82.38761,26.54331],[82.39063,26.54165],[82.39488,26.54337],[82.40171,26.54277],[82.40327,26.55081],[82.40919,26.55121],[82.41441,26.55839],[82.42091,26.54902],[82.4281,26.54676],[82.4294,26.54716],[82.42867,26.55138],[82.43089,26.55596],[82.43504,26.55441],[82.43805,26.56395],[82.44296,26.56301],[82.44818,26.5583],[82.45214,26.57],[82.45831,26.56898],[82.45685,26.57687],[82.45869,26.57878],[82.4623,26.57774],[82.46521,26.58264],[82.45767,26.58697],[82.45806,26.5922],[82.45009,26.59447],[82.45315,26.60013],[82.45291,26.60516],[82.46413,26.60198],[82.46739,26.60656],[82.47428,26.60838],[82.47595,26.6106],[82.4771,26.61939],[82.47078,26.62096],[82.47244,26.62593],[82.46871,26.62648],[82.46787,26.62969],[82.47522,26.64788],[82.47204,26.64951],[82.47303,26.65252],[82.4628,26.65215],[82.45197,26.64071],[82.44509,26.63941],[82.42653,26.64192],[82.41707,26.64559],[82.40467,26.64783],[82.38138,26.65748],[82.36435,26.67155],[82.32591,26.70925],[82.31691,26.72283],[82.28394,26.73629],[82.27444,26.74553],[82.26579,26.76502],[82.26525,26.77365],[82.25571,26.78363],[82.24149,26.80833],[82.22867,26.81223],[82.22293,26.80797],[82.2126,26.81861],[82.20542,26.82113],[82.20537,26.8291],[82.19138,26.83705],[82.17911,26.83627],[82.17871,26.83239],[82.1686,26.82858],[82.15942,26.83402],[82.15244,26.83127],[82.14313,26.83253],[82.14095,26.8353],[82.13033,26.82936],[82.12706,26.82328],[82.11286,26.8268],[82.10815,26.82638],[82.09594,26.81573],[82.08933,26.81203],[82.0809,26.81185],[82.06145,26.80589],[82.03409,26.80887],[82.01075,26.79573],[82.00206,26.78587],[81.99612,26.78667],[81.97762,26.7811],[81.95626,26.78412],[81.94012,26.78869],[81.91718,26.79119],[81.90598,26.81194],[81.89224,26.82738],[81.87525,26.83684],[81.85516,26.83887],[81.84612,26.83769],[81.83823,26.84265],[81.83003,26.84476],[81.83037,26.85213],[81.82477,26.85346],[81.82646,26.85831],[81.82,26.86516],[81.8152,26.86373],[81.80884,26.86644],[81.80676,26.86424],[81.80523,26.85583],[81.78991,26.85326],[81.7815,26.85665],[81.77747,26.85663],[81.7696,26.86288],[81.7637,26.86081]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"141","area_level":"District","area_name":"Farrukhabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.20607,27.70625],[79.18143,27.71533],[79.17067,27.70469],[79.16503,27.707],[79.15821,27.7024],[79.1573,27.70495],[79.15206,27.69922],[79.14767,27.70188],[79.13616,27.70447],[79.13285,27.69981],[79.13008,27.69089],[79.1202,27.68355],[79.1227,27.67919],[79.12994,27.67903],[79.13539,27.66782],[79.13303,27.66174],[79.13513,27.66062],[79.13227,27.65485],[79.13737,27.64238],[79.12838,27.63479],[79.13317,27.62984],[79.13715,27.63041],[79.14164,27.62684],[79.15461,27.62471],[79.16593,27.61449],[79.17188,27.61542],[79.1772,27.61391],[79.18125,27.61723],[79.18611,27.60475],[79.1835,27.59955],[79.17691,27.59572],[79.17027,27.58439],[79.17834,27.5792],[79.19914,27.57912],[79.20351,27.58252],[79.21087,27.57859],[79.21579,27.57896],[79.22781,27.56657],[79.22928,27.56299],[79.22856,27.55736],[79.23027,27.55566],[79.22484,27.54794],[79.22443,27.54645],[79.22591,27.54574],[79.22482,27.54241],[79.22055,27.53643],[79.23218,27.52806],[79.24177,27.52436],[79.24362,27.52182],[79.24901,27.52111],[79.25157,27.51779],[79.25713,27.52062],[79.26478,27.52088],[79.27033,27.51811],[79.27067,27.51489],[79.27326,27.5146],[79.2716,27.51211],[79.27185,27.50639],[79.26789,27.50301],[79.26686,27.50006],[79.27069,27.49359],[79.26259,27.48999],[79.25924,27.49109],[79.25661,27.48728],[79.25148,27.48466],[79.24918,27.48247],[79.25092,27.47892],[79.24975,27.47566],[79.24649,27.47211],[79.24804,27.4688],[79.25773,27.46266],[79.25091,27.45453],[79.26258,27.44481],[79.25849,27.43887],[79.25941,27.43161],[79.25748,27.43052],[79.25971,27.42844],[79.25045,27.41746],[79.2437,27.41475],[79.2373,27.41848],[79.23096,27.4184],[79.22379,27.41126],[79.22924,27.40506],[79.23296,27.40623],[79.25559,27.39341],[79.25247,27.38801],[79.25293,27.3838],[79.25532,27.38064],[79.25327,27.37817],[79.25432,27.37073],[79.26137,27.36235],[79.26471,27.36287],[79.27379,27.35795],[79.27723,27.35051],[79.27588,27.34744],[79.26602,27.34269],[79.26153,27.3381],[79.25407,27.34217],[79.25138,27.33397],[79.25297,27.32963],[79.25673,27.3315],[79.25708,27.32994],[79.2587,27.33065],[79.25815,27.32828],[79.26022,27.32604],[79.25854,27.32514],[79.26076,27.32467],[79.26459,27.32015],[79.26199,27.31557],[79.26346,27.31516],[79.26718,27.31927],[79.26868,27.31886],[79.26511,27.31557],[79.26759,27.31287],[79.26513,27.31281],[79.26749,27.30803],[79.26613,27.30548],[79.27026,27.30341],[79.28257,27.30422],[79.28369,27.30222],[79.29001,27.30473],[79.29128,27.3008],[79.28804,27.30062],[79.28978,27.29628],[79.28917,27.29352],[79.29079,27.29344],[79.29131,27.29609],[79.2934,27.29551],[79.28679,27.28444],[79.28798,27.27869],[79.29101,27.28012],[79.28851,27.28137],[79.29134,27.28347],[79.29625,27.28112],[79.29829,27.27876],[79.29705,27.2773],[79.3033,27.27763],[79.30634,27.28032],[79.31011,27.28109],[79.30713,27.28454],[79.30828,27.28557],[79.31104,27.28338],[79.3142,27.28482],[79.32044,27.27719],[79.32545,27.27507],[79.32449,27.27289],[79.32299,27.27355],[79.32119,27.27173],[79.32425,27.27237],[79.32311,27.26985],[79.32441,27.26562],[79.3231,27.26039],[79.32031,27.25768],[79.32138,27.25523],[79.31883,27.2546],[79.31601,27.25029],[79.31552,27.24839],[79.31811,27.24675],[79.31739,27.24482],[79.31544,27.2464],[79.31489,27.24348],[79.31972,27.24009],[79.32269,27.24069],[79.32244,27.23682],[79.32702,27.2386],[79.32954,27.23583],[79.32822,27.23363],[79.33172,27.23503],[79.33696,27.23257],[79.33844,27.22573],[79.33575,27.21793],[79.33623,27.21496],[79.33812,27.21421],[79.3408,27.21588],[79.34493,27.21123],[79.35173,27.21191],[79.35365,27.22089],[79.35653,27.22052],[79.35635,27.21866],[79.35946,27.22172],[79.36055,27.21737],[79.36382,27.22177],[79.36562,27.22194],[79.36733,27.21761],[79.37127,27.2137],[79.36972,27.21154],[79.37256,27.21049],[79.37131,27.20644],[79.37605,27.20378],[79.38166,27.20373],[79.38447,27.19893],[79.38263,27.19702],[79.38555,27.19602],[79.38635,27.19828],[79.39099,27.19683],[79.39072,27.20138],[79.39468,27.20033],[79.39525,27.1988],[79.39321,27.19777],[79.39417,27.1969],[79.40243,27.19819],[79.4031,27.19997],[79.40041,27.20245],[79.40336,27.20683],[79.40762,27.2048],[79.40788,27.21197],[79.40926,27.21334],[79.41099,27.2114],[79.40669,27.22301],[79.41032,27.22575],[79.41145,27.22351],[79.41501,27.22608],[79.41787,27.22527],[79.41728,27.22687],[79.41973,27.22869],[79.42365,27.2272],[79.42307,27.22213],[79.42421,27.22124],[79.42834,27.2235],[79.4292,27.22099],[79.42709,27.21796],[79.43017,27.21615],[79.4297,27.21274],[79.43385,27.21743],[79.43521,27.21646],[79.43191,27.21277],[79.43498,27.21305],[79.43527,27.215],[79.43797,27.21459],[79.43886,27.21055],[79.43935,27.21341],[79.44377,27.21208],[79.4496,27.21564],[79.45146,27.21418],[79.44934,27.21223],[79.44997,27.21123],[79.45524,27.2149],[79.45708,27.21023],[79.45812,27.20982],[79.45971,27.21307],[79.4591,27.21],[79.46089,27.20839],[79.46311,27.21222],[79.46639,27.20968],[79.46951,27.21247],[79.46534,27.21321],[79.47119,27.21325],[79.47539,27.20983],[79.47456,27.207],[79.47278,27.20746],[79.47723,27.2054],[79.48073,27.20761],[79.48272,27.2071],[79.48337,27.20874],[79.48478,27.20806],[79.48963,27.21441],[79.50048,27.20747],[79.50748,27.20953],[79.50603,27.2045],[79.51839,27.20892],[79.52387,27.20236],[79.52113,27.20097],[79.52131,27.19966],[79.52943,27.19567],[79.52901,27.19402],[79.52471,27.19424],[79.5264,27.19121],[79.52489,27.19036],[79.52872,27.18983],[79.52757,27.18829],[79.52907,27.18711],[79.53168,27.19002],[79.53293,27.18908],[79.53417,27.18465],[79.53611,27.18409],[79.53683,27.17978],[79.53948,27.17812],[79.53977,27.1747],[79.54537,27.17093],[79.54774,27.16699],[79.55,27.16697],[79.55339,27.16406],[79.55302,27.1592],[79.55651,27.15678],[79.56149,27.15722],[79.56534,27.15977],[79.56754,27.15804],[79.57703,27.15949],[79.57569,27.16195],[79.57921,27.16353],[79.58163,27.16269],[79.58621,27.16757],[79.5926,27.16847],[79.5966,27.17264],[79.59986,27.17234],[79.60584,27.18335],[79.60372,27.18582],[79.60505,27.18767],[79.60922,27.18668],[79.61463,27.18793],[79.62587,27.1843],[79.62772,27.18595],[79.63244,27.18539],[79.63421,27.18401],[79.63305,27.18019],[79.63486,27.17789],[79.64727,27.17385],[79.6487,27.17004],[79.65307,27.17128],[79.65881,27.16519],[79.6616,27.16582],[79.66357,27.16855],[79.66848,27.16645],[79.66898,27.1699],[79.67126,27.16856],[79.67259,27.16949],[79.67606,27.17632],[79.67839,27.17694],[79.67792,27.17959],[79.6748,27.18138],[79.67764,27.182],[79.67725,27.1845],[79.67909,27.18496],[79.67801,27.18638],[79.67951,27.18946],[79.67714,27.19169],[79.67776,27.19352],[79.68045,27.19759],[79.68479,27.19737],[79.68718,27.20118],[79.69198,27.20352],[79.6933,27.20879],[79.69761,27.21564],[79.70103,27.21461],[79.70364,27.21008],[79.70957,27.20728],[79.71812,27.21168],[79.72165,27.22086],[79.69613,27.23],[79.70252,27.24435],[79.69746,27.24975],[79.69392,27.25023],[79.69378,27.25235],[79.69779,27.26355],[79.69992,27.26549],[79.70837,27.26028],[79.71102,27.2613],[79.71543,27.2663],[79.71667,27.27203],[79.72534,27.27698],[79.72908,27.27497],[79.73105,27.27778],[79.73181,27.28233],[79.73034,27.28455],[79.72223,27.2896],[79.72757,27.29801],[79.72401,27.30492],[79.72881,27.30851],[79.72122,27.31803],[79.72276,27.32534],[79.71631,27.33327],[79.71616,27.33822],[79.71056,27.33995],[79.71286,27.34694],[79.70878,27.3492],[79.70647,27.34752],[79.7035,27.34794],[79.70259,27.34901],[79.70408,27.35453],[79.69859,27.3567],[79.69858,27.35913],[79.69438,27.35935],[79.69366,27.35758],[79.68678,27.36989],[79.68972,27.37311],[79.6878,27.3783],[79.69396,27.38516],[79.69019,27.38809],[79.69109,27.3893],[79.69588,27.39124],[79.69726,27.39447],[79.70258,27.39575],[79.70567,27.39266],[79.71716,27.40925],[79.72583,27.41583],[79.7169,27.4205],[79.71766,27.42249],[79.71648,27.42313],[79.71999,27.42843],[79.71706,27.43218],[79.71747,27.43431],[79.72246,27.43733],[79.72883,27.43562],[79.7372,27.44483],[79.72157,27.44801],[79.71627,27.45087],[79.71716,27.45829],[79.71157,27.46243],[79.7084,27.46752],[79.71299,27.47549],[79.70958,27.47984],[79.69965,27.47007],[79.69483,27.46919],[79.69984,27.49172],[79.7028,27.49629],[79.69556,27.49705],[79.68799,27.49383],[79.6777,27.49388],[79.66552,27.49757],[79.66148,27.49739],[79.66408,27.50338],[79.66186,27.50779],[79.65716,27.50409],[79.65397,27.50488],[79.65429,27.51107],[79.66212,27.52233],[79.65949,27.52484],[79.65999,27.52874],[79.65691,27.53104],[79.66016,27.53676],[79.65772,27.54263],[79.66445,27.54562],[79.66617,27.54814],[79.67019,27.54671],[79.66989,27.54959],[79.6556,27.55888],[79.66038,27.56298],[79.65181,27.56632],[79.65516,27.57528],[79.65678,27.57471],[79.65637,27.57638],[79.65899,27.57754],[79.64503,27.57453],[79.63861,27.57643],[79.64289,27.58281],[79.64407,27.59577],[79.64759,27.60319],[79.65193,27.60758],[79.65526,27.60902],[79.65715,27.60779],[79.66081,27.61332],[79.65501,27.61649],[79.65189,27.61335],[79.64837,27.61336],[79.64873,27.61906],[79.64569,27.62453],[79.65351,27.62828],[79.65035,27.63076],[79.6506,27.63321],[79.64795,27.63335],[79.64386,27.63786],[79.64023,27.63438],[79.63136,27.63743],[79.62599,27.6372],[79.62449,27.63301],[79.61761,27.62701],[79.61275,27.61799],[79.59138,27.61968],[79.59526,27.61333],[79.59453,27.61234],[79.59756,27.61045],[79.59739,27.60837],[79.61118,27.60023],[79.6117,27.5922],[79.60086,27.59763],[79.59067,27.59847],[79.5882,27.59721],[79.58532,27.59159],[79.572,27.59262],[79.56712,27.59457],[79.55773,27.58954],[79.55496,27.59089],[79.55509,27.59512],[79.55144,27.59647],[79.55317,27.5973],[79.55231,27.59938],[79.5462,27.60023],[79.53864,27.59752],[79.5337,27.59209],[79.51838,27.60041],[79.51928,27.60435],[79.50763,27.59124],[79.50332,27.58906],[79.49393,27.59165],[79.49384,27.5888],[79.48633,27.59316],[79.48667,27.59497],[79.47457,27.59908],[79.48259,27.61197],[79.47644,27.61812],[79.4755,27.62475],[79.46463,27.63383],[79.45582,27.63702],[79.45313,27.63455],[79.44403,27.64239],[79.43666,27.64166],[79.42496,27.62716],[79.39103,27.64716],[79.38853,27.64569],[79.37663,27.64659],[79.37442,27.64151],[79.35916,27.64786],[79.3522,27.6473],[79.34679,27.64998],[79.34558,27.65402],[79.34936,27.65309],[79.35199,27.6578],[79.34595,27.66115],[79.30899,27.67095],[79.30573,27.67287],[79.30848,27.67668],[79.30312,27.67966],[79.3026,27.68334],[79.29032,27.68543],[79.28951,27.68193],[79.29961,27.66979],[79.29381,27.67022],[79.27883,27.68229],[79.27354,27.68062],[79.2561,27.68736],[79.25823,27.69417],[79.25235,27.69762],[79.24333,27.69682],[79.23513,27.70849],[79.23014,27.7048],[79.23107,27.69638],[79.22957,27.69646],[79.22745,27.69241],[79.21915,27.69839],[79.22022,27.70013],[79.21921,27.70085],[79.20607,27.70625]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"142","area_level":"District","area_name":"Fatehpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.60619,26.20086],[80.60851,26.20879],[80.6055,26.21884],[80.59143,26.23123],[80.54499,26.22358],[80.53917,26.21735],[80.53805,26.20173],[80.53624,26.19741],[80.52876,26.20043],[80.52952,26.1972],[80.52775,26.19411],[80.52279,26.19085],[80.51681,26.19255],[80.51798,26.18963],[80.5168,26.18762],[80.51335,26.18712],[80.50449,26.19041],[80.49843,26.19516],[80.49405,26.19581],[80.48718,26.1919],[80.48562,26.18768],[80.48172,26.18483],[80.48231,26.18171],[80.47778,26.17435],[80.4755,26.17384],[80.47345,26.17588],[80.4727,26.18006],[80.46962,26.18269],[80.46454,26.18078],[80.45711,26.18144],[80.45375,26.17931],[80.45068,26.1817],[80.44753,26.18187],[80.44224,26.16748],[80.43618,26.16642],[80.4324,26.16741],[80.43072,26.16511],[80.42971,26.16147],[80.433,26.15787],[80.42895,26.15338],[80.40957,26.16229],[80.40375,26.16226],[80.38726,26.14277],[80.3792,26.14243],[80.37705,26.14061],[80.37015,26.14104],[80.36594,26.13782],[80.36024,26.13773],[80.35708,26.13268],[80.35553,26.12572],[80.35234,26.12362],[80.34616,26.12819],[80.34484,26.12688],[80.34254,26.12836],[80.33274,26.11778],[80.32522,26.11526],[80.32071,26.11036],[80.31699,26.10088],[80.31893,26.09872],[80.31888,26.09025],[80.31219,26.08434],[80.31268,26.07216],[80.30238,26.06124],[80.29753,26.06039],[80.28995,26.06645],[80.28277,26.05536],[80.27893,26.05435],[80.27268,26.05724],[80.26748,26.05641],[80.26141,26.05005],[80.26095,26.04655],[80.25797,26.04854],[80.25417,26.04521],[80.2573,26.04128],[80.25307,26.03596],[80.25603,26.03476],[80.25512,26.02979],[80.24983,26.02533],[80.25503,26.02054],[80.24947,26.01883],[80.24495,26.00862],[80.24326,26.00222],[80.24763,25.99488],[80.24544,25.98872],[80.23913,25.98523],[80.23319,25.97918],[80.2282,25.97757],[80.22706,25.97473],[80.22242,25.97564],[80.21654,25.97332],[80.21301,25.96502],[80.22263,25.96269],[80.22919,25.95599],[80.22799,25.94652],[80.23276,25.93073],[80.23694,25.92349],[80.25836,25.93309],[80.26862,25.93303],[80.2828,25.91889],[80.29606,25.89608],[80.30961,25.88863],[80.32143,25.89018],[80.36794,25.90992],[80.40521,25.91375],[80.42846,25.90858],[80.44342,25.90779],[80.48235,25.89807],[80.48696,25.89568],[80.49953,25.88426],[80.50781,25.88067],[80.52792,25.88043],[80.54758,25.87542],[80.55258,25.8708],[80.55522,25.86183],[80.54803,25.84897],[80.5389,25.84005],[80.529,25.83575],[80.51882,25.83443],[80.50369,25.83414],[80.48834,25.837],[80.47633,25.83583],[80.46755,25.83121],[80.46592,25.82184],[80.46895,25.81344],[80.47454,25.80668],[80.51167,25.77915],[80.52275,25.77354],[80.52931,25.77255],[80.53661,25.7771],[80.56321,25.7837],[80.56815,25.78336],[80.5757,25.77999],[80.57829,25.76946],[80.57677,25.75692],[80.57463,25.75344],[80.56827,25.74943],[80.55489,25.73385],[80.5563,25.72876],[80.56396,25.72133],[80.57545,25.71572],[80.58797,25.71511],[80.6054,25.71073],[80.61571,25.71187],[80.63906,25.70572],[80.65158,25.70661],[80.69181,25.69038],[80.69853,25.68955],[80.70601,25.68394],[80.71708,25.6808],[80.72438,25.681],[80.76118,25.68448],[80.77727,25.68889],[80.80008,25.7022],[80.81406,25.71287],[80.8215,25.72091],[80.83601,25.72657],[80.8439,25.72358],[80.84831,25.71894],[80.85095,25.711],[80.85523,25.68303],[80.85917,25.67829],[80.87792,25.6777],[80.902,25.68207],[80.91645,25.68611],[80.93133,25.69245],[80.93751,25.69102],[80.94627,25.68427],[80.9485,25.67713],[80.94637,25.65328],[80.94313,25.64877],[80.94206,25.64251],[80.94334,25.62646],[80.9479,25.61605],[80.95551,25.60891],[80.96287,25.60743],[80.97389,25.61032],[80.99206,25.62006],[81.00954,25.62558],[81.02154,25.63499],[81.0286,25.63384],[81.03376,25.62867],[81.03627,25.62118],[81.03633,25.61074],[81.02962,25.59156],[81.02261,25.58538],[81.00552,25.57933],[80.99875,25.57343],[80.99754,25.57005],[81.0011,25.56486],[81.02043,25.54688],[81.03131,25.53368],[81.03727,25.53018],[81.07947,25.51865],[81.10154,25.51783],[81.12342,25.51073],[81.13663,25.50891],[81.16614,25.50037],[81.18814,25.49083],[81.19293,25.48534],[81.19548,25.46391],[81.19466,25.45789],[81.18757,25.44774],[81.1906,25.44594],[81.1967,25.45028],[81.20119,25.44855],[81.20472,25.44981],[81.20884,25.44414],[81.22133,25.43836],[81.22257,25.44104],[81.21914,25.44542],[81.21726,25.44572],[81.21649,25.44919],[81.22524,25.46062],[81.22466,25.46323],[81.22742,25.46773],[81.22595,25.47046],[81.22881,25.47161],[81.23178,25.4756],[81.23188,25.47998],[81.23481,25.48492],[81.2418,25.48285],[81.24845,25.49224],[81.25525,25.48891],[81.25979,25.49022],[81.2624,25.49195],[81.26467,25.49748],[81.26743,25.49848],[81.26979,25.50487],[81.26902,25.50763],[81.26517,25.50954],[81.2478,25.51533],[81.24937,25.52406],[81.25456,25.52471],[81.26044,25.54797],[81.25467,25.55075],[81.25569,25.55809],[81.25139,25.56053],[81.24914,25.56641],[81.24505,25.56908],[81.24548,25.57292],[81.23642,25.57659],[81.23851,25.58107],[81.23831,25.586],[81.23744,25.58507],[81.23177,25.58681],[81.23037,25.59289],[81.22153,25.59561],[81.21156,25.59539],[81.20726,25.59778],[81.2071,25.60045],[81.21396,25.6159],[81.21513,25.62212],[81.21327,25.62326],[81.21698,25.63716],[81.20957,25.64044],[81.20764,25.64383],[81.2174,25.65883],[81.21594,25.66006],[81.21522,25.67087],[81.22293,25.67149],[81.22813,25.66992],[81.23386,25.67215],[81.23777,25.67766],[81.23101,25.68072],[81.22997,25.67942],[81.22725,25.68494],[81.21999,25.68729],[81.21471,25.68441],[81.2042,25.68425],[81.20379,25.69194],[81.19544,25.69952],[81.19402,25.70288],[81.19851,25.7142],[81.19845,25.7204],[81.21195,25.72169],[81.21441,25.71907],[81.22652,25.71496],[81.23111,25.72928],[81.23537,25.73277],[81.23504,25.74156],[81.24195,25.74846],[81.2395,25.74933],[81.24695,25.76151],[81.25316,25.75561],[81.26232,25.7531],[81.26965,25.75549],[81.27033,25.7584],[81.28126,25.75899],[81.28256,25.7597],[81.28314,25.76483],[81.28963,25.76448],[81.29039,25.76657],[81.28893,25.76741],[81.29474,25.76831],[81.29938,25.76705],[81.30063,25.76861],[81.29906,25.76976],[81.30198,25.77295],[81.30861,25.77013],[81.31344,25.77526],[81.31415,25.77879],[81.31125,25.78053],[81.31256,25.78488],[81.32472,25.79545],[81.32709,25.79227],[81.33027,25.79117],[81.33445,25.79634],[81.33837,25.8107],[81.33375,25.81561],[81.327,25.81901],[81.31523,25.82853],[81.30481,25.83979],[81.29119,25.84793],[81.27845,25.85138],[81.26998,25.84678],[81.26225,25.85056],[81.23822,25.85605],[81.21936,25.86602],[81.21362,25.87428],[81.21594,25.88161],[81.21662,25.89529],[81.21625,25.94001],[81.20064,25.94838],[81.18087,25.95239],[81.16581,25.96323],[81.11897,25.96948],[81.08394,25.98759],[81.06333,26.00035],[81.05862,26.00518],[81.05964,26.01334],[81.05231,26.02874],[81.04465,26.03506],[81.03785,26.04807],[81.01409,26.07461],[81.00156,26.07886],[80.9649,26.0582],[80.95252,26.05492],[80.94138,26.0545],[80.92788,26.05022],[80.91828,26.05166],[80.90901,26.05598],[80.87586,26.05518],[80.85611,26.0409],[80.84166,26.02239],[80.83463,26.01913],[80.82536,26.01958],[80.81303,26.02589],[80.80879,26.03129],[80.8061,26.04185],[80.80173,26.05031],[80.80155,26.06437],[80.79264,26.06796],[80.79061,26.06681],[80.78958,26.06977],[80.7946,26.07329],[80.76993,26.07959],[80.76464,26.08352],[80.76978,26.08702],[80.75174,26.10265],[80.74774,26.10466],[80.73211,26.10622],[80.73221,26.10286],[80.73005,26.10064],[80.72162,26.07503],[80.71346,26.07697],[80.69591,26.08972],[80.68243,26.09455],[80.66992,26.10141],[80.67019,26.10355],[80.66437,26.10927],[80.65465,26.12663],[80.64707,26.13132],[80.65515,26.14358],[80.65456,26.14613],[80.64619,26.14532],[80.63868,26.14935],[80.63327,26.14925],[80.62101,26.14521],[80.60693,26.1604],[80.61136,26.16354],[80.60368,26.17356],[80.59161,26.17708],[80.59772,26.18586],[80.60464,26.20033],[80.60619,26.20086]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"143","area_level":"District","area_name":"Firozabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.60916,27.51016],[78.59746,27.50937],[78.59629,27.50681],[78.59872,27.49832],[78.59404,27.49198],[78.59011,27.49409],[78.58726,27.49087],[78.58669,27.4765],[78.58271,27.4738],[78.56977,27.47483],[78.56395,27.47243],[78.55214,27.4607],[78.55347,27.45661],[78.54866,27.45159],[78.54376,27.44213],[78.54039,27.44188],[78.53459,27.4494],[78.53063,27.45177],[78.52879,27.44985],[78.52282,27.44971],[78.52184,27.45666],[78.5177,27.46264],[78.51093,27.46408],[78.50487,27.45633],[78.50663,27.43995],[78.5032,27.43958],[78.50428,27.43659],[78.49411,27.42904],[78.49123,27.42327],[78.47966,27.42524],[78.47559,27.42875],[78.47171,27.42912],[78.4677,27.42815],[78.46367,27.42486],[78.46421,27.41772],[78.47119,27.41002],[78.47505,27.40201],[78.48467,27.39276],[78.48894,27.39428],[78.4903,27.39315],[78.49145,27.38754],[78.48458,27.38376],[78.48607,27.38283],[78.48431,27.38018],[78.48439,27.37481],[78.48871,27.36398],[78.48332,27.35779],[78.49005,27.35351],[78.47768,27.34294],[78.4717,27.34852],[78.46981,27.35656],[78.45979,27.36738],[78.45653,27.37452],[78.44521,27.37238],[78.44104,27.36545],[78.43405,27.3609],[78.41694,27.3692],[78.4056,27.3693],[78.3994,27.37208],[78.39529,27.36819],[78.39148,27.36843],[78.38707,27.36214],[78.38498,27.36434],[78.38214,27.36462],[78.38037,27.36925],[78.37582,27.37016],[78.36562,27.37852],[78.36327,27.38934],[78.35676,27.39542],[78.35227,27.3969],[78.33802,27.38829],[78.33428,27.3908],[78.32919,27.38936],[78.32325,27.38301],[78.32178,27.37806],[78.32299,27.37523],[78.31868,27.37539],[78.30051,27.39354],[78.29866,27.39351],[78.29476,27.38869],[78.29073,27.38731],[78.29536,27.38305],[78.29061,27.37797],[78.29164,27.3753],[78.28593,27.37413],[78.28718,27.36666],[78.28413,27.36196],[78.28826,27.35669],[78.28301,27.35344],[78.28423,27.34818],[78.28313,27.34485],[78.27988,27.34271],[78.27854,27.3437],[78.27905,27.34147],[78.27466,27.33766],[78.27763,27.33343],[78.27839,27.32436],[78.27055,27.31955],[78.26788,27.31586],[78.2687,27.31485],[78.26671,27.31362],[78.26546,27.30611],[78.26747,27.30318],[78.25923,27.30143],[78.25029,27.30181],[78.24279,27.31141],[78.23544,27.31395],[78.23294,27.30777],[78.23042,27.30996],[78.22518,27.30641],[78.2216,27.31113],[78.21868,27.31196],[78.21796,27.30928],[78.21092,27.30648],[78.21111,27.30265],[78.20958,27.30119],[78.20521,27.30224],[78.20754,27.30678],[78.2059,27.31157],[78.20114,27.30989],[78.20008,27.31193],[78.19461,27.30845],[78.19708,27.30499],[78.19855,27.29838],[78.20839,27.29179],[78.21997,27.28781],[78.20755,27.27051],[78.21161,27.26505],[78.20519,27.25808],[78.2046,27.25543],[78.20672,27.25216],[78.21044,27.24996],[78.21137,27.25134],[78.21406,27.25069],[78.21813,27.24786],[78.2178,27.24658],[78.20617,27.23857],[78.20481,27.23904],[78.20134,27.23293],[78.20177,27.22927],[78.21121,27.22156],[78.2058,27.21639],[78.2074,27.21444],[78.20422,27.21167],[78.20409,27.20844],[78.19978,27.20471],[78.19422,27.19168],[78.19726,27.18802],[78.19686,27.18489],[78.20598,27.18145],[78.21023,27.17385],[78.21503,27.17146],[78.21858,27.1658],[78.22068,27.15652],[78.21599,27.14816],[78.20857,27.14066],[78.20825,27.13631],[78.2016,27.13079],[78.19991,27.12141],[78.20483,27.10893],[78.20947,27.10475],[78.22311,27.10077],[78.22881,27.09503],[78.22835,27.0882],[78.22324,27.08157],[78.22311,27.07771],[78.22734,27.07511],[78.23797,27.07387],[78.24735,27.07539],[78.25355,27.07851],[78.25738,27.08253],[78.25894,27.08696],[78.25443,27.09578],[78.23929,27.10319],[78.23869,27.11076],[78.24092,27.11301],[78.24592,27.11291],[78.25872,27.10875],[78.26546,27.10046],[78.27164,27.08343],[78.27706,27.08101],[78.28352,27.08072],[78.2905,27.08326],[78.29491,27.08826],[78.29116,27.10534],[78.29185,27.11292],[78.29528,27.11918],[78.30157,27.12535],[78.30521,27.12673],[78.31346,27.12609],[78.3156,27.12266],[78.31715,27.11428],[78.32326,27.10988],[78.32843,27.11177],[78.33591,27.12557],[78.34101,27.12918],[78.36473,27.1251],[78.37054,27.12272],[78.37208,27.12099],[78.37028,27.1165],[78.36324,27.11074],[78.35463,27.11076],[78.34434,27.11472],[78.34175,27.11301],[78.33704,27.10191],[78.33436,27.09952],[78.31895,27.10077],[78.31123,27.09804],[78.30897,27.08443],[78.3127,27.07231],[78.31018,27.06012],[78.31133,27.05355],[78.31624,27.05223],[78.31942,27.05457],[78.32577,27.07026],[78.32993,27.07445],[78.3343,27.07588],[78.34973,27.07248],[78.35542,27.07997],[78.36039,27.08261],[78.36404,27.08134],[78.38214,27.06473],[78.39264,27.05728],[78.39825,27.05598],[78.41566,27.05628],[78.42347,27.05334],[78.43337,27.04384],[78.43589,27.02958],[78.44359,27.01866],[78.45062,27.01349],[78.45351,27.00787],[78.44891,26.99027],[78.45127,26.98362],[78.46379,26.98408],[78.47644,26.99174],[78.48044,26.99167],[78.48442,26.98704],[78.48523,26.98269],[78.48188,26.96955],[78.48331,26.96496],[78.49318,26.96086],[78.50583,26.96281],[78.51157,26.96162],[78.51541,26.95608],[78.51443,26.94002],[78.52364,26.93802],[78.52623,26.93858],[78.52461,26.94245],[78.5262,26.95817],[78.52308,26.96172],[78.51459,26.9646],[78.51201,26.96766],[78.51358,26.97216],[78.51868,26.97571],[78.52535,26.97546],[78.53744,26.96444],[78.54473,26.96068],[78.55084,26.96019],[78.55956,26.96321],[78.57445,26.96278],[78.57726,26.96013],[78.57731,26.95784],[78.57131,26.94858],[78.57127,26.94439],[78.58573,26.93532],[78.59473,26.92091],[78.59806,26.91877],[78.60436,26.9189],[78.60941,26.92509],[78.60599,26.93593],[78.59657,26.94343],[78.59617,26.94929],[78.6025,26.95114],[78.6199,26.94596],[78.62431,26.94159],[78.61845,26.93109],[78.61695,26.92274],[78.6178,26.9187],[78.62081,26.91401],[78.63147,26.90968],[78.63334,26.90752],[78.63552,26.884],[78.64457,26.88076],[78.66137,26.88543],[78.66858,26.87827],[78.67179,26.87803],[78.67478,26.87967],[78.67598,26.88262],[78.67589,26.89105],[78.67173,26.89833],[78.67085,26.90353],[78.67135,26.91362],[78.67541,26.91994],[78.68172,26.91961],[78.69325,26.91051],[78.69712,26.91191],[78.69906,26.91579],[78.703,26.9187],[78.70773,26.91846],[78.71003,26.91368],[78.71051,26.90324],[78.71437,26.90118],[78.72398,26.90039],[78.73011,26.90463],[78.73063,26.92003],[78.73254,26.92194],[78.73841,26.92257],[78.74578,26.91537],[78.74997,26.91688],[78.76091,26.93361],[78.7665,26.93716],[78.77683,26.94879],[78.78116,26.9456],[78.78267,26.94715],[78.78788,26.94494],[78.79054,26.95084],[78.79496,26.95012],[78.80537,26.95762],[78.81003,26.95795],[78.80686,26.96443],[78.80263,26.96779],[78.81627,26.98105],[78.81858,26.98439],[78.81724,26.98524],[78.81771,26.98845],[78.81233,26.99243],[78.80663,26.98789],[78.80397,26.98072],[78.79409,26.98707],[78.79648,26.99036],[78.78169,27.00276],[78.78379,27.00594],[78.78175,27.00817],[78.79388,27.01417],[78.79345,27.01631],[78.79169,27.01884],[78.78751,27.01944],[78.78136,27.02491],[78.78183,27.02071],[78.77802,27.01701],[78.77626,27.0179],[78.7748,27.02068],[78.77638,27.02202],[78.77326,27.02906],[78.77441,27.03252],[78.7828,27.03971],[78.78769,27.03885],[78.78837,27.04224],[78.78095,27.0459],[78.77257,27.04484],[78.77123,27.04751],[78.76428,27.0518],[78.7643,27.05319],[78.77023,27.05501],[78.77632,27.06073],[78.76949,27.06301],[78.76635,27.06581],[78.77266,27.08072],[78.76761,27.08304],[78.77379,27.08489],[78.7766,27.09458],[78.77298,27.101],[78.7649,27.10589],[78.77296,27.11406],[78.78162,27.10684],[78.78743,27.10535],[78.78794,27.10316],[78.79384,27.09844],[78.79916,27.10026],[78.79925,27.10557],[78.80329,27.11253],[78.80214,27.11393],[78.80686,27.12002],[78.80199,27.12231],[78.79947,27.12015],[78.79302,27.12396],[78.79543,27.12887],[78.79381,27.13438],[78.78945,27.1346],[78.79128,27.13868],[78.80119,27.14619],[78.8057,27.14598],[78.80663,27.14156],[78.80986,27.14506],[78.81397,27.13976],[78.81953,27.13685],[78.82142,27.13971],[78.81952,27.14284],[78.82039,27.14493],[78.81529,27.1489],[78.80842,27.15041],[78.81123,27.15343],[78.80834,27.15536],[78.80336,27.15379],[78.79609,27.16091],[78.78511,27.16555],[78.78079,27.16225],[78.77744,27.16282],[78.76708,27.17391],[78.75416,27.18004],[78.74546,27.17886],[78.74156,27.18116],[78.74209,27.18436],[78.73982,27.18416],[78.73595,27.19046],[78.72546,27.19448],[78.72453,27.19663],[78.72663,27.2048],[78.73232,27.20643],[78.73689,27.20977],[78.75115,27.20752],[78.75853,27.21796],[78.76086,27.22503],[78.75905,27.22958],[78.75319,27.23232],[78.74324,27.24127],[78.737,27.24551],[78.72772,27.24837],[78.72785,27.25458],[78.71948,27.26366],[78.70336,27.26549],[78.69577,27.26898],[78.68984,27.26782],[78.68839,27.2697],[78.70249,27.28288],[78.71546,27.28035],[78.7184,27.28395],[78.71699,27.28648],[78.72042,27.294],[78.71868,27.29555],[78.71911,27.29733],[78.71261,27.29937],[78.71175,27.30752],[78.71166,27.3115],[78.71478,27.31623],[78.71246,27.31736],[78.71538,27.32026],[78.7141,27.33572],[78.70954,27.34014],[78.71186,27.34274],[78.71501,27.34209],[78.71806,27.34433],[78.71584,27.35416],[78.71917,27.36336],[78.71813,27.36875],[78.71333,27.37271],[78.71369,27.37709],[78.71213,27.37985],[78.70671,27.37689],[78.6904,27.38144],[78.68529,27.38346],[78.68251,27.38787],[78.67504,27.39318],[78.67346,27.39526],[78.67503,27.40017],[78.67069,27.41101],[78.67299,27.41291],[78.66854,27.41776],[78.66399,27.41482],[78.65955,27.41946],[78.64326,27.42054],[78.64101,27.42623],[78.64306,27.42801],[78.63941,27.43215],[78.64082,27.43182],[78.64096,27.43637],[78.64377,27.43841],[78.64606,27.44479],[78.6493,27.46064],[78.65976,27.4739],[78.66306,27.47208],[78.66407,27.47303],[78.66472,27.47874],[78.66183,27.48986],[78.65891,27.4914],[78.65303,27.49075],[78.65135,27.49318],[78.64394,27.48919],[78.6328,27.49125],[78.63269,27.48954],[78.63003,27.48827],[78.62793,27.4901],[78.62333,27.50311],[78.61935,27.50316],[78.60916,27.51016]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"144","area_level":"District","area_name":"Gautam Buddha Nagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.39054,28.63475],[77.38598,28.64482],[77.38909,28.65306],[77.38707,28.65441],[77.38223,28.65381],[77.38179,28.64927],[77.37879,28.64701],[77.38095,28.6408],[77.37967,28.64009],[77.38024,28.63695],[77.37382,28.63163],[77.37656,28.62878],[77.37342,28.6221],[77.36384,28.62465],[77.35842,28.6178],[77.35989,28.6153],[77.36914,28.61019],[77.36886,28.60877],[77.36306,28.6077],[77.35511,28.61087],[77.35299,28.60974],[77.34369,28.61028],[77.34218,28.60956],[77.34168,28.60606],[77.33677,28.60181],[77.32836,28.60016],[77.32517,28.59805],[77.3134,28.59659],[77.31017,28.59046],[77.29838,28.58015],[77.30005,28.5758],[77.29709,28.56597],[77.30123,28.5627],[77.29997,28.55976],[77.30379,28.55243],[77.3209,28.5409],[77.32472,28.53492],[77.33017,28.53228],[77.33455,28.525],[77.34737,28.52055],[77.34543,28.51322],[77.34761,28.51046],[77.34774,28.50419],[77.35163,28.50008],[77.35562,28.4992],[77.3581,28.50185],[77.36269,28.49883],[77.36777,28.50025],[77.37174,28.49844],[77.37006,28.4857],[77.37474,28.47648],[77.37835,28.47454],[77.37818,28.47252],[77.38047,28.47027],[77.38734,28.468],[77.39194,28.47203],[77.40578,28.46577],[77.40809,28.46717],[77.40006,28.45564],[77.41901,28.45223],[77.43343,28.45492],[77.43826,28.43868],[77.43597,28.43771],[77.43921,28.43504],[77.43552,28.43095],[77.44212,28.43083],[77.44126,28.42873],[77.45225,28.42688],[77.45161,28.42474],[77.4625,28.42436],[77.46115,28.41767],[77.46355,28.41515],[77.47763,28.41906],[77.48377,28.40809],[77.4813,28.40489],[77.48021,28.39873],[77.47567,28.39957],[77.47344,28.39697],[77.48281,28.38782],[77.49122,28.38515],[77.50279,28.36992],[77.50482,28.36999],[77.50005,28.36564],[77.5052,28.36264],[77.4963,28.34914],[77.49015,28.34345],[77.47818,28.33934],[77.47121,28.33482],[77.47318,28.33255],[77.47174,28.32811],[77.48195,28.32506],[77.48486,28.32569],[77.48571,28.32163],[77.50707,28.30569],[77.50294,28.28908],[77.4985,28.2856],[77.50173,28.28386],[77.50029,28.28152],[77.50343,28.28007],[77.49877,28.27841],[77.49467,28.27276],[77.49414,28.27483],[77.49079,28.27133],[77.49269,28.25198],[77.49915,28.24738],[77.49922,28.25],[77.50145,28.25244],[77.50955,28.24961],[77.50863,28.24655],[77.51325,28.24721],[77.51877,28.24253],[77.522,28.24227],[77.52471,28.24572],[77.53235,28.24495],[77.53742,28.24827],[77.54461,28.24873],[77.55042,28.24236],[77.54675,28.23799],[77.52583,28.229],[77.52128,28.22444],[77.52143,28.22021],[77.53289,28.21442],[77.53525,28.21026],[77.53466,28.20369],[77.53026,28.19861],[77.52403,28.19568],[77.52196,28.19659],[77.51748,28.20459],[77.50588,28.20952],[77.50206,28.20959],[77.49762,28.20657],[77.49698,28.20371],[77.49962,28.19502],[77.49839,28.18453],[77.50325,28.18076],[77.50655,28.18168],[77.50853,28.18643],[77.51557,28.19288],[77.51983,28.19249],[77.53062,28.18586],[77.53503,28.18931],[77.54376,28.19127],[77.54795,28.18711],[77.54964,28.17975],[77.5459,28.17194],[77.53696,28.16563],[77.52228,28.1612],[77.51575,28.1634],[77.5112,28.16685],[77.5021,28.16118],[77.50049,28.1548],[77.50469,28.14973],[77.50424,28.14543],[77.50242,28.14322],[77.49219,28.13869],[77.49136,28.13654],[77.49377,28.13285],[77.50908,28.13021],[77.51236,28.12714],[77.51236,28.12484],[77.50938,28.11989],[77.5018,28.11477],[77.49847,28.10892],[77.4979,28.10446],[77.50054,28.09702],[77.49938,28.09461],[77.49218,28.0951],[77.49068,28.09716],[77.48981,28.10556],[77.48211,28.10703],[77.48115,28.09754],[77.47464,28.0862],[77.47561,28.08512],[77.48414,28.08814],[77.49754,28.08538],[77.50745,28.08999],[77.52161,28.08722],[77.52526,28.08962],[77.53498,28.09117],[77.54137,28.08899],[77.54546,28.09122],[77.55166,28.08863],[77.56735,28.08797],[77.57649,28.09694],[77.57697,28.10048],[77.58031,28.10412],[77.58517,28.10658],[77.58722,28.10586],[77.58828,28.10824],[77.58989,28.10679],[77.59153,28.10774],[77.60198,28.11899],[77.60795,28.11152],[77.61386,28.1072],[77.6146,28.10884],[77.61773,28.10894],[77.62457,28.10747],[77.62612,28.10946],[77.62916,28.1058],[77.63166,28.10627],[77.63763,28.103],[77.64481,28.10928],[77.64291,28.11263],[77.64515,28.11387],[77.64742,28.11299],[77.65464,28.12195],[77.6574,28.11898],[77.66182,28.1197],[77.66457,28.11713],[77.66619,28.11794],[77.66863,28.1126],[77.67357,28.10927],[77.67271,28.10292],[77.67992,28.10133],[77.68663,28.09188],[77.69489,28.08702],[77.70027,28.09056],[77.71193,28.08707],[77.72057,28.09094],[77.72128,28.08996],[77.72928,28.1004],[77.72791,28.10351],[77.72814,28.11168],[77.72428,28.11325],[77.73161,28.11829],[77.73424,28.12702],[77.7311,28.13013],[77.73203,28.13144],[77.72541,28.1341],[77.72443,28.13691],[77.72004,28.1369],[77.7192,28.14506],[77.72321,28.14951],[77.72895,28.15119],[77.73208,28.15533],[77.73194,28.15748],[77.72525,28.16329],[77.71901,28.16225],[77.71577,28.16492],[77.70649,28.16365],[77.71273,28.17516],[77.70763,28.17864],[77.70678,28.18103],[77.71301,28.18778],[77.71312,28.19077],[77.72011,28.20267],[77.72842,28.21043],[77.71536,28.2168],[77.7153,28.22468],[77.71424,28.22776],[77.71121,28.23012],[77.71394,28.23555],[77.70757,28.23354],[77.6983,28.23744],[77.69675,28.24038],[77.69671,28.24769],[77.69099,28.25642],[77.69718,28.26277],[77.68813,28.27985],[77.71018,28.29192],[77.71276,28.29022],[77.72412,28.29518],[77.72517,28.30506],[77.72343,28.30682],[77.73792,28.31788],[77.73494,28.32056],[77.73291,28.32568],[77.72573,28.33173],[77.72116,28.32823],[77.71606,28.33267],[77.71327,28.33826],[77.71616,28.34161],[77.71272,28.34489],[77.71633,28.34726],[77.71532,28.35258],[77.71651,28.35335],[77.70718,28.35935],[77.69609,28.36277],[77.68691,28.37333],[77.68017,28.3779],[77.67681,28.37798],[77.6721,28.38148],[77.66743,28.38051],[77.67276,28.39091],[77.66899,28.39217],[77.66951,28.3935],[77.6671,28.39485],[77.66743,28.401],[77.67067,28.40591],[77.68218,28.41389],[77.68292,28.41939],[77.67482,28.42555],[77.67255,28.42652],[77.66657,28.42457],[77.66071,28.42889],[77.6672,28.43518],[77.67193,28.43618],[77.67261,28.43818],[77.67779,28.44139],[77.67757,28.44345],[77.67479,28.44379],[77.67591,28.44607],[77.66328,28.45295],[77.66105,28.45106],[77.66114,28.44987],[77.66259,28.45072],[77.66768,28.44792],[77.66732,28.44536],[77.66272,28.44055],[77.65626,28.43693],[77.65571,28.43451],[77.65799,28.43267],[77.6592,28.42822],[77.65677,28.42508],[77.64671,28.43053],[77.64469,28.42796],[77.63282,28.42741],[77.63012,28.43057],[77.63111,28.43443],[77.63805,28.43908],[77.64177,28.44803],[77.64952,28.45687],[77.64869,28.45824],[77.65128,28.4618],[77.6458,28.46663],[77.64231,28.46747],[77.6346,28.46481],[77.63211,28.4674],[77.63119,28.47453],[77.62407,28.47597],[77.62159,28.47504],[77.62291,28.47881],[77.63702,28.48945],[77.63878,28.48908],[77.64501,28.49335],[77.65061,28.4916],[77.65326,28.49733],[77.65544,28.49614],[77.66172,28.49976],[77.66836,28.49737],[77.66741,28.50265],[77.67033,28.50565],[77.67602,28.5071],[77.67783,28.51042],[77.68063,28.50962],[77.68614,28.51168],[77.68357,28.51649],[77.68741,28.52689],[77.68571,28.52804],[77.69136,28.53228],[77.6926,28.53522],[77.6879,28.53876],[77.6893,28.55141],[77.67716,28.5636],[77.67843,28.5644],[77.67533,28.57133],[77.67774,28.57367],[77.66846,28.58134],[77.65883,28.59408],[77.65572,28.59504],[77.6529,28.59388],[77.6494,28.59647],[77.64762,28.5949],[77.64529,28.59671],[77.64376,28.59537],[77.63932,28.59729],[77.63958,28.59877],[77.6325,28.60403],[77.6305,28.60871],[77.61468,28.61965],[77.62411,28.62726],[77.61944,28.63062],[77.61524,28.63691],[77.61278,28.638],[77.6091,28.63479],[77.60606,28.63712],[77.60498,28.63566],[77.59408,28.64076],[77.5879,28.64052],[77.58302,28.63259],[77.57936,28.63443],[77.5783,28.63299],[77.57585,28.63418],[77.5759,28.63228],[77.56731,28.62608],[77.56187,28.61893],[77.54692,28.62799],[77.55729,28.63844],[77.56058,28.64759],[77.54687,28.65287],[77.54187,28.65167],[77.5476,28.64555],[77.54627,28.64389],[77.54784,28.63833],[77.54205,28.63351],[77.52628,28.64616],[77.51804,28.64959],[77.511,28.64232],[77.50056,28.64883],[77.49035,28.63798],[77.48618,28.63635],[77.4852,28.63362],[77.48081,28.63282],[77.47693,28.6286],[77.47755,28.62733],[77.47356,28.62725],[77.45825,28.63803],[77.45659,28.63789],[77.45056,28.63047],[77.43992,28.62227],[77.4374,28.62346],[77.43374,28.62218],[77.4318,28.6243],[77.42741,28.62532],[77.42169,28.62502],[77.4138,28.62983],[77.40526,28.63061],[77.40108,28.6326],[77.3986,28.63678],[77.39054,28.63475]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"145","area_level":"District","area_name":"Ghaziabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.45693,28.92601],[77.44471,28.92778],[77.44373,28.92547],[77.44113,28.92601],[77.44044,28.92137],[77.44294,28.9193],[77.43771,28.91596],[77.43076,28.90311],[77.42966,28.89544],[77.42739,28.89165],[77.42252,28.88968],[77.41912,28.8801],[77.40809,28.87702],[77.40282,28.87757],[77.40233,28.87533],[77.40795,28.86737],[77.4013,28.84999],[77.41011,28.84622],[77.41415,28.84039],[77.41231,28.83717],[77.40827,28.83642],[77.40724,28.83749],[77.40294,28.83561],[77.40222,28.83238],[77.39008,28.82849],[77.39622,28.82173],[77.40216,28.82161],[77.40005,28.81978],[77.40549,28.81368],[77.39905,28.81022],[77.39429,28.8037],[77.40274,28.79778],[77.40599,28.78244],[77.39849,28.7797],[77.39513,28.77664],[77.38957,28.7795],[77.37493,28.7826],[77.36777,28.78656],[77.3634,28.78614],[77.35813,28.79107],[77.35876,28.79844],[77.35296,28.80418],[77.34824,28.806],[77.34357,28.79622],[77.34135,28.79493],[77.32419,28.80212],[77.31966,28.79522],[77.3126,28.79505],[77.30462,28.79063],[77.29645,28.80099],[77.29977,28.80896],[77.29165,28.81359],[77.29317,28.82745],[77.27788,28.83504],[77.26147,28.83234],[77.25791,28.83455],[77.24903,28.82265],[77.24087,28.82375],[77.23068,28.82263],[77.22602,28.8301],[77.22702,28.83112],[77.223,28.83338],[77.22439,28.82532],[77.22026,28.81914],[77.21896,28.80824],[77.20086,28.81225],[77.19919,28.79837],[77.20302,28.79199],[77.2143,28.78524],[77.22854,28.78653],[77.23415,28.78372],[77.22187,28.77739],[77.23145,28.77441],[77.23179,28.77079],[77.23588,28.77073],[77.23556,28.76092],[77.24878,28.75528],[77.25637,28.7562],[77.25918,28.75],[77.2562,28.74388],[77.25456,28.74356],[77.25519,28.73974],[77.26082,28.73416],[77.27291,28.73627],[77.27644,28.73545],[77.28628,28.72458],[77.29077,28.72238],[77.28883,28.71957],[77.28909,28.71682],[77.28624,28.71453],[77.28945,28.70758],[77.29678,28.70444],[77.29904,28.70985],[77.30478,28.7129],[77.33108,28.7131],[77.32543,28.70888],[77.32445,28.7065],[77.32574,28.70285],[77.32327,28.69858],[77.3303,28.69039],[77.33292,28.68196],[77.3301,28.67822],[77.3236,28.67671],[77.32372,28.66896],[77.32076,28.66349],[77.31988,28.65109],[77.31627,28.64121],[77.3237,28.63432],[77.33063,28.63139],[77.34256,28.62197],[77.34218,28.60956],[77.35511,28.61087],[77.3605,28.60806],[77.36886,28.60877],[77.36914,28.61019],[77.35989,28.6153],[77.35842,28.6178],[77.36384,28.62465],[77.37342,28.6221],[77.37656,28.62878],[77.37382,28.63163],[77.38024,28.63695],[77.37967,28.64009],[77.38095,28.6408],[77.37897,28.64796],[77.38179,28.64927],[77.38172,28.65335],[77.38492,28.65436],[77.38909,28.65306],[77.38602,28.64435],[77.39107,28.63431],[77.3986,28.63678],[77.40108,28.6326],[77.40526,28.63061],[77.4138,28.62983],[77.42169,28.62502],[77.42899,28.62502],[77.43374,28.62218],[77.44151,28.6232],[77.45056,28.63047],[77.45659,28.63789],[77.45825,28.63803],[77.47356,28.62725],[77.47755,28.62733],[77.47693,28.6286],[77.48081,28.63282],[77.4852,28.63362],[77.48618,28.63635],[77.49035,28.63798],[77.50056,28.64883],[77.511,28.64232],[77.51804,28.64959],[77.5204,28.64876],[77.52628,28.64616],[77.54205,28.63351],[77.54784,28.63833],[77.54627,28.64389],[77.5476,28.64555],[77.54187,28.65167],[77.54687,28.65287],[77.56058,28.64759],[77.56621,28.65294],[77.56379,28.65616],[77.56355,28.65976],[77.54579,28.66675],[77.54728,28.66939],[77.54621,28.67001],[77.54706,28.67466],[77.54437,28.67807],[77.547,28.68208],[77.54599,28.68477],[77.56142,28.68714],[77.56449,28.69152],[77.56355,28.69276],[77.56521,28.69739],[77.56998,28.70204],[77.58427,28.70185],[77.59048,28.69859],[77.59586,28.70623],[77.60076,28.7097],[77.6033,28.7095],[77.605,28.71206],[77.61516,28.716],[77.61394,28.71773],[77.6165,28.72159],[77.60624,28.72805],[77.6078,28.72969],[77.60992,28.72891],[77.61319,28.73256],[77.61783,28.73157],[77.62224,28.73303],[77.6228,28.73563],[77.62541,28.73371],[77.62578,28.73121],[77.63267,28.72648],[77.6371,28.73049],[77.64009,28.72399],[77.64792,28.72996],[77.64998,28.73385],[77.65482,28.73443],[77.6615,28.73217],[77.67022,28.72269],[77.67572,28.72671],[77.67705,28.72549],[77.67827,28.72688],[77.68258,28.72426],[77.68386,28.72908],[77.68214,28.73245],[77.68327,28.73464],[77.68222,28.73793],[77.68709,28.74342],[77.69014,28.74342],[77.68882,28.74469],[77.69005,28.74807],[77.68344,28.75377],[77.6828,28.76004],[77.6796,28.76276],[77.6847,28.76808],[77.68316,28.7726],[77.68502,28.77632],[77.69069,28.77504],[77.70156,28.78574],[77.70515,28.7865],[77.70799,28.78964],[77.70504,28.79448],[77.70874,28.79961],[77.70683,28.8029],[77.70721,28.81013],[77.70953,28.813],[77.70678,28.81272],[77.70511,28.81527],[77.69203,28.82377],[77.69763,28.83363],[77.69816,28.83655],[77.69474,28.84246],[77.69969,28.8479],[77.6999,28.8531],[77.68731,28.86178],[77.68662,28.87261],[77.68185,28.87455],[77.68017,28.87714],[77.67152,28.87623],[77.66697,28.87346],[77.66404,28.86909],[77.65522,28.86807],[77.6521,28.87125],[77.65429,28.8735],[77.6514,28.87521],[77.65219,28.87635],[77.64231,28.88189],[77.6386,28.8789],[77.61808,28.88095],[77.6126,28.8754],[77.60823,28.87811],[77.6061,28.87563],[77.60137,28.87685],[77.59287,28.87495],[77.58658,28.88274],[77.58672,28.88977],[77.58262,28.89283],[77.57142,28.88715],[77.55933,28.8903],[77.55074,28.89655],[77.54852,28.8946],[77.5465,28.89536],[77.54314,28.8896],[77.53769,28.88935],[77.53682,28.88794],[77.53119,28.88823],[77.52041,28.89396],[77.51706,28.89274],[77.50113,28.90111],[77.49312,28.89541],[77.48857,28.89696],[77.48391,28.90102],[77.45656,28.90676],[77.46027,28.91104],[77.45825,28.91844],[77.45965,28.91985],[77.4587,28.92535],[77.45693,28.92601]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"146","area_level":"District","area_name":"Ghazipur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.64554,25.90004],[83.64201,25.89978],[83.64256,25.89324],[83.63661,25.89391],[83.63419,25.88853],[83.63056,25.86936],[83.6264,25.87153],[83.62439,25.87496],[83.61844,25.87368],[83.61517,25.87491],[83.6113,25.88286],[83.60322,25.87969],[83.59587,25.88442],[83.59487,25.88153],[83.59278,25.88079],[83.58484,25.8812],[83.58181,25.87664],[83.57517,25.87727],[83.57097,25.8731],[83.55907,25.87234],[83.55618,25.86986],[83.55337,25.86978],[83.55324,25.8676],[83.5495,25.86578],[83.54696,25.86649],[83.54375,25.8646],[83.53904,25.86446],[83.53336,25.86628],[83.5309,25.86517],[83.52881,25.86712],[83.52656,25.86541],[83.52468,25.86831],[83.52174,25.86616],[83.51865,25.86788],[83.51114,25.86678],[83.50853,25.8683],[83.50772,25.86678],[83.49715,25.86395],[83.49884,25.86145],[83.49699,25.85803],[83.49074,25.85878],[83.49134,25.85638],[83.48908,25.85763],[83.48692,25.85573],[83.48733,25.85003],[83.48491,25.84873],[83.48531,25.84466],[83.48148,25.83965],[83.47703,25.83897],[83.47133,25.84472],[83.46774,25.84544],[83.46625,25.84817],[83.4626,25.84762],[83.46137,25.85105],[83.46025,25.84936],[83.45788,25.84981],[83.45707,25.8469],[83.4518,25.84299],[83.44556,25.84034],[83.44212,25.84297],[83.43645,25.84149],[83.43632,25.83984],[83.43326,25.83867],[83.42806,25.84721],[83.42625,25.84655],[83.42448,25.84828],[83.41973,25.84321],[83.40645,25.84171],[83.40604,25.83953],[83.40008,25.84022],[83.39662,25.83176],[83.40392,25.82927],[83.40053,25.82338],[83.39358,25.82475],[83.3907,25.8198],[83.3849,25.82183],[83.37949,25.81688],[83.38379,25.81404],[83.37953,25.8024],[83.37506,25.80109],[83.37162,25.79724],[83.37142,25.79985],[83.3701,25.79912],[83.36449,25.80205],[83.3652,25.80549],[83.36262,25.80668],[83.36262,25.81108],[83.35352,25.81184],[83.35128,25.81483],[83.34344,25.81532],[83.33862,25.81092],[83.33231,25.81124],[83.32952,25.81473],[83.32616,25.81347],[83.32307,25.81439],[83.31953,25.80688],[83.31741,25.80697],[83.31704,25.80128],[83.32024,25.80083],[83.32006,25.79595],[83.31671,25.79514],[83.31349,25.78772],[83.30918,25.78725],[83.30827,25.78585],[83.30744,25.78791],[83.30479,25.78543],[83.30661,25.78012],[83.30544,25.77798],[83.30708,25.77676],[83.30361,25.77458],[83.3052,25.76957],[83.29995,25.76843],[83.29854,25.76652],[83.30391,25.76432],[83.30177,25.76312],[83.30186,25.76153],[83.30314,25.76188],[83.30294,25.7584],[83.30417,25.75818],[83.30312,25.75551],[83.29926,25.75689],[83.29538,25.75558],[83.29128,25.75707],[83.2878,25.75727],[83.28563,25.7555],[83.28323,25.75645],[83.28482,25.75796],[83.28439,25.76248],[83.28181,25.76111],[83.2812,25.75875],[83.27979,25.7593],[83.28013,25.76794],[83.2767,25.76988],[83.27495,25.77641],[83.27064,25.77281],[83.27102,25.77674],[83.26236,25.77677],[83.26075,25.77222],[83.25795,25.77304],[83.25691,25.77576],[83.25503,25.7744],[83.25557,25.77263],[83.25288,25.77222],[83.2516,25.77006],[83.24694,25.77076],[83.24597,25.76539],[83.24046,25.76634],[83.23852,25.76497],[83.23656,25.76897],[83.23277,25.76858],[83.23026,25.76358],[83.22363,25.75978],[83.21861,25.75912],[83.2169,25.76039],[83.2181,25.76886],[83.2142,25.76824],[83.21363,25.77224],[83.21133,25.77149],[83.20858,25.77398],[83.20545,25.77044],[83.20326,25.77106],[83.19865,25.77714],[83.19359,25.77853],[83.18901,25.76635],[83.20046,25.76318],[83.20797,25.75841],[83.21084,25.76279],[83.21696,25.76238],[83.21806,25.75876],[83.21595,25.75274],[83.21971,25.74929],[83.21715,25.73769],[83.21389,25.73134],[83.22093,25.72946],[83.22958,25.72456],[83.23264,25.71745],[83.24153,25.70889],[83.24032,25.70683],[83.23702,25.70765],[83.23371,25.70485],[83.23483,25.70336],[83.22887,25.70387],[83.22839,25.70153],[83.22253,25.70177],[83.21532,25.70436],[83.21481,25.70185],[83.20909,25.70176],[83.20665,25.70345],[83.20253,25.70237],[83.19859,25.70425],[83.1939,25.70213],[83.19117,25.69982],[83.19147,25.69699],[83.18917,25.69557],[83.19005,25.69306],[83.18533,25.69073],[83.18641,25.68663],[83.18488,25.68134],[83.18701,25.67684],[83.18285,25.67561],[83.18183,25.67204],[83.17707,25.67099],[83.17175,25.67276],[83.17323,25.66779],[83.17171,25.6627],[83.16563,25.66167],[83.16611,25.66347],[83.15861,25.66488],[83.15783,25.66356],[83.15488,25.66379],[83.15332,25.6599],[83.15051,25.65947],[83.14874,25.65718],[83.14742,25.65342],[83.15193,25.65014],[83.15116,25.64011],[83.15309,25.63904],[83.14866,25.63598],[83.14188,25.63627],[83.14081,25.64005],[83.13896,25.63875],[83.13795,25.64104],[83.13574,25.6404],[83.12066,25.6546],[83.11484,25.65392],[83.1096,25.65583],[83.10571,25.65463],[83.10033,25.6554],[83.09848,25.65772],[83.08775,25.65813],[83.08663,25.64958],[83.07896,25.65169],[83.06624,25.65237],[83.06281,25.63604],[83.06477,25.62691],[83.06802,25.62066],[83.07437,25.61894],[83.07694,25.61561],[83.07513,25.6006],[83.06789,25.59869],[83.06661,25.59532],[83.07675,25.59073],[83.07694,25.58808],[83.08627,25.59074],[83.08775,25.57923],[83.09012,25.57359],[83.08046,25.57126],[83.07749,25.56226],[83.07807,25.55751],[83.07032,25.55121],[83.07572,25.5436],[83.07694,25.53714],[83.07464,25.53539],[83.06593,25.53429],[83.06415,25.52868],[83.07762,25.5154],[83.08397,25.49625],[83.08975,25.50043],[83.08925,25.50263],[83.09447,25.50323],[83.09462,25.50575],[83.09869,25.50429],[83.10341,25.50522],[83.10555,25.49748],[83.10896,25.49412],[83.11349,25.4961],[83.11674,25.50044],[83.11744,25.50425],[83.1157,25.50669],[83.10662,25.50785],[83.09856,25.51409],[83.09669,25.52191],[83.09821,25.52488],[83.10255,25.52739],[83.10855,25.52723],[83.13173,25.50709],[83.16466,25.50639],[83.16648,25.50815],[83.16562,25.51168],[83.15579,25.51574],[83.15355,25.51744],[83.15422,25.51998],[83.16589,25.52413],[83.17251,25.52334],[83.17389,25.52989],[83.17713,25.52739],[83.17427,25.52355],[83.17788,25.52175],[83.18293,25.52786],[83.19137,25.53345],[83.19922,25.53527],[83.20817,25.53476],[83.22938,25.53014],[83.24432,25.52399],[83.30664,25.48889],[83.32161,25.47109],[83.33576,25.4636],[83.34144,25.46541],[83.35799,25.47866],[83.3831,25.49342],[83.3946,25.49615],[83.40387,25.49398],[83.42467,25.47421],[83.42706,25.46784],[83.43891,25.45465],[83.45978,25.44064],[83.4759,25.42525],[83.49798,25.40836],[83.51784,25.39665],[83.53088,25.39231],[83.52816,25.38304],[83.52266,25.37982],[83.52496,25.37947],[83.53129,25.37072],[83.53112,25.36484],[83.53748,25.36341],[83.53911,25.35521],[83.54505,25.35338],[83.54653,25.35003],[83.54647,25.34549],[83.53628,25.34613],[83.52995,25.32309],[83.53787,25.3184],[83.53903,25.31589],[83.55392,25.31481],[83.5573,25.31148],[83.5617,25.31359],[83.57206,25.31466],[83.57348,25.31249],[83.57064,25.30779],[83.57252,25.3061],[83.57689,25.30956],[83.57624,25.31504],[83.58062,25.3171],[83.58574,25.31531],[83.58742,25.32175],[83.59628,25.32767],[83.60601,25.3287],[83.6081,25.33152],[83.61685,25.33206],[83.62138,25.33147],[83.62404,25.32872],[83.62844,25.32852],[83.62989,25.33386],[83.63414,25.33435],[83.63515,25.33584],[83.63371,25.34321],[83.64219,25.33973],[83.6463,25.34247],[83.6488,25.33927],[83.64933,25.3445],[83.65281,25.34834],[83.64916,25.35398],[83.65135,25.3574],[83.65453,25.35688],[83.65794,25.35963],[83.65595,25.36836],[83.6609,25.36307],[83.66709,25.36272],[83.66363,25.3727],[83.67666,25.36434],[83.69371,25.36963],[83.69453,25.37123],[83.68938,25.37571],[83.68401,25.37626],[83.68206,25.37862],[83.69059,25.38395],[83.69655,25.38247],[83.69448,25.38895],[83.70168,25.39616],[83.70396,25.39633],[83.70526,25.39468],[83.70661,25.38635],[83.71012,25.38604],[83.71362,25.3935],[83.71743,25.39752],[83.72446,25.40001],[83.73059,25.39743],[83.73235,25.39815],[83.73407,25.4062],[83.74059,25.41063],[83.74351,25.40787],[83.74507,25.40046],[83.75546,25.40447],[83.76627,25.40095],[83.76628,25.3974],[83.75651,25.39675],[83.75499,25.39225],[83.75778,25.38952],[83.76897,25.38636],[83.76914,25.39339],[83.77278,25.39816],[83.7763,25.39903],[83.78481,25.3963],[83.78965,25.39677],[83.80784,25.4091],[83.81439,25.42121],[83.81302,25.4231],[83.80096,25.42549],[83.80006,25.42775],[83.80156,25.42983],[83.8124,25.42962],[83.82151,25.43434],[83.82914,25.43621],[83.83288,25.43566],[83.83179,25.43217],[83.83299,25.43103],[83.84635,25.43435],[83.84652,25.4388],[83.84192,25.44692],[83.82537,25.4459],[83.81959,25.45026],[83.81281,25.4482],[83.81214,25.45121],[83.81559,25.46142],[83.81858,25.46422],[83.82489,25.4658],[83.83049,25.45838],[83.83278,25.45761],[83.85675,25.46857],[83.8636,25.48441],[83.87074,25.48751],[83.87159,25.49313],[83.87781,25.49925],[83.87742,25.50392],[83.87416,25.50953],[83.87621,25.51806],[83.89418,25.51992],[83.90334,25.52519],[83.91419,25.54521],[83.9212,25.55198],[83.93025,25.55748],[83.92706,25.56511],[83.92723,25.56976],[83.92931,25.57135],[83.93085,25.57838],[83.93079,25.58824],[83.9343,25.58729],[83.93514,25.5813],[83.94243,25.58175],[83.93993,25.58957],[83.94329,25.59139],[83.93637,25.61574],[83.93425,25.61578],[83.9312,25.6188],[83.92706,25.61799],[83.92649,25.62226],[83.92066,25.63458],[83.92732,25.63558],[83.92718,25.63748],[83.93227,25.63778],[83.93368,25.64104],[83.9365,25.6423],[83.93701,25.65665],[83.94263,25.65742],[83.94487,25.67066],[83.94725,25.6752],[83.95565,25.67646],[83.96214,25.68472],[83.96228,25.68779],[83.96012,25.68911],[83.954,25.68521],[83.95157,25.68531],[83.95237,25.70237],[83.93618,25.70835],[83.94108,25.72357],[83.95147,25.72115],[83.95428,25.72682],[83.95919,25.72547],[83.96057,25.72941],[83.95616,25.73087],[83.95724,25.7342],[83.95096,25.73508],[83.94746,25.74076],[83.95353,25.74601],[83.95296,25.74947],[83.94623,25.75053],[83.94659,25.75308],[83.94965,25.75598],[83.94781,25.75802],[83.941,25.7587],[83.94123,25.7613],[83.93647,25.76014],[83.93928,25.7642],[83.93422,25.76316],[83.92631,25.76777],[83.92172,25.76433],[83.92189,25.76184],[83.92477,25.75889],[83.921,25.75687],[83.91703,25.75012],[83.91232,25.74934],[83.91003,25.7552],[83.91591,25.7611],[83.90803,25.76402],[83.90654,25.76649],[83.90334,25.7645],[83.90472,25.76097],[83.90112,25.76069],[83.90094,25.75733],[83.89164,25.7628],[83.88264,25.76441],[83.8828,25.76636],[83.87879,25.7707],[83.87973,25.77269],[83.87819,25.77728],[83.87486,25.77738],[83.87506,25.77881],[83.87253,25.77967],[83.86635,25.77772],[83.86636,25.78545],[83.86348,25.78867],[83.86417,25.79221],[83.8601,25.79247],[83.85899,25.79585],[83.85441,25.79816],[83.85306,25.79575],[83.85716,25.79315],[83.85196,25.78598],[83.84771,25.78651],[83.8418,25.79105],[83.83323,25.79374],[83.83136,25.78677],[83.82593,25.78429],[83.8209,25.77797],[83.81494,25.77777],[83.81334,25.78146],[83.81901,25.7836],[83.82039,25.78673],[83.81317,25.79057],[83.81188,25.79312],[83.79909,25.80342],[83.79872,25.80549],[83.80074,25.80703],[83.79979,25.81223],[83.79528,25.81331],[83.79016,25.80887],[83.78679,25.80872],[83.78397,25.81221],[83.78743,25.81382],[83.78678,25.81553],[83.77871,25.81363],[83.77057,25.81691],[83.767,25.81961],[83.76557,25.82578],[83.75942,25.82792],[83.7543,25.8337],[83.7509,25.83414],[83.7454,25.84428],[83.74668,25.84923],[83.74924,25.8517],[83.74909,25.85446],[83.74695,25.85671],[83.74412,25.85727],[83.74303,25.85126],[83.7381,25.84184],[83.73559,25.84081],[83.73709,25.84713],[83.73539,25.84838],[83.73077,25.84785],[83.72819,25.85001],[83.72806,25.85276],[83.73096,25.857],[83.72698,25.85761],[83.72012,25.8554],[83.71714,25.85647],[83.71808,25.85891],[83.72708,25.86425],[83.72472,25.86877],[83.72119,25.86971],[83.70106,25.8637],[83.70042,25.86619],[83.69648,25.86704],[83.69747,25.87127],[83.69097,25.8721],[83.69032,25.8706],[83.68548,25.87038],[83.68339,25.87472],[83.67799,25.87489],[83.66768,25.87957],[83.66692,25.88515],[83.66335,25.88953],[83.65887,25.89221],[83.65567,25.89152],[83.65172,25.89346],[83.64554,25.90004]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"147","area_level":"District","area_name":"Gonda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.9706,27.43631],[81.96917,27.43956],[81.9633,27.43248],[81.95527,27.4314],[81.95495,27.4291],[81.95312,27.43156],[81.95232,27.43035],[81.94725,27.43169],[81.94625,27.43424],[81.94366,27.43478],[81.93953,27.43202],[81.94134,27.42833],[81.93976,27.42763],[81.94164,27.42651],[81.9373,27.42405],[81.93705,27.41937],[81.93204,27.41876],[81.92797,27.41558],[81.92653,27.40895],[81.93144,27.40661],[81.9327,27.39839],[81.9314,27.39157],[81.93912,27.38617],[81.93065,27.37771],[81.92393,27.38048],[81.92276,27.37748],[81.91918,27.3767],[81.91551,27.37116],[81.91098,27.372],[81.90685,27.36523],[81.90771,27.36204],[81.91522,27.35656],[81.91279,27.35153],[81.91858,27.34796],[81.9167,27.34328],[81.91084,27.33899],[81.90919,27.33202],[81.92274,27.3258],[81.92346,27.32401],[81.92125,27.31907],[81.92325,27.31715],[81.92224,27.31274],[81.92085,27.31447],[81.91672,27.31245],[81.91352,27.31348],[81.90368,27.32069],[81.89351,27.3154],[81.89086,27.31794],[81.892,27.31991],[81.88974,27.32557],[81.88628,27.32935],[81.87585,27.32557],[81.87487,27.33073],[81.87042,27.3304],[81.8654,27.32833],[81.86087,27.32341],[81.85343,27.32682],[81.85153,27.32179],[81.84819,27.32177],[81.8462,27.3127],[81.83743,27.29827],[81.83886,27.29632],[81.83611,27.29314],[81.83931,27.29025],[81.83783,27.28143],[81.83378,27.27681],[81.82889,27.27769],[81.82418,27.27009],[81.81862,27.27214],[81.81439,27.2659],[81.81109,27.26685],[81.80821,27.2704],[81.79743,27.27351],[81.79941,27.28117],[81.79474,27.29234],[81.7895,27.29182],[81.7858,27.29507],[81.78112,27.29007],[81.77536,27.29485],[81.77967,27.30217],[81.77572,27.30775],[81.772,27.30697],[81.76642,27.31125],[81.76317,27.30839],[81.76051,27.30961],[81.74968,27.31734],[81.74516,27.32582],[81.73889,27.32665],[81.73353,27.33008],[81.7262,27.32344],[81.72154,27.32467],[81.72012,27.31947],[81.71574,27.31645],[81.69249,27.31868],[81.68329,27.31601],[81.6806,27.30566],[81.68275,27.30141],[81.69909,27.29801],[81.70956,27.29195],[81.70785,27.2769],[81.70342,27.26613],[81.6927,27.25728],[81.69073,27.25772],[81.68941,27.26093],[81.68446,27.25583],[81.68136,27.25026],[81.68437,27.24061],[81.68111,27.23671],[81.67018,27.23812],[81.66504,27.23338],[81.66608,27.2328],[81.66101,27.22528],[81.66048,27.22185],[81.66543,27.21833],[81.66216,27.21558],[81.66566,27.21291],[81.66438,27.20831],[81.66203,27.20629],[81.66647,27.20028],[81.66439,27.19635],[81.6603,27.20062],[81.65522,27.20269],[81.64876,27.19372],[81.64696,27.18741],[81.64155,27.1877],[81.64351,27.18468],[81.64001,27.18326],[81.63796,27.17766],[81.64229,27.17857],[81.64673,27.17666],[81.64449,27.17494],[81.6449,27.16768],[81.63926,27.16513],[81.6411,27.15745],[81.63659,27.16037],[81.63034,27.15851],[81.62832,27.15157],[81.63022,27.15003],[81.62919,27.14158],[81.6135,27.14317],[81.60577,27.14576],[81.60298,27.13912],[81.59708,27.13792],[81.59746,27.13556],[81.59044,27.12959],[81.58898,27.12089],[81.5859,27.11755],[81.58119,27.1218],[81.57659,27.12293],[81.56739,27.12949],[81.56641,27.12843],[81.56947,27.12558],[81.5682,27.12186],[81.56604,27.11969],[81.56421,27.12038],[81.56072,27.11497],[81.5586,27.11522],[81.54949,27.10771],[81.53934,27.09481],[81.54684,27.08878],[81.54538,27.08701],[81.54295,27.08736],[81.54019,27.08172],[81.54261,27.07712],[81.53931,27.07887],[81.53835,27.08364],[81.53538,27.08525],[81.51875,27.08654],[81.51485,27.0843],[81.52026,27.07318],[81.5402,27.05621],[81.54107,27.05202],[81.56066,27.05354],[81.568,27.04794],[81.57636,27.04528],[81.58435,27.0398],[81.58857,27.04011],[81.58943,27.03178],[81.59116,27.03334],[81.59251,27.03146],[81.59937,27.0358],[81.60696,27.03386],[81.61078,27.03709],[81.61319,27.03119],[81.61877,27.03204],[81.62019,27.02191],[81.61905,27.01888],[81.62819,27.01854],[81.62604,27.01078],[81.63599,27.00788],[81.63791,27.00027],[81.64724,27.00027],[81.64786,26.99713],[81.64959,26.9983],[81.65401,26.99698],[81.65119,26.98008],[81.67432,26.97083],[81.68208,26.96588],[81.6839,26.96712],[81.68884,26.96153],[81.68754,26.95692],[81.69058,26.96047],[81.69889,26.96134],[81.70101,26.95783],[81.7134,26.96428],[81.71754,26.9637],[81.71933,26.97218],[81.73006,26.9659],[81.73305,26.95611],[81.73739,26.95004],[81.73269,26.9471],[81.72869,26.94176],[81.72844,26.93901],[81.72665,26.93942],[81.72558,26.93075],[81.72285,26.92602],[81.72556,26.91938],[81.73074,26.91738],[81.73142,26.92036],[81.73955,26.90887],[81.73469,26.9134],[81.73104,26.90935],[81.73659,26.90603],[81.74705,26.89102],[81.76115,26.87996],[81.75495,26.87332],[81.74695,26.87381],[81.74387,26.86989],[81.74768,26.86695],[81.76371,26.8608],[81.7696,26.86288],[81.77747,26.85663],[81.7815,26.85665],[81.78991,26.85326],[81.80523,26.85583],[81.80676,26.86424],[81.80884,26.86644],[81.8152,26.86373],[81.82,26.86516],[81.82646,26.85831],[81.82477,26.85346],[81.83037,26.85213],[81.83003,26.84476],[81.83823,26.84265],[81.84612,26.83769],[81.85516,26.83887],[81.87525,26.83684],[81.89224,26.82738],[81.90598,26.81194],[81.91718,26.79119],[81.94012,26.78869],[81.95626,26.78412],[81.97675,26.78115],[81.98526,26.78243],[81.99612,26.78667],[82.00206,26.78587],[82.01075,26.79573],[82.03409,26.80887],[82.06008,26.80565],[82.0809,26.81185],[82.08801,26.81163],[82.09594,26.81573],[82.10815,26.82638],[82.11286,26.8268],[82.12706,26.82328],[82.13033,26.82936],[82.14095,26.8353],[82.14313,26.83253],[82.15244,26.83127],[82.15942,26.83402],[82.1686,26.82858],[82.17871,26.83239],[82.17911,26.83627],[82.19138,26.83705],[82.20537,26.8291],[82.20542,26.82113],[82.2126,26.81861],[82.22293,26.80797],[82.23805,26.81865],[82.24688,26.81088],[82.25144,26.81098],[82.25488,26.81292],[82.25477,26.81502],[82.25841,26.8197],[82.25685,26.82548],[82.25096,26.82518],[82.24705,26.82766],[82.24582,26.8324],[82.24715,26.83415],[82.24373,26.83654],[82.23664,26.85315],[82.24041,26.85481],[82.23641,26.85829],[82.23798,26.8597],[82.23207,26.86216],[82.23047,26.86809],[82.23189,26.87159],[82.23794,26.87352],[82.2501,26.89718],[82.24715,26.90518],[82.2371,26.91464],[82.23877,26.91868],[82.23386,26.91982],[82.24099,26.93187],[82.24392,26.93386],[82.25165,26.93436],[82.25582,26.93811],[82.25751,26.94216],[82.26329,26.9421],[82.27421,26.93606],[82.27588,26.93987],[82.27507,26.94313],[82.28285,26.94447],[82.28232,26.94607],[82.28513,26.94796],[82.29089,26.94904],[82.28999,26.95194],[82.29552,26.95738],[82.29651,26.96049],[82.29879,26.9613],[82.29793,26.96294],[82.30286,26.96422],[82.30234,26.96699],[82.31195,26.96862],[82.31465,26.97044],[82.3138,26.97451],[82.31528,26.97805],[82.31715,26.97786],[82.32699,26.96761],[82.32716,26.95513],[82.33227,26.95236],[82.33272,26.94927],[82.33987,26.94533],[82.35343,26.93216],[82.35549,26.93147],[82.3568,26.93291],[82.36167,26.93076],[82.36425,26.9331],[82.3677,26.93186],[82.37014,26.93725],[82.37817,26.93581],[82.38007,26.93998],[82.38677,26.94072],[82.38631,26.94658],[82.38829,26.94944],[82.40615,26.94176],[82.41043,26.93713],[82.41214,26.93699],[82.41262,26.93891],[82.43515,26.92696],[82.43948,26.92692],[82.44422,26.93162],[82.45282,26.92638],[82.45264,26.92435],[82.4556,26.92196],[82.47481,26.9098],[82.47903,26.90338],[82.48798,26.90335],[82.49021,26.90882],[82.49674,26.91397],[82.49928,26.91937],[82.49837,26.92032],[82.50084,26.92027],[82.50008,26.93016],[82.50615,26.94064],[82.51002,26.94323],[82.51112,26.94684],[82.52026,26.95167],[82.52796,26.9499],[82.53916,26.95045],[82.54296,26.95429],[82.54539,26.9543],[82.54849,26.95894],[82.54823,26.96159],[82.56204,26.96488],[82.56329,26.9669],[82.56246,26.97077],[82.56461,26.97499],[82.56223,26.98456],[82.56315,26.98668],[82.56589,26.98852],[82.56767,26.98571],[82.56973,26.98593],[82.57476,26.99133],[82.57892,26.99306],[82.58314,26.9921],[82.58332,26.99659],[82.5817,26.9973],[82.58414,27.00049],[82.6084,26.99856],[82.6136,27.00026],[82.61389,27.00224],[82.61121,27.00203],[82.61042,27.00312],[82.61231,27.00375],[82.61029,27.00519],[82.60934,27.00338],[82.60835,27.00497],[82.60653,27.00392],[82.60499,27.00682],[82.60138,27.00729],[82.59692,27.01071],[82.59574,27.00946],[82.59373,27.01105],[82.58888,27.00987],[82.58974,27.01169],[82.5879,27.0118],[82.58677,27.01462],[82.58029,27.01638],[82.58158,27.01745],[82.5807,27.01948],[82.57761,27.01376],[82.57583,27.01405],[82.57592,27.01649],[82.57278,27.01653],[82.57384,27.0139],[82.57106,27.01285],[82.57171,27.01435],[82.57002,27.01446],[82.56856,27.0173],[82.56949,27.01969],[82.5668,27.02072],[82.56832,27.02184],[82.56673,27.02375],[82.56942,27.0247],[82.56867,27.02945],[82.57187,27.02846],[82.57196,27.03089],[82.56904,27.03721],[82.56491,27.04049],[82.56372,27.03873],[82.56117,27.03884],[82.56539,27.04632],[82.56182,27.04503],[82.55987,27.04851],[82.5544,27.0496],[82.55445,27.05192],[82.55795,27.05377],[82.56061,27.05319],[82.55869,27.05648],[82.56025,27.06323],[82.56303,27.06431],[82.56531,27.06354],[82.56471,27.06119],[82.56716,27.06212],[82.56408,27.07001],[82.56612,27.06941],[82.56758,27.07175],[82.55931,27.07428],[82.56031,27.07665],[82.56343,27.07663],[82.55906,27.082],[82.55822,27.08609],[82.55255,27.08522],[82.5525,27.08896],[82.55615,27.09066],[82.55665,27.09251],[82.55317,27.09479],[82.55032,27.0944],[82.55473,27.10189],[82.5512,27.105],[82.54849,27.1002],[82.54623,27.10177],[82.54762,27.10618],[82.54416,27.10833],[82.54421,27.11211],[82.54065,27.11497],[82.53318,27.11731],[82.52945,27.11406],[82.52349,27.1193],[82.51529,27.1205],[82.51473,27.1229],[82.5169,27.12408],[82.51307,27.12701],[82.51108,27.12748],[82.50489,27.12133],[82.50515,27.12491],[82.50717,27.12584],[82.50591,27.13126],[82.50972,27.13311],[82.50233,27.13428],[82.50046,27.13613],[82.49748,27.14025],[82.4992,27.14308],[82.49783,27.14693],[82.4949,27.1449],[82.49352,27.14562],[82.49326,27.14818],[82.49691,27.15205],[82.4942,27.15423],[82.49478,27.15738],[82.49315,27.15983],[82.48945,27.15656],[82.48766,27.15745],[82.48966,27.16498],[82.48507,27.1611],[82.48264,27.16584],[82.48195,27.16277],[82.47957,27.16419],[82.47064,27.16172],[82.47491,27.15771],[82.48123,27.15573],[82.47897,27.15519],[82.48065,27.15134],[82.47224,27.15561],[82.46458,27.15623],[82.46258,27.15473],[82.45949,27.15508],[82.45579,27.15127],[82.45598,27.14745],[82.45983,27.14464],[82.46203,27.13873],[82.46871,27.13393],[82.46044,27.12063],[82.45131,27.12379],[82.45062,27.13557],[82.44761,27.13654],[82.44512,27.13494],[82.44153,27.13704],[82.44008,27.14058],[82.43537,27.14045],[82.43262,27.13326],[82.43633,27.13118],[82.43169,27.12358],[82.43075,27.11845],[82.43306,27.11889],[82.43116,27.1122],[82.43555,27.11238],[82.43598,27.11386],[82.43891,27.1124],[82.43816,27.10912],[82.43139,27.10597],[82.42751,27.09876],[82.42361,27.09766],[82.42269,27.09356],[82.42048,27.09228],[82.42138,27.08501],[82.41558,27.08572],[82.41254,27.08167],[82.41238,27.08566],[82.40582,27.08682],[82.40666,27.08967],[82.40536,27.09343],[82.39953,27.09301],[82.39521,27.08473],[82.39917,27.08244],[82.39805,27.08128],[82.40058,27.07699],[82.40423,27.07422],[82.40044,27.07249],[82.39664,27.07413],[82.3926,27.06678],[82.38193,27.07394],[82.38017,27.07005],[82.37825,27.06967],[82.37875,27.06767],[82.37492,27.06478],[82.38005,27.06173],[82.37846,27.05875],[82.37573,27.058],[82.37108,27.0531],[82.37003,27.05579],[82.37022,27.05426],[82.36581,27.05172],[82.36393,27.05343],[82.36523,27.05345],[82.36526,27.05554],[82.36119,27.05641],[82.36163,27.05845],[82.35875,27.05775],[82.35435,27.0615],[82.35395,27.05896],[82.3512,27.05993],[82.34791,27.06238],[82.34289,27.07044],[82.33795,27.07066],[82.33831,27.06837],[82.33374,27.07124],[82.33196,27.06505],[82.32762,27.06452],[82.32515,27.06583],[82.32269,27.07286],[82.32467,27.07888],[82.32159,27.07596],[82.32014,27.07743],[82.32392,27.08475],[82.3223,27.08758],[82.32531,27.09086],[82.32321,27.09357],[82.32464,27.09568],[82.32306,27.09724],[82.32021,27.09655],[82.31933,27.09922],[82.31691,27.09828],[82.3173,27.1047],[82.31505,27.10374],[82.31037,27.10658],[82.30861,27.10459],[82.30804,27.10626],[82.30538,27.10661],[82.30157,27.09976],[82.29968,27.09952],[82.29854,27.10187],[82.29715,27.09989],[82.29512,27.10245],[82.29612,27.1033],[82.294,27.10343],[82.29426,27.10585],[82.29042,27.10426],[82.29192,27.10704],[82.29373,27.10677],[82.29413,27.11002],[82.29598,27.11033],[82.29508,27.11198],[82.292,27.11158],[82.2912,27.1139],[82.291,27.11234],[82.28789,27.1116],[82.28768,27.11447],[82.28374,27.11264],[82.28002,27.11541],[82.27473,27.11386],[82.276,27.11652],[82.27307,27.11853],[82.27151,27.11789],[82.27043,27.12065],[82.27184,27.12791],[82.2647,27.1294],[82.26797,27.13677],[82.26155,27.14013],[82.25995,27.13901],[82.25745,27.1421],[82.2563,27.14005],[82.25577,27.14172],[82.25346,27.14165],[82.25331,27.14396],[82.24973,27.14415],[82.24551,27.14867],[82.23992,27.14992],[82.23947,27.15174],[82.24285,27.15172],[82.24122,27.15301],[82.24249,27.15396],[82.2417,27.15587],[82.23856,27.15554],[82.23897,27.15284],[82.23379,27.15527],[82.23406,27.15741],[82.23623,27.15869],[82.23481,27.16076],[82.2322,27.15998],[82.23146,27.16323],[82.23494,27.16438],[82.22996,27.16605],[82.22777,27.16967],[82.22856,27.18235],[82.23707,27.19895],[82.23585,27.20795],[82.2442,27.21748],[82.24575,27.22215],[82.26638,27.22835],[82.27034,27.23108],[82.27195,27.23519],[82.2792,27.23113],[82.27759,27.22948],[82.28222,27.22469],[82.29059,27.22224],[82.28846,27.21738],[82.30137,27.21229],[82.30124,27.21444],[82.30401,27.21721],[82.3085,27.22791],[82.30625,27.2284],[82.30169,27.23464],[82.29727,27.23427],[82.29381,27.24009],[82.29679,27.24683],[82.28899,27.24554],[82.28846,27.24667],[82.29071,27.24775],[82.28829,27.24776],[82.28749,27.25344],[82.27591,27.25141],[82.27486,27.25405],[82.27665,27.25543],[82.27528,27.25541],[82.27533,27.2594],[82.27126,27.25871],[82.27006,27.26167],[82.26233,27.26537],[82.25957,27.2656],[82.26017,27.26216],[82.25736,27.26132],[82.25813,27.2633],[82.25629,27.2634],[82.255,27.2706],[82.25804,27.27345],[82.25408,27.27424],[82.25338,27.27592],[82.25086,27.27282],[82.24954,27.27379],[82.25063,27.27598],[82.24451,27.27622],[82.24297,27.28049],[82.23634,27.28749],[82.2315,27.28864],[82.23096,27.29188],[82.22746,27.29281],[82.22765,27.2971],[82.22021,27.29648],[82.21057,27.30296],[82.20586,27.30315],[82.20725,27.30751],[82.20614,27.30971],[82.20282,27.31146],[82.19938,27.31013],[82.19534,27.31079],[82.19369,27.31474],[82.19158,27.31473],[82.19041,27.31972],[82.18105,27.32142],[82.17927,27.32504],[82.17635,27.32628],[82.16852,27.32425],[82.15896,27.32658],[82.15655,27.32563],[82.15415,27.3292],[82.14667,27.33332],[82.14373,27.33724],[82.14699,27.34019],[82.14738,27.34754],[82.1437,27.35112],[82.14265,27.35749],[82.14002,27.36149],[82.13254,27.36315],[82.13333,27.36818],[82.12547,27.37078],[82.12148,27.37562],[82.11712,27.37227],[82.11182,27.37686],[82.11269,27.37969],[82.11529,27.37992],[82.11559,27.38298],[82.12138,27.38712],[82.12046,27.38937],[82.12243,27.39223],[82.11785,27.39453],[82.11959,27.39905],[82.11735,27.40425],[82.11307,27.40288],[82.11096,27.40751],[82.10682,27.40693],[82.10382,27.40445],[82.1048,27.40359],[82.10276,27.40189],[82.10049,27.39465],[82.09667,27.39568],[82.09409,27.39932],[82.08842,27.39891],[82.08809,27.40008],[82.09049,27.40115],[82.08823,27.40216],[82.08226,27.39411],[82.07966,27.39478],[82.07767,27.39865],[82.07275,27.40036],[82.07372,27.40441],[82.07108,27.40621],[82.07131,27.40788],[82.06902,27.40731],[82.06645,27.40906],[82.06074,27.40691],[82.0574,27.41617],[82.05578,27.41436],[82.05387,27.41551],[82.04524,27.41195],[82.04026,27.41489],[82.03967,27.41792],[82.03728,27.41816],[82.03265,27.41577],[82.03222,27.41391],[82.02766,27.41347],[82.02703,27.41562],[82.02437,27.4144],[82.01908,27.41563],[82.01743,27.4124],[82.01436,27.41202],[82.01344,27.40907],[82.01152,27.4096],[82.01102,27.40819],[82.0089,27.40871],[82.0092,27.41027],[82.00103,27.4085],[81.99918,27.40988],[82.00047,27.41314],[81.99434,27.41832],[81.99642,27.42135],[81.99431,27.42244],[81.99278,27.42137],[81.99212,27.42499],[81.9903,27.4238],[81.98538,27.42822],[81.98127,27.42704],[81.98195,27.43072],[81.98003,27.43337],[81.97738,27.43359],[81.97728,27.43643],[81.9706,27.43631]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"148","area_level":"District","area_name":"Gorakhpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.15289,27.10742],[83.14926,27.11621],[83.14555,27.11289],[83.13091,27.11035],[83.1295,27.10774],[83.11946,27.11415],[83.12053,27.10948],[83.12476,27.10548],[83.12381,27.10099],[83.12863,27.09623],[83.12835,27.09186],[83.12477,27.08697],[83.13162,27.08481],[83.12872,27.08349],[83.13526,27.08036],[83.13531,27.07781],[83.13785,27.07591],[83.14075,27.06945],[83.13568,27.06413],[83.14378,27.06115],[83.14152,27.05621],[83.1494,27.05348],[83.14787,27.0515],[83.13826,27.04789],[83.13939,27.05449],[83.13751,27.05582],[83.13306,27.05374],[83.13069,27.0498],[83.13085,27.04749],[83.13593,27.04733],[83.14258,27.03994],[83.15046,27.04118],[83.14651,27.03723],[83.14549,27.0316],[83.13729,27.02455],[83.13832,27.02033],[83.14032,27.02015],[83.1427,27.02365],[83.14544,27.02052],[83.13956,27.01871],[83.14068,27.00509],[83.14342,27.00398],[83.14574,27.0056],[83.14814,27.01248],[83.14983,27.01328],[83.15421,27.00312],[83.15723,27.00274],[83.15801,27.00738],[83.15236,27.01231],[83.15496,27.01271],[83.1585,27.01699],[83.16156,27.01456],[83.15924,27.01176],[83.15983,27.00948],[83.17193,27.00921],[83.16838,26.99946],[83.17232,27.00291],[83.18916,27.00959],[83.19888,27.01128],[83.20395,27.01767],[83.21396,27.01485],[83.2137,27.00623],[83.21138,27.00033],[83.21834,26.99538],[83.22315,26.98901],[83.22587,26.9781],[83.21331,26.96776],[83.1943,26.96549],[83.20848,26.95185],[83.20386,26.94674],[83.19569,26.94759],[83.19283,26.9447],[83.19401,26.94207],[83.19846,26.93923],[83.20341,26.93963],[83.20797,26.94303],[83.20848,26.94672],[83.21178,26.94945],[83.22659,26.9366],[83.21867,26.93109],[83.20943,26.9394],[83.20771,26.93872],[83.20676,26.93525],[83.21221,26.92883],[83.2079,26.92519],[83.22106,26.9133],[83.22021,26.90814],[83.21588,26.90571],[83.20727,26.91068],[83.2032,26.91017],[83.203,26.90802],[83.20623,26.90382],[83.21193,26.90188],[83.21699,26.89779],[83.21749,26.89581],[83.21364,26.88767],[83.21567,26.88647],[83.21664,26.88209],[83.21351,26.8826],[83.2097,26.88061],[83.20817,26.88191],[83.20789,26.88012],[83.20528,26.88097],[83.20313,26.87891],[83.19665,26.88155],[83.19123,26.87872],[83.18229,26.8787],[83.18218,26.87635],[83.17915,26.87811],[83.1731,26.87649],[83.16519,26.88047],[83.16234,26.87897],[83.1586,26.87283],[83.15281,26.87224],[83.14973,26.87437],[83.13859,26.89014],[83.13416,26.88127],[83.12988,26.87707],[83.13359,26.87698],[83.13109,26.87297],[83.13548,26.87122],[83.13067,26.86527],[83.13454,26.86265],[83.12643,26.84865],[83.12315,26.84711],[83.12082,26.84819],[83.11851,26.84222],[83.1203,26.83972],[83.11809,26.83162],[83.12245,26.82892],[83.11986,26.82562],[83.11999,26.81985],[83.11321,26.81152],[83.1086,26.81295],[83.10698,26.81004],[83.09736,26.80675],[83.09961,26.80274],[83.10517,26.79916],[83.10377,26.7962],[83.10551,26.79436],[83.11107,26.79421],[83.10997,26.78984],[83.11288,26.78683],[83.11455,26.78162],[83.1099,26.77688],[83.11168,26.77466],[83.10883,26.77514],[83.10981,26.77253],[83.10627,26.76801],[83.11026,26.764],[83.11763,26.76355],[83.12512,26.7654],[83.12997,26.76958],[83.12833,26.77301],[83.13482,26.77699],[83.13421,26.77245],[83.14146,26.76989],[83.14468,26.76531],[83.14218,26.76341],[83.14303,26.75369],[83.14031,26.75542],[83.13864,26.75383],[83.14434,26.74369],[83.13999,26.74223],[83.13918,26.7395],[83.13108,26.73556],[83.13174,26.73036],[83.13486,26.72931],[83.13356,26.7256],[83.13029,26.72874],[83.12731,26.72521],[83.12035,26.72745],[83.11768,26.72022],[83.10741,26.72453],[83.10577,26.71868],[83.10907,26.71533],[83.10806,26.71127],[83.10178,26.71346],[83.10194,26.71709],[83.09893,26.72019],[83.09296,26.72185],[83.08693,26.71435],[83.08272,26.702],[83.08456,26.69971],[83.08987,26.7004],[83.0882,26.69216],[83.09031,26.68742],[83.09732,26.68744],[83.09919,26.68337],[83.10363,26.68231],[83.10581,26.68238],[83.10943,26.68651],[83.11629,26.68457],[83.11292,26.6783],[83.10478,26.67262],[83.10462,26.66763],[83.10085,26.6614],[83.10126,26.65841],[83.10744,26.65733],[83.1146,26.66022],[83.13253,26.65801],[83.13131,26.64998],[83.13476,26.6472],[83.1285,26.63855],[83.13519,26.63684],[83.13474,26.63491],[83.1327,26.63092],[83.12758,26.62772],[83.12567,26.62401],[83.12249,26.62344],[83.12075,26.61987],[83.11651,26.62227],[83.11472,26.62005],[83.11059,26.61898],[83.10749,26.61182],[83.10839,26.60917],[83.11115,26.608],[83.10946,26.60135],[83.11794,26.59825],[83.11701,26.59349],[83.11915,26.59228],[83.13007,26.59752],[83.13729,26.59444],[83.13939,26.58686],[83.13694,26.57986],[83.14186,26.57855],[83.14486,26.57088],[83.14374,26.56592],[83.13988,26.56237],[83.14784,26.55674],[83.15476,26.53936],[83.1644,26.53504],[83.17447,26.52576],[83.17748,26.52467],[83.18086,26.52502],[83.18674,26.53103],[83.18953,26.53192],[83.20064,26.52888],[83.20468,26.52448],[83.20246,26.52128],[83.19297,26.51727],[83.19662,26.50216],[83.19306,26.4919],[83.18822,26.48793],[83.18273,26.48894],[83.18316,26.49401],[83.16969,26.50038],[83.17037,26.50674],[83.16695,26.50676],[83.14445,26.50086],[83.14415,26.4978],[83.12422,26.49141],[83.12219,26.4923],[83.11788,26.48918],[83.09512,26.48621],[83.09155,26.4794],[83.08651,26.4758],[83.08359,26.46601],[83.091,26.46133],[83.09709,26.4518],[83.09733,26.44272],[83.09256,26.43373],[83.09651,26.43302],[83.0907,26.42445],[83.08803,26.42468],[83.08622,26.42158],[83.08094,26.42231],[83.07869,26.41911],[83.07812,26.41441],[83.06777,26.40815],[83.08706,26.39134],[83.09876,26.39484],[83.1097,26.39225],[83.11667,26.39336],[83.13217,26.38543],[83.14389,26.38808],[83.14798,26.39242],[83.15831,26.39688],[83.17019,26.39403],[83.18385,26.39758],[83.19821,26.39316],[83.22838,26.39478],[83.23591,26.38899],[83.24439,26.38741],[83.2499,26.38356],[83.25265,26.37925],[83.25905,26.37785],[83.2839,26.35819],[83.2884,26.35724],[83.30149,26.34989],[83.31797,26.35117],[83.31824,26.3487],[83.32466,26.3438],[83.33236,26.34493],[83.33473,26.35069],[83.33923,26.3491],[83.34984,26.33628],[83.36826,26.32683],[83.3742,26.3197],[83.3911,26.30599],[83.40076,26.29581],[83.40106,26.28438],[83.41097,26.27961],[83.4179,26.2741],[83.41785,26.2842],[83.43452,26.2752],[83.46514,26.27958],[83.48684,26.28077],[83.5041,26.27718],[83.5099,26.27815],[83.53267,26.27523],[83.54513,26.27068],[83.55763,26.26113],[83.56307,26.25891],[83.56577,26.25525],[83.57783,26.24976],[83.58034,26.25238],[83.58959,26.24844],[83.59868,26.25189],[83.602,26.25067],[83.60528,26.24592],[83.6161,26.24737],[83.61056,26.23924],[83.60835,26.23257],[83.6135,26.23006],[83.6174,26.2257],[83.62315,26.22364],[83.62602,26.21989],[83.62961,26.21875],[83.63423,26.2429],[83.63801,26.24821],[83.63827,26.27298],[83.6453,26.27936],[83.65501,26.2807],[83.67104,26.28717],[83.66953,26.28907],[83.66806,26.30886],[83.66638,26.31279],[83.66145,26.3173],[83.65584,26.31813],[83.64643,26.31421],[83.63244,26.30166],[83.62516,26.2973],[83.61849,26.30103],[83.62007,26.3028],[83.62037,26.31195],[83.62263,26.31547],[83.62327,26.32066],[83.63459,26.32211],[83.63817,26.32917],[83.6344,26.32967],[83.62485,26.32207],[83.62217,26.32193],[83.61988,26.32955],[83.61089,26.33462],[83.61734,26.34143],[83.61673,26.34289],[83.59956,26.34877],[83.60004,26.35124],[83.61288,26.36532],[83.61129,26.37003],[83.60903,26.37009],[83.58981,26.35968],[83.58604,26.36005],[83.58336,26.36235],[83.57852,26.37579],[83.58043,26.38344],[83.58511,26.39034],[83.58523,26.39628],[83.58327,26.39832],[83.56259,26.39297],[83.54718,26.39206],[83.54586,26.38967],[83.54696,26.38772],[83.56277,26.38527],[83.56858,26.37806],[83.56894,26.37528],[83.56594,26.37385],[83.55813,26.37816],[83.55535,26.37783],[83.55094,26.365],[83.54691,26.35679],[83.54488,26.35555],[83.53924,26.3577],[83.53652,26.36148],[83.53289,26.38544],[83.52996,26.38649],[83.516,26.38272],[83.51059,26.38453],[83.52461,26.3938],[83.52609,26.39883],[83.52403,26.40157],[83.49977,26.40124],[83.50032,26.39495],[83.49514,26.39096],[83.48922,26.39148],[83.48558,26.39915],[83.48603,26.40468],[83.5057,26.41745],[83.49799,26.422],[83.496,26.43517],[83.48758,26.44474],[83.48157,26.45513],[83.47675,26.45878],[83.47729,26.4613],[83.47984,26.46288],[83.49158,26.46082],[83.49377,26.46268],[83.49362,26.46759],[83.48719,26.48076],[83.49309,26.48893],[83.49318,26.49177],[83.49937,26.49634],[83.50575,26.4953],[83.5077,26.49669],[83.50917,26.49462],[83.51379,26.49491],[83.51467,26.49898],[83.51746,26.49748],[83.51867,26.49921],[83.52762,26.49606],[83.52744,26.49819],[83.53238,26.49621],[83.53893,26.50137],[83.54157,26.50139],[83.54386,26.49778],[83.54411,26.48966],[83.54624,26.48923],[83.55159,26.49148],[83.55505,26.49797],[83.55295,26.50561],[83.54968,26.50535],[83.54846,26.50709],[83.54906,26.50926],[83.55357,26.51241],[83.56832,26.50761],[83.57365,26.51561],[83.57788,26.51352],[83.57924,26.51549],[83.58596,26.51257],[83.60055,26.51519],[83.59981,26.51806],[83.60332,26.52162],[83.6022,26.52338],[83.60375,26.52581],[83.60138,26.52709],[83.60295,26.53264],[83.6066,26.53573],[83.60578,26.53763],[83.60805,26.53673],[83.6057,26.53912],[83.6092,26.54138],[83.60717,26.54306],[83.60872,26.5449],[83.60633,26.54624],[83.61124,26.54937],[83.60867,26.55146],[83.61296,26.55371],[83.61403,26.55235],[83.61623,26.55467],[83.61229,26.5557],[83.61499,26.55808],[83.61477,26.56099],[83.61244,26.56368],[83.61454,26.56438],[83.61338,26.56684],[83.61704,26.56992],[83.61837,26.57327],[83.61997,26.57046],[83.62334,26.57079],[83.62327,26.56787],[83.62476,26.56988],[83.62507,26.5681],[83.62657,26.56846],[83.62638,26.57135],[83.62806,26.57002],[83.62664,26.57445],[83.62885,26.57676],[83.62531,26.58128],[83.63109,26.58275],[83.63177,26.58538],[83.63004,26.58478],[83.62909,26.58666],[83.63085,26.58625],[83.63192,26.58882],[83.62958,26.58987],[83.63096,26.59158],[83.62639,26.59701],[83.62677,26.59932],[83.62444,26.59838],[83.62131,26.6049],[83.62055,26.60325],[83.61853,26.60334],[83.62024,26.60945],[83.61794,26.61016],[83.61988,26.6114],[83.61826,26.61442],[83.6199,26.6151],[83.61637,26.61711],[83.61914,26.61823],[83.61983,26.6163],[83.62211,26.61583],[83.62317,26.61978],[83.62576,26.61954],[83.62629,26.62131],[83.62961,26.6199],[83.62969,26.62266],[83.63355,26.62367],[83.63182,26.62717],[83.63155,26.62931],[83.63334,26.63081],[83.63164,26.63752],[83.62907,26.63946],[83.63022,26.6424],[83.62799,26.64439],[83.63109,26.64506],[83.63202,26.64704],[83.62721,26.6491],[83.62661,26.65262],[83.63015,26.65495],[83.62847,26.65648],[83.6301,26.65794],[83.62818,26.65806],[83.62964,26.65932],[83.62684,26.66115],[83.62785,26.66408],[83.62383,26.66749],[83.62481,26.6697],[83.62373,26.67481],[83.62555,26.675],[83.62663,26.67731],[83.62446,26.67852],[83.62621,26.68037],[83.62413,26.68369],[83.62583,26.68446],[83.62443,26.68763],[83.62578,26.68959],[83.62167,26.68864],[83.62463,26.69196],[83.62039,26.69684],[83.62044,26.7008],[83.6181,26.70265],[83.61595,26.70174],[83.61549,26.70346],[83.61759,26.70448],[83.61958,26.70321],[83.61985,26.70514],[83.61697,26.70564],[83.62078,26.70741],[83.61971,26.70897],[83.62142,26.7116],[83.6206,26.71439],[83.62322,26.71169],[83.62229,26.71467],[83.62376,26.71889],[83.62214,26.72545],[83.62323,26.72706],[83.61853,26.72759],[83.61328,26.73095],[83.61327,26.7346],[83.61003,26.73942],[83.61377,26.74451],[83.61387,26.74876],[83.61544,26.74995],[83.61853,26.74877],[83.62206,26.7546],[83.61663,26.75619],[83.6154,26.75481],[83.61007,26.75483],[83.60917,26.7559],[83.61136,26.75771],[83.6099,26.75876],[83.60522,26.75553],[83.60056,26.75766],[83.59792,26.7561],[83.5962,26.75902],[83.58655,26.76035],[83.58804,26.77019],[83.59305,26.7695],[83.59076,26.78241],[83.59565,26.78999],[83.5896,26.79792],[83.58489,26.80763],[83.57907,26.81062],[83.57961,26.81328],[83.57802,26.81497],[83.569,26.81593],[83.56588,26.81937],[83.56557,26.82352],[83.56104,26.82383],[83.56232,26.83629],[83.55294,26.83641],[83.54772,26.83804],[83.54664,26.83886],[83.54858,26.84555],[83.53134,26.85178],[83.52441,26.85265],[83.52816,26.85781],[83.52683,26.85952],[83.52968,26.85955],[83.53302,26.86303],[83.53869,26.86251],[83.54034,26.86713],[83.54158,26.86706],[83.54282,26.87015],[83.54057,26.87067],[83.54216,26.87948],[83.54613,26.88855],[83.52818,26.89366],[83.52237,26.89413],[83.51833,26.89233],[83.51265,26.89321],[83.51253,26.89474],[83.49517,26.89837],[83.49683,26.90916],[83.48525,26.91033],[83.48331,26.91262],[83.48365,26.91635],[83.47754,26.91774],[83.47765,26.92513],[83.4709,26.92617],[83.47063,26.92885],[83.47375,26.92957],[83.47662,26.93381],[83.47683,26.93901],[83.47324,26.9402],[83.47346,26.9425],[83.45267,26.95174],[83.45132,26.95054],[83.44532,26.95082],[83.43829,26.94646],[83.43096,26.94568],[83.43789,26.95812],[83.37244,26.95808],[83.35664,26.96234],[83.35562,26.94974],[83.34933,26.952],[83.34352,26.95164],[83.34071,26.95348],[83.33387,26.954],[83.33315,26.9587],[83.33909,26.95856],[83.33866,26.96142],[83.33315,26.96403],[83.33117,26.967],[83.32687,26.96467],[83.32406,26.96855],[83.32563,26.97137],[83.3236,26.97885],[83.32077,26.98037],[83.32663,26.98581],[83.32246,26.98643],[83.32283,26.98926],[83.32747,26.99023],[83.32925,26.99708],[83.33298,26.99699],[83.33548,26.99431],[83.34415,26.99451],[83.34487,27.00291],[83.3513,27.00051],[83.35159,27.00219],[83.34771,27.00721],[83.3525,27.00778],[83.34958,27.01479],[83.35409,27.02624],[83.35741,27.02684],[83.3633,27.02531],[83.36526,27.02311],[83.36736,27.02358],[83.36836,27.03707],[83.36641,27.03829],[83.36261,27.0369],[83.35868,27.03891],[83.36257,27.04101],[83.36218,27.04743],[83.3708,27.04727],[83.37393,27.05019],[83.37555,27.05452],[83.38058,27.0583],[83.38765,27.05794],[83.38856,27.06061],[83.3874,27.06484],[83.38184,27.06615],[83.38354,27.07162],[83.38607,27.074],[83.39626,27.07506],[83.39817,27.08064],[83.4051,27.08178],[83.40746,27.08813],[83.38941,27.08262],[83.3745,27.09428],[83.37321,27.09743],[83.36073,27.10018],[83.35679,27.08893],[83.34194,27.09363],[83.33954,27.09111],[83.33642,27.08163],[83.32784,27.08204],[83.32475,27.08933],[83.32106,27.08862],[83.32054,27.08673],[83.31849,27.08751],[83.31855,27.08604],[83.31658,27.08763],[83.31333,27.08732],[83.31276,27.08467],[83.30774,27.08347],[83.30647,27.08142],[83.30748,27.07997],[83.30558,27.08051],[83.30539,27.07518],[83.3028,27.07269],[83.30511,27.07196],[83.30319,27.07017],[83.30633,27.07053],[83.30332,27.06841],[83.30463,27.06674],[83.30224,27.06501],[83.29974,27.0659],[83.29809,27.06367],[83.29658,27.06468],[83.29399,27.06106],[83.29417,27.05806],[83.29964,27.05627],[83.29775,27.05473],[83.29814,27.05019],[83.2966,27.0482],[83.29799,27.04149],[83.29279,27.041],[83.29257,27.03688],[83.26979,27.03001],[83.26719,27.03563],[83.27363,27.05863],[83.27058,27.07806],[83.25347,27.07325],[83.25233,27.06693],[83.25071,27.06557],[83.24322,27.06571],[83.24342,27.06692],[83.24134,27.06598],[83.23948,27.06977],[83.23776,27.07027],[83.23697,27.06812],[83.23888,27.06392],[83.23675,27.06255],[83.23243,27.06956],[83.22785,27.07037],[83.23098,27.07553],[83.23077,27.08274],[83.22371,27.08808],[83.22338,27.09021],[83.21632,27.08803],[83.21415,27.08496],[83.21222,27.08828],[83.20377,27.09035],[83.20404,27.09194],[83.20009,27.09553],[83.19766,27.09264],[83.19249,27.09291],[83.18631,27.09603],[83.18138,27.09576],[83.17899,27.0933],[83.17432,27.09439],[83.17274,27.09518],[83.17411,27.10057],[83.17329,27.10554],[83.16537,27.10806],[83.16206,27.10717],[83.15624,27.09766],[83.15392,27.09658],[83.15229,27.10033],[83.15289,27.10742]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"149","area_level":"District","area_name":"Hamirpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.95591,26.07595],[79.95426,26.08115],[79.95533,26.09402],[79.96575,26.13093],[79.96493,26.15019],[79.9632,26.15347],[79.957,26.15847],[79.9479,26.16199],[79.94056,26.16188],[79.93533,26.14495],[79.93287,26.1233],[79.92393,26.09699],[79.91871,26.0906],[79.92731,26.08478],[79.93237,26.07815],[79.92925,26.07399],[79.93089,26.0746],[79.93569,26.06692],[79.9398,26.06562],[79.93828,26.06352],[79.94428,26.06076],[79.94304,26.05486],[79.94455,26.0539],[79.94137,26.04399],[79.93938,26.04304],[79.94203,26.03344],[79.93996,26.02974],[79.93686,26.02837],[79.91631,26.03211],[79.91309,26.02317],[79.9071,26.01318],[79.91941,26.01032],[79.92764,26.01754],[79.93053,26.0172],[79.9313,26.02177],[79.93505,26.02193],[79.94186,26.02979],[79.9544,26.02336],[79.94351,26.00001],[79.93695,26.00106],[79.93179,25.9989],[79.93234,25.99592],[79.92775,25.98595],[79.93428,25.98181],[79.93339,25.97646],[79.92332,25.96291],[79.9146,25.96853],[79.90845,25.97047],[79.90605,25.96547],[79.90408,25.96552],[79.89804,25.95682],[79.89694,25.95894],[79.8986,25.96066],[79.89793,25.96335],[79.88933,25.963],[79.88719,25.96417],[79.87879,25.95481],[79.87634,25.94854],[79.87024,25.95142],[79.86068,25.95282],[79.86888,25.96219],[79.8733,25.96452],[79.87251,25.97149],[79.86662,25.97335],[79.85999,25.97186],[79.85391,25.97451],[79.84982,25.9712],[79.84417,25.95333],[79.85264,25.9483],[79.85059,25.94491],[79.86639,25.93642],[79.86239,25.91181],[79.86368,25.89745],[79.87073,25.88238],[79.86757,25.88073],[79.85958,25.87959],[79.84004,25.88451],[79.83616,25.88784],[79.82423,25.91175],[79.82026,25.91443],[79.81521,25.91434],[79.81145,25.91259],[79.80887,25.90399],[79.8147,25.88416],[79.81379,25.87625],[79.80804,25.86857],[79.80033,25.86415],[79.78543,25.8635],[79.76886,25.87184],[79.75869,25.8808],[79.75769,25.88371],[79.75983,25.88704],[79.74849,25.90891],[79.7357,25.91343],[79.72723,25.91076],[79.72494,25.90798],[79.71923,25.90579],[79.70904,25.90364],[79.70346,25.91409],[79.69212,25.92658],[79.68639,25.92962],[79.68279,25.92699],[79.67664,25.91367],[79.67267,25.90889],[79.66814,25.90609],[79.65898,25.90419],[79.65387,25.90715],[79.63883,25.92506],[79.63218,25.93047],[79.62321,25.93267],[79.61461,25.93211],[79.60648,25.92867],[79.60349,25.92323],[79.60447,25.9179],[79.61084,25.9112],[79.61283,25.90546],[79.61249,25.89936],[79.61076,25.89716],[79.59824,25.89734],[79.58211,25.88699],[79.5706,25.88383],[79.56744,25.88403],[79.56015,25.88845],[79.53618,25.89435],[79.52694,25.89404],[79.52186,25.88848],[79.51927,25.88068],[79.52044,25.8727],[79.52392,25.8659],[79.53219,25.86218],[79.53973,25.86088],[79.55986,25.86448],[79.56324,25.86147],[79.56581,25.85596],[79.57173,25.85334],[79.56342,25.84233],[79.56247,25.83609],[79.55873,25.82833],[79.55112,25.82159],[79.53833,25.82111],[79.52877,25.83142],[79.52586,25.8423],[79.51519,25.84722],[79.51276,25.85131],[79.50837,25.8529],[79.50426,25.85715],[79.49783,25.85775],[79.48948,25.85362],[79.48267,25.84623],[79.46968,25.83664],[79.45931,25.82325],[79.45758,25.81628],[79.46022,25.81174],[79.46333,25.81061],[79.46355,25.80748],[79.46372,25.79408],[79.45985,25.78924],[79.45421,25.78717],[79.44154,25.7879],[79.43692,25.79307],[79.43284,25.80126],[79.42287,25.80723],[79.4026,25.80782],[79.39739,25.8041],[79.39602,25.79781],[79.40236,25.78706],[79.39376,25.77506],[79.38884,25.77246],[79.37866,25.77512],[79.37035,25.77544],[79.35867,25.77138],[79.3583,25.76795],[79.36006,25.76572],[79.37141,25.76502],[79.37523,25.76264],[79.37779,25.75661],[79.3751,25.74719],[79.37648,25.74444],[79.39151,25.74365],[79.4,25.73715],[79.39814,25.73149],[79.39129,25.72642],[79.37902,25.72155],[79.37061,25.71509],[79.36857,25.71085],[79.36884,25.70096],[79.37251,25.69286],[79.38364,25.68901],[79.38743,25.6833],[79.38588,25.67815],[79.37934,25.67172],[79.3773,25.66723],[79.3783,25.66377],[79.38284,25.66034],[79.3894,25.6615],[79.39597,25.66055],[79.40245,25.65548],[79.40366,25.65179],[79.4028,25.64893],[79.39706,25.64528],[79.3841,25.64594],[79.36669,25.65301],[79.36009,25.64905],[79.35527,25.6439],[79.3618,25.62779],[79.37239,25.62448],[79.37513,25.6214],[79.37493,25.61519],[79.36863,25.60865],[79.36892,25.60275],[79.37534,25.59734],[79.37582,25.59408],[79.38599,25.57626],[79.38885,25.57387],[79.39507,25.57386],[79.41191,25.58136],[79.41666,25.57972],[79.41982,25.57523],[79.4172,25.57213],[79.40366,25.57001],[79.39774,25.56439],[79.3991,25.55934],[79.40941,25.54719],[79.41118,25.53902],[79.40801,25.53139],[79.39188,25.52448],[79.3935,25.52218],[79.39294,25.51962],[79.39745,25.51621],[79.40243,25.51901],[79.40445,25.51842],[79.40903,25.51162],[79.41221,25.51347],[79.42154,25.50666],[79.43307,25.50666],[79.43432,25.50795],[79.43878,25.50749],[79.43923,25.50903],[79.44161,25.50827],[79.44202,25.50949],[79.44925,25.50797],[79.45427,25.505],[79.46658,25.50456],[79.48307,25.49058],[79.48874,25.49426],[79.49351,25.49409],[79.50846,25.48725],[79.51149,25.48751],[79.5141,25.49351],[79.52278,25.4967],[79.52333,25.48467],[79.52828,25.48241],[79.53486,25.48213],[79.54082,25.48797],[79.5419,25.4927],[79.54878,25.48957],[79.55967,25.49158],[79.5606,25.48536],[79.55947,25.47911],[79.5621,25.47746],[79.57037,25.47749],[79.57748,25.48992],[79.5802,25.48968],[79.58239,25.49277],[79.58434,25.49313],[79.58634,25.4908],[79.58852,25.49388],[79.59112,25.49261],[79.59212,25.4961],[79.59525,25.49871],[79.60088,25.49756],[79.60706,25.49094],[79.60811,25.48611],[79.61561,25.48151],[79.62706,25.48719],[79.63997,25.48495],[79.64396,25.48943],[79.64221,25.49384],[79.64432,25.50035],[79.64141,25.50156],[79.6407,25.50483],[79.64233,25.50891],[79.64825,25.51158],[79.65584,25.50871],[79.66076,25.51117],[79.66605,25.51004],[79.66309,25.51605],[79.6653,25.51838],[79.66366,25.52413],[79.66214,25.52657],[79.65925,25.52677],[79.66305,25.53033],[79.66523,25.53903],[79.66366,25.54044],[79.65892,25.54029],[79.65709,25.54349],[79.65671,25.55012],[79.66146,25.55312],[79.66636,25.55337],[79.66987,25.54605],[79.67261,25.54499],[79.68288,25.54794],[79.68959,25.54633],[79.69333,25.55007],[79.6994,25.55036],[79.69856,25.55421],[79.69434,25.55535],[79.69173,25.55872],[79.69333,25.5603],[79.69912,25.56017],[79.70317,25.56391],[79.70923,25.56423],[79.7107,25.56598],[79.71059,25.56854],[79.7138,25.57376],[79.70827,25.58279],[79.7091,25.59289],[79.71095,25.59262],[79.71453,25.58787],[79.72684,25.58421],[79.73248,25.57898],[79.74736,25.57409],[79.76196,25.58567],[79.77108,25.58148],[79.77963,25.59052],[79.78399,25.58721],[79.78656,25.58921],[79.78913,25.59459],[79.78855,25.60132],[79.79896,25.62478],[79.81468,25.61532],[79.84483,25.60903],[79.84547,25.60601],[79.84119,25.59336],[79.85208,25.58673],[79.85711,25.58688],[79.87065,25.57707],[79.87633,25.58015],[79.89141,25.57931],[79.89622,25.58609],[79.90917,25.59707],[79.91597,25.59544],[79.91728,25.5977],[79.91968,25.5947],[79.92588,25.59473],[79.9364,25.58902],[79.94518,25.58908],[79.94453,25.59215],[79.9496,25.59682],[79.9562,25.61025],[79.95137,25.61803],[79.95685,25.62319],[79.95732,25.62718],[79.94477,25.62821],[79.94914,25.63361],[79.94967,25.64187],[79.95359,25.64325],[79.95403,25.63965],[79.96443,25.63731],[79.98544,25.62594],[79.98859,25.6258],[79.98818,25.62235],[79.9938,25.61818],[80.00336,25.61669],[79.99948,25.61197],[80.00143,25.60956],[79.99909,25.60823],[79.99917,25.60493],[80.00605,25.59928],[80.00926,25.59379],[80.02064,25.59017],[80.02854,25.58949],[80.05231,25.59387],[80.05636,25.59113],[80.05659,25.58752],[80.05962,25.58624],[80.07029,25.58935],[80.07594,25.58744],[80.07927,25.57588],[80.08894,25.563],[80.08663,25.5567],[80.08821,25.55372],[80.08804,25.54626],[80.10374,25.54239],[80.1126,25.55104],[80.12939,25.54216],[80.1471,25.53509],[80.14552,25.52811],[80.14619,25.52294],[80.14363,25.51884],[80.14535,25.51742],[80.14591,25.51191],[80.15129,25.50863],[80.15577,25.50682],[80.1619,25.50739],[80.16161,25.51082],[80.15548,25.50974],[80.15956,25.51539],[80.16025,25.514],[80.1634,25.51787],[80.17039,25.51421],[80.17083,25.51172],[80.18608,25.50645],[80.18769,25.51493],[80.19112,25.52045],[80.20388,25.51895],[80.20615,25.51677],[80.21045,25.51672],[80.21913,25.51349],[80.22441,25.52662],[80.2147,25.52937],[80.20801,25.52938],[80.2141,25.54987],[80.21288,25.55212],[80.21725,25.55959],[80.22059,25.55826],[80.23283,25.55865],[80.23706,25.56707],[80.24129,25.56662],[80.24186,25.57599],[80.24305,25.57721],[80.24595,25.57658],[80.2509,25.58541],[80.24954,25.58658],[80.25485,25.59186],[80.25701,25.58985],[80.26021,25.59055],[80.26245,25.58771],[80.26831,25.58674],[80.26876,25.58491],[80.27937,25.58403],[80.28222,25.5951],[80.29383,25.60879],[80.29117,25.61324],[80.27875,25.62161],[80.27865,25.62683],[80.29104,25.63221],[80.30188,25.63276],[80.31279,25.64025],[80.31837,25.6474],[80.3199,25.65464],[80.31827,25.66376],[80.31524,25.66984],[80.30667,25.67824],[80.30522,25.68152],[80.30542,25.6971],[80.30742,25.70054],[80.32355,25.71231],[80.32922,25.71217],[80.34173,25.70761],[80.34717,25.70342],[80.35074,25.7037],[80.3492,25.71171],[80.34685,25.71231],[80.34569,25.72029],[80.33826,25.72754],[80.32813,25.73216],[80.32653,25.7346],[80.32806,25.73681],[80.32663,25.74238],[80.3198,25.75111],[80.31239,25.75491],[80.30472,25.76262],[80.29908,25.76354],[80.29359,25.76921],[80.28715,25.76827],[80.27128,25.77111],[80.27034,25.77541],[80.26777,25.77757],[80.2705,25.78285],[80.26324,25.78581],[80.25653,25.79157],[80.23691,25.79539],[80.23169,25.79907],[80.23605,25.80517],[80.25048,25.81231],[80.25929,25.80752],[80.27608,25.82067],[80.28537,25.8149],[80.29755,25.824],[80.2941,25.83022],[80.28857,25.83506],[80.28686,25.83979],[80.29679,25.84616],[80.30044,25.84701],[80.30165,25.84503],[80.30259,25.84731],[80.31278,25.84737],[80.32478,25.84595],[80.32872,25.84368],[80.33039,25.84908],[80.33671,25.85666],[80.34048,25.86626],[80.34333,25.86743],[80.34799,25.86653],[80.35151,25.87096],[80.34855,25.87673],[80.35016,25.87962],[80.34955,25.88501],[80.34579,25.90003],[80.33699,25.89764],[80.32052,25.88987],[80.31254,25.88845],[80.30644,25.88978],[80.29606,25.89608],[80.28167,25.92039],[80.27207,25.9309],[80.26607,25.9339],[80.25745,25.93275],[80.23694,25.92349],[80.23754,25.92246],[80.21396,25.91996],[80.20609,25.92453],[80.19302,25.94619],[80.15389,25.96043],[80.11875,25.98614],[80.08519,25.99714],[80.08225,26.002],[80.083,26.00505],[80.08575,26.00918],[80.09567,26.0155],[80.10196,26.02216],[80.10613,26.02888],[80.11177,26.04608],[80.10976,26.05161],[80.09372,26.06224],[80.06995,26.06817],[80.05004,26.0684],[80.0455,26.0724],[80.04189,26.07312],[80.01973,26.06659],[79.99086,26.06543],[79.96108,26.07305],[79.95591,26.07595]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"15","area_level":"District","area_name":"Bilaspur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.70677,31.59541],[76.68126,31.59073],[76.67984,31.58902],[76.68055,31.58276],[76.67609,31.58446],[76.66761,31.58088],[76.66466,31.58196],[76.66187,31.57754],[76.6556,31.57679],[76.651,31.5842],[76.64704,31.58415],[76.64483,31.58202],[76.63855,31.58258],[76.63338,31.57396],[76.62895,31.57367],[76.62768,31.57749],[76.61987,31.57471],[76.61938,31.56896],[76.61469,31.56231],[76.61738,31.55692],[76.6137,31.54694],[76.61541,31.54269],[76.6187,31.54035],[76.61596,31.5398],[76.61614,31.53718],[76.61354,31.53495],[76.61465,31.53301],[76.61256,31.53165],[76.6161,31.5302],[76.61809,31.53183],[76.61709,31.52081],[76.61539,31.51881],[76.6186,31.51579],[76.61185,31.50721],[76.6113,31.49237],[76.60774,31.48419],[76.6074,31.4775],[76.61676,31.45577],[76.62445,31.44809],[76.62583,31.44251],[76.62411,31.4378],[76.61583,31.43593],[76.61217,31.43003],[76.61383,31.42406],[76.61613,31.42362],[76.61802,31.41955],[76.61494,31.41816],[76.61462,31.41638],[76.61,31.41569],[76.60817,31.42066],[76.5982,31.4197],[76.59286,31.42322],[76.58319,31.42039],[76.58038,31.42096],[76.573,31.43134],[76.56209,31.42861],[76.55743,31.43319],[76.55657,31.43975],[76.54571,31.44572],[76.54347,31.44907],[76.53552,31.45172],[76.53117,31.46338],[76.52249,31.46325],[76.51928,31.46843],[76.51584,31.46999],[76.51334,31.46104],[76.51019,31.4603],[76.49539,31.46934],[76.49065,31.46865],[76.48629,31.47091],[76.47958,31.46933],[76.46238,31.48565],[76.45497,31.48469],[76.45056,31.48188],[76.46085,31.46884],[76.46067,31.46591],[76.47196,31.45523],[76.46607,31.44989],[76.46651,31.44554],[76.46197,31.44651],[76.46247,31.44376],[76.47237,31.44088],[76.47554,31.44148],[76.47621,31.44458],[76.47938,31.44181],[76.47001,31.43764],[76.47558,31.42774],[76.47224,31.42398],[76.47248,31.42011],[76.46363,31.42231],[76.45754,31.41762],[76.43785,31.41394],[76.42552,31.40783],[76.41803,31.41163],[76.40055,31.42632],[76.39699,31.42716],[76.39439,31.42546],[76.39298,31.41982],[76.39635,31.41382],[76.39508,31.4082],[76.39708,31.40792],[76.39956,31.39975],[76.40397,31.39422],[76.40328,31.39239],[76.39812,31.39377],[76.39345,31.39119],[76.39271,31.38906],[76.40061,31.37957],[76.40368,31.37828],[76.40757,31.37078],[76.40726,31.36728],[76.41956,31.3493],[76.42409,31.34931],[76.42679,31.34486],[76.4252,31.33958],[76.43233,31.32656],[76.43587,31.32637],[76.43754,31.32221],[76.44322,31.31753],[76.44685,31.31698],[76.45431,31.31228],[76.46349,31.30195],[76.46281,31.29878],[76.45722,31.29513],[76.44037,31.28789],[76.43999,31.27872],[76.4413,31.27922],[76.44272,31.27728],[76.45937,31.28623],[76.45955,31.28892],[76.4635,31.29412],[76.47437,31.30235],[76.47913,31.30867],[76.48517,31.3045],[76.48801,31.29674],[76.49102,31.29423],[76.49089,31.28825],[76.49421,31.28905],[76.49672,31.28534],[76.49491,31.28082],[76.49757,31.26986],[76.50095,31.27003],[76.50391,31.26688],[76.5064,31.26772],[76.52165,31.28033],[76.52743,31.27717],[76.52794,31.27343],[76.52971,31.27226],[76.52899,31.27083],[76.53055,31.27105],[76.52859,31.2681],[76.5289,31.26565],[76.52393,31.26228],[76.5238,31.25814],[76.53143,31.25639],[76.53934,31.26105],[76.53998,31.26626],[76.53773,31.27055],[76.54109,31.27496],[76.54293,31.28243],[76.5513,31.27875],[76.54883,31.27427],[76.55021,31.26987],[76.54747,31.26727],[76.54847,31.26606],[76.54361,31.2589],[76.54427,31.25617],[76.54921,31.25275],[76.55284,31.25512],[76.55648,31.2524],[76.56059,31.25308],[76.56578,31.26215],[76.56954,31.26141],[76.57408,31.26933],[76.57915,31.27111],[76.58351,31.27615],[76.59017,31.27173],[76.59235,31.26836],[76.59184,31.26593],[76.59627,31.26116],[76.60108,31.25909],[76.61185,31.24958],[76.61029,31.24381],[76.59834,31.23955],[76.59471,31.23424],[76.59522,31.22686],[76.59279,31.22583],[76.59161,31.22295],[76.58854,31.22295],[76.58901,31.21929],[76.59237,31.2175],[76.59057,31.21453],[76.59268,31.21476],[76.59257,31.21126],[76.60082,31.21259],[76.60102,31.2148],[76.60353,31.21436],[76.60635,31.21661],[76.61296,31.21737],[76.62765,31.22622],[76.63154,31.22359],[76.63536,31.22438],[76.64167,31.22302],[76.63711,31.22066],[76.63686,31.21761],[76.63456,31.2178],[76.64254,31.21427],[76.64543,31.20913],[76.66034,31.20954],[76.66497,31.21284],[76.67572,31.2143],[76.68599,31.21287],[76.69092,31.21602],[76.69888,31.21691],[76.70312,31.22203],[76.71154,31.22315],[76.72039,31.22831],[76.72765,31.23533],[76.72912,31.23888],[76.7325,31.24062],[76.74624,31.23615],[76.75191,31.22978],[76.75778,31.2265],[76.76626,31.2268],[76.77207,31.22255],[76.77562,31.22429],[76.77674,31.22194],[76.77372,31.21785],[76.77858,31.21533],[76.78178,31.21638],[76.78565,31.22178],[76.793,31.22631],[76.79969,31.22196],[76.80474,31.22663],[76.81552,31.2265],[76.81759,31.22868],[76.82368,31.22311],[76.82935,31.22453],[76.83263,31.22937],[76.83885,31.2311],[76.84324,31.22684],[76.84848,31.22776],[76.84746,31.22451],[76.85027,31.22392],[76.85565,31.21934],[76.87506,31.21853],[76.87836,31.22032],[76.87779,31.22386],[76.87406,31.22802],[76.87588,31.23169],[76.87055,31.23533],[76.8671,31.24105],[76.87067,31.24459],[76.86588,31.24547],[76.87052,31.25193],[76.86999,31.25671],[76.87237,31.26203],[76.87843,31.26296],[76.8833,31.26146],[76.88638,31.26538],[76.89478,31.2653],[76.89587,31.26716],[76.89501,31.2717],[76.89174,31.27424],[76.89995,31.28121],[76.90449,31.28259],[76.90966,31.2813],[76.9132,31.28335],[76.92775,31.30409],[76.91918,31.30464],[76.91606,31.31497],[76.9033,31.31404],[76.89538,31.31527],[76.89077,31.32075],[76.87859,31.32677],[76.87511,31.33059],[76.87932,31.3318],[76.88282,31.3356],[76.88003,31.34088],[76.87333,31.34668],[76.87543,31.35065],[76.87222,31.35589],[76.87654,31.36118],[76.8736,31.37044],[76.86371,31.37813],[76.86728,31.38067],[76.86821,31.3847],[76.87704,31.38106],[76.88138,31.38425],[76.88286,31.39284],[76.88227,31.40146],[76.87587,31.4134],[76.85529,31.41055],[76.84694,31.41362],[76.83479,31.42184],[76.82864,31.42156],[76.81967,31.41747],[76.81422,31.42184],[76.80933,31.42326],[76.804,31.42062],[76.80158,31.42138],[76.80114,31.4247],[76.80336,31.42982],[76.79971,31.43511],[76.80174,31.43626],[76.80306,31.44011],[76.79981,31.44308],[76.79719,31.44123],[76.7957,31.44747],[76.79223,31.45065],[76.79548,31.45128],[76.79601,31.44796],[76.7984,31.44714],[76.79838,31.44986],[76.80167,31.45184],[76.80198,31.45376],[76.79648,31.45992],[76.79751,31.46518],[76.79512,31.46769],[76.79562,31.47493],[76.79131,31.47529],[76.7922,31.47755],[76.79097,31.47937],[76.78608,31.47798],[76.78197,31.4798],[76.78235,31.48436],[76.78447,31.4838],[76.78504,31.48712],[76.78677,31.48624],[76.78809,31.48827],[76.78746,31.49792],[76.7824,31.50477],[76.77626,31.5081],[76.77396,31.51394],[76.76635,31.5178],[76.76006,31.51664],[76.74757,31.5174],[76.74217,31.51447],[76.73074,31.51655],[76.73393,31.52077],[76.73636,31.51952],[76.73896,31.52207],[76.73839,31.52548],[76.73288,31.5324],[76.73499,31.53451],[76.72262,31.54042],[76.72426,31.54196],[76.72903,31.54064],[76.73172,31.54184],[76.72865,31.5448],[76.72941,31.5495],[76.72752,31.55255],[76.73524,31.56085],[76.73188,31.56288],[76.72678,31.56328],[76.73074,31.57322],[76.73068,31.58151],[76.72061,31.58746],[76.71208,31.59498],[76.70677,31.59541]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"150","area_level":"District","area_name":"Hardoi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.09009,27.78446],[80.08199,27.77834],[80.08007,27.77477],[80.07676,27.77586],[80.06685,27.77115],[80.05963,27.77011],[80.05965,27.76707],[80.05711,27.76552],[80.05835,27.76422],[80.05608,27.76338],[80.05893,27.76212],[80.06027,27.75939],[80.05886,27.75852],[80.06083,27.75759],[80.05978,27.75577],[80.06843,27.75272],[80.07046,27.75345],[80.06965,27.75148],[80.07241,27.7504],[80.07283,27.74812],[80.05349,27.74062],[80.04747,27.74131],[80.04384,27.74404],[80.03963,27.7374],[80.03224,27.73805],[80.02992,27.74118],[80.03034,27.74411],[80.02841,27.74537],[80.01928,27.7325],[80.01745,27.73121],[80.01082,27.73294],[80.00641,27.7259],[79.99237,27.7334],[79.98302,27.72976],[79.97926,27.72969],[79.97304,27.73275],[79.96596,27.7321],[79.963,27.72971],[79.96061,27.73069],[79.95774,27.7281],[79.94758,27.71356],[79.9376,27.71737],[79.93645,27.71274],[79.93594,27.71481],[79.93311,27.71242],[79.91935,27.71725],[79.9159,27.72024],[79.90673,27.7188],[79.90578,27.71808],[79.91043,27.71148],[79.91518,27.70989],[79.91967,27.70348],[79.9068,27.69375],[79.89764,27.69607],[79.88928,27.70416],[79.88429,27.70365],[79.87878,27.70036],[79.87511,27.69459],[79.87483,27.6874],[79.88311,27.67129],[79.88033,27.6691],[79.87189,27.66964],[79.86652,27.66773],[79.86329,27.66216],[79.86403,27.65335],[79.86209,27.64834],[79.85484,27.65185],[79.84827,27.64956],[79.82897,27.65466],[79.82654,27.65654],[79.82417,27.65668],[79.82362,27.65517],[79.81509,27.65671],[79.8135,27.65564],[79.80659,27.65846],[79.80586,27.6623],[79.80382,27.66325],[79.80523,27.67036],[79.79164,27.67599],[79.78923,27.68054],[79.78303,27.68449],[79.78106,27.69069],[79.7761,27.69433],[79.77578,27.69727],[79.77049,27.69927],[79.77132,27.70571],[79.76491,27.71351],[79.75288,27.72204],[79.74854,27.71773],[79.74536,27.71757],[79.73846,27.72269],[79.73554,27.71867],[79.73168,27.71282],[79.73586,27.69938],[79.73343,27.69252],[79.73094,27.67453],[79.7211,27.6668],[79.71298,27.66627],[79.70819,27.66808],[79.70559,27.66674],[79.70083,27.66011],[79.69133,27.6527],[79.69317,27.64667],[79.69552,27.64468],[79.69443,27.64259],[79.68887,27.64303],[79.68521,27.63848],[79.68637,27.6363],[79.68448,27.6252],[79.68945,27.61911],[79.69251,27.61786],[79.69547,27.62189],[79.69965,27.62241],[79.69742,27.61759],[79.70256,27.61384],[79.69635,27.60116],[79.70208,27.59683],[79.70214,27.59253],[79.70723,27.59201],[79.70449,27.58602],[79.7146,27.58863],[79.71717,27.58434],[79.71657,27.58137],[79.71308,27.58123],[79.71223,27.57907],[79.71656,27.5703],[79.71405,27.56499],[79.71744,27.55987],[79.71213,27.55936],[79.70965,27.55637],[79.7095,27.55486],[79.7121,27.55349],[79.7112,27.55089],[79.70649,27.55294],[79.70463,27.55236],[79.70491,27.55029],[79.70746,27.54684],[79.71025,27.54778],[79.7131,27.54662],[79.71188,27.54534],[79.71263,27.54348],[79.71584,27.54303],[79.71901,27.54485],[79.7269,27.54195],[79.7322,27.53625],[79.73283,27.53316],[79.73137,27.52988],[79.73327,27.52534],[79.72998,27.52033],[79.72923,27.51268],[79.73251,27.50753],[79.73946,27.50777],[79.73893,27.50435],[79.73764,27.50386],[79.73512,27.50662],[79.72788,27.49844],[79.73515,27.49684],[79.73286,27.49314],[79.72952,27.49627],[79.72799,27.49395],[79.73207,27.4905],[79.73249,27.48831],[79.72415,27.4844],[79.71432,27.47613],[79.71266,27.47131],[79.71458,27.46966],[79.72944,27.46708],[79.73154,27.4645],[79.72939,27.46205],[79.73797,27.45574],[79.74574,27.4553],[79.74729,27.45242],[79.74572,27.44891],[79.73891,27.44893],[79.73824,27.44602],[79.72883,27.43562],[79.72246,27.43733],[79.71747,27.43431],[79.71706,27.43218],[79.71999,27.42843],[79.71648,27.42313],[79.71766,27.42249],[79.7169,27.4205],[79.72583,27.41583],[79.71716,27.40925],[79.70567,27.39266],[79.70258,27.39575],[79.69726,27.39447],[79.69588,27.39124],[79.69165,27.38992],[79.69019,27.38809],[79.69396,27.38516],[79.6878,27.3783],[79.68972,27.37311],[79.68678,27.36935],[79.69145,27.36015],[79.69366,27.35758],[79.69438,27.35935],[79.69858,27.35913],[79.69859,27.3567],[79.70408,27.35453],[79.70259,27.34901],[79.7035,27.34794],[79.70647,27.34752],[79.70878,27.3492],[79.71286,27.34694],[79.71056,27.33995],[79.71548,27.3393],[79.71631,27.33327],[79.72201,27.32751],[79.72122,27.31803],[79.72881,27.30851],[79.72401,27.30492],[79.72757,27.29801],[79.72223,27.2896],[79.72734,27.28751],[79.73181,27.28233],[79.72908,27.27497],[79.72534,27.27698],[79.71667,27.27203],[79.71543,27.2663],[79.71102,27.2613],[79.70837,27.26028],[79.69992,27.26549],[79.69779,27.26355],[79.69392,27.25023],[79.69746,27.24975],[79.70252,27.24435],[79.69613,27.23],[79.72641,27.21907],[79.73016,27.22033],[79.73487,27.21518],[79.75321,27.20275],[79.75654,27.20359],[79.7609,27.20212],[79.76548,27.19604],[79.7892,27.18349],[79.80519,27.17101],[79.81421,27.17366],[79.82122,27.16864],[79.825,27.1677],[79.83606,27.17228],[79.84068,27.16676],[79.85133,27.16156],[79.85946,27.16158],[79.85333,27.15063],[79.8714,27.14603],[79.88252,27.14947],[79.89558,27.14881],[79.91037,27.13459],[79.92519,27.14608],[79.93076,27.14332],[79.94398,27.12639],[79.94653,27.11946],[79.95202,27.11378],[79.94967,27.10607],[79.94467,27.10569],[79.94095,27.10311],[79.9417,27.09879],[79.9496,27.09967],[79.95212,27.0958],[79.94649,27.09009],[79.94124,27.08969],[79.94162,27.08599],[79.95781,27.07582],[79.9605,27.07661],[79.96109,27.07365],[79.96617,27.07039],[79.96772,27.06472],[79.97062,27.06168],[79.98123,27.06428],[79.98932,27.06426],[79.99253,27.0619],[79.99617,27.05402],[79.99844,27.05637],[79.98453,27.037],[79.98954,27.03239],[79.99161,27.02286],[79.9919,27.01875],[79.98788,27.01078],[80.00231,27.00082],[80.00969,26.98747],[80.01402,26.98339],[80.02151,26.96449],[80.02107,26.96178],[80.01551,26.95551],[80.01695,26.95248],[80.03596,26.93046],[80.04399,26.92484],[80.05308,26.93427],[80.06576,26.94191],[80.06878,26.94597],[80.07337,26.94582],[80.08286,26.95214],[80.08165,26.95281],[80.08702,26.96183],[80.09895,26.96021],[80.1073,26.96122],[80.10785,26.96983],[80.10122,26.97432],[80.10163,26.97795],[80.11369,26.99601],[80.12046,26.99675],[80.12429,26.99466],[80.12466,26.98988],[80.11908,26.9896],[80.12686,26.98297],[80.13341,26.98332],[80.13579,26.98976],[80.13975,26.98587],[80.14373,26.98895],[80.1479,26.98638],[80.14736,26.98227],[80.14517,26.98063],[80.1485,26.97831],[80.15129,26.98148],[80.15301,26.97836],[80.15634,26.98003],[80.15425,26.98294],[80.15854,26.98333],[80.15904,26.98614],[80.16567,26.98718],[80.17576,26.99778],[80.1859,26.99805],[80.1865,26.99522],[80.1818,26.98501],[80.18374,26.98289],[80.18437,26.97819],[80.17498,26.9708],[80.17566,26.96757],[80.17393,26.96423],[80.17648,26.96253],[80.17348,26.96213],[80.17494,26.95861],[80.17858,26.95732],[80.18282,26.96384],[80.18623,26.96],[80.1921,26.96186],[80.20302,26.96736],[80.20678,26.97166],[80.22077,26.96644],[80.22523,26.9724],[80.23094,26.97325],[80.23082,26.97616],[80.2342,26.97946],[80.23379,26.98172],[80.24214,27.00189],[80.24166,27.00905],[80.24836,27.01659],[80.25593,27.01965],[80.25227,27.02863],[80.25854,27.03136],[80.26909,27.02683],[80.28448,27.02944],[80.28675,27.0249],[80.2912,27.02238],[80.30084,27.02421],[80.30091,27.02593],[80.30511,27.02448],[80.30558,27.02637],[80.30729,27.02601],[80.30639,27.02285],[80.31014,27.01668],[80.30941,27.01171],[80.30665,27.01251],[80.30474,27.00593],[80.30141,27.00556],[80.30188,27.00397],[80.29963,27.00145],[80.29615,27.00149],[80.29754,26.99672],[80.31495,26.99199],[80.31815,26.98855],[80.3312,26.99141],[80.32933,26.98625],[80.33454,26.97909],[80.33515,26.97303],[80.343,26.9671],[80.34006,26.96603],[80.34158,26.96468],[80.33968,26.96251],[80.34149,26.96195],[80.33928,26.9585],[80.34077,26.95778],[80.3388,26.95809],[80.33841,26.95668],[80.33976,26.9532],[80.34189,26.95301],[80.33952,26.95027],[80.35445,26.93476],[80.36296,26.92134],[80.3654,26.92209],[80.36466,26.92716],[80.36852,26.92904],[80.3768,26.92752],[80.38009,26.93047],[80.38286,26.92941],[80.38762,26.93297],[80.39012,26.93215],[80.39054,26.93044],[80.38857,26.93059],[80.38886,26.92887],[80.39384,26.92872],[80.39807,26.92048],[80.39565,26.91949],[80.39491,26.91603],[80.39973,26.91172],[80.39823,26.90711],[80.40287,26.90682],[80.40838,26.90193],[80.40855,26.89588],[80.41324,26.89451],[80.41145,26.89277],[80.4137,26.88973],[80.41567,26.89149],[80.41681,26.8905],[80.43177,26.91574],[80.42519,26.91931],[80.42779,26.9432],[80.44688,26.94942],[80.45038,26.95601],[80.44844,26.95867],[80.44556,26.95928],[80.44371,26.96293],[80.44625,26.96736],[80.45076,26.96966],[80.45371,26.97435],[80.46058,26.9779],[80.46565,26.97561],[80.47012,26.97934],[80.47667,26.97892],[80.48009,26.98657],[80.49144,26.98995],[80.496,26.98645],[80.50495,26.98582],[80.50669,26.99116],[80.51494,26.99813],[80.51933,27.00073],[80.52628,26.99965],[80.53458,27.00736],[80.5455,27.00032],[80.54803,27.00404],[80.55012,27.01363],[80.56039,27.01052],[80.56811,27.01737],[80.58157,27.02273],[80.58653,27.02888],[80.5844,27.03029],[80.57933,27.02808],[80.57615,27.03046],[80.57791,27.0342],[80.58262,27.03734],[80.58603,27.03709],[80.58866,27.03944],[80.59411,27.03725],[80.59945,27.04398],[80.6048,27.04238],[80.604,27.04043],[80.60719,27.03781],[80.61541,27.03935],[80.6247,27.05684],[80.63327,27.05794],[80.64196,27.06182],[80.64383,27.0668],[80.64758,27.06325],[80.6569,27.06285],[80.65807,27.0649],[80.65641,27.067],[80.64693,27.07014],[80.64269,27.06967],[80.64271,27.07389],[80.64673,27.07829],[80.65775,27.07512],[80.66707,27.07554],[80.6726,27.07278],[80.67931,27.066],[80.69091,27.06373],[80.69642,27.06473],[80.70074,27.06231],[80.70328,27.07076],[80.71128,27.06913],[80.71354,27.07387],[80.71285,27.08139],[80.72026,27.08447],[80.73189,27.09823],[80.73695,27.09883],[80.73958,27.10221],[80.75339,27.09944],[80.7573,27.10067],[80.76137,27.09782],[80.76358,27.09139],[80.76563,27.08987],[80.77075,27.10316],[80.78011,27.098],[80.78381,27.10074],[80.78375,27.10412],[80.78713,27.10947],[80.79226,27.11091],[80.79529,27.10652],[80.80467,27.10055],[80.80637,27.10274],[80.81709,27.0975],[80.81995,27.09953],[80.82691,27.09999],[80.82386,27.11263],[80.82169,27.11574],[80.81629,27.11435],[80.81003,27.10763],[80.80641,27.10929],[80.81036,27.12217],[80.80489,27.12619],[80.8042,27.13091],[80.80656,27.13353],[80.81736,27.1353],[80.82158,27.13873],[80.81638,27.14955],[80.81721,27.15357],[80.82173,27.15873],[80.81373,27.16072],[80.81219,27.16926],[80.80974,27.17281],[80.80735,27.17321],[80.80468,27.17016],[80.80384,27.17503],[80.80561,27.17581],[80.79735,27.19977],[80.7904,27.20014],[80.78851,27.20822],[80.78259,27.20244],[80.77566,27.20426],[80.7709,27.20111],[80.76643,27.2019],[80.76414,27.20834],[80.75975,27.20845],[80.75267,27.21344],[80.75204,27.22188],[80.74758,27.22802],[80.74517,27.22335],[80.74103,27.22266],[80.72625,27.23537],[80.71734,27.23503],[80.70485,27.2299],[80.69685,27.21751],[80.69269,27.21548],[80.68495,27.22042],[80.67551,27.22032],[80.6672,27.22589],[80.65686,27.22611],[80.65428,27.22774],[80.65176,27.23279],[80.65095,27.24165],[80.64328,27.24378],[80.64165,27.24574],[80.64305,27.2495],[80.64629,27.2522],[80.65196,27.25292],[80.6517,27.25674],[80.64979,27.25889],[80.64377,27.26056],[80.63258,27.25792],[80.63095,27.25355],[80.62757,27.25294],[80.61883,27.27074],[80.61656,27.27161],[80.6008,27.26284],[80.59741,27.26636],[80.59727,27.27084],[80.59034,27.26877],[80.58576,27.27267],[80.58668,27.27884],[80.58149,27.27702],[80.58078,27.27461],[80.57909,27.27644],[80.56925,27.27869],[80.57754,27.28598],[80.57722,27.28804],[80.57206,27.28618],[80.5743,27.29171],[80.57183,27.29291],[80.5665,27.29272],[80.5651,27.29116],[80.55944,27.27969],[80.5577,27.26918],[80.55029,27.27236],[80.54685,27.2721],[80.53996,27.26602],[80.53083,27.2614],[80.52223,27.2598],[80.51539,27.26118],[80.51339,27.25814],[80.51361,27.25494],[80.50778,27.25643],[80.49603,27.25504],[80.49468,27.25704],[80.49834,27.26042],[80.50262,27.26165],[80.50989,27.26724],[80.51562,27.2648],[80.51721,27.26857],[80.51229,27.27327],[80.51174,27.28759],[80.5059,27.29408],[80.50625,27.30043],[80.49973,27.30334],[80.49535,27.31193],[80.49581,27.31922],[80.50159,27.32264],[80.50174,27.32459],[80.48724,27.33004],[80.48363,27.33638],[80.48457,27.3419],[80.48257,27.34508],[80.47407,27.34634],[80.47003,27.3452],[80.46564,27.34],[80.46054,27.34166],[80.45552,27.33915],[80.45597,27.34136],[80.46284,27.34375],[80.46364,27.34557],[80.46231,27.34885],[80.45641,27.35354],[80.45411,27.36003],[80.45979,27.36095],[80.46589,27.35583],[80.46795,27.36715],[80.46532,27.36961],[80.45763,27.36666],[80.45424,27.37063],[80.44866,27.38345],[80.45014,27.38727],[80.44893,27.39076],[80.45146,27.39563],[80.44721,27.39773],[80.45124,27.40149],[80.44552,27.4035],[80.43566,27.40213],[80.43202,27.40824],[80.42333,27.4138],[80.42174,27.41963],[80.42937,27.41836],[80.43093,27.41983],[80.43061,27.42297],[80.42576,27.42515],[80.41724,27.43455],[80.40998,27.43485],[80.40835,27.44372],[80.40494,27.44635],[80.40778,27.44721],[80.4079,27.44968],[80.40443,27.4506],[80.40221,27.44847],[80.40164,27.45057],[80.40402,27.45395],[80.39743,27.45404],[80.40301,27.45914],[80.40267,27.46321],[80.39105,27.46577],[80.39093,27.4736],[80.38401,27.47728],[80.38144,27.47434],[80.3813,27.47666],[80.37908,27.47724],[80.37621,27.48128],[80.37479,27.47969],[80.36943,27.48122],[80.36758,27.47773],[80.36209,27.48094],[80.35654,27.48001],[80.35607,27.48764],[80.35178,27.48593],[80.35242,27.48783],[80.35015,27.48886],[80.35279,27.49257],[80.3481,27.49646],[80.34901,27.49878],[80.34636,27.50145],[80.34884,27.50362],[80.34653,27.50498],[80.34406,27.51058],[80.33814,27.51406],[80.33679,27.51813],[80.33184,27.51771],[80.32506,27.52298],[80.32479,27.52509],[80.32683,27.52579],[80.32724,27.52797],[80.32091,27.5348],[80.32375,27.53729],[80.32076,27.54017],[80.32197,27.54466],[80.32034,27.54698],[80.32251,27.55018],[80.32035,27.55107],[80.3204,27.55464],[80.31766,27.55705],[80.31882,27.55801],[80.3176,27.56501],[80.30632,27.57637],[80.30502,27.58217],[80.30527,27.58719],[80.30827,27.58829],[80.3095,27.59059],[80.32066,27.59217],[80.3201,27.5937],[80.32435,27.5988],[80.32423,27.60069],[80.31773,27.60323],[80.31945,27.60505],[80.31857,27.60626],[80.31503,27.60618],[80.31219,27.6032],[80.30576,27.60574],[80.30708,27.60713],[80.30365,27.60945],[80.30713,27.60919],[80.30362,27.61232],[80.30607,27.61613],[80.30499,27.6182],[80.30179,27.61817],[80.30325,27.62491],[80.29863,27.63166],[80.30258,27.63442],[80.30658,27.63409],[80.30283,27.63737],[80.30687,27.63719],[80.31092,27.64039],[80.30805,27.6448],[80.31089,27.64707],[80.30889,27.64811],[80.30958,27.6511],[80.30674,27.65168],[80.30624,27.65578],[80.31023,27.65464],[80.30781,27.65984],[80.31149,27.66048],[80.30794,27.66462],[80.31245,27.66618],[80.30661,27.67396],[80.30941,27.67417],[80.31127,27.68197],[80.30602,27.67977],[80.30495,27.68219],[80.29891,27.68217],[80.29513,27.68832],[80.29645,27.69095],[80.2945,27.69252],[80.29702,27.69405],[80.2981,27.69294],[80.29934,27.69462],[80.29348,27.70045],[80.29438,27.70322],[80.29201,27.70577],[80.29189,27.70869],[80.27839,27.71012],[80.2792,27.71208],[80.27716,27.71447],[80.28097,27.71531],[80.28017,27.71908],[80.28334,27.72064],[80.28019,27.72247],[80.28284,27.72619],[80.27968,27.72705],[80.28425,27.7307],[80.28173,27.73179],[80.27337,27.72923],[80.27037,27.73056],[80.26933,27.7336],[80.26658,27.73468],[80.26608,27.74184],[80.25885,27.74168],[80.25624,27.74495],[80.2549,27.74432],[80.25691,27.74698],[80.25537,27.74676],[80.25569,27.74829],[80.25205,27.75017],[80.25184,27.75589],[80.25312,27.75761],[80.25068,27.75806],[80.24829,27.7537],[80.24664,27.75477],[80.24461,27.75121],[80.24304,27.7518],[80.24032,27.74992],[80.23793,27.7519],[80.23761,27.75476],[80.23955,27.75378],[80.24328,27.75633],[80.24122,27.76161],[80.24181,27.76423],[80.23943,27.7656],[80.23344,27.75983],[80.22404,27.76222],[80.22461,27.7652],[80.22596,27.76364],[80.22991,27.76637],[80.22951,27.7681],[80.23268,27.76823],[80.23361,27.77039],[80.23212,27.7715],[80.22819,27.77086],[80.22713,27.76869],[80.21866,27.76735],[80.21696,27.77155],[80.20942,27.77147],[80.20539,27.77516],[80.20133,27.77561],[80.19615,27.7695],[80.19436,27.7657],[80.19571,27.76471],[80.19255,27.76028],[80.18645,27.76264],[80.18353,27.76581],[80.18075,27.76528],[80.17814,27.76187],[80.17314,27.76389],[80.16862,27.76129],[80.15795,27.76669],[80.15919,27.76921],[80.15773,27.77101],[80.14298,27.75395],[80.1339,27.75005],[80.13209,27.75434],[80.13405,27.75554],[80.13372,27.76153],[80.13769,27.77576],[80.1365,27.7776],[80.12303,27.77574],[80.11756,27.77712],[80.11423,27.77329],[80.10697,27.77748],[80.1107,27.78069],[80.11113,27.78361],[80.10294,27.7785],[80.09009,27.78446]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"151","area_level":"District","area_name":"Jalaun","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.30491,26.42844],[79.30142,26.43757],[79.29707,26.44049],[79.28852,26.44261],[79.28616,26.44188],[79.28338,26.43807],[79.24347,26.4261],[79.22304,26.42802],[79.21057,26.43812],[79.20116,26.42737],[79.19549,26.42499],[79.18586,26.43105],[79.17956,26.42804],[79.17279,26.43442],[79.16559,26.43544],[79.15536,26.43992],[79.14838,26.44042],[79.14715,26.43865],[79.14531,26.43995],[79.14224,26.43828],[79.13595,26.44028],[79.12828,26.43142],[79.12432,26.42261],[79.1237,26.41156],[79.12528,26.41238],[79.12598,26.41125],[79.10469,26.40638],[79.10025,26.40817],[79.0995,26.41201],[79.09521,26.41264],[79.09435,26.41085],[79.09609,26.40798],[79.09438,26.40833],[79.09187,26.40595],[79.089,26.39663],[79.09639,26.38305],[79.09684,26.381],[79.0943,26.37615],[79.09692,26.37549],[79.0954,26.37373],[79.09637,26.37232],[79.09479,26.36967],[79.09135,26.37113],[79.08731,26.36843],[79.08424,26.36232],[79.08561,26.36109],[79.08447,26.35811],[79.09005,26.3544],[79.09726,26.35439],[79.09809,26.35555],[79.10309,26.35319],[79.10542,26.34926],[79.10926,26.35213],[79.11095,26.35156],[79.11085,26.34961],[79.11427,26.3488],[79.11568,26.34999],[79.1163,26.3483],[79.12046,26.34831],[79.12711,26.34308],[79.12844,26.33888],[79.13221,26.33718],[79.13413,26.33914],[79.13748,26.3385],[79.13883,26.33751],[79.13722,26.33551],[79.13263,26.33532],[79.13219,26.33341],[79.13497,26.32474],[79.12742,26.32186],[79.12515,26.32704],[79.12492,26.32241],[79.11553,26.32048],[79.11625,26.31665],[79.11983,26.31258],[79.1249,26.31159],[79.11753,26.30517],[79.11874,26.30104],[79.11742,26.29891],[79.11368,26.30195],[79.11331,26.30464],[79.10952,26.30652],[79.10193,26.30682],[79.0979,26.30093],[79.09708,26.29453],[79.08989,26.28772],[79.09652,26.27849],[79.09107,26.27252],[79.09065,26.27003],[79.0869,26.27139],[79.08775,26.27331],[79.0857,26.27403],[79.08545,26.27622],[79.08361,26.27549],[79.08443,26.27969],[79.08069,26.27841],[79.07701,26.28062],[79.07453,26.27783],[79.06464,26.27704],[79.06184,26.27174],[79.05351,26.26269],[79.05693,26.26025],[79.05566,26.25886],[79.04564,26.26031],[79.04597,26.25645],[79.0521,26.2546],[79.05343,26.25082],[79.05712,26.24904],[79.06446,26.2493],[79.0697,26.2457],[79.06894,26.24317],[79.07094,26.24152],[79.0642,26.23883],[79.06243,26.2365],[79.06535,26.22977],[79.06344,26.2259],[79.05333,26.22804],[79.0471,26.22417],[79.03786,26.22733],[79.0346,26.22537],[79.03067,26.23929],[79.01944,26.24761],[79.01088,26.24468],[79.00957,26.24201],[79.00372,26.24441],[78.9968,26.24189],[78.9939,26.23874],[78.99169,26.23896],[78.98936,26.23498],[78.99655,26.22804],[79.01363,26.22551],[79.02582,26.2201],[79.02481,26.2084],[79.02783,26.20328],[79.02083,26.20021],[79.02009,26.19822],[79.02583,26.19177],[79.00688,26.19167],[78.99768,26.19849],[78.99367,26.19689],[78.98311,26.18436],[78.98661,26.18242],[78.99471,26.17291],[78.99955,26.16993],[79.00447,26.16922],[79.00529,26.16744],[79.00413,26.16638],[79.00614,26.16392],[79.00476,26.16263],[79.00823,26.1564],[79.00428,26.14982],[79.0049,26.14805],[78.99854,26.15001],[78.99426,26.1462],[78.97996,26.1511],[78.96696,26.15014],[78.96438,26.14846],[78.96565,26.14141],[78.96372,26.1404],[78.9629,26.13653],[78.95157,26.13432],[78.94887,26.12868],[78.95848,26.12797],[78.96237,26.12532],[78.96344,26.12216],[78.97683,26.11604],[78.97746,26.11114],[78.97559,26.1052],[78.987,26.0995],[78.99358,26.09371],[79.0021,26.09017],[79.00866,26.09321],[79.01257,26.08991],[79.01206,26.08318],[79.00841,26.08014],[79.00814,26.07542],[79.00275,26.06665],[78.99069,26.06883],[78.98943,26.06284],[78.9863,26.06043],[78.98614,26.05368],[78.98188,26.05161],[78.98015,26.04812],[78.9769,26.04794],[78.97655,26.05104],[78.97273,26.05028],[78.97389,26.04504],[78.9693,26.04563],[78.96039,26.03486],[78.95455,26.03338],[78.95302,26.02934],[78.94826,26.02775],[78.95351,26.01522],[78.94823,26.01051],[78.94821,26.00822],[78.94449,26.00628],[78.9466,26.00116],[78.95129,25.99852],[78.95606,25.99801],[78.95681,25.99654],[78.95554,25.99491],[78.9483,25.99319],[78.94932,25.99123],[78.95298,25.991],[78.95315,25.98906],[78.94354,25.97887],[78.94068,25.97851],[78.93611,25.98184],[78.93318,25.97933],[78.93494,25.97498],[78.93781,25.97377],[78.93832,25.97079],[78.93761,25.96453],[78.93473,25.96442],[78.93484,25.96137],[78.93051,25.95971],[78.93484,25.95586],[78.93429,25.95314],[78.94866,25.94988],[78.96905,25.93568],[78.97725,25.94661],[78.99381,25.93995],[79.0058,25.93284],[79.01922,25.93996],[79.02635,25.93563],[79.03003,25.93723],[79.03737,25.93658],[79.04621,25.92854],[79.05524,25.92674],[79.06846,25.92124],[79.08238,25.91897],[79.08435,25.91709],[79.07953,25.90462],[79.06823,25.90707],[79.06442,25.90587],[79.05546,25.90723],[79.05376,25.90327],[79.05489,25.89394],[79.05263,25.89223],[79.04496,25.89659],[79.0468,25.89996],[79.03956,25.90047],[79.03143,25.90403],[79.02864,25.89981],[79.03207,25.89832],[79.03159,25.89533],[79.03338,25.89404],[79.03148,25.89022],[79.03432,25.88817],[79.03295,25.88585],[79.03657,25.88443],[79.0381,25.88172],[79.03987,25.88272],[79.04192,25.88161],[79.04334,25.87936],[79.04159,25.87188],[79.03837,25.86843],[79.05345,25.85962],[79.06533,25.8558],[79.06848,25.86008],[79.07511,25.85929],[79.07637,25.86254],[79.0772,25.86625],[79.07184,25.86767],[79.07176,25.87121],[79.07316,25.87931],[79.07763,25.89015],[79.08732,25.88667],[79.09167,25.88887],[79.10095,25.88839],[79.10378,25.89178],[79.1072,25.89121],[79.10539,25.88377],[79.1056,25.87615],[79.09975,25.86597],[79.09712,25.86654],[79.09615,25.86243],[79.1014,25.86001],[79.10242,25.85558],[79.10573,25.85525],[79.11497,25.85739],[79.11786,25.86623],[79.12663,25.86392],[79.12055,25.84794],[79.12548,25.84628],[79.12224,25.83282],[79.11509,25.82429],[79.12698,25.81724],[79.13433,25.80926],[79.14929,25.80937],[79.16378,25.81214],[79.16712,25.80717],[79.17028,25.80811],[79.17434,25.80546],[79.18444,25.80275],[79.18949,25.8034],[79.19317,25.79963],[79.19851,25.79903],[79.20187,25.79435],[79.21087,25.78876],[79.2149,25.78913],[79.23207,25.79701],[79.23908,25.80531],[79.24225,25.80648],[79.24803,25.8038],[79.25679,25.7919],[79.26293,25.78933],[79.26527,25.78979],[79.27165,25.7963],[79.27876,25.81254],[79.29246,25.82036],[79.29176,25.81494],[79.29805,25.81064],[79.29854,25.80326],[79.30244,25.8008],[79.29048,25.79636],[79.28957,25.79395],[79.29149,25.7894],[79.29133,25.78506],[79.2943,25.78134],[79.31213,25.77567],[79.3168,25.77052],[79.32406,25.7664],[79.33293,25.76963],[79.33616,25.77558],[79.35335,25.79069],[79.36842,25.78701],[79.37354,25.78371],[79.37879,25.78463],[79.38942,25.78999],[79.39627,25.79555],[79.39739,25.8041],[79.4026,25.80782],[79.42287,25.80723],[79.43284,25.80126],[79.43692,25.79307],[79.44154,25.7879],[79.45421,25.78717],[79.45985,25.78924],[79.46372,25.79408],[79.46355,25.80748],[79.46333,25.81061],[79.46022,25.81174],[79.45758,25.81628],[79.45931,25.82325],[79.46968,25.83664],[79.48267,25.84623],[79.48948,25.85362],[79.49783,25.85775],[79.50426,25.85715],[79.50837,25.8529],[79.51276,25.85131],[79.51519,25.84722],[79.52586,25.8423],[79.52877,25.83142],[79.53833,25.82111],[79.55112,25.82159],[79.55873,25.82833],[79.56247,25.83609],[79.56342,25.84233],[79.57173,25.85334],[79.56581,25.85596],[79.56324,25.86147],[79.55986,25.86448],[79.53973,25.86088],[79.53219,25.86218],[79.52392,25.8659],[79.52044,25.8727],[79.51927,25.88068],[79.52186,25.88848],[79.52694,25.89404],[79.53618,25.89435],[79.56015,25.88845],[79.56744,25.88403],[79.5706,25.88383],[79.58211,25.88699],[79.59824,25.89734],[79.61076,25.89716],[79.61249,25.89936],[79.61283,25.90546],[79.61084,25.9112],[79.60447,25.9179],[79.60349,25.92323],[79.60648,25.92867],[79.61461,25.93211],[79.62321,25.93267],[79.63218,25.93047],[79.63883,25.92506],[79.65387,25.90715],[79.65898,25.90419],[79.66814,25.90609],[79.67267,25.90889],[79.67664,25.91367],[79.68279,25.92699],[79.68639,25.92962],[79.69212,25.92658],[79.70346,25.91409],[79.70904,25.90364],[79.71923,25.90579],[79.72494,25.90798],[79.72723,25.91076],[79.7357,25.91343],[79.74849,25.90891],[79.75983,25.88704],[79.75769,25.88371],[79.75869,25.8808],[79.76886,25.87184],[79.78543,25.8635],[79.80033,25.86415],[79.80804,25.86857],[79.81379,25.87625],[79.8147,25.88416],[79.80887,25.90399],[79.81145,25.91259],[79.81521,25.91434],[79.82026,25.91443],[79.82423,25.91175],[79.83616,25.88784],[79.84004,25.88451],[79.86153,25.87941],[79.87073,25.88238],[79.86368,25.89745],[79.86244,25.90979],[79.86636,25.9365],[79.85059,25.94491],[79.85264,25.9483],[79.84518,25.95158],[79.84467,25.95716],[79.85017,25.97187],[79.85391,25.97451],[79.85999,25.97186],[79.86662,25.97335],[79.87251,25.97149],[79.8733,25.96452],[79.86888,25.96219],[79.86068,25.95282],[79.87024,25.95142],[79.87634,25.94854],[79.87879,25.95481],[79.88719,25.96417],[79.88933,25.963],[79.89793,25.96335],[79.8986,25.96066],[79.89694,25.95894],[79.89804,25.95682],[79.90408,25.96552],[79.90605,25.96547],[79.90845,25.97047],[79.9146,25.96853],[79.92332,25.96291],[79.93144,25.97275],[79.93436,25.98164],[79.92775,25.98595],[79.93234,25.99592],[79.93179,25.9989],[79.93695,26.00106],[79.94351,26.00001],[79.9544,26.02336],[79.94186,26.02979],[79.93505,26.02193],[79.9313,26.02177],[79.93053,26.0172],[79.92764,26.01754],[79.91941,26.01032],[79.9071,26.01318],[79.91309,26.02317],[79.91631,26.03211],[79.93686,26.02837],[79.93996,26.02974],[79.94203,26.03344],[79.93938,26.04304],[79.94137,26.04399],[79.94455,26.0539],[79.94304,26.05486],[79.94428,26.06076],[79.93828,26.06352],[79.9398,26.06562],[79.93569,26.06692],[79.93089,26.0746],[79.92925,26.07399],[79.93237,26.07815],[79.92731,26.08478],[79.91871,26.0906],[79.90393,26.09196],[79.88605,26.09918],[79.87511,26.10703],[79.86591,26.11662],[79.8572,26.11391],[79.84037,26.10231],[79.83666,26.10131],[79.81522,26.10355],[79.78157,26.11063],[79.77743,26.11407],[79.77525,26.12038],[79.77158,26.12338],[79.74853,26.13293],[79.7447,26.13621],[79.74511,26.14677],[79.76013,26.16316],[79.76364,26.16956],[79.76445,26.18045],[79.76179,26.1838],[79.7397,26.18645],[79.7256,26.18452],[79.71376,26.18596],[79.67976,26.19981],[79.66767,26.20682],[79.64865,26.21048],[79.64631,26.21266],[79.64395,26.21948],[79.65173,26.23258],[79.65213,26.2367],[79.64798,26.24423],[79.64158,26.2496],[79.62953,26.24785],[79.60207,26.2513],[79.59162,26.25391],[79.5854,26.25744],[79.57266,26.2591],[79.5677,26.26459],[79.5521,26.2704],[79.5362,26.28468],[79.52874,26.29559],[79.52571,26.30422],[79.5257,26.31469],[79.53111,26.32367],[79.53402,26.32319],[79.56444,26.34015],[79.5692,26.34992],[79.56816,26.3571],[79.56329,26.36161],[79.55512,26.36234],[79.54589,26.35871],[79.54371,26.35434],[79.52452,26.34299],[79.51201,26.34792],[79.51101,26.3495],[79.5125,26.35546],[79.51091,26.35906],[79.50579,26.36424],[79.49213,26.38582],[79.49039,26.39126],[79.49027,26.40997],[79.48676,26.41863],[79.47343,26.43168],[79.4666,26.43369],[79.4562,26.43387],[79.40389,26.42439],[79.3877,26.41877],[79.38208,26.41364],[79.36478,26.40694],[79.34557,26.40115],[79.32483,26.3985],[79.32051,26.39952],[79.31437,26.40732],[79.30957,26.41551],[79.30491,26.42844]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"152","area_level":"District","area_name":"Jaunpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.60078,26.19837],[82.59772,26.20123],[82.59242,26.1993],[82.59507,26.19521],[82.59726,26.18118],[82.58619,26.17888],[82.58144,26.18696],[82.57778,26.18351],[82.57716,26.17862],[82.57881,26.17848],[82.58201,26.17023],[82.58043,26.17017],[82.58068,26.16765],[82.57892,26.16549],[82.57514,26.16699],[82.56935,26.16346],[82.57134,26.16129],[82.57091,26.15624],[82.57355,26.1527],[82.57332,26.149],[82.56612,26.14952],[82.56183,26.14829],[82.55996,26.14585],[82.56037,26.14333],[82.56393,26.14046],[82.57044,26.14146],[82.57116,26.1385],[82.56697,26.13112],[82.56399,26.1323],[82.56054,26.13035],[82.55724,26.13549],[82.55217,26.13637],[82.5488,26.13522],[82.54149,26.13741],[82.53938,26.13846],[82.53844,26.14361],[82.53064,26.14637],[82.52351,26.14221],[82.51802,26.14261],[82.51532,26.14083],[82.51479,26.13706],[82.50824,26.14059],[82.50136,26.13341],[82.49672,26.1341],[82.4914,26.1419],[82.48664,26.145],[82.48037,26.14007],[82.47975,26.13383],[82.47737,26.12942],[82.46297,26.13183],[82.46051,26.13456],[82.45511,26.13561],[82.45393,26.13388],[82.45108,26.13517],[82.44722,26.13235],[82.44362,26.13243],[82.44168,26.12433],[82.44539,26.12174],[82.44084,26.11404],[82.44361,26.11214],[82.44175,26.10964],[82.43804,26.10901],[82.43517,26.10481],[82.4352,26.09802],[82.44398,26.09691],[82.44516,26.09291],[82.44714,26.0917],[82.4463,26.08812],[82.44936,26.08545],[82.44878,26.08399],[82.45451,26.08293],[82.46537,26.07346],[82.46913,26.07686],[82.4734,26.07645],[82.47512,26.07535],[82.47623,26.06977],[82.47072,26.06044],[82.46294,26.0632],[82.46016,26.05698],[82.46277,26.05427],[82.46045,26.05002],[82.46182,26.04836],[82.45767,26.04477],[82.47045,26.03926],[82.47599,26.03932],[82.47792,26.04373],[82.48039,26.04432],[82.47821,26.04528],[82.48137,26.04564],[82.4901,26.04413],[82.499,26.03993],[82.5012,26.04231],[82.50398,26.04206],[82.50487,26.03616],[82.51208,26.02997],[82.5174,26.03004],[82.51226,26.0257],[82.50681,26.02411],[82.50226,26.0165],[82.51123,26.01294],[82.51276,26.01465],[82.51899,26.01109],[82.51799,26.00688],[82.52027,26.00408],[82.51748,26.00005],[82.51377,26.0005],[82.51085,25.99633],[82.50556,25.99646],[82.50589,25.99489],[82.50202,25.98998],[82.50987,25.98517],[82.50688,25.98138],[82.50484,25.98052],[82.50206,25.98183],[82.4987,25.9785],[82.49847,25.97542],[82.48769,25.97367],[82.48487,25.98538],[82.4763,25.99966],[82.46874,26.00218],[82.43922,26.00485],[82.43393,26.00666],[82.43214,26.00502],[82.42948,26.00699],[82.42611,26.00605],[82.42587,25.99472],[82.42396,25.99141],[82.43439,25.9852],[82.42952,25.97707],[82.42579,25.97822],[82.42738,25.98002],[82.42926,25.97927],[82.42932,25.9814],[82.43153,25.98213],[82.4249,25.98499],[82.41848,25.97796],[82.41177,25.97898],[82.40766,25.97426],[82.40392,25.97355],[82.39705,25.97392],[82.39269,25.97687],[82.38736,25.97658],[82.37932,25.98022],[82.37441,25.97927],[82.3689,25.98232],[82.36075,25.97115],[82.36293,25.96726],[82.35909,25.96149],[82.35512,25.96099],[82.34905,25.96307],[82.34412,25.95665],[82.35459,25.95302],[82.3529,25.95046],[82.35514,25.94809],[82.35649,25.94239],[82.36385,25.93806],[82.36542,25.94116],[82.36968,25.94311],[82.37175,25.94061],[82.37684,25.939],[82.37836,25.93141],[82.3809,25.93358],[82.39083,25.93316],[82.38488,25.91972],[82.38824,25.91605],[82.39264,25.91489],[82.39333,25.90939],[82.38014,25.90901],[82.37267,25.91381],[82.3715,25.91665],[82.37,25.91651],[82.3694,25.91262],[82.36517,25.91177],[82.36407,25.9083],[82.35772,25.90862],[82.35745,25.90621],[82.3547,25.90495],[82.35014,25.91382],[82.3485,25.91313],[82.34539,25.91505],[82.34461,25.91216],[82.34228,25.91178],[82.34099,25.90668],[82.33919,25.90682],[82.33924,25.90393],[82.33337,25.90197],[82.33244,25.89904],[82.32295,25.8993],[82.32083,25.90195],[82.31329,25.90136],[82.30769,25.89844],[82.30685,25.89579],[82.30419,25.89712],[82.29569,25.89225],[82.29534,25.8859],[82.29076,25.87859],[82.2906,25.87213],[82.29575,25.86873],[82.29162,25.86799],[82.29074,25.85994],[82.28869,25.85944],[82.28738,25.86086],[82.2828,25.85307],[82.28252,25.84984],[82.27968,25.84768],[82.27965,25.8428],[82.27497,25.84371],[82.27232,25.84735],[82.26744,25.84674],[82.25969,25.83591],[82.24803,25.83266],[82.23749,25.83529],[82.23556,25.8343],[82.23079,25.83775],[82.21814,25.84033],[82.21662,25.8379],[82.21701,25.8316],[82.20787,25.8283],[82.2102,25.8236],[82.20799,25.82074],[82.20128,25.82227],[82.18824,25.82976],[82.18402,25.83],[82.17859,25.82642],[82.17727,25.82316],[82.18237,25.81503],[82.17889,25.80909],[82.18321,25.80677],[82.18245,25.80409],[82.18413,25.80169],[82.1832,25.79917],[82.18123,25.80185],[82.17155,25.79985],[82.16958,25.79595],[82.16926,25.79402],[82.17073,25.79313],[82.16975,25.79043],[82.17365,25.78414],[82.18433,25.77859],[82.18152,25.77524],[82.18343,25.77227],[82.18754,25.7697],[82.19006,25.77253],[82.19809,25.76678],[82.1965,25.76435],[82.18875,25.76312],[82.18792,25.76022],[82.18769,25.75608],[82.1969,25.74203],[82.19173,25.73448],[82.19157,25.72291],[82.18773,25.70788],[82.18525,25.70339],[82.181,25.70098],[82.17965,25.70352],[82.16965,25.70378],[82.16949,25.69864],[82.16326,25.68032],[82.15557,25.6784],[82.15368,25.66771],[82.14411,25.66791],[82.13856,25.65472],[82.14509,25.65334],[82.14642,25.65173],[82.14559,25.65068],[82.14284,25.64946],[82.13908,25.65171],[82.13604,25.64523],[82.12698,25.64674],[82.12252,25.64496],[82.12401,25.6404],[82.13084,25.63302],[82.13699,25.63037],[82.13812,25.62785],[82.1371,25.62234],[82.14033,25.62099],[82.14623,25.61192],[82.14756,25.61293],[82.15436,25.60103],[82.16158,25.59751],[82.17144,25.59811],[82.17336,25.59346],[82.17148,25.59035],[82.17438,25.58528],[82.17772,25.58424],[82.17878,25.58074],[82.1815,25.58065],[82.18568,25.57718],[82.19308,25.58306],[82.20187,25.5842],[82.20399,25.57635],[82.20138,25.57553],[82.20502,25.57301],[82.20977,25.57831],[82.21172,25.57771],[82.21149,25.58168],[82.21376,25.58594],[82.22129,25.58702],[82.22402,25.58942],[82.25126,25.57783],[82.251,25.57101],[82.24815,25.57269],[82.24561,25.56818],[82.25066,25.56098],[82.25643,25.56214],[82.26073,25.56567],[82.26404,25.5653],[82.26786,25.56334],[82.26947,25.55907],[82.2729,25.55642],[82.27665,25.55445],[82.28586,25.55349],[82.28978,25.54199],[82.29532,25.54114],[82.2994,25.54766],[82.31051,25.54731],[82.31203,25.54555],[82.31859,25.54558],[82.32581,25.54287],[82.33211,25.53566],[82.34013,25.53566],[82.34871,25.52647],[82.35177,25.51398],[82.35674,25.50886],[82.36167,25.50857],[82.363,25.51068],[82.36642,25.50859],[82.37494,25.50803],[82.3765,25.51156],[82.37231,25.51456],[82.37231,25.51791],[82.37657,25.51646],[82.38091,25.51767],[82.38837,25.51205],[82.39414,25.51406],[82.39415,25.5191],[82.39733,25.51948],[82.40249,25.51271],[82.40327,25.50791],[82.40768,25.50534],[82.41255,25.49542],[82.41834,25.50097],[82.41606,25.50174],[82.41712,25.50399],[82.41599,25.5055],[82.42442,25.5087],[82.4245,25.51549],[82.42708,25.51638],[82.42826,25.51508],[82.43031,25.51661],[82.43291,25.51547],[82.44109,25.5169],[82.44297,25.51856],[82.44534,25.51717],[82.4479,25.51064],[82.44686,25.50386],[82.44948,25.49551],[82.46138,25.4896],[82.46739,25.49008],[82.47047,25.48802],[82.47109,25.48952],[82.47754,25.48982],[82.47999,25.48736],[82.47961,25.48409],[82.46577,25.47848],[82.46563,25.47611],[82.47013,25.47012],[82.47809,25.46969],[82.48605,25.47515],[82.48954,25.47541],[82.48891,25.4776],[82.49052,25.47846],[82.49692,25.47686],[82.49986,25.47886],[82.50548,25.47427],[82.50809,25.46824],[82.50992,25.46731],[82.50919,25.46097],[82.51702,25.4501],[82.51492,25.4436],[82.51665,25.4417],[82.52125,25.44094],[82.52642,25.44298],[82.52878,25.43967],[82.53009,25.44116],[82.53417,25.43848],[82.5491,25.4366],[82.5522,25.43837],[82.55741,25.4453],[82.55583,25.44551],[82.55493,25.44975],[82.55262,25.45127],[82.5488,25.45251],[82.5464,25.45149],[82.54443,25.45888],[82.5471,25.46269],[82.55042,25.46206],[82.55239,25.4595],[82.55386,25.46051],[82.55839,25.45894],[82.56312,25.45441],[82.56566,25.44635],[82.56788,25.4448],[82.56785,25.43692],[82.56967,25.43401],[82.56829,25.42407],[82.57004,25.42191],[82.56974,25.41813],[82.57658,25.41495],[82.57714,25.41727],[82.57965,25.41744],[82.58288,25.42128],[82.58367,25.42917],[82.58568,25.43287],[82.58408,25.43371],[82.58498,25.4395],[82.58248,25.44304],[82.58389,25.44615],[82.5817,25.44908],[82.58671,25.45355],[82.59098,25.45257],[82.59025,25.4507],[82.59181,25.44999],[82.59424,25.45223],[82.59491,25.44991],[82.59921,25.45172],[82.60096,25.45174],[82.60161,25.45006],[82.60643,25.4507],[82.61286,25.44622],[82.61455,25.43768],[82.61389,25.43535],[82.61036,25.43244],[82.60753,25.43238],[82.60716,25.4292],[82.60436,25.42854],[82.60147,25.4249],[82.60042,25.41908],[82.59857,25.41733],[82.60134,25.4132],[82.60798,25.41362],[82.61191,25.41712],[82.61471,25.41527],[82.61867,25.41582],[82.62336,25.41357],[82.62468,25.41087],[82.6274,25.41308],[82.62995,25.41048],[82.63336,25.41056],[82.63822,25.4081],[82.63951,25.40434],[82.63591,25.39981],[82.63215,25.40043],[82.63133,25.40229],[82.62908,25.40191],[82.62858,25.40464],[82.62735,25.4022],[82.62516,25.4042],[82.62133,25.40349],[82.61868,25.40137],[82.61949,25.3938],[82.6232,25.3928],[82.62539,25.39456],[82.6317,25.39266],[82.63795,25.3946],[82.64091,25.39373],[82.64568,25.3975],[82.66284,25.40024],[82.6672,25.3986],[82.6691,25.4005],[82.67182,25.39887],[82.68136,25.39889],[82.6934,25.39396],[82.69543,25.39596],[82.6909,25.398],[82.68413,25.40714],[82.68556,25.41092],[82.68284,25.41732],[82.68492,25.41912],[82.68391,25.42186],[82.68976,25.42858],[82.69688,25.43111],[82.70112,25.42984],[82.70248,25.43223],[82.70405,25.43203],[82.70394,25.43035],[82.7165,25.43254],[82.72045,25.43168],[82.71784,25.44176],[82.71005,25.4432],[82.70856,25.44803],[82.70695,25.44642],[82.7034,25.44763],[82.70282,25.44995],[82.70437,25.44947],[82.7065,25.45147],[82.70623,25.45769],[82.71255,25.46116],[82.71848,25.45891],[82.72098,25.46249],[82.72586,25.46004],[82.73326,25.45956],[82.73847,25.46666],[82.736,25.47037],[82.71372,25.47948],[82.70967,25.48388],[82.71593,25.50083],[82.72031,25.50054],[82.72167,25.50329],[82.72541,25.50278],[82.72458,25.51671],[82.72602,25.51924],[82.72371,25.52142],[82.72303,25.52538],[82.7161,25.52888],[82.71516,25.53076],[82.7209,25.53421],[82.72423,25.54153],[82.73749,25.54762],[82.74151,25.54707],[82.75291,25.54266],[82.76009,25.54223],[82.76256,25.53728],[82.77183,25.52977],[82.77897,25.5293],[82.7844,25.53531],[82.78527,25.54333],[82.79191,25.5424],[82.79439,25.54476],[82.79299,25.55328],[82.79741,25.55125],[82.80876,25.55017],[82.80941,25.5528],[82.82732,25.54933],[82.82976,25.55321],[82.83392,25.55287],[82.83761,25.55474],[82.83883,25.55866],[82.83631,25.56821],[82.84155,25.56821],[82.8512,25.56221],[82.85515,25.56299],[82.85955,25.57747],[82.86688,25.58024],[82.87296,25.57492],[82.87459,25.56686],[82.88313,25.56679],[82.88524,25.56902],[82.89036,25.56989],[82.895,25.56926],[82.89583,25.57181],[82.9129,25.56831],[82.91957,25.56957],[82.92248,25.57222],[82.92385,25.56979],[82.93291,25.5673],[82.93582,25.55608],[82.94041,25.55393],[82.9433,25.54694],[82.93987,25.54394],[82.94185,25.53224],[82.94503,25.5297],[82.95072,25.52914],[82.95177,25.52677],[82.95531,25.52555],[82.96305,25.52849],[82.96714,25.54027],[82.97217,25.54479],[82.97579,25.54544],[82.97753,25.55664],[82.99002,25.55654],[82.99941,25.55361],[82.99955,25.54997],[83.00654,25.54802],[83.00995,25.54889],[83.01009,25.55402],[83.00551,25.55559],[83.00134,25.55372],[83.00172,25.55614],[83.00962,25.55975],[83.00977,25.56708],[83.01635,25.57616],[83.0202,25.57757],[83.02422,25.57638],[83.02959,25.57159],[83.03179,25.56363],[83.03925,25.55335],[83.04058,25.54173],[83.04304,25.5406],[83.0485,25.54194],[83.05242,25.54443],[83.05711,25.55384],[83.06096,25.55749],[83.06603,25.5563],[83.07032,25.55121],[83.07672,25.55568],[83.08046,25.57126],[83.09012,25.57359],[83.08775,25.57923],[83.08627,25.59074],[83.07694,25.58808],[83.07675,25.59073],[83.06661,25.59532],[83.06789,25.59869],[83.07513,25.6006],[83.07694,25.61561],[83.07437,25.61894],[83.06802,25.62066],[83.06477,25.62691],[83.06281,25.63604],[83.06622,25.65283],[83.06205,25.65945],[83.0681,25.66812],[83.07732,25.67184],[83.07933,25.68191],[83.0714,25.68618],[83.06878,25.68442],[83.05644,25.68333],[83.05262,25.68929],[83.04073,25.69149],[83.04397,25.70164],[83.03638,25.70058],[83.03277,25.69774],[83.03061,25.70204],[83.03095,25.70556],[83.02767,25.70334],[83.02162,25.70671],[83.01865,25.70559],[83.01406,25.70914],[83.01376,25.71117],[83.01128,25.71112],[83.00895,25.71505],[83.00366,25.71067],[82.99983,25.70416],[83.00336,25.70338],[83.00286,25.69974],[82.99736,25.69792],[82.99799,25.69361],[83.00124,25.69414],[82.99862,25.68435],[82.99239,25.68583],[82.98511,25.68343],[82.98433,25.68075],[82.98197,25.68017],[82.97973,25.68259],[82.98062,25.68478],[82.97651,25.68595],[82.97624,25.69033],[82.96817,25.69972],[82.95802,25.70803],[82.95423,25.70582],[82.94207,25.70802],[82.94116,25.71648],[82.93536,25.71865],[82.93456,25.7229],[82.9329,25.72367],[82.93376,25.73112],[82.93199,25.73219],[82.93171,25.73001],[82.92977,25.72994],[82.9279,25.73218],[82.92707,25.72982],[82.92393,25.73245],[82.92462,25.73498],[82.92147,25.73805],[82.92291,25.73911],[82.92329,25.74435],[82.92899,25.74728],[82.92769,25.74929],[82.9299,25.75425],[82.92929,25.75741],[82.92652,25.75848],[82.92402,25.7572],[82.91881,25.75972],[82.9125,25.76765],[82.90687,25.76801],[82.9024,25.77143],[82.9012,25.77045],[82.89921,25.77491],[82.89024,25.76924],[82.87847,25.77335],[82.87011,25.77377],[82.86531,25.77111],[82.85871,25.77232],[82.84489,25.76685],[82.83874,25.7689],[82.82539,25.7697],[82.82557,25.77284],[82.82174,25.7739],[82.82056,25.77581],[82.82215,25.78236],[82.81941,25.7831],[82.81795,25.78543],[82.80624,25.78857],[82.80895,25.79979],[82.80858,25.806],[82.80086,25.80539],[82.79258,25.81769],[82.7866,25.8187],[82.78432,25.82389],[82.78559,25.8269],[82.78004,25.83],[82.76873,25.83105],[82.75449,25.83687],[82.76236,25.85043],[82.76509,25.85189],[82.76513,25.85638],[82.76346,25.85831],[82.76437,25.86016],[82.76294,25.86029],[82.76175,25.86512],[82.76307,25.87022],[82.76546,25.87173],[82.76778,25.87671],[82.77359,25.88139],[82.77028,25.88423],[82.76723,25.88289],[82.76464,25.88469],[82.76642,25.89621],[82.77025,25.89391],[82.77275,25.89632],[82.76936,25.89826],[82.76747,25.90789],[82.76222,25.91149],[82.76356,25.91496],[82.76171,25.91643],[82.76352,25.92284],[82.75536,25.92684],[82.7594,25.93366],[82.75115,25.93682],[82.75294,25.94357],[82.74741,25.94708],[82.74966,25.95447],[82.7478,25.95517],[82.74771,25.95982],[82.74444,25.96254],[82.74447,25.96652],[82.7356,25.97123],[82.73289,25.97741],[82.7342,25.9836],[82.73059,25.98242],[82.73072,25.9847],[82.72587,25.99154],[82.72473,25.99795],[82.7258,26.00475],[82.72229,26.00916],[82.72635,26.01699],[82.73169,26.01744],[82.72882,26.02147],[82.73118,26.02548],[82.72675,26.02437],[82.72401,26.02781],[82.71107,26.02422],[82.70306,26.02457],[82.70523,26.02762],[82.71114,26.02948],[82.71249,26.03293],[82.71904,26.03456],[82.72098,26.03285],[82.72189,26.03556],[82.71895,26.03786],[82.71739,26.04295],[82.70569,26.03975],[82.69856,26.04007],[82.70334,26.05054],[82.70883,26.04754],[82.71249,26.05052],[82.70757,26.06252],[82.70161,26.06738],[82.69988,26.06563],[82.69703,26.06716],[82.70658,26.09492],[82.70224,26.09541],[82.70173,26.09716],[82.6846,26.09819],[82.68401,26.10292],[82.67902,26.1051],[82.67684,26.10421],[82.6772,26.11039],[82.68092,26.11294],[82.67939,26.11524],[82.68023,26.11661],[82.67738,26.11839],[82.67664,26.12088],[82.6721,26.12047],[82.66747,26.12336],[82.67074,26.13099],[82.66717,26.13316],[82.66486,26.13781],[82.66555,26.14282],[82.66902,26.14533],[82.67297,26.14427],[82.67662,26.1454],[82.67868,26.1515],[82.67293,26.15334],[82.6686,26.1579],[82.66799,26.16111],[82.65959,26.16556],[82.65273,26.1664],[82.64973,26.15986],[82.64119,26.15954],[82.6377,26.16091],[82.63673,26.16168],[82.63909,26.16456],[82.6428,26.16552],[82.64727,26.16938],[82.64888,26.17422],[82.64371,26.1767],[82.64068,26.17221],[82.63596,26.17413],[82.63197,26.17066],[82.62299,26.17105],[82.62112,26.1741],[82.62242,26.18097],[82.61883,26.18373],[82.61606,26.18297],[82.61424,26.18955],[82.61098,26.19424],[82.60541,26.19815],[82.60078,26.19837]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"153","area_level":"District","area_name":"Jhansi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.9541,25.94595],[78.94866,25.94988],[78.93946,25.95113],[78.9371,25.95276],[78.93329,25.94818],[78.93885,25.94427],[78.93856,25.94237],[78.93609,25.94167],[78.93207,25.94745],[78.92748,25.94725],[78.92154,25.94065],[78.91671,25.94005],[78.91569,25.93797],[78.90825,25.9345],[78.90969,25.93153],[78.90576,25.92953],[78.90566,25.92562],[78.89859,25.91794],[78.88464,25.91393],[78.88337,25.90901],[78.88845,25.90422],[78.89115,25.89715],[78.89481,25.89517],[78.88698,25.88471],[78.88672,25.88291],[78.89168,25.88024],[78.88738,25.86849],[78.87621,25.87588],[78.86411,25.87141],[78.86195,25.86556],[78.85565,25.86086],[78.8506,25.85218],[78.85141,25.83846],[78.86209,25.84274],[78.8643,25.83594],[78.87258,25.83509],[78.87193,25.82811],[78.87424,25.82215],[78.87061,25.81679],[78.86997,25.80903],[78.87281,25.80832],[78.87244,25.80138],[78.87039,25.80137],[78.86708,25.79321],[78.86439,25.79308],[78.86364,25.79078],[78.85715,25.79182],[78.85553,25.79516],[78.84595,25.80078],[78.84753,25.80254],[78.84464,25.8036],[78.84753,25.80334],[78.84482,25.80433],[78.846,25.80541],[78.84473,25.80605],[78.84796,25.81517],[78.84555,25.82155],[78.81844,25.82901],[78.81487,25.82236],[78.81038,25.8169],[78.80777,25.81685],[78.80627,25.81309],[78.8092,25.80989],[78.81143,25.8096],[78.81145,25.80769],[78.81431,25.80704],[78.82046,25.81574],[78.82831,25.81434],[78.8333,25.80962],[78.82862,25.79571],[78.80829,25.80097],[78.80292,25.79208],[78.79785,25.78838],[78.79138,25.77581],[78.78597,25.76924],[78.78628,25.76472],[78.78288,25.75848],[78.77883,25.75787],[78.77628,25.75978],[78.77296,25.75861],[78.77208,25.75722],[78.77356,25.75527],[78.77081,25.74863],[78.75873,25.75452],[78.75286,25.75],[78.7557,25.73047],[78.76333,25.71993],[78.77478,25.717],[78.78363,25.70872],[78.79991,25.70507],[78.79998,25.70294],[78.79511,25.69978],[78.79557,25.69672],[78.80453,25.69228],[78.80716,25.68412],[78.8125,25.68105],[78.8167,25.67632],[78.81878,25.6692],[78.8157,25.66233],[78.81987,25.64857],[78.81613,25.63581],[78.81169,25.63208],[78.8126,25.62306],[78.81046,25.61945],[78.79799,25.61643],[78.79394,25.61242],[78.78236,25.61271],[78.77881,25.61091],[78.77397,25.61205],[78.76621,25.6102],[78.75032,25.60304],[78.74927,25.59877],[78.74215,25.59699],[78.73531,25.60101],[78.73177,25.60625],[78.72457,25.60216],[78.72065,25.60554],[78.71733,25.60533],[78.71598,25.6036],[78.71634,25.59953],[78.7042,25.59791],[78.70018,25.59507],[78.69942,25.59091],[78.69508,25.58783],[78.68731,25.58889],[78.67886,25.5853],[78.67489,25.57733],[78.6675,25.5747],[78.65867,25.55989],[78.6463,25.56075],[78.62419,25.56738],[78.6308,25.57893],[78.61814,25.58366],[78.61596,25.58353],[78.61078,25.57797],[78.61169,25.56987],[78.60155,25.56912],[78.59802,25.57069],[78.59243,25.56319],[78.59113,25.55834],[78.58774,25.5566],[78.58227,25.56138],[78.56921,25.56462],[78.56675,25.56256],[78.56316,25.56274],[78.56063,25.55905],[78.5587,25.56058],[78.55565,25.55928],[78.54466,25.56158],[78.54248,25.56295],[78.54219,25.56535],[78.5327,25.57166],[78.52837,25.56666],[78.52746,25.56801],[78.52366,25.56699],[78.51912,25.57029],[78.51275,25.56931],[78.50912,25.57254],[78.5066,25.57152],[78.50672,25.57297],[78.50206,25.57493],[78.49986,25.57416],[78.49766,25.57779],[78.49334,25.5787],[78.4871,25.57315],[78.48635,25.57436],[78.48266,25.57222],[78.48332,25.5708],[78.47864,25.56741],[78.47833,25.56468],[78.47537,25.56466],[78.46685,25.55932],[78.46567,25.55637],[78.46657,25.55337],[78.46983,25.55348],[78.46627,25.55118],[78.46469,25.54551],[78.4563,25.54806],[78.45096,25.55176],[78.44656,25.55943],[78.44762,25.56072],[78.44647,25.56146],[78.44937,25.56329],[78.4436,25.5632],[78.42828,25.55043],[78.42783,25.54539],[78.42635,25.54279],[78.42107,25.53992],[78.41934,25.53296],[78.42031,25.52403],[78.41906,25.51814],[78.42885,25.51154],[78.42853,25.50993],[78.42248,25.51003],[78.42059,25.50813],[78.41881,25.50902],[78.41681,25.5017],[78.4193,25.50039],[78.42869,25.48785],[78.42741,25.48485],[78.43131,25.47363],[78.42781,25.4712],[78.41649,25.47648],[78.41411,25.46979],[78.40386,25.4671],[78.40031,25.46355],[78.39722,25.45627],[78.39496,25.44421],[78.38095,25.44035],[78.37766,25.43681],[78.37643,25.43865],[78.36946,25.43833],[78.36219,25.44598],[78.3602,25.45147],[78.35454,25.45198],[78.34902,25.44281],[78.34991,25.44096],[78.34698,25.43528],[78.34179,25.43098],[78.3389,25.43102],[78.33939,25.42638],[78.34309,25.42002],[78.33884,25.40698],[78.34091,25.40283],[78.34053,25.39952],[78.33138,25.39075],[78.32237,25.38741],[78.31685,25.37867],[78.30794,25.3812],[78.30593,25.37798],[78.3008,25.35993],[78.30498,25.3605],[78.31605,25.35755],[78.31909,25.35496],[78.32806,25.35254],[78.3373,25.33639],[78.33755,25.33025],[78.34379,25.32846],[78.3387,25.32406],[78.3337,25.3226],[78.33055,25.319],[78.32935,25.3196],[78.32489,25.31595],[78.32274,25.31633],[78.31126,25.30519],[78.31173,25.3033],[78.3166,25.30184],[78.3197,25.29883],[78.32991,25.29649],[78.33397,25.29241],[78.35459,25.29225],[78.35011,25.27733],[78.35709,25.27314],[78.36055,25.27272],[78.36637,25.26673],[78.36877,25.26138],[78.37251,25.25991],[78.3598,25.24219],[78.36739,25.23685],[78.37296,25.23719],[78.37488,25.23924],[78.37852,25.23869],[78.37714,25.22784],[78.38206,25.22259],[78.39672,25.21691],[78.39796,25.21822],[78.4025,25.2176],[78.4049,25.21488],[78.41095,25.21267],[78.3993,25.20862],[78.39829,25.20538],[78.39138,25.20119],[78.39156,25.19894],[78.39466,25.19735],[78.39413,25.1935],[78.39608,25.18722],[78.41664,25.18353],[78.41636,25.17644],[78.42474,25.17208],[78.4234,25.16931],[78.44337,25.16548],[78.44608,25.16823],[78.45155,25.16893],[78.45825,25.16461],[78.45759,25.16277],[78.45187,25.15998],[78.44785,25.15271],[78.43206,25.15517],[78.4273,25.15399],[78.42737,25.14589],[78.44203,25.13094],[78.44795,25.12811],[78.44682,25.12177],[78.47179,25.13751],[78.48526,25.14393],[78.49366,25.15303],[78.49295,25.15532],[78.49546,25.1614],[78.5013,25.17063],[78.50842,25.17793],[78.51954,25.18146],[78.52963,25.18023],[78.52723,25.17718],[78.51016,25.16813],[78.52915,25.17718],[78.53727,25.18404],[78.55576,25.20921],[78.55582,25.21334],[78.55914,25.22028],[78.5678,25.23081],[78.56808,25.24084],[78.57826,25.25402],[78.57042,25.25794],[78.57204,25.25957],[78.56846,25.25978],[78.563,25.26368],[78.55972,25.26359],[78.54983,25.26776],[78.54527,25.26471],[78.54118,25.26568],[78.53731,25.26889],[78.53361,25.26837],[78.53084,25.27711],[78.53372,25.28063],[78.5318,25.28162],[78.53092,25.28465],[78.51665,25.27789],[78.51056,25.27678],[78.50393,25.28963],[78.48698,25.281],[78.48364,25.27736],[78.47289,25.27374],[78.46495,25.26659],[78.45049,25.26211],[78.43829,25.27458],[78.43659,25.2827],[78.43503,25.28416],[78.43893,25.28866],[78.44034,25.29547],[78.44519,25.29931],[78.45471,25.30124],[78.46709,25.29076],[78.47118,25.29034],[78.47295,25.2855],[78.47756,25.28948],[78.47693,25.29663],[78.47804,25.29852],[78.48434,25.3009],[78.49478,25.31308],[78.49717,25.31943],[78.5023,25.3209],[78.50298,25.3187],[78.5006,25.31378],[78.50359,25.30407],[78.50275,25.30087],[78.50657,25.29952],[78.5099,25.29555],[78.5202,25.29946],[78.53119,25.30002],[78.534,25.31013],[78.53754,25.31066],[78.55307,25.31964],[78.55007,25.32238],[78.54694,25.32198],[78.54386,25.32418],[78.54371,25.32603],[78.53964,25.32775],[78.54048,25.33011],[78.53705,25.33823],[78.54123,25.34554],[78.53064,25.35148],[78.532,25.35658],[78.53649,25.3602],[78.55184,25.3567],[78.55281,25.35294],[78.56138,25.34122],[78.56727,25.34074],[78.57083,25.3433],[78.57751,25.34384],[78.58329,25.34697],[78.58475,25.35338],[78.58779,25.35588],[78.58877,25.36597],[78.5857,25.37417],[78.57778,25.38124],[78.56924,25.37731],[78.56289,25.37726],[78.56354,25.38326],[78.56616,25.3871],[78.5665,25.39353],[78.57612,25.39073],[78.58145,25.38571],[78.58364,25.3877],[78.59019,25.38603],[78.59941,25.39256],[78.59843,25.39627],[78.60225,25.39916],[78.60111,25.409],[78.60667,25.4113],[78.60446,25.41351],[78.60967,25.41602],[78.61392,25.41458],[78.61938,25.41559],[78.62362,25.41347],[78.62575,25.40123],[78.631,25.3993],[78.63582,25.40069],[78.64493,25.41267],[78.64456,25.41947],[78.64096,25.42942],[78.64136,25.43349],[78.64321,25.43531],[78.65068,25.43637],[78.65398,25.43841],[78.65625,25.43779],[78.65983,25.44166],[78.66545,25.43978],[78.67041,25.44002],[78.68171,25.43322],[78.68987,25.44575],[78.69655,25.44299],[78.69961,25.44009],[78.6997,25.43701],[78.70257,25.43294],[78.71143,25.4281],[78.70906,25.42401],[78.70307,25.41894],[78.6749,25.39957],[78.67142,25.40507],[78.66831,25.40648],[78.66601,25.41581],[78.6589,25.4085],[78.65916,25.40579],[78.66362,25.40088],[78.66234,25.39633],[78.66629,25.39273],[78.65895,25.38529],[78.66384,25.38256],[78.67536,25.38115],[78.69467,25.37386],[78.6996,25.38189],[78.70301,25.37377],[78.70761,25.37193],[78.71405,25.37215],[78.7136,25.36962],[78.70791,25.36309],[78.70879,25.35199],[78.72412,25.34397],[78.72752,25.3443],[78.73096,25.34872],[78.738,25.34794],[78.74105,25.34498],[78.75278,25.34591],[78.75478,25.35147],[78.75997,25.35044],[78.77459,25.3531],[78.77444,25.35614],[78.76592,25.36915],[78.77366,25.37617],[78.75986,25.38166],[78.75692,25.38544],[78.76134,25.38594],[78.76517,25.39091],[78.76798,25.40003],[78.76479,25.40187],[78.75676,25.39506],[78.75,25.39385],[78.74815,25.39099],[78.74556,25.40281],[78.74686,25.40306],[78.74974,25.41106],[78.75811,25.4154],[78.76738,25.41496],[78.77495,25.41987],[78.77917,25.41925],[78.78251,25.41571],[78.78792,25.41986],[78.79581,25.41645],[78.79977,25.41927],[78.79812,25.42084],[78.7991,25.42289],[78.81974,25.41991],[78.82137,25.42258],[78.81047,25.43035],[78.80951,25.43422],[78.80297,25.43716],[78.78514,25.43578],[78.78212,25.4342],[78.77848,25.42917],[78.7734,25.42697],[78.7707,25.42285],[78.76236,25.4269],[78.75799,25.43208],[78.75611,25.43824],[78.75775,25.44025],[78.75383,25.44317],[78.75236,25.44671],[78.75,25.44858],[78.73745,25.44979],[78.73706,25.45499],[78.73507,25.45733],[78.73183,25.45806],[78.73274,25.48485],[78.73346,25.48943],[78.73635,25.49382],[78.74283,25.49878],[78.74627,25.49662],[78.74541,25.49582],[78.74772,25.49334],[78.74631,25.48942],[78.74784,25.4887],[78.74733,25.48476],[78.7572,25.48069],[78.75622,25.4786],[78.75821,25.47553],[78.76783,25.46943],[78.77104,25.47191],[78.7728,25.47627],[78.77493,25.47611],[78.77632,25.4784],[78.78681,25.4795],[78.79156,25.48342],[78.79669,25.48276],[78.8051,25.47533],[78.81825,25.47165],[78.81797,25.46751],[78.81046,25.46142],[78.80638,25.45447],[78.80917,25.45341],[78.81248,25.4566],[78.81426,25.45614],[78.81593,25.46176],[78.82061,25.46774],[78.83123,25.46118],[78.84089,25.4615],[78.83518,25.45479],[78.85489,25.44769],[78.85207,25.44549],[78.84826,25.44595],[78.84563,25.44331],[78.84184,25.44382],[78.84046,25.4417],[78.82576,25.44335],[78.8234,25.44261],[78.82073,25.43869],[78.82433,25.4342],[78.82357,25.43134],[78.82802,25.42825],[78.83163,25.43157],[78.83756,25.42804],[78.84415,25.42775],[78.84807,25.42974],[78.8484,25.43626],[78.85651,25.44668],[78.8607,25.445],[78.86388,25.45124],[78.86298,25.45614],[78.86547,25.45893],[78.86617,25.46567],[78.86031,25.47126],[78.8603,25.47925],[78.85744,25.48424],[78.85536,25.48448],[78.85565,25.48837],[78.85307,25.49084],[78.84019,25.49336],[78.84232,25.49891],[78.83282,25.4995],[78.83496,25.50582],[78.84154,25.51254],[78.85216,25.51387],[78.86648,25.51205],[78.87107,25.5132],[78.87611,25.51747],[78.88438,25.51558],[78.88706,25.52684],[78.88644,25.53243],[78.87791,25.53681],[78.87429,25.54095],[78.87749,25.54943],[78.88265,25.55396],[78.89524,25.55535],[78.90005,25.5522],[78.90564,25.55123],[78.9112,25.55516],[78.91711,25.55229],[78.91645,25.54555],[78.921,25.5373],[78.92337,25.53594],[78.92795,25.5498],[78.93087,25.5509],[78.9331,25.55534],[78.93937,25.55722],[78.94413,25.55627],[78.9433,25.55378],[78.95179,25.54879],[78.94755,25.54086],[78.95285,25.53753],[78.94685,25.52946],[78.93642,25.51979],[78.9272,25.52498],[78.92244,25.51567],[78.9199,25.5154],[78.92712,25.5074],[78.93499,25.50526],[78.933,25.49936],[78.93676,25.49542],[78.94109,25.49503],[78.9402,25.49334],[78.94216,25.49245],[78.93719,25.48933],[78.92698,25.49185],[78.92681,25.48996],[78.94391,25.48293],[78.93602,25.46161],[78.92399,25.45949],[78.92522,25.45712],[78.92351,25.45384],[78.91541,25.44626],[78.90897,25.44508],[78.90887,25.44242],[78.92165,25.43242],[78.93264,25.4303],[78.93151,25.42756],[78.93245,25.42404],[78.93827,25.42225],[78.94678,25.43593],[78.95037,25.43733],[78.95094,25.44055],[78.95348,25.43901],[78.958,25.44028],[78.9603,25.43715],[78.967,25.43462],[78.96974,25.43166],[78.96999,25.42323],[78.97623,25.41996],[78.96846,25.40467],[78.97204,25.40298],[78.9738,25.39789],[78.9733,25.39418],[78.96993,25.39011],[78.98751,25.38129],[78.98619,25.37807],[78.98933,25.37404],[78.9816,25.36954],[78.97896,25.36954],[78.97524,25.36607],[78.9654,25.37068],[78.96354,25.3689],[78.95916,25.37151],[78.95181,25.36067],[78.95044,25.36061],[78.945,25.35041],[78.93871,25.34698],[78.92699,25.35161],[78.92382,25.35483],[78.92325,25.35879],[78.91453,25.35762],[78.90134,25.36162],[78.89968,25.36861],[78.89657,25.37186],[78.89642,25.37411],[78.89908,25.37769],[78.91259,25.37712],[78.91594,25.38144],[78.92861,25.38021],[78.92857,25.37834],[78.93829,25.37483],[78.94212,25.38294],[78.94541,25.38561],[78.94737,25.38488],[78.95103,25.38969],[78.95237,25.38854],[78.95755,25.39368],[78.95647,25.39719],[78.95355,25.39815],[78.9533,25.39995],[78.9402,25.40038],[78.93598,25.39513],[78.93474,25.39518],[78.93506,25.39897],[78.93166,25.39988],[78.92969,25.39589],[78.91981,25.39697],[78.91776,25.3961],[78.91377,25.38425],[78.88024,25.38589],[78.88145,25.38226],[78.87464,25.3797],[78.87178,25.38095],[78.86786,25.37244],[78.86287,25.37117],[78.86154,25.36937],[78.85834,25.3644],[78.85953,25.36312],[78.85701,25.36292],[78.85161,25.35746],[78.84574,25.35555],[78.84731,25.35051],[78.84359,25.34947],[78.84104,25.34497],[78.8413,25.34264],[78.84483,25.34202],[78.84994,25.33494],[78.84616,25.32698],[78.84716,25.33678],[78.84261,25.33655],[78.84207,25.33262],[78.83936,25.3318],[78.83445,25.32322],[78.8219,25.3161],[78.82129,25.31151],[78.81719,25.30877],[78.8193,25.30694],[78.81437,25.30851],[78.81034,25.30781],[78.79824,25.31394],[78.79232,25.30809],[78.78778,25.29601],[78.79117,25.29589],[78.79393,25.29117],[78.79881,25.28917],[78.80459,25.29282],[78.81715,25.30668],[78.82273,25.3068],[78.82857,25.30274],[78.8278,25.30141],[78.82099,25.30135],[78.81845,25.29895],[78.82043,25.29609],[78.8174,25.29111],[78.81808,25.28313],[78.81293,25.28006],[78.81374,25.27762],[78.81088,25.27559],[78.80947,25.2706],[78.81865,25.26355],[78.82291,25.2562],[78.83274,25.25252],[78.83514,25.24291],[78.8428,25.22769],[78.84965,25.22879],[78.85217,25.23082],[78.85214,25.23732],[78.85392,25.24107],[78.85737,25.24396],[78.85629,25.25665],[78.85993,25.2577],[78.865,25.2647],[78.86661,25.28039],[78.87281,25.28042],[78.87498,25.27838],[78.8799,25.28598],[78.87176,25.29912],[78.87088,25.30335],[78.87446,25.30845],[78.86397,25.31022],[78.86262,25.31445],[78.86554,25.31844],[78.86757,25.32555],[78.88125,25.32492],[78.88037,25.33211],[78.882,25.34364],[78.88657,25.34339],[78.89266,25.33864],[78.89601,25.3397],[78.91184,25.33256],[78.91389,25.33497],[78.91619,25.33494],[78.92091,25.34359],[78.92254,25.3429],[78.93222,25.33594],[78.93006,25.3295],[78.92672,25.32724],[78.92793,25.32413],[78.93225,25.32517],[78.93276,25.32698],[78.93774,25.32718],[78.94631,25.3339],[78.94771,25.34213],[78.95318,25.34047],[78.95771,25.3459],[78.96062,25.34508],[78.96151,25.34345],[78.95727,25.32494],[78.95748,25.31625],[78.96029,25.30737],[78.95743,25.30224],[78.96387,25.29936],[78.9689,25.29259],[78.97561,25.28814],[78.97687,25.28292],[78.97992,25.27905],[78.97754,25.27673],[78.97353,25.27716],[78.95551,25.28276],[78.94868,25.27418],[78.95392,25.26934],[78.9546,25.26136],[78.94732,25.26179],[78.94514,25.25942],[78.93759,25.25969],[78.93293,25.2633],[78.92925,25.26982],[78.91703,25.27359],[78.91233,25.26924],[78.90841,25.25647],[78.90385,25.25247],[78.90239,25.24589],[78.89977,25.24312],[78.89338,25.24471],[78.88581,25.25375],[78.88092,25.25401],[78.87711,25.24507],[78.87176,25.23922],[78.86953,25.23111],[78.87036,25.22643],[78.87722,25.22374],[78.89058,25.21442],[78.88635,25.21],[78.8868,25.20604],[78.88283,25.19794],[78.87398,25.19137],[78.87064,25.18701],[78.87255,25.18656],[78.87344,25.18389],[78.87285,25.17541],[78.87437,25.17241],[78.87998,25.17106],[78.87865,25.16684],[78.8804,25.15762],[78.88191,25.15689],[78.88771,25.16101],[78.89028,25.16066],[78.89806,25.16862],[78.90296,25.17036],[78.90305,25.17492],[78.90965,25.17787],[78.91189,25.18084],[78.90754,25.18479],[78.92521,25.20445],[78.93433,25.21189],[78.93529,25.2107],[78.94656,25.21429],[78.95165,25.21288],[78.95386,25.21896],[78.95747,25.21746],[78.96308,25.21108],[78.96498,25.21718],[78.97029,25.21644],[78.97594,25.21198],[78.9806,25.21146],[78.98074,25.20532],[78.99277,25.19686],[79.00587,25.19505],[79.00537,25.20708],[79.00614,25.21224],[79.00742,25.212],[79.00103,25.22105],[79.00251,25.22795],[78.99923,25.23151],[79.00119,25.2337],[78.99466,25.23222],[78.98289,25.23425],[78.9846,25.23958],[78.98062,25.23994],[78.97608,25.23666],[78.97472,25.23729],[78.97484,25.24049],[78.97995,25.25452],[78.98522,25.25916],[78.98683,25.26414],[78.99493,25.26708],[78.99437,25.27316],[79.01215,25.27243],[79.01322,25.27405],[79.02285,25.2679],[79.02084,25.26444],[79.02561,25.26128],[79.02432,25.25723],[79.01799,25.24927],[79.02139,25.24538],[79.02177,25.24157],[79.02485,25.24087],[79.02613,25.24222],[79.02847,25.2406],[79.03387,25.24285],[79.03999,25.24268],[79.03365,25.23372],[79.06368,25.22176],[79.06373,25.21487],[79.06057,25.20964],[79.06195,25.20665],[79.06032,25.20107],[79.06242,25.20028],[79.06414,25.20169],[79.06432,25.19947],[79.06205,25.19904],[79.06098,25.19518],[79.06209,25.19333],[79.05967,25.19041],[79.05206,25.18743],[79.04859,25.19345],[79.05402,25.20169],[79.05233,25.20744],[79.04873,25.20609],[79.0445,25.20174],[79.04223,25.1967],[79.03091,25.18448],[79.03157,25.18035],[79.03469,25.17799],[79.03439,25.1741],[79.04004,25.1709],[79.03686,25.1666],[79.03184,25.164],[79.03688,25.16139],[79.03236,25.15645],[79.03342,25.1525],[79.02879,25.14178],[79.03076,25.13848],[79.03384,25.1372],[79.05023,25.13369],[79.0528,25.13816],[79.05548,25.139],[79.05559,25.14133],[79.06125,25.14489],[79.06299,25.14798],[79.06699,25.14834],[79.07026,25.15554],[79.07149,25.1702],[79.07388,25.17364],[79.07678,25.17429],[79.08141,25.18134],[79.08862,25.18435],[79.08815,25.18695],[79.09063,25.19081],[79.09545,25.18246],[79.09461,25.17663],[79.09585,25.1747],[79.11317,25.16451],[79.12609,25.16122],[79.116,25.13965],[79.12126,25.13425],[79.13213,25.12711],[79.12876,25.12488],[79.12352,25.11515],[79.12402,25.11078],[79.131,25.10915],[79.14017,25.10858],[79.14391,25.11487],[79.15772,25.11144],[79.15931,25.10744],[79.16127,25.10893],[79.16226,25.10737],[79.16429,25.1088],[79.1658,25.10719],[79.16887,25.10857],[79.17316,25.10782],[79.17544,25.10893],[79.1779,25.11558],[79.18134,25.11648],[79.186,25.11493],[79.18545,25.12066],[79.18729,25.12638],[79.17462,25.12821],[79.17727,25.13776],[79.17618,25.14006],[79.17732,25.14164],[79.18164,25.14144],[79.18315,25.14335],[79.18515,25.14202],[79.18612,25.1442],[79.19034,25.14331],[79.19221,25.14621],[79.19605,25.14284],[79.20431,25.13992],[79.20246,25.13251],[79.20524,25.12915],[79.20384,25.12561],[79.2136,25.12066],[79.21241,25.11399],[79.21503,25.11141],[79.21718,25.1108],[79.21803,25.11291],[79.22228,25.11504],[79.22737,25.122],[79.24037,25.11326],[79.24544,25.11398],[79.24809,25.11686],[79.24304,25.12298],[79.24611,25.1348],[79.24994,25.13871],[79.24922,25.1403],[79.23634,25.1405],[79.22416,25.14605],[79.23168,25.15126],[79.23335,25.1541],[79.24203,25.15853],[79.25151,25.15938],[79.25556,25.15786],[79.26053,25.15307],[79.26443,25.15234],[79.26646,25.14626],[79.26354,25.14071],[79.26881,25.13845],[79.2649,25.13387],[79.26404,25.12824],[79.2599,25.12526],[79.26842,25.1208],[79.27097,25.12073],[79.27267,25.12256],[79.27489,25.12169],[79.27772,25.11994],[79.27818,25.11743],[79.28255,25.11754],[79.2879,25.12778],[79.28711,25.13186],[79.29241,25.13053],[79.29661,25.13202],[79.30804,25.12988],[79.30969,25.13421],[79.31365,25.13624],[79.31526,25.14715],[79.32313,25.14983],[79.31363,25.16188],[79.31126,25.17051],[79.30746,25.176],[79.29201,25.18428],[79.28462,25.19119],[79.28176,25.20586],[79.28596,25.22327],[79.28448,25.23503],[79.27722,25.24802],[79.27821,25.25327],[79.27684,25.25761],[79.26676,25.26593],[79.26282,25.27339],[79.26753,25.28462],[79.2699,25.30833],[79.27833,25.32015],[79.28093,25.33642],[79.28601,25.34444],[79.28886,25.3532],[79.29526,25.35911],[79.29502,25.36541],[79.29713,25.36808],[79.2987,25.37707],[79.30258,25.3795],[79.30328,25.38244],[79.31106,25.38487],[79.31371,25.38977],[79.31898,25.393],[79.319,25.39639],[79.32305,25.40113],[79.33292,25.39998],[79.34019,25.40194],[79.33982,25.41671],[79.33263,25.42786],[79.33283,25.43358],[79.34589,25.44412],[79.35516,25.45493],[79.36306,25.45698],[79.3668,25.46008],[79.36871,25.46746],[79.36117,25.47959],[79.36211,25.48521],[79.36763,25.49073],[79.36795,25.49345],[79.37678,25.49845],[79.38535,25.50619],[79.38515,25.51282],[79.38787,25.52209],[79.39943,25.52863],[79.40801,25.53139],[79.4109,25.53738],[79.40941,25.54719],[79.39731,25.5633],[79.40115,25.56854],[79.40641,25.57095],[79.4172,25.57213],[79.42001,25.57448],[79.41937,25.57634],[79.41666,25.57972],[79.41191,25.58136],[79.39507,25.57386],[79.38885,25.57387],[79.38599,25.57626],[79.37582,25.59408],[79.37534,25.59734],[79.36892,25.60275],[79.36863,25.60865],[79.37493,25.61519],[79.37513,25.6214],[79.37239,25.62448],[79.3618,25.62779],[79.35527,25.6439],[79.36009,25.64905],[79.36669,25.65301],[79.3841,25.64594],[79.39813,25.6455],[79.40344,25.65038],[79.40245,25.65548],[79.39597,25.66055],[79.3894,25.6615],[79.38364,25.6602],[79.37894,25.66282],[79.3773,25.66723],[79.37958,25.67219],[79.38588,25.67815],[79.38743,25.6833],[79.38364,25.68901],[79.37251,25.69286],[79.36884,25.70096],[79.36857,25.71085],[79.37061,25.71509],[79.37902,25.72155],[79.39129,25.72642],[79.39814,25.73149],[79.39966,25.7382],[79.39151,25.74365],[79.37648,25.74444],[79.3751,25.74719],[79.37779,25.75661],[79.37523,25.76264],[79.37141,25.76502],[79.36006,25.76572],[79.35824,25.76928],[79.35957,25.77208],[79.37035,25.77544],[79.39024,25.77284],[79.39466,25.77608],[79.40194,25.78611],[79.40185,25.78897],[79.39627,25.79555],[79.38942,25.78999],[79.37571,25.78385],[79.35335,25.79069],[79.33616,25.77558],[79.33293,25.76963],[79.32406,25.7664],[79.3168,25.77052],[79.31213,25.77567],[79.2943,25.78134],[79.29133,25.78506],[79.29149,25.7894],[79.28957,25.79395],[79.29048,25.79636],[79.30244,25.8008],[79.29854,25.80326],[79.29805,25.81064],[79.29176,25.81494],[79.29246,25.82036],[79.27876,25.81254],[79.27165,25.7963],[79.26527,25.78979],[79.26293,25.78933],[79.25679,25.7919],[79.24803,25.8038],[79.24225,25.80648],[79.23908,25.80531],[79.23207,25.79701],[79.2149,25.78913],[79.21087,25.78876],[79.20187,25.79435],[79.19851,25.79903],[79.19317,25.79963],[79.18949,25.8034],[79.18444,25.80275],[79.17434,25.80546],[79.17028,25.80811],[79.16712,25.80717],[79.16378,25.81214],[79.14929,25.80937],[79.1352,25.80889],[79.12698,25.81724],[79.11509,25.82429],[79.12224,25.83282],[79.12548,25.84628],[79.12055,25.84794],[79.12663,25.86392],[79.11786,25.86623],[79.11497,25.85739],[79.10573,25.85525],[79.10242,25.85558],[79.1014,25.86001],[79.09615,25.86243],[79.09712,25.86654],[79.09975,25.86597],[79.1056,25.87615],[79.10539,25.88377],[79.1072,25.89121],[79.10378,25.89178],[79.10095,25.88839],[79.09167,25.88887],[79.08732,25.88667],[79.07763,25.89015],[79.07316,25.87931],[79.07176,25.87121],[79.07184,25.86767],[79.0772,25.86625],[79.07637,25.86254],[79.07511,25.85929],[79.06848,25.86008],[79.06533,25.8558],[79.05345,25.85962],[79.03846,25.86823],[79.04185,25.87245],[79.04334,25.87936],[79.04192,25.88161],[79.03987,25.88272],[79.0381,25.88172],[79.03657,25.88443],[79.03295,25.88585],[79.03432,25.88817],[79.03148,25.89022],[79.03338,25.89404],[79.03159,25.89533],[79.03207,25.89832],[79.02864,25.89981],[79.03143,25.90403],[79.03956,25.90047],[79.0468,25.89996],[79.04496,25.89659],[79.05263,25.89223],[79.05489,25.89394],[79.05376,25.90327],[79.05546,25.90723],[79.06442,25.90587],[79.06823,25.90707],[79.07953,25.90462],[79.08435,25.91709],[79.08238,25.91897],[79.06846,25.92124],[79.05524,25.92674],[79.04621,25.92854],[79.03737,25.93658],[79.03003,25.93723],[79.02635,25.93563],[79.01922,25.93996],[79.0058,25.93284],[78.99381,25.93995],[78.97725,25.94661],[78.96905,25.93568],[78.9541,25.94595]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"154","area_level":"District","area_name":"Amroha","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.65679,29.14532],[78.65063,29.15184],[78.64529,29.1547],[78.6431,29.15915],[78.63587,29.15419],[78.63121,29.14889],[78.63109,29.14487],[78.63283,29.14236],[78.65032,29.1309],[78.65101,29.12987],[78.64781,29.1247],[78.65022,29.123],[78.63998,29.11009],[78.63026,29.10774],[78.62611,29.10951],[78.62218,29.10623],[78.61299,29.10269],[78.60664,29.09693],[78.6161,29.08995],[78.61608,29.08561],[78.61232,29.08257],[78.60922,29.0815],[78.6071,29.08249],[78.60708,29.0802],[78.60264,29.07613],[78.59964,29.0784],[78.59605,29.07646],[78.58845,29.0685],[78.58493,29.07144],[78.58121,29.06983],[78.57857,29.07241],[78.57055,29.07268],[78.56423,29.07698],[78.56177,29.07449],[78.56263,29.06977],[78.55866,29.07146],[78.556,29.06676],[78.5518,29.06836],[78.54652,29.0612],[78.53746,29.06341],[78.53484,29.06471],[78.5342,29.06697],[78.52466,29.06721],[78.52175,29.06495],[78.51737,29.06841],[78.51623,29.06414],[78.50949,29.05805],[78.50618,29.05259],[78.50379,29.05188],[78.5012,29.04788],[78.49367,29.05022],[78.49063,29.04234],[78.4883,29.04323],[78.48903,29.04487],[78.48385,29.05077],[78.47699,29.05411],[78.47286,29.0507],[78.45689,29.05615],[78.4556,29.05499],[78.44953,29.05819],[78.45026,29.05606],[78.44773,29.05321],[78.44522,29.05459],[78.44141,29.05022],[78.43851,29.05163],[78.43544,29.04755],[78.43141,29.04966],[78.42496,29.04118],[78.42282,29.04218],[78.42035,29.03788],[78.41746,29.03855],[78.41381,29.03474],[78.41109,29.0378],[78.40001,29.02771],[78.39533,29.03009],[78.39142,29.02919],[78.38659,29.02083],[78.3838,29.0232],[78.38122,29.0204],[78.37261,29.02686],[78.36748,29.02211],[78.36458,29.02461],[78.34679,29.0174],[78.34229,29.01933],[78.33762,29.01838],[78.32013,29.03044],[78.31431,29.02258],[78.30906,29.02383],[78.30197,29.02181],[78.29334,29.02535],[78.29086,29.02326],[78.28843,29.0248],[78.28982,29.02616],[78.28649,29.02802],[78.29232,29.03226],[78.28577,29.03627],[78.27562,29.02405],[78.26858,29.02662],[78.25846,29.03489],[78.25433,29.03468],[78.25014,29.03199],[78.24951,29.03362],[78.25239,29.03566],[78.24582,29.03647],[78.23835,29.03199],[78.23352,29.0349],[78.2321,29.03354],[78.22864,29.03543],[78.22352,29.03556],[78.22025,29.0302],[78.21754,29.03118],[78.21512,29.02951],[78.20839,29.0343],[78.20524,29.0393],[78.19614,29.04137],[78.19084,29.04733],[78.18446,29.04105],[78.18235,29.04436],[78.17438,29.05026],[78.16658,29.05382],[78.16158,29.05362],[78.1612,29.055],[78.15722,29.05335],[78.15615,29.04866],[78.1518,29.04743],[78.15146,29.04483],[78.14799,29.05215],[78.14082,29.05026],[78.1363,29.04394],[78.13454,29.04417],[78.13661,29.0532],[78.13472,29.06436],[78.12613,29.06728],[78.12205,29.07074],[78.10474,29.0715],[78.07165,29.08298],[78.06034,29.07731],[78.05858,29.07233],[78.04991,29.07031],[78.0496,29.0683],[78.05395,29.05989],[78.05676,29.05835],[78.06218,29.05049],[78.06886,29.04816],[78.07125,29.02794],[78.07569,29.02657],[78.07394,29.02392],[78.07566,29.02065],[78.07385,29.01533],[78.07621,29.00725],[78.07309,28.99785],[78.07721,28.97754],[78.08204,28.96972],[78.08722,28.96609],[78.08946,28.95763],[78.09663,28.9513],[78.09444,28.94543],[78.08961,28.94389],[78.08679,28.9407],[78.08148,28.94198],[78.07426,28.93555],[78.07642,28.93104],[78.08209,28.92607],[78.09997,28.9321],[78.10194,28.92815],[78.10096,28.92762],[78.10305,28.91756],[78.10853,28.91771],[78.09971,28.90178],[78.088,28.89491],[78.08831,28.89299],[78.09135,28.89444],[78.0926,28.89296],[78.08785,28.89097],[78.09445,28.88325],[78.10104,28.87961],[78.1208,28.8784],[78.11625,28.86557],[78.12588,28.85422],[78.12877,28.85397],[78.13108,28.84758],[78.14291,28.84152],[78.14427,28.83336],[78.14187,28.82863],[78.14268,28.82114],[78.1402,28.81804],[78.13146,28.81593],[78.12705,28.80733],[78.12767,28.80248],[78.13108,28.79565],[78.13034,28.79068],[78.13337,28.78927],[78.13474,28.78608],[78.13228,28.78154],[78.13586,28.77316],[78.13938,28.77253],[78.13792,28.76921],[78.13857,28.76621],[78.15004,28.75584],[78.16287,28.75255],[78.16684,28.74541],[78.16543,28.74067],[78.17097,28.74067],[78.1677,28.73426],[78.1693,28.73177],[78.16848,28.72246],[78.16339,28.72063],[78.16689,28.71479],[78.17072,28.71191],[78.18039,28.71109],[78.18913,28.70065],[78.18917,28.68979],[78.19428,28.68255],[78.19969,28.68098],[78.20148,28.67712],[78.20152,28.66542],[78.19837,28.66354],[78.19827,28.66011],[78.20071,28.65733],[78.2111,28.654],[78.2117,28.62882],[78.20665,28.62031],[78.20095,28.61988],[78.19854,28.61046],[78.19912,28.60373],[78.20446,28.60255],[78.20578,28.59658],[78.20311,28.58115],[78.20436,28.57739],[78.20015,28.5707],[78.19968,28.56354],[78.20391,28.55359],[78.20503,28.54733],[78.20341,28.54512],[78.20629,28.53582],[78.20938,28.52933],[78.21512,28.52309],[78.2162,28.51934],[78.22142,28.51517],[78.23335,28.51014],[78.24466,28.50989],[78.25005,28.51139],[78.25492,28.50477],[78.26297,28.50098],[78.26171,28.49666],[78.26913,28.48929],[78.25892,28.48061],[78.25466,28.47882],[78.25587,28.46448],[78.25804,28.46001],[78.26211,28.45654],[78.26672,28.45504],[78.2723,28.45623],[78.27699,28.45364],[78.28863,28.45101],[78.3038,28.43773],[78.30932,28.43987],[78.31804,28.43321],[78.32163,28.43455],[78.32722,28.43403],[78.33188,28.43641],[78.33844,28.43697],[78.34753,28.44647],[78.34829,28.44958],[78.36506,28.45999],[78.37242,28.46973],[78.38108,28.47176],[78.38479,28.46951],[78.39103,28.47559],[78.39657,28.47283],[78.40141,28.47382],[78.40159,28.47205],[78.40436,28.47148],[78.40385,28.46939],[78.40551,28.4702],[78.40887,28.46733],[78.41141,28.46232],[78.41614,28.47078],[78.42464,28.48112],[78.42408,28.48812],[78.4198,28.49442],[78.42499,28.50578],[78.4275,28.50772],[78.41375,28.51914],[78.41717,28.52208],[78.42178,28.53161],[78.42494,28.53214],[78.43485,28.54137],[78.42816,28.55045],[78.42306,28.55183],[78.42239,28.55346],[78.42975,28.56211],[78.42799,28.56406],[78.42916,28.56569],[78.42737,28.56651],[78.42952,28.57384],[78.4282,28.57702],[78.43909,28.58577],[78.43917,28.58854],[78.42486,28.5969],[78.43303,28.60766],[78.41929,28.61609],[78.41664,28.61347],[78.41205,28.61375],[78.41204,28.61702],[78.41007,28.61886],[78.40913,28.63744],[78.40461,28.64639],[78.39988,28.64905],[78.40567,28.65651],[78.41513,28.66426],[78.41841,28.6607],[78.41993,28.66139],[78.4241,28.67111],[78.41944,28.6748],[78.42233,28.68198],[78.415,28.68768],[78.4067,28.68953],[78.41697,28.698],[78.41316,28.70154],[78.41776,28.707],[78.4168,28.70821],[78.418,28.70952],[78.41434,28.71536],[78.41694,28.71694],[78.41275,28.72039],[78.41764,28.72923],[78.40984,28.73387],[78.40913,28.73796],[78.41414,28.74344],[78.41032,28.74733],[78.41771,28.75319],[78.41904,28.75198],[78.42207,28.75409],[78.41979,28.75743],[78.4211,28.76581],[78.40934,28.77361],[78.4092,28.77735],[78.40633,28.78069],[78.40802,28.78284],[78.41236,28.78636],[78.41416,28.78479],[78.41649,28.78518],[78.42227,28.79077],[78.42981,28.78628],[78.42896,28.784],[78.43623,28.77952],[78.44578,28.79181],[78.4522,28.78228],[78.45926,28.77921],[78.46021,28.77728],[78.46329,28.77859],[78.47065,28.7767],[78.47569,28.77767],[78.47477,28.77932],[78.47636,28.78184],[78.48311,28.78837],[78.4896,28.78246],[78.49106,28.78271],[78.49153,28.78018],[78.4928,28.78265],[78.50076,28.77617],[78.50683,28.78303],[78.50696,28.78766],[78.5191,28.78038],[78.52508,28.78739],[78.53208,28.78519],[78.53635,28.78909],[78.54719,28.7841],[78.54936,28.7899],[78.54807,28.79057],[78.54925,28.79479],[78.55123,28.79326],[78.55522,28.79434],[78.56014,28.80034],[78.5672,28.79594],[78.5732,28.80195],[78.5771,28.79979],[78.58504,28.80569],[78.58641,28.80436],[78.58807,28.80567],[78.59422,28.80184],[78.60331,28.8095],[78.6093,28.80642],[78.61185,28.81038],[78.61728,28.80932],[78.62225,28.80582],[78.62495,28.81052],[78.62237,28.81338],[78.62716,28.81792],[78.61822,28.82371],[78.63294,28.8431],[78.64019,28.8373],[78.64394,28.84151],[78.64782,28.84298],[78.6521,28.84879],[78.65464,28.84643],[78.6589,28.84834],[78.65843,28.85324],[78.65485,28.85108],[78.65705,28.8565],[78.6615,28.859],[78.66444,28.85586],[78.66709,28.86073],[78.67023,28.86275],[78.66899,28.86663],[78.67057,28.87275],[78.67543,28.87777],[78.67808,28.87544],[78.68255,28.87637],[78.69166,28.88741],[78.68635,28.89001],[78.69947,28.90548],[78.7031,28.90332],[78.70587,28.90681],[78.70755,28.91052],[78.70568,28.91174],[78.70502,28.91505],[78.68332,28.92476],[78.68787,28.92966],[78.69036,28.93542],[78.69198,28.93369],[78.69351,28.93489],[78.69922,28.9328],[78.70171,28.93725],[78.69922,28.93832],[78.69963,28.94323],[78.70332,28.942],[78.7067,28.94534],[78.70835,28.94461],[78.71901,28.95754],[78.70981,28.96394],[78.707,28.96193],[78.69569,28.97403],[78.69647,28.97951],[78.67727,28.99187],[78.67543,28.9967],[78.67822,29.00506],[78.68164,29.00421],[78.68779,29.00808],[78.68735,29.01328],[78.68384,29.01547],[78.6869,29.02102],[78.68127,29.02817],[78.6929,29.04139],[78.69784,29.04582],[78.70225,29.04721],[78.69907,29.05267],[78.68815,29.05813],[78.68507,29.06361],[78.69794,29.0682],[78.70434,29.07507],[78.70222,29.07981],[78.69837,29.07866],[78.69093,29.08012],[78.67836,29.07374],[78.66357,29.07561],[78.66464,29.07733],[78.65849,29.08388],[78.66078,29.08412],[78.66444,29.08926],[78.6753,29.09784],[78.67234,29.10813],[78.67017,29.10841],[78.67205,29.11905],[78.67712,29.12197],[78.66961,29.12505],[78.67669,29.13351],[78.67381,29.14313],[78.66225,29.15244],[78.65798,29.15463],[78.65748,29.15112],[78.65941,29.1467],[78.65757,29.1445],[78.65679,29.14532]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"155","area_level":"District","area_name":"Kannauj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.42412,27.22589],[79.42291,27.22802],[79.41973,27.22869],[79.41728,27.22687],[79.41787,27.22527],[79.41501,27.22608],[79.41145,27.22351],[79.41032,27.22575],[79.40669,27.22301],[79.41099,27.2114],[79.40926,27.21334],[79.40788,27.21197],[79.40762,27.2048],[79.40336,27.20683],[79.40041,27.20245],[79.4031,27.19997],[79.40243,27.19819],[79.39575,27.197],[79.39807,27.19028],[79.39021,27.18282],[79.39379,27.1783],[79.39608,27.16973],[79.39294,27.16596],[79.39496,27.16366],[79.39245,27.15882],[79.38882,27.16044],[79.38962,27.15644],[79.40052,27.14748],[79.41239,27.14124],[79.41289,27.13711],[79.40759,27.13201],[79.405,27.12669],[79.3941,27.12217],[79.38884,27.12388],[79.38766,27.11715],[79.38383,27.1174],[79.38216,27.11471],[79.3857,27.1137],[79.39197,27.11733],[79.39409,27.11663],[79.39049,27.10896],[79.39214,27.1047],[79.39169,27.10151],[79.38996,27.10044],[79.39683,27.09489],[79.4094,27.09759],[79.42019,27.0941],[79.42223,27.09532],[79.42205,27.09693],[79.42672,27.09867],[79.43642,27.09503],[79.43629,27.09167],[79.43166,27.08723],[79.43265,27.08514],[79.42842,27.08244],[79.42772,27.08124],[79.429,27.08068],[79.42628,27.07713],[79.43316,27.06841],[79.43066,27.06848],[79.43106,27.06526],[79.42616,27.06456],[79.42116,27.0589],[79.41711,27.06087],[79.41442,27.05933],[79.41242,27.06078],[79.40921,27.05864],[79.40868,27.0555],[79.4056,27.05736],[79.40104,27.05543],[79.40183,27.05335],[79.39849,27.04569],[79.39605,27.04387],[79.39736,27.04358],[79.39778,27.04052],[79.40206,27.03826],[79.39906,27.03157],[79.38861,27.01959],[79.38556,27.00997],[79.38062,27.00401],[79.3829,26.99713],[79.38142,26.98791],[79.37515,26.9819],[79.37093,26.98062],[79.3715,26.97816],[79.36918,26.97534],[79.35506,26.9654],[79.35509,26.95833],[79.3435,26.96235],[79.33559,26.95913],[79.32497,26.96037],[79.31694,26.95215],[79.31699,26.94368],[79.33002,26.94061],[79.33806,26.93619],[79.33981,26.93233],[79.3521,26.93601],[79.35897,26.94738],[79.36285,26.94662],[79.37417,26.93817],[79.38049,26.93728],[79.38898,26.9324],[79.39281,26.92669],[79.3998,26.93058],[79.40036,26.93655],[79.41547,26.93415],[79.42489,26.93626],[79.43012,26.94176],[79.43698,26.9414],[79.43599,26.93658],[79.44098,26.93385],[79.43443,26.93394],[79.43412,26.92918],[79.43974,26.93086],[79.44214,26.92925],[79.44774,26.93057],[79.45451,26.9138],[79.45569,26.91317],[79.45637,26.91552],[79.45897,26.91567],[79.45546,26.9035],[79.4572,26.90507],[79.45946,26.90256],[79.46659,26.90695],[79.47557,26.89623],[79.47859,26.89584],[79.47865,26.89916],[79.48229,26.90005],[79.48172,26.89506],[79.48806,26.89201],[79.49041,26.88704],[79.49241,26.88738],[79.49246,26.8857],[79.49646,26.88229],[79.50082,26.88324],[79.50491,26.88199],[79.50993,26.87907],[79.51238,26.87479],[79.51719,26.87904],[79.52151,26.8803],[79.52868,26.87156],[79.53758,26.8757],[79.55073,26.87022],[79.5596,26.85996],[79.57011,26.86052],[79.57032,26.86196],[79.57642,26.86423],[79.58266,26.86466],[79.58298,26.86582],[79.57934,26.86806],[79.58013,26.87366],[79.58411,26.87575],[79.58995,26.883],[79.59537,26.88429],[79.59861,26.88681],[79.59993,26.8925],[79.61381,26.89347],[79.62373,26.88475],[79.62604,26.88512],[79.62919,26.88938],[79.63604,26.89336],[79.64576,26.89341],[79.64792,26.89481],[79.66552,26.88705],[79.66219,26.88324],[79.66154,26.8783],[79.66361,26.87572],[79.66155,26.86804],[79.66486,26.86585],[79.67433,26.86455],[79.67397,26.86305],[79.69,26.84906],[79.68937,26.84752],[79.70572,26.8372],[79.7011,26.82344],[79.70524,26.82208],[79.71643,26.81354],[79.71335,26.80938],[79.7215,26.80445],[79.72564,26.804],[79.73969,26.81279],[79.74086,26.80982],[79.7462,26.80643],[79.75089,26.79819],[79.75568,26.79535],[79.75252,26.78855],[79.75686,26.78274],[79.77057,26.77999],[79.77329,26.77504],[79.7719,26.77269],[79.7768,26.76893],[79.77828,26.7719],[79.78535,26.77495],[79.78869,26.7747],[79.79848,26.78303],[79.80579,26.78255],[79.80954,26.78441],[79.81724,26.77866],[79.81726,26.77559],[79.82402,26.773],[79.82667,26.77371],[79.8342,26.77165],[79.84163,26.77344],[79.84973,26.78304],[79.86175,26.7914],[79.86128,26.79293],[79.86431,26.79658],[79.86413,26.80027],[79.85022,26.80408],[79.85715,26.82754],[79.86653,26.82598],[79.87134,26.82157],[79.88014,26.81825],[79.88927,26.81091],[79.89437,26.81632],[79.89718,26.81683],[79.89335,26.82348],[79.89362,26.82805],[79.89158,26.82833],[79.89249,26.83194],[79.89077,26.83519],[79.89217,26.83763],[79.89096,26.84245],[79.8936,26.84907],[79.89714,26.84998],[79.90748,26.84622],[79.90934,26.84811],[79.91557,26.84825],[79.9228,26.85125],[79.92785,26.85541],[79.93205,26.84948],[79.93416,26.85008],[79.94272,26.84527],[79.95434,26.85661],[79.96211,26.85862],[79.95096,26.86856],[79.93847,26.87643],[79.94729,26.88323],[79.94803,26.88623],[79.9467,26.88826],[79.94966,26.89075],[79.94136,26.8991],[79.94436,26.90075],[79.94405,26.90442],[79.94821,26.91099],[79.94743,26.91404],[79.95086,26.91603],[79.94934,26.91928],[79.95144,26.92058],[79.94669,26.92414],[79.94182,26.92246],[79.94081,26.92384],[79.94365,26.92866],[79.94404,26.936],[79.94175,26.93978],[79.94467,26.94533],[79.95204,26.94779],[79.95706,26.95235],[79.96042,26.9528],[79.96251,26.94678],[79.97274,26.94565],[79.97385,26.94215],[79.98016,26.93732],[79.97689,26.93386],[79.98381,26.92992],[79.98808,26.93662],[79.99125,26.93534],[79.9934,26.93869],[79.98671,26.94097],[79.97876,26.94921],[79.99323,26.96338],[80.00062,26.96001],[80.00579,26.9536],[80.00847,26.95271],[80.01551,26.95551],[80.0216,26.96294],[80.01402,26.98339],[80.00969,26.98747],[80.00231,27.00082],[79.98788,27.01078],[79.9919,27.01875],[79.99161,27.02286],[79.98954,27.03239],[79.98453,27.037],[79.99844,27.05637],[79.99617,27.05402],[79.99253,27.0619],[79.98932,27.06426],[79.98123,27.06428],[79.97062,27.06168],[79.96772,27.06472],[79.96617,27.07039],[79.96109,27.07365],[79.9605,27.07661],[79.95781,27.07582],[79.94216,27.08532],[79.94124,27.08969],[79.94649,27.09009],[79.95212,27.0958],[79.9496,27.09967],[79.9417,27.09879],[79.94095,27.10311],[79.94467,27.10569],[79.94967,27.10607],[79.95202,27.11378],[79.94653,27.11946],[79.94398,27.12639],[79.93089,27.14318],[79.92519,27.14608],[79.91037,27.13459],[79.89558,27.14881],[79.88252,27.14947],[79.8714,27.14603],[79.85333,27.15063],[79.85946,27.16158],[79.85133,27.16156],[79.84068,27.16676],[79.83606,27.17228],[79.825,27.1677],[79.82122,27.16864],[79.81421,27.17366],[79.80456,27.17127],[79.7892,27.18349],[79.76548,27.19604],[79.7609,27.20212],[79.75654,27.20359],[79.75321,27.20275],[79.73487,27.21518],[79.73016,27.22033],[79.72641,27.21907],[79.72165,27.22086],[79.71812,27.21168],[79.70957,27.20728],[79.70364,27.21008],[79.70103,27.21461],[79.69761,27.21564],[79.6933,27.20879],[79.69198,27.20352],[79.68718,27.20118],[79.68479,27.19737],[79.68045,27.19759],[79.67776,27.19352],[79.67714,27.19169],[79.67951,27.18946],[79.67801,27.18638],[79.67909,27.18496],[79.67725,27.1845],[79.67764,27.182],[79.6748,27.18138],[79.67792,27.17959],[79.67839,27.17694],[79.67606,27.17632],[79.67259,27.16949],[79.67126,27.16856],[79.66898,27.1699],[79.66848,27.16645],[79.66357,27.16855],[79.6616,27.16582],[79.65881,27.16519],[79.65307,27.17128],[79.6487,27.17004],[79.64727,27.17385],[79.63486,27.17789],[79.63305,27.18019],[79.63421,27.18401],[79.63244,27.18539],[79.62772,27.18595],[79.62587,27.1843],[79.61463,27.18793],[79.60922,27.18668],[79.60505,27.18767],[79.60372,27.18582],[79.60584,27.18335],[79.59986,27.17234],[79.5966,27.17264],[79.5926,27.16847],[79.58621,27.16757],[79.58163,27.16269],[79.57921,27.16353],[79.57569,27.16195],[79.57703,27.15949],[79.56754,27.15804],[79.56534,27.15977],[79.56149,27.15722],[79.55651,27.15678],[79.55302,27.1592],[79.55339,27.16406],[79.55,27.16697],[79.54774,27.16699],[79.54537,27.17093],[79.53977,27.1747],[79.53948,27.17812],[79.53683,27.17978],[79.53611,27.18409],[79.53417,27.18465],[79.53293,27.18908],[79.53168,27.19002],[79.52907,27.18711],[79.52757,27.18829],[79.52872,27.18983],[79.52489,27.19036],[79.5264,27.19121],[79.52471,27.19424],[79.52901,27.19402],[79.52943,27.19567],[79.52131,27.19966],[79.52113,27.20097],[79.52387,27.20236],[79.51912,27.20857],[79.50603,27.2045],[79.50748,27.20953],[79.50048,27.20747],[79.48963,27.21441],[79.48478,27.20806],[79.48337,27.20874],[79.48272,27.2071],[79.48073,27.20761],[79.47723,27.2054],[79.47278,27.20746],[79.47456,27.207],[79.47539,27.20983],[79.47119,27.21325],[79.46534,27.21321],[79.46951,27.21247],[79.46639,27.20968],[79.46311,27.21222],[79.46089,27.20839],[79.4591,27.21],[79.45971,27.21307],[79.45812,27.20982],[79.45708,27.21023],[79.45524,27.2149],[79.44997,27.21123],[79.44934,27.21223],[79.45146,27.21418],[79.4496,27.21564],[79.44377,27.21208],[79.43935,27.21341],[79.43886,27.21055],[79.43797,27.21459],[79.43527,27.215],[79.43498,27.21305],[79.43191,27.21277],[79.43521,27.21646],[79.43385,27.21743],[79.42945,27.21298],[79.43017,27.21615],[79.42709,27.21796],[79.4292,27.22177],[79.42834,27.2235],[79.42421,27.22124],[79.42307,27.22213],[79.42412,27.22589]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"156","area_level":"District","area_name":"Kanpur Dehat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.88464,26.81443],[79.86419,26.82716],[79.85715,26.82754],[79.85022,26.80408],[79.86413,26.80027],[79.86431,26.79658],[79.86128,26.79293],[79.86175,26.7914],[79.84973,26.78304],[79.83972,26.77257],[79.8342,26.77165],[79.82667,26.77371],[79.82402,26.773],[79.81726,26.77559],[79.81724,26.77866],[79.80954,26.78441],[79.80579,26.78255],[79.79848,26.78303],[79.78869,26.7747],[79.78535,26.77495],[79.77828,26.7719],[79.7768,26.76893],[79.7719,26.77269],[79.77329,26.77504],[79.77057,26.77999],[79.75686,26.78274],[79.74771,26.77186],[79.74698,26.76648],[79.74442,26.7645],[79.73859,26.76647],[79.73046,26.76563],[79.7229,26.75173],[79.72049,26.75293],[79.71869,26.74947],[79.71146,26.74788],[79.70229,26.74872],[79.69817,26.7474],[79.69626,26.74253],[79.69234,26.74384],[79.67467,26.74389],[79.67413,26.73878],[79.67873,26.73503],[79.69051,26.73172],[79.69129,26.72812],[79.69359,26.7281],[79.69643,26.71747],[79.70171,26.71551],[79.70331,26.71191],[79.7114,26.70493],[79.71611,26.69279],[79.72033,26.69081],[79.7202,26.68841],[79.71166,26.67575],[79.71471,26.66885],[79.7187,26.66499],[79.71608,26.6621],[79.71705,26.65824],[79.7137,26.65528],[79.70684,26.64361],[79.69632,26.64019],[79.69269,26.63473],[79.68983,26.63551],[79.68231,26.63181],[79.6797,26.62712],[79.68072,26.62629],[79.67691,26.62072],[79.67345,26.61876],[79.67249,26.61129],[79.66078,26.61526],[79.65485,26.60251],[79.64814,26.60643],[79.64501,26.60709],[79.64402,26.6054],[79.63986,26.60692],[79.6325,26.5919],[79.63462,26.58447],[79.63446,26.57644],[79.64584,26.57131],[79.64135,26.55698],[79.63566,26.55002],[79.62771,26.54426],[79.63479,26.54122],[79.63835,26.53089],[79.63658,26.52505],[79.63752,26.52058],[79.63342,26.51758],[79.63668,26.51003],[79.63144,26.50812],[79.62175,26.51466],[79.61007,26.504],[79.61395,26.49876],[79.62137,26.49337],[79.62132,26.49131],[79.61641,26.48745],[79.61188,26.48933],[79.59613,26.47944],[79.59408,26.476],[79.59749,26.4741],[79.59995,26.47026],[79.59844,26.46622],[79.59384,26.46254],[79.59084,26.46416],[79.57589,26.44721],[79.57033,26.45028],[79.56797,26.44685],[79.56888,26.44577],[79.56761,26.44285],[79.57691,26.43344],[79.55775,26.40854],[79.55313,26.4041],[79.54537,26.40255],[79.54134,26.39678],[79.50579,26.36424],[79.5125,26.35546],[79.5112,26.34886],[79.52396,26.34286],[79.54371,26.35434],[79.54589,26.35871],[79.55234,26.36177],[79.56208,26.362],[79.56816,26.3571],[79.5692,26.34992],[79.56444,26.34015],[79.53402,26.32319],[79.53111,26.32367],[79.5257,26.31469],[79.52571,26.30422],[79.52874,26.29559],[79.5362,26.28468],[79.55306,26.26969],[79.5677,26.26459],[79.57266,26.2591],[79.5854,26.25744],[79.59162,26.25391],[79.60207,26.2513],[79.62953,26.24785],[79.64158,26.2496],[79.64798,26.24423],[79.65213,26.2367],[79.65173,26.23258],[79.64395,26.21948],[79.64631,26.21266],[79.64865,26.21048],[79.66767,26.20682],[79.67976,26.19981],[79.71376,26.18596],[79.7256,26.18452],[79.74146,26.18635],[79.75857,26.18479],[79.76368,26.18228],[79.76488,26.17684],[79.76364,26.16956],[79.76013,26.16316],[79.74511,26.14677],[79.7447,26.13621],[79.74853,26.13293],[79.77158,26.12338],[79.77525,26.12038],[79.77743,26.11407],[79.78157,26.11063],[79.81522,26.10355],[79.83666,26.10131],[79.84037,26.10231],[79.8572,26.11391],[79.86591,26.11662],[79.87511,26.10703],[79.88605,26.09918],[79.90393,26.09196],[79.91637,26.0901],[79.9197,26.09089],[79.92246,26.09377],[79.92745,26.10576],[79.93287,26.1233],[79.93636,26.14976],[79.94056,26.16188],[79.94391,26.16263],[79.95214,26.16079],[79.96274,26.15394],[79.96727,26.15702],[79.97628,26.15377],[79.98344,26.15888],[79.98547,26.15836],[79.98714,26.16439],[79.99096,26.16366],[79.99587,26.16913],[80.00022,26.16634],[80.00141,26.16943],[80.00525,26.16971],[80.00808,26.16809],[80.01644,26.17607],[80.0189,26.17664],[80.0204,26.18082],[80.01598,26.18437],[80.01405,26.18826],[80.00447,26.19109],[80.0014,26.19345],[80.0051,26.20005],[80.00372,26.20156],[80.00729,26.20882],[80.00517,26.20956],[80.00768,26.2126],[80.00577,26.21367],[80.00639,26.21545],[80.00062,26.21832],[80.006,26.22443],[80.00532,26.2262],[80.01058,26.23492],[79.99889,26.24259],[80.00606,26.25307],[80.00816,26.26093],[80.01662,26.26674],[80.02151,26.26447],[80.02604,26.26572],[80.03006,26.26308],[80.03402,26.2716],[80.04859,26.28359],[80.05954,26.27744],[80.06834,26.27663],[80.08089,26.28136],[80.08422,26.2884],[80.09374,26.29032],[80.10429,26.28838],[80.11244,26.28144],[80.11328,26.27758],[80.1171,26.27676],[80.11868,26.26536],[80.12334,26.26676],[80.12878,26.27271],[80.13824,26.27468],[80.14174,26.2811],[80.13708,26.28425],[80.12779,26.29718],[80.13138,26.3003],[80.12522,26.30647],[80.12254,26.31153],[80.12535,26.32092],[80.13314,26.32532],[80.13736,26.32299],[80.13764,26.30561],[80.15073,26.30749],[80.16387,26.30414],[80.16579,26.3061],[80.16235,26.31037],[80.16346,26.31256],[80.16142,26.31327],[80.16266,26.32284],[80.16478,26.32412],[80.1709,26.32064],[80.17185,26.32365],[80.17748,26.32708],[80.17149,26.333],[80.17193,26.33411],[80.17478,26.33523],[80.18087,26.33275],[80.18508,26.33528],[80.18016,26.33721],[80.17443,26.34619],[80.1818,26.34438],[80.18273,26.34029],[80.18605,26.3432],[80.18974,26.34374],[80.18589,26.3477],[80.18263,26.34851],[80.18065,26.35165],[80.17032,26.34817],[80.16825,26.34974],[80.17013,26.35241],[80.16869,26.35378],[80.16003,26.35347],[80.15554,26.35138],[80.15356,26.34756],[80.15041,26.34802],[80.14763,26.35062],[80.15587,26.35447],[80.14514,26.36075],[80.14694,26.36389],[80.15086,26.36629],[80.14438,26.36779],[80.13653,26.36568],[80.13803,26.36906],[80.14278,26.36931],[80.14661,26.37359],[80.1423,26.37491],[80.14227,26.37635],[80.14944,26.37968],[80.15295,26.37951],[80.15374,26.38139],[80.15211,26.38372],[80.14903,26.38105],[80.14595,26.38219],[80.14374,26.38437],[80.1435,26.38772],[80.13657,26.39114],[80.13492,26.39433],[80.14333,26.39381],[80.14733,26.39552],[80.14793,26.39778],[80.14469,26.39962],[80.14521,26.40178],[80.151,26.40525],[80.14638,26.40736],[80.14117,26.40688],[80.13878,26.40553],[80.13772,26.40173],[80.13631,26.40188],[80.13497,26.41692],[80.13929,26.41969],[80.13945,26.42194],[80.13367,26.42154],[80.13457,26.42612],[80.12981,26.42931],[80.13277,26.43478],[80.12992,26.44172],[80.13114,26.4516],[80.12737,26.45579],[80.12547,26.45529],[80.12318,26.46212],[80.11959,26.46522],[80.12111,26.46811],[80.13059,26.46771],[80.13054,26.47202],[80.12809,26.47482],[80.12858,26.47825],[80.13057,26.47918],[80.14589,26.47098],[80.14532,26.46889],[80.15226,26.46928],[80.15496,26.47168],[80.1517,26.47545],[80.14947,26.47581],[80.1492,26.47794],[80.14605,26.47682],[80.14702,26.48094],[80.14387,26.48007],[80.1442,26.48298],[80.14221,26.48244],[80.13959,26.48625],[80.14375,26.4898],[80.1388,26.49679],[80.14057,26.49696],[80.14606,26.48963],[80.15354,26.49323],[80.16211,26.50276],[80.16415,26.50098],[80.16777,26.50138],[80.17204,26.50596],[80.17165,26.50334],[80.17489,26.50383],[80.17374,26.50566],[80.17731,26.50681],[80.17275,26.51019],[80.17462,26.51311],[80.1618,26.52],[80.16485,26.5234],[80.17752,26.52817],[80.17013,26.53015],[80.16973,26.53299],[80.1672,26.53222],[80.16256,26.53435],[80.1574,26.53262],[80.15277,26.53716],[80.14654,26.53396],[80.14497,26.53149],[80.14288,26.53192],[80.1427,26.53489],[80.14464,26.53456],[80.14753,26.54114],[80.15034,26.54179],[80.14694,26.54527],[80.14908,26.54737],[80.14817,26.54847],[80.15071,26.5491],[80.15397,26.54731],[80.15778,26.54932],[80.15972,26.55302],[80.15326,26.5562],[80.13993,26.54823],[80.13162,26.54915],[80.13202,26.5524],[80.13007,26.55296],[80.13037,26.55553],[80.12769,26.5582],[80.12743,26.56126],[80.13091,26.56254],[80.12951,26.5655],[80.13563,26.56651],[80.133,26.57035],[80.12768,26.57059],[80.12536,26.57456],[80.12064,26.5736],[80.12016,26.57602],[80.11762,26.57734],[80.11835,26.57939],[80.113,26.58086],[80.10949,26.58488],[80.1087,26.58309],[80.10216,26.58156],[80.09474,26.58348],[80.09522,26.59018],[80.09736,26.59399],[80.09147,26.60042],[80.08816,26.59988],[80.08472,26.59297],[80.08089,26.5925],[80.07865,26.59404],[80.07304,26.59297],[80.06996,26.59016],[80.06335,26.59468],[80.05973,26.60218],[80.05746,26.60368],[80.05318,26.60272],[80.05398,26.60548],[80.05231,26.60848],[80.04761,26.60785],[80.04286,26.61041],[80.02925,26.61044],[80.02505,26.60775],[80.02288,26.61004],[80.02146,26.60941],[80.01832,26.6173],[80.01858,26.62852],[80.0161,26.6301],[80.01804,26.63858],[80.01336,26.64225],[80.01468,26.64347],[80.00628,26.64496],[79.99761,26.65596],[79.99073,26.65987],[79.9836,26.6604],[79.98122,26.66324],[79.99568,26.66522],[80.00453,26.67719],[80.00088,26.68432],[80.00351,26.69787],[79.99963,26.70047],[79.99068,26.70018],[79.98485,26.70304],[79.97806,26.70364],[79.97655,26.70799],[79.9818,26.71355],[79.97568,26.72197],[79.97045,26.72314],[79.96706,26.72137],[79.96702,26.72407],[79.96389,26.72584],[79.96484,26.73144],[79.96308,26.73524],[79.96422,26.74088],[79.96294,26.74297],[79.95569,26.7468],[79.95352,26.75232],[79.94957,26.74913],[79.93964,26.75555],[79.93536,26.76165],[79.94373,26.77358],[79.95111,26.77749],[79.94804,26.78238],[79.94228,26.78693],[79.94158,26.79428],[79.93566,26.79575],[79.9293,26.80061],[79.9274,26.80009],[79.91965,26.80405],[79.91819,26.8066],[79.915,26.80738],[79.91189,26.81145],[79.91047,26.81048],[79.90831,26.81296],[79.89835,26.81433],[79.89718,26.81683],[79.89437,26.81632],[79.88842,26.81069],[79.88464,26.81443]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"157","area_level":"District","area_name":"Kanpur Nagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.00579,26.9536],[80.00062,26.96001],[79.99323,26.96338],[79.98074,26.95178],[79.97876,26.94921],[79.98383,26.94381],[79.98671,26.94097],[79.9934,26.93869],[79.99125,26.93534],[79.98808,26.93662],[79.98381,26.92992],[79.97689,26.93386],[79.98016,26.93732],[79.97385,26.94215],[79.97274,26.94565],[79.96251,26.94678],[79.96042,26.9528],[79.95706,26.95235],[79.95204,26.94779],[79.94467,26.94533],[79.94175,26.93978],[79.94404,26.936],[79.94365,26.92866],[79.94081,26.92384],[79.94182,26.92246],[79.94669,26.92414],[79.95144,26.92058],[79.94934,26.91928],[79.95086,26.91603],[79.94743,26.91404],[79.94821,26.91099],[79.94405,26.90442],[79.94436,26.90075],[79.94136,26.8991],[79.94966,26.89075],[79.9467,26.88826],[79.94803,26.88623],[79.94729,26.88323],[79.93847,26.87643],[79.95096,26.86856],[79.96211,26.85862],[79.95434,26.85661],[79.94272,26.84527],[79.93416,26.85008],[79.93205,26.84948],[79.92785,26.85541],[79.9228,26.85125],[79.91557,26.84825],[79.90934,26.84811],[79.90748,26.84622],[79.89714,26.84998],[79.8936,26.84907],[79.89096,26.84245],[79.89217,26.83763],[79.89077,26.83519],[79.89249,26.83194],[79.89158,26.82833],[79.89362,26.82805],[79.89335,26.82348],[79.89835,26.81433],[79.90831,26.81296],[79.91047,26.81048],[79.91189,26.81145],[79.91292,26.80887],[79.91819,26.8066],[79.91965,26.80405],[79.9274,26.80009],[79.9293,26.80061],[79.93566,26.79575],[79.94158,26.79428],[79.94228,26.78693],[79.94804,26.78238],[79.95111,26.77749],[79.94373,26.77358],[79.93536,26.76165],[79.93964,26.75555],[79.94957,26.74913],[79.95352,26.75232],[79.95569,26.7468],[79.96294,26.74297],[79.96422,26.74088],[79.96308,26.73524],[79.96484,26.73144],[79.96389,26.72584],[79.96702,26.72407],[79.96706,26.72137],[79.97045,26.72314],[79.97568,26.72197],[79.9818,26.71355],[79.97655,26.70799],[79.97806,26.70364],[79.98485,26.70304],[79.99068,26.70018],[79.99963,26.70047],[80.00351,26.69787],[80.00088,26.68432],[80.00453,26.67719],[79.99568,26.66522],[79.98122,26.66324],[79.9836,26.6604],[79.99073,26.65987],[79.99761,26.65596],[80.00628,26.64496],[80.01468,26.64347],[80.01336,26.64225],[80.01804,26.63858],[80.0161,26.6301],[80.01858,26.62852],[80.01832,26.6173],[80.02146,26.60941],[80.02288,26.61004],[80.02505,26.60775],[80.02925,26.61044],[80.04286,26.61041],[80.04761,26.60785],[80.05231,26.60848],[80.05398,26.60548],[80.05318,26.60272],[80.05746,26.60368],[80.05973,26.60218],[80.06335,26.59468],[80.06996,26.59016],[80.07304,26.59297],[80.07865,26.59404],[80.08089,26.5925],[80.08472,26.59297],[80.08816,26.59988],[80.09147,26.60042],[80.09736,26.59399],[80.09522,26.59018],[80.09474,26.58348],[80.10216,26.58156],[80.1087,26.58309],[80.10949,26.58488],[80.113,26.58086],[80.11835,26.57939],[80.11762,26.57734],[80.12016,26.57602],[80.12064,26.5736],[80.12536,26.57456],[80.12768,26.57059],[80.133,26.57035],[80.13563,26.56651],[80.12951,26.5655],[80.13091,26.56254],[80.12743,26.56126],[80.12769,26.5582],[80.13037,26.55553],[80.13007,26.55296],[80.13202,26.5524],[80.13162,26.54915],[80.13993,26.54823],[80.15326,26.5562],[80.15972,26.55302],[80.15778,26.54932],[80.15397,26.54731],[80.15071,26.5491],[80.14817,26.54847],[80.14908,26.54737],[80.14694,26.54527],[80.15034,26.54179],[80.14753,26.54114],[80.14464,26.53456],[80.1427,26.53489],[80.14288,26.53192],[80.14497,26.53149],[80.14654,26.53396],[80.15277,26.53716],[80.1574,26.53262],[80.16256,26.53435],[80.1672,26.53222],[80.16973,26.53299],[80.17013,26.53015],[80.17752,26.52817],[80.16485,26.5234],[80.1618,26.52],[80.17462,26.51311],[80.17275,26.51019],[80.17731,26.50681],[80.17374,26.50566],[80.17489,26.50383],[80.17165,26.50334],[80.17204,26.50596],[80.16777,26.50138],[80.16415,26.50098],[80.16211,26.50276],[80.15354,26.49323],[80.14606,26.48963],[80.14057,26.49696],[80.1388,26.49679],[80.14375,26.4898],[80.13959,26.48625],[80.14221,26.48244],[80.1442,26.48298],[80.14387,26.48007],[80.14702,26.48094],[80.14605,26.47682],[80.1492,26.47794],[80.14947,26.47581],[80.1517,26.47545],[80.15496,26.47168],[80.15226,26.46928],[80.14532,26.46889],[80.14589,26.47098],[80.13057,26.47918],[80.12858,26.47825],[80.12809,26.47482],[80.13054,26.47202],[80.13059,26.46771],[80.12111,26.46811],[80.11959,26.46522],[80.12318,26.46212],[80.12547,26.45529],[80.12737,26.45579],[80.13114,26.4516],[80.12992,26.44172],[80.13277,26.43478],[80.12981,26.42931],[80.13457,26.42612],[80.13367,26.42154],[80.13945,26.42194],[80.13929,26.41969],[80.13497,26.41692],[80.13631,26.40188],[80.13772,26.40173],[80.13878,26.40553],[80.14117,26.40688],[80.14638,26.40736],[80.151,26.40525],[80.14521,26.40178],[80.14469,26.39962],[80.14793,26.39778],[80.14733,26.39552],[80.14333,26.39381],[80.13492,26.39433],[80.13657,26.39114],[80.1435,26.38772],[80.14374,26.38437],[80.14595,26.38219],[80.14903,26.38105],[80.15211,26.38372],[80.15374,26.38139],[80.15295,26.37951],[80.14944,26.37968],[80.14227,26.37635],[80.1423,26.37491],[80.14661,26.37359],[80.14278,26.36931],[80.13803,26.36906],[80.13653,26.36568],[80.14438,26.36779],[80.15086,26.36629],[80.14694,26.36389],[80.14514,26.36075],[80.15587,26.35447],[80.14763,26.35062],[80.15041,26.34802],[80.15356,26.34756],[80.15554,26.35138],[80.16003,26.35347],[80.16869,26.35378],[80.17013,26.35241],[80.16825,26.34974],[80.17032,26.34817],[80.18065,26.35165],[80.18974,26.34315],[80.18605,26.3432],[80.18273,26.34029],[80.1818,26.34438],[80.17443,26.34619],[80.18016,26.33721],[80.18508,26.33528],[80.18087,26.33275],[80.17478,26.33523],[80.17193,26.33411],[80.17149,26.333],[80.17748,26.32708],[80.17185,26.32365],[80.1709,26.32064],[80.16478,26.32412],[80.16266,26.32284],[80.16142,26.31327],[80.16346,26.31256],[80.16235,26.31037],[80.16579,26.3061],[80.16387,26.30414],[80.15073,26.30749],[80.13764,26.30561],[80.13736,26.32299],[80.13314,26.32532],[80.12535,26.32092],[80.12254,26.31153],[80.12522,26.30647],[80.13138,26.3003],[80.12779,26.29718],[80.13708,26.28425],[80.14174,26.2811],[80.13824,26.27468],[80.12878,26.27271],[80.12334,26.26676],[80.11868,26.26536],[80.1171,26.27676],[80.11328,26.27758],[80.11244,26.28144],[80.10429,26.28838],[80.09374,26.29032],[80.08422,26.2884],[80.08089,26.28136],[80.06834,26.27663],[80.05954,26.27744],[80.04859,26.28359],[80.03402,26.2716],[80.03006,26.26308],[80.02604,26.26572],[80.02151,26.26447],[80.01662,26.26674],[80.00816,26.26093],[80.00606,26.25307],[79.99889,26.24259],[80.01058,26.23492],[80.00532,26.2262],[80.006,26.22443],[80.00062,26.21832],[80.00639,26.21545],[80.00577,26.21367],[80.00768,26.2126],[80.00517,26.20956],[80.00729,26.20882],[80.00372,26.20156],[80.0051,26.20005],[80.0014,26.19345],[80.00447,26.19109],[80.01405,26.18826],[80.01598,26.18437],[80.0204,26.18082],[80.0189,26.17664],[80.01644,26.17607],[80.00808,26.16809],[80.00525,26.16971],[80.00141,26.16943],[80.00022,26.16634],[79.99587,26.16913],[79.99096,26.16366],[79.98714,26.16439],[79.98547,26.15836],[79.98344,26.15888],[79.97628,26.15377],[79.96727,26.15702],[79.96274,26.15394],[79.96568,26.14591],[79.96603,26.13342],[79.95648,26.10001],[79.95477,26.07809],[79.95761,26.07445],[79.96108,26.07305],[79.99086,26.06543],[80.01973,26.06659],[80.04276,26.07308],[80.05004,26.0684],[80.06175,26.06915],[80.07419,26.06754],[80.09856,26.05977],[80.10976,26.05161],[80.11157,26.04457],[80.10613,26.02888],[80.10196,26.02216],[80.09567,26.0155],[80.08452,26.00775],[80.08225,26.002],[80.08449,25.99768],[80.11875,25.98614],[80.15389,25.96043],[80.19302,25.94619],[80.20842,25.92254],[80.21396,25.91996],[80.21903,25.91969],[80.23754,25.92246],[80.23276,25.93073],[80.22799,25.94652],[80.22919,25.95599],[80.22263,25.96269],[80.21315,25.96482],[80.2138,25.96766],[80.21654,25.97332],[80.22242,25.97564],[80.22706,25.97473],[80.2282,25.97757],[80.23319,25.97918],[80.23913,25.98523],[80.24544,25.98872],[80.24763,25.99488],[80.24326,26.00222],[80.24495,26.00862],[80.24947,26.01883],[80.25503,26.02054],[80.24983,26.02533],[80.25512,26.02979],[80.25603,26.03476],[80.25307,26.03596],[80.2573,26.04128],[80.25417,26.04521],[80.25797,26.04854],[80.26095,26.04655],[80.26141,26.05005],[80.26748,26.05641],[80.27268,26.05724],[80.27893,26.05435],[80.28277,26.05536],[80.28995,26.06645],[80.29753,26.06039],[80.30132,26.06049],[80.31268,26.07216],[80.31219,26.08434],[80.31801,26.08899],[80.31926,26.09261],[80.31723,26.1018],[80.32071,26.11036],[80.32522,26.11526],[80.33274,26.11778],[80.34254,26.12836],[80.34484,26.12688],[80.34616,26.12819],[80.35234,26.12362],[80.35507,26.12526],[80.36024,26.13773],[80.36594,26.13782],[80.37015,26.14104],[80.37705,26.14061],[80.3792,26.14243],[80.38726,26.14277],[80.40375,26.16226],[80.40957,26.16229],[80.42895,26.15338],[80.433,26.15787],[80.42971,26.16147],[80.43072,26.16511],[80.4324,26.16741],[80.43618,26.16642],[80.44224,26.16748],[80.44753,26.18187],[80.45068,26.1817],[80.45375,26.17931],[80.45711,26.18144],[80.46454,26.18078],[80.46962,26.18269],[80.4727,26.18006],[80.47345,26.17588],[80.4755,26.17384],[80.47778,26.17435],[80.48231,26.18171],[80.48172,26.18483],[80.48562,26.18768],[80.48718,26.1919],[80.49405,26.19581],[80.49843,26.19516],[80.50449,26.19041],[80.51335,26.18712],[80.51664,26.18755],[80.51798,26.18963],[80.51681,26.19255],[80.52279,26.19085],[80.52775,26.19411],[80.52952,26.1972],[80.52876,26.20043],[80.53624,26.19741],[80.53805,26.20173],[80.53869,26.21581],[80.54401,26.22322],[80.59143,26.23123],[80.57708,26.24111],[80.57128,26.24977],[80.56937,26.26734],[80.56354,26.27888],[80.55891,26.28169],[80.55118,26.29155],[80.55148,26.29698],[80.54762,26.3026],[80.54578,26.31701],[80.53695,26.3188],[80.53873,26.32478],[80.53275,26.32772],[80.52745,26.34062],[80.51687,26.35836],[80.51387,26.36142],[80.5067,26.36091],[80.50355,26.36335],[80.49123,26.37851],[80.48396,26.38244],[80.48313,26.38524],[80.47996,26.38781],[80.47801,26.3946],[80.47327,26.39867],[80.46855,26.39957],[80.46552,26.40517],[80.46225,26.40367],[80.45389,26.40782],[80.44875,26.40812],[80.42207,26.4219],[80.40915,26.43464],[80.38947,26.45034],[80.36947,26.47351],[80.38007,26.48931],[80.37994,26.49353],[80.37601,26.50119],[80.37488,26.50758],[80.36718,26.51353],[80.35118,26.52223],[80.34639,26.52698],[80.33504,26.52426],[80.33074,26.52615],[80.31183,26.53822],[80.30552,26.54582],[80.30037,26.57333],[80.28767,26.58483],[80.28313,26.59369],[80.27389,26.62523],[80.27305,26.64271],[80.26997,26.65156],[80.26686,26.65641],[80.25452,26.6676],[80.24602,26.68787],[80.24263,26.6857],[80.22491,26.68891],[80.21005,26.69777],[80.19517,26.70063],[80.19327,26.70374],[80.19379,26.70753],[80.19082,26.70957],[80.18366,26.70845],[80.1794,26.70985],[80.17428,26.71493],[80.17051,26.7128],[80.16406,26.71476],[80.16148,26.72238],[80.15744,26.72261],[80.14797,26.72702],[80.13416,26.74028],[80.12527,26.76344],[80.11689,26.77663],[80.12456,26.80591],[80.12358,26.82513],[80.12578,26.82786],[80.13154,26.82945],[80.14296,26.83639],[80.14098,26.85014],[80.1423,26.8593],[80.14067,26.86062],[80.13531,26.86052],[80.13146,26.86512],[80.12588,26.86558],[80.124,26.86727],[80.12344,26.87109],[80.11421,26.87824],[80.0976,26.8832],[80.07622,26.89496],[80.06081,26.90775],[80.04809,26.92242],[80.03596,26.93046],[80.01551,26.95551],[80.00847,26.95271],[80.00579,26.9536]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"158","area_level":"District","area_name":"Kaushambi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.35009,25.79144],[81.34666,25.79461],[81.34237,25.80783],[81.33837,25.8107],[81.33445,25.79634],[81.33027,25.79117],[81.32709,25.79227],[81.32472,25.79545],[81.31256,25.78488],[81.31125,25.78053],[81.31415,25.77879],[81.31344,25.77526],[81.30861,25.77013],[81.30198,25.77295],[81.29906,25.76976],[81.30063,25.76861],[81.29938,25.76705],[81.29474,25.76831],[81.28893,25.76741],[81.29039,25.76657],[81.28963,25.76448],[81.28314,25.76483],[81.28256,25.7597],[81.28126,25.75899],[81.27033,25.7584],[81.26965,25.75549],[81.26232,25.7531],[81.25316,25.75561],[81.24695,25.76151],[81.2395,25.74933],[81.24195,25.74846],[81.23504,25.74156],[81.23537,25.73277],[81.23111,25.72928],[81.22652,25.71496],[81.21441,25.71907],[81.21195,25.72169],[81.19845,25.7204],[81.19851,25.7142],[81.19402,25.70288],[81.19544,25.69952],[81.20379,25.69194],[81.2042,25.68425],[81.21471,25.68441],[81.21999,25.68729],[81.22725,25.68494],[81.22997,25.67942],[81.23101,25.68072],[81.23777,25.67766],[81.23386,25.67215],[81.22813,25.66992],[81.22293,25.67149],[81.21522,25.67087],[81.21594,25.66006],[81.2174,25.65883],[81.20764,25.64383],[81.20957,25.64044],[81.21698,25.63716],[81.21327,25.62326],[81.21513,25.62212],[81.21396,25.6159],[81.2071,25.60045],[81.20726,25.59778],[81.21156,25.59539],[81.22153,25.59561],[81.23037,25.59289],[81.23177,25.58681],[81.23744,25.58507],[81.23831,25.586],[81.23851,25.58107],[81.23642,25.57659],[81.24548,25.57292],[81.24505,25.56908],[81.24914,25.56641],[81.25139,25.56053],[81.25569,25.55809],[81.25467,25.55075],[81.26044,25.54797],[81.25456,25.52471],[81.24937,25.52406],[81.2478,25.51533],[81.26517,25.50954],[81.26902,25.50763],[81.26979,25.50487],[81.26743,25.49848],[81.26467,25.49748],[81.2624,25.49195],[81.25979,25.49022],[81.25525,25.48891],[81.24845,25.49224],[81.2418,25.48285],[81.23481,25.48492],[81.23188,25.47998],[81.23178,25.4756],[81.22881,25.47161],[81.22595,25.47046],[81.22742,25.46773],[81.22466,25.46323],[81.22524,25.46062],[81.21649,25.44919],[81.21726,25.44572],[81.21914,25.44542],[81.22257,25.44104],[81.22133,25.43836],[81.20884,25.44414],[81.20484,25.44976],[81.20119,25.44855],[81.19709,25.45034],[81.1906,25.44594],[81.18761,25.44771],[81.16492,25.43271],[81.15637,25.43115],[81.15306,25.42898],[81.1501,25.42455],[81.14666,25.40976],[81.14725,25.40299],[81.15145,25.39419],[81.15651,25.38891],[81.17382,25.37689],[81.19004,25.37046],[81.20692,25.36881],[81.23574,25.3619],[81.24269,25.35874],[81.25629,25.33498],[81.26108,25.32867],[81.26603,25.32551],[81.27604,25.32709],[81.28052,25.33432],[81.28986,25.34046],[81.29632,25.34175],[81.30394,25.33999],[81.33073,25.34886],[81.35598,25.34471],[81.38646,25.33492],[81.39878,25.32635],[81.40157,25.31955],[81.40215,25.31328],[81.39956,25.30322],[81.38424,25.28482],[81.38319,25.27997],[81.38487,25.27604],[81.39722,25.27142],[81.42576,25.26836],[81.45589,25.25836],[81.46616,25.26091],[81.47064,25.26756],[81.47744,25.26617],[81.50631,25.26917],[81.5285,25.27839],[81.56589,25.30333],[81.59868,25.3339],[81.62867,25.35073],[81.64526,25.35456],[81.66162,25.35443],[81.67375,25.35653],[81.69795,25.35742],[81.69787,25.36752],[81.69947,25.37205],[81.70808,25.37787],[81.71336,25.38975],[81.7008,25.39122],[81.69419,25.39411],[81.69311,25.38759],[81.68149,25.38611],[81.67961,25.38457],[81.6771,25.37909],[81.67793,25.37766],[81.6746,25.37281],[81.65862,25.38107],[81.6624,25.39226],[81.66032,25.39365],[81.6612,25.39664],[81.65905,25.39812],[81.6596,25.39963],[81.65732,25.40321],[81.66209,25.40827],[81.6639,25.41558],[81.6634,25.41705],[81.65465,25.41663],[81.64589,25.41842],[81.65038,25.42977],[81.65331,25.43207],[81.65452,25.4374],[81.64559,25.4406],[81.64986,25.44418],[81.65388,25.45122],[81.65437,25.45899],[81.6584,25.46527],[81.65944,25.47006],[81.65206,25.47581],[81.65422,25.48022],[81.64812,25.48252],[81.64609,25.48116],[81.64537,25.47708],[81.6402,25.46902],[81.63753,25.47059],[81.63715,25.47287],[81.64324,25.47936],[81.64834,25.48806],[81.65754,25.48627],[81.6601,25.49185],[81.66677,25.49488],[81.67051,25.50608],[81.6739,25.5081],[81.67824,25.50273],[81.6839,25.50438],[81.69007,25.50324],[81.69951,25.51272],[81.67219,25.52239],[81.66151,25.52257],[81.64161,25.52655],[81.64102,25.53072],[81.64522,25.54303],[81.64568,25.54892],[81.64206,25.56116],[81.64346,25.57289],[81.64214,25.58243],[81.63792,25.58967],[81.63382,25.59378],[81.62517,25.59772],[81.61071,25.59794],[81.60478,25.59527],[81.57625,25.57441],[81.5653,25.57241],[81.55732,25.57757],[81.55461,25.58492],[81.54492,25.58801],[81.54025,25.59134],[81.53805,25.59452],[81.53613,25.60342],[81.53124,25.60905],[81.52667,25.61865],[81.52279,25.62204],[81.5092,25.62487],[81.495,25.62363],[81.49014,25.61923],[81.48065,25.61695],[81.47538,25.6175],[81.46468,25.62236],[81.4521,25.63345],[81.44845,25.64221],[81.43824,25.64981],[81.43381,25.66378],[81.42273,25.67354],[81.41544,25.6784],[81.39864,25.68545],[81.38613,25.68653],[81.37382,25.69488],[81.36869,25.70306],[81.36869,25.71197],[81.39624,25.73421],[81.40014,25.74234],[81.40195,25.7605],[81.39833,25.76787],[81.39123,25.77297],[81.37294,25.77471],[81.36966,25.77642],[81.36139,25.77587],[81.35009,25.79144]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"159","area_level":"District","area_name":"Kheri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.59155,28.65014],[80.59743,28.65605],[80.58024,28.66146],[80.59052,28.68004],[80.56866,28.68813],[80.55026,28.69174],[80.53953,28.69076],[80.50613,28.67118],[80.50338,28.66514],[80.51138,28.62323],[80.51477,28.61585],[80.52154,28.57675],[80.52556,28.57319],[80.52983,28.57491],[80.5306,28.57262],[80.52278,28.553],[80.51974,28.55448],[80.51829,28.55186],[80.50576,28.56849],[80.49961,28.56973],[80.4937,28.57656],[80.48382,28.58228],[80.48144,28.58532],[80.47422,28.58312],[80.46868,28.58353],[80.47111,28.58481],[80.47204,28.59104],[80.4603,28.61439],[80.46151,28.6155],[80.46345,28.61455],[80.4637,28.61608],[80.45943,28.61771],[80.46139,28.61897],[80.46065,28.62043],[80.45084,28.62954],[80.44272,28.62881],[80.43599,28.63665],[80.42334,28.63777],[80.42291,28.63961],[80.41837,28.64004],[80.38582,28.63009],[80.38321,28.63089],[80.37548,28.62889],[80.37342,28.63036],[80.37175,28.62905],[80.36883,28.63433],[80.361,28.63526],[80.35876,28.63739],[80.35709,28.64149],[80.36027,28.64581],[80.35593,28.64686],[80.34553,28.65532],[80.32558,28.66639],[80.31903,28.65029],[80.31702,28.63277],[80.31478,28.62918],[80.32887,28.6289],[80.3434,28.63148],[80.35707,28.61698],[80.36599,28.61563],[80.3689,28.61122],[80.36877,28.60323],[80.37169,28.60209],[80.38953,28.60828],[80.39472,28.60713],[80.39678,28.60206],[80.39083,28.58851],[80.39575,28.58728],[80.39966,28.58388],[80.40103,28.5802],[80.39953,28.57414],[80.40627,28.57095],[80.40879,28.56446],[80.41647,28.5547],[80.41867,28.54793],[80.42482,28.54304],[80.42776,28.53283],[80.43045,28.53028],[80.43619,28.52977],[80.43659,28.52833],[80.44625,28.52787],[80.44887,28.52277],[80.44997,28.51508],[80.44145,28.50748],[80.44076,28.5025],[80.4329,28.49851],[80.43426,28.49307],[80.43312,28.49042],[80.42869,28.4896],[80.42282,28.49204],[80.42091,28.48806],[80.40165,28.48562],[80.39806,28.47779],[80.39027,28.46969],[80.3719,28.47705],[80.3692,28.47152],[80.35031,28.4893],[80.33523,28.49243],[80.30818,28.46339],[80.31281,28.46119],[80.31678,28.45584],[80.32085,28.45501],[80.32209,28.45031],[80.32943,28.44484],[80.33128,28.441],[80.33943,28.43362],[80.34033,28.42987],[80.34612,28.42579],[80.34955,28.41885],[80.35565,28.41906],[80.35541,28.41605],[80.35762,28.41294],[80.35683,28.40627],[80.36234,28.40309],[80.36264,28.39811],[80.36619,28.39589],[80.36552,28.39108],[80.36697,28.38766],[80.36469,28.38143],[80.36965,28.36998],[80.36957,28.36188],[80.37534,28.35845],[80.37722,28.35527],[80.37768,28.3504],[80.37603,28.3475],[80.3785,28.34328],[80.35868,28.32881],[80.35553,28.3198],[80.3369,28.30596],[80.33299,28.29753],[80.32425,28.28919],[80.32185,28.28481],[80.31084,28.2778],[80.31233,28.27426],[80.31124,28.27229],[80.31256,28.27197],[80.30804,28.26843],[80.31149,28.26201],[80.31216,28.25404],[80.31411,28.25225],[80.31206,28.24265],[80.30803,28.23524],[80.31054,28.23297],[80.30981,28.23128],[80.30294,28.2303],[80.3045,28.2267],[80.30205,28.2238],[80.29891,28.22321],[80.29654,28.21794],[80.29838,28.21643],[80.30148,28.207],[80.29769,28.20589],[80.29597,28.2034],[80.30055,28.19518],[80.3013,28.19605],[80.30448,28.19432],[80.3056,28.1961],[80.31077,28.19434],[80.3121,28.19239],[80.30896,28.18637],[80.30963,28.18507],[80.30482,28.18194],[80.30396,28.17696],[80.30014,28.17613],[80.29807,28.17343],[80.30014,28.16651],[80.29796,28.16259],[80.29622,28.16183],[80.28007,28.16571],[80.27368,28.15763],[80.26769,28.15946],[80.2599,28.1591],[80.25645,28.16182],[80.25347,28.1678],[80.24612,28.16001],[80.24258,28.15078],[80.23815,28.14437],[80.23983,28.13232],[80.24444,28.12482],[80.23925,28.11598],[80.24442,28.11056],[80.24103,28.10362],[80.2484,28.09851],[80.25397,28.08999],[80.25087,28.07963],[80.24641,28.07416],[80.24424,28.07389],[80.23779,28.05964],[80.22975,28.05996],[80.22748,28.06166],[80.22848,28.06286],[80.22537,28.06308],[80.22322,28.06661],[80.21686,28.05893],[80.20826,28.05429],[80.20218,28.04514],[80.19113,28.03627],[80.18703,28.03635],[80.17982,28.02742],[80.1768,28.02554],[80.16389,28.03303],[80.15938,28.02955],[80.16233,28.02571],[80.16097,28.02369],[80.15444,28.01896],[80.15189,28.02088],[80.14749,28.01763],[80.14598,28.01411],[80.14406,28.01509],[80.14698,28.01149],[80.14276,28.00777],[80.13607,28.00488],[80.13299,28.00741],[80.12465,28.00274],[80.11552,27.98459],[80.11834,27.97887],[80.11639,27.97802],[80.11497,27.97236],[80.11093,27.96951],[80.10201,27.96978],[80.10571,27.96461],[80.09376,27.95931],[80.09098,27.95222],[80.09146,27.94959],[80.09002,27.94863],[80.09226,27.94065],[80.09508,27.93697],[80.09201,27.93465],[80.08407,27.93073],[80.08271,27.9318],[80.07849,27.92831],[80.07124,27.93273],[80.07397,27.9364],[80.07226,27.94099],[80.07016,27.94133],[80.0651,27.93582],[80.06292,27.93844],[80.05355,27.93872],[80.05147,27.93609],[80.04846,27.93538],[80.05243,27.93352],[80.05126,27.92793],[80.04436,27.92263],[80.0327,27.92452],[80.03696,27.91669],[80.03301,27.91455],[80.03385,27.9075],[80.03016,27.9047],[80.0303,27.90112],[80.03413,27.8997],[80.03593,27.89416],[80.03772,27.8951],[80.03734,27.89329],[80.04179,27.89136],[80.0405,27.89072],[80.04253,27.89022],[80.04269,27.88821],[80.04483,27.88901],[80.04425,27.88613],[80.04629,27.88178],[80.05098,27.87749],[80.05022,27.87376],[80.05461,27.87321],[80.05389,27.87009],[80.05549,27.86894],[80.05374,27.86776],[80.05631,27.86566],[80.05679,27.86299],[80.05494,27.86252],[80.05634,27.85387],[80.05522,27.85225],[80.05708,27.85027],[80.05574,27.84938],[80.05632,27.84765],[80.05301,27.84673],[80.05203,27.84792],[80.04869,27.84552],[80.04734,27.84235],[80.04516,27.84267],[80.04407,27.84044],[80.04255,27.84142],[80.04177,27.83952],[80.04059,27.83996],[80.04055,27.83797],[80.03589,27.83832],[80.03662,27.83615],[80.03476,27.83635],[80.03383,27.83384],[80.03588,27.8336],[80.03594,27.82994],[80.0401,27.82937],[80.04291,27.82348],[80.04568,27.82257],[80.05068,27.82386],[80.05038,27.8201],[80.05414,27.81938],[80.05348,27.81709],[80.04919,27.81625],[80.04731,27.81504],[80.04767,27.81313],[80.04573,27.81328],[80.04805,27.80925],[80.05023,27.80922],[80.04923,27.80761],[80.05155,27.80455],[80.05087,27.80261],[80.05286,27.80294],[80.05055,27.79919],[80.04853,27.79917],[80.04983,27.79518],[80.05277,27.79441],[80.05159,27.79155],[80.05351,27.78996],[80.05373,27.78657],[80.05583,27.7864],[80.05613,27.78444],[80.05507,27.78454],[80.05727,27.78257],[80.05661,27.78105],[80.05861,27.77979],[80.05755,27.77761],[80.06021,27.77115],[80.05803,27.77067],[80.06685,27.77115],[80.07676,27.77586],[80.08007,27.77477],[80.08199,27.77834],[80.09009,27.78446],[80.10294,27.7785],[80.11113,27.78361],[80.1107,27.78069],[80.10697,27.77748],[80.11423,27.77329],[80.11756,27.77712],[80.13099,27.77596],[80.13621,27.77774],[80.13769,27.77576],[80.13372,27.76153],[80.13395,27.7551],[80.13209,27.75434],[80.1339,27.75005],[80.14298,27.75395],[80.15773,27.77101],[80.15919,27.76921],[80.15795,27.76669],[80.16862,27.76129],[80.17314,27.76389],[80.17814,27.76187],[80.18075,27.76528],[80.18353,27.76581],[80.18645,27.76264],[80.19255,27.76028],[80.19571,27.76471],[80.19436,27.7657],[80.19615,27.7695],[80.20133,27.77561],[80.20539,27.77516],[80.20942,27.77147],[80.21696,27.77155],[80.21866,27.76735],[80.22713,27.76869],[80.22819,27.77086],[80.23212,27.7715],[80.23361,27.77039],[80.23268,27.76823],[80.22951,27.7681],[80.22991,27.76637],[80.22596,27.76364],[80.22461,27.7652],[80.22404,27.76222],[80.23344,27.75983],[80.23943,27.7656],[80.24181,27.76423],[80.24122,27.76161],[80.24328,27.75633],[80.23955,27.75378],[80.23761,27.75476],[80.23793,27.7519],[80.24032,27.74992],[80.24304,27.7518],[80.24461,27.75121],[80.24664,27.75477],[80.24829,27.7537],[80.25068,27.75806],[80.25312,27.75761],[80.25184,27.75589],[80.25205,27.75017],[80.25569,27.74829],[80.25537,27.74676],[80.25691,27.74698],[80.2549,27.74432],[80.25624,27.74495],[80.25885,27.74168],[80.26608,27.74184],[80.26658,27.73468],[80.26933,27.7336],[80.27037,27.73056],[80.27337,27.72923],[80.28173,27.73179],[80.28425,27.7307],[80.27968,27.72705],[80.28284,27.72619],[80.28019,27.72247],[80.28334,27.72064],[80.28017,27.71908],[80.28097,27.71531],[80.27716,27.71447],[80.2792,27.71208],[80.27839,27.71012],[80.29189,27.70869],[80.29201,27.70577],[80.29438,27.70322],[80.29348,27.70045],[80.29934,27.69462],[80.2981,27.69294],[80.29702,27.69405],[80.2945,27.69252],[80.29645,27.69095],[80.29513,27.68832],[80.29735,27.6837],[80.29975,27.68199],[80.30495,27.68219],[80.3053,27.67984],[80.31095,27.68211],[80.31022,27.68006],[80.32056,27.68898],[80.32801,27.69297],[80.33384,27.69924],[80.33778,27.69931],[80.34372,27.70301],[80.34715,27.70173],[80.3485,27.70445],[80.35397,27.70348],[80.35569,27.70575],[80.35896,27.70531],[80.36149,27.70929],[80.36682,27.70476],[80.37006,27.71002],[80.37804,27.7069],[80.38445,27.71345],[80.38896,27.71419],[80.39296,27.72139],[80.39326,27.7267],[80.39567,27.7273],[80.40858,27.73918],[80.40894,27.74132],[80.41386,27.74419],[80.41738,27.74408],[80.42134,27.7463],[80.4287,27.73995],[80.43232,27.74251],[80.4353,27.74199],[80.43712,27.746],[80.44479,27.74618],[80.45015,27.74917],[80.45022,27.75157],[80.45224,27.75219],[80.45079,27.75484],[80.45167,27.76184],[80.44767,27.76326],[80.44524,27.76195],[80.44366,27.76366],[80.44247,27.76573],[80.44546,27.76732],[80.44367,27.7692],[80.44573,27.77057],[80.44504,27.77159],[80.45532,27.76806],[80.45585,27.7601],[80.464,27.75738],[80.46837,27.77353],[80.47017,27.77281],[80.47187,27.77419],[80.47463,27.77958],[80.48527,27.77348],[80.48975,27.77536],[80.49077,27.77737],[80.4888,27.77999],[80.49447,27.7821],[80.49625,27.78886],[80.50151,27.797],[80.50753,27.79613],[80.5126,27.79864],[80.51592,27.80344],[80.51522,27.80644],[80.51732,27.81038],[80.53476,27.80091],[80.53411,27.79997],[80.53993,27.79623],[80.53609,27.78463],[80.54086,27.78055],[80.53948,27.77933],[80.54105,27.77819],[80.54154,27.77204],[80.54299,27.77038],[80.54614,27.77392],[80.54891,27.7738],[80.55446,27.77043],[80.55344,27.76216],[80.5625,27.75723],[80.56385,27.75227],[80.56958,27.75284],[80.57299,27.74969],[80.57766,27.75527],[80.58592,27.75206],[80.58927,27.75244],[80.59627,27.74865],[80.59961,27.75056],[80.60511,27.7507],[80.60652,27.7582],[80.60314,27.76238],[80.60925,27.77438],[80.6136,27.77685],[80.61363,27.7812],[80.62023,27.7896],[80.62204,27.79536],[80.62954,27.80385],[80.62833,27.81033],[80.63473,27.82764],[80.63707,27.83032],[80.63543,27.83184],[80.64182,27.8392],[80.64926,27.83341],[80.64853,27.83096],[80.65081,27.82812],[80.64915,27.82485],[80.65084,27.82424],[80.65072,27.82087],[80.6542,27.817],[80.66034,27.81778],[80.66416,27.82517],[80.66341,27.82658],[80.66579,27.82681],[80.6664,27.83028],[80.6689,27.83057],[80.67066,27.82947],[80.6696,27.8266],[80.67097,27.82643],[80.67161,27.82226],[80.6762,27.82223],[80.67826,27.82051],[80.68202,27.82143],[80.68222,27.82309],[80.68527,27.82463],[80.68573,27.82285],[80.68774,27.8242],[80.69399,27.82367],[80.6985,27.81875],[80.71663,27.81229],[80.72552,27.80604],[80.72714,27.80267],[80.73372,27.80157],[80.74395,27.79573],[80.74482,27.80043],[80.74216,27.80669],[80.74812,27.81229],[80.76099,27.80595],[80.7656,27.81586],[80.7751,27.80951],[80.7768,27.81198],[80.78264,27.81104],[80.78879,27.81812],[80.80757,27.80728],[80.81584,27.79951],[80.81567,27.79703],[80.81833,27.79362],[80.8258,27.79084],[80.83289,27.79502],[80.83546,27.79859],[80.83895,27.79782],[80.84422,27.80445],[80.84258,27.80754],[80.84471,27.81164],[80.84732,27.81277],[80.84579,27.81759],[80.8466,27.82553],[80.85605,27.82581],[80.86433,27.82415],[80.86602,27.8267],[80.86431,27.82879],[80.87241,27.83551],[80.87414,27.83928],[80.88115,27.84281],[80.8839,27.8409],[80.89452,27.85165],[80.89944,27.85037],[80.90507,27.84541],[80.9035,27.8417],[80.90071,27.84121],[80.90089,27.83752],[80.9065,27.83418],[80.91987,27.84925],[80.92877,27.84506],[80.93446,27.85356],[80.93986,27.85786],[80.93636,27.86318],[80.93938,27.86787],[80.93702,27.87345],[80.94464,27.87086],[80.9494,27.87249],[80.95383,27.8815],[80.95291,27.88681],[80.95965,27.8967],[80.95747,27.89966],[80.96282,27.9035],[80.97157,27.9063],[80.97868,27.90405],[80.98235,27.9002],[80.97227,27.89546],[80.98009,27.88843],[80.98682,27.88597],[80.99645,27.88796],[81.01019,27.87768],[80.99839,27.87201],[80.99594,27.86875],[80.99786,27.86727],[80.99435,27.85736],[80.99593,27.85464],[80.98573,27.84199],[80.98944,27.82464],[80.99661,27.82301],[80.99928,27.82537],[81.00436,27.82466],[81.01537,27.82054],[81.02083,27.81532],[81.02386,27.82076],[81.02679,27.82263],[81.02941,27.81944],[81.03099,27.82055],[81.03468,27.8192],[81.03829,27.81236],[81.04691,27.81828],[81.0552,27.81587],[81.06033,27.81112],[81.0688,27.82424],[81.07373,27.82386],[81.0808,27.82036],[81.08286,27.82147],[81.08452,27.82043],[81.08393,27.81476],[81.08922,27.81454],[81.09319,27.81251],[81.09188,27.80365],[81.10436,27.79792],[81.10613,27.79063],[81.11114,27.78852],[81.11492,27.78919],[81.11629,27.79305],[81.12169,27.79241],[81.12677,27.80378],[81.13093,27.8003],[81.14107,27.80573],[81.14397,27.80198],[81.14256,27.79387],[81.14634,27.78542],[81.15054,27.78044],[81.1526,27.78195],[81.15871,27.777],[81.17022,27.77734],[81.17098,27.77987],[81.17951,27.78438],[81.18655,27.78062],[81.19739,27.77167],[81.2139,27.76539],[81.22441,27.76314],[81.22859,27.75921],[81.22816,27.75527],[81.21687,27.74894],[81.20819,27.74879],[81.20968,27.7502],[81.20355,27.7565],[81.19498,27.75344],[81.19556,27.75014],[81.1924,27.74513],[81.19132,27.7398],[81.18459,27.73547],[81.18629,27.72883],[81.19683,27.72545],[81.20131,27.72556],[81.20311,27.71869],[81.20524,27.72143],[81.20758,27.71574],[81.21141,27.717],[81.21685,27.71487],[81.2198,27.72081],[81.22276,27.72385],[81.22752,27.72369],[81.23003,27.72897],[81.23533,27.72622],[81.2435,27.72902],[81.24708,27.71713],[81.25436,27.71461],[81.26555,27.71338],[81.26974,27.70569],[81.269,27.70134],[81.27242,27.69867],[81.26636,27.70051],[81.26301,27.69917],[81.25022,27.6862],[81.24911,27.68197],[81.2505,27.67889],[81.25959,27.67979],[81.27358,27.67559],[81.27535,27.68463],[81.28402,27.68375],[81.28712,27.68512],[81.28735,27.69912],[81.29046,27.69944],[81.29216,27.70151],[81.29033,27.71353],[81.28583,27.71768],[81.27969,27.7298],[81.27171,27.73981],[81.27686,27.74932],[81.27168,27.75018],[81.28263,27.7624],[81.29226,27.7775],[81.29351,27.78197],[81.29442,27.78764],[81.29284,27.79374],[81.2833,27.79982],[81.27534,27.81706],[81.27938,27.82082],[81.29038,27.8246],[81.29445,27.83864],[81.29314,27.84772],[81.28741,27.85036],[81.28198,27.85712],[81.27801,27.88387],[81.27858,27.88591],[81.29196,27.89387],[81.30105,27.90134],[81.30546,27.90779],[81.29673,27.91049],[81.30046,27.91948],[81.29038,27.93144],[81.28198,27.93749],[81.28016,27.94173],[81.27018,27.94644],[81.25548,27.95031],[81.2482,27.95456],[81.24196,27.96139],[81.24191,27.96671],[81.23964,27.9718],[81.22777,27.97936],[81.22418,27.98725],[81.2192,27.99171],[81.19562,28.00831],[81.19647,28.01428],[81.19171,28.02376],[81.18758,28.02608],[81.18362,28.03319],[81.18437,28.03867],[81.17569,28.04869],[81.16957,28.05947],[81.18626,28.08643],[81.19492,28.0949],[81.19719,28.10201],[81.19566,28.11105],[81.18274,28.1345],[81.15533,28.14405],[81.13859,28.1553],[81.13675,28.16683],[81.12631,28.16919],[81.12142,28.1784],[81.11576,28.19511],[81.11535,28.20043],[81.11133,28.20228],[81.10848,28.21361],[81.10122,28.21896],[81.09106,28.21723],[81.08541,28.21806],[81.06637,28.22654],[81.06207,28.23057],[81.0595,28.24102],[81.07114,28.25588],[81.0745,28.26877],[81.07345,28.27261],[81.06701,28.27839],[81.04236,28.28143],[81.04051,28.28565],[81.04649,28.30159],[81.05031,28.3044],[81.05229,28.31279],[81.06843,28.33822],[81.06843,28.34455],[81.06094,28.36168],[81.04626,28.36803],[81.0393,28.37388],[81.03889,28.3838],[81.04834,28.39379],[81.05088,28.4018],[81.05459,28.40386],[81.04699,28.41043],[81.03567,28.41358],[81.03383,28.3989],[81.01753,28.41547],[81.0342,28.42818],[81.02942,28.43879],[81.01928,28.43147],[81.01261,28.43782],[81.01676,28.45129],[80.99889,28.45306],[80.98895,28.44154],[80.97765,28.44242],[80.97883,28.43415],[80.96497,28.43791],[80.96787,28.44303],[80.96464,28.44484],[80.98017,28.45524],[80.96699,28.45715],[80.96416,28.44962],[80.95173,28.44764],[80.95143,28.45578],[80.94437,28.45493],[80.93202,28.45889],[80.94555,28.46626],[80.94257,28.46889],[80.93237,28.46349],[80.93052,28.45777],[80.91722,28.46005],[80.91954,28.46423],[80.91415,28.46843],[80.91541,28.45764],[80.90556,28.46637],[80.90153,28.48611],[80.90673,28.49014],[80.90874,28.49811],[80.90005,28.50109],[80.89609,28.50702],[80.88542,28.50774],[80.87543,28.51071],[80.86152,28.50439],[80.86595,28.48958],[80.85563,28.49756],[80.84454,28.49575],[80.84386,28.49978],[80.83003,28.5121],[80.81545,28.52071],[80.79968,28.52123],[80.78919,28.52452],[80.78461,28.52936],[80.7896,28.54339],[80.78285,28.54669],[80.76971,28.54995],[80.7686,28.56591],[80.7383,28.57483],[80.73846,28.56639],[80.7244,28.57529],[80.71453,28.5684],[80.70363,28.57922],[80.69045,28.5876],[80.69575,28.60349],[80.67747,28.60445],[80.67974,28.62109],[80.67084,28.62794],[80.66763,28.64219],[80.6513,28.63407],[80.64142,28.64332],[80.63329,28.63748],[80.61161,28.63952],[80.6062,28.65243],[80.58945,28.64804],[80.59155,28.65014]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"16","area_level":"District","area_name":"Chamba","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.57266,33.20633],[76.56069,33.20954],[76.54719,33.19855],[76.53686,33.20012],[76.52288,33.19588],[76.50931,33.19584],[76.50175,33.18988],[76.47993,33.17879],[76.46639,33.18241],[76.45437,33.17944],[76.44483,33.18147],[76.43571,33.18029],[76.42826,33.18197],[76.42033,33.18766],[76.41416,33.18505],[76.4039,33.18579],[76.4011,33.18289],[76.39785,33.18212],[76.39089,33.17385],[76.37661,33.16533],[76.36846,33.15346],[76.3621,33.1532],[76.345,33.14364],[76.3263,33.12734],[76.31486,33.12505],[76.31341,33.12267],[76.30522,33.11962],[76.30029,33.11235],[76.28595,33.10239],[76.28848,33.09872],[76.28305,33.08636],[76.28282,33.07684],[76.28366,33.07191],[76.28929,33.06794],[76.29041,33.05985],[76.2897,33.0568],[76.27632,33.05105],[76.27495,33.04076],[76.27291,33.03705],[76.25535,33.03405],[76.24623,33.02728],[76.24277,33.02082],[76.22071,33.02288],[76.21233,33.01645],[76.2035,33.01599],[76.18009,33.02054],[76.17559,33.01813],[76.1679,33.00856],[76.16034,33.00663],[76.13631,33.00959],[76.1072,33.00606],[76.10793,33.0],[76.1038,32.99119],[76.10629,32.98688],[76.09416,32.96516],[76.09218,32.96334],[76.08224,32.96157],[76.08302,32.95525],[76.06831,32.9519],[76.06126,32.94095],[76.03883,32.93575],[76.03436,32.93174],[76.032,32.92691],[76.03314,32.92137],[76.02719,32.91571],[76.00912,32.9087],[76.00234,32.90152],[75.99895,32.90204],[75.99651,32.89935],[75.98124,32.8951],[75.97537,32.88648],[75.96971,32.88505],[75.95011,32.87283],[75.94106,32.87828],[75.92827,32.88979],[75.91886,32.90576],[75.91293,32.90671],[75.90385,32.91279],[75.89914,32.91221],[75.88875,32.91454],[75.88328,32.91868],[75.87679,32.91948],[75.873,32.92385],[75.86708,32.92276],[75.85933,32.9254],[75.85185,32.92493],[75.84519,32.92846],[75.8377,32.92802],[75.83264,32.92403],[75.82427,32.91131],[75.81895,32.90753],[75.81715,32.89937],[75.81259,32.89311],[75.79625,32.88426],[75.80598,32.8768],[75.80947,32.86931],[75.81083,32.86033],[75.81693,32.85879],[75.81862,32.85273],[75.82636,32.85001],[75.82988,32.84503],[75.84047,32.84343],[75.84244,32.83769],[75.84608,32.83507],[75.84819,32.83648],[75.85266,32.83438],[75.86563,32.8203],[75.86504,32.81338],[75.87909,32.81121],[75.88421,32.80193],[75.88582,32.78225],[75.8965,32.77492],[75.89795,32.76917],[75.90478,32.76478],[75.92175,32.74717],[75.92297,32.74355],[75.91833,32.73482],[75.91829,32.72715],[75.90695,32.71607],[75.90483,32.70889],[75.89738,32.69754],[75.90046,32.69353],[75.89719,32.68552],[75.89723,32.67747],[75.89883,32.67319],[75.89693,32.6721],[75.89754,32.66978],[75.89307,32.6664],[75.89218,32.6588],[75.88583,32.65218],[75.88677,32.6504],[75.89311,32.64861],[75.89784,32.65432],[75.90626,32.65814],[75.91499,32.6531],[75.91503,32.6436],[75.9188,32.64456],[75.92031,32.64289],[75.92341,32.64274],[75.933,32.6472],[75.93415,32.64476],[75.93381,32.64265],[75.929,32.6383],[75.93044,32.63113],[75.92708,32.63155],[75.9242,32.63675],[75.91863,32.63311],[75.91913,32.62969],[75.9155,32.62771],[75.91858,32.62172],[75.91636,32.61443],[75.90591,32.60759],[75.90524,32.60082],[75.89947,32.59246],[75.89273,32.58896],[75.88404,32.58982],[75.87822,32.58598],[75.87993,32.57799],[75.87771,32.56915],[75.86974,32.5661],[75.86614,32.56246],[75.87333,32.55413],[75.87408,32.55206],[75.87259,32.54864],[75.8549,32.5369],[75.85564,32.53004],[75.85383,32.5277],[75.83826,32.52232],[75.83669,32.51847],[75.83882,32.5137],[75.83153,32.51438],[75.83044,32.51282],[75.83221,32.5107],[75.83579,32.51156],[75.84012,32.50937],[75.84413,32.50266],[75.84415,32.49966],[75.85343,32.48752],[75.8764,32.47034],[75.88079,32.46417],[75.88591,32.46363],[75.90277,32.45233],[75.90103,32.44893],[75.90573,32.44088],[75.90555,32.43766],[75.92018,32.43009],[75.91994,32.42305],[75.91673,32.41954],[75.92159,32.41023],[75.93028,32.40223],[75.93115,32.39942],[75.9547,32.39187],[75.97121,32.39291],[75.9802,32.38359],[75.98904,32.38042],[76.00107,32.36266],[76.00287,32.35747],[76.0094,32.34963],[76.0135,32.3485],[76.02264,32.33422],[76.0187,32.32916],[76.01972,32.32782],[76.01813,32.32504],[76.01459,32.32389],[76.01686,32.31816],[76.02177,32.32044],[76.02572,32.31831],[76.02197,32.3111],[76.02354,32.30435],[76.01774,32.29815],[76.01634,32.29083],[76.0193,32.28452],[76.02667,32.27994],[76.02708,32.27715],[76.03147,32.27513],[76.02805,32.27215],[76.03141,32.2687],[76.04407,32.26855],[76.04563,32.26401],[76.0532,32.26618],[76.06357,32.26485],[76.08009,32.27035],[76.09222,32.27054],[76.10421,32.26047],[76.114,32.25994],[76.124,32.25598],[76.12269,32.25099],[76.12552,32.24774],[76.12342,32.24224],[76.12611,32.23933],[76.12347,32.23071],[76.12588,32.23155],[76.127,32.22966],[76.13684,32.22961],[76.13871,32.22713],[76.14324,32.22556],[76.14392,32.22346],[76.15068,32.22566],[76.16279,32.23431],[76.16744,32.23436],[76.17022,32.23676],[76.17115,32.23205],[76.17297,32.23107],[76.16938,32.22677],[76.17019,32.22358],[76.17632,32.22243],[76.17839,32.2251],[76.18044,32.22268],[76.18138,32.22644],[76.18552,32.22819],[76.1852,32.23191],[76.18167,32.23411],[76.18388,32.24108],[76.1814,32.24162],[76.18082,32.24494],[76.18548,32.25392],[76.18376,32.25792],[76.19043,32.26182],[76.18774,32.26343],[76.18907,32.26792],[76.18678,32.27166],[76.18082,32.27299],[76.18201,32.27574],[76.17595,32.28093],[76.16709,32.28405],[76.16968,32.28977],[76.16197,32.2997],[76.16416,32.30395],[76.16272,32.30715],[76.16343,32.31057],[76.16091,32.31594],[76.16166,32.31807],[76.16786,32.32256],[76.17091,32.33291],[76.17485,32.33721],[76.1755,32.34016],[76.17262,32.34311],[76.17145,32.34939],[76.16732,32.3542],[76.1756,32.35595],[76.19234,32.36731],[76.19852,32.36792],[76.20032,32.37131],[76.21552,32.3813],[76.21753,32.38504],[76.2168,32.38689],[76.22188,32.39487],[76.23366,32.39563],[76.24357,32.39353],[76.24836,32.39554],[76.25664,32.39416],[76.26019,32.38589],[76.25941,32.37944],[76.2625,32.37708],[76.26235,32.37369],[76.27206,32.37649],[76.27782,32.37154],[76.28211,32.37083],[76.28766,32.35625],[76.28744,32.35021],[76.28985,32.3486],[76.28955,32.344],[76.29473,32.33729],[76.3089,32.34004],[76.31908,32.33772],[76.34107,32.32355],[76.35076,32.32525],[76.35358,32.32712],[76.35784,32.32486],[76.36004,32.31832],[76.364,32.31511],[76.36484,32.30985],[76.37451,32.30004],[76.38188,32.29728],[76.39003,32.28961],[76.39083,32.28679],[76.40028,32.28719],[76.40469,32.28235],[76.41826,32.27768],[76.42159,32.27272],[76.42006,32.26939],[76.42135,32.26552],[76.42785,32.26076],[76.44443,32.26364],[76.45446,32.25696],[76.45691,32.25173],[76.46294,32.24739],[76.47366,32.24768],[76.47975,32.25074],[76.48447,32.25019],[76.48743,32.24461],[76.49609,32.23876],[76.49965,32.23247],[76.51225,32.23033],[76.51872,32.23412],[76.52439,32.2322],[76.52696,32.22702],[76.53156,32.22755],[76.53352,32.22948],[76.53872,32.22933],[76.55083,32.22657],[76.5564,32.22793],[76.55935,32.22352],[76.56226,32.22214],[76.57579,32.22296],[76.57945,32.22137],[76.58649,32.2228],[76.59694,32.21506],[76.60225,32.20733],[76.6096,32.20275],[76.61033,32.19822],[76.61214,32.19651],[76.62058,32.19446],[76.6256,32.18974],[76.64007,32.18729],[76.64523,32.18437],[76.64962,32.18521],[76.6547,32.18383],[76.66618,32.17553],[76.67852,32.17636],[76.69198,32.19038],[76.69457,32.19382],[76.69457,32.19645],[76.70167,32.19638],[76.70836,32.19985],[76.7212,32.19014],[76.72723,32.18789],[76.73014,32.18864],[76.73135,32.18669],[76.73518,32.18614],[76.74314,32.19632],[76.75514,32.20032],[76.7601,32.20717],[76.76373,32.2086],[76.7655,32.21459],[76.76806,32.21625],[76.77064,32.22187],[76.76787,32.2256],[76.77057,32.22995],[76.77157,32.23707],[76.76983,32.24199],[76.77524,32.24589],[76.76643,32.25024],[76.77002,32.25494],[76.77413,32.25551],[76.77893,32.26236],[76.77309,32.27115],[76.76999,32.28243],[76.77468,32.28969],[76.77748,32.29794],[76.76947,32.30722],[76.78499,32.31409],[76.77773,32.32194],[76.77497,32.33369],[76.77063,32.3401],[76.75802,32.3487],[76.75145,32.35803],[76.76481,32.35993],[76.76852,32.35833],[76.7767,32.36136],[76.78053,32.36812],[76.7863,32.37207],[76.78387,32.3764],[76.78584,32.37903],[76.78759,32.38766],[76.78165,32.3982],[76.78324,32.40245],[76.79102,32.40657],[76.80097,32.40753],[76.80955,32.41407],[76.81268,32.41895],[76.81299,32.42445],[76.82648,32.43837],[76.84207,32.44413],[76.8456,32.44824],[76.86636,32.46269],[76.86441,32.46307],[76.86271,32.46596],[76.86199,32.47339],[76.85705,32.47928],[76.85783,32.49112],[76.8628,32.50153],[76.87744,32.51303],[76.87196,32.51926],[76.86916,32.5201],[76.8701,32.52549],[76.86535,32.53353],[76.85612,32.53059],[76.84994,32.52618],[76.84204,32.52426],[76.8379,32.52485],[76.82722,32.53028],[76.82635,32.53792],[76.81792,32.53717],[76.80169,32.53134],[76.79724,32.53163],[76.79442,32.53769],[76.79088,32.54],[76.79219,32.54703],[76.7796,32.54935],[76.77062,32.54502],[76.76513,32.54542],[76.76257,32.54689],[76.76093,32.55118],[76.75472,32.55549],[76.7509,32.55593],[76.74525,32.55495],[76.73668,32.54645],[76.72786,32.54517],[76.71565,32.53855],[76.71246,32.53861],[76.70594,32.54395],[76.69768,32.54555],[76.69686,32.5491],[76.69852,32.5518],[76.69539,32.55448],[76.69557,32.56021],[76.68991,32.56512],[76.68821,32.56593],[76.68188,32.56252],[76.67225,32.56405],[76.66814,32.57189],[76.65861,32.57774],[76.6527,32.57931],[76.64993,32.5826],[76.64417,32.58081],[76.64227,32.57839],[76.6268,32.57464],[76.62277,32.57868],[76.6225,32.58161],[76.62686,32.59413],[76.62617,32.5984],[76.6321,32.60535],[76.62356,32.60608],[76.61204,32.60235],[76.60239,32.60474],[76.59813,32.61515],[76.603,32.62213],[76.59615,32.6257],[76.59202,32.63381],[76.59234,32.63679],[76.56338,32.64602],[76.54944,32.65645],[76.52829,32.65648],[76.52493,32.65951],[76.52108,32.66712],[76.51828,32.6655],[76.50947,32.66666],[76.50461,32.66533],[76.49858,32.66109],[76.47928,32.6561],[76.47523,32.65635],[76.46689,32.65227],[76.44158,32.65795],[76.43987,32.6594],[76.44585,32.66935],[76.44413,32.67432],[76.4344,32.67757],[76.4229,32.68836],[76.4301,32.69699],[76.42803,32.70113],[76.42855,32.70872],[76.41178,32.72199],[76.39994,32.72763],[76.39789,32.7338],[76.39884,32.73991],[76.39408,32.74308],[76.39408,32.75165],[76.39017,32.75899],[76.38762,32.77159],[76.38514,32.77355],[76.38707,32.78208],[76.38348,32.79218],[76.37431,32.79771],[76.37619,32.80308],[76.37329,32.80769],[76.37292,32.81336],[76.37655,32.82036],[76.39228,32.82525],[76.40728,32.83976],[76.41431,32.84324],[76.42535,32.84336],[76.42994,32.84519],[76.43692,32.85137],[76.43958,32.8559],[76.44154,32.85367],[76.44308,32.85597],[76.44467,32.85379],[76.45314,32.84989],[76.46683,32.82685],[76.47405,32.82102],[76.47193,32.81457],[76.46984,32.81303],[76.46978,32.80634],[76.49124,32.80202],[76.50625,32.80467],[76.51224,32.8042],[76.5145,32.80673],[76.52183,32.80687],[76.53324,32.81416],[76.53943,32.81586],[76.54936,32.8158],[76.56088,32.822],[76.57368,32.82391],[76.58165,32.83268],[76.58649,32.84074],[76.59883,32.84344],[76.60688,32.85145],[76.60815,32.84962],[76.61022,32.85159],[76.61258,32.84855],[76.61561,32.84769],[76.62109,32.84996],[76.62899,32.85011],[76.64564,32.85398],[76.64983,32.85221],[76.6521,32.84751],[76.65723,32.84302],[76.66491,32.84606],[76.67579,32.84651],[76.68091,32.85137],[76.68705,32.86208],[76.69122,32.86502],[76.69299,32.87251],[76.70034,32.88089],[76.70718,32.8839],[76.70711,32.89495],[76.71101,32.90424],[76.70992,32.9094],[76.7129,32.91745],[76.72094,32.91986],[76.72267,32.92545],[76.72974,32.92963],[76.73581,32.9299],[76.75588,32.92487],[76.76926,32.93534],[76.7698,32.94274],[76.78135,32.95199],[76.78158,32.95786],[76.77875,32.96081],[76.78191,32.96864],[76.77806,32.9717],[76.77555,32.97777],[76.77643,32.98189],[76.76981,32.98443],[76.76645,32.98908],[76.76595,32.99272],[76.76706,32.9991],[76.77209,33.00211],[76.77413,33.01325],[76.77641,33.01702],[76.76153,33.01839],[76.7598,33.03453],[76.75576,33.03547],[76.75174,33.04163],[76.75396,33.04727],[76.74602,33.05546],[76.73943,33.07733],[76.73631,33.08257],[76.7382,33.0914],[76.73584,33.10383],[76.73965,33.11419],[76.7392,33.11954],[76.74231,33.12858],[76.74632,33.13053],[76.74879,33.1396],[76.74865,33.15135],[76.74305,33.1568],[76.74575,33.16853],[76.74925,33.17574],[76.7483,33.17936],[76.72895,33.1767],[76.71997,33.18168],[76.70932,33.1807],[76.70726,33.17687],[76.69963,33.17317],[76.6859,33.17352],[76.67166,33.17066],[76.66461,33.17128],[76.655,33.16375],[76.64837,33.164],[76.64444,33.16187],[76.63941,33.16166],[76.62338,33.16691],[76.61257,33.17338],[76.61107,33.18734],[76.60494,33.19061],[76.60061,33.18879],[76.59767,33.19169],[76.59725,33.1968],[76.59923,33.20307],[76.59732,33.20498],[76.59497,33.20619],[76.59112,33.20486],[76.58337,33.20662],[76.57266,33.20633]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"160","area_level":"District","area_name":"Kushinagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.87873,27.29132],[83.87828,27.29394],[83.87342,27.29725],[83.86712,27.29305],[83.86648,27.29094],[83.86212,27.29491],[83.85787,27.29149],[83.84738,27.28909],[83.83962,27.28289],[83.83686,27.27852],[83.83766,27.26919],[83.84948,27.25331],[83.83793,27.24845],[83.81909,27.24843],[83.8173,27.24707],[83.81691,27.24107],[83.80745,27.24978],[83.80461,27.24558],[83.80017,27.24708],[83.7949,27.24422],[83.79524,27.23603],[83.80036,27.23261],[83.80503,27.23263],[83.80754,27.22852],[83.81351,27.23042],[83.817,27.23378],[83.82112,27.2323],[83.82605,27.22592],[83.83037,27.21401],[83.83285,27.21209],[83.83054,27.2053],[83.82689,27.20161],[83.82124,27.1999],[83.81169,27.2058],[83.80607,27.2157],[83.80177,27.21661],[83.79881,27.21498],[83.79747,27.21155],[83.80023,27.19624],[83.80613,27.19097],[83.81207,27.18827],[83.81268,27.18603],[83.79623,27.17423],[83.78494,27.17089],[83.78234,27.16601],[83.78703,27.16392],[83.79111,27.16429],[83.79801,27.16969],[83.81227,27.17145],[83.82207,27.17632],[83.82422,27.17625],[83.82516,27.17445],[83.81121,27.16184],[83.80608,27.1427],[83.80493,27.11534],[83.80109,27.10997],[83.79336,27.10642],[83.77656,27.10628],[83.77521,27.09366],[83.77283,27.08906],[83.76029,27.08583],[83.74584,27.0771],[83.74759,27.07364],[83.75623,27.07285],[83.76301,27.07483],[83.76784,27.07383],[83.76675,27.06102],[83.76816,27.05342],[83.76322,27.04864],[83.75901,27.04812],[83.75136,27.05514],[83.74502,27.05748],[83.73427,27.05796],[83.72993,27.05541],[83.73468,27.04926],[83.73688,27.03685],[83.74405,27.03403],[83.75192,27.03727],[83.75558,27.03522],[83.7549,27.03307],[83.74867,27.03164],[83.74522,27.02856],[83.74416,27.01823],[83.74557,27.01194],[83.75672,27.00752],[83.75605,27.00317],[83.75863,27.00496],[83.7635,27.00193],[83.76522,27.00239],[83.7631,26.99771],[83.75836,26.99419],[83.74898,26.99496],[83.74892,26.99751],[83.74295,26.99561],[83.74331,26.99754],[83.74175,26.99844],[83.74123,26.99489],[83.73984,26.99447],[83.7397,26.99637],[83.73899,26.99306],[83.73639,26.99236],[83.73447,26.98861],[83.73294,26.9895],[83.73218,26.97885],[83.73024,26.97669],[83.73153,26.9732],[83.72858,26.96957],[83.73079,26.96642],[83.72852,26.9655],[83.73044,26.96483],[83.72884,26.95927],[83.73115,26.95884],[83.72801,26.95402],[83.72049,26.95032],[83.71263,26.95473],[83.71269,26.9565],[83.70772,26.96245],[83.69752,26.96229],[83.68208,26.96511],[83.68326,26.95064],[83.67873,26.94844],[83.67873,26.94695],[83.66969,26.94761],[83.65939,26.95325],[83.65696,26.95073],[83.65192,26.9508],[83.63404,26.95683],[83.63025,26.95498],[83.62445,26.95574],[83.62199,26.94697],[83.62633,26.9447],[83.62848,26.94131],[83.62655,26.93008],[83.61685,26.9315],[83.612,26.92889],[83.61105,26.92568],[83.60854,26.92571],[83.60787,26.92238],[83.60904,26.92202],[83.60637,26.91161],[83.59919,26.9119],[83.59093,26.91568],[83.59584,26.92609],[83.59156,26.93072],[83.58899,26.9309],[83.58891,26.93267],[83.5863,26.93334],[83.58441,26.93016],[83.57746,26.92834],[83.57171,26.9311],[83.5724,26.9335],[83.57058,26.93391],[83.56476,26.92256],[83.55954,26.92359],[83.558,26.92012],[83.55543,26.90753],[83.55857,26.90582],[83.55509,26.88992],[83.55341,26.88867],[83.54617,26.88942],[83.54087,26.87296],[83.54057,26.87067],[83.54282,26.87015],[83.53869,26.86251],[83.53302,26.86303],[83.52968,26.85955],[83.52671,26.8594],[83.52816,26.85781],[83.52445,26.85258],[83.53134,26.85178],[83.54858,26.84555],[83.54664,26.83886],[83.54772,26.83804],[83.55294,26.83641],[83.56232,26.83629],[83.56104,26.82383],[83.56557,26.82352],[83.56588,26.81937],[83.569,26.81593],[83.57802,26.81497],[83.57961,26.81328],[83.57907,26.81062],[83.58489,26.80763],[83.5896,26.79792],[83.59557,26.79069],[83.59076,26.78241],[83.59305,26.7695],[83.58804,26.77019],[83.58655,26.76035],[83.5962,26.75902],[83.59792,26.7561],[83.60056,26.75766],[83.60522,26.75553],[83.6099,26.75876],[83.61136,26.75771],[83.60917,26.7559],[83.61007,26.75483],[83.6154,26.75481],[83.61663,26.75619],[83.62206,26.7546],[83.61853,26.74877],[83.61544,26.74995],[83.61387,26.74876],[83.61377,26.74451],[83.61003,26.73942],[83.61327,26.7346],[83.61328,26.73095],[83.61853,26.72759],[83.62323,26.72706],[83.62214,26.72545],[83.62376,26.71889],[83.62229,26.71467],[83.62322,26.71169],[83.6206,26.71439],[83.62142,26.7116],[83.61971,26.70897],[83.62078,26.70741],[83.61697,26.70564],[83.61985,26.70514],[83.61958,26.70321],[83.61759,26.70448],[83.61549,26.70346],[83.61595,26.70174],[83.6181,26.70265],[83.62044,26.7008],[83.62039,26.69684],[83.62463,26.69196],[83.62167,26.68864],[83.62578,26.68959],[83.62443,26.68763],[83.62583,26.68446],[83.62413,26.68369],[83.62621,26.68037],[83.62446,26.67852],[83.62663,26.67731],[83.62555,26.675],[83.62373,26.67481],[83.62413,26.66687],[83.62785,26.66408],[83.62794,26.66233],[83.63083,26.66123],[83.64397,26.6594],[83.6493,26.65981],[83.64896,26.66135],[83.65451,26.66029],[83.65338,26.66193],[83.65502,26.66733],[83.66154,26.67907],[83.66341,26.67893],[83.66419,26.68306],[83.67221,26.68383],[83.67355,26.6913],[83.67622,26.69198],[83.68005,26.70205],[83.68815,26.70023],[83.68845,26.70373],[83.69435,26.70237],[83.69836,26.69942],[83.6955,26.68745],[83.6933,26.68417],[83.69526,26.68284],[83.70305,26.68301],[83.71104,26.68848],[83.72165,26.68732],[83.72175,26.69134],[83.72019,26.69179],[83.72321,26.6984],[83.73815,26.69633],[83.73779,26.69508],[83.74479,26.69203],[83.75018,26.69313],[83.75388,26.695],[83.75692,26.70678],[83.7607,26.70526],[83.76635,26.69895],[83.76776,26.70175],[83.77041,26.70019],[83.76951,26.70345],[83.776,26.70384],[83.77721,26.71031],[83.79029,26.70917],[83.7911,26.71431],[83.79919,26.71513],[83.80109,26.71752],[83.80051,26.71922],[83.80275,26.72063],[83.80073,26.72392],[83.80137,26.72643],[83.80804,26.72481],[83.80863,26.72927],[83.80719,26.73172],[83.80936,26.74154],[83.80913,26.75032],[83.81009,26.74862],[83.81287,26.74825],[83.81406,26.74498],[83.81576,26.74786],[83.81899,26.74615],[83.824,26.74693],[83.82791,26.74488],[83.83038,26.74585],[83.83176,26.74449],[83.83404,26.74757],[83.83642,26.74717],[83.84108,26.75048],[83.83577,26.75069],[83.83726,26.75652],[83.83996,26.75918],[83.84997,26.74847],[83.86165,26.75073],[83.86997,26.74948],[83.8761,26.74176],[83.88763,26.73426],[83.88952,26.72619],[83.89529,26.71724],[83.8961,26.71338],[83.89436,26.71114],[83.89458,26.70628],[83.90308,26.70172],[83.90219,26.6973],[83.90584,26.69083],[83.91255,26.69045],[83.91494,26.68606],[83.92061,26.68447],[83.9209,26.68135],[83.92434,26.67857],[83.92739,26.67928],[83.93168,26.67676],[83.93681,26.67879],[83.94677,26.67562],[83.9506,26.67713],[83.9553,26.67368],[83.95732,26.67483],[83.96122,26.67036],[83.96066,26.66106],[83.95901,26.65776],[83.96248,26.65776],[83.96718,26.64447],[83.96534,26.63738],[83.96154,26.63262],[83.963,26.62863],[83.96639,26.62463],[83.97462,26.62299],[83.98625,26.61275],[83.98831,26.60156],[83.99268,26.59507],[83.99505,26.59339],[83.99694,26.59623],[84.00428,26.59348],[84.0046,26.58811],[84.00725,26.58555],[84.00993,26.57894],[84.01487,26.57551],[84.01791,26.5771],[84.03121,26.57261],[84.03383,26.56394],[84.04553,26.55364],[84.05187,26.55132],[84.05477,26.55113],[84.0551,26.55838],[84.05941,26.56128],[84.05838,26.56327],[84.06064,26.5682],[84.06688,26.57269],[84.06611,26.57699],[84.0756,26.58341],[84.07617,26.58813],[84.07813,26.59053],[84.08329,26.59249],[84.08488,26.59828],[84.08909,26.60302],[84.08998,26.60693],[84.08636,26.6124],[84.08863,26.61784],[84.0852,26.62383],[84.08735,26.62585],[84.0884,26.63487],[84.0865,26.63914],[84.1006,26.63595],[84.10296,26.63351],[84.11197,26.63064],[84.11251,26.6344],[84.13055,26.63346],[84.13632,26.63603],[84.14516,26.63472],[84.1587,26.6362],[84.15885,26.63213],[84.15662,26.62697],[84.16029,26.62451],[84.16927,26.62264],[84.17362,26.62282],[84.17443,26.62427],[84.20119,26.62477],[84.20848,26.62276],[84.21108,26.62001],[84.22795,26.61751],[84.22928,26.61654],[84.22923,26.61315],[84.2391,26.61298],[84.23956,26.61001],[84.26647,26.60574],[84.2686,26.60361],[84.26792,26.60165],[84.28132,26.5996],[84.28453,26.59959],[84.28582,26.6058],[84.29451,26.6026],[84.29582,26.60446],[84.30011,26.60378],[84.30325,26.61444],[84.30542,26.61427],[84.30727,26.61632],[84.316,26.61448],[84.3191,26.61151],[84.3258,26.61162],[84.33163,26.61249],[84.33502,26.61555],[84.35399,26.61998],[84.36487,26.61632],[84.37879,26.6147],[84.38619,26.62168],[84.39073,26.62109],[84.39988,26.62454],[84.4104,26.62322],[84.41956,26.62619],[84.40978,26.64674],[84.41122,26.65036],[84.41041,26.67025],[84.4063,26.67092],[84.40516,26.67303],[84.40391,26.67177],[84.37658,26.6775],[84.35018,26.67805],[84.34304,26.6809],[84.33503,26.68155],[84.33006,26.6841],[84.32586,26.71415],[84.32424,26.71516],[84.31811,26.73199],[84.31468,26.73531],[84.31421,26.73904],[84.30587,26.74949],[84.28579,26.74993],[84.27568,26.74197],[84.26629,26.73995],[84.25542,26.72662],[84.24942,26.72916],[84.24067,26.73872],[84.23258,26.75367],[84.25,26.77373],[84.25717,26.78938],[84.25998,26.80503],[84.26,26.80699],[84.25421,26.81243],[84.25682,26.81823],[84.25036,26.81933],[84.25354,26.82523],[84.26093,26.83022],[84.2601,26.83351],[84.26181,26.84258],[84.25693,26.84922],[84.25409,26.85659],[84.23557,26.86771],[84.21949,26.8716],[84.20611,26.86172],[84.19786,26.85955],[84.19303,26.86075],[84.19013,26.85847],[84.1833,26.84751],[84.18679,26.84164],[84.18174,26.83348],[84.1776,26.83239],[84.1661,26.83377],[84.15622,26.83756],[84.14917,26.84258],[84.14584,26.8481],[84.14061,26.85265],[84.14037,26.8676],[84.14233,26.87153],[84.14709,26.87245],[84.14351,26.87961],[84.14771,26.88228],[84.14641,26.88542],[84.14153,26.88712],[84.14,26.88463],[84.13547,26.88333],[84.13128,26.88445],[84.129,26.8932],[84.11795,26.88771],[84.11636,26.88912],[84.11587,26.89494],[84.11042,26.8986],[84.10758,26.89693],[84.10676,26.88774],[84.1045,26.88191],[84.09814,26.87594],[84.09649,26.87623],[84.09433,26.88162],[84.08736,26.88169],[84.08421,26.87744],[84.08141,26.87737],[84.07822,26.87904],[84.07521,26.88342],[84.06699,26.88849],[84.06027,26.8881],[84.06085,26.89563],[84.05806,26.90189],[84.05528,26.90263],[84.05237,26.90641],[84.05309,26.9096],[84.05909,26.91646],[84.05997,26.92019],[84.05621,26.92311],[84.05336,26.92967],[84.04323,26.93179],[84.04654,26.93916],[84.04311,26.9405],[84.03497,26.9382],[84.03214,26.94118],[84.03491,26.94521],[84.04201,26.9468],[84.04597,26.95245],[84.0528,26.95498],[84.05483,26.96006],[84.053,26.9675],[84.05379,26.97523],[84.04576,26.98224],[84.04785,26.9846],[84.054,26.98517],[84.0567,26.98966],[84.05256,26.9947],[84.05281,26.99695],[84.0459,27.005],[84.03731,27.00908],[84.04425,27.01672],[84.04413,27.02318],[84.04953,27.03502],[84.0495,27.04327],[84.04714,27.04576],[84.03908,27.04404],[84.03132,27.04563],[84.02818,27.04947],[84.018,27.05602],[84.01189,27.05698],[84.0056,27.06023],[84.00006,27.06859],[84.00396,27.07152],[84.0166,27.0718],[84.02048,27.07941],[84.02862,27.08603],[84.02494,27.09248],[84.03037,27.09384],[84.03034,27.09763],[84.02397,27.10012],[84.02201,27.10413],[84.01644,27.10542],[84.00877,27.09924],[84.0032,27.10186],[83.99999,27.10029],[83.98926,27.09085],[83.9784,27.09076],[83.96698,27.08712],[83.9644,27.08412],[83.95284,27.08493],[83.94647,27.09082],[83.94767,27.11249],[83.95219,27.11862],[83.95952,27.12207],[83.9628,27.12769],[83.95906,27.13688],[83.97536,27.15582],[83.97874,27.16487],[83.99421,27.17453],[83.99339,27.18164],[83.98882,27.18843],[83.98731,27.19701],[83.97177,27.20845],[83.96747,27.20951],[83.96752,27.21306],[83.97274,27.21819],[83.97117,27.22243],[83.96254,27.22664],[83.96307,27.22891],[83.95563,27.2353],[83.94826,27.23782],[83.9324,27.23936],[83.91177,27.24595],[83.90507,27.25762],[83.90469,27.27238],[83.90714,27.27578],[83.89442,27.28535],[83.88113,27.28363],[83.87873,27.29132]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"161","area_level":"District","area_name":"Lalitpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.57039,25.21052],[78.57031,25.22371],[78.56819,25.22474],[78.56379,25.2222],[78.53727,25.18404],[78.53049,25.17813],[78.50535,25.16491],[78.49665,25.15368],[78.49142,25.15139],[78.48436,25.14312],[78.47179,25.13751],[78.44927,25.12297],[78.44404,25.12076],[78.43444,25.12014],[78.41544,25.12843],[78.40682,25.12893],[78.39973,25.12411],[78.38786,25.10572],[78.38345,25.10172],[78.36084,25.09573],[78.33863,25.08658],[78.3355,25.08114],[78.33549,25.06656],[78.34018,25.04028],[78.34737,25.02153],[78.34536,25.01208],[78.33385,24.9955],[78.31682,24.99001],[78.31181,24.98563],[78.30703,24.97747],[78.29459,24.96306],[78.28666,24.95814],[78.27915,24.95607],[78.27093,24.94877],[78.26595,24.94102],[78.25623,24.9368],[78.2494,24.92987],[78.22381,24.91531],[78.21059,24.89481],[78.19495,24.88943],[78.17705,24.88081],[78.17097,24.87527],[78.16897,24.86262],[78.17327,24.84669],[78.17751,24.84333],[78.19347,24.84252],[78.19929,24.83786],[78.20403,24.8244],[78.21668,24.80859],[78.23174,24.77714],[78.23535,24.77274],[78.23505,24.76381],[78.23178,24.76236],[78.22747,24.75672],[78.22557,24.75303],[78.22562,24.74823],[78.23242,24.73602],[78.25035,24.71148],[78.25752,24.70417],[78.26534,24.67934],[78.27678,24.66251],[78.27404,24.65709],[78.26405,24.6511],[78.26267,24.646],[78.26532,24.63141],[78.27618,24.61948],[78.27798,24.61476],[78.2733,24.59576],[78.27289,24.57941],[78.26733,24.57595],[78.26482,24.5675],[78.26646,24.55939],[78.26447,24.5522],[78.2561,24.54714],[78.24351,24.5442],[78.22944,24.53753],[78.22661,24.53393],[78.22518,24.52237],[78.22998,24.51596],[78.23492,24.51324],[78.24442,24.51142],[78.24602,24.50954],[78.24773,24.5026],[78.24406,24.48905],[78.24589,24.48614],[78.24957,24.48358],[78.26802,24.47904],[78.27498,24.47392],[78.27379,24.46723],[78.26416,24.4557],[78.26452,24.4531],[78.26969,24.44694],[78.307,24.42309],[78.32189,24.4088],[78.34075,24.40207],[78.34385,24.39914],[78.34491,24.39387],[78.3489,24.38744],[78.3562,24.38543],[78.36579,24.38598],[78.36967,24.37493],[78.35793,24.36758],[78.35693,24.36282],[78.3468,24.35241],[78.34329,24.34462],[78.33128,24.33432],[78.32908,24.32713],[78.33146,24.32393],[78.34369,24.31731],[78.34587,24.31391],[78.34559,24.30624],[78.34805,24.29958],[78.35816,24.29231],[78.36627,24.29107],[78.37033,24.28404],[78.3781,24.28408],[78.38085,24.28041],[78.38187,24.27312],[78.3849,24.27001],[78.38705,24.2709],[78.38787,24.26905],[78.38852,24.27085],[78.39162,24.27068],[78.39538,24.26896],[78.39813,24.26944],[78.40001,24.27202],[78.40345,24.2706],[78.40997,24.27112],[78.41396,24.27298],[78.41408,24.27792],[78.4184,24.28494],[78.4242,24.28558],[78.43109,24.28403],[78.43388,24.28792],[78.43394,24.29127],[78.44015,24.29624],[78.43762,24.30858],[78.43869,24.31254],[78.44587,24.31587],[78.44389,24.31935],[78.45527,24.32407],[78.45639,24.32818],[78.46366,24.33013],[78.47758,24.33848],[78.47421,24.34777],[78.47429,24.35634],[78.48579,24.36934],[78.49362,24.38138],[78.50223,24.39034],[78.51838,24.38782],[78.52565,24.38319],[78.52729,24.37914],[78.52983,24.37891],[78.52723,24.37525],[78.52991,24.37238],[78.52988,24.3681],[78.53837,24.36795],[78.55934,24.35674],[78.56331,24.35798],[78.57319,24.35099],[78.575,24.35532],[78.57647,24.35565],[78.586,24.35374],[78.5831,24.34983],[78.58429,24.3465],[78.58929,24.33772],[78.5961,24.33518],[78.59652,24.332],[78.60104,24.32655],[78.60365,24.3145],[78.60942,24.30855],[78.61582,24.30963],[78.61821,24.30709],[78.61914,24.31033],[78.62341,24.3071],[78.62624,24.30732],[78.62844,24.30394],[78.62809,24.30031],[78.61997,24.29289],[78.62003,24.29032],[78.62454,24.28656],[78.6258,24.28059],[78.63137,24.28643],[78.63877,24.28513],[78.64565,24.27853],[78.64928,24.27163],[78.66005,24.26759],[78.6643,24.2561],[78.66383,24.25067],[78.66712,24.24476],[78.66664,24.24196],[78.66863,24.24004],[78.68252,24.23823],[78.70306,24.22692],[78.70871,24.23431],[78.72557,24.23644],[78.72364,24.24],[78.72638,24.24203],[78.72789,24.24822],[78.73417,24.25241],[78.74126,24.24734],[78.74181,24.24501],[78.739,24.23808],[78.74042,24.23498],[78.7416,24.23384],[78.75042,24.23389],[78.75496,24.23834],[78.75545,24.24112],[78.75979,24.24407],[78.75987,24.25733],[78.76189,24.25954],[78.76741,24.25311],[78.76865,24.24843],[78.76766,24.23879],[78.76452,24.2318],[78.76751,24.22668],[78.76737,24.22021],[78.77133,24.21447],[78.77699,24.21108],[78.78113,24.20605],[78.78075,24.19977],[78.78554,24.1835],[78.78725,24.18266],[78.78943,24.17711],[78.80621,24.17829],[78.81162,24.17998],[78.81415,24.18426],[78.81221,24.19315],[78.81301,24.20354],[78.81495,24.2068],[78.82177,24.20415],[78.82376,24.19685],[78.82675,24.19545],[78.83807,24.20734],[78.84689,24.21377],[78.85168,24.21416],[78.85847,24.2097],[78.86251,24.20945],[78.8768,24.2138],[78.88466,24.21995],[78.88805,24.22728],[78.88407,24.24335],[78.88437,24.25],[78.90546,24.26453],[78.91607,24.26763],[78.91866,24.28298],[78.91161,24.288],[78.90964,24.298],[78.91888,24.30023],[78.92365,24.30649],[78.94125,24.31529],[78.96301,24.34421],[78.97145,24.34761],[78.9707,24.35138],[78.97259,24.35449],[78.96991,24.37028],[78.97503,24.37857],[78.97693,24.38875],[78.98435,24.40478],[78.98405,24.41026],[78.99245,24.41891],[78.99365,24.42275],[78.98576,24.44168],[78.96522,24.43873],[78.96096,24.43954],[78.9548,24.43703],[78.94748,24.43662],[78.94272,24.44408],[78.94178,24.45107],[78.93992,24.45345],[78.92827,24.46019],[78.91512,24.4582],[78.91421,24.45962],[78.91485,24.46229],[78.9127,24.46558],[78.91221,24.47344],[78.91634,24.48233],[78.92058,24.49972],[78.92495,24.49963],[78.92719,24.49452],[78.9318,24.49138],[78.93714,24.49105],[78.92792,24.48433],[78.92722,24.48207],[78.93622,24.47942],[78.94312,24.47901],[78.96347,24.48353],[78.97044,24.48922],[78.97152,24.49424],[78.96561,24.49792],[78.95705,24.49876],[78.94726,24.5024],[78.94804,24.51515],[78.95132,24.51878],[78.94648,24.52585],[78.94368,24.53451],[78.94815,24.54414],[78.95321,24.5469],[78.94711,24.55071],[78.94834,24.55425],[78.94645,24.55715],[78.93502,24.56076],[78.9338,24.56396],[78.92921,24.56573],[78.92493,24.57499],[78.92343,24.5735],[78.92015,24.57481],[78.91262,24.59074],[78.91257,24.60017],[78.91114,24.60012],[78.91003,24.60297],[78.90206,24.60616],[78.90207,24.60779],[78.90061,24.60722],[78.89915,24.61425],[78.89701,24.61479],[78.89479,24.6213],[78.8962,24.62572],[78.89218,24.62929],[78.88941,24.62962],[78.88999,24.63114],[78.88555,24.63495],[78.88636,24.63737],[78.88231,24.64041],[78.88311,24.6414],[78.87721,24.64221],[78.87705,24.64081],[78.87447,24.64178],[78.86802,24.63999],[78.86861,24.6368],[78.86623,24.62743],[78.85977,24.61764],[78.85555,24.61785],[78.85253,24.6247],[78.84873,24.62213],[78.8433,24.62329],[78.83776,24.6158],[78.83461,24.60456],[78.82637,24.6046],[78.82383,24.60244],[78.81679,24.60099],[78.81244,24.6021],[78.81145,24.60393],[78.80322,24.60353],[78.8032,24.59929],[78.799,24.59437],[78.78379,24.58856],[78.77657,24.58874],[78.76933,24.59417],[78.75203,24.60018],[78.75457,24.60382],[78.75109,24.61721],[78.75482,24.61992],[78.75208,24.62192],[78.7527,24.63401],[78.75001,24.64185],[78.75196,24.64241],[78.74948,24.64676],[78.75064,24.64856],[78.74919,24.64817],[78.74863,24.65106],[78.7454,24.6516],[78.74393,24.65406],[78.74719,24.65651],[78.74677,24.66268],[78.75051,24.66419],[78.75474,24.66915],[78.75879,24.66904],[78.76147,24.6709],[78.76522,24.68087],[78.76364,24.69048],[78.77098,24.69141],[78.77354,24.69662],[78.77795,24.69948],[78.781,24.70608],[78.78115,24.70893],[78.77685,24.71364],[78.77329,24.73117],[78.7723,24.74311],[78.7766,24.75183],[78.77,24.75808],[78.77135,24.76883],[78.77035,24.7747],[78.7728,24.78257],[78.7704,24.7884],[78.77429,24.79462],[78.78703,24.80131],[78.78984,24.81098],[78.78342,24.81612],[78.77593,24.83072],[78.77357,24.84094],[78.77477,24.84975],[78.77004,24.85902],[78.76219,24.86002],[78.7539,24.86883],[78.74676,24.86522],[78.72913,24.87895],[78.72217,24.88166],[78.71089,24.87966],[78.70503,24.88725],[78.69668,24.89318],[78.68365,24.89499],[78.67656,24.89863],[78.66724,24.91379],[78.66339,24.93844],[78.65577,24.94037],[78.65186,24.93838],[78.64988,24.94102],[78.65284,24.9438],[78.65236,24.94784],[78.63613,24.95927],[78.63173,24.95769],[78.63164,24.96162],[78.63394,24.96339],[78.633,24.96712],[78.64003,24.97208],[78.63893,24.97578],[78.6414,24.97778],[78.64143,24.98197],[78.64401,24.98429],[78.64471,25.00332],[78.64706,25.00612],[78.64572,25.0186],[78.65336,25.03145],[78.65192,25.03916],[78.65262,25.05059],[78.63602,25.07717],[78.62815,25.0862],[78.61198,25.08799],[78.60217,25.09494],[78.60568,25.10887],[78.60312,25.14687],[78.59599,25.16589],[78.58705,25.17853],[78.58334,25.18733],[78.57639,25.1952],[78.57054,25.20519],[78.57039,25.21052]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"162","area_level":"District","area_name":"Lucknow","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.93101,27.15731],[80.93034,27.15863],[80.92749,27.1571],[80.92259,27.15823],[80.9151,27.14835],[80.90739,27.1515],[80.89931,27.14152],[80.89785,27.1361],[80.8942,27.13219],[80.89459,27.12698],[80.88924,27.12615],[80.88677,27.12827],[80.88079,27.12898],[80.8769,27.12571],[80.86828,27.12336],[80.86677,27.12576],[80.86462,27.126],[80.86018,27.12114],[80.85496,27.12084],[80.85308,27.11685],[80.84759,27.11198],[80.83608,27.10813],[80.83812,27.10443],[80.83036,27.09992],[80.81995,27.09953],[80.81709,27.0975],[80.80637,27.10274],[80.80467,27.10055],[80.79529,27.10652],[80.79226,27.11091],[80.78713,27.10947],[80.78375,27.10412],[80.78381,27.10074],[80.78011,27.098],[80.77075,27.10316],[80.76563,27.08987],[80.76358,27.09139],[80.76137,27.09782],[80.7573,27.10067],[80.75339,27.09944],[80.73958,27.10221],[80.73695,27.09883],[80.73189,27.09823],[80.72026,27.08447],[80.71285,27.08139],[80.71354,27.07387],[80.71128,27.06913],[80.70328,27.07076],[80.70074,27.06231],[80.69642,27.06473],[80.69091,27.06373],[80.67931,27.066],[80.6726,27.07278],[80.66707,27.07554],[80.65775,27.07512],[80.64593,27.07786],[80.64271,27.07389],[80.64269,27.06967],[80.64693,27.07014],[80.65641,27.067],[80.65807,27.0649],[80.6569,27.06285],[80.64758,27.06325],[80.64383,27.0668],[80.64196,27.06182],[80.63327,27.05794],[80.6247,27.05684],[80.61541,27.03935],[80.60719,27.03781],[80.604,27.04043],[80.6048,27.04238],[80.59945,27.04398],[80.59411,27.03725],[80.58866,27.03944],[80.58603,27.03709],[80.58262,27.03734],[80.57758,27.03383],[80.57616,27.0301],[80.57933,27.02808],[80.5844,27.03029],[80.58653,27.02858],[80.58119,27.02236],[80.56811,27.01737],[80.56039,27.01052],[80.57866,26.99911],[80.58236,26.99251],[80.58693,26.99048],[80.5852,26.9873],[80.58761,26.9872],[80.58945,26.99099],[80.59297,26.99129],[80.59956,26.98661],[80.59868,26.98433],[80.60033,26.98345],[80.59514,26.97873],[80.59715,26.97716],[80.59515,26.97378],[80.59585,26.97182],[80.59304,26.96904],[80.59877,26.96411],[80.5949,26.95959],[80.59543,26.95542],[80.59415,26.9544],[80.5887,26.95711],[80.58626,26.95993],[80.58765,26.9626],[80.58321,26.9599],[80.57936,26.96084],[80.57064,26.95367],[80.56885,26.94945],[80.56647,26.94897],[80.56571,26.94406],[80.56127,26.93705],[80.56354,26.93442],[80.58047,26.92495],[80.58671,26.93355],[80.58749,26.93849],[80.58889,26.93849],[80.59263,26.94496],[80.59514,26.94335],[80.60046,26.9449],[80.60283,26.94403],[80.60534,26.94579],[80.60794,26.94416],[80.60948,26.94259],[80.60899,26.93745],[80.61181,26.93492],[80.61765,26.91709],[80.62242,26.91377],[80.62089,26.90956],[80.62659,26.90737],[80.63435,26.90687],[80.64065,26.90335],[80.63525,26.89828],[80.63198,26.89191],[80.62632,26.88897],[80.627,26.87857],[80.6356,26.88033],[80.64338,26.87795],[80.65531,26.87059],[80.65926,26.87025],[80.66851,26.86406],[80.67709,26.86229],[80.67823,26.8632],[80.68456,26.85546],[80.69454,26.85015],[80.68981,26.84274],[80.69148,26.84211],[80.69071,26.84034],[80.69258,26.83653],[80.69964,26.83152],[80.70359,26.83065],[80.70478,26.82716],[80.7073,26.82758],[80.71106,26.82164],[80.71467,26.82016],[80.71676,26.81729],[80.71505,26.81576],[80.71898,26.81136],[80.71767,26.80983],[80.7182,26.80576],[80.72161,26.80389],[80.7212,26.80067],[80.72613,26.79931],[80.72508,26.79666],[80.7344,26.79429],[80.74023,26.79034],[80.73629,26.78089],[80.73552,26.77278],[80.73867,26.77057],[80.73629,26.76571],[80.73685,26.76263],[80.73984,26.76144],[80.73817,26.76195],[80.73359,26.75616],[80.71163,26.75798],[80.69847,26.76499],[80.69258,26.76104],[80.69119,26.7576],[80.69714,26.74918],[80.69952,26.75243],[80.70104,26.75181],[80.70321,26.74765],[80.70091,26.74189],[80.70495,26.74022],[80.70474,26.73768],[80.70136,26.7337],[80.70216,26.73008],[80.70053,26.72732],[80.70645,26.72028],[80.70259,26.71989],[80.70063,26.72213],[80.69757,26.71936],[80.70041,26.71664],[80.7045,26.71773],[80.71385,26.71151],[80.71599,26.70408],[80.71334,26.70431],[80.71312,26.70307],[80.71876,26.70153],[80.71668,26.69931],[80.71246,26.6992],[80.7128,26.69697],[80.71114,26.69523],[80.70828,26.6958],[80.70896,26.69422],[80.70066,26.69292],[80.70031,26.69004],[80.69862,26.69126],[80.69526,26.68646],[80.70367,26.68208],[80.70577,26.68351],[80.7136,26.68127],[80.71507,26.67187],[80.71362,26.67016],[80.71648,26.66468],[80.72852,26.65578],[80.73764,26.66464],[80.74606,26.66677],[80.74607,26.67223],[80.74323,26.67609],[80.74444,26.67938],[80.74933,26.685],[80.75605,26.68843],[80.75534,26.68571],[80.75712,26.68216],[80.75846,26.68213],[80.76076,26.68638],[80.76191,26.68399],[80.75974,26.68307],[80.76335,26.68151],[80.76568,26.67704],[80.76764,26.67787],[80.76553,26.68021],[80.76568,26.68342],[80.76961,26.6823],[80.76969,26.67614],[80.76767,26.67205],[80.76473,26.67016],[80.76714,26.66824],[80.76667,26.66598],[80.77119,26.66311],[80.77239,26.66609],[80.7752,26.66641],[80.77712,26.66901],[80.78468,26.66603],[80.78319,26.66336],[80.78609,26.66243],[80.78647,26.65934],[80.79201,26.65629],[80.78777,26.65509],[80.78697,26.65292],[80.79424,26.65204],[80.79336,26.6452],[80.79647,26.64528],[80.80337,26.65106],[80.80253,26.65249],[80.80544,26.65478],[80.81315,26.65732],[80.81591,26.65391],[80.81711,26.65711],[80.82359,26.66159],[80.82497,26.66461],[80.83018,26.66272],[80.83372,26.66549],[80.84156,26.66548],[80.84473,26.66128],[80.8485,26.65099],[80.85181,26.65101],[80.85823,26.64729],[80.86531,26.64693],[80.87106,26.64295],[80.87559,26.63375],[80.88002,26.63073],[80.87754,26.62565],[80.87253,26.62546],[80.87018,26.62385],[80.86982,26.62121],[80.8745,26.61643],[80.87913,26.61861],[80.8791,26.62212],[80.88144,26.62454],[80.88383,26.62131],[80.88811,26.62284],[80.89202,26.62172],[80.89143,26.61651],[80.88791,26.61304],[80.89133,26.61],[80.88872,26.60393],[80.88994,26.60227],[80.88857,26.59915],[80.89031,26.59968],[80.89323,26.59631],[80.89761,26.59668],[80.89963,26.59406],[80.90207,26.59363],[80.90819,26.60066],[80.90697,26.59744],[80.91041,26.59367],[80.90859,26.59213],[80.91184,26.59132],[80.9084,26.59031],[80.91002,26.58847],[80.91211,26.59049],[80.92288,26.59112],[80.92294,26.59359],[80.92432,26.59412],[80.92542,26.5879],[80.92947,26.58901],[80.9316,26.5861],[80.92617,26.58462],[80.93002,26.57942],[80.93051,26.57479],[80.94121,26.5718],[80.93991,26.56938],[80.93538,26.57059],[80.93414,26.56875],[80.94221,26.56605],[80.948,26.56664],[80.95145,26.56921],[80.95324,26.56685],[80.95138,26.56353],[80.95215,26.56205],[80.95403,26.56281],[80.95674,26.56082],[80.96075,26.56268],[80.96481,26.56048],[80.96586,26.5559],[80.96867,26.5577],[80.97279,26.55754],[80.97221,26.55456],[80.96576,26.55325],[80.96753,26.54971],[80.97197,26.55329],[80.97865,26.55316],[80.9816,26.5502],[80.97935,26.5449],[80.98485,26.54827],[80.98748,26.54745],[80.98468,26.54004],[80.98963,26.53568],[80.99463,26.53748],[80.99663,26.53379],[81.00175,26.53294],[81.00212,26.52906],[81.00512,26.52707],[81.00836,26.52883],[81.01443,26.52681],[81.02349,26.52647],[81.02841,26.52159],[81.03292,26.52064],[81.03136,26.51579],[81.03938,26.50877],[81.03975,26.50646],[81.0465,26.50384],[81.05508,26.50675],[81.05783,26.51289],[81.06638,26.52209],[81.07265,26.52196],[81.07584,26.5255],[81.07552,26.53242],[81.079,26.53694],[81.08187,26.53578],[81.09215,26.54203],[81.09386,26.54562],[81.09328,26.55462],[81.09925,26.56274],[81.10434,26.56496],[81.10701,26.56222],[81.11368,26.56063],[81.11547,26.55835],[81.1201,26.5569],[81.1214,26.55909],[81.12519,26.55943],[81.12651,26.56385],[81.13234,26.57117],[81.133,26.5733],[81.13141,26.57505],[81.13313,26.57777],[81.13707,26.57881],[81.14103,26.58813],[81.16093,26.58722],[81.16607,26.59548],[81.16559,26.60166],[81.16276,26.60463],[81.16357,26.60612],[81.16706,26.60945],[81.17708,26.61345],[81.17645,26.61711],[81.17873,26.61955],[81.18231,26.61947],[81.18183,26.62287],[81.17853,26.62271],[81.17495,26.62701],[81.17299,26.6266],[81.1695,26.62937],[81.17261,26.6325],[81.17326,26.63569],[81.16654,26.64396],[81.17061,26.65078],[81.18287,26.66248],[81.18873,26.67075],[81.19055,26.67469],[81.1886,26.67661],[81.18983,26.67984],[81.19574,26.68316],[81.20996,26.70087],[81.20744,26.70252],[81.2094,26.7053],[81.21468,26.70264],[81.21757,26.70986],[81.2136,26.71547],[81.2154,26.72264],[81.20796,26.72392],[81.20344,26.72906],[81.20414,26.74282],[81.19812,26.75236],[81.18916,26.7621],[81.19391,26.7695],[81.21383,26.78334],[81.20558,26.78945],[81.1948,26.7924],[81.19209,26.79055],[81.19154,26.78105],[81.18726,26.77951],[81.17408,26.78933],[81.16506,26.77617],[81.15952,26.77529],[81.15815,26.77793],[81.16026,26.79105],[81.15645,26.79828],[81.16871,26.80797],[81.16673,26.80884],[81.16018,26.80709],[81.15679,26.81237],[81.15395,26.81368],[81.14364,26.81165],[81.14097,26.81257],[81.13862,26.81539],[81.13712,26.82738],[81.12982,26.83365],[81.10022,26.84046],[81.08981,26.83603],[81.08941,26.83969],[81.09198,26.84173],[81.0911,26.84534],[81.09526,26.85374],[81.09097,26.85853],[81.09582,26.86343],[81.09773,26.86878],[81.10047,26.86993],[81.09679,26.86953],[81.09968,26.87248],[81.09713,26.87651],[81.09869,26.87897],[81.09711,26.87882],[81.0984,26.88369],[81.08765,26.89014],[81.08872,26.892],[81.09134,26.89117],[81.09229,26.89425],[81.09793,26.89814],[81.09921,26.90213],[81.09405,26.90933],[81.09537,26.91416],[81.0877,26.9174],[81.082,26.91055],[81.07899,26.90957],[81.07241,26.91073],[81.06872,26.91895],[81.06355,26.9228],[81.06501,26.92522],[81.06308,26.92661],[81.0639,26.92835],[81.05435,26.93405],[81.04897,26.93425],[81.05004,26.93638],[81.04111,26.94004],[81.0428,26.94321],[81.04023,26.946],[81.04237,26.95549],[81.0444,26.95725],[81.04673,26.95634],[81.04839,26.9613],[81.05299,26.9593],[81.05764,26.96016],[81.06361,26.96829],[81.05363,26.97406],[81.04826,26.96834],[81.04365,26.96781],[81.04043,26.96928],[81.03524,26.96483],[81.02984,26.96756],[81.0217,26.97664],[81.02833,26.98524],[81.02449,26.98837],[81.01985,26.98897],[81.01576,26.99381],[81.00751,26.99871],[81.00577,26.99645],[80.99971,27.00017],[80.99641,27.00023],[80.9956,27.00327],[80.99763,27.00714],[80.99584,27.01077],[81.00178,27.01988],[80.99316,27.02492],[80.99983,27.03209],[81.00182,27.03783],[80.98286,27.04015],[80.97826,27.03779],[80.9761,27.04355],[80.97717,27.04638],[80.97203,27.05515],[80.97504,27.06114],[80.97993,27.06249],[80.98346,27.06986],[80.98774,27.06721],[80.99382,27.07581],[80.9964,27.07364],[81.00618,27.07159],[81.01115,27.06846],[81.01208,27.06571],[81.01885,27.06832],[81.02325,27.07347],[81.03092,27.07093],[81.0332,27.07425],[81.03689,27.07336],[81.04203,27.07848],[81.04487,27.07782],[81.04525,27.0813],[81.04909,27.08778],[81.04764,27.09122],[81.04861,27.09266],[81.04361,27.09398],[81.03545,27.09194],[81.03597,27.09718],[81.03425,27.09927],[81.03176,27.09758],[81.01573,27.10538],[81.01747,27.10707],[81.01941,27.1058],[81.01997,27.11019],[81.02285,27.11259],[81.02437,27.11896],[81.02076,27.12715],[81.01425,27.13034],[81.01551,27.13377],[81.01425,27.13443],[81.01474,27.13627],[81.01192,27.13717],[81.01297,27.14015],[81.01153,27.14112],[80.99793,27.14764],[80.99294,27.14309],[80.99023,27.13801],[80.98426,27.1382],[80.97954,27.14208],[80.97721,27.14163],[80.97705,27.13951],[80.96424,27.14512],[80.95918,27.14178],[80.95327,27.14081],[80.94827,27.14221],[80.94927,27.14611],[80.94814,27.14969],[80.9441,27.1489],[80.93101,27.15731]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"163","area_level":"District","area_name":"Hathras","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.41388,27.84582],[78.40848,27.84794],[78.40552,27.84186],[78.40669,27.83415],[78.40555,27.8315],[78.39755,27.82828],[78.39097,27.82005],[78.38429,27.81485],[78.37925,27.80235],[78.37196,27.79708],[78.36344,27.78618],[78.36669,27.77854],[78.36484,27.76909],[78.37163,27.75016],[78.37059,27.74826],[78.35258,27.74439],[78.32695,27.72245],[78.30361,27.72214],[78.29127,27.71604],[78.29151,27.71401],[78.28755,27.71117],[78.27131,27.70632],[78.26402,27.699],[78.25682,27.6832],[78.24036,27.66506],[78.23807,27.66797],[78.22752,27.67367],[78.21982,27.68628],[78.21617,27.68873],[78.21571,27.69464],[78.21172,27.69285],[78.2038,27.69298],[78.19209,27.70621],[78.17326,27.71559],[78.17844,27.72082],[78.18242,27.72177],[78.17702,27.72842],[78.17492,27.73423],[78.17181,27.73561],[78.18193,27.74648],[78.17837,27.75084],[78.18047,27.75328],[78.16976,27.76179],[78.16484,27.76344],[78.16285,27.76143],[78.15776,27.76199],[78.15142,27.75822],[78.14606,27.76496],[78.13562,27.77227],[78.13219,27.76796],[78.12592,27.77203],[78.12454,27.77054],[78.1237,27.77154],[78.11778,27.76522],[78.11178,27.76871],[78.1047,27.76815],[78.09716,27.76508],[78.09265,27.76777],[78.08693,27.76523],[78.08034,27.77216],[78.07624,27.76865],[78.0664,27.77023],[78.06679,27.77472],[78.07179,27.77924],[78.06143,27.79317],[78.04395,27.78281],[78.04044,27.78438],[78.04057,27.77545],[78.04253,27.77426],[78.04169,27.77187],[78.03685,27.7716],[78.02996,27.76696],[78.02594,27.76904],[78.0244,27.76817],[78.02346,27.76505],[78.01934,27.76207],[78.01753,27.7584],[78.02067,27.75216],[78.02321,27.75026],[78.02641,27.75301],[78.03884,27.748],[78.04181,27.74948],[78.04395,27.74572],[78.0307,27.7328],[78.02004,27.7383],[78.01818,27.7373],[78.01336,27.74102],[78.01233,27.74023],[78.00819,27.73161],[78.00445,27.72834],[78.00804,27.72413],[78.01115,27.72554],[78.01524,27.72135],[78.01388,27.71824],[78.01529,27.71639],[78.0096,27.70931],[78.001,27.70414],[78.00297,27.70123],[77.99843,27.6956],[77.99128,27.69185],[77.99845,27.68589],[78.00705,27.6827],[78.01021,27.67827],[78.02159,27.67043],[78.02256,27.66654],[78.01948,27.6608],[78.01477,27.65867],[78.01864,27.65259],[78.02186,27.65089],[78.02237,27.64821],[78.02113,27.64626],[78.01717,27.64544],[78.01323,27.64791],[78.00523,27.64926],[77.9988,27.64303],[77.98558,27.63505],[77.98144,27.62153],[77.98845,27.61428],[78.00187,27.60526],[77.99629,27.60168],[77.98713,27.60381],[77.97864,27.60286],[77.9755,27.6012],[77.97147,27.59583],[77.96419,27.60377],[77.96278,27.60734],[77.96331,27.61251],[77.96,27.61537],[77.95353,27.61205],[77.95492,27.61028],[77.94762,27.60424],[77.94089,27.61004],[77.91925,27.60129],[77.91609,27.59648],[77.91691,27.59421],[77.91837,27.59415],[77.91642,27.59307],[77.91869,27.59036],[77.90975,27.59137],[77.90779,27.58795],[77.90424,27.58865],[77.89922,27.57981],[77.9043,27.57414],[77.90417,27.57249],[77.9059,27.57261],[77.9038,27.56907],[77.90618,27.56622],[77.90995,27.56541],[77.90645,27.56304],[77.90474,27.5541],[77.89388,27.55203],[77.88985,27.54087],[77.88593,27.53887],[77.87929,27.53998],[77.87384,27.53014],[77.87672,27.52728],[77.87714,27.52286],[77.87977,27.52004],[77.88388,27.52034],[77.88643,27.51845],[77.8915,27.51901],[77.89766,27.51588],[77.90008,27.51743],[77.90508,27.51229],[77.90775,27.50378],[77.91273,27.50031],[77.9099,27.49716],[77.91286,27.49452],[77.91001,27.48804],[77.91762,27.48445],[77.92747,27.47599],[77.92809,27.47334],[77.92788,27.47173],[77.92138,27.46961],[77.91487,27.46494],[77.9117,27.46684],[77.9103,27.46583],[77.90723,27.46023],[77.89482,27.44892],[77.89847,27.44392],[77.90869,27.43665],[77.91761,27.44433],[77.91895,27.44368],[77.92079,27.44535],[77.93104,27.43951],[77.92537,27.43219],[77.93205,27.42166],[77.92902,27.41903],[77.92442,27.42027],[77.91559,27.41814],[77.9139,27.41875],[77.91479,27.42074],[77.9133,27.42271],[77.90865,27.42566],[77.90361,27.42013],[77.89773,27.4197],[77.89284,27.41613],[77.89594,27.41325],[77.89281,27.41107],[77.88882,27.40431],[77.89946,27.39898],[77.89893,27.39764],[77.90123,27.39783],[77.90095,27.39609],[77.90371,27.39454],[77.90181,27.39348],[77.90716,27.3898],[77.90341,27.38736],[77.90752,27.38483],[77.89818,27.37337],[77.90428,27.36924],[77.90218,27.3663],[77.90362,27.36547],[77.90144,27.35893],[77.90354,27.3583],[77.89656,27.3492],[77.89484,27.34969],[77.89161,27.34754],[77.88795,27.33827],[77.89285,27.33544],[77.89938,27.33567],[77.90404,27.33249],[77.90786,27.33281],[77.90962,27.3319],[77.9091,27.33066],[77.91241,27.32963],[77.91035,27.32872],[77.90612,27.32013],[77.90966,27.31547],[77.93141,27.30093],[77.94084,27.29695],[77.9408,27.30095],[77.96307,27.32959],[77.98055,27.32542],[77.98272,27.32669],[77.98728,27.32523],[77.98939,27.32686],[77.99468,27.32508],[77.99369,27.32723],[77.99652,27.32877],[78.00183,27.32339],[78.00471,27.32369],[78.00371,27.32172],[78.01161,27.31907],[78.0136,27.32282],[78.01127,27.32307],[78.00967,27.32649],[78.01317,27.32651],[78.01344,27.32438],[78.01689,27.32162],[78.02337,27.3269],[78.02839,27.32668],[78.02971,27.32857],[78.02889,27.333],[78.03498,27.33259],[78.04076,27.33553],[78.03782,27.34097],[78.04388,27.34818],[78.05818,27.34099],[78.05777,27.33922],[78.0621,27.33911],[78.07165,27.33476],[78.07473,27.3374],[78.07269,27.34177],[78.07555,27.3481],[78.07946,27.35184],[78.08427,27.35133],[78.08493,27.35589],[78.08863,27.35694],[78.08248,27.3581],[78.06638,27.36909],[78.06285,27.36657],[78.05042,27.36942],[78.05391,27.37634],[78.05176,27.37715],[78.05604,27.38138],[78.05818,27.38173],[78.0584,27.38045],[78.063,27.38193],[78.06503,27.38005],[78.06721,27.3805],[78.0696,27.37903],[78.06913,27.37673],[78.07114,27.37962],[78.06961,27.38096],[78.07305,27.38689],[78.07995,27.39036],[78.08008,27.39339],[78.0859,27.38653],[78.09016,27.38514],[78.09155,27.38081],[78.1032,27.36961],[78.10818,27.36742],[78.12143,27.37266],[78.12347,27.36817],[78.13568,27.36458],[78.15111,27.38197],[78.15716,27.38414],[78.16152,27.38807],[78.16897,27.38495],[78.17526,27.38954],[78.17398,27.39163],[78.17524,27.3938],[78.17104,27.39702],[78.17198,27.39847],[78.17621,27.39789],[78.17851,27.4006],[78.17857,27.405],[78.17623,27.40647],[78.17896,27.40939],[78.19122,27.40152],[78.19691,27.40255],[78.19657,27.40728],[78.19426,27.40908],[78.19266,27.41594],[78.19696,27.41853],[78.19835,27.42313],[78.19707,27.4246],[78.20205,27.42842],[78.19951,27.4343],[78.1939,27.43372],[78.18815,27.42713],[78.18126,27.42476],[78.17385,27.42977],[78.17671,27.43766],[78.17881,27.43738],[78.18165,27.43997],[78.18118,27.44259],[78.18469,27.4466],[78.18404,27.44844],[78.18681,27.45011],[78.18663,27.4527],[78.19133,27.45644],[78.19683,27.45556],[78.19891,27.45893],[78.19591,27.46121],[78.1954,27.46494],[78.20227,27.47465],[78.19963,27.47746],[78.20007,27.47974],[78.20266,27.47945],[78.20669,27.48181],[78.20807,27.49019],[78.20516,27.49329],[78.2058,27.49554],[78.20261,27.49775],[78.20387,27.50219],[78.20656,27.5085],[78.21228,27.50589],[78.21817,27.50994],[78.22017,27.51462],[78.21337,27.52419],[78.22358,27.52884],[78.22868,27.5252],[78.2322,27.52717],[78.23698,27.52545],[78.23986,27.52604],[78.24379,27.52864],[78.24672,27.52718],[78.24529,27.52564],[78.24965,27.51963],[78.25239,27.51823],[78.25729,27.51904],[78.26445,27.52716],[78.26644,27.526],[78.27026,27.52686],[78.272,27.52529],[78.27695,27.52885],[78.27698,27.53039],[78.28197,27.53256],[78.28358,27.53601],[78.27126,27.54895],[78.28114,27.55578],[78.28573,27.55377],[78.28969,27.54446],[78.29327,27.54451],[78.29831,27.5478],[78.29992,27.54708],[78.30514,27.55184],[78.31454,27.54327],[78.31828,27.54835],[78.31132,27.55553],[78.31965,27.56601],[78.31731,27.57028],[78.31817,27.57406],[78.33156,27.57731],[78.33334,27.58076],[78.33276,27.58308],[78.33866,27.58327],[78.33899,27.58039],[78.34722,27.57546],[78.35553,27.57412],[78.36066,27.57512],[78.36465,27.56919],[78.35823,27.56296],[78.35965,27.56089],[78.36295,27.56043],[78.37059,27.56772],[78.37522,27.56554],[78.3797,27.56827],[78.38518,27.56724],[78.39143,27.56993],[78.3934,27.57208],[78.38803,27.57892],[78.39904,27.59017],[78.40487,27.58242],[78.40936,27.58328],[78.41128,27.5806],[78.41534,27.57946],[78.42258,27.58822],[78.43855,27.59142],[78.44738,27.59617],[78.45061,27.60004],[78.44827,27.60343],[78.45342,27.60737],[78.45585,27.6067],[78.45865,27.60987],[78.4635,27.6112],[78.47042,27.61961],[78.48692,27.61364],[78.49248,27.61517],[78.49849,27.61964],[78.49994,27.61761],[78.50499,27.624],[78.4992,27.63416],[78.49777,27.64321],[78.50446,27.64815],[78.50322,27.65131],[78.50744,27.65654],[78.50462,27.65926],[78.51022,27.66469],[78.50977,27.66888],[78.51643,27.67018],[78.5122,27.67043],[78.50515,27.67852],[78.50401,27.68548],[78.51005,27.68844],[78.5131,27.69287],[78.51806,27.69347],[78.5066,27.70619],[78.52728,27.72463],[78.51207,27.74045],[78.50726,27.74271],[78.50371,27.74165],[78.49658,27.74809],[78.49177,27.74978],[78.48822,27.75414],[78.48543,27.75304],[78.47799,27.75967],[78.47273,27.76178],[78.4725,27.7643],[78.4811,27.77034],[78.48066,27.77275],[78.47658,27.7752],[78.47845,27.78119],[78.47712,27.78344],[78.48097,27.79003],[78.47564,27.79288],[78.47323,27.79896],[78.47093,27.80078],[78.47437,27.81014],[78.46524,27.81011],[78.45945,27.81307],[78.46123,27.81375],[78.46012,27.81563],[78.45613,27.81772],[78.45764,27.81967],[78.45441,27.82075],[78.45726,27.82138],[78.45746,27.82292],[78.44518,27.83095],[78.44535,27.83888],[78.43824,27.83787],[78.43012,27.83951],[78.42137,27.84653],[78.41705,27.84594],[78.4159,27.84715],[78.41388,27.84582]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"164","area_level":"District","area_name":"Mahrajganj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.61919,27.46737],[83.61425,27.46944],[83.38818,27.47976],[83.39181,27.47794],[83.39223,27.47592],[83.38967,27.47459],[83.38826,27.47078],[83.3953,27.46964],[83.39509,27.46661],[83.39762,27.46552],[83.40108,27.46731],[83.40242,27.46619],[83.39952,27.46296],[83.39999,27.45908],[83.40174,27.45754],[83.39762,27.44825],[83.38351,27.44224],[83.38615,27.43909],[83.38391,27.43628],[83.3916,27.4298],[83.39291,27.42483],[83.40093,27.42092],[83.39971,27.41899],[83.40496,27.41885],[83.40685,27.41535],[83.40917,27.4149],[83.40934,27.41281],[83.40599,27.41137],[83.40539,27.40543],[83.40232,27.40088],[83.39648,27.39598],[83.39279,27.39589],[83.38451,27.39017],[83.38481,27.3857],[83.3879,27.38327],[83.38627,27.38052],[83.38768,27.37562],[83.38214,27.37051],[83.37433,27.36961],[83.37209,27.36391],[83.37373,27.36155],[83.37376,27.35722],[83.36904,27.35779],[83.36802,27.35571],[83.36407,27.35547],[83.35772,27.35029],[83.35923,27.34326],[83.35398,27.34403],[83.35087,27.34227],[83.35224,27.33993],[83.34411,27.33827],[83.34303,27.33505],[83.33717,27.33263],[83.33502,27.33383],[83.33182,27.33284],[83.32723,27.33417],[83.32501,27.33661],[83.31784,27.33742],[83.31885,27.33611],[83.31565,27.33292],[83.31759,27.33016],[83.30847,27.33363],[83.30486,27.3313],[83.29984,27.33466],[83.29488,27.33331],[83.29441,27.33493],[83.28565,27.33477],[83.2776,27.32928],[83.26868,27.3258],[83.27257,27.32336],[83.26991,27.32127],[83.27125,27.31707],[83.26885,27.31129],[83.26255,27.30987],[83.26073,27.30548],[83.25122,27.29934],[83.24487,27.30048],[83.2436,27.29938],[83.2436,27.29677],[83.24913,27.2971],[83.25276,27.29171],[83.25327,27.28794],[83.25118,27.28478],[83.23989,27.28387],[83.23696,27.27429],[83.23372,27.27041],[83.2239,27.27069],[83.21779,27.26923],[83.21681,27.26764],[83.2185,27.26492],[83.21344,27.26435],[83.21247,27.26204],[83.21485,27.25996],[83.21298,27.25747],[83.2183,27.25567],[83.21731,27.25169],[83.22042,27.25052],[83.2184,27.24941],[83.2212,27.24568],[83.21773,27.24359],[83.21243,27.24388],[83.21194,27.24152],[83.20889,27.23938],[83.21021,27.23599],[83.20489,27.23462],[83.20635,27.23091],[83.20258,27.2328],[83.20282,27.23037],[83.20515,27.22989],[83.20237,27.22673],[83.20037,27.22611],[83.1986,27.22764],[83.19546,27.22613],[83.19388,27.22863],[83.19351,27.22605],[83.18949,27.22398],[83.19056,27.22703],[83.18937,27.22986],[83.18701,27.22865],[83.18867,27.22744],[83.1878,27.22678],[83.18357,27.22757],[83.17963,27.22512],[83.17607,27.22691],[83.17589,27.23035],[83.17089,27.22686],[83.16781,27.2273],[83.16569,27.22476],[83.16559,27.22004],[83.16808,27.22034],[83.1686,27.21821],[83.16654,27.2145],[83.16763,27.21228],[83.1653,27.20876],[83.16789,27.20587],[83.16575,27.2044],[83.16786,27.20208],[83.1687,27.20481],[83.17185,27.2046],[83.17633,27.19441],[83.17548,27.19272],[83.1705,27.19169],[83.16623,27.18843],[83.16774,27.18707],[83.17055,27.18751],[83.17727,27.17854],[83.17616,27.16025],[83.17379,27.155],[83.16805,27.15623],[83.16443,27.15353],[83.1581,27.15338],[83.15644,27.15187],[83.15995,27.15104],[83.16021,27.14932],[83.16577,27.15134],[83.16866,27.14868],[83.165,27.14537],[83.15851,27.14354],[83.15565,27.14657],[83.1557,27.15291],[83.15841,27.15793],[83.15679,27.16468],[83.15072,27.16711],[83.14653,27.16618],[83.14564,27.16788],[83.14261,27.16784],[83.1404,27.16611],[83.1397,27.16055],[83.13525,27.15925],[83.1264,27.16151],[83.12041,27.16069],[83.1202,27.15254],[83.12917,27.14439],[83.12853,27.13781],[83.12979,27.13411],[83.14715,27.11867],[83.15135,27.1128],[83.15323,27.09697],[83.15624,27.09766],[83.16206,27.10717],[83.16537,27.10806],[83.17329,27.10554],[83.17411,27.10057],[83.17274,27.09518],[83.17432,27.09439],[83.17899,27.0933],[83.18138,27.09576],[83.18631,27.09603],[83.19249,27.09291],[83.19766,27.09264],[83.20009,27.09553],[83.20404,27.09194],[83.20377,27.09035],[83.21222,27.08828],[83.21415,27.08496],[83.21632,27.08803],[83.22266,27.0905],[83.22371,27.08808],[83.23077,27.08274],[83.23098,27.07553],[83.22785,27.07037],[83.23243,27.06956],[83.23675,27.06255],[83.23888,27.06392],[83.23697,27.06812],[83.23776,27.07027],[83.23948,27.06977],[83.24134,27.06598],[83.24342,27.06692],[83.24322,27.06571],[83.25071,27.06557],[83.25233,27.06693],[83.25347,27.07325],[83.27058,27.07806],[83.27363,27.05863],[83.26719,27.03563],[83.26979,27.03001],[83.29257,27.03688],[83.29279,27.041],[83.29799,27.04149],[83.2966,27.0482],[83.29814,27.05019],[83.29775,27.05473],[83.29964,27.05627],[83.29417,27.05806],[83.29399,27.06106],[83.29658,27.06468],[83.29809,27.06367],[83.29974,27.0659],[83.30224,27.06501],[83.30463,27.06674],[83.30332,27.06841],[83.30633,27.07053],[83.30319,27.07017],[83.30511,27.07196],[83.3028,27.07269],[83.30539,27.07518],[83.30558,27.08051],[83.30748,27.07997],[83.30647,27.08142],[83.30774,27.08347],[83.31276,27.08467],[83.31333,27.08732],[83.31658,27.08763],[83.31855,27.08604],[83.31849,27.08751],[83.32054,27.08673],[83.32106,27.08862],[83.32475,27.08933],[83.32784,27.08204],[83.33642,27.08163],[83.33954,27.09111],[83.34194,27.09363],[83.35679,27.08893],[83.36073,27.10018],[83.37321,27.09743],[83.3745,27.09428],[83.38941,27.08262],[83.40746,27.08813],[83.4051,27.08178],[83.39817,27.08064],[83.39626,27.07506],[83.38607,27.074],[83.38354,27.07162],[83.38184,27.06615],[83.3874,27.06484],[83.38856,27.06061],[83.38765,27.05794],[83.38058,27.0583],[83.37555,27.05452],[83.37393,27.05019],[83.3708,27.04727],[83.36218,27.04743],[83.36257,27.04101],[83.35868,27.03891],[83.36261,27.0369],[83.36641,27.03829],[83.36836,27.03707],[83.36736,27.02358],[83.36526,27.02311],[83.3633,27.02531],[83.35741,27.02684],[83.35409,27.02624],[83.34958,27.01479],[83.3525,27.00778],[83.34771,27.00721],[83.35159,27.00219],[83.3513,27.00051],[83.34487,27.00291],[83.34415,26.99451],[83.33548,26.99431],[83.33298,26.99699],[83.32925,26.99708],[83.32747,26.99023],[83.32283,26.98926],[83.32246,26.98643],[83.32663,26.98581],[83.32077,26.98037],[83.3236,26.97885],[83.32563,26.97137],[83.32406,26.96855],[83.32687,26.96467],[83.33117,26.967],[83.33315,26.96403],[83.33866,26.96142],[83.33909,26.95856],[83.33315,26.9587],[83.33387,26.954],[83.34071,26.95348],[83.34352,26.95164],[83.35019,26.95186],[83.35512,26.94974],[83.35664,26.96234],[83.37244,26.95808],[83.43789,26.95812],[83.43096,26.94568],[83.43829,26.94646],[83.44532,26.95082],[83.45132,26.95054],[83.45267,26.95174],[83.47346,26.9425],[83.47324,26.9402],[83.47683,26.93901],[83.47662,26.93381],[83.47375,26.92957],[83.47063,26.92885],[83.4709,26.92617],[83.47765,26.92513],[83.47754,26.91774],[83.48365,26.91635],[83.48331,26.91262],[83.48525,26.91033],[83.49683,26.90916],[83.49517,26.89837],[83.51253,26.89474],[83.51265,26.89321],[83.51833,26.89233],[83.52395,26.89416],[83.54613,26.88855],[83.5548,26.88947],[83.5569,26.89358],[83.55545,26.89442],[83.55857,26.90582],[83.55543,26.90753],[83.558,26.92012],[83.55954,26.92359],[83.56476,26.92256],[83.57058,26.93391],[83.5724,26.9335],[83.57171,26.9311],[83.57746,26.92834],[83.58441,26.93016],[83.5863,26.93334],[83.58891,26.93267],[83.58899,26.9309],[83.59156,26.93072],[83.59584,26.92609],[83.59093,26.91568],[83.59919,26.9119],[83.60637,26.91161],[83.60904,26.92202],[83.60787,26.92238],[83.60854,26.92571],[83.61105,26.92568],[83.612,26.92889],[83.61685,26.9315],[83.62655,26.93008],[83.62848,26.94131],[83.62633,26.9447],[83.62199,26.94697],[83.62445,26.95574],[83.63025,26.95498],[83.63404,26.95683],[83.65192,26.9508],[83.65696,26.95073],[83.65939,26.95325],[83.66969,26.94761],[83.67873,26.94695],[83.67873,26.94844],[83.68326,26.95064],[83.68208,26.96511],[83.69752,26.96229],[83.70772,26.96245],[83.71269,26.9565],[83.71263,26.95473],[83.72049,26.95032],[83.72801,26.95402],[83.73115,26.95884],[83.72884,26.95927],[83.73044,26.96483],[83.72852,26.9655],[83.73079,26.96642],[83.72858,26.96957],[83.73153,26.9732],[83.73024,26.97669],[83.73218,26.97885],[83.73294,26.9895],[83.73447,26.98861],[83.73639,26.99236],[83.73899,26.99306],[83.7397,26.99637],[83.73984,26.99447],[83.74123,26.99489],[83.74175,26.99844],[83.74331,26.99754],[83.74295,26.99561],[83.74892,26.99751],[83.74898,26.99496],[83.75836,26.99419],[83.7631,26.99771],[83.76522,27.00239],[83.7635,27.00193],[83.75863,27.00496],[83.75605,27.00317],[83.75672,27.00752],[83.74557,27.01194],[83.74416,27.01823],[83.74522,27.02856],[83.74867,27.03164],[83.7549,27.03307],[83.75558,27.03522],[83.75192,27.03727],[83.74405,27.03403],[83.73688,27.03685],[83.73468,27.04926],[83.72993,27.05541],[83.73427,27.05796],[83.74502,27.05748],[83.75136,27.05514],[83.75901,27.04812],[83.76322,27.04864],[83.76816,27.05342],[83.76675,27.06102],[83.76784,27.07383],[83.76301,27.07483],[83.75623,27.07285],[83.74759,27.07364],[83.74584,27.0771],[83.76029,27.08583],[83.77283,27.08906],[83.77521,27.09366],[83.77656,27.10628],[83.79336,27.10642],[83.80109,27.10997],[83.80493,27.11534],[83.80608,27.1427],[83.81121,27.16184],[83.82516,27.17445],[83.82422,27.17625],[83.82207,27.17632],[83.81227,27.17145],[83.79801,27.16969],[83.79111,27.16429],[83.78703,27.16392],[83.78234,27.16601],[83.78494,27.17089],[83.79623,27.17423],[83.81268,27.18603],[83.81207,27.18827],[83.80613,27.19097],[83.80023,27.19624],[83.79747,27.21155],[83.79881,27.21498],[83.80177,27.21661],[83.80607,27.2157],[83.81169,27.2058],[83.82124,27.1999],[83.82689,27.20161],[83.83054,27.2053],[83.83285,27.21209],[83.83037,27.21401],[83.82605,27.22592],[83.82112,27.2323],[83.817,27.23378],[83.81351,27.23042],[83.80754,27.22852],[83.80503,27.23263],[83.80036,27.23261],[83.79524,27.23603],[83.7949,27.24422],[83.80017,27.24708],[83.80461,27.24558],[83.80745,27.24978],[83.81691,27.24107],[83.8173,27.24707],[83.81909,27.24843],[83.83793,27.24845],[83.84948,27.25331],[83.83766,27.26919],[83.83687,27.27634],[83.83962,27.28289],[83.84738,27.28909],[83.85787,27.29149],[83.86212,27.29491],[83.86648,27.29094],[83.86712,27.29305],[83.87342,27.29725],[83.87828,27.29394],[83.88113,27.28363],[83.89442,27.28535],[83.90714,27.27578],[83.91258,27.27756],[83.92983,27.29269],[83.93407,27.29975],[83.9342,27.30653],[83.93188,27.3125],[83.92548,27.32141],[83.91882,27.32564],[83.91243,27.32684],[83.90076,27.32569],[83.87144,27.30724],[83.85934,27.30807],[83.85266,27.31729],[83.84542,27.31518],[83.83657,27.32222],[83.86234,27.33568],[83.86408,27.34716],[83.83084,27.36979],[83.61919,27.46737]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"165","area_level":"District","area_name":"Mahoba","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.36506,25.14453],[79.36233,25.14386],[79.36031,25.14426],[79.3582,25.14329],[79.35832,25.14126],[79.35414,25.13021],[79.35303,25.12835],[79.35052,25.12636],[79.35117,25.12579],[79.35304,25.12624],[79.35506,25.12446],[79.35365,25.12303],[79.35257,25.12298],[79.35215,25.11987],[79.35023,25.11896],[79.35037,25.1181],[79.35106,25.11598],[79.35255,25.11548],[79.35521,25.11257],[79.35639,25.10939],[79.36193,25.10623],[79.36899,25.10449],[79.37394,25.10407],[79.37969,25.10122],[79.37946,25.09897],[79.37251,25.09199],[79.37377,25.09177],[79.37757,25.08692],[79.37957,25.08561],[79.37789,25.08308],[79.37667,25.07563],[79.37749,25.07542],[79.37466,25.06773],[79.37983,25.06695],[79.37936,25.06577],[79.37981,25.06479],[79.37102,25.06293],[79.37008,25.06227],[79.36982,25.0598],[79.36908,25.05908],[79.36534,25.05903],[79.36347,25.05985],[79.36002,25.06325],[79.3591,25.06608],[79.3574,25.06827],[79.35419,25.068],[79.35113,25.06888],[79.3492,25.0625],[79.35806,25.05935],[79.35843,25.05851],[79.35604,25.05767],[79.35622,25.05643],[79.35977,25.05345],[79.35611,25.04047],[79.3598,25.03928],[79.36418,25.04098],[79.36748,25.04607],[79.36202,25.0482],[79.36403,25.05038],[79.36773,25.05195],[79.3678,25.05437],[79.36904,25.05432],[79.37533,25.05075],[79.37392,25.04817],[79.37402,25.04482],[79.37726,25.0452],[79.37843,25.04318],[79.38141,25.04182],[79.38333,25.04275],[79.38429,25.04236],[79.3847,25.04092],[79.38414,25.03854],[79.3942,25.03574],[79.39527,25.03477],[79.39496,25.03212],[79.39767,25.03284],[79.3998,25.03442],[79.40126,25.03437],[79.40181,25.03513],[79.40409,25.03376],[79.40604,25.03389],[79.40706,25.03507],[79.4096,25.03386],[79.41091,25.03528],[79.41305,25.03527],[79.41394,25.03817],[79.41695,25.03777],[79.41638,25.04107],[79.42024,25.0406],[79.42204,25.04157],[79.42252,25.04397],[79.42386,25.045],[79.42466,25.053],[79.42245,25.05485],[79.42591,25.05859],[79.41938,25.06173],[79.41848,25.06077],[79.41259,25.06384],[79.40984,25.06375],[79.40739,25.06478],[79.4072,25.06595],[79.40596,25.06672],[79.40676,25.0671],[79.40469,25.0683],[79.40485,25.07358],[79.40555,25.07411],[79.40593,25.07678],[79.40488,25.07703],[79.40578,25.07744],[79.40503,25.07853],[79.40416,25.07794],[79.40237,25.07869],[79.39821,25.0831],[79.39432,25.08317],[79.38719,25.0857],[79.38896,25.08845],[79.38936,25.09177],[79.38677,25.09938],[79.38686,25.1021],[79.38037,25.1076],[79.38041,25.11142],[79.38261,25.11273],[79.38139,25.1154],[79.38247,25.11723],[79.38113,25.11986],[79.3809,25.12243],[79.37975,25.12232],[79.3777,25.12518],[79.37524,25.12509],[79.3742,25.12356],[79.37254,25.12427],[79.37132,25.12345],[79.36382,25.12565],[79.3642,25.12763],[79.37064,25.13605],[79.3742,25.1426],[79.37279,25.14334],[79.37105,25.14303],[79.36875,25.14423],[79.36741,25.14388],[79.36506,25.14453]]],[[[79.36626,25.17158],[79.37104,25.17779],[79.37256,25.18002],[79.37227,25.18066],[79.37132,25.18133],[79.37048,25.18171],[79.36731,25.18446],[79.36608,25.18508],[79.36542,25.18525],[79.36405,25.18625],[79.36345,25.18687],[79.35952,25.18855],[79.35936,25.18839],[79.35942,25.18726],[79.35902,25.18533],[79.35853,25.18411],[79.35516,25.17948],[79.35455,25.17733],[79.35447,25.17589],[79.35679,25.17404],[79.36074,25.17173],[79.36146,25.1711],[79.36425,25.17102],[79.36538,25.17111],[79.36626,25.17158]]],[[[79.30739,25.1984],[79.30642,25.19875],[79.30482,25.19975],[79.30143,25.20143],[79.30115,25.20113],[79.30072,25.19873],[79.30075,25.19713],[79.30053,25.19555],[79.30017,25.1942],[79.29891,25.19146],[79.29783,25.19029],[79.29616,25.18775],[79.2939,25.18544],[79.29221,25.18415],[79.29474,25.1825],[79.29765,25.18105],[79.30442,25.17813],[79.30437,25.17823],[79.30498,25.17848],[79.30805,25.17864],[79.30869,25.17899],[79.30944,25.18029],[79.31005,25.18188],[79.30993,25.183],[79.30904,25.18505],[79.30899,25.18919],[79.30871,25.19182],[79.30917,25.19316],[79.30927,25.19423],[79.30868,25.19537],[79.30851,25.19616],[79.30851,25.19829],[79.30739,25.1984]]],[[[79.29494,25.28272],[79.29379,25.28358],[79.29251,25.2817],[79.29108,25.28146],[79.29008,25.28041],[79.29081,25.2801],[79.29012,25.27777],[79.28783,25.2737],[79.28927,25.27278],[79.28502,25.26672],[79.28378,25.26333],[79.28268,25.26216],[79.28058,25.26168],[79.27532,25.26327],[79.27405,25.26169],[79.27354,25.26061],[79.27684,25.25761],[79.27771,25.25547],[79.27821,25.25327],[79.27722,25.24802],[79.27933,25.24476],[79.28253,25.24589],[79.28499,25.24593],[79.28881,25.24283],[79.2939,25.24033],[79.29919,25.23993],[79.30017,25.23857],[79.30191,25.2376],[79.30309,25.23569],[79.30414,25.23527],[79.30522,25.23246],[79.30816,25.23194],[79.30687,25.22492],[79.30899,25.22368],[79.31727,25.22028],[79.32473,25.21851],[79.32853,25.22132],[79.32781,25.21798],[79.32833,25.21632],[79.32779,25.21342],[79.32938,25.21146],[79.32821,25.20986],[79.33671,25.20068],[79.33836,25.19796],[79.33884,25.19926],[79.34214,25.20104],[79.34925,25.20654],[79.35189,25.21216],[79.34772,25.21308],[79.34489,25.21598],[79.34452,25.21726],[79.34125,25.21893],[79.33607,25.223],[79.33362,25.2255],[79.33276,25.22828],[79.33451,25.22959],[79.33618,25.22821],[79.33736,25.22877],[79.33908,25.22661],[79.34358,25.22706],[79.34466,25.22993],[79.34534,25.23473],[79.34491,25.23614],[79.34521,25.24499],[79.34447,25.24578],[79.34468,25.25],[79.34574,25.25353],[79.34715,25.25405],[79.34862,25.25674],[79.34997,25.26001],[79.34959,25.26117],[79.35086,25.26392],[79.34972,25.26408],[79.34736,25.2667],[79.34335,25.26896],[79.33818,25.26802],[79.33521,25.2698],[79.32959,25.25761],[79.32701,25.25579],[79.32403,25.25579],[79.32204,25.25682],[79.32013,25.2554],[79.31652,25.25596],[79.31039,25.25989],[79.30991,25.26262],[79.30859,25.263],[79.30739,25.26492],[79.3066,25.26506],[79.30563,25.26749],[79.30449,25.26818],[79.30441,25.26923],[79.30336,25.26963],[79.30281,25.27077],[79.30291,25.27429],[79.30068,25.27576],[79.29874,25.27854],[79.29834,25.28034],[79.29698,25.28016],[79.29512,25.28103],[79.29576,25.28254],[79.29494,25.28272]]],[[[79.95382,25.6409],[79.95388,25.64322],[79.94967,25.64187],[79.94914,25.63361],[79.94477,25.62821],[79.95732,25.62718],[79.95685,25.62319],[79.95137,25.61803],[79.9562,25.61025],[79.9496,25.59682],[79.94453,25.59215],[79.94518,25.58908],[79.9364,25.58902],[79.92588,25.59473],[79.91968,25.5947],[79.91728,25.5977],[79.91597,25.59544],[79.90917,25.59707],[79.89622,25.58609],[79.89141,25.57931],[79.87633,25.58015],[79.87065,25.57707],[79.85711,25.58688],[79.85208,25.58673],[79.84119,25.59336],[79.84547,25.60601],[79.84483,25.60903],[79.81468,25.61532],[79.79896,25.62478],[79.78855,25.60132],[79.78913,25.59459],[79.78656,25.58921],[79.78399,25.58721],[79.77963,25.59052],[79.77108,25.58148],[79.76196,25.58567],[79.74736,25.57409],[79.73248,25.57898],[79.72684,25.58421],[79.71453,25.58787],[79.71095,25.59262],[79.7091,25.59289],[79.70827,25.58279],[79.7138,25.57376],[79.71059,25.56854],[79.7107,25.56598],[79.70923,25.56423],[79.70317,25.56391],[79.69912,25.56017],[79.69333,25.5603],[79.69173,25.55872],[79.69434,25.55535],[79.69856,25.55421],[79.6994,25.55036],[79.69333,25.55007],[79.68959,25.54633],[79.68288,25.54794],[79.67261,25.54499],[79.66987,25.54605],[79.66636,25.55337],[79.66146,25.55312],[79.65671,25.55012],[79.65709,25.54349],[79.65892,25.54029],[79.66366,25.54044],[79.66523,25.53903],[79.66305,25.53033],[79.65925,25.52677],[79.66214,25.52657],[79.66366,25.52413],[79.6653,25.51838],[79.66309,25.51605],[79.66605,25.51004],[79.66076,25.51117],[79.65584,25.50871],[79.64825,25.51158],[79.64233,25.50891],[79.6407,25.50483],[79.64141,25.50156],[79.64432,25.50035],[79.64221,25.49384],[79.64396,25.48943],[79.63997,25.48495],[79.62706,25.48719],[79.61561,25.48151],[79.60811,25.48611],[79.60706,25.49094],[79.60088,25.49756],[79.59525,25.49871],[79.59212,25.4961],[79.59112,25.49261],[79.58852,25.49388],[79.58634,25.4908],[79.58434,25.49313],[79.58239,25.49277],[79.5802,25.48968],[79.57748,25.48992],[79.57097,25.47799],[79.56884,25.47662],[79.5596,25.47883],[79.55967,25.49158],[79.54878,25.48957],[79.5419,25.4927],[79.54082,25.48797],[79.53486,25.48213],[79.52828,25.48241],[79.52333,25.48467],[79.52278,25.4967],[79.5141,25.49351],[79.51149,25.48751],[79.50846,25.48725],[79.49351,25.49409],[79.48874,25.49426],[79.48307,25.49058],[79.46658,25.50456],[79.45427,25.505],[79.44925,25.50797],[79.44202,25.50949],[79.44161,25.50827],[79.43923,25.50903],[79.43878,25.50749],[79.43432,25.50795],[79.43307,25.50666],[79.42154,25.50666],[79.41221,25.51347],[79.40903,25.51162],[79.40445,25.51842],[79.40243,25.51901],[79.39693,25.51629],[79.39294,25.51962],[79.3935,25.52218],[79.39188,25.52448],[79.38787,25.52209],[79.38515,25.51282],[79.38535,25.50619],[79.37678,25.49845],[79.36795,25.49345],[79.36763,25.49073],[79.36202,25.48501],[79.36117,25.47959],[79.36871,25.46746],[79.3668,25.46008],[79.36306,25.45698],[79.35516,25.45493],[79.34589,25.44412],[79.33283,25.43358],[79.33263,25.42786],[79.33982,25.41671],[79.34035,25.4022],[79.33292,25.39998],[79.32305,25.40113],[79.319,25.39639],[79.31898,25.393],[79.31371,25.38977],[79.31106,25.38487],[79.30328,25.38244],[79.30258,25.3795],[79.29896,25.37747],[79.29713,25.36808],[79.29502,25.36541],[79.29526,25.35911],[79.28886,25.3532],[79.28601,25.34444],[79.28156,25.33822],[79.27895,25.32399],[79.28335,25.32302],[79.28806,25.32472],[79.29497,25.32303],[79.29916,25.32878],[79.29831,25.33287],[79.29989,25.33763],[79.30842,25.33401],[79.32654,25.33525],[79.33097,25.33184],[79.33905,25.32922],[79.34209,25.329],[79.34444,25.33232],[79.35223,25.32988],[79.34697,25.32199],[79.34467,25.32301],[79.34133,25.31893],[79.33965,25.31128],[79.342,25.3105],[79.34136,25.30762],[79.34658,25.30508],[79.34096,25.29955],[79.33615,25.2881],[79.35193,25.28334],[79.35831,25.28424],[79.35661,25.27853],[79.35856,25.27679],[79.35478,25.26884],[79.35528,25.2659],[79.3629,25.2617],[79.36982,25.25999],[79.37021,25.26553],[79.37389,25.2725],[79.3725,25.27299],[79.37307,25.27503],[79.37021,25.27651],[79.36995,25.2798],[79.36734,25.28121],[79.36859,25.29246],[79.38754,25.28582],[79.38665,25.28152],[79.38903,25.27958],[79.39205,25.27957],[79.39457,25.28275],[79.40761,25.27392],[79.4085,25.26163],[79.40678,25.25806],[79.40881,25.25609],[79.4259,25.25354],[79.43745,25.25488],[79.4405,25.25807],[79.44484,25.25916],[79.45013,25.26307],[79.45538,25.26905],[79.45743,25.26852],[79.46227,25.27106],[79.46292,25.27221],[79.46024,25.27407],[79.45858,25.27978],[79.46116,25.28252],[79.46651,25.27975],[79.46722,25.2833],[79.4793,25.27843],[79.47845,25.27301],[79.48154,25.27082],[79.48192,25.26854],[79.49446,25.26691],[79.49307,25.26206],[79.47635,25.26508],[79.47567,25.26099],[79.46246,25.26467],[79.46214,25.25627],[79.45609,25.2475],[79.45351,25.24822],[79.45057,25.24379],[79.44653,25.2442],[79.43266,25.22064],[79.43372,25.21763],[79.43568,25.21684],[79.44883,25.21507],[79.44037,25.19882],[79.43737,25.19682],[79.42172,25.20033],[79.41208,25.20032],[79.4123,25.19831],[79.40836,25.19469],[79.41151,25.19059],[79.41163,25.1827],[79.40307,25.17638],[79.39337,25.17318],[79.3899,25.17011],[79.39225,25.16905],[79.3896,25.16545],[79.38395,25.14271],[79.3907,25.14128],[79.38757,25.13031],[79.39601,25.12836],[79.39308,25.11694],[79.40574,25.10636],[79.41155,25.11018],[79.41439,25.10942],[79.41996,25.11106],[79.42119,25.11518],[79.42613,25.11906],[79.42689,25.12583],[79.42552,25.13015],[79.41577,25.1331],[79.4213,25.13543],[79.42702,25.13543],[79.43527,25.13171],[79.4392,25.1278],[79.43696,25.10547],[79.43892,25.10122],[79.44137,25.10395],[79.44618,25.10479],[79.45211,25.10865],[79.4597,25.12006],[79.46971,25.12476],[79.4715,25.12812],[79.47724,25.12745],[79.47014,25.10797],[79.46823,25.09417],[79.46502,25.08805],[79.4724,25.08778],[79.47528,25.08617],[79.47731,25.08179],[79.48081,25.08153],[79.48284,25.07965],[79.4915,25.07965],[79.49529,25.08355],[79.5,25.08344],[79.50304,25.08888],[79.5036,25.09351],[79.50584,25.09545],[79.51041,25.09683],[79.51873,25.09504],[79.52062,25.09762],[79.52489,25.09697],[79.52611,25.09989],[79.52425,25.10716],[79.51876,25.1181],[79.52112,25.12519],[79.51795,25.12703],[79.52078,25.12699],[79.52391,25.13135],[79.52751,25.13109],[79.53289,25.13331],[79.53238,25.13882],[79.53486,25.14002],[79.53466,25.14215],[79.53891,25.1405],[79.54184,25.14284],[79.54648,25.14836],[79.55164,25.16071],[79.5569,25.16365],[79.56041,25.16758],[79.56041,25.16979],[79.56506,25.17063],[79.56878,25.16898],[79.56936,25.1718],[79.57628,25.16822],[79.57529,25.16707],[79.57725,25.16565],[79.57736,25.1626],[79.57581,25.16189],[79.57805,25.16022],[79.57968,25.15346],[79.58249,25.15088],[79.58914,25.1487],[79.59369,25.14898],[79.59569,25.14337],[79.59981,25.14383],[79.60699,25.15277],[79.60636,25.14976],[79.60762,25.14928],[79.60573,25.14343],[79.60332,25.14293],[79.5998,25.13511],[79.59941,25.12814],[79.60114,25.12749],[79.60834,25.12804],[79.62038,25.13447],[79.62205,25.13593],[79.62154,25.14046],[79.62271,25.14061],[79.6288,25.13422],[79.63642,25.13138],[79.6375,25.12906],[79.64151,25.12692],[79.64922,25.12971],[79.66048,25.12471],[79.67001,25.12284],[79.67322,25.12036],[79.67637,25.1243],[79.67834,25.13178],[79.68336,25.13515],[79.68806,25.13267],[79.69289,25.13324],[79.71725,25.12877],[79.73564,25.13129],[79.73985,25.13535],[79.7485,25.13935],[79.76199,25.13427],[79.76365,25.13005],[79.77262,25.1251],[79.80488,25.11309],[79.80833,25.11003],[79.82397,25.10825],[79.82657,25.10626],[79.8287,25.09932],[79.84504,25.09403],[79.86153,25.09621],[79.85775,25.10082],[79.85427,25.10338],[79.85249,25.10288],[79.85325,25.10583],[79.84983,25.10759],[79.85039,25.11023],[79.84801,25.11053],[79.84683,25.11598],[79.85179,25.12171],[79.85277,25.12563],[79.85162,25.12855],[79.86614,25.14106],[79.86882,25.14053],[79.87491,25.14338],[79.88153,25.14205],[79.8734,25.149],[79.86914,25.14767],[79.86646,25.14982],[79.8656,25.16105],[79.87009,25.17227],[79.86309,25.17719],[79.86537,25.17995],[79.86504,25.18804],[79.85891,25.19354],[79.85602,25.19405],[79.86173,25.20476],[79.86173,25.20953],[79.86366,25.21263],[79.86586,25.21178],[79.86705,25.21355],[79.86577,25.2153],[79.86859,25.21649],[79.86034,25.22221],[79.85275,25.2251],[79.85116,25.22702],[79.85138,25.23556],[79.85732,25.23472],[79.86452,25.23635],[79.8681,25.24079],[79.87239,25.24276],[79.87788,25.25102],[79.89292,25.24151],[79.89631,25.24255],[79.90208,25.24079],[79.90503,25.24902],[79.90749,25.25089],[79.91652,25.24462],[79.91847,25.23752],[79.91755,25.22683],[79.92202,25.23184],[79.92303,25.24178],[79.92762,25.24961],[79.93654,25.24754],[79.93657,25.25371],[79.9388,25.258],[79.94833,25.26866],[79.95325,25.26453],[79.96049,25.26423],[79.96848,25.26655],[79.98078,25.26185],[79.98666,25.26739],[80.00512,25.26571],[80.0043,25.26935],[80.00728,25.27214],[80.00159,25.27384],[80.00109,25.27648],[79.99851,25.27754],[79.99894,25.28597],[80.00192,25.28902],[80.00448,25.28796],[80.00779,25.29178],[80.01093,25.29281],[80.01198,25.29563],[80.01905,25.29909],[80.02221,25.29762],[80.02265,25.30349],[80.02095,25.30544],[80.02426,25.31196],[80.01963,25.31579],[80.01779,25.32253],[80.02468,25.32788],[80.02412,25.32947],[80.02682,25.33154],[80.02584,25.33467],[80.02762,25.33479],[80.02742,25.33665],[80.03055,25.33979],[80.03383,25.34225],[80.03776,25.34027],[80.03827,25.3385],[80.03895,25.33971],[80.04295,25.33802],[80.06146,25.34031],[80.0647,25.33833],[80.06704,25.33943],[80.07148,25.33842],[80.07267,25.33695],[80.08207,25.34463],[80.08878,25.35585],[80.09874,25.35158],[80.10429,25.35086],[80.10722,25.35561],[80.12091,25.36544],[80.12231,25.37635],[80.12391,25.37909],[80.12557,25.37887],[80.12601,25.38148],[80.12905,25.38237],[80.13909,25.37932],[80.14114,25.38153],[80.14234,25.38442],[80.13628,25.38651],[80.13321,25.38524],[80.13026,25.38702],[80.13027,25.38917],[80.13238,25.39076],[80.13315,25.40034],[80.14985,25.39595],[80.15252,25.40184],[80.15223,25.40681],[80.13931,25.41196],[80.13805,25.40961],[80.13514,25.41059],[80.13364,25.40918],[80.13404,25.40565],[80.12377,25.40837],[80.11836,25.40752],[80.11739,25.41059],[80.12592,25.41769],[80.12374,25.42072],[80.12792,25.42121],[80.12707,25.42325],[80.1301,25.42401],[80.13231,25.42849],[80.1309,25.42894],[80.13202,25.43158],[80.13438,25.43195],[80.13542,25.43443],[80.13748,25.43408],[80.13488,25.43726],[80.13669,25.43849],[80.1368,25.44643],[80.14059,25.45127],[80.14232,25.45867],[80.14445,25.45954],[80.15663,25.45722],[80.17537,25.45017],[80.17483,25.44811],[80.17834,25.44706],[80.18118,25.4481],[80.19287,25.4434],[80.19796,25.45139],[80.19391,25.45685],[80.19424,25.46549],[80.1991,25.47619],[80.20305,25.47997],[80.20304,25.4853],[80.20831,25.48398],[80.21118,25.47474],[80.21498,25.4696],[80.22669,25.47318],[80.21147,25.49548],[80.21258,25.49685],[80.22112,25.49441],[80.22312,25.49628],[80.222,25.49714],[80.22541,25.50963],[80.22115,25.51255],[80.19503,25.52072],[80.1901,25.51967],[80.18608,25.50645],[80.17083,25.51172],[80.17039,25.51421],[80.1634,25.51787],[80.16025,25.514],[80.15956,25.51539],[80.15548,25.50974],[80.16161,25.51082],[80.1619,25.50739],[80.15577,25.50682],[80.15129,25.50863],[80.14591,25.51191],[80.14535,25.51742],[80.14363,25.51884],[80.14619,25.52294],[80.14552,25.52811],[80.1471,25.53509],[80.12939,25.54216],[80.1126,25.55104],[80.10374,25.54239],[80.08804,25.54626],[80.08821,25.55372],[80.08663,25.5567],[80.08894,25.563],[80.07927,25.57588],[80.07724,25.58632],[80.07442,25.58846],[80.07029,25.58935],[80.05962,25.58624],[80.05659,25.58752],[80.05636,25.59113],[80.05231,25.59387],[80.02854,25.58949],[80.02064,25.59017],[80.00926,25.59379],[80.00605,25.59928],[79.99917,25.60493],[79.99909,25.60823],[80.00143,25.60956],[79.99948,25.61197],[80.00336,25.61669],[79.9938,25.61818],[79.98818,25.62235],[79.98859,25.6258],[79.98544,25.62594],[79.96443,25.63731],[79.95403,25.63965],[79.95382,25.6409]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"166","area_level":"District","area_name":"Mainpuri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.89039,27.47084],[78.88936,27.47309],[78.88559,27.47247],[78.88702,27.46985],[78.88538,27.46795],[78.88672,27.4664],[78.88246,27.46249],[78.88586,27.45636],[78.88072,27.45564],[78.87604,27.45122],[78.87156,27.44503],[78.87154,27.43745],[78.86775,27.43842],[78.86417,27.43225],[78.86065,27.42939],[78.86162,27.42701],[78.85161,27.4176],[78.83788,27.41055],[78.84093,27.40526],[78.83952,27.39843],[78.84285,27.40047],[78.85444,27.39231],[78.84438,27.37399],[78.83526,27.36531],[78.83483,27.36186],[78.82976,27.35875],[78.82758,27.35514],[78.82516,27.35668],[78.821,27.35614],[78.81698,27.35277],[78.80992,27.35695],[78.80388,27.35234],[78.79279,27.34846],[78.78206,27.34732],[78.78203,27.34182],[78.77941,27.33632],[78.77605,27.33606],[78.77506,27.33449],[78.76583,27.33629],[78.75445,27.34524],[78.74354,27.33526],[78.73461,27.33195],[78.72716,27.34081],[78.71806,27.34433],[78.71501,27.34209],[78.71186,27.34274],[78.70954,27.34014],[78.7141,27.33572],[78.71538,27.32026],[78.71246,27.31736],[78.71478,27.31623],[78.71166,27.3115],[78.71247,27.29984],[78.71911,27.29733],[78.71868,27.29555],[78.72042,27.294],[78.71699,27.28648],[78.7184,27.28395],[78.71546,27.28035],[78.70249,27.28288],[78.68839,27.2697],[78.68984,27.26782],[78.69577,27.26898],[78.70336,27.26549],[78.71948,27.26366],[78.72785,27.25458],[78.72825,27.24789],[78.737,27.24551],[78.76003,27.22834],[78.76086,27.22503],[78.75853,27.21796],[78.75115,27.20752],[78.73689,27.20977],[78.73232,27.20643],[78.72663,27.2048],[78.72453,27.19663],[78.72546,27.19448],[78.73595,27.19046],[78.73982,27.18416],[78.74209,27.18436],[78.74156,27.18116],[78.74546,27.17886],[78.75235,27.1802],[78.75877,27.17862],[78.76779,27.1734],[78.77744,27.16282],[78.78079,27.16225],[78.78511,27.16555],[78.79101,27.1636],[78.79691,27.16028],[78.80336,27.15379],[78.80834,27.15536],[78.81123,27.15343],[78.80842,27.15041],[78.81529,27.1489],[78.82039,27.14493],[78.81952,27.14284],[78.82142,27.13971],[78.81953,27.13685],[78.81397,27.13976],[78.80986,27.14506],[78.80663,27.14156],[78.8057,27.14598],[78.79981,27.14561],[78.79128,27.13868],[78.78945,27.1346],[78.79381,27.13438],[78.79543,27.12887],[78.79302,27.12396],[78.79947,27.12015],[78.80199,27.12231],[78.80686,27.12002],[78.80214,27.11393],[78.80329,27.11253],[78.79925,27.10557],[78.79916,27.10026],[78.79384,27.09844],[78.78794,27.10316],[78.78743,27.10535],[78.78162,27.10684],[78.77296,27.11406],[78.7649,27.10589],[78.77298,27.101],[78.7766,27.09458],[78.77379,27.08489],[78.76761,27.08304],[78.77266,27.08072],[78.76635,27.06581],[78.76949,27.06301],[78.77632,27.06073],[78.77023,27.05501],[78.7643,27.05319],[78.76428,27.0518],[78.77123,27.04751],[78.77257,27.04484],[78.78095,27.0459],[78.78837,27.04224],[78.78743,27.03863],[78.7828,27.03971],[78.77378,27.03175],[78.77326,27.02906],[78.77638,27.02202],[78.7748,27.02068],[78.77802,27.01701],[78.782,27.02096],[78.78193,27.02484],[78.78751,27.01944],[78.79235,27.01829],[78.79388,27.01417],[78.78175,27.00817],[78.78379,27.00594],[78.78171,27.00251],[78.79461,26.99265],[78.79648,26.99036],[78.79403,26.98715],[78.79573,26.98536],[78.80397,26.98072],[78.80663,26.98789],[78.81281,26.99265],[78.81828,26.98689],[78.81724,26.98524],[78.81858,26.98439],[78.81627,26.98105],[78.80263,26.96779],[78.80911,26.96136],[78.80974,26.95755],[78.8147,26.95401],[78.82073,26.95416],[78.82821,26.94902],[78.83177,26.94904],[78.83839,26.95342],[78.84111,26.95327],[78.83848,26.95632],[78.83907,26.9585],[78.83654,26.9594],[78.83939,26.96046],[78.84139,26.96396],[78.84503,26.96477],[78.84479,26.9665],[78.84667,26.96547],[78.85117,26.96838],[78.85309,26.97231],[78.85565,26.97075],[78.85789,26.96537],[78.86708,26.95841],[78.87204,26.96132],[78.87579,26.96084],[78.88402,26.96349],[78.8864,26.96244],[78.89657,26.96769],[78.90731,26.96394],[78.90963,26.96552],[78.91466,26.96175],[78.91992,26.96434],[78.92181,26.9625],[78.92544,26.96825],[78.91904,26.97401],[78.92603,26.98216],[78.92376,26.98452],[78.93529,26.98047],[78.93638,26.97216],[78.94435,26.96925],[78.94726,26.97718],[78.94975,26.97869],[78.95187,26.977],[78.95546,26.98035],[78.95097,26.98257],[78.9509,26.98533],[78.95806,26.98823],[78.96363,26.9831],[78.97629,26.97684],[78.97793,26.97798],[78.98835,26.97615],[78.99123,26.9802],[79.00335,26.96869],[78.99947,26.95745],[79.00664,26.95347],[79.008,26.94896],[79.00949,26.94892],[79.01152,26.94514],[79.02508,26.95267],[79.03464,26.96726],[79.03941,26.96639],[79.04239,26.96797],[79.04511,26.97215],[79.04794,26.9708],[79.04966,26.97192],[79.04923,26.97526],[79.05175,26.98162],[79.06399,26.98843],[79.07375,26.98907],[79.07659,26.99118],[79.08331,26.98428],[79.08429,26.97843],[79.08671,26.97675],[79.09089,26.98043],[79.09734,26.98223],[79.09868,26.98618],[79.09404,26.99398],[79.09299,26.99946],[79.1023,26.99623],[79.10549,26.99677],[79.1125,26.99345],[79.11708,27.00038],[79.12063,26.99533],[79.12495,26.99411],[79.13457,27.00118],[79.14644,26.99751],[79.15767,26.99923],[79.16375,26.99749],[79.16391,27.00153],[79.16721,27.0062],[79.17801,27.00645],[79.19135,27.00145],[79.19467,26.99719],[79.19468,26.98729],[79.19327,26.98582],[79.19469,26.97826],[79.20901,26.97007],[79.21358,26.97245],[79.2172,26.97108],[79.22569,26.97532],[79.2333,26.9755],[79.24017,26.98164],[79.24225,26.9809],[79.24824,26.98413],[79.25549,26.97963],[79.25677,26.98167],[79.26656,26.98446],[79.26939,26.98963],[79.27131,26.99003],[79.27346,26.98979],[79.27246,26.9875],[79.27444,26.9842],[79.27763,26.985],[79.28318,26.98361],[79.28513,26.98578],[79.28947,26.97967],[79.29403,26.97832],[79.29795,26.98306],[79.30179,26.98304],[79.30293,26.98484],[79.3173,26.97754],[79.31678,26.97528],[79.32244,26.97277],[79.31953,26.97095],[79.31887,26.96517],[79.32497,26.96037],[79.33559,26.95913],[79.3435,26.96235],[79.35509,26.95833],[79.35506,26.9654],[79.36918,26.97534],[79.3715,26.97816],[79.37093,26.98062],[79.37515,26.9819],[79.38142,26.98791],[79.3829,26.99713],[79.38062,27.00401],[79.38556,27.00997],[79.38861,27.01959],[79.39906,27.03157],[79.40206,27.03826],[79.39778,27.04052],[79.39736,27.04358],[79.39605,27.04387],[79.39849,27.04569],[79.40183,27.05335],[79.40104,27.05543],[79.4056,27.05736],[79.40868,27.0555],[79.40921,27.05864],[79.41242,27.06078],[79.41442,27.05933],[79.41711,27.06087],[79.42116,27.0589],[79.42616,27.06456],[79.43106,27.06526],[79.43066,27.06848],[79.43316,27.06841],[79.42628,27.07713],[79.429,27.08068],[79.42772,27.08124],[79.42842,27.08244],[79.43265,27.08514],[79.43166,27.08723],[79.43629,27.09167],[79.43642,27.09503],[79.42672,27.09867],[79.42205,27.09693],[79.42223,27.09532],[79.42019,27.0941],[79.4094,27.09759],[79.39683,27.09489],[79.38996,27.10044],[79.39169,27.10151],[79.39214,27.1047],[79.39049,27.10896],[79.39409,27.11663],[79.39197,27.11733],[79.3857,27.1137],[79.38216,27.11471],[79.38383,27.1174],[79.38766,27.11715],[79.38884,27.12388],[79.3941,27.12217],[79.405,27.12669],[79.41321,27.13843],[79.41239,27.14124],[79.40052,27.14748],[79.38939,27.15696],[79.38882,27.16044],[79.3923,27.15864],[79.39421,27.16149],[79.39496,27.16366],[79.39294,27.16596],[79.39608,27.16973],[79.39379,27.1783],[79.39021,27.18282],[79.3983,27.19102],[79.39575,27.197],[79.39329,27.19719],[79.39525,27.1988],[79.39468,27.20033],[79.39017,27.20092],[79.39099,27.19683],[79.38635,27.19828],[79.38555,27.19602],[79.38263,27.19702],[79.38447,27.19893],[79.38166,27.20373],[79.37605,27.20378],[79.37131,27.20644],[79.37256,27.21049],[79.36972,27.21154],[79.37127,27.2137],[79.36521,27.22209],[79.36055,27.21737],[79.35946,27.22172],[79.35635,27.21866],[79.35653,27.22052],[79.35365,27.22089],[79.35173,27.21191],[79.34493,27.21123],[79.3408,27.21588],[79.33812,27.21421],[79.33623,27.21496],[79.33575,27.21793],[79.33844,27.22573],[79.33696,27.23257],[79.33172,27.23503],[79.32822,27.23363],[79.32954,27.23583],[79.32702,27.2386],[79.32244,27.23682],[79.32269,27.24069],[79.31972,27.24009],[79.31489,27.24348],[79.31544,27.2464],[79.31739,27.24482],[79.31811,27.24675],[79.31552,27.24839],[79.31601,27.25029],[79.31883,27.2546],[79.32138,27.25523],[79.32031,27.25768],[79.3231,27.26039],[79.32441,27.26562],[79.32311,27.26985],[79.32425,27.27237],[79.32119,27.27173],[79.32299,27.27355],[79.32449,27.27289],[79.32545,27.27507],[79.32044,27.27719],[79.3142,27.28482],[79.31104,27.28338],[79.30828,27.28557],[79.30713,27.28454],[79.31011,27.28109],[79.30634,27.28032],[79.3033,27.27763],[79.29705,27.2773],[79.29829,27.27876],[79.29625,27.28112],[79.29134,27.28347],[79.28851,27.28137],[79.29101,27.28012],[79.28798,27.27869],[79.28679,27.28444],[79.2934,27.29551],[79.29131,27.29609],[79.29079,27.29344],[79.28917,27.29352],[79.28978,27.29628],[79.28804,27.30062],[79.2911,27.3005],[79.29042,27.30406],[79.28882,27.30497],[79.28712,27.30271],[79.28369,27.30222],[79.28257,27.30422],[79.27026,27.30341],[79.26613,27.30548],[79.26749,27.30803],[79.26513,27.31281],[79.26759,27.31287],[79.26511,27.31557],[79.26868,27.31886],[79.26718,27.31927],[79.26346,27.31516],[79.26199,27.31557],[79.26459,27.32015],[79.26076,27.32467],[79.25854,27.32514],[79.26022,27.32604],[79.25815,27.32828],[79.2587,27.33065],[79.25746,27.32983],[79.25611,27.33136],[79.25137,27.32484],[79.24993,27.32553],[79.25064,27.32751],[79.248,27.32833],[79.24486,27.32368],[79.24239,27.32885],[79.24044,27.32855],[79.23917,27.32621],[79.23822,27.32863],[79.23499,27.32962],[79.23741,27.32716],[79.23327,27.32677],[79.22904,27.32895],[79.22887,27.33178],[79.22686,27.32989],[79.22468,27.33086],[79.22413,27.33351],[79.22043,27.33638],[79.2186,27.33238],[79.21626,27.334],[79.215,27.33215],[79.21236,27.33277],[79.20746,27.3372],[79.2084,27.33895],[79.20607,27.33969],[79.20771,27.34115],[79.20515,27.34115],[79.20774,27.34311],[79.20387,27.34299],[79.20655,27.34428],[79.20569,27.34532],[79.20303,27.34741],[79.19998,27.34547],[79.19499,27.35026],[79.19754,27.35678],[79.19496,27.35719],[79.19593,27.36133],[79.19322,27.35953],[79.19156,27.36217],[79.18994,27.36052],[79.18809,27.36638],[79.18516,27.36266],[79.18151,27.36604],[79.18012,27.36533],[79.18091,27.36676],[79.17716,27.36823],[79.17926,27.37029],[79.1779,27.3733],[79.17608,27.37217],[79.17626,27.37037],[79.17222,27.37144],[79.17558,27.37253],[79.17363,27.37672],[79.16765,27.37455],[79.16634,27.3774],[79.16273,27.37774],[79.16176,27.38039],[79.16006,27.38076],[79.15895,27.37992],[79.15947,27.37577],[79.15681,27.37948],[79.15535,27.37864],[79.15685,27.37562],[79.15213,27.37791],[79.15118,27.37424],[79.14944,27.37534],[79.15113,27.37831],[79.14535,27.37918],[79.14085,27.37802],[79.14204,27.37991],[79.13885,27.38136],[79.13988,27.38282],[79.14256,27.38122],[79.14301,27.38634],[79.14108,27.3878],[79.13901,27.38678],[79.14009,27.39116],[79.13846,27.39126],[79.13805,27.39467],[79.14105,27.39808],[79.13733,27.39744],[79.13545,27.40359],[79.13377,27.40173],[79.13259,27.40355],[79.12934,27.40415],[79.12815,27.40247],[79.11821,27.40745],[79.1152,27.40615],[79.11416,27.41234],[79.11524,27.41324],[79.11714,27.41106],[79.11864,27.41288],[79.11747,27.41769],[79.11186,27.41706],[79.10968,27.41873],[79.11174,27.42629],[79.10877,27.4272],[79.10584,27.43067],[79.10711,27.43463],[79.09947,27.4304],[79.07198,27.42094],[79.06928,27.41768],[79.06575,27.41957],[79.06305,27.41799],[79.06133,27.41973],[79.06159,27.42266],[79.05775,27.42286],[79.05658,27.42042],[79.03558,27.42993],[79.0319,27.42808],[79.02966,27.42992],[79.02002,27.42748],[79.01214,27.43011],[79.00945,27.42817],[78.99855,27.43247],[78.99718,27.43054],[78.99893,27.4263],[78.99351,27.4209],[78.98967,27.42171],[78.99456,27.42245],[78.99398,27.42446],[78.98449,27.42947],[78.97684,27.42765],[78.97552,27.42436],[78.97676,27.42231],[78.9747,27.42038],[78.97543,27.4179],[78.97254,27.41751],[78.96813,27.42329],[78.96087,27.41826],[78.95603,27.42218],[78.9585,27.42492],[78.95823,27.42989],[78.95497,27.4296],[78.95211,27.42635],[78.9514,27.42818],[78.94855,27.42655],[78.93868,27.43168],[78.94084,27.43626],[78.93571,27.43746],[78.93771,27.44233],[78.93577,27.44758],[78.94026,27.44878],[78.93948,27.45106],[78.93471,27.45278],[78.92601,27.44602],[78.92195,27.45322],[78.91838,27.45341],[78.91337,27.4577],[78.90929,27.45645],[78.90821,27.45855],[78.91048,27.45969],[78.90709,27.46067],[78.90272,27.4662],[78.90366,27.46691],[78.8962,27.47051],[78.89039,27.47084]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"167","area_level":"District","area_name":"Mathura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.64639,27.96685],[77.6429,27.96762],[77.63293,27.9557],[77.6288,27.9493],[77.62868,27.94565],[77.62584,27.94247],[77.62312,27.93408],[77.61556,27.93248],[77.60585,27.9376],[77.60186,27.93476],[77.59247,27.93805],[77.59047,27.93547],[77.58394,27.93305],[77.58263,27.92805],[77.57771,27.92984],[77.57283,27.92944],[77.56826,27.9266],[77.56753,27.91909],[77.56323,27.91438],[77.55769,27.91145],[77.55151,27.91275],[77.54442,27.91644],[77.5428,27.91888],[77.5367,27.91825],[77.53224,27.92109],[77.52791,27.92096],[77.52583,27.92726],[77.51676,27.93306],[77.50749,27.92562],[77.50147,27.92526],[77.49224,27.93847],[77.47528,27.92925],[77.4759,27.92771],[77.4775,27.92828],[77.47568,27.92474],[77.47965,27.92166],[77.47709,27.91633],[77.48049,27.91503],[77.47884,27.91088],[77.4807,27.90789],[77.47805,27.89851],[77.4795,27.89786],[77.47876,27.89445],[77.47327,27.88452],[77.46092,27.8762],[77.45004,27.87116],[77.42829,27.89092],[77.42784,27.88984],[77.42013,27.89044],[77.41607,27.88379],[77.41039,27.87981],[77.40932,27.87417],[77.41282,27.86978],[77.41175,27.86639],[77.42233,27.85779],[77.42186,27.85438],[77.41043,27.85176],[77.39703,27.85335],[77.38998,27.85731],[77.37702,27.85886],[77.37704,27.85707],[77.36525,27.85379],[77.36089,27.85077],[77.34888,27.85572],[77.33516,27.84742],[77.33516,27.842],[77.33199,27.83746],[77.33293,27.83497],[77.33643,27.83423],[77.33118,27.83105],[77.3207,27.82534],[77.3125,27.82799],[77.31081,27.82577],[77.30648,27.82752],[77.30356,27.82553],[77.29648,27.82522],[77.29857,27.81519],[77.28946,27.80977],[77.2829,27.79937],[77.28666,27.79592],[77.29542,27.79674],[77.30082,27.7954],[77.30581,27.79105],[77.30447,27.79007],[77.30596,27.78846],[77.30883,27.7869],[77.31032,27.78831],[77.30868,27.78447],[77.31048,27.78288],[77.3105,27.7772],[77.31275,27.77396],[77.31045,27.77242],[77.30784,27.76643],[77.3093,27.75944],[77.3117,27.75804],[77.30797,27.75281],[77.31096,27.74687],[77.31414,27.74464],[77.31217,27.74194],[77.31945,27.73667],[77.31938,27.73349],[77.30299,27.72591],[77.30393,27.71079],[77.3097,27.70663],[77.31175,27.70869],[77.3221,27.70662],[77.32929,27.7076],[77.33023,27.70906],[77.34115,27.70337],[77.33846,27.69841],[77.3414,27.69508],[77.34082,27.68635],[77.34455,27.6812],[77.34096,27.67676],[77.34568,27.67343],[77.34478,27.66092],[77.35258,27.65124],[77.34619,27.6395],[77.32721,27.6204],[77.31878,27.6108],[77.31706,27.60675],[77.33453,27.5913],[77.34411,27.59708],[77.35326,27.59326],[77.35822,27.58896],[77.35018,27.58344],[77.35144,27.58122],[77.34724,27.57773],[77.34722,27.57473],[77.34526,27.57237],[77.33959,27.57261],[77.33727,27.56976],[77.33838,27.56907],[77.33681,27.56668],[77.33625,27.55767],[77.33808,27.54974],[77.34916,27.54315],[77.34598,27.53874],[77.34006,27.53889],[77.33869,27.53134],[77.33999,27.52662],[77.35735,27.51657],[77.3679,27.51547],[77.37403,27.51186],[77.38284,27.51569],[77.38739,27.51289],[77.39165,27.50814],[77.39057,27.5047],[77.39898,27.50019],[77.401,27.49727],[77.3988,27.48283],[77.39894,27.47945],[77.40155,27.4765],[77.41576,27.47264],[77.41907,27.46996],[77.42223,27.46125],[77.4257,27.46689],[77.42709,27.46417],[77.42609,27.46294],[77.43367,27.46],[77.43781,27.45632],[77.43662,27.45331],[77.43866,27.44905],[77.4362,27.44646],[77.43264,27.44713],[77.42934,27.44455],[77.42666,27.44511],[77.42584,27.43631],[77.4211,27.42202],[77.43222,27.41539],[77.43806,27.40895],[77.43998,27.39033],[77.47025,27.38348],[77.4727,27.37708],[77.48462,27.38353],[77.50719,27.37709],[77.50953,27.37405],[77.50844,27.37182],[77.50991,27.36981],[77.51326,27.37011],[77.51585,27.36793],[77.5161,27.36252],[77.51969,27.36118],[77.52257,27.35725],[77.52993,27.35268],[77.52952,27.35166],[77.53957,27.34795],[77.54556,27.34957],[77.54794,27.33689],[77.57705,27.32794],[77.57727,27.32358],[77.57878,27.32266],[77.58379,27.3213],[77.59117,27.33046],[77.59965,27.33217],[77.6013,27.33429],[77.60453,27.33205],[77.61254,27.33192],[77.61199,27.33623],[77.6147,27.33658],[77.61636,27.34043],[77.62271,27.33619],[77.62081,27.3264],[77.62231,27.3207],[77.6219,27.31305],[77.61873,27.31227],[77.61449,27.30717],[77.61016,27.30614],[77.60801,27.30057],[77.60052,27.30073],[77.59867,27.2972],[77.60571,27.29055],[77.60629,27.2921],[77.6118,27.29078],[77.61683,27.28645],[77.6147,27.27892],[77.62178,27.27505],[77.61821,27.26966],[77.6171,27.27086],[77.61319,27.26582],[77.61602,27.26171],[77.61643,27.2578],[77.62116,27.25519],[77.62731,27.2595],[77.63101,27.25946],[77.63401,27.25757],[77.63737,27.25098],[77.64301,27.24789],[77.64561,27.24248],[77.65049,27.24414],[77.66652,27.24031],[77.67194,27.24233],[77.68437,27.2408],[77.68847,27.24541],[77.69379,27.2476],[77.69985,27.25437],[77.70252,27.25342],[77.70337,27.24887],[77.70633,27.24746],[77.71135,27.24659],[77.71471,27.25334],[77.73148,27.24733],[77.74053,27.24102],[77.75686,27.24786],[77.76313,27.24678],[77.77124,27.24224],[77.77287,27.24063],[77.77231,27.23868],[77.78276,27.23446],[77.79247,27.24392],[77.78743,27.25018],[77.79068,27.25827],[77.79396,27.25763],[77.79986,27.25978],[77.80399,27.2645],[77.81604,27.25968],[77.81897,27.26071],[77.81906,27.26284],[77.81509,27.26691],[77.81791,27.27491],[77.82389,27.27948],[77.82948,27.28022],[77.83441,27.2853],[77.83942,27.28688],[77.85176,27.29644],[77.85353,27.29385],[77.85433,27.28512],[77.8508,27.26655],[77.85146,27.25988],[77.85646,27.25417],[77.86247,27.25057],[77.87189,27.25065],[77.87909,27.25347],[77.88309,27.25726],[77.88315,27.26863],[77.87865,27.27157],[77.87057,27.27082],[77.86508,27.27319],[77.86291,27.27717],[77.86328,27.28872],[77.86852,27.29332],[77.87852,27.29612],[77.89361,27.29307],[77.9011,27.29361],[77.90479,27.29204],[77.90587,27.29312],[77.91321,27.287],[77.91528,27.28246],[77.91497,27.27602],[77.91294,27.27397],[77.91049,27.26234],[77.90473,27.25196],[77.91348,27.2386],[77.92165,27.23399],[77.92754,27.2334],[77.9361,27.23945],[77.9386,27.24511],[77.93713,27.25103],[77.92852,27.2615],[77.92886,27.26672],[77.93431,27.27109],[77.94671,27.27643],[77.9493,27.28109],[77.95173,27.29235],[77.95736,27.29573],[77.96112,27.29428],[77.96255,27.2876],[77.96093,27.2677],[77.96961,27.26846],[77.97411,27.27872],[77.97697,27.27861],[77.98618,27.28533],[77.98797,27.28433],[77.98926,27.28566],[77.98629,27.28834],[77.98801,27.30208],[77.98107,27.30855],[77.97809,27.31511],[77.97896,27.31692],[77.97702,27.31831],[77.97745,27.32152],[77.98055,27.32542],[77.96307,27.32959],[77.9408,27.30095],[77.94026,27.29704],[77.93141,27.30093],[77.90664,27.31866],[77.90941,27.32726],[77.91241,27.32963],[77.9091,27.33066],[77.90947,27.33206],[77.90404,27.33249],[77.89938,27.33567],[77.89119,27.33591],[77.88795,27.33827],[77.89161,27.34754],[77.89484,27.34969],[77.89656,27.3492],[77.90354,27.3583],[77.90144,27.35893],[77.90362,27.36547],[77.90218,27.3663],[77.90428,27.36924],[77.89818,27.37337],[77.90752,27.38483],[77.90341,27.38736],[77.90716,27.3898],[77.90181,27.39348],[77.90371,27.39454],[77.90095,27.39609],[77.90123,27.39783],[77.89893,27.39764],[77.89946,27.39898],[77.88882,27.40431],[77.89281,27.41107],[77.89594,27.41325],[77.89284,27.41613],[77.89773,27.4197],[77.90361,27.42013],[77.90865,27.42566],[77.9133,27.42271],[77.91479,27.42074],[77.9139,27.41875],[77.91559,27.41814],[77.92442,27.42027],[77.92902,27.41903],[77.93205,27.42166],[77.92537,27.43219],[77.93104,27.43951],[77.92079,27.44535],[77.91895,27.44368],[77.91761,27.44433],[77.90869,27.43665],[77.89847,27.44392],[77.89482,27.44892],[77.90723,27.46023],[77.9103,27.46583],[77.9117,27.46684],[77.91487,27.46494],[77.92138,27.46961],[77.92788,27.47173],[77.92809,27.47334],[77.92747,27.47599],[77.91762,27.48445],[77.91001,27.48804],[77.91286,27.49452],[77.9099,27.49716],[77.91273,27.50031],[77.90775,27.50378],[77.90508,27.51229],[77.90008,27.51743],[77.89766,27.51588],[77.8915,27.51901],[77.88643,27.51845],[77.88388,27.52034],[77.87977,27.52004],[77.87714,27.52286],[77.87672,27.52728],[77.87384,27.53014],[77.87929,27.53998],[77.88593,27.53887],[77.88985,27.54087],[77.89388,27.55203],[77.90474,27.5541],[77.90645,27.56304],[77.90995,27.56541],[77.90618,27.56622],[77.9038,27.56907],[77.9059,27.57261],[77.90417,27.57249],[77.90031,27.57936],[77.89594,27.57862],[77.89783,27.58267],[77.88936,27.58937],[77.88243,27.58627],[77.88093,27.58169],[77.87528,27.57615],[77.87429,27.57141],[77.86874,27.57204],[77.86482,27.57921],[77.86315,27.59018],[77.8528,27.59991],[77.84916,27.60638],[77.8523,27.61237],[77.86206,27.62151],[77.85743,27.63147],[77.85222,27.63685],[77.85271,27.64032],[77.84873,27.64453],[77.84916,27.64662],[77.84783,27.64734],[77.8499,27.65234],[77.84776,27.65322],[77.84833,27.65475],[77.84101,27.65487],[77.84097,27.6574],[77.839,27.65757],[77.8386,27.65925],[77.83713,27.65715],[77.83322,27.65772],[77.83392,27.65897],[77.8288,27.66262],[77.82976,27.66536],[77.82678,27.6664],[77.82759,27.66817],[77.83104,27.66817],[77.83093,27.67044],[77.82658,27.67025],[77.81887,27.67383],[77.81689,27.6722],[77.81863,27.6711],[77.81553,27.66744],[77.78852,27.68445],[77.79035,27.68638],[77.78811,27.68922],[77.79629,27.69567],[77.79982,27.70073],[77.79943,27.70528],[77.79434,27.71222],[77.80026,27.72407],[77.79534,27.72607],[77.79588,27.72732],[77.79402,27.72843],[77.79641,27.73359],[77.79423,27.7352],[77.80165,27.74957],[77.80279,27.74917],[77.80549,27.7531],[77.8122,27.7537],[77.81494,27.75249],[77.81812,27.75398],[77.82785,27.75019],[77.83238,27.75288],[77.83139,27.75342],[77.83444,27.75707],[77.82452,27.76682],[77.82099,27.7752],[77.81454,27.77759],[77.81607,27.77941],[77.81267,27.78687],[77.81328,27.79025],[77.81528,27.79179],[77.81303,27.79691],[77.80952,27.79993],[77.8111,27.8068],[77.81505,27.81131],[77.81368,27.81435],[77.80637,27.81977],[77.80864,27.82207],[77.80267,27.82797],[77.79994,27.82549],[77.79654,27.82521],[77.78874,27.82933],[77.78588,27.83646],[77.78066,27.84077],[77.78202,27.84326],[77.78024,27.84557],[77.78652,27.85013],[77.78887,27.84925],[77.80896,27.85918],[77.80226,27.86386],[77.80005,27.86251],[77.78398,27.86544],[77.77741,27.86423],[77.76524,27.8736],[77.76273,27.88506],[77.76025,27.88874],[77.7638,27.89647],[77.76205,27.89933],[77.76468,27.90321],[77.76254,27.90631],[77.76066,27.90568],[77.7435,27.91392],[77.74298,27.92315],[77.73074,27.9336],[77.72312,27.93306],[77.70395,27.9474],[77.69566,27.94294],[77.69307,27.94404],[77.68685,27.94235],[77.67295,27.94503],[77.66071,27.9564],[77.65918,27.96355],[77.65736,27.96529],[77.64639,27.96685]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"168","area_level":"District","area_name":"Mau","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.5031,26.27739],[83.49082,26.28064],[83.46829,26.27954],[83.46555,26.26659],[83.46515,26.25365],[83.45576,26.24323],[83.45609,26.23838],[83.4502,26.23044],[83.45097,26.22328],[83.44849,26.2233],[83.43552,26.21128],[83.42997,26.20191],[83.43141,26.19704],[83.42859,26.18956],[83.42485,26.18639],[83.41968,26.18663],[83.41817,26.17688],[83.41354,26.17472],[83.4124,26.17117],[83.40896,26.1683],[83.40881,26.16696],[83.41616,26.16226],[83.41289,26.1599],[83.41568,26.1557],[83.41332,26.15153],[83.41713,26.1489],[83.422,26.13398],[83.422,26.12633],[83.41994,26.124],[83.41147,26.12318],[83.41895,26.11067],[83.41606,26.10843],[83.40839,26.11065],[83.40568,26.10739],[83.40588,26.09518],[83.39642,26.0982],[83.3953,26.09508],[83.39241,26.09322],[83.39248,26.08862],[83.3906,26.08721],[83.38421,26.08925],[83.3824,26.08373],[83.37817,26.07852],[83.37465,26.07944],[83.36804,26.07563],[83.36781,26.07273],[83.3594,26.06889],[83.3594,26.06021],[83.36905,26.06269],[83.37239,26.06053],[83.37192,26.05696],[83.3604,26.05248],[83.35912,26.05064],[83.35032,26.05276],[83.34584,26.05026],[83.34243,26.05338],[83.33522,26.05164],[83.32498,26.05198],[83.31965,26.04936],[83.31866,26.03587],[83.32928,26.03562],[83.33114,26.03127],[83.32591,26.01372],[83.32182,26.0095],[83.31862,26.00276],[83.32041,25.9892],[83.31117,25.98436],[83.30555,25.98461],[83.30698,25.97726],[83.30534,25.97293],[83.30923,25.96974],[83.31013,25.96621],[83.30814,25.9628],[83.29909,25.95855],[83.29549,25.94611],[83.29736,25.94732],[83.30962,25.94336],[83.31892,25.95049],[83.32534,25.94976],[83.33325,25.95359],[83.33738,25.95157],[83.34103,25.95299],[83.34251,25.94612],[83.35038,25.94733],[83.35264,25.94603],[83.35535,25.9408],[83.3603,25.93769],[83.36223,25.93984],[83.36798,25.93877],[83.37204,25.93485],[83.37496,25.93526],[83.37532,25.92763],[83.37412,25.92362],[83.36988,25.92232],[83.36838,25.92026],[83.36729,25.92181],[83.36376,25.92052],[83.36205,25.92215],[83.36168,25.92717],[83.3586,25.92689],[83.35967,25.92029],[83.35704,25.9177],[83.35474,25.91798],[83.35489,25.91523],[83.34164,25.92557],[83.33922,25.92475],[83.33816,25.91917],[83.35178,25.91444],[83.35135,25.90799],[83.34704,25.90812],[83.34459,25.9024],[83.34745,25.9017],[83.34449,25.89886],[83.33978,25.90078],[83.33534,25.90058],[83.33618,25.90264],[83.33313,25.90294],[83.33089,25.90181],[83.32882,25.89737],[83.3191,25.89505],[83.32029,25.8909],[83.31703,25.88979],[83.31737,25.88611],[83.32045,25.88622],[83.32085,25.88444],[83.32011,25.88202],[83.32205,25.875],[83.3204,25.87368],[83.32033,25.86626],[83.32484,25.86212],[83.31756,25.85354],[83.31913,25.85213],[83.31841,25.84808],[83.32331,25.84892],[83.32341,25.84718],[83.32102,25.84388],[83.31652,25.84303],[83.3154,25.83944],[83.32065,25.84135],[83.32409,25.8404],[83.32772,25.84398],[83.33027,25.83978],[83.33297,25.83957],[83.33923,25.8346],[83.33806,25.83228],[83.3415,25.82962],[83.34352,25.83099],[83.35341,25.82812],[83.35477,25.82659],[83.35458,25.82033],[83.35242,25.82295],[83.3484,25.81998],[83.3448,25.82094],[83.34395,25.81894],[83.34575,25.81471],[83.35128,25.81483],[83.35352,25.81184],[83.36262,25.81108],[83.36262,25.80668],[83.3652,25.80549],[83.36449,25.80205],[83.3701,25.79912],[83.37142,25.79985],[83.37162,25.79724],[83.37506,25.80109],[83.37953,25.8024],[83.38379,25.81404],[83.37949,25.81688],[83.3849,25.82183],[83.3907,25.8198],[83.39358,25.82475],[83.40053,25.82338],[83.40392,25.82927],[83.39662,25.83176],[83.40008,25.84022],[83.40604,25.83953],[83.40645,25.84171],[83.41973,25.84321],[83.42448,25.84828],[83.42625,25.84655],[83.42806,25.84721],[83.43326,25.83867],[83.43632,25.83984],[83.43645,25.84149],[83.44212,25.84297],[83.44556,25.84034],[83.4518,25.84299],[83.45707,25.8469],[83.45788,25.84981],[83.46025,25.84936],[83.46137,25.85105],[83.4626,25.84762],[83.46625,25.84817],[83.46774,25.84544],[83.47133,25.84472],[83.47703,25.83897],[83.48148,25.83965],[83.48531,25.84466],[83.48491,25.84873],[83.48733,25.85003],[83.48692,25.85573],[83.48908,25.85763],[83.49134,25.85638],[83.49074,25.85878],[83.49699,25.85803],[83.49884,25.86145],[83.49715,25.86395],[83.50772,25.86678],[83.50853,25.8683],[83.51114,25.86678],[83.51865,25.86788],[83.52174,25.86616],[83.52468,25.86831],[83.52656,25.86541],[83.52881,25.86712],[83.5309,25.86517],[83.53336,25.86628],[83.53904,25.86446],[83.54375,25.8646],[83.54696,25.86649],[83.5495,25.86578],[83.55324,25.8676],[83.55337,25.86978],[83.55618,25.86986],[83.55907,25.87234],[83.57097,25.8731],[83.57517,25.87727],[83.58181,25.87664],[83.58484,25.8812],[83.59278,25.88079],[83.59487,25.88153],[83.59587,25.88442],[83.60322,25.87969],[83.6113,25.88286],[83.61517,25.87491],[83.61844,25.87368],[83.62439,25.87496],[83.6264,25.87153],[83.63056,25.86936],[83.63443,25.8892],[83.63661,25.89391],[83.64307,25.89359],[83.64146,25.89742],[83.64235,25.90002],[83.64554,25.90004],[83.6489,25.89554],[83.65382,25.89233],[83.65887,25.89221],[83.66335,25.88953],[83.66692,25.88515],[83.66724,25.87992],[83.67799,25.87489],[83.68339,25.87472],[83.6848,25.87063],[83.69032,25.8706],[83.69097,25.8721],[83.69747,25.87127],[83.69648,25.86704],[83.70042,25.86619],[83.70106,25.8637],[83.72357,25.86946],[83.72613,25.86749],[83.72708,25.86425],[83.71733,25.85811],[83.71801,25.85566],[83.72111,25.85553],[83.72814,25.86038],[83.73178,25.86081],[83.73131,25.86965],[83.735,25.87188],[83.73413,25.8739],[83.73645,25.87628],[83.73442,25.87758],[83.74101,25.88095],[83.73719,25.8809],[83.73795,25.88368],[83.74879,25.88346],[83.75056,25.8874],[83.75502,25.88623],[83.75629,25.89226],[83.75818,25.89356],[83.75729,25.89643],[83.76254,25.89584],[83.76426,25.89423],[83.76587,25.90026],[83.773,25.90019],[83.77642,25.90256],[83.78083,25.90076],[83.79755,25.90247],[83.8011,25.90936],[83.7997,25.91149],[83.80099,25.91346],[83.805,25.91327],[83.80709,25.91568],[83.80723,25.91754],[83.79864,25.92037],[83.80087,25.92954],[83.78915,25.93439],[83.78105,25.93329],[83.78087,25.93981],[83.78805,25.97745],[83.77608,25.97862],[83.77365,25.97456],[83.77045,25.97273],[83.76832,25.97231],[83.76569,25.97435],[83.76707,25.98215],[83.77014,25.97958],[83.77417,25.98574],[83.77893,25.98621],[83.7801,25.99076],[83.77592,25.99284],[83.77601,26.00009],[83.76692,26.00077],[83.76242,25.99421],[83.7522,25.99793],[83.75363,26.00287],[83.75167,26.00437],[83.74102,26.00427],[83.72798,26.00661],[83.71465,26.01118],[83.69925,26.00906],[83.69011,26.00437],[83.6853,26.00578],[83.67702,26.01086],[83.68074,26.01514],[83.67597,26.02029],[83.67953,26.02235],[83.67803,26.02433],[83.67957,26.02813],[83.67735,26.04347],[83.67974,26.05344],[83.68646,26.0563],[83.68757,26.05938],[83.68428,26.06543],[83.68176,26.06659],[83.68122,26.07358],[83.68364,26.07474],[83.692,26.07388],[83.69304,26.07615],[83.69479,26.07622],[83.69597,26.08416],[83.69721,26.08394],[83.69799,26.08651],[83.70042,26.08649],[83.70067,26.08859],[83.70349,26.08967],[83.70498,26.09277],[83.7173,26.09427],[83.71953,26.08787],[83.72294,26.087],[83.72737,26.08892],[83.73116,26.08851],[83.73101,26.0831],[83.73947,26.08254],[83.74225,26.09038],[83.74841,26.08932],[83.7512,26.08517],[83.75676,26.08813],[83.75564,26.09149],[83.75066,26.09353],[83.75283,26.09656],[83.75532,26.09675],[83.76142,26.09203],[83.76408,26.09211],[83.76603,26.09477],[83.7607,26.09902],[83.76112,26.1012],[83.76919,26.09823],[83.77112,26.10146],[83.77738,26.10066],[83.78347,26.10312],[83.78307,26.1044],[83.78507,26.10568],[83.78954,26.10449],[83.79502,26.10754],[83.79226,26.11591],[83.79555,26.11815],[83.79795,26.12368],[83.7982,26.12922],[83.80268,26.12984],[83.80507,26.13369],[83.802,26.14223],[83.79093,26.14723],[83.78863,26.15084],[83.7862,26.15143],[83.78517,26.15432],[83.78032,26.15686],[83.77826,26.16103],[83.78259,26.1654],[83.79017,26.16965],[83.79321,26.16973],[83.80709,26.17958],[83.81083,26.18441],[83.80842,26.19047],[83.82603,26.1885],[83.84384,26.19163],[83.8612,26.18384],[83.85553,26.20046],[83.84758,26.20868],[83.84405,26.21826],[83.83518,26.23256],[83.83053,26.2345],[83.82225,26.23129],[83.7895,26.23011],[83.7773,26.23263],[83.77159,26.23887],[83.76673,26.2408],[83.75721,26.24933],[83.75716,26.25421],[83.75261,26.256],[83.75353,26.26059],[83.74964,26.25976],[83.74242,26.26618],[83.74004,26.26199],[83.73012,26.25813],[83.71523,26.25808],[83.70775,26.25485],[83.70669,26.25061],[83.69022,26.24123],[83.66453,26.23666],[83.66241,26.23501],[83.66301,26.23132],[83.66037,26.22955],[83.64479,26.22503],[83.63139,26.22491],[83.62961,26.21875],[83.62602,26.21989],[83.62315,26.22364],[83.6174,26.2257],[83.6135,26.23006],[83.60835,26.23257],[83.61056,26.23924],[83.6161,26.24737],[83.60528,26.24592],[83.602,26.25067],[83.59868,26.25189],[83.58959,26.24844],[83.58034,26.25238],[83.57783,26.24976],[83.56577,26.25525],[83.56307,26.25891],[83.55763,26.26113],[83.54088,26.27291],[83.51267,26.27789],[83.5031,26.27739]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"169","area_level":"District","area_name":"Meerut","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.59747,29.25693],[77.58539,29.26648],[77.58148,29.25708],[77.5716,29.25243],[77.5697,29.24705],[77.56388,29.24368],[77.56481,29.23451],[77.55497,29.2296],[77.55074,29.22448],[77.54805,29.22441],[77.54594,29.22701],[77.54388,29.22705],[77.5424,29.22438],[77.54626,29.22013],[77.54583,29.21874],[77.53749,29.21596],[77.53241,29.21744],[77.527,29.21295],[77.52738,29.20682],[77.51737,29.20676],[77.51227,29.20507],[77.50693,29.19872],[77.50341,29.18712],[77.50151,29.18513],[77.49059,29.18602],[77.47969,29.19246],[77.47495,29.19189],[77.46855,29.18808],[77.46594,29.18343],[77.46656,29.17824],[77.47077,29.17494],[77.47815,29.17361],[77.47999,29.17089],[77.47799,29.16757],[77.46945,29.16435],[77.46816,29.1624],[77.47145,29.15278],[77.46901,29.14782],[77.4708,29.14356],[77.45781,29.14192],[77.45633,29.13645],[77.45724,29.12836],[77.44936,29.12717],[77.44032,29.12993],[77.43959,29.12258],[77.44269,29.11751],[77.43905,29.11038],[77.43153,29.10847],[77.42966,29.10636],[77.43461,29.0942],[77.42276,29.09237],[77.42404,29.08741],[77.43117,29.08385],[77.43631,29.08386],[77.44317,29.0807],[77.45042,29.0796],[77.45693,29.08195],[77.46211,29.07636],[77.45934,29.07196],[77.447,29.06858],[77.45482,29.05329],[77.45334,29.0497],[77.44717,29.0477],[77.44738,29.03934],[77.44351,29.03368],[77.44545,29.02966],[77.45084,29.03153],[77.45661,29.03],[77.46105,29.02464],[77.46037,29.02255],[77.45159,29.01927],[77.45757,29.01287],[77.4566,29.00827],[77.46164,29.00218],[77.46174,29.00029],[77.45787,28.99647],[77.45876,28.99206],[77.46174,28.99009],[77.47036,28.98969],[77.46669,28.97458],[77.46836,28.9709],[77.47527,28.96596],[77.46094,28.94987],[77.4704,28.94668],[77.46274,28.94198],[77.46244,28.93792],[77.46496,28.93115],[77.45986,28.9279],[77.4587,28.92535],[77.45965,28.91985],[77.45825,28.91844],[77.46027,28.91104],[77.45656,28.90676],[77.48391,28.90102],[77.48857,28.89696],[77.49312,28.89541],[77.50113,28.90111],[77.512,28.89469],[77.51763,28.89259],[77.52041,28.89396],[77.53153,28.88813],[77.54314,28.8896],[77.5465,28.89536],[77.54852,28.8946],[77.55074,28.89655],[77.55933,28.8903],[77.57142,28.88715],[77.58262,28.89283],[77.58672,28.88977],[77.58658,28.88274],[77.59287,28.87495],[77.60137,28.87685],[77.6061,28.87563],[77.60823,28.87811],[77.6126,28.8754],[77.61808,28.88095],[77.6386,28.8789],[77.64231,28.88189],[77.65219,28.87635],[77.6514,28.87521],[77.65429,28.8735],[77.6521,28.87125],[77.65522,28.86807],[77.66404,28.86909],[77.66761,28.87407],[77.67402,28.87682],[77.68017,28.87714],[77.68185,28.87455],[77.68556,28.87374],[77.68731,28.86178],[77.6999,28.8531],[77.69969,28.8479],[77.69474,28.84246],[77.69816,28.83655],[77.69763,28.83363],[77.69203,28.82377],[77.70511,28.81527],[77.70678,28.81272],[77.70953,28.813],[77.70721,28.81013],[77.70683,28.8029],[77.70874,28.79961],[77.70504,28.79448],[77.70799,28.78964],[77.70515,28.7865],[77.70156,28.78574],[77.69004,28.77461],[77.68502,28.77632],[77.68294,28.77197],[77.68455,28.7677],[77.6796,28.76276],[77.6828,28.76004],[77.68344,28.75377],[77.69005,28.74807],[77.68882,28.74469],[77.69014,28.74342],[77.69917,28.74322],[77.70332,28.74684],[77.70593,28.74444],[77.71564,28.74097],[77.72045,28.73668],[77.72702,28.73804],[77.72706,28.74073],[77.7355,28.74661],[77.74094,28.75302],[77.75278,28.74742],[77.75316,28.75095],[77.76364,28.76154],[77.77536,28.76388],[77.78099,28.77061],[77.77634,28.77804],[77.78739,28.79021],[77.79773,28.78558],[77.80501,28.79354],[77.81281,28.79251],[77.82081,28.79898],[77.82379,28.80335],[77.82956,28.80005],[77.8363,28.80453],[77.84634,28.80153],[77.84819,28.80241],[77.84871,28.80081],[77.85172,28.801],[77.85369,28.79869],[77.85749,28.79864],[77.85574,28.79726],[77.85962,28.79372],[77.86295,28.79573],[77.86473,28.79804],[77.8626,28.8011],[77.86274,28.8054],[77.86433,28.80734],[77.86256,28.80953],[77.86392,28.81375],[77.86219,28.81502],[77.86413,28.82031],[77.85953,28.82382],[77.86239,28.82776],[77.85381,28.83237],[77.85851,28.84525],[77.86432,28.84878],[77.86239,28.85086],[77.86318,28.85387],[77.86201,28.85511],[77.86795,28.86439],[77.87081,28.86294],[77.87155,28.8641],[77.87513,28.86134],[77.87441,28.86055],[77.88201,28.85674],[77.8845,28.85732],[77.89188,28.86778],[77.89848,28.8665],[77.90724,28.86125],[77.91378,28.86062],[77.92575,28.85286],[77.92506,28.85136],[77.92802,28.8488],[77.92705,28.84715],[77.92984,28.84458],[77.92556,28.8401],[77.93314,28.8338],[77.9481,28.84676],[77.95212,28.84203],[77.95425,28.84309],[77.96191,28.84088],[77.97456,28.85643],[77.98079,28.8551],[77.98566,28.85829],[77.99395,28.85115],[78.00238,28.85141],[78.00374,28.85354],[78.00183,28.8583],[78.00274,28.86134],[78.01025,28.86639],[78.01134,28.87073],[78.01395,28.87292],[78.01792,28.8705],[78.02749,28.88008],[78.0312,28.87831],[78.03827,28.88268],[78.05434,28.88322],[78.06319,28.87774],[78.0714,28.8757],[78.07745,28.87659],[78.07933,28.87494],[78.08958,28.87452],[78.09282,28.87224],[78.09356,28.87518],[78.09799,28.87787],[78.1131,28.8781],[78.11298,28.8797],[78.10104,28.87961],[78.09445,28.88325],[78.08785,28.89097],[78.0926,28.89296],[78.09135,28.89444],[78.08831,28.89299],[78.088,28.89491],[78.09971,28.90178],[78.10853,28.91771],[78.10305,28.91756],[78.10096,28.92762],[78.10194,28.92815],[78.09997,28.9321],[78.08209,28.92607],[78.07642,28.93104],[78.07426,28.93555],[78.08148,28.94198],[78.08679,28.9407],[78.08961,28.94389],[78.09444,28.94543],[78.09663,28.9513],[78.08946,28.95763],[78.08722,28.96609],[78.08204,28.96972],[78.07721,28.97754],[78.07309,28.99785],[78.07621,29.00725],[78.07385,29.01533],[78.07566,29.02065],[78.07394,29.02392],[78.07569,29.02657],[78.07125,29.02794],[78.06886,29.04816],[78.06196,29.05072],[78.05676,29.05835],[78.05395,29.05989],[78.04956,29.06908],[78.05088,29.0711],[78.05858,29.07233],[78.05935,29.0763],[78.06269,29.07914],[78.07165,29.08298],[78.07565,29.0823],[78.08458,29.0884],[78.08778,29.09242],[78.09361,29.10816],[78.08952,29.11088],[78.08719,29.11628],[78.08603,29.13328],[78.09022,29.14561],[78.09801,29.15538],[78.1029,29.15728],[78.11495,29.15834],[78.12386,29.17135],[78.12344,29.18165],[78.11864,29.18923],[78.11489,29.19181],[78.1079,29.20513],[78.11072,29.21191],[78.10807,29.21609],[78.11061,29.21938],[78.11291,29.2328],[78.1114,29.24087],[78.11555,29.24425],[78.11379,29.25628],[78.09288,29.25223],[78.08735,29.2466],[78.08277,29.24848],[78.0706,29.24937],[78.0585,29.25319],[78.05168,29.25432],[78.04994,29.25251],[78.02094,29.25908],[78.01581,29.25908],[78.00869,29.25452],[78.00343,29.25501],[77.99868,29.25279],[77.99053,29.25606],[77.98297,29.23782],[77.96965,29.24406],[77.96143,29.23727],[77.95917,29.23873],[77.95546,29.2334],[77.94692,29.2379],[77.9384,29.23746],[77.93439,29.2331],[77.93173,29.23389],[77.93008,29.2318],[77.92824,29.2328],[77.92422,29.22847],[77.92124,29.21719],[77.91902,29.21418],[77.91554,29.21647],[77.91189,29.21534],[77.90253,29.21906],[77.89396,29.21],[77.88963,29.21325],[77.88964,29.21502],[77.88354,29.21851],[77.87596,29.21878],[77.87238,29.22055],[77.87196,29.223],[77.85932,29.22827],[77.85532,29.22323],[77.85244,29.21442],[77.85127,29.21495],[77.84511,29.20276],[77.84217,29.20427],[77.83746,29.19985],[77.83287,29.20238],[77.82616,29.20078],[77.81912,29.20221],[77.814,29.19859],[77.80594,29.2028],[77.79565,29.18494],[77.78126,29.18873],[77.77692,29.18514],[77.77553,29.18553],[77.77249,29.18807],[77.77765,29.19992],[77.76846,29.20572],[77.76,29.20813],[77.75541,29.21265],[77.74172,29.22124],[77.73726,29.21756],[77.7316,29.21999],[77.72813,29.21854],[77.71925,29.22446],[77.71103,29.22711],[77.70732,29.22577],[77.70633,29.22671],[77.70202,29.22408],[77.68499,29.22967],[77.68681,29.23802],[77.68015,29.24195],[77.6797,29.24542],[77.67618,29.24749],[77.67711,29.24903],[77.67403,29.25292],[77.67144,29.25177],[77.66734,29.25528],[77.66391,29.25337],[77.65974,29.25596],[77.64882,29.24326],[77.65034,29.2417],[77.64485,29.23066],[77.64619,29.23009],[77.64432,29.22604],[77.63598,29.22587],[77.63097,29.22771],[77.62899,29.22659],[77.62517,29.22897],[77.62461,29.23405],[77.6197,29.24347],[77.6202,29.24993],[77.6094,29.25679],[77.59747,29.25693]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"17","area_level":"District","area_name":"Hamirpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.59251,31.89295],[76.58216,31.88874],[76.55611,31.88636],[76.52572,31.85921],[76.52381,31.85599],[76.52423,31.84903],[76.5198,31.8427],[76.51246,31.83982],[76.50125,31.84082],[76.49481,31.83436],[76.48218,31.83016],[76.47832,31.82683],[76.46673,31.82845],[76.46522,31.82621],[76.46593,31.82254],[76.46814,31.81951],[76.47387,31.81637],[76.47504,31.80919],[76.46749,31.80841],[76.46374,31.81448],[76.45697,31.81776],[76.45454,31.81575],[76.45442,31.80991],[76.46245,31.80735],[76.46378,31.80477],[76.45807,31.80352],[76.45293,31.80443],[76.44425,31.79977],[76.44173,31.80225],[76.44292,31.8087],[76.44079,31.81162],[76.43744,31.80427],[76.43598,31.79474],[76.43107,31.79296],[76.42401,31.79498],[76.41273,31.79447],[76.41098,31.79091],[76.41417,31.78546],[76.41256,31.78284],[76.41045,31.78343],[76.4015,31.79413],[76.39636,31.79468],[76.39306,31.79277],[76.38487,31.78214],[76.37831,31.77639],[76.37066,31.77267],[76.36732,31.77282],[76.36285,31.77572],[76.3651,31.78074],[76.35482,31.79204],[76.34875,31.79113],[76.3251,31.7782],[76.30795,31.77619],[76.2995,31.77999],[76.30241,31.77561],[76.30797,31.77238],[76.30999,31.76825],[76.30534,31.76392],[76.3047,31.76043],[76.30557,31.75627],[76.30856,31.7553],[76.30748,31.75293],[76.31,31.74292],[76.31313,31.7424],[76.3125,31.73943],[76.319,31.73135],[76.31752,31.72738],[76.31138,31.7245],[76.3209,31.70518],[76.32965,31.69444],[76.33034,31.69084],[76.33278,31.68987],[76.33353,31.6865],[76.34013,31.68155],[76.34522,31.67096],[76.34783,31.66936],[76.34803,31.66581],[76.35152,31.6636],[76.35267,31.65871],[76.35868,31.6534],[76.36444,31.64227],[76.36845,31.64107],[76.36957,31.63865],[76.38406,31.62718],[76.38783,31.6273],[76.39103,31.62113],[76.39462,31.61941],[76.39572,31.61261],[76.40072,31.60851],[76.40121,31.60359],[76.40437,31.60055],[76.40639,31.59375],[76.41584,31.57908],[76.41935,31.57099],[76.42006,31.56432],[76.42776,31.55714],[76.43181,31.54474],[76.4388,31.53522],[76.43612,31.52761],[76.44106,31.51371],[76.45482,31.49356],[76.46265,31.48859],[76.46347,31.48363],[76.47958,31.46933],[76.48629,31.47091],[76.49065,31.46865],[76.49539,31.46934],[76.51019,31.4603],[76.51334,31.46104],[76.51584,31.46999],[76.51839,31.46915],[76.52249,31.46325],[76.53117,31.46338],[76.53552,31.45172],[76.54347,31.44907],[76.54571,31.44572],[76.55657,31.43975],[76.55743,31.43319],[76.56209,31.42861],[76.573,31.43134],[76.58038,31.42096],[76.58319,31.42039],[76.59204,31.42327],[76.59624,31.42201],[76.5982,31.4197],[76.60742,31.42081],[76.61,31.41569],[76.61426,31.4162],[76.61494,31.41816],[76.61802,31.41955],[76.61613,31.42362],[76.61383,31.42406],[76.61418,31.42595],[76.61217,31.42838],[76.6143,31.43428],[76.61583,31.43593],[76.62361,31.43736],[76.62583,31.44251],[76.62445,31.44809],[76.61676,31.45577],[76.6074,31.4775],[76.60774,31.48419],[76.6113,31.49237],[76.61185,31.50721],[76.6186,31.51579],[76.61539,31.51881],[76.61709,31.52081],[76.61809,31.53183],[76.6161,31.5302],[76.61256,31.53165],[76.61465,31.53301],[76.61354,31.53495],[76.61614,31.53718],[76.61596,31.5398],[76.6187,31.54035],[76.61541,31.54269],[76.6137,31.54694],[76.61738,31.55692],[76.61469,31.56231],[76.61938,31.56896],[76.61987,31.57471],[76.62768,31.57749],[76.62895,31.57367],[76.63338,31.57396],[76.63855,31.58258],[76.64483,31.58202],[76.64704,31.58415],[76.651,31.5842],[76.6556,31.57679],[76.66187,31.57754],[76.66466,31.58196],[76.66761,31.58088],[76.67609,31.58446],[76.68055,31.58276],[76.67984,31.58902],[76.68126,31.59073],[76.70526,31.59567],[76.71157,31.59526],[76.72061,31.58746],[76.72975,31.58254],[76.72817,31.58971],[76.71594,31.61637],[76.71457,31.62822],[76.71628,31.63783],[76.72516,31.6571],[76.72412,31.66516],[76.7223,31.66737],[76.71403,31.66945],[76.70868,31.67287],[76.70084,31.67479],[76.69713,31.67418],[76.69414,31.67724],[76.69173,31.68289],[76.68692,31.68655],[76.68972,31.69118],[76.69062,31.69745],[76.6857,31.69897],[76.68723,31.70584],[76.67881,31.7123],[76.67587,31.71212],[76.67074,31.71995],[76.67453,31.7306],[76.6732,31.73409],[76.66792,31.73784],[76.66202,31.73835],[76.65409,31.74158],[76.64966,31.74137],[76.63827,31.74647],[76.63348,31.75325],[76.6349,31.75711],[76.63367,31.76616],[76.62739,31.77337],[76.62687,31.78224],[76.62215,31.78647],[76.62325,31.79119],[76.62048,31.79905],[76.62398,31.80258],[76.62322,31.80723],[76.63069,31.82193],[76.62798,31.83049],[76.62771,31.84095],[76.62947,31.84641],[76.63238,31.8493],[76.6335,31.86313],[76.63917,31.87358],[76.63013,31.87672],[76.62752,31.88304],[76.62451,31.88589],[76.60249,31.89274],[76.59251,31.89295]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"170","area_level":"District","area_name":"Mirzapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.77527,25.27058],[82.77353,25.26614],[82.7607,25.2667],[82.75841,25.25887],[82.7596,25.25339],[82.75611,25.24187],[82.7537,25.23956],[82.74808,25.23848],[82.74088,25.24952],[82.73553,25.25317],[82.72001,25.25299],[82.71403,25.25054],[82.71261,25.26149],[82.70771,25.26005],[82.69291,25.26172],[82.68887,25.25687],[82.68161,25.25794],[82.67763,25.24999],[82.67123,25.24671],[82.66667,25.25291],[82.66723,25.25487],[82.65731,25.25873],[82.64238,25.25597],[82.64348,25.25386],[82.63977,25.24457],[82.64305,25.24],[82.63957,25.23596],[82.64097,25.23314],[82.63641,25.22081],[82.63212,25.22302],[82.61566,25.22588],[82.6144,25.24461],[82.58325,25.24963],[82.58226,25.24689],[82.57669,25.24656],[82.57471,25.24339],[82.56408,25.24512],[82.56274,25.23964],[82.56023,25.23994],[82.55907,25.23769],[82.54643,25.24012],[82.54068,25.23787],[82.52419,25.23812],[82.52064,25.23982],[82.51797,25.23272],[82.50402,25.23514],[82.50475,25.2418],[82.49812,25.24046],[82.47501,25.24326],[82.46651,25.22029],[82.45197,25.21894],[82.44179,25.22934],[82.4389,25.23573],[82.43565,25.23881],[82.42721,25.24234],[82.40562,25.25565],[82.39554,25.25903],[82.38683,25.25935],[82.37512,25.25307],[82.3722,25.24879],[82.36766,25.23833],[82.36368,25.21638],[82.36156,25.21197],[82.3577,25.20893],[82.34918,25.2067],[82.33128,25.21057],[82.32351,25.2257],[82.31569,25.25362],[82.30305,25.2688],[82.28604,25.27222],[82.26696,25.26855],[82.26032,25.26336],[82.25188,25.2487],[82.24655,25.23508],[82.24394,25.23295],[82.23456,25.23244],[82.23095,25.22749],[82.23037,25.22179],[82.23603,25.21404],[82.24927,25.20681],[82.27477,25.20414],[82.28116,25.20217],[82.28581,25.19849],[82.287,25.1932],[82.28409,25.18925],[82.27988,25.1863],[82.26817,25.18281],[82.26862,25.16102],[82.27165,25.15637],[82.2767,25.15481],[82.2788,25.15866],[82.29166,25.15437],[82.28893,25.14908],[82.29032,25.14827],[82.29694,25.14689],[82.29945,25.15351],[82.30236,25.15185],[82.29656,25.13438],[82.29785,25.12823],[82.30542,25.12649],[82.30272,25.12031],[82.30386,25.11793],[82.3027,25.11491],[82.30402,25.11381],[82.30191,25.10722],[82.30586,25.10355],[82.31109,25.1027],[82.31705,25.09411],[82.32484,25.08653],[82.32546,25.07156],[82.31877,25.06534],[82.3166,25.0594],[82.31222,25.05677],[82.30815,25.05702],[82.30327,25.05157],[82.29786,25.05104],[82.29574,25.04904],[82.29972,25.04264],[82.30546,25.03863],[82.30262,25.03357],[82.30283,25.03196],[82.30524,25.03103],[82.30359,25.02645],[82.30378,25.01706],[82.30195,25.01517],[82.30162,25.0111],[82.29765,25.0107],[82.29503,25.00506],[82.29099,25.00616],[82.28965,25.00383],[82.29056,25.00093],[82.28592,24.9927],[82.28435,24.99077],[82.28177,24.9921],[82.2738,24.98209],[82.26498,24.96487],[82.26009,24.96364],[82.25804,24.96475],[82.2565,24.96331],[82.25408,24.95525],[82.25116,24.9519],[82.24815,24.95181],[82.23928,24.96055],[82.23075,24.94947],[82.23194,24.94805],[82.23011,24.94574],[82.23044,24.93857],[82.2259,24.92993],[82.21474,24.93324],[82.20871,24.93712],[82.20372,24.93015],[82.20465,24.92935],[82.19947,24.91971],[82.20175,24.91786],[82.19525,24.91112],[82.19006,24.90855],[82.18819,24.90966],[82.19,24.91274],[82.18697,24.91439],[82.17962,24.90604],[82.17981,24.8999],[82.17406,24.89658],[82.16743,24.88773],[82.16007,24.88796],[82.15652,24.89065],[82.15533,24.89445],[82.15116,24.8957],[82.14846,24.89141],[82.14701,24.89201],[82.14484,24.88989],[82.1444,24.88673],[82.14096,24.88323],[82.13537,24.87903],[82.13196,24.87877],[82.13258,24.87489],[82.13037,24.87195],[82.1303,24.86836],[82.12748,24.86856],[82.12297,24.86486],[82.12042,24.86483],[82.11908,24.87104],[82.11499,24.87452],[82.11147,24.87606],[82.10869,24.87523],[82.11149,24.87114],[82.11021,24.86457],[82.11187,24.86191],[82.10962,24.86091],[82.10172,24.86209],[82.10235,24.85816],[82.09826,24.85224],[82.09195,24.84912],[82.09324,24.84714],[82.09617,24.8471],[82.0994,24.84981],[82.10903,24.85032],[82.11572,24.85366],[82.11874,24.84483],[82.11401,24.846],[82.1095,24.84109],[82.09488,24.8381],[82.09473,24.83319],[82.09302,24.83241],[82.08827,24.83371],[82.08014,24.83179],[82.08754,24.82816],[82.08929,24.82577],[82.09486,24.82518],[82.09459,24.82306],[82.10251,24.81483],[82.10348,24.81145],[82.10666,24.80942],[82.10557,24.80832],[82.10658,24.80461],[82.11032,24.80055],[82.11218,24.80052],[82.11561,24.78444],[82.12032,24.78813],[82.1231,24.78694],[82.12593,24.78831],[82.12958,24.78563],[82.13009,24.78809],[82.13388,24.78798],[82.13188,24.79161],[82.13866,24.79946],[82.14435,24.79702],[82.14973,24.79191],[82.15092,24.79462],[82.15327,24.79158],[82.16702,24.78544],[82.16774,24.79118],[82.17133,24.79059],[82.17823,24.79287],[82.1789,24.79507],[82.16965,24.79805],[82.16665,24.80088],[82.16996,24.79938],[82.17512,24.80091],[82.17818,24.81089],[82.1848,24.80971],[82.1911,24.81069],[82.1994,24.81775],[82.20359,24.8192],[82.19814,24.81627],[82.19162,24.80576],[82.18876,24.80579],[82.18388,24.7989],[82.18426,24.79563],[82.19542,24.79187],[82.2033,24.7923],[82.20632,24.79612],[82.21215,24.79364],[82.21615,24.79414],[82.21729,24.79018],[82.21512,24.79021],[82.21183,24.78671],[82.20921,24.77844],[82.21792,24.77668],[82.21404,24.77287],[82.21035,24.77472],[82.20944,24.77153],[82.20402,24.77623],[82.19655,24.77806],[82.1949,24.77519],[82.20006,24.76862],[82.19542,24.76417],[82.2037,24.76049],[82.20326,24.75834],[82.19747,24.74978],[82.1975,24.74677],[82.18664,24.73863],[82.18398,24.73885],[82.17737,24.73262],[82.18132,24.73256],[82.18525,24.73572],[82.18815,24.73419],[82.19142,24.73759],[82.19709,24.73816],[82.19953,24.73525],[82.20326,24.73404],[82.20497,24.73578],[82.20914,24.73385],[82.21404,24.73443],[82.21592,24.73054],[82.21574,24.72649],[82.21936,24.7246],[82.21997,24.72195],[82.2213,24.72233],[82.2213,24.72721],[82.21888,24.72845],[82.22003,24.73105],[82.21755,24.73746],[82.21058,24.73979],[82.20957,24.74212],[82.20641,24.74352],[82.20657,24.74719],[82.21585,24.75488],[82.21873,24.75013],[82.22225,24.74825],[82.22227,24.74657],[82.22884,24.74558],[82.22928,24.74935],[82.22689,24.75273],[82.22813,24.75436],[82.22475,24.75783],[82.22646,24.76124],[82.23136,24.75598],[82.23132,24.75926],[82.23324,24.75826],[82.23413,24.76059],[82.23542,24.7602],[82.23791,24.75501],[82.23744,24.75174],[82.23993,24.75078],[82.24257,24.74467],[82.24516,24.74441],[82.24623,24.75445],[82.24874,24.7562],[82.24981,24.76284],[82.2466,24.76662],[82.24614,24.76966],[82.24666,24.77104],[82.25093,24.76993],[82.24947,24.76813],[82.25081,24.75732],[82.25327,24.75156],[82.25558,24.7521],[82.25548,24.74824],[82.25067,24.73547],[82.24771,24.73286],[82.24522,24.73279],[82.2447,24.7307],[82.24982,24.7194],[82.25097,24.71147],[82.25024,24.70991],[82.24616,24.70906],[82.24518,24.70351],[82.25011,24.69745],[82.24693,24.69225],[82.24482,24.69202],[82.24231,24.69478],[82.2394,24.69021],[82.2354,24.69039],[82.23452,24.68563],[82.22966,24.682],[82.2335,24.68099],[82.23654,24.6767],[82.2351,24.6709],[82.23921,24.66157],[82.24112,24.66168],[82.24011,24.66966],[82.24517,24.67092],[82.24753,24.66866],[82.24918,24.67116],[82.25109,24.66808],[82.25419,24.67018],[82.25634,24.66861],[82.25708,24.66446],[82.25527,24.66045],[82.26087,24.66131],[82.26351,24.66591],[82.27255,24.67355],[82.27257,24.67541],[82.26456,24.67639],[82.26286,24.67826],[82.26899,24.68341],[82.28062,24.67541],[82.2856,24.67541],[82.2853,24.66838],[82.28801,24.66586],[82.29836,24.66552],[82.29925,24.66726],[82.30093,24.66634],[82.30265,24.66765],[82.30403,24.66601],[82.30336,24.66314],[82.29636,24.66125],[82.3039,24.65369],[82.29998,24.64698],[82.3038,24.64376],[82.30084,24.64246],[82.30188,24.63914],[82.30021,24.63433],[82.30368,24.62519],[82.29996,24.61207],[82.29541,24.6089],[82.2968,24.60584],[82.29896,24.60486],[82.30168,24.6078],[82.31543,24.60782],[82.31964,24.6062],[82.32197,24.61246],[82.32961,24.61843],[82.33617,24.62],[82.33706,24.61895],[82.33864,24.62036],[82.34433,24.61553],[82.34718,24.61663],[82.34963,24.6151],[82.35559,24.60423],[82.36477,24.5972],[82.40197,24.59136],[82.40414,24.59632],[82.4114,24.59454],[82.41611,24.5912],[82.41715,24.59435],[82.42008,24.59481],[82.42202,24.59962],[82.41081,24.61374],[82.41327,24.61647],[82.41321,24.62031],[82.409,24.62524],[82.40968,24.63542],[82.41776,24.64127],[82.41612,24.64526],[82.41845,24.65172],[82.41625,24.65271],[82.41594,24.65631],[82.41202,24.6597],[82.4115,24.66531],[82.414,24.66978],[82.40677,24.67698],[82.40868,24.67933],[82.40623,24.68093],[82.40709,24.68287],[82.41545,24.6891],[82.4155,24.69226],[82.42945,24.70259],[82.43845,24.70101],[82.45219,24.68951],[82.45373,24.68453],[82.45024,24.67441],[82.45672,24.67319],[82.46847,24.67401],[82.46864,24.67562],[82.47983,24.67834],[82.48353,24.67701],[82.48977,24.67125],[82.50357,24.6713],[82.51074,24.67527],[82.51741,24.67344],[82.52349,24.67604],[82.52394,24.68001],[82.52709,24.68332],[82.53875,24.68592],[82.54714,24.69067],[82.54921,24.69544],[82.5485,24.70372],[82.54669,24.70846],[82.5419,24.7091],[82.5361,24.71549],[82.53542,24.72994],[82.53592,24.73329],[82.54342,24.7328],[82.5525,24.73841],[82.55088,24.7423],[82.55285,24.74852],[82.55127,24.75504],[82.55226,24.76909],[82.54622,24.77785],[82.54691,24.78091],[82.54542,24.78445],[82.54807,24.78713],[82.54604,24.78941],[82.54665,24.79392],[82.54523,24.79724],[82.54686,24.80005],[82.54566,24.80402],[82.5609,24.81133],[82.57082,24.8127],[82.57424,24.82038],[82.57926,24.82317],[82.57868,24.82719],[82.58167,24.83021],[82.58525,24.82581],[82.59831,24.82094],[82.60455,24.81681],[82.60752,24.81184],[82.61389,24.80956],[82.61866,24.80908],[82.62294,24.81826],[82.63048,24.81807],[82.6336,24.81641],[82.63482,24.80633],[82.62449,24.7862],[82.62692,24.78445],[82.63095,24.78503],[82.6347,24.78338],[82.64825,24.78519],[82.65045,24.78294],[82.6577,24.7811],[82.67069,24.79073],[82.67886,24.79211],[82.6891,24.79631],[82.69255,24.80436],[82.7007,24.80574],[82.70303,24.81222],[82.69926,24.81841],[82.7014,24.82123],[82.70208,24.82627],[82.7048,24.82661],[82.71476,24.81938],[82.72382,24.81627],[82.73007,24.81602],[82.73471,24.81849],[82.74268,24.81941],[82.74529,24.82183],[82.7484,24.819],[82.75141,24.81875],[82.75811,24.82162],[82.76145,24.82572],[82.77099,24.82794],[82.78063,24.83601],[82.78372,24.83606],[82.78859,24.83895],[82.79147,24.83846],[82.8019,24.8433],[82.80504,24.84634],[82.80658,24.85176],[82.81167,24.84889],[82.81356,24.85134],[82.8277,24.85434],[82.83669,24.84208],[82.8491,24.84237],[82.85219,24.84056],[82.86148,24.83997],[82.86475,24.84141],[82.87101,24.83891],[82.87472,24.83535],[82.87833,24.83481],[82.88777,24.83767],[82.89476,24.83795],[82.9007,24.83409],[82.91043,24.83212],[82.91355,24.83435],[82.91707,24.83418],[82.9191,24.84093],[82.91001,24.84596],[82.91734,24.84957],[82.91951,24.85467],[82.92224,24.85551],[82.92461,24.85405],[82.93182,24.85381],[82.92859,24.84072],[82.92983,24.83981],[82.9543,24.8367],[82.95561,24.85536],[82.96449,24.85624],[82.96997,24.86474],[82.97681,24.86893],[82.97963,24.86694],[82.98335,24.8679],[82.97954,24.87233],[82.98388,24.87768],[82.98538,24.88344],[82.98387,24.89227],[82.98722,24.89517],[82.98708,24.89681],[82.99384,24.89678],[82.99747,24.89918],[83.00808,24.90136],[83.01365,24.91125],[83.01055,24.92253],[83.02884,24.93162],[83.03208,24.93472],[83.04775,24.94096],[83.04509,24.9456],[83.04545,24.95079],[83.04317,24.95535],[83.0469,24.95513],[83.05221,24.96029],[83.06126,24.95761],[83.06124,24.9707],[83.05577,24.96947],[83.05625,24.9741],[83.07441,24.97625],[83.07331,24.99259],[83.06991,24.99719],[83.06829,25.00353],[83.07496,25.00777],[83.07435,25.01514],[83.07162,25.0247],[83.06769,25.02516],[83.06928,25.02809],[83.06878,25.03096],[83.07367,25.03116],[83.0707,25.03281],[83.07292,25.03447],[83.07134,25.03543],[83.07231,25.03664],[83.06966,25.03787],[83.06968,25.04005],[83.06786,25.03821],[83.06412,25.04152],[83.063,25.04465],[83.06401,25.04705],[83.06846,25.04401],[83.06947,25.04494],[83.06654,25.04917],[83.0681,25.05447],[83.06532,25.05673],[83.06664,25.05783],[83.06461,25.06244],[83.06269,25.05783],[83.06087,25.05728],[83.05996,25.06078],[83.06158,25.06355],[83.06477,25.06375],[83.06764,25.06935],[83.07047,25.06917],[83.07148,25.07065],[83.07249,25.07055],[83.07179,25.06668],[83.07735,25.06696],[83.08099,25.06475],[83.08858,25.0665],[83.09823,25.06593],[83.09833,25.06953],[83.10926,25.06538],[83.11634,25.05838],[83.13252,25.06041],[83.13312,25.06557],[83.13626,25.07119],[83.1313,25.07377],[83.12979,25.08022],[83.13201,25.08566],[83.131,25.08824],[83.13262,25.09588],[83.12543,25.09684],[83.12671,25.10618],[83.13431,25.10594],[83.13856,25.10824],[83.13897,25.11681],[83.13257,25.11749],[83.13745,25.12243],[83.13189,25.12427],[83.1331,25.13063],[83.14008,25.13008],[83.14018,25.13487],[83.14473,25.13496],[83.14454,25.12971],[83.14625,25.12962],[83.14624,25.13125],[83.1498,25.13072],[83.1499,25.13293],[83.1586,25.13358],[83.15728,25.1368],[83.1585,25.13837],[83.17185,25.13763],[83.16963,25.15081],[83.17022,25.16705],[83.17128,25.16827],[83.17553,25.16673],[83.17961,25.17053],[83.18117,25.16898],[83.17951,25.17466],[83.18093,25.17853],[83.17385,25.18277],[83.17273,25.18636],[83.16666,25.18673],[83.15883,25.18957],[83.15452,25.18604],[83.15329,25.18781],[83.14562,25.18726],[83.14612,25.18508],[83.14441,25.1841],[83.14206,25.18582],[83.12496,25.18711],[83.12452,25.1921],[83.12257,25.19315],[83.12219,25.20286],[83.1039,25.20084],[83.09953,25.20365],[83.09123,25.20586],[83.09265,25.21194],[83.08657,25.21314],[83.0729,25.21249],[83.07039,25.21995],[83.07006,25.2299],[83.06358,25.23276],[83.05659,25.23229],[83.04768,25.23487],[83.04626,25.23736],[83.04231,25.23892],[83.04231,25.2415],[83.03026,25.24361],[83.02743,25.2296],[83.01813,25.21614],[83.0066,25.20517],[82.99587,25.20432],[82.9747,25.20672],[82.94136,25.20781],[82.91041,25.20085],[82.90742,25.19937],[82.90666,25.19566],[82.90239,25.19938],[82.90172,25.2021],[82.90556,25.21139],[82.90328,25.21442],[82.90033,25.21524],[82.89653,25.20877],[82.88863,25.21008],[82.88349,25.20113],[82.88396,25.19954],[82.87586,25.20229],[82.8697,25.1994],[82.86742,25.19354],[82.87363,25.19008],[82.87192,25.18739],[82.86942,25.18797],[82.86672,25.18559],[82.86088,25.16894],[82.85518,25.16936],[82.85008,25.16513],[82.84593,25.16435],[82.83887,25.16803],[82.83563,25.16811],[82.8338,25.16929],[82.83555,25.1729],[82.82377,25.17968],[82.82541,25.18333],[82.82341,25.18481],[82.82145,25.18301],[82.80823,25.18901],[82.80658,25.17216],[82.80348,25.16988],[82.79365,25.17786],[82.80267,25.18905],[82.79082,25.19229],[82.78745,25.19503],[82.78712,25.20285],[82.7827,25.20372],[82.78377,25.20738],[82.78987,25.20733],[82.79089,25.20954],[82.79844,25.20632],[82.80065,25.20697],[82.80965,25.20434],[82.81136,25.2065],[82.81133,25.20539],[82.81566,25.20451],[82.81637,25.20717],[82.8139,25.20815],[82.81404,25.21184],[82.81026,25.21301],[82.8069,25.21999],[82.8041,25.2192],[82.80699,25.22102],[82.80582,25.22217],[82.80827,25.22522],[82.81279,25.22534],[82.81685,25.22834],[82.81463,25.2337],[82.80881,25.2348],[82.81098,25.23937],[82.8103,25.24556],[82.81588,25.24546],[82.816,25.24906],[82.8206,25.25396],[82.81866,25.25606],[82.80811,25.25759],[82.80427,25.25666],[82.80406,25.25509],[82.80059,25.25505],[82.7984,25.24997],[82.7845,25.24909],[82.78473,25.24005],[82.78835,25.23852],[82.78511,25.23573],[82.79081,25.23324],[82.79234,25.22905],[82.78055,25.22887],[82.77981,25.23305],[82.77565,25.23403],[82.7764,25.24242],[82.78127,25.24549],[82.78163,25.24949],[82.77669,25.25264],[82.77237,25.2531],[82.77259,25.25603],[82.77094,25.25605],[82.77037,25.25886],[82.77075,25.26264],[82.77835,25.26147],[82.78113,25.26469],[82.78032,25.26883],[82.77527,25.27058]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"171","area_level":"District","area_name":"Moradabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.76153,29.26221],[78.75262,29.26816],[78.74781,29.26161],[78.74042,29.26234],[78.73346,29.26082],[78.7305,29.26248],[78.72917,29.25919],[78.7204,29.2534],[78.71746,29.25503],[78.71022,29.25242],[78.70592,29.25371],[78.70329,29.25043],[78.70396,29.24683],[78.68887,29.23971],[78.6965,29.23271],[78.68767,29.22114],[78.67418,29.2115],[78.68212,29.20436],[78.67025,29.1907],[78.67654,29.1929],[78.67886,29.18929],[78.68971,29.19646],[78.69554,29.20332],[78.6983,29.2003],[78.6967,29.19897],[78.69694,29.19227],[78.69832,29.1921],[78.69216,29.18857],[78.68198,29.18571],[78.67551,29.18694],[78.66028,29.17778],[78.6536,29.16802],[78.65444,29.16345],[78.66011,29.15695],[78.65798,29.15463],[78.67381,29.14313],[78.67669,29.13351],[78.66961,29.12505],[78.67712,29.12197],[78.67205,29.11905],[78.67017,29.10841],[78.67234,29.10813],[78.6753,29.09784],[78.66444,29.08926],[78.66078,29.08412],[78.65849,29.08388],[78.66464,29.07733],[78.66357,29.07561],[78.66713,29.07453],[78.67836,29.07374],[78.69093,29.08012],[78.69837,29.07866],[78.70222,29.07981],[78.70434,29.07507],[78.69794,29.0682],[78.68507,29.06361],[78.68815,29.05813],[78.69907,29.05267],[78.70225,29.04721],[78.69784,29.04582],[78.6929,29.04139],[78.68127,29.02817],[78.6869,29.02102],[78.68384,29.01547],[78.68735,29.01328],[78.68779,29.00808],[78.68164,29.00421],[78.67822,29.00506],[78.67544,28.9964],[78.67727,28.99187],[78.69647,28.97951],[78.69569,28.97403],[78.707,28.96193],[78.70981,28.96394],[78.71901,28.95754],[78.70835,28.94461],[78.7067,28.94534],[78.70332,28.942],[78.69963,28.94323],[78.69922,28.93832],[78.70171,28.93725],[78.69922,28.9328],[78.69351,28.93489],[78.69198,28.93369],[78.69036,28.93542],[78.68787,28.92966],[78.68332,28.92476],[78.70502,28.91505],[78.70568,28.91174],[78.70755,28.91052],[78.7031,28.90332],[78.69947,28.90548],[78.68635,28.89001],[78.69166,28.88741],[78.68788,28.88203],[78.68076,28.87524],[78.67706,28.87583],[78.67543,28.87777],[78.67057,28.87275],[78.66947,28.86181],[78.66709,28.86073],[78.66444,28.85586],[78.66333,28.85825],[78.66102,28.85898],[78.65597,28.85471],[78.65485,28.85108],[78.65843,28.85324],[78.6589,28.84834],[78.65464,28.84643],[78.6521,28.84879],[78.64782,28.84298],[78.64394,28.84151],[78.64019,28.8373],[78.63294,28.8431],[78.61822,28.82371],[78.62716,28.81792],[78.62229,28.81314],[78.62492,28.81088],[78.62476,28.80878],[78.63496,28.80066],[78.64403,28.80665],[78.65303,28.79681],[78.65161,28.79468],[78.65557,28.79305],[78.65474,28.79153],[78.65612,28.78968],[78.6548,28.78772],[78.66528,28.78076],[78.66436,28.78005],[78.67291,28.77339],[78.67206,28.77271],[78.67505,28.77098],[78.67302,28.76861],[78.68115,28.76389],[78.6815,28.76205],[78.67712,28.75639],[78.6803,28.75417],[78.67903,28.75258],[78.68063,28.75109],[78.67785,28.74732],[78.67394,28.74997],[78.67179,28.74843],[78.66684,28.74849],[78.66472,28.74597],[78.66755,28.74403],[78.66675,28.74072],[78.6602,28.7315],[78.66561,28.72708],[78.65932,28.71912],[78.66221,28.71505],[78.65994,28.71064],[78.66242,28.70881],[78.65856,28.70294],[78.66146,28.7022],[78.65921,28.69839],[78.65974,28.69657],[78.66268,28.69535],[78.6547,28.68345],[78.65265,28.6842],[78.64743,28.6797],[78.64634,28.67432],[78.6429,28.66871],[78.64405,28.66755],[78.64544,28.66928],[78.64918,28.66863],[78.65003,28.6712],[78.65237,28.67038],[78.6491,28.66291],[78.66128,28.65624],[78.66508,28.65615],[78.66304,28.65285],[78.67022,28.64414],[78.68285,28.64122],[78.68734,28.64555],[78.69236,28.64234],[78.69564,28.63437],[78.69425,28.62949],[78.69648,28.62643],[78.68898,28.61431],[78.69006,28.6124],[78.69448,28.61081],[78.70036,28.61158],[78.70626,28.60666],[78.70808,28.60776],[78.71746,28.59783],[78.71089,28.58977],[78.71151,28.58792],[78.70992,28.58541],[78.71113,28.58227],[78.71434,28.58208],[78.71618,28.58026],[78.71314,28.57658],[78.71578,28.57401],[78.71322,28.57198],[78.70495,28.57929],[78.70054,28.58085],[78.69701,28.57962],[78.69371,28.57383],[78.69584,28.5713],[78.69228,28.56896],[78.69024,28.56492],[78.69499,28.56027],[78.68858,28.55324],[78.6871,28.55408],[78.68364,28.55112],[78.6821,28.54707],[78.67716,28.54938],[78.67292,28.54564],[78.67438,28.54355],[78.67366,28.54206],[78.67918,28.5382],[78.67574,28.5311],[78.67123,28.53362],[78.66857,28.5297],[78.67494,28.52575],[78.67343,28.52354],[78.67645,28.52195],[78.68647,28.52087],[78.69864,28.51533],[78.69975,28.51362],[78.69832,28.51246],[78.71271,28.50014],[78.71016,28.4976],[78.71108,28.49657],[78.70675,28.49326],[78.70953,28.49109],[78.71427,28.49557],[78.71467,28.49923],[78.71945,28.499],[78.723,28.50239],[78.72439,28.50133],[78.72656,28.50243],[78.73226,28.50999],[78.73722,28.5093],[78.75779,28.52819],[78.76813,28.52787],[78.77336,28.5357],[78.77096,28.53841],[78.77637,28.54263],[78.77777,28.54124],[78.77889,28.54256],[78.78473,28.53822],[78.79498,28.54712],[78.79578,28.54468],[78.79771,28.54545],[78.79864,28.54256],[78.80008,28.54299],[78.79902,28.53923],[78.80311,28.53625],[78.80165,28.53432],[78.80278,28.53358],[78.80339,28.53529],[78.80355,28.5336],[78.80567,28.53365],[78.80482,28.53261],[78.80644,28.53288],[78.80631,28.53023],[78.80812,28.53034],[78.80977,28.52809],[78.80816,28.52688],[78.80841,28.52466],[78.81305,28.52227],[78.81716,28.52582],[78.81979,28.52513],[78.8209,28.52827],[78.81929,28.53195],[78.8226,28.53531],[78.82789,28.53556],[78.83433,28.54312],[78.8389,28.53988],[78.84516,28.54184],[78.85075,28.54026],[78.84988,28.53895],[78.85256,28.53718],[78.8594,28.53459],[78.86586,28.54259],[78.86145,28.54471],[78.85971,28.54846],[78.86462,28.55666],[78.86957,28.55636],[78.87783,28.55154],[78.87674,28.54964],[78.87777,28.54899],[78.87305,28.54427],[78.87777,28.54101],[78.88419,28.5453],[78.88788,28.55029],[78.88658,28.5536],[78.89159,28.56304],[78.89605,28.56415],[78.90309,28.55781],[78.90084,28.55499],[78.90136,28.55209],[78.89778,28.5477],[78.89984,28.54644],[78.90592,28.54637],[78.91188,28.55283],[78.91743,28.55348],[78.91844,28.55489],[78.91661,28.55704],[78.92372,28.56273],[78.91894,28.56551],[78.91846,28.56762],[78.92128,28.57043],[78.92051,28.57169],[78.93621,28.56212],[78.93783,28.56649],[78.93652,28.56733],[78.93726,28.57124],[78.94017,28.57423],[78.93806,28.57693],[78.9383,28.58125],[78.92216,28.58447],[78.92298,28.58708],[78.92061,28.59248],[78.92531,28.59811],[78.92133,28.60158],[78.92009,28.60052],[78.91347,28.6049],[78.91255,28.60556],[78.91378,28.60689],[78.90955,28.60938],[78.90675,28.60864],[78.90287,28.61053],[78.90197,28.61514],[78.89817,28.61853],[78.89907,28.62375],[78.89525,28.62932],[78.89572,28.63103],[78.88214,28.63917],[78.88196,28.64112],[78.86901,28.64946],[78.87009,28.64986],[78.86517,28.65409],[78.86601,28.65494],[78.85965,28.65919],[78.86739,28.67155],[78.8585,28.67728],[78.86312,28.68334],[78.86225,28.68403],[78.86551,28.68955],[78.87527,28.70043],[78.86934,28.70353],[78.87049,28.71453],[78.86785,28.71762],[78.8729,28.72361],[78.87628,28.72207],[78.87893,28.7228],[78.88521,28.71917],[78.88819,28.71171],[78.88793,28.7085],[78.88571,28.70474],[78.88023,28.70361],[78.87988,28.7012],[78.88383,28.70031],[78.88335,28.69856],[78.88702,28.69303],[78.89282,28.69455],[78.90115,28.68554],[78.91447,28.69246],[78.91682,28.69179],[78.92583,28.69879],[78.94097,28.69672],[78.94477,28.69452],[78.95248,28.70061],[78.95844,28.70303],[78.95997,28.70158],[78.96247,28.70516],[78.96424,28.71411],[78.96677,28.71719],[78.96435,28.72129],[78.96675,28.72541],[78.96461,28.72973],[78.97286,28.73616],[78.97035,28.73787],[78.97316,28.74382],[78.98323,28.75286],[78.986,28.7516],[78.99067,28.75709],[78.99853,28.76018],[79.00108,28.76422],[78.99687,28.76695],[78.99961,28.76901],[78.99566,28.77071],[78.99294,28.77419],[78.99094,28.77538],[78.98773,28.77331],[78.9841,28.77552],[78.98416,28.78],[78.98176,28.78018],[78.97809,28.77761],[78.9741,28.78065],[78.97633,28.78431],[78.98029,28.78682],[78.98043,28.78928],[78.98611,28.79008],[78.99438,28.79391],[78.99212,28.7992],[78.99329,28.80458],[78.99235,28.80695],[78.98835,28.80822],[78.98968,28.81039],[78.99802,28.81464],[78.99438,28.82071],[78.99729,28.82373],[78.98745,28.82795],[78.98706,28.82585],[78.98344,28.82588],[78.9836,28.82394],[78.97866,28.82503],[78.97886,28.82322],[78.98224,28.82162],[78.98167,28.82063],[78.97386,28.82233],[78.97028,28.82482],[78.96979,28.82874],[78.96322,28.83249],[78.96846,28.83585],[78.96275,28.83729],[78.96437,28.83957],[78.96867,28.83939],[78.96861,28.84501],[78.97329,28.84929],[78.968,28.85188],[78.96784,28.84816],[78.96539,28.84782],[78.96385,28.85584],[78.95992,28.85529],[78.95353,28.86333],[78.95025,28.86262],[78.95356,28.86016],[78.95101,28.86016],[78.94971,28.85731],[78.94647,28.85947],[78.94632,28.8626],[78.94341,28.86139],[78.94076,28.8652],[78.93501,28.86294],[78.9335,28.8639],[78.93355,28.86532],[78.93797,28.86663],[78.93628,28.86823],[78.93683,28.87025],[78.93351,28.87171],[78.93315,28.87344],[78.9348,28.8748],[78.93706,28.87332],[78.9386,28.87434],[78.9369,28.87715],[78.93731,28.88017],[78.93276,28.87871],[78.93503,28.88219],[78.93294,28.88302],[78.93194,28.88562],[78.93356,28.88688],[78.93568,28.88604],[78.9383,28.89023],[78.93586,28.89159],[78.93237,28.88842],[78.93087,28.89007],[78.93229,28.89325],[78.92888,28.89342],[78.92545,28.89076],[78.92326,28.89137],[78.92083,28.89553],[78.91771,28.89663],[78.91844,28.89948],[78.91661,28.90184],[78.91932,28.9033],[78.92088,28.90775],[78.92379,28.90843],[78.92163,28.90951],[78.92304,28.91348],[78.92104,28.91435],[78.92023,28.91737],[78.92463,28.9208],[78.92145,28.92131],[78.92377,28.92296],[78.92095,28.92517],[78.92287,28.93577],[78.9275,28.93356],[78.92987,28.93491],[78.93026,28.93281],[78.93401,28.93217],[78.93248,28.93318],[78.93187,28.93818],[78.93533,28.93968],[78.93386,28.94061],[78.93565,28.94235],[78.93368,28.94437],[78.93292,28.94941],[78.9313,28.94876],[78.93374,28.95341],[78.92603,28.95522],[78.92748,28.95729],[78.92561,28.9609],[78.9225,28.96067],[78.91542,28.96393],[78.91671,28.9684],[78.92576,28.97851],[78.91685,28.98657],[78.91452,28.98445],[78.90961,28.98664],[78.90251,28.99625],[78.90465,28.99832],[78.90463,29.00133],[78.91303,29.00655],[78.91561,29.00658],[78.91845,29.00435],[78.92563,29.01251],[78.9277,29.01124],[78.93122,29.01817],[78.93453,29.01756],[78.93532,29.01969],[78.93384,29.02245],[78.93516,29.02504],[78.93268,29.02608],[78.93268,29.02806],[78.9276,29.0328],[78.93076,29.03791],[78.92694,29.04347],[78.93644,29.04723],[78.928,29.05494],[78.9278,29.0583],[78.93429,29.06072],[78.94467,29.05713],[78.94633,29.06159],[78.94182,29.06683],[78.94402,29.07228],[78.94284,29.07386],[78.95658,29.06803],[78.95822,29.07102],[78.94628,29.07809],[78.94796,29.0811],[78.95478,29.08418],[78.96154,29.09601],[78.96521,29.09991],[78.96824,29.09927],[78.96774,29.1011],[78.96978,29.10168],[78.97202,29.10784],[78.97375,29.10823],[78.97184,29.11266],[78.9737,29.11481],[78.9722,29.11799],[78.97034,29.11666],[78.97123,29.11303],[78.96667,29.11253],[78.96834,29.11676],[78.96639,29.11778],[78.96759,29.12043],[78.9694,29.12182],[78.97721,29.1175],[78.9837,29.12354],[78.97457,29.12984],[78.9724,29.12674],[78.96417,29.1305],[78.95645,29.11989],[78.94375,29.12751],[78.94286,29.12617],[78.93464,29.12964],[78.92702,29.11813],[78.90633,29.12501],[78.90718,29.12741],[78.91876,29.13553],[78.91621,29.13773],[78.91623,29.14067],[78.91105,29.14443],[78.91205,29.14742],[78.91548,29.14994],[78.91545,29.15245],[78.91287,29.15438],[78.90637,29.15174],[78.90909,29.15732],[78.90801,29.16069],[78.90905,29.16354],[78.90167,29.16956],[78.90875,29.17856],[78.90683,29.18006],[78.90347,29.17824],[78.90317,29.18091],[78.89849,29.18181],[78.89457,29.18576],[78.89974,29.18588],[78.89636,29.19358],[78.89428,29.19189],[78.89006,29.19221],[78.88675,29.19508],[78.89128,29.19808],[78.89062,29.20118],[78.8855,29.20317],[78.88104,29.19992],[78.87522,29.20517],[78.8751,29.20651],[78.87828,29.20636],[78.88328,29.21131],[78.87854,29.21426],[78.87812,29.21571],[78.88052,29.217],[78.87947,29.21881],[78.87583,29.21902],[78.87176,29.22257],[78.87648,29.22553],[78.87423,29.22678],[78.87448,29.23025],[78.87261,29.23031],[78.87264,29.22759],[78.87069,29.22725],[78.86326,29.23031],[78.86304,29.23209],[78.85859,29.23299],[78.86217,29.23943],[78.85834,29.24184],[78.85537,29.23852],[78.85107,29.23682],[78.84954,29.23271],[78.84554,29.23677],[78.84337,29.23484],[78.83946,29.23679],[78.8413,29.23969],[78.83818,29.24109],[78.83816,29.24255],[78.83231,29.23675],[78.82787,29.23531],[78.82571,29.23611],[78.81941,29.2323],[78.80737,29.23668],[78.79841,29.24442],[78.79324,29.24453],[78.79008,29.24764],[78.79189,29.25227],[78.78975,29.25496],[78.78815,29.25337],[78.78503,29.25368],[78.77141,29.26472],[78.76628,29.26416],[78.7632,29.26095],[78.76153,29.26221]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"172","area_level":"District","area_name":"Muzaffarnagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.94034,29.71194],[77.93815,29.71448],[77.93457,29.71112],[77.92644,29.71422],[77.91979,29.705],[77.91692,29.70556],[77.91577,29.70221],[77.92007,29.69929],[77.91396,29.69848],[77.91253,29.69592],[77.90207,29.70119],[77.89661,29.7022],[77.8945,29.69973],[77.8909,29.69886],[77.88265,29.70243],[77.87901,29.70024],[77.87948,29.69291],[77.87471,29.68729],[77.8696,29.68899],[77.8656,29.68781],[77.86281,29.68945],[77.8557,29.68006],[77.85373,29.68154],[77.85025,29.67998],[77.84709,29.67541],[77.8431,29.67522],[77.83862,29.67049],[77.83678,29.67171],[77.83568,29.66956],[77.83195,29.67041],[77.83005,29.6683],[77.82047,29.6737],[77.81223,29.66279],[77.80656,29.65206],[77.80475,29.65024],[77.80158,29.65214],[77.79966,29.65082],[77.79087,29.64101],[77.78834,29.63486],[77.78639,29.63423],[77.77911,29.63826],[77.76782,29.62804],[77.7625,29.62706],[77.75571,29.61855],[77.74307,29.61354],[77.74021,29.60864],[77.72695,29.61755],[77.72668,29.61964],[77.72363,29.62167],[77.72036,29.61966],[77.71828,29.62028],[77.71898,29.61734],[77.7148,29.61177],[77.70701,29.61363],[77.6953,29.61954],[77.68263,29.60165],[77.68267,29.59246],[77.67731,29.59436],[77.67485,29.59329],[77.6639,29.57901],[77.66457,29.57806],[77.65682,29.56466],[77.65056,29.5746],[77.64716,29.57677],[77.64853,29.58069],[77.64668,29.58362],[77.64793,29.59295],[77.629,29.60564],[77.62403,29.60647],[77.62432,29.61104],[77.62235,29.61454],[77.60109,29.62679],[77.5979,29.62437],[77.59023,29.62276],[77.58543,29.62587],[77.58057,29.62419],[77.57656,29.62868],[77.55462,29.63069],[77.53884,29.63752],[77.53589,29.63705],[77.53333,29.63347],[77.53168,29.63418],[77.53237,29.6328],[77.52979,29.62975],[77.53428,29.62559],[77.52739,29.62323],[77.5249,29.62578],[77.51913,29.62576],[77.51781,29.62894],[77.51413,29.63117],[77.50928,29.62654],[77.50647,29.62646],[77.48698,29.6339],[77.48389,29.63],[77.48493,29.62834],[77.48284,29.62129],[77.49276,29.61872],[77.48829,29.61332],[77.49193,29.611],[77.49167,29.60841],[77.50233,29.60134],[77.49755,29.59907],[77.49453,29.59499],[77.49327,29.59205],[77.49531,29.591],[77.49426,29.58868],[77.48722,29.58156],[77.48312,29.58181],[77.48154,29.57866],[77.49665,29.56959],[77.49282,29.56383],[77.48602,29.56432],[77.47819,29.56254],[77.47664,29.55462],[77.4775,29.54977],[77.48019,29.54822],[77.47586,29.54114],[77.47634,29.53867],[77.46968,29.53672],[77.46277,29.53902],[77.45949,29.53454],[77.46094,29.53188],[77.45169,29.52219],[77.4688,29.51384],[77.46938,29.5087],[77.46534,29.50338],[77.45655,29.50112],[77.45516,29.49783],[77.45604,29.49575],[77.4509,29.49071],[77.45005,29.48589],[77.44265,29.47729],[77.44491,29.47267],[77.44153,29.46976],[77.44131,29.46564],[77.44414,29.46219],[77.46376,29.45121],[77.45656,29.44084],[77.44516,29.43461],[77.43462,29.42427],[77.43612,29.42369],[77.43639,29.42042],[77.43275,29.40227],[77.42749,29.39635],[77.4239,29.38892],[77.4221,29.38998],[77.41515,29.37983],[77.41048,29.37877],[77.3982,29.36684],[77.39075,29.36686],[77.38692,29.36437],[77.38438,29.3656],[77.38246,29.36303],[77.3799,29.3644],[77.37565,29.35309],[77.36997,29.34447],[77.36349,29.3476],[77.36237,29.34638],[77.3592,29.34703],[77.35516,29.34014],[77.34146,29.33297],[77.33761,29.33531],[77.33518,29.33914],[77.33108,29.33703],[77.32484,29.33808],[77.32246,29.342],[77.31596,29.34637],[77.3121,29.347],[77.30865,29.34424],[77.30853,29.34112],[77.31411,29.33793],[77.31007,29.32959],[77.31116,29.329],[77.3073,29.3193],[77.3079,29.31567],[77.30729,29.31447],[77.30539,29.31556],[77.30338,29.31214],[77.30483,29.31129],[77.30317,29.305],[77.29855,29.3046],[77.29105,29.29538],[77.28638,29.29777],[77.28359,29.29469],[77.28139,29.29636],[77.279,29.29334],[77.27817,29.29176],[77.28347,29.28633],[77.28068,29.27842],[77.27862,29.27772],[77.27721,29.26896],[77.29405,29.25726],[77.30382,29.26373],[77.32081,29.25699],[77.31621,29.25032],[77.32299,29.2521],[77.35096,29.24118],[77.36185,29.24251],[77.37401,29.23806],[77.37459,29.23974],[77.3785,29.24036],[77.37908,29.24429],[77.38455,29.2498],[77.39278,29.25108],[77.40311,29.2474],[77.40432,29.24835],[77.41585,29.24264],[77.42266,29.23519],[77.43188,29.23355],[77.44262,29.22695],[77.45004,29.23006],[77.45552,29.23021],[77.45555,29.22578],[77.46202,29.21881],[77.46983,29.21341],[77.4684,29.21188],[77.48012,29.20336],[77.48085,29.19835],[77.4858,29.20218],[77.4883,29.20211],[77.5045,29.19131],[77.50693,29.19872],[77.51227,29.20507],[77.51737,29.20676],[77.52738,29.20682],[77.527,29.21295],[77.53241,29.21744],[77.53749,29.21596],[77.54583,29.21874],[77.54626,29.22013],[77.5424,29.22438],[77.54388,29.22705],[77.54594,29.22701],[77.54805,29.22441],[77.55074,29.22448],[77.55497,29.2296],[77.56481,29.23451],[77.56388,29.24368],[77.5697,29.24705],[77.5716,29.25243],[77.58148,29.25708],[77.58539,29.26648],[77.59772,29.25677],[77.6094,29.25679],[77.6202,29.24993],[77.6197,29.24347],[77.62461,29.23405],[77.62437,29.23028],[77.62899,29.22659],[77.63097,29.22771],[77.63598,29.22587],[77.64432,29.22604],[77.64619,29.23009],[77.64485,29.23066],[77.65034,29.2417],[77.64882,29.24326],[77.65437,29.2512],[77.65974,29.25596],[77.66391,29.25337],[77.66734,29.25528],[77.67144,29.25177],[77.67403,29.25292],[77.67711,29.24903],[77.67618,29.24749],[77.6797,29.24542],[77.68015,29.24195],[77.68681,29.23802],[77.68499,29.22967],[77.70202,29.22408],[77.70633,29.22671],[77.70732,29.22577],[77.71103,29.22711],[77.71925,29.22446],[77.72813,29.21854],[77.7316,29.21999],[77.73726,29.21756],[77.74172,29.22124],[77.75541,29.21265],[77.76,29.20813],[77.76846,29.20572],[77.77589,29.2011],[77.77765,29.19982],[77.77249,29.18807],[77.77692,29.18514],[77.78126,29.18873],[77.79565,29.18494],[77.80594,29.2028],[77.814,29.19859],[77.81912,29.20221],[77.82616,29.20078],[77.83287,29.20238],[77.83746,29.19985],[77.84217,29.20427],[77.84511,29.20276],[77.85127,29.21495],[77.85244,29.21442],[77.85532,29.22323],[77.85932,29.22827],[77.87196,29.223],[77.87238,29.22055],[77.87596,29.21878],[77.88354,29.21851],[77.88964,29.21502],[77.88963,29.21325],[77.89396,29.21],[77.90253,29.21906],[77.91189,29.21534],[77.91554,29.21647],[77.91902,29.21418],[77.92124,29.21719],[77.92422,29.22847],[77.92824,29.2328],[77.93008,29.2318],[77.93173,29.23389],[77.93439,29.2331],[77.9384,29.23746],[77.94692,29.2379],[77.95546,29.2334],[77.95917,29.23873],[77.96143,29.23727],[77.96965,29.24406],[77.98297,29.23782],[77.99053,29.25606],[77.99868,29.25279],[78.00343,29.25501],[78.00869,29.25452],[78.01581,29.25908],[78.02094,29.25908],[78.04994,29.25251],[78.05168,29.25432],[78.0585,29.25319],[78.0706,29.24937],[78.08277,29.24848],[78.08735,29.2466],[78.09288,29.25223],[78.11409,29.25634],[78.11334,29.26525],[78.10882,29.27488],[78.0982,29.28363],[78.09641,29.29455],[78.09154,29.30136],[78.08841,29.31941],[78.08328,29.32189],[78.07723,29.32882],[78.06605,29.3347],[78.06284,29.35386],[78.04603,29.3558],[78.04172,29.36007],[78.03738,29.3691],[78.03154,29.37117],[78.03019,29.37332],[78.02921,29.38274],[78.02657,29.38637],[78.03053,29.39161],[78.04554,29.39958],[78.04653,29.40481],[78.04484,29.40999],[78.03554,29.41033],[78.03215,29.41809],[78.02123,29.42964],[78.02421,29.44664],[78.02304,29.44995],[78.01615,29.45623],[78.02151,29.45935],[78.02091,29.46543],[78.01831,29.46759],[78.00394,29.47031],[78.00176,29.47895],[77.99307,29.48103],[77.98928,29.48546],[77.99365,29.4971],[77.99257,29.50075],[77.9975,29.50901],[77.99139,29.51019],[77.9886,29.51502],[77.98595,29.52777],[77.98788,29.53054],[77.98737,29.53416],[77.99566,29.53199],[77.9964,29.54591],[78.00186,29.54571],[78.00859,29.55972],[78.01682,29.55874],[78.023,29.56202],[78.0216,29.58085],[78.0008,29.58621],[77.99617,29.59146],[77.99517,29.5958],[77.99353,29.59122],[77.98645,29.58438],[77.98272,29.58356],[77.97997,29.58515],[77.97493,29.58502],[77.97311,29.58031],[77.96889,29.58141],[77.9671,29.58014],[77.94034,29.59271],[77.9333,29.60051],[77.94277,29.60865],[77.94842,29.61691],[77.96021,29.61165],[77.97769,29.61345],[77.97597,29.61738],[77.97739,29.63125],[77.98379,29.64364],[77.98186,29.64512],[77.97945,29.64266],[77.96645,29.65014],[77.96955,29.65623],[77.96996,29.66643],[77.94937,29.6798],[77.94744,29.68309],[77.95093,29.68736],[77.94589,29.68996],[77.94567,29.69182],[77.93989,29.69608],[77.95098,29.70159],[77.94957,29.70413],[77.95302,29.70735],[77.94554,29.71306],[77.94094,29.71084],[77.94034,29.71194]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"173","area_level":"District","area_name":"Pilibhit","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.82639,28.88492],[79.81802,28.88781],[79.81383,28.88656],[79.8147,28.88369],[79.7998,28.88748],[79.79325,28.88287],[79.78861,28.87269],[79.78629,28.87341],[79.78344,28.87125],[79.78082,28.87139],[79.76675,28.87493],[79.75925,28.87085],[79.74907,28.87177],[79.74565,28.85992],[79.73825,28.85876],[79.73652,28.85626],[79.72637,28.86097],[79.72271,28.85523],[79.7234,28.85289],[79.72058,28.85027],[79.71991,28.84567],[79.71855,28.84881],[79.70962,28.8511],[79.70625,28.84445],[79.70752,28.84417],[79.70667,28.84101],[79.69292,28.84591],[79.68996,28.84533],[79.69169,28.84815],[79.68463,28.84996],[79.6804,28.84792],[79.67746,28.84922],[79.67417,28.84638],[79.66864,28.83834],[79.67389,28.8328],[79.67243,28.83095],[79.67369,28.83019],[79.67289,28.82875],[79.67476,28.82826],[79.67386,28.82329],[79.67802,28.81789],[79.67728,28.81298],[79.67533,28.81249],[79.67654,28.80863],[79.6746,28.80705],[79.67582,28.80578],[79.67398,28.80551],[79.6732,28.79535],[79.67864,28.792],[79.67406,28.78386],[79.67214,28.78408],[79.67105,28.78204],[79.67253,28.77689],[79.66771,28.77225],[79.66938,28.76908],[79.6676,28.76597],[79.67369,28.76548],[79.67223,28.76222],[79.6745,28.75904],[79.68956,28.75324],[79.68599,28.75045],[79.68551,28.7482],[79.68774,28.74613],[79.68651,28.74231],[79.69026,28.74046],[79.68234,28.72738],[79.67911,28.73006],[79.67913,28.72676],[79.67635,28.72588],[79.6736,28.71953],[79.66877,28.72153],[79.66597,28.71899],[79.66323,28.72042],[79.66089,28.71787],[79.65554,28.72006],[79.65376,28.71622],[79.65204,28.71679],[79.6435,28.70633],[79.64422,28.70149],[79.64047,28.69571],[79.63316,28.68857],[79.62725,28.68633],[79.62776,28.68372],[79.62584,28.67996],[79.62667,28.67651],[79.63423,28.67017],[79.63108,28.66199],[79.62529,28.65678],[79.62194,28.64983],[79.62576,28.64838],[79.62317,28.64442],[79.62164,28.64441],[79.62181,28.64241],[79.62237,28.6406],[79.62633,28.63992],[79.62746,28.63759],[79.63702,28.63375],[79.62795,28.6279],[79.62719,28.62399],[79.62358,28.61999],[79.62569,28.61678],[79.62502,28.61432],[79.62678,28.61013],[79.63323,28.6089],[79.63215,28.59977],[79.64008,28.59514],[79.64264,28.59528],[79.64779,28.59978],[79.65584,28.5993],[79.6601,28.6046],[79.66693,28.60279],[79.66964,28.60687],[79.67406,28.60572],[79.67654,28.60339],[79.6751,28.60071],[79.68161,28.59663],[79.67696,28.58657],[79.69035,28.58149],[79.69259,28.58312],[79.69658,28.58057],[79.69829,28.5831],[79.70779,28.58439],[79.70441,28.5819],[79.70596,28.58037],[79.70717,28.58198],[79.70701,28.57866],[79.70909,28.57829],[79.70404,28.57792],[79.70647,28.57419],[79.70325,28.57623],[79.70149,28.57502],[79.70553,28.57375],[79.70558,28.57164],[79.70362,28.56977],[79.69453,28.57143],[79.68949,28.5618],[79.68918,28.55813],[79.68697,28.55741],[79.69005,28.54745],[79.69538,28.54508],[79.69788,28.54769],[79.70378,28.54601],[79.70721,28.55237],[79.71441,28.5525],[79.7186,28.55616],[79.72321,28.55464],[79.72325,28.55143],[79.72027,28.54736],[79.72094,28.54561],[79.71634,28.54072],[79.71639,28.53894],[79.71412,28.538],[79.71408,28.5332],[79.7154,28.53246],[79.7076,28.53343],[79.70848,28.53099],[79.7102,28.53177],[79.713,28.52968],[79.71084,28.52702],[79.70833,28.52816],[79.70826,28.52566],[79.71368,28.52543],[79.71308,28.52245],[79.7355,28.51175],[79.73647,28.51276],[79.7284,28.51839],[79.72887,28.52308],[79.7326,28.52297],[79.73671,28.52672],[79.73728,28.53003],[79.74362,28.52868],[79.74926,28.53055],[79.75359,28.52957],[79.75448,28.52754],[79.75201,28.52159],[79.75439,28.51949],[79.75264,28.5154],[79.75499,28.5124],[79.76337,28.50774],[79.78052,28.50524],[79.78268,28.50191],[79.78131,28.49487],[79.78398,28.48661],[79.78112,28.48101],[79.78075,28.4763],[79.7758,28.47426],[79.77543,28.4612],[79.77692,28.46102],[79.77741,28.45784],[79.78451,28.45374],[79.79109,28.44586],[79.79017,28.43882],[79.78529,28.43807],[79.77795,28.43306],[79.77429,28.43466],[79.76996,28.43372],[79.76812,28.436],[79.77339,28.43938],[79.76768,28.45056],[79.76244,28.45429],[79.76279,28.45781],[79.75882,28.458],[79.74999,28.45504],[79.747,28.44742],[79.74688,28.43965],[79.75287,28.44226],[79.75384,28.42144],[79.75771,28.41374],[79.75615,28.40901],[79.75121,28.40294],[79.74763,28.40312],[79.74609,28.40484],[79.73739,28.40621],[79.7398,28.41138],[79.72817,28.41416],[79.72578,28.41234],[79.7266,28.40635],[79.71954,28.40096],[79.71388,28.39406],[79.70653,28.39156],[79.70418,28.3932],[79.69627,28.38554],[79.71216,28.38081],[79.71151,28.37361],[79.71715,28.36843],[79.72424,28.37131],[79.73337,28.36762],[79.73145,28.35944],[79.72753,28.35272],[79.72364,28.35182],[79.72147,28.34933],[79.72597,28.34391],[79.7249,28.33977],[79.72059,28.33817],[79.71653,28.32838],[79.71346,28.329],[79.70925,28.32076],[79.70505,28.31634],[79.69921,28.31363],[79.69706,28.30957],[79.70338,28.30726],[79.70168,28.30325],[79.7034,28.29846],[79.70879,28.29771],[79.7165,28.29316],[79.71529,28.29014],[79.71671,28.28766],[79.7336,28.28142],[79.73869,28.2773],[79.73702,28.26979],[79.73768,28.26323],[79.74156,28.25588],[79.74014,28.25187],[79.7314,28.25283],[79.72006,28.25149],[79.71949,28.26117],[79.71648,28.26464],[79.71362,28.26155],[79.71317,28.2562],[79.7087,28.25211],[79.71074,28.24625],[79.71999,28.24284],[79.71639,28.23821],[79.71865,28.2364],[79.72353,28.23412],[79.72636,28.23661],[79.73091,28.23368],[79.73252,28.23642],[79.73759,28.23745],[79.7446,28.23359],[79.74729,28.22895],[79.75141,28.2277],[79.74954,28.21898],[79.73769,28.22167],[79.73062,28.21697],[79.72698,28.21252],[79.72793,28.21138],[79.72294,28.2061],[79.72843,28.19697],[79.74206,28.20092],[79.74516,28.19998],[79.74621,28.19109],[79.73907,28.18151],[79.73595,28.18293],[79.73377,28.18216],[79.73163,28.18539],[79.72972,28.18503],[79.73035,28.18215],[79.73582,28.17884],[79.742,28.17841],[79.74441,28.18289],[79.7465,28.17968],[79.74847,28.18229],[79.75159,28.18164],[79.75261,28.18327],[79.75555,28.18248],[79.76012,28.18422],[79.76213,28.18339],[79.7632,28.17687],[79.76603,28.17315],[79.78709,28.16063],[79.79719,28.15832],[79.80275,28.15858],[79.80281,28.16069],[79.79998,28.16365],[79.801,28.16575],[79.80559,28.16621],[79.80719,28.16426],[79.80965,28.16638],[79.8111,28.16312],[79.81274,28.16274],[79.81921,28.16512],[79.81716,28.16886],[79.81869,28.17017],[79.82109,28.16691],[79.82372,28.16641],[79.82527,28.16775],[79.82451,28.1716],[79.82004,28.17107],[79.81834,28.1736],[79.82619,28.17417],[79.8258,28.17732],[79.83188,28.18153],[79.83165,28.18665],[79.82799,28.18793],[79.82805,28.18947],[79.83891,28.19187],[79.84119,28.1961],[79.83829,28.2008],[79.83998,28.20468],[79.83408,28.20572],[79.83067,28.20407],[79.82897,28.20561],[79.83011,28.20798],[79.83415,28.20875],[79.83574,28.21097],[79.83377,28.21268],[79.83005,28.21268],[79.83152,28.21446],[79.82912,28.21851],[79.83087,28.22239],[79.8275,28.22544],[79.83014,28.23074],[79.82697,28.23195],[79.8268,28.23387],[79.83522,28.23523],[79.84457,28.22959],[79.85247,28.23378],[79.85522,28.2336],[79.85568,28.23143],[79.85392,28.2296],[79.85843,28.23206],[79.85988,28.23096],[79.85868,28.22995],[79.86648,28.21753],[79.85799,28.20182],[79.86456,28.20003],[79.86821,28.19417],[79.87271,28.19241],[79.87446,28.19199],[79.87798,28.19465],[79.88964,28.19345],[79.88895,28.19229],[79.89243,28.1862],[79.88859,28.18663],[79.88508,28.18087],[79.88508,28.17811],[79.88746,28.17705],[79.89491,28.17903],[79.89888,28.17342],[79.9027,28.17483],[79.90723,28.16842],[79.90936,28.17329],[79.91469,28.16721],[79.91396,28.16168],[79.91116,28.15872],[79.90573,28.15869],[79.90158,28.15527],[79.90217,28.15275],[79.90706,28.15081],[79.91173,28.15112],[79.91588,28.14802],[79.9144,28.14607],[79.90516,28.14378],[79.9038,28.14219],[79.90723,28.13894],[79.90969,28.13996],[79.91536,28.13459],[79.90783,28.13503],[79.89946,28.14119],[79.8971,28.14137],[79.89824,28.13083],[79.89502,28.12673],[79.90217,28.12286],[79.89691,28.11501],[79.90978,28.10695],[79.91637,28.11061],[79.91677,28.11408],[79.92175,28.11852],[79.92774,28.11889],[79.92676,28.12125],[79.93001,28.1221],[79.93074,28.12527],[79.93719,28.12286],[79.94051,28.12346],[79.9504,28.11646],[79.94965,28.11388],[79.95129,28.11275],[79.96144,28.1104],[79.96248,28.10776],[79.96144,28.10633],[79.96702,28.10084],[79.97067,28.1041],[79.97543,28.10511],[79.97734,28.1041],[79.97779,28.1067],[79.98467,28.105],[79.98403,28.10678],[79.98563,28.10678],[79.98527,28.10993],[79.98704,28.11082],[79.98425,28.11318],[79.98642,28.11405],[79.98407,28.11475],[79.98636,28.11616],[79.98337,28.11997],[79.9847,28.12176],[79.98603,28.11926],[79.9883,28.11988],[79.98715,28.1215],[79.98878,28.12321],[79.98673,28.12516],[79.989,28.13032],[79.99495,28.13296],[79.99487,28.13512],[79.99151,28.1361],[79.99382,28.14025],[79.99145,28.1428],[79.99313,28.14458],[79.99153,28.14761],[79.99316,28.1485],[79.99513,28.14731],[79.99193,28.15071],[79.99499,28.14961],[79.9933,28.15159],[79.99539,28.15135],[79.99412,28.15316],[79.99617,28.15583],[79.99261,28.15861],[79.99525,28.15826],[79.99615,28.1603],[79.99366,28.16132],[79.99532,28.1618],[79.99362,28.16391],[79.99555,28.1665],[79.9931,28.17028],[79.99232,28.16845],[79.99085,28.16977],[79.99055,28.1727],[79.98575,28.17464],[79.98776,28.17494],[79.98396,28.17847],[79.98641,28.18111],[79.98428,28.18346],[79.98884,28.18497],[79.98719,28.18616],[79.989,28.18681],[79.98785,28.18929],[79.99185,28.18955],[79.99066,28.19219],[79.98894,28.19185],[79.98948,28.19394],[79.99197,28.19262],[79.99101,28.1942],[79.99468,28.19619],[79.99116,28.19619],[79.99249,28.19875],[79.98978,28.19921],[79.99253,28.20009],[79.99114,28.2014],[79.99273,28.20265],[79.99163,28.20526],[79.98939,28.20423],[79.99006,28.20799],[79.98834,28.2086],[79.99029,28.21321],[79.98884,28.21256],[79.98518,28.21482],[79.98868,28.21501],[79.98838,28.21693],[79.98633,28.21741],[79.98776,28.21876],[79.98695,28.22347],[79.9894,28.22527],[79.98564,28.2276],[79.98772,28.22851],[79.98623,28.22975],[79.98805,28.23041],[79.98703,28.23246],[79.99049,28.23772],[79.98821,28.23937],[79.99103,28.24069],[79.9857,28.24215],[79.98731,28.24306],[79.98626,28.24448],[79.98744,28.25008],[79.98122,28.2566],[79.98396,28.25573],[79.98296,28.2571],[79.98447,28.26043],[79.98306,28.26083],[79.98437,28.26226],[79.98129,28.26368],[79.98391,28.26732],[79.98121,28.27035],[79.98364,28.27289],[79.98268,28.27216],[79.98166,28.27395],[79.98449,28.27347],[79.98403,28.27488],[79.98534,28.27534],[79.9828,28.27963],[79.98583,28.28158],[79.98343,28.28072],[79.98121,28.2823],[79.98333,28.28265],[79.9789,28.28688],[79.98159,28.28589],[79.98087,28.28851],[79.97859,28.28744],[79.97801,28.28863],[79.97964,28.28876],[79.97764,28.29188],[79.97542,28.29215],[79.97668,28.29304],[79.97479,28.29372],[79.97544,28.2979],[79.97327,28.29942],[79.97495,28.3007],[79.97296,28.30073],[79.97462,28.30228],[79.97296,28.30394],[79.97598,28.30609],[79.9734,28.30952],[79.97612,28.31163],[79.97531,28.31342],[79.97819,28.31416],[79.97746,28.31544],[79.97932,28.31633],[79.97744,28.3187],[79.97853,28.32197],[79.9802,28.32151],[79.9791,28.32401],[79.98195,28.32678],[79.98047,28.32796],[79.98193,28.32901],[79.98103,28.33061],[79.98343,28.33294],[79.98683,28.33284],[79.98989,28.34038],[79.99211,28.34172],[79.99164,28.34384],[79.99404,28.34504],[79.99579,28.35248],[79.99408,28.35645],[79.99638,28.35917],[79.99644,28.36439],[80.00009,28.36501],[80.00454,28.36886],[80.00863,28.37981],[80.01054,28.38123],[80.02012,28.37612],[80.04744,28.37011],[80.0541,28.36454],[80.05895,28.35257],[80.06379,28.3497],[80.06567,28.35072],[80.07045,28.36007],[80.07394,28.36241],[80.07703,28.36288],[80.08324,28.35793],[80.08783,28.36067],[80.08956,28.36003],[80.09049,28.36177],[80.09729,28.35588],[80.09359,28.3457],[80.089,28.34002],[80.09573,28.33784],[80.09382,28.33589],[80.09671,28.33297],[80.1048,28.34388],[80.10601,28.34312],[80.10738,28.34446],[80.10998,28.34261],[80.11119,28.3448],[80.11459,28.34384],[80.11516,28.34521],[80.11885,28.34319],[80.11977,28.33898],[80.12514,28.33777],[80.1308,28.34011],[80.13558,28.33867],[80.13865,28.34595],[80.1404,28.34523],[80.14228,28.34708],[80.14668,28.34442],[80.14917,28.34553],[80.14777,28.34345],[80.1508,28.34147],[80.14937,28.33654],[80.15072,28.33267],[80.14664,28.32334],[80.14848,28.31743],[80.15175,28.31541],[80.15419,28.31616],[80.155,28.31448],[80.16654,28.32853],[80.171,28.32651],[80.17588,28.32739],[80.17666,28.32909],[80.18012,28.32828],[80.18386,28.31783],[80.19326,28.31799],[80.1953,28.32165],[80.20191,28.32708],[80.20519,28.32493],[80.20593,28.32711],[80.20927,28.32793],[80.22772,28.32158],[80.22108,28.31334],[80.21994,28.30583],[80.22241,28.3037],[80.22093,28.30217],[80.22218,28.30117],[80.23484,28.30558],[80.24335,28.30663],[80.25118,28.31091],[80.25477,28.30883],[80.25593,28.31099],[80.2599,28.31147],[80.26735,28.30542],[80.2683,28.30701],[80.2709,28.31618],[80.25854,28.32488],[80.26609,28.33381],[80.2666,28.33701],[80.26209,28.34057],[80.25912,28.34553],[80.25267,28.34988],[80.24883,28.35832],[80.25075,28.36027],[80.26244,28.35265],[80.26842,28.35783],[80.27732,28.352],[80.28049,28.35894],[80.28192,28.35691],[80.28618,28.35592],[80.28688,28.35253],[80.28898,28.35087],[80.28834,28.34962],[80.2922,28.3457],[80.28928,28.34264],[80.29145,28.33783],[80.28834,28.33184],[80.29081,28.32992],[80.29317,28.33205],[80.29843,28.32949],[80.30387,28.33699],[80.30756,28.33892],[80.30745,28.34148],[80.31476,28.34825],[80.32095,28.34457],[80.32354,28.34491],[80.31821,28.33741],[80.3182,28.33353],[80.31467,28.33042],[80.31776,28.32691],[80.32267,28.3322],[80.32541,28.32927],[80.327,28.33063],[80.32863,28.32914],[80.33164,28.33054],[80.33821,28.33008],[80.33886,28.32827],[80.33643,28.32545],[80.33855,28.32477],[80.34104,28.32495],[80.34359,28.32813],[80.34849,28.3286],[80.35014,28.33172],[80.35778,28.33137],[80.35868,28.32881],[80.3785,28.34328],[80.37603,28.3475],[80.37768,28.3504],[80.37722,28.35527],[80.37534,28.35845],[80.36957,28.36188],[80.36965,28.36998],[80.36469,28.38143],[80.36697,28.38766],[80.36552,28.39108],[80.36619,28.39589],[80.36264,28.39811],[80.36234,28.40309],[80.35683,28.40627],[80.35762,28.41294],[80.35541,28.41605],[80.35565,28.41906],[80.34955,28.41885],[80.34612,28.42579],[80.34033,28.42987],[80.33943,28.43362],[80.33128,28.441],[80.32943,28.44484],[80.32209,28.45031],[80.32085,28.45501],[80.31678,28.45584],[80.31281,28.46119],[80.30818,28.46339],[80.33523,28.49243],[80.35031,28.4893],[80.3692,28.47152],[80.3719,28.47705],[80.39027,28.46969],[80.39806,28.47779],[80.40165,28.48562],[80.42091,28.48806],[80.42282,28.49204],[80.42869,28.4896],[80.43312,28.49042],[80.43426,28.49307],[80.4329,28.49851],[80.44093,28.50268],[80.44145,28.50748],[80.44984,28.51476],[80.4494,28.52085],[80.4451,28.52876],[80.43659,28.52833],[80.43619,28.52977],[80.43045,28.53028],[80.42776,28.53283],[80.42482,28.54304],[80.41867,28.54793],[80.41647,28.5547],[80.40879,28.56446],[80.40627,28.57095],[80.39953,28.57414],[80.40103,28.5802],[80.39966,28.58388],[80.39575,28.58728],[80.39083,28.58851],[80.39678,28.60206],[80.39372,28.60796],[80.38814,28.60792],[80.37169,28.60209],[80.36877,28.60323],[80.3689,28.61122],[80.36599,28.61563],[80.35707,28.61698],[80.3434,28.63148],[80.32887,28.6289],[80.31478,28.62918],[80.31702,28.63277],[80.31903,28.65029],[80.32594,28.66822],[80.32114,28.68161],[80.32272,28.68691],[80.32101,28.694],[80.31712,28.70014],[80.30796,28.705],[80.29918,28.70672],[80.29786,28.70971],[80.29517,28.7112],[80.29216,28.71202],[80.27915,28.70972],[80.27584,28.71134],[80.26729,28.72113],[80.25652,28.72925],[80.26255,28.73291],[80.26557,28.74361],[80.25803,28.75303],[80.25105,28.75752],[80.24347,28.75579],[80.23692,28.75714],[80.23477,28.75943],[80.21599,28.75557],[80.17069,28.78282],[80.13819,28.81383],[80.11805,28.82898],[80.07482,28.82449],[80.06536,28.8369],[80.06292,28.83467],[80.05979,28.82539],[80.05179,28.82037],[80.05922,28.8168],[80.0681,28.80284],[80.06488,28.79443],[80.05867,28.78839],[80.06174,28.78319],[80.05545,28.78125],[80.05227,28.77828],[80.03013,28.74863],[79.95416,28.72283],[79.94549,28.73058],[79.94369,28.73511],[79.94648,28.74236],[79.94359,28.74862],[79.93863,28.75038],[79.93872,28.75313],[79.94315,28.75798],[79.9432,28.75989],[79.93258,28.76272],[79.93323,28.76428],[79.93057,28.76802],[79.92734,28.76871],[79.92699,28.77097],[79.92408,28.77316],[79.92852,28.77902],[79.93982,28.78772],[79.92652,28.79001],[79.92378,28.78671],[79.91884,28.7865],[79.91935,28.78412],[79.91781,28.78236],[79.90982,28.7854],[79.90647,28.78196],[79.90136,28.78198],[79.89728,28.78623],[79.88426,28.79],[79.8833,28.79454],[79.87306,28.79728],[79.87226,28.79936],[79.87473,28.80236],[79.87007,28.80576],[79.8696,28.80834],[79.87348,28.80939],[79.87849,28.81483],[79.90554,28.80299],[79.91552,28.80427],[79.91078,28.8099],[79.9107,28.81247],[79.91453,28.81848],[79.89407,28.8204],[79.89404,28.82379],[79.89199,28.82561],[79.89391,28.83146],[79.88905,28.83404],[79.88822,28.83656],[79.88212,28.83693],[79.8834,28.83398],[79.87857,28.83356],[79.87961,28.83241],[79.87847,28.83031],[79.87573,28.83311],[79.87256,28.83156],[79.87435,28.83424],[79.87337,28.8363],[79.87461,28.83634],[79.87166,28.84014],[79.87025,28.83845],[79.86719,28.83954],[79.8647,28.83777],[79.86319,28.84022],[79.86266,28.83706],[79.85888,28.8338],[79.86061,28.83304],[79.85898,28.83166],[79.86142,28.83053],[79.85772,28.83064],[79.85387,28.82699],[79.85102,28.82855],[79.85083,28.82693],[79.85371,28.82603],[79.85407,28.82411],[79.84863,28.82515],[79.8463,28.82318],[79.84785,28.81953],[79.84661,28.81744],[79.85212,28.81566],[79.85294,28.81373],[79.84659,28.81044],[79.85076,28.81045],[79.85166,28.80883],[79.85031,28.80601],[79.85289,28.80613],[79.85059,28.80333],[79.85237,28.8019],[79.84934,28.79964],[79.84547,28.80075],[79.84609,28.80474],[79.84152,28.80427],[79.83843,28.80122],[79.83986,28.80017],[79.83832,28.79753],[79.83433,28.79859],[79.83308,28.79682],[79.83081,28.79773],[79.82693,28.79497],[79.82432,28.79829],[79.82289,28.79563],[79.81995,28.79611],[79.81457,28.80261],[79.81281,28.80196],[79.81454,28.79889],[79.81394,28.79688],[79.80803,28.80091],[79.80723,28.80566],[79.81645,28.81692],[79.8199,28.81216],[79.81897,28.80547],[79.82429,28.80727],[79.82604,28.81493],[79.82945,28.81814],[79.82915,28.82139],[79.83245,28.82354],[79.83717,28.83235],[79.83131,28.83076],[79.8279,28.83695],[79.82382,28.83901],[79.82727,28.84167],[79.83087,28.83778],[79.83678,28.83992],[79.83634,28.84294],[79.83245,28.84584],[79.82978,28.85324],[79.83074,28.85523],[79.83288,28.85532],[79.838,28.84832],[79.84063,28.84768],[79.84534,28.85111],[79.84505,28.85537],[79.8496,28.8593],[79.84577,28.86354],[79.84667,28.86874],[79.84468,28.87503],[79.84101,28.87602],[79.83538,28.87489],[79.83546,28.87104],[79.83253,28.87099],[79.82828,28.87828],[79.8293,28.88445],[79.82639,28.88492]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"174","area_level":"District","area_name":"Pratapgarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.63233,26.16269],[81.63344,26.16562],[81.63111,26.17142],[81.6183,26.18069],[81.61294,26.17107],[81.61463,26.16673],[81.61227,26.15474],[81.60168,26.15153],[81.59914,26.14775],[81.59956,26.14341],[81.59404,26.14253],[81.58124,26.14577],[81.5779,26.14471],[81.5692,26.14648],[81.56394,26.13723],[81.55658,26.13502],[81.55362,26.13182],[81.54899,26.13221],[81.54298,26.12306],[81.53854,26.12396],[81.53702,26.1176],[81.53941,26.10778],[81.53504,26.10345],[81.5415,26.0996],[81.54515,26.10173],[81.55244,26.09804],[81.55431,26.09096],[81.55866,26.08581],[81.55626,26.08084],[81.56714,26.07289],[81.55873,26.06056],[81.55064,26.06107],[81.54938,26.05775],[81.54572,26.05825],[81.54177,26.05497],[81.53987,26.05484],[81.53926,26.05953],[81.53264,26.06153],[81.53313,26.05565],[81.53021,26.05309],[81.53285,26.05199],[81.53372,26.0478],[81.53093,26.0447],[81.53865,26.04275],[81.54429,26.03773],[81.54705,26.03289],[81.5467,26.03073],[81.53879,26.02679],[81.5414,26.02265],[81.55339,26.02643],[81.55719,26.02586],[81.56224,26.0287],[81.56677,26.02665],[81.57001,26.01524],[81.56148,26.00938],[81.55858,25.99975],[81.56112,25.99708],[81.5601,25.99626],[81.56709,25.99451],[81.5692,25.98722],[81.57489,25.98753],[81.58198,25.98323],[81.58544,25.98344],[81.58665,25.97889],[81.59066,25.97859],[81.59364,25.9761],[81.59204,25.9694],[81.58018,25.96765],[81.56913,25.97524],[81.56041,25.97183],[81.55872,25.97287],[81.553,25.967],[81.5413,25.96846],[81.53835,25.96709],[81.53443,25.96187],[81.52457,25.95573],[81.5222,25.95759],[81.52056,25.9568],[81.51845,25.95944],[81.51215,25.96001],[81.50794,25.95639],[81.50356,25.94681],[81.49035,25.94774],[81.4863,25.94079],[81.4857,25.9333],[81.48399,25.93129],[81.481,25.93143],[81.47752,25.93784],[81.47356,25.93796],[81.4647,25.9314],[81.45716,25.93161],[81.45734,25.92921],[81.45011,25.92761],[81.44777,25.9292],[81.45113,25.93375],[81.45041,25.93466],[81.45286,25.93516],[81.45017,25.93635],[81.44884,25.93542],[81.4434,25.93965],[81.44147,25.93527],[81.44378,25.93195],[81.44423,25.92652],[81.4461,25.92657],[81.44367,25.92342],[81.447,25.92167],[81.44837,25.92346],[81.44927,25.92025],[81.4457,25.92026],[81.44382,25.91942],[81.4453,25.91786],[81.44259,25.91877],[81.4419,25.91723],[81.43718,25.91958],[81.43479,25.91679],[81.43074,25.91825],[81.42965,25.91661],[81.42921,25.91902],[81.42615,25.91818],[81.42431,25.91505],[81.42592,25.91335],[81.4248,25.90988],[81.41887,25.90409],[81.41503,25.90871],[81.4108,25.89587],[81.40533,25.89181],[81.40361,25.89253],[81.40313,25.89072],[81.39316,25.88918],[81.38962,25.8861],[81.3822,25.88459],[81.37466,25.88768],[81.37465,25.89403],[81.37119,25.89666],[81.37111,25.89496],[81.36176,25.88787],[81.3629,25.88568],[81.36965,25.8842],[81.37369,25.87887],[81.37233,25.87778],[81.37211,25.87123],[81.36901,25.86664],[81.36411,25.86562],[81.35978,25.86855],[81.35867,25.86703],[81.3542,25.86673],[81.34779,25.86978],[81.3431,25.86865],[81.3409,25.86528],[81.33256,25.86997],[81.32969,25.86296],[81.32765,25.86208],[81.32497,25.8573],[81.33004,25.85247],[81.3284,25.8495],[81.33617,25.84212],[81.33532,25.84059],[81.34189,25.83824],[81.34541,25.83951],[81.35228,25.83605],[81.3491,25.82468],[81.34455,25.82293],[81.34506,25.82145],[81.33837,25.8107],[81.34237,25.80783],[81.34666,25.79461],[81.3546,25.78566],[81.35723,25.78009],[81.3625,25.77529],[81.36966,25.77642],[81.37294,25.77471],[81.39232,25.77256],[81.39833,25.76787],[81.40195,25.7605],[81.40014,25.74234],[81.39624,25.73421],[81.36869,25.71197],[81.36869,25.70306],[81.37382,25.69488],[81.38613,25.68653],[81.39864,25.68545],[81.41544,25.6784],[81.42273,25.67354],[81.43381,25.66378],[81.43764,25.65056],[81.44845,25.64221],[81.4521,25.63345],[81.46888,25.61991],[81.47538,25.6175],[81.4829,25.61712],[81.49014,25.61923],[81.4939,25.62338],[81.50722,25.62498],[81.51855,25.62347],[81.52502,25.6207],[81.53124,25.60905],[81.53613,25.60342],[81.53805,25.59452],[81.54025,25.59134],[81.54492,25.58801],[81.55461,25.58492],[81.55732,25.57757],[81.5653,25.57241],[81.57625,25.57441],[81.60478,25.59527],[81.61071,25.59794],[81.6108,25.60801],[81.60403,25.61075],[81.60411,25.6122],[81.60795,25.61798],[81.6137,25.62009],[81.61688,25.62422],[81.61827,25.62379],[81.62034,25.6285],[81.61697,25.63692],[81.61885,25.63926],[81.61874,25.64437],[81.6161,25.64303],[81.61115,25.64682],[81.60641,25.64804],[81.6052,25.64715],[81.60828,25.64601],[81.60498,25.64554],[81.60107,25.64715],[81.60022,25.65358],[81.60352,25.6576],[81.59647,25.65917],[81.59656,25.66074],[81.59922,25.65981],[81.60661,25.66248],[81.60676,25.66845],[81.61989,25.66493],[81.6247,25.66478],[81.62877,25.66667],[81.63837,25.66643],[81.63979,25.66412],[81.6392,25.66133],[81.64215,25.65783],[81.63579,25.65866],[81.63281,25.65305],[81.63418,25.64653],[81.63845,25.6458],[81.6398,25.64206],[81.63517,25.64278],[81.63164,25.63913],[81.62778,25.63909],[81.63419,25.63611],[81.63453,25.6317],[81.63887,25.62713],[81.63639,25.6253],[81.63704,25.62347],[81.64216,25.62319],[81.64826,25.61779],[81.6511,25.61823],[81.65226,25.6127],[81.65694,25.61088],[81.65815,25.60846],[81.66122,25.61199],[81.66099,25.61554],[81.66475,25.61809],[81.66838,25.62764],[81.67403,25.62726],[81.67497,25.63116],[81.68145,25.63256],[81.68385,25.63497],[81.69006,25.63253],[81.69855,25.63401],[81.70376,25.6331],[81.7131,25.62629],[81.72524,25.62205],[81.72561,25.62667],[81.73054,25.6383],[81.72075,25.6422],[81.72101,25.64393],[81.71872,25.64583],[81.71957,25.64982],[81.71805,25.65081],[81.71965,25.65582],[81.71748,25.65689],[81.71855,25.65821],[81.71292,25.65982],[81.70904,25.65795],[81.70527,25.65914],[81.70455,25.65814],[81.70338,25.65986],[81.69239,25.66364],[81.69518,25.66566],[81.69676,25.66979],[81.70653,25.67231],[81.71428,25.66952],[81.71971,25.6752],[81.73134,25.67354],[81.74422,25.66799],[81.7523,25.66971],[81.75081,25.67082],[81.75106,25.67344],[81.75287,25.67855],[81.7551,25.67895],[81.75382,25.68182],[81.75504,25.68469],[81.75228,25.68659],[81.75297,25.69136],[81.74797,25.69608],[81.74191,25.69721],[81.74024,25.69935],[81.74663,25.70642],[81.74704,25.7093],[81.75363,25.71112],[81.75509,25.71354],[81.75408,25.71979],[81.74925,25.72332],[81.74971,25.72589],[81.75152,25.72672],[81.7508,25.7302],[81.7524,25.73413],[81.75948,25.73622],[81.76334,25.74019],[81.77033,25.74196],[81.7706,25.74316],[81.7782,25.74498],[81.77925,25.74399],[81.78433,25.74813],[81.78632,25.74721],[81.78837,25.75011],[81.79423,25.75012],[81.79649,25.74859],[81.79793,25.74994],[81.80223,25.74766],[81.80846,25.74706],[81.81632,25.74296],[81.82528,25.74162],[81.82002,25.72615],[81.8269,25.72593],[81.83052,25.72781],[81.83944,25.7263],[81.84316,25.73133],[81.85732,25.72348],[81.85723,25.71883],[81.86045,25.71739],[81.86229,25.71708],[81.86732,25.72485],[81.87719,25.72197],[81.87874,25.72106],[81.87849,25.71602],[81.88553,25.71183],[81.89138,25.71872],[81.90471,25.71399],[81.91089,25.71657],[81.91479,25.71564],[81.91327,25.72027],[81.91418,25.72307],[81.91951,25.72586],[81.92191,25.7317],[81.91976,25.73547],[81.92873,25.7539],[81.93551,25.74927],[81.93632,25.74497],[81.94704,25.74008],[81.94939,25.7425],[81.95965,25.74124],[81.96313,25.74361],[81.96751,25.73814],[81.97934,25.73725],[81.98158,25.74694],[81.9846,25.74846],[81.98801,25.74465],[81.9913,25.74363],[81.99118,25.7422],[81.99405,25.74299],[81.9943,25.74023],[81.99929,25.74426],[82.00328,25.74262],[82.0046,25.7451],[82.00951,25.74402],[82.01454,25.74527],[82.02095,25.74372],[82.02437,25.73913],[82.02879,25.73769],[82.03146,25.73192],[82.03597,25.73014],[82.04382,25.72017],[82.04428,25.71546],[82.0424,25.71262],[82.0451,25.7077],[82.03424,25.70474],[82.01861,25.70381],[82.0119,25.69891],[82.01234,25.69466],[82.02778,25.69506],[82.03568,25.68957],[82.0446,25.68693],[82.04738,25.68752],[82.0541,25.68398],[82.05977,25.68415],[82.06265,25.68235],[82.06462,25.67825],[82.06756,25.67851],[82.06231,25.65936],[82.06365,25.65511],[82.0741,25.65575],[82.07829,25.65408],[82.08021,25.65504],[82.08705,25.65374],[82.09562,25.66033],[82.09864,25.6574],[82.10522,25.65641],[82.11059,25.65097],[82.11484,25.65182],[82.11653,25.65271],[82.11497,25.65532],[82.11842,25.65791],[82.12327,25.65922],[82.12604,25.65786],[82.12691,25.66401],[82.12294,25.6714],[82.12311,25.67643],[82.12706,25.68177],[82.13694,25.67898],[82.14319,25.6813],[82.15562,25.67837],[82.16283,25.68013],[82.16949,25.69864],[82.17002,25.70427],[82.17965,25.70352],[82.181,25.70098],[82.18525,25.70339],[82.18773,25.70788],[82.19157,25.72291],[82.19173,25.73448],[82.1969,25.74203],[82.18769,25.75608],[82.18792,25.76022],[82.18875,25.76312],[82.1965,25.76435],[82.19809,25.76678],[82.19006,25.77253],[82.18754,25.7697],[82.18343,25.77227],[82.18152,25.77524],[82.18433,25.77859],[82.17365,25.78414],[82.16975,25.79043],[82.17073,25.79313],[82.16926,25.79402],[82.16958,25.79595],[82.17155,25.79985],[82.18123,25.80185],[82.1832,25.79917],[82.18413,25.80169],[82.18245,25.80409],[82.18321,25.80677],[82.17889,25.80909],[82.18237,25.81503],[82.17727,25.82316],[82.17859,25.82642],[82.18402,25.83],[82.18824,25.82976],[82.20128,25.82227],[82.20799,25.82074],[82.2102,25.8236],[82.20787,25.8283],[82.21701,25.8316],[82.21662,25.8379],[82.21814,25.84033],[82.23079,25.83775],[82.23556,25.8343],[82.23749,25.83529],[82.24803,25.83266],[82.25969,25.83591],[82.26744,25.84674],[82.27232,25.84735],[82.27497,25.84371],[82.27965,25.8428],[82.27968,25.84768],[82.28252,25.84984],[82.2828,25.85307],[82.28738,25.86086],[82.28869,25.85944],[82.29074,25.85994],[82.29162,25.86799],[82.29575,25.86873],[82.2906,25.87213],[82.29076,25.87859],[82.29534,25.8859],[82.29569,25.89225],[82.30419,25.89712],[82.30685,25.89579],[82.30769,25.89844],[82.31329,25.90136],[82.32083,25.90195],[82.32295,25.8993],[82.33244,25.89904],[82.33337,25.90197],[82.33924,25.90393],[82.33919,25.90682],[82.34099,25.90668],[82.34228,25.91178],[82.34461,25.91216],[82.34539,25.91505],[82.3485,25.91313],[82.35014,25.91382],[82.3547,25.90495],[82.35745,25.90621],[82.35772,25.90862],[82.36407,25.9083],[82.36517,25.91177],[82.3694,25.91262],[82.37,25.91651],[82.3715,25.91665],[82.37267,25.91381],[82.38014,25.90901],[82.39333,25.90939],[82.39264,25.91489],[82.38824,25.91605],[82.38488,25.91972],[82.39083,25.93316],[82.3809,25.93358],[82.37836,25.93141],[82.37684,25.939],[82.37175,25.94061],[82.37023,25.94289],[82.36542,25.94116],[82.36385,25.93806],[82.35784,25.94149],[82.3529,25.95046],[82.35459,25.95302],[82.34412,25.95665],[82.34532,25.95969],[82.34992,25.96324],[82.35512,25.96099],[82.35909,25.96149],[82.36293,25.96726],[82.36075,25.97115],[82.3689,25.98232],[82.37441,25.97927],[82.37932,25.98022],[82.38736,25.97658],[82.39269,25.97687],[82.39705,25.97392],[82.40392,25.97355],[82.40766,25.97426],[82.41177,25.97898],[82.41848,25.97796],[82.42469,25.98496],[82.43153,25.98213],[82.42932,25.9814],[82.42926,25.97927],[82.42738,25.98002],[82.42579,25.97822],[82.42952,25.97707],[82.43439,25.9852],[82.42396,25.99141],[82.42587,25.99472],[82.42622,26.00628],[82.42972,26.00694],[82.43229,26.005],[82.43393,26.00666],[82.41179,26.01426],[82.3978,26.01135],[82.39309,26.01698],[82.39803,26.02448],[82.39114,26.02935],[82.3802,26.03101],[82.37937,26.03268],[82.37855,26.03078],[82.37429,26.0304],[82.36773,26.02487],[82.36035,26.0128],[82.36107,26.01196],[82.3583,26.00893],[82.35882,26.00503],[82.34971,26.00951],[82.3455,26.00352],[82.34054,26.00533],[82.33905,26.00766],[82.33982,26.01175],[82.34653,26.01757],[82.33766,26.01935],[82.32858,26.02364],[82.32725,26.02589],[82.32823,26.02967],[82.32576,26.0291],[82.3229,26.03107],[82.31598,26.03056],[82.31539,26.03219],[82.31898,26.03918],[82.31074,26.0397],[82.30915,26.04077],[82.31138,26.04094],[82.31115,26.04216],[82.30259,26.04495],[82.28532,26.04342],[82.28195,26.04424],[82.28025,26.04735],[82.27591,26.04768],[82.27119,26.04041],[82.26973,26.04022],[82.26424,26.04508],[82.26168,26.0465],[82.26035,26.04565],[82.25341,26.05296],[82.24284,26.05651],[82.22731,26.03857],[82.2279,26.03597],[82.22391,26.03057],[82.22097,26.03015],[82.21892,26.02684],[82.20885,26.02318],[82.20379,26.02469],[82.20116,26.01683],[82.19703,26.01693],[82.19562,26.01834],[82.19731,26.02646],[82.18519,26.03062],[82.18324,26.03287],[82.184,26.04004],[82.17419,26.04255],[82.17008,26.04124],[82.16831,26.04676],[82.16202,26.05054],[82.15761,26.05085],[82.15961,26.05409],[82.15399,26.05754],[82.14877,26.05639],[82.14709,26.05846],[82.13981,26.05996],[82.13373,26.05753],[82.13313,26.0546],[82.12498,26.05676],[82.12289,26.05804],[82.12244,26.06433],[82.11315,26.06711],[82.11513,26.0711],[82.10789,26.07536],[82.0991,26.07738],[82.09799,26.07517],[82.1006,26.07198],[82.10106,26.06839],[82.09951,26.06873],[82.09581,26.06551],[82.09458,26.06837],[82.08944,26.0698],[82.0876,26.06652],[82.07123,26.06168],[82.06442,26.0534],[82.06171,26.05265],[82.05472,26.05271],[82.05058,26.05718],[82.04106,26.06014],[82.0365,26.06325],[82.03157,26.06313],[82.03044,26.06462],[82.02554,26.0635],[82.01827,26.06589],[81.99998,26.06673],[81.99643,26.06291],[81.9896,26.06278],[81.9873,26.06066],[81.98202,26.06345],[81.98331,26.06766],[81.97999,26.07066],[81.98227,26.07357],[81.97554,26.07744],[81.97325,26.07586],[81.9654,26.07845],[81.95861,26.07387],[81.95907,26.07192],[81.96221,26.07121],[81.96192,26.06603],[81.93976,26.07542],[81.93684,26.07513],[81.9381,26.07164],[81.93382,26.0675],[81.9362,26.0654],[81.93393,26.06539],[81.93457,26.06315],[81.93122,26.06159],[81.93286,26.05994],[81.93152,26.05798],[81.93492,26.05825],[81.93611,26.05504],[81.93005,26.05177],[81.92814,26.05461],[81.91194,26.05604],[81.90873,26.06087],[81.90889,26.06632],[81.90281,26.06899],[81.90103,26.06705],[81.89702,26.06815],[81.89837,26.07054],[81.89454,26.07511],[81.88491,26.08151],[81.87812,26.0757],[81.87205,26.0754],[81.8678,26.07265],[81.86682,26.06956],[81.86978,26.06568],[81.87045,26.0617],[81.85928,26.04693],[81.84947,26.04515],[81.84393,26.04069],[81.83674,26.03989],[81.83424,26.04144],[81.82832,26.03747],[81.82218,26.03817],[81.8138,26.0444],[81.80287,26.04728],[81.80012,26.04482],[81.80085,26.03807],[81.79961,26.03236],[81.79362,26.027],[81.78784,26.02898],[81.78424,26.02813],[81.77551,26.03339],[81.77552,26.03791],[81.76989,26.04131],[81.77203,26.04663],[81.76578,26.05229],[81.77046,26.06085],[81.76901,26.06735],[81.75886,26.07043],[81.75318,26.07775],[81.744,26.08232],[81.74393,26.08494],[81.73377,26.08832],[81.72662,26.09247],[81.72708,26.09388],[81.72453,26.09383],[81.72114,26.09117],[81.71385,26.08298],[81.71821,26.07555],[81.71811,26.06727],[81.71641,26.06597],[81.70609,26.07068],[81.70307,26.06773],[81.70015,26.06812],[81.687,26.0762],[81.68262,26.08585],[81.68518,26.09493],[81.67776,26.09798],[81.68309,26.10883],[81.68258,26.11489],[81.67473,26.12025],[81.66822,26.11613],[81.6597,26.11734],[81.65482,26.12473],[81.64892,26.12867],[81.64837,26.13315],[81.64649,26.13368],[81.65303,26.14378],[81.64737,26.15143],[81.63806,26.15838],[81.63324,26.15985],[81.63352,26.16242],[81.63233,26.16269]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"175","area_level":"District","area_name":"Rae Bareli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.18562,26.605],[81.18169,26.60664],[81.18007,26.60505],[81.18363,26.60199],[81.17988,26.59797],[81.17717,26.60015],[81.17555,26.59858],[81.17401,26.60035],[81.16787,26.59523],[81.16607,26.59548],[81.16093,26.58722],[81.14103,26.58813],[81.13707,26.57881],[81.13313,26.57777],[81.13141,26.57505],[81.133,26.5733],[81.13234,26.57117],[81.12651,26.56385],[81.12487,26.55899],[81.1214,26.55909],[81.1201,26.5569],[81.11547,26.55835],[81.11368,26.56063],[81.10701,26.56222],[81.10434,26.56496],[81.09925,26.56274],[81.09328,26.55462],[81.09386,26.54562],[81.09215,26.54203],[81.08187,26.53578],[81.079,26.53694],[81.07552,26.53242],[81.07584,26.5255],[81.07132,26.52141],[81.06638,26.52209],[81.05783,26.51289],[81.05385,26.50611],[81.04602,26.50377],[81.04206,26.50456],[81.03136,26.51579],[81.03292,26.52064],[81.02841,26.52159],[81.02349,26.52647],[81.01443,26.52681],[81.00909,26.5288],[81.00298,26.52554],[81.00226,26.52117],[81.00427,26.51712],[80.99431,26.51381],[80.99537,26.51162],[80.99728,26.5127],[81.00776,26.51008],[81.00752,26.50365],[81.00168,26.50436],[80.99644,26.50885],[80.99255,26.50767],[80.99003,26.50077],[80.99643,26.49863],[80.99828,26.49412],[81.00169,26.49316],[80.99829,26.4815],[80.9984,26.47635],[80.99623,26.47343],[80.99106,26.47188],[80.99047,26.47339],[80.99287,26.47566],[80.99316,26.47848],[80.9884,26.48199],[80.99085,26.48563],[80.98564,26.48528],[80.9848,26.48387],[80.98831,26.47907],[80.98502,26.47881],[80.98202,26.47304],[80.98456,26.47172],[80.98575,26.46861],[80.99124,26.4667],[80.99125,26.46034],[80.99535,26.4544],[80.99441,26.45024],[80.99843,26.44743],[81.00026,26.44211],[81.01285,26.43431],[81.00904,26.42883],[81.00991,26.42385],[81.01417,26.42367],[81.01602,26.41951],[81.01963,26.42379],[81.02454,26.41776],[81.02417,26.41307],[81.03038,26.41445],[81.02832,26.40889],[81.02092,26.41058],[81.02388,26.4084],[81.024,26.40239],[81.0268,26.40195],[81.02892,26.39585],[81.03062,26.3975],[81.03188,26.39659],[81.03251,26.38664],[81.02931,26.3832],[81.02908,26.38074],[81.03119,26.3801],[81.03195,26.38243],[81.03477,26.38309],[81.03633,26.3817],[81.03507,26.37874],[81.03618,26.37747],[81.04376,26.37758],[81.0452,26.37902],[81.04988,26.37601],[81.04529,26.37205],[81.03984,26.37081],[81.03677,26.36841],[81.03458,26.36252],[81.02927,26.36163],[81.02006,26.36347],[81.01574,26.35828],[81.00693,26.35618],[81.00211,26.35153],[80.9984,26.35097],[80.99843,26.34589],[80.99648,26.34254],[80.99842,26.34055],[80.99704,26.33616],[81.0011,26.33213],[80.99829,26.32474],[80.99825,26.31306],[80.99596,26.31112],[80.99136,26.31471],[80.98651,26.31407],[80.98106,26.30997],[80.97155,26.31039],[80.96832,26.30685],[80.95856,26.30939],[80.9522,26.30835],[80.94779,26.31],[80.94916,26.31326],[80.94209,26.31954],[80.94138,26.32249],[80.94925,26.33243],[80.94673,26.33956],[80.94832,26.34295],[80.94809,26.3477],[80.94706,26.3504],[80.93591,26.35943],[80.93449,26.35067],[80.92927,26.34915],[80.92807,26.34677],[80.92617,26.3475],[80.92552,26.34193],[80.92122,26.34327],[80.92224,26.34767],[80.92001,26.34938],[80.91955,26.35217],[80.91666,26.35163],[80.91572,26.35413],[80.91244,26.35286],[80.9041,26.3535],[80.9032,26.35203],[80.89865,26.35284],[80.89907,26.34926],[80.89136,26.34431],[80.89294,26.35549],[80.89027,26.35857],[80.88242,26.36052],[80.87439,26.35656],[80.86595,26.3569],[80.86391,26.35913],[80.86732,26.36557],[80.86471,26.36672],[80.86404,26.36972],[80.85965,26.36642],[80.84983,26.37187],[80.84214,26.37081],[80.83786,26.36443],[80.83829,26.35859],[80.83475,26.35768],[80.83317,26.35296],[80.82849,26.35254],[80.82694,26.34141],[80.8373,26.33894],[80.8458,26.32885],[80.85711,26.32985],[80.86304,26.32408],[80.86752,26.32288],[80.87013,26.31564],[80.8686,26.30825],[80.87141,26.30734],[80.87325,26.30848],[80.88016,26.30443],[80.87701,26.29966],[80.88228,26.2984],[80.8802,26.29576],[80.88604,26.29409],[80.88063,26.28398],[80.88138,26.28123],[80.86486,26.26951],[80.85799,26.26238],[80.85321,26.25368],[80.85318,26.24931],[80.85097,26.24928],[80.84795,26.24573],[80.84611,26.24621],[80.84402,26.24327],[80.84332,26.24083],[80.84648,26.2372],[80.84126,26.23416],[80.83661,26.23757],[80.83436,26.23563],[80.83031,26.23542],[80.8238,26.22808],[80.82345,26.22109],[80.81829,26.21376],[80.82583,26.21067],[80.8189,26.20145],[80.81702,26.20126],[80.81681,26.20284],[80.81406,26.20404],[80.81205,26.20343],[80.81224,26.20759],[80.80927,26.20986],[80.80366,26.21027],[80.80257,26.21185],[80.79454,26.20631],[80.78806,26.20844],[80.78441,26.2053],[80.78192,26.20818],[80.77822,26.20662],[80.77394,26.20864],[80.76921,26.21321],[80.76297,26.20257],[80.76898,26.20248],[80.76987,26.19701],[80.77316,26.19752],[80.7767,26.1946],[80.77173,26.1915],[80.77301,26.18753],[80.76898,26.18255],[80.76588,26.18449],[80.76319,26.1833],[80.75683,26.18815],[80.75369,26.18742],[80.74865,26.18358],[80.74587,26.18361],[80.73724,26.17314],[80.73185,26.17743],[80.72574,26.17138],[80.72235,26.17206],[80.71627,26.16562],[80.71259,26.16642],[80.70425,26.1593],[80.69898,26.16237],[80.69351,26.16129],[80.69372,26.15302],[80.68957,26.14663],[80.6848,26.14435],[80.69438,26.13311],[80.69303,26.13103],[80.69895,26.12138],[80.69704,26.11557],[80.68839,26.11583],[80.67356,26.12347],[80.66987,26.10156],[80.68243,26.09455],[80.69591,26.08972],[80.71346,26.07697],[80.72162,26.07503],[80.73005,26.10064],[80.73221,26.10286],[80.73211,26.10622],[80.74774,26.10466],[80.75174,26.10265],[80.76978,26.08702],[80.76464,26.08352],[80.76993,26.07959],[80.7946,26.07329],[80.78958,26.06977],[80.79061,26.06681],[80.79264,26.06796],[80.80155,26.06437],[80.80173,26.05031],[80.80552,26.04334],[80.80961,26.02997],[80.81482,26.02484],[80.82881,26.0188],[80.8367,26.01967],[80.84166,26.02239],[80.85611,26.0409],[80.87586,26.05518],[80.90901,26.05598],[80.91828,26.05166],[80.92788,26.05022],[80.94138,26.0545],[80.95252,26.05492],[80.9649,26.0582],[81.00156,26.07886],[81.01409,26.07461],[81.03785,26.04807],[81.04465,26.03506],[81.05231,26.02874],[81.05964,26.01334],[81.05862,26.00518],[81.06333,26.00035],[81.08394,25.98759],[81.11897,25.96948],[81.16581,25.96323],[81.18087,25.95239],[81.20064,25.94838],[81.21625,25.94001],[81.21662,25.89529],[81.21594,25.88161],[81.21362,25.87428],[81.21936,25.86602],[81.23822,25.85605],[81.26225,25.85056],[81.26998,25.84678],[81.27845,25.85138],[81.29119,25.84793],[81.30481,25.83979],[81.31523,25.82853],[81.327,25.81901],[81.33375,25.81561],[81.33837,25.8107],[81.34506,25.82145],[81.34455,25.82293],[81.3491,25.82468],[81.35228,25.83605],[81.34541,25.83951],[81.34189,25.83824],[81.33532,25.84059],[81.33617,25.84212],[81.3284,25.8495],[81.33004,25.85247],[81.32497,25.8573],[81.32765,25.86208],[81.32969,25.86296],[81.33256,25.86997],[81.3409,25.86528],[81.3431,25.86865],[81.34779,25.86978],[81.3542,25.86673],[81.35867,25.86703],[81.35978,25.86855],[81.36411,25.86562],[81.36901,25.86664],[81.37211,25.87123],[81.37233,25.87778],[81.37369,25.87887],[81.36965,25.8842],[81.3629,25.88568],[81.36176,25.88787],[81.37111,25.89496],[81.37119,25.89666],[81.37465,25.89403],[81.37466,25.88768],[81.3822,25.88459],[81.38962,25.8861],[81.39316,25.88918],[81.39933,25.8892],[81.40313,25.89072],[81.40361,25.89253],[81.40533,25.89181],[81.41192,25.89731],[81.41503,25.90871],[81.41887,25.90409],[81.42412,25.90892],[81.42592,25.91335],[81.42431,25.91505],[81.42615,25.91818],[81.42921,25.91902],[81.42965,25.91661],[81.43074,25.91825],[81.43479,25.91679],[81.43718,25.91958],[81.4419,25.91723],[81.44259,25.91877],[81.4453,25.91786],[81.44382,25.91942],[81.4457,25.92026],[81.44927,25.92025],[81.44837,25.92346],[81.447,25.92167],[81.44367,25.92342],[81.4461,25.92657],[81.44423,25.92652],[81.44378,25.93195],[81.44147,25.93527],[81.4434,25.93965],[81.44884,25.93542],[81.45017,25.93635],[81.45286,25.93516],[81.45041,25.93466],[81.45113,25.93375],[81.44777,25.9292],[81.45011,25.92761],[81.45734,25.92921],[81.45716,25.93161],[81.4647,25.9314],[81.47356,25.93796],[81.47752,25.93784],[81.481,25.93143],[81.48399,25.93129],[81.4857,25.9333],[81.4863,25.94079],[81.49035,25.94774],[81.50356,25.94681],[81.50794,25.95639],[81.51215,25.96001],[81.51845,25.95944],[81.52056,25.9568],[81.5222,25.95759],[81.52457,25.95573],[81.53443,25.96187],[81.53835,25.96709],[81.5413,25.96846],[81.553,25.967],[81.55872,25.97287],[81.56041,25.97183],[81.56913,25.97524],[81.58018,25.96765],[81.59204,25.9694],[81.59364,25.9761],[81.59066,25.97859],[81.58665,25.97889],[81.58544,25.98344],[81.58198,25.98323],[81.57489,25.98753],[81.5692,25.98722],[81.56709,25.99451],[81.5601,25.99626],[81.56112,25.99708],[81.55858,25.99975],[81.56148,26.00938],[81.57001,26.01524],[81.56677,26.02665],[81.56224,26.0287],[81.55719,26.02586],[81.55339,26.02643],[81.54255,26.02237],[81.53881,26.02498],[81.53938,26.02761],[81.54735,26.03191],[81.54085,26.04109],[81.53093,26.0447],[81.53372,26.0478],[81.53285,26.05199],[81.53021,26.05309],[81.53313,26.05565],[81.53264,26.06153],[81.53926,26.05953],[81.54013,26.05471],[81.54572,26.05825],[81.54938,26.05775],[81.55064,26.06107],[81.55873,26.06056],[81.56713,26.07318],[81.55626,26.08084],[81.55866,26.08581],[81.55431,26.09096],[81.55244,26.09804],[81.54515,26.10173],[81.5415,26.0996],[81.53504,26.10345],[81.53935,26.10739],[81.53694,26.1171],[81.53854,26.12396],[81.54298,26.12306],[81.54899,26.13221],[81.55362,26.13182],[81.55658,26.13502],[81.56394,26.13723],[81.56897,26.14637],[81.5779,26.14471],[81.58124,26.14577],[81.59404,26.14253],[81.59956,26.14341],[81.59914,26.14775],[81.60168,26.15153],[81.61227,26.15474],[81.61463,26.16673],[81.61294,26.17107],[81.6183,26.18069],[81.61562,26.1832],[81.61511,26.18621],[81.60984,26.18868],[81.60937,26.1911],[81.61577,26.20413],[81.61313,26.20946],[81.61137,26.22002],[81.59875,26.22251],[81.5964,26.21987],[81.59461,26.21997],[81.58991,26.2258],[81.58889,26.23057],[81.59119,26.23415],[81.59108,26.24088],[81.58969,26.24263],[81.59203,26.24478],[81.58634,26.25009],[81.5825,26.24733],[81.5752,26.24871],[81.57303,26.24736],[81.56766,26.24929],[81.56531,26.24835],[81.5653,26.24184],[81.56244,26.2423],[81.5599,26.23676],[81.55649,26.23845],[81.55578,26.24111],[81.55776,26.24556],[81.55506,26.24727],[81.55249,26.24637],[81.54818,26.24925],[81.54144,26.24591],[81.54018,26.24722],[81.53969,26.2411],[81.53755,26.23798],[81.53176,26.23773],[81.53242,26.23653],[81.53039,26.23509],[81.53123,26.23033],[81.52367,26.22463],[81.52364,26.22225],[81.5193,26.22088],[81.51552,26.22259],[81.51709,26.22615],[81.51514,26.22823],[81.51252,26.2241],[81.51448,26.2237],[81.51632,26.22043],[81.50405,26.22262],[81.49823,26.2186],[81.49318,26.2224],[81.48516,26.22387],[81.48297,26.22863],[81.47498,26.22986],[81.47013,26.23359],[81.46851,26.23289],[81.46604,26.22572],[81.45377,26.22278],[81.45148,26.2241],[81.44268,26.22384],[81.44756,26.21842],[81.44332,26.2164],[81.44196,26.21395],[81.43376,26.21206],[81.43068,26.21235],[81.42922,26.21669],[81.42332,26.21782],[81.42045,26.22041],[81.42134,26.23106],[81.41434,26.23555],[81.41231,26.2305],[81.39476,26.22716],[81.38374,26.23037],[81.38207,26.22792],[81.37387,26.22477],[81.3693,26.22754],[81.36277,26.22727],[81.36049,26.22914],[81.35375,26.22762],[81.3506,26.23168],[81.35036,26.24108],[81.34864,26.24425],[81.35205,26.24999],[81.35573,26.25042],[81.36148,26.25554],[81.36197,26.26272],[81.35541,26.2691],[81.35764,26.27865],[81.3623,26.28203],[81.36414,26.28445],[81.36311,26.28642],[81.36518,26.28807],[81.37458,26.28356],[81.37882,26.28613],[81.37794,26.29062],[81.38241,26.29421],[81.39151,26.2917],[81.39914,26.30031],[81.40015,26.30358],[81.40424,26.30495],[81.40424,26.30848],[81.40848,26.31483],[81.40897,26.31816],[81.4067,26.32066],[81.398,26.32405],[81.39461,26.32393],[81.39098,26.32778],[81.38666,26.32959],[81.37633,26.33023],[81.37269,26.32862],[81.36685,26.33759],[81.37026,26.34088],[81.37711,26.34189],[81.38638,26.33812],[81.38863,26.33564],[81.39458,26.34319],[81.39162,26.34454],[81.39437,26.35103],[81.38591,26.35791],[81.38687,26.36059],[81.38312,26.36724],[81.38378,26.37077],[81.3879,26.37298],[81.39032,26.37894],[81.38787,26.38493],[81.3829,26.39099],[81.38423,26.39154],[81.38362,26.39379],[81.3877,26.40458],[81.38993,26.40424],[81.3911,26.40851],[81.39648,26.41285],[81.39944,26.41823],[81.39538,26.42139],[81.39394,26.43089],[81.39073,26.43198],[81.38804,26.43521],[81.37771,26.4392],[81.37568,26.44201],[81.36323,26.44555],[81.36609,26.44575],[81.36883,26.44945],[81.37651,26.45183],[81.37951,26.45658],[81.37496,26.45969],[81.37487,26.46329],[81.36996,26.46587],[81.37355,26.46734],[81.37665,26.47099],[81.37747,26.47904],[81.37423,26.48363],[81.37452,26.48883],[81.36819,26.49445],[81.36206,26.49748],[81.36075,26.50028],[81.3669,26.50794],[81.36382,26.51127],[81.36083,26.52549],[81.35452,26.52945],[81.35076,26.52979],[81.34416,26.53506],[81.34485,26.54408],[81.3339,26.55125],[81.32325,26.55309],[81.31537,26.54072],[81.30493,26.54396],[81.29993,26.54588],[81.30132,26.54989],[81.29733,26.55431],[81.29327,26.56379],[81.27729,26.57102],[81.27377,26.57462],[81.2668,26.57455],[81.26248,26.57825],[81.2502,26.57976],[81.24727,26.58232],[81.24716,26.58616],[81.24034,26.58889],[81.23182,26.58991],[81.2266,26.59586],[81.21886,26.59895],[81.21711,26.59662],[81.2136,26.59682],[81.21304,26.59445],[81.20613,26.59543],[81.19019,26.60471],[81.18562,26.605]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"176","area_level":"District","area_name":"Rampur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.04804,29.16],[79.04538,29.16418],[79.0386,29.16884],[79.03301,29.16885],[79.02974,29.16591],[79.02932,29.16318],[79.03177,29.15958],[79.03937,29.15841],[79.03595,29.15309],[79.0378,29.14546],[79.03535,29.14392],[79.02978,29.14697],[79.02382,29.15555],[79.01804,29.15464],[79.02111,29.14583],[79.01494,29.13395],[79.01692,29.13077],[79.01921,29.12934],[79.02732,29.13244],[79.03175,29.1281],[79.04063,29.12767],[79.03456,29.1177],[79.0267,29.11242],[79.01419,29.11662],[79.00817,29.11191],[79.00625,29.11828],[79.0035,29.11921],[79.00171,29.12226],[79.00424,29.1259],[78.99665,29.13012],[78.9908,29.13109],[78.98984,29.13949],[78.98234,29.14305],[78.97676,29.13855],[78.97767,29.13671],[78.97468,29.13595],[78.97457,29.12984],[78.9837,29.12354],[78.97721,29.1175],[78.9694,29.12182],[78.96759,29.12043],[78.96639,29.11778],[78.96834,29.11676],[78.96667,29.11253],[78.97123,29.11303],[78.97034,29.11666],[78.9722,29.11799],[78.9737,29.11481],[78.97184,29.11266],[78.97375,29.10823],[78.97202,29.10784],[78.96978,29.10168],[78.96774,29.1011],[78.96824,29.09927],[78.96521,29.09991],[78.96154,29.09601],[78.95478,29.08418],[78.94796,29.0811],[78.94628,29.07809],[78.95822,29.07102],[78.95658,29.06803],[78.94284,29.07386],[78.94402,29.07228],[78.94182,29.06683],[78.94633,29.06159],[78.94467,29.05713],[78.93429,29.06072],[78.9278,29.0583],[78.928,29.05494],[78.93644,29.04723],[78.92694,29.04347],[78.93076,29.03791],[78.9276,29.0328],[78.93268,29.02806],[78.93268,29.02608],[78.93516,29.02504],[78.93382,29.02216],[78.93478,29.01797],[78.93339,29.01692],[78.93122,29.01817],[78.9277,29.01124],[78.92563,29.01251],[78.91845,29.00435],[78.91561,29.00658],[78.91303,29.00655],[78.90463,29.00133],[78.90465,28.99832],[78.90251,28.99625],[78.90961,28.98664],[78.91452,28.98445],[78.91685,28.98657],[78.92576,28.97851],[78.91671,28.9684],[78.91542,28.96393],[78.9225,28.96067],[78.92561,28.9609],[78.92748,28.95729],[78.92603,28.95522],[78.93374,28.95341],[78.9313,28.94876],[78.93292,28.94941],[78.93368,28.94437],[78.93565,28.94235],[78.93386,28.94061],[78.93533,28.93968],[78.93187,28.93818],[78.93248,28.93318],[78.93401,28.93217],[78.93026,28.93281],[78.92987,28.93491],[78.9275,28.93356],[78.92287,28.93577],[78.92095,28.92517],[78.92377,28.92296],[78.92145,28.92131],[78.92463,28.9208],[78.92023,28.91737],[78.92104,28.91435],[78.92304,28.91348],[78.92163,28.90951],[78.92379,28.90843],[78.92088,28.90775],[78.91932,28.9033],[78.91661,28.90184],[78.91844,28.89948],[78.91771,28.89663],[78.92083,28.89553],[78.92326,28.89137],[78.92545,28.89076],[78.92888,28.89342],[78.93229,28.89325],[78.93087,28.89007],[78.93237,28.88842],[78.93586,28.89159],[78.9383,28.89023],[78.93568,28.88604],[78.93356,28.88688],[78.93194,28.88562],[78.93294,28.88302],[78.93503,28.88219],[78.93276,28.87871],[78.93731,28.88017],[78.9369,28.87715],[78.9386,28.87434],[78.93706,28.87332],[78.9348,28.8748],[78.93315,28.87344],[78.93351,28.87171],[78.93683,28.87025],[78.93628,28.86823],[78.93797,28.86663],[78.93355,28.86532],[78.9335,28.8639],[78.93501,28.86294],[78.94076,28.8652],[78.94341,28.86139],[78.94632,28.8626],[78.94647,28.85947],[78.94971,28.85731],[78.95101,28.86016],[78.95356,28.86016],[78.95025,28.86262],[78.95353,28.86333],[78.95992,28.85529],[78.96385,28.85584],[78.96539,28.84782],[78.96784,28.84816],[78.968,28.85188],[78.97329,28.84929],[78.96861,28.84501],[78.96867,28.83939],[78.96437,28.83957],[78.96275,28.83729],[78.96846,28.83585],[78.96322,28.83249],[78.96979,28.82874],[78.97028,28.82482],[78.97386,28.82233],[78.98167,28.82063],[78.98224,28.82162],[78.97886,28.82322],[78.97866,28.82503],[78.9836,28.82394],[78.98344,28.82588],[78.98706,28.82585],[78.98745,28.82795],[78.99729,28.82373],[78.99438,28.82071],[78.99802,28.81464],[78.98968,28.81039],[78.98835,28.80822],[78.99235,28.80695],[78.99329,28.80458],[78.99212,28.7992],[78.99438,28.79391],[78.98611,28.79008],[78.98043,28.78928],[78.98029,28.78682],[78.97633,28.78431],[78.9741,28.78065],[78.97809,28.77761],[78.98176,28.78018],[78.98416,28.78],[78.9841,28.77552],[78.98773,28.77331],[78.99094,28.77538],[78.99294,28.77419],[78.99566,28.77071],[78.99961,28.76901],[78.99687,28.76695],[79.00108,28.76422],[78.99853,28.76018],[78.99067,28.75709],[78.98777,28.75248],[78.986,28.7516],[78.98323,28.75286],[78.97899,28.74833],[78.97787,28.74879],[78.9711,28.74124],[78.97035,28.73787],[78.97286,28.73616],[78.96461,28.72973],[78.96675,28.72541],[78.96435,28.72129],[78.96671,28.71673],[78.9647,28.71532],[78.96288,28.70588],[78.95997,28.70158],[78.95844,28.70303],[78.95248,28.70061],[78.94477,28.69452],[78.94097,28.69672],[78.92583,28.69879],[78.91682,28.69179],[78.91447,28.69246],[78.90115,28.68554],[78.89282,28.69455],[78.88702,28.69303],[78.88335,28.69856],[78.88383,28.70031],[78.88012,28.70083],[78.88023,28.70361],[78.88571,28.70474],[78.88793,28.7085],[78.88634,28.71763],[78.87893,28.7228],[78.87628,28.72207],[78.8729,28.72361],[78.86785,28.71762],[78.87049,28.71453],[78.86934,28.70353],[78.87527,28.70043],[78.86551,28.68955],[78.86225,28.68403],[78.86312,28.68334],[78.8585,28.67728],[78.86739,28.67155],[78.85965,28.65919],[78.86601,28.65494],[78.86517,28.65409],[78.87009,28.64986],[78.86901,28.64946],[78.88196,28.64112],[78.88214,28.63917],[78.89572,28.63103],[78.89525,28.62932],[78.89907,28.62375],[78.89817,28.61853],[78.90197,28.61514],[78.90237,28.61104],[78.90675,28.60864],[78.90955,28.60938],[78.91378,28.60689],[78.91255,28.60556],[78.91347,28.6049],[78.92009,28.60052],[78.92133,28.60158],[78.92531,28.59811],[78.92061,28.59248],[78.92298,28.58708],[78.92216,28.58447],[78.9305,28.58355],[78.93486,28.58117],[78.93478,28.58231],[78.93816,28.58164],[78.93806,28.57693],[78.94017,28.57423],[78.93678,28.56856],[78.94932,28.5584],[78.95644,28.55514],[78.95583,28.55123],[78.95888,28.5499],[78.95594,28.5437],[78.95775,28.54225],[78.95644,28.5375],[78.95442,28.53576],[78.94846,28.53688],[78.94417,28.53573],[78.94695,28.53045],[78.94438,28.52937],[78.94565,28.52868],[78.94363,28.52716],[78.95274,28.51855],[78.95145,28.5174],[78.95943,28.50829],[78.95529,28.50137],[78.95398,28.50034],[78.95182,28.50178],[78.94944,28.50013],[78.9491,28.49244],[78.9431,28.48667],[78.9423,28.48229],[78.94089,28.48203],[78.94194,28.47856],[78.93692,28.47241],[78.93521,28.46758],[78.94141,28.46145],[78.93994,28.45513],[78.9421,28.44656],[78.94381,28.4466],[78.9433,28.4448],[78.94505,28.44499],[78.94412,28.44385],[78.94677,28.43981],[78.94947,28.4394],[78.95179,28.43517],[78.95184,28.43056],[78.94922,28.42906],[78.95056,28.42196],[78.95279,28.41899],[78.95687,28.41793],[78.95803,28.41948],[78.9597,28.41729],[78.96308,28.41867],[78.96217,28.42126],[78.96712,28.41921],[78.9687,28.42315],[78.97124,28.42262],[78.98274,28.43619],[78.98296,28.43408],[78.98907,28.43102],[78.99155,28.4334],[78.9977,28.43095],[78.99965,28.42851],[79.0028,28.43176],[79.00427,28.4369],[79.00974,28.44252],[79.01757,28.43783],[79.02652,28.44798],[79.03018,28.44624],[79.03406,28.45166],[79.03115,28.46171],[79.03702,28.46714],[79.04336,28.46756],[79.04496,28.46624],[79.05033,28.47096],[79.04932,28.47234],[79.05252,28.47554],[79.04847,28.47862],[79.04958,28.47936],[79.04734,28.48308],[79.0444,28.48356],[79.0419,28.48611],[79.04475,28.48858],[79.04647,28.48725],[79.04771,28.48841],[79.05088,28.48532],[79.05534,28.4878],[79.05769,28.48727],[79.06288,28.48351],[79.0656,28.48719],[79.06966,28.4851],[79.07402,28.48963],[79.07286,28.49223],[79.07517,28.49491],[79.07139,28.4988],[79.07317,28.50194],[79.06961,28.5029],[79.07507,28.50821],[79.09029,28.51305],[79.10005,28.51177],[79.10455,28.50819],[79.11217,28.51389],[79.116,28.51276],[79.12465,28.51779],[79.13007,28.51517],[79.13061,28.51843],[79.14577,28.53141],[79.14752,28.53841],[79.15568,28.5424],[79.1614,28.54866],[79.16292,28.54835],[79.16074,28.55064],[79.16174,28.55358],[79.15849,28.55775],[79.16023,28.56061],[79.16345,28.55913],[79.16772,28.56185],[79.17339,28.56171],[79.17637,28.56738],[79.18121,28.56762],[79.185,28.57514],[79.19097,28.576],[79.19074,28.57258],[79.193,28.57066],[79.19859,28.57346],[79.205,28.57178],[79.2055,28.57499],[79.21127,28.57923],[79.2148,28.58559],[79.21245,28.58654],[79.21265,28.59519],[79.21764,28.59691],[79.21474,28.60119],[79.22293,28.60918],[79.2191,28.61032],[79.22104,28.61423],[79.22352,28.6165],[79.22784,28.61619],[79.2288,28.618],[79.23373,28.61577],[79.23775,28.62336],[79.24237,28.62727],[79.23883,28.63017],[79.24115,28.63312],[79.2295,28.63765],[79.23786,28.65187],[79.23795,28.65518],[79.23344,28.65771],[79.23412,28.65931],[79.23588,28.6619],[79.23945,28.66091],[79.24224,28.66258],[79.24601,28.6609],[79.25,28.66351],[79.25175,28.66307],[79.25285,28.66496],[79.25484,28.66459],[79.26052,28.67319],[79.26616,28.6781],[79.27253,28.68892],[79.2766,28.68775],[79.27647,28.69088],[79.28039,28.6982],[79.28634,28.7032],[79.28595,28.71006],[79.28819,28.71086],[79.28822,28.71404],[79.29247,28.72091],[79.29553,28.72081],[79.29681,28.72675],[79.29552,28.73116],[79.29738,28.73275],[79.29918,28.73186],[79.30712,28.74314],[79.30896,28.74197],[79.31134,28.74343],[79.32001,28.73904],[79.32504,28.7455],[79.33136,28.74335],[79.33385,28.74006],[79.33809,28.74216],[79.33982,28.74659],[79.34124,28.74555],[79.34111,28.75052],[79.34889,28.74861],[79.35983,28.75247],[79.36045,28.75826],[79.36262,28.75778],[79.36545,28.76291],[79.35966,28.76812],[79.34556,28.77575],[79.35187,28.78464],[79.35927,28.77951],[79.36251,28.77491],[79.36843,28.77203],[79.37377,28.77293],[79.38162,28.77029],[79.38358,28.77454],[79.38744,28.77793],[79.38652,28.78342],[79.37234,28.78862],[79.37893,28.79857],[79.37679,28.79986],[79.37986,28.8023],[79.37588,28.80395],[79.375,28.80683],[79.3794,28.80703],[79.37828,28.80915],[79.37986,28.81072],[79.3706,28.81526],[79.36945,28.82135],[79.37174,28.82317],[79.36458,28.82827],[79.36446,28.8333],[79.36747,28.83693],[79.36698,28.83911],[79.36843,28.83912],[79.37893,28.83656],[79.37868,28.83347],[79.38121,28.83278],[79.37949,28.83101],[79.38821,28.82721],[79.38953,28.82874],[79.38716,28.83153],[79.38994,28.83057],[79.39033,28.83375],[79.394,28.83246],[79.39792,28.83454],[79.39793,28.83256],[79.40421,28.83272],[79.40321,28.83706],[79.40111,28.83609],[79.40152,28.83762],[79.39938,28.83791],[79.40108,28.84136],[79.40339,28.84026],[79.40614,28.84257],[79.40829,28.84179],[79.41059,28.84666],[79.4091,28.84906],[79.40999,28.853],[79.39906,28.85801],[79.39247,28.85127],[79.38423,28.85434],[79.38208,28.85673],[79.38091,28.85614],[79.38024,28.85966],[79.38873,28.86419],[79.3939,28.8622],[79.39639,28.86338],[79.40146,28.86212],[79.40546,28.8658],[79.4118,28.86471],[79.41417,28.86657],[79.41457,28.87017],[79.40886,28.87138],[79.40864,28.87319],[79.40539,28.8752],[79.40062,28.87698],[79.39985,28.87543],[79.39705,28.87593],[79.39357,28.87816],[79.39117,28.88201],[79.38443,28.88612],[79.38569,28.88935],[79.38486,28.89503],[79.38785,28.89593],[79.39689,28.89392],[79.39808,28.89557],[79.41845,28.88758],[79.41719,28.8928],[79.41832,28.89626],[79.41622,28.89983],[79.41749,28.90119],[79.42221,28.90033],[79.42252,28.90303],[79.42532,28.90522],[79.42435,28.90865],[79.42692,28.91128],[79.42511,28.91213],[79.42764,28.91269],[79.42539,28.91324],[79.42513,28.91437],[79.42692,28.91442],[79.42475,28.91511],[79.42692,28.91502],[79.42487,28.91675],[79.42689,28.91618],[79.42794,28.91817],[79.42641,28.92215],[79.41584,28.92787],[79.41889,28.93298],[79.41901,28.94003],[79.41558,28.94137],[79.41583,28.94382],[79.40803,28.95193],[79.40615,28.95222],[79.4063,28.95001],[79.40433,28.95041],[79.40471,28.94921],[79.40281,28.95001],[79.39065,28.94739],[79.3853,28.95177],[79.38631,28.95319],[79.3821,28.96224],[79.38175,28.9698],[79.37714,28.97139],[79.37769,28.9757],[79.37239,28.9846],[79.37236,28.98747],[79.36763,28.98664],[79.36211,28.98145],[79.36309,28.97798],[79.36099,28.97193],[79.36517,28.97074],[79.3647,28.96807],[79.35627,28.9677],[79.33722,28.97213],[79.32146,28.9718],[79.3119,28.97706],[79.31106,28.97526],[79.31265,28.97498],[79.30986,28.97172],[79.31249,28.97131],[79.31268,28.96897],[79.31092,28.96999],[79.31033,28.96799],[79.30747,28.96787],[79.30727,28.96647],[79.29885,28.9728],[79.29233,28.97381],[79.25913,28.9924],[79.24775,29.00334],[79.25102,29.01024],[79.24495,29.01008],[79.23155,29.01512],[79.22203,29.01945],[79.21173,29.02756],[79.20365,29.02074],[79.19741,29.02138],[79.19426,29.01972],[79.19077,29.02318],[79.19089,29.01895],[79.19384,29.01559],[79.18595,29.01764],[79.18267,29.01605],[79.18094,29.01288],[79.17106,29.01187],[79.17582,29.01574],[79.16843,29.01942],[79.16528,29.01779],[79.16589,29.02024],[79.1622,29.02409],[79.16235,29.02921],[79.16497,29.02884],[79.1644,29.03222],[79.16751,29.0322],[79.16884,29.03577],[79.168,29.03826],[79.17085,29.03942],[79.16916,29.04238],[79.17192,29.04264],[79.1718,29.04506],[79.17511,29.04625],[79.17029,29.04861],[79.168,29.04738],[79.16191,29.04896],[79.15332,29.05686],[79.14876,29.05845],[79.14733,29.06226],[79.14513,29.06296],[79.14587,29.06457],[79.1425,29.06695],[79.14422,29.07203],[79.14181,29.07763],[79.14212,29.08194],[79.14342,29.08291],[79.14327,29.08668],[79.14996,29.09176],[79.15002,29.09451],[79.15153,29.0954],[79.14832,29.09914],[79.15318,29.10155],[79.15084,29.10341],[79.15245,29.10712],[79.15127,29.11327],[79.1535,29.11518],[79.15017,29.11867],[79.14082,29.12226],[79.14198,29.12412],[79.14076,29.1251],[79.12647,29.13288],[79.12492,29.13306],[79.12273,29.12734],[79.11946,29.12577],[79.11294,29.12754],[79.10139,29.1341],[79.09636,29.13913],[79.08405,29.1471],[79.07487,29.15164],[79.06316,29.15473],[79.0537,29.15487],[79.04804,29.16]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"177","area_level":"District","area_name":"Saharanpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.6017,30.3997],[77.59963,30.40104],[77.59831,30.40488],[77.59043,30.40628],[77.58546,30.40492],[77.58193,30.40134],[77.58255,30.39987],[77.57604,30.39739],[77.5847,30.38529],[77.58563,30.37947],[77.58733,30.37877],[77.58669,30.37693],[77.60459,30.36739],[77.60185,30.36145],[77.59249,30.35479],[77.5909,30.34782],[77.58853,30.34571],[77.5862,30.33942],[77.57798,30.33078],[77.57856,30.32525],[77.58609,30.31541],[77.58629,30.3127],[77.58185,30.30632],[77.56852,30.29898],[77.54658,30.28147],[77.53825,30.27796],[77.53024,30.25048],[77.52049,30.24466],[77.50462,30.2252],[77.49483,30.20401],[77.48675,30.19535],[77.48053,30.18422],[77.4754,30.17912],[77.47183,30.18189],[77.45694,30.16234],[77.44956,30.16578],[77.44071,30.16498],[77.43643,30.16047],[77.43504,30.1608],[77.43481,30.16399],[77.42976,30.16398],[77.42569,30.15812],[77.42753,30.1557],[77.42219,30.14868],[77.4227,30.14011],[77.41978,30.13524],[77.42505,30.13145],[77.42189,30.12859],[77.41349,30.11294],[77.41227,30.11433],[77.40559,30.11389],[77.40316,30.11175],[77.41023,30.10473],[77.41694,30.10544],[77.42386,30.10321],[77.4062,30.08825],[77.39148,30.08988],[77.38851,30.08688],[77.38239,30.09159],[77.37745,30.09002],[77.36845,30.0836],[77.36264,30.07638],[77.34522,30.06932],[77.3343,30.05374],[77.32846,30.05333],[77.3189,30.0565],[77.30298,30.0553],[77.3002,30.05248],[77.29693,30.05332],[77.28494,30.0424],[77.27778,30.04181],[77.27637,30.03755],[77.28227,30.02941],[77.27956,30.02078],[77.27926,30.01216],[77.27556,30.00634],[77.27766,30.00024],[77.26153,29.98288],[77.24698,29.97659],[77.24687,29.96832],[77.24401,29.95979],[77.23693,29.95474],[77.23631,29.9509],[77.22595,29.93435],[77.22105,29.93288],[77.21748,29.92342],[77.21119,29.91866],[77.20402,29.91808],[77.19936,29.91423],[77.19047,29.9135],[77.18797,29.91136],[77.18576,29.90753],[77.18631,29.89813],[77.19086,29.89202],[77.20013,29.88949],[77.20203,29.8689],[77.20135,29.86419],[77.19911,29.86287],[77.19734,29.85874],[77.19314,29.85675],[77.18946,29.85847],[77.18694,29.85783],[77.18323,29.85453],[77.17825,29.8458],[77.1794,29.81308],[77.17249,29.80776],[77.17367,29.80505],[77.1726,29.80164],[77.16429,29.79172],[77.15878,29.79231],[77.15137,29.7882],[77.14745,29.77884],[77.14662,29.77183],[77.13891,29.76962],[77.12531,29.7695],[77.12221,29.76708],[77.11981,29.76008],[77.11998,29.7554],[77.12246,29.75124],[77.12719,29.7473],[77.1355,29.74408],[77.13685,29.73962],[77.13906,29.73821],[77.13907,29.73227],[77.13361,29.72847],[77.13289,29.72239],[77.13423,29.71843],[77.13779,29.71755],[77.13975,29.7147],[77.14501,29.71366],[77.14574,29.71097],[77.14953,29.70949],[77.14941,29.7057],[77.1556,29.6993],[77.15483,29.69591],[77.15655,29.69258],[77.15111,29.69045],[77.14965,29.68837],[77.15868,29.68802],[77.16015,29.69216],[77.17385,29.68559],[77.18747,29.6828],[77.19111,29.68355],[77.20171,29.68042],[77.20347,29.68657],[77.20941,29.68701],[77.21469,29.6897],[77.2186,29.69258],[77.22142,29.69728],[77.22629,29.6947],[77.23108,29.6885],[77.24695,29.67982],[77.25349,29.67296],[77.25807,29.67478],[77.26485,29.67227],[77.27343,29.6648],[77.27783,29.66502],[77.27823,29.66699],[77.27937,29.66642],[77.28122,29.66851],[77.2794,29.66968],[77.28153,29.67267],[77.28496,29.67501],[77.29002,29.67082],[77.29757,29.67186],[77.30241,29.66907],[77.30131,29.66625],[77.30402,29.66483],[77.3035,29.66346],[77.30769,29.65936],[77.32764,29.65248],[77.3368,29.6435],[77.34509,29.65228],[77.35381,29.64661],[77.35695,29.65359],[77.36043,29.65083],[77.36538,29.65452],[77.37583,29.65143],[77.3845,29.64639],[77.38943,29.6467],[77.39627,29.65398],[77.39842,29.6539],[77.4007,29.65611],[77.4067,29.65285],[77.41456,29.65947],[77.42728,29.65185],[77.43212,29.64687],[77.43376,29.64922],[77.43319,29.652],[77.43888,29.66235],[77.43783,29.66282],[77.43963,29.66978],[77.45081,29.67364],[77.45911,29.66814],[77.46682,29.65861],[77.46664,29.65705],[77.46975,29.65733],[77.47179,29.66013],[77.47352,29.65705],[77.47898,29.65907],[77.48494,29.65644],[77.48119,29.64916],[77.48607,29.64528],[77.48666,29.63847],[77.48373,29.63507],[77.48576,29.63299],[77.4876,29.63379],[77.49773,29.63037],[77.50206,29.62714],[77.50928,29.62654],[77.51413,29.63117],[77.51781,29.62894],[77.51913,29.62576],[77.5249,29.62578],[77.52739,29.62323],[77.53428,29.62559],[77.52979,29.62975],[77.53237,29.6328],[77.53168,29.63418],[77.53333,29.63347],[77.53589,29.63705],[77.53884,29.63752],[77.55462,29.63069],[77.57656,29.62868],[77.58057,29.62419],[77.58543,29.62587],[77.59023,29.62276],[77.5979,29.62437],[77.60109,29.62679],[77.61822,29.61776],[77.62432,29.61104],[77.62403,29.60647],[77.629,29.60564],[77.64793,29.59295],[77.64668,29.58362],[77.64853,29.58069],[77.64716,29.57677],[77.65056,29.5746],[77.65668,29.56465],[77.66457,29.57806],[77.6639,29.57901],[77.67485,29.59329],[77.67731,29.59436],[77.68267,29.59246],[77.68263,29.60165],[77.6953,29.61954],[77.70701,29.61363],[77.7148,29.61177],[77.71898,29.61734],[77.71828,29.62028],[77.72036,29.61966],[77.72363,29.62167],[77.72668,29.61964],[77.72695,29.61755],[77.74021,29.60864],[77.74307,29.61354],[77.75571,29.61855],[77.7625,29.62706],[77.76782,29.62804],[77.77911,29.63826],[77.78639,29.63423],[77.78834,29.63486],[77.79087,29.64101],[77.79966,29.65082],[77.80158,29.65214],[77.80475,29.65024],[77.80936,29.65606],[77.81223,29.66279],[77.82047,29.6737],[77.81534,29.67831],[77.80924,29.67986],[77.79905,29.68619],[77.81048,29.70237],[77.8026,29.70339],[77.79185,29.70994],[77.78558,29.71057],[77.78334,29.7094],[77.77872,29.71068],[77.77172,29.71385],[77.76973,29.7176],[77.78268,29.73624],[77.76953,29.74534],[77.76931,29.75059],[77.77052,29.75022],[77.78036,29.76502],[77.77312,29.7687],[77.77786,29.77498],[77.77238,29.78],[77.77396,29.78401],[77.77219,29.78641],[77.77467,29.79102],[77.76545,29.79592],[77.76322,29.80263],[77.75158,29.81068],[77.75608,29.81284],[77.75899,29.8185],[77.75399,29.8208],[77.7557,29.8253],[77.74022,29.83473],[77.74404,29.83988],[77.74145,29.84671],[77.74389,29.84758],[77.74189,29.85185],[77.72657,29.85424],[77.72567,29.85613],[77.72344,29.85505],[77.71652,29.86319],[77.71864,29.86545],[77.71786,29.86679],[77.7143,29.86945],[77.71521,29.87299],[77.72077,29.87616],[77.71695,29.87847],[77.71471,29.88408],[77.71602,29.88588],[77.71846,29.8874],[77.72275,29.88442],[77.72412,29.88678],[77.72328,29.88854],[77.72507,29.89031],[77.73186,29.8928],[77.72856,29.89755],[77.72927,29.90051],[77.73392,29.89964],[77.73367,29.90157],[77.7386,29.90321],[77.73653,29.90666],[77.74778,29.91117],[77.74298,29.9181],[77.74289,29.92493],[77.73047,29.9317],[77.74062,29.94219],[77.74299,29.94094],[77.743,29.94381],[77.74723,29.94664],[77.74492,29.94784],[77.74836,29.95164],[77.73701,29.95376],[77.7333,29.95593],[77.74062,29.96956],[77.7402,29.97529],[77.74603,29.98055],[77.74371,29.98336],[77.74768,29.986],[77.75034,29.98587],[77.75527,29.99198],[77.76038,29.99511],[77.75538,29.999],[77.76423,30.00445],[77.76196,30.0093],[77.77168,30.01498],[77.77391,30.01475],[77.77581,30.01797],[77.78198,30.01863],[77.78276,30.02385],[77.78549,30.02789],[77.77938,30.03067],[77.78137,30.0335],[77.77005,30.04255],[77.77114,30.04802],[77.77482,30.05522],[77.78113,30.06048],[77.79084,30.07502],[77.79582,30.07986],[77.79477,30.08125],[77.79845,30.08355],[77.79675,30.08528],[77.7997,30.08719],[77.79917,30.09047],[77.8012,30.09548],[77.81045,30.09272],[77.82167,30.08568],[77.82805,30.08592],[77.83428,30.09052],[77.83303,30.09458],[77.83661,30.09844],[77.83682,30.10352],[77.84161,30.10265],[77.84936,30.1047],[77.86042,30.11319],[77.86609,30.11913],[77.86842,30.12683],[77.87688,30.13923],[77.88118,30.15073],[77.88893,30.15732],[77.90028,30.17259],[77.91202,30.18253],[77.91175,30.18665],[77.91483,30.19156],[77.91393,30.19647],[77.91802,30.20307],[77.91894,30.21128],[77.93213,30.21439],[77.9348,30.21928],[77.93793,30.22084],[77.93839,30.22434],[77.94116,30.22788],[77.94602,30.23036],[77.94692,30.23406],[77.958,30.24224],[77.9617,30.24237],[77.9565,30.24545],[77.95151,30.24528],[77.94982,30.24231],[77.94413,30.23925],[77.94147,30.23979],[77.93822,30.24384],[77.93699,30.24916],[77.91089,30.25699],[77.894,30.26537],[77.88574,30.26698],[77.88166,30.26227],[77.87958,30.26195],[77.86933,30.26611],[77.86567,30.26582],[77.85869,30.27141],[77.84653,30.27164],[77.84717,30.27659],[77.84217,30.27639],[77.84075,30.27376],[77.83902,30.27453],[77.83283,30.28018],[77.79424,30.29716],[77.78571,30.30298],[77.78425,30.30565],[77.76578,30.31415],[77.76116,30.31829],[77.74701,30.3201],[77.73209,30.32809],[77.72185,30.33021],[77.71355,30.3399],[77.70978,30.34161],[77.70897,30.345],[77.70608,30.34707],[77.70224,30.35562],[77.69472,30.36574],[77.6904,30.37595],[77.68607,30.37925],[77.6831,30.37646],[77.67808,30.37566],[77.67623,30.38032],[77.67655,30.38778],[77.67242,30.39047],[77.65973,30.39056],[77.65665,30.40094],[77.65279,30.40122],[77.64726,30.40473],[77.6409,30.40279],[77.63591,30.39901],[77.62925,30.3979],[77.62552,30.40175],[77.62504,30.40453],[77.62289,30.40519],[77.61849,30.40238],[77.60505,30.40171],[77.60288,30.40293],[77.6017,30.3997]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"178","area_level":"District","area_name":"Sant Kabir Nagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.11722,27.09811],[83.10959,27.10176],[83.09776,27.09774],[83.09156,27.09932],[83.07685,27.09318],[83.06814,27.09785],[83.06039,27.09895],[83.05073,27.09676],[83.04971,27.09466],[83.04625,27.09419],[83.04537,27.08998],[83.05658,27.08518],[83.05159,27.08186],[83.04628,27.08362],[83.04086,27.08034],[83.03539,27.08294],[83.03017,27.08201],[83.0264,27.07969],[83.02779,27.07143],[83.02127,27.06587],[83.02279,27.05984],[83.02983,27.05403],[83.02844,27.04994],[83.03394,27.04807],[83.03463,27.03948],[83.02639,27.03918],[83.02354,27.04088],[83.02103,27.0464],[83.00871,27.04361],[83.00721,27.03996],[83.01035,27.03453],[83.00773,27.03229],[82.99091,27.03672],[82.98575,27.03396],[82.98041,27.04137],[82.97734,27.04066],[82.9706,27.04887],[82.96933,27.04782],[82.97308,27.03979],[82.96723,27.03803],[82.96703,27.04083],[82.96366,27.04094],[82.95922,27.03518],[82.96283,27.02816],[82.95513,27.03073],[82.95205,27.028],[82.94821,27.03169],[82.9473,27.02943],[82.94491,27.03033],[82.93893,27.02545],[82.93612,27.02545],[82.93363,27.02804],[82.92444,27.02743],[82.9222,27.02362],[82.91977,27.02359],[82.91731,27.0203],[82.91191,27.02125],[82.90982,27.02021],[82.91172,27.01675],[82.91154,27.01221],[82.90964,27.00924],[82.90473,27.00942],[82.9037,27.00475],[82.90564,26.99984],[82.90754,27.00143],[82.91062,26.9966],[82.91094,26.99176],[82.90711,26.99037],[82.90346,26.99175],[82.90264,26.98719],[82.9051,26.98497],[82.90265,26.98444],[82.89947,26.98082],[82.9038,26.98069],[82.9041,26.9784],[82.90925,26.97601],[82.90947,26.97309],[82.91277,26.97136],[82.91239,26.96788],[82.91408,26.96642],[82.91127,26.96481],[82.91382,26.96259],[82.90969,26.96179],[82.91321,26.95907],[82.90831,26.9556],[82.90636,26.9522],[82.90567,26.94343],[82.90794,26.93702],[82.93056,26.92792],[82.93018,26.92249],[82.91485,26.91788],[82.90936,26.92443],[82.90009,26.92647],[82.89047,26.93191],[82.88246,26.93124],[82.88495,26.9418],[82.87561,26.94244],[82.87252,26.93964],[82.86975,26.94013],[82.8668,26.93601],[82.86339,26.92431],[82.85099,26.92494],[82.84856,26.91677],[82.8527,26.91413],[82.85805,26.91363],[82.86023,26.91701],[82.8683,26.91433],[82.8719,26.91533],[82.86923,26.90729],[82.87083,26.90449],[82.86998,26.90166],[82.86736,26.90096],[82.86567,26.89821],[82.85607,26.89965],[82.85483,26.89856],[82.85577,26.89562],[82.86309,26.89158],[82.86303,26.88705],[82.87137,26.88183],[82.87268,26.87868],[82.86918,26.87735],[82.85589,26.87856],[82.85098,26.87379],[82.84656,26.87601],[82.84242,26.86919],[82.83944,26.86876],[82.83622,26.86559],[82.84047,26.86312],[82.83998,26.85678],[82.83195,26.85737],[82.83142,26.85513],[82.82757,26.8572],[82.82242,26.85015],[82.82493,26.84801],[82.82831,26.84981],[82.82558,26.83987],[82.82688,26.83883],[82.83086,26.83813],[82.83687,26.84513],[82.83933,26.84571],[82.84521,26.83983],[82.8511,26.83988],[82.85017,26.83688],[82.85185,26.83359],[82.85667,26.83057],[82.86147,26.82919],[82.86224,26.83217],[82.86436,26.83212],[82.86817,26.83524],[82.87296,26.83533],[82.88244,26.82982],[82.88072,26.82172],[82.88369,26.82157],[82.88721,26.81739],[82.88654,26.81351],[82.88239,26.80796],[82.88413,26.80258],[82.88045,26.79949],[82.87935,26.79425],[82.88489,26.79197],[82.8806,26.78392],[82.88232,26.78223],[82.88529,26.78442],[82.88471,26.78178],[82.88679,26.7789],[82.89592,26.78142],[82.89717,26.7848],[82.89935,26.78316],[82.90046,26.78512],[82.90295,26.78542],[82.90255,26.78739],[82.90427,26.78657],[82.90355,26.78433],[82.9071,26.78431],[82.90591,26.78111],[82.90785,26.78124],[82.91008,26.78244],[82.91045,26.78612],[82.9186,26.78844],[82.92095,26.78754],[82.92269,26.78969],[82.92524,26.78982],[82.92524,26.7913],[82.93152,26.79082],[82.93024,26.78619],[82.9266,26.78217],[82.92415,26.78339],[82.92392,26.7764],[82.92114,26.77239],[82.9189,26.76085],[82.92278,26.76125],[82.9276,26.76501],[82.92712,26.76668],[82.93235,26.76443],[82.93378,26.76202],[82.93753,26.76424],[82.93821,26.75914],[82.94096,26.7605],[82.9407,26.75133],[82.9436,26.75297],[82.94545,26.75168],[82.95048,26.75316],[82.95138,26.75168],[82.94978,26.75031],[82.95265,26.74677],[82.9552,26.74879],[82.95991,26.74157],[82.96227,26.74268],[82.96582,26.73819],[82.9634,26.73751],[82.96595,26.73394],[82.96345,26.72668],[82.97547,26.71379],[82.97762,26.70777],[82.97305,26.70533],[82.97588,26.69711],[82.97283,26.69097],[82.97063,26.69011],[82.96964,26.69228],[82.96625,26.69207],[82.96512,26.69035],[82.96611,26.6875],[82.96312,26.68002],[82.96723,26.68113],[82.97023,26.67452],[82.96951,26.67213],[82.96513,26.66938],[82.96028,26.66968],[82.94849,26.67253],[82.95115,26.67548],[82.94232,26.67765],[82.9335,26.67167],[82.93609,26.67031],[82.93197,26.66606],[82.92728,26.66587],[82.92379,26.66158],[82.92271,26.65707],[82.91673,26.65573],[82.91427,26.64751],[82.91659,26.64613],[82.9179,26.64706],[82.91927,26.64518],[82.9194,26.63899],[82.92403,26.63766],[82.92331,26.63556],[82.92618,26.62874],[82.93447,26.62023],[82.93391,26.61783],[82.92405,26.62153],[82.91994,26.6271],[82.91406,26.63007],[82.91176,26.63353],[82.90905,26.63288],[82.90924,26.63563],[82.9076,26.636],[82.89974,26.63076],[82.90453,26.62876],[82.90433,26.63213],[82.90671,26.63271],[82.90796,26.63034],[82.90559,26.62975],[82.90771,26.6285],[82.90769,26.62301],[82.90376,26.62337],[82.90219,26.61905],[82.89848,26.6169],[82.89455,26.6102],[82.89046,26.61333],[82.88519,26.60923],[82.87887,26.61563],[82.8685,26.61581],[82.86404,26.61067],[82.8656,26.60697],[82.86496,26.60243],[82.85981,26.6012],[82.85082,26.60886],[82.83325,26.61158],[82.83172,26.60953],[82.8255,26.6073],[82.82185,26.59796],[82.82761,26.59408],[82.81937,26.5687],[82.82714,26.56234],[82.8379,26.56325],[82.84501,26.55776],[82.84921,26.55672],[82.8593,26.54212],[82.88435,26.52566],[82.88699,26.52125],[82.89952,26.5144],[82.90684,26.51253],[82.91873,26.50657],[82.94269,26.50031],[82.9594,26.48982],[82.97229,26.48612],[83.00173,26.48204],[83.01949,26.47449],[83.02573,26.46863],[83.02549,26.45698],[83.03623,26.44429],[83.04581,26.43677],[83.04682,26.43058],[83.05275,26.42582],[83.05596,26.41972],[83.06777,26.40815],[83.07812,26.41441],[83.07869,26.41911],[83.08094,26.42231],[83.08622,26.42158],[83.08803,26.42468],[83.0907,26.42445],[83.09651,26.43302],[83.09256,26.43373],[83.09733,26.44272],[83.09709,26.4518],[83.091,26.46133],[83.08359,26.46601],[83.08651,26.4758],[83.09155,26.4794],[83.09512,26.48621],[83.11788,26.48918],[83.12219,26.4923],[83.12422,26.49141],[83.14415,26.4978],[83.14445,26.50086],[83.16695,26.50676],[83.17037,26.50674],[83.16969,26.50038],[83.18316,26.49401],[83.18273,26.48894],[83.18822,26.48793],[83.19306,26.4919],[83.19662,26.50216],[83.19297,26.51727],[83.20246,26.52128],[83.20468,26.52448],[83.20064,26.52888],[83.18953,26.53192],[83.18674,26.53103],[83.18086,26.52502],[83.17748,26.52467],[83.17447,26.52576],[83.1644,26.53504],[83.15476,26.53936],[83.14784,26.55674],[83.13988,26.56237],[83.14374,26.56592],[83.14486,26.57088],[83.14186,26.57855],[83.13694,26.57986],[83.13939,26.58686],[83.13729,26.59444],[83.13007,26.59752],[83.11915,26.59228],[83.11701,26.59349],[83.11794,26.59825],[83.10946,26.60135],[83.11115,26.608],[83.10839,26.60917],[83.10749,26.61182],[83.11059,26.61898],[83.11472,26.62005],[83.11651,26.62227],[83.12075,26.61987],[83.12249,26.62344],[83.12567,26.62401],[83.12758,26.62772],[83.1327,26.63092],[83.13474,26.63491],[83.13519,26.63684],[83.1285,26.63855],[83.13476,26.6472],[83.13131,26.64998],[83.13253,26.65801],[83.1146,26.66022],[83.10744,26.65733],[83.10126,26.65841],[83.10085,26.6614],[83.10462,26.66763],[83.10478,26.67262],[83.11292,26.6783],[83.11629,26.68457],[83.10943,26.68651],[83.10581,26.68238],[83.10363,26.68231],[83.09919,26.68337],[83.09732,26.68744],[83.09031,26.68742],[83.0882,26.69216],[83.08987,26.7004],[83.08456,26.69971],[83.08272,26.702],[83.08693,26.71435],[83.09296,26.72185],[83.09893,26.72019],[83.10194,26.71709],[83.10178,26.71346],[83.10806,26.71127],[83.10907,26.71533],[83.10577,26.71868],[83.10741,26.72453],[83.11768,26.72022],[83.12035,26.72745],[83.12731,26.72521],[83.13029,26.72874],[83.13356,26.7256],[83.13486,26.72931],[83.13174,26.73036],[83.13108,26.73556],[83.13918,26.7395],[83.13999,26.74223],[83.14434,26.74369],[83.13864,26.75383],[83.14031,26.75542],[83.14303,26.75369],[83.14218,26.76341],[83.14468,26.76531],[83.14146,26.76989],[83.13421,26.77245],[83.13482,26.77699],[83.12833,26.77301],[83.12997,26.76958],[83.12512,26.7654],[83.11763,26.76355],[83.11026,26.764],[83.10627,26.76801],[83.10981,26.77253],[83.10883,26.77514],[83.11168,26.77466],[83.1099,26.77688],[83.11455,26.78162],[83.11288,26.78683],[83.10997,26.78984],[83.11107,26.79421],[83.10551,26.79436],[83.10377,26.7962],[83.10517,26.79916],[83.09961,26.80274],[83.09736,26.80675],[83.10698,26.81004],[83.1086,26.81295],[83.11321,26.81152],[83.11999,26.81985],[83.11986,26.82562],[83.12245,26.82892],[83.11809,26.83162],[83.1203,26.83972],[83.11851,26.84222],[83.12082,26.84819],[83.12315,26.84711],[83.12643,26.84865],[83.13454,26.86265],[83.13067,26.86527],[83.13548,26.87122],[83.13109,26.87297],[83.13359,26.87698],[83.12988,26.87707],[83.13416,26.88127],[83.13859,26.89014],[83.14973,26.87437],[83.15281,26.87224],[83.1586,26.87283],[83.16234,26.87897],[83.16519,26.88047],[83.1731,26.87649],[83.17915,26.87811],[83.18218,26.87635],[83.18229,26.8787],[83.19123,26.87872],[83.19665,26.88155],[83.20313,26.87891],[83.20528,26.88097],[83.20789,26.88012],[83.20817,26.88191],[83.2097,26.88061],[83.21351,26.8826],[83.21664,26.88209],[83.21567,26.88647],[83.21364,26.88767],[83.21749,26.89581],[83.21699,26.89779],[83.21193,26.90188],[83.20623,26.90382],[83.203,26.90802],[83.2032,26.91017],[83.20727,26.91068],[83.21588,26.90571],[83.22021,26.90814],[83.22106,26.9133],[83.2079,26.92519],[83.21221,26.92883],[83.20676,26.93525],[83.20771,26.93872],[83.20943,26.9394],[83.21867,26.93109],[83.22659,26.9366],[83.21178,26.94945],[83.20848,26.94672],[83.20797,26.94303],[83.20341,26.93963],[83.19846,26.93923],[83.19401,26.94207],[83.19283,26.9447],[83.19569,26.94759],[83.20386,26.94674],[83.20848,26.95185],[83.1943,26.96549],[83.21331,26.96776],[83.22587,26.9781],[83.22315,26.98901],[83.21834,26.99538],[83.21138,27.00033],[83.2137,27.00623],[83.21396,27.01485],[83.20395,27.01767],[83.19888,27.01128],[83.18916,27.00959],[83.17232,27.00291],[83.16838,26.99946],[83.17193,27.00921],[83.15983,27.00948],[83.15924,27.01176],[83.16156,27.01456],[83.1585,27.01699],[83.15496,27.01271],[83.15236,27.01231],[83.15801,27.00738],[83.15723,27.00274],[83.15421,27.00312],[83.14983,27.01328],[83.14814,27.01248],[83.14574,27.0056],[83.14129,27.00427],[83.13956,27.01871],[83.14544,27.02052],[83.1427,27.02365],[83.14032,27.02015],[83.13832,27.02033],[83.13729,27.02455],[83.14549,27.0316],[83.14651,27.03723],[83.15046,27.04118],[83.14258,27.03994],[83.13593,27.04733],[83.13085,27.04749],[83.13069,27.0498],[83.13306,27.05374],[83.13751,27.05582],[83.13939,27.05449],[83.13826,27.04789],[83.14787,27.0515],[83.1494,27.05348],[83.14152,27.05621],[83.14378,27.06115],[83.13568,27.06413],[83.14075,27.06945],[83.13785,27.07591],[83.13531,27.07781],[83.13526,27.08036],[83.12872,27.08349],[83.13162,27.08481],[83.12477,27.08697],[83.12872,27.09297],[83.12768,27.09832],[83.12381,27.10099],[83.12127,27.09781],[83.11722,27.09811]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"179","area_level":"District","area_name":"Bhadohi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.33737,25.5353],[82.33492,25.53657],[82.32503,25.53087],[82.32638,25.52655],[82.33023,25.52349],[82.33276,25.51691],[82.33889,25.5098],[82.33894,25.50707],[82.33557,25.50119],[82.32951,25.49735],[82.32459,25.50131],[82.32011,25.51677],[82.31704,25.52036],[82.30097,25.52035],[82.29877,25.52178],[82.29977,25.51865],[82.29646,25.51741],[82.29604,25.51447],[82.2994,25.51091],[82.30584,25.51057],[82.31121,25.50833],[82.31552,25.50381],[82.31572,25.50002],[82.31114,25.49575],[82.30133,25.49396],[82.29376,25.4984],[82.28679,25.4988],[82.28461,25.49602],[82.28273,25.4849],[82.28655,25.47955],[82.30722,25.48333],[82.31061,25.47759],[82.31108,25.47259],[82.31019,25.46535],[82.30726,25.46155],[82.31721,25.45592],[82.32384,25.4546],[82.32252,25.4492],[82.32481,25.44721],[82.33075,25.44996],[82.33422,25.44788],[82.33565,25.44916],[82.3374,25.44431],[82.34219,25.44149],[82.34181,25.43692],[82.34626,25.43358],[82.34739,25.42672],[82.3506,25.4261],[82.34981,25.4238],[82.35273,25.42232],[82.34905,25.41059],[82.34767,25.40754],[82.34534,25.40744],[82.34058,25.3989],[82.32809,25.40077],[82.32444,25.39205],[82.31791,25.39572],[82.31323,25.38821],[82.31202,25.38471],[82.3183,25.38235],[82.31804,25.37513],[82.30811,25.36696],[82.31281,25.35848],[82.31563,25.35665],[82.31401,25.35149],[82.31819,25.34833],[82.31609,25.34401],[82.31893,25.34212],[82.31607,25.33858],[82.31182,25.32642],[82.31024,25.32562],[82.30403,25.32787],[82.30013,25.3244],[82.30164,25.32141],[82.30045,25.31449],[82.30478,25.31194],[82.30303,25.31139],[82.29912,25.30229],[82.2942,25.30418],[82.28996,25.29715],[82.28353,25.29944],[82.2829,25.29782],[82.27956,25.29873],[82.27813,25.29459],[82.27243,25.29379],[82.26902,25.29077],[82.26457,25.29392],[82.26366,25.29203],[82.26123,25.29237],[82.26019,25.2884],[82.25497,25.28232],[82.25126,25.27235],[82.24344,25.27417],[82.23816,25.27268],[82.23365,25.27527],[82.22973,25.27377],[82.22613,25.27678],[82.22214,25.2777],[82.22105,25.2699],[82.2122,25.24848],[82.1992,25.23409],[82.1969,25.22797],[82.1956,25.21742],[82.19702,25.20422],[82.20076,25.1945],[82.2074,25.18743],[82.21678,25.1816],[82.22452,25.179],[82.24323,25.17834],[82.27547,25.18461],[82.28555,25.19072],[82.287,25.1932],[82.28654,25.1969],[82.28116,25.20217],[82.27252,25.20454],[82.24927,25.20681],[82.23384,25.21587],[82.2302,25.22359],[82.2313,25.2282],[82.23456,25.23244],[82.24394,25.23295],[82.24655,25.23508],[82.25188,25.2487],[82.26103,25.26409],[82.26696,25.26855],[82.27977,25.27192],[82.29664,25.27073],[82.30494,25.26734],[82.31569,25.25362],[82.32351,25.2257],[82.33128,25.21057],[82.34918,25.2067],[82.3577,25.20893],[82.36156,25.21197],[82.36368,25.21638],[82.36766,25.23833],[82.3722,25.24879],[82.37512,25.25307],[82.38799,25.25951],[82.39554,25.25903],[82.40562,25.25565],[82.42721,25.24234],[82.43565,25.23881],[82.4389,25.23573],[82.44179,25.22934],[82.45197,25.21894],[82.46651,25.22029],[82.47501,25.24326],[82.49812,25.24046],[82.50475,25.2418],[82.50402,25.23514],[82.51797,25.23272],[82.52064,25.23982],[82.52419,25.23812],[82.54068,25.23787],[82.54643,25.24012],[82.55907,25.23769],[82.56023,25.23994],[82.56274,25.23964],[82.56408,25.24512],[82.57471,25.24339],[82.57669,25.24656],[82.58226,25.24689],[82.58325,25.24963],[82.6144,25.24461],[82.61566,25.22588],[82.6303,25.22346],[82.63657,25.22084],[82.64114,25.23399],[82.63957,25.23596],[82.64305,25.24],[82.63977,25.24457],[82.64348,25.25386],[82.64238,25.25597],[82.65731,25.25873],[82.66512,25.25511],[82.67033,25.25557],[82.67311,25.26112],[82.67032,25.26398],[82.67403,25.2789],[82.67245,25.27998],[82.68672,25.27727],[82.68845,25.27837],[82.68813,25.2809],[82.69039,25.28134],[82.69042,25.28796],[82.68804,25.29195],[82.69346,25.30988],[82.69394,25.31104],[82.69709,25.30985],[82.69966,25.3116],[82.70394,25.32319],[82.7015,25.32464],[82.70065,25.32894],[82.68751,25.33151],[82.68566,25.33642],[82.68601,25.34606],[82.68248,25.3494],[82.68284,25.35573],[82.68664,25.35749],[82.69158,25.35701],[82.69341,25.35843],[82.69416,25.36282],[82.70147,25.36603],[82.7031,25.36003],[82.70625,25.3593],[82.70737,25.36419],[82.70509,25.36972],[82.70898,25.3758],[82.7093,25.38246],[82.7106,25.38338],[82.70921,25.38343],[82.70987,25.38881],[82.70503,25.38778],[82.69002,25.39623],[82.68355,25.39703],[82.68136,25.39889],[82.67182,25.39887],[82.66935,25.4005],[82.6672,25.3986],[82.66284,25.40024],[82.64568,25.3975],[82.64091,25.39373],[82.63795,25.3946],[82.6317,25.39266],[82.62539,25.39456],[82.6232,25.3928],[82.61984,25.39359],[82.61868,25.40137],[82.62133,25.40349],[82.62516,25.4042],[82.62735,25.4022],[82.62858,25.40464],[82.62908,25.40191],[82.63133,25.40229],[82.63215,25.40043],[82.63591,25.39981],[82.63951,25.40434],[82.63822,25.4081],[82.63336,25.41056],[82.62995,25.41048],[82.6274,25.41308],[82.62468,25.41087],[82.62336,25.41357],[82.61897,25.41574],[82.61471,25.41527],[82.61191,25.41712],[82.60798,25.41362],[82.60284,25.41249],[82.59865,25.41708],[82.60147,25.4249],[82.60436,25.42854],[82.60716,25.4292],[82.60728,25.43212],[82.61058,25.43255],[82.61411,25.43575],[82.61304,25.44588],[82.60985,25.44919],[82.60616,25.45073],[82.60148,25.45009],[82.60083,25.4518],[82.59491,25.44991],[82.59424,25.45223],[82.59181,25.44999],[82.59025,25.4507],[82.59083,25.45265],[82.5855,25.45297],[82.58149,25.44827],[82.58389,25.44615],[82.58248,25.44304],[82.58498,25.4395],[82.58408,25.43371],[82.58568,25.433],[82.58367,25.42917],[82.58299,25.42151],[82.57965,25.41744],[82.57701,25.41714],[82.57681,25.41499],[82.57271,25.41581],[82.57285,25.41728],[82.56982,25.41799],[82.57004,25.42191],[82.56829,25.42407],[82.56967,25.43401],[82.56785,25.43692],[82.56788,25.4448],[82.56576,25.44618],[82.56438,25.45228],[82.56054,25.45741],[82.55419,25.46045],[82.55239,25.4595],[82.55042,25.46206],[82.5471,25.46269],[82.54443,25.45888],[82.5464,25.45149],[82.5488,25.45251],[82.55262,25.45127],[82.55493,25.44975],[82.55583,25.44551],[82.55741,25.4453],[82.5522,25.43837],[82.5491,25.4366],[82.53417,25.43848],[82.53009,25.44116],[82.52878,25.43967],[82.52642,25.44298],[82.52125,25.44094],[82.51665,25.4417],[82.51492,25.4436],[82.51702,25.4501],[82.50919,25.46097],[82.50992,25.46731],[82.50809,25.46824],[82.50764,25.47162],[82.50595,25.4719],[82.50201,25.47784],[82.49941,25.47887],[82.49692,25.47686],[82.49052,25.47846],[82.48891,25.4776],[82.48954,25.47541],[82.48605,25.47515],[82.47809,25.46969],[82.46979,25.47042],[82.46563,25.47611],[82.46577,25.47848],[82.47961,25.48409],[82.47999,25.48736],[82.47754,25.48982],[82.47109,25.48952],[82.47047,25.48802],[82.46739,25.49008],[82.46138,25.4896],[82.44948,25.49551],[82.44686,25.50386],[82.4479,25.51064],[82.4449,25.51764],[82.44282,25.5186],[82.44109,25.5169],[82.43291,25.51547],[82.43031,25.51661],[82.42826,25.51508],[82.42708,25.51638],[82.42495,25.51581],[82.42442,25.5087],[82.41599,25.5055],[82.41712,25.50399],[82.41606,25.50174],[82.41834,25.50097],[82.41255,25.49542],[82.40768,25.50534],[82.40327,25.50791],[82.40249,25.51271],[82.39688,25.51964],[82.39415,25.5191],[82.39414,25.51406],[82.38837,25.51205],[82.38091,25.51767],[82.37657,25.51646],[82.37231,25.51791],[82.37231,25.51456],[82.3765,25.51156],[82.37494,25.50803],[82.36642,25.50859],[82.363,25.51068],[82.36167,25.50857],[82.35674,25.50886],[82.35177,25.51398],[82.34705,25.52903],[82.34013,25.53566],[82.33737,25.5353]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"18","area_level":"District","area_name":"Kangra","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.90636,32.46619],[76.90388,32.46726],[76.88279,32.46581],[76.86595,32.46337],[76.86446,32.46034],[76.8456,32.44824],[76.84207,32.44413],[76.82648,32.43837],[76.81299,32.42445],[76.81268,32.41895],[76.80955,32.41407],[76.80097,32.40753],[76.79102,32.40657],[76.78324,32.40245],[76.78165,32.3982],[76.78759,32.38766],[76.78584,32.37903],[76.78387,32.3764],[76.7863,32.37207],[76.78053,32.36812],[76.7767,32.36136],[76.76852,32.35833],[76.76481,32.35993],[76.75145,32.35803],[76.75802,32.3487],[76.77063,32.3401],[76.77497,32.33369],[76.77773,32.32194],[76.78499,32.31409],[76.76947,32.30722],[76.77748,32.29794],[76.77468,32.28969],[76.76999,32.28243],[76.77309,32.27115],[76.77893,32.26236],[76.77413,32.25551],[76.77002,32.25494],[76.76643,32.25024],[76.77524,32.24589],[76.76982,32.24193],[76.77157,32.23707],[76.77057,32.22995],[76.76787,32.2256],[76.77064,32.22187],[76.76824,32.21658],[76.7656,32.21478],[76.76373,32.2086],[76.7601,32.20717],[76.75761,32.20232],[76.74314,32.19632],[76.73518,32.18614],[76.73135,32.18669],[76.73014,32.18864],[76.72723,32.18789],[76.7212,32.19014],[76.70836,32.19985],[76.70167,32.19638],[76.69457,32.19645],[76.69457,32.19382],[76.69198,32.19038],[76.67852,32.17636],[76.66738,32.17551],[76.66457,32.17613],[76.6547,32.18383],[76.64962,32.18521],[76.64523,32.18437],[76.64007,32.18729],[76.6256,32.18974],[76.62058,32.19446],[76.61214,32.19651],[76.61033,32.19822],[76.6096,32.20275],[76.60225,32.20733],[76.59694,32.21506],[76.58649,32.2228],[76.57945,32.22137],[76.57579,32.22296],[76.56226,32.22214],[76.55935,32.22352],[76.5564,32.22793],[76.55083,32.22657],[76.53872,32.22933],[76.53352,32.22948],[76.53156,32.22755],[76.52696,32.22702],[76.52439,32.2322],[76.51872,32.23412],[76.51225,32.23033],[76.49965,32.23247],[76.49609,32.23876],[76.48743,32.24461],[76.48447,32.25019],[76.47975,32.25074],[76.47366,32.24768],[76.46294,32.24739],[76.45691,32.25173],[76.45446,32.25696],[76.44443,32.26364],[76.42831,32.26049],[76.42135,32.26552],[76.42006,32.26939],[76.42159,32.27272],[76.41826,32.27768],[76.40469,32.28235],[76.40028,32.28719],[76.39083,32.28679],[76.39003,32.28961],[76.38188,32.29728],[76.37451,32.30004],[76.36484,32.30985],[76.364,32.31511],[76.36004,32.31832],[76.36022,32.32091],[76.35731,32.3252],[76.35358,32.32712],[76.35076,32.32525],[76.34107,32.32355],[76.31983,32.33746],[76.30963,32.33995],[76.29473,32.33729],[76.28955,32.344],[76.28985,32.3486],[76.28744,32.35021],[76.28766,32.35625],[76.28211,32.37083],[76.27782,32.37154],[76.27206,32.37649],[76.26235,32.37369],[76.2625,32.37708],[76.25941,32.37944],[76.26019,32.38589],[76.25664,32.39416],[76.24836,32.39554],[76.24357,32.39353],[76.23366,32.39563],[76.22188,32.39487],[76.2168,32.38689],[76.21753,32.38504],[76.21552,32.3813],[76.20032,32.37131],[76.19852,32.36792],[76.19234,32.36731],[76.1756,32.35595],[76.16732,32.3542],[76.17145,32.34939],[76.17262,32.34311],[76.1755,32.34016],[76.17485,32.33721],[76.17091,32.33291],[76.16786,32.32256],[76.16166,32.31807],[76.16091,32.31594],[76.16343,32.31057],[76.16272,32.30715],[76.16416,32.30395],[76.16197,32.2997],[76.16968,32.28977],[76.16709,32.28405],[76.17595,32.28093],[76.18201,32.27574],[76.18082,32.27299],[76.18678,32.27166],[76.18907,32.26792],[76.18774,32.26343],[76.19043,32.26182],[76.18389,32.25838],[76.18548,32.25392],[76.18085,32.24523],[76.1814,32.24162],[76.18388,32.24108],[76.18349,32.23669],[76.18155,32.2346],[76.1852,32.23191],[76.18538,32.22761],[76.18138,32.22644],[76.18044,32.22268],[76.17839,32.2251],[76.17542,32.2223],[76.17011,32.22373],[76.16938,32.22677],[76.17297,32.23107],[76.17115,32.23205],[76.17022,32.23676],[76.16744,32.23436],[76.16279,32.23431],[76.15068,32.22566],[76.14392,32.22346],[76.14324,32.22556],[76.13871,32.22713],[76.13684,32.22961],[76.127,32.22966],[76.12588,32.23155],[76.12347,32.23071],[76.12611,32.23933],[76.12342,32.24224],[76.12552,32.24774],[76.12269,32.25099],[76.124,32.25598],[76.114,32.25994],[76.10421,32.26047],[76.09222,32.27054],[76.08009,32.27035],[76.06357,32.26485],[76.0532,32.26618],[76.04563,32.26401],[76.04407,32.26855],[76.03124,32.26882],[76.02805,32.27215],[76.03147,32.27513],[76.02708,32.27715],[76.02667,32.27994],[76.0193,32.28452],[76.01634,32.29083],[76.01774,32.29815],[76.02354,32.30435],[76.02197,32.3111],[76.02572,32.31831],[76.02177,32.32044],[76.01686,32.31816],[76.01459,32.32389],[76.01813,32.32504],[76.01972,32.32782],[76.0187,32.32916],[76.02264,32.33422],[76.0135,32.3485],[76.0094,32.34963],[76.00287,32.35747],[76.00107,32.36266],[75.98904,32.38042],[75.9802,32.38359],[75.97121,32.39291],[75.9547,32.39187],[75.93651,32.39742],[75.93309,32.39158],[75.92873,32.39461],[75.92363,32.39123],[75.92003,32.39681],[75.91772,32.39483],[75.91452,32.39552],[75.90798,32.39334],[75.90494,32.39598],[75.90208,32.3941],[75.8939,32.3933],[75.88671,32.3962],[75.8736,32.39568],[75.86474,32.38879],[75.8565,32.38487],[75.85241,32.37949],[75.84477,32.36486],[75.8455,32.35907],[75.84381,32.35531],[75.83445,32.35728],[75.82749,32.35023],[75.81121,32.34849],[75.80751,32.34071],[75.81295,32.33506],[75.81483,32.33018],[75.80157,32.32836],[75.78172,32.31011],[75.77232,32.28936],[75.74667,32.27722],[75.7132,32.27218],[75.65809,32.25113],[75.64087,32.25222],[75.63671,32.24995],[75.63205,32.24405],[75.61846,32.23757],[75.61805,32.23581],[75.62226,32.23387],[75.63561,32.23167],[75.63732,32.22272],[75.63665,32.21984],[75.63261,32.21716],[75.6263,32.21602],[75.62583,32.20983],[75.62744,32.20684],[75.62377,32.19004],[75.63157,32.1896],[75.63304,32.18687],[75.63752,32.18704],[75.63772,32.1925],[75.64537,32.19248],[75.65534,32.19677],[75.65789,32.19382],[75.66192,32.19291],[75.66312,32.18958],[75.65988,32.18781],[75.65936,32.18371],[75.65669,32.18289],[75.65901,32.18278],[75.65831,32.17817],[75.66702,32.17839],[75.66615,32.16474],[75.66369,32.16429],[75.66346,32.16218],[75.67268,32.15922],[75.66002,32.13665],[75.6257,32.11874],[75.62727,32.11733],[75.62646,32.1074],[75.61981,32.09743],[75.61428,32.09441],[75.60016,32.09244],[75.59581,32.08574],[75.59691,32.08209],[75.59459,32.0784],[75.59579,32.07443],[75.59482,32.06947],[75.60003,32.06867],[75.60155,32.06554],[75.6307,32.07419],[75.63429,32.07124],[75.64622,32.07274],[75.65432,32.07732],[75.66292,32.07573],[75.66324,32.07401],[75.67425,32.0704],[75.67412,32.06711],[75.67767,32.06333],[75.69291,32.06043],[75.70332,32.05515],[75.71207,32.03998],[75.72386,32.03259],[75.74295,32.03945],[75.75084,32.03768],[75.76498,32.01991],[75.77979,32.00465],[75.81125,31.98794],[75.82409,31.98341],[75.85106,31.98201],[75.8588,31.97292],[75.88303,31.96889],[75.88268,31.96582],[75.8925,31.96178],[75.90371,31.95272],[75.91041,31.95011],[75.91157,31.93982],[75.91556,31.93101],[75.93665,31.89882],[75.93875,31.89105],[75.94512,31.88361],[75.95998,31.8569],[75.97058,31.85401],[75.96966,31.85098],[75.97117,31.84973],[75.97483,31.85225],[75.98031,31.85053],[75.99192,31.85005],[76.00079,31.85171],[76.00448,31.85457],[76.00478,31.85889],[76.01439,31.86645],[76.01984,31.86643],[76.02299,31.86414],[76.03144,31.86507],[76.04269,31.86178],[76.04475,31.85685],[76.04955,31.85567],[76.06013,31.84682],[76.06429,31.84615],[76.06772,31.8398],[76.07366,31.83863],[76.07442,31.84127],[76.07802,31.84066],[76.07865,31.8423],[76.08288,31.84076],[76.08367,31.83644],[76.08098,31.83425],[76.08614,31.83235],[76.08108,31.83359],[76.08039,31.83025],[76.08668,31.82723],[76.08731,31.82111],[76.08975,31.81937],[76.09234,31.82164],[76.09445,31.82198],[76.09499,31.81978],[76.0965,31.81972],[76.10025,31.82206],[76.10416,31.81876],[76.10806,31.82242],[76.10539,31.81793],[76.10666,31.80999],[76.10351,31.80782],[76.11345,31.80126],[76.11018,31.79749],[76.1102,31.79536],[76.1131,31.79576],[76.11899,31.80059],[76.12173,31.79971],[76.12435,31.8013],[76.13074,31.79988],[76.14762,31.80026],[76.15379,31.79523],[76.15937,31.79494],[76.16848,31.78469],[76.1804,31.7817],[76.18426,31.77911],[76.18547,31.77435],[76.18149,31.76393],[76.18347,31.76416],[76.18504,31.76714],[76.19534,31.76856],[76.19825,31.77213],[76.20526,31.76755],[76.2061,31.76496],[76.20436,31.7629],[76.21337,31.75562],[76.21508,31.75044],[76.22206,31.74499],[76.2231,31.74242],[76.23329,31.73546],[76.23362,31.73263],[76.23713,31.731],[76.23807,31.72823],[76.25001,31.71865],[76.2525,31.71479],[76.26383,31.7127],[76.26424,31.70833],[76.26818,31.7063],[76.26934,31.70394],[76.27304,31.70346],[76.27714,31.69558],[76.28117,31.69247],[76.28364,31.68487],[76.28871,31.68606],[76.29699,31.69135],[76.29628,31.6945],[76.3003,31.69896],[76.3019,31.70337],[76.3048,31.7046],[76.30418,31.71187],[76.30612,31.71424],[76.30584,31.71823],[76.30807,31.72325],[76.31693,31.72692],[76.319,31.73135],[76.3125,31.73943],[76.31313,31.7424],[76.31,31.74292],[76.30748,31.75293],[76.30856,31.7553],[76.30539,31.7566],[76.30534,31.76392],[76.30999,31.76825],[76.30797,31.77238],[76.30152,31.77645],[76.29967,31.78027],[76.30795,31.77619],[76.3251,31.7782],[76.34875,31.79113],[76.35482,31.79204],[76.3651,31.78074],[76.36285,31.77572],[76.36732,31.77282],[76.37066,31.77267],[76.37831,31.77639],[76.38487,31.78214],[76.39306,31.79277],[76.39636,31.79468],[76.4015,31.79413],[76.41045,31.78343],[76.41293,31.78299],[76.41417,31.78546],[76.41112,31.79022],[76.41181,31.79383],[76.42401,31.79498],[76.43187,31.79297],[76.43506,31.79413],[76.43705,31.79638],[76.43717,31.80317],[76.44079,31.81162],[76.44292,31.8087],[76.44173,31.80225],[76.44425,31.79977],[76.45293,31.80443],[76.45807,31.80352],[76.46378,31.80477],[76.46245,31.80735],[76.45442,31.80991],[76.45454,31.81575],[76.45697,31.81776],[76.46374,31.81448],[76.46749,31.80841],[76.47504,31.80919],[76.47387,31.81637],[76.46814,31.81951],[76.46593,31.82254],[76.46522,31.82621],[76.46673,31.82845],[76.47832,31.82683],[76.48218,31.83016],[76.49481,31.83436],[76.50125,31.84082],[76.51246,31.83982],[76.5198,31.8427],[76.52423,31.84903],[76.52381,31.85599],[76.52572,31.85921],[76.54616,31.87866],[76.55721,31.88675],[76.58216,31.88874],[76.59095,31.89304],[76.60138,31.8929],[76.62451,31.88589],[76.62752,31.88304],[76.63013,31.87672],[76.63279,31.87516],[76.64693,31.87249],[76.65558,31.86835],[76.66693,31.87148],[76.68011,31.87074],[76.68103,31.874],[76.67281,31.88282],[76.67695,31.89004],[76.67577,31.89794],[76.67959,31.89555],[76.68088,31.89734],[76.67299,31.90529],[76.67949,31.90782],[76.68364,31.91255],[76.68531,31.9222],[76.68871,31.92969],[76.69404,31.93106],[76.69592,31.93377],[76.69437,31.93933],[76.68813,31.94412],[76.68948,31.94687],[76.68845,31.95349],[76.68451,31.96323],[76.68537,31.96674],[76.68785,31.96653],[76.68753,31.97232],[76.68506,31.9738],[76.68452,31.97913],[76.67971,31.98708],[76.67526,31.99305],[76.67153,31.99509],[76.6697,32.0005],[76.66725,32.00142],[76.66234,32.01435],[76.66342,32.01679],[76.66053,32.02851],[76.66684,32.0357],[76.66696,32.03896],[76.6742,32.03975],[76.6752,32.04746],[76.68588,32.05158],[76.69105,32.05067],[76.69189,32.0518],[76.69647,32.0499],[76.69967,32.04638],[76.70495,32.04722],[76.70345,32.04073],[76.70546,32.03654],[76.72029,32.03103],[76.72872,32.03161],[76.72839,32.02861],[76.73105,32.02699],[76.73587,32.02919],[76.73983,32.03557],[76.74555,32.03851],[76.74758,32.04251],[76.76011,32.0518],[76.76523,32.06068],[76.76782,32.06241],[76.77147,32.06276],[76.77553,32.06738],[76.77913,32.06451],[76.78675,32.0726],[76.79784,32.06995],[76.80152,32.07302],[76.80303,32.06898],[76.80216,32.0634],[76.80987,32.06063],[76.82524,32.04847],[76.83258,32.04761],[76.83672,32.04367],[76.83986,32.0434],[76.84204,32.039],[76.85749,32.05057],[76.86517,32.05072],[76.86909,32.04915],[76.8753,32.0544],[76.89845,32.05991],[76.90321,32.05897],[76.91022,32.06131],[76.92173,32.05915],[76.93552,32.06213],[76.94231,32.06735],[76.93797,32.07426],[76.9393,32.07851],[76.93749,32.08768],[76.93477,32.09268],[76.94064,32.09911],[76.9433,32.10961],[76.94234,32.11348],[76.94846,32.11117],[76.95793,32.11244],[76.98479,32.11022],[76.98659,32.11511],[76.9829,32.11856],[76.98301,32.12565],[76.97903,32.13228],[76.98446,32.13686],[76.98158,32.14509],[76.98329,32.15431],[76.98951,32.16519],[76.98916,32.1689],[76.99251,32.17422],[76.99554,32.17463],[76.99693,32.17741],[76.99241,32.18241],[76.99766,32.19357],[77.00307,32.19943],[77.01612,32.20024],[77.02163,32.2062],[77.03335,32.20487],[77.03783,32.20597],[77.04879,32.21772],[77.05011,32.22589],[77.04737,32.22715],[77.0444,32.23444],[77.03703,32.23884],[77.03494,32.23857],[77.02927,32.24653],[77.03254,32.24977],[77.03138,32.2572],[77.0272,32.25918],[77.02734,32.27232],[77.03376,32.28156],[77.0355,32.29066],[77.04035,32.30099],[77.04545,32.30531],[77.05543,32.30933],[77.06197,32.3143],[77.06392,32.32546],[77.06979,32.33462],[77.05602,32.34201],[77.04135,32.34219],[77.0488,32.35406],[77.04732,32.3622],[77.04812,32.36591],[77.05125,32.37074],[77.0641,32.38194],[77.07552,32.40006],[77.07834,32.41046],[77.07794,32.41727],[77.06483,32.41797],[77.06203,32.42571],[77.05487,32.43327],[77.04141,32.42479],[77.03678,32.42315],[77.03089,32.42441],[77.01213,32.41676],[77.0005,32.41446],[76.99779,32.41096],[76.98005,32.40346],[76.96927,32.40113],[76.94725,32.40269],[76.94418,32.40709],[76.9445,32.41352],[76.94858,32.42214],[76.94706,32.42644],[76.94235,32.42538],[76.92975,32.41704],[76.92128,32.41563],[76.9084,32.41722],[76.90867,32.42056],[76.91206,32.42288],[76.91705,32.4343],[76.91619,32.436],[76.9076,32.43986],[76.90234,32.44614],[76.89893,32.44787],[76.90225,32.45617],[76.9118,32.46395],[76.90636,32.46619]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"180","area_level":"District","area_name":"Shahjahanpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.02955,28.37404],[80.02012,28.37612],[80.01054,28.38123],[80.00863,28.37981],[80.00454,28.36886],[80.00009,28.36501],[79.99644,28.36439],[79.99638,28.35917],[79.99408,28.35645],[79.99579,28.35248],[79.99404,28.34504],[79.99164,28.34384],[79.99211,28.34172],[79.98989,28.34038],[79.98683,28.33284],[79.98343,28.33294],[79.98103,28.33061],[79.98193,28.32901],[79.98047,28.32796],[79.98195,28.32678],[79.9791,28.32401],[79.9802,28.32151],[79.97853,28.32197],[79.97744,28.3187],[79.97932,28.31633],[79.97746,28.31544],[79.97819,28.31416],[79.97531,28.31342],[79.97612,28.31163],[79.9734,28.30952],[79.97598,28.30609],[79.97296,28.30394],[79.97462,28.30228],[79.97296,28.30073],[79.97495,28.3007],[79.97327,28.29942],[79.97544,28.2979],[79.97479,28.29372],[79.97668,28.29304],[79.97542,28.29215],[79.97764,28.29188],[79.97964,28.28876],[79.97801,28.28863],[79.97859,28.28744],[79.98087,28.28851],[79.98159,28.28589],[79.9789,28.28688],[79.98333,28.28265],[79.98121,28.2823],[79.98343,28.28072],[79.98583,28.28158],[79.9828,28.27963],[79.98534,28.27534],[79.98403,28.27488],[79.98449,28.27347],[79.98166,28.27395],[79.98268,28.27216],[79.98364,28.27289],[79.98121,28.27035],[79.98391,28.26732],[79.98129,28.26368],[79.98437,28.26226],[79.98306,28.26083],[79.98447,28.26043],[79.98296,28.2571],[79.98396,28.25573],[79.98122,28.2566],[79.98744,28.25008],[79.98626,28.24448],[79.98731,28.24306],[79.9857,28.24215],[79.99103,28.24069],[79.98821,28.23937],[79.99049,28.23772],[79.98703,28.23246],[79.98805,28.23041],[79.98623,28.22975],[79.98772,28.22851],[79.98564,28.2276],[79.9894,28.22527],[79.98695,28.22347],[79.98776,28.21876],[79.98633,28.21741],[79.98838,28.21693],[79.98868,28.21501],[79.98518,28.21482],[79.98884,28.21256],[79.99029,28.21321],[79.98834,28.2086],[79.99006,28.20799],[79.98939,28.20423],[79.99163,28.20526],[79.99273,28.20265],[79.99114,28.2014],[79.99253,28.20009],[79.98978,28.19921],[79.99249,28.19875],[79.99116,28.19619],[79.9947,28.19585],[79.99101,28.1942],[79.99197,28.19262],[79.98972,28.19429],[79.98894,28.19185],[79.99066,28.19219],[79.99185,28.18955],[79.98793,28.18938],[79.989,28.18681],[79.98719,28.18616],[79.98882,28.18492],[79.98418,28.18305],[79.98641,28.18153],[79.98418,28.17774],[79.98776,28.17494],[79.98575,28.17464],[79.99055,28.1727],[79.99182,28.16873],[79.99336,28.16996],[79.99565,28.16616],[79.99362,28.16391],[79.99532,28.1618],[79.99366,28.16132],[79.99623,28.16053],[79.99525,28.15826],[79.99261,28.15861],[79.99617,28.15583],[79.99412,28.15316],[79.99539,28.15135],[79.9933,28.15159],[79.99513,28.14989],[79.99193,28.15071],[79.99513,28.14731],[79.99316,28.1485],[79.99153,28.14761],[79.99313,28.14458],[79.99145,28.1428],[79.99382,28.14025],[79.99151,28.1361],[79.99487,28.13512],[79.99495,28.13296],[79.989,28.13032],[79.98673,28.12516],[79.98878,28.12321],[79.98715,28.1215],[79.9883,28.11988],[79.98603,28.11926],[79.9847,28.12176],[79.98337,28.11997],[79.98636,28.11616],[79.98407,28.11475],[79.98644,28.11388],[79.98425,28.11318],[79.98704,28.11082],[79.98527,28.10993],[79.98467,28.105],[79.97835,28.10688],[79.97734,28.1041],[79.97543,28.10511],[79.97067,28.1041],[79.96702,28.10084],[79.96144,28.10633],[79.96248,28.10776],[79.96144,28.1104],[79.95129,28.11275],[79.94965,28.11388],[79.9504,28.11646],[79.94051,28.12346],[79.93719,28.12286],[79.93074,28.12527],[79.93001,28.1221],[79.92676,28.12125],[79.92804,28.11916],[79.92175,28.11852],[79.91677,28.11408],[79.91637,28.11061],[79.91223,28.10767],[79.90922,28.1071],[79.89691,28.11501],[79.90217,28.12286],[79.89502,28.12673],[79.89824,28.13083],[79.8971,28.14137],[79.89946,28.14119],[79.90783,28.13503],[79.91536,28.13459],[79.90969,28.13996],[79.90723,28.13894],[79.9038,28.14219],[79.90516,28.14378],[79.9144,28.14607],[79.91588,28.14802],[79.91173,28.15112],[79.90706,28.15081],[79.90217,28.15275],[79.90158,28.15527],[79.90573,28.15869],[79.91116,28.15872],[79.91396,28.16168],[79.91469,28.16721],[79.90936,28.17329],[79.90723,28.16842],[79.9027,28.17483],[79.89888,28.17342],[79.89491,28.17903],[79.88746,28.17705],[79.88508,28.17811],[79.88508,28.18087],[79.88859,28.18663],[79.89243,28.1862],[79.88895,28.19229],[79.88964,28.19345],[79.87798,28.19465],[79.87446,28.19199],[79.87271,28.19241],[79.86821,28.19417],[79.86456,28.20003],[79.85799,28.20182],[79.86648,28.21753],[79.85868,28.22995],[79.85988,28.23096],[79.85843,28.23206],[79.85392,28.2296],[79.85568,28.23143],[79.85522,28.2336],[79.85247,28.23378],[79.84457,28.22959],[79.83522,28.23523],[79.8268,28.23387],[79.82697,28.23195],[79.83014,28.23074],[79.8275,28.22544],[79.83087,28.22239],[79.82912,28.21851],[79.83152,28.21446],[79.83005,28.21268],[79.83377,28.21268],[79.83574,28.21097],[79.83415,28.20875],[79.83011,28.20798],[79.82897,28.20561],[79.83067,28.20407],[79.83408,28.20572],[79.83998,28.20468],[79.83829,28.2008],[79.84119,28.1961],[79.83891,28.19187],[79.82805,28.18947],[79.82799,28.18793],[79.83165,28.18665],[79.83188,28.18153],[79.8258,28.17732],[79.82619,28.17417],[79.81834,28.1736],[79.82004,28.17107],[79.82451,28.1716],[79.82527,28.16775],[79.82372,28.16641],[79.82109,28.16691],[79.81869,28.17017],[79.81716,28.16886],[79.81921,28.16512],[79.81274,28.16274],[79.8111,28.16312],[79.80965,28.16638],[79.80719,28.16426],[79.80559,28.16621],[79.801,28.16575],[79.79998,28.16365],[79.80281,28.16069],[79.80275,28.15858],[79.79719,28.15832],[79.78709,28.16063],[79.76603,28.17315],[79.7632,28.17687],[79.76213,28.18339],[79.76012,28.18422],[79.75555,28.18248],[79.75261,28.18327],[79.75159,28.18164],[79.74847,28.18229],[79.7465,28.17968],[79.74441,28.18289],[79.742,28.17841],[79.73429,28.17952],[79.73074,28.18161],[79.72972,28.18503],[79.73163,28.18539],[79.73377,28.18216],[79.73595,28.18293],[79.73907,28.18151],[79.74621,28.19109],[79.74496,28.20054],[79.72843,28.19697],[79.72294,28.2061],[79.72793,28.21138],[79.72698,28.21252],[79.73062,28.21697],[79.73769,28.22167],[79.74954,28.21898],[79.75141,28.2277],[79.74729,28.22895],[79.7446,28.23359],[79.73759,28.23745],[79.73252,28.23642],[79.73091,28.23368],[79.72636,28.23661],[79.72353,28.23412],[79.71865,28.2364],[79.71639,28.23821],[79.71999,28.24284],[79.71074,28.24625],[79.709,28.25286],[79.7018,28.25652],[79.69832,28.25163],[79.70491,28.24735],[79.71229,28.23959],[79.70209,28.23546],[79.6984,28.2379],[79.68937,28.22451],[79.69462,28.22333],[79.69814,28.2187],[79.69839,28.21497],[79.6906,28.20524],[79.68558,28.20402],[79.67416,28.21056],[79.66985,28.21075],[79.65814,28.19978],[79.66002,28.2],[79.6646,28.19467],[79.65841,28.19074],[79.66731,28.18482],[79.66599,28.18398],[79.66811,28.18037],[79.66338,28.18103],[79.65928,28.17952],[79.65541,28.17691],[79.6542,28.17165],[79.65271,28.17295],[79.65073,28.17155],[79.65051,28.16998],[79.65256,28.16898],[79.65001,28.16365],[79.65227,28.15934],[79.65131,28.15731],[79.65029,28.15859],[79.64336,28.15236],[79.64695,28.15158],[79.64554,28.14885],[79.64853,28.14772],[79.64593,28.14557],[79.64273,28.14514],[79.64107,28.14675],[79.63566,28.14411],[79.6378,28.14119],[79.64264,28.13891],[79.64225,28.13625],[79.63898,28.13392],[79.64269,28.1327],[79.64229,28.12509],[79.64436,28.12388],[79.64964,28.12449],[79.64673,28.12001],[79.64654,28.11441],[79.649,28.11384],[79.65653,28.1165],[79.65857,28.11369],[79.65704,28.10973],[79.64593,28.1065],[79.6483,28.10199],[79.65591,28.09984],[79.6544,28.09668],[79.64954,28.09441],[79.65662,28.09354],[79.65699,28.0924],[79.652,28.09147],[79.6511,28.08459],[79.64703,28.0807],[79.64883,28.07917],[79.65321,28.08088],[79.65268,28.07668],[79.64643,28.07626],[79.6442,28.07043],[79.64241,28.06972],[79.6373,28.07057],[79.62864,28.07672],[79.62322,28.07227],[79.61236,28.08038],[79.60978,28.07859],[79.60139,28.08599],[79.59676,28.08149],[79.59902,28.07987],[79.5997,28.07556],[79.595,28.0741],[79.59372,28.07305],[79.59497,28.07206],[79.5874,28.0657],[79.58255,28.06815],[79.57478,28.0603],[79.57501,28.05896],[79.56167,28.06748],[79.55896,28.06551],[79.55333,28.05949],[79.55361,28.05644],[79.55076,28.05196],[79.55361,28.04987],[79.55125,28.04792],[79.54157,28.05601],[79.53948,28.05454],[79.53491,28.0575],[79.53172,28.05769],[79.52455,28.0475],[79.5182,28.04216],[79.51706,28.03841],[79.51296,28.04234],[79.51028,28.0411],[79.51408,28.03569],[79.51727,28.03621],[79.5198,28.03251],[79.50418,28.01535],[79.50808,28.00007],[79.48178,27.99979],[79.47211,27.99028],[79.47011,27.98642],[79.4753,27.98117],[79.47484,27.97835],[79.4633,27.96515],[79.4572,27.96074],[79.45972,27.95845],[79.46461,27.9635],[79.46694,27.96282],[79.47138,27.96588],[79.47637,27.95382],[79.48952,27.94692],[79.48923,27.9406],[79.486,27.93887],[79.48618,27.94209],[79.48177,27.94716],[79.48424,27.93006],[79.48053,27.93082],[79.46543,27.92484],[79.46607,27.92121],[79.46169,27.91264],[79.46501,27.90747],[79.46359,27.89912],[79.46255,27.89717],[79.45398,27.89391],[79.45365,27.8871],[79.46536,27.88371],[79.46089,27.8747],[79.47056,27.87117],[79.46841,27.86522],[79.47203,27.86206],[79.47548,27.86159],[79.4734,27.85592],[79.48544,27.84878],[79.48403,27.84538],[79.48042,27.84269],[79.4728,27.84294],[79.46588,27.85095],[79.46278,27.84845],[79.4564,27.85081],[79.45267,27.84439],[79.45568,27.84027],[79.45276,27.83813],[79.44157,27.83594],[79.43713,27.84243],[79.43284,27.84338],[79.41698,27.83029],[79.4155,27.83255],[79.41679,27.83598],[79.41388,27.84042],[79.40458,27.84475],[79.39937,27.8378],[79.40268,27.83881],[79.40471,27.83655],[79.39879,27.83357],[79.40224,27.8335],[79.40424,27.83141],[79.39551,27.82867],[79.39536,27.82209],[79.39188,27.82088],[79.3937,27.8184],[79.39249,27.8176],[79.3899,27.81938],[79.3861,27.81528],[79.38445,27.8161],[79.38568,27.8179],[79.37923,27.81686],[79.38295,27.81839],[79.37979,27.82119],[79.3818,27.82297],[79.37884,27.82327],[79.37149,27.81995],[79.37065,27.81354],[79.3757,27.81083],[79.37081,27.80863],[79.37245,27.80477],[79.3697,27.80097],[79.36846,27.80155],[79.36984,27.80415],[79.36118,27.80199],[79.36232,27.80459],[79.35913,27.80331],[79.35892,27.79758],[79.35325,27.79302],[79.35089,27.78767],[79.35523,27.78254],[79.35268,27.77788],[79.34623,27.75258],[79.35254,27.75289],[79.35547,27.75141],[79.35568,27.74199],[79.3592,27.73933],[79.36056,27.73485],[79.35666,27.73367],[79.35608,27.73725],[79.35229,27.73581],[79.34807,27.73855],[79.34408,27.73695],[79.34139,27.73758],[79.33962,27.73595],[79.33735,27.73781],[79.33403,27.7352],[79.32947,27.73496],[79.32289,27.72554],[79.33212,27.71985],[79.33948,27.71124],[79.3374,27.70336],[79.33898,27.70275],[79.3371,27.69972],[79.3417,27.69913],[79.34318,27.69415],[79.3391,27.68385],[79.34383,27.67894],[79.34674,27.67875],[79.349,27.67655],[79.35025,27.67348],[79.34883,27.6708],[79.35687,27.6684],[79.34936,27.65309],[79.34558,27.65402],[79.34679,27.64998],[79.3522,27.6473],[79.35916,27.64786],[79.37442,27.64151],[79.37663,27.64659],[79.38853,27.64569],[79.39103,27.64716],[79.42496,27.62716],[79.43833,27.6425],[79.44509,27.64194],[79.45313,27.63455],[79.45582,27.63702],[79.46223,27.63494],[79.4755,27.62475],[79.47644,27.61812],[79.48259,27.61197],[79.47457,27.59908],[79.48667,27.59497],[79.48633,27.59316],[79.49384,27.5888],[79.49393,27.59165],[79.50332,27.58906],[79.50763,27.59124],[79.51928,27.60435],[79.51838,27.60041],[79.5337,27.59209],[79.53864,27.59752],[79.5462,27.60023],[79.55231,27.59938],[79.55317,27.5973],[79.55144,27.59647],[79.55509,27.59512],[79.55496,27.59089],[79.55773,27.58954],[79.56712,27.59457],[79.572,27.59262],[79.58532,27.59159],[79.5882,27.59721],[79.59067,27.59847],[79.60086,27.59763],[79.6117,27.5922],[79.61118,27.60023],[79.59739,27.60837],[79.59756,27.61045],[79.59453,27.61234],[79.59526,27.61333],[79.59138,27.61968],[79.61275,27.61799],[79.61761,27.62701],[79.62449,27.63301],[79.62599,27.6372],[79.63136,27.63743],[79.63813,27.63438],[79.64058,27.63454],[79.64386,27.63786],[79.64599,27.63689],[79.65357,27.62859],[79.64569,27.62453],[79.64873,27.61906],[79.64837,27.61336],[79.65189,27.61335],[79.65501,27.61649],[79.66081,27.61332],[79.65715,27.60779],[79.65526,27.60902],[79.65193,27.60758],[79.64759,27.60319],[79.64407,27.59577],[79.64289,27.58281],[79.63861,27.57643],[79.64503,27.57453],[79.65899,27.57754],[79.65637,27.57638],[79.65678,27.57471],[79.65516,27.57528],[79.65181,27.56632],[79.66038,27.56298],[79.6556,27.55888],[79.66989,27.54959],[79.67019,27.54671],[79.66617,27.54814],[79.66445,27.54562],[79.65772,27.54263],[79.66016,27.53676],[79.65691,27.53104],[79.65999,27.52874],[79.65949,27.52484],[79.66212,27.52233],[79.65429,27.51107],[79.65397,27.50488],[79.65716,27.50409],[79.66186,27.50779],[79.66408,27.50338],[79.66148,27.49739],[79.66552,27.49757],[79.6777,27.49388],[79.68799,27.49383],[79.69556,27.49705],[79.7028,27.49629],[79.69984,27.49172],[79.69483,27.46919],[79.69965,27.47007],[79.70958,27.47984],[79.71299,27.47549],[79.7084,27.46752],[79.71157,27.46243],[79.71716,27.45829],[79.71627,27.45087],[79.72157,27.44801],[79.7372,27.44483],[79.73956,27.44948],[79.74572,27.44891],[79.74703,27.45443],[79.74389,27.45603],[79.73797,27.45574],[79.72939,27.46205],[79.73154,27.4645],[79.72944,27.46708],[79.7136,27.46994],[79.71259,27.47252],[79.71368,27.47551],[79.72415,27.4844],[79.73249,27.48831],[79.73207,27.4905],[79.72799,27.49395],[79.72952,27.49627],[79.73286,27.49314],[79.73515,27.49684],[79.72788,27.49844],[79.73512,27.50662],[79.73764,27.50386],[79.73908,27.5047],[79.73932,27.50793],[79.73251,27.50753],[79.72923,27.51268],[79.72998,27.52033],[79.7331,27.52419],[79.73137,27.52988],[79.73267,27.53561],[79.7269,27.54195],[79.71901,27.54485],[79.71584,27.54303],[79.71263,27.54348],[79.71188,27.54534],[79.7131,27.54662],[79.71025,27.54778],[79.70746,27.54684],[79.70491,27.55029],[79.70463,27.55236],[79.70649,27.55294],[79.7112,27.55089],[79.7121,27.55349],[79.7095,27.55486],[79.70965,27.55637],[79.71213,27.55936],[79.71744,27.55987],[79.71405,27.56499],[79.71656,27.5703],[79.71223,27.57907],[79.71308,27.58123],[79.71657,27.58137],[79.71717,27.58434],[79.7146,27.58863],[79.70449,27.58602],[79.70723,27.59201],[79.70214,27.59253],[79.70208,27.59683],[79.69635,27.60116],[79.70256,27.61384],[79.69742,27.61759],[79.69956,27.62258],[79.69547,27.62189],[79.69153,27.61776],[79.68434,27.62618],[79.68646,27.64077],[79.68909,27.64309],[79.69418,27.64243],[79.69553,27.64441],[79.69134,27.65185],[79.69281,27.65488],[79.70083,27.66011],[79.70759,27.66797],[79.71298,27.66627],[79.7211,27.6668],[79.731,27.67464],[79.73343,27.69252],[79.73586,27.69938],[79.73168,27.71282],[79.73846,27.72269],[79.74574,27.71743],[79.74854,27.71773],[79.75288,27.72204],[79.767,27.71162],[79.77132,27.70571],[79.77049,27.69927],[79.77578,27.69727],[79.7761,27.69433],[79.78106,27.69069],[79.78303,27.68449],[79.78923,27.68054],[79.79164,27.67599],[79.80523,27.67036],[79.80382,27.66325],[79.80586,27.6623],[79.80659,27.65846],[79.8135,27.65564],[79.81509,27.65671],[79.82362,27.65517],[79.82417,27.65668],[79.82654,27.65654],[79.82897,27.65466],[79.84827,27.64956],[79.85484,27.65185],[79.86209,27.64834],[79.86403,27.65335],[79.86329,27.66216],[79.86652,27.66773],[79.87189,27.66964],[79.88033,27.6691],[79.88311,27.67129],[79.87483,27.6874],[79.87511,27.69459],[79.87878,27.70036],[79.88429,27.70365],[79.88928,27.70416],[79.89764,27.69607],[79.9068,27.69375],[79.91967,27.70348],[79.91518,27.70989],[79.91043,27.71148],[79.90578,27.71808],[79.90673,27.7188],[79.9159,27.72024],[79.91935,27.71725],[79.93311,27.71242],[79.93594,27.71481],[79.93645,27.71274],[79.9376,27.71737],[79.94758,27.71356],[79.95537,27.72554],[79.96062,27.7307],[79.963,27.72971],[79.96596,27.7321],[79.97304,27.73275],[79.97926,27.72969],[79.98302,27.72976],[79.99237,27.7334],[80.00641,27.7259],[80.01082,27.73294],[80.01745,27.73121],[80.01928,27.7325],[80.02841,27.74537],[80.03034,27.74411],[80.02992,27.74118],[80.03224,27.73805],[80.03963,27.7374],[80.04384,27.74404],[80.04747,27.74131],[80.05349,27.74062],[80.07283,27.74812],[80.07241,27.7504],[80.06965,27.75148],[80.07046,27.75345],[80.06843,27.75272],[80.05978,27.75577],[80.06083,27.75759],[80.05886,27.75852],[80.06027,27.75939],[80.05893,27.76212],[80.05608,27.76338],[80.05835,27.76422],[80.05711,27.7652],[80.05879,27.76587],[80.05803,27.76716],[80.05965,27.76707],[80.05963,27.77011],[80.05795,27.77093],[80.06021,27.77115],[80.06011,27.77364],[80.05755,27.77761],[80.05861,27.77979],[80.05507,27.78454],[80.05613,27.78444],[80.05583,27.7864],[80.05373,27.78657],[80.05351,27.78996],[80.05159,27.79155],[80.05277,27.79441],[80.04983,27.79518],[80.04853,27.79917],[80.05055,27.79919],[80.05286,27.80294],[80.05087,27.80261],[80.05155,27.80455],[80.04923,27.80761],[80.05023,27.80922],[80.04805,27.80925],[80.04573,27.81328],[80.04767,27.81313],[80.04731,27.81504],[80.04919,27.81625],[80.05348,27.81709],[80.05414,27.81938],[80.05038,27.8201],[80.05068,27.82386],[80.04568,27.82257],[80.04291,27.82348],[80.0401,27.82937],[80.03594,27.82994],[80.03588,27.8336],[80.03383,27.83384],[80.03476,27.83635],[80.03662,27.83615],[80.03589,27.83832],[80.04055,27.83797],[80.04225,27.84135],[80.04407,27.84044],[80.04516,27.84267],[80.04734,27.84235],[80.04911,27.84589],[80.05225,27.84801],[80.05301,27.84673],[80.05606,27.84747],[80.05574,27.84938],[80.0571,27.85004],[80.05522,27.85225],[80.05634,27.85387],[80.05494,27.86252],[80.05679,27.86299],[80.05631,27.86566],[80.05374,27.86776],[80.05549,27.86894],[80.05389,27.87009],[80.05461,27.87321],[80.05022,27.87376],[80.05098,27.87749],[80.04629,27.88178],[80.04425,27.88613],[80.04483,27.88901],[80.04269,27.88821],[80.04253,27.89022],[80.0405,27.89072],[80.04179,27.89136],[80.03734,27.89329],[80.03772,27.8951],[80.03593,27.89416],[80.03413,27.8997],[80.0303,27.90112],[80.03016,27.9047],[80.03385,27.9075],[80.03301,27.91455],[80.03696,27.91669],[80.0327,27.92452],[80.04436,27.92263],[80.05126,27.92793],[80.05243,27.93352],[80.04846,27.93538],[80.05147,27.93609],[80.05355,27.93872],[80.06292,27.93844],[80.0651,27.93582],[80.07016,27.94133],[80.07226,27.94099],[80.07397,27.9364],[80.07124,27.93273],[80.07849,27.92831],[80.08271,27.9318],[80.08407,27.93073],[80.09201,27.93465],[80.09508,27.93697],[80.09226,27.94065],[80.09002,27.94863],[80.09146,27.94959],[80.09098,27.95222],[80.09376,27.95931],[80.10571,27.96461],[80.10201,27.96978],[80.11093,27.96951],[80.11497,27.97236],[80.11639,27.97802],[80.11834,27.97887],[80.11552,27.98459],[80.12465,28.00274],[80.13299,28.00741],[80.13607,28.00488],[80.14276,28.00777],[80.14698,28.01149],[80.14406,28.01509],[80.14598,28.01411],[80.14749,28.01763],[80.15189,28.02088],[80.15444,28.01896],[80.16097,28.02369],[80.16233,28.02571],[80.15938,28.02955],[80.16389,28.03303],[80.1768,28.02554],[80.17982,28.02742],[80.18703,28.03635],[80.19113,28.03627],[80.20218,28.04514],[80.20826,28.05429],[80.21686,28.05893],[80.22322,28.06661],[80.22537,28.06308],[80.22848,28.06286],[80.22748,28.06166],[80.22975,28.05996],[80.23779,28.05964],[80.24424,28.07389],[80.24641,28.07416],[80.25087,28.07963],[80.25397,28.08999],[80.2484,28.09851],[80.24103,28.10362],[80.24442,28.11056],[80.23925,28.11598],[80.24444,28.12482],[80.23983,28.13232],[80.23815,28.14437],[80.24258,28.15078],[80.24612,28.16001],[80.25347,28.1678],[80.25931,28.15931],[80.26769,28.15946],[80.27317,28.15763],[80.28007,28.16571],[80.29622,28.16183],[80.29829,28.16307],[80.30014,28.16651],[80.29807,28.17343],[80.30014,28.17613],[80.30396,28.17696],[80.30482,28.18194],[80.30963,28.18507],[80.30896,28.18637],[80.3121,28.19239],[80.31077,28.19434],[80.3056,28.1961],[80.30448,28.19432],[80.3013,28.19605],[80.30055,28.19518],[80.29597,28.2034],[80.29769,28.20589],[80.30148,28.207],[80.29838,28.21643],[80.29654,28.21794],[80.29891,28.22321],[80.30205,28.2238],[80.3045,28.2267],[80.30294,28.2303],[80.30981,28.23128],[80.31054,28.23297],[80.30803,28.23524],[80.31206,28.24265],[80.31411,28.25225],[80.31216,28.25404],[80.31149,28.26201],[80.30804,28.26843],[80.31256,28.27197],[80.31124,28.27229],[80.31233,28.27426],[80.31084,28.2778],[80.32185,28.28481],[80.32425,28.28919],[80.33299,28.29753],[80.3369,28.30596],[80.35553,28.3198],[80.35868,28.32881],[80.35778,28.33137],[80.35014,28.33172],[80.34849,28.3286],[80.34359,28.32813],[80.34104,28.32495],[80.33855,28.32477],[80.33643,28.32545],[80.33886,28.32827],[80.33821,28.33008],[80.33164,28.33054],[80.32863,28.32914],[80.327,28.33063],[80.32541,28.32927],[80.32267,28.3322],[80.31776,28.32691],[80.31467,28.33042],[80.3182,28.33353],[80.31821,28.33741],[80.32354,28.34491],[80.32095,28.34457],[80.31476,28.34825],[80.30745,28.34148],[80.30756,28.33892],[80.30387,28.33699],[80.29843,28.32949],[80.29317,28.33205],[80.29081,28.32992],[80.28834,28.33184],[80.29145,28.33783],[80.28928,28.34264],[80.2922,28.3457],[80.28834,28.34962],[80.28898,28.35087],[80.28688,28.35253],[80.28618,28.35592],[80.28192,28.35691],[80.28049,28.35894],[80.27732,28.352],[80.26842,28.35783],[80.26244,28.35265],[80.25075,28.36027],[80.24883,28.35832],[80.25267,28.34988],[80.25912,28.34553],[80.26209,28.34057],[80.2666,28.33701],[80.26609,28.33381],[80.25854,28.32488],[80.2709,28.31618],[80.2683,28.30701],[80.26735,28.30542],[80.2599,28.31147],[80.25593,28.31099],[80.25477,28.30883],[80.25118,28.31091],[80.24335,28.30663],[80.23484,28.30558],[80.22218,28.30117],[80.22093,28.30217],[80.22241,28.3037],[80.21994,28.30583],[80.22108,28.31334],[80.22772,28.32158],[80.20927,28.32793],[80.20593,28.32711],[80.20519,28.32493],[80.20191,28.32708],[80.1953,28.32165],[80.19326,28.31799],[80.18386,28.31783],[80.18012,28.32828],[80.17666,28.32909],[80.17588,28.32739],[80.171,28.32651],[80.16654,28.32853],[80.155,28.31448],[80.15419,28.31616],[80.15175,28.31541],[80.14848,28.31743],[80.14664,28.32334],[80.15072,28.33267],[80.14937,28.33654],[80.1508,28.34147],[80.14777,28.34345],[80.14917,28.34553],[80.14668,28.34442],[80.14228,28.34708],[80.1404,28.34523],[80.13865,28.34595],[80.13558,28.33867],[80.1308,28.34011],[80.12514,28.33777],[80.11977,28.33898],[80.11885,28.34319],[80.11516,28.34521],[80.11459,28.34384],[80.11119,28.3448],[80.10998,28.34261],[80.10738,28.34446],[80.10601,28.34312],[80.1048,28.34388],[80.09671,28.33297],[80.09382,28.33589],[80.09573,28.33784],[80.089,28.34002],[80.09359,28.3457],[80.09729,28.35588],[80.09049,28.36177],[80.08956,28.36003],[80.08783,28.36067],[80.08324,28.35793],[80.07703,28.36288],[80.07394,28.36241],[80.07045,28.36007],[80.06567,28.35072],[80.06379,28.3497],[80.05895,28.35257],[80.0541,28.36454],[80.04846,28.36948],[80.04033,28.37249],[80.02955,28.37404]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"181","area_level":"District","area_name":"Shrawasti","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.74299,27.95267],[81.73248,27.94349],[81.72595,27.94791],[81.71784,27.93596],[81.72385,27.9316],[81.72124,27.92632],[81.71796,27.92196],[81.71256,27.92384],[81.71004,27.92264],[81.70957,27.91805],[81.705,27.91083],[81.70664,27.90761],[81.71145,27.90694],[81.70966,27.90467],[81.71006,27.90088],[81.7116,27.89993],[81.71295,27.90109],[81.71819,27.89797],[81.71624,27.89394],[81.71218,27.89066],[81.71317,27.88887],[81.70668,27.88658],[81.69885,27.88933],[81.69427,27.88778],[81.68967,27.89096],[81.68398,27.8804],[81.68715,27.87918],[81.68566,27.87698],[81.69293,27.87457],[81.68858,27.86928],[81.68467,27.87047],[81.68224,27.87471],[81.67781,27.87],[81.67864,27.86813],[81.67617,27.86544],[81.67224,27.86939],[81.6655,27.87217],[81.66344,27.87611],[81.65986,27.87581],[81.65245,27.88264],[81.64921,27.8835],[81.64512,27.87972],[81.63704,27.88259],[81.63267,27.88019],[81.63189,27.87707],[81.62618,27.87154],[81.61948,27.87352],[81.61705,27.87255],[81.60786,27.8571],[81.6126,27.85314],[81.61012,27.85008],[81.61424,27.84627],[81.60814,27.83922],[81.61305,27.83587],[81.61865,27.83945],[81.62293,27.83536],[81.63077,27.83139],[81.64043,27.82852],[81.64139,27.83012],[81.64877,27.82498],[81.64649,27.81914],[81.64912,27.81823],[81.65323,27.81976],[81.6572,27.81473],[81.64615,27.80585],[81.64852,27.80368],[81.64394,27.79417],[81.64783,27.78999],[81.64894,27.79188],[81.65255,27.7921],[81.65414,27.7902],[81.64473,27.77542],[81.65729,27.76456],[81.65985,27.75944],[81.66934,27.75687],[81.67245,27.75425],[81.66648,27.75152],[81.66488,27.74726],[81.66632,27.74478],[81.66448,27.74136],[81.66651,27.73786],[81.67541,27.736],[81.67979,27.73259],[81.68569,27.73356],[81.68683,27.73107],[81.69391,27.73046],[81.69584,27.72659],[81.69338,27.72178],[81.69752,27.71477],[81.69526,27.70718],[81.70205,27.70061],[81.70146,27.69734],[81.69533,27.69363],[81.68693,27.69745],[81.68408,27.69068],[81.67973,27.68864],[81.68661,27.67661],[81.68395,27.66999],[81.67739,27.66453],[81.68003,27.66295],[81.68212,27.65037],[81.67536,27.64667],[81.67113,27.64716],[81.66533,27.64026],[81.65899,27.64364],[81.65706,27.64038],[81.65741,27.63862],[81.66634,27.63246],[81.67203,27.63846],[81.67607,27.63756],[81.68421,27.64059],[81.69196,27.63314],[81.69923,27.63385],[81.70457,27.63076],[81.69998,27.62445],[81.70714,27.62038],[81.70576,27.61707],[81.69578,27.60738],[81.69061,27.59751],[81.69484,27.59418],[81.69074,27.58722],[81.6965,27.5847],[81.69156,27.57634],[81.68275,27.57811],[81.68189,27.57185],[81.68485,27.57354],[81.68837,27.57215],[81.69061,27.57057],[81.69058,27.56844],[81.69409,27.56676],[81.69278,27.56438],[81.70565,27.55744],[81.70676,27.55472],[81.71037,27.55288],[81.71366,27.5551],[81.71544,27.55413],[81.72262,27.56298],[81.72883,27.56627],[81.73095,27.56997],[81.73262,27.56807],[81.74392,27.56529],[81.74599,27.56248],[81.75177,27.56134],[81.75841,27.56682],[81.76604,27.56376],[81.76771,27.55679],[81.77274,27.55411],[81.77179,27.55088],[81.77462,27.54135],[81.7707,27.5366],[81.76895,27.5375],[81.76625,27.53072],[81.77624,27.52498],[81.77144,27.51549],[81.76875,27.51746],[81.76227,27.51685],[81.75936,27.51841],[81.75317,27.50973],[81.75607,27.50978],[81.76009,27.50696],[81.76342,27.49845],[81.76723,27.50224],[81.77493,27.50029],[81.77799,27.50793],[81.78582,27.50677],[81.79536,27.52326],[81.80583,27.51941],[81.80662,27.52112],[81.81025,27.52072],[81.82439,27.51301],[81.83589,27.51124],[81.83669,27.51305],[81.84085,27.51369],[81.84311,27.51709],[81.84364,27.52606],[81.84512,27.52776],[81.84413,27.53019],[81.84999,27.53747],[81.85594,27.54224],[81.86075,27.54059],[81.86713,27.54181],[81.87236,27.53623],[81.87199,27.53237],[81.86667,27.52198],[81.86878,27.51685],[81.87134,27.5152],[81.87666,27.51466],[81.87777,27.51581],[81.88437,27.51246],[81.89241,27.51089],[81.89458,27.5143],[81.90289,27.51291],[81.90243,27.51035],[81.90387,27.50942],[81.90258,27.50709],[81.90488,27.50551],[81.90369,27.50293],[81.91283,27.49375],[81.91719,27.49564],[81.91452,27.49833],[81.91532,27.49982],[81.93259,27.4958],[81.94708,27.50001],[81.95835,27.49664],[81.96278,27.49367],[81.9662,27.48588],[81.98504,27.47592],[81.98996,27.47546],[81.99028,27.46539],[81.98547,27.44589],[81.98654,27.44217],[81.97865,27.43638],[81.98195,27.43072],[81.98127,27.42704],[81.98538,27.42822],[81.9903,27.4238],[81.99212,27.42499],[81.99278,27.42137],[81.99431,27.42244],[81.99642,27.42135],[81.99434,27.41832],[82.00047,27.41314],[81.99918,27.40988],[82.00103,27.4085],[82.0092,27.41027],[82.0089,27.40871],[82.01102,27.40819],[82.01152,27.4096],[82.01344,27.40907],[82.01436,27.41202],[82.01743,27.4124],[82.01908,27.41563],[82.02437,27.4144],[82.02703,27.41562],[82.02766,27.41347],[82.03222,27.41391],[82.03296,27.41603],[82.03901,27.41823],[82.04026,27.41489],[82.04524,27.41195],[82.05387,27.41551],[82.05578,27.41436],[82.0574,27.41617],[82.06074,27.40691],[82.06699,27.4091],[82.06902,27.40731],[82.07131,27.40788],[82.07108,27.40621],[82.07372,27.40441],[82.07721,27.41409],[82.08273,27.41905],[82.06802,27.4235],[82.06797,27.42614],[82.0725,27.43381],[82.06951,27.43765],[82.07054,27.43956],[82.06648,27.44061],[82.06472,27.43808],[82.06156,27.43916],[82.0583,27.44363],[82.05174,27.44726],[82.05888,27.49304],[82.056,27.49811],[82.04923,27.49898],[82.05074,27.51161],[82.04864,27.51345],[82.0539,27.51939],[82.04982,27.52243],[82.04266,27.53264],[82.04469,27.53484],[82.0483,27.5344],[82.04912,27.53725],[82.04024,27.54186],[82.04756,27.54501],[82.05542,27.55436],[82.04694,27.55936],[82.04153,27.54638],[82.03215,27.5508],[82.03639,27.5622],[82.03219,27.56487],[82.03324,27.56759],[82.02725,27.57517],[82.02229,27.57867],[82.02261,27.5838],[82.02962,27.59314],[82.03112,27.59254],[82.03939,27.60152],[82.04469,27.61294],[82.05292,27.61497],[82.05636,27.61402],[82.05899,27.62336],[82.06608,27.62016],[82.0696,27.62149],[82.07131,27.62442],[82.07655,27.62383],[82.08095,27.63287],[82.08534,27.63442],[82.08796,27.6401],[82.08443,27.64725],[82.09209,27.65688],[82.09771,27.66023],[82.09657,27.66392],[82.09207,27.66881],[82.10195,27.68038],[82.10683,27.68105],[82.11004,27.67913],[82.11279,27.68378],[82.11751,27.68665],[82.12129,27.69156],[82.12463,27.69188],[82.12346,27.69382],[82.12827,27.70012],[82.12593,27.7038],[82.1292,27.70728],[82.13347,27.70754],[82.13153,27.71165],[82.1287,27.71332],[82.13425,27.72294],[82.13482,27.73034],[82.12773,27.73142],[82.12438,27.73503],[82.13184,27.73875],[82.13853,27.74557],[82.13974,27.75023],[82.14313,27.75247],[82.14078,27.75606],[82.14348,27.76299],[82.14261,27.76493],[82.14541,27.76666],[82.14522,27.76955],[82.15117,27.7685],[82.15306,27.7713],[82.15091,27.77339],[82.16014,27.78336],[82.16278,27.79063],[82.16707,27.79248],[82.18152,27.78882],[82.18183,27.79563],[82.18388,27.79536],[82.18435,27.7928],[82.18624,27.79327],[82.18766,27.7963],[82.19127,27.7978],[82.19221,27.80416],[82.19475,27.80522],[82.19758,27.80385],[82.19681,27.80701],[82.19976,27.80916],[82.20012,27.81614],[82.20432,27.82224],[82.20297,27.82518],[82.20532,27.83278],[82.20489,27.84286],[82.20877,27.8431],[82.17663,27.85548],[82.15401,27.86681],[82.15024,27.85846],[82.14847,27.85837],[82.12138,27.86585],[82.11392,27.87822],[82.10056,27.88612],[82.09109,27.89455],[82.08979,27.89931],[82.0805,27.90886],[82.06996,27.92365],[82.06214,27.92169],[82.04468,27.9246],[82.02513,27.9251],[81.9913,27.92916],[81.96832,27.92912],[81.96179,27.92332],[81.95939,27.91648],[81.95093,27.91036],[81.9475,27.90334],[81.93822,27.89398],[81.93803,27.88788],[81.92984,27.88265],[81.92523,27.87533],[81.92585,27.85983],[81.90012,27.85358],[81.88496,27.85695],[81.87762,27.86612],[81.83957,27.89137],[81.83409,27.89723],[81.82106,27.90368],[81.80494,27.90332],[81.74299,27.95267]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"182","area_level":"District","area_name":"Siddharthnagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.93203,27.49846],[82.92929,27.50119],[82.86585,27.49856],[82.83251,27.50194],[82.80144,27.4964],[82.78502,27.5],[82.73501,27.50263],[82.7353,27.49843],[82.73195,27.49562],[82.73309,27.49294],[82.72857,27.48889],[82.73153,27.48644],[82.72899,27.48342],[82.73039,27.48213],[82.72597,27.48029],[82.72696,27.47787],[82.72313,27.4765],[82.71935,27.46942],[82.71581,27.46846],[82.71618,27.46107],[82.72621,27.45697],[82.72926,27.45845],[82.73195,27.45617],[82.73135,27.45159],[82.73428,27.4518],[82.73554,27.44915],[82.74104,27.44697],[82.74045,27.44415],[82.74256,27.44603],[82.74571,27.4455],[82.74439,27.44341],[82.74587,27.43862],[82.75442,27.43406],[82.75592,27.42951],[82.75907,27.42623],[82.75967,27.41714],[82.76468,27.41199],[82.76052,27.41213],[82.75644,27.40625],[82.74545,27.40974],[82.74169,27.41378],[82.73254,27.41682],[82.7305,27.41275],[82.73144,27.40793],[82.72965,27.40785],[82.72938,27.40581],[82.72692,27.40509],[82.72773,27.41133],[82.72549,27.41186],[82.71723,27.40121],[82.71566,27.40103],[82.71113,27.40803],[82.71582,27.40976],[82.71586,27.41286],[82.71425,27.4137],[82.70807,27.41184],[82.70588,27.41435],[82.70627,27.41842],[82.70246,27.42154],[82.70152,27.41919],[82.70669,27.41081],[82.70667,27.40741],[82.69893,27.4134],[82.69834,27.41683],[82.69364,27.41712],[82.69263,27.41595],[82.69672,27.40893],[82.69898,27.40888],[82.69844,27.40736],[82.6946,27.40732],[82.69177,27.41413],[82.68509,27.4087],[82.68243,27.41341],[82.67924,27.41376],[82.6722,27.40965],[82.66857,27.40523],[82.66358,27.40362],[82.66134,27.40445],[82.6621,27.40599],[82.66939,27.4093],[82.66852,27.41257],[82.66498,27.41563],[82.66399,27.41222],[82.65874,27.40942],[82.66043,27.4025],[82.65871,27.40052],[82.65596,27.40432],[82.65396,27.40262],[82.65075,27.40346],[82.65063,27.40804],[82.65557,27.4071],[82.65424,27.40468],[82.65758,27.40513],[82.65639,27.40909],[82.65105,27.41074],[82.65068,27.40861],[82.6431,27.4085],[82.63465,27.40481],[82.6331,27.41006],[82.63085,27.411],[82.62967,27.40156],[82.62286,27.40231],[82.62719,27.40699],[82.62436,27.40901],[82.62135,27.40461],[82.61757,27.40593],[82.61575,27.41175],[82.61797,27.41396],[82.61452,27.41805],[82.61328,27.41618],[82.61448,27.41482],[82.61309,27.41413],[82.60608,27.41405],[82.60426,27.41668],[82.60165,27.4161],[82.5986,27.41116],[82.59939,27.40856],[82.59832,27.40779],[82.5952,27.41168],[82.59429,27.41743],[82.59112,27.41725],[82.58983,27.41514],[82.58607,27.4159],[82.58369,27.41789],[82.58388,27.4228],[82.57509,27.42078],[82.57273,27.4174],[82.57611,27.41625],[82.57314,27.41625],[82.57221,27.41344],[82.5684,27.41642],[82.57115,27.40499],[82.56712,27.40201],[82.56306,27.39594],[82.55443,27.39516],[82.55049,27.38308],[82.54368,27.38122],[82.54168,27.37395],[82.54339,27.37267],[82.54257,27.36902],[82.5388,27.36928],[82.53255,27.36267],[82.52855,27.36201],[82.52649,27.36264],[82.52399,27.36758],[82.52205,27.36731],[82.52153,27.36078],[82.51878,27.36088],[82.51351,27.36546],[82.50175,27.36674],[82.48926,27.35472],[82.48705,27.34066],[82.49035,27.33733],[82.48997,27.33421],[82.47983,27.32687],[82.47518,27.32664],[82.47198,27.32031],[82.47479,27.31843],[82.48997,27.31828],[82.49326,27.31682],[82.49702,27.32227],[82.50049,27.32385],[82.50989,27.31926],[82.51297,27.31368],[82.51254,27.31057],[82.51048,27.31037],[82.50507,27.31492],[82.49467,27.31544],[82.49176,27.31106],[82.48469,27.30555],[82.48353,27.30238],[82.48434,27.29804],[82.4875,27.29267],[82.49159,27.29268],[82.50126,27.29886],[82.51476,27.30321],[82.51458,27.30066],[82.49875,27.29265],[82.49145,27.28659],[82.48981,27.27854],[82.49343,27.27585],[82.51211,27.27601],[82.51262,27.27503],[82.50494,27.26665],[82.50364,27.2558],[82.50511,27.25491],[82.5148,27.25922],[82.5201,27.2593],[82.52316,27.25656],[82.52467,27.25132],[82.52344,27.24929],[82.50811,27.24895],[82.49806,27.23943],[82.49688,27.23658],[82.52096,27.23109],[82.51169,27.21382],[82.51205,27.21139],[82.5249,27.21409],[82.53144,27.21161],[82.54721,27.216],[82.55293,27.21543],[82.55522,27.21006],[82.55525,27.20463],[82.55356,27.20263],[82.5455,27.20543],[82.54378,27.20442],[82.5439,27.20253],[82.54714,27.20019],[82.56329,27.19541],[82.56687,27.18614],[82.56569,27.18234],[82.55578,27.18002],[82.54755,27.18318],[82.53973,27.18385],[82.52589,27.17985],[82.51968,27.18032],[82.51912,27.1754],[82.51677,27.17495],[82.5088,27.17901],[82.50978,27.18587],[82.50826,27.18835],[82.49712,27.19426],[82.48748,27.19618],[82.47846,27.20226],[82.47396,27.1967],[82.47017,27.19655],[82.4653,27.19381],[82.45834,27.18742],[82.45443,27.18638],[82.45342,27.18364],[82.44966,27.18091],[82.44497,27.18186],[82.44232,27.17572],[82.43842,27.17208],[82.4391,27.16583],[82.44067,27.16523],[82.43918,27.16466],[82.44431,27.16275],[82.44603,27.15982],[82.44344,27.15889],[82.44534,27.15848],[82.44703,27.15393],[82.4552,27.15066],[82.45949,27.15508],[82.46258,27.15473],[82.46458,27.15623],[82.47224,27.15561],[82.48065,27.15134],[82.47897,27.15519],[82.48123,27.15573],[82.47491,27.15771],[82.47064,27.16172],[82.47957,27.16419],[82.48195,27.16277],[82.48264,27.16584],[82.48483,27.16106],[82.4898,27.16493],[82.48766,27.15745],[82.48945,27.15656],[82.49315,27.15983],[82.49478,27.15738],[82.4942,27.15423],[82.49691,27.15205],[82.49326,27.14818],[82.49352,27.14562],[82.4949,27.1449],[82.49783,27.14693],[82.4992,27.14308],[82.49748,27.14025],[82.50046,27.13613],[82.50233,27.13428],[82.50972,27.13311],[82.50591,27.13126],[82.50717,27.12584],[82.50515,27.12491],[82.50477,27.12145],[82.51139,27.12752],[82.5169,27.12408],[82.51473,27.1229],[82.51529,27.1205],[82.52349,27.1193],[82.52945,27.11406],[82.53318,27.11731],[82.54065,27.11497],[82.54421,27.11211],[82.54416,27.10833],[82.54762,27.10618],[82.54604,27.10405],[82.54645,27.10154],[82.54955,27.10019],[82.55167,27.10509],[82.55473,27.10189],[82.55032,27.0944],[82.55317,27.09479],[82.55665,27.09251],[82.55615,27.09066],[82.5525,27.08896],[82.55255,27.08522],[82.55781,27.08641],[82.55906,27.082],[82.57255,27.09087],[82.57888,27.10148],[82.58453,27.10492],[82.59774,27.10709],[82.60529,27.10013],[82.61193,27.09924],[82.61636,27.1005],[82.61982,27.10644],[82.63076,27.10695],[82.63619,27.10479],[82.63892,27.1087],[82.6399,27.11584],[82.65873,27.12423],[82.66041,27.12371],[82.65959,27.11463],[82.67917,27.11188],[82.68781,27.11356],[82.6885,27.11521],[82.68994,27.11275],[82.69429,27.1134],[82.69384,27.11039],[82.69808,27.10775],[82.70301,27.10696],[82.70594,27.10857],[82.70693,27.10656],[82.71011,27.10595],[82.71367,27.10749],[82.71386,27.10898],[82.71823,27.10949],[82.72293,27.10278],[82.72229,27.10002],[82.72572,27.10222],[82.72644,27.10101],[82.72785,27.10274],[82.72936,27.10175],[82.73028,27.10438],[82.7348,27.10464],[82.73902,27.1107],[82.7449,27.11126],[82.74743,27.11376],[82.74852,27.11102],[82.75114,27.11038],[82.75686,27.11123],[82.75701,27.11236],[82.76069,27.1111],[82.76341,27.11201],[82.76621,27.10723],[82.76379,27.10631],[82.76709,27.09846],[82.76914,27.09936],[82.76808,27.09801],[82.77177,27.0973],[82.77083,27.09519],[82.77328,27.09473],[82.77284,27.09332],[82.77442,27.09396],[82.77813,27.09145],[82.77911,27.08876],[82.77777,27.08777],[82.78578,27.08298],[82.78622,27.08048],[82.78813,27.08148],[82.79051,27.08035],[82.78908,27.07867],[82.79203,27.07327],[82.79278,27.06751],[82.79167,27.06564],[82.79221,27.06325],[82.79376,27.06285],[82.79214,27.06168],[82.79381,27.06025],[82.79285,27.05633],[82.79546,27.05185],[82.79431,27.04999],[82.7958,27.04905],[82.7937,27.048],[82.79916,27.04654],[82.80048,27.0476],[82.8012,27.04533],[82.80293,27.04662],[82.80566,27.04499],[82.806,27.0421],[82.80821,27.04197],[82.80839,27.04001],[82.81423,27.04122],[82.81711,27.03799],[82.81865,27.03851],[82.82178,27.033],[82.82081,27.03137],[82.82487,27.02975],[82.82283,27.02856],[82.82932,27.01909],[82.83329,27.01752],[82.83323,27.02026],[82.83595,27.02004],[82.8351,27.0218],[82.83745,27.02112],[82.83707,27.02304],[82.83993,27.02193],[82.84149,27.02368],[82.84399,27.0233],[82.84245,27.0264],[82.84807,27.02701],[82.84852,27.02974],[82.85478,27.03327],[82.854,27.03428],[82.85725,27.03559],[82.85878,27.03889],[82.86458,27.03804],[82.86708,27.03395],[82.86659,27.03148],[82.86982,27.03287],[82.87146,27.03008],[82.86948,27.02825],[82.86936,27.0232],[82.87359,27.0225],[82.87405,27.01914],[82.87997,27.01548],[82.87916,27.01311],[82.88271,27.01273],[82.88369,27.00977],[82.88565,27.01309],[82.88865,27.01184],[82.89495,27.01458],[82.89636,27.0117],[82.89411,27.00924],[82.89657,27.00763],[82.89773,27.0025],[82.90208,27.00239],[82.90357,26.99982],[82.90497,27.00163],[82.9039,27.0083],[82.90964,27.00924],[82.91154,27.01221],[82.91172,27.01675],[82.90959,27.0193],[82.91071,27.02087],[82.91731,27.0203],[82.91977,27.02359],[82.9222,27.02362],[82.92444,27.02743],[82.93363,27.02804],[82.93612,27.02545],[82.93893,27.02545],[82.94491,27.03033],[82.9473,27.02943],[82.94821,27.03169],[82.95205,27.028],[82.95513,27.03073],[82.96283,27.02816],[82.95914,27.03463],[82.96175,27.03999],[82.96607,27.04155],[82.96723,27.03803],[82.97308,27.03979],[82.97057,27.04376],[82.96985,27.0487],[82.9758,27.04399],[82.97734,27.04066],[82.98041,27.04137],[82.98575,27.03396],[82.99091,27.03672],[83.00773,27.03229],[83.01035,27.03453],[83.00721,27.03996],[83.00871,27.04361],[83.02103,27.0464],[83.02354,27.04088],[83.02639,27.03918],[83.03463,27.03948],[83.03394,27.04807],[83.02844,27.04994],[83.02983,27.05403],[83.02279,27.05984],[83.02127,27.06587],[83.02779,27.07143],[83.0264,27.07969],[83.03017,27.08201],[83.03539,27.08294],[83.04086,27.08034],[83.04628,27.08362],[83.05159,27.08186],[83.05658,27.08518],[83.04537,27.08998],[83.04593,27.09386],[83.04971,27.09466],[83.05073,27.09676],[83.06039,27.09895],[83.06409,27.09748],[83.06734,27.0981],[83.07685,27.09318],[83.09156,27.09932],[83.09776,27.09774],[83.10959,27.10176],[83.12028,27.09753],[83.12392,27.10116],[83.12488,27.10504],[83.12053,27.10948],[83.11978,27.11449],[83.1295,27.10774],[83.13091,27.11035],[83.14759,27.11417],[83.14891,27.11688],[83.12979,27.13411],[83.12853,27.13781],[83.12917,27.14439],[83.1202,27.15254],[83.12041,27.16069],[83.1264,27.16151],[83.13525,27.15925],[83.13944,27.16043],[83.14098,27.16328],[83.1404,27.16611],[83.1436,27.16822],[83.14653,27.16618],[83.15072,27.16711],[83.15524,27.16591],[83.15841,27.15793],[83.1557,27.15291],[83.15565,27.14657],[83.1598,27.14315],[83.165,27.14537],[83.16883,27.1497],[83.1652,27.15144],[83.16021,27.14932],[83.15995,27.15104],[83.1565,27.1523],[83.16443,27.15353],[83.16805,27.15623],[83.17407,27.15535],[83.17616,27.16025],[83.17727,27.17854],[83.17055,27.18751],[83.16774,27.18707],[83.16623,27.18843],[83.1705,27.19169],[83.17548,27.19272],[83.17633,27.19441],[83.17185,27.2046],[83.1687,27.20481],[83.16786,27.20208],[83.16575,27.2044],[83.16789,27.20587],[83.1653,27.20876],[83.16763,27.21228],[83.16654,27.2145],[83.1686,27.21821],[83.16808,27.22034],[83.16559,27.22004],[83.16569,27.22476],[83.16781,27.2273],[83.17089,27.22686],[83.17589,27.23035],[83.17607,27.22691],[83.17963,27.22512],[83.18357,27.22757],[83.1878,27.22678],[83.18867,27.22744],[83.18701,27.22865],[83.18937,27.22986],[83.19056,27.22703],[83.18949,27.22398],[83.19351,27.22605],[83.19388,27.22863],[83.19546,27.22613],[83.1986,27.22764],[83.20037,27.22611],[83.20237,27.22673],[83.20515,27.22989],[83.20282,27.23037],[83.20258,27.2328],[83.20635,27.23091],[83.20489,27.23462],[83.21021,27.23599],[83.20889,27.23938],[83.21194,27.24152],[83.21243,27.24388],[83.21773,27.24359],[83.2212,27.24568],[83.2184,27.24941],[83.22042,27.25052],[83.21731,27.25169],[83.2183,27.25567],[83.21298,27.25747],[83.21485,27.25996],[83.21247,27.26204],[83.21344,27.26435],[83.2185,27.26492],[83.21681,27.26764],[83.21779,27.26923],[83.2239,27.27069],[83.23372,27.27041],[83.23696,27.27429],[83.23989,27.28387],[83.25118,27.28478],[83.25327,27.28794],[83.25276,27.29171],[83.24913,27.2971],[83.2436,27.29677],[83.24393,27.29994],[83.25122,27.29934],[83.26073,27.30548],[83.26255,27.30987],[83.26885,27.31129],[83.27125,27.31707],[83.26991,27.32127],[83.27257,27.32336],[83.26868,27.3258],[83.2776,27.32928],[83.28484,27.33468],[83.29292,27.336],[83.27243,27.35263],[83.26532,27.36537],[83.27215,27.38335],[83.23996,27.40641],[83.22573,27.41168],[83.21883,27.41622],[83.21111,27.42349],[83.19591,27.44639],[83.18795,27.45432],[83.16572,27.45746],[83.07722,27.4527],[83.03457,27.44872],[83.01896,27.45391],[82.95409,27.46773],[82.94462,27.47693],[82.93957,27.49104],[82.93203,27.49846]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"183","area_level":"District","area_name":"Sitapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.98569,27.88602],[80.98009,27.88843],[80.97231,27.89501],[80.97324,27.8968],[80.98235,27.9002],[80.97868,27.90405],[80.97025,27.90629],[80.96131,27.90275],[80.95747,27.89966],[80.95932,27.89573],[80.95291,27.88681],[80.95395,27.8824],[80.95135,27.87461],[80.94464,27.87086],[80.93702,27.87345],[80.93938,27.86787],[80.93636,27.86318],[80.93986,27.85786],[80.93446,27.85356],[80.92877,27.84506],[80.91987,27.84925],[80.9065,27.83418],[80.90089,27.83752],[80.90071,27.84121],[80.9035,27.8417],[80.90507,27.84541],[80.89944,27.85037],[80.89452,27.85165],[80.8839,27.8409],[80.88115,27.84281],[80.87414,27.83928],[80.87241,27.83551],[80.86431,27.82879],[80.86602,27.8267],[80.86433,27.82415],[80.85605,27.82581],[80.8466,27.82553],[80.84579,27.81759],[80.84732,27.81277],[80.84471,27.81164],[80.84258,27.80754],[80.84422,27.80445],[80.83895,27.79782],[80.83546,27.79859],[80.83289,27.79502],[80.8258,27.79084],[80.81833,27.79362],[80.81567,27.79703],[80.81584,27.79951],[80.80757,27.80728],[80.78879,27.81812],[80.78264,27.81104],[80.7768,27.81198],[80.7751,27.80951],[80.7656,27.81586],[80.76099,27.80595],[80.74812,27.81229],[80.74216,27.80669],[80.74482,27.80043],[80.74395,27.79573],[80.73372,27.80157],[80.72714,27.80267],[80.72552,27.80604],[80.71663,27.81229],[80.6985,27.81875],[80.69399,27.82367],[80.68774,27.8242],[80.68573,27.82285],[80.68527,27.82463],[80.68222,27.82309],[80.68202,27.82143],[80.67826,27.82051],[80.6762,27.82223],[80.67161,27.82226],[80.67097,27.82643],[80.6696,27.8266],[80.67066,27.82947],[80.6689,27.83057],[80.6664,27.83028],[80.66579,27.82681],[80.66341,27.82658],[80.66416,27.82517],[80.66034,27.81778],[80.6542,27.817],[80.65072,27.82087],[80.65084,27.82424],[80.64915,27.82485],[80.65081,27.82812],[80.64853,27.83096],[80.64926,27.83341],[80.64182,27.8392],[80.63543,27.83184],[80.63707,27.83032],[80.63473,27.82764],[80.62833,27.81033],[80.62954,27.80385],[80.62204,27.79536],[80.62023,27.7896],[80.61363,27.7812],[80.6136,27.77685],[80.60925,27.77438],[80.60314,27.76238],[80.60652,27.7582],[80.60511,27.7507],[80.59931,27.75048],[80.59759,27.74858],[80.58927,27.75244],[80.58592,27.75206],[80.57775,27.75526],[80.57299,27.74969],[80.56958,27.75284],[80.56385,27.75227],[80.5625,27.75723],[80.55344,27.76216],[80.55446,27.77043],[80.54891,27.7738],[80.54614,27.77392],[80.54299,27.77038],[80.54154,27.77204],[80.54105,27.77819],[80.53948,27.77933],[80.54086,27.78055],[80.53609,27.78463],[80.53993,27.79623],[80.53411,27.79997],[80.53476,27.80091],[80.51732,27.81038],[80.51522,27.80644],[80.51592,27.80344],[80.5126,27.79864],[80.50753,27.79613],[80.50151,27.797],[80.49625,27.78886],[80.49447,27.7821],[80.4888,27.77999],[80.49077,27.77737],[80.48975,27.77536],[80.48527,27.77348],[80.47463,27.77958],[80.47187,27.77419],[80.47017,27.77281],[80.46837,27.77353],[80.464,27.75738],[80.45585,27.7601],[80.45532,27.76806],[80.44504,27.77159],[80.44573,27.77057],[80.44367,27.7692],[80.44546,27.76732],[80.44247,27.76573],[80.44366,27.76366],[80.44524,27.76195],[80.44767,27.76326],[80.45167,27.76184],[80.45079,27.75484],[80.45224,27.75219],[80.45022,27.75157],[80.45015,27.74917],[80.44479,27.74618],[80.43712,27.746],[80.4353,27.74199],[80.43232,27.74251],[80.4287,27.73995],[80.42134,27.7463],[80.41738,27.74408],[80.41386,27.74419],[80.40894,27.74132],[80.40858,27.73918],[80.39567,27.7273],[80.39326,27.7267],[80.39296,27.72139],[80.38896,27.71419],[80.38445,27.71345],[80.37804,27.7069],[80.37006,27.71002],[80.36682,27.70476],[80.36149,27.70929],[80.35896,27.70531],[80.35569,27.70575],[80.35397,27.70348],[80.3485,27.70445],[80.34715,27.70173],[80.34372,27.70301],[80.33778,27.69931],[80.33384,27.69924],[80.32801,27.69297],[80.32056,27.68898],[80.30992,27.67979],[80.30909,27.67381],[80.30665,27.67456],[80.30766,27.6712],[80.31245,27.66618],[80.30794,27.66462],[80.31141,27.66158],[80.31028,27.65938],[80.30781,27.65984],[80.31023,27.65464],[80.30624,27.65578],[80.30674,27.65168],[80.30958,27.6511],[80.30889,27.64811],[80.31089,27.64707],[80.30805,27.6448],[80.31092,27.64039],[80.30687,27.63719],[80.30283,27.63737],[80.30658,27.63409],[80.30258,27.63442],[80.29863,27.63166],[80.30325,27.62491],[80.30179,27.61817],[80.30499,27.6182],[80.30607,27.61613],[80.30362,27.61232],[80.30713,27.60919],[80.30365,27.60945],[80.30708,27.60713],[80.30576,27.60574],[80.31219,27.6032],[80.31503,27.60618],[80.31857,27.60626],[80.31945,27.60505],[80.31773,27.60323],[80.32423,27.60069],[80.32435,27.5988],[80.3201,27.5937],[80.32066,27.59217],[80.3095,27.59059],[80.30827,27.58829],[80.30527,27.58719],[80.30502,27.58217],[80.30632,27.57637],[80.3176,27.56501],[80.31882,27.55801],[80.31766,27.55705],[80.3204,27.55464],[80.32035,27.55107],[80.32251,27.55018],[80.32034,27.54698],[80.32197,27.54466],[80.32076,27.54017],[80.32375,27.53729],[80.32091,27.5348],[80.32724,27.52797],[80.32683,27.52579],[80.32479,27.52509],[80.32506,27.52298],[80.33184,27.51771],[80.33679,27.51813],[80.33814,27.51406],[80.34406,27.51058],[80.34653,27.50498],[80.34884,27.50362],[80.34636,27.50145],[80.34901,27.49878],[80.3481,27.49646],[80.35279,27.49257],[80.35015,27.48886],[80.35242,27.48783],[80.35178,27.48593],[80.35607,27.48764],[80.35654,27.48001],[80.36209,27.48094],[80.36758,27.47773],[80.36943,27.48122],[80.37479,27.47969],[80.37621,27.48128],[80.37908,27.47724],[80.3813,27.47666],[80.38144,27.47434],[80.38401,27.47728],[80.39093,27.4736],[80.39105,27.46577],[80.40267,27.46321],[80.40301,27.45914],[80.39743,27.45404],[80.40402,27.45395],[80.40164,27.45057],[80.40221,27.44847],[80.40443,27.4506],[80.4079,27.44968],[80.40778,27.44721],[80.40494,27.44635],[80.40835,27.44372],[80.40998,27.43485],[80.41724,27.43455],[80.42576,27.42515],[80.43061,27.42297],[80.43093,27.41983],[80.42937,27.41836],[80.42174,27.41963],[80.42333,27.4138],[80.43202,27.40824],[80.43566,27.40213],[80.44552,27.4035],[80.45124,27.40149],[80.44721,27.39773],[80.45146,27.39563],[80.44893,27.39076],[80.45014,27.38727],[80.44866,27.38345],[80.45424,27.37063],[80.45763,27.36666],[80.46532,27.36961],[80.46795,27.36715],[80.46589,27.35583],[80.45979,27.36095],[80.45411,27.36003],[80.45641,27.35354],[80.46231,27.34885],[80.46364,27.34557],[80.46284,27.34375],[80.45597,27.34136],[80.45552,27.33915],[80.46054,27.34166],[80.46564,27.34],[80.47003,27.3452],[80.47407,27.34634],[80.48257,27.34508],[80.48457,27.3419],[80.48363,27.33638],[80.48724,27.33004],[80.50174,27.32459],[80.50159,27.32264],[80.49581,27.31922],[80.49535,27.31193],[80.49973,27.30334],[80.50625,27.30043],[80.5059,27.29408],[80.51174,27.28759],[80.51229,27.27327],[80.51721,27.26857],[80.51562,27.2648],[80.50989,27.26724],[80.50262,27.26165],[80.49834,27.26042],[80.49504,27.25605],[80.49688,27.25486],[80.50778,27.25643],[80.51361,27.25494],[80.51339,27.25814],[80.51539,27.26118],[80.52223,27.2598],[80.53083,27.2614],[80.53996,27.26602],[80.54685,27.2721],[80.55029,27.27236],[80.5577,27.26918],[80.55944,27.27969],[80.5651,27.29116],[80.5665,27.29272],[80.57183,27.29291],[80.5743,27.29171],[80.57206,27.28618],[80.57722,27.28804],[80.57754,27.28598],[80.56925,27.27869],[80.57909,27.27644],[80.58078,27.27461],[80.58149,27.27702],[80.58668,27.27884],[80.58576,27.27267],[80.59034,27.26877],[80.59727,27.27084],[80.59741,27.26636],[80.6008,27.26284],[80.61656,27.27161],[80.61883,27.27074],[80.62757,27.25294],[80.63095,27.25355],[80.63258,27.25792],[80.64377,27.26056],[80.64979,27.25889],[80.6517,27.25674],[80.65196,27.25292],[80.64629,27.2522],[80.64305,27.2495],[80.64165,27.24574],[80.64328,27.24378],[80.65095,27.24165],[80.65176,27.23279],[80.65428,27.22774],[80.65686,27.22611],[80.6672,27.22589],[80.67551,27.22032],[80.68495,27.22042],[80.69269,27.21548],[80.69685,27.21751],[80.70485,27.2299],[80.71734,27.23503],[80.72625,27.23537],[80.74103,27.22266],[80.74517,27.22335],[80.74758,27.22802],[80.75204,27.22188],[80.75267,27.21344],[80.75975,27.20845],[80.76414,27.20834],[80.76643,27.2019],[80.7709,27.20111],[80.77566,27.20426],[80.78259,27.20244],[80.78851,27.20822],[80.7904,27.20014],[80.79735,27.19977],[80.80561,27.17581],[80.80384,27.17503],[80.80468,27.17016],[80.80735,27.17321],[80.80974,27.17281],[80.81219,27.16926],[80.81373,27.16072],[80.82173,27.15873],[80.81721,27.15357],[80.81638,27.14955],[80.82158,27.13873],[80.81736,27.1353],[80.80656,27.13353],[80.8042,27.13091],[80.80489,27.12619],[80.81036,27.12217],[80.80641,27.10929],[80.81003,27.10763],[80.81629,27.11435],[80.82169,27.11574],[80.82794,27.09944],[80.83812,27.10443],[80.83608,27.10813],[80.84759,27.11198],[80.85308,27.11685],[80.85496,27.12084],[80.86018,27.12114],[80.86462,27.126],[80.86677,27.12576],[80.86828,27.12336],[80.8769,27.12571],[80.88079,27.12898],[80.88677,27.12827],[80.88924,27.12615],[80.89477,27.12709],[80.8942,27.13219],[80.89785,27.1361],[80.89931,27.14152],[80.90739,27.1515],[80.9151,27.14835],[80.92259,27.15823],[80.92749,27.1571],[80.93025,27.15852],[80.93342,27.16469],[80.93403,27.17141],[80.93146,27.17527],[80.93035,27.18145],[80.92491,27.18257],[80.92393,27.18703],[80.92826,27.19434],[80.92705,27.20098],[80.93088,27.19999],[80.93721,27.19437],[80.94156,27.20031],[80.94556,27.19974],[80.9504,27.21219],[80.95401,27.21436],[80.95638,27.21928],[80.96564,27.21709],[80.96493,27.21982],[80.96677,27.22345],[80.96865,27.24],[80.9883,27.23215],[80.99682,27.23118],[81.0023,27.22678],[81.00745,27.2276],[81.01589,27.22512],[81.01663,27.22838],[81.01937,27.22849],[81.0269,27.22528],[81.02939,27.22544],[81.03221,27.22988],[81.03877,27.22663],[81.04205,27.22921],[81.04922,27.22691],[81.05352,27.22863],[81.05466,27.22766],[81.05348,27.21754],[81.05675,27.2176],[81.0619,27.22194],[81.06672,27.21912],[81.07254,27.22354],[81.07663,27.22954],[81.08218,27.22621],[81.08517,27.22868],[81.07956,27.23595],[81.08466,27.2477],[81.09045,27.25101],[81.0909,27.25546],[81.08934,27.25936],[81.09155,27.26413],[81.09678,27.26859],[81.10071,27.26516],[81.11068,27.2715],[81.11281,27.27455],[81.11669,27.27217],[81.13159,27.27153],[81.13923,27.26538],[81.1404,27.26216],[81.14858,27.25792],[81.15362,27.26021],[81.15866,27.26613],[81.16246,27.26554],[81.16782,27.26865],[81.17348,27.26695],[81.17664,27.26381],[81.17663,27.26024],[81.18398,27.25563],[81.18301,27.2454],[81.19554,27.23739],[81.20128,27.23651],[81.20422,27.23881],[81.20718,27.2372],[81.21371,27.24768],[81.2073,27.25249],[81.20965,27.25552],[81.21588,27.25869],[81.21779,27.26373],[81.22279,27.26778],[81.22528,27.27241],[81.22811,27.27186],[81.22799,27.26936],[81.23285,27.26267],[81.24198,27.27046],[81.23666,27.27497],[81.23836,27.28098],[81.24255,27.28468],[81.23775,27.28765],[81.23555,27.294],[81.23276,27.29446],[81.23125,27.29871],[81.23994,27.3069],[81.22512,27.31149],[81.22386,27.31627],[81.22834,27.32383],[81.23133,27.31902],[81.2359,27.31894],[81.24089,27.32254],[81.24827,27.31398],[81.25232,27.31805],[81.255,27.32517],[81.25395,27.32973],[81.25805,27.33471],[81.27198,27.32857],[81.27328,27.33142],[81.28062,27.33234],[81.27737,27.33421],[81.27706,27.33719],[81.28415,27.34661],[81.28456,27.35402],[81.28944,27.35319],[81.29183,27.35931],[81.29854,27.3478],[81.29482,27.34248],[81.2969,27.33591],[81.30242,27.32918],[81.30599,27.32824],[81.31556,27.32048],[81.31276,27.30949],[81.30551,27.30111],[81.30616,27.29889],[81.31366,27.29538],[81.31778,27.29896],[81.3218,27.29708],[81.31487,27.27858],[81.32106,27.27044],[81.32589,27.27303],[81.33538,27.27169],[81.33824,27.25882],[81.34113,27.25375],[81.34799,27.25734],[81.35812,27.25729],[81.36386,27.26523],[81.37041,27.26751],[81.37609,27.26644],[81.37677,27.26803],[81.37275,27.27325],[81.38129,27.2776],[81.37167,27.28265],[81.37342,27.29295],[81.37711,27.29564],[81.38257,27.2948],[81.38224,27.30211],[81.3836,27.30399],[81.38214,27.31216],[81.38917,27.30792],[81.39126,27.31056],[81.38904,27.31566],[81.37986,27.31616],[81.38415,27.3194],[81.38976,27.31958],[81.39302,27.3248],[81.39977,27.32583],[81.40014,27.32899],[81.39447,27.33451],[81.39531,27.34079],[81.41259,27.33419],[81.41342,27.34456],[81.41632,27.35097],[81.41474,27.36004],[81.41038,27.36946],[81.40492,27.37489],[81.39189,27.37919],[81.38348,27.38665],[81.37548,27.39911],[81.37324,27.40961],[81.35881,27.42126],[81.35983,27.42533],[81.35645,27.42483],[81.35074,27.42673],[81.35398,27.43785],[81.3527,27.44095],[81.34648,27.44918],[81.3421,27.45233],[81.34103,27.4566],[81.3358,27.4568],[81.33138,27.46177],[81.33403,27.47328],[81.33142,27.48125],[81.33219,27.49022],[81.31887,27.5002],[81.32248,27.51648],[81.31954,27.51826],[81.31909,27.52157],[81.32268,27.52953],[81.31725,27.53097],[81.3151,27.53727],[81.30215,27.5385],[81.30706,27.5527],[81.30685,27.55959],[81.29739,27.56188],[81.29049,27.56566],[81.28429,27.56494],[81.27251,27.58924],[81.27239,27.58617],[81.26577,27.59147],[81.26638,27.59578],[81.27189,27.60302],[81.26152,27.60413],[81.26623,27.61111],[81.27005,27.61329],[81.26937,27.61458],[81.27403,27.627],[81.27389,27.62989],[81.27101,27.63232],[81.27764,27.63186],[81.28903,27.63788],[81.29802,27.63147],[81.30091,27.63133],[81.30157,27.63274],[81.30031,27.64029],[81.29694,27.6428],[81.29665,27.64703],[81.29284,27.65199],[81.29088,27.6519],[81.29397,27.66637],[81.27912,27.67578],[81.2778,27.67843],[81.27837,27.6851],[81.27486,27.68418],[81.27311,27.67552],[81.25959,27.67979],[81.2505,27.67889],[81.24924,27.68123],[81.25108,27.68755],[81.26384,27.69992],[81.26636,27.70051],[81.27238,27.69831],[81.269,27.70134],[81.26974,27.70569],[81.26666,27.71189],[81.26488,27.7137],[81.24742,27.71682],[81.2435,27.72902],[81.23533,27.72622],[81.23003,27.72897],[81.22752,27.72369],[81.22276,27.72385],[81.2198,27.72081],[81.21685,27.71487],[81.21141,27.717],[81.20758,27.71574],[81.20524,27.72143],[81.20311,27.71869],[81.20131,27.72556],[81.19683,27.72545],[81.18602,27.72908],[81.18459,27.73547],[81.19132,27.7398],[81.1924,27.74513],[81.19556,27.75014],[81.19498,27.75344],[81.20355,27.7565],[81.20968,27.7502],[81.20819,27.74879],[81.21813,27.7492],[81.22816,27.75527],[81.22909,27.7572],[81.22769,27.76071],[81.22441,27.76314],[81.2139,27.76539],[81.19739,27.77167],[81.18655,27.78062],[81.17951,27.78438],[81.17098,27.77987],[81.17022,27.77734],[81.15871,27.777],[81.1526,27.78195],[81.15054,27.78044],[81.14634,27.78542],[81.14256,27.79387],[81.14397,27.80198],[81.14107,27.80573],[81.13093,27.8003],[81.12677,27.80378],[81.12169,27.79241],[81.11629,27.79305],[81.11492,27.78919],[81.10873,27.78902],[81.10613,27.79063],[81.10436,27.79792],[81.09188,27.80365],[81.09319,27.81251],[81.08922,27.81454],[81.08393,27.81476],[81.08452,27.82043],[81.08286,27.82147],[81.0808,27.82036],[81.07373,27.82386],[81.0688,27.82424],[81.06033,27.81112],[81.0552,27.81587],[81.04691,27.81828],[81.03829,27.81236],[81.03468,27.8192],[81.03099,27.82055],[81.02941,27.81944],[81.02679,27.82263],[81.02386,27.82076],[81.02083,27.81532],[81.01537,27.82054],[81.00436,27.82466],[80.99928,27.82537],[80.99661,27.82301],[80.99037,27.82408],[80.98818,27.82644],[80.98573,27.84199],[80.99593,27.85464],[80.99423,27.85644],[80.99786,27.86727],[80.99625,27.86939],[80.99839,27.87201],[81.01019,27.87768],[80.99645,27.88796],[80.98569,27.88602]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"184","area_level":"District","area_name":"Sonbhadra","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.05548,24.95842],[83.05221,24.96029],[83.0469,24.95513],[83.04317,24.95535],[83.04545,24.95079],[83.04509,24.9456],[83.04775,24.94096],[83.03208,24.93472],[83.02884,24.93162],[83.01055,24.92253],[83.01365,24.91125],[83.00808,24.90136],[82.99747,24.89918],[82.99384,24.89678],[82.98708,24.89681],[82.98722,24.89517],[82.98387,24.89227],[82.98538,24.88344],[82.98388,24.87768],[82.97954,24.87233],[82.98335,24.8679],[82.97963,24.86694],[82.97681,24.86893],[82.96997,24.86474],[82.96449,24.85624],[82.95561,24.85536],[82.9543,24.8367],[82.92983,24.83981],[82.92859,24.84072],[82.93182,24.85381],[82.92461,24.85405],[82.92224,24.85551],[82.91951,24.85467],[82.91734,24.84957],[82.91001,24.84596],[82.9191,24.84093],[82.91707,24.83418],[82.91355,24.83435],[82.91043,24.83212],[82.9007,24.83409],[82.89476,24.83795],[82.88777,24.83767],[82.87833,24.83481],[82.87472,24.83535],[82.87101,24.83891],[82.86475,24.84141],[82.86148,24.83997],[82.85219,24.84056],[82.8491,24.84237],[82.83669,24.84208],[82.8277,24.85434],[82.81356,24.85134],[82.81167,24.84889],[82.80658,24.85176],[82.80504,24.84634],[82.8019,24.8433],[82.79147,24.83846],[82.78859,24.83895],[82.78372,24.83606],[82.78063,24.83601],[82.77099,24.82794],[82.76145,24.82572],[82.75811,24.82162],[82.75141,24.81875],[82.7484,24.819],[82.74529,24.82183],[82.74268,24.81941],[82.73471,24.81849],[82.73007,24.81602],[82.72382,24.81627],[82.71476,24.81938],[82.7048,24.82661],[82.70208,24.82627],[82.7014,24.82123],[82.69926,24.81841],[82.70303,24.81222],[82.7007,24.80574],[82.69255,24.80436],[82.6891,24.79631],[82.67886,24.79211],[82.67069,24.79073],[82.6577,24.7811],[82.65045,24.78294],[82.64825,24.78519],[82.6347,24.78338],[82.63095,24.78503],[82.62692,24.78445],[82.62449,24.7862],[82.63482,24.80633],[82.6336,24.81641],[82.63048,24.81807],[82.62294,24.81826],[82.61757,24.80859],[82.60823,24.81136],[82.60344,24.81783],[82.58828,24.82418],[82.58285,24.82764],[82.58252,24.83024],[82.58062,24.82971],[82.57868,24.82719],[82.57926,24.82317],[82.57424,24.82038],[82.57082,24.8127],[82.5609,24.81133],[82.54566,24.80402],[82.54686,24.80005],[82.54523,24.79724],[82.54665,24.79392],[82.54604,24.78941],[82.54807,24.78713],[82.54542,24.78445],[82.54691,24.78091],[82.54622,24.77785],[82.55226,24.76909],[82.55127,24.75504],[82.55285,24.74852],[82.55088,24.7423],[82.5525,24.73841],[82.54342,24.7328],[82.5357,24.73312],[82.53577,24.71895],[82.5361,24.71549],[82.53919,24.71159],[82.54271,24.70874],[82.54669,24.70846],[82.54921,24.70111],[82.54921,24.69544],[82.54714,24.69067],[82.53875,24.68592],[82.52709,24.68332],[82.52346,24.67813],[82.52978,24.65253],[82.54045,24.64792],[82.57984,24.65929],[82.59304,24.66878],[82.60718,24.67554],[82.6366,24.68235],[82.65747,24.69511],[82.67085,24.69703],[82.67615,24.69071],[82.68657,24.68579],[82.70089,24.67602],[82.70179,24.67166],[82.69875,24.66253],[82.6982,24.6462],[82.7067,24.63627],[82.70942,24.63907],[82.71796,24.64255],[82.7168,24.63709],[82.71817,24.63467],[82.72284,24.6384],[82.72813,24.63535],[82.73229,24.64428],[82.74106,24.64161],[82.74633,24.64208],[82.75309,24.63695],[82.75352,24.64091],[82.76208,24.64259],[82.7743,24.64177],[82.77193,24.6349],[82.77227,24.62193],[82.77562,24.62047],[82.7754,24.61466],[82.77955,24.61394],[82.77007,24.6037],[82.76989,24.59897],[82.76546,24.59577],[82.78017,24.59462],[82.7916,24.59818],[82.80303,24.59768],[82.80318,24.58758],[82.80122,24.583],[82.80272,24.5826],[82.80308,24.57912],[82.80125,24.57686],[82.80564,24.56978],[82.80494,24.55607],[82.80755,24.54899],[82.79131,24.54356],[82.75552,24.53745],[82.75153,24.53772],[82.7526,24.54369],[82.74908,24.54331],[82.75248,24.54662],[82.75164,24.54991],[82.74755,24.54978],[82.7431,24.55182],[82.74237,24.54692],[82.72201,24.55529],[82.71918,24.55247],[82.72065,24.55168],[82.71955,24.54944],[82.72116,24.54567],[82.72804,24.5399],[82.73103,24.53508],[82.72949,24.53114],[82.72094,24.5295],[82.72348,24.52547],[82.72128,24.52346],[82.72312,24.51831],[82.72063,24.51403],[82.72432,24.50957],[82.72927,24.50905],[82.73592,24.50174],[82.74362,24.49896],[82.74356,24.49535],[82.74325,24.49177],[82.73998,24.48735],[82.74012,24.48202],[82.73373,24.47857],[82.73423,24.47553],[82.72989,24.47265],[82.73098,24.47089],[82.73472,24.47044],[82.73636,24.46165],[82.7348,24.45678],[82.7314,24.45404],[82.73111,24.45147],[82.73311,24.45024],[82.73412,24.44667],[82.73089,24.43758],[82.73489,24.43545],[82.73263,24.43084],[82.73439,24.43238],[82.73587,24.4311],[82.73921,24.43237],[82.73921,24.42764],[82.72341,24.41679],[82.71321,24.38024],[82.71947,24.37796],[82.71878,24.37402],[82.72299,24.37117],[82.72384,24.36818],[82.72825,24.36899],[82.72878,24.36795],[82.73195,24.36947],[82.73982,24.36736],[82.74414,24.37047],[82.75591,24.36963],[82.75462,24.37375],[82.76037,24.37368],[82.76021,24.37735],[82.76511,24.37537],[82.7636,24.37264],[82.7643,24.37017],[82.76938,24.3707],[82.76873,24.36633],[82.76514,24.36522],[82.76741,24.36085],[82.76557,24.35994],[82.76688,24.35816],[82.76442,24.35454],[82.76796,24.35285],[82.76925,24.34664],[82.77364,24.34342],[82.76932,24.34187],[82.76838,24.3392],[82.76993,24.33301],[82.7671,24.33029],[82.7715,24.32816],[82.76894,24.32403],[82.76844,24.31677],[82.76604,24.31593],[82.76595,24.31361],[82.77322,24.30736],[82.76989,24.28984],[82.7622,24.26958],[82.75616,24.26142],[82.7555,24.25584],[82.75949,24.24117],[82.75901,24.23635],[82.75,24.22637],[82.73648,24.22295],[82.73481,24.21778],[82.7396,24.2001],[82.74444,24.16548],[82.73585,24.15387],[82.7293,24.14796],[82.72808,24.13514],[82.71051,24.13622],[82.70429,24.1393],[82.69971,24.13924],[82.6949,24.14329],[82.69302,24.14873],[82.68288,24.15459],[82.6773,24.15246],[82.6707,24.14712],[82.67413,24.14097],[82.67052,24.13666],[82.66682,24.13693],[82.66819,24.13497],[82.66444,24.12983],[82.66446,24.12752],[82.66524,24.12449],[82.67039,24.11999],[82.67715,24.11999],[82.67832,24.1144],[82.68063,24.11485],[82.68022,24.11259],[82.68353,24.11163],[82.68285,24.10948],[82.68706,24.10829],[82.69071,24.10366],[82.69217,24.10513],[82.69585,24.10004],[82.70754,24.09639],[82.70488,24.09487],[82.71182,24.08927],[82.70987,24.08505],[82.71029,24.08101],[82.71422,24.07971],[82.7139,24.07625],[82.71642,24.07772],[82.72856,24.07814],[82.73314,24.08045],[82.73897,24.07576],[82.74023,24.07723],[82.74475,24.07497],[82.74749,24.07103],[82.75001,24.07084],[82.75343,24.07731],[82.75968,24.07773],[82.76021,24.07258],[82.76305,24.06991],[82.76565,24.07083],[82.7676,24.07589],[82.77402,24.0763],[82.77054,24.05632],[82.76737,24.04856],[82.75558,24.0333],[82.74718,24.02727],[82.74917,24.02356],[82.7507,24.01198],[82.769,24.00568],[82.77564,24.00645],[82.78436,24.00464],[82.78879,24.00828],[82.79989,24.00341],[82.80418,24.00352],[82.80629,23.99776],[82.80458,23.99595],[82.80561,23.98992],[82.8085,23.98606],[82.80533,23.98288],[82.80538,23.98012],[82.80224,23.9793],[82.80783,23.96555],[82.81258,23.9599],[82.82672,23.9623],[82.83699,23.9568],[82.84112,23.95066],[82.84865,23.94535],[82.85335,23.94547],[82.85828,23.93926],[82.86111,23.93893],[82.86522,23.9264],[82.87725,23.91779],[82.88471,23.90884],[82.90516,23.89789],[82.9117,23.8975],[82.92722,23.89229],[82.93065,23.88946],[82.93662,23.87707],[82.94788,23.87142],[82.97458,23.87163],[82.98284,23.87416],[82.99722,23.87259],[83.00163,23.87364],[83.00125,23.87679],[83.01871,23.87947],[83.03531,23.87965],[83.05425,23.8793],[83.06213,23.87394],[83.07194,23.87388],[83.07505,23.87012],[83.09138,23.87155],[83.11577,23.88019],[83.14148,23.88492],[83.14759,23.88898],[83.14822,23.89329],[83.15384,23.89673],[83.15277,23.89947],[83.15422,23.90404],[83.15948,23.90738],[83.16367,23.90877],[83.17119,23.90777],[83.17467,23.9123],[83.17827,23.91216],[83.18129,23.9151],[83.18803,23.91452],[83.18976,23.91735],[83.19317,23.91693],[83.19464,23.91433],[83.19843,23.91406],[83.20792,23.92139],[83.20794,23.92424],[83.20382,23.92868],[83.20846,23.93057],[83.21193,23.93574],[83.21599,23.9379],[83.21552,23.94551],[83.22003,23.94885],[83.21994,23.95271],[83.22313,23.95815],[83.22282,23.9622],[83.21861,23.96898],[83.21967,23.97294],[83.22691,23.97788],[83.22333,23.98421],[83.22361,23.98665],[83.2305,23.98877],[83.23143,23.99398],[83.23366,23.99607],[83.24243,23.99718],[83.24114,24.0053],[83.24259,24.01159],[83.25188,24.01491],[83.25768,24.01311],[83.25976,24.00947],[83.26363,24.00924],[83.27275,24.01817],[83.27911,24.01827],[83.28345,24.03242],[83.284,24.03953],[83.28211,24.04973],[83.2874,24.05511],[83.29946,24.07893],[83.3056,24.07964],[83.30769,24.08205],[83.31475,24.09097],[83.32145,24.10602],[83.32935,24.10133],[83.33422,24.10411],[83.34491,24.11085],[83.35037,24.1215],[83.35406,24.12491],[83.35481,24.13559],[83.35876,24.14035],[83.36156,24.14884],[83.36198,24.15639],[83.37177,24.17429],[83.37502,24.1861],[83.38299,24.19792],[83.38139,24.20019],[83.38185,24.2046],[83.38036,24.20506],[83.38065,24.20776],[83.37862,24.21076],[83.37937,24.21325],[83.38301,24.21479],[83.38122,24.21709],[83.38462,24.22054],[83.38134,24.2259],[83.37857,24.22666],[83.37873,24.23036],[83.38115,24.23397],[83.38488,24.23605],[83.38524,24.23911],[83.39764,24.24384],[83.40032,24.25639],[83.40753,24.26213],[83.4091,24.26633],[83.40635,24.28596],[83.40717,24.28878],[83.40177,24.29227],[83.40149,24.29554],[83.39236,24.29599],[83.38623,24.29878],[83.38428,24.30659],[83.37998,24.31087],[83.38037,24.31378],[83.38576,24.31728],[83.38777,24.3162],[83.3921,24.32478],[83.41142,24.33986],[83.42097,24.33799],[83.43263,24.33823],[83.43404,24.34297],[83.43947,24.34625],[83.44517,24.35884],[83.45727,24.36455],[83.44854,24.3701],[83.44797,24.37373],[83.4495,24.37703],[83.44537,24.37823],[83.44227,24.38608],[83.4388,24.38773],[83.43976,24.38883],[83.43749,24.39209],[83.43352,24.39328],[83.43268,24.39617],[83.43604,24.39925],[83.43442,24.40075],[83.43002,24.39995],[83.41894,24.40621],[83.40507,24.40478],[83.40331,24.41982],[83.40489,24.436],[83.39412,24.43465],[83.38551,24.45127],[83.38542,24.45702],[83.39068,24.46517],[83.39093,24.47358],[83.39347,24.47539],[83.39353,24.47792],[83.3982,24.48542],[83.39536,24.48873],[83.39837,24.49295],[83.39609,24.49447],[83.39694,24.4969],[83.40315,24.50389],[83.42943,24.51093],[83.46894,24.51673],[83.4842,24.52211],[83.50329,24.52543],[83.49861,24.5318],[83.49712,24.5391],[83.52228,24.54766],[83.52275,24.55568],[83.52829,24.56158],[83.5301,24.56732],[83.52881,24.57458],[83.53022,24.58205],[83.528,24.58627],[83.52435,24.58894],[83.52266,24.59855],[83.52353,24.60313],[83.5273,24.60587],[83.53042,24.6124],[83.54192,24.61275],[83.54327,24.6173],[83.54796,24.62288],[83.5437,24.62828],[83.53153,24.62696],[83.52469,24.62782],[83.52476,24.62943],[83.52679,24.63001],[83.52981,24.64303],[83.52019,24.64106],[83.5099,24.6483],[83.50479,24.6469],[83.50288,24.6478],[83.50049,24.65125],[83.50399,24.6663],[83.50915,24.67119],[83.52038,24.6775],[83.51684,24.68112],[83.51776,24.68301],[83.5108,24.68578],[83.50701,24.69282],[83.49886,24.69486],[83.50054,24.69732],[83.49864,24.70333],[83.49529,24.70452],[83.48974,24.70045],[83.48513,24.70167],[83.48544,24.71535],[83.48833,24.72279],[83.48934,24.73633],[83.4709,24.73237],[83.46227,24.73309],[83.4581,24.73135],[83.45733,24.7338],[83.45319,24.735],[83.45083,24.73855],[83.44864,24.73833],[83.44156,24.75097],[83.44138,24.75645],[83.43744,24.75734],[83.43485,24.76079],[83.42784,24.7631],[83.42783,24.76829],[83.42197,24.7694],[83.41282,24.77502],[83.40794,24.77411],[83.39778,24.77811],[83.39627,24.78215],[83.39215,24.78164],[83.38602,24.77625],[83.37522,24.77315],[83.36486,24.77509],[83.36219,24.7742],[83.35828,24.77679],[83.35166,24.77774],[83.34379,24.77386],[83.33683,24.77294],[83.33803,24.77453],[83.32761,24.78491],[83.32578,24.78913],[83.32076,24.78912],[83.31866,24.77839],[83.32147,24.77323],[83.32629,24.77274],[83.32735,24.77117],[83.32962,24.77625],[83.33276,24.7718],[83.33045,24.7704],[83.33001,24.76682],[83.32546,24.76004],[83.31866,24.7585],[83.31855,24.7565],[83.31629,24.75516],[83.31645,24.74654],[83.31168,24.74668],[83.30892,24.73823],[83.30285,24.73722],[83.30263,24.73097],[83.30594,24.72729],[83.30305,24.71979],[83.28957,24.72078],[83.28746,24.72772],[83.2838,24.73074],[83.28233,24.73683],[83.2778,24.73402],[83.27645,24.73122],[83.27282,24.73173],[83.26957,24.73017],[83.26832,24.72711],[83.26187,24.72922],[83.26012,24.73472],[83.25759,24.73636],[83.25484,24.73036],[83.25641,24.72936],[83.25588,24.72747],[83.24654,24.72707],[83.24514,24.7275],[83.24561,24.73082],[83.23857,24.73267],[83.23749,24.73119],[83.23326,24.7354],[83.2308,24.73416],[83.22645,24.73501],[83.22136,24.7321],[83.22073,24.729],[83.21192,24.72989],[83.20699,24.72529],[83.20308,24.7255],[83.20073,24.72269],[83.1986,24.72276],[83.19833,24.721],[83.19573,24.72122],[83.19545,24.71647],[83.18628,24.7197],[83.18422,24.71752],[83.18055,24.71906],[83.18572,24.72312],[83.18366,24.72596],[83.18155,24.72629],[83.1777,24.72361],[83.17684,24.72234],[83.17813,24.72009],[83.17276,24.72667],[83.15973,24.72664],[83.15443,24.73097],[83.15237,24.73668],[83.14976,24.73732],[83.14584,24.7505],[83.14429,24.75223],[83.1371,24.75388],[83.13819,24.75773],[83.12554,24.76396],[83.10367,24.77008],[83.09711,24.77319],[83.09818,24.77932],[83.08627,24.78161],[83.09418,24.79549],[83.09267,24.79799],[83.09381,24.80126],[83.08899,24.80085],[83.09081,24.8019],[83.09129,24.80572],[83.09568,24.80918],[83.0958,24.81385],[83.09809,24.81775],[83.10062,24.81768],[83.10039,24.81954],[83.10353,24.82135],[83.10816,24.82006],[83.11591,24.82248],[83.12389,24.8217],[83.12883,24.8356],[83.12363,24.8368],[83.11679,24.83345],[83.11637,24.82857],[83.11412,24.8278],[83.11164,24.83092],[83.11049,24.82909],[83.10642,24.83009],[83.10545,24.83499],[83.10263,24.83659],[83.10409,24.83655],[83.10405,24.83889],[83.0922,24.84088],[83.08266,24.86142],[83.0825,24.86361],[83.08616,24.86938],[83.08486,24.87336],[83.07562,24.88196],[83.07771,24.89807],[83.08001,24.90186],[83.06984,24.92785],[83.06475,24.9333],[83.06127,24.95768],[83.05548,24.95842]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"185","area_level":"District","area_name":"Sultanpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.75984,26.54609],[81.75561,26.54723],[81.74841,26.54346],[81.73662,26.5465],[81.73096,26.54607],[81.72873,26.54183],[81.71887,26.53815],[81.71663,26.53515],[81.71623,26.53216],[81.72074,26.53282],[81.72017,26.5311],[81.72519,26.52693],[81.7251,26.53274],[81.7337,26.53559],[81.73633,26.53458],[81.73668,26.53016],[81.73416,26.52266],[81.73665,26.51991],[81.73337,26.51579],[81.73649,26.50993],[81.74017,26.50724],[81.74796,26.50733],[81.75506,26.51366],[81.76232,26.51006],[81.7599,26.50685],[81.76235,26.50363],[81.75364,26.50029],[81.74577,26.49413],[81.7448,26.49123],[81.76583,26.48684],[81.76353,26.48566],[81.76335,26.4772],[81.76124,26.47144],[81.76874,26.46404],[81.7758,26.46393],[81.78058,26.4695],[81.78903,26.46702],[81.78736,26.46151],[81.78971,26.45845],[81.78976,26.45567],[81.79318,26.4536],[81.7974,26.45562],[81.79921,26.45366],[81.80124,26.45453],[81.80415,26.4526],[81.80359,26.4506],[81.80504,26.44929],[81.80362,26.44643],[81.8051,26.44515],[81.80191,26.44071],[81.80447,26.4383],[81.8189,26.43316],[81.82167,26.42532],[81.83351,26.42381],[81.8461,26.42481],[81.84697,26.41863],[81.84019,26.40975],[81.84513,26.4075],[81.84742,26.39977],[81.85027,26.40051],[81.85248,26.40904],[81.86963,26.41089],[81.86909,26.40603],[81.8777,26.40012],[81.87887,26.39324],[81.88189,26.38837],[81.87743,26.38158],[81.87403,26.37972],[81.87131,26.38013],[81.86858,26.37657],[81.87177,26.36861],[81.86978,26.36663],[81.87139,26.36518],[81.87102,26.35969],[81.86812,26.36033],[81.86118,26.34845],[81.85713,26.34542],[81.85064,26.3456],[81.84802,26.34361],[81.84687,26.339],[81.84432,26.34064],[81.84057,26.33443],[81.83599,26.33653],[81.83201,26.33436],[81.82725,26.33803],[81.82083,26.34003],[81.81785,26.33736],[81.81075,26.33648],[81.8087,26.33189],[81.81666,26.32607],[81.81961,26.3267],[81.8239,26.32379],[81.83455,26.32268],[81.83676,26.32019],[81.83862,26.32075],[81.84055,26.3185],[81.84037,26.31315],[81.84716,26.297],[81.84651,26.29175],[81.8513,26.28912],[81.85206,26.2841],[81.85873,26.28227],[81.86861,26.28544],[81.87369,26.28397],[81.87566,26.28206],[81.87511,26.27336],[81.87863,26.27141],[81.8799,26.27241],[81.88136,26.26974],[81.88241,26.27044],[81.88322,26.26709],[81.88749,26.26548],[81.88814,26.26341],[81.8939,26.2646],[81.89597,26.26279],[81.89904,26.26287],[81.90229,26.25922],[81.90548,26.25985],[81.90455,26.25714],[81.90679,26.25507],[81.90972,26.25538],[81.90598,26.25338],[81.90595,26.2454],[81.90978,26.24122],[81.90764,26.23974],[81.91273,26.23809],[81.91389,26.2358],[81.91656,26.23572],[81.91785,26.23188],[81.92496,26.22777],[81.92352,26.22638],[81.9252,26.22367],[81.94138,26.22412],[81.94635,26.21415],[81.94976,26.21236],[81.95191,26.21269],[81.95421,26.21564],[81.95407,26.21859],[81.95801,26.21768],[81.96174,26.2209],[81.96557,26.22029],[81.96981,26.21641],[81.97303,26.20617],[81.97247,26.20309],[81.97502,26.198],[81.98784,26.18761],[81.98935,26.18473],[81.99812,26.18301],[82.00456,26.17867],[82.02024,26.17453],[82.02305,26.17281],[82.02445,26.16778],[82.02272,26.1584],[82.02707,26.15647],[82.03809,26.15632],[82.0429,26.15465],[82.04942,26.1496],[82.05286,26.13908],[82.05165,26.13651],[82.05442,26.1356],[82.05376,26.13248],[82.04949,26.13279],[82.05043,26.13117],[82.04378,26.12148],[82.04353,26.11803],[82.0474,26.11109],[82.0451,26.10718],[82.05488,26.09965],[82.06383,26.09742],[82.07048,26.09126],[82.06301,26.07894],[82.06333,26.07417],[82.05335,26.0711],[82.04879,26.06646],[82.04896,26.05759],[82.05472,26.05271],[82.06442,26.0534],[82.07123,26.06168],[82.0876,26.06652],[82.08944,26.0698],[82.09254,26.06961],[82.097,26.06575],[82.10123,26.06903],[82.09811,26.07725],[82.10789,26.07536],[82.11513,26.0711],[82.11315,26.06711],[82.12244,26.06433],[82.12289,26.05804],[82.12498,26.05676],[82.13313,26.0546],[82.13373,26.05753],[82.13981,26.05996],[82.14709,26.05846],[82.14877,26.05639],[82.15399,26.05754],[82.15961,26.05409],[82.15761,26.05085],[82.16202,26.05054],[82.16831,26.04676],[82.17008,26.04124],[82.17419,26.04255],[82.184,26.04004],[82.18324,26.03287],[82.18519,26.03062],[82.19731,26.02646],[82.19562,26.01834],[82.19948,26.0166],[82.20116,26.01683],[82.20379,26.02469],[82.20885,26.02318],[82.21892,26.02684],[82.22097,26.03015],[82.22391,26.03057],[82.2279,26.03597],[82.22731,26.03857],[82.24284,26.05651],[82.25341,26.05296],[82.26035,26.04565],[82.26168,26.0465],[82.26424,26.04508],[82.26973,26.04022],[82.27119,26.04041],[82.27591,26.04768],[82.28025,26.04735],[82.28195,26.04424],[82.28532,26.04342],[82.30259,26.04495],[82.31115,26.04216],[82.31138,26.04094],[82.30915,26.04077],[82.31074,26.0397],[82.31898,26.03918],[82.31539,26.03219],[82.31598,26.03056],[82.3229,26.03107],[82.32576,26.0291],[82.32823,26.02967],[82.32725,26.02589],[82.32858,26.02364],[82.33766,26.01935],[82.34653,26.01757],[82.33982,26.01175],[82.33905,26.00766],[82.34054,26.00533],[82.3455,26.00352],[82.34971,26.00951],[82.35882,26.00503],[82.35835,26.00904],[82.36773,26.02487],[82.37429,26.0304],[82.37855,26.03078],[82.37937,26.03268],[82.3802,26.03101],[82.39114,26.02935],[82.39803,26.02448],[82.39309,26.01698],[82.3978,26.01135],[82.41179,26.01426],[82.43922,26.00485],[82.46648,26.00253],[82.4763,25.99966],[82.48487,25.98538],[82.48685,25.97444],[82.49106,25.9739],[82.49897,25.97571],[82.4987,25.9785],[82.50206,25.98183],[82.50484,25.98052],[82.50688,25.98138],[82.50987,25.98517],[82.50202,25.98998],[82.50589,25.99489],[82.50556,25.99646],[82.51085,25.99633],[82.51377,26.0005],[82.51748,26.00005],[82.52027,26.00408],[82.51799,26.00688],[82.51899,26.01109],[82.51276,26.01465],[82.51123,26.01294],[82.50226,26.0165],[82.50681,26.02411],[82.51226,26.0257],[82.5174,26.03004],[82.51208,26.02997],[82.50487,26.03616],[82.50398,26.04206],[82.5012,26.04231],[82.499,26.03993],[82.4901,26.04413],[82.48137,26.04564],[82.47821,26.04528],[82.48039,26.04432],[82.47792,26.04373],[82.47599,26.03932],[82.47045,26.03926],[82.45767,26.04477],[82.46182,26.04836],[82.46045,26.05002],[82.46277,26.05427],[82.46016,26.05698],[82.46294,26.0632],[82.47072,26.06044],[82.47623,26.06977],[82.47512,26.07535],[82.4734,26.07645],[82.46913,26.07686],[82.46537,26.07346],[82.45451,26.08293],[82.44878,26.08399],[82.44936,26.08545],[82.4463,26.08812],[82.44714,26.0917],[82.44516,26.09291],[82.44398,26.09691],[82.4352,26.09802],[82.43517,26.10481],[82.43804,26.10901],[82.44175,26.10964],[82.44361,26.11214],[82.44084,26.11404],[82.44539,26.12174],[82.44168,26.12433],[82.44362,26.13243],[82.44722,26.13235],[82.45108,26.13517],[82.45393,26.13388],[82.45511,26.13561],[82.46051,26.13456],[82.46297,26.13183],[82.47737,26.12942],[82.47975,26.13383],[82.48037,26.14007],[82.48664,26.145],[82.4914,26.1419],[82.49672,26.1341],[82.50136,26.13341],[82.50824,26.14059],[82.51479,26.13706],[82.51532,26.14083],[82.51802,26.14261],[82.52351,26.14221],[82.53064,26.14637],[82.53844,26.14361],[82.53938,26.13846],[82.54149,26.13741],[82.5488,26.13522],[82.55217,26.13637],[82.55724,26.13549],[82.56054,26.13035],[82.56399,26.1323],[82.56697,26.13112],[82.57116,26.1385],[82.57044,26.14146],[82.56393,26.14046],[82.56037,26.14333],[82.55996,26.14585],[82.56183,26.14829],[82.56612,26.14952],[82.57332,26.149],[82.57355,26.1527],[82.57091,26.15624],[82.57134,26.16129],[82.56935,26.16346],[82.57514,26.16699],[82.57892,26.16549],[82.58068,26.16765],[82.58043,26.17017],[82.58201,26.17023],[82.57881,26.17848],[82.57716,26.17862],[82.57936,26.18631],[82.58069,26.18517],[82.58227,26.18641],[82.58619,26.17888],[82.59726,26.18118],[82.59507,26.19521],[82.59242,26.1993],[82.59602,26.20114],[82.59894,26.20067],[82.60078,26.19837],[82.60541,26.19815],[82.61098,26.19424],[82.61424,26.18955],[82.61606,26.18297],[82.61883,26.18373],[82.62242,26.18097],[82.62112,26.1741],[82.62299,26.17105],[82.63197,26.17066],[82.63596,26.17413],[82.64068,26.17221],[82.64371,26.1767],[82.64888,26.17422],[82.64727,26.16938],[82.6428,26.16552],[82.63909,26.16456],[82.63673,26.16168],[82.6377,26.16091],[82.64119,26.15954],[82.64973,26.15986],[82.65273,26.1664],[82.66515,26.16371],[82.66879,26.16016],[82.6686,26.1579],[82.67082,26.1552],[82.67868,26.1515],[82.68627,26.15385],[82.68869,26.15674],[82.6924,26.15634],[82.69257,26.15888],[82.68289,26.16319],[82.68508,26.1725],[82.68399,26.17648],[82.68591,26.17859],[82.68395,26.1792],[82.68467,26.18491],[82.68285,26.18977],[82.68395,26.20057],[82.68901,26.20872],[82.68442,26.21514],[82.68445,26.22101],[82.67427,26.22229],[82.67135,26.2287],[82.67508,26.23625],[82.68286,26.24143],[82.67694,26.24825],[82.67845,26.25705],[82.67525,26.25646],[82.671,26.25278],[82.66505,26.25227],[82.66509,26.26052],[82.66295,26.26187],[82.66311,26.2603],[82.65926,26.26045],[82.65497,26.25585],[82.65255,26.24708],[82.64898,26.24232],[82.64538,26.24374],[82.64511,26.24889],[82.63985,26.2526],[82.63354,26.24229],[82.62993,26.2435],[82.62794,26.24727],[82.62363,26.24627],[82.62074,26.25275],[82.61798,26.25439],[82.6095,26.25336],[82.60716,26.25908],[82.60774,26.2619],[82.6035,26.26225],[82.60539,26.26442],[82.59983,26.26334],[82.60161,26.26085],[82.60004,26.25859],[82.5967,26.26039],[82.59021,26.25525],[82.58576,26.25698],[82.58523,26.25555],[82.57895,26.25687],[82.57496,26.26054],[82.57792,26.26465],[82.57794,26.26787],[82.57391,26.26947],[82.56896,26.26689],[82.56635,26.27319],[82.56405,26.27219],[82.56441,26.27379],[82.56243,26.2751],[82.55861,26.27451],[82.55548,26.27943],[82.55615,26.28332],[82.54956,26.28839],[82.54696,26.28557],[82.54495,26.28625],[82.54498,26.28434],[82.54156,26.28235],[82.54271,26.28135],[82.53951,26.27993],[82.53594,26.28084],[82.53291,26.28558],[82.52891,26.28296],[82.52668,26.28368],[82.52629,26.28225],[82.52485,26.28213],[82.52562,26.28426],[82.52185,26.28295],[82.52168,26.2872],[82.51068,26.29343],[82.50902,26.29066],[82.50776,26.29263],[82.5059,26.29076],[82.50099,26.29059],[82.50005,26.28801],[82.49456,26.28609],[82.49466,26.28439],[82.49343,26.2849],[82.49137,26.28223],[82.48918,26.28241],[82.48609,26.27999],[82.48217,26.28461],[82.48002,26.28384],[82.47814,26.28561],[82.47839,26.28167],[82.47488,26.27801],[82.47593,26.27671],[82.47168,26.27736],[82.46825,26.28325],[82.45474,26.28169],[82.44902,26.28704],[82.44591,26.28788],[82.45043,26.28861],[82.45174,26.29217],[82.45191,26.29507],[82.44961,26.29947],[82.44769,26.29993],[82.44803,26.30176],[82.44336,26.3007],[82.43895,26.30395],[82.43758,26.30287],[82.43819,26.30682],[82.4358,26.30772],[82.43164,26.30646],[82.43399,26.2993],[82.43074,26.29926],[82.41935,26.28905],[82.41316,26.28936],[82.40757,26.29222],[82.40592,26.2894],[82.40244,26.2902],[82.40351,26.2968],[82.39838,26.30078],[82.4048,26.30087],[82.4078,26.30724],[82.41121,26.31043],[82.41222,26.31454],[82.41737,26.31936],[82.40682,26.32437],[82.40263,26.32384],[82.40098,26.32591],[82.39917,26.33399],[82.40113,26.34027],[82.39976,26.34689],[82.40086,26.35194],[82.39925,26.35452],[82.40036,26.35632],[82.39867,26.35912],[82.39439,26.35839],[82.38893,26.36543],[82.38219,26.36497],[82.3841,26.36803],[82.3833,26.3742],[82.38443,26.37539],[82.38075,26.37637],[82.3778,26.37966],[82.37577,26.37898],[82.37301,26.38134],[82.36683,26.38244],[82.36477,26.38167],[82.36299,26.38359],[82.3597,26.38157],[82.35621,26.38336],[82.33949,26.38143],[82.32655,26.38606],[82.3154,26.37931],[82.3134,26.38122],[82.31612,26.38295],[82.3146,26.38513],[82.31786,26.38725],[82.31848,26.39295],[82.31636,26.39336],[82.31513,26.39598],[82.31209,26.3944],[82.31039,26.39533],[82.30996,26.39758],[82.30542,26.39911],[82.30543,26.40144],[82.30284,26.40124],[82.30325,26.40351],[82.30132,26.40562],[82.29933,26.40352],[82.29702,26.40396],[82.29794,26.40078],[82.28443,26.39641],[82.28472,26.3913],[82.28136,26.39228],[82.28023,26.39016],[82.27791,26.39114],[82.27588,26.39712],[82.27309,26.40012],[82.2685,26.40034],[82.26584,26.40387],[82.25663,26.40278],[82.25211,26.39163],[82.24813,26.3932],[82.24753,26.39182],[82.24116,26.3959],[82.242,26.39855],[82.24,26.39966],[82.23773,26.39792],[82.22683,26.40088],[82.22166,26.4058],[82.22001,26.40996],[82.21582,26.4077],[82.20266,26.40988],[82.19727,26.40742],[82.18589,26.40982],[82.18329,26.41072],[82.18649,26.42167],[82.1831,26.42064],[82.17955,26.42223],[82.17728,26.42006],[82.17086,26.42374],[82.16868,26.43111],[82.16581,26.43047],[82.15687,26.43442],[82.15129,26.43412],[82.14621,26.4361],[82.14853,26.43878],[82.1478,26.44156],[82.15156,26.44325],[82.15354,26.44719],[82.14412,26.45168],[82.1406,26.44641],[82.13693,26.44489],[82.1258,26.44989],[82.12479,26.45247],[82.12611,26.45652],[82.13179,26.45647],[82.13481,26.4621],[82.13324,26.46263],[82.13271,26.4674],[82.12563,26.4708],[82.12062,26.45851],[82.11758,26.46053],[82.11147,26.46046],[82.1085,26.4712],[82.0984,26.47795],[82.08466,26.47696],[82.07986,26.47296],[82.07381,26.47533],[82.07135,26.47389],[82.06729,26.47751],[82.06234,26.47866],[82.05466,26.47406],[82.04996,26.46812],[82.04592,26.46779],[82.04371,26.47058],[82.03812,26.47325],[82.0376,26.47691],[82.04139,26.48425],[82.03825,26.48657],[82.03472,26.48815],[82.03113,26.48253],[82.02474,26.4858],[82.02581,26.49149],[82.01935,26.49382],[82.01806,26.49613],[82.01591,26.49326],[82.01552,26.48682],[82.00944,26.47905],[82.00776,26.47941],[82.00475,26.48136],[82.00776,26.48668],[82.00797,26.4928],[82.00368,26.49079],[81.99848,26.49633],[81.99544,26.49515],[81.98925,26.49734],[81.98029,26.50375],[81.9826,26.50638],[81.98116,26.51033],[81.97336,26.51466],[81.96073,26.5106],[81.94827,26.51215],[81.93979,26.5072],[81.93301,26.51215],[81.92772,26.51226],[81.92653,26.51667],[81.91708,26.51968],[81.91248,26.50806],[81.90123,26.51138],[81.89638,26.508],[81.88873,26.52274],[81.89106,26.52515],[81.89578,26.52351],[81.89872,26.5291],[81.87588,26.53835],[81.87142,26.53345],[81.86921,26.53429],[81.86686,26.53258],[81.86515,26.53447],[81.86307,26.53345],[81.85865,26.52275],[81.84758,26.52401],[81.84841,26.52014],[81.84648,26.51216],[81.8318,26.51867],[81.83399,26.52123],[81.83312,26.52181],[81.8304,26.52087],[81.82291,26.5241],[81.81907,26.53284],[81.80982,26.54016],[81.80783,26.53751],[81.80505,26.53793],[81.80522,26.53348],[81.80071,26.53295],[81.80183,26.53118],[81.80021,26.53131],[81.7979,26.52847],[81.79578,26.53255],[81.78753,26.53749],[81.78284,26.54389],[81.77285,26.54173],[81.76916,26.54374],[81.76464,26.54337],[81.76211,26.54698],[81.75984,26.54609]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"186","area_level":"District","area_name":"Unnao","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.26909,27.02683],[80.25854,27.03136],[80.25174,27.02823],[80.25628,27.02055],[80.25395,27.01802],[80.24836,27.01659],[80.24166,27.00905],[80.24214,27.00189],[80.23379,26.98172],[80.2342,26.97946],[80.23082,26.97616],[80.23094,26.97325],[80.22523,26.9724],[80.22077,26.96644],[80.20678,26.97166],[80.20302,26.96736],[80.1921,26.96186],[80.18623,26.96],[80.18282,26.96384],[80.17858,26.95732],[80.17494,26.95861],[80.17348,26.96213],[80.17648,26.96253],[80.17393,26.96423],[80.17566,26.96757],[80.17498,26.9708],[80.18437,26.97819],[80.18374,26.98289],[80.1818,26.98501],[80.1865,26.99522],[80.1859,26.99805],[80.17576,26.99778],[80.16567,26.98718],[80.15904,26.98614],[80.15854,26.98333],[80.15425,26.98294],[80.15634,26.98003],[80.15301,26.97836],[80.15129,26.98148],[80.1485,26.97831],[80.14517,26.98063],[80.14736,26.98227],[80.1479,26.98638],[80.14373,26.98895],[80.13975,26.98587],[80.13579,26.98976],[80.13341,26.98332],[80.12686,26.98297],[80.11908,26.9896],[80.12466,26.98988],[80.12429,26.99466],[80.12046,26.99675],[80.11369,26.99601],[80.10163,26.97795],[80.10122,26.97432],[80.10785,26.96983],[80.1073,26.96122],[80.09895,26.96021],[80.08702,26.96183],[80.08165,26.95281],[80.08286,26.95214],[80.07337,26.94582],[80.06878,26.94597],[80.06576,26.94191],[80.05308,26.93427],[80.04399,26.92484],[80.05192,26.91905],[80.06081,26.90775],[80.07622,26.89496],[80.0976,26.8832],[80.11421,26.87824],[80.12344,26.87109],[80.124,26.86727],[80.12588,26.86558],[80.13146,26.86512],[80.13531,26.86052],[80.14067,26.86062],[80.1423,26.8593],[80.14098,26.85014],[80.14296,26.83639],[80.13154,26.82945],[80.12578,26.82786],[80.12358,26.82513],[80.12456,26.80591],[80.11689,26.77663],[80.12527,26.76344],[80.12994,26.74902],[80.13574,26.73827],[80.14797,26.72702],[80.15744,26.72261],[80.16148,26.72238],[80.16406,26.71476],[80.17051,26.7128],[80.17428,26.71493],[80.1794,26.70985],[80.18366,26.70845],[80.19082,26.70957],[80.19379,26.70753],[80.19327,26.70374],[80.19517,26.70063],[80.21005,26.69777],[80.22491,26.68891],[80.24263,26.6857],[80.24602,26.68787],[80.25452,26.6676],[80.26686,26.65641],[80.26997,26.65156],[80.27305,26.64271],[80.27389,26.62523],[80.28313,26.59369],[80.28767,26.58483],[80.30037,26.57333],[80.30461,26.54847],[80.30879,26.54164],[80.31183,26.53822],[80.33369,26.52464],[80.34749,26.52643],[80.35118,26.52223],[80.36718,26.51353],[80.37488,26.50758],[80.37601,26.50119],[80.37994,26.49353],[80.38007,26.48931],[80.36947,26.47351],[80.38947,26.45034],[80.40915,26.43464],[80.42207,26.4219],[80.44875,26.40812],[80.45389,26.40782],[80.46225,26.40367],[80.46552,26.40517],[80.46855,26.39957],[80.47327,26.39867],[80.47801,26.3946],[80.47996,26.38781],[80.48313,26.38524],[80.48396,26.38244],[80.49123,26.37851],[80.50355,26.36335],[80.5067,26.36091],[80.51387,26.36142],[80.51687,26.35836],[80.52745,26.34062],[80.53275,26.32772],[80.53873,26.32478],[80.53695,26.3188],[80.54578,26.31701],[80.54762,26.3026],[80.55148,26.29698],[80.55118,26.29155],[80.55891,26.28169],[80.56354,26.27888],[80.56922,26.26764],[80.57111,26.2501],[80.57588,26.2425],[80.59659,26.22769],[80.59791,26.22456],[80.6055,26.21884],[80.60851,26.20879],[80.60619,26.20086],[80.60464,26.20033],[80.59772,26.18586],[80.59161,26.17708],[80.60368,26.17356],[80.61136,26.16354],[80.60693,26.1604],[80.61477,26.15055],[80.62101,26.14521],[80.63327,26.14925],[80.63868,26.14935],[80.64619,26.14532],[80.65456,26.14613],[80.65515,26.14358],[80.64707,26.13132],[80.65465,26.12663],[80.66437,26.10927],[80.67019,26.10355],[80.67356,26.12347],[80.68839,26.11583],[80.69704,26.11557],[80.69895,26.12138],[80.69303,26.13103],[80.69438,26.13311],[80.6848,26.14435],[80.68957,26.14663],[80.69372,26.15302],[80.69351,26.16129],[80.69898,26.16237],[80.70425,26.1593],[80.71259,26.16642],[80.71627,26.16562],[80.72235,26.17206],[80.72574,26.17138],[80.73185,26.17743],[80.73724,26.17314],[80.74587,26.18361],[80.74865,26.18358],[80.75369,26.18742],[80.75683,26.18815],[80.76319,26.1833],[80.76588,26.18449],[80.76898,26.18255],[80.77301,26.18753],[80.77173,26.1915],[80.7767,26.1946],[80.77316,26.19752],[80.76987,26.19701],[80.76898,26.20248],[80.76297,26.20257],[80.76921,26.21321],[80.77394,26.20864],[80.77822,26.20662],[80.78192,26.20818],[80.78441,26.2053],[80.78806,26.20844],[80.79454,26.20631],[80.80257,26.21185],[80.80366,26.21027],[80.80927,26.20986],[80.81224,26.20759],[80.81205,26.20343],[80.81406,26.20404],[80.81681,26.20284],[80.81702,26.20126],[80.8189,26.20145],[80.82583,26.21067],[80.81829,26.21376],[80.82345,26.22109],[80.8238,26.22808],[80.83031,26.23542],[80.83436,26.23563],[80.83661,26.23757],[80.84126,26.23416],[80.84648,26.2372],[80.84331,26.24094],[80.84588,26.24603],[80.84795,26.24573],[80.85097,26.24928],[80.85318,26.24931],[80.85531,26.2587],[80.85683,26.25863],[80.85799,26.26238],[80.86357,26.26837],[80.88138,26.28123],[80.88063,26.28398],[80.88604,26.29409],[80.8802,26.29576],[80.88228,26.2984],[80.87701,26.29966],[80.88016,26.30443],[80.87325,26.30848],[80.87141,26.30734],[80.8686,26.30825],[80.87013,26.31564],[80.86722,26.32315],[80.86304,26.32408],[80.85711,26.32985],[80.8458,26.32885],[80.8373,26.33894],[80.827,26.34128],[80.82849,26.35254],[80.83317,26.35296],[80.83475,26.35768],[80.83829,26.35859],[80.8386,26.36646],[80.84301,26.37123],[80.84983,26.37187],[80.85965,26.36642],[80.86404,26.36972],[80.86471,26.36672],[80.86732,26.36557],[80.86391,26.35913],[80.86595,26.3569],[80.87439,26.35656],[80.88242,26.36052],[80.89027,26.35857],[80.89294,26.35549],[80.89136,26.34431],[80.89907,26.34926],[80.89865,26.35284],[80.9032,26.35203],[80.9041,26.3535],[80.91244,26.35286],[80.91572,26.35413],[80.91666,26.35163],[80.91955,26.35217],[80.92001,26.34938],[80.92224,26.34767],[80.92122,26.34327],[80.92552,26.34193],[80.92617,26.3475],[80.92807,26.34677],[80.92927,26.34915],[80.93449,26.35067],[80.93591,26.35943],[80.94706,26.3504],[80.94809,26.3477],[80.94832,26.34295],[80.94673,26.33956],[80.94925,26.33243],[80.94138,26.32249],[80.94209,26.31954],[80.94916,26.31326],[80.94779,26.31],[80.9522,26.30835],[80.95856,26.30939],[80.96832,26.30685],[80.97155,26.31039],[80.98106,26.30997],[80.98651,26.31407],[80.99136,26.31471],[80.99596,26.31112],[80.99825,26.31306],[80.99829,26.32474],[81.0011,26.33213],[80.99704,26.33616],[80.99842,26.34055],[80.99648,26.34254],[80.99843,26.34589],[80.9984,26.35097],[81.00211,26.35153],[81.00693,26.35618],[81.01574,26.35828],[81.02006,26.36347],[81.02927,26.36163],[81.03458,26.36252],[81.03677,26.36841],[81.03984,26.37081],[81.04529,26.37205],[81.04988,26.37601],[81.0452,26.37902],[81.04376,26.37758],[81.03618,26.37747],[81.03507,26.37874],[81.03633,26.3817],[81.03477,26.38309],[81.03195,26.38243],[81.03119,26.3801],[81.02908,26.38074],[81.02931,26.3832],[81.03251,26.38664],[81.03188,26.39659],[81.03062,26.3975],[81.02892,26.39585],[81.0268,26.40195],[81.024,26.40239],[81.02388,26.4084],[81.02092,26.41058],[81.02832,26.40889],[81.03038,26.41445],[81.02417,26.41307],[81.02454,26.41776],[81.01963,26.42379],[81.01602,26.41951],[81.01417,26.42367],[81.00991,26.42385],[81.00904,26.42883],[81.01285,26.43431],[81.00026,26.44211],[80.99843,26.44743],[80.99441,26.45024],[80.99535,26.4544],[80.99125,26.46034],[80.99124,26.4667],[80.98575,26.46861],[80.98456,26.47172],[80.98202,26.47304],[80.98502,26.47881],[80.98831,26.47907],[80.9848,26.48387],[80.98564,26.48528],[80.99085,26.48563],[80.9884,26.48199],[80.99316,26.47848],[80.99287,26.47566],[80.99047,26.47339],[80.99106,26.47188],[80.99623,26.47343],[80.9984,26.47635],[80.99829,26.4815],[81.00169,26.49316],[80.99828,26.49412],[80.99643,26.49863],[80.99325,26.49907],[80.98973,26.50206],[80.99255,26.50767],[80.99487,26.50895],[80.99992,26.50694],[81.00241,26.50404],[81.00744,26.50342],[81.00776,26.51008],[80.99728,26.5127],[80.99537,26.51162],[80.99425,26.5135],[81.00427,26.51712],[81.00219,26.52174],[81.00502,26.52765],[81.00212,26.52906],[81.00175,26.53294],[80.99663,26.53379],[80.99463,26.53748],[80.99051,26.5352],[80.98532,26.53906],[80.98461,26.5418],[80.98696,26.54378],[80.98748,26.54745],[80.98485,26.54827],[80.97935,26.5449],[80.9816,26.5502],[80.97927,26.5528],[80.97259,26.55344],[80.96979,26.55244],[80.96899,26.54969],[80.96704,26.55009],[80.96576,26.55325],[80.97221,26.55456],[80.97279,26.55754],[80.96867,26.5577],[80.96586,26.5559],[80.96481,26.56048],[80.96075,26.56268],[80.95674,26.56082],[80.95403,26.56281],[80.95215,26.56205],[80.95138,26.56353],[80.95324,26.56685],[80.95145,26.56921],[80.948,26.56664],[80.94221,26.56605],[80.93414,26.56875],[80.93538,26.57059],[80.93991,26.56938],[80.94121,26.5718],[80.93051,26.57479],[80.93002,26.57942],[80.92617,26.58462],[80.9316,26.5861],[80.92947,26.58901],[80.92542,26.5879],[80.92432,26.59412],[80.92294,26.59359],[80.92288,26.59112],[80.91211,26.59049],[80.91002,26.58847],[80.9084,26.59031],[80.91184,26.59132],[80.90859,26.59213],[80.91041,26.59367],[80.90697,26.59744],[80.90819,26.60066],[80.90207,26.59363],[80.89963,26.59406],[80.89761,26.59668],[80.89323,26.59631],[80.89031,26.59968],[80.88857,26.59915],[80.88994,26.60227],[80.88872,26.60393],[80.89133,26.61],[80.88791,26.61304],[80.89143,26.61651],[80.89202,26.62172],[80.88811,26.62284],[80.88383,26.62131],[80.88144,26.62454],[80.8791,26.62212],[80.87913,26.61861],[80.8745,26.61643],[80.86982,26.62121],[80.87018,26.62385],[80.87253,26.62546],[80.87754,26.62565],[80.88002,26.63073],[80.87559,26.63375],[80.87106,26.64295],[80.86531,26.64693],[80.85823,26.64729],[80.85181,26.65101],[80.8485,26.65099],[80.84473,26.66128],[80.84156,26.66548],[80.83372,26.66549],[80.83018,26.66272],[80.82497,26.66461],[80.82359,26.66159],[80.81711,26.65711],[80.81591,26.65391],[80.81315,26.65732],[80.80544,26.65478],[80.80253,26.65249],[80.80337,26.65106],[80.79647,26.64528],[80.79336,26.6452],[80.79424,26.65204],[80.78697,26.65292],[80.78777,26.65509],[80.79201,26.65629],[80.78647,26.65934],[80.78609,26.66243],[80.78319,26.66336],[80.78468,26.66603],[80.77712,26.66901],[80.7752,26.66641],[80.77239,26.66609],[80.77119,26.66311],[80.76667,26.66598],[80.76714,26.66824],[80.76473,26.67016],[80.76767,26.67205],[80.76969,26.67614],[80.76961,26.6823],[80.76568,26.68342],[80.76553,26.68021],[80.76764,26.67787],[80.76568,26.67704],[80.76335,26.68151],[80.75974,26.68307],[80.76191,26.68399],[80.76076,26.68638],[80.75846,26.68213],[80.75712,26.68216],[80.75534,26.68571],[80.75605,26.68843],[80.74933,26.685],[80.74444,26.67938],[80.74323,26.67609],[80.74607,26.67223],[80.74606,26.66677],[80.73764,26.66464],[80.72852,26.65578],[80.71435,26.66682],[80.7136,26.68127],[80.70577,26.68351],[80.70367,26.68208],[80.69561,26.68604],[80.69787,26.69066],[80.70031,26.69004],[80.70066,26.69292],[80.70896,26.69422],[80.70828,26.6958],[80.71114,26.69523],[80.7128,26.69697],[80.71246,26.6992],[80.71668,26.69931],[80.71876,26.70153],[80.71312,26.70307],[80.71334,26.70431],[80.71599,26.70408],[80.71385,26.71151],[80.7045,26.71773],[80.70041,26.71664],[80.69757,26.71936],[80.70063,26.72213],[80.70259,26.71989],[80.70645,26.72028],[80.70053,26.72732],[80.70216,26.73008],[80.70136,26.7337],[80.70474,26.73768],[80.70495,26.74022],[80.70091,26.74189],[80.70266,26.74932],[80.6999,26.75244],[80.69801,26.74941],[80.69651,26.74962],[80.69644,26.75178],[80.69119,26.7576],[80.6924,26.7608],[80.69869,26.76497],[80.71163,26.75798],[80.73359,26.75616],[80.73817,26.76195],[80.73984,26.76144],[80.73685,26.76263],[80.73629,26.76571],[80.73867,26.77057],[80.73552,26.77278],[80.73629,26.78089],[80.74023,26.79034],[80.7344,26.79429],[80.72508,26.79666],[80.72613,26.79931],[80.7212,26.80067],[80.72161,26.80389],[80.7182,26.80576],[80.71767,26.80983],[80.71898,26.81136],[80.71505,26.81576],[80.71676,26.81729],[80.71467,26.82016],[80.71106,26.82164],[80.7073,26.82758],[80.70478,26.82716],[80.70359,26.83065],[80.69964,26.83152],[80.69258,26.83653],[80.69071,26.84034],[80.69148,26.84211],[80.68981,26.84274],[80.69454,26.85015],[80.68456,26.85546],[80.67823,26.8632],[80.67709,26.86229],[80.66851,26.86406],[80.65926,26.87025],[80.65531,26.87059],[80.64338,26.87795],[80.6356,26.88033],[80.627,26.87857],[80.62632,26.88897],[80.63198,26.89191],[80.63525,26.89828],[80.64065,26.90335],[80.63435,26.90687],[80.62659,26.90737],[80.62089,26.90956],[80.62242,26.91377],[80.61765,26.91709],[80.61181,26.93492],[80.60899,26.93745],[80.60948,26.94259],[80.60794,26.94416],[80.60534,26.94579],[80.60283,26.94403],[80.60046,26.9449],[80.59514,26.94335],[80.59263,26.94496],[80.58889,26.93849],[80.58749,26.93849],[80.58671,26.93355],[80.58047,26.92495],[80.56354,26.93442],[80.56127,26.93705],[80.56571,26.94406],[80.56647,26.94897],[80.56885,26.94945],[80.57064,26.95367],[80.57936,26.96084],[80.58321,26.9599],[80.58765,26.9626],[80.58626,26.95993],[80.5887,26.95711],[80.59415,26.9544],[80.59543,26.95542],[80.5949,26.95959],[80.59877,26.96411],[80.59304,26.96904],[80.59585,26.97182],[80.59515,26.97378],[80.59715,26.97716],[80.59514,26.97873],[80.60032,26.98336],[80.59868,26.98433],[80.59956,26.98661],[80.59079,26.99148],[80.58739,26.98704],[80.5852,26.9873],[80.58693,26.99048],[80.58236,26.99251],[80.57866,26.99911],[80.56049,27.01048],[80.55025,27.01371],[80.54803,27.00404],[80.5455,27.00032],[80.53458,27.00736],[80.52628,26.99965],[80.51933,27.00073],[80.51494,26.99813],[80.50669,26.99116],[80.50495,26.98582],[80.496,26.98645],[80.49144,26.98995],[80.48009,26.98657],[80.47667,26.97892],[80.47012,26.97934],[80.46565,26.97561],[80.46058,26.9779],[80.45753,26.97693],[80.45371,26.97435],[80.45076,26.96966],[80.44625,26.96736],[80.44371,26.96293],[80.44556,26.95928],[80.44844,26.95867],[80.45038,26.95601],[80.44688,26.94942],[80.42779,26.9432],[80.42519,26.91931],[80.43177,26.91574],[80.41681,26.8905],[80.41567,26.89149],[80.41317,26.88976],[80.41145,26.89277],[80.41324,26.89451],[80.40855,26.89588],[80.40838,26.90193],[80.40287,26.90682],[80.39823,26.90711],[80.39973,26.91172],[80.39491,26.91603],[80.39565,26.91949],[80.39807,26.92048],[80.39384,26.92872],[80.38886,26.92887],[80.38857,26.93059],[80.39054,26.93044],[80.39012,26.93215],[80.38762,26.93297],[80.38286,26.92941],[80.38009,26.93047],[80.3768,26.92752],[80.36818,26.9289],[80.36466,26.92716],[80.36548,26.92244],[80.3638,26.92101],[80.35975,26.92492],[80.35445,26.93476],[80.33952,26.95027],[80.34189,26.95301],[80.33976,26.9532],[80.33841,26.95668],[80.3388,26.95809],[80.34077,26.95778],[80.33928,26.9585],[80.34149,26.96195],[80.33968,26.96251],[80.34158,26.96468],[80.34006,26.96603],[80.343,26.9671],[80.33515,26.97303],[80.33454,26.97909],[80.32933,26.98625],[80.3312,26.99141],[80.31815,26.98855],[80.31495,26.99199],[80.29801,26.99609],[80.29598,27.00127],[80.29963,27.00145],[80.30188,27.00397],[80.30141,27.00556],[80.30474,27.00593],[80.30665,27.01251],[80.30941,27.01171],[80.31014,27.01668],[80.30639,27.02285],[80.30729,27.02601],[80.30558,27.02637],[80.30511,27.02448],[80.30091,27.02593],[80.30084,27.02421],[80.29121,27.02238],[80.28675,27.0249],[80.28448,27.02944],[80.26909,27.02683]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"187","area_level":"District","area_name":"Varanasi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.03696,25.55796],[83.03253,25.56237],[83.02959,25.57159],[83.0273,25.57408],[83.02172,25.57745],[83.01807,25.57699],[83.00977,25.56708],[83.00962,25.55975],[83.00172,25.55614],[83.00134,25.55372],[83.00551,25.55559],[83.01009,25.55402],[83.00995,25.54889],[83.00654,25.54802],[82.99955,25.54997],[82.99941,25.55361],[82.99002,25.55654],[82.97753,25.55664],[82.97579,25.54544],[82.97217,25.54479],[82.96714,25.54027],[82.96305,25.52849],[82.95531,25.52555],[82.95177,25.52677],[82.95072,25.52914],[82.94503,25.5297],[82.94185,25.53224],[82.93987,25.54394],[82.9433,25.54694],[82.94041,25.55393],[82.93582,25.55608],[82.93291,25.5673],[82.92385,25.56979],[82.92248,25.57222],[82.91957,25.56957],[82.9129,25.56831],[82.89583,25.57181],[82.895,25.56926],[82.89036,25.56989],[82.88524,25.56902],[82.88313,25.56679],[82.87459,25.56686],[82.87296,25.57492],[82.86688,25.58024],[82.85955,25.57747],[82.85515,25.56299],[82.8512,25.56221],[82.84155,25.56821],[82.83631,25.56821],[82.83883,25.55866],[82.83761,25.55474],[82.83392,25.55287],[82.82976,25.55321],[82.82732,25.54933],[82.80941,25.5528],[82.80876,25.55017],[82.79741,25.55125],[82.79299,25.55328],[82.79439,25.54476],[82.79191,25.5424],[82.78527,25.54333],[82.7844,25.53531],[82.77897,25.5293],[82.77183,25.52977],[82.76256,25.53728],[82.76009,25.54223],[82.75291,25.54266],[82.74151,25.54707],[82.73749,25.54762],[82.72423,25.54153],[82.7209,25.53421],[82.71516,25.53076],[82.7161,25.52888],[82.72303,25.52538],[82.72371,25.52142],[82.72602,25.51924],[82.72458,25.51671],[82.72541,25.50278],[82.72167,25.50329],[82.72031,25.50054],[82.71593,25.50083],[82.70967,25.48388],[82.71372,25.47948],[82.736,25.47037],[82.73847,25.46666],[82.73326,25.45956],[82.72586,25.46004],[82.72098,25.46249],[82.71848,25.45891],[82.71255,25.46116],[82.70623,25.45769],[82.7065,25.45147],[82.70437,25.44947],[82.70282,25.44995],[82.7034,25.44763],[82.70695,25.44642],[82.70856,25.44803],[82.71005,25.4432],[82.71784,25.44176],[82.72045,25.43168],[82.7165,25.43254],[82.70394,25.43035],[82.70405,25.43203],[82.70248,25.43223],[82.70112,25.42984],[82.69688,25.43111],[82.68976,25.42858],[82.68364,25.42134],[82.68492,25.41912],[82.68284,25.41732],[82.68556,25.41092],[82.68413,25.40714],[82.6909,25.398],[82.69543,25.39596],[82.69308,25.394],[82.69671,25.39345],[82.70503,25.38778],[82.70987,25.38881],[82.70921,25.38343],[82.7106,25.38338],[82.7093,25.38246],[82.70792,25.37312],[82.70545,25.37186],[82.70513,25.36895],[82.70737,25.36419],[82.70625,25.3593],[82.7031,25.36003],[82.70147,25.36603],[82.69416,25.36282],[82.69341,25.35843],[82.69158,25.35701],[82.68664,25.35749],[82.68284,25.35573],[82.68248,25.3494],[82.68601,25.34606],[82.68566,25.33642],[82.68751,25.33151],[82.70065,25.32894],[82.7015,25.32464],[82.70394,25.32319],[82.69966,25.3116],[82.69709,25.30985],[82.69394,25.31104],[82.69346,25.30988],[82.68804,25.29195],[82.69042,25.28796],[82.69039,25.28134],[82.68813,25.2809],[82.68845,25.27837],[82.68672,25.27727],[82.67245,25.27998],[82.67403,25.2789],[82.67032,25.26398],[82.67263,25.26277],[82.6726,25.25848],[82.66661,25.25345],[82.67085,25.24687],[82.67763,25.24999],[82.68161,25.25794],[82.68887,25.25687],[82.69291,25.26172],[82.70771,25.26005],[82.71113,25.26165],[82.71286,25.26134],[82.71403,25.25054],[82.72001,25.25299],[82.73502,25.25333],[82.74088,25.24952],[82.74808,25.23848],[82.7537,25.23956],[82.75611,25.24187],[82.7596,25.25339],[82.75836,25.25792],[82.76011,25.26598],[82.76193,25.26722],[82.77353,25.26614],[82.77597,25.2705],[82.78032,25.26883],[82.78113,25.26469],[82.77835,25.26147],[82.77075,25.26264],[82.77094,25.25605],[82.77259,25.25603],[82.77237,25.2531],[82.77669,25.25264],[82.78163,25.24949],[82.78127,25.24549],[82.7764,25.24242],[82.77565,25.23403],[82.77981,25.23305],[82.78055,25.22887],[82.79201,25.22818],[82.79081,25.23324],[82.78511,25.23573],[82.78835,25.23852],[82.78473,25.24005],[82.7844,25.249],[82.7984,25.24997],[82.80059,25.25505],[82.80406,25.25509],[82.80427,25.25666],[82.80811,25.25759],[82.8195,25.25578],[82.8206,25.25396],[82.816,25.24906],[82.81588,25.24546],[82.8103,25.24556],[82.81098,25.23937],[82.80881,25.2348],[82.81463,25.2337],[82.81685,25.22834],[82.81279,25.22534],[82.80827,25.22522],[82.80582,25.22217],[82.80699,25.22102],[82.8041,25.2192],[82.8069,25.21999],[82.81026,25.21301],[82.81404,25.21184],[82.8139,25.20815],[82.81637,25.20717],[82.81566,25.20451],[82.81133,25.20539],[82.81136,25.2065],[82.80965,25.20434],[82.80065,25.20697],[82.79844,25.20632],[82.79089,25.20954],[82.78987,25.20733],[82.78377,25.20738],[82.78266,25.20316],[82.78712,25.20285],[82.78745,25.19503],[82.79082,25.19229],[82.80267,25.18905],[82.79365,25.17786],[82.80341,25.1699],[82.80658,25.17216],[82.80823,25.18901],[82.82145,25.18301],[82.82341,25.18481],[82.82541,25.18333],[82.82377,25.17968],[82.83555,25.1729],[82.8338,25.16929],[82.84593,25.16435],[82.85008,25.16513],[82.85518,25.16936],[82.86088,25.16894],[82.86672,25.18559],[82.86942,25.18797],[82.87192,25.18739],[82.87363,25.19008],[82.86742,25.19354],[82.87128,25.20094],[82.87685,25.20227],[82.87858,25.20043],[82.88396,25.19954],[82.88349,25.20113],[82.88863,25.21008],[82.89653,25.20877],[82.90033,25.21524],[82.90328,25.21442],[82.90556,25.21139],[82.90172,25.2021],[82.90239,25.19938],[82.90666,25.19566],[82.90742,25.19937],[82.91041,25.20085],[82.94136,25.20781],[83.00488,25.20471],[83.01813,25.21614],[83.02743,25.2296],[83.02986,25.23661],[83.03085,25.24907],[83.06516,25.24511],[83.06736,25.24753],[83.0668,25.24893],[83.05972,25.25302],[83.04059,25.2691],[83.0353,25.28015],[83.0337,25.28992],[83.03134,25.2869],[83.02212,25.29129],[83.0225,25.29357],[83.00912,25.29583],[83.01086,25.30469],[83.02065,25.31488],[83.02878,25.31984],[83.05815,25.33009],[83.06972,25.32833],[83.09899,25.33088],[83.11264,25.32839],[83.1336,25.32087],[83.13869,25.3203],[83.14134,25.32187],[83.15654,25.33292],[83.17089,25.35169],[83.18263,25.38638],[83.1821,25.39947],[83.18713,25.41002],[83.18818,25.41626],[83.18369,25.42061],[83.17026,25.42432],[83.15723,25.4317],[83.15321,25.43214],[83.14898,25.43013],[83.14162,25.43309],[83.12977,25.44061],[83.12513,25.44698],[83.1273,25.45541],[83.13692,25.47004],[83.14608,25.47823],[83.16504,25.48982],[83.17077,25.50043],[83.17733,25.51898],[83.17802,25.52172],[83.17427,25.52355],[83.17713,25.52739],[83.17389,25.52989],[83.17251,25.52334],[83.16589,25.52413],[83.15363,25.51942],[83.15355,25.51744],[83.15579,25.51574],[83.16432,25.51306],[83.16651,25.51032],[83.16601,25.50703],[83.14368,25.50603],[83.1305,25.50767],[83.10855,25.52723],[83.10255,25.52739],[83.09821,25.52488],[83.09669,25.52191],[83.09856,25.51409],[83.10662,25.50785],[83.1157,25.50669],[83.11744,25.50425],[83.11674,25.50044],[83.11349,25.4961],[83.10896,25.49412],[83.10555,25.49748],[83.10341,25.50522],[83.09869,25.50429],[83.09462,25.50575],[83.09447,25.50323],[83.08925,25.50263],[83.08975,25.50043],[83.08423,25.49613],[83.07762,25.5154],[83.06415,25.52868],[83.06593,25.53429],[83.07464,25.53539],[83.07751,25.53871],[83.07572,25.5436],[83.06792,25.55443],[83.06369,25.55749],[83.06012,25.55703],[83.05242,25.54443],[83.04304,25.5406],[83.03997,25.54326],[83.03925,25.55335],[83.03696,25.55796]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"188","area_level":"District","area_name":"Araria","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[87.09158,25.97209],[87.09219,25.97211],[87.09256,25.9723],[87.09261,25.97399],[87.09239,25.97543],[87.09194,25.97672],[87.09126,25.9777],[87.09079,25.97793],[87.09007,25.97807],[87.0891,25.97817],[87.0887,25.97788],[87.0886,25.97768],[87.08862,25.97603],[87.08884,25.97558],[87.09,25.97496],[87.09012,25.97439],[87.08995,25.97314],[87.09013,25.97268],[87.0901,25.97207],[87.09026,25.97195],[87.09158,25.97209]]],[[[87.08788,25.9799],[87.08795,25.9803],[87.08768,25.98094],[87.087,25.982],[87.08083,25.98195],[87.08059,25.97784],[87.08295,25.9768],[87.08403,25.97674],[87.08557,25.97939],[87.08615,25.97983],[87.08686,25.97987],[87.08717,25.9796],[87.08763,25.97961],[87.08788,25.9799]]],[[[87.08694,25.98531],[87.08678,25.98674],[87.08145,25.98737],[87.08119,25.98641],[87.08102,25.98503],[87.08382,25.98465],[87.08678,25.98441],[87.08694,25.98531]]],[[[87.07349,25.98712],[87.07517,25.98789],[87.07662,25.98913],[87.07748,25.99005],[87.078,25.99082],[87.07761,25.9911],[87.0753,25.99149],[87.07342,25.99167],[87.07309,25.99097],[87.0729,25.99027],[87.07271,25.98852],[87.07208,25.98737],[87.07216,25.98699],[87.07247,25.98669],[87.07349,25.98712]]],[[[87.0709,26.58585],[87.04467,26.58723],[87.04255,26.56833],[87.03815,26.56282],[87.04152,26.56124],[87.04482,26.56272],[87.05164,26.56115],[87.05371,26.55283],[87.0672,26.55445],[87.0674,26.53696],[87.06083,26.53619],[87.05817,26.52406],[87.06182,26.52281],[87.06125,26.51143],[87.05157,26.50892],[87.05098,26.50671],[87.05298,26.49472],[87.06258,26.49153],[87.0645,26.4874],[87.06392,26.48382],[87.05477,26.48472],[87.05341,26.48146],[87.05042,26.48046],[87.05394,26.47947],[87.06004,26.47354],[87.05934,26.46956],[87.06233,26.46646],[87.069,26.46564],[87.0694,26.46302],[87.07267,26.46222],[87.07074,26.457],[87.0684,26.45595],[87.06929,26.44862],[87.07343,26.44115],[87.07317,26.43864],[87.06305,26.43873],[87.06271,26.435],[87.05998,26.43239],[87.0625,26.42679],[87.06976,26.42694],[87.06952,26.4242],[87.07242,26.42407],[87.07337,26.41384],[87.08098,26.40425],[87.07811,26.40214],[87.0777,26.39947],[87.06876,26.39964],[87.06682,26.40211],[87.06731,26.40563],[87.06463,26.40586],[87.06496,26.40841],[87.06122,26.408],[87.06055,26.40634],[87.06251,26.39587],[87.06933,26.39494],[87.07101,26.38712],[87.07675,26.38419],[87.07986,26.37236],[87.07543,26.36939],[87.07682,26.36525],[87.06608,26.36071],[87.0672,26.35436],[87.07152,26.35376],[87.07039,26.35237],[87.07272,26.34981],[87.07571,26.33517],[87.07343,26.33472],[87.07148,26.33076],[87.06989,26.33331],[87.06484,26.33434],[87.05556,26.33325],[87.05369,26.33164],[87.05146,26.33324],[87.05075,26.32194],[87.0479,26.31738],[87.04441,26.31781],[87.04237,26.31546],[87.05184,26.31118],[87.05285,26.29603],[87.07441,26.29191],[87.07415,26.28952],[87.06941,26.28597],[87.07064,26.28361],[87.07021,26.27264],[87.06814,26.27137],[87.06589,26.26487],[87.06996,26.26173],[87.06779,26.25409],[87.07134,26.23918],[87.07521,26.23945],[87.07545,26.23443],[87.08026,26.23403],[87.08536,26.2269],[87.07945,26.22146],[87.08021,26.2168],[87.09024,26.21366],[87.0933,26.2094],[87.09613,26.20898],[87.10002,26.20215],[87.09706,26.2012],[87.09972,26.19673],[87.09263,26.19499],[87.09062,26.19119],[87.09204,26.18747],[87.08786,26.18551],[87.08694,26.18152],[87.08885,26.17983],[87.10306,26.18397],[87.11533,26.18422],[87.11763,26.17845],[87.11754,26.17541],[87.11028,26.16646],[87.10828,26.16056],[87.10328,26.15652],[87.1082,26.15054],[87.10939,26.14059],[87.10852,26.13263],[87.10307,26.12988],[87.09199,26.1311],[87.09157,26.12101],[87.09265,26.11898],[87.09494,26.11867],[87.09472,26.11553],[87.08663,26.11454],[87.07833,26.11007],[87.07607,26.105],[87.0714,26.10203],[87.07886,26.09962],[87.08142,26.0978],[87.08134,26.0948],[87.08735,26.09299],[87.11285,26.08807],[87.11429,26.08954],[87.11973,26.0899],[87.11939,26.07624],[87.11714,26.07612],[87.11663,26.07303],[87.10774,26.06744],[87.09838,26.06498],[87.09389,26.05915],[87.10509,26.0583],[87.10601,26.04895],[87.10831,26.04581],[87.12191,26.04391],[87.12664,26.03932],[87.12641,26.03736],[87.12343,26.03687],[87.12265,26.03438],[87.11981,26.03359],[87.12041,26.03194],[87.12325,26.03171],[87.12232,26.02832],[87.11283,26.03005],[87.11028,26.03265],[87.10319,26.03451],[87.10152,26.03254],[87.09671,26.032],[87.09687,26.02769],[87.09455,26.02563],[87.09464,26.01692],[87.097,26.01491],[87.09718,26.01228],[87.09267,26.00953],[87.09286,26.00587],[87.08684,25.99265],[87.1027,25.9865],[87.10281,25.98157],[87.09782,25.97078],[87.09146,25.96803],[87.08129,25.96879],[87.07813,25.9668],[87.0783,25.96154],[87.08262,25.96141],[87.08288,25.96335],[87.08786,25.96534],[87.11084,25.96534],[87.11421,25.96417],[87.11426,25.95787],[87.11512,25.95923],[87.11958,25.95687],[87.12125,25.95867],[87.12308,25.95523],[87.12915,25.95335],[87.1271,25.94958],[87.13,25.95331],[87.13721,25.95515],[87.13954,25.95348],[87.13978,25.95052],[87.14032,25.95251],[87.14211,25.95163],[87.14229,25.94837],[87.1439,25.94828],[87.14421,25.95006],[87.15527,25.94945],[87.15861,25.94681],[87.16389,25.94588],[87.16459,25.9427],[87.17959,25.94343],[87.18217,25.94631],[87.18896,25.94575],[87.18809,25.94992],[87.19853,25.94986],[87.20206,25.95615],[87.20789,25.95713],[87.20825,25.95882],[87.21066,25.95766],[87.21916,25.95861],[87.22334,25.95394],[87.22453,25.94497],[87.2316,25.94466],[87.23209,25.9523],[87.23549,25.95683],[87.23513,25.96204],[87.24261,25.96226],[87.24207,25.96488],[87.25073,25.96634],[87.25547,25.9691],[87.25925,25.97394],[87.26512,25.97614],[87.26448,25.97807],[87.26656,25.97938],[87.26765,25.98461],[87.27419,25.9854],[87.2776,25.98299],[87.278,25.98587],[87.28212,25.98174],[87.28217,25.97918],[87.28472,25.97615],[87.28484,25.9739],[87.28235,25.97285],[87.2823,25.97081],[87.28675,25.96762],[87.28693,25.96517],[87.28352,25.96449],[87.28392,25.96339],[87.28923,25.95848],[87.29241,25.96138],[87.29576,25.96123],[87.30091,25.96602],[87.3064,25.96719],[87.30894,25.97368],[87.30894,25.97975],[87.31766,25.97771],[87.32156,25.98009],[87.33472,25.98109],[87.33697,25.97989],[87.33928,25.98113],[87.34305,25.9783],[87.34916,25.97806],[87.34983,25.98208],[87.35408,25.98167],[87.35914,25.97583],[87.36223,25.97683],[87.3683,25.97508],[87.36911,25.9722],[87.372,25.97128],[87.37156,25.96948],[87.37752,25.9698],[87.37807,25.97175],[87.38105,25.96822],[87.38122,25.96443],[87.38423,25.96396],[87.38677,25.95759],[87.39307,25.95476],[87.3933,25.95606],[87.39058,25.9567],[87.38787,25.96114],[87.38804,25.96396],[87.39695,25.96329],[87.3981,25.96135],[87.39995,25.96266],[87.40221,25.97432],[87.40471,25.97458],[87.40492,25.97839],[87.40752,25.9801],[87.40749,25.98436],[87.40347,25.98449],[87.40306,25.98697],[87.40419,25.9884],[87.41031,25.9878],[87.4152,25.99185],[87.42134,25.98911],[87.42556,25.9896],[87.42636,25.99209],[87.42728,25.99033],[87.43274,25.98845],[87.44379,25.98674],[87.44373,25.98392],[87.4557,25.98444],[87.45975,25.987],[87.46235,25.98631],[87.46258,25.98893],[87.47032,25.98927],[87.47024,25.98746],[87.47642,25.98479],[87.47894,25.98048],[87.48661,25.97759],[87.48952,25.97916],[87.49233,25.97855],[87.49222,25.98041],[87.49083,25.98044],[87.49144,25.98219],[87.49413,25.9813],[87.49587,25.98584],[87.49957,25.98793],[87.5092,25.989],[87.50685,25.98644],[87.50994,25.98578],[87.51155,25.97941],[87.51038,25.97848],[87.51312,25.97968],[87.51661,25.97623],[87.51549,25.9753],[87.5172,25.97341],[87.52101,25.97623],[87.52086,25.9796],[87.53151,25.98137],[87.53136,25.98464],[87.53395,25.9842],[87.53867,25.97894],[87.54155,25.98261],[87.57943,25.98965],[87.58245,25.99805],[87.59168,26.00325],[87.5988,26.00373],[87.60869,26.00719],[87.6104,26.01148],[87.62003,26.01174],[87.6211,26.0129],[87.62302,26.01139],[87.62538,26.01486],[87.62908,26.01364],[87.63034,26.01631],[87.63424,26.01677],[87.63389,26.01954],[87.6315,26.02113],[87.63365,26.02258],[87.63555,26.03384],[87.63147,26.03963],[87.62546,26.04179],[87.62511,26.04651],[87.62308,26.04734],[87.62319,26.04891],[87.63283,26.05786],[87.63503,26.05737],[87.63415,26.06458],[87.63736,26.06399],[87.63934,26.06633],[87.64412,26.06549],[87.64381,26.06769],[87.64126,26.06766],[87.6388,26.07121],[87.63527,26.07128],[87.63766,26.0752],[87.64219,26.07668],[87.64447,26.0749],[87.64699,26.07643],[87.65103,26.07411],[87.65122,26.07698],[87.65282,26.07523],[87.65605,26.07649],[87.65416,26.07895],[87.65489,26.07998],[87.66106,26.08066],[87.66249,26.0796],[87.65932,26.07631],[87.66235,26.07803],[87.66517,26.0755],[87.67051,26.07524],[87.67056,26.0716],[87.67384,26.07182],[87.67576,26.07484],[87.67851,26.07486],[87.67904,26.08709],[87.68439,26.08854],[87.68732,26.08716],[87.68893,26.09194],[87.68616,26.09817],[87.68049,26.10011],[87.68725,26.10268],[87.6851,26.10313],[87.68515,26.10572],[87.68898,26.10905],[87.68724,26.11056],[87.69242,26.11731],[87.69219,26.11909],[87.68621,26.11733],[87.68923,26.11968],[87.69213,26.12582],[87.68718,26.12854],[87.68722,26.13224],[87.68765,26.13422],[87.6927,26.13478],[87.69333,26.13792],[87.69181,26.14168],[87.69456,26.1429],[87.69506,26.14918],[87.69065,26.14948],[87.69142,26.1526],[87.68713,26.1576],[87.69192,26.16007],[87.7026,26.15903],[87.70619,26.16225],[87.70111,26.16695],[87.6909,26.17006],[87.68765,26.17808],[87.68916,26.18281],[87.69301,26.18616],[87.7018,26.18711],[87.70389,26.1901],[87.7041,26.19387],[87.70038,26.19541],[87.69753,26.19336],[87.69651,26.19434],[87.69643,26.19746],[87.69963,26.20017],[87.69671,26.20147],[87.69934,26.20479],[87.69567,26.2049],[87.69862,26.20841],[87.6917,26.21179],[87.69299,26.21676],[87.68599,26.22218],[87.68848,26.22641],[87.68683,26.22603],[87.67903,26.23343],[87.67342,26.23367],[87.67531,26.23948],[87.67781,26.23984],[87.67658,26.24625],[87.67242,26.24871],[87.67249,26.25146],[87.67017,26.25443],[87.66436,26.25467],[87.66623,26.25691],[87.67028,26.25666],[87.67204,26.26038],[87.67516,26.26036],[87.67332,26.2641],[87.67485,26.2654],[87.67086,26.26712],[87.66527,26.26709],[87.67092,26.26841],[87.66276,26.26738],[87.6631,26.27044],[87.66081,26.26749],[87.66125,26.26962],[87.65951,26.27131],[87.66067,26.27199],[87.66069,26.27918],[87.65781,26.28016],[87.6607,26.28118],[87.66165,26.28421],[87.66361,26.28356],[87.66742,26.28696],[87.66521,26.289],[87.66495,26.29623],[87.6661,26.29727],[87.66201,26.29972],[87.661,26.30344],[87.65663,26.30307],[87.65354,26.30616],[87.64613,26.30542],[87.64404,26.31101],[87.64195,26.31234],[87.6418,26.31085],[87.63925,26.31085],[87.63523,26.31749],[87.62907,26.31695],[87.62751,26.31893],[87.62619,26.31827],[87.62862,26.3233],[87.62391,26.32395],[87.62222,26.3271],[87.62449,26.33141],[87.61897,26.33222],[87.6173,26.33674],[87.61298,26.34067],[87.61233,26.34564],[87.61103,26.34628],[87.61127,26.34859],[87.61539,26.34904],[87.61545,26.34716],[87.61997,26.34779],[87.61785,26.34701],[87.6198,26.34456],[87.62055,26.34609],[87.62513,26.34496],[87.6272,26.35047],[87.62712,26.35629],[87.62973,26.35905],[87.63743,26.36009],[87.63749,26.36322],[87.64065,26.36444],[87.64193,26.36899],[87.63838,26.37537],[87.6364,26.37513],[87.63714,26.37904],[87.64353,26.37997],[87.6487,26.37677],[87.65265,26.3765],[87.65468,26.37904],[87.65828,26.37912],[87.65654,26.3808],[87.65712,26.3839],[87.65218,26.38483],[87.6515,26.39343],[87.6326,26.39369],[87.61735,26.38996],[87.61234,26.381],[87.59241,26.38165],[87.59299,26.39221],[87.57871,26.39582],[87.5671,26.40123],[87.56503,26.40003],[87.55301,26.40566],[87.5477,26.41837],[87.53439,26.42162],[87.51654,26.43079],[87.46655,26.44021],[87.44348,26.43313],[87.42786,26.42237],[87.41907,26.42268],[87.38855,26.4191],[87.37619,26.40702],[87.36889,26.40794],[87.35639,26.38793],[87.35352,26.37202],[87.35841,26.36105],[87.34109,26.34752],[87.33701,26.3516],[87.32211,26.36006],[87.31358,26.36764],[87.31253,26.37157],[87.30159,26.36612],[87.28955,26.37372],[87.27264,26.37254],[87.26602,26.37388],[87.26441,26.38768],[87.26589,26.39054],[87.26626,26.40565],[87.25618,26.41107],[87.24987,26.40951],[87.24794,26.41384],[87.22882,26.41359],[87.22622,26.41074],[87.22656,26.40899],[87.22397,26.40871],[87.22389,26.40582],[87.21913,26.40284],[87.21713,26.40656],[87.21109,26.40919],[87.21242,26.41305],[87.18579,26.41421],[87.1892,26.40534],[87.17299,26.40334],[87.16256,26.4039],[87.13931,26.41479],[87.09165,26.45029],[87.0805,26.5214],[87.07612,26.53741],[87.07282,26.54196],[87.07318,26.57732],[87.0709,26.58585]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"189","area_level":"District","area_name":"Aurangabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.47118,25.08961],[84.4638,25.09657],[84.46345,25.09901],[84.45792,25.10168],[84.46144,25.10711],[84.4713,25.11535],[84.4452,25.129],[84.43529,25.11279],[84.42578,25.08597],[84.41997,25.07646],[84.39645,25.06042],[84.36829,25.04717],[84.36473,25.04329],[84.36129,25.04381],[84.34776,25.03889],[84.33621,25.03243],[84.31591,25.01997],[84.30567,25.0115],[84.26964,24.96727],[84.25725,24.94923],[84.2068,24.89434],[84.18854,24.87037],[84.16402,24.84617],[84.13914,24.82587],[84.12361,24.80651],[84.10214,24.79],[84.08268,24.7682],[84.04525,24.7157],[84.03192,24.69405],[84.00779,24.64289],[84.02078,24.63835],[84.02731,24.63349],[84.02333,24.63142],[84.02439,24.6286],[84.03344,24.63003],[84.03437,24.62287],[84.03308,24.62038],[84.03719,24.62061],[84.03922,24.61768],[84.04257,24.6186],[84.04532,24.61422],[84.0447,24.61116],[84.04893,24.6117],[84.05202,24.60992],[84.05088,24.60801],[84.04871,24.609],[84.0469,24.60418],[84.04893,24.60404],[84.05032,24.60005],[84.05721,24.59248],[84.05095,24.58664],[84.05419,24.58491],[84.06176,24.58646],[84.06491,24.58103],[84.06061,24.57365],[84.06366,24.57339],[84.06359,24.57078],[84.06831,24.5706],[84.06885,24.56728],[84.07287,24.56721],[84.07332,24.56293],[84.07562,24.56139],[84.07249,24.55909],[84.07273,24.55472],[84.07504,24.55311],[84.07763,24.54633],[84.07807,24.54042],[84.08564,24.53764],[84.08528,24.53454],[84.08923,24.5358],[84.09322,24.53365],[84.08883,24.5297],[84.08716,24.52124],[84.08857,24.51776],[84.08634,24.51705],[84.08462,24.51356],[84.08784,24.51274],[84.08554,24.5055],[84.09197,24.50431],[84.0922,24.50262],[84.08905,24.50182],[84.08991,24.49777],[84.0919,24.49774],[84.09441,24.49322],[84.09828,24.49267],[84.09984,24.48559],[84.10826,24.47748],[84.11104,24.47671],[84.11722,24.48046],[84.12474,24.48074],[84.12514,24.49191],[84.12726,24.49509],[84.13011,24.49751],[84.13715,24.49797],[84.14053,24.50053],[84.1343,24.52432],[84.14428,24.53825],[84.15374,24.53582],[84.15958,24.53229],[84.16349,24.5334],[84.16421,24.52818],[84.15232,24.51587],[84.15368,24.51157],[84.1692,24.50339],[84.17785,24.50488],[84.18408,24.51383],[84.18484,24.52131],[84.1815,24.52082],[84.17396,24.53789],[84.17318,24.5447],[84.18432,24.54479],[84.18794,24.5488],[84.18723,24.55293],[84.19993,24.554],[84.1993,24.54694],[84.20198,24.54358],[84.2095,24.54101],[84.2095,24.53418],[84.21506,24.53272],[84.21869,24.53385],[84.22088,24.54609],[84.23333,24.54986],[84.2364,24.54932],[84.23627,24.53892],[84.24235,24.54145],[84.24459,24.53674],[84.24963,24.53471],[84.25096,24.53236],[84.25045,24.52795],[84.25679,24.52688],[84.25902,24.53434],[84.26386,24.53444],[84.26483,24.53813],[84.26812,24.5383],[84.26929,24.54319],[84.27738,24.54378],[84.27986,24.54787],[84.27372,24.55042],[84.27384,24.55403],[84.27088,24.55411],[84.27053,24.56001],[84.28155,24.55887],[84.28947,24.56282],[84.29684,24.56058],[84.29974,24.5464],[84.31137,24.53447],[84.313,24.53018],[84.31241,24.52346],[84.32247,24.5167],[84.32222,24.50809],[84.32741,24.50053],[84.32642,24.49398],[84.32745,24.48734],[84.34318,24.49428],[84.34621,24.49431],[84.34765,24.49895],[84.37149,24.50917],[84.37553,24.51542],[84.37236,24.52327],[84.37345,24.52494],[84.37075,24.52876],[84.3766,24.52788],[84.38626,24.52977],[84.3862,24.53232],[84.38435,24.53325],[84.38471,24.54036],[84.38215,24.54277],[84.39077,24.54441],[84.38984,24.54732],[84.39293,24.55019],[84.39145,24.55123],[84.39482,24.55495],[84.39104,24.56213],[84.39265,24.56457],[84.39176,24.56797],[84.39854,24.56743],[84.40325,24.57287],[84.40662,24.57249],[84.40864,24.57043],[84.40807,24.56758],[84.40581,24.56698],[84.40734,24.56312],[84.41379,24.56084],[84.41956,24.55659],[84.42137,24.552],[84.42855,24.56405],[84.42885,24.57142],[84.43758,24.57217],[84.43957,24.5665],[84.44442,24.56157],[84.44499,24.54321],[84.44779,24.53543],[84.45308,24.53194],[84.45632,24.53438],[84.46764,24.53655],[84.47612,24.52594],[84.48285,24.52021],[84.48341,24.51444],[84.48496,24.51347],[84.48985,24.5126],[84.5011,24.51806],[84.51025,24.52006],[84.51889,24.5255],[84.52402,24.52488],[84.53061,24.52683],[84.53921,24.5255],[84.54712,24.52701],[84.54782,24.53012],[84.55102,24.53313],[84.55537,24.53321],[84.56287,24.54085],[84.56954,24.54425],[84.57031,24.54669],[84.56898,24.54917],[84.57174,24.5517],[84.56912,24.55507],[84.57572,24.55997],[84.58126,24.5618],[84.57741,24.5672],[84.56776,24.56611],[84.56411,24.56811],[84.56547,24.57103],[84.56977,24.57575],[84.57242,24.57596],[84.57558,24.58122],[84.58906,24.58779],[84.58903,24.59067],[84.59209,24.59542],[84.5969,24.59642],[84.59311,24.60407],[84.59727,24.60676],[84.59263,24.61488],[84.60607,24.62502],[84.59901,24.6242],[84.59887,24.63857],[84.60272,24.65578],[84.6098,24.65319],[84.61164,24.6586],[84.62447,24.6518],[84.63478,24.65012],[84.63817,24.6538],[84.63883,24.66503],[84.64538,24.6634],[84.64285,24.66717],[84.64584,24.67281],[84.64551,24.67891],[84.65059,24.6742],[84.65757,24.67912],[84.66417,24.67906],[84.66257,24.6826],[84.68106,24.68008],[84.68795,24.67683],[84.69635,24.68001],[84.69996,24.67865],[84.69689,24.68664],[84.70288,24.69874],[84.70685,24.69692],[84.71358,24.6993],[84.72263,24.69913],[84.72908,24.73566],[84.72795,24.73844],[84.72898,24.74405],[84.72642,24.74617],[84.7273,24.75312],[84.71837,24.75523],[84.71825,24.76268],[84.71653,24.76344],[84.71692,24.76571],[84.72047,24.76645],[84.73471,24.7653],[84.73552,24.77397],[84.7313,24.77539],[84.73135,24.78043],[84.72471,24.78199],[84.72474,24.78836],[84.73562,24.78833],[84.7352,24.79467],[84.70462,24.7993],[84.70344,24.80057],[84.70481,24.81052],[84.69841,24.81561],[84.6999,24.82507],[84.69545,24.82657],[84.6955,24.83203],[84.6885,24.833],[84.68777,24.83006],[84.67511,24.83163],[84.67614,24.84024],[84.67466,24.84038],[84.67471,24.84323],[84.6726,24.8434],[84.67349,24.84839],[84.66515,24.84915],[84.66429,24.85139],[84.65128,24.85512],[84.65099,24.8601],[84.64639,24.86404],[84.64253,24.86495],[84.64323,24.87375],[84.6401,24.87417],[84.64112,24.87845],[84.64836,24.87971],[84.66337,24.87712],[84.66437,24.87091],[84.66885,24.87078],[84.67126,24.87289],[84.67194,24.87582],[84.67052,24.87642],[84.67215,24.8812],[84.66064,24.88394],[84.66337,24.88564],[84.66363,24.88818],[84.66833,24.88927],[84.6704,24.892],[84.67532,24.8899],[84.68022,24.8903],[84.68229,24.89179],[84.6814,24.89828],[84.68284,24.90134],[84.68769,24.89918],[84.68937,24.90268],[84.7042,24.90047],[84.70626,24.9076],[84.70874,24.90838],[84.70892,24.91602],[84.71781,24.91711],[84.71664,24.92378],[84.71884,24.92607],[84.72028,24.93303],[84.71754,24.93408],[84.71679,24.93757],[84.71379,24.93838],[84.71579,24.94821],[84.71069,24.95119],[84.711,24.95416],[84.71361,24.95446],[84.71401,24.95588],[84.72383,24.9548],[84.72443,24.95627],[84.73724,24.95665],[84.73996,24.96258],[84.73968,24.96542],[84.73674,24.96547],[84.73053,24.96938],[84.73001,24.97774],[84.73107,24.9823],[84.73319,24.98213],[84.73496,24.98506],[84.74065,24.98394],[84.7424,24.9853],[84.74603,24.98482],[84.74734,24.98988],[84.74463,24.99391],[84.74672,24.99707],[84.74695,25.0042],[84.73203,25.00618],[84.73136,25.00342],[84.73004,25.00346],[84.72078,25.00464],[84.71762,25.00642],[84.71666,25.01787],[84.70867,25.023],[84.70862,25.02469],[84.70385,25.02521],[84.70356,25.02898],[84.69943,25.03165],[84.69977,25.03627],[84.69826,25.03757],[84.69881,25.04199],[84.71682,25.04187],[84.73045,25.03996],[84.72921,25.04382],[84.73228,25.04418],[84.73608,25.06904],[84.72844,25.07035],[84.72891,25.07499],[84.72346,25.07616],[84.72352,25.07917],[84.71878,25.08009],[84.71771,25.07791],[84.71033,25.07949],[84.71417,25.08492],[84.69979,25.08961],[84.68434,25.10028],[84.68187,25.10094],[84.67536,25.09305],[84.65254,25.10438],[84.64926,25.09912],[84.6417,25.09382],[84.63898,25.08868],[84.6271,25.07949],[84.62586,25.08345],[84.62794,25.09398],[84.62513,25.09425],[84.62623,25.10262],[84.62006,25.10411],[84.6123,25.10328],[84.61146,25.10155],[84.61325,25.09352],[84.60359,25.09505],[84.60261,25.08895],[84.60005,25.08762],[84.5998,25.07962],[84.59622,25.07762],[84.58902,25.07753],[84.5888,25.07417],[84.58227,25.07324],[84.58303,25.08309],[84.5903,25.08446],[84.59398,25.10273],[84.58544,25.10239],[84.56806,25.10534],[84.57054,25.11541],[84.56477,25.11697],[84.56367,25.11488],[84.55643,25.11534],[84.55329,25.11052],[84.5499,25.11182],[84.54689,25.11083],[84.54014,25.10461],[84.52683,25.10523],[84.52108,25.10735],[84.50806,25.10751],[84.50675,25.10475],[84.50131,25.10498],[84.49782,25.10174],[84.49596,25.1021],[84.49105,25.09637],[84.48633,25.09918],[84.48415,25.0972],[84.48053,25.09818],[84.4787,25.09461],[84.47621,25.09551],[84.47262,25.08928],[84.47118,25.08961]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"19","area_level":"District","area_name":"Kinnaur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.68343,32.07271],[78.68027,32.07694],[78.66913,32.0705],[78.65655,32.07422],[78.65248,32.07058],[78.65143,32.06433],[78.64482,32.06062],[78.6395,32.06047],[78.62872,32.06713],[78.62493,32.06303],[78.62402,32.05759],[78.62045,32.05303],[78.61333,32.04922],[78.60516,32.05065],[78.60692,32.05671],[78.60317,32.06345],[78.59291,32.06775],[78.58696,32.06233],[78.5802,32.06444],[78.56951,32.05974],[78.5535,32.05981],[78.54976,32.06221],[78.53621,32.05634],[78.52972,32.0572],[78.51864,32.04878],[78.51162,32.04912],[78.50864,32.04742],[78.5026,32.04843],[78.49732,32.05263],[78.48783,32.05155],[78.48524,32.04817],[78.48259,32.04827],[78.48165,32.05299],[78.47513,32.05385],[78.47346,32.05752],[78.46622,32.06082],[78.45606,32.06184],[78.45032,32.05977],[78.45097,32.05368],[78.44718,32.04979],[78.44461,32.0427],[78.44593,32.03816],[78.44352,32.0337],[78.44346,32.029],[78.43761,32.01906],[78.4376,32.01192],[78.4415,31.99955],[78.44012,31.98404],[78.4332,31.97734],[78.43631,31.97029],[78.4435,31.96859],[78.45374,31.96309],[78.45988,31.95771],[78.45629,31.95454],[78.45615,31.95115],[78.45349,31.94894],[78.45755,31.94181],[78.45636,31.93768],[78.44635,31.9351],[78.43996,31.93645],[78.43512,31.93453],[78.4259,31.9371],[78.42087,31.9345],[78.41032,31.94333],[78.40857,31.94759],[78.3999,31.9537],[78.39342,31.95262],[78.38102,31.95501],[78.37194,31.95864],[78.3653,31.95916],[78.36719,31.9553],[78.36627,31.951],[78.35344,31.93833],[78.34621,31.93686],[78.34183,31.93106],[78.33535,31.93412],[78.32369,31.93417],[78.31017,31.93708],[78.30257,31.93331],[78.30162,31.92561],[78.29925,31.92498],[78.28862,31.9264],[78.26912,31.93419],[78.26382,31.93162],[78.24906,31.93387],[78.22462,31.93118],[78.21429,31.93337],[78.2015,31.93172],[78.19453,31.92596],[78.19366,31.91717],[78.18216,31.91495],[78.18229,31.91152],[78.18634,31.90345],[78.18328,31.89554],[78.18595,31.89237],[78.18284,31.88699],[78.18675,31.88249],[78.1864,31.87656],[78.18964,31.8715],[78.18073,31.86476],[78.174,31.86524],[78.17072,31.86008],[78.16269,31.85914],[78.15583,31.86051],[78.1479,31.86721],[78.14011,31.86496],[78.12681,31.86754],[78.12207,31.86651],[78.11694,31.86155],[78.10814,31.8572],[78.09859,31.85808],[78.09031,31.85627],[78.0942,31.85077],[78.08774,31.84868],[78.08369,31.8449],[78.08702,31.84144],[78.09304,31.8397],[78.09768,31.83515],[78.09602,31.83164],[78.09187,31.82994],[78.09602,31.82214],[78.08964,31.80956],[78.08567,31.80714],[78.08288,31.79724],[78.08292,31.79078],[78.08469,31.78787],[78.07481,31.78223],[78.05751,31.78221],[78.05409,31.77668],[78.05008,31.77598],[78.04972,31.77322],[78.04426,31.7691],[78.03995,31.76102],[78.0323,31.75786],[78.02701,31.758],[78.02227,31.76398],[78.01743,31.76457],[78.01543,31.77084],[78.01139,31.77387],[78.00331,31.77107],[77.99797,31.77997],[77.9907,31.77853],[77.98724,31.7815],[77.98329,31.78048],[77.97654,31.78186],[77.97076,31.78013],[77.96684,31.78232],[77.95931,31.78291],[77.95265,31.78718],[77.94683,31.78288],[77.94569,31.76843],[77.94736,31.76281],[77.94046,31.75713],[77.94158,31.75254],[77.93614,31.74769],[77.92514,31.74759],[77.91667,31.75205],[77.9092,31.75024],[77.89997,31.75347],[77.89806,31.75627],[77.89867,31.75967],[77.89675,31.76151],[77.8941,31.76187],[77.87254,31.77563],[77.86844,31.78252],[77.86198,31.78369],[77.8568,31.7804],[77.85854,31.77562],[77.85539,31.76971],[77.85374,31.75454],[77.82787,31.76115],[77.80743,31.76114],[77.79522,31.75961],[77.78596,31.7524],[77.78149,31.75472],[77.77789,31.75426],[77.77573,31.75744],[77.77213,31.75733],[77.77118,31.75995],[77.76405,31.76193],[77.75959,31.75439],[77.75227,31.75148],[77.74965,31.74853],[77.75232,31.73638],[77.75135,31.7305],[77.75452,31.72074],[77.74789,31.71336],[77.76271,31.70529],[77.77219,31.70548],[77.7747,31.70105],[77.78413,31.6959],[77.78492,31.69162],[77.78954,31.68809],[77.79341,31.67913],[77.79286,31.6743],[77.79816,31.67352],[77.81096,31.66704],[77.81351,31.66213],[77.81702,31.65321],[77.81615,31.64386],[77.82135,31.64159],[77.82356,31.63472],[77.81162,31.61575],[77.81206,31.60954],[77.81832,31.60522],[77.82413,31.59549],[77.83796,31.58055],[77.83501,31.5725],[77.83393,31.55942],[77.83898,31.54153],[77.8414,31.53784],[77.84273,31.52344],[77.84154,31.51474],[77.83906,31.51089],[77.83973,31.5059],[77.85115,31.50794],[77.85589,31.50642],[77.85903,31.50945],[77.86565,31.50387],[77.86912,31.49753],[77.87704,31.49417],[77.88172,31.48944],[77.88103,31.46991],[77.88513,31.46808],[77.89506,31.45932],[77.8978,31.4507],[77.89674,31.44537],[77.90807,31.44109],[77.90959,31.43783],[77.91269,31.43633],[77.91337,31.43294],[77.91647,31.43139],[77.92349,31.4312],[77.92689,31.42317],[77.93443,31.42222],[77.94691,31.42358],[77.95873,31.41475],[77.9621,31.40511],[77.96592,31.40225],[77.97536,31.39987],[77.99091,31.40356],[77.99521,31.40216],[77.99865,31.40313],[78.00614,31.40014],[78.01489,31.40121],[78.02217,31.39915],[78.02676,31.40008],[78.03457,31.40656],[78.04299,31.40896],[78.04424,31.41132],[78.05464,31.41744],[78.06764,31.41293],[78.07474,31.41674],[78.07997,31.41664],[78.08737,31.42163],[78.09345,31.41849],[78.10154,31.41915],[78.10368,31.4133],[78.1074,31.40995],[78.11818,31.40915],[78.12018,31.40708],[78.12738,31.40537],[78.13086,31.39789],[78.13968,31.3943],[78.14359,31.38766],[78.148,31.38687],[78.1518,31.38982],[78.1631,31.38317],[78.16434,31.37533],[78.16082,31.37347],[78.15847,31.36781],[78.15045,31.36073],[78.16235,31.34419],[78.16568,31.34642],[78.16846,31.34603],[78.17687,31.33692],[78.18257,31.33901],[78.18735,31.33432],[78.193,31.33304],[78.19681,31.32952],[78.20759,31.329],[78.21157,31.32415],[78.21909,31.32514],[78.22162,31.32794],[78.22502,31.3286],[78.22778,31.33218],[78.23418,31.33315],[78.23774,31.33877],[78.23756,31.34164],[78.24529,31.34099],[78.25371,31.32958],[78.25771,31.32688],[78.26372,31.32686],[78.26825,31.32442],[78.27457,31.32369],[78.29173,31.32612],[78.29083,31.32413],[78.29423,31.32128],[78.29515,31.31824],[78.302,31.31543],[78.29676,31.31081],[78.29759,31.30327],[78.29152,31.29334],[78.29405,31.29023],[78.30589,31.28477],[78.31032,31.28469],[78.31125,31.28269],[78.31717,31.28126],[78.31803,31.27892],[78.32349,31.27784],[78.33187,31.27761],[78.33991,31.28267],[78.34561,31.28059],[78.35197,31.2806],[78.37032,31.28633],[78.38202,31.28342],[78.38413,31.28163],[78.3863,31.27143],[78.39064,31.27462],[78.39632,31.27511],[78.39772,31.26622],[78.40717,31.25621],[78.40283,31.24789],[78.40695,31.24219],[78.41522,31.23989],[78.42074,31.24405],[78.42591,31.24425],[78.43186,31.25359],[78.43658,31.25412],[78.44359,31.24435],[78.44999,31.24064],[78.45571,31.24102],[78.45771,31.23778],[78.46174,31.23603],[78.47286,31.21845],[78.4798,31.21378],[78.48145,31.20451],[78.48427,31.20121],[78.48375,31.19894],[78.50756,31.19587],[78.52652,31.19646],[78.55162,31.19991],[78.56549,31.21348],[78.56807,31.21915],[78.57486,31.22122],[78.57824,31.22526],[78.5895,31.22667],[78.59676,31.22512],[78.60092,31.2281],[78.60934,31.22926],[78.62257,31.22407],[78.62597,31.21787],[78.63655,31.21484],[78.64704,31.21472],[78.6493,31.21087],[78.64907,31.20217],[78.65732,31.19573],[78.65654,31.19357],[78.66001,31.19108],[78.65801,31.18504],[78.66172,31.18923],[78.66735,31.19075],[78.6719,31.19688],[78.67882,31.19625],[78.68677,31.19776],[78.695,31.19217],[78.70336,31.189],[78.7097,31.1897],[78.71833,31.18777],[78.72838,31.18965],[78.75641,31.18783],[78.76518,31.18576],[78.77916,31.18889],[78.79675,31.19641],[78.80991,31.19828],[78.81641,31.19437],[78.81738,31.18961],[78.8143,31.18754],[78.81047,31.18026],[78.81072,31.17187],[78.81304,31.16888],[78.81807,31.16778],[78.82489,31.16351],[78.82296,31.15774],[78.82734,31.15262],[78.83121,31.1406],[78.83814,31.13834],[78.84147,31.12971],[78.84801,31.12511],[78.85352,31.12208],[78.86524,31.12001],[78.87289,31.10886],[78.88543,31.09872],[78.89064,31.0969],[78.90044,31.09979],[78.9086,31.09886],[78.91231,31.10208],[78.91273,31.10764],[78.92057,31.11072],[78.92593,31.10944],[78.93223,31.10068],[78.94512,31.10057],[78.95073,31.09798],[78.96308,31.10118],[78.97299,31.10808],[78.99004,31.10852],[78.99855,31.10995],[79.00216,31.11242],[79.00892,31.10992],[79.0068,31.11853],[79.00366,31.12154],[78.9996,31.13469],[78.99076,31.13806],[78.98758,31.14329],[78.99083,31.14816],[78.98822,31.15421],[78.9905,31.16127],[78.98591,31.17383],[78.98373,31.17613],[78.9808,31.17616],[78.9792,31.17902],[78.97266,31.17991],[78.95753,31.18659],[78.95831,31.19037],[78.948,31.19851],[78.94703,31.20279],[78.94383,31.20648],[78.94868,31.21331],[78.94773,31.21677],[78.93113,31.21605],[78.92605,31.22007],[78.92609,31.2231],[78.92206,31.22531],[78.92203,31.23154],[78.91761,31.24576],[78.9161,31.24859],[78.91155,31.25147],[78.9121,31.25515],[78.89879,31.26272],[78.89703,31.27688],[78.89241,31.28789],[78.87271,31.30914],[78.85465,31.32346],[78.86381,31.34641],[78.85877,31.36637],[78.84793,31.3792],[78.83624,31.38489],[78.82357,31.38643],[78.79201,31.39554],[78.80034,31.4033],[78.81093,31.40917],[78.81659,31.41928],[78.81871,31.42885],[78.8181,31.44036],[78.81278,31.44974],[78.79551,31.4627],[78.77357,31.47394],[78.76663,31.48642],[78.75737,31.48765],[78.74315,31.4804],[78.73624,31.48057],[78.73428,31.48498],[78.73522,31.49296],[78.72839,31.51477],[78.72898,31.51981],[78.73595,31.52854],[78.74705,31.53861],[78.7574,31.54238],[78.76981,31.54257],[78.7784,31.54819],[78.78386,31.55663],[78.79072,31.56104],[78.80295,31.56303],[78.81891,31.57224],[78.82934,31.58491],[78.84581,31.59833],[78.85334,31.60743],[78.85199,31.61688],[78.83994,31.62811],[78.80699,31.64711],[78.80034,31.65787],[78.79822,31.68181],[78.79483,31.68253],[78.78692,31.67855],[78.77581,31.67697],[78.7627,31.67938],[78.75402,31.68565],[78.74485,31.70044],[78.74134,31.72111],[78.73143,31.73384],[78.72839,31.74174],[78.73327,31.74938],[78.74069,31.75341],[78.74119,31.75761],[78.73195,31.75926],[78.72016,31.76451],[78.70985,31.78662],[78.70991,31.79976],[78.7143,31.80745],[78.72168,31.81529],[78.73202,31.82289],[78.74021,31.83746],[78.74584,31.85564],[78.74512,31.87055],[78.74764,31.87924],[78.75277,31.88474],[78.75014,31.90448],[78.76157,31.91283],[78.7707,31.92265],[78.77816,31.93516],[78.78015,31.95195],[78.78615,31.97307],[78.78855,31.99323],[78.78555,31.99731],[78.75811,32.00095],[78.73536,32.02328],[78.71891,32.03572],[78.70777,32.04686],[78.69619,32.0627],[78.68343,32.07271]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"190","area_level":"District","area_name":"Banka","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.01687,25.1046],[87.0178,25.10705],[87.01367,25.10945],[87.01245,25.10723],[87.01389,25.10455],[87.00347,25.10782],[86.99337,25.10329],[86.98806,25.10322],[86.98765,25.10186],[86.98493,25.10247],[86.98158,25.1008],[86.97101,25.10374],[86.96697,25.10093],[86.95788,25.10298],[86.95378,25.10125],[86.953,25.09824],[86.94427,25.10606],[86.94161,25.10449],[86.94202,25.09997],[86.93747,25.10233],[86.93192,25.10194],[86.93154,25.09921],[86.92879,25.09964],[86.92454,25.0964],[86.91912,25.09852],[86.91813,25.09496],[86.89974,25.10106],[86.8986,25.09875],[86.89622,25.09949],[86.89394,25.09588],[86.88609,25.10008],[86.88367,25.09724],[86.87516,25.09704],[86.87328,25.09278],[86.86144,25.09715],[86.85743,25.10069],[86.85866,25.10368],[86.85447,25.10445],[86.8546,25.10593],[86.85065,25.10878],[86.84346,25.1028],[86.84271,25.10646],[86.83723,25.10717],[86.83548,25.10559],[86.83086,25.10795],[86.83071,25.10945],[86.82775,25.11037],[86.82636,25.10927],[86.82505,25.11076],[86.82328,25.10906],[86.82346,25.10502],[86.81878,25.10469],[86.81524,25.09238],[86.81309,25.09232],[86.80726,25.09306],[86.80468,25.09809],[86.8057,25.09925],[86.80821,25.09703],[86.81067,25.09792],[86.81099,25.09971],[86.80797,25.10372],[86.80924,25.1058],[86.79771,25.11194],[86.7978,25.11397],[86.79099,25.11054],[86.78635,25.105],[86.78633,25.10157],[86.78169,25.10495],[86.77508,25.10684],[86.77404,25.10934],[86.77022,25.10947],[86.76953,25.1113],[86.76288,25.1053],[86.73785,25.11145],[86.73851,25.11685],[86.74087,25.12043],[86.72868,25.12133],[86.72711,25.11477],[86.72295,25.11658],[86.71399,25.11612],[86.70975,25.11775],[86.70676,25.11345],[86.70382,25.11409],[86.70299,25.11817],[86.69864,25.12061],[86.69351,25.11373],[86.68999,25.11444],[86.68959,25.11308],[86.69103,25.11185],[86.69014,25.10845],[86.69503,25.10763],[86.69438,25.10431],[86.69144,25.10264],[86.68312,25.09009],[86.67707,25.09244],[86.67123,25.08766],[86.67037,25.08365],[86.66701,25.08114],[86.66483,25.07038],[86.657,25.06463],[86.65969,25.06317],[86.65575,25.05647],[86.65887,25.0497],[86.65572,25.04573],[86.65237,25.04526],[86.65116,25.04203],[86.65883,25.03237],[86.6584,25.03084],[86.6558,25.03129],[86.65663,25.02784],[86.65324,25.0243],[86.65953,25.01845],[86.66277,25.01743],[86.66439,25.01288],[86.67099,25.01214],[86.67105,25.01074],[86.66909,25.0091],[86.66527,25.0096],[86.66377,25.01236],[86.65735,25.01387],[86.65064,25.01028],[86.65015,25.00811],[86.65436,25.00218],[86.65012,24.99218],[86.65019,24.98076],[86.64197,24.98158],[86.62724,24.96673],[86.62165,24.96944],[86.62246,24.97729],[86.61818,24.97754],[86.61565,24.97349],[86.61169,24.97207],[86.60577,24.97541],[86.60198,24.96602],[86.60426,24.96484],[86.60053,24.96197],[86.5995,24.95737],[86.60155,24.95571],[86.60081,24.95161],[86.60426,24.95029],[86.60403,24.94909],[86.59334,24.94958],[86.59193,24.94568],[86.58808,24.94632],[86.5866,24.94493],[86.57803,24.94721],[86.57799,24.95728],[86.57262,24.95951],[86.5715,24.96321],[86.56673,24.95986],[86.55992,24.95838],[86.55885,24.95647],[86.55414,24.95744],[86.54835,24.95418],[86.54741,24.95095],[86.54225,24.95331],[86.54172,24.95463],[86.55071,24.96108],[86.55105,24.9643],[86.54546,24.96596],[86.54584,24.9689],[86.54022,24.96952],[86.5364,24.9723],[86.53596,24.98149],[86.53003,24.98438],[86.51366,24.98581],[86.5062,24.98471],[86.5027,24.97874],[86.49134,24.9728],[86.4949,24.95297],[86.4977,24.95351],[86.49167,24.94136],[86.49387,24.94074],[86.49552,24.93523],[86.49927,24.93339],[86.49662,24.92951],[86.50125,24.92514],[86.49761,24.92141],[86.48739,24.92179],[86.48686,24.91919],[86.48904,24.91707],[86.4898,24.90902],[86.50657,24.90339],[86.51914,24.89328],[86.52604,24.88963],[86.52667,24.88162],[86.53229,24.87566],[86.5324,24.87203],[86.53542,24.86819],[86.53412,24.85317],[86.53567,24.84958],[86.53147,24.84153],[86.53022,24.83556],[86.5332,24.83368],[86.53324,24.82694],[86.53043,24.82222],[86.53132,24.81936],[86.52459,24.81555],[86.52395,24.81356],[86.52518,24.8105],[86.52403,24.80691],[86.52717,24.80252],[86.52664,24.7944],[86.52867,24.79176],[86.50223,24.78807],[86.50053,24.78076],[86.49552,24.77315],[86.49522,24.76321],[86.49726,24.76197],[86.49939,24.7671],[86.509,24.76867],[86.5269,24.77523],[86.54496,24.77596],[86.54824,24.77467],[86.5472,24.76952],[86.55084,24.76352],[86.54785,24.75422],[86.55322,24.75267],[86.55699,24.74624],[86.5555,24.73987],[86.55612,24.73444],[86.55902,24.73075],[86.55518,24.72831],[86.55519,24.72474],[86.5525,24.7219],[86.55616,24.7155],[86.55573,24.71138],[86.55818,24.70261],[86.56213,24.69698],[86.56465,24.6958],[86.56742,24.69697],[86.56895,24.69514],[86.57589,24.69506],[86.58232,24.68916],[86.58554,24.6792],[86.58918,24.68159],[86.59887,24.67671],[86.6044,24.67203],[86.6134,24.66994],[86.61134,24.66494],[86.61494,24.66184],[86.61908,24.66116],[86.60769,24.65337],[86.60962,24.64644],[86.61878,24.64433],[86.61727,24.63319],[86.6132,24.63182],[86.61334,24.6294],[86.60954,24.62613],[86.61079,24.62157],[86.60781,24.62083],[86.6082,24.60809],[86.61485,24.60731],[86.61092,24.60399],[86.61042,24.5987],[86.62439,24.59938],[86.62281,24.59626],[86.62417,24.58857],[86.64575,24.58063],[86.65173,24.5704],[86.67024,24.56488],[86.68077,24.57099],[86.68598,24.56995],[86.69162,24.57612],[86.70159,24.57329],[86.72308,24.58399],[86.73469,24.57949],[86.73528,24.58455],[86.74163,24.58712],[86.74668,24.5943],[86.74984,24.59507],[86.74825,24.60576],[86.75399,24.6213],[86.75869,24.61938],[86.76494,24.61945],[86.77324,24.62181],[86.78238,24.61897],[86.78505,24.61651],[86.78901,24.61869],[86.8036,24.60187],[86.81124,24.59827],[86.80716,24.59261],[86.81171,24.58254],[86.80537,24.57827],[86.80263,24.5736],[86.80315,24.57033],[86.81192,24.56905],[86.81597,24.57016],[86.81825,24.57318],[86.82161,24.57451],[86.82355,24.57239],[86.83183,24.5716],[86.83465,24.57508],[86.84265,24.57423],[86.84364,24.56854],[86.84145,24.56333],[86.843,24.5581],[86.85019,24.55851],[86.85684,24.55488],[86.86013,24.55638],[86.86202,24.56081],[86.86043,24.56381],[86.86362,24.5666],[86.86901,24.56547],[86.87672,24.56803],[86.88051,24.57219],[86.8821,24.5713],[86.88303,24.56726],[86.88795,24.5648],[86.88687,24.55884],[86.8935,24.55782],[86.89506,24.56082],[86.90249,24.55273],[86.90356,24.54752],[86.91458,24.54221],[86.9175,24.5467],[86.91596,24.55452],[86.91761,24.56086],[86.91539,24.56236],[86.91472,24.56831],[86.90937,24.57246],[86.91327,24.5774],[86.90895,24.5825],[86.90732,24.58816],[86.90933,24.59518],[86.9144,24.60041],[86.9195,24.60212],[86.9191,24.60486],[86.92214,24.61014],[86.92678,24.61374],[86.92892,24.6212],[86.92761,24.62451],[86.93277,24.63061],[86.93668,24.63031],[86.94494,24.63583],[86.94206,24.63873],[86.9421,24.64129],[86.93902,24.64341],[86.93759,24.65017],[86.9582,24.64759],[86.95599,24.64026],[86.95342,24.63972],[86.95324,24.63491],[86.95134,24.63347],[86.95279,24.63147],[86.95774,24.6318],[86.96154,24.63463],[86.96927,24.63536],[86.97758,24.63957],[86.98065,24.63479],[86.98521,24.63278],[86.98751,24.62769],[86.99268,24.62584],[86.9961,24.62011],[87.00632,24.62296],[87.00764,24.62887],[87.01076,24.63119],[87.02127,24.62946],[87.02415,24.62418],[87.02305,24.6157],[87.03623,24.61388],[87.03811,24.61723],[87.04477,24.61297],[87.04662,24.60947],[87.05081,24.60898],[87.04898,24.62403],[87.04615,24.62987],[87.05244,24.64127],[87.05058,24.64463],[87.05067,24.65161],[87.05341,24.65743],[87.05407,24.66934],[87.05975,24.67632],[87.05975,24.6826],[87.06194,24.68879],[87.06549,24.689],[87.06975,24.69506],[87.06805,24.70339],[87.07258,24.71472],[87.07823,24.71935],[87.07714,24.72157],[87.08074,24.72907],[87.07656,24.73017],[87.07861,24.7366],[87.0729,24.73703],[87.07386,24.74137],[87.07007,24.74348],[87.06964,24.74556],[87.07021,24.74764],[87.07942,24.74888],[87.0781,24.75243],[87.08431,24.75613],[87.0786,24.76833],[87.08002,24.77455],[87.07871,24.77753],[87.08357,24.78192],[87.08535,24.78632],[87.08801,24.78634],[87.09289,24.79191],[87.09574,24.80272],[87.08578,24.80363],[87.08355,24.80606],[87.07331,24.8086],[87.07394,24.81862],[87.07736,24.82528],[87.08521,24.8236],[87.0912,24.82547],[87.10072,24.84002],[87.10177,24.8437],[87.10038,24.84768],[87.09878,24.84786],[87.10612,24.85506],[87.11007,24.85701],[87.12059,24.85519],[87.1291,24.86173],[87.13242,24.86261],[87.13478,24.85961],[87.14259,24.8606],[87.14449,24.86331],[87.14069,24.86408],[87.14091,24.86591],[87.14734,24.87109],[87.15539,24.88438],[87.15543,24.89282],[87.15098,24.89879],[87.1538,24.89997],[87.1519,24.90373],[87.14806,24.90357],[87.14733,24.90991],[87.14414,24.9106],[87.14236,24.91372],[87.14292,24.92218],[87.14961,24.92659],[87.15174,24.93156],[87.15091,24.93478],[87.14364,24.94414],[87.14881,24.95987],[87.14728,24.96476],[87.14914,24.96896],[87.14612,24.97357],[87.14891,24.9776],[87.15126,24.98725],[87.14923,24.99896],[87.15032,25.00255],[87.14561,25.00981],[87.14697,25.01334],[87.14585,25.01886],[87.14964,25.02518],[87.15858,25.02857],[87.16322,25.03776],[87.16726,25.04061],[87.16587,25.04613],[87.17091,25.04711],[87.17546,25.05702],[87.17004,25.05994],[87.16586,25.05782],[87.16533,25.06239],[87.16126,25.06336],[87.14272,25.06353],[87.13813,25.08088],[87.13046,25.08828],[87.12385,25.08885],[87.12194,25.09203],[87.10888,25.09037],[87.10803,25.09552],[87.09987,25.09759],[87.09872,25.09593],[87.09359,25.09652],[87.09248,25.09425],[87.0848,25.09714],[87.08289,25.09425],[87.07706,25.09548],[87.07632,25.09784],[87.05548,25.10579],[87.05351,25.10465],[87.04759,25.10528],[87.04662,25.10163],[87.04224,25.09972],[87.04185,25.09514],[87.03552,25.09388],[87.03524,25.09565],[87.02722,25.09678],[87.02639,25.10345],[87.02197,25.103],[87.02199,25.10037],[87.01687,25.1046]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"191","area_level":"District","area_name":"Begusarai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.11288,25.77468],[86.10725,25.77559],[86.10158,25.77394],[86.10416,25.7587],[86.10619,25.75696],[86.11352,25.75646],[86.11986,25.75187],[86.12451,25.75053],[86.13078,25.75389],[86.13715,25.75129],[86.13568,25.74766],[86.13225,25.74501],[86.1336,25.74388],[86.13097,25.73521],[86.12266,25.73503],[86.11609,25.74017],[86.11431,25.73902],[86.11385,25.73512],[86.10717,25.73952],[86.10675,25.73775],[86.0977,25.73682],[86.09781,25.73807],[86.09203,25.73931],[86.09541,25.74335],[86.08387,25.74438],[86.08281,25.74034],[86.07801,25.74337],[86.07538,25.74176],[86.0773,25.73687],[86.0838,25.73555],[86.08617,25.73269],[86.08529,25.7303],[86.08299,25.73083],[86.08121,25.72803],[86.07742,25.72668],[86.06427,25.72701],[86.05982,25.72412],[86.05639,25.72614],[86.05175,25.7324],[86.04431,25.73378],[86.03963,25.73025],[86.04374,25.72633],[86.04153,25.72257],[86.03597,25.72138],[86.03291,25.72249],[86.03321,25.72592],[86.02989,25.72604],[86.03224,25.72202],[86.02621,25.71645],[86.02243,25.71691],[86.01605,25.7251],[86.01094,25.72357],[86.00929,25.71295],[86.01043,25.70767],[86.02577,25.69837],[86.02927,25.6929],[86.02684,25.68741],[86.01731,25.68244],[86.01355,25.68164],[86.00314,25.68445],[85.99936,25.68173],[85.99913,25.67625],[86.00136,25.66895],[86.00683,25.66232],[86.01154,25.66048],[86.01859,25.66705],[86.02195,25.66627],[86.02433,25.66291],[86.0228,25.65924],[86.01399,25.6573],[86.01357,25.65008],[86.02167,25.64822],[86.0238,25.6442],[86.02262,25.64137],[86.01394,25.63515],[86.01339,25.61179],[86.01461,25.61027],[86.0131,25.60273],[86.01067,25.60134],[86.00971,25.59689],[86.00245,25.59659],[85.99682,25.60463],[85.97944,25.61286],[85.9741,25.6175],[85.97343,25.62688],[85.96834,25.62832],[85.96125,25.64036],[85.95551,25.64217],[85.9511,25.64995],[85.94661,25.64926],[85.93935,25.65137],[85.93892,25.64681],[85.93613,25.64371],[85.9229,25.64469],[85.91972,25.63909],[85.91413,25.6377],[85.90512,25.6423],[85.90247,25.64996],[85.89611,25.65065],[85.89371,25.64408],[85.88976,25.64107],[85.8896,25.63853],[85.88156,25.6337],[85.88748,25.64115],[85.88853,25.64783],[85.88668,25.64825],[85.88724,25.65403],[85.88859,25.65387],[85.88971,25.66146],[85.87906,25.66505],[85.87651,25.65889],[85.87428,25.65927],[85.87335,25.6456],[85.86714,25.64301],[85.86247,25.64439],[85.86291,25.64255],[85.85713,25.64099],[85.85003,25.64617],[85.84479,25.64382],[85.84341,25.63985],[85.84683,25.63643],[85.84341,25.63567],[85.84147,25.63271],[85.83971,25.62445],[85.8318,25.62182],[85.82952,25.61692],[85.83189,25.61488],[85.83433,25.61556],[85.83368,25.61326],[85.83768,25.61224],[85.84315,25.60813],[85.84599,25.60828],[85.85044,25.6029],[85.84954,25.59407],[85.85208,25.58903],[85.84854,25.5849],[85.84873,25.5762],[85.84711,25.57331],[85.83848,25.57613],[85.80966,25.57776],[85.79259,25.58397],[85.77531,25.58569],[85.77311,25.58257],[85.77323,25.57899],[85.76596,25.56879],[85.75924,25.56619],[85.75645,25.56147],[85.74903,25.56037],[85.74375,25.55698],[85.74766,25.55508],[85.74318,25.54036],[85.73707,25.53984],[85.7353,25.52862],[85.73376,25.52807],[85.73514,25.52467],[85.74545,25.53461],[85.76344,25.54314],[85.77678,25.54541],[85.78167,25.54817],[85.79885,25.5462],[85.80933,25.54433],[85.83746,25.52643],[85.83836,25.51762],[85.88979,25.5],[85.88939,25.49355],[85.89262,25.47828],[85.89663,25.47123],[85.90257,25.46782],[85.90615,25.45926],[85.90457,25.45785],[85.89523,25.4592],[85.88414,25.47193],[85.88205,25.47358],[85.88083,25.47252],[85.8781,25.46545],[85.87871,25.45041],[85.8731,25.4394],[85.88687,25.42175],[85.88939,25.4202],[85.8927,25.42554],[85.90024,25.42027],[85.90682,25.4313],[85.91579,25.42039],[85.93928,25.40863],[85.95032,25.40777],[85.953,25.41368],[85.95749,25.41282],[85.95517,25.40973],[85.96316,25.40404],[86.00388,25.38005],[86.00163,25.37295],[86.01281,25.36265],[86.0164,25.36448],[86.02337,25.36228],[86.02851,25.3629],[86.03236,25.39181],[86.04668,25.39163],[86.04764,25.38452],[86.05224,25.37441],[86.05999,25.35896],[86.06704,25.34928],[86.06876,25.33662],[86.06773,25.33379],[86.06461,25.33392],[86.06799,25.32344],[86.08163,25.31348],[86.07719,25.30979],[86.08753,25.30604],[86.09632,25.3051],[86.1004,25.31183],[86.10334,25.30797],[86.12241,25.30496],[86.14731,25.29782],[86.15017,25.28419],[86.1543,25.2822],[86.15528,25.27677],[86.15759,25.27581],[86.15881,25.26428],[86.16648,25.25839],[86.16564,25.27129],[86.1834,25.25914],[86.19433,25.25844],[86.19247,25.25174],[86.19534,25.24982],[86.20065,25.24949],[86.21554,25.2528],[86.22583,25.26201],[86.22673,25.25822],[86.2477,25.27321],[86.26147,25.27957],[86.26357,25.27823],[86.26086,25.28561],[86.28824,25.2976],[86.29627,25.29924],[86.29477,25.30164],[86.3087,25.31266],[86.30084,25.32548],[86.30316,25.32783],[86.30592,25.32461],[86.30941,25.3137],[86.31383,25.31586],[86.32178,25.32219],[86.31466,25.33474],[86.32094,25.33756],[86.32726,25.33656],[86.33151,25.33914],[86.3401,25.33917],[86.33843,25.34174],[86.34023,25.34389],[86.35687,25.3505],[86.36675,25.35634],[86.37019,25.35541],[86.36403,25.3593],[86.36949,25.36244],[86.38829,25.37997],[86.38909,25.37923],[86.38719,25.37717],[86.3909,25.36243],[86.40329,25.37036],[86.40189,25.38496],[86.40967,25.38634],[86.41358,25.39124],[86.4169,25.39225],[86.41537,25.39397],[86.43079,25.3937],[86.43695,25.40149],[86.44059,25.39921],[86.45239,25.39912],[86.45327,25.39678],[86.45625,25.39793],[86.45889,25.3953],[86.45736,25.39204],[86.46213,25.38737],[86.47679,25.3989],[86.48032,25.41013],[86.48261,25.41288],[86.50746,25.41084],[86.50953,25.40859],[86.51355,25.41186],[86.51403,25.41442],[86.50878,25.41451],[86.50834,25.42798],[86.50432,25.42577],[86.50316,25.42182],[86.46077,25.44212],[86.44809,25.45519],[86.44438,25.46857],[86.43781,25.46947],[86.43785,25.47436],[86.43019,25.47773],[86.41976,25.47708],[86.42448,25.49215],[86.42811,25.49211],[86.42535,25.49918],[86.42365,25.49936],[86.42103,25.49638],[86.41527,25.49624],[86.41318,25.49838],[86.41403,25.50048],[86.4107,25.50341],[86.40962,25.50235],[86.40745,25.50476],[86.39851,25.50461],[86.39464,25.4969],[86.38515,25.49048],[86.38637,25.4811],[86.38228,25.48244],[86.37421,25.47856],[86.36693,25.47838],[86.36604,25.48018],[86.36834,25.4835],[86.37608,25.48671],[86.37256,25.49176],[86.36753,25.49076],[86.37101,25.49314],[86.36809,25.49368],[86.36564,25.49209],[86.36428,25.48132],[86.35228,25.47545],[86.35082,25.47795],[86.35193,25.48279],[86.34692,25.48205],[86.34535,25.48385],[86.35452,25.48577],[86.35733,25.4908],[86.36605,25.49596],[86.36617,25.50192],[86.36301,25.5025],[86.3598,25.49962],[86.34327,25.49894],[86.34173,25.49584],[86.34312,25.4868],[86.33951,25.48592],[86.32919,25.49168],[86.33021,25.49513],[86.33627,25.49904],[86.33059,25.51747],[86.32704,25.51577],[86.32617,25.50719],[86.31789,25.52455],[86.308,25.52358],[86.30313,25.5263],[86.29774,25.52702],[86.2948,25.52653],[86.29279,25.52313],[86.29842,25.53709],[86.29187,25.53667],[86.29184,25.54498],[86.2832,25.54295],[86.28417,25.56231],[86.28662,25.56937],[86.28678,25.57861],[86.29833,25.5729],[86.29954,25.57442],[86.29214,25.57875],[86.29101,25.58239],[86.28459,25.58556],[86.28202,25.59269],[86.27911,25.59553],[86.28075,25.60551],[86.28311,25.60721],[86.28542,25.60634],[86.28906,25.61614],[86.28802,25.62063],[86.29492,25.63081],[86.29483,25.63762],[86.28611,25.63931],[86.28568,25.63723],[86.27448,25.62933],[86.27277,25.63424],[86.26633,25.6369],[86.25513,25.6371],[86.25624,25.63831],[86.25452,25.63984],[86.25422,25.64394],[86.25761,25.64718],[86.25643,25.6485],[86.24691,25.6479],[86.24196,25.65182],[86.22052,25.65603],[86.21002,25.65561],[86.20093,25.65938],[86.18916,25.66041],[86.18352,25.66273],[86.18434,25.66552],[86.1804,25.6767],[86.18095,25.68214],[86.17899,25.68321],[86.1772,25.69145],[86.17748,25.6945],[86.17918,25.69388],[86.17929,25.69802],[86.17478,25.70354],[86.17688,25.70794],[86.17413,25.70953],[86.17707,25.71332],[86.1717,25.71343],[86.16155,25.71894],[86.1615,25.71368],[86.15248,25.71479],[86.14624,25.71115],[86.14292,25.70524],[86.14106,25.70683],[86.14182,25.71021],[86.14042,25.71132],[86.14156,25.71153],[86.14309,25.72719],[86.14648,25.72667],[86.14728,25.72948],[86.15197,25.72913],[86.15366,25.73643],[86.15167,25.73995],[86.14597,25.74077],[86.14692,25.74438],[86.14435,25.7455],[86.14839,25.7499],[86.15009,25.75608],[86.14975,25.75931],[86.14656,25.76011],[86.14744,25.76453],[86.13884,25.76495],[86.13381,25.76104],[86.13113,25.76265],[86.13476,25.76625],[86.12985,25.77038],[86.13034,25.77148],[86.11288,25.77468]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"192","area_level":"District","area_name":"Bhagalpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.09845,25.49734],[87.0996,25.5086],[87.09846,25.51547],[87.09644,25.51513],[87.09333,25.50065],[87.08997,25.49934],[87.08972,25.49754],[87.08471,25.49732],[87.08441,25.4941],[87.08072,25.4951],[87.08096,25.48938],[87.07855,25.48411],[87.07349,25.47876],[87.07281,25.47395],[87.06948,25.47176],[87.07043,25.47034],[87.06668,25.46871],[87.05973,25.4709],[87.05462,25.47044],[87.04836,25.47386],[87.04841,25.47273],[87.04447,25.47222],[87.04448,25.47328],[87.03481,25.47028],[87.03422,25.46809],[87.0281,25.4649],[87.0194,25.46242],[87.0171,25.46334],[87.01613,25.46581],[87.02028,25.47005],[87.02147,25.47598],[87.01676,25.48193],[87.01486,25.47711],[87.00842,25.47806],[87.00075,25.47278],[87.00348,25.4701],[86.99734,25.47083],[86.98895,25.47644],[86.97821,25.47618],[86.96975,25.46216],[86.9679,25.46384],[86.96847,25.46891],[86.96661,25.47208],[86.95784,25.47534],[86.95354,25.47965],[86.94911,25.4795],[86.94673,25.47465],[86.93314,25.48157],[86.93299,25.48349],[86.93554,25.48565],[86.94048,25.48414],[86.94352,25.4855],[86.94482,25.48738],[86.94286,25.48925],[86.93534,25.492],[86.9293,25.49226],[86.92758,25.49044],[86.9284,25.48509],[86.92553,25.48392],[86.92445,25.49075],[86.92066,25.49324],[86.90899,25.48994],[86.91489,25.48443],[86.91709,25.47939],[86.91714,25.47671],[86.91423,25.47312],[86.9106,25.47298],[86.9013,25.47824],[86.89368,25.47247],[86.88593,25.46978],[86.88434,25.46459],[86.88172,25.46228],[86.87169,25.46235],[86.8666,25.46577],[86.86346,25.46166],[86.85849,25.4622],[86.85331,25.45298],[86.84809,25.45522],[86.82709,25.45748],[86.82369,25.45067],[86.82511,25.44844],[86.82835,25.44757],[86.82909,25.44541],[86.82225,25.44328],[86.82688,25.44048],[86.82705,25.43547],[86.82599,25.4315],[86.82202,25.42746],[86.82292,25.42153],[86.81954,25.41192],[86.82464,25.41067],[86.83233,25.40549],[86.83354,25.39963],[86.83805,25.39481],[86.83622,25.38743],[86.84233,25.38147],[86.84463,25.38022],[86.84742,25.38166],[86.85401,25.37599],[86.85688,25.36356],[86.845,25.35737],[86.84163,25.35704],[86.83252,25.35017],[86.82496,25.34237],[86.82198,25.33556],[86.81798,25.33605],[86.81439,25.32925],[86.81064,25.32756],[86.80172,25.33246],[86.79492,25.33063],[86.78433,25.32476],[86.78734,25.31677],[86.7871,25.31263],[86.78377,25.31108],[86.78845,25.3068],[86.77929,25.2998],[86.78166,25.29642],[86.77286,25.28663],[86.77846,25.27548],[86.76203,25.26742],[86.75744,25.26732],[86.75811,25.27162],[86.74758,25.26647],[86.73617,25.2574],[86.72604,25.25418],[86.72799,25.24688],[86.72696,25.24626],[86.67685,25.2397],[86.64904,25.24321],[86.63861,25.24279],[86.64179,25.23689],[86.64222,25.22554],[86.64788,25.22554],[86.65278,25.22219],[86.64956,25.21783],[86.67049,25.21312],[86.67287,25.20811],[86.67789,25.20572],[86.67953,25.19333],[86.68094,25.19093],[86.68534,25.19063],[86.68534,25.1874],[86.68717,25.18916],[86.69471,25.18796],[86.69517,25.19083],[86.69832,25.19029],[86.69544,25.19155],[86.69618,25.19395],[86.6941,25.19534],[86.6964,25.20244],[86.69913,25.20173],[86.69863,25.198],[86.70529,25.19594],[86.70418,25.18852],[86.7084,25.18578],[86.71088,25.18559],[86.71186,25.18818],[86.71043,25.19244],[86.71517,25.19092],[86.71468,25.18727],[86.72422,25.18703],[86.72684,25.18422],[86.73761,25.18279],[86.73525,25.17848],[86.72822,25.17991],[86.73072,25.17611],[86.72457,25.17103],[86.71961,25.16986],[86.71396,25.17226],[86.70869,25.17017],[86.70205,25.16218],[86.70664,25.16062],[86.70091,25.15337],[86.70207,25.14969],[86.69923,25.14937],[86.69948,25.14659],[86.6981,25.14681],[86.69666,25.14257],[86.68953,25.14345],[86.68736,25.1461],[86.68485,25.14078],[86.68213,25.14061],[86.68408,25.13724],[86.68078,25.13133],[86.68335,25.12923],[86.68152,25.12845],[86.6788,25.12096],[86.68271,25.11929],[86.68369,25.12202],[86.68742,25.1204],[86.68932,25.11741],[86.69033,25.11978],[86.69176,25.11962],[86.69115,25.11429],[86.69351,25.11373],[86.69446,25.11658],[86.6999,25.12063],[86.70387,25.11695],[86.70382,25.11409],[86.70676,25.11345],[86.70975,25.11775],[86.71399,25.11612],[86.72295,25.11658],[86.72711,25.11477],[86.72868,25.12133],[86.74087,25.12043],[86.73851,25.11685],[86.73785,25.11145],[86.76288,25.1053],[86.76953,25.1113],[86.77022,25.10947],[86.77404,25.10934],[86.77508,25.10684],[86.78169,25.10495],[86.78633,25.10157],[86.78635,25.105],[86.79099,25.11054],[86.7978,25.11397],[86.79771,25.11194],[86.80924,25.1058],[86.80797,25.10372],[86.81099,25.09971],[86.81067,25.09792],[86.80821,25.09703],[86.8057,25.09925],[86.80468,25.09809],[86.80726,25.09306],[86.81309,25.09232],[86.81524,25.09238],[86.81878,25.10469],[86.82346,25.10502],[86.82328,25.10906],[86.82505,25.11076],[86.82636,25.10927],[86.82775,25.11037],[86.83071,25.10945],[86.83086,25.10795],[86.83548,25.10559],[86.83723,25.10717],[86.84271,25.10646],[86.84346,25.1028],[86.85065,25.10878],[86.8546,25.10593],[86.85447,25.10445],[86.85866,25.10368],[86.85743,25.10069],[86.86144,25.09715],[86.87328,25.09278],[86.87516,25.09704],[86.88367,25.09724],[86.88609,25.10008],[86.89394,25.09588],[86.89622,25.09949],[86.8986,25.09875],[86.89974,25.10106],[86.91813,25.09496],[86.91912,25.09852],[86.92454,25.0964],[86.92879,25.09964],[86.93154,25.09921],[86.93192,25.10194],[86.93747,25.10233],[86.94202,25.09997],[86.94161,25.10449],[86.94427,25.10606],[86.953,25.09824],[86.95378,25.10125],[86.95788,25.10298],[86.96697,25.10093],[86.97101,25.10374],[86.98158,25.1008],[86.98493,25.10247],[86.98765,25.10186],[86.98806,25.10322],[86.99337,25.10329],[87.00347,25.10782],[87.01389,25.10455],[87.01245,25.10723],[87.01367,25.10945],[87.0178,25.10705],[87.01695,25.10387],[87.02199,25.10037],[87.02197,25.103],[87.02639,25.10345],[87.02722,25.09678],[87.03774,25.09401],[87.04185,25.09514],[87.04224,25.09972],[87.04662,25.10163],[87.04759,25.10528],[87.05351,25.10465],[87.05548,25.10579],[87.07632,25.09784],[87.07706,25.09548],[87.08289,25.09425],[87.0848,25.09714],[87.09248,25.09425],[87.09359,25.09652],[87.09872,25.09593],[87.09987,25.09759],[87.10803,25.09552],[87.10888,25.09037],[87.12194,25.09203],[87.12385,25.08885],[87.13046,25.08828],[87.13813,25.08088],[87.14272,25.06353],[87.16126,25.06336],[87.16533,25.06239],[87.16586,25.05782],[87.17004,25.05994],[87.17546,25.05702],[87.17752,25.06268],[87.18149,25.06676],[87.18895,25.06799],[87.19225,25.06685],[87.19452,25.0689],[87.1927,25.07008],[87.19368,25.07204],[87.19561,25.07078],[87.19921,25.07285],[87.201,25.07872],[87.20795,25.08237],[87.21273,25.08195],[87.21429,25.09123],[87.2374,25.08584],[87.23767,25.09233],[87.23981,25.09209],[87.24054,25.09797],[87.24436,25.10143],[87.24688,25.09966],[87.24934,25.10012],[87.24883,25.10132],[87.25095,25.10201],[87.25034,25.10573],[87.26318,25.10331],[87.26368,25.09964],[87.26705,25.09791],[87.26982,25.09397],[87.2954,25.08854],[87.29812,25.09976],[87.29522,25.10236],[87.29793,25.11205],[87.2962,25.11336],[87.30295,25.13424],[87.30685,25.13641],[87.30574,25.13794],[87.30664,25.14079],[87.30494,25.14289],[87.30797,25.14741],[87.31198,25.14877],[87.31437,25.16028],[87.31647,25.16026],[87.31899,25.16477],[87.31422,25.16881],[87.3154,25.18013],[87.32084,25.18995],[87.31823,25.19526],[87.32281,25.20628],[87.32729,25.22362],[87.33324,25.22268],[87.33428,25.21613],[87.35988,25.21188],[87.37152,25.20625],[87.3751,25.21505],[87.37809,25.21691],[87.38315,25.22435],[87.38753,25.22293],[87.39139,25.22787],[87.40098,25.2269],[87.40319,25.2253],[87.40349,25.22241],[87.41185,25.21893],[87.41183,25.21507],[87.42255,25.21393],[87.42604,25.21111],[87.44089,25.20473],[87.44472,25.20456],[87.45885,25.19685],[87.46113,25.19776],[87.4626,25.19487],[87.47781,25.19414],[87.4764,25.23785],[87.49058,25.26127],[87.50049,25.25979],[87.49881,25.26258],[87.50079,25.26679],[87.49538,25.27145],[87.49864,25.27673],[87.49001,25.28044],[87.48602,25.29579],[87.4861,25.29727],[87.49003,25.29729],[87.49362,25.30751],[87.50162,25.29233],[87.51683,25.29335],[87.52588,25.28433],[87.53236,25.28028],[87.54321,25.28169],[87.54308,25.29647],[87.54659,25.30802],[87.54854,25.32117],[87.5477,25.32373],[87.55029,25.32418],[87.55169,25.3325],[87.54437,25.33224],[87.54139,25.33064],[87.53571,25.33722],[87.52712,25.34259],[87.52993,25.34763],[87.52865,25.35478],[87.52659,25.35602],[87.52429,25.35499],[87.52565,25.34825],[87.51487,25.35353],[87.50165,25.35098],[87.49,25.36611],[87.48822,25.36592],[87.48685,25.36923],[87.47839,25.36674],[87.46152,25.36705],[87.45471,25.36012],[87.44167,25.36374],[87.43488,25.38157],[87.42994,25.37486],[87.42801,25.3768],[87.42598,25.3759],[87.40784,25.38102],[87.40631,25.38647],[87.40855,25.39256],[87.40577,25.39121],[87.38221,25.40542],[87.36738,25.40921],[87.3644,25.41533],[87.36615,25.41807],[87.36789,25.41742],[87.36873,25.41881],[87.36548,25.42483],[87.35725,25.41544],[87.34942,25.41685],[87.34329,25.41543],[87.33935,25.41699],[87.32027,25.40775],[87.31483,25.40881],[87.30963,25.40453],[87.3092,25.40222],[87.30185,25.40391],[87.29252,25.39993],[87.29321,25.39505],[87.28489,25.37901],[87.2819,25.36741],[87.27556,25.35808],[87.27131,25.35935],[87.26928,25.35393],[87.26334,25.35153],[87.27718,25.37149],[87.24456,25.38174],[87.24316,25.37944],[87.23451,25.37593],[87.23,25.378],[87.22992,25.38042],[87.22577,25.382],[87.22575,25.38446],[87.21576,25.39214],[87.21682,25.39354],[87.2153,25.3954],[87.21953,25.40064],[87.21844,25.40776],[87.21423,25.41185],[87.20839,25.412],[87.20844,25.41319],[87.20033,25.41494],[87.20525,25.42785],[87.21503,25.42827],[87.21531,25.42999],[87.22057,25.43185],[87.2222,25.4342],[87.22855,25.4501],[87.22552,25.45219],[87.20923,25.4575],[87.20691,25.45052],[87.20288,25.44534],[87.19239,25.45023],[87.18532,25.44449],[87.18706,25.44294],[87.1835,25.44067],[87.18114,25.44224],[87.18265,25.44428],[87.17793,25.44912],[87.16476,25.45176],[87.15841,25.44654],[87.15455,25.4378],[87.14979,25.43669],[87.13366,25.43909],[87.13164,25.43877],[87.13045,25.43655],[87.12448,25.43809],[87.12008,25.43661],[87.11898,25.43986],[87.10412,25.43368],[87.09576,25.43849],[87.09537,25.44321],[87.09374,25.44436],[87.08739,25.44579],[87.08797,25.44312],[87.08316,25.44221],[87.08083,25.44962],[87.08356,25.45295],[87.08115,25.45487],[87.07839,25.45461],[87.0812,25.46224],[87.07959,25.46635],[87.08085,25.47653],[87.09117,25.47874],[87.0987,25.48951],[87.09807,25.49152],[87.09963,25.49394],[87.09845,25.49734]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"193","area_level":"District","area_name":"Bhojpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.59952,25.72959],[84.60032,25.73837],[84.56028,25.7369],[84.5642,25.71377],[84.5618,25.6858],[84.55743,25.67951],[84.55532,25.68009],[84.55645,25.68195],[84.55105,25.68585],[84.53519,25.69077],[84.53956,25.72669],[84.53446,25.72423],[84.52887,25.68249],[84.52005,25.67496],[84.50775,25.68185],[84.5054,25.67692],[84.50437,25.67764],[84.49934,25.67468],[84.49606,25.67674],[84.49196,25.67649],[84.49361,25.69084],[84.4708,25.68724],[84.46588,25.69168],[84.46606,25.69535],[84.46893,25.69662],[84.46829,25.69853],[84.46249,25.69767],[84.46423,25.70077],[84.46217,25.70928],[84.45289,25.70943],[84.45351,25.71433],[84.44425,25.71065],[84.44428,25.70849],[84.44041,25.70836],[84.44029,25.71106],[84.42965,25.71162],[84.43155,25.70768],[84.42808,25.70119],[84.42768,25.69362],[84.42318,25.69367],[84.41477,25.69804],[84.40674,25.69842],[84.40109,25.70834],[84.40654,25.71598],[84.40058,25.72492],[84.39851,25.72555],[84.40004,25.72937],[84.38439,25.73277],[84.3749,25.72319],[84.35982,25.70011],[84.35659,25.69077],[84.35713,25.68448],[84.35373,25.68237],[84.34348,25.68237],[84.34391,25.68571],[84.34193,25.68436],[84.33526,25.6851],[84.33758,25.67602],[84.34017,25.67768],[84.34865,25.6751],[84.34945,25.67607],[84.34958,25.66585],[84.34262,25.65869],[84.34155,25.65998],[84.34453,25.66397],[84.34279,25.66582],[84.33782,25.66179],[84.33415,25.66354],[84.33014,25.66199],[84.32725,25.65979],[84.32728,25.65503],[84.33179,25.65481],[84.33425,25.65055],[84.33585,25.65027],[84.34064,25.63942],[84.34605,25.64361],[84.34978,25.63859],[84.33623,25.62852],[84.34157,25.62908],[84.34324,25.62815],[84.34325,25.62546],[84.34834,25.62249],[84.34581,25.60718],[84.33743,25.59818],[84.33525,25.59111],[84.33302,25.59005],[84.33379,25.58848],[84.33105,25.58218],[84.32972,25.58196],[84.33405,25.56777],[84.33186,25.55624],[84.32549,25.55179],[84.32607,25.53263],[84.32795,25.53151],[84.32904,25.52777],[84.32819,25.51686],[84.34375,25.51563],[84.3435,25.50538],[84.34089,25.50411],[84.34029,25.49361],[84.35362,25.49254],[84.35199,25.47442],[84.3634,25.47269],[84.36389,25.47152],[84.36215,25.47056],[84.36403,25.46741],[84.36191,25.46661],[84.36238,25.46451],[84.36017,25.4641],[84.35994,25.4614],[84.35823,25.46104],[84.35887,25.45941],[84.35693,25.45878],[84.35749,25.457],[84.35576,25.45491],[84.35364,25.45502],[84.35259,25.4515],[84.35086,25.452],[84.34415,25.44715],[84.34366,25.44419],[84.35105,25.44391],[84.35027,25.43493],[84.34852,25.43298],[84.32051,25.43262],[84.31846,25.42606],[84.30886,25.42416],[84.30606,25.4221],[84.30539,25.40471],[84.30636,25.40223],[84.30794,25.40214],[84.30474,25.39281],[84.30688,25.39281],[84.30636,25.38945],[84.30475,25.38682],[84.3013,25.38696],[84.29149,25.39166],[84.2864,25.38355],[84.28472,25.37522],[84.28687,25.37498],[84.28433,25.36346],[84.28165,25.36374],[84.28096,25.36185],[84.27452,25.36206],[84.27323,25.36023],[84.27632,25.3587],[84.27621,25.35458],[84.28291,25.35323],[84.28202,25.34528],[84.27975,25.34327],[84.27918,25.33853],[84.28213,25.33789],[84.27974,25.32974],[84.29018,25.32539],[84.30232,25.32576],[84.30385,25.32683],[84.303,25.3283],[84.30824,25.32803],[84.30859,25.32327],[84.31506,25.3234],[84.32211,25.32113],[84.32061,25.31542],[84.32726,25.3143],[84.32618,25.30158],[84.33632,25.29683],[84.33524,25.29279],[84.32463,25.29229],[84.32243,25.28875],[84.3253,25.28751],[84.32564,25.28506],[84.33449,25.28363],[84.334,25.28145],[84.32505,25.27534],[84.32239,25.27054],[84.32275,25.26824],[84.32631,25.26718],[84.32938,25.26224],[84.33155,25.26162],[84.32966,25.25],[84.32605,25.23988],[84.33254,25.23861],[84.33254,25.23676],[84.32836,25.22416],[84.32662,25.22436],[84.3259,25.22274],[84.32273,25.22333],[84.31882,25.21416],[84.32607,25.21175],[84.32545,25.21025],[84.33251,25.20748],[84.33179,25.20348],[84.3407,25.20103],[84.3418,25.20326],[84.34627,25.20189],[84.34745,25.20308],[84.35681,25.20038],[84.35767,25.19411],[84.35552,25.19341],[84.35533,25.19182],[84.36496,25.19394],[84.37317,25.19213],[84.37338,25.19473],[84.3794,25.19462],[84.38055,25.19636],[84.38577,25.19532],[84.38622,25.19128],[84.40343,25.18477],[84.40534,25.1895],[84.40326,25.19043],[84.40627,25.19548],[84.42873,25.18701],[84.42898,25.18496],[84.43309,25.1837],[84.43826,25.17788],[84.46331,25.16117],[84.47018,25.17047],[84.48413,25.18352],[84.51997,25.20685],[84.53032,25.21003],[84.55566,25.21166],[84.57124,25.21906],[84.58935,25.22266],[84.61835,25.2325],[84.62918,25.23774],[84.63714,25.24374],[84.6356,25.24506],[84.6371,25.24623],[84.64015,25.24558],[84.65126,25.25899],[84.66469,25.28604],[84.67216,25.29722],[84.68517,25.30752],[84.71457,25.32015],[84.72661,25.33387],[84.73427,25.35381],[84.73486,25.36181],[84.74783,25.38224],[84.75445,25.40766],[84.76597,25.41957],[84.76797,25.42621],[84.77223,25.4323],[84.77367,25.43673],[84.77226,25.43852],[84.77905,25.44912],[84.77421,25.46083],[84.76638,25.47156],[84.76142,25.48364],[84.7565,25.48958],[84.75557,25.50422],[84.77202,25.54027],[84.79421,25.56023],[84.79729,25.56501],[84.7959,25.56777],[84.80342,25.56768],[84.8087,25.56958],[84.81968,25.58079],[84.8224,25.59067],[84.81516,25.59343],[84.81837,25.60818],[84.83215,25.6237],[84.82674,25.6218],[84.82168,25.62224],[84.82467,25.63352],[84.82433,25.63827],[84.82573,25.6387],[84.82887,25.64772],[84.84172,25.65785],[84.83311,25.65987],[84.82353,25.66626],[84.82224,25.66766],[84.82298,25.67196],[84.83005,25.67957],[84.83467,25.6806],[84.84724,25.67896],[84.84793,25.69024],[84.8513,25.69884],[84.85011,25.69947],[84.8502,25.6975],[84.84504,25.69547],[84.84009,25.69587],[84.83995,25.69369],[84.83827,25.69377],[84.83321,25.69438],[84.82428,25.69851],[84.82117,25.6978],[84.8097,25.70109],[84.80787,25.69384],[84.82208,25.69227],[84.82113,25.6886],[84.81198,25.6892],[84.80807,25.68699],[84.80521,25.69148],[84.79729,25.69472],[84.78731,25.69235],[84.78597,25.68637],[84.78145,25.69321],[84.77835,25.69288],[84.77319,25.69754],[84.76892,25.69703],[84.76484,25.69943],[84.76414,25.70574],[84.74786,25.71039],[84.74435,25.71114],[84.73589,25.70765],[84.72515,25.70586],[84.69275,25.70419],[84.67618,25.71261],[84.66641,25.71385],[84.65599,25.71155],[84.65163,25.70775],[84.64816,25.70879],[84.63366,25.70798],[84.62247,25.71577],[84.62245,25.72145],[84.62821,25.7199],[84.62856,25.72165],[84.61236,25.7297],[84.59952,25.72959]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"194","area_level":"District","area_name":"Buxar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.39182,25.74087],[84.39363,25.7442],[84.38495,25.74751],[84.37783,25.73928],[84.37374,25.74429],[84.37177,25.74203],[84.3769,25.73715],[84.37522,25.73533],[84.36518,25.74256],[84.33634,25.74423],[84.32842,25.73193],[84.32956,25.70866],[84.32435,25.67103],[84.31703,25.66729],[84.31689,25.67249],[84.29918,25.67194],[84.29798,25.67739],[84.29291,25.67565],[84.28761,25.67755],[84.28704,25.675],[84.29139,25.67065],[84.29954,25.6685],[84.30026,25.66539],[84.29451,25.66113],[84.27686,25.66041],[84.27436,25.66289],[84.22322,25.66251],[84.20601,25.66946],[84.19889,25.70208],[84.17454,25.71763],[84.17423,25.72062],[84.16993,25.72291],[84.16694,25.72158],[84.16298,25.72487],[84.15449,25.72744],[84.15467,25.72924],[84.15086,25.72925],[84.14897,25.72695],[84.15275,25.72695],[84.1557,25.72385],[84.1526,25.72346],[84.14981,25.7188],[84.14268,25.71626],[84.12988,25.71779],[84.13525,25.72403],[84.14164,25.72174],[84.14223,25.72815],[84.1399,25.73166],[84.12913,25.72371],[84.10506,25.72122],[84.08928,25.71334],[84.07516,25.69527],[84.08512,25.65258],[84.08128,25.63631],[84.04616,25.62691],[84.01741,25.61469],[83.95837,25.57082],[83.9212,25.55198],[83.91419,25.54521],[83.90456,25.52662],[83.90014,25.52267],[83.89418,25.51992],[83.87621,25.51806],[83.87416,25.50953],[83.87742,25.50392],[83.87781,25.49925],[83.87159,25.49313],[83.87074,25.48751],[83.8636,25.48441],[83.85675,25.46857],[83.83278,25.45761],[83.83049,25.45838],[83.82596,25.46542],[83.82243,25.46582],[83.81656,25.46276],[83.81269,25.45364],[83.81281,25.4482],[83.81959,25.45026],[83.82537,25.4459],[83.83498,25.4475],[83.84263,25.44658],[83.84652,25.4388],[83.84674,25.43471],[83.83299,25.43103],[83.83179,25.43217],[83.83288,25.43566],[83.82914,25.43621],[83.82151,25.43434],[83.8124,25.42962],[83.80451,25.43066],[83.80061,25.42891],[83.80096,25.42549],[83.81302,25.4231],[83.81422,25.42003],[83.8067,25.40793],[83.78965,25.39677],[83.78271,25.39713],[83.78169,25.39223],[83.77892,25.39175],[83.77226,25.38631],[83.77412,25.38408],[83.77662,25.38403],[83.77616,25.37803],[83.77971,25.37715],[83.77703,25.37454],[83.77957,25.37324],[83.77873,25.36781],[83.78237,25.36745],[83.78541,25.37011],[83.79011,25.3675],[83.79234,25.36873],[83.79341,25.36703],[83.79808,25.3698],[83.80148,25.36765],[83.80101,25.37155],[83.80817,25.37041],[83.80993,25.37155],[83.81206,25.36637],[83.81013,25.36447],[83.81294,25.36396],[83.8128,25.36237],[83.81495,25.36122],[83.8147,25.35874],[83.82114,25.35109],[83.82471,25.3514],[83.82809,25.34846],[83.82942,25.34475],[83.83062,25.34587],[83.83213,25.34438],[83.83946,25.34421],[83.8396,25.34241],[83.84408,25.33975],[83.84204,25.33657],[83.84465,25.33462],[83.84592,25.33551],[83.85107,25.33371],[83.85633,25.33024],[83.85948,25.32998],[83.86157,25.32747],[83.863,25.3284],[83.86486,25.32718],[83.86424,25.32554],[83.86719,25.32475],[83.86867,25.31949],[83.87298,25.31761],[83.87619,25.31271],[83.88461,25.31259],[83.8848,25.30973],[83.88683,25.30982],[83.88751,25.30768],[83.89154,25.30564],[83.89301,25.30233],[83.89587,25.3023],[83.89417,25.29929],[83.89699,25.29851],[83.89823,25.294],[83.90277,25.29456],[83.9066,25.29753],[83.91452,25.2953],[83.92202,25.29563],[83.92642,25.29453],[83.92875,25.29253],[83.92824,25.29055],[83.93341,25.29066],[83.93417,25.28835],[83.93569,25.28929],[83.93917,25.28655],[83.94296,25.2888],[83.94455,25.28519],[83.94774,25.28832],[83.94899,25.28517],[83.95228,25.28668],[83.95772,25.28615],[83.95768,25.28452],[83.97096,25.28075],[83.97278,25.27707],[83.97635,25.27508],[83.97655,25.2721],[83.97867,25.2729],[83.99018,25.26688],[83.99687,25.2706],[84.00157,25.26882],[84.00301,25.26963],[84.00531,25.2677],[84.00422,25.26657],[84.00531,25.26524],[84.00626,25.26625],[84.00783,25.26463],[84.01102,25.26521],[84.01393,25.26147],[84.01751,25.26313],[84.01888,25.26992],[84.03473,25.26765],[84.03919,25.28141],[84.03838,25.28783],[84.04692,25.28845],[84.0477,25.29924],[84.05737,25.29756],[84.05875,25.30095],[84.05801,25.31056],[84.05609,25.31049],[84.05495,25.31248],[84.05624,25.31322],[84.05499,25.31565],[84.05628,25.3166],[84.05319,25.31741],[84.05328,25.32048],[84.05094,25.32231],[84.05196,25.32336],[84.04934,25.32532],[84.05066,25.32728],[84.04657,25.32941],[84.04548,25.32831],[84.04076,25.33329],[84.03783,25.33146],[84.03643,25.33255],[84.03721,25.33468],[84.03468,25.33822],[84.03537,25.34133],[84.03402,25.34145],[84.036,25.34322],[84.04569,25.34262],[84.04968,25.34816],[84.05154,25.34806],[84.05435,25.35749],[84.04552,25.35865],[84.04709,25.37057],[84.0454,25.37524],[84.06108,25.37245],[84.06453,25.37325],[84.06428,25.3707],[84.07683,25.36958],[84.07749,25.36615],[84.08888,25.36582],[84.09362,25.36009],[84.09761,25.35932],[84.10078,25.36001],[84.09882,25.36919],[84.10357,25.36801],[84.103,25.36185],[84.11956,25.35822],[84.12279,25.36513],[84.12974,25.36387],[84.13088,25.36913],[84.13955,25.36974],[84.14034,25.37335],[84.14939,25.37202],[84.14968,25.36939],[84.16297,25.36701],[84.16502,25.36747],[84.16648,25.37101],[84.18245,25.36958],[84.18236,25.36743],[84.21129,25.36616],[84.21849,25.36164],[84.21626,25.35455],[84.21929,25.35304],[84.2202,25.34641],[84.23143,25.34446],[84.23497,25.35676],[84.25002,25.35411],[84.25419,25.35414],[84.25477,25.35584],[84.26823,25.35328],[84.26986,25.35785],[84.27174,25.3574],[84.27452,25.36206],[84.28096,25.36185],[84.28165,25.36374],[84.28433,25.36346],[84.28687,25.37498],[84.28472,25.37522],[84.2864,25.38355],[84.29149,25.39166],[84.3013,25.38696],[84.30475,25.38682],[84.30636,25.38945],[84.30688,25.39281],[84.30474,25.39281],[84.30794,25.40214],[84.30636,25.40223],[84.30539,25.40471],[84.30606,25.4221],[84.30886,25.42416],[84.31846,25.42606],[84.32051,25.43262],[84.34852,25.43298],[84.35027,25.43493],[84.35105,25.44391],[84.34366,25.44419],[84.34415,25.44715],[84.35086,25.452],[84.35259,25.4515],[84.35364,25.45502],[84.35576,25.45491],[84.35749,25.457],[84.35693,25.45878],[84.35887,25.45941],[84.35823,25.46104],[84.35994,25.4614],[84.36017,25.4641],[84.36238,25.46451],[84.36191,25.46661],[84.36403,25.46741],[84.36215,25.47056],[84.36389,25.47152],[84.3634,25.47269],[84.35199,25.47442],[84.35362,25.49254],[84.34029,25.49361],[84.34089,25.50411],[84.3435,25.50538],[84.34375,25.51563],[84.32819,25.51686],[84.32904,25.52777],[84.32795,25.53151],[84.32607,25.53263],[84.32549,25.55179],[84.33186,25.55624],[84.33405,25.56777],[84.32972,25.58196],[84.33105,25.58218],[84.33379,25.58848],[84.33302,25.59005],[84.33525,25.59111],[84.33743,25.59818],[84.34581,25.60718],[84.34834,25.62249],[84.34325,25.62546],[84.34324,25.62815],[84.34157,25.62908],[84.33623,25.62852],[84.34978,25.63859],[84.34605,25.64361],[84.34064,25.63942],[84.33585,25.65027],[84.33425,25.65055],[84.33179,25.65481],[84.32728,25.65503],[84.32725,25.65979],[84.33415,25.66354],[84.33782,25.66179],[84.34279,25.66582],[84.34453,25.66397],[84.34155,25.65998],[84.34262,25.65869],[84.34918,25.66533],[84.34945,25.67607],[84.34865,25.6751],[84.34017,25.67768],[84.33758,25.67602],[84.33526,25.6851],[84.34193,25.68436],[84.34391,25.68571],[84.34348,25.68237],[84.35373,25.68237],[84.35713,25.68448],[84.35718,25.69314],[84.3637,25.70685],[84.3749,25.72319],[84.38782,25.7376],[84.39012,25.73691],[84.39182,25.74087]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"195","area_level":"District","area_name":"Darbhanga","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.72619,26.44313],[85.72213,26.44643],[85.7152,26.44348],[85.7117,26.44641],[85.71112,26.44474],[85.70895,26.44512],[85.709,26.44354],[85.70591,26.44412],[85.70589,26.43763],[85.71214,26.43471],[85.70795,26.42888],[85.70588,26.42054],[85.70273,26.41965],[85.69705,26.41433],[85.69135,26.41517],[85.68842,26.41364],[85.68919,26.40856],[85.6874,26.40159],[85.69694,26.39038],[85.69489,26.38975],[85.69088,26.37584],[85.69621,26.37431],[85.69978,26.37639],[85.70037,26.37111],[85.70275,26.36944],[85.70269,26.36624],[85.70577,26.36209],[85.7101,26.36012],[85.71505,26.36046],[85.71464,26.35754],[85.71138,26.35573],[85.70429,26.35576],[85.70322,26.35282],[85.7004,26.3521],[85.68937,26.35324],[85.68205,26.35583],[85.67668,26.35125],[85.67846,26.34938],[85.68553,26.34907],[85.68608,26.34489],[85.69427,26.34339],[85.69479,26.34135],[85.70102,26.33666],[85.70095,26.35153],[85.70747,26.35187],[85.70814,26.35003],[85.72076,26.34938],[85.73006,26.34173],[85.72738,26.32761],[85.72934,26.3245],[85.73406,26.32269],[85.72979,26.31484],[85.72463,26.31679],[85.7249,26.31408],[85.7281,26.31028],[85.72733,26.30876],[85.7223,26.30707],[85.72222,26.31274],[85.71393,26.31289],[85.71095,26.31181],[85.70967,26.30754],[85.70718,26.30833],[85.70545,26.30632],[85.70396,26.30199],[85.70537,26.29493],[85.71577,26.29238],[85.7153,26.27713],[85.71775,26.27564],[85.71681,26.27162],[85.71372,26.27249],[85.71065,26.27018],[85.70747,26.27003],[85.70598,26.26564],[85.70182,26.26525],[85.69952,26.26298],[85.6986,26.25862],[85.69569,26.25886],[85.69543,26.25674],[85.70184,26.24933],[85.70536,26.24882],[85.70751,26.2514],[85.71241,26.24898],[85.71719,26.24895],[85.71411,26.23983],[85.70402,26.24071],[85.6999,26.23901],[85.69637,26.22623],[85.6998,26.22475],[85.70657,26.22549],[85.70697,26.21562],[85.71016,26.21512],[85.71041,26.21138],[85.71849,26.20974],[85.71771,26.20169],[85.72517,26.2012],[85.72449,26.19937],[85.72613,26.19803],[85.72355,26.18748],[85.72532,26.18013],[85.72398,26.17679],[85.72083,26.17648],[85.72115,26.16414],[85.74178,26.1607],[85.74435,26.15349],[85.75058,26.14976],[85.75025,26.14778],[85.75428,26.14383],[85.75114,26.14363],[85.751,26.13924],[85.74228,26.1307],[85.73976,26.1304],[85.73893,26.12718],[85.728,26.12569],[85.72639,26.11281],[85.72844,26.11041],[85.73283,26.11104],[85.73451,26.10774],[85.72636,26.10608],[85.72404,26.10778],[85.7163,26.10893],[85.71453,26.10613],[85.71285,26.09636],[85.7135,26.09],[85.71935,26.08257],[85.72095,26.07482],[85.71981,26.06729],[85.72687,26.0709],[85.72993,26.07061],[85.72883,26.0653],[85.72216,26.05883],[85.72422,26.05428],[85.7198,26.04999],[85.7202,26.04754],[85.72743,26.04694],[85.72887,26.04005],[85.73331,26.03742],[85.73573,26.03865],[85.74046,26.04883],[85.74251,26.04951],[85.7465,26.04511],[85.74966,26.03601],[85.75738,26.03201],[85.75859,26.03387],[85.75418,26.04201],[85.75441,26.04683],[85.75577,26.04816],[85.76109,26.04684],[85.76166,26.05278],[85.76502,26.05255],[85.76569,26.0552],[85.76559,26.04253],[85.77512,26.04537],[85.7805,26.03703],[85.78519,26.04071],[85.79519,26.0359],[85.81165,26.03604],[85.81633,26.02896],[85.81933,26.03021],[85.82979,26.02721],[85.833,26.02724],[85.83431,26.0303],[85.84068,26.03551],[85.84637,26.03639],[85.84946,26.03292],[85.84598,26.03027],[85.84509,26.02226],[85.84913,26.0207],[85.86266,26.02307],[85.86538,26.02221],[85.86472,26.01625],[85.87189,26.00916],[85.8713,26.00367],[85.87352,25.9991],[85.87168,25.99556],[85.87497,25.99098],[85.87931,25.98941],[85.88208,25.99417],[85.89058,25.99387],[85.89284,25.99153],[85.89265,25.98632],[85.89444,25.98313],[85.91241,25.97268],[85.91273,25.97817],[85.91919,25.98158],[85.92211,25.97722],[85.92797,25.97384],[85.9282,25.96309],[85.93077,25.95955],[85.93029,25.95527],[85.9353,25.9547],[85.93727,25.95657],[85.93728,25.96342],[85.94123,25.96639],[85.94293,25.9639],[85.94031,25.95649],[85.94539,25.95302],[85.94806,25.95296],[85.95379,25.9574],[85.95148,25.9584],[85.95112,25.96224],[85.96085,25.96029],[85.96011,25.95834],[85.96269,25.95715],[85.96167,25.95571],[85.96645,25.95536],[85.96711,25.95263],[85.97021,25.95114],[85.9818,25.95408],[85.98715,25.95335],[85.9879,25.94848],[85.99588,25.94671],[85.99128,25.94221],[85.99185,25.93417],[85.99918,25.93369],[85.99869,25.92839],[86.00121,25.92777],[86.00181,25.9332],[86.00513,25.93204],[86.00611,25.9415],[86.00992,25.9419],[86.01058,25.93886],[86.02151,25.94245],[86.03486,25.94185],[86.03749,25.94505],[86.0458,25.93914],[86.0411,25.93509],[86.03773,25.93535],[86.03634,25.93282],[86.03823,25.93076],[86.04023,25.92969],[86.0509,25.93278],[86.05331,25.92967],[86.05606,25.93266],[86.0567,25.92985],[86.05289,25.92547],[86.06074,25.923],[86.06278,25.91754],[86.06773,25.9198],[86.06885,25.91515],[86.07486,25.91744],[86.0775,25.90984],[86.07988,25.91346],[86.08524,25.90861],[86.08699,25.90448],[86.09039,25.90639],[86.09305,25.89723],[86.09554,25.90303],[86.10019,25.90352],[86.09896,25.90548],[86.09977,25.91329],[86.10447,25.91001],[86.10362,25.90442],[86.10837,25.90342],[86.10861,25.89425],[86.12012,25.8942],[86.12262,25.89253],[86.12414,25.89698],[86.12671,25.89634],[86.12766,25.89804],[86.15379,25.89721],[86.15464,25.89476],[86.15972,25.8912],[86.15963,25.88819],[86.15679,25.88469],[86.16009,25.88132],[86.1697,25.88274],[86.17023,25.88769],[86.17541,25.88872],[86.17418,25.89515],[86.18112,25.8945],[86.18113,25.89216],[86.18556,25.89204],[86.18629,25.89517],[86.19368,25.89648],[86.1954,25.89229],[86.20545,25.8915],[86.20691,25.8894],[86.21334,25.88779],[86.21469,25.89244],[86.23073,25.89579],[86.23374,25.88484],[86.23941,25.88118],[86.23389,25.87161],[86.23575,25.86867],[86.2353,25.86498],[86.23002,25.86272],[86.22965,25.86124],[86.23291,25.85858],[86.23305,25.85182],[86.23643,25.85439],[86.24116,25.85377],[86.24284,25.85197],[86.23921,25.8439],[86.22885,25.84201],[86.23111,25.83362],[86.23108,25.82221],[86.22965,25.81995],[86.22585,25.81858],[86.22304,25.81129],[86.22486,25.80705],[86.23468,25.80671],[86.2337,25.80156],[86.23671,25.796],[86.23503,25.79456],[86.23272,25.79604],[86.22761,25.79352],[86.22808,25.79195],[86.2167,25.7872],[86.22495,25.77705],[86.24417,25.77396],[86.25026,25.77051],[86.25568,25.76978],[86.26084,25.76007],[86.26101,25.75409],[86.26918,25.75316],[86.27333,25.75531],[86.27659,25.75423],[86.27849,25.76013],[86.28754,25.76286],[86.2922,25.76669],[86.29248,25.76281],[86.29718,25.76203],[86.29857,25.76365],[86.30088,25.76334],[86.30336,25.76236],[86.30381,25.75989],[86.30758,25.76083],[86.3105,25.75926],[86.31139,25.75785],[86.30996,25.7552],[86.31504,25.74816],[86.31573,25.74219],[86.31755,25.74082],[86.31975,25.7438],[86.32221,25.74353],[86.32254,25.73738],[86.32616,25.73894],[86.33235,25.73497],[86.34529,25.73921],[86.35016,25.73648],[86.35364,25.7392],[86.36144,25.73866],[86.36777,25.74151],[86.37046,25.73565],[86.3696,25.73076],[86.37379,25.7284],[86.37673,25.72963],[86.38249,25.72861],[86.39042,25.72394],[86.39225,25.71956],[86.40077,25.72422],[86.40755,25.721],[86.41298,25.72109],[86.41599,25.72761],[86.40846,25.72969],[86.40445,25.73232],[86.40403,25.73484],[86.40555,25.73823],[86.40469,25.74177],[86.40862,25.74941],[86.41269,25.74869],[86.41115,25.75347],[86.41362,25.76275],[86.41077,25.76332],[86.41217,25.76435],[86.4103,25.76581],[86.40754,25.76562],[86.41039,25.76963],[86.41029,25.77251],[86.40669,25.7719],[86.40342,25.77349],[86.40558,25.77587],[86.40452,25.77882],[86.40705,25.78002],[86.40575,25.78293],[86.41309,25.78269],[86.41393,25.78396],[86.41149,25.78355],[86.41024,25.78705],[86.40775,25.78771],[86.41164,25.78935],[86.41365,25.79381],[86.40943,25.79274],[86.40548,25.79504],[86.40795,25.79695],[86.40558,25.79882],[86.40654,25.80154],[86.40083,25.80065],[86.3996,25.80327],[86.40255,25.80471],[86.40187,25.81084],[86.39185,25.81261],[86.38931,25.80869],[86.38845,25.81072],[86.38147,25.81087],[86.37868,25.81349],[86.37711,25.81716],[86.38457,25.81802],[86.38386,25.82019],[86.38019,25.82241],[86.38438,25.8275],[86.37815,25.83229],[86.37706,25.82955],[86.37569,25.82969],[86.37172,25.83268],[86.37067,25.83664],[86.36867,25.83616],[86.36718,25.83966],[86.36916,25.84311],[86.36839,25.845],[86.37255,25.84743],[86.37096,25.84869],[86.36537,25.84851],[86.36246,25.85564],[86.35857,25.85592],[86.35466,25.85333],[86.35045,25.85472],[86.34712,25.85326],[86.34348,25.85622],[86.34531,25.85964],[86.34356,25.86154],[86.33934,25.86043],[86.33965,25.85865],[86.33178,25.85927],[86.32906,25.85256],[86.3278,25.85718],[86.32328,25.85446],[86.32343,25.857],[86.31933,25.85731],[86.31767,25.86028],[86.3163,25.85732],[86.31442,25.85725],[86.31644,25.8618],[86.3156,25.86301],[86.3134,25.86245],[86.31422,25.86669],[86.32262,25.86929],[86.32545,25.87401],[86.32487,25.88143],[86.33097,25.87986],[86.33021,25.88477],[86.3352,25.88722],[86.33572,25.90084],[86.34227,25.89988],[86.34213,25.90138],[86.34409,25.90221],[86.35013,25.90178],[86.34699,25.90626],[86.3474,25.9094],[86.35298,25.91371],[86.35622,25.92218],[86.36208,25.92179],[86.36227,25.92702],[86.36419,25.92727],[86.36265,25.9299],[86.36636,25.93544],[86.37111,25.93621],[86.37381,25.9329],[86.38074,25.93076],[86.38038,25.92439],[86.3998,25.92283],[86.40429,25.92383],[86.40469,25.92758],[86.40182,25.9299],[86.40154,25.93279],[86.40312,25.93482],[86.39654,25.93591],[86.39445,25.93837],[86.39293,25.93534],[86.38956,25.93871],[86.39155,25.93906],[86.39013,25.94103],[86.39051,25.94424],[86.38845,25.94579],[86.39217,25.94791],[86.39052,25.95026],[86.38285,25.94995],[86.38285,25.95256],[86.38641,25.95514],[86.38939,25.95512],[86.38754,25.96388],[86.38508,25.96449],[86.3825,25.96082],[86.38007,25.96146],[86.38194,25.96293],[86.38058,25.96487],[86.38221,25.96789],[86.38975,25.97163],[86.39165,25.97518],[86.39466,25.97629],[86.38817,25.98339],[86.39238,25.98714],[86.3891,25.99146],[86.39503,25.99004],[86.39722,25.99112],[86.39085,25.99598],[86.39037,25.99712],[86.39291,25.99921],[86.3921,26.00148],[86.38631,26.0008],[86.38652,26.00235],[86.38888,26.00276],[86.38549,26.00625],[86.38624,26.0083],[86.38362,26.00796],[86.38076,26.01057],[86.38268,26.01361],[86.38558,26.01294],[86.38632,26.01924],[86.38074,26.01721],[86.38479,26.02243],[86.38847,26.02305],[86.38648,26.02756],[86.38254,26.0264],[86.38492,26.02903],[86.38836,26.02901],[86.38738,26.03205],[86.38853,26.03365],[86.3834,26.0385],[86.38064,26.03687],[86.3811,26.03869],[86.37668,26.04024],[86.37684,26.0438],[86.38086,26.04475],[86.37885,26.05106],[86.37615,26.05136],[86.37334,26.06014],[86.36459,26.06386],[86.35867,26.0771],[86.35734,26.07665],[86.35569,26.07899],[86.34951,26.07946],[86.34486,26.08354],[86.34514,26.08493],[86.3422,26.08678],[86.3409,26.08608],[86.3401,26.08951],[86.33391,26.08813],[86.33248,26.0913],[86.33055,26.0916],[86.3313,26.10039],[86.32636,26.10103],[86.32624,26.10537],[86.33409,26.10445],[86.32339,26.12309],[86.32446,26.13321],[86.32601,26.13514],[86.32524,26.13846],[86.33389,26.14529],[86.33469,26.14795],[86.32979,26.14895],[86.33024,26.15385],[86.3248,26.15733],[86.32548,26.16078],[86.31568,26.16102],[86.31441,26.16482],[86.30434,26.16559],[86.296,26.16426],[86.29586,26.16822],[86.29356,26.17289],[86.29159,26.1725],[86.29024,26.1743],[86.28902,26.17883],[86.2855,26.17763],[86.27709,26.17871],[86.27688,26.1773],[86.26914,26.17828],[86.26538,26.18075],[86.26526,26.18242],[86.26977,26.18721],[86.26949,26.19049],[86.25972,26.19181],[86.25461,26.19493],[86.24495,26.19491],[86.24566,26.20184],[86.24358,26.20374],[86.24425,26.2063],[86.24807,26.21105],[86.24766,26.21425],[86.25222,26.21751],[86.24832,26.2189],[86.24842,26.22581],[86.23596,26.22592],[86.23172,26.2239],[86.22982,26.22426],[86.22923,26.22654],[86.22085,26.22669],[86.21104,26.22144],[86.1991,26.22219],[86.19843,26.22018],[86.19633,26.22005],[86.17924,26.22226],[86.17873,26.22463],[86.17542,26.22543],[86.17476,26.2289],[86.17206,26.22306],[86.16476,26.22685],[86.15683,26.22594],[86.15689,26.22994],[86.14954,26.23525],[86.14,26.23054],[86.13569,26.22371],[86.13211,26.22243],[86.13056,26.2194],[86.12325,26.21829],[86.12588,26.21555],[86.1243,26.21038],[86.12197,26.20874],[86.11868,26.20185],[86.11286,26.20233],[86.11429,26.19716],[86.10972,26.19234],[86.10038,26.19642],[86.10445,26.19979],[86.09609,26.20084],[86.0941,26.20347],[86.08952,26.2035],[86.08907,26.2063],[86.08661,26.20667],[86.08664,26.21104],[86.07495,26.21334],[86.07348,26.2129],[86.07467,26.20738],[86.07326,26.20578],[86.05943,26.20829],[86.05738,26.19961],[86.05894,26.19674],[86.05305,26.19163],[86.04831,26.19217],[86.04831,26.19051],[86.04464,26.19058],[86.03901,26.19311],[86.02862,26.19393],[86.02704,26.19528],[86.02818,26.20072],[86.03117,26.2024],[86.03226,26.20746],[86.0311,26.21177],[86.02864,26.21315],[86.02913,26.21572],[86.04037,26.22506],[86.04465,26.23489],[86.03222,26.23703],[86.03143,26.24633],[86.0141,26.24669],[86.0141,26.25303],[86.01043,26.25367],[86.01316,26.25745],[86.01029,26.25831],[86.00971,26.26018],[86.00009,26.26222],[86.00008,26.2653],[86.00308,26.26679],[86.00371,26.26957],[86.00016,26.27074],[86.00094,26.28162],[85.99766,26.28584],[86.00286,26.29076],[86.003,26.29439],[86.0054,26.29471],[86.00937,26.29986],[86.01378,26.30168],[86.00919,26.30202],[86.00396,26.30566],[85.99766,26.30721],[85.99663,26.31064],[85.99486,26.31071],[85.99143,26.32157],[85.97903,26.32297],[85.97413,26.31815],[85.96908,26.30798],[85.96258,26.30862],[85.96185,26.30561],[85.95259,26.30522],[85.94943,26.30593],[85.948,26.30804],[85.94632,26.30646],[85.9385,26.30966],[85.9279,26.30448],[85.92237,26.30759],[85.9232,26.30911],[85.91949,26.30935],[85.91936,26.30631],[85.92146,26.30348],[85.91694,26.30398],[85.91926,26.29863],[85.91886,26.29367],[85.9219,26.29349],[85.91872,26.29074],[85.92188,26.28971],[85.91977,26.284],[85.90289,26.2859],[85.89977,26.28359],[85.89914,26.27932],[85.8919,26.27752],[85.8915,26.27596],[85.8868,26.277],[85.88611,26.27854],[85.88203,26.2774],[85.88264,26.27424],[85.87977,26.27427],[85.87627,26.27863],[85.8693,26.27997],[85.86693,26.28239],[85.85857,26.2822],[85.85799,26.27913],[85.85549,26.27765],[85.84991,26.28295],[85.84454,26.2833],[85.84062,26.27954],[85.83293,26.28216],[85.83166,26.28515],[85.82825,26.28544],[85.82828,26.28681],[85.81544,26.29499],[85.8198,26.29795],[85.82072,26.30244],[85.81499,26.30648],[85.8157,26.30791],[85.81817,26.30766],[85.81695,26.30976],[85.82103,26.31527],[85.81808,26.31548],[85.82254,26.32941],[85.82551,26.32964],[85.83189,26.32519],[85.83423,26.32496],[85.8361,26.32721],[85.83469,26.33491],[85.83741,26.33756],[85.83749,26.34358],[85.82989,26.34226],[85.8238,26.34501],[85.82095,26.3445],[85.82065,26.34587],[85.82241,26.3544],[85.8261,26.35658],[85.83221,26.35556],[85.83404,26.35899],[85.83061,26.35994],[85.83141,26.36127],[85.82618,26.36848],[85.82198,26.36918],[85.8193,26.37291],[85.82013,26.37439],[85.8234,26.37433],[85.82456,26.37944],[85.83294,26.37583],[85.83586,26.38081],[85.83982,26.38042],[85.83973,26.3817],[85.83652,26.38264],[85.83693,26.3879],[85.83449,26.38821],[85.83147,26.38466],[85.82335,26.3858],[85.81735,26.39439],[85.81873,26.39758],[85.82164,26.39839],[85.82183,26.40056],[85.81994,26.40073],[85.8204,26.40875],[85.81514,26.40841],[85.81053,26.41048],[85.79637,26.4112],[85.79375,26.40543],[85.78865,26.40455],[85.79054,26.40068],[85.78534,26.40229],[85.7778,26.40173],[85.77379,26.39886],[85.76806,26.40168],[85.75976,26.39971],[85.76161,26.40734],[85.75989,26.40918],[85.76267,26.41085],[85.76304,26.41434],[85.76496,26.41527],[85.76861,26.43258],[85.74858,26.43259],[85.73641,26.43429],[85.73428,26.43516],[85.73437,26.43862],[85.72619,26.44313]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"196","area_level":"District","area_name":"Gaya","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.18352,25.07087],[85.18314,25.07301],[85.17244,25.071],[85.17119,25.06662],[85.15435,25.0688],[85.15217,25.06676],[85.15354,25.05491],[85.14964,25.05235],[85.1447,25.05216],[85.13879,25.05532],[85.12667,25.05393],[85.12446,25.05045],[85.12445,25.04655],[85.12226,25.04627],[85.11847,25.04186],[85.11993,25.03861],[85.11896,25.03206],[85.10948,25.01529],[85.09901,25.00792],[85.09039,24.99177],[85.07623,24.99279],[85.08213,24.99467],[85.08262,24.99987],[85.08,25.00148],[85.07128,24.99659],[85.06921,25.00235],[85.06616,25.00312],[85.06064,25.00138],[85.05766,25.00254],[85.05089,24.9977],[85.04511,25.00468],[85.04578,25.01453],[85.04358,25.01907],[85.0435,25.03068],[85.0348,25.03179],[85.0263,25.03062],[85.02361,25.02036],[85.02661,25.0194],[85.0241,25.01739],[85.017,25.01785],[85.01592,25.02213],[85.00048,25.02153],[84.99906,25.02455],[84.99181,25.02567],[84.99156,25.02288],[84.99452,25.02109],[84.99474,25.01293],[84.99253,25.00933],[84.98582,25.00899],[84.98435,25.00281],[84.96653,25.00496],[84.96697,25.00285],[84.96215,24.99869],[84.95861,24.99831],[84.95626,24.99485],[84.95609,24.9873],[84.93811,24.98813],[84.93465,24.98689],[84.93381,24.99136],[84.93088,24.99134],[84.93079,24.99377],[84.9276,24.9954],[84.93163,25.00066],[84.92863,25.01554],[84.9256,25.01525],[84.92243,25.01755],[84.92171,25.02318],[84.90945,25.02607],[84.91063,25.02996],[84.9093,25.03445],[84.91555,25.03873],[84.92092,25.0392],[84.92151,25.04341],[84.92477,25.04693],[84.92705,25.05441],[84.921,25.05747],[84.91938,25.05985],[84.91361,25.05863],[84.90903,25.05997],[84.90996,25.06531],[84.89799,25.06602],[84.89589,25.06264],[84.88607,25.06069],[84.87067,25.06363],[84.86382,25.05755],[84.86065,25.06135],[84.84621,25.06365],[84.84354,25.06034],[84.83443,25.06043],[84.83237,25.06654],[84.82478,25.06538],[84.82392,25.06964],[84.81189,25.07225],[84.81089,25.06981],[84.80497,25.07006],[84.79825,25.06323],[84.79393,25.06398],[84.79339,25.06623],[84.78241,25.06611],[84.78003,25.06447],[84.77755,25.05881],[84.77634,25.05216],[84.77118,25.05101],[84.76911,25.04762],[84.7569,25.05378],[84.75196,25.0529],[84.74792,25.05453],[84.73402,25.05525],[84.73228,25.04418],[84.72921,25.04382],[84.73009,25.03971],[84.71682,25.04187],[84.69881,25.04199],[84.69943,25.03165],[84.70356,25.02898],[84.70385,25.02521],[84.70862,25.02469],[84.70867,25.023],[84.71666,25.01787],[84.71762,25.00642],[84.72078,25.00464],[84.73004,25.00346],[84.73136,25.00342],[84.73203,25.00618],[84.74695,25.0042],[84.74672,24.99707],[84.74463,24.99391],[84.74734,24.98988],[84.74603,24.98482],[84.7424,24.9853],[84.74065,24.98394],[84.73496,24.98506],[84.73319,24.98213],[84.73107,24.9823],[84.73001,24.97774],[84.73038,24.96957],[84.73674,24.96547],[84.73968,24.96542],[84.73996,24.96258],[84.73724,24.95665],[84.72443,24.95627],[84.72383,24.9548],[84.71401,24.95588],[84.71361,24.95446],[84.711,24.95416],[84.71069,24.95119],[84.71579,24.94821],[84.71379,24.93838],[84.71679,24.93757],[84.71754,24.93408],[84.7203,24.9329],[84.71884,24.92607],[84.71664,24.92378],[84.71781,24.91711],[84.70892,24.91602],[84.70874,24.90838],[84.70626,24.9076],[84.70482,24.90083],[84.68937,24.90268],[84.68769,24.89918],[84.68284,24.90134],[84.6814,24.89828],[84.68229,24.89179],[84.68022,24.8903],[84.67532,24.8899],[84.6704,24.892],[84.66833,24.88927],[84.66363,24.88818],[84.66337,24.88564],[84.66064,24.88394],[84.67215,24.8812],[84.67052,24.87642],[84.67194,24.87582],[84.67126,24.87289],[84.66885,24.87078],[84.66437,24.87091],[84.66337,24.87712],[84.64836,24.87971],[84.64112,24.87845],[84.6401,24.87417],[84.64323,24.87375],[84.64253,24.86495],[84.64639,24.86404],[84.65099,24.8601],[84.65128,24.85512],[84.66429,24.85139],[84.66515,24.84915],[84.67349,24.84839],[84.6726,24.8434],[84.67471,24.84323],[84.67466,24.84038],[84.67614,24.84024],[84.67511,24.83163],[84.68777,24.83006],[84.6885,24.833],[84.6955,24.83203],[84.69545,24.82657],[84.6999,24.82507],[84.69841,24.81561],[84.70481,24.81052],[84.70344,24.80057],[84.70462,24.7993],[84.7352,24.79467],[84.73562,24.78833],[84.72474,24.78836],[84.72471,24.78199],[84.73135,24.78043],[84.7313,24.77539],[84.73552,24.77397],[84.73471,24.7653],[84.72047,24.76645],[84.71692,24.76571],[84.71653,24.76344],[84.71825,24.76268],[84.71837,24.75523],[84.7273,24.75312],[84.72642,24.74617],[84.72898,24.74405],[84.72795,24.73844],[84.72908,24.73566],[84.72263,24.69913],[84.71358,24.6993],[84.70685,24.69692],[84.70288,24.69874],[84.69689,24.68664],[84.69996,24.67865],[84.69635,24.68001],[84.68795,24.67683],[84.68106,24.68008],[84.66257,24.6826],[84.66417,24.67906],[84.65757,24.67912],[84.65059,24.6742],[84.64551,24.67891],[84.64584,24.67281],[84.64285,24.66717],[84.64538,24.6634],[84.63883,24.66503],[84.63817,24.6538],[84.63478,24.65012],[84.62447,24.6518],[84.61164,24.6586],[84.6098,24.65319],[84.60272,24.65578],[84.59887,24.63857],[84.59901,24.6242],[84.60607,24.62502],[84.59263,24.61488],[84.59727,24.60676],[84.59311,24.60407],[84.5969,24.59642],[84.59209,24.59542],[84.58903,24.59067],[84.58906,24.58779],[84.57558,24.58122],[84.57242,24.57596],[84.56977,24.57575],[84.56547,24.57103],[84.56411,24.56811],[84.56776,24.56611],[84.57741,24.5672],[84.58126,24.5618],[84.57572,24.55997],[84.56912,24.55507],[84.57174,24.5517],[84.56898,24.54917],[84.57031,24.54669],[84.56954,24.54425],[84.56287,24.54085],[84.55537,24.53321],[84.55102,24.53313],[84.54782,24.53012],[84.54712,24.52701],[84.53921,24.5255],[84.53061,24.52683],[84.52402,24.52488],[84.51889,24.5255],[84.51025,24.52006],[84.5011,24.51806],[84.48985,24.5126],[84.48496,24.51347],[84.48341,24.51444],[84.48285,24.52021],[84.47612,24.52594],[84.46764,24.53655],[84.45632,24.53438],[84.45308,24.53194],[84.44779,24.53543],[84.44499,24.54321],[84.44442,24.56157],[84.43957,24.5665],[84.43758,24.57217],[84.42885,24.57142],[84.42855,24.56405],[84.42137,24.552],[84.41956,24.55659],[84.41379,24.56084],[84.40734,24.56312],[84.40581,24.56698],[84.40807,24.56758],[84.40864,24.57043],[84.40662,24.57249],[84.40278,24.57277],[84.39854,24.56743],[84.39176,24.56797],[84.39265,24.56457],[84.39104,24.56213],[84.39482,24.55495],[84.39145,24.55123],[84.39293,24.55019],[84.38984,24.54732],[84.39077,24.54441],[84.38215,24.54277],[84.38471,24.54036],[84.38435,24.53325],[84.3862,24.53232],[84.38626,24.52977],[84.3766,24.52788],[84.37075,24.52876],[84.37345,24.52494],[84.37236,24.52327],[84.37553,24.51542],[84.37149,24.50917],[84.34765,24.49895],[84.34621,24.49431],[84.33297,24.49035],[84.32801,24.48731],[84.31669,24.48679],[84.30262,24.47978],[84.2961,24.47348],[84.29603,24.4699],[84.29152,24.46654],[84.29255,24.46147],[84.29702,24.45498],[84.29738,24.44939],[84.32179,24.44637],[84.32512,24.43905],[84.32798,24.43908],[84.3356,24.43149],[84.33521,24.42928],[84.33681,24.42885],[84.33557,24.4249],[84.33343,24.42604],[84.32869,24.42511],[84.32445,24.42747],[84.3206,24.42329],[84.32053,24.42107],[84.32282,24.41794],[84.3297,24.4192],[84.33035,24.42171],[84.33453,24.42064],[84.33298,24.41834],[84.33363,24.41269],[84.33035,24.41059],[84.33314,24.4047],[84.34455,24.39945],[84.34162,24.39355],[84.34929,24.39076],[84.36142,24.389],[84.36328,24.38832],[84.36348,24.38548],[84.36919,24.38544],[84.37346,24.38346],[84.3787,24.38798],[84.38824,24.38929],[84.38671,24.38523],[84.38882,24.38451],[84.38694,24.38233],[84.39353,24.37667],[84.39387,24.37339],[84.39862,24.37274],[84.40657,24.37489],[84.40521,24.37038],[84.40057,24.36678],[84.40036,24.36463],[84.41004,24.36258],[84.41651,24.359],[84.43111,24.35652],[84.42732,24.35513],[84.42498,24.34919],[84.42301,24.33549],[84.4244,24.32984],[84.45128,24.33281],[84.45183,24.3373],[84.45961,24.33709],[84.4655,24.33151],[84.46376,24.32802],[84.46797,24.32445],[84.46512,24.32272],[84.46639,24.31731],[84.47228,24.31466],[84.47717,24.31714],[84.48449,24.31267],[84.48986,24.31646],[84.49572,24.32361],[84.49546,24.32534],[84.50529,24.33133],[84.50762,24.32481],[84.50536,24.3245],[84.50345,24.32053],[84.4991,24.3198],[84.4975,24.31626],[84.48861,24.3152],[84.48435,24.30197],[84.48879,24.30085],[84.49057,24.30394],[84.49682,24.29958],[84.4942,24.29612],[84.48916,24.29452],[84.49174,24.28615],[84.4959,24.28607],[84.50188,24.28839],[84.50464,24.296],[84.50701,24.29789],[84.50985,24.30523],[84.50997,24.31605],[84.51674,24.31773],[84.52319,24.33297],[84.53144,24.33821],[84.52452,24.35005],[84.53512,24.36315],[84.52833,24.37115],[84.52782,24.37574],[84.53221,24.37833],[84.54038,24.37597],[84.54692,24.37725],[84.54966,24.37345],[84.55379,24.37286],[84.55497,24.37523],[84.55922,24.37618],[84.56829,24.38217],[84.57236,24.38262],[84.57441,24.38563],[84.5741,24.38916],[84.56594,24.39246],[84.5621,24.39663],[84.56564,24.40129],[84.56819,24.40944],[84.57845,24.41028],[84.58275,24.41312],[84.58438,24.41267],[84.58855,24.40856],[84.58683,24.40058],[84.59172,24.40117],[84.59455,24.40484],[84.59678,24.40509],[84.60281,24.40345],[84.60448,24.40127],[84.61482,24.39894],[84.61682,24.4017],[84.61992,24.40076],[84.62207,24.40372],[84.62728,24.40179],[84.63079,24.40544],[84.63619,24.40045],[84.64266,24.39885],[84.64478,24.3991],[84.64626,24.40311],[84.64995,24.398],[84.65639,24.39669],[84.66109,24.39193],[84.66507,24.39088],[84.66809,24.39859],[84.66877,24.40282],[84.66761,24.4044],[84.67033,24.40492],[84.67018,24.40853],[84.6686,24.40972],[84.67448,24.41095],[84.67336,24.41692],[84.67596,24.42601],[84.6705,24.42812],[84.67231,24.43149],[84.67909,24.43559],[84.68208,24.44481],[84.68119,24.44623],[84.68532,24.45512],[84.68827,24.45785],[84.6915,24.45779],[84.70254,24.46223],[84.7033,24.46607],[84.70775,24.46764],[84.7102,24.47124],[84.71617,24.47211],[84.72069,24.46861],[84.72918,24.47015],[84.74311,24.48498],[84.7464,24.48613],[84.74805,24.496],[84.75558,24.49996],[84.76343,24.50025],[84.77795,24.50448],[84.78609,24.50383],[84.78951,24.5077],[84.78946,24.51828],[84.79732,24.52258],[84.79661,24.52555],[84.80189,24.53074],[84.80826,24.52204],[84.82556,24.52543],[84.83894,24.51261],[84.83985,24.50671],[84.83822,24.49768],[84.83534,24.49648],[84.83378,24.49359],[84.83537,24.48512],[84.83292,24.47021],[84.84061,24.46889],[84.84011,24.46078],[84.83707,24.4591],[84.8401,24.45219],[84.84878,24.45445],[84.85091,24.46204],[84.85401,24.46671],[84.86321,24.46111],[84.86399,24.45727],[84.87096,24.45829],[84.8725,24.46649],[84.8748,24.46721],[84.87971,24.46603],[84.88281,24.46205],[84.8846,24.46499],[84.88728,24.46328],[84.88566,24.45885],[84.8867,24.45323],[84.88528,24.45252],[84.88593,24.44564],[84.88466,24.4408],[84.88744,24.43196],[84.8849,24.4279],[84.88548,24.42575],[84.88228,24.42477],[84.89128,24.4146],[84.89264,24.40504],[84.90421,24.39546],[84.90499,24.3901],[84.90898,24.38354],[84.90034,24.37682],[84.90383,24.37225],[84.9162,24.3733],[84.92286,24.37753],[84.93748,24.37992],[84.94081,24.37625],[84.95479,24.37133],[84.9609,24.37342],[84.97489,24.37471],[84.98124,24.38084],[84.98382,24.38747],[84.99693,24.3947],[84.9983,24.39756],[85.00269,24.39728],[85.01912,24.4091],[85.0314,24.41465],[85.03874,24.41195],[85.04234,24.41428],[85.04591,24.40914],[85.06111,24.40586],[85.06297,24.40692],[85.06907,24.42221],[85.08102,24.43304],[85.07981,24.41546],[85.08187,24.41391],[85.08202,24.4159],[85.08309,24.41558],[85.08107,24.40599],[85.08313,24.39971],[85.07833,24.39669],[85.07733,24.39306],[85.08006,24.39342],[85.07324,24.37823],[85.07404,24.37703],[85.08533,24.37608],[85.08905,24.3725],[85.09869,24.37359],[85.10422,24.37825],[85.10269,24.38487],[85.11681,24.39143],[85.11662,24.3935],[85.12306,24.40198],[85.12765,24.402],[85.13261,24.4051],[85.1438,24.40718],[85.15222,24.41202],[85.16229,24.41262],[85.16541,24.41943],[85.16965,24.42125],[85.1739,24.42062],[85.17535,24.42385],[85.17034,24.42914],[85.17035,24.43316],[85.16657,24.43658],[85.16392,24.44389],[85.15719,24.4444],[85.15443,24.44817],[85.15529,24.45252],[85.15405,24.45499],[85.16075,24.46034],[85.16731,24.46112],[85.17217,24.45904],[85.18057,24.46245],[85.19127,24.46307],[85.1999,24.46047],[85.20293,24.46133],[85.20658,24.46733],[85.2221,24.46509],[85.22584,24.46313],[85.23221,24.47309],[85.2369,24.47105],[85.24128,24.47521],[85.24202,24.47958],[85.24017,24.4815],[85.24545,24.48471],[85.24911,24.49073],[85.26697,24.49126],[85.27486,24.49317],[85.28233,24.49167],[85.28488,24.49464],[85.28387,24.49883],[85.28558,24.5023],[85.28343,24.50332],[85.28057,24.51247],[85.28333,24.51698],[85.28137,24.52022],[85.28809,24.52326],[85.30403,24.52319],[85.3222,24.51999],[85.33389,24.52169],[85.33609,24.52332],[85.35087,24.523],[85.36559,24.52573],[85.3729,24.52497],[85.39193,24.53035],[85.39207,24.53481],[85.39428,24.53972],[85.39671,24.54007],[85.39749,24.5448],[85.37111,24.5528],[85.37078,24.55535],[85.35139,24.54943],[85.33498,24.55315],[85.32692,24.55667],[85.3203,24.55619],[85.31828,24.56686],[85.32359,24.56602],[85.33186,24.56962],[85.32954,24.57367],[85.3301,24.58148],[85.32848,24.5833],[85.3234,24.58167],[85.31728,24.58266],[85.31593,24.58425],[85.3148,24.58979],[85.31778,24.60087],[85.30825,24.60171],[85.31066,24.60786],[85.30953,24.60936],[85.31269,24.61304],[85.30964,24.62018],[85.30433,24.62274],[85.30329,24.63181],[85.3061,24.63646],[85.30631,24.64218],[85.31056,24.64146],[85.31439,24.63631],[85.32331,24.6333],[85.32155,24.64242],[85.32513,24.64636],[85.32193,24.64896],[85.31769,24.64678],[85.30443,24.64907],[85.30676,24.65678],[85.296,24.66298],[85.29454,24.66926],[85.29951,24.66854],[85.30128,24.67041],[85.30184,24.67508],[85.30884,24.67241],[85.3104,24.6691],[85.31765,24.66907],[85.32341,24.6651],[85.32475,24.66632],[85.32281,24.66838],[85.32215,24.67468],[85.32331,24.67665],[85.32273,24.68907],[85.32465,24.69352],[85.32816,24.69435],[85.33074,24.69761],[85.32984,24.71194],[85.32671,24.71419],[85.32361,24.7202],[85.32537,24.72709],[85.32149,24.72935],[85.31858,24.73032],[85.31778,24.72787],[85.3093,24.72734],[85.30662,24.72475],[85.30276,24.72448],[85.30372,24.73907],[85.29706,24.74056],[85.29445,24.73903],[85.29353,24.74032],[85.29556,24.74634],[85.28729,24.74763],[85.28429,24.74713],[85.28225,24.74455],[85.27116,24.74321],[85.26666,24.7441],[85.27576,24.76249],[85.27654,24.78025],[85.28267,24.78517],[85.28488,24.78412],[85.28541,24.78185],[85.29124,24.78113],[85.29801,24.79807],[85.30114,24.79972],[85.30409,24.80814],[85.30196,24.8153],[85.30631,24.82249],[85.30645,24.82527],[85.30412,24.82649],[85.30454,24.83117],[85.31026,24.83006],[85.31297,24.83452],[85.32012,24.83918],[85.31909,24.83971],[85.32043,24.84561],[85.32345,24.84639],[85.32364,24.84825],[85.32111,24.85286],[85.3208,24.85726],[85.32498,24.85561],[85.32682,24.85717],[85.33327,24.85686],[85.33815,24.85857],[85.33921,24.8666],[85.33383,24.86968],[85.33024,24.87701],[85.3302,24.88083],[85.34144,24.88697],[85.34563,24.88286],[85.35496,24.88262],[85.35545,24.88074],[85.36355,24.88033],[85.362,24.88324],[85.36445,24.8923],[85.37181,24.89296],[85.37932,24.89818],[85.37919,24.90062],[85.37649,24.90062],[85.37692,24.90665],[85.37872,24.90813],[85.37565,24.91004],[85.37595,24.91755],[85.37426,24.91832],[85.37401,24.92327],[85.37564,24.92744],[85.38246,24.928],[85.38229,24.93449],[85.37708,24.93522],[85.37366,24.94517],[85.38517,24.95544],[85.3885,24.96202],[85.3755,24.9734],[85.37201,24.97265],[85.37355,24.97665],[85.37923,24.98098],[85.38296,24.99166],[85.37551,24.99036],[85.36112,24.98436],[85.35606,24.98697],[85.35236,25.00106],[85.34753,25.00679],[85.34921,25.008],[85.35025,25.01422],[85.35312,25.01439],[85.35299,25.01823],[85.35121,25.02041],[85.33887,25.01988],[85.33791,25.01363],[85.32864,25.01162],[85.32837,25.00783],[85.31854,25.00911],[85.3147,25.02421],[85.30212,25.02759],[85.29514,25.02627],[85.2949,25.02335],[85.29365,25.0233],[85.29354,25.02588],[85.27473,25.02626],[85.2702,25.02785],[85.269,25.02645],[85.2715,25.02332],[85.26594,25.02226],[85.26391,25.02537],[85.25871,25.02282],[85.26031,25.02829],[85.25801,25.03394],[85.25582,25.03382],[85.25345,25.03078],[85.25175,25.03229],[85.25076,25.02881],[85.24842,25.02833],[85.25138,25.02158],[85.2485,25.01412],[85.24813,25.00678],[85.24699,25.00788],[85.23757,25.00717],[85.23879,25.01247],[85.23099,25.01479],[85.23078,25.03029],[85.22891,25.04278],[85.22691,25.0465],[85.22762,25.05435],[85.22123,25.05603],[85.21217,25.05438],[85.2109,25.04251],[85.21193,25.04202],[85.20483,25.03991],[85.20177,25.03199],[85.19486,25.032],[85.19138,25.02996],[85.18941,25.03177],[85.19124,25.03434],[85.19153,25.05016],[85.18059,25.05135],[85.1759,25.05042],[85.17453,25.0553],[85.17496,25.06184],[85.18194,25.06406],[85.18372,25.06706],[85.18352,25.07087]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"197","area_level":"District","area_name":"Gopalganj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.42682,26.63048],[84.429,26.63517],[84.41506,26.63489],[84.41956,26.62619],[84.4104,26.62322],[84.39988,26.62454],[84.39073,26.62109],[84.38619,26.62168],[84.37879,26.6147],[84.36487,26.61632],[84.35399,26.61998],[84.33502,26.61555],[84.33163,26.61249],[84.3258,26.61162],[84.3191,26.61151],[84.316,26.61448],[84.30727,26.61632],[84.30542,26.61427],[84.30325,26.61444],[84.30011,26.60378],[84.29582,26.60446],[84.29451,26.6026],[84.28582,26.6058],[84.28453,26.59959],[84.28132,26.5996],[84.26792,26.60165],[84.2686,26.60361],[84.26647,26.60574],[84.23956,26.61001],[84.2391,26.61298],[84.22923,26.61315],[84.22928,26.61654],[84.22795,26.61751],[84.21108,26.62001],[84.20848,26.62276],[84.20119,26.62477],[84.17443,26.62427],[84.17362,26.62282],[84.16927,26.62264],[84.16029,26.62451],[84.15662,26.62697],[84.15885,26.63213],[84.1587,26.6362],[84.14516,26.63472],[84.13632,26.63603],[84.13055,26.63346],[84.11251,26.6344],[84.11197,26.63064],[84.10296,26.63351],[84.1006,26.63595],[84.0865,26.63914],[84.0884,26.63487],[84.08735,26.62585],[84.0852,26.62383],[84.08863,26.61784],[84.08636,26.6124],[84.08998,26.60693],[84.08909,26.60302],[84.08488,26.59828],[84.08329,26.59249],[84.07784,26.59033],[84.07504,26.58591],[84.0756,26.58341],[84.06611,26.57699],[84.06688,26.57269],[84.06064,26.5682],[84.05838,26.56327],[84.05941,26.56128],[84.0551,26.55838],[84.05633,26.54417],[84.04812,26.5364],[84.02381,26.53191],[84.01406,26.52738],[84.00832,26.52194],[84.00649,26.52226],[84.00685,26.52528],[83.99882,26.52723],[83.99264,26.53317],[83.98274,26.53153],[83.97613,26.53351],[83.97511,26.52785],[83.97652,26.52583],[83.97151,26.51761],[83.97184,26.51421],[83.97362,26.51266],[83.97201,26.51028],[83.97391,26.5083],[83.97083,26.50751],[83.96347,26.50808],[83.96194,26.51023],[83.9517,26.50887],[83.94901,26.5102],[83.9484,26.51476],[83.95261,26.51635],[83.95279,26.51776],[83.94668,26.51878],[83.94036,26.52524],[83.93462,26.52513],[83.93124,26.52032],[83.92706,26.51888],[83.9223,26.51961],[83.9164,26.51667],[83.90809,26.51908],[83.90606,26.51265],[83.90674,26.50938],[83.91517,26.50284],[83.9124,26.49773],[83.91269,26.48388],[83.9106,26.48322],[83.90962,26.47569],[83.91231,26.4757],[83.90973,26.46616],[83.91146,26.45591],[83.90923,26.45375],[83.90802,26.44709],[83.91104,26.44705],[83.91056,26.44991],[83.92445,26.44449],[83.94678,26.44098],[83.94624,26.43862],[83.96333,26.4373],[83.98101,26.4328],[83.99126,26.43224],[83.9979,26.44681],[84.00763,26.44396],[84.01683,26.44755],[84.02379,26.44025],[84.02442,26.43424],[84.02261,26.43089],[84.03486,26.41946],[84.03386,26.41165],[84.04097,26.41269],[84.03968,26.41089],[84.0412,26.40726],[84.04363,26.40951],[84.04951,26.40711],[84.04937,26.40374],[84.05287,26.4046],[84.05538,26.4022],[84.06313,26.40072],[84.06244,26.39842],[84.06547,26.39647],[84.06513,26.39285],[84.06798,26.39108],[84.06816,26.38827],[84.07371,26.38753],[84.07609,26.38507],[84.07918,26.38465],[84.07917,26.38251],[84.08309,26.38182],[84.08771,26.38416],[84.08876,26.38678],[84.09929,26.3846],[84.1029,26.38571],[84.12199,26.38512],[84.12466,26.38304],[84.1356,26.38171],[84.13752,26.37794],[84.16113,26.37407],[84.16378,26.37544],[84.17542,26.37309],[84.17684,26.36959],[84.18666,26.36903],[84.19041,26.36529],[84.19024,26.36296],[84.19791,26.36256],[84.19774,26.35539],[84.20461,26.35546],[84.2096,26.35172],[84.21318,26.35328],[84.21496,26.3522],[84.20942,26.34839],[84.2092,26.34495],[84.21283,26.33597],[84.22968,26.33101],[84.22838,26.32633],[84.23174,26.32526],[84.23448,26.32784],[84.2403,26.32531],[84.24107,26.31805],[84.25485,26.31655],[84.25548,26.31509],[84.26514,26.3125],[84.26691,26.31136],[84.2668,26.30925],[84.27263,26.30765],[84.27624,26.30749],[84.2811,26.31763],[84.29528,26.31676],[84.29665,26.32077],[84.30476,26.3185],[84.30506,26.32118],[84.31108,26.32285],[84.31301,26.326],[84.31567,26.32692],[84.31788,26.332],[84.32117,26.33202],[84.32395,26.32891],[84.33226,26.32705],[84.33723,26.32343],[84.33584,26.32077],[84.33864,26.31892],[84.33619,26.31153],[84.33783,26.30672],[84.35751,26.29961],[84.36149,26.30066],[84.36458,26.30892],[84.36224,26.30986],[84.3633,26.31577],[84.3602,26.32726],[84.36495,26.33178],[84.36652,26.33623],[84.36485,26.34031],[84.36627,26.34271],[84.36403,26.34661],[84.36633,26.35205],[84.36027,26.36371],[84.36277,26.36852],[84.37675,26.36852],[84.39077,26.37349],[84.40345,26.36729],[84.40835,26.36678],[84.40921,26.37004],[84.42174,26.36957],[84.42396,26.37416],[84.42776,26.37462],[84.45731,26.36811],[84.45528,26.36068],[84.45601,26.35597],[84.45209,26.34853],[84.45537,26.34875],[84.46196,26.346],[84.46417,26.34749],[84.4701,26.34233],[84.47947,26.34124],[84.48167,26.33561],[84.49436,26.33279],[84.4966,26.33296],[84.49785,26.33605],[84.50335,26.33336],[84.51135,26.33394],[84.516,26.33543],[84.51876,26.33922],[84.52973,26.33633],[84.54895,26.32536],[84.5507,26.3231],[84.55072,26.31762],[84.54496,26.31312],[84.5397,26.31255],[84.53868,26.30194],[84.55249,26.2977],[84.55665,26.31384],[84.56389,26.3135],[84.56869,26.32169],[84.57571,26.32492],[84.5903,26.32116],[84.58653,26.31676],[84.59434,26.31238],[84.60616,26.30935],[84.6083,26.30688],[84.6071,26.3038],[84.62244,26.30096],[84.64424,26.30328],[84.65403,26.29912],[84.65535,26.29205],[84.64818,26.27815],[84.6525,26.27608],[84.65098,26.27405],[84.65192,26.27179],[84.66602,26.27252],[84.67133,26.27167],[84.67177,26.26767],[84.67887,26.26878],[84.6847,26.26778],[84.68553,26.269],[84.68729,26.26749],[84.68748,26.26399],[84.68269,26.25564],[84.67973,26.24093],[84.6955,26.23808],[84.70177,26.24129],[84.71324,26.24169],[84.71378,26.23614],[84.72414,26.23559],[84.72991,26.22792],[84.73389,26.22602],[84.75235,26.22953],[84.75493,26.22531],[84.75416,26.21753],[84.75178,26.21463],[84.76129,26.21017],[84.76425,26.20635],[84.7677,26.20986],[84.77424,26.20851],[84.78378,26.21054],[84.79026,26.2034],[84.79252,26.20604],[84.79477,26.20517],[84.79646,26.20809],[84.80155,26.21062],[84.82492,26.21205],[84.8354,26.21544],[84.85764,26.21577],[84.85902,26.22067],[84.87415,26.21565],[84.87999,26.2167],[84.88383,26.2146],[84.8864,26.21797],[84.89872,26.21643],[84.89934,26.21965],[84.90584,26.2258],[84.90638,26.23506],[84.89645,26.23515],[84.88329,26.23288],[84.87625,26.23772],[84.87945,26.23974],[84.87182,26.25697],[84.86814,26.25711],[84.85748,26.26988],[84.85002,26.2703],[84.84921,26.27311],[84.83641,26.27939],[84.83215,26.28633],[84.82561,26.282],[84.80614,26.28575],[84.809,26.29478],[84.80937,26.31311],[84.807,26.32293],[84.80123,26.31749],[84.7999,26.31789],[84.79975,26.32601],[84.78536,26.33709],[84.77444,26.34197],[84.76794,26.33729],[84.76212,26.34654],[84.7512,26.35414],[84.73625,26.37079],[84.73034,26.37535],[84.73538,26.37873],[84.73018,26.37766],[84.72352,26.39346],[84.72369,26.39742],[84.72198,26.39976],[84.7196,26.39947],[84.71727,26.4072],[84.71167,26.41452],[84.7155,26.41465],[84.71318,26.42591],[84.7078,26.43054],[84.69689,26.4348],[84.69542,26.43361],[84.68714,26.43849],[84.67992,26.4434],[84.66668,26.45707],[84.65689,26.46141],[84.65722,26.4631],[84.65545,26.46448],[84.64121,26.46186],[84.63022,26.45741],[84.62652,26.4518],[84.61526,26.44833],[84.61191,26.44369],[84.59664,26.43539],[84.59015,26.43736],[84.59328,26.44269],[84.5904,26.446],[84.59337,26.44837],[84.58959,26.4498],[84.59055,26.45757],[84.57346,26.47006],[84.57782,26.48626],[84.5713,26.48749],[84.56786,26.4904],[84.56856,26.49168],[84.56186,26.49534],[84.55587,26.48766],[84.55449,26.48213],[84.53832,26.48373],[84.54477,26.49625],[84.54188,26.50001],[84.54056,26.50778],[84.53572,26.51425],[84.51928,26.52679],[84.51719,26.53047],[84.5106,26.53314],[84.51269,26.54728],[84.51483,26.55215],[84.51369,26.5636],[84.51213,26.56784],[84.50852,26.57031],[84.49692,26.57067],[84.48855,26.58309],[84.4848,26.59348],[84.4907,26.60321],[84.48572,26.6043],[84.48409,26.61508],[84.47372,26.61642],[84.46348,26.62288],[84.45768,26.62182],[84.45531,26.62522],[84.45708,26.631],[84.44166,26.61805],[84.42366,26.59823],[84.42038,26.59689],[84.41766,26.58757],[84.41314,26.58218],[84.40812,26.5866],[84.41311,26.59737],[84.42285,26.60782],[84.4251,26.61221],[84.42914,26.60956],[84.43246,26.61357],[84.42644,26.61802],[84.42682,26.63048]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"198","area_level":"District","area_name":"Jamui","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.40937,25.09289],[86.4176,25.1066],[86.41455,25.11135],[86.4121,25.12239],[86.42034,25.13825],[86.37099,25.14384],[86.36111,25.13665],[86.3447,25.12788],[86.32124,25.11108],[86.3139,25.0969],[86.31605,25.09649],[86.31573,25.09456],[86.31894,25.09292],[86.31824,25.08927],[86.32055,25.08532],[86.31484,25.07961],[86.29681,25.07697],[86.28644,25.08109],[86.28323,25.07577],[86.27198,25.06666],[86.24371,25.0554],[86.24263,25.0432],[86.24692,25.02915],[86.24837,25.01666],[86.24908,25.01439],[86.25213,25.01297],[86.25217,25.00883],[86.24601,25.00049],[86.24052,24.99739],[86.23823,24.99767],[86.23434,24.99316],[86.2226,24.98956],[86.21141,24.9958],[86.21155,25.01503],[86.20947,25.01868],[86.18255,25.0295],[86.17432,25.03922],[86.16679,25.0432],[86.16359,25.04686],[86.15811,25.04646],[86.14342,25.04934],[86.14044,25.03485],[86.13809,25.03378],[86.13592,25.02458],[86.13584,25.02086],[86.14037,25.01791],[86.13801,25.00526],[86.1338,24.99997],[86.13049,24.99985],[86.12829,24.9942],[86.12366,24.9939],[86.12147,24.99079],[86.11889,24.99179],[86.11555,24.98323],[86.12024,24.97856],[86.11817,24.97397],[86.11458,24.97561],[86.11322,24.97379],[86.11052,24.97369],[86.10937,24.97773],[86.09786,24.97962],[86.09774,24.99065],[86.0904,24.99548],[86.0878,24.99245],[86.08314,24.99322],[86.08097,24.98459],[86.07696,24.98169],[86.07427,24.98151],[86.06975,24.98432],[86.06867,24.98914],[86.06129,24.98992],[86.06035,24.98325],[86.06173,24.97913],[86.04897,24.97407],[86.04,24.97536],[86.04108,24.97891],[86.03919,24.98134],[86.02866,24.98419],[86.02483,24.97915],[86.02163,24.97981],[86.02257,24.97829],[86.02106,24.97306],[86.01787,24.96934],[86.01139,24.96988],[86.00706,24.97251],[86.00814,24.97897],[86.00677,24.98196],[85.98346,24.98575],[85.97987,24.98422],[85.97705,24.98751],[85.97786,24.9912],[85.97558,24.99314],[85.97466,24.99777],[85.97158,24.9984],[85.9674,24.99595],[85.96703,24.99299],[85.95961,24.98827],[85.94451,24.9883],[85.94309,24.9913],[85.94369,24.99969],[85.94423,25.00142],[85.94736,25.00265],[85.94819,25.00689],[85.92096,25.01507],[85.91685,25.01388],[85.9161,25.00654],[85.90987,25.00096],[85.9084,25.0008],[85.90955,25.00385],[85.90799,25.00601],[85.89359,25.00847],[85.88614,25.00356],[85.88599,25.00179],[85.87999,24.99965],[85.88059,24.99723],[85.87184,24.99705],[85.86934,24.99333],[85.86107,24.9938],[85.86065,24.99567],[85.85646,24.99673],[85.85168,24.99253],[85.85079,24.98744],[85.84285,24.98775],[85.83901,24.99019],[85.83701,24.98721],[85.8328,24.9863],[85.83774,24.982],[85.83776,24.98009],[85.84579,24.96993],[85.84985,24.96684],[85.85084,24.95717],[85.8588,24.95731],[85.85723,24.95438],[85.85918,24.94907],[85.85723,24.94748],[85.85717,24.94375],[85.84922,24.94304],[85.84612,24.94643],[85.846,24.95074],[85.82577,24.95194],[85.82765,24.93854],[85.82636,24.93476],[85.82471,24.93408],[85.82522,24.92785],[85.82133,24.92705],[85.82308,24.92078],[85.84143,24.92074],[85.84396,24.92891],[85.84687,24.92931],[85.8527,24.92722],[85.85494,24.92346],[85.86193,24.92166],[85.86082,24.92676],[85.86264,24.93017],[85.86152,24.93236],[85.86339,24.93555],[85.8626,24.93893],[85.87117,24.93838],[85.87074,24.93535],[85.87259,24.93472],[85.87963,24.9346],[85.87627,24.91348],[85.87295,24.9122],[85.88005,24.91018],[85.8853,24.90375],[85.88973,24.88564],[85.88818,24.88136],[85.89351,24.87845],[85.89252,24.87371],[85.93394,24.86221],[85.95237,24.86094],[85.95447,24.87188],[85.9533,24.87599],[85.97455,24.86769],[85.97548,24.86111],[85.99464,24.84578],[85.9947,24.84243],[85.99912,24.8381],[85.99878,24.82997],[86.0011,24.82268],[86.01047,24.81149],[86.00975,24.80836],[86.02032,24.80746],[86.03362,24.79287],[86.05138,24.78405],[86.05458,24.78064],[86.05852,24.77173],[86.0569,24.76107],[86.05411,24.75623],[86.04688,24.75266],[86.04323,24.74763],[86.0351,24.74636],[86.03709,24.74113],[86.0558,24.74605],[86.06745,24.75155],[86.09073,24.746],[86.10741,24.7348],[86.1094,24.7307],[86.10869,24.7272],[86.1164,24.71731],[86.11652,24.71229],[86.119,24.71118],[86.12836,24.69865],[86.12902,24.68623],[86.13232,24.67901],[86.13155,24.67519],[86.1247,24.67097],[86.12706,24.66687],[86.12509,24.65457],[86.11522,24.64395],[86.11715,24.63949],[86.1199,24.63875],[86.11852,24.6359],[86.12045,24.63544],[86.1214,24.6317],[86.11946,24.62993],[86.11865,24.62578],[86.12203,24.62186],[86.12113,24.61821],[86.12496,24.61417],[86.12532,24.61148],[86.12922,24.611],[86.13264,24.60552],[86.14135,24.60704],[86.15072,24.60255],[86.15184,24.60081],[86.15022,24.59513],[86.1615,24.58625],[86.17945,24.58509],[86.18048,24.58368],[86.1858,24.58595],[86.19448,24.58565],[86.19727,24.58824],[86.20765,24.59113],[86.21445,24.59493],[86.21635,24.59854],[86.21336,24.60235],[86.2143,24.61379],[86.2183,24.61101],[86.22216,24.6109],[86.22417,24.60679],[86.22954,24.60572],[86.23834,24.60013],[86.2408,24.59696],[86.24154,24.59001],[86.2461,24.58761],[86.25454,24.58709],[86.25695,24.58057],[86.25921,24.57867],[86.2626,24.57927],[86.26282,24.58396],[86.26434,24.58425],[86.2677,24.58055],[86.27467,24.57713],[86.27508,24.57975],[86.26946,24.58477],[86.27455,24.58658],[86.28152,24.58511],[86.28492,24.58786],[86.28799,24.587],[86.29192,24.5884],[86.29745,24.5851],[86.30074,24.58608],[86.30302,24.58328],[86.30917,24.58389],[86.30856,24.58846],[86.31412,24.58702],[86.31748,24.58823],[86.31936,24.58596],[86.32321,24.58679],[86.31613,24.58128],[86.31761,24.57741],[86.30709,24.57139],[86.30744,24.56723],[86.30403,24.56581],[86.30084,24.56012],[86.30278,24.55924],[86.30414,24.5529],[86.30804,24.54881],[86.29999,24.53627],[86.29713,24.5361],[86.29747,24.53351],[86.29929,24.53034],[86.30569,24.52769],[86.30557,24.51941],[86.30913,24.51248],[86.30898,24.50976],[86.30331,24.50545],[86.29942,24.5],[86.29887,24.49525],[86.29378,24.48817],[86.29338,24.48121],[86.29042,24.4789],[86.28183,24.47911],[86.27601,24.4658],[86.29858,24.45965],[86.29986,24.45848],[86.29456,24.45601],[86.29494,24.45092],[86.29972,24.44773],[86.31355,24.44706],[86.31738,24.44152],[86.33144,24.44437],[86.33485,24.44245],[86.34394,24.44398],[86.34498,24.44724],[86.3499,24.44739],[86.35816,24.42926],[86.36727,24.42448],[86.36857,24.41869],[86.37465,24.41705],[86.37746,24.41958],[86.37806,24.41623],[86.38115,24.41291],[86.39675,24.40374],[86.397,24.39836],[86.40004,24.39853],[86.40242,24.39677],[86.40426,24.38855],[86.41213,24.38097],[86.42044,24.37867],[86.42355,24.37951],[86.42778,24.37715],[86.43255,24.38014],[86.4449,24.36783],[86.45603,24.37197],[86.4579,24.3782],[86.46713,24.38107],[86.46672,24.38484],[86.47193,24.39335],[86.4701,24.39741],[86.47146,24.40152],[86.47075,24.40567],[86.46789,24.40616],[86.46689,24.41013],[86.46915,24.41535],[86.46918,24.41986],[86.4665,24.42135],[86.4665,24.42386],[86.46866,24.42627],[86.47702,24.42451],[86.47943,24.42794],[86.49128,24.42808],[86.49421,24.44082],[86.49677,24.44375],[86.49532,24.45626],[86.48673,24.46414],[86.49086,24.46718],[86.49031,24.47132],[86.49447,24.47338],[86.49184,24.47585],[86.49536,24.4831],[86.49434,24.4862],[86.49708,24.49025],[86.5004,24.48944],[86.50268,24.49324],[86.50078,24.50404],[86.50934,24.52185],[86.51535,24.52537],[86.51751,24.53033],[86.52936,24.54028],[86.53629,24.53585],[86.54153,24.54034],[86.55232,24.53597],[86.55336,24.5435],[86.56379,24.55255],[86.55834,24.55824],[86.55918,24.56227],[86.56163,24.56222],[86.56647,24.56649],[86.56981,24.56471],[86.58029,24.56653],[86.58922,24.5793],[86.58887,24.58853],[86.59716,24.59657],[86.59819,24.59991],[86.60307,24.60194],[86.60329,24.60838],[86.6082,24.60809],[86.60781,24.62083],[86.61079,24.62157],[86.60954,24.62613],[86.61334,24.6294],[86.6132,24.63182],[86.61727,24.63319],[86.61878,24.64433],[86.60962,24.64644],[86.60769,24.65337],[86.61908,24.66116],[86.61494,24.66184],[86.61134,24.66494],[86.6134,24.66994],[86.6044,24.67203],[86.59887,24.67671],[86.58918,24.68159],[86.58554,24.6792],[86.58232,24.68916],[86.57589,24.69506],[86.56895,24.69514],[86.56742,24.69697],[86.56465,24.6958],[86.56213,24.69698],[86.55818,24.70261],[86.55573,24.71138],[86.55616,24.7155],[86.5525,24.7219],[86.55519,24.72474],[86.55518,24.72831],[86.55902,24.73075],[86.55612,24.73444],[86.5555,24.73987],[86.55699,24.74624],[86.55322,24.75267],[86.54785,24.75422],[86.55084,24.76352],[86.5472,24.76952],[86.54777,24.77525],[86.5269,24.77523],[86.509,24.76867],[86.49939,24.7671],[86.49726,24.76197],[86.49522,24.76321],[86.49552,24.77315],[86.50053,24.78076],[86.50223,24.78807],[86.52867,24.79176],[86.52664,24.7944],[86.52717,24.80252],[86.52403,24.80691],[86.52518,24.8105],[86.52395,24.81356],[86.52459,24.81555],[86.53136,24.81947],[86.53039,24.82204],[86.53324,24.82694],[86.5332,24.83368],[86.53024,24.83577],[86.53567,24.84958],[86.53412,24.85317],[86.53529,24.8689],[86.5324,24.87203],[86.53229,24.87566],[86.52667,24.88162],[86.52656,24.88913],[86.50657,24.90339],[86.49065,24.90835],[86.48904,24.91707],[86.48686,24.91919],[86.48739,24.92179],[86.49761,24.92141],[86.49963,24.9248],[86.50123,24.92495],[86.49662,24.92951],[86.49927,24.93339],[86.49552,24.93523],[86.49387,24.94074],[86.49167,24.94136],[86.4977,24.95351],[86.4949,24.95297],[86.49285,24.96787],[86.49082,24.9719],[86.5027,24.97874],[86.5062,24.98471],[86.49643,24.98823],[86.48053,24.9983],[86.47452,24.99992],[86.45779,24.99859],[86.45451,25.00184],[86.45526,25.00632],[86.45203,25.01124],[86.44508,25.00236],[86.44132,25.00053],[86.44179,24.99858],[86.43841,24.99824],[86.44042,25.00849],[86.43754,25.01322],[86.43915,25.0245],[86.43798,25.02747],[86.4402,25.03302],[86.43875,25.0407],[86.43986,25.04391],[86.43799,25.04682],[86.41831,25.05117],[86.41744,25.04902],[86.41292,25.04901],[86.41396,25.0453],[86.40994,25.04668],[86.40757,25.05112],[86.39569,25.05187],[86.39327,25.05437],[86.39795,25.0531],[86.39665,25.05668],[86.38788,25.05816],[86.38603,25.05643],[86.38659,25.06426],[86.39145,25.06483],[86.39392,25.06685],[86.39228,25.07137],[86.39486,25.07286],[86.39319,25.08905],[86.40539,25.08833],[86.40937,25.09289]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"199","area_level":"District","area_name":"Jehanabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.01076,25.29353],[85.00491,25.2941],[85.00506,25.30343],[85.00296,25.31025],[85.00402,25.31682],[84.99478,25.31925],[84.99293,25.30925],[84.98304,25.30772],[84.98191,25.29076],[84.97893,25.28969],[84.97671,25.29328],[84.96947,25.29272],[84.96702,25.28991],[84.96169,25.28924],[84.95108,25.29016],[84.94839,25.29317],[84.94737,25.29097],[84.94335,25.28954],[84.93799,25.28115],[84.93558,25.28075],[84.93525,25.27703],[84.93891,25.27452],[84.93807,25.27317],[84.93513,25.27352],[84.93346,25.27062],[84.93665,25.27014],[84.93617,25.2682],[84.92539,25.26919],[84.91756,25.27572],[84.92462,25.28664],[84.92396,25.28989],[84.92058,25.29372],[84.91887,25.29209],[84.91575,25.29249],[84.91378,25.29008],[84.90895,25.29122],[84.90423,25.28947],[84.90042,25.28411],[84.89762,25.28406],[84.89317,25.28082],[84.89007,25.27486],[84.88858,25.2682],[84.8937,25.26273],[84.89128,25.25704],[84.885,25.25466],[84.88387,25.25258],[84.87457,25.25243],[84.87938,25.24805],[84.87932,25.24584],[84.87481,25.24229],[84.87428,25.23915],[84.86909,25.23582],[84.87076,25.22373],[84.86896,25.2234],[84.86734,25.22027],[84.86499,25.22018],[84.86328,25.22449],[84.86072,25.22496],[84.84554,25.21871],[84.84237,25.21345],[84.84042,25.21376],[84.83648,25.20319],[84.83216,25.20094],[84.83186,25.19781],[84.8355,25.19726],[84.83343,25.19115],[84.83353,25.18293],[84.83869,25.18066],[84.84126,25.17541],[84.83843,25.17304],[84.83737,25.16582],[84.83435,25.16535],[84.83417,25.16403],[84.83688,25.16386],[84.83682,25.16162],[84.83057,25.1587],[84.82985,25.15689],[84.82998,25.14144],[84.83659,25.14084],[84.83805,25.13985],[84.83795,25.1367],[84.84417,25.13538],[84.84382,25.13083],[84.84167,25.12745],[84.84347,25.12271],[84.84658,25.122],[84.84676,25.11552],[84.84805,25.11725],[84.85311,25.11855],[84.85224,25.11352],[84.85004,25.11097],[84.85084,25.1034],[84.86356,25.10152],[84.86501,25.09949],[84.86039,25.09219],[84.86483,25.09055],[84.86453,25.08499],[84.86262,25.08493],[84.8604,25.07983],[84.85574,25.07847],[84.85489,25.07621],[84.85383,25.06939],[84.85416,25.0675],[84.85655,25.06634],[84.85625,25.06198],[84.86115,25.06108],[84.86418,25.05752],[84.87067,25.06363],[84.88607,25.06069],[84.89589,25.06264],[84.89799,25.06602],[84.90996,25.06531],[84.90903,25.05997],[84.91361,25.05863],[84.91938,25.05985],[84.921,25.05747],[84.92705,25.05441],[84.92477,25.04693],[84.92151,25.04341],[84.92092,25.0392],[84.91555,25.03873],[84.9093,25.03445],[84.91063,25.02996],[84.90945,25.02607],[84.92171,25.02318],[84.92243,25.01755],[84.9256,25.01525],[84.92863,25.01554],[84.93163,25.00066],[84.9276,24.9954],[84.93079,24.99377],[84.93088,24.99134],[84.93381,24.99136],[84.93465,24.98689],[84.93811,24.98813],[84.95609,24.9873],[84.95626,24.99485],[84.95861,24.99831],[84.96215,24.99869],[84.96697,25.00285],[84.96653,25.00496],[84.98435,25.00281],[84.98582,25.00899],[84.99253,25.00933],[84.99474,25.01293],[84.99452,25.02109],[84.99156,25.02288],[84.99181,25.02567],[84.99906,25.02455],[85.00048,25.02153],[85.01592,25.02213],[85.017,25.01785],[85.0241,25.01739],[85.02661,25.0194],[85.02361,25.02036],[85.0263,25.03062],[85.0348,25.03179],[85.0435,25.03068],[85.04358,25.01907],[85.04578,25.01453],[85.04511,25.00468],[85.05089,24.9977],[85.05766,25.00254],[85.06064,25.00138],[85.06616,25.00312],[85.06921,25.00235],[85.07128,24.99659],[85.08,25.00148],[85.08262,24.99987],[85.08213,24.99467],[85.07623,24.99279],[85.09039,24.99177],[85.09901,25.00792],[85.10948,25.01529],[85.11896,25.03206],[85.11993,25.03861],[85.11847,25.04186],[85.12226,25.04627],[85.12445,25.04655],[85.12446,25.05045],[85.12667,25.05393],[85.13879,25.05532],[85.1447,25.05216],[85.14964,25.05235],[85.15354,25.05491],[85.15217,25.06676],[85.15435,25.0688],[85.17119,25.06662],[85.17244,25.071],[85.18314,25.07301],[85.18372,25.06706],[85.18194,25.06406],[85.17496,25.06184],[85.17539,25.05094],[85.19153,25.05016],[85.20347,25.05938],[85.2053,25.06529],[85.20342,25.07537],[85.20083,25.07424],[85.19778,25.07575],[85.19541,25.08522],[85.18981,25.08958],[85.19111,25.09182],[85.19271,25.09158],[85.19384,25.09675],[85.19856,25.09892],[85.19501,25.09911],[85.19461,25.10096],[85.18846,25.10043],[85.18896,25.10375],[85.18706,25.10644],[85.18261,25.10471],[85.17715,25.10568],[85.17424,25.10033],[85.16633,25.10111],[85.16601,25.10297],[85.16142,25.10334],[85.16047,25.09908],[85.15293,25.09727],[85.16407,25.11777],[85.16124,25.12009],[85.16271,25.12196],[85.16133,25.12327],[85.16119,25.13066],[85.16396,25.14345],[85.17278,25.14861],[85.18408,25.14922],[85.1785,25.16198],[85.17551,25.16348],[85.17086,25.16215],[85.16951,25.16329],[85.1693,25.1661],[85.17175,25.16917],[85.17058,25.17287],[85.16583,25.17144],[85.16061,25.16721],[85.15342,25.16597],[85.1579,25.17049],[85.15922,25.17452],[85.16107,25.1746],[85.16178,25.18007],[85.15608,25.18398],[85.15555,25.1899],[85.1537,25.19205],[85.15448,25.19636],[85.16125,25.19608],[85.16271,25.2097],[85.17123,25.21016],[85.17252,25.21833],[85.17065,25.22582],[85.16501,25.22623],[85.16138,25.22892],[85.15563,25.22818],[85.15393,25.2365],[85.16308,25.23709],[85.16589,25.24645],[85.16799,25.24801],[85.17729,25.24815],[85.17854,25.25006],[85.1826,25.25048],[85.18576,25.25252],[85.18562,25.25752],[85.19381,25.25806],[85.20521,25.25564],[85.20537,25.25424],[85.20901,25.25535],[85.21148,25.25744],[85.21104,25.2653],[85.20655,25.2639],[85.20303,25.26646],[85.19666,25.26448],[85.18768,25.26499],[85.18534,25.26976],[85.16775,25.27208],[85.16757,25.28003],[85.17256,25.28814],[85.17698,25.2875],[85.17931,25.29039],[85.17945,25.29743],[85.17553,25.30193],[85.17487,25.3059],[85.17063,25.30811],[85.16853,25.30583],[85.15975,25.30314],[85.14928,25.30796],[85.1485,25.31153],[85.12247,25.31403],[85.12113,25.29841],[85.11826,25.29801],[85.11799,25.29456],[85.10907,25.29369],[85.10962,25.2916],[85.10744,25.28871],[85.11053,25.28276],[85.11543,25.2807],[85.11738,25.27715],[85.11751,25.27429],[85.11198,25.27008],[85.10762,25.27288],[85.10736,25.27088],[85.10435,25.27049],[85.104,25.27956],[85.0979,25.2825],[85.09241,25.28806],[85.08324,25.2872],[85.08465,25.2836],[85.08196,25.28198],[85.08155,25.27983],[85.07806,25.27948],[85.07834,25.27468],[85.07688,25.27348],[85.0752,25.27412],[85.07547,25.27834],[85.07301,25.28122],[85.06312,25.2836],[85.06244,25.28736],[85.05785,25.28879],[85.05597,25.28795],[85.05651,25.28452],[85.05379,25.28236],[85.04625,25.28429],[85.04307,25.28013],[85.03967,25.28157],[85.03948,25.2766],[85.03239,25.27647],[85.0303,25.27379],[85.0302,25.27],[85.02034,25.26994],[85.0186,25.26448],[85.00998,25.26484],[85.00847,25.26652],[85.00865,25.27109],[85.01731,25.27196],[85.02061,25.28277],[85.01757,25.28307],[85.01768,25.28841],[85.01503,25.29325],[85.01076,25.29353]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"2","area_level":"District","area_name":"Budgam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.68605,34.11903],[74.69174,34.12379],[74.68613,34.12743],[74.67683,34.13046],[74.65936,34.11649],[74.65137,34.11896],[74.64504,34.11306],[74.62122,34.10336],[74.61161,34.10603],[74.60767,34.10331],[74.60655,34.10119],[74.60759,34.09855],[74.58803,34.08568],[74.58228,34.07884],[74.56335,34.06631],[74.5583,34.05945],[74.54934,34.06143],[74.54235,34.05657],[74.53902,34.04628],[74.53326,34.0382],[74.52454,34.04139],[74.51947,34.04056],[74.51655,34.04257],[74.50106,34.04593],[74.48726,34.04708],[74.48493,34.03357],[74.49309,34.03403],[74.5,34.03199],[74.49674,34.0292],[74.49498,34.02364],[74.48324,34.01578],[74.47768,34.00745],[74.46888,33.99886],[74.46643,33.99131],[74.46895,33.98716],[74.47333,33.98406],[74.47493,33.97783],[74.47279,33.9708],[74.46969,33.96871],[74.47409,33.96223],[74.47444,33.95573],[74.47728,33.95184],[74.47358,33.94455],[74.45992,33.93565],[74.44596,33.92389],[74.42391,33.91624],[74.4258,33.91116],[74.4223,33.91085],[74.41824,33.90806],[74.41757,33.90299],[74.41398,33.90111],[74.41167,33.89713],[74.40904,33.89638],[74.41509,33.88784],[74.40419,33.88585],[74.40243,33.8832],[74.40342,33.87793],[74.40159,33.87433],[74.40628,33.86944],[74.40819,33.86356],[74.41413,33.8587],[74.41021,33.85141],[74.41086,33.84402],[74.41637,33.83858],[74.41719,33.83583],[74.43265,33.82464],[74.44174,33.82451],[74.44277,33.82139],[74.43816,33.81563],[74.43923,33.8115],[74.44304,33.81026],[74.4453,33.80734],[74.45257,33.80496],[74.45706,33.79652],[74.47034,33.78457],[74.46321,33.77856],[74.46451,33.77309],[74.44993,33.76397],[74.45351,33.75472],[74.45927,33.75145],[74.46631,33.75016],[74.4662,33.74769],[74.47322,33.73936],[74.47466,33.73318],[74.4799,33.73316],[74.48797,33.7291],[74.49106,33.72451],[74.49505,33.72395],[74.50171,33.71926],[74.50315,33.7154],[74.50789,33.71105],[74.50437,33.70396],[74.51595,33.70534],[74.51808,33.70254],[74.52645,33.69981],[74.52789,33.69499],[74.53678,33.6953],[74.5436,33.6929],[74.54201,33.68845],[74.54261,33.68398],[74.54113,33.68256],[74.54351,33.68021],[74.55827,33.68596],[74.56025,33.69027],[74.56652,33.69166],[74.57027,33.70209],[74.5771,33.71047],[74.58086,33.71898],[74.60158,33.72491],[74.61071,33.73563],[74.62587,33.73982],[74.62448,33.74959],[74.64446,33.76452],[74.64922,33.77313],[74.65748,33.78246],[74.67731,33.79438],[74.68699,33.80219],[74.68951,33.8074],[74.69421,33.80876],[74.7101,33.80417],[74.71617,33.80475],[74.71717,33.80887],[74.723,33.80644],[74.73618,33.81576],[74.74188,33.82177],[74.75613,33.82126],[74.75762,33.81201],[74.76217,33.81224],[74.76643,33.80997],[74.77428,33.81053],[74.77154,33.81619],[74.77593,33.82139],[74.78691,33.82165],[74.79209,33.82689],[74.79572,33.82658],[74.79069,33.83543],[74.79282,33.83918],[74.80014,33.84165],[74.79699,33.84657],[74.81856,33.86532],[74.82237,33.87933],[74.82215,33.88519],[74.8202,33.88925],[74.82074,33.89391],[74.82262,33.89833],[74.83812,33.91663],[74.84038,33.93311],[74.84276,33.9351],[74.8447,33.9308],[74.85015,33.93975],[74.85848,33.9458],[74.86135,33.94974],[74.86229,33.95517],[74.8666,33.96142],[74.87404,33.96959],[74.88282,33.97461],[74.89125,33.99101],[74.89453,33.9925],[74.89621,33.99607],[74.90232,33.99595],[74.90101,34.0],[74.90241,34.00068],[74.89821,34.00921],[74.89994,34.00996],[74.90013,34.01199],[74.90263,34.01176],[74.90813,34.0148],[74.91056,34.01868],[74.91633,34.02132],[74.91422,34.02408],[74.91039,34.02453],[74.90214,34.01799],[74.89834,34.01763],[74.89571,34.02219],[74.90179,34.03038],[74.90144,34.0336],[74.88334,34.03878],[74.87679,34.03549],[74.8712,34.03534],[74.8618,34.04079],[74.85715,34.04749],[74.84676,34.05175],[74.83672,34.04354],[74.83574,34.03741],[74.83033,34.0306],[74.82668,34.02874],[74.8214,34.03168],[74.83223,34.04544],[74.80838,34.04466],[74.79987,34.0413],[74.79856,34.03835],[74.80024,34.0368],[74.80207,34.02847],[74.79343,34.02916],[74.79867,34.02227],[74.79777,34.02027],[74.79549,34.02041],[74.77688,34.02958],[74.78215,34.03487],[74.77968,34.03976],[74.77254,34.04103],[74.77368,34.04378],[74.77145,34.04752],[74.76766,34.04952],[74.76662,34.05548],[74.75869,34.06036],[74.76197,34.06777],[74.7715,34.07193],[74.76582,34.0741],[74.74356,34.09092],[74.72043,34.0953],[74.71806,34.09496],[74.71759,34.09346],[74.71016,34.09535],[74.70836,34.10046],[74.71154,34.1071],[74.70627,34.10838],[74.70542,34.10738],[74.70756,34.10498],[74.70314,34.10383],[74.70094,34.1],[74.6881,34.09479],[74.68545,34.09741],[74.68621,34.10046],[74.68169,34.10066],[74.68449,34.10506],[74.68167,34.10584],[74.67972,34.10441],[74.67511,34.10738],[74.68565,34.11145],[74.68605,34.11903]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"20","area_level":"District","area_name":"Kullu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.17526,32.4052],[77.16862,32.40905],[77.15195,32.4146],[77.14588,32.41271],[77.14204,32.4077],[77.12407,32.40311],[77.11304,32.39752],[77.10159,32.3955],[77.09817,32.39322],[77.08865,32.39415],[77.08645,32.39575],[77.08199,32.39467],[77.07456,32.39929],[77.0641,32.38194],[77.05125,32.37074],[77.0474,32.3631],[77.04852,32.35314],[77.04135,32.34219],[77.05602,32.34201],[77.06979,32.33462],[77.06392,32.32546],[77.06197,32.3143],[77.05543,32.30933],[77.04545,32.30531],[77.04035,32.30099],[77.0355,32.29066],[77.03376,32.28156],[77.02734,32.27232],[77.02812,32.26683],[77.02669,32.26224],[77.02728,32.25905],[77.03166,32.25653],[77.03254,32.24977],[77.02927,32.24653],[77.03286,32.24059],[77.0444,32.23444],[77.04737,32.22715],[77.05011,32.22589],[77.04879,32.21772],[77.03783,32.20597],[77.03335,32.20487],[77.02163,32.2062],[77.01612,32.20024],[77.00307,32.19943],[76.99766,32.19357],[76.99241,32.18241],[76.99693,32.17741],[76.99554,32.17463],[76.99251,32.17422],[76.98916,32.1689],[76.98951,32.16519],[76.98329,32.15431],[76.98158,32.14509],[76.98446,32.13686],[76.97903,32.13228],[76.98301,32.12565],[76.9829,32.11856],[76.98659,32.11511],[76.98479,32.11022],[76.95793,32.11244],[76.94846,32.11117],[76.94225,32.11343],[76.9433,32.10961],[76.94064,32.09911],[76.93477,32.09268],[76.93749,32.08768],[76.9393,32.07851],[76.93797,32.07426],[76.94234,32.06845],[76.93552,32.06213],[76.93906,32.0538],[76.93736,32.04935],[76.93922,32.04603],[76.93847,32.04288],[76.94834,32.03673],[76.94841,32.03435],[76.95947,32.02608],[76.9706,32.02422],[76.97226,32.02184],[76.97389,32.01578],[76.97801,32.01155],[76.97866,32.00803],[76.97825,31.99979],[76.97391,31.99602],[76.97605,31.98728],[76.97455,31.98122],[76.97841,31.97349],[76.9855,31.97209],[76.98901,31.96443],[76.99676,31.95744],[77.00025,31.95026],[76.99932,31.94507],[77.00507,31.93413],[77.01132,31.93307],[77.02161,31.92166],[77.02522,31.90178],[77.03674,31.88388],[77.03685,31.88156],[77.04645,31.87537],[77.04912,31.86795],[77.05891,31.85934],[77.06023,31.85493],[77.05488,31.84803],[77.05776,31.83775],[77.06731,31.83498],[77.0773,31.83723],[77.08196,31.82698],[77.09199,31.83722],[77.09766,31.83877],[77.10279,31.83645],[77.11357,31.83864],[77.12485,31.83635],[77.15542,31.84009],[77.15901,31.83502],[77.16437,31.83874],[77.17784,31.8416],[77.18017,31.83635],[77.17339,31.82645],[77.17339,31.82348],[77.17514,31.8219],[77.18524,31.82086],[77.1879,31.81898],[77.18632,31.81163],[77.1928,31.7973],[77.1927,31.79209],[77.1967,31.78962],[77.19733,31.7853],[77.19391,31.77615],[77.19895,31.77617],[77.20179,31.77072],[77.20183,31.76628],[77.20751,31.75961],[77.20579,31.75448],[77.20988,31.7486],[77.20835,31.73988],[77.21351,31.72544],[77.21569,31.72268],[77.22102,31.72486],[77.2337,31.721],[77.24372,31.71124],[77.24621,31.71281],[77.24878,31.71095],[77.25132,31.71172],[77.25349,31.70922],[77.25723,31.70982],[77.26128,31.70563],[77.26128,31.70302],[77.27853,31.69365],[77.27958,31.69064],[77.28728,31.68557],[77.28736,31.68024],[77.29316,31.67681],[77.29396,31.67409],[77.29827,31.67327],[77.30269,31.66796],[77.30263,31.66316],[77.29978,31.66036],[77.30041,31.65668],[77.29811,31.65565],[77.29577,31.65122],[77.30132,31.64381],[77.30151,31.637],[77.29856,31.63274],[77.30109,31.63174],[77.30074,31.62956],[77.30545,31.62391],[77.3036,31.62116],[77.30617,31.61669],[77.30392,31.6116],[77.30404,31.60728],[77.3019,31.60457],[77.3031,31.60244],[77.30232,31.59973],[77.29735,31.59429],[77.30326,31.58842],[77.30388,31.5854],[77.30192,31.57815],[77.30349,31.57498],[77.30332,31.56464],[77.29889,31.55196],[77.30485,31.54347],[77.31452,31.53721],[77.31602,31.53273],[77.31679,31.52917],[77.31387,31.5226],[77.31355,31.5169],[77.31543,31.51114],[77.31444,31.50704],[77.31668,31.5044],[77.31924,31.49571],[77.31751,31.49393],[77.3227,31.48806],[77.32324,31.48458],[77.32126,31.47746],[77.32373,31.47394],[77.32928,31.45595],[77.33728,31.44859],[77.3466,31.4453],[77.34919,31.43885],[77.36067,31.43081],[77.36313,31.42594],[77.36727,31.42493],[77.37134,31.42049],[77.37617,31.41947],[77.37906,31.41548],[77.38308,31.41444],[77.38611,31.41155],[77.38136,31.40802],[77.38014,31.40461],[77.38257,31.40077],[77.38118,31.39981],[77.38137,31.39343],[77.38523,31.39196],[77.38492,31.38792],[77.38754,31.38634],[77.38803,31.38388],[77.38662,31.3804],[77.38913,31.37555],[77.38484,31.36833],[77.38506,31.36302],[77.38291,31.3601],[77.38693,31.3595],[77.39212,31.35467],[77.39825,31.36152],[77.4083,31.35396],[77.41236,31.34642],[77.42055,31.34792],[77.42645,31.34427],[77.42672,31.34146],[77.42925,31.34042],[77.43302,31.34066],[77.43532,31.34421],[77.45201,31.3439],[77.45417,31.34893],[77.45703,31.35127],[77.46242,31.35003],[77.46803,31.35153],[77.47438,31.34921],[77.48083,31.35445],[77.48811,31.35523],[77.49874,31.35552],[77.50546,31.34769],[77.51079,31.34937],[77.51729,31.3481],[77.5268,31.35304],[77.5354,31.36225],[77.54423,31.37466],[77.54511,31.38092],[77.55395,31.39018],[77.57538,31.38861],[77.57543,31.3931],[77.5773,31.39626],[77.59614,31.39924],[77.6066,31.39691],[77.61674,31.38972],[77.62389,31.3882],[77.62886,31.38996],[77.63174,31.39342],[77.63335,31.40105],[77.62172,31.41698],[77.62088,31.42674],[77.62255,31.43578],[77.62899,31.44482],[77.62784,31.45125],[77.63522,31.45308],[77.64016,31.45677],[77.65038,31.45538],[77.65971,31.46074],[77.66952,31.4626],[77.68038,31.47709],[77.6823,31.48287],[77.69745,31.4952],[77.70392,31.49781],[77.70711,31.50175],[77.70296,31.50773],[77.70234,31.5117],[77.69909,31.51427],[77.69851,31.5225],[77.70209,31.52976],[77.70184,31.53473],[77.69872,31.54204],[77.69333,31.5451],[77.68664,31.54458],[77.67965,31.55123],[77.68069,31.55245],[77.67857,31.55777],[77.68056,31.55959],[77.6682,31.5637],[77.66613,31.56883],[77.65947,31.57572],[77.65621,31.57662],[77.64867,31.583],[77.64742,31.5912],[77.64868,31.59609],[77.64412,31.60697],[77.64617,31.60858],[77.64574,31.61531],[77.64911,31.62063],[77.64979,31.62827],[77.66261,31.63368],[77.66062,31.63782],[77.65166,31.64725],[77.6498,31.65186],[77.64675,31.65229],[77.64583,31.6625],[77.65059,31.66637],[77.65668,31.66807],[77.65737,31.67951],[77.66666,31.68217],[77.67049,31.6857],[77.67141,31.68794],[77.6701,31.69482],[77.67531,31.69707],[77.6781,31.70313],[77.69209,31.70476],[77.71154,31.70364],[77.71454,31.70597],[77.72264,31.70816],[77.73108,31.71459],[77.74916,31.71392],[77.75454,31.72114],[77.75135,31.7305],[77.75232,31.73638],[77.74965,31.74853],[77.75227,31.75148],[77.75959,31.75439],[77.76405,31.76193],[77.77118,31.75995],[77.77213,31.75733],[77.77573,31.75744],[77.77789,31.75426],[77.78149,31.75472],[77.78596,31.7524],[77.79522,31.75961],[77.80743,31.76114],[77.82787,31.76115],[77.83268,31.75892],[77.85403,31.75478],[77.85539,31.76971],[77.85854,31.77562],[77.8568,31.7804],[77.8609,31.78358],[77.86844,31.78252],[77.86574,31.79171],[77.85478,31.79593],[77.84774,31.80251],[77.84831,31.81701],[77.84487,31.82497],[77.84938,31.83279],[77.84469,31.83535],[77.84379,31.84418],[77.8417,31.85],[77.83814,31.85425],[77.85007,31.87474],[77.86482,31.88119],[77.86873,31.88532],[77.82882,31.8982],[77.82432,31.89595],[77.80489,31.89953],[77.80232,31.90287],[77.79076,31.90917],[77.78874,31.91591],[77.78179,31.92052],[77.78202,31.92993],[77.77794,31.93428],[77.77292,31.9355],[77.77112,31.93981],[77.76735,31.94213],[77.76669,31.94783],[77.7727,31.95194],[77.77274,31.9552],[77.7797,31.96199],[77.78156,31.9662],[77.78073,31.96991],[77.78342,31.97448],[77.79412,31.98125],[77.79816,31.98712],[77.79399,31.99279],[77.78557,31.99652],[77.78222,32.00093],[77.77299,32.00523],[77.77835,32.01157],[77.78643,32.01365],[77.79064,32.01829],[77.78798,32.02383],[77.77924,32.03237],[77.77819,32.03618],[77.77406,32.03584],[77.7641,32.04189],[77.76202,32.04598],[77.76468,32.05221],[77.76472,32.05927],[77.75676,32.06724],[77.75324,32.07815],[77.74602,32.08258],[77.7436,32.08985],[77.71824,32.09186],[77.70502,32.10222],[77.69353,32.09934],[77.6884,32.10046],[77.68352,32.10439],[77.67734,32.11353],[77.67198,32.11524],[77.67014,32.1208],[77.66195,32.12349],[77.6618,32.1293],[77.65871,32.13193],[77.66023,32.13629],[77.65463,32.13916],[77.65258,32.14215],[77.64389,32.14559],[77.64089,32.14874],[77.63207,32.14884],[77.62616,32.15758],[77.61948,32.15497],[77.60821,32.15967],[77.60717,32.16268],[77.6028,32.16525],[77.60169,32.17083],[77.58445,32.17433],[77.5849,32.17988],[77.58367,32.18132],[77.57208,32.18371],[77.57017,32.18557],[77.56996,32.18954],[77.56547,32.19437],[77.56639,32.20356],[77.54653,32.21861],[77.54407,32.21531],[77.533,32.20859],[77.53288,32.20527],[77.53633,32.20138],[77.53154,32.19429],[77.51482,32.1977],[77.5146,32.20352],[77.51152,32.20373],[77.50966,32.2074],[77.50341,32.21052],[77.50222,32.21506],[77.49353,32.21642],[77.48462,32.2213],[77.47934,32.22024],[77.46889,32.22337],[77.46612,32.22239],[77.46794,32.21962],[77.46783,32.21418],[77.46447,32.20974],[77.46815,32.20466],[77.4607,32.20011],[77.46465,32.19293],[77.44143,32.1879],[77.43542,32.19003],[77.42091,32.18869],[77.4165,32.2017],[77.4138,32.20146],[77.40894,32.20403],[77.40785,32.20707],[77.40384,32.2097],[77.39733,32.2125],[77.38904,32.2089],[77.38106,32.21126],[77.3735,32.21905],[77.36921,32.21869],[77.36504,32.22325],[77.35404,32.22894],[77.35352,32.23209],[77.34753,32.24072],[77.34767,32.24307],[77.34494,32.24554],[77.34463,32.25096],[77.34742,32.252],[77.34981,32.268],[77.34657,32.26983],[77.34513,32.27377],[77.34622,32.27804],[77.34411,32.285],[77.33959,32.28847],[77.34065,32.29603],[77.33436,32.30366],[77.32966,32.30266],[77.32782,32.30393],[77.32587,32.30868],[77.32831,32.31179],[77.32777,32.31472],[77.32205,32.31744],[77.32123,32.32005],[77.3106,32.32704],[77.30794,32.33263],[77.30026,32.33147],[77.29122,32.33855],[77.28437,32.33998],[77.27751,32.34706],[77.27585,32.35465],[77.26129,32.35958],[77.2507,32.36865],[77.24521,32.37026],[77.24266,32.37537],[77.23183,32.3749],[77.22717,32.37017],[77.22096,32.37636],[77.20538,32.38459],[77.19981,32.38586],[77.19508,32.39831],[77.18479,32.39651],[77.17526,32.4052]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"200","area_level":"District","area_name":"Kaimur (Bhabua)","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.74507,25.40046],[83.74286,25.40912],[83.73968,25.41048],[83.73407,25.4062],[83.73235,25.39815],[83.73059,25.39743],[83.72446,25.40001],[83.71743,25.39752],[83.70885,25.38576],[83.7056,25.38806],[83.70464,25.39571],[83.70168,25.39616],[83.69448,25.38895],[83.69655,25.38247],[83.69143,25.38417],[83.68237,25.37957],[83.68331,25.37663],[83.68856,25.37632],[83.69453,25.37123],[83.68973,25.36737],[83.68071,25.36638],[83.67666,25.36434],[83.66392,25.37283],[83.66709,25.36272],[83.66439,25.36191],[83.65986,25.36373],[83.65616,25.36854],[83.65794,25.35963],[83.65453,25.35688],[83.65135,25.3574],[83.64916,25.35398],[83.65281,25.34834],[83.64933,25.3445],[83.64901,25.33951],[83.64769,25.33936],[83.6463,25.34247],[83.64219,25.33973],[83.63371,25.34321],[83.63515,25.33584],[83.63414,25.33435],[83.62989,25.33386],[83.62844,25.32852],[83.62404,25.32872],[83.62138,25.33147],[83.61685,25.33206],[83.6081,25.33152],[83.60601,25.3287],[83.59628,25.32767],[83.58742,25.32175],[83.58574,25.31531],[83.58062,25.3171],[83.57624,25.31504],[83.5771,25.31011],[83.57372,25.30613],[83.57073,25.30718],[83.57348,25.31249],[83.57206,25.31466],[83.5617,25.31359],[83.5573,25.31148],[83.55392,25.31481],[83.53991,25.31579],[83.53715,25.313],[83.53729,25.30977],[83.54723,25.31406],[83.55376,25.31022],[83.55409,25.30849],[83.54514,25.30675],[83.5428,25.30408],[83.53837,25.30436],[83.53401,25.29735],[83.52808,25.30247],[83.52346,25.30256],[83.5237,25.29614],[83.52694,25.29298],[83.51525,25.2847],[83.51104,25.28879],[83.50892,25.28844],[83.50546,25.28104],[83.50199,25.2824],[83.50447,25.28658],[83.50228,25.28747],[83.49797,25.28584],[83.49739,25.28035],[83.49138,25.27991],[83.49107,25.28278],[83.49337,25.28491],[83.49354,25.2877],[83.49235,25.28973],[83.49038,25.28948],[83.48995,25.28404],[83.48699,25.28359],[83.48532,25.27932],[83.48003,25.27625],[83.4768,25.27181],[83.47971,25.26752],[83.47701,25.26151],[83.47066,25.2576],[83.46792,25.25234],[83.46268,25.25036],[83.45299,25.25627],[83.45009,25.26104],[83.447,25.2599],[83.44651,25.25752],[83.44302,25.25456],[83.44214,25.25915],[83.43896,25.25783],[83.44077,25.25331],[83.43703,25.24887],[83.43623,25.24424],[83.43366,25.24553],[83.43269,25.25045],[83.42806,25.25351],[83.42475,25.25182],[83.42741,25.24791],[83.42672,25.24639],[83.42182,25.24652],[83.41898,25.25043],[83.41564,25.25001],[83.4093,25.24551],[83.40886,25.24079],[83.41326,25.23829],[83.41343,25.23493],[83.4077,25.23952],[83.40626,25.23773],[83.40657,25.23381],[83.40928,25.22932],[83.40277,25.22437],[83.40206,25.2212],[83.40384,25.21315],[83.40204,25.20906],[83.4009,25.20952],[83.40217,25.21278],[83.39761,25.21631],[83.39524,25.21452],[83.39586,25.20759],[83.39312,25.20434],[83.39038,25.20496],[83.38971,25.21008],[83.38622,25.21215],[83.38248,25.2107],[83.38353,25.20328],[83.38194,25.20175],[83.37269,25.20033],[83.3663,25.19536],[83.36339,25.19822],[83.35725,25.19966],[83.3538,25.18886],[83.35195,25.18866],[83.34979,25.18489],[83.35353,25.18333],[83.35297,25.17864],[83.35637,25.17763],[83.35163,25.16296],[83.3513,25.15701],[83.36341,25.15347],[83.36379,25.13789],[83.36191,25.13268],[83.36817,25.12989],[83.36737,25.12523],[83.36606,25.12511],[83.36328,25.11118],[83.35009,25.11328],[83.35069,25.10507],[83.34819,25.1006],[83.34727,25.0868],[83.34411,25.08615],[83.34131,25.08154],[83.34042,25.06865],[83.33594,25.06146],[83.34275,25.05987],[83.34335,25.05088],[83.33571,25.05093],[83.32434,25.03733],[83.3248,25.02473],[83.32141,25.02467],[83.32022,25.01726],[83.32658,25.01291],[83.33412,25.0141],[83.34981,25.00925],[83.35254,24.99656],[83.3502,24.99018],[83.34337,24.9812],[83.34503,24.97215],[83.34311,24.96307],[83.3437,24.96206],[83.34983,24.96306],[83.35502,24.95663],[83.35969,24.95615],[83.36145,24.95372],[83.36105,24.94228],[83.3649,24.9375],[83.36094,24.93237],[83.36285,24.92773],[83.36224,24.91827],[83.36367,24.91301],[83.3623,24.90902],[83.35645,24.90747],[83.35458,24.90547],[83.35745,24.90051],[83.36588,24.89302],[83.36479,24.89085],[83.35826,24.89077],[83.35827,24.88813],[83.36946,24.87987],[83.36801,24.87668],[83.36088,24.87424],[83.35753,24.87054],[83.36928,24.86231],[83.37674,24.86014],[83.37657,24.85639],[83.38051,24.85371],[83.37995,24.84952],[83.38142,24.84652],[83.38682,24.83975],[83.39252,24.8406],[83.39283,24.8361],[83.39659,24.83235],[83.3951,24.82617],[83.40136,24.81888],[83.40185,24.8139],[83.39925,24.80895],[83.39374,24.80476],[83.39583,24.80001],[83.39964,24.79666],[83.39118,24.78947],[83.39325,24.78653],[83.39329,24.78244],[83.39699,24.78179],[83.39778,24.77811],[83.40794,24.77411],[83.41282,24.77502],[83.42197,24.7694],[83.42783,24.76829],[83.42784,24.7631],[83.43485,24.76079],[83.43744,24.75734],[83.44138,24.75645],[83.44156,24.75097],[83.44864,24.73833],[83.45083,24.73855],[83.45319,24.735],[83.45733,24.7338],[83.4581,24.73135],[83.46227,24.73309],[83.4709,24.73237],[83.48934,24.73633],[83.48833,24.72279],[83.48544,24.71535],[83.48513,24.70167],[83.48974,24.70045],[83.49529,24.70452],[83.49826,24.70357],[83.50054,24.69732],[83.49886,24.69486],[83.50701,24.69282],[83.5108,24.68578],[83.51799,24.68273],[83.51684,24.68112],[83.52039,24.67729],[83.50915,24.67119],[83.50399,24.6663],[83.50049,24.65125],[83.50288,24.6478],[83.50479,24.6469],[83.5099,24.6483],[83.52019,24.64106],[83.52981,24.64303],[83.52679,24.63001],[83.52476,24.62943],[83.52469,24.62782],[83.53153,24.62696],[83.5437,24.62828],[83.54798,24.62328],[83.54327,24.6173],[83.54192,24.61275],[83.53042,24.6124],[83.5273,24.60587],[83.52331,24.60252],[83.52435,24.58894],[83.528,24.58627],[83.53022,24.58205],[83.52881,24.57458],[83.5301,24.56732],[83.52829,24.56158],[83.52388,24.5579],[83.5218,24.55222],[83.52155,24.54724],[83.52412,24.54173],[83.56275,24.54395],[83.60389,24.54008],[83.63515,24.54087],[83.64533,24.54378],[83.64851,24.54896],[83.65416,24.54985],[83.65771,24.55339],[83.65934,24.55897],[83.66314,24.55428],[83.66427,24.54776],[83.67211,24.54435],[83.67375,24.54038],[83.69736,24.54085],[83.71049,24.54399],[83.71338,24.54921],[83.71636,24.55128],[83.71649,24.55863],[83.73126,24.55908],[83.74054,24.56711],[83.74246,24.57074],[83.73542,24.57739],[83.73541,24.5816],[83.73813,24.58667],[83.73861,24.59721],[83.74273,24.61292],[83.74808,24.61293],[83.75213,24.62639],[83.7452,24.63692],[83.74001,24.63788],[83.73995,24.64295],[83.73328,24.64494],[83.73093,24.64851],[83.73253,24.65173],[83.72814,24.65812],[83.7322,24.65972],[83.73242,24.66192],[83.72981,24.66459],[83.73646,24.67135],[83.73972,24.68047],[83.74336,24.68406],[83.74353,24.68763],[83.7501,24.69418],[83.75064,24.69734],[83.75531,24.70293],[83.75602,24.70835],[83.76074,24.70548],[83.76123,24.71119],[83.75967,24.71714],[83.76378,24.72338],[83.76581,24.73018],[83.77126,24.73465],[83.78075,24.73499],[83.78139,24.74904],[83.77745,24.75098],[83.77584,24.75763],[83.77893,24.76161],[83.78516,24.75951],[83.7784,24.77203],[83.77912,24.77424],[83.77695,24.77638],[83.77484,24.78469],[83.77661,24.79366],[83.77175,24.79687],[83.7629,24.79802],[83.75767,24.80172],[83.75224,24.79965],[83.73641,24.80717],[83.72912,24.80759],[83.72518,24.81525],[83.72924,24.8221],[83.7248,24.82708],[83.71721,24.83102],[83.71565,24.83631],[83.72219,24.83951],[83.72293,24.84529],[83.72762,24.84704],[83.72726,24.85162],[83.73471,24.85321],[83.73677,24.85796],[83.74236,24.85889],[83.74523,24.86432],[83.74811,24.86291],[83.74857,24.86749],[83.75387,24.86391],[83.75654,24.86565],[83.75607,24.87115],[83.76087,24.87194],[83.76126,24.87328],[83.75531,24.87308],[83.75369,24.87857],[83.75511,24.88306],[83.75884,24.8848],[83.76211,24.89072],[83.76037,24.89293],[83.76039,24.89777],[83.76488,24.89803],[83.76387,24.90622],[83.76621,24.90892],[83.76379,24.91321],[83.77338,24.91591],[83.7743,24.92083],[83.78102,24.92558],[83.77881,24.92974],[83.78536,24.93479],[83.78604,24.93882],[83.79202,24.9365],[83.79263,24.94],[83.79692,24.94317],[83.79676,24.94978],[83.80498,24.95165],[83.80561,24.95382],[83.80084,24.95602],[83.80088,24.95915],[83.81099,24.95932],[83.81154,24.96208],[83.80824,24.97195],[83.80897,24.97993],[83.81493,24.98609],[83.81845,24.98553],[83.8198,24.98881],[83.82601,24.98813],[83.83175,24.9922],[83.83333,24.99742],[83.83955,25.0014],[83.83604,25.00325],[83.83584,25.00563],[83.83198,25.00703],[83.83009,25.00588],[83.83071,25.01078],[83.82688,25.00831],[83.82661,25.01318],[83.82854,25.01491],[83.82546,25.0191],[83.82835,25.02134],[83.82519,25.02451],[83.82784,25.02676],[83.8298,25.0248],[83.83128,25.02933],[83.82957,25.03073],[83.83071,25.03467],[83.83401,25.03383],[83.83356,25.03661],[83.83589,25.03837],[83.83035,25.04046],[83.83141,25.04348],[83.81868,25.08915],[83.81568,25.09384],[83.81154,25.09643],[83.81274,25.09916],[83.80977,25.10051],[83.80577,25.10588],[83.80426,25.11181],[83.80715,25.1163],[83.80942,25.12759],[83.81407,25.12753],[83.81936,25.14669],[83.81397,25.14716],[83.8138,25.15353],[83.8233,25.1532],[83.82454,25.16088],[83.82097,25.16349],[83.82104,25.17479],[83.80663,25.17749],[83.80765,25.18186],[83.81067,25.18116],[83.81189,25.18447],[83.81248,25.19975],[83.81415,25.20175],[83.81189,25.20293],[83.80988,25.20763],[83.80542,25.20609],[83.80426,25.20747],[83.80587,25.21238],[83.80475,25.21275],[83.8069,25.21359],[83.80686,25.21568],[83.81314,25.21513],[83.8134,25.21665],[83.81682,25.21644],[83.8172,25.21908],[83.82239,25.21991],[83.82402,25.21846],[83.82748,25.23186],[83.8338,25.24307],[83.84055,25.24456],[83.85193,25.24401],[83.85322,25.24767],[83.85683,25.24848],[83.86447,25.24687],[83.86428,25.2532],[83.88386,25.25256],[83.88548,25.25828],[83.8828,25.26165],[83.88472,25.26577],[83.89957,25.26506],[83.89447,25.27424],[83.89674,25.28009],[83.89338,25.28277],[83.89581,25.28497],[83.8943,25.28938],[83.89519,25.29391],[83.898,25.29522],[83.89699,25.29851],[83.89417,25.29929],[83.89595,25.30214],[83.89301,25.30233],[83.89154,25.30564],[83.88751,25.30768],[83.88683,25.30982],[83.8848,25.30973],[83.88461,25.31259],[83.87619,25.31271],[83.87298,25.31761],[83.86867,25.31949],[83.86719,25.32475],[83.86424,25.32554],[83.86486,25.32718],[83.863,25.3284],[83.86157,25.32747],[83.85948,25.32998],[83.85633,25.33024],[83.85107,25.33371],[83.84592,25.33551],[83.84465,25.33462],[83.84204,25.33657],[83.84408,25.33975],[83.8396,25.34241],[83.83946,25.34421],[83.83213,25.34438],[83.83062,25.34587],[83.82942,25.34475],[83.82809,25.34846],[83.82471,25.3514],[83.82114,25.35109],[83.8147,25.35874],[83.81495,25.36122],[83.8128,25.36237],[83.81294,25.36396],[83.81013,25.36447],[83.81206,25.36637],[83.80993,25.37155],[83.80817,25.37041],[83.80101,25.37155],[83.80148,25.36765],[83.79808,25.3698],[83.79341,25.36703],[83.79234,25.36873],[83.79011,25.3675],[83.78541,25.37011],[83.78237,25.36745],[83.77873,25.36781],[83.77957,25.37324],[83.77703,25.37454],[83.77971,25.37715],[83.77616,25.37803],[83.77662,25.38403],[83.77412,25.38408],[83.77215,25.38613],[83.77871,25.39162],[83.78169,25.39223],[83.78271,25.39713],[83.7763,25.39903],[83.7717,25.39741],[83.76914,25.39339],[83.76954,25.38733],[83.76838,25.38622],[83.75778,25.38952],[83.75482,25.39327],[83.75754,25.39718],[83.76628,25.3974],[83.76627,25.40095],[83.75546,25.40447],[83.74507,25.40046]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"201","area_level":"District","area_name":"Katihar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.82544,25.88072],[87.81109,25.88179],[87.80705,25.87913],[87.80507,25.87544],[87.80966,25.86931],[87.81544,25.87103],[87.81553,25.86108],[87.82097,25.85885],[87.81592,25.84645],[87.81083,25.84594],[87.80468,25.8489],[87.79842,25.84851],[87.79385,25.84297],[87.81704,25.83039],[87.81707,25.82529],[87.82146,25.81509],[87.82272,25.80557],[87.82619,25.80075],[87.8253,25.79663],[87.82715,25.79313],[87.82663,25.78969],[87.82865,25.78775],[87.82153,25.7863],[87.81082,25.78024],[87.80696,25.77999],[87.80182,25.77132],[87.80236,25.76945],[87.80645,25.76937],[87.80565,25.76535],[87.7888,25.7659],[87.78854,25.76269],[87.78418,25.7597],[87.77813,25.75931],[87.78681,25.75251],[87.79064,25.75176],[87.7923,25.75003],[87.79121,25.74798],[87.78613,25.74589],[87.78039,25.74612],[87.77633,25.7505],[87.7767,25.754],[87.77253,25.75691],[87.76409,25.75675],[87.76356,25.75505],[87.75353,25.7535],[87.7492,25.75743],[87.74742,25.76188],[87.73947,25.76603],[87.73571,25.76354],[87.73562,25.76515],[87.7287,25.76518],[87.72454,25.76347],[87.7199,25.7648],[87.72018,25.76695],[87.71053,25.76538],[87.7094,25.75947],[87.7108,25.75739],[87.70848,25.75773],[87.7076,25.75496],[87.70397,25.7566],[87.7037,25.75886],[87.69945,25.75776],[87.69805,25.75571],[87.70021,25.75414],[87.69655,25.75303],[87.70353,25.74953],[87.69552,25.74871],[87.68777,25.75026],[87.68501,25.74699],[87.68705,25.74169],[87.68415,25.73601],[87.6865,25.7331],[87.68106,25.72712],[87.68249,25.72298],[87.68454,25.72186],[87.68107,25.72104],[87.68019,25.71588],[87.68139,25.71602],[87.68191,25.71217],[87.67975,25.71159],[87.68328,25.70786],[87.68175,25.70454],[87.68434,25.70342],[87.68435,25.70155],[87.67764,25.69949],[87.67562,25.70081],[87.6752,25.7047],[87.67314,25.70433],[87.67358,25.70232],[87.67048,25.70142],[87.66821,25.69243],[87.669,25.69072],[87.66718,25.68891],[87.6572,25.68538],[87.65246,25.68678],[87.64957,25.68269],[87.64265,25.68839],[87.64178,25.68727],[87.64092,25.69407],[87.63826,25.69449],[87.63064,25.6907],[87.62715,25.68637],[87.61853,25.6849],[87.61633,25.68225],[87.60478,25.68639],[87.60189,25.68534],[87.59904,25.68927],[87.59446,25.6912],[87.58236,25.68622],[87.57819,25.68734],[87.5759,25.69001],[87.57271,25.68913],[87.57191,25.68527],[87.57005,25.68393],[87.56271,25.68589],[87.56107,25.68894],[87.55921,25.6879],[87.55624,25.68922],[87.55592,25.68655],[87.56015,25.68409],[87.55521,25.68483],[87.55218,25.68131],[87.55535,25.68149],[87.55622,25.67923],[87.55881,25.68112],[87.56101,25.67887],[87.56229,25.67967],[87.56345,25.67737],[87.56904,25.67702],[87.57121,25.67851],[87.57148,25.67463],[87.57498,25.67241],[87.57389,25.66924],[87.5776,25.6696],[87.57508,25.66631],[87.57513,25.66366],[87.57154,25.66318],[87.574,25.66039],[87.5712,25.65936],[87.56965,25.66277],[87.56067,25.66048],[87.55701,25.66584],[87.5508,25.66604],[87.55279,25.67099],[87.54552,25.67196],[87.54273,25.66989],[87.53932,25.67083],[87.53756,25.67316],[87.53888,25.67614],[87.53688,25.6829],[87.53999,25.6869],[87.53704,25.68714],[87.53236,25.68296],[87.52956,25.68415],[87.53094,25.6824],[87.53049,25.67588],[87.52576,25.67369],[87.52316,25.677],[87.5054,25.68117],[87.50665,25.67204],[87.50615,25.66702],[87.50468,25.66694],[87.50128,25.67001],[87.48952,25.67003],[87.48705,25.67253],[87.48801,25.6745],[87.48455,25.67324],[87.48152,25.6772],[87.48104,25.68393],[87.47883,25.68247],[87.4709,25.68419],[87.45001,25.68345],[87.4429,25.68174],[87.4334,25.68301],[87.43107,25.67792],[87.4147,25.67554],[87.41347,25.67953],[87.40023,25.67857],[87.39156,25.68385],[87.3885,25.6814],[87.38629,25.68156],[87.38101,25.68589],[87.37728,25.68177],[87.37453,25.68146],[87.37199,25.68474],[87.3677,25.68569],[87.3665,25.68857],[87.36328,25.68977],[87.35161,25.68743],[87.35301,25.68465],[87.34042,25.68394],[87.33781,25.6824],[87.33565,25.68628],[87.33354,25.68572],[87.33286,25.68839],[87.32045,25.6884],[87.32055,25.68988],[87.3179,25.68976],[87.31374,25.69363],[87.30331,25.69383],[87.30234,25.69837],[87.29553,25.7027],[87.27841,25.70291],[87.27569,25.71041],[87.27642,25.71528],[87.25954,25.71737],[87.25346,25.71084],[87.24695,25.70982],[87.24615,25.70589],[87.24011,25.70093],[87.24022,25.69662],[87.24457,25.68944],[87.24753,25.6873],[87.24772,25.68326],[87.25252,25.68154],[87.25976,25.67026],[87.25632,25.66782],[87.26202,25.65218],[87.2663,25.65178],[87.2702,25.64745],[87.27774,25.64775],[87.27645,25.64419],[87.25781,25.64165],[87.25196,25.6365],[87.24846,25.62542],[87.24913,25.62249],[87.25427,25.62197],[87.25448,25.61496],[87.2508,25.59934],[87.25719,25.59823],[87.25752,25.59346],[87.25985,25.58957],[87.25777,25.58499],[87.25854,25.57622],[87.26359,25.57193],[87.26315,25.57014],[87.26056,25.57008],[87.26096,25.56829],[87.26684,25.56721],[87.26848,25.56211],[87.26716,25.56225],[87.26513,25.55791],[87.25746,25.55767],[87.25462,25.54972],[87.24338,25.54943],[87.24193,25.54796],[87.24215,25.5412],[87.22869,25.53935],[87.22289,25.53685],[87.22595,25.52505],[87.22154,25.52104],[87.22249,25.52025],[87.22003,25.50813],[87.20782,25.50828],[87.20744,25.50072],[87.21231,25.50003],[87.21025,25.48192],[87.22734,25.4738],[87.23181,25.46144],[87.22616,25.44325],[87.22057,25.43185],[87.21531,25.42999],[87.21503,25.42827],[87.20525,25.42785],[87.20088,25.41806],[87.20083,25.41461],[87.20844,25.41319],[87.20839,25.412],[87.21423,25.41185],[87.21844,25.40776],[87.21953,25.40064],[87.2153,25.3954],[87.21682,25.39354],[87.21576,25.39214],[87.22575,25.38446],[87.22577,25.382],[87.22992,25.38042],[87.23,25.378],[87.23451,25.37593],[87.24316,25.37944],[87.24456,25.38174],[87.27718,25.37149],[87.26334,25.35153],[87.26928,25.35393],[87.27131,25.35935],[87.27556,25.35808],[87.2819,25.36741],[87.28489,25.37901],[87.29321,25.39505],[87.29252,25.39993],[87.30185,25.40391],[87.3092,25.40222],[87.30963,25.40453],[87.31483,25.40881],[87.32027,25.40775],[87.33935,25.41699],[87.34329,25.41543],[87.34942,25.41685],[87.35725,25.41544],[87.36548,25.42483],[87.36873,25.41881],[87.36789,25.41742],[87.36615,25.41807],[87.3644,25.41533],[87.36738,25.40921],[87.38221,25.40542],[87.40577,25.39121],[87.40855,25.39256],[87.40631,25.38647],[87.40784,25.38102],[87.42598,25.3759],[87.42801,25.3768],[87.42994,25.37486],[87.43488,25.38157],[87.44167,25.36374],[87.45471,25.36012],[87.46152,25.36705],[87.47839,25.36674],[87.48695,25.36921],[87.48822,25.36592],[87.49,25.36611],[87.50165,25.35098],[87.51487,25.35353],[87.52565,25.34825],[87.52429,25.35499],[87.52659,25.35602],[87.52865,25.35478],[87.52993,25.34763],[87.52712,25.34259],[87.53571,25.33722],[87.54139,25.33064],[87.54437,25.33224],[87.56266,25.33399],[87.57097,25.33327],[87.57454,25.34068],[87.58251,25.34316],[87.58414,25.34915],[87.59185,25.34188],[87.5841,25.33144],[87.59349,25.32513],[87.59228,25.3224],[87.61197,25.31266],[87.61331,25.31547],[87.61743,25.3181],[87.62699,25.31163],[87.63044,25.31969],[87.63588,25.31582],[87.63524,25.31389],[87.63667,25.31314],[87.63782,25.31479],[87.65501,25.30757],[87.65682,25.3087],[87.66368,25.30807],[87.66467,25.31124],[87.66565,25.30915],[87.66674,25.31077],[87.66874,25.30842],[87.67516,25.30703],[87.6755,25.31054],[87.67317,25.31286],[87.69208,25.31153],[87.68685,25.30918],[87.68431,25.30965],[87.68478,25.30687],[87.6954,25.30668],[87.69862,25.30396],[87.6954,25.30004],[87.69968,25.2971],[87.69632,25.29394],[87.69309,25.28511],[87.71152,25.27459],[87.71134,25.25764],[87.74325,25.26411],[87.76718,25.26098],[87.77633,25.25659],[87.79671,25.25198],[87.79822,25.24985],[87.80127,25.24921],[87.80093,25.247],[87.8057,25.2431],[87.8273,25.23529],[87.83534,25.24047],[87.83662,25.24581],[87.84063,25.25012],[87.84855,25.25397],[87.85029,25.25296],[87.85527,25.25527],[87.85553,25.25991],[87.85343,25.2636],[87.85701,25.26965],[87.86069,25.26963],[87.86241,25.27411],[87.86019,25.28578],[87.85543,25.29689],[87.83817,25.30158],[87.83093,25.3073],[87.82636,25.31352],[87.81627,25.31992],[87.80506,25.32456],[87.79654,25.3256],[87.78824,25.33834],[87.79355,25.36695],[87.79231,25.37355],[87.77929,25.37308],[87.76966,25.37898],[87.76588,25.38527],[87.76829,25.39274],[87.76787,25.39826],[87.77253,25.40422],[87.76388,25.4075],[87.76451,25.41378],[87.76794,25.41344],[87.77045,25.40957],[87.77519,25.40891],[87.77636,25.41309],[87.77407,25.41827],[87.77432,25.42353],[87.76993,25.42621],[87.77136,25.42898],[87.774,25.42962],[87.77431,25.43214],[87.78133,25.43254],[87.78726,25.4504],[87.79678,25.4475],[87.79694,25.44501],[87.80231,25.44473],[87.81167,25.43555],[87.82478,25.43795],[87.82681,25.44107],[87.82572,25.44545],[87.82747,25.44764],[87.8289,25.44683],[87.83096,25.45221],[87.83013,25.46085],[87.83964,25.46137],[87.83935,25.46784],[87.85428,25.46672],[87.8558,25.47098],[87.86053,25.47108],[87.86152,25.46914],[87.86346,25.46911],[87.86288,25.46397],[87.86931,25.469],[87.86886,25.47301],[87.86489,25.47995],[87.86781,25.49385],[87.87482,25.50469],[87.87989,25.5042],[87.88637,25.50808],[87.88677,25.51036],[87.88333,25.51694],[87.88437,25.52057],[87.88714,25.51819],[87.89018,25.51827],[87.89285,25.51267],[87.8982,25.5117],[87.89786,25.50491],[87.90276,25.50532],[87.90439,25.50939],[87.90891,25.50882],[87.90682,25.51174],[87.91093,25.51575],[87.90834,25.51866],[87.91273,25.52577],[87.91837,25.52659],[87.91696,25.53295],[87.92555,25.53377],[87.92772,25.5372],[87.94635,25.53547],[87.94708,25.53908],[87.95111,25.53836],[87.95419,25.53977],[87.95671,25.53739],[87.96333,25.53954],[87.96408,25.5369],[87.9667,25.53664],[87.97655,25.5247],[87.98078,25.52454],[87.986,25.52664],[87.9909,25.52538],[87.99135,25.52287],[87.9938,25.52241],[87.98502,25.51533],[87.98902,25.51181],[87.99415,25.51199],[87.99511,25.50797],[87.99288,25.50723],[87.99321,25.50372],[87.99578,25.49954],[88.00698,25.49705],[88.00672,25.51014],[88.01352,25.51121],[88.0093,25.50403],[88.01197,25.50037],[88.01412,25.49938],[88.01806,25.50186],[88.02466,25.50165],[88.02244,25.49828],[88.03028,25.49154],[88.03594,25.49212],[88.03769,25.48978],[88.04514,25.4891],[88.04926,25.48601],[88.05126,25.49006],[88.05627,25.49119],[88.0654,25.49013],[88.07132,25.48426],[88.07338,25.48431],[88.07159,25.49337],[88.07269,25.49429],[88.07139,25.49587],[88.07175,25.50616],[88.07324,25.50817],[88.07653,25.5081],[88.06655,25.51039],[88.0665,25.51275],[88.07089,25.51576],[88.07113,25.51745],[88.06447,25.52524],[88.05959,25.52838],[88.05784,25.53404],[88.05317,25.53515],[88.04736,25.53955],[88.04204,25.53742],[88.03728,25.53832],[88.03582,25.54479],[88.03372,25.54724],[88.03833,25.55299],[88.03553,25.55253],[88.03043,25.55595],[88.02699,25.55609],[88.02582,25.55886],[88.02892,25.56078],[88.03048,25.56567],[88.03255,25.56676],[88.03417,25.56392],[88.03851,25.5694],[88.03397,25.57097],[88.02825,25.56999],[88.02554,25.57207],[88.02402,25.5762],[88.02772,25.57665],[88.02881,25.5811],[88.02625,25.57877],[88.02464,25.58278],[88.02545,25.58622],[88.02026,25.59115],[88.02406,25.59206],[88.02816,25.59092],[88.02969,25.59261],[88.02938,25.59706],[88.03097,25.60007],[88.02521,25.5983],[88.02421,25.60204],[88.0311,25.60174],[88.03332,25.59983],[88.03982,25.60106],[88.04001,25.60334],[88.03322,25.60347],[88.03008,25.6053],[88.03708,25.60921],[88.04323,25.60865],[88.04287,25.61077],[88.03728,25.61633],[88.03508,25.62394],[88.04067,25.63211],[88.04471,25.6341],[88.04782,25.63145],[88.04978,25.63452],[88.05526,25.63782],[88.05396,25.63918],[88.04911,25.63754],[88.0463,25.63475],[88.04112,25.64259],[88.0368,25.64164],[88.03783,25.64727],[88.04024,25.64723],[88.04359,25.6431],[88.04474,25.64589],[88.04817,25.64622],[88.04853,25.64961],[88.04564,25.65596],[88.05012,25.66076],[88.04659,25.66273],[88.04783,25.66905],[88.0459,25.67898],[88.05165,25.68351],[88.05257,25.6862],[88.04814,25.6979],[88.04279,25.70199],[88.04053,25.69756],[88.03764,25.69698],[88.03497,25.70208],[88.03122,25.7033],[88.0291,25.70109],[88.0312,25.69791],[88.03084,25.6945],[88.02065,25.69586],[88.01851,25.699],[88.02107,25.70969],[88.01247,25.71018],[88.00195,25.71568],[87.99885,25.7219],[87.99233,25.72314],[87.98919,25.72619],[87.98476,25.7243],[87.98247,25.71998],[87.9657,25.72562],[87.96633,25.7328],[87.96102,25.73638],[87.96137,25.73866],[87.95544,25.74181],[87.95223,25.74619],[87.94626,25.74624],[87.94765,25.74752],[87.94705,25.75161],[87.94623,25.75254],[87.94365,25.75087],[87.94759,25.75764],[87.94239,25.75966],[87.94219,25.76941],[87.93788,25.77214],[87.93797,25.77393],[87.9353,25.77471],[87.93263,25.77295],[87.93424,25.77179],[87.93363,25.76943],[87.92611,25.77279],[87.92568,25.77567],[87.92392,25.77638],[87.91931,25.77458],[87.90706,25.77354],[87.909,25.77173],[87.90768,25.76969],[87.90292,25.7724],[87.90195,25.77705],[87.90345,25.77791],[87.90318,25.78151],[87.90425,25.78247],[87.90688,25.78053],[87.90382,25.80202],[87.90164,25.80225],[87.90797,25.80342],[87.90564,25.80756],[87.89946,25.80749],[87.90384,25.814],[87.90752,25.812],[87.90796,25.81568],[87.91435,25.81134],[87.91588,25.8164],[87.90889,25.81988],[87.90558,25.81981],[87.90442,25.82248],[87.89911,25.82461],[87.89962,25.8258],[87.8978,25.82707],[87.89956,25.82867],[87.90168,25.82793],[87.90254,25.83052],[87.89724,25.83161],[87.89752,25.83024],[87.89501,25.82923],[87.89609,25.82804],[87.89357,25.8275],[87.88804,25.83066],[87.89121,25.83218],[87.89204,25.83534],[87.89408,25.83396],[87.89607,25.83707],[87.90099,25.83269],[87.90285,25.83395],[87.89673,25.83794],[87.90421,25.83645],[87.90209,25.84207],[87.90326,25.84254],[87.90592,25.83969],[87.90855,25.84107],[87.90541,25.84039],[87.9036,25.84287],[87.90779,25.84527],[87.91208,25.85112],[87.91412,25.85145],[87.91469,25.85395],[87.91131,25.85273],[87.90829,25.85407],[87.90608,25.85782],[87.90187,25.85793],[87.90256,25.86168],[87.89211,25.86574],[87.88862,25.86511],[87.88707,25.8612],[87.88271,25.85936],[87.87565,25.86061],[87.87437,25.86822],[87.87338,25.86612],[87.86979,25.86657],[87.86953,25.86863],[87.86806,25.86865],[87.8587,25.86479],[87.85017,25.8696],[87.83015,25.8705],[87.82748,25.87468],[87.82925,25.87774],[87.82572,25.87774],[87.82544,25.88072]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"202","area_level":"District","area_name":"Khagaria","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.41842,25.72963],[86.41055,25.73202],[86.40768,25.7302],[86.41599,25.72761],[86.41254,25.72075],[86.40755,25.721],[86.40017,25.7241],[86.3907,25.71843],[86.38419,25.71118],[86.37707,25.71059],[86.37222,25.70409],[86.36323,25.7046],[86.35874,25.69973],[86.35912,25.69806],[86.35375,25.69631],[86.34738,25.68909],[86.34542,25.68253],[86.33181,25.66985],[86.33061,25.66161],[86.32678,25.66046],[86.32623,25.65653],[86.31692,25.65797],[86.31651,25.65673],[86.3047,25.65635],[86.29929,25.65392],[86.2922,25.65412],[86.2915,25.64504],[86.29309,25.63874],[86.29483,25.63762],[86.29492,25.63081],[86.28802,25.62063],[86.28906,25.61614],[86.28542,25.60634],[86.28311,25.60721],[86.28075,25.60551],[86.27911,25.59553],[86.28202,25.59269],[86.28459,25.58556],[86.29101,25.58239],[86.29214,25.57875],[86.29954,25.57442],[86.29833,25.5729],[86.28678,25.57861],[86.28662,25.56937],[86.28417,25.56231],[86.2832,25.54295],[86.29184,25.54498],[86.29187,25.53667],[86.29842,25.53709],[86.29279,25.52313],[86.2948,25.52653],[86.29774,25.52702],[86.30313,25.5263],[86.308,25.52358],[86.31789,25.52455],[86.32617,25.50719],[86.32704,25.51577],[86.33059,25.51747],[86.33627,25.49904],[86.33021,25.49513],[86.32919,25.49168],[86.33951,25.48592],[86.34312,25.4868],[86.34173,25.49584],[86.34327,25.49894],[86.3598,25.49962],[86.36301,25.5025],[86.36617,25.50192],[86.36605,25.49596],[86.35733,25.4908],[86.35452,25.48577],[86.34535,25.48385],[86.34692,25.48205],[86.35193,25.48279],[86.35082,25.47795],[86.35228,25.47545],[86.36428,25.48132],[86.36564,25.49209],[86.36809,25.49368],[86.37101,25.49314],[86.36753,25.49076],[86.37256,25.49176],[86.37608,25.48671],[86.36834,25.4835],[86.36604,25.48018],[86.36693,25.47838],[86.37421,25.47856],[86.38228,25.48244],[86.38637,25.4811],[86.38515,25.49048],[86.39464,25.4969],[86.39851,25.50461],[86.40745,25.50476],[86.40962,25.50235],[86.4107,25.50341],[86.41403,25.50048],[86.41318,25.49838],[86.41527,25.49624],[86.42103,25.49638],[86.42365,25.49936],[86.42535,25.49918],[86.42811,25.49211],[86.42448,25.49215],[86.41976,25.47708],[86.43019,25.47773],[86.43785,25.47436],[86.43781,25.46947],[86.44438,25.46857],[86.44809,25.45519],[86.45988,25.44271],[86.50316,25.42182],[86.50907,25.44756],[86.5211,25.45338],[86.52724,25.45933],[86.53186,25.47166],[86.53488,25.4749],[86.5329,25.47519],[86.54074,25.49234],[86.54502,25.49221],[86.54475,25.49041],[86.55102,25.48631],[86.55267,25.49573],[86.5688,25.4937],[86.57581,25.48795],[86.57722,25.48032],[86.5747,25.47914],[86.58205,25.4616],[86.58161,25.45881],[86.58468,25.45162],[86.58733,25.45167],[86.59709,25.42896],[86.59953,25.4264],[86.60169,25.42704],[86.61714,25.4134],[86.62477,25.40943],[86.63572,25.39895],[86.64018,25.39243],[86.64215,25.38335],[86.64143,25.37392],[86.63702,25.36757],[86.62537,25.35929],[86.62405,25.35256],[86.63241,25.35286],[86.63256,25.34811],[86.65018,25.32778],[86.63434,25.30413],[86.64076,25.2886],[86.64221,25.28066],[86.64938,25.27147],[86.65404,25.268],[86.66111,25.26779],[86.67608,25.26382],[86.68763,25.26641],[86.7197,25.26384],[86.72351,25.26129],[86.72594,25.25401],[86.73617,25.2574],[86.74592,25.26544],[86.75811,25.27162],[86.75744,25.26732],[86.76203,25.26742],[86.77846,25.27548],[86.77286,25.28663],[86.78166,25.29642],[86.77929,25.2998],[86.78845,25.3068],[86.78377,25.31108],[86.7871,25.31263],[86.78734,25.31677],[86.78433,25.32476],[86.79492,25.33063],[86.80172,25.33246],[86.81064,25.32756],[86.81439,25.32925],[86.81798,25.33605],[86.82198,25.33556],[86.82496,25.34237],[86.83252,25.35017],[86.84163,25.35704],[86.845,25.35737],[86.85688,25.36356],[86.85401,25.37599],[86.84742,25.38166],[86.84463,25.38022],[86.84233,25.38147],[86.83622,25.38743],[86.83805,25.39481],[86.83354,25.39963],[86.83233,25.40549],[86.82464,25.41067],[86.81954,25.41192],[86.82292,25.42153],[86.82202,25.42746],[86.82599,25.4315],[86.82716,25.43964],[86.81834,25.4456],[86.81724,25.45007],[86.81329,25.45288],[86.8107,25.45748],[86.8127,25.45914],[86.81777,25.45788],[86.81893,25.46193],[86.81746,25.46847],[86.8145,25.46891],[86.8121,25.46571],[86.81199,25.46806],[86.80906,25.46811],[86.81154,25.47113],[86.81936,25.46975],[86.82412,25.47162],[86.82581,25.47693],[86.82767,25.47731],[86.82693,25.47897],[86.83072,25.48121],[86.82548,25.48996],[86.82541,25.4922],[86.82806,25.49484],[86.8265,25.50143],[86.83299,25.50842],[86.83286,25.51058],[86.83614,25.51186],[86.83567,25.51386],[86.83952,25.51406],[86.84086,25.52618],[86.84484,25.52827],[86.84495,25.5361],[86.84021,25.543],[86.84021,25.55255],[86.84412,25.56152],[86.84653,25.56295],[86.85072,25.57094],[86.84906,25.57192],[86.8474,25.56893],[86.84577,25.57194],[86.85087,25.57816],[86.84952,25.57964],[86.84474,25.57843],[86.84359,25.58172],[86.83907,25.58316],[86.83913,25.58916],[86.83684,25.5908],[86.84105,25.59547],[86.84103,25.60093],[86.83902,25.60094],[86.83751,25.6087],[86.83874,25.61744],[86.83052,25.62064],[86.82794,25.61865],[86.82177,25.61756],[86.82201,25.62268],[86.82055,25.62329],[86.81979,25.62939],[86.81878,25.62828],[86.81173,25.63131],[86.81129,25.6345],[86.80375,25.63728],[86.80048,25.63392],[86.80057,25.63216],[86.79224,25.63201],[86.78052,25.62438],[86.77187,25.62512],[86.76351,25.62369],[86.76486,25.62639],[86.76333,25.62989],[86.76553,25.63153],[86.76225,25.63997],[86.75866,25.6426],[86.7574,25.64008],[86.75261,25.63955],[86.74448,25.6413],[86.73932,25.64739],[86.73977,25.65219],[86.73347,25.65654],[86.7318,25.66151],[86.72529,25.66351],[86.72317,25.66186],[86.72081,25.6627],[86.72116,25.66438],[86.71522,25.65445],[86.71212,25.65519],[86.70845,25.65329],[86.70876,25.6448],[86.71488,25.64114],[86.71013,25.63462],[86.7073,25.6398],[86.70944,25.64167],[86.70512,25.64651],[86.70199,25.64639],[86.70231,25.64779],[86.68876,25.64416],[86.68455,25.63932],[86.6862,25.63679],[86.68462,25.63487],[86.68534,25.63287],[86.68307,25.63176],[86.68314,25.6254],[86.67724,25.62826],[86.67454,25.61969],[86.66683,25.62208],[86.66519,25.62738],[86.66639,25.62999],[86.66342,25.63185],[86.66197,25.63832],[86.65841,25.64059],[86.65417,25.64081],[86.64992,25.64088],[86.64359,25.63243],[86.63936,25.63095],[86.63438,25.62972],[86.63231,25.63066],[86.62496,25.62843],[86.62444,25.62691],[86.62237,25.62822],[86.61578,25.62611],[86.61446,25.6272],[86.60654,25.62142],[86.59714,25.62157],[86.59093,25.61355],[86.59285,25.61208],[86.58928,25.60965],[86.59762,25.59875],[86.59504,25.5954],[86.59047,25.59746],[86.58704,25.59106],[86.58446,25.59058],[86.58374,25.59306],[86.5895,25.59807],[86.57512,25.60509],[86.56924,25.60044],[86.56518,25.60102],[86.5629,25.6037],[86.56125,25.61115],[86.55876,25.61343],[86.55352,25.61043],[86.55001,25.60528],[86.5462,25.61096],[86.54215,25.61105],[86.54119,25.60502],[86.53473,25.60878],[86.53016,25.60663],[86.52167,25.60815],[86.51696,25.6109],[86.51066,25.6108],[86.50635,25.62065],[86.49403,25.61933],[86.49229,25.62475],[86.48778,25.62679],[86.48582,25.63026],[86.4838,25.63898],[86.47891,25.63834],[86.47732,25.63957],[86.47739,25.64656],[86.4755,25.64795],[86.48378,25.65716],[86.48239,25.65783],[86.47398,25.65369],[86.47291,25.65583],[86.47906,25.66013],[86.47545,25.66521],[86.47285,25.66385],[86.46932,25.66451],[86.47011,25.66902],[86.4676,25.67231],[86.46751,25.67713],[86.46019,25.67503],[86.45879,25.67702],[86.46078,25.68234],[86.45222,25.68321],[86.45305,25.68484],[86.45931,25.68729],[86.46323,25.70047],[86.46164,25.70237],[86.46003,25.70196],[86.45813,25.69237],[86.45313,25.69385],[86.45148,25.69686],[86.44893,25.69746],[86.4494,25.68971],[86.43726,25.69656],[86.43573,25.6978],[86.43799,25.70062],[86.4316,25.71001],[86.42765,25.70548],[86.42546,25.70563],[86.42587,25.7154],[86.42909,25.71909],[86.41945,25.71792],[86.41974,25.72052],[86.42473,25.72286],[86.42357,25.72662],[86.41842,25.72963]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"203","area_level":"District","area_name":"Kishanganj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.21871,26.55666],[88.21191,26.56117],[88.21065,26.56009],[88.20822,26.55006],[88.21624,26.54869],[88.2119,26.54443],[88.20765,26.54539],[88.20525,26.54349],[88.21294,26.54243],[88.21398,26.54156],[88.21268,26.54041],[88.20398,26.54113],[88.20137,26.53954],[88.20212,26.54375],[88.19627,26.54392],[88.19541,26.54796],[88.17939,26.54825],[88.17562,26.54053],[88.17623,26.53537],[88.17278,26.53597],[88.16786,26.54076],[88.16654,26.53553],[88.15635,26.53002],[88.15035,26.53181],[88.14738,26.52263],[88.14004,26.52422],[88.13498,26.52338],[88.1328,26.51644],[88.12965,26.51601],[88.12515,26.52053],[88.12386,26.5241],[88.11727,26.52761],[88.11697,26.53273],[88.11173,26.53119],[88.11003,26.53606],[88.10442,26.53744],[88.10339,26.53973],[88.09807,26.53795],[88.09897,26.53476],[88.10368,26.53607],[88.10246,26.5306],[88.10473,26.52776],[88.103,26.51825],[88.0951,26.51641],[88.09579,26.51026],[88.09024,26.50725],[88.09233,26.5047],[88.09857,26.50591],[88.10017,26.49417],[88.10548,26.4893],[88.10141,26.48455],[88.10021,26.48025],[88.10698,26.47574],[88.10486,26.47223],[88.09781,26.4725],[88.10371,26.46817],[88.10293,26.46557],[88.09208,26.46331],[88.09701,26.45217],[88.09598,26.43999],[88.09423,26.43718],[88.08587,26.43182],[88.08371,26.42591],[88.07775,26.41924],[88.06959,26.41365],[88.0713,26.40814],[88.06873,26.40791],[88.06676,26.40963],[88.06419,26.40817],[88.06317,26.41047],[88.05992,26.40958],[88.05686,26.40779],[88.05767,26.40669],[88.05554,26.4026],[88.0544,26.40281],[88.05561,26.40053],[88.05267,26.4014],[88.05185,26.39917],[88.0514,26.40059],[88.04758,26.40106],[88.04529,26.3997],[88.04651,26.39751],[88.04388,26.39676],[88.04538,26.39631],[88.03791,26.39378],[88.03666,26.39012],[88.0345,26.39191],[88.03464,26.38826],[88.03206,26.38791],[88.03097,26.38232],[88.03016,26.38322],[88.02724,26.38161],[88.0284,26.37884],[88.0316,26.37805],[88.03073,26.37589],[88.02916,26.37623],[88.03007,26.37405],[88.02751,26.37103],[88.02776,26.36912],[88.03112,26.36661],[88.0305,26.36492],[88.00658,26.361],[88.00439,26.36438],[88.00172,26.3652],[88.00277,26.36626],[88.00001,26.36656],[87.99801,26.36495],[87.99535,26.36601],[87.99206,26.37137],[87.99192,26.39256],[87.96598,26.39719],[87.93229,26.418],[87.92694,26.4178],[87.92583,26.42806],[87.91807,26.42987],[87.91599,26.43183],[87.9176,26.43486],[87.92453,26.43847],[87.92514,26.44484],[87.92405,26.44668],[87.89874,26.44871],[87.90981,26.45756],[87.90021,26.4773],[87.88829,26.48676],[87.88598,26.47641],[87.86333,26.46795],[87.86281,26.46458],[87.85843,26.4639],[87.85964,26.45953],[87.85824,26.45659],[87.8626,26.45311],[87.86093,26.45122],[87.86143,26.44888],[87.85103,26.44528],[87.84883,26.43646],[87.82833,26.44],[87.82973,26.45002],[87.82314,26.45354],[87.81724,26.45918],[87.79359,26.46857],[87.79194,26.46892],[87.79134,26.46645],[87.79001,26.46935],[87.78665,26.46809],[87.79011,26.46579],[87.78912,26.46432],[87.78652,26.46582],[87.78632,26.46303],[87.78883,26.4621],[87.78832,26.46074],[87.78483,26.45863],[87.78278,26.45407],[87.77796,26.45373],[87.77898,26.45062],[87.77401,26.45036],[87.77692,26.44761],[87.77561,26.44279],[87.77791,26.44223],[87.77442,26.44042],[87.77301,26.43599],[87.77497,26.43529],[87.7764,26.43685],[87.77791,26.43566],[87.77593,26.42948],[87.77403,26.43111],[87.77265,26.42996],[87.77542,26.42696],[87.77047,26.42752],[87.77606,26.42519],[87.77298,26.42022],[87.77573,26.42211],[87.77597,26.42112],[87.77236,26.41924],[87.77126,26.42155],[87.76739,26.41815],[87.76819,26.41484],[87.76559,26.41316],[87.76731,26.41116],[87.76476,26.40988],[87.75388,26.40797],[87.74844,26.41795],[87.73932,26.41759],[87.73394,26.40761],[87.72308,26.41253],[87.72399,26.41562],[87.7223,26.4195],[87.72126,26.41875],[87.71817,26.42242],[87.71393,26.42283],[87.71368,26.42518],[87.71107,26.42748],[87.6983,26.42834],[87.69231,26.43566],[87.67756,26.43546],[87.67813,26.41583],[87.6502,26.40596],[87.65218,26.38483],[87.65712,26.3839],[87.65654,26.3808],[87.65828,26.37912],[87.65468,26.37904],[87.65265,26.3765],[87.6487,26.37677],[87.64353,26.37997],[87.63714,26.37904],[87.6364,26.37513],[87.63838,26.37537],[87.64193,26.36899],[87.64065,26.36444],[87.63749,26.36322],[87.63743,26.36009],[87.62973,26.35905],[87.62712,26.35629],[87.6272,26.35047],[87.62513,26.34496],[87.62055,26.34609],[87.6198,26.34456],[87.61785,26.34701],[87.61997,26.34779],[87.61545,26.34716],[87.61539,26.34904],[87.61127,26.34859],[87.61103,26.34628],[87.61233,26.34564],[87.61298,26.34067],[87.6173,26.33674],[87.61897,26.33222],[87.62449,26.33141],[87.62222,26.3271],[87.62391,26.32395],[87.62862,26.3233],[87.62619,26.31827],[87.62751,26.31893],[87.62907,26.31695],[87.63523,26.31749],[87.63925,26.31085],[87.6418,26.31085],[87.64195,26.31234],[87.64404,26.31101],[87.64613,26.30542],[87.65354,26.30616],[87.65663,26.30307],[87.661,26.30344],[87.66201,26.29972],[87.6661,26.29727],[87.66495,26.29623],[87.66521,26.289],[87.66742,26.28696],[87.66361,26.28356],[87.66165,26.28421],[87.6607,26.28118],[87.65781,26.28016],[87.66069,26.27918],[87.66067,26.27199],[87.65951,26.27131],[87.66125,26.26962],[87.66081,26.26749],[87.6631,26.27044],[87.66276,26.26738],[87.67092,26.26841],[87.66527,26.26709],[87.67086,26.26712],[87.67485,26.2654],[87.67332,26.2641],[87.67516,26.26036],[87.67204,26.26038],[87.67028,26.25666],[87.66623,26.25691],[87.66436,26.25467],[87.67017,26.25443],[87.67249,26.25146],[87.67242,26.24871],[87.67658,26.24625],[87.67781,26.23984],[87.67531,26.23948],[87.67342,26.23367],[87.67903,26.23343],[87.68683,26.22603],[87.68848,26.22641],[87.68599,26.22218],[87.69299,26.21676],[87.6917,26.21179],[87.69852,26.20861],[87.69567,26.2049],[87.69934,26.20479],[87.69671,26.20147],[87.69963,26.20017],[87.69643,26.19746],[87.69651,26.19434],[87.69753,26.19336],[87.70038,26.19541],[87.70418,26.19373],[87.70203,26.18724],[87.69301,26.18616],[87.68916,26.18281],[87.68766,26.17822],[87.6909,26.17006],[87.70111,26.16695],[87.70619,26.16225],[87.7026,26.15903],[87.69192,26.16007],[87.68713,26.1576],[87.69142,26.1526],[87.69065,26.14948],[87.69503,26.1493],[87.69526,26.14547],[87.69443,26.14275],[87.69186,26.14187],[87.6927,26.13478],[87.6874,26.13396],[87.68718,26.12854],[87.69213,26.12582],[87.68923,26.11968],[87.68621,26.11733],[87.69219,26.11909],[87.69242,26.11731],[87.68724,26.11056],[87.68898,26.10905],[87.68515,26.10572],[87.68518,26.10304],[87.70067,26.1041],[87.70204,26.10883],[87.70934,26.10887],[87.71129,26.11207],[87.71001,26.11566],[87.71504,26.1181],[87.71673,26.1176],[87.71823,26.1134],[87.72094,26.11459],[87.729,26.11281],[87.72811,26.10592],[87.73148,26.10605],[87.73325,26.10395],[87.7321,26.10635],[87.73311,26.10658],[87.73635,26.10445],[87.73418,26.10766],[87.73547,26.10873],[87.739,26.10611],[87.7376,26.1032],[87.7406,26.10408],[87.74404,26.10076],[87.76152,26.09914],[87.76008,26.10293],[87.76006,26.10526],[87.76135,26.10562],[87.76991,26.10334],[87.77181,26.10488],[87.77897,26.10316],[87.77864,26.09213],[87.78045,26.08833],[87.78188,26.09144],[87.78345,26.09024],[87.79007,26.09046],[87.79224,26.09406],[87.79699,26.09448],[87.80211,26.09958],[87.80948,26.09852],[87.81265,26.09652],[87.81938,26.09639],[87.82285,26.09985],[87.82551,26.09827],[87.83006,26.10059],[87.83497,26.09907],[87.83345,26.09547],[87.83856,26.09698],[87.8339,26.0941],[87.8373,26.09341],[87.83818,26.09146],[87.85473,26.09498],[87.86012,26.09204],[87.86343,26.09344],[87.86353,26.09826],[87.86661,26.10067],[87.86808,26.10499],[87.87108,26.10448],[87.86752,26.09685],[87.87228,26.09545],[87.86982,26.0885],[87.87295,26.08414],[87.86434,26.07152],[87.87287,26.07001],[87.86154,26.0602],[87.85439,26.05689],[87.85323,26.04949],[87.84875,26.04196],[87.85016,26.03837],[87.8566,26.03635],[87.86206,26.03654],[87.86227,26.0354],[87.87795,26.04937],[87.8835,26.04681],[87.89012,26.04918],[87.89039,26.05792],[87.8924,26.06116],[87.89878,26.064],[87.90124,26.06291],[87.90699,26.07234],[87.91008,26.07137],[87.91687,26.07706],[87.92053,26.07569],[87.92805,26.08307],[87.93136,26.08202],[87.93178,26.08029],[87.93064,26.07031],[87.93635,26.0686],[87.93492,26.06368],[87.94388,26.06101],[87.94886,26.0619],[87.95012,26.06055],[87.95033,26.06562],[87.95264,26.06461],[87.95452,26.06567],[87.95482,26.06903],[87.95196,26.068],[87.94855,26.0696],[87.95232,26.07188],[87.95039,26.07421],[87.95335,26.0753],[87.95291,26.07647],[87.95521,26.07474],[87.95808,26.07632],[87.9655,26.07405],[87.97279,26.07743],[87.98219,26.07376],[87.98562,26.07766],[87.98224,26.07987],[87.98235,26.08339],[87.9782,26.0838],[87.97666,26.08707],[87.97075,26.08867],[87.97152,26.09293],[87.96361,26.09463],[87.96653,26.0955],[87.96664,26.09686],[87.96747,26.0961],[87.96843,26.09688],[87.96714,26.09786],[87.97176,26.10057],[87.97343,26.09956],[87.97624,26.10194],[87.9772,26.1005],[87.97752,26.10272],[87.97861,26.10117],[87.98212,26.10324],[87.9823,26.10189],[87.9868,26.10141],[87.98689,26.10275],[87.98335,26.10427],[87.98464,26.1067],[87.98647,26.1066],[87.98585,26.10927],[87.98773,26.10977],[87.98577,26.11344],[87.98511,26.11143],[87.98376,26.11571],[87.97427,26.11664],[87.97152,26.11536],[87.96927,26.11762],[87.9708,26.12046],[87.97939,26.12228],[87.97955,26.12342],[87.97534,26.12426],[87.97615,26.12528],[87.97981,26.1243],[87.9814,26.12606],[87.98153,26.12769],[87.97849,26.13015],[87.97919,26.13797],[87.97245,26.14],[87.9749,26.14337],[87.98131,26.14458],[87.98375,26.14212],[87.98588,26.14268],[87.98502,26.14565],[87.99207,26.15096],[87.99439,26.14341],[87.99988,26.1384],[88.00625,26.14574],[88.01077,26.14477],[88.01415,26.14931],[88.00783,26.15805],[88.00998,26.16154],[88.01434,26.15857],[88.01968,26.15982],[88.02416,26.16526],[88.02648,26.16544],[88.02829,26.17004],[88.03177,26.16998],[88.03293,26.17321],[88.03149,26.17521],[88.03723,26.17871],[88.04983,26.17607],[88.0508,26.17218],[88.05771,26.17278],[88.05907,26.1705],[88.0657,26.17517],[88.06497,26.17699],[88.06888,26.17685],[88.06949,26.17413],[88.07185,26.1742],[88.07804,26.1798],[88.07581,26.18252],[88.07621,26.18532],[88.08174,26.18683],[88.08543,26.19103],[88.08932,26.19073],[88.09134,26.20214],[88.09424,26.20256],[88.09371,26.20367],[88.09579,26.20488],[88.09781,26.20359],[88.09823,26.20528],[88.10113,26.20601],[88.10087,26.20753],[88.10361,26.20778],[88.10314,26.21124],[88.10541,26.21438],[88.11146,26.21545],[88.11111,26.2177],[88.11658,26.21915],[88.11442,26.22372],[88.12573,26.22776],[88.12987,26.22502],[88.13089,26.22715],[88.13982,26.22719],[88.14176,26.23164],[88.1366,26.23248],[88.13674,26.24122],[88.14112,26.2434],[88.14265,26.25047],[88.1444,26.25224],[88.15241,26.25349],[88.15434,26.25452],[88.15544,26.25811],[88.16048,26.25689],[88.16324,26.25341],[88.16822,26.25815],[88.17177,26.25565],[88.17419,26.25579],[88.17947,26.26331],[88.17901,26.2691],[88.18265,26.27044],[88.18318,26.27368],[88.19732,26.27186],[88.20159,26.28092],[88.21063,26.27779],[88.21322,26.28043],[88.21335,26.28404],[88.21712,26.28445],[88.22693,26.2909],[88.22591,26.29407],[88.22818,26.29566],[88.22671,26.30362],[88.23061,26.30792],[88.22943,26.31037],[88.23184,26.3087],[88.23165,26.30582],[88.2357,26.30333],[88.23987,26.31155],[88.24554,26.31454],[88.2442,26.32201],[88.24674,26.32428],[88.24725,26.32812],[88.24805,26.32636],[88.24923,26.32793],[88.25439,26.32699],[88.25779,26.33195],[88.25778,26.33552],[88.26688,26.33508],[88.26838,26.33799],[88.27088,26.33753],[88.27114,26.33593],[88.26915,26.33275],[88.26652,26.33187],[88.26877,26.33141],[88.26979,26.32787],[88.27469,26.32857],[88.27603,26.33224],[88.27987,26.33196],[88.28115,26.34202],[88.2782,26.3432],[88.27891,26.34939],[88.28433,26.34965],[88.28539,26.35238],[88.29035,26.35142],[88.29139,26.34923],[88.29353,26.35082],[88.29369,26.35293],[88.289,26.35396],[88.29089,26.35827],[88.29019,26.35997],[88.28273,26.35757],[88.27981,26.35968],[88.27884,26.36668],[88.2765,26.36826],[88.27674,26.37252],[88.27444,26.37624],[88.27626,26.37944],[88.27194,26.37783],[88.26767,26.38141],[88.2663,26.3792],[88.26148,26.37762],[88.25756,26.38128],[88.25533,26.3774],[88.24678,26.37538],[88.24657,26.37418],[88.24047,26.3752],[88.23221,26.3796],[88.23401,26.38066],[88.23321,26.38634],[88.22704,26.38947],[88.22794,26.39275],[88.23439,26.39476],[88.23826,26.39886],[88.23923,26.40344],[88.24756,26.40752],[88.25242,26.41605],[88.25489,26.41707],[88.26455,26.41541],[88.26825,26.41758],[88.26958,26.42045],[88.26701,26.42285],[88.26305,26.42283],[88.26341,26.42877],[88.2594,26.42863],[88.25846,26.43218],[88.25085,26.43315],[88.25108,26.4359],[88.24817,26.43668],[88.24286,26.44872],[88.24382,26.45384],[88.24245,26.45235],[88.23417,26.45151],[88.22515,26.45366],[88.22275,26.45913],[88.21845,26.46259],[88.21773,26.46591],[88.214,26.46858],[88.20982,26.46923],[88.21171,26.47182],[88.22117,26.47153],[88.22424,26.47799],[88.22436,26.48195],[88.21986,26.48352],[88.21246,26.48325],[88.21177,26.48164],[88.2138,26.47808],[88.21577,26.47805],[88.21073,26.47309],[88.20331,26.47432],[88.20296,26.47636],[88.19577,26.47513],[88.19162,26.47767],[88.19066,26.48205],[88.18786,26.48491],[88.18618,26.48377],[88.18504,26.48607],[88.17989,26.48764],[88.1818,26.49253],[88.17885,26.4946],[88.1797,26.49958],[88.18358,26.50041],[88.18511,26.50405],[88.19113,26.50853],[88.19128,26.51153],[88.1951,26.51414],[88.19884,26.51266],[88.20316,26.51313],[88.20233,26.51511],[88.20415,26.52129],[88.20609,26.52111],[88.20877,26.52441],[88.22968,26.53504],[88.22931,26.54006],[88.22556,26.54721],[88.22566,26.55097],[88.228,26.55295],[88.22549,26.55675],[88.21871,26.55666]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"204","area_level":"District","area_name":"Lakhisarai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.05807,25.33349],[86.05326,25.33946],[86.04027,25.33388],[86.0417,25.32984],[86.03359,25.32024],[86.03162,25.30877],[86.0201,25.30676],[86.02025,25.29642],[86.00618,25.2976],[86.00737,25.30249],[86.00005,25.30353],[86.00043,25.30699],[85.95385,25.31718],[85.94988,25.3198],[85.93152,25.32151],[85.93257,25.29923],[85.92637,25.29835],[85.91556,25.29347],[85.91414,25.29428],[85.91451,25.29737],[85.91122,25.29664],[85.90561,25.28841],[85.90462,25.28328],[85.90624,25.27893],[85.90392,25.27312],[85.90542,25.26801],[85.90101,25.26037],[85.90311,25.25886],[85.90199,25.2565],[85.90864,25.25447],[85.91497,25.2487],[85.9219,25.24759],[85.9221,25.24496],[85.92476,25.24517],[85.92642,25.24268],[85.9267,25.23798],[85.93102,25.23566],[85.93014,25.23024],[85.93914,25.23026],[85.9436,25.22638],[85.94361,25.21927],[85.94691,25.21922],[85.94988,25.21621],[85.95491,25.21607],[85.94913,25.20374],[85.95276,25.20181],[85.95321,25.19639],[85.9558,25.19455],[85.96559,25.19562],[85.96583,25.18916],[85.97247,25.18802],[85.97734,25.19259],[85.98925,25.19378],[85.99068,25.19734],[85.9883,25.20045],[85.99232,25.20998],[85.99102,25.21327],[86.0,25.21173],[86.0132,25.2174],[86.01805,25.21378],[86.01825,25.20961],[86.01563,25.20847],[86.01492,25.20383],[86.0173,25.19389],[86.00695,25.1901],[86.00635,25.1778],[85.98183,25.1802],[85.98484,25.17409],[85.9881,25.17694],[85.99022,25.17495],[85.99323,25.17521],[85.99367,25.17296],[85.99127,25.16985],[85.9935,25.16709],[85.99003,25.16561],[85.98693,25.16762],[85.9803,25.16761],[85.97999,25.16505],[85.98235,25.1643],[85.98174,25.16141],[85.9787,25.1612],[85.97908,25.15829],[85.98306,25.15661],[85.98328,25.15531],[85.97978,25.15493],[85.98282,25.15259],[85.9781,25.15382],[85.97714,25.15235],[85.9828,25.14946],[85.98103,25.14812],[85.97725,25.14922],[85.97568,25.14762],[85.98088,25.14607],[85.97768,25.14444],[85.97715,25.14154],[85.97349,25.13913],[85.95885,25.13965],[85.95483,25.1312],[85.95546,25.12894],[85.95894,25.12667],[85.95882,25.12377],[85.95486,25.11768],[85.95729,25.11645],[85.95217,25.11529],[85.95108,25.1061],[85.95337,25.10118],[85.95129,25.09945],[85.95343,25.09781],[85.95098,25.09513],[85.96062,25.09569],[85.96533,25.0913],[85.96963,25.09214],[85.96959,25.09086],[85.96099,25.08748],[85.96224,25.07908],[85.96789,25.07865],[85.96771,25.07586],[85.97626,25.07209],[85.97512,25.06017],[85.97788,25.05844],[85.97262,25.04229],[85.97264,25.02987],[85.98552,25.02314],[85.98354,25.01742],[85.98535,25.01406],[85.9847,25.01296],[85.9827,25.01383],[85.98295,25.0109],[85.97646,25.0045],[85.9777,25.0033],[85.97558,24.99314],[85.97786,24.9912],[85.97705,24.98751],[85.98054,24.98407],[85.98346,24.98575],[86.00677,24.98196],[86.00814,24.97897],[86.00706,24.97251],[86.01653,24.96897],[86.02106,24.97306],[86.02257,24.97829],[86.02163,24.97981],[86.02483,24.97915],[86.02866,24.98419],[86.03919,24.98134],[86.04108,24.97891],[86.04,24.97536],[86.04967,24.97403],[86.0579,24.97868],[86.06173,24.97913],[86.06035,24.98325],[86.06129,24.98992],[86.06867,24.98914],[86.06975,24.98432],[86.07628,24.98156],[86.08097,24.98459],[86.08314,24.99322],[86.0878,24.99245],[86.0904,24.99548],[86.09774,24.99065],[86.09786,24.97962],[86.10937,24.97773],[86.11052,24.97369],[86.11322,24.97379],[86.11458,24.97561],[86.11817,24.97397],[86.12024,24.97856],[86.11555,24.98323],[86.11889,24.99179],[86.12147,24.99079],[86.12366,24.9939],[86.12829,24.9942],[86.13049,24.99985],[86.1338,24.99997],[86.13801,25.00526],[86.14037,25.01791],[86.13584,25.02086],[86.13592,25.02458],[86.13809,25.03378],[86.14044,25.03485],[86.14342,25.04934],[86.15811,25.04646],[86.16359,25.04686],[86.16679,25.0432],[86.17432,25.03922],[86.18255,25.0295],[86.20947,25.01868],[86.21155,25.01503],[86.21141,24.9958],[86.2226,24.98956],[86.23434,24.99316],[86.23823,24.99767],[86.24052,24.99739],[86.24601,25.00049],[86.25217,25.00883],[86.25213,25.01297],[86.24908,25.01439],[86.24837,25.01666],[86.24692,25.02915],[86.24263,25.0432],[86.24371,25.0554],[86.27198,25.06666],[86.28323,25.07577],[86.28644,25.08109],[86.29681,25.07697],[86.31484,25.07961],[86.32055,25.08532],[86.31824,25.08927],[86.31894,25.09292],[86.31573,25.09456],[86.31605,25.09649],[86.3139,25.0969],[86.32124,25.11108],[86.3447,25.12788],[86.36111,25.13665],[86.37099,25.14384],[86.36482,25.16829],[86.36569,25.20019],[86.36636,25.20303],[86.37758,25.21385],[86.38325,25.2232],[86.39086,25.2248],[86.38091,25.23765],[86.38083,25.24123],[86.38273,25.24315],[86.38023,25.24521],[86.37375,25.24545],[86.37278,25.24869],[86.36946,25.24856],[86.37225,25.2552],[86.36474,25.26414],[86.35859,25.28628],[86.35345,25.28767],[86.35403,25.29473],[86.35258,25.29892],[86.33592,25.29297],[86.28982,25.28116],[86.26386,25.2777],[86.26147,25.27957],[86.2477,25.27321],[86.22673,25.25822],[86.22583,25.26201],[86.21554,25.2528],[86.20065,25.24949],[86.19534,25.24982],[86.19247,25.25174],[86.19433,25.25844],[86.1834,25.25914],[86.16564,25.27129],[86.16648,25.25839],[86.15881,25.26428],[86.15759,25.27581],[86.15528,25.27677],[86.1543,25.2822],[86.15017,25.28419],[86.14731,25.29782],[86.12241,25.30496],[86.10334,25.30797],[86.1004,25.31183],[86.09632,25.3051],[86.08753,25.30604],[86.07744,25.30964],[86.08163,25.31348],[86.06885,25.32202],[86.0648,25.3338],[86.05807,25.33349]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"205","area_level":"District","area_name":"Madhepura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.75201,26.11763],[86.74444,26.11611],[86.74285,26.11241],[86.74075,26.11221],[86.7334,26.09244],[86.72752,26.0903],[86.72645,26.08412],[86.72002,26.07654],[86.72053,26.06984],[86.70588,26.06115],[86.70677,26.05833],[86.70374,26.05491],[86.70229,26.04692],[86.70544,26.04542],[86.70004,26.03949],[86.70081,26.03034],[86.6918,26.02841],[86.69199,26.02633],[86.69381,26.02615],[86.69331,26.02127],[86.68429,26.02128],[86.6801,26.01811],[86.6728,26.0159],[86.66191,26.0193],[86.64742,26.02061],[86.64427,26.01083],[86.6244,26.00359],[86.61913,25.99551],[86.62065,25.98512],[86.61562,25.97729],[86.62477,25.96992],[86.63378,25.96996],[86.63599,25.96844],[86.6342,25.96191],[86.62243,25.95219],[86.61975,25.94777],[86.61965,25.94444],[86.62192,25.94259],[86.62616,25.94473],[86.63289,25.94112],[86.63867,25.92801],[86.64488,25.92678],[86.64831,25.92115],[86.65809,25.92428],[86.66415,25.92917],[86.67226,25.92917],[86.67823,25.93649],[86.68668,25.93617],[86.693,25.9332],[86.68625,25.92451],[86.68622,25.92088],[86.69119,25.91608],[86.69372,25.9046],[86.70698,25.90397],[86.70598,25.89618],[86.70826,25.87927],[86.71101,25.8772],[86.71219,25.86645],[86.73148,25.8651],[86.73264,25.86157],[86.75293,25.8557],[86.76019,25.85791],[86.75989,25.85991],[86.76584,25.86055],[86.76536,25.8642],[86.78064,25.85802],[86.79479,25.86055],[86.80261,25.86348],[86.80418,25.86518],[86.80248,25.86619],[86.80851,25.87229],[86.81359,25.8704],[86.81368,25.86778],[86.81656,25.86743],[86.81934,25.86736],[86.82082,25.86964],[86.83382,25.86785],[86.84068,25.86893],[86.84278,25.87087],[86.84338,25.86391],[86.8489,25.86216],[86.8493,25.85963],[86.84753,25.85675],[86.8491,25.84916],[86.84989,25.84735],[86.85236,25.84681],[86.85395,25.83851],[86.85635,25.83817],[86.85767,25.83015],[86.86465,25.82499],[86.86482,25.82228],[86.87011,25.82208],[86.87108,25.81734],[86.87409,25.81644],[86.87411,25.81492],[86.86532,25.81244],[86.86223,25.81426],[86.8607,25.81222],[86.85893,25.81457],[86.85885,25.81208],[86.85606,25.81264],[86.85707,25.79949],[86.85961,25.7975],[86.85933,25.79502],[86.86126,25.79402],[86.8604,25.79252],[86.86429,25.78785],[86.85919,25.78304],[86.86054,25.78217],[86.85987,25.78071],[86.85636,25.77734],[86.85725,25.7709],[86.85265,25.75682],[86.84761,25.75493],[86.84775,25.74887],[86.84938,25.74993],[86.85623,25.74821],[86.8564,25.74603],[86.85391,25.74008],[86.85131,25.74023],[86.84666,25.74429],[86.84262,25.74197],[86.84323,25.73427],[86.84871,25.73452],[86.85465,25.7318],[86.86608,25.7298],[86.87145,25.72316],[86.87216,25.71587],[86.86776,25.71215],[86.868,25.70723],[86.85802,25.70105],[86.85515,25.69198],[86.85911,25.67444],[86.85476,25.67396],[86.84503,25.68007],[86.84138,25.67728],[86.83889,25.6781],[86.83771,25.67606],[86.83319,25.67654],[86.83492,25.66774],[86.82651,25.66397],[86.82153,25.66696],[86.81748,25.66382],[86.81697,25.65838],[86.81017,25.65656],[86.80289,25.65793],[86.80034,25.65655],[86.80409,25.64807],[86.80872,25.64443],[86.80396,25.63721],[86.81129,25.6345],[86.81173,25.63131],[86.81878,25.62828],[86.81979,25.62939],[86.82055,25.62329],[86.82201,25.62268],[86.82177,25.61756],[86.82794,25.61865],[86.83052,25.62064],[86.83874,25.61744],[86.83751,25.6087],[86.83902,25.60094],[86.84103,25.60093],[86.84105,25.59547],[86.83684,25.5908],[86.83913,25.58916],[86.83907,25.58316],[86.84359,25.58172],[86.84474,25.57843],[86.84952,25.57964],[86.85087,25.57816],[86.84577,25.57194],[86.8474,25.56893],[86.84906,25.57192],[86.85072,25.57094],[86.84653,25.56295],[86.84412,25.56152],[86.84021,25.55255],[86.84021,25.543],[86.84495,25.5361],[86.84484,25.52827],[86.84086,25.52618],[86.83952,25.51406],[86.83567,25.51386],[86.83614,25.51186],[86.83286,25.51058],[86.83299,25.50842],[86.8265,25.50143],[86.82806,25.49484],[86.82541,25.4922],[86.82548,25.48996],[86.83072,25.48121],[86.82693,25.47897],[86.82767,25.47731],[86.82581,25.47693],[86.82412,25.47162],[86.81936,25.46975],[86.81022,25.47044],[86.80909,25.46793],[86.81199,25.46806],[86.8121,25.46571],[86.8145,25.46891],[86.81746,25.46847],[86.81893,25.46193],[86.81777,25.45788],[86.8127,25.45914],[86.8107,25.4578],[86.81115,25.45624],[86.81724,25.45007],[86.81834,25.4456],[86.82225,25.44328],[86.82909,25.44541],[86.82835,25.44757],[86.82511,25.44844],[86.82369,25.45067],[86.82759,25.45776],[86.84809,25.45522],[86.85331,25.45298],[86.85849,25.4622],[86.86346,25.46166],[86.8666,25.46577],[86.87169,25.46235],[86.88172,25.46228],[86.88434,25.46459],[86.88593,25.46978],[86.89368,25.47247],[86.9013,25.47824],[86.9106,25.47298],[86.91423,25.47312],[86.91714,25.47671],[86.91709,25.47939],[86.91489,25.48443],[86.90899,25.48994],[86.92066,25.49324],[86.92445,25.49075],[86.92553,25.48392],[86.9284,25.48509],[86.92758,25.49044],[86.9293,25.49226],[86.93534,25.492],[86.94286,25.48925],[86.94482,25.48738],[86.94352,25.4855],[86.94048,25.48414],[86.93554,25.48565],[86.93299,25.48349],[86.93314,25.48157],[86.94673,25.47465],[86.94911,25.4795],[86.95354,25.47965],[86.95784,25.47534],[86.96661,25.47208],[86.96847,25.46891],[86.9679,25.46384],[86.96975,25.46216],[86.97821,25.47618],[86.98895,25.47644],[86.99734,25.47083],[87.00348,25.4701],[87.00075,25.47278],[87.00842,25.47806],[87.01486,25.47711],[87.01676,25.48193],[87.02147,25.47598],[87.02028,25.47005],[87.01613,25.46581],[87.0171,25.46334],[87.02024,25.46224],[87.034,25.46794],[87.03481,25.47028],[87.04448,25.47328],[87.04447,25.47222],[87.04683,25.47247],[87.04852,25.47385],[87.05462,25.47044],[87.05973,25.4709],[87.06648,25.46872],[87.07026,25.4702],[87.06948,25.47176],[87.07281,25.47395],[87.07349,25.47876],[87.07738,25.48237],[87.08096,25.48938],[87.08072,25.4951],[87.08441,25.4941],[87.08471,25.49732],[87.08972,25.49754],[87.08997,25.49934],[87.09333,25.50065],[87.09523,25.51332],[87.10047,25.52002],[87.09814,25.52378],[87.0859,25.52698],[87.08461,25.52597],[87.0833,25.52768],[87.0795,25.5259],[87.07904,25.5231],[87.07149,25.51962],[87.06873,25.52459],[87.0652,25.52711],[87.06044,25.52809],[87.05858,25.52645],[87.05244,25.52671],[87.05426,25.53529],[87.05208,25.53601],[87.05148,25.53926],[87.05394,25.54527],[87.05445,25.55423],[87.05843,25.56188],[87.05997,25.56881],[87.05715,25.57736],[87.05822,25.58045],[87.05017,25.58801],[87.04891,25.59215],[87.04359,25.59485],[87.04086,25.59885],[87.04384,25.62676],[87.03733,25.62984],[87.03116,25.63576],[87.03027,25.64421],[87.026,25.65336],[87.02777,25.66072],[87.02616,25.66364],[87.02715,25.66694],[87.02944,25.66935],[87.03837,25.67037],[87.048,25.68644],[87.04802,25.69501],[87.03861,25.70896],[87.03692,25.71558],[87.03225,25.71645],[87.02989,25.71436],[87.02396,25.71757],[87.01887,25.72299],[87.01659,25.73406],[87.01053,25.73662],[87.00777,25.74578],[87.00901,25.75936],[87.01346,25.7713],[87.01311,25.78054],[87.02025,25.79372],[87.01824,25.79978],[87.02211,25.80727],[87.01869,25.81317],[87.01865,25.8197],[87.02256,25.82272],[87.02879,25.81937],[87.03311,25.82069],[87.03294,25.82695],[87.03708,25.83176],[87.03895,25.84163],[87.0421,25.84743],[87.04057,25.8506],[87.04115,25.84649],[87.03975,25.84951],[87.03842,25.84874],[87.03662,25.85581],[87.03224,25.86346],[87.03068,25.86376],[87.03045,25.86791],[87.02296,25.87249],[87.02932,25.874],[87.03141,25.87664],[87.0306,25.89077],[87.01987,25.90112],[87.01627,25.89513],[87.01102,25.89689],[87.01093,25.8995],[87.00915,25.89697],[87.00702,25.89699],[87.0065,25.90002],[87.00326,25.90244],[86.99832,25.91181],[86.99981,25.92011],[86.99544,25.92724],[86.99475,25.93603],[86.99257,25.94178],[86.98937,25.94564],[86.99641,25.94482],[86.9975,25.94695],[87.00163,25.94719],[87.00289,25.94498],[87.01508,25.94482],[87.01585,25.94726],[87.02092,25.94743],[87.02104,25.95158],[87.02555,25.95653],[87.03375,25.95677],[87.03599,25.95436],[87.03646,25.95026],[87.04036,25.95122],[87.04667,25.95001],[87.04848,25.94719],[87.05537,25.94727],[87.06251,25.9634],[87.07293,25.9596],[87.0783,25.96154],[87.07813,25.9668],[87.08129,25.96879],[87.09146,25.96803],[87.09782,25.97078],[87.10281,25.98157],[87.1027,25.9865],[87.08684,25.99265],[87.09286,26.00587],[87.09267,26.00953],[87.09718,26.01228],[87.097,26.01491],[87.09464,26.01692],[87.09455,26.02563],[87.09687,26.02769],[87.09671,26.032],[87.10152,26.03254],[87.10319,26.03451],[87.11028,26.03265],[87.11283,26.03005],[87.12232,26.02832],[87.12325,26.03171],[87.12041,26.03194],[87.11981,26.03359],[87.12265,26.03438],[87.12343,26.03687],[87.12641,26.03736],[87.12652,26.04075],[87.1229,26.04169],[87.12191,26.04391],[87.10831,26.04581],[87.10595,26.04988],[87.10033,26.04873],[87.09237,26.05182],[87.08834,26.04991],[87.08549,26.05086],[87.07638,26.04867],[87.06629,26.0505],[87.06447,26.05744],[87.06239,26.05841],[87.05026,26.05776],[87.05096,26.05506],[87.04982,26.05392],[87.04178,26.05447],[87.03702,26.05588],[87.0345,26.06288],[87.01225,26.07043],[87.00444,26.07047],[86.99949,26.06233],[86.95172,26.08222],[86.9504,26.08124],[86.94429,26.08328],[86.93664,26.0807],[86.92966,26.08399],[86.87427,26.08931],[86.86478,26.09367],[86.84681,26.09607],[86.84842,26.09929],[86.84604,26.1004],[86.84548,26.10542],[86.84011,26.10728],[86.82871,26.10864],[86.82201,26.10637],[86.81837,26.10713],[86.81966,26.10508],[86.81755,26.10517],[86.81615,26.10257],[86.80786,26.10269],[86.80861,26.10171],[86.80396,26.0982],[86.80309,26.09439],[86.79748,26.09166],[86.79669,26.08911],[86.78761,26.08942],[86.78215,26.09071],[86.77963,26.09511],[86.77205,26.09676],[86.77493,26.10188],[86.77141,26.10292],[86.77114,26.10439],[86.76203,26.10594],[86.76285,26.10818],[86.75649,26.10987],[86.75201,26.11763]],[[87.07216,25.98699],[87.07342,25.99167],[87.078,25.99082],[87.07216,25.98699]],[[87.08119,25.98641],[87.08678,25.98674],[87.08678,25.98441],[87.08102,25.98503],[87.08119,25.98641]],[[87.08295,25.9768],[87.08059,25.97784],[87.08083,25.98195],[87.087,25.982],[87.08788,25.9799],[87.08295,25.9768]],[[87.0886,25.97768],[87.09126,25.9777],[87.09256,25.9723],[87.0901,25.97207],[87.0886,25.97768]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"206","area_level":"District","area_name":"Madhubani","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.04107,26.66332],[86.02758,26.66679],[86.0189,26.66114],[86.01211,26.65986],[86.01162,26.65517],[86.00394,26.65613],[86.00053,26.65483],[85.99042,26.65734],[85.97581,26.65845],[85.97361,26.65508],[85.97007,26.65504],[85.96745,26.65172],[85.9647,26.65256],[85.9633,26.65021],[85.96012,26.65101],[85.9598,26.64944],[85.95658,26.64872],[85.95334,26.64366],[85.95398,26.639],[85.95259,26.63711],[85.95564,26.63086],[85.95153,26.62438],[85.94946,26.62494],[85.94643,26.62184],[85.94818,26.61396],[85.94079,26.61357],[85.93809,26.61659],[85.93277,26.61393],[85.9291,26.61681],[85.92708,26.60979],[85.91385,26.60884],[85.91289,26.60448],[85.90919,26.60459],[85.90055,26.60047],[85.90072,26.59503],[85.89142,26.59419],[85.88785,26.58319],[85.88541,26.58237],[85.87974,26.58412],[85.87886,26.58203],[85.87322,26.57897],[85.87086,26.57984],[85.86862,26.5753],[85.85865,26.56894],[85.85839,26.57163],[85.85678,26.57226],[85.85185,26.5686],[85.84921,26.569],[85.84859,26.57698],[85.85808,26.58988],[85.85126,26.60868],[85.8312,26.61154],[85.83062,26.60162],[85.81732,26.60317],[85.82035,26.59284],[85.81392,26.58982],[85.81386,26.58785],[85.81687,26.58515],[85.8165,26.5826],[85.81212,26.5771],[85.81073,26.57004],[85.80839,26.56853],[85.80815,26.56661],[85.81171,26.56514],[85.80857,26.56054],[85.8086,26.5574],[85.80561,26.55484],[85.80698,26.55175],[85.81711,26.54899],[85.8207,26.54671],[85.8212,26.54318],[85.8255,26.54138],[85.82418,26.53184],[85.82052,26.52608],[85.81881,26.5257],[85.81845,26.5228],[85.81122,26.52146],[85.80784,26.51538],[85.81101,26.51254],[85.8107,26.50833],[85.80277,26.50876],[85.8012,26.50425],[85.79772,26.50149],[85.79957,26.49935],[85.79818,26.49622],[85.78773,26.49663],[85.78749,26.50197],[85.79045,26.50586],[85.79009,26.51476],[85.78633,26.5141],[85.77617,26.51609],[85.77185,26.5111],[85.76864,26.51019],[85.76871,26.50706],[85.77301,26.5053],[85.7692,26.50309],[85.76397,26.49572],[85.76032,26.49679],[85.75866,26.48899],[85.77031,26.48805],[85.77018,26.48652],[85.77342,26.48517],[85.77068,26.47938],[85.77948,26.47587],[85.78322,26.47588],[85.78436,26.47838],[85.78885,26.47795],[85.78818,26.48215],[85.79068,26.4831],[85.79994,26.48009],[85.80373,26.48167],[85.80396,26.47911],[85.80645,26.47868],[85.80568,26.47614],[85.81237,26.47554],[85.81175,26.46849],[85.80576,26.46893],[85.80416,26.45871],[85.80239,26.46017],[85.79746,26.45903],[85.79302,26.45471],[85.77945,26.46248],[85.77669,26.46304],[85.7761,26.46174],[85.7681,26.46603],[85.76497,26.47081],[85.75482,26.47212],[85.75178,26.46728],[85.75391,26.46421],[85.7553,26.45348],[85.76636,26.44731],[85.77459,26.44539],[85.7719,26.43944],[85.76856,26.43899],[85.76757,26.43742],[85.76918,26.43631],[85.76822,26.42798],[85.76496,26.41527],[85.76304,26.41434],[85.76267,26.41085],[85.75989,26.40918],[85.76161,26.40734],[85.75976,26.39971],[85.76806,26.40168],[85.77379,26.39886],[85.7778,26.40173],[85.78534,26.40229],[85.79064,26.40071],[85.78865,26.40455],[85.79375,26.40543],[85.79674,26.41133],[85.8204,26.40875],[85.81994,26.40073],[85.82183,26.40056],[85.82164,26.39839],[85.81873,26.39758],[85.81735,26.39439],[85.82165,26.38974],[85.8218,26.38747],[85.8235,26.3857],[85.82993,26.38455],[85.83467,26.38831],[85.83693,26.3879],[85.83652,26.38264],[85.83973,26.3817],[85.83982,26.38042],[85.83586,26.38081],[85.83294,26.37583],[85.82456,26.37944],[85.8234,26.37433],[85.82013,26.37439],[85.8193,26.37291],[85.82198,26.36918],[85.82618,26.36848],[85.83141,26.36127],[85.83061,26.35994],[85.83411,26.35877],[85.83221,26.35556],[85.8261,26.35658],[85.82241,26.3544],[85.82095,26.3445],[85.8238,26.34501],[85.83083,26.34218],[85.837,26.34387],[85.83776,26.33927],[85.83469,26.33491],[85.83624,26.32811],[85.83423,26.32496],[85.82551,26.32964],[85.82254,26.32941],[85.81808,26.31548],[85.82103,26.31527],[85.81695,26.30976],[85.81817,26.30766],[85.8157,26.30791],[85.81499,26.30648],[85.82072,26.30244],[85.82062,26.30071],[85.8198,26.29795],[85.81544,26.29499],[85.82828,26.28681],[85.82825,26.28544],[85.83166,26.28515],[85.83293,26.28216],[85.84022,26.27956],[85.84454,26.2833],[85.84991,26.28295],[85.85549,26.27765],[85.85799,26.27913],[85.85857,26.2822],[85.86693,26.28239],[85.8693,26.27997],[85.87627,26.27863],[85.87977,26.27427],[85.88247,26.27414],[85.88285,26.27796],[85.88611,26.27854],[85.88662,26.2771],[85.89088,26.27587],[85.8919,26.27752],[85.89859,26.27895],[85.89977,26.28359],[85.90289,26.2859],[85.91977,26.284],[85.92188,26.28971],[85.91872,26.29074],[85.9219,26.29349],[85.91886,26.29367],[85.91926,26.29863],[85.91694,26.30398],[85.92146,26.30348],[85.91936,26.30631],[85.91949,26.30935],[85.9232,26.30911],[85.92237,26.30759],[85.9279,26.30448],[85.9385,26.30966],[85.94632,26.30646],[85.948,26.30804],[85.94943,26.30593],[85.95259,26.30522],[85.96185,26.30561],[85.96258,26.30862],[85.96908,26.30798],[85.97413,26.31815],[85.97903,26.32297],[85.99143,26.32157],[85.99486,26.31071],[85.99663,26.31064],[85.99766,26.30721],[86.00396,26.30566],[86.00919,26.30202],[86.01378,26.30168],[86.00937,26.29986],[86.0054,26.29471],[86.003,26.29439],[86.00286,26.29076],[85.99766,26.28584],[86.00094,26.28162],[86.00016,26.27074],[86.00371,26.26957],[86.00308,26.26679],[86.00008,26.2653],[86.00009,26.26222],[86.00971,26.26018],[86.01029,26.25831],[86.01316,26.25745],[86.01043,26.25367],[86.0141,26.25303],[86.0141,26.24669],[86.03143,26.24633],[86.03222,26.23703],[86.04431,26.23579],[86.04037,26.22506],[86.02913,26.21572],[86.02864,26.21315],[86.0311,26.21177],[86.03226,26.20746],[86.03117,26.2024],[86.02843,26.20151],[86.02704,26.19528],[86.04464,26.19058],[86.05648,26.19331],[86.05894,26.19674],[86.05738,26.19961],[86.05943,26.20829],[86.07326,26.20578],[86.07467,26.20738],[86.07348,26.2129],[86.07495,26.21334],[86.08664,26.21104],[86.08661,26.20667],[86.08907,26.2063],[86.08952,26.2035],[86.0941,26.20347],[86.09609,26.20084],[86.10445,26.19979],[86.10038,26.19642],[86.10972,26.19234],[86.11429,26.19716],[86.11286,26.20233],[86.11868,26.20185],[86.12197,26.20874],[86.1243,26.21038],[86.12588,26.21555],[86.12325,26.21829],[86.13056,26.2194],[86.13211,26.22243],[86.13569,26.22371],[86.14,26.23054],[86.14954,26.23525],[86.15689,26.22994],[86.15683,26.22594],[86.16476,26.22685],[86.17206,26.22306],[86.17476,26.2289],[86.17542,26.22543],[86.17873,26.22463],[86.17924,26.22226],[86.19633,26.22005],[86.19843,26.22018],[86.1991,26.22219],[86.21104,26.22144],[86.22085,26.22669],[86.22923,26.22654],[86.22982,26.22426],[86.23172,26.2239],[86.23596,26.22592],[86.24842,26.22581],[86.24832,26.2189],[86.25222,26.21751],[86.24766,26.21425],[86.24807,26.21105],[86.24425,26.2063],[86.24358,26.20374],[86.24566,26.20184],[86.24495,26.19491],[86.25461,26.19493],[86.25972,26.19181],[86.26949,26.19049],[86.26977,26.18721],[86.26526,26.18242],[86.26538,26.18075],[86.26914,26.17828],[86.27688,26.1773],[86.27709,26.17871],[86.2855,26.17763],[86.28902,26.17883],[86.29024,26.1743],[86.29159,26.1725],[86.29356,26.17289],[86.29586,26.16822],[86.2954,26.16466],[86.31441,26.16482],[86.31568,26.16102],[86.32495,26.16121],[86.3248,26.15733],[86.33024,26.15385],[86.32979,26.14895],[86.33469,26.14795],[86.33389,26.14529],[86.32524,26.13846],[86.32601,26.13514],[86.32446,26.13321],[86.32339,26.12309],[86.33409,26.10445],[86.32624,26.10537],[86.32578,26.10225],[86.3275,26.09991],[86.3313,26.10039],[86.33055,26.0916],[86.33248,26.0913],[86.33249,26.08902],[86.3401,26.08951],[86.3409,26.08608],[86.3422,26.08678],[86.34514,26.08493],[86.34486,26.08354],[86.34951,26.07946],[86.35569,26.07899],[86.35734,26.07665],[86.35867,26.0771],[86.36459,26.06386],[86.37334,26.06014],[86.37615,26.05136],[86.37885,26.05106],[86.38086,26.04475],[86.37762,26.04453],[86.37647,26.04213],[86.37668,26.04024],[86.3811,26.03869],[86.38029,26.03706],[86.3834,26.0385],[86.38853,26.03365],[86.39328,26.03445],[86.39392,26.03656],[86.39584,26.03487],[86.40428,26.03623],[86.40812,26.03513],[86.41247,26.0394],[86.41055,26.04116],[86.41439,26.04365],[86.41481,26.04783],[86.41744,26.04595],[86.41737,26.04987],[86.42064,26.05316],[86.42364,26.05451],[86.42588,26.05194],[86.42679,26.05461],[86.42807,26.05165],[86.43078,26.05358],[86.42799,26.06068],[86.43403,26.06141],[86.4322,26.06275],[86.4369,26.06427],[86.43468,26.06933],[86.43326,26.0689],[86.43335,26.07103],[86.43164,26.07149],[86.43582,26.07395],[86.43809,26.07248],[86.43882,26.07539],[86.4412,26.07458],[86.44247,26.08368],[86.44078,26.08503],[86.44251,26.08733],[86.44402,26.08625],[86.44492,26.08743],[86.4451,26.08991],[86.44298,26.09115],[86.44431,26.09298],[86.44639,26.0918],[86.44923,26.09925],[86.44994,26.09667],[86.45312,26.09788],[86.45552,26.09621],[86.45605,26.09955],[86.45993,26.10491],[86.46475,26.10251],[86.46487,26.10606],[86.47005,26.11297],[86.46577,26.1141],[86.47067,26.11618],[86.47097,26.11918],[86.47753,26.12077],[86.47867,26.12428],[86.49424,26.12545],[86.50936,26.12039],[86.50969,26.11692],[86.51462,26.11703],[86.52032,26.1207],[86.51969,26.12239],[86.52103,26.12338],[86.52442,26.12378],[86.52633,26.1297],[86.53117,26.13202],[86.53123,26.13539],[86.53381,26.13532],[86.5329,26.13878],[86.53563,26.14174],[86.53777,26.14169],[86.53972,26.14805],[86.53859,26.1496],[86.54025,26.15075],[86.53745,26.15029],[86.53337,26.15685],[86.52759,26.15562],[86.51891,26.15877],[86.51825,26.16135],[86.51601,26.16063],[86.51572,26.16349],[86.5122,26.16626],[86.50944,26.16074],[86.50941,26.15696],[86.50373,26.15739],[86.49881,26.15518],[86.49503,26.15677],[86.49114,26.15437],[86.48903,26.15548],[86.4914,26.15289],[86.48834,26.15054],[86.48505,26.14893],[86.48136,26.15079],[86.48079,26.14904],[86.47414,26.14631],[86.47197,26.15046],[86.46952,26.15149],[86.46975,26.15341],[86.4648,26.15233],[86.46319,26.1562],[86.46154,26.15667],[86.46195,26.15876],[86.45734,26.17044],[86.45264,26.16864],[86.45467,26.16631],[86.45369,26.163],[86.45128,26.16306],[86.45063,26.15766],[86.44814,26.1586],[86.44109,26.1572],[86.43992,26.15569],[86.43645,26.15614],[86.43612,26.15863],[86.43866,26.16037],[86.4397,26.1639],[86.43331,26.16469],[86.4327,26.15967],[86.4354,26.15887],[86.43496,26.15679],[86.42226,26.15801],[86.42242,26.16391],[86.42031,26.1695],[86.41614,26.17086],[86.4048,26.16973],[86.40729,26.17867],[86.40898,26.18211],[86.41156,26.18262],[86.41277,26.18727],[86.41031,26.19419],[86.40631,26.196],[86.40682,26.19839],[86.40497,26.20221],[86.4119,26.20347],[86.41121,26.19747],[86.43096,26.1937],[86.4342,26.19786],[86.43743,26.19778],[86.43822,26.20064],[86.44165,26.20151],[86.4424,26.20568],[86.44055,26.20986],[86.444,26.22127],[86.44615,26.22364],[86.45183,26.22238],[86.45313,26.21743],[86.45108,26.21374],[86.45812,26.2116],[86.47525,26.21089],[86.48014,26.21715],[86.48515,26.21716],[86.48686,26.21533],[86.49975,26.21483],[86.50397,26.22289],[86.51512,26.21819],[86.51588,26.22056],[86.52057,26.22219],[86.51891,26.22431],[86.5223,26.23184],[86.51799,26.24716],[86.52165,26.25511],[86.51782,26.25627],[86.50569,26.25558],[86.50814,26.27608],[86.52361,26.27767],[86.52635,26.28226],[86.52617,26.28917],[86.52917,26.2921],[86.52806,26.29386],[86.53561,26.30288],[86.54468,26.30328],[86.54752,26.30571],[86.56157,26.30523],[86.56597,26.31843],[86.57825,26.32044],[86.58044,26.32346],[86.58173,26.33133],[86.58651,26.33395],[86.59804,26.33398],[86.59939,26.34252],[86.61078,26.34173],[86.61213,26.33827],[86.61572,26.33894],[86.62558,26.33297],[86.63188,26.33275],[86.63072,26.33918],[86.63373,26.34041],[86.63299,26.34402],[86.63627,26.3453],[86.63779,26.35101],[86.64168,26.35124],[86.63924,26.35304],[86.63939,26.35478],[86.64142,26.35535],[86.64222,26.35783],[86.64494,26.3574],[86.64836,26.36138],[86.65633,26.3621],[86.65676,26.36374],[86.6545,26.36505],[86.65524,26.36632],[86.66278,26.36771],[86.66222,26.36645],[86.66602,26.36616],[86.66786,26.36329],[86.67089,26.36339],[86.67055,26.36508],[86.67306,26.36393],[86.6723,26.36125],[86.67644,26.36357],[86.67365,26.36394],[86.67507,26.36826],[86.67823,26.36586],[86.67936,26.36915],[86.68193,26.36601],[86.68387,26.3673],[86.68288,26.36912],[86.68673,26.36855],[86.68775,26.3701],[86.69523,26.36753],[86.6987,26.36991],[86.70073,26.36783],[86.70392,26.36787],[86.70461,26.36921],[86.70262,26.3712],[86.70396,26.37329],[86.70178,26.37451],[86.70346,26.37869],[86.7054,26.37704],[86.7063,26.37926],[86.70937,26.37809],[86.70927,26.38116],[86.70611,26.38002],[86.70393,26.38232],[86.70416,26.38635],[86.70907,26.38977],[86.70872,26.38727],[86.71027,26.3872],[86.71013,26.39201],[86.71308,26.39543],[86.71114,26.39776],[86.71529,26.39973],[86.7131,26.4004],[86.71385,26.40427],[86.72024,26.41094],[86.71929,26.41294],[86.72235,26.41943],[86.7213,26.4208],[86.72408,26.42238],[86.723,26.42561],[86.72512,26.42673],[86.72027,26.43486],[86.70031,26.43724],[86.69859,26.44276],[86.69557,26.4447],[86.69639,26.44885],[86.69323,26.4512],[86.63803,26.46333],[86.63696,26.46607],[86.63403,26.46579],[86.63345,26.46432],[86.62995,26.46857],[86.62947,26.46639],[86.62694,26.46703],[86.62952,26.46893],[86.62597,26.46933],[86.62731,26.47542],[86.6296,26.47763],[86.62808,26.4788],[86.62693,26.47695],[86.62605,26.48039],[86.62183,26.48169],[86.62109,26.48415],[86.61808,26.4837],[86.61402,26.48697],[86.61156,26.48563],[86.58828,26.49348],[86.57025,26.49656],[86.57072,26.49777],[86.56926,26.49749],[86.56374,26.5035],[86.56146,26.50983],[86.55442,26.5161],[86.55442,26.5188],[86.55602,26.51784],[86.55567,26.52184],[86.555,26.52423],[86.55131,26.52457],[86.55095,26.53018],[86.54809,26.53141],[86.54155,26.53872],[86.52335,26.54361],[86.51551,26.53922],[86.49863,26.5421],[86.45594,26.56797],[86.42993,26.57314],[86.39522,26.58506],[86.3971,26.59332],[86.35633,26.60429],[86.3415,26.60594],[86.33908,26.60893],[86.34082,26.6119],[86.34217,26.61144],[86.34484,26.61691],[86.32963,26.61949],[86.30785,26.61996],[86.29304,26.61311],[86.27586,26.61728],[86.2531,26.61468],[86.25269,26.61711],[86.24791,26.61239],[86.24922,26.609],[86.24646,26.60735],[86.24421,26.60892],[86.24432,26.60607],[86.24238,26.60572],[86.2432,26.60295],[86.24054,26.60359],[86.24002,26.60147],[86.23741,26.60169],[86.23753,26.59953],[86.23478,26.59813],[86.23436,26.5907],[86.23124,26.59321],[86.23082,26.5915],[86.22373,26.59145],[86.21768,26.58848],[86.21272,26.5927],[86.20789,26.59301],[86.20548,26.59665],[86.2018,26.59458],[86.2006,26.59724],[86.19829,26.59348],[86.1963,26.59394],[86.19699,26.59804],[86.19493,26.59851],[86.19674,26.60119],[86.19581,26.60762],[86.19121,26.61067],[86.19082,26.61252],[86.19346,26.61118],[86.19438,26.61222],[86.19138,26.61508],[86.18286,26.61392],[86.17593,26.61549],[86.17421,26.6139],[86.17144,26.61704],[86.16765,26.61408],[86.1616,26.61491],[86.15533,26.60989],[86.14566,26.6086],[86.14262,26.60516],[86.13633,26.60634],[86.13975,26.61674],[86.14105,26.6168],[86.13876,26.62885],[86.11958,26.63006],[86.07405,26.64974],[86.0698,26.65734],[86.04107,26.66332]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"207","area_level":"District","area_name":"Munger","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.56142,25.49387],[86.55267,25.49573],[86.55102,25.48631],[86.54475,25.49041],[86.54502,25.49221],[86.54074,25.49234],[86.5329,25.47519],[86.53488,25.4749],[86.53186,25.47166],[86.52724,25.45933],[86.5211,25.45338],[86.50907,25.44756],[86.50589,25.4377],[86.50504,25.42766],[86.5051,25.42643],[86.50856,25.42736],[86.50878,25.41451],[86.51435,25.41393],[86.5108,25.40897],[86.50746,25.41084],[86.48261,25.41288],[86.48032,25.41013],[86.47679,25.3989],[86.46213,25.38737],[86.45736,25.39204],[86.45889,25.3953],[86.45625,25.39793],[86.45327,25.39678],[86.45239,25.39912],[86.44059,25.39921],[86.43695,25.40149],[86.43079,25.3937],[86.41537,25.39397],[86.4169,25.39225],[86.41358,25.39124],[86.40967,25.38634],[86.40189,25.38496],[86.40323,25.38031],[86.40294,25.36984],[86.39045,25.36248],[86.38719,25.37717],[86.38909,25.37923],[86.38829,25.37997],[86.36949,25.36244],[86.36403,25.3593],[86.37019,25.35541],[86.36675,25.35634],[86.35687,25.3505],[86.34023,25.34389],[86.33843,25.34174],[86.3401,25.33917],[86.33151,25.33914],[86.32726,25.33656],[86.32094,25.33756],[86.31466,25.33474],[86.32178,25.32219],[86.31383,25.31586],[86.30941,25.3137],[86.30592,25.32461],[86.30316,25.32783],[86.30084,25.32548],[86.3087,25.31266],[86.29477,25.30164],[86.29627,25.29924],[86.2871,25.29716],[86.26072,25.28541],[86.26386,25.2777],[86.28232,25.27999],[86.31168,25.28636],[86.35297,25.29869],[86.35345,25.28767],[86.35859,25.28628],[86.36474,25.26414],[86.37225,25.2552],[86.36946,25.24856],[86.37278,25.24869],[86.37375,25.24545],[86.38023,25.24521],[86.38234,25.24374],[86.38091,25.23765],[86.39086,25.2248],[86.38325,25.2232],[86.37758,25.21385],[86.36636,25.20303],[86.36482,25.16829],[86.37099,25.14384],[86.42034,25.13825],[86.4121,25.12239],[86.41455,25.11135],[86.41768,25.10705],[86.41658,25.10394],[86.40624,25.08878],[86.39319,25.08905],[86.39486,25.07286],[86.39228,25.07137],[86.39392,25.06685],[86.39145,25.06483],[86.38659,25.06426],[86.38603,25.05643],[86.38788,25.05816],[86.39665,25.05668],[86.39795,25.0531],[86.39327,25.05437],[86.39569,25.05187],[86.40757,25.05112],[86.40994,25.04668],[86.41396,25.0453],[86.41292,25.04901],[86.41744,25.04902],[86.41831,25.05117],[86.43799,25.04682],[86.43986,25.04391],[86.43875,25.0407],[86.4402,25.03302],[86.43798,25.02747],[86.43915,25.0245],[86.43754,25.01322],[86.44042,25.00849],[86.43841,24.99824],[86.44179,24.99858],[86.44132,25.00053],[86.44946,25.00694],[86.45149,25.01132],[86.45388,25.01015],[86.45505,25.00711],[86.45451,25.00184],[86.45831,24.99838],[86.47497,24.99986],[86.48217,24.99765],[86.48925,24.99214],[86.50479,24.98498],[86.51366,24.98581],[86.53003,24.98438],[86.53596,24.98149],[86.5364,24.9723],[86.54022,24.96952],[86.54584,24.9689],[86.54546,24.96596],[86.55105,24.9643],[86.55071,24.96108],[86.54172,24.95463],[86.54225,24.95331],[86.54741,24.95095],[86.54835,24.95418],[86.55414,24.95744],[86.55885,24.95647],[86.55992,24.95838],[86.56673,24.95986],[86.5715,24.96321],[86.57262,24.95951],[86.57799,24.95728],[86.57803,24.94721],[86.5866,24.94493],[86.58808,24.94632],[86.59193,24.94568],[86.59334,24.94958],[86.60403,24.94909],[86.60426,24.95029],[86.60081,24.95161],[86.60155,24.95571],[86.5995,24.95737],[86.60053,24.96197],[86.60426,24.96484],[86.60198,24.96602],[86.60577,24.97541],[86.61169,24.97207],[86.61565,24.97349],[86.61818,24.97754],[86.62246,24.97729],[86.62165,24.96944],[86.62724,24.96673],[86.64197,24.98158],[86.65036,24.98092],[86.65012,24.99218],[86.65436,25.00218],[86.65015,25.00811],[86.65112,25.0107],[86.65735,25.01387],[86.66377,25.01236],[86.66454,25.0098],[86.66909,25.0091],[86.67099,25.01024],[86.67099,25.01214],[86.66439,25.01288],[86.66277,25.01743],[86.65369,25.02339],[86.6537,25.02561],[86.65663,25.02784],[86.6558,25.03129],[86.6584,25.03084],[86.65883,25.03237],[86.65116,25.04203],[86.65237,25.04526],[86.65572,25.04573],[86.65887,25.0497],[86.65575,25.05647],[86.65969,25.06317],[86.657,25.06463],[86.66483,25.07038],[86.66762,25.08267],[86.67037,25.08365],[86.67092,25.08732],[86.67658,25.09221],[86.68312,25.09009],[86.69506,25.1061],[86.69503,25.10763],[86.69014,25.10845],[86.69103,25.11185],[86.68959,25.11308],[86.69115,25.11429],[86.69176,25.11962],[86.69033,25.11978],[86.68932,25.11741],[86.68742,25.1204],[86.68369,25.12202],[86.68271,25.11929],[86.6787,25.12112],[86.68152,25.12845],[86.68335,25.12923],[86.68078,25.13133],[86.68408,25.13724],[86.68213,25.14061],[86.68485,25.14078],[86.68736,25.1461],[86.68953,25.14345],[86.69666,25.14257],[86.6981,25.14681],[86.69948,25.14659],[86.69923,25.14937],[86.70207,25.14969],[86.70091,25.15337],[86.70664,25.16062],[86.70205,25.16218],[86.70869,25.17017],[86.71396,25.17226],[86.71961,25.16986],[86.72457,25.17103],[86.73072,25.17611],[86.72822,25.17991],[86.73525,25.17848],[86.73764,25.18254],[86.72684,25.18422],[86.72422,25.18703],[86.71468,25.18727],[86.71517,25.19092],[86.71043,25.19244],[86.71186,25.18818],[86.71088,25.18559],[86.7084,25.18578],[86.70418,25.18852],[86.70529,25.19594],[86.69863,25.198],[86.69913,25.20173],[86.6964,25.20244],[86.6941,25.19534],[86.69618,25.19395],[86.69544,25.19155],[86.69832,25.19029],[86.69517,25.19083],[86.69471,25.18796],[86.68717,25.18916],[86.68534,25.1874],[86.68534,25.19063],[86.68094,25.19093],[86.67953,25.19333],[86.67789,25.20572],[86.67287,25.20811],[86.67049,25.21312],[86.64956,25.21783],[86.65278,25.22219],[86.64788,25.22554],[86.64222,25.22554],[86.64298,25.23038],[86.64145,25.23091],[86.64261,25.2323],[86.64136,25.23294],[86.64179,25.23689],[86.63906,25.24313],[86.65357,25.24282],[86.67685,25.2397],[86.69699,25.24313],[86.71707,25.2441],[86.72799,25.24688],[86.72594,25.25401],[86.72351,25.26129],[86.7197,25.26384],[86.68763,25.26641],[86.67608,25.26382],[86.66111,25.26779],[86.65404,25.268],[86.64411,25.27737],[86.63434,25.30413],[86.65018,25.32778],[86.63256,25.34811],[86.63241,25.35286],[86.62405,25.35256],[86.62537,25.35929],[86.63702,25.36757],[86.64143,25.37392],[86.64215,25.38335],[86.64018,25.39243],[86.63572,25.39895],[86.62477,25.40943],[86.61714,25.4134],[86.60169,25.42704],[86.59953,25.4264],[86.59709,25.42896],[86.58733,25.45167],[86.58468,25.45162],[86.58161,25.45881],[86.58205,25.4616],[86.5747,25.47914],[86.57722,25.48032],[86.57518,25.4893],[86.5688,25.4937],[86.56142,25.49387]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"208","area_level":"District","area_name":"Muzaffarpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.58215,26.38403],[85.57994,26.3929],[85.57622,26.39285],[85.57217,26.3892],[85.56829,26.38856],[85.56573,26.38465],[85.55725,26.38511],[85.55009,26.37154],[85.54457,26.36956],[85.53799,26.37152],[85.53221,26.37093],[85.53129,26.37877],[85.52792,26.37798],[85.52426,26.37453],[85.52078,26.37411],[85.51745,26.37552],[85.51763,26.37784],[85.50872,26.3816],[85.50426,26.38075],[85.50002,26.37503],[85.50172,26.37204],[85.50115,26.36221],[85.49483,26.36242],[85.49333,26.35415],[85.48628,26.35412],[85.4847,26.34834],[85.48169,26.3485],[85.48143,26.34699],[85.47905,26.34638],[85.47795,26.33477],[85.47462,26.33335],[85.46988,26.3345],[85.46612,26.33255],[85.46636,26.33045],[85.46941,26.33049],[85.47085,26.32674],[85.46759,26.3274],[85.46545,26.32075],[85.4624,26.31992],[85.46184,26.31535],[85.46356,26.31186],[85.46133,26.30114],[85.45603,26.3013],[85.45279,26.29061],[85.4481,26.291],[85.44525,26.28201],[85.44402,26.27973],[85.44168,26.27991],[85.44065,26.27411],[85.43733,26.26925],[85.43578,26.27486],[85.44081,26.28092],[85.4405,26.28346],[85.42205,26.27147],[85.42014,26.27213],[85.42144,26.27527],[85.42649,26.27706],[85.42373,26.28276],[85.42779,26.28986],[85.42702,26.29183],[85.42253,26.28861],[85.42049,26.28247],[85.41588,26.27877],[85.4116,26.27149],[85.40847,26.27434],[85.4052,26.28223],[85.40594,26.28397],[85.40291,26.28853],[85.41096,26.28917],[85.40678,26.29297],[85.40138,26.2916],[85.39654,26.28006],[85.39244,26.27941],[85.39066,26.28444],[85.39177,26.28961],[85.39499,26.29256],[85.40309,26.29525],[85.39871,26.29998],[85.39785,26.30268],[85.39913,26.30535],[85.41047,26.30098],[85.41472,26.30289],[85.41368,26.30722],[85.40863,26.31498],[85.4094,26.3183],[85.40129,26.31755],[85.39686,26.31014],[85.38954,26.32276],[85.38279,26.32446],[85.38132,26.32204],[85.3853,26.32243],[85.38781,26.3201],[85.39337,26.30701],[85.38509,26.30806],[85.37544,26.31333],[85.37443,26.33178],[85.36929,26.34231],[85.36195,26.34642],[85.35209,26.34449],[85.35376,26.33721],[85.35223,26.336],[85.34774,26.34107],[85.34929,26.34346],[85.34823,26.34566],[85.33955,26.34477],[85.33937,26.34068],[85.33465,26.34347],[85.33571,26.32886],[85.33416,26.32639],[85.32616,26.33513],[85.32779,26.34826],[85.32687,26.35002],[85.31727,26.34672],[85.31419,26.34872],[85.30747,26.34962],[85.29907,26.344],[85.28879,26.35456],[85.28541,26.34629],[85.28259,26.34334],[85.2808,26.34531],[85.2807,26.34863],[85.26539,26.35252],[85.2577,26.34947],[85.25398,26.35007],[85.24775,26.35654],[85.24607,26.35487],[85.24689,26.35915],[85.24195,26.3641],[85.24074,26.3691],[85.23465,26.36715],[85.22561,26.37134],[85.22056,26.36866],[85.22026,26.36529],[85.21892,26.36478],[85.21806,26.35612],[85.22143,26.35033],[85.22359,26.34951],[85.22489,26.35166],[85.23004,26.35388],[85.23839,26.3487],[85.23818,26.34387],[85.24304,26.34264],[85.24408,26.3393],[85.24612,26.33872],[85.24817,26.34342],[85.25499,26.34244],[85.25738,26.34482],[85.26466,26.34232],[85.26554,26.3395],[85.2703,26.33493],[85.27406,26.33494],[85.27193,26.32726],[85.26039,26.33201],[85.25647,26.32643],[85.25643,26.30484],[85.2625,26.30344],[85.26091,26.29867],[85.2579,26.29874],[85.25718,26.29658],[85.25102,26.29692],[85.24802,26.29876],[85.24917,26.30216],[85.24176,26.29963],[85.23626,26.2996],[85.2364,26.30443],[85.23139,26.30863],[85.22929,26.30714],[85.23224,26.30412],[85.23159,26.3007],[85.22682,26.29997],[85.22191,26.30407],[85.2202,26.30112],[85.22025,26.2943],[85.20837,26.29601],[85.20378,26.29129],[85.20476,26.28635],[85.2031,26.28487],[85.20021,26.28554],[85.19898,26.28773],[85.20605,26.29825],[85.20655,26.30266],[85.20429,26.30171],[85.20031,26.2933],[85.19524,26.29327],[85.19128,26.29512],[85.18758,26.30106],[85.18978,26.30412],[85.19761,26.30267],[85.20187,26.30494],[85.20351,26.31251],[85.20266,26.3199],[85.19936,26.32034],[85.1982,26.31333],[85.19388,26.3133],[85.1943,26.32223],[85.19598,26.32511],[85.19315,26.32953],[85.1911,26.32835],[85.18921,26.32174],[85.19153,26.31719],[85.19066,26.3122],[85.18873,26.32029],[85.18065,26.32072],[85.18003,26.32288],[85.18605,26.32437],[85.18741,26.32754],[85.18418,26.33171],[85.18458,26.33845],[85.17984,26.34087],[85.17837,26.33945],[85.18157,26.3374],[85.1794,26.33539],[85.17777,26.33943],[85.17346,26.337],[85.17658,26.32901],[85.17269,26.32972],[85.16777,26.32826],[85.16422,26.32955],[85.16129,26.32095],[85.15837,26.3171],[85.1494,26.31554],[85.14654,26.31864],[85.1463,26.322],[85.14228,26.32308],[85.1405,26.31952],[85.13692,26.31772],[85.13621,26.31298],[85.13009,26.31197],[85.12859,26.31504],[85.12608,26.31479],[85.12608,26.31317],[85.12358,26.31212],[85.12237,26.31532],[85.1189,26.31702],[85.11401,26.31385],[85.11168,26.31422],[85.10114,26.32566],[85.09927,26.32498],[85.09724,26.32058],[85.0914,26.32532],[85.08107,26.32457],[85.07706,26.33269],[85.0708,26.32867],[85.06696,26.33709],[85.05989,26.34284],[85.05643,26.34262],[85.05186,26.3396],[85.04768,26.33999],[85.04506,26.34206],[85.0422,26.33482],[85.03522,26.33357],[85.03157,26.32317],[85.02644,26.32415],[85.02214,26.31878],[85.01558,26.32237],[85.01376,26.32837],[85.00806,26.32899],[85.00683,26.33087],[85.0,26.33295],[84.98957,26.33029],[84.98012,26.32305],[84.94472,26.3277],[84.9406,26.32647],[84.92068,26.32843],[84.91912,26.32662],[84.90967,26.32349],[84.90221,26.32598],[84.89612,26.31694],[84.89735,26.31463],[84.89357,26.31142],[84.88806,26.29897],[84.88177,26.2816],[84.88094,26.27129],[84.87744,26.26167],[84.87182,26.25697],[84.87945,26.23974],[84.87625,26.23772],[84.88329,26.23288],[84.90235,26.23567],[84.90665,26.23454],[84.90584,26.2258],[84.89934,26.21965],[84.89837,26.21614],[84.89352,26.21646],[84.8968,26.20908],[84.89982,26.20717],[84.90183,26.19884],[84.907,26.19395],[84.91178,26.18386],[84.91775,26.17857],[84.91647,26.16607],[84.91259,26.16258],[84.91007,26.15431],[84.91963,26.13668],[84.94115,26.11935],[84.93962,26.10862],[84.94407,26.10887],[84.94809,26.10407],[84.93735,26.09852],[84.9397,26.09446],[84.94606,26.0938],[84.94723,26.07775],[84.94488,26.07836],[84.94478,26.07213],[84.94904,26.06346],[84.94575,26.06207],[84.94356,26.05412],[84.93464,26.05108],[84.93104,26.04228],[84.93531,26.03992],[84.93232,26.03009],[84.93787,26.02065],[84.93537,26.01876],[84.93765,26.01591],[84.94217,26.01504],[84.94301,26.01275],[84.95547,26.00852],[84.95758,26.00001],[84.96018,25.99675],[84.96865,25.99448],[84.97787,25.99995],[84.98147,26.00465],[84.99186,26.00896],[84.99258,26.0124],[85.0,26.00694],[85.0057,26.00715],[85.01107,25.99826],[85.01592,25.99488],[85.02424,25.99502],[85.03397,25.99782],[85.05387,25.99314],[85.05868,25.99033],[85.05766,25.98439],[85.06638,25.97437],[85.07215,25.97524],[85.07912,25.97083],[85.08055,25.97386],[85.08245,25.97356],[85.08503,25.97637],[85.08557,25.97929],[85.09634,25.97612],[85.09631,25.98107],[85.1068,25.98213],[85.10951,25.98771],[85.10548,25.99003],[85.10491,25.9987],[85.11136,25.99895],[85.11311,26.00095],[85.1256,25.99921],[85.12746,25.99724],[85.13223,25.9972],[85.13486,25.9997],[85.1406,26.00018],[85.14914,25.99644],[85.15143,25.99913],[85.15021,26.00351],[85.16207,26.00422],[85.16304,26.00881],[85.16502,26.00722],[85.16812,26.01034],[85.17488,26.01099],[85.1888,26.00565],[85.189,26.00214],[85.19217,26.00169],[85.1958,26.00225],[85.19859,26.00519],[85.20925,26.00601],[85.21009,26.00312],[85.21639,26.00365],[85.22303,25.99947],[85.23001,26.00543],[85.23414,26.00373],[85.23404,26.00043],[85.23122,25.99733],[85.23401,25.99698],[85.23703,26.01066],[85.23963,26.0153],[85.25103,26.01215],[85.25097,26.01029],[85.25288,26.00994],[85.25352,26.01234],[85.2573,26.01123],[85.26309,26.0135],[85.26756,26.01237],[85.27159,26.01352],[85.27304,26.00844],[85.27762,26.00712],[85.28528,26.01197],[85.28195,26.00542],[85.29362,25.99733],[85.29071,25.98839],[85.29007,25.97456],[85.28746,25.96793],[85.28879,25.96675],[85.28894,25.96098],[85.28708,25.95638],[85.28373,25.95496],[85.28606,25.95373],[85.28605,25.94998],[85.29394,25.94677],[85.30209,25.94916],[85.30543,25.94867],[85.3073,25.94648],[85.31595,25.94608],[85.32103,25.95133],[85.33386,25.9547],[85.34178,25.95206],[85.3467,25.94699],[85.35012,25.94604],[85.35107,25.94377],[85.36402,25.94082],[85.36519,25.93746],[85.37031,25.93522],[85.37081,25.9326],[85.38755,25.93086],[85.39232,25.93601],[85.40174,25.93352],[85.40456,25.93498],[85.40636,25.9396],[85.40891,25.93968],[85.409,25.94498],[85.41403,25.94402],[85.41442,25.94057],[85.41909,25.94001],[85.42228,25.9377],[85.43343,25.9369],[85.43377,25.93116],[85.43789,25.93044],[85.43758,25.92712],[85.4397,25.92742],[85.44195,25.92457],[85.4461,25.92403],[85.44676,25.92541],[85.45226,25.92402],[85.46903,25.92664],[85.46892,25.93445],[85.47549,25.93017],[85.48676,25.92684],[85.48769,25.92426],[85.49297,25.92076],[85.49317,25.913],[85.49512,25.91018],[85.50454,25.91048],[85.50633,25.90605],[85.50963,25.90355],[85.51404,25.90509],[85.51422,25.91065],[85.52383,25.91662],[85.52737,25.92094],[85.52822,25.91978],[85.5317,25.92239],[85.53741,25.92241],[85.53693,25.92095],[85.54239,25.91705],[85.54292,25.91293],[85.55795,25.90944],[85.56136,25.91081],[85.56108,25.91441],[85.56388,25.91963],[85.56357,25.92448],[85.56683,25.92605],[85.57653,25.92352],[85.57667,25.92581],[85.58064,25.92635],[85.58263,25.92164],[85.58933,25.92096],[85.59009,25.92293],[85.59753,25.92283],[85.59767,25.92489],[85.60069,25.92605],[85.60086,25.92757],[85.61227,25.92516],[85.61159,25.92816],[85.62202,25.92311],[85.62518,25.92338],[85.62528,25.91966],[85.64027,25.92209],[85.63886,25.92628],[85.64038,25.93677],[85.64137,25.93929],[85.64433,25.93998],[85.64205,25.94181],[85.63462,25.94293],[85.63195,25.94834],[85.6302,25.95765],[85.63269,25.97096],[85.64067,25.97669],[85.63818,25.98062],[85.6412,25.98439],[85.63438,25.98738],[85.63538,25.99157],[85.63191,25.9955],[85.63385,26.00499],[85.63945,26.00274],[85.64812,26.00299],[85.65575,26.01859],[85.659,26.01833],[85.66567,26.02473],[85.66588,26.02823],[85.67501,26.02743],[85.67643,26.02929],[85.68265,26.02778],[85.68854,26.04324],[85.69119,26.04442],[85.69194,26.04771],[85.70252,26.04647],[85.7043,26.05042],[85.70199,26.0516],[85.70339,26.05986],[85.71237,26.06454],[85.70893,26.0681],[85.71181,26.07848],[85.71048,26.07922],[85.7099,26.0869],[85.70626,26.088],[85.71,26.08752],[85.71371,26.08941],[85.71319,26.10155],[85.71489,26.10697],[85.71669,26.10895],[85.72636,26.10608],[85.73451,26.10774],[85.73283,26.11104],[85.72844,26.11041],[85.72639,26.11281],[85.728,26.12569],[85.73893,26.12718],[85.73976,26.1304],[85.74228,26.1307],[85.751,26.13924],[85.75114,26.14363],[85.75428,26.14383],[85.75025,26.14778],[85.75058,26.14976],[85.74435,26.15349],[85.74178,26.1607],[85.72115,26.16414],[85.72083,26.17648],[85.72398,26.17679],[85.72532,26.18013],[85.72355,26.18748],[85.72613,26.19803],[85.72449,26.19937],[85.72517,26.2012],[85.71771,26.20169],[85.71849,26.20974],[85.71041,26.21138],[85.71016,26.21512],[85.70697,26.21562],[85.70657,26.22549],[85.6998,26.22475],[85.6964,26.22596],[85.6999,26.23901],[85.70402,26.24071],[85.71411,26.23983],[85.717,26.24755],[85.71705,26.24906],[85.71239,26.24898],[85.70837,26.25132],[85.70536,26.24882],[85.70184,26.24933],[85.69543,26.25674],[85.69569,26.25886],[85.6986,26.25862],[85.69952,26.26298],[85.70182,26.26525],[85.70598,26.26564],[85.70747,26.27003],[85.71065,26.27018],[85.71372,26.27249],[85.71696,26.27176],[85.7177,26.27592],[85.71535,26.27677],[85.71477,26.28306],[85.71577,26.29238],[85.70537,26.29493],[85.70396,26.30199],[85.70545,26.30632],[85.70347,26.30497],[85.70289,26.30682],[85.6991,26.30753],[85.69783,26.30478],[85.69649,26.30524],[85.6935,26.3087],[85.69388,26.31187],[85.69088,26.31787],[85.68817,26.317],[85.68683,26.32016],[85.67837,26.32019],[85.67198,26.31271],[85.66622,26.31488],[85.66517,26.31669],[85.65944,26.31709],[85.65742,26.31908],[85.65115,26.31776],[85.64924,26.32266],[85.64229,26.31822],[85.63628,26.31921],[85.63249,26.31604],[85.63049,26.31688],[85.6285,26.31969],[85.632,26.32197],[85.63506,26.32783],[85.63346,26.33279],[85.62941,26.33282],[85.62619,26.33626],[85.62128,26.33416],[85.61714,26.33492],[85.61527,26.33246],[85.61139,26.33331],[85.61029,26.33496],[85.61116,26.33966],[85.61396,26.34061],[85.61629,26.33921],[85.61684,26.34056],[85.61158,26.34963],[85.60798,26.34939],[85.60645,26.35165],[85.60244,26.35088],[85.59119,26.35519],[85.5843,26.36202],[85.58049,26.36317],[85.57534,26.36187],[85.57305,26.36647],[85.5759,26.37137],[85.57841,26.37264],[85.57884,26.37808],[85.58215,26.38403]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"209","area_level":"District","area_name":"Nalanda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.41606,25.45889],[85.4149,25.46143],[85.41249,25.46213],[85.41318,25.45782],[85.40127,25.45869],[85.40096,25.43987],[85.39902,25.43286],[85.39708,25.4337],[85.39606,25.43089],[85.39012,25.43205],[85.38759,25.42937],[85.38479,25.43061],[85.38354,25.42842],[85.37933,25.42775],[85.37301,25.43037],[85.36611,25.41866],[85.36575,25.41243],[85.36281,25.40888],[85.3604,25.40895],[85.36001,25.40177],[85.34775,25.40358],[85.34907,25.40938],[85.3453,25.41064],[85.33908,25.41004],[85.33867,25.40612],[85.33535,25.40494],[85.334,25.40164],[85.32531,25.40159],[85.32582,25.40315],[85.31552,25.40589],[85.31343,25.40137],[85.3091,25.40126],[85.30723,25.40183],[85.30755,25.40593],[85.30198,25.40604],[85.30263,25.40324],[85.29958,25.40383],[85.29913,25.39856],[85.3038,25.39858],[85.30396,25.39403],[85.29735,25.39272],[85.28923,25.3943],[85.28783,25.39282],[85.28923,25.39816],[85.28103,25.3987],[85.28049,25.40319],[85.27308,25.40359],[85.2728,25.39689],[85.27093,25.39975],[85.2653,25.40066],[85.25789,25.40018],[85.25312,25.39647],[85.252,25.39847],[85.25252,25.41418],[85.24522,25.41321],[85.24294,25.40523],[85.23691,25.40309],[85.22587,25.403],[85.22549,25.41454],[85.22268,25.41365],[85.20647,25.41694],[85.20441,25.40894],[85.1928,25.40714],[85.19175,25.40172],[85.17922,25.40255],[85.18086,25.39048],[85.17626,25.38845],[85.17577,25.3855],[85.18068,25.38529],[85.18188,25.3829],[85.18607,25.382],[85.18662,25.37463],[85.18405,25.37358],[85.18534,25.36632],[85.18423,25.35593],[85.18623,25.35546],[85.18764,25.34991],[85.18663,25.33817],[85.18782,25.33673],[85.186,25.33422],[85.18117,25.33324],[85.18238,25.32545],[85.18,25.32345],[85.18248,25.32056],[85.1793,25.32062],[85.17801,25.31655],[85.17328,25.31606],[85.17456,25.31077],[85.1729,25.30773],[85.17945,25.29743],[85.17946,25.29154],[85.17698,25.2875],[85.17256,25.28814],[85.16757,25.28003],[85.16775,25.27208],[85.18534,25.26976],[85.18768,25.26499],[85.19666,25.26448],[85.20303,25.26646],[85.20655,25.2639],[85.21104,25.2653],[85.21148,25.25744],[85.20537,25.25424],[85.20521,25.25564],[85.19381,25.25806],[85.18562,25.25752],[85.18576,25.25252],[85.1826,25.25048],[85.17854,25.25006],[85.17729,25.24815],[85.16799,25.24801],[85.16589,25.24645],[85.16308,25.23709],[85.15393,25.2365],[85.15563,25.22818],[85.16138,25.22892],[85.16501,25.22623],[85.17065,25.22582],[85.17252,25.21833],[85.17123,25.21016],[85.16271,25.2097],[85.16125,25.19608],[85.15448,25.19636],[85.1537,25.19205],[85.15555,25.1899],[85.15608,25.18398],[85.16178,25.18007],[85.16107,25.1746],[85.15922,25.17452],[85.1579,25.17049],[85.15342,25.16597],[85.16061,25.16721],[85.16583,25.17144],[85.17058,25.17287],[85.17175,25.16917],[85.1693,25.1661],[85.16951,25.16329],[85.17086,25.16215],[85.17551,25.16348],[85.1785,25.16198],[85.18408,25.14922],[85.17278,25.14861],[85.16396,25.14345],[85.16119,25.13066],[85.16133,25.12327],[85.16271,25.12196],[85.16124,25.12009],[85.16407,25.11777],[85.15293,25.09727],[85.16047,25.09908],[85.16142,25.10334],[85.16601,25.10297],[85.16633,25.10111],[85.17424,25.10033],[85.17715,25.10568],[85.18261,25.10471],[85.18685,25.10646],[85.18896,25.10375],[85.18846,25.10043],[85.19461,25.10096],[85.19501,25.09911],[85.19856,25.09892],[85.19384,25.09675],[85.19271,25.09158],[85.19111,25.09182],[85.18981,25.08958],[85.19541,25.08522],[85.19778,25.07575],[85.20083,25.07424],[85.20342,25.07537],[85.2053,25.06529],[85.20347,25.05938],[85.19153,25.05016],[85.19124,25.03434],[85.18941,25.03177],[85.19153,25.02992],[85.19486,25.032],[85.20177,25.03199],[85.20483,25.03991],[85.212,25.04212],[85.2109,25.04251],[85.21179,25.05404],[85.21744,25.05585],[85.22578,25.05584],[85.22775,25.05377],[85.22691,25.0465],[85.22891,25.04278],[85.23078,25.03029],[85.23099,25.01479],[85.23879,25.01247],[85.23757,25.00717],[85.24699,25.00788],[85.24813,25.00678],[85.2485,25.01412],[85.25138,25.02158],[85.24842,25.02833],[85.25076,25.02881],[85.25175,25.03229],[85.25345,25.03078],[85.25582,25.03382],[85.25876,25.0336],[85.26031,25.02829],[85.25871,25.02282],[85.26391,25.02537],[85.26594,25.02226],[85.2715,25.02332],[85.269,25.02645],[85.2702,25.02785],[85.27473,25.02626],[85.29354,25.02588],[85.29365,25.0233],[85.2949,25.02335],[85.29514,25.02627],[85.30212,25.02759],[85.3147,25.02421],[85.31854,25.00911],[85.32795,25.00778],[85.32864,25.01162],[85.33791,25.01363],[85.33887,25.01988],[85.35121,25.02041],[85.35299,25.01823],[85.35312,25.01439],[85.35025,25.01422],[85.34921,25.008],[85.34753,25.00679],[85.35236,25.00106],[85.35606,24.98697],[85.36112,24.98436],[85.37551,24.99036],[85.38296,24.99166],[85.37923,24.98098],[85.37355,24.97665],[85.37201,24.97265],[85.3755,24.9734],[85.39004,24.96079],[85.39598,24.96813],[85.40254,24.97122],[85.41546,24.97135],[85.43074,24.97899],[85.43593,24.97903],[85.43569,24.98095],[85.45206,24.98679],[85.45978,24.99132],[85.46378,24.99123],[85.46491,24.99516],[85.48611,25.00439],[85.49774,25.00739],[85.51289,25.00637],[85.52039,25.01592],[85.5227,25.01314],[85.51876,25.00522],[85.52801,25.00361],[85.5296,25.00091],[85.52889,24.9973],[85.5317,24.99711],[85.53236,24.99381],[85.54409,24.99518],[85.54536,24.99413],[85.54428,24.98847],[85.55505,24.98953],[85.55582,24.98569],[85.55732,24.98566],[85.55638,24.99383],[85.56295,24.99418],[85.56254,25.00496],[85.55519,25.00433],[85.55294,25.00806],[85.54767,25.00839],[85.54714,25.0121],[85.53987,25.01448],[85.54073,25.0227],[85.54289,25.02337],[85.54338,25.02632],[85.54627,25.02891],[85.54647,25.03279],[85.55585,25.03758],[85.5594,25.02879],[85.56917,25.02852],[85.5695,25.03071],[85.57499,25.02995],[85.58463,25.03478],[85.58517,25.03275],[85.59185,25.02899],[85.59811,25.02922],[85.59778,25.03306],[85.60209,25.03606],[85.60339,25.03973],[85.60667,25.03982],[85.60769,25.04254],[85.61298,25.04207],[85.61819,25.05031],[85.62455,25.05277],[85.6285,25.05754],[85.63242,25.05951],[85.6288,25.06447],[85.63167,25.06925],[85.63995,25.06719],[85.63925,25.06503],[85.64141,25.06063],[85.65309,25.06038],[85.65288,25.06651],[85.64822,25.07042],[85.64888,25.07229],[85.6458,25.07333],[85.6479,25.07708],[85.64234,25.08059],[85.64424,25.08459],[85.64097,25.08593],[85.64129,25.08908],[85.63777,25.09075],[85.63817,25.09225],[85.63416,25.09236],[85.63451,25.09606],[85.62452,25.10896],[85.61857,25.11199],[85.61235,25.11241],[85.60763,25.10208],[85.60219,25.10272],[85.6037,25.11965],[85.60569,25.12463],[85.61751,25.12736],[85.63181,25.12731],[85.64603,25.12231],[85.64783,25.1203],[85.66865,25.11844],[85.6691,25.12261],[85.67354,25.12484],[85.67587,25.12867],[85.68021,25.12883],[85.68849,25.13319],[85.68744,25.14171],[85.69363,25.16028],[85.7026,25.16061],[85.70417,25.16549],[85.70289,25.16592],[85.7033,25.16856],[85.69586,25.16689],[85.69602,25.18797],[85.70337,25.18547],[85.71671,25.18522],[85.71726,25.18696],[85.71744,25.18434],[85.72043,25.18421],[85.72087,25.18674],[85.71862,25.18787],[85.72075,25.18796],[85.72026,25.19092],[85.72411,25.19327],[85.7215,25.19347],[85.72173,25.19508],[85.72924,25.19346],[85.72933,25.20378],[85.724,25.20629],[85.7254,25.21532],[85.7236,25.2208],[85.71695,25.22376],[85.71763,25.22674],[85.71489,25.22696],[85.71437,25.22395],[85.70032,25.22835],[85.70339,25.25658],[85.69971,25.26384],[85.70458,25.2636],[85.70506,25.26582],[85.70862,25.26746],[85.71929,25.26731],[85.72179,25.27071],[85.72687,25.27356],[85.73789,25.27377],[85.73929,25.273],[85.73931,25.25756],[85.76209,25.25626],[85.76416,25.25887],[85.77681,25.26046],[85.77288,25.23878],[85.78582,25.2407],[85.78954,25.24451],[85.79599,25.24648],[85.79548,25.24212],[85.7928,25.24045],[85.79252,25.23438],[85.78913,25.22618],[85.78896,25.21348],[85.79408,25.21235],[85.80035,25.21305],[85.80036,25.22312],[85.8025,25.22469],[85.81673,25.22135],[85.81691,25.22239],[85.82325,25.2214],[85.82155,25.21609],[85.82295,25.21429],[85.83468,25.21564],[85.83515,25.22039],[85.83829,25.22626],[85.84264,25.22844],[85.84449,25.22667],[85.84425,25.23469],[85.8512,25.23534],[85.85716,25.23781],[85.87204,25.23785],[85.87225,25.23425],[85.87836,25.23603],[85.87812,25.22793],[85.88677,25.22624],[85.89225,25.22297],[85.90128,25.2233],[85.9012,25.22701],[85.90999,25.22659],[85.91332,25.22922],[85.91365,25.23163],[85.92179,25.23529],[85.92677,25.24189],[85.92476,25.24517],[85.9221,25.24496],[85.9217,25.24773],[85.91497,25.2487],[85.90864,25.25447],[85.90199,25.2565],[85.90311,25.25886],[85.90101,25.26037],[85.90542,25.26801],[85.90392,25.27312],[85.90624,25.27893],[85.90462,25.28328],[85.9064,25.29125],[85.89606,25.29303],[85.8911,25.29063],[85.89235,25.28771],[85.8919,25.28073],[85.88956,25.27894],[85.86425,25.27909],[85.86495,25.29376],[85.84109,25.29152],[85.83392,25.28723],[85.83,25.28845],[85.80899,25.28804],[85.80997,25.29479],[85.80721,25.30658],[85.8025,25.30907],[85.79855,25.30678],[85.78821,25.30947],[85.7876,25.30676],[85.78202,25.3073],[85.78084,25.30825],[85.78143,25.31354],[85.77072,25.31419],[85.76671,25.31689],[85.76239,25.3171],[85.76095,25.31704],[85.75991,25.31313],[85.75268,25.31521],[85.75152,25.3178],[85.74096,25.31953],[85.73989,25.33263],[85.73059,25.33331],[85.72956,25.34777],[85.72342,25.34529],[85.72009,25.3468],[85.72317,25.35138],[85.72197,25.3536],[85.71938,25.35381],[85.71886,25.36214],[85.71183,25.36262],[85.71208,25.35302],[85.70972,25.3517],[85.70846,25.35566],[85.70434,25.35898],[85.70116,25.34949],[85.68658,25.35244],[85.68546,25.3435],[85.67763,25.34253],[85.66843,25.34397],[85.66704,25.33671],[85.66407,25.33713],[85.66107,25.33291],[85.65764,25.33379],[85.65527,25.33265],[85.65441,25.32988],[85.65799,25.3281],[85.6587,25.32487],[85.65622,25.31062],[85.64797,25.31097],[85.64743,25.31384],[85.64042,25.31361],[85.6435,25.32124],[85.64231,25.32245],[85.63855,25.3218],[85.63752,25.31952],[85.6277,25.31972],[85.62824,25.33098],[85.63803,25.33106],[85.6378,25.33246],[85.64282,25.33393],[85.6453,25.33255],[85.64671,25.33352],[85.64655,25.34211],[85.64128,25.34265],[85.64233,25.34421],[85.64005,25.34712],[85.63992,25.35285],[85.63523,25.35294],[85.63373,25.34924],[85.63086,25.34939],[85.63667,25.36159],[85.62867,25.36638],[85.62494,25.36676],[85.62525,25.37958],[85.60476,25.38151],[85.60404,25.38449],[85.60088,25.38565],[85.59897,25.3888],[85.59538,25.38788],[85.59269,25.37862],[85.58948,25.38292],[85.58702,25.38019],[85.58266,25.3913],[85.57958,25.39415],[85.57311,25.39478],[85.57309,25.39586],[85.57642,25.39597],[85.57769,25.40222],[85.57601,25.4219],[85.57101,25.41897],[85.5669,25.42128],[85.56386,25.42111],[85.5579,25.41333],[85.55618,25.41502],[85.55955,25.42085],[85.5571,25.42424],[85.5515,25.42214],[85.54834,25.41762],[85.54426,25.42129],[85.5403,25.41971],[85.53584,25.42247],[85.5332,25.41856],[85.52948,25.41814],[85.5284,25.42002],[85.53198,25.42425],[85.5246,25.42652],[85.52266,25.4265],[85.52174,25.42351],[85.5184,25.4224],[85.51308,25.42551],[85.50683,25.4265],[85.50351,25.42918],[85.50196,25.42547],[85.49711,25.42554],[85.49454,25.42874],[85.4897,25.42977],[85.49215,25.43278],[85.49042,25.4354],[85.49271,25.43856],[85.48931,25.43972],[85.48806,25.44501],[85.4822,25.44463],[85.4796,25.44281],[85.48029,25.44049],[85.48343,25.44098],[85.48277,25.43655],[85.47857,25.43817],[85.4751,25.4358],[85.47465,25.44034],[85.47065,25.4378],[85.46695,25.438],[85.45839,25.44094],[85.45637,25.44452],[85.45395,25.44281],[85.4475,25.44291],[85.44655,25.43945],[85.44421,25.43851],[85.44311,25.4404],[85.44116,25.43974],[85.43923,25.44112],[85.43931,25.44702],[85.43667,25.4483],[85.43271,25.4425],[85.43415,25.44616],[85.42961,25.44611],[85.4283,25.45075],[85.41853,25.45549],[85.41606,25.45889]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"21","area_level":"District","area_name":"Lahaul And Spiti","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.27399,32.87385],[77.26629,32.86883],[77.26269,32.86409],[77.25427,32.86394],[77.25524,32.86602],[77.25331,32.86934],[77.25,32.87236],[77.24426,32.87267],[77.23759,32.88018],[77.23726,32.88335],[77.23997,32.88439],[77.24299,32.89216],[77.23367,32.89444],[77.21913,32.90407],[77.20292,32.90655],[77.19341,32.9164],[77.19287,32.92344],[77.18797,32.92874],[77.1785,32.92313],[77.17393,32.91333],[77.17044,32.91067],[77.15574,32.91158],[77.15988,32.91304],[77.16389,32.91823],[77.16171,32.93171],[77.16454,32.93648],[77.15947,32.93825],[77.16194,32.95064],[77.16113,32.95266],[77.14873,32.95616],[77.14922,32.96058],[77.14736,32.9657],[77.14931,32.96924],[77.15025,32.9783],[77.14678,32.97851],[77.14217,32.98149],[77.13372,32.98007],[77.11602,32.98467],[77.11161,32.97914],[77.11076,32.97514],[77.09684,32.9715],[77.08652,32.97241],[77.08185,32.97528],[77.08266,32.97844],[77.08016,32.98301],[77.07119,32.98441],[77.05704,32.9916],[77.04739,32.99862],[77.03894,32.99765],[77.03163,32.98971],[77.02387,32.99132],[77.00949,32.98866],[76.9959,32.99757],[76.99231,33.00179],[76.98901,33.00262],[76.98082,33.0],[76.97135,33.00028],[76.96812,33.00418],[76.96373,33.00517],[76.9606,33.00914],[76.96145,33.01129],[76.95966,33.01534],[76.9507,33.01818],[76.94097,33.02832],[76.93299,33.02817],[76.92869,33.03166],[76.92577,33.03827],[76.92546,33.04742],[76.91421,33.06338],[76.91385,33.06844],[76.91125,33.07128],[76.91134,33.07525],[76.9052,33.07952],[76.90569,33.08504],[76.90996,33.08962],[76.90929,33.09381],[76.89771,33.09869],[76.89749,33.10085],[76.89255,33.10591],[76.89327,33.10992],[76.88892,33.11722],[76.8851,33.12138],[76.87724,33.11884],[76.87051,33.11336],[76.86243,33.11272],[76.85507,33.11438],[76.84923,33.12043],[76.85291,33.12569],[76.84891,33.12871],[76.84299,33.13033],[76.84397,33.13778],[76.83881,33.14122],[76.83481,33.14065],[76.83005,33.14284],[76.82964,33.14659],[76.82537,33.14817],[76.818,33.15709],[76.8167,33.16034],[76.81737,33.16673],[76.81291,33.17191],[76.81354,33.17724],[76.81884,33.17989],[76.82238,33.18507],[76.81739,33.19414],[76.82364,33.19762],[76.8293,33.20325],[76.83446,33.20485],[76.83406,33.20859],[76.83131,33.20995],[76.83176,33.21233],[76.82561,33.21569],[76.82839,33.21856],[76.82771,33.22257],[76.83185,33.22911],[76.83769,33.23403],[76.84052,33.23959],[76.84461,33.24227],[76.84317,33.24674],[76.83071,33.24919],[76.82352,33.24333],[76.8224,33.23678],[76.82006,33.23584],[76.80684,33.24498],[76.80344,33.25295],[76.79915,33.25624],[76.793,33.25636],[76.78484,33.25346],[76.77987,33.25426],[76.77288,33.25211],[76.77069,33.24944],[76.77312,33.24215],[76.77941,33.23812],[76.77584,33.22049],[76.77161,33.21856],[76.77095,33.21304],[76.76659,33.21084],[76.76624,33.20789],[76.75781,33.19539],[76.75009,33.19149],[76.75018,33.18806],[76.74676,33.18308],[76.74695,33.17919],[76.7483,33.17936],[76.74943,33.17682],[76.74305,33.1568],[76.74865,33.15135],[76.74879,33.1396],[76.74632,33.13053],[76.74143,33.12681],[76.7392,33.11954],[76.73965,33.11419],[76.73584,33.10383],[76.7382,33.0914],[76.73631,33.08257],[76.73943,33.07733],[76.74602,33.05546],[76.75396,33.04727],[76.75174,33.04163],[76.75576,33.03547],[76.7598,33.03453],[76.76153,33.01839],[76.77641,33.01702],[76.77413,33.01325],[76.77209,33.00211],[76.76706,32.9991],[76.76595,32.99272],[76.76645,32.98908],[76.76981,32.98443],[76.77643,32.98189],[76.77555,32.97777],[76.77806,32.9717],[76.78191,32.96864],[76.77881,32.9623],[76.77888,32.96014],[76.78164,32.95759],[76.78085,32.95112],[76.7698,32.94274],[76.76926,32.93534],[76.75588,32.92487],[76.73581,32.9299],[76.72974,32.92963],[76.72267,32.92545],[76.72094,32.91986],[76.7129,32.91745],[76.70992,32.9094],[76.71101,32.90424],[76.70711,32.89495],[76.70718,32.8839],[76.69977,32.88043],[76.69299,32.87251],[76.69122,32.86502],[76.68705,32.86208],[76.68091,32.85137],[76.67479,32.84617],[76.66491,32.84606],[76.65723,32.84302],[76.6521,32.84751],[76.64983,32.85221],[76.64564,32.85398],[76.62899,32.85011],[76.62109,32.84996],[76.61561,32.84769],[76.61258,32.84855],[76.61022,32.85159],[76.60815,32.84962],[76.60688,32.85145],[76.59883,32.84344],[76.58649,32.84074],[76.58165,32.83268],[76.57368,32.82391],[76.56088,32.822],[76.54936,32.8158],[76.53943,32.81586],[76.53324,32.81416],[76.52183,32.80687],[76.5145,32.80673],[76.51224,32.8042],[76.50625,32.80467],[76.4925,32.80198],[76.46978,32.80634],[76.46984,32.81303],[76.47193,32.81457],[76.47405,32.82102],[76.46683,32.82685],[76.45441,32.84849],[76.44308,32.85597],[76.44154,32.85367],[76.43958,32.8559],[76.43646,32.85091],[76.42742,32.84404],[76.4151,32.84344],[76.40728,32.83976],[76.39228,32.82525],[76.37655,32.82036],[76.37292,32.81336],[76.37329,32.80769],[76.37619,32.80308],[76.37431,32.79771],[76.38325,32.79263],[76.38688,32.78276],[76.38514,32.77355],[76.38762,32.77159],[76.39017,32.75899],[76.39408,32.75165],[76.39408,32.74308],[76.39884,32.73991],[76.39789,32.7338],[76.39994,32.72763],[76.41178,32.72199],[76.42855,32.70872],[76.42803,32.70113],[76.4301,32.69699],[76.4229,32.68836],[76.4344,32.67757],[76.44413,32.67432],[76.44585,32.66935],[76.43987,32.6594],[76.44158,32.65795],[76.46689,32.65227],[76.47523,32.65635],[76.47928,32.6561],[76.49858,32.66109],[76.50461,32.66533],[76.50947,32.66666],[76.51828,32.6655],[76.52108,32.66712],[76.52493,32.65951],[76.52829,32.65648],[76.54944,32.65645],[76.56338,32.64602],[76.59234,32.63679],[76.59202,32.63381],[76.59615,32.6257],[76.603,32.62213],[76.59813,32.61515],[76.60239,32.60474],[76.61204,32.60235],[76.62356,32.60608],[76.6321,32.60535],[76.62617,32.5984],[76.62686,32.59413],[76.6225,32.58161],[76.62277,32.57868],[76.6268,32.57464],[76.64227,32.57839],[76.64417,32.58081],[76.64993,32.5826],[76.6527,32.57931],[76.65861,32.57774],[76.66814,32.57189],[76.67225,32.56405],[76.68188,32.56252],[76.68821,32.56593],[76.68991,32.56512],[76.69557,32.56021],[76.69539,32.55448],[76.69852,32.5518],[76.69686,32.5491],[76.69768,32.54555],[76.70594,32.54395],[76.71246,32.53861],[76.71565,32.53855],[76.72786,32.54517],[76.73668,32.54645],[76.74525,32.55495],[76.7509,32.55593],[76.75472,32.55549],[76.76093,32.55118],[76.76257,32.54689],[76.76513,32.54542],[76.77062,32.54502],[76.7796,32.54935],[76.79219,32.54703],[76.79088,32.54],[76.79442,32.53769],[76.79724,32.53163],[76.80169,32.53134],[76.81792,32.53717],[76.82635,32.53792],[76.82722,32.53028],[76.8379,32.52485],[76.84204,32.52426],[76.84994,32.52618],[76.85612,32.53059],[76.86535,32.53353],[76.8701,32.52549],[76.86916,32.5201],[76.87196,32.51926],[76.87744,32.51303],[76.87244,32.50808],[76.86636,32.50504],[76.85994,32.49785],[76.85783,32.49112],[76.85705,32.47928],[76.86199,32.47339],[76.86254,32.46641],[76.86441,32.46307],[76.90388,32.46726],[76.91153,32.46433],[76.90225,32.45617],[76.89893,32.44787],[76.90234,32.44614],[76.9076,32.43986],[76.91691,32.43525],[76.9134,32.42516],[76.90867,32.42056],[76.90884,32.41696],[76.92128,32.41563],[76.92975,32.41704],[76.94235,32.42538],[76.94706,32.42644],[76.94858,32.42214],[76.9445,32.41352],[76.94418,32.40709],[76.94725,32.40269],[76.96927,32.40113],[76.98005,32.40346],[76.99779,32.41096],[77.0005,32.41446],[77.01213,32.41676],[77.02946,32.42402],[77.03978,32.42416],[77.05487,32.43327],[77.06203,32.42571],[77.06483,32.41797],[77.0777,32.41812],[77.07819,32.40949],[77.07585,32.40074],[77.07348,32.39855],[77.07456,32.39929],[77.08199,32.39467],[77.08645,32.39575],[77.08865,32.39415],[77.09732,32.39311],[77.10159,32.3955],[77.10999,32.39646],[77.12407,32.40311],[77.14204,32.4077],[77.14588,32.41271],[77.15195,32.4146],[77.16862,32.40905],[77.17961,32.40256],[77.18479,32.39651],[77.19508,32.39831],[77.19981,32.38586],[77.20538,32.38459],[77.22096,32.37636],[77.22717,32.37017],[77.23183,32.3749],[77.24266,32.37537],[77.24521,32.37026],[77.2507,32.36865],[77.26129,32.35958],[77.27585,32.35465],[77.27751,32.34706],[77.28437,32.33998],[77.29122,32.33855],[77.30026,32.33147],[77.30794,32.33263],[77.3106,32.32704],[77.32123,32.32005],[77.32205,32.31744],[77.32777,32.31472],[77.32831,32.31179],[77.32587,32.30868],[77.32782,32.30393],[77.32966,32.30266],[77.33436,32.30366],[77.34065,32.29603],[77.33959,32.28847],[77.34411,32.285],[77.34622,32.27804],[77.34513,32.27377],[77.34657,32.26983],[77.34981,32.268],[77.34742,32.252],[77.34463,32.25096],[77.34488,32.2459],[77.34767,32.24307],[77.34753,32.24072],[77.35352,32.23209],[77.35404,32.22894],[77.36504,32.22325],[77.36921,32.21869],[77.3735,32.21905],[77.38106,32.21126],[77.38904,32.2089],[77.39733,32.2125],[77.40384,32.2097],[77.40785,32.20707],[77.40894,32.20403],[77.4138,32.20146],[77.4165,32.2017],[77.42091,32.18869],[77.43542,32.19003],[77.44143,32.1879],[77.46465,32.19293],[77.4607,32.20011],[77.46815,32.20466],[77.46447,32.20974],[77.46783,32.21418],[77.46794,32.21962],[77.46612,32.22239],[77.46889,32.22337],[77.47934,32.22024],[77.48462,32.2213],[77.49353,32.21642],[77.50222,32.21506],[77.50341,32.21052],[77.50966,32.2074],[77.51152,32.20373],[77.5146,32.20352],[77.51482,32.1977],[77.53154,32.19429],[77.53633,32.20138],[77.53288,32.20527],[77.533,32.20859],[77.54407,32.21531],[77.54653,32.21861],[77.56639,32.20356],[77.56547,32.19437],[77.56996,32.18954],[77.57017,32.18557],[77.57208,32.18371],[77.58367,32.18132],[77.5849,32.17988],[77.58445,32.17433],[77.60169,32.17083],[77.6028,32.16525],[77.60717,32.16268],[77.60821,32.15967],[77.61948,32.15497],[77.62616,32.15758],[77.63207,32.14884],[77.64089,32.14874],[77.64389,32.14559],[77.65258,32.14215],[77.65463,32.13916],[77.66023,32.13629],[77.65871,32.13193],[77.6618,32.1293],[77.66195,32.12349],[77.67014,32.1208],[77.67198,32.11524],[77.67734,32.11353],[77.68352,32.10439],[77.6884,32.10046],[77.69353,32.09934],[77.70502,32.10222],[77.71824,32.09186],[77.72853,32.09007],[77.74328,32.09003],[77.74657,32.08191],[77.75324,32.07815],[77.75676,32.06724],[77.76472,32.05927],[77.76468,32.05221],[77.76202,32.04598],[77.7641,32.04189],[77.77406,32.03584],[77.77819,32.03618],[77.77924,32.03237],[77.78798,32.02383],[77.79064,32.01829],[77.78643,32.01365],[77.77835,32.01157],[77.77299,32.00523],[77.78222,32.00093],[77.78557,31.99652],[77.79399,31.99279],[77.79816,31.98712],[77.79412,31.98125],[77.78342,31.97448],[77.78073,31.96991],[77.78156,31.9662],[77.7797,31.96199],[77.77274,31.9552],[77.7727,31.95194],[77.76669,31.94783],[77.76735,31.94213],[77.77112,31.93981],[77.77292,31.9355],[77.77794,31.93428],[77.78202,31.92993],[77.78179,31.92052],[77.78874,31.91591],[77.79076,31.90917],[77.80232,31.90287],[77.80489,31.89953],[77.82432,31.89595],[77.82882,31.8982],[77.86873,31.88532],[77.86482,31.88119],[77.85007,31.87474],[77.83814,31.85425],[77.8417,31.85],[77.84379,31.84418],[77.84469,31.83535],[77.84938,31.83279],[77.84487,31.82497],[77.84831,31.81701],[77.84774,31.80251],[77.85478,31.79593],[77.86574,31.79171],[77.86637,31.78641],[77.87124,31.77674],[77.8941,31.76187],[77.89675,31.76151],[77.89867,31.75967],[77.89806,31.75627],[77.89997,31.75347],[77.9092,31.75024],[77.91667,31.75205],[77.92514,31.74759],[77.93614,31.74769],[77.94158,31.75254],[77.94046,31.75713],[77.94736,31.76281],[77.94569,31.76843],[77.94683,31.78288],[77.95265,31.78718],[77.95931,31.78291],[77.96684,31.78232],[77.97076,31.78013],[77.97654,31.78186],[77.98329,31.78048],[77.98724,31.7815],[77.9907,31.77853],[77.99797,31.77997],[78.00331,31.77107],[78.01139,31.77387],[78.01543,31.77084],[78.01727,31.7647],[78.02227,31.76398],[78.02765,31.75778],[78.0323,31.75786],[78.03995,31.76102],[78.04426,31.7691],[78.04972,31.77322],[78.05008,31.77598],[78.05409,31.77668],[78.05751,31.78221],[78.07481,31.78223],[78.08469,31.78787],[78.08292,31.79078],[78.08288,31.79724],[78.08567,31.80714],[78.08964,31.80956],[78.09602,31.82214],[78.09187,31.82994],[78.09602,31.83164],[78.09768,31.83515],[78.09304,31.8397],[78.08702,31.84144],[78.08369,31.8449],[78.08774,31.84868],[78.0942,31.85077],[78.09031,31.85627],[78.09859,31.85808],[78.10814,31.8572],[78.11694,31.86155],[78.12207,31.86651],[78.12681,31.86754],[78.14011,31.86496],[78.1479,31.86721],[78.15583,31.86051],[78.16269,31.85914],[78.17072,31.86008],[78.174,31.86524],[78.18073,31.86476],[78.18964,31.8715],[78.1864,31.87656],[78.18675,31.88249],[78.18284,31.88699],[78.18595,31.89237],[78.18328,31.89554],[78.18634,31.90345],[78.18229,31.91152],[78.18216,31.91495],[78.19366,31.91717],[78.19453,31.92596],[78.20229,31.932],[78.2153,31.93334],[78.22462,31.93118],[78.24906,31.93387],[78.26382,31.93162],[78.26912,31.93419],[78.28862,31.9264],[78.29925,31.92498],[78.30162,31.92561],[78.30257,31.93331],[78.31017,31.93708],[78.32369,31.93417],[78.33535,31.93412],[78.34183,31.93106],[78.34621,31.93686],[78.35344,31.93833],[78.36627,31.951],[78.36719,31.9553],[78.3653,31.95916],[78.37194,31.95864],[78.38102,31.95501],[78.39342,31.95262],[78.3999,31.9537],[78.40857,31.94759],[78.41032,31.94333],[78.42087,31.9345],[78.4259,31.9371],[78.43512,31.93453],[78.43996,31.93645],[78.44635,31.9351],[78.45636,31.93768],[78.45755,31.94181],[78.45349,31.94894],[78.45615,31.95115],[78.45629,31.95454],[78.45988,31.95771],[78.45374,31.96309],[78.4435,31.96859],[78.43631,31.97029],[78.4332,31.97734],[78.44012,31.98404],[78.4415,31.99955],[78.4376,32.01192],[78.43761,32.01906],[78.44346,32.029],[78.44352,32.0337],[78.44593,32.03816],[78.44461,32.0427],[78.44718,32.04979],[78.45097,32.05368],[78.45032,32.05977],[78.45606,32.06184],[78.46622,32.06082],[78.47346,32.05752],[78.47513,32.05385],[78.48165,32.05299],[78.48259,32.04827],[78.48524,32.04817],[78.48783,32.05155],[78.49732,32.05263],[78.5026,32.04843],[78.50864,32.04742],[78.51162,32.04912],[78.51864,32.04878],[78.52972,32.0572],[78.53621,32.05634],[78.54976,32.06221],[78.5535,32.05981],[78.56951,32.05974],[78.5802,32.06444],[78.58696,32.06233],[78.59291,32.06775],[78.60317,32.06345],[78.60692,32.05671],[78.60516,32.05065],[78.61333,32.04922],[78.62045,32.05303],[78.62402,32.05759],[78.62493,32.06303],[78.62872,32.06713],[78.6395,32.06047],[78.64624,32.06087],[78.65143,32.06433],[78.65248,32.07058],[78.6565,32.0742],[78.66913,32.0705],[78.68027,32.07694],[78.67396,32.0854],[78.66593,32.10178],[78.6566,32.11148],[78.62122,32.11153],[78.61767,32.11523],[78.61401,32.12232],[78.6148,32.13329],[78.61139,32.14248],[78.59979,32.14983],[78.59678,32.15391],[78.59623,32.15777],[78.60788,32.16781],[78.61376,32.17537],[78.61445,32.18125],[78.61257,32.19499],[78.61469,32.20881],[78.60841,32.21909],[78.58795,32.2361],[78.57347,32.24454],[78.55948,32.24869],[78.54589,32.24771],[78.49628,32.23747],[78.46317,32.24024],[78.46084,32.24171],[78.4635,32.24742],[78.47376,32.25844],[78.47997,32.26895],[78.48341,32.28139],[78.48479,32.34914],[78.49674,32.36171],[78.50579,32.36646],[78.51479,32.37504],[78.52175,32.39185],[78.53341,32.41038],[78.53351,32.41546],[78.5228,32.4223],[78.503,32.41972],[78.49577,32.42202],[78.48975,32.43482],[78.47586,32.44871],[78.46555,32.45466],[78.46088,32.46184],[78.46003,32.46742],[78.4621,32.47234],[78.46724,32.47785],[78.46688,32.48763],[78.46125,32.5038],[78.44299,32.51041],[78.43492,32.50981],[78.42863,32.50736],[78.4253,32.50891],[78.4175,32.51931],[78.40987,32.52401],[78.39952,32.5246],[78.39894,32.5209],[78.39419,32.5148],[78.38601,32.51301],[78.37856,32.50645],[78.36514,32.4994],[78.36761,32.49373],[78.36654,32.48544],[78.36378,32.48227],[78.34971,32.47746],[78.34998,32.47334],[78.35314,32.46994],[78.34897,32.46433],[78.34055,32.46273],[78.32844,32.46501],[78.32575,32.45964],[78.32844,32.45403],[78.33446,32.45066],[78.33271,32.44609],[78.32913,32.44337],[78.31144,32.44633],[78.30741,32.45209],[78.30019,32.45548],[78.29785,32.46234],[78.28737,32.46299],[78.28473,32.46854],[78.28566,32.47155],[78.29127,32.47532],[78.28953,32.47934],[78.28575,32.48239],[78.28995,32.48514],[78.29264,32.48984],[78.29252,32.49897],[78.30113,32.50387],[78.3067,32.5115],[78.30455,32.51743],[78.30866,32.52555],[78.30697,32.53754],[78.30904,32.5431],[78.31297,32.54511],[78.3155,32.54967],[78.31245,32.55147],[78.31445,32.55991],[78.31355,32.56591],[78.33149,32.57662],[78.34328,32.57808],[78.35056,32.58896],[78.3629,32.58966],[78.36617,32.59366],[78.37859,32.59794],[78.37961,32.60455],[78.38414,32.60894],[78.3896,32.60999],[78.39079,32.61488],[78.39753,32.61761],[78.40231,32.61707],[78.40363,32.61967],[78.40966,32.62313],[78.40838,32.6271],[78.40135,32.62831],[78.39161,32.63343],[78.38786,32.64078],[78.38775,32.64514],[78.38142,32.65413],[78.38651,32.66468],[78.38714,32.67725],[78.39168,32.68537],[78.40074,32.6942],[78.39721,32.6985],[78.39699,32.70757],[78.38887,32.71184],[78.38537,32.71956],[78.38466,32.7317],[78.38944,32.74069],[78.38656,32.74523],[78.38596,32.74965],[78.388,32.75669],[78.3649,32.75334],[78.35705,32.7577],[78.33326,32.74971],[78.31285,32.73978],[78.30988,32.7351],[78.30585,32.73248],[78.3139,32.72081],[78.31473,32.71739],[78.30685,32.71043],[78.30602,32.70712],[78.30179,32.70411],[78.2946,32.70363],[78.29318,32.70034],[78.27391,32.70253],[78.26849,32.7011],[78.26054,32.7029],[78.25577,32.69706],[78.2538,32.69202],[78.25441,32.68918],[78.2459,32.6716],[78.23223,32.67171],[78.21895,32.66463],[78.20394,32.66706],[78.20129,32.67043],[78.19692,32.67052],[78.17576,32.68101],[78.17115,32.68047],[78.16548,32.68311],[78.15836,32.68399],[78.14973,32.68175],[78.14238,32.68183],[78.14788,32.67187],[78.14719,32.65396],[78.13664,32.65447],[78.1271,32.65223],[78.12062,32.66073],[78.11676,32.66027],[78.11049,32.66277],[78.0926,32.64784],[78.09592,32.6444],[78.0992,32.63644],[78.09886,32.63036],[78.09171,32.62851],[78.08753,32.62465],[78.08134,32.62622],[78.07471,32.63094],[78.06788,32.62663],[78.06088,32.62642],[78.05639,32.63468],[78.04702,32.64531],[78.04276,32.64032],[78.03402,32.63693],[78.03345,32.63381],[78.02516,32.62723],[78.02903,32.6235],[78.01678,32.61941],[78.01282,32.62181],[78.01186,32.62499],[78.00329,32.62457],[77.9933,32.62863],[77.98466,32.6415],[77.97025,32.64668],[77.97227,32.65292],[77.97091,32.65497],[77.96585,32.65757],[77.95512,32.65819],[77.94744,32.66088],[77.9428,32.66559],[77.94096,32.6734],[77.93457,32.68114],[77.91914,32.68991],[77.91826,32.69613],[77.92246,32.69905],[77.92155,32.70316],[77.92282,32.70643],[77.92163,32.70844],[77.92455,32.71127],[77.92485,32.71723],[77.92803,32.722],[77.93439,32.72586],[77.93161,32.73171],[77.9263,32.73482],[77.92703,32.73648],[77.93066,32.73696],[77.92926,32.74253],[77.93291,32.74655],[77.93143,32.75048],[77.93413,32.7565],[77.93293,32.76129],[77.92723,32.76572],[77.92572,32.772],[77.91624,32.77384],[77.90368,32.77188],[77.89456,32.77826],[77.89183,32.78287],[77.88419,32.78755],[77.88795,32.79869],[77.8811,32.80413],[77.88209,32.81036],[77.87851,32.81918],[77.87127,32.82248],[77.86919,32.82703],[77.8554,32.83234],[77.84687,32.83898],[77.83901,32.84201],[77.83532,32.84067],[77.83244,32.83627],[77.82612,32.83619],[77.81503,32.84888],[77.80549,32.84988],[77.79867,32.85585],[77.79186,32.85593],[77.78529,32.86082],[77.78096,32.86579],[77.78398,32.88285],[77.78947,32.89061],[77.79327,32.8931],[77.80246,32.89333],[77.80667,32.89556],[77.81069,32.90016],[77.81124,32.9063],[77.79973,32.91244],[77.79456,32.91999],[77.7876,32.92347],[77.77183,32.93802],[77.7658,32.94154],[77.76475,32.94358],[77.76651,32.94629],[77.76354,32.94905],[77.75091,32.95456],[77.74977,32.95773],[77.7445,32.962],[77.74101,32.96903],[77.73282,32.97178],[77.73095,32.97455],[77.72494,32.96932],[77.71957,32.96866],[77.7141,32.97633],[77.71315,32.98246],[77.6975,32.97938],[77.69778,32.98271],[77.68952,32.98802],[77.68249,32.9888],[77.68072,32.98379],[77.68202,32.97477],[77.67873,32.96958],[77.67407,32.96735],[77.67413,32.96119],[77.66413,32.95831],[77.65601,32.95888],[77.65269,32.95488],[77.64358,32.94922],[77.64316,32.94651],[77.60311,32.94293],[77.59436,32.92594],[77.57725,32.91445],[77.56372,32.9123],[77.55039,32.90031],[77.54539,32.8916],[77.53847,32.88608],[77.51258,32.87736],[77.50149,32.88558],[77.49719,32.88037],[77.49103,32.87961],[77.48619,32.87369],[77.48082,32.87054],[77.47494,32.86161],[77.4692,32.85868],[77.46119,32.85998],[77.45207,32.86409],[77.44782,32.87026],[77.44796,32.87531],[77.44481,32.8799],[77.43956,32.87924],[77.43331,32.87593],[77.42798,32.87561],[77.41344,32.88412],[77.40611,32.88351],[77.39589,32.87717],[77.39422,32.87132],[77.38779,32.86355],[77.38146,32.86192],[77.37501,32.85574],[77.37545,32.85008],[77.37992,32.84546],[77.37924,32.83892],[77.3766,32.83708],[77.37418,32.82536],[77.3712,32.82212],[77.36019,32.81759],[77.35019,32.81551],[77.33857,32.81691],[77.33679,32.81904],[77.33602,32.82498],[77.33203,32.8261],[77.32968,32.83047],[77.327,32.83149],[77.32534,32.83551],[77.32874,32.84297],[77.32469,32.84681],[77.32336,32.85041],[77.3204,32.85237],[77.30086,32.84986],[77.29044,32.85708],[77.28607,32.86449],[77.27399,32.87385]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"210","area_level":"District","area_name":"Nawada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.68074,25.11188],[85.68053,25.11329],[85.67361,25.11148],[85.67259,25.10961],[85.66955,25.10899],[85.66997,25.10743],[85.66667,25.10327],[85.66166,25.10333],[85.66083,25.1062],[85.65619,25.1061],[85.6525,25.10315],[85.65066,25.10476],[85.64752,25.10456],[85.64495,25.10152],[85.63346,25.09726],[85.63416,25.09236],[85.63817,25.09225],[85.63777,25.09075],[85.64129,25.08908],[85.64097,25.08593],[85.64424,25.08459],[85.64234,25.08059],[85.6479,25.07708],[85.6458,25.07333],[85.64888,25.07229],[85.64822,25.07042],[85.65288,25.06651],[85.65309,25.06038],[85.64141,25.06063],[85.63925,25.06503],[85.63995,25.06719],[85.63167,25.06925],[85.6288,25.06447],[85.63242,25.05951],[85.6285,25.05754],[85.62455,25.05277],[85.61819,25.05031],[85.61298,25.04207],[85.60769,25.04254],[85.60667,25.03982],[85.60339,25.03973],[85.60209,25.03606],[85.59778,25.03306],[85.59811,25.02922],[85.59185,25.02899],[85.58517,25.03275],[85.58463,25.03478],[85.57499,25.02995],[85.5695,25.03071],[85.56917,25.02852],[85.5594,25.02879],[85.55585,25.03758],[85.54618,25.03251],[85.54627,25.02891],[85.54338,25.02632],[85.54289,25.02337],[85.54073,25.0227],[85.53987,25.01448],[85.54714,25.0121],[85.54767,25.00839],[85.55294,25.00806],[85.55519,25.00433],[85.56254,25.00496],[85.56295,24.99418],[85.55627,24.99357],[85.55753,24.98576],[85.55582,24.98569],[85.55505,24.98953],[85.54428,24.98847],[85.54536,24.99413],[85.54409,24.99518],[85.53236,24.99381],[85.5317,24.99711],[85.52889,24.9973],[85.5296,25.00091],[85.52801,25.00361],[85.51876,25.00522],[85.5227,25.01314],[85.52039,25.01592],[85.51289,25.00637],[85.49774,25.00739],[85.48661,25.00455],[85.46491,24.99516],[85.46378,24.99123],[85.45978,24.99132],[85.45206,24.98679],[85.43569,24.98095],[85.43593,24.97903],[85.43074,24.97899],[85.41546,24.97135],[85.4023,24.97111],[85.39598,24.96813],[85.39004,24.96079],[85.38725,24.96128],[85.38517,24.95544],[85.37382,24.94625],[85.37708,24.93522],[85.38229,24.93449],[85.38246,24.928],[85.37564,24.92744],[85.37401,24.92327],[85.37426,24.91832],[85.37595,24.91755],[85.37565,24.91004],[85.37872,24.90813],[85.37692,24.90665],[85.37649,24.90062],[85.37919,24.90062],[85.37932,24.89818],[85.37181,24.89296],[85.36445,24.8923],[85.362,24.88324],[85.36355,24.88033],[85.35545,24.88074],[85.35496,24.88262],[85.34563,24.88286],[85.34144,24.88697],[85.3302,24.88083],[85.33024,24.87701],[85.33383,24.86968],[85.33921,24.8666],[85.33815,24.85857],[85.33327,24.85686],[85.32682,24.85717],[85.32498,24.85561],[85.3208,24.85726],[85.32111,24.85286],[85.32364,24.84825],[85.32345,24.84639],[85.32043,24.84561],[85.31909,24.83971],[85.32012,24.83918],[85.31297,24.83452],[85.31026,24.83006],[85.30454,24.83117],[85.30412,24.82649],[85.30645,24.82527],[85.30631,24.82249],[85.30196,24.8153],[85.30409,24.80814],[85.30114,24.79972],[85.29801,24.79807],[85.29124,24.78113],[85.28541,24.78185],[85.28488,24.78412],[85.28267,24.78517],[85.27654,24.78025],[85.27576,24.76249],[85.26666,24.7441],[85.27116,24.74321],[85.28225,24.74455],[85.28429,24.74713],[85.28729,24.74763],[85.29556,24.74634],[85.29353,24.74032],[85.29445,24.73903],[85.29706,24.74056],[85.30372,24.73907],[85.30276,24.72448],[85.30662,24.72475],[85.3093,24.72734],[85.31778,24.72787],[85.31858,24.73032],[85.32149,24.72935],[85.32537,24.72709],[85.32361,24.7202],[85.32671,24.71419],[85.32984,24.71194],[85.33074,24.69761],[85.32816,24.69435],[85.32465,24.69352],[85.32273,24.68907],[85.32331,24.67665],[85.32215,24.67468],[85.32281,24.66838],[85.32475,24.66632],[85.32341,24.6651],[85.31765,24.66907],[85.3104,24.6691],[85.30884,24.67241],[85.30184,24.67508],[85.30128,24.67041],[85.29951,24.66854],[85.29454,24.66926],[85.296,24.66298],[85.30676,24.65678],[85.30443,24.64907],[85.31769,24.64678],[85.32193,24.64896],[85.32513,24.64636],[85.32155,24.64242],[85.32331,24.6333],[85.31439,24.63631],[85.31056,24.64146],[85.30631,24.64218],[85.3061,24.63646],[85.30329,24.63181],[85.30433,24.62274],[85.30964,24.62018],[85.31269,24.61304],[85.30953,24.60936],[85.31066,24.60786],[85.30825,24.60171],[85.31778,24.60087],[85.3148,24.58979],[85.31593,24.58425],[85.31728,24.58266],[85.3234,24.58167],[85.32848,24.5833],[85.3301,24.58148],[85.32954,24.57367],[85.33186,24.56962],[85.32359,24.56602],[85.31828,24.56686],[85.3203,24.55619],[85.32692,24.55667],[85.33498,24.55315],[85.35139,24.54943],[85.36924,24.5552],[85.38435,24.55549],[85.385,24.55193],[85.38861,24.5493],[85.40099,24.54535],[85.40448,24.54186],[85.41334,24.54136],[85.43226,24.53171],[85.43,24.52955],[85.43463,24.52852],[85.43396,24.53114],[85.43679,24.53426],[85.43925,24.53319],[85.44429,24.5342],[85.45028,24.53715],[85.45959,24.53624],[85.46542,24.53913],[85.47141,24.54475],[85.49154,24.54813],[85.49902,24.54615],[85.50883,24.53766],[85.50952,24.53155],[85.5073,24.52531],[85.51839,24.52615],[85.52396,24.52127],[85.52736,24.52398],[85.53816,24.52785],[85.54078,24.53051],[85.54545,24.54803],[85.54381,24.55692],[85.5423,24.5576],[85.54074,24.56272],[85.54456,24.56331],[85.55627,24.55801],[85.56023,24.55274],[85.5615,24.55868],[85.56787,24.55834],[85.57177,24.56182],[85.57224,24.5654],[85.56977,24.56933],[85.57161,24.5747],[85.56718,24.57679],[85.56627,24.57881],[85.566,24.58725],[85.57224,24.59621],[85.58077,24.60068],[85.58946,24.59678],[85.5922,24.59744],[85.59419,24.59448],[85.5981,24.59615],[85.60199,24.59556],[85.61191,24.58791],[85.61473,24.58074],[85.62028,24.57992],[85.62686,24.58186],[85.63184,24.57888],[85.65005,24.57592],[85.65135,24.57447],[85.65809,24.57803],[85.66738,24.57889],[85.67753,24.59067],[85.67712,24.59457],[85.67396,24.59747],[85.6756,24.60515],[85.6741,24.61133],[85.6762,24.61662],[85.67333,24.62097],[85.6722,24.62969],[85.66744,24.63683],[85.66867,24.64059],[85.66494,24.64288],[85.66256,24.64964],[85.66488,24.65224],[85.66455,24.65476],[85.66752,24.65745],[85.66677,24.66087],[85.65999,24.66764],[85.66052,24.67236],[85.65414,24.67418],[85.64991,24.68046],[85.64921,24.68477],[85.682,24.69192],[85.68913,24.69808],[85.69783,24.71085],[85.7001,24.7171],[85.70826,24.72591],[85.70631,24.73212],[85.70775,24.73721],[85.70646,24.73726],[85.70679,24.74072],[85.70935,24.74266],[85.70937,24.74635],[85.70383,24.75134],[85.70456,24.76714],[85.70965,24.76703],[85.70668,24.76838],[85.70955,24.77685],[85.70736,24.77976],[85.72235,24.7857],[85.7236,24.79706],[85.7291,24.79838],[85.73076,24.80238],[85.73089,24.81335],[85.73617,24.82102],[85.75742,24.81319],[85.76216,24.81277],[85.76871,24.80783],[85.76804,24.80393],[85.77828,24.79663],[85.78001,24.79946],[85.78909,24.79647],[85.80957,24.79402],[85.81064,24.79901],[85.81527,24.80405],[85.82043,24.80764],[85.82732,24.80827],[85.85493,24.80799],[85.86723,24.80425],[85.88942,24.79236],[85.88928,24.78974],[85.88609,24.78687],[85.88658,24.78406],[85.90006,24.77281],[85.90021,24.77049],[85.91392,24.74999],[85.92517,24.74095],[85.93663,24.73515],[85.9444,24.73357],[85.9585,24.7323],[85.96905,24.73313],[85.9718,24.73651],[85.97348,24.74285],[85.98008,24.74882],[85.99644,24.75319],[86.00507,24.76188],[86.02421,24.76668],[86.03236,24.77075],[86.03755,24.77648],[86.04558,24.77642],[86.0551,24.77969],[86.05138,24.78405],[86.03362,24.79287],[86.02032,24.80746],[86.00975,24.80836],[86.01047,24.81149],[86.0011,24.82268],[85.99878,24.82997],[85.99912,24.8381],[85.9947,24.84243],[85.99464,24.84578],[85.97548,24.86111],[85.97455,24.86769],[85.9533,24.87599],[85.95447,24.87188],[85.95237,24.86094],[85.93394,24.86221],[85.89252,24.87371],[85.89351,24.87845],[85.88818,24.88136],[85.88973,24.88564],[85.8853,24.90375],[85.88005,24.91018],[85.87295,24.9122],[85.87627,24.91348],[85.87963,24.9346],[85.87259,24.93472],[85.87074,24.93535],[85.87117,24.93838],[85.8626,24.93893],[85.86339,24.93555],[85.86155,24.93272],[85.86264,24.93017],[85.86074,24.9242],[85.86233,24.92172],[85.85494,24.92346],[85.8527,24.92722],[85.84687,24.92931],[85.84396,24.92891],[85.84143,24.92074],[85.82308,24.92078],[85.82133,24.92705],[85.82522,24.92785],[85.82471,24.93408],[85.82636,24.93476],[85.82765,24.93854],[85.82577,24.95194],[85.846,24.95074],[85.84612,24.94643],[85.84922,24.94304],[85.85717,24.94375],[85.85723,24.94748],[85.85918,24.94907],[85.85723,24.95438],[85.8588,24.95731],[85.85084,24.95717],[85.84985,24.96684],[85.8427,24.97348],[85.83774,24.982],[85.83216,24.98641],[85.83357,24.98777],[85.83295,24.98964],[85.8277,24.99085],[85.82898,24.99484],[85.82572,24.99857],[85.81895,24.99723],[85.81855,24.99584],[85.81544,24.99641],[85.81186,24.99245],[85.81085,24.99423],[85.80847,24.99393],[85.80591,24.98874],[85.80136,24.98765],[85.7982,24.97747],[85.7955,24.97641],[85.78443,24.98195],[85.78684,24.9832],[85.78738,24.9867],[85.78222,24.98856],[85.78176,24.99203],[85.77791,24.99219],[85.78025,25.00576],[85.76806,25.00778],[85.76798,25.00383],[85.7645,25.00346],[85.76288,25.00001],[85.76316,24.99296],[85.75806,24.99421],[85.75733,24.99208],[85.74643,24.99309],[85.75168,25.0027],[85.74115,25.00416],[85.74127,25.00584],[85.73728,25.0066],[85.73804,25.01622],[85.74829,25.01489],[85.74963,25.01768],[85.75878,25.01647],[85.75878,25.01872],[85.7695,25.01719],[85.77078,25.02095],[85.77109,25.02387],[85.76354,25.02473],[85.76377,25.02887],[85.76685,25.02899],[85.76697,25.03143],[85.76378,25.03173],[85.76395,25.03632],[85.76577,25.0366],[85.76615,25.04022],[85.76895,25.04024],[85.76477,25.04694],[85.7671,25.06206],[85.77061,25.06188],[85.77133,25.06839],[85.76863,25.06874],[85.76773,25.07351],[85.76504,25.07602],[85.76646,25.08001],[85.77417,25.07945],[85.77449,25.08245],[85.77131,25.08376],[85.77328,25.09473],[85.77013,25.09489],[85.76882,25.0975],[85.76446,25.09904],[85.75754,25.09939],[85.75577,25.10046],[85.7555,25.1065],[85.75045,25.10833],[85.74891,25.10333],[85.74469,25.10498],[85.74599,25.10064],[85.74577,25.09784],[85.74442,25.09737],[85.73281,25.0974],[85.72183,25.09446],[85.72187,25.0934],[85.71799,25.09403],[85.71763,25.09183],[85.71495,25.09178],[85.71089,25.09381],[85.71222,25.09597],[85.7111,25.09769],[85.69852,25.10008],[85.69792,25.0976],[85.69509,25.09678],[85.6938,25.09375],[85.69216,25.0942],[85.69245,25.09926],[85.68984,25.10097],[85.69164,25.10524],[85.68363,25.11123],[85.68192,25.10963],[85.67992,25.11031],[85.68074,25.11188]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"211","area_level":"District","area_name":"Pashchim Champaran","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.10906,27.52112],[84.10498,27.52105],[84.0977,27.51709],[84.09985,27.51045],[84.09868,27.5053],[84.09713,27.5049],[84.09869,27.50257],[84.09484,27.48902],[84.09131,27.48908],[84.0895,27.48594],[84.08491,27.48336],[84.07798,27.48423],[84.07453,27.48247],[84.07448,27.48046],[84.07119,27.48162],[84.06949,27.48058],[84.0663,27.46933],[84.06166,27.46669],[84.0624,27.46428],[84.05908,27.46157],[84.06013,27.45795],[84.0621,27.45671],[84.06014,27.45437],[84.06116,27.45271],[84.05524,27.44988],[84.05156,27.44263],[84.04354,27.44341],[84.03704,27.44228],[84.03635,27.44081],[84.03189,27.44157],[84.03121,27.43859],[84.02742,27.43968],[84.02574,27.43819],[84.02741,27.43584],[84.02693,27.43354],[84.02187,27.43333],[84.01962,27.43616],[84.01581,27.43488],[84.01241,27.4385],[84.00882,27.43801],[84.00841,27.44027],[84.00549,27.43982],[84.00528,27.44246],[84.00245,27.4424],[84.00135,27.44003],[83.99949,27.44226],[83.99838,27.44105],[83.99669,27.44605],[83.98746,27.44332],[83.9846,27.44384],[83.97808,27.43969],[83.9777,27.44189],[83.97549,27.44306],[83.97343,27.44187],[83.96731,27.4461],[83.95729,27.4426],[83.94604,27.4409],[83.94093,27.44845],[83.93464,27.44833],[83.93348,27.45047],[83.91388,27.4409],[83.89123,27.43887],[83.87549,27.43539],[83.86482,27.43865],[83.85568,27.44581],[83.85047,27.44678],[83.84726,27.44564],[83.84299,27.44171],[83.8373,27.43161],[83.83307,27.42932],[83.83311,27.42508],[83.84304,27.41419],[83.85603,27.40488],[83.8599,27.39484],[83.8782,27.38448],[83.88251,27.37858],[83.88325,27.37424],[83.88021,27.36534],[83.87201,27.35778],[83.86394,27.34723],[83.86234,27.33568],[83.83657,27.32222],[83.84542,27.31518],[83.85266,27.31729],[83.85934,27.30807],[83.87144,27.30724],[83.90076,27.32569],[83.91663,27.32654],[83.92548,27.32141],[83.93247,27.31139],[83.9342,27.30653],[83.93407,27.29975],[83.92983,27.29269],[83.91258,27.27756],[83.90681,27.27564],[83.90502,27.27349],[83.90507,27.25762],[83.9121,27.24576],[83.9193,27.24454],[83.9233,27.24178],[83.9324,27.23936],[83.95341,27.23625],[83.96081,27.23148],[83.96332,27.22851],[83.96254,27.22664],[83.97018,27.22399],[83.97274,27.21819],[83.96752,27.21306],[83.96747,27.20951],[83.97177,27.20845],[83.98696,27.19753],[83.98882,27.18843],[83.99339,27.18164],[83.99418,27.17517],[83.99327,27.17317],[83.98844,27.1716],[83.97874,27.16487],[83.97536,27.15582],[83.95906,27.13688],[83.9628,27.12769],[83.95952,27.12207],[83.95219,27.11862],[83.94767,27.11249],[83.94647,27.09082],[83.95284,27.08493],[83.9644,27.08412],[83.96698,27.08712],[83.9784,27.09076],[83.98926,27.09085],[83.99999,27.10029],[84.0032,27.10186],[84.00877,27.09924],[84.01644,27.10542],[84.02201,27.10413],[84.02397,27.10012],[84.03034,27.09763],[84.03037,27.09384],[84.02494,27.09248],[84.02862,27.08603],[84.02048,27.07941],[84.0166,27.0718],[84.00396,27.07152],[84.00006,27.06859],[84.0056,27.06023],[84.01189,27.05698],[84.018,27.05602],[84.02818,27.04947],[84.03132,27.04563],[84.03908,27.04404],[84.04714,27.04576],[84.0495,27.04327],[84.04953,27.03502],[84.04413,27.02318],[84.04425,27.01672],[84.03731,27.00908],[84.0459,27.005],[84.05281,26.99695],[84.05256,26.9947],[84.0567,26.98966],[84.054,26.98517],[84.04785,26.9846],[84.04576,26.98224],[84.05379,26.97523],[84.053,26.9675],[84.05483,26.96006],[84.0528,26.95498],[84.04597,26.95245],[84.04201,26.9468],[84.03491,26.94521],[84.03214,26.94118],[84.03497,26.9382],[84.04311,26.9405],[84.04654,26.93916],[84.04323,26.93179],[84.05336,26.92967],[84.05621,26.92311],[84.05997,26.92019],[84.05909,26.91646],[84.05309,26.9096],[84.05237,26.90641],[84.05528,26.90263],[84.05827,26.90156],[84.06109,26.89462],[84.0605,26.88783],[84.06699,26.88849],[84.07521,26.88342],[84.07822,26.87904],[84.08141,26.87737],[84.08421,26.87744],[84.08736,26.88169],[84.09433,26.88162],[84.09649,26.87623],[84.09814,26.87594],[84.1045,26.88191],[84.10676,26.88774],[84.10758,26.89693],[84.11042,26.8986],[84.11587,26.89494],[84.11636,26.88912],[84.11795,26.88771],[84.129,26.8932],[84.13128,26.88445],[84.13547,26.88333],[84.14,26.88463],[84.14153,26.88712],[84.14641,26.88542],[84.14771,26.88228],[84.14351,26.87961],[84.14709,26.87245],[84.14233,26.87153],[84.14037,26.8676],[84.14061,26.85265],[84.14584,26.8481],[84.14917,26.84258],[84.15622,26.83756],[84.1661,26.83377],[84.1776,26.83239],[84.18174,26.83348],[84.18679,26.84164],[84.1833,26.84751],[84.19013,26.85847],[84.19303,26.86075],[84.19786,26.85955],[84.20611,26.86172],[84.21949,26.8716],[84.23401,26.8683],[84.24393,26.86297],[84.25409,26.85659],[84.25693,26.84922],[84.26181,26.84258],[84.26068,26.82942],[84.25409,26.82578],[84.25036,26.81933],[84.25682,26.81823],[84.25421,26.81243],[84.26,26.80699],[84.25717,26.78938],[84.24792,26.77063],[84.23258,26.75367],[84.24067,26.73872],[84.24888,26.72964],[84.25631,26.72686],[84.26629,26.73995],[84.27568,26.74197],[84.28579,26.74993],[84.30587,26.74949],[84.31421,26.73904],[84.31468,26.73531],[84.31811,26.73199],[84.32424,26.71516],[84.32586,26.71415],[84.33006,26.6841],[84.33503,26.68155],[84.34304,26.6809],[84.35018,26.67805],[84.37658,26.6775],[84.40391,26.67177],[84.40516,26.67303],[84.4063,26.67092],[84.41041,26.67025],[84.41122,26.65036],[84.40978,26.64674],[84.41327,26.63733],[84.41506,26.63489],[84.429,26.63517],[84.42682,26.63048],[84.42644,26.61802],[84.43246,26.61357],[84.42914,26.60956],[84.4251,26.61221],[84.42285,26.60782],[84.41311,26.59737],[84.40812,26.5866],[84.41314,26.58218],[84.41766,26.58757],[84.42038,26.59689],[84.42366,26.59823],[84.44166,26.61805],[84.45708,26.631],[84.45531,26.62522],[84.45768,26.62182],[84.46348,26.62288],[84.47372,26.61642],[84.48409,26.61508],[84.48572,26.6043],[84.49617,26.60074],[84.50513,26.6024],[84.51366,26.5972],[84.51921,26.6026],[84.52178,26.60221],[84.52269,26.59907],[84.52435,26.59888],[84.52579,26.60055],[84.52612,26.60618],[84.52289,26.60883],[84.51997,26.61566],[84.52206,26.62139],[84.51997,26.62462],[84.52105,26.62837],[84.52721,26.62808],[84.53165,26.6363],[84.53086,26.63957],[84.53385,26.64013],[84.54136,26.64756],[84.54408,26.65325],[84.57749,26.67063],[84.58077,26.66782],[84.58596,26.66764],[84.58786,26.67354],[84.5981,26.67627],[84.60148,26.68453],[84.59983,26.68737],[84.5939,26.68783],[84.59609,26.69305],[84.60029,26.69465],[84.60301,26.69366],[84.6059,26.68915],[84.60904,26.68755],[84.61132,26.6904],[84.60936,26.69261],[84.61904,26.69288],[84.62851,26.69107],[84.63674,26.69223],[84.64009,26.68889],[84.63893,26.68389],[84.64092,26.68065],[84.65238,26.67871],[84.65646,26.68128],[84.65925,26.68604],[84.65946,26.68974],[84.66316,26.68948],[84.67168,26.70062],[84.67957,26.69838],[84.68275,26.70317],[84.68863,26.70664],[84.69078,26.71363],[84.69483,26.71536],[84.69645,26.72055],[84.69718,26.7175],[84.70084,26.71507],[84.70379,26.7238],[84.70182,26.72979],[84.70451,26.73573],[84.70935,26.73746],[84.71283,26.74095],[84.72739,26.742],[84.72784,26.74323],[84.72235,26.74462],[84.72279,26.75001],[84.72613,26.75086],[84.72646,26.75275],[84.71802,26.75557],[84.72219,26.76571],[84.71899,26.76638],[84.71746,26.76921],[84.71648,26.77942],[84.7215,26.78962],[84.72923,26.79979],[84.7318,26.7995],[84.73296,26.79394],[84.73738,26.79801],[84.74372,26.8076],[84.74448,26.81667],[84.74124,26.81867],[84.74091,26.82101],[84.72549,26.82119],[84.71955,26.82528],[84.72045,26.82687],[84.72603,26.82455],[84.7252,26.83349],[84.73495,26.8333],[84.73522,26.83516],[84.73147,26.83651],[84.73367,26.84302],[84.73155,26.84472],[84.7283,26.84299],[84.72881,26.84475],[84.72627,26.84884],[84.71943,26.84569],[84.71871,26.84073],[84.71573,26.84207],[84.7158,26.84453],[84.71954,26.84705],[84.71095,26.85494],[84.71829,26.85468],[84.71883,26.85586],[84.71429,26.86035],[84.70386,26.86657],[84.70204,26.87428],[84.69159,26.87555],[84.68887,26.87765],[84.68883,26.88417],[84.68647,26.88512],[84.68821,26.89152],[84.68433,26.88978],[84.68665,26.89263],[84.68485,26.89409],[84.68057,26.89014],[84.68135,26.89767],[84.67983,26.8995],[84.68145,26.90261],[84.68028,26.90453],[84.68316,26.9115],[84.67825,26.91418],[84.687,26.92363],[84.68717,26.92222],[84.68996,26.92146],[84.68961,26.91413],[84.68651,26.91154],[84.68901,26.91115],[84.69173,26.91376],[84.6964,26.91435],[84.6952,26.91511],[84.69668,26.91734],[84.69519,26.91682],[84.69602,26.91958],[84.69988,26.92105],[84.698,26.92265],[84.70029,26.92569],[84.69806,26.92654],[84.69973,26.92846],[84.69678,26.92811],[84.69879,26.92967],[84.698,26.93398],[84.69914,26.93551],[84.69732,26.934],[84.69653,26.9358],[84.70086,26.93686],[84.69923,26.93756],[84.69903,26.94002],[84.70114,26.94103],[84.70701,26.93971],[84.71052,26.94245],[84.71301,26.94101],[84.71209,26.94454],[84.71321,26.94751],[84.72151,26.95461],[84.72492,26.95659],[84.73086,26.95383],[84.74105,26.95443],[84.74117,26.95953],[84.74826,26.96414],[84.74989,26.96848],[84.7446,26.97461],[84.74632,26.97658],[84.74493,26.9804],[84.74566,26.98354],[84.74774,26.98709],[84.7518,26.98803],[84.75438,26.99433],[84.75982,26.99847],[84.76022,27.00229],[84.73304,27.01423],[84.72149,27.01405],[84.71876,27.01754],[84.71729,27.01723],[84.71669,27.01972],[84.71468,27.0196],[84.71328,27.02175],[84.70962,27.02132],[84.70127,27.027],[84.68172,27.03153],[84.64283,27.04733],[84.64448,27.04867],[84.64308,27.05063],[84.64647,27.05206],[84.64442,27.05638],[84.64575,27.05852],[84.64286,27.05943],[84.64537,27.06383],[84.64311,27.06601],[84.64742,27.07105],[84.64616,27.07565],[84.64717,27.07643],[84.64859,27.07469],[84.64926,27.07714],[84.65194,27.07846],[84.65293,27.07755],[84.65285,27.08069],[84.65587,27.07921],[84.65845,27.07986],[84.65832,27.08104],[84.6541,27.08181],[84.65464,27.08388],[84.65758,27.0827],[84.66268,27.08701],[84.66472,27.08632],[84.66304,27.08936],[84.66596,27.08759],[84.66657,27.09054],[84.66884,27.08968],[84.67032,27.09105],[84.66803,27.09274],[84.66379,27.09238],[84.66438,27.09459],[84.66717,27.09337],[84.66979,27.09818],[84.67282,27.09538],[84.67449,27.09591],[84.67562,27.10381],[84.67347,27.10607],[84.67486,27.10886],[84.6706,27.10718],[84.66977,27.10955],[84.6724,27.11398],[84.67684,27.11519],[84.67542,27.12305],[84.67861,27.12626],[84.67933,27.13225],[84.67759,27.13316],[84.68384,27.14355],[84.68344,27.15048],[84.68049,27.15175],[84.68264,27.15241],[84.68678,27.15837],[84.6846,27.16085],[84.68177,27.15924],[84.67711,27.16263],[84.6776,27.16639],[84.68116,27.16889],[84.67988,27.17044],[84.67617,27.16935],[84.67565,27.17124],[84.68343,27.17749],[84.6819,27.18025],[84.68572,27.18105],[84.68349,27.1823],[84.68395,27.1843],[84.68113,27.18388],[84.68183,27.18583],[84.67969,27.18517],[84.68201,27.18832],[84.68351,27.19625],[84.68026,27.20014],[84.68557,27.20616],[84.68565,27.20859],[84.68718,27.2089],[84.6847,27.21285],[84.68689,27.2133],[84.68754,27.21521],[84.69114,27.21482],[84.68935,27.21912],[84.68973,27.22266],[84.68684,27.22389],[84.685,27.23136],[84.64762,27.29862],[84.62189,27.33693],[84.61845,27.33773],[84.60643,27.33567],[84.60143,27.33865],[84.58656,27.34106],[84.56639,27.34725],[84.53347,27.35012],[84.52044,27.35368],[84.51841,27.3521],[84.51384,27.35267],[84.4857,27.35827],[84.47636,27.36232],[84.47249,27.35544],[84.47034,27.35471],[84.46618,27.35654],[84.4649,27.35945],[84.44688,27.36351],[84.44423,27.36838],[84.44044,27.37048],[84.43574,27.36916],[84.42444,27.37182],[84.42088,27.36969],[84.41354,27.37074],[84.40986,27.36849],[84.40592,27.37043],[84.39926,27.36922],[84.39655,27.37046],[84.39188,27.36799],[84.3881,27.37193],[84.37361,27.3766],[84.37012,27.37423],[84.36429,27.37319],[84.36303,27.37447],[84.3608,27.37344],[84.35714,27.37477],[84.34744,27.37461],[84.33792,27.37784],[84.33311,27.37727],[84.32807,27.38066],[84.31752,27.3819],[84.31211,27.38621],[84.30495,27.38786],[84.30049,27.39066],[84.2973,27.38881],[84.29537,27.38489],[84.29238,27.38481],[84.28555,27.39106],[84.28311,27.39653],[84.27691,27.39575],[84.27587,27.40148],[84.27956,27.40666],[84.2775,27.40914],[84.27834,27.41581],[84.27332,27.42151],[84.27305,27.42846],[84.26793,27.43203],[84.26683,27.43457],[84.26181,27.43553],[84.25852,27.43919],[84.26009,27.44557],[84.25555,27.44908],[84.25426,27.45405],[84.24607,27.45307],[84.24234,27.4547],[84.2397,27.45245],[84.23083,27.45628],[84.22683,27.45113],[84.22063,27.44811],[84.22071,27.44118],[84.20893,27.4426],[84.20614,27.44672],[84.2077,27.44902],[84.20678,27.45254],[84.208,27.4563],[84.20422,27.45946],[84.20947,27.46561],[84.20543,27.47043],[84.19498,27.47354],[84.19145,27.47002],[84.1869,27.47009],[84.1795,27.47579],[84.17576,27.47415],[84.171,27.47541],[84.1709,27.47923],[84.16692,27.47984],[84.16691,27.48187],[84.16287,27.48416],[84.15428,27.48398],[84.15216,27.48661],[84.14913,27.48591],[84.14744,27.49388],[84.14456,27.4964],[84.15021,27.5009],[84.14844,27.50304],[84.1498,27.5043],[84.14944,27.50905],[84.15186,27.51044],[84.15009,27.51268],[84.15137,27.51667],[84.14586,27.51866],[84.14364,27.51694],[84.13872,27.51774],[84.13013,27.51179],[84.12419,27.51084],[84.11726,27.51339],[84.11684,27.51917],[84.11098,27.51943],[84.10906,27.52112]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"212","area_level":"District","area_name":"Patna","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.01209,25.73253],[85.0,25.73244],[84.99764,25.72984],[84.99417,25.73151],[84.98007,25.72447],[84.97632,25.72551],[84.97169,25.72202],[84.96926,25.71769],[84.96949,25.711],[84.96705,25.71029],[84.96547,25.7129],[84.96019,25.71243],[84.95008,25.70445],[84.93862,25.70907],[84.93782,25.70217],[84.92634,25.70299],[84.92472,25.70851],[84.91927,25.70765],[84.9147,25.71026],[84.90271,25.70923],[84.90334,25.7204],[84.87746,25.71141],[84.87504,25.71468],[84.87448,25.71934],[84.86502,25.71792],[84.8599,25.71067],[84.85284,25.7088],[84.84888,25.70135],[84.85137,25.69812],[84.84793,25.69024],[84.84724,25.67896],[84.83219,25.68008],[84.82817,25.67866],[84.82338,25.67323],[84.82249,25.6671],[84.83311,25.65987],[84.84172,25.65785],[84.82887,25.64772],[84.82573,25.6387],[84.82433,25.63827],[84.82467,25.63352],[84.82168,25.62224],[84.82674,25.6218],[84.83215,25.6237],[84.81837,25.60818],[84.81516,25.59343],[84.8224,25.59067],[84.82012,25.5817],[84.81601,25.57566],[84.8087,25.56958],[84.80342,25.56768],[84.7959,25.56777],[84.79729,25.56501],[84.79421,25.56023],[84.77202,25.54027],[84.75557,25.50422],[84.7565,25.48958],[84.76142,25.48364],[84.76638,25.47156],[84.77421,25.46083],[84.77908,25.4488],[84.77226,25.43852],[84.77346,25.43542],[84.76797,25.42621],[84.76656,25.42049],[84.75445,25.40766],[84.74783,25.38224],[84.73486,25.36181],[84.73427,25.35381],[84.72661,25.33387],[84.71457,25.32015],[84.70204,25.31498],[84.70838,25.30495],[84.7186,25.29929],[84.71823,25.29729],[84.72605,25.29697],[84.72667,25.28608],[84.70798,25.2824],[84.70668,25.27298],[84.69885,25.27102],[84.6922,25.2725],[84.68761,25.26432],[84.68693,25.2599],[84.69743,25.25498],[84.70328,25.25613],[84.7043,25.25782],[84.70241,25.259],[84.70545,25.26145],[84.70916,25.25983],[84.71244,25.26214],[84.72188,25.26252],[84.72428,25.26079],[84.72364,25.25759],[84.72507,25.25633],[84.73718,25.25359],[84.73785,25.26308],[84.74245,25.26878],[84.74692,25.26988],[84.7478,25.26748],[84.75072,25.26704],[84.75039,25.26481],[84.75394,25.26474],[84.75392,25.26341],[84.76453,25.26393],[84.76619,25.257],[84.77297,25.25779],[84.77621,25.25565],[84.78062,25.25896],[84.78588,25.2588],[84.78641,25.25687],[84.79033,25.25558],[84.79025,25.24584],[84.78729,25.23822],[84.77554,25.23683],[84.77448,25.23127],[84.77283,25.23036],[84.76312,25.2305],[84.76217,25.23353],[84.75861,25.2353],[84.75786,25.23847],[84.75,25.23682],[84.74946,25.22969],[84.74274,25.22628],[84.74114,25.22396],[84.72975,25.22277],[84.72248,25.21679],[84.72328,25.21565],[84.72188,25.21429],[84.729,25.21286],[84.72615,25.20532],[84.73447,25.20326],[84.73743,25.20791],[84.74243,25.21116],[84.7432,25.21422],[84.74877,25.21382],[84.74879,25.21569],[84.75411,25.21622],[84.75521,25.22079],[84.76707,25.21991],[84.77454,25.22487],[84.78779,25.22229],[84.79205,25.22381],[84.80522,25.22],[84.80693,25.21665],[84.81181,25.21696],[84.81345,25.22114],[84.82053,25.22539],[84.82584,25.22583],[84.8288,25.23],[84.83571,25.23021],[84.8374,25.23439],[84.84126,25.23628],[84.84743,25.23516],[84.84667,25.23128],[84.85641,25.23014],[84.85641,25.22874],[84.85948,25.22798],[84.8597,25.22473],[84.86328,25.22449],[84.86499,25.22018],[84.86734,25.22027],[84.86896,25.2234],[84.87076,25.22373],[84.86909,25.23582],[84.87428,25.23915],[84.87481,25.24229],[84.87932,25.24584],[84.87938,25.24805],[84.87457,25.25243],[84.88387,25.25258],[84.885,25.25466],[84.89128,25.25704],[84.8937,25.26273],[84.88858,25.2682],[84.89007,25.27486],[84.89317,25.28082],[84.89762,25.28406],[84.90042,25.28411],[84.90397,25.2893],[84.90895,25.29122],[84.91378,25.29008],[84.91575,25.29249],[84.91887,25.29209],[84.92058,25.29372],[84.92396,25.28989],[84.92462,25.28664],[84.91756,25.27572],[84.92539,25.26919],[84.93617,25.2682],[84.93665,25.27014],[84.93346,25.27062],[84.93513,25.27352],[84.93807,25.27317],[84.93891,25.27452],[84.93525,25.27703],[84.93558,25.28075],[84.93799,25.28115],[84.94335,25.28954],[84.94737,25.29097],[84.94839,25.29317],[84.95108,25.29016],[84.96169,25.28924],[84.96702,25.28991],[84.96947,25.29272],[84.97671,25.29328],[84.97893,25.28969],[84.98191,25.29076],[84.98304,25.30772],[84.99293,25.30925],[84.99478,25.31925],[85.00402,25.31682],[85.00296,25.31025],[85.00506,25.30343],[85.00491,25.2941],[85.01503,25.29325],[85.01768,25.28841],[85.01757,25.28307],[85.02061,25.28277],[85.01731,25.27196],[85.00865,25.27109],[85.00847,25.26652],[85.00998,25.26484],[85.0186,25.26448],[85.02034,25.26994],[85.0302,25.27],[85.0303,25.27379],[85.03239,25.27647],[85.03948,25.2766],[85.03967,25.28157],[85.04307,25.28013],[85.04625,25.28429],[85.05379,25.28236],[85.05651,25.28452],[85.05597,25.28795],[85.05785,25.28879],[85.06244,25.28736],[85.06312,25.2836],[85.07301,25.28122],[85.07547,25.27834],[85.0752,25.27412],[85.07688,25.27348],[85.07834,25.27468],[85.07806,25.27948],[85.08155,25.27983],[85.08196,25.28198],[85.08465,25.2836],[85.08324,25.2872],[85.09241,25.28806],[85.0979,25.2825],[85.104,25.27956],[85.10435,25.27049],[85.10736,25.27088],[85.10762,25.27288],[85.11198,25.27008],[85.11751,25.27429],[85.11738,25.27715],[85.11543,25.2807],[85.11053,25.28276],[85.10744,25.28871],[85.10962,25.2916],[85.10907,25.29369],[85.11799,25.29456],[85.11826,25.29801],[85.12113,25.29841],[85.12247,25.31403],[85.14944,25.31131],[85.14928,25.30796],[85.1609,25.30299],[85.16853,25.30583],[85.17063,25.30811],[85.17487,25.3059],[85.1729,25.30773],[85.17456,25.31077],[85.17328,25.31606],[85.17801,25.31655],[85.1793,25.32062],[85.18268,25.32092],[85.18,25.32345],[85.18238,25.32545],[85.18265,25.33],[85.18096,25.3324],[85.186,25.33422],[85.18782,25.33673],[85.18663,25.33817],[85.18764,25.34991],[85.18623,25.35546],[85.18423,25.35593],[85.18534,25.36632],[85.18405,25.37358],[85.18662,25.37463],[85.18607,25.382],[85.18188,25.3829],[85.18068,25.38529],[85.17577,25.3855],[85.17626,25.38845],[85.18086,25.39048],[85.17952,25.40275],[85.19175,25.40172],[85.1928,25.40714],[85.20441,25.40894],[85.20647,25.41694],[85.22268,25.41365],[85.22549,25.41454],[85.22587,25.403],[85.23691,25.40309],[85.24294,25.40523],[85.24522,25.41321],[85.25252,25.41418],[85.252,25.39847],[85.25312,25.39647],[85.25789,25.40018],[85.2653,25.40066],[85.27093,25.39975],[85.2728,25.39689],[85.27308,25.40359],[85.28049,25.40319],[85.28103,25.3987],[85.28923,25.39816],[85.28783,25.39282],[85.28923,25.3943],[85.29735,25.39272],[85.30396,25.39403],[85.3038,25.39858],[85.29913,25.39856],[85.29958,25.40383],[85.30263,25.40324],[85.30198,25.40604],[85.30755,25.40593],[85.30723,25.40183],[85.3091,25.40126],[85.31343,25.40137],[85.31552,25.40589],[85.32582,25.40315],[85.32531,25.40159],[85.334,25.40164],[85.33535,25.40494],[85.33867,25.40612],[85.33908,25.41004],[85.3453,25.41064],[85.34907,25.40938],[85.34775,25.40358],[85.36001,25.40177],[85.3604,25.40895],[85.36281,25.40888],[85.36575,25.41243],[85.36611,25.41866],[85.37301,25.43037],[85.37933,25.42775],[85.38354,25.42842],[85.38479,25.43061],[85.38759,25.42937],[85.38948,25.43189],[85.39571,25.4307],[85.39708,25.4337],[85.39902,25.43286],[85.40096,25.43987],[85.40127,25.45869],[85.41318,25.45782],[85.41249,25.46213],[85.4149,25.46143],[85.41853,25.45549],[85.4283,25.45075],[85.42961,25.44611],[85.43415,25.44616],[85.43271,25.4425],[85.43667,25.4483],[85.43931,25.44702],[85.43923,25.44112],[85.44116,25.43974],[85.44311,25.4404],[85.44421,25.43851],[85.44655,25.43945],[85.4475,25.44291],[85.45395,25.44281],[85.45637,25.44452],[85.45839,25.44094],[85.46695,25.438],[85.47065,25.4378],[85.47465,25.44034],[85.4751,25.4358],[85.47857,25.43817],[85.48277,25.43655],[85.48343,25.44098],[85.48029,25.44049],[85.4796,25.44281],[85.4822,25.44463],[85.48806,25.44501],[85.48931,25.43972],[85.49271,25.43856],[85.49042,25.4354],[85.49215,25.43278],[85.4897,25.42977],[85.49454,25.42874],[85.49711,25.42554],[85.50196,25.42547],[85.50351,25.42918],[85.50683,25.4265],[85.51308,25.42551],[85.5184,25.4224],[85.52174,25.42351],[85.52266,25.4265],[85.5246,25.42652],[85.53198,25.42425],[85.5284,25.42002],[85.52948,25.41814],[85.5332,25.41856],[85.53584,25.42247],[85.5403,25.41971],[85.54426,25.42129],[85.54834,25.41762],[85.5515,25.42214],[85.5571,25.42424],[85.55955,25.42085],[85.55618,25.41502],[85.5579,25.41333],[85.56386,25.42111],[85.5669,25.42128],[85.57101,25.41897],[85.57601,25.4219],[85.57769,25.40222],[85.57642,25.39597],[85.57309,25.39586],[85.57311,25.39478],[85.57958,25.39415],[85.58266,25.3913],[85.58706,25.38015],[85.58948,25.38292],[85.59269,25.37862],[85.59538,25.38788],[85.59897,25.3888],[85.60088,25.38565],[85.60404,25.38449],[85.60476,25.38151],[85.62587,25.37918],[85.62494,25.36676],[85.62867,25.36638],[85.63667,25.36159],[85.63086,25.34939],[85.63373,25.34924],[85.63523,25.35294],[85.63992,25.35285],[85.64005,25.34712],[85.64233,25.34421],[85.64128,25.34265],[85.64655,25.34211],[85.64677,25.33866],[85.64561,25.33259],[85.64282,25.33393],[85.6378,25.33246],[85.63803,25.33106],[85.62824,25.33098],[85.6277,25.31972],[85.63752,25.31952],[85.63818,25.32155],[85.6415,25.32279],[85.6435,25.32124],[85.64042,25.31361],[85.64743,25.31384],[85.64797,25.31097],[85.65021,25.31032],[85.65489,25.30987],[85.65696,25.31252],[85.65865,25.32587],[85.65799,25.3281],[85.65441,25.32988],[85.65569,25.33333],[85.66107,25.33291],[85.66407,25.33713],[85.66704,25.33671],[85.66843,25.34397],[85.67763,25.34253],[85.68546,25.3435],[85.68658,25.35244],[85.70116,25.34949],[85.70383,25.35885],[85.70846,25.35566],[85.70904,25.35166],[85.71062,25.35213],[85.71208,25.35302],[85.71183,25.36262],[85.71955,25.36162],[85.71938,25.35381],[85.72197,25.3536],[85.72317,25.35138],[85.71997,25.34836],[85.72063,25.346],[85.7244,25.34546],[85.72956,25.34777],[85.73059,25.33331],[85.73989,25.33263],[85.74096,25.31953],[85.75152,25.3178],[85.75268,25.31521],[85.75991,25.31313],[85.76095,25.31704],[85.76239,25.3171],[85.76671,25.31689],[85.77072,25.31419],[85.78143,25.31354],[85.78084,25.30825],[85.78202,25.3073],[85.7876,25.30676],[85.78821,25.30947],[85.79855,25.30678],[85.8025,25.30907],[85.80721,25.30658],[85.80997,25.29479],[85.80899,25.28804],[85.83,25.28845],[85.83392,25.28723],[85.84109,25.29152],[85.86495,25.29376],[85.86475,25.27905],[85.89118,25.27911],[85.89235,25.28771],[85.8911,25.29063],[85.89503,25.29263],[85.90714,25.29133],[85.91023,25.29603],[85.91321,25.29737],[85.91465,25.29717],[85.91414,25.29428],[85.91556,25.29347],[85.92637,25.29835],[85.93195,25.29879],[85.93152,25.32151],[85.94988,25.3198],[85.95385,25.31718],[86.00043,25.30699],[86.00005,25.30353],[86.00737,25.30249],[86.00618,25.2976],[86.02025,25.29642],[86.0201,25.30676],[86.03162,25.30877],[86.03359,25.32024],[86.0417,25.32984],[86.04027,25.33388],[86.05326,25.33946],[86.05835,25.3331],[86.06773,25.33379],[86.06846,25.33518],[86.06663,25.35056],[86.05999,25.35896],[86.05224,25.37441],[86.04764,25.38452],[86.04668,25.39163],[86.03236,25.39181],[86.02851,25.3629],[86.02337,25.36228],[86.0164,25.36448],[86.01281,25.36265],[86.00163,25.37295],[86.00388,25.38005],[85.96316,25.40404],[85.95517,25.40973],[85.95749,25.41282],[85.953,25.41368],[85.95032,25.40777],[85.93928,25.40863],[85.91579,25.42039],[85.90682,25.4313],[85.90024,25.42027],[85.8927,25.42554],[85.88939,25.4202],[85.88687,25.42175],[85.8731,25.4394],[85.87871,25.45041],[85.8781,25.46545],[85.88083,25.47252],[85.88205,25.47358],[85.88414,25.47193],[85.89523,25.4592],[85.90457,25.45785],[85.90615,25.45926],[85.90257,25.46782],[85.89663,25.47123],[85.89262,25.47828],[85.88939,25.49355],[85.88979,25.5],[85.83836,25.51762],[85.83746,25.52643],[85.80933,25.54433],[85.78167,25.54817],[85.77678,25.54541],[85.76344,25.54314],[85.74545,25.53461],[85.73128,25.5211],[85.73089,25.52543],[85.72374,25.52399],[85.72242,25.52689],[85.72042,25.52689],[85.71306,25.5105],[85.70448,25.50065],[85.70133,25.50026],[85.69491,25.48448],[85.69237,25.48658],[85.67924,25.47636],[85.67758,25.49476],[85.65411,25.49205],[85.65255,25.49519],[85.65453,25.49906],[85.65423,25.50222],[85.64783,25.5006],[85.64696,25.49867],[85.65252,25.48203],[85.65434,25.4699],[85.65489,25.46092],[85.65192,25.46066],[85.64115,25.46021],[85.6281,25.46339],[85.62042,25.46333],[85.62271,25.46759],[85.59558,25.47419],[85.61586,25.48318],[85.62039,25.48161],[85.61809,25.48551],[85.59956,25.48918],[85.58132,25.48566],[85.54451,25.48447],[85.54605,25.50389],[85.53785,25.50249],[85.52867,25.504],[85.52095,25.4999],[85.5137,25.50324],[85.50672,25.49385],[85.50512,25.48341],[85.49774,25.48566],[85.49285,25.49384],[85.48237,25.49423],[85.47965,25.49653],[85.4722,25.49591],[85.46695,25.49977],[85.46294,25.49973],[85.44957,25.50513],[85.44673,25.51164],[85.45138,25.51811],[85.44449,25.51697],[85.43258,25.51876],[85.42988,25.51299],[85.43292,25.5107],[85.42785,25.49974],[85.43083,25.49952],[85.42959,25.49612],[85.41913,25.49973],[85.41112,25.49973],[85.40712,25.50369],[85.40227,25.50467],[85.39433,25.50499],[85.39117,25.50365],[85.38909,25.5],[85.39195,25.49947],[85.3919,25.49719],[85.37754,25.49968],[85.36688,25.50571],[85.3111,25.51142],[85.30554,25.51415],[85.29491,25.52547],[85.29038,25.53579],[85.2729,25.56373],[85.25696,25.58036],[85.24298,25.59934],[85.23317,25.60483],[85.18991,25.62214],[85.1746,25.62512],[85.13726,25.62576],[85.12559,25.63121],[85.11107,25.64742],[85.10291,25.66156],[85.09808,25.6815],[85.08178,25.71114],[85.06714,25.71182],[85.04079,25.72139],[85.03681,25.72361],[85.02971,25.73134],[85.01209,25.73253]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"213","area_level":"District","area_name":"Purbi Champaran","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.82365,27.02045],[84.81674,27.02058],[84.81334,27.01818],[84.81175,27.02048],[84.81208,27.01567],[84.81055,27.01841],[84.80854,27.01806],[84.80684,27.01415],[84.8108,27.01443],[84.80983,27.0109],[84.80802,27.01209],[84.80698,27.01082],[84.80685,27.008],[84.80806,27.00762],[84.80152,27.00495],[84.80047,27.00088],[84.79725,27.00422],[84.79356,26.99584],[84.79058,26.99722],[84.79195,26.99791],[84.79117,26.99958],[84.78858,26.99694],[84.78831,26.99868],[84.7862,26.99851],[84.78776,27.00315],[84.78697,27.00523],[84.78899,27.00891],[84.78679,27.00904],[84.78594,27.011],[84.7857,27.00816],[84.7844,27.00784],[84.78274,27.01411],[84.77314,27.01783],[84.76489,27.01315],[84.75839,27.00356],[84.76022,27.00229],[84.75982,26.99847],[84.75438,26.99433],[84.7518,26.98803],[84.74774,26.98709],[84.74566,26.98354],[84.74493,26.9804],[84.74632,26.97658],[84.7446,26.97461],[84.74989,26.96848],[84.74826,26.96414],[84.74117,26.95953],[84.74105,26.95443],[84.73086,26.95383],[84.72492,26.95659],[84.72151,26.95461],[84.71321,26.94751],[84.71209,26.94454],[84.71301,26.94101],[84.71052,26.94245],[84.70701,26.93971],[84.70114,26.94103],[84.69903,26.94002],[84.69923,26.93756],[84.70086,26.93686],[84.69653,26.9358],[84.69732,26.934],[84.69914,26.93551],[84.698,26.93398],[84.69879,26.92967],[84.69678,26.92811],[84.69973,26.92846],[84.69806,26.92654],[84.70029,26.92569],[84.698,26.92265],[84.69988,26.92105],[84.69602,26.91958],[84.69519,26.91682],[84.69668,26.91734],[84.6952,26.91511],[84.6964,26.91435],[84.69173,26.91376],[84.68901,26.91115],[84.68651,26.91154],[84.68961,26.91413],[84.68996,26.92146],[84.68717,26.92222],[84.687,26.92363],[84.67825,26.91418],[84.68316,26.9115],[84.68028,26.90453],[84.68145,26.90261],[84.67983,26.8995],[84.68135,26.89767],[84.68057,26.89014],[84.68485,26.89409],[84.68665,26.89263],[84.68433,26.88978],[84.68821,26.89152],[84.68647,26.88512],[84.68883,26.88417],[84.68887,26.87765],[84.69159,26.87555],[84.70204,26.87428],[84.70386,26.86657],[84.71429,26.86035],[84.71883,26.85586],[84.71829,26.85468],[84.71095,26.85494],[84.71954,26.84705],[84.7158,26.84453],[84.71573,26.84207],[84.71871,26.84073],[84.71943,26.84569],[84.72627,26.84884],[84.72881,26.84475],[84.7283,26.84299],[84.73155,26.84472],[84.73367,26.84302],[84.73147,26.83651],[84.73522,26.83516],[84.73495,26.8333],[84.7252,26.83349],[84.72603,26.82455],[84.72045,26.82687],[84.71955,26.82528],[84.72549,26.82119],[84.74091,26.82101],[84.74124,26.81867],[84.74448,26.81667],[84.74372,26.8076],[84.73738,26.79801],[84.73296,26.79394],[84.7318,26.7995],[84.72923,26.79979],[84.7215,26.78962],[84.71648,26.77942],[84.71746,26.76921],[84.71899,26.76638],[84.72219,26.76571],[84.71802,26.75557],[84.72646,26.75275],[84.72613,26.75086],[84.72279,26.75001],[84.72235,26.74462],[84.72784,26.74323],[84.72739,26.742],[84.71283,26.74095],[84.70935,26.73746],[84.70451,26.73573],[84.70182,26.72979],[84.70379,26.7238],[84.70084,26.71507],[84.69718,26.7175],[84.69645,26.72055],[84.69483,26.71536],[84.69078,26.71363],[84.68863,26.70664],[84.68275,26.70317],[84.67957,26.69838],[84.67168,26.70062],[84.66316,26.68948],[84.65946,26.68974],[84.65925,26.68604],[84.65646,26.68128],[84.65238,26.67871],[84.64092,26.68065],[84.63893,26.68389],[84.64009,26.68889],[84.63674,26.69223],[84.62851,26.69107],[84.61904,26.69288],[84.60936,26.69261],[84.61132,26.6904],[84.60904,26.68755],[84.6059,26.68915],[84.60301,26.69366],[84.60029,26.69465],[84.59654,26.69336],[84.5939,26.68783],[84.59983,26.68737],[84.60148,26.68453],[84.5981,26.67627],[84.58786,26.67354],[84.58596,26.66764],[84.58077,26.66782],[84.57749,26.67063],[84.54408,26.65325],[84.54136,26.64756],[84.53385,26.64013],[84.53086,26.63957],[84.53165,26.6363],[84.52721,26.62808],[84.52105,26.62837],[84.51997,26.62462],[84.52206,26.62139],[84.51997,26.61566],[84.52289,26.60883],[84.52612,26.60618],[84.52579,26.60055],[84.52435,26.59888],[84.52269,26.59907],[84.52096,26.60249],[84.51849,26.6023],[84.51366,26.5972],[84.50513,26.6024],[84.49617,26.60074],[84.4907,26.60321],[84.4848,26.59348],[84.48855,26.58309],[84.49692,26.57067],[84.50737,26.57055],[84.51213,26.56784],[84.51514,26.55649],[84.51055,26.53325],[84.51719,26.53047],[84.51928,26.52679],[84.52584,26.523],[84.54023,26.50846],[84.54188,26.50001],[84.54477,26.49625],[84.53832,26.48373],[84.55449,26.48213],[84.55587,26.48766],[84.56186,26.49534],[84.56856,26.49168],[84.56786,26.4904],[84.5713,26.48749],[84.57782,26.48626],[84.57346,26.47006],[84.59055,26.45757],[84.58959,26.4498],[84.59337,26.44837],[84.5904,26.446],[84.59328,26.44269],[84.59015,26.43736],[84.59664,26.43539],[84.61191,26.44369],[84.61526,26.44833],[84.62652,26.4518],[84.63022,26.45741],[84.64121,26.46186],[84.65545,26.46448],[84.65722,26.4631],[84.65689,26.46141],[84.66668,26.45707],[84.67992,26.4434],[84.68714,26.43849],[84.69542,26.43361],[84.69689,26.4348],[84.70676,26.43129],[84.71318,26.42591],[84.7155,26.41465],[84.71167,26.41452],[84.71727,26.4072],[84.7196,26.39947],[84.72198,26.39976],[84.72369,26.39742],[84.72352,26.39346],[84.73018,26.37766],[84.73538,26.37873],[84.73034,26.37535],[84.73625,26.37079],[84.7512,26.35414],[84.76212,26.34654],[84.76794,26.33729],[84.77444,26.34197],[84.78536,26.33709],[84.79975,26.32601],[84.7999,26.31789],[84.80123,26.31749],[84.807,26.32293],[84.80937,26.31311],[84.809,26.29478],[84.80614,26.28575],[84.82561,26.282],[84.83215,26.28633],[84.83641,26.27939],[84.84921,26.27311],[84.85002,26.2703],[84.85748,26.26988],[84.86895,26.25676],[84.87182,26.25697],[84.87744,26.26167],[84.88094,26.27129],[84.88177,26.2816],[84.88806,26.29897],[84.89357,26.31142],[84.89735,26.31463],[84.89612,26.31694],[84.90221,26.32598],[84.90967,26.32349],[84.91912,26.32662],[84.92068,26.32843],[84.9406,26.32647],[84.94472,26.3277],[84.98012,26.32305],[84.98957,26.33029],[85.0,26.33295],[85.00683,26.33087],[85.00806,26.32899],[85.01376,26.32837],[85.01558,26.32237],[85.02214,26.31878],[85.02644,26.32415],[85.03157,26.32317],[85.03522,26.33357],[85.0422,26.33482],[85.04506,26.34206],[85.04768,26.33999],[85.05186,26.3396],[85.05643,26.34262],[85.06037,26.34268],[85.0677,26.33612],[85.0708,26.32867],[85.07706,26.33269],[85.08107,26.32457],[85.0914,26.32532],[85.09724,26.32058],[85.09927,26.32498],[85.10114,26.32566],[85.11168,26.31422],[85.11401,26.31385],[85.1189,26.31702],[85.12237,26.31532],[85.12358,26.31212],[85.12608,26.31317],[85.12608,26.31479],[85.12859,26.31504],[85.13009,26.31197],[85.13621,26.31298],[85.13692,26.31772],[85.1405,26.31952],[85.14228,26.32308],[85.1463,26.322],[85.14654,26.31864],[85.1494,26.31554],[85.15837,26.3171],[85.16129,26.32095],[85.16422,26.32955],[85.16777,26.32826],[85.17269,26.32972],[85.17658,26.32901],[85.17346,26.337],[85.17777,26.33943],[85.1794,26.33539],[85.18157,26.3374],[85.17837,26.33945],[85.17984,26.34087],[85.18458,26.33845],[85.18418,26.33171],[85.18741,26.32754],[85.18605,26.32437],[85.18003,26.32288],[85.18065,26.32072],[85.18873,26.32029],[85.19066,26.3122],[85.19153,26.31719],[85.18921,26.32174],[85.1911,26.32835],[85.19315,26.32953],[85.19598,26.32511],[85.1943,26.32223],[85.19388,26.3133],[85.1982,26.31333],[85.19936,26.32034],[85.20266,26.3199],[85.20351,26.31251],[85.20187,26.30494],[85.19761,26.30267],[85.18978,26.30412],[85.18759,26.30132],[85.19128,26.29512],[85.19524,26.29327],[85.20031,26.2933],[85.20429,26.30171],[85.20655,26.30266],[85.20605,26.29825],[85.1991,26.28815],[85.20064,26.2853],[85.20444,26.28556],[85.20378,26.29129],[85.20837,26.29601],[85.22025,26.2943],[85.2202,26.30112],[85.22191,26.30407],[85.22682,26.29997],[85.23159,26.3007],[85.23224,26.30412],[85.22929,26.30714],[85.23139,26.30863],[85.2364,26.30443],[85.23626,26.2996],[85.24176,26.29963],[85.24917,26.30216],[85.24802,26.29876],[85.25102,26.29692],[85.25718,26.29658],[85.2579,26.29874],[85.26091,26.29867],[85.2625,26.30344],[85.25643,26.30484],[85.25647,26.32643],[85.26039,26.33201],[85.27193,26.32726],[85.27406,26.33494],[85.2703,26.33493],[85.26554,26.3395],[85.26466,26.34232],[85.25738,26.34482],[85.25499,26.34244],[85.24817,26.34342],[85.24612,26.33872],[85.24408,26.3393],[85.24304,26.34264],[85.23818,26.34387],[85.23839,26.3487],[85.23004,26.35388],[85.22489,26.35166],[85.22359,26.34951],[85.22205,26.34988],[85.21806,26.35612],[85.21892,26.36478],[85.22026,26.36529],[85.22056,26.36866],[85.22474,26.37125],[85.23465,26.36715],[85.24074,26.3691],[85.24195,26.3641],[85.24689,26.35915],[85.24607,26.35487],[85.24775,26.35654],[85.25398,26.35007],[85.2577,26.34947],[85.26539,26.35252],[85.2807,26.34863],[85.2801,26.35435],[85.2845,26.3584],[85.2878,26.35666],[85.29413,26.35625],[85.29569,26.35765],[85.29211,26.36219],[85.28716,26.36195],[85.28707,26.36401],[85.28276,26.36244],[85.279,26.36492],[85.2812,26.37013],[85.29074,26.37169],[85.28829,26.37935],[85.2848,26.37977],[85.28324,26.38158],[85.28435,26.38663],[85.28214,26.3896],[85.28278,26.39571],[85.27866,26.39688],[85.27774,26.39402],[85.27398,26.39328],[85.27453,26.38725],[85.2715,26.38832],[85.26371,26.3927],[85.26325,26.4013],[85.25264,26.39992],[85.25009,26.40274],[85.25027,26.40835],[85.25884,26.41202],[85.25884,26.41374],[85.25388,26.41858],[85.25056,26.41738],[85.24967,26.4188],[85.24385,26.41051],[85.24268,26.41287],[85.24538,26.41816],[85.24266,26.42089],[85.2375,26.41994],[85.23559,26.42088],[85.23467,26.4239],[85.233,26.42395],[85.23064,26.41663],[85.23293,26.41437],[85.23103,26.41412],[85.22648,26.41782],[85.22754,26.41975],[85.22633,26.4253],[85.20604,26.42644],[85.20863,26.43422],[85.21668,26.43207],[85.21172,26.44172],[85.20471,26.44699],[85.20642,26.44831],[85.21299,26.44634],[85.21395,26.44993],[85.20963,26.45418],[85.19919,26.45763],[85.20046,26.46234],[85.19876,26.46695],[85.18929,26.4694],[85.18796,26.47201],[85.18388,26.47308],[85.18615,26.47892],[85.17843,26.48764],[85.18184,26.49169],[85.18111,26.49662],[85.1847,26.49887],[85.20717,26.49995],[85.21033,26.5022],[85.21668,26.50323],[85.21697,26.50455],[85.2214,26.50406],[85.22296,26.50559],[85.22384,26.50874],[85.21939,26.51938],[85.22308,26.52355],[85.22293,26.53142],[85.2178,26.53558],[85.21679,26.53854],[85.22078,26.54907],[85.22431,26.55134],[85.23308,26.5495],[85.23105,26.55699],[85.23459,26.56105],[85.23953,26.56168],[85.23348,26.56654],[85.2324,26.5714],[85.24775,26.5732],[85.26089,26.58733],[85.26195,26.59335],[85.25935,26.61225],[85.26678,26.61198],[85.26954,26.61622],[85.26811,26.61855],[85.27005,26.62109],[85.27039,26.62959],[85.27602,26.63076],[85.2744,26.63312],[85.26855,26.63511],[85.26698,26.6398],[85.26455,26.64086],[85.26334,26.64656],[85.27108,26.65014],[85.27064,26.65277],[85.26689,26.65282],[85.26686,26.65727],[85.26102,26.6607],[85.25147,26.67072],[85.24784,26.66936],[85.24813,26.66361],[85.24413,26.65999],[85.23914,26.6643],[85.23687,26.66855],[85.23951,26.67911],[85.2466,26.68458],[85.25292,26.68536],[85.25565,26.69427],[85.25777,26.69379],[85.25922,26.69089],[85.26094,26.69408],[85.26153,26.6991],[85.25952,26.70469],[85.26093,26.70963],[85.25805,26.71121],[85.25822,26.71616],[85.25564,26.71844],[85.25647,26.72099],[85.25902,26.7201],[85.26095,26.72236],[85.25848,26.72654],[85.25949,26.73057],[85.25168,26.73586],[85.25572,26.7409],[85.25838,26.75143],[85.25401,26.75233],[85.25443,26.75807],[85.23999,26.76196],[85.23249,26.7624],[85.21262,26.758],[85.20671,26.76091],[85.20106,26.76866],[85.19726,26.76967],[85.1915,26.78207],[85.19467,26.7843],[85.1927,26.79074],[85.18656,26.7909],[85.18655,26.79531],[85.18134,26.79501],[85.1794,26.79803],[85.18255,26.80033],[85.17674,26.80962],[85.17703,26.81496],[85.18925,26.82753],[85.19281,26.83851],[85.19092,26.84752],[85.19306,26.86099],[85.19192,26.86878],[85.18984,26.87004],[85.16513,26.86861],[85.13995,26.87112],[85.13497,26.86773],[85.12381,26.87141],[85.11117,26.8722],[85.10951,26.87092],[85.09988,26.87106],[85.09603,26.86694],[85.09025,26.86888],[85.08646,26.86681],[85.08621,26.8635],[85.08987,26.85966],[85.08701,26.85891],[85.08753,26.85644],[85.08388,26.85353],[85.08365,26.85628],[85.08161,26.8552],[85.0817,26.85683],[85.07993,26.85637],[85.07822,26.85866],[85.07699,26.85816],[85.07811,26.8555],[85.07657,26.85668],[85.07613,26.85549],[85.0666,26.85373],[85.06601,26.85059],[85.06413,26.84953],[85.06179,26.85351],[85.06508,26.85633],[85.06268,26.85638],[85.06331,26.85818],[85.06141,26.85679],[85.06278,26.85555],[85.06104,26.85396],[85.05801,26.85586],[85.05695,26.85286],[85.05863,26.85044],[85.05751,26.84905],[85.02397,26.85438],[85.03081,26.85853],[85.03048,26.86185],[85.02724,26.86113],[85.02668,26.86241],[85.02885,26.86337],[85.02854,26.86643],[85.03206,26.86699],[85.02984,26.87024],[85.03086,26.87436],[85.03685,26.87406],[85.03869,26.87749],[85.04267,26.87413],[85.04266,26.87725],[85.04442,26.87917],[85.04704,26.87814],[85.05339,26.88059],[85.05353,26.88199],[85.05079,26.88183],[85.04933,26.88456],[85.05184,26.88293],[85.05483,26.88431],[85.05619,26.88106],[85.0612,26.88659],[85.05938,26.88493],[85.0524,26.88594],[85.05369,26.88891],[85.02271,26.89161],[85.00334,26.89544],[84.99284,26.903],[84.9931,26.90563],[84.99542,26.90646],[85.00227,26.90373],[85.00006,26.91188],[84.96806,26.91614],[84.97101,26.91723],[84.97043,26.92],[84.97196,26.92161],[84.96963,26.92476],[84.97206,26.92619],[84.97033,26.92895],[84.97691,26.93228],[84.97841,26.93614],[84.97517,26.93926],[84.97851,26.94009],[84.96533,26.95658],[84.96621,26.9581],[84.96126,26.96073],[84.95357,26.96003],[84.92985,26.96869],[84.91025,26.96794],[84.89896,26.97014],[84.89656,26.97306],[84.89198,26.97278],[84.89265,26.96965],[84.89158,26.96968],[84.8902,26.97139],[84.89061,26.97453],[84.88801,26.97762],[84.86476,26.98424],[84.85879,26.98917],[84.85571,26.98639],[84.85745,26.99045],[84.85506,26.99339],[84.85761,26.9926],[84.85669,26.99635],[84.85778,26.99762],[84.85379,26.99888],[84.84962,26.9977],[84.85272,27.00118],[84.85133,27.00229],[84.85207,27.00563],[84.85505,27.00769],[84.83657,27.01498],[84.82945,27.01957],[84.82365,27.02045]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"214","area_level":"District","area_name":"Purnia","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.71504,26.1181],[87.71001,26.11566],[87.71129,26.11207],[87.70934,26.10887],[87.70204,26.10883],[87.70067,26.1041],[87.69107,26.10392],[87.68055,26.10022],[87.68616,26.09817],[87.68893,26.09194],[87.68732,26.08716],[87.68439,26.08854],[87.67904,26.08709],[87.67869,26.07529],[87.67576,26.07484],[87.67384,26.07182],[87.67056,26.0716],[87.67076,26.07512],[87.66517,26.0755],[87.66235,26.07803],[87.65932,26.07631],[87.6624,26.07938],[87.66165,26.08062],[87.65489,26.07998],[87.65416,26.07895],[87.65605,26.07649],[87.65282,26.07523],[87.65122,26.07698],[87.65103,26.07411],[87.64699,26.07643],[87.64447,26.0749],[87.64219,26.07668],[87.6367,26.07428],[87.63538,26.07113],[87.6388,26.07121],[87.64126,26.06766],[87.64381,26.06769],[87.64412,26.06549],[87.63934,26.06633],[87.63736,26.06399],[87.63406,26.06451],[87.63503,26.05737],[87.63283,26.05786],[87.62697,26.05363],[87.62604,26.05043],[87.62304,26.04823],[87.62511,26.04651],[87.62546,26.04179],[87.63147,26.03963],[87.63555,26.03384],[87.63365,26.02258],[87.6315,26.02113],[87.63389,26.01954],[87.63424,26.01677],[87.63034,26.01631],[87.62908,26.01364],[87.62538,26.01486],[87.62302,26.01139],[87.6211,26.0129],[87.62003,26.01174],[87.6104,26.01148],[87.60869,26.00719],[87.5988,26.00373],[87.59168,26.00325],[87.58245,25.99805],[87.57943,25.98965],[87.54155,25.98261],[87.53867,25.97894],[87.53395,25.9842],[87.53136,25.98464],[87.53151,25.98137],[87.52086,25.9796],[87.52101,25.97623],[87.5172,25.97341],[87.51549,25.9753],[87.51661,25.97623],[87.51312,25.97968],[87.51038,25.97848],[87.51155,25.97941],[87.50994,25.98578],[87.50685,25.98644],[87.5092,25.989],[87.49957,25.98793],[87.49587,25.98584],[87.49413,25.9813],[87.49144,25.98219],[87.49083,25.98044],[87.49222,25.98041],[87.49233,25.97855],[87.48952,25.97916],[87.48661,25.97759],[87.47894,25.98048],[87.47642,25.98479],[87.47024,25.98746],[87.47032,25.98927],[87.46258,25.98893],[87.46235,25.98631],[87.45975,25.987],[87.4557,25.98444],[87.44373,25.98392],[87.44379,25.98674],[87.43274,25.98845],[87.42728,25.99033],[87.42636,25.99209],[87.42556,25.9896],[87.42134,25.98911],[87.4152,25.99185],[87.41031,25.9878],[87.40419,25.9884],[87.40306,25.98697],[87.40347,25.98449],[87.40749,25.98436],[87.40752,25.9801],[87.40492,25.97839],[87.40471,25.97458],[87.40221,25.97432],[87.39995,25.96266],[87.3981,25.96135],[87.39695,25.96329],[87.38804,25.96396],[87.38787,25.96114],[87.39058,25.9567],[87.3933,25.95606],[87.39307,25.95476],[87.38677,25.95759],[87.38423,25.96396],[87.38122,25.96443],[87.38105,25.96822],[87.37807,25.97175],[87.37752,25.9698],[87.37156,25.96948],[87.372,25.97128],[87.36911,25.9722],[87.3683,25.97508],[87.36223,25.97683],[87.35914,25.97583],[87.35408,25.98167],[87.34983,25.98208],[87.34916,25.97806],[87.34305,25.9783],[87.33928,25.98113],[87.33697,25.97989],[87.33472,25.98109],[87.32156,25.98009],[87.31766,25.97771],[87.30894,25.97975],[87.30894,25.97368],[87.3064,25.96719],[87.30091,25.96602],[87.29576,25.96123],[87.29241,25.96138],[87.29007,25.9584],[87.28392,25.96339],[87.28352,25.96449],[87.28693,25.96517],[87.28675,25.96762],[87.2823,25.97081],[87.28235,25.97285],[87.28484,25.9739],[87.28472,25.97615],[87.28217,25.97918],[87.28212,25.98174],[87.278,25.98587],[87.2776,25.98299],[87.27419,25.9854],[87.26765,25.98461],[87.26656,25.97938],[87.26448,25.97807],[87.26512,25.97614],[87.25925,25.97394],[87.25547,25.9691],[87.25073,25.96634],[87.24207,25.96488],[87.24261,25.96226],[87.23513,25.96204],[87.23549,25.95683],[87.23209,25.9523],[87.2316,25.94466],[87.22453,25.94497],[87.22334,25.95394],[87.22038,25.95806],[87.21066,25.95766],[87.20825,25.95882],[87.20789,25.95713],[87.20206,25.95615],[87.19853,25.94986],[87.18809,25.94992],[87.18896,25.94575],[87.18217,25.94631],[87.17959,25.94343],[87.16377,25.94279],[87.16389,25.94588],[87.15861,25.94681],[87.15527,25.94945],[87.14421,25.95006],[87.1439,25.94828],[87.14229,25.94837],[87.14211,25.95163],[87.14032,25.95251],[87.13978,25.95052],[87.13954,25.95348],[87.13721,25.95515],[87.13,25.95331],[87.1271,25.94958],[87.12915,25.95335],[87.12308,25.95523],[87.12125,25.95867],[87.11958,25.95687],[87.11512,25.95923],[87.11426,25.95787],[87.11421,25.96417],[87.10715,25.96583],[87.08786,25.96534],[87.08288,25.96335],[87.08262,25.96141],[87.07276,25.95957],[87.06251,25.9634],[87.05537,25.94727],[87.04848,25.94719],[87.04667,25.95001],[87.04036,25.95122],[87.03646,25.95026],[87.03599,25.95436],[87.03375,25.95677],[87.02555,25.95653],[87.02104,25.95158],[87.02092,25.94743],[87.01585,25.94726],[87.01508,25.94482],[87.00289,25.94498],[87.00163,25.94719],[86.9975,25.94695],[86.99641,25.94482],[86.98937,25.94564],[86.99257,25.94178],[86.99475,25.93603],[86.99544,25.92724],[86.99981,25.92011],[86.99832,25.91181],[87.00326,25.90244],[87.0065,25.90002],[87.00702,25.89699],[87.00915,25.89697],[87.01093,25.8995],[87.01102,25.89689],[87.01627,25.89513],[87.01987,25.90112],[87.0306,25.89077],[87.03141,25.87664],[87.02932,25.874],[87.02296,25.87249],[87.03045,25.86791],[87.03068,25.86376],[87.03224,25.86346],[87.03662,25.85581],[87.03842,25.84874],[87.03975,25.84951],[87.04115,25.84649],[87.04057,25.8506],[87.0421,25.84743],[87.03895,25.84163],[87.03708,25.83176],[87.03294,25.82695],[87.03311,25.82069],[87.02879,25.81937],[87.02256,25.82272],[87.01865,25.8197],[87.01869,25.81317],[87.02211,25.80727],[87.01824,25.79978],[87.02025,25.79372],[87.01299,25.7801],[87.01346,25.7713],[87.00901,25.75936],[87.00789,25.7442],[87.01053,25.73662],[87.0164,25.73446],[87.01887,25.72299],[87.02396,25.71757],[87.02989,25.71436],[87.03225,25.71645],[87.03692,25.71558],[87.03861,25.70896],[87.04802,25.69501],[87.048,25.68644],[87.03837,25.67037],[87.02944,25.66935],[87.02715,25.66694],[87.02616,25.66364],[87.02777,25.66072],[87.026,25.65336],[87.03027,25.64421],[87.03116,25.63576],[87.03733,25.62984],[87.04384,25.62676],[87.04086,25.59885],[87.04359,25.59485],[87.04891,25.59215],[87.05017,25.58801],[87.05822,25.58045],[87.05715,25.57736],[87.05997,25.56881],[87.05843,25.56188],[87.05445,25.55423],[87.05394,25.54527],[87.05148,25.53926],[87.05208,25.53601],[87.05426,25.53529],[87.05244,25.52671],[87.05858,25.52645],[87.06044,25.52809],[87.0652,25.52711],[87.06873,25.52459],[87.07149,25.51962],[87.07904,25.5231],[87.0795,25.5259],[87.0833,25.52768],[87.08461,25.52597],[87.0859,25.52698],[87.09814,25.52378],[87.10047,25.52002],[87.09767,25.51594],[87.09965,25.50815],[87.0987,25.48951],[87.09089,25.47844],[87.08631,25.47871],[87.08617,25.47728],[87.08085,25.47653],[87.07959,25.46635],[87.0812,25.46224],[87.07839,25.45461],[87.08115,25.45487],[87.08356,25.45295],[87.08083,25.44962],[87.08316,25.44221],[87.08797,25.44312],[87.08739,25.44579],[87.09374,25.44436],[87.09537,25.44321],[87.09576,25.43849],[87.10535,25.43362],[87.11898,25.43986],[87.12008,25.43661],[87.12448,25.43809],[87.13045,25.43655],[87.13283,25.43906],[87.14387,25.43679],[87.15455,25.4378],[87.15841,25.44654],[87.16476,25.45176],[87.17793,25.44912],[87.18265,25.44428],[87.18114,25.44224],[87.1835,25.44067],[87.18706,25.44294],[87.18532,25.44449],[87.19239,25.45023],[87.20288,25.44534],[87.20691,25.45052],[87.20923,25.4575],[87.22857,25.4506],[87.2316,25.46248],[87.22734,25.4738],[87.21025,25.48192],[87.21231,25.50003],[87.20744,25.50072],[87.20782,25.50828],[87.22003,25.50813],[87.22249,25.52025],[87.22154,25.52104],[87.22595,25.52505],[87.22289,25.53685],[87.22869,25.53935],[87.24215,25.5412],[87.24193,25.54796],[87.24338,25.54943],[87.25462,25.54972],[87.25746,25.55767],[87.26513,25.55791],[87.26716,25.56225],[87.26848,25.56211],[87.26684,25.56721],[87.26096,25.56829],[87.26056,25.57008],[87.26315,25.57014],[87.26359,25.57193],[87.25854,25.57622],[87.25777,25.58499],[87.25985,25.58957],[87.25752,25.59346],[87.25719,25.59823],[87.2508,25.59934],[87.25448,25.61496],[87.25427,25.62197],[87.24913,25.62249],[87.24846,25.62542],[87.25196,25.6365],[87.25781,25.64165],[87.27645,25.64419],[87.27774,25.64775],[87.2702,25.64745],[87.2663,25.65178],[87.26202,25.65218],[87.25632,25.66782],[87.25976,25.67026],[87.25252,25.68154],[87.24772,25.68326],[87.24753,25.6873],[87.24112,25.69439],[87.23973,25.6987],[87.24183,25.70347],[87.24615,25.70589],[87.24695,25.70982],[87.25346,25.71084],[87.25943,25.71733],[87.27642,25.71528],[87.27569,25.71041],[87.27841,25.70291],[87.29553,25.7027],[87.30234,25.69837],[87.30331,25.69383],[87.31374,25.69363],[87.3179,25.68976],[87.32055,25.68988],[87.32045,25.6884],[87.33286,25.68839],[87.33354,25.68572],[87.33565,25.68628],[87.33781,25.6824],[87.34042,25.68394],[87.35301,25.68465],[87.35161,25.68743],[87.36328,25.68977],[87.3665,25.68857],[87.3677,25.68569],[87.37199,25.68474],[87.37453,25.68146],[87.37728,25.68177],[87.38101,25.68589],[87.38629,25.68156],[87.3885,25.6814],[87.39156,25.68385],[87.40023,25.67857],[87.41347,25.67953],[87.4147,25.67554],[87.43107,25.67792],[87.4334,25.68301],[87.4429,25.68174],[87.45001,25.68345],[87.4709,25.68419],[87.47883,25.68247],[87.48104,25.68393],[87.48152,25.6772],[87.48455,25.67324],[87.48801,25.6745],[87.48705,25.67253],[87.48952,25.67003],[87.50128,25.67001],[87.50468,25.66694],[87.50615,25.66702],[87.50665,25.67204],[87.5054,25.68117],[87.52316,25.677],[87.52576,25.67369],[87.53049,25.67588],[87.53094,25.6824],[87.52956,25.68415],[87.53236,25.68296],[87.53704,25.68714],[87.53999,25.6869],[87.53688,25.6829],[87.53888,25.67614],[87.53756,25.67316],[87.53932,25.67083],[87.54273,25.66989],[87.54552,25.67196],[87.55279,25.67099],[87.5508,25.66604],[87.55701,25.66584],[87.56067,25.66048],[87.56965,25.66277],[87.5712,25.65936],[87.574,25.66039],[87.57154,25.66318],[87.57513,25.66366],[87.57508,25.66631],[87.5776,25.6696],[87.57389,25.66924],[87.57498,25.67241],[87.57148,25.67463],[87.57121,25.67851],[87.56904,25.67702],[87.56345,25.67737],[87.56229,25.67967],[87.56101,25.67887],[87.55881,25.68112],[87.55622,25.67923],[87.55535,25.68149],[87.55218,25.68131],[87.55521,25.68483],[87.56015,25.68409],[87.55592,25.68655],[87.55624,25.68922],[87.55921,25.6879],[87.56107,25.68894],[87.56271,25.68589],[87.57005,25.68393],[87.57191,25.68527],[87.57271,25.68913],[87.5759,25.69001],[87.57819,25.68734],[87.58236,25.68622],[87.59446,25.6912],[87.59904,25.68927],[87.60189,25.68534],[87.60478,25.68639],[87.61633,25.68225],[87.61853,25.6849],[87.62715,25.68637],[87.63064,25.6907],[87.63826,25.69449],[87.64092,25.69407],[87.64178,25.68727],[87.64265,25.68839],[87.64868,25.68289],[87.65246,25.68678],[87.6572,25.68538],[87.66534,25.68759],[87.669,25.69072],[87.66821,25.69243],[87.67048,25.70142],[87.67358,25.70232],[87.67314,25.70433],[87.6752,25.7047],[87.67562,25.70081],[87.67764,25.69949],[87.68435,25.70155],[87.68434,25.70342],[87.68175,25.70454],[87.68328,25.70786],[87.67975,25.71159],[87.68191,25.71217],[87.68139,25.71602],[87.68019,25.71588],[87.68107,25.72104],[87.68454,25.72186],[87.68249,25.72298],[87.68106,25.72712],[87.6865,25.7331],[87.68415,25.73601],[87.68705,25.74169],[87.68501,25.74699],[87.68777,25.75026],[87.69552,25.74871],[87.70353,25.74953],[87.69655,25.75303],[87.70021,25.75414],[87.69805,25.75571],[87.69945,25.75776],[87.7037,25.75886],[87.70397,25.7566],[87.7076,25.75496],[87.70848,25.75773],[87.7108,25.75739],[87.7094,25.75947],[87.71053,25.76538],[87.72018,25.76695],[87.7199,25.7648],[87.72454,25.76347],[87.7287,25.76518],[87.73562,25.76515],[87.73571,25.76354],[87.73947,25.76603],[87.74742,25.76188],[87.7492,25.75743],[87.75353,25.7535],[87.76356,25.75505],[87.76409,25.75675],[87.77285,25.75686],[87.7767,25.754],[87.77633,25.7505],[87.78039,25.74612],[87.78613,25.74589],[87.78993,25.74695],[87.7923,25.75003],[87.77813,25.75931],[87.78418,25.7597],[87.78854,25.76269],[87.7888,25.7659],[87.80565,25.76535],[87.80645,25.76937],[87.80236,25.76945],[87.80182,25.77132],[87.80696,25.77999],[87.81082,25.78024],[87.82153,25.7863],[87.82865,25.78775],[87.82663,25.78969],[87.82715,25.79313],[87.8253,25.79663],[87.82619,25.80075],[87.82272,25.80557],[87.82146,25.81509],[87.81707,25.82529],[87.81704,25.83039],[87.79385,25.84297],[87.79842,25.84851],[87.80468,25.8489],[87.81083,25.84594],[87.81592,25.84645],[87.82055,25.85735],[87.82097,25.85885],[87.81553,25.86108],[87.81544,25.87103],[87.80966,25.86931],[87.80507,25.87544],[87.80705,25.87913],[87.81109,25.88179],[87.8225,25.88171],[87.82332,25.88559],[87.82178,25.88752],[87.82683,25.89408],[87.82505,25.89715],[87.81959,25.90034],[87.82136,25.90298],[87.82258,25.91213],[87.81983,25.914],[87.81689,25.91283],[87.81518,25.91486],[87.81647,25.91202],[87.81553,25.91022],[87.81206,25.90997],[87.80803,25.91216],[87.80757,25.91609],[87.81207,25.91595],[87.813,25.91764],[87.80885,25.92069],[87.809,25.92837],[87.80737,25.92985],[87.81187,25.93015],[87.81262,25.93211],[87.81605,25.93172],[87.81959,25.93394],[87.83311,25.92791],[87.83843,25.93149],[87.83473,25.93168],[87.83935,25.93811],[87.83695,25.94228],[87.83403,25.94216],[87.83372,25.94361],[87.8337,25.94585],[87.83826,25.95203],[87.83597,25.95838],[87.83684,25.96028],[87.84657,25.96334],[87.84574,25.96684],[87.84706,25.96937],[87.84577,25.96958],[87.84472,25.97393],[87.84708,25.97467],[87.84464,25.97691],[87.84413,25.98133],[87.84575,25.98557],[87.84513,25.99412],[87.84794,25.99369],[87.84945,25.99543],[87.85141,26.00228],[87.85041,26.00345],[87.85459,26.01185],[87.85045,26.01416],[87.85487,26.01728],[87.8573,26.02535],[87.85694,26.02872],[87.85452,26.02936],[87.85425,26.03121],[87.8566,26.03635],[87.84929,26.03891],[87.84875,26.04196],[87.85323,26.04949],[87.85439,26.05689],[87.86154,26.0602],[87.87287,26.07001],[87.86434,26.07152],[87.87295,26.08414],[87.86982,26.0885],[87.87228,26.09545],[87.86752,26.09685],[87.87108,26.10448],[87.86808,26.10499],[87.86661,26.10067],[87.86353,26.09826],[87.86343,26.09344],[87.86012,26.09204],[87.85473,26.09498],[87.83818,26.09146],[87.8373,26.09341],[87.8339,26.0941],[87.83856,26.09698],[87.83345,26.09547],[87.83497,26.09907],[87.83006,26.10059],[87.82551,26.09827],[87.82285,26.09985],[87.81938,26.09639],[87.81265,26.09652],[87.80948,26.09852],[87.80211,26.09958],[87.79699,26.09448],[87.79224,26.09406],[87.79007,26.09046],[87.78345,26.09024],[87.78188,26.09144],[87.78045,26.08833],[87.77864,26.09213],[87.77897,26.10316],[87.77181,26.10488],[87.76991,26.10334],[87.76135,26.10562],[87.76006,26.10526],[87.76008,26.10293],[87.76152,26.09914],[87.74404,26.10076],[87.7406,26.10408],[87.7376,26.1032],[87.739,26.10611],[87.73547,26.10873],[87.73418,26.10766],[87.73635,26.10445],[87.73311,26.10658],[87.7321,26.10635],[87.73325,26.10395],[87.73148,26.10605],[87.72811,26.10592],[87.729,26.11281],[87.72094,26.11459],[87.71823,26.1134],[87.71673,26.1176],[87.71504,26.1181]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"215","area_level":"District","area_name":"Rohtas","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.14939,25.37202],[84.14034,25.37335],[84.13955,25.36974],[84.13088,25.36913],[84.12974,25.36387],[84.12279,25.36513],[84.11956,25.35822],[84.103,25.36185],[84.10357,25.36801],[84.10111,25.36908],[84.09871,25.36846],[84.10078,25.36001],[84.09761,25.35932],[84.09362,25.36009],[84.08888,25.36582],[84.07749,25.36615],[84.07683,25.36958],[84.06428,25.3707],[84.06453,25.37325],[84.06108,25.37245],[84.0454,25.37524],[84.04709,25.37057],[84.04552,25.35865],[84.05435,25.35749],[84.05154,25.34806],[84.04968,25.34816],[84.04569,25.34262],[84.036,25.34322],[84.03402,25.34145],[84.03537,25.34133],[84.03468,25.33822],[84.03721,25.33468],[84.03643,25.33255],[84.03783,25.33146],[84.04076,25.33329],[84.04548,25.32831],[84.04657,25.32941],[84.05066,25.32728],[84.04934,25.32532],[84.05196,25.32336],[84.05094,25.32231],[84.05328,25.32048],[84.05319,25.31741],[84.05628,25.3166],[84.05499,25.31565],[84.05624,25.31322],[84.05495,25.31248],[84.05609,25.31049],[84.05801,25.31056],[84.05875,25.30095],[84.05737,25.29756],[84.0477,25.29924],[84.04692,25.28845],[84.03838,25.28783],[84.03919,25.28141],[84.03473,25.26765],[84.01888,25.26992],[84.01751,25.26313],[84.01393,25.26147],[84.01102,25.26521],[84.00783,25.26463],[84.00626,25.26625],[84.00531,25.26524],[84.00422,25.26657],[84.00531,25.2677],[84.00301,25.26963],[84.00157,25.26882],[83.99687,25.2706],[83.99018,25.26688],[83.97867,25.2729],[83.97655,25.2721],[83.97635,25.27508],[83.97278,25.27707],[83.97096,25.28075],[83.95768,25.28452],[83.95772,25.28615],[83.95228,25.28668],[83.94899,25.28517],[83.94774,25.28832],[83.94455,25.28519],[83.94296,25.2888],[83.93917,25.28655],[83.93569,25.28929],[83.93417,25.28835],[83.93341,25.29066],[83.92824,25.29055],[83.92875,25.29253],[83.92613,25.29475],[83.91452,25.2953],[83.90626,25.29749],[83.90611,25.29598],[83.90277,25.29456],[83.89927,25.29378],[83.898,25.29522],[83.89519,25.29391],[83.89463,25.29136],[83.89581,25.28497],[83.89338,25.28277],[83.89684,25.27966],[83.89447,25.27424],[83.89957,25.26506],[83.88472,25.26577],[83.8828,25.26165],[83.88548,25.25828],[83.88386,25.25256],[83.86428,25.2532],[83.86447,25.24687],[83.85683,25.24848],[83.85322,25.24767],[83.85193,25.24401],[83.84055,25.24456],[83.8338,25.24307],[83.82748,25.23186],[83.82402,25.21846],[83.8203,25.21982],[83.8172,25.21908],[83.81682,25.21644],[83.8134,25.21665],[83.81314,25.21513],[83.80686,25.21568],[83.8069,25.21359],[83.80475,25.21275],[83.80587,25.21238],[83.80426,25.20747],[83.80542,25.20609],[83.80988,25.20763],[83.81189,25.20293],[83.81415,25.20175],[83.81248,25.19975],[83.81189,25.18447],[83.81067,25.18116],[83.80765,25.18186],[83.80663,25.17749],[83.82104,25.17479],[83.82097,25.16349],[83.82454,25.16088],[83.8233,25.1532],[83.8138,25.15353],[83.81397,25.14716],[83.81936,25.14669],[83.81407,25.12753],[83.80942,25.12759],[83.80715,25.1163],[83.80426,25.11181],[83.80577,25.10588],[83.80977,25.10051],[83.81274,25.09916],[83.81154,25.09643],[83.81568,25.09384],[83.81868,25.08915],[83.83141,25.04348],[83.83035,25.04046],[83.83589,25.03837],[83.83356,25.03661],[83.83401,25.03383],[83.83071,25.03467],[83.82957,25.03073],[83.83128,25.02933],[83.8298,25.0248],[83.82784,25.02676],[83.82519,25.02451],[83.82835,25.02134],[83.82546,25.0191],[83.82854,25.01491],[83.82661,25.01318],[83.82688,25.00831],[83.83071,25.01078],[83.83009,25.00588],[83.83198,25.00703],[83.83584,25.00563],[83.83604,25.00325],[83.83955,25.0014],[83.83333,24.99742],[83.83175,24.9922],[83.82601,24.98813],[83.8198,24.98881],[83.81845,24.98553],[83.81493,24.98609],[83.80897,24.97993],[83.80824,24.97195],[83.81154,24.96208],[83.81099,24.95932],[83.80088,24.95915],[83.80084,24.95602],[83.80561,24.95382],[83.80498,24.95165],[83.79676,24.94978],[83.79692,24.94317],[83.79263,24.94],[83.79202,24.9365],[83.78604,24.93882],[83.78536,24.93479],[83.77881,24.92974],[83.78102,24.92558],[83.7743,24.92083],[83.77338,24.91591],[83.76379,24.91321],[83.76621,24.90892],[83.76387,24.90622],[83.76488,24.89803],[83.76039,24.89777],[83.76037,24.89293],[83.76211,24.89072],[83.75884,24.8848],[83.75511,24.88306],[83.75369,24.87857],[83.75531,24.87308],[83.76126,24.87328],[83.76087,24.87194],[83.75607,24.87115],[83.75654,24.86565],[83.75387,24.86391],[83.74857,24.86749],[83.74811,24.86291],[83.74523,24.86432],[83.74236,24.85889],[83.73677,24.85796],[83.73471,24.85321],[83.72726,24.85162],[83.72762,24.84704],[83.72293,24.84529],[83.72219,24.83951],[83.71565,24.83631],[83.71721,24.83102],[83.7248,24.82708],[83.72924,24.8221],[83.72518,24.81525],[83.72912,24.80759],[83.73641,24.80717],[83.75224,24.79965],[83.75767,24.80172],[83.7629,24.79802],[83.77175,24.79687],[83.77661,24.79366],[83.77484,24.78469],[83.77695,24.77638],[83.77912,24.77424],[83.7784,24.77203],[83.78516,24.75951],[83.77893,24.76161],[83.77584,24.75763],[83.77745,24.75098],[83.78139,24.74904],[83.78075,24.73499],[83.77126,24.73465],[83.76581,24.73018],[83.76378,24.72338],[83.75967,24.71714],[83.76123,24.71119],[83.76074,24.70548],[83.75602,24.70835],[83.75531,24.70293],[83.75064,24.69734],[83.7501,24.69418],[83.74353,24.68763],[83.74336,24.68406],[83.73972,24.68047],[83.73646,24.67135],[83.72981,24.66459],[83.73242,24.66192],[83.7322,24.65972],[83.72814,24.65812],[83.73253,24.65173],[83.73093,24.64851],[83.73328,24.64494],[83.73995,24.64295],[83.74001,24.63788],[83.7452,24.63692],[83.75213,24.62639],[83.74808,24.61293],[83.74273,24.61292],[83.73861,24.59721],[83.73813,24.58667],[83.73541,24.5816],[83.73542,24.57739],[83.74246,24.57074],[83.74196,24.56916],[83.73126,24.55908],[83.71649,24.55863],[83.71593,24.55023],[83.71338,24.54921],[83.71049,24.54399],[83.70597,24.54227],[83.69251,24.54032],[83.67375,24.54038],[83.67211,24.54435],[83.66427,24.54776],[83.66314,24.55428],[83.65934,24.55897],[83.65771,24.55339],[83.65416,24.54985],[83.64851,24.54896],[83.64533,24.54378],[83.63515,24.54087],[83.60389,24.54008],[83.56275,24.54395],[83.52412,24.54173],[83.52155,24.54724],[83.49712,24.5391],[83.49861,24.5318],[83.5033,24.52535],[83.55093,24.52331],[83.57252,24.51655],[83.597,24.51246],[83.6289,24.51249],[83.65239,24.5148],[83.68816,24.51368],[83.69196,24.51106],[83.72057,24.50345],[83.74647,24.51017],[83.75554,24.50972],[83.78479,24.52077],[83.80018,24.52953],[83.8165,24.52908],[83.86176,24.53673],[83.87286,24.5317],[83.88862,24.53787],[83.90926,24.54121],[83.9344,24.54801],[83.94307,24.55816],[83.95533,24.56789],[83.96732,24.58157],[83.96897,24.58565],[83.97592,24.59208],[83.99294,24.62995],[84.00779,24.64289],[84.03192,24.69405],[84.04525,24.7157],[84.08216,24.76757],[84.10214,24.79],[84.12361,24.80651],[84.13914,24.82587],[84.16402,24.84617],[84.18854,24.87037],[84.2068,24.89434],[84.25725,24.94923],[84.26964,24.96727],[84.30181,25.00773],[84.31591,25.01997],[84.33621,25.03243],[84.34776,25.03889],[84.36129,25.04381],[84.36473,25.04329],[84.36829,25.04717],[84.39645,25.06042],[84.41299,25.07083],[84.4212,25.07797],[84.42578,25.08597],[84.43529,25.11279],[84.45001,25.13601],[84.46331,25.16117],[84.43826,25.17788],[84.43309,25.1837],[84.42898,25.18496],[84.42873,25.18701],[84.41457,25.19266],[84.40574,25.19544],[84.40326,25.19043],[84.40534,25.1895],[84.40343,25.18477],[84.38622,25.19128],[84.38577,25.19532],[84.38055,25.19636],[84.3794,25.19462],[84.37338,25.19473],[84.37317,25.19213],[84.36496,25.19394],[84.35584,25.1916],[84.35552,25.19341],[84.35767,25.19411],[84.35681,25.20038],[84.34745,25.20308],[84.34627,25.20189],[84.3418,25.20326],[84.3407,25.20103],[84.33179,25.20348],[84.33251,25.20748],[84.32545,25.21025],[84.32607,25.21175],[84.31882,25.21416],[84.32273,25.22333],[84.3259,25.22274],[84.32662,25.22436],[84.32836,25.22416],[84.33254,25.23676],[84.33254,25.23861],[84.32605,25.23988],[84.32966,25.25],[84.33155,25.26162],[84.32938,25.26224],[84.32631,25.26718],[84.32275,25.26824],[84.32239,25.27054],[84.32505,25.27534],[84.334,25.28145],[84.33449,25.28363],[84.32564,25.28506],[84.3253,25.28751],[84.32243,25.28875],[84.32463,25.29229],[84.33524,25.29279],[84.33655,25.29584],[84.3341,25.29866],[84.32618,25.30158],[84.32726,25.3143],[84.32061,25.31542],[84.32211,25.32113],[84.31506,25.3234],[84.30859,25.32327],[84.30824,25.32803],[84.303,25.3283],[84.30385,25.32683],[84.30232,25.32576],[84.29018,25.32539],[84.27974,25.32974],[84.28213,25.33789],[84.27918,25.33853],[84.27975,25.34327],[84.28202,25.34528],[84.28291,25.35323],[84.27621,25.35458],[84.27632,25.3587],[84.27323,25.36023],[84.27174,25.3574],[84.26986,25.35785],[84.26823,25.35328],[84.25477,25.35584],[84.25419,25.35414],[84.25002,25.35411],[84.23497,25.35676],[84.23143,25.34446],[84.2202,25.34641],[84.21929,25.35304],[84.21626,25.35455],[84.21849,25.36164],[84.21231,25.36597],[84.18236,25.36743],[84.18245,25.36958],[84.16648,25.37101],[84.16502,25.36747],[84.16297,25.36701],[84.14968,25.36939],[84.14939,25.37202]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"216","area_level":"District","area_name":"Saharsa","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.44006,26.07405],[86.43882,26.07539],[86.43809,26.07248],[86.43582,26.07395],[86.43164,26.07149],[86.43335,26.07103],[86.43326,26.0689],[86.43468,26.06933],[86.4369,26.06427],[86.4322,26.06275],[86.43403,26.06141],[86.42799,26.06068],[86.43078,26.05358],[86.42807,26.05165],[86.42679,26.05461],[86.42588,26.05194],[86.42364,26.05451],[86.42064,26.05316],[86.41737,26.04987],[86.41744,26.04595],[86.41481,26.04783],[86.41439,26.04365],[86.41055,26.04116],[86.41247,26.0394],[86.40812,26.03513],[86.40428,26.03623],[86.39584,26.03487],[86.39392,26.03656],[86.39328,26.03445],[86.38772,26.03298],[86.38836,26.02901],[86.38492,26.02903],[86.38254,26.0264],[86.38648,26.02756],[86.38856,26.02373],[86.38479,26.02243],[86.38092,26.01795],[86.38184,26.01657],[86.38632,26.01899],[86.38558,26.01294],[86.38268,26.01361],[86.38076,26.01057],[86.38362,26.00796],[86.38624,26.0083],[86.38549,26.00625],[86.38888,26.00276],[86.38652,26.00235],[86.38631,26.0008],[86.3921,26.00148],[86.39291,25.99921],[86.39037,25.99712],[86.39085,25.99598],[86.39722,25.99112],[86.39503,25.99004],[86.3891,25.99146],[86.39238,25.98714],[86.38817,25.98339],[86.39466,25.97629],[86.39165,25.97518],[86.38975,25.97163],[86.38221,25.96789],[86.38058,25.96487],[86.38194,25.96293],[86.38007,25.96146],[86.3825,25.96082],[86.38508,25.96449],[86.38754,25.96388],[86.38939,25.95512],[86.38583,25.95484],[86.3823,25.95123],[86.38358,25.94914],[86.38866,25.9508],[86.39213,25.94838],[86.38845,25.94579],[86.39051,25.94424],[86.39013,25.94103],[86.39154,25.93971],[86.38956,25.93871],[86.39293,25.93534],[86.39445,25.93837],[86.39654,25.93591],[86.40312,25.93482],[86.40154,25.93279],[86.40182,25.9299],[86.40452,25.92841],[86.40443,25.92404],[86.39865,25.92278],[86.38038,25.92439],[86.38074,25.93076],[86.37381,25.9329],[86.37111,25.93621],[86.36636,25.93544],[86.36265,25.9299],[86.36419,25.92727],[86.36227,25.92702],[86.36208,25.92179],[86.35622,25.92218],[86.35298,25.91371],[86.3474,25.9094],[86.34699,25.90626],[86.35013,25.90178],[86.34409,25.90221],[86.34213,25.90138],[86.34227,25.89988],[86.33572,25.90084],[86.33564,25.88845],[86.33021,25.88477],[86.33097,25.87986],[86.32503,25.8816],[86.32452,25.87166],[86.32262,25.86929],[86.31422,25.86669],[86.31334,25.86291],[86.31644,25.8618],[86.31458,25.85709],[86.3163,25.85732],[86.31798,25.86026],[86.31933,25.85731],[86.3235,25.85692],[86.32328,25.85446],[86.32799,25.85711],[86.32906,25.85256],[86.33178,25.85927],[86.33965,25.85865],[86.33934,25.86043],[86.34303,25.86151],[86.3453,25.86028],[86.34348,25.85622],[86.34712,25.85326],[86.35045,25.85472],[86.35466,25.85333],[86.35857,25.85592],[86.36281,25.85544],[86.36537,25.84851],[86.37096,25.84869],[86.37255,25.84743],[86.36839,25.845],[86.36916,25.84311],[86.36718,25.83966],[86.36867,25.83616],[86.37067,25.83664],[86.37172,25.83268],[86.37569,25.82969],[86.37706,25.82955],[86.37815,25.83229],[86.38438,25.8275],[86.38019,25.82241],[86.38386,25.82019],[86.38457,25.81802],[86.37711,25.81716],[86.37868,25.81349],[86.38147,25.81087],[86.38845,25.81072],[86.38931,25.80869],[86.39185,25.81261],[86.40187,25.81084],[86.40265,25.80509],[86.39975,25.80245],[86.40157,25.80014],[86.40678,25.8014],[86.40558,25.79882],[86.40795,25.79695],[86.40548,25.79504],[86.40943,25.79274],[86.41357,25.79406],[86.41164,25.78935],[86.40775,25.78771],[86.41024,25.78705],[86.41149,25.78355],[86.41405,25.78448],[86.41309,25.78269],[86.40575,25.78293],[86.40705,25.78002],[86.40452,25.77882],[86.40558,25.77587],[86.40342,25.77349],[86.40669,25.7719],[86.41029,25.77251],[86.41039,25.76963],[86.40754,25.76562],[86.4103,25.76581],[86.41217,25.76435],[86.41077,25.76332],[86.41362,25.76275],[86.41115,25.75347],[86.41306,25.74987],[86.41269,25.74869],[86.40898,25.74989],[86.40492,25.74237],[86.40445,25.73232],[86.40768,25.7302],[86.41055,25.73202],[86.4159,25.73064],[86.42357,25.72662],[86.42465,25.72261],[86.41887,25.71879],[86.42128,25.71741],[86.42909,25.71909],[86.42587,25.7154],[86.42546,25.70563],[86.42765,25.70548],[86.4316,25.71001],[86.43799,25.70062],[86.43573,25.6978],[86.44855,25.68985],[86.4499,25.69037],[86.44821,25.69508],[86.44893,25.69746],[86.45148,25.69686],[86.45313,25.69385],[86.45813,25.69237],[86.46003,25.70196],[86.46164,25.70237],[86.46323,25.70047],[86.45931,25.68729],[86.45305,25.68484],[86.45222,25.68321],[86.46078,25.68234],[86.45879,25.67702],[86.46019,25.67503],[86.46751,25.67713],[86.4676,25.67231],[86.47011,25.66902],[86.46932,25.66451],[86.47285,25.66385],[86.47545,25.66521],[86.47906,25.66013],[86.47291,25.65583],[86.47398,25.65369],[86.48239,25.65783],[86.48378,25.65716],[86.4755,25.64795],[86.47739,25.64656],[86.47732,25.63957],[86.47891,25.63834],[86.4838,25.63898],[86.48582,25.63026],[86.48778,25.62679],[86.49229,25.62475],[86.49403,25.61933],[86.50635,25.62065],[86.51066,25.6108],[86.51696,25.6109],[86.52167,25.60815],[86.53016,25.60663],[86.53473,25.60878],[86.54119,25.60502],[86.54215,25.61105],[86.5462,25.61096],[86.55001,25.60528],[86.55352,25.61043],[86.55876,25.61343],[86.56125,25.61115],[86.5629,25.6037],[86.56518,25.60102],[86.56924,25.60044],[86.57512,25.60509],[86.5895,25.59807],[86.58374,25.59306],[86.5853,25.5904],[86.58704,25.59106],[86.59047,25.59746],[86.59504,25.5954],[86.59762,25.59875],[86.58928,25.60965],[86.59285,25.61208],[86.59093,25.61355],[86.59714,25.62157],[86.60654,25.62142],[86.61446,25.6272],[86.61578,25.62611],[86.62237,25.62822],[86.62444,25.62691],[86.62496,25.62843],[86.63231,25.63066],[86.63438,25.62972],[86.63936,25.63095],[86.64359,25.63243],[86.64992,25.64088],[86.65417,25.64081],[86.65841,25.64059],[86.66197,25.63832],[86.66342,25.63185],[86.66639,25.62999],[86.66519,25.62738],[86.66683,25.62208],[86.67454,25.61969],[86.67724,25.62826],[86.68314,25.6254],[86.68307,25.63176],[86.68534,25.63287],[86.68462,25.63487],[86.6862,25.63679],[86.68455,25.63932],[86.68876,25.64416],[86.70231,25.64779],[86.70199,25.64639],[86.70512,25.64651],[86.70944,25.64167],[86.7073,25.6398],[86.71013,25.63462],[86.71488,25.64114],[86.70876,25.6448],[86.70845,25.65329],[86.71212,25.65519],[86.71522,25.65445],[86.71798,25.65987],[86.7196,25.65996],[86.72032,25.66421],[86.72317,25.66186],[86.72529,25.66351],[86.7318,25.66151],[86.73347,25.65654],[86.73977,25.65219],[86.73932,25.64739],[86.74448,25.6413],[86.75261,25.63955],[86.7574,25.64008],[86.75866,25.6426],[86.76225,25.63997],[86.76553,25.63153],[86.76333,25.62989],[86.76486,25.62639],[86.76351,25.62369],[86.77187,25.62512],[86.77741,25.6237],[86.79224,25.63201],[86.80057,25.63216],[86.80048,25.63392],[86.80664,25.64007],[86.80872,25.64443],[86.80409,25.64807],[86.80034,25.65655],[86.8013,25.65724],[86.81017,25.65656],[86.81697,25.65838],[86.81748,25.66382],[86.82153,25.66696],[86.82651,25.66397],[86.83305,25.66674],[86.83492,25.66774],[86.83319,25.67654],[86.83771,25.67606],[86.83889,25.6781],[86.84138,25.67728],[86.84503,25.68007],[86.85476,25.67396],[86.85911,25.67444],[86.85515,25.69198],[86.85802,25.70105],[86.868,25.70723],[86.86776,25.71215],[86.87216,25.71587],[86.87145,25.72316],[86.86608,25.7298],[86.85465,25.7318],[86.84871,25.73452],[86.84323,25.73427],[86.84262,25.74197],[86.84666,25.74429],[86.85131,25.74023],[86.85391,25.74008],[86.8564,25.74603],[86.85623,25.74821],[86.84938,25.74993],[86.84775,25.74887],[86.84761,25.75493],[86.85265,25.75682],[86.85725,25.7709],[86.85636,25.77734],[86.85987,25.78071],[86.86054,25.78217],[86.85919,25.78304],[86.86429,25.78785],[86.8604,25.79252],[86.86126,25.79402],[86.85933,25.79502],[86.85961,25.7975],[86.85707,25.79949],[86.85606,25.81264],[86.85885,25.81208],[86.85893,25.81457],[86.8607,25.81222],[86.86223,25.81426],[86.86532,25.81244],[86.87411,25.81492],[86.87409,25.81644],[86.87108,25.81734],[86.87011,25.82208],[86.86482,25.82228],[86.86465,25.82499],[86.85767,25.83015],[86.85635,25.83817],[86.85395,25.83851],[86.85236,25.84681],[86.84989,25.84735],[86.8491,25.84916],[86.84753,25.85675],[86.8493,25.85963],[86.8489,25.86216],[86.84338,25.86391],[86.84344,25.87063],[86.83382,25.86785],[86.82082,25.86964],[86.81934,25.86736],[86.81656,25.86743],[86.81368,25.86778],[86.81359,25.8704],[86.80851,25.87229],[86.80248,25.86619],[86.80418,25.86518],[86.80261,25.86348],[86.79479,25.86055],[86.78064,25.85802],[86.76536,25.8642],[86.76584,25.86055],[86.75989,25.85991],[86.76019,25.85791],[86.75293,25.8557],[86.73264,25.86157],[86.73148,25.8651],[86.71219,25.86645],[86.71101,25.8772],[86.70826,25.87927],[86.70598,25.89618],[86.70698,25.90397],[86.69372,25.9046],[86.69119,25.91608],[86.68622,25.92088],[86.68625,25.92451],[86.693,25.9332],[86.68668,25.93617],[86.67823,25.93649],[86.67226,25.92917],[86.66415,25.92917],[86.65809,25.92428],[86.64831,25.92115],[86.64488,25.92678],[86.63867,25.92801],[86.63289,25.94112],[86.62616,25.94473],[86.62192,25.94259],[86.61965,25.94444],[86.61975,25.94777],[86.62243,25.95219],[86.6342,25.96191],[86.63624,25.96743],[86.63428,25.96988],[86.62477,25.96992],[86.61569,25.97681],[86.61601,25.9795],[86.62065,25.98512],[86.61913,25.99551],[86.6244,26.00359],[86.64427,26.01083],[86.64742,26.02061],[86.63457,26.02301],[86.62694,26.02193],[86.62322,26.01928],[86.61954,26.02124],[86.61666,26.01773],[86.6133,26.01639],[86.61026,26.019],[86.59661,26.01948],[86.59154,26.02211],[86.58048,26.02154],[86.57257,26.02334],[86.56658,26.02704],[86.55894,26.02711],[86.55868,26.02469],[86.5558,26.02234],[86.55553,26.01445],[86.55274,26.01001],[86.5452,26.00689],[86.53912,26.00692],[86.53811,26.00001],[86.53078,25.9908],[86.52789,25.9957],[86.51985,25.99437],[86.52027,25.99856],[86.51576,26.00683],[86.51014,26.0088],[86.5099,26.0112],[86.50783,26.01273],[86.5024,26.01414],[86.50156,26.01936],[86.49819,26.02018],[86.4987,26.02736],[86.50973,26.03721],[86.5139,26.03797],[86.51369,26.04105],[86.51604,26.04326],[86.51834,26.05012],[86.51664,26.05646],[86.51168,26.05712],[86.50732,26.0558],[86.5,26.05014],[86.49219,26.05246],[86.48907,26.05221],[86.48861,26.04932],[86.48132,26.04892],[86.4673,26.05481],[86.46752,26.05925],[86.47173,26.06042],[86.47358,26.06279],[86.46488,26.07128],[86.4588,26.0681],[86.44432,26.06975],[86.44105,26.06872],[86.44211,26.07243],[86.44006,26.07405]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"217","area_level":"District","area_name":"Samastipur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.71604,26.08748],[85.71371,26.08941],[85.71,26.08752],[85.70626,26.088],[85.7099,26.0869],[85.71048,26.07922],[85.71181,26.07848],[85.70893,26.0681],[85.71237,26.06454],[85.70339,26.05986],[85.70199,26.0516],[85.7043,26.05042],[85.70252,26.04647],[85.69194,26.04771],[85.69119,26.04442],[85.68854,26.04324],[85.68265,26.02778],[85.67643,26.02929],[85.67501,26.02743],[85.66588,26.02823],[85.66567,26.02473],[85.659,26.01833],[85.65575,26.01859],[85.64812,26.00299],[85.63787,26.00298],[85.63406,26.00514],[85.63272,26.00232],[85.63179,25.99604],[85.63538,25.99157],[85.63438,25.98738],[85.6412,25.98439],[85.63818,25.98062],[85.64047,25.97621],[85.63269,25.97096],[85.6302,25.95765],[85.63195,25.94834],[85.63462,25.94293],[85.64205,25.94181],[85.64433,25.93998],[85.64111,25.93893],[85.63886,25.92628],[85.64116,25.91766],[85.646,25.91604],[85.64115,25.90902],[85.63223,25.90671],[85.63218,25.90436],[85.62921,25.90415],[85.62854,25.90041],[85.63195,25.9004],[85.63141,25.89606],[85.62697,25.89482],[85.63136,25.89156],[85.63048,25.88857],[85.62647,25.88809],[85.62453,25.87959],[85.61569,25.87948],[85.61374,25.87767],[85.61367,25.87486],[85.61132,25.874],[85.61043,25.87014],[85.61509,25.86219],[85.61077,25.85941],[85.61092,25.85345],[85.59944,25.84956],[85.60445,25.8467],[85.60638,25.84831],[85.60889,25.8478],[85.61698,25.84089],[85.61648,25.8389],[85.60959,25.83657],[85.61003,25.83192],[85.62042,25.82522],[85.61614,25.8234],[85.60708,25.8062],[85.60817,25.80431],[85.60651,25.8014],[85.60864,25.79892],[85.61361,25.79776],[85.6132,25.79394],[85.60793,25.78979],[85.61289,25.78754],[85.61367,25.7784],[85.6154,25.77697],[85.62266,25.77663],[85.62166,25.77297],[85.62955,25.77627],[85.63094,25.77334],[85.62943,25.77233],[85.62788,25.7656],[85.62461,25.76517],[85.62606,25.76206],[85.6199,25.75985],[85.62513,25.75757],[85.62546,25.75475],[85.62264,25.75319],[85.61342,25.73727],[85.61253,25.73001],[85.61615,25.729],[85.61184,25.7105],[85.6105,25.70864],[85.60486,25.71066],[85.60156,25.70902],[85.5993,25.7016],[85.58471,25.70169],[85.58382,25.69186],[85.5821,25.68898],[85.57853,25.68978],[85.57731,25.68685],[85.57085,25.68892],[85.57085,25.68141],[85.56961,25.68157],[85.56442,25.67148],[85.56318,25.66832],[85.56454,25.66801],[85.56221,25.66627],[85.56151,25.66151],[85.55882,25.66121],[85.5573,25.65599],[85.55558,25.65587],[85.55479,25.64793],[85.55767,25.64646],[85.55177,25.6373],[85.54969,25.62365],[85.54578,25.62323],[85.545,25.62566],[85.53929,25.62559],[85.53637,25.62355],[85.53357,25.61735],[85.53438,25.61603],[85.5295,25.60034],[85.52938,25.59025],[85.53395,25.58999],[85.53519,25.58535],[85.53724,25.58508],[85.53688,25.57914],[85.55224,25.57727],[85.54568,25.57502],[85.54298,25.56756],[85.55706,25.56113],[85.55352,25.55549],[85.55454,25.54506],[85.54995,25.54325],[85.54849,25.53838],[85.54538,25.53811],[85.5404,25.55404],[85.53267,25.5557],[85.52772,25.54579],[85.53369,25.5081],[85.54462,25.50945],[85.54629,25.50697],[85.54451,25.48447],[85.58132,25.48566],[85.59956,25.48918],[85.61809,25.48551],[85.62039,25.48161],[85.61586,25.48318],[85.59558,25.47419],[85.62271,25.46759],[85.62042,25.46333],[85.6281,25.46339],[85.64115,25.46021],[85.65489,25.46092],[85.65295,25.48025],[85.64696,25.49867],[85.64783,25.5006],[85.65423,25.50222],[85.65453,25.49906],[85.65255,25.49519],[85.65411,25.49205],[85.67758,25.49476],[85.67924,25.47636],[85.69237,25.48658],[85.69491,25.48448],[85.70133,25.50026],[85.70448,25.50065],[85.71306,25.5105],[85.72042,25.52689],[85.72242,25.52689],[85.72374,25.52399],[85.73089,25.52543],[85.73128,25.5211],[85.73514,25.52467],[85.73376,25.52807],[85.7353,25.52862],[85.73707,25.53984],[85.74318,25.54036],[85.74766,25.55508],[85.74375,25.55698],[85.74903,25.56037],[85.75645,25.56147],[85.75924,25.56619],[85.76596,25.56879],[85.77323,25.57899],[85.77311,25.58257],[85.7752,25.58563],[85.79259,25.58397],[85.80966,25.57776],[85.83848,25.57613],[85.84711,25.57331],[85.84873,25.5762],[85.84854,25.5849],[85.85208,25.58903],[85.84954,25.59407],[85.85044,25.6029],[85.84599,25.60828],[85.84315,25.60813],[85.83768,25.61224],[85.83368,25.61326],[85.83433,25.61556],[85.83189,25.61488],[85.82952,25.61692],[85.8318,25.62182],[85.83971,25.62445],[85.84147,25.63271],[85.84341,25.63567],[85.84683,25.63643],[85.84341,25.63985],[85.84479,25.64382],[85.85003,25.64617],[85.85713,25.64099],[85.86291,25.64255],[85.86247,25.64439],[85.86714,25.64301],[85.87335,25.6456],[85.87428,25.65927],[85.87651,25.65889],[85.87906,25.66505],[85.88971,25.66146],[85.88859,25.65387],[85.88724,25.65403],[85.88668,25.64825],[85.88853,25.64783],[85.88748,25.64115],[85.88156,25.6337],[85.8896,25.63853],[85.88976,25.64107],[85.89371,25.64408],[85.89611,25.65065],[85.90247,25.64996],[85.90512,25.6423],[85.91413,25.6377],[85.91972,25.63909],[85.9229,25.64469],[85.93613,25.64371],[85.93892,25.64681],[85.93935,25.65137],[85.94661,25.64926],[85.9511,25.64995],[85.95551,25.64217],[85.96125,25.64036],[85.96834,25.62832],[85.97343,25.62688],[85.9741,25.6175],[85.97944,25.61286],[85.99682,25.60463],[86.00245,25.59659],[86.00971,25.59689],[86.01067,25.60134],[86.0131,25.60273],[86.01461,25.61027],[86.01339,25.61179],[86.01394,25.63515],[86.02262,25.64137],[86.0238,25.6442],[86.02167,25.64822],[86.01357,25.65008],[86.01399,25.6573],[86.0228,25.65924],[86.02433,25.66291],[86.02195,25.66627],[86.01859,25.66705],[86.01154,25.66048],[86.00683,25.66232],[86.00136,25.66895],[85.99913,25.67625],[85.99936,25.68173],[86.00314,25.68445],[86.01355,25.68164],[86.01731,25.68244],[86.02684,25.68741],[86.02927,25.6929],[86.02577,25.69837],[86.01043,25.70767],[86.00929,25.71295],[86.01094,25.72357],[86.01605,25.7251],[86.02243,25.71691],[86.02621,25.71645],[86.03224,25.72202],[86.02989,25.72604],[86.03321,25.72592],[86.03291,25.72249],[86.03597,25.72138],[86.04153,25.72257],[86.04374,25.72633],[86.03963,25.73025],[86.04431,25.73378],[86.05175,25.7324],[86.05639,25.72614],[86.05982,25.72412],[86.06427,25.72701],[86.07742,25.72668],[86.08121,25.72803],[86.08299,25.73083],[86.08529,25.7303],[86.08617,25.73269],[86.0838,25.73555],[86.0773,25.73687],[86.07538,25.74176],[86.07801,25.74337],[86.08281,25.74034],[86.08387,25.74438],[86.09541,25.74335],[86.09203,25.73931],[86.09781,25.73807],[86.0977,25.73682],[86.10675,25.73775],[86.10717,25.73952],[86.11385,25.73512],[86.11431,25.73902],[86.11609,25.74017],[86.12266,25.73503],[86.13097,25.73521],[86.1336,25.74388],[86.13225,25.74501],[86.13568,25.74766],[86.13715,25.75129],[86.13078,25.75389],[86.12451,25.75053],[86.11986,25.75187],[86.11352,25.75646],[86.1053,25.7575],[86.10129,25.77091],[86.10158,25.77394],[86.10456,25.7751],[86.11654,25.77474],[86.12116,25.77261],[86.13034,25.77148],[86.12985,25.77038],[86.13476,25.76625],[86.13113,25.76265],[86.13381,25.76104],[86.13884,25.76495],[86.14744,25.76453],[86.14656,25.76011],[86.14975,25.75931],[86.15009,25.75608],[86.14839,25.7499],[86.14435,25.7455],[86.14692,25.74438],[86.14597,25.74077],[86.15167,25.73995],[86.15366,25.73643],[86.15197,25.72913],[86.14728,25.72948],[86.14648,25.72667],[86.14309,25.72719],[86.14156,25.71153],[86.14042,25.71132],[86.14182,25.71021],[86.14106,25.70683],[86.14292,25.70524],[86.14624,25.71115],[86.15248,25.71479],[86.1615,25.71368],[86.16155,25.71894],[86.1717,25.71343],[86.17707,25.71332],[86.17413,25.70953],[86.17688,25.70794],[86.17478,25.70354],[86.17929,25.69802],[86.17918,25.69388],[86.17748,25.6945],[86.1772,25.69145],[86.17899,25.68321],[86.18095,25.68214],[86.1804,25.6767],[86.18434,25.66552],[86.18352,25.66273],[86.18916,25.66041],[86.20093,25.65938],[86.21002,25.65561],[86.22052,25.65603],[86.24196,25.65182],[86.24691,25.6479],[86.25643,25.6485],[86.25761,25.64718],[86.25422,25.64394],[86.25452,25.63984],[86.25624,25.63831],[86.25513,25.6371],[86.26633,25.6369],[86.27277,25.63424],[86.27448,25.62933],[86.28568,25.63723],[86.28611,25.63931],[86.29309,25.63874],[86.2915,25.64504],[86.29236,25.65425],[86.29929,25.65392],[86.3047,25.65635],[86.31651,25.65673],[86.31692,25.65797],[86.32623,25.65653],[86.32678,25.66046],[86.33061,25.66161],[86.33181,25.66985],[86.34542,25.68253],[86.34673,25.68821],[86.35375,25.69631],[86.35912,25.69806],[86.35874,25.69973],[86.36349,25.70474],[86.37222,25.70409],[86.37707,25.71059],[86.38419,25.71118],[86.39225,25.71956],[86.39042,25.72394],[86.38249,25.72861],[86.37673,25.72963],[86.37379,25.7284],[86.3696,25.73076],[86.37075,25.73389],[86.36856,25.74124],[86.36144,25.73866],[86.35364,25.7392],[86.35016,25.73648],[86.34806,25.73835],[86.34325,25.73908],[86.33235,25.73497],[86.32616,25.73894],[86.32254,25.73738],[86.32221,25.74353],[86.31975,25.7438],[86.31755,25.74082],[86.31573,25.74219],[86.31504,25.74816],[86.30996,25.7552],[86.31119,25.75843],[86.30854,25.76066],[86.30381,25.75989],[86.30297,25.76272],[86.29936,25.76361],[86.29718,25.76203],[86.29248,25.76281],[86.29204,25.76668],[86.28754,25.76286],[86.27849,25.76013],[86.27659,25.75423],[86.27333,25.75531],[86.26918,25.75316],[86.2611,25.75406],[86.26084,25.76007],[86.25568,25.76978],[86.25026,25.77051],[86.24417,25.77396],[86.22495,25.77705],[86.2167,25.7872],[86.22808,25.79195],[86.22761,25.79352],[86.23272,25.79604],[86.23503,25.79456],[86.23671,25.796],[86.2337,25.80156],[86.23468,25.80671],[86.22486,25.80705],[86.22304,25.81129],[86.22585,25.81858],[86.22965,25.81995],[86.23108,25.82221],[86.23111,25.83362],[86.22885,25.84201],[86.23921,25.8439],[86.24284,25.85197],[86.24116,25.85377],[86.23643,25.85439],[86.23305,25.85182],[86.23291,25.85858],[86.22965,25.86124],[86.23002,25.86272],[86.2353,25.86498],[86.23575,25.86867],[86.23389,25.87161],[86.23941,25.88118],[86.23374,25.88484],[86.23073,25.89579],[86.21469,25.89244],[86.21334,25.88779],[86.20691,25.8894],[86.20545,25.8915],[86.1954,25.89229],[86.19368,25.89648],[86.18629,25.89517],[86.18556,25.89204],[86.18113,25.89216],[86.18112,25.8945],[86.17418,25.89515],[86.17541,25.88872],[86.17023,25.88769],[86.1697,25.88274],[86.16009,25.88132],[86.15679,25.88469],[86.15963,25.88819],[86.15972,25.8912],[86.15464,25.89476],[86.15379,25.89721],[86.12766,25.89804],[86.12671,25.89634],[86.12414,25.89698],[86.12262,25.89253],[86.12012,25.8942],[86.10861,25.89425],[86.10837,25.90342],[86.10362,25.90442],[86.10447,25.91001],[86.10021,25.91319],[86.09892,25.91215],[86.10015,25.90342],[86.09554,25.90303],[86.09305,25.89723],[86.09039,25.90639],[86.08699,25.90448],[86.08524,25.90861],[86.07988,25.91346],[86.0775,25.90984],[86.07486,25.91744],[86.06885,25.91515],[86.06773,25.9198],[86.06278,25.91754],[86.06074,25.923],[86.05289,25.92547],[86.0567,25.92985],[86.05606,25.93266],[86.05331,25.92967],[86.0509,25.93278],[86.04023,25.92969],[86.03823,25.93076],[86.03634,25.93282],[86.03773,25.93535],[86.0411,25.93509],[86.0458,25.93914],[86.03749,25.94505],[86.03486,25.94185],[86.02151,25.94245],[86.01058,25.93886],[86.00992,25.9419],[86.00611,25.9415],[86.00513,25.93204],[86.00181,25.9332],[86.00121,25.92777],[85.99869,25.92839],[85.99918,25.93369],[85.99185,25.93417],[85.99128,25.94221],[85.99588,25.94671],[85.9879,25.94848],[85.98715,25.95335],[85.9818,25.95408],[85.97021,25.95114],[85.96711,25.95263],[85.96645,25.95536],[85.96167,25.95571],[85.96269,25.95715],[85.96011,25.95834],[85.96085,25.96029],[85.95112,25.96224],[85.95148,25.9584],[85.95379,25.9574],[85.94806,25.95296],[85.94539,25.95302],[85.94031,25.95649],[85.94293,25.9639],[85.94123,25.96639],[85.93728,25.96342],[85.93727,25.95657],[85.9353,25.9547],[85.93029,25.95527],[85.93077,25.95955],[85.9282,25.96309],[85.92797,25.97384],[85.92211,25.97722],[85.91919,25.98158],[85.91273,25.97817],[85.91241,25.97268],[85.89444,25.98313],[85.89265,25.98632],[85.89284,25.99153],[85.89058,25.99387],[85.88208,25.99417],[85.88063,25.99028],[85.87632,25.98995],[85.87168,25.99556],[85.87352,25.9991],[85.8713,26.00367],[85.87189,26.00916],[85.86472,26.01625],[85.86538,26.02221],[85.86266,26.02307],[85.84913,26.0207],[85.84509,26.02226],[85.84598,26.03027],[85.84946,26.03292],[85.84637,26.03639],[85.84068,26.03551],[85.83431,26.0303],[85.833,26.02724],[85.82979,26.02721],[85.81933,26.03021],[85.81633,26.02896],[85.81165,26.03604],[85.79519,26.0359],[85.78519,26.04071],[85.7805,26.03703],[85.77512,26.04537],[85.76559,26.04253],[85.76569,26.0552],[85.76502,26.05255],[85.76166,26.05278],[85.76109,26.04684],[85.75577,26.04816],[85.75441,26.04683],[85.75391,26.04297],[85.75859,26.03387],[85.75812,26.03218],[85.75313,26.03322],[85.74966,26.03601],[85.7465,26.04511],[85.74251,26.04951],[85.74046,26.04883],[85.73501,26.03791],[85.73064,26.03824],[85.72887,26.04005],[85.72743,26.04694],[85.72148,26.04707],[85.71941,26.04885],[85.72422,26.05428],[85.72216,26.05883],[85.72883,26.0653],[85.72993,26.07061],[85.72687,26.0709],[85.71981,26.06729],[85.72066,26.07659],[85.71892,26.0836],[85.71604,26.08748]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"218","area_level":"District","area_name":"Saran","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.869,26.21736],[84.85902,26.22067],[84.85764,26.21577],[84.8354,26.21544],[84.82492,26.21205],[84.80155,26.21062],[84.79646,26.20809],[84.79477,26.20517],[84.79252,26.20604],[84.79026,26.2034],[84.78378,26.21054],[84.77424,26.20851],[84.76747,26.20967],[84.76425,26.20635],[84.76326,26.1992],[84.76459,26.19703],[84.77351,26.19692],[84.77694,26.19501],[84.77046,26.19112],[84.77852,26.18276],[84.77914,26.17432],[84.77069,26.17439],[84.76199,26.17217],[84.75501,26.14551],[84.75001,26.13801],[84.74544,26.1385],[84.74061,26.13658],[84.73293,26.13846],[84.73277,26.12902],[84.73081,26.12766],[84.71736,26.12868],[84.71617,26.12354],[84.71795,26.12047],[84.72424,26.11761],[84.72424,26.11212],[84.72049,26.10932],[84.72039,26.10355],[84.7163,26.09157],[84.70804,26.09237],[84.70415,26.08093],[84.69634,26.08273],[84.69351,26.0815],[84.69619,26.07935],[84.69451,26.0791],[84.67442,26.0818],[84.67317,26.07657],[84.66889,26.06978],[84.6664,26.07037],[84.66636,26.07237],[84.66026,26.07406],[84.65885,26.0726],[84.65022,26.07309],[84.63682,26.07661],[84.63433,26.07545],[84.62228,26.07813],[84.61834,26.08093],[84.61796,26.08379],[84.62014,26.08784],[84.61804,26.09051],[84.61488,26.08972],[84.61148,26.09127],[84.60851,26.08712],[84.60959,26.08516],[84.60756,26.07552],[84.60839,26.07084],[84.60572,26.06779],[84.60268,26.06828],[84.60139,26.06961],[84.59122,26.07099],[84.58708,26.07467],[84.58495,26.07077],[84.58464,26.06494],[84.58075,26.06309],[84.57866,26.05956],[84.57995,26.05759],[84.57777,26.05713],[84.57739,26.04747],[84.57363,26.04624],[84.57163,26.04325],[84.57435,26.0373],[84.56924,26.03907],[84.56594,26.03083],[84.54546,26.03109],[84.54416,26.02853],[84.54176,26.02825],[84.54007,26.02999],[84.5334,26.0303],[84.53172,26.02821],[84.51448,26.03022],[84.5108,26.03208],[84.50652,26.0268],[84.49687,26.03009],[84.49523,26.03376],[84.4917,26.03535],[84.48245,26.03127],[84.4792,26.03211],[84.47709,26.02873],[84.4724,26.02763],[84.45286,26.02892],[84.45275,26.03139],[84.44049,26.03448],[84.43657,26.03252],[84.43474,26.03339],[84.43316,26.02995],[84.42994,26.02906],[84.42809,26.03258],[84.40941,26.03288],[84.40985,26.02352],[84.40528,26.01511],[84.42486,26.01329],[84.42482,25.99956],[84.42735,25.99651],[84.43811,25.99667],[84.43879,25.99386],[84.44236,25.99289],[84.45276,25.99308],[84.44875,25.97896],[84.44505,25.98081],[84.44113,25.9792],[84.43912,25.96839],[84.43521,25.96152],[84.43755,25.95776],[84.4459,25.95355],[84.45618,25.95409],[84.46284,25.94769],[84.45688,25.94224],[84.45553,25.93522],[84.45659,25.93336],[84.459,25.93327],[84.45953,25.92753],[84.45781,25.9229],[84.45981,25.9224],[84.45964,25.9207],[84.46402,25.91939],[84.45443,25.88774],[84.45953,25.88815],[84.46015,25.88951],[84.4724,25.88171],[84.47852,25.88506],[84.49015,25.88645],[84.48949,25.88832],[84.51075,25.87176],[84.53398,25.87637],[84.54322,25.85996],[84.54066,25.85966],[84.5337,25.86403],[84.52322,25.86029],[84.53076,25.8535],[84.53052,25.83161],[84.54861,25.82854],[84.55087,25.84068],[84.55211,25.84018],[84.58178,25.82508],[84.62457,25.79217],[84.62347,25.7708],[84.61941,25.7724],[84.61835,25.77129],[84.61346,25.77577],[84.60738,25.77141],[84.60622,25.76127],[84.60296,25.76194],[84.6107,25.75469],[84.62535,25.74753],[84.63178,25.73928],[84.63465,25.72794],[84.63017,25.72885],[84.62884,25.72617],[84.62743,25.7263],[84.6112,25.73108],[84.6114,25.73249],[84.60776,25.73533],[84.60032,25.73837],[84.59952,25.72959],[84.61236,25.7297],[84.62856,25.72165],[84.62821,25.7199],[84.62245,25.72145],[84.62247,25.71577],[84.63261,25.70821],[84.65163,25.70775],[84.65806,25.71232],[84.66951,25.71382],[84.67618,25.71261],[84.69275,25.70419],[84.72515,25.70586],[84.73589,25.70765],[84.74435,25.71114],[84.76414,25.70574],[84.76484,25.69943],[84.76892,25.69703],[84.77319,25.69754],[84.77835,25.69288],[84.78145,25.69321],[84.78597,25.68637],[84.78731,25.69235],[84.79729,25.69472],[84.80521,25.69148],[84.80807,25.68699],[84.81198,25.6892],[84.82113,25.6886],[84.82208,25.69227],[84.80787,25.69384],[84.80886,25.70088],[84.82117,25.6978],[84.82428,25.69851],[84.83321,25.69438],[84.83995,25.69369],[84.84009,25.69587],[84.84504,25.69547],[84.8502,25.6975],[84.84888,25.70135],[84.85284,25.7088],[84.8599,25.71067],[84.86502,25.71792],[84.87448,25.71934],[84.87504,25.71468],[84.87746,25.71141],[84.90334,25.7204],[84.90271,25.70923],[84.9147,25.71026],[84.91927,25.70765],[84.92472,25.70851],[84.92634,25.70299],[84.93782,25.70217],[84.93862,25.70907],[84.95008,25.70445],[84.96019,25.71243],[84.96547,25.7129],[84.96607,25.71098],[84.9684,25.71037],[84.96949,25.711],[84.96926,25.71769],[84.97169,25.72202],[84.97632,25.72551],[84.98007,25.72447],[84.99417,25.73151],[84.996,25.72981],[85.0,25.73244],[85.00575,25.73288],[85.02863,25.73158],[85.04079,25.72139],[85.06714,25.71182],[85.08237,25.71059],[85.09808,25.6815],[85.10291,25.66156],[85.11107,25.64742],[85.12559,25.63121],[85.13726,25.62576],[85.1746,25.62512],[85.18804,25.62264],[85.18985,25.63129],[85.19739,25.63933],[85.1971,25.64352],[85.19162,25.65562],[85.19228,25.66861],[85.19493,25.67374],[85.19452,25.68774],[85.188,25.70764],[85.18744,25.72006],[85.185,25.72669],[85.17614,25.7397],[85.17267,25.75308],[85.17214,25.75801],[85.17587,25.76792],[85.17427,25.77606],[85.1786,25.7884],[85.1785,25.79223],[85.17176,25.80531],[85.17277,25.80914],[85.16783,25.82176],[85.16456,25.83828],[85.16086,25.84098],[85.15379,25.84038],[85.1459,25.8485],[85.12553,25.85662],[85.12076,25.86006],[85.11493,25.8676],[85.11386,25.87274],[85.11598,25.88265],[85.1149,25.89494],[85.10722,25.90194],[85.09153,25.92219],[85.07824,25.93215],[85.07203,25.95387],[85.07426,25.96729],[85.0687,25.9713],[85.05788,25.98395],[85.05894,25.98939],[85.05719,25.99184],[85.03397,25.99782],[85.02424,25.99502],[85.01592,25.99488],[85.01107,25.99826],[85.0057,26.00715],[85.0,26.00694],[84.99258,26.0124],[84.99186,26.00896],[84.98147,26.00465],[84.97787,25.99995],[84.96865,25.99448],[84.96018,25.99675],[84.95758,26.00001],[84.95547,26.00852],[84.94301,26.01275],[84.94217,26.01504],[84.93688,26.01664],[84.93511,26.01929],[84.93787,26.02065],[84.93232,26.03009],[84.93531,26.03992],[84.93104,26.04228],[84.93464,26.05108],[84.94356,26.05412],[84.94575,26.06207],[84.94904,26.06346],[84.94478,26.07213],[84.94488,26.07836],[84.94723,26.07775],[84.94606,26.0938],[84.9397,26.09446],[84.93735,26.09852],[84.94809,26.10407],[84.94407,26.10887],[84.93962,26.10862],[84.94115,26.11935],[84.91963,26.13668],[84.91415,26.14485],[84.90997,26.15481],[84.91259,26.16258],[84.91647,26.16607],[84.91775,26.17857],[84.91178,26.18386],[84.907,26.19395],[84.90183,26.19884],[84.89982,26.20717],[84.8968,26.20908],[84.89358,26.21647],[84.8864,26.21797],[84.88383,26.2146],[84.88059,26.21663],[84.87415,26.21565],[84.869,26.21736]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"219","area_level":"District","area_name":"Sheikhpura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.73929,25.273],[85.72687,25.27356],[85.72179,25.27071],[85.71929,25.26731],[85.70862,25.26746],[85.70506,25.26582],[85.70458,25.2636],[85.69958,25.26368],[85.70339,25.25658],[85.70032,25.22835],[85.71437,25.22395],[85.71489,25.22696],[85.71763,25.22674],[85.71695,25.22376],[85.7236,25.2208],[85.7254,25.21532],[85.724,25.20629],[85.72933,25.20378],[85.72924,25.19346],[85.72173,25.19508],[85.7215,25.19347],[85.72411,25.19327],[85.72026,25.19092],[85.72075,25.18796],[85.71862,25.18787],[85.72087,25.18674],[85.72043,25.18421],[85.71744,25.18434],[85.71726,25.18696],[85.71671,25.18522],[85.70337,25.18547],[85.69602,25.18797],[85.69586,25.16689],[85.70165,25.16884],[85.7033,25.16856],[85.70289,25.16592],[85.70417,25.16549],[85.7026,25.16061],[85.69363,25.16028],[85.69188,25.15712],[85.68715,25.14006],[85.68849,25.13319],[85.68021,25.12883],[85.67587,25.12867],[85.67354,25.12484],[85.6691,25.12261],[85.66865,25.11844],[85.64783,25.1203],[85.64603,25.12231],[85.63181,25.12731],[85.61814,25.1274],[85.60796,25.12562],[85.6045,25.12287],[85.60219,25.10272],[85.60763,25.10208],[85.61235,25.11241],[85.61857,25.11199],[85.62452,25.10896],[85.63181,25.09835],[85.63469,25.09696],[85.63938,25.10032],[85.64495,25.10152],[85.64752,25.10456],[85.65066,25.10476],[85.6525,25.10315],[85.65619,25.1061],[85.66083,25.1062],[85.66166,25.10333],[85.66667,25.10327],[85.66997,25.10743],[85.66955,25.10899],[85.68053,25.11329],[85.67992,25.11031],[85.68192,25.10963],[85.68363,25.11123],[85.69164,25.10524],[85.68984,25.10097],[85.69245,25.09926],[85.69216,25.0942],[85.6938,25.09375],[85.69509,25.09678],[85.69792,25.0976],[85.69852,25.10008],[85.7111,25.09769],[85.71196,25.09223],[85.71697,25.0917],[85.71799,25.09403],[85.72187,25.0934],[85.72183,25.09446],[85.73281,25.0974],[85.74046,25.09649],[85.74577,25.09784],[85.74469,25.10498],[85.74871,25.10325],[85.75045,25.10833],[85.7532,25.10643],[85.75482,25.10704],[85.75577,25.10046],[85.76446,25.09904],[85.76882,25.0975],[85.77013,25.09489],[85.77328,25.09473],[85.77131,25.08376],[85.77449,25.08245],[85.77417,25.07945],[85.76646,25.08001],[85.76504,25.07602],[85.76773,25.07351],[85.76863,25.06874],[85.77133,25.06839],[85.77061,25.06188],[85.7671,25.06206],[85.76477,25.04694],[85.76895,25.04024],[85.76615,25.04022],[85.76577,25.0366],[85.76395,25.03632],[85.76378,25.03173],[85.76697,25.03143],[85.76685,25.02899],[85.76377,25.02887],[85.76354,25.02473],[85.77129,25.02373],[85.7695,25.01719],[85.75878,25.01872],[85.75878,25.01647],[85.74963,25.01768],[85.74829,25.01489],[85.73804,25.01622],[85.73728,25.0066],[85.74127,25.00584],[85.74115,25.00416],[85.75168,25.0027],[85.74643,24.99309],[85.75733,24.99208],[85.75752,24.99419],[85.76316,24.99296],[85.76288,25.00001],[85.7645,25.00346],[85.76798,25.00383],[85.76806,25.00778],[85.78025,25.00576],[85.77791,24.99219],[85.78176,24.99203],[85.78222,24.98856],[85.78738,24.9867],[85.78684,24.9832],[85.78443,24.98195],[85.79523,24.97642],[85.7982,24.97747],[85.80151,24.98784],[85.80534,24.98832],[85.80847,24.99393],[85.81085,24.99423],[85.81186,24.99245],[85.81544,24.99641],[85.81855,24.99584],[85.81895,24.99723],[85.82572,24.99857],[85.82898,24.99484],[85.8277,24.99085],[85.83319,24.9892],[85.83228,24.98632],[85.83701,24.98721],[85.83901,24.99019],[85.84285,24.98775],[85.85079,24.98744],[85.85168,24.99253],[85.85603,24.99659],[85.86065,24.99567],[85.86107,24.9938],[85.86934,24.99333],[85.87184,24.99705],[85.88092,24.99735],[85.87999,24.99965],[85.88599,25.00179],[85.88614,25.00356],[85.89359,25.00847],[85.90799,25.00601],[85.90955,25.00385],[85.9084,25.0008],[85.90987,25.00096],[85.9161,25.00654],[85.91685,25.01388],[85.92096,25.01507],[85.94819,25.00689],[85.94736,25.00265],[85.94423,25.00142],[85.94369,24.99969],[85.94309,24.9913],[85.94589,24.98769],[85.95961,24.98827],[85.96703,24.99299],[85.9671,24.99568],[85.97158,24.9984],[85.97557,24.99745],[85.9777,25.0033],[85.97646,25.0045],[85.98295,25.0109],[85.9827,25.01383],[85.9847,25.01296],[85.98535,25.01406],[85.98354,25.01742],[85.98552,25.02314],[85.97264,25.02987],[85.97262,25.04229],[85.97788,25.05844],[85.97512,25.06017],[85.97626,25.07209],[85.96771,25.07586],[85.96789,25.07865],[85.96224,25.07908],[85.96099,25.08748],[85.96959,25.09086],[85.96963,25.09214],[85.96533,25.0913],[85.96062,25.09569],[85.95098,25.09513],[85.95343,25.09781],[85.95129,25.09945],[85.95337,25.10118],[85.95108,25.1061],[85.95217,25.11529],[85.95729,25.11645],[85.95486,25.11768],[85.95882,25.12377],[85.95894,25.12667],[85.95546,25.12894],[85.95483,25.1312],[85.95885,25.13965],[85.97349,25.13913],[85.97715,25.14154],[85.97768,25.14444],[85.98088,25.14607],[85.97568,25.14762],[85.97725,25.14922],[85.98103,25.14812],[85.9828,25.14946],[85.97714,25.15235],[85.9781,25.15382],[85.98282,25.15259],[85.97978,25.15493],[85.98328,25.15531],[85.98306,25.15661],[85.97908,25.15829],[85.9787,25.1612],[85.98174,25.16141],[85.98235,25.1643],[85.97999,25.16505],[85.9803,25.16761],[85.98693,25.16762],[85.99003,25.16561],[85.9935,25.16709],[85.99127,25.16985],[85.99367,25.17296],[85.99323,25.17521],[85.99022,25.17495],[85.9881,25.17694],[85.98484,25.17409],[85.98183,25.1802],[86.00635,25.1778],[86.00695,25.1901],[86.0173,25.19389],[86.01492,25.20383],[86.01563,25.20847],[86.01825,25.20961],[86.01729,25.21543],[86.0132,25.2174],[86.0,25.21173],[85.99102,25.21327],[85.99232,25.20998],[85.9883,25.20045],[85.99068,25.19734],[85.98925,25.19378],[85.97734,25.19259],[85.97247,25.18802],[85.96712,25.18846],[85.96583,25.18916],[85.96559,25.19562],[85.9558,25.19455],[85.95321,25.19639],[85.95276,25.20181],[85.94934,25.20271],[85.95491,25.21607],[85.94988,25.21621],[85.94691,25.21922],[85.94361,25.21927],[85.9436,25.22638],[85.93914,25.23026],[85.93045,25.22995],[85.93102,25.23566],[85.9267,25.23798],[85.92677,25.24189],[85.92179,25.23529],[85.91365,25.23163],[85.91332,25.22922],[85.90999,25.22659],[85.9012,25.22701],[85.90128,25.2233],[85.89225,25.22297],[85.88677,25.22624],[85.87812,25.22793],[85.87836,25.23603],[85.87225,25.23425],[85.87204,25.23785],[85.85716,25.23781],[85.8512,25.23534],[85.84425,25.23469],[85.84449,25.22667],[85.84264,25.22844],[85.83829,25.22626],[85.83515,25.22039],[85.83468,25.21564],[85.82295,25.21429],[85.82155,25.21609],[85.82325,25.2214],[85.81691,25.22239],[85.81673,25.22135],[85.8025,25.22469],[85.80036,25.22312],[85.80035,25.21305],[85.78977,25.21302],[85.78913,25.22618],[85.79252,25.23438],[85.7928,25.24045],[85.79548,25.24212],[85.79599,25.24648],[85.78954,25.24451],[85.78582,25.2407],[85.77288,25.23878],[85.77452,25.25272],[85.77625,25.25331],[85.77526,25.25691],[85.77709,25.26025],[85.76416,25.25887],[85.76209,25.25626],[85.73931,25.25756],[85.73929,25.273]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"22","area_level":"District","area_name":"Mandi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.80261,32.07036],[76.80152,32.07302],[76.79784,32.06995],[76.78675,32.0726],[76.77913,32.06451],[76.77553,32.06738],[76.77147,32.06276],[76.76523,32.06068],[76.76011,32.0518],[76.74758,32.04251],[76.74555,32.03851],[76.73983,32.03557],[76.73587,32.02919],[76.73105,32.02699],[76.72839,32.02861],[76.72872,32.03161],[76.72029,32.03103],[76.70563,32.03641],[76.70345,32.04073],[76.70495,32.04722],[76.69967,32.04638],[76.69213,32.05179],[76.69105,32.05067],[76.68588,32.05158],[76.6752,32.04746],[76.67379,32.03929],[76.66696,32.03896],[76.66684,32.0357],[76.66049,32.02827],[76.66342,32.01679],[76.66277,32.01258],[76.66725,32.00142],[76.6697,32.0005],[76.67153,31.99509],[76.67526,31.99305],[76.67971,31.98708],[76.68452,31.97913],[76.68506,31.9738],[76.68753,31.97232],[76.68785,31.96653],[76.68537,31.96674],[76.68451,31.96323],[76.68845,31.95349],[76.68948,31.94687],[76.68813,31.94412],[76.69437,31.93933],[76.69592,31.93377],[76.69404,31.93106],[76.68871,31.92969],[76.68531,31.9222],[76.68364,31.91255],[76.67949,31.90782],[76.67299,31.90529],[76.68088,31.89734],[76.67959,31.89555],[76.67577,31.89794],[76.67695,31.89004],[76.67281,31.88282],[76.68103,31.874],[76.68011,31.87074],[76.66693,31.87148],[76.65558,31.86835],[76.64693,31.87249],[76.63917,31.87358],[76.63809,31.87199],[76.6329,31.86117],[76.63238,31.8493],[76.62947,31.84641],[76.62771,31.84095],[76.62798,31.83049],[76.63069,31.82193],[76.62322,31.80723],[76.62398,31.80258],[76.62037,31.79841],[76.62325,31.79119],[76.62247,31.78564],[76.62688,31.78224],[76.62739,31.77337],[76.63407,31.76492],[76.6349,31.75711],[76.63357,31.75288],[76.63827,31.74647],[76.64966,31.74137],[76.65409,31.74158],[76.66202,31.73835],[76.66792,31.73784],[76.67221,31.73526],[76.67453,31.7306],[76.67074,31.71995],[76.67587,31.71212],[76.67881,31.7123],[76.68652,31.70673],[76.6857,31.69897],[76.69062,31.69745],[76.68972,31.69118],[76.68713,31.68621],[76.69108,31.68372],[76.69297,31.67886],[76.69713,31.67418],[76.70084,31.67479],[76.70868,31.67287],[76.71403,31.66945],[76.7223,31.66737],[76.72446,31.66442],[76.72516,31.6571],[76.71628,31.63783],[76.71651,31.63358],[76.71453,31.62921],[76.71594,31.61637],[76.73084,31.58091],[76.73074,31.57322],[76.72686,31.56276],[76.73188,31.56288],[76.73524,31.56085],[76.72752,31.55255],[76.72941,31.5495],[76.72865,31.5448],[76.73172,31.54184],[76.72265,31.54093],[76.7346,31.53491],[76.73288,31.5324],[76.73839,31.52548],[76.73885,31.5208],[76.73618,31.51948],[76.73393,31.52077],[76.73074,31.51655],[76.74217,31.51447],[76.74757,31.5174],[76.76006,31.51664],[76.76551,31.51806],[76.77396,31.51394],[76.77626,31.5081],[76.78393,31.50301],[76.78746,31.49792],[76.78813,31.4885],[76.78677,31.48624],[76.78504,31.48712],[76.78447,31.4838],[76.78235,31.48436],[76.78197,31.4798],[76.78608,31.47798],[76.79097,31.47937],[76.7922,31.47755],[76.79131,31.47529],[76.79562,31.47493],[76.79512,31.46769],[76.79751,31.46518],[76.79648,31.45992],[76.80194,31.45467],[76.80167,31.45184],[76.79838,31.44986],[76.7984,31.44714],[76.79601,31.44796],[76.79548,31.45128],[76.79223,31.45065],[76.7957,31.44747],[76.79719,31.44123],[76.79981,31.44308],[76.80306,31.44011],[76.80174,31.43626],[76.79971,31.43511],[76.80336,31.42982],[76.80109,31.42436],[76.80214,31.42091],[76.80933,31.42326],[76.81422,31.42184],[76.81992,31.41748],[76.82864,31.42156],[76.83479,31.42184],[76.84694,31.41362],[76.85529,31.41055],[76.87587,31.4134],[76.88227,31.40146],[76.88286,31.39284],[76.88138,31.38425],[76.87704,31.38106],[76.86821,31.3847],[76.86728,31.38067],[76.86371,31.37813],[76.8736,31.37044],[76.87653,31.36081],[76.87222,31.35589],[76.87543,31.35065],[76.8813,31.35322],[76.88716,31.3591],[76.89605,31.35996],[76.89931,31.36386],[76.90695,31.36148],[76.92086,31.36504],[76.94298,31.34418],[76.94419,31.33887],[76.94115,31.33485],[76.94188,31.33283],[76.94947,31.33238],[76.95366,31.32855],[76.96489,31.32407],[76.96784,31.32115],[76.96802,31.31649],[76.97086,31.31269],[76.99536,31.30128],[77.01852,31.28618],[77.02093,31.28413],[77.02255,31.27876],[77.03068,31.27278],[77.04834,31.2677],[77.05441,31.26761],[77.06281,31.2586],[77.07291,31.25868],[77.07723,31.24986],[77.0849,31.24515],[77.10556,31.24091],[77.12797,31.23103],[77.13589,31.23021],[77.1406,31.23175],[77.15669,31.23198],[77.16876,31.23481],[77.18211,31.24432],[77.18974,31.25451],[77.19459,31.24329],[77.19923,31.24219],[77.20905,31.2479],[77.21985,31.26127],[77.23192,31.25996],[77.24126,31.25525],[77.2434,31.25154],[77.2455,31.25118],[77.25059,31.25894],[77.2583,31.26437],[77.26524,31.26697],[77.2686,31.2726],[77.27292,31.27267],[77.27488,31.26771],[77.28126,31.2639],[77.28794,31.26852],[77.30308,31.26715],[77.30539,31.26817],[77.3066,31.26932],[77.30556,31.27561],[77.30714,31.27847],[77.31855,31.28382],[77.31974,31.28955],[77.32218,31.29207],[77.33092,31.29249],[77.33355,31.29436],[77.33746,31.30707],[77.33704,31.31582],[77.3395,31.31884],[77.34024,31.32422],[77.34525,31.32725],[77.34324,31.3345],[77.34452,31.33711],[77.35041,31.34065],[77.35585,31.35283],[77.37243,31.36011],[77.37859,31.35749],[77.38291,31.3601],[77.38506,31.36302],[77.38484,31.36833],[77.38913,31.37555],[77.38662,31.3804],[77.38803,31.38388],[77.38754,31.38634],[77.38492,31.38792],[77.38523,31.39196],[77.38137,31.39343],[77.38118,31.39981],[77.38257,31.40077],[77.38014,31.40343],[77.3812,31.40782],[77.38594,31.41099],[77.38546,31.41254],[77.37906,31.41548],[77.37617,31.41947],[77.37134,31.42049],[77.36691,31.42516],[77.36313,31.42594],[77.36067,31.43081],[77.34919,31.43885],[77.3466,31.4453],[77.33728,31.44859],[77.32928,31.45595],[77.32373,31.47394],[77.32126,31.47746],[77.32324,31.48458],[77.3227,31.48806],[77.31751,31.49393],[77.31924,31.49571],[77.31668,31.5044],[77.31444,31.50704],[77.31543,31.51114],[77.31355,31.5169],[77.31387,31.5226],[77.31679,31.52917],[77.31602,31.53273],[77.31452,31.53721],[77.30485,31.54347],[77.29889,31.55196],[77.30332,31.56464],[77.30349,31.57498],[77.30192,31.57815],[77.30388,31.5854],[77.30326,31.58842],[77.29735,31.59429],[77.30232,31.59973],[77.3031,31.60244],[77.3019,31.60457],[77.30404,31.60728],[77.30392,31.6116],[77.30617,31.61669],[77.3036,31.62116],[77.30545,31.62391],[77.30074,31.62956],[77.30109,31.63174],[77.29856,31.63274],[77.30151,31.637],[77.30132,31.64381],[77.29577,31.65122],[77.29811,31.65565],[77.30041,31.65668],[77.29978,31.66036],[77.30263,31.66316],[77.30269,31.66796],[77.29827,31.67327],[77.29396,31.67409],[77.29316,31.67681],[77.28736,31.68024],[77.28728,31.68557],[77.27958,31.69064],[77.27853,31.69365],[77.26128,31.70302],[77.26128,31.70563],[77.25723,31.70982],[77.25349,31.70922],[77.25132,31.71172],[77.24878,31.71095],[77.24621,31.71281],[77.24372,31.71124],[77.2337,31.721],[77.22102,31.72486],[77.21569,31.72268],[77.21351,31.72544],[77.20835,31.73988],[77.20988,31.7486],[77.20579,31.75448],[77.20751,31.75961],[77.20183,31.76628],[77.20179,31.77072],[77.19895,31.77617],[77.19391,31.77615],[77.19733,31.7853],[77.1967,31.78962],[77.1927,31.79209],[77.1928,31.7973],[77.18632,31.81163],[77.1879,31.81898],[77.18524,31.82086],[77.17514,31.8219],[77.17339,31.82348],[77.17339,31.82645],[77.18017,31.83635],[77.17784,31.8416],[77.16437,31.83874],[77.15901,31.83502],[77.15542,31.84009],[77.12485,31.83635],[77.11357,31.83864],[77.10279,31.83645],[77.09766,31.83877],[77.09199,31.83722],[77.08196,31.82698],[77.0773,31.83723],[77.06731,31.83498],[77.05776,31.83775],[77.05488,31.84803],[77.06023,31.85493],[77.05891,31.85934],[77.04912,31.86795],[77.04645,31.87537],[77.03685,31.88156],[77.03674,31.88388],[77.02522,31.90178],[77.02161,31.92166],[77.01132,31.93307],[77.00507,31.93413],[76.99932,31.94507],[77.00025,31.95026],[76.99676,31.95744],[76.98901,31.96443],[76.9855,31.97209],[76.97841,31.97349],[76.97455,31.98122],[76.97605,31.98728],[76.97391,31.99602],[76.97825,31.99979],[76.97801,32.01155],[76.97389,32.01578],[76.97077,32.0241],[76.95947,32.02608],[76.94841,32.03435],[76.94834,32.03673],[76.94275,32.04119],[76.93871,32.04256],[76.93922,32.04603],[76.93736,32.04935],[76.93906,32.0538],[76.93552,32.06213],[76.92173,32.05915],[76.91022,32.06131],[76.90321,32.05897],[76.89845,32.05991],[76.8753,32.0544],[76.86909,32.04915],[76.86517,32.05072],[76.85749,32.05057],[76.84204,32.039],[76.83986,32.0434],[76.83672,32.04367],[76.83258,32.04761],[76.82524,32.04847],[76.80987,32.06063],[76.80216,32.0634],[76.80261,32.07036]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"220","area_level":"District","area_name":"Sheohar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.31726,26.66152],[85.31546,26.66098],[85.31278,26.6558],[85.2899,26.65877],[85.28485,26.65491],[85.28231,26.64694],[85.27062,26.64976],[85.26334,26.64656],[85.26455,26.64086],[85.26698,26.6398],[85.2682,26.63556],[85.27519,26.63265],[85.27597,26.63021],[85.27039,26.62959],[85.27005,26.62109],[85.26811,26.61855],[85.26954,26.61622],[85.26678,26.61198],[85.25935,26.61225],[85.26195,26.59335],[85.26089,26.58733],[85.24775,26.5732],[85.2324,26.5714],[85.23348,26.56654],[85.23953,26.56168],[85.23459,26.56105],[85.23105,26.55699],[85.23308,26.5495],[85.22431,26.55134],[85.22078,26.54907],[85.21679,26.53854],[85.2178,26.53558],[85.22293,26.53142],[85.22308,26.52355],[85.21939,26.51938],[85.22364,26.50949],[85.22337,26.50625],[85.2214,26.50406],[85.21697,26.50455],[85.21668,26.50323],[85.21033,26.5022],[85.20717,26.49995],[85.1847,26.49887],[85.18111,26.49662],[85.18184,26.49169],[85.17843,26.48764],[85.18615,26.47892],[85.18388,26.47308],[85.18796,26.47201],[85.18929,26.4694],[85.19876,26.46695],[85.20046,26.46234],[85.19919,26.45763],[85.20963,26.45418],[85.21395,26.44993],[85.21299,26.44634],[85.20642,26.44831],[85.20471,26.44699],[85.21172,26.44172],[85.21668,26.43207],[85.20863,26.43422],[85.20604,26.42644],[85.22633,26.4253],[85.22754,26.41975],[85.22648,26.41782],[85.23103,26.41412],[85.23293,26.41437],[85.23064,26.41663],[85.233,26.42395],[85.23467,26.4239],[85.23559,26.42088],[85.2375,26.41994],[85.24266,26.42089],[85.24538,26.41816],[85.24268,26.41287],[85.24385,26.41051],[85.24967,26.4188],[85.25056,26.41738],[85.25388,26.41858],[85.25884,26.41374],[85.25884,26.41202],[85.25027,26.40835],[85.25009,26.40274],[85.25264,26.39992],[85.26325,26.4013],[85.26371,26.3927],[85.2715,26.38832],[85.27453,26.38725],[85.27398,26.39328],[85.27774,26.39402],[85.27866,26.39688],[85.28278,26.39571],[85.28214,26.3896],[85.28435,26.38663],[85.28324,26.38158],[85.2848,26.37977],[85.28829,26.37935],[85.29074,26.37169],[85.2812,26.37013],[85.279,26.36492],[85.28276,26.36244],[85.28707,26.36401],[85.28716,26.36195],[85.29211,26.36219],[85.29569,26.35765],[85.29413,26.35625],[85.2878,26.35666],[85.2845,26.3584],[85.28083,26.35559],[85.27956,26.35174],[85.2808,26.34531],[85.28259,26.34334],[85.28541,26.34629],[85.28879,26.35456],[85.29907,26.344],[85.30747,26.34962],[85.31419,26.34872],[85.31727,26.34672],[85.32646,26.35017],[85.32779,26.34826],[85.32616,26.33513],[85.33143,26.3281],[85.33451,26.32639],[85.33573,26.32976],[85.33465,26.34347],[85.33937,26.34068],[85.33955,26.34477],[85.34823,26.34566],[85.34929,26.34346],[85.34774,26.34107],[85.35223,26.336],[85.35376,26.33721],[85.35209,26.34449],[85.36195,26.34642],[85.36954,26.34195],[85.37443,26.33178],[85.37512,26.32504],[85.38515,26.32862],[85.38293,26.33308],[85.38018,26.33393],[85.37819,26.3394],[85.37955,26.33986],[85.38135,26.35083],[85.38508,26.35134],[85.38705,26.35362],[85.38264,26.35518],[85.38149,26.35388],[85.37359,26.35734],[85.37553,26.36285],[85.3718,26.36395],[85.36707,26.36143],[85.36179,26.36443],[85.36477,26.38171],[85.36809,26.38831],[85.37341,26.39145],[85.3748,26.40043],[85.37755,26.40546],[85.37655,26.41307],[85.37178,26.4141],[85.366,26.41146],[85.36541,26.41486],[85.36724,26.41658],[85.3699,26.42554],[85.36826,26.4271],[85.36214,26.4276],[85.3595,26.43286],[85.36244,26.44306],[85.36514,26.44471],[85.36234,26.44983],[85.37249,26.46848],[85.36786,26.47161],[85.36382,26.47864],[85.36672,26.48472],[85.36518,26.48402],[85.35872,26.48663],[85.36012,26.49229],[85.36306,26.49591],[85.361,26.508],[85.38397,26.50261],[85.39008,26.50473],[85.39746,26.49966],[85.40278,26.50254],[85.40079,26.50651],[85.39789,26.50836],[85.38617,26.50765],[85.38403,26.50937],[85.382,26.51691],[85.386,26.52144],[85.38903,26.52185],[85.3966,26.51331],[85.40026,26.51365],[85.40179,26.51585],[85.39901,26.51674],[85.40009,26.51959],[85.39889,26.52113],[85.39177,26.52272],[85.39486,26.52618],[85.39436,26.52922],[85.38083,26.53967],[85.38005,26.54668],[85.3749,26.5478],[85.37281,26.55135],[85.36706,26.54543],[85.36161,26.54509],[85.36424,26.55454],[85.36769,26.5557],[85.37347,26.55376],[85.38014,26.555],[85.38266,26.56219],[85.3769,26.5556],[85.37508,26.55584],[85.37416,26.55802],[85.37479,26.56259],[85.37903,26.56558],[85.37766,26.57018],[85.38028,26.57009],[85.38169,26.56653],[85.38506,26.5644],[85.39064,26.56925],[85.38877,26.57585],[85.38142,26.58091],[85.37801,26.58122],[85.37333,26.57607],[85.36297,26.57456],[85.35345,26.58069],[85.35459,26.58302],[85.36156,26.58569],[85.36363,26.58846],[85.36212,26.59546],[85.36006,26.59503],[85.36003,26.59627],[85.35662,26.59039],[85.35375,26.59171],[85.35541,26.59448],[85.35484,26.60077],[85.36161,26.60081],[85.36179,26.60333],[85.35703,26.6061],[85.35656,26.60885],[85.36338,26.6154],[85.36777,26.61528],[85.36893,26.61966],[85.3675,26.62177],[85.36253,26.62132],[85.36255,26.6265],[85.36456,26.63103],[85.35975,26.63474],[85.35904,26.64115],[85.3511,26.64466],[85.35158,26.64809],[85.34475,26.65214],[85.33833,26.65337],[85.33741,26.65558],[85.33474,26.65656],[85.32915,26.65692],[85.32643,26.65459],[85.31726,26.66152]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"221","area_level":"District","area_name":"Sitamarhi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.67599,26.84475],[85.64242,26.85327],[85.63455,26.87221],[85.6239,26.87378],[85.60708,26.85753],[85.58566,26.84736],[85.58634,26.85279],[85.58387,26.85813],[85.57826,26.85675],[85.57864,26.85915],[85.57556,26.86099],[85.57237,26.85744],[85.56598,26.8411],[85.55783,26.84431],[85.55365,26.83452],[85.54329,26.83838],[85.51971,26.81455],[85.50713,26.81668],[85.4977,26.8119],[85.49892,26.81041],[85.49686,26.8092],[85.49795,26.80776],[85.49548,26.80156],[85.4968,26.79925],[85.49564,26.79703],[85.47918,26.80215],[85.4779,26.79288],[85.47348,26.79017],[85.4653,26.78801],[85.46416,26.78889],[85.45776,26.7847],[85.4591,26.7844],[85.45802,26.78349],[85.45191,26.78138],[85.43267,26.79009],[85.42997,26.78677],[85.42618,26.78608],[85.41843,26.79034],[85.40774,26.79135],[85.40291,26.78314],[85.39812,26.77886],[85.39244,26.7754],[85.38444,26.77426],[85.37511,26.76091],[85.37083,26.75836],[85.36816,26.75865],[85.36175,26.7628],[85.35539,26.76013],[85.33451,26.74167],[85.32289,26.74522],[85.31917,26.74927],[85.3071,26.75194],[85.26056,26.75538],[85.25443,26.75807],[85.25401,26.75233],[85.25849,26.75091],[85.25572,26.7409],[85.25168,26.73586],[85.25949,26.73057],[85.25848,26.72654],[85.26095,26.72236],[85.25902,26.7201],[85.25647,26.72099],[85.25564,26.71844],[85.25822,26.71616],[85.25805,26.71121],[85.26093,26.70963],[85.25956,26.70315],[85.2616,26.698],[85.25986,26.69112],[85.25565,26.69427],[85.25292,26.68536],[85.2466,26.68458],[85.23951,26.67911],[85.23687,26.66855],[85.23896,26.66454],[85.24471,26.6602],[85.24813,26.66361],[85.24784,26.66936],[85.25147,26.67072],[85.26102,26.6607],[85.26686,26.65727],[85.26726,26.65219],[85.27017,26.65299],[85.27062,26.64976],[85.28231,26.64694],[85.28485,26.65491],[85.2899,26.65877],[85.31278,26.6558],[85.31665,26.66157],[85.31909,26.66128],[85.32643,26.65459],[85.32915,26.65692],[85.33474,26.65656],[85.33776,26.65525],[85.33772,26.65366],[85.34404,26.65246],[85.35119,26.64847],[85.3511,26.64466],[85.35904,26.64115],[85.35975,26.63474],[85.36456,26.63103],[85.36255,26.6265],[85.36253,26.62132],[85.3675,26.62177],[85.36893,26.61966],[85.36777,26.61528],[85.36338,26.6154],[85.35656,26.60885],[85.35703,26.6061],[85.36179,26.60333],[85.36161,26.60081],[85.35484,26.60077],[85.35541,26.59448],[85.35375,26.59171],[85.35662,26.59039],[85.36003,26.59627],[85.36006,26.59503],[85.36212,26.59546],[85.36363,26.58846],[85.36156,26.58569],[85.35459,26.58302],[85.35345,26.58069],[85.36297,26.57456],[85.37333,26.57607],[85.37957,26.58132],[85.38491,26.57941],[85.38939,26.57473],[85.39064,26.56925],[85.38608,26.56463],[85.38226,26.56592],[85.38028,26.57009],[85.37731,26.56983],[85.37903,26.56558],[85.37479,26.56259],[85.37416,26.55802],[85.37508,26.55584],[85.3769,26.5556],[85.38266,26.56219],[85.38014,26.555],[85.37347,26.55376],[85.36769,26.5557],[85.36424,26.55454],[85.36161,26.54509],[85.36706,26.54543],[85.37281,26.55135],[85.3749,26.5478],[85.38005,26.54668],[85.38083,26.53967],[85.39436,26.52922],[85.39486,26.52618],[85.39177,26.52272],[85.39889,26.52113],[85.40009,26.51959],[85.39901,26.51674],[85.40179,26.51585],[85.40099,26.5141],[85.39731,26.51301],[85.38976,26.52143],[85.386,26.52144],[85.382,26.51691],[85.38403,26.50937],[85.38971,26.50718],[85.39867,26.5081],[85.40278,26.50254],[85.39746,26.49966],[85.39008,26.50473],[85.38397,26.50261],[85.361,26.508],[85.36306,26.49591],[85.36012,26.49229],[85.35872,26.48663],[85.36518,26.48402],[85.36672,26.48472],[85.36382,26.47864],[85.36786,26.47161],[85.37249,26.46848],[85.36234,26.44983],[85.36514,26.44471],[85.36244,26.44306],[85.3595,26.43286],[85.36214,26.4276],[85.36826,26.4271],[85.3699,26.42554],[85.36724,26.41658],[85.36541,26.41486],[85.366,26.41146],[85.37178,26.4141],[85.37655,26.41307],[85.37755,26.40546],[85.3748,26.40043],[85.37341,26.39145],[85.36809,26.38831],[85.36477,26.38171],[85.36179,26.36443],[85.36707,26.36143],[85.3718,26.36395],[85.37553,26.36285],[85.37359,26.35734],[85.38149,26.35388],[85.38264,26.35518],[85.38705,26.35362],[85.38508,26.35134],[85.38135,26.35083],[85.37955,26.33986],[85.37819,26.3394],[85.38018,26.33393],[85.38293,26.33308],[85.38515,26.32862],[85.37512,26.32504],[85.37474,26.31431],[85.38428,26.30835],[85.39337,26.30701],[85.38781,26.3201],[85.3853,26.32243],[85.38132,26.32204],[85.38279,26.32446],[85.38684,26.32408],[85.39022,26.32186],[85.39686,26.31014],[85.40129,26.31755],[85.4094,26.3183],[85.40863,26.31498],[85.41486,26.30437],[85.41193,26.30083],[85.39913,26.30535],[85.39785,26.30268],[85.39871,26.29998],[85.40309,26.29525],[85.39499,26.29256],[85.39127,26.28883],[85.39104,26.28208],[85.39296,26.27911],[85.39654,26.28006],[85.40138,26.2916],[85.40678,26.29297],[85.41096,26.28917],[85.40291,26.28853],[85.40594,26.28397],[85.4052,26.28223],[85.40847,26.27434],[85.4116,26.27149],[85.41588,26.27877],[85.42049,26.28247],[85.42253,26.28861],[85.42702,26.29183],[85.42779,26.28986],[85.42373,26.28276],[85.42649,26.27706],[85.42144,26.27527],[85.42028,26.27185],[85.42205,26.27147],[85.43191,26.27697],[85.4405,26.28346],[85.44081,26.28092],[85.43578,26.27486],[85.43625,26.27059],[85.43825,26.26961],[85.44168,26.27991],[85.44402,26.27973],[85.4481,26.291],[85.45279,26.29061],[85.45603,26.3013],[85.46133,26.30114],[85.46356,26.31186],[85.46184,26.31535],[85.4624,26.31992],[85.46545,26.32075],[85.46759,26.3274],[85.47085,26.32674],[85.46941,26.33049],[85.46636,26.33045],[85.46585,26.3321],[85.46988,26.3345],[85.47462,26.33335],[85.47795,26.33477],[85.47905,26.34638],[85.48143,26.34699],[85.48169,26.3485],[85.4847,26.34834],[85.48628,26.35412],[85.49333,26.35415],[85.49483,26.36242],[85.50115,26.36221],[85.50172,26.37204],[85.50002,26.37503],[85.50426,26.38075],[85.50872,26.3816],[85.51763,26.37784],[85.51745,26.37552],[85.52078,26.37411],[85.52426,26.37453],[85.52792,26.37798],[85.53129,26.37877],[85.53221,26.37093],[85.53799,26.37152],[85.54512,26.36961],[85.55009,26.37154],[85.55725,26.38511],[85.56573,26.38465],[85.56829,26.38856],[85.57903,26.39323],[85.58215,26.38403],[85.57884,26.37808],[85.57841,26.37264],[85.5759,26.37137],[85.57305,26.36647],[85.57534,26.36187],[85.58049,26.36317],[85.5843,26.36202],[85.59119,26.35519],[85.60244,26.35088],[85.60645,26.35165],[85.60798,26.34939],[85.61158,26.34963],[85.61684,26.34056],[85.61629,26.33921],[85.61396,26.34061],[85.61116,26.33966],[85.61029,26.33496],[85.61139,26.33331],[85.61527,26.33246],[85.61714,26.33492],[85.62128,26.33416],[85.62619,26.33626],[85.62941,26.33282],[85.63346,26.33279],[85.63506,26.32783],[85.632,26.32197],[85.62846,26.31934],[85.63172,26.3161],[85.63628,26.31921],[85.64229,26.31822],[85.64924,26.32266],[85.65115,26.31776],[85.65742,26.31908],[85.65944,26.31709],[85.66517,26.31669],[85.66622,26.31488],[85.67198,26.31271],[85.6781,26.32001],[85.68235,26.32064],[85.68722,26.31994],[85.68817,26.317],[85.69088,26.31787],[85.69388,26.31187],[85.6935,26.3087],[85.69726,26.30478],[85.6991,26.30753],[85.70289,26.30682],[85.7037,26.30497],[85.70718,26.30833],[85.70967,26.30754],[85.71095,26.31181],[85.71393,26.31289],[85.72222,26.31274],[85.7223,26.30707],[85.7267,26.30847],[85.7281,26.31028],[85.7249,26.31408],[85.72463,26.31679],[85.72979,26.31484],[85.73404,26.32224],[85.72875,26.32494],[85.72738,26.32761],[85.72726,26.33201],[85.73022,26.34007],[85.72867,26.34324],[85.72076,26.34938],[85.70814,26.35003],[85.70747,26.35187],[85.70095,26.35153],[85.70102,26.33666],[85.69479,26.34135],[85.69427,26.34339],[85.68608,26.34489],[85.68553,26.34907],[85.67683,26.35066],[85.67707,26.35233],[85.68205,26.35583],[85.68937,26.35324],[85.7004,26.3521],[85.70322,26.35282],[85.70429,26.35576],[85.71138,26.35573],[85.71468,26.3577],[85.71505,26.36046],[85.7101,26.36012],[85.70577,26.36209],[85.70269,26.36624],[85.70275,26.36944],[85.70037,26.37111],[85.69978,26.37639],[85.69621,26.37431],[85.69088,26.37584],[85.69489,26.38975],[85.69694,26.39038],[85.6874,26.40159],[85.68919,26.40856],[85.68842,26.41364],[85.69135,26.41517],[85.69705,26.41433],[85.70273,26.41965],[85.70588,26.42054],[85.70795,26.42888],[85.71214,26.43471],[85.70589,26.43763],[85.70577,26.4439],[85.709,26.44354],[85.70895,26.44512],[85.71112,26.44474],[85.71148,26.44638],[85.71493,26.44348],[85.72281,26.44622],[85.72624,26.44229],[85.73437,26.43862],[85.73428,26.43516],[85.73802,26.4339],[85.76861,26.43258],[85.76918,26.43631],[85.76771,26.43773],[85.7719,26.43944],[85.77459,26.44539],[85.76636,26.44731],[85.7553,26.45348],[85.75391,26.46421],[85.75178,26.46668],[85.75482,26.47212],[85.76526,26.47071],[85.7681,26.46603],[85.7761,26.46174],[85.77669,26.46304],[85.77945,26.46248],[85.79302,26.45471],[85.79746,26.45903],[85.80239,26.46017],[85.80416,26.45871],[85.80576,26.46893],[85.81175,26.46849],[85.81237,26.47554],[85.80568,26.47614],[85.80645,26.47868],[85.80396,26.47911],[85.80373,26.48167],[85.79994,26.48009],[85.79068,26.4831],[85.78818,26.48215],[85.78885,26.47795],[85.78436,26.47838],[85.78322,26.47588],[85.77948,26.47587],[85.77068,26.47938],[85.77342,26.48517],[85.77018,26.48652],[85.77031,26.48805],[85.75866,26.48899],[85.76032,26.49679],[85.76397,26.49572],[85.7692,26.50309],[85.77301,26.5053],[85.76871,26.50706],[85.76864,26.51019],[85.77185,26.5111],[85.77617,26.51609],[85.78633,26.5141],[85.79009,26.51476],[85.79045,26.50586],[85.78749,26.50197],[85.78773,26.49663],[85.79818,26.49622],[85.79957,26.49935],[85.79772,26.50149],[85.8012,26.50425],[85.80277,26.50876],[85.8107,26.50833],[85.81101,26.51254],[85.80784,26.51538],[85.81122,26.52146],[85.81845,26.5228],[85.81881,26.5257],[85.82329,26.53015],[85.82547,26.53585],[85.8255,26.54138],[85.8212,26.54318],[85.8207,26.54671],[85.81711,26.54899],[85.80698,26.55175],[85.80561,26.55484],[85.8086,26.5574],[85.80857,26.56054],[85.81171,26.56514],[85.80815,26.56661],[85.80839,26.56853],[85.81073,26.57004],[85.81212,26.5771],[85.8165,26.5826],[85.81687,26.58515],[85.81386,26.58785],[85.81392,26.58982],[85.82035,26.59284],[85.81856,26.60058],[85.81732,26.60317],[85.8036,26.61496],[85.80177,26.62427],[85.76982,26.62987],[85.75933,26.63642],[85.7486,26.63885],[85.73566,26.65159],[85.73418,26.65076],[85.73547,26.65267],[85.73225,26.65386],[85.73231,26.65561],[85.735,26.65738],[85.73671,26.66416],[85.73024,26.66584],[85.73068,26.66781],[85.72912,26.66739],[85.72564,26.67065],[85.72683,26.67395],[85.72363,26.67425],[85.72488,26.68224],[85.72352,26.68323],[85.72546,26.68488],[85.72339,26.68683],[85.7253,26.69732],[85.72332,26.69982],[85.7248,26.70033],[85.72433,26.7034],[85.72648,26.70674],[85.72499,26.7071],[85.72478,26.70989],[85.72803,26.71758],[85.7258,26.72094],[85.72947,26.72502],[85.72805,26.72981],[85.73133,26.73054],[85.7296,26.73395],[85.73065,26.73611],[85.73398,26.73713],[85.72872,26.74984],[85.73514,26.77798],[85.73448,26.79587],[85.72876,26.80287],[85.72878,26.80834],[85.72113,26.82036],[85.70432,26.83229],[85.67599,26.84475]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"222","area_level":"District","area_name":"Siwan","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.43058,26.37408],[84.42438,26.37446],[84.42174,26.36957],[84.40921,26.37004],[84.40835,26.36678],[84.40345,26.36729],[84.39077,26.37349],[84.37675,26.36852],[84.36277,26.36852],[84.36027,26.36371],[84.36633,26.35205],[84.36403,26.34661],[84.36627,26.34271],[84.36485,26.34031],[84.3665,26.33586],[84.36495,26.33178],[84.3602,26.32726],[84.3633,26.31577],[84.36224,26.30986],[84.36458,26.30892],[84.36199,26.30092],[84.35751,26.29961],[84.33783,26.30672],[84.33619,26.31153],[84.33864,26.31892],[84.33584,26.32077],[84.33723,26.32343],[84.33226,26.32705],[84.32395,26.32891],[84.32151,26.33199],[84.31788,26.332],[84.31567,26.32692],[84.31301,26.326],[84.31108,26.32285],[84.30506,26.32118],[84.30476,26.3185],[84.29665,26.32077],[84.29528,26.31676],[84.2811,26.31763],[84.27602,26.30734],[84.2668,26.30925],[84.26691,26.31136],[84.26514,26.3125],[84.25548,26.31509],[84.25485,26.31655],[84.24107,26.31805],[84.2403,26.32531],[84.23448,26.32784],[84.23174,26.32526],[84.22838,26.32633],[84.22968,26.33101],[84.21283,26.33597],[84.2092,26.34495],[84.20942,26.34839],[84.21496,26.3522],[84.21318,26.35328],[84.2096,26.35172],[84.20461,26.35546],[84.19774,26.35539],[84.19791,26.36256],[84.19024,26.36296],[84.19041,26.36529],[84.18554,26.36943],[84.17684,26.36959],[84.1759,26.3606],[84.17284,26.3535],[84.17254,26.33435],[84.18597,26.3129],[84.18394,26.3087],[84.17774,26.3032],[84.17451,26.29227],[84.17662,26.26454],[84.17278,26.26151],[84.16408,26.25911],[84.16117,26.25592],[84.1615,26.25032],[84.16621,26.24095],[84.16309,26.24184],[84.15116,26.25779],[84.14655,26.25521],[84.13222,26.25903],[84.12917,26.25555],[84.12726,26.258],[84.12169,26.25887],[84.12002,26.25807],[84.11679,26.24974],[84.11968,26.24791],[84.11744,26.24011],[84.10708,26.24123],[84.10602,26.23669],[84.09949,26.23732],[84.09812,26.23332],[84.09104,26.23378],[84.09017,26.23034],[84.08764,26.23036],[84.08825,26.22353],[84.08641,26.21875],[84.08022,26.21971],[84.08016,26.2223],[84.06346,26.22415],[84.06208,26.22227],[84.0512,26.22915],[84.04213,26.22996],[84.0377,26.23206],[84.03823,26.23699],[84.02726,26.23965],[84.02466,26.23777],[84.01923,26.23894],[84.0156,26.23377],[84.01222,26.23212],[84.0153,26.22328],[84.02212,26.22017],[84.02926,26.21984],[84.03121,26.21689],[84.02766,26.21432],[84.02907,26.21119],[84.03188,26.2094],[84.03924,26.20905],[84.03835,26.20097],[84.03538,26.19863],[84.03235,26.19984],[84.02859,26.19565],[84.02663,26.19691],[84.01606,26.19592],[84.00903,26.18971],[84.00807,26.18594],[84.00995,26.17448],[84.0198,26.16681],[84.03345,26.16069],[84.03436,26.15119],[84.02744,26.1424],[84.04345,26.13484],[84.05012,26.13002],[84.05177,26.12056],[84.05004,26.12001],[84.04873,26.10906],[84.05597,26.09999],[84.08867,26.10024],[84.10381,26.09274],[84.12112,26.07654],[84.13729,26.05221],[84.17246,26.0246],[84.17003,25.98768],[84.17567,25.99137],[84.17463,25.99284],[84.17604,25.99652],[84.18648,25.99345],[84.19628,25.98788],[84.20153,25.99036],[84.20708,25.99983],[84.21307,25.9949],[84.21768,25.99473],[84.23929,25.98506],[84.24513,25.98063],[84.24491,25.97579],[84.28229,25.95878],[84.29691,25.94517],[84.31187,25.94377],[84.35395,25.95878],[84.38737,25.93733],[84.4119,25.93078],[84.41376,25.923],[84.41987,25.91351],[84.42496,25.90167],[84.4289,25.89751],[84.42756,25.89124],[84.43531,25.88987],[84.43662,25.8916],[84.4544,25.88773],[84.46402,25.91939],[84.45964,25.9207],[84.45981,25.9224],[84.45781,25.9229],[84.45953,25.92753],[84.459,25.93327],[84.45659,25.93336],[84.45553,25.93522],[84.45688,25.94224],[84.46284,25.94769],[84.45618,25.95409],[84.4459,25.95355],[84.43755,25.95776],[84.43521,25.96152],[84.43912,25.96839],[84.44113,25.9792],[84.44505,25.98081],[84.44875,25.97896],[84.45276,25.99308],[84.44236,25.99289],[84.43879,25.99386],[84.43811,25.99667],[84.42735,25.99651],[84.42482,25.99956],[84.42486,26.01329],[84.40528,26.01511],[84.40985,26.02352],[84.40941,26.03288],[84.42809,26.03258],[84.42994,26.02906],[84.43316,26.02995],[84.43474,26.03339],[84.43657,26.03252],[84.44049,26.03448],[84.45275,26.03139],[84.45286,26.02892],[84.4724,26.02763],[84.47709,26.02873],[84.4792,26.03211],[84.48245,26.03127],[84.4917,26.03535],[84.49523,26.03376],[84.49687,26.03009],[84.50652,26.0268],[84.5108,26.03208],[84.51448,26.03022],[84.53172,26.02821],[84.5334,26.0303],[84.54007,26.02999],[84.54176,26.02825],[84.54416,26.02853],[84.54546,26.03109],[84.56594,26.03083],[84.56924,26.03907],[84.57435,26.0373],[84.57163,26.04325],[84.57363,26.04624],[84.57739,26.04747],[84.57777,26.05713],[84.57995,26.05759],[84.57866,26.05956],[84.58075,26.06309],[84.58464,26.06494],[84.58495,26.07077],[84.58708,26.07467],[84.59122,26.07099],[84.60139,26.06961],[84.60268,26.06828],[84.60572,26.06779],[84.60839,26.07084],[84.60756,26.07552],[84.60959,26.08516],[84.60851,26.08712],[84.61148,26.09127],[84.61488,26.08972],[84.61804,26.09051],[84.62014,26.08784],[84.61796,26.08379],[84.61834,26.08093],[84.62228,26.07813],[84.63433,26.07545],[84.63682,26.07661],[84.65022,26.07309],[84.65885,26.0726],[84.66026,26.07406],[84.66636,26.07237],[84.6664,26.07037],[84.66889,26.06978],[84.67317,26.07657],[84.67442,26.0818],[84.69451,26.0791],[84.69619,26.07935],[84.69351,26.0815],[84.69634,26.08273],[84.70415,26.08093],[84.70804,26.09237],[84.7163,26.09157],[84.72039,26.10355],[84.72049,26.10932],[84.72424,26.11212],[84.72424,26.11761],[84.71795,26.12047],[84.71617,26.12354],[84.71736,26.12868],[84.73081,26.12766],[84.73277,26.12902],[84.73293,26.13846],[84.74061,26.13658],[84.74544,26.1385],[84.75001,26.13801],[84.75501,26.14551],[84.76199,26.17217],[84.77069,26.17439],[84.77885,26.17416],[84.77928,26.17602],[84.77852,26.18276],[84.77051,26.19062],[84.77682,26.19438],[84.77646,26.19574],[84.76459,26.19703],[84.76326,26.1992],[84.76331,26.20847],[84.75178,26.21463],[84.75416,26.21753],[84.75493,26.22531],[84.75235,26.22953],[84.73389,26.22602],[84.72991,26.22792],[84.72414,26.23559],[84.71378,26.23614],[84.71324,26.24169],[84.70177,26.24129],[84.6955,26.23808],[84.67973,26.24093],[84.68269,26.25564],[84.68748,26.26399],[84.68729,26.26749],[84.68553,26.269],[84.6847,26.26778],[84.67887,26.26878],[84.67177,26.26767],[84.67133,26.27167],[84.66602,26.27252],[84.65192,26.27179],[84.65098,26.27405],[84.6525,26.27608],[84.64818,26.27815],[84.65535,26.29205],[84.65403,26.29912],[84.64424,26.30328],[84.62244,26.30096],[84.6071,26.3038],[84.6083,26.30688],[84.60616,26.30935],[84.59434,26.31238],[84.58653,26.31676],[84.5903,26.32116],[84.57571,26.32492],[84.56869,26.32169],[84.56389,26.3135],[84.55665,26.31384],[84.55249,26.2977],[84.53868,26.30194],[84.5397,26.31255],[84.54496,26.31312],[84.55072,26.31762],[84.5507,26.3231],[84.54895,26.32536],[84.52973,26.33633],[84.51876,26.33922],[84.516,26.33543],[84.51135,26.33394],[84.50335,26.33336],[84.49785,26.33605],[84.4966,26.33296],[84.49436,26.33279],[84.48167,26.33561],[84.47947,26.34124],[84.4701,26.34233],[84.46417,26.34749],[84.46196,26.346],[84.45537,26.34875],[84.45209,26.34853],[84.45601,26.35597],[84.45528,26.36068],[84.45731,26.36811],[84.44468,26.3699],[84.44196,26.37195],[84.43058,26.37408]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"223","area_level":"District","area_name":"Supaul","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.04809,26.56138],[87.04482,26.56272],[87.04152,26.56124],[87.03815,26.56282],[87.01536,26.53204],[86.99088,26.52308],[86.97941,26.52515],[86.97531,26.52005],[86.96134,26.52404],[86.95953,26.52039],[86.94646,26.52078],[86.94457,26.5173],[86.93216,26.51695],[86.92869,26.49756],[86.92999,26.48968],[86.89309,26.48778],[86.894,26.48659],[86.89168,26.48619],[86.89016,26.48176],[86.89286,26.47761],[86.8919,26.47637],[86.89364,26.47647],[86.89224,26.47553],[86.89357,26.47373],[86.89274,26.47199],[86.89384,26.47214],[86.89253,26.46915],[86.89467,26.46925],[86.89527,26.46739],[86.89423,26.46193],[86.88463,26.4614],[86.87944,26.45709],[86.8753,26.45751],[86.87594,26.45542],[86.87337,26.45405],[86.87079,26.45549],[86.86656,26.45474],[86.86663,26.45629],[86.86482,26.45591],[86.86531,26.45762],[86.86141,26.45795],[86.86173,26.45636],[86.85986,26.45599],[86.85592,26.44865],[86.84586,26.4483],[86.84554,26.44436],[86.84713,26.44233],[86.8446,26.4428],[86.84259,26.44022],[86.83921,26.44066],[86.83987,26.44211],[86.83781,26.4426],[86.83671,26.44007],[86.83499,26.44112],[86.83377,26.4391],[86.80499,26.44599],[86.7665,26.45944],[86.76274,26.45581],[86.76409,26.45155],[86.76034,26.45185],[86.7602,26.44814],[86.75405,26.44679],[86.75275,26.4455],[86.75337,26.4424],[86.74976,26.44135],[86.74755,26.4362],[86.74397,26.43561],[86.74476,26.43398],[86.74729,26.43374],[86.74722,26.42818],[86.74375,26.4276],[86.74086,26.42476],[86.73785,26.42583],[86.73752,26.42343],[86.73298,26.42465],[86.7314,26.42262],[86.72966,26.42294],[86.73073,26.42639],[86.72903,26.42699],[86.72751,26.42504],[86.72512,26.42673],[86.72317,26.42593],[86.72419,26.4227],[86.7213,26.4208],[86.72235,26.41943],[86.71929,26.41294],[86.72024,26.41094],[86.71385,26.40427],[86.7131,26.4004],[86.71529,26.39973],[86.71114,26.39776],[86.71308,26.39543],[86.71013,26.39201],[86.71027,26.3872],[86.70872,26.38727],[86.70907,26.38977],[86.70416,26.38635],[86.70393,26.38232],[86.70611,26.38002],[86.70927,26.38116],[86.70937,26.37809],[86.7063,26.37926],[86.7054,26.37704],[86.70346,26.37869],[86.70178,26.37451],[86.70396,26.37329],[86.70262,26.3712],[86.70461,26.36921],[86.70392,26.36787],[86.70073,26.36783],[86.6987,26.36991],[86.69523,26.36753],[86.68775,26.3701],[86.68673,26.36855],[86.68288,26.36912],[86.68387,26.3673],[86.68193,26.36601],[86.67936,26.36915],[86.67823,26.36586],[86.67507,26.36826],[86.67365,26.36394],[86.67644,26.36357],[86.6723,26.36125],[86.67306,26.36393],[86.67055,26.36508],[86.67089,26.36339],[86.66786,26.36329],[86.66602,26.36616],[86.66222,26.36645],[86.66278,26.36771],[86.65524,26.36632],[86.6545,26.36505],[86.65676,26.36374],[86.65633,26.3621],[86.64836,26.36138],[86.64494,26.3574],[86.64222,26.35783],[86.64142,26.35535],[86.63939,26.35478],[86.64153,26.35092],[86.63779,26.35101],[86.63627,26.3453],[86.63299,26.34402],[86.63361,26.3402],[86.63072,26.33918],[86.6322,26.33283],[86.62658,26.33269],[86.61572,26.33894],[86.61213,26.33827],[86.61078,26.34173],[86.59939,26.34252],[86.59804,26.33398],[86.58651,26.33395],[86.58173,26.33133],[86.58044,26.32346],[86.57825,26.32044],[86.56597,26.31843],[86.56157,26.30523],[86.54752,26.30571],[86.54468,26.30328],[86.53561,26.30288],[86.52806,26.29386],[86.52917,26.2921],[86.52617,26.28917],[86.52635,26.28226],[86.52361,26.27767],[86.50928,26.27679],[86.50681,26.27216],[86.50569,26.25558],[86.51782,26.25627],[86.52165,26.25511],[86.51799,26.24716],[86.5223,26.23184],[86.51891,26.22431],[86.52057,26.22219],[86.51588,26.22056],[86.51512,26.21819],[86.50397,26.22289],[86.49975,26.21483],[86.48686,26.21533],[86.48515,26.21716],[86.48014,26.21715],[86.47525,26.21089],[86.45812,26.2116],[86.45108,26.21374],[86.45313,26.21743],[86.45183,26.22238],[86.44615,26.22364],[86.444,26.22127],[86.44055,26.20986],[86.4424,26.20568],[86.44165,26.20151],[86.43822,26.20064],[86.43743,26.19778],[86.4342,26.19786],[86.43096,26.1937],[86.41121,26.19747],[86.4119,26.20347],[86.40497,26.20221],[86.40682,26.19839],[86.40631,26.196],[86.41031,26.19419],[86.41277,26.18727],[86.41156,26.18262],[86.40898,26.18211],[86.40729,26.17867],[86.4048,26.16973],[86.41614,26.17086],[86.42031,26.1695],[86.42242,26.16391],[86.42226,26.15801],[86.43496,26.15679],[86.4354,26.15887],[86.4327,26.15967],[86.43331,26.16469],[86.4397,26.1639],[86.43866,26.16037],[86.43612,26.15863],[86.43645,26.15614],[86.43992,26.15569],[86.44109,26.1572],[86.44814,26.1586],[86.45063,26.15766],[86.45128,26.16306],[86.45369,26.163],[86.45467,26.16631],[86.45264,26.16864],[86.45734,26.17044],[86.46195,26.15876],[86.46154,26.15667],[86.46319,26.1562],[86.4648,26.15233],[86.46975,26.15341],[86.46952,26.15149],[86.47197,26.15046],[86.47414,26.14631],[86.48079,26.14904],[86.48136,26.15079],[86.48505,26.14893],[86.48834,26.15054],[86.4914,26.15289],[86.48903,26.15548],[86.49114,26.15437],[86.49503,26.15677],[86.49881,26.15518],[86.50373,26.15739],[86.50941,26.15696],[86.50944,26.16074],[86.5122,26.16626],[86.51572,26.16349],[86.51601,26.16063],[86.51825,26.16135],[86.51891,26.15877],[86.52759,26.15562],[86.53337,26.15685],[86.53745,26.15029],[86.54025,26.15075],[86.53859,26.1496],[86.53972,26.14805],[86.53777,26.14169],[86.53563,26.14174],[86.5329,26.13878],[86.53381,26.13532],[86.53123,26.13539],[86.53117,26.13202],[86.52633,26.1297],[86.52442,26.12378],[86.52103,26.12338],[86.51969,26.12239],[86.52032,26.1207],[86.51462,26.11703],[86.50969,26.11692],[86.50936,26.12039],[86.49424,26.12545],[86.47867,26.12428],[86.47753,26.12077],[86.47097,26.11918],[86.47067,26.11618],[86.46577,26.1141],[86.47005,26.11297],[86.46487,26.10606],[86.46475,26.10251],[86.45993,26.10491],[86.45605,26.09955],[86.45552,26.09621],[86.45312,26.09788],[86.44994,26.09667],[86.44923,26.09925],[86.44639,26.0918],[86.44431,26.09298],[86.44298,26.09115],[86.4451,26.08956],[86.44455,26.08636],[86.44251,26.08733],[86.44078,26.08503],[86.44247,26.08368],[86.44038,26.07392],[86.44211,26.07243],[86.44105,26.06872],[86.44432,26.06975],[86.4588,26.0681],[86.46488,26.07128],[86.47358,26.06279],[86.47173,26.06042],[86.46752,26.05925],[86.4673,26.05481],[86.48367,26.04843],[86.48861,26.04932],[86.48907,26.05221],[86.5,26.05014],[86.50732,26.0558],[86.51168,26.05712],[86.51664,26.05646],[86.51834,26.05012],[86.51604,26.04326],[86.51369,26.04105],[86.5139,26.03797],[86.50973,26.03721],[86.4987,26.02736],[86.49819,26.02018],[86.50156,26.01936],[86.5024,26.01414],[86.50783,26.01273],[86.5099,26.0112],[86.51014,26.0088],[86.51576,26.00683],[86.52027,25.99856],[86.51985,25.99437],[86.52789,25.9957],[86.53078,25.9908],[86.53811,26.00001],[86.53912,26.00692],[86.5452,26.00689],[86.55274,26.01001],[86.55553,26.01445],[86.5558,26.02234],[86.55868,26.02469],[86.55894,26.02711],[86.56658,26.02704],[86.57257,26.02334],[86.58048,26.02154],[86.59154,26.02211],[86.59661,26.01948],[86.61026,26.019],[86.6133,26.01639],[86.61666,26.01773],[86.61954,26.02124],[86.62322,26.01928],[86.62694,26.02193],[86.63457,26.02301],[86.66191,26.0193],[86.6728,26.0159],[86.6801,26.01811],[86.68429,26.02128],[86.69331,26.02127],[86.69381,26.02615],[86.69199,26.02633],[86.6918,26.02841],[86.70081,26.03034],[86.70004,26.03949],[86.70544,26.04542],[86.70229,26.04692],[86.70374,26.05491],[86.70677,26.05833],[86.70588,26.06115],[86.72053,26.06984],[86.72002,26.07654],[86.72645,26.08412],[86.72752,26.0903],[86.73264,26.09116],[86.74075,26.11221],[86.74285,26.11241],[86.74444,26.11611],[86.74787,26.11761],[86.75201,26.11763],[86.75649,26.10987],[86.76285,26.10818],[86.76203,26.10594],[86.77114,26.10439],[86.77141,26.10292],[86.77493,26.10188],[86.77205,26.09676],[86.77963,26.09511],[86.78215,26.09071],[86.7903,26.08889],[86.79669,26.08911],[86.79748,26.09166],[86.80149,26.09264],[86.80396,26.0982],[86.80751,26.10052],[86.8085,26.10312],[86.81615,26.10257],[86.81755,26.10517],[86.81966,26.10508],[86.81837,26.10713],[86.82201,26.10637],[86.8271,26.10836],[86.83213,26.10829],[86.84548,26.10542],[86.84604,26.1004],[86.84842,26.09929],[86.84681,26.09607],[86.85003,26.09497],[86.86478,26.09367],[86.87427,26.08931],[86.88239,26.08807],[86.92966,26.08399],[86.93664,26.0807],[86.94429,26.08328],[86.9504,26.08124],[86.95172,26.08222],[86.99949,26.06233],[87.00444,26.07047],[87.01209,26.07045],[87.0345,26.06288],[87.03702,26.05588],[87.04178,26.05447],[87.04982,26.05392],[87.05096,26.05506],[87.05026,26.05776],[87.06239,26.05841],[87.06447,26.05744],[87.06564,26.05086],[87.07523,26.04871],[87.08549,26.05086],[87.08834,26.04991],[87.09237,26.05182],[87.10033,26.04873],[87.10595,26.04988],[87.10509,26.0583],[87.09389,26.05915],[87.09838,26.06498],[87.10774,26.06744],[87.11663,26.07303],[87.11714,26.07612],[87.11939,26.07624],[87.11973,26.0899],[87.11429,26.08954],[87.11285,26.08807],[87.08735,26.09299],[87.08134,26.0948],[87.08142,26.0978],[87.07886,26.09962],[87.0714,26.10203],[87.07607,26.105],[87.07833,26.11007],[87.08663,26.11454],[87.09472,26.11553],[87.09494,26.11867],[87.09265,26.11898],[87.09157,26.12101],[87.09199,26.1311],[87.10307,26.12988],[87.10852,26.13263],[87.10939,26.14059],[87.1082,26.15054],[87.10328,26.15652],[87.10828,26.16056],[87.11028,26.16646],[87.11754,26.17541],[87.11763,26.17845],[87.11533,26.18422],[87.10306,26.18397],[87.08885,26.17983],[87.08694,26.18152],[87.08786,26.18551],[87.09204,26.18747],[87.09062,26.19119],[87.09263,26.19499],[87.09972,26.19673],[87.09706,26.2012],[87.10002,26.20215],[87.09613,26.20898],[87.0933,26.2094],[87.09024,26.21366],[87.08021,26.2168],[87.07945,26.22146],[87.08536,26.2269],[87.08026,26.23403],[87.07545,26.23443],[87.07521,26.23945],[87.07134,26.23918],[87.06779,26.25409],[87.06996,26.26173],[87.06589,26.26487],[87.06814,26.27137],[87.07021,26.27264],[87.07064,26.28361],[87.06941,26.28597],[87.07415,26.28952],[87.07441,26.29191],[87.05285,26.29603],[87.05184,26.31118],[87.04237,26.31546],[87.04441,26.31781],[87.0479,26.31738],[87.05075,26.32194],[87.05146,26.33324],[87.05369,26.33164],[87.05556,26.33325],[87.06484,26.33434],[87.06989,26.33331],[87.07148,26.33076],[87.07343,26.33472],[87.07593,26.33566],[87.07272,26.34981],[87.07039,26.35237],[87.07152,26.35376],[87.0672,26.35436],[87.06608,26.36071],[87.07682,26.36525],[87.07543,26.36939],[87.07986,26.37236],[87.07869,26.37961],[87.07658,26.38444],[87.07101,26.38712],[87.06895,26.39538],[87.06251,26.39587],[87.06055,26.40634],[87.06122,26.408],[87.06496,26.40841],[87.06463,26.40586],[87.06731,26.40563],[87.06682,26.40211],[87.06876,26.39964],[87.0777,26.39947],[87.07811,26.40214],[87.08098,26.40425],[87.07337,26.41384],[87.07242,26.42407],[87.06952,26.4242],[87.06976,26.42694],[87.0625,26.42679],[87.05998,26.43239],[87.06271,26.435],[87.06305,26.43873],[87.07317,26.43864],[87.07343,26.44115],[87.06929,26.44862],[87.0684,26.45595],[87.07074,26.457],[87.07259,26.46252],[87.0694,26.46302],[87.069,26.46564],[87.06233,26.46646],[87.05934,26.46956],[87.06004,26.47354],[87.05394,26.47947],[87.05042,26.48046],[87.05341,26.48146],[87.05477,26.48472],[87.06392,26.48382],[87.0645,26.4874],[87.06258,26.49153],[87.05298,26.49472],[87.05098,26.50671],[87.05157,26.50892],[87.06125,26.51143],[87.06182,26.52281],[87.05817,26.52406],[87.06083,26.53619],[87.0674,26.53696],[87.0672,26.55445],[87.05371,26.55283],[87.05282,26.55993],[87.04809,26.56138]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"224","area_level":"District","area_name":"Vaishali","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.25097,26.01029],[85.25103,26.01215],[85.23963,26.0153],[85.23703,26.01066],[85.23401,25.99698],[85.23122,25.99733],[85.23404,26.00043],[85.23414,26.00373],[85.23001,26.00543],[85.22303,25.99947],[85.21639,26.00365],[85.21009,26.00312],[85.20925,26.00601],[85.19859,26.00519],[85.1958,26.00225],[85.19217,26.00169],[85.189,26.00214],[85.1888,26.00565],[85.17488,26.01099],[85.16812,26.01034],[85.16502,26.00722],[85.16304,26.00881],[85.16207,26.00422],[85.15021,26.00351],[85.15143,25.99913],[85.14914,25.99644],[85.1406,26.00018],[85.13486,25.9997],[85.13223,25.9972],[85.12746,25.99724],[85.1256,25.99921],[85.11311,26.00095],[85.11136,25.99895],[85.10491,25.9987],[85.10548,25.99003],[85.10951,25.98771],[85.10595,25.98155],[85.09631,25.98107],[85.09634,25.97612],[85.08557,25.97929],[85.08503,25.97637],[85.08245,25.97356],[85.08055,25.97386],[85.07912,25.97083],[85.07215,25.97524],[85.06638,25.97437],[85.07426,25.96729],[85.07203,25.95387],[85.07824,25.93215],[85.09153,25.92219],[85.10722,25.90194],[85.1149,25.89494],[85.11598,25.88265],[85.11386,25.87274],[85.11493,25.8676],[85.12076,25.86006],[85.12553,25.85662],[85.1459,25.8485],[85.15379,25.84038],[85.16086,25.84098],[85.16456,25.83828],[85.16783,25.82176],[85.17277,25.80914],[85.17176,25.80531],[85.1785,25.79223],[85.1786,25.7884],[85.17427,25.77606],[85.17587,25.76792],[85.17214,25.75801],[85.17267,25.75308],[85.17614,25.7397],[85.185,25.72669],[85.18744,25.72006],[85.188,25.70764],[85.19452,25.68774],[85.19493,25.67374],[85.19228,25.66861],[85.19162,25.65562],[85.1971,25.64352],[85.19739,25.63933],[85.18985,25.63129],[85.18804,25.62264],[85.23317,25.60483],[85.24429,25.59821],[85.25696,25.58036],[85.2729,25.56373],[85.29038,25.53579],[85.29491,25.52547],[85.30554,25.51415],[85.30941,25.51195],[85.32901,25.50999],[85.33,25.50852],[85.35368,25.50792],[85.36688,25.50571],[85.37754,25.49968],[85.3919,25.49719],[85.39195,25.49947],[85.38909,25.5],[85.39117,25.50365],[85.39433,25.50499],[85.40227,25.50467],[85.40712,25.50369],[85.41112,25.49973],[85.41913,25.49973],[85.42959,25.49612],[85.43083,25.49952],[85.42785,25.49974],[85.43292,25.5107],[85.42988,25.51299],[85.43258,25.51876],[85.44449,25.51697],[85.45138,25.51811],[85.44673,25.51164],[85.44957,25.50513],[85.46294,25.49973],[85.46695,25.49977],[85.4722,25.49591],[85.47965,25.49653],[85.48237,25.49423],[85.49285,25.49384],[85.49774,25.48566],[85.50512,25.48341],[85.50672,25.49385],[85.5137,25.50324],[85.52095,25.4999],[85.52867,25.504],[85.53785,25.50249],[85.54605,25.50389],[85.54629,25.50697],[85.54462,25.50945],[85.53369,25.5081],[85.52772,25.54579],[85.53267,25.5557],[85.5404,25.55404],[85.54538,25.53811],[85.54849,25.53838],[85.54995,25.54325],[85.55454,25.54506],[85.55352,25.55549],[85.55706,25.56113],[85.54298,25.56756],[85.54568,25.57502],[85.55224,25.57727],[85.53688,25.57914],[85.53724,25.58508],[85.53519,25.58535],[85.53395,25.58999],[85.52938,25.59025],[85.5295,25.60034],[85.53438,25.61603],[85.53339,25.61674],[85.53637,25.62355],[85.53929,25.62559],[85.545,25.62566],[85.54578,25.62323],[85.54969,25.62365],[85.55177,25.6373],[85.55767,25.64646],[85.55479,25.64793],[85.55558,25.65587],[85.5573,25.65599],[85.55882,25.66121],[85.56151,25.66151],[85.56221,25.66627],[85.56454,25.66801],[85.56318,25.66832],[85.56442,25.67148],[85.56961,25.68157],[85.57085,25.68141],[85.57085,25.68892],[85.57731,25.68685],[85.57853,25.68978],[85.5821,25.68898],[85.58382,25.69186],[85.58471,25.70169],[85.5993,25.7016],[85.60156,25.70902],[85.60486,25.71066],[85.6105,25.70864],[85.61209,25.71096],[85.61615,25.729],[85.61253,25.73001],[85.61342,25.73727],[85.62264,25.75319],[85.62546,25.75475],[85.62513,25.75757],[85.6199,25.75985],[85.62606,25.76206],[85.62461,25.76517],[85.62788,25.7656],[85.63097,25.77388],[85.62894,25.77635],[85.62166,25.77297],[85.62266,25.77663],[85.6154,25.77697],[85.61367,25.7784],[85.61289,25.78754],[85.60793,25.78979],[85.6132,25.79394],[85.61361,25.79776],[85.60864,25.79892],[85.60651,25.8014],[85.60817,25.80431],[85.60708,25.8062],[85.61614,25.8234],[85.62042,25.82522],[85.61003,25.83192],[85.60959,25.83657],[85.61648,25.8389],[85.61698,25.84089],[85.60889,25.8478],[85.60638,25.84831],[85.60445,25.8467],[85.59944,25.84956],[85.61092,25.85345],[85.61077,25.85941],[85.61509,25.86219],[85.61043,25.87014],[85.61132,25.874],[85.61367,25.87486],[85.61374,25.87767],[85.61569,25.87948],[85.62453,25.87959],[85.62647,25.88809],[85.63048,25.88857],[85.63136,25.89156],[85.62697,25.89482],[85.63141,25.89606],[85.63195,25.9004],[85.62854,25.90041],[85.62921,25.90415],[85.63218,25.90436],[85.63223,25.90671],[85.64115,25.90902],[85.646,25.91604],[85.64116,25.91766],[85.64027,25.92209],[85.62528,25.91966],[85.62518,25.92338],[85.62202,25.92311],[85.61159,25.92816],[85.61227,25.92516],[85.60086,25.92757],[85.60069,25.92605],[85.59767,25.92489],[85.59753,25.92283],[85.59009,25.92293],[85.58933,25.92096],[85.58263,25.92164],[85.58064,25.92635],[85.57667,25.92581],[85.57653,25.92352],[85.56683,25.92605],[85.5638,25.92508],[85.56136,25.91081],[85.55899,25.90967],[85.54292,25.91293],[85.54239,25.91705],[85.53693,25.92095],[85.53741,25.92241],[85.5317,25.92239],[85.52822,25.91978],[85.52737,25.92094],[85.52383,25.91662],[85.51422,25.91065],[85.51404,25.90509],[85.50963,25.90355],[85.50633,25.90605],[85.50454,25.91048],[85.49512,25.91018],[85.49317,25.913],[85.49297,25.92076],[85.48769,25.92426],[85.48676,25.92684],[85.47549,25.93017],[85.46892,25.93445],[85.46903,25.92664],[85.45226,25.92402],[85.44676,25.92541],[85.4461,25.92403],[85.44195,25.92457],[85.4397,25.92742],[85.43758,25.92712],[85.43789,25.93044],[85.43377,25.93116],[85.43343,25.9369],[85.42228,25.9377],[85.41909,25.94001],[85.41442,25.94057],[85.41403,25.94402],[85.409,25.94498],[85.40891,25.93968],[85.40636,25.9396],[85.40456,25.93498],[85.40174,25.93352],[85.39232,25.93601],[85.38755,25.93086],[85.37081,25.9326],[85.37031,25.93522],[85.36519,25.93746],[85.36402,25.94082],[85.35107,25.94377],[85.35012,25.94604],[85.3467,25.94699],[85.34178,25.95206],[85.33386,25.9547],[85.32103,25.95133],[85.31595,25.94608],[85.3073,25.94648],[85.30543,25.94867],[85.30209,25.94916],[85.29394,25.94677],[85.28605,25.94998],[85.28606,25.95373],[85.28373,25.95496],[85.28708,25.95638],[85.28894,25.96098],[85.28879,25.96675],[85.28746,25.96793],[85.29007,25.97456],[85.29071,25.98839],[85.29362,25.99733],[85.28195,26.00542],[85.2857,26.0118],[85.27762,26.00712],[85.27304,26.00844],[85.27262,26.01277],[85.27098,26.0136],[85.26756,26.01237],[85.26309,26.0135],[85.2573,26.01123],[85.25352,26.01234],[85.25304,26.00998],[85.25097,26.01029]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"225","area_level":"District","area_name":"Gangtok","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.80483,27.41521],[88.79719,27.41645],[88.78217,27.4229],[88.76721,27.41372],[88.75365,27.41473],[88.73144,27.41932],[88.71869,27.4167],[88.69482,27.39839],[88.67513,27.40015],[88.65882,27.39109],[88.64898,27.39188],[88.62676,27.38729],[88.59966,27.39075],[88.59367,27.39237],[88.59069,27.39631],[88.5548,27.39236],[88.53375,27.39662],[88.52318,27.39712],[88.51375,27.3895],[88.50124,27.38249],[88.49118,27.37866],[88.48597,27.37835],[88.48101,27.36632],[88.48025,27.36044],[88.48171,27.35262],[88.48823,27.34248],[88.48623,27.33363],[88.48267,27.32875],[88.47392,27.32375],[88.467,27.32188],[88.46169,27.31761],[88.45445,27.31534],[88.45179,27.30591],[88.44694,27.30088],[88.44822,27.29597],[88.44254,27.2812],[88.44152,27.27392],[88.44343,27.2665],[88.44692,27.26123],[88.45887,27.25594],[88.46465,27.25053],[88.48079,27.24672],[88.4907,27.23953],[88.4945,27.23052],[88.49101,27.20233],[88.50368,27.18513],[88.52539,27.17819],[88.5264,27.17376],[88.5315,27.17241],[88.53507,27.17889],[88.53963,27.17738],[88.54298,27.18318],[88.55197,27.1831],[88.55828,27.18561],[88.56721,27.18477],[88.58104,27.18881],[88.58333,27.1876],[88.58594,27.19039],[88.58879,27.18636],[88.59025,27.19033],[88.59286,27.19122],[88.59436,27.18789],[88.59795,27.18981],[88.60162,27.18567],[88.60371,27.18623],[88.61432,27.18169],[88.61871,27.18334],[88.62006,27.18194],[88.62228,27.18245],[88.62289,27.17936],[88.62597,27.18037],[88.62671,27.17755],[88.63424,27.17259],[88.63551,27.16668],[88.63978,27.16484],[88.64681,27.16616],[88.65145,27.16485],[88.65335,27.16193],[88.6604,27.16056],[88.66284,27.16168],[88.66684,27.16851],[88.67404,27.17549],[88.68034,27.1794],[88.68506,27.17988],[88.70134,27.1741],[88.70544,27.16885],[88.71012,27.16684],[88.71248,27.16248],[88.71614,27.15977],[88.71781,27.14331],[88.72896,27.13627],[88.73862,27.1354],[88.7493,27.14744],[88.75688,27.1482],[88.76008,27.15218],[88.75946,27.15608],[88.75721,27.15867],[88.75719,27.16539],[88.76461,27.17702],[88.76961,27.18052],[88.77885,27.18353],[88.78676,27.18199],[88.78923,27.1891],[88.78909,27.19383],[88.79881,27.20758],[88.80327,27.22],[88.80205,27.22777],[88.8042,27.23648],[88.8031,27.24784],[88.82816,27.25724],[88.83213,27.26233],[88.86659,27.26463],[88.87911,27.26114],[88.88166,27.26496],[88.88657,27.26796],[88.89768,27.27019],[88.89998,27.2743],[88.90377,27.27295],[88.90774,27.27704],[88.90843,27.28205],[88.91356,27.29009],[88.90864,27.30342],[88.91857,27.31829],[88.9192,27.32797],[88.9154,27.33071],[88.90578,27.32859],[88.89962,27.33277],[88.89485,27.3323],[88.89147,27.33911],[88.88489,27.34194],[88.88223,27.34476],[88.88537,27.35115],[88.88194,27.35098],[88.88063,27.35254],[88.88109,27.36041],[88.8762,27.36021],[88.87462,27.36271],[88.86675,27.36581],[88.86281,27.36982],[88.86428,27.37865],[88.86095,27.38654],[88.85663,27.3844],[88.84575,27.38488],[88.83767,27.37916],[88.83139,27.38583],[88.83051,27.38997],[88.82331,27.39058],[88.82096,27.39858],[88.81843,27.40146],[88.81258,27.40125],[88.8062,27.4068],[88.80748,27.41126],[88.80483,27.41521]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"226","area_level":"District","area_name":"Mangan","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.77354,27.54687],[88.77393,27.55379],[88.77257,27.55685],[88.76381,27.5646],[88.76432,27.56643],[88.77,27.57126],[88.78139,27.56992],[88.78444,27.57328],[88.79129,27.5751],[88.79083,27.58116],[88.78837,27.58493],[88.79469,27.59025],[88.80473,27.59436],[88.80903,27.60253],[88.80633,27.60892],[88.81166,27.61839],[88.80491,27.62351],[88.80868,27.63444],[88.81119,27.63654],[88.81526,27.64609],[88.81946,27.64639],[88.82278,27.64353],[88.82795,27.64426],[88.83551,27.65034],[88.83572,27.65362],[88.84309,27.65991],[88.84839,27.66801],[88.84759,27.67544],[88.84457,27.67709],[88.84438,27.67965],[88.84192,27.6822],[88.84766,27.69356],[88.84263,27.70288],[88.83827,27.70379],[88.83798,27.70629],[88.83979,27.71123],[88.8563,27.71655],[88.85424,27.72012],[88.85751,27.72682],[88.85669,27.73167],[88.85942,27.73811],[88.86517,27.74274],[88.86161,27.75249],[88.85839,27.75394],[88.85609,27.75229],[88.85328,27.76448],[88.85356,27.76917],[88.85591,27.77077],[88.85492,27.7835],[88.86145,27.79699],[88.86023,27.80295],[88.8581,27.8042],[88.85834,27.8111],[88.85583,27.81533],[88.87171,27.82559],[88.88045,27.82918],[88.88269,27.83427],[88.87994,27.84008],[88.8813,27.84975],[88.88767,27.85618],[88.88505,27.86154],[88.87937,27.86716],[88.87781,27.87576],[88.88263,27.89077],[88.87181,27.89852],[88.87217,27.90119],[88.86918,27.90759],[88.87002,27.9156],[88.8637,27.92134],[88.86041,27.92715],[88.85265,27.92578],[88.84358,27.92881],[88.83694,27.92878],[88.83871,27.94273],[88.84134,27.94415],[88.84289,27.95278],[88.8424,27.96363],[88.84084,27.96634],[88.84299,27.97526],[88.8414,27.98174],[88.84381,27.99042],[88.84371,27.99325],[88.83798,28.00049],[88.83628,28.01481],[88.82263,28.02086],[88.81688,28.02068],[88.81359,28.02244],[88.80307,28.03181],[88.79758,28.04094],[88.79385,28.0434],[88.79288,28.04864],[88.78741,28.05038],[88.78378,28.05395],[88.7776,28.05412],[88.77415,28.0623],[88.76565,28.07047],[88.75516,28.07626],[88.72042,28.07433],[88.70955,28.07764],[88.6972,28.07593],[88.69235,28.07779],[88.68357,28.07773],[88.6809,28.07651],[88.67844,28.07146],[88.67206,28.07234],[88.66668,28.0761],[88.66434,28.08741],[88.66135,28.08964],[88.65686,28.09004],[88.65441,28.09465],[88.64595,28.09875],[88.63435,28.11957],[88.62764,28.12509],[88.60996,28.12869],[88.60858,28.1226],[88.6177,28.11777],[88.61934,28.09808],[88.6116,28.09905],[88.60523,28.0976],[88.60214,28.09205],[88.60259,28.08917],[88.59123,28.08926],[88.584,28.08331],[88.57494,28.08462],[88.57071,28.08879],[88.56627,28.09033],[88.5597,28.08393],[88.55255,28.08142],[88.55622,28.07348],[88.5487,28.04681],[88.5508,28.03757],[88.54364,28.03325],[88.53271,28.03332],[88.52753,28.03777],[88.52351,28.03499],[88.51968,28.04355],[88.50962,28.04119],[88.50448,28.04782],[88.49562,28.05393],[88.48805,28.04448],[88.48036,28.04254],[88.47444,28.03387],[88.46782,28.01714],[88.46079,28.01455],[88.45638,28.01492],[88.44375,28.00938],[88.43059,28.00809],[88.42461,28.0016],[88.4147,27.99888],[88.41222,27.9945],[88.41077,27.98328],[88.4068,27.98173],[88.40302,27.98263],[88.39907,27.97804],[88.38739,27.97944],[88.38618,27.98142],[88.38091,27.98307],[88.37701,27.98987],[88.37177,27.99108],[88.36958,27.98933],[88.36227,27.9887],[88.35227,27.98995],[88.34566,27.98502],[88.33672,27.98415],[88.3304,27.97318],[88.31792,27.9788],[88.3132,27.97084],[88.30821,27.96711],[88.30347,27.96581],[88.29995,27.96728],[88.28604,27.96626],[88.28056,27.95705],[88.27564,27.9547],[88.26624,27.9573],[88.26112,27.94713],[88.2541,27.94527],[88.25108,27.94235],[88.24151,27.95715],[88.23717,27.97085],[88.22915,27.9659],[88.22505,27.96042],[88.21275,27.96428],[88.20796,27.96166],[88.20493,27.94941],[88.2064,27.94167],[88.20059,27.94169],[88.19534,27.94416],[88.18547,27.94349],[88.17907,27.94919],[88.17056,27.95245],[88.16389,27.95768],[88.1543,27.9574],[88.14521,27.96408],[88.13434,27.95132],[88.12939,27.94937],[88.1356,27.94399],[88.13786,27.93715],[88.13207,27.93287],[88.13065,27.92575],[88.12125,27.92197],[88.11958,27.916],[88.12341,27.90714],[88.1343,27.89705],[88.1399,27.88915],[88.13501,27.88162],[88.14007,27.87741],[88.14899,27.87641],[88.15475,27.87072],[88.16493,27.8683],[88.17407,27.86266],[88.17895,27.85648],[88.18321,27.857],[88.18901,27.85438],[88.19522,27.85454],[88.2028,27.83851],[88.20182,27.83672],[88.19563,27.8353],[88.19255,27.83296],[88.18801,27.82546],[88.17359,27.8206],[88.17409,27.81737],[88.18561,27.81058],[88.18742,27.8011],[88.19397,27.79641],[88.19717,27.79117],[88.19529,27.78626],[88.1822,27.77577],[88.18179,27.76941],[88.18366,27.7667],[88.18228,27.76262],[88.17767,27.75844],[88.17837,27.74618],[88.16991,27.74114],[88.16287,27.73977],[88.15848,27.74057],[88.15617,27.73611],[88.15447,27.72854],[88.15537,27.71735],[88.1528,27.71172],[88.14903,27.70815],[88.14757,27.7028],[88.15415,27.6918],[88.14694,27.67934],[88.14721,27.67467],[88.1437,27.66373],[88.13734,27.6574],[88.13215,27.6562],[88.12021,27.64525],[88.12063,27.63843],[88.11698,27.62981],[88.11991,27.62765],[88.11661,27.62404],[88.11697,27.62017],[88.11499,27.61791],[88.12702,27.61134],[88.16372,27.60006],[88.20972,27.5813],[88.23205,27.55708],[88.23774,27.54037],[88.2415,27.5348],[88.26335,27.52574],[88.28164,27.51286],[88.29101,27.5188],[88.31925,27.52706],[88.33518,27.52759],[88.35573,27.52126],[88.36119,27.5172],[88.36469,27.5103],[88.37559,27.49751],[88.39867,27.47897],[88.40558,27.47565],[88.40876,27.45837],[88.41601,27.44654],[88.4142,27.43926],[88.41448,27.42982],[88.41667,27.4235],[88.41952,27.41859],[88.42667,27.41316],[88.43255,27.40443],[88.44346,27.3935],[88.45367,27.38853],[88.47042,27.38554],[88.48597,27.37835],[88.49118,27.37866],[88.51375,27.3895],[88.52318,27.39712],[88.53375,27.39662],[88.5548,27.39236],[88.59069,27.39631],[88.59367,27.39237],[88.59966,27.39075],[88.62676,27.38729],[88.64898,27.39188],[88.65882,27.39109],[88.67513,27.40015],[88.69482,27.39839],[88.71869,27.4167],[88.73144,27.41932],[88.75365,27.41473],[88.76721,27.41372],[88.78217,27.4229],[88.79719,27.41645],[88.80483,27.41521],[88.80904,27.4234],[88.80082,27.42259],[88.79987,27.42644],[88.79557,27.42826],[88.79166,27.43843],[88.79429,27.44048],[88.7945,27.44553],[88.79634,27.44731],[88.78929,27.44681],[88.78255,27.44965],[88.78442,27.45865],[88.77977,27.46203],[88.77704,27.46814],[88.78372,27.47475],[88.78062,27.4812],[88.78657,27.48817],[88.78332,27.49549],[88.78332,27.5004],[88.78693,27.50367],[88.78563,27.50654],[88.79059,27.5158],[88.78838,27.52214],[88.79277,27.52474],[88.79291,27.52791],[88.79095,27.53156],[88.78332,27.52918],[88.77733,27.53256],[88.7731,27.54076],[88.77518,27.54452],[88.77354,27.54687]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"227","area_level":"District","area_name":"Namchi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.42667,27.41316],[88.41952,27.41859],[88.41448,27.42982],[88.4142,27.43926],[88.41601,27.44654],[88.40876,27.45837],[88.40558,27.47565],[88.39867,27.47897],[88.37559,27.49751],[88.36469,27.5103],[88.36119,27.5172],[88.35573,27.52126],[88.34262,27.52631],[88.32885,27.52804],[88.31925,27.52706],[88.29101,27.5188],[88.2764,27.50916],[88.26833,27.49808],[88.26608,27.48976],[88.26656,27.46176],[88.27462,27.41956],[88.27479,27.41185],[88.27919,27.40576],[88.28409,27.40515],[88.30573,27.41684],[88.31635,27.41531],[88.32557,27.41751],[88.3315,27.41706],[88.33376,27.41046],[88.33895,27.40623],[88.34798,27.41415],[88.35072,27.41198],[88.35758,27.39928],[88.35832,27.38994],[88.35826,27.37828],[88.34931,27.37402],[88.33063,27.36873],[88.32795,27.3649],[88.32272,27.34931],[88.31965,27.34595],[88.30495,27.3376],[88.29807,27.33094],[88.29681,27.32675],[88.3087,27.31874],[88.31066,27.31569],[88.311,27.30566],[88.30943,27.3027],[88.30647,27.2995],[88.29062,27.2949],[88.27912,27.28634],[88.27838,27.28156],[88.28104,27.27823],[88.30398,27.26093],[88.30565,27.25654],[88.30554,27.2461],[88.30323,27.23696],[88.30767,27.22608],[88.31991,27.2232],[88.32301,27.2205],[88.33436,27.19453],[88.32888,27.19188],[88.33063,27.18884],[88.3286,27.18757],[88.31961,27.18559],[88.30081,27.17365],[88.30001,27.16904],[88.29413,27.16326],[88.29038,27.15418],[88.28216,27.14881],[88.28005,27.14253],[88.28315,27.12824],[88.28609,27.12665],[88.29264,27.12748],[88.29722,27.12518],[88.29918,27.12833],[88.30229,27.12929],[88.31082,27.12507],[88.31534,27.12615],[88.31645,27.12179],[88.32285,27.11764],[88.32368,27.1105],[88.32109,27.10686],[88.32154,27.10475],[88.32944,27.10777],[88.33537,27.10675],[88.33784,27.10983],[88.34139,27.11012],[88.3457,27.10692],[88.34952,27.0998],[88.35604,27.10102],[88.35682,27.09738],[88.35875,27.09601],[88.37489,27.09748],[88.38737,27.09494],[88.39922,27.09025],[88.41103,27.08895],[88.43295,27.07926],[88.43926,27.08241],[88.45053,27.08389],[88.45958,27.09058],[88.46197,27.09838],[88.46645,27.10274],[88.46787,27.11395],[88.47541,27.12171],[88.47778,27.12282],[88.48509,27.12092],[88.48748,27.12592],[88.49774,27.12382],[88.49922,27.1304],[88.50535,27.13616],[88.5112,27.13724],[88.51324,27.14075],[88.51769,27.14323],[88.51824,27.14643],[88.52097,27.14871],[88.53204,27.14982],[88.53352,27.15456],[88.52764,27.1574],[88.53115,27.1655],[88.52758,27.16651],[88.52077,27.17289],[88.5264,27.17376],[88.52539,27.17819],[88.50368,27.18513],[88.49101,27.20233],[88.4945,27.23052],[88.4907,27.23953],[88.48079,27.24672],[88.46465,27.25053],[88.45887,27.25594],[88.44692,27.26123],[88.44343,27.2665],[88.44152,27.27392],[88.44254,27.2812],[88.44822,27.29597],[88.44694,27.30088],[88.45179,27.30591],[88.45445,27.31534],[88.46169,27.31761],[88.467,27.32188],[88.47392,27.32375],[88.48267,27.32875],[88.48623,27.33363],[88.48823,27.34248],[88.48171,27.35262],[88.48025,27.36044],[88.48101,27.36632],[88.48597,27.37835],[88.47042,27.38554],[88.45367,27.38853],[88.44346,27.3935],[88.43255,27.40443],[88.42667,27.41316]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"228","area_level":"District","area_name":"Gyalshing","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.23774,27.54037],[88.23205,27.55708],[88.20972,27.5813],[88.16372,27.60006],[88.12702,27.61134],[88.11499,27.61791],[88.11261,27.61479],[88.11404,27.61105],[88.11282,27.609],[88.10623,27.60262],[88.09302,27.59788],[88.08183,27.58422],[88.07911,27.57909],[88.08055,27.57753],[88.07548,27.57157],[88.08114,27.56515],[88.07862,27.56041],[88.06906,27.55491],[88.0688,27.54626],[88.0612,27.54029],[88.05865,27.53482],[88.05954,27.5319],[88.0655,27.52947],[88.06626,27.52733],[88.06101,27.5249],[88.05842,27.52042],[88.0581,27.51572],[88.06187,27.51217],[88.05786,27.5092],[88.05515,27.50444],[88.05058,27.50393],[88.04662,27.50095],[88.04408,27.49581],[88.04416,27.48418],[88.04554,27.48152],[88.04414,27.4781],[88.04859,27.47242],[88.05714,27.46691],[88.06052,27.46077],[88.06686,27.45787],[88.06435,27.45365],[88.07244,27.44582],[88.06782,27.43834],[88.07506,27.43322],[88.07315,27.43078],[88.07409,27.42681],[88.06779,27.42533],[88.05819,27.41845],[88.05559,27.41829],[88.05071,27.41298],[88.04963,27.40725],[88.0468,27.40593],[88.04842,27.40103],[88.04475,27.38993],[88.04484,27.37987],[88.04157,27.37293],[88.04183,27.37029],[88.049,27.36005],[88.05762,27.35621],[88.0613,27.34476],[88.06362,27.34085],[88.06486,27.34114],[88.06693,27.33577],[88.06346,27.33433],[88.05974,27.32834],[88.0523,27.32422],[88.04938,27.31829],[88.04879,27.31281],[88.04154,27.30408],[88.04087,27.30137],[88.04461,27.29325],[88.04315,27.2915],[88.03852,27.29188],[88.03205,27.28639],[88.03281,27.28038],[88.03043,27.27194],[88.03188,27.2649],[88.03069,27.26285],[88.03089,27.24991],[88.02783,27.24947],[88.02431,27.24208],[88.02463,27.23762],[88.01939,27.23588],[88.0189,27.22498],[88.01715,27.2255],[88.01233,27.21593],[88.01426,27.21291],[88.02611,27.22042],[88.03437,27.22104],[88.04389,27.21923],[88.05282,27.21341],[88.06466,27.21431],[88.06552,27.20916],[88.07169,27.20416],[88.07933,27.20083],[88.07272,27.1872],[88.07854,27.18035],[88.07976,27.17437],[88.07741,27.1729],[88.0871,27.16422],[88.08775,27.14615],[88.09631,27.13313],[88.11174,27.13118],[88.12288,27.12132],[88.13523,27.12059],[88.13636,27.11475],[88.13891,27.11391],[88.14404,27.11561],[88.14531,27.11177],[88.14984,27.1139],[88.15178,27.10958],[88.15702,27.11031],[88.15881,27.11355],[88.16213,27.11343],[88.16729,27.12243],[88.1706,27.12263],[88.17232,27.12736],[88.17587,27.12981],[88.17919,27.12983],[88.18101,27.13247],[88.18536,27.13077],[88.18958,27.13322],[88.19203,27.13248],[88.19463,27.13485],[88.20144,27.13143],[88.20572,27.13346],[88.21149,27.12989],[88.21375,27.13196],[88.2157,27.13166],[88.21945,27.12847],[88.2196,27.12511],[88.23002,27.11898],[88.24177,27.1195],[88.24858,27.12435],[88.25906,27.12526],[88.26839,27.12951],[88.27248,27.12815],[88.27421,27.13083],[88.27901,27.13187],[88.28315,27.12824],[88.28005,27.14253],[88.28216,27.14881],[88.29038,27.15418],[88.29413,27.16326],[88.30001,27.16904],[88.30081,27.17365],[88.31961,27.18559],[88.3286,27.18757],[88.33063,27.18884],[88.32888,27.19188],[88.33436,27.19453],[88.32301,27.2205],[88.31991,27.2232],[88.30767,27.22608],[88.30323,27.23696],[88.30554,27.2461],[88.30565,27.25654],[88.30398,27.26093],[88.28936,27.27316],[88.28396,27.27558],[88.27838,27.28156],[88.2803,27.2882],[88.29062,27.2949],[88.30647,27.2995],[88.30943,27.3027],[88.311,27.30566],[88.31066,27.31569],[88.3087,27.31874],[88.29681,27.32675],[88.29807,27.33094],[88.30495,27.3376],[88.31965,27.34595],[88.32272,27.34931],[88.32795,27.3649],[88.33063,27.36873],[88.34931,27.37402],[88.35826,27.37828],[88.35758,27.39928],[88.35072,27.41198],[88.34798,27.41415],[88.33895,27.40623],[88.33376,27.41046],[88.3315,27.41706],[88.32557,27.41751],[88.31635,27.41531],[88.30573,27.41684],[88.28409,27.40515],[88.27919,27.40576],[88.27479,27.41185],[88.27462,27.41956],[88.26656,27.46176],[88.26608,27.48976],[88.27148,27.50354],[88.28164,27.51286],[88.26335,27.52574],[88.2415,27.5348],[88.23774,27.54037]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"229","area_level":"District","area_name":"Changlang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[96.70558,27.65067],[96.7,27.66046],[96.68794,27.65511],[96.68229,27.65469],[96.67652,27.64973],[96.66924,27.64735],[96.66632,27.64215],[96.65816,27.63374],[96.64084,27.62788],[96.63364,27.63097],[96.6253,27.63159],[96.61386,27.63806],[96.60822,27.64312],[96.60886,27.64661],[96.60357,27.64673],[96.59632,27.65401],[96.58832,27.65315],[96.58209,27.65606],[96.56646,27.65682],[96.55837,27.65059],[96.54963,27.64676],[96.5307,27.64669],[96.51916,27.63661],[96.50862,27.64313],[96.50289,27.64177],[96.48028,27.64603],[96.47353,27.64574],[96.46901,27.64237],[96.45247,27.64113],[96.45123,27.64366],[96.44702,27.64498],[96.4441,27.6521],[96.43976,27.65244],[96.43585,27.65099],[96.43276,27.65201],[96.43072,27.64932],[96.42272,27.64839],[96.41954,27.65096],[96.41295,27.65124],[96.41119,27.64944],[96.39415,27.64869],[96.39382,27.64544],[96.38377,27.63882],[96.37818,27.64059],[96.37277,27.64496],[96.36842,27.6424],[96.35186,27.62454],[96.34837,27.6061],[96.33632,27.59835],[96.33116,27.58423],[96.32773,27.57923],[96.31379,27.57179],[96.3075,27.56585],[96.2957,27.55834],[96.28898,27.55544],[96.28282,27.55608],[96.27602,27.55899],[96.26848,27.55784],[96.26429,27.5633],[96.24269,27.56357],[96.23733,27.56719],[96.2313,27.56651],[96.22483,27.56817],[96.21585,27.57721],[96.20972,27.57733],[96.2081,27.57973],[96.20347,27.58062],[96.19984,27.58402],[96.19687,27.58308],[96.19244,27.5883],[96.18175,27.59011],[96.17156,27.5947],[96.17001,27.59792],[96.16709,27.59698],[96.16086,27.60107],[96.1402,27.60708],[96.13277,27.60639],[96.13045,27.60934],[96.13488,27.61179],[96.13321,27.61513],[96.12777,27.61643],[96.12579,27.61957],[96.06153,27.60634],[96.05639,27.60015],[96.05345,27.59291],[96.04754,27.58833],[96.04108,27.58663],[96.02318,27.57119],[96.00191,27.55666],[95.99869,27.55957],[95.87581,27.54652],[95.8785,27.51876],[95.87584,27.51242],[95.8788,27.50489],[95.8843,27.50105],[95.88685,27.49708],[95.88003,27.49703],[95.8743,27.49325],[95.87294,27.49078],[95.87389,27.48116],[95.87154,27.47611],[95.87069,27.46665],[95.85655,27.46126],[95.85332,27.45691],[95.85675,27.44493],[95.84947,27.44161],[95.84682,27.43856],[95.84729,27.43619],[95.84234,27.42775],[95.84451,27.42158],[95.85002,27.41781],[95.85296,27.41111],[95.86014,27.40801],[95.8625,27.40945],[95.86245,27.41153],[95.85702,27.41564],[95.85714,27.41988],[95.87088,27.42635],[95.87567,27.43479],[95.87875,27.43612],[95.88322,27.43532],[95.88494,27.43212],[95.88395,27.41402],[95.88759,27.41166],[95.8883,27.40899],[95.88403,27.4025],[95.88573,27.39815],[95.89099,27.40121],[95.89867,27.41286],[95.90001,27.42202],[95.90798,27.43435],[95.91089,27.43577],[95.91823,27.43473],[95.92787,27.43847],[95.93444,27.43564],[95.94131,27.43729],[95.94745,27.43299],[95.94519,27.42664],[95.95113,27.42397],[95.95475,27.41962],[95.95675,27.4265],[95.96034,27.42903],[95.9632,27.42721],[95.96179,27.41801],[95.96456,27.41805],[95.96547,27.42701],[95.96935,27.42789],[95.96962,27.4235],[95.97408,27.42169],[95.97539,27.41939],[95.97515,27.41746],[95.97078,27.41683],[95.97022,27.41491],[95.97405,27.41137],[95.9833,27.41183],[95.98456,27.40445],[95.99014,27.40236],[95.99349,27.39639],[95.99647,27.3946],[95.99817,27.38789],[96.01788,27.36943],[96.01775,27.36492],[96.0127,27.36503],[96.00753,27.36063],[96.00249,27.36074],[95.9965,27.35636],[95.99329,27.35794],[95.98921,27.3565],[95.98688,27.34561],[95.97654,27.33738],[95.97158,27.33655],[95.97101,27.33282],[95.96529,27.32788],[95.96772,27.32567],[95.97209,27.32744],[95.97556,27.32446],[95.96912,27.32241],[95.96276,27.32314],[95.96103,27.31644],[95.95505,27.31768],[95.95656,27.31257],[95.96004,27.31095],[95.95343,27.30892],[95.94663,27.30379],[95.94172,27.30523],[95.93756,27.30082],[95.93012,27.30028],[95.91799,27.29134],[95.91478,27.29201],[95.91338,27.28914],[95.90717,27.28897],[95.90606,27.28222],[95.90111,27.28392],[95.89721,27.28216],[95.89709,27.28054],[95.90435,27.27392],[95.90008,27.27425],[95.89945,27.26868],[95.89356,27.26757],[95.89462,27.26101],[95.89418,27.25692],[95.89243,27.25528],[95.88132,27.25591],[95.8765,27.25964],[95.86937,27.26002],[95.86383,27.26644],[95.85643,27.27106],[95.85382,27.2792],[95.85931,27.28722],[95.8505,27.28659],[95.82332,27.27887],[95.81538,27.27854],[95.80516,27.27295],[95.80553,27.2758],[95.79945,27.27655],[95.80262,27.28294],[95.80089,27.28427],[95.79954,27.28234],[95.79522,27.28253],[95.7879,27.27865],[95.78818,27.27672],[95.78059,27.27246],[95.77958,27.26975],[95.77525,27.27041],[95.76518,27.26726],[95.75686,27.26864],[95.7477,27.26575],[95.74211,27.26666],[95.73618,27.26326],[95.73469,27.26039],[95.72713,27.25965],[95.72021,27.24948],[95.71378,27.25024],[95.71198,27.25284],[95.70788,27.25006],[95.70151,27.24857],[95.69236,27.25321],[95.68153,27.25174],[95.67603,27.24696],[95.63391,27.23031],[95.64095,27.20871],[95.64188,27.20164],[95.64068,27.19301],[95.64767,27.18454],[95.64951,27.17455],[95.64805,27.14617],[95.65191,27.12733],[95.66494,27.09931],[95.68549,27.07076],[95.70335,27.03626],[95.7162,27.00082],[95.71602,26.99461],[95.73286,26.97285],[95.73028,26.96658],[95.64914,26.957],[95.64696,26.95419],[95.64842,26.95089],[95.7075,26.92981],[95.72627,26.9192],[95.74684,26.90407],[95.75015,26.90623],[95.75127,26.90902],[95.74666,26.91631],[95.74679,26.92265],[95.7499,26.92359],[95.74789,26.92583],[95.75552,26.92957],[95.75684,26.93204],[95.75615,26.93512],[95.76005,26.93685],[95.75963,26.94542],[95.755,26.95384],[95.75906,26.95464],[95.76084,26.95875],[95.7603,26.96392],[95.76507,26.9684],[95.7681,26.97652],[95.78115,26.97779],[95.78343,26.99012],[95.79634,26.99774],[95.80222,27.00649],[95.80203,27.0145],[95.80365,27.01555],[95.8106,27.01359],[95.81207,27.01461],[95.81382,27.01234],[95.82269,27.00959],[95.82562,27.01023],[95.83006,27.00748],[95.83585,27.00923],[95.8425,27.01394],[95.851,27.01427],[95.85761,27.01185],[95.86307,27.01344],[95.87008,27.0127],[95.87576,27.01445],[95.8759,27.01925],[95.87915,27.0229],[95.88658,27.02611],[95.88908,27.02378],[95.89495,27.02596],[95.90137,27.0326],[95.90423,27.03875],[95.911,27.0367],[95.91777,27.04093],[95.92249,27.04158],[95.926,27.04492],[95.93365,27.04572],[95.94596,27.05165],[95.95351,27.06633],[95.95591,27.07778],[95.96501,27.08693],[95.96378,27.09244],[95.9675,27.09547],[95.96862,27.09989],[95.98571,27.11312],[95.98797,27.1199],[95.99204,27.12282],[95.99856,27.13497],[96.01051,27.14224],[96.0099,27.14547],[96.01466,27.15],[96.01604,27.15793],[96.01856,27.16082],[96.01969,27.16641],[96.01827,27.16959],[96.02296,27.18008],[96.03158,27.18602],[96.03983,27.18761],[96.05428,27.19603],[96.05714,27.20124],[96.06346,27.20361],[96.06405,27.20586],[96.07175,27.20523],[96.07741,27.20835],[96.07799,27.21055],[96.08275,27.21288],[96.08919,27.21981],[96.09061,27.22333],[96.09957,27.22435],[96.11192,27.23175],[96.12108,27.23159],[96.12458,27.2355],[96.13105,27.23657],[96.13685,27.24137],[96.14447,27.24129],[96.1495,27.24297],[96.15556,27.24835],[96.15807,27.24739],[96.18529,27.24891],[96.19358,27.26152],[96.20444,27.25995],[96.20638,27.26149],[96.20899,27.26107],[96.21081,27.26233],[96.21048,27.26485],[96.21396,27.26552],[96.22422,27.27258],[96.22799,27.27868],[96.23147,27.27611],[96.24537,27.27642],[96.24797,27.27258],[96.25558,27.2747],[96.25926,27.2722],[96.26107,27.27317],[96.27145,27.27166],[96.27562,27.27997],[96.27457,27.28339],[96.28391,27.28471],[96.29498,27.29165],[96.3063,27.29415],[96.32609,27.28887],[96.33033,27.28967],[96.33087,27.28725],[96.33966,27.28503],[96.34591,27.28552],[96.34916,27.28852],[96.34934,27.29316],[96.35247,27.29509],[96.35813,27.29015],[96.36723,27.28683],[96.36799,27.28967],[96.37021,27.28997],[96.375,27.2853],[96.38232,27.28678],[96.38684,27.28463],[96.40191,27.29109],[96.40289,27.2932],[96.40495,27.28943],[96.40799,27.2877],[96.40965,27.29064],[96.41438,27.29331],[96.41575,27.29735],[96.4218,27.30168],[96.4355,27.30236],[96.44065,27.30633],[96.4441,27.30186],[96.44898,27.303],[96.45121,27.30142],[96.45483,27.30235],[96.45745,27.30658],[96.46244,27.30617],[96.47038,27.30068],[96.48098,27.29931],[96.48856,27.29628],[96.48901,27.30111],[96.49058,27.30263],[96.50155,27.29887],[96.50814,27.29912],[96.50912,27.2972],[96.5123,27.29671],[96.51233,27.29252],[96.51575,27.29036],[96.51783,27.28563],[96.51898,27.28706],[96.52385,27.28655],[96.5314,27.2966],[96.54269,27.3021],[96.54255,27.30902],[96.5505,27.31294],[96.55122,27.31846],[96.5534,27.31814],[96.55527,27.32038],[96.55786,27.31838],[96.56408,27.31845],[96.56784,27.32231],[96.57067,27.32198],[96.5744,27.32405],[96.58406,27.3341],[96.58932,27.3356],[96.59572,27.33387],[96.59526,27.34051],[96.59105,27.34631],[96.5913,27.34845],[96.5952,27.34998],[96.60036,27.35498],[96.59926,27.35598],[96.60335,27.35921],[96.60612,27.36581],[96.62461,27.36665],[96.64768,27.35916],[96.6609,27.36428],[96.66547,27.36103],[96.6702,27.36093],[96.67236,27.35697],[96.67528,27.36125],[96.69749,27.35766],[96.70206,27.35974],[96.70095,27.36278],[96.7045,27.3721],[96.71146,27.3702],[96.72136,27.36342],[96.72952,27.3621],[96.72985,27.35942],[96.74009,27.35754],[96.74577,27.3582],[96.74652,27.356],[96.74928,27.35569],[96.75169,27.35227],[96.75667,27.35444],[96.76308,27.35405],[96.76692,27.35705],[96.77062,27.35584],[96.77439,27.35171],[96.78127,27.35055],[96.78761,27.34783],[96.78906,27.34573],[96.79647,27.34574],[96.80152,27.33939],[96.80512,27.32894],[96.81324,27.32167],[96.82242,27.30822],[96.83489,27.30294],[96.83802,27.30032],[96.83859,27.29716],[96.84798,27.29028],[96.84753,27.28699],[96.85018,27.27825],[96.84705,27.2711],[96.85098,27.26968],[96.85722,27.26277],[96.86261,27.25962],[96.86857,27.2584],[96.88491,27.25944],[96.8841,27.25574],[96.88672,27.25345],[96.88766,27.24669],[96.88224,27.24284],[96.88138,27.23929],[96.88208,27.23645],[96.88772,27.23565],[96.88504,27.23156],[96.88523,27.22647],[96.88143,27.22488],[96.87703,27.22032],[96.86721,27.21696],[96.8608,27.2107],[96.85485,27.21036],[96.8588,27.20316],[96.85921,27.19761],[96.85661,27.1943],[96.85748,27.19232],[96.86496,27.18878],[96.87441,27.18068],[96.88297,27.17833],[96.90108,27.16873],[96.90839,27.16868],[96.91245,27.16611],[96.92203,27.16536],[96.93199,27.16158],[96.93917,27.1619],[96.94332,27.16378],[96.95272,27.16225],[96.95534,27.16437],[96.96398,27.16135],[96.96504,27.15803],[96.98483,27.1543],[96.99145,27.1452],[96.9933,27.13999],[97.00531,27.14091],[97.01969,27.13292],[97.02466,27.1319],[97.02604,27.12948],[97.03027,27.13155],[97.03595,27.12433],[97.03349,27.11827],[97.04065,27.11623],[97.04448,27.11284],[97.04459,27.10789],[97.04956,27.10518],[97.05219,27.10615],[97.05804,27.10016],[97.06221,27.09856],[97.06344,27.09145],[97.06695,27.09151],[97.07118,27.08922],[97.07667,27.09866],[97.08721,27.09482],[97.09631,27.09589],[97.09794,27.09854],[97.09489,27.10345],[97.10035,27.10836],[97.10643,27.10389],[97.11932,27.10387],[97.12456,27.09566],[97.13551,27.09365],[97.13852,27.09105],[97.14432,27.09976],[97.14433,27.10336],[97.14855,27.10721],[97.14811,27.11322],[97.14966,27.11676],[97.15665,27.11855],[97.16179,27.12289],[97.16113,27.12888],[97.1659,27.13514],[97.16385,27.14224],[97.15982,27.14636],[97.15093,27.14981],[97.15111,27.15331],[97.14667,27.16491],[97.13859,27.16414],[97.13259,27.17017],[97.12451,27.17428],[97.12172,27.18342],[97.12209,27.1899],[97.11072,27.19669],[97.10766,27.20116],[97.09048,27.21362],[97.09269,27.22599],[97.09048,27.22818],[97.08851,27.23821],[97.07402,27.24684],[97.07374,27.25153],[97.06893,27.25724],[97.05493,27.26571],[97.05621,27.27006],[97.05478,27.27512],[97.05095,27.27562],[97.05108,27.27746],[97.04802,27.28021],[97.04107,27.28218],[97.03788,27.28645],[97.03497,27.29507],[97.02909,27.30131],[97.02982,27.30524],[97.02827,27.30794],[97.02515,27.3064],[97.02224,27.30704],[97.0201,27.3103],[97.01711,27.31058],[97.01532,27.31307],[97.00921,27.31052],[97.008,27.31343],[96.99811,27.31898],[96.99525,27.32527],[96.9958,27.33261],[96.99272,27.33625],[96.99054,27.34377],[96.98065,27.34554],[96.97845,27.35658],[96.97068,27.36627],[96.96213,27.37312],[96.96748,27.38151],[96.96654,27.38577],[96.96027,27.39433],[96.96231,27.40165],[96.96056,27.40409],[96.95399,27.40693],[96.94444,27.40861],[96.94061,27.41312],[96.93439,27.41577],[96.93164,27.41939],[96.9317,27.42297],[96.93387,27.42624],[96.93262,27.4309],[96.92572,27.43604],[96.91633,27.44637],[96.90789,27.44832],[96.90324,27.45273],[96.90711,27.47762],[96.91053,27.48087],[96.9108,27.48645],[96.91782,27.49709],[96.92298,27.50201],[96.92827,27.51157],[96.92982,27.52418],[96.92473,27.53328],[96.91301,27.54388],[96.91223,27.58053],[96.90119,27.5801],[96.89671,27.5815],[96.89571,27.58729],[96.89675,27.60926],[96.89838,27.61421],[96.90016,27.61466],[96.8963,27.61537],[96.88316,27.62396],[96.86135,27.63092],[96.85591,27.62946],[96.84887,27.624],[96.83001,27.62878],[96.82595,27.63272],[96.81291,27.63315],[96.80738,27.63146],[96.80241,27.6325],[96.79142,27.6399],[96.7827,27.64247],[96.77939,27.64059],[96.77399,27.63111],[96.77333,27.62349],[96.76838,27.61614],[96.7565,27.62127],[96.74666,27.6326],[96.73257,27.64156],[96.72696,27.64731],[96.71041,27.64845],[96.70558,27.65067]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"23","area_level":"District","area_name":"Shimla","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.74789,31.71336],[77.73108,31.71459],[77.72264,31.70816],[77.71454,31.70597],[77.71154,31.70364],[77.69209,31.70476],[77.6781,31.70313],[77.67531,31.69707],[77.6701,31.69482],[77.67141,31.68794],[77.67049,31.6857],[77.66666,31.68217],[77.65737,31.67951],[77.65668,31.66807],[77.65059,31.66637],[77.64583,31.6625],[77.64675,31.65229],[77.6498,31.65186],[77.65166,31.64725],[77.66062,31.63782],[77.66261,31.63368],[77.64979,31.62827],[77.64911,31.62063],[77.64574,31.61531],[77.64617,31.60858],[77.64412,31.60697],[77.64868,31.59609],[77.64742,31.5912],[77.64867,31.583],[77.65621,31.57662],[77.65947,31.57572],[77.66613,31.56883],[77.6682,31.5637],[77.68056,31.55959],[77.67857,31.55777],[77.68069,31.55245],[77.67965,31.55123],[77.68664,31.54458],[77.69333,31.5451],[77.69872,31.54204],[77.70184,31.53473],[77.70209,31.52976],[77.69851,31.5225],[77.69909,31.51427],[77.70234,31.5117],[77.70296,31.50773],[77.70711,31.50175],[77.70392,31.49781],[77.69745,31.4952],[77.6823,31.48287],[77.68038,31.47709],[77.66952,31.4626],[77.65971,31.46074],[77.65038,31.45538],[77.64016,31.45677],[77.63522,31.45308],[77.62784,31.45125],[77.62899,31.44482],[77.62255,31.43578],[77.62088,31.42674],[77.62172,31.41698],[77.63335,31.40105],[77.63174,31.39342],[77.62886,31.38996],[77.62389,31.3882],[77.61674,31.38972],[77.6066,31.39691],[77.59614,31.39924],[77.5773,31.39626],[77.57543,31.3931],[77.57538,31.38861],[77.55395,31.39018],[77.54511,31.38092],[77.54423,31.37466],[77.5354,31.36225],[77.5268,31.35304],[77.51729,31.3481],[77.51079,31.34937],[77.50546,31.34769],[77.49874,31.35552],[77.48811,31.35523],[77.48083,31.35445],[77.47438,31.34921],[77.46803,31.35153],[77.46242,31.35003],[77.45703,31.35127],[77.45417,31.34893],[77.45201,31.3439],[77.43532,31.34421],[77.43302,31.34066],[77.42925,31.34042],[77.42672,31.34146],[77.42645,31.34427],[77.42055,31.34792],[77.41236,31.34642],[77.4083,31.35396],[77.39799,31.36163],[77.39212,31.35467],[77.38487,31.36022],[77.37879,31.35749],[77.37243,31.36011],[77.37058,31.35954],[77.35585,31.35283],[77.35041,31.34065],[77.34432,31.33679],[77.34316,31.33378],[77.34525,31.32725],[77.34024,31.32422],[77.3395,31.31884],[77.33704,31.31582],[77.33746,31.30707],[77.33328,31.29398],[77.32104,31.29122],[77.31855,31.28382],[77.30819,31.27934],[77.30602,31.27697],[77.3066,31.26932],[77.30393,31.2673],[77.28794,31.26852],[77.28126,31.2639],[77.27488,31.26771],[77.27292,31.27267],[77.2686,31.2726],[77.26524,31.26697],[77.2583,31.26437],[77.25059,31.25894],[77.2455,31.25118],[77.2434,31.25154],[77.24126,31.25525],[77.23192,31.25996],[77.21985,31.26127],[77.20905,31.2479],[77.19923,31.24219],[77.19459,31.24329],[77.18974,31.25451],[77.18211,31.24432],[77.16876,31.23481],[77.15669,31.23198],[77.1406,31.23175],[77.13589,31.23021],[77.12268,31.23232],[77.11977,31.23537],[77.10556,31.24091],[77.08033,31.24719],[77.07723,31.24986],[77.07291,31.25868],[77.06203,31.25897],[77.05441,31.26761],[77.04834,31.2677],[77.03068,31.27278],[77.00348,31.24526],[77.00461,31.23836],[77.01266,31.23385],[77.01116,31.23061],[77.01329,31.22398],[77.01946,31.22345],[77.02099,31.22127],[77.01353,31.21554],[77.01166,31.21596],[77.01012,31.21292],[77.00754,31.21317],[77.00745,31.21003],[77.00441,31.20802],[77.00314,31.20422],[77.00487,31.20201],[77.0015,31.19608],[77.01374,31.18445],[77.02573,31.17933],[77.0331,31.17847],[77.03058,31.17406],[77.03247,31.17051],[77.03157,31.16682],[77.03531,31.15177],[77.02922,31.15039],[77.0295,31.14867],[77.02567,31.14493],[77.0201,31.14269],[77.0163,31.13701],[77.01019,31.13464],[77.00723,31.12899],[77.00934,31.12395],[77.00897,31.1177],[77.01209,31.11588],[77.01159,31.11427],[77.00676,31.11326],[77.00379,31.11075],[76.99836,31.11473],[76.99151,31.11498],[76.98887,31.11385],[76.99064,31.10829],[76.99773,31.10315],[77.0015,31.10449],[77.00359,31.10364],[77.00557,31.10572],[77.01459,31.10697],[77.01719,31.10931],[77.02274,31.10758],[77.02778,31.11087],[77.03519,31.10999],[77.04848,31.11433],[77.0545,31.10384],[77.05409,31.09985],[77.04402,31.09875],[77.0378,31.09615],[77.02812,31.08663],[77.02398,31.08515],[77.02615,31.07897],[77.03546,31.07551],[77.03591,31.06703],[77.04366,31.06945],[77.04515,31.07083],[77.04629,31.07927],[77.05032,31.08007],[77.0485,31.08196],[77.05165,31.08196],[77.05513,31.08472],[77.0658,31.08624],[77.07345,31.07799],[77.0755,31.07873],[77.07496,31.08041],[77.07731,31.0834],[77.0805,31.08271],[77.0835,31.08069],[77.07906,31.07416],[77.08341,31.0685],[77.08808,31.06627],[77.07812,31.05747],[77.07743,31.05454],[77.06983,31.0539],[77.06749,31.05197],[77.06685,31.04795],[77.07514,31.04513],[77.07957,31.04553],[77.08635,31.04252],[77.08814,31.03788],[77.0964,31.03149],[77.10173,31.02945],[77.11317,31.03204],[77.11909,31.03143],[77.12359,31.0264],[77.12641,31.02654],[77.13513,31.02263],[77.14313,31.01626],[77.15151,31.00479],[77.16439,30.99982],[77.17102,31.01158],[77.1881,31.00486],[77.19748,31.00289],[77.20004,30.99949],[77.20476,30.99774],[77.20614,30.99192],[77.21155,30.98724],[77.20721,30.98179],[77.20657,30.97718],[77.20181,30.97362],[77.2043,30.96745],[77.20727,30.96554],[77.21878,30.96545],[77.23208,30.96074],[77.24326,30.95388],[77.24955,30.94789],[77.24576,30.94128],[77.23945,30.9397],[77.23946,30.92986],[77.24422,30.92868],[77.24742,30.91745],[77.26284,30.93019],[77.26661,30.93766],[77.26515,30.94039],[77.26728,30.94191],[77.28085,30.95058],[77.29503,30.95119],[77.29816,30.95285],[77.30302,30.95895],[77.29961,30.96396],[77.30145,30.96753],[77.31096,30.97023],[77.31373,30.97468],[77.32246,30.97804],[77.32605,30.98504],[77.33566,30.99359],[77.33628,30.99848],[77.34289,31.00179],[77.34734,30.99935],[77.36392,31.00525],[77.36956,31.00547],[77.37558,31.01266],[77.37605,31.01434],[77.37359,31.01687],[77.37938,31.02078],[77.39131,31.01337],[77.39569,31.01292],[77.39549,31.01066],[77.39817,31.01029],[77.40568,31.00262],[77.40701,30.99917],[77.41075,30.99674],[77.41666,30.99922],[77.41907,30.99875],[77.41949,30.99626],[77.42505,30.99317],[77.42398,30.99104],[77.42595,30.9885],[77.43579,30.98453],[77.43928,30.9793],[77.44344,30.96643],[77.44113,30.95917],[77.44252,30.95154],[77.44479,30.95079],[77.44332,30.94494],[77.44092,30.94182],[77.43783,30.9416],[77.4181,30.92901],[77.42232,30.92568],[77.42093,30.92097],[77.4233,30.91438],[77.42525,30.91331],[77.42661,30.90343],[77.43266,30.89895],[77.43783,30.88933],[77.43852,30.88476],[77.43532,30.87518],[77.44433,30.87067],[77.4514,30.86312],[77.461,30.86679],[77.46466,30.86457],[77.47877,30.86463],[77.48465,30.84853],[77.4915,30.84255],[77.48986,30.83816],[77.49083,30.83182],[77.48907,30.82196],[77.49032,30.8186],[77.48924,30.81696],[77.49399,30.81456],[77.49367,30.80513],[77.49501,30.80065],[77.49248,30.7952],[77.50039,30.79442],[77.5071,30.79081],[77.51769,30.78988],[77.52113,30.7858],[77.52978,30.7997],[77.53607,30.80125],[77.53753,30.80009],[77.54839,30.80043],[77.55061,30.78852],[77.54516,30.77827],[77.54672,30.77426],[77.55228,30.77509],[77.55526,30.77847],[77.59029,30.77807],[77.59421,30.7796],[77.6003,30.77937],[77.6007,30.78153],[77.6041,30.78284],[77.60413,30.78458],[77.60633,30.7858],[77.60817,30.79093],[77.6199,30.79413],[77.6181,30.79873],[77.62173,30.80857],[77.62425,30.80999],[77.63323,30.8086],[77.63627,30.80948],[77.64708,30.80451],[77.65495,30.80494],[77.65496,30.80294],[77.65899,30.80692],[77.66068,30.80543],[77.66115,30.79996],[77.66631,30.80258],[77.66725,30.79954],[77.67425,30.79431],[77.67533,30.79112],[77.68279,30.79063],[77.68691,30.78587],[77.68745,30.78335],[77.6845,30.77829],[77.70381,30.76404],[77.70414,30.76558],[77.71679,30.77177],[77.72136,30.77579],[77.73157,30.79123],[77.73206,30.79878],[77.73497,30.80448],[77.7456,30.81314],[77.74837,30.82163],[77.76128,30.82607],[77.75768,30.83513],[77.74402,30.84659],[77.74587,30.85112],[77.75418,30.85547],[77.75719,30.85998],[77.7561,30.87268],[77.75822,30.8768],[77.76321,30.8804],[77.77341,30.87754],[77.77613,30.87541],[77.77738,30.86315],[77.77923,30.86037],[77.78624,30.85715],[77.80568,30.85321],[77.80359,30.86499],[77.79886,30.86804],[77.80138,30.89332],[77.80883,30.8967],[77.81528,30.90438],[77.81587,30.91032],[77.81094,30.91663],[77.81357,30.92132],[77.81153,30.92327],[77.80493,30.92359],[77.78653,30.92026],[77.78412,30.91692],[77.7718,30.91861],[77.76752,30.91733],[77.76589,30.91968],[77.7628,30.91818],[77.76394,30.93045],[77.75274,30.93381],[77.75404,30.93754],[77.74883,30.95113],[77.75382,30.96413],[77.76659,30.97013],[77.76917,30.97419],[77.77372,30.97418],[77.79367,30.96875],[77.81398,30.95383],[77.82436,30.9505],[77.82862,30.95329],[77.83473,30.95205],[77.83759,30.95317],[77.83769,30.95518],[77.83219,30.95959],[77.82419,30.95711],[77.81438,30.96178],[77.8163,30.97278],[77.82243,30.97655],[77.82406,30.98047],[77.82513,30.98509],[77.82417,30.98842],[77.83182,30.99399],[77.82199,31.00429],[77.82501,31.0098],[77.80994,31.01099],[77.80751,31.01621],[77.807,31.02677],[77.81145,31.03163],[77.81747,31.03304],[77.82288,31.02928],[77.82982,31.02876],[77.82137,31.04274],[77.82162,31.04671],[77.81604,31.04998],[77.81679,31.05669],[77.81136,31.0591],[77.82296,31.05866],[77.82205,31.05519],[77.82436,31.05545],[77.82893,31.05827],[77.83806,31.07265],[77.85124,31.07337],[77.86374,31.09396],[77.86047,31.10159],[77.86382,31.10851],[77.87323,31.11497],[77.87845,31.11633],[77.87803,31.11503],[77.88052,31.11479],[77.88241,31.11772],[77.88876,31.11921],[77.89068,31.12175],[77.88905,31.13299],[77.89401,31.13396],[77.90045,31.1422],[77.89874,31.15023],[77.90862,31.15406],[77.91581,31.15389],[77.92152,31.15047],[77.92479,31.15043],[77.93516,31.15469],[77.94316,31.16126],[77.95149,31.16131],[77.95362,31.16595],[77.9589,31.17092],[77.96732,31.17337],[77.97327,31.16615],[77.98059,31.16212],[77.98472,31.15695],[77.99094,31.16005],[78.00082,31.16195],[78.00863,31.16082],[78.01445,31.15778],[78.02062,31.15155],[78.03034,31.15097],[78.02971,31.16411],[78.03384,31.16971],[78.04104,31.17292],[78.04264,31.1785],[78.05121,31.17989],[78.06596,31.18717],[78.08774,31.18724],[78.09714,31.18421],[78.10362,31.18538],[78.12348,31.20015],[78.1286,31.20078],[78.13338,31.20833],[78.14768,31.21059],[78.14842,31.2137],[78.15362,31.21822],[78.1581,31.2189],[78.16023,31.22548],[78.16715,31.22465],[78.17381,31.22684],[78.17976,31.22565],[78.18703,31.22705],[78.19218,31.22476],[78.19809,31.21765],[78.2012,31.21725],[78.20916,31.22012],[78.21244,31.21957],[78.21467,31.22134],[78.21579,31.22872],[78.22032,31.23394],[78.22576,31.23503],[78.23231,31.23405],[78.24317,31.2293],[78.24562,31.22968],[78.25071,31.23331],[78.24951,31.24004],[78.25539,31.23851],[78.26047,31.23975],[78.26264,31.24519],[78.26868,31.24858],[78.26908,31.25232],[78.2735,31.25589],[78.27603,31.26151],[78.27996,31.26247],[78.28287,31.26621],[78.29188,31.25995],[78.29642,31.26113],[78.30255,31.25902],[78.30633,31.25989],[78.31045,31.27109],[78.30822,31.27662],[78.31134,31.28223],[78.31032,31.28469],[78.30222,31.2862],[78.29192,31.29235],[78.29759,31.30327],[78.29707,31.31156],[78.302,31.31543],[78.29515,31.31824],[78.29423,31.32128],[78.29083,31.32413],[78.29173,31.32612],[78.27457,31.32369],[78.26825,31.32442],[78.26372,31.32686],[78.25771,31.32688],[78.25371,31.32958],[78.24529,31.34099],[78.23756,31.34164],[78.23774,31.33877],[78.23418,31.33315],[78.22778,31.33218],[78.22502,31.3286],[78.22162,31.32794],[78.21909,31.32514],[78.21157,31.32415],[78.20759,31.329],[78.19681,31.32952],[78.193,31.33304],[78.18735,31.33432],[78.18257,31.33901],[78.17687,31.33692],[78.16846,31.34603],[78.16568,31.34642],[78.16235,31.34419],[78.15045,31.36073],[78.15847,31.36781],[78.16082,31.37347],[78.16434,31.37533],[78.1631,31.38317],[78.1518,31.38982],[78.148,31.38687],[78.14359,31.38766],[78.13968,31.3943],[78.13086,31.39789],[78.12738,31.40537],[78.12018,31.40708],[78.11818,31.40915],[78.1074,31.40995],[78.10368,31.4133],[78.10154,31.41915],[78.09345,31.41849],[78.08737,31.42163],[78.07997,31.41664],[78.07474,31.41674],[78.06764,31.41293],[78.05464,31.41744],[78.04424,31.41132],[78.04299,31.40896],[78.03457,31.40656],[78.02676,31.40008],[78.02217,31.39915],[78.01489,31.40121],[78.00614,31.40014],[77.99865,31.40313],[77.99521,31.40216],[77.99091,31.40356],[77.9748,31.39987],[77.96252,31.4045],[77.95873,31.41475],[77.94691,31.42358],[77.93443,31.42222],[77.92689,31.42317],[77.92349,31.4312],[77.91647,31.43139],[77.91337,31.43294],[77.91269,31.43633],[77.90959,31.43783],[77.90807,31.44109],[77.89737,31.44483],[77.8978,31.4507],[77.89469,31.45989],[77.88103,31.46991],[77.88237,31.48548],[77.88117,31.49005],[77.87704,31.49417],[77.86912,31.49753],[77.86565,31.50387],[77.85873,31.50962],[77.85589,31.50642],[77.85115,31.50794],[77.83973,31.5059],[77.83906,31.51089],[77.84154,31.51474],[77.84273,31.52344],[77.8414,31.53784],[77.83898,31.54153],[77.83393,31.55942],[77.83501,31.5725],[77.83796,31.58055],[77.82413,31.59549],[77.81832,31.60522],[77.81206,31.60954],[77.81162,31.61575],[77.82356,31.63472],[77.82135,31.64159],[77.81615,31.64386],[77.81694,31.65359],[77.81107,31.66694],[77.79816,31.67352],[77.79286,31.6743],[77.79341,31.67913],[77.78954,31.68809],[77.78492,31.69162],[77.78413,31.6959],[77.7747,31.70105],[77.77219,31.70548],[77.76271,31.70529],[77.74789,31.71336]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"230","area_level":"District","area_name":"Dibang Valley","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[96.31858,28.52596],[96.34475,28.55401],[96.35718,28.55347],[96.3917,28.55581],[96.40001,28.55928],[96.40139,28.5695],[96.39937,28.577],[96.40203,28.58095],[96.41052,28.58273],[96.42484,28.58211],[96.42967,28.59098],[96.45545,28.61114],[96.47447,28.62178],[96.48732,28.63341],[96.48736,28.63891],[96.48247,28.65323],[96.4669,28.67518],[96.47063,28.67885],[96.491,28.68441],[96.50736,28.69564],[96.52502,28.70108],[96.55566,28.70116],[96.57931,28.71159],[96.59253,28.72463],[96.60424,28.74443],[96.61014,28.76687],[96.60899,28.77983],[96.60323,28.793],[96.55687,28.84143],[96.52609,28.88246],[96.53011,28.91025],[96.50802,28.95185],[96.50938,28.96637],[96.49216,28.95971],[96.48122,28.95852],[96.46944,28.97122],[96.46467,28.98314],[96.4659,28.99527],[96.49089,29.03337],[96.50069,29.05278],[96.5128,29.06969],[96.51358,29.07396],[96.49847,29.07127],[96.47707,29.06313],[96.46229,29.0566],[96.4537,29.04909],[96.43558,29.04103],[96.42314,29.03751],[96.39994,29.03588],[96.3565,29.03703],[96.34139,29.03433],[96.32691,29.02802],[96.29401,29.00815],[96.27941,28.99467],[96.26769,28.97915],[96.22017,28.92977],[96.21138,28.92799],[96.20512,28.92276],[96.18191,28.91034],[96.16825,28.89872],[96.16087,28.89783],[96.15947,28.90721],[96.15543,28.91789],[96.1349,28.93523],[96.14044,28.94241],[96.14229,28.95667],[96.1718,28.96979],[96.17325,28.99171],[96.17147,28.99919],[96.14093,29.05828],[96.1288,29.07049],[96.12031,29.07442],[96.10206,29.07899],[96.12802,29.08629],[96.15606,29.09182],[96.17359,29.09922],[96.18235,29.1053],[96.19163,29.11591],[96.20074,29.13345],[96.21052,29.14809],[96.2325,29.15195],[96.24495,29.16576],[96.27408,29.16573],[96.31627,29.17064],[96.34201,29.17838],[96.35025,29.18448],[96.3653,29.22517],[96.37398,29.23436],[96.37912,29.24345],[96.38083,29.25461],[96.37908,29.26711],[96.36958,29.28734],[96.36382,29.29165],[96.3543,29.29205],[96.34652,29.28928],[96.34444,29.28125],[96.3405,29.27401],[96.30945,29.26434],[96.29529,29.25466],[96.28957,29.24463],[96.28236,29.24231],[96.26298,29.24169],[96.25414,29.23944],[96.24379,29.23939],[96.23548,29.24189],[96.22373,29.25122],[96.19178,29.29006],[96.18646,29.30246],[96.17992,29.30751],[96.17524,29.31678],[96.17449,29.32302],[96.17852,29.33719],[96.1765,29.34515],[96.16972,29.35594],[96.1535,29.37381],[96.14057,29.40205],[96.12076,29.41409],[96.10524,29.43001],[96.08926,29.45264],[96.08125,29.46108],[96.06732,29.46595],[96.05689,29.46494],[96.04275,29.46073],[96.03063,29.45334],[96.00882,29.42772],[95.99863,29.42072],[95.9767,29.41348],[95.94181,29.38765],[95.93273,29.3861],[95.91969,29.3871],[95.90352,29.39084],[95.86175,29.39512],[95.83844,29.3712],[95.83099,29.35883],[95.81113,29.3596],[95.80271,29.34942],[95.78213,29.34139],[95.78095,29.35576],[95.77688,29.36165],[95.76571,29.35635],[95.7595,29.3468],[95.75256,29.3442],[95.73722,29.3319],[95.72838,29.31863],[95.721,29.3127],[95.7056,29.30445],[95.68899,29.30461],[95.68453,29.29714],[95.67154,29.28235],[95.65983,29.27157],[95.64445,29.26332],[95.63148,29.25998],[95.62484,29.25235],[95.61926,29.2497],[95.608,29.25323],[95.59716,29.25985],[95.58303,29.26061],[95.57807,29.25387],[95.5722,29.22281],[95.56374,29.21667],[95.54091,29.21753],[95.52693,29.21566],[95.52697,29.20515],[95.53667,29.1692],[95.53072,29.13049],[95.51754,29.1336],[95.49673,29.14225],[95.48099,29.14307],[95.48108,29.12229],[95.47723,29.08708],[95.46645,29.06646],[95.44935,29.04415],[95.4403,29.0366],[95.42774,29.04112],[95.42122,29.04136],[95.41065,29.03052],[95.39873,29.03119],[95.38506,29.03527],[95.36825,29.03635],[95.34809,29.04114],[95.32244,29.05066],[95.30464,29.05966],[95.28792,29.06264],[95.2714,29.05874],[95.27154,29.05303],[95.26883,29.04798],[95.27562,29.04393],[95.27788,29.0325],[95.27606,29.02883],[95.26547,29.02489],[95.2558,29.00693],[95.2519,29.00328],[95.2436,29.00072],[95.24503,28.9875],[95.25553,28.98061],[95.25547,28.96992],[95.2618,28.96373],[95.25566,28.95573],[95.25596,28.95114],[95.26402,28.94646],[95.27281,28.94518],[95.28336,28.94661],[95.29571,28.95283],[95.29971,28.95666],[95.30704,28.9543],[95.30774,28.95045],[95.30602,28.94594],[95.30751,28.94282],[95.31281,28.94003],[95.31249,28.93413],[95.3241,28.92974],[95.32804,28.91895],[95.31825,28.90982],[95.32522,28.90648],[95.32305,28.90273],[95.32594,28.89442],[95.32543,28.8919],[95.31616,28.88604],[95.32315,28.87427],[95.32178,28.86224],[95.32781,28.85376],[95.32304,28.85063],[95.32412,28.84332],[95.32701,28.84139],[95.32795,28.83597],[95.33032,28.83392],[95.33849,28.83471],[95.34628,28.82613],[95.35299,28.82562],[95.35535,28.82317],[95.35348,28.81815],[95.35867,28.79924],[95.36093,28.79828],[95.36048,28.79278],[95.36259,28.78695],[95.37718,28.77768],[95.3736,28.76914],[95.37403,28.7646],[95.37965,28.75343],[95.3893,28.74127],[95.38457,28.73068],[95.37471,28.72723],[95.36712,28.71428],[95.35083,28.70437],[95.35475,28.70166],[95.35683,28.69566],[95.35956,28.65946],[95.36731,28.644],[95.36528,28.62601],[95.37519,28.6143],[95.37633,28.59787],[95.38087,28.58499],[95.3801,28.57984],[95.38184,28.57028],[95.40087,28.56771],[95.40921,28.55374],[95.40958,28.54947],[95.40812,28.54663],[95.41135,28.55079],[95.42416,28.54498],[95.42683,28.5452],[95.44498,28.55546],[95.45079,28.55473],[95.4539,28.55086],[95.45864,28.54873],[95.45947,28.54161],[95.46465,28.53981],[95.46745,28.53673],[95.47647,28.53728],[95.49368,28.53098],[95.49955,28.52176],[95.49988,28.51855],[95.51567,28.52158],[95.52156,28.5181],[95.52593,28.51277],[95.52329,28.50364],[95.53287,28.5012],[95.53934,28.49603],[95.5478,28.49892],[95.55438,28.50473],[95.56059,28.50515],[95.5776,28.49444],[95.58252,28.48841],[95.58914,28.48465],[95.587,28.47859],[95.58809,28.47026],[95.59001,28.46746],[95.57842,28.45599],[95.5767,28.4519],[95.58009,28.44388],[95.57865,28.44158],[95.58124,28.43897],[95.58134,28.43227],[95.57594,28.42991],[95.56989,28.41865],[95.56764,28.41015],[95.56369,28.40612],[95.56424,28.39967],[95.56854,28.40004],[95.57326,28.39041],[95.57649,28.38965],[95.58746,28.38174],[95.58846,28.37703],[95.58513,28.37449],[95.58896,28.37184],[95.59059,28.37122],[95.60215,28.37546],[95.60523,28.37825],[95.60707,28.37797],[95.60848,28.37476],[95.62653,28.37927],[95.63584,28.37404],[95.63889,28.36769],[95.66235,28.36693],[95.67902,28.37059],[95.68351,28.36389],[95.69216,28.3597],[95.69283,28.35515],[95.69072,28.35053],[95.69435,28.34301],[95.69966,28.34608],[95.70313,28.34485],[95.7066,28.34741],[95.72326,28.34486],[95.73561,28.34101],[95.73744,28.32823],[95.74262,28.32146],[95.7476,28.31912],[95.75605,28.32872],[95.7618,28.32894],[95.77461,28.326],[95.77615,28.32687],[95.77677,28.32983],[95.77237,28.34017],[95.7742,28.35285],[95.7716,28.36563],[95.7698,28.37034],[95.76521,28.37543],[95.76496,28.37893],[95.77565,28.38571],[95.77782,28.39251],[95.78232,28.39743],[95.79308,28.40531],[95.80162,28.40876],[95.80477,28.41561],[95.81675,28.42718],[95.82894,28.43156],[95.83538,28.43102],[95.84292,28.43299],[95.84659,28.43151],[95.85086,28.43403],[95.85984,28.43349],[95.8648,28.43048],[95.87055,28.43026],[95.87148,28.42544],[95.88446,28.42142],[95.88997,28.412],[95.89833,28.41014],[95.89882,28.40849],[95.89521,28.40337],[95.89614,28.40041],[95.90505,28.39624],[95.91378,28.39756],[95.91631,28.39361],[95.91984,28.39394],[95.92608,28.38756],[95.93017,28.38717],[95.93542,28.38352],[95.94756,28.38385],[95.95894,28.39149],[95.96865,28.3909],[95.96973,28.39448],[95.97576,28.39999],[95.97959,28.39995],[95.99232,28.40548],[95.99825,28.40279],[96.00249,28.40757],[96.00976,28.40909],[96.01163,28.4082],[96.0181,28.41303],[96.02117,28.42106],[96.03622,28.42426],[96.03819,28.42693],[96.03971,28.44155],[96.03869,28.44411],[96.041,28.45311],[96.05212,28.46516],[96.05778,28.48328],[96.064,28.48817],[96.0741,28.48987],[96.08443,28.48886],[96.09912,28.48469],[96.10549,28.48084],[96.10801,28.4814],[96.11585,28.48697],[96.11861,28.50442],[96.1223,28.50633],[96.12491,28.50553],[96.12746,28.51057],[96.14364,28.51283],[96.15221,28.51163],[96.15513,28.5137],[96.15877,28.51057],[96.16177,28.51054],[96.16799,28.51328],[96.16927,28.51857],[96.16345,28.5254],[96.16698,28.53175],[96.16672,28.53436],[96.17072,28.53426],[96.1779,28.52987],[96.18357,28.52955],[96.1868,28.52698],[96.19286,28.52911],[96.19945,28.52331],[96.21528,28.52037],[96.22346,28.51266],[96.22458,28.50941],[96.23406,28.5017],[96.23526,28.4962],[96.23999,28.49746],[96.24623,28.49366],[96.25638,28.4907],[96.26796,28.49246],[96.26946,28.49387],[96.27474,28.49327],[96.28095,28.49617],[96.28465,28.49574],[96.28938,28.49928],[96.29393,28.49796],[96.30331,28.49212],[96.30196,28.48054],[96.31028,28.47065],[96.31542,28.47543],[96.32445,28.48989],[96.32772,28.51854],[96.31858,28.52596]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"231","area_level":"District","area_name":"East Kameng","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.73261,27.97911],[92.68787,27.92669],[92.65771,27.9019],[92.65013,27.89989],[92.6267,27.89864],[92.61531,27.89454],[92.57106,27.83964],[92.55621,27.82436],[92.52771,27.84852],[92.51596,27.85254],[92.50336,27.85395],[92.49253,27.85055],[92.48376,27.84281],[92.46602,27.81778],[92.45627,27.81412],[92.45047,27.81437],[92.45647,27.80269],[92.47049,27.78444],[92.46788,27.77285],[92.46539,27.77136],[92.46864,27.76516],[92.46353,27.75955],[92.45667,27.75547],[92.46478,27.75047],[92.46193,27.74622],[92.46189,27.74226],[92.45609,27.73935],[92.46351,27.73806],[92.47398,27.73971],[92.47876,27.73606],[92.49675,27.73016],[92.5028,27.72402],[92.51212,27.72159],[92.50953,27.71783],[92.51009,27.71209],[92.51378,27.70551],[92.51203,27.69716],[92.51765,27.68926],[92.52627,27.68363],[92.52899,27.67623],[92.53277,27.6733],[92.53371,27.66743],[92.53639,27.66632],[92.53652,27.65495],[92.53364,27.65004],[92.53514,27.64695],[92.53084,27.63647],[92.54107,27.62965],[92.53893,27.62217],[92.53914,27.6102],[92.55103,27.60394],[92.56703,27.60966],[92.56736,27.61238],[92.56956,27.61353],[92.57592,27.61302],[92.58732,27.6173],[92.59018,27.60967],[92.58836,27.60556],[92.59271,27.60371],[92.59672,27.60481],[92.60132,27.6021],[92.60326,27.59886],[92.61278,27.59362],[92.61388,27.58928],[92.60986,27.58645],[92.61777,27.57559],[92.62114,27.57461],[92.62217,27.57174],[92.62224,27.56439],[92.61705,27.55314],[92.61912,27.54518],[92.6284,27.54301],[92.63423,27.54461],[92.63883,27.54374],[92.65022,27.53195],[92.65352,27.51995],[92.64832,27.5114],[92.65132,27.50055],[92.65463,27.49729],[92.65528,27.49435],[92.65377,27.49077],[92.66057,27.48212],[92.67039,27.47788],[92.67112,27.4755],[92.68046,27.47252],[92.68497,27.47298],[92.68417,27.46346],[92.69178,27.45854],[92.69242,27.45496],[92.70212,27.44961],[92.71432,27.45044],[92.73638,27.46658],[92.74245,27.46304],[92.75243,27.44632],[92.75439,27.44572],[92.76099,27.44395],[92.76489,27.44675],[92.76866,27.44342],[92.77397,27.44362],[92.77712,27.44589],[92.7773,27.44914],[92.78581,27.45297],[92.80181,27.44856],[92.80374,27.44642],[92.80586,27.44205],[92.8048,27.43676],[92.80824,27.43504],[92.80561,27.43372],[92.80654,27.43107],[92.80471,27.42916],[92.81078,27.42561],[92.80511,27.419],[92.81239,27.41644],[92.81481,27.41355],[92.81623,27.41683],[92.82049,27.41187],[92.82256,27.39917],[92.82037,27.38974],[92.82289,27.3794],[92.82025,27.37694],[92.81559,27.37986],[92.81189,27.37887],[92.81155,27.37538],[92.81404,27.37075],[92.81284,27.36912],[92.81521,27.35957],[92.81455,27.35464],[92.809,27.35848],[92.8056,27.35789],[92.80683,27.35566],[92.80553,27.35119],[92.80016,27.35023],[92.80142,27.34699],[92.80509,27.34606],[92.80492,27.3381],[92.80671,27.33712],[92.80677,27.33166],[92.80431,27.32966],[92.80953,27.32301],[92.81438,27.32076],[92.81672,27.31612],[92.81946,27.31561],[92.82041,27.31291],[92.83053,27.31012],[92.83155,27.30797],[92.83489,27.30767],[92.83998,27.30375],[92.84327,27.29818],[92.84425,27.29293],[92.84271,27.28924],[92.83203,27.2894],[92.82395,27.28688],[92.81687,27.2893],[92.81187,27.29636],[92.80574,27.29508],[92.80624,27.28774],[92.80261,27.27939],[92.80732,27.27288],[92.80327,27.2718],[92.80286,27.26903],[92.80022,27.26694],[92.7994,27.26015],[92.80106,27.25607],[92.81739,27.25348],[92.82531,27.23941],[92.83626,27.23277],[92.83021,27.22869],[92.82781,27.22466],[92.83415,27.21797],[92.83337,27.21445],[92.82306,27.21418],[92.81867,27.21054],[92.81559,27.20368],[92.80885,27.20177],[92.80843,27.19736],[92.81456,27.19269],[92.81429,27.17786],[92.80759,27.17905],[92.82859,27.16165],[92.83929,27.1319],[92.85714,27.14023],[92.87499,27.13428],[92.89521,27.13428],[92.95827,27.15808],[92.9892,27.15332],[93.0118,27.14261],[93.02965,27.15689],[93.06891,27.17116],[93.08081,27.18663],[93.07248,27.20329],[93.00942,27.20091],[92.98444,27.21994],[93.00229,27.24969],[93.16528,27.31155],[93.19502,27.37818],[93.28901,27.39364],[93.29972,27.39959],[93.32995,27.35471],[93.33942,27.35506],[93.34223,27.35771],[93.37194,27.37129],[93.36798,27.37944],[93.37276,27.38686],[93.3687,27.40167],[93.36974,27.41184],[93.36805,27.41643],[93.36166,27.42187],[93.35131,27.42512],[93.34293,27.43193],[93.33817,27.43301],[93.33015,27.44373],[93.32027,27.44141],[93.31506,27.44318],[93.32426,27.45159],[93.32677,27.46268],[93.32224,27.46818],[93.31962,27.47788],[93.31995,27.48931],[93.31595,27.49183],[93.31638,27.49442],[93.31235,27.50383],[93.31079,27.5056],[93.305,27.50581],[93.30024,27.51947],[93.29657,27.5205],[93.29462,27.52302],[93.31616,27.53377],[93.31887,27.54412],[93.32257,27.5478],[93.32906,27.54885],[93.33077,27.55196],[93.33013,27.55448],[93.32164,27.56549],[93.31161,27.56696],[93.29978,27.57836],[93.28139,27.57818],[93.28163,27.58198],[93.28493,27.58721],[93.26933,27.59532],[93.26636,27.59635],[93.25685,27.59516],[93.24506,27.59961],[93.24175,27.60448],[93.22998,27.60438],[93.23086,27.6076],[93.23445,27.60916],[93.23892,27.61481],[93.23444,27.62209],[93.23492,27.62812],[93.23252,27.62915],[93.22803,27.63798],[93.22828,27.64809],[93.21293,27.65648],[93.21251,27.65929],[93.20477,27.66426],[93.20112,27.67143],[93.19478,27.67605],[93.19901,27.67825],[93.2027,27.68389],[93.20681,27.68586],[93.20981,27.69064],[93.2074,27.6954],[93.21146,27.69519],[93.22363,27.71332],[93.22335,27.71608],[93.20377,27.72789],[93.20311,27.72979],[93.21405,27.75019],[93.22171,27.75934],[93.22071,27.76382],[93.23031,27.77491],[93.23694,27.79662],[93.23377,27.80817],[93.22726,27.81863],[93.22318,27.82196],[93.22108,27.82793],[93.22177,27.83074],[93.21803,27.83092],[93.20686,27.83603],[93.19687,27.84608],[93.18843,27.84459],[93.18601,27.83208],[93.17455,27.82118],[93.16803,27.82154],[93.15969,27.81839],[93.15354,27.82144],[93.13066,27.82306],[93.12496,27.81898],[93.10904,27.81934],[93.09551,27.81058],[93.07262,27.82884],[93.06186,27.82875],[93.03572,27.8232],[93.0236,27.82261],[93.01241,27.81888],[93.00905,27.81987],[93.00437,27.82518],[92.98286,27.82016],[92.97938,27.82302],[92.96689,27.82601],[92.96023,27.84244],[92.95372,27.8436],[92.94726,27.8414],[92.94495,27.84498],[92.94341,27.85701],[92.93843,27.85997],[92.93798,27.87058],[92.93159,27.87496],[92.93253,27.89199],[92.92943,27.90395],[92.93194,27.91264],[92.93072,27.91959],[92.87989,27.93816],[92.87025,27.94549],[92.8691,27.94397],[92.85929,27.94884],[92.85975,27.95626],[92.82918,27.95711],[92.82189,27.95885],[92.78797,27.95044],[92.77962,27.9533],[92.758,27.95696],[92.74719,27.96697],[92.73826,27.97231],[92.73261,27.97911]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"232","area_level":"District","area_name":"East Siang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.51534,27.87972],[95.51834,27.88625],[95.51468,27.91199],[95.50733,27.93113],[95.49874,27.94616],[95.5,27.95181],[95.50276,27.9577],[95.50345,27.96431],[95.5067,27.96859],[95.5334,27.99017],[95.54049,28.00536],[95.54415,28.01804],[95.54726,28.02367],[95.55823,28.03534],[95.56137,28.04471],[95.56748,28.07848],[95.56997,28.11219],[95.56919,28.13128],[95.56754,28.13889],[95.56313,28.14694],[95.5596,28.16798],[95.5605,28.20619],[95.56397,28.23535],[95.56366,28.25488],[95.56127,28.25849],[95.55199,28.26417],[95.5493,28.26824],[95.54982,28.27409],[95.54855,28.27537],[95.54166,28.27527],[95.54106,28.28017],[95.53542,28.28618],[95.53143,28.28253],[95.51162,28.27404],[95.49212,28.27061],[95.48578,28.27223],[95.46555,28.25921],[95.4612,28.26514],[95.46199,28.27425],[95.46041,28.27877],[95.44974,28.28969],[95.44965,28.29744],[95.44584,28.30451],[95.43503,28.31453],[95.41471,28.31294],[95.41056,28.31611],[95.39714,28.31479],[95.39507,28.31191],[95.38524,28.30805],[95.38159,28.31081],[95.37509,28.3196],[95.37439,28.32268],[95.36868,28.32015],[95.36339,28.30399],[95.35598,28.30099],[95.33825,28.30263],[95.33339,28.3018],[95.32845,28.29407],[95.32018,28.28834],[95.32018,28.28498],[95.32408,28.28224],[95.32398,28.27698],[95.32846,28.26599],[95.31289,28.25069],[95.31466,28.2386],[95.3094,28.23663],[95.29149,28.23922],[95.28614,28.23653],[95.28595,28.23418],[95.28266,28.2321],[95.29073,28.21658],[95.2913,28.20771],[95.28903,28.20301],[95.28396,28.20124],[95.27539,28.20212],[95.26112,28.19929],[95.25554,28.19399],[95.25503,28.1864],[95.25049,28.18459],[95.24637,28.17886],[95.23862,28.17772],[95.22904,28.17337],[95.21805,28.1737],[95.2125,28.17759],[95.20693,28.17816],[95.20117,28.17345],[95.2011,28.16316],[95.19296,28.1676],[95.18948,28.1729],[95.18505,28.1736],[95.19238,28.16456],[95.22391,28.15214],[95.23051,28.15489],[95.25079,28.15021],[95.29553,28.12113],[95.28807,28.10323],[95.28882,28.09056],[95.24035,28.04731],[95.22395,28.04806],[95.21724,28.05626],[95.17697,28.04806],[95.11509,28.02419],[95.06737,28.02345],[95.07385,27.99051],[95.08574,27.98099],[95.08907,27.96766],[95.08812,27.95196],[95.07527,27.94006],[95.07185,27.91597],[95.08577,27.9099],[95.12069,27.90349],[95.11522,27.85678],[95.12283,27.84821],[95.1364,27.81565],[95.30876,27.86801],[95.37958,27.83918],[95.51534,27.87972]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"233","area_level":"District","area_name":"Kurung Kumey","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.80603,28.20691],[92.78586,28.18651],[92.74608,28.1581],[92.70027,28.13577],[92.68795,28.1274],[92.67967,28.11919],[92.68037,28.11416],[92.67623,28.09846],[92.66534,28.06999],[92.66654,28.06375],[92.67024,28.06082],[92.68174,28.05726],[92.70039,28.04856],[92.72071,28.03051],[92.73534,28.01136],[92.74243,27.99259],[92.73261,27.97911],[92.73826,27.97231],[92.74719,27.96697],[92.758,27.95696],[92.77962,27.9533],[92.78797,27.95044],[92.82189,27.95885],[92.82918,27.95711],[92.85975,27.95626],[92.85929,27.94884],[92.8691,27.94397],[92.87025,27.94549],[92.87989,27.93816],[92.93072,27.91959],[92.93194,27.91264],[92.92943,27.90395],[92.93253,27.89199],[92.93159,27.87496],[92.93798,27.87058],[92.93843,27.85997],[92.94341,27.85701],[92.94495,27.84498],[92.94726,27.8414],[92.95372,27.8436],[92.96023,27.84244],[92.96689,27.82601],[92.97938,27.82302],[92.98286,27.82016],[93.00437,27.82518],[93.00905,27.81987],[93.01241,27.81888],[93.0236,27.82261],[93.03572,27.8232],[93.06186,27.82875],[93.07262,27.82884],[93.09551,27.81058],[93.10904,27.81934],[93.12496,27.81898],[93.13066,27.82306],[93.15354,27.82144],[93.15969,27.81839],[93.16803,27.82154],[93.17455,27.82118],[93.18601,27.83208],[93.18843,27.84459],[93.19687,27.84608],[93.20686,27.83603],[93.21803,27.83092],[93.22177,27.83074],[93.22108,27.82793],[93.22318,27.82196],[93.22726,27.81863],[93.23377,27.80817],[93.23694,27.79662],[93.23031,27.77491],[93.22071,27.76382],[93.22171,27.75934],[93.21405,27.75019],[93.20311,27.72979],[93.20377,27.72789],[93.22335,27.71608],[93.22363,27.71332],[93.21146,27.69519],[93.2074,27.6954],[93.20981,27.69064],[93.20681,27.68586],[93.2027,27.68389],[93.19901,27.67825],[93.19478,27.67605],[93.20112,27.67143],[93.20477,27.66426],[93.21251,27.65929],[93.21293,27.65648],[93.22828,27.64809],[93.22803,27.63798],[93.23252,27.62915],[93.23492,27.62812],[93.23444,27.62209],[93.23892,27.61481],[93.23445,27.60916],[93.23086,27.6076],[93.22998,27.60438],[93.24175,27.60448],[93.24506,27.59961],[93.25685,27.59516],[93.26636,27.59635],[93.27194,27.59467],[93.27833,27.5968],[93.27715,27.59791],[93.27883,27.60067],[93.28225,27.59934],[93.28968,27.60732],[93.29192,27.60762],[93.29406,27.61186],[93.29811,27.61322],[93.30356,27.61881],[93.31187,27.62088],[93.31721,27.626],[93.32956,27.62943],[93.33113,27.6316],[93.34076,27.63324],[93.35023,27.62967],[93.35888,27.63102],[93.36516,27.6262],[93.37362,27.62397],[93.37897,27.62077],[93.39656,27.62456],[93.4055,27.62761],[93.40661,27.62965],[93.41337,27.63079],[93.4213,27.6276],[93.42614,27.63055],[93.43039,27.63051],[93.43966,27.62328],[93.44664,27.62394],[93.45241,27.61667],[93.46186,27.6139],[93.4681,27.60434],[93.47419,27.60411],[93.47954,27.60821],[93.4966,27.61037],[93.50574,27.61536],[93.52559,27.61001],[93.5284,27.60348],[93.53283,27.59812],[93.54688,27.59766],[93.55458,27.60306],[93.55841,27.60343],[93.54314,27.62175],[93.51469,27.65021],[93.53756,27.6739],[93.53232,27.72197],[93.50948,27.7429],[93.5485,27.78573],[93.56373,27.79525],[93.57991,27.81238],[93.59228,27.83332],[93.6018,27.88091],[93.6018,27.90756],[93.58467,27.90566],[93.61851,27.95359],[93.588,27.97752],[93.57015,28.05723],[93.54755,28.06556],[93.50591,28.06921],[93.50591,28.07674],[93.48592,28.10339],[93.46022,28.11291],[93.4469,28.20047],[93.44779,28.28203],[93.43686,28.28275],[93.43175,28.27992],[93.41431,28.28836],[93.40856,28.30674],[93.40015,28.30909],[93.38627,28.30625],[93.38397,28.31274],[93.3789,28.31146],[93.37848,28.31657],[93.38013,28.32157],[93.37857,28.32342],[93.36446,28.32965],[93.36089,28.32976],[93.35895,28.33677],[93.36046,28.34361],[93.34429,28.3454],[93.33692,28.35331],[93.31997,28.34945],[93.303,28.34166],[93.29425,28.34032],[93.28488,28.35506],[93.28288,28.36476],[93.27767,28.36648],[93.2598,28.36699],[93.24574,28.36081],[93.23947,28.35075],[93.22938,28.34436],[93.22663,28.34035],[93.22653,28.33558],[93.22221,28.33417],[93.21796,28.32608],[93.20649,28.32155],[93.18939,28.31834],[93.1608,28.31919],[93.12918,28.32799],[93.12217,28.32838],[93.11929,28.32175],[93.11039,28.31214],[93.10083,28.3078],[93.09052,28.30587],[93.07194,28.30769],[93.04967,28.30266],[93.02234,28.31039],[93.02289,28.29007],[93.02827,28.26869],[93.0197,28.26099],[92.9973,28.22943],[92.98413,28.25239],[92.97593,28.25877],[92.96271,28.25856],[92.94354,28.24747],[92.92284,28.24],[92.91346,28.23182],[92.90568,28.21191],[92.89688,28.20515],[92.85263,28.1826],[92.8361,28.1791],[92.82558,28.17906],[92.81806,28.19115],[92.81852,28.21025],[92.81477,28.21104],[92.80603,28.20691]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"234","area_level":"District","area_name":"Lohit","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[96.37191,28.36165],[96.36996,28.36332],[96.36825,28.37153],[96.36893,28.37891],[96.36258,28.38636],[96.31668,28.37757],[96.30721,28.38252],[96.29653,28.36665],[96.29046,28.34456],[96.2852,28.34007],[96.27188,28.33421],[96.2668,28.3303],[96.25757,28.31684],[96.25527,28.30912],[96.24062,28.30237],[96.23825,28.29952],[96.24353,28.28505],[96.26175,28.2553],[96.26788,28.23893],[96.25518,28.23745],[96.23787,28.23964],[96.23022,28.23868],[96.21552,28.2309],[96.20338,28.222],[96.19049,28.2066],[96.18377,28.20392],[96.17466,28.19662],[96.16845,28.18705],[96.16491,28.18413],[96.15393,28.18059],[96.14389,28.17522],[96.14201,28.16991],[96.11768,28.17786],[96.11444,28.18246],[96.10459,28.18963],[96.09741,28.19172],[96.08626,28.19098],[96.08277,28.18932],[96.06025,28.19688],[96.05174,28.19722],[96.04914,28.19368],[96.04956,28.18],[96.04671,28.17152],[96.03835,28.16254],[96.03027,28.16013],[96.03282,28.147],[96.02666,28.13881],[96.02543,28.12994],[96.00994,28.11765],[96.00505,28.11103],[96.00151,28.10161],[96.00171,28.0955],[95.97995,28.07209],[95.98911,28.06164],[95.9934,28.05234],[95.99322,28.03417],[95.98864,28.02212],[95.98751,28.0004],[95.99127,27.97466],[95.98306,27.96672],[95.97182,27.96218],[95.9652,27.95167],[95.95456,27.94114],[95.9483,27.93712],[95.94924,27.9312],[95.95476,27.9312],[95.94855,27.92439],[95.95292,27.92044],[95.94595,27.91635],[95.94266,27.91069],[95.93815,27.91253],[95.93553,27.90749],[95.94105,27.90561],[95.92983,27.90274],[95.93178,27.90014],[95.93775,27.8982],[95.92849,27.89513],[95.92785,27.8987],[95.92633,27.89888],[95.92597,27.89534],[95.91923,27.89504],[95.9237,27.8881],[95.91768,27.89007],[95.9155,27.88939],[95.9168,27.885],[95.92076,27.88464],[95.92509,27.88168],[95.91944,27.8806],[95.91555,27.88376],[95.91702,27.88046],[95.91454,27.87576],[95.91012,27.87241],[95.9107,27.87019],[95.90729,27.87044],[95.90859,27.86871],[95.90658,27.866],[95.90335,27.86891],[95.90169,27.86847],[95.90146,27.86648],[95.90492,27.86212],[95.89475,27.862],[95.89534,27.85737],[95.89025,27.85999],[95.89114,27.85685],[95.88845,27.85657],[95.88366,27.84611],[95.87137,27.83346],[95.85439,27.83002],[95.83776,27.82412],[95.83769,27.80983],[95.82491,27.80795],[95.81167,27.79762],[95.81041,27.79071],[95.80392,27.7846],[95.80035,27.77369],[95.7944,27.76908],[95.78689,27.75967],[95.776,27.75362],[95.78055,27.7363],[95.77877,27.73318],[95.7743,27.73094],[95.80478,27.73603],[95.82905,27.75316],[95.89758,27.79028],[96.02322,27.85024],[96.04891,27.85024],[96.20792,27.87747],[96.27336,27.78784],[96.27514,27.77951],[96.26086,27.71943],[96.27003,27.68672],[96.27003,27.65162],[96.29204,27.62782],[96.28549,27.59511],[96.31168,27.5698],[96.32773,27.57923],[96.33116,27.58423],[96.33632,27.59835],[96.34837,27.6061],[96.35186,27.62454],[96.36842,27.6424],[96.37277,27.64496],[96.37818,27.64059],[96.38377,27.63882],[96.39382,27.64544],[96.39415,27.64869],[96.41119,27.64944],[96.41295,27.65124],[96.41954,27.65096],[96.42272,27.64839],[96.43072,27.64932],[96.43276,27.65201],[96.43585,27.65099],[96.43976,27.65244],[96.4441,27.6521],[96.44702,27.64498],[96.45123,27.64366],[96.45247,27.64113],[96.46901,27.64237],[96.47353,27.64574],[96.48028,27.64603],[96.50289,27.64177],[96.50862,27.64313],[96.51916,27.63661],[96.5307,27.64669],[96.54963,27.64676],[96.55837,27.65059],[96.56646,27.65682],[96.58209,27.65606],[96.58832,27.65315],[96.59632,27.65401],[96.60357,27.64673],[96.60886,27.64661],[96.60822,27.64312],[96.61386,27.63806],[96.6253,27.63159],[96.63364,27.63097],[96.64084,27.62788],[96.65816,27.63374],[96.66632,27.64215],[96.66924,27.64735],[96.67652,27.64973],[96.68229,27.65469],[96.68794,27.65511],[96.70152,27.66096],[96.69916,27.66392],[96.70559,27.6701],[96.70827,27.67492],[96.70689,27.68237],[96.71135,27.68877],[96.71054,27.69383],[96.7118,27.69862],[96.71647,27.70341],[96.71122,27.71247],[96.7125,27.71592],[96.71138,27.72263],[96.70068,27.73443],[96.70023,27.74069],[96.69632,27.74486],[96.70192,27.75073],[96.70443,27.75743],[96.70935,27.76226],[96.71051,27.7657],[96.70859,27.77121],[96.70145,27.77681],[96.7191,27.78423],[96.71463,27.78897],[96.71661,27.79313],[96.71218,27.79996],[96.71303,27.80187],[96.71011,27.81204],[96.71341,27.81529],[96.71054,27.8244],[96.7053,27.82724],[96.69412,27.82709],[96.6811,27.82984],[96.67913,27.84757],[96.6727,27.85027],[96.66242,27.86653],[96.65223,27.86998],[96.63508,27.88004],[96.61814,27.88214],[96.61651,27.89335],[96.61052,27.89618],[96.60846,27.90086],[96.60312,27.90362],[96.59863,27.90916],[96.58826,27.91191],[96.58838,27.91542],[96.58213,27.9207],[96.55954,27.91219],[96.55232,27.91385],[96.54683,27.9014],[96.53555,27.89897],[96.52797,27.90009],[96.5179,27.8954],[96.51533,27.89898],[96.5036,27.9043],[96.49626,27.90535],[96.49337,27.90353],[96.48633,27.90294],[96.47964,27.90459],[96.47515,27.90296],[96.4735,27.90525],[96.47098,27.90555],[96.46551,27.90312],[96.45394,27.90969],[96.44902,27.90959],[96.44561,27.9149],[96.44244,27.91542],[96.43945,27.91837],[96.42769,27.91656],[96.42072,27.92701],[96.42092,27.93063],[96.41446,27.93576],[96.41717,27.94288],[96.40953,27.95514],[96.40796,27.96731],[96.39923,27.97177],[96.39717,27.97622],[96.39158,27.97879],[96.39098,27.98079],[96.39344,27.98461],[96.39274,27.98779],[96.389,27.99032],[96.37959,27.99057],[96.37627,27.99201],[96.37143,27.99746],[96.36277,28.00065],[96.37604,28.00591],[96.37685,28.00749],[96.37717,28.02552],[96.38485,28.03445],[96.38373,28.03873],[96.38625,28.04754],[96.38608,28.05158],[96.38218,28.06065],[96.37823,28.06537],[96.37846,28.06819],[96.37365,28.07937],[96.3667,28.08967],[96.36249,28.09326],[96.36717,28.09882],[96.36679,28.10789],[96.36961,28.11366],[96.36769,28.11937],[96.3888,28.1267],[96.38758,28.13302],[96.39175,28.13956],[96.38902,28.14888],[96.38947,28.15263],[96.40126,28.16063],[96.4155,28.1655],[96.41801,28.16883],[96.41616,28.17956],[96.41246,28.18131],[96.40067,28.19339],[96.39435,28.2035],[96.39532,28.21579],[96.39214,28.22003],[96.39215,28.22545],[96.38838,28.23548],[96.37995,28.23911],[96.37671,28.24575],[96.36845,28.25443],[96.3727,28.26986],[96.38061,28.27499],[96.38015,28.28367],[96.38184,28.28767],[96.37997,28.29119],[96.38465,28.29888],[96.38121,28.30239],[96.37942,28.3116],[96.37464,28.3208],[96.37499,28.32668],[96.37018,28.33576],[96.36793,28.34533],[96.37191,28.36165]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"235","area_level":"District","area_name":"Lower Dibang Valley","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[96.29653,28.36665],[96.30721,28.38252],[96.30102,28.39282],[96.29058,28.39972],[96.27727,28.40364],[96.2608,28.4041],[96.25339,28.40704],[96.27756,28.42395],[96.31572,28.44408],[96.3255,28.45466],[96.34945,28.46726],[96.36208,28.48034],[96.36356,28.48745],[96.36012,28.49382],[96.35146,28.50375],[96.32772,28.51854],[96.32445,28.48989],[96.31542,28.47543],[96.31028,28.47065],[96.30196,28.48054],[96.30331,28.49212],[96.29393,28.49796],[96.28938,28.49928],[96.28465,28.49574],[96.28095,28.49617],[96.27474,28.49327],[96.26946,28.49387],[96.26796,28.49246],[96.25638,28.4907],[96.24623,28.49366],[96.23999,28.49746],[96.23526,28.4962],[96.23406,28.5017],[96.22458,28.50941],[96.22346,28.51266],[96.21528,28.52037],[96.19945,28.52331],[96.19286,28.52911],[96.1868,28.52698],[96.18357,28.52955],[96.1779,28.52987],[96.17072,28.53426],[96.16672,28.53436],[96.16698,28.53175],[96.16345,28.5254],[96.16927,28.51857],[96.16799,28.51328],[96.16177,28.51054],[96.15877,28.51057],[96.15513,28.5137],[96.15221,28.51163],[96.14364,28.51283],[96.12746,28.51057],[96.12491,28.50553],[96.1223,28.50633],[96.11861,28.50442],[96.11585,28.48697],[96.10801,28.4814],[96.10549,28.48084],[96.09912,28.48469],[96.08443,28.48886],[96.0741,28.48987],[96.064,28.48817],[96.05778,28.48328],[96.05212,28.46516],[96.041,28.45311],[96.03869,28.44411],[96.03971,28.44155],[96.03819,28.42693],[96.03622,28.42426],[96.02117,28.42106],[96.0181,28.41303],[96.01163,28.4082],[96.00976,28.40909],[96.00249,28.40757],[95.99825,28.40279],[95.99232,28.40548],[95.97959,28.39995],[95.97576,28.39999],[95.96973,28.39448],[95.96865,28.3909],[95.95894,28.39149],[95.94756,28.38385],[95.93542,28.38352],[95.93017,28.38717],[95.92608,28.38756],[95.91984,28.39394],[95.91631,28.39361],[95.91378,28.39756],[95.90505,28.39624],[95.89614,28.40041],[95.89521,28.40337],[95.89882,28.40849],[95.89833,28.41014],[95.88997,28.412],[95.88446,28.42142],[95.87148,28.42544],[95.87055,28.43026],[95.8648,28.43048],[95.85984,28.43349],[95.85086,28.43403],[95.84659,28.43151],[95.84292,28.43299],[95.83538,28.43102],[95.82894,28.43156],[95.81675,28.42718],[95.80477,28.41561],[95.80162,28.40876],[95.79308,28.40531],[95.78232,28.39743],[95.77782,28.39251],[95.77565,28.38571],[95.76496,28.37893],[95.76521,28.37543],[95.7698,28.37034],[95.7716,28.36563],[95.7742,28.35285],[95.77237,28.34017],[95.77677,28.32983],[95.77615,28.32687],[95.77461,28.326],[95.7618,28.32894],[95.75605,28.32872],[95.7476,28.31912],[95.74262,28.32146],[95.73744,28.32823],[95.73561,28.34101],[95.72326,28.34486],[95.7066,28.34741],[95.70313,28.34485],[95.69966,28.34608],[95.69435,28.34301],[95.69072,28.35053],[95.69283,28.35515],[95.69216,28.3597],[95.68351,28.36389],[95.67902,28.37059],[95.66235,28.36693],[95.63889,28.36769],[95.63584,28.37404],[95.62653,28.37927],[95.60848,28.37476],[95.60707,28.37797],[95.60523,28.37825],[95.60215,28.37546],[95.59059,28.37122],[95.58539,28.37377],[95.58846,28.37703],[95.58746,28.38174],[95.57649,28.38965],[95.57326,28.39041],[95.56854,28.40004],[95.56424,28.39967],[95.56369,28.40612],[95.56764,28.41015],[95.56989,28.41865],[95.57594,28.42991],[95.58134,28.43227],[95.58124,28.43897],[95.57865,28.44158],[95.58009,28.44388],[95.5767,28.4519],[95.57842,28.45599],[95.59001,28.46746],[95.58809,28.47026],[95.587,28.47859],[95.58914,28.48465],[95.58252,28.48841],[95.5776,28.49444],[95.56059,28.50515],[95.55438,28.50473],[95.5478,28.49892],[95.53934,28.49603],[95.53287,28.5012],[95.52329,28.50364],[95.52593,28.51277],[95.52156,28.5181],[95.51567,28.52158],[95.49988,28.51855],[95.49955,28.52176],[95.49368,28.53098],[95.47647,28.53728],[95.46745,28.53673],[95.46465,28.53981],[95.45947,28.54161],[95.45864,28.54873],[95.44784,28.55563],[95.44498,28.55546],[95.42683,28.5452],[95.42416,28.54498],[95.41135,28.55079],[95.40192,28.54158],[95.39259,28.52905],[95.39444,28.52449],[95.39276,28.51929],[95.39423,28.51519],[95.3926,28.51223],[95.37682,28.5082],[95.37311,28.505],[95.36599,28.49198],[95.35306,28.49007],[95.33658,28.47693],[95.3346,28.45216],[95.33753,28.44883],[95.33874,28.43894],[95.33513,28.43419],[95.32004,28.42583],[95.32329,28.41912],[95.32776,28.41829],[95.3379,28.40595],[95.33709,28.39862],[95.33939,28.38462],[95.33686,28.37583],[95.33793,28.36576],[95.35753,28.35773],[95.3685,28.35663],[95.36921,28.35345],[95.36741,28.34855],[95.36954,28.33905],[95.37218,28.33521],[95.37657,28.33381],[95.37403,28.32427],[95.37509,28.3196],[95.38524,28.30805],[95.39507,28.31191],[95.39714,28.31479],[95.41056,28.31611],[95.41471,28.31294],[95.43503,28.31453],[95.44584,28.30451],[95.44965,28.29744],[95.44974,28.28969],[95.46041,28.27877],[95.46199,28.27425],[95.4612,28.26514],[95.46555,28.25921],[95.48578,28.27223],[95.49212,28.27061],[95.51162,28.27404],[95.53143,28.28253],[95.53542,28.28618],[95.54106,28.28017],[95.54166,28.27527],[95.54855,28.27537],[95.54982,28.27409],[95.5493,28.26824],[95.55199,28.26417],[95.56127,28.25849],[95.56366,28.25488],[95.56397,28.23535],[95.5605,28.20619],[95.5596,28.16798],[95.56313,28.14694],[95.56754,28.13889],[95.56919,28.13128],[95.56997,28.11219],[95.56748,28.07848],[95.56137,28.04471],[95.55823,28.03534],[95.54726,28.02367],[95.54415,28.01804],[95.54049,28.00536],[95.5334,27.99017],[95.5067,27.96859],[95.50345,27.96431],[95.50276,27.9577],[95.5,27.95181],[95.49874,27.94616],[95.50733,27.93113],[95.51468,27.91199],[95.51834,27.88625],[95.51535,27.87971],[95.52227,27.88296],[95.52616,27.89062],[95.53404,27.89814],[95.53994,27.89646],[95.54427,27.89978],[95.54219,27.90627],[95.54467,27.91084],[95.55383,27.91373],[95.56354,27.91926],[95.56481,27.92927],[95.56859,27.9359],[95.576,27.9397],[95.58611,27.93672],[95.59371,27.94677],[95.60528,27.95462],[95.82388,27.97148],[95.97182,27.96218],[95.98306,27.96672],[95.99127,27.97466],[95.98751,28.0004],[95.98864,28.02212],[95.99322,28.03417],[95.99371,28.04205],[95.9934,28.05234],[95.98911,28.06164],[95.97995,28.07209],[96.00171,28.0955],[96.00151,28.10161],[96.00505,28.11103],[96.00994,28.11765],[96.02543,28.12994],[96.02666,28.13881],[96.03282,28.147],[96.03027,28.16013],[96.03835,28.16254],[96.04671,28.17152],[96.04956,28.18],[96.04914,28.19368],[96.05174,28.19722],[96.06025,28.19688],[96.08277,28.18932],[96.08626,28.19098],[96.09741,28.19172],[96.10459,28.18963],[96.11444,28.18246],[96.11768,28.17786],[96.14201,28.16991],[96.14389,28.17522],[96.15393,28.18059],[96.16491,28.18413],[96.16845,28.18705],[96.17466,28.19662],[96.18377,28.20392],[96.19049,28.2066],[96.20338,28.222],[96.21552,28.2309],[96.23022,28.23868],[96.23787,28.23964],[96.25518,28.23745],[96.26788,28.23893],[96.26175,28.2553],[96.24353,28.28505],[96.23825,28.29952],[96.24062,28.30237],[96.25527,28.30912],[96.25757,28.31684],[96.2668,28.3303],[96.27188,28.33421],[96.2852,28.34007],[96.29046,28.34456],[96.29653,28.36665]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"236","area_level":"District","area_name":"Lower Subansiri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.84262,27.93287],[93.83979,27.93487],[93.83429,27.93433],[93.82426,27.92916],[93.8124,27.92799],[93.80834,27.93065],[93.80412,27.93095],[93.78493,27.91129],[93.78156,27.91055],[93.77682,27.9127],[93.77186,27.90859],[93.77143,27.90592],[93.76456,27.9012],[93.74113,27.89713],[93.72994,27.90043],[93.72659,27.921],[93.72217,27.93071],[93.71596,27.93472],[93.70131,27.93513],[93.69665,27.93833],[93.69503,27.93226],[93.68897,27.92919],[93.68848,27.9236],[93.68444,27.91643],[93.68764,27.91044],[93.69046,27.8976],[93.67965,27.86269],[93.6837,27.85211],[93.68371,27.84154],[93.68554,27.83524],[93.68135,27.8316],[93.68045,27.82816],[93.67482,27.82671],[93.67481,27.82095],[93.65984,27.81092],[93.65977,27.80756],[93.65749,27.80512],[93.6577,27.79753],[93.65421,27.79527],[93.66498,27.77982],[93.66978,27.7801],[93.67347,27.77822],[93.68569,27.76733],[93.68933,27.76001],[93.68608,27.75514],[93.69933,27.7583],[93.71958,27.75451],[93.71783,27.74067],[93.70429,27.72788],[93.7049,27.72086],[93.70172,27.71208],[93.70059,27.70324],[93.70074,27.69797],[93.70702,27.69393],[93.70849,27.68946],[93.71457,27.68134],[93.71378,27.67898],[93.70605,27.66916],[93.68089,27.66864],[93.67696,27.66604],[93.6766,27.66286],[93.67183,27.66019],[93.6616,27.64639],[93.65779,27.64738],[93.64496,27.64622],[93.62295,27.63228],[93.6204,27.6282],[93.6125,27.62822],[93.6065,27.61782],[93.60097,27.61562],[93.59865,27.61148],[93.58652,27.60856],[93.58396,27.60603],[93.56813,27.59936],[93.56385,27.60258],[93.5564,27.60348],[93.54688,27.59766],[93.53283,27.59812],[93.53407,27.59324],[93.53096,27.5851],[93.53359,27.5795],[93.53348,27.57422],[93.53809,27.56809],[93.5422,27.56778],[93.54489,27.56367],[93.5528,27.56217],[93.5526,27.55886],[93.55497,27.55792],[93.55455,27.55318],[93.56013,27.54923],[93.56116,27.54279],[93.56714,27.5369],[93.56727,27.52899],[93.57792,27.52308],[93.5854,27.51383],[93.58211,27.50273],[93.58536,27.49654],[93.57365,27.48444],[93.57304,27.47935],[93.56946,27.47617],[93.5705,27.47365],[93.5881,27.46369],[93.59525,27.46578],[93.59939,27.46357],[93.60182,27.46632],[93.61027,27.46692],[93.62028,27.46652],[93.62343,27.46474],[93.62153,27.4605],[93.61769,27.45914],[93.61759,27.45649],[93.6144,27.45562],[93.61185,27.45075],[93.60756,27.45012],[93.60597,27.44839],[93.60176,27.45099],[93.59778,27.44946],[93.5963,27.45033],[93.59091,27.44816],[93.58999,27.44639],[93.58551,27.44569],[93.58693,27.44218],[93.58324,27.43914],[93.57676,27.43977],[93.57295,27.43742],[93.57501,27.43604],[93.57233,27.43499],[93.57142,27.43143],[93.56579,27.42574],[93.56585,27.42339],[93.56017,27.42025],[93.5605,27.41555],[93.55111,27.40201],[93.55526,27.39552],[93.55934,27.39373],[93.56103,27.38919],[93.56311,27.38792],[93.57515,27.39355],[93.57579,27.38342],[93.58104,27.37846],[93.58097,27.37344],[93.58762,27.36411],[93.58834,27.35495],[93.59665,27.34925],[93.59436,27.34417],[93.59084,27.3447],[93.58382,27.33672],[93.58646,27.33494],[93.5853,27.33242],[93.58861,27.32779],[93.59538,27.32549],[93.60187,27.32643],[93.60703,27.32217],[93.60943,27.32265],[93.61317,27.31982],[93.61462,27.31641],[93.6179,27.31601],[93.62113,27.31202],[93.62028,27.3061],[93.62241,27.30148],[93.6291,27.29997],[93.63595,27.29605],[93.63787,27.29306],[93.64766,27.29147],[93.65286,27.29525],[93.67913,27.30194],[93.68608,27.30616],[93.69261,27.30321],[93.69671,27.3054],[93.69685,27.30685],[93.70338,27.30116],[93.70285,27.2984],[93.70636,27.29963],[93.71773,27.2972],[93.72815,27.30471],[93.74241,27.31041],[93.74669,27.30989],[93.7597,27.30286],[93.76665,27.29588],[93.77555,27.29625],[93.77781,27.30038],[93.78351,27.30256],[93.78398,27.30561],[93.7878,27.30613],[93.79132,27.31152],[93.79805,27.31469],[93.7992,27.31785],[93.80302,27.31874],[93.8054,27.32219],[93.81201,27.32441],[93.81838,27.32897],[93.82843,27.32274],[93.8334,27.32414],[93.8483,27.33344],[93.84621,27.33811],[93.84906,27.34864],[93.8465,27.35107],[93.83908,27.35372],[93.83828,27.35575],[93.83196,27.35657],[93.83005,27.35823],[93.82628,27.36564],[93.82498,27.3775],[93.81893,27.38142],[93.81407,27.38254],[93.81504,27.39155],[93.82095,27.40044],[93.82472,27.40118],[93.82863,27.40783],[93.83436,27.41352],[93.8356,27.42008],[93.84033,27.42555],[93.85286,27.43384],[93.85645,27.43345],[93.86303,27.4369],[93.87265,27.44497],[93.87404,27.45085],[93.87212,27.45396],[93.87474,27.45828],[93.88222,27.45746],[93.88664,27.46049],[93.89288,27.46078],[93.90356,27.465],[93.91492,27.47857],[93.9183,27.48736],[93.92287,27.49123],[93.93151,27.49093],[93.93656,27.48787],[93.94054,27.49268],[93.9477,27.49555],[93.94181,27.51131],[94.07198,27.51555],[94.10625,27.5441],[94.10625,27.55409],[94.04914,27.58265],[94.05323,27.60799],[94.01606,27.61156],[93.94706,27.6294],[93.93992,27.63773],[93.92565,27.65915],[93.9197,27.72339],[93.89049,27.74313],[93.9078,27.79716],[93.89024,27.82007],[93.84262,27.93287]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"237","area_level":"District","area_name":"Papum Pare","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.53283,27.59812],[93.5284,27.60348],[93.52619,27.6096],[93.50921,27.61525],[93.50546,27.61535],[93.4966,27.61037],[93.47954,27.60821],[93.47509,27.60432],[93.46696,27.60467],[93.46186,27.6139],[93.45241,27.61667],[93.44664,27.62394],[93.43966,27.62328],[93.43039,27.63051],[93.42614,27.63055],[93.4213,27.6276],[93.41337,27.63079],[93.40661,27.62965],[93.4055,27.62761],[93.39656,27.62456],[93.37897,27.62077],[93.37362,27.62397],[93.36516,27.6262],[93.35888,27.63102],[93.35023,27.62967],[93.34076,27.63324],[93.33113,27.6316],[93.32956,27.62943],[93.31721,27.626],[93.31187,27.62088],[93.30356,27.61881],[93.29811,27.61322],[93.29406,27.61186],[93.29192,27.60762],[93.28968,27.60732],[93.28225,27.59934],[93.27883,27.60067],[93.27715,27.59791],[93.27833,27.5968],[93.26953,27.59517],[93.28493,27.58721],[93.28163,27.58198],[93.28139,27.57818],[93.29978,27.57836],[93.31161,27.56696],[93.32164,27.56549],[93.33013,27.55448],[93.33077,27.55196],[93.32906,27.54885],[93.32257,27.5478],[93.31887,27.54412],[93.31616,27.53377],[93.29462,27.52302],[93.29657,27.5205],[93.30024,27.51947],[93.305,27.50581],[93.31079,27.5056],[93.31235,27.50383],[93.31638,27.49442],[93.31595,27.49183],[93.31995,27.48931],[93.31962,27.47788],[93.32224,27.46818],[93.32677,27.46268],[93.32426,27.45159],[93.31506,27.44318],[93.32027,27.44141],[93.33015,27.44373],[93.33817,27.43301],[93.34293,27.43193],[93.35131,27.42512],[93.36166,27.42187],[93.36805,27.41643],[93.36974,27.41184],[93.3687,27.40167],[93.37276,27.38686],[93.36798,27.37944],[93.37194,27.37129],[93.34223,27.35771],[93.33942,27.35506],[93.33762,27.35597],[93.32205,27.35243],[93.31553,27.34758],[93.30682,27.34434],[93.30014,27.33432],[93.28952,27.32929],[93.29166,27.31379],[93.29474,27.31208],[93.29485,27.30645],[93.29276,27.30563],[93.29454,27.30276],[93.29328,27.30007],[93.29442,27.29048],[93.28779,27.28534],[93.28087,27.28349],[93.26936,27.27684],[93.2579,27.27457],[93.25349,27.27151],[93.25127,27.26621],[93.24509,27.26456],[93.23704,27.25743],[93.22509,27.25061],[93.23167,27.24396],[93.23337,27.23892],[93.23004,27.23943],[93.22852,27.23632],[93.22454,27.23694],[93.22241,27.22831],[93.22584,27.22287],[93.21993,27.21555],[93.22122,27.20354],[93.22869,27.19857],[93.24879,27.2026],[93.26444,27.21076],[93.27295,27.21113],[93.27907,27.20758],[93.28264,27.19978],[93.29989,27.18691],[93.29967,27.17967],[93.30945,27.17228],[93.29432,27.16327],[93.28318,27.16302],[93.28203,27.16106],[93.2734,27.15769],[93.2724,27.15494],[93.2701,27.15378],[93.24485,27.1541],[93.22893,27.1406],[93.21606,27.13877],[93.21066,27.13095],[93.21294,27.11659],[93.21551,27.11424],[93.22038,27.11397],[93.22943,27.10958],[93.24237,27.1114],[93.25929,27.10813],[93.27199,27.10345],[93.2843,27.09194],[93.28561,27.0854],[93.29308,27.07784],[93.29942,27.07607],[93.30422,27.07919],[93.30685,27.07783],[93.31254,27.07927],[93.32294,27.0619],[93.32923,27.05818],[93.33867,27.04005],[93.34206,27.03971],[93.34284,27.03816],[93.34006,27.03224],[93.34279,27.02392],[93.34085,27.01655],[93.34413,27.01076],[93.33942,27.00681],[93.33974,27.00107],[93.34625,26.99243],[93.36061,26.98177],[93.3689,26.98097],[93.38518,26.98349],[93.38597,26.98063],[93.37981,26.97836],[93.38033,26.97458],[93.38664,26.97225],[93.38958,26.9582],[93.44877,26.95078],[93.46249,26.93788],[93.47065,26.9366],[93.47473,26.93932],[93.48626,26.94228],[93.4891,26.93618],[93.50575,26.94339],[93.52112,26.9477],[93.54101,26.94897],[93.54494,26.95123],[93.54915,26.95001],[93.56036,26.95273],[93.58667,26.95047],[93.61473,26.9603],[93.66506,26.96851],[93.67567,26.97459],[93.69367,26.989],[93.70891,27.00811],[93.72338,27.02081],[93.73298,27.02594],[93.74353,27.02769],[93.76742,27.03944],[93.76673,27.05291],[93.76799,27.05445],[93.76786,27.05128],[93.77185,27.05408],[93.77087,27.06204],[93.77828,27.04894],[93.77957,27.05806],[93.78109,27.05882],[93.78119,27.06552],[93.78304,27.06435],[93.78379,27.05145],[93.78942,27.0506],[93.79383,27.05452],[93.79441,27.06192],[93.79522,27.05701],[93.80022,27.05785],[93.79879,27.06239],[93.79304,27.06828],[93.79378,27.07234],[93.79527,27.07246],[93.79684,27.06527],[93.80336,27.05806],[93.80768,27.05981],[93.81139,27.05894],[93.80841,27.06593],[93.81074,27.06747],[93.81499,27.06146],[93.82121,27.0644],[93.82199,27.06777],[93.82741,27.06594],[93.82923,27.06681],[93.82861,27.06885],[93.8298,27.06797],[93.83567,27.0743],[93.8356,27.0782],[93.8332,27.08156],[93.83777,27.08537],[93.8315,27.08678],[93.8314,27.09091],[93.82667,27.09697],[93.82556,27.10359],[93.8266,27.11206],[93.82507,27.11642],[93.81994,27.12275],[93.81405,27.12128],[93.80943,27.12334],[93.81294,27.1293],[93.81212,27.13113],[93.80702,27.13066],[93.80319,27.13278],[93.79899,27.12908],[93.79659,27.12914],[93.79438,27.13529],[93.79597,27.13765],[93.80539,27.13713],[93.80599,27.14876],[93.82535,27.16848],[93.83871,27.17234],[93.85987,27.19348],[93.86423,27.19615],[93.8994,27.23909],[93.92824,27.26422],[93.95527,27.29326],[93.99125,27.32835],[94.01157,27.3385],[94.02211,27.3462],[94.0258,27.34484],[94.02784,27.34684],[94.03026,27.34566],[94.03092,27.34839],[94.04055,27.3515],[94.05404,27.36034],[94.05981,27.36154],[94.06146,27.36373],[94.06085,27.3653],[94.06921,27.37346],[94.07575,27.38968],[94.0896,27.40705],[94.10494,27.41397],[94.11786,27.42969],[94.12769,27.43459],[94.13146,27.44092],[94.15538,27.45697],[94.15508,27.4591],[94.15942,27.46162],[94.15667,27.47486],[94.16454,27.47678],[94.16913,27.48123],[94.17623,27.48215],[94.1842,27.48665],[94.18928,27.4924],[94.20246,27.49447],[94.20703,27.53532],[94.19187,27.54403],[94.16973,27.54291],[94.08787,27.49516],[94.04916,27.49531],[94.01047,27.50163],[93.98006,27.50297],[93.97338,27.50275],[93.95903,27.49711],[93.94478,27.49523],[93.93656,27.48787],[93.93151,27.49093],[93.92287,27.49123],[93.9183,27.48736],[93.91492,27.47857],[93.90356,27.465],[93.89288,27.46078],[93.88664,27.46049],[93.88222,27.45746],[93.87474,27.45828],[93.87212,27.45396],[93.87404,27.45085],[93.87265,27.44497],[93.86303,27.4369],[93.85645,27.43345],[93.85286,27.43384],[93.84033,27.42555],[93.8356,27.42008],[93.83436,27.41352],[93.82863,27.40783],[93.82472,27.40118],[93.82095,27.40044],[93.81504,27.39155],[93.81407,27.38254],[93.81893,27.38142],[93.82498,27.3775],[93.82628,27.36564],[93.83005,27.35823],[93.83196,27.35657],[93.83828,27.35575],[93.83908,27.35372],[93.8465,27.35107],[93.84906,27.34864],[93.84659,27.34289],[93.84621,27.33811],[93.8483,27.33373],[93.84721,27.33257],[93.82946,27.32258],[93.81838,27.32897],[93.81201,27.32441],[93.8054,27.32219],[93.80302,27.31874],[93.7992,27.31785],[93.79805,27.31469],[93.79132,27.31152],[93.7878,27.30613],[93.78398,27.30561],[93.78351,27.30256],[93.77781,27.30038],[93.77555,27.29625],[93.76665,27.29588],[93.7597,27.30286],[93.74669,27.30989],[93.74241,27.31041],[93.72815,27.30471],[93.71773,27.2972],[93.70636,27.29963],[93.70285,27.2984],[93.70338,27.30116],[93.69804,27.30667],[93.69261,27.30321],[93.68608,27.30616],[93.67913,27.30194],[93.65286,27.29525],[93.64766,27.29147],[93.63787,27.29306],[93.63595,27.29605],[93.6291,27.29997],[93.62241,27.30148],[93.62028,27.3061],[93.62113,27.31202],[93.6179,27.31601],[93.61462,27.31641],[93.61317,27.31982],[93.60943,27.32265],[93.60703,27.32217],[93.60187,27.32643],[93.59538,27.32549],[93.58861,27.32779],[93.5853,27.33242],[93.58646,27.33494],[93.58382,27.33672],[93.59084,27.3447],[93.59436,27.34417],[93.59665,27.34925],[93.58834,27.35495],[93.58762,27.36411],[93.58097,27.37344],[93.58104,27.37846],[93.57579,27.38342],[93.57515,27.39355],[93.56311,27.38792],[93.56103,27.38919],[93.55934,27.39373],[93.55526,27.39552],[93.55111,27.40201],[93.5605,27.41555],[93.56017,27.42025],[93.56585,27.42339],[93.56579,27.42574],[93.57142,27.43143],[93.57233,27.43499],[93.57501,27.43604],[93.57295,27.43742],[93.57676,27.43977],[93.58324,27.43914],[93.58693,27.44218],[93.58551,27.44569],[93.58999,27.44639],[93.59091,27.44816],[93.5963,27.45033],[93.59778,27.44946],[93.60176,27.45099],[93.60597,27.44839],[93.60756,27.45012],[93.61185,27.45075],[93.6144,27.45562],[93.61759,27.45649],[93.61769,27.45914],[93.62153,27.4605],[93.62343,27.46474],[93.62028,27.46652],[93.61027,27.46692],[93.60182,27.46632],[93.59939,27.46357],[93.59525,27.46578],[93.5881,27.46369],[93.5705,27.47365],[93.56946,27.47617],[93.57304,27.47935],[93.57365,27.48444],[93.58536,27.49654],[93.58211,27.50273],[93.5854,27.51383],[93.57792,27.52308],[93.56727,27.52899],[93.56714,27.5369],[93.56116,27.54279],[93.56013,27.54923],[93.55455,27.55318],[93.55497,27.55792],[93.5526,27.55886],[93.5528,27.56217],[93.54489,27.56367],[93.5422,27.56778],[93.53809,27.56809],[93.53348,27.57422],[93.53359,27.5795],[93.53096,27.5851],[93.53407,27.59324],[93.53283,27.59812]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"238","area_level":"District","area_name":"Tawang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.45047,27.81437],[92.43195,27.82098],[92.42302,27.83068],[92.4163,27.83055],[92.38976,27.82143],[92.38538,27.8172],[92.38783,27.80593],[92.3851,27.80063],[92.35812,27.79828],[92.31922,27.78815],[92.31277,27.78849],[92.30202,27.80204],[92.29119,27.82491],[92.28484,27.84365],[92.28224,27.86185],[92.27754,27.86909],[92.26846,27.8721],[92.21866,27.86951],[92.15868,27.83958],[92.10948,27.80947],[92.05143,27.76393],[92.04335,27.76285],[92.00268,27.77225],[91.99353,27.77118],[91.98081,27.7643],[91.97152,27.7569],[91.96979,27.75],[91.9639,27.75103],[91.95768,27.74848],[91.94997,27.73736],[91.9277,27.72259],[91.92128,27.72363],[91.91253,27.73092],[91.90369,27.73223],[91.88829,27.72621],[91.8824,27.72724],[91.87785,27.7285],[91.87553,27.7345],[91.87129,27.73814],[91.86219,27.73969],[91.85901,27.7426],[91.85856,27.7481],[91.85203,27.75965],[91.85068,27.77616],[91.8446,27.78221],[91.83631,27.78518],[91.8308,27.79313],[91.82857,27.80535],[91.82415,27.81448],[91.82068,27.81596],[91.81244,27.80483],[91.78776,27.80776],[91.77887,27.8062],[91.76131,27.79996],[91.70983,27.80797],[91.70131,27.81309],[91.67221,27.84568],[91.66318,27.85295],[91.64036,27.85536],[91.6294,27.85978],[91.61726,27.85657],[91.60623,27.86013],[91.60228,27.86407],[91.59277,27.85413],[91.58913,27.8568],[91.58862,27.85988],[91.58486,27.86218],[91.57554,27.86429],[91.57375,27.85589],[91.56989,27.84801],[91.56522,27.85274],[91.55791,27.8563],[91.55463,27.85454],[91.55359,27.85136],[91.55402,27.8463],[91.56084,27.8388],[91.56232,27.82996],[91.56703,27.82595],[91.56737,27.82094],[91.56598,27.81861],[91.57263,27.8167],[91.5763,27.81186],[91.58103,27.81199],[91.58585,27.81732],[91.59185,27.81911],[91.59774,27.81801],[91.60036,27.82269],[91.60755,27.82389],[91.61464,27.82185],[91.62028,27.81561],[91.62831,27.81089],[91.63508,27.80294],[91.63378,27.79604],[91.63732,27.79407],[91.63645,27.78809],[91.63823,27.78385],[91.63785,27.78028],[91.63996,27.77402],[91.64484,27.76999],[91.6454,27.76338],[91.64307,27.76103],[91.6419,27.75228],[91.63504,27.74689],[91.63463,27.745],[91.63889,27.73581],[91.63411,27.72258],[91.63152,27.71981],[91.63192,27.71679],[91.62685,27.7158],[91.62998,27.70862],[91.62855,27.69943],[91.61967,27.69385],[91.60722,27.69081],[91.60425,27.68347],[91.59619,27.67978],[91.59378,27.67005],[91.58714,27.66694],[91.58252,27.66254],[91.57745,27.66257],[91.57307,27.66069],[91.57061,27.6508],[91.56407,27.6414],[91.56218,27.63185],[91.5647,27.62576],[91.58437,27.60822],[91.58262,27.60461],[91.57018,27.59449],[91.56603,27.5839],[91.57189,27.57958],[91.57283,27.57371],[91.58077,27.56898],[91.58343,27.56545],[91.58215,27.55676],[91.58896,27.5517],[91.59373,27.54206],[91.60195,27.54063],[91.60405,27.54231],[91.60788,27.54189],[91.61229,27.54369],[91.61195,27.54118],[91.6145,27.53717],[91.61391,27.53181],[91.62211,27.52017],[91.62403,27.51415],[91.63421,27.50852],[91.63774,27.50425],[91.64496,27.50201],[91.65245,27.48304],[91.65923,27.48347],[91.67217,27.49317],[91.68487,27.49695],[91.68481,27.50044],[91.69506,27.50533],[91.70195,27.49885],[91.71356,27.49348],[91.71459,27.48727],[91.71775,27.4851],[91.71462,27.47454],[91.73274,27.46935],[91.74708,27.47256],[91.75224,27.47568],[91.76298,27.47498],[91.76808,27.47374],[91.76589,27.47067],[91.76697,27.46476],[91.78077,27.46604],[91.7887,27.4701],[91.79584,27.47095],[91.79815,27.47429],[91.80115,27.47234],[91.81365,27.47438],[91.8209,27.47203],[91.82525,27.46785],[91.84159,27.47683],[91.8486,27.48646],[91.8551,27.48214],[91.86083,27.48476],[91.86438,27.48289],[91.86905,27.4791],[91.8716,27.4708],[91.87619,27.47117],[91.87951,27.47455],[91.88768,27.47617],[91.89789,27.47122],[91.90828,27.47286],[91.91222,27.47178],[91.92312,27.47404],[91.93142,27.4659],[91.93722,27.46506],[91.94364,27.45974],[91.94682,27.4618],[91.95337,27.46003],[91.96154,27.46068],[91.97282,27.46722],[91.97888,27.46334],[91.98908,27.46752],[91.99468,27.47849],[92.00032,27.47904],[92.00702,27.47659],[92.01083,27.47972],[92.01489,27.47887],[92.01631,27.48077],[92.01981,27.47738],[92.01889,27.47432],[92.02339,27.46197],[92.02186,27.4501],[92.02523,27.45611],[92.02596,27.46978],[92.04874,27.47479],[92.07078,27.48559],[92.08336,27.4936],[92.1013,27.49823],[92.10399,27.50384],[92.10879,27.50332],[92.11118,27.50811],[92.10784,27.5143],[92.11584,27.51489],[92.118,27.51929],[92.12185,27.51937],[92.12704,27.52231],[92.12993,27.52919],[92.13432,27.53325],[92.13223,27.54242],[92.13591,27.54424],[92.14081,27.54243],[92.14398,27.54688],[92.14841,27.55974],[92.15006,27.56106],[92.15649,27.55873],[92.16139,27.5601],[92.16834,27.5728],[92.18703,27.57257],[92.19057,27.57418],[92.19468,27.56661],[92.20643,27.56423],[92.20946,27.5609],[92.21648,27.56298],[92.23078,27.57282],[92.23465,27.5808],[92.23317,27.58605],[92.23462,27.58952],[92.23202,27.59029],[92.23083,27.59257],[92.2313,27.60313],[92.2277,27.60456],[92.22526,27.61197],[92.2189,27.61457],[92.21822,27.61821],[92.2213,27.61982],[92.22455,27.62699],[92.23273,27.63465],[92.23939,27.63602],[92.24413,27.63966],[92.24375,27.64122],[92.23962,27.64312],[92.23886,27.65476],[92.23951,27.66004],[92.24408,27.66815],[92.26616,27.65532],[92.28905,27.65279],[92.32068,27.65977],[92.33248,27.66534],[92.33885,27.66388],[92.36123,27.66345],[92.36998,27.66787],[92.37891,27.66865],[92.39049,27.6731],[92.39568,27.67776],[92.40032,27.69388],[92.40879,27.70248],[92.40756,27.71469],[92.40473,27.72404],[92.40992,27.7268],[92.41319,27.73354],[92.41249,27.74055],[92.41446,27.74645],[92.42319,27.74597],[92.43588,27.73866],[92.44093,27.73943],[92.4468,27.73416],[92.46204,27.74248],[92.46193,27.74622],[92.4646,27.75095],[92.45667,27.75547],[92.46353,27.75955],[92.46864,27.76516],[92.46539,27.77136],[92.46788,27.77285],[92.47049,27.78444],[92.45647,27.80269],[92.45047,27.81437]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"239","area_level":"District","area_name":"Tirap","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.53499,27.26168],[95.53452,27.26459],[95.53162,27.26105],[95.52982,27.26182],[95.53012,27.26449],[95.52789,27.26308],[95.52551,27.26377],[95.51705,27.25751],[95.51147,27.26191],[95.50881,27.26187],[95.50467,27.24936],[95.49963,27.24618],[95.49209,27.24554],[95.48426,27.24125],[95.48293,27.23652],[95.47884,27.23406],[95.47966,27.23096],[95.47745,27.22676],[95.47147,27.22272],[95.47244,27.21893],[95.46754,27.21832],[95.46763,27.21388],[95.46437,27.21113],[95.45813,27.20978],[95.45589,27.20253],[95.45842,27.20018],[95.45914,27.19543],[95.46246,27.19437],[95.46017,27.19134],[95.4666,27.18164],[95.45952,27.17569],[95.46471,27.17221],[95.46551,27.16636],[95.46252,27.16171],[95.45332,27.15733],[95.45965,27.15374],[95.46222,27.14966],[95.45748,27.14413],[95.45657,27.14055],[95.45817,27.13796],[95.45681,27.13546],[95.45267,27.12925],[95.44941,27.12968],[95.4493,27.13459],[95.44441,27.13521],[95.44242,27.13139],[95.44473,27.12879],[95.4406,27.12874],[95.43961,27.12592],[95.42065,27.12578],[95.39854,27.10872],[95.39203,27.10804],[95.38383,27.10481],[95.38199,27.10028],[95.38302,27.0982],[95.37528,27.09314],[95.38702,27.08434],[95.38511,27.06436],[95.38883,27.04475],[95.36979,27.03951],[95.36021,27.03267],[95.37574,27.01786],[95.37717,27.00882],[95.36812,26.93553],[95.37669,26.92506],[95.37907,26.91269],[95.40658,26.88574],[95.41402,26.88574],[95.44043,26.86718],[95.47184,26.8679],[95.50482,26.87669],[95.49647,26.81784],[95.50565,26.79964],[95.5074,26.8088],[95.51453,26.80951],[95.52228,26.8135],[95.52445,26.8221],[95.53192,26.82726],[95.53601,26.82723],[95.53831,26.8319],[95.54313,26.83538],[95.55197,26.83186],[95.55688,26.83264],[95.55665,26.82985],[95.56477,26.81943],[95.57045,26.81595],[95.58636,26.81723],[95.59534,26.81466],[95.60002,26.81147],[95.60849,26.81286],[95.61264,26.82508],[95.62055,26.83116],[95.62726,26.84301],[95.62681,26.84741],[95.62953,26.85774],[95.62678,26.86198],[95.63415,26.86801],[95.63188,26.87363],[95.64464,26.8764],[95.64672,26.8845],[95.65101,26.88682],[95.65302,26.89178],[95.66066,26.89545],[95.667,26.90286],[95.67512,26.90093],[95.6795,26.89572],[95.68615,26.89554],[95.69048,26.8927],[95.69481,26.89205],[95.70645,26.88194],[95.70624,26.88056],[95.71364,26.88014],[95.71618,26.87846],[95.72414,26.8822],[95.73429,26.8938],[95.74065,26.89388],[95.74476,26.89621],[95.74674,26.90118],[95.74684,26.90407],[95.72627,26.9192],[95.7075,26.92981],[95.65318,26.94815],[95.64842,26.95089],[95.64696,26.95419],[95.64914,26.957],[95.65706,26.9583],[95.69476,26.96318],[95.714,26.96372],[95.73028,26.96658],[95.73286,26.97285],[95.71602,26.99461],[95.7162,27.00082],[95.70335,27.03626],[95.68549,27.07076],[95.66494,27.09931],[95.65191,27.12733],[95.64805,27.14617],[95.64951,27.17455],[95.64767,27.18454],[95.64068,27.19301],[95.64188,27.20164],[95.64095,27.20871],[95.63389,27.23038],[95.63163,27.2295],[95.62931,27.23133],[95.61903,27.23248],[95.61757,27.2309],[95.6122,27.23021],[95.61062,27.2276],[95.60382,27.22422],[95.58757,27.22294],[95.58454,27.22489],[95.58298,27.22851],[95.58046,27.22781],[95.57826,27.23207],[95.57456,27.23436],[95.57727,27.23807],[95.5752,27.23978],[95.57425,27.24396],[95.56431,27.24467],[95.55808,27.24898],[95.55433,27.24848],[95.55099,27.25045],[95.55195,27.25315],[95.54823,27.25394],[95.54851,27.25732],[95.54536,27.25986],[95.54203,27.25901],[95.53711,27.2625],[95.53499,27.26168]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"24","area_level":"District","area_name":"Sirmaur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.39189,31.01315],[77.37785,31.02093],[77.37351,31.01662],[77.37605,31.01434],[77.37472,31.01061],[77.36956,31.00547],[77.36392,31.00525],[77.34734,30.99935],[77.34289,31.00179],[77.33628,30.99848],[77.33566,30.99359],[77.32605,30.98504],[77.32246,30.97804],[77.31373,30.97468],[77.31096,30.97023],[77.30145,30.96753],[77.29961,30.96396],[77.30302,30.95895],[77.29816,30.95285],[77.29503,30.95119],[77.28085,30.95058],[77.26515,30.94039],[77.26661,30.93766],[77.26284,30.93019],[77.24563,30.91476],[77.23986,30.91409],[77.23613,30.90515],[77.2309,30.90064],[77.22504,30.90022],[77.22019,30.90375],[77.21495,30.90164],[77.21686,30.89511],[77.21389,30.89576],[77.20561,30.88878],[77.20782,30.88375],[77.21365,30.87857],[77.19608,30.8645],[77.18902,30.86415],[77.1883,30.86043],[77.18291,30.86041],[77.18682,30.85691],[77.18708,30.85086],[77.18094,30.85075],[77.17823,30.84679],[77.17236,30.84768],[77.16849,30.84422],[77.16915,30.84202],[77.15667,30.85192],[77.15355,30.85655],[77.14891,30.85684],[77.1481,30.85471],[77.14305,30.85297],[77.13603,30.85616],[77.13453,30.85411],[77.11921,30.85296],[77.11473,30.8512],[77.117,30.84813],[77.11448,30.846],[77.11628,30.84367],[77.10722,30.83883],[77.10508,30.83321],[77.10103,30.83221],[77.09872,30.83333],[77.09368,30.83004],[77.08783,30.83046],[77.08716,30.8224],[77.08882,30.8184],[77.08614,30.81392],[77.08681,30.80953],[77.08294,30.80455],[77.08373,30.79249],[77.07846,30.78961],[77.07898,30.78767],[77.07682,30.78552],[77.07005,30.78393],[77.06288,30.77834],[77.05509,30.77567],[77.04892,30.7695],[77.04465,30.76876],[77.04008,30.76552],[77.03335,30.76444],[77.02916,30.75831],[77.02908,30.75058],[77.02572,30.74961],[77.02338,30.75116],[77.02401,30.74535],[77.02077,30.74477],[77.02022,30.74145],[77.027,30.73687],[77.03309,30.73864],[77.0335,30.74029],[77.04562,30.74133],[77.04162,30.7502],[77.04479,30.75164],[77.04838,30.74923],[77.04719,30.75295],[77.05547,30.74543],[77.06258,30.74568],[77.06806,30.74094],[77.07802,30.74401],[77.09353,30.74233],[77.10126,30.734],[77.10951,30.72918],[77.1141,30.72857],[77.11536,30.72482],[77.11146,30.72143],[77.11348,30.72079],[77.11373,30.71819],[77.12034,30.71878],[77.12439,30.72177],[77.12796,30.7161],[77.12885,30.71075],[77.13761,30.70618],[77.14219,30.69946],[77.14788,30.69947],[77.15483,30.6926],[77.16121,30.69093],[77.16719,30.6839],[77.16046,30.68186],[77.16658,30.67485],[77.16853,30.66954],[77.16822,30.66408],[77.16281,30.65468],[77.16304,30.65084],[77.16476,30.65126],[77.16771,30.64237],[77.17691,30.63697],[77.17334,30.63332],[77.1714,30.62755],[77.17255,30.61954],[77.17058,30.61365],[77.1727,30.61114],[77.1708,30.60437],[77.17377,30.60055],[77.16427,30.59437],[77.16557,30.5916],[77.15941,30.58887],[77.16111,30.58661],[77.15764,30.58399],[77.15317,30.58336],[77.14821,30.57675],[77.14018,30.57808],[77.13765,30.57162],[77.13829,30.56894],[77.13428,30.56955],[77.12173,30.56294],[77.12793,30.55672],[77.13568,30.54302],[77.14536,30.53645],[77.15232,30.53431],[77.17034,30.53337],[77.17288,30.53231],[77.17258,30.53021],[77.17446,30.52921],[77.18119,30.52788],[77.18722,30.52372],[77.19504,30.52257],[77.19786,30.5195],[77.19681,30.51729],[77.20132,30.5153],[77.20939,30.50003],[77.21304,30.49639],[77.20907,30.48274],[77.21351,30.46841],[77.21652,30.47067],[77.22101,30.4799],[77.22809,30.48545],[77.23034,30.48334],[77.23238,30.4845],[77.23751,30.48267],[77.24153,30.48306],[77.251,30.47698],[77.25266,30.47847],[77.25476,30.47665],[77.26536,30.47683],[77.26615,30.47434],[77.27245,30.46955],[77.27426,30.45875],[77.27826,30.45846],[77.27973,30.46025],[77.28333,30.45777],[77.28809,30.45765],[77.29117,30.45923],[77.28988,30.4604],[77.29107,30.46061],[77.29285,30.45951],[77.29182,30.45699],[77.29439,30.45451],[77.30392,30.45199],[77.30783,30.45273],[77.30683,30.45025],[77.30872,30.44916],[77.31667,30.44814],[77.31923,30.4503],[77.31924,30.44796],[77.3211,30.44807],[77.32588,30.45168],[77.32823,30.45575],[77.33267,30.45766],[77.34188,30.45994],[77.34669,30.45783],[77.35358,30.46075],[77.35481,30.4557],[77.36346,30.44325],[77.36398,30.43437],[77.36723,30.44222],[77.37768,30.44087],[77.38756,30.442],[77.39049,30.4414],[77.38967,30.43476],[77.39137,30.43167],[77.399,30.43138],[77.40022,30.4288],[77.40353,30.43088],[77.40831,30.42872],[77.40652,30.42791],[77.40614,30.4256],[77.40399,30.42533],[77.40434,30.42214],[77.39864,30.41742],[77.40523,30.41019],[77.40954,30.40979],[77.40948,30.41534],[77.41587,30.41909],[77.41742,30.42538],[77.42197,30.42512],[77.43598,30.43278],[77.44274,30.43974],[77.44542,30.44476],[77.44963,30.4485],[77.45159,30.44827],[77.45612,30.45854],[77.45901,30.4581],[77.4662,30.45001],[77.46144,30.44388],[77.46156,30.43461],[77.45396,30.43373],[77.45369,30.43035],[77.44636,30.42294],[77.445,30.41867],[77.43376,30.41702],[77.43038,30.41169],[77.42382,30.41075],[77.42289,30.40408],[77.43849,30.40404],[77.44532,30.396],[77.45445,30.40081],[77.46271,30.40098],[77.46567,30.4025],[77.4735,30.401],[77.47954,30.40602],[77.49294,30.41169],[77.49871,30.40582],[77.50161,30.4087],[77.49995,30.41888],[77.50299,30.42983],[77.51538,30.44514],[77.5198,30.44539],[77.52555,30.44053],[77.52543,30.43332],[77.52883,30.42241],[77.53639,30.41076],[77.54796,30.40037],[77.54679,30.39601],[77.55714,30.38808],[77.5805,30.37734],[77.58563,30.37947],[77.5847,30.38529],[77.57512,30.39921],[77.57241,30.41098],[77.58445,30.42051],[77.59184,30.42341],[77.59457,30.4266],[77.62268,30.43466],[77.62595,30.43469],[77.63192,30.43125],[77.637,30.43319],[77.64327,30.43184],[77.64607,30.43341],[77.649,30.44515],[77.65237,30.44805],[77.66298,30.44704],[77.67077,30.44419],[77.69025,30.44802],[77.69794,30.45586],[77.7072,30.45924],[77.72098,30.473],[77.73172,30.47314],[77.7394,30.47602],[77.76436,30.49108],[77.77567,30.49431],[77.78307,30.50058],[77.79986,30.50106],[77.81793,30.50692],[77.81982,30.52408],[77.82586,30.52625],[77.8278,30.531],[77.82351,30.54196],[77.82035,30.54519],[77.82001,30.54803],[77.8226,30.55378],[77.81785,30.56102],[77.81399,30.56008],[77.80637,30.55449],[77.79964,30.55766],[77.79718,30.55406],[77.79411,30.5532],[77.78357,30.55983],[77.77403,30.55784],[77.76752,30.56535],[77.76714,30.57115],[77.76066,30.57752],[77.75664,30.58561],[77.74287,30.59385],[77.74325,30.59616],[77.74679,30.59746],[77.74325,30.60149],[77.7461,30.60389],[77.7519,30.60178],[77.75564,30.60469],[77.76435,30.59592],[77.77167,30.5969],[77.77241,30.59855],[77.77022,30.6049],[77.77107,30.61053],[77.76894,30.61452],[77.77111,30.61638],[77.78025,30.61284],[77.78672,30.61431],[77.79626,30.61365],[77.79255,30.62091],[77.78614,30.62442],[77.78605,30.62994],[77.79062,30.634],[77.78639,30.6367],[77.78674,30.6417],[77.78123,30.64667],[77.78603,30.65182],[77.78687,30.65498],[77.79249,30.65693],[77.79253,30.65869],[77.7895,30.66223],[77.78445,30.65956],[77.78119,30.65997],[77.77458,30.66476],[77.77251,30.6691],[77.76421,30.67082],[77.75975,30.67309],[77.75916,30.67577],[77.74741,30.67985],[77.74675,30.68304],[77.74841,30.68775],[77.74694,30.69443],[77.75258,30.69665],[77.7504,30.70011],[77.75582,30.70692],[77.74562,30.71387],[77.74741,30.71697],[77.74669,30.71972],[77.73659,30.72415],[77.7373,30.73034],[77.73319,30.73534],[77.72836,30.73414],[77.72153,30.7416],[77.70879,30.73972],[77.70505,30.74275],[77.70243,30.74627],[77.70517,30.75078],[77.70896,30.75249],[77.70381,30.76404],[77.6845,30.77829],[77.68751,30.78429],[77.68302,30.79046],[77.67533,30.79112],[77.67425,30.79431],[77.66725,30.79954],[77.66631,30.80258],[77.66073,30.80022],[77.66068,30.80543],[77.65933,30.80678],[77.65496,30.80294],[77.65495,30.80494],[77.64708,30.80451],[77.63684,30.8094],[77.62425,30.80999],[77.62173,30.80857],[77.6181,30.79873],[77.6199,30.79413],[77.60817,30.79093],[77.60633,30.7858],[77.60413,30.78458],[77.6041,30.78284],[77.6007,30.78153],[77.6003,30.77937],[77.59421,30.7796],[77.59029,30.77807],[77.58234,30.77896],[77.57889,30.77738],[77.5713,30.77893],[77.56838,30.77759],[77.55526,30.77847],[77.55228,30.77509],[77.54672,30.77426],[77.54516,30.77827],[77.55061,30.78852],[77.54839,30.80043],[77.53753,30.80009],[77.53607,30.80125],[77.52978,30.7997],[77.52113,30.7858],[77.51769,30.78988],[77.5071,30.79081],[77.50039,30.79442],[77.49248,30.7952],[77.49501,30.80065],[77.49367,30.80513],[77.49399,30.81456],[77.48924,30.81696],[77.49032,30.8186],[77.48907,30.82196],[77.49083,30.83182],[77.48986,30.83816],[77.4915,30.84255],[77.48465,30.84853],[77.47877,30.86463],[77.46466,30.86457],[77.461,30.86679],[77.4514,30.86312],[77.44433,30.87067],[77.43532,30.87518],[77.43852,30.88476],[77.43783,30.88933],[77.43266,30.89895],[77.42661,30.90343],[77.42525,30.91331],[77.4233,30.91438],[77.42093,30.92097],[77.42232,30.92568],[77.4181,30.92901],[77.43783,30.9416],[77.44092,30.94182],[77.44332,30.94494],[77.44479,30.95079],[77.44252,30.95154],[77.44113,30.95917],[77.44344,30.96643],[77.43944,30.97897],[77.43579,30.98453],[77.42595,30.9885],[77.42398,30.99104],[77.42505,30.99317],[77.41949,30.99626],[77.41907,30.99875],[77.41666,30.99922],[77.41075,30.99674],[77.40701,30.99917],[77.40568,31.00262],[77.39817,31.01029],[77.39549,31.01066],[77.39569,31.01292],[77.39189,31.01315]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"240","area_level":"District","area_name":"Upper Siang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.06739,29.1477],[95.03657,29.15209],[95.01644,29.15827],[94.99277,29.17076],[94.97982,29.17335],[94.97297,29.16593],[94.97528,29.15654],[94.98159,29.15156],[94.99949,29.15024],[95.01213,29.14695],[95.02245,29.13394],[95.01358,29.13018],[94.98833,29.13748],[94.97741,29.14286],[94.96665,29.15206],[94.95841,29.15639],[94.93252,29.15558],[94.91578,29.15207],[94.90753,29.1564],[94.89393,29.16927],[94.87867,29.17503],[94.86376,29.17647],[94.84354,29.17426],[94.81064,29.16196],[94.80413,29.16241],[94.79965,29.16589],[94.79561,29.17343],[94.79352,29.18854],[94.79641,29.19895],[94.79301,29.2153],[94.78141,29.23095],[94.7413,29.27474],[94.72292,29.29132],[94.70967,29.30009],[94.68861,29.31795],[94.66319,29.32925],[94.64507,29.33937],[94.63098,29.34124],[94.62771,29.33465],[94.62253,29.31428],[94.60463,29.28905],[94.59732,29.28355],[94.57872,29.27457],[94.57391,29.24965],[94.56518,29.23559],[94.55071,29.22075],[94.53441,29.21456],[94.51311,29.21282],[94.48673,29.21338],[94.45913,29.21755],[94.43812,29.22319],[94.42982,29.21962],[94.37488,29.18495],[94.36788,29.15842],[94.36249,29.1526],[94.3528,29.14811],[94.32962,29.1464],[94.30491,29.1476],[94.29306,29.14492],[94.27717,29.12595],[94.25777,29.1086],[94.2241,29.08783],[94.19159,29.03725],[94.34276,28.98383],[94.36764,28.95652],[94.48,28.85837],[94.51707,28.83652],[94.51533,28.82084],[94.52536,28.81153],[94.56161,28.81025],[94.59228,28.79177],[94.60785,28.797],[94.62017,28.79377],[94.63333,28.78417],[94.63395,28.76663],[94.69671,28.72831],[94.74558,28.68634],[94.74781,28.66514],[94.74452,28.61085],[94.74666,28.58792],[94.76016,28.55993],[94.78075,28.55658],[94.76593,28.54859],[94.77066,28.54855],[94.77849,28.5538],[94.78899,28.55705],[94.80404,28.57293],[94.81224,28.57243],[94.82654,28.57662],[94.84142,28.57452],[94.84358,28.57046],[94.84884,28.5659],[94.86211,28.56136],[94.86362,28.55463],[94.87473,28.54734],[94.88336,28.55505],[94.90144,28.56265],[94.91764,28.56252],[94.92542,28.56812],[94.92706,28.57524],[94.93094,28.57989],[94.9437,28.5818],[94.95003,28.57952],[94.94992,28.57497],[94.9562,28.57202],[94.9575,28.56628],[94.96518,28.5582],[94.9762,28.55666],[94.97919,28.56241],[94.98383,28.56452],[94.99194,28.5629],[95.0011,28.55179],[95.01217,28.55108],[95.01668,28.54435],[95.0184,28.53129],[95.01724,28.52363],[95.01501,28.52193],[95.02312,28.52107],[95.03318,28.52454],[95.03759,28.52336],[95.0479,28.52578],[95.05159,28.53224],[95.05452,28.53433],[95.06109,28.53229],[95.06484,28.53279],[95.06529,28.53042],[95.06932,28.52894],[95.07843,28.52888],[95.07983,28.52271],[95.0774,28.51528],[95.08005,28.50813],[95.08354,28.50532],[95.09663,28.50162],[95.10072,28.49748],[95.10007,28.48862],[95.09464,28.48126],[95.09296,28.47614],[95.09957,28.46634],[95.10196,28.45758],[95.09379,28.45266],[95.08992,28.44783],[95.09049,28.44137],[95.08854,28.43237],[95.07893,28.42218],[95.07011,28.41836],[95.06572,28.41337],[95.06684,28.40944],[95.07531,28.40338],[95.07733,28.39512],[95.07187,28.37666],[95.06894,28.3718],[95.06974,28.36307],[95.06151,28.35532],[95.07374,28.33971],[95.07932,28.33806],[95.08631,28.33072],[95.09128,28.32874],[95.10305,28.32781],[95.1053,28.32042],[95.10403,28.31176],[95.10524,28.3098],[95.10202,28.30798],[95.09616,28.29894],[95.09705,28.29454],[95.10139,28.29154],[95.10305,28.28673],[95.09553,28.28142],[95.09398,28.2777],[95.09623,28.27004],[95.10466,28.26148],[95.10928,28.25361],[95.10766,28.2505],[95.10961,28.24454],[95.11719,28.23341],[95.11967,28.22622],[95.12173,28.22493],[95.13846,28.22377],[95.14715,28.22034],[95.15155,28.21592],[95.16286,28.21594],[95.1629,28.20998],[95.16797,28.20157],[95.16712,28.18756],[95.17951,28.17891],[95.1801,28.17572],[95.18948,28.1729],[95.19296,28.1676],[95.2011,28.16316],[95.20117,28.17345],[95.20693,28.17816],[95.2125,28.17759],[95.21805,28.1737],[95.22904,28.17337],[95.23862,28.17772],[95.24637,28.17886],[95.25049,28.18459],[95.25503,28.1864],[95.25554,28.19399],[95.26112,28.19929],[95.27539,28.20212],[95.28481,28.20137],[95.28993,28.20381],[95.2913,28.20771],[95.29073,28.21658],[95.28266,28.2321],[95.28595,28.23418],[95.28614,28.23653],[95.29149,28.23922],[95.3094,28.23663],[95.31466,28.2386],[95.31289,28.25069],[95.32846,28.26599],[95.32398,28.27698],[95.32408,28.28224],[95.32018,28.28498],[95.32018,28.28834],[95.32845,28.29407],[95.33339,28.3018],[95.33825,28.30263],[95.35598,28.30099],[95.36339,28.30399],[95.36868,28.32015],[95.37419,28.32206],[95.37657,28.33381],[95.37218,28.33521],[95.36954,28.33905],[95.36741,28.34855],[95.36921,28.35345],[95.3685,28.35663],[95.35753,28.35773],[95.33793,28.36576],[95.33686,28.37583],[95.33939,28.38462],[95.33709,28.39862],[95.3379,28.40595],[95.32776,28.41829],[95.32329,28.41912],[95.32004,28.42583],[95.33513,28.43419],[95.33874,28.43894],[95.33753,28.44883],[95.3346,28.45216],[95.33658,28.47693],[95.35306,28.49007],[95.36599,28.49198],[95.37311,28.505],[95.37682,28.5082],[95.3926,28.51223],[95.39423,28.51519],[95.39276,28.51929],[95.39444,28.52449],[95.39259,28.52905],[95.40958,28.54947],[95.40921,28.55374],[95.40087,28.56771],[95.38184,28.57028],[95.3801,28.57984],[95.38087,28.58499],[95.37633,28.59787],[95.37519,28.6143],[95.36528,28.62601],[95.36731,28.644],[95.35956,28.65946],[95.35683,28.69566],[95.35475,28.70166],[95.35083,28.70437],[95.36712,28.71428],[95.37471,28.72723],[95.38457,28.73068],[95.3893,28.74127],[95.37965,28.75343],[95.37403,28.7646],[95.3736,28.76914],[95.37718,28.77768],[95.36259,28.78695],[95.36048,28.79278],[95.36093,28.79828],[95.35867,28.79924],[95.35348,28.81815],[95.35535,28.82317],[95.35299,28.82562],[95.34628,28.82613],[95.33849,28.83471],[95.33032,28.83392],[95.32795,28.83597],[95.32701,28.84139],[95.32412,28.84332],[95.32304,28.85063],[95.32781,28.85376],[95.32178,28.86224],[95.32315,28.87427],[95.31616,28.88604],[95.32543,28.8919],[95.32594,28.89442],[95.32305,28.90273],[95.32522,28.90648],[95.31825,28.90982],[95.32804,28.91895],[95.3241,28.92974],[95.31249,28.93413],[95.31281,28.94003],[95.30751,28.94282],[95.30602,28.94594],[95.30774,28.95045],[95.30704,28.9543],[95.29971,28.95666],[95.29571,28.95283],[95.28336,28.94661],[95.27281,28.94518],[95.26402,28.94646],[95.25596,28.95114],[95.25566,28.95573],[95.2618,28.96373],[95.25547,28.96992],[95.25553,28.98061],[95.24503,28.9875],[95.2436,29.00072],[95.2519,29.00328],[95.2558,29.00693],[95.26547,29.02489],[95.27606,29.02883],[95.27788,29.0325],[95.27562,29.04393],[95.26883,29.04798],[95.27154,29.05303],[95.2714,29.05874],[95.26007,29.05408],[95.24872,29.0614],[95.24202,29.06355],[95.24559,29.07632],[95.24172,29.11061],[95.19428,29.10798],[95.16631,29.10895],[95.1461,29.11324],[95.12118,29.11553],[95.10637,29.11891],[95.10194,29.12933],[95.09505,29.13959],[95.06739,29.1477]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"241","area_level":"District","area_name":"Upper Subansiri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.40163,28.33855],[94.40137,28.34028],[94.38614,28.33584],[94.37666,28.3405],[94.37279,28.34419],[94.37088,28.35171],[94.368,28.35311],[94.34354,28.35516],[94.33726,28.3583],[94.32966,28.3578],[94.32539,28.36143],[94.32213,28.36857],[94.30858,28.37551],[94.30176,28.39588],[94.30191,28.40019],[94.30889,28.41447],[94.30852,28.41689],[94.29649,28.42274],[94.29283,28.42872],[94.28343,28.4319],[94.2748,28.43062],[94.26756,28.43217],[94.24181,28.44671],[94.2368,28.44181],[94.23677,28.43351],[94.23164,28.42815],[94.21924,28.43619],[94.21396,28.43638],[94.19252,28.42979],[94.18459,28.42937],[94.17334,28.43501],[94.16264,28.43225],[94.15185,28.43606],[94.13918,28.44444],[94.13277,28.45144],[94.12643,28.46695],[94.11487,28.4757],[94.11142,28.48912],[94.10564,28.49754],[94.10908,28.5031],[94.10752,28.51195],[94.10881,28.52125],[94.10734,28.52432],[94.10316,28.52529],[94.09689,28.53603],[94.08521,28.5337],[94.0807,28.53432],[94.07151,28.53925],[94.05801,28.54946],[94.04971,28.55109],[94.02145,28.5655],[94.00143,28.57772],[94.00346,28.61082],[94.00616,28.62167],[94.01024,28.63176],[94.02337,28.65121],[94.01811,28.66548],[94.01561,28.66854],[94.00416,28.6746],[94.00124,28.67862],[93.96771,28.70732],[93.96176,28.6936],[93.94673,28.67393],[93.93563,28.66611],[93.9214,28.66983],[93.90168,28.67942],[93.86168,28.70627],[93.8506,28.70704],[93.8385,28.70162],[93.83205,28.6951],[93.78414,28.66336],[93.75309,28.68279],[93.73988,28.68455],[93.68782,28.67439],[93.65616,28.65846],[93.61945,28.65339],[93.58887,28.65413],[93.53573,28.66066],[93.52241,28.65907],[93.51416,28.68172],[93.49615,28.68597],[93.48414,28.68314],[93.47796,28.67565],[93.4748,28.66067],[93.4705,28.65265],[93.46704,28.65465],[93.45275,28.67504],[93.44597,28.67472],[93.41422,28.6542],[93.40601,28.65128],[93.37937,28.64783],[93.36215,28.64225],[93.33917,28.64325],[93.33336,28.63908],[93.32792,28.6287],[93.32786,28.61723],[93.32492,28.60918],[93.31464,28.60941],[93.30749,28.60551],[93.30162,28.59895],[93.30146,28.59322],[93.30674,28.57925],[93.30462,28.57142],[93.29512,28.56088],[93.29112,28.55356],[93.28613,28.53958],[93.28205,28.51029],[93.27774,28.50131],[93.26836,28.49507],[93.24372,28.48414],[93.22857,28.4742],[93.21842,28.46047],[93.20957,28.45192],[93.1956,28.44506],[93.18045,28.43488],[93.19338,28.42361],[93.20974,28.41895],[93.22013,28.41371],[93.22422,28.4055],[93.22221,28.33417],[93.22653,28.33558],[93.22663,28.34035],[93.22938,28.34436],[93.23947,28.35075],[93.24574,28.36081],[93.2598,28.36699],[93.27767,28.36648],[93.28288,28.36476],[93.28488,28.35506],[93.29425,28.34032],[93.303,28.34166],[93.31997,28.34945],[93.33692,28.35331],[93.34429,28.3454],[93.36046,28.34361],[93.35895,28.33677],[93.36089,28.32976],[93.36446,28.32965],[93.37857,28.32342],[93.38013,28.32157],[93.37848,28.31657],[93.3789,28.31146],[93.38397,28.31274],[93.38627,28.30625],[93.40015,28.30909],[93.40856,28.30674],[93.41431,28.28836],[93.43175,28.27992],[93.43686,28.28275],[93.44528,28.28315],[93.44779,28.28203],[93.45305,28.27186],[93.46872,28.27371],[93.47617,28.28109],[93.47979,28.28139],[93.49186,28.2769],[93.49914,28.27658],[93.50958,28.27198],[93.5425,28.2678],[93.55696,28.26046],[93.56441,28.26202],[93.57156,28.25588],[93.59281,28.27113],[93.61084,28.27131],[93.61349,28.27269],[93.6201,28.26645],[93.6299,28.26251],[93.63097,28.24346],[93.63506,28.238],[93.63409,28.23145],[93.64213,28.2241],[93.64134,28.21927],[93.65044,28.20813],[93.64881,28.20274],[93.65073,28.19739],[93.65619,28.20464],[93.65879,28.21272],[93.66627,28.2198],[93.6672,28.2248],[93.67254,28.22672],[93.67859,28.23207],[93.68874,28.235],[93.69559,28.23977],[93.70072,28.24131],[93.70828,28.25049],[93.71125,28.25734],[93.72149,28.26522],[93.72638,28.27452],[93.73604,28.2861],[93.74424,28.28794],[93.75354,28.27972],[93.76031,28.28154],[93.7663,28.27867],[93.76926,28.27458],[93.76959,28.26523],[93.77323,28.26009],[93.78202,28.25636],[93.80975,28.24702],[93.83764,28.24473],[93.84168,28.24194],[93.84237,28.23937],[93.83854,28.21911],[93.85,28.20954],[93.85035,28.19161],[93.84519,28.17379],[93.86029,28.1671],[93.86516,28.15894],[93.8719,28.15392],[93.87509,28.13908],[93.87793,28.13668],[93.87508,28.11745],[93.88423,28.10759],[93.89121,28.10323],[93.88431,28.09112],[93.88515,28.0821],[93.87646,28.06724],[93.87734,28.06497],[93.87498,28.05598],[93.87636,28.05145],[93.88496,28.04544],[93.88547,28.04243],[93.88875,28.04182],[93.89258,28.045],[93.89548,28.04448],[93.89873,28.03959],[93.90182,28.03898],[93.90736,28.03328],[93.91306,28.03027],[93.91924,28.01729],[93.91963,28.01489],[93.91732,28.0114],[93.91835,28.00629],[93.92066,28.00542],[93.9273,28.00804],[93.93986,28.00268],[93.94609,27.99374],[93.94465,27.98654],[93.94733,27.9852],[93.95011,27.98084],[93.95545,27.97936],[93.96206,27.98189],[93.97126,27.97831],[93.98875,27.976],[94.01187,27.95805],[94.03129,27.96116],[94.0493,27.95655],[94.05719,27.94717],[94.0682,27.9391],[94.05707,27.92215],[94.04779,27.9145],[94.04768,27.91186],[94.05615,27.9062],[94.06051,27.87965],[94.06015,27.86941],[94.07418,27.8493],[94.08654,27.85311],[94.09649,27.85978],[94.10235,27.86102],[94.11258,27.85995],[94.12203,27.86179],[94.1286,27.85782],[94.14148,27.86623],[94.14911,27.86596],[94.15289,27.85812],[94.15397,27.85189],[94.16015,27.84375],[94.17044,27.84539],[94.19189,27.83652],[94.1921,27.81526],[94.19344,27.81139],[94.20376,27.81227],[94.25751,27.80773],[94.27399,27.80059],[94.30537,27.78361],[94.32138,27.77063],[94.33254,27.75778],[94.3467,27.76408],[94.36475,27.77691],[94.37277,27.78514],[94.38492,27.79421],[94.40235,27.79253],[94.41804,27.80639],[94.44,27.81102],[94.44237,27.81395],[94.44353,27.82294],[94.4483,27.82518],[94.46124,27.82506],[94.46948,27.83282],[94.47568,27.83325],[94.48316,27.83612],[94.50377,27.83628],[94.53359,27.84992],[94.55923,27.85615],[94.57719,27.85602],[94.58912,27.86162],[94.59484,27.87071],[94.59293,27.89004],[94.55806,27.9024],[94.5545,27.91021],[94.53778,27.93334],[94.53584,27.94387],[94.53096,27.95225],[94.52513,27.9582],[94.52279,27.9664],[94.52539,27.97709],[94.53208,27.98594],[94.52475,27.99522],[94.51301,28.0154],[94.50629,28.01927],[94.48424,28.02172],[94.48084,28.0233],[94.47536,28.03929],[94.46709,28.04873],[94.43934,28.06087],[94.42565,28.06259],[94.40832,28.06912],[94.40745,28.07221],[94.39932,28.07993],[94.39052,28.08406],[94.39481,28.08876],[94.39768,28.1047],[94.38653,28.12102],[94.39187,28.13646],[94.39148,28.14187],[94.37779,28.15862],[94.37464,28.16798],[94.37661,28.17652],[94.37448,28.18105],[94.36075,28.19047],[94.3565,28.19849],[94.36777,28.21145],[94.36743,28.2354],[94.36927,28.24411],[94.38346,28.25797],[94.38761,28.25894],[94.40417,28.2529],[94.41702,28.25419],[94.4015,28.25926],[94.39162,28.26577],[94.3927,28.27362],[94.38991,28.27854],[94.37485,28.29495],[94.37762,28.30891],[94.38616,28.31684],[94.40326,28.3278],[94.40163,28.33855]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"242","area_level":"District","area_name":"West Kameng","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.43588,27.73866],[92.42319,27.74597],[92.41446,27.74645],[92.41249,27.74055],[92.41319,27.73354],[92.40992,27.7268],[92.40473,27.72404],[92.40756,27.71469],[92.40879,27.70248],[92.40002,27.69335],[92.39554,27.67751],[92.3902,27.67286],[92.38229,27.66958],[92.36998,27.66787],[92.36064,27.66339],[92.33885,27.66388],[92.33248,27.66534],[92.32068,27.65977],[92.28905,27.65279],[92.26616,27.65532],[92.24408,27.66815],[92.23951,27.66004],[92.23886,27.65476],[92.23962,27.64312],[92.24375,27.64122],[92.24413,27.63966],[92.23939,27.63602],[92.23273,27.63465],[92.22455,27.62699],[92.2213,27.61982],[92.21822,27.61821],[92.2189,27.61457],[92.22526,27.61197],[92.2277,27.60456],[92.2313,27.60313],[92.23083,27.59257],[92.23202,27.59029],[92.23462,27.58952],[92.23317,27.58605],[92.23465,27.5808],[92.23078,27.57282],[92.21648,27.56298],[92.20946,27.5609],[92.20643,27.56423],[92.19468,27.56661],[92.19057,27.57418],[92.18703,27.57257],[92.16834,27.5728],[92.16139,27.5601],[92.15649,27.55873],[92.15006,27.56106],[92.14841,27.55974],[92.14398,27.54688],[92.14081,27.54243],[92.13591,27.54424],[92.13223,27.54242],[92.13432,27.53325],[92.12993,27.52919],[92.12704,27.52231],[92.12185,27.51937],[92.118,27.51929],[92.11584,27.51489],[92.10784,27.5143],[92.11118,27.50811],[92.10879,27.50332],[92.10399,27.50384],[92.1013,27.49823],[92.08336,27.4936],[92.07078,27.48559],[92.04874,27.47479],[92.0256,27.4693],[92.02523,27.45611],[92.02186,27.4501],[92.02217,27.44802],[92.02643,27.44274],[92.0268,27.44012],[92.03234,27.44057],[92.033,27.43858],[92.03728,27.43895],[92.04254,27.43523],[92.04202,27.43102],[92.04423,27.42672],[92.04248,27.41854],[92.04369,27.41481],[92.04897,27.40704],[92.05375,27.40403],[92.05453,27.40105],[92.05847,27.39971],[92.05481,27.39606],[92.0544,27.38284],[92.04899,27.37676],[92.04824,27.36313],[92.05011,27.35706],[92.05503,27.3527],[92.05277,27.35129],[92.05961,27.34656],[92.06252,27.34221],[92.06458,27.32698],[92.07815,27.31304],[92.08896,27.30457],[92.0998,27.30237],[92.12017,27.29031],[92.12498,27.28202],[92.12458,27.27802],[92.11995,27.2718],[92.11313,27.27006],[92.10945,27.27085],[92.10347,27.26866],[92.09451,27.27126],[92.0869,27.26927],[92.07535,27.27819],[92.07203,27.27807],[92.07031,27.27624],[92.06707,27.27717],[92.0613,27.27253],[92.04517,27.26858],[92.04293,27.2616],[92.038,27.25842],[92.03844,27.25444],[92.04017,27.25582],[92.04591,27.25559],[92.0592,27.2518],[92.06251,27.2441],[92.06737,27.24203],[92.07257,27.23311],[92.07056,27.2276],[92.06928,27.21373],[92.06243,27.20893],[92.05838,27.19031],[92.05211,27.18492],[92.03709,27.1793],[92.03575,27.17507],[92.02672,27.16828],[92.02873,27.15732],[92.0324,27.15277],[92.03218,27.14605],[92.0353,27.14085],[92.0358,27.13491],[92.03253,27.12439],[92.02743,27.11846],[92.02313,27.10955],[92.03017,27.0998],[92.02961,27.09493],[92.03195,27.09202],[92.03081,27.07992],[92.03764,27.07033],[92.03681,27.06314],[92.04325,27.05663],[92.04412,27.05136],[92.05616,27.05142],[92.07052,27.04398],[92.07302,27.04452],[92.07645,27.04159],[92.08175,27.04082],[92.08308,27.03408],[92.0789,27.02872],[92.07842,27.01736],[92.09507,27.0123],[92.09478,27.00924],[92.10355,27.00398],[92.10418,26.99864],[92.10825,26.98979],[92.10497,26.98664],[92.10476,26.97991],[92.11811,26.97437],[92.12098,26.96036],[92.11355,26.95049],[92.11568,26.94499],[92.11861,26.94228],[92.11817,26.9386],[92.11516,26.93421],[92.11685,26.92547],[92.11521,26.91375],[92.11777,26.9089],[92.11675,26.89749],[92.11438,26.89358],[92.12002,26.88898],[92.16986,26.89165],[92.1948,26.88996],[92.23802,26.90579],[92.25519,26.90961],[92.27609,26.902],[92.30296,26.90714],[92.30266,26.92264],[92.3231,26.92753],[92.36319,26.93454],[92.3671,26.92868],[92.39833,26.92469],[92.41201,26.94276],[92.42581,26.94104],[92.44747,26.95881],[92.49686,26.96337],[92.55419,26.95744],[92.57933,26.95889],[92.58912,26.96156],[92.62372,26.97689],[92.6448,26.98666],[92.64454,27.00875],[92.63552,27.02392],[92.6239,27.02866],[92.60518,27.04417],[92.59779,27.05294],[92.59026,27.07901],[92.59196,27.08546],[92.60031,27.09705],[92.59428,27.1046],[92.60192,27.1081],[92.60168,27.11981],[92.60704,27.1255],[92.60805,27.14024],[92.61725,27.14613],[92.62466,27.14882],[92.6324,27.14755],[92.63785,27.15024],[92.64995,27.1519],[92.67055,27.16136],[92.675,27.1609],[92.67816,27.16371],[92.68805,27.16571],[92.69729,27.17257],[92.71679,27.17588],[92.72883,27.18411],[92.73681,27.18755],[92.73882,27.19049],[92.74998,27.19529],[92.76473,27.19566],[92.76837,27.19412],[92.78165,27.18098],[92.79889,27.18129],[92.81429,27.17786],[92.81456,27.19269],[92.80843,27.19736],[92.80885,27.20177],[92.81559,27.20368],[92.81867,27.21054],[92.82306,27.21418],[92.83337,27.21445],[92.83415,27.21797],[92.82781,27.22466],[92.83021,27.22869],[92.83626,27.23277],[92.82531,27.23941],[92.81739,27.25348],[92.80219,27.25553],[92.7994,27.26015],[92.80042,27.26729],[92.80286,27.26903],[92.80327,27.2718],[92.80732,27.27288],[92.80261,27.27939],[92.80624,27.28774],[92.80574,27.29508],[92.81187,27.29636],[92.81687,27.2893],[92.82395,27.28688],[92.83203,27.2894],[92.84271,27.28924],[92.84425,27.29293],[92.84327,27.29818],[92.83998,27.30375],[92.83489,27.30767],[92.83155,27.30797],[92.83053,27.31012],[92.82041,27.31291],[92.81946,27.31561],[92.81672,27.31612],[92.81438,27.32076],[92.80953,27.32301],[92.80431,27.32966],[92.80677,27.33166],[92.80671,27.33712],[92.80492,27.3381],[92.80509,27.34606],[92.80142,27.34699],[92.80016,27.35023],[92.80553,27.35119],[92.80683,27.35566],[92.8056,27.35789],[92.809,27.35848],[92.81455,27.35464],[92.81521,27.35957],[92.81284,27.36912],[92.81404,27.37075],[92.81155,27.37538],[92.81189,27.37887],[92.81559,27.37986],[92.82025,27.37694],[92.82289,27.3794],[92.82037,27.38974],[92.82256,27.39917],[92.82049,27.41187],[92.81623,27.41683],[92.81481,27.41355],[92.81239,27.41644],[92.80511,27.419],[92.81078,27.42561],[92.80471,27.42916],[92.80654,27.43107],[92.80561,27.43372],[92.80824,27.43504],[92.8048,27.43676],[92.80586,27.44205],[92.80374,27.44642],[92.80181,27.44856],[92.78581,27.45297],[92.7773,27.44914],[92.77712,27.44589],[92.77397,27.44362],[92.76866,27.44342],[92.76489,27.44675],[92.76099,27.44395],[92.75439,27.44572],[92.75243,27.44632],[92.74245,27.46304],[92.73638,27.46658],[92.71432,27.45044],[92.70212,27.44961],[92.69242,27.45496],[92.69178,27.45854],[92.68417,27.46346],[92.68497,27.47298],[92.68046,27.47252],[92.67112,27.4755],[92.67039,27.47788],[92.66057,27.48212],[92.65377,27.49077],[92.65528,27.49435],[92.65463,27.49729],[92.65132,27.50055],[92.64832,27.5114],[92.65352,27.51995],[92.65022,27.53195],[92.63883,27.54374],[92.63423,27.54461],[92.6284,27.54301],[92.61912,27.54518],[92.61705,27.55314],[92.62224,27.56439],[92.62217,27.57174],[92.62114,27.57461],[92.61777,27.57559],[92.60986,27.58645],[92.61388,27.58928],[92.61278,27.59362],[92.60326,27.59886],[92.60132,27.6021],[92.59672,27.60481],[92.59271,27.60371],[92.58836,27.60556],[92.59018,27.60967],[92.58732,27.6173],[92.57592,27.61302],[92.56956,27.61353],[92.56736,27.61238],[92.56703,27.60966],[92.55103,27.60394],[92.53914,27.6102],[92.53893,27.62217],[92.54107,27.62965],[92.53084,27.63647],[92.53514,27.64695],[92.53364,27.65004],[92.53652,27.65495],[92.53639,27.66632],[92.53371,27.66743],[92.53277,27.6733],[92.52899,27.67623],[92.52627,27.68363],[92.51765,27.68926],[92.51203,27.69716],[92.51378,27.70551],[92.51009,27.71209],[92.50953,27.71783],[92.51212,27.72159],[92.5028,27.72402],[92.49675,27.73016],[92.47876,27.73606],[92.47306,27.73996],[92.46351,27.73806],[92.45609,27.73935],[92.4468,27.73416],[92.44093,27.73943],[92.43588,27.73866]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"243","area_level":"District","area_name":"West Siang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.50647,28.34824],[94.48934,28.37537],[94.48544,28.39575],[94.44615,28.40357],[94.43473,28.37359],[94.41332,28.35788],[94.40163,28.33855],[94.40326,28.3278],[94.38616,28.31684],[94.37762,28.30891],[94.37485,28.29495],[94.38991,28.27854],[94.3927,28.27362],[94.39162,28.26577],[94.4015,28.25926],[94.41702,28.25419],[94.40417,28.2529],[94.38761,28.25894],[94.38346,28.25797],[94.36927,28.24411],[94.36743,28.2354],[94.36777,28.21145],[94.3565,28.19849],[94.36075,28.19047],[94.37448,28.18105],[94.37661,28.17652],[94.37464,28.16798],[94.37779,28.15862],[94.39148,28.14187],[94.39187,28.13646],[94.38653,28.12102],[94.39768,28.1047],[94.39481,28.08876],[94.39052,28.08406],[94.39184,28.08268],[94.39932,28.07993],[94.40745,28.07221],[94.40832,28.06912],[94.42565,28.06259],[94.43934,28.06087],[94.46709,28.04873],[94.47536,28.03929],[94.48084,28.0233],[94.48424,28.02172],[94.50611,28.05564],[94.53324,28.04922],[94.5675,28.04922],[94.5932,28.05279],[94.6032,28.06207],[94.62533,28.05564],[94.64032,28.04351],[94.66887,28.04137],[94.69957,28.01924],[94.73811,28.00924],[94.75239,28.01138],[94.79094,27.98711],[94.81973,27.98592],[94.89746,28.01691],[94.90648,28.01635],[94.90863,28.01982],[94.90387,28.02594],[94.90566,28.02884],[94.91188,28.03468],[94.92349,28.04168],[94.93018,28.04937],[94.92432,28.05325],[94.9214,28.05978],[94.90829,28.06717],[94.90374,28.07242],[94.90305,28.07844],[94.90833,28.08057],[94.91015,28.08451],[94.91385,28.08682],[94.91445,28.09144],[94.91819,28.09301],[94.92877,28.09268],[94.92834,28.09453],[94.93307,28.10513],[94.94382,28.1163],[94.94338,28.12074],[94.93398,28.12161],[94.92816,28.1251],[94.9279,28.12697],[94.918,28.12705],[94.91246,28.13222],[94.9109,28.13662],[94.90524,28.13952],[94.90354,28.14491],[94.89806,28.1478],[94.89654,28.15333],[94.89832,28.15521],[94.89945,28.16373],[94.89825,28.17376],[94.89946,28.17803],[94.87545,28.20531],[94.86871,28.20845],[94.87131,28.2168],[94.83662,28.21928],[94.80045,28.18597],[94.77476,28.18692],[94.72717,28.22213],[94.691,28.21642],[94.66054,28.2069],[94.64151,28.16598],[94.63008,28.15456],[94.61486,28.1498],[94.6164,28.18335],[94.60498,28.20238],[94.6164,28.23094],[94.61355,28.25759],[94.59642,28.27686],[94.58,28.28257],[94.56144,28.32683],[94.55501,28.33183],[94.5286,28.33183],[94.50647,28.34824]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"244","area_level":"District","area_name":"Dimapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.96695,25.90626],[93.96107,25.90123],[93.95977,25.90211],[93.95166,25.89857],[93.94501,25.89764],[93.94432,25.89552],[93.93797,25.89631],[93.93542,25.89445],[93.93398,25.88525],[93.916,25.8837],[93.91088,25.87945],[93.91157,25.87652],[93.90751,25.87252],[93.90195,25.87085],[93.89604,25.85786],[93.88997,25.85864],[93.88654,25.84832],[93.8818,25.84335],[93.87611,25.84248],[93.86918,25.85093],[93.85857,25.85369],[93.85226,25.85823],[93.8397,25.85661],[93.83048,25.84925],[93.82972,25.84651],[93.82526,25.8444],[93.82115,25.83874],[93.81639,25.82261],[93.8063,25.81689],[93.80384,25.81142],[93.79547,25.80893],[93.79005,25.81123],[93.78751,25.81576],[93.78709,25.82216],[93.78424,25.82617],[93.78479,25.82903],[93.78033,25.83543],[93.78145,25.8395],[93.78036,25.84086],[93.77816,25.84012],[93.77782,25.84241],[93.78111,25.84459],[93.77754,25.84981],[93.78113,25.85401],[93.77853,25.85687],[93.78141,25.85649],[93.78443,25.85842],[93.78497,25.86426],[93.78984,25.86781],[93.78895,25.87011],[93.78517,25.87005],[93.78735,25.87688],[93.78476,25.87995],[93.78416,25.88434],[93.7892,25.88967],[93.79203,25.88914],[93.79205,25.89134],[93.79537,25.89238],[93.79352,25.89556],[93.79401,25.89952],[93.79568,25.90024],[93.79567,25.90651],[93.79201,25.9066],[93.79426,25.90756],[93.7943,25.91266],[93.79216,25.91291],[93.79186,25.91556],[93.78872,25.91689],[93.79052,25.92006],[93.78915,25.92226],[93.79099,25.92623],[93.78901,25.92806],[93.78998,25.92975],[93.78735,25.93013],[93.7879,25.93146],[93.78647,25.9321],[93.78989,25.93392],[93.78674,25.93821],[93.78726,25.94389],[93.78463,25.94387],[93.78734,25.94658],[93.78589,25.94967],[93.78327,25.95041],[93.78032,25.95648],[93.7769,25.95812],[93.77861,25.9603],[93.77509,25.96139],[93.77446,25.96553],[93.77715,25.96644],[93.77719,25.96824],[93.77358,25.97048],[93.77142,25.96799],[93.76545,25.96975],[93.76458,25.96853],[93.76814,25.96742],[93.77003,25.96126],[93.76952,25.95875],[93.76355,25.95937],[93.76823,25.95359],[93.76796,25.95101],[93.76419,25.95085],[93.76421,25.95444],[93.76181,25.95114],[93.75865,25.95262],[93.75846,25.94551],[93.75293,25.94667],[93.75246,25.94212],[93.75038,25.94087],[93.74714,25.94318],[93.74512,25.94234],[93.7462,25.9387],[93.75202,25.93596],[93.75131,25.93281],[93.74764,25.93492],[93.73953,25.93179],[93.73953,25.92982],[93.73655,25.92767],[93.73864,25.92532],[93.73703,25.92515],[93.73615,25.92276],[93.73397,25.92389],[93.72821,25.92058],[93.71869,25.91985],[93.71362,25.91681],[93.70663,25.91883],[93.70545,25.91492],[93.70088,25.91066],[93.69398,25.91172],[93.68476,25.9037],[93.68153,25.90439],[93.70208,25.85154],[93.71432,25.84451],[93.71183,25.84414],[93.70781,25.84781],[93.70088,25.84327],[93.69965,25.84551],[93.70113,25.84957],[93.69923,25.84657],[93.69469,25.84799],[93.69143,25.84385],[93.6883,25.84595],[93.68565,25.84367],[93.69022,25.84069],[93.68056,25.83835],[93.67945,25.83503],[93.68068,25.83343],[93.67863,25.82841],[93.67262,25.82764],[93.67116,25.82405],[93.66764,25.82596],[93.66829,25.82183],[93.66496,25.82318],[93.66054,25.82161],[93.65481,25.82364],[93.6516,25.81986],[93.64614,25.82238],[93.64651,25.81973],[93.64431,25.8187],[93.64347,25.81577],[93.63816,25.81563],[93.6386,25.80979],[93.6331,25.81138],[93.63495,25.80927],[93.6317,25.80664],[93.63289,25.80276],[93.62951,25.80156],[93.6247,25.80256],[93.62776,25.79888],[93.62669,25.79715],[93.6234,25.7973],[93.62675,25.78961],[93.6232,25.78733],[93.62252,25.78497],[93.6185,25.7837],[93.6201,25.78023],[93.61742,25.77599],[93.61272,25.77656],[93.61029,25.77375],[93.60504,25.7749],[93.60265,25.76508],[93.60056,25.76516],[93.59851,25.7688],[93.59167,25.76253],[93.58951,25.76606],[93.58592,25.76615],[93.58234,25.76055],[93.58548,25.75797],[93.57775,25.75449],[93.57683,25.75687],[93.56794,25.75843],[93.56827,25.75681],[93.57243,25.75644],[93.57322,25.75412],[93.57029,25.75276],[93.56833,25.75499],[93.56633,25.75475],[93.56697,25.74725],[93.56351,25.74472],[93.56151,25.73777],[93.5543,25.73783],[93.55526,25.73363],[93.54958,25.73274],[93.54943,25.72932],[93.54588,25.73147],[93.5427,25.73117],[93.54293,25.72547],[93.53955,25.72256],[93.54272,25.72144],[93.54319,25.71909],[93.54735,25.71705],[93.55236,25.71147],[93.55949,25.71076],[93.56302,25.70763],[93.57003,25.70839],[93.5744,25.71471],[93.57336,25.70485],[93.57542,25.69841],[93.5777,25.69968],[93.57861,25.69823],[93.57744,25.69433],[93.58333,25.6924],[93.58799,25.69292],[93.59191,25.68551],[93.58883,25.68218],[93.59033,25.67714],[93.58512,25.67234],[93.58116,25.67101],[93.58133,25.66926],[93.58452,25.66775],[93.58771,25.66965],[93.59102,25.66928],[93.59166,25.66631],[93.58962,25.66551],[93.58768,25.65628],[93.59172,25.6534],[93.60144,25.65067],[93.6051,25.65353],[93.61332,25.6543],[93.61454,25.65606],[93.62081,25.6579],[93.62212,25.66018],[93.63234,25.66199],[93.63594,25.66064],[93.64136,25.66753],[93.64086,25.66896],[93.64328,25.66975],[93.6495,25.67703],[93.64657,25.6791],[93.65118,25.68108],[93.64954,25.68401],[93.64742,25.68447],[93.64841,25.68671],[93.65059,25.68492],[93.65342,25.68568],[93.65545,25.69018],[93.66027,25.69092],[93.66855,25.69629],[93.66959,25.69478],[93.67408,25.69554],[93.67739,25.69412],[93.68276,25.69795],[93.68619,25.70258],[93.68519,25.70685],[93.68913,25.70971],[93.69267,25.71844],[93.68897,25.72046],[93.68834,25.72405],[93.69008,25.72974],[93.68832,25.74141],[93.69069,25.74566],[93.68759,25.75067],[93.68951,25.75509],[93.6876,25.75494],[93.68776,25.75773],[93.68202,25.76113],[93.68203,25.7637],[93.68503,25.76729],[93.68501,25.77047],[93.69118,25.76626],[93.7009,25.76697],[93.70361,25.76902],[93.71103,25.76419],[93.71673,25.76416],[93.71966,25.75916],[93.71906,25.75538],[93.73079,25.75813],[93.73183,25.75522],[93.72692,25.75163],[93.72995,25.75068],[93.72898,25.74681],[93.73168,25.74421],[93.73072,25.74339],[93.7367,25.73933],[93.73639,25.73473],[93.73398,25.73131],[93.74258,25.72998],[93.74263,25.72734],[93.74657,25.72518],[93.74338,25.72105],[93.74442,25.71367],[93.75495,25.70838],[93.76073,25.70815],[93.76914,25.70335],[93.77488,25.69741],[93.77763,25.69195],[93.78698,25.68479],[93.79216,25.673],[93.79398,25.68212],[93.79776,25.68272],[93.79797,25.68844],[93.80059,25.69103],[93.80044,25.69422],[93.80533,25.69651],[93.80639,25.69991],[93.80975,25.70222],[93.81649,25.70307],[93.81824,25.71078],[93.81655,25.71231],[93.82097,25.71739],[93.83634,25.70157],[93.84001,25.69281],[93.85365,25.68631],[93.86038,25.68589],[93.87209,25.67578],[93.88093,25.66236],[93.88725,25.65782],[93.88898,25.65271],[93.89205,25.65019],[93.89637,25.63777],[93.90642,25.62936],[93.912,25.61855],[93.91572,25.61427],[93.91787,25.61745],[93.9223,25.61657],[93.92448,25.6201],[93.92804,25.62071],[93.9354,25.63291],[93.93641,25.63772],[93.94979,25.64725],[93.95403,25.65374],[93.95325,25.65576],[93.94886,25.65825],[93.93948,25.65663],[93.94683,25.66638],[93.94669,25.67041],[93.94285,25.67928],[93.93128,25.68319],[93.92959,25.68566],[93.92884,25.69529],[93.92428,25.69841],[93.92011,25.69817],[93.91865,25.7022],[93.91471,25.70626],[93.90688,25.70885],[93.90461,25.71216],[93.89508,25.70939],[93.89303,25.71237],[93.88927,25.71325],[93.88645,25.71593],[93.88385,25.7207],[93.87495,25.72531],[93.87763,25.73235],[93.88551,25.73731],[93.89065,25.73848],[93.89682,25.72933],[93.90243,25.72651],[93.90585,25.72741],[93.91181,25.7232],[93.91867,25.72178],[93.92066,25.72428],[93.92982,25.71634],[93.93729,25.71549],[93.94696,25.72003],[93.96063,25.71455],[93.96209,25.71713],[93.96698,25.71956],[93.97184,25.72789],[93.97527,25.72882],[93.98199,25.73483],[93.98286,25.74151],[93.98545,25.74661],[93.98885,25.74818],[93.98955,25.75465],[93.985,25.75987],[93.98366,25.76382],[93.98034,25.76621],[93.98028,25.76895],[93.97754,25.77222],[93.97975,25.774],[93.98243,25.78063],[93.98481,25.78185],[93.98399,25.78431],[93.98635,25.78855],[93.98846,25.78925],[93.98923,25.79234],[93.97968,25.8128],[93.97718,25.82331],[93.97118,25.82942],[93.97208,25.83227],[93.97061,25.84066],[93.97278,25.85404],[93.97523,25.85831],[93.97373,25.86273],[93.97514,25.86852],[93.98323,25.87046],[93.98957,25.878],[93.99286,25.8781],[93.99464,25.88118],[93.98943,25.88845],[93.98544,25.88883],[93.98695,25.89097],[93.98632,25.89423],[93.98778,25.89495],[93.98626,25.89663],[93.98125,25.89599],[93.98062,25.89349],[93.97408,25.89401],[93.96889,25.89814],[93.9698,25.90147],[93.96725,25.90156],[93.96876,25.90394],[93.96695,25.90626]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"245","area_level":"District","area_name":"Kohima","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.25573,26.00435],[94.25401,26.00577],[94.24918,26.00509],[94.24541,26.00189],[94.23603,26.00329],[94.22328,26.01598],[94.22265,26.01876],[94.21464,26.02177],[94.21063,26.01753],[94.21115,26.00888],[94.20423,26.00292],[94.20095,26.00219],[94.19952,25.99734],[94.19267,25.99124],[94.19266,25.98943],[94.18557,25.99016],[94.18164,25.98736],[94.17635,25.98633],[94.17349,25.98089],[94.17056,25.97972],[94.1687,25.97629],[94.16071,25.97295],[94.15998,25.97457],[94.15785,25.9742],[94.15342,25.97681],[94.15194,25.97966],[94.14942,25.97981],[94.14415,25.9856],[94.14086,25.98682],[94.13879,25.98951],[94.13947,25.99234],[94.12402,25.99093],[94.11132,25.98755],[94.10656,25.98941],[94.10013,25.98811],[94.09545,25.99149],[94.08382,25.98623],[94.08271,25.98088],[94.07952,25.97907],[94.07985,25.97683],[94.07423,25.97306],[94.07128,25.97293],[94.06589,25.98025],[94.04455,25.97382],[94.04019,25.97016],[94.03588,25.96328],[94.02781,25.95883],[94.02815,25.95721],[94.02169,25.95108],[94.01898,25.94427],[94.01974,25.94098],[94.01321,25.93934],[94.01006,25.93623],[94.00683,25.9363],[94.00648,25.93381],[94.00335,25.93262],[94.00264,25.93042],[93.99808,25.93175],[93.99396,25.9282],[93.99027,25.92772],[93.99474,25.92662],[93.99382,25.92518],[93.99147,25.92573],[93.99111,25.92213],[93.98788,25.92155],[93.98298,25.92332],[93.97945,25.92236],[93.97962,25.92601],[93.97801,25.92662],[93.9787,25.91673],[93.97121,25.91276],[93.96695,25.90626],[93.96876,25.90394],[93.96712,25.90188],[93.96962,25.90175],[93.96889,25.89814],[93.97579,25.89345],[93.98062,25.89349],[93.98125,25.89599],[93.98626,25.89663],[93.98778,25.89495],[93.98632,25.89423],[93.98695,25.89097],[93.98544,25.88883],[93.98943,25.88845],[93.99464,25.88118],[93.99286,25.8781],[93.98957,25.878],[93.98323,25.87046],[93.97514,25.86852],[93.97373,25.86273],[93.97523,25.85831],[93.97278,25.85404],[93.97061,25.84066],[93.97208,25.83227],[93.97118,25.82942],[93.97718,25.82331],[93.97968,25.8128],[93.98923,25.79234],[93.98846,25.78925],[93.98635,25.78855],[93.98399,25.78431],[93.98481,25.78185],[93.98243,25.78063],[93.97975,25.774],[93.97754,25.77222],[93.98028,25.76895],[93.98034,25.76621],[93.98366,25.76382],[93.985,25.75987],[93.98955,25.75465],[93.98885,25.74818],[93.98545,25.74661],[93.98286,25.74151],[93.98199,25.73483],[93.97527,25.72882],[93.97184,25.72789],[93.96698,25.71956],[93.96209,25.71713],[93.96063,25.71455],[93.94696,25.72003],[93.93729,25.71549],[93.92982,25.71634],[93.92066,25.72428],[93.91867,25.72178],[93.91181,25.7232],[93.90585,25.72741],[93.90243,25.72651],[93.89682,25.72933],[93.89065,25.73848],[93.88551,25.73731],[93.87763,25.73235],[93.87495,25.72531],[93.88385,25.7207],[93.88645,25.71593],[93.88927,25.71325],[93.89303,25.71237],[93.89508,25.70939],[93.90358,25.71252],[93.90688,25.70885],[93.91471,25.70626],[93.91865,25.7022],[93.92011,25.69817],[93.92428,25.69841],[93.92884,25.69529],[93.92959,25.68566],[93.93128,25.68319],[93.94285,25.67928],[93.94669,25.67041],[93.94683,25.66638],[93.93948,25.65663],[93.95054,25.65801],[93.95403,25.65374],[93.9466,25.644],[93.93641,25.63772],[93.9354,25.63291],[93.92738,25.62026],[93.92865,25.61659],[93.93271,25.61333],[93.93737,25.60178],[93.94422,25.59679],[93.94787,25.59646],[93.95501,25.59206],[93.95944,25.59299],[93.96602,25.59936],[93.97362,25.59975],[93.97906,25.5962],[93.9686,25.58728],[93.96894,25.58303],[93.96573,25.57386],[93.9667,25.56845],[93.9764,25.56656],[93.99671,25.56953],[94.00353,25.56548],[94.0065,25.56693],[94.00838,25.57093],[94.00394,25.58318],[94.00378,25.58658],[94.00651,25.59105],[94.01086,25.59177],[94.02162,25.589],[94.02336,25.58359],[94.02949,25.58029],[94.03096,25.57707],[94.03524,25.5786],[94.03507,25.57543],[94.03969,25.57304],[94.04206,25.57651],[94.05017,25.5723],[94.06071,25.56187],[94.06541,25.55448],[94.07603,25.55706],[94.08192,25.55519],[94.09091,25.54187],[94.09213,25.53715],[94.08847,25.5334],[94.08805,25.52815],[94.10199,25.52429],[94.1346,25.51902],[94.1411,25.52295],[94.14406,25.52699],[94.14876,25.54314],[94.15601,25.55054],[94.15939,25.5452],[94.16377,25.54228],[94.17541,25.54543],[94.17862,25.54849],[94.18769,25.54616],[94.19209,25.54841],[94.1967,25.55823],[94.19387,25.56221],[94.19382,25.56945],[94.19522,25.57376],[94.19732,25.57429],[94.19678,25.58186],[94.20723,25.59204],[94.20701,25.59542],[94.212,25.60043],[94.21086,25.60324],[94.2144,25.61004],[94.21234,25.61315],[94.2096,25.61336],[94.20822,25.61857],[94.2105,25.62491],[94.20832,25.62867],[94.21113,25.63127],[94.21421,25.63127],[94.21596,25.63625],[94.21495,25.63958],[94.22026,25.65684],[94.21803,25.65923],[94.21941,25.66606],[94.21393,25.66884],[94.21326,25.6725],[94.21753,25.6766],[94.21678,25.67878],[94.21893,25.68315],[94.23105,25.6947],[94.23187,25.69847],[94.22869,25.70244],[94.23158,25.705],[94.23344,25.70461],[94.23212,25.70931],[94.23036,25.70917],[94.23173,25.71155],[94.23009,25.71397],[94.23776,25.7266],[94.2434,25.73284],[94.24613,25.73854],[94.24611,25.74551],[94.24864,25.74891],[94.25271,25.75047],[94.25895,25.75912],[94.2632,25.77263],[94.26624,25.77495],[94.26491,25.77753],[94.26715,25.77807],[94.26716,25.78103],[94.27108,25.7872],[94.27553,25.78989],[94.2762,25.79322],[94.27288,25.79478],[94.27655,25.79596],[94.27633,25.80007],[94.28227,25.80359],[94.28136,25.80763],[94.27754,25.81057],[94.26745,25.8134],[94.26063,25.80913],[94.26156,25.80695],[94.25891,25.80616],[94.26005,25.8034],[94.25607,25.80502],[94.25425,25.81135],[94.24751,25.81736],[94.24833,25.81961],[94.24631,25.82298],[94.24265,25.82793],[94.23067,25.83478],[94.22918,25.84145],[94.22938,25.84582],[94.23132,25.84895],[94.22937,25.85231],[94.24139,25.87192],[94.23984,25.88082],[94.24078,25.89273],[94.2486,25.89907],[94.24667,25.91576],[94.248,25.92106],[94.25073,25.92073],[94.25244,25.9232],[94.25657,25.92169],[94.25722,25.91934],[94.26099,25.91958],[94.2607,25.92172],[94.26417,25.92252],[94.27189,25.9203],[94.272,25.92184],[94.28162,25.92551],[94.28298,25.9294],[94.28763,25.92859],[94.28977,25.93273],[94.29569,25.93648],[94.29549,25.93902],[94.29877,25.94025],[94.29466,25.94622],[94.29362,25.9529],[94.2895,25.96016],[94.29006,25.96488],[94.28716,25.96522],[94.28591,25.96782],[94.28746,25.97063],[94.28676,25.97931],[94.28288,25.98303],[94.26917,25.98792],[94.26496,25.99586],[94.25573,26.00435]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"246","area_level":"District","area_name":"Mokokchung","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.70348,26.42826],[94.70319,26.43067],[94.70097,26.43136],[94.70569,26.43454],[94.70739,26.43794],[94.71169,26.43755],[94.70816,26.44217],[94.71067,26.44556],[94.70477,26.44754],[94.70368,26.45172],[94.7073,26.45175],[94.70791,26.45396],[94.70535,26.45845],[94.70162,26.45941],[94.70205,26.46238],[94.6989,26.46376],[94.69915,26.46732],[94.69049,26.47393],[94.6905,26.47702],[94.68826,26.47943],[94.69378,26.48673],[94.6943,26.49735],[94.6897,26.51165],[94.68494,26.51619],[94.68658,26.51891],[94.68609,26.52354],[94.69438,26.53057],[94.6967,26.5368],[94.70321,26.53837],[94.7138,26.55268],[94.71359,26.5563],[94.71913,26.56229],[94.72585,26.56565],[94.72714,26.57358],[94.72499,26.57582],[94.72628,26.57998],[94.72478,26.58273],[94.72911,26.58265],[94.72773,26.58504],[94.73049,26.58904],[94.73353,26.59052],[94.73297,26.59468],[94.73119,26.59581],[94.73312,26.60096],[94.73008,26.60199],[94.73081,26.60532],[94.72914,26.60738],[94.72007,26.61021],[94.71816,26.61548],[94.72178,26.61939],[94.72154,26.62237],[94.70665,26.63821],[94.70416,26.63941],[94.68613,26.63973],[94.68381,26.64406],[94.67768,26.64824],[94.66693,26.64829],[94.67045,26.65134],[94.67107,26.65389],[94.67591,26.65403],[94.67979,26.65712],[94.67935,26.6584],[94.68136,26.65855],[94.68178,26.66028],[94.68273,26.65933],[94.68316,26.66079],[94.68489,26.66033],[94.68559,26.6622],[94.68838,26.66293],[94.68965,26.66055],[94.69093,26.6608],[94.70223,26.66845],[94.70698,26.67526],[94.71855,26.68082],[94.71852,26.68624],[94.72634,26.69263],[94.72765,26.69539],[94.72375,26.69848],[94.74892,26.69812],[94.74896,26.70268],[94.74751,26.70415],[94.74973,26.7115],[94.74343,26.73142],[94.74884,26.73151],[94.75211,26.72836],[94.75666,26.7296],[94.74874,26.74137],[94.73886,26.74584],[94.73625,26.74969],[94.73662,26.76387],[94.70717,26.74631],[94.69235,26.73193],[94.65302,26.71875],[94.64302,26.7207],[94.63582,26.71709],[94.62462,26.71542],[94.61913,26.71199],[94.6208,26.72279],[94.61582,26.72656],[94.60806,26.72883],[94.60964,26.73694],[94.60769,26.73721],[94.60608,26.73389],[94.59707,26.73455],[94.59355,26.73146],[94.59562,26.72629],[94.59215,26.72488],[94.59292,26.72325],[94.59109,26.7206],[94.59416,26.71908],[94.60153,26.71911],[94.60241,26.71653],[94.60109,26.71455],[94.60334,26.71235],[94.60228,26.71162],[94.5973,26.71679],[94.59337,26.71497],[94.59252,26.70496],[94.59444,26.70226],[94.59153,26.70016],[94.59388,26.6972],[94.58246,26.69739],[94.57732,26.70066],[94.57209,26.69457],[94.56788,26.69292],[94.5664,26.69007],[94.56747,26.68748],[94.57157,26.68664],[94.56649,26.68356],[94.55939,26.68643],[94.56243,26.69553],[94.56098,26.70056],[94.56235,26.70507],[94.55503,26.70507],[94.5503,26.70172],[94.54791,26.70632],[94.54519,26.70523],[94.53926,26.70618],[94.5336,26.70131],[94.52654,26.69895],[94.52421,26.69576],[94.5207,26.69921],[94.52081,26.69416],[94.5177,26.68732],[94.51758,26.68193],[94.51329,26.68009],[94.51038,26.68477],[94.50825,26.6853],[94.50905,26.68023],[94.50514,26.67865],[94.50147,26.67229],[94.49267,26.66589],[94.48506,26.66785],[94.46028,26.66163],[94.45845,26.65354],[94.4541,26.65391],[94.45315,26.65255],[94.45908,26.64461],[94.4598,26.63685],[94.46549,26.63306],[94.45793,26.6336],[94.4536,26.63194],[94.45515,26.63547],[94.45273,26.63407],[94.45128,26.63629],[94.4356,26.62204],[94.42574,26.61715],[94.40292,26.61057],[94.40556,26.60563],[94.40507,26.60389],[94.40259,26.60313],[94.40188,26.59356],[94.40767,26.59163],[94.40749,26.5879],[94.40938,26.5877],[94.40959,26.58483],[94.4122,26.58297],[94.41163,26.57943],[94.41338,26.57719],[94.40993,26.57652],[94.41125,26.57215],[94.40585,26.56788],[94.40621,26.56271],[94.40411,26.56143],[94.40657,26.56186],[94.40734,26.56033],[94.40342,26.55827],[94.40648,26.55575],[94.402,26.55467],[94.40498,26.5542],[94.40627,26.54919],[94.40123,26.54828],[94.4062,26.54584],[94.40616,26.54403],[94.40308,26.54525],[94.40111,26.54289],[94.3966,26.54271],[94.40272,26.54135],[94.40265,26.53947],[94.3999,26.5403],[94.39777,26.53862],[94.40088,26.53415],[94.39819,26.53525],[94.39525,26.53361],[94.39759,26.52988],[94.39577,26.52733],[94.39326,26.52738],[94.39142,26.53035],[94.39,26.52691],[94.38544,26.53053],[94.3852,26.52578],[94.38095,26.5258],[94.3782,26.52117],[94.37614,26.52178],[94.37565,26.51818],[94.37336,26.51711],[94.37608,26.51567],[94.37626,26.51382],[94.37508,26.51282],[94.3731,26.51494],[94.3713,26.51443],[94.37468,26.50845],[94.37217,26.50604],[94.36932,26.50466],[94.36843,26.50596],[94.36563,26.50354],[94.36271,26.50566],[94.35748,26.50518],[94.35421,26.50306],[94.34779,26.50446],[94.34763,26.5032],[94.35064,26.50242],[94.35296,26.49928],[94.34957,26.49626],[94.34947,26.49377],[94.34665,26.49207],[94.35011,26.49243],[94.35293,26.49025],[94.34927,26.4911],[94.34686,26.486],[94.34469,26.48875],[94.34386,26.48471],[94.34081,26.48554],[94.33969,26.48065],[94.33631,26.48205],[94.33394,26.47933],[94.332,26.48058],[94.33041,26.4795],[94.32552,26.48195],[94.32647,26.47544],[94.3216,26.47566],[94.31956,26.47421],[94.32257,26.47244],[94.32128,26.47102],[94.32385,26.46551],[94.31844,26.46528],[94.31685,26.45852],[94.31525,26.45793],[94.31032,26.44747],[94.30694,26.44455],[94.30561,26.43992],[94.29874,26.43768],[94.29879,26.43051],[94.29358,26.42298],[94.29319,26.41959],[94.29019,26.41804],[94.29183,26.41522],[94.29023,26.40988],[94.29153,26.4062],[94.29722,26.40607],[94.30383,26.39488],[94.30394,26.39125],[94.30025,26.38527],[94.30126,26.37727],[94.30908,26.38372],[94.3092,26.38869],[94.3111,26.39157],[94.31731,26.39506],[94.32365,26.4029],[94.32714,26.39973],[94.32929,26.39024],[94.33749,26.38536],[94.34132,26.37866],[94.34504,26.37844],[94.35057,26.37236],[94.35336,26.36426],[94.35853,26.35698],[94.35226,26.34867],[94.35284,26.34327],[94.35043,26.33975],[94.34787,26.33885],[94.3473,26.33661],[94.34277,26.33626],[94.34348,26.33153],[94.3478,26.333],[94.3487,26.33572],[94.35183,26.33212],[94.35503,26.33284],[94.35574,26.3357],[94.35863,26.33463],[94.35975,26.33691],[94.36599,26.33674],[94.36254,26.33112],[94.36096,26.33137],[94.35814,26.32755],[94.35791,26.32467],[94.3563,26.32469],[94.35328,26.31698],[94.35496,26.31328],[94.35186,26.31005],[94.35386,26.30867],[94.35432,26.30506],[94.35716,26.30337],[94.35488,26.29343],[94.35935,26.26892],[94.35586,26.26532],[94.35473,26.25823],[94.34926,26.25385],[94.34327,26.2443],[94.335,26.2406],[94.34139,26.23866],[94.34679,26.24269],[94.35333,26.24089],[94.35599,26.24204],[94.35819,26.23831],[94.36402,26.23743],[94.36979,26.2316],[94.37761,26.22832],[94.38367,26.22884],[94.38479,26.22354],[94.38002,26.20713],[94.37124,26.19305],[94.37726,26.1964],[94.38498,26.19685],[94.39138,26.20242],[94.39574,26.202],[94.39904,26.20672],[94.40546,26.2117],[94.40934,26.2103],[94.41867,26.21256],[94.42476,26.21102],[94.42687,26.20811],[94.43114,26.20621],[94.43676,26.207],[94.44088,26.20513],[94.44379,26.20698],[94.44572,26.20622],[94.44589,26.2098],[94.44409,26.20967],[94.44483,26.21201],[94.44353,26.21302],[94.44491,26.21568],[94.4441,26.21824],[94.44879,26.22547],[94.4519,26.22602],[94.45491,26.23083],[94.4542,26.23319],[94.4591,26.23615],[94.45609,26.23915],[94.45463,26.24471],[94.45882,26.24871],[94.45976,26.25467],[94.46734,26.27393],[94.47505,26.28093],[94.47887,26.29356],[94.48328,26.29277],[94.48669,26.2792],[94.49115,26.27505],[94.49587,26.27428],[94.49714,26.2682],[94.49894,26.26808],[94.49761,26.26016],[94.49954,26.25661],[94.49821,26.25494],[94.50072,26.25282],[94.506,26.25266],[94.50593,26.24485],[94.50985,26.24284],[94.5109,26.24025],[94.51401,26.24152],[94.51599,26.23945],[94.51374,26.23824],[94.5122,26.23917],[94.5135,26.2359],[94.50868,26.23263],[94.50863,26.23498],[94.50591,26.23492],[94.50555,26.23193],[94.50224,26.23239],[94.50014,26.22924],[94.49775,26.22922],[94.49888,26.2273],[94.50169,26.22743],[94.5008,26.22534],[94.49741,26.22464],[94.49827,26.2192],[94.4962,26.21918],[94.49922,26.21642],[94.49915,26.21429],[94.50238,26.21523],[94.51049,26.2125],[94.52612,26.21218],[94.53115,26.217],[94.53748,26.20752],[94.54375,26.20627],[94.54557,26.20415],[94.55035,26.20423],[94.55353,26.2019],[94.57203,26.20715],[94.58571,26.22162],[94.58705,26.22713],[94.58308,26.23849],[94.58026,26.24104],[94.57735,26.24005],[94.57289,26.24235],[94.56614,26.25476],[94.56274,26.2566],[94.55981,26.25593],[94.56338,26.26696],[94.56541,26.2682],[94.56113,26.27112],[94.56371,26.27247],[94.56141,26.27879],[94.5593,26.27933],[94.56064,26.28063],[94.55939,26.28265],[94.56352,26.28449],[94.56436,26.28777],[94.5727,26.29226],[94.57293,26.28957],[94.57562,26.28739],[94.58126,26.28954],[94.5822,26.29216],[94.57919,26.29468],[94.58111,26.29656],[94.58329,26.29579],[94.58276,26.30097],[94.58542,26.29983],[94.58782,26.30125],[94.59277,26.29587],[94.59079,26.30188],[94.5944,26.30254],[94.5963,26.29994],[94.59809,26.30483],[94.59554,26.30622],[94.59938,26.31002],[94.59652,26.31241],[94.6022,26.31761],[94.60934,26.32097],[94.61066,26.32333],[94.61384,26.32214],[94.6145,26.32646],[94.61911,26.32584],[94.62114,26.3276],[94.62312,26.32606],[94.62878,26.3342],[94.63155,26.33278],[94.63359,26.33397],[94.63363,26.33229],[94.63763,26.32986],[94.63859,26.33674],[94.64217,26.3359],[94.64689,26.33902],[94.65064,26.33858],[94.65302,26.34187],[94.65074,26.34293],[94.6525,26.34599],[94.6508,26.34775],[94.65751,26.34757],[94.65572,26.35025],[94.65128,26.35162],[94.6553,26.35767],[94.65325,26.35861],[94.65323,26.3616],[94.65711,26.36265],[94.65926,26.3665],[94.66216,26.36579],[94.66374,26.37149],[94.66309,26.37305],[94.65932,26.37173],[94.65747,26.37589],[94.66109,26.37782],[94.66263,26.38083],[94.6701,26.37678],[94.671,26.3776],[94.66833,26.37959],[94.67091,26.38238],[94.67813,26.38145],[94.67753,26.38643],[94.68043,26.38687],[94.67944,26.38954],[94.68892,26.39633],[94.68581,26.39847],[94.68613,26.40282],[94.68998,26.4035],[94.68691,26.40671],[94.69331,26.41292],[94.70224,26.40833],[94.69963,26.41843],[94.70059,26.42045],[94.70319,26.42083],[94.70463,26.42531],[94.70348,26.42826]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"247","area_level":"District","area_name":"Mon","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.21117,26.93137],[95.20602,26.95112],[95.21019,26.95324],[95.20355,26.95706],[95.21184,26.96484],[95.20558,26.96957],[95.20337,26.97333],[95.20204,26.97668],[95.20677,26.97713],[95.20459,26.97921],[95.19726,26.98008],[95.19204,26.98453],[95.19313,26.99237],[95.19668,26.9939],[95.19696,27.00079],[95.19452,27.01027],[95.19252,27.03521],[95.15018,26.99924],[95.14476,26.99585],[95.1388,26.99485],[95.12421,26.98544],[95.11196,26.98066],[95.10792,26.97594],[95.10608,26.96549],[95.10181,26.96179],[95.08504,26.95164],[95.06786,26.9483],[95.04969,26.93876],[95.04408,26.93874],[95.03413,26.9356],[95.01676,26.92106],[95.00415,26.92089],[95.00025,26.91951],[94.99129,26.92081],[94.98998,26.91421],[94.98262,26.913],[94.9765,26.92128],[94.96718,26.92351],[94.96124,26.93712],[94.9575,26.93748],[94.9555,26.9401],[94.95324,26.93761],[94.94186,26.93531],[94.94026,26.93356],[94.93085,26.93256],[94.93085,26.9369],[94.92561,26.94079],[94.92396,26.94651],[94.91766,26.94222],[94.91437,26.93677],[94.90245,26.93467],[94.89782,26.93125],[94.88941,26.92888],[94.87379,26.91772],[94.86601,26.90873],[94.86523,26.90398],[94.85845,26.89221],[94.85784,26.88848],[94.85107,26.8811],[94.85012,26.87459],[94.8432,26.86851],[94.83647,26.86877],[94.83454,26.86035],[94.82866,26.85532],[94.8242,26.85424],[94.81762,26.84772],[94.82105,26.84107],[94.81945,26.83759],[94.81562,26.8373],[94.81317,26.83365],[94.81446,26.81954],[94.80646,26.81842],[94.80622,26.81513],[94.80379,26.81367],[94.797,26.81509],[94.79507,26.81403],[94.79565,26.81022],[94.80165,26.8078],[94.80373,26.80313],[94.80063,26.79995],[94.79046,26.79947],[94.78899,26.79599],[94.79323,26.79495],[94.80349,26.79612],[94.81044,26.79235],[94.81328,26.79232],[94.80886,26.78492],[94.81178,26.78352],[94.81512,26.78436],[94.81619,26.77881],[94.81396,26.77408],[94.80677,26.7745],[94.79518,26.77065],[94.79378,26.76808],[94.79839,26.76511],[94.80124,26.7687],[94.80495,26.76781],[94.80456,26.76411],[94.79803,26.76091],[94.80273,26.75526],[94.80437,26.74915],[94.80727,26.74732],[94.80838,26.74444],[94.81581,26.74357],[94.82564,26.73122],[94.82626,26.72432],[94.83422,26.71869],[94.82566,26.71207],[94.81491,26.69584],[94.8125,26.69511],[94.80551,26.69751],[94.8065,26.69124],[94.80489,26.68924],[94.79833,26.6933],[94.79187,26.69481],[94.78814,26.69868],[94.78317,26.69964],[94.77997,26.69842],[94.78035,26.69475],[94.7901,26.68843],[94.78746,26.67799],[94.78111,26.67314],[94.78622,26.66785],[94.77949,26.65832],[94.78752,26.65503],[94.78799,26.64903],[94.78638,26.64257],[94.7883,26.63771],[94.78738,26.63305],[94.79055,26.63311],[94.79303,26.63088],[94.80366,26.63043],[94.80681,26.62586],[94.81296,26.62441],[94.81475,26.62232],[94.81923,26.62451],[94.82224,26.62236],[94.83071,26.62244],[94.83908,26.61733],[94.84076,26.61478],[94.84765,26.61259],[94.85257,26.61399],[94.85524,26.6102],[94.86038,26.614],[94.86797,26.61161],[94.87025,26.61366],[94.87167,26.60977],[94.87437,26.60906],[94.87995,26.612],[94.88339,26.61588],[94.88608,26.61051],[94.88457,26.60653],[94.89454,26.60476],[94.89401,26.60284],[94.88968,26.60373],[94.89388,26.60099],[94.89232,26.59784],[94.88865,26.59768],[94.88743,26.59576],[94.88376,26.59485],[94.88505,26.58933],[94.89003,26.59227],[94.89334,26.58949],[94.88795,26.58869],[94.8855,26.58447],[94.88059,26.58352],[94.88131,26.57942],[94.87944,26.57748],[94.88049,26.57331],[94.88327,26.57276],[94.88724,26.5661],[94.88257,26.5639],[94.88665,26.56275],[94.88804,26.55953],[94.89385,26.56021],[94.88962,26.55126],[94.88709,26.55198],[94.88554,26.55644],[94.88242,26.55385],[94.88669,26.55131],[94.88699,26.54826],[94.89124,26.54462],[94.89025,26.53776],[94.89121,26.53353],[94.894,26.53268],[94.8941,26.52664],[94.8917,26.52186],[94.89263,26.51707],[94.8908,26.51406],[94.89264,26.51159],[94.89131,26.50938],[94.89762,26.50543],[94.8942,26.49878],[94.89285,26.49919],[94.89255,26.50383],[94.89062,26.50236],[94.89044,26.49777],[94.893,26.49517],[94.89158,26.49272],[94.89367,26.49168],[94.89117,26.48634],[94.89598,26.48616],[94.89658,26.48195],[94.88919,26.47613],[94.8933,26.47663],[94.89408,26.47358],[94.89684,26.4729],[94.89662,26.46946],[94.90263,26.46432],[94.9034,26.45723],[94.90581,26.45465],[94.90213,26.45427],[94.90223,26.44982],[94.89851,26.44658],[94.90262,26.44461],[94.902,26.44222],[94.8979,26.44026],[94.90154,26.43758],[94.8982,26.43375],[94.90051,26.42992],[94.89527,26.42926],[94.89261,26.42394],[94.89659,26.42391],[94.89565,26.41863],[94.90138,26.41765],[94.9015,26.41332],[94.90627,26.41035],[94.90418,26.40715],[94.90473,26.40289],[94.9145,26.40023],[94.9099,26.39367],[94.9161,26.38516],[94.91386,26.38247],[94.90773,26.38072],[94.91061,26.37714],[94.90899,26.36523],[94.90364,26.36193],[94.89658,26.34963],[94.89976,26.34913],[94.90261,26.34615],[94.901,26.34211],[94.90229,26.33754],[94.9112,26.32527],[94.913,26.32004],[94.92903,26.31032],[94.93763,26.2987],[94.94397,26.29835],[94.96005,26.29147],[94.9698,26.29149],[94.97309,26.29406],[94.97969,26.29372],[94.99548,26.28858],[94.9997,26.28543],[95.0099,26.29637],[95.02096,26.30245],[95.02848,26.30989],[95.03157,26.31605],[95.038,26.3213],[95.03809,26.32322],[95.04045,26.32314],[95.04402,26.32772],[95.051,26.32607],[95.05524,26.32682],[95.0603,26.33103],[95.08322,26.33041],[95.09207,26.33327],[95.10085,26.33216],[95.10829,26.3361],[95.12839,26.33932],[95.12118,26.34962],[95.12318,26.35192],[95.12265,26.35809],[95.13081,26.37073],[95.13057,26.37466],[95.13219,26.37751],[95.12948,26.38454],[95.12535,26.3879],[95.12078,26.38643],[95.11753,26.39045],[95.10838,26.39528],[95.10461,26.39563],[95.09977,26.39373],[95.09645,26.40105],[95.1031,26.41244],[95.10386,26.42066],[95.0949,26.43108],[95.09408,26.43542],[95.08697,26.44119],[95.08715,26.44304],[95.08429,26.44456],[95.08429,26.44715],[95.07668,26.44586],[95.0729,26.44792],[95.06614,26.44177],[95.06295,26.44536],[95.06201,26.45044],[95.06805,26.46229],[95.07161,26.46402],[95.07276,26.47238],[95.07673,26.47645],[95.08298,26.47962],[95.08246,26.48261],[95.0846,26.48332],[95.0841,26.48524],[95.08628,26.48774],[95.09648,26.49277],[95.09934,26.49785],[95.10025,26.50579],[95.1057,26.50822],[95.11454,26.51851],[95.11617,26.524],[95.11364,26.52919],[95.11332,26.53584],[95.10774,26.53959],[95.10755,26.54154],[95.11353,26.54753],[95.12243,26.5515],[95.12296,26.55552],[95.1256,26.55809],[95.13892,26.55656],[95.13851,26.56052],[95.14138,26.56507],[95.14096,26.56741],[95.14727,26.57478],[95.14643,26.57621],[95.14786,26.57914],[95.15419,26.58314],[95.14656,26.59305],[95.1479,26.59711],[95.14661,26.601],[95.1482,26.60646],[95.14728,26.61033],[95.14893,26.61587],[95.16322,26.62166],[95.1675,26.62751],[95.16686,26.63444],[95.17126,26.63574],[95.18068,26.64276],[95.18358,26.64141],[95.18762,26.6428],[95.19178,26.64149],[95.19912,26.64246],[95.20049,26.64545],[95.2096,26.64885],[95.21405,26.65421],[95.21403,26.65705],[95.21964,26.66084],[95.22188,26.66618],[95.22924,26.67366],[95.23321,26.68109],[95.22998,26.69112],[95.23241,26.70624],[95.22598,26.71093],[95.22454,26.71792],[95.21252,26.72943],[95.21324,26.73543],[95.21736,26.74155],[95.21776,26.74564],[95.21566,26.74969],[95.21651,26.75396],[95.22048,26.75586],[95.2296,26.76606],[95.22809,26.77184],[95.24135,26.78145],[95.23816,26.78106],[95.2367,26.78331],[95.23146,26.78344],[95.21805,26.78772],[95.21162,26.79259],[95.20337,26.80594],[95.19562,26.83424],[95.1971,26.83719],[95.20299,26.84058],[95.20519,26.84502],[95.20083,26.84325],[95.19432,26.84585],[95.19392,26.84371],[95.19221,26.84394],[95.1824,26.854],[95.18114,26.8592],[95.20307,26.87222],[95.208,26.87607],[95.20949,26.87995],[95.21448,26.8812],[95.22656,26.87997],[95.23048,26.88515],[95.22797,26.89267],[95.23076,26.90398],[95.22863,26.91224],[95.23063,26.9131],[95.23064,26.91495],[95.22855,26.9205],[95.22228,26.92882],[95.21378,26.9286],[95.21117,26.93137]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"248","area_level":"District","area_name":"Phek","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.37732,25.85649],[94.37121,25.85662],[94.37011,25.85417],[94.36976,25.85163],[94.37395,25.84737],[94.37426,25.83868],[94.3756,25.83647],[94.37481,25.83256],[94.37095,25.82709],[94.36524,25.82671],[94.36133,25.82125],[94.35393,25.81875],[94.35398,25.82077],[94.34364,25.81907],[94.33956,25.82495],[94.33666,25.82633],[94.33296,25.81156],[94.32649,25.80567],[94.32282,25.78854],[94.31806,25.78452],[94.31573,25.77939],[94.31733,25.77694],[94.31711,25.77276],[94.32022,25.77049],[94.32251,25.76555],[94.33207,25.76064],[94.3303,25.75569],[94.33156,25.75424],[94.32881,25.74837],[94.32052,25.74592],[94.3066,25.74922],[94.29824,25.74954],[94.29348,25.75168],[94.27071,25.75236],[94.25822,25.7586],[94.25271,25.75047],[94.24864,25.74891],[94.24611,25.74551],[94.24613,25.73854],[94.2434,25.73284],[94.23776,25.7266],[94.23009,25.71397],[94.23173,25.71155],[94.23036,25.70917],[94.23212,25.70931],[94.23344,25.70461],[94.23158,25.705],[94.22869,25.70244],[94.2315,25.69966],[94.23154,25.6958],[94.21893,25.68315],[94.21678,25.67878],[94.21753,25.6766],[94.21326,25.6725],[94.21393,25.66884],[94.21941,25.66606],[94.21803,25.65923],[94.22026,25.65684],[94.21495,25.63958],[94.21596,25.63625],[94.21421,25.63127],[94.21113,25.63127],[94.20832,25.62867],[94.2105,25.62491],[94.20822,25.61857],[94.2096,25.61336],[94.21234,25.61315],[94.2144,25.61004],[94.21086,25.60324],[94.212,25.60043],[94.20701,25.59542],[94.20723,25.59204],[94.19678,25.58186],[94.19732,25.57429],[94.19522,25.57376],[94.19382,25.56945],[94.19387,25.56221],[94.19656,25.55723],[94.19071,25.54763],[94.18973,25.5374],[94.18595,25.52984],[94.18653,25.52598],[94.20265,25.50911],[94.20266,25.5068],[94.20868,25.50331],[94.20857,25.49795],[94.21059,25.49536],[94.2156,25.49475],[94.2187,25.49188],[94.22485,25.4911],[94.22744,25.4934],[94.24775,25.49411],[94.25293,25.49845],[94.26983,25.49799],[94.27552,25.50043],[94.28241,25.50667],[94.28641,25.50449],[94.29464,25.49565],[94.29826,25.48955],[94.30914,25.48935],[94.31629,25.49416],[94.32463,25.50322],[94.36025,25.51629],[94.3841,25.53132],[94.40644,25.53823],[94.41234,25.53663],[94.41582,25.53733],[94.42113,25.54759],[94.42194,25.55612],[94.42068,25.5677],[94.41796,25.57069],[94.4256,25.58741],[94.4434,25.59269],[94.44485,25.59574],[94.46962,25.61625],[94.48673,25.61437],[94.48897,25.60889],[94.49483,25.61105],[94.49737,25.61457],[94.50091,25.61152],[94.50332,25.61348],[94.50421,25.62144],[94.50643,25.62443],[94.51004,25.62501],[94.51974,25.63793],[94.52373,25.6388],[94.5262,25.63708],[94.52709,25.64463],[94.53507,25.64556],[94.54028,25.65202],[94.54731,25.65692],[94.54776,25.66187],[94.56063,25.67526],[94.56355,25.68667],[94.56857,25.69209],[94.58257,25.68629],[94.59113,25.68566],[94.59245,25.68128],[94.58548,25.67563],[94.58084,25.66924],[94.58288,25.66618],[94.57893,25.65961],[94.58071,25.65616],[94.57754,25.655],[94.57685,25.65178],[94.57228,25.64722],[94.57157,25.63909],[94.58241,25.64095],[94.59064,25.63819],[94.57923,25.62885],[94.57396,25.62061],[94.56825,25.60568],[94.56059,25.59698],[94.55114,25.5802],[94.55695,25.57271],[94.55581,25.56235],[94.56005,25.56229],[94.55676,25.55486],[94.55826,25.54385],[94.55523,25.54005],[94.55883,25.53401],[94.55364,25.52922],[94.55661,25.52502],[94.55274,25.50709],[94.56349,25.50088],[94.56989,25.49951],[94.58026,25.49111],[94.58247,25.48668],[94.58607,25.48398],[94.60271,25.47662],[94.62053,25.46321],[94.62813,25.45976],[94.64337,25.45568],[94.65386,25.45108],[94.66487,25.44936],[94.68028,25.45401],[94.68128,25.45581],[94.6799,25.4585],[94.68195,25.45939],[94.68362,25.46643],[94.69286,25.46556],[94.70299,25.46793],[94.70998,25.4718],[94.71808,25.46949],[94.71965,25.47224],[94.72511,25.47357],[94.7283,25.47656],[94.74395,25.48112],[94.74692,25.48543],[94.7473,25.48909],[94.75142,25.49389],[94.75769,25.49136],[94.76196,25.48195],[94.78345,25.4804],[94.78869,25.48955],[94.79638,25.49176],[94.80603,25.49182],[94.80799,25.49329],[94.80821,25.49892],[94.8124,25.51125],[94.81587,25.51647],[94.81934,25.51749],[94.82543,25.52376],[94.82347,25.53344],[94.82578,25.54255],[94.82967,25.54371],[94.83426,25.55258],[94.83783,25.55305],[94.84095,25.55689],[94.84333,25.55724],[94.84592,25.56194],[94.85342,25.56432],[94.87968,25.56238],[94.88502,25.56352],[94.88969,25.56664],[94.8985,25.56533],[94.89747,25.57055],[94.89138,25.57822],[94.87805,25.58839],[94.86621,25.60876],[94.85365,25.60863],[94.85159,25.61023],[94.85387,25.61837],[94.84915,25.62495],[94.85088,25.63332],[94.84609,25.65012],[94.84851,25.65754],[94.84831,25.66531],[94.85357,25.68062],[94.85429,25.68829],[94.85685,25.69137],[94.85797,25.69657],[94.85864,25.70282],[94.8551,25.70909],[94.8566,25.71741],[94.85455,25.72433],[94.84681,25.72908],[94.84078,25.74072],[94.83568,25.74319],[94.81925,25.76371],[94.80964,25.76505],[94.80358,25.77063],[94.79842,25.77211],[94.79635,25.77495],[94.79025,25.77745],[94.75999,25.77847],[94.75544,25.78231],[94.75408,25.77997],[94.75,25.77902],[94.74859,25.77594],[94.74558,25.77671],[94.74701,25.77202],[94.74016,25.77013],[94.74186,25.76548],[94.73844,25.76488],[94.73314,25.7602],[94.73353,25.75533],[94.72981,25.75503],[94.72874,25.75333],[94.7305,25.75041],[94.72509,25.7481],[94.7244,25.74553],[94.72706,25.74426],[94.72042,25.73947],[94.7232,25.7373],[94.721,25.7348],[94.72156,25.73318],[94.72712,25.73071],[94.7231,25.72664],[94.727,25.72524],[94.71795,25.7218],[94.71633,25.72235],[94.71905,25.72492],[94.71882,25.72774],[94.71749,25.72804],[94.7157,25.73877],[94.71369,25.74122],[94.71624,25.75518],[94.71291,25.75947],[94.69582,25.75749],[94.67802,25.77036],[94.66896,25.77256],[94.65852,25.77776],[94.64702,25.77656],[94.64288,25.77121],[94.63666,25.76933],[94.62206,25.77075],[94.61338,25.777],[94.60683,25.7786],[94.59597,25.76343],[94.58564,25.75512],[94.58436,25.75006],[94.57015,25.73804],[94.55972,25.73203],[94.55327,25.73801],[94.5518,25.74618],[94.55462,25.77683],[94.55341,25.77973],[94.54903,25.78182],[94.54041,25.78136],[94.53598,25.78286],[94.53552,25.78553],[94.53881,25.79176],[94.53816,25.79543],[94.54157,25.80031],[94.54229,25.81133],[94.52949,25.82243],[94.51809,25.82504],[94.5148,25.82138],[94.51466,25.81842],[94.51786,25.81643],[94.51571,25.81486],[94.51116,25.81671],[94.50745,25.82163],[94.50077,25.8256],[94.49498,25.83148],[94.48129,25.8331],[94.47253,25.83243],[94.46983,25.82982],[94.46552,25.83043],[94.46417,25.83292],[94.4652,25.83679],[94.46209,25.842],[94.46303,25.84629],[94.45189,25.84483],[94.44568,25.8424],[94.43904,25.84573],[94.43388,25.84398],[94.42729,25.84852],[94.41933,25.84716],[94.41555,25.84974],[94.41266,25.84796],[94.40336,25.84796],[94.40216,25.84987],[94.39461,25.85072],[94.38292,25.85604],[94.37732,25.85649]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"249","area_level":"District","area_name":"Tuensang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.7212,26.43605],[94.7165,26.43705],[94.71354,26.43595],[94.70348,26.42826],[94.70463,26.42531],[94.70319,26.42083],[94.70059,26.42045],[94.69963,26.41843],[94.70245,26.40857],[94.69356,26.41306],[94.68699,26.4069],[94.68998,26.4035],[94.68613,26.40282],[94.68581,26.39847],[94.68892,26.39633],[94.67944,26.38954],[94.68043,26.38687],[94.67753,26.38643],[94.67813,26.38145],[94.67091,26.38238],[94.66833,26.37959],[94.671,26.3776],[94.6701,26.37678],[94.66263,26.38083],[94.66109,26.37782],[94.65747,26.37589],[94.65932,26.37173],[94.66309,26.37305],[94.66374,26.37149],[94.66216,26.36579],[94.65926,26.3665],[94.65711,26.36265],[94.65323,26.3616],[94.65325,26.35861],[94.6553,26.35767],[94.65128,26.35162],[94.65572,26.35025],[94.65751,26.34757],[94.6508,26.34775],[94.6525,26.34599],[94.65074,26.34293],[94.65302,26.34187],[94.65064,26.33858],[94.64689,26.33902],[94.64217,26.3359],[94.63859,26.33674],[94.63763,26.32986],[94.63363,26.33229],[94.63359,26.33397],[94.63155,26.33278],[94.62878,26.3342],[94.62312,26.32606],[94.62114,26.3276],[94.61911,26.32584],[94.6145,26.32646],[94.61384,26.32214],[94.61066,26.32333],[94.60934,26.32097],[94.6022,26.31761],[94.59652,26.31241],[94.59938,26.31002],[94.59554,26.30622],[94.59809,26.30483],[94.5963,26.29994],[94.5944,26.30254],[94.59079,26.30188],[94.59277,26.29587],[94.58782,26.30125],[94.58542,26.29983],[94.58276,26.30097],[94.58329,26.29579],[94.58111,26.29656],[94.57919,26.29468],[94.5822,26.29216],[94.58126,26.28954],[94.57562,26.28739],[94.57293,26.28957],[94.5727,26.29226],[94.56436,26.28777],[94.56352,26.28449],[94.55939,26.28265],[94.56064,26.28063],[94.5593,26.27933],[94.56141,26.27879],[94.56371,26.27247],[94.56113,26.27112],[94.56541,26.2682],[94.56338,26.26696],[94.55981,26.25593],[94.56274,26.2566],[94.56614,26.25476],[94.57289,26.24235],[94.57735,26.24005],[94.58026,26.24104],[94.58308,26.23849],[94.58705,26.22713],[94.58681,26.22391],[94.5834,26.21906],[94.58743,26.21237],[94.59574,26.20488],[94.59582,26.20136],[94.59875,26.20027],[94.5997,26.19751],[94.60573,26.19713],[94.61243,26.19363],[94.61764,26.19853],[94.62377,26.19994],[94.6254,26.20483],[94.63155,26.20789],[94.63825,26.21736],[94.64288,26.21427],[94.64642,26.20872],[94.65645,26.20331],[94.65977,26.20538],[94.65992,26.20788],[94.66227,26.20649],[94.66227,26.20914],[94.66478,26.20888],[94.66662,26.21266],[94.67231,26.21067],[94.67288,26.20702],[94.67577,26.20647],[94.68095,26.19866],[94.68424,26.19909],[94.68716,26.19629],[94.68942,26.19826],[94.68947,26.19408],[94.69247,26.19038],[94.69374,26.18343],[94.69668,26.17864],[94.69563,26.17775],[94.69662,26.17153],[94.7034,26.17373],[94.70574,26.17201],[94.70312,26.16969],[94.69916,26.15212],[94.69559,26.14717],[94.6944,26.14197],[94.68833,26.13766],[94.68739,26.11545],[94.68924,26.11071],[94.69146,26.10911],[94.68828,26.10417],[94.68877,26.09436],[94.69367,26.08543],[94.69208,26.08125],[94.69283,26.07283],[94.68993,26.0725],[94.68784,26.06834],[94.68385,26.06592],[94.68269,26.06014],[94.68004,26.0564],[94.68243,26.0547],[94.68129,26.04975],[94.67912,26.04836],[94.68708,26.03806],[94.69189,26.03587],[94.69442,26.03214],[94.71266,26.02542],[94.71861,26.02562],[94.723,26.02151],[94.72724,26.02264],[94.73401,26.01972],[94.74414,26.02558],[94.74882,26.02287],[94.75859,26.02358],[94.76845,26.01769],[94.77024,26.01515],[94.77861,26.01142],[94.78019,26.00254],[94.78712,25.99406],[94.79504,25.99588],[94.80061,25.99272],[94.80887,25.99399],[94.81961,25.98951],[94.83446,25.99036],[94.84805,25.98303],[94.85501,25.98221],[94.86591,25.98358],[94.87018,25.98016],[94.86065,25.96464],[94.86134,25.95981],[94.85649,25.95429],[94.85801,25.95184],[94.85213,25.94571],[94.8507,25.93945],[94.84567,25.93995],[94.84667,25.93875],[94.8456,25.93439],[94.84339,25.93305],[94.84285,25.93016],[94.84586,25.93022],[94.84903,25.9354],[94.86067,25.93948],[94.87051,25.94567],[94.87405,25.94368],[94.88205,25.94494],[94.88561,25.94167],[94.9071,25.94438],[94.91135,25.94286],[94.92102,25.94451],[94.9217,25.94736],[94.92554,25.94927],[94.93041,25.94243],[94.93474,25.94112],[94.93848,25.9371],[94.93392,25.92499],[94.93593,25.91651],[94.94336,25.90733],[94.95144,25.90099],[94.96332,25.90314],[94.96986,25.89744],[94.97386,25.88072],[94.9822,25.87569],[94.99299,25.88018],[94.99598,25.88386],[94.99979,25.88538],[95.00571,25.87697],[95.01118,25.8755],[95.01941,25.88139],[95.01887,25.88547],[95.01177,25.89778],[95.02655,25.9134],[95.02871,25.91368],[95.03277,25.92549],[95.03122,25.93102],[95.03598,25.92675],[95.04394,25.92686],[95.04674,25.92846],[95.0475,25.93404],[95.05029,25.93611],[95.05838,25.94023],[95.06263,25.94022],[95.06401,25.94257],[95.07308,25.94178],[95.08366,25.94991],[95.0895,25.95049],[95.0953,25.95494],[95.10327,25.9681],[95.10633,25.97108],[95.11016,25.97051],[95.11429,25.97478],[95.11698,25.98496],[95.12611,25.98575],[95.1274,25.99055],[95.13331,25.99591],[95.13489,26.00086],[95.14117,26.00898],[95.14524,26.01103],[95.14507,26.01403],[95.14935,26.0162],[95.15251,26.02123],[95.15906,26.02493],[95.16429,26.04919],[95.17657,26.06413],[95.18345,26.06813],[95.18589,26.0731],[95.18301,26.07505],[95.18195,26.07838],[95.17683,26.08127],[95.17602,26.08406],[95.17012,26.08582],[95.17099,26.08834],[95.16751,26.08933],[95.16533,26.09211],[95.15501,26.08945],[95.15118,26.08642],[95.14863,26.0869],[95.14201,26.09444],[95.13033,26.0945],[95.12124,26.09806],[95.11805,26.10064],[95.11628,26.10683],[95.11555,26.11285],[95.11977,26.11618],[95.12153,26.1232],[95.12628,26.12852],[95.12592,26.13126],[95.12266,26.13357],[95.12146,26.13869],[95.11901,26.14065],[95.12344,26.14502],[95.11907,26.14845],[95.11963,26.15352],[95.11721,26.15862],[95.11762,26.16392],[95.12665,26.17784],[95.12315,26.18042],[95.12221,26.18633],[95.13174,26.20047],[95.14268,26.21163],[95.13304,26.21535],[95.12779,26.22138],[95.1199,26.22551],[95.1146,26.23289],[95.12004,26.24193],[95.12548,26.24657],[95.12459,26.25017],[95.1273,26.25398],[95.12351,26.25588],[95.11983,26.26446],[95.12076,26.27156],[95.12483,26.27655],[95.12438,26.28628],[95.12844,26.29407],[95.12812,26.30224],[95.12249,26.30744],[95.12476,26.31244],[95.12406,26.31516],[95.12607,26.32354],[95.12265,26.32522],[95.1229,26.33052],[95.12692,26.33407],[95.12839,26.33932],[95.10829,26.3361],[95.10085,26.33216],[95.09207,26.33327],[95.08322,26.33041],[95.0603,26.33103],[95.05524,26.32682],[95.051,26.32607],[95.04402,26.32772],[95.04045,26.32314],[95.03809,26.32322],[95.038,26.3213],[95.03157,26.31605],[95.02848,26.30989],[95.02096,26.30245],[95.0099,26.29637],[94.9997,26.28543],[94.99548,26.28858],[94.97969,26.29372],[94.97309,26.29406],[94.9692,26.29143],[94.95678,26.29216],[94.94397,26.29835],[94.93763,26.2987],[94.92903,26.31032],[94.913,26.32004],[94.9112,26.32527],[94.90229,26.33754],[94.901,26.34211],[94.90261,26.34615],[94.89976,26.34913],[94.89658,26.34963],[94.90364,26.36193],[94.90899,26.36523],[94.9106,26.37696],[94.90434,26.37277],[94.89191,26.37392],[94.88249,26.38127],[94.88125,26.37953],[94.87333,26.37974],[94.87128,26.37835],[94.86604,26.37956],[94.854,26.37328],[94.84738,26.37198],[94.8473,26.37443],[94.843,26.38039],[94.83157,26.38586],[94.81911,26.39521],[94.81802,26.39948],[94.8131,26.4009],[94.81313,26.40529],[94.80848,26.41148],[94.79967,26.4163],[94.79425,26.42392],[94.79045,26.42608],[94.78463,26.42648],[94.78342,26.42793],[94.78185,26.42261],[94.77467,26.41891],[94.76698,26.41622],[94.75461,26.41519],[94.74783,26.42505],[94.74076,26.42574],[94.73477,26.43402],[94.7212,26.43605]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"25","area_level":"District","area_name":"Solan","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.92211,30.8822],[76.92203,30.88261],[76.92173,30.88309],[76.92057,30.88339],[76.91979,30.88384],[76.91804,30.88594],[76.91769,30.88646],[76.91749,30.88628],[76.91726,30.88565],[76.91715,30.88466],[76.9172,30.88423],[76.91741,30.88346],[76.91773,30.88305],[76.91812,30.88271],[76.91955,30.88222],[76.91982,30.88199],[76.92024,30.88199],[76.92126,30.88125],[76.92152,30.88097],[76.92191,30.88069],[76.92235,30.88047],[76.92227,30.87927],[76.9225,30.87825],[76.92273,30.87747],[76.92302,30.87684],[76.92351,30.87629],[76.92424,30.87645],[76.92371,30.87785],[76.92311,30.87991],[76.92278,30.88034],[76.92211,30.8822]]],[[[76.92307,31.36356],[76.91848,31.36542],[76.90695,31.36148],[76.89931,31.36386],[76.89477,31.35928],[76.89051,31.36016],[76.88562,31.35831],[76.8813,31.35322],[76.87367,31.34868],[76.87333,31.34668],[76.88003,31.34088],[76.88282,31.3356],[76.87932,31.3318],[76.87507,31.3308],[76.8774,31.32755],[76.89077,31.32075],[76.89538,31.31527],[76.9033,31.31404],[76.91606,31.31497],[76.91918,31.30464],[76.92775,31.30409],[76.9132,31.28335],[76.90966,31.2813],[76.90449,31.28259],[76.89995,31.28121],[76.89174,31.27424],[76.89501,31.2717],[76.89587,31.26716],[76.89478,31.2653],[76.88638,31.26538],[76.8833,31.26146],[76.87843,31.26296],[76.87237,31.26203],[76.86999,31.25671],[76.87052,31.25193],[76.86588,31.24547],[76.87067,31.24459],[76.8671,31.24105],[76.87055,31.23533],[76.87588,31.23169],[76.87406,31.22802],[76.87862,31.22112],[76.87611,31.21858],[76.85565,31.21934],[76.85027,31.22392],[76.84746,31.22451],[76.84848,31.22776],[76.84324,31.22684],[76.8397,31.23114],[76.83263,31.22937],[76.82935,31.22453],[76.82368,31.22311],[76.81759,31.22868],[76.81552,31.2265],[76.80474,31.22663],[76.79969,31.22196],[76.793,31.22631],[76.78565,31.22178],[76.78178,31.21638],[76.77858,31.21533],[76.77372,31.21785],[76.77674,31.22194],[76.77562,31.22429],[76.77207,31.22255],[76.76626,31.2268],[76.75778,31.2265],[76.75191,31.22978],[76.74624,31.23615],[76.7325,31.24062],[76.72912,31.23888],[76.72765,31.23533],[76.72039,31.22831],[76.71154,31.22315],[76.70312,31.22203],[76.69888,31.21691],[76.69092,31.21602],[76.68599,31.21287],[76.67572,31.2143],[76.66497,31.21284],[76.66034,31.20954],[76.64543,31.20913],[76.63536,31.20195],[76.61779,31.19286],[76.61488,31.18964],[76.61346,31.18413],[76.60978,31.18097],[76.59693,31.17819],[76.59857,31.17454],[76.60321,31.17505],[76.60491,31.17674],[76.60715,31.17425],[76.60553,31.17239],[76.6076,31.17065],[76.6031,31.16473],[76.60526,31.16017],[76.60233,31.15297],[76.60605,31.15169],[76.60746,31.14869],[76.60993,31.14957],[76.6123,31.14803],[76.60912,31.14321],[76.61041,31.14059],[76.60405,31.13337],[76.605,31.13079],[76.60089,31.12838],[76.602,31.12354],[76.61323,31.1223],[76.61662,31.11607],[76.62384,31.11639],[76.62498,31.11516],[76.63102,31.11691],[76.63328,31.11554],[76.63623,31.11649],[76.63858,31.108],[76.63741,31.10313],[76.63191,31.09997],[76.6322,31.09781],[76.62537,31.09077],[76.62315,31.07963],[76.61658,31.07771],[76.61721,31.0676],[76.62295,31.05457],[76.61097,31.04583],[76.61608,31.03651],[76.61677,31.03048],[76.62295,31.0258],[76.62905,31.02362],[76.62692,31.02308],[76.62647,31.02113],[76.62501,30.99864],[76.63373,30.99605],[76.63848,30.99014],[76.65162,30.98783],[76.66149,30.98074],[76.66441,30.98175],[76.67312,30.97438],[76.67386,30.96871],[76.68395,30.96786],[76.70055,30.97098],[76.7085,30.97029],[76.71176,30.96461],[76.71722,30.96011],[76.72234,30.9615],[76.73371,30.94934],[76.73714,30.94961],[76.73617,30.94711],[76.73772,30.94044],[76.73658,30.93837],[76.73978,30.93618],[76.73943,30.93379],[76.74696,30.93014],[76.7485,30.92673],[76.75652,30.92815],[76.75985,30.92633],[76.76019,30.92293],[76.76633,30.92107],[76.76666,30.91709],[76.77222,30.91006],[76.77187,30.90684],[76.77609,30.90597],[76.78683,30.91334],[76.79816,30.91524],[76.81114,30.92401],[76.8224,30.92854],[76.82515,30.92635],[76.82739,30.92122],[76.82606,30.92065],[76.8293,30.91662],[76.82646,30.91313],[76.82998,30.90714],[76.83404,30.9045],[76.84104,30.89166],[76.84459,30.88926],[76.85109,30.88995],[76.85606,30.88424],[76.8604,30.88367],[76.863,30.87762],[76.86719,30.87604],[76.86958,30.87312],[76.87837,30.87574],[76.87595,30.8809],[76.8853,30.88296],[76.88733,30.88553],[76.89535,30.88698],[76.89495,30.89042],[76.89909,30.8927],[76.90862,30.89416],[76.90953,30.897],[76.91687,30.90077],[76.91795,30.88758],[76.92055,30.88725],[76.92139,30.88505],[76.92566,30.88481],[76.92746,30.88596],[76.92482,30.88991],[76.92839,30.89145],[76.93096,30.88774],[76.93647,30.88464],[76.93615,30.87777],[76.93015,30.87624],[76.93107,30.87316],[76.92658,30.87257],[76.92839,30.87142],[76.93311,30.87444],[76.9364,30.87457],[76.93838,30.87106],[76.93546,30.86969],[76.94303,30.85997],[76.94383,30.85294],[76.94862,30.85337],[76.95125,30.85052],[76.944,30.83766],[76.94895,30.82443],[76.94264,30.81743],[76.94594,30.81842],[76.94861,30.8167],[76.94891,30.81407],[76.9508,30.81383],[76.95189,30.81756],[76.96007,30.82731],[76.96208,30.82139],[76.96209,30.82362],[76.96512,30.82556],[76.97046,30.82465],[76.97391,30.81854],[76.97817,30.81691],[76.97758,30.81235],[76.98452,30.81226],[76.98659,30.81399],[76.99724,30.81219],[77.00016,30.81073],[77.00278,30.80564],[77.01069,30.8097],[77.01252,30.80919],[77.01196,30.80014],[77.01513,30.79309],[77.01241,30.78803],[77.01786,30.78603],[77.0166,30.78572],[77.01548,30.78088],[77.0169,30.7801],[77.01823,30.78277],[77.01859,30.7803],[77.01425,30.77566],[77.00897,30.77355],[77.00587,30.77411],[77.00127,30.77044],[77.00794,30.76919],[77.01042,30.76703],[77.01469,30.76786],[77.01861,30.76554],[77.01893,30.75469],[77.01624,30.75033],[77.02069,30.7522],[77.02109,30.74888],[77.01775,30.74828],[77.01705,30.74555],[77.02022,30.74145],[77.02077,30.74477],[77.02401,30.74535],[77.02338,30.75116],[77.02572,30.74961],[77.02908,30.75058],[77.02916,30.75831],[77.03335,30.76444],[77.04008,30.76552],[77.04465,30.76876],[77.04892,30.7695],[77.05509,30.77567],[77.06288,30.77834],[77.07005,30.78393],[77.07682,30.78552],[77.07898,30.78767],[77.07846,30.78961],[77.08373,30.79249],[77.08294,30.80455],[77.08681,30.80953],[77.08614,30.81392],[77.08882,30.8184],[77.08716,30.8224],[77.08783,30.83046],[77.09368,30.83004],[77.09872,30.83333],[77.10103,30.83221],[77.10508,30.83321],[77.10722,30.83883],[77.11628,30.84367],[77.11448,30.846],[77.117,30.84813],[77.11473,30.8512],[77.11921,30.85296],[77.13453,30.85411],[77.13603,30.85616],[77.14305,30.85297],[77.1481,30.85471],[77.14891,30.85684],[77.15355,30.85655],[77.15667,30.85192],[77.16915,30.84202],[77.16849,30.84422],[77.17236,30.84768],[77.17823,30.84679],[77.18094,30.85075],[77.18708,30.85086],[77.18682,30.85691],[77.18291,30.86041],[77.1883,30.86043],[77.18902,30.86415],[77.19608,30.8645],[77.21365,30.87857],[77.20782,30.88375],[77.20561,30.88878],[77.21389,30.89576],[77.21686,30.89511],[77.21495,30.90164],[77.22019,30.90375],[77.22504,30.90022],[77.2309,30.90064],[77.23613,30.90515],[77.23961,30.91386],[77.24618,30.91519],[77.24745,30.91767],[77.2448,30.92763],[77.23946,30.92986],[77.23945,30.9397],[77.24576,30.94128],[77.24969,30.94758],[77.24326,30.95388],[77.23208,30.96074],[77.21878,30.96545],[77.20727,30.96554],[77.2043,30.96745],[77.20181,30.97362],[77.20657,30.97718],[77.20721,30.98179],[77.21155,30.98724],[77.20614,30.99192],[77.20476,30.99774],[77.20004,30.99949],[77.19748,31.00289],[77.1881,31.00486],[77.17102,31.01158],[77.16439,30.99982],[77.15151,31.00479],[77.14313,31.01626],[77.13513,31.02263],[77.12641,31.02654],[77.12359,31.0264],[77.11909,31.03143],[77.11317,31.03204],[77.10173,31.02945],[77.0964,31.03149],[77.08814,31.03788],[77.08635,31.04252],[77.07957,31.04553],[77.07514,31.04513],[77.06685,31.04795],[77.06749,31.05197],[77.06983,31.0539],[77.07743,31.05454],[77.07812,31.05747],[77.08808,31.06627],[77.08341,31.0685],[77.07906,31.07416],[77.08277,31.07825],[77.08241,31.08165],[77.07755,31.08353],[77.07496,31.08041],[77.0755,31.07873],[77.07345,31.07799],[77.0658,31.08624],[77.05513,31.08472],[77.05165,31.08196],[77.0485,31.08196],[77.05032,31.08007],[77.04629,31.07927],[77.04515,31.07083],[77.04366,31.06945],[77.03591,31.06703],[77.03546,31.07551],[77.02615,31.07897],[77.02398,31.08515],[77.02812,31.08663],[77.0378,31.09615],[77.04402,31.09875],[77.05409,31.09985],[77.0545,31.10384],[77.04848,31.11433],[77.03519,31.10999],[77.02778,31.11087],[77.02274,31.10758],[77.01719,31.10931],[77.01459,31.10697],[77.00557,31.10572],[77.00359,31.10364],[77.0015,31.10449],[76.99773,31.10315],[76.99064,31.10829],[76.98887,31.11385],[76.99151,31.11498],[76.99836,31.11473],[77.00379,31.11075],[77.00676,31.11326],[77.01159,31.11427],[77.01209,31.11588],[77.00897,31.1177],[77.00934,31.12395],[77.00723,31.12899],[77.01019,31.13464],[77.0163,31.13701],[77.0201,31.14269],[77.02567,31.14493],[77.0295,31.14867],[77.02922,31.15039],[77.03531,31.15177],[77.03157,31.16682],[77.03247,31.17051],[77.03058,31.17406],[77.0331,31.17847],[77.02573,31.17933],[77.01374,31.18445],[77.0015,31.19608],[77.00487,31.20201],[77.00314,31.20422],[77.00441,31.20802],[77.00745,31.21003],[77.00754,31.21317],[77.01012,31.21292],[77.01166,31.21596],[77.01353,31.21554],[77.02099,31.22127],[77.01946,31.22345],[77.01329,31.22398],[77.01116,31.23061],[77.01266,31.23385],[77.00461,31.23836],[77.00348,31.24526],[77.03068,31.27278],[77.02255,31.27876],[77.02093,31.28413],[77.01852,31.28618],[76.99536,31.30128],[76.97086,31.31269],[76.96802,31.31649],[76.96784,31.32115],[76.96489,31.32407],[76.95366,31.32855],[76.94947,31.33238],[76.94188,31.33283],[76.94115,31.33485],[76.94419,31.33887],[76.94384,31.3428],[76.92307,31.36356]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"250","area_level":"District","area_name":"Wokha","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.2847,26.56111],[94.27151,26.55155],[94.27064,26.54928],[94.25634,26.54122],[94.25332,26.53279],[94.24782,26.52821],[94.24872,26.52497],[94.23662,26.50614],[94.22127,26.49813],[94.20751,26.48647],[94.20249,26.47278],[94.20266,26.46906],[94.19405,26.46124],[94.18585,26.45895],[94.18327,26.45528],[94.17613,26.43642],[94.17173,26.42978],[94.17572,26.42443],[94.17191,26.41584],[94.17401,26.40951],[94.17319,26.40328],[94.17758,26.38201],[94.17223,26.37365],[94.17411,26.37072],[94.17113,26.36275],[94.16016,26.35429],[94.16203,26.34716],[94.16706,26.34799],[94.16871,26.35093],[94.17261,26.35059],[94.17759,26.34642],[94.17456,26.34046],[94.17164,26.33796],[94.16718,26.33932],[94.16287,26.33551],[94.14758,26.33346],[94.14506,26.33059],[94.14101,26.33137],[94.14099,26.33531],[94.13873,26.33628],[94.12838,26.33036],[94.12492,26.33081],[94.11975,26.3288],[94.11593,26.32969],[94.11498,26.32395],[94.12168,26.31776],[94.11206,26.31799],[94.10968,26.31992],[94.10505,26.31995],[94.10251,26.31523],[94.09971,26.3139],[94.10078,26.30863],[94.09778,26.30196],[94.08427,26.28897],[94.0841,26.28334],[94.07473,26.2836],[94.07224,26.27611],[94.07471,26.27304],[94.07462,26.26438],[94.07092,26.26232],[94.06786,26.25697],[94.05608,26.25501],[94.04769,26.24936],[94.0424,26.2345],[94.03646,26.22605],[94.03203,26.19754],[94.02179,26.19381],[94.01536,26.18402],[94.00781,26.1825],[94.00108,26.17227],[94.00261,26.17087],[94.00137,26.16578],[94.00366,26.16011],[94.0011,26.1552],[93.99658,26.15347],[93.99452,26.14831],[93.99591,26.14642],[94.00083,26.14698],[94.0036,26.14423],[94.00217,26.13443],[93.99831,26.13124],[93.99086,26.13364],[93.98724,26.13108],[93.98887,26.1282],[93.99782,26.12877],[93.99349,26.12394],[93.99387,26.11866],[93.98676,26.1139],[93.98874,26.11082],[93.99577,26.1122],[93.99793,26.10956],[93.98948,26.09753],[93.98865,26.08634],[93.98274,26.08336],[93.98153,26.08124],[93.98739,26.06679],[93.97076,26.04642],[93.97039,26.04035],[93.96247,26.03654],[93.9627,26.02576],[93.96054,26.01536],[93.953,26.00297],[93.95915,25.99433],[93.95415,25.96926],[93.96871,25.95726],[93.96996,25.93678],[93.97962,25.92601],[93.97945,25.92236],[93.98298,25.92332],[93.98788,25.92155],[93.99111,25.92213],[93.99147,25.92573],[93.99382,25.92518],[93.99474,25.92662],[93.99027,25.92772],[93.99396,25.9282],[93.99808,25.93175],[94.00264,25.93042],[94.00335,25.93262],[94.00648,25.93381],[94.00683,25.9363],[94.01006,25.93623],[94.01321,25.93934],[94.01948,25.94076],[94.01898,25.94427],[94.02169,25.95108],[94.02815,25.95721],[94.02781,25.95883],[94.03588,25.96328],[94.04019,25.97016],[94.04455,25.97382],[94.06589,25.98025],[94.07128,25.97293],[94.07423,25.97306],[94.07985,25.97683],[94.07952,25.97907],[94.08271,25.98088],[94.08382,25.98623],[94.09545,25.99149],[94.10013,25.98811],[94.10656,25.98941],[94.11132,25.98755],[94.12402,25.99093],[94.13947,25.99234],[94.1389,25.98922],[94.14415,25.9856],[94.1468,25.98152],[94.15194,25.97966],[94.15342,25.97681],[94.15785,25.9742],[94.16248,25.97322],[94.1687,25.97629],[94.17056,25.97972],[94.17349,25.98089],[94.17635,25.98633],[94.18164,25.98736],[94.18557,25.99016],[94.19266,25.98943],[94.19267,25.99124],[94.19952,25.99734],[94.20095,26.00219],[94.20423,26.00292],[94.21115,26.00888],[94.21063,26.01753],[94.21464,26.02177],[94.22265,26.01876],[94.22328,26.01598],[94.23578,26.00344],[94.24419,26.00185],[94.24918,26.00509],[94.25401,26.00577],[94.25573,26.00435],[94.26654,26.0062],[94.27494,26.00966],[94.29096,26.0087],[94.29971,26.00651],[94.30151,26.00837],[94.3059,26.00907],[94.30698,26.01203],[94.30993,26.01194],[94.31704,26.01848],[94.32329,26.01677],[94.32176,26.01519],[94.3247,26.01344],[94.32304,26.0119],[94.32552,26.01037],[94.32564,26.00427],[94.32767,25.99949],[94.3328,25.99819],[94.33565,25.99981],[94.33818,25.99814],[94.34548,26.00448],[94.34948,26.00413],[94.35346,26.00699],[94.36277,26.00866],[94.3611,26.01009],[94.35611,26.00977],[94.35945,26.01656],[94.35778,26.02164],[94.36239,26.02608],[94.36025,26.02797],[94.3636,26.03101],[94.3703,26.04692],[94.3703,26.05294],[94.37461,26.05595],[94.3784,26.06726],[94.38075,26.06792],[94.3822,26.07273],[94.38749,26.07498],[94.38685,26.07856],[94.39057,26.08405],[94.39,26.08553],[94.38332,26.08708],[94.38533,26.0897],[94.3835,26.09245],[94.38443,26.09553],[94.38094,26.09417],[94.37987,26.10055],[94.38287,26.10337],[94.38255,26.10824],[94.38665,26.10984],[94.38695,26.11587],[94.38492,26.12558],[94.37896,26.12655],[94.37733,26.12991],[94.36932,26.13079],[94.36594,26.13531],[94.36341,26.13497],[94.36269,26.14039],[94.36009,26.14292],[94.3607,26.14724],[94.35272,26.15248],[94.35069,26.15559],[94.34752,26.15549],[94.34727,26.17111],[94.34571,26.1728],[94.33515,26.17216],[94.33619,26.17503],[94.33523,26.17843],[94.33728,26.17912],[94.33769,26.17689],[94.34027,26.1771],[94.34701,26.18112],[94.34932,26.18337],[94.34769,26.18445],[94.35136,26.18719],[94.35537,26.18707],[94.35711,26.19025],[94.35991,26.18814],[94.36539,26.19285],[94.37124,26.19305],[94.38002,26.20713],[94.38475,26.22401],[94.38338,26.22915],[94.37761,26.22832],[94.36979,26.2316],[94.36402,26.23743],[94.35819,26.23831],[94.35599,26.24204],[94.35333,26.24089],[94.34679,26.24269],[94.34139,26.23866],[94.33507,26.24035],[94.34327,26.2443],[94.34926,26.25385],[94.35473,26.25823],[94.35586,26.26532],[94.35935,26.26892],[94.35488,26.29343],[94.35716,26.30337],[94.35432,26.30506],[94.35386,26.30867],[94.35186,26.31005],[94.35496,26.31328],[94.35328,26.31698],[94.3563,26.32469],[94.35791,26.32467],[94.35814,26.32755],[94.36096,26.33137],[94.36254,26.33112],[94.36599,26.33674],[94.35975,26.33691],[94.35863,26.33463],[94.35574,26.3357],[94.35503,26.33284],[94.35183,26.33212],[94.3487,26.33572],[94.3478,26.333],[94.34348,26.33153],[94.34277,26.33645],[94.3473,26.33661],[94.34787,26.33885],[94.35043,26.33975],[94.35284,26.34327],[94.35226,26.34867],[94.35853,26.35698],[94.35336,26.36426],[94.35057,26.37236],[94.34504,26.37844],[94.34132,26.37866],[94.33749,26.38536],[94.32929,26.39024],[94.32844,26.39628],[94.32511,26.40209],[94.32365,26.4029],[94.31731,26.39506],[94.31192,26.3925],[94.3092,26.38869],[94.30908,26.38372],[94.30126,26.37727],[94.30025,26.38527],[94.30394,26.39125],[94.30402,26.39427],[94.29722,26.40607],[94.29102,26.40669],[94.29014,26.41235],[94.29183,26.41522],[94.29019,26.41804],[94.29319,26.41959],[94.29358,26.42298],[94.29879,26.43051],[94.29874,26.43768],[94.30515,26.43936],[94.31558,26.45823],[94.30798,26.46253],[94.30671,26.46079],[94.30578,26.46323],[94.30351,26.46416],[94.29992,26.46365],[94.29928,26.46682],[94.29343,26.4711],[94.29324,26.47429],[94.29157,26.47522],[94.2923,26.47757],[94.28975,26.47971],[94.29006,26.48877],[94.28323,26.50497],[94.28338,26.51075],[94.28582,26.51234],[94.28656,26.51522],[94.28176,26.5245],[94.28291,26.5294],[94.28096,26.53506],[94.28194,26.54059],[94.28614,26.54251],[94.28127,26.54865],[94.2847,26.56111]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"251","area_level":"District","area_name":"Zunheboto","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.49115,26.27505],[94.48563,26.28083],[94.48328,26.29277],[94.47887,26.29356],[94.47505,26.28093],[94.46734,26.27393],[94.45976,26.25467],[94.45882,26.24871],[94.45463,26.24471],[94.45609,26.23915],[94.4591,26.23615],[94.4542,26.23319],[94.45491,26.23083],[94.4519,26.22602],[94.44879,26.22547],[94.4441,26.21824],[94.44491,26.21568],[94.44353,26.21302],[94.44483,26.21201],[94.44409,26.20967],[94.44589,26.2098],[94.44554,26.20611],[94.44379,26.20698],[94.44088,26.20513],[94.43676,26.207],[94.43114,26.20621],[94.42687,26.20811],[94.42476,26.21102],[94.41867,26.21256],[94.40934,26.2103],[94.40546,26.2117],[94.39904,26.20672],[94.39574,26.202],[94.39138,26.20242],[94.38498,26.19685],[94.37726,26.1964],[94.37473,26.19396],[94.36539,26.19285],[94.35991,26.18814],[94.35711,26.19025],[94.35537,26.18707],[94.35136,26.18719],[94.34769,26.18445],[94.34932,26.18337],[94.34701,26.18112],[94.34095,26.17739],[94.33795,26.17681],[94.33728,26.17912],[94.33523,26.17843],[94.33619,26.17503],[94.33515,26.17216],[94.34571,26.1728],[94.34727,26.17111],[94.34752,26.15549],[94.35069,26.15559],[94.35272,26.15248],[94.3607,26.14724],[94.36009,26.14292],[94.36269,26.14039],[94.36341,26.13497],[94.36594,26.13531],[94.36932,26.13079],[94.37733,26.12991],[94.37896,26.12655],[94.38492,26.12558],[94.38695,26.11587],[94.38665,26.10984],[94.38255,26.10824],[94.38287,26.10337],[94.37987,26.10055],[94.38094,26.09417],[94.38443,26.09553],[94.3835,26.09245],[94.38533,26.0897],[94.38332,26.08708],[94.39,26.08553],[94.39057,26.08405],[94.38685,26.07856],[94.38749,26.07498],[94.3822,26.07273],[94.38075,26.06792],[94.3784,26.06726],[94.37461,26.05595],[94.3703,26.05294],[94.3703,26.04692],[94.3636,26.03101],[94.36025,26.02797],[94.36239,26.02608],[94.35778,26.02164],[94.35945,26.01656],[94.35611,26.00977],[94.3611,26.01009],[94.36277,26.00866],[94.35346,26.00699],[94.34948,26.00413],[94.34548,26.00448],[94.33818,25.99814],[94.33565,25.99981],[94.3328,25.99819],[94.32767,25.99949],[94.32564,26.00427],[94.32552,26.01037],[94.32304,26.0119],[94.3247,26.01344],[94.32176,26.01519],[94.32329,26.01677],[94.31704,26.01848],[94.30993,26.01194],[94.30698,26.01203],[94.3059,26.00907],[94.30151,26.00837],[94.29971,26.00651],[94.27588,26.00972],[94.25573,26.00435],[94.26496,25.99586],[94.26917,25.98792],[94.28288,25.98303],[94.28676,25.97931],[94.28746,25.97063],[94.28591,25.96782],[94.28716,25.96522],[94.29006,25.96488],[94.2895,25.96016],[94.29362,25.9529],[94.29466,25.94622],[94.29877,25.94025],[94.29549,25.93902],[94.29569,25.93648],[94.28977,25.93273],[94.28763,25.92859],[94.28298,25.9294],[94.28162,25.92551],[94.272,25.92184],[94.27189,25.9203],[94.26417,25.92252],[94.2607,25.92172],[94.26099,25.91958],[94.25722,25.91934],[94.25657,25.92169],[94.25244,25.9232],[94.25073,25.92073],[94.248,25.92106],[94.24667,25.91576],[94.2486,25.89907],[94.24063,25.89217],[94.23984,25.88082],[94.24139,25.87192],[94.22937,25.85231],[94.23132,25.84895],[94.22915,25.84411],[94.23067,25.83478],[94.24265,25.82793],[94.2482,25.82008],[94.24773,25.81696],[94.25436,25.81117],[94.25607,25.80502],[94.26021,25.80353],[94.25891,25.80616],[94.26156,25.80695],[94.26063,25.80913],[94.26383,25.81002],[94.26664,25.81333],[94.27754,25.81057],[94.2815,25.80736],[94.28227,25.80359],[94.27633,25.80007],[94.27655,25.79596],[94.27288,25.79478],[94.2762,25.79322],[94.27553,25.78989],[94.27108,25.7872],[94.26716,25.78103],[94.26715,25.77807],[94.26491,25.77753],[94.26624,25.77495],[94.2632,25.77263],[94.25822,25.7586],[94.26793,25.75307],[94.29348,25.75168],[94.29824,25.74954],[94.3066,25.74922],[94.32052,25.74592],[94.32881,25.74837],[94.33156,25.75424],[94.3303,25.75569],[94.33207,25.76064],[94.32251,25.76555],[94.32022,25.77049],[94.31711,25.77276],[94.31612,25.78118],[94.32282,25.78854],[94.32649,25.80567],[94.33296,25.81156],[94.3366,25.82327],[94.33609,25.82585],[94.33956,25.82495],[94.34364,25.81907],[94.35398,25.82077],[94.35393,25.81875],[94.36133,25.82125],[94.36524,25.82671],[94.37179,25.828],[94.3756,25.83647],[94.37426,25.83868],[94.37395,25.84737],[94.36973,25.8518],[94.37121,25.85662],[94.37307,25.8569],[94.38292,25.85604],[94.39461,25.85072],[94.40216,25.84987],[94.40336,25.84796],[94.41266,25.84796],[94.41555,25.84974],[94.41933,25.84716],[94.42729,25.84852],[94.43388,25.84398],[94.43904,25.84573],[94.44568,25.8424],[94.45189,25.84483],[94.46303,25.84629],[94.46209,25.842],[94.4652,25.83679],[94.46417,25.83292],[94.46552,25.83043],[94.46983,25.82982],[94.47253,25.83243],[94.48129,25.8331],[94.49498,25.83148],[94.50077,25.8256],[94.50745,25.82163],[94.51116,25.81671],[94.51571,25.81486],[94.51786,25.81643],[94.51466,25.81842],[94.5148,25.82138],[94.51809,25.82504],[94.52949,25.82243],[94.54229,25.81133],[94.54157,25.80031],[94.53816,25.79543],[94.53881,25.79176],[94.53552,25.78553],[94.53598,25.78286],[94.54041,25.78136],[94.54903,25.78182],[94.55341,25.77973],[94.55462,25.77683],[94.5518,25.74618],[94.55327,25.73801],[94.55972,25.73203],[94.57015,25.73804],[94.58436,25.75006],[94.58564,25.75512],[94.59597,25.76343],[94.60683,25.7786],[94.61338,25.777],[94.62206,25.77075],[94.63666,25.76933],[94.64288,25.77121],[94.64702,25.77656],[94.65852,25.77776],[94.66896,25.77256],[94.67802,25.77036],[94.69582,25.75749],[94.71291,25.75947],[94.70639,25.77031],[94.69857,25.78866],[94.68497,25.80041],[94.6628,25.80894],[94.65131,25.81562],[94.64086,25.81751],[94.62822,25.81559],[94.62358,25.81803],[94.61549,25.81574],[94.61028,25.81799],[94.60285,25.82624],[94.61072,25.83418],[94.61023,25.84414],[94.60238,25.85815],[94.60206,25.86231],[94.59588,25.87537],[94.59206,25.87906],[94.57625,25.88356],[94.56982,25.88967],[94.57197,25.89449],[94.57431,25.89441],[94.58321,25.90442],[94.58638,25.90596],[94.58706,25.91027],[94.59376,25.9141],[94.59591,25.92112],[94.59895,25.92288],[94.5994,25.9259],[94.60226,25.92756],[94.60366,25.93138],[94.60742,25.93178],[94.61092,25.93599],[94.60969,25.93821],[94.61488,25.94146],[94.62165,25.95368],[94.62534,25.95676],[94.62793,25.96348],[94.63065,25.96474],[94.63316,25.97083],[94.64185,25.98156],[94.6434,25.98662],[94.65135,25.99233],[94.65249,25.99646],[94.6567,26.00148],[94.65595,26.00349],[94.66316,26.00724],[94.66421,26.0114],[94.66779,26.01479],[94.66804,26.01853],[94.6734,26.02639],[94.67804,26.02888],[94.67991,26.03372],[94.68708,26.03806],[94.67912,26.04836],[94.68129,26.04975],[94.68243,26.0547],[94.68004,26.0564],[94.68269,26.06014],[94.68385,26.06592],[94.68784,26.06834],[94.68993,26.0725],[94.69283,26.07283],[94.69208,26.08125],[94.69367,26.08543],[94.68877,26.09436],[94.68828,26.10417],[94.69146,26.10911],[94.68924,26.11071],[94.68739,26.11545],[94.68833,26.13766],[94.6944,26.14197],[94.69559,26.14717],[94.69916,26.15212],[94.70312,26.16969],[94.70574,26.17201],[94.7034,26.17373],[94.69662,26.17153],[94.69563,26.17775],[94.69668,26.17864],[94.69374,26.18343],[94.69247,26.19038],[94.68947,26.19408],[94.68942,26.19826],[94.68716,26.19629],[94.68424,26.19909],[94.68095,26.19866],[94.67577,26.20647],[94.67288,26.20702],[94.67231,26.21067],[94.66662,26.21266],[94.66478,26.20888],[94.66227,26.20914],[94.66227,26.20649],[94.65992,26.20788],[94.65977,26.20538],[94.65645,26.20331],[94.64642,26.20872],[94.64288,26.21427],[94.63825,26.21736],[94.63155,26.20789],[94.6254,26.20483],[94.62377,26.19994],[94.61764,26.19853],[94.61243,26.19363],[94.60573,26.19713],[94.5997,26.19751],[94.59875,26.20027],[94.59582,26.20136],[94.59574,26.20488],[94.58743,26.21237],[94.5834,26.21906],[94.57203,26.20715],[94.55353,26.2019],[94.55035,26.20423],[94.54557,26.20415],[94.54375,26.20627],[94.53748,26.20752],[94.53115,26.217],[94.52612,26.21218],[94.51049,26.2125],[94.50212,26.21524],[94.4996,26.21399],[94.49922,26.21642],[94.4962,26.21918],[94.49827,26.2192],[94.49741,26.22464],[94.5008,26.22534],[94.50169,26.22743],[94.49888,26.2273],[94.49775,26.22922],[94.50014,26.22924],[94.50224,26.23239],[94.50555,26.23193],[94.50591,26.23492],[94.50863,26.23498],[94.50868,26.23263],[94.5135,26.2359],[94.5122,26.23917],[94.51374,26.23824],[94.51599,26.23945],[94.51401,26.24152],[94.5109,26.24025],[94.50985,26.24284],[94.50593,26.24485],[94.506,26.25266],[94.50072,26.25282],[94.49821,26.25494],[94.49954,26.25661],[94.49761,26.26016],[94.4989,26.26823],[94.49714,26.2682],[94.49587,26.27428],[94.49115,26.27505]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"252","area_level":"District","area_name":"Bishnupur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.78629,24.73014],[93.77057,24.73773],[93.77056,24.73521],[93.77341,24.73144],[93.76908,24.72642],[93.769,24.70631],[93.76612,24.69878],[93.76609,24.69249],[93.76176,24.68497],[93.75318,24.68624],[93.74887,24.68249],[93.74594,24.66365],[93.74874,24.64856],[93.73718,24.62219],[93.72134,24.59208],[93.71987,24.58328],[93.72553,24.56692],[93.72692,24.55435],[93.72975,24.54807],[93.7293,24.49947],[93.71639,24.48445],[93.71633,24.47188],[93.71202,24.46561],[93.7091,24.44928],[93.70479,24.44428],[93.70902,24.43294],[93.71042,24.42288],[93.72037,24.41405],[93.73183,24.42153],[93.73324,24.41901],[93.72892,24.40898],[93.72887,24.39767],[93.73171,24.39263],[93.73741,24.3926],[93.7403,24.40014],[93.74317,24.40138],[93.7446,24.40514],[93.74889,24.40511],[93.75457,24.39881],[93.7717,24.39873],[93.78596,24.39614],[93.80591,24.38975],[93.80446,24.38474],[93.80588,24.38347],[93.79864,24.36217],[93.80716,24.35585],[93.83145,24.36074],[93.83572,24.35821],[93.83997,24.35318],[93.84555,24.3169],[93.84841,24.30945],[93.86425,24.29233],[93.86424,24.28735],[93.87714,24.28618],[93.86708,24.30344],[93.86705,24.30834],[93.86274,24.31078],[93.85127,24.31195],[93.85414,24.31817],[93.85272,24.32687],[93.85843,24.32438],[93.85844,24.33059],[93.86131,24.33433],[93.85134,24.34185],[93.85995,24.35182],[93.85711,24.3556],[93.84853,24.35063],[93.84855,24.35564],[93.85141,24.35813],[93.85143,24.36189],[93.84716,24.36317],[93.8458,24.37572],[93.84867,24.37946],[93.84584,24.38325],[93.8459,24.39579],[93.84451,24.39957],[93.84024,24.40336],[93.83884,24.40839],[93.84028,24.4109],[93.846,24.41211],[93.83749,24.42347],[93.83752,24.42849],[93.84326,24.43348],[93.84754,24.43346],[93.85043,24.43972],[93.8533,24.44221],[93.85334,24.44975],[93.85622,24.45225],[93.85623,24.45477],[93.85339,24.4573],[93.86198,24.46102],[93.8706,24.46978],[93.87207,24.47482],[93.88075,24.48866],[93.87934,24.49246],[93.87225,24.49883],[93.87656,24.50136],[93.87804,24.50645],[93.87375,24.50774],[93.87386,24.518],[93.87102,24.51929],[93.86814,24.51801],[93.86674,24.52058],[93.86693,24.53862],[93.87276,24.55263],[93.86564,24.56382],[93.8685,24.57123],[93.8857,24.57739],[93.88714,24.58109],[93.88572,24.58601],[93.86858,24.59966],[93.87003,24.60464],[93.86862,24.60964],[93.86578,24.61216],[93.85287,24.60969],[93.85005,24.61597],[93.85295,24.62098],[93.8501,24.62351],[93.84581,24.62479],[93.81708,24.60729],[93.8085,24.60984],[93.80281,24.61616],[93.80285,24.62245],[93.81148,24.62997],[93.81438,24.63625],[93.80153,24.64387],[93.79738,24.66908],[93.83326,24.68027],[93.84329,24.6815],[93.8447,24.67645],[93.86477,24.67763],[93.87338,24.68013],[93.88777,24.69021],[93.88926,24.6978],[93.88789,24.70664],[93.88934,24.71043],[93.87932,24.71042],[93.86932,24.71548],[93.83923,24.71991],[93.8292,24.7187],[93.82062,24.71998],[93.80205,24.73135],[93.79631,24.72885],[93.78629,24.73014]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"253","area_level":"District","area_name":"Chandel","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.99991,24.44627],[94.0001,24.46054],[93.99672,24.46367],[93.9824,24.46825],[93.98093,24.48261],[93.97665,24.48776],[93.96803,24.48508],[93.96939,24.46338],[93.97503,24.4474],[93.9705,24.42994],[93.9632,24.41878],[93.96455,24.40963],[93.96023,24.40569],[93.95453,24.4082],[93.94881,24.40813],[93.9445,24.40428],[93.94303,24.40047],[93.94441,24.39288],[93.93443,24.39414],[93.92581,24.3866],[93.92289,24.3753],[93.91571,24.36907],[93.9099,24.35031],[93.90841,24.33781],[93.91266,24.32906],[93.92119,24.32151],[93.92968,24.30898],[93.93678,24.29524],[93.93677,24.29029],[93.92405,24.27941],[93.91835,24.28068],[93.91694,24.27824],[93.91983,24.27085],[93.9184,24.26215],[93.91409,24.25963],[93.90837,24.2621],[93.90822,24.24939],[93.89525,24.2467],[93.88942,24.23904],[93.88223,24.23649],[93.87972,24.26574],[93.88419,24.27852],[93.88283,24.28361],[93.87714,24.28618],[93.86983,24.27216],[93.86108,24.26313],[93.85958,24.25802],[93.86238,24.25167],[93.86087,24.24406],[93.86515,24.2428],[93.85792,24.23271],[93.85933,24.23018],[93.86931,24.2289],[93.87641,24.22511],[93.87638,24.22007],[93.8735,24.21755],[93.86493,24.21632],[93.8649,24.21129],[93.86201,24.20501],[93.8549,24.20755],[93.84923,24.2126],[93.84349,24.20633],[93.8406,24.1963],[93.83631,24.1938],[93.8334,24.18377],[93.82484,24.18004],[93.82196,24.17377],[93.80912,24.16754],[93.80479,24.15376],[93.79763,24.14499],[93.78765,24.14377],[93.78622,24.14],[93.77767,24.13878],[93.77235,24.12946],[93.77445,24.12577],[93.76875,24.12075],[93.77442,24.10566],[93.77293,24.09184],[93.7672,24.08809],[93.76854,24.08055],[93.76276,24.07679],[93.76549,24.07049],[93.75956,24.0642],[93.75752,24.05032],[93.75306,24.04781],[93.7527,24.04148],[93.74333,24.0301],[93.73498,24.00353],[93.74129,24.00428],[93.7418,23.99682],[93.74409,23.99937],[93.74425,24.00275],[93.7542,24.00542],[93.75777,24.00304],[93.75939,24.00366],[93.76341,23.99466],[93.76217,23.99121],[93.76495,23.99006],[93.76476,23.98628],[93.76862,23.98236],[93.76788,23.98135],[93.77123,23.97628],[93.77052,23.97448],[93.77359,23.97108],[93.77174,23.96892],[93.78004,23.9645],[93.77947,23.96301],[93.78168,23.96131],[93.78518,23.9617],[93.79253,23.95123],[93.79763,23.94767],[93.79837,23.94179],[93.80084,23.93829],[93.79977,23.93264],[93.80738,23.92708],[93.81596,23.92633],[93.81966,23.92371],[93.82481,23.92653],[93.83327,23.92734],[93.83474,23.93018],[93.83999,23.93202],[93.85937,23.93197],[93.8698,23.93835],[93.87199,23.94126],[93.88288,23.94182],[93.89231,23.94981],[93.8937,23.95314],[93.90259,23.94995],[93.91949,23.95173],[93.93046,23.95025],[93.94423,23.94626],[93.94997,23.94179],[93.95514,23.9343],[93.95442,23.93246],[93.95833,23.92946],[93.96159,23.92792],[93.96194,23.92949],[93.96409,23.92964],[93.97573,23.92469],[93.9807,23.92875],[93.98511,23.92684],[93.9912,23.92756],[93.99131,23.92595],[93.9985,23.92002],[94.00526,23.91895],[94.01934,23.91198],[94.03315,23.89724],[94.04682,23.88818],[94.06217,23.88057],[94.0843,23.88143],[94.09535,23.87154],[94.10229,23.8561],[94.12067,23.83285],[94.12556,23.8333],[94.13314,23.84149],[94.13763,23.85242],[94.14081,23.85384],[94.15147,23.85247],[94.15503,23.85524],[94.15696,23.86352],[94.1622,23.91958],[94.16535,23.92964],[94.17603,23.93327],[94.18686,23.94128],[94.18734,23.9646],[94.19268,23.97581],[94.19855,23.98791],[94.234,24.03929],[94.23447,24.04306],[94.22995,24.05547],[94.23068,24.05742],[94.23895,24.05778],[94.24273,24.06854],[94.25154,24.08191],[94.25412,24.09212],[94.25408,24.11411],[94.23573,24.11743],[94.21065,24.12481],[94.19151,24.13292],[94.19085,24.13833],[94.18267,24.14289],[94.16938,24.15737],[94.17097,24.17688],[94.16856,24.17967],[94.16378,24.19357],[94.16451,24.20096],[94.17128,24.21724],[94.17363,24.24945],[94.17703,24.27037],[94.16845,24.28042],[94.15296,24.29405],[94.14384,24.29762],[94.13208,24.31285],[94.11728,24.34599],[94.1215,24.36109],[94.11924,24.37801],[94.11067,24.38724],[94.09235,24.38353],[94.08216,24.38604],[94.06044,24.40472],[94.05914,24.40821],[94.05446,24.41155],[94.04255,24.41577],[94.0222,24.43788],[94.01899,24.44436],[94.00203,24.44146],[93.99991,24.44627]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"254","area_level":"District","area_name":"Churachandpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.71423,24.60466],[93.6971,24.61219],[93.68564,24.60976],[93.67704,24.60475],[93.65845,24.60731],[93.65128,24.6023],[93.64982,24.59476],[93.64696,24.59099],[93.63126,24.60485],[93.62268,24.60361],[93.6198,24.6011],[93.6126,24.58226],[93.60829,24.57599],[93.60398,24.57097],[93.5954,24.56973],[93.59254,24.56596],[93.58682,24.56848],[93.58397,24.57477],[93.57256,24.58484],[93.56829,24.59113],[93.55683,24.58487],[93.55539,24.5811],[93.54681,24.58112],[93.54394,24.57735],[93.53965,24.57861],[93.53677,24.57107],[93.53391,24.56856],[93.53388,24.55725],[93.52959,24.556],[93.50958,24.56482],[93.49813,24.55478],[93.49527,24.55604],[93.48954,24.55102],[93.48099,24.56611],[93.47528,24.56988],[93.46813,24.56989],[93.4624,24.56738],[93.45093,24.54477],[93.4452,24.53849],[93.42663,24.55484],[93.40948,24.55987],[93.40377,24.56365],[93.39805,24.57245],[93.39234,24.57496],[93.38661,24.56491],[93.38946,24.55862],[93.38085,24.52846],[93.38371,24.52344],[93.388,24.52469],[93.39229,24.51966],[93.40229,24.52092],[93.40657,24.51714],[93.39941,24.50583],[93.38797,24.50081],[93.38511,24.49704],[93.38225,24.48951],[93.3851,24.48573],[93.38081,24.48322],[93.38367,24.47945],[93.37938,24.47694],[93.38223,24.4694],[93.37508,24.46311],[93.37366,24.45682],[93.36793,24.4518],[93.36792,24.44552],[93.3765,24.44426],[93.37649,24.43546],[93.37363,24.42918],[93.37505,24.41536],[93.36504,24.40656],[93.37075,24.40153],[93.37074,24.39525],[93.37645,24.3965],[93.37646,24.39399],[93.37931,24.39148],[93.38789,24.39902],[93.39217,24.40027],[93.39646,24.39901],[93.3993,24.39524],[93.4093,24.39524],[93.41358,24.39021],[93.43785,24.38391],[93.46069,24.38515],[93.47355,24.38262],[93.48636,24.36627],[93.49635,24.3625],[93.49633,24.35245],[93.48919,24.34491],[93.48774,24.33862],[93.4906,24.33485],[93.48631,24.33109],[93.48487,24.32606],[93.48772,24.3248],[93.48486,24.32229],[93.48486,24.31727],[93.48199,24.3135],[93.48199,24.31099],[93.4777,24.30974],[93.47911,24.30094],[93.47626,24.29717],[93.47768,24.29591],[93.47196,24.29214],[93.47482,24.28963],[93.4691,24.27958],[93.47052,24.27706],[93.4648,24.26827],[93.45909,24.26827],[93.46193,24.26199],[93.4434,24.24569],[93.43765,24.23312],[93.4362,24.22306],[93.43191,24.22054],[93.41899,24.19793],[93.41614,24.20045],[93.41616,24.20547],[93.40472,24.19919],[93.39175,24.16651],[93.3903,24.15771],[93.39163,24.13257],[93.3831,24.12127],[93.37601,24.1175],[93.37178,24.11248],[93.36484,24.09198],[93.3678,24.09006],[93.37001,24.091],[93.37617,24.08962],[93.3839,24.08522],[93.38482,24.08672],[93.39005,24.08265],[93.39484,24.08409],[93.39644,24.08284],[93.39899,24.08518],[93.40552,24.07936],[93.40722,24.0797],[93.40672,24.07635],[93.40958,24.07657],[93.41027,24.07309],[93.4141,24.07407],[93.41442,24.07234],[93.41695,24.07141],[93.41588,24.06923],[93.42167,24.06403],[93.42593,24.05071],[93.42501,24.04536],[93.428,24.04107],[93.4276,24.03721],[93.42992,24.03653],[93.42853,24.03566],[93.42898,24.03299],[93.43327,24.02712],[93.43307,24.02401],[93.44079,24.01472],[93.44321,24.01371],[93.45024,24.01529],[93.45309,24.01362],[93.45311,23.9995],[93.46114,23.99863],[93.46362,23.99406],[93.46265,23.98364],[93.46054,23.98071],[93.4635,23.97337],[93.46616,23.9734],[93.46631,23.97148],[93.47507,23.9615],[93.48146,23.95716],[93.48614,23.95722],[93.48641,23.95577],[93.49012,23.95439],[93.48967,23.95115],[93.49277,23.95057],[93.49494,23.95346],[93.49682,23.95184],[93.49538,23.94962],[93.49892,23.94554],[93.50257,23.94475],[93.50476,23.94219],[93.5148,23.94255],[93.52492,23.95636],[93.53001,23.95455],[93.53449,23.95928],[93.53923,23.96076],[93.54358,23.96086],[93.54547,23.95842],[93.55011,23.95916],[93.55008,23.96166],[93.55276,23.96184],[93.55123,23.9636],[93.55337,23.96428],[93.5536,23.96897],[93.5553,23.97003],[93.55407,23.97218],[93.55567,23.97437],[93.55481,23.97632],[93.5573,23.97822],[93.55745,23.98142],[93.55977,23.98207],[93.56276,23.97887],[93.5648,23.98025],[93.56979,23.97667],[93.57094,23.9775],[93.57044,23.97046],[93.5737,23.96893],[93.57355,23.96672],[93.57631,23.96679],[93.57979,23.96265],[93.58517,23.95995],[93.59166,23.96059],[93.59326,23.96265],[93.59252,23.9638],[93.59641,23.96554],[93.59744,23.9702],[93.5989,23.96938],[93.59896,23.97239],[93.60816,23.97162],[93.60897,23.97762],[93.60783,23.98063],[93.61379,23.99227],[93.61186,23.99732],[93.61724,24.00703],[93.62335,24.01092],[93.62657,24.01107],[93.629,24.00872],[93.6355,24.01061],[93.64245,24.00869],[93.65298,24.00902],[93.65432,24.0082],[93.65341,24.00624],[93.65465,24.00244],[93.65715,24.00178],[93.65925,24.0029],[93.66322,24.00149],[93.67164,24.00235],[93.67534,24.00566],[93.68206,24.00715],[93.6847,24.00611],[93.69031,24.00857],[93.70015,24.00418],[93.7174,24.00045],[93.72403,23.9972],[93.73851,24.0004],[93.74129,24.00428],[93.73498,24.00353],[93.73995,24.02251],[93.74333,24.0301],[93.7527,24.04148],[93.75306,24.04781],[93.75752,24.05032],[93.75956,24.0642],[93.76549,24.07049],[93.76276,24.07679],[93.76854,24.08055],[93.7672,24.08809],[93.77293,24.09184],[93.77442,24.10566],[93.76875,24.12075],[93.77445,24.12577],[93.77235,24.12946],[93.77767,24.13878],[93.78622,24.14],[93.78765,24.14377],[93.79763,24.14499],[93.80479,24.15376],[93.80912,24.16754],[93.82196,24.17377],[93.82484,24.18004],[93.8334,24.18377],[93.83631,24.1938],[93.8406,24.1963],[93.84349,24.20633],[93.84923,24.2126],[93.8549,24.20755],[93.86201,24.20501],[93.8649,24.21129],[93.86493,24.21632],[93.8735,24.21755],[93.87638,24.22007],[93.87641,24.22511],[93.86931,24.2289],[93.85933,24.23018],[93.85792,24.23271],[93.86515,24.2428],[93.86087,24.24406],[93.86238,24.25167],[93.85958,24.25802],[93.86108,24.26313],[93.86983,24.27216],[93.87714,24.28618],[93.86424,24.28735],[93.86425,24.29233],[93.84841,24.30945],[93.84555,24.3169],[93.83997,24.35318],[93.83145,24.36074],[93.80716,24.35585],[93.79864,24.36217],[93.80588,24.38347],[93.80446,24.38474],[93.80591,24.38975],[93.78596,24.39614],[93.7717,24.39873],[93.75457,24.39881],[93.74889,24.40511],[93.7446,24.40514],[93.74317,24.40138],[93.7403,24.40014],[93.73741,24.3926],[93.73171,24.39263],[93.72887,24.39767],[93.72892,24.40898],[93.73324,24.41901],[93.73183,24.42153],[93.72037,24.41405],[93.71042,24.42288],[93.70902,24.43294],[93.70479,24.44428],[93.7091,24.44928],[93.71202,24.46561],[93.71633,24.47188],[93.71639,24.48445],[93.7293,24.49947],[93.72975,24.54807],[93.72692,24.55435],[93.72553,24.56692],[93.71987,24.58328],[93.72134,24.59208],[93.7185,24.59962],[93.71423,24.60466]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"255","area_level":"District","area_name":"Imphal East","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.02918,25.02049],[94.02909,25.02681],[94.02457,25.03475],[94.03047,25.0503],[94.02041,25.04596],[94.01676,25.04181],[94.01259,25.03255],[94.01797,25.01858],[94.0172,25.00684],[94.01331,25.00381],[94.00335,25.00347],[93.99673,25.00053],[94.01936,24.9976],[94.02072,24.99271],[94.01642,24.97284],[94.01499,24.95492],[94.01215,24.95118],[94.00401,24.95177],[93.99686,24.95611],[93.99141,24.95114],[93.99084,24.94333],[93.97574,24.94774],[93.97166,24.94991],[93.97018,24.95474],[93.96751,24.95672],[93.96353,24.95779],[93.96089,24.956],[93.95295,24.96116],[93.9569,24.95439],[93.95283,24.95142],[93.96232,24.94989],[93.96374,24.94625],[93.97755,24.94053],[93.97774,24.93759],[93.98211,24.9341],[93.98264,24.92373],[93.98411,24.92256],[93.97851,24.91715],[93.97414,24.92193],[93.9739,24.93083],[93.96824,24.93245],[93.96673,24.93701],[93.96117,24.93649],[93.95135,24.9385],[93.94989,24.93262],[93.9527,24.93009],[93.96124,24.92961],[93.95981,24.9238],[93.94524,24.91684],[93.94657,24.91184],[93.95975,24.91658],[93.95826,24.91294],[93.94497,24.90431],[93.94494,24.90305],[93.95078,24.90179],[93.94342,24.89677],[93.93907,24.89676],[93.9333,24.89427],[93.93183,24.89679],[93.89812,24.86186],[93.89532,24.85304],[93.90819,24.85048],[93.91245,24.85425],[93.93106,24.84408],[93.93393,24.83776],[93.94253,24.83268],[93.94003,24.8226],[93.93698,24.78993],[93.93408,24.78114],[93.93404,24.76722],[93.93108,24.7495],[93.93944,24.71576],[93.9409,24.71827],[93.94371,24.70942],[93.95654,24.70794],[93.96498,24.70517],[93.96639,24.71141],[93.97054,24.7125],[93.9691,24.72003],[93.97045,24.7237],[93.9968,24.72798],[94.00109,24.72473],[94.00083,24.71446],[94.00448,24.70904],[94.01446,24.70088],[94.0144,24.69562],[94.00691,24.68657],[94.01237,24.68255],[94.01664,24.66727],[94.0201,24.66719],[94.02197,24.67293],[94.03021,24.67293],[94.02939,24.67783],[94.03222,24.67302],[94.03871,24.6768],[94.0382,24.67247],[94.04395,24.67462],[94.04344,24.68102],[94.05544,24.67998],[94.05839,24.68601],[94.07252,24.6851],[94.07242,24.68804],[94.07772,24.68661],[94.07857,24.68922],[94.08255,24.6876],[94.08393,24.69315],[94.07903,24.6989],[94.07488,24.70749],[94.06674,24.70571],[94.06406,24.69506],[94.05951,24.69235],[94.05816,24.70312],[94.06314,24.70844],[94.0606,24.71146],[94.06349,24.71289],[94.06396,24.7163],[94.06202,24.71668],[94.06583,24.7188],[94.06601,24.72117],[94.0566,24.71879],[94.05981,24.72807],[94.06501,24.72936],[94.06123,24.7315],[94.06139,24.73473],[94.06402,24.73668],[94.06168,24.73877],[94.06262,24.74104],[94.06684,24.73902],[94.06618,24.74236],[94.07069,24.74283],[94.07243,24.74688],[94.07146,24.75143],[94.07491,24.75269],[94.08455,24.80683],[94.09647,24.83102],[94.0928,24.85021],[94.09694,24.85239],[94.10733,24.85346],[94.11106,24.87665],[94.11942,24.88576],[94.12425,24.90037],[94.14174,24.91873],[94.13616,24.92535],[94.13369,24.93819],[94.12908,24.93904],[94.12599,24.93664],[94.12592,24.9226],[94.11744,24.91678],[94.10991,24.90594],[94.0958,24.90385],[94.09183,24.88989],[94.07611,24.88097],[94.06694,24.88004],[94.06183,24.88297],[94.05896,24.8876],[94.0572,24.90149],[94.06516,24.94095],[94.05546,24.94099],[94.05021,24.94272],[94.05101,24.94463],[94.05875,24.94837],[94.06144,24.95152],[94.05786,24.9543],[94.0462,24.9556],[94.04373,24.95781],[94.04508,24.97342],[94.03082,24.96676],[94.0313,24.97283],[94.03574,24.9808],[94.04337,24.98207],[94.04131,24.98757],[94.03215,24.98647],[94.03241,24.98856],[94.03763,24.99523],[94.04701,24.99686],[94.04009,25.00423],[94.03386,25.00281],[94.02868,25.00383],[94.03074,25.01089],[94.03648,25.01079],[94.03817,25.01367],[94.04303,25.01127],[94.04554,25.01261],[94.04034,25.01915],[94.03184,25.01774],[94.02918,25.02049]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"256","area_level":"District","area_name":"Imphal West","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.90755,24.97422],[93.9034,24.97553],[93.91042,24.98437],[93.91177,25.0008],[93.93124,25.015],[93.95478,25.02722],[93.98138,25.05557],[93.98459,25.06463],[93.98319,25.07032],[93.97921,25.07358],[93.97223,25.0755],[93.96144,25.07256],[93.91855,25.05586],[93.91487,25.04529],[93.90761,25.04087],[93.89774,25.03149],[93.88999,25.0185],[93.88873,25.01008],[93.8851,25.00087],[93.86917,24.97562],[93.86281,24.95654],[93.84473,24.9514],[93.84147,24.94379],[93.84106,24.9299],[93.83228,24.92232],[93.82498,24.89082],[93.81925,24.88704],[93.81498,24.87194],[93.80782,24.86942],[93.80496,24.86438],[93.80928,24.85684],[93.80642,24.85431],[93.80788,24.83668],[93.78495,24.8191],[93.78493,24.80902],[93.78063,24.80526],[93.78349,24.79266],[93.79206,24.775],[93.78774,24.76998],[93.7906,24.76619],[93.77908,24.74734],[93.77762,24.73978],[93.77057,24.73773],[93.78629,24.73014],[93.79631,24.72885],[93.80205,24.73135],[93.82062,24.71998],[93.8292,24.7187],[93.83923,24.71991],[93.86932,24.71548],[93.87932,24.71042],[93.88934,24.71043],[93.88789,24.70664],[93.88926,24.6978],[93.88777,24.69021],[93.87338,24.68013],[93.86477,24.67763],[93.8447,24.67645],[93.84329,24.6815],[93.83326,24.68027],[93.79738,24.66908],[93.80153,24.64387],[93.81438,24.63625],[93.81148,24.62997],[93.80285,24.62245],[93.80281,24.61616],[93.8085,24.60984],[93.81708,24.60729],[93.84581,24.62479],[93.8501,24.62351],[93.85295,24.62098],[93.85005,24.61597],[93.85287,24.60969],[93.86578,24.61216],[93.86862,24.60964],[93.87003,24.60464],[93.86858,24.59966],[93.88572,24.58601],[93.88714,24.58109],[93.8857,24.57739],[93.8685,24.57123],[93.86564,24.56382],[93.87276,24.55263],[93.89278,24.55504],[93.89852,24.55756],[93.90426,24.56252],[93.90856,24.56989],[93.91001,24.5797],[93.90432,24.59085],[93.90861,24.5908],[93.91012,24.60694],[93.90871,24.61071],[93.90442,24.61198],[93.89724,24.60703],[93.88869,24.61457],[93.8973,24.61829],[93.89737,24.62833],[93.90169,24.63208],[93.90744,24.63584],[93.91748,24.63704],[93.92473,24.65217],[93.92902,24.65089],[93.93186,24.64582],[93.93197,24.66228],[93.92481,24.66104],[93.91337,24.6636],[93.91196,24.66614],[93.91484,24.66994],[93.91487,24.67248],[93.90628,24.67249],[93.90199,24.67503],[93.90632,24.6801],[93.90351,24.6877],[93.905,24.69532],[93.90359,24.70039],[93.90931,24.69916],[93.91506,24.70427],[93.92362,24.70308],[93.92366,24.70815],[93.92654,24.71323],[93.93512,24.71326],[93.93944,24.71576],[93.93108,24.7495],[93.93404,24.76722],[93.93408,24.78114],[93.93698,24.78993],[93.94003,24.8226],[93.94253,24.83268],[93.93393,24.83776],[93.93106,24.84408],[93.91245,24.85425],[93.90819,24.85048],[93.89532,24.85304],[93.89812,24.86186],[93.93183,24.89679],[93.93048,24.90309],[93.92479,24.90438],[93.91063,24.90074],[93.91634,24.90698],[93.91505,24.91204],[93.91936,24.91453],[93.91956,24.92085],[93.92248,24.92334],[93.92294,24.95478],[93.9303,24.96082],[93.9334,24.96574],[93.92921,24.96342],[93.92686,24.96607],[93.90668,24.94498],[93.9042,24.92731],[93.89312,24.9337],[93.88642,24.94132],[93.89033,24.95273],[93.89509,24.95651],[93.90255,24.95899],[93.90466,24.96407],[93.90784,24.96657],[93.91671,24.97024],[93.91435,24.97284],[93.90859,24.97166],[93.90755,24.97422]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"257","area_level":"District","area_name":"Senapati","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.44589,25.53687],[94.4607,25.55505],[94.4669,25.583],[94.48325,25.59657],[94.4897,25.60753],[94.48673,25.61437],[94.46962,25.61625],[94.44485,25.59574],[94.4434,25.59269],[94.4256,25.58741],[94.41796,25.57069],[94.42068,25.5677],[94.42194,25.55612],[94.42113,25.54759],[94.41582,25.53733],[94.41234,25.53663],[94.40644,25.53823],[94.3841,25.53132],[94.36025,25.51629],[94.32463,25.50322],[94.31629,25.49416],[94.30914,25.48935],[94.29826,25.48955],[94.29464,25.49565],[94.28641,25.50449],[94.28241,25.50667],[94.27552,25.50043],[94.26983,25.49799],[94.25293,25.49845],[94.24775,25.49411],[94.22744,25.4934],[94.22485,25.4911],[94.2187,25.49188],[94.2156,25.49475],[94.21059,25.49536],[94.20857,25.49795],[94.20868,25.50331],[94.20266,25.5068],[94.20265,25.50911],[94.18653,25.52598],[94.18595,25.52984],[94.18973,25.5374],[94.19071,25.54763],[94.18769,25.54616],[94.17862,25.54849],[94.17541,25.54543],[94.16377,25.54228],[94.15939,25.5452],[94.15601,25.55054],[94.14876,25.54314],[94.14406,25.52699],[94.1411,25.52295],[94.1346,25.51902],[94.10199,25.52429],[94.08805,25.52815],[94.08847,25.5334],[94.09213,25.53715],[94.09091,25.54187],[94.08192,25.55519],[94.07603,25.55706],[94.06541,25.55448],[94.06071,25.56187],[94.05017,25.5723],[94.04206,25.57651],[94.03969,25.57304],[94.03507,25.57543],[94.03524,25.5786],[94.03096,25.57707],[94.02949,25.58029],[94.02336,25.58359],[94.02162,25.589],[94.01086,25.59177],[94.00651,25.59105],[94.00378,25.58658],[94.00786,25.57472],[94.00838,25.57093],[94.0065,25.56693],[94.00353,25.56548],[93.99671,25.56953],[93.9766,25.56694],[93.97398,25.56186],[93.96135,25.55229],[93.95353,25.55248],[93.93968,25.5592],[93.92631,25.56119],[93.91553,25.55985],[93.91331,25.56254],[93.89645,25.56458],[93.88819,25.5643],[93.87461,25.55788],[93.8585,25.55346],[93.8328,25.55905],[93.82978,25.55736],[93.82956,25.55241],[93.82136,25.55201],[93.81965,25.54417],[93.81602,25.5404],[93.81223,25.54148],[93.80416,25.54056],[93.77583,25.53414],[93.76699,25.53639],[93.76733,25.53213],[93.76451,25.5214],[93.76564,25.51382],[93.76061,25.5116],[93.7621,25.496],[93.76566,25.49286],[93.78475,25.50255],[93.79353,25.50042],[93.80386,25.49157],[93.81011,25.48073],[93.80521,25.46159],[93.80862,25.45954],[93.81379,25.45912],[93.81914,25.46104],[93.829,25.43699],[93.83007,25.42739],[93.85042,25.42666],[93.86228,25.42466],[93.86891,25.42188],[93.88603,25.42325],[93.88938,25.42207],[93.89961,25.41695],[93.90463,25.41024],[93.91347,25.4046],[93.91894,25.39715],[93.92061,25.39031],[93.96479,25.39782],[93.97001,25.39801],[93.97369,25.39366],[93.97593,25.38705],[93.9746,25.37507],[93.96816,25.3576],[93.96348,25.33604],[93.96612,25.30141],[93.97218,25.28704],[93.98004,25.27696],[93.98351,25.27479],[93.99673,25.27452],[94.00126,25.26771],[94.01116,25.26236],[94.01048,25.24843],[93.99673,25.20769],[93.99934,25.20131],[94.0036,25.19752],[94.01204,25.19461],[94.03342,25.19387],[94.04333,25.18967],[94.06047,25.18746],[94.06761,25.18396],[94.07666,25.1827],[94.08957,25.17677],[94.09676,25.17716],[94.117,25.18496],[94.13238,25.18871],[94.13968,25.18965],[94.15218,25.18807],[94.17046,25.18408],[94.17759,25.17781],[94.18167,25.16835],[94.18862,25.17205],[94.19252,25.17661],[94.20476,25.17649],[94.21252,25.17864],[94.21876,25.18253],[94.22108,25.18979],[94.22542,25.19592],[94.24283,25.20369],[94.248,25.20947],[94.25548,25.22828],[94.28141,25.23937],[94.2956,25.2495],[94.32303,25.27884],[94.32769,25.29342],[94.33595,25.30791],[94.34466,25.3145],[94.34869,25.32385],[94.35898,25.34012],[94.37729,25.35773],[94.37603,25.36044],[94.37804,25.3658],[94.37514,25.36919],[94.37411,25.37719],[94.37468,25.38837],[94.37833,25.39708],[94.38301,25.40349],[94.37908,25.40866],[94.38559,25.41767],[94.38268,25.42158],[94.38451,25.42343],[94.39039,25.42281],[94.40069,25.44086],[94.4022,25.4487],[94.41883,25.46688],[94.41598,25.47171],[94.42439,25.49011],[94.42975,25.50994],[94.43507,25.51635],[94.43533,25.51928],[94.44589,25.53687]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"258","area_level":"District","area_name":"Tamenglong","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.24961,24.97312],[93.25716,24.97362],[93.26092,24.97146],[93.26301,24.96134],[93.26087,24.95855],[93.25,24.95514],[93.24536,24.95081],[93.24913,24.94817],[93.24732,24.94512],[93.25097,24.94341],[93.25127,24.94064],[93.24762,24.9398],[93.24492,24.94119],[93.23681,24.93716],[93.23713,24.93253],[93.24264,24.93611],[93.2451,24.93539],[93.24471,24.9325],[93.23849,24.92568],[93.23934,24.92437],[93.24597,24.92525],[93.24884,24.91485],[93.24406,24.91055],[93.2352,24.91141],[93.23778,24.90582],[93.24069,24.90475],[93.23921,24.8996],[93.23016,24.89848],[93.22927,24.89621],[93.23235,24.89214],[93.22758,24.89293],[93.22599,24.89169],[93.22799,24.88834],[93.23155,24.88754],[93.2327,24.8844],[93.22774,24.88503],[93.22492,24.88018],[93.22177,24.88183],[93.22196,24.87766],[93.22644,24.87283],[93.22036,24.87352],[93.22167,24.86981],[93.2169,24.86535],[93.21471,24.86529],[93.21379,24.86093],[93.21164,24.85885],[93.24065,24.85396],[93.24208,24.85144],[93.23921,24.84138],[93.22204,24.80618],[93.2206,24.79486],[93.21344,24.79109],[93.20199,24.77977],[93.19626,24.77725],[93.1891,24.7785],[93.18623,24.78226],[93.18623,24.78477],[93.1762,24.78351],[93.16905,24.76213],[93.15475,24.74325],[93.14619,24.72565],[93.1419,24.71182],[93.14476,24.70931],[93.16194,24.70933],[93.1777,24.70558],[93.18916,24.7056],[93.20347,24.7031],[93.21062,24.70687],[93.21635,24.70688],[93.22494,24.70186],[93.22639,24.68552],[93.22925,24.68049],[93.25645,24.66921],[93.27363,24.6667],[93.28221,24.66922],[93.29367,24.67928],[93.29653,24.68556],[93.2951,24.70567],[93.30082,24.70568],[93.31084,24.69939],[93.32374,24.71322],[93.33376,24.71951],[93.33663,24.72454],[93.33233,24.72705],[93.31945,24.72956],[93.31801,24.73333],[93.32374,24.74087],[93.33377,24.74967],[93.32519,24.7635],[93.33235,24.76601],[93.3395,24.75847],[93.3481,24.75973],[93.35527,24.7635],[93.3567,24.76601],[93.35527,24.77103],[93.35099,24.77606],[93.35241,24.78235],[93.35958,24.7924],[93.35529,24.79743],[93.35816,24.80498],[93.3596,24.81629],[93.36246,24.8188],[93.36964,24.82005],[93.37824,24.8188],[93.3854,24.81503],[93.3854,24.81628],[93.3897,24.81503],[93.39542,24.80874],[93.3983,24.81502],[93.39686,24.81879],[93.3983,24.82131],[93.39686,24.8213],[93.3983,24.82382],[93.43558,24.83763],[93.44419,24.84516],[93.45423,24.84641],[93.47715,24.84011],[93.49867,24.84511],[93.50296,24.84259],[93.49865,24.83758],[93.50293,24.83002],[93.5015,24.82752],[93.50292,24.82374],[93.51438,24.82121],[93.52441,24.81744],[93.52727,24.81491],[93.53157,24.81491],[93.53586,24.81113],[93.54446,24.81112],[93.55161,24.80734],[93.55591,24.80859],[93.55735,24.80984],[93.55448,24.81111],[93.5631,24.81612],[93.56739,24.81361],[93.57026,24.81486],[93.5674,24.81863],[93.5717,24.82114],[93.5674,24.8224],[93.56886,24.82994],[93.57317,24.83245],[93.60755,24.82736],[93.61895,24.80346],[93.62895,24.79339],[93.66191,24.79331],[93.67043,24.7984],[93.67616,24.79964],[93.67902,24.80341],[93.68474,24.8059],[93.68618,24.80966],[93.6919,24.81468],[93.69905,24.81465],[93.70191,24.82093],[93.70477,24.81966],[93.71335,24.82089],[93.7205,24.8259],[93.7205,24.82966],[93.71763,24.83469],[93.72476,24.84849],[93.73331,24.85473],[93.72754,24.86354],[93.72746,24.87234],[93.72024,24.87738],[93.71729,24.88242],[93.71148,24.88621],[93.70707,24.8925],[93.70696,24.89753],[93.70249,24.91137],[93.72281,24.93394],[93.74473,24.94143],[93.76703,24.95401],[93.7702,24.95782],[93.77755,24.9578],[93.78372,24.96161],[93.79108,24.96286],[93.79766,24.97049],[93.79866,24.97817],[93.79806,24.98457],[93.79285,24.98843],[93.79738,24.99222],[93.79194,24.99857],[93.79038,25.00743],[93.79242,25.01268],[93.79659,25.01691],[93.80134,25.01855],[93.81365,25.01628],[93.81648,25.01733],[93.81781,25.02396],[93.81491,25.03458],[93.81097,25.04176],[93.81095,25.0455],[93.80091,25.06103],[93.79736,25.07741],[93.79802,25.08093],[93.79605,25.08333],[93.79664,25.09922],[93.79502,25.10652],[93.7905,25.11656],[93.78074,25.12594],[93.77435,25.15041],[93.77572,25.15353],[93.77929,25.15552],[93.78021,25.15857],[93.7885,25.16657],[93.79197,25.16677],[93.79502,25.17001],[93.79337,25.1727],[93.7941,25.17542],[93.79713,25.17584],[93.7985,25.18535],[93.80253,25.18508],[93.81507,25.19985],[93.81559,25.20705],[93.82724,25.2214],[93.85217,25.22882],[93.86554,25.24404],[93.88463,25.25722],[93.88449,25.25964],[93.90221,25.27172],[93.92292,25.27168],[93.9277,25.27303],[93.95227,25.28687],[93.95528,25.29011],[93.94659,25.29052],[93.94413,25.29258],[93.93753,25.30209],[93.93351,25.31226],[93.92777,25.3143],[93.91774,25.3288],[93.90565,25.33023],[93.896,25.33304],[93.89278,25.33556],[93.88642,25.33454],[93.88647,25.33766],[93.88985,25.33963],[93.89039,25.34539],[93.88892,25.34964],[93.89919,25.35753],[93.90065,25.36611],[93.90441,25.36902],[93.90562,25.37719],[93.91356,25.38548],[93.91985,25.38655],[93.92061,25.39031],[93.91894,25.39715],[93.91347,25.4046],[93.90463,25.41024],[93.89961,25.41695],[93.88603,25.42325],[93.86891,25.42188],[93.86228,25.42466],[93.85042,25.42666],[93.83007,25.42739],[93.829,25.43699],[93.81914,25.46104],[93.81379,25.45912],[93.80862,25.45954],[93.80521,25.46159],[93.80144,25.45943],[93.7864,25.43941],[93.7843,25.43191],[93.77672,25.42553],[93.77726,25.42076],[93.76062,25.4142],[93.74288,25.40181],[93.73628,25.39129],[93.73752,25.38554],[93.73598,25.38052],[93.7193,25.37171],[93.71519,25.3665],[93.71424,25.35774],[93.70779,25.35424],[93.68899,25.35778],[93.68766,25.34361],[93.68331,25.3274],[93.68012,25.32582],[93.66829,25.32492],[93.67015,25.31348],[93.66912,25.30772],[93.66229,25.3045],[93.66093,25.30046],[93.66179,25.29465],[93.6478,25.27526],[93.64606,25.26535],[93.63973,25.26213],[93.63927,25.25626],[93.63425,25.24666],[93.62803,25.23918],[93.62506,25.23203],[93.6173,25.2212],[93.60872,25.20249],[93.60415,25.19836],[93.60043,25.20063],[93.59717,25.1987],[93.59327,25.20062],[93.58918,25.20025],[93.59101,25.20746],[93.58815,25.21025],[93.58647,25.21629],[93.57786,25.22237],[93.57441,25.22206],[93.57105,25.22393],[93.55937,25.243],[93.55098,25.24696],[93.5375,25.24183],[93.52564,25.24484],[93.5169,25.24528],[93.51272,25.24127],[93.50147,25.24065],[93.5005,25.24992],[93.50714,25.27213],[93.50073,25.27231],[93.49127,25.27528],[93.48393,25.2725],[93.47314,25.27563],[93.46899,25.28204],[93.47156,25.29629],[93.47056,25.30505],[93.4673,25.30166],[93.46316,25.30147],[93.45536,25.29347],[93.44532,25.29134],[93.43606,25.28782],[93.43078,25.28295],[93.42752,25.28324],[93.4267,25.27964],[93.42053,25.27746],[93.41594,25.26427],[93.40668,25.26078],[93.40116,25.26062],[93.39366,25.25474],[93.39259,25.24997],[93.3866,25.24278],[93.38334,25.24228],[93.38112,25.23963],[93.38096,25.23794],[93.38269,25.23725],[93.38164,25.23431],[93.38426,25.23352],[93.38465,25.23136],[93.38127,25.22736],[93.38178,25.2229],[93.37561,25.22014],[93.37671,25.21788],[93.37338,25.21484],[93.37383,25.21182],[93.36894,25.21097],[93.37072,25.20789],[93.3661,25.2061],[93.36562,25.19808],[93.35938,25.19531],[93.35999,25.19185],[93.35671,25.19188],[93.35737,25.1876],[93.35616,25.18896],[93.35412,25.18767],[93.35496,25.18593],[93.35134,25.1832],[93.3515,25.17966],[93.34981,25.1795],[93.34587,25.16981],[93.34401,25.15913],[93.34657,25.15708],[93.34518,25.15074],[93.34751,25.13877],[93.34238,25.13749],[93.34534,25.13034],[93.34176,25.12641],[93.34526,25.12346],[93.34118,25.12306],[93.3422,25.11989],[93.33933,25.11549],[93.34133,25.11359],[93.33675,25.1116],[93.33808,25.1099],[93.33246,25.10073],[93.33354,25.09799],[93.3317,25.09605],[93.33216,25.09324],[93.32754,25.0934],[93.32188,25.09082],[93.31492,25.08462],[93.31274,25.07935],[93.30611,25.07164],[93.30631,25.06825],[93.30243,25.06334],[93.30556,25.05743],[93.30423,25.05562],[93.30079,25.05586],[93.3021,25.05424],[93.29996,25.04604],[93.29754,25.04658],[93.29941,25.04935],[93.2988,25.05195],[93.2948,25.05107],[93.29368,25.04633],[93.29136,25.04864],[93.28897,25.04568],[93.28718,25.04701],[93.28346,25.045],[93.2827,25.04901],[93.27966,25.04722],[93.28007,25.051],[93.27731,25.04957],[93.27451,25.05094],[93.27215,25.04844],[93.27045,25.05077],[93.2642,25.04936],[93.26227,25.04591],[93.26605,25.04384],[93.26219,25.04072],[93.25962,25.04121],[93.25835,25.03802],[93.25989,25.03497],[93.25379,25.02716],[93.25135,25.02714],[93.25117,25.02585],[93.25404,25.02547],[93.2525,25.02293],[93.25395,25.02058],[93.24908,25.02009],[93.24728,25.01799],[93.24388,25.01829],[93.24374,25.01612],[93.24767,25.0149],[93.24472,25.01171],[93.24178,25.00393],[93.2442,25.00326],[93.24439,24.99809],[93.24686,24.99738],[93.24888,24.99891],[93.24878,25.00299],[93.2505,25.00432],[93.25259,25.00093],[93.25738,25.00474],[93.25987,25.00113],[93.25863,24.99948],[93.25416,25.00023],[93.25277,24.99891],[93.25298,24.99734],[93.25704,24.99607],[93.25141,24.98601],[93.25343,24.98207],[93.24944,24.97934],[93.24934,24.97704],[93.25203,24.97645],[93.24961,24.97312]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"259","area_level":"District","area_name":"Thoubal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.93944,24.71576],[93.93512,24.71326],[93.92654,24.71323],[93.92366,24.70815],[93.92362,24.70308],[93.91506,24.70427],[93.90931,24.69916],[93.90359,24.70039],[93.905,24.69532],[93.90351,24.6877],[93.90632,24.6801],[93.90199,24.67503],[93.90628,24.67249],[93.91487,24.67248],[93.91484,24.66994],[93.91196,24.66614],[93.91337,24.6636],[93.92481,24.66104],[93.93197,24.66228],[93.93186,24.64582],[93.92902,24.65089],[93.92473,24.65217],[93.91748,24.63704],[93.90744,24.63584],[93.90169,24.63208],[93.89737,24.62833],[93.8973,24.61829],[93.88869,24.61457],[93.89724,24.60703],[93.90442,24.61198],[93.90871,24.61071],[93.91012,24.60694],[93.90861,24.5908],[93.90432,24.59085],[93.91001,24.5797],[93.90856,24.56989],[93.90426,24.56252],[93.89852,24.55756],[93.94545,24.53888],[93.95687,24.53508],[93.96259,24.5351],[93.96687,24.53267],[93.97688,24.518],[93.98835,24.51316],[94.03351,24.50167],[94.03781,24.52347],[94.03764,24.53836],[94.05092,24.52879],[94.05561,24.53074],[94.05589,24.52803],[94.05068,24.52272],[94.05124,24.51742],[94.05475,24.5129],[94.06211,24.52187],[94.06406,24.51636],[94.08101,24.51586],[94.08613,24.51812],[94.07243,24.5413],[94.06913,24.55486],[94.07091,24.56364],[94.07815,24.56247],[94.08887,24.55241],[94.09431,24.55397],[94.09908,24.55992],[94.1056,24.57698],[94.1161,24.59142],[94.11829,24.59855],[94.11704,24.60281],[94.12027,24.60567],[94.13853,24.60154],[94.14824,24.60375],[94.14872,24.6116],[94.14704,24.61871],[94.1297,24.6215],[94.12237,24.62562],[94.11576,24.63199],[94.11181,24.63787],[94.10853,24.64954],[94.11179,24.65011],[94.09817,24.66942],[94.1065,24.67726],[94.1117,24.67947],[94.116,24.67705],[94.11968,24.67918],[94.11826,24.68169],[94.12303,24.68331],[94.12855,24.68928],[94.12776,24.69285],[94.11438,24.6967],[94.11623,24.70024],[94.12088,24.70077],[94.1238,24.69758],[94.12775,24.69884],[94.1257,24.70233],[94.12762,24.70536],[94.13212,24.70721],[94.12851,24.71017],[94.12616,24.72363],[94.11988,24.71697],[94.11802,24.70846],[94.10861,24.70054],[94.10196,24.699],[94.09123,24.69251],[94.08393,24.69315],[94.08255,24.6876],[94.07857,24.68922],[94.07772,24.68661],[94.07242,24.68804],[94.07252,24.6851],[94.05839,24.68601],[94.05544,24.67998],[94.04344,24.68102],[94.04395,24.67462],[94.0382,24.67247],[94.03871,24.6768],[94.03222,24.67302],[94.02939,24.67783],[94.03021,24.67293],[94.02197,24.67293],[94.0201,24.66719],[94.01664,24.66727],[94.01237,24.68255],[94.00691,24.68657],[94.0144,24.69562],[94.01446,24.70088],[94.00448,24.70904],[94.00083,24.71446],[94.00109,24.72473],[93.9968,24.72798],[93.97045,24.7237],[93.9691,24.72003],[93.97054,24.7125],[93.96639,24.71141],[93.96498,24.70517],[93.95654,24.70794],[93.94371,24.70942],[93.9409,24.71827],[93.93944,24.71576]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"26","area_level":"District","area_name":"Una","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.02299,31.86414],[76.01984,31.86643],[76.01439,31.86645],[76.00478,31.85889],[76.00448,31.85457],[76.00079,31.85171],[75.99283,31.85011],[75.98031,31.85053],[75.97483,31.85225],[75.97117,31.84973],[75.96966,31.85098],[75.97058,31.85401],[75.95998,31.8569],[75.96597,31.83827],[75.97091,31.83342],[75.97123,31.82846],[75.97486,31.82835],[75.97925,31.8231],[75.98592,31.81946],[75.98654,31.81224],[75.9835,31.81161],[75.98195,31.814],[75.97857,31.813],[75.97593,31.8184],[75.97327,31.81843],[75.96903,31.82388],[75.96478,31.82316],[75.95699,31.8163],[75.9475,31.81301],[75.94182,31.81269],[75.93668,31.81541],[75.95307,31.78957],[75.95312,31.78329],[75.96022,31.78113],[75.96323,31.77388],[75.96341,31.76879],[75.96624,31.76654],[75.97066,31.75649],[75.97235,31.75096],[75.97112,31.74918],[75.97515,31.74373],[75.97542,31.74251],[75.97248,31.74145],[75.97265,31.73856],[75.97445,31.73488],[75.97842,31.73366],[75.97946,31.72602],[75.98322,31.72147],[75.98305,31.71881],[75.98872,31.7127],[75.98895,31.70767],[75.99296,31.7034],[75.99165,31.70142],[75.9931,31.69685],[75.99835,31.68956],[76.00078,31.68853],[76.00143,31.68337],[76.00574,31.676],[76.00673,31.66314],[76.00966,31.65335],[76.01965,31.64886],[76.01738,31.6466],[76.02227,31.63961],[76.01794,31.63313],[76.01928,31.6305],[76.02451,31.62457],[76.02862,31.62288],[76.02929,31.61892],[76.03668,31.61325],[76.03788,31.60952],[76.04135,31.61068],[76.04635,31.60349],[76.04965,31.60257],[76.05341,31.6057],[76.05585,31.6055],[76.05822,31.60177],[76.05752,31.59746],[76.05881,31.59594],[76.05378,31.59322],[76.05802,31.58885],[76.05629,31.58533],[76.05971,31.58132],[76.06456,31.57963],[76.06668,31.57322],[76.07252,31.56974],[76.07331,31.56393],[76.07738,31.56076],[76.08196,31.55186],[76.08515,31.54852],[76.08923,31.54762],[76.08966,31.5451],[76.0919,31.54415],[76.09218,31.54071],[76.09861,31.53725],[76.09942,31.53504],[76.09807,31.53265],[76.10266,31.52506],[76.1019,31.52239],[76.10369,31.52058],[76.10644,31.51004],[76.11003,31.50687],[76.11295,31.50012],[76.12069,31.49766],[76.11916,31.49316],[76.12075,31.4893],[76.11705,31.48301],[76.1209,31.48015],[76.12165,31.47732],[76.1277,31.47453],[76.12871,31.47178],[76.13069,31.47104],[76.13028,31.46505],[76.13468,31.46141],[76.13545,31.45867],[76.13313,31.45189],[76.13899,31.4487],[76.14043,31.44158],[76.14495,31.43679],[76.14532,31.43413],[76.15231,31.43362],[76.15672,31.43076],[76.16254,31.42117],[76.16013,31.41539],[76.16831,31.41044],[76.16654,31.40575],[76.16979,31.39895],[76.16857,31.39625],[76.15402,31.3829],[76.14728,31.3803],[76.1473,31.36463],[76.14863,31.36093],[76.14689,31.35898],[76.14898,31.35742],[76.14936,31.35326],[76.15212,31.35272],[76.15331,31.34954],[76.15769,31.34706],[76.159,31.34369],[76.1761,31.34197],[76.17882,31.34047],[76.18138,31.33365],[76.17982,31.30653],[76.18432,31.30565],[76.1863,31.30209],[76.19099,31.29999],[76.21397,31.29939],[76.23914,31.30885],[76.25099,31.30767],[76.25671,31.31034],[76.26481,31.31],[76.26934,31.31192],[76.27081,31.30237],[76.27555,31.3004],[76.28691,31.30735],[76.28924,31.30622],[76.29043,31.30918],[76.30391,31.31358],[76.31079,31.31795],[76.31057,31.31916],[76.32238,31.32161],[76.31352,31.32914],[76.30765,31.34235],[76.33146,31.34642],[76.33021,31.3481],[76.3356,31.34949],[76.3375,31.33983],[76.34391,31.3402],[76.34503,31.34305],[76.34687,31.34319],[76.34753,31.34667],[76.35161,31.34658],[76.35148,31.34524],[76.35316,31.34496],[76.35354,31.34786],[76.34712,31.34895],[76.34622,31.35486],[76.34228,31.35496],[76.34292,31.36345],[76.34049,31.36336],[76.34161,31.37878],[76.32976,31.37905],[76.33168,31.38407],[76.33174,31.38728],[76.33046,31.38726],[76.33109,31.40163],[76.34205,31.40139],[76.34295,31.39862],[76.34293,31.40254],[76.34587,31.40308],[76.34733,31.39816],[76.35228,31.39831],[76.35834,31.40355],[76.36726,31.40437],[76.37173,31.40946],[76.37223,31.41397],[76.37045,31.41729],[76.37303,31.41734],[76.3713,31.42017],[76.37252,31.42499],[76.37037,31.43007],[76.37475,31.43819],[76.3796,31.43331],[76.37967,31.42826],[76.38392,31.4259],[76.38284,31.42363],[76.38964,31.41677],[76.38755,31.40944],[76.38864,31.4092],[76.39508,31.4082],[76.39645,31.41105],[76.39298,31.41982],[76.39357,31.42411],[76.39699,31.42716],[76.40223,31.42522],[76.41803,31.41163],[76.42552,31.40783],[76.43785,31.41394],[76.45754,31.41762],[76.46363,31.42231],[76.47248,31.42011],[76.47224,31.42398],[76.47558,31.42774],[76.47001,31.43764],[76.47938,31.44181],[76.47621,31.44458],[76.47554,31.44148],[76.47237,31.44088],[76.46247,31.44376],[76.46197,31.44651],[76.46651,31.44554],[76.46607,31.44989],[76.47196,31.45523],[76.46067,31.46591],[76.46085,31.46884],[76.45056,31.48188],[76.45497,31.48469],[76.46238,31.48565],[76.46321,31.48771],[76.45482,31.49356],[76.44106,31.51371],[76.43612,31.52761],[76.4388,31.53522],[76.43181,31.54474],[76.42776,31.55714],[76.42006,31.56432],[76.41911,31.57174],[76.40639,31.59375],[76.40437,31.60055],[76.40121,31.60359],[76.40072,31.60851],[76.39598,31.61218],[76.39539,31.61805],[76.39103,31.62113],[76.38783,31.6273],[76.38406,31.62718],[76.36957,31.63865],[76.36845,31.64107],[76.36444,31.64227],[76.35868,31.6534],[76.35267,31.65871],[76.35152,31.6636],[76.34803,31.66581],[76.34783,31.66936],[76.34522,31.67096],[76.34013,31.68155],[76.33353,31.6865],[76.33278,31.68987],[76.33034,31.69084],[76.32965,31.69444],[76.3209,31.70518],[76.31138,31.7245],[76.30807,31.72325],[76.30603,31.71878],[76.30612,31.71424],[76.30418,31.71187],[76.3048,31.7046],[76.3019,31.70337],[76.3003,31.69896],[76.29628,31.6945],[76.29699,31.69135],[76.29106,31.68698],[76.28386,31.68472],[76.28171,31.69169],[76.27714,31.69558],[76.27304,31.70346],[76.26934,31.70394],[76.26818,31.7063],[76.26424,31.70833],[76.26383,31.7127],[76.25278,31.71461],[76.25001,31.71865],[76.24222,31.72401],[76.23713,31.731],[76.23362,31.73263],[76.23329,31.73546],[76.2231,31.74242],[76.22206,31.74499],[76.21508,31.75044],[76.21337,31.75562],[76.20436,31.7629],[76.2061,31.76496],[76.20504,31.76771],[76.19825,31.77213],[76.19534,31.76856],[76.18504,31.76714],[76.18347,31.76416],[76.18149,31.76393],[76.18547,31.77435],[76.18426,31.77911],[76.1804,31.7817],[76.16848,31.78469],[76.15937,31.79494],[76.15379,31.79523],[76.14762,31.80026],[76.13074,31.79988],[76.12435,31.8013],[76.12173,31.79971],[76.11899,31.80059],[76.1131,31.79576],[76.1102,31.79536],[76.11018,31.79749],[76.11345,31.80126],[76.10351,31.80782],[76.10666,31.80999],[76.10539,31.81793],[76.10806,31.82242],[76.10416,31.81876],[76.10025,31.82206],[76.0965,31.81972],[76.09499,31.81978],[76.09445,31.82198],[76.09234,31.82164],[76.08975,31.81937],[76.08731,31.82111],[76.08668,31.82723],[76.08039,31.83025],[76.08108,31.83359],[76.08614,31.83235],[76.08098,31.83425],[76.08367,31.83644],[76.08288,31.84076],[76.07865,31.8423],[76.07802,31.84066],[76.07442,31.84127],[76.07366,31.83863],[76.06841,31.83952],[76.06429,31.84615],[76.06013,31.84682],[76.04955,31.85567],[76.04366,31.85768],[76.04269,31.86178],[76.03144,31.86507],[76.02299,31.86414]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"260","area_level":"District","area_name":"Ukhrul","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.57852,25.68761],[94.56857,25.69209],[94.56355,25.68667],[94.56063,25.67526],[94.54776,25.66187],[94.54731,25.65692],[94.54028,25.65202],[94.53507,25.64556],[94.52709,25.64463],[94.5262,25.63708],[94.52373,25.6388],[94.51974,25.63793],[94.51004,25.62501],[94.50643,25.62443],[94.50421,25.62144],[94.50332,25.61348],[94.50091,25.61152],[94.49737,25.61457],[94.49483,25.61105],[94.48897,25.60889],[94.4897,25.60753],[94.48325,25.59657],[94.4669,25.583],[94.4607,25.55505],[94.44589,25.53687],[94.43533,25.51928],[94.43507,25.51635],[94.42975,25.50994],[94.42439,25.49011],[94.41598,25.47171],[94.41883,25.46688],[94.4022,25.4487],[94.40069,25.44086],[94.39039,25.42281],[94.38451,25.42343],[94.38268,25.42158],[94.38559,25.41767],[94.37908,25.40866],[94.38301,25.40349],[94.37833,25.39708],[94.37468,25.38837],[94.37411,25.37719],[94.37514,25.36919],[94.37804,25.3658],[94.37603,25.36044],[94.37729,25.35773],[94.35898,25.34012],[94.34869,25.32385],[94.34466,25.3145],[94.33595,25.30791],[94.32769,25.29342],[94.32303,25.27884],[94.2956,25.2495],[94.28141,25.23937],[94.25548,25.22828],[94.248,25.20947],[94.24283,25.20369],[94.22542,25.19592],[94.22108,25.18979],[94.21876,25.18253],[94.21252,25.17864],[94.20476,25.17649],[94.19252,25.17661],[94.18862,25.17205],[94.17948,25.16717],[94.18139,25.16102],[94.17747,25.16129],[94.17306,25.15908],[94.17402,25.15304],[94.17112,25.15246],[94.16735,25.14811],[94.16421,25.14171],[94.16011,25.14377],[94.15942,25.14007],[94.16208,25.13629],[94.15868,25.13408],[94.15489,25.1366],[94.15319,25.13297],[94.14827,25.13352],[94.14557,25.12637],[94.13266,25.11814],[94.13167,25.11381],[94.12846,25.11258],[94.12754,25.10083],[94.12177,25.09136],[94.12053,25.08623],[94.12137,25.07944],[94.11885,25.07654],[94.11755,25.06963],[94.12408,25.06049],[94.12605,25.0533],[94.13792,25.04885],[94.1464,25.03546],[94.1494,25.02379],[94.14568,25.00097],[94.15085,24.99159],[94.16106,24.96532],[94.16316,24.95398],[94.16671,24.94502],[94.17295,24.94127],[94.1802,24.94503],[94.19038,24.94705],[94.19951,24.94382],[94.22805,24.95654],[94.22781,24.96104],[94.23881,24.96261],[94.26398,24.97221],[94.29116,24.97185],[94.31404,24.976],[94.33043,24.98612],[94.339,24.98806],[94.3449,25.00133],[94.35819,25.01861],[94.36801,25.02676],[94.38011,25.02926],[94.41763,25.02745],[94.42985,25.03261],[94.44845,25.03357],[94.454,25.03266],[94.462,25.02467],[94.46863,25.02416],[94.49113,25.0295],[94.51451,25.0319],[94.52561,25.03646],[94.55141,25.05419],[94.56124,25.06347],[94.57476,25.08072],[94.58453,25.08879],[94.61111,25.10027],[94.66827,25.10965],[94.7299,25.10932],[94.7365,25.11118],[94.74076,25.12075],[94.74034,25.12696],[94.73809,25.12837],[94.73661,25.13478],[94.72886,25.13448],[94.71894,25.13843],[94.71514,25.13808],[94.70777,25.14417],[94.70291,25.14542],[94.70063,25.151],[94.69691,25.15484],[94.6918,25.15594],[94.68986,25.15792],[94.68455,25.15143],[94.67995,25.1493],[94.67756,25.15135],[94.67734,25.15457],[94.66903,25.15759],[94.6646,25.16272],[94.6483,25.16828],[94.64014,25.16615],[94.63476,25.172],[94.62855,25.17569],[94.62004,25.18666],[94.61129,25.18201],[94.60583,25.18129],[94.60358,25.18642],[94.59194,25.19283],[94.58899,25.20294],[94.58175,25.21108],[94.57564,25.21412],[94.57853,25.21623],[94.58237,25.22287],[94.58265,25.22742],[94.58552,25.22948],[94.58513,25.23913],[94.58743,25.24554],[94.58575,25.24882],[94.58892,25.25305],[94.58945,25.25698],[94.58479,25.26654],[94.59194,25.27814],[94.59334,25.28587],[94.59856,25.29268],[94.60341,25.30551],[94.60602,25.30636],[94.60412,25.30945],[94.60622,25.31456],[94.61187,25.32119],[94.61208,25.32412],[94.61462,25.32486],[94.61827,25.33045],[94.62361,25.34358],[94.62244,25.34604],[94.62959,25.34934],[94.63125,25.35439],[94.63455,25.35792],[94.6324,25.36068],[94.63364,25.3723],[94.63195,25.38162],[94.63227,25.38902],[94.6346,25.39501],[94.64595,25.40262],[94.64897,25.40642],[94.65594,25.40467],[94.65957,25.40582],[94.66293,25.41006],[94.66274,25.41186],[94.6671,25.41464],[94.67004,25.41883],[94.66981,25.4215],[94.67304,25.42508],[94.67118,25.44286],[94.67524,25.44562],[94.68028,25.45401],[94.66108,25.44941],[94.62813,25.45976],[94.62053,25.46321],[94.60271,25.47662],[94.58607,25.48398],[94.58247,25.48668],[94.58026,25.49111],[94.56989,25.49951],[94.56349,25.50088],[94.55274,25.50709],[94.55661,25.52502],[94.55364,25.52922],[94.55883,25.53401],[94.55523,25.54005],[94.55826,25.54385],[94.55676,25.55486],[94.56005,25.56229],[94.55581,25.56235],[94.55695,25.57271],[94.55114,25.5802],[94.56059,25.59698],[94.56825,25.60568],[94.57396,25.62061],[94.57923,25.62885],[94.59064,25.63819],[94.58241,25.64095],[94.57157,25.63909],[94.57228,25.64722],[94.57685,25.65178],[94.57754,25.655],[94.58071,25.65616],[94.57893,25.65961],[94.58288,25.66618],[94.58084,25.66924],[94.58548,25.67563],[94.59245,25.68128],[94.59113,25.68566],[94.57852,25.68761]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"261","area_level":"District","area_name":"Aizawl","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.79991,24.43009],[92.79706,24.43265],[92.79611,24.4304],[92.79544,24.43159],[92.79457,24.43072],[92.79518,24.42764],[92.79319,24.42794],[92.79319,24.42566],[92.79174,24.42532],[92.79054,24.42108],[92.793,24.42164],[92.79007,24.4185],[92.7931,24.41675],[92.79072,24.41634],[92.78853,24.41351],[92.79138,24.41271],[92.79127,24.4094],[92.78846,24.40928],[92.78995,24.40838],[92.78793,24.40699],[92.78895,24.40569],[92.78728,24.4039],[92.78744,24.39912],[92.78475,24.39615],[92.78635,24.3949],[92.7844,24.39365],[92.78563,24.39123],[92.77853,24.38755],[92.77734,24.38523],[92.78474,24.37463],[92.78302,24.3719],[92.77996,24.37295],[92.7794,24.37172],[92.78076,24.36859],[92.77905,24.3673],[92.78057,24.36671],[92.78226,24.36149],[92.77956,24.35519],[92.77725,24.3532],[92.77465,24.35545],[92.77248,24.35405],[92.77431,24.35004],[92.77686,24.35027],[92.77691,24.34752],[92.77947,24.34729],[92.78026,24.34543],[92.77508,24.34497],[92.77356,24.33884],[92.77042,24.34141],[92.76848,24.3403],[92.76683,24.32919],[92.76863,24.32575],[92.77145,24.32667],[92.77197,24.32555],[92.76956,24.31998],[92.76557,24.32321],[92.76469,24.31665],[92.77082,24.31532],[92.77264,24.31684],[92.77509,24.3116],[92.77912,24.31147],[92.78458,24.31381],[92.78577,24.31752],[92.78879,24.31844],[92.78948,24.32115],[92.79261,24.32267],[92.79096,24.32506],[92.79604,24.32436],[92.80046,24.3193],[92.80077,24.31643],[92.80596,24.31552],[92.81173,24.31162],[92.81163,24.29929],[92.81739,24.29615],[92.83732,24.29927],[92.8403,24.30078],[92.84327,24.30826],[92.84597,24.30965],[92.84968,24.31636],[92.85597,24.31507],[92.85687,24.31388],[92.85342,24.30982],[92.85426,24.30649],[92.85619,24.30549],[92.86207,24.30859],[92.86216,24.30226],[92.87025,24.29659],[92.87016,24.28996],[92.87235,24.28687],[92.86886,24.28311],[92.87244,24.27954],[92.87216,24.27759],[92.86603,24.27672],[92.86015,24.26798],[92.86038,24.26515],[92.86518,24.2624],[92.86012,24.26127],[92.85846,24.25869],[92.86207,24.25846],[92.86168,24.25511],[92.86452,24.25227],[92.85876,24.25032],[92.86148,24.24639],[92.85909,24.24363],[92.86326,24.24196],[92.87093,24.24297],[92.87584,24.23837],[92.87742,24.23409],[92.87956,24.23321],[92.8859,24.23927],[92.88696,24.24542],[92.8881,24.24557],[92.88995,24.24132],[92.89668,24.23897],[92.90027,24.22602],[92.89846,24.2232],[92.89903,24.21892],[92.89463,24.21224],[92.89823,24.21219],[92.89624,24.20855],[92.8971,24.20578],[92.89279,24.20466],[92.8939,24.20205],[92.89184,24.20014],[92.89368,24.19799],[92.8908,24.17384],[92.8819,24.17036],[92.88567,24.16871],[92.88377,24.16071],[92.87991,24.15813],[92.88188,24.15466],[92.87949,24.15079],[92.87481,24.14797],[92.87149,24.14006],[92.87136,24.13574],[92.87581,24.13251],[92.87651,24.13027],[92.87065,24.1279],[92.87,24.1221],[92.86606,24.11858],[92.86866,24.11479],[92.86764,24.10974],[92.8631,24.10726],[92.85863,24.10725],[92.85873,24.09932],[92.85545,24.0998],[92.8546,24.09327],[92.85775,24.08835],[92.85434,24.07985],[92.85541,24.07799],[92.85434,24.07305],[92.84757,24.06829],[92.84594,24.06323],[92.84695,24.05996],[92.84463,24.05466],[92.84702,24.05102],[92.84477,24.04594],[92.84811,24.04437],[92.84689,24.04268],[92.84751,24.03494],[92.84662,24.03413],[92.8433,24.03624],[92.84171,24.03305],[92.84469,24.03053],[92.84581,24.02685],[92.84101,24.02639],[92.8412,24.02295],[92.83934,24.02036],[92.84022,24.01664],[92.83888,24.0151],[92.83577,24.01683],[92.83345,24.02387],[92.8313,24.02365],[92.8289,24.01906],[92.83086,24.01613],[92.82883,24.01321],[92.82695,24.00049],[92.82435,24.0003],[92.8252,23.99654],[92.8208,23.99409],[92.82524,23.9906],[92.82162,23.98695],[92.82669,23.98608],[92.82336,23.98155],[92.82053,23.98167],[92.82053,23.97191],[92.81827,23.96693],[92.81608,23.96637],[92.8177,23.95873],[92.8217,23.95618],[92.82247,23.95339],[92.81894,23.94894],[92.81946,23.94494],[92.81609,23.9425],[92.81495,23.93884],[92.81584,23.93598],[92.81858,23.93504],[92.81248,23.92915],[92.81112,23.92184],[92.80776,23.92195],[92.80665,23.91962],[92.81172,23.91613],[92.81627,23.91861],[92.81532,23.91387],[92.81966,23.91627],[92.82195,23.91209],[92.81853,23.90985],[92.81959,23.9063],[92.81742,23.89623],[92.81009,23.8943],[92.80923,23.89214],[92.8104,23.89115],[92.80896,23.88992],[92.81058,23.88704],[92.80604,23.88598],[92.80509,23.87832],[92.80276,23.87516],[92.80304,23.87088],[92.80057,23.86554],[92.80187,23.85948],[92.80045,23.85817],[92.80189,23.85714],[92.79693,23.84801],[92.79301,23.84776],[92.78768,23.85144],[92.78236,23.85027],[92.77682,23.85221],[92.74918,23.84588],[92.74354,23.85005],[92.73568,23.84909],[92.728,23.85245],[92.72616,23.85111],[92.72289,23.85489],[92.71275,23.85807],[92.70839,23.86182],[92.7036,23.85828],[92.69846,23.85801],[92.69818,23.85568],[92.69556,23.85584],[92.69582,23.85711],[92.69299,23.85877],[92.68659,23.85982],[92.67985,23.86725],[92.67247,23.86696],[92.67025,23.86538],[92.66779,23.86752],[92.66248,23.86786],[92.66182,23.88143],[92.65,23.89175],[92.65192,23.89957],[92.6423,23.89821],[92.63964,23.89233],[92.64124,23.87308],[92.64589,23.8657],[92.64768,23.85737],[92.65147,23.85038],[92.66292,23.83674],[92.66151,23.83404],[92.65839,23.83306],[92.64733,23.83245],[92.64364,23.8282],[92.64277,23.82464],[92.64539,23.81917],[92.65,23.81889],[92.65342,23.8212],[92.65428,23.82009],[92.64845,23.80993],[92.64253,23.805],[92.63975,23.81249],[92.6336,23.81697],[92.62848,23.80472],[92.62345,23.79791],[92.62708,23.79446],[92.63737,23.79492],[92.63974,23.7935],[92.6404,23.78642],[92.63719,23.7722],[92.62584,23.76357],[92.63078,23.7591],[92.63456,23.75811],[92.63747,23.74075],[92.64295,23.73268],[92.64312,23.72797],[92.64868,23.71785],[92.65589,23.71395],[92.66215,23.71396],[92.66572,23.71084],[92.66659,23.70776],[92.66519,23.70293],[92.65722,23.69108],[92.65492,23.68433],[92.6498,23.67809],[92.64564,23.66853],[92.64181,23.6632],[92.63548,23.65976],[92.63643,23.64906],[92.64165,23.6426],[92.65052,23.63796],[92.65135,23.62997],[92.6698,23.62539],[92.67444,23.62065],[92.67264,23.61451],[92.67344,23.60995],[92.67003,23.60275],[92.66482,23.59685],[92.65311,23.59514],[92.64926,23.59036],[92.65122,23.57796],[92.6591,23.57131],[92.65662,23.56194],[92.65233,23.55672],[92.64419,23.55518],[92.64252,23.54596],[92.63415,23.54094],[92.63339,23.53802],[92.63928,23.52364],[92.64373,23.52053],[92.65172,23.52132],[92.65384,23.52022],[92.65442,23.50748],[92.65884,23.50176],[92.65798,23.49662],[92.65268,23.48755],[92.65723,23.47127],[92.65473,23.45309],[92.65668,23.45047],[92.65504,23.43927],[92.65722,23.43284],[92.6567,23.42466],[92.66328,23.4146],[92.66271,23.40933],[92.66564,23.40764],[92.66761,23.40323],[92.66432,23.39215],[92.6682,23.38848],[92.66934,23.3851],[92.67227,23.384],[92.67614,23.37943],[92.6739,23.37568],[92.6757,23.37173],[92.67124,23.36779],[92.68198,23.36834],[92.68705,23.35508],[92.68484,23.35149],[92.68684,23.34051],[92.68451,23.33819],[92.68405,23.33481],[92.68607,23.32866],[92.68467,23.32672],[92.6814,23.32816],[92.68103,23.32626],[92.68309,23.32275],[92.68772,23.32487],[92.68865,23.323],[92.69203,23.3228],[92.69413,23.32387],[92.69324,23.32599],[92.69477,23.32737],[92.69959,23.32015],[92.70381,23.31888],[92.71372,23.32205],[92.71417,23.32713],[92.71756,23.33122],[92.71682,23.34386],[92.71923,23.3465],[92.71512,23.34885],[92.72127,23.35096],[92.72333,23.34873],[92.73295,23.34941],[92.7314,23.34491],[92.73688,23.34293],[92.74055,23.33909],[92.74543,23.34078],[92.74884,23.33984],[92.75171,23.34171],[92.76959,23.33571],[92.77929,23.32703],[92.78288,23.32854],[92.79554,23.32724],[92.80984,23.32812],[92.81352,23.32545],[92.82005,23.32853],[92.82161,23.33148],[92.82586,23.33426],[92.83256,23.33489],[92.83854,23.33328],[92.84031,23.33631],[92.84103,23.33997],[92.83811,23.34202],[92.83868,23.34603],[92.83387,23.35341],[92.83295,23.3625],[92.82926,23.36722],[92.82663,23.3672],[92.82237,23.37087],[92.8279,23.37578],[92.82703,23.37742],[92.82958,23.37847],[92.83086,23.3842],[92.82809,23.38343],[92.82466,23.38464],[92.82425,23.38641],[92.82182,23.38493],[92.82117,23.38606],[92.82163,23.39138],[92.82484,23.39074],[92.8221,23.39429],[92.83023,23.41162],[92.83004,23.4153],[92.82833,23.41544],[92.82694,23.41928],[92.82905,23.41897],[92.82841,23.4203],[92.83134,23.42131],[92.82965,23.4241],[92.83229,23.42478],[92.83127,23.43006],[92.83421,23.43101],[92.8351,23.43962],[92.83647,23.44101],[92.83481,23.44582],[92.83609,23.44886],[92.83435,23.45057],[92.83622,23.45369],[92.83274,23.45776],[92.83341,23.4594],[92.8317,23.45995],[92.83581,23.4652],[92.83539,23.46764],[92.83068,23.4687],[92.82455,23.47264],[92.81809,23.47301],[92.79946,23.47949],[92.79859,23.48497],[92.79719,23.48585],[92.79801,23.48723],[92.79543,23.48923],[92.79836,23.49361],[92.79897,23.50194],[92.80083,23.50554],[92.79791,23.50697],[92.79779,23.51017],[92.79911,23.51106],[92.79577,23.51191],[92.79686,23.51602],[92.79497,23.51692],[92.79818,23.52056],[92.79647,23.524],[92.79866,23.52457],[92.79453,23.52662],[92.79673,23.52783],[92.79574,23.53226],[92.79844,23.53366],[92.79614,23.53628],[92.79945,23.53623],[92.80195,23.53906],[92.79903,23.53885],[92.80041,23.54158],[92.79826,23.54401],[92.79733,23.55051],[92.77729,23.55638],[92.77396,23.55861],[92.77203,23.56503],[92.77433,23.5738],[92.77184,23.57592],[92.77423,23.58246],[92.77298,23.58594],[92.77106,23.58661],[92.76924,23.59441],[92.77663,23.59951],[92.78363,23.59889],[92.78555,23.60008],[92.78435,23.61309],[92.78831,23.62198],[92.78691,23.62735],[92.78943,23.63159],[92.78852,23.6347],[92.79063,23.63474],[92.7908,23.63901],[92.78818,23.6409],[92.79025,23.64149],[92.79012,23.64465],[92.80252,23.64168],[92.80433,23.63898],[92.80803,23.6416],[92.80963,23.64095],[92.8099,23.64246],[92.81297,23.64032],[92.81585,23.63636],[92.81442,23.63517],[92.81453,23.63199],[92.8107,23.62773],[92.8164,23.62443],[92.81676,23.62145],[92.82135,23.61783],[92.82077,23.60975],[92.81834,23.60481],[92.82101,23.60306],[92.82145,23.59882],[92.82302,23.59768],[92.82184,23.59583],[92.82328,23.59236],[92.82226,23.58801],[92.82481,23.58542],[92.82775,23.58535],[92.83445,23.57612],[92.84229,23.57401],[92.84598,23.57532],[92.85261,23.57417],[92.85916,23.56168],[92.86684,23.55775],[92.86853,23.55474],[92.87164,23.55464],[92.87536,23.558],[92.88225,23.55812],[92.88134,23.56052],[92.88275,23.56279],[92.88048,23.56431],[92.88759,23.57267],[92.89132,23.5727],[92.89149,23.57621],[92.89503,23.57619],[92.8967,23.57798],[92.89895,23.5779],[92.89692,23.5717],[92.90238,23.56602],[92.91174,23.56022],[92.92409,23.55776],[92.93646,23.5602],[92.94426,23.5588],[92.95192,23.55111],[92.96204,23.53171],[92.97173,23.52641],[92.98415,23.51222],[92.9856,23.50773],[92.98223,23.50155],[92.98252,23.49628],[92.97922,23.49212],[92.99618,23.47897],[93.003,23.48453],[93.00467,23.48937],[93.0063,23.48891],[93.00645,23.4907],[93.00977,23.49159],[93.0122,23.5031],[93.01614,23.50496],[93.01589,23.50686],[93.01826,23.50841],[93.01765,23.51001],[93.02093,23.50942],[93.02028,23.51094],[93.02381,23.51098],[93.02496,23.51429],[93.03305,23.51382],[93.03939,23.51895],[93.04087,23.52386],[93.03825,23.5274],[93.03947,23.5287],[93.03833,23.53186],[93.0395,23.53654],[93.03688,23.53755],[93.039,23.54218],[93.0367,23.54735],[93.03695,23.5517],[93.03494,23.55089],[93.03329,23.5531],[93.03383,23.56009],[93.03676,23.56196],[93.03278,23.56168],[93.03136,23.56537],[93.0331,23.56651],[93.03508,23.57521],[93.03134,23.57835],[93.02791,23.59706],[93.02946,23.60511],[93.02821,23.60915],[93.02955,23.6118],[93.02828,23.6258],[93.0301,23.62673],[93.02761,23.63077],[93.03128,23.63284],[93.03006,23.63834],[93.0319,23.64064],[93.03263,23.64724],[93.03086,23.64977],[93.03105,23.65474],[93.0288,23.65422],[93.02965,23.65878],[93.0276,23.65986],[93.02751,23.67236],[93.02592,23.6745],[93.02802,23.67977],[93.0245,23.67729],[93.02396,23.68512],[93.0283,23.68626],[93.0291,23.69234],[93.03118,23.69381],[93.02975,23.69985],[93.03114,23.70197],[93.03071,23.70821],[93.02878,23.71218],[93.02601,23.7112],[93.02468,23.71501],[93.027,23.71622],[93.02743,23.72139],[93.02666,23.72729],[93.02397,23.73257],[93.02598,23.73611],[93.0332,23.73919],[93.03018,23.7438],[93.03176,23.74636],[93.02891,23.74629],[93.03052,23.75081],[93.02576,23.75221],[93.02607,23.75407],[93.02894,23.75576],[93.02852,23.75814],[93.02568,23.75844],[93.02699,23.76137],[93.02434,23.76257],[93.02552,23.76585],[93.02259,23.77687],[93.02178,23.79323],[93.01624,23.79262],[93.01002,23.79994],[93.01015,23.8029],[93.01411,23.80114],[93.01875,23.80144],[93.02051,23.80076],[93.02027,23.7994],[93.03067,23.79899],[93.02832,23.79491],[93.03369,23.79457],[93.03503,23.79384],[93.03428,23.79214],[93.03857,23.79249],[93.04021,23.7902],[93.04454,23.79165],[93.0434,23.79281],[93.0507,23.79153],[93.0537,23.79247],[93.0539,23.78908],[93.05735,23.79133],[93.05871,23.79507],[93.06293,23.79411],[93.06241,23.79695],[93.06004,23.79694],[93.0578,23.80067],[93.05888,23.80433],[93.07323,23.81125],[93.08306,23.82163],[93.08685,23.82214],[93.09136,23.82981],[93.10366,23.82877],[93.10975,23.83064],[93.12194,23.82701],[93.12983,23.82771],[93.13292,23.82636],[93.13319,23.829],[93.13824,23.83568],[93.13779,23.84234],[93.15853,23.85276],[93.16262,23.85704],[93.16394,23.87546],[93.16963,23.87764],[93.16688,23.8822],[93.16562,23.88992],[93.16676,23.89384],[93.15715,23.90558],[93.15633,23.90893],[93.16487,23.92562],[93.16516,23.93108],[93.16997,23.93449],[93.17821,23.93124],[93.18201,23.93187],[93.18764,23.93002],[93.18672,23.93571],[93.19023,23.94135],[93.18384,23.9482],[93.18196,23.95242],[93.17864,23.96616],[93.18191,23.97182],[93.17408,23.97482],[93.17441,23.98041],[93.17166,23.98244],[93.17116,23.98505],[93.16817,23.98475],[93.16764,23.98939],[93.1628,23.99284],[93.16088,24.00167],[93.1583,24.00497],[93.15932,24.0096],[93.16196,24.01283],[93.16012,24.01542],[93.15972,24.02071],[93.16335,24.04045],[93.16538,24.04451],[93.1646,24.05008],[93.16717,24.05165],[93.16534,24.05206],[93.16251,24.05834],[93.16539,24.07217],[93.15686,24.07468],[93.15401,24.08095],[93.14347,24.08524],[93.13777,24.08395],[93.13065,24.07639],[93.13064,24.0701],[93.12494,24.06128],[93.1164,24.05747],[93.11498,24.0537],[93.10788,24.05242],[93.10646,24.04739],[93.09651,24.04234],[93.09509,24.04611],[93.09936,24.04989],[93.09651,24.05365],[93.09795,24.07126],[93.08515,24.08133],[93.07516,24.10027],[93.06087,24.09161],[93.04939,24.08805],[93.03342,24.09257],[93.03044,24.09664],[93.02305,24.10105],[93.01724,24.09887],[93.00987,24.10197],[93.00544,24.10739],[92.9922,24.1142],[92.9722,24.11235],[92.97069,24.11454],[92.96943,24.1214],[92.9819,24.12637],[92.98522,24.12927],[92.9887,24.13786],[92.98673,24.14434],[92.98892,24.15066],[93.00127,24.15806],[92.99915,24.1715],[93.00673,24.17965],[92.99894,24.19176],[92.99889,24.19497],[93.00822,24.19495],[93.01246,24.19745],[93.01385,24.20497],[93.01812,24.20746],[93.01954,24.21497],[93.01527,24.2225],[93.01528,24.22626],[93.02245,24.23002],[93.0139,24.23378],[93.00261,24.25139],[93.00266,24.26022],[93.00984,24.26909],[93.00415,24.27791],[93.00701,24.2855],[93.01415,24.29056],[93.03116,24.31577],[93.03932,24.34074],[93.01755,24.34422],[93.01531,24.35625],[93.01811,24.37161],[93.01309,24.37735],[93.02035,24.38785],[92.99831,24.39976],[92.99239,24.39895],[92.98482,24.40565],[92.97484,24.40846],[92.96622,24.39685],[92.96017,24.39193],[92.95732,24.39208],[92.95329,24.40158],[92.95117,24.40299],[92.94761,24.40236],[92.94546,24.40005],[92.93914,24.40063],[92.93372,24.39231],[92.92753,24.39648],[92.92419,24.39605],[92.92436,24.39789],[92.92037,24.40088],[92.92199,24.40352],[92.90927,24.41014],[92.91096,24.41197],[92.90934,24.41291],[92.90707,24.41129],[92.90671,24.40276],[92.90287,24.39577],[92.90392,24.3922],[92.90288,24.39107],[92.89297,24.39268],[92.89256,24.39747],[92.8908,24.39833],[92.89145,24.40045],[92.88856,24.39833],[92.88369,24.40241],[92.87334,24.39486],[92.8688,24.39465],[92.86094,24.3985],[92.84624,24.386],[92.84523,24.3797],[92.84336,24.37787],[92.83985,24.3767],[92.83575,24.37849],[92.82959,24.37359],[92.82573,24.37703],[92.82661,24.38123],[92.82314,24.38647],[92.82995,24.40029],[92.82016,24.40371],[92.81768,24.40802],[92.81894,24.41005],[92.81245,24.40928],[92.81216,24.41148],[92.81007,24.41186],[92.81161,24.41328],[92.8088,24.41268],[92.809,24.41569],[92.80685,24.41885],[92.80434,24.41753],[92.79937,24.41913],[92.80179,24.42058],[92.8027,24.42436],[92.80116,24.42535],[92.80127,24.42965],[92.79991,24.43009]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"262","area_level":"District","area_name":"Champhai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.24345,24.08227],[93.23776,24.08352],[93.23207,24.081],[93.22214,24.08351],[93.21929,24.081],[93.21787,24.07849],[93.2207,24.07095],[93.21217,24.04706],[93.19372,24.04956],[93.18947,24.05333],[93.17101,24.0508],[93.16717,24.05165],[93.1646,24.05008],[93.16538,24.04451],[93.16335,24.04045],[93.15972,24.02071],[93.16012,24.01542],[93.16196,24.01283],[93.15932,24.0096],[93.1583,24.00497],[93.16088,24.00167],[93.1628,23.99284],[93.16764,23.98939],[93.16817,23.98475],[93.17116,23.98505],[93.17166,23.98244],[93.17441,23.98041],[93.17408,23.97482],[93.18191,23.97182],[93.17864,23.96616],[93.18196,23.95242],[93.18384,23.9482],[93.19023,23.94135],[93.18672,23.93571],[93.18764,23.93002],[93.18201,23.93187],[93.17821,23.93124],[93.16997,23.93449],[93.16581,23.93179],[93.16487,23.92562],[93.15633,23.90893],[93.15715,23.90558],[93.16676,23.89384],[93.16562,23.88992],[93.16688,23.8822],[93.16967,23.87783],[93.16394,23.87546],[93.16262,23.85704],[93.15853,23.85276],[93.13779,23.84234],[93.13824,23.83568],[93.13319,23.829],[93.13292,23.82636],[93.12983,23.82771],[93.12194,23.82701],[93.10975,23.83064],[93.10366,23.82877],[93.0909,23.82956],[93.08685,23.82214],[93.08306,23.82163],[93.07323,23.81125],[93.05888,23.80433],[93.0578,23.80067],[93.06004,23.79694],[93.06241,23.79695],[93.06293,23.79411],[93.05871,23.79507],[93.05553,23.78961],[93.05303,23.78926],[93.05335,23.79256],[93.0507,23.79153],[93.0434,23.79281],[93.04454,23.79165],[93.04021,23.7902],[93.03857,23.79249],[93.03428,23.79214],[93.03503,23.79384],[93.03369,23.79457],[93.02832,23.79491],[93.03067,23.79899],[93.02027,23.7994],[93.02051,23.80076],[93.01875,23.80144],[93.01411,23.80114],[93.01015,23.8029],[93.01002,23.79994],[93.01624,23.79262],[93.02178,23.79323],[93.02259,23.77687],[93.02552,23.76585],[93.02434,23.76257],[93.02699,23.76137],[93.02568,23.75844],[93.02852,23.75814],[93.02894,23.75576],[93.02607,23.75407],[93.02576,23.75221],[93.03052,23.75081],[93.02891,23.74629],[93.03176,23.74636],[93.03018,23.7438],[93.0332,23.73919],[93.02598,23.73611],[93.02397,23.73257],[93.02666,23.72729],[93.02743,23.72139],[93.027,23.71622],[93.02468,23.71501],[93.02601,23.7112],[93.02878,23.71218],[93.03071,23.70821],[93.03114,23.70197],[93.02975,23.69985],[93.03118,23.69381],[93.0291,23.69234],[93.0283,23.68626],[93.02509,23.68628],[93.02398,23.68468],[93.0245,23.67729],[93.02802,23.67977],[93.02592,23.6745],[93.02751,23.67236],[93.0276,23.65986],[93.02965,23.65878],[93.0288,23.65422],[93.03105,23.65474],[93.03086,23.64977],[93.03263,23.64724],[93.0319,23.64064],[93.03006,23.63834],[93.03128,23.63284],[93.02761,23.63077],[93.0301,23.62673],[93.02828,23.6258],[93.02955,23.6118],[93.02777,23.60064],[93.0285,23.5903],[93.03117,23.58343],[93.03134,23.57835],[93.03508,23.57521],[93.0331,23.56651],[93.03136,23.56537],[93.03278,23.56168],[93.03676,23.56196],[93.03383,23.56009],[93.03329,23.5531],[93.03494,23.55089],[93.03695,23.5517],[93.0367,23.54735],[93.03901,23.54202],[93.03688,23.53755],[93.03955,23.53618],[93.03833,23.53186],[93.03947,23.5287],[93.03825,23.5274],[93.04087,23.52386],[93.03939,23.51895],[93.03305,23.51382],[93.02496,23.51429],[93.02381,23.51098],[93.02028,23.51094],[93.02093,23.50942],[93.01765,23.51001],[93.01826,23.50841],[93.01589,23.50686],[93.01614,23.50496],[93.0122,23.5031],[93.00977,23.49159],[93.00645,23.4907],[93.0063,23.48891],[93.00467,23.48937],[93.0025,23.48337],[93.01108,23.47711],[93.0195,23.47406],[93.02298,23.47072],[93.03398,23.47371],[93.0412,23.48419],[93.04465,23.48538],[93.04909,23.48478],[93.06049,23.47733],[93.07748,23.47808],[93.08169,23.46925],[93.0787,23.46768],[93.07064,23.46886],[93.06997,23.465],[93.07793,23.4561],[93.08386,23.45563],[93.0868,23.45325],[93.09781,23.45102],[93.09893,23.4465],[93.09772,23.44285],[93.08575,23.43332],[93.08227,23.41378],[93.07891,23.40555],[93.07411,23.40111],[93.0665,23.39709],[93.06326,23.40027],[93.05955,23.39968],[93.05331,23.4029],[93.03604,23.4],[93.03247,23.39769],[93.03304,23.39456],[93.03586,23.39233],[93.03754,23.3843],[93.04859,23.37276],[93.04859,23.36973],[93.04092,23.35738],[93.04168,23.35446],[93.03969,23.34891],[93.03575,23.34698],[93.03717,23.34337],[93.03382,23.33663],[93.03442,23.33247],[93.03192,23.32679],[93.02749,23.32483],[93.02518,23.32118],[93.01894,23.31876],[93.00584,23.30481],[93.00676,23.3014],[93.0051,23.29045],[93.00691,23.28737],[93.00702,23.28154],[93.01103,23.27398],[93.01951,23.26798],[93.0306,23.26599],[93.03094,23.26475],[93.02765,23.26198],[93.0316,23.26002],[93.03232,23.25439],[93.03769,23.25376],[93.04311,23.24944],[93.03906,23.24592],[93.0342,23.24486],[93.03803,23.24298],[93.03838,23.23693],[93.04105,23.23966],[93.04823,23.23757],[93.05261,23.24106],[93.05349,23.24002],[93.05427,23.24352],[93.06693,23.23483],[93.06905,23.22978],[93.08268,23.22607],[93.09202,23.23097],[93.09937,23.24054],[93.10537,23.2404],[93.11079,23.2364],[93.11037,23.23483],[93.11332,23.23136],[93.11935,23.22849],[93.12383,23.22405],[93.12903,23.22263],[93.13647,23.21676],[93.14606,23.20219],[93.15428,23.1992],[93.15815,23.19905],[93.15934,23.20108],[93.16169,23.19916],[93.16277,23.19749],[93.16116,23.19309],[93.15797,23.19574],[93.15117,23.19063],[93.1455,23.19026],[93.14526,23.18468],[93.14773,23.18076],[93.15894,23.17797],[93.16112,23.17575],[93.15973,23.17152],[93.16265,23.16506],[93.16187,23.16224],[93.1669,23.15577],[93.17133,23.14636],[93.16888,23.14346],[93.17284,23.14084],[93.16769,23.13609],[93.16549,23.1282],[93.16732,23.12229],[93.16462,23.11671],[93.16283,23.10152],[93.16584,23.09391],[93.17032,23.09058],[93.16988,23.08602],[93.1752,23.08115],[93.17041,23.07757],[93.177,23.07045],[93.17503,23.06909],[93.17507,23.06276],[93.17984,23.05695],[93.18287,23.05942],[93.18547,23.05921],[93.18822,23.05219],[93.20152,23.05485],[93.20201,23.05075],[93.20987,23.04854],[93.2113,23.03917],[93.21346,23.03594],[93.21635,23.03604],[93.21742,23.03387],[93.21505,23.0273],[93.2187,23.02394],[93.22499,23.02387],[93.22552,23.02027],[93.22978,23.01993],[93.23069,23.01774],[93.22843,23.01342],[93.22946,23.01165],[93.23551,23.01127],[93.24094,23.00715],[93.24691,23.0066],[93.26399,23.0081],[93.26731,23.01048],[93.27124,23.01073],[93.27501,23.00391],[93.28077,23.00529],[93.28317,23.00837],[93.2904,23.00861],[93.29354,23.00644],[93.30452,23.02022],[93.3071,23.02141],[93.31385,23.01943],[93.31341,23.02622],[93.32031,23.02889],[93.32037,23.03667],[93.32368,23.03598],[93.328,23.0396],[93.32742,23.04752],[93.3336,23.04857],[93.33461,23.05945],[93.33718,23.05999],[93.34243,23.05754],[93.34362,23.05908],[93.34041,23.06487],[93.34081,23.0677],[93.34586,23.07097],[93.35206,23.0704],[93.35159,23.07289],[93.34518,23.07513],[93.33926,23.07383],[93.34351,23.08018],[93.34345,23.08595],[93.3464,23.0879],[93.34457,23.09177],[93.34713,23.09301],[93.3506,23.09135],[93.35429,23.09683],[93.35537,23.10372],[93.35851,23.10957],[93.3554,23.11314],[93.35566,23.11605],[93.36321,23.11494],[93.36621,23.12138],[93.37234,23.12605],[93.37759,23.12679],[93.37745,23.13263],[93.38448,23.13261],[93.38561,23.13384],[93.38645,23.14411],[93.38353,23.14449],[93.37828,23.14068],[93.37118,23.14109],[93.36823,23.1441],[93.37139,23.15234],[93.36925,23.15412],[93.37208,23.1593],[93.37123,23.16558],[93.37255,23.17119],[93.36865,23.1753],[93.37431,23.17722],[93.38064,23.18659],[93.37696,23.19026],[93.38027,23.1999],[93.37545,23.20422],[93.37799,23.2068],[93.37832,23.21237],[93.3806,23.21535],[93.38804,23.2152],[93.38861,23.21692],[93.38355,23.22392],[93.38127,23.2243],[93.38206,23.23221],[93.3788,23.23431],[93.37939,23.23781],[93.37621,23.24405],[93.37664,23.24789],[93.36947,23.25044],[93.37169,23.25463],[93.37023,23.25864],[93.37364,23.26126],[93.36988,23.26347],[93.3684,23.26877],[93.36571,23.2692],[93.36916,23.27607],[93.36261,23.27914],[93.36388,23.2815],[93.3669,23.28098],[93.36993,23.28717],[93.366,23.29398],[93.36854,23.30183],[93.36508,23.30634],[93.37162,23.30961],[93.36729,23.31046],[93.36383,23.31323],[93.37157,23.31354],[93.37147,23.31656],[93.36755,23.31974],[93.36692,23.32216],[93.3716,23.32615],[93.37288,23.32942],[93.37009,23.33306],[93.36304,23.33632],[93.35812,23.3423],[93.35829,23.34609],[93.35577,23.35189],[93.36075,23.35631],[93.36587,23.35651],[93.37119,23.35907],[93.37932,23.36083],[93.38141,23.35819],[93.38401,23.36193],[93.38763,23.3594],[93.3893,23.36452],[93.38796,23.36742],[93.3912,23.37004],[93.38694,23.37184],[93.38649,23.37408],[93.39305,23.37503],[93.395,23.37682],[93.39696,23.38354],[93.40165,23.38375],[93.40239,23.38932],[93.39834,23.3928],[93.39813,23.39657],[93.39444,23.39717],[93.39149,23.40828],[93.39079,23.41856],[93.38831,23.42082],[93.38984,23.42389],[93.38929,23.43278],[93.39108,23.44203],[93.38801,23.44638],[93.39055,23.45072],[93.39301,23.44777],[93.39476,23.44807],[93.39296,23.45078],[93.39601,23.45367],[93.39221,23.45737],[93.39419,23.45834],[93.39396,23.46447],[93.39741,23.46629],[93.39931,23.47188],[93.39746,23.47287],[93.39816,23.4748],[93.3954,23.47502],[93.3925,23.47881],[93.39551,23.48132],[93.39599,23.48392],[93.39379,23.48668],[93.39528,23.49147],[93.39472,23.50376],[93.39695,23.50499],[93.39796,23.51056],[93.40157,23.50992],[93.40428,23.51259],[93.4038,23.51672],[93.40875,23.51731],[93.40919,23.52343],[93.41398,23.52954],[93.41854,23.54001],[93.41533,23.54457],[93.41244,23.55644],[93.40906,23.55741],[93.40915,23.55872],[93.41378,23.56027],[93.40982,23.56365],[93.41355,23.56507],[93.41467,23.57116],[93.41812,23.56868],[93.42207,23.57137],[93.42323,23.58444],[93.42856,23.58828],[93.42586,23.59103],[93.42756,23.59411],[93.42585,23.59636],[93.42635,23.5996],[93.42419,23.60083],[93.4257,23.60126],[93.42167,23.60312],[93.42448,23.60491],[93.42164,23.60733],[93.42208,23.61032],[93.42052,23.6116],[93.42243,23.61552],[93.41994,23.62345],[93.42269,23.62458],[93.42157,23.6269],[93.42458,23.62954],[93.42267,23.63116],[93.42338,23.63387],[93.41714,23.63765],[93.41843,23.64671],[93.4165,23.64763],[93.42021,23.64876],[93.41958,23.65008],[93.422,23.65165],[93.42039,23.65332],[93.4241,23.6561],[93.42242,23.65997],[93.4258,23.66222],[93.42559,23.66427],[93.4311,23.67342],[93.43288,23.67304],[93.43143,23.67489],[93.4361,23.67805],[93.43505,23.67913],[93.43691,23.68704],[93.42732,23.68806],[93.42554,23.68928],[93.42519,23.69266],[93.42117,23.69601],[93.41984,23.6986],[93.42133,23.69921],[93.41945,23.70149],[93.41024,23.7038],[93.40929,23.70669],[93.40727,23.70724],[93.40859,23.7087],[93.40614,23.71532],[93.40999,23.71799],[93.41229,23.71743],[93.40934,23.72099],[93.41096,23.72375],[93.4099,23.72675],[93.41095,23.7294],[93.40655,23.73255],[93.40399,23.73774],[93.40377,23.74527],[93.39504,23.74943],[93.39524,23.75386],[93.39155,23.75669],[93.39169,23.76118],[93.39576,23.76886],[93.39409,23.77441],[93.39649,23.7805],[93.3963,23.78653],[93.3977,23.78791],[93.39789,23.79278],[93.40284,23.79709],[93.40326,23.80705],[93.40188,23.81244],[93.3985,23.81528],[93.39668,23.81407],[93.39452,23.81744],[93.39192,23.81644],[93.39005,23.81772],[93.3902,23.82116],[93.39239,23.82342],[93.38846,23.82557],[93.39001,23.83011],[93.38862,23.83288],[93.39016,23.83384],[93.38873,23.83479],[93.38852,23.84071],[93.38496,23.84813],[93.38757,23.85515],[93.38565,23.85854],[93.38879,23.86511],[93.3868,23.86673],[93.38764,23.86866],[93.38476,23.87301],[93.38464,23.87681],[93.38925,23.88884],[93.39003,23.9019],[93.39145,23.90353],[93.3901,23.90603],[93.39182,23.90649],[93.3914,23.91424],[93.39528,23.91537],[93.39162,23.91851],[93.39396,23.92534],[93.39067,23.92382],[93.39064,23.92688],[93.39314,23.92884],[93.38682,23.9312],[93.3849,23.9301],[93.3807,23.93453],[93.37838,23.93281],[93.37159,23.93235],[93.36893,23.93018],[93.36874,23.93287],[93.3654,23.93357],[93.36371,23.93835],[93.35933,23.94093],[93.36173,23.94378],[93.36026,23.94507],[93.3575,23.94545],[93.35602,23.94234],[93.35334,23.94101],[93.35076,23.94165],[93.35452,23.94329],[93.35316,23.94694],[93.3503,23.94624],[93.34856,23.94805],[93.34876,23.94913],[93.35111,23.94829],[93.35358,23.95107],[93.35285,23.95352],[93.35025,23.95455],[93.35201,23.95729],[93.35114,23.96165],[93.35012,23.96261],[93.34749,23.96126],[93.34672,23.96442],[93.34103,23.96979],[93.34401,23.97124],[93.34328,23.97508],[93.33669,23.97588],[93.33947,23.98056],[93.33328,23.97906],[93.33248,23.98026],[93.33506,23.9826],[93.33415,23.98513],[93.32889,23.9848],[93.32983,23.98658],[93.3375,23.98967],[93.33424,23.99218],[93.3343,23.99772],[93.33221,23.99941],[93.33449,24.00471],[93.33283,24.00761],[93.3335,24.01444],[93.33041,24.01531],[93.3296,24.02044],[93.33157,24.02107],[93.3351,24.01903],[93.33896,24.02148],[93.33779,24.0256],[93.33071,24.02709],[93.33182,24.02997],[93.32591,24.02992],[93.32871,24.0338],[93.33532,24.03563],[93.33239,24.03802],[93.3374,24.03914],[93.33751,24.04117],[93.33406,24.04045],[93.33196,24.04251],[93.32763,24.04237],[93.3258,24.05035],[93.30785,24.05093],[93.29359,24.04841],[93.28353,24.0484],[93.28071,24.04338],[93.27212,24.03708],[93.26929,24.0308],[93.25064,24.02071],[93.25207,24.02574],[93.24775,24.03075],[93.2577,24.05463],[93.26199,24.05715],[93.25911,24.06469],[93.25911,24.06971],[93.24345,24.08227]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"263","area_level":"District","area_name":"Kolasib","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.7636,24.52112],[92.75777,24.51277],[92.75805,24.51102],[92.75604,24.51126],[92.75613,24.50957],[92.75215,24.50623],[92.75189,24.50401],[92.75422,24.502],[92.74937,24.49517],[92.75082,24.49209],[92.74698,24.48703],[92.74051,24.46855],[92.73365,24.45474],[92.7275,24.44642],[92.72612,24.43851],[92.72171,24.43195],[92.72294,24.42846],[92.72179,24.42523],[92.71797,24.42015],[92.71724,24.41534],[92.71509,24.41498],[92.7129,24.41121],[92.71509,24.40954],[92.71138,24.40722],[92.71327,24.40332],[92.70922,24.39735],[92.70928,24.39337],[92.70647,24.39215],[92.70734,24.38699],[92.70566,24.38438],[92.70409,24.38464],[92.70361,24.37545],[92.69764,24.3743],[92.69533,24.36885],[92.69282,24.36847],[92.69476,24.36536],[92.69117,24.36252],[92.69151,24.35754],[92.68925,24.35524],[92.68976,24.3536],[92.68391,24.3507],[92.68452,24.34639],[92.6791,24.3478],[92.67716,24.35015],[92.67339,24.34964],[92.66894,24.34609],[92.6663,24.3463],[92.66562,24.34964],[92.66427,24.34606],[92.66316,24.34882],[92.6612,24.34806],[92.66062,24.34405],[92.65768,24.34438],[92.65911,24.3419],[92.65161,24.33547],[92.65172,24.33105],[92.65011,24.3316],[92.64953,24.32868],[92.64643,24.33102],[92.64576,24.32778],[92.63872,24.32842],[92.64036,24.33361],[92.6363,24.33134],[92.63542,24.33356],[92.63869,24.33445],[92.63569,24.3367],[92.63024,24.33362],[92.62477,24.33408],[92.62239,24.33119],[92.62234,24.32811],[92.62368,24.32728],[92.62155,24.32343],[92.62374,24.3228],[92.62361,24.32028],[92.61937,24.31306],[92.61819,24.29818],[92.61622,24.29228],[92.61603,24.28939],[92.61971,24.28713],[92.61311,24.25865],[92.61416,24.25595],[92.60605,24.24845],[92.59571,24.25049],[92.58903,24.24877],[92.57213,24.25188],[92.56357,24.25142],[92.55595,24.24681],[92.55065,24.247],[92.54705,24.23645],[92.54687,24.23297],[92.54848,24.23186],[92.54675,24.22991],[92.54712,24.22016],[92.5423,24.21344],[92.54326,24.21147],[92.54096,24.21024],[92.54201,24.20752],[92.54048,24.20358],[92.53669,24.20126],[92.53784,24.19677],[92.53464,24.19367],[92.53112,24.18514],[92.53637,24.1754],[92.53433,24.17162],[92.52682,24.16519],[92.53744,24.15641],[92.5452,24.14179],[92.54434,24.1389],[92.53877,24.13467],[92.53602,24.12711],[92.53749,24.12544],[92.54279,24.12603],[92.54365,24.12476],[92.53884,24.11721],[92.53658,24.10967],[92.54009,24.09936],[92.53592,24.09261],[92.53918,24.07949],[92.53571,24.06447],[92.53794,24.05625],[92.53505,24.05243],[92.53397,24.04738],[92.53822,24.03572],[92.54535,24.04155],[92.54976,24.04243],[92.54958,24.05451],[92.55199,24.06336],[92.55758,24.06204],[92.55775,24.05466],[92.56361,24.05444],[92.55879,24.04567],[92.55879,24.04091],[92.56384,24.04321],[92.56609,24.04107],[92.57368,24.0533],[92.57079,24.0618],[92.57542,24.06671],[92.57157,24.07589],[92.57401,24.07716],[92.57841,24.07564],[92.58082,24.07748],[92.58616,24.07571],[92.58713,24.07088],[92.58565,24.06375],[92.5932,24.06278],[92.59836,24.05386],[92.60109,24.05229],[92.60482,24.05111],[92.61167,24.05192],[92.61557,24.04574],[92.61747,24.03639],[92.62199,24.03201],[92.62427,24.03292],[92.62261,24.03784],[92.62449,24.04304],[92.62714,24.04175],[92.6302,24.0367],[92.63607,24.03531],[92.63551,24.03174],[92.6287,24.03263],[92.62358,24.02318],[92.6219,24.01543],[92.61863,24.01242],[92.6214,24.00548],[92.63076,24.00152],[92.63292,23.99831],[92.62953,23.99358],[92.63177,23.98519],[92.62577,23.98191],[92.62039,23.96226],[92.62042,23.95812],[92.62568,23.9557],[92.62627,23.95051],[92.62909,23.94548],[92.62832,23.94388],[92.62438,23.94418],[92.62128,23.9373],[92.62545,23.93403],[92.64191,23.9305],[92.64417,23.92757],[92.64411,23.92231],[92.65328,23.92227],[92.65914,23.91667],[92.66097,23.90534],[92.65629,23.90079],[92.65192,23.89957],[92.65,23.89175],[92.66182,23.88143],[92.66317,23.87282],[92.66228,23.86806],[92.66779,23.86752],[92.67025,23.86538],[92.67247,23.86696],[92.67985,23.86725],[92.68659,23.85982],[92.69299,23.85877],[92.69582,23.85711],[92.69556,23.85584],[92.69818,23.85568],[92.69846,23.85801],[92.7036,23.85828],[92.70867,23.86177],[92.71275,23.85807],[92.72289,23.85489],[92.72616,23.85111],[92.728,23.85245],[92.73568,23.84909],[92.74354,23.85005],[92.74918,23.84588],[92.77682,23.85221],[92.78236,23.85027],[92.78768,23.85144],[92.79301,23.84776],[92.79709,23.84803],[92.80098,23.85408],[92.80187,23.86359],[92.80057,23.86554],[92.80304,23.87088],[92.80276,23.87516],[92.80509,23.87832],[92.80604,23.88598],[92.81058,23.88704],[92.80896,23.88992],[92.8104,23.89115],[92.80923,23.89214],[92.81009,23.8943],[92.81742,23.89623],[92.81959,23.9063],[92.81853,23.90985],[92.82195,23.91209],[92.81966,23.91627],[92.81532,23.91387],[92.81627,23.91861],[92.81172,23.91613],[92.80665,23.91962],[92.80776,23.92195],[92.81112,23.92184],[92.81248,23.92915],[92.81858,23.93504],[92.81584,23.93598],[92.81495,23.93884],[92.81609,23.9425],[92.81946,23.94494],[92.81894,23.94894],[92.82247,23.95339],[92.8217,23.95618],[92.8177,23.95873],[92.81608,23.96637],[92.81827,23.96693],[92.82053,23.97191],[92.82053,23.98167],[92.82336,23.98155],[92.82669,23.98608],[92.82162,23.98695],[92.82524,23.9906],[92.8208,23.99409],[92.8252,23.99654],[92.82435,24.0003],[92.82695,24.00049],[92.82883,24.01321],[92.83086,24.01613],[92.8289,24.01906],[92.8313,24.02365],[92.83345,24.02387],[92.83577,24.01683],[92.83888,24.0151],[92.84022,24.01664],[92.83934,24.02036],[92.8412,24.02295],[92.84101,24.02639],[92.84581,24.02685],[92.84469,24.03053],[92.84171,24.03305],[92.8433,24.03624],[92.84662,24.03413],[92.84751,24.03494],[92.84689,24.04268],[92.84811,24.04437],[92.84477,24.04594],[92.84702,24.05102],[92.84463,24.05466],[92.84695,24.05996],[92.84594,24.06323],[92.84757,24.06829],[92.85434,24.07305],[92.85541,24.07799],[92.85434,24.07985],[92.85775,24.08835],[92.8546,24.09327],[92.85545,24.0998],[92.85873,24.09932],[92.85863,24.10725],[92.8631,24.10726],[92.86764,24.10974],[92.86866,24.11479],[92.86606,24.11858],[92.87,24.1221],[92.87065,24.1279],[92.87651,24.13027],[92.87581,24.13251],[92.87136,24.13574],[92.87149,24.14006],[92.87481,24.14797],[92.87949,24.15079],[92.88188,24.15466],[92.87991,24.15813],[92.88377,24.16071],[92.88567,24.16871],[92.8819,24.17036],[92.8908,24.17384],[92.89368,24.19799],[92.89184,24.20014],[92.8939,24.20205],[92.89279,24.20466],[92.8971,24.20578],[92.89624,24.20855],[92.89823,24.21219],[92.89463,24.21224],[92.89903,24.21892],[92.89846,24.2232],[92.90027,24.22602],[92.89668,24.23897],[92.88995,24.24132],[92.8881,24.24557],[92.88696,24.24542],[92.8859,24.23927],[92.87956,24.23321],[92.87742,24.23409],[92.87584,24.23837],[92.87093,24.24297],[92.86326,24.24196],[92.85909,24.24363],[92.86148,24.24639],[92.85876,24.25032],[92.86452,24.25227],[92.86168,24.25511],[92.86207,24.25846],[92.85846,24.25869],[92.86012,24.26127],[92.86518,24.2624],[92.86038,24.26515],[92.86015,24.26798],[92.86603,24.27672],[92.87216,24.27759],[92.87244,24.27954],[92.86886,24.28311],[92.87235,24.28687],[92.87016,24.28996],[92.87025,24.29659],[92.86216,24.30226],[92.86207,24.30859],[92.85619,24.30549],[92.85426,24.30649],[92.85342,24.30982],[92.85687,24.31388],[92.85597,24.31507],[92.84968,24.31636],[92.84597,24.30965],[92.84327,24.30826],[92.8403,24.30078],[92.83732,24.29927],[92.81739,24.29615],[92.81163,24.29929],[92.81173,24.31162],[92.80596,24.31552],[92.80077,24.31643],[92.80046,24.3193],[92.79604,24.32436],[92.79096,24.32506],[92.79261,24.32267],[92.78948,24.32115],[92.78879,24.31844],[92.78577,24.31752],[92.78458,24.31381],[92.77912,24.31147],[92.77509,24.3116],[92.77264,24.31684],[92.77082,24.31532],[92.76469,24.31665],[92.76557,24.32321],[92.76956,24.31998],[92.77197,24.32555],[92.77145,24.32667],[92.76863,24.32575],[92.76683,24.32919],[92.76848,24.3403],[92.77042,24.34141],[92.77356,24.33884],[92.77508,24.34497],[92.78026,24.34543],[92.77947,24.34729],[92.77691,24.34752],[92.77686,24.35027],[92.77431,24.35004],[92.77248,24.35405],[92.77465,24.35545],[92.77725,24.3532],[92.77956,24.35519],[92.78226,24.36149],[92.78057,24.36671],[92.77905,24.3673],[92.78076,24.36859],[92.7794,24.37172],[92.77996,24.37295],[92.78302,24.3719],[92.78474,24.37463],[92.77734,24.38523],[92.77853,24.38755],[92.78563,24.39123],[92.7844,24.39365],[92.78635,24.3949],[92.78475,24.39615],[92.78744,24.39912],[92.78728,24.4039],[92.78895,24.40569],[92.78793,24.40699],[92.78995,24.40838],[92.78846,24.40928],[92.79127,24.4094],[92.79138,24.41271],[92.78853,24.41351],[92.79072,24.41634],[92.7931,24.41675],[92.79003,24.41886],[92.7923,24.4198],[92.79292,24.42208],[92.79091,24.42079],[92.79055,24.42188],[92.79319,24.42794],[92.79518,24.42764],[92.79457,24.43072],[92.79544,24.43159],[92.79611,24.4304],[92.79706,24.43265],[92.7636,24.52112]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"264","area_level":"District","area_name":"Lawngtlai","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[92.54427,22.75568],[92.54361,22.75871],[92.54166,22.75956],[92.54253,22.76274],[92.53106,22.75935],[92.52747,22.75666],[92.52389,22.76139],[92.52014,22.76165],[92.51606,22.75919],[92.51713,22.75691],[92.51451,22.75509],[92.51525,22.75296],[92.51309,22.75303],[92.51207,22.75083],[92.50948,22.75039],[92.50544,22.74664],[92.50647,22.74227],[92.50434,22.74185],[92.50412,22.73847],[92.50564,22.73922],[92.50741,22.73775],[92.50905,22.73167],[92.5132,22.73279],[92.50994,22.72863],[92.5167,22.72217],[92.5175,22.71555],[92.51385,22.71032],[92.5139,22.708],[92.5166,22.70444],[92.51889,22.6879],[92.52327,22.67916],[92.52253,22.67408],[92.52595,22.6731],[92.52607,22.66519],[92.52872,22.66515],[92.52653,22.66047],[92.52868,22.65949],[92.52433,22.65899],[92.52352,22.65624],[92.52441,22.65387],[92.52666,22.65374],[92.5273,22.65077],[92.52462,22.65047],[92.52492,22.64014],[92.52677,22.63934],[92.52654,22.63671],[92.52791,22.63566],[92.52621,22.63357],[92.53253,22.63269],[92.53261,22.6275],[92.52743,22.62078],[92.53002,22.62058],[92.5291,22.61476],[92.53216,22.61167],[92.53536,22.61167],[92.53375,22.6075],[92.52995,22.60914],[92.53043,22.60349],[92.53537,22.60014],[92.53592,22.59571],[92.53782,22.59405],[92.53501,22.59103],[92.53619,22.58942],[92.53937,22.58915],[92.536,22.58663],[92.53297,22.58776],[92.53438,22.58517],[92.53855,22.58591],[92.5371,22.58462],[92.53646,22.57873],[92.53814,22.5751],[92.53264,22.57147],[92.5273,22.57299],[92.52804,22.56562],[92.52167,22.55988],[92.52836,22.55662],[92.53192,22.55221],[92.53155,22.5451],[92.53421,22.54409],[92.53721,22.54517],[92.53704,22.5419],[92.54,22.5406],[92.5386,22.53473],[92.54132,22.53426],[92.54151,22.53037],[92.53919,22.52893],[92.54119,22.52758],[92.54081,22.5256],[92.54376,22.52497],[92.54179,22.52242],[92.54414,22.52134],[92.54569,22.51779],[92.54338,22.51417],[92.54504,22.51352],[92.547,22.51682],[92.54725,22.51508],[92.55128,22.5133],[92.54657,22.50989],[92.55083,22.50961],[92.55022,22.50678],[92.54817,22.50742],[92.54719,22.50352],[92.54932,22.50145],[92.54712,22.50159],[92.54593,22.49948],[92.54335,22.50038],[92.5426,22.49876],[92.54993,22.49733],[92.54951,22.49575],[92.54518,22.49521],[92.54333,22.49325],[92.54346,22.49021],[92.54627,22.48866],[92.54423,22.48294],[92.54561,22.48243],[92.54536,22.47971],[92.54751,22.47593],[92.54554,22.47163],[92.54652,22.4662],[92.54808,22.46569],[92.54635,22.46246],[92.54948,22.45896],[92.54823,22.45741],[92.55015,22.4569],[92.54811,22.45602],[92.55097,22.4544],[92.55142,22.44869],[92.55003,22.44774],[92.55131,22.44594],[92.54946,22.44351],[92.55205,22.44225],[92.55168,22.43769],[92.55425,22.43622],[92.55338,22.43379],[92.55538,22.42921],[92.55124,22.42738],[92.55499,22.42721],[92.55498,22.42508],[92.55639,22.4251],[92.55523,22.42254],[92.55069,22.42257],[92.55457,22.41688],[92.55231,22.41533],[92.55208,22.40897],[92.55457,22.41072],[92.55689,22.40927],[92.55758,22.40716],[92.55478,22.40549],[92.55983,22.40183],[92.55946,22.39984],[92.55595,22.39854],[92.55983,22.39552],[92.55846,22.39408],[92.55975,22.39133],[92.55829,22.39113],[92.56106,22.38932],[92.55944,22.38744],[92.56114,22.38511],[92.55933,22.38186],[92.56338,22.3801],[92.56154,22.37835],[92.562,22.37575],[92.56379,22.37543],[92.56248,22.37166],[92.5674,22.37072],[92.56802,22.36051],[92.57187,22.35864],[92.57094,22.35662],[92.57323,22.34829],[92.5719,22.34663],[92.57332,22.34542],[92.57252,22.34267],[92.57505,22.34216],[92.57367,22.33804],[92.57599,22.33708],[92.57596,22.33516],[92.57408,22.33434],[92.57608,22.33296],[92.57428,22.33166],[92.57578,22.33128],[92.57672,22.32499],[92.58023,22.32498],[92.57847,22.32338],[92.58117,22.32176],[92.57945,22.32104],[92.58045,22.31921],[92.57802,22.31654],[92.57996,22.31493],[92.57856,22.31244],[92.58016,22.31175],[92.57725,22.31115],[92.58137,22.30842],[92.58145,22.3069],[92.57957,22.30613],[92.5803,22.30385],[92.58341,22.30393],[92.58019,22.30261],[92.58333,22.29892],[92.58249,22.29105],[92.58107,22.29047],[92.58259,22.28774],[92.58092,22.28642],[92.58411,22.28468],[92.58185,22.28179],[92.58659,22.28025],[92.58439,22.27905],[92.58633,22.27653],[92.58338,22.27732],[92.5835,22.27617],[92.58073,22.27606],[92.58076,22.2735],[92.58229,22.27411],[92.58317,22.2726],[92.58102,22.26918],[92.58432,22.26735],[92.58403,22.26515],[92.58689,22.26395],[92.58437,22.26151],[92.58673,22.25988],[92.58511,22.2586],[92.58676,22.25906],[92.58703,22.25731],[92.58907,22.25733],[92.5888,22.25558],[92.59077,22.25547],[92.58943,22.25392],[92.59092,22.249],[92.58911,22.24752],[92.59142,22.24653],[92.59046,22.24429],[92.59184,22.23922],[92.58967,22.23567],[92.59161,22.23467],[92.58876,22.23295],[92.59032,22.23284],[92.59068,22.23095],[92.58815,22.23039],[92.58939,22.2259],[92.58809,22.22397],[92.59035,22.22293],[92.58805,22.21598],[92.59179,22.21423],[92.59044,22.21326],[92.5927,22.21147],[92.59361,22.2044],[92.59484,22.2042],[92.59407,22.19596],[92.59568,22.19586],[92.59661,22.19026],[92.595,22.18388],[92.59691,22.1837],[92.5944,22.18122],[92.59706,22.17734],[92.59523,22.17539],[92.60375,22.17161],[92.60713,22.17253],[92.60666,22.16591],[92.60923,22.16402],[92.60744,22.16039],[92.61086,22.13844],[92.60786,22.13331],[92.60783,22.12797],[92.60575,22.12339],[92.59918,22.12314],[92.59446,22.12514],[92.58898,22.13144],[92.59328,22.13739],[92.59259,22.13883],[92.5785,22.14341],[92.57632,22.13958],[92.57735,22.13645],[92.56568,22.13478],[92.56397,22.13352],[92.56262,22.12802],[92.57514,22.11617],[92.57661,22.10497],[92.58257,22.09757],[92.5817,22.09164],[92.58435,22.09002],[92.58334,22.08689],[92.58546,22.08505],[92.58489,22.08251],[92.59065,22.081],[92.58986,22.07062],[92.59222,22.06562],[92.59556,22.06171],[92.60266,22.0611],[92.60035,22.05822],[92.60032,22.05299],[92.59797,22.04937],[92.59914,22.04225],[92.59365,22.04097],[92.59262,22.03744],[92.59362,22.03151],[92.60007,22.02841],[92.60054,22.01973],[92.59749,22.01225],[92.5981,22.00898],[92.60351,22.00104],[92.61,21.99767],[92.61005,21.99279],[92.61265,21.99076],[92.61107,21.98433],[92.60417,21.98277],[92.60319,21.98003],[92.60331,21.97737],[92.60754,21.97466],[92.62137,21.98013],[92.62391,21.98282],[92.63494,21.98322],[92.63677,21.99011],[92.6419,21.99216],[92.64342,22.00249],[92.65139,22.01002],[92.65161,22.01591],[92.65805,22.01558],[92.6607,22.0133],[92.66678,22.0135],[92.66979,22.00967],[92.67133,22.01109],[92.67673,22.01047],[92.6799,22.01186],[92.68518,22.04305],[92.68224,22.07288],[92.68177,22.10346],[92.68804,22.10373],[92.68864,22.07271],[92.69043,22.07221],[92.69253,22.0751],[92.69139,22.08287],[92.69262,22.12096],[92.69161,22.13306],[92.69214,22.13936],[92.69585,22.13749],[92.69697,22.14243],[92.69475,22.14702],[92.69474,22.15349],[92.69976,22.15507],[92.70084,22.15157],[92.70437,22.15021],[92.7072,22.15185],[92.7104,22.15112],[92.71282,22.14741],[92.7268,22.14911],[92.73538,22.13444],[92.73962,22.13198],[92.74125,22.13282],[92.74208,22.13066],[92.74624,22.13119],[92.74718,22.12778],[92.75356,22.12423],[92.76003,22.12551],[92.7619,22.12039],[92.76413,22.12069],[92.7633,22.11877],[92.76643,22.11916],[92.76571,22.11696],[92.76766,22.11671],[92.76683,22.1141],[92.77039,22.11191],[92.77105,22.10907],[92.77295,22.10902],[92.77368,22.10698],[92.77906,22.10766],[92.79035,22.1048],[92.79255,22.1],[92.79594,22.09891],[92.79641,22.09478],[92.7984,22.09346],[92.80107,22.09433],[92.80392,22.09801],[92.80659,22.09598],[92.80994,22.09592],[92.81346,22.0891],[92.81767,22.08688],[92.81671,22.08097],[92.81847,22.07469],[92.83674,22.07166],[92.83985,22.06091],[92.84169,22.05913],[92.8502,22.06261],[92.84646,22.07426],[92.8464,22.08997],[92.84012,22.12048],[92.84383,22.13649],[92.84153,22.14643],[92.84203,22.1511],[92.8397,22.15681],[92.84027,22.16761],[92.83697,22.18706],[92.83854,22.19647],[92.83579,22.20684],[92.83616,22.23219],[92.83221,22.25048],[92.82962,22.25594],[92.83507,22.26695],[92.83437,22.27096],[92.83147,22.2721],[92.83059,22.27432],[92.83294,22.28381],[92.83252,22.28829],[92.83686,22.29108],[92.82978,22.30087],[92.82243,22.30702],[92.82637,22.31683],[92.8208,22.32408],[92.82142,22.32933],[92.82528,22.33389],[92.83768,22.32919],[92.8432,22.33027],[92.84909,22.31932],[92.85313,22.31948],[92.85527,22.32226],[92.8599,22.31984],[92.86784,22.33388],[92.86897,22.34094],[92.87647,22.35535],[92.88604,22.36303],[92.90465,22.37402],[92.90919,22.38105],[92.91955,22.39095],[92.92919,22.39601],[92.93186,22.39653],[92.93576,22.39469],[92.93803,22.39147],[92.93178,22.38538],[92.93278,22.38129],[92.94116,22.37379],[92.95356,22.37218],[92.9578,22.37481],[92.96004,22.38286],[92.96536,22.39309],[92.96297,22.3978],[92.95388,22.39993],[92.95014,22.40355],[92.9431,22.42086],[92.9422,22.42906],[92.93725,22.44105],[92.93473,22.45865],[92.94329,22.46264],[92.94429,22.46628],[92.93911,22.47566],[92.93265,22.47872],[92.93089,22.48253],[92.93624,22.51219],[92.93423,22.52047],[92.93782,22.52776],[92.93885,22.53606],[92.93501,22.54427],[92.9312,22.54856],[92.93116,22.55562],[92.92618,22.55267],[92.92146,22.55237],[92.91454,22.54736],[92.91128,22.5473],[92.90524,22.55753],[92.90607,22.56465],[92.90125,22.56984],[92.90184,22.57622],[92.89969,22.58053],[92.89469,22.58485],[92.88337,22.58248],[92.8771,22.58405],[92.87243,22.58973],[92.875,22.59514],[92.86193,22.599],[92.8625,22.60414],[92.85905,22.60437],[92.84926,22.60962],[92.84664,22.61439],[92.84406,22.61424],[92.84503,22.61665],[92.83719,22.62539],[92.8283,22.62385],[92.82773,22.6265],[92.82519,22.6261],[92.82311,22.62783],[92.81898,22.62617],[92.81478,22.6274],[92.81139,22.63061],[92.80651,22.62938],[92.79921,22.62142],[92.80269,22.6131],[92.80227,22.61048],[92.79647,22.60618],[92.79586,22.59784],[92.7959,22.59335],[92.80051,22.58915],[92.79956,22.58007],[92.80263,22.57426],[92.80314,22.56951],[92.80037,22.56196],[92.79472,22.55802],[92.79594,22.55206],[92.7927,22.54895],[92.78243,22.54566],[92.77917,22.54191],[92.78,22.53858],[92.77645,22.5366],[92.78122,22.53332],[92.77631,22.53377],[92.77579,22.53046],[92.7725,22.52768],[92.77495,22.52428],[92.77347,22.51699],[92.77781,22.51586],[92.77476,22.512],[92.77744,22.50784],[92.77468,22.50316],[92.7774,22.49932],[92.77694,22.49703],[92.76904,22.50308],[92.76592,22.49921],[92.76039,22.49693],[92.7583,22.49955],[92.75645,22.4995],[92.75734,22.50558],[92.75477,22.50604],[92.75347,22.5123],[92.75545,22.51702],[92.75323,22.51819],[92.75102,22.52793],[92.75295,22.52919],[92.75474,22.53501],[92.75173,22.5396],[92.75217,22.54489],[92.75072,22.54637],[92.74808,22.54554],[92.7351,22.55954],[92.71965,22.56414],[92.71934,22.56799],[92.71598,22.57026],[92.71039,22.57876],[92.7091,22.57852],[92.70985,22.58532],[92.70803,22.58529],[92.70631,22.58239],[92.70558,22.58567],[92.70035,22.58466],[92.69332,22.59136],[92.69414,22.60243],[92.6904,22.61029],[92.69441,22.61153],[92.69527,22.61679],[92.6982,22.61958],[92.6963,22.62205],[92.66928,22.62447],[92.66352,22.62125],[92.66158,22.61723],[92.65502,22.6216],[92.64677,22.61943],[92.64068,22.62178],[92.64058,22.62536],[92.64327,22.62958],[92.64148,22.63209],[92.64615,22.63251],[92.64373,22.63736],[92.64453,22.64791],[92.64192,22.64915],[92.63839,22.65704],[92.62845,22.65795],[92.62632,22.65959],[92.62554,22.66255],[92.62851,22.66373],[92.62974,22.66641],[92.62639,22.67109],[92.61771,22.6714],[92.61712,22.68454],[92.61581,22.68447],[92.61632,22.68116],[92.61383,22.67897],[92.60886,22.6812],[92.60677,22.68351],[92.60382,22.69281],[92.5966,22.69616],[92.59641,22.70359],[92.59365,22.70989],[92.59813,22.71305],[92.59728,22.71629],[92.60066,22.71752],[92.6021,22.72047],[92.59874,22.72098],[92.59403,22.72459],[92.5933,22.72749],[92.59582,22.72981],[92.5955,22.73171],[92.59039,22.73133],[92.58591,22.73809],[92.58572,22.73999],[92.59039,22.74246],[92.5908,22.74439],[92.58566,22.74603],[92.57979,22.7553],[92.57835,22.75543],[92.57553,22.75045],[92.57889,22.74304],[92.57682,22.7409],[92.57828,22.74005],[92.57114,22.73318],[92.56688,22.73166],[92.56549,22.73208],[92.56444,22.73619],[92.56122,22.73847],[92.55819,22.74754],[92.55279,22.74833],[92.54427,22.75568]]],[[[93.08177,22.80852],[93.07492,22.80768],[93.06832,22.8029],[93.06306,22.80486],[93.06107,22.80383],[93.05956,22.79289],[93.06465,22.78961],[93.06945,22.78103],[93.06771,22.77335],[93.06531,22.76984],[93.06757,22.75735],[93.06563,22.7537],[93.05787,22.75065],[93.05501,22.74282],[93.05147,22.74151],[93.04822,22.74565],[93.04745,22.75799],[93.03899,22.7637],[93.04057,22.77002],[93.0326,22.77245],[93.03011,22.77557],[93.02439,22.77155],[93.01278,22.76835],[93.009,22.76552],[93.00966,22.7532],[93.00274,22.75226],[92.99518,22.7542],[92.99268,22.75243],[92.98977,22.75471],[92.98535,22.7532],[92.98174,22.75621],[92.97853,22.75487],[92.97851,22.75735],[92.96101,22.77602],[92.96077,22.78024],[92.95863,22.78059],[92.9579,22.78301],[92.95514,22.78279],[92.95377,22.78565],[92.94679,22.78575],[92.94445,22.78729],[92.94304,22.79128],[92.94028,22.79012],[92.93722,22.79172],[92.93408,22.79032],[92.92767,22.7924],[92.92304,22.78934],[92.92313,22.78001],[92.93016,22.78099],[92.93261,22.77958],[92.93315,22.77725],[92.93128,22.77457],[92.92545,22.77394],[92.91797,22.76488],[92.92023,22.75089],[92.91633,22.7434],[92.91653,22.73584],[92.91251,22.72674],[92.91443,22.72235],[92.92373,22.71924],[92.93574,22.70824],[92.92991,22.68206],[92.93332,22.67347],[92.93094,22.66446],[92.93165,22.66118],[92.93835,22.64383],[92.95146,22.6321],[92.9514,22.62921],[92.95492,22.62655],[92.95876,22.62708],[92.96222,22.63356],[92.96826,22.63326],[92.97522,22.62968],[92.98866,22.63415],[92.98758,22.62751],[92.98422,22.625],[92.97936,22.6171],[92.97926,22.60824],[92.98144,22.60465],[92.99053,22.60225],[92.99584,22.59833],[92.99031,22.59012],[92.99116,22.58702],[92.9952,22.584],[92.99301,22.57379],[93.00831,22.56505],[93.02145,22.56227],[93.0276,22.55473],[93.02668,22.54892],[93.02158,22.5398],[93.02424,22.52323],[93.02088,22.51608],[93.02779,22.51659],[93.03504,22.51952],[93.04873,22.51993],[93.07013,22.51486],[93.07301,22.51537],[93.07235,22.52328],[93.07493,22.52561],[93.07701,22.53528],[93.07656,22.53676],[93.07435,22.53597],[93.07381,22.5385],[93.07752,22.54265],[93.08046,22.55382],[93.0891,22.5464],[93.09653,22.5448],[93.10603,22.53942],[93.10951,22.54083],[93.1096,22.54839],[93.11491,22.56286],[93.12285,22.5673],[93.12858,22.57825],[93.13801,22.58284],[93.14015,22.58889],[93.14019,22.59285],[93.13704,22.598],[93.13735,22.60332],[93.13369,22.61415],[93.12727,22.61706],[93.1284,22.62247],[93.12641,22.62556],[93.12137,22.62566],[93.11645,22.63111],[93.10826,22.63573],[93.10699,22.63997],[93.11081,22.64731],[93.10957,22.65549],[93.10152,22.66071],[93.10157,22.66511],[93.09563,22.67176],[93.09476,22.68053],[93.10089,22.68056],[93.10192,22.68267],[93.10087,22.68611],[93.09661,22.68674],[93.09881,22.69371],[93.09724,22.69839],[93.09306,22.70026],[93.09099,22.70481],[93.09285,22.71278],[93.09785,22.7179],[93.09855,22.72821],[93.106,22.74282],[93.10736,22.75262],[93.10017,22.76388],[93.10231,22.76744],[93.096,22.78639],[93.08963,22.79393],[93.08174,22.79779],[93.08111,22.80201],[93.08472,22.80657],[93.08177,22.80852]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"265","area_level":"District","area_name":"Lunglei","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.59482,23.40474],[92.58964,23.40726],[92.58425,23.40387],[92.58697,23.40051],[92.58614,23.39841],[92.58729,23.39765],[92.58577,23.39637],[92.58795,23.392],[92.58598,23.38977],[92.58705,23.38855],[92.58599,23.38546],[92.58413,23.3847],[92.58454,23.38212],[92.57987,23.37911],[92.57728,23.37978],[92.57523,23.37838],[92.57072,23.38004],[92.5656,23.37974],[92.56147,23.37078],[92.55957,23.37219],[92.55855,23.37057],[92.55416,23.37066],[92.55079,23.37745],[92.54691,23.37724],[92.54584,23.3799],[92.54141,23.38241],[92.53569,23.38218],[92.53242,23.3798],[92.52235,23.38162],[92.5138,23.3786],[92.50935,23.37975],[92.5072,23.3838],[92.50144,23.38713],[92.49984,23.39082],[92.49517,23.39264],[92.49189,23.39204],[92.49429,23.38738],[92.48988,23.38181],[92.48148,23.38459],[92.48133,23.38684],[92.47599,23.39128],[92.47541,23.39361],[92.46338,23.39132],[92.46196,23.38582],[92.45642,23.38069],[92.45766,23.37599],[92.46003,23.37474],[92.45527,23.3647],[92.45849,23.36037],[92.46299,23.36037],[92.46515,23.3588],[92.46426,23.35531],[92.4602,23.35758],[92.46154,23.35102],[92.45992,23.34942],[92.46333,23.34716],[92.46484,23.34402],[92.46734,23.34371],[92.46883,23.33967],[92.46862,23.33097],[92.4713,23.32442],[92.46893,23.31954],[92.46086,23.31867],[92.4594,23.30863],[92.45305,23.29829],[92.45136,23.28609],[92.44443,23.28468],[92.43907,23.28658],[92.43317,23.28502],[92.43314,23.28182],[92.43737,23.27967],[92.43756,23.27661],[92.42954,23.27352],[92.42259,23.26375],[92.41578,23.26278],[92.41697,23.25663],[92.40866,23.26566],[92.40636,23.26579],[92.40629,23.26337],[92.40404,23.26605],[92.40113,23.26411],[92.39894,23.26713],[92.39404,23.26693],[92.39472,23.26433],[92.39344,23.2638],[92.38874,23.26606],[92.38959,23.25941],[92.39848,23.25577],[92.39546,23.2487],[92.39947,23.24186],[92.40399,23.2411],[92.4004,23.23877],[92.40141,23.23658],[92.34678,23.23567],[92.35098,23.23377],[92.35393,23.2198],[92.35298,23.21413],[92.3551,23.2068],[92.35241,23.20631],[92.35491,23.20016],[92.35228,23.19457],[92.35414,23.19012],[92.35334,23.18572],[92.35448,23.18434],[92.35842,23.18488],[92.36128,23.18257],[92.36082,23.18007],[92.35564,23.18021],[92.35445,23.17851],[92.35725,23.17796],[92.35757,23.17178],[92.35903,23.16862],[92.36167,23.16755],[92.36251,23.16489],[92.36094,23.162],[92.36436,23.15662],[92.36212,23.15634],[92.36222,23.15292],[92.36047,23.15284],[92.36034,23.14873],[92.35826,23.14635],[92.36038,23.14686],[92.36096,23.14532],[92.35697,23.13415],[92.363,23.13117],[92.36576,23.12701],[92.3682,23.12726],[92.36046,23.11283],[92.3583,23.10593],[92.36009,23.10534],[92.35801,23.10327],[92.36188,23.10044],[92.36152,23.09824],[92.36696,23.09596],[92.37017,23.09651],[92.36918,23.09512],[92.37135,23.08866],[92.37511,23.08445],[92.37728,23.08698],[92.38005,23.08629],[92.37932,23.08365],[92.38081,23.08051],[92.38548,23.07696],[92.38313,23.07194],[92.38879,23.06484],[92.3875,23.06189],[92.39071,23.06051],[92.39238,23.05645],[92.39058,23.05519],[92.39219,23.05379],[92.39151,23.0521],[92.38998,23.05155],[92.39127,23.04916],[92.38853,23.04926],[92.38954,23.04726],[92.38817,23.03974],[92.38385,23.0379],[92.38254,23.03327],[92.38495,23.02732],[92.38342,23.02632],[92.38372,23.02308],[92.37976,23.01206],[92.38465,23.00964],[92.38334,23.00888],[92.38418,23.00488],[92.38206,23.00087],[92.38529,22.99219],[92.38196,22.98809],[92.38502,22.98611],[92.38421,22.98161],[92.38145,22.9824],[92.37944,22.98069],[92.38145,22.9786],[92.38041,22.97582],[92.37833,22.97677],[92.37434,22.97065],[92.37563,22.96358],[92.37405,22.96129],[92.37727,22.95966],[92.37284,22.95823],[92.37501,22.9561],[92.37449,22.95313],[92.37719,22.95551],[92.37817,22.95206],[92.3758,22.94989],[92.37745,22.94817],[92.37475,22.94744],[92.37269,22.93985],[92.37591,22.93679],[92.37178,22.93617],[92.37309,22.93458],[92.37614,22.93502],[92.37758,22.93181],[92.37642,22.92862],[92.39298,22.93069],[92.39759,22.9297],[92.40132,22.92398],[92.39734,22.91696],[92.4011,22.91195],[92.40325,22.91282],[92.40415,22.91775],[92.40677,22.91784],[92.41302,22.91339],[92.41909,22.91883],[92.42027,22.91835],[92.42025,22.90961],[92.42649,22.89722],[92.43315,22.89171],[92.43373,22.88579],[92.4373,22.88602],[92.44596,22.8971],[92.45021,22.89325],[92.44855,22.87637],[92.46047,22.8709],[92.45471,22.86953],[92.45212,22.86494],[92.45268,22.86218],[92.45543,22.86076],[92.46161,22.86154],[92.45979,22.85805],[92.46446,22.85465],[92.46242,22.85231],[92.45831,22.85292],[92.45648,22.85103],[92.46006,22.85033],[92.45846,22.84474],[92.46289,22.84332],[92.46325,22.84175],[92.4578,22.84073],[92.45289,22.84296],[92.46195,22.8308],[92.45532,22.82594],[92.45813,22.82295],[92.45425,22.81886],[92.45905,22.81853],[92.45822,22.81659],[92.461,22.81131],[92.46118,22.80735],[92.4628,22.80747],[92.46259,22.81128],[92.46557,22.80963],[92.46685,22.80758],[92.46485,22.80462],[92.46547,22.80222],[92.47227,22.79586],[92.4691,22.78247],[92.47013,22.7818],[92.47184,22.78376],[92.47295,22.78285],[92.47272,22.77611],[92.47585,22.77118],[92.47287,22.76494],[92.47641,22.76417],[92.47368,22.75971],[92.47691,22.75936],[92.47597,22.75595],[92.47935,22.7528],[92.47384,22.74621],[92.47655,22.74521],[92.48217,22.74699],[92.48871,22.74628],[92.49028,22.74538],[92.49104,22.74109],[92.49395,22.74259],[92.49449,22.73989],[92.49793,22.73989],[92.49945,22.73785],[92.50254,22.73739],[92.50412,22.73847],[92.50434,22.74185],[92.50647,22.74227],[92.50544,22.74664],[92.50948,22.75039],[92.51207,22.75083],[92.51309,22.75303],[92.51525,22.75296],[92.51437,22.75476],[92.51713,22.75691],[92.51667,22.76002],[92.52327,22.76175],[92.52747,22.75666],[92.53106,22.75935],[92.54253,22.76274],[92.54166,22.75956],[92.54361,22.75871],[92.54427,22.75568],[92.55279,22.74833],[92.55819,22.74754],[92.56122,22.73847],[92.56444,22.73619],[92.56549,22.73208],[92.56688,22.73166],[92.57114,22.73318],[92.57828,22.74005],[92.57682,22.7409],[92.57889,22.74304],[92.57553,22.75045],[92.57799,22.75521],[92.57979,22.7553],[92.58566,22.74603],[92.59097,22.74411],[92.58561,22.73924],[92.59039,22.73133],[92.5955,22.73171],[92.59365,22.72516],[92.59874,22.72098],[92.60197,22.72095],[92.60128,22.71808],[92.59728,22.71629],[92.59813,22.71305],[92.59358,22.70958],[92.59641,22.70359],[92.59683,22.69577],[92.60382,22.69281],[92.60677,22.68351],[92.60886,22.6812],[92.61383,22.67897],[92.61632,22.68116],[92.61581,22.68447],[92.61712,22.68454],[92.61771,22.6714],[92.62639,22.67109],[92.62974,22.66641],[92.62851,22.66373],[92.62554,22.66255],[92.62632,22.65959],[92.62845,22.65795],[92.63839,22.65704],[92.64192,22.64915],[92.64453,22.64791],[92.64373,22.63736],[92.64615,22.63251],[92.64148,22.63209],[92.64327,22.62958],[92.64058,22.62536],[92.64068,22.62178],[92.64677,22.61943],[92.65502,22.6216],[92.66158,22.61723],[92.66352,22.62125],[92.66928,22.62447],[92.69618,22.62216],[92.6982,22.61958],[92.69527,22.61679],[92.69441,22.61153],[92.6904,22.61029],[92.69414,22.60243],[92.69332,22.59136],[92.70035,22.58466],[92.70558,22.58567],[92.70631,22.58239],[92.70803,22.58529],[92.70985,22.58532],[92.7091,22.57852],[92.71039,22.57876],[92.71598,22.57026],[92.71934,22.56799],[92.71965,22.56414],[92.7351,22.55954],[92.74808,22.54554],[92.75072,22.54637],[92.75217,22.54489],[92.75173,22.5396],[92.75474,22.5345],[92.75295,22.52919],[92.75102,22.52793],[92.75323,22.51819],[92.75545,22.51702],[92.75347,22.5123],[92.75477,22.50604],[92.75734,22.50558],[92.75645,22.4995],[92.7583,22.49955],[92.76039,22.49693],[92.76301,22.49743],[92.76904,22.50308],[92.77694,22.49703],[92.7774,22.49932],[92.77468,22.50316],[92.77744,22.50784],[92.77476,22.512],[92.77781,22.51586],[92.77347,22.51699],[92.77495,22.52428],[92.7725,22.52768],[92.77579,22.53046],[92.77631,22.53377],[92.78122,22.53332],[92.77645,22.5366],[92.78,22.53858],[92.77917,22.54191],[92.78243,22.54566],[92.7927,22.54895],[92.79594,22.55206],[92.79472,22.55802],[92.80037,22.56196],[92.80314,22.56951],[92.80263,22.57426],[92.79956,22.58007],[92.80051,22.58915],[92.7959,22.59335],[92.79586,22.59784],[92.79647,22.60618],[92.80227,22.61048],[92.80269,22.6131],[92.79921,22.62142],[92.80568,22.62908],[92.81139,22.63061],[92.81478,22.6274],[92.81869,22.62623],[92.82311,22.62783],[92.82519,22.6261],[92.82742,22.62667],[92.8283,22.62385],[92.83719,22.62539],[92.84503,22.61665],[92.84406,22.61424],[92.84664,22.61439],[92.84926,22.60962],[92.85905,22.60437],[92.8625,22.60414],[92.86193,22.599],[92.875,22.59514],[92.87243,22.58973],[92.8771,22.58405],[92.88337,22.58248],[92.89469,22.58485],[92.89969,22.58053],[92.90184,22.57622],[92.90125,22.56984],[92.90607,22.56465],[92.90524,22.55753],[92.91128,22.5473],[92.91454,22.54736],[92.92146,22.55237],[92.92618,22.55267],[92.93116,22.55562],[92.93226,22.55998],[92.93942,22.56447],[92.94448,22.57376],[92.94467,22.58106],[92.94794,22.58803],[92.94603,22.59207],[92.95094,22.60229],[92.94913,22.60763],[92.94893,22.61655],[92.95186,22.6311],[92.93835,22.64383],[92.93125,22.66238],[92.93332,22.67347],[92.92991,22.68206],[92.93574,22.70824],[92.92373,22.71924],[92.91443,22.72235],[92.91251,22.72674],[92.91653,22.73584],[92.91633,22.7434],[92.92023,22.75089],[92.91797,22.76488],[92.92545,22.77394],[92.93128,22.77457],[92.93315,22.77725],[92.93261,22.77958],[92.93016,22.78099],[92.92313,22.78001],[92.9235,22.79046],[92.92878,22.79249],[92.93408,22.79032],[92.93722,22.79172],[92.94028,22.79012],[92.94304,22.79128],[92.94445,22.78729],[92.94679,22.78575],[92.95377,22.78565],[92.95514,22.78279],[92.9579,22.78301],[92.95863,22.78059],[92.96077,22.78024],[92.96101,22.77602],[92.97851,22.75735],[92.97853,22.75487],[92.98174,22.75621],[92.98535,22.7532],[92.98977,22.75471],[92.99268,22.75243],[92.99518,22.7542],[93.00274,22.75226],[93.00966,22.7532],[93.009,22.76552],[93.01278,22.76835],[93.02439,22.77155],[93.03011,22.77557],[93.0326,22.77245],[93.04057,22.77002],[93.03899,22.7637],[93.04745,22.75799],[93.04822,22.74565],[93.05147,22.74151],[93.05478,22.74264],[93.05787,22.75065],[93.06563,22.7537],[93.06768,22.7582],[93.06531,22.76984],[93.06771,22.77335],[93.06945,22.78103],[93.06465,22.78961],[93.05956,22.79289],[93.06107,22.80383],[93.06306,22.80486],[93.06832,22.8029],[93.07492,22.80768],[93.08351,22.80833],[93.08472,22.80657],[93.08066,22.8006],[93.08174,22.79779],[93.08963,22.79393],[93.09651,22.78671],[93.09778,22.79263],[93.09485,22.80668],[93.0968,22.80891],[93.10504,22.81234],[93.11055,22.81805],[93.10942,22.82013],[93.10414,22.82156],[93.10361,22.82433],[93.1055,22.82609],[93.11111,22.82689],[93.11311,22.82903],[93.11011,22.83297],[93.11533,22.83597],[93.11812,22.84249],[93.11656,22.84607],[93.11886,22.85869],[93.1173,22.86311],[93.12405,22.86688],[93.12666,22.8706],[93.1275,22.87459],[93.12603,22.87644],[93.12865,22.87852],[93.13435,22.89129],[93.13367,22.89505],[93.12966,22.90062],[93.12986,22.90387],[93.13619,22.91205],[93.13978,22.91351],[93.14332,22.91296],[93.15026,22.90787],[93.16098,22.90877],[93.16395,22.90944],[93.16453,22.91099],[93.16168,22.91663],[93.15437,22.91733],[93.15277,22.9217],[93.14813,22.92511],[93.1451,22.9323],[93.1461,22.94368],[93.14433,22.94685],[93.13804,22.95056],[93.14059,22.95367],[93.14132,22.95762],[93.13722,22.96176],[93.13576,22.97039],[93.14236,22.97152],[93.14381,22.97488],[93.13915,22.98164],[93.14103,22.98828],[93.14015,22.99078],[93.13194,22.99121],[93.12734,22.99609],[93.12599,23.00263],[93.12017,23.00244],[93.12233,23.00638],[93.11712,23.01238],[93.1104,23.01443],[93.08881,23.02754],[93.07972,23.02988],[93.07857,23.03077],[93.08131,23.03498],[93.0754,23.03721],[93.06831,23.04275],[93.05272,23.04477],[93.03846,23.04981],[93.0398,23.05812],[93.03783,23.0661],[93.04297,23.07401],[93.04153,23.07773],[93.03762,23.07917],[93.03723,23.08147],[93.03349,23.08181],[93.0247,23.07919],[93.01644,23.0811],[93.00826,23.08756],[93.00428,23.08806],[92.99054,23.09499],[92.99062,23.09692],[92.98884,23.09637],[92.98597,23.10034],[92.98451,23.09933],[92.97791,23.10616],[92.97222,23.10671],[92.96484,23.11014],[92.96285,23.1121],[92.96427,23.11366],[92.9603,23.11392],[92.9603,23.11595],[92.95761,23.11603],[92.95739,23.12864],[92.95948,23.13371],[92.95555,23.13613],[92.95703,23.14841],[92.95495,23.1516],[92.95606,23.15812],[92.95408,23.16441],[92.94733,23.16905],[92.93998,23.17071],[92.93611,23.1695],[92.93236,23.17456],[92.93484,23.18483],[92.93202,23.18785],[92.92299,23.18615],[92.91694,23.18909],[92.91465,23.18341],[92.90527,23.17752],[92.8958,23.17827],[92.89121,23.17695],[92.88239,23.17008],[92.87457,23.17019],[92.86961,23.17579],[92.86258,23.17407],[92.85802,23.18368],[92.85884,23.18942],[92.85496,23.19038],[92.85424,23.1945],[92.8564,23.19966],[92.85549,23.20282],[92.85712,23.20744],[92.85584,23.20961],[92.85851,23.21437],[92.85693,23.21747],[92.8516,23.22046],[92.85057,23.22378],[92.84792,23.22427],[92.84736,23.22733],[92.84531,23.2276],[92.84704,23.22902],[92.84485,23.22965],[92.84614,23.22985],[92.84611,23.23207],[92.84424,23.23299],[92.84645,23.23383],[92.84659,23.23495],[92.84481,23.23458],[92.84584,23.2368],[92.83661,23.24199],[92.83583,23.24451],[92.83331,23.24595],[92.8298,23.246],[92.82546,23.2427],[92.82132,23.24253],[92.82059,23.24087],[92.81786,23.24137],[92.81498,23.23754],[92.81759,23.23393],[92.81534,23.23038],[92.81658,23.22824],[92.81231,23.22622],[92.80886,23.22779],[92.79803,23.22804],[92.78727,23.23257],[92.77982,23.22739],[92.76924,23.23431],[92.75452,23.22697],[92.75319,23.2327],[92.74088,23.23308],[92.73811,23.23397],[92.73825,23.23669],[92.73108,23.237],[92.73114,23.23973],[92.72176,23.24009],[92.72036,23.2383],[92.72193,23.23567],[92.72249,23.21909],[92.72181,23.20761],[92.7196,23.20586],[92.72003,23.19416],[92.71767,23.19147],[92.71299,23.19044],[92.70004,23.19603],[92.70179,23.19781],[92.70087,23.20107],[92.70224,23.20541],[92.69881,23.21238],[92.69188,23.21858],[92.68953,23.22824],[92.68993,23.24027],[92.68655,23.24608],[92.69021,23.25004],[92.69053,23.25481],[92.68808,23.25817],[92.689,23.26084],[92.68783,23.26381],[92.6894,23.26739],[92.68535,23.2758],[92.68736,23.27935],[92.68453,23.28087],[92.68593,23.28284],[92.68336,23.29],[92.68414,23.29678],[92.68701,23.29896],[92.68412,23.30374],[92.68597,23.30378],[92.68644,23.30627],[92.68844,23.3074],[92.68418,23.31186],[92.68468,23.31692],[92.68085,23.32715],[92.6818,23.32819],[92.68467,23.32672],[92.68582,23.32795],[92.68408,23.33557],[92.68684,23.34051],[92.68484,23.35149],[92.6871,23.35485],[92.68499,23.35796],[92.68309,23.36679],[92.67965,23.36905],[92.67124,23.36779],[92.6757,23.37173],[92.6739,23.37568],[92.67614,23.37943],[92.67191,23.38423],[92.66934,23.3851],[92.66729,23.38243],[92.665,23.38223],[92.65572,23.38431],[92.64347,23.38403],[92.63899,23.38597],[92.63872,23.39158],[92.63451,23.39323],[92.62664,23.39205],[92.62567,23.38968],[92.61614,23.38631],[92.61362,23.39353],[92.60668,23.39724],[92.59987,23.39792],[92.60067,23.39947],[92.59819,23.40285],[92.59482,23.40474]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"266","area_level":"District","area_name":"Mamit","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.42124,24.24301],[92.42253,24.25486],[92.28959,24.25235],[92.29253,24.25012],[92.29735,24.23149],[92.30428,24.22351],[92.31041,24.22127],[92.31086,24.21784],[92.31627,24.2118],[92.31419,24.20961],[92.3147,24.20639],[92.32154,24.20373],[92.31912,24.19786],[92.32608,24.19707],[92.32177,24.19418],[92.32636,24.19136],[92.32243,24.18872],[92.32545,24.18552],[92.32629,24.18168],[92.33206,24.17956],[92.32653,24.17772],[92.32591,24.17355],[92.32387,24.17123],[92.32442,24.16818],[92.32863,24.16625],[92.32873,24.15507],[92.33173,24.15179],[92.32874,24.14312],[92.3307,24.13969],[92.32456,24.13943],[92.32586,24.13249],[92.32474,24.11968],[92.32711,24.117],[92.3243,24.11507],[92.32502,24.1127],[92.32791,24.11194],[92.32262,24.10439],[92.3269,24.10444],[92.32767,24.10149],[92.32492,24.09759],[92.32482,24.08817],[92.32219,24.08154],[92.32416,24.07926],[92.31925,24.07819],[92.32129,24.07269],[92.31939,24.07012],[92.31656,24.07004],[92.3168,24.06653],[92.31986,24.06374],[92.3163,24.0595],[92.31761,24.05497],[92.31531,24.05315],[92.31273,24.05488],[92.31215,24.05212],[92.31643,24.04561],[92.31201,24.03851],[92.31571,24.03768],[92.31574,24.03487],[92.31211,24.03241],[92.31695,24.03006],[92.31478,24.02595],[92.31982,24.02444],[92.31877,24.02188],[92.31542,24.02337],[92.31395,24.02122],[92.31919,24.01517],[92.32018,24.01226],[92.3189,24.00821],[92.32436,24.00465],[92.32284,24.00273],[92.3262,23.99778],[92.32216,23.99392],[92.32358,23.98854],[92.32141,23.98756],[92.32194,23.9832],[92.32014,23.97902],[92.31731,23.97878],[92.31735,23.97511],[92.31445,23.97284],[92.31039,23.97227],[92.31031,23.96952],[92.3086,23.96808],[92.31,23.96302],[92.30797,23.96056],[92.3092,23.95739],[92.30829,23.95423],[92.31053,23.95234],[92.31092,23.94821],[92.30927,23.94414],[92.31068,23.93483],[92.30899,23.93122],[92.3163,23.92806],[92.31927,23.91569],[92.32519,23.91409],[92.32198,23.91007],[92.32397,23.90487],[92.31811,23.89841],[92.31688,23.8996],[92.31665,23.88907],[92.31286,23.88481],[92.31118,23.88011],[92.31318,23.87747],[92.31063,23.87334],[92.31097,23.86975],[92.31659,23.86527],[92.31503,23.8605],[92.3117,23.86022],[92.30767,23.85691],[92.29934,23.85969],[92.28966,23.86817],[92.28511,23.86715],[92.27927,23.85634],[92.26958,23.84768],[92.26868,23.84218],[92.28086,23.82118],[92.28234,23.81463],[92.26628,23.81591],[92.25706,23.81247],[92.26001,23.79347],[92.26487,23.77316],[92.26731,23.7686],[92.26551,23.76137],[92.26718,23.75164],[92.26553,23.74323],[92.2667,23.73238],[92.26549,23.72501],[92.27969,23.71581],[92.27847,23.71019],[92.28322,23.70674],[92.2848,23.70712],[92.28495,23.70427],[92.28727,23.70153],[92.28935,23.7018],[92.28969,23.69248],[92.29094,23.69083],[92.28959,23.68659],[92.29148,23.68123],[92.28917,23.68034],[92.28359,23.66178],[92.28143,23.66111],[92.27484,23.64952],[92.27297,23.64194],[92.28178,23.63856],[92.27664,23.63175],[92.27863,23.62492],[92.28004,23.62556],[92.27913,23.62866],[92.28069,23.63059],[92.28949,23.62851],[92.29577,23.62163],[92.29587,23.6206],[92.28974,23.61975],[92.28734,23.61674],[92.28726,23.59604],[92.28848,23.59542],[92.28898,23.59813],[92.29141,23.59532],[92.29358,23.59516],[92.29316,23.59334],[92.29652,23.58803],[92.29834,23.5926],[92.30144,23.59289],[92.30395,23.58291],[92.30594,23.58297],[92.30821,23.57771],[92.30509,23.57343],[92.30766,23.56901],[92.30681,23.57172],[92.30904,23.57112],[92.30835,23.56507],[92.30694,23.56616],[92.30675,23.5645],[92.31181,23.55971],[92.31351,23.55499],[92.31262,23.55299],[92.31062,23.55544],[92.3092,23.55232],[92.30871,23.54961],[92.31069,23.54706],[92.31008,23.5421],[92.30799,23.54093],[92.30625,23.53504],[92.30904,23.53234],[92.31397,23.53326],[92.31425,23.52944],[92.31626,23.52926],[92.31789,23.52633],[92.31326,23.52075],[92.3136,23.5155],[92.31769,23.51716],[92.31838,23.51492],[92.3156,23.51288],[92.31979,23.51243],[92.31892,23.50332],[92.32283,23.50102],[92.31929,23.50061],[92.32052,23.49445],[92.31743,23.49425],[92.3189,23.49213],[92.32195,23.49177],[92.32195,23.49011],[92.31606,23.48682],[92.32177,23.48289],[92.32094,23.48045],[92.32616,23.4788],[92.32285,23.47892],[92.3237,23.47522],[92.3208,23.47372],[92.32006,23.47529],[92.31713,23.47165],[92.32784,23.46641],[92.3318,23.46606],[92.33066,23.45936],[92.3255,23.45908],[92.32994,23.45404],[92.33157,23.45471],[92.33172,23.45709],[92.3333,23.45593],[92.32708,23.44854],[92.33038,23.44616],[92.33392,23.42883],[92.3353,23.42865],[92.33568,23.43345],[92.33808,23.43176],[92.34137,23.43553],[92.34649,23.43319],[92.34775,23.41281],[92.35256,23.41351],[92.3574,23.4107],[92.35815,23.40477],[92.35542,23.40081],[92.35341,23.40579],[92.35294,23.39939],[92.35453,23.38906],[92.35731,23.39172],[92.35881,23.3907],[92.35601,23.38777],[92.35668,23.38471],[92.35305,23.38286],[92.35266,23.38087],[92.35619,23.37962],[92.36339,23.38102],[92.36511,23.37959],[92.35741,23.37465],[92.35643,23.37235],[92.36027,23.36773],[92.36394,23.36616],[92.37049,23.37358],[92.36926,23.36701],[92.37569,23.36537],[92.37906,23.36183],[92.37642,23.35667],[92.38049,23.35557],[92.38068,23.35118],[92.37619,23.347],[92.37485,23.33735],[92.37209,23.33168],[92.36829,23.32546],[92.36436,23.32292],[92.36804,23.31711],[92.36743,23.32293],[92.36937,23.32244],[92.37136,23.31796],[92.37609,23.31989],[92.37733,23.31833],[92.37626,23.31296],[92.38568,23.3062],[92.38576,23.3031],[92.38305,23.30183],[92.38462,23.29812],[92.38274,23.29611],[92.38469,23.29261],[92.38248,23.29068],[92.38116,23.2851],[92.38814,23.28129],[92.39394,23.26687],[92.39928,23.26701],[92.40113,23.26411],[92.40404,23.26605],[92.40629,23.26337],[92.40636,23.26579],[92.40903,23.26551],[92.41674,23.2566],[92.41578,23.26278],[92.42259,23.26375],[92.42954,23.27352],[92.43756,23.27661],[92.43737,23.27967],[92.43314,23.28182],[92.43317,23.28502],[92.43907,23.28658],[92.44443,23.28468],[92.45136,23.28609],[92.45305,23.29829],[92.4594,23.30863],[92.46086,23.31867],[92.46893,23.31954],[92.47116,23.3237],[92.46862,23.33097],[92.46883,23.33967],[92.46734,23.34371],[92.46484,23.34402],[92.46333,23.34716],[92.45992,23.34942],[92.46154,23.35102],[92.4602,23.35758],[92.46426,23.35531],[92.46515,23.3588],[92.46299,23.36037],[92.45849,23.36037],[92.45527,23.3647],[92.46003,23.37474],[92.45766,23.37599],[92.45642,23.38069],[92.46196,23.38582],[92.46216,23.39008],[92.46361,23.39146],[92.47541,23.39361],[92.47599,23.39128],[92.48133,23.38684],[92.48148,23.38459],[92.48988,23.38181],[92.49429,23.38738],[92.49189,23.39204],[92.49517,23.39264],[92.49984,23.39082],[92.50144,23.38713],[92.5072,23.3838],[92.50935,23.37975],[92.5138,23.3786],[92.52235,23.38162],[92.53242,23.3798],[92.53569,23.38218],[92.54141,23.38241],[92.54584,23.3799],[92.54691,23.37724],[92.55079,23.37745],[92.55416,23.37066],[92.55855,23.37057],[92.55957,23.37219],[92.56147,23.37078],[92.5656,23.37974],[92.57072,23.38004],[92.57523,23.37838],[92.57728,23.37978],[92.57987,23.37911],[92.58454,23.38212],[92.58413,23.3847],[92.58599,23.38546],[92.58705,23.38855],[92.58598,23.38977],[92.58795,23.392],[92.58577,23.39637],[92.58729,23.39765],[92.58614,23.39841],[92.58697,23.40051],[92.58425,23.40387],[92.58964,23.40726],[92.59806,23.40297],[92.60067,23.39947],[92.59987,23.39792],[92.60668,23.39724],[92.61362,23.39353],[92.61614,23.38631],[92.62567,23.38968],[92.62664,23.39205],[92.63451,23.39323],[92.63872,23.39158],[92.63899,23.38597],[92.64347,23.38403],[92.65572,23.38431],[92.665,23.38223],[92.66729,23.38243],[92.66934,23.3851],[92.6682,23.38848],[92.66432,23.39215],[92.66761,23.40323],[92.66564,23.40764],[92.66271,23.40933],[92.66269,23.4159],[92.65706,23.42266],[92.65722,23.43284],[92.65504,23.43888],[92.65668,23.45047],[92.65474,23.45343],[92.65723,23.47127],[92.65268,23.48755],[92.65798,23.49662],[92.65884,23.50176],[92.65442,23.50748],[92.65384,23.52022],[92.65172,23.52132],[92.64373,23.52053],[92.63928,23.52364],[92.63617,23.52864],[92.63337,23.53911],[92.63465,23.54133],[92.64252,23.54596],[92.64419,23.55518],[92.65233,23.55672],[92.65662,23.56193],[92.6591,23.57131],[92.65122,23.57796],[92.64926,23.59036],[92.65311,23.59514],[92.66482,23.59685],[92.66961,23.60224],[92.67344,23.60995],[92.67264,23.61451],[92.67444,23.62015],[92.6698,23.62539],[92.65135,23.62997],[92.65052,23.63796],[92.64165,23.6426],[92.63699,23.6478],[92.63541,23.6554],[92.63548,23.65976],[92.64181,23.6632],[92.64564,23.66853],[92.6498,23.67809],[92.65492,23.68433],[92.65722,23.69108],[92.66519,23.70293],[92.66659,23.70776],[92.66572,23.71084],[92.66215,23.71396],[92.65589,23.71395],[92.64868,23.71785],[92.64312,23.72797],[92.64295,23.73268],[92.63747,23.74075],[92.63456,23.75811],[92.63078,23.7591],[92.62584,23.76357],[92.63687,23.77164],[92.6404,23.78642],[92.63865,23.7947],[92.62798,23.7943],[92.62343,23.7972],[92.62892,23.80561],[92.63254,23.81628],[92.63503,23.81683],[92.63854,23.81396],[92.64324,23.80519],[92.64845,23.80993],[92.65435,23.81926],[92.65342,23.8212],[92.65,23.81889],[92.64539,23.81917],[92.64277,23.82464],[92.64414,23.82908],[92.6479,23.83265],[92.66112,23.83385],[92.66292,23.83674],[92.65636,23.84611],[92.65207,23.84956],[92.64788,23.85688],[92.64589,23.8657],[92.64076,23.87471],[92.63964,23.89233],[92.6423,23.89821],[92.65489,23.89994],[92.65921,23.90313],[92.66115,23.90597],[92.66015,23.91462],[92.65328,23.92227],[92.64411,23.92231],[92.64417,23.92757],[92.64191,23.9305],[92.62545,23.93403],[92.62128,23.9373],[92.62438,23.94418],[92.62832,23.94388],[92.62909,23.94548],[92.62627,23.95051],[92.62568,23.9557],[92.62042,23.95812],[92.62039,23.96226],[92.62577,23.98191],[92.63177,23.98519],[92.62953,23.99358],[92.63292,23.99831],[92.63076,24.00152],[92.6214,24.00548],[92.61863,24.01242],[92.6219,24.01543],[92.62358,24.02318],[92.6287,24.03263],[92.63551,24.03174],[92.63627,24.03506],[92.6302,24.0367],[92.62714,24.04175],[92.62449,24.04304],[92.62261,24.03784],[92.62427,24.03292],[92.62199,24.03201],[92.61747,24.03639],[92.61557,24.04574],[92.61167,24.05192],[92.60482,24.05111],[92.60109,24.05229],[92.59836,24.05386],[92.5932,24.06278],[92.58565,24.06375],[92.58713,24.07088],[92.58616,24.07571],[92.58082,24.07748],[92.57841,24.07564],[92.57401,24.07716],[92.57157,24.07589],[92.57542,24.06671],[92.57079,24.0618],[92.57368,24.0533],[92.56609,24.04107],[92.56384,24.04321],[92.55879,24.04091],[92.55879,24.04567],[92.56361,24.05444],[92.55775,24.05466],[92.55758,24.06204],[92.55199,24.06336],[92.54958,24.05451],[92.54976,24.04243],[92.54535,24.04155],[92.53822,24.03572],[92.53397,24.04738],[92.53505,24.05243],[92.53794,24.05625],[92.53571,24.06447],[92.53918,24.07949],[92.53592,24.09261],[92.54009,24.09936],[92.53658,24.10967],[92.53884,24.11721],[92.54365,24.12476],[92.54279,24.12603],[92.53749,24.12544],[92.53602,24.12711],[92.53877,24.13467],[92.54434,24.1389],[92.5452,24.14179],[92.53744,24.15641],[92.52682,24.16519],[92.535,24.1724],[92.5363,24.17685],[92.53112,24.18514],[92.53421,24.18015],[92.52893,24.17808],[92.53038,24.17666],[92.52496,24.17181],[92.52003,24.17331],[92.51577,24.179],[92.50997,24.17246],[92.51211,24.17048],[92.51468,24.17072],[92.51441,24.16946],[92.50691,24.16988],[92.51141,24.16541],[92.51004,24.1646],[92.50753,24.16706],[92.50327,24.16777],[92.50618,24.16413],[92.50335,24.16343],[92.50151,24.16039],[92.49421,24.16018],[92.49039,24.16279],[92.48392,24.16317],[92.48241,24.16061],[92.48342,24.15826],[92.47943,24.15661],[92.48184,24.15597],[92.4807,24.15003],[92.47705,24.1474],[92.48061,24.14541],[92.47858,24.14413],[92.47896,24.14232],[92.47462,24.14364],[92.47224,24.13971],[92.46881,24.14031],[92.46568,24.13865],[92.46548,24.13627],[92.46331,24.13687],[92.46379,24.13889],[92.46101,24.13764],[92.45673,24.14436],[92.45237,24.1442],[92.45058,24.14714],[92.44912,24.14397],[92.4428,24.15446],[92.44046,24.15275],[92.4362,24.15351],[92.43584,24.16513],[92.43792,24.16951],[92.43401,24.17513],[92.43574,24.17915],[92.43379,24.18313],[92.42155,24.1895],[92.4189,24.1927],[92.42132,24.20119],[92.41876,24.20469],[92.41857,24.21235],[92.42117,24.21811],[92.41936,24.22572],[92.42124,24.24301]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"267","area_level":"District","area_name":"Siaha","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.98854,22.63044],[92.98926,22.63228],[92.9875,22.63439],[92.97578,22.6297],[92.96826,22.63326],[92.96222,22.63356],[92.9586,22.62693],[92.95492,22.62655],[92.9513,22.62889],[92.94893,22.61655],[92.94913,22.60763],[92.95094,22.60229],[92.94603,22.59207],[92.94794,22.58803],[92.94467,22.58106],[92.945,22.57493],[92.94038,22.56564],[92.93261,22.56036],[92.93116,22.55562],[92.9312,22.54856],[92.93501,22.54427],[92.93885,22.53606],[92.93782,22.52776],[92.93423,22.52047],[92.93624,22.51219],[92.93089,22.48253],[92.93265,22.47872],[92.93911,22.47566],[92.94429,22.46628],[92.94329,22.46264],[92.93568,22.46007],[92.93462,22.45736],[92.93757,22.4454],[92.93725,22.44105],[92.9422,22.42906],[92.9431,22.42086],[92.95014,22.40355],[92.95388,22.39993],[92.96297,22.3978],[92.9653,22.39357],[92.95825,22.37561],[92.95356,22.37218],[92.93986,22.37462],[92.93156,22.38363],[92.93781,22.39085],[92.93768,22.39251],[92.93186,22.39653],[92.928,22.39568],[92.91955,22.39095],[92.91234,22.38443],[92.90465,22.37402],[92.88604,22.36303],[92.87647,22.35535],[92.86897,22.34094],[92.86784,22.33388],[92.86036,22.32013],[92.85481,22.32222],[92.85313,22.31948],[92.84952,22.31911],[92.84475,22.326],[92.84396,22.33003],[92.83768,22.32919],[92.82676,22.33377],[92.82288,22.3326],[92.82059,22.32577],[92.82637,22.31683],[92.82264,22.30651],[92.82978,22.30087],[92.83686,22.29108],[92.83252,22.28829],[92.83294,22.28381],[92.83059,22.27432],[92.83147,22.2721],[92.83437,22.27096],[92.83507,22.26695],[92.82962,22.25594],[92.83447,22.24207],[92.83677,22.22581],[92.83532,22.21391],[92.83854,22.19647],[92.83697,22.18706],[92.84027,22.16761],[92.8397,22.15681],[92.84203,22.1511],[92.84153,22.14643],[92.84383,22.13649],[92.84012,22.12048],[92.8464,22.08997],[92.84748,22.06888],[92.8502,22.06261],[92.85237,22.06633],[92.85881,22.06705],[92.86353,22.06236],[92.86304,22.0577],[92.86593,22.05156],[92.8636,22.03296],[92.86506,22.02369],[92.87575,22.02115],[92.87966,22.0222],[92.87864,22.01505],[92.89133,22.01125],[92.89204,22.00631],[92.89451,22.00335],[92.89525,21.98939],[92.89776,21.97977],[92.89701,21.97299],[92.90048,21.96437],[92.89894,21.96332],[92.90052,21.95751],[92.89881,21.95595],[92.90153,21.95189],[92.90116,21.94694],[92.90385,21.94004],[92.90614,21.94058],[92.90746,21.94282],[92.90594,21.94361],[92.91146,21.95079],[92.91136,21.96096],[92.91357,21.96514],[92.91145,21.96435],[92.91156,21.96595],[92.91343,21.96736],[92.91534,21.97896],[92.91701,21.98137],[92.91881,21.98124],[92.92013,21.98997],[92.92175,21.9906],[92.92075,21.99183],[92.92997,21.99592],[92.93578,22.0057],[92.93462,22.01069],[92.92895,22.00853],[92.92725,22.01564],[92.93076,22.01757],[92.93997,22.01356],[92.94071,22.01682],[92.94239,22.01668],[92.94214,22.02006],[92.94546,22.02109],[92.95225,22.02971],[92.95703,22.02944],[92.96098,22.02566],[92.96075,22.02171],[92.96503,22.01739],[92.96325,22.01573],[92.96467,22.01495],[92.965,22.01079],[92.96724,22.00967],[92.96819,22.00671],[92.97237,22.00608],[92.97354,22.00044],[92.97792,21.99747],[92.97814,21.98687],[92.98056,21.98006],[92.99382,21.9778],[93.00741,21.98233],[93.00276,21.99692],[93.00181,22.00679],[93.00445,22.01349],[93.00427,22.01705],[92.99481,22.03219],[92.99737,22.03561],[92.99469,22.0422],[92.99808,22.05196],[92.99751,22.05435],[93.00187,22.05791],[93.00127,22.06093],[93.00288,22.0628],[93.0014,22.06681],[93.0066,22.07096],[93.00364,22.07457],[93.00518,22.08003],[93.00845,22.08079],[93.00872,22.08476],[93.01163,22.0884],[93.01058,22.09234],[93.00661,22.09467],[93.00427,22.09997],[93.00453,22.10359],[93.00772,22.10464],[93.0194,22.10114],[93.02533,22.10182],[93.04735,22.09814],[93.05958,22.10125],[93.05779,22.10304],[93.05886,22.10717],[93.05705,22.12137],[93.05441,22.12109],[93.05391,22.12531],[93.04508,22.13359],[93.04496,22.13731],[93.04221,22.13648],[93.03951,22.13855],[93.04409,22.14318],[93.04061,22.1427],[93.03981,22.14526],[93.0372,22.14438],[93.03691,22.14887],[93.04122,22.15069],[93.04455,22.15725],[93.04213,22.1594],[93.04757,22.16226],[93.0491,22.1689],[93.04811,22.17515],[93.04014,22.18688],[93.04212,22.19],[93.03822,22.19503],[93.04301,22.19558],[93.04298,22.19918],[93.04642,22.20244],[93.05052,22.20041],[93.05367,22.20246],[93.05682,22.20081],[93.0633,22.2073],[93.08872,22.19654],[93.10274,22.19948],[93.11104,22.20403],[93.11446,22.19068],[93.11689,22.18934],[93.12337,22.17963],[93.12356,22.17355],[93.15083,22.17626],[93.15585,22.18142],[93.15564,22.18471],[93.15752,22.18593],[93.15728,22.18837],[93.1604,22.19209],[93.16146,22.1971],[93.15709,22.20135],[93.15344,22.209],[93.14864,22.21171],[93.15234,22.21664],[93.1474,22.22934],[93.13994,22.23471],[93.14356,22.23795],[93.1421,22.24546],[93.14833,22.24953],[93.15452,22.24724],[93.16395,22.24998],[93.16756,22.24608],[93.17762,22.24573],[93.19276,22.2546],[93.19904,22.25569],[93.19806,22.26021],[93.20195,22.26309],[93.19805,22.26969],[93.19738,22.27877],[93.19359,22.28809],[93.19368,22.29062],[93.19814,22.29121],[93.19918,22.29424],[93.19725,22.29636],[93.19241,22.29742],[93.18957,22.3008],[93.19006,22.3025],[93.1954,22.3017],[93.19053,22.30954],[93.19575,22.31432],[93.18957,22.32044],[93.18905,22.32273],[93.19668,22.32876],[93.19434,22.3338],[93.18583,22.33994],[93.18813,22.34511],[93.18668,22.35988],[93.18801,22.36549],[93.18361,22.37101],[93.18354,22.37436],[93.18607,22.38104],[93.18977,22.38269],[93.18506,22.38717],[93.18445,22.39189],[93.18162,22.39531],[93.18433,22.40194],[93.18746,22.40338],[93.18636,22.40711],[93.18301,22.41041],[93.18154,22.41887],[93.18275,22.42255],[93.18573,22.42401],[93.18529,22.42815],[93.17811,22.4328],[93.17859,22.43722],[93.17694,22.4403],[93.16832,22.44327],[93.16347,22.4513],[93.1509,22.45455],[93.1387,22.45452],[93.13631,22.46159],[93.13085,22.46816],[93.13247,22.47366],[93.13181,22.47772],[93.134,22.48208],[93.13282,22.48789],[93.13456,22.49175],[93.12572,22.50171],[93.12378,22.50838],[93.12821,22.52365],[93.12509,22.52549],[93.1074,22.52558],[93.1073,22.52873],[93.1125,22.53275],[93.11185,22.53518],[93.10924,22.53664],[93.10951,22.54083],[93.10603,22.53942],[93.09653,22.5448],[93.0891,22.5464],[93.08108,22.55428],[93.07752,22.54265],[93.07381,22.5385],[93.07435,22.53597],[93.07656,22.53676],[93.07701,22.53528],[93.07493,22.52561],[93.07235,22.52328],[93.07301,22.51537],[93.07013,22.51486],[93.04873,22.51993],[93.03504,22.51952],[93.02779,22.51659],[93.02088,22.51608],[93.02424,22.52323],[93.02158,22.5398],[93.02668,22.54892],[93.0276,22.55473],[93.02145,22.56227],[93.00831,22.56505],[92.99301,22.57379],[92.9952,22.584],[92.99116,22.58702],[92.99031,22.59012],[92.99584,22.59833],[92.99053,22.60225],[92.98144,22.60465],[92.97926,22.60824],[92.97936,22.6171],[92.98854,22.63044]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"268","area_level":"District","area_name":"Serchhip","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.80065,23.64125],[92.79012,23.64465],[92.79025,23.64149],[92.78818,23.6409],[92.7908,23.63901],[92.79063,23.63474],[92.78852,23.6347],[92.78943,23.63159],[92.78691,23.62735],[92.78831,23.62198],[92.78435,23.61309],[92.78555,23.60008],[92.78363,23.59889],[92.77663,23.59951],[92.76929,23.59456],[92.77106,23.58661],[92.77298,23.58594],[92.77423,23.58246],[92.77184,23.57592],[92.77433,23.5738],[92.77199,23.56534],[92.77396,23.55861],[92.77729,23.55638],[92.79733,23.55051],[92.79826,23.54401],[92.80041,23.54158],[92.79903,23.53885],[92.80195,23.53906],[92.79945,23.53623],[92.79614,23.53628],[92.79844,23.53366],[92.79574,23.53226],[92.79673,23.52783],[92.79453,23.52662],[92.79866,23.52457],[92.79647,23.524],[92.79818,23.52056],[92.79497,23.51692],[92.79686,23.51602],[92.79577,23.51191],[92.79911,23.51106],[92.79779,23.51017],[92.79791,23.50697],[92.80083,23.50554],[92.79897,23.50194],[92.79836,23.49361],[92.79543,23.48923],[92.79801,23.48723],[92.79719,23.48585],[92.79859,23.48497],[92.79946,23.47949],[92.81809,23.47301],[92.82455,23.47264],[92.83068,23.4687],[92.83539,23.46764],[92.83581,23.4652],[92.8317,23.45995],[92.83341,23.4594],[92.83274,23.45776],[92.83622,23.45369],[92.83435,23.45057],[92.83609,23.44886],[92.83481,23.44582],[92.83647,23.44101],[92.8351,23.43962],[92.83421,23.43101],[92.83127,23.43006],[92.83229,23.42478],[92.82965,23.4241],[92.83134,23.42131],[92.82841,23.4203],[92.82905,23.41897],[92.82694,23.41928],[92.82833,23.41544],[92.83004,23.4153],[92.83023,23.41162],[92.8221,23.39429],[92.82484,23.39074],[92.82163,23.39138],[92.82117,23.38606],[92.82182,23.38493],[92.82425,23.38641],[92.82466,23.38464],[92.82809,23.38343],[92.83086,23.3842],[92.82958,23.37847],[92.82703,23.37742],[92.8279,23.37578],[92.82237,23.37087],[92.82663,23.3672],[92.82926,23.36722],[92.83295,23.3625],[92.83387,23.35341],[92.83868,23.34603],[92.83811,23.34202],[92.84103,23.33997],[92.84031,23.33631],[92.83854,23.33328],[92.83256,23.33489],[92.82586,23.33426],[92.82161,23.33148],[92.82005,23.32853],[92.81352,23.32545],[92.80984,23.32812],[92.79554,23.32724],[92.78288,23.32854],[92.77929,23.32703],[92.76959,23.33571],[92.75171,23.34171],[92.74884,23.33984],[92.74543,23.34078],[92.74055,23.33909],[92.73688,23.34293],[92.7314,23.34491],[92.73295,23.34941],[92.72333,23.34873],[92.72127,23.35096],[92.71512,23.34885],[92.71923,23.3465],[92.71682,23.34386],[92.71756,23.33122],[92.71417,23.32713],[92.71345,23.32174],[92.704,23.31887],[92.70059,23.31957],[92.6944,23.32745],[92.69322,23.32585],[92.69413,23.32387],[92.69231,23.32285],[92.68865,23.323],[92.68772,23.32487],[92.68309,23.32275],[92.68477,23.31627],[92.68418,23.31186],[92.68844,23.3074],[92.68644,23.30627],[92.68597,23.30378],[92.68412,23.30374],[92.68701,23.29896],[92.68414,23.29678],[92.68336,23.29],[92.68593,23.28284],[92.68453,23.28087],[92.68736,23.27935],[92.68535,23.2758],[92.6894,23.26739],[92.68783,23.26381],[92.689,23.26084],[92.68808,23.25817],[92.69053,23.25481],[92.69021,23.25004],[92.68655,23.24608],[92.68993,23.24027],[92.68953,23.22824],[92.69188,23.21858],[92.69881,23.21238],[92.70224,23.20541],[92.70087,23.20107],[92.70179,23.19781],[92.69992,23.19622],[92.71299,23.19044],[92.71767,23.19147],[92.72003,23.19416],[92.7196,23.20586],[92.72181,23.20761],[92.72249,23.21909],[92.72193,23.23567],[92.72036,23.2383],[92.72176,23.24009],[92.73114,23.23973],[92.73108,23.237],[92.73825,23.23669],[92.73811,23.23397],[92.74088,23.23308],[92.75319,23.2327],[92.75452,23.22697],[92.76924,23.23431],[92.77982,23.22739],[92.78727,23.23257],[92.79803,23.22804],[92.80886,23.22779],[92.81231,23.22622],[92.81658,23.22824],[92.81534,23.23038],[92.81759,23.23393],[92.81498,23.23754],[92.81786,23.24137],[92.82059,23.24087],[92.82132,23.24253],[92.82546,23.2427],[92.8298,23.246],[92.83331,23.24595],[92.83583,23.24451],[92.83661,23.24199],[92.84584,23.2368],[92.84481,23.23458],[92.84659,23.23495],[92.84645,23.23383],[92.84424,23.23299],[92.84611,23.23207],[92.84614,23.22985],[92.84485,23.22965],[92.84704,23.22902],[92.84531,23.2276],[92.84736,23.22733],[92.84792,23.22427],[92.85057,23.22378],[92.8516,23.22046],[92.85693,23.21747],[92.85851,23.21437],[92.85584,23.20961],[92.85712,23.20744],[92.85549,23.20282],[92.8564,23.19966],[92.85424,23.1945],[92.85496,23.19038],[92.85884,23.18942],[92.85802,23.18368],[92.86258,23.17407],[92.86961,23.17579],[92.87457,23.17019],[92.88035,23.16968],[92.88325,23.17029],[92.88712,23.17497],[92.89121,23.17695],[92.8958,23.17827],[92.90527,23.17752],[92.91465,23.18341],[92.91694,23.18909],[92.92299,23.18615],[92.93251,23.18754],[92.93484,23.18483],[92.93236,23.17456],[92.93611,23.1695],[92.93998,23.17071],[92.94733,23.16905],[92.95408,23.16441],[92.95606,23.15812],[92.95495,23.1516],[92.95703,23.14841],[92.95555,23.13613],[92.95948,23.13371],[92.95739,23.12864],[92.95761,23.11603],[92.9603,23.11595],[92.9603,23.11392],[92.96427,23.11366],[92.96285,23.1121],[92.96484,23.11014],[92.97222,23.10671],[92.97791,23.10616],[92.98451,23.09933],[92.98597,23.10034],[92.98884,23.09637],[92.99062,23.09692],[92.99054,23.09499],[93.00428,23.08806],[93.00826,23.08756],[93.01644,23.0811],[93.0247,23.07919],[93.03349,23.08181],[93.03723,23.08147],[93.03762,23.07917],[93.04153,23.07773],[93.04297,23.07401],[93.03783,23.0661],[93.0398,23.05812],[93.03846,23.04981],[93.05272,23.04477],[93.06675,23.04201],[93.06796,23.04294],[93.0754,23.03721],[93.08131,23.03498],[93.07857,23.03077],[93.07972,23.02988],[93.08881,23.02754],[93.1104,23.01443],[93.11582,23.01334],[93.12233,23.00638],[93.12536,23.01822],[93.12528,23.02427],[93.12827,23.03076],[93.12587,23.03531],[93.12581,23.04072],[93.1271,23.04427],[93.13537,23.04836],[93.13326,23.05474],[93.13515,23.05997],[93.13712,23.06077],[93.14033,23.05895],[93.14015,23.0533],[93.15135,23.05375],[93.15353,23.04631],[93.1528,23.04419],[93.15609,23.04318],[93.15986,23.04431],[93.1604,23.04795],[93.16896,23.04669],[93.17984,23.05695],[93.17475,23.06353],[93.17503,23.06909],[93.1767,23.07109],[93.17041,23.07716],[93.1752,23.08115],[93.16988,23.08602],[93.17032,23.09058],[93.16584,23.09391],[93.16283,23.10152],[93.16462,23.11671],[93.16732,23.12229],[93.16549,23.1282],[93.16769,23.13609],[93.17284,23.14084],[93.16888,23.14346],[93.17133,23.14636],[93.1669,23.15577],[93.16187,23.16224],[93.16265,23.16506],[93.15973,23.17152],[93.16112,23.17575],[93.15894,23.17797],[93.14773,23.18076],[93.14526,23.18468],[93.1455,23.19026],[93.15117,23.19063],[93.15797,23.19574],[93.16116,23.19309],[93.16267,23.19791],[93.15934,23.20108],[93.15815,23.19905],[93.15428,23.1992],[93.14606,23.20219],[93.13647,23.21676],[93.12903,23.22263],[93.12383,23.22405],[93.11935,23.22849],[93.11332,23.23136],[93.11037,23.23483],[93.11079,23.2364],[93.10537,23.2404],[93.09937,23.24054],[93.09202,23.23097],[93.08268,23.22607],[93.06905,23.22978],[93.06693,23.23483],[93.05427,23.24352],[93.05349,23.24002],[93.05261,23.24106],[93.04823,23.23757],[93.04105,23.23966],[93.03838,23.23693],[93.03803,23.24298],[93.0342,23.24486],[93.03906,23.24592],[93.04311,23.24944],[93.03769,23.25376],[93.03232,23.25439],[93.0316,23.26002],[93.02765,23.26198],[93.03094,23.26475],[93.0306,23.26599],[93.01951,23.26798],[93.01103,23.27398],[93.00702,23.28154],[93.00691,23.28737],[93.0051,23.29045],[93.00676,23.3014],[93.00584,23.30481],[93.01894,23.31876],[93.02518,23.32118],[93.02749,23.32483],[93.03192,23.32679],[93.03442,23.33247],[93.03382,23.33663],[93.03717,23.34337],[93.03575,23.34698],[93.03969,23.34891],[93.04168,23.35446],[93.04092,23.35738],[93.04859,23.36973],[93.04859,23.37276],[93.03754,23.3843],[93.03586,23.39233],[93.03304,23.39456],[93.03247,23.39769],[93.03604,23.4],[93.05386,23.40289],[93.05955,23.39968],[93.06326,23.40027],[93.0672,23.39707],[93.0766,23.40294],[93.08227,23.41378],[93.08575,23.43332],[93.09792,23.44307],[93.0982,23.45053],[93.0868,23.45325],[93.08386,23.45563],[93.07856,23.45572],[93.07036,23.46447],[93.07051,23.4688],[93.0787,23.46768],[93.08169,23.46925],[93.07748,23.47808],[93.06049,23.47733],[93.04909,23.48478],[93.04465,23.48538],[93.0412,23.48419],[93.03398,23.47371],[93.02298,23.47072],[93.0195,23.47406],[93.00901,23.47834],[93.0024,23.4842],[92.99618,23.47897],[92.98616,23.48587],[92.97914,23.49239],[92.98252,23.49628],[92.98223,23.50155],[92.98575,23.50845],[92.98456,23.51151],[92.97173,23.52641],[92.96204,23.53171],[92.95192,23.55111],[92.94426,23.5588],[92.93646,23.5602],[92.92409,23.55776],[92.91174,23.56022],[92.90238,23.56602],[92.89692,23.5717],[92.89895,23.5779],[92.8967,23.57798],[92.89503,23.57619],[92.89149,23.57621],[92.89132,23.5727],[92.88759,23.57267],[92.88048,23.56431],[92.88275,23.56279],[92.88134,23.56052],[92.88225,23.55812],[92.87536,23.558],[92.87164,23.55464],[92.86861,23.55473],[92.86684,23.55775],[92.85916,23.56168],[92.85261,23.57417],[92.84598,23.57532],[92.84229,23.57401],[92.83429,23.57621],[92.82775,23.58535],[92.82481,23.58542],[92.8219,23.589],[92.82302,23.59768],[92.82145,23.59882],[92.82101,23.60306],[92.81834,23.60481],[92.82077,23.60975],[92.82135,23.61783],[92.81676,23.62145],[92.8164,23.62443],[92.81068,23.62784],[92.81453,23.63199],[92.81581,23.63651],[92.8099,23.64246],[92.80963,23.64095],[92.80803,23.6416],[92.8045,23.63897],[92.80252,23.64168],[92.80065,23.64125]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"269","area_level":"District","area_name":"Dhalai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.78724,24.22255],[91.74503,24.24697],[91.76063,24.1401],[91.75955,24.13682],[91.75616,24.13471],[91.75934,24.13029],[91.7574,24.12564],[91.75714,24.119],[91.75413,24.11687],[91.75652,24.11558],[91.75709,24.10924],[91.75577,24.10574],[91.75779,24.10392],[91.75776,24.09599],[91.75981,24.09201],[91.75819,24.0913],[91.75728,24.0859],[91.75256,24.08124],[91.75697,24.07629],[91.7571,24.06897],[91.75973,24.06817],[91.75959,24.06602],[91.75558,24.06265],[91.75787,24.05826],[91.75697,24.05059],[91.75832,24.04504],[91.75545,24.04195],[91.75469,24.03511],[91.75496,24.03289],[91.75775,24.0328],[91.75861,24.03008],[91.75731,24.02826],[91.7595,24.02507],[91.75609,24.01735],[91.75445,24.00062],[91.75659,23.99725],[91.75493,23.98701],[91.75798,23.98493],[91.75789,23.9779],[91.76141,23.9738],[91.75917,23.9715],[91.75701,23.96137],[91.76139,23.95503],[91.76502,23.95326],[91.76664,23.9485],[91.76421,23.94305],[91.76868,23.93421],[91.76449,23.93073],[91.76523,23.92114],[91.77389,23.92202],[91.775,23.91946],[91.77841,23.91909],[91.78312,23.92152],[91.78421,23.91762],[91.78869,23.9156],[91.78968,23.90948],[91.79364,23.91449],[91.79512,23.91445],[91.79474,23.91119],[91.79794,23.90561],[91.78963,23.90221],[91.78971,23.89215],[91.7958,23.88858],[91.79731,23.87978],[91.80034,23.87787],[91.80247,23.87102],[91.80638,23.86853],[91.80711,23.86053],[91.80549,23.85103],[91.80681,23.84908],[91.80399,23.84883],[91.80424,23.84594],[91.80233,23.84491],[91.8037,23.84393],[91.80462,23.82752],[91.80861,23.82497],[91.80787,23.81776],[91.80525,23.81521],[91.80702,23.81266],[91.8057,23.80839],[91.80697,23.80619],[91.80215,23.78382],[91.80461,23.77598],[91.80225,23.7599],[91.80313,23.75346],[91.79386,23.75607],[91.78482,23.75513],[91.78276,23.75006],[91.78337,23.74775],[91.77921,23.74353],[91.77265,23.73229],[91.77399,23.72505],[91.77188,23.7235],[91.76335,23.72422],[91.76301,23.70919],[91.76039,23.70154],[91.763,23.69464],[91.76279,23.68926],[91.75047,23.67334],[91.75206,23.6635],[91.75367,23.66217],[91.75163,23.65702],[91.75331,23.65451],[91.75259,23.65144],[91.7557,23.65036],[91.75506,23.64837],[91.75708,23.64868],[91.76117,23.64399],[91.76601,23.64369],[91.76716,23.64487],[91.77173,23.64355],[91.77322,23.63962],[91.7723,23.63819],[91.77418,23.63859],[91.77255,23.63453],[91.77572,23.63217],[91.77057,23.6285],[91.76849,23.62995],[91.766,23.62869],[91.76501,23.62423],[91.76955,23.62256],[91.76707,23.61578],[91.76998,23.61144],[91.77133,23.60559],[91.76918,23.59845],[91.76599,23.5973],[91.76172,23.59202],[91.76202,23.5869],[91.75996,23.58708],[91.75791,23.58449],[91.75689,23.57711],[91.75364,23.57661],[91.75248,23.57486],[91.75477,23.57111],[91.76006,23.57005],[91.76239,23.5716],[91.7629,23.56873],[91.76525,23.56681],[91.77052,23.56555],[91.77128,23.56759],[91.77925,23.56424],[91.77824,23.5594],[91.78096,23.55725],[91.77963,23.55532],[91.7824,23.55398],[91.78084,23.55036],[91.78656,23.54214],[91.78783,23.54264],[91.78825,23.53985],[91.78504,23.53837],[91.78633,23.53667],[91.78846,23.53809],[91.78684,23.53647],[91.78787,23.53302],[91.79088,23.5344],[91.79274,23.53303],[91.79505,23.53477],[91.79466,23.53074],[91.80088,23.53656],[91.80371,23.53457],[91.80344,23.53267],[91.80547,23.53274],[91.80477,23.53155],[91.80776,23.52614],[91.80103,23.51863],[91.80433,23.5124],[91.79863,23.50612],[91.8017,23.50381],[91.80081,23.49878],[91.79817,23.49747],[91.80076,23.49266],[91.79788,23.48931],[91.80147,23.48417],[91.80459,23.48467],[91.80678,23.48277],[91.80568,23.47914],[91.80884,23.47926],[91.80834,23.47674],[91.81126,23.47629],[91.81045,23.47465],[91.81285,23.473],[91.81343,23.46871],[91.82386,23.46767],[91.82715,23.46291],[91.8262,23.46158],[91.82924,23.45536],[91.82918,23.4522],[91.83185,23.45042],[91.8283,23.44624],[91.82879,23.44274],[91.83503,23.44197],[91.83759,23.43408],[91.84006,23.43241],[91.83829,23.42836],[91.84115,23.42854],[91.84319,23.42475],[91.83881,23.42222],[91.83866,23.42005],[91.84012,23.41579],[91.83888,23.41361],[91.84159,23.40908],[91.8429,23.40004],[91.8454,23.40056],[91.84499,23.40469],[91.8496,23.40543],[91.85107,23.40406],[91.85474,23.40667],[91.86064,23.40517],[91.86729,23.41249],[91.87376,23.41404],[91.87377,23.4188],[91.87654,23.42232],[91.88659,23.4265],[91.88883,23.42942],[91.88742,23.43289],[91.89113,23.43359],[91.89535,23.43142],[91.89902,23.4356],[91.89971,23.4406],[91.90936,23.43655],[91.91346,23.43671],[91.91902,23.4395],[91.92181,23.43798],[91.924,23.43366],[91.93132,23.43445],[91.933,23.43598],[91.93486,23.43522],[91.93429,23.43347],[91.93743,23.43234],[91.94058,23.43533],[91.94261,23.43498],[91.94258,23.44049],[91.94018,23.44733],[91.94089,23.45052],[91.93792,23.45919],[91.93909,23.46161],[91.93666,23.4666],[91.94109,23.46586],[91.945,23.46771],[91.94692,23.46593],[91.9477,23.46956],[91.95544,23.47567],[91.95871,23.47288],[91.95833,23.47941],[91.96218,23.47777],[91.9655,23.47849],[91.96913,23.47638],[91.97039,23.47828],[91.96864,23.48741],[91.97086,23.49197],[91.97283,23.49238],[91.97252,23.49471],[91.97104,23.49414],[91.96853,23.49901],[91.97105,23.50302],[91.96825,23.51018],[91.96467,23.51266],[91.96625,23.51512],[91.96314,23.51632],[91.96434,23.51916],[91.96008,23.51845],[91.95628,23.52571],[91.95903,23.53253],[91.96357,23.53319],[91.96461,23.53525],[91.9568,23.55127],[91.95887,23.55368],[91.95662,23.56028],[91.95947,23.56405],[91.95729,23.56753],[91.95869,23.57146],[91.95543,23.5755],[91.95671,23.58197],[91.95425,23.58677],[91.95557,23.59],[91.95193,23.60044],[91.95353,23.60246],[91.95429,23.60956],[91.95243,23.61132],[91.95195,23.61681],[91.94651,23.62282],[91.94721,23.62837],[91.9451,23.62854],[91.94236,23.6338],[91.94674,23.6375],[91.94492,23.64333],[91.94665,23.64598],[91.94394,23.65183],[91.93995,23.65516],[91.94109,23.6564],[91.9392,23.65947],[91.94113,23.662],[91.9408,23.66806],[91.94212,23.66936],[91.93871,23.67321],[91.93973,23.67521],[91.9371,23.68133],[91.93402,23.68456],[91.93668,23.68796],[91.94076,23.68853],[91.94134,23.6936],[91.94579,23.69422],[91.94756,23.69304],[91.95072,23.69458],[91.95308,23.69278],[91.95789,23.69441],[91.95721,23.69762],[91.95066,23.69958],[91.9523,23.70483],[91.94944,23.70651],[91.95001,23.71086],[91.94825,23.71397],[91.9541,23.71938],[91.95463,23.72105],[91.95119,23.72114],[91.95056,23.72607],[91.95429,23.72626],[91.95533,23.72863],[91.95422,23.73057],[91.95695,23.73162],[91.95702,23.73399],[91.96625,23.73362],[91.96733,23.72944],[91.97827,23.73308],[91.98068,23.72338],[91.98418,23.72397],[91.98568,23.72184],[91.98517,23.71628],[91.98885,23.70497],[91.98874,23.70099],[91.99326,23.69452],[91.99366,23.68781],[91.99504,23.68725],[91.99683,23.67966],[91.99913,23.67759],[92.00001,23.67127],[92.00617,23.67112],[92.00867,23.6635],[92.01323,23.66343],[92.01575,23.6598],[92.01973,23.66274],[92.0238,23.66273],[92.0223,23.65808],[92.03063,23.65787],[92.03129,23.65585],[92.03895,23.65164],[92.04196,23.64792],[92.04341,23.64856],[92.04654,23.64659],[92.04986,23.64936],[92.05772,23.64847],[92.06334,23.64502],[92.06905,23.64815],[92.07282,23.64652],[92.07659,23.64879],[92.07918,23.64845],[92.0777,23.65435],[92.07926,23.65577],[92.08001,23.66227],[92.07631,23.66804],[92.0783,23.67103],[92.08068,23.67138],[92.08303,23.68005],[92.08746,23.68056],[92.09176,23.67692],[92.09326,23.67835],[92.09969,23.67671],[92.10416,23.68083],[92.10507,23.68433],[92.10399,23.68599],[92.10617,23.68866],[92.11156,23.69007],[92.11417,23.69425],[92.11625,23.69122],[92.12084,23.69273],[92.12139,23.69506],[92.12391,23.69559],[92.12298,23.69948],[92.12476,23.70068],[92.12533,23.70653],[92.12897,23.70781],[92.13401,23.71575],[92.13934,23.72018],[92.13855,23.72106],[92.14228,23.7253],[92.14449,23.7334],[92.14872,23.73563],[92.15168,23.73398],[92.15493,23.73436],[92.15612,23.73673],[92.16241,23.73962],[92.17089,23.73916],[92.17357,23.75189],[92.17148,23.75421],[92.16394,23.75414],[92.15976,23.7579],[92.15903,23.76163],[92.16167,23.76768],[92.15916,23.77022],[92.159,23.79101],[92.15725,23.79505],[92.15859,23.80979],[92.15688,23.82051],[92.15729,23.82649],[92.15934,23.82919],[92.15732,23.83435],[92.15838,23.84565],[92.15634,23.85521],[92.15032,23.86157],[92.15175,23.86884],[92.14739,23.87684],[92.14691,23.88047],[92.14845,23.88169],[92.14647,23.88195],[92.14053,23.89297],[92.14066,23.89848],[92.13798,23.90253],[92.13778,23.90751],[92.13262,23.92336],[92.1274,23.93104],[92.1133,23.92469],[92.10904,23.92618],[92.10502,23.93082],[92.09588,23.9303],[92.09178,23.93473],[92.09204,23.94117],[92.09779,23.94877],[92.09782,23.95162],[92.10025,23.95314],[92.10009,23.95954],[92.10162,23.96268],[92.09784,23.96345],[92.09615,23.96832],[92.09301,23.96923],[92.09433,23.97677],[92.09192,23.9787],[92.092,23.99222],[92.09625,23.99423],[92.09603,23.99973],[92.09948,24.00077],[92.09826,24.00987],[92.09109,24.01945],[92.08847,24.01657],[92.0813,24.01823],[92.07754,24.02516],[92.07273,24.02787],[92.07319,24.03255],[92.0792,24.03696],[92.0729,24.04305],[92.07188,24.069],[92.07433,24.07435],[92.07194,24.09521],[92.07509,24.09629],[92.07493,24.10148],[92.07718,24.10148],[92.08047,24.10495],[92.0663,24.1064],[92.06091,24.10852],[92.0509,24.10852],[92.04191,24.10145],[92.03729,24.10475],[92.02779,24.10334],[92.01855,24.10853],[92.01187,24.10806],[92.01059,24.10075],[92.01161,24.09156],[92.01007,24.09038],[92.00109,24.09061],[91.99878,24.08779],[92.00027,24.07955],[91.99703,24.08216],[91.98971,24.08099],[91.98089,24.07367],[91.97803,24.07532],[91.97749,24.0712],[91.97385,24.07354],[91.973,24.0699],[91.97434,24.06939],[91.97029,24.06979],[91.96979,24.07747],[91.97249,24.08023],[91.97096,24.08632],[91.96314,24.08717],[91.96289,24.09019],[91.95983,24.09075],[91.95726,24.09379],[91.95071,24.09563],[91.94053,24.10259],[91.93478,24.10396],[91.9301,24.10941],[91.93018,24.11252],[91.9275,24.11298],[91.9212,24.12002],[91.9192,24.12113],[91.91837,24.11543],[91.91111,24.13067],[91.90343,24.13747],[91.8978,24.13943],[91.89039,24.1365],[91.88901,24.13885],[91.88449,24.13873],[91.88443,24.14256],[91.88207,24.14347],[91.88123,24.14581],[91.87865,24.1462],[91.87782,24.15021],[91.87908,24.15149],[91.87521,24.1551],[91.87731,24.15769],[91.87669,24.16146],[91.87463,24.16143],[91.87519,24.16267],[91.87379,24.16317],[91.87497,24.16631],[91.87338,24.16787],[91.87413,24.16956],[91.87634,24.16972],[91.87554,24.17123],[91.87351,24.17099],[91.87399,24.17447],[91.87151,24.17454],[91.86941,24.17718],[91.86617,24.17648],[91.86515,24.18004],[91.86117,24.1813],[91.86102,24.18286],[91.85917,24.18061],[91.857,24.18224],[91.85563,24.18144],[91.85577,24.18315],[91.85339,24.18335],[91.85512,24.18695],[91.85278,24.18979],[91.84544,24.19138],[91.84719,24.19311],[91.84483,24.19557],[91.84527,24.19736],[91.84399,24.19674],[91.84422,24.19972],[91.84196,24.20134],[91.84399,24.202],[91.84606,24.20059],[91.84916,24.20366],[91.84924,24.20838],[91.85213,24.20862],[91.84983,24.21275],[91.85518,24.21239],[91.85104,24.21666],[91.84864,24.216],[91.84765,24.21783],[91.84569,24.21747],[91.84952,24.2199],[91.84931,24.22118],[91.84307,24.22022],[91.84274,24.22259],[91.84603,24.22395],[91.84569,24.22501],[91.84329,24.22636],[91.83701,24.22556],[91.83788,24.21875],[91.83123,24.21817],[91.82925,24.21315],[91.82645,24.21361],[91.82385,24.21008],[91.8214,24.21082],[91.82073,24.20921],[91.81254,24.21198],[91.81114,24.21669],[91.80592,24.2187],[91.80708,24.21892],[91.80623,24.22068],[91.80236,24.21934],[91.79879,24.22075],[91.79792,24.21952],[91.79432,24.21953],[91.79388,24.2209],[91.79178,24.21971],[91.78724,24.22255]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"27","area_level":"District","area_name":"Amritsar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.89133,32.05478],[74.88988,32.05521],[74.88856,32.0526],[74.87955,32.0538],[74.87547,32.05087],[74.87269,32.04404],[74.86924,32.04283],[74.86892,32.04161],[74.87258,32.04169],[74.8764,32.03424],[74.87998,32.03204],[74.86969,32.02263],[74.86922,32.02798],[74.86557,32.03044],[74.8627,32.02953],[74.86389,32.02457],[74.86562,32.02322],[74.84835,32.02047],[74.8532,32.01356],[74.84678,32.00832],[74.83897,32.00844],[74.82887,31.99862],[74.83136,31.98085],[74.8191,31.95875],[74.81502,31.96051],[74.81094,31.95941],[74.81033,31.96235],[74.80616,31.96285],[74.80238,31.95784],[74.79479,31.95823],[74.78148,31.95571],[74.76842,31.94767],[74.75958,31.95448],[74.75559,31.95575],[74.75657,31.9437],[74.74321,31.93959],[74.7343,31.94515],[74.73088,31.94096],[74.72718,31.94256],[74.72016,31.94143],[74.71527,31.93617],[74.71405,31.93231],[74.71924,31.92369],[74.70774,31.92304],[74.70648,31.9211],[74.70071,31.92346],[74.70061,31.9258],[74.6986,31.92628],[74.6772,31.92614],[74.67432,31.91861],[74.67325,31.92093],[74.66671,31.92273],[74.66835,31.91787],[74.66633,31.91739],[74.66768,31.91652],[74.66335,31.91318],[74.66259,31.91432],[74.6604,31.91354],[74.65844,31.91028],[74.65764,31.90188],[74.6543,31.89958],[74.65089,31.90218],[74.64517,31.89425],[74.63965,31.88996],[74.63631,31.88422],[74.63257,31.88421],[74.62936,31.88212],[74.61583,31.88967],[74.60786,31.89039],[74.60736,31.882],[74.60816,31.87886],[74.61006,31.87852],[74.60663,31.86853],[74.59721,31.86738],[74.59223,31.858],[74.59071,31.84855],[74.58332,31.85189],[74.57316,31.8384],[74.57213,31.83882],[74.5707,31.83694],[74.57044,31.82812],[74.57122,31.81896],[74.57307,31.816],[74.56531,31.80852],[74.55791,31.80477],[74.56712,31.7964],[74.55561,31.79135],[74.55526,31.78617],[74.55141,31.77897],[74.55695,31.77055],[74.55489,31.76694],[74.56179,31.7633],[74.55941,31.75788],[74.54733,31.75216],[74.54743,31.74935],[74.53093,31.74779],[74.51387,31.74012],[74.50888,31.74225],[74.5037,31.74048],[74.50516,31.73999],[74.50407,31.74012],[74.50283,31.73336],[74.50307,31.72853],[74.49062,31.72378],[74.48829,31.7205],[74.4866,31.715],[74.49932,31.70946],[74.49927,31.70748],[74.50342,31.70265],[74.5019,31.69579],[74.51756,31.6885],[74.52411,31.68698],[74.53496,31.6776],[74.5343,31.67339],[74.52943,31.66921],[74.5287,31.66661],[74.54024,31.66008],[74.5373,31.65328],[74.54105,31.64674],[74.54473,31.64839],[74.54666,31.64566],[74.54797,31.63911],[74.54634,31.63307],[74.55168,31.62361],[74.55106,31.61762],[74.55627,31.61134],[74.55532,31.60784],[74.56777,31.60679],[74.5753,31.60379],[74.57572,31.60079],[74.5785,31.59963],[74.575,31.59742],[74.5808,31.59419],[74.58202,31.58812],[74.5809,31.58727],[74.58578,31.58514],[74.58688,31.5835],[74.58552,31.5814],[74.59175,31.57687],[74.59228,31.57411],[74.60154,31.57278],[74.61106,31.56714],[74.61573,31.56868],[74.60888,31.56662],[74.60679,31.56296],[74.61108,31.55896],[74.61615,31.5574],[74.61865,31.55162],[74.61445,31.55109],[74.61498,31.54423],[74.61288,31.54326],[74.61271,31.54108],[74.6143,31.5353],[74.61224,31.5306],[74.6129,31.52734],[74.60403,31.52409],[74.59596,31.52603],[74.58894,31.52163],[74.58433,31.52092],[74.58248,31.51338],[74.58016,31.51113],[74.58365,31.51027],[74.58404,31.50695],[74.58003,31.50726],[74.58713,31.50401],[74.5852,31.50082],[74.5815,31.50064],[74.58115,31.49898],[74.5797,31.50055],[74.57532,31.50093],[74.57786,31.49856],[74.58728,31.49629],[74.59366,31.49644],[74.5947,31.50155],[74.59941,31.49985],[74.60311,31.50055],[74.60445,31.49868],[74.61401,31.49929],[74.61627,31.50247],[74.6181,31.51041],[74.62408,31.51165],[74.62844,31.51589],[74.62646,31.52509],[74.64926,31.54039],[74.6613,31.53684],[74.66497,31.53286],[74.66957,31.53259],[74.67058,31.54032],[74.67269,31.5397],[74.67488,31.54182],[74.67517,31.54763],[74.679,31.54846],[74.67996,31.55016],[74.68941,31.54758],[74.69674,31.54298],[74.69833,31.53901],[74.70269,31.54134],[74.70695,31.53935],[74.71118,31.54382],[74.71181,31.55026],[74.71512,31.5528],[74.71739,31.55048],[74.71981,31.55407],[74.7228,31.55462],[74.72295,31.55676],[74.72697,31.55857],[74.72962,31.56332],[74.73788,31.56512],[74.74624,31.55925],[74.75393,31.55829],[74.75482,31.56011],[74.7509,31.56051],[74.75293,31.56573],[74.75645,31.56315],[74.77035,31.56147],[74.77329,31.55948],[74.77428,31.56213],[74.77946,31.56421],[74.77958,31.56583],[74.78495,31.56199],[74.79094,31.56931],[74.79393,31.57081],[74.79838,31.56889],[74.79872,31.56234],[74.80487,31.55813],[74.81106,31.55655],[74.81325,31.55975],[74.81896,31.55652],[74.81725,31.55411],[74.81949,31.5533],[74.81713,31.54437],[74.823,31.53662],[74.83068,31.53895],[74.84036,31.53551],[74.84464,31.53098],[74.84822,31.5308],[74.85596,31.53471],[74.86546,31.53598],[74.86716,31.53856],[74.87225,31.53692],[74.87799,31.53773],[74.87944,31.54509],[74.88909,31.55441],[74.89903,31.55276],[74.89724,31.54778],[74.89826,31.53715],[74.89705,31.52992],[74.90134,31.52373],[74.9168,31.5276],[74.93741,31.52348],[74.94077,31.52117],[74.94076,31.51076],[74.93826,31.50936],[74.94838,31.50265],[74.95263,31.49668],[74.95746,31.49722],[74.9634,31.50688],[74.96083,31.50822],[74.96506,31.51406],[74.97371,31.51139],[74.97727,31.51268],[74.9772,31.51673],[74.97291,31.51828],[74.98202,31.52675],[74.98408,31.52631],[74.98491,31.52395],[74.98378,31.52244],[74.98502,31.52265],[74.9867,31.5197],[74.98828,31.521],[74.99027,31.5195],[74.98699,31.51664],[74.99175,31.50789],[74.99031,31.50706],[74.9911,31.50513],[74.99356,31.50431],[74.99612,31.5071],[74.99687,31.51152],[75.00029,31.51155],[75.00056,31.51475],[75.00598,31.52063],[75.00493,31.52251],[75.00664,31.52465],[75.00982,31.52573],[75.01816,31.52349],[75.02191,31.52686],[75.0267,31.5269],[75.03138,31.53243],[75.03217,31.53114],[75.02997,31.52672],[75.03588,31.52711],[75.03932,31.52369],[75.0416,31.5252],[75.04542,31.51817],[75.04779,31.51709],[75.06658,31.52497],[75.07052,31.52873],[75.08333,31.52081],[75.10844,31.52373],[75.11019,31.51193],[75.11528,31.51],[75.1162,31.50578],[75.12205,31.49937],[75.12191,31.49632],[75.12462,31.49519],[75.13035,31.50328],[75.13859,31.50867],[75.14679,31.50617],[75.15519,31.50802],[75.16262,31.51204],[75.16559,31.51635],[75.16791,31.51687],[75.16792,31.52462],[75.17893,31.52928],[75.19126,31.52047],[75.18786,31.51821],[75.18932,31.51479],[75.18418,31.50726],[75.19512,31.50073],[75.20089,31.50442],[75.20795,31.49713],[75.20984,31.49802],[75.21963,31.49221],[75.22828,31.49129],[75.22983,31.49628],[75.23344,31.49887],[75.24064,31.49819],[75.25053,31.50243],[75.25485,31.49962],[75.25615,31.49597],[75.25826,31.4953],[75.26049,31.49676],[75.26399,31.49503],[75.27901,31.48226],[75.28242,31.48227],[75.29714,31.5],[75.30855,31.51729],[75.30944,31.51674],[75.31792,31.52669],[75.31667,31.52859],[75.32838,31.5433],[75.34308,31.55589],[75.34535,31.55413],[75.35872,31.56841],[75.37476,31.57891],[75.39597,31.5804],[75.40228,31.59239],[75.40427,31.59355],[75.39642,31.59956],[75.39184,31.60602],[75.38721,31.60897],[75.38434,31.6139],[75.37843,31.61728],[75.37268,31.62457],[75.36216,31.62586],[75.35209,31.63253],[75.34656,31.63394],[75.34499,31.63678],[75.3443,31.63544],[75.3414,31.63556],[75.33873,31.64118],[75.33424,31.63957],[75.32953,31.63516],[75.32718,31.63537],[75.31785,31.64173],[75.30954,31.64985],[75.30197,31.65263],[75.2998,31.65565],[75.30965,31.66149],[75.31327,31.66732],[75.30939,31.6701],[75.30667,31.67539],[75.30103,31.67482],[75.29751,31.68111],[75.29526,31.6798],[75.29246,31.68335],[75.2894,31.68097],[75.28432,31.68179],[75.28682,31.69291],[75.2851,31.69474],[75.28496,31.69839],[75.27926,31.69828],[75.27653,31.6958],[75.27209,31.69691],[75.26138,31.69203],[75.2574,31.6938],[75.24759,31.69185],[75.24666,31.68872],[75.24366,31.69034],[75.24122,31.68973],[75.24262,31.68678],[75.24027,31.68324],[75.23533,31.68699],[75.22761,31.68405],[75.22606,31.68865],[75.22728,31.69174],[75.22553,31.69277],[75.22393,31.69156],[75.21824,31.69488],[75.2129,31.69581],[75.21502,31.70111],[75.2133,31.70536],[75.20961,31.70606],[75.20798,31.70845],[75.20401,31.70742],[75.19386,31.71102],[75.19371,31.71766],[75.20012,31.71791],[75.20382,31.72239],[75.20117,31.72454],[75.20305,31.73061],[75.19715,31.7341],[75.18777,31.73403],[75.18707,31.73662],[75.18577,31.73656],[75.19062,31.73993],[75.18954,31.74142],[75.18663,31.74244],[75.18426,31.73908],[75.18287,31.73987],[75.18385,31.74101],[75.18183,31.74046],[75.17386,31.74901],[75.17346,31.74728],[75.17094,31.74804],[75.16535,31.74569],[75.16003,31.7463],[75.15906,31.74787],[75.15463,31.74728],[75.14872,31.75281],[75.14612,31.75826],[75.144,31.75894],[75.14337,31.75621],[75.13744,31.75179],[75.12593,31.75413],[75.12383,31.75656],[75.11659,31.75297],[75.10457,31.75499],[75.10104,31.75931],[75.0997,31.76414],[75.10683,31.76535],[75.10799,31.77302],[75.11353,31.77704],[75.11358,31.77895],[75.11137,31.78134],[75.10248,31.78233],[75.09159,31.79097],[75.08246,31.79212],[75.07991,31.80134],[75.07377,31.80614],[75.07058,31.80753],[75.06285,31.80692],[75.06102,31.80957],[75.03986,31.80253],[75.03548,31.8058],[75.03413,31.80863],[75.03538,31.8108],[75.03151,31.81462],[75.02905,31.81256],[75.02189,31.81772],[75.02822,31.82095],[75.02811,31.8228],[75.02323,31.82088],[75.01293,31.82039],[75.0068,31.82823],[75.00226,31.83012],[75.00052,31.83263],[74.99767,31.8309],[74.99675,31.83203],[74.99272,31.83095],[74.98362,31.83627],[74.97409,31.83455],[74.9692,31.83126],[74.96568,31.83775],[74.96201,31.84071],[74.96441,31.84344],[74.962,31.85401],[74.95742,31.85647],[74.95096,31.85589],[74.94195,31.86064],[74.9417,31.86355],[74.94469,31.86467],[74.94334,31.86877],[74.9443,31.8705],[74.94038,31.87011],[74.93831,31.8669],[74.9338,31.86857],[74.92607,31.87566],[74.91657,31.87916],[74.91872,31.88306],[74.91939,31.89262],[74.9118,31.89107],[74.90679,31.89436],[74.90759,31.89801],[74.90229,31.90198],[74.90283,31.90751],[74.8971,31.91346],[74.88869,31.92768],[74.8906,31.92873],[74.88944,31.93148],[74.89229,31.93386],[74.89693,31.93262],[74.89664,31.92984],[74.89855,31.93181],[74.90173,31.93139],[74.90505,31.93644],[74.91417,31.94187],[74.92597,31.94132],[74.9289,31.93852],[74.94208,31.94306],[74.93753,31.94614],[74.948,31.95201],[74.95426,31.95463],[74.96049,31.95345],[74.97192,31.9603],[74.97403,31.97084],[74.97344,31.976],[74.9486,31.9704],[74.94753,31.9654],[74.93914,31.96248],[74.93322,31.96419],[74.92858,31.96887],[74.91721,31.97518],[74.9183,31.97744],[74.91737,31.98017],[74.92006,31.9825],[74.91666,31.98519],[74.91951,31.99353],[74.91909,31.9989],[74.9199,32.00018],[74.92481,32.0],[74.92795,32.0051],[74.9324,32.0048],[74.93411,32.00713],[74.93072,32.00943],[74.9355,32.01193],[74.93352,32.01668],[74.92937,32.0186],[74.92802,32.02643],[74.92264,32.03917],[74.90837,32.05148],[74.90477,32.05022],[74.89133,32.05478]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"270","area_level":"District","area_name":"North Tripura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.17093,24.53064],[92.16569,24.53141],[92.1657,24.5291],[92.16188,24.52749],[92.15979,24.52932],[92.15882,24.52746],[92.16019,24.52532],[92.1586,24.5232],[92.15496,24.52297],[92.15776,24.52188],[92.15543,24.51803],[92.1582,24.51517],[92.157,24.51249],[92.15612,24.51362],[92.15348,24.51202],[92.15911,24.50717],[92.15231,24.50227],[92.15389,24.49984],[92.15184,24.49944],[92.1505,24.49522],[92.15369,24.49164],[92.15129,24.49115],[92.15195,24.48722],[92.15359,24.48724],[92.1527,24.48147],[92.15724,24.47407],[92.15427,24.47209],[92.15542,24.46967],[92.1582,24.4696],[92.1582,24.46751],[92.15649,24.46858],[92.15561,24.46567],[92.15797,24.46629],[92.15841,24.46378],[92.16043,24.46298],[92.15808,24.45965],[92.16116,24.45873],[92.15955,24.45326],[92.16167,24.45264],[92.1624,24.45093],[92.16101,24.44872],[92.16444,24.44463],[92.16447,24.44077],[92.1626,24.4399],[92.16442,24.43884],[92.16389,24.43657],[92.16632,24.43678],[92.16745,24.43455],[92.166,24.43329],[92.16709,24.43138],[92.16601,24.42812],[92.16913,24.42777],[92.16751,24.42711],[92.16651,24.42168],[92.16372,24.41836],[92.15991,24.42122],[92.16041,24.42252],[92.15642,24.42263],[92.15369,24.42557],[92.14775,24.42104],[92.14545,24.42337],[92.14411,24.42208],[92.1368,24.42496],[92.13669,24.42006],[92.13335,24.41694],[92.13284,24.41434],[92.13262,24.411],[92.1345,24.41008],[92.13516,24.40716],[92.13159,24.40665],[92.12738,24.40165],[92.12846,24.40009],[92.12699,24.39979],[92.12643,24.3968],[92.12257,24.39594],[92.11891,24.39],[92.12078,24.3895],[92.1192,24.38859],[92.12197,24.38703],[92.12287,24.3851],[92.12176,24.38478],[92.12365,24.38468],[92.12135,24.38355],[92.1219,24.38224],[92.1206,24.3834],[92.12045,24.38135],[92.11795,24.38227],[92.11806,24.38054],[92.11333,24.38224],[92.11358,24.3807],[92.11037,24.37981],[92.10743,24.38201],[92.10426,24.38105],[92.10231,24.38295],[92.1001,24.38064],[92.10161,24.37893],[92.10016,24.37585],[92.09742,24.37631],[92.09623,24.37277],[92.09042,24.37162],[92.08626,24.37327],[92.08527,24.37559],[92.07599,24.37511],[92.07808,24.36724],[92.07503,24.34985],[92.0761,24.34546],[92.0736,24.32879],[92.07461,24.31985],[92.07261,24.31413],[92.07617,24.31174],[92.077,24.3078],[92.08375,24.30379],[92.08192,24.30118],[92.08045,24.29212],[92.08093,24.27586],[92.08614,24.27377],[92.09329,24.27257],[92.09519,24.27366],[92.10445,24.27134],[92.10725,24.27382],[92.10832,24.27108],[92.11286,24.2703],[92.12283,24.27141],[92.12609,24.26643],[92.12339,24.26049],[92.12324,24.25583],[92.128,24.25184],[92.13072,24.24539],[92.13687,24.24332],[92.14314,24.23843],[92.15164,24.23758],[92.1535,24.23183],[92.15249,24.22601],[92.15997,24.22817],[92.15997,24.23007],[92.16215,24.23042],[92.16745,24.22687],[92.16651,24.22195],[92.16795,24.21352],[92.17084,24.21221],[92.16965,24.20585],[92.17175,24.20101],[92.17631,24.2017],[92.17927,24.19859],[92.182,24.19985],[92.18253,24.19394],[92.18935,24.1887],[92.20178,24.19128],[92.20341,24.18073],[92.20188,24.17495],[92.20336,24.16992],[92.20271,24.16756],[92.19904,24.1658],[92.20006,24.16095],[92.19894,24.15439],[92.19594,24.14961],[92.19443,24.15097],[92.19168,24.14672],[92.18762,24.14666],[92.18309,24.14002],[92.17718,24.13756],[92.17599,24.13529],[92.17121,24.13441],[92.16994,24.1359],[92.16568,24.1343],[92.16634,24.13327],[92.16368,24.13253],[92.16353,24.12915],[92.16153,24.12691],[92.15834,24.12635],[92.15021,24.11836],[92.14558,24.1198],[92.14606,24.11757],[92.15315,24.11589],[92.15505,24.11794],[92.15934,24.1171],[92.16306,24.11171],[92.16674,24.10959],[92.16891,24.10479],[92.16531,24.1019],[92.16359,24.09593],[92.15804,24.09139],[92.15512,24.09268],[92.15042,24.08279],[92.14572,24.08651],[92.14375,24.08626],[92.14358,24.07772],[92.1416,24.07511],[92.13626,24.07465],[92.13375,24.06892],[92.12714,24.06878],[92.12638,24.07029],[92.12369,24.07037],[92.11921,24.06692],[92.11447,24.07256],[92.11282,24.07204],[92.11146,24.05861],[92.11554,24.05603],[92.11595,24.05414],[92.11098,24.04915],[92.11501,24.03952],[92.11246,24.0373],[92.11239,24.03476],[92.11376,24.03081],[92.11978,24.03055],[92.12439,24.02699],[92.11676,24.02008],[92.11274,24.02292],[92.11326,24.01875],[92.10733,24.01575],[92.10677,24.01106],[92.10281,24.01034],[92.10171,24.01183],[92.09819,24.01004],[92.09948,24.00077],[92.09603,23.99973],[92.09625,23.99423],[92.092,23.99222],[92.09192,23.9787],[92.09433,23.97677],[92.09301,23.96923],[92.09615,23.96832],[92.09784,23.96345],[92.10162,23.96268],[92.10009,23.95954],[92.10025,23.95314],[92.09782,23.95162],[92.09779,23.94877],[92.09239,23.94197],[92.09167,23.93572],[92.09588,23.9303],[92.10502,23.93082],[92.10904,23.92618],[92.1133,23.92469],[92.1274,23.93104],[92.13262,23.92336],[92.13778,23.90751],[92.13798,23.90253],[92.14066,23.89848],[92.14053,23.89297],[92.14647,23.88195],[92.14845,23.88169],[92.14691,23.88047],[92.14739,23.87684],[92.15175,23.86884],[92.15032,23.86157],[92.15634,23.85521],[92.15838,23.84565],[92.15732,23.83435],[92.15934,23.82919],[92.15729,23.82649],[92.15688,23.82051],[92.15859,23.80979],[92.15725,23.79505],[92.159,23.79101],[92.15916,23.77022],[92.16167,23.76768],[92.15903,23.76163],[92.1599,23.75755],[92.16394,23.75414],[92.17148,23.75421],[92.17357,23.75189],[92.17089,23.73916],[92.17291,23.73574],[92.17079,23.73285],[92.17154,23.7266],[92.1696,23.72319],[92.17311,23.71773],[92.17655,23.71641],[92.17771,23.70756],[92.18472,23.70809],[92.18609,23.71098],[92.19354,23.70677],[92.20284,23.70581],[92.20411,23.7019],[92.20703,23.70062],[92.20983,23.69145],[92.21142,23.69054],[92.21092,23.68857],[92.21366,23.68495],[92.21218,23.68084],[92.2073,23.67761],[92.20632,23.67519],[92.20607,23.6695],[92.20749,23.6671],[92.2066,23.661],[92.21086,23.65884],[92.21034,23.65367],[92.21145,23.65277],[92.21937,23.6519],[92.22558,23.6551],[92.22953,23.66612],[92.23305,23.66744],[92.23065,23.67528],[92.23334,23.68123],[92.23203,23.68475],[92.23482,23.68663],[92.23639,23.69286],[92.24038,23.69291],[92.24203,23.69475],[92.24241,23.69916],[92.2396,23.70262],[92.23951,23.70819],[92.23635,23.71209],[92.23917,23.71843],[92.241,23.72071],[92.24915,23.72437],[92.25826,23.72524],[92.26164,23.72344],[92.26548,23.72477],[92.2667,23.73238],[92.26553,23.74323],[92.26718,23.75164],[92.26551,23.76137],[92.26731,23.7686],[92.26487,23.77316],[92.26001,23.79347],[92.2571,23.81277],[92.26628,23.81591],[92.28129,23.81413],[92.28251,23.81539],[92.27807,23.82663],[92.2687,23.84166],[92.26918,23.84691],[92.27927,23.85634],[92.28334,23.86508],[92.2876,23.86848],[92.29048,23.86757],[92.29934,23.85969],[92.30854,23.85679],[92.3117,23.86022],[92.31503,23.8605],[92.31673,23.86435],[92.31421,23.86828],[92.31097,23.86975],[92.31063,23.87334],[92.31318,23.87747],[92.31118,23.88011],[92.31286,23.88481],[92.31665,23.88907],[92.31688,23.8996],[92.31811,23.89841],[92.32397,23.90487],[92.32198,23.91007],[92.32519,23.91409],[92.31927,23.91569],[92.3163,23.92806],[92.30899,23.93122],[92.31068,23.93483],[92.30927,23.94414],[92.31092,23.94821],[92.31053,23.95234],[92.30829,23.95423],[92.3092,23.95739],[92.30797,23.96056],[92.31,23.96302],[92.3086,23.96808],[92.31031,23.96952],[92.31039,23.97227],[92.31445,23.97284],[92.31735,23.97511],[92.31731,23.97878],[92.32014,23.97902],[92.32194,23.9832],[92.32141,23.98756],[92.32358,23.98854],[92.32216,23.99392],[92.3262,23.99778],[92.32284,24.00273],[92.32436,24.00465],[92.3189,24.00821],[92.32018,24.01226],[92.31919,24.01517],[92.31395,24.02122],[92.31542,24.02337],[92.31877,24.02188],[92.31982,24.02444],[92.31478,24.02595],[92.31695,24.03006],[92.31211,24.03241],[92.31574,24.03487],[92.31571,24.03768],[92.31201,24.03851],[92.31643,24.04561],[92.31215,24.05212],[92.31273,24.05488],[92.31531,24.05315],[92.31761,24.05497],[92.3163,24.0595],[92.31986,24.06374],[92.3168,24.06653],[92.31656,24.07004],[92.31939,24.07012],[92.32129,24.07269],[92.31925,24.07819],[92.32416,24.07926],[92.32219,24.08154],[92.32482,24.08817],[92.32492,24.09759],[92.32767,24.10149],[92.3269,24.10444],[92.32262,24.10439],[92.32791,24.11194],[92.32502,24.1127],[92.3243,24.11507],[92.32711,24.117],[92.32474,24.11968],[92.32586,24.13249],[92.32456,24.13943],[92.3307,24.13969],[92.32874,24.14312],[92.33173,24.15179],[92.32873,24.15507],[92.32863,24.16625],[92.32442,24.16818],[92.32387,24.17123],[92.32591,24.17355],[92.32653,24.17772],[92.33206,24.17956],[92.32629,24.18168],[92.32545,24.18552],[92.32243,24.18872],[92.32636,24.19136],[92.32177,24.19418],[92.32608,24.19707],[92.31912,24.19786],[92.32154,24.20373],[92.3147,24.20639],[92.31419,24.20961],[92.31627,24.2118],[92.31086,24.21784],[92.31041,24.22127],[92.30428,24.22351],[92.29735,24.23149],[92.29253,24.25012],[92.28959,24.25235],[92.21287,24.24993],[92.26573,24.36602],[92.26814,24.36788],[92.26806,24.37811],[92.27289,24.37897],[92.26864,24.38406],[92.27409,24.38832],[92.27202,24.39236],[92.26911,24.39254],[92.27081,24.39628],[92.26933,24.39847],[92.26414,24.39895],[92.26172,24.40869],[92.26349,24.40947],[92.26328,24.41119],[92.25448,24.42053],[92.25654,24.42484],[92.25689,24.43202],[92.25936,24.43403],[92.2594,24.43921],[92.25347,24.44031],[92.25313,24.44232],[92.24649,24.4452],[92.24437,24.44437],[92.23889,24.4475],[92.23487,24.45261],[92.23637,24.45819],[92.23018,24.46151],[92.2306,24.47143],[92.23147,24.47352],[92.23475,24.47457],[92.23133,24.48004],[92.23348,24.48419],[92.23665,24.48459],[92.2349,24.48692],[92.23658,24.48871],[92.2312,24.49521],[92.23044,24.50171],[92.20895,24.50412],[92.20764,24.50613],[92.20176,24.50735],[92.19982,24.51124],[92.19599,24.51165],[92.19265,24.51819],[92.18826,24.51883],[92.18802,24.52105],[92.18612,24.5208],[92.18497,24.52322],[92.17619,24.52334],[92.17631,24.52632],[92.1736,24.52718],[92.17093,24.53064]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"271","area_level":"District","area_name":"South Tripura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.62547,23.42532],[91.6195,23.41913],[91.61735,23.4192],[91.61182,23.40929],[91.60431,23.40981],[91.59513,23.40303],[91.59237,23.39826],[91.5888,23.3998],[91.58593,23.40456],[91.57853,23.40627],[91.57941,23.41007],[91.57682,23.41302],[91.57822,23.41494],[91.57602,23.41757],[91.57739,23.41953],[91.57445,23.41898],[91.57174,23.42384],[91.56528,23.42256],[91.56359,23.42548],[91.5567,23.42532],[91.55206,23.42191],[91.54822,23.42258],[91.53794,23.41934],[91.53077,23.42011],[91.52226,23.41442],[91.52135,23.41611],[91.51686,23.41559],[91.50718,23.40819],[91.50608,23.40909],[91.5033,23.40746],[91.48968,23.40609],[91.48788,23.40793],[91.48739,23.40663],[91.48466,23.40766],[91.48188,23.40504],[91.47786,23.4043],[91.46817,23.40517],[91.46811,23.4024],[91.47032,23.40174],[91.46807,23.3989],[91.47031,23.39542],[91.4691,23.39341],[91.4703,23.39031],[91.46147,23.3898],[91.4593,23.3799],[91.46045,23.37742],[91.45191,23.37369],[91.44973,23.36877],[91.44247,23.36537],[91.44096,23.36749],[91.43656,23.36616],[91.43082,23.37075],[91.42456,23.37051],[91.42319,23.37339],[91.4204,23.37433],[91.41301,23.3716],[91.41022,23.36707],[91.40521,23.36837],[91.40502,23.36365],[91.40216,23.36288],[91.39859,23.35841],[91.3938,23.36077],[91.3877,23.35563],[91.38916,23.35329],[91.38813,23.35146],[91.39093,23.34864],[91.38908,23.34668],[91.39103,23.34452],[91.38938,23.34364],[91.39227,23.34157],[91.39062,23.34054],[91.39147,23.33826],[91.38951,23.3335],[91.38647,23.33096],[91.38769,23.32551],[91.38553,23.32445],[91.38068,23.3257],[91.37845,23.32426],[91.37799,23.32059],[91.37568,23.31987],[91.3752,23.31301],[91.36981,23.3074],[91.37079,23.30276],[91.36533,23.29858],[91.36286,23.29887],[91.36083,23.29569],[91.35598,23.29301],[91.3569,23.2903],[91.3551,23.28853],[91.35337,23.28881],[91.34754,23.28272],[91.34093,23.27908],[91.32705,23.2765],[91.32065,23.28005],[91.31611,23.28004],[91.30979,23.27637],[91.31802,23.25289],[91.32661,23.25229],[91.3255,23.24714],[91.3187,23.24549],[91.31893,23.23985],[91.32365,23.23745],[91.32473,23.16863],[91.32333,23.15801],[91.33312,23.15285],[91.33709,23.13105],[91.34173,23.12874],[91.34187,23.1178],[91.34763,23.11879],[91.34696,23.1023],[91.36979,23.07037],[91.39585,23.05604],[91.39876,23.05651],[91.39924,23.05841],[91.40631,23.05898],[91.41163,23.06231],[91.416,23.06265],[91.41724,23.06497],[91.41087,23.06624],[91.4132,23.06949],[91.41339,23.07552],[91.41612,23.07652],[91.41758,23.08242],[91.40812,23.08346],[91.40523,23.08698],[91.40607,23.09692],[91.40026,23.09642],[91.40342,23.11372],[91.39697,23.11768],[91.3973,23.13014],[91.39203,23.13944],[91.38928,23.15263],[91.38477,23.15615],[91.3852,23.17521],[91.38188,23.17501],[91.38299,23.18448],[91.3799,23.18445],[91.38098,23.19159],[91.38554,23.19184],[91.38776,23.20789],[91.38077,23.20843],[91.38832,23.21467],[91.39213,23.22003],[91.38647,23.22756],[91.40091,23.22911],[91.40025,23.23508],[91.39841,23.23589],[91.39711,23.24115],[91.39255,23.24589],[91.40874,23.24762],[91.40067,23.2561],[91.3973,23.25625],[91.39756,23.26512],[91.40039,23.26571],[91.40559,23.25659],[91.41132,23.25566],[91.40894,23.28519],[91.41374,23.28136],[91.41563,23.28275],[91.41559,23.27927],[91.41775,23.27722],[91.41657,23.27561],[91.41781,23.2762],[91.41964,23.27326],[91.41816,23.26959],[91.41592,23.26948],[91.41742,23.26448],[91.41538,23.26334],[91.41869,23.25831],[91.41831,23.25539],[91.42116,23.26177],[91.42475,23.25964],[91.42489,23.25802],[91.43139,23.26245],[91.44867,23.25985],[91.45421,23.26037],[91.45541,23.25643],[91.44943,23.25196],[91.44873,23.24976],[91.44598,23.25003],[91.44524,23.24707],[91.44717,23.24747],[91.44706,23.24377],[91.45791,23.24599],[91.47027,23.22763],[91.45329,23.22317],[91.45061,23.21941],[91.45825,23.21564],[91.45862,23.21328],[91.47541,23.22036],[91.48443,23.20918],[91.48257,23.19907],[91.47076,23.19642],[91.48493,23.18821],[91.48845,23.19213],[91.4922,23.18881],[91.50323,23.19208],[91.50428,23.18929],[91.5011,23.18527],[91.50754,23.18368],[91.50673,23.17992],[91.49739,23.17978],[91.49174,23.17756],[91.49236,23.17194],[91.49826,23.17165],[91.4948,23.16195],[91.49088,23.1576],[91.49428,23.15221],[91.50722,23.15424],[91.49474,23.14708],[91.49897,23.14378],[91.49873,23.14247],[91.50164,23.14305],[91.50455,23.14031],[91.50819,23.13965],[91.51002,23.14037],[91.50981,23.14319],[91.51532,23.14499],[91.51487,23.13856],[91.50315,23.13049],[91.50381,23.12723],[91.51764,23.12542],[91.51426,23.12255],[91.51542,23.11763],[91.51924,23.11774],[91.52042,23.11443],[91.5123,23.11322],[91.51132,23.10419],[91.52236,23.104],[91.51895,23.09415],[91.52983,23.09166],[91.52998,23.08573],[91.52513,23.08281],[91.53534,23.06331],[91.52584,23.05997],[91.52496,23.05535],[91.53628,23.05451],[91.53049,23.03831],[91.55036,23.03841],[91.53842,23.01919],[91.54822,23.01924],[91.54249,22.99946],[91.54752,22.99418],[91.55704,22.9966],[91.55722,22.97846],[91.57506,22.96864],[91.57676,22.96522],[91.59063,22.97689],[91.59306,22.97263],[91.59923,22.97594],[91.60141,22.9713],[91.6061,22.97191],[91.60563,22.96531],[91.61188,22.96235],[91.6138,22.95837],[91.61233,22.95773],[91.60554,22.96236],[91.60189,22.95891],[91.60017,22.9547],[91.60244,22.95322],[91.60844,22.95721],[91.6096,22.95611],[91.60711,22.95004],[91.61348,22.95238],[91.61584,22.95147],[91.61646,22.94912],[91.61299,22.94957],[91.61272,22.94699],[91.61695,22.94401],[91.61687,22.93955],[91.61914,22.93835],[91.62554,22.94402],[91.62349,22.94939],[91.62701,22.95566],[91.62456,22.96157],[91.62631,22.96219],[91.63095,22.95896],[91.63562,22.96108],[91.6405,22.97033],[91.64081,22.97489],[91.6457,22.97655],[91.64546,22.98502],[91.65003,22.98249],[91.65154,22.97672],[91.65808,22.97811],[91.65632,22.98064],[91.6577,22.98173],[91.66192,22.97916],[91.6646,22.98165],[91.67086,22.97705],[91.67805,22.98077],[91.68177,22.97725],[91.69099,22.98326],[91.69369,22.98829],[91.70326,22.98825],[91.70884,22.98186],[91.71164,22.98358],[91.7121,22.98892],[91.717,22.98665],[91.72062,22.98742],[91.72606,22.99889],[91.74391,23.00643],[91.74536,23.01103],[91.75336,23.02208],[91.76148,23.0262],[91.76109,23.02986],[91.76819,23.03423],[91.77192,23.03303],[91.76773,23.0394],[91.76854,23.04093],[91.77147,23.04129],[91.77441,23.03848],[91.77283,23.03169],[91.77431,23.02708],[91.78061,23.02909],[91.77893,23.03648],[91.7817,23.03391],[91.78413,23.03793],[91.78198,23.04481],[91.78247,23.04842],[91.77729,23.05603],[91.77943,23.05992],[91.77359,23.06631],[91.77452,23.06962],[91.78478,23.07149],[91.78603,23.06822],[91.78896,23.0672],[91.7881,23.07009],[91.78954,23.07167],[91.78982,23.06873],[91.79371,23.06902],[91.79581,23.0673],[91.79356,23.06482],[91.79409,23.06228],[91.79924,23.06494],[91.80603,23.06303],[91.80598,23.06697],[91.81235,23.06625],[91.81156,23.06951],[91.81386,23.07058],[91.81319,23.07352],[91.81605,23.07185],[91.81839,23.07274],[91.81593,23.07467],[91.81788,23.07575],[91.81729,23.07894],[91.81475,23.08058],[91.81828,23.08299],[91.81975,23.07978],[91.82446,23.08368],[91.82004,23.08381],[91.81383,23.08705],[91.80973,23.08997],[91.80679,23.09618],[91.80156,23.09607],[91.79838,23.10719],[91.7956,23.10852],[91.79673,23.11004],[91.79423,23.11335],[91.79172,23.11291],[91.78938,23.11589],[91.7893,23.11929],[91.78607,23.12319],[91.78461,23.1288],[91.78067,23.12807],[91.78376,23.12011],[91.78194,23.12021],[91.78016,23.11717],[91.77556,23.11998],[91.77546,23.12219],[91.77256,23.12268],[91.775,23.12758],[91.77231,23.12971],[91.77373,23.13211],[91.77105,23.1319],[91.76694,23.1371],[91.76452,23.1365],[91.76283,23.13859],[91.75888,23.13749],[91.7492,23.144],[91.74095,23.14078],[91.73738,23.14291],[91.73267,23.14027],[91.73133,23.14134],[91.72706,23.15158],[91.72808,23.15285],[91.72701,23.15726],[91.72511,23.1571],[91.72483,23.159],[91.72307,23.1585],[91.725,23.1603],[91.72367,23.16159],[91.72477,23.16361],[91.72256,23.16329],[91.72121,23.16531],[91.72465,23.16791],[91.72239,23.18074],[91.7247,23.18434],[91.71975,23.18603],[91.71928,23.18851],[91.71619,23.18963],[91.71764,23.1919],[91.72576,23.19463],[91.72873,23.19788],[91.7415,23.19765],[91.74327,23.19571],[91.75186,23.19556],[91.75722,23.1928],[91.75921,23.1935],[91.76007,23.19881],[91.7576,23.20105],[91.75611,23.21041],[91.75208,23.21565],[91.75623,23.2212],[91.75257,23.22469],[91.75144,23.22936],[91.74858,23.23102],[91.74788,23.23444],[91.7493,23.23636],[91.74287,23.23912],[91.74457,23.24577],[91.74654,23.24735],[91.74353,23.24854],[91.74538,23.25075],[91.74117,23.25681],[91.74104,23.26316],[91.73785,23.26746],[91.73948,23.2705],[91.72844,23.2815],[91.72999,23.28562],[91.72731,23.29497],[91.72984,23.30238],[91.72816,23.30357],[91.72838,23.30696],[91.72905,23.30808],[91.73214,23.3074],[91.73283,23.31463],[91.7356,23.31496],[91.73477,23.31835],[91.7329,23.31889],[91.73359,23.32189],[91.73238,23.32409],[91.73046,23.32347],[91.72893,23.32535],[91.72753,23.32415],[91.72812,23.31957],[91.72331,23.32198],[91.7212,23.32147],[91.7201,23.32313],[91.72142,23.32587],[91.71806,23.32609],[91.71821,23.32796],[91.715,23.32955],[91.71515,23.33186],[91.7105,23.33185],[91.70912,23.33687],[91.70269,23.34195],[91.70456,23.34401],[91.70405,23.34621],[91.70268,23.3474],[91.69885,23.34591],[91.69728,23.34674],[91.70086,23.35697],[91.70402,23.35979],[91.70183,23.36116],[91.7015,23.36488],[91.69763,23.36599],[91.69707,23.36906],[91.69453,23.36898],[91.68861,23.37421],[91.68737,23.37038],[91.68248,23.36972],[91.67805,23.37217],[91.67474,23.36681],[91.66672,23.36701],[91.65887,23.36096],[91.65559,23.36045],[91.65449,23.35871],[91.65398,23.35983],[91.65199,23.35907],[91.65076,23.36582],[91.64539,23.36953],[91.64497,23.37942],[91.64324,23.38137],[91.64303,23.38957],[91.64098,23.39336],[91.63614,23.39121],[91.63214,23.39261],[91.63152,23.40576],[91.62826,23.40803],[91.63002,23.41063],[91.63186,23.41049],[91.63091,23.41287],[91.63239,23.41649],[91.62849,23.42453],[91.62547,23.42532]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"272","area_level":"District","area_name":"West Tripura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.40198,24.10942],[91.40152,24.1115],[91.38721,24.10721],[91.37461,24.10777],[91.37713,24.07984],[91.3966,24.04962],[91.39645,24.04233],[91.39086,24.02578],[91.37334,24.00265],[91.37497,24.00218],[91.37379,23.99757],[91.37544,23.99773],[91.37502,23.99592],[91.37658,23.99662],[91.37623,23.99513],[91.37425,23.99496],[91.37666,23.99265],[91.37831,23.99299],[91.37903,23.99104],[91.37677,23.99059],[91.37851,23.98857],[91.37658,23.9883],[91.3762,23.98671],[91.378,23.98542],[91.37737,23.98266],[91.38015,23.98247],[91.37775,23.98012],[91.37966,23.97901],[91.37953,23.97533],[91.37363,23.97523],[91.36277,23.98315],[91.36166,23.98626],[91.3528,23.98169],[91.34754,23.98421],[91.34122,23.98199],[91.33741,23.98441],[91.33381,23.99063],[91.33006,23.99247],[91.3269,23.99154],[91.3236,23.99448],[91.31493,23.99041],[91.3052,23.99525],[91.30364,23.99791],[91.30146,23.99374],[91.30357,23.98783],[91.29732,23.9763],[91.29979,23.97212],[91.29042,23.96776],[91.28768,23.96801],[91.28775,23.9739],[91.28468,23.97727],[91.28625,23.98193],[91.28469,23.9821],[91.27152,23.9629],[91.26423,23.94422],[91.27291,23.93764],[91.27621,23.92253],[91.27172,23.92465],[91.26395,23.92498],[91.26177,23.92356],[91.25171,23.92607],[91.23302,23.92696],[91.24144,23.92269],[91.24618,23.91308],[91.24483,23.90694],[91.22847,23.89863],[91.22962,23.88059],[91.23183,23.87811],[91.23579,23.87753],[91.24087,23.8617],[91.24889,23.85081],[91.25411,23.83799],[91.23757,23.8136],[91.23376,23.81083],[91.23161,23.79818],[91.22642,23.79093],[91.22852,23.78879],[91.22837,23.78557],[91.23053,23.7844],[91.23068,23.76492],[91.22522,23.75653],[91.22636,23.75114],[91.2215,23.74309],[91.23092,23.73631],[91.23074,23.73471],[91.23359,23.73215],[91.23925,23.73878],[91.2438,23.73901],[91.24768,23.73631],[91.24999,23.73004],[91.26553,23.73411],[91.26843,23.73243],[91.26983,23.72912],[91.28388,23.72685],[91.28861,23.73833],[91.29316,23.7389],[91.30225,23.73468],[91.30581,23.72921],[91.31524,23.72589],[91.31657,23.72687],[91.31755,23.74112],[91.31658,23.75285],[91.31973,23.75789],[91.32382,23.75916],[91.33156,23.75836],[91.36029,23.74047],[91.36666,23.7405],[91.37437,23.74513],[91.38659,23.74519],[91.38784,23.74779],[91.3872,23.7644],[91.37972,23.7692],[91.38433,23.77159],[91.39228,23.76625],[91.39653,23.76619],[91.40093,23.76386],[91.40961,23.76609],[91.43247,23.76452],[91.43559,23.76148],[91.43978,23.74715],[91.44298,23.745],[91.44934,23.74382],[91.45585,23.74615],[91.46645,23.74547],[91.4764,23.74113],[91.48139,23.74575],[91.48636,23.7427],[91.4933,23.7411],[91.49719,23.74732],[91.50099,23.7471],[91.50823,23.75164],[91.51688,23.75065],[91.51814,23.75585],[91.52081,23.75633],[91.5204,23.76207],[91.52648,23.76212],[91.5366,23.76852],[91.54139,23.76862],[91.54849,23.77961],[91.55188,23.78056],[91.55206,23.78557],[91.55772,23.78233],[91.56572,23.78709],[91.56751,23.7857],[91.56738,23.79084],[91.56611,23.79196],[91.5675,23.79376],[91.56595,23.79534],[91.5666,23.80296],[91.56409,23.80767],[91.56465,23.81215],[91.5629,23.81536],[91.56533,23.81973],[91.56241,23.82424],[91.55946,23.82517],[91.56285,23.83233],[91.55915,23.83734],[91.56226,23.8441],[91.56101,23.84664],[91.56398,23.85541],[91.56219,23.86184],[91.56366,23.86246],[91.56446,23.86983],[91.56036,23.87599],[91.55442,23.88023],[91.55407,23.88303],[91.55409,23.88764],[91.55726,23.88837],[91.55661,23.89654],[91.55822,23.90002],[91.55579,23.90064],[91.55385,23.91231],[91.54483,23.90558],[91.54442,23.90857],[91.53506,23.90758],[91.53237,23.90922],[91.52871,23.90845],[91.5272,23.91081],[91.53189,23.91888],[91.5327,23.92272],[91.53076,23.92348],[91.53208,23.92757],[91.53591,23.9299],[91.53133,23.93008],[91.53256,23.93323],[91.52729,23.93341],[91.52565,23.93496],[91.52691,23.93916],[91.52537,23.94269],[91.51945,23.94749],[91.51804,23.96236],[91.5159,23.96349],[91.51247,23.97126],[91.50618,23.9779],[91.50858,23.98695],[91.50392,23.98896],[91.50467,23.99034],[91.502,23.99465],[91.49953,23.99373],[91.49431,23.99895],[91.49649,24.00196],[91.49435,24.00421],[91.49622,24.00786],[91.49408,24.01615],[91.49146,24.01742],[91.49232,24.01923],[91.49025,24.02066],[91.4916,24.02601],[91.49264,24.02585],[91.48847,24.03232],[91.48709,24.03887],[91.48848,24.04062],[91.48658,24.04215],[91.48755,24.04535],[91.48617,24.05104],[91.48911,24.05396],[91.48065,24.06183],[91.48084,24.06472],[91.4778,24.06695],[91.47775,24.07027],[91.47308,24.07611],[91.48066,24.07971],[91.47973,24.09353],[91.48489,24.09643],[91.4781,24.09803],[91.47581,24.10048],[91.4735,24.09978],[91.47316,24.10175],[91.4713,24.09878],[91.46547,24.09863],[91.46254,24.09607],[91.45842,24.09757],[91.45483,24.09656],[91.45427,24.09866],[91.45206,24.09829],[91.44959,24.10147],[91.44225,24.09732],[91.44055,24.10251],[91.43077,24.09993],[91.42999,24.10199],[91.42858,24.10179],[91.42941,24.10425],[91.42809,24.10845],[91.42563,24.10688],[91.41263,24.10993],[91.40198,24.10942]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"273","area_level":"District","area_name":"East Garo Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.72681,25.81354],[90.70443,25.82455],[90.68902,25.80347],[90.68517,25.80144],[90.68407,25.79594],[90.6866,25.78987],[90.68389,25.78222],[90.67982,25.78236],[90.68013,25.77918],[90.67783,25.77439],[90.66853,25.77714],[90.66537,25.77646],[90.66013,25.78125],[90.65526,25.77478],[90.64733,25.77852],[90.64038,25.7793],[90.63647,25.77226],[90.63519,25.76432],[90.62798,25.76162],[90.62441,25.75401],[90.61308,25.75341],[90.60944,25.75131],[90.60224,25.75172],[90.59826,25.75026],[90.59721,25.74337],[90.59898,25.74077],[90.59678,25.73972],[90.58635,25.74032],[90.5863,25.74545],[90.5801,25.74689],[90.57929,25.74941],[90.57636,25.75055],[90.57313,25.75983],[90.56868,25.76622],[90.56431,25.7792],[90.56255,25.77906],[90.55681,25.76999],[90.55165,25.77074],[90.54969,25.76893],[90.54503,25.77272],[90.54729,25.77908],[90.54412,25.77914],[90.53332,25.76922],[90.53133,25.76176],[90.52539,25.75657],[90.52318,25.75032],[90.51189,25.73313],[90.5114,25.72963],[90.50804,25.72726],[90.50141,25.71272],[90.49904,25.71579],[90.49538,25.71439],[90.49361,25.71554],[90.48709,25.70837],[90.49176,25.6999],[90.48801,25.6943],[90.48906,25.68933],[90.48635,25.68376],[90.48813,25.67704],[90.48473,25.67878],[90.48157,25.67598],[90.47543,25.68171],[90.47196,25.67984],[90.46618,25.6827],[90.45727,25.68249],[90.45528,25.68923],[90.45719,25.69287],[90.45465,25.69702],[90.45035,25.69579],[90.4464,25.69813],[90.44526,25.69517],[90.43946,25.69534],[90.43731,25.69909],[90.43313,25.69984],[90.41977,25.7088],[90.41847,25.71529],[90.41942,25.71744],[90.42335,25.71885],[90.42318,25.72166],[90.42083,25.72215],[90.42097,25.72449],[90.41662,25.72925],[90.40958,25.73043],[90.39982,25.73648],[90.39849,25.73104],[90.40449,25.72674],[90.40668,25.72215],[90.40546,25.70903],[90.4086,25.70386],[90.41114,25.70268],[90.41026,25.70101],[90.41365,25.69602],[90.41151,25.68437],[90.40853,25.68117],[90.40737,25.67382],[90.41201,25.66652],[90.41381,25.65702],[90.41259,25.65403],[90.40372,25.6539],[90.40062,25.64999],[90.39747,25.64911],[90.392,25.64197],[90.39814,25.63093],[90.39605,25.627],[90.39033,25.6243],[90.38757,25.6208],[90.39113,25.61429],[90.38505,25.59856],[90.38518,25.59282],[90.38192,25.58729],[90.38621,25.57891],[90.38434,25.57484],[90.38529,25.57228],[90.383,25.56933],[90.38346,25.56537],[90.38545,25.56109],[90.38959,25.55955],[90.39149,25.55669],[90.3876,25.55245],[90.39023,25.54984],[90.39037,25.54732],[90.38723,25.53757],[90.38032,25.53591],[90.37444,25.53086],[90.37357,25.52826],[90.37613,25.52422],[90.37082,25.52351],[90.36903,25.51997],[90.36091,25.51713],[90.35916,25.52093],[90.35661,25.5211],[90.34313,25.50866],[90.33698,25.50038],[90.33432,25.49236],[90.33071,25.49168],[90.32551,25.48587],[90.32089,25.47664],[90.31833,25.47536],[90.31584,25.47104],[90.32042,25.46209],[90.32549,25.46114],[90.33196,25.45667],[90.34368,25.4571],[90.349,25.46083],[90.36024,25.457],[90.38011,25.45908],[90.38664,25.45603],[90.40358,25.4604],[90.40954,25.45465],[90.41693,25.45969],[90.44149,25.46102],[90.44691,25.45823],[90.46178,25.45489],[90.46443,25.45284],[90.47283,25.45155],[90.47789,25.44841],[90.48101,25.44934],[90.49331,25.44408],[90.4993,25.44345],[90.50568,25.43855],[90.51008,25.43275],[90.5167,25.42989],[90.53435,25.43131],[90.53661,25.42953],[90.54843,25.42684],[90.54969,25.42508],[90.55356,25.42845],[90.56075,25.42678],[90.56466,25.42768],[90.56942,25.42508],[90.5719,25.42639],[90.59011,25.42518],[90.59839,25.42093],[90.60001,25.42258],[90.60835,25.42324],[90.62013,25.42058],[90.6224,25.41831],[90.62344,25.42068],[90.63966,25.4154],[90.6446,25.41604],[90.65554,25.43813],[90.65837,25.44883],[90.66146,25.45106],[90.66135,25.45524],[90.66554,25.45551],[90.66816,25.46093],[90.67336,25.46491],[90.67597,25.47277],[90.67901,25.47552],[90.67834,25.47995],[90.6817,25.4845],[90.68867,25.4914],[90.7062,25.49264],[90.71089,25.50666],[90.72321,25.521],[90.72968,25.53139],[90.74484,25.54397],[90.76142,25.55035],[90.76655,25.55432],[90.76658,25.56205],[90.77202,25.56829],[90.77303,25.57412],[90.77905,25.58561],[90.78419,25.58287],[90.78975,25.57238],[90.79296,25.57268],[90.79436,25.57775],[90.79988,25.58178],[90.80173,25.58639],[90.80849,25.584],[90.81029,25.57858],[90.81248,25.57712],[90.81671,25.57922],[90.81754,25.58611],[90.82999,25.59008],[90.83784,25.58822],[90.84342,25.59107],[90.84921,25.59072],[90.86242,25.60058],[90.87219,25.60373],[90.87982,25.61095],[90.88013,25.61952],[90.88514,25.62377],[90.88859,25.62937],[90.89424,25.63584],[90.90825,25.64084],[90.91227,25.6543],[90.91773,25.65715],[90.92697,25.66879],[90.93127,25.67701],[90.95164,25.69481],[90.95476,25.71077],[90.96311,25.72126],[90.97012,25.72616],[90.97583,25.73803],[90.98252,25.74443],[90.97917,25.74871],[90.97144,25.75293],[90.96172,25.7499],[90.95239,25.75498],[90.94833,25.75262],[90.94357,25.75296],[90.94144,25.75647],[90.94079,25.76379],[90.94416,25.77038],[90.94288,25.77089],[90.93853,25.76965],[90.93426,25.76361],[90.93146,25.76458],[90.93043,25.76163],[90.92555,25.76081],[90.92475,25.7586],[90.92226,25.75813],[90.9212,25.75505],[90.91035,25.74649],[90.90603,25.74542],[90.90472,25.7468],[90.90219,25.74524],[90.89416,25.73581],[90.89032,25.72626],[90.88479,25.71893],[90.85269,25.71775],[90.84904,25.72476],[90.84382,25.72572],[90.84401,25.73004],[90.83836,25.73251],[90.84003,25.73474],[90.84681,25.73528],[90.85735,25.74409],[90.854,25.75666],[90.81359,25.764],[90.81413,25.77056],[90.81288,25.77408],[90.81407,25.77651],[90.81333,25.77916],[90.8112,25.77955],[90.81053,25.78567],[90.80932,25.78566],[90.81029,25.79044],[90.80776,25.79562],[90.80599,25.796],[90.80668,25.80062],[90.80555,25.80083],[90.80518,25.80496],[90.80288,25.80227],[90.80102,25.80376],[90.79888,25.80108],[90.79686,25.80439],[90.79734,25.80703],[90.79961,25.80727],[90.79874,25.80871],[90.79061,25.80756],[90.73565,25.80902],[90.72681,25.81354]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"274","area_level":"District","area_name":"East Khasi Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.15243,25.6698],[92.15819,25.67075],[92.15455,25.67303],[92.15008,25.66961],[92.14354,25.67021],[92.139,25.67351],[92.13145,25.66449],[92.1196,25.65621],[92.11981,25.6519],[92.11381,25.64609],[92.10317,25.64489],[92.09322,25.63948],[92.08141,25.63719],[92.07943,25.64005],[92.07734,25.63968],[92.07214,25.64324],[92.07211,25.64589],[92.06877,25.64642],[92.06122,25.65513],[92.05576,25.65372],[92.05236,25.6551],[92.04928,25.65317],[92.04862,25.65448],[92.04075,25.65541],[92.03479,25.65343],[92.03302,25.65613],[92.02762,25.6565],[92.02204,25.65939],[92.0183,25.66326],[92.01517,25.65878],[92.01071,25.6602],[92.00664,25.65362],[92.00807,25.65198],[92.00501,25.6551],[92.00315,25.65143],[92.00082,25.65175],[92.00229,25.64842],[92.00152,25.64577],[91.99554,25.65032],[91.98889,25.64748],[91.98291,25.65176],[91.98055,25.64757],[91.97377,25.6472],[91.9594,25.65426],[91.94813,25.64987],[91.93911,25.64967],[91.93174,25.65307],[91.92546,25.66471],[91.92102,25.66605],[91.91365,25.66148],[91.89852,25.65858],[91.89679,25.6535],[91.893,25.65152],[91.89093,25.64611],[91.8863,25.64147],[91.87036,25.63885],[91.86728,25.63513],[91.85758,25.62935],[91.85392,25.63178],[91.85547,25.63182],[91.85938,25.63669],[91.86133,25.64163],[91.85907,25.64652],[91.85595,25.6459],[91.84843,25.65054],[91.84479,25.64805],[91.84076,25.64785],[91.83798,25.64432],[91.83279,25.6461],[91.82929,25.65374],[91.83057,25.65635],[91.82728,25.66928],[91.81345,25.66473],[91.81259,25.66209],[91.80823,25.65866],[91.80877,25.65567],[91.81131,25.65321],[91.80739,25.63534],[91.79895,25.62769],[91.79815,25.62424],[91.79774,25.61894],[91.80025,25.61383],[91.79983,25.60951],[91.78098,25.58959],[91.77402,25.58869],[91.77113,25.58539],[91.73955,25.57368],[91.73321,25.57513],[91.73226,25.56661],[91.7295,25.56331],[91.72334,25.56425],[91.72053,25.56055],[91.71484,25.55879],[91.71317,25.55325],[91.69873,25.54614],[91.6961,25.54265],[91.70022,25.53342],[91.68908,25.52592],[91.681,25.52321],[91.67018,25.522],[91.66458,25.52633],[91.65861,25.52796],[91.65762,25.54096],[91.65379,25.55187],[91.63388,25.54886],[91.62919,25.54128],[91.62275,25.53808],[91.62071,25.54064],[91.61304,25.54192],[91.60676,25.5364],[91.5817,25.52062],[91.54877,25.5145],[91.54724,25.51051],[91.54172,25.5111],[91.54357,25.50295],[91.54121,25.49855],[91.54174,25.49585],[91.54593,25.49387],[91.54914,25.48906],[91.5495,25.47708],[91.55618,25.45278],[91.55668,25.44502],[91.55416,25.43861],[91.55647,25.43517],[91.55595,25.42884],[91.54879,25.42314],[91.54649,25.41932],[91.54667,25.41322],[91.54077,25.40092],[91.54076,25.38917],[91.53757,25.37925],[91.53913,25.37379],[91.52969,25.35633],[91.52515,25.35393],[91.52438,25.34887],[91.52506,25.34432],[91.52943,25.3428],[91.53949,25.33523],[91.54613,25.33389],[91.54978,25.33017],[91.54842,25.32631],[91.55233,25.32036],[91.54906,25.31221],[91.55248,25.30464],[91.54789,25.28688],[91.54367,25.27941],[91.53258,25.27639],[91.52755,25.28009],[91.52232,25.27862],[91.49588,25.28329],[91.48897,25.27887],[91.48449,25.2649],[91.47888,25.26336],[91.47368,25.26545],[91.47232,25.26941],[91.46744,25.27116],[91.46215,25.26852],[91.45012,25.27199],[91.4383,25.27293],[91.42281,25.26186],[91.41223,25.26493],[91.40265,25.26358],[91.39456,25.25131],[91.38741,25.24584],[91.38547,25.23949],[91.3755,25.24372],[91.3711,25.2427],[91.36511,25.23464],[91.35439,25.23408],[91.35381,25.22907],[91.36304,25.20521],[91.37981,25.17674],[91.38819,25.17024],[91.38692,25.16969],[91.38819,25.16775],[91.39865,25.16446],[91.40677,25.16611],[91.41087,25.16366],[91.41286,25.16733],[91.41214,25.16942],[91.41465,25.17113],[91.42261,25.16219],[91.42512,25.15699],[91.43268,25.1568],[91.43718,25.15412],[91.44058,25.14963],[91.44335,25.15069],[91.4496,25.14916],[91.4508,25.15204],[91.45314,25.1526],[91.45702,25.14824],[91.46109,25.15122],[91.46863,25.15179],[91.46951,25.15082],[91.467,25.14379],[91.47045,25.13971],[91.46526,25.13719],[91.46423,25.13481],[91.47438,25.13342],[91.47908,25.13424],[91.47979,25.1353],[91.47801,25.13647],[91.48013,25.13692],[91.48929,25.1351],[91.49195,25.13886],[91.49368,25.13854],[91.49251,25.13687],[91.4996,25.13542],[91.50163,25.14005],[91.50105,25.14306],[91.50955,25.14745],[91.51706,25.14777],[91.5265,25.1445],[91.55721,25.14976],[91.55812,25.15551],[91.56307,25.16064],[91.56695,25.15931],[91.57131,25.1609],[91.57658,25.15982],[91.57157,25.16527],[91.57706,25.17196],[91.58917,25.17167],[91.59207,25.17434],[91.60551,25.17364],[91.60973,25.17705],[91.61518,25.17472],[91.61543,25.16966],[91.60861,25.16983],[91.60406,25.16745],[91.59998,25.1596],[91.60363,25.15901],[91.60264,25.15488],[91.59941,25.15107],[91.60209,25.14272],[91.60377,25.14018],[91.60704,25.14474],[91.61112,25.14627],[91.61226,25.14097],[91.61545,25.14511],[91.62151,25.14341],[91.6232,25.12788],[91.62699,25.12543],[91.63791,25.12254],[91.64206,25.12307],[91.64544,25.12721],[91.65179,25.12745],[91.65277,25.1312],[91.65888,25.13148],[91.66002,25.12704],[91.66503,25.12843],[91.66401,25.13523],[91.66994,25.1379],[91.67564,25.13805],[91.6807,25.13498],[91.68629,25.13773],[91.6918,25.13712],[91.69423,25.14038],[91.69443,25.14548],[91.6988,25.14618],[91.70103,25.15058],[91.70223,25.14893],[91.70355,25.14949],[91.70322,25.15347],[91.7005,25.15573],[91.70378,25.16002],[91.7055,25.15692],[91.70834,25.15909],[91.71434,25.15763],[91.71655,25.15233],[91.73297,25.15022],[91.73176,25.14817],[91.73274,25.14781],[91.73549,25.14973],[91.73637,25.1434],[91.74764,25.14015],[91.74247,25.1446],[91.74407,25.14656],[91.74468,25.15316],[91.74864,25.15618],[91.74983,25.15922],[91.74469,25.16985],[91.74733,25.17399],[91.75526,25.17738],[91.75644,25.17659],[91.75489,25.17176],[91.75856,25.16837],[91.76354,25.16629],[91.76634,25.16748],[91.77461,25.16313],[91.78837,25.16742],[91.79725,25.16881],[91.80636,25.1682],[91.80707,25.16973],[91.80387,25.17018],[91.80421,25.17177],[91.81765,25.17121],[91.82304,25.17679],[91.8266,25.1762],[91.82704,25.1778],[91.84079,25.1769],[91.8556,25.17249],[91.86152,25.17245],[91.86441,25.17529],[91.87091,25.17431],[91.87598,25.17744],[91.87615,25.17558],[91.88063,25.17292],[91.88449,25.1771],[91.89248,25.17594],[91.8947,25.17624],[91.89388,25.17835],[91.89739,25.17807],[91.89851,25.18008],[91.90742,25.17931],[91.91626,25.18135],[91.93232,25.17942],[91.93289,25.18051],[91.93413,25.17808],[91.96682,25.17638],[91.97167,25.16758],[91.9834,25.17095],[92.00151,25.18546],[92.01638,25.1872],[92.02117,25.19306],[92.02117,25.20185],[92.00751,25.20853],[91.99699,25.22325],[91.99526,25.23109],[91.98495,25.24555],[91.98518,25.25091],[91.98212,25.25608],[91.98586,25.27526],[91.99922,25.28887],[92.00432,25.29697],[92.00842,25.30051],[92.01406,25.30186],[92.02061,25.30934],[92.03083,25.3109],[92.03212,25.31335],[92.03651,25.3145],[92.03924,25.31736],[92.04789,25.31981],[92.05161,25.31898],[92.05368,25.31545],[92.0562,25.31455],[92.0673,25.31786],[92.08519,25.30853],[92.09382,25.31263],[92.09952,25.3062],[92.10875,25.3038],[92.11316,25.3075],[92.11471,25.31876],[92.11999,25.3291],[92.11946,25.33077],[92.11529,25.3322],[92.11244,25.3377],[92.11315,25.34612],[92.10885,25.35182],[92.11131,25.36086],[92.11046,25.3718],[92.11163,25.37902],[92.10214,25.39543],[92.10206,25.39721],[92.1106,25.40316],[92.11271,25.41075],[92.10777,25.42578],[92.10277,25.43246],[92.10315,25.44099],[92.09647,25.45081],[92.09662,25.45335],[92.10956,25.46604],[92.11006,25.47048],[92.10594,25.48115],[92.09818,25.48622],[92.0962,25.49277],[92.09862,25.50012],[92.10105,25.50269],[92.09983,25.51311],[92.10542,25.51947],[92.11343,25.5428],[92.11058,25.54806],[92.10695,25.55089],[92.10667,25.5616],[92.11369,25.57461],[92.12053,25.58231],[92.12091,25.59089],[92.12201,25.59425],[92.12488,25.5966],[92.12099,25.60357],[92.13926,25.62589],[92.13568,25.62884],[92.13603,25.63506],[92.13311,25.64113],[92.14115,25.63963],[92.14724,25.64253],[92.14961,25.64925],[92.15377,25.64567],[92.15557,25.6476],[92.15551,25.65198],[92.15055,25.66407],[92.15243,25.6698]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"275","area_level":"District","area_name":"West Jaintia Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.38296,25.74801],[92.38543,25.75051],[92.38432,25.75446],[92.37869,25.74839],[92.37306,25.75017],[92.3686,25.74688],[92.36427,25.73735],[92.36093,25.73665],[92.35324,25.73975],[92.34583,25.72918],[92.33351,25.72412],[92.32416,25.72472],[92.31695,25.72242],[92.31134,25.72789],[92.30213,25.72086],[92.29715,25.71998],[92.29301,25.71645],[92.27715,25.71547],[92.27128,25.71126],[92.26506,25.70915],[92.25485,25.7126],[92.25114,25.71082],[92.24734,25.71314],[92.23876,25.7106],[92.23445,25.70758],[92.23286,25.70886],[92.23168,25.71594],[92.22447,25.71587],[92.22113,25.71327],[92.21685,25.70481],[92.20986,25.69917],[92.20809,25.69557],[92.20081,25.69227],[92.19662,25.68642],[92.18775,25.68408],[92.17997,25.67807],[92.17748,25.67431],[92.17343,25.67414],[92.1702,25.66713],[92.16486,25.66663],[92.15819,25.67075],[92.15243,25.6698],[92.15055,25.66407],[92.15551,25.65198],[92.15557,25.6476],[92.15377,25.64567],[92.14961,25.64925],[92.14724,25.64253],[92.14115,25.63963],[92.13311,25.64113],[92.13603,25.63506],[92.13568,25.62884],[92.13926,25.62589],[92.12099,25.60357],[92.12488,25.5966],[92.12201,25.59425],[92.12091,25.59089],[92.12053,25.58231],[92.11369,25.57461],[92.10667,25.5616],[92.10695,25.55089],[92.11058,25.54806],[92.11343,25.5428],[92.10542,25.51947],[92.09983,25.51311],[92.10105,25.50269],[92.09862,25.50012],[92.0962,25.49277],[92.09818,25.48622],[92.10594,25.48115],[92.11006,25.47048],[92.10956,25.46604],[92.09662,25.45335],[92.09647,25.45081],[92.10315,25.44099],[92.10277,25.43246],[92.10777,25.42578],[92.11271,25.41075],[92.1106,25.40316],[92.10206,25.39721],[92.10214,25.39543],[92.11163,25.37902],[92.11046,25.3718],[92.11131,25.36086],[92.10885,25.35182],[92.11315,25.34612],[92.11244,25.3377],[92.11529,25.3322],[92.11946,25.33077],[92.11999,25.3291],[92.11471,25.31876],[92.11316,25.3075],[92.10875,25.3038],[92.09952,25.3062],[92.09382,25.31263],[92.08519,25.30853],[92.0673,25.31786],[92.0562,25.31455],[92.05368,25.31545],[92.05161,25.31898],[92.04789,25.31981],[92.03924,25.31736],[92.03651,25.3145],[92.03212,25.31335],[92.03083,25.3109],[92.02061,25.30934],[92.01406,25.30186],[92.00842,25.30051],[92.00432,25.29697],[91.99922,25.28887],[91.98586,25.27526],[91.98212,25.25608],[91.98518,25.25091],[91.98495,25.24555],[91.99526,25.23109],[91.99699,25.22325],[92.00751,25.20853],[92.02117,25.20185],[92.02117,25.19306],[92.01602,25.18831],[92.01845,25.1827],[92.02619,25.17917],[92.02805,25.18349],[92.03743,25.18198],[92.03899,25.18231],[92.04055,25.18637],[92.04934,25.18538],[92.04938,25.18696],[92.05432,25.18644],[92.05543,25.18426],[92.05601,25.18542],[92.07385,25.18495],[92.07885,25.18096],[92.08323,25.18227],[92.0923,25.17754],[92.10445,25.17463],[92.10526,25.17259],[92.10772,25.1726],[92.10905,25.17035],[92.11795,25.16656],[92.12044,25.16383],[92.13288,25.16015],[92.13286,25.15634],[92.13974,25.15376],[92.13791,25.15189],[92.13408,25.15266],[92.1356,25.15151],[92.13389,25.14833],[92.13519,25.1456],[92.1344,25.14278],[92.14457,25.13966],[92.13955,25.13985],[92.13956,25.14094],[92.13584,25.13874],[92.14736,25.13525],[92.15084,25.13823],[92.15319,25.13621],[92.1527,25.13368],[92.15557,25.13322],[92.16256,25.13621],[92.16568,25.13596],[92.16296,25.1334],[92.15887,25.13299],[92.15945,25.13002],[92.1649,25.13046],[92.15959,25.1266],[92.16479,25.12539],[92.17092,25.12858],[92.17261,25.12675],[92.17624,25.12632],[92.17682,25.12385],[92.17889,25.12613],[92.17936,25.12401],[92.17673,25.12286],[92.18393,25.11792],[92.18863,25.12782],[92.18907,25.13215],[92.1876,25.13264],[92.18933,25.13629],[92.19323,25.13341],[92.1947,25.13012],[92.20444,25.12902],[92.20684,25.1314],[92.20685,25.14173],[92.21124,25.14363],[92.21274,25.1473],[92.21239,25.15006],[92.20814,25.15314],[92.20788,25.15731],[92.21522,25.15855],[92.22228,25.15343],[92.22555,25.15423],[92.22578,25.16864],[92.23381,25.17614],[92.2309,25.1849],[92.23854,25.18892],[92.23709,25.19876],[92.23193,25.20371],[92.23617,25.21091],[92.23405,25.2124],[92.22842,25.21239],[92.22879,25.21702],[92.22643,25.22194],[92.21455,25.23],[92.20931,25.22733],[92.20647,25.22756],[92.20436,25.23365],[92.20527,25.24601],[92.20024,25.25383],[92.20162,25.25832],[92.19808,25.26645],[92.1975,25.2745],[92.20142,25.28362],[92.19863,25.28666],[92.19942,25.29175],[92.18962,25.29974],[92.19302,25.30555],[92.19044,25.30852],[92.18722,25.30897],[92.18597,25.31393],[92.18301,25.31601],[92.17701,25.32606],[92.17606,25.32958],[92.17773,25.33272],[92.17178,25.33586],[92.17132,25.34136],[92.17364,25.34628],[92.17251,25.34852],[92.17423,25.35414],[92.18346,25.35886],[92.18693,25.3587],[92.1911,25.36333],[92.19698,25.36361],[92.19971,25.36586],[92.20385,25.36532],[92.20688,25.36799],[92.2206,25.37141],[92.22467,25.37411],[92.22878,25.3727],[92.23431,25.37927],[92.24457,25.38115],[92.24636,25.38772],[92.2516,25.39217],[92.25507,25.40537],[92.25995,25.40649],[92.25993,25.4105],[92.2564,25.41644],[92.26433,25.42573],[92.26232,25.43789],[92.25964,25.43995],[92.26257,25.4456],[92.26049,25.44982],[92.29035,25.45323],[92.35091,25.43676],[92.41761,25.43595],[92.41981,25.43786],[92.43044,25.43739],[92.448,25.44191],[92.46236,25.43906],[92.4766,25.44274],[92.47806,25.44478],[92.48723,25.44292],[92.49872,25.44435],[92.50201,25.4421],[92.5049,25.45949],[92.50736,25.46071],[92.50758,25.46272],[92.51389,25.46605],[92.52374,25.46444],[92.52877,25.46195],[92.53253,25.46315],[92.53651,25.45745],[92.53666,25.45292],[92.54327,25.45066],[92.54499,25.45733],[92.54816,25.45992],[92.56218,25.4552],[92.5679,25.45632],[92.56645,25.46343],[92.56467,25.46548],[92.56436,25.47361],[92.57365,25.49048],[92.59109,25.50115],[92.5973,25.50246],[92.5999,25.50635],[92.60908,25.51181],[92.6202,25.51606],[92.62769,25.52197],[92.63191,25.52774],[92.63776,25.53024],[92.64284,25.53481],[92.64206,25.54158],[92.64542,25.55574],[92.65679,25.56085],[92.65748,25.56975],[92.66146,25.57219],[92.65831,25.57406],[92.65865,25.57813],[92.65338,25.59061],[92.64947,25.5922],[92.64171,25.58851],[92.63431,25.5813],[92.63017,25.57167],[92.62205,25.56515],[92.60246,25.56222],[92.60141,25.55723],[92.59729,25.5531],[92.59482,25.55159],[92.58913,25.55251],[92.58407,25.55045],[92.58236,25.55763],[92.57542,25.55851],[92.57249,25.55735],[92.55673,25.57096],[92.55622,25.57665],[92.55877,25.58012],[92.55494,25.58457],[92.55432,25.5883],[92.55467,25.59533],[92.55659,25.59648],[92.55332,25.59739],[92.55439,25.59957],[92.55217,25.60254],[92.55548,25.60178],[92.55673,25.61141],[92.5541,25.61303],[92.55417,25.6148],[92.53922,25.61158],[92.53886,25.61358],[92.53585,25.61315],[92.53338,25.61495],[92.51643,25.61506],[92.51507,25.61834],[92.50948,25.61559],[92.50563,25.61631],[92.50609,25.6214],[92.4972,25.62439],[92.47033,25.67515],[92.46797,25.67552],[92.46327,25.68101],[92.45532,25.68492],[92.45031,25.68529],[92.44065,25.6916],[92.43789,25.7058],[92.44036,25.70824],[92.44399,25.70736],[92.4477,25.70901],[92.44429,25.7197],[92.43294,25.72696],[92.43118,25.73218],[92.42205,25.7299],[92.41165,25.73003],[92.40912,25.73375],[92.41458,25.73996],[92.41384,25.74194],[92.40718,25.74187],[92.40803,25.74349],[92.40622,25.74467],[92.39766,25.74045],[92.38784,25.74415],[92.38209,25.74192],[92.38296,25.74801]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"276","area_level":"District","area_name":"Ri Bhoi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.17613,26.07795],[92.16915,26.07755],[92.15471,26.06715],[92.15268,26.06714],[92.14514,26.05972],[92.14339,26.05604],[92.13754,26.05504],[92.13421,26.05245],[92.13262,26.04424],[92.12821,26.04568],[92.1214,26.04388],[92.1199,26.04596],[92.1088,26.05068],[92.09729,26.04922],[92.07791,26.04229],[92.06679,26.03508],[92.05796,26.03482],[92.05143,26.03279],[92.04814,26.03277],[92.04069,26.03651],[92.03633,26.03621],[92.0344,26.03892],[92.03062,26.03958],[92.02404,26.03781],[92.01845,26.03919],[92.0165,26.03705],[92.01327,26.03844],[92.01044,26.03665],[92.00622,26.03855],[92.00411,26.03557],[91.99922,26.03579],[91.99476,26.03849],[91.98906,26.03853],[91.98546,26.03103],[91.98617,26.02898],[91.98357,26.0258],[91.97897,26.02748],[91.97317,26.02211],[91.96195,26.02026],[91.96191,26.01892],[91.95137,26.01466],[91.9478,26.01529],[91.94718,26.01317],[91.93397,26.01027],[91.93115,26.01236],[91.92827,26.00236],[91.92496,25.99939],[91.91898,25.99783],[91.9144,25.9988],[91.91228,26.00492],[91.91417,26.0072],[91.91059,26.00737],[91.90976,26.00877],[91.91332,26.0094],[91.90975,26.01267],[91.91479,26.01399],[91.91299,26.01471],[91.91469,26.0205],[91.90851,26.02097],[91.90518,26.02387],[91.9023,26.02237],[91.89783,26.0234],[91.88874,26.02787],[91.8858,26.02804],[91.88304,26.0261],[91.87893,26.03115],[91.87916,26.03437],[91.87517,26.03511],[91.8762,26.03641],[91.8731,26.03881],[91.87475,26.04302],[91.87202,26.04462],[91.87095,26.04271],[91.8673,26.04202],[91.87192,26.05096],[91.87028,26.05451],[91.87265,26.06791],[91.87661,26.07667],[91.87845,26.08978],[91.87687,26.09165],[91.87964,26.09604],[91.87917,26.09798],[91.87364,26.10063],[91.86576,26.10042],[91.86393,26.10263],[91.86072,26.10289],[91.85101,26.1084],[91.84828,26.10807],[91.83736,26.11224],[91.83085,26.11844],[91.8254,26.11941],[91.82023,26.11641],[91.82023,26.11255],[91.81702,26.11115],[91.81014,26.10329],[91.80904,26.09779],[91.80562,26.09912],[91.80292,26.09526],[91.80035,26.10004],[91.79136,26.08523],[91.78586,26.08401],[91.78332,26.08809],[91.77728,26.08935],[91.763,26.07461],[91.76273,26.07235],[91.75707,26.07036],[91.75554,26.06793],[91.74315,26.0653],[91.74291,26.06303],[91.73106,26.05893],[91.73072,26.05758],[91.73349,26.05623],[91.7369,26.05625],[91.73471,26.05363],[91.73519,26.05132],[91.73298,26.05088],[91.7337,26.0492],[91.72535,26.04618],[91.72303,26.03513],[91.72504,26.0202],[91.72156,26.01219],[91.72172,26.0015],[91.71962,25.9929],[91.72153,25.98833],[91.72007,25.98177],[91.72111,25.96855],[91.71978,25.96583],[91.72252,25.96572],[91.72024,25.96085],[91.72011,25.9536],[91.71333,25.94573],[91.71348,25.94405],[91.7024,25.94127],[91.70113,25.93563],[91.69893,25.93501],[91.68943,25.92462],[91.68808,25.92021],[91.67884,25.91625],[91.6706,25.90415],[91.66342,25.90776],[91.65149,25.90628],[91.6365,25.92133],[91.63221,25.92179],[91.63056,25.92483],[91.62525,25.92608],[91.62432,25.92957],[91.62139,25.93222],[91.60947,25.93739],[91.61188,25.94503],[91.62289,25.94479],[91.62616,25.94219],[91.62982,25.94325],[91.6294,25.94715],[91.63436,25.96051],[91.64071,25.96376],[91.62825,25.97615],[91.62853,25.98244],[91.62606,25.98668],[91.62624,25.98887],[91.63023,25.99013],[91.62816,26.00074],[91.63135,26.0075],[91.63324,26.00849],[91.63275,26.01114],[91.6349,26.01214],[91.6316,26.01472],[91.63267,26.01655],[91.63118,26.01775],[91.6324,26.01902],[91.6311,26.02197],[91.62635,26.02213],[91.61953,26.02596],[91.60023,26.02161],[91.59753,26.01807],[91.59389,26.01978],[91.59407,26.02168],[91.58872,26.02956],[91.5801,26.03334],[91.57073,26.02568],[91.56919,26.01844],[91.57217,26.01536],[91.56363,26.00749],[91.56507,26.00201],[91.5606,26.00092],[91.55745,25.99274],[91.5517,25.98503],[91.55125,25.9766],[91.54673,25.97511],[91.5447,25.97591],[91.54272,25.97317],[91.53836,25.97141],[91.5354,25.96673],[91.53562,25.9623],[91.53036,25.96307],[91.52865,25.96064],[91.5253,25.96163],[91.52217,25.95947],[91.51808,25.95973],[91.51658,25.95571],[91.51982,25.93988],[91.51515,25.94123],[91.51381,25.93289],[91.50796,25.93228],[91.50675,25.92842],[91.50325,25.92683],[91.50177,25.92429],[91.50124,25.91886],[91.50447,25.91672],[91.50318,25.91415],[91.50467,25.91139],[91.50955,25.91721],[91.51299,25.91678],[91.51791,25.91966],[91.52276,25.92531],[91.53255,25.92989],[91.53658,25.93577],[91.53695,25.93121],[91.53302,25.92657],[91.52097,25.91906],[91.52057,25.91681],[91.50488,25.90777],[91.50421,25.90288],[91.49874,25.89599],[91.5039,25.89117],[91.49943,25.89119],[91.49191,25.89585],[91.484,25.89304],[91.47837,25.88747],[91.47784,25.88048],[91.47481,25.87402],[91.47604,25.87252],[91.47538,25.86988],[91.4912,25.86594],[91.51142,25.86534],[91.51383,25.86622],[91.52131,25.87511],[91.52129,25.88346],[91.52555,25.89091],[91.52772,25.89085],[91.53299,25.88815],[91.53519,25.88388],[91.53043,25.88163],[91.53043,25.87125],[91.52795,25.87316],[91.52236,25.87285],[91.51372,25.86397],[91.50342,25.86425],[91.49737,25.86109],[91.49577,25.86382],[91.48366,25.86417],[91.4779,25.85727],[91.46947,25.85916],[91.46308,25.857],[91.46178,25.85434],[91.44861,25.845],[91.44838,25.84189],[91.44515,25.83974],[91.43583,25.84356],[91.42817,25.85264],[91.42247,25.85447],[91.41346,25.85356],[91.40617,25.85006],[91.40273,25.8514],[91.39314,25.84759],[91.38114,25.84563],[91.3729,25.84672],[91.37105,25.84262],[91.36583,25.84003],[91.35774,25.84149],[91.35309,25.83865],[91.34641,25.83996],[91.34227,25.83574],[91.34189,25.82462],[91.35954,25.80653],[91.36411,25.80663],[91.37158,25.80249],[91.38028,25.80089],[91.38882,25.80471],[91.39483,25.80511],[91.41821,25.80306],[91.41994,25.80107],[91.41903,25.79674],[91.42269,25.79315],[91.43774,25.79235],[91.44163,25.79515],[91.44573,25.79242],[91.45744,25.795],[91.45851,25.78844],[91.4672,25.78891],[91.47479,25.79157],[91.48001,25.79661],[91.49023,25.79658],[91.49654,25.79876],[91.50366,25.79778],[91.53136,25.80163],[91.53405,25.79882],[91.53741,25.79879],[91.54908,25.80596],[91.55699,25.80821],[91.58697,25.81189],[91.59427,25.80544],[91.59667,25.80528],[91.6,25.80985],[91.63166,25.8099],[91.64019,25.80645],[91.64238,25.80278],[91.64893,25.80853],[91.65646,25.81157],[91.65936,25.81435],[91.68687,25.80907],[91.69795,25.80465],[91.70429,25.8127],[91.70736,25.81986],[91.72392,25.82693],[91.73799,25.82886],[91.74962,25.82715],[91.77026,25.80869],[91.77918,25.79469],[91.78783,25.79071],[91.78839,25.7822],[91.77932,25.76631],[91.77915,25.76326],[91.77675,25.76256],[91.76536,25.74971],[91.76832,25.74327],[91.77238,25.74445],[91.77355,25.7398],[91.77997,25.73788],[91.78408,25.73888],[91.78311,25.73363],[91.78483,25.7318],[91.79104,25.73305],[91.79746,25.73137],[91.80828,25.73326],[91.81142,25.72926],[91.81228,25.72483],[91.81522,25.72082],[91.8133,25.70543],[91.8154,25.70319],[91.81997,25.70242],[91.82806,25.68865],[91.82623,25.67759],[91.82861,25.6738],[91.8272,25.66934],[91.83057,25.65635],[91.82929,25.65374],[91.83182,25.64698],[91.83798,25.64432],[91.84076,25.64785],[91.84479,25.64805],[91.84843,25.65054],[91.85595,25.6459],[91.85907,25.64652],[91.86133,25.64163],[91.85938,25.63669],[91.85408,25.63089],[91.85709,25.62935],[91.86006,25.63007],[91.87036,25.63885],[91.88596,25.64123],[91.89093,25.64611],[91.893,25.65152],[91.89679,25.6535],[91.89852,25.65858],[91.91365,25.66148],[91.92102,25.66605],[91.92546,25.66471],[91.93174,25.65307],[91.93911,25.64967],[91.94813,25.64987],[91.9594,25.65426],[91.97377,25.6472],[91.98055,25.64757],[91.98291,25.65176],[91.98889,25.64748],[91.99554,25.65032],[92.00152,25.64577],[92.00229,25.64842],[92.00082,25.65175],[92.00315,25.65143],[92.00501,25.6551],[92.00807,25.65198],[92.00664,25.65362],[92.01071,25.6602],[92.01517,25.65878],[92.0183,25.66326],[92.02204,25.65939],[92.02762,25.6565],[92.03302,25.65613],[92.03479,25.65343],[92.04075,25.65541],[92.04862,25.65448],[92.04928,25.65317],[92.05236,25.6551],[92.05576,25.65372],[92.06122,25.65513],[92.06877,25.64642],[92.07211,25.64589],[92.07214,25.64324],[92.07734,25.63968],[92.07943,25.64005],[92.08141,25.63719],[92.09266,25.63929],[92.10317,25.64489],[92.11409,25.64629],[92.11981,25.6519],[92.1196,25.65621],[92.13145,25.66449],[92.13856,25.67329],[92.14354,25.67021],[92.15008,25.66961],[92.15311,25.6728],[92.15616,25.6722],[92.1596,25.67624],[92.16053,25.68412],[92.15598,25.69167],[92.15684,25.69582],[92.15465,25.69788],[92.15478,25.70621],[92.15241,25.70861],[92.15083,25.70778],[92.14773,25.70946],[92.14425,25.71681],[92.14817,25.72527],[92.15445,25.72501],[92.16191,25.73663],[92.16271,25.74086],[92.16282,25.74387],[92.15556,25.75112],[92.15543,25.7574],[92.15025,25.76361],[92.15092,25.76655],[92.14782,25.77295],[92.15266,25.778],[92.14636,25.78412],[92.14996,25.79489],[92.1487,25.80594],[92.15258,25.81178],[92.1511,25.81664],[92.15575,25.81889],[92.15695,25.82158],[92.16023,25.81979],[92.16128,25.82059],[92.16235,25.82724],[92.16081,25.83061],[92.16417,25.83301],[92.16202,25.83554],[92.16623,25.83529],[92.16981,25.83886],[92.17301,25.84718],[92.17261,25.8499],[92.1775,25.8515],[92.17759,25.8581],[92.1801,25.85823],[92.1762,25.8682],[92.17724,25.87275],[92.18363,25.87688],[92.18755,25.8772],[92.19901,25.88899],[92.21498,25.8953],[92.2157,25.89995],[92.22085,25.90026],[92.22281,25.90639],[92.22556,25.90917],[92.21727,25.9115],[92.20443,25.90914],[92.20228,25.90633],[92.20105,25.90845],[92.19404,25.91167],[92.19633,25.91575],[92.19453,25.91846],[92.18947,25.91457],[92.18608,25.91663],[92.18173,25.91126],[92.17656,25.91042],[92.17757,25.90885],[92.17555,25.90737],[92.16242,25.91116],[92.15474,25.91099],[92.15461,25.91377],[92.15682,25.91463],[92.16093,25.92815],[92.15922,25.93322],[92.16015,25.93532],[92.15239,25.93976],[92.15273,25.94507],[92.1571,25.94919],[92.1573,25.95263],[92.16405,25.95781],[92.16152,25.96025],[92.16213,25.96656],[92.16421,25.97028],[92.16932,25.97338],[92.17441,25.9739],[92.17872,25.97742],[92.18088,25.98501],[92.18469,25.9858],[92.18846,25.98455],[92.19855,25.98822],[92.19631,25.99085],[92.19754,25.99456],[92.20101,25.99516],[92.20385,26.00122],[92.20915,25.99792],[92.2119,26.00455],[92.21911,26.00389],[92.22032,26.00569],[92.2248,26.00599],[92.22775,26.00856],[92.23387,26.00912],[92.23504,26.01223],[92.24452,26.01819],[92.24286,26.02039],[92.24373,26.02152],[92.24858,26.02338],[92.25329,26.029],[92.25681,26.0287],[92.26347,26.03313],[92.26508,26.0361],[92.26108,26.04164],[92.26901,26.04282],[92.27003,26.04745],[92.26814,26.05143],[92.26357,26.05431],[92.26395,26.05736],[92.26949,26.06057],[92.27061,26.06404],[92.27489,26.06565],[92.27166,26.06523],[92.26888,26.06817],[92.26746,26.06676],[92.26095,26.06614],[92.25832,26.06346],[92.25052,26.06453],[92.24163,26.06177],[92.22944,26.06462],[92.22859,26.0668],[92.22223,26.06809],[92.22054,26.0703],[92.21548,26.06841],[92.20817,26.07047],[92.20627,26.06963],[92.20651,26.06814],[92.20042,26.06962],[92.19265,26.06733],[92.19101,26.06884],[92.18716,26.06657],[92.18613,26.06765],[92.18734,26.0693],[92.18181,26.06906],[92.18029,26.07117],[92.17804,26.06855],[92.17608,26.07023],[92.17617,26.07429],[92.17924,26.07714],[92.17613,26.07795]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"277","area_level":"District","area_name":"South Garo Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.79191,25.48621],[90.79255,25.49069],[90.78937,25.4964],[90.79032,25.50783],[90.7812,25.52701],[90.7806,25.53586],[90.7775,25.54076],[90.76856,25.54385],[90.76455,25.5509],[90.76655,25.55432],[90.76142,25.55035],[90.74484,25.54397],[90.72968,25.53139],[90.72321,25.521],[90.71089,25.50666],[90.7062,25.49264],[90.68867,25.4914],[90.6817,25.4845],[90.67834,25.47995],[90.67901,25.47552],[90.67597,25.47277],[90.67336,25.46491],[90.66816,25.46093],[90.66554,25.45551],[90.66135,25.45524],[90.66146,25.45106],[90.65837,25.44883],[90.65554,25.43813],[90.6446,25.41604],[90.63966,25.4154],[90.62344,25.42068],[90.6224,25.41831],[90.62013,25.42058],[90.60835,25.42324],[90.60001,25.42258],[90.59839,25.42093],[90.59011,25.42518],[90.5719,25.42639],[90.56942,25.42508],[90.56466,25.42768],[90.56075,25.42678],[90.55356,25.42845],[90.54969,25.42508],[90.54843,25.42684],[90.53661,25.42953],[90.53435,25.43131],[90.5167,25.42989],[90.51008,25.43275],[90.50568,25.43855],[90.4993,25.44345],[90.49331,25.44408],[90.48101,25.44934],[90.47789,25.44841],[90.47283,25.45155],[90.46443,25.45284],[90.46178,25.45489],[90.44691,25.45823],[90.44149,25.46102],[90.41693,25.45969],[90.40954,25.45465],[90.40358,25.4604],[90.38664,25.45603],[90.38011,25.45908],[90.36024,25.457],[90.349,25.46083],[90.34425,25.45728],[90.33965,25.4573],[90.34494,25.43992],[90.34336,25.43428],[90.34416,25.42433],[90.34711,25.42014],[90.33975,25.4127],[90.33456,25.41122],[90.33569,25.40906],[90.33939,25.40951],[90.34182,25.40437],[90.33771,25.40384],[90.33822,25.39623],[90.33496,25.39383],[90.33499,25.39144],[90.3315,25.39008],[90.33621,25.38548],[90.3331,25.38072],[90.3407,25.37321],[90.34353,25.36374],[90.34113,25.36338],[90.33725,25.35797],[90.3296,25.35684],[90.3287,25.35264],[90.3259,25.35043],[90.31603,25.35185],[90.31396,25.34756],[90.31555,25.34616],[90.30855,25.34317],[90.30821,25.33398],[90.30458,25.3376],[90.29505,25.33666],[90.29239,25.33333],[90.29162,25.32919],[90.28781,25.3265],[90.29375,25.32327],[90.29335,25.32103],[90.28097,25.31955],[90.2868,25.31538],[90.28562,25.31327],[90.28214,25.31174],[90.27643,25.31407],[90.27027,25.31251],[90.27147,25.30811],[90.26758,25.30267],[90.26911,25.28833],[90.26659,25.28104],[90.27536,25.27805],[90.27686,25.27611],[90.27262,25.27486],[90.27273,25.2734],[90.28226,25.27006],[90.28514,25.26674],[90.28233,25.26514],[90.27817,25.26858],[90.27155,25.26263],[90.27002,25.25616],[90.27225,25.24847],[90.26663,25.24315],[90.2684,25.24004],[90.26732,25.23748],[90.25807,25.24068],[90.25497,25.24021],[90.25429,25.23838],[90.25956,25.23505],[90.25919,25.2336],[90.25339,25.23111],[90.23661,25.23126],[90.23416,25.22832],[90.23428,25.22411],[90.23636,25.22364],[90.23973,25.22724],[90.2429,25.22643],[90.25296,25.21174],[90.25136,25.20168],[90.24852,25.20027],[90.2555,25.19979],[90.26406,25.19625],[90.26814,25.19841],[90.28159,25.19531],[90.28655,25.19568],[90.31043,25.18877],[90.31665,25.19286],[90.32339,25.19215],[90.33024,25.19382],[90.33674,25.18948],[90.34676,25.17834],[90.37046,25.16284],[90.40022,25.15898],[90.40448,25.15995],[90.41873,25.15058],[90.44108,25.14451],[90.44639,25.14478],[90.44942,25.14662],[90.45085,25.15239],[90.46355,25.1542],[90.48588,25.16107],[90.48851,25.16411],[90.49926,25.1686],[90.49905,25.17217],[90.50986,25.16942],[90.50864,25.17535],[90.51866,25.17219],[90.52595,25.17382],[90.5353,25.17331],[90.53803,25.17528],[90.54556,25.1736],[90.55134,25.17523],[90.55498,25.17168],[90.55977,25.17354],[90.56409,25.17143],[90.56474,25.17335],[90.56977,25.1736],[90.57598,25.17164],[90.57895,25.17476],[90.58624,25.17349],[90.58787,25.17651],[90.59355,25.17514],[90.59939,25.17654],[90.60468,25.17463],[90.60472,25.17638],[90.60736,25.17614],[90.60939,25.17911],[90.61267,25.17698],[90.61388,25.17367],[90.61648,25.17737],[90.61828,25.17254],[90.62042,25.1744],[90.62518,25.17414],[90.62705,25.17222],[90.63205,25.17355],[90.63456,25.17603],[90.64094,25.17453],[90.64189,25.17667],[90.63879,25.18008],[90.64035,25.18359],[90.64599,25.18083],[90.65114,25.18202],[90.65238,25.18687],[90.65139,25.1881],[90.65256,25.18859],[90.64765,25.19409],[90.64884,25.19488],[90.65238,25.19224],[90.65695,25.18476],[90.66122,25.18904],[90.66342,25.19785],[90.66513,25.19633],[90.66255,25.19158],[90.66379,25.18833],[90.66277,25.18555],[90.66501,25.18417],[90.66545,25.18073],[90.66341,25.17881],[90.66515,25.17627],[90.66381,25.17286],[90.66655,25.1695],[90.66601,25.1658],[90.66995,25.16626],[90.67458,25.1765],[90.67636,25.17617],[90.67515,25.17249],[90.681,25.17232],[90.68571,25.17447],[90.68551,25.17224],[90.68052,25.16932],[90.68215,25.16425],[90.68371,25.16323],[90.68687,25.16483],[90.68993,25.16415],[90.69174,25.16087],[90.69857,25.15672],[90.70059,25.15932],[90.69929,25.16116],[90.70064,25.16481],[90.70236,25.16206],[90.70656,25.16109],[90.70784,25.16607],[90.70998,25.16812],[90.71477,25.16757],[90.7175,25.16376],[90.7224,25.1647],[90.72567,25.16311],[90.72662,25.15806],[90.73147,25.15738],[90.73193,25.15498],[90.73328,25.15491],[90.73448,25.15817],[90.73914,25.15767],[90.74193,25.16125],[90.73788,25.16432],[90.73319,25.16202],[90.73422,25.16685],[90.73969,25.16667],[90.73992,25.16929],[90.74186,25.17024],[90.74208,25.16587],[90.74762,25.164],[90.74943,25.16691],[90.75666,25.16976],[90.7576,25.16816],[90.75858,25.16944],[90.75905,25.16782],[90.76041,25.1682],[90.76177,25.16989],[90.75891,25.17245],[90.76326,25.17593],[90.76383,25.17831],[90.76916,25.18261],[90.77552,25.18195],[90.78036,25.18612],[90.78156,25.18071],[90.7842,25.18128],[90.78401,25.17932],[90.78747,25.17873],[90.79473,25.18127],[90.79877,25.17432],[90.8027,25.17274],[90.80546,25.17363],[90.80416,25.16947],[90.80591,25.16594],[90.814,25.16369],[90.81557,25.16394],[90.81385,25.16751],[90.81793,25.16756],[90.81955,25.16261],[90.83664,25.16087],[90.84083,25.16107],[90.84074,25.16432],[90.84201,25.16431],[90.84442,25.15846],[90.8462,25.15793],[90.85281,25.15791],[90.85419,25.15913],[90.85868,25.15774],[90.85989,25.15833],[90.85811,25.15954],[90.85944,25.16016],[90.86242,25.15767],[90.86675,25.16117],[90.87193,25.1597],[90.87454,25.16124],[90.87511,25.16351],[90.88399,25.16672],[90.89453,25.16459],[90.89729,25.16626],[90.90462,25.16188],[90.91884,25.16334],[90.92801,25.16222],[90.9465,25.16756],[90.94882,25.17079],[90.96539,25.1709],[90.96977,25.17323],[90.97151,25.19151],[90.9686,25.20114],[90.95931,25.20385],[90.95558,25.21201],[90.94982,25.21468],[90.94982,25.21841],[90.95333,25.22233],[90.95287,25.22813],[90.95748,25.23087],[90.95947,25.23457],[90.95881,25.24652],[90.95194,25.2562],[90.94534,25.26077],[90.93667,25.26235],[90.92564,25.26707],[90.91948,25.27494],[90.91452,25.28577],[90.90059,25.2967],[90.87624,25.29253],[90.8572,25.29343],[90.85243,25.30147],[90.84428,25.30717],[90.83984,25.31259],[90.83972,25.3363],[90.83804,25.34073],[90.84168,25.35152],[90.83723,25.35793],[90.81433,25.36058],[90.8124,25.36478],[90.80604,25.3682],[90.79044,25.36987],[90.78334,25.36531],[90.76485,25.36797],[90.75907,25.3714],[90.75655,25.37641],[90.74935,25.38065],[90.74914,25.38742],[90.75086,25.39197],[90.76278,25.39793],[90.76204,25.40517],[90.76367,25.42085],[90.75961,25.42575],[90.75747,25.43193],[90.75777,25.43986],[90.7618,25.44628],[90.76043,25.44948],[90.75748,25.4514],[90.75932,25.45508],[90.76549,25.45607],[90.77718,25.45318],[90.78453,25.46451],[90.78522,25.46835],[90.77392,25.46868],[90.77205,25.47213],[90.77455,25.47575],[90.78712,25.47937],[90.79191,25.48621]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"278","area_level":"District","area_name":"West Garo Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.41115,26.00042],[90.40539,26.00898],[90.39975,26.01252],[90.37218,26.01127],[90.34971,26.00413],[90.34671,25.99785],[90.34307,25.99631],[90.34036,25.98834],[90.33153,25.98765],[90.32792,25.97501],[90.32478,25.9734],[90.27058,25.96031],[90.21149,25.95259],[90.20994,25.95966],[90.20287,25.96086],[90.19983,25.95695],[90.19242,25.95525],[90.19083,25.95121],[90.18739,25.94987],[90.18691,25.94685],[90.18876,25.94583],[90.18688,25.94409],[90.1808,25.94977],[90.17859,25.95522],[90.17721,25.95527],[90.17692,25.95895],[90.16576,25.95576],[90.15847,25.95715],[90.15141,25.96667],[90.14382,25.96014],[90.13938,25.95964],[90.14054,25.9573],[90.13172,25.95874],[90.11978,25.9541],[90.12054,25.95783],[90.11685,25.95722],[90.10756,25.94914],[90.1049,25.94452],[90.10669,25.94231],[90.10108,25.94323],[90.10137,25.94023],[90.098,25.93741],[90.09211,25.93807],[90.09409,25.92782],[90.09113,25.92848],[90.08795,25.92555],[90.08542,25.92547],[90.08624,25.91947],[90.07591,25.91489],[90.07251,25.91852],[90.07054,25.91843],[90.06705,25.91299],[90.06055,25.91346],[90.06242,25.91022],[90.05558,25.90574],[90.05652,25.9032],[90.05544,25.90057],[90.04767,25.89982],[90.04644,25.89591],[90.04138,25.89407],[90.04344,25.89209],[90.04249,25.88767],[90.03419,25.89172],[90.03389,25.8944],[90.02523,25.89569],[90.01937,25.89208],[90.01386,25.88494],[90.01107,25.88461],[90.00809,25.88161],[90.00563,25.87847],[90.01428,25.87188],[90.01949,25.87315],[90.02382,25.86722],[90.02233,25.86014],[90.01912,25.85592],[90.01703,25.85622],[90.01745,25.85307],[90.01575,25.85073],[90.00782,25.84517],[90.0007,25.8462],[89.99894,25.84279],[90.004,25.8413],[90.00359,25.83924],[89.99126,25.83496],[89.98145,25.83551],[89.97793,25.83222],[89.9778,25.82793],[89.97109,25.82637],[89.96791,25.82777],[89.96587,25.83243],[89.96397,25.83306],[89.9637,25.82823],[89.96765,25.82252],[89.962,25.82019],[89.95416,25.82127],[89.95403,25.82504],[89.9587,25.82593],[89.95768,25.82911],[89.94826,25.82547],[89.9483,25.82352],[89.95106,25.82106],[89.94854,25.81509],[89.95584,25.81119],[89.95452,25.80391],[89.95843,25.80128],[89.95528,25.79653],[89.95439,25.78797],[89.95935,25.77993],[89.95536,25.77776],[89.95761,25.77539],[89.95478,25.76718],[89.94205,25.75584],[89.93523,25.75449],[89.93774,25.74822],[89.93728,25.74512],[89.92816,25.73904],[89.92428,25.73834],[89.90006,25.74706],[89.89474,25.74497],[89.8944,25.73494],[89.89569,25.73155],[89.89867,25.72957],[89.89913,25.72642],[89.9026,25.72526],[89.91348,25.70856],[89.91871,25.70515],[89.92358,25.69449],[89.93627,25.68975],[89.93752,25.68587],[89.94442,25.67926],[89.94292,25.67223],[89.94744,25.67103],[89.94544,25.66788],[89.94715,25.66615],[89.94674,25.66187],[89.95045,25.6556],[89.96293,25.64948],[89.96485,25.6468],[89.97916,25.63878],[89.98335,25.63055],[89.98318,25.62679],[89.99175,25.62408],[89.99519,25.62465],[89.99882,25.6224],[90.00412,25.62674],[90.00697,25.62332],[90.00421,25.62024],[90.00925,25.61919],[90.00984,25.61549],[90.01639,25.6098],[90.01859,25.61133],[90.0176,25.60788],[90.02025,25.60749],[90.01742,25.60502],[90.01766,25.60258],[90.01246,25.60251],[90.01089,25.6004],[90.01843,25.60139],[90.0193,25.6045],[90.02458,25.60396],[90.02887,25.6054],[90.05818,25.59844],[90.08422,25.58657],[90.0887,25.58308],[90.09348,25.57907],[90.0947,25.57263],[90.10575,25.56127],[90.11407,25.56096],[90.118,25.56495],[90.12162,25.5637],[90.12491,25.55756],[90.11789,25.54782],[90.12097,25.53148],[90.12571,25.53437],[90.13016,25.5345],[90.1252,25.537],[90.12662,25.5391],[90.1304,25.5374],[90.13572,25.53976],[90.13905,25.53727],[90.13707,25.54523],[90.14153,25.55383],[90.14735,25.54853],[90.14812,25.54487],[90.1528,25.54606],[90.15562,25.54991],[90.15884,25.54948],[90.16078,25.54782],[90.1603,25.545],[90.16223,25.54461],[90.16331,25.5398],[90.16234,25.53812],[90.15892,25.54078],[90.1593,25.53946],[90.15752,25.5389],[90.1597,25.53672],[90.1561,25.53511],[90.15814,25.53352],[90.16089,25.53315],[90.1614,25.53463],[90.16216,25.53364],[90.16202,25.53039],[90.16039,25.53117],[90.15999,25.52359],[90.1585,25.52283],[90.15978,25.52103],[90.15758,25.51846],[90.16111,25.5146],[90.16135,25.51124],[90.15952,25.50807],[90.1597,25.50056],[90.15746,25.49053],[90.15119,25.4878],[90.1602,25.48491],[90.16007,25.48205],[90.16291,25.48044],[90.16405,25.4756],[90.15963,25.46882],[90.15877,25.45808],[90.15344,25.44774],[90.15466,25.44555],[90.15215,25.44291],[90.15206,25.44036],[90.15496,25.44114],[90.15772,25.43872],[90.1529,25.43167],[90.15219,25.42714],[90.14679,25.42086],[90.151,25.41723],[90.14945,25.41452],[90.15107,25.41036],[90.14961,25.41078],[90.15033,25.40886],[90.14831,25.40907],[90.14924,25.40727],[90.14663,25.40456],[90.14767,25.39821],[90.14871,25.39572],[90.15158,25.39621],[90.15407,25.39352],[90.15574,25.389],[90.15262,25.3858],[90.15146,25.37984],[90.14682,25.3761],[90.10794,25.36762],[90.10667,25.36605],[90.05549,25.35506],[90.01872,25.35073],[90.01509,25.3476],[90.0162,25.34525],[90.01432,25.34129],[90.01661,25.33969],[90.00987,25.33686],[90.00999,25.33094],[90.00437,25.32804],[89.98034,25.3246],[89.97721,25.3205],[89.97908,25.31717],[89.98062,25.31704],[89.96624,25.30381],[89.97708,25.29679],[89.98038,25.29068],[89.98076,25.28085],[89.996,25.27664],[90.00422,25.28055],[90.03376,25.26226],[90.04672,25.26063],[90.05452,25.26136],[90.05954,25.25464],[90.07414,25.24395],[90.0813,25.24037],[90.09426,25.23733],[90.10535,25.22925],[90.11811,25.22346],[90.12813,25.22563],[90.17147,25.22306],[90.18803,25.21512],[90.19196,25.21506],[90.19595,25.21103],[90.20789,25.21021],[90.21521,25.20539],[90.21942,25.20666],[90.22553,25.20047],[90.22867,25.20329],[90.23399,25.2049],[90.2485,25.20028],[90.25095,25.20092],[90.25296,25.21174],[90.2429,25.22643],[90.23973,25.22724],[90.23463,25.22358],[90.23451,25.22927],[90.23774,25.23155],[90.2527,25.23106],[90.25784,25.23273],[90.25987,25.23473],[90.25429,25.23838],[90.25587,25.24058],[90.26732,25.23748],[90.2684,25.24004],[90.26663,25.24315],[90.27225,25.24847],[90.27002,25.25616],[90.27155,25.26263],[90.27817,25.26858],[90.28233,25.26514],[90.28514,25.26674],[90.28226,25.27006],[90.27273,25.2734],[90.27262,25.27486],[90.27686,25.27611],[90.27536,25.27805],[90.26659,25.28104],[90.26911,25.28833],[90.26758,25.30267],[90.27147,25.30811],[90.27014,25.3123],[90.27531,25.31402],[90.28214,25.31174],[90.28562,25.31327],[90.2868,25.31538],[90.28097,25.31955],[90.29335,25.32103],[90.29375,25.32327],[90.28781,25.3265],[90.29162,25.32919],[90.29239,25.33333],[90.29505,25.33666],[90.30458,25.3376],[90.30821,25.33398],[90.30855,25.34317],[90.31555,25.34616],[90.31396,25.34756],[90.31603,25.35185],[90.3259,25.35043],[90.3287,25.35264],[90.3296,25.35684],[90.33725,25.35797],[90.34113,25.36338],[90.34353,25.36374],[90.3407,25.37321],[90.3331,25.38072],[90.33621,25.38548],[90.3315,25.39008],[90.33499,25.39144],[90.33496,25.39383],[90.33822,25.39623],[90.33771,25.40384],[90.34182,25.40437],[90.33939,25.40951],[90.33569,25.40906],[90.33456,25.41122],[90.33975,25.4127],[90.34711,25.42014],[90.34386,25.4262],[90.34336,25.43428],[90.34494,25.43992],[90.33965,25.4573],[90.33196,25.45667],[90.32549,25.46114],[90.32091,25.46173],[90.31584,25.47104],[90.31833,25.47536],[90.32089,25.47664],[90.32551,25.48587],[90.33071,25.49168],[90.33432,25.49236],[90.33698,25.50038],[90.34933,25.51567],[90.35661,25.5211],[90.35916,25.52093],[90.36091,25.51713],[90.36903,25.51997],[90.37082,25.52351],[90.37543,25.52367],[90.37628,25.52471],[90.37357,25.52826],[90.37444,25.53086],[90.38032,25.53591],[90.38772,25.53824],[90.39047,25.54892],[90.3876,25.55245],[90.39149,25.55669],[90.38959,25.55955],[90.38545,25.56109],[90.38346,25.56537],[90.383,25.56933],[90.38529,25.57228],[90.38434,25.57484],[90.38621,25.57891],[90.38265,25.58375],[90.38193,25.58778],[90.38518,25.59282],[90.38505,25.59856],[90.39113,25.61429],[90.38757,25.6208],[90.39033,25.6243],[90.39605,25.627],[90.39814,25.63093],[90.392,25.64197],[90.39747,25.64911],[90.40062,25.64999],[90.40372,25.6539],[90.41259,25.65403],[90.41381,25.65702],[90.41201,25.66652],[90.40737,25.67382],[90.40853,25.68117],[90.41151,25.68437],[90.41365,25.69602],[90.41026,25.70101],[90.41114,25.70268],[90.4086,25.70386],[90.40546,25.70903],[90.40717,25.71804],[90.40575,25.72502],[90.39881,25.73045],[90.39836,25.73407],[90.39989,25.73626],[90.39664,25.74008],[90.40137,25.7412],[90.40288,25.74656],[90.40851,25.75136],[90.40897,25.7575],[90.41192,25.75988],[90.41055,25.76147],[90.41394,25.76313],[90.41539,25.76749],[90.4048,25.78489],[90.38377,25.81156],[90.36202,25.81426],[90.35242,25.81741],[90.34631,25.82238],[90.34612,25.82761],[90.35219,25.83501],[90.38969,25.8419],[90.39119,25.84493],[90.38884,25.85234],[90.38903,25.85878],[90.38686,25.86196],[90.38758,25.865],[90.38563,25.86729],[90.38701,25.86777],[90.38842,25.89086],[90.39089,25.89546],[90.39102,25.90004],[90.39395,25.90247],[90.39435,25.90985],[90.39844,25.91727],[90.40011,25.92449],[90.40204,25.92649],[90.40413,25.92578],[90.40808,25.92808],[90.40625,25.93177],[90.40687,25.93465],[90.41274,25.93752],[90.41339,25.94197],[90.41067,25.94402],[90.41282,25.94488],[90.41283,25.94701],[90.41088,25.94834],[90.41352,25.95206],[90.41038,25.95414],[90.4124,25.95741],[90.41068,25.95995],[90.41343,25.96287],[90.41772,25.96257],[90.41774,25.96419],[90.42,25.96426],[90.41842,25.96734],[90.4214,25.96898],[90.42072,25.97068],[90.42327,25.97332],[90.42158,25.97427],[90.42219,25.97772],[90.42561,25.98086],[90.42382,25.989],[90.41684,25.9915],[90.41617,25.99798],[90.41115,26.00042]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"279","area_level":"District","area_name":"West Khasi Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.77026,25.80869],[91.74962,25.82715],[91.73799,25.82886],[91.72392,25.82693],[91.70736,25.81986],[91.70429,25.8127],[91.69795,25.80465],[91.68687,25.80907],[91.65936,25.81435],[91.65646,25.81157],[91.64893,25.80853],[91.64238,25.80278],[91.64019,25.80645],[91.63166,25.8099],[91.6,25.80985],[91.59667,25.80528],[91.59427,25.80544],[91.58697,25.81189],[91.55699,25.80821],[91.54908,25.80596],[91.53741,25.79879],[91.53405,25.79882],[91.53136,25.80163],[91.50366,25.79778],[91.49654,25.79876],[91.49023,25.79658],[91.48001,25.79661],[91.47479,25.79157],[91.4672,25.78891],[91.45851,25.78844],[91.45744,25.795],[91.44573,25.79242],[91.44163,25.79515],[91.43774,25.79235],[91.42269,25.79315],[91.41903,25.79674],[91.41994,25.80107],[91.41821,25.80306],[91.39483,25.80511],[91.38882,25.80471],[91.38028,25.80089],[91.37158,25.80249],[91.36411,25.80663],[91.35954,25.80653],[91.34189,25.82462],[91.34317,25.83732],[91.3357,25.84069],[91.33326,25.83675],[91.33432,25.83307],[91.32232,25.82153],[91.32075,25.81572],[91.31472,25.80959],[91.30971,25.79888],[91.30259,25.7899],[91.30185,25.78648],[91.29556,25.78018],[91.29456,25.77592],[91.29004,25.77264],[91.28863,25.7655],[91.27898,25.75736],[91.27454,25.75045],[91.26453,25.74585],[91.24552,25.7333],[91.22245,25.72256],[91.21012,25.72549],[91.19048,25.74783],[91.18894,25.75045],[91.18929,25.76395],[91.18416,25.76643],[91.18513,25.77199],[91.17826,25.77735],[91.1784,25.78016],[91.18207,25.7836],[91.18419,25.79889],[91.19044,25.81143],[91.18631,25.81836],[91.18937,25.82374],[91.19446,25.82728],[91.19468,25.83486],[91.19729,25.83524],[91.20364,25.84321],[91.19756,25.84954],[91.19583,25.86139],[91.1892,25.85171],[91.18399,25.8504],[91.18023,25.84397],[91.17362,25.8444],[91.1599,25.84995],[91.14755,25.85049],[91.13611,25.84263],[91.12946,25.84261],[91.12036,25.83293],[91.07714,25.82894],[91.06697,25.82573],[91.06213,25.82078],[91.04888,25.82927],[91.05297,25.83181],[91.05773,25.83177],[91.05937,25.83666],[91.06641,25.83886],[91.06773,25.83681],[91.07186,25.83876],[91.07324,25.84046],[91.07298,25.84589],[91.0785,25.85274],[91.06721,25.84663],[91.04772,25.84908],[91.03923,25.83689],[91.0325,25.835],[91.03208,25.83285],[91.02863,25.83116],[91.02245,25.82377],[91.01057,25.82036],[91.00601,25.82038],[91.00226,25.82384],[90.99435,25.8173],[90.98386,25.80515],[90.97016,25.79401],[90.96586,25.78141],[90.95737,25.77818],[90.95088,25.7724],[90.94399,25.77033],[90.94079,25.76379],[90.94144,25.75647],[90.94357,25.75296],[90.94833,25.75262],[90.95239,25.75498],[90.96172,25.7499],[90.97144,25.75293],[90.97917,25.74871],[90.98252,25.74443],[90.97583,25.73803],[90.97012,25.72616],[90.96311,25.72126],[90.95476,25.71077],[90.95164,25.69481],[90.93127,25.67701],[90.92697,25.66879],[90.91773,25.65715],[90.91227,25.6543],[90.90825,25.64084],[90.89424,25.63584],[90.88514,25.62377],[90.88013,25.61952],[90.87982,25.61095],[90.87219,25.60373],[90.86242,25.60058],[90.84921,25.59072],[90.84342,25.59107],[90.83784,25.58822],[90.82999,25.59008],[90.81754,25.58611],[90.81671,25.57922],[90.81248,25.57712],[90.81029,25.57858],[90.80849,25.584],[90.80173,25.58639],[90.79988,25.58178],[90.79436,25.57775],[90.79296,25.57268],[90.78975,25.57238],[90.78419,25.58287],[90.77905,25.58561],[90.77303,25.57412],[90.77202,25.56829],[90.76658,25.56205],[90.76736,25.55772],[90.76455,25.5509],[90.76856,25.54385],[90.7775,25.54076],[90.7806,25.53586],[90.7812,25.52701],[90.79032,25.50783],[90.78937,25.4964],[90.79255,25.49069],[90.79191,25.48621],[90.78712,25.47937],[90.77455,25.47575],[90.77205,25.47213],[90.77392,25.46868],[90.78522,25.46835],[90.78453,25.46451],[90.77718,25.45318],[90.76549,25.45607],[90.75932,25.45508],[90.75748,25.4514],[90.76043,25.44948],[90.7618,25.44628],[90.75777,25.43986],[90.75747,25.43193],[90.75961,25.42575],[90.76367,25.42085],[90.76204,25.40517],[90.76278,25.39793],[90.75086,25.39197],[90.74914,25.38742],[90.74935,25.38065],[90.75655,25.37641],[90.75907,25.3714],[90.76485,25.36797],[90.78334,25.36531],[90.79044,25.36987],[90.80604,25.3682],[90.8124,25.36478],[90.81433,25.36058],[90.83723,25.35793],[90.84168,25.35152],[90.83804,25.34073],[90.83972,25.3363],[90.83984,25.31259],[90.84428,25.30717],[90.85243,25.30147],[90.85706,25.29362],[90.87231,25.31214],[90.8754,25.31819],[90.88346,25.31986],[90.88834,25.31839],[90.89166,25.31362],[90.89662,25.31367],[90.90263,25.3182],[90.90661,25.32806],[90.91002,25.32942],[90.92206,25.32789],[90.92649,25.33071],[90.92888,25.33501],[90.936,25.33269],[90.93623,25.32197],[90.93935,25.32375],[90.94116,25.32922],[90.94557,25.33477],[90.94749,25.33503],[90.95381,25.32867],[90.95994,25.32841],[90.96978,25.32408],[90.97196,25.31977],[90.97774,25.32091],[90.98247,25.32362],[90.9833,25.3281],[90.98203,25.33181],[90.98399,25.33453],[90.97706,25.34001],[90.97861,25.34394],[90.98624,25.34298],[90.99303,25.34871],[90.99429,25.35526],[90.99134,25.36112],[90.99456,25.36579],[91.00972,25.3545],[91.01271,25.34141],[91.01554,25.33926],[91.02098,25.33849],[91.01828,25.33135],[91.02613,25.3235],[91.034,25.32421],[91.03845,25.32236],[91.04475,25.3233],[91.04948,25.32458],[91.05528,25.33036],[91.05936,25.33079],[91.06981,25.32621],[91.08656,25.30732],[91.09235,25.30652],[91.10421,25.31324],[91.0992,25.32027],[91.09894,25.32553],[91.09535,25.33193],[91.09863,25.33903],[91.09644,25.34518],[91.0975,25.34871],[91.10277,25.35219],[91.10402,25.35664],[91.10802,25.36024],[91.11699,25.36194],[91.12464,25.36758],[91.12791,25.3726],[91.13651,25.37233],[91.13786,25.37667],[91.14215,25.37702],[91.14125,25.38752],[91.13054,25.39326],[91.12408,25.39329],[91.12074,25.39553],[91.11848,25.40103],[91.12051,25.40469],[91.11729,25.40469],[91.11024,25.41254],[91.11252,25.42036],[91.11457,25.42308],[91.12697,25.42695],[91.13035,25.43013],[91.14136,25.43419],[91.144,25.43654],[91.14873,25.43722],[91.17111,25.45127],[91.17532,25.45132],[91.1796,25.44654],[91.18131,25.44301],[91.17863,25.43462],[91.18239,25.43291],[91.18867,25.43862],[91.18916,25.44329],[91.19734,25.445],[91.20058,25.44256],[91.20917,25.44691],[91.21471,25.44318],[91.21745,25.43841],[91.21747,25.43388],[91.22373,25.43349],[91.22729,25.43533],[91.2284,25.43855],[91.2267,25.44111],[91.22374,25.44126],[91.22367,25.44323],[91.23061,25.44525],[91.23148,25.4505],[91.24383,25.43219],[91.25067,25.42569],[91.25368,25.41912],[91.26833,25.40432],[91.27206,25.39687],[91.27494,25.39802],[91.28127,25.39719],[91.28516,25.39819],[91.28526,25.40028],[91.28931,25.39986],[91.28954,25.40321],[91.29174,25.40374],[91.29002,25.40536],[91.29092,25.40767],[91.28832,25.41319],[91.29781,25.41797],[91.31015,25.42143],[91.31136,25.42358],[91.30682,25.43018],[91.31568,25.43009],[91.32198,25.43411],[91.32641,25.43283],[91.33156,25.44026],[91.33413,25.43749],[91.34187,25.43782],[91.37243,25.44525],[91.37921,25.44261],[91.40849,25.44287],[91.41297,25.44387],[91.41994,25.44912],[91.42822,25.44856],[91.42938,25.44686],[91.43854,25.44914],[91.44058,25.44479],[91.44339,25.44615],[91.44828,25.44083],[91.46094,25.44212],[91.46264,25.43992],[91.47078,25.43844],[91.47249,25.43944],[91.48126,25.43827],[91.48424,25.43952],[91.48983,25.43846],[91.497,25.44025],[91.51521,25.4411],[91.51643,25.43795],[91.51541,25.43306],[91.51391,25.43215],[91.51688,25.43005],[91.52367,25.43551],[91.53999,25.44036],[91.54218,25.43954],[91.54111,25.43763],[91.54373,25.43456],[91.5429,25.43073],[91.55527,25.42963],[91.55647,25.43517],[91.55416,25.43861],[91.55668,25.44502],[91.55618,25.45278],[91.5495,25.47708],[91.54914,25.48906],[91.54593,25.49387],[91.54174,25.49585],[91.54121,25.49855],[91.54357,25.50295],[91.54172,25.5111],[91.54724,25.51051],[91.54877,25.5145],[91.5817,25.52062],[91.60676,25.5364],[91.61304,25.54192],[91.62071,25.54064],[91.62275,25.53808],[91.62919,25.54128],[91.63388,25.54886],[91.65379,25.55187],[91.65762,25.54096],[91.65861,25.52796],[91.66458,25.52633],[91.67018,25.522],[91.681,25.52321],[91.68908,25.52592],[91.70022,25.53342],[91.6961,25.54265],[91.69873,25.54614],[91.71317,25.55325],[91.71484,25.55879],[91.72053,25.56055],[91.72334,25.56425],[91.7295,25.56331],[91.73226,25.56661],[91.73321,25.57513],[91.73955,25.57368],[91.77113,25.58539],[91.77402,25.58869],[91.78098,25.58959],[91.79983,25.60951],[91.80025,25.61383],[91.79774,25.61894],[91.79815,25.62424],[91.79895,25.62769],[91.80739,25.63534],[91.81131,25.65321],[91.80877,25.65567],[91.80823,25.65866],[91.81259,25.66209],[91.81345,25.66473],[91.82728,25.66928],[91.82861,25.6738],[91.82623,25.67759],[91.82806,25.68865],[91.81997,25.70242],[91.8154,25.70319],[91.8133,25.70543],[91.81522,25.72082],[91.80828,25.73326],[91.79746,25.73137],[91.79104,25.73305],[91.78483,25.7318],[91.78311,25.73363],[91.78408,25.73888],[91.77997,25.73788],[91.77355,25.7398],[91.77238,25.74445],[91.76832,25.74327],[91.76536,25.74971],[91.77675,25.76256],[91.77915,25.76326],[91.77932,25.76631],[91.78839,25.7822],[91.78783,25.79071],[91.77918,25.79469],[91.77026,25.80869]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"28","area_level":"District","area_name":"Bathinda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.15694,30.57672],[75.15139,30.57774],[75.14562,30.58238],[75.12302,30.56581],[75.12064,30.56085],[75.13001,30.54035],[75.13137,30.53387],[75.13103,30.52653],[75.12819,30.5223],[75.12199,30.52444],[75.10524,30.52124],[75.08467,30.53194],[75.0779,30.52511],[75.06197,30.50147],[75.05861,30.50394],[75.05504,30.50162],[75.05155,30.50346],[75.04947,30.50143],[75.04291,30.50113],[75.04188,30.50422],[75.04013,30.50322],[75.03651,30.50477],[75.03242,30.50427],[75.02839,30.49726],[75.02023,30.49089],[75.02778,30.4807],[75.03045,30.47427],[75.04258,30.47326],[75.04223,30.46561],[75.05107,30.45933],[75.05295,30.46046],[75.05409,30.45834],[75.04982,30.45526],[75.03971,30.45937],[75.03316,30.45798],[75.02917,30.45479],[75.02071,30.4419],[75.02724,30.43874],[75.02206,30.42627],[75.03282,30.42754],[75.05231,30.40931],[75.05142,30.39335],[75.0525,30.38864],[75.04313,30.37892],[75.03677,30.37932],[75.03164,30.3817],[75.02745,30.38094],[75.02705,30.3824],[75.0227,30.38052],[75.0128,30.38573],[75.00447,30.39282],[75.00376,30.39584],[74.9956,30.40461],[74.98601,30.40234],[74.98359,30.39854],[74.97578,30.40003],[74.97568,30.40347],[74.97057,30.40455],[74.96972,30.39841],[74.96167,30.38882],[74.94918,30.38279],[74.94433,30.38428],[74.93057,30.36856],[74.92117,30.36627],[74.91622,30.37024],[74.91792,30.37171],[74.91057,30.37576],[74.9034,30.37865],[74.89105,30.38058],[74.87567,30.38927],[74.85325,30.37509],[74.83791,30.38783],[74.83154,30.38827],[74.8217,30.3928],[74.79655,30.35604],[74.79334,30.34634],[74.79222,30.33667],[74.79006,30.34079],[74.78864,30.33933],[74.78403,30.33912],[74.78161,30.3412],[74.77978,30.33915],[74.73251,30.36007],[74.72392,30.36589],[74.71057,30.35905],[74.69911,30.35604],[74.69892,30.35425],[74.70773,30.35463],[74.73507,30.34815],[74.74914,30.3431],[74.76758,30.33971],[74.77467,30.33988],[74.77703,30.33764],[74.78541,30.33661],[74.77515,30.32728],[74.76234,30.32045],[74.74629,30.3208],[74.72414,30.30872],[74.72738,30.30371],[74.72808,30.30573],[74.73353,30.30393],[74.7437,30.29278],[74.75208,30.28715],[74.74248,30.27827],[74.73959,30.27983],[74.73438,30.2788],[74.73468,30.27405],[74.72034,30.25724],[74.72105,30.25552],[74.7181,30.24832],[74.71822,30.24474],[74.72146,30.24258],[74.72074,30.235],[74.72546,30.22988],[74.71837,30.22554],[74.7196,30.22065],[74.71302,30.2134],[74.71629,30.20873],[74.71196,30.19664],[74.72506,30.19709],[74.73453,30.19235],[74.7374,30.18324],[74.73449,30.17897],[74.73503,30.17535],[74.72956,30.1754],[74.72677,30.17229],[74.71023,30.16507],[74.70287,30.16009],[74.69707,30.15927],[74.69065,30.16178],[74.68677,30.16796],[74.65468,30.16246],[74.63994,30.15042],[74.64045,30.14353],[74.62974,30.13055],[74.6488,30.11048],[74.67055,30.10777],[74.68196,30.11319],[74.68432,30.10992],[74.68396,30.10401],[74.67377,30.08991],[74.67659,30.08119],[74.68281,30.07206],[74.68569,30.0736],[74.69049,30.07237],[74.70483,30.06511],[74.70071,30.06173],[74.69413,30.0492],[74.69351,30.04418],[74.69702,30.03726],[74.69419,30.03369],[74.70457,30.02609],[74.7112,30.0176],[74.71708,30.01394],[74.71178,30.00266],[74.70083,29.98709],[74.70128,29.98416],[74.70667,29.97948],[74.70683,29.97054],[74.73099,29.96146],[74.73898,29.9679],[74.75316,29.96731],[74.75395,29.96964],[74.75833,29.97004],[74.75856,29.97244],[74.76128,29.97331],[74.77108,29.97172],[74.77535,29.97334],[74.77845,29.97167],[74.80607,29.99205],[74.81146,29.9924],[74.81786,29.9911],[74.82433,29.98577],[74.82636,29.97722],[74.82106,29.97103],[74.8285,29.97333],[74.83848,29.97115],[74.84348,29.9646],[74.85059,29.96197],[74.85542,29.95649],[74.86477,29.96016],[74.87057,29.95998],[74.87579,29.95761],[74.88796,29.96672],[74.90298,29.95348],[74.90073,29.94546],[74.89554,29.94073],[74.8972,29.93969],[74.90705,29.9406],[74.91294,29.94344],[74.91901,29.94707],[74.9229,29.95211],[74.92671,29.95049],[74.92698,29.94586],[74.93582,29.93068],[74.9364,29.92645],[74.95135,29.90324],[74.97886,29.89431],[74.97721,29.88834],[74.98557,29.87532],[74.99099,29.86782],[74.99813,29.86623],[75.00526,29.86895],[75.02255,29.86625],[75.03293,29.87981],[75.04699,29.88507],[75.05187,29.88407],[75.05613,29.87809],[75.06529,29.87879],[75.06999,29.87705],[75.07449,29.88225],[75.07607,29.89085],[75.07533,29.89634],[75.08049,29.9008],[75.08644,29.91655],[75.0888,29.91719],[75.09418,29.91509],[75.09886,29.91273],[75.09904,29.91108],[75.10733,29.90405],[75.1093,29.90409],[75.11043,29.89271],[75.11474,29.87865],[75.10686,29.868],[75.09341,29.85797],[75.08976,29.85863],[75.0901,29.854],[75.10316,29.84175],[75.11139,29.84191],[75.11889,29.83195],[75.10154,29.82155],[75.10034,29.8194],[75.10059,29.80708],[75.1045,29.8048],[75.11826,29.8027],[75.12668,29.80688],[75.13511,29.80729],[75.13686,29.80595],[75.14025,29.78614],[75.14649,29.78182],[75.15099,29.77552],[75.15984,29.77901],[75.16681,29.78469],[75.16665,29.78821],[75.1591,29.80133],[75.16065,29.80637],[75.16023,29.81284],[75.16467,29.82502],[75.17007,29.82818],[75.17593,29.82808],[75.18439,29.8341],[75.19104,29.84137],[75.19041,29.85056],[75.19315,29.85346],[75.20581,29.85972],[75.21291,29.85811],[75.21755,29.86192],[75.21821,29.86447],[75.21747,29.88304],[75.2049,29.88827],[75.18813,29.88939],[75.18478,29.91606],[75.17173,29.92784],[75.18069,29.94154],[75.18347,29.94146],[75.17813,29.94587],[75.18332,29.95207],[75.18097,29.95289],[75.18276,29.97019],[75.18856,29.97369],[75.19505,29.9809],[75.20579,29.98021],[75.20813,29.97898],[75.20798,29.97483],[75.21665,29.96764],[75.22092,29.96911],[75.23755,29.95976],[75.24681,29.96999],[75.25073,29.98288],[75.27308,29.974],[75.28109,29.97931],[75.27843,29.98548],[75.27178,29.98984],[75.27434,29.99594],[75.28143,30.00378],[75.28339,30.00331],[75.28806,30.00655],[75.29849,30.01938],[75.30115,30.02065],[75.29417,30.01968],[75.28899,30.02241],[75.28769,30.0174],[75.28153,30.01141],[75.27663,30.01415],[75.26022,30.01603],[75.25795,30.02609],[75.25074,30.03261],[75.24963,30.03836],[75.25173,30.03858],[75.26483,30.05004],[75.27026,30.04838],[75.27558,30.05736],[75.2751,30.05955],[75.27842,30.06363],[75.28619,30.06761],[75.29248,30.06695],[75.29357,30.0708],[75.31016,30.06792],[75.31269,30.06565],[75.31707,30.06536],[75.31727,30.06262],[75.32018,30.06134],[75.32436,30.06446],[75.3259,30.06977],[75.32216,30.07055],[75.32143,30.07287],[75.31716,30.07568],[75.30642,30.07735],[75.30403,30.08886],[75.30007,30.0935],[75.29981,30.09812],[75.29081,30.1049],[75.29494,30.10767],[75.29699,30.11178],[75.30004,30.10965],[75.30974,30.11398],[75.31375,30.11224],[75.31585,30.11625],[75.32112,30.11849],[75.3232,30.12284],[75.32864,30.12317],[75.34034,30.13258],[75.34441,30.13091],[75.35321,30.1414],[75.34366,30.14622],[75.34467,30.14881],[75.34337,30.15023],[75.34551,30.15595],[75.34453,30.15949],[75.35117,30.16266],[75.3569,30.16137],[75.35923,30.16364],[75.35563,30.16566],[75.35613,30.16826],[75.364,30.17602],[75.35747,30.18142],[75.35733,30.18706],[75.36647,30.19428],[75.37105,30.2024],[75.37008,30.20534],[75.36666,30.20542],[75.36567,30.20313],[75.3599,30.20566],[75.36242,30.20811],[75.37113,30.20988],[75.37258,30.21211],[75.36992,30.21408],[75.375,30.21999],[75.37707,30.22827],[75.37619,30.2372],[75.36381,30.24109],[75.36361,30.24484],[75.36622,30.24498],[75.36869,30.2475],[75.36793,30.2549],[75.36497,30.25788],[75.37131,30.26117],[75.3684,30.26353],[75.36468,30.26371],[75.3613,30.2677],[75.36393,30.2823],[75.36159,30.2847],[75.35505,30.28706],[75.34898,30.28277],[75.34617,30.28499],[75.34196,30.28546],[75.33971,30.29246],[75.34648,30.3002],[75.33417,30.3064],[75.32924,30.3051],[75.32778,30.30628],[75.32747,30.30478],[75.32375,30.30466],[75.32066,30.3021],[75.3176,30.30462],[75.31845,30.30851],[75.32057,30.30864],[75.3191,30.31054],[75.3218,30.3167],[75.3187,30.32451],[75.31387,30.32712],[75.31476,30.33236],[75.32399,30.33624],[75.33274,30.33264],[75.34393,30.3343],[75.34521,30.33713],[75.34435,30.34408],[75.33964,30.34298],[75.33266,30.34901],[75.32728,30.35148],[75.32463,30.3508],[75.32612,30.35469],[75.32494,30.35626],[75.32713,30.35775],[75.32711,30.36289],[75.33234,30.37046],[75.33346,30.37799],[75.33154,30.37725],[75.32642,30.37906],[75.32187,30.37582],[75.31298,30.38068],[75.30552,30.37884],[75.30684,30.38708],[75.30481,30.38772],[75.30338,30.39663],[75.30052,30.39759],[75.30238,30.40281],[75.29927,30.4078],[75.3054,30.41801],[75.29979,30.42443],[75.2904,30.42858],[75.28306,30.44179],[75.265,30.43641],[75.26225,30.4397],[75.26324,30.44085],[75.26197,30.44388],[75.26773,30.44524],[75.25822,30.45992],[75.25365,30.46375],[75.25965,30.47306],[75.2777,30.49125],[75.28287,30.50796],[75.26904,30.51658],[75.26558,30.52041],[75.26198,30.52086],[75.25771,30.51979],[75.2553,30.51617],[75.25231,30.51572],[75.25,30.51773],[75.24043,30.51358],[75.23876,30.51038],[75.23332,30.51184],[75.23127,30.50861],[75.22764,30.50763],[75.22116,30.508],[75.21202,30.51636],[75.20574,30.51334],[75.20705,30.50952],[75.20458,30.50925],[75.20317,30.50693],[75.19545,30.51213],[75.19254,30.5087],[75.18169,30.51013],[75.18044,30.52114],[75.18308,30.53303],[75.17958,30.55129],[75.17221,30.56023],[75.16536,30.57905],[75.16074,30.57936],[75.15694,30.57672]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"280","area_level":"District","area_name":"Barpeta","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.15773,26.65086],[91.145,26.66311],[91.1406,26.66146],[91.13942,26.65059],[91.12745,26.65012],[91.12732,26.65881],[91.10225,26.66158],[91.09731,26.66539],[91.09521,26.65233],[91.11269,26.65147],[91.11254,26.63762],[91.09946,26.63753],[91.09621,26.63981],[91.09498,26.63918],[91.09777,26.62899],[91.10502,26.63243],[91.11628,26.63212],[91.1172,26.61951],[91.12286,26.61615],[91.12276,26.6118],[91.14052,26.61159],[91.13971,26.6104],[91.1412,26.60859],[91.13908,26.60775],[91.14311,26.60387],[91.13878,26.60195],[91.14226,26.60092],[91.13955,26.59938],[91.13103,26.59762],[91.1284,26.59921],[91.12903,26.60472],[91.12829,26.6058],[91.12631,26.60469],[91.12358,26.59961],[91.12556,26.59728],[91.12557,26.59356],[91.1179,26.59213],[91.11328,26.58396],[91.12175,26.58268],[91.11824,26.57276],[91.10978,26.57133],[91.10462,26.56752],[91.1055,26.5656],[91.10889,26.56651],[91.10823,26.56359],[91.10981,26.56119],[91.09585,26.56239],[91.08073,26.55627],[91.07979,26.54711],[91.08152,26.53346],[91.07329,26.53348],[91.07187,26.51623],[91.05896,26.51615],[91.05397,26.52336],[91.05646,26.52765],[91.05199,26.52941],[91.03849,26.52825],[91.02782,26.53071],[91.00531,26.53158],[91.00058,26.53008],[90.99863,26.52456],[90.9932,26.52516],[90.99095,26.52399],[90.99103,26.51812],[90.99664,26.51794],[90.99797,26.51472],[90.99536,26.51137],[90.99416,26.50485],[90.99838,26.49983],[91.00037,26.49084],[90.99651,26.46996],[91.00116,26.46682],[91.00232,26.46305],[91.001,26.46164],[91.00652,26.45591],[91.00535,26.44875],[91.01421,26.44635],[91.00989,26.44036],[91.00977,26.43506],[90.99687,26.43527],[90.99828,26.42935],[91.00354,26.42201],[90.98997,26.41719],[90.98164,26.41631],[90.98243,26.43091],[90.97806,26.42828],[90.96979,26.4288],[90.9698,26.43066],[90.97552,26.43661],[90.97541,26.44023],[90.96223,26.43975],[90.96062,26.44807],[90.96207,26.45779],[90.97241,26.45638],[90.97292,26.46116],[90.95527,26.46166],[90.95204,26.45712],[90.94654,26.45971],[90.94548,26.46176],[90.95045,26.46054],[90.9551,26.46394],[90.95297,26.47097],[90.94931,26.4729],[90.93612,26.47118],[90.93293,26.47776],[90.94245,26.47719],[90.94711,26.47985],[90.94748,26.48537],[90.95104,26.48421],[90.95065,26.49044],[90.95991,26.49041],[90.96227,26.49231],[90.96893,26.49082],[90.96934,26.49734],[90.97601,26.49812],[90.97687,26.49958],[90.9756,26.52595],[90.97668,26.53979],[90.97726,26.54103],[90.98223,26.54071],[90.98119,26.55457],[90.98571,26.55444],[90.98521,26.57547],[90.99597,26.57139],[90.99464,26.57855],[90.99679,26.58139],[90.99626,26.59002],[90.99436,26.59469],[90.99485,26.60085],[90.99083,26.60099],[90.98903,26.59057],[90.96792,26.59039],[90.96582,26.59642],[90.96655,26.59943],[90.96333,26.59857],[90.96318,26.59107],[90.96532,26.58475],[90.96345,26.58318],[90.95249,26.58365],[90.94871,26.58236],[90.94851,26.58418],[90.9349,26.58414],[90.9341,26.56067],[90.93335,26.55569],[90.93172,26.55482],[90.92386,26.55599],[90.92114,26.55957],[90.92098,26.56725],[90.92569,26.57567],[90.91163,26.57867],[90.9013,26.57175],[90.90192,26.56893],[90.89571,26.55605],[90.89124,26.55206],[90.87776,26.55744],[90.87481,26.57076],[90.87122,26.57336],[90.87283,26.57568],[90.86949,26.57799],[90.87206,26.58204],[90.87554,26.58361],[90.88006,26.58298],[90.88483,26.58739],[90.88637,26.59086],[90.88429,26.59393],[90.9007,26.59868],[90.90021,26.60051],[90.89596,26.60259],[90.89439,26.62735],[90.89319,26.62532],[90.87572,26.61734],[90.87363,26.60898],[90.86801,26.59978],[90.85643,26.59878],[90.85046,26.5835],[90.8531,26.58292],[90.84761,26.57767],[90.8465,26.57198],[90.83504,26.57173],[90.82565,26.576],[90.8216,26.57051],[90.81808,26.56909],[90.81799,26.56425],[90.82673,26.55932],[90.8278,26.55713],[90.82832,26.5436],[90.83113,26.54256],[90.83185,26.53921],[90.83784,26.53725],[90.84186,26.53799],[90.8475,26.53421],[90.85237,26.53598],[90.85509,26.53317],[90.85195,26.5304],[90.85379,26.52911],[90.85042,26.52448],[90.85129,26.51527],[90.84941,26.50868],[90.84206,26.4996],[90.8378,26.50401],[90.82728,26.50204],[90.82596,26.49352],[90.82268,26.49052],[90.81741,26.49339],[90.81104,26.50051],[90.80791,26.49995],[90.80487,26.49674],[90.80607,26.49327],[90.80218,26.48312],[90.80381,26.47787],[90.81219,26.47559],[90.81842,26.47569],[90.81939,26.47113],[90.81691,26.46482],[90.81997,26.4633],[90.81917,26.46058],[90.82106,26.45744],[90.82766,26.45325],[90.82762,26.44875],[90.82102,26.44048],[90.81632,26.4378],[90.80451,26.44043],[90.80042,26.43995],[90.7976,26.43824],[90.79756,26.43282],[90.79918,26.43038],[90.81277,26.42819],[90.82376,26.43193],[90.83688,26.43344],[90.84873,26.44224],[90.85563,26.43905],[90.86159,26.43107],[90.85698,26.42017],[90.85347,26.41937],[90.8485,26.4087],[90.84532,26.40569],[90.84474,26.40174],[90.84726,26.39148],[90.86113,26.37727],[90.86126,26.3688],[90.8589,26.36167],[90.84845,26.36079],[90.8409,26.35771],[90.82547,26.36522],[90.81787,26.36686],[90.80354,26.3476],[90.80486,26.34316],[90.79928,26.33467],[90.78943,26.3294],[90.79049,26.32401],[90.8008,26.32074],[90.80371,26.31748],[90.80658,26.31216],[90.80336,26.30594],[90.79725,26.30582],[90.78911,26.30262],[90.78086,26.30234],[90.77159,26.30449],[90.76729,26.30661],[90.76288,26.31144],[90.75903,26.31219],[90.75148,26.30963],[90.75033,26.30618],[90.74543,26.30091],[90.72979,26.29301],[90.72032,26.28248],[90.71982,26.26889],[90.7311,26.26834],[90.73326,26.25777],[90.7251,26.25636],[90.71762,26.2637],[90.7028,26.25591],[90.68378,26.25774],[90.66222,26.24824],[90.65496,26.24048],[90.65329,26.23736],[90.66526,26.21815],[90.6713,26.20273],[90.6689,26.20135],[90.67366,26.19715],[90.67641,26.18993],[90.6769,26.18112],[90.68399,26.1721],[90.69398,26.15082],[90.70789,26.14592],[90.71442,26.13012],[90.73044,26.13396],[90.73329,26.13605],[90.76878,26.13399],[90.79281,26.1292],[90.81565,26.1198],[90.82452,26.11871],[90.8395,26.10916],[90.84854,26.11494],[90.85932,26.11273],[90.86911,26.09716],[90.87152,26.09562],[90.91675,26.08976],[90.92368,26.09373],[90.92469,26.09703],[90.93345,26.10136],[90.9352,26.1013],[90.94022,26.09299],[90.95341,26.09598],[90.99701,26.1201],[91.00868,26.11516],[91.00965,26.11628],[91.00758,26.11983],[90.9988,26.12659],[90.9981,26.12874],[91.01542,26.12637],[91.02125,26.12015],[91.02969,26.11918],[91.03668,26.12363],[91.03718,26.1271],[91.04978,26.13151],[91.05429,26.13837],[91.06308,26.14542],[91.06912,26.15436],[91.07805,26.16032],[91.09008,26.16439],[91.10157,26.16491],[91.11696,26.15468],[91.13274,26.15903],[91.14521,26.15981],[91.17829,26.17502],[91.18866,26.17535],[91.21264,26.18001],[91.22207,26.1794],[91.22957,26.18216],[91.2373,26.18028],[91.23941,26.18598],[91.23919,26.193],[91.24788,26.19915],[91.24826,26.20136],[91.24136,26.2033],[91.23783,26.2094],[91.23215,26.21407],[91.21662,26.21854],[91.21525,26.22171],[91.21978,26.22718],[91.21579,26.23375],[91.21541,26.23886],[91.22093,26.24493],[91.22895,26.24383],[91.23183,26.2457],[91.23668,26.25052],[91.24083,26.26114],[91.23787,26.26323],[91.22996,26.26401],[91.22564,26.26363],[91.21851,26.26018],[91.21842,26.26388],[91.22107,26.26441],[91.21583,26.26733],[91.21907,26.27539],[91.2269,26.28255],[91.2404,26.27945],[91.26104,26.28934],[91.26,26.29415],[91.25494,26.29391],[91.25165,26.29585],[91.25011,26.30191],[91.25162,26.30434],[91.25803,26.30227],[91.26136,26.30423],[91.26066,26.31079],[91.25583,26.31151],[91.25582,26.31486],[91.25795,26.31714],[91.26302,26.31789],[91.26983,26.32902],[91.26626,26.33718],[91.26707,26.34058],[91.26914,26.34268],[91.27729,26.34096],[91.27633,26.34938],[91.27981,26.35571],[91.27504,26.35672],[91.2709,26.36461],[91.27762,26.37145],[91.28018,26.37216],[91.28003,26.37574],[91.28255,26.37517],[91.27833,26.37756],[91.27446,26.37506],[91.27551,26.37229],[91.26492,26.37089],[91.26406,26.36562],[91.26611,26.36276],[91.26528,26.36079],[91.2575,26.36406],[91.25253,26.36359],[91.25153,26.36614],[91.24846,26.36707],[91.24575,26.3721],[91.24677,26.3762],[91.24431,26.38097],[91.24014,26.37612],[91.23641,26.37697],[91.23576,26.38111],[91.24196,26.38823],[91.23496,26.39165],[91.23354,26.39956],[91.236,26.40335],[91.24186,26.40431],[91.23829,26.40737],[91.23439,26.42439],[91.23134,26.42639],[91.23228,26.42965],[91.23027,26.43687],[91.23155,26.44172],[91.238,26.44938],[91.238,26.45793],[91.24131,26.45826],[91.24773,26.46579],[91.25069,26.46611],[91.25221,26.47169],[91.25556,26.47426],[91.25569,26.4783],[91.25861,26.47846],[91.25782,26.48219],[91.26274,26.48594],[91.26099,26.48728],[91.26383,26.48775],[91.26343,26.48999],[91.26583,26.49105],[91.26443,26.49391],[91.26556,26.49576],[91.26303,26.49682],[91.26469,26.49882],[91.26007,26.50579],[91.25482,26.50655],[91.25233,26.5106],[91.24776,26.51078],[91.24758,26.52031],[91.24942,26.52377],[91.24379,26.52488],[91.2486,26.5291],[91.24787,26.53843],[91.25112,26.53757],[91.25551,26.54218],[91.25708,26.54152],[91.25731,26.5391],[91.25893,26.53942],[91.258,26.5431],[91.26081,26.54318],[91.26218,26.54554],[91.26573,26.54461],[91.2664,26.54925],[91.27066,26.54773],[91.26754,26.55104],[91.26769,26.55286],[91.27143,26.55047],[91.27447,26.55452],[91.27639,26.55482],[91.2758,26.5568],[91.28011,26.55755],[91.28427,26.56553],[91.28999,26.56439],[91.28915,26.5677],[91.27636,26.56926],[91.27548,26.56625],[91.26576,26.56701],[91.25837,26.5706],[91.25852,26.57699],[91.26729,26.57495],[91.26904,26.58441],[91.25171,26.58698],[91.25074,26.57832],[91.24596,26.57885],[91.24317,26.57527],[91.23743,26.57726],[91.23845,26.57851],[91.23634,26.58149],[91.23786,26.58214],[91.23649,26.58318],[91.23787,26.58541],[91.23653,26.58683],[91.23764,26.5931],[91.23394,26.59691],[91.23461,26.60337],[91.23338,26.60756],[91.239,26.60995],[91.23952,26.60839],[91.24745,26.60782],[91.24935,26.61487],[91.24848,26.61943],[91.23336,26.6168],[91.23021,26.6147],[91.22885,26.61663],[91.2314,26.61992],[91.23014,26.62358],[91.22621,26.62397],[91.21905,26.61951],[91.21639,26.62208],[91.21466,26.61992],[91.20993,26.62193],[91.19772,26.62301],[91.19851,26.60392],[91.18331,26.60509],[91.18097,26.6077],[91.18201,26.61566],[91.1867,26.622],[91.17666,26.62157],[91.17651,26.62287],[91.18501,26.62497],[91.18629,26.62775],[91.16843,26.62763],[91.16175,26.63015],[91.1609,26.63856],[91.15131,26.6389],[91.15032,26.642],[91.15298,26.64583],[91.15561,26.64545],[91.15486,26.64956],[91.15773,26.65086]],[[90.93858,26.51276],[90.93187,26.51309],[90.93032,26.51572],[90.91773,26.51446],[90.91654,26.51555],[90.91949,26.51824],[90.91921,26.52138],[90.91514,26.52273],[90.91467,26.52461],[90.91537,26.52749],[90.91827,26.52799],[90.93636,26.52654],[90.93195,26.53066],[90.93009,26.53799],[90.93609,26.54573],[90.94114,26.54649],[90.93609,26.542],[90.93624,26.54014],[90.94092,26.53761],[90.94547,26.53992],[90.94737,26.53908],[90.95026,26.53234],[90.95706,26.53051],[90.95845,26.52511],[90.95346,26.52034],[90.95494,26.51647],[90.9633,26.5173],[90.96504,26.51547],[90.96031,26.51467],[90.95656,26.51152],[90.94718,26.51232],[90.94075,26.51554],[90.93858,26.51276]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"281","area_level":"District","area_name":"Bongaigaon","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.85092,26.5186],[90.85155,26.52733],[90.84319,26.53212],[90.83717,26.52353],[90.80886,26.52116],[90.80099,26.52235],[90.78753,26.51756],[90.78701,26.52759],[90.77821,26.5309],[90.77463,26.53053],[90.77157,26.5216],[90.76155,26.51938],[90.75747,26.51469],[90.76074,26.50755],[90.76412,26.50617],[90.77607,26.50793],[90.77741,26.50484],[90.76629,26.48554],[90.7591,26.48298],[90.74931,26.48836],[90.7457,26.48849],[90.73472,26.48591],[90.73102,26.4829],[90.73264,26.47772],[90.73101,26.47183],[90.74473,26.46562],[90.74262,26.45477],[90.73872,26.44657],[90.74158,26.4448],[90.73568,26.44185],[90.72818,26.44633],[90.71626,26.44555],[90.7101,26.4516],[90.71614,26.45755],[90.71321,26.47054],[90.71698,26.47921],[90.71313,26.48204],[90.70559,26.48313],[90.68562,26.4818],[90.67819,26.48943],[90.68228,26.49907],[90.6497,26.5007],[90.62877,26.49664],[90.62078,26.49359],[90.61999,26.49564],[90.62241,26.49851],[90.62355,26.50777],[90.61099,26.51526],[90.60111,26.51635],[90.59843,26.51462],[90.59725,26.51036],[90.59448,26.51258],[90.58889,26.5116],[90.5904,26.50447],[90.6043,26.49815],[90.60229,26.4974],[90.60182,26.4914],[90.59964,26.49068],[90.597,26.49345],[90.58989,26.48984],[90.58732,26.49277],[90.58495,26.492],[90.58123,26.49628],[90.57521,26.49893],[90.57096,26.49678],[90.56253,26.49843],[90.54736,26.49781],[90.54033,26.50166],[90.53061,26.50339],[90.51958,26.50924],[90.51422,26.50259],[90.51009,26.50051],[90.50967,26.49906],[90.51211,26.49719],[90.50332,26.47172],[90.50432,26.46772],[90.49819,26.45947],[90.50568,26.45546],[90.50974,26.4489],[90.50802,26.44707],[90.50348,26.42966],[90.50411,26.42626],[90.49691,26.43008],[90.49578,26.4239],[90.4928,26.41929],[90.48522,26.41792],[90.48087,26.42059],[90.47824,26.40927],[90.48137,26.40184],[90.48097,26.39586],[90.47846,26.39076],[90.48083,26.3895],[90.47659,26.3856],[90.47386,26.3895],[90.474,26.39429],[90.47006,26.39562],[90.46795,26.39883],[90.47172,26.40609],[90.46003,26.41072],[90.45938,26.41919],[90.46321,26.42571],[90.46318,26.43094],[90.4562,26.43267],[90.46144,26.45072],[90.46397,26.45282],[90.47653,26.45463],[90.47707,26.46262],[90.46317,26.46468],[90.45977,26.453],[90.44713,26.45276],[90.43717,26.46105],[90.43157,26.4525],[90.43355,26.44892],[90.43424,26.44202],[90.44406,26.43983],[90.44465,26.43346],[90.44211,26.43027],[90.44247,26.42863],[90.44545,26.42875],[90.44685,26.42669],[90.44666,26.42499],[90.44417,26.42384],[90.44007,26.42405],[90.44524,26.41784],[90.4408,26.41784],[90.43301,26.41311],[90.43063,26.41633],[90.42665,26.4152],[90.42557,26.41665],[90.42962,26.42511],[90.42749,26.43014],[90.43122,26.43472],[90.42253,26.43705],[90.41725,26.43663],[90.4194,26.44872],[90.40859,26.44273],[90.39878,26.4416],[90.39673,26.43788],[90.39773,26.43453],[90.39997,26.43397],[90.40699,26.43776],[90.4042,26.43179],[90.40358,26.42875],[90.40489,26.42769],[90.41527,26.43067],[90.41558,26.42906],[90.40533,26.4142],[90.40932,26.4083],[90.40354,26.40668],[90.40447,26.40463],[90.40783,26.40351],[90.4169,26.40774],[90.4164,26.3907],[90.42093,26.39469],[90.42572,26.39606],[90.42788,26.38313],[90.42006,26.38419],[90.41919,26.38288],[90.42084,26.37959],[90.42424,26.3786],[90.42905,26.3813],[90.43253,26.38088],[90.43354,26.37547],[90.42663,26.36997],[90.42638,26.36741],[90.43676,26.36656],[90.43725,26.36485],[90.42489,26.363],[90.43118,26.35586],[90.43238,26.34482],[90.43594,26.3423],[90.43958,26.34349],[90.43901,26.35418],[90.43628,26.35914],[90.44411,26.3604],[90.44201,26.3532],[90.44565,26.35488],[90.44586,26.35243],[90.44301,26.34838],[90.44516,26.34593],[90.44852,26.34733],[90.45313,26.35746],[90.45704,26.35745],[90.45871,26.35453],[90.45368,26.34978],[90.45767,26.34747],[90.4539,26.3409],[90.46237,26.32825],[90.46627,26.32979],[90.47033,26.3344],[90.4741,26.33259],[90.47298,26.32965],[90.4658,26.32525],[90.47886,26.30945],[90.47921,26.30219],[90.48354,26.29604],[90.47587,26.288],[90.46777,26.28772],[90.46386,26.28975],[90.46337,26.28723],[90.47071,26.27941],[90.46595,26.27619],[90.45916,26.27689],[90.45519,26.2852],[90.45602,26.27654],[90.4586,26.27221],[90.46301,26.27172],[90.47078,26.27396],[90.47294,26.27298],[90.47315,26.27074],[90.4693,26.26732],[90.45797,26.26599],[90.45342,26.27221],[90.44482,26.26747],[90.44573,26.26069],[90.45313,26.25407],[90.45028,26.25078],[90.44564,26.25099],[90.44103,26.25328],[90.43663,26.26187],[90.4337,26.26202],[90.42993,26.25684],[90.4392,26.24371],[90.43191,26.24396],[90.42136,26.24057],[90.40137,26.2225],[90.39846,26.22177],[90.38961,26.22541],[90.3833,26.22518],[90.37918,26.22251],[90.37713,26.21488],[90.38187,26.20084],[90.39012,26.204],[90.39294,26.20293],[90.39041,26.18092],[90.38454,26.15828],[90.38597,26.15733],[90.40144,26.15924],[90.40321,26.15636],[90.40089,26.15365],[90.40465,26.15061],[90.41143,26.1516],[90.41308,26.1552],[90.42034,26.15697],[90.4413,26.15706],[90.44851,26.15853],[90.47466,26.17126],[90.4971,26.18909],[90.51681,26.19837],[90.54966,26.20585],[90.57728,26.2035],[90.58653,26.20675],[90.60015,26.21516],[90.61795,26.20933],[90.62237,26.20203],[90.639,26.20831],[90.65413,26.2113],[90.6689,26.20135],[90.67063,26.20163],[90.66526,26.21815],[90.65329,26.23736],[90.6604,26.24675],[90.68228,26.25734],[90.7028,26.25591],[90.7173,26.26367],[90.7251,26.25636],[90.73326,26.25777],[90.7311,26.26834],[90.71999,26.26846],[90.72032,26.28248],[90.72979,26.29301],[90.74543,26.30091],[90.75033,26.30618],[90.75148,26.30963],[90.76186,26.31196],[90.77159,26.30449],[90.78232,26.30218],[90.78911,26.30262],[90.79725,26.30582],[90.80287,26.30566],[90.80424,26.30706],[90.80658,26.31216],[90.80371,26.31748],[90.8008,26.32074],[90.79049,26.32401],[90.78943,26.3294],[90.79928,26.33467],[90.80486,26.34316],[90.80354,26.3476],[90.81787,26.36686],[90.82547,26.36522],[90.8409,26.35771],[90.84845,26.36079],[90.85691,26.36087],[90.85966,26.36271],[90.86192,26.37288],[90.86113,26.37727],[90.84726,26.39148],[90.84474,26.40174],[90.84532,26.40569],[90.8485,26.4087],[90.85347,26.41937],[90.85698,26.42017],[90.86159,26.43107],[90.85563,26.43905],[90.84873,26.44224],[90.83688,26.43344],[90.82376,26.43193],[90.81277,26.42819],[90.79918,26.43038],[90.79702,26.43563],[90.7976,26.43824],[90.80227,26.4406],[90.81632,26.4378],[90.82102,26.44048],[90.82762,26.44875],[90.82766,26.45325],[90.82106,26.45744],[90.81917,26.46058],[90.81997,26.4633],[90.81691,26.46482],[90.81939,26.47113],[90.81842,26.47569],[90.81219,26.47559],[90.80381,26.47787],[90.80218,26.48312],[90.80607,26.49327],[90.80487,26.49674],[90.80791,26.49995],[90.81104,26.50051],[90.8194,26.49183],[90.8237,26.49068],[90.82596,26.49352],[90.82728,26.50204],[90.8378,26.50401],[90.84206,26.4996],[90.84888,26.50748],[90.85092,26.5186]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"282","area_level":"District","area_name":"Cachar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.24961,24.97312],[93.24439,24.97035],[93.24361,24.97519],[93.24,24.97323],[93.23709,24.97784],[93.2345,24.97578],[93.23194,24.97615],[93.22899,24.98053],[93.2327,24.98257],[93.22736,24.98734],[93.22439,24.98452],[93.21943,24.98733],[93.21394,24.98812],[93.21279,24.98361],[93.20293,24.98175],[93.1969,24.9882],[93.19858,24.99139],[93.19255,24.99364],[93.18993,24.99223],[93.18793,24.9931],[93.1875,24.99841],[93.18488,24.99483],[93.18158,24.99711],[93.1788,24.99697],[93.178,24.99857],[93.17978,25.00073],[93.06803,25.00073],[93.06821,25.00347],[93.06537,25.00458],[93.06196,25.0024],[93.06006,25.00823],[93.05483,25.0108],[93.05802,25.01695],[93.06099,25.01774],[93.05899,25.02331],[93.05496,25.02515],[93.05318,25.03076],[93.04775,25.03507],[93.03679,25.03669],[93.03512,25.04085],[93.02937,25.04311],[93.02162,25.0509],[93.02121,25.05492],[93.0143,25.06189],[93.02111,25.0756],[93.03188,25.07815],[93.03221,25.07987],[93.03771,25.08221],[93.03906,25.08582],[93.04312,25.08857],[93.0471,25.09931],[93.03718,25.10473],[93.03085,25.10557],[93.02786,25.10358],[93.02228,25.10406],[93.01562,25.09753],[92.98418,25.09377],[92.97748,25.0857],[92.97084,25.08533],[92.95906,25.09015],[92.95266,25.08315],[92.95502,25.07678],[92.95184,25.06917],[92.94274,25.06906],[92.93016,25.07906],[92.92074,25.07696],[92.91721,25.07957],[92.91068,25.07826],[92.89751,25.07934],[92.89266,25.07466],[92.88856,25.07629],[92.88569,25.07516],[92.88134,25.06769],[92.87269,25.06448],[92.86918,25.067],[92.86119,25.06396],[92.85479,25.06452],[92.85038,25.06051],[92.84268,25.05701],[92.84109,25.05445],[92.83583,25.05271],[92.82722,25.05854],[92.82855,25.0708],[92.81264,25.08142],[92.80849,25.08178],[92.79615,25.08808],[92.78469,25.08592],[92.77798,25.08835],[92.77142,25.09793],[92.7648,25.1032],[92.76439,25.11008],[92.7671,25.11563],[92.75772,25.12951],[92.75398,25.13818],[92.75279,25.13902],[92.74464,25.13589],[92.73299,25.13952],[92.72991,25.14335],[92.72821,25.13634],[92.73491,25.12599],[92.73414,25.12392],[92.72911,25.12317],[92.72388,25.11826],[92.72254,25.11272],[92.71176,25.11704],[92.69957,25.11104],[92.69299,25.11089],[92.68389,25.11457],[92.67809,25.11325],[92.67318,25.10934],[92.6651,25.10914],[92.65678,25.11412],[92.65306,25.11393],[92.64866,25.11764],[92.64297,25.11784],[92.63901,25.11706],[92.63188,25.10912],[92.62327,25.10798],[92.62195,25.10331],[92.61953,25.10241],[92.61362,25.10304],[92.60261,25.11046],[92.59844,25.11078],[92.59185,25.1064],[92.57804,25.10441],[92.57182,25.1016],[92.56358,25.10125],[92.55549,25.10416],[92.54651,25.10401],[92.53807,25.09861],[92.53052,25.10031],[92.52922,25.10329],[92.51995,25.10594],[92.50892,25.10422],[92.49696,25.10951],[92.49102,25.10769],[92.48097,25.10858],[92.47743,25.10019],[92.47731,25.09078],[92.47941,25.08661],[92.47716,25.08501],[92.47758,25.08255],[92.47411,25.08197],[92.47535,25.07777],[92.47062,25.0764],[92.47202,25.07463],[92.47203,25.06725],[92.46843,25.06589],[92.46535,25.05867],[92.46357,25.05808],[92.46366,25.05494],[92.46023,25.05729],[92.45698,25.05407],[92.45705,25.04667],[92.46051,25.04873],[92.46238,25.04813],[92.46429,25.04362],[92.46298,25.03958],[92.46429,25.03744],[92.45981,25.03704],[92.45277,25.04075],[92.44907,25.04057],[92.4443,25.04519],[92.43828,25.04387],[92.43819,25.03465],[92.43223,25.03513],[92.42925,25.02915],[92.42528,25.02956],[92.42592,25.02006],[92.42424,25.01937],[92.4242,25.00949],[92.41635,24.98992],[92.42051,24.99033],[92.42208,24.98849],[92.42033,24.96595],[92.4237,24.96484],[92.44273,24.9662],[92.44763,24.965],[92.45763,24.9706],[92.46059,24.96981],[92.46817,24.96302],[92.46837,24.95991],[92.46616,24.95707],[92.45373,24.95365],[92.44974,24.94999],[92.44787,24.9437],[92.44927,24.93876],[92.47565,24.94177],[92.48361,24.94728],[92.48762,24.94677],[92.484,24.92845],[92.48756,24.92062],[92.4946,24.91586],[92.49289,24.90611],[92.49684,24.90202],[92.49116,24.89146],[92.49231,24.87577],[92.49061,24.87376],[92.5151,24.87956],[92.52167,24.86475],[92.52609,24.86111],[92.54606,24.86858],[92.55631,24.87742],[92.5728,24.87326],[92.57981,24.87368],[92.58058,24.87572],[92.59732,24.87914],[92.6014,24.87528],[92.60523,24.86609],[92.61263,24.86083],[92.62175,24.85829],[92.63596,24.85952],[92.64161,24.8572],[92.64629,24.85287],[92.64673,24.85007],[92.64393,24.84984],[92.63281,24.85541],[92.63043,24.85585],[92.62926,24.85408],[92.63111,24.84637],[92.63676,24.83986],[92.633,24.83128],[92.63937,24.83042],[92.6371,24.82524],[92.63834,24.82193],[92.63988,24.82046],[92.64268,24.82223],[92.64548,24.81936],[92.64598,24.81528],[92.64814,24.81458],[92.6535,24.81718],[92.65801,24.81713],[92.66289,24.81428],[92.6669,24.81685],[92.67297,24.81781],[92.67692,24.81521],[92.67757,24.81641],[92.67955,24.81252],[92.6838,24.81459],[92.68201,24.81266],[92.68295,24.81107],[92.68144,24.81027],[92.68295,24.80803],[92.68,24.80127],[92.67452,24.80067],[92.66905,24.79273],[92.66762,24.78918],[92.66917,24.78773],[92.66761,24.78632],[92.6636,24.7715],[92.66384,24.7651],[92.6607,24.75822],[92.65585,24.75361],[92.65478,24.73968],[92.65721,24.72308],[92.65713,24.70063],[92.65111,24.69147],[92.65031,24.6846],[92.65582,24.67854],[92.65648,24.6735],[92.66515,24.67362],[92.66553,24.62766],[92.67917,24.62748],[92.68724,24.62548],[92.68732,24.62404],[92.69578,24.6188],[92.69678,24.61534],[92.69185,24.61497],[92.68906,24.61256],[92.67532,24.61095],[92.67377,24.60893],[92.66646,24.60975],[92.66999,24.59988],[92.66727,24.59432],[92.66796,24.59117],[92.66959,24.58823],[92.67526,24.58454],[92.67924,24.58479],[92.68974,24.57517],[92.70153,24.5715],[92.70164,24.56611],[92.70921,24.56688],[92.71249,24.56886],[92.71603,24.56762],[92.71607,24.56307],[92.71737,24.56189],[92.72132,24.56488],[92.72298,24.5744],[92.73298,24.58238],[92.73215,24.5885],[92.73535,24.59038],[92.73589,24.58669],[92.73867,24.58688],[92.74152,24.58421],[92.74355,24.58526],[92.74559,24.58264],[92.74954,24.58196],[92.75077,24.58392],[92.75273,24.58393],[92.75363,24.58085],[92.75891,24.57775],[92.7624,24.5712],[92.76187,24.56827],[92.76438,24.56705],[92.76948,24.57094],[92.7722,24.56873],[92.77582,24.57143],[92.7802,24.56906],[92.77971,24.56571],[92.77146,24.55176],[92.77369,24.5502],[92.76004,24.53031],[92.75732,24.52234],[92.75938,24.51858],[92.76299,24.52267],[92.76384,24.52098],[92.7967,24.43283],[92.80127,24.42965],[92.80116,24.42535],[92.8027,24.42436],[92.80179,24.42058],[92.79937,24.41913],[92.80434,24.41753],[92.80685,24.41885],[92.809,24.41569],[92.8088,24.41268],[92.81161,24.41328],[92.81007,24.41186],[92.81216,24.41148],[92.81245,24.40928],[92.81894,24.41005],[92.81768,24.40802],[92.82016,24.40371],[92.82995,24.40029],[92.82314,24.38647],[92.82661,24.38123],[92.82573,24.37703],[92.82959,24.37359],[92.83575,24.37849],[92.83985,24.3767],[92.84336,24.37787],[92.84523,24.3797],[92.84624,24.386],[92.86094,24.3985],[92.8688,24.39465],[92.87334,24.39486],[92.88369,24.40241],[92.88856,24.39833],[92.89145,24.40045],[92.8908,24.39833],[92.89256,24.39747],[92.89297,24.39268],[92.90288,24.39107],[92.90392,24.3922],[92.90287,24.39577],[92.90671,24.40276],[92.90707,24.41129],[92.90934,24.41291],[92.91096,24.41197],[92.90927,24.41014],[92.92199,24.40352],[92.92037,24.40088],[92.92436,24.39789],[92.92419,24.39605],[92.92753,24.39648],[92.9312,24.39301],[92.9347,24.39282],[92.9367,24.39839],[92.93931,24.40072],[92.94546,24.40005],[92.94761,24.40236],[92.95117,24.40299],[92.95329,24.40158],[92.9564,24.39329],[92.95928,24.3919],[92.96622,24.39685],[92.9685,24.4012],[92.97384,24.40571],[92.97366,24.4083],[92.98482,24.40565],[92.99201,24.39914],[92.99429,24.39894],[92.99896,24.40014],[93.004,24.40706],[93.00647,24.40744],[93.00753,24.40945],[93.00578,24.40931],[93.00598,24.41065],[93.00885,24.41168],[93.01195,24.41672],[93.01507,24.41553],[93.01617,24.40871],[93.02344,24.40675],[93.03247,24.40856],[93.04164,24.41301],[93.04265,24.42055],[93.03728,24.42362],[93.03292,24.42875],[93.03642,24.44222],[93.03572,24.45976],[93.03811,24.46193],[93.04366,24.46177],[93.04556,24.46328],[93.04637,24.47357],[93.04024,24.48631],[93.03256,24.4953],[93.04277,24.50479],[93.04273,24.50635],[93.03721,24.50939],[93.03874,24.51287],[93.04131,24.51557],[93.05013,24.51943],[93.05055,24.5232],[93.04719,24.52857],[93.04999,24.54421],[93.05701,24.55441],[93.06052,24.55358],[93.0617,24.54731],[93.06462,24.54679],[93.07081,24.55805],[93.06917,24.56188],[93.05818,24.57384],[93.06216,24.57624],[93.07574,24.57505],[93.0844,24.57113],[93.08916,24.57337],[93.09321,24.5815],[93.10184,24.58079],[93.10436,24.58238],[93.10158,24.58759],[93.09359,24.5917],[93.08921,24.59238],[93.08027,24.59011],[93.07115,24.60064],[93.07394,24.60561],[93.08421,24.6136],[93.07714,24.62008],[93.07568,24.62454],[93.07872,24.62885],[93.08521,24.62817],[93.08728,24.62967],[93.08763,24.63699],[93.08319,24.64981],[93.08625,24.65273],[93.09537,24.65283],[93.09647,24.66426],[93.10415,24.67416],[93.10191,24.6807],[93.09011,24.67717],[93.09229,24.68548],[93.09126,24.68803],[93.08184,24.70216],[93.07355,24.70781],[93.07738,24.71296],[93.08292,24.70867],[93.08662,24.70953],[93.0901,24.71432],[93.09079,24.71818],[93.09325,24.71891],[93.09037,24.72139],[93.09065,24.72508],[93.09589,24.72421],[93.0971,24.73195],[93.10776,24.74144],[93.10272,24.74685],[93.1016,24.74277],[93.09988,24.74317],[93.09833,24.74675],[93.10112,24.74958],[93.09825,24.75437],[93.10238,24.75922],[93.10361,24.7672],[93.10028,24.7736],[93.10052,24.77942],[93.10522,24.78111],[93.1043,24.78631],[93.10611,24.78844],[93.10481,24.79128],[93.10839,24.79184],[93.10798,24.79487],[93.1114,24.80058],[93.10943,24.81148],[93.12137,24.81922],[93.12194,24.81662],[93.1179,24.80925],[93.11886,24.80766],[93.12703,24.80876],[93.13176,24.80521],[93.13483,24.81058],[93.13857,24.80999],[93.13471,24.80813],[93.1411,24.80126],[93.14175,24.79728],[93.14626,24.79744],[93.15117,24.79468],[93.15115,24.79228],[93.1485,24.78908],[93.14946,24.78737],[93.15424,24.78871],[93.15987,24.79338],[93.16109,24.79623],[93.16952,24.80138],[93.17357,24.80123],[93.17359,24.796],[93.17572,24.79373],[93.17935,24.79721],[93.17995,24.80307],[93.19153,24.8044],[93.19697,24.81157],[93.19006,24.81864],[93.19591,24.83091],[93.19165,24.83299],[93.19161,24.8344],[93.19327,24.83557],[93.19779,24.83416],[93.20061,24.83876],[93.19917,24.83931],[93.19611,24.83669],[93.19197,24.83972],[93.19203,24.84179],[93.19489,24.84433],[93.2006,24.8413],[93.20155,24.84206],[93.20126,24.84854],[93.19812,24.85301],[93.19483,24.85385],[93.19955,24.85515],[93.20407,24.85105],[93.20687,24.85576],[93.21003,24.85608],[93.21361,24.86063],[93.21471,24.86529],[93.2169,24.86535],[93.22145,24.86951],[93.22036,24.87352],[93.22644,24.87283],[93.22196,24.87766],[93.22151,24.88152],[93.22492,24.88018],[93.22774,24.88503],[93.23279,24.88466],[93.23155,24.88754],[93.22799,24.88834],[93.22602,24.89193],[93.22758,24.89293],[93.23212,24.89188],[93.22961,24.89782],[93.23849,24.8987],[93.2408,24.90336],[93.24032,24.90513],[93.23778,24.90582],[93.2352,24.91141],[93.24406,24.91055],[93.24884,24.91485],[93.24597,24.92525],[93.23934,24.92437],[93.23849,24.92568],[93.24471,24.9325],[93.2451,24.93539],[93.24264,24.93611],[93.23713,24.93253],[93.23681,24.93716],[93.24492,24.94119],[93.24762,24.9398],[93.25127,24.94064],[93.25097,24.94341],[93.24732,24.94512],[93.24913,24.94817],[93.24536,24.95081],[93.25,24.95514],[93.26087,24.95855],[93.26301,24.96134],[93.26092,24.97146],[93.25716,24.97362],[93.24961,24.97312]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"283","area_level":"District","area_name":"Darrang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.18291,26.64511],[92.17638,26.6525],[92.18131,26.65585],[92.18293,26.65954],[92.1812,26.67027],[92.15872,26.66607],[92.14677,26.65932],[92.11854,26.65266],[92.11908,26.65075],[92.12377,26.64917],[92.12404,26.64704],[92.12148,26.64373],[92.10948,26.64182],[92.10268,26.64773],[92.07269,26.64695],[92.0697,26.64386],[92.0712,26.64174],[92.06899,26.64012],[92.07108,26.63806],[92.06933,26.63664],[92.07166,26.63436],[92.07035,26.62456],[92.05628,26.62303],[92.0464,26.62449],[92.04566,26.62056],[92.03721,26.62046],[92.03964,26.61229],[92.03857,26.60914],[92.02545,26.6095],[92.02935,26.6052],[92.03332,26.60538],[92.03364,26.60236],[92.03664,26.60059],[92.03268,26.59611],[92.03314,26.59272],[92.02151,26.58826],[92.00951,26.5899],[92.01444,26.57806],[92.01407,26.57534],[92.01202,26.57614],[92.0094,26.57376],[92.00196,26.57148],[92.00421,26.56987],[92.00388,26.56613],[92.00637,26.56404],[92.00582,26.55963],[92.00866,26.55785],[92.00938,26.55515],[92.01687,26.55347],[92.02566,26.55434],[92.02842,26.5459],[92.0311,26.54752],[92.03,26.55],[92.04183,26.55056],[92.04126,26.54838],[92.04735,26.54844],[92.05446,26.54413],[92.0568,26.54691],[92.05827,26.55098],[92.05827,26.5608],[92.06241,26.57477],[92.06057,26.57565],[92.06243,26.58735],[92.07944,26.58935],[92.08662,26.57595],[92.08901,26.57494],[92.10065,26.57937],[92.10129,26.57635],[92.10863,26.57036],[92.10796,26.56748],[92.10177,26.56125],[92.10836,26.55545],[92.10704,26.55218],[92.10188,26.55198],[92.09796,26.55491],[92.09264,26.55413],[92.09142,26.55234],[92.09425,26.54944],[92.086,26.54318],[92.08169,26.54238],[92.07399,26.54316],[92.07009,26.54651],[92.0684,26.54513],[92.06842,26.51009],[92.05661,26.50913],[92.05779,26.50564],[92.05602,26.50014],[92.06126,26.49999],[92.06101,26.49774],[92.05862,26.48819],[92.05309,26.48897],[92.05335,26.48544],[92.04968,26.48106],[92.05137,26.47863],[92.05049,26.47546],[92.04204,26.4806],[92.04148,26.48442],[92.03838,26.48577],[92.03806,26.49437],[92.04355,26.49517],[92.04017,26.50002],[92.04082,26.51003],[92.02752,26.50692],[92.02504,26.50892],[92.02637,26.51135],[92.03134,26.51379],[92.03477,26.52044],[92.03443,26.52438],[92.03306,26.52523],[92.0293,26.52262],[92.02934,26.52578],[92.0263,26.52649],[92.02257,26.52437],[92.02235,26.52049],[92.01937,26.52191],[92.01875,26.52764],[92.02085,26.52979],[92.02715,26.53055],[92.02817,26.54223],[92.02457,26.54088],[92.01196,26.54144],[92.00725,26.54431],[92.00354,26.54353],[92.00354,26.54208],[92.00905,26.54166],[92.0131,26.53654],[92.00495,26.5346],[91.99995,26.53595],[91.99458,26.53997],[91.99021,26.5551],[91.98475,26.55466],[91.9855,26.54937],[91.98224,26.5518],[91.9801,26.55651],[91.97501,26.55191],[91.97248,26.55621],[91.97007,26.5561],[91.96466,26.5554],[91.96444,26.55221],[91.95878,26.55178],[91.96052,26.54557],[91.96643,26.54272],[91.96685,26.54094],[91.96499,26.53989],[91.95387,26.54158],[91.95167,26.54246],[91.95175,26.54437],[91.92782,26.53733],[91.92585,26.54168],[91.92781,26.54517],[91.92376,26.54707],[91.92519,26.55764],[91.92194,26.55768],[91.92189,26.56765],[91.90913,26.56758],[91.89662,26.56963],[91.89245,26.56183],[91.89351,26.55313],[91.88874,26.55093],[91.88427,26.53852],[91.87978,26.53776],[91.87898,26.53387],[91.8699,26.53186],[91.86612,26.534],[91.86465,26.53752],[91.85968,26.53903],[91.85401,26.53839],[91.85287,26.54864],[91.85541,26.54896],[91.85549,26.55228],[91.85002,26.55792],[91.84832,26.56316],[91.85026,26.56594],[91.84668,26.56694],[91.84987,26.56792],[91.84882,26.57091],[91.84987,26.57309],[91.84743,26.5744],[91.83818,26.57422],[91.83572,26.57728],[91.83745,26.58073],[91.83733,26.58621],[91.82918,26.58605],[91.82891,26.58299],[91.82586,26.58212],[91.82634,26.57923],[91.82284,26.5774],[91.82081,26.57209],[91.83132,26.57124],[91.82993,26.55818],[91.82858,26.56053],[91.82234,26.56138],[91.81292,26.55941],[91.8129,26.55703],[91.81117,26.55775],[91.81092,26.55347],[91.81285,26.54383],[91.80974,26.54398],[91.81199,26.53967],[91.8241,26.54633],[91.82751,26.54498],[91.82715,26.5369],[91.83124,26.52555],[91.83262,26.52558],[91.83316,26.51531],[91.82668,26.51512],[91.81813,26.51185],[91.81907,26.50666],[91.81714,26.50548],[91.79966,26.50586],[91.79974,26.51289],[91.79704,26.51119],[91.79428,26.51249],[91.78854,26.51041],[91.78811,26.51208],[91.78052,26.51183],[91.78355,26.50636],[91.78389,26.50177],[91.78725,26.49804],[91.78189,26.49822],[91.78122,26.49564],[91.78729,26.4923],[91.79908,26.49176],[91.80175,26.48962],[91.80151,26.48582],[91.79977,26.48449],[91.79976,26.47712],[91.79651,26.47531],[91.78782,26.47536],[91.77908,26.47964],[91.77733,26.47006],[91.77316,26.46976],[91.77054,26.46639],[91.76622,26.46835],[91.76452,26.45999],[91.77214,26.44723],[91.77104,26.44466],[91.77236,26.43479],[91.77087,26.43289],[91.77325,26.43055],[91.77469,26.42532],[91.77871,26.42743],[91.77732,26.41968],[91.78294,26.41774],[91.78002,26.41389],[91.78086,26.41148],[91.7848,26.40804],[91.79457,26.40943],[91.79636,26.406],[91.79464,26.40275],[91.79793,26.40069],[91.79863,26.39637],[91.79634,26.39299],[91.80427,26.38934],[91.80294,26.38374],[91.8051,26.38245],[91.81166,26.38287],[91.81825,26.3793],[91.82066,26.37419],[91.82227,26.3691],[91.82018,26.36513],[91.82296,26.36408],[91.8195,26.36027],[91.8216,26.35438],[91.81615,26.34997],[91.81955,26.34639],[91.81698,26.3429],[91.82169,26.33182],[91.81913,26.32884],[91.81862,26.32483],[91.815,26.32773],[91.81146,26.32624],[91.80849,26.32254],[91.80885,26.31926],[91.81679,26.31689],[91.81404,26.31107],[91.80994,26.31338],[91.80514,26.31353],[91.80355,26.3178],[91.79742,26.31326],[91.79544,26.31687],[91.79592,26.32074],[91.79335,26.32158],[91.79154,26.31976],[91.79307,26.31715],[91.79312,26.31144],[91.78941,26.31188],[91.7874,26.30651],[91.78184,26.30544],[91.78212,26.30387],[91.78542,26.30363],[91.78327,26.30129],[91.78218,26.29623],[91.78629,26.29142],[91.78452,26.2876],[91.78656,26.28447],[91.78603,26.2784],[91.78778,26.27442],[91.79054,26.2726],[91.79027,26.26779],[91.78636,26.26484],[91.78449,26.25134],[91.78193,26.24483],[91.77582,26.2405],[91.77348,26.24266],[91.7639,26.24001],[91.76422,26.23263],[91.74716,26.22209],[91.74426,26.21537],[91.74654,26.21035],[91.77092,26.19848],[91.78463,26.20218],[91.79187,26.20588],[91.80075,26.20581],[91.81594,26.20914],[91.81754,26.20746],[91.82075,26.20761],[91.8399,26.21528],[91.85914,26.21714],[91.86968,26.22109],[91.87262,26.21711],[91.87989,26.21672],[91.88593,26.21887],[91.88605,26.22181],[91.89982,26.22713],[91.90206,26.22662],[91.90853,26.23102],[91.91228,26.2403],[91.91903,26.24644],[91.92405,26.24785],[91.92929,26.24231],[91.93384,26.24322],[91.94528,26.25101],[91.95267,26.2541],[91.95372,26.25706],[91.96003,26.25984],[91.97358,26.26976],[91.97813,26.27492],[91.98332,26.2751],[91.98607,26.27069],[91.99205,26.26973],[92.00658,26.27746],[92.01042,26.27795],[92.01539,26.28315],[92.01491,26.28074],[92.01712,26.27654],[92.02428,26.27111],[92.0322,26.27035],[92.04007,26.27309],[92.04378,26.27758],[92.04783,26.27875],[92.04708,26.2819],[92.05765,26.29753],[92.06142,26.31047],[92.06821,26.31188],[92.07515,26.31724],[92.07917,26.33074],[92.08416,26.33898],[92.08633,26.34054],[92.09411,26.33897],[92.09982,26.34104],[92.10376,26.34707],[92.10395,26.35453],[92.12288,26.37069],[92.14291,26.40137],[92.1544,26.41094],[92.17561,26.42324],[92.18187,26.4245],[92.19998,26.42128],[92.20792,26.41443],[92.21863,26.41572],[92.23413,26.42762],[92.23842,26.43952],[92.24459,26.44615],[92.2557,26.45184],[92.27498,26.45113],[92.28116,26.45425],[92.2947,26.46646],[92.30067,26.47497],[92.31168,26.48568],[92.34133,26.50164],[92.34415,26.50471],[92.34276,26.50754],[92.3314,26.51591],[92.34742,26.52629],[92.35224,26.53056],[92.35419,26.53486],[92.36092,26.53154],[92.36699,26.53204],[92.37382,26.5281],[92.37673,26.52882],[92.38056,26.5273],[92.37503,26.54544],[92.36862,26.55078],[92.36758,26.55908],[92.36575,26.56063],[92.3609,26.5587],[92.36609,26.56623],[92.36413,26.56786],[92.35218,26.57006],[92.35372,26.57732],[92.3616,26.58345],[92.36151,26.58628],[92.35752,26.58855],[92.34598,26.58163],[92.32719,26.58744],[92.32446,26.59171],[92.32533,26.59678],[92.34101,26.59636],[92.34423,26.59784],[92.34271,26.60092],[92.33806,26.60189],[92.33175,26.60639],[92.33158,26.60927],[92.33511,26.61749],[92.33477,26.62204],[92.33083,26.62347],[92.32647,26.61931],[92.32892,26.61329],[92.32817,26.61172],[92.32066,26.61344],[92.32101,26.60849],[92.31739,26.60615],[92.30999,26.60838],[92.3063,26.61405],[92.31391,26.61914],[92.31423,26.62412],[92.30349,26.62328],[92.29765,26.62099],[92.29415,26.62206],[92.29479,26.63399],[92.29232,26.64429],[92.28957,26.65099],[92.28576,26.65531],[92.27579,26.65756],[92.27455,26.65052],[92.27108,26.6491],[92.27263,26.64645],[92.27319,26.63358],[92.27051,26.62691],[92.27313,26.6163],[92.24749,26.6102],[92.24669,26.60645],[92.24219,26.60326],[92.24313,26.60086],[92.24814,26.60051],[92.24398,26.58957],[92.24511,26.58678],[92.24855,26.58561],[92.24888,26.57948],[92.25262,26.5739],[92.255,26.57175],[92.26173,26.57238],[92.26465,26.57066],[92.25819,26.56673],[92.25768,26.56404],[92.25437,26.56072],[92.24389,26.56293],[92.24183,26.55844],[92.23051,26.54879],[92.2247,26.55364],[92.2266,26.5645],[92.23381,26.5683],[92.22648,26.57651],[92.22702,26.5939],[92.23454,26.59701],[92.22885,26.60985],[92.22413,26.60989],[92.22548,26.61509],[92.22419,26.62163],[92.22027,26.62823],[92.20719,26.62524],[92.20432,26.62785],[92.20644,26.63022],[92.20541,26.63168],[92.19836,26.63499],[92.19367,26.63499],[92.19443,26.63927],[92.20202,26.63881],[92.20504,26.64071],[92.20521,26.64419],[92.20205,26.65135],[92.19982,26.65162],[92.19592,26.64578],[92.18982,26.65176],[92.18679,26.64604],[92.18291,26.64511]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"284","area_level":"District","area_name":"Dhemaji","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.47735,27.83149],[95.48253,27.83591],[95.48781,27.84484],[95.48801,27.85386],[95.49319,27.85828],[95.51519,27.85948],[95.51458,27.87946],[95.37958,27.83918],[95.30876,27.86801],[94.85235,27.7276],[94.84841,27.71711],[94.84783,27.70557],[94.84097,27.70061],[94.82078,27.69208],[94.80828,27.69198],[94.79698,27.69563],[94.79373,27.69518],[94.79187,27.68809],[94.78905,27.68518],[94.78411,27.6839],[94.77866,27.6797],[94.76916,27.67952],[94.76093,27.66504],[94.75431,27.66055],[94.74137,27.65989],[94.73573,27.66329],[94.72897,27.66453],[94.72514,27.669],[94.72051,27.66692],[94.71602,27.65753],[94.70904,27.65658],[94.70049,27.66145],[94.6909,27.66174],[94.68791,27.66514],[94.6838,27.66017],[94.68665,27.65099],[94.68268,27.64589],[94.67911,27.64515],[94.67275,27.64722],[94.66265,27.64533],[94.6574,27.64178],[94.64668,27.63807],[94.64137,27.62944],[94.63319,27.62416],[94.62846,27.62454],[94.62347,27.62781],[94.62087,27.62495],[94.61438,27.62397],[94.60659,27.61862],[94.60289,27.62123],[94.60001,27.61817],[94.59559,27.61968],[94.58755,27.61846],[94.57974,27.6123],[94.57685,27.60589],[94.57409,27.60381],[94.56857,27.60234],[94.56222,27.6049],[94.55532,27.60075],[94.54459,27.60103],[94.53596,27.59253],[94.53214,27.59457],[94.52958,27.59139],[94.52201,27.59142],[94.52151,27.58455],[94.51385,27.58011],[94.50247,27.57741],[94.50141,27.57399],[94.49896,27.57217],[94.4778,27.57614],[94.46791,27.56115],[94.46173,27.55524],[94.45644,27.55984],[94.45494,27.5666],[94.45133,27.57176],[94.4396,27.58122],[94.43333,27.58842],[94.43171,27.59162],[94.43168,27.60033],[94.41846,27.59752],[94.40161,27.58498],[94.39239,27.58902],[94.38859,27.58479],[94.3819,27.5816],[94.3765,27.58237],[94.36989,27.57475],[94.36401,27.57435],[94.35914,27.57693],[94.35068,27.57711],[94.34492,27.58213],[94.33824,27.58122],[94.33697,27.57919],[94.33283,27.58695],[94.32432,27.58462],[94.32278,27.58864],[94.30926,27.59078],[94.30182,27.60102],[94.29826,27.60193],[94.28985,27.59616],[94.2883,27.58926],[94.2774,27.58944],[94.27381,27.59497],[94.27465,27.59983],[94.27247,27.60294],[94.2564,27.61051],[94.25426,27.61423],[94.25468,27.61579],[94.26094,27.6181],[94.26058,27.62187],[94.2631,27.62426],[94.26558,27.62421],[94.26711,27.62735],[94.26741,27.62949],[94.26171,27.63587],[94.25441,27.63565],[94.25146,27.63763],[94.24847,27.634],[94.23756,27.63268],[94.22279,27.61141],[94.21736,27.60725],[94.20959,27.60891],[94.20992,27.60391],[94.21337,27.6002],[94.22664,27.59774],[94.22283,27.5882],[94.22495,27.57409],[94.23481,27.56916],[94.24672,27.56947],[94.2587,27.55546],[94.2594,27.54905],[94.2568,27.54008],[94.25815,27.53492],[94.26826,27.52084],[94.27025,27.51288],[94.27888,27.49532],[94.27762,27.46672],[94.29425,27.44747],[94.30586,27.43834],[94.30737,27.43463],[94.3058,27.42537],[94.30803,27.41272],[94.30532,27.39712],[94.29487,27.38491],[94.28792,27.38337],[94.28335,27.38507],[94.2743,27.39233],[94.26877,27.39908],[94.26372,27.40033],[94.24908,27.39798],[94.24705,27.39199],[94.25021,27.38526],[94.25584,27.37899],[94.27178,27.36502],[94.28291,27.35867],[94.29222,27.3565],[94.29891,27.3505],[94.30199,27.34454],[94.29977,27.33781],[94.2998,27.33106],[94.30508,27.32022],[94.30997,27.31842],[94.31948,27.31972],[94.32728,27.31846],[94.336,27.32659],[94.3394,27.3369],[94.34696,27.33786],[94.35587,27.34139],[94.36322,27.3396],[94.37498,27.34105],[94.37989,27.34553],[94.38626,27.34652],[94.39001,27.35069],[94.39278,27.34808],[94.39072,27.34411],[94.39273,27.34068],[94.39452,27.34113],[94.39481,27.34401],[94.3981,27.34449],[94.40624,27.33946],[94.4033,27.33459],[94.40603,27.33092],[94.40717,27.33137],[94.40667,27.33489],[94.41216,27.33832],[94.41574,27.33303],[94.41766,27.33356],[94.41857,27.33712],[94.42066,27.33621],[94.42445,27.33836],[94.42672,27.33798],[94.42568,27.33511],[94.42724,27.33359],[94.42673,27.33102],[94.4291,27.33093],[94.4261,27.32978],[94.43002,27.32785],[94.42821,27.32433],[94.43163,27.32134],[94.42993,27.31828],[94.4314,27.31745],[94.43391,27.31924],[94.44216,27.31664],[94.43905,27.3099],[94.44389,27.30871],[94.44644,27.31128],[94.44505,27.31396],[94.44591,27.32237],[94.44745,27.32296],[94.44949,27.31995],[94.45566,27.32105],[94.4604,27.33231],[94.46653,27.33403],[94.46863,27.32981],[94.47403,27.32784],[94.47997,27.33125],[94.48362,27.32973],[94.4823,27.33272],[94.48579,27.33129],[94.48907,27.33573],[94.48863,27.33158],[94.49148,27.33296],[94.49331,27.33189],[94.49484,27.33382],[94.49601,27.33037],[94.49817,27.33005],[94.4992,27.3311],[94.49642,27.33261],[94.5017,27.33356],[94.50169,27.33601],[94.50522,27.33444],[94.50441,27.33743],[94.50677,27.33743],[94.5093,27.33989],[94.50761,27.34112],[94.5094,27.34282],[94.50771,27.34442],[94.51299,27.34933],[94.5151,27.34839],[94.51489,27.34565],[94.52176,27.34849],[94.52778,27.34613],[94.53676,27.34775],[94.54161,27.35209],[94.54594,27.35266],[94.54805,27.35549],[94.55967,27.35899],[94.57446,27.37042],[94.57816,27.36872],[94.57963,27.37221],[94.58671,27.37236],[94.59233,27.37785],[94.59337,27.37727],[94.59073,27.37132],[94.59073,27.36745],[94.59316,27.36415],[94.59316,27.35848],[94.61197,27.355],[94.6163,27.36481],[94.6182,27.3651],[94.62042,27.36274],[94.62084,27.35736],[94.62528,27.35405],[94.62243,27.35009],[94.62443,27.34678],[94.62359,27.34377],[94.62898,27.34065],[94.62824,27.33763],[94.62199,27.33309],[94.6346,27.32021],[94.63817,27.32149],[94.6396,27.32766],[94.63727,27.33605],[94.64209,27.34208],[94.64998,27.34588],[94.66106,27.34858],[94.66639,27.35263],[94.66533,27.36867],[94.66222,27.37197],[94.66459,27.37713],[94.67885,27.38097],[94.68446,27.38401],[94.69082,27.39348],[94.68638,27.41129],[94.6932,27.42171],[94.70358,27.42565],[94.71879,27.42746],[94.72294,27.43062],[94.72736,27.43979],[94.73167,27.44326],[94.74009,27.43634],[94.74623,27.43766],[94.74833,27.44282],[94.74956,27.45362],[94.75496,27.45977],[94.75985,27.47045],[94.76472,27.47576],[94.76892,27.47782],[94.77106,27.4825],[94.77634,27.48461],[94.78993,27.48215],[94.79316,27.48282],[94.79856,27.49164],[94.81087,27.50061],[94.81726,27.50784],[94.8789,27.56117],[94.88412,27.57012],[94.8944,27.57901],[94.90453,27.57887],[94.91481,27.58775],[94.92003,27.59671],[94.92517,27.60115],[94.9558,27.61426],[94.96102,27.62321],[94.9816,27.64097],[94.98683,27.64992],[94.99645,27.65931],[95.01672,27.65654],[95.03602,27.66862],[95.05308,27.66274],[95.06639,27.66252],[95.07108,27.66394],[95.09298,27.66045],[95.10414,27.66751],[95.10875,27.679],[95.11779,27.68587],[95.15532,27.69536],[95.16286,27.69491],[95.17635,27.69961],[95.18899,27.7014],[95.19566,27.70489],[95.20018,27.69399],[95.1888,27.67651],[95.20475,27.65827],[95.24645,27.65678],[95.26253,27.67127],[95.27449,27.69033],[95.28548,27.69671],[95.34657,27.70134],[95.36095,27.70741],[95.36694,27.71368],[95.38298,27.72447],[95.39158,27.72689],[95.3981,27.73646],[95.39566,27.75067],[95.40474,27.76059],[95.40494,27.76961],[95.41528,27.77846],[95.42055,27.78739],[95.43607,27.80065],[95.44114,27.80056],[95.45138,27.80489],[95.4669,27.81815],[95.47218,27.82708],[95.47735,27.83149]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"285","area_level":"District","area_name":"Dhubri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.22249,26.35352],[90.23185,26.35749],[90.23422,26.36549],[90.23194,26.3705],[90.22636,26.37554],[90.22666,26.38506],[90.20659,26.37478],[90.20506,26.37113],[90.20783,26.36768],[90.20704,26.36312],[90.19125,26.35268],[90.18784,26.34562],[90.18175,26.34695],[90.1717,26.34193],[90.16883,26.3448],[90.16849,26.34836],[90.16157,26.34809],[90.15771,26.34937],[90.15696,26.35106],[90.15576,26.35047],[90.1561,26.35183],[90.14864,26.35261],[90.12782,26.34621],[90.11673,26.33891],[90.11727,26.32689],[90.11605,26.32359],[90.11809,26.31681],[90.10767,26.31248],[90.11982,26.30812],[90.12429,26.30379],[90.12503,26.29873],[90.11902,26.29446],[90.12337,26.28547],[90.12602,26.28316],[90.12963,26.28392],[90.12884,26.28961],[90.13067,26.29331],[90.13394,26.29546],[90.13773,26.29531],[90.14084,26.29322],[90.14317,26.28764],[90.14048,26.27617],[90.13783,26.27321],[90.1304,26.27063],[90.12652,26.26512],[90.12046,26.26609],[90.11967,26.25977],[90.11747,26.25854],[90.11418,26.25988],[90.11096,26.26541],[90.10336,26.26779],[90.09844,26.26708],[90.09738,26.26224],[90.10144,26.25811],[90.10396,26.25113],[90.12029,26.25043],[90.12176,26.23633],[90.13083,26.23418],[90.13561,26.22952],[90.13485,26.22008],[90.13628,26.21549],[90.14159,26.21512],[90.14734,26.22001],[90.1488,26.2165],[90.15202,26.21653],[90.15206,26.20897],[90.13981,26.20112],[90.13644,26.20092],[90.1256,26.19573],[90.12048,26.19925],[90.11246,26.19656],[90.11284,26.19152],[90.10131,26.18496],[90.09792,26.19093],[90.09118,26.18659],[90.08722,26.18619],[90.08486,26.18223],[90.07399,26.175],[90.06966,26.16935],[90.06821,26.17508],[90.06377,26.17262],[90.05862,26.16709],[90.05253,26.15554],[90.04128,26.15064],[90.03334,26.14425],[90.02499,26.12676],[89.99991,26.12612],[90.00017,26.13021],[89.99731,26.13232],[89.98197,26.13341],[89.98203,26.13655],[89.97988,26.13499],[89.97784,26.12972],[89.96688,26.12697],[89.95792,26.12896],[89.94804,26.12849],[89.9382,26.13285],[89.94072,26.12695],[89.93559,26.11686],[89.91329,26.11222],[89.90888,26.11242],[89.90087,26.11728],[89.903,26.11857],[89.91164,26.1133],[89.91611,26.11632],[89.91477,26.12217],[89.90853,26.13246],[89.88258,26.13562],[89.8827,26.13814],[89.87878,26.14295],[89.87445,26.14385],[89.87007,26.1471],[89.86813,26.15182],[89.87199,26.17244],[89.86975,26.1795],[89.87401,26.18464],[89.87528,26.18905],[89.87165,26.1913],[89.86865,26.18576],[89.86592,26.18472],[89.8606,26.18669],[89.85991,26.18959],[89.86151,26.19328],[89.87088,26.19729],[89.87299,26.20209],[89.87087,26.20724],[89.86286,26.21383],[89.85992,26.21992],[89.86184,26.2243],[89.86889,26.22869],[89.86967,26.23409],[89.86518,26.23762],[89.85866,26.23827],[89.86029,26.23981],[89.8671,26.23947],[89.86813,26.24306],[89.87416,26.24732],[89.86901,26.25239],[89.86602,26.25795],[89.87065,26.26023],[89.86852,26.27172],[89.87104,26.27691],[89.8763,26.28181],[89.8763,26.28458],[89.88451,26.29856],[89.88317,26.3056],[89.87953,26.30702],[89.88587,26.31076],[89.88707,26.31424],[89.89018,26.31424],[89.89004,26.31252],[89.89274,26.31401],[89.89217,26.31754],[89.89723,26.32352],[89.90562,26.32623],[89.90408,26.33772],[89.86918,26.34956],[89.87633,26.35543],[89.87562,26.36278],[89.87181,26.36448],[89.86568,26.36257],[89.86059,26.36905],[89.85104,26.36781],[89.84489,26.37268],[89.84237,26.37798],[89.83967,26.37862],[89.83525,26.38396],[89.83287,26.38416],[89.82802,26.38113],[89.82592,26.37763],[89.82948,26.37078],[89.82764,26.36631],[89.82207,26.36315],[89.82197,26.35967],[89.82577,26.35485],[89.82276,26.35163],[89.81538,26.35258],[89.81283,26.3571],[89.81331,26.36151],[89.81998,26.36663],[89.82192,26.37181],[89.8201,26.37024],[89.81372,26.37105],[89.80482,26.36284],[89.79305,26.35868],[89.78318,26.3514],[89.78154,26.34163],[89.78373,26.33209],[89.78107,26.32786],[89.76926,26.32429],[89.76909,26.32129],[89.76428,26.31607],[89.76031,26.3166],[89.75535,26.32321],[89.75124,26.32095],[89.75414,26.30222],[89.76089,26.2921],[89.75812,26.28779],[89.7478,26.29126],[89.74484,26.29689],[89.73691,26.29261],[89.72632,26.29471],[89.72139,26.29951],[89.72585,26.30722],[89.72371,26.30928],[89.71981,26.30732],[89.71783,26.29582],[89.72413,26.28764],[89.735,26.27767],[89.73854,26.26994],[89.73428,26.26703],[89.73557,26.26149],[89.734,26.25941],[89.72202,26.25746],[89.71258,26.26191],[89.71471,26.26994],[89.71155,26.27126],[89.70585,26.27043],[89.70262,26.25786],[89.70583,26.25621],[89.71443,26.25825],[89.71708,26.25737],[89.71845,26.25585],[89.71648,26.24753],[89.71788,26.24515],[89.72629,26.24287],[89.73183,26.23988],[89.73216,26.23783],[89.72707,26.23316],[89.7141,26.23025],[89.71364,26.22212],[89.71004,26.21784],[89.70447,26.21719],[89.70119,26.21994],[89.70039,26.21845],[89.70211,26.2152],[89.7075,26.21228],[89.71287,26.21246],[89.7257,26.21818],[89.73171,26.21616],[89.73323,26.21199],[89.72721,26.20596],[89.71916,26.20662],[89.7116,26.20297],[89.71781,26.20135],[89.72037,26.1956],[89.71911,26.19229],[89.71307,26.18772],[89.7061,26.18773],[89.6986,26.19118],[89.70328,26.18299],[89.70354,26.17805],[89.71089,26.17221],[89.72235,26.17771],[89.73293,26.17753],[89.73655,26.17279],[89.7289,26.17411],[89.72748,26.17196],[89.72886,26.16794],[89.72184,26.16747],[89.71698,26.16536],[89.71943,26.16631],[89.72049,26.1563],[89.74305,26.15932],[89.74766,26.15737],[89.75328,26.14842],[89.75403,26.1394],[89.76314,26.13704],[89.76657,26.13048],[89.76525,26.12478],[89.75543,26.11371],[89.75617,26.10936],[89.75787,26.10786],[89.76504,26.10954],[89.76832,26.10791],[89.76995,26.10453],[89.77632,26.10579],[89.77865,26.10813],[89.78316,26.10598],[89.78584,26.10136],[89.78338,26.1012],[89.78179,26.09823],[89.78437,26.0987],[89.78602,26.09633],[89.7831,26.09357],[89.78132,26.08344],[89.78514,26.08334],[89.79063,26.08929],[89.79485,26.08751],[89.79502,26.0833],[89.79014,26.07539],[89.7966,26.07631],[89.79495,26.07288],[89.79815,26.06572],[89.79557,26.06458],[89.79853,26.06507],[89.7973,26.06312],[89.79881,26.05958],[89.78535,26.05686],[89.78475,26.05138],[89.78731,26.05093],[89.78868,26.04871],[89.7792,26.04439],[89.77365,26.03764],[89.77657,26.03493],[89.77989,26.04042],[89.78777,26.04035],[89.78948,26.03962],[89.78768,26.03602],[89.79064,26.03429],[89.79305,26.03594],[89.79234,26.04058],[89.79364,26.04233],[89.80183,26.04025],[89.8023,26.03824],[89.7993,26.03518],[89.7978,26.03074],[89.79371,26.02813],[89.79399,26.02266],[89.79156,26.02087],[89.78782,26.02139],[89.78804,26.01921],[89.79159,26.01815],[89.7954,26.02181],[89.79419,26.02226],[89.79503,26.02319],[89.79772,26.02452],[89.8023,26.03226],[89.80504,26.04341],[89.80742,26.044],[89.81141,26.04083],[89.81388,26.03178],[89.81932,26.02582],[89.81536,26.02021],[89.81622,26.01698],[89.81899,26.01562],[89.82204,26.00993],[89.81919,26.00411],[89.82043,25.99756],[89.8186,25.99586],[89.81487,25.99787],[89.82027,25.98764],[89.82424,25.98495],[89.83594,25.98242],[89.83663,25.98657],[89.83322,25.99063],[89.83334,25.99554],[89.83093,26.00183],[89.83114,26.00985],[89.83584,26.0126],[89.84409,26.00619],[89.8477,26.00067],[89.84728,25.99677],[89.85042,25.98996],[89.86708,25.98258],[89.86728,25.97978],[89.86926,25.98149],[89.87103,25.9807],[89.87333,25.97588],[89.86684,25.97203],[89.85623,25.96877],[89.84898,25.97097],[89.843,25.97085],[89.84108,25.96828],[89.83856,25.96785],[89.83854,25.96585],[89.84298,25.96409],[89.84719,25.95671],[89.8445,25.95476],[89.84934,25.94911],[89.8306,25.95517],[89.82568,25.95153],[89.82539,25.9455],[89.84235,25.94431],[89.83915,25.94108],[89.84274,25.94003],[89.84503,25.94003],[89.84858,25.94288],[89.86884,25.94439],[89.87619,25.94683],[89.88708,25.9452],[89.87811,25.92777],[89.87818,25.92423],[89.86232,25.90736],[89.86078,25.90733],[89.85683,25.8997],[89.84829,25.89208],[89.8488,25.88784],[89.84327,25.8827],[89.85044,25.87959],[89.86723,25.88321],[89.87216,25.87981],[89.8764,25.87905],[89.88313,25.8843],[89.88889,25.89569],[89.89282,25.89604],[89.89783,25.90033],[89.9037,25.90301],[89.91608,25.90447],[89.91828,25.9068],[89.93029,25.90631],[89.93359,25.91144],[89.93421,25.92146],[89.93728,25.92465],[89.93923,25.92575],[89.94892,25.925],[89.94916,25.92672],[89.94354,25.93504],[89.94317,25.943],[89.94514,25.94996],[89.94771,25.95156],[89.95641,25.9524],[89.958,25.95436],[89.9585,25.96304],[89.97258,25.97604],[89.98282,25.97014],[89.98577,25.95696],[89.99908,25.95566],[90.01621,25.96196],[90.02538,25.97662],[90.02713,25.97584],[90.03455,25.98572],[90.04702,25.98813],[90.04707,25.98696],[90.05124,25.98713],[90.05785,25.98908],[90.05949,25.99249],[90.06079,25.98947],[90.06766,25.98667],[90.0719,25.98266],[90.07093,25.98043],[90.07636,25.97785],[90.07394,25.96906],[90.08162,25.96734],[90.08623,25.96281],[90.0867,25.96047],[90.09685,25.96802],[90.09551,25.9662],[90.09846,25.96101],[90.08301,25.95251],[90.08307,25.94758],[90.08675,25.94005],[90.08036,25.9292],[90.07937,25.92463],[90.08138,25.91755],[90.08582,25.9192],[90.08542,25.92547],[90.08795,25.92555],[90.09113,25.92848],[90.09409,25.92782],[90.09211,25.93807],[90.098,25.93741],[90.10137,25.94023],[90.10108,25.94323],[90.10669,25.94231],[90.1049,25.94452],[90.10756,25.94914],[90.11788,25.95744],[90.11662,25.95928],[90.11889,25.9607],[90.11612,25.96142],[90.11544,25.96384],[90.11749,25.96337],[90.11924,25.96913],[90.12651,25.9697],[90.12882,25.96641],[90.13445,25.97501],[90.13622,25.97551],[90.13971,25.97329],[90.14255,25.97823],[90.14206,25.98241],[90.15044,25.98061],[90.15232,25.98496],[90.15973,25.98907],[90.16466,25.98686],[90.1705,25.99114],[90.17498,25.98941],[90.17389,25.9935],[90.17622,25.99724],[90.17974,25.99722],[90.17963,26.00048],[90.18751,26.00139],[90.18623,26.00601],[90.18342,26.00878],[90.19475,26.02002],[90.19728,26.02593],[90.19127,26.03136],[90.18043,26.03356],[90.17711,26.04129],[90.17436,26.04383],[90.17077,26.04389],[90.17169,26.04566],[90.17972,26.04702],[90.18364,26.05003],[90.18424,26.05791],[90.17898,26.0675],[90.16875,26.07749],[90.16944,26.08258],[90.17343,26.09021],[90.17366,26.10305],[90.18608,26.11072],[90.18916,26.1217],[90.19158,26.12465],[90.19543,26.12726],[90.21464,26.12723],[90.2318,26.13514],[90.24794,26.14041],[90.24982,26.14935],[90.26104,26.15455],[90.26424,26.17075],[90.26473,26.18322],[90.26991,26.1821],[90.27116,26.18447],[90.2771,26.18734],[90.28897,26.18726],[90.30473,26.19279],[90.30992,26.1929],[90.31105,26.19026],[90.3183,26.18977],[90.35753,26.19],[90.37678,26.19798],[90.38187,26.20084],[90.37713,26.21488],[90.37784,26.22032],[90.38027,26.22372],[90.38961,26.22541],[90.39846,26.22177],[90.40137,26.2225],[90.42136,26.24057],[90.43191,26.24396],[90.4392,26.24371],[90.42993,26.25684],[90.4337,26.26202],[90.43663,26.26187],[90.44103,26.25328],[90.44564,26.25099],[90.45028,26.25078],[90.45313,26.25407],[90.44573,26.26069],[90.44482,26.26747],[90.45167,26.27179],[90.45342,26.27221],[90.45797,26.26599],[90.46594,26.26641],[90.4723,26.26934],[90.47217,26.27381],[90.46301,26.27172],[90.45763,26.27305],[90.45519,26.2852],[90.45916,26.27689],[90.46595,26.27619],[90.47071,26.27941],[90.46337,26.28723],[90.46386,26.28975],[90.46777,26.28772],[90.47587,26.288],[90.48354,26.29604],[90.47921,26.30219],[90.47886,26.30945],[90.4658,26.32525],[90.47298,26.32965],[90.4741,26.33259],[90.47033,26.3344],[90.46627,26.32979],[90.46237,26.32825],[90.4539,26.3409],[90.45767,26.34747],[90.45368,26.34978],[90.45871,26.35453],[90.45704,26.35745],[90.45313,26.35746],[90.44852,26.34733],[90.44516,26.34593],[90.44301,26.34838],[90.44586,26.35243],[90.44565,26.35488],[90.44201,26.3532],[90.44411,26.3604],[90.43628,26.35914],[90.43901,26.35418],[90.43993,26.34482],[90.43594,26.3423],[90.43238,26.34482],[90.43118,26.35586],[90.42671,26.35963],[90.42462,26.36367],[90.40197,26.36387],[90.39514,26.35935],[90.39405,26.35459],[90.396,26.34751],[90.40418,26.3331],[90.40406,26.31602],[90.38376,26.31161],[90.37924,26.30929],[90.37936,26.30258],[90.37642,26.29928],[90.37471,26.29086],[90.3813,26.27804],[90.38289,26.2723],[90.38118,26.26864],[90.37434,26.26632],[90.36827,26.26632],[90.36636,26.26439],[90.36166,26.26452],[90.35538,26.25821],[90.35657,26.26607],[90.35354,26.26982],[90.35664,26.2693],[90.35741,26.26543],[90.35859,26.2654],[90.36279,26.2731],[90.35661,26.27937],[90.35186,26.28713],[90.344,26.27071],[90.33847,26.27254],[90.3276,26.27019],[90.32606,26.27157],[90.32715,26.27715],[90.32484,26.27666],[90.3235,26.27866],[90.3207,26.27881],[90.31807,26.26784],[90.30956,26.26169],[90.30737,26.26265],[90.30341,26.25747],[90.30653,26.24583],[90.28726,26.2374],[90.28543,26.24273],[90.28796,26.2521],[90.27259,26.25259],[90.27359,26.26065],[90.25146,26.2644],[90.25216,26.27014],[90.25862,26.27296],[90.27218,26.26731],[90.27195,26.27205],[90.28101,26.29218],[90.28044,26.29738],[90.27255,26.30247],[90.27352,26.30614],[90.27125,26.30912],[90.26457,26.31295],[90.26064,26.32477],[90.26724,26.33055],[90.25565,26.33543],[90.25283,26.3277],[90.25002,26.32457],[90.24701,26.32749],[90.24267,26.32869],[90.2391,26.32503],[90.2336,26.3269],[90.22693,26.33424],[90.22217,26.33225],[90.21835,26.32737],[90.21593,26.3287],[90.21603,26.33485],[90.22505,26.34369],[90.22777,26.34936],[90.22607,26.35188],[90.21798,26.34847],[90.21474,26.35164],[90.21667,26.35335],[90.22249,26.35352]],[[89.81152,26.34596],[89.8161,26.34278],[89.81937,26.33683],[89.81968,26.33302],[89.82303,26.32978],[89.82024,26.32325],[89.81741,26.32094],[89.80283,26.32965],[89.79983,26.32973],[89.79612,26.33299],[89.79806,26.33785],[89.79341,26.34139],[89.78972,26.34183],[89.79408,26.34383],[89.79559,26.34937],[89.7977,26.35032],[89.80228,26.35057],[89.81152,26.34596]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"286","area_level":"District","area_name":"Dibrugarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.19917,27.6916],[95.20026,27.69541],[95.19566,27.70489],[95.18899,27.7014],[95.17635,27.69961],[95.16286,27.69491],[95.15532,27.69536],[95.11779,27.68587],[95.10875,27.679],[95.10414,27.66751],[95.09298,27.66045],[95.07108,27.66394],[95.06639,27.66252],[95.05308,27.66274],[95.03602,27.66862],[95.01672,27.65654],[94.99645,27.65931],[94.98683,27.64992],[94.9816,27.64097],[94.96102,27.62321],[94.9558,27.61426],[94.92517,27.60115],[94.92003,27.59671],[94.91481,27.58775],[94.90453,27.57887],[94.8944,27.57901],[94.88412,27.57012],[94.8789,27.56117],[94.81726,27.50784],[94.81087,27.50061],[94.79856,27.49164],[94.79316,27.48282],[94.78993,27.48215],[94.77634,27.48461],[94.77106,27.4825],[94.76892,27.47782],[94.76472,27.47576],[94.75985,27.47045],[94.75496,27.45977],[94.74956,27.45362],[94.74833,27.44282],[94.74623,27.43766],[94.74009,27.43634],[94.73167,27.44326],[94.72736,27.43979],[94.72294,27.43062],[94.71879,27.42746],[94.70358,27.42565],[94.6932,27.42171],[94.68638,27.41129],[94.69082,27.39348],[94.68446,27.38401],[94.67885,27.38097],[94.66459,27.37713],[94.66222,27.37197],[94.66533,27.36867],[94.66639,27.35263],[94.65998,27.34812],[94.64468,27.34361],[94.6385,27.33822],[94.63718,27.33404],[94.6396,27.32766],[94.63817,27.32149],[94.6346,27.32021],[94.6214,27.33331],[94.6065,27.32882],[94.60585,27.32501],[94.6136,27.31928],[94.61065,27.30896],[94.61374,27.30655],[94.60776,27.3002],[94.60647,27.29465],[94.58659,27.26744],[94.58765,27.24713],[94.58619,27.24071],[94.57977,27.22801],[94.57713,27.21511],[94.57978,27.20159],[94.57519,27.18894],[94.56751,27.17927],[94.59304,27.1457],[94.60159,27.15499],[94.60947,27.17049],[94.61478,27.17671],[94.61567,27.18584],[94.62174,27.19722],[94.62185,27.20303],[94.62469,27.21083],[94.62985,27.22382],[94.63579,27.23071],[94.6419,27.24674],[94.65351,27.24705],[94.6783,27.24334],[94.68513,27.25],[94.6921,27.27081],[94.6948,27.27215],[94.70169,27.26975],[94.70401,27.26671],[94.71099,27.2486],[94.71324,27.24682],[94.72058,27.24567],[94.72246,27.24806],[94.71654,27.25959],[94.71787,27.26324],[94.72724,27.27258],[94.73588,27.2755],[94.74708,27.27302],[94.74988,27.26833],[94.74178,27.25885],[94.74004,27.25185],[94.74127,27.24723],[94.75174,27.24496],[94.76104,27.24628],[94.76921,27.24409],[94.77086,27.24189],[94.77388,27.23672],[94.77364,27.23404],[94.76608,27.22046],[94.76884,27.21669],[94.77314,27.21733],[94.77378,27.21372],[94.77555,27.21302],[94.77561,27.20023],[94.77807,27.20027],[94.77945,27.19803],[94.78095,27.19971],[94.77888,27.19546],[94.77958,27.19374],[94.77712,27.19317],[94.77648,27.19577],[94.7746,27.19366],[94.77928,27.19044],[94.77733,27.18633],[94.77512,27.18829],[94.77352,27.18735],[94.77472,27.18484],[94.77273,27.18708],[94.77154,27.18488],[94.76837,27.18497],[94.77136,27.18335],[94.77022,27.18111],[94.77374,27.18103],[94.77245,27.17418],[94.77494,27.17491],[94.77858,27.17125],[94.77189,27.16839],[94.77232,27.16606],[94.76736,27.16371],[94.76868,27.16252],[94.76721,27.16169],[94.76808,27.1595],[94.76124,27.15688],[94.76021,27.15172],[94.75819,27.15229],[94.75713,27.14982],[94.75525,27.15165],[94.75494,27.14921],[94.75808,27.14723],[94.75577,27.14388],[94.7532,27.14397],[94.75345,27.14059],[94.76196,27.13468],[94.7606,27.12997],[94.78173,27.12447],[94.78772,27.12489],[94.78803,27.11995],[94.79938,27.1195],[94.79975,27.11682],[94.8118,27.11727],[94.81753,27.1147],[94.80908,27.10358],[94.80836,27.09685],[94.8123,27.09981],[94.81405,27.09835],[94.81607,27.10157],[94.81611,27.09939],[94.81996,27.10004],[94.81774,27.09769],[94.8241,27.09928],[94.82882,27.09357],[94.8318,27.09414],[94.832,27.09138],[94.83355,27.09375],[94.83534,27.09167],[94.83699,27.09221],[94.83757,27.09902],[94.89139,27.16233],[94.95377,27.21774],[94.9678,27.22708],[94.97214,27.21753],[94.97353,27.20117],[94.97605,27.19342],[94.97575,27.18301],[94.97906,27.1825],[94.9844,27.16861],[94.98261,27.16763],[94.98061,27.16869],[94.9791,27.16494],[94.98351,27.15708],[94.97731,27.14905],[94.97829,27.14813],[94.9965,27.14653],[95.01639,27.1499],[95.03189,27.14741],[95.03698,27.15348],[95.04884,27.15548],[95.06113,27.13712],[95.064,27.13772],[95.0651,27.13573],[95.07308,27.13647],[95.09973,27.13315],[95.10079,27.13831],[95.10793,27.13587],[95.11267,27.13645],[95.11226,27.1306],[95.11512,27.12726],[95.11605,27.12796],[95.11431,27.13235],[95.11619,27.13617],[95.11776,27.13579],[95.12013,27.13093],[95.12385,27.13035],[95.12872,27.13849],[95.1312,27.13869],[95.13198,27.1338],[95.13331,27.13793],[95.13592,27.13869],[95.14685,27.13633],[95.1485,27.13052],[95.15315,27.12427],[95.15417,27.12545],[95.15054,27.13102],[95.15424,27.1363],[95.15614,27.13592],[95.15815,27.12887],[95.16203,27.12792],[95.16404,27.12919],[95.15967,27.1347],[95.1634,27.13216],[95.16462,27.13631],[95.16981,27.1373],[95.16882,27.14303],[95.17033,27.14508],[95.17435,27.14613],[95.1722,27.14136],[95.1729,27.13826],[95.1799,27.14212],[95.17653,27.14482],[95.17859,27.14972],[95.18633,27.15219],[95.18192,27.15589],[95.18349,27.16316],[95.18917,27.15968],[95.19405,27.16033],[95.19393,27.15904],[95.18921,27.15745],[95.19479,27.15525],[95.19878,27.15888],[95.19805,27.16346],[95.20873,27.16251],[95.21277,27.16608],[95.21382,27.17036],[95.21039,27.16863],[95.20962,27.16955],[95.21107,27.17435],[95.21895,27.17062],[95.21917,27.16937],[95.21597,27.16761],[95.21974,27.1652],[95.22515,27.16759],[95.2277,27.17346],[95.23764,27.16988],[95.23881,27.1716],[95.23212,27.17829],[95.23284,27.18093],[95.23769,27.17983],[95.2416,27.18328],[95.23693,27.18978],[95.24417,27.18921],[95.24549,27.19199],[95.24999,27.19121],[95.25449,27.19324],[95.25766,27.1842],[95.25889,27.19209],[95.26584,27.18664],[95.26677,27.18777],[95.26486,27.19076],[95.26797,27.19368],[95.27285,27.1884],[95.27612,27.19007],[95.27865,27.1887],[95.28061,27.19426],[95.28614,27.19316],[95.28257,27.19697],[95.28396,27.19759],[95.29256,27.19517],[95.30312,27.19526],[95.30228,27.19067],[95.30814,27.18999],[95.31395,27.18373],[95.31572,27.18656],[95.31968,27.18819],[95.33292,27.18739],[95.33747,27.18424],[95.34333,27.18272],[95.34729,27.1728],[95.35138,27.17181],[95.35817,27.16684],[95.35899,27.15469],[95.36532,27.14525],[95.36717,27.13737],[95.36548,27.13124],[95.36143,27.1277],[95.36342,27.12565],[95.36496,27.1158],[95.37196,27.11346],[95.36865,27.10708],[95.36376,27.10255],[95.3712,27.10079],[95.37003,27.0953],[95.37138,27.09341],[95.37467,27.09268],[95.38302,27.0982],[95.38199,27.10028],[95.38464,27.10554],[95.39854,27.10872],[95.42065,27.12578],[95.43961,27.12592],[95.4406,27.12874],[95.44473,27.12879],[95.44242,27.13139],[95.44441,27.13521],[95.4493,27.13459],[95.44941,27.12968],[95.45327,27.12943],[95.45817,27.13796],[95.45657,27.14055],[95.45748,27.14413],[95.46222,27.14966],[95.45965,27.15374],[95.45332,27.15733],[95.46252,27.16171],[95.46551,27.16636],[95.46471,27.17221],[95.45952,27.17569],[95.4666,27.18164],[95.46017,27.19134],[95.46246,27.19437],[95.45914,27.19543],[95.45842,27.20018],[95.45589,27.20358],[95.45813,27.20978],[95.46437,27.21113],[95.46763,27.21388],[95.46754,27.21832],[95.47244,27.21893],[95.47147,27.22272],[95.47745,27.22676],[95.47966,27.23096],[95.47884,27.23406],[95.48293,27.23652],[95.4843,27.24127],[95.48232,27.24415],[95.48231,27.25241],[95.46984,27.25371],[95.47106,27.26273],[95.46725,27.26376],[95.45348,27.24874],[95.45673,27.23971],[95.45363,27.23154],[95.45102,27.2314],[95.44758,27.2355],[95.44793,27.24416],[95.44642,27.24838],[95.43982,27.25513],[95.44068,27.2606],[95.44262,27.26297],[95.44443,27.26228],[95.4489,27.26609],[95.45108,27.26458],[95.45363,27.2652],[95.4605,27.27057],[95.45427,27.28174],[95.45616,27.28715],[95.45126,27.28813],[95.44589,27.29453],[95.47781,27.31718],[95.48069,27.32096],[95.47529,27.32135],[95.46746,27.31696],[95.46493,27.32234],[95.45929,27.3254],[95.45947,27.32977],[95.4483,27.33547],[95.45835,27.34612],[95.46567,27.34278],[95.46933,27.3483],[95.4671,27.36447],[95.47407,27.36699],[95.45401,27.37503],[95.44835,27.37174],[95.44683,27.36668],[95.4393,27.36437],[95.43516,27.36679],[95.42888,27.37481],[95.41128,27.38718],[95.40859,27.38592],[95.39005,27.39116],[95.38578,27.39082],[95.38153,27.38709],[95.37969,27.38891],[95.37574,27.38834],[95.37251,27.38391],[95.36265,27.38271],[95.35705,27.38379],[95.3518,27.38709],[95.34837,27.39398],[95.33036,27.38892],[95.32367,27.3907],[95.31982,27.38744],[95.31472,27.38946],[95.3093,27.38926],[95.30447,27.39344],[95.30496,27.39697],[95.29616,27.40163],[95.29532,27.41526],[95.28935,27.41279],[95.28959,27.41093],[95.28355,27.41134],[95.2828,27.40929],[95.27643,27.40914],[95.27553,27.41268],[95.2738,27.41122],[95.27087,27.41182],[95.26906,27.40955],[95.26752,27.41034],[95.26803,27.40832],[95.26632,27.40788],[95.26758,27.40681],[95.26147,27.40575],[95.257,27.40739],[95.25849,27.40896],[95.25678,27.4092],[95.25596,27.40681],[95.25314,27.40769],[95.25453,27.40624],[95.25302,27.40509],[95.25354,27.40338],[95.2517,27.40382],[95.25245,27.40542],[95.24809,27.40469],[95.24402,27.41423],[95.24383,27.4198],[95.24504,27.42585],[95.25174,27.4343],[95.22942,27.43731],[95.22283,27.44041],[95.21993,27.4437],[95.21978,27.45475],[95.21715,27.45945],[95.22493,27.47029],[95.22902,27.49886],[95.2666,27.50958],[95.26501,27.52249],[95.27214,27.52694],[95.2646,27.53211],[95.26661,27.53797],[95.26464,27.54106],[95.2653,27.54426],[95.27486,27.55057],[95.28105,27.54692],[95.28258,27.54746],[95.27855,27.55858],[95.27243,27.56592],[95.27403,27.57148],[95.27321,27.57445],[95.27494,27.57405],[95.27699,27.57006],[95.28473,27.56773],[95.28778,27.56982],[95.28688,27.57275],[95.29004,27.57686],[95.29407,27.57557],[95.29628,27.57974],[95.30028,27.57994],[95.29917,27.58323],[95.30021,27.58492],[95.3046,27.58205],[95.31838,27.58756],[95.31647,27.59224],[95.31671,27.59643],[95.31316,27.60008],[95.30874,27.60967],[95.30793,27.61546],[95.28959,27.66286],[95.27653,27.67836],[95.26974,27.68142],[95.25811,27.66657],[95.24645,27.65678],[95.20475,27.65827],[95.1888,27.67651],[95.19917,27.6916]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"287","area_level":"District","area_name":"Goalpara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.61795,26.20933],[90.60015,26.21516],[90.58653,26.20675],[90.57728,26.2035],[90.54966,26.20585],[90.5211,26.19969],[90.4971,26.18909],[90.47466,26.17126],[90.45245,26.1601],[90.4413,26.15706],[90.42034,26.15697],[90.41308,26.1552],[90.41143,26.1516],[90.40465,26.15061],[90.40089,26.15365],[90.40321,26.15636],[90.40144,26.15924],[90.38597,26.15733],[90.38454,26.15828],[90.39106,26.18491],[90.39311,26.20086],[90.39166,26.20373],[90.38652,26.20326],[90.35753,26.19],[90.3183,26.18977],[90.31105,26.19026],[90.30992,26.1929],[90.30473,26.19279],[90.28897,26.18726],[90.2771,26.18734],[90.27116,26.18447],[90.26991,26.1821],[90.26473,26.18322],[90.26424,26.17075],[90.26104,26.15455],[90.24982,26.14935],[90.24794,26.14041],[90.2318,26.13514],[90.21464,26.12723],[90.19543,26.12726],[90.18916,26.1217],[90.18608,26.11072],[90.17366,26.10305],[90.17343,26.09021],[90.16944,26.08258],[90.16875,26.07749],[90.17484,26.07239],[90.183,26.06199],[90.18462,26.05162],[90.17972,26.04702],[90.17169,26.04566],[90.17077,26.04389],[90.17436,26.04383],[90.17711,26.04129],[90.18043,26.03356],[90.19127,26.03136],[90.19728,26.02593],[90.19475,26.02002],[90.18342,26.00878],[90.18623,26.00601],[90.18751,26.00139],[90.17963,26.00048],[90.17974,25.99722],[90.17622,25.99724],[90.17389,25.9935],[90.17498,25.98941],[90.1705,25.99114],[90.16466,25.98686],[90.15973,25.98907],[90.15232,25.98496],[90.15044,25.98061],[90.14206,25.98241],[90.14255,25.97823],[90.13971,25.97329],[90.13622,25.97551],[90.13445,25.97501],[90.12882,25.96641],[90.12743,25.96941],[90.11979,25.9695],[90.11749,25.96337],[90.11544,25.96384],[90.11612,25.96142],[90.11889,25.9607],[90.11662,25.95928],[90.11788,25.95744],[90.12065,25.95769],[90.11967,25.9541],[90.13172,25.95874],[90.14034,25.95725],[90.13938,25.95964],[90.14382,25.96014],[90.15141,25.96667],[90.15847,25.95715],[90.16576,25.95576],[90.17692,25.95895],[90.17721,25.95527],[90.17859,25.95522],[90.1808,25.94977],[90.18688,25.94409],[90.18876,25.94583],[90.18691,25.94685],[90.18739,25.94987],[90.19083,25.95121],[90.19242,25.95525],[90.19983,25.95695],[90.20287,25.96086],[90.20994,25.95966],[90.21149,25.95259],[90.27058,25.96031],[90.32478,25.9734],[90.32792,25.97501],[90.33153,25.98765],[90.34036,25.98834],[90.34307,25.99631],[90.34671,25.99785],[90.34971,26.00413],[90.37218,26.01127],[90.39975,26.01252],[90.40539,26.00898],[90.41115,26.00042],[90.41549,25.99882],[90.41684,25.9915],[90.42519,25.98884],[90.43022,25.98895],[90.43328,25.99132],[90.43747,25.99172],[90.44374,25.99597],[90.47613,26.00959],[90.48866,26.00339],[90.50254,25.99146],[90.50964,25.98049],[90.52046,25.97052],[90.5318,25.95601],[90.535,25.94959],[90.53416,25.93896],[90.52069,25.92597],[90.518,25.91568],[90.50855,25.9015],[90.51363,25.89627],[90.52139,25.89848],[90.52642,25.90484],[90.53749,25.9112],[90.53814,25.91375],[90.54912,25.91543],[90.55006,25.91684],[90.54838,25.9192],[90.54448,25.92055],[90.5438,25.92359],[90.54888,25.9214],[90.55242,25.92275],[90.57673,25.93675],[90.57706,25.94451],[90.57977,25.95127],[90.58382,25.956],[90.58787,25.95807],[90.59069,25.95606],[90.59967,25.95513],[90.6049,25.94709],[90.62412,25.93918],[90.62312,25.93506],[90.61231,25.92566],[90.60627,25.91662],[90.6136,25.89932],[90.62187,25.89784],[90.62494,25.89826],[90.6308,25.90628],[90.63067,25.9095],[90.62613,25.90974],[90.62619,25.91335],[90.62854,25.91759],[90.63509,25.92149],[90.67265,25.93464],[90.68833,25.94891],[90.70765,25.95208],[90.71385,25.95167],[90.71868,25.95511],[90.71994,25.94879],[90.72447,25.94678],[90.73247,25.9521],[90.73833,25.95271],[90.73776,25.9557],[90.74282,25.95799],[90.74442,25.95506],[90.7481,25.95672],[90.74569,25.9519],[90.74776,25.9483],[90.7404,25.93939],[90.74672,25.92809],[90.75009,25.93301],[90.75139,25.9323],[90.75279,25.93427],[90.75463,25.93344],[90.75344,25.92832],[90.74696,25.92481],[90.74779,25.91886],[90.73898,25.91616],[90.74245,25.91239],[90.74531,25.91177],[90.74714,25.91554],[90.75107,25.91827],[90.76052,25.92188],[90.76067,25.91567],[90.75679,25.91343],[90.75668,25.91099],[90.76389,25.90772],[90.7781,25.90861],[90.77805,25.9112],[90.78117,25.91127],[90.78338,25.92177],[90.78532,25.92429],[90.78449,25.92513],[90.79638,25.94052],[90.80915,25.94741],[90.80788,25.95097],[90.80905,25.95244],[90.8162,25.94893],[90.81927,25.95032],[90.82441,25.9454],[90.8259,25.94869],[90.83291,25.94586],[90.83619,25.94842],[90.83547,25.93661],[90.83904,25.94131],[90.84234,25.94212],[90.84436,25.94597],[90.84847,25.94438],[90.87483,25.94255],[90.87169,25.94763],[90.87669,25.94942],[90.88108,25.94283],[90.88049,25.95049],[90.88453,25.95031],[90.88581,25.94492],[90.88966,25.94318],[90.89003,25.93807],[90.89745,25.93748],[90.89442,25.93118],[90.90529,25.9289],[90.90617,25.92502],[90.91684,25.91406],[90.91951,25.91522],[90.91543,25.9204],[90.91424,25.92571],[90.91557,25.93075],[90.91481,25.93589],[90.91734,25.94441],[90.91949,25.94445],[90.92194,25.94134],[90.92392,25.94287],[90.93386,25.93977],[90.93999,25.9473],[90.94743,25.94809],[90.94547,25.94487],[90.94614,25.94101],[90.95704,25.93496],[90.96662,25.91406],[90.969,25.90375],[90.96598,25.88844],[90.96886,25.88522],[90.97605,25.88967],[91.00066,25.88794],[91.00103,25.88582],[91.0106,25.88417],[91.01791,25.88456],[91.02522,25.88878],[91.03038,25.88593],[91.03047,25.89999],[91.03553,25.90497],[91.04267,25.9265],[91.05199,25.93595],[91.05204,25.93829],[91.04754,25.94151],[91.05894,25.95588],[91.06405,25.95861],[91.06904,25.96736],[91.08034,25.97228],[91.08247,25.9797],[91.0859,25.98195],[91.08587,25.98722],[91.08847,25.99329],[91.09015,26.00412],[91.0997,26.00937],[91.09795,26.01244],[91.09229,26.01415],[91.09275,26.01803],[91.09107,26.02154],[91.08732,26.02378],[91.08686,26.02643],[91.08924,26.02952],[91.08918,26.03209],[91.08195,26.03349],[91.07857,26.04],[91.07057,26.041],[91.06507,26.0475],[91.05988,26.04621],[91.05462,26.04964],[91.04886,26.0444],[91.04481,26.04366],[91.0401,26.04758],[91.03594,26.04845],[91.03461,26.05123],[91.03151,26.04688],[91.0262,26.04674],[91.01001,26.05816],[91.00491,26.05761],[90.98123,26.06281],[90.96813,26.07472],[90.96084,26.07877],[90.95876,26.08749],[90.95235,26.08654],[90.94722,26.09331],[90.94326,26.09121],[90.94093,26.09168],[90.9352,26.1013],[90.92469,26.09703],[90.92368,26.09373],[90.9159,26.08977],[90.87152,26.09562],[90.86911,26.09716],[90.85996,26.11247],[90.84854,26.11494],[90.8395,26.10916],[90.82478,26.11861],[90.81565,26.1198],[90.79281,26.1292],[90.76687,26.13434],[90.7455,26.13617],[90.73329,26.13605],[90.73044,26.13396],[90.71442,26.13012],[90.70789,26.14592],[90.69398,26.15082],[90.68399,26.1721],[90.6769,26.18112],[90.67641,26.18993],[90.67366,26.19715],[90.67051,26.20012],[90.65592,26.21108],[90.64523,26.21],[90.62237,26.20203],[90.61795,26.20933]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"288","area_level":"District","area_name":"Golaghat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.64893,26.77459],[93.65007,26.75475],[93.66283,26.73228],[93.67051,26.71208],[93.66724,26.71328],[93.66206,26.71242],[93.65091,26.70621],[93.60095,26.71505],[93.59219,26.71883],[93.57681,26.7189],[93.56602,26.72224],[93.55791,26.72743],[93.55792,26.73153],[93.56172,26.73197],[93.5594,26.73479],[93.54306,26.74281],[93.53767,26.75055],[93.53009,26.74672],[93.50411,26.75708],[93.49248,26.75428],[93.47597,26.75705],[93.45963,26.75516],[93.44119,26.74848],[93.41701,26.74839],[93.39633,26.75072],[93.39065,26.74849],[93.37207,26.74586],[93.35238,26.73635],[93.34201,26.72812],[93.33732,26.71669],[93.3309,26.70883],[93.32138,26.7076],[93.31261,26.70185],[93.30392,26.70041],[93.30685,26.69375],[93.31505,26.68663],[93.31683,26.67795],[93.31203,26.67742],[93.30667,26.66764],[93.3085,26.66446],[93.31697,26.65765],[93.31752,26.65055],[93.31083,26.64086],[93.30458,26.63682],[93.29778,26.63498],[93.2869,26.63748],[93.29164,26.62809],[93.29646,26.61194],[93.29591,26.5992],[93.29138,26.59068],[93.29507,26.58526],[93.30241,26.581],[93.29495,26.57414],[93.29504,26.57191],[93.30337,26.57629],[93.31041,26.57648],[93.31423,26.58246],[93.32594,26.58486],[93.3319,26.58383],[93.3364,26.58032],[93.34731,26.58206],[93.3602,26.58026],[93.369,26.58132],[93.37175,26.57946],[93.3788,26.57872],[93.38403,26.58019],[93.40275,26.58019],[93.40236,26.57796],[93.40622,26.57503],[93.39744,26.57278],[93.39741,26.57153],[93.40168,26.56999],[93.40857,26.57075],[93.40868,26.56922],[93.41478,26.57269],[93.44464,26.57871],[93.44656,26.57798],[93.4487,26.58014],[93.45297,26.58084],[93.45471,26.57895],[93.45231,26.57527],[93.45685,26.57605],[93.46247,26.58438],[93.46543,26.58592],[93.46627,26.58135],[93.4641,26.57698],[93.45532,26.57201],[93.45689,26.56867],[93.45934,26.56937],[93.45987,26.57117],[93.46411,26.56962],[93.4638,26.57175],[93.46616,26.57223],[93.47431,26.582],[93.48022,26.58483],[93.49135,26.5866],[93.49137,26.58872],[93.48864,26.59026],[93.47838,26.58867],[93.46981,26.59165],[93.46943,26.59544],[93.47299,26.59575],[93.47303,26.59923],[93.47587,26.60018],[93.47795,26.60322],[93.494,26.60593],[93.49618,26.60714],[93.49547,26.61119],[93.50017,26.60584],[93.50403,26.60631],[93.50947,26.59353],[93.51935,26.59561],[93.52366,26.59369],[93.53696,26.59785],[93.54194,26.60356],[93.54708,26.60553],[93.54973,26.60448],[93.55254,26.60723],[93.55328,26.61267],[93.55568,26.61116],[93.55866,26.61209],[93.56838,26.61021],[93.56787,26.60794],[93.57152,26.60865],[93.57492,26.60486],[93.58134,26.60583],[93.58602,26.60366],[93.59002,26.59846],[93.58344,26.59689],[93.58476,26.58889],[93.58255,26.58593],[93.58285,26.58047],[93.58927,26.57686],[93.58973,26.57082],[93.59423,26.57105],[93.60056,26.5747],[93.61092,26.57767],[93.61287,26.57641],[93.61313,26.57291],[93.61,26.56736],[93.6143,26.56851],[93.61669,26.56603],[93.61658,26.5688],[93.61379,26.56995],[93.61771,26.57153],[93.62124,26.57615],[93.62308,26.58371],[93.62187,26.59034],[93.62532,26.58852],[93.62533,26.59213],[93.62876,26.59278],[93.63187,26.59598],[93.63591,26.59751],[93.64087,26.59646],[93.64248,26.59719],[93.64194,26.59966],[93.64901,26.60015],[93.65249,26.60244],[93.65884,26.60272],[93.65982,26.59996],[93.66144,26.5996],[93.66406,26.60144],[93.66356,26.60383],[93.66586,26.60475],[93.67177,26.60358],[93.67481,26.60018],[93.67844,26.60207],[93.67883,26.60474],[93.68234,26.60356],[93.68316,26.60592],[93.69079,26.60729],[93.7123,26.60565],[93.72849,26.59571],[93.73519,26.59385],[93.7351,26.59112],[93.73755,26.58808],[93.73658,26.587],[93.74008,26.58363],[93.7522,26.5852],[93.75174,26.5772],[93.74829,26.57658],[93.74067,26.5686],[93.74124,26.55782],[93.73941,26.55728],[93.73694,26.55993],[93.73551,26.55565],[93.73656,26.55139],[93.73315,26.54979],[93.73964,26.54694],[93.73895,26.5399],[93.73754,26.53858],[93.73283,26.53994],[93.73158,26.53773],[93.73677,26.53341],[93.74198,26.53769],[93.73982,26.53437],[93.74302,26.5318],[93.74184,26.52892],[93.74346,26.52757],[93.75596,26.52909],[93.75511,26.52555],[93.75826,26.52249],[93.75689,26.52088],[93.75207,26.52104],[93.75126,26.51835],[93.75742,26.51575],[93.7552,26.50928],[93.76217,26.50716],[93.76354,26.50562],[93.76325,26.50165],[93.76966,26.49775],[93.76941,26.49455],[93.77206,26.48867],[93.77512,26.48604],[93.77526,26.48269],[93.77813,26.48188],[93.77892,26.47585],[93.77549,26.47343],[93.77124,26.47673],[93.77067,26.47396],[93.7778,26.46606],[93.78351,26.46349],[93.78553,26.46469],[93.78676,26.45607],[93.78509,26.45254],[93.79439,26.44025],[93.78306,26.43876],[93.7836,26.43356],[93.78944,26.4339],[93.78987,26.43149],[93.79203,26.43194],[93.79388,26.4286],[93.78885,26.42577],[93.78124,26.425],[93.78144,26.42205],[93.77974,26.4204],[93.78128,26.41866],[93.7799,26.41747],[93.78309,26.40971],[93.7881,26.40826],[93.79908,26.40887],[93.79476,26.40381],[93.79249,26.40393],[93.78999,26.39985],[93.79068,26.39803],[93.78932,26.39629],[93.78649,26.3963],[93.78106,26.38968],[93.78063,26.38687],[93.77683,26.38559],[93.77333,26.3869],[93.7748,26.38404],[93.78675,26.37947],[93.78831,26.3766],[93.79396,26.37596],[93.79622,26.38667],[93.79904,26.38802],[93.80079,26.39145],[93.80394,26.39083],[93.80612,26.3961],[93.80944,26.39482],[93.81113,26.39778],[93.81656,26.39874],[93.82246,26.40564],[93.82258,26.41032],[93.82616,26.41368],[93.82671,26.41785],[93.83417,26.41384],[93.83625,26.4105],[93.84671,26.40712],[93.84982,26.40314],[93.85875,26.39859],[93.86558,26.38898],[93.86867,26.38857],[93.87875,26.39411],[93.88386,26.39209],[93.88058,26.38791],[93.88477,26.38608],[93.88307,26.38133],[93.8886,26.38122],[93.88111,26.37261],[93.88841,26.37122],[93.89291,26.37326],[93.89415,26.37193],[93.89032,26.36939],[93.8892,26.36528],[93.88308,26.36205],[93.88313,26.35921],[93.88689,26.3601],[93.88859,26.35681],[93.88354,26.35562],[93.88288,26.35286],[93.88785,26.35094],[93.88934,26.34685],[93.88747,26.3456],[93.88275,26.34681],[93.88138,26.34444],[93.88303,26.34072],[93.88736,26.34033],[93.88653,26.32829],[93.89168,26.3309],[93.89475,26.32911],[93.89385,26.32635],[93.88855,26.32612],[93.88647,26.32379],[93.88741,26.32178],[93.89274,26.3201],[93.8938,26.31557],[93.89126,26.31514],[93.8888,26.31985],[93.88551,26.32047],[93.88328,26.3186],[93.88716,26.3153],[93.88502,26.31067],[93.87966,26.31321],[93.87598,26.31236],[93.8738,26.30985],[93.87578,26.30775],[93.88328,26.30844],[93.88536,26.30656],[93.88465,26.30245],[93.88092,26.30247],[93.87737,26.29973],[93.87288,26.30117],[93.87022,26.30022],[93.87233,26.29649],[93.86853,26.29453],[93.87654,26.28801],[93.87682,26.28684],[93.87281,26.28472],[93.87263,26.28164],[93.87451,26.27894],[93.88049,26.27633],[93.88108,26.27372],[93.87991,26.27291],[93.87563,26.27557],[93.87081,26.27564],[93.87362,26.27239],[93.86904,26.26919],[93.86843,26.26633],[93.87236,26.26604],[93.87482,26.26401],[93.87096,26.25939],[93.86532,26.25816],[93.86446,26.25507],[93.86716,26.25115],[93.86045,26.25252],[93.86511,26.24844],[93.86477,26.24593],[93.86155,26.2448],[93.8549,26.24717],[93.84771,26.24141],[93.85134,26.23919],[93.85149,26.24381],[93.85529,26.24555],[93.8607,26.24175],[93.859,26.2393],[93.85997,26.23671],[93.86459,26.23541],[93.85624,26.22884],[93.85548,26.22642],[93.85713,26.2218],[93.8515,26.21574],[93.84861,26.21556],[93.84417,26.2187],[93.84045,26.21787],[93.8446,26.21439],[93.84409,26.21229],[93.84106,26.20989],[93.83661,26.20988],[93.83382,26.2072],[93.83412,26.20046],[93.83819,26.20477],[93.84116,26.20495],[93.83833,26.19992],[93.83795,26.19459],[93.83213,26.19866],[93.82906,26.19642],[93.83385,26.18986],[93.82924,26.18873],[93.8275,26.18635],[93.83328,26.18081],[93.83512,26.17602],[93.83249,26.17509],[93.8304,26.18003],[93.82727,26.18062],[93.82632,26.17942],[93.82783,26.17393],[93.82156,26.1726],[93.8264,26.16644],[93.82644,26.16202],[93.83063,26.15818],[93.83049,26.14997],[93.82693,26.14794],[93.8254,26.14422],[93.83065,26.13918],[93.83115,26.13691],[93.82943,26.13542],[93.82237,26.13896],[93.81833,26.13706],[93.81934,26.13259],[93.82565,26.13073],[93.82801,26.12783],[93.81911,26.12478],[93.81723,26.12272],[93.81759,26.11912],[93.82193,26.11428],[93.82009,26.11007],[93.81206,26.11233],[93.812,26.10866],[93.80646,26.10258],[93.81416,26.09087],[93.80489,26.09366],[93.80362,26.08893],[93.80723,26.09003],[93.81001,26.08661],[93.80567,26.08749],[93.80325,26.08549],[93.8055,26.08213],[93.80586,26.07142],[93.80041,26.07609],[93.79799,26.07489],[93.79662,26.07127],[93.79766,26.06981],[93.80362,26.07021],[93.80531,26.06465],[93.80111,26.06609],[93.79957,26.06316],[93.79464,26.06133],[93.79456,26.05871],[93.79801,26.05427],[93.79732,26.0525],[93.79214,26.05266],[93.79048,26.0566],[93.78707,26.05443],[93.79076,26.05251],[93.79105,26.04828],[93.79527,26.044],[93.79501,26.04171],[93.78008,26.0397],[93.78712,26.03122],[93.79168,26.034],[93.79964,26.03137],[93.79647,26.0281],[93.79365,26.03093],[93.79235,26.02656],[93.786,26.02386],[93.78616,26.02],[93.79133,26.01837],[93.79325,26.01528],[93.78983,26.01265],[93.78616,26.01461],[93.78116,26.00798],[93.78193,26.00662],[93.78538,26.00662],[93.78656,26.00997],[93.78803,26.00953],[93.78815,26.00677],[93.79368,25.99822],[93.79813,26.00316],[93.80081,26.00224],[93.79753,25.99694],[93.80072,25.99461],[93.79596,25.99461],[93.79474,25.99239],[93.79626,25.99061],[93.79562,25.98759],[93.79908,25.98419],[93.80326,25.9863],[93.80451,25.98083],[93.80324,25.97925],[93.79991,25.98148],[93.79794,25.97879],[93.79374,25.97958],[93.79323,25.98161],[93.79178,25.98167],[93.79028,25.98056],[93.79102,25.97701],[93.78934,25.97633],[93.78681,25.97745],[93.78548,25.98232],[93.78069,25.98152],[93.77841,25.97789],[93.77913,25.97294],[93.77657,25.96878],[93.77747,25.96699],[93.77446,25.96553],[93.77517,25.96116],[93.77861,25.9603],[93.7769,25.95812],[93.78032,25.95648],[93.78327,25.95041],[93.78589,25.94967],[93.78734,25.94658],[93.78463,25.94387],[93.78726,25.94389],[93.78674,25.93821],[93.78989,25.93392],[93.78647,25.9321],[93.7879,25.93146],[93.78735,25.93013],[93.78998,25.92975],[93.78901,25.92806],[93.79099,25.92623],[93.78915,25.92226],[93.79052,25.92006],[93.78872,25.91689],[93.79186,25.91556],[93.79216,25.91291],[93.79422,25.91288],[93.79426,25.90756],[93.79193,25.90672],[93.79542,25.90711],[93.79611,25.90339],[93.79352,25.89556],[93.79513,25.89198],[93.79205,25.89134],[93.79203,25.88914],[93.7892,25.88967],[93.78416,25.88434],[93.78476,25.87995],[93.78735,25.87688],[93.78517,25.87005],[93.78895,25.87011],[93.78984,25.86781],[93.78497,25.86426],[93.78443,25.85842],[93.78141,25.85649],[93.77853,25.85687],[93.78113,25.85401],[93.77754,25.84981],[93.78111,25.84459],[93.77782,25.84241],[93.77816,25.84012],[93.78036,25.84086],[93.78145,25.8395],[93.78033,25.83543],[93.78479,25.82903],[93.78424,25.82617],[93.78709,25.82216],[93.78751,25.81576],[93.79005,25.81123],[93.79547,25.80893],[93.80384,25.81142],[93.8063,25.81689],[93.81639,25.82261],[93.82115,25.83874],[93.82526,25.8444],[93.82972,25.84651],[93.83048,25.84925],[93.8397,25.85661],[93.85226,25.85823],[93.85857,25.85369],[93.86918,25.85093],[93.87611,25.84248],[93.8818,25.84335],[93.88654,25.84832],[93.88997,25.85864],[93.89604,25.85786],[93.90195,25.87085],[93.90751,25.87252],[93.91157,25.87652],[93.91088,25.87945],[93.916,25.8837],[93.93398,25.88525],[93.93542,25.89445],[93.93797,25.89631],[93.94432,25.89552],[93.94501,25.89764],[93.95166,25.89857],[93.95977,25.90211],[93.96107,25.90123],[93.9667,25.90589],[93.97121,25.91276],[93.9787,25.91673],[93.97799,25.92807],[93.96996,25.93678],[93.96871,25.95726],[93.95415,25.96926],[93.95915,25.99433],[93.953,26.00297],[93.96054,26.01536],[93.9627,26.02576],[93.96247,26.03654],[93.97039,26.04035],[93.97076,26.04642],[93.98739,26.06679],[93.98153,26.08124],[93.98274,26.08336],[93.98865,26.08634],[93.98948,26.09753],[93.99793,26.10956],[93.99577,26.1122],[93.98874,26.11082],[93.98676,26.1139],[93.99387,26.11866],[93.99349,26.12394],[93.99782,26.12877],[93.98887,26.1282],[93.98724,26.13108],[93.99086,26.13364],[93.99831,26.13124],[94.00217,26.13443],[94.0036,26.14423],[94.00083,26.14698],[93.99591,26.14642],[93.99452,26.14831],[93.99658,26.15347],[94.0011,26.1552],[94.00366,26.16011],[94.00137,26.16578],[94.00261,26.17087],[94.00108,26.17227],[94.00781,26.1825],[94.01536,26.18402],[94.02179,26.19381],[94.03203,26.19754],[94.03646,26.22605],[94.0424,26.2345],[94.04769,26.24936],[94.05608,26.25501],[94.06786,26.25697],[94.07092,26.26232],[94.07462,26.26438],[94.07471,26.27304],[94.07224,26.27611],[94.07473,26.2836],[94.0841,26.28334],[94.08427,26.28897],[94.09778,26.30196],[94.10078,26.30863],[94.09971,26.3139],[94.10251,26.31523],[94.10505,26.31995],[94.10968,26.31992],[94.11206,26.31799],[94.12168,26.31776],[94.11498,26.32395],[94.11593,26.32969],[94.11975,26.3288],[94.12492,26.33081],[94.12838,26.33036],[94.13873,26.33628],[94.14099,26.33531],[94.14101,26.33137],[94.14506,26.33059],[94.14958,26.33408],[94.16287,26.33551],[94.16718,26.33932],[94.17164,26.33796],[94.17785,26.34608],[94.17261,26.35059],[94.16871,26.35093],[94.16706,26.34799],[94.16203,26.34716],[94.15461,26.3496],[94.15035,26.34978],[94.14826,26.34831],[94.13755,26.34884],[94.13327,26.35169],[94.12825,26.36672],[94.12417,26.37202],[94.12372,26.37807],[94.12007,26.38456],[94.11907,26.39197],[94.11631,26.39767],[94.11454,26.42398],[94.1219,26.43618],[94.1256,26.43931],[94.127,26.45068],[94.11951,26.45755],[94.11587,26.4581],[94.11463,26.46082],[94.1111,26.46171],[94.10831,26.46021],[94.10354,26.46286],[94.09967,26.47048],[94.1,26.48272],[94.09732,26.48445],[94.09694,26.49239],[94.09855,26.49371],[94.09728,26.49511],[94.10021,26.49622],[94.09875,26.49772],[94.1033,26.50201],[94.10559,26.50752],[94.10327,26.51055],[94.10296,26.51439],[94.10523,26.5137],[94.10646,26.51791],[94.10441,26.52044],[94.10924,26.52488],[94.10961,26.52719],[94.11061,26.5263],[94.11225,26.52797],[94.10979,26.5285],[94.10904,26.53042],[94.11098,26.53274],[94.10833,26.53297],[94.10851,26.53444],[94.11086,26.53467],[94.11007,26.53736],[94.11259,26.53803],[94.10985,26.54165],[94.11639,26.54497],[94.11267,26.54524],[94.1121,26.54791],[94.1107,26.54558],[94.1079,26.54631],[94.1093,26.54858],[94.10572,26.54985],[94.11116,26.55272],[94.11284,26.55028],[94.11473,26.55506],[94.11021,26.55681],[94.11064,26.55957],[94.10724,26.55984],[94.10859,26.56456],[94.10798,26.56578],[94.10588,26.56496],[94.107,26.56979],[94.10268,26.57065],[94.09738,26.56832],[94.09966,26.57155],[94.09787,26.57341],[94.10113,26.57486],[94.09956,26.57682],[94.09354,26.57749],[94.09072,26.5806],[94.08936,26.57951],[94.08717,26.58047],[94.08879,26.57733],[94.08467,26.57825],[94.08607,26.57504],[94.08049,26.57769],[94.07804,26.5745],[94.07606,26.57689],[94.08007,26.57864],[94.07899,26.58074],[94.07685,26.58013],[94.0782,26.58303],[94.07679,26.58581],[94.08078,26.58319],[94.08248,26.58497],[94.07976,26.58661],[94.07893,26.58945],[94.0761,26.58837],[94.07505,26.59053],[94.07184,26.58866],[94.06995,26.59142],[94.07236,26.59305],[94.06885,26.59439],[94.07095,26.59544],[94.0703,26.59769],[94.07163,26.5996],[94.07351,26.59804],[94.07687,26.60143],[94.07498,26.60322],[94.07973,26.60335],[94.08232,26.60682],[94.08494,26.60718],[94.08623,26.61051],[94.08294,26.6093],[94.08055,26.61318],[94.07752,26.61464],[94.08041,26.61592],[94.07935,26.61783],[94.08244,26.61507],[94.08253,26.61911],[94.088,26.62007],[94.08628,26.62157],[94.08814,26.62423],[94.08307,26.62835],[94.09461,26.62804],[94.09454,26.63019],[94.09607,26.63095],[94.09402,26.63732],[94.09822,26.63789],[94.09356,26.6399],[94.09795,26.64145],[94.0952,26.64637],[94.09139,26.649],[94.0897,26.64697],[94.08579,26.64866],[94.08476,26.65058],[94.08653,26.65362],[94.08636,26.65738],[94.08296,26.65954],[94.08237,26.66166],[94.07982,26.66066],[94.07952,26.65847],[94.07746,26.6619],[94.07271,26.66103],[94.07334,26.66369],[94.07215,26.66455],[94.06826,26.66086],[94.06697,26.66346],[94.06995,26.66638],[94.06699,26.6664],[94.06623,26.66827],[94.06364,26.6638],[94.0573,26.66725],[94.05671,26.6661],[94.05871,26.66533],[94.05663,26.66314],[94.05611,26.66727],[94.05282,26.66803],[94.05419,26.67024],[94.05674,26.66901],[94.05632,26.67139],[94.0523,26.67309],[94.05395,26.67516],[94.05384,26.67914],[94.05004,26.67891],[94.0515,26.67586],[94.04753,26.67454],[94.04504,26.67879],[94.04541,26.6815],[94.04337,26.68113],[94.04505,26.6836],[94.04594,26.68205],[94.04916,26.68285],[94.04864,26.68796],[94.04505,26.68874],[94.0434,26.68751],[94.04661,26.69483],[94.0422,26.69437],[94.04064,26.69749],[94.0429,26.69647],[94.0439,26.69775],[94.04268,26.70282],[94.04053,26.70251],[94.04001,26.7049],[94.04162,26.70587],[94.04039,26.70934],[94.0359,26.70983],[94.04405,26.71323],[94.04098,26.7154],[94.04156,26.72084],[94.03824,26.72155],[94.04601,26.72515],[94.04362,26.7269],[94.04604,26.7298],[94.04418,26.73032],[94.0421,26.72853],[94.04101,26.73019],[94.04615,26.73866],[94.04239,26.73867],[94.04304,26.73654],[94.04041,26.73653],[94.03702,26.73862],[94.0391,26.74071],[94.03861,26.7424],[94.03508,26.74019],[94.03486,26.73764],[94.02973,26.74258],[94.02788,26.73955],[94.02081,26.73927],[94.02492,26.74306],[94.02028,26.74728],[94.01176,26.74719],[94.0047,26.74445],[94.00043,26.74676],[94.00086,26.76041],[93.99747,26.7663],[93.97236,26.76728],[93.97128,26.77645],[93.96318,26.77294],[93.9566,26.76034],[93.94442,26.75554],[93.90148,26.75073],[93.89178,26.76517],[93.88925,26.7639],[93.89423,26.74789],[93.89136,26.74395],[93.88502,26.74644],[93.88497,26.74829],[93.88284,26.74923],[93.87271,26.75159],[93.84965,26.762],[93.82118,26.7873],[93.80971,26.79215],[93.8016,26.79239],[93.78438,26.77876],[93.76901,26.77273],[93.74781,26.77488],[93.70806,26.77246],[93.69136,26.77418],[93.67435,26.77151],[93.64893,26.77459]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"289","area_level":"District","area_name":"Hailakandi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.60346,24.87078],[92.6007,24.87636],[92.59621,24.87944],[92.58009,24.87546],[92.57981,24.87368],[92.58253,24.87191],[92.58241,24.86741],[92.58513,24.86577],[92.58629,24.86127],[92.58279,24.85115],[92.58295,24.84454],[92.56758,24.83061],[92.5649,24.82656],[92.56726,24.82508],[92.56643,24.82417],[92.56033,24.82083],[92.55866,24.82315],[92.55138,24.81189],[92.54969,24.81042],[92.54811,24.81131],[92.54471,24.80763],[92.54592,24.80071],[92.54209,24.79823],[92.54285,24.79294],[92.54057,24.788],[92.54441,24.7811],[92.54019,24.77689],[92.54306,24.77333],[92.54236,24.77151],[92.5453,24.76911],[92.54519,24.76564],[92.53455,24.75487],[92.52502,24.75179],[92.52494,24.74833],[92.52155,24.74399],[92.52293,24.74151],[92.52139,24.73947],[92.52285,24.73711],[92.52158,24.73484],[92.5223,24.72955],[92.51782,24.72487],[92.51846,24.72156],[92.51159,24.71594],[92.51131,24.71301],[92.50516,24.70625],[92.50324,24.69754],[92.50008,24.69191],[92.49592,24.68903],[92.49797,24.68673],[92.49372,24.68332],[92.49582,24.6828],[92.49392,24.68024],[92.49373,24.67725],[92.4953,24.67659],[92.49379,24.67309],[92.49481,24.672],[92.49702,24.67294],[92.49894,24.66847],[92.50643,24.66402],[92.50389,24.65869],[92.50365,24.65324],[92.50719,24.65023],[92.50433,24.64882],[92.50408,24.64662],[92.50459,24.6388],[92.50673,24.63586],[92.50399,24.6349],[92.50401,24.63089],[92.50162,24.63038],[92.50419,24.62784],[92.50782,24.62849],[92.50648,24.62621],[92.50799,24.61844],[92.5068,24.61182],[92.50957,24.6036],[92.50731,24.60255],[92.50309,24.60491],[92.50464,24.58962],[92.50557,24.58799],[92.509,24.58734],[92.51029,24.58436],[92.50868,24.58301],[92.51253,24.58101],[92.51692,24.5764],[92.51728,24.57403],[92.51426,24.56566],[92.51677,24.55781],[92.51398,24.55576],[92.51326,24.54804],[92.50914,24.54152],[92.51039,24.53876],[92.50559,24.53481],[92.50999,24.52285],[92.50733,24.51955],[92.50701,24.51606],[92.50864,24.49846],[92.50663,24.49461],[92.50632,24.48917],[92.51023,24.4834],[92.50675,24.47239],[92.50641,24.46273],[92.50797,24.46009],[92.50538,24.45689],[92.50888,24.45492],[92.50584,24.45113],[92.50631,24.43555],[92.50537,24.43252],[92.50285,24.43077],[92.50063,24.4063],[92.49798,24.4028],[92.49638,24.39581],[92.49356,24.39277],[92.49555,24.38568],[92.49056,24.37161],[92.49151,24.36903],[92.48395,24.35534],[92.48213,24.34346],[92.47642,24.32607],[92.46933,24.3141],[92.46949,24.31154],[92.46382,24.30065],[92.45604,24.2904],[92.45138,24.2881],[92.44958,24.28038],[92.44014,24.27127],[92.433,24.25611],[92.42252,24.25499],[92.41936,24.22613],[92.42117,24.21811],[92.41858,24.21264],[92.41876,24.20469],[92.42132,24.20126],[92.41917,24.19194],[92.43237,24.18448],[92.43573,24.17929],[92.43401,24.17513],[92.43792,24.16951],[92.43584,24.16513],[92.43642,24.15303],[92.44046,24.15275],[92.4428,24.15446],[92.44912,24.14397],[92.45058,24.14714],[92.45237,24.1442],[92.45673,24.14436],[92.46101,24.13764],[92.46412,24.13862],[92.46432,24.13623],[92.4686,24.14023],[92.47257,24.1399],[92.47462,24.14364],[92.47896,24.14232],[92.47858,24.14413],[92.48061,24.14541],[92.47705,24.1474],[92.4807,24.15003],[92.48184,24.15597],[92.47943,24.15661],[92.48342,24.15826],[92.48241,24.16061],[92.48392,24.16317],[92.49039,24.16279],[92.49421,24.16018],[92.50151,24.16039],[92.50335,24.16343],[92.50618,24.16413],[92.50327,24.16777],[92.50753,24.16706],[92.51004,24.1646],[92.51141,24.16541],[92.50691,24.16988],[92.51441,24.16946],[92.51468,24.17072],[92.51211,24.17048],[92.50997,24.17246],[92.51552,24.17886],[92.51934,24.1739],[92.52404,24.17144],[92.53017,24.17632],[92.52893,24.17808],[92.53433,24.18018],[92.53112,24.18514],[92.53464,24.19367],[92.53784,24.19677],[92.53669,24.20126],[92.54048,24.20358],[92.54201,24.20752],[92.54096,24.21024],[92.54326,24.21147],[92.5423,24.21344],[92.54712,24.22016],[92.54675,24.22991],[92.54848,24.23186],[92.54687,24.23297],[92.54705,24.23645],[92.5509,24.24722],[92.55595,24.24681],[92.56261,24.2512],[92.57213,24.25188],[92.58903,24.24877],[92.59571,24.25049],[92.60605,24.24845],[92.6123,24.25347],[92.61416,24.25595],[92.61311,24.25865],[92.61971,24.28713],[92.61591,24.28958],[92.61819,24.29818],[92.6183,24.30745],[92.6195,24.30801],[92.61955,24.31354],[92.62361,24.32028],[92.62374,24.3228],[92.62155,24.32371],[92.62368,24.32728],[92.62234,24.32811],[92.62243,24.33134],[92.62477,24.33408],[92.63024,24.33362],[92.63569,24.3367],[92.63869,24.33445],[92.63542,24.33356],[92.6363,24.33134],[92.64036,24.33361],[92.63872,24.32842],[92.64576,24.32778],[92.64617,24.33095],[92.64923,24.3286],[92.65011,24.3316],[92.65172,24.33105],[92.65161,24.33547],[92.65911,24.3419],[92.65768,24.34438],[92.66062,24.34405],[92.66137,24.34816],[92.66316,24.34882],[92.66427,24.34606],[92.66562,24.34964],[92.6663,24.3463],[92.66894,24.34609],[92.67339,24.34964],[92.67716,24.35015],[92.6791,24.3478],[92.68484,24.34654],[92.68376,24.35046],[92.68976,24.3536],[92.68925,24.35524],[92.69151,24.35754],[92.69117,24.36252],[92.69476,24.36536],[92.69282,24.36847],[92.69533,24.36885],[92.69764,24.3743],[92.70361,24.37545],[92.70409,24.38464],[92.70566,24.38438],[92.70734,24.38699],[92.70647,24.39215],[92.70928,24.39337],[92.70922,24.39735],[92.71327,24.40332],[92.71138,24.40722],[92.71509,24.40954],[92.7129,24.41121],[92.71509,24.41498],[92.71739,24.4156],[92.71797,24.42015],[92.72286,24.42811],[92.72171,24.43195],[92.72612,24.43851],[92.7275,24.44642],[92.73365,24.45474],[92.74051,24.46855],[92.74698,24.48703],[92.75082,24.49209],[92.74937,24.49517],[92.75422,24.502],[92.75189,24.50401],[92.75215,24.50623],[92.75613,24.50957],[92.75604,24.51126],[92.75805,24.51102],[92.75765,24.51254],[92.76342,24.52114],[92.76299,24.52267],[92.75938,24.51858],[92.75727,24.52304],[92.75932,24.5286],[92.77369,24.5502],[92.77195,24.55078],[92.7719,24.55294],[92.7806,24.56837],[92.77582,24.57143],[92.7722,24.56873],[92.76948,24.57094],[92.76505,24.56709],[92.76187,24.56827],[92.7624,24.5712],[92.75891,24.57775],[92.75363,24.58085],[92.75273,24.58393],[92.75077,24.58392],[92.74954,24.58196],[92.74559,24.58264],[92.74355,24.58526],[92.74152,24.58421],[92.73867,24.58688],[92.73589,24.58669],[92.73535,24.59038],[92.73215,24.5885],[92.73298,24.58238],[92.72298,24.5744],[92.72132,24.56488],[92.71737,24.56189],[92.71568,24.56794],[92.71192,24.56889],[92.70921,24.56688],[92.70164,24.56611],[92.70153,24.5715],[92.69088,24.57454],[92.67924,24.58479],[92.67526,24.58454],[92.66851,24.58962],[92.66727,24.59432],[92.66999,24.59988],[92.66646,24.60975],[92.67377,24.60893],[92.67532,24.61095],[92.68906,24.61256],[92.69185,24.61497],[92.69678,24.61534],[92.69578,24.6188],[92.68732,24.62404],[92.68724,24.62548],[92.67917,24.62748],[92.66553,24.62766],[92.66515,24.67362],[92.65648,24.6735],[92.65582,24.67854],[92.65031,24.6846],[92.65111,24.69147],[92.65713,24.70063],[92.65721,24.72308],[92.65478,24.73968],[92.65585,24.75361],[92.6607,24.75822],[92.66384,24.7651],[92.6636,24.7715],[92.66761,24.78632],[92.66917,24.78773],[92.66762,24.78918],[92.66905,24.79273],[92.67452,24.80067],[92.68,24.80127],[92.68295,24.80803],[92.68144,24.81027],[92.68295,24.81107],[92.68201,24.81266],[92.6838,24.81459],[92.67955,24.81252],[92.67757,24.81641],[92.67692,24.81521],[92.67297,24.81781],[92.6669,24.81685],[92.66289,24.81428],[92.65801,24.81713],[92.6535,24.81718],[92.64814,24.81458],[92.64598,24.81528],[92.64548,24.81936],[92.64268,24.82223],[92.63988,24.82046],[92.63834,24.82193],[92.6371,24.82524],[92.63937,24.83042],[92.633,24.83128],[92.63676,24.83986],[92.63111,24.84637],[92.62926,24.85408],[92.63043,24.85585],[92.63281,24.85541],[92.64393,24.84984],[92.64673,24.85007],[92.64629,24.85287],[92.64161,24.8572],[92.63596,24.85952],[92.62175,24.85829],[92.61263,24.86083],[92.60523,24.86609],[92.60346,24.87078]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"29","area_level":"District","area_name":"Faridkot","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.63232,30.82928],[74.62403,30.83643],[74.62292,30.83279],[74.61755,30.82847],[74.61368,30.82912],[74.6114,30.82718],[74.60653,30.81933],[74.59649,30.80924],[74.5877,30.80751],[74.5773,30.80819],[74.56691,30.8024],[74.56511,30.79964],[74.54237,30.79251],[74.53028,30.78351],[74.523,30.7747],[74.52429,30.77308],[74.52187,30.77135],[74.50178,30.76534],[74.47254,30.75144],[74.46883,30.7451],[74.47401,30.71553],[74.47279,30.69909],[74.47718,30.68829],[74.48024,30.67296],[74.49778,30.6691],[74.52427,30.66796],[74.54182,30.66524],[74.56193,30.66571],[74.57416,30.66254],[74.57913,30.6591],[74.58924,30.65789],[74.59801,30.64885],[74.60035,30.64885],[74.60911,30.64252],[74.61383,30.63667],[74.61885,30.63933],[74.62355,30.62659],[74.62387,30.61823],[74.63118,30.61393],[74.63633,30.61579],[74.63441,30.60996],[74.63877,30.6077],[74.64126,30.59987],[74.64613,30.59497],[74.65876,30.59304],[74.66865,30.5789],[74.67586,30.57776],[74.68686,30.5691],[74.69692,30.56692],[74.69879,30.56394],[74.70878,30.55889],[74.70633,30.54721],[74.70188,30.54041],[74.68729,30.52957],[74.68495,30.52432],[74.68838,30.51806],[74.69358,30.51844],[74.70569,30.51534],[74.71818,30.50955],[74.71903,30.50539],[74.73755,30.49285],[74.74472,30.4935],[74.75,30.48965],[74.75864,30.49659],[74.76073,30.49328],[74.76123,30.48607],[74.76286,30.48379],[74.75313,30.47819],[74.74787,30.47285],[74.74143,30.473],[74.74031,30.46854],[74.7331,30.46297],[74.72936,30.45704],[74.73179,30.44927],[74.74252,30.44037],[74.75398,30.43397],[74.75211,30.42842],[74.75925,30.42278],[74.75519,30.40873],[74.75549,30.3984],[74.75297,30.39423],[74.75762,30.39001],[74.7698,30.39731],[74.78718,30.39572],[74.79734,30.39932],[74.80514,30.39713],[74.80723,30.40107],[74.82868,30.38934],[74.83791,30.38783],[74.85325,30.37509],[74.87567,30.38927],[74.89105,30.38058],[74.9034,30.37865],[74.91057,30.37576],[74.91792,30.37171],[74.91622,30.37024],[74.92117,30.36627],[74.93057,30.36856],[74.94433,30.38428],[74.94918,30.38279],[74.96167,30.38882],[74.96972,30.39841],[74.97057,30.40455],[74.97568,30.40347],[74.97578,30.40003],[74.98359,30.39854],[74.98601,30.40234],[74.9956,30.40461],[75.00376,30.39584],[75.00447,30.39282],[75.0128,30.38573],[75.0227,30.38052],[75.02705,30.3824],[75.02745,30.38094],[75.03164,30.3817],[75.03677,30.37932],[75.04313,30.37892],[75.0525,30.38864],[75.05142,30.39335],[75.05231,30.40931],[75.03282,30.42754],[75.02206,30.42627],[75.02724,30.43874],[75.02071,30.4419],[75.02917,30.45479],[75.03316,30.45798],[75.03971,30.45937],[75.04982,30.45526],[75.05409,30.45834],[75.05295,30.46046],[75.05107,30.45933],[75.04223,30.46561],[75.04258,30.47326],[75.03045,30.47427],[75.02778,30.4807],[75.02023,30.49089],[75.00431,30.4914],[75.0,30.48636],[74.99633,30.48943],[74.99225,30.49984],[74.99389,30.51099],[74.9901,30.52039],[74.99214,30.52713],[74.99711,30.53307],[74.99036,30.54329],[74.97788,30.54318],[74.96375,30.55236],[74.96262,30.56061],[74.95558,30.56177],[74.95046,30.56889],[74.94466,30.57184],[74.93168,30.55953],[74.92764,30.55345],[74.9271,30.54995],[74.93154,30.54672],[74.93144,30.5451],[74.92627,30.53914],[74.91188,30.54653],[74.90408,30.54882],[74.90179,30.5514],[74.90319,30.55974],[74.90462,30.5602],[74.90311,30.56231],[74.90294,30.57062],[74.91,30.58026],[74.91915,30.58603],[74.95026,30.59179],[74.95298,30.59067],[74.95555,30.59431],[74.9493,30.60094],[74.94829,30.60898],[74.94673,30.60954],[74.94838,30.62266],[74.95322,30.62566],[74.95621,30.63691],[74.94998,30.64496],[74.95826,30.6566],[74.95814,30.66647],[74.95571,30.67707],[74.95175,30.67675],[74.94536,30.67937],[74.93879,30.67825],[74.92198,30.67929],[74.92285,30.68793],[74.91887,30.68534],[74.9187,30.68239],[74.91553,30.68259],[74.90415,30.70332],[74.91063,30.72414],[74.91014,30.73544],[74.9031,30.73931],[74.89192,30.73834],[74.88312,30.74098],[74.88029,30.74582],[74.87519,30.74664],[74.86624,30.7466],[74.85824,30.74369],[74.85462,30.74798],[74.85686,30.75083],[74.85465,30.75716],[74.84869,30.7566],[74.84461,30.7588],[74.83984,30.76707],[74.83562,30.77037],[74.82852,30.77026],[74.81705,30.76678],[74.81314,30.76837],[74.80774,30.776],[74.8072,30.78925],[74.78442,30.79415],[74.78244,30.79574],[74.78136,30.8059],[74.77843,30.81038],[74.77298,30.81314],[74.77119,30.8111],[74.7699,30.81179],[74.77139,30.81536],[74.75463,30.81247],[74.74771,30.82254],[74.74054,30.82627],[74.72735,30.82297],[74.71877,30.8259],[74.71278,30.82603],[74.7085,30.8288],[74.69888,30.82652],[74.69251,30.83102],[74.68758,30.82999],[74.68141,30.82484],[74.6632,30.83417],[74.65899,30.83294],[74.65585,30.82893],[74.65345,30.82165],[74.64858,30.81828],[74.64409,30.81906],[74.63232,30.82928]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"290","area_level":"District","area_name":"Jorhat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.97895,26.80814],[93.97326,26.79624],[93.98748,26.78667],[93.97221,26.77921],[93.97125,26.77555],[93.97236,26.76728],[93.99747,26.7663],[94.00086,26.76041],[94.00043,26.74676],[94.0047,26.74445],[94.01176,26.74719],[94.02028,26.74728],[94.02492,26.74306],[94.02081,26.73927],[94.02788,26.73955],[94.02973,26.74258],[94.03486,26.73764],[94.03508,26.74019],[94.03861,26.7424],[94.0391,26.74071],[94.03702,26.73862],[94.04041,26.73653],[94.04304,26.73654],[94.04239,26.73867],[94.04615,26.73866],[94.04101,26.73019],[94.0421,26.72853],[94.04418,26.73032],[94.04604,26.7298],[94.04362,26.7269],[94.04601,26.72515],[94.03824,26.72155],[94.04156,26.72084],[94.04098,26.7154],[94.04405,26.71323],[94.0359,26.70983],[94.04039,26.70934],[94.04162,26.70587],[94.04001,26.7049],[94.04053,26.70251],[94.04268,26.70282],[94.0439,26.69775],[94.0429,26.69647],[94.04064,26.69749],[94.0422,26.69437],[94.04661,26.69483],[94.0434,26.68751],[94.04505,26.68874],[94.04864,26.68796],[94.04916,26.68285],[94.04594,26.68205],[94.04505,26.6836],[94.04337,26.68113],[94.04541,26.6815],[94.04504,26.67879],[94.04753,26.67454],[94.0515,26.67586],[94.05004,26.67891],[94.05384,26.67914],[94.05395,26.67516],[94.0523,26.67309],[94.05632,26.67139],[94.05674,26.66901],[94.05419,26.67024],[94.05282,26.66803],[94.05611,26.66727],[94.05663,26.66314],[94.05871,26.66533],[94.05671,26.6661],[94.0573,26.66725],[94.06364,26.6638],[94.06623,26.66827],[94.06699,26.6664],[94.06995,26.66638],[94.06697,26.66346],[94.06826,26.66086],[94.07215,26.66455],[94.07334,26.66369],[94.07271,26.66103],[94.07746,26.6619],[94.07952,26.65847],[94.07982,26.66066],[94.08237,26.66166],[94.08296,26.65954],[94.08636,26.65738],[94.08653,26.65362],[94.08476,26.65058],[94.08579,26.64866],[94.0897,26.64697],[94.09139,26.649],[94.0952,26.64637],[94.09783,26.64197],[94.09715,26.6403],[94.09356,26.6399],[94.09822,26.63789],[94.09402,26.63732],[94.09607,26.63095],[94.09454,26.63019],[94.09461,26.62804],[94.08307,26.62835],[94.08814,26.62423],[94.08628,26.62157],[94.088,26.62007],[94.08253,26.61911],[94.08244,26.61507],[94.07935,26.61783],[94.08041,26.61592],[94.07752,26.61464],[94.08055,26.61318],[94.08294,26.6093],[94.08623,26.61051],[94.08494,26.60718],[94.08232,26.60682],[94.07973,26.60335],[94.07498,26.60322],[94.07687,26.60143],[94.07351,26.59804],[94.07163,26.5996],[94.0703,26.59769],[94.07095,26.59544],[94.06885,26.59439],[94.07236,26.59305],[94.06995,26.59142],[94.07184,26.58866],[94.07505,26.59053],[94.0761,26.58837],[94.07893,26.58945],[94.07976,26.58661],[94.08248,26.58497],[94.08078,26.58319],[94.07679,26.58581],[94.0782,26.58303],[94.07685,26.58013],[94.07899,26.58074],[94.08007,26.57864],[94.07606,26.57689],[94.07804,26.5745],[94.08049,26.57769],[94.08607,26.57504],[94.08467,26.57825],[94.08879,26.57733],[94.08717,26.58047],[94.08936,26.57951],[94.09072,26.5806],[94.09354,26.57749],[94.09956,26.57682],[94.10113,26.57486],[94.09787,26.57341],[94.09966,26.57155],[94.09738,26.56832],[94.10268,26.57065],[94.107,26.56979],[94.10588,26.56496],[94.10798,26.56578],[94.10859,26.56456],[94.10724,26.55984],[94.11064,26.55957],[94.11021,26.55681],[94.11473,26.55506],[94.11284,26.55028],[94.11116,26.55272],[94.10572,26.54985],[94.1093,26.54858],[94.1079,26.54631],[94.1107,26.54558],[94.1121,26.54791],[94.11267,26.54524],[94.11639,26.54497],[94.10985,26.54165],[94.11259,26.53803],[94.11007,26.53736],[94.11086,26.53467],[94.10851,26.53444],[94.10833,26.53297],[94.11098,26.53274],[94.10904,26.53042],[94.10979,26.5285],[94.11225,26.52797],[94.11061,26.5263],[94.10961,26.52719],[94.10924,26.52488],[94.10441,26.52044],[94.10646,26.51791],[94.10523,26.5137],[94.10296,26.51439],[94.10327,26.51055],[94.10559,26.50752],[94.1033,26.50201],[94.09875,26.49772],[94.10021,26.49622],[94.09728,26.49511],[94.09855,26.49371],[94.09694,26.49239],[94.09732,26.48445],[94.1,26.48272],[94.09967,26.47048],[94.10354,26.46286],[94.10831,26.46021],[94.1111,26.46171],[94.11463,26.46082],[94.11587,26.4581],[94.11951,26.45755],[94.127,26.45068],[94.1256,26.43931],[94.11485,26.42586],[94.11631,26.39767],[94.11907,26.39197],[94.12007,26.38456],[94.12372,26.37807],[94.12417,26.37202],[94.12825,26.36672],[94.13194,26.35454],[94.13327,26.35169],[94.13823,26.34867],[94.14826,26.34831],[94.15069,26.34978],[94.16133,26.34775],[94.16016,26.35429],[94.17113,26.36275],[94.17411,26.37072],[94.17223,26.37365],[94.17764,26.38334],[94.17191,26.41584],[94.17572,26.42443],[94.17173,26.42978],[94.17613,26.43642],[94.18327,26.45528],[94.18585,26.45895],[94.19405,26.46124],[94.20266,26.46906],[94.20249,26.47278],[94.20751,26.48647],[94.22127,26.49813],[94.23662,26.50614],[94.24872,26.52497],[94.24782,26.52821],[94.25332,26.53279],[94.25634,26.54122],[94.27064,26.54928],[94.27151,26.55155],[94.28479,26.56107],[94.28127,26.54865],[94.28614,26.54251],[94.28194,26.54059],[94.28096,26.53506],[94.28291,26.5294],[94.28176,26.5245],[94.28656,26.51522],[94.28582,26.51234],[94.28338,26.51075],[94.28323,26.50497],[94.29006,26.48877],[94.28975,26.47971],[94.2923,26.47757],[94.29157,26.47522],[94.29324,26.47429],[94.29343,26.4711],[94.29928,26.46682],[94.29992,26.46365],[94.30351,26.46416],[94.30578,26.46323],[94.30671,26.46079],[94.30798,26.46253],[94.31662,26.45832],[94.31844,26.46528],[94.32385,26.46551],[94.32128,26.47102],[94.32257,26.47244],[94.31956,26.47421],[94.3216,26.47566],[94.32647,26.47544],[94.32552,26.48195],[94.33041,26.4795],[94.332,26.48058],[94.33394,26.47933],[94.33631,26.48205],[94.33944,26.4805],[94.34081,26.48554],[94.34386,26.48471],[94.34469,26.48875],[94.34686,26.486],[94.34927,26.4911],[94.35285,26.49006],[94.35011,26.49243],[94.34665,26.49207],[94.34947,26.49377],[94.34957,26.49626],[94.35296,26.49928],[94.35064,26.50242],[94.34763,26.5032],[94.34779,26.50446],[94.35421,26.50306],[94.35748,26.50518],[94.36271,26.50566],[94.36563,26.50354],[94.36843,26.50596],[94.36932,26.50466],[94.37217,26.50604],[94.37468,26.50845],[94.3713,26.51443],[94.3731,26.51494],[94.37508,26.51282],[94.37626,26.51382],[94.37608,26.51567],[94.37336,26.51711],[94.37565,26.51818],[94.37614,26.52178],[94.3782,26.52117],[94.38095,26.5258],[94.3852,26.52578],[94.38544,26.53053],[94.39,26.52691],[94.39142,26.53035],[94.39326,26.52738],[94.39577,26.52733],[94.39759,26.52988],[94.39525,26.53361],[94.39819,26.53525],[94.40088,26.53415],[94.39777,26.53862],[94.3999,26.5403],[94.40265,26.53947],[94.40272,26.54135],[94.3966,26.54271],[94.40111,26.54289],[94.40308,26.54525],[94.40616,26.54403],[94.4062,26.54584],[94.40123,26.54828],[94.40627,26.54919],[94.40498,26.5542],[94.402,26.55467],[94.40648,26.55575],[94.40342,26.55827],[94.40734,26.56033],[94.40657,26.56186],[94.40411,26.56143],[94.40621,26.56271],[94.40585,26.56788],[94.41125,26.57215],[94.40993,26.57652],[94.41338,26.57719],[94.41163,26.57943],[94.4122,26.58297],[94.40959,26.58483],[94.40938,26.5877],[94.40749,26.5879],[94.40767,26.59163],[94.40188,26.59356],[94.40259,26.60313],[94.40507,26.60389],[94.40556,26.60563],[94.40292,26.61057],[94.42574,26.61715],[94.4356,26.62204],[94.45128,26.63629],[94.45273,26.63407],[94.45515,26.63547],[94.4536,26.63194],[94.45793,26.6336],[94.46549,26.63306],[94.4598,26.63685],[94.45908,26.64461],[94.45315,26.65255],[94.4541,26.65391],[94.45845,26.65354],[94.46028,26.66163],[94.48506,26.66785],[94.49267,26.66589],[94.50147,26.67229],[94.50514,26.67865],[94.50905,26.68023],[94.50825,26.6853],[94.51038,26.68477],[94.51329,26.68009],[94.51758,26.68193],[94.5177,26.68732],[94.52081,26.69416],[94.5207,26.69921],[94.52421,26.69576],[94.52654,26.69895],[94.5336,26.70131],[94.53926,26.70618],[94.54519,26.70523],[94.54791,26.70632],[94.5503,26.70172],[94.55503,26.70507],[94.56235,26.70507],[94.56098,26.70056],[94.56243,26.69553],[94.55939,26.68643],[94.5671,26.68353],[94.56904,26.68611],[94.57157,26.68664],[94.56747,26.68748],[94.5664,26.69007],[94.56788,26.69292],[94.57209,26.69457],[94.57732,26.70066],[94.58246,26.69739],[94.59388,26.6972],[94.59153,26.70016],[94.59444,26.70226],[94.59252,26.70496],[94.59355,26.71517],[94.5973,26.71679],[94.60228,26.71162],[94.60334,26.71235],[94.60109,26.71455],[94.60241,26.71653],[94.60153,26.71911],[94.59158,26.72002],[94.59238,26.72503],[94.58462,26.7246],[94.58039,26.72969],[94.57995,26.7315],[94.58477,26.73332],[94.58312,26.73475],[94.58005,26.7344],[94.5796,26.73823],[94.57091,26.74294],[94.57264,26.75236],[94.56339,26.75054],[94.55634,26.75661],[94.54958,26.74887],[94.54583,26.75473],[94.54045,26.75651],[94.53806,26.76047],[94.53605,26.76026],[94.53529,26.75756],[94.53662,26.75511],[94.53458,26.75458],[94.52875,26.75809],[94.5261,26.76482],[94.5224,26.76649],[94.51786,26.76493],[94.5179,26.76699],[94.52277,26.76913],[94.52252,26.77036],[94.51221,26.772],[94.51191,26.77501],[94.51643,26.77842],[94.51682,26.78331],[94.52147,26.78478],[94.52425,26.78889],[94.51939,26.7906],[94.51932,26.79484],[94.51624,26.79397],[94.51531,26.79508],[94.52482,26.79822],[94.52585,26.79989],[94.52248,26.80273],[94.52145,26.80697],[94.5177,26.802],[94.51707,26.81234],[94.50938,26.81282],[94.50967,26.81794],[94.50396,26.82171],[94.50367,26.82616],[94.49656,26.82514],[94.48753,26.82887],[94.48573,26.83099],[94.48993,26.83956],[94.48908,26.84247],[94.49306,26.84534],[94.49086,26.84845],[94.49132,26.85191],[94.48847,26.85484],[94.48921,26.85862],[94.49502,26.86043],[94.49369,26.86417],[94.49652,26.86686],[94.49195,26.87463],[94.49268,26.88229],[94.48844,26.88065],[94.48441,26.88443],[94.4804,26.8842],[94.47912,26.88835],[94.47416,26.89262],[94.47461,26.89444],[94.47805,26.89633],[94.48198,26.90531],[94.47629,26.90991],[94.48178,26.91327],[94.4787,26.91705],[94.4792,26.92417],[94.47771,26.92852],[94.47368,26.93251],[94.47379,26.93535],[94.46872,26.93431],[94.46436,26.94123],[94.46231,26.94211],[94.45884,26.9422],[94.4537,26.93843],[94.44954,26.93928],[94.43815,26.93539],[94.43291,26.93961],[94.42753,26.93702],[94.42206,26.94188],[94.4197,26.93997],[94.41787,26.94331],[94.41482,26.93992],[94.41127,26.94008],[94.40716,26.93773],[94.40572,26.93305],[94.3966,26.95284],[94.38363,26.93807],[94.37593,26.92083],[94.36148,26.90978],[94.34879,26.89623],[94.332,26.88277],[94.3201,26.87966],[94.30032,26.87761],[94.29206,26.87228],[94.28479,26.87345],[94.27126,26.86898],[94.25549,26.86651],[94.24439,26.86752],[94.23447,26.86498],[94.22874,26.87161],[94.2142,26.86624],[94.19941,26.86463],[94.19066,26.85804],[94.18454,26.85544],[94.16781,26.8554],[94.15192,26.84787],[94.13302,26.84869],[94.11294,26.84057],[94.09887,26.82781],[94.08924,26.82775],[94.08341,26.82172],[94.08935,26.81955],[94.08349,26.82009],[94.07081,26.81795],[94.06611,26.81384],[94.05195,26.80681],[94.02768,26.80428],[93.97895,26.80814]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"291","area_level":"District","area_name":"Kamrup","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.58887,26.51576],[91.58867,26.52678],[91.58052,26.53099],[91.58049,26.52923],[91.5769,26.52887],[91.57327,26.52632],[91.55619,26.52551],[91.55669,26.50831],[91.55845,26.49765],[91.56021,26.4955],[91.55935,26.49084],[91.56202,26.48366],[91.55378,26.47964],[91.54959,26.46954],[91.55346,26.45045],[91.56059,26.4439],[91.56226,26.43989],[91.56113,26.43807],[91.56277,26.43717],[91.56218,26.43438],[91.56441,26.43393],[91.56306,26.43278],[91.56428,26.4327],[91.56414,26.43025],[91.56008,26.42907],[91.55832,26.42318],[91.55191,26.4175],[91.54832,26.41286],[91.54767,26.4095],[91.54248,26.40821],[91.54107,26.40172],[91.53485,26.3989],[91.53594,26.39802],[91.52865,26.39273],[91.52852,26.3903],[91.53,26.3899],[91.52954,26.3829],[91.53642,26.37647],[91.52533,26.37159],[91.52616,26.36625],[91.5245,26.36384],[91.52405,26.35536],[91.51953,26.35479],[91.52115,26.34608],[91.52455,26.34519],[91.52046,26.34086],[91.52392,26.3398],[91.52489,26.33669],[91.52163,26.33638],[91.5202,26.33305],[91.51541,26.33228],[91.51102,26.33212],[91.51032,26.33483],[91.50788,26.33542],[91.50224,26.33107],[91.49695,26.33174],[91.4916,26.32827],[91.48978,26.33153],[91.48304,26.33013],[91.47978,26.32722],[91.48125,26.32107],[91.46589,26.31679],[91.45785,26.32067],[91.45492,26.32037],[91.45135,26.31472],[91.45708,26.31449],[91.45746,26.3132],[91.45163,26.30943],[91.44836,26.29083],[91.45135,26.26963],[91.44478,26.26928],[91.44622,26.26743],[91.44439,26.26484],[91.43652,26.26027],[91.42288,26.26851],[91.41266,26.26557],[91.41357,26.25338],[91.41639,26.25142],[91.41773,26.24042],[91.42225,26.23237],[91.4198,26.2059],[91.4137,26.20472],[91.41107,26.20115],[91.41506,26.19435],[91.41749,26.18082],[91.42045,26.17465],[91.41426,26.13612],[91.41014,26.13817],[91.39685,26.13713],[91.39063,26.13902],[91.36687,26.16035],[91.35361,26.1673],[91.34311,26.16302],[91.33422,26.16785],[91.3287,26.16272],[91.32323,26.16042],[91.31017,26.1616],[91.29461,26.15724],[91.27542,26.16139],[91.25565,26.16309],[91.24511,26.17029],[91.23269,26.17616],[91.22207,26.1794],[91.21264,26.18001],[91.18866,26.17535],[91.17829,26.17502],[91.14521,26.15981],[91.13274,26.15903],[91.11696,26.15468],[91.10063,26.16515],[91.09008,26.16439],[91.0812,26.16174],[91.06912,26.15436],[91.06308,26.14542],[91.05429,26.13837],[91.04978,26.13151],[91.03718,26.1271],[91.03668,26.12363],[91.02969,26.11918],[91.02125,26.12015],[91.01542,26.12637],[90.9981,26.12874],[90.9988,26.12659],[91.00758,26.11983],[91.00965,26.11628],[91.00868,26.11516],[91.00155,26.11921],[90.99524,26.11958],[90.95406,26.09624],[90.94022,26.09299],[90.94326,26.09121],[90.94722,26.09331],[90.94905,26.09251],[90.95004,26.08829],[90.95235,26.08654],[90.95876,26.08749],[90.96084,26.07877],[90.96813,26.07472],[90.98123,26.06281],[91.00491,26.05761],[91.01001,26.05816],[91.0262,26.04674],[91.03151,26.04688],[91.03461,26.05123],[91.03594,26.04845],[91.0401,26.04758],[91.04481,26.04366],[91.04886,26.0444],[91.05462,26.04964],[91.05988,26.04621],[91.06507,26.0475],[91.07057,26.041],[91.07857,26.04],[91.08195,26.03349],[91.08918,26.03209],[91.08924,26.02952],[91.08686,26.02643],[91.08732,26.02378],[91.09107,26.02154],[91.09275,26.01803],[91.09229,26.01415],[91.09973,26.01045],[91.09698,26.00711],[91.09015,26.00412],[91.08847,25.99329],[91.08587,25.98722],[91.0859,25.98195],[91.08247,25.9797],[91.08034,25.97228],[91.06904,25.96736],[91.06405,25.95861],[91.05894,25.95588],[91.04754,25.94151],[91.05204,25.93829],[91.05199,25.93595],[91.04267,25.9265],[91.03553,25.90497],[91.03047,25.89999],[91.03052,25.88483],[91.02812,25.86987],[91.01391,25.85663],[91.01531,25.8484],[91.01148,25.84591],[91.01221,25.84178],[91.01024,25.83733],[91.00798,25.83796],[91.00693,25.83249],[91.0014,25.8251],[91.00601,25.82038],[91.02245,25.82377],[91.02863,25.83116],[91.03208,25.83285],[91.0325,25.835],[91.03923,25.83689],[91.04822,25.8492],[91.06721,25.84663],[91.0785,25.85274],[91.07298,25.84589],[91.07324,25.84046],[91.07186,25.83876],[91.06773,25.83681],[91.06641,25.83886],[91.05937,25.83666],[91.05773,25.83177],[91.05297,25.83181],[91.04888,25.82927],[91.06213,25.82078],[91.06697,25.82573],[91.07714,25.82894],[91.12036,25.83293],[91.12946,25.84261],[91.13611,25.84263],[91.14755,25.85049],[91.1599,25.84995],[91.17362,25.8444],[91.18023,25.84397],[91.18399,25.8504],[91.1892,25.85171],[91.19583,25.86139],[91.19756,25.84954],[91.20364,25.84321],[91.19729,25.83524],[91.19468,25.83486],[91.19446,25.82728],[91.18937,25.82374],[91.18631,25.81836],[91.19044,25.81143],[91.18419,25.79889],[91.18207,25.7836],[91.1784,25.78016],[91.17826,25.77735],[91.18513,25.77199],[91.18416,25.76643],[91.18929,25.76395],[91.18894,25.75045],[91.19048,25.74783],[91.21012,25.72549],[91.22245,25.72256],[91.24552,25.7333],[91.26453,25.74585],[91.27454,25.75045],[91.27898,25.75736],[91.28863,25.7655],[91.29004,25.77264],[91.29456,25.77592],[91.29556,25.78018],[91.30185,25.78648],[91.30259,25.7899],[91.30971,25.79888],[91.31472,25.80959],[91.32075,25.81572],[91.32232,25.82153],[91.33432,25.83307],[91.33326,25.83675],[91.33535,25.84054],[91.34404,25.83712],[91.34672,25.84003],[91.35216,25.83856],[91.35774,25.84149],[91.36583,25.84003],[91.37105,25.84262],[91.3729,25.84672],[91.38114,25.84563],[91.39314,25.84759],[91.40273,25.8514],[91.40617,25.85006],[91.41346,25.85356],[91.42247,25.85447],[91.42817,25.85264],[91.43583,25.84356],[91.44515,25.83974],[91.44838,25.84189],[91.44861,25.845],[91.46178,25.85434],[91.46308,25.857],[91.46947,25.85916],[91.4779,25.85727],[91.48366,25.86417],[91.49577,25.86382],[91.49737,25.86109],[91.50342,25.86425],[91.51372,25.86397],[91.52236,25.87285],[91.52795,25.87316],[91.53043,25.87125],[91.53043,25.88163],[91.53519,25.88388],[91.53299,25.88815],[91.52772,25.89085],[91.52555,25.89091],[91.52129,25.88346],[91.52131,25.87511],[91.51383,25.86622],[91.51142,25.86534],[91.4912,25.86594],[91.47538,25.86988],[91.47604,25.87252],[91.47481,25.87402],[91.47784,25.88048],[91.47837,25.88747],[91.484,25.89304],[91.49191,25.89585],[91.49943,25.89119],[91.5039,25.89117],[91.49874,25.89599],[91.50421,25.90288],[91.50488,25.90777],[91.52057,25.91681],[91.52097,25.91906],[91.53302,25.92657],[91.53695,25.93121],[91.53658,25.93577],[91.53255,25.92989],[91.52276,25.92531],[91.51791,25.91966],[91.51299,25.91678],[91.50955,25.91721],[91.50467,25.91139],[91.50318,25.91415],[91.50447,25.91672],[91.50124,25.91886],[91.50177,25.92429],[91.50325,25.92683],[91.50675,25.92842],[91.50796,25.93228],[91.51381,25.93289],[91.51515,25.94123],[91.51982,25.93988],[91.51658,25.95571],[91.51808,25.95973],[91.52217,25.95947],[91.5253,25.96163],[91.52865,25.96064],[91.53036,25.96307],[91.53562,25.9623],[91.5354,25.96673],[91.53836,25.97141],[91.54272,25.97317],[91.5447,25.97591],[91.54673,25.97511],[91.55125,25.9766],[91.5517,25.98503],[91.55745,25.99274],[91.5606,26.00092],[91.56507,26.00201],[91.56363,26.00749],[91.57217,26.01536],[91.56919,26.01844],[91.57073,26.02568],[91.57984,26.03325],[91.58872,26.02956],[91.59407,26.02168],[91.59389,26.01978],[91.59753,26.01807],[91.60023,26.02161],[91.61953,26.02596],[91.62635,26.02213],[91.6311,26.02197],[91.6324,26.01902],[91.63118,26.01775],[91.63267,26.01655],[91.6316,26.01472],[91.6349,26.01214],[91.63275,26.01114],[91.63324,26.00849],[91.63135,26.0075],[91.62816,26.00074],[91.63023,25.99013],[91.62624,25.98887],[91.62606,25.98668],[91.62853,25.98244],[91.62825,25.97615],[91.64071,25.96376],[91.63436,25.96051],[91.6294,25.94715],[91.62982,25.94325],[91.62616,25.94219],[91.62289,25.94479],[91.61188,25.94503],[91.60947,25.93739],[91.62139,25.93222],[91.62432,25.92957],[91.62525,25.92608],[91.63056,25.92483],[91.63221,25.92179],[91.6365,25.92133],[91.65149,25.90628],[91.66342,25.90776],[91.6706,25.90415],[91.67884,25.91625],[91.68808,25.92021],[91.68943,25.92462],[91.69893,25.93501],[91.70113,25.93563],[91.7024,25.94127],[91.71348,25.94405],[91.71333,25.94573],[91.72011,25.9536],[91.72024,25.96085],[91.72252,25.96572],[91.71978,25.96583],[91.72111,25.96855],[91.72007,25.98177],[91.72153,25.98833],[91.71959,25.99219],[91.72172,26.0015],[91.72156,26.01219],[91.7249,26.01835],[91.72478,26.02872],[91.72305,26.03496],[91.68735,26.04615],[91.63421,26.06979],[91.62753,26.07003],[91.62678,26.07174],[91.62926,26.07472],[91.61466,26.07122],[91.61093,26.07221],[91.6107,26.07597],[91.60016,26.07561],[91.60009,26.06731],[91.59825,26.0609],[91.58873,26.05722],[91.58647,26.05774],[91.58466,26.06716],[91.5794,26.06824],[91.57848,26.05906],[91.56833,26.05982],[91.5715,26.06682],[91.57152,26.07096],[91.57856,26.07282],[91.58022,26.07623],[91.5794,26.08356],[91.58477,26.08539],[91.58715,26.09028],[91.5864,26.09236],[91.57341,26.09575],[91.5731,26.10272],[91.56411,26.10432],[91.56507,26.11669],[91.56112,26.12275],[91.5616,26.1409],[91.56474,26.1493],[91.56889,26.15053],[91.60434,26.15472],[91.6215,26.16133],[91.64824,26.16513],[91.65741,26.18247],[91.68356,26.17967],[91.68417,26.18133],[91.68927,26.18245],[91.69913,26.18171],[91.71942,26.18491],[91.72388,26.18775],[91.7223,26.19444],[91.72378,26.19652],[91.74658,26.20622],[91.7489,26.20904],[91.74442,26.21371],[91.74597,26.22067],[91.76422,26.23263],[91.7639,26.24001],[91.77348,26.24266],[91.77582,26.2405],[91.78193,26.24483],[91.78449,26.25134],[91.78636,26.26484],[91.79027,26.26779],[91.79054,26.2726],[91.78778,26.27442],[91.78603,26.2784],[91.78656,26.28447],[91.78452,26.2876],[91.78629,26.29142],[91.78218,26.29623],[91.78327,26.30129],[91.78542,26.30363],[91.78212,26.30387],[91.78184,26.30544],[91.7874,26.30651],[91.78941,26.31188],[91.79312,26.31144],[91.79307,26.31715],[91.79155,26.31928],[91.79276,26.32144],[91.79592,26.32074],[91.79544,26.31687],[91.79742,26.31326],[91.80355,26.3178],[91.80582,26.31319],[91.80994,26.31338],[91.81383,26.311],[91.81557,26.31345],[91.81679,26.31689],[91.80885,26.31926],[91.80841,26.32218],[91.81077,26.32566],[91.815,26.32773],[91.81862,26.32483],[91.81913,26.32884],[91.82169,26.33182],[91.81698,26.3429],[91.81955,26.34639],[91.81615,26.34997],[91.8216,26.35438],[91.8195,26.36027],[91.82296,26.36386],[91.82018,26.36513],[91.8221,26.37043],[91.81825,26.3793],[91.81018,26.38361],[91.80576,26.38242],[91.80294,26.38374],[91.80427,26.38934],[91.79634,26.39299],[91.79863,26.39637],[91.79793,26.40069],[91.79464,26.40275],[91.7958,26.40791],[91.79399,26.40961],[91.78912,26.40783],[91.78261,26.40915],[91.77998,26.41373],[91.78259,26.41581],[91.78284,26.418],[91.77725,26.41989],[91.77908,26.42386],[91.77871,26.42743],[91.77469,26.42532],[91.77325,26.43055],[91.77087,26.43289],[91.77236,26.43479],[91.77104,26.44466],[91.77214,26.44723],[91.76467,26.45881],[91.76611,26.463],[91.76551,26.46758],[91.76697,26.46866],[91.77054,26.46639],[91.77316,26.46976],[91.77733,26.47006],[91.77739,26.47521],[91.77931,26.47716],[91.77983,26.48178],[91.7629,26.48007],[91.7605,26.48248],[91.75221,26.48162],[91.75152,26.48535],[91.75279,26.48664],[91.75127,26.48818],[91.75421,26.49447],[91.74788,26.49662],[91.73443,26.49644],[91.73376,26.49749],[91.73772,26.50183],[91.72483,26.50308],[91.72628,26.49596],[91.71869,26.49183],[91.71933,26.48827],[91.71636,26.48232],[91.7201,26.47699],[91.71035,26.47701],[91.7098,26.47895],[91.70986,26.47334],[91.68903,26.46379],[91.68564,26.45503],[91.67595,26.45458],[91.67667,26.44846],[91.63573,26.44986],[91.63003,26.44632],[91.62417,26.44814],[91.63209,26.4511],[91.62905,26.45518],[91.63003,26.45989],[91.62902,26.46096],[91.6266,26.45622],[91.62428,26.45681],[91.62456,26.46029],[91.62922,26.46488],[91.62428,26.46474],[91.62122,26.46947],[91.61885,26.46758],[91.61797,26.46877],[91.62103,26.47453],[91.62454,26.47086],[91.62655,26.47089],[91.62579,26.47447],[91.62819,26.48087],[91.62549,26.48012],[91.62318,26.47573],[91.62119,26.47665],[91.62038,26.47967],[91.62285,26.48444],[91.62629,26.48356],[91.62929,26.48618],[91.62885,26.48743],[91.62465,26.48683],[91.62311,26.48863],[91.62756,26.49061],[91.62852,26.49347],[91.62533,26.49347],[91.62043,26.48876],[91.61656,26.48925],[91.61623,26.48569],[91.61474,26.48913],[91.61864,26.4939],[91.61179,26.49462],[91.61548,26.50039],[91.61383,26.50309],[91.62006,26.50445],[91.61809,26.50594],[91.61956,26.51278],[91.59994,26.51279],[91.59876,26.51314],[91.59912,26.51673],[91.58955,26.51451],[91.58887,26.51576]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"292","area_level":"District","area_name":"Karbi Anglong","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.70179,26.60727],[93.68334,26.60597],[93.68234,26.60356],[93.67883,26.60474],[93.67844,26.60207],[93.67481,26.60018],[93.67177,26.60358],[93.66586,26.60475],[93.66356,26.60383],[93.66406,26.60144],[93.66144,26.5996],[93.65982,26.59996],[93.65884,26.60272],[93.65249,26.60244],[93.64901,26.60015],[93.64194,26.59966],[93.64248,26.59719],[93.64087,26.59646],[93.63591,26.59751],[93.63187,26.59598],[93.62876,26.59278],[93.62533,26.59213],[93.62532,26.58852],[93.62187,26.59034],[93.62308,26.58371],[93.62124,26.57615],[93.61771,26.57153],[93.61379,26.56995],[93.61658,26.5688],[93.61669,26.56603],[93.6143,26.56851],[93.61,26.56736],[93.61313,26.57291],[93.61287,26.57641],[93.61092,26.57767],[93.60056,26.5747],[93.59423,26.57105],[93.58973,26.57082],[93.58927,26.57686],[93.58285,26.58047],[93.58255,26.58593],[93.58476,26.58889],[93.58344,26.59689],[93.59002,26.59846],[93.58602,26.60366],[93.58134,26.60583],[93.57492,26.60486],[93.57152,26.60865],[93.56787,26.60794],[93.56838,26.61021],[93.55866,26.61209],[93.55568,26.61116],[93.55328,26.61267],[93.55254,26.60723],[93.54973,26.60448],[93.54708,26.60553],[93.54194,26.60356],[93.53696,26.59785],[93.52366,26.59369],[93.51935,26.59561],[93.50947,26.59353],[93.50403,26.60631],[93.50017,26.60584],[93.49547,26.61119],[93.49618,26.60714],[93.494,26.60593],[93.47795,26.60322],[93.47587,26.60018],[93.47303,26.59923],[93.47299,26.59575],[93.46943,26.59544],[93.46981,26.59165],[93.47838,26.58867],[93.48864,26.59026],[93.49161,26.58712],[93.49047,26.58584],[93.47966,26.58468],[93.47431,26.582],[93.46616,26.57223],[93.4638,26.57175],[93.4637,26.5694],[93.45987,26.57117],[93.45934,26.56937],[93.45653,26.56871],[93.45532,26.57201],[93.4641,26.57698],[93.4663,26.58154],[93.4663,26.58539],[93.46469,26.58599],[93.45685,26.57605],[93.45231,26.57527],[93.45471,26.57895],[93.45297,26.58084],[93.4487,26.58014],[93.44656,26.57798],[93.44464,26.57871],[93.41478,26.57269],[93.40868,26.56922],[93.40857,26.57075],[93.40168,26.56999],[93.39741,26.57153],[93.39744,26.57278],[93.40622,26.57503],[93.40236,26.57796],[93.40275,26.58019],[93.38403,26.58019],[93.3788,26.57872],[93.37175,26.57946],[93.369,26.58132],[93.3602,26.58026],[93.34731,26.58206],[93.3364,26.58032],[93.3319,26.58383],[93.32594,26.58486],[93.31423,26.58246],[93.31041,26.57648],[93.30337,26.57629],[93.29504,26.57191],[93.29495,26.57414],[93.29765,26.57701],[93.2947,26.57873],[93.28851,26.57256],[93.28358,26.57127],[93.28157,26.56912],[93.2699,26.57297],[93.26191,26.5695],[93.25291,26.56788],[93.25117,26.56996],[93.24967,26.56534],[93.24171,26.56161],[93.23507,26.55286],[93.25647,26.55115],[93.24994,26.5485],[93.24705,26.54498],[93.24778,26.54377],[93.25124,26.54477],[93.25686,26.5408],[93.25995,26.54079],[93.26266,26.53789],[93.26136,26.53565],[93.2551,26.53464],[93.25653,26.53199],[93.26461,26.53368],[93.2722,26.54519],[93.2735,26.54523],[93.27201,26.5378],[93.27547,26.53635],[93.27543,26.53389],[93.26523,26.52938],[93.26392,26.52742],[93.26913,26.52787],[93.27083,26.52442],[93.27486,26.52183],[93.27896,26.52254],[93.28096,26.52518],[93.2812,26.52322],[93.28781,26.52069],[93.2868,26.51735],[93.29069,26.51319],[93.29398,26.5128],[93.29447,26.51017],[93.29165,26.50746],[93.29146,26.50455],[93.28909,26.50696],[93.28946,26.51057],[93.28299,26.51392],[93.28519,26.51571],[93.28421,26.5198],[93.27829,26.51948],[93.27221,26.5168],[93.27161,26.51368],[93.27412,26.5111],[93.27305,26.50866],[93.27045,26.51044],[93.26337,26.50893],[93.26978,26.51482],[93.26634,26.51565],[93.2634,26.52115],[93.25814,26.52284],[93.25339,26.52217],[93.25011,26.52447],[93.24606,26.52358],[93.24578,26.52777],[93.24282,26.52991],[93.24456,26.5325],[93.23332,26.53573],[93.22983,26.53247],[93.22261,26.53648],[93.21915,26.53634],[93.21655,26.5302],[93.21296,26.52966],[93.2116,26.52403],[93.21727,26.52264],[93.21617,26.52098],[93.21107,26.52012],[93.21184,26.51654],[93.21593,26.51436],[93.21312,26.51342],[93.21252,26.51117],[93.21742,26.50941],[93.21732,26.50746],[93.21232,26.50888],[93.20425,26.5014],[93.2005,26.50144],[93.20431,26.50557],[93.20098,26.50652],[93.20288,26.50919],[93.20603,26.50755],[93.20976,26.5148],[93.19944,26.53348],[93.19059,26.53579],[93.16522,26.52398],[93.16094,26.52404],[93.1595,26.52604],[93.16518,26.52664],[93.16934,26.53157],[93.17383,26.53099],[93.17275,26.53305],[93.17495,26.53597],[93.17994,26.53656],[93.18044,26.54036],[93.18369,26.53918],[93.19001,26.54371],[93.19999,26.54348],[93.20604,26.55313],[93.20968,26.55616],[93.21098,26.55986],[93.20871,26.56185],[93.20927,26.56395],[93.20328,26.56216],[93.20075,26.56444],[93.19752,26.56419],[93.19129,26.56708],[93.18109,26.56447],[93.16736,26.55505],[93.15526,26.5502],[93.15086,26.54639],[93.1471,26.55587],[93.1415,26.55559],[93.13691,26.55199],[93.1336,26.5446],[93.12381,26.53801],[93.11703,26.53771],[93.11897,26.53312],[93.1143,26.53032],[93.10955,26.53063],[93.10351,26.53516],[93.10193,26.53689],[93.1012,26.54283],[93.09666,26.54058],[93.08906,26.54465],[93.08205,26.54494],[93.07728,26.54313],[93.07343,26.54459],[93.05992,26.54472],[93.04298,26.53508],[93.04318,26.53108],[93.04619,26.53038],[93.04828,26.52596],[93.04521,26.52704],[93.0422,26.52394],[93.03813,26.52555],[93.03924,26.52037],[93.03682,26.51827],[93.03258,26.51879],[93.03214,26.51544],[93.02513,26.51564],[93.02425,26.51374],[93.01623,26.51102],[93.01276,26.50749],[93.01136,26.50484],[93.01247,26.49907],[93.00649,26.49115],[93.00865,26.48121],[93.01415,26.47722],[93.02448,26.48285],[93.02657,26.48055],[93.02953,26.48419],[93.03569,26.48627],[93.04477,26.48666],[93.04721,26.49077],[93.04894,26.48886],[93.05422,26.48897],[93.06007,26.49224],[93.06092,26.49059],[93.06853,26.49143],[93.06871,26.49585],[93.0666,26.50031],[93.07025,26.49684],[93.07052,26.49138],[93.07314,26.49401],[93.07839,26.49421],[93.08443,26.49723],[93.08704,26.50023],[93.09032,26.50001],[93.09127,26.49852],[93.0817,26.49309],[93.0787,26.48858],[93.06603,26.4826],[93.06449,26.47938],[93.0672,26.47771],[93.07384,26.47862],[93.07488,26.47571],[93.07324,26.47275],[93.07612,26.46941],[93.07752,26.47127],[93.07948,26.47006],[93.08636,26.47068],[93.09034,26.46874],[93.09153,26.46518],[93.08873,26.46263],[93.08929,26.46062],[93.09449,26.46098],[93.09662,26.46348],[93.09914,26.4633],[93.10246,26.46012],[93.10208,26.46443],[93.10814,26.46698],[93.10548,26.46963],[93.10253,26.46961],[93.10373,26.47141],[93.10267,26.47224],[93.09816,26.47299],[93.10573,26.47604],[93.10646,26.4789],[93.10951,26.47935],[93.11168,26.48377],[93.11731,26.48527],[93.11739,26.48263],[93.11958,26.48082],[93.12452,26.48309],[93.12171,26.48521],[93.12089,26.49145],[93.11881,26.49241],[93.12526,26.49578],[93.12144,26.4925],[93.12473,26.48829],[93.12972,26.48781],[93.13294,26.48967],[93.12959,26.48648],[93.12695,26.48606],[93.12739,26.48037],[93.13559,26.48519],[93.13626,26.48436],[93.13265,26.48144],[93.1313,26.47714],[93.11041,26.47106],[93.11563,26.46963],[93.11459,26.46772],[93.12005,26.4691],[93.11877,26.46663],[93.12096,26.46674],[93.12097,26.4642],[93.12473,26.4652],[93.12838,26.46416],[93.12446,26.4635],[93.12358,26.46137],[93.12538,26.45986],[93.11761,26.45835],[93.11088,26.45155],[93.1039,26.44887],[93.10556,26.44701],[93.11111,26.44745],[93.10868,26.44442],[93.11113,26.44247],[93.11044,26.44155],[93.11813,26.4416],[93.11013,26.43965],[93.10854,26.43601],[93.10617,26.43768],[93.09917,26.43303],[93.10028,26.43704],[93.09507,26.43463],[93.09537,26.43604],[93.09991,26.43991],[93.10247,26.43892],[93.10556,26.44085],[93.09928,26.44581],[93.09383,26.44334],[93.09167,26.4406],[93.07383,26.43261],[93.07016,26.43153],[93.07062,26.43508],[93.06887,26.43534],[93.06789,26.43352],[93.06566,26.43332],[93.06735,26.43098],[93.07909,26.4284],[93.07948,26.43086],[93.08347,26.43143],[93.0841,26.43367],[93.08552,26.43192],[93.08926,26.43415],[93.09157,26.43326],[93.08321,26.42921],[93.08084,26.42482],[93.07795,26.42498],[93.07623,26.42107],[93.07749,26.41918],[93.07084,26.41995],[93.06913,26.41875],[93.06708,26.42317],[93.06627,26.42021],[93.06117,26.4159],[93.05663,26.41663],[93.05537,26.41958],[93.05096,26.41568],[93.0496,26.41612],[93.04875,26.41961],[93.0512,26.4193],[93.05044,26.42067],[93.05253,26.42282],[93.05474,26.42129],[93.05725,26.42181],[93.05572,26.42519],[93.05259,26.42559],[93.05337,26.42754],[93.056,26.42827],[93.05061,26.43125],[93.04825,26.4345],[93.04454,26.43461],[93.04363,26.43726],[93.03926,26.43458],[93.03772,26.43096],[93.02946,26.4272],[93.0244,26.4222],[93.01929,26.42051],[93.00408,26.42468],[92.99469,26.42306],[92.98259,26.41734],[92.97852,26.42057],[92.96954,26.4124],[92.96187,26.41313],[92.96511,26.40955],[92.96556,26.40663],[92.96315,26.40777],[92.95991,26.40671],[92.95835,26.40839],[92.95525,26.40561],[92.95184,26.40505],[92.94972,26.39765],[92.94247,26.39994],[92.93814,26.40386],[92.92609,26.39647],[92.92029,26.39666],[92.92061,26.39171],[92.91869,26.39303],[92.91265,26.39278],[92.91094,26.39469],[92.91069,26.39924],[92.90857,26.39576],[92.90581,26.39618],[92.90685,26.39988],[92.90507,26.40007],[92.90486,26.40191],[92.90186,26.40143],[92.90033,26.3958],[92.89374,26.38696],[92.89172,26.38676],[92.89209,26.38983],[92.88906,26.38862],[92.88959,26.38507],[92.88366,26.38387],[92.88202,26.38004],[92.88533,26.37947],[92.89631,26.38691],[92.89885,26.38706],[92.90035,26.38613],[92.89871,26.38437],[92.89669,26.38467],[92.89307,26.38193],[92.89442,26.3814],[92.89032,26.37402],[92.89331,26.37388],[92.89949,26.38375],[92.90314,26.38549],[92.90813,26.3817],[92.90373,26.38054],[92.90897,26.37767],[92.91685,26.37946],[92.9166,26.37668],[92.92108,26.38238],[92.92227,26.37933],[92.92578,26.37899],[92.91707,26.37342],[92.91679,26.37097],[92.9212,26.3686],[92.9087,26.35753],[92.91091,26.35485],[92.90917,26.35301],[92.90976,26.3521],[92.92034,26.35568],[92.92773,26.35428],[92.932,26.3508],[92.93444,26.35277],[92.93596,26.35172],[92.93955,26.35314],[92.94097,26.35186],[92.94073,26.34406],[92.94507,26.34057],[92.94609,26.33495],[92.9431,26.32721],[92.93016,26.31841],[92.9285,26.31914],[92.92803,26.31698],[92.92138,26.31318],[92.91749,26.31337],[92.91796,26.31707],[92.91357,26.31754],[92.89859,26.309],[92.89433,26.30484],[92.89226,26.28845],[92.88867,26.28681],[92.88359,26.28739],[92.87972,26.28373],[92.8663,26.29388],[92.86198,26.29288],[92.86062,26.29518],[92.85755,26.2957],[92.8543,26.29371],[92.85305,26.29792],[92.84877,26.29998],[92.85565,26.30253],[92.85264,26.30486],[92.8508,26.30447],[92.85099,26.30272],[92.84727,26.30594],[92.84399,26.30511],[92.84114,26.29321],[92.84471,26.29079],[92.84336,26.28827],[92.84007,26.28879],[92.84157,26.28383],[92.83688,26.28289],[92.83316,26.27992],[92.83006,26.27384],[92.81881,26.27003],[92.81847,26.26787],[92.82156,26.2663],[92.8184,26.26551],[92.81943,26.2637],[92.81388,26.26256],[92.81739,26.26075],[92.81619,26.25714],[92.81723,26.25492],[92.81548,26.25469],[92.81279,26.24517],[92.81338,26.23972],[92.81624,26.23865],[92.81504,26.23304],[92.82475,26.22986],[92.82705,26.22511],[92.81514,26.21405],[92.7936,26.21951],[92.79547,26.20744],[92.794,26.20505],[92.80126,26.20184],[92.80326,26.20342],[92.81897,26.20582],[92.82723,26.20407],[92.84375,26.2049],[92.84881,26.20134],[92.85898,26.20163],[92.87335,26.20623],[92.88082,26.20625],[92.88178,26.20798],[92.89001,26.20438],[92.90744,26.20207],[92.92623,26.20267],[92.92932,26.20048],[92.93941,26.20257],[92.94388,26.19999],[92.94286,26.19783],[92.94775,26.1911],[92.95266,26.19024],[92.95603,26.17434],[92.95389,26.17184],[92.95251,26.16575],[92.95041,26.16549],[92.94954,26.16279],[92.94697,26.16285],[92.9486,26.16092],[92.94616,26.15718],[92.94371,26.15518],[92.94286,26.1563],[92.94243,26.15382],[92.93605,26.15036],[92.93124,26.15129],[92.93093,26.14931],[92.93537,26.1487],[92.93141,26.14797],[92.93241,26.14521],[92.92898,26.14512],[92.93142,26.14318],[92.9329,26.13997],[92.93121,26.1393],[92.9339,26.13869],[92.93404,26.13663],[92.93874,26.13887],[92.93929,26.13744],[92.94281,26.13714],[92.94601,26.13767],[92.94647,26.13962],[92.95251,26.13868],[92.95461,26.14076],[92.95938,26.13764],[92.96082,26.13336],[92.96315,26.13408],[92.96355,26.13129],[92.96648,26.12913],[92.97192,26.12834],[92.97364,26.13076],[92.97761,26.12928],[92.9786,26.12723],[92.99788,26.12234],[93.00235,26.11753],[93.00584,26.11731],[93.00709,26.11489],[93.01264,26.11263],[93.015,26.11456],[93.01609,26.11268],[93.0218,26.11306],[93.02165,26.11042],[93.0255,26.1073],[93.03056,26.10764],[93.0331,26.10582],[93.03589,26.10859],[93.03684,26.10568],[93.03506,26.10206],[93.03735,26.10067],[93.03674,26.09839],[93.03846,26.09646],[93.03722,26.09139],[93.03995,26.08747],[93.0453,26.08617],[93.04715,26.08814],[93.04969,26.08724],[93.05082,26.08456],[93.05588,26.08826],[93.05636,26.0852],[93.0593,26.08525],[93.05949,26.07971],[93.06157,26.08256],[93.06535,26.08256],[93.06859,26.07803],[93.06803,26.08258],[93.07215,26.08083],[93.07245,26.08537],[93.07319,26.08334],[93.07529,26.08489],[93.07684,26.08205],[93.07593,26.08045],[93.08157,26.07838],[93.081,26.08109],[93.08502,26.08305],[93.08482,26.07572],[93.0905,26.07819],[93.09074,26.07612],[93.08838,26.07443],[93.0926,26.07485],[93.09441,26.07709],[93.09754,26.07549],[93.10007,26.07696],[93.10408,26.07345],[93.10573,26.07733],[93.10842,26.07823],[93.0934,26.03313],[93.10003,26.03518],[93.10637,26.03491],[93.11002,26.03698],[93.11304,26.0346],[93.1272,26.03111],[93.12533,26.02614],[93.12749,26.02472],[93.12655,26.0219],[93.1327,26.02149],[93.13776,26.01856],[93.14048,26.0147],[93.14094,26.00979],[93.14821,26.00223],[93.14981,25.99711],[93.15327,25.99504],[93.15825,25.99538],[93.15405,25.98555],[93.15863,25.97742],[93.15767,25.97491],[93.15933,25.97103],[93.15729,25.96788],[93.15934,25.96457],[93.1586,25.96167],[93.16138,25.95757],[93.16753,25.95646],[93.17353,25.95252],[93.17186,25.9471],[93.17298,25.94461],[93.1765,25.94306],[93.1751,25.94047],[93.17797,25.93412],[93.17671,25.93267],[93.17943,25.92873],[93.17935,25.92143],[93.18207,25.92003],[93.18343,25.91421],[93.18303,25.90336],[93.18808,25.89969],[93.19691,25.89806],[93.20689,25.88066],[93.22204,25.85994],[93.23163,25.85232],[93.23924,25.85112],[93.24087,25.84619],[93.23796,25.84369],[93.23796,25.8411],[93.24119,25.83749],[93.24134,25.83404],[93.24419,25.82961],[93.24478,25.81893],[93.23995,25.80944],[93.24069,25.80736],[93.24728,25.80908],[93.24593,25.79969],[93.24787,25.79767],[93.24515,25.7952],[93.2478,25.78818],[93.24716,25.78352],[93.24384,25.77648],[93.2361,25.76872],[93.23131,25.76543],[93.22713,25.76551],[93.22855,25.76346],[93.22747,25.76202],[93.23106,25.75881],[93.22651,25.72684],[93.18242,25.72897],[93.17051,25.71838],[93.15853,25.72373],[93.15314,25.72054],[93.14838,25.72071],[93.14265,25.71857],[93.14345,25.71745],[93.13948,25.71513],[93.14063,25.71234],[93.13685,25.71031],[93.13679,25.70661],[93.13424,25.70589],[93.13643,25.69211],[93.13362,25.69005],[93.13458,25.68801],[93.1316,25.6866],[93.13406,25.6827],[93.13296,25.68108],[93.13381,25.67774],[93.13772,25.67517],[93.13598,25.67014],[93.14134,25.66723],[93.14245,25.66099],[93.146,25.66502],[93.14877,25.66567],[93.15282,25.6624],[93.1545,25.66567],[93.15681,25.66496],[93.15723,25.66648],[93.16114,25.66246],[93.16592,25.66358],[93.1707,25.66183],[93.17241,25.65609],[93.17162,25.653],[93.17505,25.65181],[93.17559,25.64896],[93.17808,25.64748],[93.17692,25.64169],[93.17996,25.64125],[93.17821,25.6398],[93.18095,25.6385],[93.18149,25.64139],[93.18211,25.63837],[93.18454,25.63756],[93.18531,25.6347],[93.18737,25.63453],[93.18767,25.63185],[93.19211,25.63187],[93.19195,25.62958],[93.18913,25.62782],[93.19004,25.62481],[93.18861,25.62207],[93.18458,25.62254],[93.18242,25.61932],[93.17952,25.6195],[93.18086,25.61715],[93.17981,25.61419],[93.17695,25.6129],[93.17802,25.61108],[93.17577,25.60414],[93.18014,25.59862],[93.17843,25.59571],[93.18129,25.59298],[93.17661,25.59283],[93.17932,25.58733],[93.18481,25.5839],[93.18306,25.58191],[93.18563,25.58063],[93.18776,25.58164],[93.18667,25.57634],[93.18814,25.57696],[93.18897,25.57463],[93.192,25.57476],[93.18927,25.57042],[93.19075,25.57051],[93.19332,25.56686],[93.19262,25.56536],[93.1987,25.56428],[93.20022,25.5599],[93.19727,25.55925],[93.19891,25.55828],[93.19834,25.55557],[93.2039,25.55541],[93.20588,25.54966],[93.20825,25.54889],[93.20645,25.54623],[93.20885,25.54357],[93.2112,25.54316],[93.21058,25.54661],[93.21375,25.54956],[93.2154,25.54757],[93.22261,25.54888],[93.22728,25.54612],[93.23168,25.54585],[93.2378,25.54601],[93.24837,25.54916],[93.25135,25.54783],[93.25844,25.54889],[93.26351,25.54474],[93.26417,25.54242],[93.26281,25.54057],[93.27024,25.53134],[93.27601,25.53232],[93.27776,25.53591],[93.28659,25.53955],[93.28986,25.5438],[93.29249,25.54443],[93.29426,25.54427],[93.29944,25.5379],[93.29878,25.53276],[93.30148,25.53042],[93.32182,25.53313],[93.3243,25.53878],[93.33036,25.54254],[93.32722,25.54467],[93.32702,25.54649],[93.32924,25.54879],[93.33261,25.54838],[93.3367,25.55229],[93.33575,25.55398],[93.33991,25.5584],[93.34328,25.56004],[93.35216,25.55999],[93.35461,25.55552],[93.35644,25.55619],[93.35872,25.55463],[93.35847,25.55726],[93.36406,25.5612],[93.36159,25.56387],[93.36245,25.566],[93.36554,25.56518],[93.36951,25.57042],[93.37539,25.57308],[93.3743,25.57709],[93.37983,25.57658],[93.38159,25.58197],[93.37835,25.5826],[93.38206,25.58396],[93.38341,25.58792],[93.38575,25.58705],[93.38695,25.58997],[93.3856,25.59277],[93.38929,25.5911],[93.39243,25.5959],[93.39403,25.59607],[93.3947,25.59445],[93.39695,25.59703],[93.39878,25.59603],[93.39947,25.59907],[93.40287,25.60216],[93.40127,25.60577],[93.40152,25.61109],[93.40626,25.6114],[93.40783,25.61441],[93.41101,25.61359],[93.41048,25.61654],[93.41436,25.61805],[93.41373,25.62099],[93.41835,25.61764],[93.42161,25.61824],[93.42226,25.62043],[93.41997,25.6247],[93.42455,25.62547],[93.42482,25.63006],[93.42653,25.63195],[93.42804,25.6326],[93.43043,25.62947],[93.43366,25.62943],[93.43457,25.63119],[93.43726,25.63166],[93.43736,25.63481],[93.44162,25.63468],[93.44216,25.63817],[93.44437,25.63961],[93.44666,25.6346],[93.44948,25.63561],[93.44959,25.63953],[93.45509,25.63385],[93.4609,25.63231],[93.4606,25.63678],[93.45573,25.63869],[93.45731,25.64114],[93.46046,25.64062],[93.46417,25.64462],[93.47204,25.64239],[93.4688,25.64433],[93.47149,25.6454],[93.47383,25.64401],[93.47675,25.64777],[93.48174,25.6445],[93.48294,25.64546],[93.48144,25.65123],[93.48521,25.64833],[93.48777,25.65139],[93.4868,25.65312],[93.48802,25.65431],[93.49122,25.6532],[93.49655,25.65453],[93.49998,25.66072],[93.50646,25.66415],[93.50551,25.66642],[93.5066,25.66788],[93.5098,25.66847],[93.50744,25.67251],[93.51114,25.67209],[93.51409,25.67707],[93.51835,25.67943],[93.51754,25.68229],[93.51372,25.68282],[93.51265,25.68459],[93.52048,25.69161],[93.52249,25.69757],[93.52396,25.69592],[93.5236,25.6926],[93.52747,25.69119],[93.53123,25.69257],[93.53207,25.69698],[93.53629,25.7018],[93.54117,25.69884],[93.54192,25.70459],[93.54802,25.71172],[93.54319,25.71464],[93.54305,25.72096],[93.53955,25.72256],[93.54306,25.72585],[93.54245,25.73094],[93.54588,25.73147],[93.54943,25.72932],[93.54958,25.73274],[93.55526,25.73363],[93.5543,25.73783],[93.56151,25.73777],[93.56351,25.74472],[93.56697,25.74725],[93.56633,25.75475],[93.56833,25.75499],[93.57029,25.75276],[93.57322,25.75412],[93.57243,25.75644],[93.56827,25.75681],[93.56794,25.75843],[93.57683,25.75687],[93.57775,25.75449],[93.58548,25.75797],[93.58234,25.76055],[93.58592,25.76615],[93.58951,25.76606],[93.59167,25.76253],[93.59851,25.7688],[93.60056,25.76516],[93.60265,25.76508],[93.60504,25.7749],[93.61029,25.77375],[93.61272,25.77656],[93.61742,25.77599],[93.6201,25.78023],[93.6185,25.7837],[93.62252,25.78497],[93.6232,25.78733],[93.62675,25.78961],[93.6234,25.7973],[93.62669,25.79715],[93.62776,25.79888],[93.6247,25.80256],[93.62951,25.80156],[93.63289,25.80276],[93.6317,25.80664],[93.63495,25.80927],[93.6331,25.81138],[93.6386,25.80979],[93.63816,25.81563],[93.64347,25.81577],[93.64431,25.8187],[93.64651,25.81973],[93.64614,25.82238],[93.6516,25.81986],[93.65481,25.82364],[93.66054,25.82161],[93.66496,25.82318],[93.66829,25.82183],[93.66764,25.82596],[93.67116,25.82405],[93.67262,25.82764],[93.67863,25.82841],[93.68068,25.83343],[93.67945,25.83503],[93.68056,25.83835],[93.69022,25.84069],[93.68565,25.84367],[93.6883,25.84595],[93.69143,25.84385],[93.69469,25.84799],[93.69923,25.84657],[93.70113,25.84957],[93.69965,25.84551],[93.70088,25.84327],[93.70781,25.84781],[93.71183,25.84414],[93.71432,25.84451],[93.70208,25.85154],[93.68153,25.90439],[93.68476,25.9037],[93.69398,25.91172],[93.70088,25.91066],[93.70545,25.91492],[93.70663,25.91883],[93.71362,25.91681],[93.71869,25.91985],[93.72821,25.92058],[93.73397,25.92389],[93.73615,25.92276],[93.73703,25.92515],[93.73864,25.92532],[93.73655,25.92767],[93.73953,25.92982],[93.73953,25.93179],[93.74764,25.93492],[93.75131,25.93281],[93.75235,25.93542],[93.7462,25.9387],[93.74538,25.94278],[93.74714,25.94318],[93.74991,25.94076],[93.75233,25.94185],[93.75293,25.94667],[93.75846,25.94551],[93.75783,25.95187],[93.75952,25.95264],[93.76211,25.95126],[93.7632,25.95431],[93.76491,25.95414],[93.76419,25.95085],[93.76755,25.95051],[93.76823,25.95359],[93.76355,25.95937],[93.76968,25.95886],[93.76965,25.96397],[93.76814,25.96742],[93.76455,25.96888],[93.76727,25.96995],[93.77142,25.96799],[93.77358,25.97048],[93.77657,25.96878],[93.77913,25.97294],[93.77841,25.97789],[93.78069,25.98152],[93.78548,25.98232],[93.78681,25.97745],[93.78934,25.97633],[93.79102,25.97701],[93.79028,25.98056],[93.79178,25.98167],[93.79323,25.98161],[93.79374,25.97958],[93.79794,25.97879],[93.79991,25.98148],[93.80238,25.97946],[93.80418,25.98002],[93.80326,25.9863],[93.79908,25.98419],[93.79562,25.98759],[93.79626,25.99061],[93.7946,25.99327],[93.79746,25.99502],[93.80072,25.99461],[93.79753,25.99694],[93.80081,26.00224],[93.79813,26.00316],[93.79368,25.99822],[93.78815,26.00677],[93.78803,26.00953],[93.78656,26.00997],[93.78538,26.00662],[93.78193,26.00662],[93.78116,26.00798],[93.78616,26.01461],[93.78983,26.01265],[93.79325,26.01528],[93.79133,26.01837],[93.78616,26.02],[93.786,26.02386],[93.79235,26.02656],[93.79365,26.03093],[93.79647,26.0281],[93.79964,26.03137],[93.79168,26.034],[93.78712,26.03122],[93.78008,26.0397],[93.79501,26.04171],[93.79527,26.044],[93.79105,26.04828],[93.79076,26.05251],[93.78707,26.05443],[93.79048,26.0566],[93.79214,26.05266],[93.79732,26.0525],[93.79801,26.05427],[93.79456,26.05871],[93.79464,26.06133],[93.79957,26.06316],[93.80111,26.06609],[93.80531,26.06465],[93.80362,26.07021],[93.79766,26.06981],[93.79662,26.07127],[93.79799,26.07489],[93.80041,26.07609],[93.80586,26.07142],[93.8055,26.08213],[93.80325,26.08549],[93.80567,26.08749],[93.81001,26.08661],[93.80723,26.09003],[93.80362,26.08893],[93.80489,26.09366],[93.81416,26.09087],[93.80646,26.10258],[93.812,26.10866],[93.81206,26.11233],[93.82009,26.11007],[93.82193,26.11428],[93.81759,26.11912],[93.81723,26.12272],[93.81911,26.12478],[93.82801,26.12783],[93.82565,26.13073],[93.81934,26.13259],[93.81833,26.13706],[93.82237,26.13896],[93.82943,26.13542],[93.83115,26.13691],[93.83065,26.13918],[93.8254,26.14422],[93.82693,26.14794],[93.83049,26.14997],[93.83063,26.15818],[93.82644,26.16202],[93.8264,26.16644],[93.82156,26.1726],[93.82783,26.17393],[93.82632,26.17942],[93.82727,26.18062],[93.8304,26.18003],[93.83249,26.17509],[93.83512,26.17602],[93.83328,26.18081],[93.8275,26.18635],[93.82924,26.18873],[93.83385,26.18986],[93.82906,26.19642],[93.83213,26.19866],[93.83795,26.19459],[93.83833,26.19992],[93.84116,26.20495],[93.83819,26.20477],[93.83412,26.20046],[93.83382,26.2072],[93.83661,26.20988],[93.84106,26.20989],[93.84409,26.21229],[93.8446,26.21439],[93.84045,26.21787],[93.84417,26.2187],[93.84861,26.21556],[93.8515,26.21574],[93.85713,26.2218],[93.85548,26.22642],[93.85624,26.22884],[93.86459,26.23541],[93.85997,26.23671],[93.859,26.2393],[93.8607,26.24175],[93.85529,26.24555],[93.85149,26.24381],[93.85134,26.23919],[93.84771,26.24141],[93.8549,26.24717],[93.86155,26.2448],[93.86477,26.24593],[93.86511,26.24844],[93.86045,26.25252],[93.86716,26.25115],[93.86446,26.25507],[93.86532,26.25816],[93.87096,26.25939],[93.87482,26.26401],[93.87236,26.26604],[93.86843,26.26633],[93.86904,26.26919],[93.87362,26.27239],[93.87081,26.27564],[93.87563,26.27557],[93.87991,26.27291],[93.88108,26.27372],[93.88049,26.27633],[93.87451,26.27894],[93.87263,26.28164],[93.87281,26.28472],[93.87682,26.28684],[93.87654,26.28801],[93.86853,26.29453],[93.87233,26.29649],[93.86969,26.29931],[93.87133,26.30083],[93.87737,26.29973],[93.88092,26.30247],[93.88506,26.30263],[93.8842,26.30821],[93.87707,26.30742],[93.8738,26.30985],[93.87598,26.31236],[93.87966,26.31321],[93.88502,26.31067],[93.88734,26.31432],[93.88363,26.31933],[93.88796,26.32029],[93.89126,26.31514],[93.8938,26.31557],[93.89274,26.3201],[93.88741,26.32178],[93.88647,26.32379],[93.88855,26.32612],[93.89385,26.32635],[93.89475,26.32911],[93.89168,26.3309],[93.88653,26.32829],[93.88736,26.34033],[93.88303,26.34072],[93.88138,26.34568],[93.88341,26.3469],[93.88909,26.34631],[93.88907,26.34973],[93.88288,26.35286],[93.88354,26.35562],[93.88859,26.35681],[93.88689,26.3601],[93.88313,26.35921],[93.88308,26.36205],[93.8892,26.36528],[93.89032,26.36939],[93.89415,26.37193],[93.89291,26.37326],[93.88841,26.37122],[93.88111,26.37261],[93.8886,26.38122],[93.88307,26.38133],[93.88477,26.38608],[93.88058,26.38791],[93.88386,26.39209],[93.87875,26.39411],[93.86867,26.38857],[93.86558,26.38898],[93.85875,26.39859],[93.84982,26.40314],[93.84671,26.40712],[93.83625,26.4105],[93.83417,26.41384],[93.82671,26.41785],[93.82616,26.41368],[93.82258,26.41032],[93.82246,26.40564],[93.81656,26.39874],[93.81113,26.39778],[93.80944,26.39482],[93.80612,26.3961],[93.80394,26.39083],[93.80079,26.39145],[93.79904,26.38802],[93.79622,26.38667],[93.79396,26.37596],[93.78831,26.3766],[93.78675,26.37947],[93.7748,26.38404],[93.77333,26.3869],[93.77683,26.38559],[93.78063,26.38687],[93.78106,26.38968],[93.78649,26.3963],[93.78932,26.39629],[93.79068,26.39803],[93.78999,26.39985],[93.79249,26.40393],[93.79476,26.40381],[93.79908,26.40887],[93.7881,26.40826],[93.78309,26.40971],[93.7806,26.415],[93.7799,26.41747],[93.78128,26.41866],[93.77974,26.4204],[93.78144,26.42205],[93.78124,26.425],[93.78885,26.42577],[93.79388,26.4286],[93.79203,26.43194],[93.78987,26.43149],[93.78944,26.4339],[93.7836,26.43356],[93.78306,26.43876],[93.79439,26.44025],[93.78509,26.45254],[93.78676,26.45607],[93.78553,26.46469],[93.78351,26.46349],[93.7778,26.46606],[93.77067,26.47396],[93.77124,26.47673],[93.77549,26.47343],[93.77892,26.47585],[93.77813,26.48188],[93.77526,26.48269],[93.77512,26.48604],[93.77206,26.48867],[93.76941,26.49455],[93.76966,26.49775],[93.76325,26.50165],[93.76354,26.50562],[93.76217,26.50716],[93.7552,26.50928],[93.75742,26.51575],[93.75126,26.51835],[93.75207,26.52104],[93.75689,26.52088],[93.75826,26.52249],[93.75511,26.52555],[93.75596,26.52909],[93.74346,26.52757],[93.74184,26.52892],[93.74302,26.5318],[93.73982,26.53437],[93.74198,26.53769],[93.73677,26.53341],[93.73152,26.53793],[93.73283,26.53994],[93.73754,26.53858],[93.73895,26.5399],[93.73964,26.54694],[93.73315,26.54979],[93.73656,26.55139],[93.73551,26.55565],[93.73694,26.55993],[93.73941,26.55728],[93.74124,26.55782],[93.73992,26.56704],[93.74749,26.57591],[93.75174,26.5772],[93.75227,26.58503],[93.75048,26.58585],[93.74918,26.58414],[93.74673,26.58518],[93.74567,26.58378],[93.74008,26.58363],[93.73658,26.587],[93.73755,26.58808],[93.7351,26.59112],[93.73519,26.59385],[93.72762,26.59616],[93.71714,26.60361],[93.715,26.60318],[93.71422,26.60491],[93.70179,26.60727]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"293","area_level":"District","area_name":"Sribhumi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.30494,24.91157],[92.30098,24.91518],[92.29669,24.91599],[92.28498,24.91095],[92.28337,24.90635],[92.27404,24.90493],[92.24837,24.90887],[92.24142,24.90447],[92.23561,24.90287],[92.23287,24.90015],[92.23611,24.89914],[92.23666,24.89195],[92.23948,24.89189],[92.23944,24.89001],[92.24723,24.88752],[92.2481,24.88549],[92.24683,24.87199],[92.24486,24.87125],[92.24627,24.86749],[92.23821,24.86816],[92.23493,24.86139],[92.23589,24.859],[92.23981,24.8577],[92.24146,24.84202],[92.24251,24.84045],[92.25497,24.83845],[92.25024,24.83586],[92.25172,24.83421],[92.24837,24.8323],[92.24908,24.82975],[92.25225,24.8305],[92.253,24.83215],[92.26929,24.82983],[92.27308,24.82744],[92.27278,24.82132],[92.27629,24.81544],[92.27385,24.81412],[92.2762,24.81032],[92.27423,24.8065],[92.27531,24.80371],[92.27312,24.80019],[92.27889,24.79742],[92.28108,24.79061],[92.28854,24.78818],[92.28742,24.78741],[92.28892,24.78449],[92.28792,24.77919],[92.28471,24.77461],[92.2818,24.77532],[92.28507,24.76848],[92.28574,24.76294],[92.29013,24.75971],[92.2798,24.74817],[92.28035,24.74579],[92.27916,24.7453],[92.28192,24.74338],[92.28127,24.74225],[92.29603,24.73646],[92.29388,24.73461],[92.2942,24.7317],[92.28536,24.71984],[92.27621,24.71074],[92.27499,24.70808],[92.27612,24.70744],[92.26786,24.69435],[92.265,24.6905],[92.26161,24.69012],[92.25892,24.68619],[92.2578,24.68286],[92.25988,24.68145],[92.25442,24.67803],[92.25453,24.67496],[92.25712,24.67318],[92.25166,24.65996],[92.24847,24.65835],[92.24708,24.65474],[92.24984,24.64796],[92.24829,24.63772],[92.24354,24.6254],[92.24399,24.61652],[92.24235,24.61537],[92.24239,24.61153],[92.23925,24.60777],[92.23539,24.59755],[92.2363,24.59456],[92.23302,24.57847],[92.23459,24.57776],[92.23461,24.57515],[92.23221,24.57139],[92.23114,24.53121],[92.2238,24.51745],[92.22011,24.51631],[92.21294,24.50401],[92.23044,24.50171],[92.2312,24.49521],[92.23658,24.48871],[92.2349,24.48692],[92.23665,24.48459],[92.23348,24.48419],[92.23133,24.48004],[92.23475,24.47457],[92.23147,24.47352],[92.2306,24.47143],[92.23018,24.46151],[92.23637,24.45819],[92.23487,24.45261],[92.23889,24.4475],[92.24437,24.44437],[92.24649,24.4452],[92.25313,24.44232],[92.25347,24.44031],[92.2594,24.43921],[92.25936,24.43403],[92.25689,24.43202],[92.25654,24.42484],[92.25448,24.42053],[92.26328,24.41119],[92.26349,24.40947],[92.26172,24.40869],[92.26414,24.39895],[92.26933,24.39847],[92.27081,24.39628],[92.26911,24.39254],[92.27202,24.39236],[92.27409,24.38832],[92.26864,24.38406],[92.27289,24.37897],[92.26806,24.37811],[92.26814,24.36788],[92.26573,24.36602],[92.21287,24.24993],[92.43228,24.25539],[92.44014,24.27127],[92.44958,24.28038],[92.45138,24.2881],[92.45604,24.2904],[92.46382,24.30065],[92.46949,24.31154],[92.46933,24.3141],[92.47642,24.32607],[92.48213,24.34346],[92.48395,24.35534],[92.49151,24.36903],[92.49056,24.37161],[92.49555,24.38568],[92.49356,24.39277],[92.49638,24.39581],[92.49798,24.4028],[92.50063,24.4063],[92.50285,24.43077],[92.50537,24.43252],[92.50631,24.43555],[92.50584,24.45113],[92.50888,24.45492],[92.50538,24.45689],[92.50797,24.46009],[92.50641,24.46273],[92.50675,24.47239],[92.51023,24.4834],[92.50632,24.48917],[92.50663,24.49461],[92.50864,24.49846],[92.50701,24.51606],[92.50733,24.51955],[92.50999,24.52285],[92.50559,24.53481],[92.51039,24.53876],[92.50914,24.54152],[92.51326,24.54804],[92.51398,24.55576],[92.51677,24.55781],[92.51426,24.56566],[92.51728,24.57403],[92.51692,24.5764],[92.51253,24.58101],[92.50868,24.58301],[92.51029,24.58436],[92.509,24.58734],[92.50557,24.58799],[92.50464,24.58962],[92.50309,24.60491],[92.50731,24.60255],[92.50957,24.6036],[92.5068,24.61182],[92.50799,24.61844],[92.50648,24.62621],[92.50782,24.62849],[92.50419,24.62784],[92.50162,24.63038],[92.50401,24.63089],[92.50399,24.6349],[92.50673,24.63586],[92.50459,24.6388],[92.50408,24.64662],[92.50433,24.64882],[92.50719,24.65023],[92.50365,24.65324],[92.50389,24.65869],[92.50643,24.66402],[92.49894,24.66847],[92.49702,24.67294],[92.49481,24.672],[92.49379,24.67309],[92.4953,24.67659],[92.49373,24.67725],[92.49392,24.68024],[92.49582,24.6828],[92.49372,24.68332],[92.49797,24.68673],[92.49592,24.68903],[92.50008,24.69191],[92.50324,24.69754],[92.50516,24.70625],[92.51131,24.71301],[92.51159,24.71594],[92.51846,24.72156],[92.51782,24.72487],[92.5223,24.72955],[92.52158,24.73484],[92.52285,24.73711],[92.52139,24.73947],[92.52293,24.74151],[92.52155,24.74399],[92.52494,24.74833],[92.52502,24.75179],[92.53455,24.75487],[92.54519,24.76564],[92.5453,24.76911],[92.54236,24.77151],[92.54306,24.77333],[92.54019,24.77689],[92.54441,24.7811],[92.54057,24.788],[92.54285,24.79294],[92.54209,24.79823],[92.54592,24.80071],[92.54471,24.80763],[92.54811,24.81131],[92.54969,24.81042],[92.55138,24.81189],[92.55866,24.82315],[92.56033,24.82083],[92.56643,24.82417],[92.56726,24.82508],[92.5649,24.82656],[92.56758,24.83061],[92.58261,24.84407],[92.58279,24.85115],[92.58629,24.86127],[92.58513,24.86577],[92.58241,24.86741],[92.58249,24.87202],[92.57981,24.87368],[92.56726,24.87376],[92.55631,24.87742],[92.54606,24.86858],[92.52541,24.86117],[92.52167,24.86475],[92.5151,24.87956],[92.49327,24.87468],[92.48787,24.87283],[92.48792,24.87131],[92.47999,24.87269],[92.47704,24.87049],[92.47614,24.86734],[92.461,24.87314],[92.4448,24.87198],[92.44114,24.86848],[92.44106,24.86051],[92.4374,24.85561],[92.4254,24.85285],[92.41466,24.8583],[92.40637,24.85894],[92.40299,24.85575],[92.40278,24.8497],[92.4001,24.84865],[92.38494,24.85227],[92.38405,24.85834],[92.37748,24.8631],[92.37701,24.87056],[92.37474,24.87395],[92.37168,24.87491],[92.3634,24.87191],[92.36132,24.87819],[92.35436,24.87947],[92.348,24.89162],[92.34584,24.89124],[92.34428,24.88852],[92.34404,24.88019],[92.33922,24.87826],[92.32868,24.88881],[92.32675,24.89641],[92.32289,24.89718],[92.3161,24.89519],[92.30695,24.90203],[92.30727,24.9067],[92.30494,24.91157]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"294","area_level":"District","area_name":"Kokrajhar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.33615,26.85074],[90.3363,26.86873],[90.3003,26.84822],[90.28329,26.85283],[90.24878,26.85904],[90.2305,26.85891],[90.20077,26.83529],[90.18767,26.80681],[90.19452,26.77327],[90.13988,26.75362],[90.07464,26.73601],[90.04957,26.73037],[90.00824,26.73215],[89.96706,26.72347],[89.89733,26.72434],[89.86292,26.73707],[89.85895,26.73492],[89.86449,26.73002],[89.86207,26.71645],[89.86552,26.70551],[89.86334,26.70081],[89.87477,26.68227],[89.87235,26.67248],[89.87419,26.66672],[89.87078,26.66065],[89.87046,26.65533],[89.87693,26.64851],[89.86713,26.63494],[89.85916,26.62956],[89.85825,26.62338],[89.86415,26.61573],[89.87842,26.61553],[89.87953,26.6093],[89.87377,26.59134],[89.8826,26.58339],[89.87292,26.5783],[89.87116,26.57907],[89.86599,26.57677],[89.86449,26.57324],[89.86736,26.56948],[89.86899,26.55387],[89.86318,26.54164],[89.86586,26.53228],[89.85662,26.52073],[89.85604,26.51478],[89.85878,26.51261],[89.85676,26.5066],[89.85683,26.50076],[89.85884,26.49991],[89.85397,26.49183],[89.85414,26.48817],[89.85633,26.4854],[89.86237,26.48355],[89.86159,26.48188],[89.86482,26.46912],[89.86863,26.46861],[89.87244,26.4645],[89.87043,26.4567],[89.87215,26.45207],[89.8642,26.44676],[89.86266,26.44292],[89.85856,26.43957],[89.8587,26.43556],[89.85568,26.4326],[89.85772,26.42993],[89.85587,26.42492],[89.84916,26.42279],[89.84976,26.42046],[89.85671,26.41494],[89.85748,26.41198],[89.83525,26.41202],[89.83297,26.40838],[89.83248,26.40021],[89.82998,26.39556],[89.83219,26.39182],[89.8376,26.39098],[89.84452,26.39527],[89.8472,26.3989],[89.84781,26.40415],[89.85101,26.40275],[89.85734,26.39613],[89.85542,26.39087],[89.85898,26.3844],[89.8545,26.38216],[89.85148,26.38525],[89.84581,26.38453],[89.84437,26.37866],[89.84237,26.37798],[89.84489,26.37268],[89.85104,26.36781],[89.86059,26.36905],[89.86643,26.36232],[89.87181,26.36448],[89.87562,26.36278],[89.87633,26.35543],[89.86918,26.34956],[89.9026,26.33875],[89.90486,26.33641],[89.90562,26.32623],[89.89723,26.32352],[89.89217,26.31754],[89.89274,26.31401],[89.89004,26.31252],[89.89018,26.31424],[89.88707,26.31424],[89.88587,26.31076],[89.87953,26.30702],[89.88317,26.3056],[89.88451,26.29856],[89.8763,26.28458],[89.8763,26.28181],[89.86983,26.27522],[89.86868,26.26606],[89.87065,26.26023],[89.86602,26.25795],[89.86901,26.25239],[89.87416,26.24732],[89.86813,26.24306],[89.8671,26.23947],[89.86029,26.23981],[89.85866,26.23827],[89.86518,26.23762],[89.86967,26.23409],[89.86889,26.22869],[89.86184,26.2243],[89.85992,26.21992],[89.86286,26.21383],[89.87087,26.20724],[89.87299,26.20209],[89.87088,26.19729],[89.86151,26.19328],[89.86,26.18804],[89.8621,26.18552],[89.86592,26.18472],[89.86865,26.18576],[89.87165,26.1913],[89.87528,26.18905],[89.87401,26.18464],[89.86975,26.1795],[89.87197,26.1738],[89.87192,26.16851],[89.8685,26.14977],[89.87225,26.14516],[89.87878,26.14295],[89.8827,26.13814],[89.88258,26.13562],[89.90853,26.13246],[89.91477,26.12217],[89.91611,26.11632],[89.91164,26.1133],[89.903,26.11857],[89.90097,26.11811],[89.90174,26.11612],[89.90888,26.11242],[89.91329,26.11222],[89.93559,26.11686],[89.94072,26.12695],[89.9382,26.13285],[89.94804,26.12849],[89.95792,26.12896],[89.96688,26.12697],[89.97784,26.12972],[89.97988,26.13499],[89.98203,26.13655],[89.98197,26.13341],[89.99731,26.13232],[90.00017,26.13021],[89.99991,26.12612],[90.02499,26.12676],[90.03334,26.14425],[90.04128,26.15064],[90.05253,26.15554],[90.05862,26.16709],[90.06377,26.17262],[90.06821,26.17508],[90.06966,26.16935],[90.07399,26.175],[90.08486,26.18223],[90.08722,26.18619],[90.09118,26.18659],[90.09792,26.19093],[90.10131,26.18496],[90.11284,26.19152],[90.11246,26.19656],[90.12048,26.19925],[90.1256,26.19573],[90.13644,26.20092],[90.13981,26.20112],[90.15206,26.20897],[90.15202,26.21653],[90.1488,26.2165],[90.14734,26.22001],[90.14159,26.21512],[90.13628,26.21549],[90.13485,26.22008],[90.13561,26.22952],[90.13083,26.23418],[90.12176,26.23633],[90.12029,26.25043],[90.10396,26.25113],[90.10144,26.25811],[90.09738,26.26224],[90.09844,26.26708],[90.10336,26.26779],[90.11096,26.26541],[90.11418,26.25988],[90.11747,26.25854],[90.11967,26.25977],[90.12046,26.26609],[90.12652,26.26512],[90.1304,26.27063],[90.13783,26.27321],[90.14048,26.27617],[90.14317,26.28764],[90.14084,26.29322],[90.13773,26.29531],[90.13394,26.29546],[90.13067,26.29331],[90.12884,26.28961],[90.12963,26.28392],[90.12602,26.28316],[90.12337,26.28547],[90.11902,26.29446],[90.12503,26.29873],[90.12429,26.30379],[90.11982,26.30812],[90.10767,26.31248],[90.11809,26.31681],[90.11605,26.32359],[90.11727,26.32689],[90.11673,26.33891],[90.12782,26.34621],[90.14864,26.35261],[90.1561,26.35183],[90.15576,26.35047],[90.15696,26.35106],[90.15771,26.34937],[90.16157,26.34809],[90.16849,26.34836],[90.16883,26.3448],[90.1717,26.34193],[90.18175,26.34695],[90.18784,26.34562],[90.19125,26.35268],[90.20704,26.36312],[90.20783,26.36768],[90.20506,26.37113],[90.20659,26.37478],[90.22666,26.38506],[90.22636,26.37554],[90.23194,26.3705],[90.23422,26.36549],[90.23274,26.35872],[90.22947,26.35544],[90.21667,26.35335],[90.21474,26.35164],[90.21798,26.34847],[90.22607,26.35188],[90.22777,26.34936],[90.22505,26.34369],[90.21603,26.33485],[90.21593,26.3287],[90.21835,26.32737],[90.22217,26.33225],[90.22693,26.33424],[90.23569,26.32588],[90.2391,26.32503],[90.24267,26.32869],[90.24701,26.32749],[90.25002,26.32457],[90.25283,26.3277],[90.25565,26.33543],[90.26724,26.33055],[90.26064,26.32477],[90.26457,26.31295],[90.27125,26.30912],[90.27352,26.30614],[90.27255,26.30247],[90.28044,26.29738],[90.28101,26.29218],[90.27195,26.27205],[90.27218,26.26731],[90.25862,26.27296],[90.25216,26.27014],[90.25146,26.2644],[90.27359,26.26065],[90.27259,26.25259],[90.28796,26.2521],[90.28543,26.24273],[90.28726,26.2374],[90.30653,26.24583],[90.30341,26.25747],[90.30737,26.26265],[90.30956,26.26169],[90.31807,26.26784],[90.3207,26.27881],[90.3235,26.27866],[90.32484,26.27666],[90.32715,26.27715],[90.32606,26.27157],[90.3276,26.27019],[90.33847,26.27254],[90.344,26.27071],[90.35186,26.28713],[90.35661,26.27937],[90.36279,26.2731],[90.35859,26.2654],[90.35741,26.26543],[90.35664,26.2693],[90.35354,26.26982],[90.35657,26.26607],[90.35538,26.25821],[90.36166,26.26452],[90.36636,26.26439],[90.36827,26.26632],[90.37434,26.26632],[90.38118,26.26864],[90.38289,26.2723],[90.3813,26.27804],[90.37471,26.29086],[90.37642,26.29928],[90.37936,26.30258],[90.37924,26.30929],[90.38376,26.31161],[90.40406,26.31602],[90.40491,26.32078],[90.40418,26.3331],[90.396,26.34751],[90.39405,26.35459],[90.39514,26.35935],[90.40197,26.36387],[90.41894,26.36289],[90.42285,26.36424],[90.42495,26.36301],[90.43725,26.36485],[90.43676,26.36656],[90.42638,26.36741],[90.42663,26.36997],[90.43224,26.37339],[90.43359,26.37659],[90.43208,26.38121],[90.42905,26.3813],[90.4257,26.3787],[90.42084,26.37959],[90.41919,26.38288],[90.42006,26.38419],[90.42559,26.38263],[90.42788,26.38313],[90.42806,26.38587],[90.42572,26.39606],[90.42093,26.39469],[90.4164,26.3907],[90.4169,26.40774],[90.40783,26.40351],[90.40447,26.40463],[90.40354,26.40668],[90.40932,26.4083],[90.40533,26.4142],[90.41558,26.42906],[90.41527,26.43067],[90.40489,26.42769],[90.40358,26.42875],[90.40699,26.43776],[90.39997,26.43397],[90.39773,26.43453],[90.39722,26.44025],[90.40034,26.44227],[90.40387,26.44212],[90.39964,26.44628],[90.40316,26.46412],[90.40231,26.47182],[90.40503,26.47526],[90.38915,26.47715],[90.38965,26.4803],[90.38622,26.48523],[90.39137,26.49319],[90.39749,26.49285],[90.39977,26.49513],[90.40002,26.4988],[90.39321,26.50315],[90.39701,26.5079],[90.3978,26.5118],[90.40358,26.51176],[90.40145,26.51333],[90.39146,26.51453],[90.39134,26.52121],[90.38593,26.52347],[90.38217,26.52891],[90.38084,26.5344],[90.38768,26.53524],[90.38869,26.54198],[90.38507,26.54298],[90.38251,26.54157],[90.37841,26.54432],[90.37131,26.54437],[90.36256,26.55262],[90.36079,26.56788],[90.35495,26.56994],[90.35912,26.57677],[90.36403,26.57808],[90.36632,26.5821],[90.3631,26.58936],[90.35862,26.59414],[90.3615,26.59584],[90.36237,26.599],[90.35622,26.60266],[90.35393,26.60977],[90.35769,26.61664],[90.35508,26.6216],[90.3572,26.63134],[90.3477,26.63901],[90.34686,26.64144],[90.35074,26.65083],[90.35679,26.65733],[90.36766,26.68952],[90.374,26.69577],[90.37633,26.70192],[90.37698,26.71758],[90.37503,26.72384],[90.36888,26.73315],[90.36385,26.75886],[90.35528,26.77179],[90.35211,26.79245],[90.3494,26.80029],[90.34508,26.80574],[90.33944,26.82584],[90.33615,26.85074]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"295","area_level":"District","area_name":"Lakhimpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.27882,27.48709],[94.27888,27.49532],[94.27025,27.51288],[94.26816,27.52081],[94.22082,27.50528],[94.214,27.5008],[94.20905,27.49253],[94.20064,27.49488],[94.18928,27.4924],[94.1842,27.48665],[94.17623,27.48215],[94.16913,27.48123],[94.16454,27.47678],[94.15667,27.47486],[94.15942,27.46162],[94.15508,27.4591],[94.15538,27.45697],[94.13146,27.44092],[94.12769,27.43459],[94.11786,27.42969],[94.10494,27.41397],[94.0896,27.40705],[94.07575,27.38968],[94.06921,27.37346],[94.06085,27.3653],[94.06146,27.36373],[94.05981,27.36154],[94.05404,27.36034],[94.04055,27.3515],[94.03092,27.34839],[94.03026,27.34566],[94.02784,27.34684],[94.0258,27.34484],[94.02211,27.3462],[94.01157,27.3385],[93.99125,27.32835],[93.95527,27.29326],[93.92824,27.26422],[93.8994,27.23909],[93.86423,27.19615],[93.85987,27.19348],[93.83871,27.17234],[93.82535,27.16848],[93.80599,27.14876],[93.80539,27.13713],[93.79597,27.13765],[93.79477,27.13605],[93.79691,27.12894],[93.80319,27.13278],[93.80702,27.13066],[93.81245,27.13093],[93.81294,27.1293],[93.80943,27.12334],[93.81405,27.12128],[93.81994,27.12275],[93.82507,27.11642],[93.8266,27.11206],[93.82556,27.10359],[93.82667,27.09697],[93.8314,27.09091],[93.8315,27.08678],[93.83777,27.08537],[93.8332,27.08156],[93.8356,27.0782],[93.83567,27.0743],[93.8298,27.06797],[93.82861,27.06885],[93.82923,27.06681],[93.82741,27.06594],[93.82199,27.06777],[93.82121,27.0644],[93.81499,27.06146],[93.81035,27.06729],[93.80841,27.06593],[93.81139,27.05894],[93.80768,27.05981],[93.80336,27.05806],[93.79684,27.06527],[93.79527,27.07246],[93.79378,27.07234],[93.79304,27.06828],[93.79879,27.06239],[93.80022,27.05785],[93.79522,27.05701],[93.79441,27.06192],[93.79383,27.05452],[93.78942,27.0506],[93.78347,27.05166],[93.78268,27.06473],[93.78109,27.06537],[93.78109,27.05882],[93.77957,27.05806],[93.77828,27.04894],[93.77087,27.06204],[93.77185,27.05408],[93.76786,27.05128],[93.76799,27.05445],[93.76673,27.05291],[93.76742,27.03944],[93.74353,27.02769],[93.73298,27.02594],[93.72338,27.02081],[93.70891,27.00811],[93.69778,26.9942],[93.70087,26.99168],[93.69895,26.99109],[93.6992,26.98893],[93.70102,26.98939],[93.70883,26.98543],[93.70848,26.98351],[93.71095,26.98348],[93.71104,26.98051],[93.71413,26.9809],[93.71559,26.97919],[93.71879,26.98067],[93.71832,26.97813],[93.72159,26.97637],[93.72117,26.97422],[93.72362,26.96991],[93.72873,26.97069],[93.73655,26.96759],[93.73893,26.96246],[93.74385,26.95853],[93.74432,26.94968],[93.74192,26.94023],[93.74597,26.93649],[93.74903,26.91406],[93.7418,26.9125],[93.74232,26.91104],[93.73927,26.90939],[93.74257,26.90402],[93.73921,26.90098],[93.73952,26.89862],[93.74604,26.89526],[93.74906,26.89559],[93.75291,26.89145],[93.75812,26.89225],[93.76127,26.88999],[93.77511,26.88889],[93.77782,26.88379],[93.78071,26.88574],[93.78047,26.87353],[93.78666,26.86559],[93.78501,26.86406],[93.78764,26.8639],[93.78604,26.86206],[93.78938,26.86136],[93.78912,26.85935],[93.78767,26.85711],[93.78457,26.85802],[93.77803,26.85502],[93.77822,26.85159],[93.77436,26.85117],[93.77476,26.84793],[93.76982,26.84546],[93.77879,26.84071],[93.78036,26.83688],[93.78862,26.82949],[93.80094,26.82163],[93.82385,26.82529],[93.83513,26.85106],[93.84324,26.85094],[93.8541,26.85735],[93.8741,26.8568],[93.88206,26.85811],[93.88488,26.86247],[93.8912,26.86488],[93.89443,26.87052],[93.89681,26.87183],[93.8905,26.8851],[93.89168,26.89229],[93.91073,26.90187],[93.91655,26.90748],[93.91897,26.91171],[93.91718,26.92284],[93.92613,26.93036],[93.93396,26.93104],[93.96137,26.92716],[93.96905,26.92317],[93.97366,26.92269],[93.98469,26.92893],[93.99662,26.94238],[94.00097,26.94162],[94.00649,26.93637],[94.00912,26.93056],[94.02282,26.93201],[94.02456,26.93282],[94.02691,26.93851],[94.02464,26.94724],[94.02436,26.95654],[94.02653,26.95908],[94.03396,26.96252],[94.03851,26.96882],[94.04083,26.97573],[94.05991,26.98301],[94.06776,26.97676],[94.07141,26.96612],[94.07513,26.9613],[94.07998,26.95998],[94.08634,26.96047],[94.10271,26.96992],[94.12002,26.97076],[94.13432,26.96914],[94.13791,26.97741],[94.1339,26.98834],[94.15234,26.99457],[94.15814,27.0003],[94.16891,27.0004],[94.17157,27.00173],[94.18367,27.00023],[94.18889,27.00458],[94.19188,27.01161],[94.18692,27.02877],[94.18747,27.0354],[94.19575,27.03505],[94.20114,27.02956],[94.20414,27.02873],[94.21633,27.02918],[94.22375,27.03199],[94.2244,27.03587],[94.22186,27.03625],[94.22511,27.04479],[94.22634,27.05562],[94.23432,27.07178],[94.25469,27.08836],[94.27297,27.09532],[94.27874,27.09512],[94.29817,27.08704],[94.30639,27.0734],[94.3121,27.07122],[94.31563,27.07285],[94.31843,27.08362],[94.3227,27.088],[94.32642,27.08889],[94.33546,27.08296],[94.33939,27.08209],[94.35022,27.08602],[94.36062,27.09567],[94.36964,27.09885],[94.38462,27.09631],[94.39309,27.09875],[94.4027,27.0972],[94.41444,27.09284],[94.41862,27.09307],[94.422,27.09485],[94.42414,27.09836],[94.42659,27.11451],[94.43399,27.11911],[94.43831,27.11972],[94.4521,27.11727],[94.46018,27.11207],[94.46791,27.11383],[94.47301,27.12224],[94.47498,27.13436],[94.47942,27.13899],[94.48772,27.13422],[94.49016,27.12806],[94.49485,27.1223],[94.507,27.12166],[94.50997,27.12569],[94.50886,27.13714],[94.5106,27.14231],[94.5289,27.14395],[94.53317,27.14788],[94.53108,27.15313],[94.52423,27.15807],[94.52636,27.16251],[94.54243,27.17224],[94.55605,27.17459],[94.55852,27.1769],[94.56108,27.18383],[94.56751,27.17927],[94.57355,27.18627],[94.57996,27.20249],[94.57713,27.21511],[94.57977,27.22801],[94.58619,27.24071],[94.58765,27.24713],[94.58659,27.26744],[94.60647,27.29465],[94.60776,27.3002],[94.61374,27.30655],[94.61065,27.30896],[94.6136,27.31928],[94.60585,27.32501],[94.6065,27.32882],[94.62199,27.33309],[94.62898,27.33886],[94.62898,27.34065],[94.62359,27.34377],[94.62443,27.34678],[94.62243,27.35009],[94.62528,27.35405],[94.62084,27.35736],[94.62042,27.36274],[94.6182,27.3651],[94.61482,27.36292],[94.61197,27.355],[94.59316,27.35848],[94.59316,27.36415],[94.59073,27.36745],[94.59073,27.37132],[94.59337,27.37727],[94.59233,27.37785],[94.58671,27.37236],[94.57963,27.37221],[94.57816,27.36872],[94.57446,27.37042],[94.55967,27.35899],[94.54805,27.35549],[94.54594,27.35266],[94.54161,27.35209],[94.53676,27.34775],[94.52778,27.34613],[94.52176,27.34849],[94.51489,27.34565],[94.5151,27.34839],[94.51299,27.34933],[94.50771,27.34442],[94.5094,27.34282],[94.50761,27.34112],[94.5093,27.33989],[94.50677,27.33743],[94.50441,27.33743],[94.50522,27.33444],[94.50169,27.33601],[94.5017,27.33356],[94.49642,27.33261],[94.4992,27.3311],[94.49817,27.33005],[94.49601,27.33037],[94.49484,27.33382],[94.49331,27.33189],[94.49148,27.33296],[94.48863,27.33158],[94.48907,27.33573],[94.48579,27.33129],[94.4823,27.33272],[94.48362,27.32973],[94.47997,27.33125],[94.47403,27.32784],[94.46863,27.32981],[94.46653,27.33403],[94.4604,27.33231],[94.45566,27.32105],[94.44949,27.31995],[94.44745,27.32296],[94.44591,27.32237],[94.44505,27.31396],[94.44644,27.31128],[94.44264,27.30846],[94.43905,27.3099],[94.44216,27.31664],[94.43391,27.31924],[94.4314,27.31745],[94.42993,27.31828],[94.43163,27.32134],[94.42821,27.32433],[94.43002,27.32785],[94.4261,27.32978],[94.4291,27.33093],[94.42673,27.33102],[94.42724,27.33359],[94.42568,27.33511],[94.42672,27.33798],[94.42445,27.33836],[94.42066,27.33621],[94.41857,27.33712],[94.41766,27.33356],[94.41574,27.33303],[94.41216,27.33832],[94.40667,27.33489],[94.40717,27.33137],[94.40603,27.33092],[94.4033,27.33459],[94.40624,27.33946],[94.3981,27.34449],[94.39481,27.34401],[94.39452,27.34113],[94.39273,27.34068],[94.39072,27.34411],[94.39278,27.34808],[94.39001,27.35069],[94.38626,27.34652],[94.37989,27.34553],[94.37498,27.34105],[94.36322,27.3396],[94.35587,27.34139],[94.34696,27.33786],[94.3394,27.3369],[94.336,27.32659],[94.32728,27.31846],[94.30688,27.31917],[94.3037,27.32219],[94.29948,27.33216],[94.30199,27.34454],[94.29891,27.3505],[94.29222,27.3565],[94.28291,27.35867],[94.27178,27.36502],[94.25584,27.37899],[94.25021,27.38526],[94.24705,27.39199],[94.24758,27.39631],[94.25124,27.39901],[94.2654,27.40001],[94.26877,27.39908],[94.2743,27.39233],[94.28335,27.38507],[94.29029,27.38343],[94.29824,27.38753],[94.30532,27.39712],[94.30803,27.41272],[94.3058,27.42537],[94.30705,27.43601],[94.30489,27.4393],[94.29425,27.44747],[94.27815,27.46572],[94.27882,27.48709]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"296","area_level":"District","area_name":"Marigaon","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.41969,26.51199],[92.41899,26.51708],[92.39144,26.51285],[92.38722,26.51371],[92.38364,26.51657],[92.36076,26.50548],[92.35214,26.50548],[92.34722,26.50776],[92.34005,26.50057],[92.31001,26.48435],[92.29944,26.47358],[92.2947,26.46646],[92.28116,26.45425],[92.27498,26.45113],[92.2557,26.45184],[92.24459,26.44615],[92.23842,26.43952],[92.23413,26.42762],[92.21863,26.41572],[92.20792,26.41443],[92.19998,26.42128],[92.18187,26.4245],[92.17561,26.42324],[92.1585,26.41397],[92.14291,26.40137],[92.12154,26.36922],[92.10395,26.35453],[92.10376,26.34707],[92.09982,26.34104],[92.09411,26.33897],[92.08633,26.34054],[92.08416,26.33898],[92.07917,26.33074],[92.07472,26.31662],[92.06821,26.31188],[92.06142,26.31047],[92.05765,26.29753],[92.04708,26.2819],[92.04783,26.27875],[92.04378,26.27758],[92.04007,26.27309],[92.0322,26.27035],[92.02428,26.27111],[92.01958,26.27433],[92.01561,26.27893],[92.01539,26.28315],[92.01042,26.27795],[92.00658,26.27746],[91.99205,26.26973],[91.98649,26.27045],[91.98504,26.27394],[91.98021,26.27547],[91.97861,26.27425],[91.97915,26.26752],[91.97604,26.25774],[91.97663,26.25059],[91.972,26.24832],[91.98002,26.23926],[91.98304,26.23833],[92.00314,26.23748],[92.01036,26.24288],[92.01245,26.23899],[92.00853,26.2315],[92.01361,26.22802],[92.02012,26.23022],[92.02151,26.2332],[92.02801,26.23253],[92.03071,26.23185],[92.03722,26.22573],[92.04556,26.22566],[92.05139,26.22113],[92.05549,26.22058],[92.05588,26.21698],[92.05123,26.20991],[92.05161,26.20765],[92.06014,26.19645],[92.06305,26.19512],[92.07,26.19712],[92.07635,26.19568],[92.07872,26.19292],[92.07905,26.18719],[92.08176,26.18517],[92.08515,26.18595],[92.08978,26.18981],[92.09366,26.18867],[92.09334,26.1854],[92.07996,26.17734],[92.08982,26.17644],[92.10661,26.17211],[92.12969,26.18059],[92.13228,26.17215],[92.1497,26.16153],[92.15142,26.16214],[92.15256,26.16917],[92.15468,26.17088],[92.15717,26.17001],[92.16219,26.16323],[92.16431,26.16253],[92.16698,26.16399],[92.16608,26.15416],[92.16206,26.145],[92.16346,26.1218],[92.16874,26.1118],[92.17111,26.10131],[92.16811,26.09405],[92.16886,26.08989],[92.17207,26.08363],[92.17532,26.08134],[92.17614,26.07795],[92.17922,26.07757],[92.17611,26.074],[92.17595,26.07048],[92.17754,26.06877],[92.18049,26.07118],[92.18181,26.06906],[92.18752,26.06923],[92.18613,26.06765],[92.18736,26.06657],[92.19101,26.06884],[92.19265,26.06733],[92.20042,26.06962],[92.20651,26.06814],[92.20627,26.06963],[92.20817,26.07047],[92.21548,26.06841],[92.22054,26.0703],[92.22223,26.06809],[92.22859,26.0668],[92.22944,26.06462],[92.23733,26.06348],[92.23856,26.06198],[92.24104,26.06289],[92.2418,26.06181],[92.24484,26.06375],[92.24787,26.06292],[92.25052,26.06453],[92.25832,26.06346],[92.26095,26.06614],[92.26746,26.06676],[92.2686,26.06812],[92.27187,26.06522],[92.28167,26.06896],[92.28661,26.0776],[92.29034,26.07824],[92.2938,26.08222],[92.29653,26.08252],[92.30031,26.07761],[92.30039,26.08238],[92.30353,26.08631],[92.31228,26.08217],[92.31446,26.0848],[92.32341,26.08633],[92.32986,26.07681],[92.33885,26.07968],[92.34802,26.08526],[92.35449,26.0848],[92.35963,26.09161],[92.35986,26.08506],[92.36271,26.08203],[92.36289,26.07758],[92.37954,26.0913],[92.3842,26.10037],[92.39949,26.1202],[92.40833,26.12573],[92.39961,26.13187],[92.39888,26.13749],[92.40264,26.14309],[92.40475,26.14323],[92.41692,26.15242],[92.4222,26.17487],[92.42755,26.18352],[92.42799,26.18856],[92.43086,26.19083],[92.42863,26.19403],[92.43013,26.20546],[92.42936,26.21776],[92.42603,26.22461],[92.42536,26.23198],[92.42317,26.23609],[92.4174,26.24062],[92.4078,26.24416],[92.41108,26.2471],[92.4192,26.27015],[92.42405,26.26979],[92.42569,26.26665],[92.43207,26.26819],[92.43257,26.26966],[92.4398,26.26912],[92.4439,26.27012],[92.44381,26.27221],[92.45231,26.27306],[92.4852,26.27473],[92.49351,26.27454],[92.49683,26.27214],[92.50412,26.27307],[92.51973,26.28078],[92.55262,26.30837],[92.55672,26.3132],[92.5601,26.3212],[92.56158,26.33293],[92.56561,26.33317],[92.56818,26.33787],[92.56361,26.36018],[92.56682,26.37219],[92.55325,26.37517],[92.55146,26.38217],[92.54521,26.38256],[92.52802,26.37353],[92.52646,26.3772],[92.50905,26.37734],[92.50658,26.37184],[92.50378,26.37328],[92.50517,26.38094],[92.50274,26.38214],[92.5016,26.37786],[92.49384,26.37451],[92.49424,26.3704],[92.48767,26.36709],[92.48586,26.36342],[92.48455,26.36819],[92.47565,26.37055],[92.46984,26.37433],[92.46241,26.37217],[92.45588,26.37303],[92.44554,26.3676],[92.44063,26.37028],[92.44142,26.38912],[92.4335,26.39026],[92.43333,26.39865],[92.43116,26.39889],[92.43397,26.41301],[92.42932,26.41083],[92.4243,26.41361],[92.42745,26.41715],[92.42509,26.41787],[92.42714,26.41905],[92.42617,26.42125],[92.42771,26.42282],[92.42679,26.42535],[92.42802,26.42774],[92.4419,26.43637],[92.43897,26.44308],[92.44107,26.45188],[92.4365,26.45517],[92.42638,26.47154],[92.42843,26.47651],[92.41979,26.47898],[92.42196,26.48782],[92.41931,26.49077],[92.41684,26.49881],[92.41969,26.51199]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"297","area_level":"District","area_name":"Nagaon","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.31335,26.68822],[93.30685,26.69375],[93.30392,26.70041],[93.29068,26.69747],[93.28477,26.69086],[93.28572,26.68897],[93.27387,26.68532],[93.26149,26.68317],[93.25067,26.68732],[93.2435,26.68494],[93.22655,26.66057],[93.22458,26.6408],[93.21979,26.63105],[93.16755,26.61204],[93.16302,26.60787],[93.16025,26.60147],[93.14927,26.5938],[93.11903,26.58018],[93.10984,26.57801],[93.10175,26.57679],[93.09496,26.57768],[93.07112,26.59792],[93.05544,26.59502],[93.03351,26.59818],[93.02537,26.59696],[93.01377,26.59771],[92.99608,26.60415],[92.99519,26.60646],[92.9967,26.61092],[92.99308,26.61369],[92.98474,26.61442],[92.97843,26.61824],[92.95487,26.6184],[92.9512,26.6204],[92.94051,26.61859],[92.93497,26.6159],[92.93107,26.61264],[92.92502,26.6025],[92.91695,26.59496],[92.9094,26.59411],[92.89283,26.59573],[92.87716,26.58491],[92.86918,26.58169],[92.85543,26.58505],[92.84204,26.58442],[92.82875,26.57818],[92.81244,26.56569],[92.79467,26.55706],[92.78544,26.55548],[92.77145,26.55585],[92.76692,26.54685],[92.76457,26.53274],[92.75641,26.52489],[92.75706,26.51493],[92.75086,26.51141],[92.74595,26.51121],[92.7417,26.51437],[92.73409,26.51518],[92.72876,26.51783],[92.72509,26.52313],[92.72604,26.53263],[92.72158,26.53636],[92.70657,26.53046],[92.69915,26.5203],[92.68866,26.51001],[92.68251,26.50963],[92.67684,26.51158],[92.66302,26.52236],[92.65141,26.51741],[92.6308,26.51782],[92.61084,26.51239],[92.60383,26.50886],[92.58881,26.50597],[92.58802,26.505],[92.59056,26.50317],[92.59069,26.50126],[92.58439,26.50203],[92.57583,26.49971],[92.57138,26.50066],[92.56229,26.50665],[92.54855,26.50554],[92.52259,26.5081],[92.49284,26.50203],[92.48436,26.49729],[92.47791,26.49578],[92.46745,26.49628],[92.45807,26.49953],[92.45404,26.50667],[92.45286,26.51404],[92.44744,26.5177],[92.43654,26.5203],[92.41899,26.51708],[92.41953,26.50903],[92.41684,26.49881],[92.41931,26.49077],[92.42196,26.48782],[92.41979,26.47898],[92.42843,26.47651],[92.42638,26.47154],[92.4365,26.45517],[92.44107,26.45188],[92.43897,26.44308],[92.4419,26.43637],[92.42802,26.42774],[92.42679,26.42535],[92.42771,26.42282],[92.42617,26.42125],[92.42714,26.41905],[92.42509,26.41787],[92.42745,26.41715],[92.4243,26.41361],[92.42932,26.41083],[92.43397,26.41301],[92.43116,26.39889],[92.43333,26.39865],[92.4335,26.39026],[92.44142,26.38912],[92.44063,26.37028],[92.44554,26.3676],[92.45588,26.37303],[92.46241,26.37217],[92.46984,26.37433],[92.47565,26.37055],[92.48455,26.36819],[92.48586,26.36342],[92.48767,26.36709],[92.49424,26.3704],[92.49384,26.37451],[92.5016,26.37786],[92.50274,26.38214],[92.50517,26.38094],[92.50378,26.37328],[92.50658,26.37184],[92.50905,26.37734],[92.52646,26.3772],[92.52802,26.37353],[92.54521,26.38256],[92.55146,26.38217],[92.55325,26.37517],[92.56682,26.37219],[92.56361,26.36018],[92.56818,26.33787],[92.56561,26.33317],[92.56158,26.33293],[92.5601,26.3212],[92.55672,26.3132],[92.55262,26.30837],[92.51973,26.28078],[92.50412,26.27307],[92.49683,26.27214],[92.49351,26.27454],[92.4852,26.27473],[92.45231,26.27306],[92.44381,26.27221],[92.4439,26.27012],[92.4398,26.26912],[92.43257,26.26966],[92.43207,26.26819],[92.42569,26.26665],[92.42405,26.26979],[92.4192,26.27015],[92.41108,26.2471],[92.4078,26.24416],[92.4174,26.24062],[92.42317,26.23609],[92.42536,26.23198],[92.42603,26.22461],[92.42936,26.21776],[92.43013,26.20546],[92.42863,26.19403],[92.43086,26.19083],[92.42799,26.18856],[92.42755,26.18352],[92.4222,26.17487],[92.41692,26.15242],[92.40475,26.14323],[92.40264,26.14309],[92.39888,26.13749],[92.39961,26.13187],[92.40833,26.12573],[92.40056,26.12139],[92.3954,26.11362],[92.40727,26.11376],[92.41126,26.11179],[92.41293,26.11555],[92.41443,26.11562],[92.41787,26.11127],[92.42514,26.10713],[92.42736,26.0988],[92.44144,26.0956],[92.44402,26.0982],[92.44942,26.10008],[92.45388,26.11562],[92.45936,26.11766],[92.46816,26.11799],[92.47886,26.12896],[92.48238,26.13916],[92.48643,26.14491],[92.48663,26.14941],[92.50126,26.14892],[92.50633,26.14213],[92.50876,26.14127],[92.51995,26.1514],[92.51931,26.15476],[92.52149,26.1554],[92.52271,26.15157],[92.526,26.15315],[92.5289,26.15088],[92.51763,26.11602],[92.5193,26.1126],[92.51966,26.10243],[92.52246,26.10232],[92.52658,26.09855],[92.53069,26.1014],[92.53051,26.09942],[92.53318,26.0961],[92.53639,26.09646],[92.54768,26.11075],[92.56303,26.11574],[92.57246,26.11584],[92.57719,26.10658],[92.57461,26.09485],[92.59569,26.08076],[92.59602,26.07093],[92.58887,26.06262],[92.5842,26.05294],[92.58323,26.04325],[92.5795,26.03328],[92.58151,26.02935],[92.59041,26.02776],[92.59321,26.0231],[92.59444,26.02361],[92.59379,26.02148],[92.571,26.01443],[92.56623,26.01073],[92.56715,26.00191],[92.5592,25.99355],[92.54599,25.97156],[92.55256,25.96548],[92.56026,25.96511],[92.56561,25.96168],[92.57551,25.96639],[92.58874,25.96401],[92.59593,25.97809],[92.60049,25.9759],[92.60641,25.97857],[92.61132,25.97762],[92.61554,25.98415],[92.62067,25.98418],[92.63295,25.98962],[92.63389,25.99431],[92.63715,25.99612],[92.63615,25.99895],[92.63886,25.99766],[92.64385,25.99994],[92.65553,26.00025],[92.65737,26.00791],[92.65461,26.01319],[92.65622,26.01688],[92.65441,26.0196],[92.66551,26.02376],[92.66688,26.02838],[92.67065,26.02875],[92.67282,26.02492],[92.6782,26.02715],[92.67889,26.02424],[92.68367,26.02771],[92.68734,26.02614],[92.68664,26.02448],[92.6887,26.02408],[92.69008,26.02129],[92.69225,26.02275],[92.694,26.02073],[92.69493,26.02281],[92.69888,26.01994],[92.70378,26.02187],[92.70616,26.01947],[92.70807,26.02028],[92.70963,26.01759],[92.71103,26.01776],[92.71078,26.01933],[92.71331,26.01806],[92.71246,26.02171],[92.71485,26.02289],[92.71136,26.02598],[92.7165,26.02977],[92.71509,26.0328],[92.71682,26.03619],[92.71332,26.03612],[92.71226,26.03777],[92.71007,26.03702],[92.7113,26.03835],[92.71049,26.03978],[92.71201,26.0402],[92.70887,26.04524],[92.71399,26.05353],[92.71628,26.05466],[92.71736,26.0583],[92.74306,26.06149],[92.75369,26.05652],[92.75747,26.05916],[92.75816,26.06172],[92.75092,26.07555],[92.74355,26.07501],[92.73525,26.06993],[92.73238,26.07139],[92.73258,26.07631],[92.73921,26.08579],[92.73616,26.08804],[92.73035,26.08818],[92.72988,26.08957],[92.74064,26.09416],[92.74117,26.10104],[92.73636,26.1042],[92.72733,26.10001],[92.72302,26.10091],[92.73142,26.10782],[92.73207,26.11539],[92.71722,26.12283],[92.7038,26.12524],[92.70252,26.12989],[92.70586,26.14229],[92.71404,26.1446],[92.72253,26.15094],[92.72729,26.14665],[92.73542,26.14596],[92.74409,26.14221],[92.75142,26.14204],[92.75753,26.15338],[92.7617,26.15716],[92.76016,26.17159],[92.75456,26.17592],[92.75553,26.18064],[92.76438,26.18649],[92.77844,26.18696],[92.78079,26.1919],[92.77613,26.19565],[92.77629,26.19963],[92.78337,26.19881],[92.7858,26.1967],[92.80196,26.20183],[92.794,26.20505],[92.79547,26.20744],[92.7936,26.21951],[92.81514,26.21405],[92.82705,26.22511],[92.82475,26.22986],[92.81504,26.23304],[92.81624,26.23865],[92.81338,26.23972],[92.81279,26.24517],[92.81548,26.25469],[92.81723,26.25492],[92.81619,26.25714],[92.81739,26.26075],[92.81388,26.26256],[92.81943,26.2637],[92.8184,26.26551],[92.82156,26.2663],[92.81847,26.26787],[92.81881,26.27003],[92.83006,26.27384],[92.83316,26.27992],[92.83688,26.28289],[92.84157,26.28383],[92.84007,26.28879],[92.84336,26.28827],[92.84471,26.29079],[92.84114,26.29321],[92.84399,26.30511],[92.84727,26.30594],[92.85099,26.30272],[92.8508,26.30447],[92.85264,26.30486],[92.85565,26.30253],[92.84877,26.29998],[92.85305,26.29792],[92.8543,26.29371],[92.85755,26.2957],[92.86062,26.29518],[92.86198,26.29288],[92.8663,26.29388],[92.87972,26.28373],[92.88359,26.28739],[92.88867,26.28681],[92.89226,26.28845],[92.89433,26.30484],[92.89859,26.309],[92.91357,26.31754],[92.91796,26.31707],[92.91749,26.31337],[92.92138,26.31318],[92.92803,26.31698],[92.9285,26.31914],[92.93016,26.31841],[92.9431,26.32721],[92.9454,26.33181],[92.94507,26.34057],[92.94073,26.34406],[92.94097,26.35186],[92.93955,26.35314],[92.93596,26.35172],[92.93444,26.35277],[92.932,26.3508],[92.92773,26.35428],[92.92034,26.35568],[92.90937,26.35253],[92.91091,26.35485],[92.9087,26.35753],[92.9212,26.3686],[92.91679,26.37097],[92.91707,26.37342],[92.92578,26.37899],[92.92227,26.37933],[92.92108,26.38238],[92.9166,26.37668],[92.91685,26.37946],[92.90897,26.37767],[92.90373,26.38054],[92.90813,26.3817],[92.90314,26.38549],[92.89949,26.38375],[92.89527,26.3757],[92.89234,26.37349],[92.8897,26.37449],[92.89442,26.3814],[92.89307,26.38193],[92.89669,26.38467],[92.89871,26.38437],[92.90015,26.38667],[92.89631,26.38691],[92.88533,26.37947],[92.88202,26.38004],[92.88331,26.38355],[92.88959,26.38507],[92.8889,26.38834],[92.89175,26.38991],[92.89172,26.38676],[92.89323,26.38646],[92.90033,26.3958],[92.90186,26.40143],[92.90486,26.40191],[92.90507,26.40007],[92.90685,26.39988],[92.90581,26.39618],[92.90857,26.39576],[92.91069,26.39924],[92.91094,26.39469],[92.91265,26.39278],[92.91869,26.39303],[92.92061,26.39171],[92.92029,26.39666],[92.92609,26.39647],[92.93814,26.40386],[92.94247,26.39994],[92.94972,26.39765],[92.95184,26.40505],[92.95525,26.40561],[92.95835,26.40839],[92.95991,26.40671],[92.96315,26.40777],[92.96556,26.40663],[92.96511,26.40955],[92.96187,26.41313],[92.96954,26.4124],[92.97852,26.42057],[92.98259,26.41734],[92.99469,26.42306],[93.00408,26.42468],[93.01929,26.42051],[93.0244,26.4222],[93.02946,26.4272],[93.03772,26.43096],[93.03926,26.43458],[93.04363,26.43726],[93.04454,26.43461],[93.04825,26.4345],[93.05061,26.43125],[93.056,26.42827],[93.05337,26.42754],[93.05259,26.42559],[93.05572,26.42519],[93.05725,26.42181],[93.05474,26.42129],[93.05253,26.42282],[93.05044,26.42067],[93.0512,26.4193],[93.04875,26.41961],[93.0496,26.41612],[93.05096,26.41568],[93.05537,26.41958],[93.05663,26.41663],[93.06095,26.41589],[93.06627,26.42021],[93.06708,26.42317],[93.06913,26.41875],[93.07084,26.41995],[93.07749,26.41918],[93.07623,26.42107],[93.07795,26.42498],[93.08084,26.42482],[93.08321,26.42921],[93.09157,26.43326],[93.08926,26.43415],[93.08552,26.43192],[93.0841,26.43367],[93.08347,26.43143],[93.07948,26.43086],[93.07909,26.4284],[93.06735,26.43098],[93.06566,26.43332],[93.06789,26.43352],[93.06887,26.43534],[93.07062,26.43508],[93.07016,26.43153],[93.07383,26.43261],[93.09167,26.4406],[93.09383,26.44334],[93.09928,26.44581],[93.10556,26.44085],[93.10247,26.43892],[93.09991,26.43991],[93.09537,26.43604],[93.09507,26.43463],[93.10028,26.43704],[93.09917,26.43303],[93.10617,26.43768],[93.10854,26.43601],[93.11013,26.43965],[93.11813,26.4416],[93.11044,26.44155],[93.11113,26.44247],[93.10868,26.44442],[93.11111,26.44745],[93.10556,26.44701],[93.1039,26.44887],[93.11088,26.45155],[93.11761,26.45835],[93.12538,26.45986],[93.12358,26.46137],[93.12446,26.4635],[93.12838,26.46416],[93.12473,26.4652],[93.12097,26.4642],[93.12096,26.46674],[93.11877,26.46663],[93.12005,26.4691],[93.11459,26.46772],[93.11563,26.46963],[93.11041,26.47106],[93.1313,26.47714],[93.13265,26.48144],[93.13626,26.48436],[93.13559,26.48519],[93.12739,26.48037],[93.12695,26.48606],[93.12959,26.48648],[93.13294,26.48967],[93.12972,26.48781],[93.12473,26.48829],[93.12144,26.4925],[93.12526,26.49578],[93.11881,26.49241],[93.12089,26.49145],[93.12171,26.48521],[93.12452,26.48309],[93.11958,26.48082],[93.11739,26.48263],[93.11731,26.48527],[93.11168,26.48377],[93.10951,26.47935],[93.10646,26.4789],[93.10573,26.47604],[93.09816,26.47299],[93.10267,26.47224],[93.10373,26.47141],[93.10253,26.46961],[93.10548,26.46963],[93.10814,26.46698],[93.10208,26.46443],[93.10246,26.46012],[93.09914,26.4633],[93.09662,26.46348],[93.09449,26.46098],[93.08929,26.46062],[93.08873,26.46263],[93.09153,26.46518],[93.09034,26.46874],[93.08636,26.47068],[93.07948,26.47006],[93.07752,26.47127],[93.07612,26.46941],[93.07324,26.47275],[93.07488,26.47571],[93.07384,26.47862],[93.0672,26.47771],[93.06449,26.47938],[93.06603,26.4826],[93.0787,26.48858],[93.0817,26.49309],[93.09127,26.49852],[93.09032,26.50001],[93.08704,26.50023],[93.08443,26.49723],[93.07839,26.49421],[93.07314,26.49401],[93.07052,26.49138],[93.07025,26.49684],[93.0666,26.50031],[93.06871,26.49585],[93.06853,26.49143],[93.06092,26.49059],[93.06007,26.49224],[93.05422,26.48897],[93.04894,26.48886],[93.04721,26.49077],[93.04477,26.48666],[93.03569,26.48627],[93.02953,26.48419],[93.02657,26.48055],[93.02448,26.48285],[93.01415,26.47722],[93.00865,26.48121],[93.00649,26.49115],[93.01247,26.49907],[93.01136,26.50484],[93.01276,26.50749],[93.01623,26.51102],[93.02425,26.51374],[93.02513,26.51564],[93.03214,26.51544],[93.03258,26.51879],[93.03682,26.51827],[93.03924,26.52037],[93.03813,26.52555],[93.0422,26.52394],[93.04521,26.52704],[93.04828,26.52596],[93.04619,26.53038],[93.04318,26.53108],[93.04298,26.53508],[93.05992,26.54472],[93.07343,26.54459],[93.07728,26.54313],[93.08205,26.54494],[93.08906,26.54465],[93.09666,26.54058],[93.1012,26.54283],[93.10193,26.53689],[93.10351,26.53516],[93.10955,26.53063],[93.1143,26.53032],[93.11897,26.53312],[93.11703,26.53771],[93.12381,26.53801],[93.1336,26.5446],[93.13691,26.55199],[93.1415,26.55559],[93.1471,26.55587],[93.15086,26.54639],[93.15526,26.5502],[93.16736,26.55505],[93.18109,26.56447],[93.19129,26.56708],[93.19752,26.56419],[93.20075,26.56444],[93.20328,26.56216],[93.20927,26.56395],[93.20871,26.56185],[93.21098,26.55986],[93.20968,26.55616],[93.20604,26.55313],[93.19999,26.54348],[93.19001,26.54371],[93.18369,26.53918],[93.18044,26.54036],[93.17994,26.53656],[93.17495,26.53597],[93.17275,26.53305],[93.17383,26.53099],[93.16934,26.53157],[93.16518,26.52664],[93.1595,26.52604],[93.16094,26.52404],[93.16522,26.52398],[93.19059,26.53579],[93.19944,26.53348],[93.20976,26.5148],[93.20603,26.50755],[93.20288,26.50919],[93.20098,26.50652],[93.20431,26.50557],[93.2005,26.50144],[93.20425,26.5014],[93.21232,26.50888],[93.21732,26.50746],[93.21742,26.50941],[93.21252,26.51117],[93.21312,26.51342],[93.21593,26.51436],[93.21184,26.51654],[93.21107,26.52012],[93.21617,26.52098],[93.21727,26.52264],[93.2116,26.52403],[93.21296,26.52966],[93.21655,26.5302],[93.21915,26.53634],[93.22261,26.53648],[93.22983,26.53247],[93.23332,26.53573],[93.24456,26.5325],[93.24282,26.52991],[93.24578,26.52777],[93.24606,26.52358],[93.25011,26.52447],[93.25339,26.52217],[93.25814,26.52284],[93.2634,26.52115],[93.26634,26.51565],[93.26978,26.51482],[93.26337,26.50893],[93.27045,26.51044],[93.27305,26.50866],[93.27412,26.5111],[93.27161,26.51368],[93.27221,26.5168],[93.27829,26.51948],[93.28421,26.5198],[93.28519,26.51571],[93.28299,26.51392],[93.28946,26.51057],[93.28909,26.50696],[93.29209,26.50467],[93.29165,26.50746],[93.29447,26.51017],[93.29392,26.51306],[93.29069,26.51319],[93.2868,26.51735],[93.28781,26.52069],[93.2812,26.52322],[93.28096,26.52518],[93.27896,26.52254],[93.27486,26.52183],[93.27083,26.52442],[93.26913,26.52787],[93.26392,26.52742],[93.26523,26.52938],[93.27543,26.53389],[93.27547,26.53635],[93.27201,26.5378],[93.2735,26.54523],[93.2722,26.54519],[93.26461,26.53368],[93.25653,26.53199],[93.2551,26.53464],[93.26136,26.53565],[93.26266,26.53789],[93.25995,26.54079],[93.25686,26.5408],[93.25124,26.54477],[93.24778,26.54377],[93.24705,26.54498],[93.24994,26.5485],[93.25647,26.55115],[93.2398,26.55163],[93.23487,26.55371],[93.24289,26.56257],[93.24967,26.56534],[93.25117,26.56996],[93.25291,26.56788],[93.26191,26.5695],[93.2699,26.57297],[93.28157,26.56912],[93.28358,26.57127],[93.28851,26.57256],[93.29412,26.57852],[93.29765,26.57663],[93.30216,26.58043],[93.30172,26.58212],[93.29507,26.58526],[93.29138,26.59068],[93.29591,26.5992],[93.29646,26.61194],[93.29164,26.62809],[93.28688,26.63724],[93.29778,26.63498],[93.30458,26.63682],[93.31083,26.64086],[93.31752,26.65055],[93.31697,26.65765],[93.3085,26.66446],[93.30667,26.66764],[93.31203,26.67742],[93.31716,26.67887],[93.31335,26.68822]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"298","area_level":"District","area_name":"Nalbari","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.35528,26.51078],[91.34919,26.5099],[91.34774,26.50782],[91.34385,26.5082],[91.34217,26.50035],[91.33467,26.50052],[91.33201,26.49435],[91.32793,26.49046],[91.31257,26.49015],[91.31054,26.48531],[91.29675,26.48495],[91.29455,26.48823],[91.29595,26.49416],[91.29826,26.4966],[91.30213,26.49761],[91.30229,26.50009],[91.30161,26.50145],[91.29192,26.50315],[91.28414,26.50264],[91.29013,26.511],[91.28938,26.51538],[91.31143,26.51692],[91.31039,26.52105],[91.306,26.52303],[91.31118,26.52489],[91.31077,26.52865],[91.30677,26.53054],[91.30427,26.53459],[91.30493,26.5364],[91.30273,26.53717],[91.29678,26.54626],[91.29374,26.54686],[91.27524,26.54121],[91.27256,26.53453],[91.26623,26.53499],[91.26262,26.52508],[91.26368,26.52157],[91.25898,26.52039],[91.25466,26.52279],[91.24951,26.52329],[91.24758,26.52031],[91.24776,26.51078],[91.25233,26.5106],[91.25482,26.50655],[91.26007,26.50579],[91.26469,26.49882],[91.26303,26.49682],[91.26556,26.49576],[91.26443,26.49391],[91.26583,26.49105],[91.26343,26.48999],[91.26383,26.48775],[91.26099,26.48728],[91.26274,26.48594],[91.25782,26.48219],[91.25861,26.47846],[91.25569,26.4783],[91.25556,26.47426],[91.25221,26.47169],[91.25069,26.46611],[91.24773,26.46579],[91.24131,26.45826],[91.238,26.45793],[91.238,26.44938],[91.23088,26.43999],[91.23052,26.43254],[91.23228,26.42965],[91.23134,26.42639],[91.23439,26.42439],[91.23829,26.40737],[91.24186,26.40431],[91.236,26.40335],[91.23354,26.39956],[91.23496,26.39165],[91.24196,26.38823],[91.23646,26.3822],[91.23549,26.37874],[91.23955,26.3759],[91.24431,26.38097],[91.24677,26.3762],[91.24575,26.3721],[91.24846,26.36707],[91.25153,26.36614],[91.25253,26.36359],[91.2575,26.36406],[91.26528,26.36079],[91.26611,26.36276],[91.26406,26.36562],[91.26492,26.37089],[91.27551,26.37229],[91.27446,26.37506],[91.27833,26.37756],[91.28255,26.37517],[91.28003,26.37574],[91.28018,26.37216],[91.27762,26.37145],[91.2709,26.36461],[91.27504,26.35672],[91.27981,26.35571],[91.27633,26.34938],[91.27729,26.34096],[91.26914,26.34268],[91.26707,26.34058],[91.26626,26.33718],[91.26983,26.32902],[91.26302,26.31789],[91.25795,26.31714],[91.25582,26.31486],[91.25583,26.31151],[91.26066,26.31079],[91.26136,26.30423],[91.25803,26.30227],[91.25162,26.30434],[91.25011,26.30191],[91.25165,26.29585],[91.25494,26.29391],[91.26,26.29415],[91.26104,26.28934],[91.2404,26.27945],[91.2269,26.28255],[91.21935,26.27573],[91.21697,26.27086],[91.21586,26.26708],[91.22107,26.26441],[91.21842,26.26388],[91.21851,26.26018],[91.22564,26.26363],[91.22996,26.26401],[91.23787,26.26323],[91.24083,26.26028],[91.23668,26.25052],[91.23183,26.2457],[91.22895,26.24383],[91.22093,26.24493],[91.2156,26.23921],[91.21579,26.23375],[91.21978,26.22718],[91.21518,26.22134],[91.21866,26.21721],[91.22774,26.21615],[91.23215,26.21407],[91.23783,26.2094],[91.24136,26.2033],[91.24842,26.20076],[91.23919,26.193],[91.23941,26.18598],[91.2373,26.18028],[91.22957,26.18216],[91.22205,26.17941],[91.24511,26.17029],[91.25565,26.16309],[91.27542,26.16139],[91.29642,26.15732],[91.31017,26.1616],[91.32323,26.16042],[91.3287,26.16272],[91.33422,26.16785],[91.34311,26.16302],[91.35361,26.1673],[91.36687,26.16035],[91.39063,26.13902],[91.39685,26.13713],[91.41014,26.13817],[91.41381,26.13605],[91.42045,26.17465],[91.41749,26.18082],[91.41506,26.19435],[91.41107,26.20115],[91.4137,26.20472],[91.4198,26.2059],[91.42225,26.23237],[91.41773,26.24042],[91.41639,26.25142],[91.41357,26.25338],[91.41266,26.26557],[91.42288,26.26851],[91.43652,26.26027],[91.44439,26.26484],[91.44622,26.26743],[91.44478,26.26928],[91.45135,26.26963],[91.44836,26.29083],[91.45163,26.30943],[91.45746,26.3132],[91.45708,26.31449],[91.45135,26.31472],[91.45492,26.32037],[91.45785,26.32067],[91.46589,26.31679],[91.48125,26.32107],[91.47978,26.32722],[91.48304,26.33013],[91.48978,26.33153],[91.4916,26.32827],[91.49695,26.33174],[91.50224,26.33107],[91.50788,26.33542],[91.51032,26.33483],[91.51102,26.33212],[91.51541,26.33228],[91.5202,26.33305],[91.52163,26.33638],[91.52489,26.33669],[91.52392,26.3398],[91.52046,26.34086],[91.52455,26.34519],[91.52115,26.34608],[91.51953,26.35479],[91.52405,26.35536],[91.5245,26.36384],[91.52616,26.36625],[91.52533,26.37159],[91.53642,26.37647],[91.52954,26.3829],[91.53,26.3899],[91.52852,26.3903],[91.52865,26.39273],[91.53594,26.39802],[91.53485,26.3989],[91.54107,26.40172],[91.54248,26.40821],[91.54767,26.4095],[91.54832,26.41286],[91.55191,26.4175],[91.55832,26.42318],[91.56008,26.42907],[91.56414,26.43025],[91.56428,26.4327],[91.56306,26.43278],[91.56441,26.43393],[91.56218,26.43438],[91.56277,26.43717],[91.56113,26.43807],[91.56226,26.43989],[91.56059,26.4439],[91.55346,26.45045],[91.54959,26.46954],[91.55378,26.47964],[91.56202,26.48366],[91.55935,26.49084],[91.56021,26.4955],[91.55845,26.49765],[91.55669,26.50831],[91.55619,26.52551],[91.57327,26.52632],[91.57851,26.52901],[91.58014,26.53964],[91.57911,26.54981],[91.57645,26.55121],[91.57708,26.55293],[91.57404,26.55539],[91.58443,26.55475],[91.58439,26.56142],[91.58319,26.56338],[91.57961,26.56252],[91.58322,26.56852],[91.57735,26.5723],[91.54938,26.56309],[91.52826,26.55873],[91.53044,26.55367],[91.52534,26.55242],[91.52673,26.54887],[91.52503,26.54473],[91.52346,26.54319],[91.52046,26.54484],[91.51859,26.54416],[91.51489,26.54025],[91.51673,26.53701],[91.51143,26.53682],[91.51042,26.53519],[91.51202,26.53349],[91.50635,26.53245],[91.4943,26.53386],[91.49465,26.55388],[91.4916,26.55442],[91.49125,26.56114],[91.47579,26.57094],[91.474,26.57123],[91.47116,26.5688],[91.47063,26.5647],[91.4676,26.56261],[91.43429,26.56343],[91.43145,26.56002],[91.43111,26.5563],[91.42592,26.55332],[91.42698,26.5519],[91.43135,26.55168],[91.42883,26.54934],[91.45565,26.54869],[91.45885,26.54662],[91.45978,26.54271],[91.4292,26.53469],[91.42231,26.53439],[91.38669,26.52653],[91.35265,26.524],[91.35456,26.51111],[91.36323,26.51129],[91.36182,26.50131],[91.35732,26.50124],[91.35574,26.49959],[91.35227,26.50356],[91.35528,26.51078]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"299","area_level":"District","area_name":"Dima Hasao","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.99841,25.80509],[92.9985,25.80923],[93.00668,25.82627],[92.99553,25.82515],[92.98864,25.82107],[92.98584,25.81312],[92.98096,25.80868],[92.9832,25.80472],[92.98699,25.80307],[92.98766,25.8004],[92.98581,25.78224],[92.98219,25.78004],[92.9797,25.78123],[92.98206,25.78907],[92.98064,25.79054],[92.97353,25.78442],[92.96743,25.78179],[92.96997,25.79106],[92.96002,25.79768],[92.95675,25.80287],[92.95867,25.80811],[92.9673,25.81528],[92.96587,25.81791],[92.96222,25.81708],[92.95571,25.8084],[92.94884,25.80864],[92.94429,25.80323],[92.92855,25.80688],[92.93227,25.80255],[92.93271,25.79965],[92.9282,25.79307],[92.92693,25.7766],[92.92279,25.77228],[92.88362,25.75655],[92.8681,25.75334],[92.84311,25.7511],[92.82943,25.74237],[92.82096,25.74145],[92.82163,25.71855],[92.81773,25.71125],[92.81475,25.70913],[92.81377,25.70235],[92.80135,25.698],[92.79946,25.69044],[92.78504,25.68201],[92.77826,25.67998],[92.77462,25.67434],[92.77531,25.67117],[92.78678,25.66334],[92.78951,25.65967],[92.78316,25.64649],[92.77952,25.64568],[92.77568,25.64099],[92.77159,25.63967],[92.76625,25.63236],[92.75838,25.62873],[92.75854,25.62564],[92.76209,25.62185],[92.76824,25.61982],[92.76795,25.61708],[92.76405,25.61438],[92.75818,25.6161],[92.75453,25.61522],[92.74963,25.60906],[92.75053,25.60275],[92.74915,25.59979],[92.73832,25.593],[92.7191,25.58864],[92.71483,25.59099],[92.71402,25.59768],[92.71249,25.59904],[92.69823,25.59972],[92.69418,25.59799],[92.68434,25.59031],[92.67881,25.58307],[92.67889,25.58045],[92.68287,25.57926],[92.68268,25.57668],[92.66136,25.57251],[92.65748,25.56975],[92.65679,25.56085],[92.64563,25.55616],[92.64206,25.54158],[92.64284,25.53481],[92.63776,25.53024],[92.63191,25.52774],[92.62769,25.52197],[92.6202,25.51606],[92.60908,25.51181],[92.5999,25.50635],[92.5973,25.50246],[92.59109,25.50115],[92.57365,25.49048],[92.56436,25.47361],[92.56467,25.46548],[92.56655,25.46336],[92.57446,25.46626],[92.58036,25.47208],[92.58259,25.47107],[92.58411,25.4656],[92.59189,25.47042],[92.59564,25.4702],[92.59861,25.46814],[92.60045,25.46475],[92.59761,25.45067],[92.60461,25.4476],[92.60307,25.43513],[92.60698,25.42763],[92.6045,25.4209],[92.60663,25.41323],[92.61126,25.41517],[92.6151,25.42111],[92.61858,25.423],[92.62461,25.42092],[92.62764,25.42197],[92.62838,25.42388],[92.62525,25.43114],[92.62565,25.43492],[92.63584,25.42732],[92.63672,25.42141],[92.63956,25.41757],[92.64708,25.42824],[92.65362,25.43352],[92.65442,25.4326],[92.65146,25.42584],[92.6519,25.41924],[92.65641,25.41154],[92.66164,25.40635],[92.66353,25.4065],[92.66752,25.41483],[92.67353,25.41402],[92.67778,25.40702],[92.68815,25.40208],[92.69283,25.39767],[92.69828,25.38632],[92.70176,25.38448],[92.70988,25.38451],[92.71794,25.37263],[92.72375,25.37882],[92.73802,25.37933],[92.73326,25.37272],[92.73236,25.36892],[92.73879,25.36695],[92.73955,25.36131],[92.74641,25.35833],[92.74995,25.34994],[92.7499,25.3441],[92.7546,25.34238],[92.75593,25.33864],[92.76107,25.33352],[92.76373,25.33358],[92.76991,25.33821],[92.7818,25.33318],[92.78693,25.31437],[92.78154,25.30769],[92.78143,25.30445],[92.78343,25.29944],[92.78723,25.29621],[92.7873,25.29003],[92.7925,25.28256],[92.78749,25.27409],[92.77974,25.27353],[92.77665,25.27003],[92.76862,25.26812],[92.7692,25.26559],[92.77775,25.25818],[92.77497,25.252],[92.77118,25.25099],[92.76646,25.25214],[92.76263,25.24927],[92.76189,25.24653],[92.77016,25.23733],[92.77167,25.22998],[92.78203,25.23016],[92.78911,25.22468],[92.80152,25.22024],[92.80291,25.21617],[92.79503,25.20975],[92.78605,25.20935],[92.78192,25.20325],[92.77621,25.19961],[92.76747,25.20349],[92.76281,25.20159],[92.75484,25.20183],[92.7468,25.20651],[92.74287,25.20665],[92.73722,25.20054],[92.71614,25.19578],[92.70924,25.19007],[92.70262,25.18838],[92.6939,25.17924],[92.68338,25.17954],[92.67724,25.18254],[92.66863,25.17656],[92.66796,25.17408],[92.66348,25.17667],[92.65843,25.17195],[92.65802,25.15884],[92.65576,25.15495],[92.65209,25.1523],[92.63868,25.14773],[92.62831,25.1381],[92.62729,25.13095],[92.62888,25.12618],[92.62143,25.11503],[92.61632,25.1158],[92.6089,25.12262],[92.59501,25.1222],[92.59282,25.12589],[92.58808,25.12878],[92.5832,25.12811],[92.57661,25.13099],[92.56818,25.12824],[92.56061,25.13032],[92.55536,25.12695],[92.53836,25.13349],[92.5249,25.13519],[92.52245,25.13922],[92.52064,25.13695],[92.52265,25.13303],[92.5231,25.12597],[92.53939,25.09921],[92.54651,25.10401],[92.55549,25.10416],[92.56358,25.10125],[92.57182,25.1016],[92.57804,25.10441],[92.59185,25.1064],[92.59844,25.11078],[92.60261,25.11046],[92.61362,25.10304],[92.61953,25.10241],[92.62195,25.10331],[92.62327,25.10798],[92.63188,25.10912],[92.63901,25.11706],[92.64297,25.11784],[92.64866,25.11764],[92.65306,25.11393],[92.65678,25.11412],[92.6651,25.10914],[92.67318,25.10934],[92.67809,25.11325],[92.68389,25.11457],[92.69299,25.11089],[92.69957,25.11104],[92.71176,25.11704],[92.72254,25.11272],[92.72388,25.11826],[92.72911,25.12317],[92.73414,25.12392],[92.73491,25.12599],[92.72821,25.13634],[92.72958,25.14314],[92.73299,25.13952],[92.74464,25.13589],[92.75279,25.13902],[92.75525,25.13674],[92.76444,25.11805],[92.7671,25.11563],[92.76439,25.11008],[92.7648,25.1032],[92.77142,25.09793],[92.77798,25.08835],[92.78469,25.08592],[92.79615,25.08808],[92.80849,25.08178],[92.81264,25.08142],[92.82855,25.0708],[92.82722,25.05854],[92.83583,25.05271],[92.84109,25.05445],[92.84268,25.05701],[92.85038,25.06051],[92.85479,25.06452],[92.86119,25.06396],[92.86918,25.067],[92.87269,25.06448],[92.88134,25.06769],[92.88569,25.07516],[92.88856,25.07629],[92.89266,25.07466],[92.89751,25.07934],[92.91068,25.07826],[92.91721,25.07957],[92.92074,25.07696],[92.93016,25.07906],[92.94274,25.06906],[92.95184,25.06917],[92.95502,25.07678],[92.95266,25.08315],[92.95906,25.09015],[92.97084,25.08533],[92.97748,25.0857],[92.98418,25.09377],[93.01648,25.09771],[93.02228,25.10406],[93.03619,25.10501],[93.0471,25.09931],[93.04312,25.08857],[93.03906,25.08582],[93.03771,25.08221],[93.03221,25.07987],[93.03188,25.07815],[93.02111,25.0756],[93.0143,25.06189],[93.02121,25.05492],[93.02162,25.0509],[93.02937,25.04311],[93.03512,25.04085],[93.03679,25.03669],[93.04775,25.03507],[93.05318,25.03076],[93.05496,25.02515],[93.05899,25.02331],[93.06099,25.01774],[93.05802,25.01695],[93.05483,25.0108],[93.06006,25.00823],[93.06196,25.0024],[93.06537,25.00458],[93.06821,25.00347],[93.06803,25.00073],[93.17978,25.00073],[93.178,24.99857],[93.1788,24.99697],[93.18158,24.99711],[93.18488,24.99483],[93.1875,24.99841],[93.18793,24.9931],[93.18993,24.99223],[93.19255,24.99364],[93.19858,24.99139],[93.1969,24.9882],[93.2033,24.98162],[93.21279,24.98361],[93.21394,24.98812],[93.21943,24.98733],[93.22439,24.98452],[93.22736,24.98734],[93.2327,24.98257],[93.22907,24.98085],[93.23031,24.97754],[93.2336,24.97563],[93.23709,24.97784],[93.23965,24.97328],[93.24361,24.97519],[93.2448,24.97033],[93.24942,24.97256],[93.25195,24.97585],[93.25182,24.97729],[93.24934,24.97704],[93.24944,24.97934],[93.25343,24.98207],[93.25141,24.98601],[93.25704,24.99607],[93.25298,24.99734],[93.25277,24.99891],[93.25416,25.00023],[93.25863,24.99948],[93.25987,25.00113],[93.25738,25.00474],[93.25259,25.00093],[93.2505,25.00432],[93.24878,25.00299],[93.24888,24.99891],[93.24686,24.99738],[93.24439,24.99809],[93.2442,25.00326],[93.24178,25.00393],[93.24472,25.01171],[93.24767,25.0149],[93.24398,25.01592],[93.24364,25.0177],[93.25395,25.02058],[93.2525,25.02293],[93.25404,25.02547],[93.25117,25.02585],[93.25135,25.02714],[93.25379,25.02716],[93.25989,25.03497],[93.25835,25.03802],[93.25962,25.04121],[93.26219,25.04072],[93.26605,25.04384],[93.26462,25.04565],[93.26237,25.04563],[93.26375,25.04891],[93.27045,25.05077],[93.27215,25.04844],[93.27451,25.05094],[93.27731,25.04957],[93.28007,25.051],[93.27966,25.04722],[93.2827,25.04901],[93.28346,25.045],[93.28718,25.04701],[93.28897,25.04568],[93.29136,25.04864],[93.29368,25.04633],[93.2948,25.05107],[93.2988,25.05195],[93.29941,25.04935],[93.29754,25.04658],[93.29996,25.04604],[93.3021,25.05424],[93.30079,25.05586],[93.30423,25.05562],[93.30556,25.05743],[93.30259,25.06137],[93.30282,25.06436],[93.31492,25.08462],[93.32188,25.09082],[93.32754,25.0934],[93.33237,25.09352],[93.3317,25.09605],[93.33354,25.09799],[93.33246,25.10073],[93.33808,25.1099],[93.33675,25.1116],[93.34141,25.11383],[93.33933,25.11549],[93.3422,25.11989],[93.34118,25.12306],[93.34526,25.12346],[93.34172,25.12671],[93.34534,25.13034],[93.34238,25.13749],[93.34751,25.13877],[93.34518,25.15074],[93.34657,25.15708],[93.34401,25.15913],[93.34587,25.16981],[93.34981,25.1795],[93.3515,25.17966],[93.35134,25.1832],[93.35496,25.18593],[93.35412,25.18767],[93.35616,25.18896],[93.35737,25.1876],[93.35671,25.19188],[93.35999,25.19185],[93.35938,25.19531],[93.36562,25.19808],[93.3661,25.2061],[93.37072,25.20789],[93.36894,25.21097],[93.37383,25.21182],[93.37338,25.21484],[93.37671,25.21788],[93.37561,25.22014],[93.38178,25.2229],[93.38127,25.22736],[93.38465,25.23136],[93.38426,25.23352],[93.38164,25.23431],[93.38269,25.23725],[93.38096,25.23794],[93.38112,25.23963],[93.38334,25.24228],[93.3866,25.24278],[93.39259,25.24997],[93.39366,25.25474],[93.40116,25.26062],[93.40668,25.26078],[93.41594,25.26427],[93.42053,25.27746],[93.4267,25.27964],[93.42752,25.28324],[93.43078,25.28295],[93.43606,25.28782],[93.44532,25.29134],[93.45536,25.29347],[93.46316,25.30147],[93.4673,25.30166],[93.4705,25.30506],[93.46663,25.31182],[93.45343,25.32146],[93.45667,25.32986],[93.45542,25.33214],[93.45651,25.33538],[93.45205,25.33596],[93.44843,25.34064],[93.45189,25.34671],[93.45137,25.35284],[93.45347,25.35656],[93.45922,25.36083],[93.4638,25.35964],[93.46721,25.36327],[93.47253,25.37428],[93.47324,25.38521],[93.4632,25.39559],[93.45966,25.40323],[93.45933,25.40837],[93.46232,25.41785],[93.45611,25.43372],[93.45029,25.43565],[93.44295,25.44128],[93.43952,25.44101],[93.43753,25.44304],[93.43855,25.44551],[93.43639,25.44818],[93.42561,25.44832],[93.41995,25.44496],[93.41555,25.44498],[93.41041,25.44987],[93.40872,25.44829],[93.40247,25.45078],[93.40064,25.45636],[93.3973,25.46026],[93.394,25.45844],[93.39166,25.46178],[93.39034,25.46038],[93.38834,25.46349],[93.39041,25.46444],[93.38691,25.46611],[93.38682,25.46883],[93.38446,25.46916],[93.38898,25.47254],[93.3892,25.47638],[93.38661,25.47778],[93.3891,25.47843],[93.3914,25.48225],[93.38603,25.48334],[93.38459,25.48523],[93.38654,25.48742],[93.38384,25.48826],[93.38551,25.49039],[93.37738,25.49298],[93.37667,25.49753],[93.36734,25.49946],[93.3692,25.50353],[93.36433,25.50376],[93.364,25.50653],[93.36213,25.50671],[93.36158,25.51234],[93.35686,25.5137],[93.35769,25.51527],[93.35509,25.52478],[93.35266,25.5283],[93.34997,25.52868],[93.35012,25.53225],[93.34833,25.52994],[93.34508,25.53419],[93.34057,25.53495],[93.34036,25.53284],[93.33531,25.53422],[93.33639,25.53873],[93.33378,25.53959],[93.33299,25.54236],[93.33036,25.54254],[93.3243,25.53878],[93.32182,25.53313],[93.30191,25.53032],[93.29878,25.53276],[93.29944,25.5379],[93.29426,25.54427],[93.29249,25.54443],[93.28986,25.5438],[93.28659,25.53955],[93.27776,25.53591],[93.27601,25.53232],[93.27053,25.53127],[93.26281,25.54057],[93.26417,25.54242],[93.26351,25.54474],[93.25844,25.54889],[93.25135,25.54783],[93.24837,25.54916],[93.2378,25.54601],[93.23168,25.54585],[93.22728,25.54612],[93.22261,25.54888],[93.2154,25.54757],[93.21375,25.54956],[93.21058,25.54661],[93.2112,25.54316],[93.20765,25.54422],[93.20643,25.54643],[93.20825,25.54889],[93.20588,25.54966],[93.20537,25.55368],[93.20341,25.55572],[93.20035,25.55455],[93.19834,25.55557],[93.19891,25.55828],[93.19727,25.55925],[93.20022,25.5599],[93.1987,25.56428],[93.19262,25.56536],[93.19332,25.56686],[93.19075,25.57051],[93.18927,25.57042],[93.192,25.57476],[93.18897,25.57463],[93.18814,25.57696],[93.18667,25.57634],[93.18776,25.58164],[93.18563,25.58063],[93.18306,25.58191],[93.18481,25.5839],[93.17932,25.58733],[93.17661,25.59283],[93.18129,25.59298],[93.17843,25.59571],[93.18014,25.59862],[93.17577,25.60414],[93.17802,25.61108],[93.17695,25.6129],[93.17981,25.61419],[93.18086,25.61715],[93.17952,25.6195],[93.18242,25.61932],[93.18458,25.62254],[93.18861,25.62207],[93.19004,25.62481],[93.18913,25.62782],[93.19195,25.62958],[93.19196,25.63215],[93.18767,25.63185],[93.18737,25.63453],[93.18531,25.6347],[93.18454,25.63756],[93.18211,25.63837],[93.18149,25.64139],[93.18095,25.6385],[93.17821,25.6398],[93.17996,25.64125],[93.17692,25.64169],[93.17808,25.64748],[93.17559,25.64896],[93.17505,25.65181],[93.17162,25.653],[93.17241,25.65609],[93.1707,25.66183],[93.16592,25.66358],[93.16114,25.66246],[93.15723,25.66648],[93.15681,25.66496],[93.1545,25.66567],[93.15282,25.6624],[93.14877,25.66567],[93.14563,25.66488],[93.14287,25.66082],[93.14134,25.66723],[93.13598,25.67014],[93.13772,25.67517],[93.13381,25.67774],[93.13296,25.68108],[93.13406,25.6827],[93.13159,25.68643],[93.13458,25.68801],[93.13362,25.69005],[93.13643,25.69211],[93.13419,25.70567],[93.13679,25.70661],[93.13755,25.71106],[93.14063,25.71234],[93.1401,25.71604],[93.14345,25.71745],[93.14214,25.71958],[93.14872,25.73353],[93.14491,25.73679],[93.14582,25.7389],[93.14178,25.73677],[93.14134,25.74139],[93.13783,25.74468],[93.12578,25.74874],[93.12954,25.76097],[93.12644,25.76107],[93.12504,25.76305],[93.1185,25.76072],[93.11462,25.76677],[93.11039,25.76552],[93.10921,25.76949],[93.10485,25.76982],[93.10497,25.77377],[93.09882,25.77388],[93.09845,25.77715],[93.096,25.77616],[93.09503,25.76983],[93.09045,25.76949],[93.09112,25.77195],[93.08666,25.76951],[93.0857,25.77114],[93.08307,25.76862],[93.08047,25.77109],[93.08058,25.76861],[93.07526,25.76623],[93.07361,25.76941],[93.07231,25.76712],[93.06839,25.76725],[93.06777,25.77103],[93.06603,25.7712],[93.0666,25.77288],[93.0645,25.77463],[93.06596,25.77594],[93.06313,25.77681],[93.05764,25.77239],[93.05826,25.77537],[93.05582,25.77733],[93.05648,25.77898],[93.05915,25.77929],[93.05846,25.78101],[93.05519,25.78104],[93.05207,25.77871],[93.05291,25.78464],[93.03509,25.79543],[93.02508,25.79425],[93.01864,25.80129],[93.0166,25.8001],[93.01161,25.78959],[93.00325,25.78651],[92.99941,25.79359],[92.99841,25.80509]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"3","area_level":"District","area_name":"Baramulla","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.39999,34.42915],[74.39895,34.43447],[74.39581,34.43663],[74.38274,34.43729],[74.35918,34.42549],[74.34615,34.42356],[74.34796,34.41756],[74.34725,34.40952],[74.3499,34.39901],[74.35696,34.39567],[74.38015,34.38921],[74.3829,34.38293],[74.38179,34.37605],[74.38023,34.37182],[74.37338,34.36677],[74.37789,34.36229],[74.38299,34.36288],[74.38992,34.35942],[74.39034,34.35712],[74.38631,34.35183],[74.39018,34.34875],[74.38177,34.34876],[74.37947,34.3407],[74.3769,34.33818],[74.36842,34.33312],[74.354,34.32818],[74.3466,34.32341],[74.34793,34.32241],[74.34572,34.31614],[74.33474,34.31093],[74.32674,34.30931],[74.32209,34.31038],[74.32079,34.31315],[74.31024,34.31813],[74.29846,34.31451],[74.29253,34.31577],[74.28833,34.31288],[74.27008,34.30626],[74.26699,34.30842],[74.26447,34.30757],[74.25932,34.31004],[74.23505,34.30448],[74.22127,34.29747],[74.21923,34.29338],[74.21464,34.28955],[74.20889,34.2886],[74.19935,34.28322],[74.18752,34.28157],[74.18154,34.28249],[74.1778,34.27931],[74.16895,34.2788],[74.16478,34.27624],[74.15622,34.27978],[74.15226,34.27922],[74.14928,34.28157],[74.14419,34.28162],[74.13502,34.27388],[74.12673,34.27035],[74.11958,34.27128],[74.11233,34.2694],[74.10519,34.2713],[74.10096,34.27037],[74.09827,34.26723],[74.09392,34.2682],[74.08216,34.26558],[74.07614,34.26019],[74.06359,34.26301],[74.04833,34.25821],[74.04206,34.25869],[74.03858,34.25667],[74.03572,34.25816],[74.03602,34.24951],[74.0273,34.24464],[74.00957,34.24829],[73.99562,34.25755],[73.98965,34.2597],[73.98329,34.258],[74.00011,34.23399],[74.00432,34.23204],[74.00703,34.22708],[74.00713,34.21571],[74.00011,34.21347],[73.99788,34.20835],[73.99856,34.20167],[74.00517,34.19374],[74.00423,34.18942],[73.99255,34.17551],[73.96031,34.15107],[73.93152,34.1415],[73.92876,34.13799],[73.93097,34.132],[73.92761,34.1281],[73.92677,34.12146],[73.92838,34.11512],[73.92667,34.10352],[73.92158,34.10331],[73.91883,34.1057],[73.90526,34.10695],[73.90361,34.10139],[73.90437,34.09687],[73.90003,34.07974],[73.89171,34.07234],[73.89235,34.07063],[73.89047,34.06869],[73.89057,34.06306],[73.89527,34.05985],[73.89655,34.0543],[73.90111,34.04756],[73.9081,34.04235],[73.91808,34.04003],[73.92284,34.03424],[73.94105,34.01932],[73.95258,34.01534],[73.9588,34.01483],[73.96652,34.01097],[73.97786,34.01456],[73.98721,34.01242],[73.99845,34.01923],[74.00421,34.01672],[74.01326,34.00851],[74.01665,34.00317],[74.02463,34.0],[74.02881,34.01192],[74.04152,34.01861],[74.04587,34.01855],[74.05279,34.01343],[74.05514,34.01357],[74.06795,34.02183],[74.08253,34.01764],[74.09179,34.0175],[74.09576,34.02015],[74.10094,34.03296],[74.10543,34.03866],[74.11227,34.03503],[74.1205,34.03659],[74.12119,34.04805],[74.15051,34.03857],[74.15148,34.03622],[74.15694,34.03359],[74.16793,34.03301],[74.17504,34.02674],[74.18016,34.02596],[74.18562,34.02574],[74.19814,34.03421],[74.21183,34.03456],[74.22996,34.02643],[74.24464,34.0245],[74.25118,34.01927],[74.2567,33.9993],[74.26321,33.99875],[74.26431,33.99541],[74.2673,33.99307],[74.26745,33.9904],[74.27045,33.98974],[74.27157,33.98652],[74.27608,33.98647],[74.27794,33.99055],[74.28354,33.9933],[74.30207,33.99552],[74.30492,33.98615],[74.31262,33.97844],[74.31558,33.97779],[74.31703,33.97488],[74.31314,33.97346],[74.3122,33.97108],[74.31371,33.96744],[74.31845,33.96339],[74.31971,33.95863],[74.31655,33.95701],[74.32949,33.95608],[74.33261,33.95232],[74.35357,33.95665],[74.3731,33.94796],[74.37704,33.9494],[74.38105,33.94696],[74.38737,33.94594],[74.39089,33.93647],[74.39504,33.93377],[74.39609,33.92699],[74.40524,33.9206],[74.41007,33.91306],[74.40939,33.91008],[74.41132,33.90794],[74.4192,33.90841],[74.4223,33.91085],[74.42537,33.91089],[74.42599,33.91295],[74.42391,33.91624],[74.44596,33.92389],[74.45992,33.93565],[74.47358,33.94455],[74.47728,33.95184],[74.47444,33.95573],[74.47409,33.96223],[74.46969,33.96871],[74.47279,33.9708],[74.47493,33.97783],[74.47333,33.98406],[74.46895,33.98716],[74.46643,33.99131],[74.46888,33.99886],[74.47768,34.00745],[74.48324,34.01578],[74.49498,34.02364],[74.49674,34.0292],[74.5,34.03199],[74.49309,34.03403],[74.48493,34.03357],[74.48726,34.04708],[74.50106,34.04593],[74.51655,34.04257],[74.51947,34.04056],[74.52454,34.04139],[74.53326,34.0382],[74.53902,34.04628],[74.54235,34.05657],[74.54934,34.06143],[74.5583,34.05945],[74.56335,34.06631],[74.58228,34.07884],[74.58803,34.08568],[74.60759,34.09855],[74.60655,34.10119],[74.60767,34.10331],[74.61161,34.10603],[74.62122,34.10336],[74.64504,34.11306],[74.65137,34.11896],[74.65936,34.11649],[74.67471,34.12868],[74.67563,34.13219],[74.69275,34.15251],[74.70235,34.15545],[74.70223,34.15708],[74.69688,34.16502],[74.69485,34.17283],[74.68509,34.17513],[74.68167,34.1779],[74.67955,34.17158],[74.67648,34.1687],[74.65291,34.16438],[74.64181,34.15935],[74.63859,34.15952],[74.63653,34.16068],[74.63713,34.1736],[74.63558,34.17938],[74.62119,34.17505],[74.60995,34.17532],[74.5987,34.1771],[74.58421,34.18497],[74.57242,34.18738],[74.57507,34.19019],[74.57873,34.20075],[74.58039,34.21557],[74.57954,34.22466],[74.55465,34.22997],[74.54715,34.23839],[74.53863,34.24375],[74.53965,34.24742],[74.53213,34.2569],[74.52933,34.26377],[74.5268,34.26512],[74.53112,34.28039],[74.52922,34.28557],[74.52654,34.28764],[74.52523,34.29581],[74.51767,34.28991],[74.51046,34.28822],[74.51583,34.29338],[74.52069,34.30331],[74.52091,34.31192],[74.51888,34.32172],[74.52135,34.32949],[74.52657,34.33328],[74.53196,34.35627],[74.52391,34.36141],[74.52219,34.3672],[74.51754,34.36953],[74.51536,34.374],[74.51488,34.3799],[74.51215,34.38264],[74.51186,34.38604],[74.50926,34.38792],[74.50873,34.39333],[74.51089,34.39401],[74.50978,34.40023],[74.50545,34.4079],[74.49828,34.41527],[74.4913,34.41938],[74.47945,34.43264],[74.46787,34.43052],[74.45458,34.417],[74.42057,34.41452],[74.4075,34.41557],[74.40083,34.42458],[74.39999,34.42915]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"30","area_level":"District","area_name":"Fatehgarh Sahib","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.33281,30.87141],[76.32968,30.87388],[76.32794,30.87879],[76.30375,30.87261],[76.29832,30.86987],[76.29883,30.86424],[76.31109,30.8423],[76.30087,30.83693],[76.29403,30.83587],[76.29022,30.83337],[76.29143,30.83176],[76.28128,30.83025],[76.28015,30.82018],[76.28906,30.80814],[76.2756,30.80097],[76.26913,30.79919],[76.26778,30.79668],[76.26917,30.79303],[76.26261,30.78933],[76.26187,30.7867],[76.27236,30.77574],[76.28973,30.78241],[76.30076,30.76704],[76.30493,30.76799],[76.31095,30.7562],[76.30136,30.75434],[76.30058,30.7527],[76.28855,30.74716],[76.28094,30.74628],[76.28398,30.73794],[76.27572,30.73406],[76.27798,30.72823],[76.29113,30.71395],[76.29781,30.71713],[76.30591,30.70417],[76.30802,30.70539],[76.30958,30.70332],[76.31602,30.70511],[76.31946,30.7034],[76.32334,30.69327],[76.31981,30.68792],[76.31218,30.68736],[76.30329,30.6784],[76.28131,30.68153],[76.27505,30.67551],[76.27165,30.67848],[76.2662,30.67543],[76.26401,30.67731],[76.26174,30.676],[76.25535,30.68076],[76.25315,30.67922],[76.24307,30.67954],[76.23727,30.68294],[76.23598,30.68991],[76.23135,30.68875],[76.23009,30.68997],[76.22378,30.6881],[76.21851,30.6845],[76.21807,30.67895],[76.2056,30.67411],[76.19821,30.67514],[76.18796,30.66766],[76.18253,30.67152],[76.18072,30.67935],[76.17368,30.67923],[76.17115,30.67549],[76.17161,30.66679],[76.16916,30.66183],[76.15204,30.65508],[76.15281,30.63979],[76.145,30.63767],[76.1278,30.62951],[76.12767,30.62801],[76.12521,30.62742],[76.12793,30.62277],[76.12382,30.62153],[76.11649,30.6149],[76.12525,30.60278],[76.12067,30.60071],[76.12548,30.59696],[76.11721,30.59303],[76.11021,30.58736],[76.11149,30.58288],[76.11458,30.57977],[76.10804,30.57604],[76.10728,30.56515],[76.10888,30.56478],[76.10774,30.56208],[76.09801,30.56045],[76.09646,30.56402],[76.08965,30.56798],[76.08139,30.5578],[76.08117,30.55224],[76.07936,30.54919],[76.0758,30.54653],[76.0865,30.5376],[76.09186,30.53982],[76.09557,30.53498],[76.10794,30.5293],[76.11995,30.54538],[76.12365,30.54314],[76.13219,30.52718],[76.13627,30.52353],[76.14543,30.53261],[76.14369,30.53469],[76.15427,30.5444],[76.16568,30.53512],[76.16867,30.54311],[76.17311,30.54709],[76.18092,30.54411],[76.18313,30.54138],[76.18993,30.54894],[76.20138,30.55115],[76.20332,30.55638],[76.20531,30.55413],[76.20738,30.55463],[76.21211,30.55853],[76.21538,30.56434],[76.2199,30.56462],[76.22938,30.57008],[76.23171,30.56753],[76.23535,30.56809],[76.23792,30.5666],[76.23987,30.5568],[76.2364,30.55575],[76.23727,30.55021],[76.24447,30.54971],[76.24711,30.55146],[76.24563,30.55416],[76.24896,30.55871],[76.25645,30.56187],[76.25506,30.56662],[76.25629,30.56721],[76.26216,30.56183],[76.26851,30.55893],[76.27516,30.55978],[76.27604,30.55454],[76.27481,30.55299],[76.28363,30.54492],[76.28609,30.54671],[76.28828,30.5446],[76.29393,30.54772],[76.30012,30.54553],[76.30887,30.54545],[76.3144,30.54787],[76.32835,30.54024],[76.32321,30.52871],[76.33079,30.51289],[76.33293,30.50343],[76.32811,30.49918],[76.33262,30.49602],[76.3297,30.49369],[76.33506,30.49475],[76.33606,30.49236],[76.33374,30.488],[76.3454,30.47987],[76.34345,30.47516],[76.34473,30.47519],[76.35208,30.46057],[76.36225,30.46621],[76.3731,30.4691],[76.37302,30.47286],[76.379,30.47017],[76.38242,30.47175],[76.38454,30.46907],[76.38416,30.46622],[76.38862,30.46094],[76.39603,30.45612],[76.39713,30.45197],[76.40109,30.45206],[76.40736,30.44826],[76.41382,30.45568],[76.41757,30.46448],[76.43316,30.45544],[76.44235,30.45482],[76.44958,30.44893],[76.45976,30.45973],[76.46937,30.45479],[76.47139,30.45718],[76.47001,30.45743],[76.47025,30.45995],[76.46487,30.46675],[76.47039,30.47414],[76.47658,30.47058],[76.47568,30.4694],[76.48744,30.46474],[76.4957,30.46562],[76.49889,30.46334],[76.5028,30.46963],[76.50145,30.47304],[76.50248,30.47877],[76.49511,30.48817],[76.49803,30.49325],[76.49125,30.49995],[76.49658,30.50787],[76.49253,30.51301],[76.49098,30.51931],[76.50258,30.52733],[76.50055,30.53228],[76.50296,30.53446],[76.50012,30.53737],[76.50084,30.54059],[76.49919,30.54537],[76.50062,30.55045],[76.50681,30.55461],[76.50216,30.56095],[76.5041,30.5639],[76.50994,30.56719],[76.51839,30.56886],[76.52208,30.56351],[76.52991,30.56265],[76.53832,30.55757],[76.55042,30.56148],[76.56306,30.5679],[76.56507,30.5657],[76.56872,30.56848],[76.57154,30.56507],[76.57461,30.56647],[76.57871,30.56939],[76.5795,30.57258],[76.58265,30.57252],[76.58789,30.57861],[76.5859,30.57978],[76.59567,30.59441],[76.59839,30.59646],[76.604,30.59189],[76.6074,30.59918],[76.61133,30.60276],[76.61358,30.60883],[76.62288,30.61354],[76.62904,30.61361],[76.63216,30.61561],[76.63389,30.6191],[76.63017,30.62338],[76.62894,30.62775],[76.62883,30.63927],[76.62588,30.64489],[76.61991,30.64187],[76.60344,30.65506],[76.59846,30.65213],[76.59364,30.65744],[76.59524,30.66141],[76.59066,30.66327],[76.5875,30.66716],[76.57605,30.66526],[76.57076,30.67149],[76.56978,30.67416],[76.5711,30.67549],[76.56611,30.68628],[76.56227,30.68899],[76.55407,30.69044],[76.55409,30.6989],[76.55596,30.7014],[76.55131,30.70866],[76.5467,30.71234],[76.53464,30.70991],[76.5315,30.71879],[76.53137,30.72454],[76.52927,30.72447],[76.52153,30.73305],[76.53183,30.74093],[76.52163,30.75772],[76.50649,30.74934],[76.49508,30.74619],[76.49183,30.74622],[76.48332,30.75066],[76.46967,30.74552],[76.46366,30.75466],[76.4595,30.75001],[76.4564,30.75479],[76.45482,30.75395],[76.44423,30.75947],[76.44421,30.7836],[76.44162,30.78341],[76.4412,30.79034],[76.44286,30.79699],[76.43407,30.79917],[76.43448,30.80555],[76.43332,30.80658],[76.4355,30.81049],[76.43484,30.81204],[76.43193,30.81225],[76.43264,30.8192],[76.42448,30.82284],[76.4226,30.8208],[76.41711,30.81953],[76.40846,30.81957],[76.40352,30.82739],[76.40292,30.83137],[76.40832,30.83894],[76.40921,30.83813],[76.41121,30.83992],[76.40686,30.84702],[76.39443,30.84507],[76.38488,30.84899],[76.37995,30.85313],[76.38015,30.85739],[76.38208,30.86027],[76.36951,30.86595],[76.36786,30.86801],[76.36801,30.87217],[76.3569,30.86912],[76.3574,30.86613],[76.34864,30.86548],[76.34857,30.87377],[76.33749,30.87504],[76.33744,30.87275],[76.33393,30.87105],[76.33477,30.87007],[76.33281,30.87141]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"300","area_level":"District","area_name":"Sivasagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.74495,27.24543],[94.74072,27.24788],[94.74021,27.25359],[94.74178,27.25885],[94.74963,27.26925],[94.74708,27.27302],[94.73588,27.2755],[94.72724,27.27258],[94.71787,27.26324],[94.71654,27.25959],[94.72246,27.24806],[94.72058,27.24567],[94.71324,27.24682],[94.71099,27.2486],[94.70401,27.26671],[94.70169,27.26975],[94.6948,27.27215],[94.6921,27.27081],[94.68513,27.25],[94.6783,27.24334],[94.65351,27.24705],[94.6419,27.24674],[94.63579,27.23071],[94.62985,27.22382],[94.62469,27.21083],[94.62185,27.20303],[94.62174,27.19722],[94.61567,27.18584],[94.61478,27.17671],[94.60947,27.17049],[94.60159,27.15499],[94.58241,27.13674],[94.57878,27.12692],[94.57291,27.11751],[94.56268,27.10476],[94.55295,27.09663],[94.54766,27.0818],[94.54432,27.077],[94.53924,27.07244],[94.53286,27.06978],[94.51276,27.04823],[94.50167,27.03998],[94.47534,27.0311],[94.46632,27.01881],[94.46018,26.99544],[94.45257,26.99065],[94.44321,26.98743],[94.42958,26.97433],[94.39873,26.95993],[94.39529,26.95493],[94.40572,26.93305],[94.40716,26.93773],[94.41127,26.94008],[94.41482,26.93992],[94.41787,26.94331],[94.4197,26.93997],[94.42206,26.94188],[94.42753,26.93702],[94.43291,26.93961],[94.43815,26.93539],[94.44954,26.93928],[94.4537,26.93843],[94.45884,26.9422],[94.46231,26.94211],[94.46436,26.94123],[94.46872,26.93431],[94.47379,26.93535],[94.47368,26.93251],[94.47771,26.92852],[94.4792,26.92417],[94.4787,26.91705],[94.48178,26.91327],[94.47629,26.90991],[94.48198,26.90531],[94.47805,26.89633],[94.47461,26.89444],[94.47416,26.89262],[94.47912,26.88835],[94.4804,26.8842],[94.48441,26.88443],[94.48844,26.88065],[94.49268,26.88229],[94.49195,26.87463],[94.49652,26.86686],[94.49369,26.86417],[94.49502,26.86043],[94.48921,26.85862],[94.48847,26.85484],[94.49132,26.85191],[94.49086,26.84845],[94.49306,26.84534],[94.48908,26.84247],[94.48993,26.83956],[94.48573,26.83099],[94.48753,26.82887],[94.49656,26.82514],[94.50367,26.82616],[94.50396,26.82171],[94.50967,26.81794],[94.50938,26.81282],[94.51707,26.81234],[94.5177,26.802],[94.52145,26.80697],[94.52248,26.80273],[94.52585,26.79989],[94.52482,26.79822],[94.51531,26.79508],[94.51624,26.79397],[94.51932,26.79484],[94.51939,26.7906],[94.52425,26.78889],[94.52147,26.78478],[94.51682,26.78331],[94.51643,26.77842],[94.51191,26.77501],[94.51221,26.772],[94.52252,26.77036],[94.52277,26.76913],[94.5179,26.76699],[94.51786,26.76493],[94.5224,26.76649],[94.5261,26.76482],[94.52875,26.75809],[94.53458,26.75458],[94.53662,26.75511],[94.53529,26.75756],[94.53605,26.76026],[94.53806,26.76047],[94.54045,26.75651],[94.54583,26.75473],[94.54958,26.74887],[94.55634,26.75661],[94.56339,26.75054],[94.57264,26.75236],[94.57064,26.74336],[94.5796,26.73823],[94.58005,26.7344],[94.58456,26.73374],[94.58419,26.73221],[94.5798,26.73072],[94.58462,26.7246],[94.59538,26.72595],[94.59341,26.73089],[94.59563,26.73376],[94.59965,26.7349],[94.60623,26.73392],[94.60769,26.73721],[94.60924,26.73719],[94.61019,26.73531],[94.60806,26.72883],[94.61582,26.72656],[94.6208,26.72279],[94.61913,26.71199],[94.62462,26.71542],[94.63582,26.71709],[94.64302,26.7207],[94.65302,26.71875],[94.69235,26.73193],[94.70717,26.74631],[94.73689,26.76372],[94.74068,26.77184],[94.74018,26.77598],[94.74835,26.7727],[94.75182,26.76619],[94.75833,26.76601],[94.76059,26.77541],[94.7668,26.77756],[94.7674,26.78534],[94.77022,26.78904],[94.77374,26.79061],[94.77566,26.78976],[94.78873,26.79556],[94.79117,26.79975],[94.79978,26.79978],[94.80272,26.80132],[94.80319,26.80617],[94.79578,26.81008],[94.79525,26.81442],[94.80379,26.81367],[94.80622,26.81513],[94.80646,26.81842],[94.81446,26.81954],[94.81317,26.83365],[94.81562,26.8373],[94.81945,26.83759],[94.82112,26.8417],[94.81749,26.84751],[94.8242,26.85424],[94.82866,26.85532],[94.83454,26.86035],[94.83647,26.86877],[94.8432,26.86851],[94.85012,26.87459],[94.85107,26.8811],[94.85784,26.88848],[94.85845,26.89221],[94.86523,26.90398],[94.86601,26.90873],[94.87359,26.91752],[94.89064,26.92954],[94.89782,26.93125],[94.90245,26.93467],[94.91437,26.93677],[94.91672,26.94125],[94.92393,26.9465],[94.92396,26.94877],[94.93249,26.95646],[94.9418,26.95958],[94.94036,26.96845],[94.93691,26.97264],[94.93983,26.97565],[94.93954,26.98067],[94.93228,26.98366],[94.88962,26.95656],[94.85997,26.94088],[94.84802,26.92936],[94.81965,26.92456],[94.79048,26.9229],[94.8007,26.94561],[94.81365,26.95953],[94.82651,26.98402],[94.8312,26.99012],[94.85444,27.00798],[94.89873,27.02471],[94.90654,27.02951],[94.90842,27.03302],[94.90517,27.03751],[94.8938,27.03875],[94.89455,27.04539],[94.88984,27.04688],[94.88443,27.04435],[94.88074,27.03462],[94.86985,27.03836],[94.8671,27.03525],[94.86688,27.02942],[94.85844,27.03039],[94.84755,27.02688],[94.84462,27.02392],[94.84284,27.01828],[94.84127,27.01763],[94.83859,27.02015],[94.83965,27.02666],[94.83759,27.02538],[94.8347,27.01785],[94.82983,27.0165],[94.8269,27.01879],[94.82858,27.03488],[94.82491,27.05727],[94.8368,27.09201],[94.83355,27.09375],[94.832,27.09138],[94.8318,27.09414],[94.82882,27.09357],[94.8241,27.09928],[94.81774,27.09769],[94.81996,27.10004],[94.81611,27.09939],[94.81542,27.1017],[94.81405,27.09835],[94.8123,27.09981],[94.80836,27.09685],[94.80908,27.10358],[94.81753,27.1147],[94.8118,27.11727],[94.79975,27.11682],[94.79938,27.1195],[94.78803,27.11995],[94.78772,27.12489],[94.78173,27.12447],[94.7606,27.12997],[94.76196,27.13468],[94.75345,27.14059],[94.7532,27.14397],[94.75577,27.14388],[94.75808,27.14723],[94.75494,27.14921],[94.75525,27.15165],[94.75713,27.14982],[94.75819,27.15229],[94.76021,27.15172],[94.76124,27.15688],[94.76808,27.1595],[94.76721,27.16169],[94.76868,27.16252],[94.76736,27.16371],[94.77232,27.16606],[94.77189,27.16839],[94.77858,27.17125],[94.77494,27.17491],[94.77245,27.17418],[94.77374,27.18103],[94.77022,27.18111],[94.77136,27.18335],[94.76837,27.18497],[94.77154,27.18488],[94.77273,27.18708],[94.77472,27.18484],[94.77352,27.18735],[94.77512,27.18829],[94.77733,27.18633],[94.77928,27.19044],[94.7746,27.19366],[94.77648,27.19577],[94.77712,27.19317],[94.77958,27.19374],[94.77888,27.19546],[94.78095,27.19971],[94.77945,27.19803],[94.77807,27.20027],[94.77561,27.20023],[94.77555,27.21302],[94.77378,27.21372],[94.77314,27.21733],[94.76884,27.21669],[94.76608,27.22046],[94.77404,27.23602],[94.76994,27.24339],[94.76006,27.24638],[94.74495,27.24543]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"301","area_level":"District","area_name":"Sonitpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.76322,27.02731],[92.75315,27.02278],[92.73299,27.02275],[92.72292,27.01821],[92.71283,27.02271],[92.69771,27.02268],[92.69265,27.02718],[92.68761,27.02717],[92.67752,27.03166],[92.67248,27.03165],[92.66745,27.02712],[92.6448,26.98666],[92.58334,26.95954],[92.55419,26.95744],[92.49686,26.96337],[92.44747,26.95881],[92.42581,26.94104],[92.41201,26.94276],[92.39833,26.92469],[92.3671,26.92868],[92.3648,26.93212],[92.35759,26.92588],[92.35292,26.91501],[92.34961,26.91185],[92.3463,26.89038],[92.34264,26.88266],[92.34403,26.8731],[92.3427,26.87138],[92.34414,26.86742],[92.34275,26.86465],[92.34508,26.86203],[92.3437,26.85831],[92.34114,26.85664],[92.34286,26.85184],[92.33985,26.85105],[92.33979,26.84694],[92.33547,26.8458],[92.33288,26.84205],[92.33319,26.83542],[92.33148,26.83127],[92.33575,26.82868],[92.33427,26.82505],[92.33623,26.82254],[92.33088,26.81993],[92.33409,26.81525],[92.32785,26.81268],[92.33013,26.8105],[92.33304,26.81169],[92.3349,26.8104],[92.33457,26.80829],[92.32925,26.80649],[92.32751,26.80309],[92.331,26.80038],[92.33139,26.79692],[92.33451,26.79369],[92.33185,26.78971],[92.33882,26.78686],[92.33421,26.78284],[92.33602,26.77801],[92.33474,26.77501],[92.34027,26.77128],[92.33741,26.77013],[92.32864,26.77169],[92.33167,26.76488],[92.335,26.76681],[92.3364,26.76589],[92.33383,26.76135],[92.32799,26.75695],[92.32986,26.75334],[92.33055,26.74547],[92.33413,26.74216],[92.32347,26.73917],[92.33273,26.73685],[92.33734,26.73317],[92.33133,26.72719],[92.33191,26.7252],[92.33678,26.72673],[92.33991,26.72968],[92.34187,26.72925],[92.34187,26.726],[92.33988,26.72371],[92.33225,26.7234],[92.33177,26.72194],[92.33822,26.71748],[92.33468,26.71406],[92.33505,26.71234],[92.34316,26.7133],[92.3387,26.7095],[92.33867,26.70778],[92.34453,26.70669],[92.34627,26.70482],[92.34412,26.70167],[92.33487,26.70092],[92.33237,26.69449],[92.33878,26.69101],[92.33333,26.6864],[92.33315,26.68427],[92.33643,26.68176],[92.33473,26.67921],[92.33525,26.67436],[92.33282,26.67237],[92.33144,26.66278],[92.3488,26.6642],[92.35041,26.68209],[92.35293,26.68684],[92.34613,26.6901],[92.34445,26.69281],[92.3456,26.69349],[92.34923,26.6911],[92.35071,26.6986],[92.36402,26.69821],[92.36652,26.67498],[92.36297,26.66078],[92.36478,26.65633],[92.36261,26.65113],[92.36302,26.64321],[92.36881,26.64739],[92.37574,26.64851],[92.37863,26.64735],[92.37993,26.64283],[92.38827,26.6487],[92.39006,26.64185],[92.40029,26.64207],[92.40178,26.63586],[92.39531,26.62707],[92.37574,26.6294],[92.37577,26.61367],[92.35738,26.61189],[92.35789,26.61056],[92.35518,26.6075],[92.35371,26.6025],[92.35698,26.59803],[92.36391,26.59526],[92.36469,26.58918],[92.36245,26.58285],[92.35372,26.57732],[92.35218,26.57006],[92.36413,26.56786],[92.36609,26.56623],[92.3609,26.5587],[92.36575,26.56063],[92.36758,26.55908],[92.36862,26.55078],[92.37503,26.54544],[92.3807,26.52753],[92.37382,26.5281],[92.36699,26.53204],[92.36092,26.53154],[92.35419,26.53486],[92.35224,26.53056],[92.34742,26.52629],[92.3314,26.51591],[92.3386,26.51175],[92.34415,26.50471],[92.34793,26.5078],[92.35214,26.50548],[92.36076,26.50548],[92.38288,26.5165],[92.38834,26.51329],[92.39269,26.51293],[92.43654,26.5203],[92.44206,26.51976],[92.45196,26.51514],[92.45404,26.50667],[92.45807,26.49953],[92.46745,26.49628],[92.47791,26.49578],[92.48436,26.49729],[92.49284,26.50203],[92.52259,26.5081],[92.54855,26.50554],[92.56229,26.50665],[92.57138,26.50066],[92.57583,26.49971],[92.58439,26.50203],[92.59069,26.50126],[92.59056,26.50317],[92.58802,26.505],[92.58881,26.50597],[92.60383,26.50886],[92.61084,26.51239],[92.6308,26.51782],[92.65141,26.51741],[92.66302,26.52236],[92.67684,26.51158],[92.68251,26.50963],[92.68866,26.51001],[92.69915,26.5203],[92.70657,26.53046],[92.72158,26.53636],[92.72604,26.53263],[92.72509,26.52313],[92.72876,26.51783],[92.73409,26.51518],[92.7417,26.51437],[92.74595,26.51121],[92.75086,26.51141],[92.75706,26.51493],[92.75641,26.52489],[92.76457,26.53274],[92.76692,26.54685],[92.77145,26.55585],[92.78544,26.55548],[92.79467,26.55706],[92.81244,26.56569],[92.82875,26.57818],[92.84204,26.58442],[92.85543,26.58505],[92.86918,26.58169],[92.87716,26.58491],[92.89283,26.59573],[92.9094,26.59411],[92.91695,26.59496],[92.92565,26.60325],[92.93172,26.61335],[92.94051,26.61859],[92.9512,26.6204],[92.95487,26.6184],[92.97404,26.61826],[92.97068,26.64596],[92.9637,26.64409],[92.95735,26.64827],[92.94888,26.65045],[92.96968,26.65538],[92.96915,26.6586],[92.96683,26.65873],[92.9681,26.67475],[92.9638,26.68701],[92.96548,26.68754],[92.96357,26.69028],[92.95991,26.69034],[92.96025,26.69389],[92.96594,26.69902],[92.97191,26.70029],[92.97193,26.70171],[92.96857,26.70279],[92.9688,26.70457],[92.97909,26.70768],[92.98292,26.71298],[92.97699,26.72528],[92.98247,26.72914],[92.98219,26.73097],[92.97826,26.73334],[92.98003,26.73987],[92.97687,26.74106],[92.96895,26.73792],[92.96615,26.74475],[92.96933,26.75347],[92.97623,26.75275],[92.97814,26.75465],[92.97494,26.76225],[92.9682,26.76023],[92.96619,26.76147],[92.96684,26.76413],[92.97302,26.76934],[92.97218,26.77527],[92.97409,26.78074],[92.97274,26.78426],[92.97035,26.78519],[92.97394,26.78734],[92.97277,26.79171],[92.96436,26.79274],[92.96626,26.79844],[92.95784,26.79429],[92.95693,26.79935],[92.95107,26.80078],[92.9489,26.80394],[92.94281,26.80598],[92.94699,26.82078],[92.93922,26.82234],[92.94022,26.82678],[92.94784,26.82535],[92.95148,26.82756],[92.94865,26.83038],[92.94619,26.83735],[92.94784,26.84371],[92.94603,26.84977],[92.95701,26.85624],[92.95512,26.86911],[92.95927,26.87706],[92.9035,26.87876],[92.90617,26.88101],[92.9161,26.88187],[92.91909,26.88516],[92.93966,26.89377],[92.95141,26.90607],[92.95762,26.90923],[92.95926,26.9147],[92.96867,26.92442],[92.97807,26.92982],[92.98286,26.93552],[92.91715,26.96293],[92.91553,26.97392],[92.91841,26.98231],[92.88661,26.99975],[92.85727,27.00164],[92.83886,27.00485],[92.82374,27.00934],[92.79348,27.02285],[92.77835,27.02282],[92.76322,27.02731]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"302","area_level":"District","area_name":"Tinsukia","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.96986,27.95965],[95.97129,27.96272],[95.82388,27.97148],[95.60696,27.95487],[95.59458,27.94753],[95.58611,27.93672],[95.57688,27.93965],[95.57193,27.93852],[95.5661,27.93247],[95.56354,27.91926],[95.55383,27.91373],[95.54467,27.91084],[95.54219,27.90627],[95.54466,27.90113],[95.54304,27.89849],[95.53947,27.89642],[95.53404,27.89814],[95.52616,27.89062],[95.52227,27.88296],[95.51458,27.87946],[95.51519,27.85948],[95.49319,27.85828],[95.48801,27.85386],[95.48781,27.84484],[95.48253,27.83591],[95.47218,27.82708],[95.4669,27.81815],[95.45138,27.80489],[95.44114,27.80056],[95.43607,27.80065],[95.42055,27.78739],[95.41528,27.77846],[95.40494,27.76961],[95.40474,27.76059],[95.39566,27.75067],[95.3981,27.73646],[95.39158,27.72689],[95.38298,27.72447],[95.36694,27.71368],[95.36095,27.70741],[95.34657,27.70134],[95.30529,27.6992],[95.29809,27.69714],[95.28961,27.6978],[95.28252,27.69527],[95.27371,27.68932],[95.26974,27.68142],[95.27653,27.67836],[95.28913,27.6638],[95.30793,27.61546],[95.30874,27.60967],[95.31316,27.60008],[95.31671,27.59643],[95.31647,27.59224],[95.31838,27.58756],[95.3046,27.58205],[95.30021,27.58492],[95.29917,27.58323],[95.30028,27.57994],[95.29628,27.57974],[95.29407,27.57557],[95.29004,27.57686],[95.28688,27.57275],[95.28778,27.56982],[95.28473,27.56773],[95.27699,27.57006],[95.27494,27.57405],[95.27321,27.57445],[95.27403,27.57148],[95.27243,27.56592],[95.27855,27.55858],[95.28247,27.54699],[95.27486,27.55057],[95.2653,27.54426],[95.26464,27.54106],[95.26661,27.53797],[95.2646,27.53211],[95.27214,27.52694],[95.26501,27.52249],[95.26636,27.50922],[95.22902,27.49886],[95.22493,27.47029],[95.21715,27.45945],[95.21978,27.45475],[95.22039,27.44262],[95.22942,27.43731],[95.25174,27.4343],[95.24504,27.42585],[95.24364,27.41791],[95.24885,27.40424],[95.25245,27.40542],[95.2517,27.40382],[95.25354,27.40338],[95.25302,27.40509],[95.25453,27.40624],[95.25314,27.40769],[95.25596,27.40681],[95.25678,27.4092],[95.25849,27.40896],[95.25736,27.40716],[95.26398,27.40591],[95.26758,27.40681],[95.26632,27.40788],[95.26803,27.40832],[95.26752,27.41034],[95.26906,27.40955],[95.27153,27.41205],[95.2738,27.41122],[95.27591,27.41261],[95.27679,27.40904],[95.2828,27.40929],[95.28355,27.41134],[95.28959,27.41093],[95.28935,27.41279],[95.29532,27.41526],[95.29616,27.40163],[95.30496,27.39697],[95.30447,27.39344],[95.3093,27.38926],[95.31472,27.38946],[95.31982,27.38744],[95.32367,27.3907],[95.33036,27.38892],[95.34837,27.39398],[95.3518,27.38709],[95.35705,27.38379],[95.36265,27.38271],[95.37251,27.38391],[95.37574,27.38834],[95.37969,27.38891],[95.38153,27.38709],[95.38578,27.39082],[95.39005,27.39116],[95.40859,27.38592],[95.41128,27.38718],[95.42888,27.37481],[95.43516,27.36679],[95.4393,27.36437],[95.44683,27.36668],[95.44835,27.37174],[95.45401,27.37503],[95.47385,27.36737],[95.4671,27.36447],[95.46933,27.3483],[95.46567,27.34278],[95.45835,27.34612],[95.4483,27.33547],[95.45947,27.32977],[95.45929,27.3254],[95.46493,27.32234],[95.46746,27.31696],[95.47529,27.32135],[95.48069,27.32096],[95.47781,27.31718],[95.44589,27.29453],[95.45126,27.28813],[95.45616,27.28715],[95.45427,27.28174],[95.4605,27.27057],[95.45422,27.26546],[95.45108,27.26458],[95.44869,27.26602],[95.44068,27.2606],[95.43982,27.25513],[95.44642,27.24838],[95.44793,27.24416],[95.44758,27.2355],[95.45102,27.2314],[95.45363,27.23154],[95.45673,27.23971],[95.45348,27.24874],[95.46607,27.26336],[95.47106,27.26273],[95.4696,27.25515],[95.4707,27.25314],[95.48231,27.25241],[95.48232,27.24415],[95.4843,27.24127],[95.49209,27.24554],[95.49963,27.24618],[95.50379,27.24853],[95.50881,27.26187],[95.51147,27.26191],[95.51504,27.25794],[95.5182,27.25756],[95.52551,27.26377],[95.52789,27.26308],[95.53012,27.26449],[95.52982,27.26182],[95.53162,27.26105],[95.53452,27.26459],[95.53515,27.26156],[95.53711,27.2625],[95.54154,27.25914],[95.54512,27.25999],[95.54824,27.25761],[95.54823,27.25394],[95.55195,27.25315],[95.55099,27.25045],[95.55354,27.24886],[95.55808,27.24898],[95.56431,27.24467],[95.57425,27.24396],[95.5752,27.23978],[95.57727,27.23807],[95.57456,27.23436],[95.57826,27.23207],[95.58046,27.22781],[95.58298,27.22851],[95.5851,27.22444],[95.58757,27.22294],[95.59931,27.22295],[95.61903,27.23248],[95.63234,27.22968],[95.67603,27.24696],[95.68153,27.25174],[95.69236,27.25321],[95.70151,27.24857],[95.70788,27.25006],[95.71198,27.25284],[95.71378,27.25024],[95.72021,27.24948],[95.72713,27.25965],[95.73469,27.26039],[95.73618,27.26326],[95.74211,27.26666],[95.7477,27.26575],[95.75686,27.26864],[95.76518,27.26726],[95.77525,27.27041],[95.77958,27.26975],[95.78059,27.27246],[95.78818,27.27672],[95.7879,27.27865],[95.79522,27.28253],[95.79954,27.28234],[95.80089,27.28427],[95.80262,27.28294],[95.79945,27.27655],[95.80553,27.2758],[95.80516,27.27295],[95.81538,27.27854],[95.82332,27.27887],[95.8505,27.28659],[95.85931,27.28722],[95.85382,27.2792],[95.85643,27.27106],[95.86383,27.26644],[95.86937,27.26002],[95.8765,27.25964],[95.88132,27.25591],[95.89243,27.25528],[95.89418,27.25692],[95.89462,27.26101],[95.89356,27.26757],[95.89945,27.26868],[95.90008,27.27425],[95.90435,27.27392],[95.89709,27.28054],[95.89721,27.28216],[95.90111,27.28392],[95.90606,27.28222],[95.90717,27.28897],[95.91338,27.28914],[95.91478,27.29201],[95.91799,27.29134],[95.93012,27.30028],[95.93756,27.30082],[95.94172,27.30523],[95.94663,27.30379],[95.95343,27.30892],[95.96004,27.31095],[95.95656,27.31257],[95.95505,27.31768],[95.96103,27.31644],[95.96276,27.32314],[95.96912,27.32241],[95.97556,27.32446],[95.97209,27.32744],[95.96772,27.32567],[95.96529,27.32788],[95.97101,27.33282],[95.97158,27.33655],[95.97654,27.33738],[95.98688,27.34561],[95.98921,27.3565],[95.99329,27.35794],[95.9965,27.35636],[96.00249,27.36074],[96.00753,27.36063],[96.0127,27.36503],[96.01775,27.36492],[96.01788,27.36943],[95.99817,27.38789],[95.99647,27.3946],[95.99349,27.39639],[95.99014,27.40236],[95.98456,27.40445],[95.9833,27.41183],[95.97405,27.41137],[95.97022,27.41491],[95.97078,27.41683],[95.97515,27.41746],[95.97539,27.41939],[95.97408,27.42169],[95.96962,27.4235],[95.96935,27.42789],[95.96547,27.42701],[95.96456,27.41805],[95.96179,27.41801],[95.9632,27.42721],[95.96034,27.42903],[95.95675,27.4265],[95.95475,27.41962],[95.95113,27.42397],[95.94519,27.42664],[95.94745,27.43299],[95.94131,27.43729],[95.93444,27.43564],[95.92787,27.43847],[95.91823,27.43473],[95.91089,27.43577],[95.90798,27.43435],[95.90001,27.42202],[95.89867,27.41286],[95.89099,27.40121],[95.88573,27.39815],[95.88403,27.4025],[95.8883,27.40899],[95.88759,27.41166],[95.88395,27.41402],[95.88494,27.43212],[95.88322,27.43532],[95.87875,27.43612],[95.87567,27.43479],[95.87088,27.42635],[95.85714,27.41988],[95.85702,27.41564],[95.86245,27.41153],[95.8625,27.40945],[95.86014,27.40801],[95.85296,27.41111],[95.85002,27.41781],[95.84451,27.42158],[95.84234,27.42775],[95.84729,27.43619],[95.84682,27.43856],[95.84947,27.44161],[95.85675,27.44493],[95.85332,27.45691],[95.85655,27.46126],[95.87069,27.46665],[95.87154,27.47611],[95.87389,27.48116],[95.87294,27.49078],[95.8743,27.49325],[95.88003,27.49703],[95.88685,27.49708],[95.8843,27.50105],[95.8788,27.50489],[95.87584,27.51242],[95.8785,27.51876],[95.87665,27.54428],[95.8758,27.54649],[95.87371,27.547],[95.8703,27.54528],[95.86263,27.54537],[95.86074,27.5431],[95.8529,27.55279],[95.84127,27.56205],[95.8363,27.55926],[95.83335,27.56002],[95.82344,27.57448],[95.81434,27.57425],[95.81192,27.58322],[95.8138,27.58898],[95.81845,27.59539],[95.8158,27.59867],[95.80557,27.60095],[95.79533,27.59766],[95.79064,27.59965],[95.78943,27.604],[95.79034,27.61174],[95.78514,27.61561],[95.78003,27.61662],[95.77832,27.61938],[95.77853,27.62398],[95.77957,27.62564],[95.7895,27.62631],[95.7883,27.63484],[95.79443,27.63887],[95.79603,27.63786],[95.79578,27.64173],[95.79015,27.64476],[95.78784,27.64396],[95.78622,27.64632],[95.77432,27.6508],[95.77043,27.6577],[95.77297,27.66204],[95.77197,27.66409],[95.77514,27.67432],[95.77906,27.67728],[95.79046,27.68014],[95.78616,27.68175],[95.78513,27.68514],[95.783,27.68464],[95.78293,27.68721],[95.77723,27.68755],[95.77331,27.6849],[95.76759,27.6873],[95.76715,27.69049],[95.76539,27.69077],[95.76378,27.69376],[95.76573,27.69757],[95.76455,27.6997],[95.76803,27.70209],[95.7629,27.70902],[95.76418,27.71113],[95.76251,27.71316],[95.76536,27.71466],[95.7537,27.71874],[95.75237,27.72383],[95.75848,27.72694],[95.76631,27.72665],[95.77938,27.73371],[95.78055,27.73692],[95.77798,27.74246],[95.776,27.75362],[95.78689,27.75967],[95.7944,27.76908],[95.80035,27.77369],[95.80392,27.7846],[95.80955,27.78908],[95.81092,27.79653],[95.81665,27.80269],[95.82659,27.80872],[95.83807,27.81023],[95.83776,27.82412],[95.85439,27.83002],[95.87041,27.83267],[95.88366,27.84611],[95.88845,27.85657],[95.89114,27.85685],[95.89025,27.85999],[95.89534,27.85737],[95.89475,27.862],[95.90492,27.86212],[95.90146,27.86648],[95.90169,27.86847],[95.90335,27.86891],[95.90658,27.866],[95.90859,27.86871],[95.90729,27.87044],[95.9107,27.87019],[95.91012,27.87241],[95.91454,27.87576],[95.91702,27.88046],[95.91555,27.88376],[95.91944,27.8806],[95.92509,27.88168],[95.92076,27.88464],[95.9168,27.885],[95.9155,27.88939],[95.91768,27.89007],[95.9237,27.8881],[95.91923,27.89504],[95.92597,27.89534],[95.92633,27.89888],[95.92785,27.8987],[95.92849,27.89513],[95.93775,27.8982],[95.93178,27.90014],[95.92983,27.90274],[95.94105,27.90561],[95.93553,27.90749],[95.93815,27.91253],[95.94266,27.91069],[95.94712,27.91745],[95.95269,27.92009],[95.94855,27.92439],[95.95476,27.9312],[95.94924,27.9312],[95.9483,27.93712],[95.95456,27.94114],[95.9652,27.95167],[95.96986,27.95965]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"303","area_level":"District","area_name":"North 24 Parganas","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.81248,23.25448],[88.81146,23.25609],[88.8098,23.25455],[88.8093,23.24894],[88.81048,23.24822],[88.8082,23.24569],[88.80905,23.24491],[88.80591,23.23795],[88.80653,23.23146],[88.80924,23.22852],[88.80851,23.22485],[88.81144,23.22155],[88.80579,23.21878],[88.79576,23.22017],[88.7898,23.21834],[88.7878,23.22228],[88.78391,23.22276],[88.78333,23.22134],[88.77873,23.22069],[88.77731,23.22389],[88.77442,23.22441],[88.77438,23.22893],[88.77298,23.22896],[88.77329,23.23101],[88.77656,23.23081],[88.77554,23.23449],[88.7773,23.23444],[88.77801,23.23624],[88.77613,23.23632],[88.77557,23.23854],[88.77334,23.23845],[88.77389,23.24116],[88.77133,23.24138],[88.76744,23.24571],[88.7597,23.24576],[88.75909,23.24181],[88.75208,23.24039],[88.75416,23.23679],[88.75344,23.23479],[88.73679,23.23468],[88.73026,23.23926],[88.72297,23.23946],[88.72045,23.23864],[88.72037,23.23373],[88.71311,23.23797],[88.70828,23.23255],[88.71123,23.22272],[88.70221,23.21491],[88.70382,23.21382],[88.71385,23.2154],[88.71815,23.21055],[88.71445,23.20912],[88.71584,23.20657],[88.7157,23.19035],[88.71953,23.1874],[88.71921,23.1842],[88.71649,23.18466],[88.71381,23.17687],[88.71463,23.17563],[88.71663,23.18061],[88.71611,23.17539],[88.71746,23.17452],[88.71218,23.17474],[88.71124,23.17153],[88.70924,23.17233],[88.71217,23.16903],[88.71155,23.16717],[88.70012,23.16901],[88.69732,23.16583],[88.69745,23.16214],[88.69601,23.16201],[88.69703,23.15734],[88.69395,23.157],[88.70476,23.13576],[88.69982,23.12964],[88.70025,23.12719],[88.69697,23.12587],[88.69301,23.12012],[88.69529,23.11621],[88.69455,23.11032],[88.69032,23.10855],[88.68344,23.10897],[88.68281,23.10758],[88.68582,23.1057],[88.68118,23.09739],[88.67423,23.09523],[88.67722,23.09233],[88.68157,23.07946],[88.68303,23.07866],[88.68192,23.07668],[88.6829,23.06939],[88.68426,23.07021],[88.68693,23.06749],[88.69349,23.06808],[88.69564,23.06512],[88.69329,23.06408],[88.69289,23.06167],[88.69107,23.06234],[88.68804,23.05679],[88.68633,23.05682],[88.686,23.05335],[88.6823,23.05328],[88.6822,23.0515],[88.68493,23.05132],[88.68481,23.04902],[88.68325,23.04792],[88.68246,23.04934],[88.68116,23.04789],[88.68266,23.04735],[88.68113,23.04472],[88.68303,23.04062],[88.6862,23.03946],[88.68412,23.03672],[88.68682,23.03249],[88.68787,23.02617],[88.68005,23.01466],[88.67561,23.01561],[88.67667,23.00699],[88.67885,23.00749],[88.67925,23.00129],[88.67752,22.99912],[88.67465,22.99898],[88.67464,22.99618],[88.67047,22.9955],[88.66694,22.99224],[88.66305,22.98165],[88.66398,22.96505],[88.66639,22.96354],[88.66536,22.95053],[88.66838,22.94734],[88.67604,22.9474],[88.67958,22.94441],[88.67564,22.94028],[88.66929,22.94317],[88.66658,22.94269],[88.66657,22.94059],[88.65699,22.93866],[88.65864,22.93544],[88.66166,22.93558],[88.66252,22.93355],[88.66055,22.92757],[88.65522,22.92446],[88.65675,22.91129],[88.66458,22.905],[88.66611,22.89777],[88.66896,22.89413],[88.66818,22.88925],[88.66169,22.88133],[88.65926,22.87525],[88.65666,22.88452],[88.65436,22.8844],[88.65343,22.88679],[88.65057,22.88701],[88.64737,22.88486],[88.64451,22.88592],[88.64368,22.88124],[88.62727,22.88345],[88.62691,22.88605],[88.62365,22.88621],[88.6229,22.88857],[88.62072,22.88904],[88.62056,22.89543],[88.61893,22.89905],[88.61695,22.89924],[88.61381,22.90331],[88.61201,22.90979],[88.608,22.9051],[88.60351,22.90611],[88.6019,22.90934],[88.59137,22.9119],[88.58625,22.9122],[88.58589,22.9104],[88.58177,22.90959],[88.57944,22.91315],[88.57988,22.91595],[88.5761,22.91586],[88.57396,22.91288],[88.56648,22.91448],[88.56433,22.92279],[88.56082,22.92002],[88.5608,22.92123],[88.55891,22.92072],[88.55648,22.92269],[88.5483,22.92231],[88.5475,22.92411],[88.5382,22.92814],[88.53601,22.93076],[88.53277,22.92859],[88.53192,22.93158],[88.52718,22.93424],[88.52511,22.93242],[88.52157,22.93401],[88.51466,22.93228],[88.51142,22.93436],[88.51413,22.94089],[88.50696,22.94625],[88.50454,22.94605],[88.5,22.94131],[88.49106,22.937],[88.48323,22.93528],[88.47295,22.93586],[88.47058,22.93605],[88.47072,22.94226],[88.46648,22.94416],[88.46368,22.95073],[88.45361,22.94919],[88.42187,22.95674],[88.41747,22.95642],[88.41395,22.95262],[88.41368,22.94557],[88.41183,22.94559],[88.41117,22.93479],[88.40873,22.92835],[88.4033,22.92217],[88.40132,22.91626],[88.4079,22.89617],[88.40828,22.88666],[88.40674,22.88157],[88.3999,22.87361],[88.38494,22.86809],[88.383,22.86981],[88.37171,22.86075],[88.36936,22.85041],[88.37487,22.84121],[88.37483,22.83645],[88.37702,22.83627],[88.37627,22.83251],[88.37219,22.8291],[88.36149,22.82832],[88.35726,22.82502],[88.35591,22.82234],[88.35678,22.81401],[88.35521,22.81383],[88.35217,22.80155],[88.35452,22.80041],[88.35365,22.79855],[88.34693,22.79173],[88.33421,22.78488],[88.33199,22.78122],[88.33495,22.77048],[88.34346,22.76181],[88.35644,22.75386],[88.36219,22.74511],[88.35972,22.73496],[88.35885,22.71271],[88.3628,22.69932],[88.36346,22.68556],[88.35575,22.66957],[88.35237,22.64985],[88.35768,22.64224],[88.35848,22.6363],[88.36396,22.62645],[88.36583,22.61845],[88.39232,22.61816],[88.39335,22.60873],[88.39226,22.59521],[88.40046,22.58346],[88.40497,22.57015],[88.41377,22.55346],[88.43409,22.5363],[88.43975,22.52807],[88.47454,22.51829],[88.48083,22.5195],[88.48344,22.52503],[88.47779,22.53752],[88.47806,22.55067],[88.47217,22.55421],[88.4584,22.56803],[88.46442,22.56565],[88.46687,22.56936],[88.46594,22.57289],[88.46984,22.57329],[88.4731,22.57658],[88.47463,22.57538],[88.47278,22.57345],[88.47485,22.56977],[88.47677,22.56705],[88.48177,22.56711],[88.48479,22.55962],[88.49308,22.55784],[88.49442,22.55465],[88.51169,22.55867],[88.51214,22.5523],[88.51989,22.54983],[88.52544,22.55278],[88.52245,22.55634],[88.52201,22.56115],[88.52366,22.56475],[88.53509,22.57456],[88.53797,22.5748],[88.538,22.57895],[88.54209,22.58163],[88.54135,22.58522],[88.54391,22.58588],[88.54709,22.59286],[88.55314,22.59168],[88.55309,22.59303],[88.54813,22.59578],[88.54401,22.60506],[88.54678,22.60956],[88.55097,22.60863],[88.55404,22.61465],[88.5534,22.61742],[88.55995,22.61833],[88.55824,22.62061],[88.55974,22.62507],[88.57449,22.61954],[88.5775,22.61426],[88.58198,22.61207],[88.58668,22.61524],[88.59372,22.61369],[88.59446,22.60903],[88.59176,22.60711],[88.59081,22.59714],[88.59928,22.59605],[88.60052,22.59242],[88.61153,22.59129],[88.61291,22.58186],[88.62018,22.58075],[88.62142,22.5812],[88.61989,22.5828],[88.62259,22.58228],[88.62386,22.5807],[88.62293,22.57956],[88.62713,22.57598],[88.62337,22.56273],[88.62549,22.56236],[88.6261,22.55908],[88.6306,22.55784],[88.62944,22.54792],[88.6369,22.54316],[88.64428,22.53113],[88.65302,22.52752],[88.65072,22.51955],[88.6572,22.51552],[88.65477,22.51316],[88.65672,22.51048],[88.65651,22.50627],[88.6522,22.50448],[88.64936,22.49546],[88.66069,22.49501],[88.66578,22.49274],[88.66554,22.491],[88.67569,22.48443],[88.67587,22.48135],[88.6856,22.47387],[88.68687,22.46684],[88.69272,22.46245],[88.70432,22.46102],[88.70318,22.45874],[88.70664,22.45684],[88.70807,22.45141],[88.7023,22.4432],[88.70401,22.4335],[88.71363,22.42997],[88.71573,22.42733],[88.72221,22.42763],[88.72997,22.42395],[88.73167,22.42087],[88.73419,22.42062],[88.73336,22.41107],[88.74218,22.40298],[88.7476,22.40125],[88.74865,22.39956],[88.7528,22.40132],[88.7555,22.39839],[88.75074,22.39388],[88.75112,22.3918],[88.75582,22.39281],[88.76058,22.39802],[88.76799,22.39273],[88.76824,22.39077],[88.76136,22.38653],[88.7651,22.37954],[88.76771,22.37992],[88.77366,22.3882],[88.77286,22.38279],[88.76834,22.37573],[88.7714,22.37039],[88.77879,22.37117],[88.78322,22.36753],[88.79079,22.37049],[88.79661,22.3705],[88.80029,22.37386],[88.80846,22.37419],[88.812,22.37196],[88.8214,22.37064],[88.81998,22.36561],[88.82184,22.36101],[88.81713,22.35965],[88.80317,22.32964],[88.8109,22.32039],[88.81071,22.31571],[88.80446,22.29793],[88.80437,22.29104],[88.80555,22.28618],[88.81321,22.28608],[88.81657,22.28313],[88.8171,22.27796],[88.81522,22.27683],[88.81381,22.26952],[88.81513,22.26443],[88.81912,22.26352],[88.82858,22.26528],[88.83236,22.26974],[88.83489,22.27041],[88.83693,22.27508],[88.84231,22.2763],[88.84819,22.28282],[88.8509,22.2886],[88.85274,22.28457],[88.85763,22.28012],[88.8635,22.27713],[88.86548,22.27172],[88.87216,22.27525],[88.87728,22.27516],[88.88204,22.26797],[88.88828,22.26652],[88.8906,22.25894],[88.89491,22.25553],[88.89562,22.25254],[88.90578,22.2517],[88.90772,22.26623],[88.91503,22.27087],[88.92389,22.26024],[88.92727,22.26358],[88.93539,22.26299],[88.93469,22.25823],[88.93839,22.25293],[88.94954,22.24908],[88.95511,22.2429],[88.96124,22.21693],[88.96615,22.20703],[88.97768,22.201],[88.98879,22.20187],[88.99585,22.20382],[88.99706,22.2055],[89.01905,22.19826],[89.02345,22.18858],[89.02126,22.16772],[89.02474,22.15523],[89.03341,22.14538],[89.04952,22.13579],[89.05411,22.13057],[89.05967,22.12015],[89.07884,22.13454],[89.09477,22.14279],[89.09804,22.14754],[89.09855,22.15342],[89.09574,22.1573],[89.09115,22.15825],[89.0863,22.15514],[89.078,22.1461],[89.07184,22.14625],[89.06425,22.1644],[89.06395,22.1691],[89.06486,22.17522],[89.07217,22.18707],[89.07161,22.19689],[89.03889,22.23069],[89.03654,22.23637],[89.0342,22.25826],[89.03032,22.26008],[89.01947,22.25437],[89.01388,22.25396],[89.01294,22.25856],[89.01979,22.26544],[89.02047,22.2685],[88.9951,22.28626],[88.9949,22.29334],[88.99944,22.29701],[89.00783,22.29836],[89.02149,22.29439],[89.02455,22.29716],[89.01132,22.31448],[89.00042,22.32428],[88.98932,22.32254],[88.98448,22.3267],[88.98875,22.34814],[88.98602,22.35759],[88.98935,22.36428],[88.98232,22.37349],[88.98528,22.3791],[88.99425,22.38873],[88.99004,22.39354],[88.97967,22.40059],[88.97191,22.40989],[88.98411,22.41833],[88.98866,22.42407],[89.00007,22.42984],[88.99909,22.43322],[88.99124,22.44043],[88.98849,22.44511],[88.99414,22.45531],[88.99612,22.46895],[88.99267,22.4735],[88.98098,22.48247],[88.97469,22.49624],[88.96791,22.53457],[88.96186,22.54873],[88.95697,22.55291],[88.94447,22.556],[88.9407,22.56135],[88.94151,22.57547],[88.93851,22.58801],[88.93894,22.59221],[88.9564,22.6061],[88.95965,22.61135],[88.96008,22.61663],[88.95616,22.61876],[88.94145,22.61815],[88.93495,22.6212],[88.93296,22.6261],[88.93192,22.63892],[88.92711,22.64965],[88.92987,22.65121],[88.92869,22.65136],[88.92946,22.65383],[88.9312,22.65289],[88.93056,22.65155],[88.93331,22.65198],[88.93555,22.65571],[88.9333,22.6567],[88.93558,22.65903],[88.93906,22.66041],[88.94187,22.65956],[88.94503,22.66239],[88.94789,22.67759],[88.95559,22.68599],[88.96164,22.68522],[88.96059,22.68721],[88.96237,22.69497],[88.95611,22.70398],[88.95115,22.70698],[88.94837,22.70542],[88.9279,22.71807],[88.92521,22.72793],[88.91816,22.73038],[88.91569,22.73654],[88.9166,22.74393],[88.91796,22.74748],[88.92078,22.74924],[88.92075,22.7532],[88.91765,22.75521],[88.91289,22.75427],[88.911,22.75773],[88.91783,22.77001],[88.92582,22.76987],[88.9267,22.77425],[88.92476,22.77496],[88.92391,22.77956],[88.92938,22.78023],[88.92881,22.78318],[88.93565,22.78186],[88.93567,22.79023],[88.93829,22.79108],[88.93809,22.79297],[88.94331,22.79034],[88.9496,22.7973],[88.95789,22.79586],[88.9599,22.80713],[88.95536,22.80881],[88.95552,22.81181],[88.9599,22.8144],[88.96287,22.81875],[88.96413,22.82919],[88.96864,22.8443],[88.96314,22.85263],[88.9583,22.85647],[88.95741,22.86255],[88.9531,22.86417],[88.9536,22.86748],[88.94974,22.87285],[88.94969,22.87685],[88.94537,22.88067],[88.94203,22.87996],[88.93995,22.87485],[88.92833,22.87249],[88.92459,22.87554],[88.92254,22.8801],[88.91873,22.87725],[88.91623,22.87754],[88.91545,22.88021],[88.9123,22.87992],[88.91204,22.87858],[88.91121,22.8802],[88.90943,22.87986],[88.9123,22.88101],[88.90926,22.88145],[88.90888,22.88502],[88.90542,22.88582],[88.90566,22.88711],[88.90814,22.88706],[88.90597,22.88763],[88.9051,22.88982],[88.90783,22.89362],[88.89793,22.89795],[88.90104,22.90592],[88.89568,22.91307],[88.90554,22.91457],[88.90814,22.91978],[88.90376,22.92292],[88.89102,22.92715],[88.88689,22.93321],[88.89274,22.93793],[88.89426,22.952],[88.87927,22.95401],[88.87608,22.9487],[88.87447,22.94816],[88.86932,22.95144],[88.86084,22.94296],[88.85944,22.94319],[88.85514,22.95792],[88.85705,22.96888],[88.85866,22.97128],[88.86686,22.97482],[88.87097,22.97863],[88.86533,22.98555],[88.86387,22.99292],[88.86541,22.99933],[88.86451,23.00102],[88.86063,23.00267],[88.85146,23.00221],[88.84509,23.00986],[88.84681,23.01098],[88.85475,23.00695],[88.86858,23.00585],[88.87668,23.00325],[88.87975,23.00633],[88.87948,23.0096],[88.87434,23.01027],[88.87448,23.01411],[88.872,23.01676],[88.87247,23.01901],[88.87691,23.02279],[88.87766,23.02611],[88.87851,23.02401],[88.87904,23.02591],[88.88104,23.02569],[88.88005,23.03186],[88.88217,23.03641],[88.88451,23.037],[88.88412,23.04043],[88.88053,23.04088],[88.87489,23.0445],[88.87415,23.06578],[88.86958,23.06768],[88.86676,23.07144],[88.86695,23.07284],[88.86821,23.0717],[88.86763,23.07327],[88.86101,23.07731],[88.86556,23.07773],[88.86367,23.07946],[88.86636,23.08023],[88.86616,23.0861],[88.87029,23.086],[88.87164,23.08675],[88.8707,23.08887],[88.87464,23.08977],[88.8735,23.09555],[88.8718,23.09567],[88.87226,23.09737],[88.86906,23.09735],[88.87012,23.09809],[88.86792,23.09995],[88.86845,23.10107],[88.87121,23.10086],[88.8772,23.10432],[88.87898,23.1032],[88.87923,23.10489],[88.8836,23.10456],[88.88148,23.10902],[88.8828,23.11081],[88.8917,23.10768],[88.89731,23.11201],[88.89987,23.11192],[88.90144,23.11692],[88.90572,23.12186],[88.90592,23.12506],[88.91024,23.12746],[88.91033,23.12974],[88.9179,23.12908],[88.91987,23.14062],[88.92327,23.14512],[88.93084,23.14319],[88.93232,23.15608],[88.93058,23.1577],[88.93113,23.15995],[88.92784,23.16071],[88.92806,23.1626],[88.93015,23.16228],[88.92787,23.16304],[88.93402,23.16176],[88.93413,23.16453],[88.93267,23.16547],[88.93389,23.16982],[88.93534,23.17234],[88.93852,23.17334],[88.93909,23.1768],[88.94421,23.1762],[88.94358,23.17783],[88.94505,23.17789],[88.94623,23.18057],[88.95623,23.1819],[88.95779,23.1832],[88.95833,23.18961],[88.96192,23.19135],[88.96231,23.19314],[88.97534,23.19235],[88.97607,23.18186],[88.97794,23.18375],[88.98038,23.18255],[88.9784,23.18405],[88.9796,23.18693],[88.97816,23.18753],[88.98147,23.19249],[88.98009,23.19371],[88.98234,23.19486],[88.98526,23.20213],[88.98772,23.20265],[88.98604,23.20794],[88.98037,23.20971],[88.97967,23.21286],[88.9843,23.21574],[88.98739,23.21542],[88.99083,23.21267],[88.99572,23.2147],[88.98929,23.21585],[88.9844,23.22168],[88.98281,23.22177],[88.97956,23.21549],[88.98139,23.22221],[88.97593,23.22443],[88.97425,23.22257],[88.97873,23.21448],[88.97325,23.22238],[88.97088,23.22265],[88.96956,23.2203],[88.96478,23.218],[88.96407,23.21466],[88.95224,23.21103],[88.94649,23.20645],[88.94263,23.20611],[88.92952,23.21152],[88.92861,23.21495],[88.92984,23.21559],[88.92666,23.21795],[88.92359,23.21588],[88.92307,23.21807],[88.91674,23.21958],[88.92126,23.218],[88.92102,23.21601],[88.91761,23.21234],[88.91459,23.21347],[88.91667,23.22266],[88.91482,23.22377],[88.91497,23.22883],[88.91214,23.23122],[88.91223,23.2339],[88.90685,23.23597],[88.90523,23.23421],[88.90501,23.23594],[88.90237,23.23326],[88.90069,23.23375],[88.89975,23.23177],[88.89676,23.23287],[88.89496,23.23091],[88.89245,23.23233],[88.89089,23.23092],[88.88676,23.2313],[88.88617,23.22595],[88.88494,23.22945],[88.87553,23.23218],[88.8747,23.23416],[88.86216,23.23423],[88.8613,23.23194],[88.8592,23.23495],[88.85382,23.23633],[88.85374,23.23411],[88.8514,23.23394],[88.85105,23.23083],[88.8449,23.23051],[88.84452,23.23318],[88.84073,23.23564],[88.83651,23.24331],[88.82834,23.23505],[88.82382,23.23341],[88.82328,23.23827],[88.8288,23.24487],[88.81508,23.251],[88.81248,23.25448]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"304","area_level":"District","area_name":"South 24 Parganas","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[88.01734,21.56009],[88.01728,21.56222],[88.01715,21.56263],[88.01685,21.56295],[88.01633,21.56292],[88.01591,21.56262],[88.01555,21.56216],[88.0149,21.56089],[88.0141,21.55997],[88.01362,21.55992],[88.01323,21.56013],[88.01248,21.56032],[88.01153,21.56013],[88.01037,21.5593],[88.01018,21.55899],[88.00997,21.55823],[88.00964,21.55612],[88.00955,21.55494],[88.00957,21.55418],[88.00979,21.55314],[88.01012,21.55236],[88.01049,21.55181],[88.01087,21.55057],[88.01171,21.54863],[88.01212,21.54793],[88.01281,21.54721],[88.01375,21.54684],[88.01493,21.54682],[88.01547,21.54696],[88.01595,21.54729],[88.01837,21.55112],[88.01856,21.55167],[88.01879,21.55349],[88.01868,21.55556],[88.01813,21.55752],[88.01743,21.55949],[88.01734,21.56009]]],[[[88.17272,21.58416],[88.16992,21.58484],[88.16906,21.58595],[88.16779,21.58674],[88.16593,21.59031],[88.16602,21.59691],[88.16655,21.59774],[88.16646,21.59924],[88.16724,21.60198],[88.16714,21.60296],[88.16546,21.60148],[88.1643,21.59924],[88.16384,21.59656],[88.1638,21.58703],[88.16498,21.58403],[88.16715,21.58201],[88.16924,21.57662],[88.17128,21.5675],[88.17211,21.55942],[88.17406,21.55353],[88.17554,21.55137],[88.1758,21.54965],[88.17817,21.54677],[88.18748,21.54237],[88.19074,21.54202],[88.19401,21.54074],[88.19697,21.54097],[88.19933,21.54213],[88.20406,21.54604],[88.2044,21.54702],[88.202,21.54784],[88.19982,21.54716],[88.19794,21.54595],[88.19722,21.54621],[88.19683,21.54781],[88.19585,21.54754],[88.19454,21.54796],[88.19375,21.54899],[88.19353,21.55102],[88.19247,21.55275],[88.19214,21.55428],[88.19117,21.5548],[88.18859,21.55785],[88.18785,21.56308],[88.18748,21.56408],[88.18636,21.56491],[88.18751,21.56792],[88.18667,21.56913],[88.18669,21.5712],[88.18548,21.57287],[88.18575,21.57498],[88.18492,21.57657],[88.18641,21.58072],[88.18615,21.58195],[88.1848,21.58323],[88.18075,21.58372],[88.17959,21.5848],[88.17513,21.58406],[88.17272,21.58416]]],[[[88.50859,21.59216],[88.50349,21.59513],[88.5006,21.59803],[88.50019,21.59953],[88.49844,21.60102],[88.49624,21.59925],[88.49591,21.59762],[88.4935,21.59473],[88.49377,21.59352],[88.4929,21.59317],[88.49049,21.58893],[88.48801,21.58162],[88.48695,21.57981],[88.48765,21.57948],[88.48715,21.57784],[88.4883,21.57539],[88.48829,21.57405],[88.48739,21.56984],[88.48504,21.56357],[88.48538,21.56258],[88.48477,21.5522],[88.4864,21.54917],[88.48996,21.54696],[88.49265,21.54794],[88.49593,21.54722],[88.49666,21.54789],[88.49746,21.54757],[88.49839,21.54837],[88.49925,21.54793],[88.5,21.54629],[88.49987,21.5429],[88.49811,21.54314],[88.49691,21.54241],[88.49715,21.53985],[88.49953,21.53775],[88.50091,21.53761],[88.50633,21.53416],[88.50858,21.5339],[88.5092,21.53302],[88.511,21.53254],[88.51136,21.53176],[88.51232,21.53168],[88.51308,21.53263],[88.51449,21.53036],[88.51553,21.52969],[88.52104,21.52773],[88.53079,21.52708],[88.53556,21.52759],[88.53837,21.53036],[88.54238,21.53303],[88.54506,21.53305],[88.54786,21.53715],[88.54687,21.53857],[88.544,21.53921],[88.53889,21.54311],[88.53759,21.54681],[88.53708,21.54622],[88.53685,21.54758],[88.5353,21.54991],[88.53512,21.5516],[88.53394,21.55378],[88.53459,21.55523],[88.53367,21.55629],[88.53406,21.55793],[88.53289,21.56006],[88.53276,21.56175],[88.53065,21.56356],[88.53172,21.56458],[88.53259,21.56747],[88.53383,21.56942],[88.53423,21.57079],[88.53395,21.57293],[88.53721,21.5755],[88.5372,21.57801],[88.53373,21.58264],[88.53196,21.58396],[88.52786,21.58537],[88.52039,21.58666],[88.5102,21.59189],[88.50859,21.59216]]],[[[88.94721,21.59571],[88.94744,21.59597],[88.94782,21.59628],[88.94818,21.59692],[88.9482,21.59754],[88.94811,21.59849],[88.94792,21.59909],[88.94766,21.59947],[88.94734,21.59983],[88.94716,21.60028],[88.94687,21.6007],[88.94665,21.60072],[88.94612,21.60056],[88.9453,21.60006],[88.94494,21.59991],[88.94468,21.59954],[88.94468,21.59927],[88.94482,21.59897],[88.94509,21.59857],[88.94524,21.59823],[88.94523,21.59776],[88.94561,21.59654],[88.94621,21.59578],[88.94649,21.59552],[88.94692,21.59545],[88.94721,21.59571]]],[[[88.83401,21.60804],[88.83301,21.60906],[88.83227,21.60879],[88.83167,21.60418],[88.82979,21.60318],[88.83061,21.5972],[88.82945,21.59458],[88.82997,21.59307],[88.82893,21.58602],[88.82924,21.58235],[88.82763,21.57963],[88.82772,21.57859],[88.82682,21.57788],[88.8276,21.57509],[88.82643,21.57451],[88.82601,21.57278],[88.82613,21.57194],[88.82828,21.57261],[88.82975,21.57188],[88.82898,21.57052],[88.82952,21.5662],[88.82677,21.56574],[88.82755,21.56356],[88.82982,21.56022],[88.83038,21.55634],[88.82994,21.55469],[88.83116,21.55381],[88.83039,21.55288],[88.83118,21.55117],[88.83385,21.54979],[88.8357,21.55017],[88.83758,21.54926],[88.83969,21.54909],[88.83974,21.54785],[88.84234,21.54779],[88.84197,21.54616],[88.8426,21.54557],[88.84808,21.54245],[88.84884,21.54058],[88.85226,21.53987],[88.85577,21.53661],[88.85744,21.53751],[88.85818,21.53601],[88.86395,21.53637],[88.8665,21.53551],[88.86859,21.53569],[88.8737,21.53458],[88.87485,21.53544],[88.87609,21.5344],[88.87777,21.53493],[88.88142,21.53416],[88.88503,21.53514],[88.8916,21.53803],[88.89632,21.54165],[88.90068,21.54333],[88.90134,21.54461],[88.90599,21.54756],[88.90572,21.55564],[88.90368,21.56137],[88.89745,21.57525],[88.89624,21.57537],[88.89417,21.5791],[88.89189,21.5812],[88.88889,21.58095],[88.88489,21.58306],[88.87993,21.58871],[88.87858,21.58808],[88.87834,21.58954],[88.87586,21.59258],[88.87298,21.59442],[88.87084,21.59494],[88.86923,21.59659],[88.86708,21.59634],[88.86564,21.59729],[88.86182,21.59748],[88.85558,21.5997],[88.84555,21.60209],[88.8378,21.60478],[88.83698,21.60543],[88.83597,21.6079],[88.83401,21.60804]]],[[[89.15105,21.60004],[89.15079,21.60051],[89.15026,21.60097],[89.14948,21.60121],[89.14876,21.60119],[89.14819,21.60099],[89.14713,21.60011],[89.14671,21.60048],[89.1465,21.60048],[89.14636,21.60038],[89.14561,21.59797],[89.1452,21.59721],[89.14458,21.59651],[89.14392,21.596],[89.14313,21.59564],[89.14102,21.59535],[89.14034,21.59551],[89.13975,21.59602],[89.13941,21.5965],[89.13927,21.59705],[89.13939,21.59776],[89.14002,21.59972],[89.14005,21.60033],[89.13974,21.60083],[89.13919,21.60133],[89.13841,21.60153],[89.13701,21.60141],[89.1364,21.60111],[89.13576,21.60059],[89.13549,21.60006],[89.13516,21.59907],[89.13505,21.59778],[89.13519,21.59642],[89.13551,21.59557],[89.13604,21.59483],[89.13771,21.59347],[89.13889,21.59296],[89.14223,21.59247],[89.14334,21.59245],[89.14453,21.59265],[89.14728,21.59351],[89.14869,21.59447],[89.1504,21.59663],[89.15112,21.59867],[89.15123,21.59953],[89.15105,21.60004]]],[[[88.04293,21.69235],[88.04334,21.69249],[88.0436,21.69267],[88.04393,21.69312],[88.04515,21.69543],[88.04594,21.69739],[88.04602,21.69776],[88.04602,21.69813],[88.04578,21.69888],[88.04559,21.69924],[88.04543,21.6994],[88.04517,21.69942],[88.04487,21.69936],[88.04469,21.69925],[88.04451,21.69907],[88.04441,21.69881],[88.04438,21.69867],[88.0444,21.69782],[88.04404,21.69637],[88.04362,21.69552],[88.04265,21.69294],[88.04264,21.6925],[88.04278,21.69236],[88.04293,21.69235]]],[[[88.05241,21.70232],[88.05226,21.70258],[88.05211,21.70268],[88.05197,21.70266],[88.05107,21.70143],[88.05057,21.70084],[88.05017,21.70025],[88.05007,21.70001],[88.04997,21.69934],[88.04994,21.69745],[88.04966,21.6959],[88.0493,21.69502],[88.0493,21.69473],[88.04941,21.69449],[88.04953,21.69447],[88.0497,21.69453],[88.05029,21.69495],[88.05093,21.69559],[88.05133,21.69623],[88.05155,21.69705],[88.0516,21.69744],[88.05153,21.69886],[88.0516,21.69928],[88.05207,21.70017],[88.05258,21.70089],[88.05289,21.70124],[88.05308,21.70155],[88.05316,21.70182],[88.05317,21.70211],[88.053,21.7023],[88.05277,21.70236],[88.05241,21.70232]]],[[[88.04364,21.70059],[88.04411,21.70094],[88.04425,21.70121],[88.04454,21.70155],[88.04468,21.70183],[88.0447,21.70229],[88.04465,21.70247],[88.04396,21.70365],[88.04387,21.70407],[88.04375,21.70504],[88.04348,21.70596],[88.04348,21.70719],[88.04335,21.70814],[88.04307,21.70872],[88.04283,21.70896],[88.04277,21.70897],[88.0427,21.70893],[88.04248,21.70816],[88.04246,21.70657],[88.04238,21.70616],[88.04245,21.70448],[88.04232,21.70344],[88.04236,21.70306],[88.04281,21.70177],[88.04287,21.70136],[88.04297,21.70107],[88.04309,21.70088],[88.04329,21.70069],[88.04343,21.70058],[88.04364,21.70059]]],[[[88.05318,21.70305],[88.05346,21.7031],[88.05357,21.70319],[88.05406,21.70388],[88.05427,21.70433],[88.0544,21.70472],[88.05444,21.70509],[88.05437,21.70634],[88.05446,21.7067],[88.05505,21.70777],[88.05517,21.70813],[88.05528,21.70888],[88.05545,21.70918],[88.05598,21.70975],[88.05625,21.71014],[88.0563,21.71067],[88.05627,21.7109],[88.05618,21.71109],[88.05575,21.71139],[88.05555,21.71144],[88.05423,21.7113],[88.05391,21.71115],[88.05371,21.71088],[88.05362,21.71049],[88.05365,21.70973],[88.05361,21.70955],[88.05356,21.70935],[88.05301,21.70857],[88.05294,21.70824],[88.05311,21.70737],[88.05307,21.70708],[88.0529,21.70659],[88.05235,21.70555],[88.05218,21.70491],[88.05219,21.70416],[88.05237,21.70361],[88.05269,21.70322],[88.05304,21.70306],[88.05318,21.70305]]],[[[88.63505,21.66294],[88.63696,21.66567],[88.63801,21.66607],[88.63852,21.66655],[88.63825,21.66753],[88.63879,21.66928],[88.64098,21.67267],[88.64195,21.67598],[88.6421,21.67821],[88.64257,21.67879],[88.64238,21.67919],[88.64121,21.67963],[88.63723,21.67978],[88.63516,21.67865],[88.63141,21.67445],[88.63088,21.67329],[88.63045,21.67135],[88.63142,21.67067],[88.63018,21.67037],[88.62998,21.66979],[88.62901,21.66487],[88.62847,21.66378],[88.62866,21.66309],[88.62761,21.6606],[88.62706,21.65769],[88.62706,21.65667],[88.62664,21.65569],[88.62749,21.65536],[88.62776,21.65503],[88.62741,21.65444],[88.62812,21.65364],[88.62812,21.65306],[88.62858,21.65145],[88.62936,21.65109],[88.62971,21.65055],[88.63092,21.64967],[88.63158,21.64941],[88.63232,21.65],[88.63369,21.65043],[88.6356,21.65047],[88.6361,21.65087],[88.63564,21.65171],[88.63564,21.65237],[88.63513,21.65306],[88.63497,21.65382],[88.63505,21.65569],[88.63419,21.65699],[88.634,21.65787],[88.63447,21.65926],[88.63568,21.66057],[88.6363,21.66192],[88.63711,21.6629],[88.63719,21.66381],[88.6377,21.66465],[88.6377,21.66545],[88.6363,21.66425],[88.63536,21.6625],[88.63501,21.66235],[88.63505,21.66294]]],[[[88.30938,21.70486],[88.30661,21.70563],[88.30569,21.69959],[88.31129,21.6891],[88.31453,21.68022],[88.3161,21.67237],[88.31611,21.66274],[88.31391,21.65211],[88.30942,21.63963],[88.30745,21.63247],[88.30645,21.61495],[88.3091,21.608],[88.31785,21.60522],[88.32278,21.60781],[88.32691,21.61322],[88.33956,21.61941],[88.34062,21.62307],[88.3443,21.6276],[88.34615,21.63317],[88.34344,21.63759],[88.35046,21.6468],[88.34976,21.64852],[88.34479,21.64921],[88.34621,21.65162],[88.34643,21.65461],[88.34371,21.6619],[88.34472,21.66395],[88.34754,21.66672],[88.35078,21.67262],[88.3516,21.67486],[88.35142,21.67728],[88.35025,21.68046],[88.34338,21.69209],[88.33367,21.69982],[88.32891,21.70209],[88.32453,21.70306],[88.31915,21.70385],[88.31336,21.70371],[88.30938,21.70486]]],[[[88.18242,21.68823],[88.18483,21.68985],[88.1868,21.69165],[88.18878,21.69425],[88.19042,21.69804],[88.19346,21.70142],[88.19753,21.70422],[88.20188,21.70592],[88.20468,21.70739],[88.20631,21.70865],[88.20719,21.70988],[88.20802,21.71209],[88.20825,21.71346],[88.20579,21.71842],[88.2043,21.7229],[88.20402,21.72507],[88.20366,21.72584],[88.20198,21.72453],[88.19961,21.72212],[88.19516,21.71892],[88.19164,21.71562],[88.18948,21.71333],[88.18581,21.70767],[88.1853,21.70653],[88.18512,21.70537],[88.18234,21.69956],[88.18214,21.6979],[88.18154,21.69607],[88.18145,21.69229],[88.18118,21.69126],[88.18142,21.6905],[88.18082,21.68902],[88.18137,21.68826],[88.18242,21.68823]]],[[[88.74978,21.64962],[88.74379,21.65212],[88.7303,21.66409],[88.70778,21.68137],[88.7018,21.68787],[88.69932,21.69528],[88.69826,21.71045],[88.69483,21.71861],[88.69341,21.72066],[88.69251,21.72016],[88.68666,21.68948],[88.68443,21.68431],[88.68726,21.67931],[88.70636,21.66083],[88.71397,21.65127],[88.7175,21.64401],[88.71884,21.63474],[88.7185,21.62661],[88.71749,21.62278],[88.71209,21.61471],[88.70721,21.59015],[88.70859,21.58472],[88.71544,21.57246],[88.72624,21.56664],[88.73869,21.56402],[88.74203,21.56219],[88.74672,21.56514],[88.75974,21.56478],[88.77611,21.56984],[88.77812,21.5749],[88.79481,21.58212],[88.79705,21.58802],[88.80005,21.59124],[88.79723,21.59708],[88.77604,21.61959],[88.77296,21.62577],[88.77157,21.63178],[88.7738,21.64011],[88.77691,21.64346],[88.77466,21.64929],[88.76898,21.65595],[88.75923,21.65246],[88.75242,21.64801],[88.74978,21.64962]]],[[[88.41516,21.72519],[88.41491,21.72675],[88.41221,21.72841],[88.41121,21.73102],[88.40789,21.73459],[88.40165,21.73728],[88.39898,21.74353],[88.40018,21.75169],[88.39583,21.75464],[88.39451,21.75373],[88.39234,21.74287],[88.39095,21.73838],[88.38912,21.73575],[88.38392,21.73231],[88.37213,21.72955],[88.36927,21.72823],[88.36876,21.72698],[88.37005,21.72443],[88.37253,21.72384],[88.3872,21.72635],[88.39593,21.7253],[88.40129,21.72141],[88.40424,21.71663],[88.40392,21.71356],[88.40474,21.71106],[88.40153,21.7019],[88.39564,21.69448],[88.39058,21.69018],[88.3882,21.68961],[88.3824,21.68284],[88.38254,21.66635],[88.38226,21.66428],[88.38094,21.66289],[88.38548,21.65549],[88.38546,21.6524],[88.38813,21.64251],[88.39091,21.64051],[88.3895,21.63946],[88.38893,21.63677],[88.38603,21.63716],[88.38576,21.63244],[88.38698,21.62961],[88.39301,21.62527],[88.39361,21.62354],[88.39151,21.6186],[88.38638,21.61225],[88.38519,21.6119],[88.38483,21.61036],[88.38806,21.60198],[88.39154,21.59935],[88.39322,21.59941],[88.39641,21.59651],[88.39547,21.59506],[88.39694,21.58993],[88.39937,21.59129],[88.40011,21.5901],[88.40734,21.58987],[88.4077,21.5928],[88.40667,21.59401],[88.40846,21.5956],[88.40704,21.60112],[88.4059,21.60233],[88.41177,21.61178],[88.41516,21.61437],[88.4178,21.6147],[88.42318,21.61737],[88.43046,21.61876],[88.43195,21.62045],[88.43225,21.62589],[88.42866,21.63509],[88.41752,21.64503],[88.41191,21.65277],[88.41105,21.65583],[88.4108,21.6663],[88.41426,21.67261],[88.41185,21.67852],[88.41038,21.67946],[88.4117,21.68237],[88.4113,21.68559],[88.41333,21.69293],[88.41961,21.69837],[88.42756,21.70105],[88.42814,21.70251],[88.42458,21.70825],[88.42272,21.71499],[88.42061,21.71734],[88.42168,21.71814],[88.42001,21.72004],[88.41839,21.71932],[88.41724,21.72037],[88.41489,21.72425],[88.41516,21.72519]]],[[[88.38768,21.76279],[88.38542,21.76407],[88.38284,21.7644],[88.37812,21.76642],[88.37029,21.76376],[88.35988,21.76332],[88.35711,21.76215],[88.35314,21.76179],[88.34763,21.76018],[88.34525,21.75809],[88.34367,21.75483],[88.34302,21.7515],[88.34515,21.73775],[88.34815,21.72903],[88.34853,21.72254],[88.34732,21.7197],[88.34592,21.71792],[88.34157,21.71609],[88.33867,21.7139],[88.33844,21.71158],[88.34095,21.70668],[88.34587,21.69998],[88.35037,21.69233],[88.35175,21.69091],[88.35619,21.68808],[88.35707,21.68646],[88.35982,21.68631],[88.36023,21.68572],[88.36173,21.68611],[88.36308,21.68557],[88.36455,21.68658],[88.3658,21.68845],[88.36537,21.69106],[88.36853,21.69219],[88.36953,21.69393],[88.37082,21.69372],[88.37244,21.69437],[88.37539,21.69703],[88.38349,21.70066],[88.38591,21.70232],[88.39186,21.70784],[88.39451,21.71322],[88.3947,21.71461],[88.39391,21.71604],[88.39153,21.71785],[88.38998,21.71832],[88.38747,21.71858],[88.3764,21.717],[88.37071,21.71793],[88.36732,21.71962],[88.36353,21.72469],[88.36328,21.72591],[88.36392,21.72993],[88.36548,21.73317],[88.37299,21.73708],[88.38301,21.73807],[88.38593,21.74047],[88.3871,21.74343],[88.38731,21.75024],[88.38634,21.75166],[88.38743,21.75454],[88.39011,21.75854],[88.38991,21.76078],[88.38768,21.76279]]],[[[88.19813,21.76905],[88.19747,21.77098],[88.19609,21.77328],[88.19496,21.77553],[88.19386,21.77849],[88.19353,21.77906],[88.19319,21.77958],[88.19289,21.77971],[88.19261,21.77971],[88.19219,21.77931],[88.19192,21.77793],[88.19171,21.77485],[88.19084,21.77156],[88.19029,21.77014],[88.19016,21.76868],[88.19071,21.76594],[88.19101,21.76522],[88.19144,21.76483],[88.19225,21.76478],[88.19263,21.76487],[88.19301,21.76517],[88.19362,21.76612],[88.19388,21.76672],[88.19419,21.76878],[88.19436,21.76901],[88.19451,21.76884],[88.19417,21.76665],[88.19307,21.7647],[88.19294,21.76311],[88.193,21.7625],[88.1924,21.75939],[88.19242,21.75875],[88.19265,21.75819],[88.19306,21.75827],[88.19327,21.75859],[88.19361,21.75951],[88.19378,21.76069],[88.19408,21.76165],[88.19436,21.76206],[88.19467,21.76232],[88.19562,21.7626],[88.1964,21.7632],[88.19709,21.7641],[88.19747,21.76484],[88.1979,21.76624],[88.19788,21.76735],[88.19812,21.76788],[88.19813,21.76905]]],[[[88.30132,21.75184],[88.30112,21.75486],[88.29828,21.76683],[88.29615,21.77068],[88.28911,21.77875],[88.2866,21.76901],[88.28546,21.75491],[88.28419,21.75086],[88.28501,21.75028],[88.2844,21.74926],[88.28347,21.74871],[88.28138,21.74342],[88.27976,21.73492],[88.28171,21.73293],[88.28336,21.72677],[88.28467,21.72404],[88.28536,21.72422],[88.28643,21.72067],[88.28938,21.71742],[88.28934,21.71525],[88.29014,21.71366],[88.29189,21.71206],[88.29254,21.71268],[88.29157,21.71551],[88.29192,21.71631],[88.2933,21.71607],[88.29596,21.71692],[88.29929,21.71492],[88.29913,21.71941],[88.30088,21.7254],[88.30496,21.73246],[88.30469,21.73619],[88.30247,21.74412],[88.30175,21.74774],[88.30173,21.75084],[88.30125,21.75084],[88.30132,21.75184]]],[[[88.60395,21.72556],[88.61355,21.72834],[88.6176,21.73094],[88.61873,21.7325],[88.61968,21.7351],[88.6197,21.73696],[88.61888,21.73919],[88.61682,21.74095],[88.61368,21.74229],[88.60716,21.74354],[88.59845,21.74708],[88.59435,21.75004],[88.59004,21.75233],[88.58726,21.7533],[88.58482,21.75693],[88.58407,21.75973],[88.58408,21.76161],[88.58565,21.76541],[88.58586,21.76719],[88.58486,21.77148],[88.58464,21.77432],[88.58389,21.77618],[88.58223,21.77641],[88.57746,21.77327],[88.57174,21.77143],[88.56929,21.77014],[88.56878,21.7697],[88.57086,21.76668],[88.57308,21.76479],[88.57634,21.76101],[88.57825,21.7599],[88.57917,21.75794],[88.58253,21.75449],[88.58458,21.74843],[88.58489,21.74309],[88.58367,21.73685],[88.57903,21.72879],[88.57902,21.7271],[88.5805,21.72613],[88.58645,21.72427],[88.59353,21.72042],[88.59434,21.72169],[88.59587,21.72248],[88.60167,21.72483],[88.60228,21.72554],[88.60395,21.72556]]],[[[88.18152,21.78383],[88.18317,21.786],[88.18515,21.78903],[88.18569,21.79021],[88.18561,21.79063],[88.18521,21.79149],[88.18232,21.79566],[88.1794,21.79923],[88.17905,21.79933],[88.17634,21.79346],[88.17634,21.7926],[88.17666,21.79134],[88.17782,21.78947],[88.17893,21.78724],[88.18012,21.78513],[88.18082,21.78405],[88.1812,21.7837],[88.18152,21.78383]]],[[[88.6084,21.78459],[88.6031,21.78495],[88.59468,21.78369],[88.59259,21.78316],[88.59044,21.78078],[88.58883,21.77659],[88.58858,21.76304],[88.58739,21.75721],[88.59905,21.75127],[88.60035,21.7494],[88.60253,21.74812],[88.60432,21.74748],[88.61166,21.74724],[88.61567,21.74572],[88.61934,21.74337],[88.62173,21.74005],[88.62312,21.73509],[88.62321,21.73309],[88.62028,21.72804],[88.61049,21.72232],[88.60004,21.71796],[88.59706,21.71568],[88.59723,21.71416],[88.59796,21.71292],[88.60354,21.70777],[88.61092,21.70477],[88.61246,21.70745],[88.61256,21.70882],[88.61616,21.7127],[88.61762,21.71582],[88.6205,21.71858],[88.62364,21.72405],[88.62756,21.72931],[88.62988,21.73614],[88.63003,21.74116],[88.62946,21.74543],[88.62975,21.75147],[88.6293,21.75516],[88.62801,21.7581],[88.62768,21.76141],[88.62527,21.76555],[88.62552,21.76808],[88.62492,21.77009],[88.62568,21.7712],[88.62152,21.78116],[88.62061,21.78238],[88.61861,21.78349],[88.60977,21.78382],[88.6084,21.78459]]],[[[88.42218,21.81058],[88.41988,21.81154],[88.41783,21.8101],[88.3992,21.79229],[88.38706,21.78278],[88.38342,21.77769],[88.38493,21.77422],[88.38817,21.77334],[88.38861,21.76851],[88.39578,21.76168],[88.39657,21.75585],[88.40017,21.75444],[88.40316,21.75611],[88.40365,21.75419],[88.40531,21.75447],[88.40251,21.75085],[88.40114,21.74469],[88.40317,21.73838],[88.41162,21.73446],[88.42138,21.72078],[88.42662,21.71842],[88.42678,21.71513],[88.43008,21.71075],[88.43249,21.70438],[88.43286,21.70219],[88.42885,21.69562],[88.41984,21.69018],[88.41914,21.68293],[88.42102,21.6676],[88.42038,21.65314],[88.43692,21.63249],[88.44113,21.62283],[88.44116,21.61815],[88.43946,21.61316],[88.43463,21.60815],[88.42716,21.60532],[88.43399,21.60371],[88.43977,21.60679],[88.44746,21.60854],[88.45016,21.61177],[88.45529,21.62401],[88.45567,21.62595],[88.45336,21.62582],[88.45946,21.63976],[88.46003,21.64846],[88.46447,21.65657],[88.46514,21.6663],[88.46696,21.66741],[88.46889,21.66649],[88.46898,21.66943],[88.47151,21.67388],[88.46599,21.68745],[88.46003,21.69616],[88.45928,21.70052],[88.45744,21.70387],[88.45491,21.70514],[88.4528,21.71841],[88.45582,21.75003],[88.45305,21.75159],[88.45527,21.75244],[88.45863,21.76361],[88.45825,21.76942],[88.46277,21.78262],[88.47144,21.79247],[88.46642,21.79352],[88.46222,21.78885],[88.45557,21.78913],[88.44713,21.79736],[88.44182,21.80049],[88.43457,21.79813],[88.42999,21.79927],[88.4274,21.80112],[88.42604,21.80919],[88.42218,21.81058]]],[[[88.57968,21.71738],[88.57355,21.72266],[88.57206,21.732],[88.57377,21.74224],[88.57263,21.74784],[88.56812,21.75553],[88.5616,21.76212],[88.56007,21.76792],[88.5599,21.77109],[88.56175,21.77592],[88.56459,21.77962],[88.57404,21.78587],[88.57043,21.79318],[88.56184,21.80249],[88.55697,21.80478],[88.55541,21.80778],[88.54317,21.81171],[88.51617,21.78736],[88.50782,21.77121],[88.50629,21.75836],[88.50819,21.7492],[88.51287,21.73928],[88.51323,21.73566],[88.51817,21.73077],[88.51913,21.72777],[88.51858,21.71341],[88.5223,21.70573],[88.52344,21.70049],[88.52814,21.69242],[88.52588,21.68647],[88.52884,21.6829],[88.53089,21.67084],[88.52986,21.66749],[88.52623,21.66417],[88.52622,21.66287],[88.5311,21.65275],[88.54234,21.6409],[88.5493,21.63841],[88.55649,21.6389],[88.56283,21.63567],[88.56682,21.63507],[88.58187,21.62561],[88.587,21.62015],[88.59492,21.61541],[88.59669,21.6126],[88.60267,21.61254],[88.60608,21.61456],[88.60874,21.61994],[88.60857,21.62255],[88.6078,21.62536],[88.60482,21.62688],[88.59842,21.64335],[88.5945,21.64917],[88.59337,21.65552],[88.59101,21.65834],[88.60269,21.66811],[88.60716,21.6759],[88.6054,21.67872],[88.60862,21.68148],[88.59242,21.69618],[88.58872,21.70405],[88.58841,21.71282],[88.58347,21.71716],[88.57968,21.71738]]],[[[88.19967,21.83595],[88.19791,21.83895],[88.19729,21.84052],[88.19692,21.83979],[88.19675,21.83908],[88.19619,21.83813],[88.19548,21.83742],[88.19453,21.83609],[88.19289,21.83316],[88.19206,21.83123],[88.19206,21.8304],[88.19236,21.82916],[88.19513,21.82463],[88.19555,21.82354],[88.19768,21.82274],[88.19968,21.82075],[88.20179,21.8179],[88.20229,21.82131],[88.20228,21.82273],[88.20191,21.82513],[88.20109,21.82715],[88.20071,21.83075],[88.19967,21.83595]]],[[[88.48318,21.83491],[88.47835,21.83495],[88.47694,21.83406],[88.47512,21.83398],[88.47403,21.83203],[88.47308,21.8293],[88.4676,21.82075],[88.4671,21.82097],[88.46158,21.81877],[88.4581,21.81705],[88.45708,21.81615],[88.45517,21.81553],[88.45189,21.81364],[88.4519,21.81302],[88.45323,21.81079],[88.45751,21.80733],[88.46208,21.80182],[88.46393,21.80021],[88.46985,21.80013],[88.4714,21.79978],[88.47366,21.80019],[88.47772,21.79995],[88.47856,21.80048],[88.48067,21.80053],[88.48546,21.79886],[88.48783,21.80242],[88.49051,21.80393],[88.49375,21.80703],[88.49586,21.80861],[88.49705,21.80907],[88.4999,21.81133],[88.50002,21.81182],[88.49954,21.81259],[88.49882,21.81598],[88.49861,21.81964],[88.49815,21.82112],[88.49716,21.82168],[88.49636,21.82315],[88.49545,21.82325],[88.4955,21.82462],[88.49081,21.82894],[88.48778,21.83428],[88.48673,21.8345],[88.48595,21.83418],[88.48321,21.83416],[88.48318,21.83491]]],[[[88.19072,21.83056],[88.19286,21.83563],[88.19512,21.83904],[88.19521,21.83948],[88.19467,21.84038],[88.19185,21.84346],[88.18812,21.84645],[88.18596,21.84863],[88.18083,21.85301],[88.17683,21.85738],[88.17347,21.86184],[88.17167,21.86499],[88.16916,21.86757],[88.16636,21.86974],[88.16619,21.86825],[88.16665,21.86674],[88.16682,21.86501],[88.16727,21.86386],[88.16792,21.86269],[88.1697,21.86093],[88.17212,21.85774],[88.17483,21.85209],[88.17609,21.84862],[88.17814,21.84472],[88.18236,21.8384],[88.18408,21.83664],[88.18619,21.83374],[88.18876,21.83112],[88.18975,21.83048],[88.19044,21.83035],[88.19072,21.83056]]],[[[88.14858,21.84973],[88.145,21.85617],[88.14094,21.85865],[88.14115,21.86184],[88.13595,21.87535],[88.13181,21.87357],[88.12586,21.86817],[88.12099,21.86272],[88.11714,21.85122],[88.11388,21.85073],[88.1018,21.83255],[88.0961,21.81318],[88.09235,21.80897],[88.08496,21.79403],[88.08403,21.78408],[88.08002,21.7822],[88.07681,21.77742],[88.07341,21.75903],[88.07649,21.75176],[88.07166,21.74941],[88.06996,21.74028],[88.06345,21.73745],[88.06272,21.73547],[88.06559,21.73546],[88.06578,21.73337],[88.05994,21.72996],[88.05521,21.72095],[88.05393,21.71186],[88.05624,21.71157],[88.05693,21.70972],[88.05502,21.7071],[88.05425,21.70029],[88.04977,21.68823],[88.05101,21.68762],[88.04634,21.68697],[88.04335,21.67801],[88.04517,21.67597],[88.04135,21.67556],[88.04191,21.67051],[88.04508,21.66989],[88.04467,21.66658],[88.04318,21.66622],[88.04395,21.66335],[88.04167,21.65539],[88.04169,21.65321],[88.04327,21.65368],[88.0436,21.65163],[88.04135,21.64953],[88.05729,21.63939],[88.06981,21.63601],[88.07039,21.63478],[88.07882,21.63364],[88.08157,21.636],[88.09144,21.6387],[88.0903,21.63142],[88.09134,21.63043],[88.11868,21.6254],[88.1239,21.62573],[88.12774,21.62943],[88.1352,21.62806],[88.14123,21.6333],[88.14261,21.63908],[88.14508,21.63898],[88.14511,21.64696],[88.14344,21.64929],[88.1441,21.66217],[88.14213,21.66347],[88.14331,21.66996],[88.14137,21.67144],[88.14086,21.67483],[88.13473,21.67649],[88.13419,21.67848],[88.14891,21.68009],[88.15324,21.68196],[88.1526,21.69503],[88.15749,21.70826],[88.16533,21.72091],[88.16712,21.73223],[88.17061,21.73632],[88.17125,21.7401],[88.16765,21.75373],[88.16883,21.75564],[88.16891,21.78155],[88.1656,21.79483],[88.16725,21.80295],[88.171,21.80932],[88.16834,21.81358],[88.16866,21.81844],[88.16693,21.8237],[88.1571,21.83209],[88.14858,21.84973]]],[[[88.17427,21.86369],[88.17479,21.8644],[88.17479,21.86492],[88.1742,21.86555],[88.17418,21.86729],[88.17407,21.86774],[88.17357,21.86853],[88.17258,21.86938],[88.17165,21.87065],[88.17064,21.87331],[88.16853,21.87575],[88.1677,21.87685],[88.16677,21.87869],[88.16635,21.87906],[88.16528,21.87916],[88.16502,21.87894],[88.16483,21.87837],[88.16597,21.87608],[88.16701,21.87319],[88.16834,21.87038],[88.16925,21.86879],[88.16975,21.86833],[88.17047,21.86814],[88.17293,21.86492],[88.17383,21.86356],[88.17415,21.86348],[88.17427,21.86369]]],[[[88.56646,21.87999],[88.56211,21.8804],[88.55873,21.87963],[88.55552,21.87772],[88.55459,21.87676],[88.55405,21.87567],[88.55344,21.87211],[88.5539,21.86808],[88.55533,21.86395],[88.5586,21.85695],[88.55946,21.85439],[88.55997,21.85151],[88.5598,21.84679],[88.55826,21.84225],[88.55603,21.83816],[88.55281,21.83437],[88.55188,21.83243],[88.55301,21.83062],[88.55669,21.82769],[88.55739,21.8278],[88.55877,21.8295],[88.56121,21.83483],[88.56261,21.83957],[88.56381,21.8415],[88.56474,21.84386],[88.56541,21.84619],[88.56422,21.84823],[88.56411,21.84892],[88.56491,21.85036],[88.56515,21.852],[88.56534,21.85118],[88.5646,21.84941],[88.56473,21.84826],[88.56527,21.84739],[88.56621,21.84708],[88.56737,21.84878],[88.57305,21.85469],[88.57395,21.85606],[88.57394,21.85964],[88.57425,21.86185],[88.57385,21.86942],[88.57421,21.87554],[88.5744,21.87669],[88.57508,21.8781],[88.57505,21.87899],[88.57442,21.87966],[88.5713,21.87946],[88.56646,21.87999]]],[[[88.56171,21.89724],[88.55519,21.89942],[88.54507,21.90381],[88.543,21.90377],[88.54143,21.90219],[88.541,21.90058],[88.54144,21.89898],[88.54267,21.89754],[88.5468,21.89473],[88.54878,21.89197],[88.54878,21.88692],[88.54998,21.88349],[88.55047,21.87938],[88.54824,21.87552],[88.54262,21.87119],[88.54151,21.86955],[88.54436,21.86089],[88.54326,21.8546],[88.54152,21.8532],[88.53161,21.84882],[88.53089,21.84765],[88.53108,21.84552],[88.53298,21.84118],[88.53356,21.83735],[88.53463,21.83609],[88.53566,21.8335],[88.53792,21.83229],[88.53924,21.83423],[88.53914,21.83694],[88.54238,21.83911],[88.544,21.84299],[88.5427,21.83926],[88.53951,21.83665],[88.5396,21.83425],[88.53881,21.83233],[88.53933,21.8309],[88.54284,21.82961],[88.54411,21.82797],[88.54483,21.82791],[88.5473,21.82158],[88.54792,21.82135],[88.54759,21.82045],[88.54877,21.81787],[88.552,21.81662],[88.55304,21.81661],[88.55417,21.81733],[88.55441,21.82412],[88.55047,21.8309],[88.55027,21.83215],[88.5511,21.83472],[88.55551,21.84081],[88.55777,21.84484],[88.55854,21.85001],[88.55853,21.85212],[88.55762,21.85534],[88.55242,21.86736],[88.55199,21.87174],[88.55298,21.87668],[88.55489,21.87943],[88.55874,21.88139],[88.56841,21.88194],[88.57434,21.8811],[88.57615,21.88306],[88.57559,21.88806],[88.57207,21.89566],[88.57043,21.90049],[88.56995,21.90069],[88.56384,21.89732],[88.56171,21.89724]]],[[[88.13026,21.93016],[88.12869,21.93046],[88.1253,21.93019],[88.12462,21.93061],[88.12363,21.93054],[88.12242,21.92906],[88.12077,21.92795],[88.11849,21.92537],[88.11681,21.92388],[88.11642,21.92339],[88.11535,21.92044],[88.11554,21.91885],[88.1186,21.91293],[88.1191,21.90989],[88.12098,21.90922],[88.12303,21.90699],[88.12372,21.90581],[88.12469,21.9032],[88.12663,21.89997],[88.12755,21.89952],[88.13001,21.89913],[88.13213,21.89972],[88.13333,21.9004],[88.13458,21.90136],[88.13548,21.90257],[88.1377,21.90448],[88.13767,21.90578],[88.13886,21.90637],[88.13974,21.90822],[88.14213,21.91198],[88.14316,21.91431],[88.14502,21.91689],[88.14502,21.91734],[88.1447,21.91768],[88.13867,21.92297],[88.13827,21.92279],[88.13753,21.92163],[88.13705,21.92129],[88.13769,21.92277],[88.13761,21.92343],[88.13664,21.92558],[88.13444,21.92777],[88.1315,21.92968],[88.13026,21.93016]]],[[[88.64859,21.91786],[88.63852,21.9222],[88.63664,21.92178],[88.63117,21.91015],[88.61703,21.89605],[88.60306,21.87448],[88.59791,21.86274],[88.59186,21.85253],[88.58481,21.84498],[88.58021,21.83473],[88.57683,21.81793],[88.57822,21.81349],[88.58631,21.80152],[88.59197,21.79764],[88.59653,21.79709],[88.61002,21.79868],[88.61551,21.79788],[88.62109,21.79664],[88.6314,21.79102],[88.64456,21.78794],[88.64486,21.80768],[88.6459,21.81561],[88.64886,21.82465],[88.65037,21.8369],[88.6505,21.84971],[88.65211,21.85769],[88.65159,21.85977],[88.65464,21.86511],[88.65279,21.87249],[88.65476,21.87538],[88.65667,21.88443],[88.65917,21.88814],[88.66289,21.89788],[88.66595,21.90196],[88.67007,21.91242],[88.67009,21.91422],[88.66501,21.91427],[88.65359,21.91777],[88.64859,21.91786]]],[[[88.93731,21.91475],[88.91744,21.92875],[88.91182,21.93088],[88.90843,21.92434],[88.90259,21.92103],[88.88838,21.91645],[88.88162,21.91698],[88.87489,21.91988],[88.85969,21.91271],[88.8493,21.91272],[88.83861,21.9178],[88.82159,21.93019],[88.81975,21.93061],[88.81901,21.92926],[88.82543,21.91388],[88.83987,21.90639],[88.84964,21.89648],[88.85316,21.88889],[88.85451,21.87968],[88.85374,21.86625],[88.84298,21.85554],[88.8368,21.84303],[88.83739,21.83193],[88.84153,21.81563],[88.83902,21.79444],[88.83491,21.7858],[88.83506,21.78279],[88.85832,21.78104],[88.87334,21.77196],[88.87722,21.76661],[88.88026,21.74586],[88.87161,21.71909],[88.86965,21.70417],[88.87145,21.69483],[88.87969,21.68534],[88.88413,21.66117],[88.89107,21.65239],[88.90473,21.64589],[88.91749,21.63213],[88.92297,21.63231],[88.9286,21.6552],[88.93296,21.66426],[88.94013,21.68904],[88.93949,21.69664],[88.93516,21.70282],[88.92589,21.70612],[88.91467,21.71618],[88.91439,21.73153],[88.92202,21.74183],[88.9223,21.74476],[88.91731,21.75137],[88.91621,21.75905],[88.92084,21.76239],[88.9313,21.74985],[88.93171,21.74443],[88.93091,21.73879],[88.92126,21.72152],[88.93684,21.71267],[88.94639,21.70497],[88.94901,21.70201],[88.95131,21.69385],[88.95283,21.68119],[88.94352,21.66211],[88.94297,21.6567],[88.93872,21.64614],[88.95415,21.62722],[88.97981,21.61541],[88.98947,21.61597],[88.99534,21.62222],[88.99727,21.62197],[88.99914,21.61811],[88.99792,21.61655],[88.99798,21.60323],[89.02378,21.60291],[89.02767,21.60512],[89.03654,21.61833],[89.0352,21.6258],[89.02325,21.63407],[89.01996,21.64043],[89.02133,21.65193],[89.02407,21.65822],[89.02648,21.65819],[89.02701,21.65254],[89.02426,21.64557],[89.02918,21.63513],[89.03788,21.63183],[89.0488,21.62394],[89.05049,21.61557],[89.06813,21.61738],[89.0942,21.64134],[89.09356,21.66368],[89.08126,21.6812],[89.07269,21.68988],[89.06764,21.69107],[89.07186,21.69914],[89.07166,21.70185],[89.07027,21.70615],[89.06409,21.713],[89.06157,21.7223],[89.05561,21.72756],[89.05592,21.73252],[89.03775,21.74449],[89.0323,21.75223],[89.02253,21.76092],[89.01946,21.76615],[89.01237,21.79423],[89.01604,21.81276],[89.02844,21.8314],[89.02915,21.84548],[89.02753,21.85024],[89.03134,21.86396],[89.02482,21.87131],[88.98386,21.89525],[88.93731,21.91475]]],[[[88.56796,21.95848],[88.56343,21.96144],[88.56095,21.96505],[88.55746,21.97218],[88.5563,21.9729],[88.55245,21.97345],[88.54943,21.97312],[88.54547,21.97184],[88.54438,21.97086],[88.54281,21.96498],[88.54267,21.96028],[88.54345,21.95436],[88.54484,21.94917],[88.54716,21.94384],[88.54957,21.94021],[88.5508,21.93587],[88.55123,21.93069],[88.54987,21.923],[88.55213,21.9198],[88.55704,21.91734],[88.56264,21.9155],[88.56679,21.91236],[88.57298,21.90499],[88.57308,21.90216],[88.57492,21.89886],[88.57655,21.89339],[88.58041,21.89254],[88.58257,21.89144],[88.58362,21.89164],[88.58729,21.89395],[88.58951,21.89624],[88.60159,21.9055],[88.60595,21.91138],[88.60685,21.91455],[88.60919,21.91846],[88.60998,21.92471],[88.60929,21.92679],[88.60598,21.93167],[88.59995,21.93731],[88.59488,21.94712],[88.59099,21.95148],[88.57535,21.95953],[88.57206,21.95854],[88.56796,21.95848]]],[[[88.60318,21.99118],[88.60387,21.9936],[88.6071,22.00005],[88.60608,22.00005],[88.60299,21.99745],[88.59964,21.9915],[88.59916,21.991],[88.59697,21.9905],[88.59581,21.98859],[88.59383,21.98832],[88.58811,21.99046],[88.58621,21.99008],[88.58543,21.98963],[88.5859,21.98892],[88.58425,21.98676],[88.57808,21.98209],[88.57657,21.97998],[88.57583,21.97638],[88.576,21.97145],[88.57644,21.97076],[88.5778,21.97067],[88.57776,21.97001],[88.57682,21.97015],[88.57636,21.9697],[88.57679,21.96589],[88.57649,21.96064],[88.57838,21.95898],[88.59197,21.95155],[88.59569,21.9472],[88.60057,21.93786],[88.60303,21.9358],[88.60384,21.93595],[88.60381,21.93509],[88.60451,21.93459],[88.60516,21.93456],[88.60615,21.93565],[88.60813,21.93533],[88.60823,21.93485],[88.60775,21.93459],[88.60892,21.93424],[88.60881,21.93349],[88.60978,21.93294],[88.60875,21.93119],[88.60748,21.93158],[88.60923,21.92965],[88.61039,21.9293],[88.61118,21.92987],[88.60935,21.93084],[88.61027,21.93272],[88.61291,21.93162],[88.61368,21.93213],[88.6145,21.93376],[88.61347,21.93436],[88.61018,21.9341],[88.61038,21.93469],[88.60964,21.93484],[88.6095,21.93533],[88.61227,21.93516],[88.61368,21.93568],[88.61503,21.93751],[88.61378,21.94002],[88.60935,21.94545],[88.60619,21.95074],[88.60337,21.95658],[88.60008,21.96205],[88.59861,21.96758],[88.59916,21.97531],[88.60318,21.99118]]],[[[88.94364,22.00087],[88.94482,21.99329],[88.94436,21.98608],[88.94089,21.97935],[88.93646,21.97457],[88.92611,21.96746],[88.92487,21.96511],[88.92494,21.96127],[88.92842,21.95142],[88.92882,21.94511],[88.93631,21.936],[88.94648,21.92878],[88.9644,21.92467],[88.96763,21.92194],[88.9825,21.91465],[88.99483,21.90616],[88.99951,21.90463],[89.01229,21.90301],[89.01308,21.9074],[89.01441,21.90795],[89.0164,21.91165],[89.01655,21.9139],[89.01931,21.92108],[89.01697,21.92641],[89.0133,21.93152],[89.00685,21.93735],[88.99112,21.94408],[88.98924,21.94782],[88.98857,21.95104],[88.98875,21.95532],[88.9942,21.96484],[89.00495,21.97261],[89.00997,21.9774],[89.00977,21.98033],[89.00654,21.98263],[89.00448,21.98243],[88.99244,21.97242],[88.98759,21.97147],[88.98496,21.97353],[88.98378,21.97602],[88.98439,21.98459],[88.98307,21.98551],[88.97487,21.98674],[88.96885,21.98884],[88.96601,21.99271],[88.96484,21.99554],[88.95616,21.99711],[88.95388,21.99883],[88.9539,21.99996],[88.94628,22.00005],[88.94364,22.00087]]],[[[88.57599,22.61775],[88.5734,22.62003],[88.55974,22.62507],[88.55824,22.62061],[88.55995,22.61833],[88.5534,22.61742],[88.55366,22.61341],[88.55054,22.60814],[88.54652,22.60932],[88.54395,22.60411],[88.54562,22.60337],[88.54557,22.60013],[88.54813,22.59578],[88.55338,22.59217],[88.54709,22.59286],[88.54391,22.58588],[88.54135,22.58522],[88.54209,22.58163],[88.538,22.57895],[88.53797,22.5748],[88.53509,22.57456],[88.52366,22.56475],[88.52201,22.56115],[88.52245,22.55634],[88.52544,22.55278],[88.52225,22.55069],[88.5195,22.54978],[88.51825,22.55133],[88.51262,22.55186],[88.51169,22.55867],[88.49337,22.55482],[88.49308,22.55784],[88.48419,22.56019],[88.48177,22.56711],[88.47677,22.56705],[88.47278,22.57345],[88.4746,22.575],[88.4731,22.57658],[88.46984,22.57329],[88.46594,22.57289],[88.46687,22.56936],[88.46442,22.56565],[88.4584,22.56803],[88.47217,22.55421],[88.47806,22.55067],[88.47779,22.53752],[88.48344,22.52503],[88.48083,22.5195],[88.47454,22.51829],[88.46108,22.52256],[88.45957,22.51914],[88.45571,22.51885],[88.45848,22.51736],[88.45589,22.51507],[88.45429,22.50916],[88.44843,22.50853],[88.44425,22.51175],[88.43974,22.50949],[88.43508,22.51715],[88.42714,22.51857],[88.42055,22.52384],[88.42011,22.51741],[88.41634,22.5142],[88.41581,22.50554],[88.41028,22.50175],[88.41082,22.49823],[88.4132,22.49765],[88.41323,22.49483],[88.40797,22.49337],[88.40631,22.49087],[88.40715,22.48991],[88.4121,22.49123],[88.41602,22.48862],[88.41705,22.48451],[88.41448,22.47779],[88.40688,22.47872],[88.40477,22.47441],[88.40016,22.47388],[88.39814,22.47191],[88.39591,22.47357],[88.39691,22.47176],[88.39347,22.46756],[88.3842,22.46517],[88.37779,22.46551],[88.38271,22.45943],[88.38054,22.4585],[88.37994,22.45607],[88.37659,22.4555],[88.37486,22.45697],[88.37203,22.45203],[88.36891,22.45288],[88.36936,22.45697],[88.3653,22.45415],[88.36197,22.45529],[88.36218,22.45875],[88.35962,22.46084],[88.35975,22.46289],[88.35427,22.46109],[88.35056,22.45692],[88.34587,22.45673],[88.34441,22.46162],[88.34101,22.46322],[88.33244,22.46227],[88.33168,22.46441],[88.33378,22.46711],[88.32896,22.46804],[88.32108,22.46563],[88.31893,22.45752],[88.31098,22.45647],[88.30733,22.45937],[88.30471,22.45904],[88.30267,22.45542],[88.28799,22.45597],[88.29041,22.46585],[88.28957,22.4706],[88.27978,22.47921],[88.27727,22.48432],[88.26831,22.48709],[88.26862,22.4904],[88.27166,22.49152],[88.27541,22.48788],[88.29423,22.48207],[88.29848,22.48423],[88.30356,22.49027],[88.31056,22.49089],[88.31146,22.49261],[88.31109,22.49801],[88.30717,22.49999],[88.30532,22.50802],[88.30237,22.51106],[88.30063,22.51623],[88.29165,22.51709],[88.29004,22.52069],[88.29084,22.52503],[88.2892,22.5274],[88.29116,22.52987],[88.29161,22.53853],[88.27757,22.54298],[88.27078,22.53793],[88.26598,22.5376],[88.26425,22.53462],[88.26109,22.53464],[88.26029,22.5328],[88.25744,22.53655],[88.25568,22.53628],[88.25856,22.5398],[88.25513,22.54308],[88.25444,22.54692],[88.25,22.54516],[88.24003,22.54925],[88.23363,22.54916],[88.23485,22.54191],[88.24203,22.53234],[88.2409,22.52682],[88.23759,22.52174],[88.23252,22.51959],[88.20865,22.5166],[88.19388,22.5064],[88.18371,22.49431],[88.16968,22.48234],[88.16012,22.47903],[88.14306,22.47807],[88.1298,22.47496],[88.12314,22.4712],[88.11838,22.46475],[88.11934,22.45497],[88.12207,22.44846],[88.14174,22.42095],[88.14199,22.41045],[88.13229,22.39865],[88.11986,22.39257],[88.10048,22.37842],[88.08981,22.36159],[88.09088,22.35839],[88.09427,22.35544],[88.09709,22.34808],[88.09601,22.32938],[88.09739,22.30942],[88.08748,22.28548],[88.08353,22.26936],[88.08316,22.25686],[88.08785,22.25597],[88.08845,22.25329],[88.08768,22.24242],[88.08436,22.23368],[88.06905,22.2135],[88.07278,22.20948],[88.08779,22.20784],[88.10037,22.21002],[88.1168,22.20945],[88.13176,22.20209],[88.16341,22.1988],[88.17684,22.19389],[88.18614,22.18774],[88.18801,22.18803],[88.18948,22.18377],[88.20531,22.16454],[88.20382,22.16403],[88.20538,22.1642],[88.21043,22.14895],[88.2119,22.12855],[88.21624,22.12248],[88.21688,22.11204],[88.22084,22.10398],[88.22441,22.08992],[88.22316,22.07069],[88.2161,22.05189],[88.21378,22.03535],[88.21055,22.02795],[88.19264,22.00081],[88.17799,21.98714],[88.16808,21.97473],[88.15338,21.96432],[88.1497,21.95766],[88.15094,21.9539],[88.1669,21.93627],[88.17105,21.92856],[88.17361,21.91181],[88.1646,21.89295],[88.16344,21.88367],[88.17434,21.86899],[88.17749,21.86156],[88.17897,21.86177],[88.18394,21.85469],[88.18611,21.85476],[88.1946,21.84556],[88.19979,21.83597],[88.2024,21.82274],[88.2007,21.81089],[88.20229,21.80708],[88.20392,21.80792],[88.20661,21.79687],[88.21156,21.78981],[88.21529,21.77803],[88.21396,21.76842],[88.21565,21.75731],[88.21121,21.72472],[88.21307,21.71826],[88.21949,21.70783],[88.22043,21.70188],[88.21892,21.69811],[88.21337,21.69369],[88.19923,21.68966],[88.19975,21.6827],[88.20586,21.67542],[88.2152,21.67455],[88.22557,21.67574],[88.23313,21.66882],[88.23165,21.65628],[88.23749,21.64432],[88.23341,21.63405],[88.22111,21.62385],[88.21846,21.61593],[88.22227,21.61194],[88.23086,21.60944],[88.23628,21.60499],[88.2359,21.60199],[88.24556,21.58751],[88.24332,21.5829],[88.24467,21.5787],[88.23705,21.57654],[88.23953,21.57559],[88.24436,21.56589],[88.25399,21.55835],[88.27648,21.55668],[88.28442,21.55902],[88.29353,21.56303],[88.31029,21.58131],[88.30067,21.58831],[88.29493,21.59585],[88.2878,21.59669],[88.28442,21.60071],[88.28675,21.6046],[88.28503,21.6086],[88.2863,21.60967],[88.28678,21.61729],[88.28888,21.62033],[88.28778,21.62401],[88.29685,21.64261],[88.30265,21.66062],[88.30376,21.67024],[88.30117,21.68242],[88.28193,21.70625],[88.28379,21.70696],[88.27935,21.71408],[88.27543,21.72695],[88.26396,21.72894],[88.2615,21.73216],[88.26917,21.74515],[88.27086,21.74988],[88.2702,21.75364],[88.28172,21.76227],[88.27948,21.76573],[88.28184,21.76881],[88.28646,21.78365],[88.28297,21.78946],[88.28683,21.79165],[88.29055,21.7869],[88.29996,21.78141],[88.2991,21.77707],[88.30235,21.76857],[88.30948,21.73385],[88.30615,21.71768],[88.31107,21.71174],[88.3208,21.70874],[88.32908,21.70904],[88.32488,21.71911],[88.32544,21.72464],[88.32725,21.72649],[88.33112,21.72507],[88.33172,21.71816],[88.33389,21.71393],[88.33573,21.71393],[88.3443,21.72104],[88.3399,21.73947],[88.33977,21.75038],[88.33856,21.75136],[88.34281,21.76133],[88.35531,21.76689],[88.37463,21.76813],[88.37617,21.7814],[88.37937,21.78762],[88.40409,21.80009],[88.41115,21.80519],[88.41758,21.81172],[88.41742,21.81316],[88.42588,21.81452],[88.42555,21.81193],[88.42754,21.80957],[88.42993,21.8006],[88.43285,21.80057],[88.43316,21.80303],[88.43529,21.80112],[88.44516,21.80303],[88.4566,21.79301],[88.4604,21.79244],[88.46069,21.79543],[88.44864,21.80588],[88.44737,21.81299],[88.4491,21.81755],[88.45333,21.82195],[88.45551,21.82395],[88.46423,21.82593],[88.46886,21.83436],[88.47329,21.83753],[88.4842,21.8383],[88.48786,21.84038],[88.48878,21.8509],[88.48304,21.87203],[88.47507,21.88984],[88.45788,21.89453],[88.45066,21.90492],[88.44038,21.9057],[88.43431,21.89897],[88.42135,21.90303],[88.41751,21.89901],[88.41805,21.90261],[88.4212,21.90408],[88.4311,21.9012],[88.43876,21.90601],[88.44959,21.90566],[88.45993,21.89424],[88.47554,21.89036],[88.49216,21.88251],[88.49577,21.88366],[88.49691,21.88612],[88.49687,21.87648],[88.5011,21.8738],[88.50094,21.87172],[88.50467,21.86889],[88.51905,21.85969],[88.52537,21.85261],[88.52869,21.8556],[88.53023,21.85397],[88.53717,21.85648],[88.5392,21.86247],[88.53555,21.86434],[88.52929,21.87221],[88.51863,21.87561],[88.52972,21.8725],[88.53876,21.86324],[88.5377,21.8672],[88.53921,21.87326],[88.5465,21.87894],[88.53746,21.87856],[88.54703,21.88042],[88.54758,21.88206],[88.54605,21.89307],[88.53902,21.89911],[88.53957,21.90296],[88.54141,21.90473],[88.54103,21.90742],[88.56024,21.8989],[88.56525,21.89947],[88.56875,21.90408],[88.56743,21.90751],[88.56061,21.9129],[88.55264,21.91517],[88.54883,21.92027],[88.54859,21.93814],[88.54056,21.94955],[88.54254,21.95064],[88.54122,21.96599],[88.5349,21.96873],[88.54122,21.96716],[88.54404,21.97302],[88.55398,21.97636],[88.55973,21.9713],[88.56751,21.96077],[88.57081,21.95972],[88.57448,21.96159],[88.5741,21.9779],[88.58414,21.98971],[88.58089,21.99553],[88.57124,22.00044],[88.57759,21.99861],[88.58116,22.00004],[88.57967,21.99811],[88.58528,21.99035],[88.59482,21.98868],[88.61284,22.0064],[88.62351,22.01146],[88.63488,22.01077],[88.63731,22.0086],[88.63849,22.00414],[88.63766,21.99997],[88.63262,21.99199],[88.62883,21.97148],[88.6279,21.95886],[88.63072,21.95436],[88.63824,21.94937],[88.64389,21.95239],[88.65682,21.95365],[88.67231,21.94745],[88.67862,21.94309],[88.68962,21.94972],[88.69067,21.95568],[88.69345,21.95566],[88.69558,21.95134],[88.69423,21.96597],[88.68965,21.97163],[88.69417,21.9707],[88.70267,21.98683],[88.7102,21.99595],[88.71367,21.99873],[88.73328,22.00666],[88.75146,22.00623],[88.75188,22.00094],[88.75039,21.99757],[88.74084,21.98796],[88.72549,21.97954],[88.72275,21.93215],[88.71656,21.9207],[88.71587,21.90355],[88.71325,21.88991],[88.69888,21.85907],[88.69604,21.84259],[88.71115,21.80689],[88.71234,21.79977],[88.71128,21.78698],[88.70481,21.77165],[88.69459,21.75344],[88.69376,21.74531],[88.7049,21.71826],[88.71141,21.68958],[88.71762,21.6835],[88.72791,21.67721],[88.74479,21.66083],[88.75,21.65817],[88.75712,21.66272],[88.77026,21.66572],[88.79216,21.65618],[88.79645,21.65592],[88.80794,21.66268],[88.80697,21.67577],[88.80993,21.70448],[88.80687,21.70665],[88.79933,21.7063],[88.7687,21.69369],[88.76384,21.69429],[88.75947,21.69701],[88.75655,21.70297],[88.75758,21.7087],[88.76043,21.71293],[88.76656,21.7171],[88.77757,21.72128],[88.77593,21.72537],[88.75761,21.7285],[88.75235,21.7333],[88.75084,21.73783],[88.75318,21.75204],[88.75977,21.7618],[88.7535,21.76311],[88.74834,21.76621],[88.74553,21.77324],[88.76412,21.78957],[88.77023,21.80545],[88.77483,21.81025],[88.77403,21.81677],[88.77704,21.82544],[88.78115,21.82517],[88.77644,21.81641],[88.7777,21.81052],[88.77167,21.80189],[88.76568,21.78636],[88.75013,21.77049],[88.76218,21.76754],[88.76721,21.76331],[88.76534,21.75915],[88.75715,21.75088],[88.7551,21.74448],[88.75587,21.73532],[88.77704,21.73244],[88.7899,21.73787],[88.78408,21.73982],[88.7835,21.74141],[88.79049,21.75003],[88.79057,21.74676],[88.78605,21.74285],[88.78615,21.74138],[88.79146,21.74008],[88.79383,21.73701],[88.7809,21.73196],[88.78439,21.72337],[88.78391,21.71907],[88.78072,21.71443],[88.76266,21.70443],[88.76271,21.70197],[88.76426,21.70037],[88.7708,21.70132],[88.78581,21.71193],[88.80298,21.71753],[88.80934,21.71576],[88.81459,21.71073],[88.81942,21.70073],[88.81744,21.68719],[88.82216,21.67347],[88.82244,21.66702],[88.82003,21.6579],[88.80449,21.63716],[88.81249,21.62928],[88.81729,21.62731],[88.81864,21.62899],[88.82367,21.62554],[88.82478,21.62734],[88.82812,21.62425],[88.84559,21.6191],[88.84647,21.62337],[88.84409,21.62645],[88.84929,21.62707],[88.84991,21.62808],[88.84716,21.6298],[88.85409,21.63345],[88.86155,21.64094],[88.85736,21.65319],[88.84316,21.68245],[88.84042,21.69927],[88.84116,21.71688],[88.84506,21.73035],[88.85211,21.74415],[88.86314,21.75484],[88.8647,21.76144],[88.86374,21.76359],[88.83258,21.7662],[88.82455,21.77437],[88.82148,21.78144],[88.82242,21.79426],[88.83083,21.80807],[88.82222,21.82598],[88.82007,21.83776],[88.83254,21.867],[88.83822,21.87666],[88.8398,21.88636],[88.83339,21.89638],[88.82763,21.90006],[88.81328,21.90383],[88.79904,21.9221],[88.79987,21.92675],[88.80434,21.93269],[88.80575,21.93807],[88.80944,21.94074],[88.82388,21.94105],[88.83079,21.93745],[88.84211,21.92476],[88.85824,21.92036],[88.86767,21.92377],[88.87537,21.92433],[88.882,21.92409],[88.88668,21.92171],[88.89705,21.92413],[88.90436,21.92789],[88.90635,21.93216],[88.90562,21.94957],[88.90829,21.96808],[88.90809,21.97147],[88.90523,21.97467],[88.90313,21.98079],[88.90165,21.99686],[88.90247,22.00385],[88.90808,22.00974],[88.91511,22.00846],[88.91196,21.99544],[88.916,21.98174],[88.91781,21.98093],[88.93293,21.99079],[88.93392,21.9927],[88.93064,22.00052],[88.93565,22.01181],[88.95359,22.01219],[88.9644,22.00609],[88.971,22.00009],[88.96935,21.9938],[88.98378,21.98911],[88.98902,21.98341],[88.98829,21.97439],[88.98938,21.97426],[89.00032,21.98767],[89.01374,21.99653],[89.02479,21.9978],[89.02744,22.0011],[89.03038,22.00105],[89.02717,21.99751],[89.01549,21.99498],[89.00123,21.9864],[89.01182,21.98426],[89.01433,21.97999],[89.0141,21.97672],[89.01245,21.97296],[88.99988,21.96072],[89.0,21.95806],[88.9974,21.95754],[88.9963,21.95494],[88.99739,21.95025],[89.00069,21.94652],[89.0141,21.94062],[89.02782,21.92889],[89.03514,21.92699],[89.05131,21.93003],[89.06628,21.9308],[89.06953,21.93388],[89.07274,21.94444],[89.07967,21.98397],[89.07686,22.00841],[89.07274,22.01926],[89.05533,22.04036],[89.04328,22.06167],[89.03775,22.09235],[89.04007,22.10249],[89.04286,22.10741],[89.05254,22.11769],[89.05967,22.12015],[89.05411,22.13057],[89.04952,22.13579],[89.03341,22.14538],[89.02474,22.15523],[89.02126,22.16772],[89.02345,22.18858],[89.02128,22.1953],[89.01905,22.19826],[89.01392,22.20079],[88.99739,22.20545],[88.99373,22.20314],[88.97968,22.20085],[88.96967,22.20431],[88.96615,22.20703],[88.96188,22.21494],[88.95628,22.24019],[88.9532,22.24587],[88.94954,22.24908],[88.93839,22.25293],[88.93469,22.25823],[88.93539,22.26299],[88.92727,22.26358],[88.92389,22.26024],[88.91579,22.27069],[88.90772,22.26623],[88.90578,22.2517],[88.89562,22.25254],[88.89491,22.25553],[88.8906,22.25894],[88.88828,22.26652],[88.88204,22.26797],[88.87728,22.27516],[88.87216,22.27525],[88.86548,22.27172],[88.8635,22.27713],[88.85763,22.28012],[88.85274,22.28457],[88.8509,22.2886],[88.84819,22.28282],[88.84231,22.2763],[88.83693,22.27508],[88.83489,22.27041],[88.83236,22.26974],[88.82858,22.26528],[88.81912,22.26352],[88.81513,22.26443],[88.81381,22.26952],[88.81522,22.27683],[88.8171,22.27796],[88.81657,22.28313],[88.81321,22.28608],[88.80555,22.28618],[88.80437,22.29104],[88.80446,22.29793],[88.81071,22.31571],[88.8109,22.32039],[88.80317,22.32964],[88.81713,22.35965],[88.82184,22.36101],[88.81998,22.36561],[88.8214,22.37064],[88.812,22.37196],[88.80846,22.37419],[88.80029,22.37386],[88.79661,22.3705],[88.79079,22.37049],[88.78322,22.36753],[88.77879,22.37117],[88.7714,22.37039],[88.76834,22.37573],[88.77286,22.38279],[88.77366,22.3882],[88.76771,22.37992],[88.7651,22.37954],[88.76136,22.38653],[88.76824,22.39077],[88.76799,22.39273],[88.76058,22.39802],[88.75582,22.39281],[88.75112,22.3918],[88.75074,22.39388],[88.7555,22.39839],[88.7528,22.40132],[88.74865,22.39956],[88.7476,22.40125],[88.74218,22.40298],[88.73336,22.41107],[88.73419,22.42062],[88.73167,22.42087],[88.72997,22.42395],[88.72221,22.42763],[88.71573,22.42733],[88.71363,22.42997],[88.70401,22.4335],[88.7023,22.4432],[88.70807,22.45141],[88.70664,22.45684],[88.70318,22.45874],[88.70432,22.46102],[88.69272,22.46245],[88.68687,22.46684],[88.6856,22.47387],[88.67587,22.48135],[88.67569,22.48443],[88.66554,22.491],[88.66578,22.49274],[88.66069,22.49501],[88.64936,22.49546],[88.6522,22.50448],[88.65651,22.50627],[88.65672,22.51048],[88.65477,22.51316],[88.6572,22.51552],[88.65072,22.51955],[88.65276,22.52789],[88.64428,22.53113],[88.6369,22.54316],[88.62944,22.54792],[88.6306,22.55784],[88.6261,22.55908],[88.62549,22.56236],[88.62337,22.56273],[88.6269,22.57633],[88.62293,22.57956],[88.62386,22.5807],[88.62259,22.58228],[88.61989,22.5828],[88.62142,22.5812],[88.62018,22.58075],[88.61291,22.58186],[88.61108,22.59156],[88.60052,22.59242],[88.59928,22.59605],[88.59081,22.59714],[88.59176,22.60711],[88.59446,22.60903],[88.59372,22.61369],[88.58668,22.61524],[88.58198,22.61207],[88.5775,22.61426],[88.57599,22.61775]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"305","area_level":"District","area_name":"Bankura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.91712,23.6295],[86.90846,23.63244],[86.90236,23.63814],[86.90198,23.63016],[86.89515,23.62799],[86.89595,23.62635],[86.89444,23.626],[86.89701,23.61718],[86.89678,23.61402],[86.89518,23.61302],[86.89486,23.60587],[86.88837,23.60234],[86.89129,23.59156],[86.88774,23.58275],[86.89215,23.57499],[86.88323,23.57189],[86.88113,23.57549],[86.87036,23.57012],[86.86626,23.57035],[86.86439,23.56759],[86.87941,23.56712],[86.88018,23.5584],[86.87843,23.55565],[86.88334,23.55788],[86.88555,23.55726],[86.88616,23.55135],[86.88256,23.53768],[86.88445,23.5367],[86.8913,23.53831],[86.89588,23.53435],[86.89711,23.53048],[86.89377,23.5191],[86.89441,23.51161],[86.897,23.50976],[86.89774,23.5032],[86.90117,23.50181],[86.9056,23.49644],[86.90605,23.4925],[86.89278,23.49423],[86.88244,23.49745],[86.88055,23.4907],[86.88163,23.48911],[86.8745,23.48925],[86.87312,23.49094],[86.87105,23.48642],[86.87229,23.48358],[86.8705,23.47563],[86.87275,23.47072],[86.86558,23.46199],[86.85706,23.46608],[86.84633,23.4665],[86.83782,23.46472],[86.82654,23.46606],[86.82702,23.46111],[86.82339,23.45773],[86.82435,23.45473],[86.8232,23.45219],[86.82693,23.44741],[86.82495,23.44078],[86.8257,23.43663],[86.83633,23.43453],[86.83712,23.4387],[86.84089,23.43969],[86.84586,23.43589],[86.85536,23.44175],[86.86116,23.44022],[86.86606,23.43602],[86.86288,23.42651],[86.85989,23.42761],[86.85631,23.42132],[86.84989,23.41944],[86.85066,23.41396],[86.84779,23.40542],[86.85428,23.39628],[86.85012,23.39025],[86.85165,23.38518],[86.84581,23.38167],[86.84177,23.38144],[86.83677,23.38447],[86.83101,23.37994],[86.83304,23.37686],[86.83742,23.3745],[86.835,23.36947],[86.83564,23.36375],[86.83201,23.35802],[86.82433,23.36146],[86.81854,23.36012],[86.81593,23.36112],[86.81555,23.35822],[86.81114,23.35325],[86.81194,23.34808],[86.81011,23.3456],[86.81018,23.34072],[86.80536,23.34304],[86.79915,23.34104],[86.79675,23.34418],[86.79546,23.34173],[86.78891,23.34013],[86.78604,23.33026],[86.78731,23.3232],[86.78509,23.30933],[86.78653,23.30392],[86.79187,23.29899],[86.77895,23.29567],[86.78001,23.28619],[86.78726,23.27626],[86.78384,23.27568],[86.78034,23.27282],[86.78186,23.26965],[86.78064,23.26433],[86.78456,23.26051],[86.78144,23.2551],[86.7807,23.25068],[86.78192,23.2479],[86.77978,23.2427],[86.77784,23.24112],[86.77724,23.24416],[86.77488,23.24513],[86.77022,23.24115],[86.77153,23.23785],[86.77409,23.23766],[86.77499,23.23505],[86.78245,23.22944],[86.7822,23.22385],[86.78511,23.22253],[86.78734,23.21589],[86.79084,23.21121],[86.78893,23.2101],[86.79006,23.20903],[86.78745,23.20454],[86.78431,23.20452],[86.78324,23.20195],[86.77976,23.20038],[86.76873,23.20347],[86.75851,23.1976],[86.75725,23.19323],[86.75863,23.19039],[86.75807,23.18183],[86.75974,23.18128],[86.75902,23.17666],[86.75602,23.17191],[86.75149,23.17289],[86.75431,23.16887],[86.75234,23.16558],[86.74485,23.16767],[86.73909,23.16208],[86.7377,23.15499],[86.73274,23.14836],[86.73077,23.14057],[86.73121,23.13334],[86.72783,23.13121],[86.72175,23.12224],[86.71729,23.12203],[86.7242,23.11565],[86.73035,23.10496],[86.73875,23.10278],[86.74629,23.10308],[86.75018,23.09998],[86.75118,23.09872],[86.74835,23.09846],[86.74824,23.09709],[86.75061,23.09591],[86.7521,23.08841],[86.74763,23.08152],[86.74675,23.07398],[86.74221,23.06953],[86.74055,23.06317],[86.73824,23.05937],[86.73493,23.05779],[86.73063,23.04842],[86.73218,23.04491],[86.73818,23.04583],[86.73915,23.0429],[86.73683,23.0402],[86.72562,23.03457],[86.72728,23.02972],[86.7357,23.02632],[86.73221,23.0178],[86.72928,23.01596],[86.72836,22.99862],[86.71966,22.99117],[86.7188,22.9874],[86.72026,22.98519],[86.71889,22.98443],[86.71724,22.97528],[86.71214,22.97134],[86.7105,22.96605],[86.71392,22.96639],[86.71247,22.96258],[86.70766,22.95468],[86.70413,22.95211],[86.70248,22.95282],[86.69817,22.94104],[86.69073,22.9315],[86.69332,22.92581],[86.69591,22.92576],[86.69803,22.92348],[86.69664,22.91978],[86.69743,22.91673],[86.7019,22.91078],[86.69997,22.90848],[86.70579,22.89937],[86.70508,22.89691],[86.70679,22.89357],[86.70335,22.89366],[86.70131,22.89016],[86.70681,22.88723],[86.70489,22.87558],[86.70176,22.87176],[86.68616,22.86184],[86.67721,22.86168],[86.67314,22.85356],[86.66222,22.85228],[86.65611,22.8365],[86.64791,22.83893],[86.64008,22.82847],[86.63284,22.82407],[86.61728,22.82443],[86.61807,22.82141],[86.61399,22.8157],[86.61289,22.81088],[86.60898,22.80674],[86.61145,22.80356],[86.61131,22.79862],[86.62961,22.79746],[86.65585,22.78893],[86.66039,22.78656],[86.67185,22.77002],[86.67924,22.76765],[86.69582,22.76838],[86.70278,22.75778],[86.71837,22.74456],[86.73237,22.74309],[86.74309,22.73745],[86.74965,22.73731],[86.75719,22.73227],[86.76906,22.72812],[86.77352,22.72253],[86.77294,22.71965],[86.78322,22.71557],[86.78757,22.71165],[86.79152,22.70983],[86.80412,22.70906],[86.81544,22.69921],[86.8353,22.68783],[86.83871,22.68747],[86.8399,22.68437],[86.84588,22.68489],[86.84981,22.68096],[86.85523,22.67133],[86.86166,22.66615],[86.8712,22.66331],[86.88812,22.65489],[86.8905,22.65527],[86.89135,22.65308],[86.89546,22.65152],[86.90031,22.6433],[86.90351,22.64229],[86.90326,22.64029],[86.90495,22.64061],[86.90475,22.6355],[86.91245,22.63548],[86.91792,22.62642],[86.92194,22.63131],[86.92398,22.62816],[86.92597,22.62791],[86.93607,22.6345],[86.93777,22.6333],[86.94281,22.63524],[86.94593,22.63377],[86.94991,22.63714],[86.95365,22.63721],[86.95373,22.64071],[86.95136,22.64159],[86.94873,22.64679],[86.94959,22.64838],[86.9461,22.65068],[86.94854,22.65826],[86.94852,22.66914],[86.94926,22.67001],[86.95782,22.66695],[86.96295,22.67646],[86.96442,22.67596],[86.96462,22.67156],[86.96675,22.66997],[86.97074,22.67012],[86.97266,22.67323],[86.98257,22.67086],[86.98509,22.67176],[86.99432,22.66073],[86.99911,22.65754],[87.00157,22.65829],[87.00161,22.65433],[87.00618,22.64884],[87.00811,22.65091],[87.01171,22.64966],[87.01354,22.6506],[87.0153,22.64864],[87.01721,22.6528],[87.01689,22.65631],[87.02147,22.66323],[87.02015,22.66523],[87.0217,22.66791],[87.01776,22.6685],[87.01914,22.68392],[87.01588,22.69284],[87.02125,22.69769],[87.02153,22.70171],[87.03122,22.70204],[87.03264,22.70964],[87.03669,22.7096],[87.03876,22.71373],[87.03715,22.71898],[87.05324,22.72843],[87.06918,22.73078],[87.0726,22.72974],[87.07593,22.72584],[87.07993,22.73206],[87.08859,22.73914],[87.08314,22.74902],[87.08286,22.76493],[87.07982,22.77107],[87.07804,22.78177],[87.07597,22.78413],[87.07097,22.78525],[87.06494,22.79258],[87.06524,22.80284],[87.05789,22.80957],[87.05548,22.81956],[87.05689,22.82034],[87.05351,22.82283],[87.05497,22.82523],[87.05831,22.82633],[87.06107,22.83128],[87.05989,22.84493],[87.06096,22.84887],[87.06382,22.85075],[87.06905,22.85112],[87.07828,22.84636],[87.09326,22.84428],[87.1024,22.84579],[87.12828,22.84427],[87.13344,22.84875],[87.13563,22.84849],[87.13723,22.85075],[87.14208,22.85232],[87.14321,22.85602],[87.15531,22.86995],[87.16355,22.8765],[87.17133,22.89004],[87.18177,22.89157],[87.18607,22.88856],[87.19254,22.88842],[87.2028,22.89499],[87.21102,22.89398],[87.22144,22.90788],[87.22624,22.9069],[87.23037,22.90281],[87.24736,22.89568],[87.25608,22.89964],[87.25601,22.902],[87.26036,22.90409],[87.26533,22.90465],[87.26798,22.9066],[87.2682,22.90438],[87.27108,22.9035],[87.2762,22.90889],[87.28499,22.91179],[87.28678,22.922],[87.30343,22.9266],[87.31061,22.93132],[87.31944,22.94642],[87.33741,22.94734],[87.35884,22.95519],[87.36201,22.94863],[87.37024,22.94481],[87.37237,22.9421],[87.39238,22.94232],[87.3938,22.94018],[87.3991,22.93901],[87.39937,22.93379],[87.41131,22.93323],[87.42202,22.93016],[87.42205,22.9247],[87.43396,22.92515],[87.44725,22.92081],[87.45963,22.91179],[87.47373,22.91013],[87.47938,22.91396],[87.48341,22.91391],[87.49594,22.92007],[87.49884,22.92212],[87.49952,22.92614],[87.50938,22.92566],[87.51276,22.92163],[87.51376,22.92367],[87.51752,22.92486],[87.5173,22.93093],[87.53127,22.93061],[87.53573,22.92782],[87.53753,22.92322],[87.54099,22.92375],[87.54169,22.92159],[87.54625,22.92155],[87.55239,22.91842],[87.559,22.92013],[87.55914,22.91881],[87.56534,22.91861],[87.56522,22.9161],[87.56706,22.91682],[87.57153,22.91475],[87.57219,22.91344],[87.57029,22.9122],[87.57226,22.91125],[87.57065,22.9095],[87.57518,22.91103],[87.57603,22.91],[87.57454,22.90862],[87.57613,22.90745],[87.5788,22.91005],[87.57857,22.908],[87.58011,22.90903],[87.58055,22.90586],[87.5824,22.90587],[87.58178,22.90339],[87.58473,22.90053],[87.58425,22.89594],[87.58636,22.89404],[87.59165,22.89528],[87.59547,22.89861],[87.59938,22.89802],[87.60062,22.89758],[87.60206,22.89037],[87.61048,22.8911],[87.61136,22.88875],[87.61481,22.88946],[87.61969,22.89412],[87.62606,22.89505],[87.62705,22.89904],[87.63136,22.89916],[87.62679,22.90324],[87.61967,22.90279],[87.6214,22.90826],[87.61991,22.91183],[87.63214,22.91942],[87.64019,22.91843],[87.64312,22.9213],[87.64389,22.93085],[87.64948,22.9388],[87.65093,22.94876],[87.65236,22.94975],[87.6492,22.95023],[87.6503,22.96257],[87.64874,22.96632],[87.64059,22.96681],[87.64214,22.97471],[87.63965,22.97478],[87.64214,22.97495],[87.64274,22.97859],[87.63814,22.98106],[87.642,22.98703],[87.64792,22.98925],[87.6565,22.98699],[87.66827,22.98655],[87.6729,22.98886],[87.67316,22.99113],[87.67575,22.9931],[87.67969,22.99143],[87.68297,22.99313],[87.68775,22.99229],[87.69469,22.99411],[87.6973,22.99996],[87.69612,23.01367],[87.69898,23.01536],[87.69946,23.01792],[87.69386,23.01959],[87.69012,23.01815],[87.68644,23.01988],[87.68724,23.02518],[87.69242,23.02419],[87.7024,23.02735],[87.70552,23.01768],[87.71215,23.01063],[87.72055,23.01928],[87.72215,23.02907],[87.73896,23.02809],[87.7419,23.0317],[87.73918,23.03225],[87.74059,23.03343],[87.7408,23.04338],[87.74438,23.04911],[87.74301,23.05502],[87.75052,23.06258],[87.74991,23.06531],[87.75191,23.06766],[87.75415,23.06732],[87.75795,23.07106],[87.76026,23.07081],[87.76428,23.0754],[87.7615,23.0816],[87.75296,23.08168],[87.75584,23.09385],[87.75404,23.09438],[87.75394,23.09672],[87.7512,23.09787],[87.74925,23.10177],[87.7437,23.10159],[87.74264,23.10463],[87.74768,23.10475],[87.74696,23.11049],[87.73815,23.11681],[87.73811,23.11832],[87.73325,23.12035],[87.73323,23.13085],[87.7308,23.13057],[87.72937,23.12292],[87.73108,23.12281],[87.73103,23.1196],[87.73276,23.11948],[87.73283,23.11745],[87.73052,23.11738],[87.72864,23.12073],[87.72542,23.1157],[87.7185,23.11723],[87.71671,23.12231],[87.70671,23.12351],[87.69204,23.12881],[87.68896,23.1289],[87.68552,23.12222],[87.68409,23.12229],[87.68999,23.1452],[87.68296,23.14611],[87.67813,23.15269],[87.67757,23.15838],[87.67105,23.16099],[87.66976,23.15974],[87.66052,23.16674],[87.66185,23.1711],[87.66428,23.17088],[87.66579,23.16697],[87.669,23.16704],[87.66901,23.16995],[87.66579,23.17013],[87.66541,23.17324],[87.66164,23.17372],[87.66028,23.18435],[87.6555,23.18654],[87.65766,23.18736],[87.65761,23.18897],[87.65362,23.18881],[87.65451,23.19421],[87.65242,23.19372],[87.64973,23.19629],[87.64694,23.19641],[87.64806,23.20652],[87.64977,23.20968],[87.64776,23.21291],[87.64804,23.21706],[87.65555,23.22059],[87.65448,23.22319],[87.65852,23.22225],[87.65648,23.22512],[87.65278,23.22643],[87.6536,23.24088],[87.63496,23.24021],[87.62762,23.24326],[87.62062,23.25072],[87.60799,23.25327],[87.60036,23.25714],[87.59396,23.26883],[87.56224,23.29583],[87.55729,23.3117],[87.53971,23.32043],[87.52287,23.33776],[87.49921,23.34856],[87.49115,23.35622],[87.48886,23.36137],[87.47748,23.37428],[87.47384,23.37561],[87.4683,23.38319],[87.4417,23.40865],[87.4278,23.41693],[87.41953,23.42004],[87.41126,23.42716],[87.37751,23.44013],[87.36059,23.4507],[87.35385,23.45805],[87.34377,23.46493],[87.30285,23.48261],[87.29391,23.49006],[87.27472,23.50065],[87.26764,23.50948],[87.24883,23.51901],[87.24212,23.52878],[87.21674,23.55029],[87.21039,23.55752],[87.1985,23.55996],[87.1848,23.56681],[87.16594,23.56552],[87.15585,23.56835],[87.14808,23.57314],[87.12185,23.5764],[87.09745,23.58982],[87.09473,23.59327],[87.08871,23.59663],[87.07135,23.60172],[87.05963,23.61203],[87.05293,23.61468],[87.03373,23.61802],[87.01982,23.6296],[87.01336,23.63252],[87.00133,23.63159],[86.99547,23.63354],[86.97184,23.62699],[86.95566,23.63323],[86.91712,23.6295]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"306","area_level":"District","area_name":"Purba Bardhaman","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.01265,23.8395],[88.00668,23.84461],[88.00017,23.83959],[87.99648,23.84266],[87.98819,23.84055],[87.97935,23.84465],[87.97617,23.84115],[87.97194,23.84096],[87.97178,23.84451],[87.96814,23.84412],[87.96642,23.84159],[87.96921,23.84008],[87.96646,23.83804],[87.96653,23.83508],[87.97384,23.83426],[87.97477,23.83189],[87.97149,23.831],[87.9707,23.8269],[87.96623,23.82375],[87.96726,23.82253],[87.96652,23.80495],[87.96138,23.80541],[87.96049,23.8035],[87.95824,23.80379],[87.95555,23.78638],[87.95042,23.78075],[87.94969,23.77661],[87.94765,23.77603],[87.94632,23.77736],[87.93857,23.77422],[87.94033,23.76912],[87.93858,23.76904],[87.93822,23.76444],[87.94731,23.76391],[87.94688,23.75663],[87.95538,23.75593],[87.95443,23.75],[87.94816,23.74878],[87.94562,23.74018],[87.93677,23.73909],[87.93487,23.72832],[87.92605,23.73026],[87.91723,23.72938],[87.91752,23.72286],[87.92017,23.72098],[87.91983,23.71501],[87.91837,23.7151],[87.91805,23.71798],[87.91032,23.71929],[87.90881,23.70964],[87.913,23.70236],[87.91546,23.6994],[87.91695,23.69967],[87.91844,23.69558],[87.91719,23.69508],[87.91804,23.6943],[87.91561,23.69477],[87.91439,23.69235],[87.91536,23.68948],[87.91349,23.68643],[87.9157,23.68637],[87.91383,23.68469],[87.91835,23.68151],[87.92262,23.68133],[87.91991,23.6792],[87.91947,23.67411],[87.90985,23.67172],[87.9101,23.66925],[87.91531,23.66844],[87.91114,23.66647],[87.91166,23.66389],[87.91862,23.66242],[87.92091,23.66554],[87.92678,23.66512],[87.9273,23.66046],[87.92956,23.65877],[87.93312,23.6593],[87.93275,23.66193],[87.93626,23.66303],[87.93687,23.65844],[87.93419,23.6467],[87.94463,23.6444],[87.9447,23.64045],[87.95091,23.63732],[87.95403,23.63794],[87.95466,23.63336],[87.96114,23.6304],[87.95309,23.6281],[87.95169,23.61616],[87.94786,23.60752],[87.9488,23.59996],[87.94685,23.5944],[87.93431,23.59026],[87.93192,23.58382],[87.9327,23.57228],[87.92298,23.57082],[87.91563,23.56161],[87.91113,23.55833],[87.90913,23.54636],[87.90443,23.54152],[87.90008,23.5403],[87.89713,23.54183],[87.89102,23.55186],[87.89168,23.55887],[87.88807,23.56264],[87.88535,23.56021],[87.88201,23.55072],[87.87951,23.55191],[87.87632,23.55778],[87.87429,23.55822],[87.87088,23.55709],[87.86913,23.55252],[87.86385,23.54681],[87.85606,23.55019],[87.84783,23.54883],[87.84603,23.55006],[87.8452,23.56193],[87.8377,23.56896],[87.82979,23.56605],[87.81445,23.56791],[87.81063,23.5617],[87.8035,23.55924],[87.79809,23.56611],[87.79594,23.57218],[87.78689,23.57136],[87.78241,23.5729],[87.78369,23.57989],[87.78096,23.58439],[87.77571,23.58419],[87.77172,23.57958],[87.76758,23.57818],[87.76139,23.58729],[87.75152,23.59293],[87.74497,23.59462],[87.7415,23.59322],[87.74096,23.58844],[87.73903,23.58614],[87.73261,23.58818],[87.731,23.59687],[87.72346,23.60231],[87.71978,23.61359],[87.71332,23.62006],[87.7087,23.62087],[87.70465,23.61959],[87.69891,23.60985],[87.68907,23.60668],[87.68258,23.60983],[87.67794,23.62031],[87.67221,23.62084],[87.66454,23.61948],[87.6605,23.60897],[87.65472,23.60345],[87.65043,23.60311],[87.63593,23.6105],[87.6288,23.6058],[87.59759,23.60065],[87.59338,23.59687],[87.58605,23.59498],[87.57682,23.59536],[87.57128,23.59779],[87.56638,23.60396],[87.55794,23.60874],[87.55167,23.60977],[87.54405,23.60611],[87.53479,23.60975],[87.53279,23.60653],[87.5326,23.59893],[87.52851,23.5898],[87.52464,23.58713],[87.51945,23.58878],[87.51505,23.58162],[87.51102,23.57959],[87.51189,23.57874],[87.50452,23.57276],[87.49752,23.55984],[87.49433,23.55886],[87.49066,23.55362],[87.48705,23.55236],[87.49091,23.54807],[87.4919,23.5378],[87.48807,23.53877],[87.48497,23.53757],[87.47822,23.54269],[87.4795,23.53571],[87.47788,23.53339],[87.47517,23.5328],[87.4802,23.53249],[87.4791,23.52811],[87.48312,23.52376],[87.48958,23.52723],[87.49301,23.52573],[87.49799,23.52754],[87.50885,23.5258],[87.5107,23.52356],[87.51433,23.52524],[87.51207,23.52633],[87.51378,23.528],[87.52464,23.5239],[87.53523,23.52715],[87.54055,23.52412],[87.54308,23.52682],[87.54688,23.5267],[87.55095,23.52979],[87.5631,23.52703],[87.56648,23.53047],[87.57047,23.52821],[87.57393,23.53071],[87.57766,23.53098],[87.57678,23.52854],[87.57816,23.52692],[87.57665,23.52697],[87.5747,23.52311],[87.57618,23.51774],[87.5697,23.51002],[87.5702,23.50654],[87.56477,23.50515],[87.55712,23.49357],[87.55295,23.49349],[87.55359,23.49664],[87.55194,23.49704],[87.55133,23.4945],[87.5402,23.49383],[87.54036,23.49081],[87.53812,23.48995],[87.5393,23.48709],[87.53482,23.48658],[87.53543,23.48453],[87.5319,23.48454],[87.53114,23.48292],[87.53328,23.47777],[87.53662,23.47502],[87.54637,23.47754],[87.54327,23.47205],[87.54448,23.46371],[87.54078,23.46811],[87.53911,23.46794],[87.54049,23.45627],[87.53801,23.45555],[87.54215,23.44977],[87.54608,23.44813],[87.55071,23.44874],[87.55568,23.45275],[87.5585,23.4532],[87.55951,23.4578],[87.56038,23.45195],[87.56293,23.44982],[87.56316,23.44696],[87.56598,23.44726],[87.56705,23.43526],[87.56974,23.43183],[87.57038,23.42348],[87.57176,23.42208],[87.57031,23.42086],[87.56789,23.40749],[87.5717,23.40395],[87.57644,23.40397],[87.56967,23.3873],[87.56932,23.3816],[87.5656,23.37763],[87.56591,23.37143],[87.56822,23.36977],[87.56774,23.3654],[87.56426,23.36102],[87.55897,23.36079],[87.55835,23.35703],[87.55538,23.3536],[87.55052,23.35455],[87.5494,23.35076],[87.54106,23.34643],[87.54228,23.34536],[87.54142,23.34399],[87.53505,23.34377],[87.53542,23.34236],[87.5406,23.34107],[87.53993,23.33765],[87.54378,23.33478],[87.54269,23.32926],[87.54584,23.3244],[87.54478,23.32307],[87.54732,23.32255],[87.545,23.32181],[87.54295,23.31813],[87.55729,23.3117],[87.56224,23.29583],[87.59396,23.26883],[87.60036,23.25714],[87.60799,23.25327],[87.62062,23.25072],[87.62762,23.24326],[87.63496,23.24021],[87.6536,23.24088],[87.65278,23.22643],[87.65648,23.22512],[87.65852,23.22225],[87.65448,23.22319],[87.65555,23.22059],[87.64804,23.21706],[87.64776,23.21291],[87.64977,23.20968],[87.64806,23.20652],[87.64694,23.19641],[87.64973,23.19629],[87.65242,23.19372],[87.65451,23.19421],[87.65362,23.18881],[87.65761,23.18897],[87.65766,23.18736],[87.6555,23.18654],[87.66028,23.18435],[87.66164,23.17372],[87.66541,23.17324],[87.66579,23.17013],[87.66901,23.16995],[87.669,23.16704],[87.66579,23.16697],[87.66428,23.17088],[87.66185,23.1711],[87.66052,23.16674],[87.66976,23.15974],[87.67105,23.16099],[87.67757,23.15838],[87.67813,23.15269],[87.68296,23.14611],[87.68999,23.1452],[87.68415,23.1222],[87.68552,23.12222],[87.68896,23.1289],[87.69204,23.12881],[87.70671,23.12351],[87.71671,23.12231],[87.7185,23.11723],[87.72542,23.1157],[87.72864,23.12073],[87.73052,23.11738],[87.73283,23.11745],[87.73276,23.11948],[87.73103,23.1196],[87.73108,23.12281],[87.72937,23.12292],[87.7308,23.13057],[87.73323,23.13085],[87.73325,23.12035],[87.73811,23.11832],[87.73815,23.11681],[87.74651,23.11145],[87.74768,23.10475],[87.74252,23.1043],[87.74429,23.10122],[87.74925,23.10177],[87.7512,23.09787],[87.75394,23.09672],[87.75404,23.09438],[87.75584,23.09385],[87.75296,23.08168],[87.7615,23.0816],[87.7642,23.07513],[87.76026,23.07081],[87.75795,23.07106],[87.75415,23.06732],[87.75191,23.06766],[87.74991,23.06531],[87.75052,23.06258],[87.74301,23.05502],[87.74438,23.04911],[87.7408,23.04338],[87.74059,23.03343],[87.73918,23.03225],[87.74168,23.03124],[87.73757,23.02764],[87.72215,23.02907],[87.72055,23.01928],[87.71215,23.01063],[87.72378,23.00285],[87.72672,22.9969],[87.73879,22.98525],[87.74087,22.96869],[87.74809,22.96166],[87.75164,22.96077],[87.75953,22.96283],[87.76542,22.96113],[87.76645,22.9633],[87.76994,22.96272],[87.77054,22.96449],[87.77566,22.96662],[87.77449,22.96156],[87.77782,22.96057],[87.77747,22.95598],[87.77932,22.95607],[87.77841,22.95466],[87.7795,22.95358],[87.77919,22.94956],[87.77504,22.94866],[87.77506,22.94723],[87.77918,22.94776],[87.78231,22.94273],[87.78108,22.94209],[87.78082,22.93721],[87.77615,22.93617],[87.777,22.93441],[87.7819,22.93628],[87.7865,22.93492],[87.79145,22.94173],[87.80064,22.93773],[87.80298,22.9413],[87.80427,22.95095],[87.80697,22.95117],[87.80873,22.94536],[87.81311,22.94651],[87.8161,22.9449],[87.81692,22.95238],[87.81847,22.95009],[87.82158,22.95002],[87.81846,22.95299],[87.8184,22.95572],[87.81978,22.95625],[87.83188,22.94564],[87.83192,22.94138],[87.8356,22.94063],[87.83563,22.93611],[87.84296,22.93473],[87.84363,22.93931],[87.84636,22.94018],[87.85557,22.9403],[87.85686,22.94204],[87.85814,22.93826],[87.86041,22.93715],[87.86024,22.94208],[87.86357,22.9388],[87.8656,22.93916],[87.86535,22.94134],[87.87449,22.94059],[87.87593,22.94583],[87.87451,22.94921],[87.87527,22.95682],[87.88618,22.96119],[87.88817,22.96061],[87.89106,22.95656],[87.89327,22.95647],[87.89448,22.95248],[87.89198,22.94953],[87.89454,22.94653],[87.89032,22.94653],[87.88897,22.93806],[87.89035,22.93314],[87.89415,22.93217],[87.89461,22.93355],[87.89269,22.93394],[87.89339,22.93651],[87.89601,22.93616],[87.90528,22.94118],[87.91087,22.94112],[87.91351,22.94246],[87.9136,22.94486],[87.9222,22.94352],[87.92378,22.9455],[87.93072,22.94594],[87.93471,22.94393],[87.93471,22.94172],[87.94138,22.94094],[87.9448,22.94428],[87.94746,22.95551],[87.95248,22.95726],[87.95383,22.95413],[87.95772,22.95189],[87.96189,22.95173],[87.96345,22.95998],[87.96911,22.96444],[87.97399,22.96417],[87.97593,22.9626],[87.97841,22.96305],[87.97953,22.96639],[87.98128,22.96602],[87.98256,22.96367],[87.98691,22.96342],[87.98802,22.95874],[87.99614,22.95658],[87.99825,22.9599],[88.0049,22.96051],[88.01019,22.96378],[88.00844,22.96814],[88.00704,22.96699],[88.00472,22.96889],[88.0068,22.98164],[88.02119,22.97661],[88.02022,22.98773],[88.02555,22.98725],[88.02781,22.98492],[88.02836,22.98007],[88.03315,22.97931],[88.03721,22.98462],[88.03633,22.98788],[88.04253,22.98481],[88.04252,22.98944],[88.04988,22.98998],[88.04762,23.00169],[88.0393,23.00739],[88.03659,23.01293],[88.03833,23.016],[88.04486,23.01921],[88.04788,23.02268],[88.04866,23.02716],[88.04639,23.02995],[88.04869,23.03298],[88.0487,23.04024],[88.05102,23.04335],[88.05132,23.04682],[88.05362,23.04648],[88.05378,23.04329],[88.05659,23.04531],[88.05972,23.04429],[88.06435,23.04953],[88.06465,23.04686],[88.06715,23.04545],[88.06876,23.04863],[88.07885,23.04552],[88.08067,23.04714],[88.08867,23.04334],[88.08978,23.04656],[88.09405,23.04915],[88.0956,23.04711],[88.09778,23.04735],[88.09849,23.05091],[88.10077,23.05291],[88.09986,23.05527],[88.11645,23.0529],[88.1218,23.06387],[88.13242,23.06999],[88.13351,23.07697],[88.14228,23.07448],[88.1431,23.07624],[88.14678,23.07744],[88.1523,23.08928],[88.1517,23.09479],[88.15348,23.09714],[88.15708,23.09652],[88.15964,23.116],[88.1636,23.12667],[88.15398,23.12476],[88.15372,23.13329],[88.15777,23.13741],[88.15901,23.13669],[88.16203,23.14285],[88.16462,23.14188],[88.16541,23.14696],[88.16843,23.15007],[88.16879,23.15667],[88.17849,23.15519],[88.18676,23.16112],[88.18997,23.16125],[88.19463,23.15813],[88.20378,23.16059],[88.21009,23.15709],[88.21519,23.1593],[88.22111,23.15253],[88.22245,23.15734],[88.23412,23.15945],[88.23331,23.15604],[88.23109,23.15804],[88.2312,23.15525],[88.23348,23.15402],[88.23986,23.1572],[88.24337,23.15247],[88.24414,23.1463],[88.24606,23.14623],[88.24571,23.14905],[88.24856,23.15199],[88.24825,23.14943],[88.24952,23.15081],[88.25418,23.14799],[88.25379,23.13928],[88.2641,23.13097],[88.27146,23.12872],[88.28236,23.1309],[88.28722,23.12851],[88.2906,23.13115],[88.29668,23.13078],[88.29841,23.12659],[88.30291,23.12861],[88.30948,23.12862],[88.31525,23.12785],[88.31702,23.12622],[88.31711,23.12881],[88.32109,23.13318],[88.33012,23.12859],[88.33788,23.13181],[88.3429,23.13159],[88.34677,23.12243],[88.34511,23.11825],[88.34894,23.11591],[88.35416,23.11928],[88.3593,23.11742],[88.3607,23.11805],[88.36213,23.13275],[88.3611,23.13625],[88.36373,23.13925],[88.36643,23.13957],[88.36288,23.14278],[88.36461,23.15077],[88.36152,23.15294],[88.36818,23.1566],[88.36878,23.1602],[88.37528,23.16319],[88.36796,23.16758],[88.36664,23.17148],[88.3695,23.17402],[88.36757,23.17753],[88.37168,23.17802],[88.37478,23.17648],[88.37515,23.17845],[88.37895,23.17865],[88.38194,23.18073],[88.38202,23.19169],[88.38397,23.19202],[88.38403,23.19543],[88.38159,23.1964],[88.3893,23.19412],[88.3974,23.18843],[88.40082,23.19048],[88.40303,23.18958],[88.40925,23.19752],[88.41502,23.21154],[88.40877,23.21035],[88.39396,23.21384],[88.36889,23.22762],[88.36036,23.2303],[88.35227,23.23863],[88.35106,23.24069],[88.36295,23.25485],[88.35958,23.25723],[88.35688,23.26418],[88.35541,23.26435],[88.34961,23.28048],[88.34296,23.27924],[88.33106,23.28083],[88.33435,23.29369],[88.3438,23.29048],[88.34876,23.29114],[88.34101,23.30078],[88.32791,23.31105],[88.32603,23.31598],[88.32736,23.32275],[88.33542,23.32622],[88.33641,23.32865],[88.33521,23.33126],[88.32928,23.33022],[88.33273,23.3349],[88.33095,23.34158],[88.33933,23.34004],[88.34317,23.34706],[88.3302,23.35434],[88.32863,23.36199],[88.33035,23.36968],[88.33611,23.37736],[88.3529,23.39066],[88.35519,23.39546],[88.35671,23.40692],[88.35449,23.41173],[88.34951,23.41497],[88.34158,23.4169],[88.3311,23.41476],[88.32826,23.41769],[88.32862,23.42064],[88.3355,23.4206],[88.34244,23.42767],[88.35167,23.43115],[88.34943,23.43598],[88.3428,23.43608],[88.34552,23.44779],[88.34,23.45106],[88.33903,23.45751],[88.34869,23.45921],[88.35534,23.45883],[88.35711,23.45742],[88.36181,23.45948],[88.36753,23.45914],[88.3683,23.46156],[88.36395,23.46125],[88.3567,23.46595],[88.3633,23.47321],[88.36478,23.47294],[88.36244,23.48109],[88.37524,23.48816],[88.3891,23.50074],[88.38554,23.50801],[88.36916,23.52326],[88.36631,23.53204],[88.36434,23.53078],[88.35775,23.54016],[88.35873,23.54483],[88.3556,23.54662],[88.35583,23.54318],[88.34674,23.549],[88.32727,23.5474],[88.3193,23.55068],[88.3154,23.54802],[88.31692,23.54625],[88.31463,23.54769],[88.30773,23.543],[88.29849,23.54512],[88.29314,23.54429],[88.29135,23.54015],[88.27502,23.53774],[88.27484,23.54584],[88.27302,23.54838],[88.27497,23.55562],[88.27412,23.56003],[88.27656,23.56177],[88.28359,23.56078],[88.29536,23.56332],[88.30993,23.56816],[88.32134,23.57662],[88.32014,23.58352],[88.318,23.58439],[88.31796,23.58721],[88.31464,23.59128],[88.31031,23.59121],[88.30763,23.58832],[88.28824,23.57832],[88.28459,23.57819],[88.28302,23.58363],[88.2861,23.58838],[88.27979,23.59282],[88.2812,23.59607],[88.2809,23.60685],[88.27747,23.60651],[88.27611,23.59635],[88.27226,23.59849],[88.26764,23.60288],[88.26462,23.61411],[88.26187,23.61789],[88.25758,23.62024],[88.25484,23.6167],[88.25342,23.61929],[88.24744,23.61732],[88.22847,23.61614],[88.22731,23.61392],[88.22917,23.61264],[88.22493,23.61],[88.22421,23.60694],[88.21719,23.60742],[88.21344,23.60865],[88.19697,23.62232],[88.16699,23.62283],[88.15932,23.62614],[88.15336,23.63144],[88.15214,23.63969],[88.14604,23.64705],[88.13721,23.65415],[88.13434,23.66251],[88.13689,23.67327],[88.14442,23.68943],[88.16322,23.71254],[88.18102,23.71726],[88.18301,23.7155],[88.20802,23.71195],[88.21681,23.70853],[88.22677,23.70898],[88.22794,23.70779],[88.23292,23.71179],[88.23245,23.71905],[88.22644,23.72384],[88.21608,23.72901],[88.20369,23.73165],[88.2009,23.73015],[88.19363,23.73496],[88.19177,23.7378],[88.19532,23.74413],[88.1933,23.75074],[88.19448,23.76603],[88.18732,23.77037],[88.1824,23.76621],[88.18099,23.7626],[88.17877,23.76263],[88.17794,23.75907],[88.17005,23.75618],[88.16258,23.75571],[88.15806,23.75113],[88.15553,23.73661],[88.14469,23.73316],[88.1409,23.73412],[88.13958,23.73725],[88.13242,23.73381],[88.13238,23.73684],[88.12934,23.73706],[88.12838,23.73963],[88.13226,23.74062],[88.12318,23.75179],[88.12001,23.7517],[88.11936,23.7497],[88.11663,23.74906],[88.115,23.74922],[88.113,23.75261],[88.10554,23.75385],[88.09415,23.75266],[88.09438,23.74217],[88.0926,23.74029],[88.09363,23.73802],[88.09263,23.7358],[88.08836,23.73467],[88.08887,23.73117],[88.0858,23.72895],[88.08416,23.72504],[88.08057,23.72614],[88.08003,23.72457],[88.08144,23.72406],[88.08002,23.72315],[88.06441,23.72598],[88.06029,23.72233],[88.05265,23.72726],[88.05176,23.73908],[88.04676,23.74137],[88.04655,23.74498],[88.03992,23.74567],[88.03891,23.75869],[88.03677,23.75938],[88.03603,23.76212],[88.03927,23.77065],[88.04172,23.77157],[88.04063,23.77347],[88.05833,23.77228],[88.05968,23.78129],[88.04703,23.78333],[88.04525,23.79045],[88.04047,23.79234],[88.03923,23.79467],[88.03066,23.79669],[88.03055,23.80527],[88.02698,23.81106],[88.02972,23.81781],[88.02556,23.82129],[88.02363,23.82758],[88.01825,23.82889],[88.01609,23.83725],[88.01265,23.8395]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"307","area_level":"District","area_name":"Birbhum","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.79342,24.58214],[87.79134,24.58325],[87.77143,24.58322],[87.77019,24.57049],[87.77564,24.57124],[87.77837,24.57346],[87.79246,24.57166],[87.79496,24.56955],[87.79604,24.56591],[87.79988,24.5648],[87.79993,24.56137],[87.80245,24.56169],[87.80388,24.5547],[87.8082,24.54791],[87.80841,24.54533],[87.80497,24.54208],[87.79999,24.54366],[87.79756,24.5388],[87.80042,24.53342],[87.79923,24.52473],[87.80216,24.52375],[87.80424,24.51923],[87.80194,24.5122],[87.79807,24.51137],[87.79833,24.50848],[87.8024,24.50733],[87.80082,24.50588],[87.80153,24.50441],[87.796,24.50456],[87.79414,24.50114],[87.79663,24.50127],[87.79579,24.49981],[87.79851,24.49705],[87.79866,24.49449],[87.80126,24.49372],[87.80564,24.50061],[87.80312,24.50202],[87.80453,24.50274],[87.80262,24.50823],[87.80459,24.50866],[87.80458,24.51097],[87.80934,24.51452],[87.8117,24.51272],[87.81138,24.50905],[87.81429,24.50884],[87.81348,24.50534],[87.81723,24.50061],[87.81254,24.49971],[87.81341,24.49739],[87.81191,24.49665],[87.81293,24.49365],[87.81131,24.49359],[87.81168,24.49077],[87.81623,24.49094],[87.81712,24.49255],[87.82313,24.49461],[87.82141,24.4965],[87.82384,24.50044],[87.82817,24.49828],[87.82576,24.49062],[87.82443,24.4906],[87.82729,24.48927],[87.82272,24.48845],[87.81662,24.49015],[87.81456,24.48864],[87.8107,24.47636],[87.81835,24.47481],[87.81865,24.47226],[87.82267,24.47103],[87.82119,24.46669],[87.82398,24.46517],[87.82377,24.45846],[87.81893,24.45799],[87.81978,24.45453],[87.8132,24.45671],[87.81355,24.45462],[87.81078,24.45651],[87.80999,24.45489],[87.80314,24.454],[87.80001,24.44591],[87.80394,24.44161],[87.80082,24.44092],[87.80077,24.43733],[87.79456,24.4364],[87.79612,24.43502],[87.79224,24.42774],[87.79415,24.42625],[87.79549,24.42143],[87.78979,24.42066],[87.78883,24.41655],[87.78853,24.4145],[87.79156,24.41433],[87.79331,24.41247],[87.79271,24.41477],[87.79955,24.41221],[87.7999,24.40918],[87.80437,24.4127],[87.80632,24.42014],[87.81128,24.41783],[87.81259,24.41188],[87.80981,24.40575],[87.80848,24.40539],[87.80958,24.40701],[87.80708,24.40701],[87.80219,24.39998],[87.79691,24.40218],[87.79395,24.39929],[87.79407,24.39684],[87.79935,24.39421],[87.79936,24.38716],[87.8011,24.38222],[87.79382,24.38307],[87.78597,24.36249],[87.78369,24.36243],[87.77984,24.35842],[87.77277,24.34977],[87.77123,24.34444],[87.76818,24.34472],[87.7644,24.33933],[87.76257,24.33079],[87.76902,24.32792],[87.77063,24.32214],[87.76297,24.32131],[87.7616,24.30847],[87.75486,24.31025],[87.74821,24.30435],[87.74613,24.30123],[87.74742,24.29924],[87.74315,24.29678],[87.73757,24.29611],[87.73861,24.29449],[87.73226,24.29171],[87.7293,24.28842],[87.71367,24.2944],[87.7133,24.28403],[87.70701,24.27578],[87.70937,24.2716],[87.70658,24.2622],[87.70399,24.26099],[87.69995,24.2627],[87.69739,24.25991],[87.69036,24.25785],[87.6892,24.25326],[87.68666,24.2509],[87.68754,24.24644],[87.67627,24.24897],[87.6739,24.24802],[87.67234,24.24358],[87.66391,24.24566],[87.6622,24.24492],[87.66277,24.23843],[87.65917,24.23612],[87.65466,24.23853],[87.64829,24.25063],[87.63878,24.25438],[87.64071,24.24843],[87.63494,24.24279],[87.63334,24.2373],[87.64395,24.23547],[87.64659,24.23175],[87.64479,24.2294],[87.6465,24.22549],[87.63776,24.21724],[87.63861,24.21399],[87.65434,24.20773],[87.65799,24.20979],[87.66714,24.2067],[87.66944,24.21012],[87.67558,24.20833],[87.67589,24.19976],[87.67728,24.1986],[87.67635,24.19373],[87.68216,24.19251],[87.68627,24.18943],[87.69861,24.18781],[87.69867,24.1808],[87.70237,24.18076],[87.7029,24.1792],[87.69681,24.16663],[87.6957,24.16159],[87.69699,24.15925],[87.69442,24.15024],[87.68885,24.15174],[87.68481,24.14982],[87.68224,24.15096],[87.67873,24.14808],[87.67559,24.15186],[87.67345,24.15154],[87.66842,24.15457],[87.66734,24.15298],[87.66432,24.15759],[87.65755,24.1589],[87.65679,24.15601],[87.65313,24.15872],[87.65187,24.1577],[87.65362,24.1571],[87.653,24.15598],[87.6422,24.15305],[87.64008,24.15723],[87.63271,24.15969],[87.63158,24.16427],[87.62438,24.16519],[87.62222,24.16338],[87.61528,24.16612],[87.61334,24.16444],[87.6083,24.16578],[87.6066,24.16415],[87.60637,24.16064],[87.59546,24.16138],[87.59272,24.16026],[87.58735,24.16155],[87.58501,24.16449],[87.5814,24.16248],[87.58155,24.15929],[87.57615,24.16128],[87.57432,24.16018],[87.57711,24.15653],[87.59388,24.14534],[87.59446,24.1423],[87.60496,24.13292],[87.61023,24.13253],[87.60233,24.12711],[87.59802,24.12811],[87.59564,24.12623],[87.59101,24.12701],[87.58702,24.12374],[87.5826,24.11312],[87.5766,24.11226],[87.5742,24.10799],[87.57434,24.1002],[87.58022,24.08637],[87.57091,24.08838],[87.56837,24.08557],[87.56253,24.0846],[87.55992,24.08197],[87.55392,24.08879],[87.54664,24.08542],[87.54306,24.08609],[87.54237,24.0912],[87.53538,24.09582],[87.5331,24.0998],[87.53219,24.10835],[87.52708,24.10655],[87.52191,24.11367],[87.51612,24.11421],[87.5111,24.112],[87.50439,24.11418],[87.49762,24.11897],[87.49576,24.11279],[87.50041,24.10184],[87.49756,24.09788],[87.49577,24.099],[87.49671,24.09358],[87.49225,24.09381],[87.48983,24.09011],[87.49739,24.08566],[87.50832,24.08543],[87.51075,24.08225],[87.50686,24.07972],[87.50608,24.07559],[87.50259,24.07379],[87.49827,24.07653],[87.49272,24.0769],[87.49061,24.07059],[87.49478,24.0668],[87.49985,24.06516],[87.49873,24.06153],[87.49528,24.05995],[87.49351,24.05416],[87.50939,24.04695],[87.51198,24.03584],[87.50359,24.03183],[87.50293,24.02608],[87.49688,24.02545],[87.49148,24.01862],[87.4822,24.01618],[87.47613,24.01227],[87.47235,24.01634],[87.46889,24.01405],[87.46165,24.01324],[87.45936,24.01882],[87.45829,24.01669],[87.4523,24.01654],[87.45089,24.01802],[87.44618,24.01377],[87.44453,24.0151],[87.43834,24.01355],[87.4387,24.00894],[87.44139,24.01137],[87.44876,24.01137],[87.44935,24.00878],[87.44384,24.00697],[87.44525,24.00202],[87.4555,24.00191],[87.45515,24.0003],[87.46169,23.99487],[87.46217,23.98907],[87.46039,23.98383],[87.4495,23.98796],[87.44572,23.98209],[87.43677,23.98212],[87.42922,23.98645],[87.42772,23.99235],[87.42323,23.9937],[87.42141,23.99231],[87.42037,23.99343],[87.41657,23.99265],[87.403,23.99751],[87.39462,24.00275],[87.38015,24.00408],[87.3791,24.00652],[87.37512,24.00895],[87.36042,24.01309],[87.35813,24.01183],[87.35701,24.00611],[87.35199,23.99918],[87.33767,24.00002],[87.32817,23.99867],[87.32203,24.00305],[87.31917,24.00848],[87.32363,24.00989],[87.32319,24.01264],[87.32769,24.01855],[87.3358,24.02068],[87.33629,24.02603],[87.33958,24.02652],[87.33712,24.03431],[87.32701,24.03286],[87.31576,24.03556],[87.30737,24.03183],[87.29258,24.03344],[87.28746,24.02886],[87.27889,24.03333],[87.27552,24.03295],[87.2676,24.03776],[87.26073,24.03739],[87.25353,24.04296],[87.2454,24.04506],[87.24128,24.04189],[87.2405,24.0384],[87.23443,24.03249],[87.23528,24.02685],[87.23289,24.02374],[87.23503,24.02018],[87.24456,24.01664],[87.24091,24.01191],[87.2505,23.99704],[87.25341,23.99624],[87.25343,23.99921],[87.26203,24.00322],[87.26416,24.00061],[87.26808,23.98733],[87.26691,23.98221],[87.26262,23.98126],[87.26038,23.97216],[87.26093,23.96861],[87.26587,23.96566],[87.27093,23.96747],[87.27587,23.96542],[87.27979,23.96056],[87.29307,23.95884],[87.29357,23.95769],[87.28977,23.9495],[87.29082,23.94167],[87.28527,23.93934],[87.28379,23.93577],[87.28401,23.92957],[87.2882,23.9269],[87.28354,23.92091],[87.29164,23.9154],[87.29125,23.9051],[87.29503,23.90234],[87.28822,23.89855],[87.29111,23.89328],[87.2845,23.88892],[87.2854,23.88392],[87.28349,23.88945],[87.27543,23.88475],[87.27493,23.88175],[87.26915,23.87458],[87.25905,23.88317],[87.26338,23.88248],[87.26198,23.88447],[87.26225,23.88852],[87.25844,23.89409],[87.25889,23.89954],[87.25457,23.89997],[87.25876,23.90329],[87.25828,23.90631],[87.25216,23.91303],[87.24512,23.9082],[87.24655,23.9056],[87.2444,23.90309],[87.24544,23.89528],[87.24306,23.89338],[87.24406,23.89173],[87.24258,23.88815],[87.24274,23.88411],[87.24457,23.88213],[87.24149,23.87641],[87.24153,23.86966],[87.24873,23.86874],[87.24507,23.86486],[87.24648,23.86281],[87.24429,23.86024],[87.2443,23.85694],[87.24665,23.85448],[87.24906,23.85554],[87.25,23.85004],[87.25494,23.84704],[87.25129,23.84051],[87.24768,23.83896],[87.24893,23.83525],[87.24431,23.83205],[87.2464,23.83156],[87.2387,23.82643],[87.23088,23.82868],[87.23041,23.82565],[87.2279,23.82511],[87.22471,23.82764],[87.2174,23.82926],[87.21654,23.83171],[87.2224,23.83767],[87.22321,23.84562],[87.23048,23.84591],[87.23732,23.8544],[87.23368,23.85713],[87.2232,23.85824],[87.22121,23.86057],[87.2199,23.85877],[87.22058,23.85673],[87.21388,23.85056],[87.2122,23.85353],[87.20581,23.85633],[87.20307,23.84775],[87.20113,23.85019],[87.19627,23.84963],[87.19241,23.84365],[87.18858,23.84315],[87.1889,23.84728],[87.18733,23.84877],[87.19331,23.85251],[87.1961,23.85781],[87.19061,23.85738],[87.18734,23.85959],[87.1799,23.85197],[87.17393,23.85475],[87.17248,23.85868],[87.16452,23.86523],[87.15531,23.86522],[87.15135,23.86726],[87.14831,23.86625],[87.13392,23.87017],[87.12933,23.86863],[87.13002,23.85391],[87.13956,23.84841],[87.15372,23.82947],[87.15674,23.83154],[87.15975,23.83131],[87.16361,23.82917],[87.16331,23.82656],[87.16711,23.82515],[87.16438,23.81813],[87.15859,23.81453],[87.15498,23.80337],[87.15283,23.80291],[87.14951,23.79711],[87.14376,23.79934],[87.1399,23.80423],[87.13115,23.79793],[87.12348,23.79926],[87.12199,23.79664],[87.1183,23.79748],[87.11068,23.80055],[87.11053,23.80316],[87.11266,23.80536],[87.11842,23.80251],[87.11887,23.80524],[87.11643,23.8077],[87.10833,23.8082],[87.1071,23.80449],[87.10332,23.80453],[87.09699,23.81289],[87.0918,23.81537],[87.089,23.81381],[87.08671,23.80897],[87.10104,23.79654],[87.11535,23.77371],[87.12011,23.76857],[87.13013,23.76344],[87.13847,23.75674],[87.15095,23.75206],[87.15514,23.74873],[87.16388,23.75031],[87.16596,23.74768],[87.17015,23.74801],[87.1768,23.75173],[87.18539,23.75177],[87.19151,23.74879],[87.20981,23.74995],[87.21417,23.74602],[87.21788,23.74497],[87.22078,23.741],[87.22577,23.74016],[87.24268,23.7446],[87.24756,23.7437],[87.24965,23.74638],[87.25532,23.74872],[87.264,23.74942],[87.26841,23.7482],[87.27066,23.74547],[87.27912,23.72885],[87.29312,23.72223],[87.31249,23.72288],[87.33095,23.71742],[87.3411,23.72273],[87.3552,23.71984],[87.36034,23.71447],[87.36368,23.70541],[87.36706,23.70227],[87.38786,23.69914],[87.41461,23.68484],[87.41735,23.67764],[87.40958,23.66153],[87.40997,23.65763],[87.41757,23.64746],[87.42389,23.64502],[87.42495,23.64135],[87.43307,23.63247],[87.44245,23.61563],[87.45166,23.61189],[87.47364,23.61278],[87.48637,23.60883],[87.49871,23.60084],[87.5023,23.60103],[87.50664,23.60281],[87.5103,23.60658],[87.51264,23.61646],[87.51459,23.61836],[87.52635,23.62072],[87.53152,23.61814],[87.53377,23.61039],[87.53994,23.60709],[87.54405,23.60611],[87.55232,23.60986],[87.55794,23.60874],[87.56638,23.60396],[87.57128,23.59779],[87.57682,23.59536],[87.58459,23.59486],[87.59338,23.59687],[87.59759,23.60065],[87.6288,23.6058],[87.63593,23.6105],[87.65043,23.60311],[87.65472,23.60345],[87.6605,23.60897],[87.66297,23.61685],[87.66584,23.6203],[87.67794,23.62031],[87.68258,23.60983],[87.68907,23.60668],[87.69891,23.60985],[87.70465,23.61959],[87.71149,23.6205],[87.71778,23.61672],[87.72267,23.6035],[87.72545,23.59976],[87.731,23.59687],[87.73207,23.58868],[87.73664,23.5862],[87.74037,23.58726],[87.74118,23.59272],[87.74497,23.59462],[87.75152,23.59293],[87.76139,23.58729],[87.76758,23.57818],[87.77172,23.57958],[87.77571,23.58419],[87.78096,23.58439],[87.78369,23.57989],[87.78241,23.5729],[87.78689,23.57136],[87.79594,23.57218],[87.79809,23.56611],[87.8035,23.55924],[87.81063,23.5617],[87.81445,23.56791],[87.82979,23.56605],[87.8377,23.56896],[87.8452,23.56193],[87.84493,23.55201],[87.84783,23.54883],[87.85606,23.55019],[87.86385,23.54681],[87.86913,23.55252],[87.87088,23.55709],[87.87429,23.55822],[87.87632,23.55778],[87.87951,23.55191],[87.88201,23.55072],[87.88535,23.56021],[87.88807,23.56264],[87.89168,23.55887],[87.89146,23.55086],[87.89713,23.54183],[87.90008,23.5403],[87.90667,23.54305],[87.91101,23.55192],[87.91062,23.55765],[87.92298,23.57082],[87.9327,23.57228],[87.93192,23.58382],[87.93329,23.58869],[87.93701,23.59211],[87.94685,23.5944],[87.9488,23.59996],[87.94786,23.60752],[87.95169,23.61616],[87.95309,23.6281],[87.96114,23.6304],[87.95466,23.63336],[87.95403,23.63794],[87.95091,23.63732],[87.9447,23.64045],[87.94463,23.6444],[87.93419,23.6467],[87.93687,23.65844],[87.93626,23.66303],[87.93275,23.66193],[87.93312,23.6593],[87.92956,23.65877],[87.9273,23.66046],[87.92678,23.66512],[87.92091,23.66554],[87.91862,23.66242],[87.91166,23.66389],[87.91114,23.66647],[87.91531,23.66844],[87.9101,23.66925],[87.90985,23.67172],[87.91947,23.67411],[87.91991,23.6792],[87.92262,23.68133],[87.91835,23.68151],[87.91383,23.68469],[87.9157,23.68637],[87.91349,23.68643],[87.91536,23.68948],[87.91439,23.69235],[87.91561,23.69477],[87.91804,23.6943],[87.91719,23.69508],[87.91844,23.69558],[87.91695,23.69967],[87.91546,23.6994],[87.913,23.70236],[87.90881,23.70964],[87.90964,23.7158],[87.91047,23.71947],[87.91805,23.71798],[87.91837,23.7151],[87.91983,23.71501],[87.92017,23.72098],[87.91752,23.72286],[87.91723,23.72938],[87.92605,23.73026],[87.93487,23.72832],[87.93677,23.73909],[87.94562,23.74018],[87.94816,23.74878],[87.95431,23.74976],[87.95538,23.75593],[87.94688,23.75663],[87.94731,23.76391],[87.93822,23.76444],[87.93858,23.76904],[87.94033,23.76912],[87.93857,23.77422],[87.94632,23.77736],[87.94765,23.77603],[87.94969,23.77661],[87.95042,23.78075],[87.95555,23.78638],[87.95824,23.80379],[87.96049,23.8035],[87.96138,23.80541],[87.96507,23.80508],[87.9658,23.80898],[87.9576,23.81063],[87.95483,23.80913],[87.94918,23.81259],[87.94876,23.81634],[87.94554,23.81968],[87.92909,23.82617],[87.93159,23.83157],[87.93399,23.83153],[87.93478,23.83371],[87.92727,23.83776],[87.92563,23.84095],[87.91869,23.84316],[87.91823,23.84164],[87.91531,23.84178],[87.91418,23.84424],[87.90582,23.84536],[87.90441,23.84454],[87.90344,23.83868],[87.89055,23.84],[87.88915,23.84132],[87.89106,23.84914],[87.88536,23.85659],[87.88633,23.86243],[87.87934,23.86015],[87.87719,23.8586],[87.87726,23.85478],[87.87515,23.85494],[87.87461,23.85689],[87.87185,23.85679],[87.87317,23.8585],[87.86987,23.86091],[87.86986,23.86978],[87.86758,23.87174],[87.86188,23.87085],[87.85787,23.87246],[87.86231,23.8755],[87.86367,23.87836],[87.86084,23.88178],[87.85242,23.88287],[87.85297,23.88602],[87.84729,23.88924],[87.84639,23.89501],[87.84879,23.90186],[87.84316,23.90509],[87.84324,23.91446],[87.84416,23.91625],[87.85702,23.91779],[87.86003,23.92092],[87.86322,23.91888],[87.86609,23.91924],[87.8657,23.92251],[87.86046,23.92963],[87.86157,23.93356],[87.86584,23.93593],[87.86734,23.94184],[87.86598,23.94454],[87.86485,23.94343],[87.86119,23.94611],[87.86393,23.95955],[87.86056,23.96495],[87.84916,23.9671],[87.84786,23.97135],[87.8563,23.9731],[87.85848,23.97568],[87.85827,23.98264],[87.8606,23.98451],[87.85629,23.99036],[87.85762,23.9987],[87.86413,24.00114],[87.86719,24.00969],[87.86927,24.01124],[87.86889,24.01688],[87.85998,24.0207],[87.86042,24.02614],[87.86943,24.02732],[87.87005,24.02982],[87.87356,24.0321],[87.87475,24.04004],[87.88235,24.04297],[87.89432,24.04471],[87.89647,24.04355],[87.89565,24.04701],[87.89801,24.06018],[87.89671,24.0665],[87.89374,24.06778],[87.89537,24.08161],[87.89956,24.08526],[87.89928,24.0897],[87.91033,24.09158],[87.90867,24.09423],[87.91246,24.0998],[87.90804,24.10414],[87.90936,24.10566],[87.90703,24.10735],[87.90257,24.10428],[87.89402,24.10612],[87.89601,24.10915],[87.89506,24.11431],[87.89174,24.11417],[87.89088,24.11547],[87.89635,24.11798],[87.90187,24.12673],[87.90504,24.12657],[87.90479,24.12953],[87.91024,24.1348],[87.90853,24.13635],[87.91024,24.13723],[87.9093,24.14335],[87.8987,24.14365],[87.89686,24.14636],[87.89988,24.14988],[87.8973,24.1534],[87.90308,24.15392],[87.90291,24.15845],[87.89929,24.15907],[87.89936,24.16184],[87.90525,24.16309],[87.90615,24.16614],[87.90989,24.16229],[87.9141,24.16277],[87.91843,24.16764],[87.92415,24.16971],[87.92675,24.17412],[87.92841,24.17237],[87.92886,24.17687],[87.93012,24.1768],[87.93007,24.17455],[87.93186,24.17441],[87.93225,24.17805],[87.93359,24.17696],[87.9353,24.18126],[87.93127,24.1814],[87.92901,24.18517],[87.92616,24.18487],[87.92579,24.18231],[87.92482,24.18447],[87.92242,24.18481],[87.92257,24.18753],[87.92014,24.18847],[87.92219,24.19579],[87.92571,24.19591],[87.92668,24.19877],[87.93082,24.20024],[87.93734,24.19945],[87.93746,24.19765],[87.94112,24.19613],[87.94756,24.19592],[87.949,24.19321],[87.9569,24.19007],[87.96428,24.19057],[87.96794,24.18929],[87.97356,24.19441],[87.97722,24.19115],[87.98321,24.19135],[87.9892,24.20657],[87.98942,24.21061],[87.98662,24.21087],[87.9865,24.21264],[87.99081,24.21289],[87.99188,24.21016],[87.99019,24.20771],[87.99182,24.2065],[88.0,24.21152],[88.00145,24.2145],[88.00462,24.21502],[88.00218,24.21604],[88.00398,24.21654],[88.00171,24.21804],[88.00603,24.2192],[88.00496,24.22152],[88.00595,24.22464],[87.99807,24.22704],[87.99751,24.23098],[87.9957,24.23227],[87.99771,24.23813],[87.99722,24.24303],[88.00979,24.24396],[88.01444,24.24244],[88.02255,24.24422],[88.02476,24.24816],[88.0222,24.2488],[88.02504,24.26154],[88.02227,24.26295],[88.02233,24.26498],[88.0167,24.27071],[88.01757,24.27222],[88.01586,24.27502],[88.01721,24.27843],[88.01592,24.27997],[88.01709,24.28399],[88.01558,24.28252],[88.01522,24.28472],[88.01365,24.28361],[88.01282,24.28456],[88.01615,24.28626],[88.0137,24.28721],[88.01919,24.29089],[88.01515,24.29455],[88.01639,24.29637],[88.01417,24.30173],[88.0162,24.30387],[88.01717,24.31105],[88.01434,24.30938],[88.01329,24.31157],[88.01127,24.31181],[88.01199,24.31454],[88.00934,24.31297],[88.00698,24.31453],[88.00466,24.31209],[88.00294,24.31434],[87.99402,24.31318],[87.99105,24.31529],[87.99764,24.31886],[87.99495,24.32014],[87.99643,24.32215],[87.99103,24.32821],[87.99301,24.33032],[87.98843,24.33126],[87.98635,24.33263],[87.98642,24.33444],[87.98322,24.33316],[87.98227,24.33452],[87.98188,24.33324],[87.98026,24.3351],[87.98236,24.33552],[87.98137,24.33751],[87.97814,24.33707],[87.97698,24.33895],[87.97525,24.33695],[87.97219,24.33837],[87.97071,24.33796],[87.971,24.33622],[87.9672,24.33704],[87.96348,24.33473],[87.9636,24.33771],[87.95868,24.33901],[87.95707,24.3423],[87.95797,24.35076],[87.95496,24.35695],[87.95541,24.3635],[87.95835,24.36692],[87.95746,24.36846],[87.95948,24.37339],[87.967,24.37157],[87.97168,24.37252],[87.97297,24.37505],[87.9736,24.37756],[87.96927,24.37983],[87.97166,24.38903],[87.97097,24.39222],[87.97306,24.39516],[87.97051,24.40039],[87.97405,24.41076],[87.97567,24.41163],[87.97463,24.41401],[87.97871,24.41493],[87.97763,24.41745],[87.97912,24.42409],[87.97504,24.42596],[87.97565,24.44011],[87.97208,24.4482],[87.97296,24.4564],[87.97687,24.45887],[87.97702,24.46152],[87.97384,24.46336],[87.97545,24.46897],[87.9741,24.47393],[87.9708,24.47737],[87.96823,24.47735],[87.96802,24.47597],[87.965,24.47909],[87.9661,24.48366],[87.96408,24.48645],[87.95381,24.48903],[87.95219,24.48782],[87.95014,24.4895],[87.9442,24.48728],[87.94311,24.48982],[87.94387,24.49471],[87.94615,24.49469],[87.94721,24.49687],[87.94781,24.49964],[87.94453,24.50061],[87.94705,24.5076],[87.94675,24.51127],[87.95037,24.51771],[87.9394,24.52007],[87.94063,24.52498],[87.93826,24.52756],[87.9379,24.53137],[87.93194,24.53753],[87.92749,24.53673],[87.92384,24.54055],[87.92353,24.54426],[87.91558,24.5413],[87.9116,24.54225],[87.90709,24.54067],[87.90342,24.54249],[87.8988,24.54068],[87.89134,24.5423],[87.88932,24.55103],[87.8914,24.55446],[87.88977,24.56558],[87.86922,24.5645],[87.86938,24.55602],[87.86087,24.55693],[87.86051,24.55883],[87.85644,24.5581],[87.85235,24.56177],[87.85328,24.55764],[87.84941,24.55384],[87.84792,24.5573],[87.84405,24.55743],[87.84082,24.55979],[87.82752,24.55799],[87.82431,24.56146],[87.82534,24.56913],[87.81696,24.57339],[87.81218,24.57856],[87.79342,24.58214]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"308","area_level":"District","area_name":"Cooch Behar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[89.81613,26.34273],[89.80674,26.3491],[89.80228,26.35057],[89.80001,26.35061],[89.7977,26.35032],[89.79559,26.34937],[89.79537,26.34646],[89.79408,26.34383],[89.79159,26.34269],[89.78989,26.34258],[89.78972,26.34183],[89.79015,26.34116],[89.79341,26.34139],[89.7964,26.33969],[89.79806,26.33785],[89.79612,26.33299],[89.79983,26.32973],[89.80283,26.32965],[89.80526,26.32841],[89.808,26.32651],[89.81114,26.32371],[89.8147,26.32165],[89.81741,26.32094],[89.82024,26.32325],[89.82312,26.32794],[89.82303,26.32978],[89.81968,26.33302],[89.81921,26.33489],[89.81937,26.33683],[89.81856,26.33883],[89.81613,26.34273]]],[[[89.65558,26.44083],[89.65553,26.44179],[89.65465,26.44187],[89.65464,26.44065],[89.65493,26.43994],[89.65524,26.43987],[89.6559,26.43985],[89.65629,26.43962],[89.65658,26.43927],[89.65734,26.43912],[89.65779,26.44007],[89.65821,26.44033],[89.65835,26.44068],[89.65831,26.44094],[89.65817,26.44106],[89.65785,26.4409],[89.65685,26.44059],[89.65567,26.44054],[89.65558,26.44083]]],[[[88.99255,26.53355],[88.98562,26.53544],[88.96903,26.54636],[88.96757,26.53871],[88.97056,26.53129],[88.96718,26.52481],[88.96217,26.52494],[88.95699,26.51514],[88.95671,26.51162],[88.95486,26.51067],[88.95482,26.50765],[88.95269,26.50586],[88.94189,26.50585],[88.94001,26.50426],[88.94023,26.50047],[88.94341,26.49733],[88.93966,26.48534],[88.94643,26.47535],[88.94038,26.47245],[88.93699,26.46551],[88.92756,26.46567],[88.92589,26.46794],[88.92631,26.47068],[88.91523,26.47089],[88.9108,26.47338],[88.90839,26.47684],[88.90448,26.47651],[88.90358,26.47328],[88.90567,26.47277],[88.90571,26.4714],[88.90207,26.47267],[88.89929,26.47064],[88.8993,26.46789],[88.90479,26.4658],[88.90731,26.46962],[88.91018,26.46942],[88.91031,26.46511],[88.91253,26.46461],[88.91269,26.46172],[88.91731,26.46063],[88.91395,26.45977],[88.91592,26.45893],[88.91331,26.45682],[88.91441,26.45259],[88.90844,26.45208],[88.90425,26.44249],[88.89903,26.4383],[88.88728,26.43819],[88.88986,26.43289],[88.88713,26.43172],[88.88825,26.42974],[88.88717,26.42639],[88.88366,26.42556],[88.88495,26.41661],[88.88316,26.41533],[88.88163,26.40847],[88.87981,26.40743],[88.87951,26.40426],[88.86985,26.39936],[88.86684,26.39299],[88.85496,26.39404],[88.85252,26.39027],[88.85315,26.38642],[88.85049,26.38506],[88.84394,26.38452],[88.83948,26.38685],[88.83426,26.38029],[88.81986,26.37744],[88.80988,26.37754],[88.80741,26.37934],[88.80084,26.37537],[88.79877,26.3758],[88.7915,26.38435],[88.78925,26.38803],[88.7895,26.39253],[88.78607,26.39291],[88.78396,26.39791],[88.77513,26.39868],[88.77397,26.39545],[88.76969,26.39472],[88.75737,26.37609],[88.75618,26.36841],[88.74923,26.36086],[88.748,26.35521],[88.75081,26.34691],[88.75474,26.343],[88.75416,26.33779],[88.75978,26.3353],[88.76132,26.33286],[88.75656,26.32126],[88.7579,26.3131],[88.75664,26.31067],[88.75987,26.30428],[88.75986,26.30021],[88.76411,26.29889],[88.7719,26.30056],[88.77624,26.30362],[88.78281,26.30316],[88.79356,26.30997],[88.80193,26.30621],[88.81315,26.29711],[88.81911,26.29449],[88.81328,26.28845],[88.81133,26.27734],[88.81002,26.27681],[88.81044,26.27407],[88.81384,26.27337],[88.81499,26.26899],[88.81468,26.26514],[88.81217,26.26477],[88.81376,26.2587],[88.81294,26.25599],[88.81398,26.25425],[88.81909,26.25524],[88.81957,26.25379],[88.82324,26.25334],[88.82348,26.2485],[88.82916,26.24971],[88.82973,26.24639],[88.82673,26.2437],[88.82767,26.23964],[88.83106,26.24018],[88.83196,26.23824],[88.83809,26.23815],[88.83828,26.23225],[88.84231,26.23058],[88.84393,26.23057],[88.84379,26.23253],[88.8519,26.2351],[88.85982,26.23142],[88.87167,26.23404],[88.87289,26.2329],[88.87786,26.23338],[88.87646,26.23719],[88.87769,26.24219],[88.87222,26.23991],[88.87163,26.24495],[88.86815,26.24565],[88.86734,26.24973],[88.86147,26.252],[88.86133,26.26368],[88.86459,26.26873],[88.86139,26.27266],[88.86623,26.2749],[88.86641,26.2794],[88.87043,26.28385],[88.87593,26.28658],[88.89827,26.28864],[88.90903,26.28725],[88.91814,26.28793],[88.9199,26.28447],[88.92628,26.28378],[88.93113,26.27744],[88.93516,26.26701],[88.94024,26.26352],[88.94428,26.25447],[88.95078,26.24771],[88.95314,26.24197],[88.95704,26.24258],[88.95732,26.2403],[88.96539,26.23871],[88.97867,26.24266],[88.97917,26.24479],[88.99303,26.24546],[89.0159,26.24463],[89.0182,26.24367],[89.01826,26.24194],[89.02148,26.245],[89.02734,26.24407],[89.02755,26.24764],[89.03303,26.2467],[89.03536,26.24253],[89.03673,26.24238],[89.03737,26.24572],[89.04602,26.24066],[89.05069,26.24165],[89.04999,26.24537],[89.04798,26.24568],[89.04887,26.2517],[89.05123,26.25268],[89.05131,26.2553],[89.05467,26.25738],[89.05913,26.25397],[89.06264,26.25375],[89.06294,26.25577],[89.06018,26.25678],[89.06065,26.25891],[89.06331,26.25988],[89.06115,26.26397],[89.06111,26.2691],[89.06334,26.27037],[89.0592,26.27624],[89.05389,26.27714],[89.06248,26.27866],[89.06296,26.28169],[89.05751,26.28558],[89.06122,26.29036],[89.05947,26.29343],[89.05648,26.29388],[89.0531,26.29199],[89.05233,26.29602],[89.04587,26.29535],[89.04535,26.29103],[89.04213,26.29003],[89.04632,26.28945],[89.04481,26.28358],[89.04736,26.2826],[89.04778,26.28833],[89.05055,26.28832],[89.04833,26.2858],[89.04818,26.27977],[89.04646,26.28102],[89.04319,26.27996],[89.04464,26.27933],[89.04512,26.27514],[89.03988,26.27652],[89.0402,26.27809],[89.03803,26.27747],[89.04034,26.28074],[89.03741,26.28241],[89.04069,26.28394],[89.04077,26.28577],[89.03855,26.28547],[89.03872,26.28372],[89.03712,26.28312],[89.03146,26.28552],[89.02752,26.28247],[89.02711,26.28562],[89.02482,26.28624],[89.02473,26.28807],[89.02137,26.28755],[89.02008,26.28909],[89.02157,26.29286],[89.02333,26.2933],[89.02123,26.29796],[89.02661,26.3054],[89.0263,26.30692],[89.02178,26.30742],[89.02159,26.30902],[89.01875,26.30711],[89.0201,26.305],[89.01601,26.30346],[89.01636,26.3014],[89.01431,26.30022],[89.01959,26.29495],[89.01841,26.28981],[89.01235,26.29248],[89.01305,26.29801],[89.01055,26.29869],[89.01182,26.30012],[89.00845,26.30161],[89.00685,26.30439],[89.00659,26.30271],[89.00438,26.30366],[89.00495,26.2978],[89.00122,26.29514],[89.00003,26.29068],[88.99574,26.29024],[88.99537,26.29397],[88.99759,26.29963],[88.99606,26.29694],[88.99537,26.29997],[88.9949,26.29667],[88.99263,26.30062],[88.98494,26.30054],[88.98266,26.3095],[88.98587,26.31459],[88.98414,26.31632],[88.98462,26.31796],[88.99493,26.31323],[88.99712,26.31374],[88.99714,26.31638],[88.99428,26.31714],[88.99408,26.31988],[88.99196,26.32038],[88.99152,26.32232],[88.99489,26.32214],[88.99562,26.32072],[88.99801,26.3224],[89.00097,26.32975],[88.99864,26.33182],[88.99202,26.3327],[88.99267,26.33481],[88.99061,26.33535],[88.98916,26.33238],[88.98555,26.33276],[88.98181,26.341],[88.98665,26.34138],[88.98599,26.33982],[88.98876,26.33912],[88.98727,26.33798],[88.99,26.33848],[88.9871,26.34264],[88.98612,26.34708],[88.98773,26.34715],[88.98722,26.34832],[88.98513,26.34991],[88.98536,26.34841],[88.98277,26.34902],[88.98215,26.34748],[88.97782,26.34655],[88.97781,26.34805],[88.97268,26.35169],[88.97053,26.34964],[88.96676,26.35182],[88.96519,26.34869],[88.96141,26.3523],[88.95915,26.34794],[88.96263,26.34545],[88.96172,26.34083],[88.96353,26.33829],[88.96292,26.33627],[88.95948,26.33587],[88.96037,26.33005],[88.95603,26.32999],[88.95469,26.33318],[88.95411,26.3319],[88.95391,26.33304],[88.9523,26.33234],[88.95306,26.34209],[88.95176,26.34259],[88.95603,26.34122],[88.95905,26.34353],[88.95297,26.34621],[88.95241,26.34375],[88.94615,26.34388],[88.94629,26.34583],[88.94987,26.34851],[88.94875,26.35239],[88.95355,26.35615],[88.95814,26.35742],[88.95843,26.36168],[88.95475,26.36179],[88.95336,26.36595],[88.94985,26.36593],[88.94677,26.35569],[88.94145,26.35777],[88.93683,26.35672],[88.93562,26.35865],[88.93094,26.35959],[88.92791,26.36266],[88.92897,26.36372],[88.92608,26.36474],[88.92239,26.36321],[88.91973,26.35931],[88.91865,26.36022],[88.92168,26.36273],[88.92008,26.36623],[88.9143,26.36522],[88.91193,26.36611],[88.91284,26.36842],[88.9114,26.36766],[88.91011,26.3698],[88.91327,26.37422],[88.92008,26.37457],[88.91955,26.37685],[88.9214,26.37718],[88.92061,26.37853],[88.91432,26.3778],[88.91233,26.38028],[88.90909,26.38003],[88.90974,26.38221],[88.91651,26.38483],[88.91643,26.38919],[88.91845,26.39012],[88.91894,26.39426],[88.91822,26.40038],[88.91737,26.4032],[88.91326,26.40323],[88.91257,26.40136],[88.90995,26.40078],[88.90872,26.4037],[88.90616,26.40351],[88.90479,26.40846],[88.90679,26.40665],[88.91281,26.40861],[88.92656,26.40679],[88.93131,26.41419],[88.92907,26.41666],[88.92547,26.4164],[88.92303,26.42336],[88.93129,26.42455],[88.9328,26.42683],[88.92594,26.42762],[88.92619,26.43205],[88.92838,26.43292],[88.93476,26.43145],[88.93809,26.4281],[88.93805,26.4256],[88.94477,26.42559],[88.94282,26.42819],[88.94576,26.42936],[88.94465,26.43185],[88.9512,26.43361],[88.95132,26.435],[88.94691,26.43932],[88.94902,26.4399],[88.94927,26.4429],[88.94676,26.44339],[88.94617,26.44794],[88.95188,26.44842],[88.95128,26.45206],[88.96057,26.44827],[88.96536,26.45149],[88.95978,26.45229],[88.95732,26.45476],[88.95724,26.459],[88.95584,26.46021],[88.96544,26.4577],[88.96631,26.45126],[88.97449,26.45015],[88.97642,26.4462],[88.97731,26.44912],[88.97944,26.44963],[88.97854,26.44616],[88.98327,26.44651],[88.98089,26.44313],[88.98095,26.44175],[88.98424,26.44184],[88.98289,26.43799],[88.97878,26.43599],[88.98028,26.43157],[88.98306,26.43088],[88.98075,26.42527],[88.98364,26.42439],[88.983,26.42104],[88.99277,26.41892],[88.99404,26.41282],[88.99861,26.41388],[88.9953,26.41666],[88.99604,26.4197],[88.99301,26.42031],[88.99374,26.42299],[88.9959,26.42258],[88.99661,26.4205],[89.00548,26.42157],[89.00485,26.41776],[89.00723,26.41273],[89.01794,26.41512],[89.02246,26.41364],[89.02316,26.40833],[89.01895,26.40606],[89.01941,26.40413],[89.02271,26.40392],[89.02203,26.40581],[89.02446,26.40776],[89.02993,26.40707],[89.0294,26.4049],[89.0314,26.40387],[89.03179,26.39955],[89.03438,26.39946],[89.03356,26.39544],[89.03746,26.39517],[89.03784,26.39967],[89.04059,26.40024],[89.05419,26.39862],[89.05573,26.39581],[89.05814,26.39529],[89.05901,26.39882],[89.06149,26.39818],[89.06322,26.40075],[89.06186,26.39782],[89.06337,26.39669],[89.06446,26.39663],[89.06445,26.39895],[89.06728,26.4],[89.06817,26.39768],[89.07123,26.39839],[89.07483,26.39596],[89.07395,26.39111],[89.07534,26.39597],[89.08446,26.39828],[89.08782,26.39656],[89.08555,26.39371],[89.08079,26.39291],[89.07997,26.3915],[89.08134,26.39017],[89.08601,26.39234],[89.09048,26.39176],[89.09199,26.39369],[89.09625,26.39115],[89.09155,26.38898],[89.09005,26.38571],[89.09168,26.3853],[89.09189,26.38274],[89.08909,26.38091],[89.08898,26.37575],[89.09066,26.37469],[89.08846,26.36569],[89.08003,26.36666],[89.07971,26.36282],[89.08294,26.3621],[89.08418,26.36406],[89.08581,26.36386],[89.08581,26.36272],[89.0897,26.36196],[89.08986,26.36049],[89.09832,26.35893],[89.09586,26.35416],[89.09389,26.35459],[89.09333,26.35291],[89.09593,26.35374],[89.09603,26.35016],[89.09795,26.34979],[89.09884,26.34208],[89.09779,26.33977],[89.10028,26.33895],[89.10134,26.33653],[89.09653,26.33394],[89.09535,26.32977],[89.09094,26.32949],[89.09164,26.32799],[89.08801,26.32331],[89.08429,26.32405],[89.08349,26.32236],[89.08579,26.32101],[89.08972,26.32241],[89.09192,26.32029],[89.09363,26.32578],[89.09545,26.32556],[89.09719,26.32928],[89.0994,26.32825],[89.09841,26.32504],[89.10051,26.32331],[89.10433,26.32328],[89.10569,26.3265],[89.11001,26.32525],[89.11274,26.31839],[89.11649,26.31849],[89.1155,26.3199],[89.12364,26.32217],[89.12861,26.32232],[89.12968,26.32048],[89.12446,26.32084],[89.12831,26.3188],[89.13464,26.32135],[89.13631,26.32011],[89.13604,26.31459],[89.12955,26.31284],[89.13483,26.31315],[89.13283,26.31173],[89.13493,26.31126],[89.13604,26.30739],[89.13371,26.3058],[89.12522,26.30534],[89.1257,26.30415],[89.13058,26.30518],[89.13134,26.30089],[89.1288,26.30152],[89.12892,26.30311],[89.12746,26.30156],[89.1287,26.29879],[89.1313,26.30037],[89.1325,26.29872],[89.13116,26.29861],[89.13163,26.29732],[89.12826,26.29785],[89.12737,26.29487],[89.12457,26.29405],[89.12542,26.29093],[89.12213,26.28715],[89.12013,26.28709],[89.11793,26.28982],[89.11681,26.29708],[89.11392,26.29824],[89.11425,26.30364],[89.10908,26.30444],[89.10828,26.31304],[89.10504,26.31383],[89.1061,26.31576],[89.10471,26.3158],[89.10498,26.31311],[89.10236,26.31139],[89.10294,26.30828],[89.09992,26.30457],[89.10757,26.2998],[89.10405,26.29797],[89.10328,26.29446],[89.10715,26.29164],[89.1026,26.28861],[89.10262,26.28167],[89.1001,26.27947],[89.1029,26.27823],[89.10342,26.28102],[89.10602,26.28107],[89.10572,26.27404],[89.10879,26.27557],[89.10941,26.27208],[89.11162,26.27268],[89.12523,26.26346],[89.12535,26.26121],[89.1214,26.2582],[89.12227,26.25552],[89.11988,26.25435],[89.11984,26.25261],[89.12398,26.24974],[89.12615,26.25069],[89.12698,26.24884],[89.13004,26.24879],[89.13216,26.24614],[89.13095,26.24297],[89.13255,26.24188],[89.1319,26.23952],[89.13543,26.24112],[89.136,26.2398],[89.13394,26.23755],[89.137,26.23656],[89.13941,26.23803],[89.14094,26.23584],[89.14126,26.23123],[89.13957,26.22952],[89.14384,26.22126],[89.14209,26.22098],[89.14213,26.21453],[89.14941,26.20905],[89.14718,26.20482],[89.14411,26.20342],[89.14392,26.2003],[89.13938,26.19831],[89.13913,26.19123],[89.1381,26.18838],[89.13553,26.18722],[89.13664,26.18351],[89.13461,26.18117],[89.1371,26.17976],[89.13756,26.17628],[89.14121,26.17581],[89.14103,26.16929],[89.14919,26.17003],[89.15251,26.16448],[89.15728,26.1632],[89.1554,26.15955],[89.14912,26.15943],[89.14854,26.1581],[89.15538,26.13861],[89.16002,26.13962],[89.15925,26.13665],[89.16112,26.13726],[89.16033,26.13538],[89.16253,26.13539],[89.16186,26.13366],[89.16413,26.13334],[89.16442,26.13167],[89.16658,26.13226],[89.16678,26.13018],[89.16796,26.13147],[89.17153,26.13033],[89.17644,26.13181],[89.17959,26.12796],[89.18484,26.12905],[89.18514,26.12673],[89.1861,26.1279],[89.18898,26.12727],[89.18973,26.1245],[89.19133,26.12504],[89.19235,26.12364],[89.19639,26.1257],[89.19509,26.12717],[89.19818,26.12566],[89.20017,26.12848],[89.20308,26.12928],[89.20495,26.12721],[89.20623,26.12817],[89.20632,26.12652],[89.20981,26.12719],[89.21139,26.12422],[89.21438,26.12527],[89.21389,26.12687],[89.21717,26.12708],[89.21711,26.12552],[89.21985,26.12644],[89.21934,26.12426],[89.22333,26.12544],[89.2232,26.12418],[89.22547,26.12425],[89.22693,26.12206],[89.22787,26.12399],[89.22944,26.12385],[89.22849,26.12043],[89.23074,26.1175],[89.22922,26.1166],[89.23182,26.11709],[89.23303,26.113],[89.2355,26.11472],[89.23724,26.11258],[89.23852,26.11468],[89.2399,26.11214],[89.24192,26.11319],[89.2392,26.1115],[89.23944,26.11013],[89.24134,26.11027],[89.23954,26.10924],[89.24031,26.10775],[89.24222,26.10906],[89.2412,26.10625],[89.24294,26.1067],[89.24156,26.10547],[89.24397,26.10618],[89.24415,26.10494],[89.24521,26.10657],[89.24861,26.10343],[89.24772,26.10169],[89.25178,26.10118],[89.2524,26.09784],[89.25033,26.09412],[89.25237,26.09275],[89.25118,26.09274],[89.25162,26.09135],[89.25489,26.09337],[89.25618,26.09174],[89.25882,26.09312],[89.26036,26.0918],[89.26221,26.09398],[89.26339,26.09208],[89.2668,26.09264],[89.2657,26.09233],[89.26587,26.08784],[89.26144,26.08578],[89.2609,26.08285],[89.25686,26.08008],[89.25473,26.07466],[89.25611,26.07154],[89.25441,26.06412],[89.27088,26.05995],[89.2705,26.0619],[89.27621,26.0612],[89.27521,26.06214],[89.2783,26.06648],[89.28105,26.06562],[89.28254,26.06414],[89.28105,26.06191],[89.28171,26.05612],[89.27904,26.05068],[89.27686,26.05139],[89.27576,26.04908],[89.28926,26.04815],[89.29096,26.04525],[89.29169,26.04641],[89.29664,26.04534],[89.29843,26.0502],[89.30044,26.05043],[89.29999,26.04759],[89.30473,26.04714],[89.30348,26.04591],[89.30512,26.04532],[89.30619,26.04652],[89.30592,26.0445],[89.30773,26.0451],[89.30988,26.04162],[89.31734,26.03852],[89.31522,26.03742],[89.31939,26.03919],[89.3237,26.03805],[89.32311,26.03689],[89.32574,26.03628],[89.32567,26.0346],[89.32797,26.03334],[89.3261,26.03201],[89.32897,26.03162],[89.32762,26.03026],[89.32951,26.03025],[89.3289,26.02825],[89.33079,26.02719],[89.33166,26.02944],[89.33325,26.02837],[89.33278,26.02693],[89.33438,26.0275],[89.33522,26.02547],[89.33653,26.02652],[89.33862,26.02391],[89.33525,26.02262],[89.33452,26.02],[89.33745,26.02211],[89.33875,26.01936],[89.33722,26.01998],[89.33733,26.01885],[89.33911,26.01823],[89.33732,26.01802],[89.33977,26.01779],[89.34011,26.01526],[89.34357,26.01459],[89.34372,26.01703],[89.34533,26.01438],[89.34921,26.01614],[89.34682,26.01336],[89.34426,26.01318],[89.34699,26.01135],[89.3484,26.0122],[89.34906,26.01035],[89.35247,26.0101],[89.35348,26.0119],[89.35476,26.01144],[89.35444,26.0088],[89.35606,26.00833],[89.35642,26.0099],[89.35697,26.00797],[89.35948,26.0092],[89.3597,26.00785],[89.36034,26.00922],[89.36472,26.00823],[89.36669,26.01025],[89.37116,26.00894],[89.37248,26.01183],[89.37565,26.00931],[89.38591,26.01075],[89.38941,26.00833],[89.39123,26.00943],[89.39279,26.00719],[89.3945,26.01315],[89.39114,26.01671],[89.39086,26.02292],[89.40302,26.02731],[89.40416,26.03091],[89.4066,26.03151],[89.40485,26.03393],[89.40749,26.03609],[89.40645,26.038],[89.40769,26.03978],[89.40627,26.04028],[89.40742,26.04151],[89.41897,26.04189],[89.42445,26.04418],[89.42272,26.04564],[89.42384,26.04692],[89.43171,26.03959],[89.43359,26.03042],[89.42769,26.02033],[89.42864,26.01448],[89.42676,26.01521],[89.42748,26.01315],[89.43371,26.01002],[89.44716,26.00796],[89.46165,25.99837],[89.47656,25.99798],[89.48035,25.99607],[89.48711,26.00027],[89.49128,26.00596],[89.49689,26.00289],[89.50894,26.00184],[89.51423,26.00703],[89.51924,26.00874],[89.52121,26.00856],[89.52207,26.00516],[89.5243,26.00657],[89.52612,26.00474],[89.52983,26.00574],[89.53746,26.00213],[89.53942,26.00537],[89.53678,26.00407],[89.53366,26.00537],[89.53757,26.00674],[89.5409,26.0059],[89.54296,26.0026],[89.54481,26.00259],[89.54497,26.00034],[89.54822,26.00061],[89.54815,25.99858],[89.53821,25.99468],[89.53796,25.9908],[89.53553,25.99017],[89.53608,25.98559],[89.54169,25.98319],[89.53808,25.97386],[89.54096,25.9695],[89.55083,25.9659],[89.5577,25.96536],[89.55779,25.96983],[89.5627,25.97115],[89.56385,25.97876],[89.56597,25.98034],[89.5684,25.97912],[89.56734,25.97103],[89.56891,25.96776],[89.57787,25.96928],[89.57848,25.9734],[89.57671,25.97803],[89.57445,25.97738],[89.57348,25.97857],[89.57641,25.9819],[89.57688,25.97817],[89.58257,25.97908],[89.58518,25.9759],[89.58675,25.98108],[89.5832,25.99019],[89.58625,25.99508],[89.5834,26.00184],[89.58003,26.00212],[89.58156,26.00334],[89.57994,26.00501],[89.58153,26.00582],[89.57875,26.00678],[89.5813,26.01093],[89.57836,26.0216],[89.57872,26.02626],[89.58336,26.02423],[89.58535,26.02628],[89.58326,26.03257],[89.58726,26.03554],[89.58688,26.03831],[89.58946,26.03889],[89.59267,26.03527],[89.59509,26.0352],[89.59775,26.03785],[89.59776,26.04018],[89.5938,26.0411],[89.59223,26.0448],[89.59948,26.04443],[89.60374,26.04853],[89.61283,26.05264],[89.61293,26.05693],[89.60608,26.05921],[89.60568,26.06404],[89.60859,26.06457],[89.61061,26.05971],[89.6178,26.06011],[89.61638,26.05566],[89.62051,26.05328],[89.6247,26.057],[89.62791,26.05767],[89.62816,26.06128],[89.63063,26.06266],[89.63567,26.06071],[89.6437,26.06304],[89.64908,26.06136],[89.6499,26.06248],[89.64832,26.0684],[89.63735,26.07477],[89.63357,26.08087],[89.63394,26.08415],[89.6367,26.08576],[89.63688,26.08927],[89.63968,26.09006],[89.63324,26.0944],[89.6321,26.09721],[89.63622,26.09937],[89.63245,26.10173],[89.62996,26.10704],[89.62409,26.10789],[89.62151,26.10035],[89.61619,26.10414],[89.61396,26.10361],[89.61345,26.10131],[89.61729,26.09469],[89.61014,26.09591],[89.60885,26.0941],[89.61026,26.09004],[89.60862,26.08839],[89.60586,26.09333],[89.59743,26.0974],[89.59388,26.10216],[89.59654,26.1043],[89.60031,26.10406],[89.60076,26.10751],[89.59561,26.10781],[89.60084,26.10904],[89.59796,26.11037],[89.59788,26.11298],[89.6031,26.11165],[89.60525,26.10637],[89.61004,26.10858],[89.61622,26.10686],[89.6275,26.11399],[89.63036,26.11827],[89.62925,26.12504],[89.62535,26.1286],[89.62243,26.1258],[89.62051,26.11972],[89.61676,26.12076],[89.61352,26.12737],[89.61204,26.1277],[89.60884,26.12383],[89.60792,26.11872],[89.60424,26.11745],[89.60129,26.12342],[89.60236,26.1219],[89.60389,26.12386],[89.60633,26.12242],[89.60773,26.12486],[89.60429,26.12862],[89.60313,26.12661],[89.60431,26.12465],[89.60271,26.12491],[89.60426,26.12573],[89.5966,26.13503],[89.59831,26.13726],[89.59823,26.13899],[89.5956,26.13989],[89.59818,26.14637],[89.59666,26.14994],[89.59841,26.15046],[89.59792,26.15413],[89.5963,26.15624],[89.5914,26.15761],[89.5958,26.16082],[89.60001,26.16083],[89.60088,26.15814],[89.6044,26.15615],[89.60467,26.1591],[89.60604,26.15765],[89.60805,26.15835],[89.60701,26.15443],[89.60902,26.15362],[89.6114,26.15752],[89.60824,26.15822],[89.61014,26.15958],[89.61015,26.16184],[89.6135,26.16203],[89.61378,26.16618],[89.61976,26.16776],[89.61807,26.16913],[89.61284,26.16733],[89.61123,26.16856],[89.61098,26.17436],[89.6154,26.17303],[89.61515,26.17588],[89.60831,26.17635],[89.60746,26.17914],[89.6102,26.18032],[89.60933,26.17856],[89.61527,26.17643],[89.61483,26.17855],[89.62391,26.17913],[89.62334,26.17429],[89.62172,26.17355],[89.62399,26.17112],[89.62566,26.17627],[89.63249,26.18078],[89.63279,26.17939],[89.6371,26.1788],[89.63748,26.17685],[89.63195,26.17364],[89.63216,26.17189],[89.63792,26.17214],[89.63843,26.16687],[89.6461,26.16444],[89.64933,26.16443],[89.65017,26.16977],[89.65515,26.17038],[89.65494,26.17336],[89.65866,26.17623],[89.65587,26.1787],[89.65548,26.18141],[89.64987,26.17972],[89.64373,26.18278],[89.64032,26.18225],[89.63914,26.17861],[89.63334,26.18044],[89.63311,26.1827],[89.63169,26.18116],[89.62781,26.18391],[89.62767,26.18931],[89.63286,26.19029],[89.62853,26.19183],[89.63018,26.19576],[89.6342,26.19558],[89.63356,26.19478],[89.63605,26.19364],[89.63516,26.19018],[89.63793,26.18971],[89.63804,26.18674],[89.64245,26.18527],[89.64745,26.18519],[89.64556,26.18851],[89.6475,26.18769],[89.65,26.19021],[89.64644,26.19501],[89.64414,26.19491],[89.64185,26.19887],[89.63948,26.19971],[89.63826,26.21044],[89.63266,26.20989],[89.63412,26.21537],[89.63651,26.2176],[89.63365,26.21857],[89.63622,26.22374],[89.63444,26.22941],[89.63778,26.22909],[89.6402,26.22577],[89.64574,26.22555],[89.65046,26.22098],[89.65509,26.22044],[89.65557,26.21908],[89.662,26.21922],[89.66482,26.22112],[89.6719,26.21985],[89.67221,26.22891],[89.6734,26.2316],[89.67734,26.23387],[89.67871,26.23821],[89.68199,26.22752],[89.68424,26.22768],[89.68605,26.23066],[89.68574,26.22654],[89.68749,26.22651],[89.6837,26.22369],[89.68888,26.2227],[89.68942,26.22128],[89.68428,26.2201],[89.67903,26.22409],[89.67941,26.21479],[89.68378,26.20874],[89.69139,26.2135],[89.6915,26.21167],[89.68726,26.20978],[89.68566,26.20687],[89.68105,26.21007],[89.67716,26.20967],[89.67352,26.20568],[89.67347,26.20143],[89.67821,26.1975],[89.68303,26.19926],[89.68635,26.19822],[89.68336,26.19588],[89.68217,26.19242],[89.68739,26.1815],[89.69407,26.17551],[89.70206,26.17398],[89.69785,26.1699],[89.6842,26.16962],[89.68107,26.16613],[89.68132,26.16359],[89.69716,26.15853],[89.70138,26.15175],[89.70997,26.15622],[89.71281,26.16807],[89.71674,26.16824],[89.71698,26.16536],[89.72184,26.16747],[89.72761,26.16735],[89.72886,26.16794],[89.72748,26.17196],[89.7289,26.17411],[89.73655,26.17279],[89.73247,26.17782],[89.72558,26.17798],[89.72235,26.17771],[89.71365,26.17266],[89.70924,26.17281],[89.70354,26.17805],[89.70328,26.18299],[89.6986,26.19118],[89.7061,26.18773],[89.71307,26.18772],[89.71911,26.19229],[89.72037,26.1956],[89.71781,26.20135],[89.7116,26.20297],[89.71916,26.20662],[89.72721,26.20596],[89.73323,26.21199],[89.73171,26.21616],[89.7257,26.21818],[89.71287,26.21246],[89.7075,26.21228],[89.70211,26.2152],[89.70039,26.21845],[89.70119,26.21994],[89.70447,26.21719],[89.71004,26.21784],[89.71364,26.22212],[89.7141,26.23025],[89.72707,26.23316],[89.73216,26.23783],[89.73183,26.23988],[89.72629,26.24287],[89.71788,26.24515],[89.71648,26.24753],[89.71845,26.25585],[89.71708,26.25737],[89.71443,26.25825],[89.70583,26.25621],[89.70262,26.25786],[89.70585,26.27043],[89.71155,26.27126],[89.71471,26.26994],[89.71258,26.26191],[89.72202,26.25746],[89.734,26.25941],[89.73557,26.26149],[89.73428,26.26703],[89.73854,26.26994],[89.735,26.27767],[89.72413,26.28764],[89.71783,26.29582],[89.71981,26.30732],[89.72371,26.30928],[89.72585,26.30722],[89.72139,26.29951],[89.72632,26.29471],[89.73691,26.29261],[89.74484,26.29689],[89.7478,26.29126],[89.75812,26.28779],[89.76089,26.2921],[89.75414,26.30222],[89.75124,26.32095],[89.75535,26.32321],[89.76031,26.3166],[89.76428,26.31607],[89.76909,26.32129],[89.76926,26.32429],[89.78107,26.32786],[89.78373,26.33209],[89.78154,26.34163],[89.78318,26.3514],[89.79305,26.35868],[89.80482,26.36284],[89.81372,26.37105],[89.8201,26.37024],[89.82192,26.37181],[89.81998,26.36663],[89.81331,26.36151],[89.81283,26.3571],[89.81538,26.35258],[89.82276,26.35163],[89.82577,26.35485],[89.82197,26.35967],[89.82207,26.36315],[89.82764,26.36631],[89.82948,26.37078],[89.82592,26.37763],[89.83202,26.38392],[89.83525,26.38396],[89.83967,26.37862],[89.84302,26.37781],[89.84705,26.38525],[89.85148,26.38525],[89.8545,26.38216],[89.85898,26.3844],[89.85542,26.39087],[89.85734,26.39613],[89.84866,26.40403],[89.8472,26.3989],[89.84137,26.39239],[89.83631,26.3909],[89.83085,26.39288],[89.82995,26.397],[89.83243,26.40001],[89.83297,26.40838],[89.83525,26.41202],[89.83458,26.41661],[89.83189,26.41592],[89.8302,26.4178],[89.82957,26.42235],[89.83278,26.42818],[89.83569,26.43065],[89.83659,26.42874],[89.83678,26.43106],[89.82281,26.43138],[89.82506,26.44062],[89.83137,26.43827],[89.83349,26.44126],[89.8298,26.44772],[89.8539,26.44449],[89.85403,26.44751],[89.85078,26.44791],[89.85292,26.45546],[89.85813,26.45623],[89.86191,26.45474],[89.86413,26.46422],[89.85807,26.46461],[89.84929,26.4705],[89.84716,26.46935],[89.82582,26.47086],[89.82451,26.46846],[89.8293,26.46923],[89.82961,26.46748],[89.83156,26.46745],[89.83099,26.46272],[89.82776,26.45939],[89.78502,26.46186],[89.77274,26.4652],[89.74879,26.46325],[89.74833,26.45667],[89.74501,26.45596],[89.7481,26.44772],[89.74716,26.43867],[89.7423,26.4395],[89.7388,26.4455],[89.73343,26.4425],[89.72779,26.44422],[89.7243,26.43558],[89.71852,26.43378],[89.71112,26.43449],[89.71087,26.42729],[89.69923,26.42132],[89.69251,26.42237],[89.69331,26.42679],[89.68916,26.42697],[89.68754,26.42948],[89.68203,26.42851],[89.67593,26.42958],[89.67843,26.43354],[89.67776,26.43485],[89.6655,26.43648],[89.66277,26.43402],[89.66064,26.43684],[89.6577,26.43171],[89.66146,26.43096],[89.65433,26.42297],[89.64923,26.42295],[89.65105,26.42142],[89.65002,26.41839],[89.64834,26.42136],[89.64759,26.41941],[89.63753,26.41878],[89.6376,26.4164],[89.63707,26.41793],[89.62858,26.41632],[89.62689,26.42017],[89.62427,26.41985],[89.62279,26.41644],[89.62788,26.40808],[89.62337,26.4009],[89.62479,26.40137],[89.62472,26.39986],[89.61973,26.39988],[89.62075,26.39738],[89.61885,26.39533],[89.60522,26.40617],[89.58401,26.42984],[89.5732,26.42505],[89.56766,26.42781],[89.56366,26.42794],[89.56543,26.42504],[89.56437,26.42286],[89.56586,26.42176],[89.56675,26.42332],[89.57086,26.4228],[89.56893,26.42086],[89.57212,26.42037],[89.56937,26.41941],[89.57185,26.41832],[89.56453,26.4103],[89.55513,26.4101],[89.55834,26.41256],[89.55843,26.41452],[89.54965,26.41508],[89.54908,26.41647],[89.54973,26.41879],[89.55571,26.41878],[89.55728,26.42108],[89.55026,26.42674],[89.557,26.42597],[89.55883,26.42977],[89.55602,26.43184],[89.55223,26.43156],[89.55248,26.43854],[89.5485,26.43998],[89.54933,26.44479],[89.54648,26.44624],[89.53832,26.44489],[89.53826,26.44675],[89.5445,26.45093],[89.53718,26.45378],[89.54206,26.45979],[89.53477,26.46297],[89.53753,26.46995],[89.53613,26.47259],[89.53258,26.47061],[89.52991,26.47107],[89.52762,26.47649],[89.52492,26.47644],[89.52276,26.47237],[89.52063,26.47155],[89.51411,26.4742],[89.51391,26.47636],[89.51179,26.47762],[89.51259,26.47664],[89.5108,26.47387],[89.50496,26.46854],[89.50235,26.47073],[89.50551,26.4724],[89.50322,26.47237],[89.50231,26.47436],[89.50138,26.47333],[89.49882,26.47462],[89.49974,26.4731],[89.49847,26.47182],[89.49473,26.47277],[89.49537,26.47586],[89.49244,26.47862],[89.49527,26.47881],[89.4955,26.48113],[89.49135,26.4804],[89.48924,26.48332],[89.48611,26.48344],[89.48666,26.48498],[89.48509,26.48347],[89.48388,26.48522],[89.48314,26.48267],[89.47916,26.48625],[89.47136,26.48866],[89.45497,26.49063],[89.45239,26.47685],[89.44969,26.47653],[89.44903,26.47445],[89.44375,26.47593],[89.44188,26.47085],[89.43912,26.46934],[89.43336,26.4697],[89.43147,26.46794],[89.42101,26.46887],[89.41965,26.47082],[89.41199,26.47157],[89.40156,26.4647],[89.39435,26.46431],[89.38817,26.46592],[89.38314,26.47067],[89.38213,26.47368],[89.37858,26.47418],[89.37821,26.47631],[89.36657,26.48931],[89.35689,26.49655],[89.34359,26.48686],[89.33887,26.48777],[89.32576,26.49484],[89.31896,26.48528],[89.31013,26.48497],[89.30748,26.48179],[89.30476,26.48167],[89.29907,26.48642],[89.2938,26.48794],[89.28434,26.48793],[89.28004,26.48613],[89.26487,26.49017],[89.24469,26.49122],[89.24038,26.49629],[89.23137,26.5019],[89.19155,26.51007],[89.19141,26.50567],[89.18361,26.50097],[89.18053,26.50102],[89.16293,26.5113],[89.15864,26.51208],[89.158,26.5139],[89.14694,26.51845],[89.1325,26.51924],[89.13063,26.52077],[89.11426,26.52282],[89.10913,26.5201],[89.10296,26.52102],[89.10267,26.52292],[89.10219,26.52164],[89.09768,26.52239],[89.09474,26.52069],[89.0954,26.52273],[89.09393,26.52218],[89.09171,26.52419],[89.092,26.52657],[89.08879,26.52503],[89.08604,26.52662],[89.08511,26.52563],[89.08524,26.53081],[89.0793,26.5316],[89.07972,26.53492],[89.07597,26.53506],[89.07584,26.53656],[89.07398,26.5357],[89.07372,26.53709],[89.0624,26.53756],[89.06141,26.53417],[89.05935,26.53365],[89.04843,26.53422],[89.05196,26.53044],[89.05046,26.52734],[89.03575,26.51681],[89.0274,26.51825],[89.02174,26.52273],[89.01231,26.52645],[89.01011,26.52904],[88.99724,26.53345],[88.99255,26.53355]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"309","area_level":"District","area_name":"Darjeeling","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.03494,27.22098],[88.02673,27.22067],[88.01426,27.21291],[88.0153,27.20937],[88.01164,27.20345],[88.01531,27.2],[88.01599,27.19359],[88.01314,27.18781],[88.01244,27.17787],[88.01922,27.17105],[88.01144,27.16624],[88.01132,27.15907],[88.00936,27.15707],[88.01027,27.1545],[88.0073,27.14316],[88.0009,27.14043],[87.99898,27.13373],[87.99126,27.13071],[87.98896,27.12072],[87.98683,27.11904],[87.98843,27.11871],[87.98982,27.11133],[87.99151,27.11026],[87.99088,27.10561],[87.99527,27.10353],[88.00259,27.10459],[88.01144,27.09718],[88.01528,27.08895],[88.02102,27.08783],[88.02055,27.08268],[88.01583,27.07691],[88.01608,27.07368],[88.0212,27.06861],[88.02303,27.06131],[88.02585,27.05768],[88.02587,27.05395],[88.03036,27.04677],[88.03525,27.04335],[88.03785,27.03632],[88.04558,27.03688],[88.05773,27.03215],[88.05947,27.02942],[88.06999,27.03171],[88.07769,27.03542],[88.08309,27.02914],[88.08408,27.02235],[88.08884,27.01605],[88.08839,27.00829],[88.09214,27.0047],[88.09881,27.00422],[88.10415,26.99765],[88.10886,26.9949],[88.10925,26.99228],[88.11675,26.98778],[88.1344,26.98624],[88.13454,26.98373],[88.13043,26.98052],[88.12439,26.97174],[88.12498,26.96896],[88.12219,26.96399],[88.12343,26.9601],[88.12013,26.95071],[88.12885,26.9392],[88.13757,26.93364],[88.13923,26.92879],[88.1447,26.92248],[88.14384,26.91728],[88.14496,26.91514],[88.13636,26.89852],[88.14581,26.88931],[88.15264,26.88507],[88.15725,26.88512],[88.15754,26.88321],[88.16363,26.87817],[88.16641,26.87013],[88.17184,26.86929],[88.17397,26.86532],[88.17219,26.8608],[88.17446,26.85938],[88.17354,26.85545],[88.1748,26.85315],[88.16762,26.84974],[88.16769,26.84752],[88.17056,26.84479],[88.16776,26.83751],[88.17368,26.83404],[88.17187,26.82733],[88.17897,26.81623],[88.17717,26.80477],[88.18099,26.79614],[88.18294,26.78214],[88.18785,26.77181],[88.18771,26.76215],[88.18605,26.75668],[88.18717,26.7506],[88.18616,26.73891],[88.18238,26.72754],[88.18172,26.71975],[88.17641,26.71059],[88.17289,26.70818],[88.16708,26.6993],[88.16775,26.68396],[88.16414,26.67847],[88.16494,26.66978],[88.16297,26.64597],[88.15789,26.63993],[88.1603,26.63644],[88.15805,26.63581],[88.15721,26.63272],[88.15445,26.63038],[88.147,26.62957],[88.1421,26.62575],[88.13921,26.60675],[88.12991,26.6013],[88.13191,26.59324],[88.12942,26.58749],[88.13003,26.58488],[88.12734,26.58194],[88.13002,26.57949],[88.13038,26.57383],[88.12866,26.57273],[88.125,26.57774],[88.12315,26.57698],[88.12532,26.57464],[88.12361,26.57259],[88.12085,26.57597],[88.11776,26.57454],[88.11909,26.5683],[88.11463,26.57054],[88.11406,26.57263],[88.11258,26.57181],[88.11178,26.56496],[88.11439,26.56692],[88.11511,26.56546],[88.11073,26.56203],[88.11351,26.55869],[88.10953,26.55712],[88.10765,26.56054],[88.10546,26.56105],[88.10532,26.55078],[88.10763,26.55063],[88.11156,26.54512],[88.10349,26.53852],[88.11003,26.53606],[88.11173,26.53119],[88.11697,26.53273],[88.11727,26.52761],[88.12386,26.5241],[88.12515,26.52053],[88.13005,26.51602],[88.13377,26.51684],[88.13498,26.52338],[88.14004,26.52422],[88.14738,26.52263],[88.15035,26.53181],[88.15635,26.53002],[88.16654,26.53553],[88.16786,26.54076],[88.17278,26.53597],[88.17623,26.53537],[88.17562,26.54053],[88.17939,26.54825],[88.19541,26.54796],[88.19627,26.54392],[88.20212,26.54375],[88.20137,26.53954],[88.20398,26.54113],[88.21161,26.53994],[88.21398,26.54156],[88.21294,26.54243],[88.20525,26.54349],[88.20765,26.54539],[88.2119,26.54443],[88.21624,26.54869],[88.20822,26.55006],[88.21095,26.56092],[88.21871,26.55666],[88.22549,26.55675],[88.228,26.55295],[88.22566,26.55097],[88.22556,26.54721],[88.22931,26.54006],[88.22968,26.53504],[88.20877,26.52441],[88.20609,26.52111],[88.20415,26.52129],[88.20233,26.51511],[88.20316,26.51313],[88.19341,26.51351],[88.19128,26.51153],[88.19113,26.50853],[88.18511,26.50405],[88.18358,26.50041],[88.1797,26.49958],[88.17862,26.49567],[88.18178,26.49282],[88.18018,26.48728],[88.18504,26.48607],[88.18618,26.48377],[88.18786,26.48491],[88.19066,26.48205],[88.19162,26.47767],[88.19577,26.47513],[88.20296,26.47636],[88.20331,26.47432],[88.21073,26.47309],[88.21577,26.47805],[88.2138,26.47808],[88.21196,26.4829],[88.22383,26.48239],[88.22447,26.47894],[88.22117,26.47153],[88.21171,26.47182],[88.20982,26.46923],[88.214,26.46858],[88.21773,26.46591],[88.21845,26.46259],[88.22275,26.45913],[88.22515,26.45366],[88.23722,26.45155],[88.24115,26.45446],[88.24874,26.46751],[88.25708,26.4686],[88.25895,26.48191],[88.26206,26.48508],[88.26265,26.48807],[88.27494,26.4859],[88.27477,26.48967],[88.27669,26.49115],[88.28253,26.48556],[88.28454,26.48819],[88.28714,26.48742],[88.2899,26.49022],[88.29446,26.49138],[88.29986,26.48777],[88.3036,26.48775],[88.30638,26.49069],[88.30712,26.49542],[88.3115,26.4989],[88.31745,26.49863],[88.32519,26.4959],[88.33543,26.49724],[88.33774,26.50051],[88.34469,26.50409],[88.34948,26.50911],[88.35307,26.51592],[88.35191,26.5232],[88.35941,26.53013],[88.35743,26.54259],[88.36532,26.55197],[88.36553,26.55583],[88.37084,26.56029],[88.37163,26.56875],[88.37005,26.57508],[88.3741,26.57925],[88.37604,26.5947],[88.37937,26.59801],[88.38422,26.59868],[88.39013,26.60299],[88.39842,26.60351],[88.39723,26.60671],[88.38788,26.60691],[88.38713,26.61245],[88.39643,26.61733],[88.39822,26.62583],[88.40952,26.63265],[88.40646,26.64012],[88.39974,26.64285],[88.40083,26.654],[88.39858,26.65861],[88.40042,26.66475],[88.40042,26.67242],[88.39142,26.67644],[88.39021,26.67984],[88.39744,26.68372],[88.40165,26.69308],[88.40978,26.6995],[88.41434,26.7],[88.415,26.69665],[88.42851,26.69656],[88.43142,26.69342],[88.43765,26.69274],[88.43798,26.69401],[88.44331,26.69505],[88.44924,26.70442],[88.4439,26.71184],[88.4426,26.71633],[88.4385,26.71526],[88.43636,26.71694],[88.43356,26.72395],[88.43534,26.72612],[88.42937,26.72675],[88.42503,26.72259],[88.42158,26.72708],[88.42533,26.73425],[88.42279,26.73742],[88.42281,26.74584],[88.42742,26.74789],[88.42442,26.75045],[88.42297,26.7545],[88.42609,26.7538],[88.42739,26.75502],[88.42608,26.75929],[88.43047,26.75325],[88.43259,26.75543],[88.4316,26.75839],[88.43571,26.75824],[88.43408,26.76569],[88.43523,26.76825],[88.43752,26.76912],[88.43559,26.77012],[88.43759,26.7713],[88.43631,26.77429],[88.43785,26.77526],[88.43499,26.7779],[88.43161,26.77842],[88.43383,26.78018],[88.43442,26.78368],[88.44025,26.78234],[88.43995,26.78378],[88.44214,26.78528],[88.43868,26.78774],[88.44235,26.78991],[88.43874,26.79175],[88.43759,26.79549],[88.43147,26.79519],[88.4298,26.79803],[88.4295,26.80125],[88.4345,26.802],[88.43489,26.80358],[88.4338,26.80857],[88.42878,26.81296],[88.43482,26.80991],[88.43582,26.81074],[88.43002,26.82022],[88.43581,26.82231],[88.43728,26.82818],[88.44127,26.83267],[88.44118,26.83716],[88.47462,26.84812],[88.48475,26.85407],[88.49003,26.85271],[88.49308,26.84982],[88.49688,26.8496],[88.49951,26.84637],[88.4997,26.84231],[88.50203,26.84044],[88.51247,26.83881],[88.50792,26.84767],[88.50238,26.84867],[88.49303,26.85491],[88.47981,26.86863],[88.47969,26.87516],[88.47533,26.87722],[88.4742,26.89776],[88.47084,26.90864],[88.47385,26.91315],[88.46432,26.91551],[88.46312,26.92007],[88.45626,26.92461],[88.45612,26.9286],[88.45222,26.93588],[88.44201,26.93817],[88.445,26.94535],[88.4417,26.94997],[88.43985,26.95978],[88.43667,26.96184],[88.42884,26.95793],[88.42298,26.95723],[88.41736,26.96225],[88.41938,26.96467],[88.41829,26.97037],[88.4207,26.97733],[88.41871,26.98277],[88.41218,26.98463],[88.40825,26.98124],[88.39148,26.9879],[88.41468,27.0096],[88.42329,27.0086],[88.42191,27.01524],[88.41498,27.02439],[88.41943,27.03235],[88.41808,27.04182],[88.41533,27.04475],[88.41659,27.05944],[88.42151,27.06531],[88.42046,27.06903],[88.42683,27.06606],[88.42789,27.06719],[88.43295,27.07926],[88.41103,27.08895],[88.39922,27.09025],[88.38737,27.09494],[88.37489,27.09748],[88.35875,27.09601],[88.35682,27.09738],[88.35604,27.10102],[88.34952,27.0998],[88.3457,27.10692],[88.34139,27.11012],[88.33784,27.10983],[88.33537,27.10675],[88.32944,27.10777],[88.32154,27.10475],[88.32109,27.10686],[88.32368,27.1105],[88.32285,27.11764],[88.31645,27.12179],[88.31534,27.12615],[88.31082,27.12507],[88.30229,27.12929],[88.29918,27.12833],[88.29722,27.12518],[88.29033,27.12785],[88.28507,27.12692],[88.27901,27.13187],[88.27421,27.13083],[88.27248,27.12815],[88.26839,27.12951],[88.25906,27.12526],[88.24858,27.12435],[88.24177,27.1195],[88.23002,27.11898],[88.2196,27.12511],[88.21945,27.12847],[88.2157,27.13166],[88.21375,27.13196],[88.21149,27.12989],[88.20572,27.13346],[88.20144,27.13143],[88.19463,27.13485],[88.19203,27.13248],[88.18958,27.13322],[88.18536,27.13077],[88.18101,27.13247],[88.17919,27.12983],[88.17587,27.12981],[88.17232,27.12736],[88.1706,27.12263],[88.16729,27.12243],[88.16213,27.11343],[88.15859,27.11346],[88.15635,27.11],[88.15097,27.10997],[88.14984,27.1139],[88.14472,27.11195],[88.14404,27.11561],[88.13891,27.11391],[88.13663,27.11465],[88.13549,27.12048],[88.12354,27.12101],[88.11174,27.13118],[88.09671,27.1328],[88.08885,27.14326],[88.0871,27.16422],[88.07741,27.1729],[88.07976,27.17437],[88.07854,27.18035],[88.07272,27.1872],[88.07917,27.20109],[88.07169,27.20416],[88.06552,27.20916],[88.0645,27.2144],[88.05282,27.21341],[88.04389,27.21923],[88.03494,27.22098]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"31","area_level":"District","area_name":"Ferozepur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.92019,31.16229],[74.91803,31.16215],[74.91316,31.15756],[74.90302,31.15421],[74.90186,31.1493],[74.89672,31.14986],[74.88549,31.15555],[74.88259,31.15161],[74.84413,31.13247],[74.82514,31.13405],[74.81448,31.13777],[74.80955,31.13455],[74.80989,31.13708],[74.80665,31.13978],[74.79948,31.12805],[74.80393,31.12029],[74.80064,31.11496],[74.79563,31.12418],[74.79226,31.12534],[74.78919,31.13001],[74.7759,31.1293],[74.76573,31.12548],[74.7609,31.12231],[74.76294,31.12013],[74.75544,31.11624],[74.75158,31.11554],[74.74171,31.11858],[74.74279,31.11603],[74.74152,31.10387],[74.72887,31.10386],[74.72072,31.10157],[74.71554,31.08527],[74.70994,31.08074],[74.70786,31.07199],[74.69593,31.07416],[74.66956,31.0531],[74.61833,31.04394],[74.61301,31.04479],[74.5968,31.03766],[74.59591,31.04221],[74.59009,31.04995],[74.57442,31.05678],[74.57043,31.05299],[74.56823,31.05469],[74.56144,31.04865],[74.55872,31.03741],[74.55754,31.03826],[74.54797,31.03245],[74.54248,31.01737],[74.53967,31.00884],[74.54404,30.99801],[74.54326,30.99613],[74.54616,30.99242],[74.51615,30.97947],[74.50872,30.96744],[74.50347,30.96479],[74.49789,30.96433],[74.4919,30.97443],[74.48964,30.97251],[74.48136,30.97075],[74.47969,30.97428],[74.45726,30.96464],[74.46641,30.95687],[74.45147,30.95589],[74.45526,30.9514],[74.44206,30.95173],[74.44194,30.94601],[74.43954,30.94219],[74.42892,30.9425],[74.4164,30.94033],[74.41775,30.93769],[74.41387,30.92965],[74.42368,30.92956],[74.42875,30.93123],[74.42353,30.92073],[74.41034,30.92349],[74.41106,30.91964],[74.41861,30.91931],[74.42442,30.91603],[74.42272,30.90778],[74.39729,30.90939],[74.38294,30.89551],[74.37076,30.89518],[74.36591,30.89293],[74.36671,30.8857],[74.36077,30.8737],[74.38209,30.86043],[74.37792,30.85844],[74.37402,30.8598],[74.36943,30.85742],[74.36452,30.85738],[74.36852,30.85184],[74.3672,30.84913],[74.36336,30.84725],[74.35498,30.84839],[74.35407,30.8527],[74.34815,30.85491],[74.33877,30.85267],[74.34056,30.8491],[74.33239,30.85103],[74.32467,30.84956],[74.32039,30.84663],[74.32016,30.84202],[74.32206,30.83867],[74.31931,30.8329],[74.31983,30.8274],[74.31014,30.81863],[74.30246,30.80804],[74.30146,30.80381],[74.29941,30.80458],[74.29488,30.79451],[74.29829,30.79369],[74.3013,30.78975],[74.30682,30.7892],[74.30197,30.77937],[74.28982,30.77518],[74.2867,30.77588],[74.27442,30.77348],[74.26483,30.77709],[74.25995,30.77259],[74.27369,30.75346],[74.27448,30.74427],[74.28646,30.7357],[74.28153,30.73089],[74.27483,30.73712],[74.27125,30.73221],[74.26844,30.7344],[74.26912,30.73032],[74.26697,30.72622],[74.2609,30.72311],[74.24841,30.72597],[74.24202,30.72601],[74.2454,30.72452],[74.24527,30.72295],[74.23266,30.72456],[74.22734,30.71883],[74.22762,30.71287],[74.22532,30.71309],[74.22346,30.70994],[74.21924,30.69361],[74.21319,30.68872],[74.23848,30.67573],[74.24148,30.67229],[74.24451,30.67225],[74.24921,30.66768],[74.25311,30.66815],[74.25588,30.67091],[74.25807,30.6783],[74.26655,30.67221],[74.26994,30.66722],[74.27468,30.66889],[74.2751,30.67247],[74.28419,30.67453],[74.28664,30.67265],[74.28959,30.66534],[74.29271,30.66386],[74.29237,30.6656],[74.29636,30.67051],[74.29241,30.67586],[74.28771,30.67727],[74.288,30.68217],[74.29203,30.68343],[74.29211,30.68847],[74.28996,30.69064],[74.29113,30.69244],[74.29429,30.69227],[74.29638,30.69033],[74.30413,30.69215],[74.30136,30.68836],[74.30497,30.68358],[74.30513,30.67925],[74.30799,30.6785],[74.31128,30.67997],[74.31534,30.67514],[74.31989,30.6749],[74.32391,30.67257],[74.33088,30.67446],[74.33157,30.67256],[74.32868,30.67208],[74.32916,30.66992],[74.33495,30.66979],[74.33965,30.67174],[74.34797,30.66448],[74.3524,30.66774],[74.35484,30.66045],[74.35198,30.65111],[74.35027,30.65112],[74.34584,30.6465],[74.35671,30.63982],[74.35716,30.63308],[74.35572,30.63317],[74.35499,30.6285],[74.34996,30.62307],[74.34137,30.60354],[74.34883,30.5995],[74.36207,30.59584],[74.36382,30.59209],[74.36957,30.58803],[74.37318,30.58987],[74.38443,30.59058],[74.38895,30.59433],[74.40142,30.59772],[74.41954,30.59705],[74.41935,30.60421],[74.41422,30.60946],[74.41378,30.61225],[74.41557,30.6109],[74.41998,30.61162],[74.4328,30.62228],[74.44033,30.62614],[74.44709,30.6244],[74.44966,30.61996],[74.46183,30.60831],[74.46421,30.61553],[74.45803,30.62041],[74.494,30.63723],[74.48771,30.63689],[74.48204,30.6405],[74.47613,30.6466],[74.4764,30.65518],[74.48338,30.66395],[74.49706,30.66303],[74.50456,30.6687],[74.4932,30.6696],[74.48002,30.67329],[74.47718,30.68829],[74.4729,30.69795],[74.47401,30.71553],[74.46883,30.7451],[74.47016,30.74854],[74.47993,30.75602],[74.50178,30.76534],[74.52187,30.77135],[74.52429,30.77308],[74.523,30.7747],[74.53028,30.78351],[74.54237,30.79251],[74.56511,30.79964],[74.56691,30.8024],[74.5773,30.80819],[74.5877,30.80751],[74.59649,30.80924],[74.60653,30.81933],[74.6114,30.82718],[74.61368,30.82912],[74.61755,30.82847],[74.62292,30.83279],[74.62403,30.83643],[74.64409,30.81906],[74.64846,30.81828],[74.65345,30.82165],[74.65585,30.82893],[74.65899,30.83294],[74.6632,30.83417],[74.68141,30.82484],[74.68758,30.82999],[74.69251,30.83102],[74.69888,30.82652],[74.7085,30.8288],[74.71278,30.82603],[74.71877,30.8259],[74.72735,30.82297],[74.74054,30.82627],[74.74771,30.82254],[74.75463,30.81247],[74.77139,30.81536],[74.7699,30.81179],[74.77119,30.8111],[74.77298,30.81314],[74.77843,30.81038],[74.78136,30.8059],[74.78244,30.79574],[74.78442,30.79415],[74.8072,30.78925],[74.80774,30.776],[74.81314,30.76837],[74.81705,30.76678],[74.82852,30.77026],[74.83562,30.77037],[74.83984,30.76707],[74.84461,30.7588],[74.84869,30.7566],[74.85465,30.75716],[74.85686,30.75083],[74.85462,30.74798],[74.85824,30.74369],[74.86624,30.7466],[74.87519,30.74664],[74.88029,30.74582],[74.88312,30.74098],[74.89192,30.73834],[74.9031,30.73931],[74.90877,30.73658],[74.91218,30.74136],[74.91233,30.74781],[74.91193,30.75129],[74.9076,30.75418],[74.90715,30.75798],[74.91178,30.7639],[74.91216,30.76815],[74.91053,30.77064],[74.91433,30.77564],[74.91491,30.78226],[74.93099,30.78899],[74.92835,30.79446],[74.9281,30.80451],[74.94718,30.82843],[74.94613,30.83403],[74.94098,30.83899],[74.94792,30.85723],[74.94482,30.86483],[74.94256,30.87766],[74.94403,30.87782],[74.9458,30.88177],[74.94796,30.88181],[74.95165,30.88503],[74.95316,30.88881],[74.95223,30.89163],[74.95759,30.88919],[74.96534,30.8907],[74.97111,30.88915],[74.98028,30.89004],[74.99644,30.88859],[75.00041,30.89578],[75.00439,30.89324],[75.0161,30.89232],[75.03041,30.89681],[75.03369,30.90324],[75.03649,30.91729],[75.04082,30.92218],[75.05103,30.92355],[75.06985,30.94507],[75.07848,30.94639],[75.07762,30.95756],[75.08653,30.95864],[75.09286,30.97019],[75.0938,30.97545],[75.10297,30.9721],[75.10349,30.97561],[75.10098,30.97622],[75.09955,30.97911],[75.09613,30.99166],[75.10217,30.99752],[75.09633,31.00252],[75.10325,31.01534],[75.09551,31.02552],[75.06768,31.03423],[75.0678,31.04075],[75.05296,31.04283],[75.04731,31.05192],[75.05172,31.06253],[75.06203,31.06765],[75.06836,31.05323],[75.07146,31.05224],[75.07287,31.04685],[75.0943,31.04709],[75.09617,31.05024],[75.09646,31.05868],[75.08447,31.06216],[75.08183,31.06538],[75.08359,31.06873],[75.09459,31.07134],[75.10014,31.06521],[75.10403,31.06626],[75.10828,31.06816],[75.09995,31.07214],[75.09931,31.07737],[75.10926,31.07517],[75.11195,31.07902],[75.11632,31.07812],[75.11799,31.08137],[75.12013,31.08168],[75.12682,31.07898],[75.12832,31.07644],[75.13389,31.07373],[75.13897,31.08076],[75.14193,31.08051],[75.14499,31.0842],[75.15006,31.09437],[75.14881,31.09606],[75.15006,31.09777],[75.1357,31.10477],[75.13849,31.10856],[75.13457,31.11218],[75.13384,31.11109],[75.13099,31.11294],[75.13189,31.11634],[75.12861,31.11656],[75.1259,31.12115],[75.11773,31.12382],[75.10898,31.12935],[75.10645,31.12916],[75.10276,31.12556],[75.09964,31.12591],[75.08734,31.13237],[75.0771,31.13422],[75.07614,31.13544],[75.07723,31.13758],[75.08351,31.14678],[75.08194,31.15102],[75.07943,31.15291],[75.07478,31.14765],[75.06849,31.14551],[75.06192,31.14921],[75.06093,31.14585],[75.04275,31.15484],[75.03928,31.15396],[75.03697,31.15093],[75.02402,31.15645],[75.01828,31.14811],[75.0134,31.14817],[75.01386,31.14509],[75.00664,31.14506],[75.00799,31.14095],[75.01126,31.13882],[75.01337,31.13019],[75.00991,31.12025],[75.00586,31.11974],[75.00165,31.12136],[74.98833,31.132],[74.95985,31.14726],[74.96446,31.1535],[74.94732,31.15259],[74.93634,31.15509],[74.92019,31.16229]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"310","area_level":"District","area_name":"Dakshin Dinajpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.41167,25.60429],[88.40862,25.60643],[88.39771,25.60611],[88.40074,25.60043],[88.39478,25.59901],[88.39136,25.59418],[88.37812,25.59495],[88.37454,25.59022],[88.36939,25.59119],[88.36644,25.57945],[88.36262,25.57745],[88.36042,25.56688],[88.35807,25.5657],[88.35082,25.5665],[88.34672,25.55809],[88.33618,25.55921],[88.33572,25.55306],[88.33406,25.55652],[88.32714,25.55915],[88.32028,25.54325],[88.3211,25.54147],[88.32651,25.54047],[88.32455,25.53567],[88.31245,25.52616],[88.30478,25.52312],[88.29896,25.51774],[88.29129,25.51461],[88.28934,25.51168],[88.28765,25.50182],[88.27885,25.49404],[88.27848,25.49181],[88.26895,25.48706],[88.25671,25.48632],[88.2539,25.4777],[88.25573,25.47769],[88.25794,25.47293],[88.25971,25.47298],[88.26333,25.46874],[88.26432,25.46328],[88.26255,25.46256],[88.26392,25.4568],[88.26215,25.45554],[88.26063,25.44861],[88.26349,25.44098],[88.26507,25.44042],[88.26292,25.43872],[88.26296,25.43309],[88.24609,25.43258],[88.24519,25.436],[88.24175,25.43926],[88.21932,25.44126],[88.2161,25.43444],[88.21137,25.4345],[88.20967,25.42979],[88.20018,25.43036],[88.19777,25.42603],[88.17452,25.42934],[88.1684,25.42795],[88.16758,25.42465],[88.16925,25.42316],[88.16976,25.41697],[88.17367,25.41575],[88.17306,25.41199],[88.17006,25.41064],[88.17088,25.40905],[88.16602,25.40742],[88.17147,25.40468],[88.17029,25.40063],[88.17313,25.39919],[88.17651,25.39407],[88.17481,25.38541],[88.18187,25.38392],[88.17934,25.37913],[88.18471,25.37903],[88.18809,25.37638],[88.1854,25.37186],[88.18566,25.36944],[88.16539,25.36866],[88.16818,25.36586],[88.1712,25.36535],[88.1723,25.3574],[88.17698,25.35334],[88.17815,25.35106],[88.1768,25.34888],[88.18017,25.34548],[88.17531,25.33473],[88.16919,25.3291],[88.17147,25.32496],[88.17418,25.32458],[88.17782,25.32858],[88.18454,25.33091],[88.20475,25.32997],[88.20731,25.33336],[88.21772,25.33312],[88.21967,25.33131],[88.21798,25.32851],[88.22864,25.3239],[88.22928,25.3205],[88.24619,25.31709],[88.25491,25.31735],[88.26118,25.31022],[88.26742,25.31035],[88.26591,25.30853],[88.26765,25.30811],[88.2666,25.30532],[88.26417,25.30264],[88.26543,25.30092],[88.27014,25.30343],[88.27435,25.31739],[88.27476,25.31589],[88.288,25.31564],[88.28751,25.31225],[88.29096,25.31216],[88.29101,25.30899],[88.29438,25.30856],[88.29475,25.30626],[88.3001,25.30695],[88.2998,25.29849],[88.3061,25.30034],[88.30978,25.29906],[88.31789,25.30071],[88.32235,25.29882],[88.32285,25.29681],[88.33078,25.29626],[88.33205,25.29721],[88.32966,25.30496],[88.34164,25.30251],[88.35226,25.29708],[88.35428,25.29732],[88.35596,25.30013],[88.36118,25.29443],[88.36189,25.29109],[88.37216,25.28888],[88.3802,25.28911],[88.38295,25.29121],[88.38472,25.29597],[88.39023,25.29789],[88.39305,25.30298],[88.39493,25.30225],[88.39943,25.29341],[88.41272,25.29683],[88.41216,25.29997],[88.42608,25.30163],[88.42939,25.30341],[88.42929,25.30939],[88.41801,25.31156],[88.41885,25.31417],[88.42259,25.31413],[88.42516,25.31592],[88.42997,25.31384],[88.43141,25.31532],[88.44343,25.31316],[88.44893,25.30671],[88.44888,25.30144],[88.44564,25.29373],[88.44649,25.29067],[88.43909,25.27905],[88.44646,25.26935],[88.44698,25.265],[88.44973,25.26284],[88.45649,25.26123],[88.45723,25.26251],[88.45353,25.26347],[88.45512,25.26706],[88.45684,25.2666],[88.46242,25.27105],[88.46397,25.27002],[88.46123,25.26851],[88.46275,25.26457],[88.4586,25.25528],[88.46059,25.25283],[88.45912,25.24563],[88.4553,25.23836],[88.45145,25.23585],[88.45341,25.23229],[88.44882,25.22986],[88.45028,25.22709],[88.45262,25.2279],[88.44839,25.22504],[88.45002,25.22167],[88.44825,25.22028],[88.44328,25.22178],[88.4391,25.21898],[88.44014,25.21615],[88.44317,25.21856],[88.44511,25.21468],[88.44281,25.21033],[88.43778,25.20727],[88.43832,25.1969],[88.44156,25.19988],[88.44295,25.19626],[88.44428,25.19614],[88.44369,25.1973],[88.44786,25.1975],[88.46343,25.19496],[88.46712,25.19724],[88.47177,25.19744],[88.46986,25.20096],[88.47448,25.20808],[88.47548,25.21338],[88.479,25.21311],[88.47995,25.21115],[88.49915,25.21039],[88.50005,25.20343],[88.51097,25.20235],[88.51227,25.20385],[88.52003,25.20054],[88.53778,25.19782],[88.53248,25.19377],[88.53434,25.19202],[88.53398,25.18752],[88.53733,25.1869],[88.53784,25.18906],[88.54078,25.18903],[88.54213,25.19396],[88.5461,25.19329],[88.54809,25.19522],[88.55761,25.19261],[88.55996,25.1909],[88.5598,25.18437],[88.55576,25.17897],[88.55934,25.17637],[88.56558,25.17509],[88.57083,25.17578],[88.5712,25.17734],[88.57507,25.17607],[88.57964,25.17682],[88.58148,25.18214],[88.58698,25.18224],[88.58936,25.18569],[88.59121,25.18509],[88.59196,25.18716],[88.5899,25.19258],[88.59271,25.19336],[88.59815,25.19043],[88.59908,25.19226],[88.6103,25.19802],[88.61272,25.20417],[88.61778,25.20349],[88.62091,25.20518],[88.63102,25.20171],[88.64289,25.20628],[88.6471,25.20426],[88.66423,25.20278],[88.66692,25.19875],[88.66913,25.19819],[88.67272,25.19833],[88.67582,25.20254],[88.67858,25.20309],[88.67931,25.2049],[88.67799,25.20555],[88.68008,25.2089],[88.68759,25.20915],[88.68866,25.20733],[88.71148,25.20766],[88.71274,25.2061],[88.71525,25.20638],[88.7175,25.20153],[88.7236,25.20224],[88.72451,25.19873],[88.72807,25.19839],[88.72948,25.20001],[88.73301,25.19876],[88.73279,25.19589],[88.73429,25.19477],[88.73348,25.19105],[88.73544,25.18914],[88.73455,25.18461],[88.74023,25.18504],[88.74256,25.18668],[88.74365,25.18341],[88.74901,25.18194],[88.75093,25.18282],[88.74858,25.17935],[88.7491,25.17685],[88.75242,25.17683],[88.75861,25.18662],[88.76703,25.18312],[88.7694,25.18985],[88.77283,25.18942],[88.77367,25.17936],[88.79889,25.17094],[88.80586,25.17045],[88.80595,25.17341],[88.81339,25.17427],[88.81485,25.18491],[88.81778,25.18625],[88.81791,25.1889],[88.82084,25.18851],[88.82097,25.19042],[88.82273,25.18953],[88.82283,25.19101],[88.82741,25.19216],[88.83038,25.20533],[88.83165,25.20655],[88.83675,25.20616],[88.83764,25.2109],[88.84236,25.21062],[88.8412,25.21359],[88.84376,25.21381],[88.84595,25.21089],[88.84775,25.21127],[88.84629,25.2091],[88.85018,25.21012],[88.84863,25.20635],[88.84992,25.20546],[88.84975,25.20174],[88.85161,25.20053],[88.85483,25.19982],[88.85851,25.20235],[88.86492,25.20059],[88.86438,25.18999],[88.87146,25.19133],[88.8716,25.19476],[88.87495,25.19622],[88.87255,25.19008],[88.87526,25.18572],[88.87526,25.17934],[88.88987,25.17836],[88.88942,25.18465],[88.89045,25.18471],[88.89905,25.18244],[88.89966,25.18035],[88.90365,25.17908],[88.91098,25.18031],[88.91267,25.17791],[88.91239,25.16796],[88.91839,25.16729],[88.92308,25.16491],[88.92414,25.17181],[88.92891,25.17439],[88.92781,25.17649],[88.93259,25.18088],[88.939,25.17919],[88.94119,25.17344],[88.94329,25.17349],[88.94588,25.17675],[88.94882,25.17658],[88.94965,25.18118],[88.94355,25.18303],[88.94782,25.18736],[88.94756,25.19445],[88.94242,25.19282],[88.93786,25.19351],[88.9339,25.19978],[88.93728,25.20284],[88.93644,25.21052],[88.93801,25.21173],[88.94341,25.2087],[88.94443,25.20611],[88.95073,25.20631],[88.95197,25.20768],[88.95492,25.20665],[88.95787,25.20911],[88.95941,25.20802],[88.96177,25.20907],[88.95804,25.21443],[88.95779,25.22312],[88.95205,25.22975],[88.95187,25.23327],[88.95436,25.23708],[88.95108,25.24548],[88.95517,25.25031],[88.9563,25.25507],[88.95902,25.25436],[88.96978,25.25792],[88.97076,25.2604],[88.97465,25.26014],[88.97587,25.26405],[88.98227,25.26488],[88.98143,25.26713],[88.98391,25.26826],[88.9866,25.27439],[88.99238,25.27367],[88.99325,25.27007],[89.00533,25.26899],[89.00439,25.26506],[89.00763,25.26362],[89.00621,25.2761],[89.0094,25.29737],[89.00895,25.30301],[89.00584,25.30287],[89.00635,25.29989],[89.00338,25.29937],[89.00172,25.29609],[88.99612,25.29563],[88.99527,25.29704],[88.99258,25.2962],[88.98992,25.2993],[88.98519,25.2988],[88.98659,25.3018],[88.98395,25.3007],[88.98276,25.30293],[88.98531,25.30594],[88.97593,25.30619],[88.97468,25.3016],[88.97144,25.30094],[88.96101,25.3059],[88.96041,25.30141],[88.95764,25.30075],[88.95585,25.30268],[88.95286,25.302],[88.94996,25.30376],[88.93923,25.30066],[88.93416,25.30385],[88.92946,25.30408],[88.9278,25.3172],[88.928,25.3152],[88.92483,25.31492],[88.92401,25.31202],[88.91552,25.31203],[88.91558,25.31484],[88.91329,25.31546],[88.90974,25.32144],[88.91011,25.32343],[88.9061,25.32787],[88.90629,25.33769],[88.88765,25.3371],[88.8858,25.33298],[88.88854,25.32606],[88.88512,25.32562],[88.87644,25.3332],[88.8757,25.33728],[88.87369,25.33671],[88.87259,25.33948],[88.86648,25.34297],[88.86832,25.344],[88.86892,25.35221],[88.86375,25.35166],[88.86259,25.35507],[88.85571,25.3542],[88.85451,25.3632],[88.84569,25.36206],[88.84576,25.36356],[88.84018,25.36376],[88.84015,25.36808],[88.83784,25.36804],[88.83945,25.37375],[88.83848,25.3814],[88.84172,25.38161],[88.84048,25.38387],[88.8368,25.38435],[88.83696,25.39074],[88.83997,25.3913],[88.84128,25.39337],[88.84086,25.39763],[88.83802,25.39731],[88.83719,25.4018],[88.82375,25.40102],[88.82324,25.40952],[88.8123,25.41054],[88.81647,25.41367],[88.81833,25.41807],[88.82023,25.41794],[88.81964,25.41526],[88.83,25.41694],[88.83078,25.4232],[88.82856,25.42591],[88.82987,25.42759],[88.83445,25.42737],[88.83431,25.43166],[88.83247,25.43152],[88.83211,25.43692],[88.82688,25.43745],[88.82624,25.44448],[88.83183,25.44861],[88.82856,25.44876],[88.83791,25.45331],[88.83933,25.45834],[88.83518,25.46335],[88.83739,25.47281],[88.83359,25.47848],[88.82966,25.49025],[88.81366,25.48798],[88.80958,25.49884],[88.81048,25.5102],[88.80804,25.51319],[88.81089,25.52294],[88.80333,25.52432],[88.79238,25.5227],[88.79252,25.52088],[88.78533,25.51854],[88.78642,25.51641],[88.78244,25.51508],[88.77605,25.51642],[88.77622,25.51858],[88.76783,25.52181],[88.76746,25.52516],[88.75869,25.52524],[88.75821,25.5221],[88.76039,25.52205],[88.76106,25.5168],[88.75948,25.51072],[88.76627,25.50391],[88.76881,25.50338],[88.77087,25.50498],[88.7691,25.49887],[88.76379,25.49618],[88.76495,25.49511],[88.76336,25.49404],[88.75953,25.49271],[88.74944,25.49394],[88.74605,25.49199],[88.74503,25.48785],[88.7402,25.48921],[88.742,25.49479],[88.74392,25.49478],[88.74215,25.50499],[88.72649,25.50329],[88.72577,25.5019],[88.72155,25.50154],[88.72122,25.4997],[88.71441,25.4995],[88.71544,25.49852],[88.71335,25.49808],[88.71382,25.49557],[88.71188,25.49677],[88.71329,25.49998],[88.70852,25.50025],[88.70805,25.49228],[88.71041,25.4806],[88.70645,25.47982],[88.70753,25.47695],[88.70043,25.47595],[88.6996,25.47121],[88.68854,25.47547],[88.663,25.47364],[88.66025,25.48178],[88.6528,25.48111],[88.64641,25.47834],[88.6427,25.49268],[88.64577,25.4941],[88.64843,25.49306],[88.64792,25.49679],[88.64081,25.49986],[88.62248,25.49696],[88.6197,25.50377],[88.61555,25.50532],[88.61303,25.50987],[88.60738,25.50859],[88.60995,25.51104],[88.60909,25.5163],[88.60243,25.51569],[88.59767,25.50655],[88.59551,25.50588],[88.59089,25.50936],[88.58835,25.50689],[88.58548,25.50973],[88.57286,25.5088],[88.56782,25.5112],[88.5683,25.51391],[88.56018,25.51241],[88.5531,25.51533],[88.55517,25.51962],[88.55493,25.52088],[88.55236,25.52079],[88.54801,25.51816],[88.54836,25.51375],[88.54467,25.51067],[88.54638,25.50834],[88.53995,25.5083],[88.53974,25.51056],[88.54125,25.51165],[88.53946,25.51572],[88.54041,25.51986],[88.53737,25.52102],[88.53803,25.52526],[88.54114,25.5261],[88.53948,25.52664],[88.54026,25.5328],[88.53943,25.53475],[88.5328,25.53222],[88.53309,25.5421],[88.5277,25.54333],[88.52349,25.53516],[88.51872,25.53828],[88.51969,25.54462],[88.5138,25.54752],[88.50909,25.54414],[88.50784,25.54773],[88.50033,25.55076],[88.49756,25.55557],[88.49899,25.55867],[88.49351,25.55885],[88.49371,25.56358],[88.49923,25.57403],[88.49992,25.58395],[88.49442,25.5845],[88.49332,25.58248],[88.49143,25.58295],[88.49131,25.58459],[88.48364,25.5865],[88.48143,25.58196],[88.48078,25.58565],[88.47197,25.58524],[88.47023,25.58315],[88.46827,25.58351],[88.46977,25.58851],[88.46575,25.58691],[88.4671,25.58925],[88.46582,25.59183],[88.45947,25.59345],[88.45732,25.5959],[88.45827,25.59806],[88.45712,25.59887],[88.44474,25.59654],[88.44904,25.59073],[88.44653,25.5881],[88.43591,25.58555],[88.42908,25.58622],[88.42671,25.58977],[88.42417,25.58676],[88.42195,25.58977],[88.41675,25.59054],[88.41493,25.59249],[88.41499,25.59734],[88.42099,25.59798],[88.42096,25.60244],[88.41167,25.60429]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"311","area_level":"District","area_name":"Uttar Dinajpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.32326,26.49624],[88.31259,26.4994],[88.30712,26.49542],[88.30638,26.49069],[88.3036,26.48775],[88.29986,26.48777],[88.29446,26.49138],[88.2899,26.49022],[88.28714,26.48742],[88.28454,26.48819],[88.28253,26.48556],[88.27669,26.49115],[88.27477,26.48967],[88.27494,26.4859],[88.26265,26.48807],[88.26206,26.48508],[88.25895,26.48191],[88.25708,26.4686],[88.24874,26.46751],[88.23898,26.45218],[88.24382,26.45384],[88.24286,26.44872],[88.24817,26.43668],[88.25108,26.4359],[88.25085,26.43315],[88.25846,26.43218],[88.2594,26.42863],[88.26341,26.42877],[88.26305,26.42283],[88.26701,26.42285],[88.26952,26.42011],[88.26455,26.41541],[88.25489,26.41707],[88.25242,26.41605],[88.24756,26.40752],[88.23923,26.40344],[88.23826,26.39886],[88.23199,26.39297],[88.22794,26.39275],[88.22704,26.38947],[88.23321,26.38634],[88.23275,26.38398],[88.23426,26.38255],[88.23401,26.38066],[88.23232,26.38038],[88.23304,26.37853],[88.24047,26.3752],[88.24657,26.37418],[88.24678,26.37538],[88.25365,26.37664],[88.25756,26.38128],[88.26148,26.37762],[88.2663,26.3792],[88.26807,26.38146],[88.27194,26.37783],[88.27652,26.37925],[88.27444,26.37624],[88.27674,26.37252],[88.2765,26.36826],[88.27884,26.36668],[88.27981,26.35968],[88.28273,26.35757],[88.29019,26.35997],[88.29089,26.35827],[88.289,26.35396],[88.29369,26.35293],[88.2938,26.35173],[88.29169,26.34925],[88.29035,26.35142],[88.28599,26.35242],[88.28433,26.34965],[88.27891,26.34939],[88.2782,26.3432],[88.28115,26.34202],[88.27987,26.33196],[88.2763,26.33238],[88.27469,26.32857],[88.26979,26.32787],[88.26877,26.33141],[88.26648,26.33227],[88.26981,26.33348],[88.27088,26.33753],[88.26838,26.33799],[88.26688,26.33508],[88.25778,26.33552],[88.25779,26.33195],[88.25439,26.32699],[88.24923,26.32793],[88.24805,26.32636],[88.24691,26.32775],[88.24674,26.32428],[88.2442,26.32201],[88.24554,26.31454],[88.23987,26.31155],[88.2362,26.30363],[88.23165,26.30582],[88.23184,26.3087],[88.22943,26.31037],[88.23061,26.30792],[88.22671,26.30362],[88.22818,26.29566],[88.22591,26.29407],[88.22693,26.2909],[88.21712,26.28445],[88.21335,26.28404],[88.21322,26.28043],[88.21063,26.27779],[88.20159,26.28092],[88.19732,26.27186],[88.18318,26.27368],[88.18265,26.27044],[88.17901,26.2691],[88.17947,26.26331],[88.17419,26.25579],[88.17177,26.25565],[88.16822,26.25815],[88.16324,26.25341],[88.16048,26.25689],[88.15544,26.25811],[88.15434,26.25452],[88.15241,26.25349],[88.1444,26.25224],[88.14265,26.25047],[88.14112,26.2434],[88.13674,26.24122],[88.1366,26.23248],[88.14176,26.23164],[88.13982,26.22719],[88.13089,26.22715],[88.12987,26.22502],[88.12573,26.22776],[88.11442,26.22372],[88.11658,26.21915],[88.11111,26.2177],[88.11146,26.21545],[88.10541,26.21438],[88.10314,26.21124],[88.10361,26.20778],[88.10087,26.20753],[88.10113,26.20601],[88.09823,26.20528],[88.09781,26.20359],[88.09579,26.20488],[88.09371,26.20367],[88.09424,26.20256],[88.09134,26.20214],[88.08932,26.19073],[88.08543,26.19103],[88.08174,26.18683],[88.07621,26.18532],[88.07581,26.18252],[88.07804,26.1798],[88.07185,26.1742],[88.06949,26.17413],[88.06888,26.17685],[88.06497,26.17699],[88.0657,26.17517],[88.05907,26.1705],[88.05771,26.17278],[88.0508,26.17218],[88.04983,26.17607],[88.03723,26.17871],[88.03149,26.17521],[88.03293,26.17321],[88.03177,26.16998],[88.02829,26.17004],[88.02648,26.16544],[88.02416,26.16526],[88.01968,26.15982],[88.01434,26.15857],[88.00998,26.16154],[88.00783,26.15805],[88.01415,26.14931],[88.01077,26.14477],[88.00625,26.14574],[87.99988,26.1384],[87.99439,26.14341],[87.99207,26.15096],[87.98502,26.14565],[87.98588,26.14268],[87.98375,26.14212],[87.98131,26.14458],[87.9749,26.14337],[87.97245,26.14],[87.97919,26.13797],[87.97849,26.13015],[87.98153,26.12769],[87.9814,26.12606],[87.97981,26.1243],[87.97615,26.12528],[87.97534,26.12426],[87.97955,26.12342],[87.97939,26.12228],[87.9708,26.12046],[87.96927,26.11762],[87.97152,26.11536],[87.97427,26.11664],[87.98376,26.11571],[87.98511,26.11143],[87.98577,26.11344],[87.98773,26.10977],[87.98585,26.10927],[87.98647,26.1066],[87.98464,26.1067],[87.98335,26.10427],[87.98689,26.10275],[87.9868,26.10141],[87.9823,26.10189],[87.98212,26.10324],[87.97861,26.10117],[87.97752,26.10272],[87.9772,26.1005],[87.97624,26.10194],[87.97343,26.09956],[87.97176,26.10057],[87.96714,26.09786],[87.96843,26.09688],[87.96747,26.0961],[87.96664,26.09686],[87.96653,26.0955],[87.96361,26.09463],[87.97152,26.09293],[87.97075,26.08867],[87.97666,26.08707],[87.9782,26.0838],[87.98202,26.08366],[87.98224,26.07987],[87.98562,26.07766],[87.98219,26.07376],[87.97279,26.07743],[87.9655,26.07405],[87.95808,26.07632],[87.95521,26.07474],[87.95291,26.07647],[87.95335,26.0753],[87.95039,26.07421],[87.95232,26.07188],[87.94855,26.0696],[87.95196,26.068],[87.95482,26.06903],[87.95452,26.06567],[87.95264,26.06461],[87.95033,26.06562],[87.95012,26.06055],[87.94886,26.0619],[87.9455,26.06076],[87.93492,26.06368],[87.93635,26.0686],[87.93064,26.07031],[87.93178,26.08029],[87.93136,26.08202],[87.92805,26.08307],[87.92053,26.07569],[87.91687,26.07706],[87.91008,26.07137],[87.90699,26.07234],[87.90124,26.06291],[87.89878,26.064],[87.8924,26.06116],[87.89039,26.05792],[87.89045,26.04962],[87.88924,26.0486],[87.88301,26.04684],[87.87833,26.04953],[87.86426,26.03648],[87.85593,26.03598],[87.85422,26.03183],[87.85452,26.02936],[87.85725,26.02808],[87.85646,26.02158],[87.85446,26.01667],[87.85045,26.01416],[87.85446,26.01253],[87.85422,26.01008],[87.85041,26.00345],[87.85141,26.00228],[87.84945,25.99543],[87.84794,25.99369],[87.84513,25.99412],[87.84575,25.98557],[87.84413,25.98133],[87.84464,25.97691],[87.84708,25.97467],[87.84472,25.97393],[87.84577,25.96958],[87.84706,25.96937],[87.84574,25.96684],[87.84657,25.96334],[87.83668,25.96012],[87.83596,25.95831],[87.83826,25.95203],[87.8337,25.94585],[87.83403,25.94216],[87.83695,25.94228],[87.83935,25.93811],[87.83473,25.93168],[87.83843,25.93149],[87.83311,25.92791],[87.81959,25.93394],[87.81605,25.93172],[87.81262,25.93211],[87.81187,25.93015],[87.80737,25.92985],[87.809,25.92837],[87.80885,25.92069],[87.813,25.91764],[87.81207,25.91595],[87.80757,25.91609],[87.80803,25.91216],[87.81206,25.90997],[87.81553,25.91022],[87.81647,25.91202],[87.81518,25.91486],[87.81689,25.91283],[87.81983,25.914],[87.82258,25.91213],[87.82136,25.90298],[87.81959,25.90034],[87.82505,25.89715],[87.82683,25.89408],[87.82178,25.88752],[87.82332,25.88559],[87.82234,25.88195],[87.82602,25.88033],[87.82572,25.87774],[87.82925,25.87774],[87.82748,25.87468],[87.82983,25.87065],[87.85017,25.8696],[87.8587,25.86479],[87.86806,25.86865],[87.86953,25.86863],[87.86979,25.86657],[87.87338,25.86612],[87.87437,25.86822],[87.87565,25.86061],[87.88271,25.85936],[87.88707,25.8612],[87.88862,25.86511],[87.89211,25.86574],[87.90256,25.86168],[87.90187,25.85793],[87.90608,25.85782],[87.90829,25.85407],[87.91131,25.85273],[87.91469,25.85395],[87.91412,25.85145],[87.91208,25.85112],[87.90779,25.84527],[87.9036,25.84287],[87.90541,25.84039],[87.90855,25.84107],[87.90592,25.83969],[87.90326,25.84254],[87.90209,25.84207],[87.90421,25.83645],[87.89673,25.83794],[87.90285,25.83395],[87.90099,25.83269],[87.89607,25.83707],[87.89408,25.83396],[87.89204,25.83534],[87.89121,25.83218],[87.88804,25.83066],[87.89357,25.8275],[87.89609,25.82804],[87.89501,25.82923],[87.89752,25.83024],[87.89724,25.83161],[87.90254,25.83052],[87.90168,25.82793],[87.89956,25.82867],[87.8978,25.82707],[87.89962,25.8258],[87.89911,25.82461],[87.90442,25.82248],[87.90558,25.81981],[87.90889,25.81988],[87.91588,25.8164],[87.91435,25.81134],[87.90796,25.81568],[87.90752,25.812],[87.90384,25.814],[87.89946,25.80749],[87.90564,25.80756],[87.90797,25.80342],[87.90164,25.80225],[87.90382,25.80202],[87.90685,25.7809],[87.90609,25.78012],[87.90425,25.78247],[87.90318,25.78151],[87.90345,25.77791],[87.902,25.77622],[87.90417,25.77113],[87.90609,25.77143],[87.90768,25.76969],[87.909,25.77173],[87.90706,25.77354],[87.91931,25.77458],[87.92392,25.77638],[87.92568,25.77567],[87.92611,25.77279],[87.93363,25.76943],[87.93424,25.77179],[87.93263,25.77295],[87.9353,25.77471],[87.93797,25.77393],[87.93788,25.77214],[87.94219,25.76941],[87.94239,25.75966],[87.94759,25.75764],[87.94365,25.75087],[87.94623,25.75254],[87.94705,25.75161],[87.94765,25.74752],[87.94626,25.74624],[87.95223,25.74619],[87.95544,25.74181],[87.96137,25.73866],[87.96102,25.73638],[87.96633,25.7328],[87.9657,25.72562],[87.98312,25.71996],[87.98476,25.7243],[87.98962,25.72619],[87.99233,25.72314],[87.99885,25.7219],[88.00103,25.71647],[88.01212,25.71031],[88.02107,25.70969],[88.01862,25.70017],[88.01966,25.69627],[88.03055,25.69441],[88.0312,25.69791],[88.0291,25.70109],[88.03052,25.70304],[88.03497,25.70208],[88.03764,25.69698],[88.04053,25.69756],[88.04279,25.70199],[88.04814,25.6979],[88.05155,25.69117],[88.05249,25.68498],[88.0459,25.67898],[88.04783,25.66905],[88.04659,25.66273],[88.05012,25.66076],[88.04564,25.65596],[88.04853,25.64961],[88.04817,25.64622],[88.04474,25.64589],[88.04359,25.6431],[88.04024,25.64723],[88.03783,25.64727],[88.0368,25.64164],[88.04112,25.64259],[88.0463,25.63475],[88.04911,25.63754],[88.05396,25.63918],[88.05496,25.63681],[88.04978,25.63452],[88.04782,25.63145],[88.04471,25.6341],[88.04067,25.63211],[88.03508,25.62394],[88.03728,25.61633],[88.04287,25.61077],[88.04323,25.60865],[88.03708,25.60921],[88.03008,25.6053],[88.03322,25.60347],[88.04001,25.60334],[88.03982,25.60106],[88.03332,25.59983],[88.0311,25.60174],[88.02421,25.60204],[88.02521,25.5983],[88.03097,25.60007],[88.02938,25.59706],[88.02969,25.59261],[88.02816,25.59092],[88.02406,25.59206],[88.02026,25.59115],[88.02545,25.58622],[88.02464,25.58278],[88.02625,25.57877],[88.02881,25.5811],[88.02772,25.57665],[88.02402,25.5762],[88.02554,25.57207],[88.02825,25.56999],[88.03397,25.57097],[88.03851,25.5694],[88.03417,25.56392],[88.03255,25.56676],[88.03048,25.56567],[88.02892,25.56078],[88.02582,25.55886],[88.02699,25.55609],[88.03043,25.55595],[88.03553,25.55253],[88.03833,25.55299],[88.03372,25.54724],[88.03582,25.54479],[88.03728,25.53832],[88.04204,25.53742],[88.04736,25.53955],[88.05317,25.53515],[88.05784,25.53404],[88.05959,25.52838],[88.06447,25.52524],[88.07113,25.51745],[88.07089,25.51576],[88.0665,25.51275],[88.06655,25.51039],[88.07653,25.5081],[88.07324,25.50817],[88.07175,25.50616],[88.07139,25.49587],[88.07269,25.49429],[88.07159,25.49337],[88.07427,25.47762],[88.07907,25.4697],[88.08011,25.4541],[88.0855,25.44778],[88.09709,25.44276],[88.09721,25.43551],[88.10064,25.43189],[88.10665,25.43537],[88.11282,25.43605],[88.11191,25.43321],[88.105,25.43296],[88.10073,25.42904],[88.09596,25.42756],[88.0939,25.42088],[88.09756,25.41752],[88.10395,25.4188],[88.10997,25.41705],[88.10704,25.41349],[88.10068,25.41026],[88.10218,25.40463],[88.10631,25.40321],[88.1092,25.40779],[88.11447,25.40793],[88.10578,25.40104],[88.10888,25.39505],[88.1068,25.39039],[88.0987,25.38889],[88.09896,25.38141],[88.10271,25.38052],[88.118,25.37103],[88.11736,25.36495],[88.1219,25.36646],[88.12192,25.35289],[88.11599,25.35037],[88.11492,25.34837],[88.11998,25.34162],[88.11539,25.33839],[88.11286,25.33167],[88.10814,25.32605],[88.10856,25.3199],[88.11175,25.31887],[88.11137,25.31612],[88.11416,25.31288],[88.11808,25.31226],[88.11795,25.30971],[88.12358,25.30812],[88.1239,25.29896],[88.12634,25.29747],[88.12525,25.29278],[88.10895,25.29474],[88.107,25.29337],[88.10183,25.28834],[88.10906,25.28562],[88.10397,25.27669],[88.10089,25.27703],[88.09962,25.27506],[88.12134,25.27152],[88.12066,25.26802],[88.12514,25.26571],[88.12473,25.26032],[88.12255,25.25736],[88.12658,25.25384],[88.12467,25.24912],[88.1264,25.2447],[88.12758,25.24633],[88.12654,25.24889],[88.13315,25.25512],[88.14167,25.25691],[88.14345,25.26457],[88.14914,25.26944],[88.14968,25.27378],[88.13954,25.27688],[88.14499,25.2906],[88.14456,25.29642],[88.14907,25.29634],[88.14946,25.2986],[88.15616,25.29824],[88.16122,25.30414],[88.16264,25.30133],[88.17281,25.29873],[88.17939,25.29438],[88.18166,25.28967],[88.18615,25.28596],[88.18664,25.28107],[88.18994,25.27983],[88.1917,25.2805],[88.19298,25.28991],[88.19608,25.29065],[88.20533,25.30348],[88.21514,25.31337],[88.23841,25.30433],[88.2361,25.30357],[88.23733,25.29878],[88.23518,25.29505],[88.25313,25.2937],[88.25411,25.29625],[88.2632,25.29713],[88.27045,25.30185],[88.26849,25.30355],[88.26718,25.3011],[88.26419,25.30221],[88.2666,25.30532],[88.26765,25.30811],[88.26591,25.30853],[88.26742,25.31035],[88.26118,25.31022],[88.25491,25.31735],[88.24619,25.31709],[88.22928,25.3205],[88.22864,25.3239],[88.21798,25.32851],[88.21967,25.33131],[88.21865,25.33294],[88.20731,25.33336],[88.20475,25.32997],[88.18454,25.33091],[88.17782,25.32858],[88.17326,25.3243],[88.16976,25.327],[88.16919,25.3291],[88.17531,25.33473],[88.18017,25.34548],[88.1768,25.34888],[88.17815,25.35106],[88.17698,25.35334],[88.1723,25.3574],[88.1712,25.36535],[88.16818,25.36586],[88.16539,25.36866],[88.18566,25.36944],[88.1854,25.37186],[88.18809,25.37638],[88.18471,25.37903],[88.17934,25.37913],[88.18187,25.38392],[88.17481,25.38541],[88.17651,25.39407],[88.17313,25.39919],[88.17029,25.40063],[88.17147,25.40468],[88.16602,25.40742],[88.17088,25.40905],[88.17006,25.41064],[88.17306,25.41199],[88.17367,25.41575],[88.16976,25.41697],[88.16925,25.42316],[88.16758,25.42465],[88.1684,25.42795],[88.17452,25.42934],[88.19777,25.42603],[88.20018,25.43036],[88.20967,25.42979],[88.21137,25.4345],[88.2161,25.43444],[88.21932,25.44126],[88.24175,25.43926],[88.24519,25.436],[88.24609,25.43258],[88.26296,25.43309],[88.26292,25.43872],[88.26507,25.44042],[88.26349,25.44098],[88.26063,25.44861],[88.26215,25.45554],[88.26392,25.4568],[88.26255,25.46256],[88.26432,25.46328],[88.26333,25.46874],[88.25971,25.47298],[88.25794,25.47293],[88.25573,25.47769],[88.2539,25.4777],[88.25617,25.48549],[88.26122,25.48747],[88.26895,25.48706],[88.27848,25.49181],[88.27885,25.49404],[88.28765,25.50182],[88.28934,25.51168],[88.29129,25.51461],[88.29896,25.51774],[88.30478,25.52312],[88.31245,25.52616],[88.32455,25.53567],[88.32651,25.54047],[88.3211,25.54147],[88.32028,25.54325],[88.32714,25.55915],[88.33406,25.55652],[88.33572,25.55306],[88.33618,25.55921],[88.34623,25.55791],[88.34903,25.56093],[88.35082,25.5665],[88.35983,25.56632],[88.36262,25.57745],[88.36644,25.57945],[88.36939,25.59119],[88.37454,25.59022],[88.37812,25.59495],[88.39136,25.59418],[88.39478,25.59901],[88.40074,25.60043],[88.39758,25.60501],[88.39827,25.60625],[88.40862,25.60643],[88.41099,25.60446],[88.42051,25.60303],[88.42099,25.59798],[88.41499,25.59734],[88.41493,25.59249],[88.41675,25.59054],[88.42195,25.58977],[88.42417,25.58676],[88.42671,25.58977],[88.42908,25.58622],[88.43591,25.58555],[88.44653,25.5881],[88.44904,25.59073],[88.44435,25.59692],[88.44479,25.59966],[88.44796,25.60158],[88.44962,25.60499],[88.44757,25.6056],[88.44701,25.61422],[88.4451,25.61378],[88.44504,25.61508],[88.4484,25.61855],[88.44873,25.62389],[88.45581,25.62858],[88.4546,25.62918],[88.45488,25.63504],[88.45653,25.64095],[88.45596,25.64442],[88.45399,25.64469],[88.45636,25.65292],[88.45391,25.65697],[88.45382,25.66494],[88.44403,25.66499],[88.43911,25.66778],[88.42459,25.66903],[88.42437,25.67039],[88.42038,25.6703],[88.41866,25.66767],[88.40169,25.67256],[88.40518,25.68422],[88.40183,25.68597],[88.39019,25.68401],[88.38935,25.68887],[88.39151,25.69352],[88.38523,25.69443],[88.38536,25.69565],[88.38328,25.69542],[88.38159,25.69742],[88.3732,25.69777],[88.37149,25.69654],[88.37056,25.70125],[88.37209,25.70777],[88.36979,25.70868],[88.36995,25.70996],[88.37319,25.70947],[88.37546,25.71481],[88.37425,25.71707],[88.37095,25.7157],[88.36576,25.71718],[88.3638,25.72013],[88.3568,25.7213],[88.35885,25.72807],[88.35621,25.72923],[88.35547,25.72718],[88.34762,25.73042],[88.34407,25.72944],[88.34095,25.73478],[88.33729,25.73543],[88.33759,25.73762],[88.32808,25.74006],[88.3258,25.73762],[88.32095,25.73747],[88.32027,25.7418],[88.31831,25.74271],[88.32076,25.74518],[88.31509,25.74655],[88.31717,25.75252],[88.29909,25.76087],[88.30021,25.7627],[88.29842,25.76323],[88.29974,25.7643],[88.2891,25.76782],[88.29084,25.77376],[88.28197,25.77559],[88.27885,25.77414],[88.27652,25.77488],[88.27719,25.77634],[88.27374,25.779],[88.26651,25.78245],[88.26982,25.78464],[88.27003,25.78862],[88.27187,25.79062],[88.2709,25.80509],[88.26955,25.80818],[88.25966,25.81383],[88.25874,25.81123],[88.24905,25.81208],[88.24864,25.8134],[88.24692,25.80597],[88.24465,25.8072],[88.24456,25.80932],[88.23615,25.80939],[88.23569,25.80658],[88.23016,25.80261],[88.23352,25.80045],[88.23067,25.80045],[88.23226,25.79775],[88.23102,25.79675],[88.22819,25.79677],[88.22647,25.7995],[88.22281,25.79689],[88.21567,25.80143],[88.21538,25.79757],[88.21223,25.79791],[88.21099,25.79616],[88.21031,25.79321],[88.21191,25.79269],[88.21198,25.7941],[88.21268,25.79158],[88.21009,25.79116],[88.20951,25.78681],[88.19949,25.78996],[88.19904,25.79505],[88.19429,25.79805],[88.19481,25.79903],[88.19259,25.80025],[88.19349,25.80153],[88.18377,25.80169],[88.18103,25.79908],[88.1819,25.79616],[88.17991,25.79661],[88.18034,25.79326],[88.17611,25.79383],[88.17311,25.78661],[88.16467,25.78942],[88.15944,25.78761],[88.15907,25.78189],[88.15661,25.78162],[88.15646,25.77854],[88.15149,25.77555],[88.14711,25.77629],[88.14816,25.78141],[88.14524,25.77954],[88.14169,25.78015],[88.14478,25.7876],[88.14426,25.79364],[88.13454,25.79757],[88.12779,25.798],[88.12497,25.79622],[88.11448,25.79794],[88.11582,25.80475],[88.12011,25.81244],[88.11293,25.81561],[88.10702,25.81504],[88.11161,25.82165],[88.10891,25.823],[88.10739,25.82209],[88.10577,25.82625],[88.10117,25.82898],[88.10211,25.83162],[88.10692,25.83392],[88.10838,25.83831],[88.10734,25.84032],[88.10272,25.84089],[88.10143,25.8442],[88.10877,25.84654],[88.11387,25.85436],[88.10981,25.86036],[88.11068,25.86789],[88.10677,25.86897],[88.10503,25.86319],[88.10246,25.86181],[88.10102,25.86317],[88.10203,25.87157],[88.09972,25.87312],[88.09664,25.87117],[88.09417,25.87337],[88.09564,25.87684],[88.09892,25.87853],[88.0969,25.88024],[88.09828,25.8832],[88.10115,25.8847],[88.10302,25.88925],[88.09925,25.89399],[88.09028,25.89652],[88.09072,25.89824],[88.09381,25.899],[88.09037,25.90368],[88.09117,25.90648],[88.09437,25.90848],[88.09182,25.91411],[88.08742,25.91309],[88.08592,25.91524],[88.09468,25.93142],[88.10149,25.93494],[88.10497,25.9331],[88.10547,25.93428],[88.11146,25.93325],[88.11259,25.94347],[88.11792,25.94378],[88.12237,25.94837],[88.11789,25.95591],[88.11403,25.9583],[88.11518,25.96278],[88.11865,25.96259],[88.12427,25.96615],[88.12463,25.96792],[88.1207,25.96884],[88.11929,25.97156],[88.12144,25.97459],[88.12789,25.97661],[88.12903,25.98026],[88.12655,25.98092],[88.1319,25.9898],[88.12901,25.99281],[88.12969,25.99694],[88.13154,25.99691],[88.13252,25.99875],[88.1348,25.99803],[88.13572,26.00059],[88.14021,25.99695],[88.1437,26.00036],[88.14407,26.00756],[88.13971,26.01292],[88.1439,26.01484],[88.14719,26.01364],[88.15,26.01824],[88.15501,26.02004],[88.16094,26.01812],[88.16686,26.02172],[88.17832,26.02144],[88.18321,26.02678],[88.18066,26.03078],[88.17181,26.03278],[88.1712,26.03648],[88.17545,26.03971],[88.16954,26.0452],[88.17107,26.04855],[88.17359,26.04989],[88.17932,26.0465],[88.17606,26.05805],[88.17724,26.05977],[88.18023,26.05824],[88.18567,26.06366],[88.18149,26.06753],[88.18335,26.07289],[88.17355,26.07559],[88.16888,26.08058],[88.1686,26.08355],[88.16275,26.07689],[88.15838,26.07983],[88.1597,26.08363],[88.16487,26.08588],[88.16564,26.08814],[88.16492,26.08961],[88.16127,26.08871],[88.16159,26.09061],[88.15845,26.0953],[88.15934,26.09812],[88.16335,26.10042],[88.16334,26.10728],[88.17201,26.11029],[88.17344,26.11273],[88.1734,26.11899],[88.17839,26.12357],[88.17786,26.12577],[88.1739,26.12826],[88.18004,26.13917],[88.17675,26.14246],[88.17728,26.14806],[88.18176,26.14973],[88.18401,26.15345],[88.19041,26.15529],[88.19508,26.15222],[88.19592,26.15465],[88.1923,26.15504],[88.19154,26.15703],[88.19626,26.15968],[88.19679,26.16349],[88.19929,26.16308],[88.20106,26.15933],[88.20566,26.15924],[88.21622,26.1633],[88.21658,26.16517],[88.21174,26.16736],[88.21443,26.17],[88.21711,26.17027],[88.21832,26.16633],[88.22298,26.16618],[88.22423,26.1693],[88.22694,26.16839],[88.22783,26.16964],[88.22564,26.17128],[88.22619,26.17302],[88.22804,26.17363],[88.22992,26.17184],[88.23339,26.17363],[88.23363,26.17637],[88.23733,26.17731],[88.23329,26.1812],[88.23349,26.18454],[88.23648,26.18267],[88.2416,26.18628],[88.24183,26.18908],[88.24486,26.18946],[88.24348,26.18747],[88.24519,26.18703],[88.24554,26.18992],[88.2495,26.18991],[88.2509,26.18575],[88.25337,26.1851],[88.25354,26.18844],[88.25689,26.18885],[88.25942,26.18649],[88.26372,26.1901],[88.26442,26.18817],[88.26934,26.18648],[88.27132,26.18834],[88.27632,26.18857],[88.2803,26.19511],[88.28421,26.19484],[88.28291,26.19692],[88.28581,26.20015],[88.28764,26.19738],[88.29243,26.20218],[88.2935,26.20132],[88.29224,26.19835],[88.2964,26.20002],[88.29883,26.19727],[88.30088,26.19861],[88.3013,26.20198],[88.30464,26.19908],[88.30847,26.20435],[88.31378,26.20305],[88.31707,26.20487],[88.31984,26.20285],[88.32574,26.20601],[88.32311,26.21022],[88.32659,26.21065],[88.32841,26.21342],[88.33132,26.21288],[88.3312,26.21705],[88.33354,26.21592],[88.33962,26.21749],[88.34784,26.22175],[88.35051,26.22042],[88.3516,26.22268],[88.34993,26.22647],[88.35114,26.22538],[88.35334,26.22663],[88.35101,26.22826],[88.35125,26.23049],[88.35606,26.23272],[88.35657,26.23589],[88.35494,26.23596],[88.35442,26.23831],[88.35856,26.23986],[88.35966,26.24236],[88.35495,26.24532],[88.35122,26.24567],[88.35012,26.24815],[88.35393,26.24677],[88.3538,26.24805],[88.35146,26.25034],[88.34858,26.25028],[88.34965,26.25231],[88.34832,26.25481],[88.35008,26.25644],[88.35141,26.26339],[88.3499,26.26527],[88.352,26.26724],[88.34806,26.26884],[88.35027,26.2719],[88.3488,26.27387],[88.35186,26.27583],[88.35037,26.27547],[88.34918,26.27772],[88.3506,26.27934],[88.34967,26.28225],[88.35268,26.28207],[88.35377,26.28718],[88.35508,26.2855],[88.35899,26.28813],[88.36033,26.29139],[88.36395,26.29423],[88.36313,26.29811],[88.36532,26.3002],[88.36848,26.29957],[88.37022,26.30484],[88.37321,26.3056],[88.37316,26.30283],[88.37496,26.30441],[88.37357,26.30636],[88.37843,26.30538],[88.37952,26.30955],[88.38432,26.30925],[88.38264,26.31016],[88.3836,26.30942],[88.38328,26.31172],[88.38469,26.31104],[88.38466,26.31326],[88.38746,26.31283],[88.38925,26.31492],[88.39026,26.3128],[88.39119,26.31439],[88.39756,26.31542],[88.39838,26.31704],[88.40003,26.31616],[88.39988,26.31724],[88.41298,26.31618],[88.41494,26.31482],[88.41655,26.32165],[88.41565,26.32432],[88.40702,26.32365],[88.40795,26.32766],[88.40378,26.32809],[88.40435,26.32983],[88.40673,26.33023],[88.40897,26.33357],[88.41091,26.33337],[88.41286,26.33748],[88.42459,26.33514],[88.42466,26.3363],[88.43558,26.33577],[88.4364,26.34012],[88.43888,26.34064],[88.43688,26.34159],[88.43887,26.34424],[88.43809,26.34684],[88.44056,26.34841],[88.43921,26.35012],[88.44266,26.35284],[88.44239,26.35571],[88.44414,26.35703],[88.44609,26.3644],[88.45101,26.36608],[88.45171,26.37037],[88.45635,26.37188],[88.45772,26.37666],[88.45907,26.37698],[88.45918,26.37403],[88.45753,26.37137],[88.45995,26.37106],[88.46023,26.3689],[88.45739,26.36654],[88.45733,26.36445],[88.45946,26.36396],[88.45862,26.36211],[88.46244,26.36076],[88.4632,26.35727],[88.46835,26.35863],[88.47181,26.35646],[88.4774,26.35773],[88.47735,26.3539],[88.48023,26.35321],[88.48032,26.35065],[88.48236,26.3497],[88.48847,26.34883],[88.48837,26.35088],[88.49191,26.35141],[88.4884,26.36028],[88.4969,26.35896],[88.50371,26.36025],[88.50572,26.36357],[88.50775,26.36253],[88.50706,26.35644],[88.50548,26.35614],[88.50576,26.35069],[88.50366,26.35033],[88.505,26.34855],[88.50719,26.34875],[88.50756,26.35108],[88.51002,26.3504],[88.50998,26.35275],[88.51855,26.3516],[88.51778,26.35656],[88.52324,26.36054],[88.5213,26.36319],[88.51653,26.36245],[88.51537,26.36533],[88.52216,26.36702],[88.52209,26.37021],[88.52479,26.3748],[88.52322,26.37542],[88.51719,26.37057],[88.51283,26.37777],[88.51575,26.38553],[88.51921,26.39],[88.51678,26.3902],[88.5145,26.38735],[88.51291,26.38763],[88.50505,26.39871],[88.50581,26.40032],[88.51006,26.40162],[88.51057,26.40433],[88.50896,26.40721],[88.5067,26.4069],[88.5028,26.40304],[88.50023,26.40792],[88.49559,26.40954],[88.50275,26.41748],[88.49607,26.41702],[88.49401,26.41874],[88.49412,26.42232],[88.49838,26.42519],[88.49657,26.42765],[88.49082,26.42851],[88.48966,26.43001],[88.48978,26.43187],[88.49559,26.43321],[88.49622,26.43706],[88.49121,26.4402],[88.49083,26.44397],[88.48656,26.44544],[88.48653,26.45057],[88.48076,26.45057],[88.47893,26.4523],[88.47989,26.45493],[88.48429,26.45662],[88.48525,26.46026],[88.45886,26.46662],[88.43741,26.46591],[88.43263,26.469],[88.43362,26.47241],[88.43055,26.47035],[88.42773,26.47301],[88.42284,26.47268],[88.42299,26.46984],[88.42132,26.46801],[88.42254,26.46599],[88.41976,26.46575],[88.41869,26.46927],[88.41536,26.46922],[88.41457,26.47223],[88.4102,26.47494],[88.40865,26.4795],[88.40502,26.48062],[88.40501,26.48581],[88.40247,26.48589],[88.3999,26.48191],[88.39524,26.48159],[88.38855,26.4783],[88.38626,26.48285],[88.37566,26.48397],[88.37449,26.48845],[88.37124,26.48821],[88.36337,26.48689],[88.36053,26.48456],[88.36054,26.48062],[88.362,26.48044],[88.36272,26.47785],[88.36216,26.47357],[88.36607,26.47078],[88.3605,26.46485],[88.36098,26.46112],[88.35902,26.45681],[88.36151,26.45492],[88.35693,26.45228],[88.35459,26.44707],[88.35217,26.44808],[88.35338,26.45115],[88.3483,26.45994],[88.34857,26.46549],[88.34652,26.4659],[88.34705,26.46825],[88.34049,26.46894],[88.34086,26.47817],[88.33508,26.47799],[88.33378,26.47868],[88.33449,26.4815],[88.33187,26.48181],[88.33211,26.49309],[88.33543,26.49724],[88.32326,26.49624]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"312","area_level":"District","area_name":"Hooghly","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.46394,23.18635],[88.47201,23.20621],[88.47273,23.21183],[88.46802,23.22108],[88.46127,23.22445],[88.44811,23.22387],[88.42183,23.21278],[88.41502,23.21154],[88.40925,23.19752],[88.40262,23.18937],[88.40082,23.19048],[88.39701,23.18856],[88.3893,23.19412],[88.38159,23.1964],[88.38403,23.19543],[88.38397,23.19202],[88.38202,23.19169],[88.38194,23.18073],[88.37895,23.17865],[88.37515,23.17845],[88.37478,23.17648],[88.37168,23.17802],[88.36757,23.17753],[88.3695,23.17402],[88.36664,23.17148],[88.36796,23.16758],[88.37528,23.16319],[88.36878,23.1602],[88.36818,23.1566],[88.36152,23.15294],[88.36461,23.15077],[88.36288,23.14278],[88.36645,23.13986],[88.36373,23.13925],[88.3611,23.13625],[88.36224,23.13548],[88.3607,23.11805],[88.35416,23.11928],[88.34894,23.11591],[88.34483,23.11865],[88.34677,23.12243],[88.3429,23.13159],[88.33788,23.13181],[88.33012,23.12859],[88.32109,23.13318],[88.31711,23.12881],[88.31702,23.12622],[88.31525,23.12785],[88.30948,23.12862],[88.30291,23.12861],[88.29841,23.12659],[88.29668,23.13078],[88.2906,23.13115],[88.28722,23.12851],[88.28236,23.1309],[88.27146,23.12872],[88.2641,23.13097],[88.25379,23.13928],[88.25418,23.14799],[88.24952,23.15081],[88.24825,23.14943],[88.24856,23.15199],[88.24571,23.14905],[88.24606,23.14623],[88.24414,23.1463],[88.24337,23.15247],[88.23986,23.1572],[88.23348,23.15402],[88.2312,23.15525],[88.23109,23.15804],[88.23331,23.15604],[88.23412,23.15945],[88.22245,23.15734],[88.22111,23.15253],[88.21519,23.1593],[88.21009,23.15709],[88.20378,23.16059],[88.19463,23.15813],[88.18997,23.16125],[88.18676,23.16112],[88.17849,23.15519],[88.16922,23.15691],[88.16805,23.1556],[88.16843,23.15007],[88.16541,23.14696],[88.16462,23.14188],[88.16203,23.14285],[88.15901,23.13669],[88.15777,23.13741],[88.15372,23.13329],[88.15398,23.12476],[88.1636,23.12667],[88.15964,23.116],[88.15708,23.09652],[88.15348,23.09714],[88.1517,23.09479],[88.1523,23.08928],[88.14678,23.07744],[88.1431,23.07624],[88.14228,23.07448],[88.13351,23.07697],[88.13242,23.06999],[88.1218,23.06387],[88.11645,23.0529],[88.09986,23.05527],[88.10077,23.05291],[88.09849,23.05091],[88.09778,23.04735],[88.0956,23.04711],[88.09405,23.04915],[88.08978,23.04656],[88.08867,23.04334],[88.08067,23.04714],[88.07885,23.04552],[88.06876,23.04863],[88.06715,23.04545],[88.06465,23.04686],[88.06435,23.04953],[88.05972,23.04429],[88.05659,23.04531],[88.05378,23.04329],[88.05362,23.04648],[88.05159,23.04703],[88.0487,23.04024],[88.04869,23.03298],[88.04639,23.02995],[88.04866,23.02716],[88.04788,23.02268],[88.04486,23.01921],[88.03833,23.016],[88.03659,23.01293],[88.0393,23.00739],[88.04762,23.00169],[88.04988,22.98998],[88.04252,22.98944],[88.04253,22.98481],[88.03633,22.98788],[88.03721,22.98462],[88.03315,22.97931],[88.02836,22.98007],[88.02781,22.98492],[88.02555,22.98725],[88.02022,22.98773],[88.02119,22.97661],[88.0068,22.98164],[88.00472,22.96889],[88.00704,22.96699],[88.00844,22.96814],[88.01019,22.96378],[88.0049,22.96051],[87.99825,22.9599],[87.99614,22.95658],[87.98802,22.95874],[87.98691,22.96342],[87.98256,22.96367],[87.97953,22.96639],[87.97841,22.96305],[87.96911,22.96444],[87.96559,22.96236],[87.96345,22.95998],[87.96189,22.95173],[87.95772,22.95189],[87.95369,22.95426],[87.95285,22.95712],[87.9498,22.95693],[87.94649,22.95404],[87.94498,22.94473],[87.94138,22.94094],[87.93471,22.94172],[87.93471,22.94393],[87.93072,22.94594],[87.92378,22.9455],[87.9222,22.94352],[87.9136,22.94486],[87.91351,22.94246],[87.91087,22.94112],[87.90528,22.94118],[87.89601,22.93616],[87.89339,22.93651],[87.89269,22.93394],[87.89461,22.93355],[87.89415,22.93217],[87.89052,22.93301],[87.88897,22.93806],[87.89032,22.94653],[87.89454,22.94653],[87.89198,22.94953],[87.89448,22.95248],[87.89327,22.95647],[87.89106,22.95656],[87.88618,22.96119],[87.87527,22.95682],[87.87451,22.94921],[87.87593,22.94583],[87.87449,22.94059],[87.86535,22.94134],[87.8656,22.93916],[87.86357,22.9388],[87.86024,22.94208],[87.86041,22.93715],[87.85814,22.93826],[87.85686,22.94204],[87.85557,22.9403],[87.85318,22.9412],[87.84932,22.93937],[87.84363,22.93931],[87.84296,22.93473],[87.83863,22.93506],[87.83563,22.93611],[87.83557,22.94067],[87.83192,22.94138],[87.83188,22.94564],[87.81978,22.95625],[87.8184,22.95572],[87.81846,22.95299],[87.82158,22.95002],[87.81847,22.95009],[87.81692,22.95238],[87.8161,22.9449],[87.81311,22.94651],[87.80873,22.94536],[87.80697,22.95117],[87.80427,22.95095],[87.80298,22.9413],[87.80064,22.93773],[87.79145,22.94173],[87.7865,22.93492],[87.7819,22.93628],[87.777,22.93441],[87.77615,22.93617],[87.78082,22.93721],[87.78108,22.94209],[87.78231,22.94273],[87.77918,22.94776],[87.77506,22.94723],[87.77504,22.94866],[87.77919,22.94956],[87.7795,22.95358],[87.77841,22.95466],[87.77932,22.95607],[87.77747,22.95598],[87.77782,22.96057],[87.77449,22.96156],[87.77566,22.96662],[87.77054,22.96449],[87.76994,22.96272],[87.76645,22.9633],[87.76542,22.96113],[87.75953,22.96283],[87.75164,22.96077],[87.74809,22.96166],[87.74087,22.96869],[87.73879,22.98525],[87.72672,22.9969],[87.72378,23.00285],[87.70885,23.01329],[87.70547,23.01779],[87.70278,23.02705],[87.7,23.02739],[87.69242,23.02419],[87.68729,23.0252],[87.68644,23.01988],[87.69012,23.01815],[87.69386,23.01959],[87.69946,23.01792],[87.69898,23.01536],[87.69612,23.01367],[87.6973,22.99996],[87.69489,22.99427],[87.68775,22.99229],[87.68297,22.99313],[87.67969,22.99143],[87.67575,22.9931],[87.67316,22.99113],[87.6729,22.98886],[87.66827,22.98655],[87.6565,22.98699],[87.64792,22.98925],[87.64226,22.98737],[87.63814,22.98106],[87.64274,22.97859],[87.64214,22.97495],[87.63965,22.97478],[87.64214,22.97471],[87.64059,22.96681],[87.64874,22.96632],[87.6503,22.96257],[87.6492,22.95023],[87.65236,22.94975],[87.65093,22.94876],[87.64948,22.9388],[87.64389,22.93085],[87.64312,22.9213],[87.64019,22.91843],[87.63214,22.91942],[87.61991,22.91183],[87.6214,22.90826],[87.61967,22.90279],[87.62679,22.90324],[87.63136,22.89916],[87.62705,22.89904],[87.62606,22.89505],[87.61969,22.89412],[87.61481,22.88946],[87.61136,22.88875],[87.61048,22.8911],[87.60206,22.89037],[87.60062,22.89758],[87.59938,22.89802],[87.59547,22.89861],[87.59165,22.89528],[87.58636,22.89404],[87.58425,22.89594],[87.58473,22.90053],[87.58178,22.90339],[87.5824,22.90587],[87.57935,22.90773],[87.58024,22.90892],[87.57857,22.908],[87.57822,22.91008],[87.57596,22.90749],[87.57454,22.90862],[87.57603,22.91],[87.57512,22.91105],[87.57065,22.9095],[87.57226,22.91125],[87.57029,22.9122],[87.57219,22.91344],[87.57153,22.91475],[87.56706,22.91682],[87.56522,22.9161],[87.56534,22.91861],[87.55914,22.91881],[87.559,22.92013],[87.55239,22.91842],[87.54625,22.92155],[87.54169,22.92159],[87.54099,22.92375],[87.53753,22.92322],[87.53573,22.92782],[87.53138,22.93059],[87.52269,22.9308],[87.52103,22.92587],[87.5238,22.92516],[87.52223,22.92196],[87.52385,22.91881],[87.52234,22.91724],[87.51843,22.91587],[87.50423,22.91802],[87.50694,22.91516],[87.5049,22.91243],[87.50531,22.90523],[87.50597,22.9034],[87.51111,22.90303],[87.51064,22.89723],[87.52045,22.89669],[87.52448,22.89858],[87.52727,22.89748],[87.52756,22.89427],[87.52306,22.89344],[87.52277,22.88941],[87.52609,22.88879],[87.52563,22.8861],[87.53003,22.88502],[87.5327,22.8823],[87.53255,22.87869],[87.53135,22.87652],[87.52885,22.87633],[87.52824,22.87227],[87.52659,22.8712],[87.51992,22.87215],[87.51702,22.87031],[87.51606,22.86653],[87.52604,22.86436],[87.53395,22.8671],[87.5433,22.86544],[87.54225,22.86337],[87.54673,22.86624],[87.55568,22.86743],[87.55874,22.86356],[87.55913,22.85989],[87.56705,22.85645],[87.57009,22.85011],[87.57826,22.84817],[87.58022,22.84455],[87.58613,22.84545],[87.58875,22.84137],[87.59789,22.84289],[87.60177,22.84785],[87.61085,22.85081],[87.61582,22.84812],[87.61606,22.84624],[87.62173,22.84588],[87.62233,22.84322],[87.62058,22.84033],[87.62439,22.83675],[87.62479,22.83443],[87.62245,22.83293],[87.62453,22.83117],[87.62392,22.82819],[87.62606,22.82783],[87.62751,22.82147],[87.62942,22.82119],[87.6277,22.82016],[87.62825,22.8171],[87.63092,22.81447],[87.62837,22.81418],[87.62906,22.81277],[87.63135,22.81105],[87.6335,22.81184],[87.63543,22.80927],[87.63799,22.80946],[87.63757,22.80782],[87.64025,22.80728],[87.63953,22.80566],[87.64365,22.8049],[87.64264,22.80392],[87.64656,22.80297],[87.64791,22.80532],[87.65005,22.80399],[87.64993,22.80165],[87.6538,22.80131],[87.65937,22.80325],[87.66284,22.8067],[87.66501,22.80525],[87.66527,22.8069],[87.66652,22.80445],[87.66922,22.80626],[87.67001,22.80439],[87.67557,22.80647],[87.67574,22.80332],[87.67945,22.80018],[87.68107,22.80143],[87.68251,22.8004],[87.68314,22.80225],[87.68306,22.79781],[87.68534,22.79779],[87.68543,22.79635],[87.68387,22.79342],[87.68275,22.79471],[87.6833,22.79246],[87.68095,22.79167],[87.677,22.78266],[87.67853,22.77994],[87.68593,22.77601],[87.69098,22.77956],[87.69302,22.77917],[87.69391,22.78119],[87.70187,22.779],[87.70543,22.78638],[87.70972,22.78521],[87.71729,22.78669],[87.71817,22.78861],[87.72531,22.78856],[87.72671,22.78697],[87.72544,22.77516],[87.73346,22.77486],[87.73363,22.7772],[87.7396,22.77844],[87.73896,22.77258],[87.74055,22.77366],[87.74452,22.76881],[87.7446,22.75952],[87.74147,22.75724],[87.74074,22.75155],[87.74122,22.74736],[87.74468,22.74531],[87.74482,22.74238],[87.74086,22.73698],[87.74751,22.73665],[87.75156,22.73076],[87.75501,22.72904],[87.75672,22.72465],[87.76078,22.72385],[87.76563,22.70815],[87.76042,22.70186],[87.7598,22.69881],[87.76045,22.69726],[87.76446,22.69746],[87.76301,22.69558],[87.76463,22.68806],[87.77232,22.68397],[87.77349,22.67942],[87.77834,22.67305],[87.7782,22.67033],[87.78409,22.66486],[87.78454,22.66109],[87.78967,22.65873],[87.79123,22.65387],[87.79361,22.65208],[87.79827,22.65228],[87.79854,22.64689],[87.80335,22.63386],[87.8083,22.63262],[87.81124,22.63582],[87.81445,22.63403],[87.8126,22.62408],[87.81439,22.61498],[87.81857,22.61373],[87.82455,22.61609],[87.82587,22.60729],[87.84457,22.60259],[87.85223,22.59516],[87.85775,22.60012],[87.85964,22.60549],[87.86469,22.60755],[87.87793,22.6051],[87.87804,22.60315],[87.88375,22.60884],[87.89142,22.60879],[87.89552,22.61515],[87.90036,22.61612],[87.90071,22.62275],[87.89845,22.62476],[87.90207,22.62978],[87.91326,22.62744],[87.91733,22.62875],[87.9215,22.62773],[87.91889,22.63007],[87.92107,22.63439],[87.92953,22.63126],[87.93906,22.63072],[87.92817,22.65014],[87.92886,22.65521],[87.92718,22.66404],[87.92907,22.66961],[87.92402,22.68271],[87.92387,22.68704],[87.92137,22.6881],[87.92645,22.68896],[87.92954,22.69679],[87.93778,22.69602],[87.93893,22.6974],[87.94002,22.70881],[87.94444,22.71782],[87.94435,22.73156],[87.94797,22.73531],[87.94889,22.73933],[87.94861,22.74299],[87.94659,22.74384],[87.94732,22.76107],[87.95002,22.77115],[87.96214,22.77437],[87.96158,22.77286],[87.96557,22.77147],[87.96791,22.77447],[87.97321,22.7768],[87.9736,22.78097],[87.97835,22.77912],[87.97942,22.78198],[87.98099,22.78224],[87.98147,22.77971],[87.98367,22.77923],[87.98513,22.78142],[87.98963,22.77779],[87.992,22.76128],[87.99548,22.75512],[87.99562,22.74886],[87.99826,22.74436],[87.99578,22.73921],[87.98677,22.73167],[87.99641,22.71383],[87.99218,22.70658],[87.99247,22.7031],[87.99375,22.70114],[88.0,22.69858],[88.00106,22.69628],[88.00646,22.69508],[88.00642,22.69009],[88.01085,22.68555],[88.01523,22.68747],[88.0221,22.6869],[88.02407,22.68966],[88.02628,22.69008],[88.0302,22.68551],[88.04223,22.68493],[88.04773,22.67963],[88.04868,22.68287],[88.0471,22.68791],[88.05203,22.69251],[88.05257,22.6965],[88.055,22.69839],[88.0613,22.6976],[88.06107,22.70053],[88.05922,22.70208],[88.06358,22.70337],[88.06066,22.70615],[88.06019,22.71153],[88.06407,22.71292],[88.06653,22.70848],[88.06471,22.70698],[88.066,22.70609],[88.0653,22.7025],[88.07017,22.69737],[88.07206,22.6984],[88.07251,22.69722],[88.07171,22.69492],[88.0696,22.69433],[88.06892,22.69054],[88.06511,22.68968],[88.06546,22.68549],[88.06989,22.68714],[88.07498,22.68569],[88.07835,22.68905],[88.08079,22.68609],[88.08341,22.68715],[88.08531,22.69071],[88.09196,22.6895],[88.10179,22.69314],[88.10541,22.70104],[88.09924,22.70457],[88.10231,22.7055],[88.10418,22.70349],[88.11078,22.7055],[88.11063,22.70739],[88.1135,22.70703],[88.11034,22.70343],[88.11105,22.70046],[88.11264,22.70222],[88.11561,22.69856],[88.11948,22.69929],[88.12179,22.69627],[88.12021,22.6941],[88.12236,22.68583],[88.13169,22.68535],[88.13482,22.68116],[88.135,22.67784],[88.13547,22.68217],[88.13973,22.68073],[88.14018,22.68298],[88.14253,22.68354],[88.14456,22.6785],[88.14811,22.67496],[88.15065,22.68007],[88.14968,22.68679],[88.15542,22.68686],[88.15677,22.68916],[88.15775,22.68813],[88.15643,22.68554],[88.15917,22.68311],[88.16984,22.68207],[88.17201,22.68355],[88.17193,22.68932],[88.17293,22.68927],[88.1763,22.68221],[88.17351,22.68116],[88.17012,22.67606],[88.17161,22.66768],[88.1751,22.66354],[88.17406,22.66185],[88.17517,22.65385],[88.17994,22.65234],[88.18175,22.65728],[88.17673,22.65954],[88.17636,22.66121],[88.17707,22.66305],[88.17971,22.66363],[88.18217,22.67107],[88.18668,22.67089],[88.19614,22.66712],[88.19692,22.66321],[88.2008,22.66914],[88.21995,22.67116],[88.22448,22.66922],[88.22291,22.67236],[88.23354,22.67235],[88.23254,22.67596],[88.23695,22.67461],[88.23737,22.678],[88.23901,22.67836],[88.24307,22.6783],[88.24106,22.67186],[88.24477,22.67174],[88.24938,22.66887],[88.25133,22.67067],[88.26023,22.66978],[88.2611,22.66267],[88.26669,22.66055],[88.26845,22.66291],[88.27203,22.66253],[88.27715,22.65836],[88.28133,22.658],[88.28129,22.65938],[88.27934,22.65945],[88.2795,22.6639],[88.28191,22.66377],[88.28213,22.6652],[88.30772,22.66146],[88.31026,22.66635],[88.31595,22.6654],[88.31644,22.66893],[88.31916,22.67059],[88.32485,22.6644],[88.33563,22.66268],[88.33833,22.66008],[88.34227,22.66023],[88.34504,22.65574],[88.35178,22.65528],[88.35624,22.67107],[88.36346,22.68556],[88.3628,22.69932],[88.35885,22.71271],[88.35972,22.73496],[88.36219,22.74511],[88.35644,22.75386],[88.34346,22.76181],[88.33495,22.77048],[88.33199,22.78122],[88.33421,22.78488],[88.34693,22.79173],[88.35365,22.79855],[88.35452,22.80041],[88.35217,22.80155],[88.35521,22.81383],[88.35678,22.81401],[88.35591,22.82234],[88.35726,22.82502],[88.36149,22.82832],[88.37219,22.8291],[88.37627,22.83251],[88.37702,22.83627],[88.37483,22.83645],[88.37487,22.84121],[88.36936,22.85041],[88.37171,22.86075],[88.383,22.86981],[88.38494,22.86809],[88.3999,22.87361],[88.40751,22.88326],[88.4079,22.89617],[88.40132,22.91626],[88.40383,22.92305],[88.40873,22.92835],[88.4125,22.94328],[88.40822,22.95298],[88.40941,22.95814],[88.40396,22.97749],[88.40595,22.9894],[88.42249,23.01789],[88.43919,23.01954],[88.44762,23.02606],[88.45422,23.0388],[88.45868,23.0641],[88.46775,23.07976],[88.4705,23.0813],[88.47522,23.08108],[88.49192,23.07323],[88.49908,23.07693],[88.50732,23.1115],[88.50702,23.12048],[88.50214,23.12812],[88.49764,23.12939],[88.45827,23.12959],[88.45065,23.13324],[88.45084,23.15173],[88.46394,23.18635]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"313","area_level":"District","area_name":"Howrah","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.98306,22.77931],[87.98116,22.78001],[87.98109,22.78223],[87.97942,22.78198],[87.97835,22.77912],[87.9736,22.78097],[87.97321,22.7768],[87.96791,22.77447],[87.96557,22.77147],[87.96158,22.77286],[87.96214,22.77437],[87.95002,22.77115],[87.94732,22.76107],[87.94659,22.74384],[87.94861,22.74299],[87.94889,22.73933],[87.94797,22.73531],[87.94435,22.73156],[87.94444,22.71782],[87.94002,22.70881],[87.93893,22.6974],[87.93778,22.69602],[87.92954,22.69679],[87.92645,22.68896],[87.92137,22.6881],[87.92387,22.68704],[87.92402,22.68271],[87.92907,22.66961],[87.92718,22.66404],[87.92886,22.65521],[87.92817,22.65014],[87.93906,22.63072],[87.92953,22.63126],[87.92107,22.63439],[87.91889,22.63007],[87.9215,22.62773],[87.91733,22.62875],[87.91326,22.62744],[87.90237,22.62989],[87.89845,22.62476],[87.90071,22.62275],[87.90036,22.61612],[87.89552,22.61515],[87.89142,22.60879],[87.88375,22.60884],[87.87804,22.60315],[87.87793,22.6051],[87.86588,22.60749],[87.85964,22.60549],[87.85775,22.60012],[87.85223,22.59516],[87.85581,22.58646],[87.85103,22.58473],[87.84899,22.58214],[87.84655,22.57322],[87.84679,22.56393],[87.84335,22.55818],[87.84458,22.55506],[87.85057,22.55173],[87.8537,22.54506],[87.86153,22.53998],[87.8647,22.53192],[87.8718,22.53222],[87.88228,22.52778],[87.88733,22.52514],[87.89029,22.52073],[87.89115,22.51484],[87.88617,22.51149],[87.88453,22.50656],[87.88039,22.50342],[87.87965,22.49783],[87.88283,22.49082],[87.89315,22.4801],[87.89195,22.47549],[87.88511,22.46935],[87.87513,22.45449],[87.87487,22.44812],[87.87792,22.44146],[87.88173,22.43761],[87.88334,22.43845],[87.89262,22.43223],[87.92364,22.42277],[87.9333,22.41578],[87.93898,22.40507],[87.9436,22.38221],[87.95382,22.36572],[87.95578,22.35646],[87.95183,22.32423],[87.95273,22.31396],[87.94894,22.3051],[87.95593,22.26973],[87.97897,22.26035],[87.9947,22.25007],[87.99548,22.24495],[88.00694,22.23914],[88.0065,22.23342],[88.02218,22.21777],[88.05301,22.21147],[88.06057,22.20577],[88.08299,22.2364],[88.08312,22.25635],[88.08811,22.25333],[88.08873,22.25],[88.08785,22.25597],[88.08316,22.25686],[88.08353,22.26936],[88.08748,22.28548],[88.09589,22.30381],[88.09769,22.31244],[88.09601,22.32938],[88.09709,22.34808],[88.09427,22.35544],[88.09088,22.35839],[88.08981,22.36159],[88.10048,22.37842],[88.11986,22.39257],[88.13229,22.39865],[88.14199,22.41045],[88.14127,22.4219],[88.12779,22.43891],[88.11934,22.45497],[88.11815,22.46402],[88.12118,22.46918],[88.1298,22.47496],[88.14306,22.47807],[88.16012,22.47903],[88.16857,22.48183],[88.18371,22.49431],[88.19388,22.5064],[88.20363,22.5139],[88.21308,22.51781],[88.23252,22.51959],[88.23759,22.52174],[88.2409,22.52682],[88.24203,22.53234],[88.23485,22.54191],[88.23373,22.55145],[88.23526,22.55617],[88.24029,22.56078],[88.25188,22.56206],[88.27417,22.5559],[88.30603,22.55014],[88.31975,22.55099],[88.32318,22.55326],[88.32195,22.55572],[88.34295,22.57881],[88.34819,22.59499],[88.35686,22.60947],[88.35923,22.61246],[88.36547,22.60897],[88.36583,22.61845],[88.36396,22.62645],[88.35848,22.6363],[88.35768,22.64224],[88.35237,22.64985],[88.35257,22.65557],[88.34621,22.65523],[88.34227,22.66023],[88.33833,22.66008],[88.33563,22.66268],[88.32485,22.6644],[88.31916,22.67059],[88.31644,22.66893],[88.31595,22.6654],[88.31026,22.66635],[88.30772,22.66146],[88.28213,22.6652],[88.28191,22.66377],[88.2795,22.6639],[88.27934,22.65945],[88.28129,22.65938],[88.28133,22.658],[88.27715,22.65836],[88.27203,22.66253],[88.26845,22.66291],[88.26669,22.66055],[88.2611,22.66267],[88.26023,22.66978],[88.25133,22.67067],[88.24938,22.66887],[88.24477,22.67174],[88.24106,22.67186],[88.24307,22.6783],[88.23737,22.678],[88.23695,22.67461],[88.23254,22.67596],[88.23401,22.67276],[88.23275,22.67206],[88.22291,22.67236],[88.22448,22.66922],[88.21995,22.67116],[88.20907,22.66913],[88.20197,22.66955],[88.19948,22.66806],[88.19692,22.66321],[88.19614,22.66712],[88.18668,22.67089],[88.18217,22.67107],[88.17971,22.66363],[88.17707,22.66305],[88.17636,22.66121],[88.17673,22.65954],[88.18175,22.65728],[88.17994,22.65234],[88.17517,22.65385],[88.17406,22.66185],[88.1751,22.66354],[88.17161,22.66768],[88.17012,22.67606],[88.17351,22.68116],[88.1763,22.68221],[88.17293,22.68927],[88.17193,22.68932],[88.17201,22.68355],[88.16984,22.68207],[88.15917,22.68311],[88.15643,22.68554],[88.15775,22.68813],[88.15677,22.68916],[88.15542,22.68686],[88.14968,22.68679],[88.15065,22.68007],[88.14811,22.67496],[88.14456,22.6785],[88.14253,22.68354],[88.14018,22.68298],[88.13973,22.68073],[88.13547,22.68217],[88.135,22.67784],[88.13482,22.68116],[88.13169,22.68535],[88.12236,22.68583],[88.12021,22.6941],[88.12179,22.69627],[88.11948,22.69929],[88.11561,22.69856],[88.11264,22.70222],[88.11105,22.70046],[88.11034,22.70343],[88.1135,22.70703],[88.11063,22.70739],[88.11078,22.7055],[88.10418,22.70349],[88.10231,22.7055],[88.09924,22.70457],[88.10541,22.70104],[88.10179,22.69314],[88.09196,22.6895],[88.08531,22.69071],[88.08341,22.68715],[88.08079,22.68609],[88.07835,22.68905],[88.07498,22.68569],[88.06989,22.68714],[88.06546,22.68549],[88.06511,22.68968],[88.06892,22.69054],[88.0696,22.69433],[88.07171,22.69492],[88.07251,22.69722],[88.07206,22.6984],[88.07017,22.69737],[88.0653,22.7025],[88.066,22.70609],[88.06471,22.70698],[88.06653,22.70848],[88.06407,22.71292],[88.06019,22.71153],[88.06066,22.70615],[88.06358,22.70337],[88.05922,22.70208],[88.06107,22.70053],[88.0613,22.6976],[88.055,22.69839],[88.05257,22.6965],[88.05203,22.69251],[88.0471,22.68791],[88.04868,22.68287],[88.04773,22.67963],[88.04223,22.68493],[88.0302,22.68551],[88.02628,22.69008],[88.02137,22.6867],[88.01523,22.68747],[88.00998,22.68591],[88.00642,22.69009],[88.00646,22.69508],[88.00106,22.69628],[88.0,22.69858],[87.99375,22.70114],[87.99226,22.70379],[87.99218,22.70658],[87.99641,22.71383],[87.98677,22.73167],[87.99578,22.73921],[87.99826,22.74436],[87.99562,22.74886],[87.99548,22.75512],[87.992,22.76128],[87.98982,22.77736],[87.98513,22.78142],[87.98306,22.77931]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"314","area_level":"District","area_name":"Jalpaiguri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.94743,26.94077],[88.95361,26.94734],[88.95466,26.9579],[88.95218,26.96312],[88.95248,26.96841],[88.92168,26.99393],[88.91169,26.98671],[88.90865,26.97946],[88.89781,26.96895],[88.89688,26.96577],[88.88502,26.95631],[88.88352,26.94813],[88.87715,26.94435],[88.87489,26.94867],[88.87415,26.9576],[88.87174,26.95921],[88.87111,26.96252],[88.87253,26.96417],[88.85288,26.96561],[88.85205,26.96947],[88.84808,26.97439],[88.84434,26.9753],[88.84155,26.97884],[88.83863,26.97804],[88.83105,26.98454],[88.82408,26.98437],[88.8217,26.98871],[88.81905,26.98843],[88.81132,26.99189],[88.79287,26.99102],[88.7845,26.97637],[88.77533,26.97481],[88.76911,26.96836],[88.76145,26.96873],[88.75648,26.96367],[88.75935,26.92588],[88.66363,26.9275],[88.66451,26.93359],[88.67302,26.94797],[88.66256,26.96289],[88.66036,26.96877],[88.65544,26.96444],[88.65665,26.96141],[88.65002,26.95013],[88.64786,26.9423],[88.63901,26.93432],[88.63731,26.93016],[88.63896,26.9229],[88.63616,26.90667],[88.62112,26.90558],[88.61884,26.90353],[88.62023,26.90227],[88.61927,26.89961],[88.61533,26.89748],[88.61246,26.89194],[88.60796,26.89154],[88.60699,26.88625],[88.60805,26.8817],[88.59608,26.88491],[88.59239,26.88795],[88.58879,26.88757],[88.57325,26.89199],[88.56079,26.88232],[88.55568,26.8803],[88.54587,26.88064],[88.54263,26.87521],[88.50983,26.8655],[88.49608,26.87307],[88.47565,26.87983],[88.47533,26.87722],[88.47969,26.87516],[88.47981,26.86863],[88.49303,26.85491],[88.50238,26.84867],[88.50792,26.84767],[88.51247,26.83881],[88.50203,26.84044],[88.4997,26.84231],[88.49951,26.84637],[88.49688,26.8496],[88.49308,26.84982],[88.49003,26.85271],[88.48475,26.85407],[88.47462,26.84812],[88.44118,26.83716],[88.44127,26.83267],[88.43728,26.82818],[88.43581,26.82231],[88.43002,26.82022],[88.43582,26.81074],[88.43482,26.80991],[88.42878,26.81296],[88.4338,26.80857],[88.43489,26.80358],[88.4345,26.802],[88.4295,26.80125],[88.4298,26.79803],[88.43147,26.79519],[88.43759,26.79549],[88.43874,26.79175],[88.44235,26.78991],[88.43868,26.78774],[88.44214,26.78528],[88.43995,26.78378],[88.44025,26.78234],[88.43442,26.78368],[88.43383,26.78018],[88.43161,26.77842],[88.43499,26.7779],[88.43785,26.77526],[88.43631,26.77429],[88.43759,26.7713],[88.43559,26.77012],[88.43752,26.76912],[88.43523,26.76825],[88.43408,26.76569],[88.43571,26.75824],[88.4316,26.75839],[88.43259,26.75543],[88.43047,26.75325],[88.42608,26.75929],[88.42739,26.75502],[88.42609,26.7538],[88.42297,26.7545],[88.42442,26.75045],[88.42742,26.74789],[88.42281,26.74584],[88.42279,26.73742],[88.42533,26.73425],[88.42158,26.72708],[88.42503,26.72259],[88.42937,26.72675],[88.43534,26.72612],[88.43356,26.72395],[88.43636,26.71694],[88.4385,26.71526],[88.4426,26.71633],[88.4439,26.71184],[88.44924,26.70442],[88.44331,26.69505],[88.43798,26.69401],[88.43765,26.69274],[88.43142,26.69342],[88.42851,26.69656],[88.415,26.69665],[88.41434,26.7],[88.40978,26.6995],[88.40165,26.69308],[88.39802,26.68432],[88.39181,26.6816],[88.38983,26.67859],[88.39142,26.67644],[88.40042,26.67242],[88.40042,26.66475],[88.39858,26.65861],[88.40083,26.654],[88.3999,26.64244],[88.40646,26.64012],[88.40913,26.63493],[88.41519,26.63317],[88.41607,26.63162],[88.41445,26.62262],[88.41801,26.62156],[88.41681,26.61321],[88.41998,26.59865],[88.41924,26.59049],[88.42259,26.58277],[88.42117,26.57102],[88.43216,26.54855],[88.43716,26.54407],[88.44308,26.54395],[88.44336,26.53929],[88.44827,26.53529],[88.45648,26.53689],[88.45518,26.53898],[88.45843,26.54023],[88.45745,26.54175],[88.45889,26.54712],[88.46184,26.54687],[88.46256,26.54376],[88.47591,26.54447],[88.47808,26.54193],[88.48501,26.54069],[88.48235,26.53617],[88.48202,26.53134],[88.48297,26.53026],[88.48965,26.53196],[88.4895,26.52704],[88.48534,26.52609],[88.49005,26.52507],[88.48872,26.51791],[88.49061,26.51485],[88.48975,26.51036],[88.49936,26.51227],[88.50007,26.51565],[88.50721,26.51648],[88.51068,26.51074],[88.52139,26.51051],[88.52293,26.5054],[88.51867,26.50127],[88.51997,26.50058],[88.51953,26.49825],[88.52196,26.4978],[88.5245,26.49278],[88.52461,26.4893],[88.52285,26.48929],[88.52287,26.48671],[88.52795,26.48648],[88.52415,26.48564],[88.52768,26.48447],[88.52648,26.48138],[88.55676,26.4848],[88.55461,26.48112],[88.5553,26.47882],[88.55273,26.47724],[88.55262,26.47532],[88.5568,26.47525],[88.55628,26.47281],[88.55398,26.4729],[88.55429,26.47187],[88.56014,26.47304],[88.55764,26.47069],[88.55806,26.46689],[88.5624,26.46713],[88.55949,26.46184],[88.56293,26.45965],[88.55804,26.45905],[88.56093,26.45646],[88.56266,26.45781],[88.57879,26.45666],[88.58458,26.45401],[88.58435,26.45028],[88.58952,26.45135],[88.59184,26.45073],[88.59034,26.44964],[88.59295,26.44981],[88.59313,26.45221],[88.59512,26.45306],[88.59626,26.46942],[88.59475,26.47064],[88.62289,26.47108],[88.62439,26.45394],[88.62684,26.45085],[88.6283,26.44104],[88.62497,26.44041],[88.62504,26.43872],[88.62318,26.43832],[88.62377,26.43479],[88.62777,26.43347],[88.63045,26.43467],[88.63082,26.4314],[88.63515,26.43198],[88.63827,26.42948],[88.6498,26.42959],[88.6517,26.42534],[88.65106,26.42166],[88.64446,26.41875],[88.64657,26.4186],[88.64684,26.41695],[88.65037,26.41744],[88.65057,26.41552],[88.66045,26.41632],[88.66282,26.40986],[88.66772,26.40955],[88.66781,26.40719],[88.67861,26.40802],[88.67904,26.40437],[88.68051,26.40655],[88.68675,26.40603],[88.68566,26.40543],[88.68743,26.40099],[88.68163,26.40206],[88.67917,26.40046],[88.67954,26.40188],[88.6738,26.40089],[88.67353,26.402],[88.66997,26.39761],[88.67198,26.39745],[88.67233,26.3957],[88.67812,26.39558],[88.67815,26.39342],[88.68576,26.39391],[88.68625,26.39563],[88.68917,26.39568],[88.68565,26.39107],[88.68632,26.39019],[88.68778,26.39155],[88.68743,26.38683],[88.6924,26.38641],[88.6988,26.3901],[88.70227,26.38844],[88.70216,26.38575],[88.68493,26.38334],[88.68212,26.3822],[88.68266,26.38048],[88.68101,26.37941],[88.6813,26.3779],[88.68661,26.37881],[88.68534,26.37464],[88.68769,26.37155],[88.68892,26.36495],[88.69065,26.36331],[88.69496,26.36358],[88.69626,26.36195],[88.69147,26.36118],[88.69384,26.35641],[88.69858,26.35673],[88.69786,26.34954],[88.69667,26.34689],[88.6941,26.34673],[88.6951,26.34413],[88.69803,26.34368],[88.69859,26.34112],[88.70402,26.34187],[88.70421,26.33984],[88.70164,26.33878],[88.70323,26.33764],[88.70276,26.33439],[88.70469,26.33248],[88.71015,26.33468],[88.71048,26.3372],[88.71272,26.33842],[88.71177,26.34043],[88.71285,26.34365],[88.72323,26.34314],[88.72432,26.3411],[88.72615,26.34127],[88.72639,26.34411],[88.72935,26.34463],[88.72963,26.34801],[88.73592,26.34797],[88.7352,26.35001],[88.73297,26.35034],[88.73326,26.35383],[88.73759,26.35327],[88.73602,26.35198],[88.73636,26.34944],[88.74397,26.34872],[88.74587,26.34707],[88.74459,26.34342],[88.74429,26.34461],[88.74259,26.3441],[88.74434,26.34081],[88.74331,26.33732],[88.73701,26.33489],[88.73387,26.32866],[88.74112,26.32966],[88.74573,26.33243],[88.74874,26.33193],[88.74651,26.32239],[88.73065,26.32362],[88.73124,26.31835],[88.72632,26.31751],[88.72585,26.31538],[88.72078,26.31432],[88.71882,26.31211],[88.71912,26.31568],[88.71504,26.31797],[88.70635,26.31469],[88.69899,26.31442],[88.69727,26.31212],[88.69647,26.31431],[88.69327,26.31399],[88.69092,26.3184],[88.69262,26.32144],[88.68987,26.32324],[88.69228,26.3256],[88.69679,26.32575],[88.69573,26.32873],[88.691,26.32888],[88.68974,26.323],[88.67988,26.32227],[88.67827,26.32015],[88.67513,26.32007],[88.6753,26.31137],[88.67907,26.31466],[88.68081,26.31154],[88.68256,26.31251],[88.68309,26.30845],[88.67798,26.30695],[88.6802,26.30144],[88.67867,26.29883],[88.66804,26.29717],[88.66967,26.28955],[88.66618,26.28925],[88.66565,26.28486],[88.66964,26.28076],[88.66738,26.27808],[88.66692,26.27324],[88.66763,26.27195],[88.67211,26.27226],[88.67225,26.26849],[88.67187,26.26684],[88.6675,26.2665],[88.66623,26.26266],[88.67787,26.26454],[88.67981,26.25897],[88.68633,26.26305],[88.68462,26.26567],[88.68602,26.26757],[88.68745,26.26618],[88.69008,26.26665],[88.69011,26.26853],[88.69249,26.26905],[88.6919,26.27252],[88.68988,26.27383],[88.68745,26.27266],[88.68585,26.27447],[88.68607,26.27675],[88.68918,26.27905],[88.6916,26.27636],[88.69619,26.27728],[88.69584,26.27946],[88.69855,26.28041],[88.69802,26.28207],[88.69974,26.28417],[88.7016,26.28322],[88.70138,26.28454],[88.70656,26.28482],[88.70957,26.28662],[88.71403,26.28571],[88.71247,26.28265],[88.71711,26.28108],[88.72115,26.28328],[88.72719,26.29298],[88.73054,26.29127],[88.72963,26.29423],[88.73068,26.29467],[88.7379,26.29243],[88.74245,26.29522],[88.74084,26.2956],[88.7426,26.29925],[88.74667,26.29966],[88.74732,26.30105],[88.74902,26.30052],[88.74752,26.2955],[88.75858,26.29476],[88.76017,26.30313],[88.75664,26.31067],[88.7579,26.3131],[88.75656,26.32126],[88.76132,26.33286],[88.75978,26.3353],[88.75416,26.33779],[88.75474,26.343],[88.75081,26.34691],[88.748,26.35521],[88.74923,26.36086],[88.75618,26.36841],[88.75737,26.37609],[88.76969,26.39472],[88.77397,26.39545],[88.77513,26.39868],[88.78396,26.39791],[88.78607,26.39291],[88.7895,26.39253],[88.78925,26.38803],[88.7915,26.38435],[88.79877,26.3758],[88.80084,26.37537],[88.80741,26.37934],[88.80988,26.37754],[88.81986,26.37744],[88.83426,26.38029],[88.83948,26.38685],[88.84394,26.38452],[88.85049,26.38506],[88.85315,26.38642],[88.85252,26.39027],[88.85496,26.39404],[88.86532,26.3923],[88.86842,26.39437],[88.86985,26.39936],[88.87975,26.40447],[88.88316,26.41533],[88.88493,26.41646],[88.88366,26.42556],[88.88717,26.42639],[88.88825,26.42974],[88.88713,26.43172],[88.88986,26.43289],[88.88728,26.43819],[88.89882,26.43822],[88.90275,26.44053],[88.90844,26.45208],[88.91441,26.45259],[88.91331,26.45682],[88.91592,26.45893],[88.91395,26.45977],[88.9171,26.45991],[88.91698,26.46118],[88.91269,26.46172],[88.91253,26.46461],[88.91031,26.46511],[88.91018,26.46942],[88.90731,26.46962],[88.90567,26.46636],[88.90328,26.46565],[88.8993,26.46789],[88.89929,26.47064],[88.90207,26.47267],[88.90571,26.4714],[88.90567,26.47277],[88.90358,26.47328],[88.90404,26.47566],[88.90787,26.47701],[88.91421,26.47124],[88.92631,26.47068],[88.92589,26.46794],[88.92756,26.46567],[88.93699,26.46551],[88.94038,26.47245],[88.94643,26.47535],[88.93966,26.48534],[88.94341,26.49733],[88.94023,26.50047],[88.94001,26.50426],[88.94189,26.50585],[88.95269,26.50586],[88.95482,26.50765],[88.95486,26.51067],[88.95671,26.51162],[88.95699,26.51514],[88.96217,26.52494],[88.96718,26.52481],[88.97056,26.53129],[88.96757,26.53871],[88.96922,26.54649],[88.98562,26.53544],[89.00144,26.53235],[89.00212,26.53092],[89.01011,26.52904],[89.01231,26.52645],[89.02174,26.52273],[89.0274,26.51825],[89.03509,26.51688],[89.05046,26.52734],[89.05196,26.53044],[89.04843,26.53422],[89.05935,26.53365],[89.06141,26.53417],[89.0624,26.53756],[89.07372,26.53709],[89.07398,26.5357],[89.07584,26.53656],[89.07597,26.53506],[89.07972,26.53492],[89.0793,26.5316],[89.08524,26.53081],[89.08481,26.52588],[89.08627,26.52654],[89.08718,26.52483],[89.092,26.52657],[89.09171,26.52419],[89.09393,26.52218],[89.0954,26.52273],[89.09474,26.52069],[89.09768,26.52239],[89.10219,26.52164],[89.10267,26.52292],[89.10296,26.52102],[89.10873,26.5201],[89.11426,26.52282],[89.12628,26.52127],[89.12138,26.52411],[89.1239,26.52892],[89.11879,26.53342],[89.1182,26.54037],[89.11688,26.54004],[89.11684,26.53585],[89.11532,26.53443],[89.1092,26.53719],[89.10953,26.54112],[89.11442,26.54206],[89.11244,26.5452],[89.11312,26.54777],[89.10833,26.55268],[89.10525,26.55355],[89.10415,26.55638],[89.10561,26.55808],[89.11069,26.5587],[89.11111,26.56056],[89.1072,26.56434],[89.10418,26.5618],[89.10179,26.56183],[89.09884,26.56622],[89.09946,26.56835],[89.10396,26.56844],[89.10156,26.57544],[89.10529,26.57655],[89.10489,26.58222],[89.10943,26.59109],[89.10729,26.5917],[89.10308,26.58523],[89.10269,26.58838],[89.10528,26.59025],[89.10513,26.59205],[89.10259,26.59325],[89.1001,26.5915],[89.09404,26.59195],[89.09164,26.59663],[89.08799,26.59168],[89.08662,26.59236],[89.08708,26.59579],[89.08546,26.59655],[89.0829,26.59235],[89.08076,26.59245],[89.08031,26.59647],[89.07866,26.59746],[89.07474,26.59321],[89.07257,26.59303],[89.07461,26.59589],[89.07208,26.5981],[89.06709,26.59721],[89.06437,26.60393],[89.06162,26.60472],[89.06041,26.61167],[89.05549,26.60948],[89.04999,26.6095],[89.05358,26.6119],[89.05261,26.61617],[89.04969,26.61937],[89.05361,26.62132],[89.05215,26.62436],[89.04759,26.62363],[89.05015,26.62576],[89.04499,26.63646],[89.04716,26.63991],[89.04634,26.64259],[89.04861,26.64449],[89.04793,26.64806],[89.04964,26.64844],[89.0545,26.65912],[89.05851,26.66186],[89.06418,26.67143],[89.06172,26.67485],[89.06188,26.68157],[89.06541,26.68529],[89.06393,26.68919],[89.06699,26.69128],[89.06516,26.69252],[89.06901,26.6991],[89.07049,26.7172],[89.07462,26.72322],[89.07575,26.73043],[89.07705,26.72877],[89.07942,26.72926],[89.07995,26.72754],[89.08214,26.72911],[89.08,26.73246],[89.07841,26.732],[89.07671,26.74134],[89.07531,26.74134],[89.08164,26.74817],[89.07927,26.75005],[89.07442,26.76037],[89.07849,26.76688],[89.0809,26.77581],[89.09057,26.78601],[89.09219,26.79019],[89.09175,26.79934],[89.09864,26.80977],[89.09817,26.81362],[89.09994,26.81778],[89.09268,26.8194],[89.09206,26.8307],[89.0979,26.83344],[89.10625,26.86035],[89.09251,26.8726],[89.0957,26.89167],[89.07963,26.89701],[89.06945,26.90369],[89.04886,26.89911],[89.0509,26.91597],[89.04076,26.92295],[89.02999,26.92312],[89.02157,26.94069],[88.99181,26.92187],[88.98035,26.91719],[88.94392,26.93415],[88.94914,26.93788],[88.94743,26.94077]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"315","area_level":"District","area_name":"Kolkata","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.39232,22.61816],[88.36583,22.61845],[88.36547,22.60897],[88.35923,22.61246],[88.34819,22.59499],[88.34295,22.57881],[88.32195,22.55572],[88.32318,22.55326],[88.31975,22.55099],[88.30603,22.55014],[88.27417,22.5559],[88.24882,22.5624],[88.24029,22.56078],[88.23526,22.55617],[88.23363,22.54916],[88.24003,22.54925],[88.25,22.54516],[88.25444,22.54692],[88.25513,22.54308],[88.25856,22.5398],[88.25568,22.53628],[88.25744,22.53655],[88.26029,22.5328],[88.26109,22.53464],[88.26425,22.53462],[88.26598,22.5376],[88.27078,22.53793],[88.27757,22.54298],[88.29161,22.53853],[88.29116,22.52987],[88.2892,22.5274],[88.29084,22.52503],[88.29004,22.52069],[88.29165,22.51709],[88.30063,22.51623],[88.30237,22.51106],[88.30532,22.50802],[88.30717,22.49999],[88.31109,22.49801],[88.31146,22.49261],[88.31056,22.49089],[88.30356,22.49027],[88.29848,22.48423],[88.29423,22.48207],[88.27541,22.48788],[88.27166,22.49152],[88.26862,22.4904],[88.26831,22.48709],[88.27727,22.48432],[88.27978,22.47921],[88.28957,22.4706],[88.29041,22.46585],[88.28799,22.45597],[88.30267,22.45542],[88.30471,22.45904],[88.30733,22.45937],[88.31098,22.45647],[88.31893,22.45752],[88.32108,22.46563],[88.32896,22.46804],[88.33378,22.46711],[88.33168,22.46441],[88.33244,22.46227],[88.34101,22.46322],[88.34441,22.46162],[88.3443,22.45857],[88.34587,22.45673],[88.35056,22.45692],[88.35427,22.46109],[88.35975,22.46289],[88.35962,22.46084],[88.36218,22.45875],[88.36197,22.45529],[88.3653,22.45415],[88.36936,22.45697],[88.36891,22.45288],[88.37203,22.45203],[88.37486,22.45697],[88.37659,22.4555],[88.37994,22.45607],[88.38054,22.4585],[88.38271,22.45943],[88.37779,22.46551],[88.3842,22.46517],[88.39347,22.46756],[88.39691,22.47176],[88.39591,22.47357],[88.39814,22.47191],[88.40016,22.47388],[88.40477,22.47441],[88.40688,22.47872],[88.41448,22.47779],[88.41508,22.48207],[88.41705,22.48451],[88.41602,22.48862],[88.4121,22.49123],[88.40715,22.48991],[88.40631,22.49087],[88.40797,22.49337],[88.41323,22.49483],[88.4132,22.49765],[88.41082,22.49823],[88.41028,22.50175],[88.41581,22.50554],[88.41634,22.5142],[88.42011,22.51741],[88.42055,22.52384],[88.42714,22.51857],[88.43508,22.51715],[88.43974,22.50949],[88.44425,22.51175],[88.44843,22.50853],[88.45466,22.50958],[88.45589,22.51507],[88.45848,22.51736],[88.45571,22.51885],[88.45957,22.51914],[88.46108,22.52256],[88.43975,22.52807],[88.43409,22.5363],[88.41377,22.55346],[88.41035,22.55913],[88.40046,22.58346],[88.39226,22.59521],[88.39335,22.60873],[88.39232,22.61816]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"316","area_level":"District","area_name":"Malda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.96364,25.5393],[87.95671,25.53739],[87.95419,25.53977],[87.95111,25.53836],[87.94708,25.53908],[87.94635,25.53547],[87.92772,25.5372],[87.92555,25.53377],[87.91696,25.53295],[87.91837,25.52659],[87.91273,25.52577],[87.90834,25.51866],[87.91093,25.51575],[87.90682,25.51174],[87.90891,25.50882],[87.90439,25.50939],[87.90276,25.50532],[87.89786,25.50491],[87.8982,25.5117],[87.89285,25.51267],[87.89018,25.51827],[87.88714,25.51819],[87.88437,25.52057],[87.88333,25.51694],[87.88677,25.51036],[87.88637,25.50808],[87.87989,25.5042],[87.87482,25.50469],[87.86781,25.49385],[87.86489,25.47995],[87.86886,25.47301],[87.86931,25.469],[87.86288,25.46397],[87.86346,25.46911],[87.86152,25.46914],[87.86053,25.47108],[87.8558,25.47098],[87.85428,25.46672],[87.83935,25.46784],[87.83964,25.46137],[87.83022,25.46105],[87.83096,25.45221],[87.8289,25.44683],[87.82747,25.44764],[87.82572,25.44545],[87.82637,25.43962],[87.82268,25.43708],[87.81167,25.43555],[87.80231,25.44473],[87.79694,25.44501],[87.79678,25.4475],[87.78726,25.4504],[87.78133,25.43254],[87.77977,25.43147],[87.7747,25.43231],[87.774,25.42962],[87.77079,25.42826],[87.76993,25.42621],[87.77432,25.42353],[87.77407,25.41827],[87.77633,25.41269],[87.77408,25.40871],[87.77045,25.40957],[87.76673,25.41413],[87.76451,25.41378],[87.76388,25.4075],[87.77253,25.40422],[87.76787,25.39826],[87.76829,25.39274],[87.76588,25.38527],[87.76966,25.37898],[87.77929,25.37308],[87.79231,25.37355],[87.79355,25.36695],[87.78824,25.33834],[87.79654,25.3256],[87.80506,25.32456],[87.81627,25.31992],[87.82636,25.31352],[87.83093,25.3073],[87.83817,25.30158],[87.85543,25.29689],[87.86019,25.28578],[87.86241,25.27411],[87.86069,25.26963],[87.85701,25.26965],[87.85343,25.2636],[87.85553,25.25991],[87.85527,25.25527],[87.84154,25.25074],[87.83662,25.24581],[87.83648,25.24192],[87.83476,25.23996],[87.8273,25.23529],[87.82434,25.23653],[87.8378,25.21217],[87.84006,25.2015],[87.82145,25.21054],[87.81722,25.21107],[87.8052,25.21843],[87.79068,25.22165],[87.78791,25.19185],[87.7744,25.14405],[87.77351,25.12548],[87.77436,25.12136],[87.77903,25.1177],[87.78967,25.10442],[87.7929,25.09535],[87.80237,25.08289],[87.80579,25.07265],[87.834,25.06526],[87.85728,25.05463],[87.89936,25.00678],[87.90593,25.00389],[87.92273,25.00058],[87.94054,24.99085],[87.94482,24.98414],[87.95326,24.97708],[87.95775,24.97089],[87.95895,24.9508],[87.9628,24.93706],[87.95962,24.92901],[87.96083,24.92208],[87.95293,24.90776],[87.94976,24.90494],[87.9167,24.88454],[87.91005,24.87473],[87.89727,24.86165],[87.89667,24.85777],[87.91068,24.83354],[87.92828,24.81017],[87.94903,24.79597],[87.95216,24.79016],[87.96067,24.78147],[87.96699,24.7698],[87.96662,24.76108],[87.96859,24.75058],[87.96649,24.74515],[87.96844,24.73144],[87.96391,24.70655],[87.96053,24.70375],[87.95692,24.69657],[87.96414,24.68227],[87.97653,24.66675],[87.99022,24.65796],[88.00152,24.65525],[88.00479,24.65792],[88.00808,24.66737],[88.01369,24.67461],[88.0418,24.70479],[88.05197,24.71235],[88.05373,24.71087],[88.05597,24.71554],[88.06285,24.7216],[88.0725,24.74364],[88.06576,24.75071],[88.07455,24.76075],[88.06886,24.76375],[88.07111,24.76778],[88.06831,24.76915],[88.07245,24.77296],[88.07787,24.7691],[88.08902,24.7829],[88.09599,24.78022],[88.1061,24.77957],[88.1052,24.80034],[88.1111,24.81285],[88.12354,24.82311],[88.13078,24.80494],[88.13628,24.80528],[88.13384,24.81807],[88.1341,24.82987],[88.13191,24.83601],[88.13378,24.8362],[88.13466,24.83403],[88.14091,24.83438],[88.13963,24.83685],[88.14193,24.84047],[88.14129,24.84182],[88.14712,24.84363],[88.14488,24.84354],[88.14495,24.8511],[88.14686,24.85193],[88.14692,24.85014],[88.1504,24.84995],[88.1504,24.85335],[88.15094,24.84926],[88.15932,24.85016],[88.16044,24.84849],[88.16414,24.85026],[88.16225,24.85797],[88.16951,24.86083],[88.17502,24.86015],[88.17546,24.8618],[88.16589,24.86342],[88.15915,24.87206],[88.16374,24.87796],[88.16108,24.8804],[88.15543,24.8816],[88.15537,24.88364],[88.15268,24.88441],[88.15757,24.89226],[88.16073,24.889],[88.16565,24.88991],[88.16869,24.8882],[88.16751,24.88935],[88.16934,24.89245],[88.16528,24.89536],[88.16194,24.89307],[88.16203,24.89727],[88.15391,24.89959],[88.15546,24.90176],[88.15367,24.90634],[88.14897,24.91122],[88.14382,24.91422],[88.14037,24.91404],[88.13804,24.93616],[88.1455,24.93673],[88.14624,24.93418],[88.1498,24.93246],[88.15752,24.93352],[88.15969,24.938],[88.15839,24.94137],[88.16462,24.94138],[88.165,24.94621],[88.16884,24.9476],[88.17021,24.95036],[88.175,24.94873],[88.17366,24.9471],[88.17549,24.94624],[88.18358,24.95389],[88.18825,24.95157],[88.20173,24.9572],[88.22611,24.95971],[88.23029,24.95698],[88.23706,24.9458],[88.25256,24.93258],[88.26052,24.91918],[88.26422,24.90713],[88.26453,24.8993],[88.25827,24.87755],[88.26382,24.87679],[88.26721,24.87832],[88.26741,24.88731],[88.26898,24.89125],[88.27293,24.89637],[88.27608,24.8978],[88.27767,24.89692],[88.27573,24.8919],[88.2776,24.89168],[88.27813,24.88805],[88.28161,24.89079],[88.28319,24.88911],[88.28624,24.88917],[88.28569,24.88641],[88.29148,24.8894],[88.29685,24.88824],[88.29819,24.8851],[88.30201,24.88584],[88.30074,24.88219],[88.29798,24.88143],[88.30198,24.87473],[88.30192,24.87189],[88.30527,24.87248],[88.30749,24.87751],[88.31275,24.87989],[88.31225,24.88158],[88.31671,24.88065],[88.31737,24.88327],[88.32106,24.88347],[88.3221,24.87888],[88.32092,24.87603],[88.32648,24.87048],[88.33062,24.87014],[88.33311,24.87095],[88.33262,24.87243],[88.33526,24.87426],[88.33431,24.87767],[88.33899,24.87846],[88.34288,24.88437],[88.34264,24.88841],[88.34497,24.88907],[88.3446,24.89142],[88.34701,24.89243],[88.34388,24.89957],[88.33736,24.89967],[88.33278,24.89715],[88.33457,24.90056],[88.33405,24.90483],[88.32775,24.90432],[88.32428,24.91682],[88.32572,24.91889],[88.32976,24.91717],[88.33042,24.92005],[88.33659,24.91868],[88.33498,24.92082],[88.33453,24.92662],[88.33849,24.92679],[88.33718,24.93109],[88.34129,24.93524],[88.33991,24.9382],[88.3409,24.94063],[88.35011,24.94486],[88.35467,24.94203],[88.35799,24.9477],[88.36059,24.94902],[88.35898,24.95171],[88.36404,24.95329],[88.36626,24.95273],[88.36386,24.94874],[88.36659,24.94799],[88.36503,24.94701],[88.36668,24.94491],[88.3697,24.94555],[88.37123,24.94245],[88.37745,24.94299],[88.38161,24.93913],[88.38736,24.93952],[88.38725,24.94229],[88.3889,24.94367],[88.38954,24.94181],[88.39161,24.94296],[88.39417,24.94149],[88.39884,24.94532],[88.40186,24.9508],[88.40052,24.95489],[88.39739,24.95802],[88.39923,24.95909],[88.3934,24.96027],[88.3929,24.96485],[88.39631,24.96526],[88.39468,24.96617],[88.39525,24.96908],[88.39872,24.97304],[88.40381,24.97374],[88.40292,24.97106],[88.40571,24.97235],[88.40364,24.97464],[88.4051,24.97972],[88.4094,24.97744],[88.41095,24.97339],[88.41588,24.97315],[88.41743,24.97483],[88.41628,24.9802],[88.41232,24.9823],[88.41872,24.98318],[88.41661,24.98515],[88.41172,24.98548],[88.41461,24.99517],[88.41359,24.99688],[88.41197,24.99602],[88.41209,24.99881],[88.41796,24.99829],[88.42049,24.99969],[88.4193,25.0018],[88.42209,25.00692],[88.42549,25.0067],[88.42703,25.01229],[88.42557,25.01643],[88.42747,25.00765],[88.43052,25.00809],[88.43406,25.00545],[88.43654,25.00645],[88.43429,25.00692],[88.43688,25.01038],[88.43517,25.01327],[88.43774,25.01431],[88.43742,25.0115],[88.43943,25.01333],[88.44002,25.0115],[88.44221,25.01309],[88.43734,25.01579],[88.44117,25.01788],[88.43889,25.01801],[88.43832,25.02024],[88.44061,25.01879],[88.44151,25.02036],[88.43856,25.02231],[88.44499,25.02617],[88.44432,25.03003],[88.44566,25.03321],[88.45039,25.0338],[88.45266,25.03687],[88.44712,25.04171],[88.43784,25.04308],[88.43552,25.04868],[88.43497,25.05596],[88.43816,25.05729],[88.44234,25.06256],[88.44241,25.06606],[88.45108,25.07517],[88.45287,25.0793],[88.44814,25.08021],[88.44636,25.08296],[88.44724,25.08995],[88.4441,25.09971],[88.44781,25.10963],[88.44552,25.11334],[88.44207,25.11498],[88.4437,25.11836],[88.44229,25.11928],[88.44142,25.12751],[88.44746,25.12807],[88.44831,25.13087],[88.45083,25.13076],[88.45866,25.13557],[88.45692,25.13926],[88.45859,25.14026],[88.46,25.13878],[88.46089,25.14451],[88.45751,25.14785],[88.4614,25.14939],[88.46012,25.15203],[88.45704,25.15308],[88.45977,25.16075],[88.45639,25.1611],[88.45723,25.16462],[88.45277,25.16375],[88.4491,25.17157],[88.44205,25.17434],[88.44544,25.18015],[88.44185,25.18462],[88.44317,25.19546],[88.44156,25.19988],[88.43796,25.19727],[88.43734,25.20207],[88.43778,25.20727],[88.44501,25.21308],[88.44398,25.21776],[88.44245,25.21882],[88.44014,25.21615],[88.4391,25.21898],[88.44328,25.22178],[88.44916,25.22052],[88.45035,25.22289],[88.44839,25.22504],[88.45267,25.22741],[88.45207,25.22845],[88.45028,25.22709],[88.44882,25.22986],[88.45341,25.23229],[88.45145,25.23585],[88.4553,25.23836],[88.45912,25.24563],[88.46059,25.25283],[88.4586,25.25528],[88.46275,25.26457],[88.46123,25.26851],[88.46397,25.27002],[88.46242,25.27105],[88.45684,25.2666],[88.45512,25.26706],[88.45353,25.26347],[88.45723,25.26251],[88.4561,25.26104],[88.44698,25.265],[88.44646,25.26935],[88.43893,25.27952],[88.44649,25.29067],[88.44564,25.29373],[88.44792,25.29692],[88.44893,25.30671],[88.44343,25.31316],[88.43697,25.31462],[88.43141,25.31532],[88.42997,25.31384],[88.42516,25.31592],[88.41844,25.31389],[88.41801,25.31156],[88.42929,25.30939],[88.42939,25.30341],[88.42608,25.30163],[88.41216,25.29997],[88.41272,25.29683],[88.39943,25.29341],[88.39493,25.30225],[88.39305,25.30298],[88.39023,25.29789],[88.38472,25.29597],[88.38295,25.29121],[88.37776,25.28874],[88.36189,25.29109],[88.36118,25.29443],[88.35596,25.30013],[88.35428,25.29732],[88.35226,25.29708],[88.34164,25.30251],[88.32966,25.30496],[88.33205,25.29721],[88.33078,25.29626],[88.32285,25.29681],[88.32235,25.29882],[88.31789,25.30071],[88.30978,25.29906],[88.3061,25.30034],[88.2998,25.29849],[88.3001,25.30695],[88.29475,25.30626],[88.29438,25.30856],[88.29101,25.30899],[88.29096,25.31216],[88.28751,25.31225],[88.288,25.31564],[88.27476,25.31589],[88.27435,25.31739],[88.26993,25.30531],[88.27032,25.3016],[88.2632,25.29713],[88.25411,25.29625],[88.25313,25.2937],[88.24796,25.29497],[88.24156,25.29395],[88.23518,25.29505],[88.23733,25.29878],[88.2361,25.30357],[88.23852,25.30344],[88.23814,25.30453],[88.21514,25.31337],[88.20533,25.30348],[88.19608,25.29065],[88.19298,25.28991],[88.19115,25.27999],[88.18688,25.28074],[88.18615,25.28596],[88.18166,25.28967],[88.17939,25.29438],[88.17281,25.29873],[88.16264,25.30133],[88.16203,25.30402],[88.15616,25.29824],[88.14946,25.2986],[88.14907,25.29634],[88.14483,25.29679],[88.14385,25.29337],[88.14499,25.2906],[88.13954,25.27688],[88.14968,25.27378],[88.14914,25.26944],[88.14345,25.26457],[88.14167,25.25691],[88.13315,25.25512],[88.12654,25.24889],[88.12758,25.24633],[88.12584,25.24487],[88.12467,25.24912],[88.12658,25.25384],[88.12255,25.25736],[88.12473,25.26032],[88.12514,25.26571],[88.12066,25.26802],[88.12134,25.27152],[88.09962,25.27506],[88.10089,25.27703],[88.10397,25.27669],[88.10906,25.28562],[88.10183,25.28834],[88.107,25.29337],[88.10895,25.29474],[88.12525,25.29278],[88.12634,25.29747],[88.1239,25.29896],[88.12358,25.30812],[88.11795,25.30971],[88.11808,25.31226],[88.11416,25.31288],[88.11137,25.31612],[88.11175,25.31887],[88.10856,25.3199],[88.10814,25.32605],[88.11286,25.33167],[88.11539,25.33839],[88.11998,25.34162],[88.11492,25.34837],[88.11599,25.35037],[88.12192,25.35289],[88.1219,25.36646],[88.11736,25.36495],[88.118,25.37103],[88.10271,25.38052],[88.09896,25.38141],[88.0987,25.38889],[88.1068,25.39039],[88.10888,25.39505],[88.10578,25.40104],[88.11447,25.40793],[88.1092,25.40779],[88.10631,25.40321],[88.10218,25.40463],[88.10068,25.41026],[88.10704,25.41349],[88.10997,25.41705],[88.10395,25.4188],[88.09756,25.41752],[88.0939,25.42088],[88.09596,25.42756],[88.10073,25.42904],[88.105,25.43296],[88.11191,25.43321],[88.11282,25.43605],[88.10665,25.43537],[88.10064,25.43189],[88.09721,25.43551],[88.09709,25.44276],[88.08444,25.44891],[88.07963,25.45509],[88.07907,25.4697],[88.0746,25.47668],[88.07341,25.48411],[88.06792,25.48675],[88.0654,25.49013],[88.05627,25.49119],[88.05126,25.49006],[88.04983,25.48596],[88.04514,25.4891],[88.03769,25.48978],[88.03594,25.49212],[88.03056,25.49142],[88.02244,25.49828],[88.02466,25.50165],[88.01806,25.50186],[88.01412,25.49938],[88.01038,25.5016],[88.00952,25.50488],[88.01352,25.51121],[88.00672,25.51014],[88.00698,25.49705],[87.99578,25.49954],[87.99321,25.50372],[87.99288,25.50723],[87.99511,25.50797],[87.99415,25.51199],[87.98902,25.51181],[87.98502,25.51533],[87.9938,25.52241],[87.99135,25.52287],[87.9909,25.52538],[87.986,25.52664],[87.98078,25.52454],[87.97655,25.5247],[87.9667,25.53664],[87.96408,25.5369],[87.96364,25.5393]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"317","area_level":"District","area_name":"Purba Medinipur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[87.98908,22.2382],[87.99612,22.23828],[88.00014,22.24296],[87.99707,22.24455],[87.99536,22.24511],[87.99575,22.24715],[87.9957,22.24846],[87.9947,22.25007],[87.98913,22.25401],[87.97897,22.26035],[87.97123,22.26386],[87.96836,22.26473],[87.96811,22.25996],[87.96949,22.25822],[87.96985,22.25617],[87.97671,22.24918],[87.9795,22.24458],[87.9814,22.24237],[87.98397,22.24073],[87.98494,22.23932],[87.98649,22.23826],[87.98908,22.2382]]],[[[87.88562,22.50966],[87.89115,22.51484],[87.89064,22.51939],[87.88605,22.51622],[87.88455,22.50924],[87.87235,22.5109],[87.85663,22.50983],[87.84656,22.51192],[87.84656,22.50974],[87.83928,22.50553],[87.83297,22.50434],[87.82932,22.50022],[87.82511,22.49857],[87.81635,22.49915],[87.81609,22.49593],[87.80547,22.49068],[87.79902,22.48266],[87.79329,22.47889],[87.78812,22.47813],[87.78456,22.48514],[87.77658,22.47861],[87.7703,22.47774],[87.76228,22.47482],[87.76165,22.47322],[87.75714,22.47303],[87.74576,22.4747],[87.74639,22.47854],[87.74098,22.48161],[87.74146,22.48528],[87.73898,22.48729],[87.70954,22.48963],[87.69858,22.50429],[87.69136,22.50738],[87.68899,22.48989],[87.68327,22.4888],[87.67381,22.48365],[87.67278,22.47984],[87.67423,22.46801],[87.67116,22.46101],[87.66754,22.46018],[87.65928,22.4619],[87.65651,22.45301],[87.65288,22.45064],[87.65304,22.44675],[87.64979,22.43879],[87.64605,22.43508],[87.64625,22.43104],[87.65203,22.42653],[87.65276,22.42086],[87.65537,22.42062],[87.65604,22.41092],[87.65822,22.40764],[87.65784,22.4006],[87.65424,22.3969],[87.6479,22.3674],[87.64431,22.36354],[87.64612,22.36251],[87.64547,22.34855],[87.64388,22.34442],[87.64627,22.3369],[87.64408,22.33318],[87.64602,22.33165],[87.64979,22.3323],[87.64979,22.33085],[87.6471,22.3298],[87.64746,22.32512],[87.65124,22.32563],[87.65658,22.33196],[87.66535,22.33121],[87.66338,22.32867],[87.66429,22.32331],[87.66804,22.32753],[87.67132,22.3271],[87.67291,22.32938],[87.67448,22.32552],[87.67773,22.3245],[87.6952,22.3269],[87.69913,22.32933],[87.70591,22.32794],[87.70685,22.3258],[87.72384,22.31934],[87.7059,22.28005],[87.70784,22.26944],[87.70575,22.26923],[87.69914,22.21917],[87.70191,22.21695],[87.7136,22.21554],[87.71309,22.20607],[87.72953,22.20364],[87.72925,22.18988],[87.72294,22.18282],[87.71871,22.18213],[87.71519,22.1871],[87.71319,22.1801],[87.70953,22.18052],[87.70811,22.17666],[87.71268,22.17037],[87.70873,22.16473],[87.70857,22.15832],[87.70428,22.15272],[87.70526,22.14756],[87.70202,22.12581],[87.69093,22.12238],[87.6769,22.111],[87.67339,22.10472],[87.65247,22.10312],[87.63838,22.10451],[87.62439,22.10172],[87.61525,22.10193],[87.61184,22.10021],[87.59417,22.103],[87.57513,22.09308],[87.56412,22.09454],[87.55374,22.08269],[87.54398,22.0842],[87.5368,22.08165],[87.53284,22.0843],[87.53285,22.08765],[87.53082,22.08864],[87.50935,22.0872],[87.49193,22.08896],[87.48888,22.0839],[87.4746,22.07417],[87.47686,22.06592],[87.48713,22.06262],[87.48036,22.05943],[87.47854,22.0465],[87.49055,22.04551],[87.48557,22.0315],[87.48388,22.03194],[87.48146,22.03634],[87.47799,22.03775],[87.47744,22.0353],[87.4752,22.03546],[87.47501,22.03325],[87.47159,22.03164],[87.47219,22.02873],[87.46515,22.02657],[87.46243,22.01881],[87.46359,22.01262],[87.45999,22.00644],[87.47872,22.00115],[87.4792,21.99075],[87.48317,21.99028],[87.48345,21.9823],[87.48091,21.98333],[87.47919,21.97969],[87.48143,21.9781],[87.4846,21.96959],[87.48597,21.95712],[87.49758,21.95754],[87.50027,21.95929],[87.5063,21.95805],[87.50976,21.95233],[87.51311,21.95134],[87.5129,21.94847],[87.50714,21.9478],[87.49964,21.9503],[87.49807,21.94712],[87.49898,21.94372],[87.49525,21.9378],[87.48901,21.93938],[87.48147,21.93905],[87.48104,21.93029],[87.48409,21.92108],[87.47777,21.9071],[87.47712,21.89929],[87.46711,21.89609],[87.46052,21.89681],[87.45498,21.8916],[87.44974,21.89267],[87.44872,21.89017],[87.45018,21.87794],[87.45108,21.87627],[87.45583,21.87483],[87.45744,21.86453],[87.45432,21.85652],[87.45678,21.85398],[87.45651,21.84531],[87.45124,21.84538],[87.44105,21.84008],[87.44066,21.83382],[87.44465,21.82728],[87.44479,21.82151],[87.44128,21.82105],[87.4388,21.81335],[87.43722,21.81295],[87.43852,21.80825],[87.43626,21.80376],[87.43126,21.80351],[87.42599,21.79623],[87.42791,21.79299],[87.43542,21.79271],[87.43882,21.78979],[87.4381,21.78186],[87.43945,21.7756],[87.44152,21.77321],[87.44029,21.76993],[87.44558,21.76804],[87.44415,21.75649],[87.44523,21.74768],[87.44724,21.74621],[87.44543,21.74379],[87.4492,21.74357],[87.45417,21.73981],[87.45319,21.7378],[87.44529,21.7387],[87.44478,21.73403],[87.46918,21.73252],[87.46709,21.72757],[87.46386,21.72832],[87.46346,21.72538],[87.46741,21.71868],[87.47123,21.71741],[87.47359,21.71457],[87.4724,21.70734],[87.47018,21.70533],[87.47194,21.70244],[87.47149,21.69869],[87.47307,21.69914],[87.4722,21.69815],[87.47363,21.69711],[87.47123,21.69618],[87.47198,21.69065],[87.46959,21.68935],[87.47084,21.68858],[87.47111,21.68389],[87.46861,21.68309],[87.46945,21.67873],[87.46673,21.67857],[87.4672,21.66413],[87.46128,21.66264],[87.46248,21.65844],[87.4605,21.65544],[87.46037,21.6514],[87.46126,21.65037],[87.47256,21.65247],[87.47196,21.64806],[87.47647,21.64693],[87.47517,21.64399],[87.48118,21.63602],[87.48061,21.63321],[87.48601,21.63224],[87.48453,21.62496],[87.48479,21.61126],[87.55172,21.63155],[87.55356,21.63805],[87.55659,21.63498],[87.56418,21.63437],[87.63195,21.6478],[87.64393,21.66311],[87.64658,21.66044],[87.64365,21.65925],[87.64046,21.65482],[87.6415,21.65196],[87.64482,21.64968],[87.65141,21.64851],[87.67396,21.65253],[87.71269,21.66533],[87.73314,21.67546],[87.73954,21.68097],[87.73181,21.67963],[87.7313,21.68208],[87.73261,21.68082],[87.73721,21.68152],[87.74381,21.6848],[87.7477,21.6889],[87.74804,21.69344],[87.74373,21.6963],[87.74907,21.70081],[87.75116,21.69939],[87.75746,21.70023],[87.75182,21.69954],[87.7568,21.69811],[87.76017,21.70178],[87.76169,21.69793],[87.76968,21.69416],[87.78546,21.6942],[87.79598,21.69819],[87.80764,21.70519],[87.81312,21.71032],[87.81514,21.71841],[87.81825,21.72146],[87.83398,21.73511],[87.86077,21.75332],[87.86181,21.75625],[87.8556,21.75264],[87.86253,21.75762],[87.86648,21.76665],[87.88353,21.78198],[87.88552,21.78999],[87.88327,21.79335],[87.89443,21.79579],[87.90296,21.80078],[87.90632,21.80116],[87.90676,21.79999],[87.91189,21.80205],[87.91322,21.8032],[87.90924,21.80196],[87.90915,21.8038],[87.91195,21.80484],[87.91208,21.80332],[87.91693,21.80583],[87.94062,21.82345],[87.94781,21.83198],[87.94516,21.83574],[87.94835,21.83337],[87.94922,21.8357],[87.95335,21.8372],[87.95551,21.8417],[87.96808,21.85477],[87.97066,21.86296],[87.97763,21.86864],[87.99718,21.89653],[88.00163,21.90533],[88.0,21.90546],[88.00366,21.906],[88.00182,21.90631],[88.01198,21.92092],[88.01367,21.93251],[88.01662,21.94021],[88.01565,21.94188],[88.01199,21.94129],[88.0108,21.94285],[88.01349,21.942],[88.01813,21.94377],[88.02566,21.96186],[88.03214,21.97135],[88.036,21.98218],[88.04961,22.00081],[88.05242,22.00732],[88.04997,22.01376],[88.05569,22.02018],[88.06308,22.01331],[88.08299,22.02172],[88.12581,22.04983],[88.15193,22.0624],[88.16367,22.07426],[88.17173,22.08007],[88.18548,22.09824],[88.18943,22.10808],[88.19011,22.11627],[88.18117,22.12574],[88.16883,22.14483],[88.16094,22.15059],[88.15798,22.15553],[88.15613,22.15544],[88.15722,22.15586],[88.15585,22.15813],[88.13589,22.18478],[88.13204,22.18637],[88.12164,22.18677],[88.10337,22.1922],[88.10103,22.19056],[88.09515,22.19099],[88.09125,22.18666],[88.08782,22.18556],[88.0737,22.18713],[88.06669,22.18884],[88.04972,22.20477],[88.03478,22.20893],[88.02927,22.20778],[88.02701,22.20188],[88.02342,22.19969],[88.01744,22.19953],[88.00815,22.20208],[87.99777,22.20843],[87.99186,22.2245],[87.98327,22.23055],[87.98226,22.22914],[87.98621,22.22721],[87.98198,22.22867],[87.9817,22.23189],[87.97523,22.2334],[87.97617,22.22367],[87.98128,22.21899],[87.98387,22.21843],[87.98389,22.21407],[87.98257,22.21474],[87.97714,22.22084],[87.9734,22.22279],[87.97302,22.23382],[87.97108,22.23776],[87.95889,22.24447],[87.94764,22.25475],[87.94786,22.2588],[87.95593,22.26973],[87.94894,22.3051],[87.95284,22.31501],[87.95183,22.32423],[87.95578,22.35646],[87.95382,22.36572],[87.9436,22.38221],[87.93898,22.40507],[87.9333,22.41578],[87.92123,22.42406],[87.89805,22.43031],[87.89137,22.43276],[87.88334,22.43845],[87.88173,22.43761],[87.87524,22.44664],[87.87448,22.45121],[87.87587,22.4563],[87.88511,22.46935],[87.89195,22.47549],[87.89315,22.4801],[87.88283,22.49082],[87.87965,22.49783],[87.87991,22.50264],[87.88453,22.50656],[87.88562,22.50966]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"318","area_level":"District","area_name":"Paschim Medinipur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.36778,22.94572],[87.36201,22.94863],[87.35884,22.95519],[87.33741,22.94734],[87.33086,22.94791],[87.32722,22.9459],[87.31974,22.94659],[87.31243,22.93334],[87.30821,22.92936],[87.30343,22.9266],[87.28678,22.922],[87.28467,22.91145],[87.2762,22.90889],[87.27108,22.9035],[87.2682,22.90438],[87.26798,22.9066],[87.26533,22.90465],[87.26036,22.90409],[87.25601,22.902],[87.25608,22.89964],[87.25469,22.90009],[87.24787,22.89565],[87.24018,22.89792],[87.23017,22.90294],[87.2267,22.90665],[87.22144,22.90788],[87.21102,22.89398],[87.2028,22.89499],[87.19254,22.88842],[87.18607,22.88856],[87.18177,22.89157],[87.17133,22.89004],[87.16355,22.8765],[87.15531,22.86995],[87.14321,22.85602],[87.14208,22.85232],[87.13723,22.85075],[87.13563,22.84849],[87.13344,22.84875],[87.12828,22.84427],[87.1024,22.84579],[87.09326,22.84428],[87.07828,22.84636],[87.06905,22.85112],[87.06382,22.85075],[87.06096,22.84887],[87.05989,22.84493],[87.06107,22.83128],[87.05831,22.82633],[87.05497,22.82523],[87.05351,22.82289],[87.05689,22.82034],[87.05548,22.81956],[87.05789,22.80957],[87.06524,22.80284],[87.06494,22.79258],[87.07097,22.78525],[87.07597,22.78413],[87.07804,22.78177],[87.07982,22.77107],[87.08286,22.76493],[87.08314,22.74902],[87.08859,22.73914],[87.07993,22.73206],[87.07593,22.72584],[87.08157,22.72143],[87.09038,22.71919],[87.0893,22.71633],[87.09076,22.70729],[87.09407,22.70658],[87.09359,22.70269],[87.09556,22.70034],[87.09963,22.69925],[87.0988,22.69623],[87.1002,22.69493],[87.11649,22.69332],[87.11966,22.6866],[87.1236,22.68329],[87.11576,22.67178],[87.10256,22.66582],[87.10094,22.66311],[87.09664,22.66298],[87.09676,22.64888],[87.09012,22.63859],[87.08889,22.63392],[87.102,22.60893],[87.10079,22.60068],[87.09613,22.59553],[87.09283,22.58923],[87.09235,22.58472],[87.1001,22.57462],[87.10267,22.57341],[87.10156,22.56413],[87.10578,22.55804],[87.10657,22.55094],[87.11355,22.54523],[87.11451,22.54021],[87.11191,22.53606],[87.10715,22.53509],[87.09342,22.51888],[87.09292,22.51104],[87.08883,22.50852],[87.08822,22.50548],[87.08841,22.49953],[87.09168,22.49391],[87.09135,22.48727],[87.0826,22.47503],[87.08331,22.47074],[87.08558,22.46772],[87.09083,22.46539],[87.09983,22.46609],[87.11158,22.46348],[87.11747,22.45751],[87.11892,22.45223],[87.11666,22.44834],[87.11935,22.44608],[87.11506,22.43986],[87.10814,22.43652],[87.10339,22.43166],[87.10886,22.42845],[87.11633,22.4282],[87.12667,22.4245],[87.14954,22.42043],[87.16263,22.42531],[87.16634,22.41906],[87.16275,22.40881],[87.17305,22.39568],[87.18548,22.39544],[87.19011,22.39698],[87.20803,22.41074],[87.23173,22.41241],[87.23242,22.41052],[87.23861,22.40887],[87.24172,22.41036],[87.24348,22.4154],[87.24554,22.4163],[87.25351,22.41291],[87.25102,22.40719],[87.25522,22.40589],[87.25834,22.40271],[87.25594,22.39917],[87.25336,22.40007],[87.25153,22.39777],[87.2487,22.39975],[87.24572,22.39946],[87.2437,22.39569],[87.24489,22.3927],[87.24315,22.39056],[87.23698,22.38715],[87.22883,22.38683],[87.223,22.3848],[87.21995,22.38062],[87.21383,22.38246],[87.20903,22.37831],[87.20509,22.37824],[87.20417,22.37619],[87.20007,22.37722],[87.19887,22.3749],[87.18928,22.3765],[87.18128,22.3696],[87.18032,22.3652],[87.16836,22.3449],[87.16653,22.33886],[87.15678,22.34202],[87.15776,22.33712],[87.15621,22.33018],[87.16252,22.3272],[87.16548,22.32966],[87.17547,22.32522],[87.17383,22.32148],[87.18934,22.31702],[87.18887,22.31384],[87.19238,22.31205],[87.19757,22.30489],[87.20618,22.30465],[87.20354,22.2964],[87.192,22.282],[87.2027,22.27295],[87.21126,22.27169],[87.21802,22.26686],[87.22182,22.25629],[87.22758,22.24896],[87.22777,22.24094],[87.22547,22.23599],[87.22644,22.22972],[87.22452,22.23026],[87.22211,22.22761],[87.21609,22.2288],[87.21522,22.23112],[87.21634,22.23279],[87.20715,22.23805],[87.20405,22.2374],[87.19983,22.23272],[87.19415,22.23399],[87.19134,22.23967],[87.18937,22.23935],[87.18617,22.23497],[87.17654,22.23628],[87.17253,22.21825],[87.17485,22.21364],[87.1724,22.20839],[87.17716,22.20515],[87.18292,22.19554],[87.17919,22.1908],[87.17858,22.18625],[87.17068,22.19118],[87.17031,22.1864],[87.17371,22.18179],[87.17382,22.17926],[87.16893,22.17365],[87.17103,22.1658],[87.16874,22.16109],[87.16802,22.15247],[87.17985,22.15256],[87.18232,22.149],[87.18216,22.14488],[87.17902,22.13832],[87.17176,22.13951],[87.16602,22.14625],[87.16028,22.14987],[87.15714,22.146],[87.15291,22.14457],[87.15,22.13931],[87.15271,22.13861],[87.15328,22.13665],[87.1375,22.12547],[87.1427,22.12006],[87.14036,22.113],[87.14463,22.10586],[87.13504,22.0892],[87.14263,22.08549],[87.15507,22.08588],[87.1638,22.07301],[87.17223,22.05664],[87.1784,22.0534],[87.19399,22.03938],[87.19132,22.03422],[87.19666,22.03676],[87.19811,22.03601],[87.20931,22.01762],[87.21288,22.00502],[87.21501,22.00462],[87.21661,22.00188],[87.21578,21.99683],[87.2183,21.98577],[87.23188,21.98022],[87.23154,21.97073],[87.22605,21.96325],[87.22579,21.95756],[87.23181,21.95704],[87.23903,21.94097],[87.24244,21.93836],[87.24859,21.93695],[87.24981,21.93497],[87.24511,21.92541],[87.24977,21.91835],[87.2492,21.91515],[87.23698,21.9078],[87.23426,21.90105],[87.24225,21.89247],[87.25232,21.87711],[87.2514,21.86886],[87.2478,21.8609],[87.24903,21.85323],[87.25954,21.84921],[87.25849,21.84408],[87.26088,21.84074],[87.26542,21.83868],[87.26409,21.83562],[87.26501,21.83007],[87.26852,21.82949],[87.27088,21.82706],[87.26906,21.82343],[87.2642,21.82325],[87.2639,21.81858],[87.27519,21.81697],[87.27601,21.81117],[87.27376,21.81029],[87.27678,21.8055],[87.28285,21.80449],[87.28272,21.80276],[87.28869,21.80559],[87.29059,21.81132],[87.29698,21.81155],[87.29589,21.80529],[87.29808,21.80487],[87.29838,21.80121],[87.30963,21.79892],[87.31066,21.79385],[87.314,21.79555],[87.31518,21.79392],[87.31653,21.79632],[87.32164,21.79767],[87.31894,21.79462],[87.31946,21.79072],[87.32544,21.79202],[87.32954,21.79057],[87.33181,21.79382],[87.33603,21.79354],[87.33813,21.78486],[87.34732,21.79296],[87.35552,21.79217],[87.35682,21.78945],[87.35566,21.78639],[87.35915,21.78548],[87.3594,21.78259],[87.37183,21.77876],[87.37302,21.77371],[87.36926,21.76577],[87.37376,21.76499],[87.37401,21.77281],[87.37854,21.77277],[87.38085,21.77544],[87.38506,21.77677],[87.39343,21.77621],[87.39397,21.7726],[87.39128,21.77241],[87.39148,21.77096],[87.39542,21.77094],[87.39553,21.76713],[87.39775,21.76658],[87.40119,21.76743],[87.40413,21.77148],[87.41551,21.76949],[87.42232,21.76982],[87.42459,21.77158],[87.4315,21.76931],[87.43539,21.77067],[87.44029,21.76993],[87.44152,21.77321],[87.43945,21.7756],[87.4381,21.78186],[87.43882,21.78979],[87.43542,21.79271],[87.42791,21.79299],[87.42599,21.79623],[87.43126,21.80351],[87.43626,21.80376],[87.43852,21.80825],[87.43722,21.81295],[87.4388,21.81335],[87.44128,21.82105],[87.44479,21.82151],[87.44465,21.82728],[87.44066,21.83382],[87.44105,21.84008],[87.45124,21.84538],[87.45651,21.84531],[87.45678,21.85398],[87.45432,21.85652],[87.45744,21.86453],[87.45583,21.87483],[87.45059,21.87657],[87.44872,21.89017],[87.44974,21.89267],[87.45698,21.89238],[87.46052,21.89681],[87.46711,21.89609],[87.47712,21.89929],[87.47777,21.9071],[87.48409,21.92108],[87.48104,21.93029],[87.48147,21.93905],[87.48901,21.93938],[87.49525,21.9378],[87.49898,21.94372],[87.49807,21.94712],[87.49964,21.9503],[87.50714,21.9478],[87.5129,21.94847],[87.51311,21.95134],[87.50976,21.95233],[87.5063,21.95805],[87.50027,21.95929],[87.49758,21.95754],[87.48597,21.95712],[87.4846,21.96959],[87.48143,21.9781],[87.47919,21.97969],[87.48091,21.98333],[87.48345,21.9823],[87.48317,21.99028],[87.4792,21.99075],[87.47872,22.00115],[87.45999,22.00644],[87.46359,22.01262],[87.46243,22.01881],[87.46515,22.02657],[87.47219,22.02873],[87.47159,22.03164],[87.47501,22.03325],[87.4752,22.03546],[87.47744,22.0353],[87.47799,22.03775],[87.48146,22.03634],[87.48388,22.03194],[87.48557,22.0315],[87.49055,22.04551],[87.47854,22.0465],[87.48036,22.05943],[87.48713,22.06262],[87.47686,22.06592],[87.4746,22.07417],[87.48888,22.0839],[87.49193,22.08896],[87.50935,22.0872],[87.53082,22.08864],[87.53285,22.08765],[87.53284,22.0843],[87.5368,22.08165],[87.54398,22.0842],[87.55374,22.08269],[87.56412,22.09454],[87.57513,22.09308],[87.59417,22.103],[87.61184,22.10021],[87.61525,22.10193],[87.62439,22.10172],[87.63838,22.10451],[87.65247,22.10312],[87.67339,22.10472],[87.6769,22.111],[87.69093,22.12238],[87.70169,22.12517],[87.70472,22.1415],[87.70428,22.15272],[87.70857,22.15832],[87.70873,22.16473],[87.71268,22.17037],[87.70811,22.17666],[87.70953,22.18052],[87.71319,22.1801],[87.71519,22.1871],[87.71951,22.18175],[87.72391,22.18344],[87.72891,22.18891],[87.72953,22.20364],[87.71309,22.20607],[87.7136,22.21554],[87.70191,22.21695],[87.69914,22.21917],[87.70575,22.26923],[87.70784,22.26944],[87.7059,22.28005],[87.72384,22.31934],[87.70685,22.3258],[87.70591,22.32794],[87.69913,22.32933],[87.6952,22.3269],[87.67773,22.3245],[87.67448,22.32552],[87.67291,22.32938],[87.67132,22.3271],[87.66804,22.32753],[87.66429,22.32331],[87.66338,22.32867],[87.66535,22.33121],[87.65658,22.33196],[87.65124,22.32563],[87.64746,22.32512],[87.6471,22.3298],[87.64979,22.33085],[87.64979,22.3323],[87.64602,22.33165],[87.64408,22.33318],[87.64627,22.3369],[87.64388,22.34442],[87.64547,22.34855],[87.64612,22.36251],[87.64431,22.36354],[87.6479,22.3674],[87.65424,22.3969],[87.65784,22.4006],[87.65822,22.40764],[87.65604,22.41092],[87.65537,22.42062],[87.65276,22.42086],[87.65203,22.42653],[87.64625,22.43104],[87.64605,22.43508],[87.64979,22.43879],[87.65304,22.44675],[87.65288,22.45064],[87.65651,22.45301],[87.65928,22.4619],[87.66754,22.46018],[87.67116,22.46101],[87.67423,22.46801],[87.67278,22.47984],[87.67381,22.48365],[87.68327,22.4888],[87.68899,22.48989],[87.69038,22.50452],[87.69203,22.50733],[87.69858,22.50429],[87.70954,22.48963],[87.73898,22.48729],[87.74146,22.48528],[87.74098,22.48161],[87.74639,22.47854],[87.74576,22.4747],[87.76165,22.47322],[87.76228,22.47482],[87.7703,22.47774],[87.77658,22.47861],[87.78456,22.48514],[87.78812,22.47813],[87.79329,22.47889],[87.79902,22.48266],[87.80547,22.49068],[87.81609,22.49593],[87.81635,22.49915],[87.82511,22.49857],[87.82932,22.50022],[87.83297,22.50434],[87.83928,22.50553],[87.84656,22.50974],[87.84656,22.51192],[87.85663,22.50983],[87.87235,22.5109],[87.88455,22.50924],[87.88605,22.51622],[87.89064,22.51939],[87.88537,22.52637],[87.8718,22.53222],[87.8647,22.53192],[87.86153,22.53998],[87.8537,22.54506],[87.85057,22.55173],[87.84458,22.55506],[87.84342,22.56006],[87.84679,22.56393],[87.84655,22.57322],[87.84899,22.58214],[87.85103,22.58473],[87.85581,22.58646],[87.85175,22.59608],[87.84457,22.60259],[87.82587,22.60729],[87.82455,22.61609],[87.81857,22.61373],[87.81439,22.61498],[87.8126,22.62408],[87.81445,22.63403],[87.81124,22.63582],[87.8083,22.63262],[87.80335,22.63386],[87.79854,22.64689],[87.79827,22.65228],[87.79361,22.65208],[87.79123,22.65387],[87.78967,22.65873],[87.78454,22.66109],[87.78409,22.66486],[87.7782,22.67033],[87.77834,22.67305],[87.77349,22.67942],[87.77232,22.68397],[87.76463,22.68806],[87.76301,22.69558],[87.76446,22.69746],[87.76045,22.69726],[87.7598,22.69881],[87.76042,22.70186],[87.76563,22.70815],[87.76078,22.72385],[87.75672,22.72465],[87.75501,22.72904],[87.75156,22.73076],[87.74751,22.73665],[87.74086,22.73698],[87.74482,22.74238],[87.74468,22.74531],[87.74122,22.74736],[87.74074,22.75155],[87.74147,22.75724],[87.7446,22.75952],[87.74452,22.76881],[87.74055,22.77366],[87.73896,22.77258],[87.7396,22.77844],[87.73363,22.7772],[87.73346,22.77486],[87.72544,22.77516],[87.72671,22.78697],[87.72531,22.78856],[87.71817,22.78861],[87.71729,22.78669],[87.70972,22.78521],[87.70543,22.78638],[87.70187,22.779],[87.69391,22.78119],[87.69302,22.77917],[87.69098,22.77956],[87.68593,22.77601],[87.67853,22.77994],[87.677,22.78266],[87.68095,22.79167],[87.6833,22.79246],[87.68275,22.79471],[87.68387,22.79342],[87.68543,22.79635],[87.68534,22.79779],[87.68306,22.79781],[87.68314,22.80225],[87.68251,22.8004],[87.68107,22.80143],[87.67945,22.80018],[87.67574,22.80332],[87.67557,22.80647],[87.67001,22.80439],[87.66922,22.80626],[87.66652,22.80445],[87.66527,22.8069],[87.66501,22.80525],[87.66284,22.8067],[87.65937,22.80325],[87.6538,22.80131],[87.64993,22.80165],[87.65005,22.80399],[87.64791,22.80532],[87.64656,22.80297],[87.64264,22.80392],[87.64365,22.8049],[87.63953,22.80566],[87.64025,22.80728],[87.63757,22.80782],[87.63799,22.80946],[87.63543,22.80927],[87.6335,22.81184],[87.63135,22.81105],[87.62906,22.81277],[87.62837,22.81418],[87.63092,22.81447],[87.62825,22.8171],[87.6277,22.82016],[87.62942,22.82119],[87.62751,22.82147],[87.62606,22.82783],[87.62392,22.82819],[87.62453,22.83117],[87.62245,22.83293],[87.62479,22.83443],[87.62439,22.83675],[87.62058,22.84033],[87.62233,22.84322],[87.62173,22.84588],[87.61606,22.84624],[87.61582,22.84812],[87.61085,22.85081],[87.60177,22.84785],[87.59789,22.84289],[87.58875,22.84137],[87.58613,22.84545],[87.58022,22.84455],[87.57826,22.84817],[87.57009,22.85011],[87.56705,22.85645],[87.55913,22.85989],[87.55874,22.86356],[87.55568,22.86743],[87.54673,22.86624],[87.54225,22.86337],[87.5433,22.86544],[87.53395,22.8671],[87.52604,22.86436],[87.51615,22.86639],[87.51702,22.87031],[87.51992,22.87215],[87.52659,22.8712],[87.52824,22.87227],[87.52885,22.87633],[87.53135,22.87652],[87.53255,22.87869],[87.5327,22.8823],[87.53003,22.88502],[87.52563,22.8861],[87.52609,22.88879],[87.52277,22.88941],[87.52306,22.89344],[87.52756,22.89427],[87.52727,22.89748],[87.52448,22.89858],[87.52045,22.89669],[87.51064,22.89723],[87.51111,22.90303],[87.50597,22.9034],[87.50531,22.90523],[87.5049,22.91243],[87.50694,22.91516],[87.50423,22.91802],[87.51843,22.91587],[87.52234,22.91724],[87.52387,22.91901],[87.52241,22.9239],[87.52386,22.92471],[87.52106,22.92561],[87.52251,22.92721],[87.52222,22.93049],[87.51727,22.93091],[87.51752,22.92486],[87.51376,22.92367],[87.51276,22.92163],[87.50938,22.92566],[87.5032,22.92619],[87.50214,22.92501],[87.49956,22.92615],[87.49884,22.92212],[87.49594,22.92007],[87.48341,22.91391],[87.47938,22.91396],[87.47445,22.91034],[87.47059,22.91008],[87.45963,22.91179],[87.44725,22.92081],[87.43396,22.92515],[87.42205,22.9247],[87.42202,22.93016],[87.41131,22.93323],[87.39937,22.93379],[87.3991,22.93901],[87.3938,22.94018],[87.39238,22.94232],[87.37237,22.9421],[87.36778,22.94572]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"319","area_level":"District","area_name":"Murshidabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.90136,24.84988],[87.89667,24.85777],[87.89133,24.85604],[87.89386,24.84974],[87.89654,24.84929],[87.89875,24.84461],[87.89887,24.83708],[87.89607,24.83603],[87.89604,24.8307],[87.89777,24.82768],[87.90136,24.8275],[87.89952,24.82336],[87.89619,24.82286],[87.89124,24.82699],[87.88802,24.82298],[87.88577,24.82367],[87.88727,24.82598],[87.88615,24.82816],[87.88439,24.82322],[87.88261,24.82327],[87.88505,24.82842],[87.88275,24.82953],[87.88117,24.82378],[87.87982,24.82415],[87.87933,24.82249],[87.87507,24.82239],[87.87507,24.82575],[87.87237,24.82476],[87.87053,24.82629],[87.86912,24.82464],[87.87019,24.8203],[87.87438,24.81801],[87.87462,24.8084],[87.88071,24.808],[87.8816,24.80537],[87.88074,24.79834],[87.87838,24.79602],[87.8783,24.78974],[87.87445,24.79083],[87.87551,24.79416],[87.87387,24.79558],[87.86976,24.79391],[87.87088,24.79089],[87.86864,24.78865],[87.86866,24.7836],[87.86684,24.77953],[87.87014,24.77865],[87.86923,24.77503],[87.86591,24.77347],[87.86542,24.77171],[87.86201,24.77254],[87.86388,24.77036],[87.85228,24.76199],[87.84795,24.76345],[87.84326,24.76859],[87.83817,24.76804],[87.8374,24.76579],[87.83598,24.77832],[87.84024,24.77783],[87.8421,24.7857],[87.84077,24.78637],[87.84071,24.78941],[87.83624,24.79021],[87.8323,24.78652],[87.83015,24.77001],[87.82881,24.76913],[87.82799,24.77219],[87.82796,24.77032],[87.82266,24.76962],[87.81636,24.75863],[87.82291,24.75481],[87.82941,24.75458],[87.83221,24.74883],[87.83455,24.74892],[87.84109,24.74355],[87.84302,24.74002],[87.84887,24.74019],[87.85993,24.73393],[87.86353,24.7342],[87.86561,24.73203],[87.87413,24.73208],[87.87939,24.74035],[87.87855,24.74179],[87.88302,24.74132],[87.88545,24.73968],[87.8851,24.73679],[87.88735,24.73655],[87.8888,24.73438],[87.88825,24.72891],[87.8902,24.72795],[87.89001,24.72522],[87.89864,24.72369],[87.90459,24.72533],[87.90401,24.72252],[87.90835,24.72162],[87.90635,24.71977],[87.90724,24.71497],[87.90328,24.71464],[87.90064,24.71128],[87.89992,24.70518],[87.90292,24.70514],[87.90114,24.69412],[87.89767,24.68788],[87.89414,24.68701],[87.88775,24.67999],[87.89071,24.67521],[87.89711,24.67255],[87.90478,24.67244],[87.90901,24.67],[87.90844,24.66717],[87.91661,24.66575],[87.9163,24.65829],[87.91087,24.65342],[87.91414,24.63771],[87.91127,24.63797],[87.90993,24.6314],[87.89185,24.6341],[87.88792,24.63034],[87.88864,24.62634],[87.89744,24.6256],[87.90032,24.62559],[87.90577,24.62928],[87.90603,24.61501],[87.89265,24.61354],[87.88684,24.61702],[87.87811,24.61819],[87.87583,24.61523],[87.87837,24.61206],[87.88039,24.61325],[87.88117,24.61167],[87.88354,24.61206],[87.8873,24.60778],[87.89347,24.60548],[87.89168,24.60864],[87.89254,24.60975],[87.91077,24.61043],[87.91129,24.60103],[87.91318,24.59991],[87.91182,24.59793],[87.91405,24.59662],[87.91285,24.59287],[87.90828,24.58892],[87.9011,24.58938],[87.89774,24.58491],[87.89193,24.58418],[87.89171,24.56866],[87.88977,24.56558],[87.8914,24.55446],[87.88932,24.55103],[87.89089,24.54692],[87.88985,24.54473],[87.89237,24.54179],[87.8988,24.54068],[87.90255,24.54257],[87.90709,24.54067],[87.9116,24.54225],[87.91558,24.5413],[87.92353,24.54426],[87.92384,24.54055],[87.92749,24.53673],[87.93266,24.53694],[87.9379,24.53137],[87.93826,24.52756],[87.94049,24.52559],[87.9394,24.52007],[87.95061,24.5169],[87.94675,24.51127],[87.94705,24.5076],[87.94453,24.50061],[87.94781,24.49964],[87.94615,24.49469],[87.94387,24.49471],[87.94395,24.48759],[87.95014,24.4895],[87.95219,24.48782],[87.95381,24.48903],[87.96334,24.48679],[87.9661,24.48366],[87.965,24.47909],[87.96802,24.47597],[87.96823,24.47735],[87.9708,24.47737],[87.9741,24.47393],[87.97545,24.46897],[87.97384,24.46336],[87.97702,24.46152],[87.97687,24.45887],[87.97296,24.4564],[87.97208,24.4482],[87.97565,24.44011],[87.97504,24.42596],[87.97912,24.42409],[87.97763,24.41745],[87.97871,24.41493],[87.97463,24.41401],[87.97567,24.41163],[87.97405,24.41076],[87.97051,24.40039],[87.97306,24.39516],[87.97097,24.39222],[87.97166,24.38903],[87.96927,24.37983],[87.9736,24.37756],[87.97297,24.37505],[87.97168,24.37252],[87.967,24.37157],[87.95948,24.37339],[87.95746,24.36846],[87.95835,24.36692],[87.95541,24.3635],[87.95496,24.35695],[87.95797,24.35076],[87.95707,24.3423],[87.95868,24.33901],[87.9636,24.33771],[87.96348,24.33473],[87.9672,24.33704],[87.971,24.33622],[87.97071,24.33796],[87.97219,24.33837],[87.97525,24.33695],[87.97698,24.33895],[87.97814,24.33707],[87.98137,24.33751],[87.98236,24.33552],[87.98026,24.3351],[87.98188,24.33324],[87.98227,24.33452],[87.98322,24.33316],[87.98642,24.33444],[87.98635,24.33263],[87.98843,24.33126],[87.99301,24.33032],[87.99103,24.32821],[87.99643,24.32215],[87.99495,24.32014],[87.99764,24.31886],[87.99105,24.31529],[87.99402,24.31318],[88.00294,24.31434],[88.00466,24.31209],[88.00698,24.31453],[88.00934,24.31297],[88.01199,24.31454],[88.01127,24.31181],[88.01329,24.31157],[88.01434,24.30938],[88.01774,24.31037],[88.0162,24.30387],[88.01417,24.30173],[88.01639,24.29637],[88.01515,24.29455],[88.01919,24.29089],[88.0137,24.28721],[88.01615,24.28626],[88.01282,24.28456],[88.01365,24.28361],[88.01522,24.28472],[88.01558,24.28252],[88.01709,24.28399],[88.01592,24.27997],[88.01721,24.27843],[88.01586,24.27502],[88.01757,24.27222],[88.0167,24.27071],[88.02233,24.26498],[88.02227,24.26295],[88.02504,24.26154],[88.0222,24.2488],[88.02476,24.24816],[88.02053,24.24289],[88.01345,24.24251],[88.00979,24.24396],[87.99722,24.24303],[87.99771,24.23813],[87.9957,24.23227],[87.99751,24.23098],[87.99807,24.22704],[88.00595,24.22464],[88.00496,24.22152],[88.00603,24.2192],[88.00171,24.21804],[88.00398,24.21654],[88.00218,24.21604],[88.00462,24.21502],[88.00145,24.2145],[88.0,24.21152],[87.99182,24.2065],[87.99019,24.20771],[87.99188,24.21016],[87.99081,24.21289],[87.9865,24.21264],[87.98662,24.21087],[87.98942,24.21061],[87.9892,24.20657],[87.98321,24.19135],[87.97722,24.19115],[87.97356,24.19441],[87.96794,24.18929],[87.96428,24.19057],[87.9569,24.19007],[87.949,24.19321],[87.94756,24.19592],[87.94112,24.19613],[87.93746,24.19765],[87.93734,24.19945],[87.93082,24.20024],[87.92668,24.19877],[87.92571,24.19591],[87.92219,24.19579],[87.92014,24.18847],[87.92257,24.18753],[87.92242,24.18481],[87.92482,24.18447],[87.92579,24.18231],[87.92616,24.18487],[87.92901,24.18517],[87.93127,24.1814],[87.9353,24.18126],[87.93359,24.17696],[87.93225,24.17805],[87.93186,24.17441],[87.93007,24.17455],[87.93012,24.1768],[87.92886,24.17687],[87.92841,24.17237],[87.92675,24.17412],[87.92415,24.16971],[87.91843,24.16764],[87.9141,24.16277],[87.90989,24.16229],[87.90615,24.16614],[87.90525,24.16309],[87.89936,24.16184],[87.89929,24.15907],[87.90291,24.15845],[87.90308,24.15392],[87.8973,24.1534],[87.89988,24.14988],[87.89686,24.14636],[87.8987,24.14365],[87.9093,24.14335],[87.91024,24.13723],[87.90853,24.13635],[87.91024,24.1348],[87.90479,24.12953],[87.90504,24.12657],[87.90187,24.12673],[87.89635,24.11798],[87.89088,24.11547],[87.89174,24.11417],[87.89506,24.11431],[87.89601,24.10915],[87.89402,24.10612],[87.90257,24.10428],[87.908,24.1073],[87.90953,24.10537],[87.90804,24.10414],[87.91243,24.09941],[87.90867,24.09423],[87.91033,24.09158],[87.89928,24.0897],[87.89956,24.08526],[87.89537,24.08161],[87.89374,24.06778],[87.89671,24.0665],[87.89801,24.06018],[87.89565,24.04701],[87.89647,24.04355],[87.89432,24.04471],[87.88235,24.04297],[87.87475,24.04004],[87.87356,24.0321],[87.87005,24.02982],[87.86943,24.02732],[87.86042,24.02614],[87.85998,24.0207],[87.86889,24.01688],[87.86927,24.01124],[87.86719,24.00969],[87.86413,24.00114],[87.85762,23.9987],[87.85629,23.99036],[87.8606,23.98451],[87.85827,23.98264],[87.85848,23.97568],[87.8563,23.9731],[87.84786,23.97135],[87.84916,23.9671],[87.86056,23.96495],[87.86393,23.95955],[87.86105,23.94673],[87.86485,23.94343],[87.86598,23.94454],[87.86736,23.94148],[87.86584,23.93593],[87.86157,23.93356],[87.86046,23.92963],[87.86652,23.92086],[87.86495,23.91891],[87.86003,23.92092],[87.85702,23.91779],[87.84382,23.91613],[87.84316,23.90509],[87.84879,23.90186],[87.84639,23.89501],[87.84729,23.88924],[87.85297,23.88602],[87.85242,23.88287],[87.86217,23.8812],[87.86342,23.87744],[87.85787,23.87246],[87.86188,23.87085],[87.86758,23.87174],[87.86986,23.86978],[87.86987,23.86091],[87.87317,23.8585],[87.87217,23.85649],[87.87461,23.85689],[87.87515,23.85494],[87.87726,23.85478],[87.87737,23.85883],[87.88633,23.86243],[87.88536,23.85659],[87.89106,23.84914],[87.88915,23.84132],[87.89055,23.84],[87.90344,23.83868],[87.90441,23.84454],[87.90582,23.84536],[87.91418,23.84424],[87.91531,23.84178],[87.91823,23.84164],[87.91869,23.84316],[87.92563,23.84095],[87.92727,23.83776],[87.93478,23.83371],[87.93399,23.83153],[87.93159,23.83157],[87.92909,23.82617],[87.94554,23.81968],[87.94876,23.81634],[87.94918,23.81259],[87.95483,23.80913],[87.9576,23.81063],[87.96575,23.80921],[87.96507,23.80508],[87.96652,23.80495],[87.96688,23.80771],[87.96623,23.82375],[87.9707,23.8269],[87.97149,23.831],[87.97477,23.83189],[87.97384,23.83426],[87.96653,23.83508],[87.96646,23.83804],[87.96921,23.84008],[87.96642,23.84159],[87.96814,23.84412],[87.97178,23.84451],[87.97194,23.84096],[87.97617,23.84115],[87.97935,23.84465],[87.98819,23.84055],[87.99648,23.84266],[88.00017,23.83959],[88.00625,23.84454],[88.00903,23.84321],[88.01609,23.83725],[88.01825,23.82889],[88.02363,23.82758],[88.02556,23.82129],[88.02932,23.81872],[88.0297,23.81558],[88.02698,23.81106],[88.03055,23.80527],[88.03066,23.79669],[88.03923,23.79467],[88.04047,23.79234],[88.04525,23.79045],[88.04703,23.78333],[88.05968,23.78129],[88.05833,23.77228],[88.04063,23.77347],[88.04172,23.77157],[88.03927,23.77065],[88.03603,23.76212],[88.03677,23.75938],[88.03891,23.75869],[88.03992,23.74567],[88.04655,23.74498],[88.04676,23.74137],[88.05176,23.73908],[88.05265,23.72726],[88.06029,23.72233],[88.06441,23.72598],[88.08002,23.72315],[88.08144,23.72406],[88.08003,23.72457],[88.08057,23.72614],[88.08416,23.72504],[88.0858,23.72895],[88.08887,23.73117],[88.08836,23.73467],[88.09263,23.7358],[88.09363,23.73802],[88.0926,23.74029],[88.09438,23.74217],[88.09415,23.75266],[88.10554,23.75385],[88.113,23.75261],[88.115,23.74922],[88.11663,23.74906],[88.11936,23.7497],[88.12001,23.7517],[88.12318,23.75179],[88.13226,23.74062],[88.12838,23.73963],[88.12934,23.73706],[88.13238,23.73684],[88.13242,23.73381],[88.13958,23.73725],[88.1409,23.73412],[88.14469,23.73316],[88.15553,23.73661],[88.15806,23.75113],[88.16201,23.75529],[88.17794,23.75907],[88.17877,23.76263],[88.18099,23.7626],[88.1824,23.76621],[88.18732,23.77037],[88.19491,23.76559],[88.20217,23.76989],[88.21858,23.75909],[88.23155,23.75968],[88.24136,23.76727],[88.23479,23.7845],[88.23537,23.80206],[88.23773,23.80496],[88.25,23.80432],[88.25088,23.80097],[88.2577,23.8024],[88.25975,23.80678],[88.26548,23.80987],[88.26667,23.809],[88.26918,23.81229],[88.27279,23.80862],[88.27775,23.80892],[88.27776,23.80722],[88.29293,23.80588],[88.29395,23.80448],[88.29564,23.8056],[88.29582,23.81079],[88.29747,23.81147],[88.31702,23.80734],[88.3195,23.80924],[88.31792,23.81689],[88.31949,23.8231],[88.32529,23.82155],[88.34844,23.82222],[88.35194,23.83052],[88.35337,23.82698],[88.3565,23.82553],[88.36321,23.82576],[88.3643,23.82285],[88.36783,23.82362],[88.36683,23.81861],[88.36795,23.81699],[88.37762,23.81377],[88.38616,23.8148],[88.38773,23.8221],[88.39386,23.82045],[88.40774,23.82183],[88.40941,23.81714],[88.40602,23.81467],[88.41034,23.80872],[88.40926,23.8063],[88.41858,23.80396],[88.43616,23.84361],[88.44283,23.85348],[88.44824,23.85631],[88.45577,23.84913],[88.45773,23.84287],[88.45666,23.83669],[88.44785,23.82696],[88.44892,23.82451],[88.47662,23.82195],[88.47886,23.82809],[88.47373,23.837],[88.47367,23.8397],[88.4775,23.85354],[88.47646,23.86291],[88.47406,23.87048],[88.46295,23.88864],[88.48286,23.90335],[88.48716,23.9018],[88.49739,23.88931],[88.50394,23.88514],[88.50908,23.88864],[88.51086,23.89559],[88.50703,23.90524],[88.49739,23.91096],[88.47349,23.91661],[88.4613,23.92205],[88.45725,23.92797],[88.46531,23.93856],[88.47055,23.94196],[88.48015,23.9357],[88.49007,23.93621],[88.49513,23.94083],[88.49781,23.95071],[88.50733,23.94912],[88.51192,23.95685],[88.5205,23.9508],[88.52328,23.95126],[88.52487,23.95792],[88.52282,23.97057],[88.5136,23.9841],[88.51194,23.9919],[88.51855,23.99548],[88.53365,23.99302],[88.54246,23.99743],[88.54974,24.02278],[88.54876,24.0373],[88.55351,24.04098],[88.56064,24.04024],[88.5699,24.03486],[88.57878,24.0324],[88.58375,24.02867],[88.59031,24.02081],[88.59129,24.01054],[88.59468,24.00161],[88.6113,23.98513],[88.61587,23.98259],[88.62062,23.98225],[88.62872,23.98498],[88.63409,23.99025],[88.64213,24.0038],[88.64794,24.00679],[88.64989,24.01022],[88.65022,24.01429],[88.64713,24.02076],[88.64332,24.02292],[88.63339,24.02382],[88.63067,24.02938],[88.63205,24.03486],[88.64641,24.05145],[88.64768,24.06197],[88.65104,24.06954],[88.65679,24.07334],[88.66449,24.07354],[88.6729,24.0778],[88.68064,24.07722],[88.68184,24.07965],[88.67989,24.08241],[88.67484,24.08349],[88.66699,24.08179],[88.66742,24.08378],[88.66897,24.08557],[88.68457,24.08909],[88.69101,24.09302],[88.70031,24.09461],[88.70085,24.10814],[88.69811,24.11037],[88.69468,24.10956],[88.69319,24.11115],[88.69748,24.12053],[88.70102,24.12168],[88.707,24.11914],[88.74649,24.14706],[88.74338,24.15208],[88.74034,24.16331],[88.73158,24.17159],[88.73526,24.2115],[88.7345,24.22223],[88.74096,24.25392],[88.73777,24.26103],[88.73816,24.26551],[88.73544,24.2765],[88.72929,24.28979],[88.72238,24.29971],[88.70623,24.3117],[88.69659,24.31535],[88.65899,24.31439],[88.65253,24.30503],[88.64984,24.30562],[88.64893,24.31092],[88.63429,24.30686],[88.63289,24.30799],[88.62849,24.30509],[88.62356,24.31568],[88.60669,24.31515],[88.6061,24.31026],[88.60332,24.3101],[88.58789,24.31435],[88.58719,24.32405],[88.56769,24.32665],[88.55513,24.29334],[88.52712,24.34438],[88.51861,24.34243],[88.5079,24.34248],[88.49601,24.35443],[88.48371,24.35702],[88.44643,24.37858],[88.43034,24.38373],[88.41965,24.38144],[88.41227,24.37681],[88.38934,24.37188],[88.38014,24.37425],[88.35707,24.37361],[88.34529,24.37655],[88.32659,24.38623],[88.31094,24.40145],[88.28493,24.42216],[88.2755,24.4378],[88.26328,24.44597],[88.24895,24.44825],[88.22751,24.4555],[88.21049,24.45775],[88.1984,24.4625],[88.19133,24.46845],[88.18997,24.47417],[88.18497,24.48151],[88.17355,24.49305],[88.15827,24.5021],[88.14953,24.50379],[88.10562,24.54624],[88.08947,24.56686],[88.08277,24.58169],[88.07113,24.59789],[88.06919,24.60328],[88.05234,24.62513],[88.04118,24.64331],[88.02794,24.64984],[88.02366,24.65539],[88.0088,24.66789],[88.00627,24.66343],[88.00656,24.66074],[88.00289,24.65552],[87.99744,24.65544],[87.98038,24.66367],[87.96872,24.67621],[87.95692,24.69657],[87.96053,24.70375],[87.96391,24.70655],[87.96844,24.73144],[87.96649,24.74515],[87.96859,24.75058],[87.96662,24.76108],[87.96699,24.7698],[87.96067,24.78147],[87.95216,24.79016],[87.94903,24.79597],[87.92828,24.81017],[87.91405,24.82852],[87.90136,24.84988]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"32","area_level":"District","area_name":"Gurdaspur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.33417,32.20887],[75.32699,32.2139],[75.31959,32.20823],[75.31638,32.20804],[75.32012,32.20411],[75.31194,32.19938],[75.31033,32.1946],[75.31368,32.18938],[75.31844,32.18744],[75.31637,32.18105],[75.32242,32.1795],[75.31391,32.17211],[75.30678,32.16901],[75.29959,32.15659],[75.2994,32.15331],[75.28782,32.15283],[75.28535,32.15149],[75.27726,32.13697],[75.28345,32.13189],[75.27936,32.11784],[75.27187,32.1127],[75.26273,32.11185],[75.26159,32.11052],[75.26613,32.10892],[75.26645,32.10748],[75.26218,32.10209],[75.24798,32.10095],[75.24511,32.09971],[75.24028,32.09107],[75.23142,32.09161],[75.22924,32.0933],[75.23544,32.1035],[75.22696,32.10678],[75.2262,32.10341],[75.2232,32.10241],[75.2237,32.09816],[75.21773,32.10341],[75.22026,32.10773],[75.21583,32.1211],[75.20246,32.12024],[75.20568,32.10255],[75.2037,32.09927],[75.20405,32.09667],[75.19789,32.09861],[75.19677,32.08604],[75.1985,32.08267],[75.18916,32.08218],[75.17928,32.07623],[75.17424,32.06747],[75.1662,32.07154],[75.15767,32.08175],[75.14242,32.08016],[75.12291,32.08138],[75.12026,32.07857],[75.12084,32.07537],[75.11747,32.07543],[75.11315,32.07186],[75.10857,32.07162],[75.10668,32.06958],[75.10891,32.06473],[75.1049,32.05857],[75.10171,32.05945],[75.09767,32.06622],[75.09121,32.07184],[75.09022,32.06944],[75.09158,32.06583],[75.08403,32.06003],[75.07301,32.05968],[75.0689,32.06352],[75.0715,32.06558],[75.0687,32.06719],[75.06413,32.06559],[75.06801,32.06238],[75.06201,32.05527],[75.05873,32.05278],[75.05376,32.05432],[75.05056,32.05279],[75.0519,32.05142],[75.0407,32.04268],[75.03626,32.04512],[75.03391,32.05067],[75.02385,32.04767],[75.02157,32.04859],[75.01889,32.04703],[75.01787,32.04191],[75.01662,32.04291],[75.01236,32.03575],[75.00478,32.03757],[75.00277,32.04361],[75.00111,32.04116],[74.98524,32.04242],[74.9829,32.04025],[74.97159,32.04262],[74.97806,32.048],[74.97391,32.05348],[74.95284,32.06021],[74.95193,32.05833],[74.94821,32.05935],[74.94941,32.06231],[74.94809,32.06308],[74.92437,32.06608],[74.91892,32.06252],[74.91756,32.05812],[74.91258,32.05635],[74.91274,32.05403],[74.90837,32.05148],[74.92264,32.03917],[74.92802,32.02643],[74.92937,32.0186],[74.93352,32.01668],[74.93559,32.0115],[74.93072,32.00943],[74.93411,32.00713],[74.9324,32.0048],[74.92795,32.0051],[74.92481,32.0],[74.9199,32.00018],[74.91909,31.9989],[74.91951,31.99353],[74.91666,31.98519],[74.92006,31.9825],[74.91737,31.98017],[74.9183,31.97744],[74.91715,31.9753],[74.92858,31.96887],[74.93322,31.96419],[74.93914,31.96248],[74.94753,31.9654],[74.9486,31.9704],[74.97321,31.97615],[74.97403,31.97084],[74.97192,31.9603],[74.96049,31.95345],[74.95426,31.95463],[74.94281,31.94951],[74.93747,31.94605],[74.94208,31.94306],[74.9387,31.94132],[74.9287,31.93851],[74.92597,31.94132],[74.91417,31.94187],[74.90505,31.93644],[74.90173,31.93139],[74.89855,31.93181],[74.89664,31.92984],[74.89693,31.93262],[74.89229,31.93386],[74.88944,31.93148],[74.8906,31.92873],[74.88871,31.92732],[74.8971,31.91346],[74.90283,31.90751],[74.90229,31.90198],[74.90759,31.89801],[74.90679,31.89436],[74.9118,31.89107],[74.91939,31.89262],[74.91872,31.88306],[74.91657,31.87916],[74.92607,31.87566],[74.9338,31.86857],[74.93831,31.8669],[74.94038,31.87011],[74.9443,31.8705],[74.94334,31.86877],[74.94469,31.86467],[74.9417,31.86355],[74.94195,31.86064],[74.95096,31.85589],[74.95742,31.85647],[74.962,31.85401],[74.96441,31.84344],[74.96201,31.84071],[74.96568,31.83775],[74.9692,31.83126],[74.97409,31.83455],[74.98362,31.83627],[74.99272,31.83095],[74.99675,31.83203],[74.99767,31.8309],[75.00052,31.83263],[75.00226,31.83012],[75.0068,31.82823],[75.01293,31.82039],[75.02323,31.82088],[75.02811,31.8228],[75.02822,31.82095],[75.02189,31.81772],[75.02905,31.81256],[75.03151,31.81462],[75.03538,31.8108],[75.03413,31.80863],[75.03548,31.8058],[75.03986,31.80253],[75.06102,31.80957],[75.06285,31.80692],[75.07058,31.80753],[75.07377,31.80614],[75.07991,31.80134],[75.08246,31.79212],[75.09159,31.79097],[75.10248,31.78233],[75.11137,31.78134],[75.11358,31.77895],[75.11353,31.77704],[75.10799,31.77302],[75.10683,31.76535],[75.0997,31.76414],[75.10104,31.75931],[75.10457,31.75499],[75.11659,31.75297],[75.12383,31.75656],[75.12593,31.75413],[75.13744,31.75179],[75.14337,31.75621],[75.144,31.75894],[75.14612,31.75826],[75.14872,31.75281],[75.15463,31.74728],[75.15906,31.74787],[75.16003,31.7463],[75.16535,31.74569],[75.17094,31.74804],[75.17346,31.74728],[75.17386,31.74901],[75.18183,31.74046],[75.18385,31.74101],[75.18287,31.73987],[75.18426,31.73908],[75.18663,31.74244],[75.18954,31.74142],[75.19062,31.73993],[75.18577,31.73656],[75.18707,31.73662],[75.18777,31.73403],[75.19715,31.7341],[75.20305,31.73061],[75.20117,31.72454],[75.20382,31.72239],[75.20012,31.71791],[75.19371,31.71766],[75.19386,31.71102],[75.20401,31.70742],[75.20798,31.70845],[75.20961,31.70606],[75.2133,31.70536],[75.21502,31.70111],[75.2129,31.69581],[75.21824,31.69488],[75.22393,31.69156],[75.22553,31.69277],[75.22728,31.69174],[75.22606,31.68865],[75.22761,31.68405],[75.23533,31.68699],[75.24027,31.68324],[75.24262,31.68678],[75.24122,31.68973],[75.24366,31.69034],[75.24666,31.68872],[75.24759,31.69185],[75.2574,31.6938],[75.26138,31.69203],[75.27209,31.69691],[75.27653,31.6958],[75.27926,31.69828],[75.28496,31.69839],[75.2851,31.69474],[75.28682,31.69291],[75.28432,31.68179],[75.2894,31.68097],[75.29246,31.68335],[75.29526,31.6798],[75.29751,31.68111],[75.30103,31.67482],[75.30667,31.67539],[75.30939,31.6701],[75.31327,31.66732],[75.30965,31.66149],[75.2998,31.65565],[75.30197,31.65263],[75.30954,31.64985],[75.31785,31.64173],[75.32718,31.63537],[75.32953,31.63516],[75.33424,31.63957],[75.33873,31.64118],[75.3414,31.63556],[75.3443,31.63544],[75.34499,31.63678],[75.34656,31.63394],[75.35209,31.63253],[75.36216,31.62586],[75.37268,31.62457],[75.37843,31.61728],[75.38434,31.6139],[75.38721,31.60897],[75.39184,31.60602],[75.39642,31.59956],[75.40427,31.59355],[75.41249,31.59823],[75.41903,31.61376],[75.41936,31.62159],[75.42565,31.62768],[75.429,31.62641],[75.46806,31.63634],[75.47038,31.64669],[75.47432,31.65016],[75.47139,31.6539],[75.48422,31.66956],[75.48027,31.67169],[75.48371,31.67462],[75.484,31.67707],[75.49075,31.68037],[75.4939,31.68957],[75.4942,31.69797],[75.51345,31.71278],[75.52717,31.73086],[75.53481,31.73671],[75.53496,31.7391],[75.54271,31.75045],[75.53743,31.75064],[75.53857,31.76491],[75.54076,31.76499],[75.53375,31.77359],[75.52946,31.78228],[75.5366,31.7779],[75.55244,31.7766],[75.55907,31.7822],[75.56387,31.79476],[75.55919,31.79942],[75.56756,31.80095],[75.56893,31.80697],[75.56738,31.81236],[75.56857,31.81422],[75.56472,31.81448],[75.56149,31.82295],[75.5624,31.8275],[75.55107,31.82604],[75.55142,31.83987],[75.55006,31.8397],[75.54781,31.84871],[75.55364,31.84957],[75.55374,31.85068],[75.56242,31.85103],[75.56452,31.85418],[75.56954,31.85483],[75.56913,31.87472],[75.56512,31.88816],[75.55935,31.88776],[75.55672,31.89934],[75.54818,31.9097],[75.54002,31.92592],[75.537,31.94194],[75.53102,31.94142],[75.53388,31.96033],[75.53759,31.96764],[75.54163,31.96725],[75.54293,31.9766],[75.54652,31.98001],[75.54348,31.98257],[75.5497,31.9879],[75.55073,31.98707],[75.55715,31.99948],[75.54703,32.0077],[75.54321,32.01492],[75.54164,32.02498],[75.53851,32.02613],[75.53803,32.02881],[75.53489,32.03046],[75.55445,32.03216],[75.55564,32.03447],[75.55911,32.03491],[75.5628,32.03773],[75.56768,32.04499],[75.56985,32.05722],[75.57375,32.0677],[75.58297,32.07783],[75.59218,32.08108],[75.60064,32.09417],[75.5976,32.09525],[75.59429,32.11146],[75.58549,32.10478],[75.5826,32.10707],[75.58589,32.11832],[75.58877,32.11897],[75.58886,32.12899],[75.5868,32.13273],[75.58725,32.14102],[75.57684,32.13748],[75.55773,32.13516],[75.55594,32.13259],[75.55261,32.13312],[75.55196,32.13807],[75.54852,32.14024],[75.54285,32.1405],[75.54341,32.14555],[75.51135,32.14907],[75.50884,32.14543],[75.50585,32.14524],[75.5017,32.14928],[75.49908,32.14881],[75.49696,32.15312],[75.48945,32.1533],[75.48689,32.15169],[75.48225,32.1534],[75.48121,32.15408],[75.48322,32.15683],[75.48097,32.1598],[75.47596,32.15963],[75.47491,32.15704],[75.4682,32.15761],[75.46364,32.15481],[75.45784,32.15699],[75.45691,32.15225],[75.45198,32.15102],[75.45206,32.15275],[75.44841,32.15306],[75.44736,32.15047],[75.4405,32.15288],[75.43665,32.14872],[75.43442,32.14899],[75.4354,32.15502],[75.4343,32.15742],[75.4376,32.15744],[75.43772,32.15904],[75.43374,32.16065],[75.43436,32.16445],[75.44124,32.16284],[75.44234,32.16681],[75.42972,32.16889],[75.42431,32.16456],[75.42016,32.16378],[75.41625,32.16571],[75.4151,32.1701],[75.41204,32.17157],[75.41314,32.17702],[75.40301,32.17799],[75.40334,32.18782],[75.40161,32.18759],[75.40008,32.19006],[75.39196,32.18909],[75.38645,32.18719],[75.3822,32.18314],[75.37848,32.18341],[75.37742,32.19079],[75.36665,32.19235],[75.35785,32.19664],[75.34666,32.20661],[75.3379,32.2065],[75.33417,32.20887]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"320","area_level":"District","area_name":"Nadia","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.70091,24.09424],[88.69101,24.09302],[88.68457,24.08909],[88.66897,24.08557],[88.66699,24.08179],[88.67484,24.08349],[88.67923,24.0827],[88.68177,24.0801],[88.68103,24.07757],[88.67378,24.07801],[88.66449,24.07354],[88.65679,24.07334],[88.6507,24.06906],[88.64768,24.06197],[88.64641,24.05145],[88.63205,24.03486],[88.63067,24.02938],[88.63339,24.02382],[88.64332,24.02292],[88.64713,24.02076],[88.65022,24.01429],[88.64989,24.01022],[88.64794,24.00679],[88.64213,24.0038],[88.63409,23.99025],[88.62872,23.98498],[88.62062,23.98225],[88.61587,23.98259],[88.6113,23.98513],[88.59468,24.00161],[88.59129,24.01054],[88.59031,24.02081],[88.58375,24.02867],[88.57878,24.0324],[88.5699,24.03486],[88.56064,24.04024],[88.55351,24.04098],[88.54876,24.0373],[88.54974,24.02278],[88.54246,23.99743],[88.53365,23.99302],[88.51855,23.99548],[88.51194,23.9919],[88.5136,23.9841],[88.52282,23.97057],[88.52487,23.95792],[88.52328,23.95126],[88.5205,23.9508],[88.51192,23.95685],[88.50733,23.94912],[88.49781,23.95071],[88.49513,23.94083],[88.49007,23.93621],[88.48015,23.9357],[88.47055,23.94196],[88.46531,23.93856],[88.45725,23.92797],[88.4613,23.92205],[88.47349,23.91661],[88.49739,23.91096],[88.50703,23.90524],[88.51086,23.89559],[88.50908,23.88864],[88.50394,23.88514],[88.49739,23.88931],[88.48716,23.9018],[88.48286,23.90335],[88.46295,23.88864],[88.47406,23.87048],[88.47646,23.86291],[88.4775,23.85354],[88.47367,23.8397],[88.47373,23.837],[88.47886,23.82809],[88.47662,23.82195],[88.44892,23.82451],[88.44785,23.82696],[88.45666,23.83669],[88.45773,23.84287],[88.45577,23.84913],[88.44824,23.85631],[88.44283,23.85348],[88.43616,23.84361],[88.41858,23.80396],[88.40926,23.8063],[88.41034,23.80872],[88.40602,23.81467],[88.40941,23.81714],[88.40774,23.82183],[88.39386,23.82045],[88.38773,23.8221],[88.38616,23.8148],[88.37762,23.81377],[88.36795,23.81699],[88.36683,23.81861],[88.36783,23.82362],[88.3643,23.82285],[88.36321,23.82576],[88.3565,23.82553],[88.35337,23.82698],[88.35194,23.83052],[88.34844,23.82222],[88.32529,23.82155],[88.31949,23.8231],[88.31792,23.81689],[88.3195,23.80924],[88.31702,23.80734],[88.29747,23.81147],[88.29582,23.81079],[88.29564,23.8056],[88.29395,23.80448],[88.29293,23.80588],[88.27776,23.80722],[88.27775,23.80892],[88.27279,23.80862],[88.26918,23.81229],[88.26667,23.809],[88.26548,23.80987],[88.25975,23.80678],[88.2577,23.8024],[88.25151,23.80092],[88.25,23.80432],[88.23736,23.8048],[88.23473,23.8007],[88.23479,23.7845],[88.24144,23.76835],[88.24069,23.76606],[88.23155,23.75968],[88.2229,23.75842],[88.21557,23.7606],[88.20217,23.76989],[88.19873,23.76868],[88.19491,23.76559],[88.19363,23.76145],[88.1933,23.75074],[88.19532,23.74413],[88.19177,23.7378],[88.2009,23.73015],[88.20369,23.73165],[88.21608,23.72901],[88.22644,23.72384],[88.23245,23.71905],[88.23247,23.71106],[88.22794,23.70779],[88.22677,23.70898],[88.21681,23.70853],[88.20802,23.71195],[88.18301,23.7155],[88.18102,23.71726],[88.16424,23.71326],[88.15147,23.69953],[88.14442,23.68943],[88.13689,23.67327],[88.13434,23.66251],[88.13721,23.65415],[88.14604,23.64705],[88.15214,23.63969],[88.15336,23.63144],[88.16433,23.62347],[88.17868,23.62182],[88.19697,23.62232],[88.21458,23.60788],[88.2236,23.60684],[88.22493,23.61],[88.22917,23.61264],[88.22731,23.61392],[88.22847,23.61614],[88.24744,23.61732],[88.25342,23.61929],[88.25484,23.6167],[88.25758,23.62024],[88.26187,23.61789],[88.26462,23.61411],[88.26764,23.60288],[88.27226,23.59849],[88.27611,23.59635],[88.27747,23.60651],[88.2809,23.60685],[88.2812,23.59607],[88.27979,23.59282],[88.2861,23.58838],[88.28302,23.58363],[88.28459,23.57819],[88.28824,23.57832],[88.30763,23.58832],[88.31031,23.59121],[88.31489,23.59113],[88.31819,23.58673],[88.318,23.58439],[88.32014,23.58352],[88.32134,23.57662],[88.31579,23.57158],[88.3115,23.56873],[88.29536,23.56332],[88.28359,23.56078],[88.27656,23.56177],[88.27366,23.55957],[88.27497,23.55562],[88.27302,23.54838],[88.27484,23.54584],[88.27502,23.53774],[88.29135,23.54015],[88.29314,23.54429],[88.29849,23.54512],[88.30773,23.543],[88.31463,23.54769],[88.31692,23.54625],[88.3154,23.54802],[88.3193,23.55068],[88.32727,23.5474],[88.34674,23.549],[88.35583,23.54318],[88.3556,23.54662],[88.35873,23.54483],[88.35775,23.54016],[88.36019,23.53574],[88.36434,23.53078],[88.36631,23.53204],[88.36916,23.52326],[88.38435,23.5094],[88.3891,23.50074],[88.37524,23.48816],[88.36244,23.48109],[88.36478,23.47294],[88.3633,23.47321],[88.3567,23.46595],[88.36395,23.46125],[88.3683,23.46156],[88.36753,23.45914],[88.36181,23.45948],[88.35711,23.45742],[88.35534,23.45883],[88.34869,23.45921],[88.33903,23.45751],[88.34,23.45106],[88.34552,23.44779],[88.3428,23.43608],[88.34943,23.43598],[88.35167,23.43115],[88.34244,23.42767],[88.3355,23.4206],[88.32901,23.42085],[88.32801,23.41913],[88.3311,23.41476],[88.34158,23.4169],[88.34951,23.41497],[88.35449,23.41173],[88.35671,23.40692],[88.35519,23.39546],[88.3529,23.39066],[88.33611,23.37736],[88.33076,23.37051],[88.32904,23.36471],[88.3302,23.35434],[88.34317,23.34706],[88.33933,23.34004],[88.33095,23.34158],[88.33273,23.3349],[88.32928,23.33022],[88.33521,23.33126],[88.33641,23.32865],[88.33542,23.32622],[88.32736,23.32275],[88.32643,23.31411],[88.32791,23.31105],[88.34101,23.30078],[88.34877,23.29096],[88.3438,23.29048],[88.33435,23.29369],[88.33087,23.28123],[88.34197,23.27927],[88.34971,23.28037],[88.35541,23.26435],[88.35679,23.26433],[88.35958,23.25723],[88.36299,23.2545],[88.35106,23.24069],[88.35416,23.23654],[88.36036,23.2303],[88.36889,23.22762],[88.39396,23.21384],[88.40877,23.21035],[88.41883,23.21199],[88.45084,23.2245],[88.46349,23.22409],[88.46802,23.22108],[88.47211,23.21434],[88.47254,23.20779],[88.45084,23.15173],[88.45065,23.13324],[88.45827,23.12959],[88.49764,23.12939],[88.50214,23.12812],[88.50589,23.12338],[88.50766,23.11564],[88.49908,23.07693],[88.49529,23.07414],[88.49094,23.07332],[88.47522,23.08108],[88.46861,23.08045],[88.45868,23.0641],[88.45422,23.0388],[88.44762,23.02606],[88.44136,23.02027],[88.43285,23.01823],[88.424,23.01875],[88.41998,23.01466],[88.40595,22.9894],[88.40413,22.98233],[88.40418,22.97628],[88.40941,22.95814],[88.40822,22.95298],[88.41183,22.94559],[88.41368,22.94557],[88.41395,22.95262],[88.41851,22.95679],[88.42674,22.95632],[88.45361,22.94919],[88.46368,22.95073],[88.46648,22.94416],[88.47072,22.94226],[88.47058,22.93605],[88.48323,22.93528],[88.49106,22.937],[88.5,22.94131],[88.50454,22.94605],[88.50696,22.94625],[88.51413,22.94089],[88.51142,22.93436],[88.51466,22.93228],[88.52157,22.93401],[88.52511,22.93242],[88.52718,22.93424],[88.53192,22.93158],[88.53277,22.92859],[88.53601,22.93076],[88.5382,22.92814],[88.5475,22.92411],[88.5483,22.92231],[88.55648,22.92269],[88.55891,22.92072],[88.5608,22.92123],[88.56082,22.92002],[88.56433,22.92279],[88.56648,22.91448],[88.57396,22.91288],[88.5761,22.91586],[88.57988,22.91595],[88.57944,22.91315],[88.58177,22.90959],[88.58589,22.9104],[88.58625,22.9122],[88.59137,22.9119],[88.6019,22.90934],[88.60351,22.90611],[88.608,22.9051],[88.61201,22.90979],[88.61381,22.90331],[88.61695,22.89924],[88.61893,22.89905],[88.62056,22.89543],[88.62072,22.88904],[88.6229,22.88857],[88.62365,22.88621],[88.62691,22.88605],[88.62727,22.88345],[88.64368,22.88124],[88.64451,22.88592],[88.64737,22.88486],[88.65057,22.88701],[88.65343,22.88679],[88.65436,22.8844],[88.65666,22.88452],[88.65926,22.87525],[88.66169,22.88133],[88.66818,22.88925],[88.66896,22.89413],[88.66611,22.89777],[88.66458,22.905],[88.65675,22.91129],[88.65522,22.92446],[88.66055,22.92757],[88.66252,22.93355],[88.66166,22.93558],[88.65864,22.93544],[88.65699,22.93866],[88.66657,22.94059],[88.66658,22.94269],[88.66929,22.94317],[88.67564,22.94028],[88.67958,22.94441],[88.67604,22.9474],[88.66838,22.94734],[88.66536,22.95053],[88.66639,22.96354],[88.66398,22.96505],[88.66305,22.98165],[88.66694,22.99224],[88.67047,22.9955],[88.67464,22.99618],[88.67465,22.99898],[88.67752,22.99912],[88.67925,23.00129],[88.67885,23.00749],[88.67667,23.00699],[88.67561,23.01561],[88.68005,23.01466],[88.68787,23.02617],[88.68682,23.03249],[88.68412,23.03672],[88.6862,23.03946],[88.68303,23.04062],[88.68113,23.04472],[88.68266,23.04735],[88.68116,23.04789],[88.68246,23.04934],[88.68325,23.04792],[88.68481,23.04902],[88.68493,23.05132],[88.6822,23.0515],[88.6823,23.05328],[88.686,23.05335],[88.68633,23.05682],[88.68804,23.05679],[88.69107,23.06234],[88.69289,23.06167],[88.69329,23.06408],[88.69564,23.06512],[88.69349,23.06808],[88.68693,23.06749],[88.68426,23.07021],[88.6829,23.06939],[88.68192,23.07668],[88.68303,23.07866],[88.68157,23.07946],[88.67722,23.09233],[88.67423,23.09523],[88.68118,23.09739],[88.68582,23.1057],[88.68281,23.10758],[88.68344,23.10897],[88.69032,23.10855],[88.69455,23.11032],[88.69529,23.11621],[88.69301,23.12012],[88.69697,23.12587],[88.70025,23.12719],[88.69982,23.12964],[88.70476,23.13576],[88.69395,23.157],[88.69703,23.15734],[88.69601,23.16201],[88.69745,23.16214],[88.69732,23.16583],[88.70012,23.16901],[88.71155,23.16717],[88.71217,23.16903],[88.70924,23.17233],[88.71124,23.17153],[88.71218,23.17474],[88.71746,23.17452],[88.71611,23.17539],[88.71663,23.18061],[88.71463,23.17563],[88.71381,23.17687],[88.71649,23.18466],[88.71921,23.1842],[88.71953,23.1874],[88.7157,23.19035],[88.71584,23.20657],[88.71445,23.20912],[88.71815,23.21055],[88.71385,23.2154],[88.70382,23.21382],[88.70221,23.21541],[88.71106,23.22237],[88.71122,23.22593],[88.70817,23.23211],[88.71311,23.23797],[88.71984,23.23363],[88.72095,23.23446],[88.72045,23.23864],[88.72297,23.23946],[88.73026,23.23926],[88.73391,23.23577],[88.73843,23.23448],[88.74739,23.234],[88.75423,23.2357],[88.75189,23.24019],[88.74733,23.24395],[88.73484,23.2475],[88.72519,23.25332],[88.71889,23.2548],[88.72441,23.27162],[88.7232,23.27329],[88.71437,23.27531],[88.71138,23.27822],[88.7119,23.28537],[88.70895,23.28974],[88.70531,23.29176],[88.69764,23.29174],[88.69628,23.302],[88.71035,23.31285],[88.71264,23.31074],[88.70739,23.30823],[88.70679,23.30399],[88.7146,23.30584],[88.71995,23.30326],[88.719,23.2979],[88.72541,23.29869],[88.72741,23.30291],[88.72695,23.31416],[88.72476,23.31796],[88.73042,23.31958],[88.73164,23.3189],[88.7287,23.31264],[88.7318,23.30803],[88.73926,23.30489],[88.7453,23.30782],[88.74588,23.31454],[88.74967,23.32147],[88.74562,23.32432],[88.7437,23.32791],[88.73266,23.32807],[88.73526,23.33806],[88.73905,23.34345],[88.73694,23.34615],[88.73318,23.34704],[88.73203,23.35199],[88.73434,23.35328],[88.7415,23.34931],[88.74595,23.34901],[88.74651,23.35059],[88.74375,23.35451],[88.74638,23.35633],[88.74572,23.35906],[88.74771,23.362],[88.75816,23.35994],[88.76543,23.36788],[88.76369,23.37201],[88.75854,23.37411],[88.76048,23.37605],[88.75877,23.37931],[88.76087,23.38063],[88.76136,23.38443],[88.76247,23.38441],[88.76133,23.38628],[88.76289,23.38721],[88.7603,23.38673],[88.7596,23.38456],[88.75691,23.3862],[88.75639,23.38841],[88.75294,23.38912],[88.75439,23.39508],[88.74994,23.39673],[88.74926,23.40055],[88.75113,23.40276],[88.75408,23.40253],[88.76123,23.40843],[88.76039,23.41129],[88.75899,23.41054],[88.75799,23.4118],[88.75847,23.41312],[88.75456,23.41419],[88.75444,23.41638],[88.75806,23.42539],[88.76018,23.42417],[88.7613,23.42659],[88.75966,23.42905],[88.76227,23.43157],[88.76101,23.43305],[88.76436,23.44242],[88.76317,23.44276],[88.76428,23.44586],[88.76296,23.44585],[88.7648,23.44649],[88.76431,23.44821],[88.76872,23.44843],[88.77032,23.44625],[88.77203,23.4488],[88.77328,23.44832],[88.7718,23.44658],[88.77333,23.44405],[88.77831,23.44358],[88.77849,23.44192],[88.78223,23.44131],[88.77883,23.43863],[88.77912,23.43729],[88.77956,23.43838],[88.7828,23.43721],[88.78116,23.43825],[88.78231,23.44037],[88.78434,23.4384],[88.78319,23.44185],[88.78507,23.4448],[88.78733,23.44329],[88.78757,23.44464],[88.78933,23.44423],[88.78938,23.44266],[88.78676,23.44205],[88.78873,23.4414],[88.79041,23.44139],[88.78991,23.44392],[88.79254,23.44383],[88.79304,23.4422],[88.79532,23.44302],[88.79333,23.44414],[88.79447,23.44748],[88.79001,23.44912],[88.79196,23.45129],[88.79062,23.45348],[88.79283,23.45538],[88.79085,23.45555],[88.78953,23.4591],[88.79285,23.46105],[88.79049,23.46019],[88.79196,23.46346],[88.78919,23.46428],[88.7899,23.46574],[88.78835,23.46586],[88.78957,23.46668],[88.78798,23.46688],[88.78731,23.46908],[88.7909,23.4719],[88.78974,23.47293],[88.79412,23.48101],[88.79936,23.48218],[88.79952,23.48515],[88.80141,23.48581],[88.79456,23.48558],[88.7985,23.49133],[88.80051,23.49113],[88.79831,23.4927],[88.79795,23.4955],[88.80079,23.49712],[88.79275,23.50287],[88.78971,23.50189],[88.7873,23.4975],[88.7845,23.49717],[88.78354,23.5008],[88.78765,23.50599],[88.78595,23.50724],[88.78638,23.50494],[88.78391,23.50227],[88.77204,23.49779],[88.76825,23.49013],[88.7685,23.48828],[88.77501,23.48239],[88.77489,23.47981],[88.7679,23.48086],[88.76321,23.48879],[88.76068,23.48992],[88.75787,23.48886],[88.75683,23.48618],[88.76171,23.48025],[88.76091,23.47839],[88.75367,23.47896],[88.7463,23.48294],[88.74335,23.47914],[88.7435,23.48132],[88.74142,23.47968],[88.74439,23.48302],[88.74269,23.4866],[88.7371,23.49207],[88.72957,23.4964],[88.7312,23.49832],[88.7304,23.50373],[88.72513,23.51183],[88.72337,23.51295],[88.71879,23.51193],[88.71492,23.50853],[88.70619,23.51705],[88.69947,23.51553],[88.69575,23.51731],[88.69643,23.52567],[88.69172,23.52454],[88.69117,23.53126],[88.68423,23.52933],[88.68612,23.53291],[88.68618,23.5378],[88.67834,23.54583],[88.67371,23.54883],[88.66773,23.54581],[88.66334,23.54732],[88.65978,23.54937],[88.66019,23.55284],[88.65425,23.55615],[88.65358,23.55976],[88.65516,23.56302],[88.64831,23.58043],[88.6509,23.5836],[88.65056,23.58537],[88.64376,23.58933],[88.6457,23.58942],[88.6441,23.59154],[88.63876,23.59074],[88.63827,23.59758],[88.64247,23.60082],[88.64343,23.60693],[88.64603,23.60803],[88.64553,23.60928],[88.64129,23.60892],[88.64053,23.61109],[88.63823,23.61074],[88.6371,23.60674],[88.63317,23.60924],[88.62945,23.60909],[88.62772,23.60654],[88.62494,23.60688],[88.62157,23.60475],[88.62104,23.60263],[88.61817,23.60176],[88.61379,23.60336],[88.60735,23.60019],[88.60493,23.60027],[88.60518,23.60173],[88.60727,23.60296],[88.60838,23.60186],[88.60909,23.60439],[88.60151,23.60685],[88.60627,23.61036],[88.5979,23.60627],[88.59654,23.60447],[88.59719,23.60195],[88.5837,23.60398],[88.58007,23.60297],[88.58126,23.60972],[88.58483,23.61315],[88.58532,23.61654],[88.58821,23.61557],[88.59409,23.6176],[88.59241,23.62654],[88.59498,23.62773],[88.59281,23.62918],[88.59426,23.63157],[88.59264,23.63494],[88.59376,23.64081],[88.57556,23.63876],[88.57107,23.63601],[88.56217,23.63709],[88.56337,23.64546],[88.55821,23.64915],[88.56275,23.65764],[88.56626,23.65685],[88.56961,23.65999],[88.56943,23.66606],[88.57382,23.66694],[88.57221,23.67375],[88.57441,23.67523],[88.57408,23.68097],[88.5729,23.68508],[88.56753,23.68618],[88.56875,23.6893],[88.56787,23.70128],[88.56451,23.71133],[88.56473,23.71307],[88.56788,23.71482],[88.56904,23.72757],[88.57423,23.72888],[88.57369,23.73297],[88.5766,23.73297],[88.57528,23.73824],[88.57367,23.7381],[88.57429,23.73371],[88.57201,23.73375],[88.57213,23.73944],[88.57429,23.73968],[88.57241,23.74758],[88.57026,23.74643],[88.57008,23.74808],[88.57413,23.7496],[88.57782,23.75745],[88.58041,23.75789],[88.57957,23.7747],[88.5716,23.77508],[88.56503,23.77729],[88.5598,23.78089],[88.56074,23.78402],[88.55604,23.78421],[88.5593,23.78598],[88.57127,23.78303],[88.57813,23.78658],[88.5827,23.79114],[88.58096,23.79509],[88.58164,23.79728],[88.58736,23.79659],[88.59162,23.79783],[88.59295,23.79924],[88.59239,23.80448],[88.5962,23.80489],[88.59605,23.80639],[88.59361,23.80621],[88.59316,23.80796],[88.58761,23.81047],[88.58876,23.81278],[88.58616,23.81276],[88.58672,23.81109],[88.58475,23.81229],[88.58515,23.81365],[88.58952,23.81361],[88.59047,23.81085],[88.59406,23.81121],[88.59446,23.80885],[88.59507,23.81068],[88.59846,23.8108],[88.60199,23.81632],[88.59966,23.82183],[88.58839,23.82778],[88.58652,23.83118],[88.5872,23.84392],[88.58858,23.84829],[88.59152,23.85112],[88.59109,23.85302],[88.58427,23.85505],[88.57838,23.85067],[88.57644,23.85496],[88.57798,23.85771],[88.57564,23.86155],[88.58247,23.8625],[88.58269,23.86674],[88.58471,23.86618],[88.5843,23.86951],[88.58622,23.86932],[88.58749,23.87145],[88.59382,23.86916],[88.5991,23.86948],[88.60805,23.86235],[88.60995,23.86521],[88.60899,23.87275],[88.61644,23.87651],[88.62482,23.87511],[88.62552,23.87236],[88.62396,23.86788],[88.62641,23.86494],[88.63229,23.86649],[88.63773,23.87139],[88.64208,23.86808],[88.6458,23.8697],[88.65151,23.86657],[88.65399,23.86725],[88.65349,23.86547],[88.65461,23.86872],[88.66065,23.86862],[88.66099,23.8707],[88.66759,23.86944],[88.66342,23.878],[88.66428,23.88242],[88.6754,23.88387],[88.68294,23.88862],[88.68839,23.90148],[88.70042,23.89885],[88.70076,23.90108],[88.70434,23.89917],[88.70555,23.90235],[88.70329,23.8999],[88.7024,23.90351],[88.7012,23.90232],[88.70138,23.90461],[88.69996,23.905],[88.70386,23.90719],[88.70136,23.90645],[88.70176,23.90821],[88.69974,23.90803],[88.69933,23.91018],[88.70092,23.91229],[88.70473,23.91257],[88.7064,23.91627],[88.713,23.9125],[88.71507,23.91411],[88.71499,23.91603],[88.72295,23.91632],[88.72488,23.91283],[88.73059,23.91361],[88.72982,23.91091],[88.7334,23.91098],[88.733,23.9132],[88.73544,23.91462],[88.73289,23.92273],[88.73555,23.92292],[88.73418,23.92827],[88.73716,23.92905],[88.73493,23.93292],[88.73656,23.93352],[88.74027,23.93022],[88.74343,23.93017],[88.74002,23.93829],[88.74156,23.93891],[88.73877,23.94954],[88.74249,23.95103],[88.74025,23.95392],[88.73747,23.95336],[88.73358,23.95708],[88.73512,23.95875],[88.73249,23.96113],[88.73573,23.96343],[88.73705,23.97043],[88.73627,23.97907],[88.73824,23.98299],[88.74417,23.9852],[88.75061,23.98523],[88.76871,23.98146],[88.76874,23.98521],[88.76249,23.99657],[88.7621,24.00411],[88.76019,24.00606],[88.75259,24.00664],[88.74638,24.00446],[88.74502,24.00553],[88.73645,23.99564],[88.7329,23.99482],[88.72905,23.99611],[88.73164,24.01189],[88.73468,24.01749],[88.74899,24.02216],[88.75749,24.0321],[88.74204,24.03285],[88.74185,24.03525],[88.72475,24.04161],[88.72464,24.0477],[88.74111,24.04855],[88.74163,24.05712],[88.73373,24.06617],[88.7281,24.06409],[88.72546,24.06544],[88.72345,24.06867],[88.72366,24.07302],[88.70401,24.08969],[88.70091,24.09424]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"321","area_level":"District","area_name":"Purulia","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.8204,23.68782],[86.80581,23.69586],[86.79866,23.68876],[86.78891,23.68783],[86.77076,23.68139],[86.74734,23.67879],[86.7444,23.68162],[86.74191,23.69027],[86.73906,23.69423],[86.72556,23.69844],[86.71495,23.69888],[86.70533,23.69714],[86.69815,23.69361],[86.6756,23.68709],[86.65643,23.68429],[86.63379,23.67517],[86.61157,23.67559],[86.59757,23.67376],[86.59601,23.67048],[86.59897,23.6655],[86.58081,23.65548],[86.57444,23.64805],[86.55662,23.63994],[86.5465,23.63764],[86.5354,23.63124],[86.5252,23.63018],[86.51191,23.63171],[86.49203,23.63828],[86.47955,23.63553],[86.47038,23.6305],[86.46181,23.6303],[86.45696,23.62609],[86.45417,23.61954],[86.4498,23.62071],[86.44643,23.61872],[86.4458,23.61529],[86.44885,23.6017],[86.44708,23.59814],[86.43618,23.59903],[86.43294,23.59448],[86.42123,23.5901],[86.41659,23.57839],[86.41356,23.57571],[86.41045,23.57586],[86.40771,23.57877],[86.40247,23.57711],[86.39946,23.57859],[86.38816,23.57395],[86.39083,23.56674],[86.38845,23.56364],[86.38938,23.5612],[86.38401,23.55917],[86.37856,23.54875],[86.37097,23.54262],[86.37163,23.54057],[86.36726,23.54019],[86.36854,23.53525],[86.36511,23.53269],[86.36828,23.52815],[86.36458,23.52172],[86.37126,23.51748],[86.37519,23.51034],[86.36868,23.5025],[86.36357,23.50161],[86.36644,23.49627],[86.36242,23.48425],[86.36544,23.48028],[86.37061,23.48449],[86.37329,23.48298],[86.3788,23.48479],[86.3773,23.48057],[86.37946,23.47364],[86.36409,23.47169],[86.36306,23.46489],[86.35736,23.46073],[86.35942,23.45709],[86.3597,23.45225],[86.35593,23.45038],[86.34972,23.45155],[86.35146,23.44209],[86.34035,23.43954],[86.3368,23.44018],[86.33644,23.44283],[86.33404,23.44463],[86.33479,23.44658],[86.32057,23.44329],[86.31786,23.43983],[86.31534,23.44004],[86.30577,23.43482],[86.30606,23.42958],[86.30929,23.42818],[86.31185,23.42445],[86.31448,23.42668],[86.31757,23.42647],[86.31572,23.42345],[86.31776,23.41641],[86.31187,23.41439],[86.31055,23.41136],[86.30007,23.41276],[86.29094,23.41759],[86.28959,23.42473],[86.291,23.42635],[86.28949,23.42906],[86.28162,23.42855],[86.27568,23.43038],[86.27183,23.42766],[86.26409,23.43077],[86.25658,23.43009],[86.25221,23.42677],[86.26025,23.41782],[86.25915,23.41331],[86.25148,23.41084],[86.24739,23.41114],[86.24561,23.4139],[86.24886,23.42247],[86.24399,23.42375],[86.23431,23.42089],[86.22987,23.43082],[86.23245,23.43253],[86.23146,23.43598],[86.23655,23.44488],[86.24237,23.44653],[86.24216,23.45112],[86.24747,23.45625],[86.24734,23.45838],[86.24557,23.45932],[86.23496,23.46055],[86.23262,23.46224],[86.23031,23.45132],[86.23075,23.44485],[86.22838,23.44288],[86.21573,23.44815],[86.20678,23.45],[86.20571,23.45368],[86.19889,23.45334],[86.19709,23.45553],[86.19589,23.45439],[86.19503,23.45789],[86.19144,23.46018],[86.18706,23.45809],[86.18172,23.46008],[86.18203,23.46697],[86.17935,23.46761],[86.17829,23.46984],[86.16034,23.46591],[86.15957,23.46884],[86.14883,23.46526],[86.14741,23.46841],[86.149,23.4752],[86.15156,23.47433],[86.15371,23.47574],[86.15361,23.47893],[86.15135,23.4822],[86.15756,23.48864],[86.15961,23.49344],[86.15741,23.50064],[86.16057,23.50367],[86.16239,23.50849],[86.1541,23.51273],[86.14863,23.51935],[86.15031,23.52523],[86.15537,23.52962],[86.15749,23.53701],[86.15805,23.54147],[86.15231,23.54912],[86.15282,23.55213],[86.15835,23.55998],[86.14832,23.56081],[86.14678,23.56169],[86.14724,23.56386],[86.14328,23.56405],[86.13927,23.55927],[86.13662,23.56285],[86.13125,23.55929],[86.13154,23.56276],[86.12693,23.56592],[86.12922,23.56774],[86.12667,23.5694],[86.12394,23.56927],[86.12063,23.56618],[86.11786,23.56735],[86.11584,23.5661],[86.10849,23.5697],[86.10598,23.56596],[86.09907,23.56651],[86.09393,23.56324],[86.08512,23.56683],[86.08087,23.56568],[86.07274,23.56884],[86.07743,23.57921],[86.0657,23.57896],[86.0556,23.58294],[86.05216,23.58615],[86.04206,23.58688],[86.04013,23.57526],[86.0375,23.57651],[86.03075,23.572],[86.02467,23.56205],[86.01782,23.55959],[86.01628,23.54732],[86.02765,23.54211],[86.02818,23.54052],[86.02366,23.53692],[86.02841,23.53259],[86.02895,23.52765],[86.03387,23.52267],[86.03468,23.51593],[86.03924,23.51504],[86.03775,23.51066],[86.03941,23.50466],[86.03819,23.49778],[86.05671,23.49508],[86.05793,23.49046],[86.05472,23.49017],[86.05384,23.48706],[86.04396,23.48432],[86.03726,23.48592],[86.03146,23.48365],[86.02298,23.48651],[86.01673,23.48449],[86.00866,23.48431],[86.00719,23.48272],[86.00537,23.4835],[86.00322,23.48177],[85.99252,23.48033],[85.98897,23.47831],[85.98062,23.47815],[85.97751,23.47604],[85.96277,23.47624],[85.95711,23.47441],[85.95499,23.47102],[85.93283,23.47291],[85.92017,23.47724],[85.91524,23.48187],[85.91204,23.48084],[85.9072,23.48371],[85.8863,23.48205],[85.88715,23.48431],[85.88273,23.48095],[85.87546,23.47985],[85.87364,23.47673],[85.87,23.47495],[85.868,23.46545],[85.86249,23.46152],[85.86573,23.45991],[85.86363,23.45861],[85.8649,23.4547],[85.86193,23.44238],[85.86188,23.43906],[85.86418,23.43569],[85.86389,23.43136],[85.87665,23.42967],[85.88258,23.43058],[85.88663,23.42513],[85.88029,23.42239],[85.8896,23.414],[85.89144,23.41022],[85.8875,23.40813],[85.8869,23.40434],[85.89866,23.40502],[85.90279,23.39833],[85.89855,23.39355],[85.8883,23.39674],[85.87081,23.38881],[85.87082,23.38607],[85.87843,23.38168],[85.87476,23.37678],[85.87517,23.35983],[85.88307,23.35078],[85.87258,23.34243],[85.86625,23.34152],[85.86548,23.33912],[85.8682,23.32978],[85.86301,23.32775],[85.85945,23.32206],[85.85069,23.31664],[85.84747,23.30969],[85.83838,23.3065],[85.82863,23.28228],[85.81972,23.26888],[85.82358,23.25905],[85.83861,23.24683],[85.83626,23.23794],[85.83969,23.22985],[85.83658,23.22053],[85.85135,23.22234],[85.85878,23.22061],[85.863,23.22255],[85.86753,23.21929],[85.88302,23.19737],[85.88177,23.16961],[85.89454,23.15513],[85.90866,23.15397],[85.91411,23.14913],[85.92771,23.14857],[85.9289,23.15105],[85.93695,23.15024],[85.94269,23.15304],[85.95137,23.15173],[85.95761,23.16105],[85.97596,23.15479],[85.99244,23.15194],[86.00116,23.14835],[86.01345,23.14791],[86.0178,23.15471],[86.01999,23.15279],[86.01831,23.14814],[86.02455,23.14428],[86.02907,23.14607],[86.03464,23.14444],[86.03754,23.14711],[86.04452,23.14424],[86.04606,23.14171],[86.04593,23.13599],[86.05591,23.12274],[86.05411,23.11269],[86.05123,23.1095],[86.05126,23.10553],[86.0757,23.09464],[86.09005,23.09471],[86.09062,23.08943],[86.09802,23.0842],[86.10224,23.08653],[86.11023,23.08429],[86.11519,23.08566],[86.12071,23.08483],[86.12716,23.08692],[86.13394,23.08336],[86.13604,23.07724],[86.14626,23.07496],[86.14366,23.06774],[86.14404,23.06351],[86.14177,23.06012],[86.14198,23.05425],[86.15099,23.05154],[86.15364,23.0481],[86.15804,23.04618],[86.15602,23.03117],[86.16305,23.02829],[86.16544,23.03238],[86.16774,23.03256],[86.16639,23.02947],[86.17049,23.0264],[86.17008,23.02244],[86.17615,23.02028],[86.17898,23.02077],[86.18127,23.0147],[86.18121,23.01003],[86.18503,23.00538],[86.2084,23.00651],[86.2067,23.00028],[86.22269,22.9995],[86.22877,22.99512],[86.24171,22.99609],[86.24306,22.9981],[86.24535,22.9982],[86.2485,22.99491],[86.26056,22.99859],[86.26585,22.99798],[86.26824,22.99984],[86.26787,23.00116],[86.27717,23.00738],[86.28418,23.00692],[86.29212,23.01298],[86.29621,23.00968],[86.29938,23.00979],[86.30374,23.016],[86.30469,23.0153],[86.30224,23.01006],[86.30909,23.00705],[86.3089,23.00342],[86.31612,23.00007],[86.31979,23.0006],[86.32159,22.99744],[86.32593,22.9949],[86.33953,22.98981],[86.34061,22.99355],[86.3437,22.99649],[86.34764,22.99662],[86.35453,22.99297],[86.35443,22.99934],[86.3639,22.99958],[86.37178,22.99674],[86.37275,22.99815],[86.38356,22.99428],[86.38502,22.99526],[86.38541,22.98945],[86.38771,22.98531],[86.3948,22.98022],[86.39855,22.97989],[86.40108,22.98086],[86.40689,22.98972],[86.4084,22.98906],[86.41006,22.99113],[86.41329,22.99081],[86.41716,22.9932],[86.41733,22.99705],[86.41972,22.99678],[86.41825,22.99921],[86.41926,23.00027],[86.42531,22.99657],[86.4423,22.99323],[86.44642,22.98824],[86.45085,22.98835],[86.45155,22.99024],[86.47051,22.98889],[86.47573,22.99175],[86.48037,22.98982],[86.48706,22.99243],[86.49769,22.99204],[86.50115,22.99359],[86.50416,22.98611],[86.51378,22.97749],[86.50862,22.97304],[86.52119,22.97071],[86.52619,22.97261],[86.52684,22.97549],[86.52382,22.97713],[86.52814,22.98064],[86.53991,22.98458],[86.54561,22.99028],[86.54788,22.98694],[86.5475,22.98232],[86.55056,22.97799],[86.54408,22.96973],[86.54478,22.96569],[86.54037,22.9668],[86.5316,22.96521],[86.53004,22.95215],[86.52598,22.94761],[86.52141,22.95006],[86.51921,22.94824],[86.5127,22.94776],[86.50784,22.95088],[86.50258,22.95187],[86.5029,22.94897],[86.50078,22.94594],[86.49524,22.94685],[86.49454,22.94326],[86.48913,22.93724],[86.4853,22.94277],[86.47727,22.94609],[86.47793,22.94936],[86.47632,22.95118],[86.47098,22.94893],[86.46912,22.94451],[86.46535,22.94546],[86.45998,22.93506],[86.45436,22.93198],[86.45131,22.93325],[86.4468,22.93071],[86.44301,22.93067],[86.44201,22.92797],[86.43534,22.92519],[86.4362,22.92232],[86.44048,22.91949],[86.44151,22.91629],[86.45297,22.90246],[86.46543,22.90239],[86.46714,22.89993],[86.46463,22.89434],[86.46004,22.89208],[86.45625,22.88577],[86.45343,22.88587],[86.45481,22.87858],[86.45198,22.87292],[86.45077,22.86154],[86.43969,22.86426],[86.43497,22.86051],[86.43588,22.85912],[86.4334,22.85336],[86.43555,22.83592],[86.43885,22.83102],[86.42848,22.81934],[86.42252,22.80998],[86.42525,22.80654],[86.42339,22.80216],[86.42543,22.7991],[86.42256,22.79687],[86.42341,22.79217],[86.42074,22.79278],[86.41881,22.79068],[86.41654,22.79153],[86.41622,22.78886],[86.41868,22.78752],[86.41761,22.78368],[86.42148,22.78014],[86.42581,22.77975],[86.4301,22.77469],[86.43748,22.77126],[86.44842,22.76193],[86.45793,22.76336],[86.46018,22.76191],[86.46968,22.7521],[86.47364,22.7397],[86.48173,22.7302],[86.48154,22.72786],[86.49321,22.72639],[86.49468,22.72328],[86.49768,22.72287],[86.50001,22.72046],[86.51133,22.705],[86.51345,22.70717],[86.51151,22.71197],[86.51293,22.71662],[86.52033,22.71523],[86.5238,22.71938],[86.53513,22.71725],[86.5442,22.7216],[86.55801,22.71111],[86.58112,22.74824],[86.58671,22.75325],[86.59288,22.76236],[86.59227,22.7637],[86.59396,22.76399],[86.5941,22.76856],[86.60194,22.78105],[86.60336,22.78914],[86.59807,22.79621],[86.61131,22.79862],[86.61145,22.80356],[86.60898,22.80674],[86.61289,22.81088],[86.61399,22.8157],[86.61807,22.82141],[86.61728,22.82443],[86.63284,22.82407],[86.64008,22.82847],[86.64791,22.83893],[86.65611,22.8365],[86.66222,22.85228],[86.67314,22.85356],[86.67721,22.86168],[86.68616,22.86184],[86.70176,22.87176],[86.70489,22.87558],[86.70681,22.88723],[86.70131,22.89016],[86.70335,22.89366],[86.70679,22.89357],[86.70508,22.89691],[86.70579,22.89937],[86.69997,22.90848],[86.7019,22.91078],[86.69743,22.91673],[86.69664,22.91978],[86.69803,22.92348],[86.69591,22.92576],[86.69332,22.92581],[86.69073,22.9315],[86.69817,22.94104],[86.70248,22.95282],[86.70413,22.95211],[86.70766,22.95468],[86.71247,22.96258],[86.71392,22.96639],[86.7105,22.96605],[86.71214,22.97134],[86.71724,22.97528],[86.71889,22.98443],[86.72026,22.98519],[86.7188,22.9874],[86.71966,22.99117],[86.72836,22.99862],[86.72928,23.01596],[86.73221,23.0178],[86.7357,23.02632],[86.72728,23.02972],[86.72562,23.03457],[86.73683,23.0402],[86.73915,23.0429],[86.73818,23.04583],[86.73218,23.04491],[86.73063,23.04842],[86.73493,23.05779],[86.73824,23.05937],[86.74055,23.06317],[86.74221,23.06953],[86.74675,23.07398],[86.74763,23.08152],[86.7521,23.08841],[86.75061,23.09591],[86.74824,23.09709],[86.74835,23.09846],[86.75118,23.09872],[86.75018,23.09998],[86.74629,23.10308],[86.73875,23.10278],[86.73035,23.10496],[86.7242,23.11565],[86.71729,23.12203],[86.72175,23.12224],[86.72783,23.13121],[86.73121,23.13334],[86.73077,23.14057],[86.73274,23.14836],[86.7377,23.15499],[86.73909,23.16208],[86.74485,23.16767],[86.75234,23.16558],[86.75431,23.16887],[86.75149,23.17289],[86.75602,23.17191],[86.75902,23.17666],[86.75974,23.18128],[86.75807,23.18183],[86.75863,23.19039],[86.75725,23.19323],[86.75851,23.1976],[86.76873,23.20347],[86.77976,23.20038],[86.78324,23.20195],[86.78431,23.20452],[86.78745,23.20454],[86.79006,23.20903],[86.78893,23.2101],[86.79084,23.21121],[86.78734,23.21589],[86.78511,23.22253],[86.7822,23.22385],[86.78245,23.22944],[86.77499,23.23505],[86.77409,23.23766],[86.77153,23.23785],[86.77022,23.24115],[86.77488,23.24513],[86.77724,23.24416],[86.77784,23.24112],[86.77978,23.2427],[86.78192,23.2479],[86.7807,23.25068],[86.78144,23.2551],[86.78456,23.26051],[86.78064,23.26433],[86.78186,23.26965],[86.78034,23.27282],[86.78384,23.27568],[86.78726,23.27626],[86.78001,23.28619],[86.77895,23.29567],[86.79187,23.29899],[86.78653,23.30392],[86.78509,23.30933],[86.78731,23.3232],[86.78604,23.33026],[86.78891,23.34013],[86.79546,23.34173],[86.79675,23.34418],[86.79915,23.34104],[86.80536,23.34304],[86.81018,23.34072],[86.81011,23.3456],[86.81194,23.34808],[86.81114,23.35325],[86.81555,23.35822],[86.81646,23.36149],[86.81854,23.36012],[86.82433,23.36146],[86.83201,23.35802],[86.83564,23.36375],[86.835,23.36947],[86.83742,23.3745],[86.8308,23.3795],[86.83677,23.38447],[86.84177,23.38144],[86.84581,23.38167],[86.85165,23.38518],[86.85012,23.39025],[86.85428,23.39628],[86.84779,23.40542],[86.85066,23.41396],[86.84989,23.41944],[86.85631,23.42132],[86.85989,23.42761],[86.86288,23.42651],[86.86362,23.43149],[86.86579,23.43427],[86.86606,23.43602],[86.86206,23.43818],[86.86199,23.43965],[86.85536,23.44175],[86.84586,23.43589],[86.84089,23.43969],[86.83712,23.4387],[86.83633,23.43453],[86.8257,23.43663],[86.82495,23.44078],[86.82693,23.44741],[86.82327,23.45127],[86.82435,23.45473],[86.82339,23.45773],[86.82702,23.46111],[86.82707,23.46634],[86.83578,23.46473],[86.84633,23.4665],[86.85706,23.46608],[86.86558,23.46199],[86.87275,23.47072],[86.8705,23.47563],[86.87229,23.48358],[86.87105,23.48642],[86.87312,23.49094],[86.8745,23.48925],[86.88163,23.48911],[86.88055,23.4907],[86.88244,23.49745],[86.89278,23.49423],[86.90621,23.49304],[86.90395,23.49875],[86.89774,23.5032],[86.897,23.50976],[86.89441,23.51161],[86.89377,23.5191],[86.89711,23.53048],[86.89588,23.53435],[86.8913,23.53831],[86.88445,23.5367],[86.88256,23.53768],[86.88616,23.55135],[86.88555,23.55726],[86.88334,23.55788],[86.87843,23.55565],[86.88018,23.5584],[86.87941,23.56712],[86.86438,23.56684],[86.86626,23.57035],[86.87036,23.57012],[86.88113,23.57549],[86.88323,23.57189],[86.89215,23.57499],[86.88774,23.58275],[86.89129,23.59156],[86.88837,23.60234],[86.89486,23.60587],[86.89518,23.61302],[86.89678,23.61402],[86.89701,23.61718],[86.89444,23.626],[86.89595,23.62635],[86.89515,23.62799],[86.90198,23.63016],[86.90236,23.63814],[86.89421,23.65217],[86.88794,23.65566],[86.87786,23.65645],[86.86398,23.66169],[86.85812,23.6698],[86.85799,23.67475],[86.84775,23.68321],[86.82853,23.68426],[86.8204,23.68782]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"322","area_level":"District","area_name":"Bokaro","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.68026,23.98346],[85.67632,23.9867],[85.67503,23.97539],[85.66753,23.97507],[85.67207,23.96837],[85.67168,23.96478],[85.66919,23.96259],[85.66985,23.96084],[85.66713,23.95712],[85.65882,23.95399],[85.64932,23.95647],[85.64583,23.95516],[85.64735,23.94614],[85.6524,23.94467],[85.65425,23.93919],[85.65849,23.93755],[85.66003,23.93471],[85.64747,23.92949],[85.64627,23.92569],[85.63759,23.92311],[85.63169,23.91832],[85.62776,23.9178],[85.62687,23.91491],[85.62441,23.91529],[85.62425,23.91287],[85.6171,23.90857],[85.61234,23.90166],[85.6136,23.8983],[85.61135,23.89321],[85.61215,23.88755],[85.61589,23.88744],[85.61547,23.88547],[85.61991,23.88043],[85.61737,23.87328],[85.61365,23.8694],[85.60724,23.8676],[85.60308,23.86865],[85.59321,23.86558],[85.59119,23.86122],[85.58371,23.85328],[85.58834,23.85011],[85.59174,23.84997],[85.59202,23.84515],[85.59564,23.84121],[85.59991,23.83155],[85.60006,23.82704],[85.5967,23.81933],[85.6001,23.81073],[85.61251,23.80409],[85.61182,23.80018],[85.61435,23.79766],[85.62421,23.796],[85.6287,23.80261],[85.62966,23.80156],[85.6304,23.80293],[85.63558,23.80288],[85.64256,23.82152],[85.6518,23.82252],[85.65518,23.81342],[85.65071,23.8095],[85.64994,23.80567],[85.65154,23.79804],[85.65025,23.79463],[85.6525,23.79213],[85.64816,23.79002],[85.64602,23.78663],[85.64093,23.78569],[85.63829,23.78062],[85.63196,23.77616],[85.63248,23.77363],[85.62923,23.76769],[85.61771,23.76781],[85.61561,23.76525],[85.61597,23.74126],[85.62177,23.74134],[85.62217,23.72224],[85.61764,23.71055],[85.6108,23.70723],[85.60983,23.7001],[85.61716,23.69395],[85.61483,23.67436],[85.61553,23.6325],[85.62045,23.63209],[85.62552,23.62873],[85.63202,23.61795],[85.65317,23.60832],[85.66484,23.62236],[85.66321,23.62918],[85.66943,23.63102],[85.6713,23.63644],[85.6783,23.63614],[85.67714,23.6438],[85.67873,23.64687],[85.68376,23.64744],[85.69088,23.64148],[85.70011,23.64623],[85.70551,23.63676],[85.71049,23.63258],[85.71327,23.63257],[85.72257,23.64136],[85.72822,23.65415],[85.73871,23.65309],[85.74324,23.65468],[85.74817,23.66025],[85.75538,23.66256],[85.7552,23.66688],[85.7584,23.67461],[85.75862,23.68336],[85.76189,23.68606],[85.76804,23.68069],[85.77068,23.67398],[85.77153,23.65845],[85.76912,23.65336],[85.77494,23.64808],[85.7829,23.64785],[85.78444,23.64212],[85.78717,23.6387],[85.79457,23.63713],[85.78947,23.62865],[85.79067,23.62745],[85.79403,23.62797],[85.79363,23.61957],[85.79659,23.62191],[85.79958,23.62057],[85.79897,23.61561],[85.80506,23.61264],[85.80586,23.61037],[85.80454,23.60761],[85.80808,23.60046],[85.81332,23.57668],[85.82165,23.57628],[85.82493,23.57312],[85.83341,23.57312],[85.83992,23.56492],[85.84073,23.56237],[85.8363,23.55686],[85.82749,23.55463],[85.82128,23.55013],[85.82785,23.54056],[85.84169,23.53479],[85.83552,23.52054],[85.8397,23.51517],[85.84546,23.51307],[85.85185,23.51277],[85.85943,23.5175],[85.8675,23.51119],[85.86734,23.50729],[85.87272,23.50557],[85.87598,23.50016],[85.8844,23.49323],[85.88507,23.4919],[85.88335,23.4902],[85.88798,23.48686],[85.8863,23.48205],[85.89627,23.48377],[85.90014,23.48241],[85.9086,23.48363],[85.91204,23.48084],[85.91524,23.48187],[85.92017,23.47724],[85.93283,23.47291],[85.95327,23.47095],[85.95547,23.47119],[85.95711,23.47441],[85.96277,23.47624],[85.97751,23.47604],[85.98062,23.47815],[85.98897,23.47831],[85.99252,23.48033],[86.00322,23.48177],[86.00537,23.4835],[86.00719,23.48272],[86.00866,23.48431],[86.01673,23.48449],[86.02298,23.48651],[86.03146,23.48365],[86.03726,23.48592],[86.04396,23.48432],[86.05384,23.48706],[86.05472,23.49017],[86.05793,23.49046],[86.05671,23.49508],[86.03819,23.49778],[86.03941,23.50466],[86.03775,23.51066],[86.03924,23.51504],[86.03468,23.51593],[86.03387,23.52267],[86.02895,23.52765],[86.02841,23.53259],[86.02366,23.53692],[86.02818,23.54052],[86.02765,23.54211],[86.01628,23.54732],[86.01782,23.55959],[86.02467,23.56205],[86.03075,23.572],[86.0375,23.57651],[86.04013,23.57526],[86.04206,23.58688],[86.05216,23.58615],[86.0556,23.58294],[86.0657,23.57896],[86.07743,23.57921],[86.07274,23.56884],[86.08087,23.56568],[86.08512,23.56683],[86.09393,23.56324],[86.09907,23.56651],[86.10598,23.56596],[86.10849,23.5697],[86.11584,23.5661],[86.11786,23.56735],[86.12063,23.56618],[86.12394,23.56927],[86.12667,23.5694],[86.12922,23.56774],[86.12693,23.56592],[86.13154,23.56276],[86.13125,23.55929],[86.13662,23.56285],[86.13927,23.55927],[86.14328,23.56405],[86.14724,23.56386],[86.14678,23.56169],[86.14832,23.56081],[86.15835,23.55998],[86.15282,23.55213],[86.15231,23.54912],[86.15805,23.54147],[86.15749,23.53701],[86.15537,23.52962],[86.15031,23.52523],[86.14863,23.51935],[86.1541,23.51273],[86.16239,23.50849],[86.16057,23.50367],[86.15741,23.50064],[86.15961,23.49344],[86.15756,23.48864],[86.15135,23.4822],[86.15361,23.47893],[86.15371,23.47574],[86.15156,23.47433],[86.149,23.4752],[86.14741,23.46841],[86.14883,23.46526],[86.15957,23.46884],[86.16034,23.46591],[86.17829,23.46984],[86.17935,23.46761],[86.18203,23.46697],[86.18172,23.46008],[86.18706,23.45809],[86.19144,23.46018],[86.19503,23.45789],[86.19589,23.45439],[86.19709,23.45553],[86.19889,23.45334],[86.20571,23.45368],[86.20678,23.45],[86.21573,23.44815],[86.22838,23.44288],[86.23075,23.44485],[86.23031,23.45132],[86.23262,23.46224],[86.23496,23.46055],[86.24557,23.45932],[86.24734,23.45838],[86.24747,23.45625],[86.24216,23.45112],[86.24237,23.44653],[86.23655,23.44488],[86.23146,23.43598],[86.23245,23.43253],[86.22987,23.43082],[86.23431,23.42089],[86.24399,23.42375],[86.24886,23.42247],[86.24561,23.4139],[86.24739,23.41114],[86.25148,23.41084],[86.25915,23.41331],[86.26025,23.41782],[86.25221,23.42677],[86.25658,23.43009],[86.26409,23.43077],[86.27183,23.42766],[86.27568,23.43038],[86.28162,23.42855],[86.28949,23.42906],[86.291,23.42635],[86.28959,23.42473],[86.29094,23.41759],[86.30007,23.41276],[86.31055,23.41136],[86.31187,23.41439],[86.31776,23.41641],[86.31572,23.42345],[86.31757,23.42647],[86.31448,23.42668],[86.31185,23.42445],[86.30929,23.42818],[86.30606,23.42958],[86.30577,23.43482],[86.31534,23.44004],[86.31786,23.43983],[86.32057,23.44329],[86.33479,23.44658],[86.33404,23.44463],[86.33644,23.44283],[86.3368,23.44018],[86.34035,23.43954],[86.35146,23.44209],[86.34972,23.45155],[86.35593,23.45038],[86.3597,23.45225],[86.35942,23.45709],[86.35736,23.46073],[86.36306,23.46489],[86.36409,23.47169],[86.37946,23.47364],[86.3773,23.48057],[86.3788,23.48479],[86.37329,23.48298],[86.37061,23.48449],[86.36544,23.48028],[86.36242,23.48425],[86.36644,23.49627],[86.36357,23.50161],[86.36868,23.5025],[86.37519,23.51034],[86.37126,23.51748],[86.36458,23.52172],[86.36828,23.52815],[86.36511,23.53269],[86.36854,23.53525],[86.36726,23.54019],[86.37163,23.54057],[86.37097,23.54262],[86.37856,23.54875],[86.38401,23.55917],[86.38938,23.5612],[86.38845,23.56364],[86.39083,23.56674],[86.38816,23.57395],[86.39946,23.57859],[86.40247,23.57711],[86.40771,23.57877],[86.41045,23.57586],[86.41356,23.57571],[86.41659,23.57839],[86.42123,23.5901],[86.43294,23.59448],[86.43618,23.59903],[86.44708,23.59814],[86.44885,23.6017],[86.4458,23.61529],[86.44643,23.61872],[86.4498,23.62071],[86.45417,23.61954],[86.45696,23.62609],[86.46328,23.631],[86.47038,23.6305],[86.47955,23.63553],[86.48843,23.63766],[86.48551,23.63901],[86.46895,23.63823],[86.45711,23.64687],[86.42541,23.65571],[86.41086,23.66869],[86.40547,23.67048],[86.39336,23.66835],[86.38806,23.67055],[86.38407,23.67513],[86.38378,23.6888],[86.37247,23.69552],[86.37519,23.70764],[86.37283,23.71063],[86.34763,23.71339],[86.34583,23.71244],[86.34219,23.70456],[86.33623,23.70335],[86.33205,23.70454],[86.33063,23.70706],[86.30993,23.72041],[86.29759,23.71836],[86.29058,23.72019],[86.27064,23.7115],[86.26078,23.71015],[86.24376,23.71221],[86.22924,23.71031],[86.21644,23.71198],[86.19736,23.71886],[86.18994,23.72004],[86.18325,23.72564],[86.18393,23.72938],[86.18997,23.73353],[86.18914,23.74317],[86.19245,23.74897],[86.18704,23.75317],[86.1873,23.75804],[86.18267,23.76169],[86.18403,23.76914],[86.17339,23.77532],[86.1751,23.78336],[86.16727,23.78552],[86.16104,23.79795],[86.16117,23.80684],[86.16396,23.81307],[86.16219,23.82101],[86.16281,23.82741],[86.16082,23.82874],[86.1554,23.8284],[86.15203,23.83195],[86.14692,23.82874],[86.14407,23.82972],[86.14294,23.83649],[86.13597,23.843],[86.14283,23.8458],[86.13755,23.85302],[86.14055,23.85917],[86.12903,23.8618],[86.12522,23.86872],[86.11795,23.86908],[86.11942,23.87711],[86.11584,23.88246],[86.12062,23.88617],[86.12058,23.88786],[86.11381,23.88644],[86.10515,23.8877],[86.09951,23.8836],[86.09378,23.88614],[86.07229,23.92155],[86.06259,23.91688],[86.05081,23.9172],[86.02617,23.91095],[86.01534,23.91223],[85.99599,23.91121],[85.99151,23.90953],[85.9902,23.90622],[85.98749,23.90702],[85.98641,23.90473],[85.97547,23.89983],[85.97342,23.89368],[85.97046,23.893],[85.96769,23.89512],[85.96779,23.90007],[85.96644,23.90189],[85.96199,23.89976],[85.96128,23.90814],[85.96373,23.91286],[85.9585,23.91631],[85.957,23.92058],[85.94739,23.92334],[85.94478,23.92754],[85.94697,23.93804],[85.93192,23.9251],[85.92981,23.92834],[85.92778,23.94509],[85.92247,23.94741],[85.91766,23.94479],[85.9127,23.94775],[85.90772,23.94796],[85.9037,23.95498],[85.89684,23.95426],[85.89344,23.95854],[85.89081,23.95875],[85.88794,23.95694],[85.88742,23.95206],[85.88424,23.94958],[85.88324,23.94536],[85.88793,23.93586],[85.88235,23.92585],[85.88467,23.91938],[85.88886,23.91844],[85.88622,23.90871],[85.87855,23.90248],[85.87741,23.89688],[85.87053,23.89102],[85.86938,23.88439],[85.86242,23.87881],[85.86387,23.87541],[85.86346,23.87127],[85.86108,23.86763],[85.86216,23.86473],[85.85678,23.86073],[85.85532,23.85697],[85.85149,23.85593],[85.85029,23.85366],[85.84595,23.85435],[85.84456,23.85214],[85.84121,23.8516],[85.83597,23.84009],[85.82251,23.84464],[85.81409,23.8448],[85.81278,23.84642],[85.81434,23.85164],[85.81351,23.85449],[85.80335,23.85968],[85.805,23.87289],[85.80109,23.8762],[85.80265,23.8813],[85.7988,23.88324],[85.79686,23.88982],[85.80094,23.8959],[85.79395,23.89901],[85.78556,23.90027],[85.78375,23.90522],[85.78378,23.91803],[85.77565,23.91815],[85.76462,23.92591],[85.76202,23.93072],[85.76593,23.93898],[85.7642,23.94413],[85.75663,23.94719],[85.74885,23.94271],[85.74268,23.94982],[85.73848,23.95015],[85.7372,23.94821],[85.73984,23.94353],[85.73918,23.94209],[85.72797,23.93865],[85.72439,23.93498],[85.72329,23.93048],[85.71845,23.92349],[85.714,23.92296],[85.71232,23.92538],[85.71293,23.9351],[85.70582,23.93546],[85.70008,23.93979],[85.69725,23.94696],[85.69099,23.95232],[85.69155,23.9574],[85.6868,23.95996],[85.68473,23.96481],[85.68534,23.97171],[85.69062,23.97594],[85.69744,23.97608],[85.69814,23.97934],[85.6874,23.98619],[85.68026,23.98346]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"323","area_level":"District","area_name":"Chatra","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.5007,24.3199],[84.50345,24.32053],[84.50449,24.32221],[84.50502,24.32409],[84.50536,24.3245],[84.50762,24.32481],[84.50798,24.32608],[84.50785,24.3265],[84.50647,24.3279],[84.50529,24.33133],[84.50348,24.33025],[84.50054,24.32953],[84.49546,24.32534],[84.49521,24.32467],[84.49575,24.32404],[84.49572,24.32361],[84.49239,24.32089],[84.49174,24.31987],[84.49177,24.31912],[84.49088,24.31849],[84.49004,24.3167],[84.48951,24.31616],[84.48828,24.31573],[84.48749,24.3138],[84.48663,24.3131],[84.48449,24.31267],[84.483,24.31296],[84.48157,24.31375],[84.48078,24.31475],[84.4805,24.31582],[84.47717,24.31714],[84.47643,24.31704],[84.47564,24.3163],[84.47279,24.31477],[84.47187,24.31468],[84.47049,24.31519],[84.4705,24.31294],[84.47172,24.31147],[84.4717,24.31069],[84.47091,24.30897],[84.47082,24.30655],[84.47192,24.30458],[84.47331,24.3037],[84.4753,24.30292],[84.47668,24.3015],[84.4785,24.30112],[84.48139,24.29825],[84.48296,24.29785],[84.48366,24.2981],[84.48445,24.30064],[84.48579,24.30134],[84.48599,24.30176],[84.48434,24.30171],[84.48435,24.30197],[84.48593,24.30777],[84.48802,24.31255],[84.48855,24.31513],[84.4975,24.31626],[84.49832,24.3174],[84.4991,24.3198],[84.5007,24.3199]]],[[[84.80793,24.52212],[84.80189,24.53074],[84.79661,24.52555],[84.79732,24.52258],[84.78946,24.51828],[84.78951,24.5077],[84.78609,24.50383],[84.77795,24.50448],[84.76343,24.50025],[84.75558,24.49996],[84.74805,24.496],[84.7464,24.48613],[84.74311,24.48498],[84.72918,24.47015],[84.72069,24.46861],[84.71617,24.47211],[84.7102,24.47124],[84.70775,24.46764],[84.7033,24.46607],[84.70254,24.46223],[84.68804,24.45774],[84.68474,24.45439],[84.68119,24.44623],[84.68208,24.44481],[84.67909,24.43559],[84.67231,24.43149],[84.6705,24.42812],[84.67596,24.42601],[84.67336,24.41692],[84.67448,24.41095],[84.6686,24.40972],[84.67018,24.40853],[84.67033,24.40492],[84.66761,24.4044],[84.66877,24.40282],[84.66809,24.39859],[84.66507,24.39088],[84.66109,24.39193],[84.65639,24.39669],[84.64995,24.398],[84.64626,24.40311],[84.64478,24.3991],[84.64266,24.39885],[84.63619,24.40045],[84.63079,24.40544],[84.62728,24.40179],[84.62207,24.40372],[84.61992,24.40076],[84.61682,24.4017],[84.61482,24.39894],[84.60448,24.40127],[84.60281,24.40345],[84.59678,24.40509],[84.59455,24.40484],[84.59172,24.40117],[84.58683,24.40058],[84.58855,24.40856],[84.58438,24.41267],[84.58275,24.41312],[84.57845,24.41028],[84.56819,24.40944],[84.56564,24.40129],[84.5621,24.39663],[84.56594,24.39246],[84.5741,24.38916],[84.57441,24.38563],[84.57236,24.38262],[84.56829,24.38217],[84.55922,24.37618],[84.55497,24.37523],[84.55379,24.37286],[84.54966,24.37345],[84.54692,24.37725],[84.54038,24.37597],[84.53221,24.37833],[84.52782,24.37574],[84.52833,24.37115],[84.53512,24.36315],[84.52452,24.35005],[84.52593,24.34571],[84.53163,24.33878],[84.52319,24.33297],[84.51674,24.31773],[84.50948,24.3153],[84.5096,24.30423],[84.50188,24.28839],[84.49278,24.28607],[84.49242,24.28205],[84.48843,24.27659],[84.4879,24.27318],[84.48788,24.26998],[84.49259,24.26405],[84.49155,24.26128],[84.46599,24.25911],[84.47518,24.26599],[84.46784,24.26431],[84.45931,24.26549],[84.45914,24.26054],[84.44876,24.24668],[84.44879,24.23896],[84.45985,24.2353],[84.47609,24.22626],[84.47739,24.22338],[84.47556,24.21482],[84.47606,24.20557],[84.48302,24.20413],[84.49076,24.19912],[84.49924,24.19963],[84.50278,24.19745],[84.51676,24.20063],[84.52393,24.19891],[84.52955,24.20555],[84.53929,24.20148],[84.53778,24.19455],[84.52968,24.18658],[84.53324,24.18204],[84.53376,24.17734],[84.53866,24.17584],[84.53909,24.1704],[84.54544,24.16708],[84.54887,24.1675],[84.55087,24.16203],[84.5542,24.15828],[84.5535,24.1514],[84.58349,24.14102],[84.58341,24.13582],[84.58077,24.13248],[84.58121,24.12957],[84.57828,24.1248],[84.57758,24.11976],[84.57347,24.11568],[84.56921,24.11564],[84.56785,24.1121],[84.56524,24.11178],[84.55562,24.10103],[84.55565,24.09859],[84.55912,24.09592],[84.56048,24.08695],[84.56619,24.07593],[84.57386,24.07414],[84.57884,24.07056],[84.57075,24.05682],[84.56987,24.05114],[84.5574,24.04894],[84.55592,24.04557],[84.56022,24.03852],[84.56331,24.03779],[84.56632,24.0345],[84.56666,24.03082],[84.55856,24.02516],[84.55928,24.02255],[84.55557,24.01458],[84.5555,24.0083],[84.56194,23.9978],[84.57166,23.98706],[84.58273,23.98608],[84.59275,23.98761],[84.59854,23.98231],[84.6091,23.99132],[84.61856,23.98726],[84.63306,23.99308],[84.63801,23.98983],[84.64559,23.99659],[84.64803,24.00342],[84.65395,24.00531],[84.66288,24.00484],[84.66595,24.00283],[84.66696,23.99916],[84.67167,23.99863],[84.68094,24.00302],[84.68271,24.00947],[84.68786,24.01394],[84.68845,24.01748],[84.69471,24.0249],[84.70747,24.02181],[84.712,24.02543],[84.71694,24.02587],[84.71721,24.02755],[84.71299,24.03001],[84.71534,24.03975],[84.72432,24.04482],[84.72933,24.04147],[84.73672,24.04091],[84.74647,24.04865],[84.75158,24.04537],[84.75054,24.04104],[84.75196,24.03727],[84.75595,24.04247],[84.75897,24.03979],[84.75853,24.03781],[84.75427,24.03536],[84.75611,24.02967],[84.76222,24.02628],[84.76617,24.01386],[84.77236,24.0108],[84.77253,24.00477],[84.76439,23.99738],[84.76914,23.98851],[84.77404,23.98799],[84.77466,23.98576],[84.77277,23.98384],[84.76854,23.98358],[84.76878,23.9795],[84.76224,23.97403],[84.77197,23.97351],[84.77205,23.97079],[84.77398,23.96898],[84.77922,23.97072],[84.78357,23.97673],[84.78602,23.97436],[84.79728,23.97288],[84.80229,23.9763],[84.80715,23.97259],[84.81386,23.98029],[84.81297,23.9826],[84.81683,23.98177],[84.82757,23.98713],[84.8287,23.98528],[84.82698,23.97185],[84.83145,23.96284],[84.83097,23.95724],[84.84078,23.96357],[84.84456,23.96367],[84.84758,23.96597],[84.85109,23.96545],[84.85524,23.96422],[84.85653,23.96082],[84.8617,23.95981],[84.86653,23.9546],[84.88027,23.95436],[84.88931,23.94905],[84.88942,23.94465],[84.89233,23.94345],[84.90382,23.95167],[84.92388,23.95161],[84.9348,23.94111],[84.93509,23.93444],[84.92923,23.92655],[84.93008,23.91958],[84.92752,23.91436],[84.93027,23.91145],[84.9388,23.91073],[84.9431,23.9071],[84.94614,23.89711],[84.9455,23.89467],[84.94871,23.89193],[84.9474,23.88531],[84.95025,23.88466],[84.95015,23.88074],[84.95358,23.87609],[84.95046,23.87687],[84.94606,23.87271],[84.94218,23.87441],[84.93726,23.87145],[84.93027,23.86131],[84.93161,23.85863],[84.94344,23.85629],[84.94877,23.8461],[84.94896,23.83081],[84.94558,23.82685],[84.94827,23.81825],[84.94658,23.81326],[84.94813,23.80894],[84.94651,23.80523],[84.94151,23.80621],[84.93842,23.80487],[84.92456,23.80878],[84.91722,23.80815],[84.91339,23.80337],[84.90895,23.80248],[84.90892,23.79676],[84.90689,23.79351],[84.9074,23.7924],[84.90869,23.79368],[84.90832,23.78911],[84.90346,23.78455],[84.90454,23.77659],[84.91299,23.77318],[84.93013,23.77112],[84.92834,23.76083],[84.93407,23.74569],[84.93797,23.74259],[84.93759,23.7359],[84.9395,23.73237],[84.95251,23.72858],[84.95637,23.72909],[84.96218,23.72485],[84.96164,23.71626],[84.96714,23.71524],[84.96954,23.71713],[84.97242,23.71662],[84.97905,23.70683],[84.99038,23.70408],[84.99411,23.69005],[85.00106,23.68137],[85.00565,23.68038],[85.00737,23.68172],[85.01165,23.68981],[85.01214,23.69564],[85.02017,23.68868],[85.02307,23.69032],[85.0373,23.68992],[85.04084,23.70263],[85.04628,23.70469],[85.04936,23.71053],[85.05393,23.71309],[85.05465,23.70828],[85.05635,23.70702],[85.06661,23.70985],[85.07074,23.70639],[85.06975,23.70027],[85.07164,23.69636],[85.06766,23.69405],[85.06202,23.69557],[85.05997,23.69343],[85.05876,23.68743],[85.06145,23.68212],[85.06868,23.68092],[85.07523,23.67565],[85.07916,23.67205],[85.07776,23.66768],[85.08384,23.66728],[85.08709,23.66912],[85.08853,23.66733],[85.09728,23.66626],[85.10497,23.66302],[85.10674,23.66403],[85.1069,23.67047],[85.10948,23.67597],[85.10906,23.67988],[85.10688,23.68213],[85.10792,23.68801],[85.11169,23.69283],[85.11683,23.70566],[85.10444,23.70587],[85.1037,23.70754],[85.10571,23.70912],[85.09375,23.71647],[85.09705,23.71787],[85.09603,23.72083],[85.0832,23.72604],[85.08262,23.73211],[85.08929,23.73394],[85.09501,23.73046],[85.1039,23.72911],[85.1042,23.73248],[85.10029,23.74056],[85.10336,23.74405],[85.1031,23.74571],[85.10468,23.7475],[85.12837,23.75223],[85.12549,23.75944],[85.1313,23.76029],[85.13748,23.77137],[85.13573,23.77649],[85.12983,23.77953],[85.085,23.78853],[85.07507,23.7926],[85.07245,23.79644],[85.058,23.79721],[85.04507,23.80849],[85.04519,23.81118],[85.04872,23.81411],[85.04751,23.81836],[85.04825,23.8275],[85.06007,23.82727],[85.06071,23.83339],[85.05461,23.84249],[85.05074,23.8439],[85.03152,23.85972],[85.0312,23.86371],[85.03547,23.86814],[85.03336,23.86867],[85.03076,23.86619],[85.02953,23.87053],[85.03358,23.87795],[85.03108,23.87993],[85.02289,23.87886],[85.02283,23.88366],[85.02684,23.88932],[85.02149,23.89734],[85.02296,23.90373],[85.02646,23.90676],[85.02918,23.91513],[85.04742,23.91332],[85.04909,23.91935],[85.04001,23.92274],[85.04125,23.92809],[85.04601,23.93079],[85.03951,23.93867],[85.04271,23.94355],[85.05446,23.9529],[85.05684,23.95805],[85.05441,23.96051],[85.04947,23.96064],[85.03905,23.96622],[85.0359,23.96661],[85.02913,23.9636],[85.02695,23.9751],[85.02348,23.98054],[85.02588,23.99132],[85.03723,23.99381],[85.04426,24.00184],[85.04418,23.99875],[85.05,23.99706],[85.05582,23.99223],[85.05458,23.98549],[85.06351,23.98597],[85.06974,23.98222],[85.07763,23.983],[85.08239,23.97673],[85.08268,23.96913],[85.07925,23.96824],[85.07583,23.96142],[85.08575,23.95816],[85.09954,23.97537],[85.12009,23.97069],[85.1225,23.97506],[85.12509,23.97591],[85.13008,23.97065],[85.13821,23.96734],[85.13982,23.95817],[85.14947,23.95014],[85.15302,23.95203],[85.17602,23.95107],[85.18592,23.94771],[85.18594,23.9509],[85.19071,23.9536],[85.19484,23.9534],[85.20201,23.95595],[85.20414,23.9627],[85.20268,23.97298],[85.20463,23.97584],[85.2109,23.97877],[85.21345,23.98431],[85.21411,23.99213],[85.21786,23.99341],[85.22055,23.99183],[85.22678,23.99412],[85.22955,23.99748],[85.22905,23.99993],[85.23071,24.00255],[85.23266,24.0032],[85.23108,24.01131],[85.24915,24.01219],[85.2523,24.02239],[85.25035,24.02643],[85.25234,24.02776],[85.25069,24.02852],[85.25035,24.03124],[85.24876,24.03052],[85.24726,24.03479],[85.24918,24.03823],[85.24582,24.04121],[85.25068,24.05536],[85.2477,24.05723],[85.24912,24.05944],[85.24843,24.06259],[85.23391,24.07518],[85.23054,24.07459],[85.22318,24.07799],[85.21905,24.07725],[85.21299,24.07871],[85.20937,24.08305],[85.20588,24.08361],[85.20318,24.08692],[85.19565,24.09012],[85.19265,24.0932],[85.17119,24.0993],[85.17195,24.10742],[85.17559,24.11076],[85.17049,24.11276],[85.17187,24.11648],[85.16764,24.11669],[85.16674,24.12092],[85.17038,24.12037],[85.1754,24.12353],[85.17226,24.12463],[85.16868,24.13146],[85.16166,24.13701],[85.1526,24.15695],[85.14936,24.15838],[85.14659,24.15506],[85.14399,24.15582],[85.14349,24.15899],[85.14753,24.16636],[85.14724,24.1747],[85.14987,24.18231],[85.14086,24.19417],[85.1406,24.20091],[85.13491,24.20175],[85.13638,24.2055],[85.14266,24.2095],[85.14518,24.20649],[85.14805,24.20906],[85.15016,24.20894],[85.14902,24.21491],[85.16177,24.22943],[85.16465,24.22683],[85.1728,24.2267],[85.17446,24.22511],[85.17884,24.22865],[85.18213,24.22699],[85.18778,24.22823],[85.18999,24.22624],[85.19925,24.22382],[85.20026,24.22541],[85.20573,24.22447],[85.21695,24.21895],[85.21787,24.22167],[85.2269,24.22108],[85.22795,24.22306],[85.23072,24.22347],[85.2346,24.22142],[85.23866,24.22323],[85.24279,24.22057],[85.24264,24.21835],[85.24371,24.21976],[85.2449,24.21814],[85.24646,24.21922],[85.24766,24.2172],[85.24951,24.21811],[85.24987,24.21618],[85.25453,24.21274],[85.2545,24.21455],[85.2563,24.21406],[85.25783,24.21635],[85.25851,24.21518],[85.26433,24.21701],[85.26522,24.21533],[85.26814,24.21699],[85.27041,24.21452],[85.27302,24.21601],[85.27538,24.21411],[85.2743,24.21263],[85.27796,24.21157],[85.2803,24.20815],[85.28716,24.2088],[85.28871,24.20686],[85.28809,24.20148],[85.28996,24.2004],[85.30338,24.19902],[85.30304,24.20233],[85.3051,24.20475],[85.30232,24.20705],[85.30326,24.21421],[85.29687,24.22193],[85.30278,24.22506],[85.3004,24.2275],[85.30132,24.23599],[85.31078,24.24564],[85.32225,24.24612],[85.32267,24.24728],[85.32174,24.25],[85.31501,24.25311],[85.31737,24.25347],[85.31516,24.25799],[85.31665,24.2613],[85.32145,24.26051],[85.322,24.2625],[85.31878,24.26553],[85.32046,24.2767],[85.3191,24.28161],[85.32154,24.28467],[85.31874,24.28815],[85.31831,24.29155],[85.32127,24.29391],[85.32567,24.29177],[85.32754,24.29478],[85.32208,24.30574],[85.3227,24.30918],[85.32906,24.31087],[85.3345,24.30922],[85.33613,24.30801],[85.33628,24.30378],[85.33976,24.30162],[85.34285,24.30233],[85.34264,24.30628],[85.34786,24.30624],[85.35006,24.3042],[85.34865,24.29911],[85.35307,24.29745],[85.35731,24.29208],[85.36849,24.30397],[85.37621,24.30826],[85.38111,24.3092],[85.38155,24.31104],[85.37832,24.31584],[85.38035,24.32115],[85.3733,24.31858],[85.36743,24.31077],[85.36194,24.30802],[85.35444,24.31088],[85.3504,24.31651],[85.34249,24.31629],[85.34119,24.31356],[85.33349,24.32019],[85.32976,24.31796],[85.32724,24.31915],[85.31734,24.32555],[85.31542,24.32858],[85.31132,24.33014],[85.30893,24.33608],[85.30694,24.33608],[85.30547,24.33867],[85.30083,24.33966],[85.29951,24.33731],[85.29383,24.3391],[85.28774,24.33307],[85.28585,24.33409],[85.28349,24.33208],[85.27191,24.33583],[85.26267,24.33501],[85.25711,24.33928],[85.24343,24.34018],[85.228,24.3438],[85.22556,24.34195],[85.22576,24.34037],[85.22338,24.34176],[85.22122,24.34021],[85.21732,24.34141],[85.20764,24.33902],[85.20718,24.3372],[85.20178,24.33353],[85.20287,24.33013],[85.2011,24.32515],[85.18667,24.33008],[85.18625,24.33442],[85.18407,24.33633],[85.17676,24.33603],[85.16456,24.33977],[85.16291,24.34913],[85.15885,24.34632],[85.15261,24.35372],[85.13684,24.35576],[85.13485,24.35442],[85.1391,24.34821],[85.13789,24.34094],[85.14363,24.3348],[85.14338,24.32871],[85.13991,24.3284],[85.13655,24.32555],[85.12951,24.32923],[85.11221,24.33257],[85.10159,24.32798],[85.09978,24.34037],[85.09574,24.34191],[85.08614,24.35315],[85.08557,24.36618],[85.08983,24.37268],[85.08356,24.37671],[85.07404,24.37703],[85.07324,24.37823],[85.08006,24.39342],[85.07733,24.39306],[85.07833,24.39669],[85.08313,24.39971],[85.08107,24.40599],[85.08309,24.41558],[85.08202,24.4159],[85.08187,24.41391],[85.07981,24.41546],[85.08102,24.43304],[85.06907,24.42221],[85.06297,24.40692],[85.06111,24.40586],[85.04591,24.40914],[85.04234,24.41428],[85.03874,24.41195],[85.03117,24.41457],[85.01912,24.4091],[85.00269,24.39728],[84.9983,24.39756],[84.99693,24.3947],[84.98382,24.38747],[84.98124,24.38084],[84.97489,24.37471],[84.9609,24.37342],[84.95479,24.37133],[84.94081,24.37625],[84.93748,24.37992],[84.92286,24.37753],[84.9162,24.3733],[84.90383,24.37225],[84.90034,24.37682],[84.90898,24.38354],[84.90499,24.3901],[84.90421,24.39546],[84.89264,24.40504],[84.89128,24.4146],[84.88228,24.42477],[84.88548,24.42575],[84.8849,24.4279],[84.88744,24.43196],[84.88466,24.4408],[84.88593,24.44564],[84.88528,24.45252],[84.8867,24.45323],[84.88566,24.45885],[84.88728,24.46328],[84.8846,24.46499],[84.88281,24.46205],[84.87971,24.46603],[84.8748,24.46721],[84.8725,24.46649],[84.87096,24.45829],[84.86399,24.45727],[84.86321,24.46111],[84.85401,24.46671],[84.85091,24.46204],[84.84878,24.45445],[84.8401,24.45219],[84.83707,24.4591],[84.84011,24.46078],[84.84061,24.46889],[84.83292,24.47021],[84.83537,24.48512],[84.83378,24.49359],[84.83534,24.49648],[84.83822,24.49768],[84.83985,24.50671],[84.83894,24.51261],[84.82556,24.52543],[84.81127,24.52163],[84.80793,24.52212]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"324","area_level":"District","area_name":"Deoghar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[86.78164,24.61913],[86.77324,24.62181],[86.76494,24.61945],[86.75869,24.61938],[86.75399,24.6213],[86.74825,24.60576],[86.74984,24.59507],[86.74668,24.5943],[86.74163,24.58712],[86.73528,24.58455],[86.73469,24.57949],[86.72308,24.58399],[86.70159,24.57329],[86.69162,24.57612],[86.68598,24.56995],[86.68077,24.57099],[86.67024,24.56488],[86.65173,24.5704],[86.64575,24.58063],[86.62417,24.58857],[86.62281,24.59626],[86.62439,24.59938],[86.61042,24.5987],[86.61092,24.60399],[86.61299,24.60651],[86.6148,24.60609],[86.61459,24.60831],[86.60329,24.60838],[86.60307,24.60194],[86.59819,24.59991],[86.59716,24.59657],[86.58887,24.58853],[86.58922,24.5793],[86.58029,24.56653],[86.56981,24.56471],[86.56647,24.56649],[86.56163,24.56222],[86.55918,24.56227],[86.55834,24.55824],[86.56379,24.55255],[86.55336,24.5435],[86.55232,24.53597],[86.54153,24.54034],[86.53629,24.53585],[86.52936,24.54028],[86.51751,24.53033],[86.51535,24.52537],[86.50934,24.52185],[86.50078,24.50404],[86.50268,24.49324],[86.5004,24.48944],[86.49708,24.49025],[86.49434,24.4862],[86.49536,24.4831],[86.49184,24.47585],[86.49447,24.47338],[86.49031,24.47132],[86.49086,24.46718],[86.48673,24.46414],[86.49532,24.45626],[86.49677,24.44375],[86.49421,24.44082],[86.49128,24.42808],[86.47943,24.42794],[86.47702,24.42451],[86.46866,24.42627],[86.4665,24.42386],[86.4665,24.42135],[86.46918,24.41986],[86.46915,24.41535],[86.46689,24.41013],[86.46789,24.40616],[86.47075,24.40567],[86.47146,24.40152],[86.4701,24.39741],[86.47193,24.39335],[86.46672,24.38484],[86.46713,24.38107],[86.45752,24.37794],[86.45617,24.37472],[86.45734,24.37335],[86.45537,24.37186],[86.4578,24.37131],[86.45902,24.36539],[86.45698,24.35601],[86.47031,24.35357],[86.46692,24.34332],[86.45766,24.33489],[86.46288,24.33183],[86.47558,24.33007],[86.47343,24.32388],[86.4725,24.31261],[86.47553,24.31004],[86.47798,24.30058],[86.48095,24.29827],[86.48613,24.29722],[86.48612,24.29112],[86.48837,24.28692],[86.49221,24.28507],[86.50181,24.28475],[86.50461,24.28253],[86.505,24.27635],[86.51115,24.26265],[86.51105,24.25883],[86.50843,24.25581],[86.5106,24.25372],[86.5087,24.25185],[86.50998,24.24775],[86.51607,24.23981],[86.51003,24.23557],[86.50868,24.23078],[86.5126,24.22853],[86.51263,24.22546],[86.51656,24.22394],[86.51697,24.22213],[86.51202,24.21879],[86.507,24.20927],[86.51148,24.20773],[86.50034,24.1994],[86.50387,24.19337],[86.50145,24.18641],[86.50185,24.18101],[86.49686,24.17547],[86.4946,24.16746],[86.48515,24.15201],[86.49891,24.15234],[86.50577,24.14819],[86.51561,24.14988],[86.52428,24.15823],[86.53023,24.15454],[86.54805,24.15328],[86.55122,24.15522],[86.56915,24.14585],[86.57457,24.13877],[86.58756,24.13956],[86.59566,24.13611],[86.60108,24.14104],[86.60506,24.14146],[86.61177,24.13657],[86.6186,24.13919],[86.62667,24.13566],[86.62889,24.13158],[86.63694,24.13182],[86.64422,24.13398],[86.65762,24.12871],[86.66475,24.12817],[86.67301,24.12975],[86.68212,24.12869],[86.68551,24.13358],[86.68878,24.13484],[86.68798,24.13732],[86.68982,24.14212],[86.69314,24.14265],[86.69154,24.14871],[86.69364,24.15383],[86.69738,24.15699],[86.69863,24.16112],[86.69742,24.16543],[86.70489,24.16288],[86.70579,24.15973],[86.71644,24.15548],[86.71742,24.1536],[86.71731,24.14807],[86.71482,24.14441],[86.71718,24.14218],[86.7132,24.141],[86.71332,24.13936],[86.70591,24.13879],[86.70058,24.13397],[86.69835,24.12786],[86.69905,24.11216],[86.71082,24.10519],[86.71322,24.10665],[86.71981,24.1063],[86.72598,24.10226],[86.73059,24.102],[86.73551,24.09817],[86.73921,24.09813],[86.74074,24.09567],[86.74713,24.09585],[86.74893,24.09398],[86.75799,24.09149],[86.76299,24.09212],[86.76883,24.08488],[86.76246,24.08222],[86.76243,24.08048],[86.75992,24.08254],[86.75888,24.07884],[86.76582,24.07575],[86.77402,24.06579],[86.78007,24.06706],[86.79126,24.06262],[86.7948,24.06665],[86.79423,24.07809],[86.80053,24.07702],[86.80512,24.08259],[86.80719,24.08195],[86.80706,24.0791],[86.81004,24.08029],[86.81156,24.07849],[86.8138,24.08223],[86.81592,24.08261],[86.81611,24.07583],[86.82059,24.07145],[86.81958,24.06671],[86.82005,24.06454],[86.82177,24.06433],[86.82116,24.06297],[86.82541,24.06104],[86.83127,24.06232],[86.83989,24.04987],[86.84879,24.05122],[86.85135,24.05351],[86.85205,24.05702],[86.86133,24.05827],[86.87001,24.06416],[86.88175,24.06083],[86.88431,24.06511],[86.88417,24.06868],[86.88796,24.069],[86.89646,24.06707],[86.90309,24.05786],[86.91921,24.06204],[86.91588,24.05359],[86.9203,24.0491],[86.93106,24.04433],[86.95492,24.04112],[86.96062,24.04564],[86.95635,24.05054],[86.95774,24.05311],[86.96683,24.05723],[86.97176,24.06181],[86.9772,24.0608],[86.978,24.06461],[86.97527,24.06605],[86.97582,24.07083],[86.97975,24.07872],[86.97559,24.0913],[86.97254,24.09362],[86.9715,24.09743],[86.97467,24.10018],[86.9741,24.10283],[86.97749,24.10701],[86.96368,24.11444],[86.96742,24.12651],[86.9566,24.12862],[86.94872,24.13415],[86.93811,24.13394],[86.93571,24.13543],[86.93937,24.14577],[86.93954,24.15216],[86.94592,24.16514],[86.95923,24.16271],[86.95683,24.16649],[86.96016,24.17153],[86.96403,24.17208],[86.9629,24.17401],[86.96541,24.17767],[86.97258,24.18036],[86.97816,24.17919],[86.98108,24.18061],[86.97843,24.18413],[86.98019,24.18536],[86.97986,24.19374],[86.9764,24.19659],[86.97605,24.19998],[86.97788,24.20146],[86.97467,24.2129],[86.97883,24.212],[86.98306,24.21472],[86.9892,24.21281],[86.99028,24.21395],[86.996,24.21106],[87.00317,24.2143],[87.01348,24.21243],[87.01689,24.20739],[87.02424,24.20575],[87.02693,24.20673],[87.04218,24.19576],[87.04439,24.19939],[87.05206,24.20524],[87.0487,24.21045],[87.05008,24.2146],[87.04602,24.2184],[87.04661,24.22283],[87.0554,24.23038],[87.05511,24.23748],[87.06018,24.24462],[87.06659,24.2478],[87.06796,24.25105],[87.06665,24.25321],[87.05253,24.25506],[87.04616,24.2588],[87.03684,24.26048],[87.03161,24.26368],[87.03085,24.26706],[87.0257,24.27211],[87.02365,24.29046],[87.027,24.29246],[87.02736,24.29854],[87.02204,24.3059],[86.99873,24.30929],[86.99133,24.30451],[86.98278,24.3095],[86.97038,24.31027],[86.96724,24.31216],[86.96666,24.31461],[86.9629,24.31281],[86.96793,24.32323],[86.96598,24.33068],[86.96821,24.35122],[86.95921,24.35672],[86.95343,24.35648],[86.94904,24.35883],[86.94532,24.35604],[86.93952,24.35889],[86.93718,24.3671],[86.93441,24.36819],[86.93314,24.37245],[86.9355,24.37795],[86.93859,24.38026],[86.93231,24.38113],[86.92782,24.38736],[86.92766,24.3915],[86.93262,24.3937],[86.93954,24.40195],[86.94299,24.4095],[86.94196,24.41115],[86.94527,24.4133],[86.94731,24.42006],[86.94161,24.42099],[86.93625,24.41674],[86.92839,24.41869],[86.92124,24.41013],[86.91631,24.40948],[86.91481,24.41312],[86.91314,24.41364],[86.90492,24.4113],[86.90116,24.41591],[86.90338,24.42243],[86.89866,24.42335],[86.89963,24.42675],[86.90317,24.42729],[86.90301,24.43239],[86.89824,24.43441],[86.89589,24.43192],[86.89058,24.43251],[86.88904,24.44084],[86.89018,24.44634],[86.90308,24.44964],[86.9039,24.45717],[86.91158,24.46333],[86.90923,24.46981],[86.90468,24.47186],[86.90636,24.47669],[86.91045,24.4807],[86.91096,24.48614],[86.91669,24.48772],[86.91922,24.49702],[86.91733,24.5],[86.91911,24.50531],[86.91915,24.51266],[86.91747,24.51862],[86.91533,24.52066],[86.91922,24.53611],[86.91606,24.54165],[86.90356,24.54752],[86.90249,24.55273],[86.89506,24.56082],[86.8935,24.55782],[86.88687,24.55884],[86.88795,24.5648],[86.88303,24.56726],[86.8821,24.5713],[86.88051,24.57219],[86.87672,24.56803],[86.86901,24.56547],[86.86362,24.5666],[86.86043,24.56381],[86.86202,24.56081],[86.86013,24.55638],[86.85684,24.55488],[86.85019,24.55851],[86.843,24.5581],[86.84145,24.56333],[86.84364,24.56854],[86.84265,24.57423],[86.83465,24.57508],[86.83183,24.5716],[86.82355,24.57239],[86.82161,24.57451],[86.81825,24.57318],[86.81597,24.57016],[86.81192,24.56905],[86.80315,24.57033],[86.80263,24.5736],[86.80537,24.57827],[86.81171,24.58254],[86.80716,24.59261],[86.81124,24.59827],[86.8036,24.60187],[86.78901,24.61869],[86.78505,24.61651],[86.78164,24.61913]]],[[[87.62655,24.77782],[87.62611,24.78116],[87.62562,24.78386],[87.62513,24.78445],[87.62466,24.78459],[87.62372,24.78432],[87.62119,24.78282],[87.61983,24.78277],[87.6195,24.78242],[87.61906,24.7816],[87.61847,24.78135],[87.61812,24.78061],[87.61751,24.7802],[87.61914,24.7793],[87.62007,24.77621],[87.62073,24.77605],[87.62244,24.7776],[87.62393,24.77613],[87.62453,24.77606],[87.62444,24.77654],[87.62655,24.77782]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"325","area_level":"District","area_name":"Dhanbad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.3899,24.04715],[86.38656,24.05505],[86.38085,24.05934],[86.37524,24.05858],[86.37029,24.05009],[86.36688,24.04821],[86.35929,24.04908],[86.3492,24.05297],[86.33909,24.05269],[86.33246,24.04888],[86.33485,24.04553],[86.33221,24.04245],[86.33241,24.04106],[86.33464,24.04093],[86.33384,24.03606],[86.32946,24.03614],[86.31829,24.03072],[86.32469,24.02474],[86.32649,24.01936],[86.34107,24.01775],[86.33925,24.00829],[86.34053,24.00653],[86.3371,24.00356],[86.33459,24.004],[86.32477,23.98675],[86.32268,23.98647],[86.32164,23.98309],[86.31848,23.98366],[86.3173,23.9792],[86.31373,23.97676],[86.31115,23.96781],[86.31384,23.96396],[86.30691,23.95137],[86.30341,23.93964],[86.29561,23.92742],[86.29392,23.91578],[86.28821,23.91678],[86.28784,23.91978],[86.28497,23.9201],[86.28371,23.92287],[86.28054,23.92368],[86.27511,23.9227],[86.27412,23.92386],[86.26874,23.92061],[86.25982,23.92107],[86.25754,23.92511],[86.25315,23.92642],[86.25044,23.93125],[86.24814,23.93071],[86.24526,23.93392],[86.23339,23.93844],[86.23179,23.93541],[86.22351,23.94041],[86.2205,23.93778],[86.21584,23.93845],[86.21256,23.93683],[86.20366,23.94127],[86.19572,23.94235],[86.18568,23.93813],[86.17163,23.93855],[86.17043,23.93593],[86.15166,23.92957],[86.14609,23.93002],[86.13719,23.93351],[86.13261,23.9284],[86.12942,23.91908],[86.12673,23.9167],[86.12858,23.91083],[86.12623,23.90786],[86.12642,23.90155],[86.11236,23.89091],[86.11103,23.88725],[86.12075,23.88755],[86.11584,23.88246],[86.11942,23.87711],[86.1182,23.86875],[86.12522,23.86872],[86.12903,23.8618],[86.14068,23.85895],[86.13755,23.85302],[86.14283,23.8458],[86.13597,23.843],[86.14294,23.83649],[86.14407,23.82972],[86.14692,23.82874],[86.15203,23.83195],[86.1554,23.8284],[86.16082,23.82874],[86.16281,23.82741],[86.16219,23.82101],[86.16396,23.81307],[86.16117,23.80684],[86.16104,23.79795],[86.16727,23.78552],[86.1751,23.78336],[86.17339,23.77532],[86.18403,23.76914],[86.18267,23.76169],[86.1873,23.75804],[86.18704,23.75317],[86.19245,23.74897],[86.18914,23.74317],[86.18997,23.73353],[86.1836,23.72835],[86.18325,23.72564],[86.18599,23.72311],[86.19198,23.7191],[86.19736,23.71886],[86.20983,23.71364],[86.22924,23.71031],[86.24376,23.71221],[86.26619,23.71041],[86.28867,23.71979],[86.29386,23.71999],[86.29759,23.71836],[86.30993,23.72041],[86.33063,23.70706],[86.33205,23.70454],[86.33623,23.70335],[86.34219,23.70456],[86.34583,23.71244],[86.34763,23.71339],[86.37283,23.71063],[86.37519,23.70764],[86.37247,23.69552],[86.38378,23.6888],[86.38407,23.67513],[86.3862,23.67181],[86.39087,23.66897],[86.39589,23.66842],[86.40547,23.67048],[86.41086,23.66869],[86.42541,23.65571],[86.45711,23.64687],[86.46895,23.63823],[86.49273,23.63822],[86.51191,23.63171],[86.52416,23.63021],[86.53663,23.63163],[86.5465,23.63764],[86.55662,23.63994],[86.57444,23.64805],[86.58081,23.65548],[86.59897,23.6655],[86.59599,23.67212],[86.60065,23.6746],[86.63379,23.67517],[86.65643,23.68429],[86.6756,23.68709],[86.69815,23.69361],[86.70533,23.69714],[86.71695,23.69911],[86.72556,23.69844],[86.73906,23.69423],[86.74191,23.69027],[86.7444,23.68162],[86.74734,23.67879],[86.77076,23.68139],[86.78891,23.68783],[86.79866,23.68876],[86.80581,23.69586],[86.80024,23.69975],[86.79929,23.7037],[86.8082,23.72239],[86.80796,23.72946],[86.81229,23.74476],[86.82425,23.748],[86.82691,23.7501],[86.82819,23.76438],[86.82585,23.77668],[86.82021,23.78393],[86.81984,23.78825],[86.81932,23.78593],[86.80908,23.79805],[86.80507,23.79889],[86.80336,23.8013],[86.81,23.82162],[86.80748,23.82281],[86.80389,23.82968],[86.80053,23.83002],[86.79935,23.832],[86.80053,23.83396],[86.78775,23.84509],[86.78107,23.85452],[86.77225,23.86073],[86.7565,23.86597],[86.74302,23.85771],[86.73681,23.85951],[86.72969,23.86717],[86.72592,23.89073],[86.71834,23.90092],[86.71035,23.90445],[86.69491,23.90807],[86.68028,23.91793],[86.66539,23.92173],[86.65524,23.92616],[86.64808,23.93302],[86.63772,23.93799],[86.61786,23.95199],[86.60581,23.95773],[86.60175,23.9655],[86.59241,23.97297],[86.5842,23.98252],[86.54978,23.98896],[86.54049,23.98923],[86.52404,23.98661],[86.48016,24.00899],[86.46827,24.01829],[86.45525,24.0226],[86.44482,24.03013],[86.43695,24.03205],[86.42294,24.02983],[86.41596,24.03129],[86.4011,24.03986],[86.39491,24.04111],[86.3899,24.04715]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"326","area_level":"District","area_name":"Dumka","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.94502,24.64868],[86.93759,24.65017],[86.93902,24.64341],[86.9421,24.64129],[86.94206,24.63873],[86.94494,24.63583],[86.93668,24.63031],[86.93277,24.63061],[86.92761,24.62451],[86.92892,24.6212],[86.92678,24.61374],[86.92214,24.61014],[86.9191,24.60486],[86.9195,24.60212],[86.9144,24.60041],[86.90933,24.59518],[86.90732,24.58816],[86.90895,24.5825],[86.91327,24.5774],[86.90937,24.57246],[86.91472,24.56831],[86.91539,24.56236],[86.91761,24.56086],[86.91596,24.55452],[86.9175,24.5467],[86.91468,24.54296],[86.91922,24.53611],[86.91533,24.52066],[86.91747,24.51862],[86.91915,24.51266],[86.91911,24.50531],[86.91733,24.5],[86.91922,24.49702],[86.91669,24.48772],[86.91096,24.48614],[86.91045,24.4807],[86.90636,24.47669],[86.90468,24.47186],[86.90923,24.46981],[86.91158,24.46333],[86.9039,24.45717],[86.90308,24.44964],[86.89018,24.44634],[86.88985,24.43415],[86.89058,24.43251],[86.89473,24.43164],[86.89824,24.43441],[86.90301,24.43239],[86.90317,24.42729],[86.89963,24.42675],[86.89866,24.42335],[86.90338,24.42243],[86.90116,24.41591],[86.90492,24.4113],[86.91314,24.41364],[86.91481,24.41312],[86.91631,24.40948],[86.92124,24.41013],[86.92839,24.41869],[86.93625,24.41674],[86.94161,24.42099],[86.94731,24.42006],[86.94527,24.4133],[86.94196,24.41115],[86.94299,24.4095],[86.93954,24.40195],[86.93262,24.3937],[86.92766,24.3915],[86.92782,24.38736],[86.93231,24.38113],[86.93859,24.38026],[86.9355,24.37795],[86.93314,24.37245],[86.93441,24.36819],[86.93718,24.3671],[86.93952,24.35889],[86.94532,24.35604],[86.94904,24.35883],[86.95343,24.35648],[86.95921,24.35672],[86.96821,24.35122],[86.96598,24.33068],[86.96793,24.32323],[86.9629,24.31281],[86.96666,24.31461],[86.96724,24.31216],[86.97038,24.31027],[86.98278,24.3095],[86.99133,24.30451],[86.99873,24.30929],[87.02204,24.3059],[87.02736,24.29854],[87.027,24.29246],[87.02365,24.29046],[87.0257,24.27211],[87.03085,24.26706],[87.03161,24.26368],[87.03684,24.26048],[87.04616,24.2588],[87.05253,24.25506],[87.06665,24.25321],[87.06796,24.25105],[87.06659,24.2478],[87.06018,24.24462],[87.05511,24.23748],[87.0554,24.23038],[87.04661,24.22283],[87.04602,24.2184],[87.05008,24.2146],[87.0487,24.21045],[87.05206,24.20524],[87.04439,24.19939],[87.04218,24.19576],[87.02693,24.20673],[87.02424,24.20575],[87.01689,24.20739],[87.01348,24.21243],[87.00317,24.2143],[86.996,24.21106],[86.99028,24.21395],[86.9892,24.21281],[86.98306,24.21472],[86.97883,24.212],[86.97429,24.21264],[86.97788,24.20146],[86.97605,24.19998],[86.9764,24.19659],[86.97983,24.19394],[86.98019,24.18536],[86.97843,24.18413],[86.98108,24.18061],[86.97816,24.17919],[86.97258,24.18036],[86.96541,24.17767],[86.9629,24.17401],[86.96403,24.17208],[86.96016,24.17153],[86.95683,24.16649],[86.95923,24.16271],[86.94592,24.16514],[86.93954,24.15216],[86.93937,24.14577],[86.93572,24.13601],[86.93811,24.13394],[86.94872,24.13415],[86.9566,24.12862],[86.96742,24.12651],[86.96368,24.11444],[86.9775,24.10701],[86.98182,24.11667],[86.98141,24.12384],[86.98708,24.12609],[86.99193,24.12512],[86.99941,24.12627],[87.00352,24.13225],[87.00637,24.13231],[87.01075,24.13895],[87.01077,24.14275],[87.0082,24.14496],[87.01174,24.14651],[87.03328,24.13978],[87.03455,24.13769],[87.04862,24.13596],[87.05642,24.12662],[87.05669,24.1234],[87.06012,24.11794],[87.07336,24.11136],[87.07557,24.10925],[87.07596,24.10614],[87.07879,24.10695],[87.08389,24.10291],[87.08427,24.10477],[87.08702,24.10624],[87.09273,24.10468],[87.09527,24.10697],[87.09814,24.10641],[87.09525,24.1033],[87.09591,24.09891],[87.10302,24.08454],[87.10851,24.07805],[87.11249,24.06312],[87.11844,24.05876],[87.12202,24.04937],[87.12879,24.04579],[87.13777,24.03631],[87.14871,24.03963],[87.15206,24.03929],[87.16714,24.03065],[87.17951,24.02957],[87.19965,24.02509],[87.20774,24.02692],[87.21655,24.02299],[87.22273,24.02455],[87.23327,24.02408],[87.23528,24.02685],[87.23443,24.03249],[87.2405,24.0384],[87.24128,24.04189],[87.24626,24.04526],[87.25501,24.04218],[87.26073,24.03739],[87.2676,24.03776],[87.27552,24.03295],[87.27889,24.03333],[87.28746,24.02886],[87.29258,24.03344],[87.30737,24.03183],[87.31576,24.03556],[87.32701,24.03286],[87.33712,24.03431],[87.33958,24.02652],[87.33629,24.02603],[87.3358,24.02068],[87.32769,24.01855],[87.32319,24.01264],[87.32363,24.00989],[87.31917,24.00848],[87.32203,24.00305],[87.32817,23.99867],[87.33767,24.00002],[87.35199,23.99918],[87.35701,24.00611],[87.35813,24.01183],[87.36042,24.01309],[87.37512,24.00895],[87.3791,24.00652],[87.38015,24.00408],[87.39462,24.00275],[87.403,23.99751],[87.41657,23.99265],[87.42037,23.99343],[87.42141,23.99231],[87.42323,23.9937],[87.42772,23.99235],[87.42922,23.98645],[87.44054,23.98125],[87.44572,23.98209],[87.4495,23.98796],[87.46039,23.98383],[87.46217,23.99016],[87.46169,23.99487],[87.45515,24.0003],[87.4555,24.00191],[87.44525,24.00202],[87.44384,24.00697],[87.44935,24.00878],[87.44876,24.01137],[87.44139,24.01137],[87.4387,24.00894],[87.43834,24.01355],[87.44453,24.0151],[87.44618,24.01377],[87.45089,24.01802],[87.4523,24.01654],[87.45829,24.01669],[87.45936,24.01882],[87.46165,24.01324],[87.46889,24.01405],[87.47235,24.01634],[87.47613,24.01227],[87.4822,24.01618],[87.49148,24.01862],[87.49688,24.02545],[87.50293,24.02608],[87.50359,24.03183],[87.51198,24.03584],[87.50939,24.04695],[87.49351,24.05416],[87.49528,24.05995],[87.49873,24.06153],[87.49985,24.06516],[87.49478,24.0668],[87.49061,24.07059],[87.49272,24.0769],[87.49827,24.07653],[87.50259,24.07379],[87.50608,24.07559],[87.50686,24.07972],[87.51075,24.08225],[87.50832,24.08543],[87.49739,24.08566],[87.48983,24.09011],[87.49225,24.09381],[87.49671,24.09358],[87.49577,24.099],[87.49756,24.09788],[87.50041,24.10184],[87.49576,24.11279],[87.49762,24.11897],[87.50439,24.11418],[87.5111,24.112],[87.51612,24.11421],[87.52191,24.11367],[87.52708,24.10655],[87.53219,24.10835],[87.5331,24.0998],[87.53538,24.09582],[87.54237,24.0912],[87.54306,24.08609],[87.54664,24.08542],[87.55392,24.08879],[87.55992,24.08197],[87.56253,24.0846],[87.56837,24.08557],[87.57091,24.08838],[87.58022,24.08637],[87.57434,24.1002],[87.5742,24.10799],[87.5766,24.11226],[87.5826,24.11312],[87.58702,24.12374],[87.59101,24.12701],[87.59564,24.12623],[87.59802,24.12811],[87.60233,24.12711],[87.61023,24.13253],[87.60496,24.13292],[87.59446,24.1423],[87.59388,24.14534],[87.57711,24.15653],[87.57432,24.16018],[87.57615,24.16128],[87.58155,24.15929],[87.5814,24.16248],[87.58501,24.16449],[87.58735,24.16155],[87.59272,24.16026],[87.59546,24.16138],[87.60637,24.16064],[87.6066,24.16415],[87.6083,24.16578],[87.61334,24.16444],[87.61528,24.16612],[87.62222,24.16338],[87.62438,24.16519],[87.63158,24.16427],[87.63271,24.15969],[87.64008,24.15723],[87.6422,24.15305],[87.653,24.15598],[87.65362,24.1571],[87.65187,24.1577],[87.65313,24.15872],[87.65679,24.15601],[87.65755,24.1589],[87.66432,24.15759],[87.66734,24.15298],[87.66842,24.15457],[87.67345,24.15154],[87.67559,24.15186],[87.67873,24.14808],[87.68224,24.15096],[87.68481,24.14982],[87.68885,24.15174],[87.69442,24.15024],[87.69699,24.15925],[87.6957,24.16159],[87.69655,24.16569],[87.70243,24.17745],[87.70256,24.18061],[87.69867,24.1808],[87.69846,24.18791],[87.68627,24.18943],[87.68216,24.19251],[87.67635,24.19373],[87.67728,24.1986],[87.67589,24.19976],[87.67558,24.20833],[87.66944,24.21012],[87.66714,24.2067],[87.65799,24.20979],[87.65434,24.20773],[87.63842,24.21415],[87.63776,24.21724],[87.6465,24.22549],[87.64479,24.2294],[87.64663,24.23153],[87.64545,24.23456],[87.63334,24.23704],[87.63494,24.24279],[87.64028,24.24736],[87.63878,24.25438],[87.64042,24.25418],[87.63187,24.25534],[87.62714,24.25771],[87.61433,24.25734],[87.60873,24.25496],[87.60202,24.25732],[87.59418,24.25775],[87.58792,24.25283],[87.58647,24.25597],[87.58351,24.25673],[87.58661,24.26949],[87.58967,24.32262],[87.5712,24.38614],[87.56831,24.49734],[87.56926,24.5007],[87.57662,24.50669],[87.57144,24.50856],[87.57089,24.51438],[87.5651,24.52313],[87.56094,24.52293],[87.55443,24.51925],[87.5499,24.52018],[87.54545,24.51662],[87.54226,24.50913],[87.53841,24.50724],[87.5337,24.50894],[87.53367,24.51284],[87.51956,24.51511],[87.51206,24.52033],[87.50286,24.52377],[87.49913,24.52848],[87.48094,24.52877],[87.47871,24.5233],[87.46282,24.52307],[87.45685,24.51798],[87.45433,24.52025],[87.45019,24.51936],[87.44617,24.51618],[87.43758,24.51828],[87.43114,24.51279],[87.42708,24.51605],[87.42011,24.50836],[87.41228,24.5054],[87.40665,24.50661],[87.39791,24.50058],[87.3935,24.50276],[87.38082,24.50202],[87.3722,24.50529],[87.37067,24.52047],[87.35968,24.52897],[87.35403,24.54304],[87.34241,24.54905],[87.33935,24.55854],[87.32438,24.56977],[87.32731,24.57336],[87.32771,24.57733],[87.31782,24.58317],[87.31013,24.5914],[87.30875,24.5981],[87.30317,24.59621],[87.293,24.59757],[87.2913,24.59604],[87.28054,24.60074],[87.27994,24.60331],[87.27708,24.60491],[87.26896,24.60102],[87.26523,24.59357],[87.26026,24.5906],[87.25308,24.5905],[87.24538,24.58568],[87.22007,24.59827],[87.21837,24.59185],[87.21134,24.59044],[87.20966,24.59339],[87.20026,24.59322],[87.19755,24.59692],[87.19338,24.59668],[87.19079,24.59916],[87.19142,24.60343],[87.18746,24.60671],[87.17794,24.60829],[87.17713,24.60556],[87.17163,24.61339],[87.16758,24.61605],[87.16271,24.6164],[87.16107,24.61436],[87.14981,24.61286],[87.1456,24.61686],[87.13321,24.621],[87.12441,24.6329],[87.11746,24.63448],[87.11392,24.63008],[87.10876,24.6275],[87.10453,24.63132],[87.09756,24.63145],[87.08888,24.63875],[87.08446,24.63562],[87.07726,24.63657],[87.06574,24.64257],[87.05626,24.63892],[87.05678,24.63339],[87.05447,24.62534],[87.04893,24.62144],[87.05081,24.60898],[87.04821,24.60876],[87.04477,24.61297],[87.03811,24.61723],[87.03623,24.61388],[87.02305,24.6157],[87.02415,24.62418],[87.02127,24.62946],[87.01076,24.63119],[87.00764,24.62887],[87.00632,24.62296],[86.9961,24.62011],[86.99268,24.62584],[86.98751,24.62769],[86.98521,24.63278],[86.98065,24.63479],[86.97758,24.63957],[86.96927,24.63536],[86.96154,24.63463],[86.95774,24.6318],[86.95279,24.63147],[86.95134,24.63347],[86.95324,24.63491],[86.95342,24.63972],[86.95599,24.64026],[86.9582,24.64759],[86.94502,24.64868]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"327","area_level":"District","area_name":"East Singhbum","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.30411,23.00923],[86.30224,23.01006],[86.30469,23.0153],[86.30374,23.016],[86.29938,23.00979],[86.29621,23.00968],[86.29212,23.01298],[86.28418,23.00692],[86.27717,23.00738],[86.26787,23.00116],[86.26824,22.99984],[86.26585,22.99798],[86.26056,22.99859],[86.2485,22.99491],[86.24535,22.9982],[86.23927,22.99631],[86.23835,22.99459],[86.24815,22.98324],[86.24267,22.97307],[86.22011,22.97363],[86.21826,22.96793],[86.20472,22.96652],[86.19968,22.96759],[86.19694,22.95994],[86.19289,22.95586],[86.18839,22.94746],[86.18867,22.94594],[86.19468,22.94428],[86.19625,22.94121],[86.19346,22.93853],[86.19059,22.93139],[86.18972,22.92062],[86.19057,22.91099],[86.19375,22.90637],[86.19675,22.89489],[86.21985,22.88924],[86.21448,22.87579],[86.20777,22.87046],[86.20651,22.86169],[86.20167,22.85842],[86.20038,22.85463],[86.20247,22.84917],[86.19895,22.83961],[86.20116,22.83791],[86.19527,22.82565],[86.19639,22.82221],[86.19901,22.82122],[86.19926,22.8178],[86.18555,22.82202],[86.17588,22.83207],[86.1606,22.83623],[86.1589,22.83321],[86.15983,22.82233],[86.14865,22.81309],[86.14586,22.80531],[86.14819,22.79867],[86.15915,22.80137],[86.16581,22.79509],[86.1722,22.79293],[86.17539,22.78809],[86.17197,22.76338],[86.16735,22.76011],[86.16297,22.75993],[86.16342,22.7547],[86.15975,22.75199],[86.162,22.74479],[86.16029,22.74145],[86.1611,22.73695],[86.16583,22.72938],[86.16248,22.71209],[86.16455,22.70371],[86.16433,22.67769],[86.16683,22.66885],[86.15678,22.64693],[86.15753,22.64486],[86.15458,22.63557],[86.14922,22.6317],[86.14701,22.62534],[86.13154,22.61301],[86.11672,22.60385],[86.11411,22.59599],[86.10722,22.5891],[86.10211,22.58106],[86.08067,22.56966],[86.06549,22.55498],[86.06735,22.55104],[86.07546,22.54411],[86.07925,22.53755],[86.09487,22.5195],[86.09715,22.51033],[86.10024,22.50813],[86.10275,22.50024],[86.11112,22.49105],[86.1176,22.48666],[86.12375,22.48861],[86.12876,22.48795],[86.15033,22.48335],[86.15028,22.48021],[86.15632,22.48036],[86.16047,22.48255],[86.16978,22.48152],[86.19726,22.47235],[86.20154,22.47177],[86.20793,22.47349],[86.21388,22.46644],[86.22258,22.46725],[86.2174,22.46261],[86.22467,22.45252],[86.23725,22.45259],[86.2566,22.44541],[86.26394,22.44534],[86.26881,22.4421],[86.27646,22.44732],[86.2813,22.44866],[86.29303,22.42668],[86.29633,22.42403],[86.30264,22.4222],[86.30745,22.41531],[86.30644,22.40961],[86.32082,22.39741],[86.32271,22.39264],[86.32063,22.38902],[86.32116,22.38542],[86.32852,22.3778],[86.34028,22.37292],[86.35016,22.36429],[86.35761,22.35423],[86.35814,22.34921],[86.36642,22.34429],[86.37708,22.34163],[86.40828,22.32097],[86.42681,22.31758],[86.42956,22.30832],[86.43501,22.30651],[86.4372,22.30416],[86.43948,22.3036],[86.44403,22.31027],[86.44307,22.32626],[86.44483,22.32866],[86.44652,22.32911],[86.45292,22.32532],[86.46195,22.32611],[86.46362,22.32875],[86.46228,22.32982],[86.46819,22.3304],[86.47147,22.33578],[86.48346,22.33813],[86.48726,22.34768],[86.49289,22.34708],[86.49414,22.34566],[86.49691,22.3472],[86.50225,22.3434],[86.50384,22.33634],[86.50748,22.33465],[86.50818,22.32786],[86.52169,22.32342],[86.52709,22.3235],[86.52783,22.31549],[86.52319,22.31473],[86.52577,22.31103],[86.52545,22.30761],[86.53276,22.30096],[86.53935,22.30476],[86.54074,22.30824],[86.54386,22.30721],[86.54849,22.30136],[86.55407,22.29847],[86.5574,22.29832],[86.56169,22.30172],[86.56887,22.30144],[86.57088,22.30019],[86.57198,22.29618],[86.57686,22.29556],[86.57681,22.30112],[86.58225,22.30165],[86.58506,22.29536],[86.58739,22.29441],[86.58793,22.28999],[86.59272,22.28544],[86.59392,22.28204],[86.59308,22.27856],[86.59976,22.27887],[86.60352,22.28207],[86.61048,22.28335],[86.62177,22.27704],[86.62579,22.27353],[86.62731,22.26951],[86.63218,22.27323],[86.638,22.2711],[86.63971,22.26551],[86.64438,22.26849],[86.64351,22.26466],[86.64673,22.26536],[86.64951,22.26353],[86.65466,22.25073],[86.6513,22.24438],[86.65317,22.23741],[86.65483,22.23593],[86.65935,22.23616],[86.66624,22.24162],[86.67032,22.24226],[86.67261,22.23967],[86.67531,22.22925],[86.68434,22.22241],[86.70346,22.22118],[86.70794,22.2233],[86.71385,22.22005],[86.72086,22.22041],[86.72766,22.21612],[86.74295,22.21617],[86.74978,22.21169],[86.75792,22.21165],[86.76529,22.21529],[86.77114,22.22035],[86.77641,22.21786],[86.77737,22.22552],[86.77434,22.2311],[86.77475,22.23334],[86.77768,22.23659],[86.78393,22.23641],[86.78974,22.23541],[86.78858,22.23166],[86.79491,22.22779],[86.79321,22.2242],[86.78447,22.2306],[86.77987,22.22266],[86.77865,22.21732],[86.78474,22.21505],[86.78904,22.21925],[86.79014,22.21874],[86.79187,22.22183],[86.80241,22.21755],[86.81202,22.24123],[86.80348,22.24322],[86.79925,22.23788],[86.79486,22.24317],[86.7957,22.24874],[86.79226,22.2663],[86.80111,22.2652],[86.79801,22.24702],[86.79995,22.24461],[86.80399,22.24358],[86.8072,22.24723],[86.80906,22.24664],[86.81059,22.24987],[86.80916,22.25025],[86.81359,22.26739],[86.81494,22.26706],[86.8167,22.25455],[86.81825,22.25372],[86.82396,22.26676],[86.83093,22.26322],[86.83784,22.26565],[86.84271,22.26163],[86.84655,22.26404],[86.84942,22.26334],[86.85109,22.26521],[86.85893,22.25798],[86.86343,22.25878],[86.86525,22.26096],[86.86626,22.25892],[86.87186,22.26006],[86.87322,22.25909],[86.87597,22.26065],[86.87644,22.25911],[86.88006,22.25926],[86.8835,22.25716],[86.88502,22.25855],[86.88632,22.25724],[86.88836,22.26137],[86.88753,22.27387],[86.88933,22.27376],[86.88779,22.29746],[86.87583,22.3015],[86.87224,22.30712],[86.86537,22.3081],[86.85012,22.31564],[86.83974,22.31893],[86.83327,22.32491],[86.83157,22.32878],[86.83229,22.34851],[86.84264,22.37221],[86.84088,22.38319],[86.84563,22.39152],[86.84635,22.39908],[86.83129,22.411],[86.80707,22.42126],[86.79389,22.42166],[86.78582,22.42435],[86.76453,22.42726],[86.76187,22.4317],[86.75903,22.44581],[86.76317,22.44838],[86.75101,22.45671],[86.75106,22.46543],[86.74728,22.47478],[86.74987,22.48295],[86.76609,22.48193],[86.76902,22.48009],[86.78429,22.48124],[86.79117,22.47743],[86.79537,22.48042],[86.8016,22.48883],[86.79378,22.49646],[86.79524,22.49938],[86.8008,22.50074],[86.80239,22.50304],[86.80083,22.5055],[86.79769,22.5064],[86.79651,22.50958],[86.79266,22.51132],[86.79319,22.51399],[86.79494,22.51398],[86.79292,22.52498],[86.78685,22.52685],[86.78896,22.53409],[86.78737,22.53817],[86.79026,22.54122],[86.78929,22.549],[86.78418,22.55029],[86.77519,22.5488],[86.7691,22.55458],[86.76662,22.55841],[86.77157,22.56106],[86.77193,22.56464],[86.76774,22.56698],[86.76686,22.57502],[86.75208,22.57852],[86.73149,22.57691],[86.71115,22.58239],[86.68465,22.57833],[86.67926,22.57446],[86.65952,22.57504],[86.65363,22.58181],[86.65703,22.5908],[86.64448,22.59449],[86.63943,22.59782],[86.63813,22.60122],[86.6386,22.60947],[86.63411,22.61039],[86.63538,22.61831],[86.63902,22.62531],[86.63863,22.65078],[86.64239,22.65701],[86.63604,22.66497],[86.62935,22.66669],[86.62353,22.67564],[86.62027,22.67789],[86.61163,22.67991],[86.60849,22.68399],[86.60253,22.68732],[86.58527,22.69108],[86.57224,22.69926],[86.56299,22.7062],[86.56139,22.7093],[86.5442,22.7216],[86.53513,22.71725],[86.52433,22.71943],[86.52033,22.71523],[86.51293,22.71662],[86.51151,22.71197],[86.51345,22.70717],[86.51133,22.705],[86.50001,22.72046],[86.49768,22.72287],[86.49468,22.72328],[86.49321,22.72639],[86.48154,22.72786],[86.48173,22.7302],[86.47364,22.7397],[86.46968,22.7521],[86.46018,22.76191],[86.45793,22.76336],[86.44842,22.76193],[86.43748,22.77126],[86.4301,22.77469],[86.42581,22.77975],[86.42148,22.78014],[86.41761,22.78368],[86.41868,22.78752],[86.41622,22.78886],[86.41633,22.79137],[86.41881,22.79068],[86.42096,22.79281],[86.42327,22.79192],[86.42256,22.79687],[86.42548,22.79931],[86.42339,22.80216],[86.42525,22.80654],[86.42252,22.80998],[86.42848,22.81934],[86.43885,22.83102],[86.43555,22.83592],[86.4334,22.85336],[86.43588,22.85912],[86.43497,22.86051],[86.43969,22.86426],[86.45077,22.86154],[86.45198,22.87292],[86.45481,22.87858],[86.45343,22.88587],[86.45625,22.88577],[86.46004,22.89208],[86.46463,22.89434],[86.46714,22.89993],[86.46543,22.90239],[86.45297,22.90246],[86.44151,22.91629],[86.44048,22.91949],[86.4362,22.92232],[86.43534,22.92519],[86.44201,22.92797],[86.44301,22.93067],[86.4468,22.93071],[86.45131,22.93325],[86.45436,22.93198],[86.45998,22.93506],[86.46535,22.94546],[86.46912,22.94451],[86.47098,22.94893],[86.47632,22.95118],[86.47793,22.94936],[86.47727,22.94609],[86.4853,22.94277],[86.48913,22.93724],[86.49454,22.94326],[86.49524,22.94685],[86.50078,22.94594],[86.5029,22.94897],[86.50258,22.95187],[86.50784,22.95088],[86.5127,22.94776],[86.51921,22.94824],[86.52141,22.95006],[86.52598,22.94761],[86.53004,22.95215],[86.5316,22.96521],[86.54037,22.9668],[86.54499,22.96589],[86.54408,22.96973],[86.55056,22.97799],[86.5475,22.98232],[86.54738,22.98815],[86.54542,22.99033],[86.53991,22.98458],[86.52814,22.98064],[86.52382,22.97713],[86.52684,22.97549],[86.52619,22.97261],[86.51936,22.97082],[86.50862,22.97304],[86.51378,22.97749],[86.50416,22.98611],[86.50115,22.99359],[86.49769,22.99204],[86.48706,22.99243],[86.48037,22.98982],[86.47573,22.99175],[86.47051,22.98889],[86.45155,22.99024],[86.45085,22.98835],[86.44642,22.98824],[86.4423,22.99323],[86.42531,22.99657],[86.41926,23.00027],[86.41825,22.99921],[86.41972,22.99678],[86.41733,22.99705],[86.41716,22.9932],[86.41329,22.99081],[86.41006,22.99113],[86.4084,22.98906],[86.40689,22.98972],[86.40108,22.98086],[86.39817,22.97991],[86.39426,22.98049],[86.38771,22.98531],[86.38541,22.98945],[86.38502,22.99526],[86.38356,22.99428],[86.3639,22.99958],[86.35443,22.99934],[86.35453,22.99297],[86.34764,22.99662],[86.3437,22.99649],[86.34061,22.99355],[86.33953,22.98981],[86.32593,22.9949],[86.32159,22.99744],[86.31979,23.0006],[86.31612,23.00007],[86.3089,23.00342],[86.30909,23.00705],[86.30411,23.00923]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"328","area_level":"District","area_name":"Garhwa","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.32935,24.10133],[83.34775,24.09629],[83.36424,24.10329],[83.38829,24.09996],[83.40111,24.09203],[83.40664,24.08044],[83.42122,24.08272],[83.42671,24.08648],[83.43225,24.08598],[83.43773,24.07622],[83.43777,24.05817],[83.44487,24.05282],[83.45289,24.04199],[83.47781,24.04119],[83.49353,24.03631],[83.49975,24.03256],[83.50826,24.03116],[83.51617,24.02673],[83.51617,24.02245],[83.52183,24.01596],[83.52388,24.00974],[83.52157,24.00444],[83.51439,23.99835],[83.5153,23.98069],[83.5226,23.97033],[83.52649,23.9605],[83.53536,23.95246],[83.54739,23.93754],[83.54924,23.93102],[83.54692,23.9143],[83.55344,23.89807],[83.55915,23.8929],[83.57043,23.89445],[83.57633,23.89291],[83.58576,23.8864],[83.58603,23.88261],[83.58353,23.87778],[83.56949,23.86908],[83.56894,23.86618],[83.57062,23.86281],[83.57466,23.86121],[83.58242,23.86351],[83.5897,23.86331],[83.61029,23.85397],[83.61809,23.85549],[83.64338,23.84693],[83.65464,23.8499],[83.65949,23.84926],[83.66656,23.84428],[83.66849,23.83666],[83.66335,23.83119],[83.66449,23.82766],[83.67434,23.82717],[83.67869,23.82168],[83.68282,23.81938],[83.68528,23.82033],[83.68873,23.82558],[83.69149,23.82642],[83.70259,23.82297],[83.70535,23.82076],[83.70764,23.81741],[83.70439,23.80661],[83.70514,23.80387],[83.71266,23.80068],[83.72262,23.78658],[83.72159,23.77149],[83.72431,23.76872],[83.73411,23.7647],[83.73774,23.76049],[83.73948,23.73432],[83.74607,23.71949],[83.74212,23.70383],[83.73507,23.70031],[83.73212,23.695],[83.72418,23.69002],[83.72269,23.68713],[83.7236,23.68388],[83.73885,23.66677],[83.74802,23.66173],[83.76158,23.65075],[83.76058,23.6479],[83.75321,23.64339],[83.75167,23.64074],[83.75868,23.62669],[83.77458,23.62263],[83.77637,23.61759],[83.77248,23.6109],[83.77532,23.60895],[83.78987,23.60456],[83.79452,23.6051],[83.80064,23.60202],[83.80698,23.58755],[83.81205,23.58895],[83.81537,23.5962],[83.82587,23.59071],[83.8386,23.58939],[83.84468,23.58665],[83.85305,23.58705],[83.88806,23.57876],[83.89445,23.58265],[83.89939,23.58241],[83.90017,23.58015],[83.90857,23.57625],[83.91879,23.57636],[83.93769,23.56899],[83.9398,23.57086],[83.93803,23.58425],[83.93912,23.59031],[83.93299,23.60075],[83.93382,23.60736],[83.93065,23.61124],[83.93056,23.61826],[83.93191,23.62041],[83.94252,23.62599],[83.94775,23.6267],[83.96134,23.62518],[83.96935,23.62669],[83.97275,23.62592],[83.97349,23.62401],[83.9755,23.62571],[83.98045,23.62489],[83.97951,23.62872],[83.98065,23.63365],[83.98736,23.63229],[83.99714,23.63448],[84.01812,23.63437],[84.02082,23.63646],[84.02163,23.63973],[84.03926,23.65466],[84.05268,23.66039],[84.05648,23.66651],[84.05658,23.6708],[84.05894,23.67179],[84.06192,23.6856],[84.0645,23.68834],[84.06946,23.68806],[84.06969,23.69339],[84.06766,23.695],[84.06441,23.69151],[84.06204,23.69116],[84.06301,23.69564],[84.064,23.69419],[84.06494,23.69586],[84.05827,23.70012],[84.05726,23.698],[84.04972,23.69325],[84.04026,23.6963],[84.03131,23.6944],[84.02408,23.69515],[84.01524,23.70034],[84.0104,23.70737],[84.0022,23.70972],[83.99458,23.71839],[83.99176,23.71837],[83.98594,23.72341],[83.9832,23.73112],[83.98382,23.73319],[83.99654,23.7427],[84.00431,23.74526],[84.0074,23.74799],[84.00874,23.75164],[84.0078,23.75699],[84.01002,23.7646],[84.0251,23.7801],[84.02497,23.78462],[84.01921,23.79251],[84.0188,23.79696],[84.01308,23.79463],[84.00532,23.79525],[84.00221,23.79259],[83.99923,23.79381],[84.00033,23.79774],[83.99848,23.79937],[83.99818,23.80285],[84.0021,23.80996],[84.00094,23.81361],[84.00191,23.81718],[83.99358,23.8223],[83.98399,23.83743],[83.98437,23.84316],[83.98157,23.85409],[83.97373,23.85797],[83.96697,23.85904],[83.96306,23.85947],[83.95795,23.85745],[83.94869,23.8611],[83.9411,23.86743],[83.93798,23.86812],[83.93887,23.8706],[83.93744,23.87327],[83.93893,23.87584],[83.93578,23.8813],[83.93287,23.88251],[83.93705,23.89551],[83.93552,23.89702],[83.93595,23.90062],[83.94218,23.90432],[83.93911,23.91026],[83.93842,23.91595],[83.93833,23.92022],[83.94171,23.92239],[83.93798,23.92514],[83.93227,23.92306],[83.92767,23.92477],[83.92606,23.92679],[83.92943,23.92937],[83.92737,23.93055],[83.92635,23.93582],[83.92323,23.9367],[83.92097,23.93424],[83.91505,23.93744],[83.92011,23.94118],[83.90763,23.95075],[83.90673,23.96007],[83.90191,23.96525],[83.89687,23.96618],[83.8952,23.96931],[83.89692,23.97121],[83.89627,23.97359],[83.89778,23.97409],[83.8952,23.97722],[83.89459,23.98097],[83.88348,23.98494],[83.87393,23.98426],[83.86805,23.98177],[83.86776,23.97927],[83.86996,23.97595],[83.8648,23.97223],[83.86741,23.95473],[83.84568,23.95318],[83.84216,23.95105],[83.83764,23.95209],[83.83335,23.95017],[83.82924,23.9516],[83.82588,23.95597],[83.82158,23.95559],[83.81797,23.96038],[83.82031,23.96293],[83.83234,23.96549],[83.83598,23.96976],[83.83338,23.97225],[83.83671,23.97941],[83.83744,23.98555],[83.83974,23.98821],[83.84226,23.98744],[83.84263,23.99088],[83.83876,23.99103],[83.82994,23.99558],[83.82679,24.00088],[83.83174,24.00335],[83.84553,24.02413],[83.84922,24.0365],[83.85106,24.03729],[83.85741,24.03467],[83.86264,24.03852],[83.86196,24.04239],[83.864,24.0452],[83.86323,24.05095],[83.86576,24.05827],[83.8662,24.06909],[83.87383,24.06944],[83.88526,24.07838],[83.88949,24.07955],[83.89272,24.08617],[83.89807,24.0837],[83.90839,24.08823],[83.91169,24.09485],[83.92143,24.08837],[83.92797,24.09022],[83.93128,24.09564],[83.93687,24.09709],[83.93978,24.10082],[83.9486,24.09515],[83.95241,24.0949],[83.96092,24.10915],[83.96895,24.10547],[83.9714,24.10596],[83.97822,24.10077],[83.98984,24.10112],[83.9912,24.10624],[83.99005,24.11133],[83.98659,24.11355],[83.98293,24.12058],[83.97868,24.12348],[83.97665,24.13718],[83.97766,24.1394],[83.97616,24.14073],[83.97235,24.14002],[83.96923,24.15002],[83.93611,24.16318],[83.90658,24.189],[83.89157,24.19727],[83.88225,24.20505],[83.87364,24.22198],[83.86082,24.24123],[83.84678,24.25678],[83.82943,24.28095],[83.81988,24.28859],[83.81827,24.29178],[83.81788,24.29494],[83.82056,24.30272],[83.83125,24.31329],[83.83219,24.3182],[83.82828,24.33138],[83.81332,24.35033],[83.81453,24.36307],[83.8173,24.37223],[83.82204,24.37832],[83.84489,24.39345],[83.85303,24.40138],[83.85773,24.42562],[83.85702,24.44183],[83.85443,24.44815],[83.85379,24.48107],[83.85694,24.49606],[83.87403,24.52706],[83.87452,24.53231],[83.87286,24.5317],[83.86176,24.53673],[83.8165,24.52908],[83.80018,24.52953],[83.78479,24.52077],[83.75554,24.50972],[83.74647,24.51017],[83.72057,24.50345],[83.69196,24.51106],[83.68816,24.51368],[83.65239,24.5148],[83.6289,24.51249],[83.597,24.51246],[83.57252,24.51655],[83.55093,24.52331],[83.50463,24.52558],[83.4842,24.52211],[83.46894,24.51673],[83.42943,24.51093],[83.4015,24.50343],[83.39609,24.49447],[83.39837,24.49295],[83.39536,24.48873],[83.3982,24.48542],[83.39353,24.47792],[83.39347,24.47539],[83.39093,24.47358],[83.3904,24.46406],[83.38542,24.45702],[83.38657,24.44816],[83.38981,24.44478],[83.39074,24.43942],[83.39354,24.43743],[83.39412,24.43465],[83.40489,24.436],[83.40331,24.41982],[83.40507,24.40478],[83.41894,24.40621],[83.43002,24.39995],[83.43442,24.40075],[83.43604,24.39925],[83.43268,24.39617],[83.43352,24.39328],[83.43749,24.39209],[83.43976,24.38883],[83.4388,24.38773],[83.44227,24.38608],[83.44537,24.37823],[83.4495,24.37703],[83.44797,24.37373],[83.44854,24.3701],[83.45727,24.36455],[83.44517,24.35884],[83.43947,24.34625],[83.43404,24.34297],[83.43346,24.33878],[83.42097,24.33799],[83.41142,24.33986],[83.3921,24.32478],[83.38777,24.3162],[83.38512,24.31705],[83.38003,24.31313],[83.38023,24.31024],[83.38309,24.30847],[83.38545,24.30403],[83.38623,24.29878],[83.39236,24.29599],[83.40149,24.29554],[83.40177,24.29227],[83.40717,24.28878],[83.40635,24.28596],[83.4091,24.26633],[83.40753,24.26213],[83.40032,24.25639],[83.39764,24.24384],[83.38524,24.23911],[83.38488,24.23605],[83.38115,24.23397],[83.37873,24.23036],[83.37857,24.22666],[83.38134,24.2259],[83.38462,24.22054],[83.38122,24.21709],[83.38301,24.21479],[83.37937,24.21325],[83.37862,24.21076],[83.38065,24.20776],[83.38036,24.20506],[83.38185,24.2046],[83.38139,24.20019],[83.38299,24.19792],[83.37502,24.1861],[83.37177,24.17429],[83.36198,24.15639],[83.36156,24.14884],[83.35876,24.14035],[83.35481,24.13559],[83.35406,24.12491],[83.35037,24.1215],[83.34491,24.11085],[83.32935,24.10133]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"329","area_level":"District","area_name":"Giridih","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.05628,24.77575],[86.0551,24.77969],[86.04558,24.77642],[86.03755,24.77648],[86.03236,24.77075],[86.02421,24.76668],[86.00507,24.76188],[85.99644,24.75319],[85.98008,24.74882],[85.97588,24.74572],[85.96905,24.73313],[85.9585,24.7323],[85.93562,24.7356],[85.92158,24.74325],[85.91392,24.74999],[85.90361,24.7656],[85.89987,24.75864],[85.90055,24.75576],[85.89392,24.75176],[85.88595,24.75034],[85.8868,24.74729],[85.88307,24.74327],[85.89131,24.73675],[85.89049,24.73391],[85.88701,24.73109],[85.87804,24.73627],[85.86963,24.73223],[85.86166,24.73514],[85.85623,24.73917],[85.85478,24.73451],[85.82638,24.72803],[85.81978,24.72483],[85.81886,24.715],[85.83123,24.70303],[85.82885,24.69755],[85.83114,24.69348],[85.8335,24.68027],[85.83651,24.67809],[85.83803,24.67282],[85.84308,24.66825],[85.83884,24.66524],[85.83243,24.66582],[85.82853,24.66205],[85.82419,24.6659],[85.8069,24.67284],[85.80435,24.67043],[85.79463,24.667],[85.78476,24.65574],[85.78466,24.64726],[85.77367,24.6436],[85.77506,24.63156],[85.77321,24.62665],[85.77634,24.62175],[85.77453,24.61005],[85.77892,24.60776],[85.78352,24.60265],[85.78711,24.60181],[85.79551,24.607],[85.80275,24.60873],[85.80071,24.60457],[85.79542,24.59985],[85.79216,24.58924],[85.79538,24.5835],[85.80826,24.57296],[85.80485,24.5638],[85.80706,24.5618],[85.80728,24.55516],[85.81086,24.5487],[85.82668,24.54793],[85.83959,24.54433],[85.86945,24.52574],[85.86576,24.50842],[85.86689,24.50056],[85.86478,24.49383],[85.86628,24.49094],[85.86316,24.48897],[85.85733,24.46759],[85.85123,24.46377],[85.84998,24.4577],[85.84667,24.45735],[85.83731,24.44841],[85.83128,24.44487],[85.83201,24.44011],[85.83621,24.43314],[85.83759,24.42427],[85.85614,24.41353],[85.85066,24.40601],[85.85154,24.39881],[85.8555,24.39491],[85.85174,24.39027],[85.85238,24.38746],[85.84974,24.37508],[85.85298,24.37316],[85.85204,24.36889],[85.85333,24.36136],[85.84723,24.34807],[85.8462,24.34019],[85.85201,24.33745],[85.8522,24.32749],[85.86982,24.3283],[85.8713,24.32323],[85.86842,24.31588],[85.87244,24.3092],[85.87363,24.29883],[85.87259,24.29394],[85.87466,24.2872],[85.86292,24.28707],[85.86158,24.2815],[85.85958,24.28038],[85.85919,24.2751],[85.85145,24.27056],[85.85099,24.26762],[85.84037,24.25995],[85.83632,24.25518],[85.83913,24.25169],[85.84987,24.25244],[85.85496,24.24823],[85.85433,24.24531],[85.85787,24.23519],[85.85605,24.21549],[85.86051,24.21156],[85.85293,24.21132],[85.85089,24.21739],[85.84844,24.21878],[85.84116,24.214],[85.82901,24.2171],[85.82013,24.20897],[85.81819,24.21021],[85.81596,24.21636],[85.8094,24.21938],[85.80743,24.22461],[85.8026,24.22596],[85.79893,24.21531],[85.79336,24.2111],[85.77795,24.20681],[85.77026,24.21013],[85.76447,24.20459],[85.75614,24.20068],[85.75062,24.2002],[85.74671,24.20177],[85.74254,24.1977],[85.73587,24.19859],[85.73695,24.19189],[85.73476,24.1899],[85.72312,24.18703],[85.7188,24.1877],[85.71645,24.18287],[85.70478,24.18383],[85.70118,24.18098],[85.68955,24.17895],[85.68281,24.17514],[85.68261,24.1717],[85.67989,24.17029],[85.67977,24.16265],[85.678,24.16044],[85.67541,24.14678],[85.68715,24.14265],[85.69413,24.13901],[85.69566,24.13663],[85.69954,24.13643],[85.70345,24.13162],[85.71301,24.12587],[85.71677,24.11786],[85.71106,24.1112],[85.71201,24.10811],[85.71075,24.10565],[85.7129,24.10257],[85.71169,24.10113],[85.72233,24.09677],[85.72922,24.0994],[85.7349,24.09397],[85.7405,24.0957],[85.74331,24.10136],[85.74899,24.10324],[85.75769,24.09759],[85.77074,24.10322],[85.77838,24.10064],[85.77411,24.09789],[85.77323,24.09425],[85.77117,24.09399],[85.77019,24.09228],[85.77187,24.09108],[85.77819,24.08852],[85.78619,24.09],[85.78991,24.08811],[85.78997,24.08504],[85.79795,24.07834],[85.80585,24.07822],[85.80134,24.07182],[85.80221,24.06734],[85.8167,24.0618],[85.81877,24.0629],[85.81957,24.06692],[85.8239,24.06936],[85.82431,24.07229],[85.82956,24.07195],[85.83115,24.069],[85.8369,24.07166],[85.83707,24.06838],[85.84173,24.06632],[85.83929,24.06051],[85.84507,24.05923],[85.84779,24.06404],[85.85379,24.05951],[85.85167,24.05759],[85.85529,24.05603],[85.85519,24.04771],[85.85741,24.05008],[85.8649,24.0459],[85.86981,24.05161],[85.87328,24.05111],[85.87138,24.04539],[85.87307,24.04507],[85.87429,24.04755],[85.87607,24.04762],[85.87929,24.03864],[85.87678,24.03272],[85.86533,24.02779],[85.85787,24.01776],[85.86993,24.01163],[85.87665,24.00603],[85.88311,24.00723],[85.88553,24.01382],[85.88517,24.01703],[85.89323,24.01469],[85.89703,24.01235],[85.89826,24.00829],[85.89897,24.00345],[85.89683,24.00107],[85.89888,23.99782],[85.89684,23.99577],[85.8989,23.99187],[85.90417,23.98916],[85.90592,23.99099],[85.90983,23.99002],[85.9131,23.98705],[85.9176,23.98656],[85.91962,23.98389],[85.92335,23.98574],[85.92603,23.98177],[85.93118,23.97931],[85.9323,23.97478],[85.93146,23.96837],[85.93279,23.96612],[85.93081,23.96438],[85.93095,23.95844],[85.9286,23.95562],[85.92146,23.95795],[85.9135,23.95511],[85.91265,23.94778],[85.91766,23.94479],[85.92247,23.94741],[85.92778,23.94509],[85.92981,23.92834],[85.93192,23.9251],[85.94697,23.93804],[85.94478,23.92754],[85.94739,23.92334],[85.957,23.92058],[85.9585,23.91631],[85.96373,23.91286],[85.96128,23.90814],[85.96199,23.89976],[85.96719,23.90128],[85.96869,23.89401],[85.97329,23.89351],[85.97547,23.89983],[85.98641,23.90473],[85.98749,23.90702],[85.9902,23.90622],[85.99151,23.90953],[85.99599,23.91121],[86.01534,23.91223],[86.02617,23.91095],[86.05081,23.9172],[86.06259,23.91688],[86.07229,23.92155],[86.09228,23.88748],[86.09951,23.8836],[86.10515,23.8877],[86.11117,23.88702],[86.11216,23.89073],[86.12642,23.90155],[86.12623,23.90786],[86.12858,23.91083],[86.12673,23.9167],[86.12942,23.91908],[86.13261,23.9284],[86.13719,23.93351],[86.14609,23.93002],[86.15166,23.92957],[86.17043,23.93593],[86.17163,23.93855],[86.18568,23.93813],[86.19572,23.94235],[86.20366,23.94127],[86.21256,23.93683],[86.21584,23.93845],[86.2205,23.93778],[86.22351,23.94041],[86.23179,23.93541],[86.23339,23.93844],[86.24526,23.93392],[86.24814,23.93071],[86.25044,23.93125],[86.25315,23.92642],[86.25754,23.92511],[86.25982,23.92107],[86.26874,23.92061],[86.27412,23.92386],[86.27511,23.9227],[86.28054,23.92368],[86.28371,23.92287],[86.28497,23.9201],[86.28784,23.91978],[86.28821,23.91678],[86.29392,23.91578],[86.29561,23.92742],[86.30341,23.93964],[86.30691,23.95137],[86.31384,23.96396],[86.31115,23.96781],[86.31373,23.97676],[86.3173,23.9792],[86.31848,23.98366],[86.32164,23.98309],[86.32268,23.98647],[86.32477,23.98675],[86.33459,24.004],[86.3371,24.00356],[86.34053,24.00653],[86.33925,24.00829],[86.34107,24.01775],[86.32649,24.01936],[86.32469,24.02474],[86.3182,24.03025],[86.32946,24.03614],[86.33384,24.03606],[86.33464,24.04093],[86.33241,24.04106],[86.33221,24.04245],[86.33485,24.04553],[86.33269,24.04912],[86.33909,24.05269],[86.34453,24.05346],[86.36307,24.04821],[86.36776,24.04839],[86.37056,24.05044],[86.37524,24.05858],[86.38085,24.05934],[86.38656,24.05505],[86.39045,24.04592],[86.39457,24.04132],[86.4011,24.03986],[86.41508,24.0316],[86.42294,24.02983],[86.43251,24.03185],[86.44161,24.03144],[86.45602,24.02221],[86.46749,24.01868],[86.47093,24.02234],[86.48389,24.02185],[86.48392,24.03044],[86.47941,24.02696],[86.47639,24.0276],[86.47761,24.03984],[86.48095,24.04342],[86.48372,24.04522],[86.48702,24.04354],[86.4924,24.04461],[86.4953,24.04065],[86.50577,24.04825],[86.51452,24.04819],[86.52188,24.05233],[86.52399,24.05153],[86.52473,24.05382],[86.53029,24.05387],[86.53112,24.05828],[86.53767,24.0686],[86.54367,24.07114],[86.54575,24.07461],[86.54524,24.08017],[86.54339,24.08149],[86.54601,24.08505],[86.54644,24.08969],[86.55295,24.09618],[86.55386,24.10282],[86.5598,24.10946],[86.56123,24.12101],[86.56556,24.12438],[86.56499,24.13653],[86.57204,24.14274],[86.56314,24.14983],[86.55122,24.15522],[86.54805,24.15328],[86.53023,24.15454],[86.52428,24.15823],[86.51473,24.14942],[86.50577,24.14819],[86.49891,24.15234],[86.48515,24.15201],[86.4946,24.16746],[86.49686,24.17547],[86.50185,24.18101],[86.50145,24.18641],[86.50387,24.19337],[86.50034,24.1994],[86.51148,24.20773],[86.507,24.20927],[86.51202,24.21879],[86.51697,24.22213],[86.51656,24.22394],[86.51263,24.22546],[86.5126,24.22853],[86.50868,24.23078],[86.51003,24.23557],[86.51607,24.23981],[86.50998,24.24775],[86.5087,24.25185],[86.5106,24.25372],[86.50843,24.25581],[86.51105,24.25883],[86.51115,24.26265],[86.505,24.27635],[86.50461,24.28253],[86.50181,24.28475],[86.49221,24.28507],[86.48837,24.28692],[86.48612,24.29112],[86.48613,24.29722],[86.48095,24.29827],[86.47798,24.30058],[86.47553,24.31004],[86.4725,24.31261],[86.47343,24.32388],[86.47558,24.33007],[86.46288,24.33183],[86.45766,24.33489],[86.46692,24.34332],[86.47031,24.35357],[86.45698,24.35601],[86.45906,24.36464],[86.4578,24.37131],[86.44943,24.37041],[86.44454,24.36782],[86.43255,24.38014],[86.42778,24.37715],[86.42355,24.37951],[86.42044,24.37867],[86.413,24.38031],[86.40426,24.38855],[86.40242,24.39677],[86.40004,24.39853],[86.397,24.39836],[86.39675,24.40374],[86.38115,24.41291],[86.37806,24.41623],[86.37746,24.41958],[86.37465,24.41705],[86.36857,24.41869],[86.36727,24.42448],[86.35816,24.42926],[86.3499,24.44739],[86.34498,24.44724],[86.34394,24.44398],[86.33485,24.44245],[86.33144,24.44437],[86.31738,24.44152],[86.31355,24.44706],[86.29972,24.44773],[86.29494,24.45092],[86.29456,24.45601],[86.29986,24.45848],[86.29858,24.45965],[86.27601,24.4658],[86.28183,24.47911],[86.29042,24.4789],[86.29338,24.48121],[86.29378,24.48817],[86.29887,24.49525],[86.29942,24.5],[86.30331,24.50545],[86.30898,24.50976],[86.30913,24.51248],[86.30557,24.51941],[86.30569,24.52769],[86.29929,24.53034],[86.29747,24.53351],[86.29713,24.5361],[86.29999,24.53627],[86.30804,24.54881],[86.30414,24.5529],[86.30278,24.55924],[86.30084,24.56012],[86.30403,24.56581],[86.30744,24.56723],[86.30709,24.57139],[86.31761,24.57741],[86.31613,24.58128],[86.32334,24.58664],[86.31936,24.58596],[86.31748,24.58823],[86.31412,24.58702],[86.30856,24.58846],[86.30917,24.58389],[86.30302,24.58328],[86.30074,24.58608],[86.29745,24.5851],[86.29192,24.5884],[86.28799,24.587],[86.28492,24.58786],[86.28152,24.58511],[86.27455,24.58658],[86.26946,24.58477],[86.27508,24.57975],[86.27467,24.57713],[86.2677,24.58055],[86.26434,24.58425],[86.26282,24.58396],[86.2626,24.57927],[86.25921,24.57867],[86.25695,24.58057],[86.25454,24.58709],[86.2461,24.58761],[86.24154,24.59001],[86.2408,24.59696],[86.23834,24.60013],[86.22954,24.60572],[86.22417,24.60679],[86.22216,24.6109],[86.2183,24.61101],[86.2143,24.61379],[86.21336,24.60235],[86.21635,24.59854],[86.21445,24.59493],[86.20765,24.59113],[86.19727,24.58824],[86.19448,24.58565],[86.1858,24.58595],[86.18048,24.58368],[86.17945,24.58509],[86.1615,24.58625],[86.15022,24.59513],[86.15184,24.60081],[86.15072,24.60255],[86.14135,24.60704],[86.13264,24.60552],[86.12922,24.611],[86.12532,24.61148],[86.12496,24.61417],[86.12113,24.61821],[86.12203,24.62186],[86.11865,24.62578],[86.11946,24.62993],[86.1214,24.6317],[86.12045,24.63544],[86.11852,24.6359],[86.1199,24.63875],[86.11715,24.63949],[86.11522,24.64395],[86.12509,24.65457],[86.12706,24.66687],[86.12475,24.67111],[86.1319,24.67589],[86.13232,24.67901],[86.12902,24.68623],[86.12836,24.69865],[86.119,24.71118],[86.11652,24.71229],[86.1164,24.71731],[86.10869,24.7272],[86.1094,24.7307],[86.10741,24.7348],[86.09073,24.746],[86.06631,24.75165],[86.0558,24.74605],[86.03709,24.74113],[86.0351,24.74636],[86.04323,24.74763],[86.04688,24.75266],[86.05217,24.75455],[86.05542,24.75836],[86.05854,24.77096],[86.05628,24.77575]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"33","area_level":"District","area_name":"Hoshiarpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.59694,32.06872],[75.59474,32.07025],[75.59579,32.07443],[75.59459,32.0784],[75.59691,32.08209],[75.59581,32.08574],[75.59218,32.08108],[75.58297,32.07783],[75.57286,32.06622],[75.56768,32.04499],[75.5628,32.03773],[75.55911,32.03491],[75.55564,32.03447],[75.55445,32.03216],[75.53489,32.03046],[75.53803,32.02881],[75.53851,32.02613],[75.54164,32.02498],[75.54321,32.01492],[75.54703,32.0077],[75.55715,31.99948],[75.55073,31.98707],[75.5497,31.9879],[75.54348,31.98257],[75.54652,31.98001],[75.54293,31.9766],[75.54163,31.96725],[75.53759,31.96764],[75.53388,31.96033],[75.53102,31.94142],[75.537,31.94194],[75.54002,31.92592],[75.54818,31.9097],[75.55672,31.89934],[75.55935,31.88776],[75.56512,31.88816],[75.56913,31.87472],[75.56954,31.85483],[75.56452,31.85418],[75.56242,31.85103],[75.55374,31.85068],[75.55364,31.84957],[75.54781,31.84871],[75.55006,31.8397],[75.55142,31.83987],[75.55107,31.82604],[75.5624,31.8275],[75.56149,31.82295],[75.56472,31.81448],[75.56857,31.81422],[75.56738,31.81236],[75.56878,31.80559],[75.5672,31.80028],[75.55919,31.79942],[75.56387,31.79476],[75.55907,31.7822],[75.55244,31.7766],[75.5366,31.7779],[75.52946,31.78228],[75.53375,31.77359],[75.54076,31.76499],[75.53857,31.76491],[75.53743,31.75064],[75.54271,31.75045],[75.53496,31.7391],[75.53481,31.73671],[75.52717,31.73086],[75.51345,31.71278],[75.4942,31.69797],[75.4939,31.68957],[75.49075,31.68037],[75.484,31.67707],[75.48371,31.67462],[75.48027,31.67169],[75.48422,31.66956],[75.47139,31.6539],[75.47432,31.65016],[75.47601,31.65157],[75.4854,31.65021],[75.49803,31.64222],[75.50198,31.64384],[75.505,31.64201],[75.50818,31.64335],[75.51368,31.63915],[75.52001,31.64038],[75.52339,31.63747],[75.52478,31.63283],[75.52695,31.63424],[75.53156,31.63361],[75.53225,31.6351],[75.52895,31.63689],[75.5315,31.6403],[75.5305,31.64317],[75.53275,31.6487],[75.54286,31.64762],[75.54205,31.64636],[75.55091,31.63393],[75.55554,31.6354],[75.55569,31.63984],[75.55698,31.64004],[75.57233,31.63537],[75.56718,31.61079],[75.57128,31.6097],[75.56997,31.6166],[75.57352,31.6175],[75.57611,31.60659],[75.59364,31.60464],[75.5938,31.6031],[75.59788,31.60658],[75.59781,31.60968],[75.60394,31.6113],[75.60997,31.6101],[75.61087,31.60815],[75.62034,31.60404],[75.62154,31.60559],[75.62472,31.60367],[75.6282,31.60492],[75.6323,31.61222],[75.63914,31.61032],[75.63798,31.61464],[75.63909,31.61813],[75.64692,31.61386],[75.64741,31.61122],[75.65002,31.61097],[75.65018,31.60719],[75.66115,31.6051],[75.66876,31.60821],[75.67252,31.60317],[75.67093,31.59969],[75.67176,31.59641],[75.68145,31.59206],[75.68222,31.58287],[75.67982,31.57954],[75.68157,31.57431],[75.68457,31.5714],[75.68895,31.57004],[75.6884,31.56673],[75.69025,31.56657],[75.69532,31.55419],[75.70357,31.5558],[75.70569,31.54188],[75.6993,31.53938],[75.70263,31.52908],[75.71255,31.52926],[75.71714,31.51994],[75.72309,31.52202],[75.72698,31.51594],[75.73319,31.51711],[75.73474,31.50656],[75.73327,31.50469],[75.73817,31.5024],[75.73682,31.49937],[75.73437,31.49934],[75.73606,31.49486],[75.73845,31.49537],[75.74354,31.49085],[75.74399,31.48703],[75.74758,31.48497],[75.75289,31.48515],[75.75457,31.47999],[75.75605,31.48107],[75.75936,31.47567],[75.7645,31.47708],[75.76952,31.47218],[75.7786,31.47157],[75.78219,31.46227],[75.78588,31.4628],[75.78764,31.45977],[75.78354,31.45753],[75.78677,31.45195],[75.78981,31.44871],[75.7953,31.4502],[75.79669,31.45373],[75.79947,31.4538],[75.80569,31.4352],[75.80951,31.43551],[75.81364,31.43072],[75.81558,31.43097],[75.81658,31.42596],[75.8151,31.42215],[75.8123,31.42073],[75.81616,31.41261],[75.81769,31.41279],[75.82046,31.40456],[75.80562,31.3989],[75.80688,31.39651],[75.80539,31.39591],[75.80621,31.39258],[75.80359,31.38875],[75.78609,31.38225],[75.7811,31.3822],[75.78604,31.36874],[75.79438,31.37009],[75.79473,31.37182],[75.80156,31.37399],[75.80453,31.36968],[75.80875,31.37043],[75.81234,31.36063],[75.81654,31.36187],[75.81732,31.35939],[75.82176,31.35695],[75.82431,31.35747],[75.82385,31.35899],[75.83242,31.36059],[75.83365,31.36235],[75.82973,31.36978],[75.83632,31.37278],[75.8388,31.36959],[75.84975,31.37279],[75.85687,31.34986],[75.85916,31.35198],[75.8787,31.35489],[75.88266,31.34727],[75.89109,31.34462],[75.89112,31.34059],[75.89902,31.34131],[75.9059,31.34496],[75.90468,31.33668],[75.89935,31.33479],[75.885,31.33411],[75.88497,31.33196],[75.8804,31.32841],[75.88161,31.32694],[75.87951,31.3258],[75.88034,31.3224],[75.87733,31.32197],[75.87572,31.32491],[75.87716,31.32738],[75.87105,31.32476],[75.87138,31.32182],[75.86636,31.31803],[75.8671,31.31081],[75.85294,31.29612],[75.85557,31.28903],[75.86408,31.29036],[75.86601,31.28586],[75.86452,31.28193],[75.87292,31.28494],[75.87556,31.28422],[75.87754,31.29015],[75.88169,31.29071],[75.8874,31.28454],[75.88671,31.27994],[75.88958,31.27541],[75.8948,31.27631],[75.90036,31.28023],[75.91046,31.27868],[75.9156,31.2845],[75.91814,31.2806],[75.91587,31.27901],[75.92469,31.27546],[75.92563,31.27325],[75.9241,31.27357],[75.9246,31.27236],[75.93058,31.26837],[75.93245,31.26886],[75.93153,31.27192],[75.93415,31.27187],[75.93379,31.27415],[75.94212,31.27382],[75.94091,31.27276],[75.94445,31.26783],[75.95084,31.26498],[75.95449,31.26129],[75.95606,31.25599],[75.95388,31.25326],[75.96637,31.25774],[75.97047,31.25226],[75.9863,31.25775],[75.98658,31.25978],[75.99122,31.26103],[75.99339,31.25982],[75.99729,31.25132],[76.00309,31.24423],[76.00738,31.24439],[76.02218,31.2564],[76.02214,31.25819],[76.02531,31.25908],[76.02901,31.25057],[76.02634,31.24978],[76.0279,31.24257],[76.05466,31.22629],[76.05472,31.22456],[76.04975,31.22285],[76.04489,31.2186],[76.04948,31.21331],[76.05174,31.21633],[76.06204,31.21682],[76.06178,31.21877],[76.06538,31.21879],[76.06387,31.22058],[76.06388,31.22496],[76.0657,31.22587],[76.07766,31.22818],[76.07989,31.22602],[76.08661,31.22431],[76.08754,31.21489],[76.08865,31.21451],[76.08777,31.2068],[76.08536,31.20328],[76.08766,31.19852],[76.09142,31.19721],[76.09409,31.19238],[76.09382,31.18623],[76.10204,31.17749],[76.10568,31.17765],[76.10649,31.17307],[76.11715,31.16668],[76.12401,31.16689],[76.12984,31.16931],[76.13293,31.15644],[76.1355,31.15379],[76.13726,31.14681],[76.1444,31.15028],[76.14429,31.15206],[76.15583,31.15258],[76.15751,31.14562],[76.15506,31.14341],[76.15605,31.14078],[76.16583,31.1396],[76.17025,31.13424],[76.18095,31.13567],[76.18771,31.13274],[76.20973,31.13709],[76.20582,31.14973],[76.20093,31.15607],[76.20761,31.15895],[76.20556,31.16707],[76.19682,31.17618],[76.19581,31.17998],[76.19722,31.18192],[76.1951,31.18419],[76.20889,31.1913],[76.21211,31.18535],[76.22141,31.18788],[76.22422,31.18488],[76.23436,31.18576],[76.23819,31.18676],[76.23891,31.18941],[76.24602,31.19641],[76.23768,31.20387],[76.23671,31.20682],[76.23478,31.20084],[76.22649,31.19859],[76.23011,31.21319],[76.23459,31.21709],[76.23719,31.22486],[76.24062,31.22545],[76.2391,31.24445],[76.24425,31.24507],[76.257,31.23648],[76.27725,31.23521],[76.28136,31.22863],[76.29476,31.22037],[76.31819,31.21418],[76.33014,31.2254],[76.33177,31.22868],[76.33934,31.23184],[76.34213,31.23097],[76.34792,31.23583],[76.34936,31.24138],[76.33982,31.24549],[76.34139,31.24978],[76.3357,31.25335],[76.33015,31.25994],[76.32828,31.26646],[76.32405,31.26869],[76.32072,31.26837],[76.30764,31.27807],[76.30697,31.28678],[76.30967,31.29105],[76.30537,31.29439],[76.29615,31.29085],[76.29293,31.29511],[76.28808,31.2953],[76.2866,31.29943],[76.28924,31.30622],[76.28691,31.30735],[76.28429,31.3047],[76.27437,31.30056],[76.27266,31.30263],[76.27081,31.30237],[76.26934,31.31192],[76.26481,31.31],[76.25671,31.31034],[76.25099,31.30767],[76.23914,31.30885],[76.21397,31.29939],[76.1891,31.30049],[76.18432,31.30565],[76.17963,31.30709],[76.18138,31.33365],[76.17882,31.34047],[76.1761,31.34197],[76.159,31.34369],[76.15769,31.34706],[76.15331,31.34954],[76.15212,31.35272],[76.14936,31.35326],[76.14898,31.35742],[76.14689,31.35898],[76.14863,31.36093],[76.1473,31.36463],[76.14728,31.3803],[76.15402,31.3829],[76.16857,31.39625],[76.16979,31.39895],[76.16654,31.40575],[76.16831,31.41044],[76.16013,31.41539],[76.16254,31.42117],[76.15672,31.43076],[76.15231,31.43362],[76.14532,31.43413],[76.14495,31.43679],[76.14043,31.44158],[76.13899,31.4487],[76.13313,31.45189],[76.13545,31.45867],[76.13468,31.46141],[76.13028,31.46505],[76.13069,31.47104],[76.12871,31.47178],[76.1277,31.47453],[76.12165,31.47732],[76.1209,31.48015],[76.11705,31.48301],[76.12075,31.4893],[76.11916,31.49316],[76.12069,31.49766],[76.11295,31.50012],[76.11003,31.50687],[76.10644,31.51004],[76.10369,31.52058],[76.1019,31.52239],[76.10266,31.52506],[76.09807,31.53265],[76.09942,31.53504],[76.09861,31.53725],[76.09218,31.54071],[76.0919,31.54415],[76.08966,31.5451],[76.08923,31.54762],[76.08515,31.54852],[76.08196,31.55186],[76.07738,31.56076],[76.07331,31.56393],[76.07252,31.56974],[76.06668,31.57322],[76.06456,31.57963],[76.05971,31.58132],[76.05629,31.58533],[76.05802,31.58885],[76.05378,31.59322],[76.05881,31.59594],[76.05752,31.59746],[76.05822,31.60177],[76.05585,31.6055],[76.05376,31.60586],[76.04856,31.60271],[76.04617,31.60364],[76.04135,31.61068],[76.03788,31.60952],[76.03668,31.61325],[76.02929,31.61892],[76.02862,31.62288],[76.02451,31.62457],[76.01794,31.63313],[76.02227,31.63961],[76.01738,31.6466],[76.01965,31.64886],[76.00966,31.65335],[76.00673,31.66314],[76.00574,31.676],[76.00143,31.68337],[76.00078,31.68853],[75.99835,31.68956],[75.9931,31.69685],[75.99165,31.70142],[75.99296,31.7034],[75.98895,31.70767],[75.98872,31.7127],[75.98305,31.71881],[75.98322,31.72147],[75.97946,31.72602],[75.97842,31.73366],[75.97445,31.73488],[75.97265,31.73856],[75.97248,31.74145],[75.97542,31.74251],[75.97515,31.74373],[75.97112,31.74918],[75.97235,31.75096],[75.97066,31.75649],[75.96624,31.76654],[75.96341,31.76879],[75.96323,31.77388],[75.96022,31.78113],[75.95312,31.78329],[75.95307,31.78957],[75.93668,31.81541],[75.94182,31.81269],[75.9475,31.81301],[75.95699,31.8163],[75.9581,31.81841],[75.96737,31.82381],[75.96941,31.82383],[75.97327,31.81843],[75.97561,31.81875],[75.97857,31.813],[75.98195,31.814],[75.9835,31.81161],[75.98654,31.81224],[75.98649,31.81792],[75.97486,31.82835],[75.97123,31.82846],[75.97091,31.83342],[75.96597,31.83827],[75.9612,31.85485],[75.94512,31.88361],[75.93875,31.89105],[75.93665,31.89882],[75.91556,31.93101],[75.91157,31.93982],[75.91041,31.95011],[75.90371,31.95272],[75.8925,31.96178],[75.88268,31.96582],[75.88303,31.96889],[75.87426,31.96946],[75.85698,31.9738],[75.85106,31.98201],[75.82171,31.98392],[75.79966,31.99375],[75.77979,32.00465],[75.76498,32.01991],[75.75084,32.03768],[75.74295,32.03945],[75.72386,32.03259],[75.71207,32.03998],[75.70332,32.05515],[75.69291,32.06043],[75.67767,32.06333],[75.67412,32.06711],[75.67425,32.0704],[75.66324,32.07401],[75.66292,32.07573],[75.65432,32.07732],[75.64622,32.07274],[75.63429,32.07124],[75.6307,32.07419],[75.60155,32.06554],[75.60003,32.06867],[75.59694,32.06872]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"330","area_level":"District","area_name":"Godda","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[87.48822,24.97395],[87.48768,24.97401],[87.48715,24.97374],[87.48698,24.97315],[87.48706,24.97174],[87.48684,24.97082],[87.48685,24.96974],[87.48825,24.96881],[87.49058,24.96573],[87.49261,24.9652],[87.49574,24.96529],[87.4992,24.96634],[87.50044,24.96654],[87.50135,24.96881],[87.50179,24.97108],[87.50048,24.97101],[87.49669,24.97147],[87.49518,24.97202],[87.49231,24.97247],[87.48928,24.97258],[87.48822,24.97395]]],[[[87.50174,25.00665],[87.50303,25.0081],[87.50379,25.00844],[87.50352,25.00951],[87.50308,25.0104],[87.50262,25.01201],[87.50209,25.01239],[87.50069,25.01397],[87.49952,25.01331],[87.49802,25.01233],[87.4968,25.01189],[87.49508,25.01158],[87.49585,25.01104],[87.49724,25.00992],[87.49757,25.00905],[87.49868,25.0069],[87.49894,25.00623],[87.50025,25.00601],[87.50174,25.00665]]],[[[87.54485,25.07036],[87.54481,25.07101],[87.54438,25.07189],[87.54392,25.07267],[87.54291,25.07362],[87.54019,25.07512],[87.53873,25.07546],[87.53794,25.07577],[87.53533,25.07309],[87.53317,25.0714],[87.53186,25.07063],[87.5312,25.06951],[87.53086,25.06836],[87.53608,25.06638],[87.53617,25.0666],[87.53604,25.06707],[87.53559,25.06756],[87.53645,25.0686],[87.53704,25.0697],[87.53711,25.0701],[87.53822,25.07022],[87.53944,25.07013],[87.5397,25.06925],[87.54019,25.06876],[87.54132,25.06856],[87.54217,25.06816],[87.54276,25.06813],[87.54353,25.06852],[87.54408,25.069],[87.54451,25.06966],[87.5449,25.06988],[87.54485,25.07036]]],[[[87.39627,25.22684],[87.39139,25.22787],[87.38753,25.22293],[87.3841,25.22438],[87.38165,25.22319],[87.37897,25.21797],[87.3751,25.21505],[87.37152,25.20625],[87.35988,25.21188],[87.33428,25.21613],[87.33324,25.22268],[87.32729,25.22362],[87.32281,25.20628],[87.31823,25.19526],[87.32084,25.18995],[87.3154,25.18013],[87.31422,25.16881],[87.31899,25.16477],[87.31647,25.16026],[87.31437,25.16028],[87.31198,25.14877],[87.30797,25.14741],[87.30494,25.14289],[87.30664,25.14079],[87.30574,25.13794],[87.30685,25.13641],[87.30295,25.13424],[87.2962,25.11336],[87.29793,25.11205],[87.29522,25.10236],[87.29812,25.09976],[87.2954,25.08854],[87.26982,25.09397],[87.26705,25.09791],[87.26368,25.09964],[87.26318,25.10331],[87.25034,25.10573],[87.25095,25.10201],[87.24883,25.10132],[87.24934,25.10012],[87.24688,25.09966],[87.24436,25.10143],[87.24054,25.09797],[87.23981,25.09209],[87.23767,25.09233],[87.2374,25.08584],[87.21429,25.09123],[87.21273,25.08195],[87.20795,25.08237],[87.201,25.07872],[87.19921,25.07285],[87.19561,25.07078],[87.19368,25.07204],[87.1927,25.07008],[87.19452,25.0689],[87.19225,25.06685],[87.18942,25.06799],[87.18196,25.06697],[87.17773,25.06298],[87.17182,25.04828],[87.16587,25.04613],[87.16726,25.04061],[87.16322,25.03776],[87.1589,25.02897],[87.14964,25.02518],[87.14654,25.02055],[87.14697,25.01334],[87.14561,25.00981],[87.15032,25.00255],[87.14923,24.99896],[87.15126,24.98725],[87.14891,24.9776],[87.14612,24.97357],[87.14914,24.96896],[87.14728,24.96476],[87.14881,24.95987],[87.14364,24.94414],[87.15091,24.93478],[87.15174,24.93156],[87.14961,24.92659],[87.14292,24.92218],[87.14236,24.91372],[87.14414,24.9106],[87.14733,24.90991],[87.14806,24.90357],[87.1519,24.90373],[87.1538,24.89997],[87.15098,24.89879],[87.15543,24.89282],[87.15539,24.88438],[87.14734,24.87109],[87.14091,24.86591],[87.14069,24.86408],[87.14449,24.86331],[87.14259,24.8606],[87.13478,24.85961],[87.13242,24.86261],[87.1291,24.86173],[87.12059,24.85519],[87.11007,24.85701],[87.10612,24.85506],[87.09878,24.84786],[87.10038,24.84768],[87.10177,24.8437],[87.10072,24.84002],[87.0912,24.82547],[87.08521,24.8236],[87.07736,24.82528],[87.07434,24.81985],[87.07331,24.8086],[87.08355,24.80606],[87.08578,24.80363],[87.09574,24.80272],[87.09289,24.79191],[87.08801,24.78634],[87.08535,24.78632],[87.08357,24.78192],[87.07871,24.77753],[87.08002,24.77455],[87.0786,24.76833],[87.08431,24.75613],[87.0781,24.75243],[87.07942,24.74888],[87.07021,24.74764],[87.06959,24.74431],[87.07386,24.74137],[87.0729,24.73703],[87.07861,24.7366],[87.07638,24.73091],[87.08074,24.72907],[87.07909,24.72769],[87.08033,24.72622],[87.07714,24.72157],[87.07823,24.71935],[87.07258,24.71472],[87.06805,24.70339],[87.07031,24.69711],[87.06941,24.69429],[87.06549,24.689],[87.06194,24.68879],[87.05975,24.6826],[87.05975,24.67632],[87.05407,24.66934],[87.05341,24.65743],[87.05067,24.65161],[87.05058,24.64463],[87.05244,24.64127],[87.04615,24.62987],[87.04893,24.62144],[87.05412,24.62479],[87.05678,24.63339],[87.05626,24.63892],[87.06574,24.64257],[87.07726,24.63657],[87.08446,24.63562],[87.08888,24.63875],[87.09756,24.63145],[87.10453,24.63132],[87.10876,24.6275],[87.11851,24.63453],[87.12531,24.63244],[87.13321,24.621],[87.1456,24.61686],[87.14981,24.61286],[87.16107,24.61436],[87.16271,24.6164],[87.16758,24.61605],[87.17163,24.61339],[87.17713,24.60556],[87.17794,24.60829],[87.18746,24.60671],[87.19142,24.60343],[87.19097,24.59876],[87.19409,24.5964],[87.19755,24.59692],[87.20026,24.59322],[87.20966,24.59339],[87.21134,24.59044],[87.21487,24.59059],[87.21837,24.59185],[87.22007,24.59827],[87.24538,24.58568],[87.25308,24.5905],[87.26026,24.5906],[87.26523,24.59357],[87.26896,24.60102],[87.27708,24.60491],[87.27994,24.60331],[87.28054,24.60074],[87.2913,24.59604],[87.293,24.59757],[87.30317,24.59621],[87.30875,24.5981],[87.31013,24.5914],[87.31782,24.58317],[87.32771,24.57733],[87.32731,24.57336],[87.32438,24.56977],[87.33935,24.55854],[87.34241,24.54905],[87.35403,24.54304],[87.35968,24.52897],[87.37067,24.52047],[87.3722,24.50529],[87.38082,24.50202],[87.3935,24.50276],[87.39791,24.50058],[87.40665,24.50661],[87.41228,24.5054],[87.42011,24.50836],[87.42528,24.51502],[87.42261,24.51687],[87.41865,24.51123],[87.41143,24.51059],[87.40672,24.50821],[87.40064,24.50815],[87.39755,24.51049],[87.39417,24.51028],[87.39057,24.51686],[87.39049,24.52122],[87.38742,24.52439],[87.39158,24.53744],[87.3903,24.54116],[87.39241,24.54761],[87.39849,24.54686],[87.40617,24.5356],[87.40758,24.54088],[87.41537,24.53974],[87.41344,24.54282],[87.41722,24.54621],[87.42089,24.55399],[87.42913,24.55485],[87.43211,24.55846],[87.43807,24.55735],[87.43847,24.56363],[87.44064,24.56852],[87.45041,24.56197],[87.45841,24.56879],[87.46414,24.56654],[87.46829,24.56982],[87.46709,24.58091],[87.45718,24.58582],[87.45633,24.58813],[87.45675,24.59908],[87.46482,24.60367],[87.46215,24.61667],[87.45019,24.61652],[87.44578,24.61835],[87.44784,24.62294],[87.44858,24.63167],[87.45579,24.6357],[87.45797,24.63875],[87.46322,24.63948],[87.4672,24.64458],[87.47009,24.64328],[87.4751,24.64748],[87.47282,24.65151],[87.4735,24.65708],[87.47062,24.66728],[87.47245,24.66833],[87.46948,24.67411],[87.46867,24.68202],[87.47124,24.68328],[87.47093,24.68533],[87.47433,24.68876],[87.47151,24.69269],[87.47061,24.69993],[87.46575,24.70222],[87.46466,24.70527],[87.46539,24.72058],[87.46184,24.72239],[87.46193,24.72531],[87.45771,24.72661],[87.45808,24.72955],[87.46073,24.73164],[87.45856,24.7348],[87.45509,24.73557],[87.45387,24.73721],[87.45515,24.73775],[87.44423,24.75084],[87.43953,24.75142],[87.43662,24.75569],[87.43671,24.75822],[87.43938,24.76306],[87.44345,24.76594],[87.4443,24.76903],[87.45006,24.7705],[87.45171,24.77724],[87.45668,24.77935],[87.45718,24.78176],[87.45421,24.78592],[87.46035,24.78589],[87.45906,24.79073],[87.46041,24.79223],[87.46696,24.79397],[87.47381,24.78921],[87.48048,24.7869],[87.48841,24.78947],[87.48903,24.78542],[87.4992,24.78229],[87.49676,24.78708],[87.49756,24.79023],[87.50133,24.79273],[87.50572,24.79315],[87.51107,24.79801],[87.50648,24.79751],[87.50627,24.79984],[87.49866,24.80334],[87.49737,24.80257],[87.49647,24.80732],[87.49411,24.80718],[87.49408,24.81389],[87.48381,24.82115],[87.48457,24.82782],[87.47866,24.83112],[87.47978,24.84177],[87.47603,24.84286],[87.47908,24.84882],[87.47441,24.84918],[87.47605,24.85483],[87.46182,24.86541],[87.45828,24.86262],[87.45745,24.86398],[87.45734,24.86947],[87.46301,24.87269],[87.4697,24.87302],[87.46951,24.87977],[87.46435,24.8834],[87.46092,24.8838],[87.45452,24.89098],[87.456,24.89485],[87.46388,24.8951],[87.4692,24.9032],[87.46795,24.91897],[87.46165,24.91707],[87.45948,24.92085],[87.46074,24.92354],[87.45943,24.92686],[87.46075,24.92764],[87.45906,24.93432],[87.45582,24.93876],[87.46044,24.94024],[87.4612,24.94356],[87.46559,24.9489],[87.46278,24.95095],[87.46309,24.95424],[87.47229,24.95494],[87.46995,24.96176],[87.47061,24.96869],[87.47393,24.96859],[87.47455,24.9744],[87.47791,24.97443],[87.4791,24.97656],[87.47289,24.97699],[87.46366,24.98399],[87.45944,24.98388],[87.4594,24.99159],[87.46755,25.00205],[87.47731,25.00568],[87.48226,25.01158],[87.49267,25.01414],[87.50128,25.01962],[87.50248,25.02689],[87.5079,25.03058],[87.50674,25.03558],[87.51229,25.03887],[87.50893,25.04188],[87.50835,25.04917],[87.50592,25.05287],[87.50912,25.05459],[87.51477,25.05383],[87.52284,25.05926],[87.5118,25.06598],[87.50882,25.07056],[87.50986,25.07626],[87.50807,25.07935],[87.50145,25.08002],[87.49478,25.08508],[87.49335,25.09275],[87.47414,25.10447],[87.50114,25.13945],[87.4799,25.19387],[87.4626,25.19487],[87.46113,25.19776],[87.45885,25.19685],[87.44472,25.20456],[87.44089,25.20473],[87.42604,25.21111],[87.42255,25.21393],[87.41183,25.21507],[87.41185,25.21893],[87.40349,25.22241],[87.4016,25.22676],[87.39627,25.22684]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"331","area_level":"District","area_name":"Gumla","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.37671,23.60505],[84.3585,23.60893],[84.35389,23.60563],[84.35079,23.59938],[84.34228,23.59935],[84.34381,23.59596],[84.34146,23.59435],[84.34372,23.59058],[84.34195,23.58466],[84.32819,23.58056],[84.31899,23.58025],[84.3192,23.57473],[84.32746,23.5543],[84.32741,23.53216],[84.33271,23.52937],[84.32789,23.52228],[84.32663,23.51487],[84.32634,23.51202],[84.32998,23.51029],[84.33088,23.50816],[84.32877,23.50294],[84.32891,23.49301],[84.32492,23.49203],[84.31657,23.49331],[84.31652,23.49105],[84.31976,23.4901],[84.31751,23.48688],[84.31754,23.48191],[84.3018,23.48426],[84.29064,23.49357],[84.28719,23.49022],[84.28206,23.46709],[84.27641,23.47173],[84.27515,23.46744],[84.27734,23.46748],[84.27387,23.4634],[84.25692,23.45894],[84.24813,23.44975],[84.24587,23.4431],[84.24897,23.44046],[84.2518,23.43244],[84.25515,23.42942],[84.25577,23.42454],[84.25124,23.40893],[84.25337,23.40246],[84.25306,23.39765],[84.25609,23.39456],[84.25774,23.3848],[84.26008,23.38226],[84.25749,23.37294],[84.25321,23.37336],[84.24768,23.3666],[84.2481,23.35636],[84.24312,23.35472],[84.24434,23.35026],[84.24108,23.34772],[84.23511,23.34692],[84.23441,23.34526],[84.22873,23.34505],[84.22551,23.34161],[84.22179,23.34049],[84.20222,23.33827],[84.19852,23.33491],[84.19522,23.32672],[84.19205,23.32534],[84.18679,23.32554],[84.15392,23.33589],[84.14996,23.33516],[84.1423,23.33946],[84.13429,23.34123],[84.13171,23.34625],[84.123,23.34685],[84.12123,23.34912],[84.11608,23.35068],[84.11295,23.34305],[84.10736,23.34362],[84.10524,23.3402],[84.10217,23.34057],[84.10015,23.33908],[84.09576,23.33411],[84.09744,23.33134],[84.07765,23.33241],[84.07427,23.33384],[84.07428,23.32917],[84.06219,23.30766],[84.06812,23.29378],[84.06248,23.28843],[84.0646,23.27472],[84.05985,23.26879],[84.05373,23.2473],[84.05383,23.24375],[84.05908,23.23599],[84.05576,23.22028],[84.06317,23.20565],[84.0622,23.20261],[84.05843,23.19994],[84.05653,23.19317],[84.04294,23.18265],[84.0319,23.15783],[84.03331,23.15224],[84.03669,23.14817],[84.03747,23.13988],[84.04485,23.1348],[84.04921,23.13451],[84.0583,23.12617],[84.06259,23.11341],[84.07241,23.109],[84.08205,23.11215],[84.09317,23.11278],[84.09323,23.11045],[84.10566,23.10509],[84.10898,23.0983],[84.11297,23.09688],[84.11574,23.09003],[84.12211,23.08797],[84.12617,23.08933],[84.13346,23.08309],[84.13389,23.06863],[84.12689,23.05782],[84.12473,23.04785],[84.12697,23.04419],[84.12555,23.03648],[84.13122,23.02235],[84.13395,23.02021],[84.1402,23.00957],[84.13818,23.00402],[84.14732,22.98801],[84.1463,22.97707],[84.14925,22.96567],[84.17178,22.97076],[84.17551,22.97601],[84.17808,22.98112],[84.1761,22.98492],[84.175,22.99711],[84.17869,23.00055],[84.17524,23.00954],[84.17812,23.01203],[84.18024,23.02444],[84.1858,23.02709],[84.19674,23.02421],[84.20167,23.02107],[84.20345,23.01446],[84.20085,23.00534],[84.20768,22.9999],[84.21656,22.98904],[84.21918,22.97913],[84.23035,22.98333],[84.23393,22.98242],[84.24104,22.98361],[84.24881,22.97382],[84.25302,22.97293],[84.2611,22.97715],[84.2629,22.98084],[84.26713,22.9832],[84.27055,22.98922],[84.27422,22.9902],[84.27702,22.99339],[84.27853,22.99288],[84.27671,22.99067],[84.27853,22.98704],[84.27607,22.98421],[84.27417,22.98428],[84.27385,22.98209],[84.28109,22.96369],[84.29055,22.96395],[84.30763,22.96743],[84.31291,22.97186],[84.31898,22.97361],[84.31928,22.97721],[84.32811,22.9819],[84.33955,22.97999],[84.34376,22.97614],[84.35107,22.97812],[84.365,22.97423],[84.3729,22.97838],[84.37734,22.97525],[84.38272,22.96279],[84.38361,22.95253],[84.39368,22.94245],[84.39555,22.92873],[84.39283,22.91943],[84.38789,22.91421],[84.38136,22.91268],[84.37754,22.90963],[84.37519,22.9045],[84.37568,22.90069],[84.38289,22.89526],[84.38261,22.89025],[84.37919,22.88377],[84.38051,22.87667],[84.37336,22.87159],[84.3726,22.86532],[84.3697,22.86358],[84.35945,22.86052],[84.35199,22.86499],[84.34924,22.86098],[84.34423,22.85898],[84.33478,22.86155],[84.32422,22.85094],[84.32174,22.83774],[84.3252,22.83765],[84.32533,22.83498],[84.32243,22.82102],[84.31573,22.81192],[84.3151,22.80065],[84.3075,22.80077],[84.30578,22.79707],[84.29934,22.79589],[84.29114,22.78338],[84.29187,22.77428],[84.30455,22.77007],[84.31312,22.76474],[84.31953,22.76572],[84.32534,22.76405],[84.33095,22.75902],[84.33679,22.74826],[84.34276,22.74679],[84.35025,22.74812],[84.35433,22.75075],[84.34948,22.75773],[84.34922,22.76204],[84.35786,22.75952],[84.3592,22.75697],[84.36211,22.75838],[84.37188,22.75429],[84.37965,22.7646],[84.38411,22.7637],[84.38789,22.7679],[84.39144,22.76576],[84.38925,22.77229],[84.3925,22.7754],[84.39718,22.77501],[84.39979,22.77647],[84.40427,22.77098],[84.40739,22.77191],[84.4128,22.76793],[84.41326,22.76558],[84.41635,22.76486],[84.4193,22.76805],[84.41813,22.77275],[84.42132,22.78084],[84.42624,22.78753],[84.43009,22.78938],[84.43009,22.79169],[84.43527,22.79818],[84.43215,22.80772],[84.42933,22.81112],[84.44083,22.80902],[84.44759,22.81211],[84.45103,22.81641],[84.44971,22.82058],[84.45114,22.83033],[84.44938,22.83491],[84.45126,22.83473],[84.45322,22.83748],[84.46517,22.83707],[84.48221,22.83311],[84.48487,22.82954],[84.4862,22.83162],[84.49049,22.82746],[84.49484,22.82749],[84.4994,22.82379],[84.50344,22.82468],[84.50437,22.81156],[84.50301,22.80928],[84.50249,22.79859],[84.51757,22.79561],[84.52478,22.79671],[84.52738,22.79303],[84.53105,22.79172],[84.54607,22.79505],[84.55325,22.79178],[84.55583,22.78671],[84.55623,22.77616],[84.55426,22.77153],[84.54372,22.76586],[84.53123,22.76923],[84.52884,22.76389],[84.52582,22.76152],[84.5189,22.76239],[84.51576,22.75401],[84.51837,22.75492],[84.51969,22.75175],[84.52177,22.75107],[84.52111,22.7481],[84.52262,22.74398],[84.52881,22.74059],[84.52867,22.74365],[84.53391,22.74591],[84.53722,22.75108],[84.53933,22.76151],[84.54347,22.76498],[84.54678,22.76427],[84.56412,22.74728],[84.56938,22.74698],[84.56214,22.73882],[84.56205,22.73448],[84.55929,22.73094],[84.56466,22.73102],[84.57012,22.72865],[84.57116,22.72555],[84.58041,22.72278],[84.58557,22.71597],[84.58927,22.7161],[84.59215,22.71276],[84.59817,22.7218],[84.60511,22.72302],[84.60437,22.73094],[84.61232,22.7336],[84.64526,22.73162],[84.64862,22.73963],[84.65837,22.73112],[84.66608,22.73099],[84.66971,22.73943],[84.68646,22.73704],[84.68992,22.7412],[84.69537,22.74156],[84.6954,22.74315],[84.69753,22.74386],[84.69521,22.74558],[84.6993,22.74795],[84.69734,22.75753],[84.70431,22.76479],[84.70861,22.76558],[84.71347,22.76397],[84.72468,22.7655],[84.72486,22.77035],[84.72881,22.77244],[84.72936,22.77514],[84.728,22.77771],[84.72182,22.77925],[84.72289,22.78263],[84.71756,22.78356],[84.71726,22.78491],[84.71866,22.78813],[84.72289,22.78898],[84.7259,22.7929],[84.7259,22.79646],[84.72931,22.80017],[84.73417,22.80187],[84.75311,22.79375],[84.76271,22.79195],[84.76581,22.79277],[84.76901,22.78956],[84.77212,22.7894],[84.77502,22.79355],[84.78051,22.7952],[84.77475,22.78236],[84.77637,22.77036],[84.77541,22.76501],[84.78434,22.75878],[84.78579,22.7686],[84.78929,22.77183],[84.79253,22.77221],[84.79256,22.76467],[84.79397,22.76493],[84.79465,22.75985],[84.78787,22.73615],[84.78819,22.73075],[84.78592,22.72657],[84.78788,22.72562],[84.78656,22.72323],[84.7902,22.7188],[84.79221,22.71962],[84.79619,22.71793],[84.79652,22.71508],[84.80053,22.71179],[84.80292,22.71402],[84.80587,22.7105],[84.81028,22.70932],[84.82129,22.71599],[84.81867,22.71828],[84.81939,22.72093],[84.8155,22.72716],[84.81669,22.73162],[84.81452,22.73609],[84.81451,22.74338],[84.81997,22.75048],[84.83112,22.74165],[84.83145,22.73057],[84.84171,22.72674],[84.84855,22.72223],[84.8578,22.71993],[84.85661,22.72274],[84.8595,22.72379],[84.85771,22.72398],[84.85552,22.73079],[84.84144,22.75706],[84.84108,22.76796],[84.84327,22.77021],[84.84699,22.77091],[84.8588,22.76582],[84.85819,22.76144],[84.86343,22.75774],[84.8698,22.75588],[84.8762,22.74518],[84.88107,22.74324],[84.88119,22.73857],[84.88739,22.74537],[84.89145,22.7444],[84.89704,22.75226],[84.90018,22.75423],[84.8983,22.75825],[84.90571,22.75922],[84.90584,22.76092],[84.91089,22.76321],[84.91301,22.76213],[84.91422,22.76685],[84.91851,22.7682],[84.9223,22.7847],[84.92733,22.78376],[84.9306,22.79222],[84.93943,22.7873],[84.9403,22.78341],[84.94529,22.77799],[84.94958,22.77571],[84.95887,22.77524],[84.96118,22.77566],[84.96868,22.78517],[84.98048,22.78565],[84.98261,22.80453],[84.98564,22.80196],[85.00707,22.80224],[85.0069,22.81717],[85.0037,22.82007],[85.00508,22.82223],[84.99869,22.83783],[84.99884,22.8441],[84.99468,22.84933],[84.99557,22.85245],[84.99299,22.85678],[84.9877,22.85858],[84.98555,22.87436],[84.9877,22.88744],[84.99041,22.89169],[84.98897,22.89559],[84.98985,22.89721],[84.97988,22.89869],[84.98145,22.89989],[84.98147,22.90412],[84.98302,22.90399],[84.9853,22.91779],[84.98901,22.91938],[84.98742,22.92242],[84.98845,22.92438],[84.99851,22.92632],[85.00797,22.92359],[85.01383,22.9254],[85.01633,22.93231],[85.01229,22.94504],[85.00628,22.94715],[84.99947,22.95608],[84.99227,22.9573],[84.98922,22.96308],[84.98209,22.96753],[84.96415,22.97103],[84.95556,22.96484],[84.94723,22.96647],[84.94175,22.98255],[84.94029,22.995],[84.94078,22.99884],[84.94366,23.00068],[84.94544,23.00743],[84.94742,23.0089],[84.93943,23.01217],[84.93735,23.01529],[84.94339,23.02151],[84.94332,23.02376],[84.93157,23.03548],[84.92704,23.03468],[84.93016,23.03017],[84.9299,23.02811],[84.92438,23.02973],[84.92023,23.02602],[84.9138,23.02936],[84.9149,23.03276],[84.91199,23.0345],[84.91273,23.04047],[84.9034,23.04947],[84.90473,23.05616],[84.89957,23.05717],[84.89882,23.05931],[84.89452,23.06194],[84.88738,23.06188],[84.87446,23.06789],[84.87549,23.07806],[84.87334,23.08629],[84.86928,23.08859],[84.86874,23.09825],[84.89642,23.09867],[84.89596,23.10309],[84.89967,23.10973],[84.88824,23.11867],[84.88989,23.12753],[84.89289,23.12939],[84.88735,23.13269],[84.88796,23.13622],[84.88611,23.14077],[84.88951,23.14458],[84.89196,23.16704],[84.89525,23.17065],[84.90134,23.17305],[84.92158,23.16777],[84.9242,23.17246],[84.92345,23.17526],[84.92584,23.18762],[84.91757,23.18872],[84.9129,23.1911],[84.91184,23.19451],[84.91446,23.19687],[84.91935,23.19573],[84.92483,23.19885],[84.92624,23.20161],[84.93617,23.20128],[84.93814,23.20857],[84.94459,23.20931],[84.95184,23.22487],[84.95042,23.23132],[84.94938,23.22976],[84.93879,23.23076],[84.93902,23.23298],[84.933,23.23484],[84.93092,23.23731],[84.9116,23.24331],[84.91116,23.24906],[84.90941,23.25058],[84.9142,23.25194],[84.91289,23.25602],[84.89758,23.25884],[84.89952,23.26351],[84.8988,23.27333],[84.90138,23.28608],[84.90721,23.29036],[84.91072,23.29832],[84.9264,23.3084],[84.92694,23.31094],[84.92509,23.31097],[84.92078,23.32037],[84.91727,23.32042],[84.91113,23.32701],[84.90776,23.32599],[84.90717,23.32723],[84.89998,23.32099],[84.90005,23.31888],[84.89825,23.31926],[84.8962,23.3168],[84.88983,23.31681],[84.87536,23.31011],[84.86688,23.31544],[84.85841,23.31671],[84.85038,23.31498],[84.84605,23.31049],[84.84489,23.30218],[84.84303,23.29949],[84.83089,23.29829],[84.8297,23.29574],[84.81781,23.29511],[84.8148,23.29101],[84.81383,23.2829],[84.80555,23.28017],[84.79988,23.28019],[84.79972,23.27901],[84.79594,23.28039],[84.79389,23.27903],[84.78676,23.28101],[84.7907,23.30333],[84.79453,23.31297],[84.79097,23.31566],[84.78824,23.32174],[84.78124,23.31941],[84.77384,23.32086],[84.77345,23.31944],[84.76627,23.31942],[84.7503,23.32155],[84.74949,23.32586],[84.74609,23.3306],[84.73761,23.33197],[84.73132,23.3302],[84.72763,23.32521],[84.72115,23.32276],[84.72142,23.32095],[84.71548,23.31986],[84.71579,23.31702],[84.71266,23.31133],[84.70241,23.30893],[84.69141,23.30787],[84.68504,23.31721],[84.67873,23.32128],[84.67402,23.32048],[84.67282,23.31607],[84.66405,23.31483],[84.66229,23.30674],[84.65671,23.3067],[84.65376,23.30929],[84.6541,23.31058],[84.65196,23.31116],[84.64256,23.30623],[84.63958,23.30749],[84.63004,23.30711],[84.62376,23.31034],[84.62404,23.31451],[84.61419,23.32244],[84.60816,23.31528],[84.60462,23.3172],[84.60434,23.31562],[84.5991,23.31563],[84.59819,23.31723],[84.59198,23.31859],[84.57736,23.33126],[84.57118,23.34167],[84.56623,23.34225],[84.56386,23.34593],[84.55721,23.34634],[84.54805,23.34344],[84.53989,23.34557],[84.53593,23.34979],[84.52762,23.3656],[84.52488,23.36513],[84.52139,23.36764],[84.52218,23.37738],[84.5151,23.38471],[84.51265,23.38393],[84.50559,23.37303],[84.5005,23.37113],[84.50236,23.3629],[84.5009,23.3602],[84.50187,23.35648],[84.50071,23.35262],[84.49762,23.35285],[84.49728,23.35143],[84.49155,23.35403],[84.48723,23.35227],[84.48173,23.35853],[84.47644,23.35906],[84.47259,23.36919],[84.47312,23.38624],[84.47599,23.39063],[84.4813,23.39398],[84.47574,23.40434],[84.47278,23.40305],[84.46392,23.40706],[84.45897,23.40393],[84.44793,23.40247],[84.44273,23.40482],[84.44046,23.41691],[84.43588,23.42225],[84.43424,23.43282],[84.43108,23.43562],[84.43361,23.43888],[84.43794,23.44023],[84.44602,23.44675],[84.45083,23.45845],[84.45321,23.45795],[84.459,23.46444],[84.46521,23.46779],[84.46734,23.47866],[84.47645,23.48609],[84.47503,23.49325],[84.47157,23.49817],[84.47121,23.52023],[84.46962,23.52365],[84.46409,23.52859],[84.46242,23.53458],[84.46725,23.54367],[84.46613,23.54568],[84.46927,23.56795],[84.47424,23.57252],[84.47122,23.57644],[84.47172,23.57974],[84.46544,23.58338],[84.45379,23.5848],[84.45593,23.58944],[84.45623,23.59729],[84.45264,23.5973],[84.44905,23.59381],[84.44325,23.59566],[84.44165,23.59099],[84.437,23.58953],[84.43419,23.59147],[84.42776,23.59225],[84.40583,23.60306],[84.4023,23.60249],[84.39638,23.59733],[84.38267,23.60766],[84.37877,23.60484],[84.37671,23.60505]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"332","area_level":"District","area_name":"Hazaribagh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.35415,24.52375],[85.33601,24.52331],[85.33389,24.52169],[85.3222,24.51999],[85.30403,24.52319],[85.28809,24.52326],[85.28137,24.52022],[85.28333,24.51698],[85.28057,24.51247],[85.28343,24.50332],[85.28558,24.5023],[85.28387,24.49883],[85.28488,24.49464],[85.28233,24.49167],[85.27486,24.49317],[85.26697,24.49126],[85.24911,24.49073],[85.24545,24.48471],[85.24017,24.4815],[85.24202,24.47958],[85.24128,24.47521],[85.2369,24.47105],[85.23221,24.47309],[85.22584,24.46313],[85.2221,24.46509],[85.20658,24.46733],[85.20293,24.46133],[85.1999,24.46047],[85.19127,24.46307],[85.18057,24.46245],[85.17217,24.45904],[85.16731,24.46112],[85.16075,24.46034],[85.15405,24.45499],[85.15529,24.45252],[85.15443,24.44817],[85.15719,24.4444],[85.16392,24.44389],[85.16657,24.43658],[85.17035,24.43316],[85.17034,24.42914],[85.17535,24.42385],[85.1739,24.42062],[85.16965,24.42125],[85.16541,24.41943],[85.16229,24.41262],[85.15222,24.41202],[85.1438,24.40718],[85.13261,24.4051],[85.12765,24.402],[85.12306,24.40198],[85.11662,24.3935],[85.11681,24.39143],[85.10269,24.38487],[85.10343,24.37708],[85.09869,24.37359],[85.08983,24.37268],[85.08557,24.36618],[85.08647,24.35208],[85.09217,24.34746],[85.09574,24.34191],[85.09978,24.34037],[85.10159,24.32798],[85.11221,24.33257],[85.12951,24.32923],[85.13655,24.32555],[85.13991,24.3284],[85.14338,24.32871],[85.14363,24.3348],[85.13789,24.34094],[85.13917,24.3477],[85.13485,24.35442],[85.13585,24.35569],[85.15261,24.35372],[85.15885,24.34632],[85.16291,24.34913],[85.16394,24.34276],[85.16919,24.34249],[85.17014,24.34122],[85.16852,24.33855],[85.17676,24.33603],[85.18407,24.33633],[85.18625,24.33442],[85.18667,24.33008],[85.2011,24.32515],[85.20287,24.33013],[85.20178,24.33353],[85.20718,24.3372],[85.20764,24.33902],[85.21732,24.34141],[85.22122,24.34021],[85.22338,24.34176],[85.22576,24.34037],[85.22753,24.34378],[85.23888,24.34106],[85.24047,24.3431],[85.24194,24.35239],[85.2443,24.34833],[85.24343,24.34018],[85.25711,24.33928],[85.26267,24.33501],[85.27191,24.33583],[85.28349,24.33208],[85.28585,24.33409],[85.28774,24.33307],[85.29383,24.3391],[85.29951,24.33731],[85.30083,24.33966],[85.30547,24.33867],[85.30694,24.33608],[85.30893,24.33608],[85.31029,24.33114],[85.31576,24.32833],[85.31804,24.32503],[85.32927,24.31811],[85.33349,24.32019],[85.34067,24.31369],[85.34249,24.31629],[85.3504,24.31651],[85.355,24.31049],[85.36386,24.30803],[85.3733,24.31858],[85.38035,24.32115],[85.37832,24.31584],[85.38163,24.31061],[85.38041,24.30854],[85.37621,24.30826],[85.36757,24.30328],[85.35731,24.29208],[85.35307,24.29745],[85.34865,24.29911],[85.35006,24.3042],[85.34786,24.30624],[85.34264,24.30628],[85.34285,24.30233],[85.33976,24.30162],[85.33628,24.30378],[85.33613,24.30801],[85.3345,24.30922],[85.32906,24.31087],[85.3227,24.30918],[85.32208,24.30574],[85.32754,24.29478],[85.32567,24.29177],[85.32127,24.29391],[85.31831,24.29155],[85.31874,24.28815],[85.32154,24.28467],[85.3191,24.28161],[85.32046,24.2767],[85.31878,24.26553],[85.322,24.2625],[85.32145,24.26051],[85.31665,24.2613],[85.31516,24.25799],[85.31737,24.25347],[85.31501,24.25311],[85.32174,24.25],[85.32267,24.24728],[85.32225,24.24612],[85.31078,24.24564],[85.30132,24.23599],[85.3004,24.2275],[85.30278,24.22506],[85.29687,24.22193],[85.30326,24.21421],[85.30232,24.20705],[85.3051,24.20475],[85.30304,24.20233],[85.30338,24.19902],[85.28996,24.2004],[85.28809,24.20148],[85.28871,24.20686],[85.28716,24.2088],[85.2803,24.20815],[85.27796,24.21157],[85.2743,24.21263],[85.27538,24.21411],[85.27302,24.21601],[85.27041,24.21452],[85.26814,24.21699],[85.26522,24.21533],[85.26433,24.21701],[85.25851,24.21518],[85.25783,24.21635],[85.2563,24.21406],[85.2545,24.21455],[85.25453,24.21274],[85.24987,24.21618],[85.24951,24.21811],[85.24766,24.2172],[85.24646,24.21922],[85.2449,24.21814],[85.24371,24.21976],[85.24264,24.21835],[85.24279,24.22057],[85.23866,24.22323],[85.2346,24.22142],[85.23072,24.22347],[85.22795,24.22306],[85.2269,24.22108],[85.21787,24.22167],[85.21695,24.21895],[85.20573,24.22447],[85.20026,24.22541],[85.19925,24.22382],[85.18999,24.22624],[85.18778,24.22823],[85.18213,24.22699],[85.17884,24.22865],[85.17446,24.22511],[85.1728,24.2267],[85.16465,24.22683],[85.16177,24.22943],[85.14902,24.21491],[85.15016,24.20894],[85.14805,24.20906],[85.14518,24.20649],[85.14266,24.2095],[85.13638,24.2055],[85.13491,24.20175],[85.1406,24.20091],[85.14086,24.19417],[85.14987,24.18231],[85.14724,24.1747],[85.14753,24.16636],[85.14349,24.15899],[85.14399,24.15582],[85.14659,24.15506],[85.14936,24.15838],[85.1526,24.15695],[85.16166,24.13701],[85.16868,24.13146],[85.17226,24.12463],[85.1754,24.12353],[85.17038,24.12037],[85.16674,24.12092],[85.16764,24.11669],[85.17187,24.11648],[85.17049,24.11276],[85.17559,24.11076],[85.17195,24.10742],[85.17119,24.0993],[85.19265,24.0932],[85.19565,24.09012],[85.20318,24.08692],[85.20588,24.08361],[85.20937,24.08305],[85.21299,24.07871],[85.21905,24.07725],[85.22318,24.07799],[85.23054,24.07459],[85.23391,24.07518],[85.24843,24.06259],[85.24912,24.05944],[85.2477,24.05723],[85.25068,24.05536],[85.24582,24.04121],[85.24918,24.03823],[85.24726,24.03479],[85.24876,24.03052],[85.25035,24.03124],[85.25069,24.02852],[85.25234,24.02776],[85.25035,24.02643],[85.2523,24.02239],[85.24915,24.01219],[85.23108,24.01131],[85.23266,24.0032],[85.23071,24.00255],[85.22905,23.99993],[85.22955,23.99748],[85.22678,23.99412],[85.22055,23.99183],[85.21786,23.99341],[85.21411,23.99213],[85.21345,23.98431],[85.2109,23.97877],[85.20463,23.97584],[85.20268,23.97298],[85.20414,23.9627],[85.20201,23.95595],[85.19484,23.9534],[85.19071,23.9536],[85.18594,23.9509],[85.18592,23.94771],[85.17602,23.95107],[85.15302,23.95203],[85.14947,23.95014],[85.13982,23.95817],[85.13821,23.96734],[85.13008,23.97065],[85.12509,23.97591],[85.1225,23.97506],[85.12009,23.97069],[85.09954,23.97537],[85.08575,23.95816],[85.07583,23.96142],[85.07925,23.96824],[85.08268,23.96913],[85.08239,23.97673],[85.07763,23.983],[85.06974,23.98222],[85.06351,23.98597],[85.05458,23.98549],[85.05582,23.99223],[85.05,23.99706],[85.04418,23.99875],[85.04426,24.00184],[85.03723,23.99381],[85.02588,23.99132],[85.02348,23.98054],[85.02695,23.9751],[85.02913,23.9636],[85.0359,23.96661],[85.03905,23.96622],[85.04947,23.96064],[85.05441,23.96051],[85.05684,23.95805],[85.05446,23.9529],[85.04271,23.94355],[85.03951,23.93867],[85.04601,23.93079],[85.04125,23.92809],[85.04001,23.92274],[85.04909,23.91935],[85.04742,23.91332],[85.02918,23.91513],[85.02646,23.90676],[85.02296,23.90373],[85.02149,23.89734],[85.02684,23.88932],[85.02283,23.88366],[85.02289,23.87886],[85.03108,23.87993],[85.03358,23.87795],[85.02953,23.87053],[85.03076,23.86619],[85.03336,23.86867],[85.03547,23.86814],[85.0312,23.86371],[85.03152,23.85972],[85.05074,23.8439],[85.05461,23.84249],[85.06071,23.83339],[85.06007,23.82727],[85.04825,23.8275],[85.04751,23.81836],[85.04872,23.81411],[85.04519,23.81118],[85.04507,23.80849],[85.058,23.79721],[85.07245,23.79644],[85.07507,23.7926],[85.085,23.78853],[85.12983,23.77953],[85.13573,23.77649],[85.13748,23.77137],[85.1313,23.76029],[85.12549,23.75944],[85.12837,23.75223],[85.10468,23.7475],[85.1031,23.74571],[85.10336,23.74405],[85.10029,23.74056],[85.1042,23.73248],[85.1039,23.72911],[85.09501,23.73046],[85.08929,23.73394],[85.08262,23.73211],[85.0832,23.72604],[85.09603,23.72083],[85.09705,23.71787],[85.09375,23.71647],[85.10571,23.70912],[85.1037,23.70754],[85.10444,23.70587],[85.11683,23.70566],[85.11169,23.69283],[85.10792,23.68801],[85.10688,23.68213],[85.10906,23.67988],[85.10948,23.67597],[85.1069,23.67047],[85.10674,23.66403],[85.11313,23.66361],[85.11457,23.66194],[85.12004,23.66225],[85.12602,23.66644],[85.14735,23.66962],[85.15573,23.6715],[85.15892,23.67375],[85.16071,23.67196],[85.1592,23.67043],[85.16163,23.6702],[85.16313,23.66686],[85.16683,23.66565],[85.17337,23.67809],[85.17448,23.68412],[85.18081,23.68963],[85.18815,23.70948],[85.19739,23.70833],[85.21729,23.70116],[85.22481,23.70075],[85.22661,23.69658],[85.22356,23.69099],[85.22565,23.68531],[85.22949,23.68396],[85.23261,23.68475],[85.23625,23.68629],[85.23592,23.698],[85.24069,23.70327],[85.24036,23.70896],[85.24512,23.71212],[85.25007,23.70966],[85.2623,23.69658],[85.27617,23.69274],[85.28524,23.68661],[85.29253,23.68998],[85.2983,23.69029],[85.30178,23.68923],[85.30666,23.68341],[85.3256,23.69531],[85.33491,23.70376],[85.33687,23.70384],[85.33969,23.70182],[85.33764,23.69582],[85.34583,23.69106],[85.36108,23.67347],[85.37741,23.67394],[85.38536,23.67078],[85.38624,23.66799],[85.38403,23.66285],[85.38558,23.65998],[85.39012,23.65884],[85.39768,23.66525],[85.39966,23.66009],[85.39909,23.656],[85.4036,23.65253],[85.42834,23.65395],[85.43237,23.6562],[85.44589,23.6548],[85.44479,23.65698],[85.44682,23.65783],[85.44715,23.66279],[85.42922,23.676],[85.42469,23.68396],[85.42731,23.68654],[85.42845,23.69065],[85.42779,23.70854],[85.44049,23.70876],[85.44225,23.71038],[85.44086,23.71568],[85.44141,23.72184],[85.44866,23.72162],[85.45613,23.72734],[85.45551,23.74018],[85.45649,23.74138],[85.46096,23.74058],[85.46427,23.74347],[85.45918,23.75015],[85.46135,23.75449],[85.46103,23.7574],[85.47036,23.7635],[85.47066,23.76508],[85.46754,23.76848],[85.46016,23.77187],[85.43247,23.7773],[85.43078,23.78055],[85.43079,23.78678],[85.42824,23.78702],[85.4269,23.79375],[85.43378,23.79458],[85.44395,23.80136],[85.44726,23.80161],[85.45257,23.81056],[85.45682,23.81099],[85.4595,23.81455],[85.46489,23.81717],[85.46742,23.82165],[85.47095,23.82088],[85.47334,23.82509],[85.47804,23.82673],[85.48034,23.82965],[85.48319,23.82863],[85.48476,23.82551],[85.48592,23.82611],[85.48918,23.83849],[85.50135,23.8406],[85.5075,23.83818],[85.51524,23.84163],[85.51733,23.84545],[85.51673,23.85032],[85.51842,23.8522],[85.5239,23.85216],[85.53008,23.84936],[85.53942,23.85377],[85.54673,23.85148],[85.55504,23.84502],[85.55723,23.84797],[85.56247,23.84742],[85.56388,23.85252],[85.56313,23.85803],[85.57063,23.86809],[85.56899,23.86944],[85.56921,23.87223],[85.57393,23.87834],[85.57383,23.88],[85.56718,23.88453],[85.57317,23.89352],[85.56509,23.89629],[85.57112,23.90126],[85.57472,23.90858],[85.57898,23.90964],[85.576,23.91269],[85.57655,23.91817],[85.58455,23.9177],[85.5949,23.93371],[85.60259,23.93437],[85.60776,23.93674],[85.60742,23.93871],[85.60464,23.94041],[85.60733,23.94473],[85.60659,23.94788],[85.60972,23.95644],[85.60895,23.95777],[85.61705,23.96208],[85.6273,23.96019],[85.63007,23.9617],[85.63991,23.96183],[85.64065,23.95934],[85.64583,23.95516],[85.64932,23.95647],[85.65882,23.95399],[85.66672,23.95686],[85.66958,23.96022],[85.66919,23.96259],[85.67168,23.96478],[85.67207,23.96837],[85.66753,23.97507],[85.67503,23.97539],[85.67592,23.9864],[85.68146,23.98337],[85.68559,23.98614],[85.68891,23.98551],[85.69756,23.98023],[85.69838,23.97738],[85.69639,23.97571],[85.69062,23.97594],[85.68534,23.97171],[85.68414,23.96917],[85.68551,23.96232],[85.68739,23.95946],[85.69155,23.9574],[85.69099,23.95232],[85.69725,23.94696],[85.70008,23.93979],[85.70582,23.93546],[85.71293,23.9351],[85.7131,23.92363],[85.71785,23.92288],[85.72329,23.93048],[85.72439,23.93498],[85.72797,23.93865],[85.73918,23.94209],[85.73984,23.94353],[85.7372,23.94821],[85.73848,23.95015],[85.74268,23.94982],[85.74885,23.94271],[85.75663,23.94719],[85.7642,23.94413],[85.76593,23.93898],[85.76202,23.93072],[85.76462,23.92591],[85.77565,23.91815],[85.78378,23.91803],[85.78375,23.90522],[85.78556,23.90027],[85.79395,23.89901],[85.80094,23.8959],[85.79686,23.88982],[85.7988,23.88324],[85.80265,23.8813],[85.80109,23.8762],[85.805,23.87289],[85.80335,23.85968],[85.81351,23.85449],[85.81434,23.85164],[85.81278,23.84642],[85.81409,23.8448],[85.82251,23.84464],[85.83597,23.84009],[85.84121,23.8516],[85.84456,23.85214],[85.84595,23.85435],[85.85029,23.85366],[85.85149,23.85593],[85.85532,23.85697],[85.85678,23.86073],[85.86216,23.86473],[85.86108,23.86763],[85.86346,23.87127],[85.86387,23.87541],[85.86242,23.87881],[85.86938,23.88439],[85.87053,23.89102],[85.87741,23.89688],[85.87855,23.90248],[85.88622,23.90871],[85.88886,23.91844],[85.88467,23.91938],[85.88231,23.9248],[85.88792,23.93543],[85.88314,23.9442],[85.88424,23.94958],[85.88742,23.95206],[85.88794,23.95694],[85.89236,23.95891],[85.89684,23.95426],[85.9037,23.95498],[85.90742,23.95036],[85.90755,23.94807],[85.91242,23.94767],[85.9135,23.95511],[85.92146,23.95795],[85.9286,23.95562],[85.93095,23.95844],[85.93081,23.96438],[85.93279,23.96612],[85.931,23.97244],[85.93229,23.97413],[85.93138,23.97907],[85.92603,23.98177],[85.92335,23.98574],[85.91962,23.98389],[85.9176,23.98656],[85.9131,23.98705],[85.90983,23.99002],[85.90592,23.99099],[85.90417,23.98916],[85.8989,23.99187],[85.89684,23.99577],[85.89888,23.99782],[85.89683,24.00107],[85.89897,24.00345],[85.89703,24.01235],[85.88517,24.01703],[85.88553,24.01382],[85.88311,24.00723],[85.87665,24.00603],[85.86993,24.01163],[85.85787,24.01776],[85.86533,24.02779],[85.87678,24.03272],[85.87929,24.03864],[85.87607,24.04762],[85.87429,24.04755],[85.87307,24.04507],[85.87138,24.04539],[85.87289,24.05143],[85.86981,24.05161],[85.8649,24.0459],[85.85741,24.05008],[85.85519,24.04771],[85.85529,24.05603],[85.85167,24.05759],[85.85379,24.05951],[85.84779,24.06404],[85.84507,24.05923],[85.83929,24.06051],[85.84173,24.06632],[85.83707,24.06838],[85.8369,24.07166],[85.83115,24.069],[85.82956,24.07195],[85.82431,24.07229],[85.8239,24.06936],[85.81957,24.06692],[85.81877,24.0629],[85.8167,24.0618],[85.80221,24.06734],[85.80134,24.07182],[85.80585,24.07822],[85.79795,24.07834],[85.78997,24.08504],[85.78991,24.08811],[85.78619,24.09],[85.77819,24.08852],[85.77187,24.09108],[85.77019,24.09228],[85.77117,24.09399],[85.77323,24.09425],[85.77411,24.09789],[85.77838,24.10064],[85.77074,24.10322],[85.75769,24.09759],[85.74899,24.10324],[85.74331,24.10136],[85.7405,24.0957],[85.7349,24.09397],[85.72922,24.0994],[85.72233,24.09677],[85.71169,24.10113],[85.7129,24.10257],[85.71075,24.10565],[85.71201,24.10811],[85.71106,24.1112],[85.71677,24.11786],[85.71301,24.12587],[85.70345,24.13162],[85.69954,24.13643],[85.69566,24.13663],[85.69413,24.13901],[85.68715,24.14265],[85.67543,24.14658],[85.678,24.16044],[85.67977,24.16265],[85.67989,24.17029],[85.68261,24.1717],[85.68281,24.17514],[85.68955,24.17895],[85.70118,24.18098],[85.70478,24.18383],[85.71645,24.18287],[85.7188,24.1877],[85.72312,24.18703],[85.73476,24.1899],[85.73695,24.19189],[85.73587,24.19859],[85.74254,24.1977],[85.74671,24.20177],[85.75062,24.2002],[85.75614,24.20068],[85.76447,24.20459],[85.77026,24.21013],[85.77795,24.20681],[85.79336,24.2111],[85.79893,24.21531],[85.8026,24.22596],[85.80743,24.22461],[85.8094,24.21938],[85.81596,24.21636],[85.81819,24.21021],[85.82013,24.20897],[85.82901,24.2171],[85.84116,24.214],[85.84844,24.21878],[85.85089,24.21739],[85.85293,24.21132],[85.86027,24.2111],[85.85605,24.21549],[85.85787,24.23519],[85.85433,24.24531],[85.85496,24.24823],[85.84987,24.25244],[85.83984,24.25154],[85.83632,24.25453],[85.83951,24.25919],[85.85099,24.26762],[85.85145,24.27056],[85.854,24.27139],[85.85316,24.27267],[85.83538,24.28114],[85.82854,24.26798],[85.82435,24.2642],[85.82048,24.26324],[85.8173,24.26651],[85.81994,24.27771],[85.82099,24.29068],[85.81971,24.29376],[85.8001,24.29158],[85.79444,24.29328],[85.78863,24.29736],[85.78075,24.29783],[85.76417,24.30319],[85.76501,24.2941],[85.76368,24.28986],[85.75253,24.28264],[85.73843,24.28571],[85.72843,24.2993],[85.71754,24.29695],[85.71155,24.29208],[85.70464,24.29708],[85.70377,24.3038],[85.69503,24.3045],[85.69644,24.30911],[85.69309,24.31395],[85.68719,24.31466],[85.66253,24.33176],[85.65981,24.33077],[85.66289,24.31936],[85.66087,24.30938],[85.65683,24.3094],[85.65255,24.31335],[85.6422,24.31184],[85.64,24.3134],[85.64503,24.3269],[85.64292,24.33032],[85.6346,24.3239],[85.61893,24.32584],[85.61088,24.33789],[85.60796,24.33933],[85.59629,24.33178],[85.59253,24.33243],[85.58526,24.33872],[85.58182,24.34826],[85.57812,24.3512],[85.57361,24.34968],[85.57393,24.34104],[85.57151,24.33849],[85.56006,24.34203],[85.55246,24.34824],[85.54726,24.3467],[85.54229,24.34007],[85.54079,24.33207],[85.52716,24.33278],[85.51958,24.31848],[85.51734,24.31695],[85.51255,24.31752],[85.51056,24.32149],[85.50617,24.324],[85.4941,24.32515],[85.47702,24.33105],[85.47465,24.33057],[85.46975,24.32455],[85.46581,24.32444],[85.46093,24.33278],[85.45255,24.33671],[85.4462,24.33404],[85.44106,24.33444],[85.43667,24.33184],[85.43249,24.35198],[85.42492,24.35691],[85.42324,24.35542],[85.41855,24.35659],[85.41256,24.35452],[85.4154,24.35832],[85.41521,24.36557],[85.41926,24.36933],[85.42146,24.37424],[85.41641,24.37854],[85.40915,24.37947],[85.41049,24.38092],[85.41067,24.38805],[85.40042,24.39315],[85.40241,24.40074],[85.40987,24.40698],[85.41635,24.40701],[85.42105,24.40445],[85.42294,24.40491],[85.42964,24.42196],[85.44275,24.41849],[85.44268,24.41972],[85.43971,24.42272],[85.43932,24.42722],[85.43615,24.42518],[85.43324,24.42829],[85.43008,24.42851],[85.42884,24.43368],[85.41775,24.44039],[85.4139,24.44512],[85.41039,24.45357],[85.41178,24.47224],[85.40918,24.48125],[85.39249,24.48101],[85.38858,24.47804],[85.38379,24.46968],[85.37224,24.46852],[85.36783,24.47085],[85.36257,24.46885],[85.35112,24.47084],[85.34979,24.4739],[85.34495,24.47209],[85.34481,24.47599],[85.33248,24.48238],[85.32852,24.48616],[85.32827,24.49319],[85.3324,24.50915],[85.33735,24.5099],[85.33959,24.51314],[85.3516,24.51443],[85.35662,24.51646],[85.35415,24.52375]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"333","area_level":"District","area_name":"Jamtara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.7132,24.141],[86.71731,24.1425],[86.71482,24.14441],[86.71731,24.14807],[86.71644,24.15548],[86.70579,24.15973],[86.70489,24.16288],[86.69742,24.16543],[86.69863,24.16112],[86.69738,24.15699],[86.69364,24.15383],[86.69154,24.14871],[86.69314,24.14265],[86.68982,24.14212],[86.68798,24.13732],[86.68878,24.13484],[86.68551,24.13358],[86.68212,24.12869],[86.67301,24.12975],[86.66475,24.12817],[86.65762,24.12871],[86.64422,24.13398],[86.63694,24.13182],[86.62889,24.13158],[86.62667,24.13566],[86.6186,24.13919],[86.61177,24.13657],[86.60598,24.14115],[86.60152,24.14124],[86.59566,24.13611],[86.58756,24.13956],[86.57457,24.13877],[86.57203,24.14256],[86.56499,24.13653],[86.56587,24.12598],[86.5607,24.1198],[86.5598,24.10946],[86.55386,24.10282],[86.55274,24.10025],[86.55401,24.09867],[86.55169,24.09411],[86.54727,24.09141],[86.5455,24.08737],[86.54601,24.08505],[86.54339,24.08149],[86.54524,24.08017],[86.54571,24.0743],[86.54367,24.07114],[86.53767,24.0686],[86.53112,24.05828],[86.53029,24.05387],[86.52473,24.05382],[86.52399,24.05153],[86.52188,24.05233],[86.51452,24.04819],[86.50577,24.04825],[86.4953,24.04065],[86.4924,24.04461],[86.48702,24.04354],[86.48317,24.04506],[86.47761,24.03984],[86.47639,24.0276],[86.47941,24.02696],[86.4836,24.03065],[86.48454,24.02234],[86.47093,24.02234],[86.46749,24.01868],[86.48016,24.00899],[86.52404,23.98661],[86.54049,23.98923],[86.54978,23.98896],[86.5842,23.98252],[86.59241,23.97297],[86.60175,23.9655],[86.60581,23.95773],[86.61786,23.95199],[86.63772,23.93799],[86.64808,23.93302],[86.65524,23.92616],[86.66539,23.92173],[86.68028,23.91793],[86.69491,23.90807],[86.71035,23.90445],[86.71834,23.90092],[86.72592,23.89073],[86.72969,23.86717],[86.73681,23.85951],[86.74302,23.85771],[86.7565,23.86597],[86.77225,23.86073],[86.78107,23.85452],[86.78775,23.84509],[86.79996,23.83434],[86.80572,23.83733],[86.81055,23.83502],[86.81492,23.82957],[86.81603,23.82501],[86.81379,23.82475],[86.81295,23.82075],[86.81641,23.81688],[86.81973,23.81772],[86.82045,23.81555],[86.82654,23.81394],[86.83695,23.81954],[86.84003,23.82248],[86.83879,23.82459],[86.84804,23.82365],[86.8529,23.82495],[86.85502,23.83056],[86.86127,23.83505],[86.86377,23.84057],[86.86265,23.84201],[86.86363,23.84446],[86.87422,23.84731],[86.87997,23.84528],[86.87952,23.83526],[86.88094,23.82901],[86.88646,23.82565],[86.88602,23.8212],[86.8903,23.8205],[86.89457,23.82635],[86.89282,23.83728],[86.88936,23.8393],[86.88635,23.84569],[86.88701,23.85644],[86.88092,23.86037],[86.88024,23.86232],[86.89592,23.87829],[86.90277,23.8812],[86.91328,23.88079],[86.91556,23.88243],[86.93248,23.86866],[86.93316,23.85631],[86.93572,23.85184],[86.94599,23.84658],[86.95628,23.84686],[86.96148,23.84915],[86.96375,23.85357],[86.96566,23.86476],[86.96829,23.86748],[86.97324,23.86877],[86.98596,23.8596],[87.011,23.8526],[87.02423,23.84447],[87.03797,23.83921],[87.05597,23.82188],[87.08138,23.81012],[87.08671,23.80897],[87.089,23.81381],[87.0918,23.81537],[87.09749,23.81249],[87.10332,23.80453],[87.1071,23.80449],[87.10833,23.8082],[87.11245,23.80887],[87.11673,23.8075],[87.11892,23.8051],[87.11822,23.80236],[87.11266,23.80536],[87.11053,23.80316],[87.11077,23.80036],[87.11293,23.79916],[87.12178,23.79665],[87.12348,23.79926],[87.13115,23.79793],[87.1399,23.80423],[87.14376,23.79934],[87.14951,23.79711],[87.15283,23.80291],[87.15498,23.80337],[87.15859,23.81453],[87.16438,23.81813],[87.16711,23.82515],[87.16331,23.82656],[87.16361,23.82917],[87.15975,23.83131],[87.15674,23.83154],[87.15372,23.82947],[87.13956,23.84841],[87.13002,23.85391],[87.12933,23.86863],[87.13392,23.87017],[87.14831,23.86625],[87.15135,23.86726],[87.15531,23.86522],[87.16452,23.86523],[87.17248,23.85868],[87.17393,23.85475],[87.1799,23.85197],[87.18734,23.85959],[87.19061,23.85738],[87.1961,23.85781],[87.19331,23.85251],[87.18733,23.84877],[87.1889,23.84728],[87.18858,23.84315],[87.19241,23.84365],[87.19627,23.84963],[87.20113,23.85019],[87.20307,23.84775],[87.20581,23.85633],[87.2122,23.85353],[87.21388,23.85056],[87.22058,23.85673],[87.2199,23.85877],[87.22121,23.86057],[87.2232,23.85824],[87.23368,23.85713],[87.23732,23.8544],[87.23048,23.84591],[87.22321,23.84562],[87.2224,23.83767],[87.21654,23.83171],[87.2174,23.82926],[87.22471,23.82764],[87.2279,23.82511],[87.23041,23.82565],[87.23088,23.82868],[87.2387,23.82643],[87.2464,23.83156],[87.24431,23.83205],[87.24893,23.83525],[87.24768,23.83896],[87.25129,23.84051],[87.25494,23.84704],[87.25,23.85004],[87.24906,23.85554],[87.24665,23.85448],[87.2443,23.85694],[87.24429,23.86024],[87.24648,23.86281],[87.24507,23.86486],[87.24873,23.86874],[87.24153,23.86966],[87.24149,23.87641],[87.24457,23.88213],[87.24274,23.88411],[87.24258,23.88815],[87.24406,23.89173],[87.24306,23.89338],[87.24544,23.89528],[87.2444,23.90309],[87.24655,23.9056],[87.24512,23.9082],[87.25216,23.91303],[87.25828,23.90631],[87.25876,23.90329],[87.25457,23.89997],[87.25889,23.89954],[87.25844,23.89409],[87.26225,23.88852],[87.26198,23.88447],[87.26338,23.88248],[87.25905,23.88317],[87.26915,23.87458],[87.27493,23.88175],[87.27543,23.88475],[87.28141,23.88851],[87.28349,23.88945],[87.28377,23.88563],[87.28553,23.88404],[87.2845,23.88892],[87.29111,23.89328],[87.28822,23.89855],[87.29503,23.90234],[87.29125,23.9051],[87.29164,23.9154],[87.28354,23.92091],[87.2882,23.9269],[87.28401,23.92957],[87.28416,23.93831],[87.29082,23.94167],[87.28977,23.9495],[87.29357,23.95769],[87.29307,23.95884],[87.27979,23.96056],[87.27587,23.96542],[87.27093,23.96747],[87.26587,23.96566],[87.26153,23.96758],[87.26038,23.97216],[87.26262,23.98126],[87.26691,23.98221],[87.26826,23.9891],[87.26522,23.99394],[87.26282,24.00288],[87.25343,23.99921],[87.25341,23.99624],[87.2505,23.99704],[87.24091,24.01191],[87.24492,24.0161],[87.23503,24.02018],[87.2328,24.02431],[87.22273,24.02455],[87.21655,24.02299],[87.20774,24.02692],[87.19965,24.02509],[87.17951,24.02957],[87.17003,24.03009],[87.16284,24.03227],[87.15401,24.03842],[87.14959,24.0397],[87.13777,24.03631],[87.12879,24.04579],[87.12202,24.04937],[87.11844,24.05876],[87.11249,24.06312],[87.10851,24.07805],[87.10302,24.08454],[87.09591,24.09891],[87.09525,24.1033],[87.09814,24.10641],[87.09527,24.10697],[87.09273,24.10468],[87.08702,24.10624],[87.08427,24.10477],[87.08389,24.10291],[87.07879,24.10695],[87.07596,24.10614],[87.07557,24.10925],[87.07336,24.11136],[87.06012,24.11794],[87.05669,24.1234],[87.05642,24.12662],[87.04862,24.13596],[87.03455,24.13769],[87.03279,24.13995],[87.00934,24.1462],[87.0082,24.14496],[87.01077,24.14275],[87.01075,24.13895],[87.00637,24.13231],[87.00352,24.13225],[86.99941,24.12627],[86.99193,24.12512],[86.98708,24.12609],[86.98141,24.12384],[86.98182,24.11667],[86.97749,24.10664],[86.9741,24.10283],[86.97467,24.10018],[86.97153,24.09795],[86.97254,24.09362],[86.97559,24.0913],[86.97975,24.07872],[86.97582,24.07083],[86.97527,24.06605],[86.978,24.06461],[86.9772,24.0608],[86.97176,24.06181],[86.96683,24.05723],[86.95774,24.05311],[86.95635,24.05054],[86.96062,24.04564],[86.95583,24.04153],[86.95114,24.04086],[86.93106,24.04433],[86.9203,24.0491],[86.91588,24.05359],[86.91921,24.06204],[86.90309,24.05786],[86.89646,24.06707],[86.88796,24.069],[86.88417,24.06868],[86.88431,24.06511],[86.88175,24.06083],[86.87001,24.06416],[86.86133,24.05827],[86.85205,24.05702],[86.85135,24.05351],[86.84879,24.05122],[86.83989,24.04987],[86.83127,24.06232],[86.82541,24.06104],[86.82116,24.06297],[86.82177,24.06433],[86.82005,24.06454],[86.81958,24.06671],[86.82059,24.07145],[86.81611,24.07583],[86.81592,24.08261],[86.8138,24.08223],[86.81156,24.07849],[86.81004,24.08029],[86.80706,24.0791],[86.80719,24.08195],[86.80512,24.08259],[86.80053,24.07702],[86.79423,24.07809],[86.7948,24.06665],[86.79126,24.06262],[86.78007,24.06706],[86.77402,24.06579],[86.76582,24.07575],[86.75888,24.07884],[86.75992,24.08254],[86.76243,24.08048],[86.76246,24.08222],[86.76883,24.08488],[86.76299,24.09212],[86.75799,24.09149],[86.74893,24.09398],[86.74713,24.09585],[86.74074,24.09567],[86.73921,24.09813],[86.73551,24.09817],[86.73059,24.102],[86.72598,24.10226],[86.71981,24.1063],[86.71322,24.10665],[86.71082,24.10519],[86.69905,24.11216],[86.69835,24.12786],[86.70058,24.13397],[86.70591,24.13879],[86.71332,24.13936],[86.7132,24.141]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"334","area_level":"District","area_name":"Koderma","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[85.16951,24.33978],[85.17014,24.33994],[85.17014,24.34122],[85.16919,24.34249],[85.16701,24.34284],[85.16394,24.34276],[85.16419,24.34245],[85.16434,24.34216],[85.16437,24.34201],[85.16445,24.3416],[85.16425,24.34077],[85.16424,24.34036],[85.16432,24.33998],[85.16456,24.33977],[85.16614,24.33971],[85.16745,24.33949],[85.16789,24.33928],[85.16803,24.33912],[85.16951,24.33978]]],[[[85.24358,24.34372],[85.2443,24.34833],[85.24265,24.35045],[85.24194,24.35239],[85.24097,24.34981],[85.24011,24.34605],[85.24004,24.34491],[85.24049,24.34406],[85.24047,24.3431],[85.23994,24.34201],[85.23899,24.34111],[85.23955,24.3412],[85.24125,24.3407],[85.24215,24.34069],[85.2429,24.3404],[85.24358,24.34372]]],[[[85.75783,24.81309],[85.73911,24.82073],[85.73522,24.82051],[85.73089,24.81335],[85.73076,24.80238],[85.7291,24.79838],[85.7236,24.79706],[85.72235,24.7857],[85.70736,24.77976],[85.70955,24.77685],[85.70668,24.76838],[85.70965,24.76703],[85.70456,24.76714],[85.70383,24.75134],[85.70937,24.74635],[85.70935,24.74266],[85.70679,24.74072],[85.70646,24.73726],[85.70775,24.73721],[85.70631,24.73212],[85.70826,24.72591],[85.7001,24.7171],[85.69783,24.71085],[85.68913,24.69808],[85.682,24.69192],[85.64921,24.68477],[85.64991,24.68046],[85.65414,24.67418],[85.66052,24.67236],[85.65999,24.66764],[85.66677,24.66087],[85.66752,24.65745],[85.66455,24.65476],[85.66488,24.65224],[85.66256,24.64964],[85.66494,24.64288],[85.66867,24.64059],[85.66744,24.63683],[85.6722,24.62969],[85.67333,24.62097],[85.6762,24.61662],[85.6741,24.61133],[85.6756,24.60515],[85.67396,24.59747],[85.67712,24.59457],[85.67753,24.59067],[85.66899,24.57996],[85.65809,24.57803],[85.65135,24.57447],[85.65005,24.57592],[85.63184,24.57888],[85.62686,24.58186],[85.62028,24.57992],[85.61473,24.58074],[85.61191,24.58791],[85.60199,24.59556],[85.5981,24.59615],[85.59419,24.59448],[85.5922,24.59744],[85.58946,24.59678],[85.58077,24.60068],[85.57224,24.59621],[85.566,24.58725],[85.56627,24.57881],[85.56718,24.57679],[85.57161,24.5747],[85.56977,24.56933],[85.57224,24.5654],[85.57177,24.56182],[85.56787,24.55834],[85.5615,24.55868],[85.56023,24.55274],[85.55627,24.55801],[85.54456,24.56331],[85.54074,24.56272],[85.5423,24.5576],[85.54381,24.55692],[85.54545,24.54803],[85.54078,24.53051],[85.53816,24.52785],[85.52736,24.52398],[85.52396,24.52127],[85.51839,24.52615],[85.5073,24.52531],[85.50952,24.53155],[85.50917,24.5371],[85.49776,24.54673],[85.49154,24.54813],[85.48585,24.54649],[85.47803,24.54675],[85.47141,24.54475],[85.46542,24.53913],[85.45959,24.53624],[85.45028,24.53715],[85.44429,24.5342],[85.43925,24.53319],[85.43679,24.53426],[85.43396,24.53114],[85.43463,24.52852],[85.43,24.52955],[85.43226,24.53171],[85.41334,24.54136],[85.40448,24.54186],[85.40099,24.54535],[85.38861,24.5493],[85.385,24.55193],[85.38435,24.55549],[85.37775,24.55606],[85.37078,24.55535],[85.37111,24.5528],[85.39749,24.5448],[85.39671,24.54007],[85.39428,24.53972],[85.39207,24.53481],[85.39193,24.53035],[85.3729,24.52497],[85.35591,24.5247],[85.35415,24.52375],[85.35662,24.51646],[85.3516,24.51443],[85.33959,24.51314],[85.33735,24.5099],[85.3324,24.50915],[85.32827,24.49319],[85.32852,24.48616],[85.33248,24.48238],[85.34481,24.47599],[85.34495,24.47209],[85.34955,24.47393],[85.35112,24.47084],[85.35858,24.46933],[85.36257,24.46885],[85.36783,24.47085],[85.37224,24.46852],[85.37717,24.46863],[85.38379,24.46968],[85.38858,24.47804],[85.39249,24.48101],[85.40918,24.48125],[85.41178,24.47224],[85.41039,24.45357],[85.4139,24.44512],[85.41775,24.44039],[85.42884,24.43368],[85.43008,24.42851],[85.43324,24.42829],[85.43615,24.42518],[85.43932,24.42722],[85.43971,24.42272],[85.44275,24.41849],[85.42964,24.42196],[85.42294,24.40491],[85.42105,24.40445],[85.41635,24.40701],[85.40987,24.40698],[85.40241,24.40074],[85.40042,24.39315],[85.41067,24.38805],[85.41049,24.38092],[85.40915,24.37947],[85.41641,24.37854],[85.42146,24.37424],[85.41926,24.36933],[85.41521,24.36557],[85.4154,24.35832],[85.41256,24.35452],[85.41855,24.35659],[85.42324,24.35542],[85.42492,24.35691],[85.43249,24.35198],[85.43667,24.33184],[85.44106,24.33444],[85.4462,24.33404],[85.45255,24.33671],[85.46093,24.33278],[85.46581,24.32444],[85.46975,24.32455],[85.47465,24.33057],[85.47702,24.33105],[85.4941,24.32515],[85.50617,24.324],[85.51056,24.32149],[85.51255,24.31752],[85.51734,24.31695],[85.51958,24.31848],[85.52716,24.33278],[85.54079,24.33207],[85.54229,24.34007],[85.54726,24.3467],[85.55246,24.34824],[85.56006,24.34203],[85.57151,24.33849],[85.57393,24.34104],[85.57333,24.34908],[85.57738,24.35128],[85.58182,24.34826],[85.58526,24.33872],[85.59253,24.33243],[85.59629,24.33178],[85.60796,24.33933],[85.61088,24.33789],[85.61893,24.32584],[85.6346,24.3239],[85.64292,24.33032],[85.64503,24.3269],[85.64,24.3134],[85.6422,24.31184],[85.65255,24.31335],[85.65683,24.3094],[85.66087,24.30938],[85.66289,24.31936],[85.65981,24.33077],[85.66328,24.33155],[85.68719,24.31466],[85.69309,24.31395],[85.69644,24.30911],[85.69503,24.3045],[85.70377,24.3038],[85.70464,24.29708],[85.70676,24.29458],[85.71155,24.29208],[85.71754,24.29695],[85.72843,24.2993],[85.73843,24.28571],[85.74638,24.28467],[85.75012,24.28238],[85.76368,24.28986],[85.76501,24.2941],[85.76417,24.30319],[85.78075,24.29783],[85.78863,24.29736],[85.79444,24.29328],[85.8001,24.29158],[85.81971,24.29376],[85.82099,24.29068],[85.81994,24.27771],[85.8173,24.26651],[85.8212,24.26303],[85.82854,24.26798],[85.83538,24.28114],[85.8378,24.28105],[85.84392,24.2762],[85.8501,24.27505],[85.85399,24.2715],[85.85459,24.27321],[85.85919,24.2751],[85.85958,24.28038],[85.86158,24.2815],[85.86292,24.28707],[85.87458,24.28706],[85.87259,24.29394],[85.87363,24.29883],[85.87244,24.3092],[85.86842,24.31588],[85.87127,24.32072],[85.87017,24.32812],[85.8522,24.32749],[85.85201,24.33745],[85.8462,24.34019],[85.84723,24.34807],[85.85333,24.36136],[85.85204,24.36889],[85.85298,24.37316],[85.84974,24.37508],[85.85238,24.38746],[85.85174,24.39027],[85.8555,24.39491],[85.85154,24.39881],[85.85066,24.40601],[85.85614,24.41353],[85.83759,24.42427],[85.83621,24.43314],[85.83201,24.44011],[85.83128,24.44487],[85.83731,24.44841],[85.84667,24.45735],[85.84998,24.4577],[85.85123,24.46377],[85.85733,24.46759],[85.86316,24.48897],[85.86628,24.49094],[85.86478,24.49383],[85.86689,24.50056],[85.86576,24.50842],[85.86945,24.52574],[85.83959,24.54433],[85.82668,24.54793],[85.81086,24.5487],[85.80728,24.55516],[85.80706,24.5618],[85.80485,24.5638],[85.80826,24.57296],[85.79538,24.5835],[85.79216,24.58924],[85.79542,24.59985],[85.80071,24.60457],[85.80275,24.60873],[85.79551,24.607],[85.78711,24.60181],[85.78352,24.60265],[85.77892,24.60776],[85.77477,24.60972],[85.77634,24.62175],[85.77321,24.62665],[85.77506,24.63156],[85.77359,24.64319],[85.78466,24.64726],[85.78476,24.65574],[85.78739,24.65902],[85.79626,24.66823],[85.80435,24.67043],[85.80624,24.67285],[85.82419,24.6659],[85.82853,24.66205],[85.83243,24.66582],[85.83765,24.66501],[85.84278,24.66758],[85.83803,24.67282],[85.83651,24.67809],[85.8335,24.68027],[85.83114,24.69348],[85.82885,24.69755],[85.83123,24.70303],[85.81886,24.715],[85.81978,24.72483],[85.82638,24.72803],[85.85478,24.73451],[85.85623,24.73917],[85.86166,24.73514],[85.86963,24.73223],[85.87804,24.73627],[85.88701,24.73109],[85.89049,24.73391],[85.89131,24.73675],[85.88307,24.74327],[85.8868,24.74729],[85.88595,24.75034],[85.89392,24.75176],[85.90055,24.75576],[85.89987,24.75864],[85.90361,24.7656],[85.89975,24.77318],[85.88602,24.78506],[85.88974,24.79058],[85.88836,24.79344],[85.86723,24.80425],[85.85742,24.80746],[85.84102,24.80877],[85.82043,24.80764],[85.81064,24.79901],[85.80957,24.79402],[85.78909,24.79647],[85.78001,24.79946],[85.77801,24.79669],[85.76773,24.80427],[85.76871,24.80783],[85.76216,24.81277],[85.75783,24.81309]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"335","area_level":"District","area_name":"Latehar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.7506,24.04037],[84.75158,24.04537],[84.74647,24.04865],[84.73672,24.04091],[84.73153,24.0408],[84.72402,24.04469],[84.71511,24.03941],[84.71299,24.03001],[84.71721,24.02755],[84.71694,24.02587],[84.712,24.02543],[84.70747,24.02181],[84.69471,24.0249],[84.68845,24.01748],[84.68786,24.01394],[84.68271,24.00947],[84.68094,24.00302],[84.67167,23.99863],[84.66696,23.99916],[84.66595,24.00283],[84.66288,24.00484],[84.65395,24.00531],[84.64803,24.00342],[84.64559,23.99659],[84.63801,23.98983],[84.63306,23.99308],[84.61856,23.98726],[84.6091,23.99132],[84.59854,23.98231],[84.59275,23.98761],[84.58148,23.9861],[84.58607,23.98104],[84.58981,23.98034],[84.5907,23.9768],[84.58711,23.96899],[84.57451,23.96457],[84.57137,23.95903],[84.56934,23.94579],[84.57296,23.93484],[84.56865,23.9278],[84.55955,23.92665],[84.55651,23.9297],[84.54437,23.9292],[84.53778,23.93024],[84.53659,23.93209],[84.53254,23.93314],[84.53123,23.92345],[84.51882,23.92081],[84.5196,23.91688],[84.52427,23.91316],[84.52631,23.9012],[84.5091,23.89943],[84.49617,23.89393],[84.49669,23.89845],[84.48705,23.89405],[84.48179,23.9083],[84.47329,23.91294],[84.47107,23.91617],[84.47328,23.92761],[84.48046,23.92602],[84.48184,23.92955],[84.47717,23.94243],[84.47109,23.94524],[84.4696,23.9475],[84.4704,23.95692],[84.46287,23.95307],[84.45739,23.96038],[84.45417,23.96127],[84.44868,23.95938],[84.44349,23.95036],[84.4408,23.95039],[84.43802,23.94764],[84.42479,23.94968],[84.4145,23.94602],[84.4116,23.94399],[84.41147,23.94115],[84.40682,23.93401],[84.3916,23.937],[84.38425,23.93984],[84.38247,23.94215],[84.36931,23.94053],[84.36053,23.94345],[84.35705,23.9471],[84.34395,23.95319],[84.33958,23.93197],[84.33431,23.91912],[84.33747,23.91187],[84.33083,23.90594],[84.32759,23.89593],[84.32768,23.89379],[84.33215,23.88843],[84.33413,23.87815],[84.33254,23.87545],[84.32342,23.87517],[84.32145,23.87824],[84.31833,23.8783],[84.3037,23.86518],[84.28921,23.86959],[84.28701,23.86824],[84.28319,23.8693],[84.27853,23.86608],[84.27785,23.86831],[84.28007,23.87252],[84.27762,23.87506],[84.27739,23.88049],[84.27503,23.882],[84.26653,23.88064],[84.25832,23.88323],[84.2485,23.88361],[84.23758,23.89941],[84.22459,23.89561],[84.21823,23.89792],[84.21453,23.90187],[84.21611,23.91232],[84.21435,23.91647],[84.21084,23.91852],[84.20033,23.91724],[84.1956,23.92808],[84.18452,23.93541],[84.17453,23.93787],[84.16444,23.93827],[84.14993,23.94178],[84.14225,23.94534],[84.14159,23.94107],[84.14715,23.92182],[84.143,23.9154],[84.13884,23.90418],[84.13452,23.90142],[84.11849,23.89855],[84.10627,23.88656],[84.0895,23.86541],[84.07193,23.86088],[84.06481,23.85711],[84.06198,23.84262],[84.0518,23.83372],[84.05198,23.82989],[84.05673,23.81971],[84.05643,23.81554],[84.04535,23.81163],[84.04018,23.79926],[84.03571,23.79565],[84.03219,23.79612],[84.02736,23.8025],[84.02068,23.80176],[84.01883,23.79431],[84.02497,23.78462],[84.0251,23.7801],[84.01002,23.7646],[84.00774,23.75658],[84.00859,23.75037],[84.00703,23.74755],[83.99654,23.7427],[83.98324,23.7319],[83.98682,23.72257],[83.99176,23.71837],[83.99458,23.71839],[84.0022,23.70972],[84.0104,23.70737],[84.01524,23.70034],[84.02408,23.69515],[84.03131,23.6944],[84.04026,23.6963],[84.04972,23.69325],[84.05726,23.698],[84.05827,23.70012],[84.06494,23.69586],[84.064,23.69419],[84.06301,23.69564],[84.06204,23.69116],[84.06441,23.69151],[84.06766,23.695],[84.06969,23.69339],[84.06988,23.69052],[84.06946,23.68806],[84.0645,23.68834],[84.06192,23.6856],[84.05894,23.67179],[84.05658,23.6708],[84.05648,23.66651],[84.05268,23.66039],[84.03926,23.65466],[84.02163,23.63973],[84.02082,23.63646],[84.01638,23.63382],[84.01421,23.63046],[84.00853,23.62736],[84.00771,23.6223],[84.01109,23.62061],[84.01673,23.60842],[84.02086,23.60442],[84.02851,23.60233],[84.03006,23.6],[84.02815,23.59371],[84.02977,23.58576],[84.02805,23.57777],[84.02954,23.5664],[84.02644,23.55677],[84.02438,23.55556],[84.02654,23.55295],[84.02806,23.5456],[84.02084,23.53097],[84.02159,23.52767],[84.01747,23.52261],[84.01858,23.5174],[84.01516,23.509],[84.01465,23.5035],[84.00736,23.49768],[84.00078,23.49693],[84.00113,23.4937],[83.99852,23.48678],[83.98891,23.47874],[83.98482,23.46571],[83.97379,23.45934],[83.97483,23.45124],[83.97869,23.44737],[83.98531,23.43504],[83.98332,23.43139],[83.98616,23.43057],[83.98364,23.42853],[83.9837,23.42627],[83.98576,23.42583],[83.98048,23.42152],[83.9809,23.41929],[83.97814,23.41415],[83.98016,23.41266],[83.97719,23.41087],[83.97509,23.40313],[83.97215,23.40267],[83.97148,23.40088],[83.97284,23.39989],[83.9688,23.39349],[83.96889,23.39082],[83.9675,23.39101],[83.96848,23.38919],[83.967,23.38758],[83.96914,23.38667],[83.96795,23.38541],[83.96994,23.38383],[83.96882,23.38341],[83.97075,23.37914],[83.98026,23.36811],[83.98028,23.36459],[84.0026,23.35735],[84.0048,23.35401],[84.01078,23.35371],[84.0163,23.36961],[84.02386,23.3765],[84.03642,23.37852],[84.05084,23.37477],[84.04822,23.3697],[84.05236,23.36726],[84.0535,23.36482],[84.05205,23.35928],[84.05433,23.3524],[84.06016,23.3502],[84.06658,23.34405],[84.06872,23.33824],[84.07765,23.33241],[84.09744,23.33134],[84.09576,23.33411],[84.10015,23.33908],[84.10217,23.34057],[84.10524,23.3402],[84.10736,23.34362],[84.11295,23.34305],[84.11608,23.35068],[84.12123,23.34912],[84.123,23.34685],[84.13171,23.34625],[84.13429,23.34123],[84.1423,23.33946],[84.14996,23.33516],[84.15392,23.33589],[84.18679,23.32554],[84.19205,23.32534],[84.19522,23.32672],[84.19852,23.33491],[84.20222,23.33827],[84.22179,23.34049],[84.22551,23.34161],[84.22873,23.34505],[84.24108,23.34772],[84.24434,23.35026],[84.24312,23.35472],[84.24802,23.35598],[84.24768,23.3666],[84.25321,23.37336],[84.25749,23.37294],[84.26008,23.38226],[84.25774,23.3848],[84.25609,23.39456],[84.25306,23.39765],[84.25337,23.40246],[84.25124,23.40893],[84.25577,23.42454],[84.25515,23.42942],[84.2518,23.43244],[84.24897,23.44046],[84.24587,23.4431],[84.24857,23.45055],[84.25692,23.45894],[84.27387,23.4634],[84.27734,23.46748],[84.27515,23.46744],[84.27641,23.47173],[84.28206,23.46709],[84.28719,23.49022],[84.29064,23.49357],[84.3018,23.48426],[84.31754,23.48191],[84.31751,23.48688],[84.31976,23.4901],[84.31652,23.49105],[84.31657,23.49331],[84.32492,23.49203],[84.32924,23.49357],[84.32877,23.50294],[84.33078,23.50901],[84.32634,23.51202],[84.32789,23.52228],[84.33271,23.52937],[84.32741,23.53216],[84.32746,23.5543],[84.3192,23.57473],[84.31899,23.58025],[84.32819,23.58056],[84.34195,23.58466],[84.34372,23.59058],[84.34146,23.59435],[84.34381,23.59596],[84.34228,23.59935],[84.35079,23.59938],[84.35389,23.60563],[84.3585,23.60893],[84.37775,23.60479],[84.38267,23.60766],[84.38679,23.60517],[84.39947,23.6029],[84.39912,23.61796],[84.39621,23.63332],[84.39823,23.63789],[84.4122,23.63903],[84.41757,23.63404],[84.42686,23.63337],[84.4366,23.62932],[84.44335,23.63716],[84.44426,23.63493],[84.45112,23.63376],[84.45944,23.62777],[84.46675,23.62739],[84.46268,23.63726],[84.46355,23.64219],[84.4623,23.645],[84.47044,23.65833],[84.47557,23.65906],[84.47703,23.66174],[84.4822,23.66372],[84.49164,23.66165],[84.49507,23.66781],[84.49526,23.67129],[84.50468,23.67524],[84.51361,23.67448],[84.51732,23.67129],[84.53218,23.6679],[84.53577,23.67048],[84.54,23.66865],[84.54652,23.66052],[84.54626,23.65467],[84.54939,23.65425],[84.5517,23.64783],[84.55428,23.64634],[84.55669,23.64081],[84.55626,23.63688],[84.55312,23.63167],[84.56485,23.616],[84.5733,23.61485],[84.58365,23.61688],[84.58606,23.62722],[84.58441,23.63269],[84.58803,23.64741],[84.59292,23.6525],[84.59385,23.65768],[84.59109,23.66434],[84.5942,23.66639],[84.59695,23.66527],[84.60106,23.66818],[84.61425,23.6584],[84.62046,23.66208],[84.62502,23.6606],[84.6293,23.66362],[84.64144,23.66512],[84.64258,23.66852],[84.66054,23.64789],[84.66007,23.64605],[84.6632,23.64155],[84.66277,23.63136],[84.66586,23.62595],[84.68228,23.61776],[84.68078,23.60718],[84.67932,23.60581],[84.68645,23.6049],[84.69463,23.60979],[84.7232,23.6197],[84.73128,23.63048],[84.7315,23.63998],[84.73336,23.64113],[84.73726,23.63959],[84.74099,23.63195],[84.74482,23.63248],[84.74423,23.627],[84.74605,23.62432],[84.74626,23.61645],[84.74454,23.61446],[84.74674,23.60848],[84.76021,23.60577],[84.76383,23.60193],[84.76509,23.59788],[84.76776,23.59691],[84.76873,23.59164],[84.76605,23.58569],[84.77318,23.58248],[84.77256,23.57689],[84.78172,23.57191],[84.78588,23.57201],[84.78574,23.56447],[84.78227,23.56018],[84.78191,23.55312],[84.78342,23.54943],[84.79019,23.54498],[84.79279,23.54495],[84.79354,23.55656],[84.79569,23.56121],[84.79464,23.56725],[84.79584,23.57253],[84.79413,23.57622],[84.79735,23.57931],[84.80335,23.57946],[84.80175,23.57695],[84.80234,23.57078],[84.79919,23.56653],[84.79967,23.56441],[84.80994,23.56463],[84.81651,23.56985],[84.8237,23.5689],[84.8211,23.56489],[84.82423,23.55975],[84.82227,23.5576],[84.82112,23.55184],[84.82315,23.54942],[84.82181,23.54637],[84.834,23.54456],[84.83819,23.53977],[84.85916,23.53285],[84.85802,23.53613],[84.86186,23.54259],[84.8676,23.54096],[84.86948,23.54477],[84.87404,23.5444],[84.87768,23.55953],[84.89729,23.55836],[84.90062,23.57179],[84.90609,23.58134],[84.90624,23.58508],[84.91195,23.57509],[84.90878,23.56834],[84.91081,23.54192],[84.91789,23.54111],[84.92529,23.55507],[84.9365,23.55016],[84.93572,23.55445],[84.938,23.56216],[84.93444,23.56637],[84.9362,23.56954],[84.93463,23.57265],[84.94,23.58969],[84.94534,23.59592],[84.94847,23.6077],[84.94649,23.61027],[84.94623,23.61865],[84.94344,23.61965],[84.94516,23.62511],[84.94401,23.63791],[84.9207,23.64867],[84.9213,23.65458],[84.92412,23.65683],[84.92596,23.6619],[84.92371,23.66937],[84.93013,23.67588],[84.93671,23.67928],[84.9379,23.68158],[84.93552,23.68551],[84.93633,23.68995],[84.94347,23.69413],[84.95032,23.70248],[84.95249,23.70258],[84.95486,23.69771],[84.96381,23.69674],[84.96757,23.70534],[84.96516,23.71168],[84.96714,23.71524],[84.96117,23.71685],[84.96218,23.72485],[84.95637,23.72909],[84.95001,23.72909],[84.93885,23.73328],[84.93759,23.7359],[84.93797,23.74259],[84.93407,23.74569],[84.92834,23.76083],[84.93013,23.77112],[84.91299,23.77318],[84.90454,23.77659],[84.90346,23.78455],[84.90832,23.78911],[84.90869,23.79368],[84.9074,23.7924],[84.90689,23.79351],[84.90892,23.79676],[84.90842,23.80179],[84.9106,23.80356],[84.91339,23.80337],[84.91722,23.80815],[84.92456,23.80878],[84.93842,23.80487],[84.94772,23.80609],[84.94658,23.81326],[84.94827,23.81825],[84.9456,23.8279],[84.94896,23.83081],[84.94877,23.8461],[84.94344,23.85629],[84.93161,23.85863],[84.93027,23.86131],[84.93726,23.87145],[84.94218,23.87441],[84.94606,23.87271],[84.95046,23.87687],[84.95358,23.87609],[84.95015,23.88074],[84.95025,23.88466],[84.9474,23.88531],[84.94871,23.89193],[84.9455,23.89467],[84.94614,23.89711],[84.9431,23.9071],[84.9388,23.91073],[84.93027,23.91145],[84.92752,23.91436],[84.93008,23.91958],[84.92923,23.92655],[84.93509,23.93444],[84.9348,23.94111],[84.92865,23.94778],[84.92149,23.95244],[84.91314,23.95076],[84.90382,23.95167],[84.89687,23.94603],[84.89049,23.94363],[84.88931,23.94905],[84.88027,23.95436],[84.86653,23.9546],[84.8617,23.95981],[84.85653,23.96082],[84.85524,23.96422],[84.85109,23.96545],[84.84758,23.96597],[84.84456,23.96367],[84.84078,23.96357],[84.83097,23.95724],[84.83145,23.96284],[84.82698,23.97185],[84.8287,23.98528],[84.82757,23.98713],[84.81683,23.98177],[84.81297,23.9826],[84.81386,23.98029],[84.80715,23.97259],[84.80229,23.9763],[84.79728,23.97288],[84.78602,23.97436],[84.78357,23.97673],[84.77922,23.97072],[84.77398,23.96898],[84.77205,23.97079],[84.77197,23.97351],[84.76282,23.97371],[84.7624,23.97478],[84.76878,23.9795],[84.76854,23.98358],[84.77277,23.98384],[84.77466,23.98576],[84.77404,23.98799],[84.76914,23.98851],[84.76439,23.99738],[84.77253,24.00477],[84.77236,24.0108],[84.76617,24.01386],[84.76222,24.02628],[84.75611,24.02967],[84.75427,24.03536],[84.75853,24.03781],[84.7586,24.04031],[84.75595,24.04247],[84.75233,24.03715],[84.7506,24.04037]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"336","area_level":"District","area_name":"Lohardaga","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.50662,23.67446],[84.50468,23.67524],[84.49526,23.67129],[84.49507,23.66781],[84.49164,23.66165],[84.4822,23.66372],[84.47703,23.66174],[84.47557,23.65906],[84.47044,23.65833],[84.4623,23.645],[84.46355,23.64219],[84.46268,23.63726],[84.46675,23.62739],[84.45944,23.62777],[84.45112,23.63376],[84.44426,23.63493],[84.44335,23.63716],[84.4366,23.62932],[84.42686,23.63337],[84.41757,23.63404],[84.4122,23.63903],[84.39823,23.63789],[84.39621,23.63332],[84.40035,23.60473],[84.39947,23.6029],[84.38679,23.60517],[84.39312,23.60103],[84.39577,23.59743],[84.4023,23.60249],[84.40583,23.60306],[84.42776,23.59225],[84.43419,23.59147],[84.437,23.58953],[84.44165,23.59099],[84.44325,23.59566],[84.44905,23.59381],[84.45264,23.5973],[84.45623,23.59729],[84.45593,23.58944],[84.4535,23.58514],[84.46544,23.58338],[84.47172,23.57974],[84.47122,23.57644],[84.4742,23.5736],[84.47369,23.57119],[84.46927,23.56795],[84.46613,23.54568],[84.46725,23.54367],[84.46242,23.53458],[84.46409,23.52859],[84.46962,23.52365],[84.47121,23.52023],[84.47157,23.49817],[84.47503,23.49325],[84.47645,23.48609],[84.46734,23.47866],[84.46521,23.46779],[84.459,23.46444],[84.45321,23.45795],[84.45083,23.45845],[84.44602,23.44675],[84.43794,23.44023],[84.43361,23.43888],[84.43108,23.43562],[84.43424,23.43282],[84.43588,23.42225],[84.44046,23.41691],[84.44273,23.40482],[84.44793,23.40247],[84.45897,23.40393],[84.46392,23.40706],[84.47278,23.40305],[84.47574,23.40434],[84.4813,23.39398],[84.47599,23.39063],[84.4729,23.38525],[84.47243,23.37003],[84.47644,23.35906],[84.48173,23.35853],[84.48728,23.35225],[84.49155,23.35403],[84.49728,23.35143],[84.49762,23.35285],[84.50071,23.35262],[84.50187,23.35648],[84.5009,23.3602],[84.50236,23.3629],[84.5005,23.37113],[84.50559,23.37303],[84.51265,23.38393],[84.5151,23.38471],[84.52218,23.37738],[84.52139,23.36764],[84.52488,23.36513],[84.52762,23.3656],[84.53593,23.34979],[84.53989,23.34557],[84.54805,23.34344],[84.55721,23.34634],[84.56386,23.34593],[84.56623,23.34225],[84.57118,23.34167],[84.57736,23.33126],[84.59198,23.31859],[84.59819,23.31723],[84.5991,23.31563],[84.60434,23.31562],[84.60462,23.3172],[84.60816,23.31528],[84.61419,23.32244],[84.62404,23.31451],[84.62376,23.31034],[84.63068,23.30699],[84.63958,23.30749],[84.64256,23.30623],[84.65196,23.31116],[84.6541,23.31058],[84.65376,23.30929],[84.65671,23.3067],[84.66229,23.30674],[84.66405,23.31483],[84.67282,23.31607],[84.67402,23.32048],[84.67873,23.32128],[84.68504,23.31721],[84.69141,23.30787],[84.70241,23.30893],[84.71266,23.31133],[84.71579,23.31702],[84.71548,23.31986],[84.72142,23.32095],[84.72115,23.32276],[84.72763,23.32521],[84.73132,23.3302],[84.73761,23.33197],[84.74609,23.3306],[84.74949,23.32586],[84.7503,23.32155],[84.76627,23.31942],[84.77345,23.31944],[84.77384,23.32086],[84.78124,23.31941],[84.78824,23.32174],[84.79097,23.31566],[84.79453,23.31297],[84.7907,23.30333],[84.78676,23.28101],[84.79389,23.27903],[84.79594,23.28039],[84.79972,23.27901],[84.79988,23.28019],[84.80555,23.28017],[84.81383,23.2829],[84.8148,23.29101],[84.81781,23.29511],[84.8297,23.29574],[84.83089,23.29829],[84.84303,23.29949],[84.84489,23.30218],[84.84605,23.31049],[84.85038,23.31498],[84.85841,23.31671],[84.86688,23.31544],[84.87536,23.31011],[84.88983,23.31681],[84.8962,23.3168],[84.89825,23.31926],[84.90005,23.31888],[84.89998,23.32099],[84.90396,23.32639],[84.90441,23.33334],[84.90853,23.3469],[84.90319,23.35778],[84.9045,23.3637],[84.89068,23.36676],[84.88686,23.37299],[84.88643,23.37838],[84.89395,23.38248],[84.89523,23.38479],[84.89467,23.3912],[84.89197,23.39397],[84.89052,23.39958],[84.88687,23.40236],[84.88697,23.40503],[84.89731,23.41104],[84.89818,23.41806],[84.89465,23.41939],[84.89844,23.42481],[84.89521,23.42644],[84.89732,23.433],[84.90777,23.44408],[84.90835,23.44973],[84.91082,23.45414],[84.92009,23.45834],[84.92447,23.46216],[84.9234,23.46918],[84.92578,23.4693],[84.92822,23.47562],[84.93133,23.47536],[84.93677,23.48062],[84.93812,23.48715],[84.94026,23.48801],[84.94369,23.49501],[84.946,23.49629],[84.94668,23.50041],[84.94219,23.50821],[84.94086,23.51331],[84.94288,23.51669],[84.94124,23.52002],[84.92971,23.52666],[84.92594,23.5216],[84.91623,23.52266],[84.91615,23.52101],[84.91173,23.52089],[84.90828,23.5233],[84.90665,23.52771],[84.91088,23.53203],[84.91071,23.53718],[84.90839,23.5384],[84.91789,23.54111],[84.91071,23.54225],[84.90878,23.56834],[84.91195,23.57509],[84.90695,23.58488],[84.90062,23.57179],[84.89729,23.55836],[84.87768,23.55953],[84.87404,23.5444],[84.86948,23.54477],[84.8676,23.54096],[84.86186,23.54259],[84.85802,23.53613],[84.85916,23.53285],[84.83819,23.53977],[84.834,23.54456],[84.82181,23.54637],[84.82315,23.54942],[84.82112,23.55184],[84.82227,23.5576],[84.82423,23.55975],[84.8211,23.56489],[84.8237,23.5689],[84.81651,23.56985],[84.80994,23.56463],[84.79967,23.56441],[84.79919,23.56653],[84.80234,23.57078],[84.80175,23.57695],[84.80335,23.57946],[84.79735,23.57931],[84.79413,23.57622],[84.79584,23.57253],[84.79464,23.56725],[84.79569,23.56121],[84.79354,23.55656],[84.79279,23.54495],[84.79019,23.54498],[84.78342,23.54943],[84.78191,23.55312],[84.78227,23.56018],[84.78574,23.56447],[84.78588,23.57201],[84.78172,23.57191],[84.77256,23.57689],[84.77318,23.58248],[84.76605,23.58569],[84.76873,23.59164],[84.76776,23.59691],[84.76509,23.59788],[84.76383,23.60193],[84.76021,23.60577],[84.74674,23.60848],[84.74454,23.61446],[84.74626,23.61645],[84.74605,23.62432],[84.74423,23.627],[84.74482,23.63248],[84.74099,23.63195],[84.73726,23.63959],[84.73336,23.64113],[84.7315,23.63998],[84.73128,23.63048],[84.7232,23.6197],[84.69463,23.60979],[84.68645,23.6049],[84.67932,23.60581],[84.68078,23.60718],[84.68228,23.61776],[84.66586,23.62595],[84.66277,23.63136],[84.6632,23.64155],[84.66007,23.64605],[84.66054,23.64789],[84.64258,23.66852],[84.64144,23.66512],[84.6293,23.66362],[84.62502,23.6606],[84.62046,23.66208],[84.61425,23.6584],[84.60106,23.66818],[84.59695,23.66527],[84.5942,23.66639],[84.59109,23.66434],[84.59385,23.65768],[84.59292,23.6525],[84.58803,23.64741],[84.58441,23.63269],[84.58606,23.62722],[84.58365,23.61688],[84.5733,23.61485],[84.56485,23.616],[84.55312,23.63167],[84.55626,23.63688],[84.55669,23.64081],[84.55428,23.64634],[84.5517,23.64783],[84.54939,23.65425],[84.54626,23.65467],[84.54652,23.66052],[84.54,23.66865],[84.53577,23.67048],[84.53218,23.6679],[84.51732,23.67129],[84.51361,23.67448],[84.50662,23.67446]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"337","area_level":"District","area_name":"Pakur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.55109,24.82889],[87.54143,24.82278],[87.53697,24.82307],[87.53818,24.8196],[87.53721,24.81384],[87.54154,24.80356],[87.54086,24.80144],[87.53049,24.79909],[87.51931,24.80101],[87.5179,24.79704],[87.51171,24.79943],[87.50572,24.79315],[87.50133,24.79273],[87.49756,24.79023],[87.49676,24.78708],[87.4992,24.78229],[87.48903,24.78542],[87.48841,24.78947],[87.48048,24.7869],[87.47381,24.78921],[87.46827,24.79357],[87.46214,24.79314],[87.45906,24.79073],[87.46035,24.78589],[87.45421,24.78592],[87.45718,24.78176],[87.45668,24.77935],[87.45171,24.77724],[87.45006,24.7705],[87.4443,24.76903],[87.44345,24.76594],[87.43938,24.76306],[87.43691,24.75877],[87.43662,24.75569],[87.43953,24.75142],[87.44423,24.75084],[87.45515,24.73775],[87.45387,24.73721],[87.45509,24.73557],[87.45856,24.7348],[87.46073,24.73164],[87.45808,24.72955],[87.45771,24.72661],[87.46193,24.72531],[87.46184,24.72239],[87.46539,24.72058],[87.46466,24.70527],[87.46575,24.70222],[87.47061,24.69993],[87.47151,24.69269],[87.47433,24.68876],[87.47093,24.68533],[87.47124,24.68328],[87.46867,24.68202],[87.46948,24.67411],[87.47245,24.66833],[87.47062,24.66728],[87.4735,24.65708],[87.47282,24.65151],[87.4751,24.64748],[87.47009,24.64328],[87.4672,24.64458],[87.46322,24.63948],[87.45797,24.63875],[87.45579,24.6357],[87.44858,24.63167],[87.44784,24.62294],[87.44578,24.61835],[87.45019,24.61652],[87.46215,24.61667],[87.46482,24.60367],[87.45675,24.59908],[87.45633,24.58813],[87.45718,24.58582],[87.46709,24.58091],[87.46829,24.56982],[87.46414,24.56654],[87.45841,24.56879],[87.45041,24.56197],[87.44064,24.56852],[87.43847,24.56363],[87.43807,24.55735],[87.43211,24.55846],[87.42913,24.55485],[87.42089,24.55399],[87.41722,24.54621],[87.41344,24.54282],[87.41537,24.53974],[87.40758,24.54088],[87.40617,24.5356],[87.39849,24.54686],[87.39241,24.54761],[87.3903,24.54116],[87.39158,24.53744],[87.38742,24.52439],[87.39049,24.52122],[87.39057,24.51686],[87.39417,24.51028],[87.39755,24.51049],[87.4021,24.50805],[87.40809,24.50847],[87.41143,24.51059],[87.41689,24.51031],[87.42261,24.51687],[87.42528,24.51502],[87.42888,24.51558],[87.43183,24.51285],[87.43758,24.51828],[87.44617,24.51618],[87.45099,24.51966],[87.45433,24.52025],[87.45685,24.51798],[87.45871,24.51867],[87.46282,24.52307],[87.47809,24.52304],[87.48094,24.52877],[87.49913,24.52848],[87.50286,24.52377],[87.51206,24.52033],[87.51956,24.51511],[87.53367,24.51284],[87.5337,24.50894],[87.53841,24.50724],[87.54226,24.50913],[87.54545,24.51662],[87.5499,24.52018],[87.55443,24.51925],[87.56248,24.5234],[87.5666,24.52192],[87.57089,24.51438],[87.57144,24.50856],[87.57662,24.50669],[87.56926,24.5007],[87.56831,24.49734],[87.5712,24.38614],[87.58967,24.32262],[87.58661,24.26949],[87.58351,24.25673],[87.58647,24.25597],[87.58792,24.25283],[87.59418,24.25775],[87.60202,24.25732],[87.60873,24.25496],[87.61433,24.25734],[87.62714,24.25771],[87.63187,24.25534],[87.64042,24.25418],[87.64829,24.25063],[87.65466,24.23853],[87.65917,24.23612],[87.66277,24.23843],[87.6622,24.24492],[87.67234,24.24358],[87.6739,24.24802],[87.67627,24.24897],[87.68754,24.24644],[87.68666,24.2509],[87.6892,24.25326],[87.69036,24.25785],[87.69739,24.25991],[87.69995,24.2627],[87.70589,24.26144],[87.70929,24.27063],[87.70701,24.27578],[87.7133,24.28403],[87.71367,24.2944],[87.7293,24.28842],[87.73226,24.29171],[87.73861,24.29449],[87.73757,24.29611],[87.74315,24.29678],[87.74742,24.29924],[87.74613,24.30123],[87.74821,24.30435],[87.75486,24.31025],[87.7616,24.30847],[87.76297,24.32131],[87.77063,24.32214],[87.76902,24.32792],[87.76257,24.33079],[87.7644,24.33933],[87.76818,24.34472],[87.77123,24.34444],[87.77277,24.34977],[87.77984,24.35842],[87.78369,24.36243],[87.78597,24.36249],[87.79382,24.38307],[87.8011,24.38222],[87.79936,24.38716],[87.79935,24.39421],[87.79407,24.39684],[87.79421,24.40013],[87.79838,24.4022],[87.80219,24.39998],[87.80708,24.40701],[87.80983,24.40681],[87.80871,24.40514],[87.81017,24.40614],[87.81231,24.41102],[87.81128,24.41783],[87.80662,24.42029],[87.80437,24.4127],[87.80054,24.40931],[87.79955,24.41221],[87.79271,24.41477],[87.79331,24.41247],[87.79156,24.41433],[87.78853,24.4145],[87.78883,24.41655],[87.78979,24.42066],[87.79549,24.42143],[87.79415,24.42625],[87.79224,24.42774],[87.79612,24.43502],[87.79456,24.4364],[87.80077,24.43733],[87.80082,24.44092],[87.80394,24.44161],[87.80001,24.44591],[87.80314,24.454],[87.80999,24.45489],[87.81078,24.45651],[87.81355,24.45462],[87.8132,24.45671],[87.81978,24.45453],[87.81893,24.45799],[87.82377,24.45846],[87.82398,24.46517],[87.82119,24.46669],[87.82267,24.47103],[87.81865,24.47226],[87.81835,24.47481],[87.8107,24.47636],[87.81456,24.48864],[87.81662,24.49015],[87.82272,24.48845],[87.82729,24.48927],[87.82443,24.4906],[87.82576,24.49062],[87.82815,24.49862],[87.82384,24.50044],[87.82141,24.4965],[87.82313,24.49461],[87.81712,24.49255],[87.81623,24.49094],[87.81168,24.49077],[87.81131,24.49359],[87.81293,24.49365],[87.81191,24.49665],[87.81341,24.49739],[87.81254,24.49971],[87.81723,24.50061],[87.81348,24.50534],[87.81429,24.50884],[87.81138,24.50905],[87.8117,24.51272],[87.80934,24.51452],[87.80458,24.51097],[87.80459,24.50866],[87.80262,24.50823],[87.80453,24.50274],[87.80312,24.50202],[87.80564,24.50061],[87.80126,24.49372],[87.79866,24.49449],[87.79851,24.49705],[87.79579,24.49981],[87.79663,24.50127],[87.79414,24.50114],[87.796,24.50456],[87.80153,24.50441],[87.80082,24.50588],[87.8024,24.50733],[87.79833,24.50848],[87.79807,24.51137],[87.80194,24.5122],[87.80424,24.51923],[87.80216,24.52375],[87.79923,24.52473],[87.80042,24.53342],[87.79756,24.5388],[87.79957,24.54339],[87.8047,24.54188],[87.80859,24.54669],[87.80388,24.5547],[87.80245,24.56169],[87.79993,24.56137],[87.79988,24.5648],[87.79604,24.56591],[87.79496,24.56955],[87.79246,24.57166],[87.77837,24.57346],[87.77564,24.57124],[87.77019,24.57049],[87.77122,24.58302],[87.79213,24.58319],[87.79601,24.58076],[87.81218,24.57856],[87.81696,24.57339],[87.82534,24.56913],[87.82388,24.56402],[87.8263,24.55872],[87.83283,24.55806],[87.84082,24.55979],[87.84405,24.55743],[87.84792,24.5573],[87.84941,24.55384],[87.85328,24.55764],[87.85235,24.56177],[87.85644,24.5581],[87.86051,24.55883],[87.86087,24.55693],[87.86938,24.55602],[87.86922,24.5645],[87.88927,24.56505],[87.89171,24.56866],[87.89193,24.58418],[87.89774,24.58491],[87.9011,24.58938],[87.90828,24.58892],[87.91328,24.59346],[87.91405,24.59662],[87.91182,24.59793],[87.91318,24.59991],[87.91129,24.60103],[87.91077,24.61043],[87.89254,24.60975],[87.89168,24.60864],[87.89347,24.60548],[87.8873,24.60778],[87.88354,24.61206],[87.88117,24.61167],[87.88039,24.61325],[87.87837,24.61206],[87.87583,24.61523],[87.87811,24.61819],[87.88684,24.61702],[87.89265,24.61354],[87.90603,24.61501],[87.90577,24.62928],[87.90032,24.62559],[87.89744,24.6256],[87.88864,24.62634],[87.88792,24.63034],[87.89185,24.6341],[87.90993,24.6314],[87.91127,24.63797],[87.91414,24.63771],[87.91087,24.65342],[87.9163,24.65829],[87.91661,24.66575],[87.90844,24.66717],[87.90901,24.67],[87.90478,24.67244],[87.89711,24.67255],[87.89071,24.67521],[87.88775,24.67999],[87.89414,24.68701],[87.89767,24.68788],[87.90114,24.69412],[87.90292,24.70514],[87.89992,24.70518],[87.90064,24.71128],[87.90328,24.71464],[87.90724,24.71497],[87.90635,24.71977],[87.90835,24.72162],[87.90401,24.72252],[87.90459,24.72533],[87.89864,24.72369],[87.89001,24.72522],[87.8902,24.72795],[87.88825,24.72891],[87.8888,24.73438],[87.88735,24.73655],[87.8851,24.73679],[87.88545,24.73968],[87.88302,24.74132],[87.87855,24.74179],[87.87939,24.74035],[87.87413,24.73208],[87.86561,24.73203],[87.8514,24.73924],[87.84455,24.74037],[87.84357,24.73533],[87.85097,24.72582],[87.84949,24.72031],[87.84502,24.71973],[87.84034,24.72435],[87.84056,24.72629],[87.83371,24.72819],[87.82807,24.72673],[87.82699,24.72434],[87.82276,24.72384],[87.82134,24.72584],[87.81401,24.72551],[87.81126,24.72677],[87.80691,24.72608],[87.80724,24.71823],[87.7985,24.7147],[87.79474,24.72429],[87.79667,24.7264],[87.80046,24.72588],[87.80043,24.72855],[87.79635,24.73323],[87.78932,24.75015],[87.78426,24.75343],[87.78128,24.75339],[87.77599,24.75187],[87.77336,24.74646],[87.76435,24.74562],[87.75761,24.74748],[87.74446,24.75572],[87.74437,24.75731],[87.74825,24.76101],[87.75331,24.762],[87.7551,24.76419],[87.7546,24.76611],[87.74924,24.76781],[87.74473,24.76748],[87.74272,24.76436],[87.73655,24.7647],[87.71828,24.73092],[87.71619,24.72948],[87.71282,24.73134],[87.71369,24.73284],[87.71211,24.73741],[87.71378,24.74102],[87.7096,24.73921],[87.70657,24.74163],[87.70351,24.74141],[87.70009,24.74632],[87.6936,24.74643],[87.68856,24.74244],[87.68396,24.74818],[87.68529,24.75299],[87.67915,24.75652],[87.68047,24.76104],[87.67256,24.76494],[87.66515,24.7597],[87.66223,24.76377],[87.65834,24.76507],[87.65637,24.76965],[87.6566,24.76738],[87.65318,24.7687],[87.65064,24.76722],[87.6446,24.76811],[87.64413,24.76969],[87.64049,24.76894],[87.6321,24.77231],[87.6308,24.77661],[87.62495,24.77497],[87.62244,24.7776],[87.62007,24.77621],[87.61914,24.7793],[87.61613,24.7803],[87.61267,24.77778],[87.60995,24.78067],[87.61096,24.78308],[87.60813,24.78772],[87.60336,24.78893],[87.59992,24.78696],[87.59898,24.78778],[87.59953,24.79291],[87.5935,24.78997],[87.58595,24.79069],[87.58657,24.79246],[87.59534,24.79433],[87.59579,24.79624],[87.59277,24.79888],[87.59215,24.8028],[87.59937,24.80501],[87.6025,24.80455],[87.60243,24.80239],[87.60901,24.80008],[87.61116,24.79773],[87.61472,24.79759],[87.6167,24.79515],[87.62333,24.79346],[87.62266,24.79605],[87.61738,24.79782],[87.60771,24.8081],[87.60122,24.80715],[87.59375,24.81099],[87.58626,24.80841],[87.58134,24.81016],[87.57655,24.80745],[87.57181,24.80816],[87.56985,24.81315],[87.56267,24.81648],[87.55671,24.8226],[87.55622,24.82842],[87.55109,24.82889]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"338","area_level":"District","area_name":"Palamu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.02489,24.62841],[84.02333,24.63142],[84.02756,24.63316],[84.02216,24.63751],[84.00779,24.64289],[84.00541,24.64149],[83.99294,24.62995],[83.97542,24.59141],[83.96897,24.58565],[83.96732,24.58157],[83.95533,24.56789],[83.94307,24.55816],[83.93613,24.54912],[83.90926,24.54121],[83.88862,24.53787],[83.87452,24.53231],[83.87403,24.52706],[83.85694,24.49606],[83.85379,24.48107],[83.85443,24.44815],[83.85702,24.44183],[83.85773,24.42562],[83.85303,24.40138],[83.84489,24.39345],[83.82402,24.38005],[83.8173,24.37223],[83.81364,24.35909],[83.81332,24.35033],[83.82828,24.33138],[83.83219,24.3182],[83.83125,24.31329],[83.82056,24.30272],[83.81788,24.29494],[83.81988,24.28859],[83.82943,24.28095],[83.84678,24.25678],[83.86082,24.24123],[83.87364,24.22198],[83.88225,24.20505],[83.89157,24.19727],[83.90658,24.189],[83.93611,24.16318],[83.96923,24.15002],[83.97235,24.14002],[83.97616,24.14073],[83.97766,24.1394],[83.97665,24.13718],[83.97868,24.12348],[83.98293,24.12058],[83.98659,24.11355],[83.99005,24.11133],[83.9912,24.10624],[83.98984,24.10112],[83.97822,24.10077],[83.9714,24.10596],[83.96895,24.10547],[83.96092,24.10915],[83.95241,24.0949],[83.9486,24.09515],[83.93978,24.10082],[83.93687,24.09709],[83.93128,24.09564],[83.92797,24.09022],[83.92143,24.08837],[83.91169,24.09485],[83.90839,24.08823],[83.89807,24.0837],[83.89272,24.08617],[83.88949,24.07955],[83.88526,24.07838],[83.87383,24.06944],[83.8662,24.06909],[83.86576,24.05827],[83.86323,24.05095],[83.864,24.0452],[83.86196,24.04239],[83.86264,24.03852],[83.85741,24.03467],[83.85106,24.03729],[83.84922,24.0365],[83.84553,24.02413],[83.83174,24.00335],[83.82679,24.00088],[83.82994,23.99558],[83.83876,23.99103],[83.84263,23.99088],[83.84226,23.98744],[83.83974,23.98821],[83.83744,23.98555],[83.83671,23.97941],[83.83338,23.97225],[83.83598,23.96976],[83.83234,23.96549],[83.81906,23.96232],[83.81797,23.96038],[83.81891,23.95801],[83.82158,23.95559],[83.82588,23.95597],[83.82924,23.9516],[83.83335,23.95017],[83.83764,23.95209],[83.84216,23.95105],[83.84568,23.95318],[83.86741,23.95473],[83.8648,23.97223],[83.86996,23.97595],[83.86776,23.97927],[83.86805,23.98177],[83.87393,23.98426],[83.88348,23.98494],[83.89459,23.98097],[83.8952,23.97722],[83.89778,23.97409],[83.89627,23.97359],[83.89692,23.97121],[83.8952,23.96931],[83.89687,23.96618],[83.90191,23.96525],[83.90673,23.96007],[83.90763,23.95075],[83.92011,23.94118],[83.91505,23.93744],[83.92097,23.93424],[83.92323,23.9367],[83.92635,23.93582],[83.92737,23.93055],[83.92943,23.92937],[83.92606,23.92679],[83.92767,23.92477],[83.93227,23.92306],[83.93798,23.92514],[83.94171,23.92239],[83.93833,23.92022],[83.93842,23.91595],[83.93911,23.91026],[83.94218,23.90432],[83.93595,23.90062],[83.93552,23.89702],[83.93705,23.89551],[83.93287,23.88251],[83.93578,23.8813],[83.93893,23.87584],[83.93744,23.87327],[83.93887,23.8706],[83.93798,23.86812],[83.9411,23.86743],[83.94869,23.8611],[83.95795,23.85745],[83.96306,23.85947],[83.96697,23.85904],[83.97373,23.85797],[83.98157,23.85409],[83.98437,23.84316],[83.98399,23.83743],[83.99358,23.8223],[84.00191,23.81718],[84.00094,23.81361],[84.0021,23.80996],[83.99818,23.80285],[83.99848,23.79937],[84.00033,23.79774],[83.99923,23.79381],[84.00221,23.79259],[84.00532,23.79525],[84.01308,23.79463],[84.01733,23.79617],[84.02068,23.80176],[84.0239,23.80309],[84.0291,23.80151],[84.0329,23.79569],[84.03799,23.797],[84.04535,23.81163],[84.05672,23.816],[84.05673,23.81971],[84.05198,23.82989],[84.0518,23.83372],[84.06198,23.84262],[84.06481,23.85711],[84.07193,23.86088],[84.0895,23.86541],[84.10627,23.88656],[84.11849,23.89855],[84.13452,23.90142],[84.13884,23.90418],[84.143,23.9154],[84.14715,23.92182],[84.14159,23.94107],[84.14289,23.94555],[84.15182,23.94125],[84.18452,23.93541],[84.1956,23.92808],[84.20033,23.91724],[84.21084,23.91852],[84.21435,23.91647],[84.21611,23.91232],[84.21453,23.90187],[84.21823,23.89792],[84.22459,23.89561],[84.23758,23.89941],[84.2485,23.88361],[84.25832,23.88323],[84.26653,23.88064],[84.27503,23.882],[84.27739,23.88049],[84.27762,23.87506],[84.28007,23.87252],[84.27785,23.86831],[84.27853,23.86608],[84.28319,23.8693],[84.28701,23.86824],[84.28921,23.86959],[84.3037,23.86518],[84.31833,23.8783],[84.32145,23.87824],[84.32342,23.87517],[84.33254,23.87545],[84.33413,23.87815],[84.33215,23.88843],[84.32768,23.89379],[84.32759,23.89593],[84.33083,23.90594],[84.33747,23.91187],[84.33431,23.91912],[84.33958,23.93197],[84.34299,23.95083],[84.34493,23.95347],[84.35705,23.9471],[84.36053,23.94345],[84.36931,23.94053],[84.38247,23.94215],[84.38425,23.93984],[84.3916,23.937],[84.40682,23.93401],[84.41147,23.94115],[84.4116,23.94399],[84.4145,23.94602],[84.42479,23.94968],[84.43802,23.94764],[84.4408,23.95039],[84.44349,23.95036],[84.44778,23.95836],[84.45112,23.96066],[84.45739,23.96038],[84.46287,23.95307],[84.4704,23.95692],[84.4696,23.9475],[84.47109,23.94524],[84.47717,23.94243],[84.48184,23.92955],[84.48046,23.92602],[84.47328,23.92761],[84.47107,23.91617],[84.47329,23.91294],[84.48179,23.9083],[84.48705,23.89405],[84.49669,23.89845],[84.49617,23.89393],[84.5091,23.89943],[84.52631,23.9012],[84.52427,23.91316],[84.5196,23.91688],[84.51882,23.92081],[84.53123,23.92345],[84.53254,23.93314],[84.53824,23.9301],[84.55651,23.9297],[84.56081,23.92652],[84.56798,23.92728],[84.57296,23.93484],[84.56934,23.94579],[84.57137,23.95903],[84.57451,23.96457],[84.58711,23.96899],[84.5907,23.97789],[84.58981,23.98034],[84.58607,23.98104],[84.58172,23.98602],[84.57166,23.98706],[84.56194,23.9978],[84.5555,24.0083],[84.55557,24.01458],[84.55928,24.02255],[84.55856,24.02516],[84.56666,24.03082],[84.56632,24.0345],[84.55807,24.04091],[84.5561,24.04728],[84.56241,24.05065],[84.56987,24.05114],[84.57075,24.05682],[84.57884,24.07056],[84.57386,24.07414],[84.56619,24.07593],[84.56048,24.08695],[84.55912,24.09592],[84.55565,24.09859],[84.55562,24.10103],[84.56524,24.11178],[84.56785,24.1121],[84.56921,24.11564],[84.57347,24.11568],[84.57758,24.11976],[84.57828,24.1248],[84.58121,24.12957],[84.58077,24.13248],[84.58341,24.13582],[84.58349,24.14102],[84.5535,24.1514],[84.5542,24.15828],[84.55087,24.16203],[84.54887,24.1675],[84.54544,24.16708],[84.53909,24.1704],[84.53866,24.17584],[84.53376,24.17734],[84.53324,24.18204],[84.52968,24.18658],[84.53778,24.19455],[84.53929,24.20148],[84.52955,24.20555],[84.52393,24.19891],[84.51676,24.20063],[84.50278,24.19745],[84.49924,24.19963],[84.49076,24.19912],[84.48302,24.20413],[84.47606,24.20557],[84.47556,24.21482],[84.47739,24.22338],[84.47609,24.22626],[84.45985,24.2353],[84.44879,24.23896],[84.44876,24.24668],[84.45914,24.26054],[84.45931,24.26549],[84.46784,24.26431],[84.47518,24.26599],[84.46599,24.25911],[84.49155,24.26128],[84.49259,24.26405],[84.48788,24.26998],[84.4879,24.27318],[84.49308,24.285],[84.4897,24.29021],[84.48916,24.29452],[84.4942,24.29612],[84.49682,24.29958],[84.49041,24.30395],[84.48895,24.30093],[84.48599,24.30176],[84.48225,24.29792],[84.47192,24.30458],[84.47049,24.31519],[84.46639,24.31731],[84.46487,24.32055],[84.46512,24.32272],[84.46797,24.32445],[84.46376,24.32802],[84.46557,24.3314],[84.45992,24.33699],[84.45183,24.3373],[84.45153,24.33303],[84.44992,24.33254],[84.4244,24.32984],[84.42301,24.33549],[84.42498,24.34919],[84.42732,24.35513],[84.43111,24.35652],[84.41651,24.359],[84.41004,24.36258],[84.40036,24.36463],[84.40057,24.36678],[84.40521,24.37038],[84.40657,24.37489],[84.39862,24.37274],[84.39387,24.37339],[84.39353,24.37667],[84.38694,24.38233],[84.38882,24.38451],[84.38671,24.38523],[84.38824,24.38929],[84.3787,24.38798],[84.37346,24.38346],[84.36919,24.38544],[84.36348,24.38548],[84.36328,24.38832],[84.36142,24.389],[84.34929,24.39076],[84.34162,24.39355],[84.34455,24.39945],[84.33314,24.4047],[84.33035,24.41059],[84.33363,24.41269],[84.33298,24.41834],[84.33453,24.42064],[84.33035,24.42171],[84.3297,24.4192],[84.32282,24.41794],[84.32053,24.42107],[84.3206,24.42329],[84.32445,24.42747],[84.32869,24.42511],[84.33343,24.42604],[84.33557,24.4249],[84.33681,24.42885],[84.33521,24.42928],[84.3356,24.43149],[84.32798,24.43908],[84.32512,24.43905],[84.32179,24.44637],[84.29738,24.44939],[84.29702,24.45498],[84.29255,24.46147],[84.2915,24.46642],[84.29603,24.4699],[84.2961,24.47348],[84.30374,24.48053],[84.30849,24.48173],[84.31518,24.48618],[84.32745,24.48734],[84.32753,24.49236],[84.32642,24.49398],[84.32741,24.50053],[84.32222,24.50809],[84.32247,24.5167],[84.31241,24.52346],[84.313,24.53018],[84.31137,24.53447],[84.29974,24.5464],[84.29745,24.5601],[84.28947,24.56282],[84.28155,24.55887],[84.27053,24.56001],[84.27088,24.55411],[84.27384,24.55403],[84.27372,24.55042],[84.27986,24.54787],[84.27738,24.54378],[84.26929,24.54319],[84.26812,24.5383],[84.26483,24.53813],[84.26386,24.53444],[84.25902,24.53434],[84.25679,24.52688],[84.25045,24.52795],[84.25096,24.53236],[84.24963,24.53471],[84.24459,24.53674],[84.24235,24.54145],[84.23627,24.53892],[84.2364,24.54932],[84.23333,24.54986],[84.22088,24.54609],[84.21869,24.53385],[84.21506,24.53272],[84.2095,24.53418],[84.2095,24.54101],[84.20198,24.54358],[84.1993,24.54694],[84.19993,24.554],[84.18723,24.55293],[84.18794,24.5488],[84.18432,24.54479],[84.17318,24.5447],[84.17396,24.53789],[84.1815,24.52082],[84.18467,24.52144],[84.18495,24.51959],[84.18408,24.51383],[84.17863,24.50564],[84.16975,24.50333],[84.15368,24.51157],[84.15246,24.51517],[84.15732,24.52247],[84.16421,24.52818],[84.16349,24.5334],[84.15958,24.53229],[84.15374,24.53582],[84.14428,24.53825],[84.1343,24.52432],[84.14053,24.50053],[84.13715,24.49797],[84.13011,24.49751],[84.12726,24.49509],[84.12514,24.49191],[84.12474,24.48074],[84.11722,24.48046],[84.11081,24.47674],[84.10432,24.48053],[84.1,24.48537],[84.09828,24.49267],[84.09441,24.49322],[84.0919,24.49774],[84.08991,24.49777],[84.08905,24.50182],[84.0922,24.50262],[84.09197,24.50431],[84.08563,24.50518],[84.08784,24.51274],[84.08462,24.51356],[84.08634,24.51705],[84.08857,24.51776],[84.08716,24.52124],[84.08883,24.5297],[84.09322,24.53365],[84.08923,24.5358],[84.08528,24.53454],[84.08564,24.53764],[84.07807,24.54042],[84.07763,24.54633],[84.07504,24.55311],[84.07273,24.55472],[84.07249,24.55909],[84.07562,24.56139],[84.07332,24.56293],[84.07287,24.56721],[84.06885,24.56728],[84.06831,24.5706],[84.06359,24.57078],[84.06366,24.57339],[84.06061,24.57365],[84.06491,24.58103],[84.06176,24.58646],[84.05419,24.58491],[84.05095,24.58664],[84.05721,24.59248],[84.05032,24.60005],[84.04893,24.60404],[84.0469,24.60418],[84.04871,24.609],[84.05088,24.60801],[84.05202,24.60992],[84.04893,24.6117],[84.0447,24.61116],[84.04532,24.61422],[84.04257,24.6186],[84.03922,24.61768],[84.03719,24.62061],[84.03308,24.62038],[84.03437,24.62287],[84.03344,24.63003],[84.02489,24.62841]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"339","area_level":"District","area_name":"Ranchi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.9814,23.70578],[84.97787,23.70797],[84.97443,23.71521],[84.96849,23.71674],[84.96521,23.71233],[84.96757,23.70534],[84.96381,23.69674],[84.95486,23.69771],[84.95249,23.70258],[84.95032,23.70248],[84.94347,23.69413],[84.93633,23.68995],[84.93552,23.68551],[84.9379,23.68158],[84.93671,23.67928],[84.93013,23.67588],[84.92371,23.66937],[84.92596,23.6619],[84.92412,23.65683],[84.9213,23.65458],[84.9207,23.64867],[84.94401,23.63791],[84.94516,23.62511],[84.94344,23.61965],[84.94623,23.61865],[84.94649,23.61027],[84.94847,23.6077],[84.94534,23.59592],[84.94,23.58969],[84.93463,23.57265],[84.9362,23.56954],[84.93444,23.56637],[84.938,23.56216],[84.93572,23.55445],[84.9365,23.55016],[84.92529,23.55507],[84.91786,23.54106],[84.90839,23.5384],[84.91071,23.53718],[84.91088,23.53203],[84.90665,23.52771],[84.90895,23.52223],[84.91173,23.52089],[84.91615,23.52101],[84.91623,23.52266],[84.92594,23.5216],[84.9293,23.52668],[84.94124,23.52002],[84.94288,23.51669],[84.94086,23.51331],[84.94219,23.50821],[84.94662,23.49995],[84.946,23.49629],[84.94369,23.49501],[84.94026,23.48801],[84.93812,23.48715],[84.93677,23.48062],[84.93133,23.47536],[84.92822,23.47562],[84.92578,23.4693],[84.9234,23.46918],[84.92447,23.46216],[84.92009,23.45834],[84.91082,23.45414],[84.90835,23.44973],[84.90777,23.44408],[84.89732,23.433],[84.89521,23.42644],[84.89844,23.42481],[84.89465,23.41939],[84.89818,23.41806],[84.89731,23.41104],[84.89024,23.40641],[84.8874,23.40638],[84.88665,23.40315],[84.89052,23.39958],[84.89197,23.39397],[84.89467,23.3912],[84.89523,23.38479],[84.89395,23.38248],[84.88643,23.37838],[84.88822,23.36939],[84.89593,23.36468],[84.9045,23.3637],[84.90319,23.35778],[84.90853,23.3469],[84.90441,23.33334],[84.90396,23.32639],[84.90186,23.32277],[84.90717,23.32723],[84.90776,23.32599],[84.91113,23.32701],[84.91727,23.32042],[84.91998,23.32118],[84.92509,23.31097],[84.92694,23.31094],[84.9264,23.3084],[84.91072,23.29832],[84.90721,23.29036],[84.90138,23.28608],[84.8988,23.27333],[84.89952,23.26351],[84.89758,23.25884],[84.91289,23.25602],[84.9142,23.25194],[84.90941,23.25058],[84.91116,23.24906],[84.9119,23.24312],[84.93092,23.23731],[84.933,23.23484],[84.93902,23.23298],[84.93879,23.23076],[84.94938,23.22976],[84.95042,23.23132],[84.95172,23.22802],[84.94949,23.21818],[84.94725,23.21715],[84.94459,23.20931],[84.93814,23.20857],[84.93617,23.20128],[84.92624,23.20161],[84.92483,23.19885],[84.91935,23.19573],[84.91446,23.19687],[84.91184,23.19451],[84.9129,23.1911],[84.91757,23.18872],[84.92584,23.18762],[84.92345,23.17526],[84.9242,23.17246],[84.92158,23.16777],[84.90134,23.17305],[84.89525,23.17065],[84.89169,23.16643],[84.88963,23.14516],[84.88608,23.14007],[84.88796,23.13622],[84.88735,23.13269],[84.89289,23.12939],[84.88989,23.12753],[84.88884,23.11694],[84.89967,23.10973],[84.89596,23.10309],[84.89642,23.09867],[84.86874,23.09825],[84.86928,23.08859],[84.87334,23.08629],[84.87549,23.07806],[84.87446,23.06789],[84.88738,23.06188],[84.89452,23.06194],[84.89882,23.05931],[84.89957,23.05717],[84.90473,23.05616],[84.9034,23.04947],[84.91273,23.04047],[84.91199,23.0345],[84.9149,23.03276],[84.9138,23.02936],[84.92023,23.02602],[84.92438,23.02973],[84.9299,23.02811],[84.92725,23.03524],[84.93291,23.03479],[84.93403,23.0318],[84.94332,23.02376],[84.94339,23.02151],[84.93735,23.01529],[84.93943,23.01217],[84.94742,23.0089],[84.94544,23.00743],[84.9441,23.00191],[84.94565,23.00221],[84.94674,23.00692],[84.95289,23.0122],[84.9611,23.01068],[84.96511,23.01193],[84.9624,23.0158],[84.96628,23.02413],[84.97367,23.02407],[84.97576,23.02121],[84.97973,23.02228],[84.98189,23.02617],[84.98279,23.03626],[84.98438,23.03722],[84.99017,23.03592],[84.99046,23.04413],[84.99491,23.04594],[84.99609,23.04828],[84.99648,23.05177],[84.99287,23.0552],[84.99642,23.06935],[84.99455,23.0762],[84.99825,23.07961],[85.00277,23.07969],[85.00554,23.08151],[85.00772,23.08588],[85.02004,23.08772],[85.02545,23.08477],[85.02687,23.08887],[85.03093,23.08812],[85.0346,23.09016],[85.03545,23.09319],[85.03254,23.09866],[85.0353,23.10339],[85.03013,23.10669],[85.02629,23.11286],[85.02672,23.11527],[85.03115,23.11515],[85.03102,23.11716],[85.03623,23.11784],[85.04564,23.11485],[85.05516,23.11985],[85.05643,23.12907],[85.04941,23.13643],[85.04829,23.14008],[85.04937,23.14466],[85.05299,23.14369],[85.05412,23.15009],[85.05915,23.15107],[85.05749,23.15695],[85.05873,23.1597],[85.05534,23.16539],[85.05034,23.16979],[85.04353,23.17133],[85.04264,23.17314],[85.0426,23.17824],[85.0412,23.17916],[85.04278,23.18515],[85.04672,23.18535],[85.04507,23.19084],[85.04935,23.19703],[85.05389,23.19869],[85.05756,23.20344],[85.05804,23.20646],[85.06578,23.21611],[85.06781,23.22176],[85.0749,23.22412],[85.08239,23.23086],[85.08709,23.2321],[85.0881,23.23471],[85.08447,23.23648],[85.09082,23.23757],[85.08879,23.24057],[85.08935,23.24265],[85.09235,23.24076],[85.09789,23.24168],[85.10058,23.24478],[85.09946,23.24694],[85.1091,23.25061],[85.11742,23.25091],[85.12351,23.2486],[85.12744,23.25505],[85.13472,23.25726],[85.14226,23.25358],[85.14253,23.26681],[85.14349,23.26836],[85.15025,23.26933],[85.15359,23.27182],[85.15493,23.27801],[85.1543,23.27953],[85.15116,23.27986],[85.15295,23.28479],[85.15874,23.28476],[85.16414,23.28156],[85.16497,23.27489],[85.17318,23.27569],[85.17675,23.27182],[85.17778,23.26806],[85.18717,23.26785],[85.18997,23.26712],[85.19193,23.26442],[85.20318,23.26271],[85.20608,23.26563],[85.20745,23.27079],[85.22023,23.26604],[85.22822,23.26688],[85.22679,23.25365],[85.2301,23.24968],[85.23116,23.2448],[85.22779,23.2416],[85.22886,23.24003],[85.22595,23.23579],[85.22649,23.23105],[85.23259,23.22824],[85.23837,23.22784],[85.23598,23.21674],[85.23215,23.21552],[85.22198,23.20798],[85.22544,23.20567],[85.22648,23.20169],[85.23128,23.19832],[85.24556,23.19843],[85.25262,23.20531],[85.25078,23.21328],[85.25201,23.21653],[85.27058,23.21856],[85.2703,23.2225],[85.27348,23.22549],[85.28284,23.22634],[85.28282,23.21809],[85.28944,23.2164],[85.28785,23.21378],[85.28947,23.20974],[85.28751,23.20423],[85.29526,23.1997],[85.29803,23.19236],[85.32049,23.18691],[85.31933,23.18336],[85.32176,23.18233],[85.3228,23.17747],[85.32594,23.17838],[85.32691,23.17707],[85.33187,23.18622],[85.33898,23.18762],[85.33758,23.19292],[85.33923,23.20025],[85.33583,23.20495],[85.3359,23.2068],[85.33832,23.2075],[85.34531,23.20445],[85.34526,23.19912],[85.34783,23.19638],[85.34788,23.1939],[85.3552,23.19229],[85.35696,23.18412],[85.3719,23.18582],[85.37651,23.18385],[85.38522,23.19336],[85.39217,23.19025],[85.40143,23.19015],[85.40353,23.18562],[85.40251,23.17811],[85.41091,23.17675],[85.41689,23.17278],[85.42252,23.17241],[85.43359,23.17616],[85.43764,23.17441],[85.44317,23.17912],[85.45569,23.17702],[85.46632,23.18044],[85.46618,23.17505],[85.46051,23.17029],[85.46055,23.16344],[85.46595,23.16184],[85.465,23.14913],[85.46784,23.14649],[85.46734,23.1426],[85.47419,23.13879],[85.47366,23.13525],[85.47545,23.133],[85.47356,23.12877],[85.48384,23.12372],[85.50726,23.12074],[85.52007,23.12159],[85.52975,23.11964],[85.53626,23.12079],[85.5423,23.11713],[85.54458,23.11831],[85.55547,23.11702],[85.55663,23.11865],[85.56115,23.11959],[85.56559,23.11505],[85.57141,23.11653],[85.57356,23.11284],[85.57618,23.112],[85.5791,23.11352],[85.57993,23.11968],[85.584,23.11894],[85.5847,23.12065],[85.59294,23.11543],[85.60176,23.11936],[85.61513,23.1149],[85.61362,23.10764],[85.61827,23.10263],[85.62207,23.09366],[85.61852,23.08152],[85.61506,23.08012],[85.60711,23.08049],[85.59842,23.07736],[85.58771,23.07149],[85.58083,23.06399],[85.58376,23.0618],[85.59185,23.0644],[85.59948,23.06247],[85.61178,23.06447],[85.61664,23.06962],[85.62763,23.06962],[85.63867,23.05579],[85.63154,23.05435],[85.62987,23.05172],[85.62668,23.05258],[85.62208,23.05054],[85.62609,23.04447],[85.62607,23.04309],[85.62319,23.04331],[85.62236,23.04125],[85.62678,23.0372],[85.62652,23.03048],[85.62874,23.03021],[85.63071,23.0333],[85.63033,23.03013],[85.63278,23.03427],[85.63471,23.03377],[85.63428,23.02857],[85.63038,23.02806],[85.63966,23.02394],[85.64431,23.0261],[85.64106,23.0232],[85.64002,23.01695],[85.64441,23.00986],[85.64699,23.00991],[85.6487,23.00585],[85.65577,23.00456],[85.64234,22.9949],[85.62987,22.99081],[85.62651,22.9935],[85.62141,22.99447],[85.61534,22.99201],[85.60976,22.99284],[85.60801,22.99636],[85.60608,22.99509],[85.60367,22.99582],[85.60113,23.00102],[85.59959,22.9992],[85.59579,22.99955],[85.59545,22.99624],[85.59883,22.99346],[85.6007,22.98829],[85.60378,22.9632],[85.59186,22.96258],[85.59041,22.95878],[85.59244,22.95635],[85.59209,22.95324],[85.5856,22.95161],[85.58708,22.94581],[85.58256,22.9469],[85.57964,22.95202],[85.57311,22.94985],[85.56464,22.95139],[85.56608,22.94335],[85.56211,22.93713],[85.54926,22.93035],[85.5506,22.92361],[85.55503,22.92573],[85.557,22.92258],[85.56126,22.92171],[85.56962,22.91292],[85.57749,22.90738],[85.58189,22.90822],[85.59418,22.92418],[85.60219,22.92998],[85.60426,22.93499],[85.61594,22.93079],[85.61622,22.9272],[85.61376,22.92473],[85.61401,22.92214],[85.61913,22.91428],[85.62535,22.91691],[85.64906,22.91808],[85.65683,22.92355],[85.65413,22.92927],[85.65339,22.93604],[85.65767,22.93735],[85.66778,22.93502],[85.68898,22.9342],[85.69844,22.93926],[85.69975,22.94302],[85.70369,22.94307],[85.70522,22.94465],[85.71491,22.94282],[85.72979,22.94372],[85.73723,22.94063],[85.7384,22.93876],[85.74257,22.93942],[85.74639,22.93576],[85.75626,22.93087],[85.76133,22.93286],[85.76949,22.93061],[85.76912,22.9246],[85.77482,22.91986],[85.78074,22.92148],[85.78821,22.91912],[85.79514,22.91441],[85.79856,22.91065],[85.79845,22.90872],[85.81265,22.90725],[85.83065,22.90265],[85.83727,22.90472],[85.83732,22.8896],[85.85229,22.88365],[85.86477,22.88404],[85.86138,22.89789],[85.85823,22.89996],[85.86145,22.9047],[85.87132,22.91002],[85.87169,22.91475],[85.86992,22.91661],[85.87681,22.93013],[85.87183,22.93292],[85.8703,22.93902],[85.86596,22.93916],[85.86538,22.94449],[85.85881,22.94249],[85.85369,22.94323],[85.85122,22.94884],[85.85275,22.95246],[85.85138,22.95883],[85.84851,22.96375],[85.85005,22.9802],[85.84763,22.98471],[85.82882,22.99129],[85.82875,22.99267],[85.82572,22.99392],[85.82384,22.99834],[85.82034,23.00019],[85.82249,23.00154],[85.82044,23.00587],[85.82125,23.00744],[85.81643,23.00733],[85.81348,23.01037],[85.81454,23.01209],[85.81304,23.01389],[85.81501,23.01267],[85.8185,23.02236],[85.82421,23.02772],[85.81851,23.03725],[85.82062,23.04246],[85.8187,23.051],[85.81283,23.0594],[85.81237,23.06824],[85.81037,23.07073],[85.81076,23.07643],[85.80099,23.08055],[85.80025,23.08231],[85.80145,23.08748],[85.80492,23.09161],[85.81755,23.09265],[85.81614,23.09358],[85.81727,23.09905],[85.82447,23.11369],[85.8273,23.11626],[85.83121,23.11684],[85.83207,23.12103],[85.8367,23.12099],[85.83652,23.12564],[85.84185,23.12864],[85.84491,23.13778],[85.85156,23.13985],[85.85566,23.14438],[85.86074,23.14703],[85.87111,23.13979],[85.87062,23.14902],[85.87274,23.15632],[85.88056,23.15558],[85.88593,23.15299],[85.88754,23.15771],[85.89395,23.15594],[85.88157,23.17026],[85.88342,23.19497],[85.88252,23.19873],[85.87655,23.2049],[85.86839,23.21828],[85.86381,23.22238],[85.85878,23.22061],[85.85135,23.22234],[85.83658,23.22053],[85.83969,23.22985],[85.83626,23.23794],[85.83861,23.24683],[85.82358,23.25905],[85.81967,23.26812],[85.82863,23.28228],[85.83838,23.3065],[85.84747,23.30969],[85.85069,23.31664],[85.85945,23.32206],[85.86301,23.32775],[85.8682,23.32978],[85.86548,23.33912],[85.86625,23.34152],[85.87258,23.34243],[85.88307,23.35078],[85.87517,23.35983],[85.87476,23.37678],[85.87843,23.38168],[85.87082,23.38607],[85.87081,23.38881],[85.88713,23.39646],[85.89855,23.39355],[85.90254,23.39711],[85.90152,23.40227],[85.89866,23.40502],[85.88673,23.4046],[85.8875,23.40813],[85.89135,23.40962],[85.89105,23.41165],[85.88029,23.42239],[85.88646,23.42481],[85.88585,23.42762],[85.88137,23.43103],[85.87665,23.42967],[85.8628,23.43128],[85.85813,23.426],[85.84857,23.43025],[85.84774,23.42861],[85.85009,23.42442],[85.84395,23.42233],[85.84024,23.43131],[85.8295,23.44021],[85.82964,23.449],[85.8244,23.45397],[85.81597,23.45692],[85.80727,23.45694],[85.80409,23.45546],[85.80275,23.45148],[85.79725,23.44993],[85.7946,23.45645],[85.78341,23.45575],[85.77786,23.4612],[85.77266,23.46015],[85.76447,23.46234],[85.75535,23.46157],[85.73526,23.44938],[85.73104,23.45524],[85.72516,23.45092],[85.71944,23.44369],[85.71486,23.44423],[85.7126,23.44686],[85.70871,23.44787],[85.69968,23.44729],[85.67528,23.45099],[85.6718,23.45381],[85.67129,23.45961],[85.66133,23.46263],[85.65782,23.46723],[85.65041,23.4659],[85.63362,23.46893],[85.62189,23.47657],[85.60806,23.48165],[85.60433,23.48569],[85.60722,23.48984],[85.59162,23.49455],[85.58868,23.49975],[85.59034,23.50398],[85.5722,23.51455],[85.56012,23.52808],[85.55746,23.53446],[85.5476,23.54301],[85.54211,23.54388],[85.53808,23.54029],[85.53408,23.54091],[85.53232,23.53509],[85.53042,23.53432],[85.51925,23.54188],[85.52156,23.55026],[85.52988,23.56176],[85.52501,23.57226],[85.52525,23.57555],[85.52206,23.57934],[85.51499,23.57754],[85.5115,23.57333],[85.50491,23.5701],[85.5121,23.56293],[85.51468,23.55787],[85.51276,23.54941],[85.51474,23.54479],[85.50921,23.54298],[85.49507,23.54414],[85.48914,23.54805],[85.48584,23.55215],[85.48212,23.55396],[85.48481,23.56006],[85.48694,23.5586],[85.48969,23.56083],[85.48827,23.56328],[85.47348,23.57161],[85.47086,23.5692],[85.47247,23.56165],[85.47137,23.55808],[85.45212,23.54936],[85.44677,23.54856],[85.43466,23.55385],[85.4257,23.55463],[85.42167,23.55999],[85.41673,23.56076],[85.40885,23.55604],[85.39995,23.5567],[85.39675,23.55459],[85.39267,23.56232],[85.38982,23.55969],[85.38559,23.54981],[85.38273,23.55236],[85.3819,23.55574],[85.37734,23.55528],[85.37077,23.55966],[85.36775,23.55981],[85.36578,23.56255],[85.36179,23.56129],[85.35017,23.56231],[85.33704,23.55941],[85.32356,23.56961],[85.279,23.57781],[85.27887,23.58036],[85.27397,23.58075],[85.26783,23.57822],[85.26531,23.58619],[85.26143,23.58983],[85.25525,23.58998],[85.25185,23.59222],[85.24317,23.59341],[85.2429,23.59851],[85.24591,23.60256],[85.23664,23.61859],[85.23072,23.61678],[85.22457,23.61946],[85.21031,23.62076],[85.20553,23.62686],[85.20561,23.63134],[85.20332,23.63631],[85.20712,23.64533],[85.21471,23.65469],[85.22348,23.6542],[85.22136,23.65768],[85.22364,23.6592],[85.22164,23.66412],[85.22351,23.66844],[85.2229,23.67156],[85.22505,23.67227],[85.22446,23.67476],[85.22722,23.67588],[85.22651,23.67735],[85.23629,23.6833],[85.23625,23.68629],[85.22949,23.68396],[85.22565,23.68531],[85.22356,23.69099],[85.22661,23.69658],[85.22481,23.70075],[85.21729,23.70116],[85.19739,23.70833],[85.18815,23.70948],[85.18081,23.68963],[85.17448,23.68412],[85.17337,23.67809],[85.16705,23.66578],[85.16355,23.66658],[85.16233,23.66963],[85.1592,23.67043],[85.16071,23.67196],[85.15892,23.67375],[85.15573,23.6715],[85.14735,23.66962],[85.12602,23.66644],[85.12004,23.66225],[85.11457,23.66194],[85.11313,23.66361],[85.11142,23.66283],[85.10765,23.66444],[85.10384,23.66308],[85.10114,23.66523],[85.08853,23.66733],[85.08709,23.66912],[85.08384,23.66728],[85.07776,23.66768],[85.07916,23.67205],[85.07523,23.67565],[85.06868,23.68092],[85.06145,23.68212],[85.05876,23.68743],[85.06033,23.69435],[85.06202,23.69557],[85.06766,23.69405],[85.07188,23.69691],[85.06975,23.70027],[85.07074,23.70639],[85.0677,23.70966],[85.05769,23.70681],[85.05465,23.70828],[85.05393,23.71309],[85.05044,23.71125],[85.04628,23.70469],[85.04084,23.70263],[85.04043,23.69796],[85.0364,23.68948],[85.02307,23.69032],[85.01917,23.68891],[85.01575,23.69368],[85.01214,23.69564],[85.01111,23.68854],[85.00737,23.68172],[85.00452,23.68032],[84.99893,23.68292],[84.99454,23.68917],[84.99038,23.70408],[84.9814,23.70578]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"34","area_level":"District","area_name":"Jalandhar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.64003,31.61802],[75.6388,31.61798],[75.63798,31.61488],[75.63914,31.61032],[75.6323,31.61222],[75.6282,31.60492],[75.62472,31.60367],[75.62154,31.60559],[75.62034,31.60404],[75.61809,31.60492],[75.60709,31.61091],[75.59781,31.60968],[75.59788,31.60658],[75.5938,31.6031],[75.60128,31.5922],[75.60038,31.58774],[75.60304,31.58366],[75.60024,31.58375],[75.59748,31.58709],[75.59504,31.58603],[75.59185,31.57516],[75.59699,31.5674],[75.60228,31.56326],[75.59594,31.55511],[75.58709,31.56043],[75.57929,31.56255],[75.57831,31.55933],[75.57635,31.55891],[75.57604,31.55394],[75.57267,31.54758],[75.57706,31.54222],[75.56904,31.53633],[75.55342,31.53428],[75.54745,31.54236],[75.54047,31.54535],[75.52936,31.54589],[75.52691,31.54296],[75.52466,31.54367],[75.52235,31.53902],[75.53116,31.5371],[75.53341,31.53302],[75.54056,31.52829],[75.5388,31.5236],[75.53916,31.51608],[75.53429,31.51235],[75.53091,31.51244],[75.53128,31.51727],[75.52607,31.51881],[75.52639,31.52129],[75.5123,31.5174],[75.51196,31.51538],[75.5179,31.51213],[75.51377,31.50446],[75.51829,31.50349],[75.51958,31.49977],[75.51871,31.48987],[75.51625,31.49021],[75.51508,31.4847],[75.51131,31.48289],[75.51224,31.48093],[75.50853,31.47996],[75.51138,31.47049],[75.51696,31.46546],[75.51299,31.45935],[75.49879,31.46906],[75.49457,31.47102],[75.49031,31.47071],[75.48921,31.47496],[75.4913,31.47498],[75.49148,31.47895],[75.48902,31.4811],[75.48899,31.48436],[75.48006,31.4845],[75.47394,31.4931],[75.47425,31.4963],[75.46873,31.49774],[75.46616,31.4961],[75.45884,31.49859],[75.45749,31.49625],[75.45073,31.49682],[75.44862,31.49347],[75.44665,31.49595],[75.44324,31.49404],[75.44137,31.4947],[75.44005,31.48476],[75.44357,31.48154],[75.44475,31.47313],[75.44846,31.47055],[75.4577,31.47289],[75.4582,31.47031],[75.45231,31.46972],[75.4561,31.45787],[75.46646,31.44673],[75.46471,31.43896],[75.45926,31.4401],[75.45794,31.43738],[75.4503,31.44402],[75.4454,31.44048],[75.44516,31.43874],[75.44658,31.43601],[75.45384,31.43075],[75.45295,31.42937],[75.45063,31.42708],[75.44242,31.43251],[75.43689,31.42573],[75.43163,31.41397],[75.4368,31.41045],[75.43444,31.40965],[75.44206,31.40522],[75.43876,31.39759],[75.43343,31.39353],[75.43688,31.39071],[75.43657,31.38497],[75.43928,31.38391],[75.43884,31.38252],[75.4487,31.38317],[75.46049,31.38126],[75.46057,31.38355],[75.46677,31.38532],[75.4695,31.38932],[75.47002,31.39559],[75.47211,31.39569],[75.479,31.39227],[75.48316,31.38811],[75.49099,31.38473],[75.48856,31.38295],[75.48748,31.37508],[75.48085,31.37612],[75.47975,31.37224],[75.4744,31.37373],[75.47242,31.37188],[75.46716,31.37117],[75.46554,31.37184],[75.46689,31.3741],[75.46413,31.37474],[75.45989,31.37316],[75.45713,31.37434],[75.45577,31.37202],[75.45781,31.36301],[75.46113,31.3609],[75.46561,31.36248],[75.46902,31.36188],[75.47746,31.36768],[75.48217,31.36441],[75.47861,31.3533],[75.48114,31.35191],[75.47914,31.35006],[75.47403,31.33451],[75.46857,31.3248],[75.44824,31.32475],[75.44592,31.32275],[75.43604,31.32021],[75.43416,31.31783],[75.43823,31.31426],[75.4391,31.3107],[75.44285,31.30632],[75.43656,31.2929],[75.43759,31.28942],[75.44655,31.28631],[75.44835,31.28774],[75.4533,31.28543],[75.45255,31.2819],[75.46304,31.27994],[75.46788,31.25739],[75.47218,31.25369],[75.47201,31.25096],[75.46585,31.24825],[75.46176,31.24361],[75.46087,31.23552],[75.45242,31.23594],[75.45082,31.23695],[75.45172,31.23831],[75.43985,31.24101],[75.43552,31.23828],[75.43362,31.22919],[75.42309,31.2294],[75.42444,31.23574],[75.41917,31.23957],[75.42003,31.2418],[75.42258,31.24284],[75.42251,31.24557],[75.41793,31.24972],[75.40632,31.24482],[75.40018,31.24764],[75.38945,31.24441],[75.38937,31.24223],[75.38431,31.23943],[75.38202,31.2323],[75.3766,31.23073],[75.36793,31.23966],[75.36554,31.23666],[75.3619,31.2358],[75.36554,31.227],[75.36389,31.2259],[75.36009,31.22586],[75.35449,31.22937],[75.34469,31.23193],[75.34068,31.22561],[75.33837,31.2248],[75.33792,31.22143],[75.32939,31.21484],[75.32774,31.21624],[75.32495,31.21453],[75.32056,31.20711],[75.30571,31.20821],[75.30549,31.20668],[75.30135,31.20642],[75.29889,31.19768],[75.295,31.1915],[75.29136,31.19187],[75.28489,31.18533],[75.2769,31.18734],[75.27374,31.18351],[75.27435,31.18223],[75.27071,31.17483],[75.2744,31.17373],[75.2736,31.16916],[75.27538,31.1678],[75.27062,31.16322],[75.27204,31.16239],[75.27124,31.16055],[75.27594,31.1589],[75.26992,31.14809],[75.25454,31.15394],[75.23036,31.15254],[75.22684,31.15788],[75.22979,31.16553],[75.22254,31.17673],[75.21494,31.18318],[75.20531,31.18496],[75.18948,31.17705],[75.18446,31.16509],[75.1701,31.16333],[75.15813,31.16824],[75.1533,31.16635],[75.14512,31.16651],[75.14253,31.16769],[75.14139,31.17045],[75.13384,31.16991],[75.13083,31.17112],[75.1256,31.16938],[75.12238,31.16727],[75.11481,31.1557],[75.10965,31.15557],[75.10561,31.15074],[75.09826,31.15023],[75.08798,31.15311],[75.08194,31.15102],[75.08351,31.14678],[75.07723,31.13758],[75.07701,31.13431],[75.08734,31.13237],[75.09964,31.12591],[75.10276,31.12556],[75.10645,31.12916],[75.10898,31.12935],[75.11773,31.12382],[75.1259,31.12115],[75.12861,31.11656],[75.13189,31.11634],[75.13099,31.11294],[75.13384,31.11109],[75.13457,31.11218],[75.13849,31.10856],[75.1357,31.10477],[75.15006,31.09777],[75.14836,31.08938],[75.14582,31.08571],[75.14815,31.084],[75.15316,31.08372],[75.15494,31.08623],[75.1578,31.08618],[75.16256,31.08951],[75.16322,31.08256],[75.17254,31.08306],[75.17317,31.08049],[75.17848,31.08141],[75.18344,31.07768],[75.17421,31.06407],[75.17407,31.05999],[75.1772,31.05302],[75.19064,31.05608],[75.19856,31.05332],[75.20333,31.05477],[75.20692,31.05405],[75.20694,31.04858],[75.21003,31.04609],[75.21003,31.04028],[75.20599,31.03167],[75.20135,31.02609],[75.20391,31.02012],[75.20526,31.01966],[75.20365,31.02514],[75.20519,31.02767],[75.20636,31.02816],[75.20824,31.02561],[75.21002,31.0294],[75.21561,31.03215],[75.22193,31.02926],[75.22488,31.0295],[75.22411,31.03452],[75.22938,31.03702],[75.23203,31.03755],[75.23417,31.03436],[75.23901,31.03159],[75.2403,31.03276],[75.25325,31.03262],[75.25847,31.03059],[75.26263,31.03843],[75.25697,31.0433],[75.26796,31.04349],[75.2683,31.03994],[75.2713,31.03661],[75.28163,31.04205],[75.28676,31.03729],[75.29106,31.0356],[75.29467,31.02328],[75.29496,31.01486],[75.30883,31.01451],[75.30986,31.00925],[75.32187,31.00699],[75.32782,31.00976],[75.32825,31.00357],[75.3318,31.00319],[75.33522,31.00054],[75.33939,30.99046],[75.34182,30.98853],[75.34802,30.99681],[75.3522,30.99777],[75.35213,30.99924],[75.35349,30.99806],[75.35652,31.00112],[75.35863,30.99965],[75.3563,30.99825],[75.35679,30.99377],[75.36735,30.99128],[75.37162,30.99815],[75.37484,30.99851],[75.37554,30.99486],[75.38374,30.98982],[75.39764,30.99666],[75.40169,30.99424],[75.4049,30.982],[75.40889,30.98005],[75.41404,30.98514],[75.42045,30.98696],[75.43184,30.98177],[75.43802,30.98139],[75.44123,30.98359],[75.44511,30.98162],[75.44848,30.98409],[75.4557,30.98362],[75.45906,30.98098],[75.4593,30.97716],[75.46247,30.97763],[75.46237,30.97634],[75.46436,30.97639],[75.46449,30.97831],[75.46813,30.97714],[75.46933,30.97974],[75.47407,30.98196],[75.47661,30.97998],[75.47621,30.97797],[75.48224,30.96979],[75.4883,30.97272],[75.49275,30.97023],[75.49903,30.96996],[75.50097,30.97236],[75.50619,30.97308],[75.50641,30.97633],[75.51013,30.97524],[75.51657,30.97612],[75.53246,30.97171],[75.53645,30.96851],[75.53709,30.96609],[75.53733,30.96762],[75.54308,30.96816],[75.54302,30.97589],[75.57565,30.97753],[75.58502,30.97021],[75.59343,30.97095],[75.59434,30.96856],[75.60627,30.96947],[75.6101,30.97505],[75.64257,30.97708],[75.64177,30.97976],[75.65242,30.98056],[75.66801,30.98486],[75.67382,30.98747],[75.67697,30.99143],[75.68785,30.99197],[75.68877,30.99454],[75.70357,30.99558],[75.70162,30.99822],[75.703,30.99887],[75.71654,31.00038],[75.71532,31.00436],[75.73524,31.00522],[75.73469,31.01064],[75.74439,31.01242],[75.76397,31.01305],[75.76231,31.00905],[75.77039,31.00945],[75.77256,31.00687],[75.77127,31.00303],[75.77758,31.00317],[75.77701,31.00107],[75.78175,30.99781],[75.79259,30.99403],[75.81751,30.99629],[75.82041,30.99829],[75.82916,30.99883],[75.82993,31.00025],[75.85619,31.00091],[75.85644,31.0043],[75.86494,31.00419],[75.86721,31.00815],[75.88455,31.00893],[75.89155,31.00811],[75.89546,31.00442],[75.89851,31.00478],[75.89773,31.00817],[75.90567,31.01677],[75.9102,31.01571],[75.91241,31.01748],[75.91517,31.01733],[75.91589,31.0152],[75.92116,31.01161],[75.93344,31.01194],[75.93402,31.00934],[75.95257,31.01028],[75.95809,31.01806],[75.95125,31.02158],[75.94909,31.02617],[75.94939,31.02948],[75.94719,31.03019],[75.94749,31.03855],[75.94274,31.04751],[75.94195,31.05329],[75.94284,31.05785],[75.94505,31.0587],[75.93059,31.06495],[75.92996,31.06791],[75.93271,31.0764],[75.9306,31.0772],[75.92667,31.0942],[75.91268,31.0993],[75.9161,31.10734],[75.90333,31.12541],[75.89815,31.15528],[75.89082,31.15382],[75.88806,31.14568],[75.88573,31.14572],[75.88386,31.14845],[75.88584,31.16606],[75.8727,31.16259],[75.86265,31.1739],[75.85446,31.17464],[75.85148,31.18294],[75.84305,31.18473],[75.82983,31.18454],[75.82115,31.18679],[75.81988,31.18911],[75.81419,31.18812],[75.8119,31.19041],[75.80828,31.19099],[75.80692,31.19317],[75.80064,31.19364],[75.78679,31.19839],[75.7798,31.19567],[75.77584,31.18906],[75.77412,31.18407],[75.77888,31.17784],[75.7787,31.17225],[75.77691,31.16979],[75.77817,31.16593],[75.76974,31.15997],[75.75968,31.16418],[75.75342,31.16304],[75.75099,31.16443],[75.749,31.16257],[75.74339,31.16452],[75.73741,31.16354],[75.72486,31.16673],[75.7209,31.1638],[75.7088,31.16498],[75.7048,31.16633],[75.69678,31.17849],[75.69675,31.18314],[75.69506,31.18317],[75.69522,31.18463],[75.69859,31.18855],[75.68677,31.19609],[75.69315,31.21032],[75.70299,31.21469],[75.70795,31.21498],[75.7125,31.22048],[75.70935,31.23477],[75.69895,31.24618],[75.6941,31.24362],[75.69115,31.23462],[75.68731,31.23435],[75.68358,31.23041],[75.67041,31.23766],[75.67271,31.24229],[75.67219,31.24579],[75.67827,31.24414],[75.67919,31.24667],[75.67071,31.24998],[75.68153,31.25214],[75.6827,31.25354],[75.68196,31.25581],[75.67888,31.25747],[75.68184,31.26385],[75.67303,31.26898],[75.67503,31.27183],[75.67376,31.28127],[75.67621,31.28484],[75.67531,31.28656],[75.67893,31.2878],[75.67719,31.29149],[75.67956,31.29186],[75.69908,31.283],[75.69817,31.28727],[75.70391,31.28567],[75.70389,31.28952],[75.69983,31.29032],[75.6969,31.29811],[75.68584,31.30318],[75.68298,31.31515],[75.68647,31.3183],[75.69098,31.31618],[75.70863,31.31638],[75.71934,31.31393],[75.72223,31.31647],[75.71873,31.32205],[75.71801,31.32636],[75.71555,31.32699],[75.71528,31.32889],[75.71376,31.32799],[75.71195,31.32992],[75.71266,31.33149],[75.70822,31.33183],[75.70863,31.33707],[75.70634,31.3376],[75.70811,31.33862],[75.70138,31.34236],[75.69971,31.34155],[75.70023,31.34408],[75.70934,31.34756],[75.71226,31.34399],[75.72238,31.34462],[75.72824,31.34207],[75.73421,31.33332],[75.73702,31.33238],[75.73698,31.32232],[75.73948,31.32137],[75.74899,31.33034],[75.75152,31.33086],[75.75583,31.32848],[75.76283,31.33474],[75.761,31.33665],[75.7651,31.33634],[75.76487,31.33992],[75.76629,31.34015],[75.7633,31.34465],[75.76633,31.34858],[75.76452,31.3516],[75.77173,31.35324],[75.78856,31.36257],[75.78768,31.36873],[75.78604,31.36874],[75.7811,31.3822],[75.78609,31.38225],[75.80359,31.38875],[75.80621,31.39258],[75.80539,31.39591],[75.80688,31.39651],[75.80562,31.3989],[75.82046,31.40456],[75.81769,31.41279],[75.81616,31.41261],[75.8123,31.42073],[75.8151,31.42215],[75.81658,31.42596],[75.81558,31.43097],[75.81364,31.43072],[75.80951,31.43551],[75.80569,31.4352],[75.79947,31.4538],[75.79669,31.45373],[75.7953,31.4502],[75.78981,31.44871],[75.7836,31.45679],[75.78764,31.45977],[75.78588,31.4628],[75.78219,31.46227],[75.7786,31.47157],[75.76952,31.47218],[75.7645,31.47708],[75.75936,31.47567],[75.75605,31.48107],[75.75457,31.47999],[75.75289,31.48515],[75.74758,31.48497],[75.74399,31.48703],[75.74354,31.49085],[75.73845,31.49537],[75.73606,31.49486],[75.73437,31.49934],[75.73682,31.49937],[75.73817,31.5024],[75.73327,31.50469],[75.73474,31.50656],[75.73319,31.51711],[75.72698,31.51594],[75.72309,31.52202],[75.71714,31.51994],[75.71255,31.52926],[75.70263,31.52908],[75.6993,31.53938],[75.70569,31.54188],[75.70357,31.5558],[75.69532,31.55419],[75.69025,31.56657],[75.6884,31.56673],[75.68895,31.57004],[75.68457,31.5714],[75.68157,31.57431],[75.67982,31.57954],[75.68222,31.58287],[75.68145,31.59206],[75.67176,31.59641],[75.67093,31.59969],[75.67254,31.60304],[75.67136,31.60596],[75.66876,31.60821],[75.66115,31.6051],[75.65018,31.60719],[75.65002,31.61097],[75.64741,31.61122],[75.64692,31.61386],[75.64003,31.61802]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"340","area_level":"District","area_name":"Sahebganj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[87.58452,25.33348],[87.59185,25.34188],[87.58389,25.34918],[87.58251,25.34316],[87.57454,25.34068],[87.57097,25.33327],[87.56266,25.33399],[87.55169,25.3325],[87.55029,25.32418],[87.5477,25.32373],[87.54854,25.32117],[87.54659,25.30802],[87.54281,25.29446],[87.54272,25.28094],[87.53236,25.28028],[87.52588,25.28433],[87.51683,25.29335],[87.50162,25.29233],[87.49371,25.30751],[87.49003,25.29729],[87.4861,25.29727],[87.49001,25.28044],[87.49864,25.27673],[87.49538,25.27145],[87.50079,25.26679],[87.49881,25.26258],[87.50049,25.25979],[87.49058,25.26127],[87.4764,25.23785],[87.4778,25.19431],[87.4799,25.19387],[87.50114,25.13945],[87.47414,25.10447],[87.49335,25.09275],[87.49478,25.08508],[87.50145,25.08002],[87.50807,25.07935],[87.50986,25.07626],[87.50882,25.07056],[87.5118,25.06598],[87.52284,25.05926],[87.51477,25.05383],[87.50912,25.05459],[87.50592,25.05287],[87.50835,25.04917],[87.50893,25.04188],[87.51229,25.03887],[87.50674,25.03558],[87.5079,25.03058],[87.50248,25.02689],[87.50128,25.01962],[87.49267,25.01414],[87.48226,25.01158],[87.47731,25.00568],[87.46755,25.00205],[87.45962,24.99229],[87.45944,24.98388],[87.46366,24.98399],[87.47289,24.97699],[87.4791,24.97656],[87.47791,24.97443],[87.47455,24.9744],[87.47393,24.96859],[87.47061,24.96869],[87.46995,24.96176],[87.47229,24.95494],[87.46309,24.95424],[87.46278,24.95095],[87.46559,24.9489],[87.4612,24.94356],[87.46044,24.94024],[87.45582,24.93876],[87.45906,24.93432],[87.46075,24.92764],[87.45943,24.92686],[87.46074,24.92354],[87.45948,24.92085],[87.46165,24.91707],[87.46795,24.91897],[87.4692,24.9032],[87.46388,24.8951],[87.456,24.89485],[87.45452,24.89098],[87.46092,24.8838],[87.46435,24.8834],[87.46951,24.87977],[87.4697,24.87302],[87.46301,24.87269],[87.45734,24.86947],[87.45745,24.86398],[87.45828,24.86262],[87.46182,24.86541],[87.47605,24.85483],[87.47441,24.84918],[87.47908,24.84882],[87.47603,24.84286],[87.47978,24.84177],[87.47866,24.83112],[87.48457,24.82782],[87.48381,24.82115],[87.49408,24.81389],[87.49411,24.80718],[87.49647,24.80732],[87.49737,24.80257],[87.49866,24.80334],[87.50627,24.79984],[87.50648,24.79751],[87.51107,24.79801],[87.51211,24.79954],[87.5183,24.7971],[87.51931,24.80101],[87.53049,24.79909],[87.54086,24.80144],[87.54154,24.80356],[87.53721,24.81384],[87.53818,24.8196],[87.53697,24.82307],[87.54113,24.82268],[87.54547,24.82465],[87.54907,24.82662],[87.55032,24.82942],[87.55604,24.82851],[87.55671,24.8226],[87.56267,24.81648],[87.56985,24.81315],[87.57181,24.80816],[87.57655,24.80745],[87.58134,24.81016],[87.58626,24.80841],[87.59375,24.81099],[87.60122,24.80715],[87.60771,24.8081],[87.61738,24.79782],[87.62266,24.79605],[87.62333,24.79346],[87.6167,24.79515],[87.61472,24.79759],[87.61116,24.79773],[87.60901,24.80008],[87.60243,24.80239],[87.6025,24.80455],[87.59937,24.80501],[87.59215,24.8028],[87.59277,24.79888],[87.59579,24.79624],[87.59534,24.79433],[87.58657,24.79246],[87.58595,24.79069],[87.5935,24.78997],[87.59953,24.79291],[87.59898,24.78778],[87.59992,24.78696],[87.60336,24.78893],[87.60813,24.78772],[87.61096,24.78308],[87.60995,24.78067],[87.61267,24.77778],[87.61983,24.78277],[87.62513,24.78445],[87.62655,24.77782],[87.62444,24.77654],[87.62495,24.77497],[87.6308,24.77661],[87.6321,24.77231],[87.64049,24.76894],[87.64413,24.76969],[87.6446,24.76811],[87.65064,24.76722],[87.65318,24.7687],[87.6566,24.76738],[87.65721,24.76934],[87.65834,24.76507],[87.66223,24.76377],[87.66515,24.7597],[87.67256,24.76494],[87.68047,24.76104],[87.67915,24.75652],[87.68529,24.75299],[87.68396,24.74818],[87.68856,24.74244],[87.6936,24.74643],[87.70009,24.74632],[87.70351,24.74141],[87.70657,24.74163],[87.7096,24.73921],[87.71378,24.74102],[87.71211,24.73741],[87.71369,24.73284],[87.71282,24.73134],[87.71619,24.72948],[87.71828,24.73092],[87.73655,24.7647],[87.74272,24.76436],[87.74473,24.76748],[87.74924,24.76781],[87.7546,24.76611],[87.7551,24.76419],[87.75331,24.762],[87.74825,24.76101],[87.74437,24.75731],[87.74446,24.75572],[87.75761,24.74748],[87.76435,24.74562],[87.77336,24.74646],[87.77599,24.75187],[87.78128,24.75339],[87.78426,24.75343],[87.78932,24.75015],[87.79635,24.73323],[87.80043,24.72855],[87.80046,24.72588],[87.79667,24.7264],[87.79474,24.72429],[87.7985,24.7147],[87.80724,24.71823],[87.80691,24.72608],[87.81126,24.72677],[87.81401,24.72551],[87.82134,24.72584],[87.82276,24.72384],[87.82699,24.72434],[87.82807,24.72673],[87.83371,24.72819],[87.84056,24.72629],[87.84034,24.72435],[87.84453,24.71999],[87.84838,24.71978],[87.85078,24.72133],[87.85097,24.72582],[87.84357,24.73533],[87.84455,24.74037],[87.84302,24.74002],[87.84109,24.74355],[87.83455,24.74892],[87.83221,24.74883],[87.82941,24.75458],[87.82118,24.75559],[87.81656,24.75806],[87.81668,24.76073],[87.82323,24.77006],[87.82702,24.76988],[87.82799,24.77219],[87.82881,24.76913],[87.83015,24.77001],[87.8323,24.78652],[87.83624,24.79021],[87.84071,24.78941],[87.84077,24.78637],[87.8421,24.7857],[87.84024,24.77783],[87.83598,24.77832],[87.8374,24.76579],[87.83817,24.76804],[87.84326,24.76859],[87.84795,24.76345],[87.85228,24.76199],[87.86388,24.77036],[87.86201,24.77254],[87.86542,24.77171],[87.86591,24.77347],[87.86923,24.77503],[87.87014,24.77865],[87.86684,24.77953],[87.86866,24.7836],[87.86864,24.78865],[87.87088,24.79089],[87.86976,24.79391],[87.87387,24.79558],[87.87551,24.79416],[87.87445,24.79083],[87.8783,24.78974],[87.87838,24.79602],[87.88074,24.79834],[87.8816,24.80537],[87.88071,24.808],[87.87462,24.8084],[87.87438,24.81801],[87.87019,24.8203],[87.86912,24.82464],[87.87053,24.82629],[87.87237,24.82476],[87.87507,24.82575],[87.87507,24.82239],[87.87933,24.82249],[87.87982,24.82415],[87.88117,24.82378],[87.88275,24.82953],[87.88505,24.82842],[87.88261,24.82327],[87.88439,24.82322],[87.88615,24.82816],[87.88727,24.82598],[87.88577,24.82367],[87.88802,24.82298],[87.89124,24.82699],[87.89619,24.82286],[87.89986,24.82364],[87.90136,24.8275],[87.89777,24.82768],[87.89604,24.8307],[87.89607,24.83603],[87.89887,24.83708],[87.89875,24.84461],[87.89654,24.84929],[87.89386,24.84974],[87.89133,24.85604],[87.89667,24.85777],[87.89727,24.86165],[87.91005,24.87473],[87.9167,24.88454],[87.95215,24.90701],[87.96083,24.92208],[87.95962,24.92901],[87.9628,24.93706],[87.95895,24.9508],[87.95775,24.97089],[87.95326,24.97708],[87.94482,24.98414],[87.94054,24.99085],[87.92273,25.00058],[87.90593,25.00389],[87.89936,25.00678],[87.85728,25.05463],[87.834,25.06526],[87.80579,25.07265],[87.80237,25.08289],[87.7929,25.09535],[87.78967,25.10442],[87.77903,25.1177],[87.77436,25.12136],[87.7744,25.14405],[87.78778,25.1913],[87.7897,25.20632],[87.7908,25.23442],[87.78916,25.24242],[87.78535,25.24971],[87.77633,25.25659],[87.76718,25.26098],[87.74745,25.26383],[87.71134,25.25764],[87.71152,25.27459],[87.69309,25.28511],[87.69632,25.29394],[87.69968,25.2971],[87.6954,25.30004],[87.69862,25.30396],[87.6954,25.30668],[87.68478,25.30687],[87.68431,25.30965],[87.68685,25.30918],[87.69208,25.31153],[87.67317,25.31286],[87.6755,25.31054],[87.67516,25.30703],[87.66874,25.30842],[87.66674,25.31077],[87.66565,25.30915],[87.66467,25.31124],[87.66368,25.30807],[87.65682,25.3087],[87.65501,25.30757],[87.63782,25.31479],[87.63667,25.31314],[87.63524,25.31389],[87.63588,25.31582],[87.63044,25.31969],[87.62699,25.31163],[87.61743,25.3181],[87.61331,25.31547],[87.61197,25.31266],[87.59228,25.3224],[87.59349,25.32513],[87.5841,25.33144],[87.58452,25.33348]],[[87.53187,25.06798],[87.53086,25.06836],[87.53186,25.07063],[87.53794,25.07577],[87.54291,25.07362],[87.54481,25.07101],[87.54276,25.06813],[87.53711,25.0701],[87.53608,25.06638],[87.53187,25.06798]],[[87.50069,25.01397],[87.50379,25.00844],[87.50025,25.00601],[87.49508,25.01158],[87.50069,25.01397]],[[87.48768,24.97401],[87.48928,24.97258],[87.50179,24.97108],[87.50044,24.96654],[87.49058,24.96573],[87.48685,24.96974],[87.48768,24.97401]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"341","area_level":"District","area_name":"Saraikela Kharsawan","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.98458,23.15332],[85.95761,23.16105],[85.95137,23.15173],[85.94269,23.15304],[85.93695,23.15024],[85.9289,23.15105],[85.92771,23.14857],[85.91411,23.14913],[85.91024,23.15342],[85.89185,23.1557],[85.88923,23.15813],[85.88657,23.15684],[85.88665,23.15307],[85.88056,23.15558],[85.87274,23.15632],[85.87062,23.14902],[85.87111,23.13979],[85.86074,23.14703],[85.85566,23.14438],[85.85156,23.13985],[85.84491,23.13778],[85.84185,23.12864],[85.83652,23.12564],[85.8367,23.12099],[85.83207,23.12103],[85.83121,23.11684],[85.8273,23.11626],[85.82447,23.11369],[85.81727,23.09905],[85.81614,23.09358],[85.81755,23.09265],[85.80542,23.0919],[85.8011,23.08671],[85.80069,23.08077],[85.81076,23.07643],[85.81037,23.07073],[85.81237,23.06824],[85.81283,23.0594],[85.8187,23.051],[85.82062,23.04246],[85.81851,23.03725],[85.82421,23.02772],[85.8185,23.02236],[85.81501,23.01267],[85.81304,23.01389],[85.81454,23.01209],[85.81348,23.01037],[85.81643,23.00733],[85.82125,23.00744],[85.82044,23.00587],[85.82249,23.00154],[85.82034,23.00019],[85.82384,22.99834],[85.82572,22.99392],[85.82875,22.99267],[85.82882,22.99129],[85.84763,22.98471],[85.85005,22.9802],[85.84851,22.96375],[85.85138,22.95883],[85.85275,22.95246],[85.85122,22.94884],[85.85369,22.94323],[85.85881,22.94249],[85.86538,22.94449],[85.86596,22.93916],[85.8703,22.93902],[85.87183,22.93292],[85.87681,22.93013],[85.86992,22.91661],[85.87169,22.91475],[85.87132,22.91002],[85.86145,22.9047],[85.85823,22.89996],[85.86138,22.89789],[85.86456,22.88388],[85.85229,22.88365],[85.83732,22.8896],[85.83727,22.90472],[85.83065,22.90265],[85.81265,22.90725],[85.79845,22.90872],[85.79856,22.91065],[85.79514,22.91441],[85.78821,22.91912],[85.78074,22.92148],[85.77482,22.91986],[85.76912,22.9246],[85.76949,22.93061],[85.76133,22.93286],[85.75626,22.93087],[85.74639,22.93576],[85.74257,22.93942],[85.7384,22.93876],[85.73094,22.94362],[85.71491,22.94282],[85.70522,22.94465],[85.70369,22.94307],[85.69975,22.94302],[85.69844,22.93926],[85.68898,22.9342],[85.66778,22.93502],[85.65767,22.93735],[85.65339,22.93604],[85.65413,22.92927],[85.65683,22.92355],[85.64906,22.91808],[85.62535,22.91691],[85.61913,22.91428],[85.61401,22.92214],[85.61376,22.92473],[85.61622,22.9272],[85.61594,22.93079],[85.60426,22.93499],[85.60219,22.92998],[85.59418,22.92418],[85.58056,22.90714],[85.58315,22.8949],[85.59034,22.89702],[85.60221,22.89382],[85.59466,22.8858],[85.58722,22.8809],[85.58213,22.86652],[85.57503,22.86277],[85.56702,22.86297],[85.56164,22.86011],[85.55891,22.86397],[85.55799,22.88012],[85.54312,22.87132],[85.54091,22.86502],[85.53581,22.86583],[85.53336,22.86839],[85.53232,22.86522],[85.52934,22.86386],[85.53188,22.85232],[85.52924,22.84953],[85.52936,22.84659],[85.52168,22.8424],[85.51985,22.82882],[85.51564,22.83081],[85.51324,22.82719],[85.51461,22.81945],[85.51628,22.81864],[85.51806,22.8135],[85.51647,22.81114],[85.51702,22.80697],[85.53641,22.80717],[85.53947,22.82024],[85.54848,22.8227],[85.55869,22.8219],[85.56738,22.83379],[85.59059,22.82763],[85.61021,22.82634],[85.61339,22.83767],[85.61725,22.84019],[85.62069,22.84751],[85.63878,22.84698],[85.64691,22.85067],[85.65163,22.84062],[85.6534,22.83952],[85.65949,22.84019],[85.66585,22.8291],[85.67867,22.82453],[85.68297,22.81751],[85.69557,22.81552],[85.70237,22.80646],[85.69642,22.79208],[85.69735,22.78811],[85.69508,22.78315],[85.69544,22.77874],[85.69805,22.77709],[85.69897,22.77323],[85.70481,22.76628],[85.70466,22.75993],[85.71763,22.75479],[85.71616,22.74382],[85.7065,22.74171],[85.7016,22.74366],[85.69092,22.74406],[85.68366,22.7342],[85.68398,22.72946],[85.69115,22.71577],[85.69325,22.71535],[85.69511,22.71154],[85.69885,22.70932],[85.69883,22.70122],[85.70061,22.69821],[85.70688,22.69343],[85.71792,22.69115],[85.72073,22.68611],[85.72473,22.68393],[85.73219,22.68407],[85.73428,22.69065],[85.746,22.69184],[85.74575,22.69903],[85.74913,22.70234],[85.75227,22.70124],[85.75734,22.70207],[85.76601,22.69969],[85.77641,22.69969],[85.77651,22.70779],[85.78274,22.70842],[85.78733,22.70579],[85.79749,22.70979],[85.79722,22.7113],[85.79412,22.71132],[85.79352,22.71615],[85.80068,22.71809],[85.80203,22.71457],[85.80894,22.71244],[85.81712,22.71431],[85.82908,22.72119],[85.83424,22.71304],[85.84114,22.70826],[85.84544,22.71006],[85.84849,22.71711],[85.85373,22.72262],[85.8537,22.72066],[85.85715,22.72003],[85.86591,22.71204],[85.86502,22.7048],[85.86069,22.69999],[85.86904,22.69025],[85.87048,22.68338],[85.86751,22.67937],[85.86351,22.66028],[85.86694,22.65592],[85.86732,22.64309],[85.87576,22.63917],[85.87641,22.63637],[85.87846,22.63671],[85.87829,22.63248],[85.86991,22.62974],[85.86844,22.62542],[85.87009,22.61608],[85.88182,22.61598],[85.88464,22.62415],[85.88639,22.61951],[85.89433,22.61316],[85.91415,22.60452],[85.91174,22.59997],[85.90383,22.59415],[85.90299,22.582],[85.90107,22.57889],[85.88945,22.57601],[85.88483,22.57188],[85.87578,22.56831],[85.87379,22.56622],[85.8739,22.56213],[85.8808,22.55507],[85.88902,22.55742],[85.89335,22.55635],[85.90716,22.54541],[85.90823,22.54034],[85.90184,22.52965],[85.90114,22.5254],[85.90925,22.52085],[85.91406,22.51122],[85.91982,22.5097],[85.92676,22.50398],[85.9287,22.49823],[85.93578,22.49337],[85.94271,22.49539],[85.95084,22.48877],[85.95925,22.48809],[85.96277,22.48515],[85.96839,22.48629],[85.97117,22.48888],[85.97236,22.49196],[85.97096,22.49739],[85.97353,22.49962],[85.9734,22.50586],[85.97815,22.50842],[85.98001,22.51136],[85.98179,22.51092],[85.98452,22.51513],[85.98961,22.51669],[85.99349,22.51438],[86.00103,22.51458],[86.00409,22.51776],[86.02091,22.52732],[86.02653,22.52402],[86.03384,22.53449],[86.02403,22.54462],[86.03217,22.55503],[86.04544,22.56751],[86.05131,22.56248],[86.06549,22.55498],[86.08067,22.56966],[86.09253,22.57509],[86.104,22.58276],[86.10722,22.5891],[86.11411,22.59599],[86.11672,22.60385],[86.13154,22.61301],[86.14701,22.62534],[86.14922,22.6317],[86.15458,22.63557],[86.15753,22.64486],[86.15678,22.64693],[86.16315,22.65872],[86.16692,22.67009],[86.16433,22.67769],[86.16455,22.70371],[86.16248,22.71209],[86.16583,22.72938],[86.1611,22.73695],[86.16029,22.74145],[86.162,22.74479],[86.15975,22.75199],[86.16342,22.7547],[86.16297,22.75993],[86.16735,22.76011],[86.17197,22.76338],[86.1755,22.78721],[86.1722,22.79293],[86.16581,22.79509],[86.15915,22.80137],[86.14819,22.79867],[86.14583,22.80334],[86.14702,22.80984],[86.14865,22.81309],[86.15983,22.82233],[86.1589,22.83321],[86.1606,22.83623],[86.17588,22.83207],[86.18555,22.82202],[86.19926,22.8178],[86.19901,22.82122],[86.19639,22.82221],[86.19527,22.82565],[86.20116,22.83791],[86.19895,22.83961],[86.20247,22.84917],[86.20038,22.85463],[86.20167,22.85842],[86.20651,22.86169],[86.20777,22.87046],[86.21448,22.87579],[86.21985,22.88924],[86.19675,22.89489],[86.19375,22.90637],[86.19057,22.91099],[86.18972,22.92062],[86.19059,22.93139],[86.19346,22.93853],[86.19625,22.94121],[86.19468,22.94428],[86.18867,22.94594],[86.18839,22.94746],[86.19289,22.95586],[86.19694,22.95994],[86.19968,22.96759],[86.20472,22.96652],[86.21826,22.96793],[86.22011,22.97363],[86.24204,22.97272],[86.24824,22.9826],[86.23835,22.99459],[86.23927,22.99631],[86.22877,22.99512],[86.22269,22.9995],[86.20616,23.00044],[86.2084,23.00651],[86.19807,23.00685],[86.18654,23.00495],[86.18327,23.00638],[86.17932,23.02038],[86.17008,23.02244],[86.17049,23.0264],[86.16639,23.02947],[86.16774,23.03256],[86.16544,23.03238],[86.16305,23.02829],[86.15602,23.03117],[86.15828,23.04584],[86.15364,23.0481],[86.15099,23.05154],[86.14261,23.05364],[86.14133,23.05658],[86.14626,23.07496],[86.13549,23.0776],[86.1358,23.08065],[86.13394,23.08336],[86.12562,23.0871],[86.12071,23.08483],[86.11519,23.08566],[86.11023,23.08429],[86.10224,23.08653],[86.09802,23.0842],[86.09062,23.08943],[86.09005,23.09471],[86.0757,23.09464],[86.05126,23.10553],[86.05123,23.1095],[86.05411,23.11269],[86.05591,23.12274],[86.04593,23.13599],[86.04606,23.14171],[86.04452,23.14424],[86.03754,23.14711],[86.03464,23.14444],[86.02907,23.14607],[86.02455,23.14428],[86.01831,23.14814],[86.01999,23.15279],[86.0178,23.15471],[86.01345,23.14791],[85.99897,23.14873],[85.99244,23.15194],[85.98458,23.15332]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"342","area_level":"District","area_name":"Simdega","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.46139,22.8362],[84.45322,22.83748],[84.45126,22.83473],[84.44938,22.83491],[84.45114,22.83033],[84.44971,22.82058],[84.45103,22.81641],[84.44808,22.81247],[84.44083,22.80902],[84.42933,22.81112],[84.43215,22.80772],[84.43527,22.79818],[84.43009,22.79169],[84.43009,22.78938],[84.42624,22.78753],[84.42132,22.78084],[84.41813,22.77275],[84.4193,22.76805],[84.41635,22.76486],[84.41326,22.76558],[84.4128,22.76793],[84.40739,22.77191],[84.40427,22.77098],[84.39979,22.77647],[84.39718,22.77501],[84.3925,22.7754],[84.38925,22.77229],[84.39144,22.76576],[84.38789,22.7679],[84.38411,22.7637],[84.37965,22.7646],[84.37188,22.75429],[84.36211,22.75838],[84.3592,22.75697],[84.35786,22.75952],[84.34922,22.76204],[84.34948,22.75773],[84.35433,22.75075],[84.35025,22.74812],[84.34346,22.74677],[84.33679,22.74826],[84.33095,22.75902],[84.32534,22.76405],[84.31953,22.76572],[84.31312,22.76474],[84.31044,22.76735],[84.29451,22.77368],[84.29187,22.77428],[84.28986,22.77137],[84.28936,22.76612],[84.2861,22.76324],[84.27595,22.76871],[84.25965,22.76699],[84.25557,22.7601],[84.24532,22.75267],[84.24165,22.74748],[84.23264,22.74178],[84.23027,22.7382],[84.22985,22.72807],[84.23209,22.72555],[84.23413,22.71054],[84.23293,22.70033],[84.2382,22.69145],[84.23475,22.68611],[84.23321,22.67924],[84.22412,22.66989],[84.21754,22.66582],[84.21319,22.66576],[84.21308,22.66771],[84.2079,22.66838],[84.20019,22.66646],[84.18803,22.65523],[84.16328,22.64543],[84.15627,22.63853],[84.15247,22.6368],[84.13979,22.63823],[84.12348,22.63705],[84.11081,22.63975],[84.09343,22.63494],[84.08402,22.63812],[84.0696,22.62043],[84.06375,22.60859],[84.05766,22.60577],[84.05413,22.59811],[84.04885,22.5953],[84.04183,22.59537],[84.03422,22.59231],[84.02443,22.5918],[84.02417,22.58581],[84.00932,22.57274],[84.00765,22.55246],[84.00285,22.5459],[84.01002,22.53168],[84.0097,22.52842],[84.01234,22.52769],[84.00921,22.52558],[84.01293,22.52337],[84.02552,22.52575],[84.02962,22.51918],[84.03656,22.51597],[84.04925,22.51704],[84.05306,22.5129],[84.05971,22.51643],[84.06132,22.51324],[84.06454,22.51248],[84.06512,22.50761],[84.07549,22.5062],[84.07528,22.50283],[84.07024,22.50135],[84.07305,22.50097],[84.08088,22.49412],[84.09031,22.48929],[84.10248,22.48408],[84.10795,22.48376],[84.10883,22.48268],[84.10686,22.48274],[84.10631,22.48065],[84.11349,22.47569],[84.12484,22.47493],[84.1288,22.4776],[84.13535,22.47659],[84.137,22.47379],[84.14068,22.47392],[84.14289,22.46423],[84.14138,22.45335],[84.1389,22.44776],[84.14027,22.44426],[84.14132,22.42411],[84.15613,22.40774],[84.16598,22.39985],[84.18489,22.39023],[84.19834,22.37613],[84.25146,22.37808],[84.25561,22.37442],[84.26881,22.35455],[84.27836,22.34928],[84.29004,22.34689],[84.29151,22.34213],[84.29414,22.3412],[84.31336,22.34444],[84.31683,22.34231],[84.32474,22.34528],[84.32994,22.34425],[84.33951,22.34755],[84.36564,22.3482],[84.36789,22.35466],[84.37032,22.35573],[84.37959,22.35262],[84.38302,22.34911],[84.39213,22.34986],[84.40069,22.34646],[84.41618,22.35281],[84.42041,22.35235],[84.4237,22.35444],[84.42904,22.35378],[84.42998,22.35793],[84.43427,22.36047],[84.43067,22.36404],[84.43226,22.36531],[84.43108,22.37107],[84.4369,22.37518],[84.44953,22.38029],[84.45345,22.37946],[84.45321,22.38105],[84.46118,22.37905],[84.47601,22.38665],[84.48426,22.38851],[84.48495,22.39207],[84.47884,22.39408],[84.48029,22.39798],[84.47793,22.39925],[84.47673,22.40528],[84.47698,22.40801],[84.48069,22.41017],[84.48244,22.41327],[84.48958,22.41364],[84.51064,22.42103],[84.51698,22.41935],[84.52439,22.41998],[84.53054,22.4228],[84.53136,22.4259],[84.5362,22.42737],[84.53806,22.42556],[84.54033,22.42719],[84.54694,22.42607],[84.54929,22.42104],[84.5709,22.4274],[84.59418,22.43006],[84.59785,22.4348],[84.60259,22.42883],[84.6103,22.43094],[84.62196,22.43156],[84.62865,22.43455],[84.65216,22.42621],[84.66806,22.41806],[84.67413,22.42191],[84.676,22.41942],[84.68384,22.41992],[84.69863,22.4164],[84.71556,22.41728],[84.71877,22.4199],[84.74974,22.41899],[84.75206,22.4306],[84.75932,22.44747],[84.76551,22.44865],[84.78875,22.44819],[84.79604,22.44626],[84.7973,22.44864],[84.79907,22.4473],[84.80145,22.44846],[84.80571,22.44767],[84.81252,22.45293],[84.81778,22.44462],[84.81763,22.43761],[84.83738,22.43253],[84.83855,22.43093],[84.84216,22.43174],[84.84223,22.43423],[84.84563,22.43626],[84.85373,22.43592],[84.87307,22.43947],[84.87292,22.44227],[84.88239,22.44847],[84.88509,22.44276],[84.8849,22.43745],[84.88871,22.42921],[84.88559,22.42613],[84.88558,22.42108],[84.89925,22.42343],[84.91023,22.42328],[84.9159,22.42611],[84.92615,22.43495],[84.92656,22.43958],[84.92387,22.44093],[84.92386,22.44355],[84.93194,22.44622],[84.94021,22.4452],[84.9449,22.45246],[84.95667,22.45823],[84.95935,22.44305],[84.96488,22.44933],[84.97302,22.45112],[85.01938,22.4706],[85.03547,22.47378],[85.03718,22.47282],[85.03765,22.47949],[85.03628,22.47937],[85.03595,22.48243],[85.03805,22.48196],[85.03808,22.48043],[85.04165,22.48055],[85.0443,22.48233],[85.05216,22.48251],[85.05968,22.48645],[85.06727,22.48416],[85.07385,22.49262],[85.07777,22.50361],[85.07965,22.51937],[85.07773,22.52501],[85.06768,22.53344],[85.06456,22.53936],[85.07227,22.54796],[85.07094,22.54993],[85.07228,22.55389],[85.06852,22.56523],[85.0738,22.56984],[85.07585,22.5741],[85.07184,22.57919],[85.06853,22.59071],[85.06847,22.59524],[85.07095,22.6008],[85.0701,22.60528],[85.05403,22.61123],[85.05694,22.62289],[85.04957,22.63664],[85.05053,22.64099],[85.05436,22.6459],[85.05437,22.65216],[85.05948,22.6576],[85.06106,22.66757],[85.0587,22.67008],[85.04642,22.67425],[85.04186,22.67944],[85.04139,22.68212],[85.05396,22.70929],[85.05304,22.72118],[85.05733,22.72926],[85.05885,22.73748],[85.05207,22.74637],[85.04925,22.75332],[85.02762,22.75584],[85.02278,22.76046],[85.0214,22.7655],[85.0102,22.76984],[85.00589,22.78094],[85.00511,22.78751],[85.00015,22.78703],[84.99676,22.78472],[84.99346,22.78641],[84.98261,22.78452],[84.98048,22.78565],[84.96868,22.78517],[84.96118,22.77566],[84.95028,22.77567],[84.94477,22.77843],[84.9403,22.78341],[84.93943,22.7873],[84.9306,22.79222],[84.92733,22.78376],[84.9223,22.7847],[84.91851,22.7682],[84.91422,22.76685],[84.91301,22.76213],[84.91089,22.76321],[84.90584,22.76092],[84.90571,22.75922],[84.8983,22.75825],[84.90018,22.75423],[84.89704,22.75226],[84.89145,22.7444],[84.88739,22.74537],[84.88119,22.73857],[84.88107,22.74324],[84.8762,22.74518],[84.8698,22.75588],[84.86343,22.75774],[84.85819,22.76144],[84.8588,22.76582],[84.84699,22.77091],[84.84327,22.77021],[84.84108,22.76796],[84.84144,22.75706],[84.85552,22.73079],[84.85771,22.72398],[84.8595,22.72379],[84.85661,22.72274],[84.8578,22.71993],[84.84855,22.72223],[84.84171,22.72674],[84.83145,22.73057],[84.83112,22.74165],[84.81997,22.75048],[84.81451,22.74338],[84.81452,22.73609],[84.81669,22.73162],[84.8155,22.72716],[84.81939,22.72093],[84.81867,22.71828],[84.82129,22.71599],[84.81028,22.70932],[84.80587,22.7105],[84.80292,22.71402],[84.80053,22.71179],[84.79652,22.71508],[84.79619,22.71793],[84.79221,22.71962],[84.7902,22.7188],[84.78656,22.72323],[84.78788,22.72562],[84.78592,22.72657],[84.78819,22.73075],[84.78787,22.73615],[84.79465,22.75985],[84.79397,22.76493],[84.79256,22.76467],[84.79253,22.77221],[84.78929,22.77183],[84.78579,22.7686],[84.78434,22.75878],[84.77541,22.76501],[84.77637,22.77036],[84.77475,22.78236],[84.78051,22.7952],[84.77502,22.79355],[84.77212,22.7894],[84.76901,22.78956],[84.76581,22.79277],[84.76271,22.79195],[84.75311,22.79375],[84.73334,22.8018],[84.72931,22.80017],[84.7259,22.79646],[84.7259,22.7929],[84.72289,22.78898],[84.71866,22.78813],[84.71726,22.78491],[84.71756,22.78356],[84.72289,22.78263],[84.72182,22.77925],[84.728,22.77771],[84.72936,22.77514],[84.72881,22.77244],[84.72486,22.77035],[84.72468,22.7655],[84.71347,22.76397],[84.70861,22.76558],[84.70431,22.76479],[84.69734,22.75753],[84.6993,22.74795],[84.69521,22.74558],[84.69753,22.74386],[84.6954,22.74315],[84.69537,22.74156],[84.68992,22.7412],[84.68646,22.73704],[84.66971,22.73943],[84.66608,22.73099],[84.65837,22.73112],[84.64862,22.73963],[84.64526,22.73162],[84.61232,22.7336],[84.60437,22.73094],[84.60511,22.72302],[84.59817,22.7218],[84.59215,22.71276],[84.58927,22.7161],[84.58557,22.71597],[84.58041,22.72278],[84.57116,22.72555],[84.57012,22.72865],[84.56466,22.73102],[84.55929,22.73094],[84.56205,22.73448],[84.56214,22.73882],[84.56938,22.74698],[84.56412,22.74728],[84.54678,22.76427],[84.54347,22.76498],[84.53933,22.76151],[84.53722,22.75108],[84.53391,22.74591],[84.52867,22.74365],[84.52881,22.74059],[84.52262,22.74398],[84.52111,22.7481],[84.52177,22.75107],[84.51969,22.75175],[84.51837,22.75492],[84.51576,22.75401],[84.5189,22.76239],[84.52582,22.76152],[84.52884,22.76389],[84.53123,22.76923],[84.54372,22.76586],[84.55426,22.77153],[84.55623,22.77616],[84.55583,22.78671],[84.55325,22.79178],[84.54607,22.79505],[84.53105,22.79172],[84.52738,22.79303],[84.52478,22.79671],[84.51757,22.79561],[84.50249,22.79859],[84.50301,22.80928],[84.50437,22.81156],[84.50344,22.82468],[84.4994,22.82379],[84.49484,22.82749],[84.49049,22.82746],[84.4862,22.83162],[84.48487,22.82954],[84.4815,22.83332],[84.46577,22.83699],[84.46139,22.8362]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"343","area_level":"District","area_name":"West Singhbhum","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.34797,22.88046],[85.34143,22.88097],[85.3394,22.88641],[85.31797,22.87755],[85.31658,22.88218],[85.31216,22.88121],[85.30914,22.88314],[85.307,22.88064],[85.30782,22.87766],[85.30483,22.87494],[85.29889,22.87585],[85.2915,22.8726],[85.28829,22.87307],[85.28814,22.86954],[85.28585,22.87079],[85.28395,22.86835],[85.28098,22.8704],[85.27939,22.86556],[85.27475,22.86323],[85.27506,22.86078],[85.27141,22.86208],[85.26623,22.85849],[85.26573,22.85716],[85.26797,22.85624],[85.26628,22.85364],[85.2639,22.85421],[85.26436,22.85136],[85.26624,22.85045],[85.26435,22.84961],[85.26469,22.84618],[85.26071,22.84369],[85.25669,22.84725],[85.25294,22.84506],[85.24893,22.83749],[85.2494,22.8347],[85.24206,22.83396],[85.23457,22.83754],[85.23266,22.84061],[85.23002,22.83685],[85.22551,22.83679],[85.22086,22.83176],[85.21726,22.82449],[85.21398,22.82677],[85.21333,22.82354],[85.20809,22.82371],[85.20828,22.82074],[85.20608,22.8204],[85.20438,22.81729],[85.20189,22.81726],[85.20017,22.81415],[85.19754,22.81836],[85.19368,22.81379],[85.1899,22.81484],[85.19647,22.82179],[85.19646,22.82439],[85.19329,22.82667],[85.18508,22.82448],[85.17471,22.83346],[85.17024,22.83539],[85.16311,22.83473],[85.15826,22.83232],[85.15799,22.82735],[85.16021,22.82258],[85.1498,22.81032],[85.14773,22.80559],[85.14148,22.78696],[85.14004,22.77785],[85.14081,22.76462],[85.1369,22.75421],[85.14785,22.74701],[85.14353,22.73992],[85.12897,22.73819],[85.131,22.72906],[85.12848,22.72469],[85.13331,22.72103],[85.11994,22.70986],[85.12229,22.6989],[85.12249,22.68859],[85.1193,22.68361],[85.11978,22.6752],[85.11504,22.66366],[85.1124,22.65931],[85.10168,22.65404],[85.1003,22.65505],[85.09687,22.65155],[85.09125,22.63388],[85.08383,22.62871],[85.07561,22.61845],[85.07601,22.61581],[85.08439,22.61295],[85.0904,22.60799],[85.09392,22.60296],[85.09485,22.59581],[85.08877,22.58304],[85.08903,22.57569],[85.08039,22.57345],[85.07585,22.5741],[85.0738,22.56984],[85.06875,22.56588],[85.06855,22.56218],[85.07228,22.55389],[85.07094,22.54993],[85.07227,22.54796],[85.06458,22.54004],[85.06768,22.53344],[85.07773,22.52501],[85.07994,22.51722],[85.07777,22.50361],[85.07415,22.49325],[85.06726,22.48417],[85.06987,22.48017],[85.07179,22.4792],[85.07601,22.48029],[85.078,22.47755],[85.07675,22.46874],[85.07524,22.46862],[85.07403,22.46553],[85.07715,22.46375],[85.06422,22.45424],[85.06029,22.44956],[85.06106,22.44513],[85.06683,22.44091],[85.0678,22.42843],[85.07537,22.42055],[85.08208,22.41653],[85.08023,22.41001],[85.08653,22.39942],[85.08622,22.38943],[85.08787,22.38847],[85.08696,22.38254],[85.07739,22.36551],[85.07916,22.36051],[85.07667,22.35621],[85.07892,22.35237],[85.08384,22.34905],[85.08333,22.34534],[85.09461,22.34673],[85.09575,22.34474],[85.09389,22.33328],[85.08939,22.32043],[85.09074,22.31858],[85.09549,22.31571],[85.10069,22.31992],[85.10637,22.32148],[85.11535,22.31978],[85.1181,22.31759],[85.11544,22.31528],[85.11416,22.31045],[85.11601,22.30811],[85.11413,22.30542],[85.116,22.29409],[85.10644,22.2959],[85.09963,22.29357],[85.07061,22.27365],[85.07148,22.27036],[85.07382,22.26876],[85.07218,22.26705],[85.0746,22.26485],[85.07341,22.2629],[85.07664,22.26108],[85.0782,22.25739],[85.07332,22.24805],[85.07025,22.24806],[85.06936,22.24358],[85.07225,22.23772],[85.05849,22.20925],[85.05921,22.206],[85.05582,22.20271],[85.05415,22.19799],[85.04919,22.19541],[85.05369,22.18539],[85.05266,22.18246],[85.05026,22.17916],[85.04283,22.17734],[85.04162,22.17299],[85.0291,22.16349],[85.02834,22.15718],[85.03417,22.14702],[85.03167,22.13309],[85.02358,22.11862],[84.99948,22.1077],[84.99141,22.09956],[84.98339,22.09552],[84.98541,22.08468],[84.98695,22.08282],[84.99369,22.0814],[85.00569,22.0879],[85.00658,22.09006],[85.00865,22.08886],[85.01174,22.09141],[85.01306,22.09879],[85.0158,22.10361],[85.01765,22.10342],[85.02387,22.11016],[85.02892,22.10933],[85.03909,22.11562],[85.05527,22.11568],[85.07046,22.1129],[85.08897,22.10573],[85.09488,22.10836],[85.09574,22.10621],[85.10011,22.10363],[85.10169,22.09812],[85.10057,22.09372],[85.10379,22.08953],[85.10557,22.09023],[85.10881,22.0876],[85.1124,22.08704],[85.11381,22.08354],[85.11251,22.07984],[85.11866,22.0742],[85.12007,22.07018],[85.13179,22.07681],[85.14033,22.07761],[85.14482,22.07974],[85.1548,22.07883],[85.16054,22.07471],[85.16038,22.06966],[85.16512,22.06381],[85.16685,22.0537],[85.17387,22.05138],[85.17083,22.05663],[85.17121,22.06342],[85.16762,22.06951],[85.1746,22.07459],[85.18057,22.07323],[85.18572,22.05921],[85.19817,22.05594],[85.2104,22.04942],[85.21345,22.04969],[85.21508,22.04772],[85.21485,22.04333],[85.21859,22.04093],[85.21687,22.03357],[85.22143,22.01799],[85.22591,22.01609],[85.22921,22.01241],[85.23629,22.0098],[85.23993,22.011],[85.24056,22.01363],[85.24417,22.01581],[85.2517,22.02697],[85.26306,22.05868],[85.27285,22.07359],[85.27513,22.08229],[85.2813,22.09043],[85.29926,22.10539],[85.31058,22.11882],[85.31884,22.12083],[85.32309,22.1275],[85.34354,22.12738],[85.34648,22.13025],[85.35059,22.1295],[85.35939,22.12395],[85.36441,22.12371],[85.36488,22.12883],[85.36084,22.13151],[85.36189,22.1411],[85.36039,22.14401],[85.36345,22.14748],[85.36396,22.15214],[85.36654,22.15363],[85.36579,22.15847],[85.37107,22.16099],[85.37511,22.15737],[85.38255,22.15644],[85.39207,22.15903],[85.39727,22.1632],[85.41137,22.16182],[85.42115,22.15878],[85.43412,22.15099],[85.43877,22.15035],[85.44299,22.14667],[85.447,22.14637],[85.46187,22.1399],[85.47069,22.13412],[85.4747,22.12893],[85.48293,22.1276],[85.48991,22.12108],[85.50978,22.11775],[85.52489,22.11002],[85.53413,22.10264],[85.53978,22.10185],[85.53902,22.0971],[85.54298,22.09047],[85.56044,22.09607],[85.56099,22.09178],[85.5662,22.08889],[85.57155,22.09116],[85.58622,22.08654],[85.59023,22.084],[85.59229,22.08044],[85.59718,22.07912],[85.60681,22.07984],[85.61118,22.08704],[85.61388,22.08609],[85.61345,22.08154],[85.62492,22.08209],[85.62888,22.08601],[85.63246,22.08417],[85.63703,22.0871],[85.63981,22.08667],[85.64412,22.09426],[85.65162,22.09544],[85.65527,22.09233],[85.65738,22.08393],[85.66158,22.08334],[85.66406,22.07685],[85.67025,22.07343],[85.67166,22.06748],[85.67844,22.06294],[85.67733,22.05695],[85.68487,22.05423],[85.68938,22.05605],[85.69168,22.06229],[85.70094,22.06173],[85.70917,22.05823],[85.71337,22.06248],[85.718,22.06174],[85.72054,22.06389],[85.7302,22.06528],[85.74015,22.07098],[85.74939,22.07357],[85.75705,22.07831],[85.7574,22.08458],[85.7673,22.09278],[85.78099,22.0965],[85.79017,22.10484],[85.79732,22.10475],[85.79755,22.1084],[85.80117,22.10986],[85.80743,22.11611],[85.82104,22.1065],[85.81305,22.09649],[85.81332,22.09429],[85.81976,22.09643],[85.82177,22.09466],[85.83268,22.09304],[85.83586,22.08016],[85.82266,22.07443],[85.81611,22.07357],[85.79344,22.08181],[85.77494,22.05629],[85.77873,22.04556],[85.78376,22.04018],[85.77959,22.02967],[85.77496,22.02872],[85.76716,22.02349],[85.7608,22.01454],[85.75857,22.00949],[85.76251,22.00125],[85.76299,21.99614],[85.78275,21.98495],[85.78584,21.98704],[85.79041,21.98582],[85.80537,21.98942],[85.81046,21.98631],[85.81699,21.98577],[85.8209,21.97746],[85.82437,21.97545],[85.83258,21.97728],[85.83614,21.98085],[85.85321,21.98376],[85.88208,21.98014],[85.89159,21.98122],[85.8937,21.98229],[85.89385,21.98439],[85.89577,21.98441],[85.89571,21.98324],[85.89871,21.98316],[85.90009,21.97958],[85.9023,21.97833],[85.90218,21.97552],[85.90466,21.97156],[85.90825,21.97067],[85.91123,21.97409],[85.90656,21.97695],[85.91189,21.98017],[85.9102,21.98117],[85.91166,21.98488],[85.90952,21.98782],[85.91221,21.99719],[85.91616,22.00269],[85.91615,22.00878],[85.92295,22.01124],[85.93088,22.02334],[85.94359,22.02036],[85.96504,22.05237],[85.96877,22.0608],[85.98044,22.07521],[85.98642,22.08897],[85.99251,22.09468],[86.00381,22.11386],[86.00738,22.11709],[85.99717,22.12802],[85.99676,22.13245],[85.99877,22.13302],[85.99947,22.13569],[86.00351,22.13957],[86.00551,22.15086],[86.01526,22.16166],[86.01723,22.17162],[86.03143,22.19085],[86.03108,22.19307],[86.01837,22.20533],[86.00286,22.21383],[85.99131,22.22676],[85.98567,22.23714],[85.98092,22.23891],[85.97388,22.24708],[85.9897,22.25441],[85.99064,22.25694],[85.98771,22.26315],[85.98832,22.26697],[85.99871,22.27724],[86.0041,22.28018],[86.00704,22.28461],[86.00611,22.28739],[86.01425,22.29729],[86.01898,22.30038],[86.02218,22.30003],[86.02496,22.3026],[86.02882,22.3007],[86.02942,22.303],[86.03327,22.30368],[86.03387,22.30606],[86.04519,22.3077],[86.04721,22.30896],[86.04731,22.31121],[86.04067,22.31246],[86.03815,22.31036],[86.03367,22.31148],[86.02891,22.30769],[86.02735,22.3093],[86.02257,22.309],[86.01605,22.31437],[86.0137,22.31307],[86.01306,22.31789],[86.01049,22.31787],[86.01193,22.32232],[86.02671,22.33486],[86.01956,22.33903],[86.01075,22.34123],[86.00829,22.34095],[86.00949,22.33957],[86.00783,22.33776],[86.00338,22.33568],[85.99802,22.3416],[85.99821,22.34515],[86.00414,22.34706],[86.00753,22.35151],[86.0108,22.35229],[86.01467,22.35965],[86.01919,22.3609],[86.02188,22.36529],[86.02013,22.37177],[86.02106,22.37618],[86.02466,22.37527],[86.02478,22.37901],[86.02713,22.38056],[86.0252,22.38322],[86.0272,22.38621],[86.02346,22.38982],[86.02395,22.39267],[86.02269,22.39354],[86.02437,22.39622],[86.02087,22.39724],[86.02034,22.40079],[86.01833,22.40247],[86.01925,22.40743],[86.01524,22.4284],[86.0114,22.43023],[86.00318,22.42631],[85.99776,22.42806],[85.98461,22.43545],[85.97288,22.44717],[85.96564,22.45115],[85.96788,22.46119],[85.96135,22.46106],[85.95712,22.46428],[85.9626,22.47279],[85.96277,22.48515],[85.95925,22.48809],[85.95084,22.48877],[85.94271,22.49539],[85.93578,22.49337],[85.9287,22.49823],[85.92676,22.50398],[85.91982,22.5097],[85.91406,22.51122],[85.90925,22.52085],[85.90114,22.5254],[85.90184,22.52965],[85.90823,22.54034],[85.90716,22.54541],[85.89335,22.55635],[85.88902,22.55742],[85.8808,22.55507],[85.8739,22.56213],[85.87379,22.56622],[85.87578,22.56831],[85.88483,22.57188],[85.88945,22.57601],[85.90107,22.57889],[85.90299,22.582],[85.90383,22.59415],[85.91174,22.59997],[85.91415,22.60452],[85.89433,22.61316],[85.88639,22.61951],[85.88464,22.62415],[85.88182,22.61598],[85.87009,22.61608],[85.86844,22.62542],[85.86991,22.62974],[85.87865,22.63323],[85.87846,22.63671],[85.87617,22.63651],[85.87576,22.63917],[85.86738,22.64288],[85.86694,22.65592],[85.86351,22.66028],[85.86751,22.67937],[85.87048,22.68338],[85.86904,22.69025],[85.86069,22.69999],[85.86502,22.7048],[85.86572,22.71241],[85.85715,22.72003],[85.8537,22.72066],[85.85373,22.72262],[85.84849,22.71711],[85.84544,22.71006],[85.84114,22.70826],[85.83424,22.71304],[85.82908,22.72119],[85.81712,22.71431],[85.80894,22.71244],[85.80203,22.71457],[85.80068,22.71809],[85.79305,22.7158],[85.79432,22.71104],[85.79722,22.7113],[85.79749,22.70979],[85.78733,22.70579],[85.78274,22.70842],[85.77651,22.70779],[85.77641,22.69969],[85.76601,22.69969],[85.75734,22.70207],[85.75227,22.70124],[85.74913,22.70234],[85.74575,22.69903],[85.746,22.69184],[85.73428,22.69065],[85.73219,22.68407],[85.72473,22.68393],[85.72073,22.68611],[85.71792,22.69115],[85.70688,22.69343],[85.70061,22.69821],[85.69883,22.70122],[85.69885,22.70932],[85.69511,22.71154],[85.69325,22.71535],[85.69115,22.71577],[85.68398,22.72946],[85.68366,22.7342],[85.69092,22.74406],[85.7016,22.74366],[85.7065,22.74171],[85.71616,22.74382],[85.71763,22.75479],[85.70466,22.75993],[85.70481,22.76628],[85.69897,22.77323],[85.69805,22.77709],[85.69544,22.77874],[85.69508,22.78315],[85.69735,22.78811],[85.69642,22.79208],[85.70237,22.80646],[85.69557,22.81552],[85.68297,22.81751],[85.67867,22.82453],[85.66585,22.8291],[85.65949,22.84019],[85.6534,22.83952],[85.65163,22.84062],[85.64691,22.85067],[85.63878,22.84698],[85.62069,22.84751],[85.61725,22.84019],[85.61339,22.83767],[85.61021,22.82634],[85.59059,22.82763],[85.56738,22.83379],[85.55869,22.8219],[85.54848,22.8227],[85.53947,22.82024],[85.53641,22.80717],[85.51353,22.80717],[85.50273,22.80001],[85.49839,22.80007],[85.49124,22.80408],[85.47916,22.80558],[85.4717,22.79928],[85.45443,22.8016],[85.45071,22.81237],[85.45073,22.8233],[85.44645,22.82056],[85.44135,22.82108],[85.44024,22.82399],[85.44248,22.83053],[85.43705,22.83282],[85.43424,22.83718],[85.43113,22.83751],[85.41968,22.83201],[85.41969,22.8402],[85.41788,22.83872],[85.41361,22.83899],[85.40579,22.84806],[85.39538,22.84558],[85.38864,22.84217],[85.38821,22.84961],[85.39212,22.85743],[85.387,22.86756],[85.3779,22.86251],[85.37205,22.86338],[85.35895,22.87109],[85.35802,22.87676],[85.35502,22.8809],[85.34797,22.88046]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"344","area_level":"District","area_name":"Anugola","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.87772,21.1784],[84.87497,21.17897],[84.87467,21.1787],[84.8736,21.1768],[84.87265,21.1749],[84.87235,21.17395],[84.87224,21.17261],[84.87251,21.17235],[84.87406,21.17149],[84.87486,21.17114],[84.87517,21.17088],[84.87572,21.17057],[84.87772,21.1784]]],[[[85.24335,21.67956],[85.23628,21.67672],[85.22604,21.67722],[85.21899,21.67332],[85.21625,21.67555],[85.20922,21.67542],[85.20186,21.66103],[85.19833,21.65977],[85.1912,21.66127],[85.18809,21.65684],[85.18097,21.65503],[85.18021,21.65412],[85.18423,21.64939],[85.18074,21.6445],[85.18295,21.64304],[85.19165,21.64552],[85.19428,21.64086],[85.19283,21.63782],[85.18922,21.63561],[85.18853,21.62939],[85.18608,21.62704],[85.18117,21.62582],[85.17695,21.62007],[85.17136,21.623],[85.16596,21.62283],[85.15959,21.61288],[85.14939,21.60577],[85.14821,21.5982],[85.14394,21.59535],[85.14846,21.59267],[85.1568,21.59093],[85.17023,21.59156],[85.17525,21.58928],[85.18312,21.59061],[85.19072,21.58825],[85.19367,21.58343],[85.19935,21.58051],[85.19969,21.57314],[85.20443,21.56845],[85.2038,21.56258],[85.21138,21.55868],[85.21286,21.55506],[85.21214,21.55129],[85.20884,21.54838],[85.20723,21.54213],[85.2097,21.53567],[85.2086,21.53264],[85.20503,21.53347],[85.20156,21.53166],[85.20407,21.52904],[85.203,21.52164],[85.1985,21.51544],[85.1801,21.50077],[85.17438,21.48653],[85.1649,21.48009],[85.16101,21.47475],[85.15838,21.46342],[85.15056,21.45982],[85.14953,21.45798],[85.14484,21.45776],[85.14076,21.46278],[85.13645,21.46339],[85.13638,21.46086],[85.13125,21.45773],[85.11723,21.4547],[85.1075,21.45863],[85.07953,21.45892],[85.07147,21.45458],[85.06397,21.45312],[85.06067,21.44198],[85.05075,21.44787],[85.02097,21.45829],[85.02643,21.44803],[85.01996,21.444],[85.00823,21.44419],[85.00296,21.4421],[84.99755,21.43572],[84.99854,21.43164],[84.99403,21.42135],[84.99468,21.4199],[84.99211,21.41807],[84.99295,21.41462],[84.99183,21.41225],[84.9945,21.40821],[84.99333,21.40676],[84.99466,21.4014],[84.99804,21.39814],[84.99999,21.39827],[85.00003,21.39569],[85.00294,21.39331],[85.00332,21.3897],[85.00551,21.3889],[85.00653,21.38552],[85.00766,21.37874],[85.00617,21.36883],[85.00776,21.36576],[85.00654,21.36274],[85.00897,21.36152],[85.01024,21.35584],[85.00792,21.35424],[85.00698,21.34799],[85.01002,21.34372],[85.01266,21.33357],[85.00827,21.32414],[85.01074,21.31648],[85.01476,21.31534],[85.01555,21.31029],[85.02441,21.30932],[85.02906,21.30596],[85.02987,21.30115],[85.03462,21.29861],[85.03392,21.29215],[85.01897,21.29692],[85.01114,21.29734],[85.00941,21.29234],[85.00259,21.28696],[84.99306,21.28923],[84.98869,21.28756],[84.97834,21.28908],[84.95701,21.29778],[84.93066,21.28424],[84.91288,21.2727],[84.90316,21.26273],[84.89751,21.26101],[84.90236,21.25075],[84.92607,21.23364],[84.93731,21.20617],[84.93949,21.19602],[84.94868,21.19189],[84.95644,21.19278],[84.97001,21.18876],[84.966,21.18418],[84.96622,21.17885],[84.96203,21.17777],[84.96391,21.17127],[84.96227,21.16582],[84.96945,21.16158],[84.96215,21.14736],[84.94859,21.1482],[84.94719,21.15498],[84.94777,21.16301],[84.95034,21.17042],[84.94424,21.17488],[84.92732,21.1807],[84.92878,21.17711],[84.92747,21.16854],[84.92849,21.15729],[84.93204,21.15376],[84.9252,21.14489],[84.922,21.1446],[84.91879,21.14076],[84.90018,21.14738],[84.89947,21.15053],[84.88487,21.15319],[84.88022,21.15704],[84.87724,21.16445],[84.86567,21.16606],[84.85981,21.16502],[84.84281,21.1695],[84.81749,21.17128],[84.81277,21.16882],[84.80129,21.16734],[84.79859,21.1656],[84.79993,21.15472],[84.80294,21.15514],[84.80356,21.15269],[84.8071,21.15147],[84.8065,21.15023],[84.8102,21.14928],[84.81091,21.14617],[84.81344,21.14709],[84.81149,21.14025],[84.80868,21.13658],[84.80261,21.14156],[84.80133,21.13655],[84.79811,21.13473],[84.79869,21.13091],[84.79472,21.13306],[84.78938,21.1315],[84.78874,21.13847],[84.77718,21.14561],[84.76249,21.14906],[84.75841,21.15219],[84.75391,21.15945],[84.74792,21.1616],[84.74332,21.17072],[84.73882,21.16903],[84.73177,21.16945],[84.73068,21.16481],[84.72568,21.16052],[84.72275,21.1483],[84.7082,21.15218],[84.69077,21.1528],[84.68034,21.14694],[84.68055,21.13809],[84.67716,21.12493],[84.67143,21.11963],[84.66933,21.11411],[84.66702,21.09289],[84.66889,21.07948],[84.68047,21.07227],[84.67996,21.06911],[84.68129,21.06755],[84.67949,21.06009],[84.67467,21.06064],[84.67221,21.06373],[84.66846,21.0638],[84.66415,21.07006],[84.6601,21.07099],[84.65969,21.07325],[84.6497,21.08112],[84.64678,21.08112],[84.64427,21.08333],[84.64115,21.08174],[84.63975,21.08367],[84.6368,21.08068],[84.63471,21.0837],[84.62904,21.08061],[84.62428,21.08246],[84.62365,21.07981],[84.61883,21.07866],[84.61855,21.07558],[84.61587,21.07315],[84.61299,21.07296],[84.61186,21.06992],[84.60879,21.07196],[84.60434,21.06795],[84.60273,21.07054],[84.60175,21.06832],[84.59864,21.06969],[84.59828,21.06663],[84.59418,21.06765],[84.59599,21.06526],[84.592,21.06244],[84.5883,21.06226],[84.58487,21.0647],[84.58347,21.06096],[84.57399,21.06317],[84.56846,21.06201],[84.55898,21.0694],[84.55082,21.06929],[84.54977,21.07257],[84.54447,21.07446],[84.53227,21.08718],[84.52368,21.08637],[84.51146,21.0887],[84.50919,21.08675],[84.50442,21.08863],[84.49623,21.07993],[84.4879,21.07814],[84.48497,21.08063],[84.48181,21.0809],[84.47325,21.07737],[84.47068,21.0731],[84.46673,21.07163],[84.46522,21.0666],[84.4599,21.06089],[84.45426,21.05781],[84.45362,21.05201],[84.45072,21.05071],[84.44969,21.04137],[84.44309,21.03816],[84.4412,21.03924],[84.43903,21.03315],[84.4298,21.04017],[84.41362,21.03315],[84.41225,21.03061],[84.40873,21.03036],[84.41872,21.02361],[84.42414,21.02335],[84.43301,21.01953],[84.43392,21.01629],[84.42757,21.00831],[84.4146,21.00426],[84.41194,21.0008],[84.40823,20.99172],[84.40753,20.98153],[84.40553,20.97657],[84.39934,20.97186],[84.39206,20.97105],[84.38326,20.96591],[84.37953,20.96561],[84.37817,20.96073],[84.37479,20.95899],[84.37593,20.95598],[84.36807,20.95174],[84.36498,20.95194],[84.36516,20.95513],[84.35982,20.95895],[84.35874,20.95727],[84.35501,20.95849],[84.35204,20.95184],[84.34529,20.953],[84.34214,20.95544],[84.33337,20.94905],[84.33151,20.95199],[84.32821,20.95141],[84.32196,20.9445],[84.31693,20.94474],[84.31588,20.9382],[84.31273,20.93739],[84.31334,20.9345],[84.31053,20.93147],[84.30912,20.93162],[84.30879,20.93466],[84.30257,20.93634],[84.2975,20.93435],[84.29699,20.93016],[84.29151,20.92548],[84.28114,20.9238],[84.26827,20.91331],[84.27071,20.90816],[84.26173,20.89922],[84.26806,20.88889],[84.26631,20.88118],[84.27817,20.87431],[84.29401,20.86847],[84.30262,20.86129],[84.32141,20.85289],[84.33643,20.84237],[84.34119,20.84109],[84.35176,20.82928],[84.35554,20.81799],[84.35314,20.80114],[84.3557,20.79447],[84.34874,20.78331],[84.35047,20.77881],[84.35996,20.76625],[84.37774,20.75383],[84.3944,20.75],[84.41712,20.73839],[84.42166,20.73744],[84.45019,20.73885],[84.46281,20.73519],[84.48478,20.72254],[84.4985,20.71762],[84.51561,20.70238],[84.5338,20.69532],[84.55328,20.69242],[84.56013,20.68997],[84.58178,20.6746],[84.59204,20.66365],[84.59998,20.65137],[84.61227,20.63922],[84.62695,20.62915],[84.63898,20.62381],[84.65792,20.61838],[84.68066,20.61688],[84.6979,20.61177],[84.71282,20.61126],[84.72842,20.61552],[84.76179,20.60813],[84.77836,20.59775],[84.78795,20.58271],[84.80053,20.5773],[84.82096,20.56086],[84.84852,20.52803],[84.86059,20.53368],[84.86495,20.53839],[84.87358,20.55144],[84.87527,20.55836],[84.88615,20.56238],[84.89692,20.58184],[84.90716,20.58477],[84.92232,20.58039],[84.92645,20.582],[84.9437,20.58177],[84.94893,20.57867],[84.95009,20.57572],[84.96818,20.5722],[84.975,20.57336],[84.97988,20.56522],[84.9869,20.57517],[84.98699,20.58042],[85.02757,20.58977],[85.032,20.58843],[85.03515,20.58528],[85.03808,20.58647],[85.04653,20.58548],[85.05524,20.57773],[85.06516,20.57835],[85.06489,20.58209],[85.06885,20.58452],[85.07401,20.58116],[85.08086,20.59231],[85.08556,20.59538],[85.0867,20.6055],[85.09059,20.60885],[85.0919,20.6126],[85.08904,20.61551],[85.0911,20.61878],[85.10282,20.61715],[85.10923,20.61217],[85.11712,20.61032],[85.12225,20.6129],[85.12701,20.61625],[85.12902,20.6318],[85.13457,20.64287],[85.12677,20.65361],[85.11313,20.68313],[85.12493,20.70353],[85.13218,20.70881],[85.13531,20.71764],[85.13406,20.71859],[85.13981,20.73132],[85.15318,20.73307],[85.15015,20.72694],[85.15975,20.70788],[85.17069,20.70673],[85.17565,20.70072],[85.17157,20.69685],[85.1695,20.69025],[85.16546,20.68481],[85.16668,20.67974],[85.16571,20.6769],[85.16418,20.67773],[85.16368,20.67067],[85.16706,20.669],[85.16729,20.66452],[85.17193,20.66265],[85.17712,20.66677],[85.17773,20.67006],[85.19403,20.67882],[85.19785,20.68666],[85.1926,20.69424],[85.18996,20.69559],[85.18874,20.70114],[85.18979,20.70379],[85.19767,20.7093],[85.19977,20.71605],[85.20515,20.71925],[85.20274,20.72822],[85.20391,20.73344],[85.20722,20.73439],[85.20822,20.74252],[85.21347,20.74484],[85.21383,20.7493],[85.21593,20.75021],[85.2158,20.75218],[85.20886,20.75286],[85.20463,20.75818],[85.20677,20.76377],[85.20657,20.7695],[85.196,20.78052],[85.19579,20.78688],[85.20109,20.79019],[85.20637,20.7897],[85.2132,20.78573],[85.21531,20.78748],[85.21601,20.79256],[85.21879,20.79429],[85.23596,20.79233],[85.24157,20.79477],[85.25475,20.79536],[85.25328,20.80332],[85.25669,20.81179],[85.25108,20.82773],[85.25555,20.84314],[85.25753,20.87558],[85.25252,20.88119],[85.24684,20.88402],[85.24858,20.88645],[85.25411,20.88583],[85.25927,20.88778],[85.26162,20.89098],[85.25897,20.89486],[85.25,20.89601],[85.24263,20.89928],[85.23875,20.91213],[85.24568,20.93663],[85.245,20.94403],[85.24091,20.95616],[85.24085,20.96211],[85.24384,20.96673],[85.25804,20.97365],[85.26066,20.9815],[85.25851,20.98934],[85.25092,21.0],[85.23829,21.00973],[85.21187,21.02498],[85.1976,21.0352],[85.18578,21.03837],[85.1713,21.04521],[85.16524,21.05282],[85.16724,21.05647],[85.16724,21.06425],[85.17503,21.067],[85.17964,21.07856],[85.18201,21.08136],[85.18674,21.08266],[85.1915,21.08036],[85.19794,21.08082],[85.20257,21.07813],[85.21651,21.07439],[85.23011,21.07243],[85.23986,21.1018],[85.24698,21.114],[85.24759,21.12304],[85.25221,21.12638],[85.25378,21.12973],[85.25475,21.13477],[85.25318,21.13716],[85.26019,21.14918],[85.26234,21.15015],[85.26777,21.16791],[85.27267,21.17467],[85.28064,21.17363],[85.28861,21.18044],[85.29107,21.18041],[85.30396,21.17313],[85.30423,21.16989],[85.3104,21.16707],[85.31707,21.15813],[85.33414,21.17837],[85.33912,21.17668],[85.34148,21.17804],[85.34319,21.1718],[85.34664,21.16865],[85.35056,21.1699],[85.35123,21.1687],[85.35726,21.1692],[85.36093,21.17024],[85.36082,21.17241],[85.36571,21.17099],[85.3662,21.17267],[85.3695,21.16963],[85.38117,21.16789],[85.38331,21.17382],[85.38714,21.17788],[85.38864,21.17761],[85.39328,21.18357],[85.37986,21.19933],[85.38123,21.20297],[85.37999,21.21073],[85.38231,21.21429],[85.37888,21.21804],[85.37461,21.22908],[85.36957,21.23583],[85.35727,21.24714],[85.34073,21.2555],[85.33908,21.25812],[85.31492,21.26325],[85.30755,21.26796],[85.30643,21.27047],[85.30121,21.27142],[85.29816,21.27544],[85.29509,21.27656],[85.28696,21.26401],[85.28053,21.26506],[85.27026,21.27451],[85.27159,21.28335],[85.27587,21.28618],[85.27434,21.29053],[85.27628,21.2933],[85.27231,21.29819],[85.27159,21.30213],[85.27518,21.3043],[85.28248,21.29928],[85.28532,21.305],[85.2968,21.3087],[85.29679,21.31741],[85.3034,21.31696],[85.31517,21.33024],[85.31648,21.3288],[85.31756,21.32956],[85.32191,21.3243],[85.32084,21.32182],[85.32294,21.3216],[85.32271,21.31884],[85.32875,21.3284],[85.33077,21.34693],[85.33604,21.348],[85.33476,21.35117],[85.33696,21.35339],[85.3354,21.35612],[85.33667,21.3576],[85.33915,21.35718],[85.33999,21.35984],[85.33759,21.36072],[85.33845,21.36206],[85.33982,21.36117],[85.34247,21.36622],[85.33,21.3771],[85.32956,21.38482],[85.32609,21.38845],[85.32631,21.39073],[85.32211,21.38979],[85.30489,21.39637],[85.30774,21.4015],[85.30587,21.40251],[85.30728,21.40399],[85.30684,21.4075],[85.30364,21.41102],[85.30669,21.41218],[85.30202,21.41715],[85.29626,21.42043],[85.28393,21.42369],[85.28231,21.42692],[85.27172,21.42858],[85.26805,21.43931],[85.25882,21.44347],[85.25912,21.44744],[85.2552,21.451],[85.25798,21.45653],[85.26248,21.45712],[85.26775,21.45419],[85.26965,21.45638],[85.27676,21.45324],[85.28699,21.45417],[85.29096,21.44964],[85.29307,21.45054],[85.29969,21.447],[85.30169,21.44877],[85.30363,21.44798],[85.31044,21.4582],[85.30694,21.46199],[85.31171,21.46202],[85.31314,21.46466],[85.32135,21.46525],[85.32357,21.4707],[85.32747,21.47125],[85.32849,21.47369],[85.32644,21.4749],[85.32763,21.47728],[85.32952,21.47668],[85.33209,21.4822],[85.33151,21.48612],[85.32774,21.48993],[85.32891,21.49105],[85.32828,21.49395],[85.3305,21.49516],[85.32752,21.50074],[85.32917,21.5049],[85.32723,21.50739],[85.32855,21.5097],[85.3244,21.51887],[85.3208,21.51997],[85.32159,21.5225],[85.31943,21.53126],[85.32164,21.53432],[85.3177,21.53534],[85.30785,21.53152],[85.30142,21.53106],[85.30484,21.53906],[85.30431,21.54051],[85.30112,21.5411],[85.29862,21.54589],[85.30006,21.5541],[85.30768,21.55706],[85.30662,21.55923],[85.30882,21.56532],[85.3108,21.56583],[85.31223,21.56918],[85.30624,21.56899],[85.30651,21.56709],[85.30274,21.56698],[85.30336,21.57143],[85.29549,21.57404],[85.28943,21.58038],[85.28958,21.58247],[85.28638,21.58411],[85.28608,21.58873],[85.28253,21.59188],[85.28309,21.5965],[85.29175,21.60036],[85.28861,21.60518],[85.28324,21.6021],[85.28249,21.60603],[85.27872,21.60813],[85.2746,21.61732],[85.26663,21.62336],[85.26228,21.63336],[85.2658,21.64158],[85.26283,21.64354],[85.25775,21.65226],[85.25509,21.65235],[85.25252,21.66659],[85.25297,21.675],[85.24762,21.67873],[85.24335,21.67956]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"345","area_level":"District","area_name":"Balangir","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.40339,21.06224],[83.39315,21.0681],[83.39125,21.07108],[83.38543,21.06922],[83.37709,21.06159],[83.36828,21.06416],[83.36226,21.06925],[83.35585,21.06891],[83.35195,21.07115],[83.35237,21.06641],[83.35093,21.06385],[83.34104,21.05755],[83.33449,21.0584],[83.33043,21.05511],[83.32172,21.05617],[83.31758,21.04713],[83.31732,21.04115],[83.31061,21.033],[83.30697,21.03143],[83.30228,21.02536],[83.29959,21.02464],[83.29765,21.0201],[83.29966,21.01764],[83.29571,21.01365],[83.3066,21.00192],[83.32142,20.99823],[83.32671,20.99486],[83.3291,20.98488],[83.33263,20.98066],[83.34248,20.98643],[83.35001,20.99867],[83.36091,21.00339],[83.37131,21.00177],[83.37287,21.00064],[83.37229,20.99296],[83.3865,20.98897],[83.38732,20.9863],[83.38402,20.98207],[83.3856,20.98052],[83.38406,20.97253],[83.38938,20.97118],[83.39051,20.96442],[83.38508,20.95769],[83.38073,20.95691],[83.3796,20.95509],[83.38497,20.95259],[83.38309,20.95075],[83.38407,20.94955],[83.38092,20.94737],[83.37991,20.94015],[83.38074,20.93768],[83.38673,20.93768],[83.39115,20.93246],[83.39217,20.92446],[83.39738,20.92014],[83.40801,20.91612],[83.41454,20.90845],[83.41559,20.90034],[83.41383,20.89636],[83.40356,20.89031],[83.39686,20.88992],[83.39094,20.8864],[83.38155,20.88587],[83.37308,20.88319],[83.36413,20.87773],[83.34926,20.87445],[83.3384,20.88319],[83.32892,20.88096],[83.32787,20.87977],[83.3287,20.87399],[83.32222,20.87128],[83.32118,20.86556],[83.31713,20.8612],[83.31515,20.86102],[83.31216,20.85757],[83.30706,20.85939],[83.30212,20.85256],[83.29827,20.85492],[83.28471,20.85329],[83.28348,20.85092],[83.28483,20.8486],[83.28401,20.84592],[83.27933,20.84187],[83.27581,20.84736],[83.27745,20.85683],[83.2764,20.86057],[83.2716,20.86881],[83.27602,20.86938],[83.26929,20.88103],[83.26809,20.88047],[83.26214,20.888],[83.25939,20.88871],[83.25917,20.89187],[83.25576,20.89416],[83.25433,20.89853],[83.25126,20.89839],[83.25418,20.90297],[83.25167,20.90998],[83.24896,20.91188],[83.25031,20.9177],[83.23325,20.92802],[83.22587,20.92763],[83.21652,20.93037],[83.21582,20.9287],[83.21931,20.92674],[83.21766,20.92139],[83.21033,20.91942],[83.21081,20.91749],[83.20764,20.91325],[83.19146,20.89606],[83.18829,20.89743],[83.17835,20.89003],[83.16779,20.88753],[83.16544,20.88393],[83.14454,20.88092],[83.14086,20.87775],[83.12926,20.85889],[83.11607,20.8632],[83.11478,20.8666],[83.10766,20.8699],[83.10237,20.87469],[83.09427,20.86808],[83.09218,20.86311],[83.08672,20.8577],[83.05568,20.85749],[83.05029,20.85663],[83.04736,20.8545],[83.0314,20.85425],[83.01824,20.85659],[83.01443,20.86173],[83.00829,20.85753],[83.00246,20.84881],[82.98258,20.84709],[82.98038,20.84568],[82.97951,20.8559],[82.98163,20.86061],[82.98049,20.8624],[82.98132,20.86588],[82.97698,20.86944],[82.97302,20.87684],[82.97426,20.8817],[82.97282,20.88456],[82.96425,20.87897],[82.96284,20.88549],[82.96694,20.89311],[82.9595,20.89582],[82.95305,20.89597],[82.94213,20.88409],[82.92561,20.88289],[82.92547,20.89452],[82.91885,20.89776],[82.91668,20.90086],[82.91265,20.90308],[82.90331,20.90081],[82.90274,20.90361],[82.89974,20.90441],[82.89046,20.90342],[82.88798,20.9091],[82.88432,20.90641],[82.87969,20.89661],[82.87535,20.89473],[82.87328,20.89133],[82.85876,20.87984],[82.85848,20.87645],[82.84068,20.86804],[82.80713,20.83575],[82.80094,20.8349],[82.79262,20.8236],[82.78378,20.81751],[82.78018,20.81128],[82.77079,20.80229],[82.77058,20.79802],[82.76547,20.78661],[82.75337,20.7708],[82.74546,20.77056],[82.74497,20.76011],[82.73937,20.75075],[82.73427,20.72317],[82.72759,20.72231],[82.72551,20.72394],[82.72089,20.72419],[82.71922,20.72628],[82.71428,20.72569],[82.71041,20.72852],[82.70462,20.72762],[82.69987,20.72966],[82.69764,20.71473],[82.69336,20.70581],[82.69317,20.68479],[82.69521,20.68322],[82.70076,20.68396],[82.70662,20.68263],[82.71891,20.67818],[82.72231,20.67232],[82.72531,20.67083],[82.72393,20.65767],[82.73106,20.65417],[82.72713,20.6394],[82.73074,20.63515],[82.73703,20.63472],[82.74198,20.6309],[82.73583,20.61448],[82.73005,20.60604],[82.73071,20.60187],[82.72646,20.59131],[82.72851,20.58521],[82.71618,20.57732],[82.71019,20.57049],[82.71173,20.5644],[82.71012,20.56106],[82.71042,20.55634],[82.70794,20.55458],[82.70772,20.54861],[82.70962,20.54432],[82.70703,20.54373],[82.70443,20.53945],[82.70379,20.53286],[82.70869,20.52668],[82.70514,20.5116],[82.70515,20.5043],[82.70054,20.50075],[82.69926,20.49739],[82.70017,20.49261],[82.69547,20.48183],[82.68718,20.47607],[82.68947,20.46857],[82.68331,20.4614],[82.68445,20.45333],[82.6908,20.45414],[82.69533,20.45129],[82.6996,20.44275],[82.69431,20.43115],[82.69654,20.42578],[82.7029,20.42335],[82.70871,20.41619],[82.71268,20.40793],[82.71234,20.40279],[82.71505,20.39838],[82.72311,20.3935],[82.72426,20.38813],[82.72991,20.38319],[82.72721,20.38079],[82.72335,20.37069],[82.71478,20.36777],[82.71292,20.36001],[82.71495,20.35678],[82.71859,20.35531],[82.72642,20.35528],[82.73344,20.35659],[82.74388,20.36229],[82.74817,20.36223],[82.76376,20.35338],[82.77159,20.35421],[82.7766,20.35683],[82.78005,20.36379],[82.78108,20.37028],[82.79041,20.37029],[82.79653,20.37214],[82.79788,20.37969],[82.80352,20.38536],[82.80919,20.38165],[82.81363,20.3832],[82.815,20.38101],[82.81246,20.37161],[82.81275,20.36362],[82.81103,20.36117],[82.80206,20.35722],[82.79777,20.35132],[82.79018,20.3471],[82.78981,20.34477],[82.79401,20.33868],[82.79197,20.33286],[82.79329,20.33155],[82.78791,20.32689],[82.7884,20.32425],[82.80314,20.32115],[82.81146,20.32717],[82.81001,20.33622],[82.80657,20.34036],[82.8123,20.34691],[82.81182,20.35183],[82.81407,20.35847],[82.81623,20.35835],[82.81885,20.35222],[82.82098,20.35074],[82.82213,20.3446],[82.82822,20.34132],[82.83286,20.34097],[82.83451,20.33614],[82.83853,20.3362],[82.84674,20.34095],[82.84996,20.34043],[82.85231,20.33768],[82.8514,20.33147],[82.85359,20.32547],[82.84998,20.31796],[82.84894,20.31175],[82.8516,20.30148],[82.84871,20.29464],[82.84562,20.29443],[82.84588,20.2911],[82.8359,20.29565],[82.84148,20.30259],[82.83984,20.30567],[82.83339,20.30669],[82.83312,20.30919],[82.83675,20.31632],[82.8339,20.32168],[82.829,20.32012],[82.81911,20.32085],[82.81589,20.31755],[82.8152,20.31506],[82.81849,20.31349],[82.81908,20.30716],[82.8168,20.3003],[82.81359,20.29603],[82.81043,20.29559],[82.81254,20.28963],[82.81733,20.28441],[82.82124,20.28108],[82.82187,20.28362],[82.82461,20.28379],[82.82598,20.28062],[82.8286,20.27993],[82.8402,20.28209],[82.84535,20.29037],[82.85587,20.28021],[82.8599,20.26946],[82.85683,20.26143],[82.85828,20.25527],[82.85153,20.25283],[82.85227,20.24658],[82.85093,20.24303],[82.85146,20.24032],[82.85308,20.23994],[82.85218,20.2369],[82.85941,20.23652],[82.86087,20.23135],[82.8565,20.22822],[82.85767,20.22665],[82.85474,20.22301],[82.85509,20.21935],[82.84785,20.20659],[82.847,20.19578],[82.83726,20.18926],[82.82739,20.18672],[82.81657,20.18911],[82.81192,20.18463],[82.81266,20.18227],[82.81086,20.18082],[82.80962,20.17468],[82.81068,20.17154],[82.81274,20.17137],[82.81492,20.16818],[82.82292,20.16521],[82.84067,20.16412],[82.84722,20.16122],[82.85791,20.1619],[82.87396,20.15659],[82.87949,20.15858],[82.88388,20.15823],[82.89525,20.14908],[82.90958,20.14736],[82.90846,20.15562],[82.91102,20.16778],[82.92173,20.1729],[82.92173,20.17503],[82.92616,20.18017],[82.93183,20.17948],[82.94369,20.17392],[82.94863,20.17746],[82.95791,20.17723],[82.96421,20.18029],[82.97569,20.18065],[82.97989,20.17636],[82.9905,20.17888],[82.99388,20.17567],[83.00174,20.17676],[83.01582,20.17175],[83.02121,20.17594],[83.02373,20.17437],[83.02945,20.17767],[83.03443,20.1867],[83.03873,20.18218],[83.04403,20.18313],[83.04609,20.18638],[83.05222,20.18861],[83.05506,20.18895],[83.06075,20.18597],[83.06512,20.19082],[83.08609,20.19211],[83.08847,20.19967],[83.09107,20.20035],[83.10157,20.19209],[83.11301,20.19538],[83.1268,20.19485],[83.13309,20.18441],[83.13974,20.18012],[83.14372,20.17408],[83.14478,20.16935],[83.15528,20.17425],[83.16766,20.17104],[83.17365,20.17128],[83.18952,20.17618],[83.19507,20.18027],[83.20099,20.19198],[83.20451,20.19548],[83.22028,20.201],[83.22506,20.20449],[83.23104,20.21938],[83.23915,20.22965],[83.23957,20.23402],[83.23424,20.24544],[83.23479,20.25281],[83.23795,20.257],[83.24873,20.26479],[83.26312,20.26771],[83.28489,20.27991],[83.28897,20.28472],[83.29359,20.29552],[83.30015,20.3052],[83.31366,20.30497],[83.32853,20.31021],[83.34141,20.31684],[83.35484,20.31604],[83.36153,20.31766],[83.36339,20.32828],[83.36259,20.33965],[83.3641,20.34327],[83.36949,20.34517],[83.38301,20.345],[83.3874,20.34696],[83.39535,20.35925],[83.40441,20.36394],[83.40834,20.36788],[83.4136,20.37947],[83.41778,20.39695],[83.42223,20.40305],[83.44516,20.41831],[83.4858,20.45424],[83.49071,20.45301],[83.49412,20.44761],[83.49434,20.44409],[83.49277,20.44302],[83.49501,20.43977],[83.49372,20.43752],[83.49496,20.43428],[83.49746,20.4344],[83.49626,20.43226],[83.49001,20.42936],[83.48909,20.42716],[83.48972,20.42119],[83.4876,20.41778],[83.48733,20.41011],[83.48989,20.40514],[83.49396,20.40615],[83.49934,20.41613],[83.51962,20.41169],[83.51921,20.40614],[83.52047,20.40449],[83.53575,20.39906],[83.5419,20.3984],[83.54354,20.39678],[83.54644,20.39807],[83.54812,20.40149],[83.5548,20.39971],[83.55767,20.39462],[83.56446,20.39335],[83.56618,20.38709],[83.57004,20.38741],[83.57112,20.37614],[83.57531,20.36861],[83.57645,20.363],[83.57879,20.36483],[83.58728,20.36297],[83.59402,20.35896],[83.5956,20.36064],[83.59776,20.3578],[83.61336,20.35403],[83.61902,20.3506],[83.62194,20.35071],[83.6241,20.3527],[83.62212,20.35662],[83.62227,20.36288],[83.62728,20.36758],[83.63098,20.36882],[83.63764,20.36663],[83.64409,20.36754],[83.64944,20.36495],[83.65248,20.36693],[83.65365,20.37179],[83.65045,20.37955],[83.64758,20.38052],[83.64993,20.38781],[83.65497,20.38887],[83.65586,20.39492],[83.65832,20.39519],[83.658,20.39781],[83.66176,20.40462],[83.65973,20.40698],[83.66103,20.41093],[83.65838,20.41203],[83.65823,20.41419],[83.66246,20.41432],[83.6626,20.41754],[83.66537,20.41864],[83.66601,20.42287],[83.65983,20.4232],[83.65754,20.42599],[83.65636,20.43256],[83.63523,20.4407],[83.62706,20.44758],[83.61849,20.44682],[83.61723,20.44978],[83.61909,20.45313],[83.6176,20.45833],[83.60971,20.46573],[83.59668,20.46916],[83.59669,20.47642],[83.58699,20.48297],[83.58245,20.48834],[83.57977,20.48775],[83.57379,20.48085],[83.57153,20.48147],[83.56946,20.48462],[83.57973,20.5038],[83.58034,20.50929],[83.57839,20.51833],[83.57959,20.52138],[83.58539,20.52545],[83.60128,20.52772],[83.60243,20.52956],[83.60141,20.53154],[83.59788,20.53054],[83.59446,20.53964],[83.59713,20.56379],[83.60503,20.57039],[83.59599,20.57931],[83.59999,20.58247],[83.5999,20.59006],[83.59405,20.60098],[83.59486,20.60635],[83.60083,20.60738],[83.60074,20.6108],[83.60415,20.61093],[83.60663,20.61776],[83.60931,20.61834],[83.62145,20.63315],[83.62243,20.64078],[83.6268,20.64414],[83.62815,20.66112],[83.63612,20.66515],[83.63845,20.67031],[83.64151,20.67144],[83.63656,20.67969],[83.6504,20.68656],[83.65223,20.68832],[83.65223,20.6934],[83.65516,20.69553],[83.65592,20.69989],[83.65892,20.70282],[83.66153,20.70254],[83.6621,20.70515],[83.66459,20.70455],[83.66696,20.70928],[83.66576,20.71933],[83.667,20.72507],[83.67124,20.73164],[83.67246,20.73728],[83.67699,20.74054],[83.67724,20.74462],[83.65341,20.74582],[83.6532,20.74976],[83.65073,20.75201],[83.64975,20.75596],[83.65506,20.75713],[83.65678,20.76357],[83.65594,20.7704],[83.65457,20.77311],[83.64957,20.77475],[83.63879,20.77023],[83.63528,20.7711],[83.63488,20.78101],[83.63615,20.78234],[83.63454,20.79666],[83.62876,20.79684],[83.62492,20.79945],[83.6183,20.79701],[83.61643,20.80086],[83.6133,20.80306],[83.60741,20.79941],[83.59318,20.79952],[83.59282,20.80471],[83.59689,20.80426],[83.5971,20.80571],[83.59368,20.82082],[83.61106,20.81932],[83.62091,20.81586],[83.62089,20.82095],[83.62534,20.82713],[83.62105,20.82744],[83.61423,20.83302],[83.60434,20.83309],[83.59646,20.83792],[83.58946,20.83869],[83.58257,20.84316],[83.57367,20.84582],[83.56971,20.84543],[83.57378,20.85555],[83.57465,20.86855],[83.57651,20.87306],[83.58012,20.87391],[83.58294,20.87731],[83.58937,20.88093],[83.5927,20.88387],[83.59354,20.88806],[83.61962,20.90297],[83.61998,20.90966],[83.61504,20.91422],[83.61213,20.91335],[83.61588,20.92283],[83.61517,20.92708],[83.60908,20.93047],[83.611,20.93227],[83.61349,20.93202],[83.61513,20.93595],[83.61697,20.95005],[83.62394,20.95238],[83.62567,20.96051],[83.63145,20.9639],[83.63599,20.97802],[83.6393,20.97885],[83.63913,20.98126],[83.62533,20.98416],[83.61502,20.98388],[83.58873,20.97968],[83.57287,20.97421],[83.52956,20.98466],[83.52323,20.98415],[83.51058,20.97981],[83.50485,20.98099],[83.49034,20.99533],[83.48221,20.99653],[83.47227,20.99473],[83.46672,20.99626],[83.45575,21.01004],[83.44632,21.01616],[83.44548,21.02267],[83.44872,21.02737],[83.44812,21.03298],[83.45159,21.04227],[83.45634,21.04819],[83.45552,21.05311],[83.43689,21.04629],[83.43709,21.04211],[83.43114,21.0334],[83.4236,21.03126],[83.421,21.03397],[83.41396,21.03653],[83.41395,21.03967],[83.40977,21.0398],[83.40765,21.04255],[83.40411,21.05026],[83.40535,21.05725],[83.40339,21.06224]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"346","area_level":"District","area_name":"Baleshwar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[87.4301,21.58621],[87.43031,21.58657],[87.43007,21.5867],[87.42914,21.5863],[87.42739,21.58614],[87.42613,21.58634],[87.42484,21.58572],[87.42184,21.58282],[87.419,21.57872],[87.41742,21.57498],[87.41596,21.5725],[87.4138,21.56968],[87.41321,21.56854],[87.41319,21.56764],[87.41268,21.56514],[87.41299,21.56344],[87.4135,21.5621],[87.41338,21.5609],[87.41371,21.56017],[87.41449,21.56195],[87.41428,21.56339],[87.41441,21.56498],[87.41473,21.56535],[87.41547,21.56557],[87.41627,21.56619],[87.41609,21.56686],[87.41695,21.5681],[87.41698,21.56851],[87.41658,21.56931],[87.41656,21.57],[87.41836,21.57054],[87.41867,21.57133],[87.41851,21.57215],[87.41961,21.5726],[87.41993,21.57297],[87.42119,21.57635],[87.42283,21.5785],[87.42325,21.58007],[87.42507,21.58145],[87.42496,21.58233],[87.42514,21.58251],[87.42704,21.58298],[87.4289,21.58477],[87.42989,21.58548],[87.4301,21.58621]]],[[[87.17228,21.97847],[87.17041,21.97994],[87.1682,21.97128],[87.16199,21.96761],[87.1636,21.96701],[87.16233,21.96168],[87.16479,21.9609],[87.16066,21.95227],[87.16262,21.94891],[87.1611,21.94398],[87.16328,21.9389],[87.1614,21.93492],[87.15281,21.93322],[87.14155,21.92402],[87.12464,21.92601],[87.11405,21.92432],[87.11282,21.92244],[87.10692,21.92232],[87.10235,21.91506],[87.0971,21.91394],[87.09057,21.90107],[87.09462,21.89829],[87.09885,21.89072],[87.09519,21.88062],[87.09572,21.87435],[87.09785,21.86667],[87.10267,21.85949],[87.11325,21.85501],[87.11832,21.855],[87.12135,21.84875],[87.12201,21.8422],[87.17643,21.81351],[87.17908,21.80419],[87.18168,21.80277],[87.183,21.79944],[87.18351,21.79266],[87.1801,21.79286],[87.17575,21.80878],[87.17283,21.81255],[87.16855,21.80919],[87.16872,21.80725],[87.17092,21.80595],[87.16928,21.79873],[87.17009,21.79598],[87.1721,21.79522],[87.1709,21.79471],[87.17107,21.789],[87.16632,21.78605],[87.16181,21.789],[87.16442,21.78497],[87.16134,21.77385],[87.1587,21.77124],[87.13922,21.77505],[87.12995,21.7789],[87.12538,21.777],[87.12644,21.77202],[87.12193,21.77199],[87.12165,21.78317],[87.11241,21.78565],[87.11412,21.78783],[87.11832,21.78502],[87.11699,21.78926],[87.11121,21.78897],[87.10863,21.78281],[87.10384,21.78403],[87.10571,21.78172],[87.10158,21.77799],[87.10322,21.77692],[87.1022,21.77169],[87.11259,21.76555],[87.1201,21.75854],[87.12249,21.75536],[87.12207,21.75371],[87.11451,21.75468],[87.11141,21.75303],[87.10718,21.75528],[87.10433,21.75454],[87.0974,21.7469],[87.09497,21.74748],[87.09367,21.74239],[87.09429,21.73875],[87.09626,21.73699],[87.096,21.73303],[87.08621,21.73887],[87.08342,21.73841],[87.0863,21.73253],[87.0891,21.73214],[87.08988,21.73428],[87.0911,21.73211],[87.09366,21.73207],[87.0928,21.72721],[87.08789,21.72987],[87.08821,21.7269],[87.08647,21.72578],[87.08993,21.72262],[87.08862,21.72203],[87.08758,21.71568],[87.0813,21.72104],[87.07619,21.71517],[87.07855,21.71183],[87.07375,21.71081],[87.07147,21.71269],[87.07263,21.71045],[87.06898,21.70703],[87.06686,21.70855],[87.05966,21.70733],[87.04474,21.71613],[87.04291,21.72912],[87.04437,21.73202],[87.04237,21.73681],[87.0461,21.74072],[87.04385,21.73984],[87.04207,21.7414],[87.0337,21.7412],[87.02581,21.74302],[87.02355,21.7386],[87.02842,21.73632],[87.02848,21.73425],[87.03067,21.73297],[87.03043,21.72908],[87.02826,21.72752],[87.03109,21.72156],[87.03385,21.72054],[87.03742,21.7221],[87.03806,21.71863],[87.03614,21.71486],[87.03932,21.71092],[87.03515,21.70815],[87.03686,21.70289],[87.0365,21.69735],[87.04283,21.69443],[87.04282,21.69097],[87.04657,21.69224],[87.04823,21.69063],[87.04634,21.69011],[87.04654,21.68802],[87.05084,21.688],[87.05261,21.68465],[87.04886,21.6772],[87.04096,21.67853],[87.04153,21.67596],[87.03834,21.67249],[87.03185,21.67312],[87.03055,21.66102],[87.02366,21.66296],[87.02583,21.6685],[87.02525,21.67272],[87.02184,21.67393],[87.01788,21.67009],[87.01838,21.6742],[87.01106,21.6775],[87.01035,21.67596],[87.0083,21.67657],[87.00888,21.6744],[87.00738,21.67339],[87.00704,21.67567],[87.00227,21.67666],[87.00206,21.67498],[87.00073,21.67592],[86.99765,21.67339],[86.99218,21.67384],[86.99081,21.67325],[86.99131,21.67191],[86.98888,21.67166],[86.99129,21.66057],[86.98878,21.65344],[86.99386,21.65166],[87.00452,21.65236],[87.00763,21.65115],[87.00785,21.64834],[87.01054,21.64972],[87.01183,21.64881],[87.01251,21.63791],[87.00983,21.6332],[87.00546,21.63218],[87.00502,21.62733],[87.0027,21.62584],[86.99914,21.62725],[86.99764,21.62269],[86.99512,21.62623],[86.99758,21.63455],[86.99282,21.63609],[86.98886,21.63344],[86.98694,21.62881],[86.98903,21.62924],[86.9932,21.62688],[86.99344,21.62241],[86.98796,21.61894],[86.99534,21.62012],[87.00112,21.61517],[86.9968,21.61067],[86.999,21.61103],[87.00189,21.60501],[87.00703,21.60146],[87.00636,21.59874],[87.00328,21.59932],[87.00119,21.59642],[86.99518,21.5956],[86.99136,21.59298],[86.98968,21.59327],[86.99184,21.59742],[86.98851,21.59303],[86.98496,21.59218],[86.97444,21.58491],[86.97,21.58558],[86.96936,21.5888],[86.96329,21.58822],[86.96388,21.58554],[86.96032,21.58072],[86.95791,21.58102],[86.95825,21.58437],[86.96274,21.59349],[86.95933,21.59404],[86.95839,21.59735],[86.95804,21.595],[86.95537,21.59621],[86.95299,21.59066],[86.95625,21.58531],[86.95556,21.58387],[86.95229,21.58386],[86.95299,21.5794],[86.95617,21.57858],[86.95733,21.57338],[86.95622,21.57311],[86.94789,21.57581],[86.94708,21.5773],[86.94218,21.57688],[86.94139,21.57868],[86.92892,21.58356],[86.92834,21.58682],[86.92522,21.58779],[86.92437,21.59058],[86.92032,21.59145],[86.91704,21.58573],[86.91705,21.58234],[86.91013,21.58094],[86.90898,21.58704],[86.91209,21.59226],[86.90433,21.59751],[86.90431,21.59357],[86.90216,21.59301],[86.90104,21.59491],[86.90197,21.59867],[86.90599,21.59803],[86.90674,21.5996],[86.90455,21.6002],[86.90418,21.60256],[86.90199,21.60389],[86.90274,21.60564],[86.89943,21.60829],[86.89971,21.61248],[86.89209,21.61216],[86.8888,21.61384],[86.88751,21.61787],[86.8886,21.62389],[86.88438,21.6259],[86.88336,21.62391],[86.88133,21.6283],[86.87685,21.63151],[86.87888,21.63604],[86.87494,21.63842],[86.87272,21.6357],[86.87332,21.62243],[86.88314,21.61715],[86.88598,21.6125],[86.87909,21.61306],[86.87557,21.60329],[86.87162,21.60517],[86.86639,21.59133],[86.86471,21.5922],[86.86404,21.59023],[86.86371,21.59323],[86.86234,21.59376],[86.86286,21.59693],[86.85727,21.59893],[86.85453,21.60361],[86.8507,21.60128],[86.84718,21.60479],[86.84456,21.59924],[86.83797,21.60188],[86.83762,21.60409],[86.83638,21.6029],[86.8359,21.60629],[86.83435,21.60527],[86.83287,21.60715],[86.83274,21.6041],[86.83149,21.60402],[86.83053,21.60709],[86.83202,21.6078],[86.83011,21.60892],[86.82966,21.60581],[86.82324,21.60658],[86.8206,21.60494],[86.80736,21.60913],[86.79909,21.60758],[86.79874,21.60593],[86.79389,21.60546],[86.79379,21.60307],[86.79259,21.603],[86.79287,21.6012],[86.79599,21.60103],[86.79477,21.59722],[86.78142,21.60225],[86.77633,21.60142],[86.77415,21.60441],[86.7722,21.60213],[86.76798,21.60264],[86.76541,21.60127],[86.75342,21.60719],[86.74611,21.60595],[86.74503,21.60452],[86.74012,21.60561],[86.73525,21.60433],[86.73458,21.59906],[86.72237,21.59914],[86.71994,21.59624],[86.71864,21.59757],[86.71311,21.59543],[86.71032,21.58875],[86.7073,21.58687],[86.69887,21.58657],[86.69542,21.58788],[86.69353,21.58457],[86.68867,21.58736],[86.68724,21.59378],[86.68295,21.59671],[86.67589,21.58645],[86.66984,21.58109],[86.66628,21.58063],[86.66411,21.57767],[86.64934,21.57958],[86.64784,21.57546],[86.65002,21.57037],[86.64623,21.56288],[86.64862,21.55893],[86.64296,21.55643],[86.63995,21.54978],[86.63783,21.5337],[86.63381,21.53238],[86.63067,21.53434],[86.62852,21.53238],[86.62591,21.53385],[86.62514,21.53208],[86.62699,21.52838],[86.6233,21.52862],[86.6237,21.52437],[86.62013,21.52621],[86.61909,21.52273],[86.61619,21.52335],[86.61136,21.51843],[86.60817,21.51844],[86.60441,21.52104],[86.59987,21.5187],[86.58247,21.52271],[86.56756,21.49582],[86.56089,21.48043],[86.55971,21.47314],[86.54958,21.45887],[86.54217,21.44262],[86.53195,21.42599],[86.52182,21.4183],[86.508,21.40239],[86.50204,21.39879],[86.48888,21.38394],[86.48066,21.37717],[86.4708,21.37284],[86.46332,21.36699],[86.45582,21.36534],[86.45628,21.36402],[86.43565,21.35301],[86.43412,21.34119],[86.42989,21.33743],[86.4264,21.33687],[86.42049,21.33086],[86.41367,21.32831],[86.40461,21.3202],[86.39363,21.31994],[86.38978,21.31781],[86.38269,21.30994],[86.3757,21.30684],[86.37033,21.30715],[86.36573,21.30216],[86.36242,21.3022],[86.35796,21.29934],[86.3529,21.28422],[86.35617,21.2746],[86.361,21.26996],[86.3597,21.26611],[86.36889,21.2641],[86.36972,21.26004],[86.37225,21.2586],[86.36843,21.24227],[86.36429,21.23746],[86.36852,21.23508],[86.37444,21.2242],[86.39092,21.22034],[86.40703,21.2197],[86.41216,21.20907],[86.41752,21.20725],[86.41874,21.20347],[86.42115,21.20736],[86.41773,21.21046],[86.42156,21.22263],[86.43303,21.22027],[86.43276,21.21884],[86.43594,21.21671],[86.43534,21.21054],[86.43869,21.20933],[86.43621,21.20491],[86.44341,21.20205],[86.44599,21.19547],[86.44246,21.19181],[86.43918,21.19324],[86.43094,21.18377],[86.42595,21.18077],[86.42697,21.17801],[86.43239,21.17584],[86.43776,21.18073],[86.44019,21.17991],[86.43937,21.17617],[86.44064,21.17237],[86.43915,21.16891],[86.42833,21.16241],[86.44992,21.15425],[86.45488,21.16277],[86.48012,21.15032],[86.48237,21.15249],[86.49614,21.14285],[86.51124,21.13653],[86.51795,21.14514],[86.52451,21.1502],[86.52971,21.15927],[86.53336,21.15727],[86.53526,21.16041],[86.55927,21.1592],[86.55912,21.15736],[86.56136,21.15716],[86.56279,21.14994],[86.56087,21.14474],[86.5743,21.13101],[86.57255,21.12868],[86.58096,21.12391],[86.57883,21.11776],[86.58535,21.11793],[86.58533,21.11554],[86.59014,21.10906],[86.58801,21.1],[86.59423,21.09678],[86.59815,21.09951],[86.60479,21.09796],[86.60516,21.09953],[86.61385,21.0998],[86.615,21.09857],[86.61609,21.09973],[86.6196,21.0964],[86.62194,21.09687],[86.62224,21.09471],[86.62441,21.09535],[86.62467,21.09314],[86.62855,21.09373],[86.62997,21.09144],[86.63062,21.09296],[86.63093,21.08625],[86.62476,21.07427],[86.62539,21.07234],[86.63472,21.06453],[86.64269,21.06247],[86.64817,21.06339],[86.6483,21.06766],[86.6464,21.0684],[86.64885,21.07221],[86.64667,21.0748],[86.64758,21.07705],[86.64221,21.08062],[86.64444,21.08107],[86.64913,21.0876],[86.66178,21.08412],[86.66547,21.09785],[86.6527,21.10131],[86.65423,21.11421],[86.66057,21.1243],[86.6547,21.12847],[86.66743,21.14483],[86.66777,21.14844],[86.66226,21.15098],[86.66421,21.1584],[86.67256,21.16965],[86.68445,21.16987],[86.68927,21.16654],[86.69074,21.16702],[86.69917,21.18332],[86.70347,21.18381],[86.72983,21.17702],[86.73686,21.18229],[86.7399,21.18047],[86.7429,21.18152],[86.75238,21.17626],[86.75762,21.17567],[86.76556,21.17023],[86.76901,21.17274],[86.77043,21.17217],[86.77359,21.17647],[86.7703,21.17924],[86.77025,21.18161],[86.76426,21.18237],[86.7603,21.18614],[86.76317,21.19215],[86.75756,21.19662],[86.76238,21.19915],[86.76921,21.2107],[86.77096,21.21509],[86.76886,21.22444],[86.77016,21.22592],[86.77225,21.22407],[86.77613,21.22416],[86.77733,21.22164],[86.78193,21.22342],[86.78529,21.21997],[86.78523,21.22342],[86.78766,21.22654],[86.79066,21.22219],[86.79287,21.22618],[86.79885,21.22424],[86.80246,21.23077],[86.80381,21.22618],[86.8086,21.22849],[86.80907,21.22452],[86.81655,21.22483],[86.81631,21.22067],[86.82102,21.22191],[86.82476,21.22098],[86.82481,21.21968],[86.81976,21.22018],[86.81671,21.21691],[86.82089,21.21595],[86.81972,21.2153],[86.8205,21.2138],[86.82624,21.21386],[86.82883,21.2088],[86.83241,21.20814],[86.83419,21.21116],[86.83353,21.2139],[86.83137,21.21452],[86.83214,21.21619],[86.84368,21.23243],[86.8522,21.24794],[86.8556,21.25854],[86.88571,21.29894],[86.89006,21.30755],[86.89251,21.31844],[86.89474,21.31589],[86.8975,21.31609],[86.90991,21.32831],[86.9139,21.33458],[86.91175,21.33652],[86.91245,21.33744],[86.92002,21.34094],[86.92406,21.34487],[86.94809,21.37405],[86.94679,21.37558],[86.95098,21.37744],[86.97294,21.40005],[86.97977,21.40746],[86.97928,21.40976],[86.98874,21.41439],[86.99488,21.42109],[86.99773,21.42094],[87.02837,21.44214],[87.05225,21.46127],[87.05556,21.46523],[87.05631,21.46896],[87.07435,21.4714],[87.09754,21.49309],[87.10787,21.5],[87.11371,21.50698],[87.11523,21.51344],[87.1185,21.5171],[87.12199,21.51322],[87.13087,21.51272],[87.16055,21.52947],[87.18687,21.53932],[87.1963,21.54126],[87.19963,21.54474],[87.19948,21.54656],[87.20339,21.54758],[87.204,21.54562],[87.20614,21.54528],[87.24146,21.55175],[87.24265,21.55396],[87.25,21.55678],[87.25171,21.55523],[87.29427,21.55744],[87.3386,21.55652],[87.36188,21.55776],[87.37199,21.56078],[87.4068,21.58271],[87.4084,21.58489],[87.40758,21.58866],[87.43608,21.59713],[87.44772,21.60312],[87.45054,21.60224],[87.48481,21.61246],[87.48453,21.62496],[87.48601,21.63224],[87.48061,21.63321],[87.48118,21.63602],[87.47517,21.64399],[87.47647,21.64693],[87.47196,21.64806],[87.47256,21.65247],[87.46126,21.65037],[87.46037,21.6514],[87.4605,21.65544],[87.46248,21.65844],[87.46128,21.66264],[87.4672,21.66413],[87.46673,21.67857],[87.46945,21.67873],[87.46861,21.68309],[87.47111,21.68389],[87.47084,21.68858],[87.46959,21.68935],[87.47198,21.69065],[87.47123,21.69618],[87.47363,21.69711],[87.4722,21.69815],[87.47307,21.69914],[87.47149,21.69869],[87.47194,21.70244],[87.47018,21.70533],[87.4724,21.70734],[87.47359,21.71457],[87.47123,21.71741],[87.46741,21.71868],[87.46346,21.72538],[87.46386,21.72832],[87.46709,21.72757],[87.46918,21.73252],[87.44478,21.73403],[87.44529,21.7387],[87.45319,21.7378],[87.45432,21.73909],[87.44978,21.74328],[87.44543,21.74379],[87.44724,21.74621],[87.44523,21.74768],[87.44415,21.75649],[87.44555,21.76816],[87.43539,21.77067],[87.4315,21.76931],[87.42459,21.77158],[87.41919,21.76949],[87.40413,21.77148],[87.40119,21.76743],[87.39775,21.76658],[87.39553,21.76713],[87.39542,21.77094],[87.39148,21.77096],[87.39128,21.77241],[87.39397,21.7726],[87.39343,21.77621],[87.38506,21.77677],[87.38085,21.77544],[87.37854,21.77277],[87.37401,21.77281],[87.37388,21.76511],[87.36966,21.76543],[87.37302,21.77371],[87.37183,21.77876],[87.3594,21.78259],[87.35915,21.78548],[87.35566,21.78639],[87.35682,21.78945],[87.35552,21.79217],[87.34732,21.79296],[87.33857,21.78476],[87.33603,21.79354],[87.33181,21.79382],[87.32954,21.79057],[87.32544,21.79202],[87.31946,21.79072],[87.31894,21.79462],[87.32164,21.79767],[87.31653,21.79632],[87.31518,21.79392],[87.314,21.79555],[87.31066,21.79385],[87.30963,21.79892],[87.29838,21.80121],[87.29808,21.80487],[87.29589,21.80529],[87.29698,21.81155],[87.29059,21.81132],[87.28869,21.80559],[87.28414,21.80279],[87.28272,21.80276],[87.28285,21.80449],[87.27738,21.80501],[87.27376,21.81029],[87.27601,21.81117],[87.27519,21.81697],[87.2639,21.81858],[87.2642,21.82325],[87.26906,21.82343],[87.27088,21.82706],[87.26852,21.82949],[87.26501,21.83007],[87.26409,21.83562],[87.26542,21.83868],[87.26088,21.84074],[87.25849,21.84408],[87.25954,21.84921],[87.24903,21.85323],[87.2478,21.8609],[87.2514,21.86886],[87.25232,21.87711],[87.24225,21.89247],[87.23426,21.90105],[87.23698,21.9078],[87.2492,21.91515],[87.24977,21.91835],[87.24511,21.92541],[87.24948,21.93598],[87.23903,21.94097],[87.23146,21.95728],[87.22397,21.95684],[87.22279,21.95871],[87.21679,21.96027],[87.21409,21.96357],[87.2106,21.96436],[87.20868,21.96208],[87.20309,21.9629],[87.1995,21.95979],[87.19681,21.95955],[87.17763,21.96964],[87.17228,21.97847]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"347","area_level":"District","area_name":"Baragada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.58111,21.73901],[83.56305,21.74439],[83.5572,21.74324],[83.55106,21.73839],[83.53983,21.72059],[83.53375,21.68929],[83.52764,21.67722],[83.51638,21.66407],[83.50387,21.65366],[83.4895,21.64723],[83.48661,21.64413],[83.48714,21.6399],[83.49193,21.63818],[83.48877,21.63031],[83.47356,21.63249],[83.47349,21.62737],[83.46986,21.62154],[83.46596,21.60924],[83.4606,21.6078],[83.45544,21.61044],[83.45506,21.61241],[83.45227,21.61287],[83.45247,21.62241],[83.44397,21.624],[83.44463,21.63043],[83.44292,21.63142],[83.44438,21.63929],[83.45076,21.65075],[83.44265,21.65541],[83.42884,21.64723],[83.42757,21.64352],[83.41504,21.6408],[83.40907,21.6372],[83.40347,21.63094],[83.39559,21.62709],[83.39246,21.62729],[83.38943,21.61769],[83.38268,21.62013],[83.38304,21.61426],[83.38014,21.60813],[83.36966,21.60051],[83.37051,21.59126],[83.36774,21.59172],[83.36893,21.58898],[83.36694,21.58666],[83.36895,21.585],[83.36498,21.57589],[83.36775,21.57209],[83.36748,21.56874],[83.36989,21.56806],[83.3693,21.56668],[83.37186,21.56442],[83.37033,21.55875],[83.37187,21.5596],[83.37316,21.55816],[83.36978,21.55646],[83.36999,21.55252],[83.36598,21.55081],[83.36766,21.54932],[83.3662,21.54663],[83.36451,21.54704],[83.36427,21.545],[83.36014,21.54285],[83.3614,21.53916],[83.35866,21.53824],[83.35709,21.52808],[83.35204,21.52115],[83.34962,21.51265],[83.34304,21.50965],[83.33784,21.5013],[83.34132,21.4942],[83.34706,21.48898],[83.34574,21.47962],[83.34655,21.4716],[83.35147,21.46003],[83.35437,21.44807],[83.36686,21.44555],[83.37362,21.44239],[83.37124,21.43551],[83.37428,21.43498],[83.37587,21.42806],[83.37815,21.42683],[83.38529,21.41537],[83.39346,21.40771],[83.39893,21.40534],[83.3972,21.38803],[83.40051,21.37588],[83.39687,21.36756],[83.40062,21.36391],[83.40802,21.36137],[83.40688,21.35163],[83.39183,21.34264],[83.38549,21.3463],[83.37888,21.34455],[83.36977,21.34671],[83.36686,21.34936],[83.35461,21.35429],[83.34772,21.35375],[83.34718,21.35629],[83.34385,21.35836],[83.32297,21.3624],[83.31137,21.37084],[83.28606,21.37761],[83.28405,21.38033],[83.26873,21.37859],[83.27424,21.37729],[83.27469,21.36383],[83.26868,21.34549],[83.2578,21.33555],[83.25769,21.3336],[83.26653,21.33086],[83.26283,21.33027],[83.25734,21.3205],[83.26208,21.30783],[83.26883,21.30507],[83.27205,21.30188],[83.27629,21.3023],[83.27927,21.29496],[83.27859,21.28932],[83.27491,21.28581],[83.27095,21.27257],[83.26777,21.27756],[83.25583,21.28212],[83.25059,21.28238],[83.24627,21.28116],[83.23933,21.27363],[83.23796,21.26961],[83.23191,21.27272],[83.22295,21.26577],[83.22167,21.26007],[83.21765,21.25485],[83.22215,21.22872],[83.2189,21.22861],[83.21758,21.22597],[83.21857,21.22089],[83.21706,21.21331],[83.21275,21.2102],[83.21053,21.20504],[83.21462,21.19479],[83.20933,21.18945],[83.20511,21.17943],[83.20284,21.17764],[83.20462,21.1657],[83.19852,21.16426],[83.19836,21.15346],[83.19656,21.15143],[83.1981,21.14544],[83.19198,21.13902],[83.17769,21.13511],[83.17425,21.13673],[83.17104,21.13617],[83.16691,21.13879],[83.16464,21.13523],[83.15733,21.13107],[83.14743,21.11856],[83.13893,21.11333],[83.14065,21.11234],[83.13867,21.10951],[83.13149,21.10581],[83.1241,21.1067],[83.1216,21.1099],[83.11354,21.11266],[83.10128,21.10999],[83.09709,21.11016],[83.09442,21.11328],[83.09011,21.11113],[83.0849,21.11295],[83.07781,21.11195],[83.07725,21.11407],[83.075,21.11365],[83.06851,21.11685],[83.06611,21.12076],[83.05603,21.12231],[83.05233,21.12627],[83.04525,21.12401],[83.03865,21.13173],[83.03383,21.13193],[83.03482,21.13663],[83.03338,21.1373],[83.02891,21.13513],[83.02304,21.13656],[83.0203,21.14346],[83.016,21.14631],[83.01005,21.14474],[83.01013,21.14257],[83.00458,21.13696],[83.00155,21.13687],[82.99936,21.13891],[82.99545,21.13853],[82.99373,21.14084],[82.99032,21.13986],[82.98576,21.15104],[82.9924,21.15856],[82.99332,21.16189],[83.00376,21.16693],[83.00135,21.17057],[82.99652,21.16968],[82.99319,21.17111],[82.98607,21.16811],[82.98056,21.17003],[82.99,21.18183],[82.98809,21.18281],[82.98325,21.18006],[82.97787,21.18258],[82.97534,21.18215],[82.97001,21.17886],[82.96739,21.17484],[82.96556,21.17533],[82.96743,21.18307],[82.96493,21.19327],[82.96099,21.19266],[82.95916,21.18888],[82.94903,21.1839],[82.94384,21.17785],[82.94682,21.1755],[82.94286,21.17164],[82.94757,21.16453],[82.94768,21.16178],[82.93998,21.16093],[82.93996,21.16635],[82.9377,21.16985],[82.93497,21.16833],[82.93387,21.16399],[82.93225,21.16308],[82.92094,21.16347],[82.91498,21.16196],[82.91022,21.1652],[82.90211,21.16699],[82.89548,21.16098],[82.89393,21.15637],[82.88218,21.14843],[82.87818,21.15345],[82.87852,21.15858],[82.87636,21.16355],[82.87255,21.16238],[82.8717,21.15748],[82.86643,21.16282],[82.85959,21.15977],[82.8556,21.16147],[82.85246,21.15954],[82.8501,21.16161],[82.85088,21.16863],[82.8471,21.16653],[82.84276,21.16772],[82.83126,21.16467],[82.82802,21.16544],[82.826,21.16368],[82.81197,21.16107],[82.80502,21.15592],[82.80032,21.15595],[82.79622,21.15065],[82.79666,21.14865],[82.79368,21.14255],[82.78564,21.14487],[82.78077,21.14967],[82.7794,21.15358],[82.77435,21.15413],[82.76713,21.15901],[82.76782,21.16056],[82.76504,21.16173],[82.76581,21.16278],[82.76334,21.16409],[82.76298,21.16262],[82.7601,21.1652],[82.7575,21.16355],[82.75591,21.16643],[82.75001,21.16411],[82.74057,21.16347],[82.73683,21.16533],[82.72115,21.16585],[82.72119,21.15767],[82.71067,21.16085],[82.70526,21.15808],[82.69983,21.1577],[82.69573,21.16053],[82.69708,21.1642],[82.693,21.16574],[82.68554,21.16497],[82.68415,21.16106],[82.66405,21.155],[82.65549,21.15714],[82.64056,21.15482],[82.63722,21.15073],[82.63727,21.14474],[82.64395,21.13487],[82.65198,21.13325],[82.65276,21.12871],[82.64057,21.11822],[82.63974,21.11574],[82.64154,21.11179],[82.64845,21.10956],[82.64991,21.10647],[82.64751,21.10187],[82.63564,21.0906],[82.63723,21.09081],[82.63865,21.08789],[82.63971,21.08926],[82.64138,21.08381],[82.64688,21.07975],[82.6544,21.07908],[82.65768,21.07719],[82.66924,21.06504],[82.67635,21.04852],[82.6797,21.03454],[82.69237,21.02167],[82.68951,21.0174],[82.68922,20.992],[82.68717,20.97331],[82.69715,20.94875],[82.69644,20.94487],[82.69855,20.93761],[82.69373,20.92422],[82.69246,20.89998],[82.68618,20.89105],[82.68095,20.88734],[82.68089,20.88538],[82.68267,20.87162],[82.68176,20.86953],[82.68473,20.86554],[82.68661,20.85502],[82.685,20.84457],[82.68723,20.83073],[82.68421,20.82611],[82.68312,20.81379],[82.68442,20.80677],[82.68782,20.80115],[82.68971,20.77442],[82.69473,20.77048],[82.69765,20.76137],[82.69677,20.75432],[82.69196,20.75038],[82.69006,20.74527],[82.68616,20.74361],[82.68485,20.74013],[82.68535,20.73303],[82.70462,20.72762],[82.71041,20.72852],[82.71428,20.72569],[82.71922,20.72628],[82.72089,20.72419],[82.72551,20.72394],[82.72759,20.72231],[82.73354,20.72253],[82.73545,20.72674],[82.73512,20.73297],[82.73937,20.75075],[82.74497,20.76011],[82.74546,20.77056],[82.75337,20.7708],[82.76547,20.78661],[82.77058,20.79802],[82.77079,20.80229],[82.78018,20.81128],[82.78378,20.81751],[82.79262,20.8236],[82.80094,20.8349],[82.80713,20.83575],[82.84068,20.86804],[82.85848,20.87645],[82.85876,20.87984],[82.87328,20.89133],[82.87535,20.89473],[82.87969,20.89661],[82.88432,20.90641],[82.88798,20.9091],[82.89046,20.90342],[82.89974,20.90441],[82.90274,20.90361],[82.90331,20.90081],[82.91265,20.90308],[82.91668,20.90086],[82.91885,20.89776],[82.92547,20.89452],[82.92561,20.88289],[82.94213,20.88409],[82.95305,20.89597],[82.9595,20.89582],[82.96694,20.89311],[82.96284,20.88549],[82.96425,20.87897],[82.97282,20.88456],[82.97426,20.8817],[82.97302,20.87684],[82.97698,20.86944],[82.98132,20.86588],[82.98049,20.8624],[82.98163,20.86061],[82.97951,20.8559],[82.98038,20.84568],[82.98258,20.84709],[83.00246,20.84881],[83.00829,20.85753],[83.01443,20.86173],[83.01824,20.85659],[83.0314,20.85425],[83.04736,20.8545],[83.05029,20.85663],[83.05568,20.85749],[83.08672,20.8577],[83.09218,20.86311],[83.09427,20.86808],[83.10237,20.87469],[83.10766,20.8699],[83.11478,20.8666],[83.11607,20.8632],[83.12926,20.85889],[83.14086,20.87775],[83.14454,20.88092],[83.16544,20.88393],[83.16779,20.88753],[83.17835,20.89003],[83.18829,20.89743],[83.19146,20.89606],[83.20764,20.91325],[83.21081,20.91749],[83.21033,20.91942],[83.21766,20.92139],[83.21931,20.92674],[83.21582,20.9287],[83.21652,20.93037],[83.22587,20.92763],[83.23325,20.92802],[83.25031,20.9177],[83.24896,20.91188],[83.25167,20.90998],[83.25418,20.90297],[83.25126,20.89839],[83.25433,20.89853],[83.25576,20.89416],[83.25917,20.89187],[83.25939,20.88871],[83.26214,20.888],[83.26809,20.88047],[83.26929,20.88103],[83.27602,20.86938],[83.2716,20.86881],[83.2764,20.86057],[83.27745,20.85683],[83.27581,20.84736],[83.27933,20.84187],[83.28401,20.84592],[83.28483,20.8486],[83.28348,20.85092],[83.28471,20.85329],[83.29827,20.85492],[83.30212,20.85256],[83.30706,20.85939],[83.31216,20.85757],[83.31515,20.86102],[83.31713,20.8612],[83.32118,20.86556],[83.32222,20.87128],[83.3287,20.87399],[83.32787,20.87977],[83.32892,20.88096],[83.3384,20.88319],[83.34926,20.87445],[83.36413,20.87773],[83.37308,20.88319],[83.38155,20.88587],[83.39094,20.8864],[83.39686,20.88992],[83.40356,20.89031],[83.41383,20.89636],[83.41559,20.90034],[83.41454,20.90845],[83.40801,20.91612],[83.39738,20.92014],[83.39217,20.92446],[83.39115,20.93246],[83.38673,20.93768],[83.38074,20.93768],[83.37991,20.94015],[83.38092,20.94737],[83.38407,20.94955],[83.38309,20.95075],[83.38497,20.95259],[83.3796,20.95509],[83.38073,20.95691],[83.38508,20.95769],[83.39051,20.96442],[83.38938,20.97118],[83.38406,20.97253],[83.3856,20.98052],[83.38402,20.98207],[83.38732,20.9863],[83.3865,20.98897],[83.37229,20.99296],[83.37287,21.00064],[83.37131,21.00177],[83.36091,21.00339],[83.35001,20.99867],[83.34248,20.98643],[83.33263,20.98066],[83.3291,20.98488],[83.32671,20.99486],[83.32142,20.99823],[83.3066,21.00192],[83.29571,21.01365],[83.29966,21.01764],[83.29765,21.0201],[83.29959,21.02464],[83.30228,21.02536],[83.30697,21.03143],[83.31061,21.033],[83.31732,21.04115],[83.31758,21.04713],[83.32172,21.05617],[83.33043,21.05511],[83.33449,21.0584],[83.34104,21.05755],[83.35093,21.06385],[83.35237,21.06641],[83.35195,21.07115],[83.35585,21.06891],[83.36226,21.06925],[83.36828,21.06416],[83.37709,21.06159],[83.38543,21.06922],[83.39125,21.07108],[83.39315,21.0681],[83.40339,21.06224],[83.40535,21.05725],[83.40411,21.05026],[83.40977,21.0398],[83.41395,21.03967],[83.41396,21.03653],[83.421,21.03397],[83.4236,21.03126],[83.43114,21.0334],[83.43709,21.04211],[83.43689,21.04629],[83.45627,21.05336],[83.45755,21.05997],[83.46146,21.06181],[83.47287,21.05663],[83.47415,21.05268],[83.48112,21.05092],[83.4879,21.04155],[83.49392,21.0407],[83.49692,21.04247],[83.49707,21.0448],[83.49306,21.05291],[83.49187,21.0621],[83.50188,21.06487],[83.50428,21.06464],[83.50776,21.06135],[83.51255,21.06185],[83.51632,21.06562],[83.52371,21.06603],[83.52668,21.07033],[83.52955,21.07169],[83.53916,21.07204],[83.54382,21.07574],[83.54822,21.07687],[83.55721,21.08432],[83.57921,21.09727],[83.58389,21.1026],[83.58859,21.10376],[83.59484,21.1079],[83.60178,21.11815],[83.60434,21.12838],[83.60743,21.12965],[83.61263,21.12782],[83.61405,21.12893],[83.62359,21.12757],[83.63124,21.12906],[83.63717,21.12775],[83.6428,21.1306],[83.64826,21.13072],[83.6573,21.12801],[83.66171,21.12845],[83.66843,21.12562],[83.67585,21.12611],[83.68033,21.12354],[83.68209,21.12108],[83.6819,21.11805],[83.68528,21.11622],[83.69464,21.11779],[83.70382,21.12178],[83.71051,21.12165],[83.71267,21.1193],[83.71942,21.12365],[83.72025,21.12272],[83.72262,21.12406],[83.7225,21.12775],[83.72411,21.12691],[83.72628,21.12847],[83.72748,21.13144],[83.73725,21.1313],[83.73968,21.13572],[83.74644,21.13951],[83.75143,21.13895],[83.7619,21.14285],[83.76814,21.15497],[83.77898,21.15396],[83.78411,21.15162],[83.78665,21.14588],[83.78465,21.13753],[83.78561,21.13335],[83.79957,21.11379],[83.81248,21.10977],[83.82193,21.10203],[83.8342,21.0989],[83.83976,21.09366],[83.84627,21.09944],[83.85648,21.11594],[83.86112,21.13391],[83.87118,21.15639],[83.88444,21.17545],[83.89063,21.17648],[83.89567,21.18638],[83.91268,21.23369],[83.91188,21.24561],[83.90714,21.25758],[83.89748,21.26518],[83.88851,21.28202],[83.89023,21.29485],[83.88615,21.29697],[83.88373,21.29372],[83.87805,21.29263],[83.87582,21.29365],[83.87529,21.29934],[83.87205,21.30488],[83.873,21.30938],[83.8697,21.31047],[83.87626,21.32486],[83.87546,21.3295],[83.87673,21.33366],[83.87493,21.33833],[83.88032,21.34996],[83.87846,21.35883],[83.88119,21.36293],[83.87766,21.37301],[83.87941,21.37745],[83.87784,21.38345],[83.87909,21.38809],[83.87503,21.39008],[83.87278,21.39473],[83.86833,21.39766],[83.85975,21.39926],[83.85117,21.40315],[83.84975,21.40952],[83.84577,21.41413],[83.84816,21.42056],[83.8587,21.42365],[83.86462,21.42149],[83.87021,21.42428],[83.87403,21.42371],[83.8788,21.42566],[83.88094,21.42713],[83.88111,21.42983],[83.87894,21.42989],[83.87891,21.43128],[83.8817,21.4328],[83.88501,21.43807],[83.87236,21.45737],[83.87296,21.46175],[83.86919,21.47827],[83.8619,21.48867],[83.86267,21.49233],[83.85631,21.50678],[83.84686,21.52139],[83.84521,21.52743],[83.81514,21.53636],[83.79897,21.56393],[83.77652,21.58343],[83.77251,21.59099],[83.7659,21.59784],[83.75095,21.60591],[83.74103,21.61832],[83.72978,21.62605],[83.71969,21.64838],[83.71333,21.65723],[83.70196,21.68818],[83.69529,21.69947],[83.67827,21.71007],[83.66455,21.71075],[83.65346,21.72094],[83.64828,21.72329],[83.6369,21.72672],[83.60409,21.73102],[83.59039,21.73827],[83.58111,21.73901]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"348","area_level":"District","area_name":"Bhadrak","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[87.05714,20.73021],[87.05756,20.73051],[87.05785,20.73096],[87.0579,20.73122],[87.05778,20.73156],[87.05745,20.73216],[87.05732,20.73221],[87.05693,20.73256],[87.05652,20.73279],[87.05631,20.73286],[87.05595,20.73281],[87.05586,20.73266],[87.05584,20.73246],[87.05587,20.73232],[87.0565,20.73209],[87.05673,20.73195],[87.05688,20.73178],[87.05695,20.73145],[87.05688,20.73095],[87.05674,20.7307],[87.05639,20.73046],[87.05584,20.73023],[87.05491,20.7302],[87.05434,20.73034],[87.0537,20.73043],[87.05348,20.73049],[87.0533,20.73041],[87.05325,20.73022],[87.05346,20.72984],[87.05372,20.72959],[87.05421,20.72959],[87.05574,20.72974],[87.05616,20.72974],[87.05678,20.72992],[87.05714,20.73021]]],[[[87.05184,20.73785],[87.05154,20.73806],[87.05135,20.7383],[87.05104,20.73841],[87.05096,20.73821],[87.05074,20.73794],[87.05083,20.73761],[87.05108,20.7373],[87.05158,20.73689],[87.05206,20.73682],[87.05257,20.73684],[87.05313,20.73709],[87.05252,20.73761],[87.05221,20.73763],[87.0521,20.73756],[87.05184,20.73785]]],[[[87.07416,20.73202],[87.0754,20.73328],[87.07581,20.73396],[87.07634,20.73426],[87.07625,20.73539],[87.07598,20.73597],[87.07609,20.73654],[87.07663,20.73784],[87.07738,20.73882],[87.078,20.73929],[87.07791,20.73994],[87.07796,20.74063],[87.0778,20.74181],[87.07796,20.74261],[87.07783,20.74321],[87.07789,20.74393],[87.07713,20.74396],[87.07652,20.74369],[87.07679,20.74347],[87.0759,20.74192],[87.07708,20.74095],[87.07732,20.74063],[87.07756,20.74002],[87.0774,20.7398],[87.07646,20.73929],[87.07609,20.73897],[87.07598,20.7383],[87.07526,20.73621],[87.07537,20.73578],[87.07469,20.73507],[87.07457,20.73448],[87.07382,20.73356],[87.07209,20.73198],[87.07169,20.73232],[87.07126,20.73235],[87.07117,20.73288],[87.07048,20.73369],[87.06995,20.73387],[87.06955,20.73347],[87.06977,20.73291],[87.07009,20.73271],[87.0702,20.73226],[87.07055,20.7319],[87.07111,20.73158],[87.07145,20.73084],[87.07199,20.73056],[87.07244,20.72869],[87.07351,20.72746],[87.07382,20.72778],[87.0729,20.72933],[87.07277,20.7303],[87.07345,20.73127],[87.07416,20.73202]]],[[[87.05714,20.74542],[87.05482,20.7455],[87.05311,20.74527],[87.05191,20.74527],[87.05112,20.74504],[87.05007,20.7446],[87.04938,20.74403],[87.04965,20.74357],[87.04999,20.74331],[87.05106,20.74354],[87.05188,20.74365],[87.05259,20.74374],[87.05323,20.74374],[87.05467,20.74394],[87.05534,20.74409],[87.05582,20.74435],[87.05793,20.74464],[87.05919,20.74432],[87.05965,20.74386],[87.05934,20.74446],[87.05885,20.74492],[87.05824,20.74521],[87.0576,20.74527],[87.05714,20.74542]]],[[[87.07109,20.73668],[87.07061,20.73722],[87.07035,20.73772],[87.0703,20.73838],[87.07046,20.73898],[87.07106,20.74013],[87.07175,20.74266],[87.07167,20.74376],[87.0717,20.74447],[87.07193,20.74691],[87.07226,20.74784],[87.07246,20.74875],[87.07226,20.74899],[87.07181,20.74895],[87.07104,20.74689],[87.07106,20.74556],[87.07045,20.74251],[87.07035,20.74035],[87.07022,20.73949],[87.07001,20.73891],[87.06971,20.73838],[87.06933,20.73792],[87.06878,20.73763],[87.07066,20.73644],[87.07096,20.73634],[87.07109,20.73668]]],[[[87.09767,20.7482],[87.09726,20.74839],[87.09701,20.74839],[87.0969,20.74832],[87.09683,20.74824],[87.09676,20.74808],[87.09678,20.74794],[87.09689,20.74778],[87.09706,20.74763],[87.09732,20.74753],[87.09788,20.74741],[87.0981,20.7474],[87.09832,20.74747],[87.09841,20.74761],[87.09844,20.74776],[87.09844,20.74792],[87.09842,20.74804],[87.09832,20.74813],[87.09812,20.74817],[87.09791,20.74817],[87.09767,20.7482]]],[[[87.10036,20.74892],[87.1005,20.74931],[87.10056,20.74966],[87.10075,20.75],[87.10112,20.75027],[87.10157,20.75053],[87.10202,20.75068],[87.10191,20.75103],[87.10168,20.75151],[87.10151,20.75145],[87.10092,20.75116],[87.1005,20.75093],[87.10011,20.75079],[87.09969,20.75051],[87.09941,20.75003],[87.09935,20.74961],[87.09938,20.74939],[87.09958,20.749],[87.09983,20.74878],[87.10011,20.74876],[87.10036,20.74892]]],[[[87.08638,20.76383],[87.0859,20.76453],[87.08502,20.76462],[87.08434,20.7643],[87.08372,20.76349],[87.08328,20.76321],[87.08306,20.76327],[87.08292,20.76382],[87.08238,20.76391],[87.08154,20.76278],[87.07989,20.76154],[87.07973,20.76126],[87.0797,20.76098],[87.08062,20.7593],[87.08044,20.75876],[87.07976,20.75846],[87.0792,20.7578],[87.07818,20.75776],[87.0778,20.75722],[87.0768,20.75684],[87.07505,20.75652],[87.07333,20.75594],[87.07285,20.75562],[87.0725,20.75477],[87.07268,20.7541],[87.07308,20.7535],[87.07416,20.75265],[87.07504,20.75266],[87.07778,20.75338],[87.0801,20.75374],[87.08273,20.75394],[87.0838,20.75379],[87.08437,20.75387],[87.08569,20.75354],[87.08651,20.75353],[87.08779,20.75375],[87.08923,20.75349],[87.09091,20.75345],[87.09201,20.75304],[87.09348,20.753],[87.09422,20.75328],[87.09479,20.75419],[87.09522,20.7546],[87.09566,20.75473],[87.09714,20.75474],[87.09752,20.75492],[87.09716,20.75544],[87.09441,20.75646],[87.09289,20.75682],[87.09165,20.75774],[87.08837,20.7606],[87.08726,20.763],[87.08638,20.76383]]],[[[87.07358,20.79111],[87.07122,20.79309],[87.06999,20.79373],[87.06927,20.79386],[87.06878,20.7935],[87.06948,20.79168],[87.06985,20.79116],[87.07071,20.79076],[87.07179,20.79093],[87.07215,20.79056],[87.07208,20.79033],[87.0718,20.79017],[87.07058,20.79027],[87.06948,20.78905],[87.06944,20.78846],[87.06986,20.78839],[87.07034,20.78884],[87.07053,20.78866],[87.07072,20.7887],[87.07083,20.78905],[87.0711,20.7893],[87.07177,20.78939],[87.07317,20.78901],[87.07407,20.7875],[87.07437,20.78251],[87.07475,20.77913],[87.07463,20.77674],[87.07487,20.77543],[87.07418,20.7738],[87.07388,20.77272],[87.07383,20.77094],[87.07295,20.77042],[87.07391,20.7694],[87.0742,20.76794],[87.07478,20.7674],[87.07589,20.77059],[87.07601,20.77202],[87.07542,20.77371],[87.07534,20.77995],[87.07511,20.78329],[87.07475,20.7848],[87.07485,20.78645],[87.07475,20.78902],[87.07436,20.7904],[87.07358,20.79111]]],[[[86.99013,20.80243],[86.99006,20.80298],[86.98985,20.80334],[86.98954,20.80369],[86.98921,20.80388],[86.98777,20.80396],[86.98714,20.80379],[86.98657,20.80344],[86.98611,20.80298],[86.98605,20.80262],[86.98612,20.80231],[86.98658,20.80199],[86.9871,20.80202],[86.98808,20.80221],[86.98851,20.80224],[86.98899,20.80217],[86.98943,20.80198],[86.9898,20.80192],[86.99006,20.80204],[86.99013,20.80243]]],[[[86.80381,21.22618],[86.80219,21.23079],[86.79885,21.22424],[86.79287,21.22618],[86.79066,21.22219],[86.78788,21.22668],[86.78523,21.22342],[86.78529,21.21997],[86.78193,21.22342],[86.77753,21.22162],[86.77596,21.22424],[86.77225,21.22407],[86.77062,21.22594],[86.76898,21.22493],[86.77038,21.21348],[86.76614,21.20404],[86.76073,21.19766],[86.75756,21.19662],[86.76317,21.19215],[86.7603,21.18614],[86.76426,21.18237],[86.77025,21.18161],[86.7703,21.17924],[86.77359,21.17647],[86.77362,21.17487],[86.76665,21.1701],[86.75762,21.17567],[86.75238,21.17626],[86.7429,21.18152],[86.7399,21.18047],[86.73686,21.18229],[86.72983,21.17702],[86.70513,21.18385],[86.69917,21.18332],[86.69074,21.16702],[86.68927,21.16654],[86.68445,21.16987],[86.67256,21.16965],[86.66421,21.1584],[86.66226,21.15098],[86.66777,21.14844],[86.66743,21.14483],[86.6547,21.12847],[86.66057,21.1243],[86.65423,21.11421],[86.6527,21.10131],[86.66547,21.09785],[86.66495,21.09463],[86.66178,21.08412],[86.64913,21.0876],[86.64444,21.08107],[86.64221,21.08062],[86.64748,21.07728],[86.64667,21.0748],[86.64878,21.07328],[86.6464,21.0684],[86.6483,21.06766],[86.64881,21.0638],[86.64489,21.06237],[86.63472,21.06453],[86.62539,21.07234],[86.62476,21.07427],[86.63093,21.08625],[86.63062,21.09296],[86.62997,21.09144],[86.62855,21.09373],[86.62467,21.09314],[86.62441,21.09535],[86.62224,21.09471],[86.62194,21.09687],[86.6196,21.0964],[86.61609,21.09973],[86.615,21.09857],[86.61385,21.0998],[86.60516,21.09953],[86.60479,21.09796],[86.59815,21.09951],[86.59423,21.09678],[86.58801,21.1],[86.59014,21.10906],[86.58533,21.11554],[86.58535,21.11793],[86.57883,21.11776],[86.58096,21.12391],[86.57255,21.12868],[86.5743,21.13101],[86.56087,21.14474],[86.56279,21.14994],[86.56136,21.15716],[86.55912,21.15736],[86.55927,21.1592],[86.53526,21.16041],[86.53336,21.15727],[86.52971,21.15927],[86.52451,21.1502],[86.51795,21.14514],[86.51124,21.13653],[86.49614,21.14285],[86.48237,21.15249],[86.48012,21.15032],[86.45488,21.16277],[86.44992,21.15425],[86.44773,21.15428],[86.44669,21.15636],[86.42833,21.16241],[86.43915,21.16891],[86.44064,21.17237],[86.43937,21.17617],[86.44019,21.17991],[86.43776,21.18073],[86.43239,21.17584],[86.42697,21.17801],[86.42595,21.18077],[86.43094,21.18377],[86.43918,21.19324],[86.44246,21.19181],[86.44599,21.19547],[86.44341,21.20205],[86.43621,21.20491],[86.43869,21.20933],[86.43534,21.21054],[86.43594,21.21671],[86.43276,21.21884],[86.43303,21.22027],[86.42156,21.22263],[86.41773,21.21046],[86.42115,21.20736],[86.41874,21.20347],[86.41752,21.20725],[86.41216,21.20907],[86.40703,21.2197],[86.39297,21.22007],[86.37539,21.2235],[86.36602,21.23695],[86.35209,21.2374],[86.35068,21.23176],[86.35338,21.22293],[86.35195,21.21306],[86.35331,21.21111],[86.34761,21.19459],[86.34806,21.19185],[86.34064,21.18948],[86.34161,21.18652],[86.33852,21.17926],[86.33014,21.18033],[86.32315,21.17599],[86.32547,21.17928],[86.3205,21.18107],[86.31931,21.17924],[86.32044,21.17634],[86.31118,21.169],[86.30525,21.1694],[86.30603,21.17326],[86.30129,21.17517],[86.29173,21.17554],[86.29056,21.17141],[86.28682,21.17059],[86.28238,21.16595],[86.28337,21.16259],[86.27434,21.15306],[86.27172,21.14734],[86.27318,21.14607],[86.27068,21.14022],[86.27427,21.13835],[86.2792,21.13924],[86.28353,21.13667],[86.29129,21.1262],[86.29061,21.12168],[86.28705,21.12039],[86.28854,21.11904],[86.29077,21.11997],[86.29934,21.1181],[86.30837,21.11299],[86.30276,21.10456],[86.30466,21.10238],[86.30295,21.09986],[86.30722,21.09733],[86.30498,21.08802],[86.30762,21.08859],[86.3073,21.08585],[86.31022,21.08641],[86.31051,21.08337],[86.31492,21.0833],[86.31782,21.08128],[86.31668,21.07912],[86.31795,21.0773],[86.3162,21.076],[86.31867,21.07657],[86.31762,21.07416],[86.31955,21.07212],[86.31774,21.06995],[86.32167,21.06848],[86.32366,21.06417],[86.32229,21.06366],[86.32404,21.06296],[86.32461,21.06024],[86.32103,21.05493],[86.3133,21.06005],[86.31096,21.04506],[86.30861,21.04138],[86.30964,21.04017],[86.30253,21.02441],[86.30406,21.02437],[86.30395,21.01987],[86.3007,21.01948],[86.28621,21.02349],[86.28164,21.02236],[86.28651,21.01759],[86.28972,21.00978],[86.28835,20.99367],[86.28433,20.98425],[86.28556,20.97391],[86.28854,20.96691],[86.28878,20.95836],[86.28595,20.94135],[86.27761,20.92606],[86.27708,20.91736],[86.28175,20.90273],[86.29047,20.89905],[86.29842,20.90077],[86.31076,20.89533],[86.31247,20.88574],[86.31921,20.87745],[86.32576,20.87666],[86.33334,20.87818],[86.33509,20.87686],[86.33593,20.87229],[86.32768,20.86718],[86.32844,20.86202],[86.33515,20.86187],[86.34023,20.85723],[86.35287,20.85092],[86.35942,20.85188],[86.37035,20.86015],[86.37926,20.86147],[86.38625,20.86506],[86.3905,20.86504],[86.39958,20.86316],[86.40802,20.85761],[86.42163,20.85567],[86.42611,20.84691],[86.43597,20.8488],[86.44506,20.84428],[86.45224,20.84352],[86.45543,20.84451],[86.46019,20.84958],[86.46178,20.85638],[86.46809,20.86059],[86.47411,20.85872],[86.47941,20.86003],[86.48222,20.85549],[86.49441,20.86713],[86.4967,20.86777],[86.50195,20.86542],[86.51211,20.87046],[86.51535,20.86867],[86.51973,20.86946],[86.52383,20.86707],[86.5282,20.86765],[86.54361,20.86036],[86.56688,20.86434],[86.5763,20.86227],[86.58737,20.85622],[86.5939,20.85742],[86.59624,20.8511],[86.60086,20.84512],[86.60101,20.82992],[86.60934,20.82991],[86.61146,20.81802],[86.61554,20.81338],[86.61877,20.81421],[86.61788,20.81024],[86.62177,20.81035],[86.6233,20.8084],[86.62096,20.80439],[86.61429,20.80439],[86.61311,20.79867],[86.61441,20.79498],[86.61722,20.79455],[86.62746,20.79863],[86.63218,20.79186],[86.6341,20.79521],[86.63606,20.79475],[86.63687,20.79803],[86.63826,20.7971],[86.6391,20.79061],[86.64276,20.78845],[86.64592,20.79505],[86.65763,20.79673],[86.6615,20.79256],[86.66057,20.7872],[86.6685,20.79002],[86.67749,20.78999],[86.68051,20.78509],[86.69023,20.78307],[86.69687,20.77724],[86.70661,20.77647],[86.70811,20.77374],[86.70838,20.76141],[86.71016,20.75976],[86.72613,20.76357],[86.73141,20.77],[86.74574,20.77098],[86.75513,20.7694],[86.75996,20.76477],[86.76038,20.76004],[86.75844,20.75467],[86.75298,20.74727],[86.75277,20.7418],[86.75783,20.73559],[86.76273,20.73364],[86.76669,20.73394],[86.77387,20.73965],[86.78023,20.74134],[86.78581,20.73899],[86.79252,20.73184],[86.79817,20.75],[86.79629,20.75259],[86.80156,20.75678],[86.80668,20.75593],[86.81485,20.74845],[86.82164,20.74575],[86.82316,20.75],[86.82643,20.75142],[86.83312,20.76271],[86.84808,20.77051],[86.86141,20.77532],[86.86549,20.78119],[86.86368,20.78249],[86.87361,20.78763],[86.88661,20.78821],[86.9205,20.78112],[86.93813,20.78054],[86.95022,20.77639],[86.9535,20.77804],[86.96631,20.7889],[86.96879,20.79914],[86.97507,20.81325],[86.98134,20.84561],[86.98088,20.85705],[86.96677,20.873],[86.96216,20.88425],[86.93928,20.92076],[86.93209,20.93764],[86.91835,20.95949],[86.91006,20.97627],[86.89382,21.01334],[86.86874,21.04848],[86.84873,21.09301],[86.84182,21.12483],[86.84154,21.17508],[86.84476,21.18762],[86.85574,21.20404],[86.85481,21.21051],[86.84208,21.20419],[86.8326,21.20609],[86.82709,21.21088],[86.82624,21.21386],[86.8205,21.2138],[86.81972,21.2153],[86.82089,21.21595],[86.81671,21.21691],[86.81976,21.22018],[86.82481,21.21968],[86.82476,21.22098],[86.82102,21.22191],[86.81631,21.22067],[86.81655,21.22483],[86.80907,21.22452],[86.8086,21.22849],[86.80381,21.22618]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"349","area_level":"District","area_name":"Boudh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.35504,20.81375],[84.35542,20.81894],[84.35256,20.82792],[84.34119,20.84109],[84.33643,20.84237],[84.32141,20.85289],[84.30262,20.86129],[84.29401,20.86847],[84.27817,20.87431],[84.24799,20.8911],[84.23497,20.89514],[84.22516,20.8961],[84.21024,20.89503],[84.19206,20.8896],[84.16384,20.87198],[84.14792,20.86474],[84.12257,20.84586],[84.10671,20.8379],[84.0644,20.83019],[84.04095,20.82086],[84.03278,20.82206],[84.01641,20.83899],[84.00077,20.84207],[83.9601,20.83985],[83.9358,20.84215],[83.89736,20.8178],[83.87878,20.81554],[83.86278,20.81644],[83.84314,20.82579],[83.83281,20.82481],[83.8146,20.81102],[83.79538,20.80645],[83.78269,20.80048],[83.77565,20.79539],[83.76222,20.7804],[83.76066,20.77298],[83.76404,20.75736],[83.75953,20.7401],[83.75775,20.71723],[83.75405,20.71086],[83.74637,20.70718],[83.74312,20.70384],[83.74153,20.70017],[83.7411,20.68795],[83.73571,20.67306],[83.71547,20.63975],[83.7169,20.63468],[83.72672,20.6293],[83.7321,20.62277],[83.73237,20.61436],[83.73012,20.6088],[83.71591,20.59665],[83.70722,20.5821],[83.69514,20.57263],[83.68557,20.56014],[83.67274,20.55545],[83.65111,20.53985],[83.64409,20.53662],[83.63304,20.53541],[83.61584,20.52886],[83.58899,20.52621],[83.58168,20.52353],[83.57839,20.51833],[83.58036,20.50887],[83.57923,20.50206],[83.56954,20.48433],[83.57379,20.48085],[83.57977,20.48775],[83.58339,20.48774],[83.58699,20.48297],[83.59669,20.47642],[83.59668,20.46916],[83.60971,20.46573],[83.6176,20.45833],[83.61909,20.45313],[83.61723,20.44978],[83.61849,20.44682],[83.62706,20.44758],[83.63523,20.4407],[83.65636,20.43256],[83.65754,20.42599],[83.66072,20.42275],[83.66601,20.42287],[83.67099,20.42578],[83.67428,20.43016],[83.67726,20.42986],[83.67975,20.42772],[83.68124,20.42036],[83.68537,20.41525],[83.69202,20.4142],[83.69788,20.41705],[83.71491,20.43009],[83.71921,20.43523],[83.72805,20.43262],[83.72674,20.43015],[83.72773,20.42669],[83.7323,20.42527],[83.73459,20.42659],[83.73801,20.42219],[83.74151,20.42268],[83.74644,20.42077],[83.74615,20.42644],[83.75469,20.42611],[83.76436,20.41925],[83.76782,20.41326],[83.77685,20.41112],[83.78006,20.40728],[83.78298,20.41416],[83.78105,20.4263],[83.78481,20.43614],[83.78357,20.43949],[83.78569,20.44209],[83.79141,20.44101],[83.79294,20.43336],[83.80609,20.43143],[83.81454,20.43629],[83.81489,20.43795],[83.80747,20.44618],[83.81312,20.45505],[83.81974,20.45091],[83.82506,20.45056],[83.82816,20.45219],[83.81108,20.46291],[83.8108,20.47508],[83.80765,20.48584],[83.80615,20.48689],[83.80759,20.4896],[83.80632,20.49502],[83.80327,20.50127],[83.79563,20.50907],[83.80548,20.50892],[83.8134,20.52161],[83.81925,20.52213],[83.81963,20.52677],[83.82348,20.53125],[83.82462,20.53564],[83.82005,20.54009],[83.81962,20.54448],[83.8232,20.54916],[83.83214,20.54513],[83.84122,20.54525],[83.84923,20.55648],[83.85704,20.56315],[83.85522,20.57026],[83.85637,20.57234],[83.8736,20.5825],[83.88523,20.58031],[83.89643,20.58306],[83.91237,20.57952],[83.91046,20.59277],[83.9128,20.60224],[83.92134,20.61054],[83.93189,20.60615],[83.94061,20.6047],[83.92947,20.59623],[83.93149,20.58881],[83.93797,20.5842],[83.946,20.58182],[83.96548,20.58701],[83.97947,20.58604],[83.98404,20.58011],[83.99946,20.57043],[84.00487,20.56867],[84.01485,20.5682],[84.01884,20.57128],[84.03375,20.57646],[84.03299,20.57901],[84.03522,20.58175],[84.06015,20.58993],[84.06354,20.5889],[84.06992,20.59013],[84.07357,20.58693],[84.07817,20.58732],[84.08166,20.58447],[84.0849,20.58471],[84.09607,20.5904],[84.10464,20.59197],[84.11257,20.58258],[84.12133,20.58107],[84.13456,20.58267],[84.14133,20.57773],[84.14474,20.578],[84.15124,20.58033],[84.15233,20.58506],[84.16028,20.59202],[84.17117,20.59559],[84.17579,20.59928],[84.18559,20.58439],[84.20036,20.58525],[84.21147,20.58232],[84.21459,20.58333],[84.22515,20.58193],[84.23108,20.58494],[84.23183,20.58814],[84.2366,20.59324],[84.25662,20.60181],[84.25573,20.60297],[84.26365,20.61637],[84.26208,20.61998],[84.27182,20.63607],[84.28043,20.63547],[84.27947,20.64751],[84.27714,20.65129],[84.27705,20.65971],[84.27492,20.66189],[84.27319,20.66804],[84.27656,20.67251],[84.27944,20.67307],[84.28669,20.68042],[84.29608,20.6863],[84.31448,20.6897],[84.32628,20.68776],[84.33096,20.6831],[84.33903,20.67966],[84.33734,20.67276],[84.34582,20.66926],[84.35671,20.67118],[84.35637,20.66441],[84.36894,20.65079],[84.37256,20.64146],[84.36938,20.6346],[84.36977,20.63241],[84.3764,20.62188],[84.3797,20.60708],[84.3842,20.59819],[84.38094,20.59657],[84.37956,20.5884],[84.38531,20.57829],[84.39173,20.57966],[84.39403,20.57608],[84.39119,20.56666],[84.38427,20.56891],[84.38123,20.55868],[84.38927,20.5423],[84.38796,20.53054],[84.39515,20.52824],[84.40121,20.52828],[84.40683,20.52265],[84.41873,20.5196],[84.42443,20.51411],[84.43347,20.50887],[84.43452,20.49625],[84.42816,20.49108],[84.42493,20.48584],[84.43049,20.47908],[84.43905,20.47656],[84.44243,20.47028],[84.44811,20.46522],[84.45076,20.46434],[84.45515,20.46627],[84.4647,20.44594],[84.46496,20.43769],[84.46016,20.43265],[84.45849,20.42471],[84.46146,20.41921],[84.46085,20.4],[84.46769,20.38975],[84.48164,20.38427],[84.49293,20.3951],[84.50907,20.39489],[84.51367,20.4027],[84.51835,20.40543],[84.52208,20.40322],[84.53045,20.4104],[84.53963,20.41006],[84.54231,20.41867],[84.55515,20.41307],[84.56356,20.41134],[84.58982,20.42371],[84.59597,20.41975],[84.604,20.42006],[84.60891,20.42698],[84.61372,20.42802],[84.61815,20.43421],[84.62361,20.43057],[84.62911,20.43161],[84.63517,20.42567],[84.64665,20.42356],[84.6632,20.42451],[84.67189,20.42978],[84.67376,20.43394],[84.68071,20.43284],[84.68146,20.43747],[84.68953,20.44098],[84.68971,20.44392],[84.68629,20.44535],[84.68584,20.44819],[84.69116,20.45024],[84.68944,20.45331],[84.69007,20.4555],[84.6882,20.45891],[84.68053,20.46013],[84.68184,20.46284],[84.68645,20.46393],[84.68663,20.46727],[84.69251,20.47011],[84.6917,20.47391],[84.69523,20.48493],[84.6942,20.49119],[84.69816,20.49547],[84.69669,20.49775],[84.70399,20.50082],[84.71117,20.50664],[84.71026,20.51001],[84.71274,20.51387],[84.71121,20.52093],[84.71247,20.52381],[84.72465,20.52783],[84.7317,20.53233],[84.73221,20.53536],[84.73435,20.53587],[84.73483,20.53803],[84.74045,20.54097],[84.75472,20.53711],[84.76603,20.53179],[84.77315,20.53929],[84.77791,20.54917],[84.78447,20.5492],[84.78657,20.55078],[84.78732,20.55853],[84.7913,20.56094],[84.78917,20.57916],[84.7901,20.58127],[84.78644,20.58439],[84.77905,20.59705],[84.76179,20.60813],[84.74793,20.61042],[84.73497,20.61467],[84.72746,20.61549],[84.71282,20.61126],[84.70051,20.61145],[84.67793,20.61739],[84.65792,20.61838],[84.63898,20.62381],[84.62695,20.62915],[84.61227,20.63922],[84.59998,20.65137],[84.59204,20.66365],[84.58178,20.6746],[84.56013,20.68997],[84.55328,20.69242],[84.5338,20.69532],[84.51561,20.70238],[84.4985,20.71762],[84.48478,20.72254],[84.46281,20.73519],[84.45019,20.73885],[84.42004,20.7377],[84.3944,20.75],[84.37774,20.75383],[84.35996,20.76625],[84.34914,20.78122],[84.34956,20.78607],[84.35558,20.79304],[84.35314,20.80114],[84.35504,20.81375]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"35","area_level":"District","area_name":"Kapurthala","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[75.8019,31.3726],[75.80107,31.37393],[75.79473,31.37182],[75.79438,31.37009],[75.78768,31.36873],[75.78844,31.36241],[75.77173,31.35324],[75.76505,31.35214],[75.76421,31.3512],[75.76632,31.34815],[75.7633,31.34419],[75.76629,31.34015],[75.76487,31.33992],[75.7651,31.33634],[75.761,31.33665],[75.76283,31.33474],[75.75542,31.32827],[75.75034,31.33078],[75.73948,31.32137],[75.73698,31.32232],[75.73702,31.33238],[75.73421,31.33332],[75.72824,31.34207],[75.72238,31.34462],[75.71226,31.34399],[75.70934,31.34756],[75.7067,31.34749],[75.70234,31.34398],[75.70134,31.34525],[75.69971,31.34155],[75.70138,31.34236],[75.70811,31.33862],[75.70634,31.3376],[75.70863,31.33707],[75.70808,31.33199],[75.71266,31.33149],[75.71195,31.32992],[75.71376,31.32799],[75.71528,31.32889],[75.71555,31.32699],[75.71801,31.32636],[75.71873,31.32205],[75.72223,31.31647],[75.71934,31.31393],[75.70863,31.31638],[75.69098,31.31618],[75.68647,31.3183],[75.68298,31.31515],[75.68584,31.30318],[75.6969,31.29811],[75.69983,31.29032],[75.70389,31.28952],[75.70391,31.28567],[75.69817,31.28727],[75.69908,31.283],[75.67956,31.29186],[75.67719,31.29149],[75.67893,31.2878],[75.67531,31.28656],[75.67621,31.28484],[75.67376,31.28127],[75.67503,31.27183],[75.67303,31.26898],[75.68184,31.26385],[75.67888,31.25747],[75.68196,31.25581],[75.6827,31.25354],[75.68153,31.25214],[75.67071,31.24998],[75.67919,31.24667],[75.67827,31.24414],[75.67219,31.24579],[75.67271,31.24229],[75.67041,31.23766],[75.68358,31.23041],[75.68731,31.23435],[75.69115,31.23462],[75.6941,31.24362],[75.69849,31.24626],[75.70935,31.23477],[75.7125,31.22048],[75.70795,31.21498],[75.70299,31.21469],[75.69315,31.21032],[75.68677,31.19609],[75.69859,31.18855],[75.69506,31.18317],[75.69667,31.18331],[75.69648,31.17968],[75.69886,31.17394],[75.70167,31.17201],[75.70513,31.16601],[75.7209,31.1638],[75.72447,31.16662],[75.72759,31.16653],[75.73741,31.16354],[75.74339,31.16452],[75.749,31.16257],[75.75099,31.16443],[75.75342,31.16304],[75.75968,31.16418],[75.76974,31.15997],[75.77788,31.16558],[75.77691,31.16979],[75.7787,31.17225],[75.77888,31.17784],[75.77412,31.18407],[75.77584,31.18906],[75.7798,31.19567],[75.79167,31.19911],[75.78796,31.20498],[75.79667,31.21153],[75.79802,31.21609],[75.80162,31.21565],[75.8099,31.22096],[75.82111,31.22272],[75.84309,31.23249],[75.8536,31.23446],[75.85484,31.23326],[75.85717,31.23658],[75.85796,31.24355],[75.8541,31.25],[75.85557,31.25212],[75.8553,31.25627],[75.84445,31.26132],[75.83973,31.27258],[75.83936,31.27842],[75.84309,31.28236],[75.85019,31.28263],[75.85067,31.28383],[75.85473,31.27911],[75.8584,31.27857],[75.86027,31.27615],[75.86435,31.27662],[75.87047,31.27288],[75.87528,31.26208],[75.87417,31.25903],[75.8717,31.2598],[75.86871,31.2576],[75.87254,31.25138],[75.86877,31.24547],[75.87576,31.24411],[75.89385,31.25394],[75.90127,31.25412],[75.9102,31.26067],[75.90596,31.26398],[75.89575,31.26584],[75.89239,31.27599],[75.88958,31.27541],[75.88811,31.27726],[75.88662,31.28079],[75.8874,31.28454],[75.8833,31.28762],[75.88224,31.29041],[75.87754,31.29015],[75.87556,31.28422],[75.87292,31.28494],[75.86452,31.28193],[75.86601,31.28586],[75.86408,31.29036],[75.85601,31.28878],[75.85294,31.29513],[75.8671,31.31081],[75.86636,31.31803],[75.87138,31.32182],[75.87105,31.32476],[75.87716,31.32738],[75.87572,31.32491],[75.87733,31.32197],[75.88034,31.3224],[75.87951,31.3258],[75.88161,31.32694],[75.8804,31.32841],[75.88497,31.33196],[75.885,31.33411],[75.89935,31.33479],[75.90468,31.33668],[75.9059,31.34496],[75.89902,31.34131],[75.89112,31.34059],[75.89109,31.34462],[75.88266,31.34727],[75.8787,31.35489],[75.85916,31.35198],[75.85687,31.34986],[75.84975,31.37279],[75.8388,31.36959],[75.83632,31.37278],[75.82973,31.36978],[75.83365,31.36235],[75.83242,31.36059],[75.82385,31.35899],[75.82431,31.35747],[75.82176,31.35695],[75.81732,31.35939],[75.81654,31.36187],[75.81234,31.36063],[75.80875,31.37043],[75.80453,31.36968],[75.8019,31.3726]]],[[[75.4976,31.6424],[75.48619,31.64992],[75.47601,31.65157],[75.47038,31.64669],[75.46797,31.63625],[75.429,31.62641],[75.42565,31.62768],[75.41936,31.62159],[75.41903,31.61376],[75.41249,31.59823],[75.40228,31.59239],[75.39597,31.5804],[75.37476,31.57891],[75.35872,31.56841],[75.34535,31.55413],[75.34308,31.55589],[75.32757,31.54249],[75.31667,31.52859],[75.31792,31.52669],[75.30944,31.51674],[75.30855,31.51729],[75.29714,31.5],[75.28312,31.48284],[75.26647,31.48],[75.25218,31.4694],[75.24326,31.45518],[75.23503,31.4593],[75.23071,31.44875],[75.2245,31.42188],[75.2141,31.42189],[75.21007,31.43508],[75.1997,31.43604],[75.19171,31.43314],[75.1871,31.42473],[75.18645,31.41466],[75.19431,31.40795],[75.18993,31.40605],[75.18785,31.40754],[75.17855,31.39885],[75.18152,31.39605],[75.16833,31.37908],[75.16331,31.38292],[75.15605,31.36514],[75.15729,31.36176],[75.16504,31.36153],[75.16439,31.35675],[75.14605,31.33673],[75.14834,31.33322],[75.14782,31.32007],[75.13459,31.31049],[75.11828,31.32029],[75.10678,31.3168],[75.10961,31.3109],[75.10307,31.30221],[75.09341,31.28385],[75.1039,31.27966],[75.0822,31.27367],[75.07934,31.26883],[75.08226,31.26753],[75.07931,31.26464],[75.08098,31.24977],[75.07907,31.24585],[75.06948,31.24044],[75.05935,31.2309],[75.05752,31.22606],[75.06135,31.22522],[75.05976,31.21062],[75.05062,31.20179],[75.05242,31.1984],[75.04787,31.19097],[75.03707,31.18946],[75.01641,31.17989],[75.00951,31.17418],[75.00434,31.17407],[74.98608,31.15888],[74.98356,31.15972],[74.96446,31.1535],[74.95985,31.14726],[74.98833,31.132],[75.00165,31.12136],[75.00586,31.11974],[75.00991,31.12025],[75.01279,31.12586],[75.01321,31.13192],[75.01126,31.13882],[75.00799,31.14095],[75.00664,31.14506],[75.01386,31.14509],[75.0134,31.14817],[75.01828,31.14811],[75.02402,31.15645],[75.03697,31.15093],[75.03928,31.15396],[75.04275,31.15484],[75.06093,31.14585],[75.06192,31.14921],[75.06849,31.14551],[75.07478,31.14765],[75.07938,31.1529],[75.08091,31.15096],[75.08798,31.15311],[75.1032,31.1501],[75.10575,31.15085],[75.10965,31.15557],[75.11481,31.1557],[75.12238,31.16727],[75.13083,31.17112],[75.13384,31.16991],[75.14139,31.17045],[75.14253,31.16769],[75.14512,31.16651],[75.1533,31.16635],[75.15813,31.16824],[75.1701,31.16333],[75.18446,31.16509],[75.18948,31.17705],[75.20531,31.18496],[75.21494,31.18318],[75.22254,31.17673],[75.22979,31.16553],[75.22684,31.15788],[75.23036,31.15254],[75.25454,31.15394],[75.26992,31.14809],[75.27594,31.1589],[75.27124,31.16055],[75.27204,31.16239],[75.27062,31.16322],[75.27538,31.1678],[75.2736,31.16916],[75.2744,31.17373],[75.27071,31.17483],[75.27435,31.18223],[75.27374,31.18351],[75.2769,31.18734],[75.28489,31.18533],[75.29136,31.19187],[75.295,31.1915],[75.29889,31.19768],[75.30135,31.20642],[75.30549,31.20668],[75.30571,31.20821],[75.32056,31.20711],[75.32495,31.21453],[75.32774,31.21624],[75.32939,31.21484],[75.33792,31.22143],[75.33837,31.2248],[75.34068,31.22561],[75.34469,31.23193],[75.35449,31.22937],[75.36009,31.22586],[75.36389,31.2259],[75.36554,31.227],[75.3619,31.2358],[75.36554,31.23666],[75.36793,31.23966],[75.3766,31.23073],[75.38202,31.2323],[75.38431,31.23943],[75.38937,31.24223],[75.38945,31.24441],[75.40018,31.24764],[75.40632,31.24482],[75.41793,31.24972],[75.42251,31.24557],[75.42258,31.24284],[75.42003,31.2418],[75.41917,31.23957],[75.42444,31.23574],[75.42309,31.2294],[75.43362,31.22919],[75.43552,31.23828],[75.43985,31.24101],[75.45172,31.23831],[75.45082,31.23695],[75.45242,31.23594],[75.46087,31.23552],[75.46176,31.24361],[75.46585,31.24825],[75.47201,31.25096],[75.47218,31.25369],[75.46788,31.25739],[75.46304,31.27994],[75.45255,31.2819],[75.4533,31.28543],[75.44835,31.28774],[75.44655,31.28631],[75.43759,31.28942],[75.43656,31.2929],[75.44285,31.30632],[75.4391,31.3107],[75.43823,31.31426],[75.43416,31.31783],[75.43604,31.32021],[75.44592,31.32275],[75.44824,31.32475],[75.46857,31.3248],[75.47403,31.33451],[75.47914,31.35006],[75.48114,31.35191],[75.47861,31.3533],[75.48217,31.36441],[75.47746,31.36768],[75.46902,31.36188],[75.46561,31.36248],[75.46113,31.3609],[75.45781,31.36301],[75.45577,31.37202],[75.45713,31.37434],[75.45989,31.37316],[75.46413,31.37474],[75.46689,31.3741],[75.46554,31.37184],[75.46716,31.37117],[75.47242,31.37188],[75.4744,31.37373],[75.47975,31.37224],[75.48085,31.37612],[75.48748,31.37508],[75.48856,31.38295],[75.49099,31.38473],[75.48316,31.38811],[75.479,31.39227],[75.47211,31.39569],[75.47002,31.39559],[75.4695,31.38932],[75.46677,31.38532],[75.46057,31.38355],[75.46049,31.38126],[75.4487,31.38317],[75.43884,31.38252],[75.43928,31.38391],[75.43657,31.38497],[75.43688,31.39071],[75.43343,31.39353],[75.43876,31.39759],[75.44206,31.40522],[75.43444,31.40965],[75.4368,31.41045],[75.43163,31.41397],[75.43689,31.42573],[75.44242,31.43251],[75.45063,31.42708],[75.45295,31.42937],[75.45384,31.43075],[75.44658,31.43601],[75.44516,31.43874],[75.4454,31.44048],[75.4503,31.44402],[75.45794,31.43738],[75.45926,31.4401],[75.46471,31.43896],[75.46646,31.44673],[75.4561,31.45787],[75.45231,31.46972],[75.4582,31.47031],[75.4577,31.47289],[75.44846,31.47055],[75.44475,31.47313],[75.44357,31.48154],[75.44005,31.48476],[75.44137,31.4947],[75.44324,31.49404],[75.44665,31.49595],[75.44862,31.49347],[75.45073,31.49682],[75.45749,31.49625],[75.45884,31.49859],[75.46616,31.4961],[75.46873,31.49774],[75.47425,31.4963],[75.47394,31.4931],[75.48006,31.4845],[75.48899,31.48436],[75.48902,31.4811],[75.49148,31.47895],[75.4913,31.47498],[75.48921,31.47496],[75.49031,31.47071],[75.49457,31.47102],[75.49879,31.46906],[75.51299,31.45935],[75.51696,31.46546],[75.51138,31.47049],[75.50853,31.47996],[75.51224,31.48093],[75.51131,31.48289],[75.51508,31.4847],[75.51625,31.49021],[75.51871,31.48987],[75.51958,31.49977],[75.51829,31.50349],[75.51377,31.50446],[75.5179,31.51213],[75.51196,31.51538],[75.5123,31.5174],[75.52639,31.52129],[75.52607,31.51881],[75.53128,31.51727],[75.53091,31.51244],[75.53429,31.51235],[75.53916,31.51608],[75.5388,31.5236],[75.54056,31.52829],[75.53341,31.53302],[75.53116,31.5371],[75.52235,31.53902],[75.52466,31.54367],[75.52691,31.54296],[75.52936,31.54589],[75.54047,31.54535],[75.54745,31.54236],[75.55342,31.53428],[75.56641,31.53565],[75.57706,31.54222],[75.57267,31.54758],[75.57604,31.55394],[75.57635,31.55891],[75.57831,31.55933],[75.57929,31.56255],[75.58709,31.56043],[75.59594,31.55511],[75.60228,31.56326],[75.59699,31.5674],[75.59185,31.57516],[75.59504,31.58603],[75.59748,31.58709],[75.60062,31.58354],[75.60308,31.58419],[75.60038,31.58774],[75.60128,31.5922],[75.59364,31.60464],[75.57611,31.60659],[75.57352,31.6175],[75.56997,31.6166],[75.57128,31.6097],[75.56718,31.61079],[75.57233,31.63537],[75.55698,31.64004],[75.55569,31.63984],[75.55554,31.6354],[75.55091,31.63393],[75.54205,31.64636],[75.54286,31.64762],[75.53968,31.64864],[75.53209,31.64865],[75.5305,31.64317],[75.5315,31.6403],[75.52895,31.63689],[75.53225,31.6351],[75.53065,31.63319],[75.52695,31.63424],[75.52478,31.63283],[75.52339,31.63747],[75.51991,31.64041],[75.51454,31.63897],[75.51116,31.63996],[75.51058,31.64241],[75.50818,31.64335],[75.50507,31.64201],[75.50198,31.64384],[75.4976,31.6424]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"350","area_level":"District","area_name":"Kataka","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.92423,20.70006],[85.91602,20.70281],[85.90967,20.70102],[85.90988,20.6894],[85.90365,20.67766],[85.90025,20.67701],[85.89069,20.66924],[85.89052,20.6636],[85.88835,20.6586],[85.87955,20.65718],[85.87407,20.66309],[85.86548,20.66768],[85.84973,20.66848],[85.83313,20.66801],[85.82824,20.66611],[85.82368,20.66175],[85.81504,20.66188],[85.81017,20.6603],[85.79793,20.66609],[85.79424,20.67221],[85.78762,20.67316],[85.78467,20.6706],[85.78289,20.67113],[85.78563,20.66943],[85.78133,20.66295],[85.76238,20.66161],[85.76118,20.65563],[85.7629,20.64995],[85.76074,20.64444],[85.75913,20.64341],[85.75717,20.64689],[85.75214,20.64563],[85.75214,20.64212],[85.75469,20.64294],[85.7533,20.64063],[85.75437,20.63606],[85.74834,20.63935],[85.74792,20.6412],[85.74216,20.64064],[85.73751,20.64489],[85.72701,20.64568],[85.72593,20.6418],[85.71645,20.63827],[85.71223,20.62422],[85.70951,20.62361],[85.70727,20.62674],[85.70541,20.62631],[85.70435,20.62214],[85.7133,20.61476],[85.70838,20.60862],[85.70901,20.60546],[85.68963,20.59636],[85.67324,20.57368],[85.66427,20.56882],[85.65605,20.55029],[85.65232,20.55106],[85.65,20.54907],[85.64871,20.55155],[85.64588,20.54934],[85.64609,20.54751],[85.6401,20.5465],[85.6392,20.54423],[85.6342,20.54156],[85.63201,20.54295],[85.63,20.54087],[85.62552,20.54102],[85.62252,20.54285],[85.61965,20.54097],[85.61273,20.5431],[85.61153,20.53978],[85.60402,20.53686],[85.60139,20.53621],[85.59941,20.53821],[85.59336,20.53328],[85.59367,20.53147],[85.59028,20.52645],[85.59136,20.52078],[85.58775,20.51827],[85.58523,20.51371],[85.57423,20.51657],[85.57234,20.5153],[85.56877,20.51613],[85.56859,20.51825],[85.5652,20.51907],[85.56372,20.52363],[85.5586,20.52392],[85.55487,20.52697],[85.54775,20.52486],[85.53334,20.53166],[85.53115,20.53011],[85.51133,20.5376],[85.50357,20.53647],[85.49848,20.53041],[85.49746,20.52404],[85.49461,20.52381],[85.4945,20.52585],[85.48318,20.52209],[85.48365,20.51474],[85.48055,20.50691],[85.47345,20.50408],[85.47204,20.50045],[85.46808,20.50047],[85.46496,20.49839],[85.45758,20.49034],[85.45687,20.48447],[85.44458,20.4976],[85.44067,20.49813],[85.43426,20.50308],[85.41922,20.50636],[85.41481,20.50912],[85.40558,20.50904],[85.40876,20.49378],[85.40809,20.48797],[85.39975,20.48738],[85.39549,20.49203],[85.39048,20.49257],[85.3828,20.5],[85.37188,20.49608],[85.35006,20.49725],[85.3381,20.5],[85.33642,20.50367],[85.31945,20.50437],[85.31732,20.50295],[85.31385,20.50596],[85.30619,20.50758],[85.29391,20.51694],[85.28851,20.5162],[85.28533,20.51277],[85.28258,20.51234],[85.27993,20.51265],[85.27431,20.51701],[85.26066,20.51972],[85.25127,20.51857],[85.24129,20.52514],[85.22271,20.54186],[85.21141,20.5483],[85.21215,20.55377],[85.19689,20.56723],[85.20789,20.57606],[85.19498,20.5818],[85.1874,20.59087],[85.18286,20.59345],[85.17831,20.60114],[85.16994,20.60251],[85.15498,20.6116],[85.14849,20.60907],[85.14163,20.61249],[85.13562,20.61144],[85.1263,20.61628],[85.11712,20.61032],[85.10923,20.61217],[85.10282,20.61715],[85.09441,20.61874],[85.0911,20.61878],[85.08904,20.61551],[85.0919,20.6126],[85.09059,20.60885],[85.0867,20.6055],[85.08556,20.59538],[85.08086,20.59231],[85.07496,20.58178],[85.07129,20.58186],[85.06885,20.58452],[85.06489,20.58209],[85.06516,20.57835],[85.05524,20.57773],[85.04653,20.58548],[85.03808,20.58647],[85.03515,20.58528],[85.032,20.58843],[85.02757,20.58977],[84.98699,20.58042],[84.9869,20.57517],[84.97988,20.56522],[84.975,20.57336],[84.96818,20.5722],[84.95009,20.57572],[84.94893,20.57867],[84.9437,20.58177],[84.92645,20.582],[84.92232,20.58039],[84.90716,20.58477],[84.89692,20.58184],[84.88615,20.56238],[84.87527,20.55836],[84.87358,20.55144],[84.86495,20.53839],[84.86059,20.53368],[84.84852,20.52803],[84.85951,20.51549],[84.87443,20.50283],[84.88181,20.49889],[84.893,20.49483],[84.91562,20.49612],[84.9262,20.49501],[84.94917,20.48865],[84.97732,20.47289],[84.99067,20.46721],[85.00898,20.45215],[85.03262,20.44225],[85.04046,20.43483],[85.04959,20.42931],[85.06923,20.42215],[85.07393,20.41718],[85.09218,20.41291],[85.09945,20.41297],[85.11348,20.40788],[85.12359,20.39758],[85.13339,20.3913],[85.13718,20.38712],[85.14593,20.38661],[85.15843,20.37855],[85.17147,20.37918],[85.18527,20.37691],[85.19666,20.38087],[85.21074,20.37455],[85.24787,20.36849],[85.26347,20.36437],[85.27161,20.35962],[85.28913,20.36038],[85.33664,20.35839],[85.3514,20.36522],[85.35782,20.36479],[85.36666,20.36716],[85.36789,20.35575],[85.37317,20.35672],[85.37153,20.35459],[85.37267,20.35188],[85.36685,20.35093],[85.36315,20.34752],[85.35791,20.34584],[85.35643,20.33661],[85.354,20.33724],[85.35036,20.33486],[85.35354,20.3328],[85.35396,20.32943],[85.35006,20.33048],[85.35132,20.328],[85.34894,20.32254],[85.35016,20.32071],[85.34749,20.3189],[85.34853,20.31733],[85.35129,20.31854],[85.35032,20.31566],[85.35315,20.31498],[85.35236,20.31342],[85.35418,20.31174],[85.3518,20.30646],[85.35444,20.30177],[85.34949,20.29778],[85.34861,20.29135],[85.34558,20.29019],[85.34607,20.28745],[85.34329,20.28776],[85.34419,20.28601],[85.34231,20.28496],[85.33358,20.28409],[85.33128,20.279],[85.33477,20.2766],[85.33428,20.27255],[85.33922,20.27482],[85.35469,20.27254],[85.3573,20.27461],[85.3622,20.27445],[85.36975,20.27722],[85.37104,20.27719],[85.36976,20.27599],[85.37318,20.27552],[85.37341,20.27854],[85.38177,20.28693],[85.38832,20.27914],[85.39525,20.2779],[85.39487,20.27496],[85.39342,20.27486],[85.39377,20.27037],[85.39183,20.27096],[85.39522,20.26795],[85.39598,20.26089],[85.39838,20.25772],[85.40597,20.25738],[85.41728,20.27088],[85.41901,20.27085],[85.41946,20.27364],[85.42357,20.27279],[85.42798,20.27404],[85.43338,20.26953],[85.44463,20.26407],[85.4511,20.26444],[85.4543,20.27178],[85.453,20.28072],[85.45741,20.28887],[85.45934,20.29734],[85.47376,20.2981],[85.47421,20.29925],[85.48669,20.29818],[85.51074,20.2911],[85.51598,20.2939],[85.52135,20.29317],[85.52448,20.30574],[85.53098,20.3056],[85.53401,20.30215],[85.53758,20.30118],[85.5485,20.30193],[85.54725,20.30743],[85.54949,20.30908],[85.5506,20.31304],[85.5569,20.31016],[85.56516,20.29948],[85.57119,20.29802],[85.58103,20.30206],[85.59045,20.29812],[85.59634,20.29719],[85.60113,20.2994],[85.61397,20.29682],[85.6235,20.29252],[85.62365,20.29495],[85.63362,20.3013],[85.62863,20.30384],[85.62977,20.31282],[85.64299,20.32572],[85.64982,20.32393],[85.65912,20.33166],[85.6646,20.33173],[85.67252,20.32903],[85.67721,20.32445],[85.6785,20.33636],[85.6821,20.34169],[85.69038,20.34699],[85.69613,20.35494],[85.70387,20.3757],[85.70518,20.38709],[85.71219,20.39342],[85.71292,20.4005],[85.7163,20.40412],[85.73385,20.41048],[85.73781,20.40844],[85.73949,20.40564],[85.7452,20.40878],[85.74952,20.40659],[85.75951,20.40735],[85.76513,20.41502],[85.76749,20.41588],[85.76716,20.40523],[85.77128,20.40403],[85.77352,20.40851],[85.78522,20.41175],[85.78599,20.41882],[85.7811,20.41778],[85.77946,20.42231],[85.78523,20.43379],[85.79271,20.42787],[85.79726,20.43119],[85.79707,20.43252],[85.79937,20.43145],[85.80069,20.43567],[85.80518,20.43491],[85.8077,20.42873],[85.81026,20.4276],[85.81415,20.42842],[85.81643,20.43081],[85.81688,20.42058],[85.81887,20.417],[85.818,20.41317],[85.82357,20.4084],[85.83301,20.40485],[85.83427,20.40614],[85.83635,20.40529],[85.8418,20.4107],[85.86031,20.39568],[85.86339,20.40103],[85.86585,20.40008],[85.86866,20.39597],[85.86898,20.39126],[85.87345,20.38126],[85.87834,20.37866],[85.87495,20.37599],[85.87343,20.36717],[85.87459,20.36223],[85.87884,20.3573],[85.8808,20.35717],[85.88255,20.36077],[85.89171,20.36027],[85.89357,20.36376],[85.89314,20.367],[85.89441,20.36743],[85.89383,20.36972],[85.89762,20.37201],[85.89862,20.369],[85.89691,20.36204],[85.89969,20.35367],[85.90152,20.35232],[85.90598,20.35345],[85.91374,20.34814],[85.91582,20.34585],[85.91671,20.33611],[85.92665,20.32955],[85.92868,20.31703],[85.92734,20.31316],[85.92423,20.31201],[85.91894,20.31722],[85.91831,20.32428],[85.91989,20.325],[85.91548,20.3277],[85.91137,20.32341],[85.91009,20.31944],[85.91193,20.31163],[85.91933,20.30968],[85.91847,20.30406],[85.92281,20.29361],[85.92939,20.28953],[85.93422,20.28918],[85.9365,20.28306],[85.93832,20.28277],[85.93103,20.27459],[85.93104,20.27074],[85.93452,20.26775],[85.93863,20.27224],[85.94309,20.26823],[85.95006,20.27109],[85.95195,20.26116],[85.96118,20.25214],[85.96519,20.2516],[85.96428,20.25],[85.96942,20.24608],[85.96981,20.24319],[85.98195,20.23803],[85.98297,20.23561],[85.98923,20.23173],[85.98986,20.22598],[86.00027,20.224],[86.00198,20.22588],[86.00433,20.22452],[86.00768,20.20915],[86.00989,20.20951],[86.01165,20.20755],[86.01734,20.18612],[86.02151,20.18468],[86.02264,20.18226],[86.02772,20.18221],[86.02677,20.17833],[86.02212,20.17834],[86.02171,20.16739],[86.02471,20.16905],[86.02863,20.16773],[86.03354,20.17007],[86.03588,20.17234],[86.03438,20.17469],[86.03746,20.17925],[86.04115,20.17682],[86.04126,20.1739],[86.04457,20.17053],[86.04387,20.16929],[86.05333,20.16392],[86.05089,20.1592],[86.04738,20.15903],[86.04498,20.15465],[86.04796,20.14615],[86.0445,20.14082],[86.03233,20.14246],[86.0317,20.1408],[86.03562,20.13737],[86.03532,20.13472],[86.04216,20.13276],[86.04698,20.13367],[86.05616,20.12541],[86.06521,20.1236],[86.07134,20.11809],[86.07001,20.11215],[86.07208,20.11048],[86.07376,20.11235],[86.07725,20.11047],[86.07917,20.10532],[86.08546,20.10073],[86.08978,20.09058],[86.08841,20.08614],[86.07589,20.08338],[86.07687,20.07999],[86.07543,20.07757],[86.07796,20.07549],[86.0762,20.07306],[86.08463,20.06507],[86.08694,20.05826],[86.08898,20.05822],[86.09068,20.06207],[86.09649,20.06525],[86.11024,20.06664],[86.12166,20.0615],[86.12719,20.0573],[86.11662,20.04735],[86.11828,20.04305],[86.12314,20.03918],[86.13725,20.03967],[86.14174,20.04318],[86.14737,20.04386],[86.15139,20.04116],[86.15991,20.04516],[86.16847,20.04092],[86.16801,20.04579],[86.16923,20.0474],[86.17459,20.04994],[86.18302,20.05007],[86.18332,20.05471],[86.18287,20.05728],[86.16761,20.07229],[86.16458,20.08384],[86.16019,20.08519],[86.15411,20.09111],[86.15471,20.10029],[86.15954,20.10238],[86.16066,20.10816],[86.16397,20.10945],[86.16433,20.11419],[86.15522,20.12157],[86.15577,20.13527],[86.14182,20.14418],[86.14851,20.16017],[86.14478,20.16148],[86.14489,20.16509],[86.14235,20.16717],[86.14647,20.1726],[86.15465,20.17242],[86.15933,20.17101],[86.16263,20.16777],[86.16801,20.16799],[86.16191,20.17445],[86.15036,20.17826],[86.14987,20.185],[86.14742,20.191],[86.13878,20.19536],[86.13965,20.20081],[86.14436,20.19895],[86.14692,20.19971],[86.15079,20.21374],[86.14556,20.21983],[86.13985,20.21916],[86.13081,20.22115],[86.1277,20.2233],[86.12577,20.22181],[86.11234,20.23066],[86.09908,20.23385],[86.07774,20.24439],[86.06869,20.25243],[86.06919,20.25763],[86.06667,20.2663],[86.04059,20.28289],[86.03743,20.29186],[86.03256,20.29486],[86.03265,20.30996],[86.02578,20.31942],[86.02243,20.35687],[86.01927,20.36319],[86.01332,20.36646],[86.01093,20.37812],[86.02591,20.40244],[86.03028,20.40056],[86.02789,20.39641],[86.03131,20.39383],[86.03552,20.39803],[86.04521,20.39594],[86.06728,20.38284],[86.07134,20.37441],[86.07815,20.37167],[86.07996,20.37395],[86.08933,20.36183],[86.09393,20.3618],[86.09777,20.36588],[86.10106,20.36679],[86.10395,20.37402],[86.10993,20.37228],[86.11361,20.36912],[86.11152,20.36784],[86.10633,20.36939],[86.10589,20.36694],[86.10742,20.36538],[86.12461,20.35849],[86.13739,20.35703],[86.1457,20.36188],[86.16453,20.37898],[86.18277,20.37749],[86.19009,20.37543],[86.1988,20.36301],[86.20582,20.36716],[86.21608,20.36135],[86.22118,20.36047],[86.22927,20.36208],[86.23679,20.36563],[86.24794,20.36497],[86.24928,20.36897],[86.24567,20.37178],[86.25095,20.37623],[86.25061,20.38115],[86.25754,20.3799],[86.25485,20.37604],[86.25724,20.37515],[86.26217,20.38376],[86.26061,20.38486],[86.26133,20.38683],[86.2667,20.38858],[86.27313,20.38803],[86.26936,20.39166],[86.27101,20.39324],[86.27216,20.39169],[86.27539,20.39461],[86.27566,20.39687],[86.27393,20.39997],[86.26977,20.39458],[86.26627,20.39513],[86.26554,20.40544],[86.27213,20.40584],[86.27364,20.40993],[86.27111,20.41092],[86.27761,20.42268],[86.27373,20.42521],[86.26833,20.42534],[86.27003,20.42852],[86.2705,20.43692],[86.2677,20.43584],[86.26663,20.43802],[86.27004,20.44303],[86.2752,20.44653],[86.26457,20.45105],[86.26524,20.45397],[86.2691,20.45216],[86.27083,20.45311],[86.26994,20.454],[86.27406,20.45461],[86.27367,20.45729],[86.26978,20.45868],[86.26787,20.46948],[86.26514,20.4691],[86.26453,20.47042],[86.26372,20.47852],[86.26775,20.48246],[86.2624,20.48549],[86.26481,20.49104],[86.27048,20.48907],[86.27386,20.49086],[86.27463,20.49421],[86.27745,20.49639],[86.27287,20.5],[86.2682,20.5082],[86.27222,20.50966],[86.27306,20.51525],[86.27636,20.51858],[86.27449,20.51981],[86.27533,20.52083],[86.25955,20.5286],[86.25606,20.53277],[86.25427,20.52941],[86.25085,20.52838],[86.2485,20.53065],[86.24788,20.53735],[86.24968,20.5393],[86.24852,20.54105],[86.25849,20.54792],[86.26163,20.54821],[86.26292,20.55169],[86.27052,20.559],[86.26822,20.56081],[86.26591,20.55967],[86.26578,20.56247],[86.25723,20.5621],[86.26001,20.56451],[86.27257,20.56427],[86.28003,20.58131],[86.2771,20.58361],[86.26649,20.58424],[86.26503,20.58812],[86.26006,20.59007],[86.25775,20.6011],[86.25073,20.60541],[86.23843,20.60946],[86.22209,20.60836],[86.21556,20.61178],[86.21306,20.61608],[86.21085,20.61719],[86.20855,20.61592],[86.20991,20.61771],[86.20536,20.61978],[86.20738,20.6273],[86.2015,20.63233],[86.20066,20.63046],[86.19393,20.6328],[86.18841,20.62547],[86.18356,20.62596],[86.18516,20.63222],[86.17762,20.63567],[86.17321,20.63641],[86.17247,20.63531],[86.16422,20.63797],[86.16369,20.63964],[86.16742,20.63971],[86.18214,20.63775],[86.18161,20.64219],[86.18594,20.64374],[86.18891,20.63924],[86.19094,20.65563],[86.18729,20.65812],[86.18293,20.6557],[86.18062,20.65099],[86.17881,20.6527],[86.18002,20.65687],[86.17503,20.65301],[86.17354,20.6507],[86.17511,20.64517],[86.17398,20.64457],[86.16526,20.64347],[86.1644,20.64942],[86.16111,20.64956],[86.15692,20.64811],[86.15546,20.64545],[86.14478,20.64233],[86.14505,20.64003],[86.14191,20.63957],[86.14046,20.63414],[86.1306,20.6318],[86.12627,20.62716],[86.12194,20.62516],[86.1171,20.61376],[86.10755,20.61756],[86.10618,20.61441],[86.10422,20.61554],[86.10312,20.61422],[86.10007,20.61416],[86.09928,20.61664],[86.09728,20.61739],[86.09007,20.61838],[86.08694,20.6171],[86.08119,20.61209],[86.08029,20.60664],[86.08198,20.6033],[86.07758,20.59457],[86.07189,20.59996],[86.06355,20.59578],[86.06355,20.59414],[86.04922,20.58956],[86.04205,20.59179],[86.03945,20.59353],[86.04313,20.60034],[86.03944,20.60127],[86.03654,20.60524],[86.02617,20.61336],[86.02188,20.61474],[86.01973,20.61783],[86.01598,20.61868],[86.01582,20.62244],[86.01244,20.62088],[86.0053,20.62614],[86.00369,20.64171],[85.99352,20.64455],[85.9897,20.64771],[85.9866,20.65293],[85.98521,20.66065],[85.97318,20.66929],[85.96557,20.66655],[85.96436,20.67359],[85.95841,20.6813],[85.95787,20.68486],[85.94066,20.69335],[85.93886,20.69168],[85.93655,20.69202],[85.93335,20.69811],[85.93047,20.69805],[85.92968,20.70111],[85.92423,20.70006]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"351","area_level":"District","area_name":"Debagada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.66301,21.76366],[84.6539,21.76428],[84.64917,21.75703],[84.64951,21.74924],[84.6461,21.7433],[84.64046,21.74099],[84.63115,21.74018],[84.63026,21.73714],[84.63747,21.73376],[84.63808,21.72314],[84.63657,21.71374],[84.62854,21.69809],[84.62329,21.69691],[84.61533,21.69878],[84.59116,21.69785],[84.58073,21.70244],[84.56668,21.70323],[84.55958,21.70096],[84.55815,21.69422],[84.55894,21.68906],[84.55578,21.68495],[84.55173,21.68595],[84.54429,21.68457],[84.54387,21.68114],[84.54168,21.67944],[84.53148,21.67926],[84.50879,21.68723],[84.50467,21.68722],[84.50196,21.68517],[84.49082,21.66418],[84.49428,21.65872],[84.49243,21.65366],[84.4851,21.64835],[84.48631,21.64388],[84.48474,21.64021],[84.49164,21.63509],[84.5006,21.62429],[84.508,21.62433],[84.51065,21.62144],[84.51616,21.62248],[84.52088,21.62699],[84.52445,21.62493],[84.52489,21.62148],[84.53405,21.6116],[84.53129,21.6065],[84.54234,21.60159],[84.54466,21.59509],[84.55657,21.59141],[84.5585,21.58787],[84.56949,21.58154],[84.56669,21.57729],[84.54246,21.58367],[84.53236,21.57739],[84.53768,21.57145],[84.53399,21.56833],[84.52515,21.57485],[84.51003,21.5816],[84.50949,21.57223],[84.49316,21.57902],[84.48832,21.57808],[84.49002,21.57539],[84.49411,21.57363],[84.49753,21.56758],[84.50348,21.54937],[84.5,21.54326],[84.4942,21.54377],[84.49129,21.53848],[84.4917,21.53142],[84.47107,21.53898],[84.47251,21.53616],[84.46719,21.52743],[84.4593,21.52831],[84.46017,21.5237],[84.45812,21.51591],[84.44603,21.51907],[84.44202,21.51818],[84.44039,21.51234],[84.44505,21.50594],[84.44643,21.50127],[84.44613,21.49482],[84.4442,21.49087],[84.42747,21.48882],[84.42162,21.48465],[84.41636,21.4838],[84.40792,21.47684],[84.40877,21.46732],[84.41195,21.4623],[84.41229,21.45661],[84.41466,21.45519],[84.4084,21.45102],[84.40904,21.44235],[84.40137,21.4378],[84.39318,21.43649],[84.39246,21.43461],[84.39215,21.42623],[84.39762,21.41926],[84.39521,21.41428],[84.39524,21.40988],[84.3985,21.40752],[84.39528,21.40256],[84.39592,21.39775],[84.39377,21.3946],[84.39471,21.39227],[84.39898,21.38523],[84.40294,21.38477],[84.40158,21.38031],[84.41576,21.38377],[84.42423,21.3838],[84.43483,21.38987],[84.44579,21.39144],[84.4489,21.39385],[84.46436,21.39378],[84.47044,21.39542],[84.47907,21.39397],[84.48315,21.39034],[84.48905,21.39162],[84.49244,21.38172],[84.48954,21.37397],[84.48575,21.3722],[84.48578,21.37019],[84.49866,21.36478],[84.50104,21.36503],[84.50252,21.36976],[84.49859,21.37526],[84.50234,21.37661],[84.51241,21.37324],[84.51765,21.38182],[84.52945,21.3819],[84.53311,21.38356],[84.54178,21.37765],[84.546,21.37358],[84.54242,21.36607],[84.54414,21.3617],[84.54968,21.35655],[84.55229,21.34504],[84.55607,21.34079],[84.55538,21.33554],[84.5578,21.33442],[84.56568,21.32317],[84.5619,21.31765],[84.56285,21.3092],[84.56425,21.31012],[84.56559,21.30876],[84.5641,21.30156],[84.56891,21.29496],[84.56712,21.29491],[84.56783,21.29254],[84.56514,21.29237],[84.567,21.29064],[84.56447,21.28758],[84.56625,21.28676],[84.56534,21.28078],[84.56788,21.28074],[84.56505,21.27884],[84.56582,21.27576],[84.56848,21.27595],[84.56558,21.27263],[84.56916,21.26802],[84.5638,21.2589],[84.56008,21.25815],[84.56265,21.25604],[84.56292,21.25162],[84.56449,21.25],[84.5694,21.25278],[84.57692,21.25373],[84.57998,21.25845],[84.58763,21.25915],[84.59168,21.25786],[84.60309,21.26224],[84.6061,21.27252],[84.61254,21.2769],[84.61594,21.27509],[84.61712,21.27624],[84.62856,21.27602],[84.62876,21.27833],[84.62673,21.28041],[84.63007,21.28248],[84.63291,21.29011],[84.64276,21.29142],[84.64599,21.30039],[84.6525,21.30321],[84.65564,21.30228],[84.6609,21.30423],[84.66641,21.30383],[84.66528,21.30622],[84.66081,21.30757],[84.65822,21.31373],[84.66638,21.31694],[84.67815,21.31812],[84.68486,21.32201],[84.68943,21.32265],[84.69562,21.32329],[84.69946,21.32067],[84.70581,21.32134],[84.70936,21.31947],[84.71793,21.31009],[84.72458,21.30814],[84.73244,21.30117],[84.7338,21.29493],[84.73995,21.28841],[84.75283,21.28012],[84.7591,21.27834],[84.76202,21.27429],[84.75391,21.26486],[84.75418,21.2624],[84.75158,21.25878],[84.76837,21.25379],[84.76463,21.24484],[84.76259,21.24301],[84.75838,21.24261],[84.75776,21.23358],[84.75409,21.22742],[84.74376,21.23441],[84.73919,21.233],[84.73715,21.229],[84.73356,21.23008],[84.73361,21.22772],[84.7277,21.2294],[84.72152,21.22821],[84.71757,21.21965],[84.71997,21.21872],[84.72015,21.21576],[84.71673,21.21279],[84.71712,21.21025],[84.71583,21.20936],[84.72395,21.2049],[84.7216,21.19936],[84.73081,21.19471],[84.73909,21.19522],[84.73802,21.19288],[84.74057,21.1888],[84.74102,21.18413],[84.74316,21.18345],[84.74601,21.17887],[84.73872,21.1757],[84.74414,21.1701],[84.74792,21.1616],[84.75391,21.15945],[84.75841,21.15219],[84.76249,21.14906],[84.77718,21.14561],[84.78874,21.13847],[84.78938,21.1315],[84.79472,21.13306],[84.79869,21.13091],[84.79811,21.13473],[84.80133,21.13655],[84.80261,21.14156],[84.80868,21.13658],[84.81149,21.14025],[84.81344,21.14709],[84.81091,21.14617],[84.8102,21.14928],[84.8065,21.15023],[84.8071,21.15147],[84.80356,21.15269],[84.80294,21.15514],[84.79993,21.15472],[84.79859,21.1656],[84.80129,21.16734],[84.81277,21.16882],[84.81749,21.17128],[84.84281,21.1695],[84.85981,21.16502],[84.86567,21.16606],[84.87724,21.16445],[84.88022,21.15704],[84.88487,21.15319],[84.89947,21.15053],[84.90018,21.14738],[84.91879,21.14076],[84.922,21.1446],[84.9252,21.14489],[84.93204,21.15376],[84.92849,21.15729],[84.92747,21.16854],[84.92878,21.17711],[84.92732,21.1807],[84.94424,21.17488],[84.95034,21.17042],[84.94777,21.16301],[84.94719,21.15498],[84.94859,21.1482],[84.96215,21.14736],[84.96945,21.16158],[84.96227,21.16582],[84.96391,21.17127],[84.96203,21.17777],[84.96622,21.17885],[84.966,21.18418],[84.97001,21.18876],[84.95644,21.19278],[84.94868,21.19189],[84.93949,21.19602],[84.93731,21.20617],[84.92607,21.23364],[84.90236,21.25075],[84.89751,21.26101],[84.90316,21.26273],[84.91288,21.2727],[84.93066,21.28424],[84.95701,21.29778],[84.97834,21.28908],[84.98869,21.28756],[84.99306,21.28923],[85.00259,21.28696],[85.00941,21.29234],[85.01114,21.29734],[85.01897,21.29692],[85.03392,21.29215],[85.03462,21.29861],[85.02987,21.30115],[85.02906,21.30596],[85.02441,21.30932],[85.01555,21.31029],[85.01476,21.31534],[85.01074,21.31648],[85.00827,21.32414],[85.01266,21.33357],[85.01002,21.34372],[85.00698,21.34799],[85.00792,21.35424],[85.01024,21.35584],[85.00897,21.36152],[85.00654,21.36274],[85.00776,21.36576],[85.00617,21.36883],[85.00766,21.37874],[85.00653,21.38552],[85.00551,21.3889],[85.00332,21.3897],[85.00294,21.39331],[85.00003,21.39569],[84.99999,21.39827],[84.99804,21.39814],[84.99466,21.4014],[84.99333,21.40676],[84.9945,21.40821],[84.99183,21.41225],[84.99295,21.41462],[84.99211,21.41807],[84.99468,21.4199],[84.99403,21.42135],[84.99856,21.43175],[84.99737,21.43537],[84.99964,21.43931],[85.00823,21.44419],[85.01996,21.444],[85.02643,21.44803],[85.02097,21.45829],[85.05075,21.44787],[85.06067,21.44198],[85.06397,21.45312],[85.07147,21.45458],[85.07953,21.45892],[85.1075,21.45863],[85.11723,21.4547],[85.13125,21.45773],[85.13638,21.46086],[85.13645,21.46339],[85.14076,21.46278],[85.14484,21.45776],[85.14953,21.45798],[85.15056,21.45982],[85.15657,21.46183],[85.15855,21.46364],[85.16263,21.47745],[85.17438,21.48653],[85.1801,21.50077],[85.1985,21.51544],[85.203,21.52164],[85.20407,21.52904],[85.20156,21.53166],[85.20503,21.53347],[85.20823,21.53233],[85.20972,21.53535],[85.20723,21.54213],[85.20884,21.54838],[85.21214,21.55129],[85.21214,21.55765],[85.20369,21.56278],[85.20443,21.56845],[85.19969,21.57314],[85.19935,21.58051],[85.19429,21.58295],[85.19072,21.58825],[85.18671,21.59003],[85.17525,21.58928],[85.17231,21.59122],[85.16712,21.5906],[85.16265,21.59214],[85.1568,21.59093],[85.13089,21.5996],[85.12628,21.59815],[85.12179,21.59913],[85.11631,21.59603],[85.10578,21.59435],[85.09201,21.6027],[85.08621,21.60357],[85.08386,21.60228],[85.07733,21.60378],[85.07533,21.6012],[85.0662,21.59857],[85.06507,21.59181],[85.05697,21.59221],[85.05142,21.58955],[85.04849,21.59101],[85.0382,21.60052],[85.03516,21.60866],[85.0394,21.61767],[85.03781,21.62257],[85.03272,21.62704],[85.02938,21.6278],[85.02794,21.63328],[85.02957,21.64239],[85.02615,21.65327],[85.03088,21.65873],[85.02607,21.67247],[85.02292,21.67531],[85.00852,21.6769],[84.99789,21.68203],[84.98863,21.67877],[84.98426,21.68219],[84.98254,21.68176],[84.98121,21.68069],[84.98226,21.6786],[84.98112,21.67449],[84.97879,21.67559],[84.97539,21.67278],[84.96533,21.68294],[84.95643,21.68435],[84.95355,21.67813],[84.95361,21.6651],[84.94738,21.66403],[84.94133,21.65943],[84.927,21.66777],[84.91437,21.67052],[84.90338,21.66834],[84.90094,21.65882],[84.87766,21.65833],[84.86106,21.65198],[84.85654,21.65215],[84.85527,21.66054],[84.82827,21.66038],[84.78991,21.66857],[84.78176,21.64935],[84.78312,21.64745],[84.78291,21.64143],[84.78634,21.63924],[84.79273,21.63879],[84.79341,21.63671],[84.78791,21.6311],[84.78429,21.6309],[84.77892,21.62569],[84.75742,21.62448],[84.75246,21.62806],[84.75329,21.64213],[84.74935,21.6548],[84.74925,21.66363],[84.74587,21.66925],[84.74109,21.66932],[84.74153,21.67355],[84.74695,21.68016],[84.74676,21.6825],[84.72976,21.6934],[84.72186,21.70564],[84.71803,21.71706],[84.71257,21.71116],[84.70825,21.71124],[84.70305,21.70743],[84.6913,21.70972],[84.68716,21.71531],[84.68007,21.73162],[84.675,21.73648],[84.6786,21.74898],[84.66301,21.76366]],[[84.87517,21.17088],[84.87224,21.17261],[84.87497,21.17897],[84.87772,21.1784],[84.87517,21.17088]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"352","area_level":"District","area_name":"Dhenkanal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.68367,21.18571],[85.66868,21.16973],[85.66338,21.16657],[85.65724,21.1646],[85.64336,21.16624],[85.62549,21.16099],[85.6176,21.1469],[85.60642,21.1364],[85.59234,21.13817],[85.59032,21.14231],[85.58528,21.14369],[85.55828,21.1595],[85.55072,21.1614],[85.54522,21.16702],[85.53076,21.14666],[85.49779,21.11523],[85.48502,21.11899],[85.4715,21.12022],[85.46792,21.12432],[85.46398,21.12387],[85.45856,21.12852],[85.45275,21.13673],[85.44393,21.14283],[85.42173,21.16489],[85.41586,21.16742],[85.39328,21.18357],[85.38864,21.17761],[85.38714,21.17788],[85.38331,21.17382],[85.38117,21.16789],[85.3695,21.16963],[85.3662,21.17267],[85.36571,21.17099],[85.36082,21.17241],[85.36093,21.17024],[85.35726,21.1692],[85.35123,21.1687],[85.35056,21.1699],[85.34664,21.16865],[85.34319,21.1718],[85.34148,21.17804],[85.33912,21.17668],[85.33414,21.17837],[85.31707,21.15813],[85.3104,21.16707],[85.30423,21.16989],[85.30396,21.17313],[85.29107,21.18041],[85.28861,21.18044],[85.28064,21.17363],[85.2722,21.17432],[85.26505,21.1614],[85.26234,21.15015],[85.26019,21.14918],[85.25318,21.13716],[85.25475,21.13477],[85.25378,21.12973],[85.25221,21.12638],[85.24759,21.12304],[85.24698,21.114],[85.23986,21.1018],[85.23011,21.07243],[85.21651,21.07439],[85.20257,21.07813],[85.19794,21.08082],[85.1915,21.08036],[85.18674,21.08266],[85.18399,21.0822],[85.17718,21.07489],[85.17708,21.07047],[85.17503,21.067],[85.16724,21.06425],[85.16724,21.05647],[85.16517,21.05368],[85.1713,21.04521],[85.18578,21.03837],[85.1976,21.0352],[85.21187,21.02498],[85.23829,21.00973],[85.25092,21.0],[85.25979,20.98654],[85.26044,20.97859],[85.25804,20.97365],[85.24384,20.96673],[85.24085,20.96211],[85.24091,20.95616],[85.245,20.94403],[85.24568,20.93663],[85.23875,20.91213],[85.24263,20.89928],[85.25,20.89601],[85.25897,20.89486],[85.26162,20.89098],[85.25927,20.88778],[85.25411,20.88583],[85.24858,20.88645],[85.24684,20.88402],[85.25252,20.88119],[85.25753,20.87558],[85.25555,20.84314],[85.25108,20.82773],[85.25669,20.81179],[85.25328,20.80332],[85.25475,20.79536],[85.24157,20.79477],[85.23596,20.79233],[85.21879,20.79429],[85.21601,20.79256],[85.21531,20.78748],[85.2132,20.78573],[85.20637,20.7897],[85.20109,20.79019],[85.19579,20.78688],[85.196,20.78052],[85.20657,20.7695],[85.20677,20.76377],[85.20463,20.75818],[85.20886,20.75286],[85.2158,20.75218],[85.21593,20.75021],[85.21383,20.7493],[85.21347,20.74484],[85.20822,20.74252],[85.20722,20.73439],[85.20391,20.73344],[85.20274,20.72822],[85.20515,20.71925],[85.19916,20.71537],[85.19767,20.7093],[85.18979,20.70379],[85.18821,20.69942],[85.19779,20.68606],[85.19403,20.67882],[85.17773,20.67006],[85.17712,20.66677],[85.17193,20.66265],[85.16949,20.66268],[85.16658,20.66526],[85.16706,20.669],[85.16376,20.67037],[85.16479,20.67262],[85.16368,20.67536],[85.16668,20.67974],[85.16546,20.68481],[85.1695,20.69025],[85.17157,20.69685],[85.17565,20.70072],[85.17069,20.70673],[85.15975,20.70788],[85.15015,20.72694],[85.15318,20.73307],[85.13981,20.73132],[85.13406,20.71859],[85.13531,20.71764],[85.13218,20.70881],[85.12493,20.70353],[85.11313,20.68313],[85.12677,20.65361],[85.13457,20.64287],[85.12902,20.6318],[85.12701,20.61625],[85.13562,20.61144],[85.14163,20.61249],[85.14849,20.60907],[85.15582,20.61137],[85.16081,20.60703],[85.16994,20.60251],[85.17831,20.60114],[85.18286,20.59345],[85.1874,20.59087],[85.19498,20.5818],[85.20789,20.57606],[85.19689,20.56723],[85.21215,20.55377],[85.21141,20.5483],[85.22271,20.54186],[85.24129,20.52514],[85.25127,20.51857],[85.26066,20.51972],[85.27431,20.51701],[85.27993,20.51265],[85.28258,20.51234],[85.28533,20.51277],[85.28851,20.5162],[85.29391,20.51694],[85.30619,20.50758],[85.31385,20.50596],[85.31732,20.50295],[85.31945,20.50437],[85.33642,20.50367],[85.3381,20.5],[85.35006,20.49725],[85.37188,20.49608],[85.3828,20.5],[85.39048,20.49257],[85.39549,20.49203],[85.39975,20.48738],[85.40809,20.48797],[85.40876,20.49378],[85.40558,20.50904],[85.41481,20.50912],[85.41922,20.50636],[85.43426,20.50308],[85.44067,20.49813],[85.44458,20.4976],[85.45687,20.48447],[85.45758,20.49034],[85.46496,20.49839],[85.46808,20.50047],[85.47204,20.50045],[85.47345,20.50408],[85.48055,20.50691],[85.48365,20.51474],[85.48318,20.52209],[85.4945,20.52585],[85.49461,20.52381],[85.49746,20.52404],[85.49848,20.53041],[85.50357,20.53647],[85.51133,20.5376],[85.53115,20.53011],[85.53334,20.53166],[85.54775,20.52486],[85.55487,20.52697],[85.5586,20.52392],[85.56372,20.52363],[85.5652,20.51907],[85.56859,20.51825],[85.56877,20.51613],[85.57234,20.5153],[85.57423,20.51657],[85.58523,20.51371],[85.58775,20.51827],[85.59136,20.52078],[85.59028,20.52645],[85.59367,20.53147],[85.59336,20.53328],[85.59941,20.53821],[85.60139,20.53621],[85.60402,20.53686],[85.61153,20.53978],[85.61273,20.5431],[85.61965,20.54097],[85.62252,20.54285],[85.62552,20.54102],[85.63,20.54087],[85.63201,20.54295],[85.6342,20.54156],[85.6392,20.54423],[85.6401,20.5465],[85.64609,20.54751],[85.64588,20.54934],[85.64871,20.55155],[85.65,20.54907],[85.65232,20.55106],[85.65605,20.55029],[85.66427,20.56882],[85.67324,20.57368],[85.68963,20.59636],[85.70901,20.60546],[85.70838,20.60862],[85.7133,20.61476],[85.70432,20.6223],[85.70584,20.62682],[85.70951,20.62361],[85.71312,20.62516],[85.71694,20.6389],[85.72593,20.6418],[85.72701,20.64568],[85.7369,20.64501],[85.74216,20.64064],[85.74792,20.6412],[85.74834,20.63935],[85.75437,20.63606],[85.7533,20.64063],[85.75469,20.64294],[85.75214,20.64212],[85.75214,20.64563],[85.75717,20.64689],[85.75913,20.64341],[85.76074,20.64444],[85.7629,20.64995],[85.76118,20.65563],[85.76238,20.66161],[85.78133,20.66295],[85.78563,20.66943],[85.78289,20.67113],[85.78467,20.6706],[85.7862,20.67282],[85.79424,20.67221],[85.79793,20.66609],[85.81017,20.6603],[85.81504,20.66188],[85.82368,20.66175],[85.82824,20.66611],[85.83313,20.66801],[85.84973,20.66848],[85.86548,20.66768],[85.87407,20.66309],[85.87955,20.65718],[85.88835,20.6586],[85.89052,20.6636],[85.89069,20.66924],[85.90025,20.67701],[85.90365,20.67766],[85.91012,20.68996],[85.90953,20.70344],[85.90408,20.70574],[85.90545,20.7157],[85.91131,20.71536],[85.91471,20.71732],[85.93197,20.71466],[85.93772,20.71793],[85.94675,20.71943],[85.95076,20.72259],[85.95943,20.72138],[85.96002,20.72387],[85.96497,20.72853],[85.97854,20.73357],[85.98124,20.73718],[85.98593,20.73518],[85.98662,20.73641],[85.98885,20.73531],[85.98933,20.73292],[85.99139,20.73184],[85.99278,20.73313],[85.99978,20.72861],[86.00154,20.72975],[86.00306,20.72726],[86.0063,20.72726],[86.00915,20.72462],[86.01046,20.7264],[86.0153,20.72702],[86.01608,20.73002],[86.02381,20.7276],[86.02568,20.73405],[86.02856,20.73448],[86.03061,20.74118],[86.02381,20.74434],[86.0251,20.75],[86.02345,20.75062],[86.02753,20.76181],[86.01845,20.76588],[86.02315,20.76894],[86.02059,20.77628],[86.02869,20.78845],[86.03164,20.79683],[86.03054,20.80877],[86.0263,20.8082],[86.0144,20.81358],[86.01181,20.81223],[86.00762,20.81376],[85.99883,20.81329],[85.99688,20.81831],[85.98248,20.81885],[85.97283,20.82437],[85.96988,20.82348],[85.9685,20.82669],[85.97175,20.83094],[85.96612,20.83543],[85.95916,20.83652],[85.95826,20.83994],[85.95363,20.83319],[85.94433,20.84036],[85.91941,20.84093],[85.89839,20.84688],[85.89932,20.85439],[85.89779,20.85596],[85.90462,20.86601],[85.9196,20.90107],[85.91922,20.91847],[85.91723,20.92797],[85.91106,20.92941],[85.8949,20.92941],[85.89217,20.92781],[85.88512,20.92912],[85.87238,20.92742],[85.86044,20.92804],[85.84528,20.93278],[85.83906,20.93217],[85.83658,20.92812],[85.82749,20.92476],[85.82533,20.92751],[85.82276,20.92732],[85.82301,20.93131],[85.8191,20.93322],[85.8211,20.94278],[85.81939,20.94608],[85.81354,20.94967],[85.80697,20.95908],[85.80098,20.9641],[85.80082,20.9676],[85.79301,20.9709],[85.78914,20.9691],[85.78034,20.97219],[85.78099,20.97338],[85.7768,20.978],[85.77692,20.98226],[85.77005,20.98757],[85.7508,20.99284],[85.73451,20.99],[85.72688,20.98366],[85.7207,20.98101],[85.72213,20.98513],[85.71776,20.99619],[85.72151,20.9998],[85.72012,21.00078],[85.72127,21.00662],[85.72423,21.01087],[85.7245,21.01983],[85.72869,21.02258],[85.72914,21.02422],[85.72785,21.02464],[85.73147,21.02757],[85.73041,21.04057],[85.72575,21.05002],[85.7271,21.0514],[85.72703,21.06378],[85.72614,21.06568],[85.71964,21.06809],[85.71838,21.0649],[85.71584,21.06522],[85.7116,21.06718],[85.7077,21.07179],[85.7015,21.07455],[85.70084,21.07858],[85.69221,21.09254],[85.69208,21.09774],[85.68691,21.10041],[85.68385,21.11119],[85.68124,21.11217],[85.68335,21.11367],[85.68489,21.12105],[85.69421,21.13569],[85.70928,21.14264],[85.72821,21.14136],[85.72498,21.1451],[85.71838,21.16135],[85.70578,21.16888],[85.70346,21.17434],[85.70751,21.18101],[85.70191,21.18283],[85.69048,21.17948],[85.68367,21.18571]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"353","area_level":"District","area_name":"Gajapati","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.33623,18.79016],[84.3356,18.79029],[84.33466,18.79019],[84.33111,18.78954],[84.33072,18.78891],[84.3297,18.78883],[84.32927,18.7872],[84.3316,18.78614],[84.33439,18.78436],[84.3363,18.78287],[84.33686,18.78222],[84.33701,18.7814],[84.33727,18.78054],[84.33839,18.77937],[84.33936,18.77869],[84.33914,18.78226],[84.33924,18.78276],[84.33927,18.78428],[84.3392,18.78545],[84.33942,18.78638],[84.33937,18.78661],[84.33866,18.78784],[84.33926,18.78853],[84.33956,18.78911],[84.33959,18.7894],[84.33928,18.7897],[84.33888,18.78994],[84.3383,18.79002],[84.33703,18.78995],[84.33623,18.79016]]],[[[84.35171,18.78577],[84.35191,18.7861],[84.35215,18.78693],[84.35223,18.78758],[84.35245,18.78847],[84.35327,18.78989],[84.35247,18.79046],[84.35223,18.79075],[84.35201,18.79117],[84.35177,18.79133],[84.34968,18.79192],[84.34953,18.79096],[84.34958,18.78932],[84.34968,18.7887],[84.35011,18.78757],[84.35083,18.78677],[84.35131,18.78585],[84.35148,18.78571],[84.35171,18.78577]]],[[[84.0425,19.62797],[84.03541,19.63569],[84.02679,19.63762],[84.02268,19.63154],[84.0238,19.63015],[84.01247,19.62472],[84.00965,19.61896],[84.00337,19.62883],[83.99128,19.62761],[83.98302,19.62211],[83.9664,19.62385],[83.96444,19.62505],[83.96388,19.63151],[83.95987,19.63165],[83.95496,19.63618],[83.93371,19.63406],[83.93027,19.63141],[83.92577,19.6306],[83.92493,19.62641],[83.93136,19.59569],[83.93445,19.59435],[83.93156,19.57377],[83.93577,19.56864],[83.93631,19.56567],[83.93956,19.56298],[83.93838,19.55571],[83.9421,19.54967],[83.94603,19.54676],[83.955,19.54823],[83.96617,19.54256],[83.97074,19.54205],[83.97549,19.5322],[83.97907,19.53149],[83.97124,19.52567],[83.96575,19.512],[83.95911,19.50785],[83.95848,19.50236],[83.96923,19.49234],[83.97496,19.49006],[83.9767,19.48613],[83.97353,19.48232],[83.9681,19.46925],[83.97013,19.46465],[83.96921,19.46113],[83.96537,19.45941],[83.96189,19.45222],[83.96336,19.44843],[83.9547,19.44128],[83.95485,19.43813],[83.94168,19.42008],[83.94711,19.40588],[83.94724,19.39682],[83.95468,19.39778],[83.96262,19.39595],[83.9653,19.39311],[83.96633,19.38754],[83.97752,19.38356],[83.97972,19.39064],[83.98015,19.39995],[83.987,19.40244],[83.98977,19.389],[83.99716,19.38883],[84.01544,19.37725],[84.01891,19.36535],[84.02196,19.36216],[84.02882,19.34745],[84.02773,19.34154],[84.02399,19.33773],[84.0264,19.33388],[84.02683,19.32849],[84.02532,19.32508],[84.01618,19.31765],[84.01624,19.30859],[84.01432,19.30654],[84.01977,19.29623],[84.02012,19.29084],[84.01267,19.28534],[84.01125,19.27145],[84.00313,19.26974],[84.00135,19.26464],[84.00277,19.25863],[83.99861,19.25753],[83.9954,19.2441],[83.99239,19.24279],[83.9922,19.23734],[83.99451,19.23603],[83.98821,19.22868],[83.98854,19.2211],[83.98452,19.21459],[83.97975,19.21301],[83.98464,19.20362],[83.99746,19.19344],[83.99586,19.19038],[83.98799,19.18662],[83.99199,19.16879],[83.98783,19.16834],[83.98397,19.16468],[83.9885,19.16163],[83.9888,19.15701],[83.99228,19.15441],[83.99423,19.14978],[83.99809,19.15019],[84.00278,19.1466],[84.00657,19.14772],[84.01017,19.14306],[84.01698,19.14154],[84.02653,19.14251],[84.03369,19.13223],[84.03053,19.12764],[84.02411,19.12554],[84.0156,19.11814],[84.01449,19.10628],[84.01602,19.10242],[84.01352,19.09986],[84.01952,19.08923],[84.0181,19.07973],[84.02177,19.0751],[84.02893,19.07567],[84.0318,19.05857],[84.02427,19.05979],[84.01898,19.0567],[84.00906,19.05731],[84.00343,19.06987],[83.99759,19.06824],[83.97764,19.07224],[83.96466,19.06298],[83.96127,19.05656],[83.96112,19.05302],[83.96469,19.0514],[83.96316,19.04307],[83.97642,19.03333],[83.98556,19.02225],[83.98158,19.01295],[83.97628,19.0081],[83.97244,19.0055],[83.96817,19.00633],[83.96018,18.99918],[83.95028,18.99757],[83.9378,19.00927],[83.93019,19.01055],[83.93063,19.0138],[83.92842,19.01507],[83.91714,19.01319],[83.90785,19.01993],[83.896,19.00706],[83.8952,19.00237],[83.89335,19.0009],[83.89483,18.99698],[83.89103,18.99461],[83.88887,18.99353],[83.87559,18.99527],[83.86767,18.99332],[83.8669,18.99006],[83.86516,18.98934],[83.86445,18.99053],[83.85744,18.99106],[83.85613,18.99928],[83.85072,19.00578],[83.84521,19.00873],[83.84445,19.01073],[83.84016,19.00797],[83.83663,19.00795],[83.8334,19.00383],[83.82348,19.01698],[83.81909,19.02036],[83.81657,19.03203],[83.80699,19.03341],[83.79893,19.02782],[83.79722,19.01953],[83.79469,19.01798],[83.79364,19.00695],[83.79686,19.00092],[83.80893,18.99228],[83.81052,18.98522],[83.81773,18.97153],[83.82176,18.96023],[83.81895,18.94765],[83.81973,18.93926],[83.82894,18.9306],[83.82658,18.91628],[83.83071,18.91475],[83.84032,18.91851],[83.8434,18.91716],[83.84579,18.91358],[83.8489,18.8999],[83.84361,18.87554],[83.84831,18.86442],[83.85333,18.85807],[83.86601,18.8527],[83.87165,18.84834],[83.88773,18.83096],[83.89116,18.82509],[83.89316,18.81447],[83.89613,18.81564],[83.89963,18.8244],[83.90476,18.8274],[83.91199,18.82596],[83.9158,18.82796],[83.91767,18.8243],[83.92263,18.82359],[83.92328,18.82183],[83.92634,18.82243],[83.93165,18.81588],[83.93463,18.81628],[83.93465,18.81815],[83.93754,18.81816],[83.9381,18.81585],[83.94232,18.81546],[83.94174,18.80833],[83.95016,18.80518],[83.95539,18.80649],[83.96096,18.81408],[83.96281,18.81289],[83.96509,18.81462],[83.97785,18.81417],[83.98686,18.81005],[83.98845,18.8109],[83.98721,18.8115],[83.99385,18.81361],[83.99567,18.81127],[84.00107,18.81139],[84.00522,18.80874],[84.0099,18.81169],[84.01573,18.80875],[84.01744,18.8128],[84.01547,18.81706],[84.01917,18.81645],[84.01912,18.81792],[84.02252,18.8159],[84.02522,18.81705],[84.02483,18.81548],[84.03296,18.8116],[84.03778,18.81305],[84.03848,18.81643],[84.04561,18.81288],[84.04426,18.80606],[84.04599,18.80506],[84.04669,18.80161],[84.0511,18.79908],[84.05988,18.79918],[84.05728,18.79276],[84.06137,18.79234],[84.06163,18.79073],[84.05727,18.78937],[84.06056,18.78489],[84.05991,18.78242],[84.06201,18.78138],[84.06799,18.78231],[84.06922,18.77815],[84.07373,18.77582],[84.07642,18.76445],[84.08034,18.76535],[84.08117,18.76419],[84.08523,18.76649],[84.08475,18.76427],[84.08959,18.76399],[84.08946,18.75678],[84.09688,18.76054],[84.10327,18.76027],[84.11349,18.76687],[84.11771,18.76554],[84.12238,18.76794],[84.12468,18.76394],[84.1293,18.76533],[84.13256,18.7606],[84.1374,18.76124],[84.14199,18.7643],[84.13891,18.7688],[84.14039,18.77727],[84.14622,18.77716],[84.15176,18.78354],[84.15651,18.78458],[84.15843,18.78289],[84.15926,18.78785],[84.1635,18.7893],[84.16559,18.78776],[84.16972,18.78822],[84.17229,18.7829],[84.17577,18.78008],[84.18271,18.78196],[84.18994,18.7777],[84.19468,18.78332],[84.19342,18.78759],[84.19534,18.79168],[84.1981,18.79081],[84.20011,18.79221],[84.20045,18.79049],[84.20758,18.78915],[84.21808,18.79011],[84.21891,18.79119],[84.21377,18.794],[84.2144,18.79542],[84.21919,18.79492],[84.22185,18.79783],[84.2239,18.79709],[84.22631,18.79877],[84.23225,18.79715],[84.23383,18.79477],[84.23674,18.79855],[84.2408,18.79714],[84.24128,18.79138],[84.24358,18.79152],[84.24314,18.78862],[84.24903,18.78579],[84.25592,18.78799],[84.26097,18.78322],[84.26812,18.78456],[84.28649,18.7923],[84.28877,18.79842],[84.28866,18.80466],[84.30499,18.79826],[84.30592,18.79423],[84.30898,18.79414],[84.31259,18.79037],[84.32126,18.78649],[84.32493,18.79044],[84.32454,18.79484],[84.32659,18.79879],[84.33645,18.79844],[84.33613,18.80107],[84.3381,18.80045],[84.33901,18.80226],[84.34455,18.8018],[84.34183,18.80898],[84.33692,18.81156],[84.33424,18.81519],[84.33105,18.81501],[84.33106,18.81785],[84.33437,18.81771],[84.3341,18.81996],[84.33932,18.81969],[84.34266,18.82222],[84.34941,18.82006],[84.35125,18.8227],[84.35201,18.82711],[84.35066,18.82775],[84.35211,18.83149],[84.3596,18.83121],[84.36385,18.83712],[84.36126,18.8389],[84.36123,18.84216],[84.34499,18.84905],[84.34163,18.85426],[84.33306,18.86051],[84.33094,18.86769],[84.3256,18.87609],[84.33053,18.88322],[84.33681,18.89021],[84.35605,18.86935],[84.35779,18.8693],[84.36206,18.86088],[84.3645,18.86133],[84.3665,18.86402],[84.3699,18.86084],[84.37423,18.86139],[84.37733,18.86451],[84.37899,18.8717],[84.3842,18.87414],[84.37882,18.87815],[84.37259,18.87807],[84.36255,18.88715],[84.36027,18.89455],[84.36495,18.88969],[84.37068,18.88662],[84.37427,18.88652],[84.38256,18.88142],[84.38335,18.88286],[84.38148,18.88643],[84.38811,18.88424],[84.39213,18.8763],[84.39537,18.87977],[84.39518,18.88202],[84.39761,18.88204],[84.39833,18.88368],[84.39752,18.89028],[84.39596,18.89307],[84.39033,18.89582],[84.38515,18.89592],[84.38505,18.89783],[84.38062,18.90014],[84.3784,18.90369],[84.38556,18.90036],[84.39353,18.90433],[84.39412,18.90081],[84.40009,18.89531],[84.40971,18.89512],[84.41288,18.89717],[84.41851,18.89738],[84.42134,18.90116],[84.42219,18.90541],[84.42047,18.91089],[84.41676,18.9146],[84.41857,18.91732],[84.42053,18.91767],[84.42443,18.91035],[84.42839,18.90902],[84.43111,18.91666],[84.43608,18.92039],[84.43765,18.91964],[84.43947,18.92708],[84.43799,18.93237],[84.42768,18.93209],[84.43103,18.93585],[84.42422,18.94725],[84.42558,18.95091],[84.41944,18.94811],[84.4167,18.94089],[84.4118,18.93933],[84.40149,18.94416],[84.39387,18.95399],[84.39883,18.95884],[84.40306,18.95909],[84.40415,18.96522],[84.41037,18.96579],[84.40708,18.97324],[84.39804,18.97356],[84.38655,18.96539],[84.38396,18.97644],[84.38758,18.97482],[84.3979,18.98269],[84.39957,18.98729],[84.39263,18.9905],[84.39024,18.99695],[84.39188,19.00025],[84.39716,19.0009],[84.3957,19.00351],[84.3885,19.00576],[84.38089,18.99122],[84.37185,18.99183],[84.36443,18.98937],[84.3597,18.99353],[84.36226,18.99664],[84.36566,19.00752],[84.37119,19.01429],[84.36649,19.01573],[84.36221,19.00988],[84.35392,19.00832],[84.35335,19.01071],[84.35684,19.01432],[84.34681,19.01401],[84.35169,19.02227],[84.35154,19.02723],[84.35387,19.03068],[84.35993,19.03256],[84.36193,19.04286],[84.36416,19.04533],[84.36205,19.0479],[84.3684,19.05075],[84.35653,19.06478],[84.3615,19.06881],[84.36237,19.07371],[84.36715,19.0738],[84.37021,19.07208],[84.37399,19.08051],[84.37469,19.08696],[84.37218,19.09094],[84.36705,19.09021],[84.37114,19.10499],[84.37852,19.10591],[84.37793,19.10794],[84.37448,19.10895],[84.37476,19.11147],[84.381,19.1192],[84.38708,19.12114],[84.38824,19.12527],[84.38792,19.1291],[84.38049,19.13088],[84.37641,19.12876],[84.37739,19.13459],[84.37615,19.136],[84.3785,19.1405],[84.38591,19.13957],[84.38942,19.14165],[84.37712,19.14747],[84.37412,19.15777],[84.36468,19.16121],[84.36889,19.18007],[84.36345,19.18028],[84.36097,19.18228],[84.36068,19.19037],[84.36822,19.19522],[84.38105,19.19701],[84.38565,19.19374],[84.3874,19.19775],[84.39318,19.20003],[84.39623,19.19943],[84.39896,19.20145],[84.39525,19.20995],[84.39719,19.21144],[84.39682,19.21395],[84.40245,19.21808],[84.40255,19.21996],[84.40801,19.22249],[84.40795,19.22483],[84.41105,19.22518],[84.40916,19.22884],[84.40931,19.23909],[84.42551,19.26091],[84.4242,19.26969],[84.41993,19.2776],[84.42775,19.29452],[84.42006,19.29387],[84.42336,19.30156],[84.41731,19.30864],[84.42009,19.31272],[84.41808,19.32445],[84.41558,19.32779],[84.41723,19.33801],[84.41991,19.34725],[84.42531,19.35447],[84.43658,19.36156],[84.43637,19.36432],[84.42546,19.36731],[84.40806,19.36726],[84.39351,19.37223],[84.38079,19.38477],[84.38541,19.39064],[84.39248,19.38181],[84.39353,19.39624],[84.38808,19.40015],[84.38814,19.40554],[84.37862,19.40549],[84.37042,19.4089],[84.36971,19.414],[84.37195,19.42679],[84.374,19.42783],[84.37918,19.42311],[84.38327,19.42317],[84.38421,19.42984],[84.40518,19.43916],[84.41036,19.43837],[84.41821,19.4411],[84.42336,19.43942],[84.42292,19.44557],[84.41601,19.44381],[84.40321,19.44902],[84.39585,19.45679],[84.39662,19.46831],[84.39354,19.47377],[84.38424,19.47392],[84.37473,19.48625],[84.37463,19.49234],[84.38174,19.5002],[84.38785,19.51551],[84.3856,19.52616],[84.3804,19.53661],[84.38292,19.53457],[84.38564,19.53914],[84.38881,19.55221],[84.38561,19.55362],[84.38534,19.55613],[84.3885,19.56475],[84.37871,19.57607],[84.37812,19.58557],[84.37116,19.58748],[84.36535,19.59584],[84.35875,19.59486],[84.35717,19.59105],[84.35297,19.58862],[84.34866,19.59181],[84.33576,19.59432],[84.33492,19.59817],[84.33166,19.59428],[84.33571,19.58606],[84.33221,19.58418],[84.32847,19.58391],[84.32611,19.58546],[84.32284,19.58385],[84.31911,19.58413],[84.31947,19.58681],[84.31489,19.58132],[84.3025,19.58072],[84.29829,19.57907],[84.29517,19.57437],[84.28875,19.57086],[84.2835,19.57041],[84.27947,19.56735],[84.27655,19.554],[84.26424,19.55261],[84.26185,19.5616],[84.26381,19.57519],[84.26345,19.58771],[84.25964,19.58907],[84.25501,19.57611],[84.2528,19.56036],[84.24481,19.56408],[84.24082,19.56868],[84.22841,19.57461],[84.2296,19.57513],[84.22657,19.57846],[84.21522,19.5851],[84.20784,19.584],[84.20482,19.57987],[84.20844,19.58944],[84.2069,19.59403],[84.20372,19.59341],[84.19744,19.59535],[84.18703,19.58807],[84.17839,19.58563],[84.17266,19.58925],[84.1639,19.58913],[84.16465,19.5868],[84.16167,19.58232],[84.15847,19.5817],[84.15652,19.58493],[84.15289,19.58349],[84.15304,19.58749],[84.1507,19.5908],[84.14927,19.59135],[84.14882,19.58999],[84.14787,19.5914],[84.14022,19.60769],[84.13978,19.61482],[84.13705,19.62093],[84.13821,19.6233],[84.1368,19.62875],[84.13378,19.63119],[84.12376,19.63143],[84.1223,19.62748],[84.11496,19.62849],[84.11353,19.62608],[84.10617,19.6259],[84.10577,19.62328],[84.10048,19.62426],[84.09094,19.63089],[84.08619,19.6281],[84.08311,19.63295],[84.07795,19.63213],[84.06059,19.63437],[84.05707,19.62782],[84.0425,19.62797]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"354","area_level":"District","area_name":"Ganjam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.7356,20.24415],[84.72814,20.25873],[84.71981,20.26445],[84.70485,20.27852],[84.69621,20.28111],[84.68344,20.27566],[84.67237,20.27411],[84.66684,20.25709],[84.66504,20.24389],[84.66099,20.24105],[84.65591,20.23088],[84.65099,20.22587],[84.64838,20.20675],[84.64917,20.20325],[84.64806,20.20404],[84.64737,20.20134],[84.63747,20.19693],[84.63596,20.19351],[84.63399,20.19306],[84.63363,20.19007],[84.62898,20.19047],[84.62462,20.18732],[84.6204,20.1884],[84.61837,20.18532],[84.6157,20.18511],[84.61187,20.18153],[84.59718,20.17593],[84.58507,20.18652],[84.58759,20.17135],[84.57999,20.16905],[84.55827,20.15726],[84.559,20.15238],[84.56287,20.15061],[84.56422,20.14549],[84.56321,20.14049],[84.56049,20.13854],[84.55559,20.14154],[84.53933,20.14035],[84.52592,20.14387],[84.52326,20.15238],[84.51346,20.15036],[84.50991,20.1462],[84.50817,20.14093],[84.5103,20.13716],[84.50925,20.13629],[84.50703,20.13849],[84.49597,20.14179],[84.48666,20.14065],[84.45236,20.16792],[84.45329,20.18212],[84.45678,20.18207],[84.45927,20.18808],[84.4498,20.20115],[84.4462,20.20527],[84.43464,20.2003],[84.43657,20.19436],[84.43151,20.18477],[84.43135,20.18012],[84.43266,20.17143],[84.43853,20.16211],[84.4359,20.15435],[84.44157,20.14671],[84.44055,20.14413],[84.4319,20.14179],[84.42936,20.13787],[84.42825,20.13435],[84.43012,20.12817],[84.42774,20.12448],[84.42754,20.12081],[84.42339,20.12048],[84.41751,20.11561],[84.41858,20.10987],[84.4162,20.10365],[84.41782,20.10036],[84.41483,20.09658],[84.41073,20.08462],[84.4092,20.08563],[84.40444,20.08367],[84.40403,20.07172],[84.40707,20.06722],[84.41573,20.06278],[84.41523,20.05145],[84.41796,20.04959],[84.41487,20.04519],[84.39307,20.04079],[84.36347,20.02577],[84.35745,20.033],[84.34127,20.01526],[84.33859,20.00872],[84.33641,20.00991],[84.33029,20.00756],[84.32811,20.00321],[84.32897,20.00086],[84.32263,19.98976],[84.32818,19.98074],[84.33616,19.97829],[84.35014,19.98766],[84.35068,19.98963],[84.35588,19.99065],[84.36599,19.97802],[84.37246,19.97313],[84.37643,19.96579],[84.38563,19.96202],[84.38995,19.95615],[84.39681,19.95692],[84.39765,19.96089],[84.40265,19.96016],[84.40446,19.96247],[84.40644,19.96193],[84.40503,19.96008],[84.40736,19.95841],[84.40953,19.95999],[84.41177,19.96018],[84.41234,19.95838],[84.41758,19.96029],[84.41596,19.95786],[84.41943,19.95538],[84.42073,19.95555],[84.41995,19.95747],[84.42443,19.95671],[84.42563,19.95798],[84.42703,19.95628],[84.43364,19.95988],[84.4433,19.95506],[84.44543,19.95552],[84.44707,19.95366],[84.45513,19.95197],[84.46258,19.9553],[84.46384,19.95423],[84.46462,19.94785],[84.46893,19.93986],[84.46422,19.93597],[84.46198,19.93097],[84.46103,19.92488],[84.46269,19.9154],[84.4609,19.91107],[84.45702,19.90838],[84.45638,19.9054],[84.45948,19.88629],[84.4621,19.88153],[84.45778,19.87207],[84.46105,19.86538],[84.46222,19.85732],[84.45425,19.84989],[84.4429,19.84457],[84.44866,19.83492],[84.44286,19.83065],[84.43907,19.83176],[84.43139,19.84016],[84.42699,19.83903],[84.42402,19.8359],[84.42163,19.83767],[84.38462,19.84088],[84.37074,19.84744],[84.35711,19.85988],[84.35834,19.86347],[84.34406,19.8616],[84.34016,19.86391],[84.34159,19.86592],[84.33999,19.86793],[84.33881,19.866],[84.33727,19.86735],[84.33738,19.87064],[84.3354,19.86881],[84.32725,19.87312],[84.3267,19.87124],[84.32558,19.87286],[84.32419,19.87224],[84.32423,19.87482],[84.32252,19.87461],[84.32068,19.87761],[84.32098,19.88043],[84.31864,19.88032],[84.31837,19.88513],[84.31581,19.88728],[84.31595,19.89032],[84.31306,19.89583],[84.31123,19.89537],[84.30747,19.90189],[84.30626,19.90876],[84.2905,19.89581],[84.27748,19.88063],[84.248,19.87167],[84.18481,19.86053],[84.19993,19.83555],[84.18651,19.82318],[84.17986,19.8222],[84.17368,19.82354],[84.1717,19.81808],[84.17171,19.81148],[84.16524,19.80556],[84.17304,19.79344],[84.16079,19.78667],[84.13567,19.78277],[84.13016,19.78051],[84.14923,19.75671],[84.15151,19.74685],[84.14859,19.73413],[84.14633,19.73247],[84.1478,19.72988],[84.15261,19.72499],[84.16658,19.73487],[84.18149,19.73767],[84.1892,19.73746],[84.20173,19.73389],[84.19827,19.72337],[84.19236,19.7161],[84.19073,19.71129],[84.1949,19.69805],[84.19825,19.6981],[84.20292,19.69121],[84.20326,19.68738],[84.20102,19.68637],[84.20684,19.68167],[84.21419,19.68547],[84.21803,19.67916],[84.21691,19.67635],[84.22481,19.66909],[84.23104,19.66734],[84.23608,19.66852],[84.24057,19.66388],[84.23636,19.66021],[84.25001,19.65639],[84.25086,19.6547],[84.25048,19.65095],[84.2462,19.6474],[84.24116,19.63942],[84.23603,19.63796],[84.23628,19.63307],[84.23469,19.63064],[84.23149,19.63153],[84.22456,19.62955],[84.22724,19.61222],[84.23422,19.61102],[84.23641,19.60885],[84.23293,19.60463],[84.23272,19.59291],[84.2359,19.5821],[84.23931,19.57632],[84.23387,19.57697],[84.23388,19.57328],[84.22841,19.57461],[84.24082,19.56868],[84.24481,19.56408],[84.2528,19.56036],[84.25501,19.57611],[84.25964,19.58907],[84.26345,19.58771],[84.26226,19.55909],[84.26424,19.55261],[84.27097,19.55249],[84.27777,19.55517],[84.277,19.55967],[84.27947,19.56735],[84.2835,19.57041],[84.28875,19.57086],[84.29517,19.57437],[84.29829,19.57907],[84.3025,19.58072],[84.31489,19.58132],[84.31947,19.58681],[84.31911,19.58413],[84.32284,19.58385],[84.32611,19.58546],[84.32847,19.58391],[84.33221,19.58418],[84.33571,19.58606],[84.33166,19.59428],[84.33492,19.59817],[84.33576,19.59432],[84.34866,19.59181],[84.35297,19.58862],[84.35717,19.59105],[84.35875,19.59486],[84.36535,19.59584],[84.37116,19.58748],[84.37812,19.58557],[84.37871,19.57607],[84.3885,19.56475],[84.38534,19.55613],[84.38561,19.55362],[84.38881,19.55221],[84.38564,19.53914],[84.38292,19.53457],[84.3804,19.53661],[84.3856,19.52616],[84.38785,19.51551],[84.38174,19.5002],[84.37463,19.49234],[84.37473,19.48625],[84.38424,19.47392],[84.39354,19.47377],[84.39662,19.46831],[84.39585,19.45679],[84.40321,19.44902],[84.41601,19.44381],[84.42292,19.44557],[84.42336,19.43942],[84.41821,19.4411],[84.41036,19.43837],[84.40518,19.43916],[84.38421,19.42984],[84.38327,19.42317],[84.37918,19.42311],[84.374,19.42783],[84.37195,19.42679],[84.36971,19.414],[84.37042,19.4089],[84.37862,19.40549],[84.38814,19.40554],[84.38808,19.40015],[84.39353,19.39624],[84.39248,19.38181],[84.38541,19.39064],[84.38079,19.38477],[84.39351,19.37223],[84.40806,19.36726],[84.42546,19.36731],[84.43637,19.36432],[84.43658,19.36156],[84.42531,19.35447],[84.41991,19.34725],[84.41723,19.33801],[84.41558,19.32779],[84.41808,19.32445],[84.42009,19.31272],[84.41731,19.30864],[84.42336,19.30156],[84.42006,19.29387],[84.42775,19.29452],[84.41993,19.2776],[84.4242,19.26969],[84.42551,19.26091],[84.40931,19.23909],[84.40916,19.22884],[84.41105,19.22518],[84.40795,19.22483],[84.40801,19.22249],[84.40255,19.21996],[84.40245,19.21808],[84.39682,19.21395],[84.39719,19.21144],[84.39525,19.20995],[84.39896,19.20145],[84.39623,19.19943],[84.39318,19.20003],[84.3874,19.19775],[84.38565,19.19374],[84.38105,19.19701],[84.36822,19.19522],[84.36068,19.19037],[84.36097,19.18228],[84.36345,19.18028],[84.36889,19.18007],[84.36468,19.16121],[84.37412,19.15777],[84.37712,19.14747],[84.38942,19.14165],[84.38591,19.13957],[84.3785,19.1405],[84.37615,19.136],[84.37739,19.13459],[84.37641,19.12876],[84.38049,19.13088],[84.38792,19.1291],[84.38824,19.12527],[84.38708,19.12114],[84.381,19.1192],[84.37476,19.11147],[84.37448,19.10895],[84.37793,19.10794],[84.37852,19.10591],[84.37114,19.10499],[84.36705,19.09021],[84.37218,19.09094],[84.37469,19.08696],[84.37399,19.08051],[84.37021,19.07208],[84.36715,19.0738],[84.36237,19.07371],[84.3615,19.06881],[84.35653,19.06478],[84.3684,19.05075],[84.36205,19.0479],[84.36416,19.04533],[84.36193,19.04286],[84.35993,19.03256],[84.35387,19.03068],[84.35154,19.02723],[84.35169,19.02227],[84.34681,19.01401],[84.35684,19.01432],[84.35335,19.01071],[84.35392,19.00832],[84.36221,19.00988],[84.36649,19.01573],[84.37119,19.01429],[84.36566,19.00752],[84.36226,18.99664],[84.3597,18.99353],[84.36443,18.98937],[84.37185,18.99183],[84.38089,18.99122],[84.3885,19.00576],[84.3957,19.00351],[84.39716,19.0009],[84.39188,19.00025],[84.39024,18.99695],[84.39263,18.9905],[84.39954,18.98772],[84.39883,18.98436],[84.38758,18.97482],[84.38396,18.97644],[84.38388,18.97264],[84.38709,18.96477],[84.38906,18.96837],[84.39677,18.97306],[84.40708,18.97324],[84.41037,18.96579],[84.40415,18.96522],[84.40306,18.95909],[84.39883,18.95884],[84.39387,18.95399],[84.40101,18.94456],[84.4112,18.9394],[84.4167,18.94089],[84.41944,18.94811],[84.42558,18.95091],[84.43243,18.95909],[84.432,18.96229],[84.42941,18.96486],[84.43107,18.96919],[84.43734,18.97037],[84.44168,18.96865],[84.44605,18.97193],[84.44505,18.97324],[84.44773,18.97557],[84.45243,18.97598],[84.44468,18.98326],[84.4433,18.9905],[84.43222,18.99505],[84.4325,19.00655],[84.42824,19.00767],[84.42406,19.0132],[84.42201,19.01275],[84.42109,19.02199],[84.42573,19.01921],[84.42458,19.01395],[84.4316,19.01348],[84.43712,19.00713],[84.44056,19.00741],[84.44161,19.00353],[84.44483,19.00445],[84.44961,19.003],[84.45438,19.0],[84.45582,18.99733],[84.46036,18.99678],[84.46059,18.99306],[84.46474,18.99161],[84.46489,18.99373],[84.46678,18.99388],[84.47027,18.99142],[84.47434,18.99176],[84.47603,18.98804],[84.47889,18.98846],[84.48293,19.00487],[84.48264,19.01657],[84.48502,19.01924],[84.48877,19.01951],[84.49437,19.029],[84.50047,19.03317],[84.50532,19.03386],[84.51173,19.04024],[84.51638,19.04843],[84.52412,19.0487],[84.52613,19.04604],[84.54327,19.05505],[84.5566,19.05658],[84.57286,19.07372],[84.57388,19.07327],[84.57158,19.06958],[84.5747,19.06757],[84.57663,19.06761],[84.58295,19.07318],[84.58338,19.06815],[84.58046,19.06002],[84.58182,19.05891],[84.58152,19.05302],[84.58305,19.04924],[84.57868,19.04566],[84.57729,19.04047],[84.58329,19.04248],[84.58126,19.03752],[84.58167,19.03009],[84.59415,19.02226],[84.59568,19.02555],[84.60127,19.02528],[84.60198,19.03244],[84.60585,19.0417],[84.61427,19.05194],[84.61281,19.05353],[84.61343,19.05657],[84.61761,19.05453],[84.62074,19.05614],[84.62242,19.0601],[84.61705,19.06093],[84.61831,19.06587],[84.62782,19.06621],[84.63064,19.0646],[84.62987,19.0617],[84.63101,19.06042],[84.63711,19.05998],[84.64161,19.06727],[84.65394,19.06754],[84.65467,19.0659],[84.65796,19.06556],[84.65758,19.06431],[84.66113,19.06304],[84.66308,19.07461],[84.66948,19.07438],[84.67085,19.07633],[84.66347,19.0824],[84.66388,19.08757],[84.65868,19.09196],[84.65897,19.09443],[84.65319,19.09309],[84.64704,19.09626],[84.64424,19.09291],[84.63684,19.08974],[84.63678,19.08595],[84.63433,19.08867],[84.6312,19.0821],[84.63193,19.08656],[84.63042,19.08439],[84.62549,19.08491],[84.626,19.08767],[84.62411,19.08831],[84.62501,19.09166],[84.62268,19.09386],[84.6249,19.09564],[84.62548,19.09909],[84.61965,19.1044],[84.61867,19.10008],[84.60955,19.10078],[84.61128,19.10685],[84.60841,19.10753],[84.60552,19.11754],[84.60186,19.12318],[84.60285,19.12662],[84.59601,19.12879],[84.59553,19.13245],[84.60328,19.13193],[84.6072,19.12918],[84.61416,19.12789],[84.62978,19.12668],[84.63102,19.12968],[84.64363,19.12971],[84.64408,19.13372],[84.65426,19.12937],[84.65995,19.1315],[84.66732,19.12986],[84.66669,19.13184],[84.66974,19.13794],[84.67166,19.14822],[84.67102,19.15623],[84.66793,19.15417],[84.66874,19.16299],[84.67091,19.16604],[84.67252,19.16455],[84.67327,19.16609],[84.67776,19.16678],[84.68073,19.16528],[84.68435,19.15999],[84.6929,19.16121],[84.69622,19.15945],[84.69692,19.16076],[84.7034,19.16117],[84.70473,19.1593],[84.70998,19.15967],[84.71201,19.15828],[84.71485,19.15232],[84.71052,19.14646],[84.70118,19.14706],[84.70005,19.14439],[84.70126,19.14462],[84.70036,19.14297],[84.70612,19.14103],[84.69784,19.12644],[84.70252,19.12586],[84.70144,19.12219],[84.7028,19.11786],[84.7082,19.11572],[84.75455,19.08217],[84.76627,19.07814],[84.77965,19.10161],[84.79364,19.12086],[84.80037,19.13833],[84.81132,19.15746],[84.85008,19.20248],[84.87639,19.22807],[84.93331,19.27883],[84.9836,19.31783],[85.07932,19.37435],[85.09202,19.38806],[85.0938,19.39861],[85.10555,19.41377],[85.14461,19.44613],[85.17309,19.46683],[85.14872,19.49495],[85.13544,19.52154],[85.173,19.55926],[85.17937,19.62101],[85.18272,19.67805],[85.17246,19.68411],[85.16933,19.69109],[85.16131,19.6963],[85.16007,19.70314],[85.1436,19.72119],[85.14397,19.72904],[85.13779,19.73902],[85.12571,19.74934],[85.09181,19.76417],[85.08397,19.77029],[85.0828,19.77641],[85.07777,19.78033],[85.07763,19.7866],[85.07231,19.79456],[85.04502,19.80589],[85.03609,19.80653],[85.02948,19.80493],[85.02193,19.807],[85.0068,19.80351],[85.00424,19.80458],[84.9992,19.80975],[84.99842,19.8166],[84.99173,19.81515],[84.984,19.82027],[84.96929,19.85442],[84.95094,19.86591],[84.95267,19.86828],[84.94603,19.87083],[84.94528,19.86944],[84.93723,19.87364],[84.9373,19.87512],[84.93596,19.87453],[84.93992,19.89741],[84.93354,19.90073],[84.92781,19.90806],[84.92252,19.906],[84.90725,19.90749],[84.90622,19.91554],[84.91341,19.92656],[84.91549,19.92519],[84.9153,19.93029],[84.91785,19.9321],[84.91739,19.93447],[84.92086,19.93997],[84.92069,19.94307],[84.9141,19.95433],[84.90961,19.97596],[84.90552,19.98068],[84.9008,19.99288],[84.89137,19.99531],[84.88338,20.00074],[84.87348,19.99829],[84.86243,20.00006],[84.85984,20.00581],[84.86119,20.0188],[84.85725,20.0241],[84.85671,20.03071],[84.84929,20.03647],[84.83474,20.05411],[84.82245,20.05971],[84.81068,20.06783],[84.80462,20.08329],[84.79815,20.09082],[84.79812,20.09351],[84.80154,20.09688],[84.80201,20.0998],[84.80469,20.10055],[84.80661,20.104],[84.80411,20.11101],[84.80735,20.1154],[84.81489,20.11518],[84.81994,20.11679],[84.82187,20.12048],[84.82171,20.13656],[84.82594,20.15893],[84.82316,20.17334],[84.82364,20.17982],[84.82952,20.19877],[84.83162,20.21639],[84.82574,20.21852],[84.82266,20.2233],[84.81781,20.22218],[84.80305,20.22486],[84.78215,20.2322],[84.77375,20.24344],[84.76518,20.2461],[84.75806,20.24209],[84.7356,20.24415]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"355","area_level":"District","area_name":"Jagatsinghapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.02944,20.39507],[86.02789,20.39641],[86.03028,20.40056],[86.02591,20.40244],[86.01231,20.38212],[86.01088,20.37702],[86.01332,20.36646],[86.01927,20.36319],[86.02243,20.35687],[86.02524,20.32174],[86.03265,20.30996],[86.03256,20.29486],[86.03709,20.29236],[86.03904,20.28507],[86.04175,20.28165],[86.06667,20.2663],[86.06919,20.25763],[86.06869,20.25243],[86.07774,20.24439],[86.09908,20.23385],[86.11234,20.23066],[86.12577,20.22181],[86.1277,20.2233],[86.13081,20.22115],[86.13985,20.21916],[86.14556,20.21983],[86.15079,20.21374],[86.14692,20.19971],[86.14436,20.19895],[86.13965,20.20081],[86.13878,20.19536],[86.14742,20.191],[86.14987,20.185],[86.15036,20.17826],[86.16191,20.17445],[86.16801,20.16799],[86.16263,20.16777],[86.15933,20.17101],[86.15465,20.17242],[86.14647,20.1726],[86.14235,20.16717],[86.14489,20.16509],[86.14478,20.16148],[86.14851,20.16017],[86.14182,20.14418],[86.15577,20.13527],[86.15522,20.12157],[86.16433,20.11419],[86.16397,20.10945],[86.16066,20.10816],[86.15954,20.10238],[86.15471,20.10029],[86.15411,20.09111],[86.16019,20.08519],[86.16458,20.08384],[86.16761,20.07229],[86.18287,20.05728],[86.18354,20.05071],[86.18798,20.05017],[86.19157,20.0516],[86.19438,20.04956],[86.19714,20.05216],[86.2009,20.05226],[86.2012,20.04747],[86.20689,20.04534],[86.20654,20.04293],[86.20269,20.04266],[86.2048,20.03873],[86.20649,20.03934],[86.2072,20.04237],[86.2114,20.0429],[86.21281,20.0416],[86.21137,20.03987],[86.22034,20.03533],[86.23022,20.04299],[86.24278,20.03652],[86.25372,20.05332],[86.26503,20.051],[86.27385,20.05522],[86.27813,20.05469],[86.27541,20.04736],[86.26952,20.04413],[86.26977,20.04145],[86.27333,20.04231],[86.27907,20.04041],[86.29206,20.0329],[86.29511,20.02934],[86.30839,20.02467],[86.31354,20.02532],[86.31644,20.02131],[86.32279,20.01847],[86.33125,20.00242],[86.3352,19.98993],[86.34306,19.97895],[86.34959,19.97432],[86.35512,19.97286],[86.37355,19.97643],[86.378,19.96683],[86.38461,19.97609],[86.38965,19.97668],[86.39007,19.98123],[86.39352,19.98216],[86.40438,19.99183],[86.41402,19.99732],[86.41404,20.01065],[86.42603,20.03516],[86.43395,20.04635],[86.43396,20.05214],[86.4769,20.09735],[86.49773,20.1268],[86.51266,20.15878],[86.52383,20.17345],[86.53909,20.18648],[86.59557,20.22446],[86.6565,20.25427],[86.67418,20.25987],[86.68019,20.25994],[86.67212,20.2625],[86.67276,20.26575],[86.67119,20.26928],[86.66788,20.27159],[86.66925,20.27572],[86.67193,20.27488],[86.67324,20.27665],[86.67551,20.27511],[86.67364,20.26996],[86.67568,20.26711],[86.67945,20.26757],[86.67984,20.26422],[86.68116,20.27107],[86.71388,20.28571],[86.74753,20.30697],[86.75,20.30891],[86.75097,20.31284],[86.7727,20.32887],[86.77972,20.33645],[86.77913,20.33729],[86.76496,20.32477],[86.72338,20.29842],[86.69749,20.29692],[86.69201,20.29837],[86.68896,20.30136],[86.68069,20.31602],[86.68185,20.31865],[86.66438,20.3288],[86.66396,20.32771],[86.64113,20.33401],[86.6185,20.3361],[86.60467,20.34111],[86.59781,20.33989],[86.5992,20.34188],[86.59417,20.3409],[86.58944,20.33825],[86.5886,20.33553],[86.57729,20.33666],[86.56675,20.33154],[86.56008,20.32632],[86.54856,20.32439],[86.5382,20.33048],[86.53864,20.33259],[86.53666,20.33363],[86.5355,20.33226],[86.5303,20.33762],[86.52122,20.3386],[86.5203,20.34133],[86.51658,20.34114],[86.51162,20.33497],[86.49879,20.32829],[86.48102,20.33295],[86.47333,20.33684],[86.46823,20.33585],[86.4592,20.33064],[86.4522,20.33012],[86.44115,20.33728],[86.43168,20.33559],[86.43363,20.34659],[86.42805,20.34233],[86.42348,20.34217],[86.42187,20.34586],[86.41176,20.35222],[86.41244,20.35917],[86.40029,20.36012],[86.39378,20.36526],[86.3894,20.36263],[86.39176,20.35724],[86.38959,20.35394],[86.38163,20.35459],[86.3792,20.35682],[86.37483,20.35688],[86.37011,20.3594],[86.36643,20.3556],[86.36005,20.35822],[86.35935,20.35676],[86.36084,20.35491],[86.35919,20.35046],[86.34877,20.35085],[86.34977,20.35314],[86.34849,20.35327],[86.34597,20.36022],[86.33589,20.37035],[86.32481,20.36885],[86.32501,20.35761],[86.31874,20.35588],[86.31762,20.35409],[86.3146,20.35418],[86.31174,20.36068],[86.3095,20.36158],[86.30728,20.35518],[86.30527,20.35484],[86.30204,20.35507],[86.28793,20.36294],[86.279,20.36119],[86.27784,20.35648],[86.27317,20.35735],[86.27109,20.36327],[86.27417,20.36776],[86.26911,20.37248],[86.26463,20.36895],[86.26513,20.36742],[86.26191,20.36587],[86.25692,20.36697],[86.25436,20.36455],[86.23805,20.36583],[86.22118,20.36047],[86.21608,20.36135],[86.20582,20.36716],[86.1988,20.36301],[86.19009,20.37543],[86.18638,20.37679],[86.16453,20.37898],[86.14502,20.36135],[86.13739,20.35703],[86.1303,20.35724],[86.10742,20.36538],[86.10589,20.36694],[86.10633,20.36939],[86.11152,20.36784],[86.11361,20.36912],[86.10993,20.37228],[86.10395,20.37402],[86.10106,20.36679],[86.09777,20.36588],[86.09393,20.3618],[86.08933,20.36183],[86.07996,20.37395],[86.07815,20.37167],[86.07296,20.3731],[86.06728,20.38284],[86.04521,20.39594],[86.03552,20.39803],[86.03131,20.39383],[86.02944,20.39507]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"356","area_level":"District","area_name":"Jajpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.08767,21.16503],[86.0894,21.16841],[86.08068,21.17035],[86.07688,21.16872],[86.07427,21.16431],[86.06664,21.1645],[86.06409,21.16102],[86.06527,21.15562],[86.06173,21.15311],[86.05706,21.15401],[86.04943,21.16106],[86.04289,21.1573],[86.03658,21.16062],[86.03477,21.15892],[86.0323,21.15038],[86.02747,21.14939],[86.02687,21.148],[86.03038,21.14311],[86.02517,21.13925],[86.02138,21.13927],[86.01959,21.1447],[86.0119,21.14144],[86.00742,21.14532],[86.00163,21.14193],[85.9934,21.14304],[85.99273,21.139],[85.98226,21.13648],[85.977,21.14278],[85.97523,21.143],[85.96947,21.13741],[85.9641,21.13757],[85.96178,21.14036],[85.96063,21.13682],[85.96382,21.134],[85.96189,21.13049],[85.95871,21.13396],[85.95939,21.13217],[85.95775,21.13034],[85.94854,21.12888],[85.94699,21.13257],[85.9396,21.12972],[85.93667,21.13526],[85.92884,21.13622],[85.93018,21.13194],[85.92894,21.12366],[85.91699,21.09254],[85.88821,21.08626],[85.87813,21.08772],[85.875,21.08564],[85.86317,21.08769],[85.85484,21.09322],[85.84767,21.09563],[85.83589,21.09608],[85.82816,21.09017],[85.822,21.09091],[85.81224,21.09399],[85.807,21.10651],[85.79754,21.10386],[85.79025,21.10569],[85.78438,21.10125],[85.78009,21.10272],[85.77955,21.1017],[85.77581,21.10581],[85.77259,21.10505],[85.77097,21.10888],[85.77118,21.11483],[85.76641,21.11552],[85.76551,21.11961],[85.76697,21.12585],[85.76268,21.13612],[85.76211,21.14487],[85.75175,21.1492],[85.74703,21.14799],[85.74055,21.13935],[85.73468,21.13881],[85.72641,21.1421],[85.70928,21.14264],[85.69871,21.13832],[85.69421,21.13569],[85.68489,21.12105],[85.68335,21.11367],[85.68124,21.11217],[85.68385,21.11119],[85.68691,21.10041],[85.69208,21.09774],[85.69221,21.09254],[85.70084,21.07858],[85.7015,21.07455],[85.7077,21.07179],[85.7116,21.06718],[85.71584,21.06522],[85.71838,21.0649],[85.71964,21.06809],[85.72614,21.06568],[85.72703,21.06378],[85.7271,21.0514],[85.72575,21.05002],[85.73041,21.04057],[85.73147,21.02757],[85.72785,21.02464],[85.72914,21.02422],[85.72869,21.02258],[85.7245,21.01983],[85.72423,21.01087],[85.72127,21.00662],[85.72012,21.00078],[85.72151,20.9998],[85.71776,20.99619],[85.72213,20.98513],[85.7207,20.98101],[85.72688,20.98366],[85.73451,20.99],[85.7508,20.99284],[85.77005,20.98757],[85.77692,20.98226],[85.7768,20.978],[85.78099,20.97338],[85.78034,20.97219],[85.78914,20.9691],[85.79301,20.9709],[85.80082,20.9676],[85.80098,20.9641],[85.80697,20.95908],[85.81354,20.94967],[85.81939,20.94608],[85.8211,20.94278],[85.8191,20.93322],[85.82301,20.93131],[85.82276,20.92732],[85.82533,20.92751],[85.82749,20.92476],[85.83658,20.92812],[85.83906,20.93217],[85.84528,20.93278],[85.86044,20.92804],[85.87238,20.92742],[85.88512,20.92912],[85.89217,20.92781],[85.8949,20.92941],[85.91106,20.92941],[85.91723,20.92797],[85.91922,20.91847],[85.9196,20.90107],[85.90462,20.86601],[85.89779,20.85596],[85.89932,20.85439],[85.89839,20.84688],[85.91941,20.84093],[85.94433,20.84036],[85.95363,20.83319],[85.95826,20.83994],[85.95916,20.83652],[85.96612,20.83543],[85.97175,20.83094],[85.9685,20.82669],[85.96988,20.82348],[85.97283,20.82437],[85.98248,20.81885],[85.99688,20.81831],[85.99883,20.81329],[86.00762,20.81376],[86.01181,20.81223],[86.0144,20.81358],[86.0263,20.8082],[86.03054,20.80877],[86.03164,20.79683],[86.02869,20.78845],[86.02059,20.77628],[86.02315,20.76894],[86.01845,20.76588],[86.02753,20.76181],[86.02345,20.75062],[86.0251,20.75],[86.02381,20.74434],[86.03061,20.74118],[86.02856,20.73448],[86.02568,20.73405],[86.02358,20.72737],[86.01608,20.73002],[86.0153,20.72702],[86.01046,20.7264],[86.00915,20.72462],[86.0063,20.72726],[86.00306,20.72726],[86.00154,20.72975],[85.99978,20.72861],[85.99278,20.73313],[85.99139,20.73184],[85.98933,20.73292],[85.98885,20.73531],[85.98662,20.73641],[85.98593,20.73518],[85.98124,20.73718],[85.97854,20.73357],[85.96497,20.72853],[85.96002,20.72387],[85.95943,20.72138],[85.95076,20.72259],[85.94675,20.71943],[85.93772,20.71793],[85.93197,20.71466],[85.91471,20.71732],[85.91131,20.71536],[85.90545,20.7157],[85.90408,20.70574],[85.90935,20.7039],[85.90967,20.70102],[85.91539,20.7028],[85.92456,20.69999],[85.92925,20.70128],[85.93082,20.70015],[85.93047,20.69805],[85.93366,20.6978],[85.93655,20.69202],[85.93886,20.69168],[85.94066,20.69335],[85.95787,20.68486],[85.95841,20.6813],[85.96436,20.67359],[85.96557,20.66655],[85.97381,20.66901],[85.98521,20.66065],[85.9866,20.65293],[85.99181,20.64564],[86.00369,20.64171],[86.00367,20.63466],[86.00616,20.62513],[86.01244,20.62088],[86.01582,20.62244],[86.01598,20.61868],[86.01973,20.61783],[86.02188,20.61474],[86.02617,20.61336],[86.03654,20.60524],[86.03944,20.60127],[86.04313,20.60034],[86.03945,20.59353],[86.04084,20.59243],[86.04922,20.58956],[86.06355,20.59414],[86.06355,20.59578],[86.07189,20.59996],[86.07758,20.59457],[86.08198,20.6033],[86.08029,20.60664],[86.08119,20.61209],[86.08694,20.6171],[86.09007,20.61838],[86.09728,20.61739],[86.09928,20.61664],[86.10007,20.61416],[86.10312,20.61422],[86.10422,20.61554],[86.10618,20.61441],[86.10755,20.61756],[86.1171,20.61376],[86.12194,20.62516],[86.12627,20.62716],[86.1306,20.6318],[86.14046,20.63414],[86.14191,20.63957],[86.14505,20.64003],[86.14478,20.64233],[86.15546,20.64545],[86.15692,20.64811],[86.16111,20.64956],[86.1644,20.64942],[86.16526,20.64347],[86.17398,20.64457],[86.17511,20.64517],[86.17354,20.6507],[86.17503,20.65301],[86.18002,20.65687],[86.17881,20.6527],[86.18062,20.65099],[86.18293,20.6557],[86.18729,20.65812],[86.19094,20.65563],[86.18891,20.63924],[86.18594,20.64374],[86.18161,20.64219],[86.18214,20.63775],[86.16742,20.63971],[86.16369,20.63964],[86.16422,20.63797],[86.17247,20.63531],[86.17321,20.63641],[86.17762,20.63567],[86.18516,20.63222],[86.18356,20.62596],[86.18841,20.62547],[86.19393,20.6328],[86.20066,20.63046],[86.2015,20.63233],[86.20738,20.6273],[86.20536,20.61978],[86.20991,20.61771],[86.20855,20.61592],[86.21085,20.61719],[86.21306,20.61608],[86.21556,20.61178],[86.22209,20.60836],[86.23843,20.60946],[86.25073,20.60541],[86.25775,20.6011],[86.26006,20.59007],[86.26503,20.58812],[86.26649,20.58424],[86.2771,20.58361],[86.28184,20.5808],[86.28741,20.58455],[86.29646,20.58437],[86.29873,20.57918],[86.31426,20.58099],[86.31998,20.59108],[86.3133,20.5949],[86.31873,20.61198],[86.3169,20.61331],[86.3188,20.61618],[86.31637,20.62491],[86.31964,20.63037],[86.32552,20.62566],[86.32829,20.61106],[86.3303,20.60895],[86.33694,20.60805],[86.34469,20.61035],[86.34556,20.60732],[86.35435,20.60529],[86.36621,20.59515],[86.3769,20.59407],[86.38514,20.60078],[86.38468,20.60183],[86.392,20.60911],[86.39441,20.61467],[86.39348,20.61555],[86.39995,20.62414],[86.41046,20.62843],[86.42198,20.62507],[86.42165,20.63007],[86.41976,20.6301],[86.42031,20.63299],[86.41792,20.63209],[86.41802,20.63497],[86.41869,20.63627],[86.42156,20.63573],[86.42319,20.64129],[86.42653,20.64504],[86.43772,20.64634],[86.44322,20.64924],[86.4503,20.6477],[86.4556,20.65411],[86.45542,20.65836],[86.45333,20.65723],[86.45263,20.65985],[86.45521,20.67025],[86.4523,20.67519],[86.45855,20.68072],[86.46094,20.67892],[86.46352,20.67957],[86.46862,20.68931],[86.48115,20.68059],[86.48748,20.67945],[86.49779,20.68535],[86.51088,20.68743],[86.51253,20.68913],[86.51224,20.69678],[86.51396,20.69932],[86.51992,20.69881],[86.52372,20.68843],[86.52584,20.68821],[86.52857,20.69533],[86.54167,20.69407],[86.54658,20.70305],[86.55595,20.70659],[86.55524,20.70901],[86.55203,20.71099],[86.5519,20.71455],[86.54704,20.71801],[86.54591,20.72169],[86.54922,20.72441],[86.55156,20.72978],[86.55515,20.72988],[86.55723,20.72783],[86.5588,20.72867],[86.55741,20.73255],[86.56095,20.73824],[86.55895,20.73973],[86.55123,20.73673],[86.55118,20.73354],[86.54635,20.73008],[86.54312,20.73067],[86.54532,20.7327],[86.54372,20.73516],[86.53946,20.73351],[86.53808,20.73467],[86.54346,20.73796],[86.53901,20.74011],[86.54211,20.74847],[86.54075,20.75214],[86.55341,20.75596],[86.55692,20.7622],[86.55996,20.76223],[86.5609,20.76906],[86.56466,20.7744],[86.57297,20.77756],[86.57458,20.7763],[86.58212,20.77872],[86.58586,20.77752],[86.58648,20.77998],[86.60108,20.77239],[86.6086,20.77248],[86.60832,20.77801],[86.61495,20.77405],[86.61717,20.77516],[86.61391,20.78038],[86.62106,20.78088],[86.6212,20.78683],[86.62464,20.79269],[86.62218,20.79678],[86.61722,20.79455],[86.61401,20.79532],[86.61345,20.80229],[86.61526,20.80507],[86.62124,20.80452],[86.6233,20.8084],[86.62177,20.81035],[86.61788,20.81024],[86.61877,20.81421],[86.61554,20.81338],[86.61146,20.81802],[86.60934,20.82991],[86.60101,20.82992],[86.60086,20.84512],[86.59364,20.85751],[86.58737,20.85622],[86.5763,20.86227],[86.56688,20.86434],[86.54361,20.86036],[86.5282,20.86765],[86.52383,20.86707],[86.51973,20.86946],[86.51535,20.86867],[86.51211,20.87046],[86.50195,20.86542],[86.4967,20.86777],[86.49441,20.86713],[86.48222,20.85549],[86.47941,20.86003],[86.47411,20.85872],[86.46809,20.86059],[86.46139,20.85596],[86.46019,20.84958],[86.45543,20.84451],[86.4506,20.8435],[86.44506,20.84428],[86.43597,20.8488],[86.42611,20.84691],[86.42163,20.85567],[86.40802,20.85761],[86.39958,20.86316],[86.3905,20.86504],[86.38625,20.86506],[86.37926,20.86147],[86.36951,20.85983],[86.36043,20.85247],[86.35533,20.85075],[86.34736,20.85307],[86.33423,20.86228],[86.32844,20.86202],[86.32792,20.86756],[86.33593,20.87229],[86.33451,20.8777],[86.32013,20.87691],[86.31247,20.88574],[86.31076,20.89533],[86.29842,20.90077],[86.28743,20.89953],[86.28291,20.90152],[86.28036,20.90523],[86.27877,20.91518],[86.27708,20.91736],[86.27761,20.92606],[86.28595,20.94135],[86.28878,20.95836],[86.28854,20.96691],[86.28556,20.97391],[86.28433,20.98425],[86.28835,20.99367],[86.28972,21.00978],[86.28496,21.01939],[86.26065,21.03939],[86.24774,21.04107],[86.23925,21.03939],[86.2344,21.04034],[86.22963,21.04208],[86.21789,21.05215],[86.20624,21.05837],[86.19874,21.05985],[86.19656,21.05751],[86.19199,21.05707],[86.17721,21.0628],[86.1583,21.06497],[86.14506,21.07338],[86.13358,21.07638],[86.12996,21.06743],[86.12375,21.06762],[86.12093,21.06942],[86.11753,21.06806],[86.11344,21.05841],[86.11071,21.05618],[86.10713,21.05878],[86.10498,21.05668],[86.10306,21.05805],[86.09337,21.05393],[86.09028,21.04323],[86.0905,21.03618],[86.08668,21.0265],[86.08833,21.0232],[86.08694,21.02016],[86.08208,21.01911],[86.08313,21.0158],[86.06266,21.02],[86.05528,21.02446],[86.05336,21.02123],[86.04817,21.02261],[86.03639,21.04066],[86.03662,21.04401],[86.03401,21.04742],[86.03503,21.04947],[86.03281,21.05263],[86.03381,21.05632],[86.03707,21.05672],[86.03847,21.0593],[86.03309,21.06457],[86.03359,21.06678],[86.03103,21.07136],[86.02846,21.07118],[86.02694,21.07303],[86.03024,21.07886],[86.03117,21.08235],[86.02983,21.08356],[86.03209,21.08673],[86.03363,21.09433],[86.04681,21.10155],[86.05096,21.11744],[86.0707,21.12989],[86.07463,21.13086],[86.07501,21.15501],[86.07999,21.16448],[86.08417,21.16348],[86.08767,21.16503]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"357","area_level":"District","area_name":"Jharsuguda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.3601,22.03664],[84.35565,22.03866],[84.34776,22.03624],[84.34326,22.03736],[84.33688,22.03352],[84.3261,22.03898],[84.32045,22.03953],[84.29734,22.03605],[84.29365,22.03268],[84.29181,22.02336],[84.28672,22.01615],[84.28504,22.01471],[84.26783,22.01572],[84.26802,22.00894],[84.26318,22.00815],[84.25773,22.00387],[84.25595,21.9987],[84.24126,21.98032],[84.23765,21.9779],[84.23611,21.97935],[84.23619,21.97781],[84.22965,21.97455],[84.22737,21.9752],[84.22782,21.97667],[84.22395,21.97452],[84.21397,21.97827],[84.20373,21.9777],[84.20065,21.98141],[84.20091,21.98565],[84.19938,21.98673],[84.19566,21.98645],[84.1892,21.99033],[84.1835,21.99107],[84.18038,21.99443],[84.17735,21.99364],[84.17413,21.99581],[84.17426,21.99726],[84.1713,21.99713],[84.17181,21.99862],[84.16699,22.00189],[84.16647,22.00055],[84.15983,22.00089],[84.15491,21.99864],[84.14591,22.0003],[84.14413,21.99896],[84.14103,22.00032],[84.13626,21.99874],[84.13205,22.00314],[84.12769,22.00511],[84.1247,22.00459],[84.1241,22.00653],[84.12098,22.00734],[84.1174,22.01304],[84.11023,22.00229],[84.10601,21.99215],[84.10287,21.99749],[84.09454,21.99634],[84.09267,21.99917],[84.0888,21.99939],[84.08688,21.99794],[84.0883,21.99546],[84.08636,21.99017],[84.08121,21.99137],[84.07018,21.98971],[84.06881,21.9847],[84.07224,21.98432],[84.0746,21.98134],[84.08409,21.97989],[84.08491,21.9713],[84.08759,21.9636],[84.08678,21.95961],[84.08107,21.95703],[84.07852,21.95388],[84.07683,21.943],[84.07861,21.93751],[84.07137,21.93633],[84.06705,21.93735],[84.06553,21.93506],[84.06132,21.93438],[84.06062,21.93677],[84.05359,21.9371],[84.04751,21.94397],[84.04615,21.94844],[84.03531,21.94882],[84.02707,21.95395],[84.00498,21.92326],[83.97615,21.9054],[83.97147,21.91005],[83.96515,21.92073],[83.95888,21.94256],[83.93461,21.9442],[83.92823,21.94252],[83.91681,21.94491],[83.90459,21.94426],[83.8963,21.94599],[83.87695,21.92311],[83.86188,21.92454],[83.85174,21.92362],[83.8644,21.91124],[83.86209,21.90928],[83.85872,21.90964],[83.858,21.90723],[83.85437,21.90687],[83.85399,21.90413],[83.85194,21.90273],[83.84603,21.90419],[83.84303,21.89858],[83.83923,21.8968],[83.83763,21.89354],[83.8309,21.89605],[83.82906,21.87736],[83.82513,21.87919],[83.82076,21.88413],[83.81634,21.88484],[83.81401,21.88223],[83.8094,21.86072],[83.80952,21.85781],[83.81205,21.85767],[83.81279,21.85461],[83.80723,21.85666],[83.79916,21.86767],[83.799,21.87016],[83.79375,21.86664],[83.77866,21.85333],[83.7669,21.83893],[83.75834,21.83619],[83.73826,21.81679],[83.72794,21.80269],[83.72904,21.79409],[83.72117,21.79049],[83.71921,21.78598],[83.71122,21.78903],[83.70281,21.7896],[83.70152,21.79128],[83.6888,21.79039],[83.68682,21.80168],[83.67282,21.8089],[83.66706,21.80836],[83.63638,21.81906],[83.63448,21.826],[83.62661,21.83927],[83.62803,21.84574],[83.62326,21.84869],[83.61916,21.84669],[83.60901,21.84582],[83.6102,21.83775],[83.6075,21.83285],[83.59659,21.83231],[83.58997,21.82585],[83.58058,21.82952],[83.57885,21.83245],[83.57615,21.83119],[83.57163,21.83204],[83.56318,21.8374],[83.55395,21.84039],[83.54163,21.83826],[83.53237,21.83144],[83.53045,21.82755],[83.5401,21.82204],[83.53741,21.81308],[83.54273,21.80573],[83.54043,21.79905],[83.5287,21.79955],[83.52587,21.7983],[83.52259,21.79945],[83.50783,21.80681],[83.4937,21.81801],[83.49208,21.81759],[83.49374,21.813],[83.4878,21.80731],[83.48712,21.80036],[83.48365,21.79419],[83.47761,21.79083],[83.47547,21.79126],[83.47279,21.78747],[83.46936,21.78727],[83.47617,21.78078],[83.48218,21.7656],[83.47605,21.75238],[83.48744,21.74895],[83.48932,21.74539],[83.4852,21.74517],[83.48018,21.73396],[83.4813,21.73113],[83.47784,21.73054],[83.47336,21.72064],[83.46106,21.70909],[83.45948,21.69855],[83.4517,21.69542],[83.44077,21.6989],[83.43165,21.69991],[83.42882,21.69462],[83.42483,21.69248],[83.42287,21.68884],[83.42385,21.68721],[83.42216,21.68705],[83.41869,21.68065],[83.43127,21.67421],[83.44248,21.66129],[83.44813,21.65754],[83.46976,21.64873],[83.48662,21.64413],[83.4895,21.64723],[83.50387,21.65366],[83.51638,21.66407],[83.52531,21.67408],[83.53341,21.68808],[83.53907,21.71817],[83.54421,21.72909],[83.55599,21.7426],[83.56635,21.74414],[83.57655,21.73978],[83.59039,21.73827],[83.60409,21.73102],[83.6369,21.72672],[83.64828,21.72329],[83.65346,21.72094],[83.66455,21.71075],[83.6776,21.7103],[83.69228,21.70188],[83.69831,21.69568],[83.71333,21.65723],[83.71969,21.64838],[83.72978,21.62605],[83.74103,21.61832],[83.75095,21.60591],[83.7659,21.59784],[83.77251,21.59099],[83.77652,21.58343],[83.79828,21.56434],[83.8074,21.5917],[83.81072,21.59478],[83.82708,21.59361],[83.83983,21.58695],[83.8523,21.58605],[83.87543,21.57714],[83.89506,21.57585],[83.9055,21.57696],[83.91568,21.58058],[83.94074,21.58184],[83.95561,21.57585],[83.96329,21.5766],[83.97091,21.58372],[83.97451,21.59822],[83.97024,21.63864],[83.97228,21.65785],[83.96767,21.67318],[83.96649,21.68908],[83.97272,21.70405],[83.96724,21.7084],[83.94754,21.71739],[83.94399,21.7219],[83.94182,21.72967],[83.95396,21.7337],[83.95273,21.73834],[83.95462,21.74306],[83.95961,21.74365],[83.96555,21.74935],[83.96893,21.75541],[83.96894,21.76141],[83.97323,21.76225],[83.97821,21.75684],[83.98298,21.75712],[83.9797,21.77077],[83.97958,21.78139],[83.99382,21.77721],[84.0001,21.77366],[84.00486,21.782],[84.00525,21.78779],[84.01971,21.78575],[84.0242,21.78264],[84.02511,21.77115],[84.03267,21.76591],[84.03461,21.76284],[84.03271,21.75745],[84.03615,21.75605],[84.04007,21.75799],[84.04123,21.76093],[84.04617,21.76264],[84.0557,21.77409],[84.06448,21.77392],[84.07557,21.77068],[84.08772,21.77148],[84.0981,21.78072],[84.1149,21.78821],[84.12269,21.78323],[84.13105,21.78311],[84.14541,21.7757],[84.15184,21.77689],[84.15635,21.77451],[84.15875,21.77786],[84.16026,21.7857],[84.16299,21.78775],[84.17402,21.79001],[84.1757,21.78864],[84.17788,21.79085],[84.18224,21.78933],[84.1894,21.79095],[84.19372,21.79548],[84.21259,21.79408],[84.21442,21.79951],[84.22709,21.79983],[84.23649,21.80648],[84.23963,21.80307],[84.25186,21.79692],[84.25345,21.7896],[84.25625,21.7871],[84.25616,21.78412],[84.26024,21.78152],[84.2607,21.77428],[84.26385,21.76597],[84.26831,21.76359],[84.27387,21.76318],[84.2801,21.76884],[84.2866,21.77148],[84.28931,21.78436],[84.29635,21.79158],[84.29825,21.79857],[84.31095,21.80818],[84.31433,21.82337],[84.32362,21.82875],[84.32784,21.83308],[84.3293,21.84173],[84.32622,21.85148],[84.32918,21.86021],[84.32746,21.8635],[84.33904,21.88116],[84.34767,21.89943],[84.35206,21.91749],[84.35782,21.92333],[84.36124,21.92337],[84.36284,21.9257],[84.36546,21.9332],[84.36615,21.95137],[84.37037,21.95239],[84.37223,21.95771],[84.36797,21.97215],[84.36475,21.97463],[84.36776,21.97779],[84.36232,21.98355],[84.3657,21.98265],[84.37123,21.9778],[84.37639,21.97738],[84.37873,21.97877],[84.37893,21.98287],[84.37418,21.98888],[84.37644,21.9907],[84.37678,21.99789],[84.37954,22.00098],[84.38136,22.01597],[84.39087,22.02368],[84.37132,22.02859],[84.3601,22.03664]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"358","area_level":"District","area_name":"Kalahandi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.48807,20.45305],[83.4858,20.45424],[83.44516,20.41831],[83.42223,20.40305],[83.41778,20.39695],[83.4136,20.37947],[83.40834,20.36788],[83.40441,20.36394],[83.39535,20.35925],[83.3874,20.34696],[83.38301,20.345],[83.36949,20.34517],[83.3641,20.34327],[83.36259,20.33965],[83.36339,20.32828],[83.36153,20.31766],[83.35484,20.31604],[83.34141,20.31684],[83.32853,20.31021],[83.31366,20.30497],[83.30015,20.3052],[83.29359,20.29552],[83.28897,20.28472],[83.28489,20.27991],[83.26312,20.26771],[83.24873,20.26479],[83.23795,20.257],[83.23479,20.25281],[83.23424,20.24544],[83.23957,20.23402],[83.23915,20.22965],[83.23104,20.21938],[83.22506,20.20449],[83.22028,20.201],[83.20451,20.19548],[83.20099,20.19198],[83.19507,20.18027],[83.18952,20.17618],[83.17365,20.17128],[83.16766,20.17104],[83.15528,20.17425],[83.14478,20.16935],[83.14372,20.17408],[83.13974,20.18012],[83.13309,20.18441],[83.1268,20.19485],[83.11301,20.19538],[83.10157,20.19209],[83.09107,20.20035],[83.08847,20.19967],[83.08609,20.19211],[83.06512,20.19082],[83.06075,20.18597],[83.05506,20.18895],[83.05222,20.18861],[83.04609,20.18638],[83.04403,20.18313],[83.03873,20.18218],[83.03443,20.1867],[83.02945,20.17767],[83.02373,20.17437],[83.02121,20.17594],[83.01582,20.17175],[83.00174,20.17676],[82.99388,20.17567],[82.9905,20.17888],[82.97989,20.17636],[82.97569,20.18065],[82.96421,20.18029],[82.95791,20.17723],[82.94863,20.17746],[82.94369,20.17392],[82.93183,20.17948],[82.92616,20.18017],[82.92173,20.17503],[82.92173,20.1729],[82.91102,20.16778],[82.90846,20.15562],[82.90958,20.14736],[82.89525,20.14908],[82.88388,20.15823],[82.87949,20.15858],[82.87396,20.15659],[82.85791,20.1619],[82.85099,20.16074],[82.83584,20.16497],[82.82292,20.16521],[82.82046,20.15957],[82.81609,20.12847],[82.81922,20.12233],[82.82046,20.11281],[82.81658,20.11033],[82.81358,20.10155],[82.81088,20.09966],[82.80692,20.09973],[82.7883,20.10339],[82.77941,20.0866],[82.76785,20.07671],[82.75494,20.05486],[82.73971,20.05261],[82.74314,20.04755],[82.74679,20.04592],[82.7481,20.04162],[82.74747,20.03619],[82.74432,20.03185],[82.74488,20.02461],[82.73928,20.0213],[82.72838,20.02355],[82.72047,20.00815],[82.71662,20.00643],[82.71545,19.99593],[82.71575,19.99227],[82.71814,19.98914],[82.71752,19.96555],[82.71461,19.95877],[82.71552,19.95363],[82.72049,19.94829],[82.71307,19.93846],[82.71118,19.92545],[82.71276,19.91852],[82.70737,19.91299],[82.70909,19.9056],[82.70741,19.90204],[82.71355,19.88344],[82.71405,19.87781],[82.72458,19.87554],[82.72173,19.87292],[82.71959,19.86743],[82.71979,19.85685],[82.71816,19.85359],[82.7114,19.85063],[82.71293,19.84481],[82.7114,19.84],[82.70555,19.83302],[82.69671,19.83061],[82.67802,19.83212],[82.66592,19.83039],[82.65216,19.83217],[82.6476,19.81954],[82.64175,19.81454],[82.63663,19.81293],[82.63282,19.80119],[82.62713,19.79366],[82.60378,19.78812],[82.60215,19.78112],[82.59529,19.77847],[82.59473,19.77239],[82.59687,19.7628],[82.59555,19.75998],[82.59966,19.75739],[82.60219,19.74704],[82.59298,19.74727],[82.58739,19.74473],[82.58063,19.73768],[82.57268,19.73367],[82.56924,19.73333],[82.56754,19.73525],[82.56303,19.72794],[82.56213,19.72547],[82.56366,19.72531],[82.56359,19.72156],[82.56797,19.71997],[82.56794,19.71525],[82.57307,19.71394],[82.57321,19.71193],[82.56822,19.70872],[82.56881,19.70017],[82.56718,19.69978],[82.56625,19.69177],[82.56767,19.69104],[82.56733,19.68454],[82.56848,19.68286],[82.57558,19.6827],[82.57694,19.68076],[82.56806,19.67109],[82.56543,19.66238],[82.5587,19.65289],[82.55572,19.64525],[82.55104,19.6446],[82.54573,19.64144],[82.54455,19.6425],[82.54226,19.63977],[82.53646,19.63968],[82.53252,19.63531],[82.52451,19.63222],[82.52743,19.62864],[82.53096,19.62844],[82.53168,19.62497],[82.53519,19.62266],[82.53487,19.62009],[82.53715,19.62047],[82.5397,19.61838],[82.53809,19.61565],[82.54726,19.61342],[82.5474,19.61212],[82.54587,19.60439],[82.54107,19.59861],[82.54194,19.59732],[82.54045,19.59489],[82.53673,19.59706],[82.53658,19.59231],[82.53316,19.59165],[82.53421,19.58929],[82.53056,19.5884],[82.52933,19.58493],[82.53566,19.57813],[82.54615,19.57932],[82.54612,19.58133],[82.54895,19.58195],[82.55817,19.5821],[82.55879,19.57443],[82.56209,19.57354],[82.56787,19.56618],[82.5646,19.55939],[82.567,19.55685],[82.56491,19.54964],[82.56617,19.54465],[82.57192,19.54258],[82.57265,19.5442],[82.57583,19.54391],[82.58018,19.54654],[82.58376,19.54602],[82.588,19.54046],[82.58966,19.54161],[82.60445,19.54181],[82.6118,19.53809],[82.61609,19.5388],[82.61749,19.53721],[82.61381,19.52534],[82.60933,19.52465],[82.60697,19.52077],[82.61496,19.5191],[82.62358,19.51966],[82.62795,19.5141],[82.64108,19.5125],[82.64655,19.50776],[82.64665,19.50624],[82.64299,19.50581],[82.64379,19.50284],[82.64165,19.50241],[82.63865,19.49403],[82.63375,19.49215],[82.6352,19.48652],[82.63297,19.48387],[82.63318,19.48177],[82.64288,19.48273],[82.64376,19.48037],[82.6462,19.48043],[82.64902,19.47746],[82.64964,19.45954],[82.65158,19.45951],[82.65415,19.45638],[82.66018,19.45712],[82.66083,19.44929],[82.66361,19.4445],[82.66844,19.44357],[82.6708,19.44123],[82.67187,19.44278],[82.67406,19.44203],[82.67392,19.43413],[82.67836,19.43428],[82.68251,19.43736],[82.68441,19.43157],[82.68845,19.42622],[82.68964,19.42015],[82.69668,19.416],[82.70828,19.41923],[82.70699,19.4146],[82.71155,19.41382],[82.7148,19.40907],[82.71551,19.40434],[82.71296,19.40183],[82.70613,19.40018],[82.71152,19.3912],[82.70681,19.3896],[82.7085,19.37862],[82.71341,19.37711],[82.71696,19.36979],[82.71168,19.36817],[82.71186,19.36347],[82.71417,19.35556],[82.71611,19.3561],[82.71695,19.35298],[82.72173,19.35244],[82.72498,19.35424],[82.72565,19.34504],[82.73226,19.34467],[82.73799,19.34887],[82.74139,19.34946],[82.74723,19.34174],[82.74819,19.33736],[82.75636,19.33295],[82.75678,19.32684],[82.77296,19.33182],[82.76896,19.3346],[82.77199,19.34034],[82.77776,19.34016],[82.77971,19.34306],[82.78602,19.34205],[82.78621,19.33848],[82.78871,19.33748],[82.78998,19.33288],[82.7951,19.3318],[82.79875,19.32896],[82.80563,19.33051],[82.8131,19.32936],[82.82252,19.32225],[82.82904,19.32402],[82.83401,19.32143],[82.83714,19.32471],[82.83931,19.32234],[82.84776,19.32433],[82.84871,19.32028],[82.84464,19.31899],[82.8438,19.31725],[82.85299,19.3078],[82.84131,19.30799],[82.84074,19.30537],[82.84374,19.30122],[82.83911,19.30118],[82.83608,19.29305],[82.83141,19.29102],[82.83074,19.28487],[82.826,19.28238],[82.83,19.2759],[82.82844,19.2677],[82.82455,19.26265],[82.82457,19.25618],[82.82124,19.25458],[82.81681,19.2566],[82.81531,19.25088],[82.80935,19.24649],[82.80391,19.2371],[82.80061,19.23772],[82.79867,19.23619],[82.81376,19.23078],[82.8215,19.2342],[82.8239,19.23927],[82.8286,19.23889],[82.82748,19.23722],[82.83083,19.23576],[82.83331,19.23702],[82.83313,19.23432],[82.83616,19.23641],[82.83728,19.23354],[82.83993,19.23265],[82.84067,19.22952],[82.84662,19.22416],[82.84557,19.21214],[82.8503,19.20678],[82.85784,19.20563],[82.86408,19.20728],[82.86863,19.20447],[82.87191,19.19913],[82.87883,19.19834],[82.88702,19.20066],[82.89204,19.20532],[82.89435,19.21106],[82.88644,19.21521],[82.88425,19.21809],[82.88837,19.21905],[82.89482,19.21723],[82.90777,19.22535],[82.90925,19.22783],[82.9082,19.23041],[82.91829,19.23856],[82.9131,19.2509],[82.90255,19.26402],[82.9053,19.26658],[82.90615,19.27031],[82.90163,19.27644],[82.90174,19.28334],[82.90427,19.28912],[82.91156,19.29592],[82.91983,19.29952],[82.92614,19.29698],[82.93298,19.30093],[82.9379,19.30684],[82.93637,19.31175],[82.9391,19.31582],[82.93841,19.32331],[82.94779,19.33532],[82.95365,19.34652],[82.95118,19.35171],[82.95218,19.35537],[82.94518,19.36376],[82.94848,19.37006],[82.94846,19.37538],[82.95485,19.38252],[82.9557,19.39247],[82.9499,19.39953],[82.93817,19.40334],[82.93587,19.40779],[82.93652,19.41471],[82.93486,19.41703],[82.93606,19.42518],[82.93348,19.42665],[82.93278,19.43146],[82.9286,19.42966],[82.92243,19.43347],[82.9214,19.43932],[82.92265,19.44068],[82.92511,19.44115],[82.92643,19.44427],[82.92921,19.44586],[82.93034,19.44372],[82.93494,19.45172],[82.93808,19.45055],[82.9384,19.44669],[82.97191,19.44787],[82.97552,19.45139],[82.97831,19.4494],[82.99703,19.46756],[82.99401,19.48454],[82.9971,19.48919],[82.99918,19.4978],[83.00616,19.49933],[83.00828,19.50157],[83.02545,19.50828],[83.02835,19.515],[83.02462,19.52407],[83.02832,19.53403],[83.03484,19.53838],[83.03663,19.5455],[83.03605,19.55001],[83.04062,19.55133],[83.04442,19.55652],[83.04958,19.55775],[83.05394,19.55686],[83.05789,19.55994],[83.06059,19.55893],[83.0704,19.56173],[83.07816,19.55927],[83.07726,19.5542],[83.08635,19.54531],[83.08804,19.53721],[83.09366,19.53992],[83.10073,19.53746],[83.10189,19.5426],[83.10796,19.53831],[83.10212,19.52794],[83.1026,19.52438],[83.10885,19.52517],[83.10907,19.52023],[83.11422,19.51457],[83.10719,19.50869],[83.12238,19.49784],[83.12481,19.49793],[83.12859,19.50635],[83.1354,19.5079],[83.1473,19.49495],[83.15239,19.49181],[83.15854,19.48375],[83.15939,19.48142],[83.14976,19.47345],[83.14845,19.4669],[83.15332,19.46384],[83.15268,19.4576],[83.16308,19.44485],[83.1651,19.43559],[83.1693,19.42714],[83.17339,19.42722],[83.17654,19.42463],[83.1805,19.4242],[83.1822,19.4218],[83.18519,19.42368],[83.18403,19.43054],[83.18506,19.4351],[83.18309,19.43709],[83.18499,19.44098],[83.18534,19.44725],[83.18241,19.4522],[83.1847,19.4516],[83.18395,19.45714],[83.18481,19.46112],[83.18669,19.46247],[83.18569,19.46368],[83.19123,19.46521],[83.19457,19.46118],[83.19499,19.45768],[83.19824,19.45855],[83.20246,19.45145],[83.20456,19.442],[83.20109,19.44209],[83.20156,19.43945],[83.20816,19.4405],[83.20968,19.43843],[83.2131,19.43826],[83.21334,19.43618],[83.21147,19.43502],[83.21613,19.43049],[83.21687,19.43942],[83.21919,19.44312],[83.21806,19.44462],[83.21457,19.44226],[83.2115,19.44356],[83.20929,19.44973],[83.20746,19.44807],[83.20429,19.45103],[83.2043,19.45406],[83.20106,19.4601],[83.20418,19.45966],[83.20477,19.46405],[83.20677,19.46633],[83.20574,19.46971],[83.20829,19.46918],[83.20492,19.4742],[83.2119,19.4782],[83.21442,19.4832],[83.21387,19.48579],[83.22022,19.49007],[83.21938,19.49582],[83.2246,19.49816],[83.22832,19.50594],[83.23314,19.50536],[83.23573,19.50718],[83.24554,19.50463],[83.24536,19.51364],[83.25343,19.52078],[83.25735,19.52817],[83.25652,19.53235],[83.25059,19.53539],[83.24831,19.53946],[83.25599,19.54729],[83.26378,19.54786],[83.2625,19.55437],[83.26589,19.55889],[83.26347,19.56244],[83.25552,19.56506],[83.25299,19.56998],[83.25831,19.57701],[83.26648,19.5749],[83.26935,19.57741],[83.26714,19.58287],[83.26927,19.58694],[83.26575,19.59042],[83.26634,19.60112],[83.26966,19.60222],[83.27449,19.60038],[83.27597,19.59806],[83.27805,19.59838],[83.27962,19.59547],[83.28474,19.59234],[83.28553,19.58958],[83.2878,19.58883],[83.28616,19.59536],[83.28775,19.5971],[83.3002,19.59091],[83.30142,19.59233],[83.30331,19.59081],[83.3062,19.59256],[83.3193,19.59236],[83.3349,19.59657],[83.35796,19.6071],[83.36393,19.60472],[83.36473,19.59874],[83.3662,19.59757],[83.37294,19.59743],[83.37461,19.60011],[83.37506,19.6069],[83.37251,19.6154],[83.36933,19.61983],[83.3717,19.62133],[83.3733,19.63373],[83.37827,19.63996],[83.37801,19.65329],[83.38381,19.66791],[83.39351,19.6736],[83.39481,19.67739],[83.40243,19.6828],[83.41573,19.68481],[83.42201,19.69449],[83.42796,19.69633],[83.43226,19.71221],[83.44639,19.71962],[83.44292,19.72615],[83.44465,19.73253],[83.45215,19.73404],[83.45393,19.73708],[83.45445,19.77361],[83.45044,19.77975],[83.4544,19.78077],[83.45356,19.78308],[83.45095,19.78258],[83.45056,19.78458],[83.45302,19.78674],[83.45183,19.78808],[83.45652,19.78983],[83.45586,19.7933],[83.45888,19.79287],[83.45949,19.79663],[83.45482,19.79724],[83.45265,19.79555],[83.447,19.7965],[83.44651,19.7991],[83.43842,19.80256],[83.43678,19.80174],[83.43761,19.81334],[83.43347,19.8161],[83.43146,19.82601],[83.4336,19.82873],[83.43806,19.83019],[83.439,19.83325],[83.43449,19.83983],[83.42872,19.84398],[83.42364,19.84504],[83.42195,19.84955],[83.42385,19.85844],[83.43049,19.87097],[83.42443,19.87577],[83.42536,19.88217],[83.42278,19.8833],[83.42365,19.88456],[83.42007,19.88812],[83.42017,19.89202],[83.41829,19.89202],[83.41241,19.89758],[83.41239,19.90052],[83.40949,19.90062],[83.41317,19.90671],[83.411,19.90699],[83.41247,19.90831],[83.41019,19.9089],[83.41055,19.91107],[83.40854,19.90971],[83.40804,19.91373],[83.40591,19.91549],[83.40413,19.92089],[83.4185,19.93438],[83.42315,19.92847],[83.4325,19.93255],[83.43594,19.93237],[83.43767,19.93037],[83.44207,19.93358],[83.44143,19.94686],[83.4458,19.95147],[83.44378,19.95382],[83.44371,19.95701],[83.44623,19.97328],[83.45145,19.97368],[83.45642,19.97234],[83.45761,19.96952],[83.4648,19.96944],[83.46895,19.96651],[83.47299,19.96659],[83.47362,19.96331],[83.47946,19.96566],[83.48093,19.96318],[83.49516,19.96047],[83.50218,19.97168],[83.50355,19.97683],[83.5035,19.9848],[83.49991,19.98655],[83.50059,19.99363],[83.50625,20.00082],[83.52314,20.01649],[83.54237,20.02068],[83.54829,20.0359],[83.55044,20.03635],[83.54819,20.04422],[83.55428,20.05381],[83.5622,20.05069],[83.56867,20.05629],[83.56841,20.05947],[83.57245,20.06581],[83.56674,20.07246],[83.56832,20.07526],[83.57568,20.07976],[83.57219,20.08559],[83.5834,20.09108],[83.57868,20.09677],[83.58318,20.09615],[83.58797,20.09917],[83.58411,20.10428],[83.58399,20.10761],[83.58059,20.10763],[83.58442,20.11414],[83.59475,20.10907],[83.59671,20.10435],[83.59879,20.1031],[83.61434,20.10334],[83.61625,20.09762],[83.61919,20.09798],[83.62801,20.09417],[83.63578,20.08729],[83.64662,20.09283],[83.64842,20.09658],[83.66391,20.10687],[83.67571,20.11108],[83.68078,20.10967],[83.69222,20.09992],[83.69828,20.09864],[83.7032,20.10105],[83.7107,20.10158],[83.71244,20.10254],[83.71519,20.11093],[83.71903,20.11497],[83.71508,20.12427],[83.71577,20.12915],[83.72005,20.13113],[83.72649,20.12537],[83.73199,20.13782],[83.73064,20.14363],[83.73268,20.14736],[83.74297,20.1497],[83.74711,20.15698],[83.76245,20.16426],[83.76671,20.16439],[83.76977,20.16056],[83.77346,20.15958],[83.77752,20.17247],[83.7821,20.17308],[83.78966,20.17882],[83.78899,20.18874],[83.79079,20.19313],[83.7827,20.2125],[83.77975,20.21127],[83.77765,20.20645],[83.77075,20.20566],[83.76177,20.20834],[83.75526,20.20671],[83.74966,20.20997],[83.74442,20.20782],[83.73129,20.20969],[83.73496,20.21806],[83.7402,20.22219],[83.7188,20.2371],[83.72136,20.23681],[83.72497,20.2414],[83.72284,20.25203],[83.71825,20.25292],[83.71769,20.2551],[83.71747,20.29028],[83.71602,20.29149],[83.71447,20.30166],[83.70953,20.31082],[83.70894,20.33334],[83.70256,20.34124],[83.70047,20.35195],[83.70235,20.36102],[83.70586,20.36822],[83.69789,20.37292],[83.69196,20.37119],[83.68595,20.37633],[83.67979,20.37602],[83.66088,20.38087],[83.65407,20.38409],[83.65091,20.38852],[83.64756,20.38027],[83.65045,20.37955],[83.65365,20.37179],[83.65224,20.36658],[83.64911,20.36496],[83.64409,20.36754],[83.63764,20.36663],[83.63098,20.36882],[83.6263,20.36708],[83.62227,20.36288],[83.62212,20.35662],[83.6241,20.3527],[83.62167,20.3506],[83.60207,20.3576],[83.59776,20.3578],[83.5956,20.36064],[83.59402,20.35896],[83.58629,20.36325],[83.57879,20.36483],[83.57645,20.363],[83.57531,20.36861],[83.57112,20.37614],[83.57004,20.38741],[83.56618,20.38709],[83.56446,20.39335],[83.55767,20.39462],[83.5548,20.39971],[83.54812,20.40149],[83.54644,20.39807],[83.54354,20.39678],[83.5419,20.3984],[83.53575,20.39906],[83.52047,20.40449],[83.51921,20.40614],[83.51962,20.41169],[83.49934,20.41613],[83.49396,20.40615],[83.48989,20.40514],[83.48733,20.41011],[83.4876,20.41778],[83.48972,20.42119],[83.48909,20.42716],[83.49001,20.42936],[83.49626,20.43226],[83.49746,20.4344],[83.49496,20.43428],[83.49372,20.43752],[83.49501,20.44026],[83.49277,20.44302],[83.49434,20.44409],[83.49429,20.44729],[83.49084,20.4529],[83.48807,20.45305]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"359","area_level":"District","area_name":"Kandhamala","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.34289,20.67041],[84.33734,20.67276],[84.33903,20.67966],[84.33096,20.6831],[84.32628,20.68776],[84.31448,20.6897],[84.30363,20.6882],[84.2947,20.68567],[84.28669,20.68042],[84.28126,20.67443],[84.27656,20.67251],[84.27319,20.66804],[84.27492,20.66189],[84.27705,20.65971],[84.27714,20.65129],[84.27947,20.64751],[84.28043,20.63547],[84.27182,20.63607],[84.26208,20.61998],[84.26365,20.61637],[84.25573,20.60297],[84.25662,20.60181],[84.2366,20.59324],[84.23183,20.58814],[84.23108,20.58494],[84.22515,20.58193],[84.21459,20.58333],[84.21147,20.58232],[84.20036,20.58525],[84.18559,20.58439],[84.17579,20.59928],[84.17117,20.59559],[84.16028,20.59202],[84.15233,20.58506],[84.15124,20.58033],[84.14474,20.578],[84.14133,20.57773],[84.13456,20.58267],[84.12133,20.58107],[84.11257,20.58258],[84.10464,20.59197],[84.09607,20.5904],[84.0849,20.58471],[84.08166,20.58447],[84.07817,20.58732],[84.07357,20.58693],[84.06992,20.59013],[84.06354,20.5889],[84.06015,20.58993],[84.03522,20.58175],[84.03299,20.57901],[84.03375,20.57646],[84.01884,20.57128],[84.01485,20.5682],[84.00487,20.56867],[83.99946,20.57043],[83.98404,20.58011],[83.97947,20.58604],[83.96548,20.58701],[83.946,20.58182],[83.93797,20.5842],[83.93149,20.58881],[83.92947,20.59623],[83.94061,20.6047],[83.93189,20.60615],[83.92134,20.61054],[83.9128,20.60224],[83.91046,20.59277],[83.91237,20.57952],[83.89643,20.58306],[83.88523,20.58031],[83.8736,20.5825],[83.85637,20.57234],[83.85522,20.57026],[83.85704,20.56315],[83.84923,20.55648],[83.84122,20.54525],[83.83214,20.54513],[83.8232,20.54916],[83.81962,20.54448],[83.82005,20.54009],[83.82462,20.53564],[83.82348,20.53125],[83.81963,20.52677],[83.81925,20.52213],[83.8134,20.52161],[83.80548,20.50892],[83.79563,20.50907],[83.80327,20.50127],[83.80632,20.49502],[83.80759,20.4896],[83.80615,20.48689],[83.80765,20.48584],[83.8108,20.47508],[83.81108,20.46291],[83.82816,20.45219],[83.82506,20.45056],[83.81974,20.45091],[83.81312,20.45505],[83.80747,20.44618],[83.81489,20.43795],[83.81454,20.43629],[83.80609,20.43143],[83.79294,20.43336],[83.79141,20.44101],[83.78569,20.44209],[83.78357,20.43949],[83.78481,20.43614],[83.78105,20.4263],[83.78298,20.41416],[83.78006,20.40728],[83.77685,20.41112],[83.76782,20.41326],[83.76436,20.41925],[83.75469,20.42611],[83.74615,20.42644],[83.74644,20.42077],[83.74151,20.42268],[83.73801,20.42219],[83.73459,20.42659],[83.7323,20.42527],[83.72773,20.42669],[83.72674,20.43015],[83.72805,20.43262],[83.71921,20.43523],[83.71491,20.43009],[83.69788,20.41705],[83.69202,20.4142],[83.68603,20.4146],[83.68124,20.42036],[83.67938,20.42824],[83.67494,20.4303],[83.66601,20.42287],[83.66537,20.41864],[83.6626,20.41754],[83.66246,20.41432],[83.65823,20.41419],[83.65838,20.41203],[83.66103,20.41093],[83.65973,20.40698],[83.66173,20.404],[83.658,20.39781],[83.65812,20.39488],[83.65562,20.39444],[83.65497,20.38887],[83.65091,20.38852],[83.65341,20.38468],[83.66088,20.38087],[83.6791,20.37616],[83.68595,20.37633],[83.69196,20.37119],[83.69483,20.37305],[83.69897,20.37259],[83.70606,20.36798],[83.70235,20.36102],[83.70047,20.35195],[83.70256,20.34124],[83.70894,20.33334],[83.70953,20.31082],[83.71447,20.30166],[83.71602,20.29149],[83.71747,20.29028],[83.71769,20.2551],[83.71825,20.25292],[83.72284,20.25203],[83.72497,20.2414],[83.72136,20.23681],[83.7188,20.2371],[83.7402,20.22219],[83.73496,20.21806],[83.73129,20.20969],[83.74442,20.20782],[83.74966,20.20997],[83.75526,20.20671],[83.76177,20.20834],[83.77075,20.20566],[83.77765,20.20645],[83.77975,20.21127],[83.7827,20.2125],[83.79079,20.19313],[83.78899,20.18874],[83.78966,20.17882],[83.7821,20.17308],[83.77752,20.17247],[83.77346,20.15958],[83.76977,20.16056],[83.76671,20.16439],[83.76245,20.16426],[83.74711,20.15698],[83.74297,20.1497],[83.73268,20.14736],[83.73064,20.14363],[83.73199,20.13782],[83.72649,20.12537],[83.72005,20.13113],[83.71577,20.12915],[83.71508,20.12427],[83.71903,20.11497],[83.71519,20.11093],[83.71244,20.10254],[83.7107,20.10158],[83.7032,20.10105],[83.69828,20.09864],[83.69222,20.09992],[83.68078,20.10967],[83.67571,20.11108],[83.66391,20.10687],[83.64842,20.09658],[83.64662,20.09283],[83.63578,20.08729],[83.62801,20.09417],[83.61919,20.09798],[83.61625,20.09762],[83.61434,20.10334],[83.59879,20.1031],[83.59671,20.10435],[83.59475,20.10907],[83.58442,20.11414],[83.58059,20.10763],[83.58399,20.10761],[83.58411,20.10428],[83.58797,20.09917],[83.58318,20.09615],[83.57868,20.09677],[83.5834,20.09108],[83.57219,20.08559],[83.57568,20.07976],[83.56832,20.07526],[83.56674,20.07246],[83.57245,20.06581],[83.56841,20.05947],[83.56867,20.05629],[83.5622,20.05069],[83.55428,20.05381],[83.54819,20.04422],[83.55044,20.03635],[83.54829,20.0359],[83.54237,20.02068],[83.52314,20.01649],[83.50625,20.00082],[83.50059,19.99363],[83.49991,19.98655],[83.5035,19.9848],[83.50355,19.97683],[83.50218,19.97168],[83.49516,19.96047],[83.49954,19.95809],[83.5056,19.95865],[83.51165,19.95488],[83.5143,19.9551],[83.53373,19.94757],[83.53694,19.94303],[83.54991,19.93609],[83.55188,19.93082],[83.55986,19.92991],[83.55929,19.92414],[83.5562,19.91929],[83.55356,19.91031],[83.53807,19.89694],[83.53049,19.88032],[83.52672,19.87771],[83.5288,19.8652],[83.52798,19.85493],[83.53038,19.85357],[83.53331,19.8543],[83.53466,19.85804],[83.53964,19.85211],[83.53963,19.84805],[83.54374,19.84279],[83.55802,19.83788],[83.56849,19.83128],[83.58587,19.82516],[83.58528,19.82324],[83.59751,19.82834],[83.59797,19.83306],[83.59981,19.83446],[83.60494,19.82606],[83.60689,19.8161],[83.61539,19.81696],[83.61902,19.81454],[83.61984,19.80463],[83.61661,19.8027],[83.61537,19.79995],[83.61795,19.78724],[83.62152,19.77976],[83.62105,19.77541],[83.61869,19.7687],[83.608,19.75975],[83.60778,19.75056],[83.61708,19.74589],[83.62551,19.74484],[83.6321,19.73087],[83.63161,19.71714],[83.64147,19.70559],[83.64363,19.69677],[83.63491,19.67856],[83.63453,19.6714],[83.64579,19.65932],[83.64893,19.65752],[83.65432,19.66391],[83.66259,19.66494],[83.66301,19.66799],[83.66672,19.67058],[83.66923,19.67732],[83.69171,19.69069],[83.69501,19.69108],[83.71356,19.67447],[83.71685,19.67304],[83.71862,19.67436],[83.72245,19.67187],[83.72583,19.66205],[83.72819,19.66053],[83.72879,19.65486],[83.74221,19.65536],[83.74184,19.65909],[83.74436,19.65983],[83.74665,19.66421],[83.74903,19.66527],[83.74945,19.66892],[83.75593,19.6715],[83.75814,19.67501],[83.76296,19.67682],[83.762,19.68341],[83.76478,19.68922],[83.76318,19.69148],[83.76522,19.6937],[83.76499,19.69748],[83.76717,19.69905],[83.76449,19.7054],[83.76449,19.71242],[83.76638,19.7162],[83.77338,19.71564],[83.775,19.71281],[83.77813,19.71318],[83.77983,19.71103],[83.78796,19.71281],[83.79143,19.71096],[83.79354,19.71282],[83.79749,19.71313],[83.80326,19.7192],[83.81486,19.72096],[83.81811,19.71405],[83.82181,19.71119],[83.82987,19.71048],[83.83241,19.7069],[83.83662,19.71151],[83.84502,19.70938],[83.84259,19.70247],[83.84988,19.70075],[83.85018,19.69212],[83.85384,19.68569],[83.87286,19.67169],[83.88716,19.67309],[83.89629,19.67198],[83.90215,19.67339],[83.90551,19.67167],[83.91659,19.68095],[83.92159,19.67567],[83.92496,19.6761],[83.92709,19.67923],[83.93032,19.67872],[83.93213,19.67303],[83.93598,19.67155],[83.92381,19.66358],[83.934,19.65825],[83.94007,19.63525],[83.95496,19.63618],[83.95987,19.63165],[83.96388,19.63151],[83.96444,19.62505],[83.9664,19.62385],[83.98302,19.62211],[83.99128,19.62761],[84.00337,19.62883],[84.00965,19.61896],[84.01247,19.62472],[84.0238,19.63015],[84.02268,19.63154],[84.02549,19.63421],[84.02608,19.63761],[84.03541,19.63569],[84.04302,19.62761],[84.05707,19.62782],[84.06059,19.63437],[84.07795,19.63213],[84.08311,19.63295],[84.08619,19.6281],[84.09094,19.63089],[84.10048,19.62426],[84.10577,19.62328],[84.10617,19.6259],[84.11353,19.62608],[84.11496,19.62849],[84.1223,19.62748],[84.12376,19.63143],[84.12889,19.63221],[84.13378,19.63119],[84.1368,19.62875],[84.13821,19.6233],[84.13705,19.62093],[84.13978,19.61482],[84.14022,19.60769],[84.14787,19.5914],[84.14882,19.58999],[84.14927,19.59135],[84.1507,19.5908],[84.15304,19.58749],[84.15289,19.58349],[84.15652,19.58493],[84.15847,19.5817],[84.16167,19.58232],[84.16465,19.5868],[84.1639,19.58913],[84.17266,19.58925],[84.17839,19.58563],[84.18493,19.58716],[84.19744,19.59535],[84.20372,19.59341],[84.2069,19.59403],[84.20874,19.59165],[84.20482,19.57987],[84.20784,19.584],[84.21522,19.5851],[84.22657,19.57846],[84.23068,19.57373],[84.23388,19.57328],[84.23387,19.57697],[84.23931,19.57632],[84.2359,19.5821],[84.23272,19.59291],[84.23293,19.60463],[84.23641,19.60885],[84.23422,19.61102],[84.22724,19.61222],[84.22798,19.61362],[84.22397,19.62728],[84.22456,19.62955],[84.22836,19.63108],[84.23469,19.63064],[84.23628,19.63307],[84.23603,19.63796],[84.24116,19.63942],[84.2462,19.6474],[84.25048,19.65095],[84.25086,19.6547],[84.25001,19.65639],[84.23636,19.66021],[84.24057,19.66388],[84.23608,19.66852],[84.23104,19.66734],[84.22481,19.66909],[84.21691,19.67635],[84.21803,19.67916],[84.21419,19.68547],[84.20684,19.68167],[84.20102,19.68637],[84.20326,19.68738],[84.20292,19.69121],[84.19825,19.6981],[84.1949,19.69805],[84.19073,19.71129],[84.19236,19.7161],[84.19827,19.72337],[84.20173,19.73389],[84.1892,19.73746],[84.18149,19.73767],[84.16658,19.73487],[84.15261,19.72499],[84.1478,19.72988],[84.14633,19.73247],[84.14859,19.73413],[84.15151,19.74685],[84.14923,19.75671],[84.13016,19.78051],[84.13567,19.78277],[84.16079,19.78667],[84.17304,19.79344],[84.16524,19.80556],[84.17171,19.81148],[84.1717,19.81808],[84.17368,19.82354],[84.17986,19.8222],[84.18651,19.82318],[84.19993,19.83555],[84.18481,19.86053],[84.248,19.87167],[84.27748,19.88063],[84.2905,19.89581],[84.30626,19.90876],[84.30747,19.90189],[84.31123,19.89537],[84.31306,19.89583],[84.31595,19.89032],[84.31581,19.88728],[84.31837,19.88513],[84.31864,19.88032],[84.32098,19.88043],[84.32068,19.87761],[84.32252,19.87461],[84.32423,19.87482],[84.32419,19.87224],[84.32558,19.87286],[84.3267,19.87124],[84.32725,19.87312],[84.3354,19.86881],[84.33738,19.87064],[84.33727,19.86735],[84.33881,19.866],[84.33999,19.86793],[84.34159,19.86592],[84.34016,19.86391],[84.34406,19.8616],[84.35834,19.86347],[84.35711,19.85988],[84.37074,19.84744],[84.38462,19.84088],[84.42163,19.83767],[84.42402,19.8359],[84.42699,19.83903],[84.43139,19.84016],[84.43907,19.83176],[84.44286,19.83065],[84.44866,19.83492],[84.4429,19.84457],[84.45425,19.84989],[84.46222,19.85732],[84.46105,19.86538],[84.45778,19.87207],[84.4621,19.88153],[84.45948,19.88629],[84.45638,19.9054],[84.45702,19.90838],[84.4609,19.91107],[84.46269,19.9154],[84.46103,19.92488],[84.46198,19.93097],[84.46422,19.93597],[84.46893,19.93986],[84.46462,19.94785],[84.46384,19.95423],[84.46258,19.9553],[84.45513,19.95197],[84.44707,19.95366],[84.44543,19.95552],[84.4433,19.95506],[84.43364,19.95988],[84.42703,19.95628],[84.42563,19.95798],[84.42443,19.95671],[84.41995,19.95747],[84.42073,19.95555],[84.41943,19.95538],[84.41596,19.95786],[84.41758,19.96029],[84.41234,19.95838],[84.41177,19.96018],[84.40953,19.95999],[84.40736,19.95841],[84.40503,19.96008],[84.40644,19.96193],[84.40446,19.96247],[84.40265,19.96016],[84.39765,19.96089],[84.39681,19.95692],[84.38995,19.95615],[84.38563,19.96202],[84.37643,19.96579],[84.37246,19.97313],[84.36599,19.97802],[84.35588,19.99065],[84.35068,19.98963],[84.35014,19.98766],[84.33677,19.97845],[84.32818,19.98074],[84.32263,19.98976],[84.32897,20.00086],[84.32811,20.00321],[84.33029,20.00756],[84.33641,20.00991],[84.33859,20.00872],[84.34127,20.01526],[84.35745,20.033],[84.36347,20.02577],[84.39307,20.04079],[84.41487,20.04519],[84.41796,20.04959],[84.41523,20.05145],[84.41573,20.06278],[84.40707,20.06722],[84.40403,20.07172],[84.40444,20.08367],[84.4092,20.08563],[84.41073,20.08462],[84.41483,20.09658],[84.41782,20.10036],[84.4162,20.10365],[84.41858,20.10987],[84.41751,20.11561],[84.42339,20.12048],[84.42754,20.12081],[84.42774,20.12448],[84.43012,20.12817],[84.42825,20.13435],[84.42936,20.13787],[84.4319,20.14179],[84.44055,20.14413],[84.44157,20.14671],[84.4359,20.15435],[84.43853,20.16211],[84.43266,20.17143],[84.43135,20.18012],[84.43151,20.18477],[84.43657,20.19436],[84.43464,20.2003],[84.4462,20.20527],[84.45927,20.18808],[84.45678,20.18207],[84.45329,20.18212],[84.45236,20.16792],[84.45393,20.16609],[84.48666,20.14065],[84.49597,20.14179],[84.50703,20.13849],[84.50925,20.13629],[84.5103,20.13716],[84.50817,20.14093],[84.50991,20.1462],[84.51346,20.15036],[84.52326,20.15238],[84.52592,20.14387],[84.53933,20.14035],[84.55559,20.14154],[84.56049,20.13854],[84.56321,20.14049],[84.56422,20.14549],[84.56287,20.15061],[84.559,20.15238],[84.55827,20.15726],[84.57999,20.16905],[84.58759,20.17155],[84.58507,20.18652],[84.57376,20.2069],[84.56257,20.21906],[84.55772,20.22706],[84.55487,20.22604],[84.54893,20.23191],[84.54198,20.25136],[84.5473,20.25907],[84.54387,20.27555],[84.55205,20.28399],[84.54283,20.32331],[84.52884,20.32202],[84.5211,20.32558],[84.51457,20.31906],[84.50934,20.32638],[84.51155,20.33779],[84.50907,20.33753],[84.50787,20.33384],[84.50497,20.3316],[84.49329,20.33355],[84.48662,20.33815],[84.48597,20.34685],[84.48322,20.34784],[84.4901,20.35066],[84.49374,20.35022],[84.4953,20.35837],[84.50131,20.35928],[84.51814,20.36924],[84.5191,20.3794],[84.52058,20.38136],[84.51727,20.3802],[84.51301,20.38269],[84.51143,20.38629],[84.51199,20.39279],[84.50973,20.39523],[84.49293,20.3951],[84.48164,20.38427],[84.46769,20.38975],[84.46085,20.4],[84.46146,20.41921],[84.45874,20.4234],[84.45864,20.42746],[84.46016,20.43265],[84.46441,20.43598],[84.4647,20.44594],[84.45515,20.46627],[84.45076,20.46434],[84.44811,20.46522],[84.44243,20.47028],[84.43905,20.47656],[84.43049,20.47908],[84.42525,20.48479],[84.42484,20.48674],[84.42816,20.49108],[84.43452,20.49625],[84.43347,20.50887],[84.42443,20.51411],[84.41873,20.5196],[84.40683,20.52265],[84.40121,20.52828],[84.39515,20.52824],[84.38796,20.53054],[84.38927,20.5423],[84.38123,20.55868],[84.38427,20.56891],[84.39119,20.56666],[84.39403,20.57608],[84.39173,20.57966],[84.38531,20.57829],[84.37956,20.5884],[84.38094,20.59657],[84.3842,20.59819],[84.3797,20.60708],[84.3764,20.62188],[84.36977,20.63241],[84.36938,20.6346],[84.37256,20.64146],[84.36894,20.65079],[84.35637,20.66441],[84.35671,20.67118],[84.34582,20.66926],[84.34289,20.67041]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"36","area_level":"District","area_name":"Ludhiana","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.91527,31.01635],[75.90567,31.01677],[75.89773,31.00817],[75.89851,31.00478],[75.89546,31.00442],[75.89155,31.00811],[75.88455,31.00893],[75.86721,31.00815],[75.86494,31.00419],[75.85644,31.0043],[75.85619,31.00091],[75.82993,31.00025],[75.82916,30.99883],[75.82041,30.99829],[75.81751,30.99629],[75.79379,30.99403],[75.78175,30.99781],[75.77701,31.00107],[75.77758,31.00317],[75.77127,31.00303],[75.77256,31.00687],[75.77039,31.00945],[75.76231,31.00905],[75.76397,31.01305],[75.74439,31.01242],[75.73469,31.01064],[75.73524,31.00522],[75.71532,31.00436],[75.71654,31.00038],[75.703,30.99887],[75.70162,30.99822],[75.70357,30.99558],[75.68877,30.99454],[75.68785,30.99197],[75.67697,30.99143],[75.67382,30.98747],[75.66801,30.98486],[75.65242,30.98056],[75.64177,30.97976],[75.64257,30.97708],[75.6101,30.97505],[75.60627,30.96947],[75.59434,30.96856],[75.59343,30.97095],[75.58502,30.97021],[75.57565,30.97753],[75.54302,30.97589],[75.54308,30.96816],[75.53733,30.96762],[75.53709,30.96609],[75.53645,30.96851],[75.53246,30.97171],[75.51657,30.97612],[75.51013,30.97524],[75.50641,30.97633],[75.50619,30.97308],[75.50097,30.97236],[75.49903,30.96996],[75.49275,30.97023],[75.4883,30.97272],[75.48224,30.96979],[75.47621,30.97797],[75.47661,30.97998],[75.47407,30.98196],[75.46933,30.97974],[75.46813,30.97714],[75.46449,30.97831],[75.46436,30.97639],[75.46237,30.97634],[75.46247,30.97763],[75.4593,30.97716],[75.45906,30.98098],[75.4557,30.98362],[75.44848,30.98409],[75.44511,30.98162],[75.44123,30.98359],[75.43802,30.98139],[75.43184,30.98177],[75.42045,30.98696],[75.41404,30.98514],[75.40889,30.98005],[75.4049,30.982],[75.40169,30.99424],[75.39764,30.99666],[75.38374,30.98982],[75.37554,30.99486],[75.37484,30.99851],[75.37162,30.99815],[75.36735,30.99128],[75.35679,30.99377],[75.35748,30.98762],[75.35616,30.98442],[75.36309,30.97839],[75.36767,30.97181],[75.36269,30.9639],[75.36087,30.96343],[75.36236,30.9628],[75.36123,30.95904],[75.36424,30.95743],[75.3658,30.95225],[75.36627,30.94044],[75.37228,30.9413],[75.37221,30.93955],[75.37059,30.93958],[75.37159,30.93428],[75.36955,30.92972],[75.37367,30.9288],[75.37528,30.93169],[75.38253,30.92974],[75.37805,30.91243],[75.39329,30.90975],[75.39409,30.90419],[75.39649,30.90412],[75.39621,30.90137],[75.40473,30.89593],[75.40633,30.89159],[75.39861,30.88215],[75.39916,30.873],[75.39542,30.8715],[75.38346,30.86123],[75.37555,30.85851],[75.37287,30.8501],[75.36821,30.84529],[75.36935,30.84457],[75.36748,30.84176],[75.36746,30.83189],[75.37633,30.81862],[75.38105,30.81492],[75.3923,30.81191],[75.39605,30.80873],[75.3934,30.80186],[75.39054,30.784],[75.38433,30.76487],[75.37993,30.75402],[75.3775,30.75183],[75.37837,30.75077],[75.37544,30.74916],[75.37752,30.7394],[75.3731,30.73723],[75.37235,30.73435],[75.3761,30.73032],[75.37789,30.72394],[75.38506,30.7236],[75.38619,30.71806],[75.3836,30.71247],[75.37821,30.70881],[75.37293,30.70881],[75.37058,30.71092],[75.36846,30.70691],[75.36943,30.69168],[75.36734,30.68763],[75.36833,30.68483],[75.3764,30.67882],[75.37844,30.67265],[75.38201,30.66907],[75.38112,30.66287],[75.36974,30.64871],[75.37352,30.64447],[75.37372,30.64094],[75.37874,30.63965],[75.37642,30.62863],[75.37451,30.62641],[75.37655,30.62376],[75.38746,30.62584],[75.38787,30.62703],[75.39562,30.625],[75.3969,30.62411],[75.3948,30.62262],[75.39606,30.62095],[75.40121,30.6187],[75.40248,30.61292],[75.40167,30.60639],[75.39735,30.59383],[75.40643,30.58487],[75.40923,30.58387],[75.41653,30.58349],[75.42188,30.58523],[75.43094,30.58388],[75.43393,30.593],[75.43692,30.59067],[75.44219,30.59403],[75.44495,30.59174],[75.45403,30.601],[75.46109,30.59831],[75.46412,30.59927],[75.4643,30.60579],[75.46711,30.60561],[75.47662,30.6013],[75.48417,30.602],[75.49005,30.59844],[75.49583,30.59822],[75.49668,30.5974],[75.48751,30.58274],[75.50164,30.57359],[75.50495,30.57413],[75.50698,30.57259],[75.50964,30.57602],[75.50992,30.58027],[75.51312,30.58409],[75.51868,30.58719],[75.52254,30.58528],[75.52895,30.58505],[75.52678,30.57922],[75.52835,30.57095],[75.53272,30.56755],[75.53703,30.56728],[75.54096,30.57843],[75.54884,30.58027],[75.55367,30.57993],[75.56586,30.57203],[75.57893,30.56961],[75.57988,30.57355],[75.5856,30.57528],[75.58958,30.58315],[75.60384,30.59415],[75.60947,30.59372],[75.60949,30.5949],[75.62679,30.60086],[75.63801,30.59432],[75.65481,30.59112],[75.67405,30.59588],[75.67833,30.59871],[75.68289,30.60605],[75.6981,30.6058],[75.70307,30.60319],[75.71146,30.60915],[75.72055,30.61173],[75.72806,30.61657],[75.72767,30.61788],[75.73355,30.6202],[75.73829,30.63169],[75.75208,30.63187],[75.76071,30.63743],[75.76996,30.63166],[75.78027,30.62822],[75.78215,30.62453],[75.78904,30.62347],[75.7973,30.62993],[75.79683,30.63201],[75.77999,30.64182],[75.77435,30.6491],[75.77293,30.65958],[75.76472,30.65856],[75.76305,30.66347],[75.76484,30.67031],[75.77129,30.67331],[75.78153,30.67113],[75.78091,30.6607],[75.78575,30.65677],[75.79107,30.6602],[75.80374,30.66433],[75.8123,30.66561],[75.81519,30.66411],[75.81789,30.66807],[75.81669,30.67405],[75.82228,30.67797],[75.81623,30.68695],[75.82184,30.69065],[75.83379,30.69232],[75.83786,30.67992],[75.84385,30.68039],[75.84635,30.6755],[75.85241,30.67014],[75.8557,30.66923],[75.85931,30.67052],[75.86682,30.67816],[75.87929,30.67625],[75.88087,30.67563],[75.88146,30.66663],[75.88326,30.66434],[75.89543,30.65957],[75.89502,30.65486],[75.89805,30.64748],[75.88665,30.64521],[75.88019,30.64199],[75.88005,30.6406],[75.87246,30.63924],[75.87235,30.62887],[75.88818,30.62041],[75.88668,30.60944],[75.88785,30.607],[75.90278,30.60371],[75.90356,30.60684],[75.90999,30.61189],[75.9113,30.6102],[75.9152,30.61085],[75.91716,30.60858],[75.91968,30.60979],[75.92347,30.6087],[75.92299,30.60669],[75.92928,30.59725],[75.9209,30.59193],[75.92684,30.58426],[75.9254,30.57789],[75.93537,30.56819],[75.94774,30.57043],[75.94861,30.5725],[75.95307,30.57453],[75.96099,30.59039],[75.97193,30.59245],[75.9828,30.59865],[75.98689,30.59832],[76.00046,30.6033],[76.00451,30.6065],[76.01008,30.61574],[76.02787,30.61531],[76.02953,30.61394],[76.02958,30.61049],[76.03257,30.60927],[76.03375,30.60641],[76.03413,30.60325],[76.03218,30.60078],[76.03537,30.58893],[76.0433,30.58754],[76.04958,30.58383],[76.05359,30.58324],[76.05405,30.58092],[76.05787,30.57854],[76.06604,30.58344],[76.06779,30.58235],[76.06925,30.57695],[76.06663,30.57466],[76.06537,30.56914],[76.07005,30.56392],[76.07585,30.56361],[76.0786,30.56573],[76.08262,30.56461],[76.08449,30.56195],[76.08965,30.56798],[76.09646,30.56402],[76.09801,30.56045],[76.10774,30.56208],[76.10888,30.56478],[76.10728,30.56515],[76.10804,30.57604],[76.11458,30.57977],[76.11149,30.58288],[76.11021,30.58736],[76.11721,30.59303],[76.12548,30.59696],[76.12067,30.60071],[76.12525,30.60278],[76.11649,30.6149],[76.12382,30.62153],[76.12793,30.62277],[76.12521,30.62742],[76.12767,30.62801],[76.1278,30.62951],[76.145,30.63767],[76.15281,30.63979],[76.15204,30.65508],[76.16916,30.66183],[76.17161,30.66679],[76.17115,30.67549],[76.17368,30.67923],[76.18072,30.67935],[76.18253,30.67152],[76.18796,30.66766],[76.19821,30.67514],[76.2056,30.67411],[76.21807,30.67895],[76.21851,30.6845],[76.22378,30.6881],[76.23009,30.68997],[76.23135,30.68875],[76.23598,30.68991],[76.23727,30.68294],[76.24307,30.67954],[76.25315,30.67922],[76.25535,30.68076],[76.26174,30.676],[76.26401,30.67731],[76.2662,30.67543],[76.27165,30.67848],[76.27505,30.67551],[76.28131,30.68153],[76.30329,30.6784],[76.31218,30.68736],[76.31981,30.68792],[76.32334,30.69327],[76.31946,30.7034],[76.31602,30.70511],[76.30958,30.70332],[76.30802,30.70539],[76.30591,30.70417],[76.29781,30.71713],[76.29113,30.71395],[76.27798,30.72823],[76.27572,30.73406],[76.28398,30.73794],[76.28094,30.74628],[76.28855,30.74716],[76.30058,30.7527],[76.30136,30.75434],[76.31095,30.7562],[76.30493,30.76799],[76.30076,30.76704],[76.28973,30.78241],[76.27236,30.77574],[76.26187,30.7867],[76.26261,30.78933],[76.26917,30.79303],[76.26778,30.79668],[76.26913,30.79919],[76.2756,30.80097],[76.28906,30.80814],[76.28015,30.82018],[76.28128,30.83025],[76.29143,30.83176],[76.29022,30.83337],[76.29403,30.83587],[76.30087,30.83693],[76.31109,30.8423],[76.29883,30.86424],[76.29832,30.86987],[76.31952,30.87713],[76.31974,30.9143],[76.31276,30.92472],[76.32155,30.92727],[76.32371,30.93011],[76.31738,30.95215],[76.31533,30.97941],[76.3118,30.98843],[76.29664,30.98835],[76.29175,30.99804],[76.29272,30.99915],[76.28679,31.00236],[76.27676,31.00012],[76.27616,31.00231],[76.28943,31.00457],[76.28755,31.0067],[76.28793,31.00909],[76.28226,31.01026],[76.27473,31.01541],[76.27383,31.01294],[76.26414,31.00554],[76.26391,31.00305],[76.2563,31.01031],[76.24098,31.00232],[76.23411,31.00589],[76.22708,31.00442],[76.22527,31.00538],[76.22453,31.00264],[76.22295,31.00332],[76.22192,31.00761],[76.21988,31.00841],[76.21993,31.01158],[76.21093,31.01192],[76.2102,31.01041],[76.21335,31.00441],[76.20438,31.00331],[76.20458,31.00004],[76.18401,31.00521],[76.1879,30.99602],[76.18291,30.99462],[76.18053,30.99204],[76.1748,30.99585],[76.16662,30.99322],[76.16877,30.98941],[76.15955,30.98682],[76.15783,30.98868],[76.14311,30.98577],[76.13618,30.9975],[76.12243,30.99675],[76.12254,30.993],[76.12071,30.99298],[76.10417,30.9962],[76.10336,30.99832],[76.08818,30.99504],[76.08414,30.99776],[76.07481,30.99802],[76.07073,30.99558],[76.06563,31.0],[76.06266,31.00018],[76.02677,30.99676],[76.02426,31.00116],[76.00425,31.00385],[76.00481,31.00635],[75.99108,31.00936],[75.98776,31.00388],[75.98783,31.00512],[75.97092,31.00399],[75.96962,31.01455],[75.95928,31.01827],[75.95257,31.01028],[75.93919,31.00956],[75.93402,31.00934],[75.93344,31.01194],[75.92116,31.01161],[75.91527,31.01635]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"360","area_level":"District","area_name":"Kendrapada","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[86.78047,20.35814],[86.78093,20.35844],[86.78144,20.35892],[86.78312,20.36081],[86.78379,20.36164],[86.7843,20.36252],[86.78461,20.36345],[86.78454,20.36396],[86.78424,20.36413],[86.78395,20.36412],[86.78343,20.36399],[86.78274,20.36368],[86.78144,20.36232],[86.78083,20.36155],[86.78016,20.36055],[86.77979,20.35956],[86.7797,20.35852],[86.78006,20.35813],[86.78047,20.35814]]],[[[86.79212,20.3817],[86.7924,20.38194],[86.79262,20.38229],[86.79272,20.38299],[86.79259,20.3835],[86.79205,20.384],[86.79185,20.38446],[86.79184,20.38498],[86.79187,20.38567],[86.7918,20.38613],[86.7915,20.38641],[86.79103,20.38639],[86.79075,20.38615],[86.79048,20.38563],[86.79039,20.38482],[86.79041,20.38401],[86.79027,20.38303],[86.79029,20.38228],[86.79054,20.38177],[86.79114,20.38156],[86.79172,20.38152],[86.79212,20.3817]]],[[[86.80554,20.39577],[86.80438,20.39763],[86.8036,20.39818],[86.79922,20.40018],[86.79786,20.40054],[86.79676,20.40039],[86.79648,20.4001],[86.79649,20.39981],[86.79838,20.39912],[86.79856,20.39878],[86.79851,20.39843],[86.79744,20.39747],[86.79711,20.39677],[86.79738,20.39569],[86.79838,20.39526],[86.79916,20.39459],[86.80057,20.39452],[86.80047,20.39388],[86.80002,20.39335],[86.80005,20.39243],[86.79961,20.39144],[86.79963,20.39098],[86.80085,20.39107],[86.8022,20.39088],[86.80287,20.39021],[86.80275,20.38992],[86.80246,20.38985],[86.80145,20.3904],[86.80111,20.39033],[86.79963,20.38919],[86.79938,20.38774],[86.79994,20.38701],[86.79994,20.38667],[86.79967,20.38625],[86.79896,20.38641],[86.7979,20.38856],[86.79769,20.38965],[86.79785,20.39034],[86.79863,20.39129],[86.79856,20.39175],[86.79731,20.39263],[86.79613,20.39484],[86.79588,20.39518],[86.79571,20.39494],[86.79657,20.39186],[86.79657,20.38645],[86.79595,20.3824],[86.79546,20.38117],[86.79543,20.38013],[86.79557,20.37951],[86.79765,20.37663],[86.79792,20.37543],[86.79752,20.3734],[86.79669,20.37211],[86.79581,20.37018],[86.79585,20.36932],[86.79605,20.36852],[86.79838,20.36479],[86.79891,20.36452],[86.79995,20.36466],[86.80268,20.36699],[86.80627,20.37113],[86.80705,20.37237],[86.80748,20.37353],[86.80775,20.37775],[86.80741,20.38465],[86.8064,20.39245],[86.80554,20.39577]]],[[[86.78787,20.38347],[86.7906,20.38701],[86.7941,20.38885],[86.79311,20.39078],[86.79133,20.39901],[86.79188,20.40709],[86.79419,20.4131],[86.79511,20.41722],[86.79821,20.424],[86.80165,20.42952],[86.8068,20.4419],[86.80824,20.45312],[86.80655,20.46228],[86.8029,20.46706],[86.80121,20.47046],[86.79968,20.48142],[86.79806,20.48839],[86.79549,20.49176],[86.79322,20.49324],[86.79621,20.48418],[86.79596,20.47916],[86.79661,20.47527],[86.79759,20.47219],[86.79963,20.46857],[86.79907,20.46797],[86.79885,20.46578],[86.79566,20.45968],[86.79592,20.45889],[86.79747,20.45784],[86.79923,20.45392],[86.79928,20.44523],[86.80005,20.44312],[86.79901,20.43905],[86.79716,20.43859],[86.79264,20.43413],[86.79018,20.43255],[86.79154,20.42845],[86.79144,20.42597],[86.78928,20.41502],[86.79093,20.41104],[86.7889,20.40533],[86.78682,20.4048],[86.78666,20.40428],[86.78886,20.39588],[86.78704,20.38736],[86.78742,20.38634],[86.78703,20.38408],[86.78787,20.38347]]],[[[87.01175,20.71231],[87.01174,20.71283],[87.0119,20.71346],[87.01273,20.71463],[87.01297,20.71521],[87.01307,20.71602],[87.01307,20.71665],[87.01318,20.71717],[87.01306,20.71723],[87.01222,20.71681],[87.0115,20.71588],[87.01128,20.71524],[87.01045,20.71402],[87.00997,20.71361],[87.00921,20.71262],[87.00879,20.71197],[87.00825,20.71168],[87.00789,20.71173],[87.0077,20.7119],[87.0074,20.71207],[87.0068,20.71218],[87.00667,20.71217],[87.00661,20.71194],[87.00668,20.71166],[87.00711,20.71132],[87.00754,20.71121],[87.00778,20.71081],[87.00798,20.71035],[87.00828,20.70995],[87.00865,20.7099],[87.00918,20.71019],[87.00936,20.71054],[87.00965,20.71083],[87.01008,20.71101],[87.0108,20.71108],[87.01109,20.71137],[87.01175,20.71231]]],[[[87.00275,20.71177],[87.00365,20.7123],[87.00442,20.71301],[87.00531,20.71412],[87.0062,20.71505],[87.00778,20.71813],[87.00813,20.71917],[87.00812,20.71952],[87.00764,20.71951],[87.00734,20.71933],[87.00693,20.71869],[87.00592,20.71753],[87.00502,20.71676],[87.00444,20.71589],[87.00378,20.71513],[87.00243,20.71321],[87.00172,20.71193],[87.00173,20.71152],[87.00227,20.71142],[87.00275,20.71177]]],[[[86.92721,20.78073],[86.88661,20.78821],[86.87361,20.78763],[86.86368,20.78249],[86.86549,20.78119],[86.86141,20.77532],[86.84808,20.77051],[86.83312,20.76271],[86.82643,20.75142],[86.82316,20.75],[86.82164,20.74575],[86.81485,20.74845],[86.80668,20.75593],[86.80156,20.75678],[86.79629,20.75259],[86.79817,20.75],[86.79252,20.73184],[86.78581,20.73899],[86.78023,20.74134],[86.77577,20.74064],[86.76447,20.73348],[86.75783,20.73559],[86.75277,20.7418],[86.75298,20.74727],[86.75844,20.75467],[86.76038,20.76004],[86.75996,20.76477],[86.75597,20.76901],[86.74574,20.77098],[86.73141,20.77],[86.72613,20.76357],[86.71016,20.75976],[86.70827,20.76205],[86.70807,20.77396],[86.70575,20.77708],[86.69687,20.77724],[86.69023,20.78307],[86.68051,20.78509],[86.67749,20.78999],[86.6685,20.79002],[86.66034,20.78729],[86.66156,20.79228],[86.65873,20.79654],[86.65178,20.79674],[86.64592,20.79505],[86.64188,20.78845],[86.63836,20.79201],[86.63803,20.79753],[86.63687,20.79803],[86.63606,20.79475],[86.6341,20.79521],[86.63218,20.79186],[86.62869,20.79785],[86.62571,20.79873],[86.62218,20.79678],[86.62464,20.79269],[86.6212,20.78683],[86.62126,20.78113],[86.61391,20.78038],[86.61742,20.7764],[86.61652,20.7745],[86.61495,20.77405],[86.60832,20.77801],[86.60749,20.77518],[86.60875,20.7727],[86.60627,20.77172],[86.59534,20.77458],[86.58827,20.7785],[86.58845,20.77984],[86.58648,20.77998],[86.58564,20.77748],[86.58212,20.77872],[86.57458,20.7763],[86.57297,20.77756],[86.56311,20.77284],[86.5609,20.76906],[86.55996,20.76223],[86.55692,20.7622],[86.55341,20.75596],[86.54075,20.75214],[86.54211,20.74847],[86.53901,20.74011],[86.54346,20.73796],[86.53808,20.7344],[86.54414,20.73485],[86.54532,20.7327],[86.54341,20.73198],[86.54336,20.73025],[86.54803,20.73057],[86.55118,20.73354],[86.55123,20.73673],[86.55552,20.73881],[86.55895,20.73973],[86.56111,20.73769],[86.55741,20.73255],[86.55838,20.72823],[86.55156,20.72978],[86.54922,20.72441],[86.54625,20.72251],[86.54704,20.71801],[86.5519,20.71455],[86.55203,20.71099],[86.55624,20.70696],[86.54658,20.70305],[86.54275,20.69489],[86.53905,20.69333],[86.52964,20.69575],[86.52629,20.68843],[86.52406,20.68823],[86.51992,20.69881],[86.51527,20.69975],[86.5126,20.69803],[86.51271,20.69023],[86.51088,20.68743],[86.49779,20.68535],[86.48748,20.67945],[86.48115,20.68059],[86.46862,20.68931],[86.46352,20.67957],[86.46094,20.67892],[86.45855,20.68072],[86.4523,20.67519],[86.45521,20.67025],[86.45263,20.65985],[86.45333,20.65723],[86.45542,20.65836],[86.4556,20.65411],[86.4503,20.6477],[86.44322,20.64924],[86.43772,20.64634],[86.42653,20.64504],[86.42319,20.64129],[86.42156,20.63573],[86.41869,20.63627],[86.41802,20.63497],[86.41792,20.63209],[86.42031,20.63299],[86.41976,20.6301],[86.42165,20.63007],[86.42198,20.62507],[86.41046,20.62843],[86.39995,20.62414],[86.39348,20.61555],[86.39441,20.61467],[86.392,20.60911],[86.38468,20.60183],[86.38514,20.60078],[86.3769,20.59407],[86.36621,20.59515],[86.35435,20.60529],[86.34556,20.60732],[86.34469,20.61035],[86.33694,20.60805],[86.3303,20.60895],[86.32829,20.61106],[86.32552,20.62566],[86.31964,20.63037],[86.31637,20.62491],[86.3188,20.61618],[86.3169,20.61331],[86.31873,20.61198],[86.3133,20.5949],[86.31998,20.59108],[86.31426,20.58099],[86.29873,20.57918],[86.29691,20.58427],[86.28981,20.58464],[86.28646,20.58429],[86.28184,20.5808],[86.28003,20.58131],[86.27257,20.56427],[86.26001,20.56451],[86.25723,20.5621],[86.26578,20.56247],[86.26591,20.55967],[86.26822,20.56081],[86.27052,20.559],[86.26292,20.55169],[86.26163,20.54821],[86.25849,20.54792],[86.24852,20.54105],[86.24973,20.53982],[86.24788,20.53735],[86.2485,20.53065],[86.25085,20.52838],[86.25427,20.52941],[86.25606,20.53277],[86.25955,20.5286],[86.27533,20.52083],[86.27449,20.51981],[86.27636,20.51858],[86.27306,20.51525],[86.27222,20.50966],[86.2682,20.5082],[86.27287,20.5],[86.27745,20.49639],[86.27463,20.49421],[86.27386,20.49086],[86.27048,20.48907],[86.26481,20.49104],[86.2624,20.48549],[86.26775,20.48246],[86.26372,20.47852],[86.26453,20.47042],[86.26514,20.4691],[86.26787,20.46948],[86.26978,20.45868],[86.27367,20.45729],[86.27406,20.45461],[86.26994,20.454],[86.27083,20.45311],[86.2691,20.45216],[86.26524,20.45397],[86.26457,20.45105],[86.2752,20.44653],[86.27004,20.44303],[86.26663,20.43802],[86.2677,20.43584],[86.2705,20.43692],[86.27003,20.42852],[86.26833,20.42534],[86.27373,20.42521],[86.27761,20.42268],[86.27111,20.41092],[86.27364,20.40993],[86.27213,20.40584],[86.26554,20.40544],[86.26627,20.39513],[86.26977,20.39458],[86.27393,20.39997],[86.27566,20.39687],[86.27539,20.39461],[86.27216,20.39169],[86.27101,20.39324],[86.26936,20.39166],[86.27313,20.38803],[86.2667,20.38858],[86.26133,20.38683],[86.26061,20.38486],[86.26217,20.38376],[86.25724,20.37515],[86.25485,20.37604],[86.25754,20.3799],[86.25061,20.38115],[86.25095,20.37623],[86.24567,20.37178],[86.24928,20.36897],[86.24799,20.36478],[86.25436,20.36455],[86.25692,20.36697],[86.26191,20.36587],[86.26513,20.36742],[86.26463,20.36895],[86.26911,20.37248],[86.27417,20.36776],[86.27109,20.36327],[86.27317,20.35735],[86.27784,20.35648],[86.279,20.36119],[86.28793,20.36294],[86.30204,20.35507],[86.30527,20.35484],[86.30728,20.35518],[86.3095,20.36158],[86.31174,20.36068],[86.3146,20.35418],[86.31762,20.35409],[86.31874,20.35588],[86.32501,20.35761],[86.32481,20.36885],[86.33589,20.37035],[86.34597,20.36022],[86.34849,20.35327],[86.34977,20.35314],[86.34877,20.35085],[86.35919,20.35046],[86.36056,20.35836],[86.36643,20.3556],[86.37011,20.3594],[86.37483,20.35688],[86.3792,20.35682],[86.38163,20.35459],[86.38959,20.35394],[86.39176,20.35724],[86.3894,20.36263],[86.39378,20.36526],[86.40029,20.36012],[86.41244,20.35917],[86.41176,20.35222],[86.42187,20.34586],[86.42348,20.34217],[86.42805,20.34233],[86.43363,20.34659],[86.43168,20.33559],[86.44115,20.33728],[86.4522,20.33012],[86.4592,20.33064],[86.46823,20.33585],[86.47333,20.33684],[86.48102,20.33295],[86.49879,20.32829],[86.51162,20.33497],[86.51658,20.34114],[86.5203,20.34133],[86.52122,20.3386],[86.5303,20.33762],[86.5355,20.33226],[86.53666,20.33363],[86.53864,20.33259],[86.5382,20.33048],[86.54856,20.32439],[86.56008,20.32632],[86.56675,20.33154],[86.57729,20.33666],[86.5886,20.33553],[86.58845,20.33723],[86.59103,20.33926],[86.5992,20.34188],[86.59718,20.34001],[86.60803,20.34055],[86.6185,20.3361],[86.64113,20.33401],[86.66396,20.32771],[86.66438,20.3288],[86.68185,20.31865],[86.68069,20.31602],[86.6872,20.30401],[86.69107,20.29907],[86.69521,20.29719],[86.72338,20.29842],[86.73159,20.30322],[86.77132,20.32931],[86.78252,20.34088],[86.77812,20.34455],[86.79802,20.3634],[86.79433,20.36922],[86.7915,20.36481],[86.77879,20.35662],[86.78185,20.36586],[86.78894,20.37462],[86.79077,20.36577],[86.79727,20.37576],[86.79243,20.37935],[86.78974,20.37592],[86.78707,20.3785],[86.7886,20.38067],[86.7856,20.38144],[86.78544,20.38015],[86.78445,20.38125],[86.78091,20.37862],[86.78224,20.38683],[86.7762,20.40542],[86.76202,20.39373],[86.75562,20.38497],[86.74645,20.37861],[86.74472,20.37845],[86.75043,20.38384],[86.75124,20.38767],[86.7474,20.38755],[86.74332,20.38044],[86.74587,20.39161],[86.73761,20.3899],[86.74152,20.39591],[86.73924,20.40081],[86.73185,20.39549],[86.73075,20.39255],[86.72438,20.39385],[86.73358,20.4148],[86.73332,20.42216],[86.72857,20.44069],[86.73427,20.4641],[86.74074,20.4712],[86.74186,20.46608],[86.74565,20.46804],[86.75941,20.50038],[86.76579,20.50373],[86.77525,20.52075],[86.78937,20.53393],[86.80844,20.54608],[86.86892,20.59092],[86.92192,20.626],[86.92855,20.6284],[86.96371,20.65303],[86.9967,20.67293],[87.01653,20.68796],[87.0258,20.69309],[87.03236,20.70005],[87.05343,20.71227],[87.05825,20.71676],[87.057,20.7173],[87.03457,20.70471],[87.02941,20.70409],[87.02614,20.70191],[87.00004,20.69784],[87.00003,20.70149],[87.00552,20.70279],[86.99999,20.70381],[86.99654,20.71216],[87.00201,20.71832],[87.00562,20.73461],[86.99745,20.75073],[86.99248,20.77023],[86.97656,20.77188],[86.96422,20.76728],[86.94416,20.76648],[86.94204,20.77296],[86.94981,20.77368],[86.95074,20.77608],[86.94104,20.77996],[86.92721,20.78073]]],[[[86.98171,20.77771],[86.98294,20.77901],[86.98361,20.78039],[86.98373,20.78133],[86.98335,20.78306],[86.98301,20.78443],[86.98264,20.78482],[86.98197,20.78482],[86.98141,20.78422],[86.98036,20.78278],[86.97882,20.78035],[86.97845,20.77881],[86.97871,20.77799],[86.97924,20.7774],[86.98043,20.77722],[86.98171,20.77771]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"361","area_level":"District","area_name":"Kendujhar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.40186,22.1622],[85.39672,22.16303],[85.39207,22.15903],[85.38392,22.15648],[85.37511,22.15737],[85.37132,22.16103],[85.3665,22.15918],[85.36544,22.15721],[85.36654,22.15363],[85.36396,22.15214],[85.36345,22.14748],[85.3603,22.14348],[85.36189,22.1411],[85.36084,22.13151],[85.36488,22.12883],[85.36441,22.12371],[85.35939,22.12395],[85.35059,22.1295],[85.34648,22.13025],[85.34354,22.12738],[85.32309,22.1275],[85.31884,22.12083],[85.31058,22.11882],[85.29926,22.10539],[85.2813,22.09043],[85.27513,22.08229],[85.27285,22.07359],[85.26306,22.05868],[85.2517,22.02697],[85.23307,22.00274],[85.23141,21.99679],[85.24353,21.98681],[85.26492,21.97494],[85.26671,21.96806],[85.27089,21.96429],[85.27189,21.96066],[85.27784,21.95863],[85.28385,21.95422],[85.29863,21.95254],[85.30902,21.95887],[85.3139,21.95862],[85.32289,21.95348],[85.33501,21.95301],[85.33535,21.95149],[85.33696,21.9523],[85.34398,21.94858],[85.34742,21.94974],[85.34906,21.94861],[85.34812,21.94657],[85.35296,21.94194],[85.36833,21.94242],[85.37591,21.93648],[85.37657,21.92447],[85.37278,21.91844],[85.37558,21.91056],[85.37407,21.90265],[85.3708,21.89939],[85.36754,21.89969],[85.36885,21.89089],[85.36589,21.88441],[85.36626,21.87707],[85.36387,21.87487],[85.36282,21.86991],[85.36404,21.85975],[85.35974,21.85726],[85.35592,21.8485],[85.34895,21.83947],[85.34589,21.82945],[85.34058,21.82484],[85.33561,21.82343],[85.32431,21.82391],[85.30939,21.81969],[85.3051,21.82449],[85.29732,21.82583],[85.29636,21.83259],[85.29073,21.83741],[85.28282,21.83316],[85.2808,21.8349],[85.27127,21.8181],[85.2554,21.81624],[85.24285,21.80444],[85.23962,21.80535],[85.23151,21.81232],[85.23101,21.81799],[85.22628,21.82022],[85.22517,21.8131],[85.21524,21.79912],[85.20909,21.77886],[85.2096,21.77464],[85.20234,21.76874],[85.2,21.76216],[85.20441,21.75019],[85.20752,21.7481],[85.20682,21.74687],[85.21433,21.74724],[85.2128,21.73933],[85.19866,21.72652],[85.19127,21.72202],[85.18422,21.70906],[85.18796,21.70618],[85.18941,21.70022],[85.19283,21.69668],[85.19208,21.68611],[85.19066,21.68337],[85.18693,21.68218],[85.18631,21.67881],[85.1912,21.66127],[85.19833,21.65977],[85.20186,21.66103],[85.20922,21.67542],[85.21625,21.67555],[85.21899,21.67332],[85.22604,21.67722],[85.23628,21.67672],[85.24277,21.68016],[85.25297,21.675],[85.25252,21.66659],[85.25509,21.65235],[85.25775,21.65226],[85.26283,21.64354],[85.2658,21.64158],[85.26228,21.63336],[85.26663,21.62336],[85.2746,21.61732],[85.27872,21.60813],[85.28249,21.60603],[85.28324,21.6021],[85.28861,21.60518],[85.29175,21.60036],[85.28309,21.5965],[85.28253,21.59188],[85.28608,21.58873],[85.28638,21.58411],[85.28958,21.58247],[85.28943,21.58038],[85.29549,21.57404],[85.30336,21.57143],[85.30274,21.56698],[85.30651,21.56709],[85.30638,21.56901],[85.3115,21.56959],[85.31259,21.56828],[85.30882,21.56532],[85.30662,21.55923],[85.30768,21.55706],[85.30006,21.5541],[85.29862,21.54589],[85.30112,21.5411],[85.30431,21.54051],[85.30484,21.53906],[85.30142,21.53106],[85.32089,21.53516],[85.31943,21.53126],[85.32159,21.5225],[85.3208,21.51997],[85.3244,21.51887],[85.32855,21.5097],[85.32723,21.50739],[85.32917,21.5049],[85.32752,21.50074],[85.3305,21.49516],[85.32828,21.49395],[85.32891,21.49105],[85.32774,21.48993],[85.33151,21.48612],[85.33208,21.48184],[85.32952,21.47668],[85.32763,21.47728],[85.32644,21.4749],[85.32849,21.47369],[85.32747,21.47125],[85.32357,21.4707],[85.32135,21.46525],[85.31314,21.46466],[85.31171,21.46202],[85.30694,21.46199],[85.31044,21.4582],[85.30363,21.44798],[85.30169,21.44877],[85.29969,21.447],[85.29307,21.45054],[85.29096,21.44964],[85.28699,21.45417],[85.27676,21.45324],[85.26965,21.45638],[85.26775,21.45419],[85.26248,21.45712],[85.25798,21.45653],[85.2552,21.451],[85.25912,21.44744],[85.25882,21.44347],[85.26805,21.43931],[85.27172,21.42858],[85.28231,21.42692],[85.28393,21.42369],[85.29626,21.42043],[85.30202,21.41715],[85.30669,21.41218],[85.30364,21.41102],[85.30684,21.4075],[85.30728,21.40399],[85.30587,21.40251],[85.30774,21.4015],[85.30489,21.39637],[85.32211,21.38979],[85.32631,21.39073],[85.32609,21.38845],[85.32956,21.38482],[85.33,21.3771],[85.34247,21.36622],[85.33982,21.36117],[85.33845,21.36206],[85.33759,21.36072],[85.33999,21.35984],[85.33915,21.35718],[85.33667,21.3576],[85.3354,21.35612],[85.33696,21.35339],[85.33476,21.35117],[85.33604,21.348],[85.33077,21.34693],[85.32875,21.3284],[85.32271,21.31884],[85.32294,21.3216],[85.32084,21.32182],[85.32191,21.3243],[85.31756,21.32956],[85.31648,21.3288],[85.31517,21.33024],[85.3034,21.31696],[85.29679,21.31741],[85.2968,21.3087],[85.28532,21.305],[85.28248,21.29928],[85.27518,21.3043],[85.27159,21.30213],[85.27231,21.29819],[85.27628,21.2933],[85.27434,21.29053],[85.27587,21.28618],[85.27124,21.28261],[85.27043,21.27398],[85.28053,21.26506],[85.28696,21.26401],[85.29509,21.27656],[85.29816,21.27544],[85.30121,21.27142],[85.30643,21.27047],[85.30755,21.26796],[85.31492,21.26325],[85.33908,21.25812],[85.34073,21.2555],[85.35503,21.24876],[85.36105,21.24428],[85.37461,21.22908],[85.37888,21.21804],[85.38231,21.21429],[85.37999,21.21073],[85.38123,21.20297],[85.37986,21.19933],[85.38682,21.19053],[85.39729,21.17982],[85.42173,21.16489],[85.44393,21.14283],[85.45275,21.13673],[85.45856,21.12852],[85.46398,21.12387],[85.46792,21.12432],[85.4715,21.12022],[85.48502,21.11899],[85.49779,21.11523],[85.53076,21.14666],[85.54522,21.16702],[85.55072,21.1614],[85.55828,21.1595],[85.58528,21.14369],[85.59032,21.14231],[85.59234,21.13817],[85.60642,21.1364],[85.6176,21.1469],[85.62549,21.16099],[85.64336,21.16624],[85.65724,21.1646],[85.66338,21.16657],[85.66868,21.16973],[85.68301,21.18645],[85.69048,21.17948],[85.70191,21.18283],[85.70751,21.18101],[85.70346,21.17434],[85.70578,21.16888],[85.71838,21.16135],[85.72498,21.1451],[85.7288,21.14092],[85.73468,21.13881],[85.74055,21.13935],[85.74703,21.14799],[85.75146,21.14917],[85.7619,21.1451],[85.76268,21.13612],[85.76697,21.12585],[85.76625,21.11611],[85.77118,21.11483],[85.77097,21.10888],[85.77259,21.10505],[85.77581,21.10581],[85.77955,21.1017],[85.78009,21.10272],[85.78438,21.10125],[85.7889,21.10545],[85.79306,21.10595],[85.79754,21.10386],[85.807,21.10651],[85.81224,21.09399],[85.822,21.09091],[85.82816,21.09017],[85.83589,21.09608],[85.84767,21.09563],[85.85484,21.09322],[85.86317,21.08769],[85.875,21.08564],[85.87813,21.08772],[85.88725,21.08615],[85.91699,21.09254],[85.92894,21.12366],[85.93018,21.13194],[85.92884,21.13622],[85.93667,21.13526],[85.9396,21.12972],[85.94699,21.13257],[85.94854,21.12888],[85.95775,21.13034],[85.95939,21.13217],[85.95871,21.13396],[85.96189,21.13049],[85.96382,21.134],[85.96063,21.13682],[85.96178,21.14036],[85.9641,21.13757],[85.96947,21.13741],[85.97523,21.143],[85.977,21.14278],[85.98226,21.13648],[85.99273,21.139],[85.9934,21.14304],[86.00163,21.14193],[86.00742,21.14532],[86.0119,21.14144],[86.01959,21.1447],[86.02138,21.13927],[86.02517,21.13925],[86.03038,21.14311],[86.02687,21.148],[86.02747,21.14939],[86.0323,21.15038],[86.03477,21.15892],[86.03658,21.16062],[86.04289,21.1573],[86.04943,21.16106],[86.05706,21.15401],[86.06313,21.15333],[86.06527,21.15562],[86.06409,21.16102],[86.06576,21.16391],[86.07323,21.1639],[86.07801,21.16961],[86.08235,21.17027],[86.0894,21.16841],[86.08647,21.16421],[86.07999,21.16448],[86.07501,21.15501],[86.07463,21.13086],[86.0707,21.12989],[86.05096,21.11744],[86.04634,21.10087],[86.03644,21.09691],[86.03304,21.09339],[86.03209,21.08673],[86.02983,21.08356],[86.03117,21.08235],[86.03024,21.07886],[86.02694,21.07303],[86.02846,21.07118],[86.03103,21.07136],[86.03359,21.06678],[86.03309,21.06457],[86.0382,21.06029],[86.03707,21.05672],[86.03381,21.05632],[86.03281,21.05263],[86.03503,21.04947],[86.03401,21.04742],[86.04368,21.02803],[86.04817,21.02261],[86.05028,21.02304],[86.04952,21.02165],[86.05426,21.02147],[86.05528,21.02446],[86.06266,21.02],[86.08313,21.0158],[86.08208,21.01911],[86.08694,21.02016],[86.08833,21.0232],[86.08668,21.0265],[86.0905,21.03618],[86.09028,21.04323],[86.09337,21.05393],[86.10306,21.05805],[86.10498,21.05668],[86.10713,21.05878],[86.11071,21.05618],[86.11344,21.05841],[86.11753,21.06806],[86.12093,21.06942],[86.12375,21.06762],[86.12996,21.06743],[86.13358,21.07638],[86.14506,21.07338],[86.1583,21.06497],[86.17721,21.0628],[86.19199,21.05707],[86.19656,21.05751],[86.19874,21.05985],[86.20624,21.05837],[86.21789,21.05215],[86.23139,21.04124],[86.23925,21.03939],[86.24774,21.04107],[86.26065,21.03939],[86.28164,21.02236],[86.28621,21.02349],[86.3007,21.01948],[86.30395,21.01987],[86.30406,21.02437],[86.30253,21.02441],[86.30964,21.04017],[86.30861,21.04138],[86.31096,21.04506],[86.3133,21.06005],[86.32103,21.05493],[86.3216,21.05748],[86.32442,21.05915],[86.32404,21.06296],[86.32229,21.06366],[86.32366,21.06417],[86.32145,21.06873],[86.31774,21.06995],[86.31955,21.07212],[86.31762,21.07416],[86.31867,21.07657],[86.3162,21.076],[86.31795,21.0773],[86.31668,21.07912],[86.31782,21.08128],[86.31492,21.0833],[86.31051,21.08337],[86.31022,21.08641],[86.3073,21.08585],[86.30762,21.08859],[86.30498,21.08802],[86.30722,21.09733],[86.30295,21.09986],[86.30466,21.10238],[86.30276,21.10456],[86.30837,21.11299],[86.29934,21.1181],[86.29077,21.11997],[86.28854,21.11904],[86.28705,21.12039],[86.29061,21.12168],[86.29129,21.1262],[86.28353,21.13667],[86.2792,21.13924],[86.27427,21.13835],[86.27068,21.14022],[86.27318,21.14607],[86.27172,21.14734],[86.27434,21.15306],[86.28337,21.16259],[86.28238,21.16595],[86.28682,21.17059],[86.29056,21.17141],[86.29173,21.17554],[86.30129,21.17517],[86.30603,21.17326],[86.30525,21.1694],[86.31118,21.169],[86.32044,21.17634],[86.31931,21.17924],[86.3205,21.18107],[86.32547,21.17928],[86.32315,21.17599],[86.33014,21.18033],[86.33852,21.17926],[86.34161,21.18652],[86.34064,21.18948],[86.34806,21.19185],[86.34761,21.19459],[86.35331,21.21111],[86.35195,21.21306],[86.35338,21.22293],[86.35068,21.23176],[86.35189,21.23723],[86.36332,21.23677],[86.36768,21.24083],[86.37225,21.2586],[86.36972,21.26004],[86.36889,21.2641],[86.3597,21.26611],[86.361,21.26996],[86.35617,21.2746],[86.3529,21.28422],[86.35796,21.29934],[86.35987,21.31185],[86.35431,21.32141],[86.34272,21.32873],[86.32757,21.34166],[86.29529,21.35671],[86.28262,21.37695],[86.27605,21.37968],[86.26579,21.3802],[86.2639,21.37968],[86.26774,21.36882],[86.26509,21.36257],[86.25045,21.35066],[86.24921,21.34676],[86.23694,21.33085],[86.22431,21.32402],[86.22364,21.31791],[86.21812,21.3101],[86.21601,21.30251],[86.21636,21.29747],[86.21228,21.2951],[86.21053,21.28975],[86.20579,21.28619],[86.20638,21.28132],[86.19891,21.28032],[86.19424,21.27477],[86.18908,21.2723],[86.18485,21.27249],[86.1829,21.27463],[86.17326,21.27688],[86.1586,21.28469],[86.15924,21.29208],[86.15592,21.29214],[86.14983,21.28823],[86.14288,21.27898],[86.13978,21.27809],[86.13522,21.2818],[86.13518,21.2658],[86.13227,21.26674],[86.13072,21.26488],[86.12707,21.26803],[86.12455,21.26785],[86.12326,21.27104],[86.11375,21.27393],[86.11246,21.27662],[86.11403,21.2834],[86.10843,21.29275],[86.10907,21.29589],[86.10648,21.29614],[86.10514,21.29877],[86.10595,21.30452],[86.09647,21.30585],[86.09249,21.30808],[86.09172,21.31333],[86.08902,21.31263],[86.09633,21.31891],[86.09612,21.32333],[86.10124,21.32278],[86.10215,21.32569],[86.10358,21.325],[86.10463,21.32648],[86.10374,21.3288],[86.10786,21.33668],[86.10856,21.3418],[86.10801,21.34579],[86.10443,21.35094],[86.12473,21.36056],[86.12335,21.36534],[86.12128,21.36566],[86.12214,21.36891],[86.11978,21.37133],[86.13504,21.39954],[86.14125,21.40562],[86.15346,21.41219],[86.16126,21.42342],[86.15763,21.42619],[86.15584,21.43237],[86.15096,21.44042],[86.13487,21.45536],[86.13483,21.46269],[86.12637,21.47359],[86.09112,21.49669],[86.0783,21.49954],[86.07651,21.50144],[86.06757,21.50415],[86.03421,21.52223],[86.00629,21.53389],[86.01061,21.54285],[86.01871,21.55164],[86.01575,21.56135],[86.02618,21.56957],[86.02704,21.57227],[86.03447,21.5723],[86.04103,21.57661],[86.04595,21.57729],[86.04885,21.58282],[86.04777,21.58601],[86.05023,21.58578],[86.05117,21.5879],[86.05085,21.59014],[86.04887,21.59069],[86.0503,21.59476],[86.05665,21.59793],[86.05873,21.60287],[86.06838,21.60856],[86.06567,21.61372],[86.07067,21.61744],[86.07151,21.62385],[86.075,21.62539],[86.07913,21.63048],[86.07841,21.6331],[86.08104,21.63699],[86.07457,21.64168],[86.07263,21.64515],[86.07395,21.66036],[86.07218,21.66175],[86.07215,21.66418],[86.07346,21.67133],[86.07623,21.67468],[86.07607,21.67917],[86.08159,21.68788],[86.08208,21.69193],[86.07834,21.69544],[86.07564,21.69418],[86.07559,21.69562],[86.07297,21.69543],[86.07124,21.69464],[86.07088,21.68971],[86.06498,21.68821],[86.05677,21.69429],[86.05505,21.69959],[86.05609,21.70579],[86.05109,21.71072],[86.04995,21.71794],[86.039,21.7047],[86.03616,21.69399],[86.03372,21.69179],[86.03218,21.69056],[86.02412,21.69595],[86.02484,21.70202],[86.02348,21.70753],[86.02757,21.72479],[86.02243,21.72667],[86.01874,21.7316],[86.01909,21.73986],[86.01619,21.74181],[86.01479,21.74528],[86.01665,21.74607],[86.01448,21.7458],[86.01515,21.74851],[86.01287,21.75159],[86.00983,21.75165],[86.00929,21.74727],[86.00573,21.74694],[86.00538,21.74526],[86.00195,21.74964],[85.99561,21.74274],[85.99289,21.7484],[85.99006,21.74602],[85.98821,21.74699],[85.98379,21.74591],[85.97677,21.73935],[85.97495,21.74075],[85.97527,21.74368],[85.97047,21.73886],[85.97023,21.74149],[85.96847,21.74246],[85.96588,21.73967],[85.96157,21.74462],[85.95912,21.74436],[85.95676,21.7484],[85.95161,21.74768],[85.95206,21.75203],[85.94818,21.75088],[85.94736,21.75368],[85.94095,21.75674],[85.93625,21.76359],[85.93255,21.76223],[85.9201,21.76364],[85.91747,21.7603],[85.91658,21.76295],[85.91169,21.76531],[85.90945,21.77064],[85.90491,21.76693],[85.90025,21.76732],[85.90176,21.77124],[85.89452,21.77809],[85.89323,21.78168],[85.89094,21.78344],[85.88512,21.78295],[85.8827,21.79055],[85.87323,21.79587],[85.86869,21.79719],[85.86375,21.79613],[85.8602,21.79832],[85.86011,21.80033],[85.85539,21.80229],[85.84579,21.80359],[85.84528,21.80554],[85.83835,21.81082],[85.83098,21.80926],[85.82535,21.80333],[85.82388,21.80726],[85.81779,21.80782],[85.81485,21.81049],[85.80943,21.81154],[85.80934,21.81971],[85.80553,21.831],[85.80936,21.83917],[85.80913,21.85212],[85.80333,21.86261],[85.80285,21.87119],[85.80021,21.87665],[85.8044,21.88435],[85.80485,21.88829],[85.78783,21.90375],[85.7883,21.91042],[85.79257,21.92085],[85.79438,21.93255],[85.79236,21.94696],[85.79377,21.9513],[85.78469,21.9612],[85.77561,21.95929],[85.77241,21.96447],[85.76628,21.96875],[85.76641,21.97204],[85.76483,21.974],[85.75863,21.97342],[85.753,21.97734],[85.74674,21.97722],[85.74507,21.98067],[85.74619,21.98706],[85.73759,21.99288],[85.73152,21.99318],[85.72678,21.98898],[85.71471,21.98809],[85.70611,21.98472],[85.69707,21.99262],[85.70246,22.00074],[85.70264,22.00412],[85.70087,22.0064],[85.69284,22.01031],[85.68408,22.00826],[85.67494,22.01466],[85.66912,22.01495],[85.66215,22.03396],[85.6665,22.03879],[85.67368,22.04236],[85.6732,22.05178],[85.67733,22.05695],[85.67869,22.06218],[85.67166,22.06748],[85.67025,22.07343],[85.66406,22.07685],[85.66158,22.08334],[85.65738,22.08393],[85.65393,22.09417],[85.64995,22.09564],[85.6449,22.09466],[85.63981,22.08667],[85.63703,22.0871],[85.63154,22.08409],[85.62839,22.08591],[85.62492,22.08209],[85.61345,22.08154],[85.61388,22.08609],[85.61118,22.08704],[85.60681,22.07984],[85.59718,22.07912],[85.59229,22.08044],[85.59023,22.084],[85.58622,22.08654],[85.57155,22.09116],[85.5662,22.08889],[85.56099,22.09178],[85.56044,22.09607],[85.54298,22.09047],[85.53902,22.0971],[85.53978,22.10185],[85.53413,22.10264],[85.51497,22.11564],[85.49986,22.12011],[85.48991,22.12108],[85.48293,22.1276],[85.4747,22.12893],[85.47069,22.13412],[85.46099,22.14032],[85.447,22.14637],[85.44299,22.14667],[85.43877,22.15035],[85.43412,22.15099],[85.42115,22.15878],[85.41137,22.16182],[85.40186,22.1622]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"362","area_level":"District","area_name":"Khordha","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.80133,20.43567],[85.79937,20.43145],[85.79707,20.43252],[85.79726,20.43119],[85.79308,20.42785],[85.78523,20.43379],[85.77946,20.42231],[85.7811,20.41778],[85.78599,20.41882],[85.78522,20.41175],[85.77327,20.40837],[85.77184,20.4042],[85.76723,20.40508],[85.7677,20.41561],[85.76649,20.41587],[85.75951,20.40735],[85.74952,20.40659],[85.7452,20.40878],[85.73949,20.40564],[85.73623,20.40961],[85.73191,20.4103],[85.71469,20.40283],[85.71292,20.4005],[85.71219,20.39342],[85.70518,20.38709],[85.70387,20.3757],[85.69613,20.35494],[85.69038,20.34699],[85.6821,20.34169],[85.6785,20.33636],[85.67721,20.32445],[85.67252,20.32903],[85.6646,20.33173],[85.65912,20.33166],[85.64982,20.32393],[85.64299,20.32572],[85.62977,20.31282],[85.62863,20.30384],[85.63362,20.3013],[85.62365,20.29495],[85.6235,20.29252],[85.61397,20.29682],[85.60113,20.2994],[85.59634,20.29719],[85.59045,20.29812],[85.58103,20.30206],[85.57119,20.29802],[85.56516,20.29948],[85.5569,20.31016],[85.5506,20.31304],[85.54949,20.30908],[85.54725,20.30743],[85.5485,20.30193],[85.53758,20.30118],[85.53401,20.30215],[85.53098,20.3056],[85.52448,20.30574],[85.52135,20.29317],[85.51598,20.2939],[85.51074,20.2911],[85.48669,20.29818],[85.47421,20.29925],[85.47376,20.2981],[85.45934,20.29734],[85.45741,20.28887],[85.453,20.28072],[85.4543,20.27178],[85.4511,20.26444],[85.44463,20.26407],[85.43338,20.26953],[85.42798,20.27404],[85.42357,20.27279],[85.41946,20.27364],[85.41901,20.27085],[85.41728,20.27088],[85.40597,20.25738],[85.39708,20.25847],[85.39522,20.26795],[85.39183,20.27096],[85.39377,20.27037],[85.39342,20.27486],[85.39487,20.27496],[85.39525,20.2779],[85.38832,20.27914],[85.38177,20.28693],[85.37341,20.27854],[85.37318,20.27552],[85.36976,20.27599],[85.37104,20.27719],[85.36975,20.27722],[85.3622,20.27445],[85.3573,20.27461],[85.35469,20.27254],[85.33922,20.27482],[85.33428,20.27255],[85.33477,20.2766],[85.32921,20.27846],[85.32738,20.27103],[85.329,20.26964],[85.3298,20.26385],[85.32597,20.26148],[85.32442,20.25823],[85.32638,20.25767],[85.32729,20.25443],[85.32921,20.25827],[85.33004,20.2548],[85.33382,20.25651],[85.33518,20.25501],[85.33615,20.25653],[85.34074,20.25476],[85.34108,20.25209],[85.33718,20.24545],[85.32815,20.24666],[85.326,20.24473],[85.32259,20.22967],[85.31679,20.23263],[85.31401,20.22996],[85.31496,20.23191],[85.31331,20.23366],[85.3095,20.23038],[85.29753,20.2274],[85.25672,20.22692],[85.25457,20.22636],[85.25456,20.21343],[85.2393,20.20897],[85.2316,20.21356],[85.22889,20.22118],[85.22959,20.22329],[85.22741,20.22271],[85.22521,20.22446],[85.21831,20.21962],[85.21156,20.20755],[85.21297,20.20351],[85.21122,20.19887],[85.20393,20.19562],[85.19896,20.18645],[85.20037,20.18111],[85.20392,20.17974],[85.20263,20.17857],[85.20449,20.1771],[85.20268,20.17368],[85.20486,20.17391],[85.20648,20.17619],[85.20813,20.17247],[85.21334,20.17058],[85.21117,20.16027],[85.2037,20.15858],[85.20316,20.15584],[85.20382,20.15294],[85.20713,20.15288],[85.20738,20.15083],[85.2093,20.15088],[85.20948,20.14576],[85.21261,20.14123],[85.212,20.13126],[85.22482,20.1287],[85.23144,20.11918],[85.24096,20.11588],[85.24656,20.11844],[85.24848,20.13011],[85.25263,20.13328],[85.25574,20.13226],[85.26332,20.14198],[85.26532,20.14183],[85.26504,20.14323],[85.27172,20.14888],[85.28819,20.15053],[85.28717,20.15248],[85.29038,20.15484],[85.29536,20.15307],[85.30575,20.15548],[85.31208,20.15488],[85.31355,20.15906],[85.31265,20.16419],[85.31048,20.16435],[85.31347,20.17051],[85.31927,20.17152],[85.33055,20.18174],[85.33206,20.18068],[85.33174,20.17342],[85.33997,20.17102],[85.34234,20.17534],[85.34308,20.17955],[85.34188,20.18039],[85.34596,20.18312],[85.34657,20.18725],[85.34886,20.1881],[85.35218,20.18647],[85.35594,20.18985],[85.35687,20.18792],[85.36157,20.18755],[85.36712,20.17959],[85.37017,20.17821],[85.36969,20.17084],[85.36185,20.16503],[85.36245,20.15834],[85.35701,20.15436],[85.35527,20.14357],[85.36243,20.14501],[85.36851,20.14437],[85.37635,20.14669],[85.37788,20.15007],[85.38261,20.15121],[85.38261,20.1544],[85.38526,20.15624],[85.38668,20.15023],[85.39117,20.14581],[85.38843,20.14558],[85.38709,20.14351],[85.38775,20.13691],[85.39509,20.13323],[85.39587,20.13689],[85.40206,20.1375],[85.40697,20.13593],[85.40962,20.13163],[85.41405,20.12951],[85.41628,20.12455],[85.40803,20.11685],[85.40879,20.11135],[85.4046,20.1031],[85.40558,20.09977],[85.40085,20.09064],[85.39567,20.08907],[85.39288,20.09082],[85.38437,20.09177],[85.38019,20.0809],[85.3842,20.07998],[85.38423,20.07686],[85.38022,20.07071],[85.38639,20.06347],[85.38562,20.06162],[85.38756,20.05973],[85.38764,20.05389],[85.39188,20.05148],[85.39163,20.04903],[85.39586,20.0467],[85.39618,20.04386],[85.39409,20.04198],[85.39715,20.04156],[85.39709,20.03788],[85.39943,20.03781],[85.40037,20.03521],[85.40333,20.03473],[85.40641,20.03174],[85.40787,20.034],[85.40942,20.03267],[85.41485,20.03318],[85.41535,20.03064],[85.41376,20.02786],[85.41508,20.02464],[85.41617,20.02591],[85.42533,20.02553],[85.43042,20.02896],[85.43568,20.02878],[85.43129,20.01497],[85.42587,20.01123],[85.42339,20.00389],[85.42081,20.00276],[85.41568,20.00406],[85.41471,19.99405],[85.43017,19.9931],[85.43057,19.99457],[85.43707,19.99642],[85.43861,19.99123],[85.45034,19.98381],[85.45161,19.97331],[85.45504,19.97052],[85.45041,19.96151],[85.44644,19.9596],[85.4396,19.95093],[85.43534,19.93973],[85.42683,19.93977],[85.42484,19.93727],[85.42238,19.93975],[85.4182,19.9297],[85.41803,19.92415],[85.41548,19.92874],[85.40767,19.92811],[85.39973,19.93235],[85.39357,19.94027],[85.38386,19.9402],[85.38246,19.94242],[85.38279,19.95202],[85.37278,19.95033],[85.36913,19.95456],[85.36027,19.95654],[85.35375,19.95149],[85.35091,19.94395],[85.33718,19.93812],[85.32963,19.93151],[85.32828,19.93006],[85.32949,19.92712],[85.32781,19.92578],[85.31091,19.92605],[85.30924,19.92441],[85.3046,19.92687],[85.30111,19.92253],[85.28827,19.92217],[85.27859,19.91429],[85.27417,19.91386],[85.27015,19.9179],[85.26676,19.91599],[85.26628,19.91236],[85.25785,19.91153],[85.24892,19.90713],[85.24322,19.90609],[85.22179,19.9123],[85.21909,19.90965],[85.21067,19.91226],[85.19184,19.90751],[85.18265,19.90691],[85.18095,19.91022],[85.17146,19.90509],[85.16525,19.90367],[85.16195,19.90441],[85.15993,19.90767],[85.14831,19.91669],[85.12298,19.93362],[85.11751,19.9322],[85.10233,19.93252],[85.09299,19.92917],[85.0886,19.92527],[85.07924,19.92148],[85.07453,19.92157],[85.055,19.91359],[85.05079,19.9157],[85.03394,19.90707],[85.02607,19.90111],[85.01903,19.90563],[85.00507,19.8996],[84.99791,19.90204],[84.97593,19.90431],[84.95823,19.90022],[84.95382,19.90115],[84.94571,19.89994],[84.93992,19.89741],[84.93596,19.87453],[84.9373,19.87512],[84.93723,19.87364],[84.94528,19.86944],[84.94603,19.87083],[84.95267,19.86828],[84.95094,19.86591],[84.96929,19.85442],[84.984,19.82027],[84.99173,19.81515],[84.99842,19.8166],[84.9992,19.80975],[85.00424,19.80458],[85.0068,19.80351],[85.02193,19.807],[85.02948,19.80493],[85.03609,19.80653],[85.04502,19.80589],[85.07231,19.79456],[85.07763,19.7866],[85.07777,19.78033],[85.0828,19.77641],[85.08397,19.77029],[85.09181,19.76417],[85.12571,19.74934],[85.13779,19.73902],[85.14397,19.72904],[85.1436,19.72119],[85.16007,19.70314],[85.16176,19.69568],[85.16933,19.69109],[85.17246,19.68411],[85.18272,19.67805],[85.1825,19.67223],[85.19594,19.67415],[85.20788,19.67939],[85.21264,19.68619],[85.21118,19.69631],[85.20055,19.70079],[85.19829,19.70623],[85.20306,19.71959],[85.20903,19.72446],[85.2186,19.74],[85.22655,19.74356],[85.24983,19.74389],[85.25249,19.76753],[85.26788,19.77204],[85.28581,19.78158],[85.30359,19.782],[85.30314,19.78361],[85.31608,19.78148],[85.31556,19.78281],[85.32932,19.78523],[85.34338,19.79796],[85.34348,19.80147],[85.34806,19.80034],[85.35713,19.81436],[85.35542,19.81767],[85.35687,19.81748],[85.35934,19.8222],[85.38663,19.83153],[85.39648,19.84307],[85.43045,19.87329],[85.43843,19.88309],[85.50281,19.88466],[85.50002,19.86984],[85.56188,19.8545],[85.56432,19.87586],[85.56779,19.88254],[85.56481,19.89224],[85.56841,19.89833],[85.56633,19.90088],[85.56773,19.90046],[85.56992,19.90395],[85.56089,19.9089],[85.56374,19.91458],[85.56813,19.91688],[85.56336,19.91913],[85.5609,19.91761],[85.53078,19.92764],[85.53392,19.93878],[85.52668,19.94403],[85.52045,19.93063],[85.51056,19.92693],[85.50728,19.9275],[85.50739,19.92981],[85.50569,19.93079],[85.50871,19.93572],[85.51231,19.93544],[85.51867,19.94117],[85.50635,19.94568],[85.50555,19.94798],[85.50375,19.94622],[85.50572,19.9447],[85.50278,19.94577],[85.50118,19.94464],[85.49895,19.9463],[85.50024,19.94736],[85.50333,19.94624],[85.5017,19.94783],[85.50578,19.95272],[85.51074,19.95258],[85.51564,19.96699],[85.51464,19.97025],[85.518,19.97028],[85.51699,19.97413],[85.52181,19.97461],[85.52109,19.97654],[85.52701,19.97629],[85.52634,19.97851],[85.53075,19.97694],[85.52811,19.97154],[85.53071,19.97047],[85.53073,19.96716],[85.53477,19.96525],[85.53179,19.95864],[85.54745,19.95696],[85.54905,19.96185],[85.55233,19.96282],[85.55044,19.95261],[85.55867,19.95165],[85.56397,19.95473],[85.56395,19.96791],[85.56635,19.97244],[85.56253,19.97121],[85.55497,19.97448],[85.55995,19.98108],[85.5663,19.97817],[85.56862,19.98187],[85.56621,19.9855],[85.564,19.98604],[85.56702,19.99042],[85.56228,19.99181],[85.56191,19.99565],[85.56333,20.0],[85.56637,20.00178],[85.56602,20.00358],[85.5674,20.00375],[85.56694,20.00057],[85.56829,20.00019],[85.56666,19.99957],[85.56722,19.99792],[85.5694,19.99741],[85.57038,19.99912],[85.57192,20.00693],[85.56623,20.00865],[85.56625,20.01077],[85.56753,20.01276],[85.56656,20.01352],[85.56963,20.01671],[85.57174,20.0257],[85.57475,20.02276],[85.57885,20.02175],[85.5806,20.00883],[85.58713,20.00665],[85.58616,20.00183],[85.58926,19.99882],[85.59,20.00045],[85.59284,20.00088],[85.59601,20.0084],[85.60121,20.01002],[85.60215,20.01456],[85.60673,20.01908],[85.6116,20.02045],[85.61455,20.01961],[85.60642,19.99599],[85.60917,19.99403],[85.61106,19.99531],[85.61149,19.99324],[85.61358,19.99272],[85.61827,20.00651],[85.62053,20.00817],[85.62076,20.01236],[85.62329,20.01673],[85.62245,20.01803],[85.62843,20.02366],[85.62596,20.02814],[85.61908,20.03229],[85.6204,20.03643],[85.61229,20.03772],[85.61831,20.06005],[85.61897,20.0687],[85.6225,20.06664],[85.62428,20.06983],[85.62803,20.07025],[85.63769,20.07526],[85.63897,20.07794],[85.63717,20.08247],[85.64381,20.08191],[85.64371,20.08889],[85.63684,20.09197],[85.63183,20.10257],[85.64515,20.09936],[85.64931,20.09698],[85.64685,20.09026],[85.65007,20.06713],[85.66286,20.06602],[85.66977,20.07022],[85.67712,20.06932],[85.68125,20.07597],[85.67524,20.07711],[85.67139,20.08408],[85.67117,20.08758],[85.67762,20.08978],[85.67995,20.09289],[85.68636,20.09232],[85.69283,20.09531],[85.69255,20.09874],[85.69021,20.09687],[85.68762,20.09912],[85.68561,20.09663],[85.68638,20.09943],[85.68566,20.09793],[85.68343,20.10008],[85.6859,20.10483],[85.68324,20.10546],[85.68267,20.10823],[85.67462,20.11283],[85.6765,20.11446],[85.67497,20.12518],[85.68363,20.13105],[85.68036,20.13624],[85.68056,20.14383],[85.68288,20.14327],[85.68362,20.14468],[85.68482,20.15308],[85.68799,20.15187],[85.68887,20.15511],[85.69075,20.15395],[85.69055,20.15832],[85.69281,20.15787],[85.69285,20.15404],[85.70137,20.15204],[85.70031,20.14712],[85.70139,20.1441],[85.70408,20.14432],[85.70513,20.14599],[85.70602,20.14458],[85.71391,20.14377],[85.71478,20.14571],[85.71949,20.14291],[85.7199,20.14112],[85.71448,20.1369],[85.71665,20.1355],[85.71733,20.13272],[85.72277,20.12974],[85.7262,20.13534],[85.72054,20.14189],[85.72839,20.14967],[85.73409,20.15051],[85.74494,20.14815],[85.74915,20.14585],[85.74871,20.14005],[85.75074,20.1403],[85.7511,20.14239],[85.75206,20.14042],[85.75684,20.14153],[85.75809,20.14592],[85.7527,20.14667],[85.75496,20.14995],[85.75484,20.15308],[85.76449,20.1536],[85.76134,20.15987],[85.76355,20.16842],[85.78017,20.16741],[85.78347,20.16358],[85.77926,20.15803],[85.78799,20.15786],[85.79047,20.15472],[85.7977,20.15195],[85.80573,20.16132],[85.81568,20.15874],[85.82141,20.16068],[85.82544,20.15911],[85.82747,20.17126],[85.8343,20.18236],[85.83385,20.188],[85.83636,20.1879],[85.83732,20.1916],[85.83924,20.18849],[85.84298,20.18829],[85.84281,20.17924],[85.84433,20.17569],[85.85413,20.17642],[85.85432,20.19287],[85.84708,20.19323],[85.8459,20.19581],[85.84296,20.19583],[85.84237,20.19791],[85.8417,20.19546],[85.845,20.19369],[85.84458,20.19233],[85.83742,20.19488],[85.84043,20.20006],[85.84481,20.19811],[85.84676,20.20179],[85.8514,20.20165],[85.85199,20.20359],[85.85724,20.20028],[85.85663,20.19842],[85.85803,20.19738],[85.86157,20.19845],[85.86625,20.19115],[85.87041,20.18935],[85.87371,20.19188],[85.88716,20.18354],[85.89298,20.17698],[85.88866,20.17047],[85.89263,20.16757],[85.89369,20.15994],[85.89821,20.15732],[85.89834,20.15294],[85.90366,20.15183],[85.89454,20.13988],[85.89161,20.14118],[85.88557,20.13389],[85.88688,20.1328],[85.88421,20.12941],[85.87576,20.12806],[85.87362,20.12592],[85.87164,20.12175],[85.87542,20.1207],[85.8754,20.11833],[85.87762,20.11771],[85.87798,20.11384],[85.87992,20.11289],[85.88615,20.1111],[85.88719,20.11346],[85.88962,20.11369],[85.89706,20.11185],[85.90088,20.12064],[85.90227,20.12083],[85.90237,20.12734],[85.91008,20.123],[85.91152,20.1216],[85.91026,20.12101],[85.91439,20.11988],[85.91692,20.12131],[85.91607,20.11991],[85.91861,20.11777],[85.92065,20.1192],[85.92003,20.11717],[85.92568,20.11423],[85.92477,20.11295],[85.92818,20.11371],[85.92987,20.11236],[85.92972,20.11538],[85.9343,20.11738],[85.94373,20.11456],[85.94309,20.11591],[85.94494,20.11604],[85.94307,20.11909],[85.94575,20.12108],[85.94835,20.11839],[85.95007,20.12026],[85.94861,20.1177],[85.95169,20.11638],[85.94989,20.11406],[85.95273,20.11269],[85.95527,20.11411],[85.95735,20.11817],[85.95851,20.11785],[85.95985,20.12174],[85.96199,20.11881],[85.96916,20.11728],[85.97073,20.11834],[85.97847,20.11391],[85.98962,20.11255],[85.99077,20.11213],[85.98959,20.10955],[85.999,20.10696],[86.0027,20.11003],[86.00396,20.114],[86.0062,20.11227],[86.01012,20.11278],[86.01506,20.10379],[86.02141,20.10122],[86.02317,20.10405],[86.02843,20.10592],[86.02897,20.10768],[86.04168,20.10684],[86.04639,20.10504],[86.04909,20.10525],[86.05158,20.1077],[86.05631,20.10268],[86.06928,20.10849],[86.07578,20.10514],[86.07917,20.10532],[86.07725,20.11047],[86.07376,20.11235],[86.07208,20.11048],[86.06943,20.11289],[86.07134,20.11809],[86.06521,20.1236],[86.05616,20.12541],[86.04698,20.13367],[86.04216,20.13276],[86.03532,20.13472],[86.03593,20.13672],[86.03189,20.14043],[86.03193,20.14238],[86.0445,20.14082],[86.04796,20.14615],[86.04498,20.15465],[86.04738,20.15903],[86.05089,20.1592],[86.05333,20.16392],[86.04387,20.16929],[86.04457,20.17053],[86.04126,20.1739],[86.04115,20.17682],[86.03746,20.17925],[86.03438,20.17469],[86.03588,20.17234],[86.03354,20.17007],[86.02863,20.16773],[86.02471,20.16905],[86.02171,20.16739],[86.02212,20.17834],[86.02677,20.17833],[86.02772,20.18221],[86.02264,20.18226],[86.02151,20.18468],[86.01734,20.18612],[86.01165,20.20755],[86.00989,20.20951],[86.00768,20.20915],[86.00433,20.22452],[86.00198,20.22588],[86.00027,20.224],[85.98986,20.22598],[85.98923,20.23173],[85.98297,20.23561],[85.98195,20.23803],[85.96981,20.24319],[85.96942,20.24608],[85.96428,20.25],[85.96519,20.2516],[85.96118,20.25214],[85.95195,20.26116],[85.95006,20.27109],[85.94309,20.26823],[85.93863,20.27224],[85.93452,20.26775],[85.93104,20.27074],[85.93103,20.27459],[85.93832,20.28277],[85.9365,20.28306],[85.93422,20.28918],[85.92939,20.28953],[85.92281,20.29361],[85.91847,20.30406],[85.91933,20.30968],[85.91193,20.31163],[85.91009,20.31944],[85.91137,20.32341],[85.91548,20.3277],[85.91989,20.325],[85.91831,20.32428],[85.91894,20.31722],[85.92423,20.31201],[85.92734,20.31316],[85.92868,20.31703],[85.92665,20.32955],[85.91671,20.33611],[85.91582,20.34585],[85.91374,20.34814],[85.90598,20.35345],[85.90152,20.35232],[85.89969,20.35367],[85.89691,20.36204],[85.89862,20.369],[85.89762,20.37201],[85.89383,20.36972],[85.89441,20.36743],[85.89314,20.367],[85.89357,20.36376],[85.89171,20.36027],[85.88255,20.36077],[85.8808,20.35717],[85.87884,20.3573],[85.87459,20.36223],[85.87343,20.36717],[85.87495,20.37599],[85.87834,20.37866],[85.87345,20.38126],[85.86898,20.39126],[85.86866,20.39597],[85.86585,20.40008],[85.86339,20.40103],[85.86031,20.39568],[85.8418,20.4107],[85.83635,20.40529],[85.83427,20.40614],[85.83278,20.40485],[85.82414,20.40806],[85.818,20.41317],[85.81887,20.417],[85.81688,20.42058],[85.81643,20.43081],[85.81415,20.42842],[85.81026,20.4276],[85.8077,20.42873],[85.80518,20.43491],[85.80133,20.43567]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"363","area_level":"District","area_name":"Koraput","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.86678,19.20566],[82.86304,19.20747],[82.85592,19.20589],[82.85404,19.19333],[82.84931,19.19505],[82.84262,19.20047],[82.83906,19.19493],[82.83338,19.19013],[82.83291,19.18754],[82.8357,19.1823],[82.82706,19.17677],[82.82311,19.17226],[82.82655,19.16349],[82.8272,19.15668],[82.82598,19.15149],[82.82279,19.14771],[82.82002,19.14899],[82.82032,19.15177],[82.81542,19.15577],[82.81746,19.17029],[82.80959,19.16427],[82.80321,19.1514],[82.79802,19.15143],[82.79201,19.15524],[82.79105,19.15798],[82.79539,19.16307],[82.79243,19.168],[82.7935,19.17045],[82.78949,19.16946],[82.78827,19.17315],[82.78448,19.17236],[82.77926,19.16529],[82.76143,19.17074],[82.76119,19.16456],[82.74969,19.1731],[82.73975,19.16831],[82.74116,19.15983],[82.73632,19.15705],[82.7317,19.16084],[82.72298,19.16126],[82.72612,19.16566],[82.72124,19.17211],[82.72546,19.1725],[82.72506,19.17408],[82.70826,19.17903],[82.70662,19.18075],[82.70732,19.18703],[82.70165,19.19094],[82.69631,19.1895],[82.6933,19.19064],[82.68569,19.186],[82.68175,19.18971],[82.68145,19.19546],[82.67952,19.19729],[82.66856,19.18409],[82.65379,19.18866],[82.64304,19.17714],[82.63693,19.17554],[82.64046,19.17038],[82.64199,19.15323],[82.64001,19.14941],[82.63738,19.14942],[82.63846,19.15464],[82.63414,19.16161],[82.62622,19.16228],[82.62375,19.15942],[82.62752,19.1577],[82.62746,19.15381],[82.62996,19.15375],[82.62534,19.15115],[82.61521,19.15927],[82.61586,19.18171],[82.61314,19.18316],[82.6074,19.18078],[82.6053,19.18136],[82.59796,19.19156],[82.59046,19.19259],[82.58973,19.2011],[82.58806,19.20252],[82.58319,19.19517],[82.57972,19.19492],[82.57715,19.19883],[82.57596,19.21002],[82.57274,19.2113],[82.5714,19.20983],[82.57115,19.2009],[82.56884,19.19828],[82.56466,19.19815],[82.54882,19.20606],[82.54612,19.20304],[82.55114,19.19684],[82.54968,19.19468],[82.53913,19.19728],[82.53057,19.20363],[82.52856,19.20277],[82.52547,19.19735],[82.51809,19.20262],[82.48891,19.18048],[82.4779,19.18042],[82.47281,19.17698],[82.46826,19.17885],[82.46411,19.18398],[82.46026,19.18455],[82.4559,19.18161],[82.45338,19.17585],[82.44602,19.17738],[82.44034,19.17107],[82.43349,19.17094],[82.4117,19.18554],[82.41045,19.16876],[82.40204,19.16521],[82.39319,19.16707],[82.38315,19.17778],[82.37828,19.17676],[82.372,19.17011],[82.36677,19.178],[82.36008,19.17883],[82.35275,19.18434],[82.3511,19.18293],[82.34894,19.17273],[82.34023,19.1678],[82.33097,19.16902],[82.32359,19.17685],[82.31133,19.17703],[82.29564,19.1636],[82.29192,19.15277],[82.28584,19.14806],[82.28288,19.14778],[82.27811,19.15527],[82.27539,19.15645],[82.26452,19.15154],[82.25849,19.14204],[82.24518,19.14535],[82.22981,19.14396],[82.22759,19.14184],[82.22568,19.13574],[82.23547,19.12197],[82.22697,19.12098],[82.22001,19.11443],[82.21577,19.11502],[82.209,19.12052],[82.20581,19.11694],[82.20633,19.11507],[82.20298,19.10811],[82.20518,19.107],[82.20735,19.10228],[82.20499,19.10115],[82.20491,19.09714],[82.20648,19.0964],[82.20971,19.09968],[82.21294,19.09798],[82.21414,19.09985],[82.21907,19.0954],[82.21371,19.08365],[82.20472,19.0756],[82.20225,19.06664],[82.22988,19.02741],[82.23276,19.01794],[82.23911,18.96229],[82.24605,18.91911],[82.23696,18.91423],[82.23091,18.91967],[82.22728,18.91904],[82.2183,18.92252],[82.20085,18.91359],[82.19251,18.90751],[82.18109,18.90694],[82.17615,18.90267],[82.17516,18.89161],[82.17666,18.88709],[82.16932,18.88189],[82.16506,18.88322],[82.16041,18.87891],[82.16104,18.87713],[82.16737,18.87362],[82.16509,18.86487],[82.1602,18.8614],[82.16303,18.85415],[82.16747,18.85235],[82.16574,18.84387],[82.16896,18.83602],[82.16029,18.81987],[82.16615,18.81407],[82.16137,18.81252],[82.1602,18.80807],[82.15654,18.80453],[82.16453,18.80192],[82.16553,18.80003],[82.16519,18.79831],[82.16017,18.79523],[82.16018,18.78845],[82.15736,18.78548],[82.15217,18.7853],[82.14738,18.78097],[82.14057,18.77846],[82.13842,18.77837],[82.13567,18.78148],[82.13349,18.78045],[82.13133,18.77011],[82.13362,18.76811],[82.13342,18.76536],[82.11908,18.76975],[82.11204,18.76767],[82.11101,18.76588],[82.10576,18.76731],[82.09782,18.76384],[82.09158,18.76573],[82.08902,18.76174],[82.09352,18.74681],[82.09134,18.73848],[82.10434,18.72992],[82.10807,18.72942],[82.11036,18.72618],[82.11476,18.72797],[82.11524,18.72647],[82.12303,18.72511],[82.13005,18.72167],[82.13319,18.71433],[82.13251,18.70767],[82.14055,18.70577],[82.14355,18.69393],[82.14043,18.68871],[82.14002,18.68411],[82.13406,18.6829],[82.13094,18.67889],[82.13739,18.67367],[82.14194,18.67269],[82.14593,18.66506],[82.148,18.66776],[82.15418,18.66772],[82.1569,18.67219],[82.16038,18.6694],[82.16299,18.66104],[82.16436,18.6458],[82.16903,18.64257],[82.17112,18.63856],[82.17578,18.63748],[82.18198,18.63864],[82.18462,18.64142],[82.18781,18.65065],[82.19587,18.65596],[82.19631,18.65403],[82.1982,18.65351],[82.20841,18.6601],[82.21226,18.66767],[82.21556,18.66673],[82.2224,18.67171],[82.22353,18.66504],[82.22822,18.66221],[82.23,18.65812],[82.23115,18.65095],[82.22944,18.64543],[82.23499,18.64311],[82.2312,18.6377],[82.22912,18.63095],[82.23254,18.62802],[82.2337,18.62359],[82.23746,18.62412],[82.24073,18.62167],[82.2387,18.61867],[82.24067,18.61836],[82.24275,18.61282],[82.24382,18.61209],[82.24826,18.61495],[82.25228,18.6137],[82.25383,18.60383],[82.2568,18.60436],[82.2571,18.59954],[82.26398,18.59621],[82.26232,18.59352],[82.26679,18.58953],[82.26823,18.59155],[82.27382,18.58881],[82.28056,18.59135],[82.28285,18.59024],[82.2856,18.58499],[82.28903,18.58444],[82.28836,18.58],[82.29584,18.57763],[82.30358,18.57802],[82.31266,18.57559],[82.31899,18.58384],[82.32811,18.59168],[82.32932,18.59849],[82.34237,18.60641],[82.34897,18.61294],[82.35772,18.61686],[82.36322,18.62331],[82.37122,18.6238],[82.37242,18.61867],[82.37493,18.61646],[82.3838,18.61757],[82.3861,18.62333],[82.38961,18.6236],[82.39023,18.62574],[82.39168,18.6258],[82.39359,18.62241],[82.397,18.62154],[82.39599,18.6199],[82.40011,18.61439],[82.39965,18.611],[82.40856,18.60215],[82.4026,18.59768],[82.38509,18.59137],[82.38622,18.5835],[82.39695,18.57769],[82.3979,18.57402],[82.40685,18.56657],[82.41468,18.56296],[82.40871,18.55304],[82.40605,18.54507],[82.40178,18.54091],[82.40164,18.52777],[82.403,18.52609],[82.39784,18.5246],[82.39259,18.52933],[82.38869,18.52934],[82.38311,18.52242],[82.38488,18.51291],[82.38937,18.51062],[82.38497,18.50309],[82.38774,18.49972],[82.41258,18.48785],[82.43046,18.4855],[82.43416,18.49177],[82.43791,18.49485],[82.43414,18.49696],[82.43404,18.49857],[82.43715,18.50094],[82.43861,18.50682],[82.4431,18.50877],[82.44475,18.51409],[82.46098,18.5255],[82.46412,18.53287],[82.46863,18.5349],[82.47347,18.54258],[82.48275,18.54872],[82.48728,18.5498],[82.4919,18.54763],[82.49353,18.54283],[82.49116,18.54176],[82.484,18.54332],[82.48134,18.54061],[82.48395,18.53545],[82.48759,18.53261],[82.48594,18.52877],[82.48684,18.52752],[82.49405,18.52455],[82.5051,18.51345],[82.51097,18.5176],[82.5152,18.5181],[82.52597,18.51632],[82.53203,18.51116],[82.52698,18.50588],[82.52966,18.5013],[82.52649,18.49629],[82.52789,18.49386],[82.53199,18.49243],[82.53327,18.48828],[82.5283,18.48305],[82.52785,18.48065],[82.53189,18.48049],[82.53419,18.47773],[82.53084,18.47303],[82.52477,18.4717],[82.51945,18.46722],[82.51942,18.4656],[82.52389,18.46349],[82.52834,18.46421],[82.52739,18.45966],[82.53325,18.45866],[82.53726,18.44643],[82.53956,18.4436],[82.54447,18.44938],[82.54134,18.45416],[82.54237,18.45763],[82.54876,18.45305],[82.55258,18.45504],[82.55482,18.45448],[82.55659,18.44982],[82.56075,18.44933],[82.56163,18.44693],[82.55652,18.44297],[82.55815,18.43966],[82.55058,18.4333],[82.55201,18.42857],[82.54574,18.42752],[82.54562,18.4224],[82.54141,18.42191],[82.5433,18.41402],[82.54719,18.41429],[82.54709,18.41261],[82.53532,18.40656],[82.54088,18.39943],[82.55218,18.39791],[82.55533,18.39363],[82.56243,18.39996],[82.571,18.39467],[82.57583,18.39623],[82.58387,18.38673],[82.58863,18.39163],[82.5948,18.38923],[82.59644,18.38297],[82.59952,18.37979],[82.60152,18.37937],[82.60529,18.38203],[82.60612,18.37567],[82.60322,18.37265],[82.60573,18.37005],[82.60599,18.36606],[82.62123,18.35971],[82.61452,18.35091],[82.60204,18.35228],[82.60288,18.34435],[82.60854,18.34004],[82.6112,18.33371],[82.60894,18.32713],[82.60125,18.32534],[82.59488,18.32888],[82.58847,18.31788],[82.58389,18.31976],[82.58131,18.31517],[82.58517,18.30846],[82.59606,18.31028],[82.59647,18.30639],[82.59866,18.30419],[82.59467,18.29822],[82.5952,18.29184],[82.59102,18.28978],[82.59419,18.28697],[82.59406,18.2847],[82.59215,18.28035],[82.58805,18.2803],[82.58779,18.27606],[82.59678,18.27437],[82.59691,18.26479],[82.60422,18.26469],[82.60721,18.2614],[82.61385,18.25842],[82.62353,18.24632],[82.62755,18.24458],[82.63187,18.23926],[82.63768,18.2367],[82.64863,18.245],[82.65249,18.25],[82.65095,18.251],[82.64712,18.26223],[82.64228,18.26377],[82.64279,18.27155],[82.64854,18.27287],[82.65224,18.28114],[82.64382,18.28801],[82.64072,18.29623],[82.64265,18.30203],[82.65119,18.30186],[82.65494,18.29699],[82.65742,18.29607],[82.66225,18.2983],[82.66677,18.29803],[82.67632,18.30656],[82.68018,18.30335],[82.68442,18.30359],[82.69195,18.30764],[82.69452,18.31228],[82.70166,18.31064],[82.70938,18.31318],[82.70856,18.31584],[82.71502,18.32252],[82.72491,18.32453],[82.73427,18.32024],[82.73605,18.32311],[82.74098,18.32261],[82.73831,18.32695],[82.74287,18.32999],[82.74785,18.32897],[82.75064,18.33092],[82.75518,18.33019],[82.7563,18.33331],[82.75919,18.33403],[82.7581,18.33763],[82.75969,18.33961],[82.7633,18.33891],[82.76482,18.33616],[82.76845,18.33806],[82.77112,18.33758],[82.77409,18.34032],[82.77639,18.34924],[82.79056,18.36319],[82.78876,18.3718],[82.78478,18.38041],[82.78265,18.38189],[82.79386,18.38602],[82.79146,18.39614],[82.79383,18.40135],[82.79954,18.40675],[82.79549,18.40909],[82.78688,18.41071],[82.78743,18.41917],[82.78289,18.42261],[82.78216,18.43079],[82.79538,18.43971],[82.80314,18.44925],[82.81564,18.4509],[82.82322,18.44726],[82.8238,18.4435],[82.83122,18.44229],[82.83595,18.43929],[82.83638,18.43709],[82.84584,18.43375],[82.84863,18.42372],[82.85242,18.4192],[82.85641,18.42544],[82.8713,18.41846],[82.8764,18.42163],[82.88156,18.42068],[82.895,18.4241],[82.89778,18.4035],[82.89072,18.3905],[82.89341,18.38701],[82.89419,18.38157],[82.90192,18.37407],[82.91089,18.37295],[82.91308,18.36848],[82.91786,18.37528],[82.9222,18.37542],[82.92603,18.36814],[82.93973,18.36082],[82.95373,18.36157],[82.96011,18.36641],[82.96699,18.35893],[82.97047,18.36001],[82.98318,18.36644],[82.98219,18.36812],[82.98811,18.37766],[82.98728,18.37884],[82.99027,18.3806],[82.99208,18.37856],[82.99683,18.38552],[83.00528,18.38276],[83.01179,18.38864],[83.01598,18.38705],[83.02192,18.3917],[83.02579,18.38693],[83.02951,18.38609],[83.03222,18.3835],[83.03923,18.38345],[83.04308,18.37937],[83.05545,18.38071],[83.07705,18.40335],[83.07684,18.4054],[83.06425,18.40941],[83.05744,18.41937],[83.0655,18.42299],[83.06731,18.43009],[83.0634,18.43207],[83.05998,18.43696],[83.05856,18.43668],[83.0508,18.43413],[83.04598,18.42667],[83.04253,18.42423],[83.04313,18.42596],[83.03776,18.43454],[83.04094,18.44079],[83.03668,18.4427],[83.03289,18.44796],[83.02461,18.44846],[83.02095,18.45624],[83.03073,18.46627],[83.03765,18.46862],[83.05511,18.48561],[83.05521,18.49566],[83.05797,18.49684],[83.06048,18.50205],[83.06401,18.50228],[83.07507,18.51457],[83.07701,18.52615],[83.08364,18.53106],[83.08927,18.53891],[83.09353,18.53984],[83.09504,18.54664],[83.08951,18.55299],[83.08381,18.55166],[83.08094,18.55402],[83.07885,18.55039],[83.07124,18.54976],[83.06193,18.54205],[83.05496,18.54398],[83.04535,18.54418],[83.03843,18.55587],[83.03315,18.56979],[83.02976,18.57351],[83.03127,18.57785],[83.03766,18.58102],[83.04008,18.58648],[83.0531,18.58813],[83.05279,18.60068],[83.04672,18.59875],[83.04444,18.59947],[83.02759,18.59257],[83.02379,18.58965],[83.0188,18.59347],[83.01356,18.59436],[83.01269,18.59936],[83.01501,18.60209],[83.01521,18.60544],[83.00047,18.60798],[82.99957,18.61953],[83.00575,18.62169],[83.0089,18.62685],[83.01963,18.63512],[83.01313,18.64605],[83.01702,18.65022],[83.02264,18.65122],[83.025,18.65441],[83.04423,18.65844],[83.05802,18.66531],[83.06278,18.68363],[83.07501,18.70126],[83.07137,18.70164],[83.07279,18.70554],[83.09261,18.72353],[83.09477,18.73138],[83.10169,18.73275],[83.10761,18.74706],[83.11242,18.75281],[83.12221,18.7575],[83.12363,18.76052],[83.12114,18.76584],[83.11515,18.76809],[83.138,18.78482],[83.13903,18.78536],[83.15181,18.77607],[83.15228,18.77269],[83.15648,18.76823],[83.16415,18.7669],[83.16505,18.76894],[83.17791,18.77086],[83.19319,18.75312],[83.20655,18.75144],[83.20801,18.74912],[83.20737,18.74576],[83.21269,18.73758],[83.21128,18.73254],[83.21245,18.73049],[83.21464,18.73337],[83.21741,18.74445],[83.22537,18.75091],[83.22817,18.7569],[83.22813,18.76102],[83.22259,18.7716],[83.22411,18.77474],[83.2346,18.77406],[83.24325,18.76828],[83.25339,18.76756],[83.26255,18.76976],[83.27135,18.76464],[83.28137,18.7746],[83.27527,18.7829],[83.28434,18.79788],[83.29787,18.8017],[83.30931,18.8095],[83.3194,18.80477],[83.33062,18.80635],[83.32814,18.81213],[83.32825,18.81808],[83.33796,18.82436],[83.34777,18.82711],[83.34934,18.83013],[83.35868,18.83493],[83.36394,18.84228],[83.36815,18.84406],[83.37044,18.84291],[83.37174,18.83902],[83.37519,18.83635],[83.37833,18.83066],[83.40413,18.84299],[83.40588,18.84252],[83.40437,18.84756],[83.40487,18.86191],[83.4147,18.8737],[83.41475,18.87496],[83.41024,18.87432],[83.40703,18.87715],[83.39742,18.87853],[83.39183,18.88229],[83.39127,18.8872],[83.38353,18.89036],[83.37833,18.89695],[83.38465,18.90386],[83.39318,18.90738],[83.39061,18.90961],[83.38181,18.91389],[83.37684,18.90981],[83.36972,18.90788],[83.36239,18.91476],[83.35983,18.91471],[83.3617,18.91599],[83.35914,18.91688],[83.35749,18.92392],[83.35343,18.9306],[83.35248,18.94346],[83.36098,18.94083],[83.37015,18.94172],[83.36919,18.92986],[83.3706,18.92604],[83.37735,18.92561],[83.38202,18.92729],[83.38744,18.93279],[83.38303,18.93694],[83.37128,18.94265],[83.36838,18.9533],[83.36584,18.95694],[83.3684,18.96059],[83.36713,18.96301],[83.36154,18.96315],[83.35474,18.9673],[83.35029,18.96563],[83.34818,18.95978],[83.35086,18.9474],[83.35017,18.94327],[83.34385,18.94112],[83.34844,18.92629],[83.33522,18.92493],[83.33342,18.92621],[83.33392,18.92878],[83.32541,18.93315],[83.32486,18.93748],[83.32711,18.94462],[83.33784,18.94629],[83.33902,18.95278],[83.33374,18.95494],[83.33252,18.95767],[83.33482,18.96852],[83.33148,18.96908],[83.3283,18.96703],[83.31874,18.97341],[83.3176,18.98029],[83.31523,18.9832],[83.3159,18.98717],[83.31033,18.99568],[83.31065,18.99867],[83.31665,19.00126],[83.32237,18.99951],[83.32721,19.0024],[83.33126,18.99899],[83.33878,18.99701],[83.33636,19.00294],[83.33711,19.00645],[83.34003,19.00885],[83.34292,19.01814],[83.34795,19.01706],[83.34704,19.02546],[83.35437,19.03777],[83.35906,19.03988],[83.36247,19.0477],[83.3588,19.05245],[83.34538,19.05237],[83.34035,19.06087],[83.34478,19.0733],[83.34242,19.08108],[83.33832,19.08334],[83.33981,19.09411],[83.33824,19.0961],[83.34076,19.10218],[83.32688,19.10025],[83.3199,19.11414],[83.31228,19.11507],[83.30895,19.11818],[83.3019,19.11427],[83.2984,19.12295],[83.29042,19.1149],[83.28455,19.11677],[83.28478,19.12554],[83.28307,19.12631],[83.27946,19.12337],[83.27114,19.09356],[83.26906,19.09066],[83.26858,19.08469],[83.25941,19.06755],[83.26227,19.06945],[83.26221,19.06503],[83.26693,19.06376],[83.26822,19.05465],[83.26493,19.05094],[83.26042,19.03861],[83.24327,19.02724],[83.23745,19.02505],[83.23439,19.02647],[83.2363,19.01469],[83.23418,19.00837],[83.23793,18.99786],[83.23684,18.98958],[83.23427,18.98967],[83.23224,18.98562],[83.21985,18.98363],[83.21064,18.97462],[83.20086,18.96034],[83.185,18.96086],[83.18583,18.96871],[83.19653,18.99135],[83.19446,19.00022],[83.18804,19.00368],[83.18449,19.0138],[83.18608,19.03097],[83.19036,19.03845],[83.19048,19.04493],[83.1931,19.05241],[83.19197,19.05517],[83.18661,19.05925],[83.19279,19.06695],[83.19531,19.07534],[83.19008,19.08011],[83.18519,19.08112],[83.18738,19.08479],[83.18952,19.09646],[83.18153,19.09531],[83.17907,19.098],[83.18798,19.10603],[83.19027,19.11302],[83.1952,19.11503],[83.19537,19.11928],[83.19902,19.11974],[83.20487,19.12339],[83.20401,19.12744],[83.20537,19.1325],[83.20742,19.13158],[83.21465,19.13422],[83.2208,19.13829],[83.22206,19.13645],[83.22149,19.12884],[83.22509,19.12288],[83.23208,19.12395],[83.2388,19.12787],[83.24471,19.12791],[83.24363,19.13078],[83.24012,19.13314],[83.24108,19.14518],[83.24832,19.14843],[83.2501,19.15295],[83.25557,19.1532],[83.25713,19.16394],[83.24813,19.16245],[83.23541,19.17109],[83.22666,19.17329],[83.22364,19.16512],[83.21981,19.16119],[83.20769,19.16685],[83.19825,19.16897],[83.19745,19.16036],[83.20483,19.15424],[83.20126,19.1483],[83.19654,19.14702],[83.19289,19.15003],[83.18915,19.1506],[83.18881,19.14834],[83.18136,19.14659],[83.17751,19.14353],[83.17528,19.14521],[83.16619,19.13834],[83.16647,19.13402],[83.16368,19.13096],[83.16379,19.12886],[83.16197,19.12931],[83.16057,19.12511],[83.16272,19.12322],[83.16161,19.12185],[83.15006,19.12496],[83.14726,19.12968],[83.14776,19.13564],[83.14136,19.13517],[83.13802,19.13734],[83.13571,19.13643],[83.13324,19.13314],[83.13353,19.12436],[83.13088,19.12232],[83.13195,19.10883],[83.12952,19.09335],[83.12557,19.09334],[83.12037,19.08971],[83.11626,19.09347],[83.11582,19.09989],[83.11204,19.10545],[83.11005,19.10578],[83.10683,19.11381],[83.10076,19.11136],[83.09789,19.10907],[83.09842,19.10675],[83.09528,19.10447],[83.09215,19.09557],[83.08734,19.08802],[83.08585,19.0867],[83.08009,19.08691],[83.07382,19.08156],[83.07478,19.0806],[83.07311,19.07114],[83.06879,19.06824],[83.06609,19.06293],[83.07162,19.06146],[83.07201,19.05764],[83.06892,19.05254],[83.06882,19.04748],[83.06509,19.04415],[83.05455,19.0524],[83.05046,19.05277],[83.04814,19.05577],[83.04365,19.05461],[83.03169,19.05531],[83.03037,19.05739],[83.02184,19.06122],[83.02048,19.06569],[83.01903,19.06571],[83.01934,19.07384],[83.02915,19.07898],[83.0274,19.08249],[83.02861,19.0868],[83.02389,19.09244],[83.01891,19.09537],[83.00931,19.09565],[83.00657,19.10075],[83.0089,19.11223],[83.00734,19.11258],[83.00722,19.1171],[83.00511,19.12062],[82.99714,19.1278],[82.99099,19.13108],[82.9863,19.13654],[82.98055,19.13838],[82.98302,19.14794],[82.98133,19.15032],[82.98133,19.15761],[82.97939,19.16293],[82.98209,19.16891],[82.98074,19.1718],[82.97669,19.17247],[82.97296,19.16583],[82.96442,19.16056],[82.95864,19.15934],[82.95505,19.15597],[82.9486,19.15479],[82.93862,19.16155],[82.93037,19.15881],[82.91997,19.16239],[82.91669,19.16096],[82.91446,19.15736],[82.90732,19.15774],[82.90134,19.15537],[82.90394,19.16011],[82.89706,19.16777],[82.89799,19.1744],[82.8949,19.17396],[82.89297,19.17881],[82.88401,19.18174],[82.88346,19.18442],[82.87764,19.18342],[82.87375,19.1921],[82.87022,19.19365],[82.8717,19.20017],[82.86678,19.20566]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"364","area_level":"District","area_name":"Malkangiri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.10241,18.73105],[82.09134,18.73848],[82.08826,18.7328],[82.08807,18.72913],[82.08606,18.72795],[82.08688,18.72142],[82.08497,18.71859],[82.07653,18.72211],[82.07456,18.72462],[82.06742,18.7265],[82.06505,18.72007],[82.06277,18.71902],[82.05877,18.71934],[82.05609,18.7229],[82.05365,18.72361],[82.04812,18.7214],[82.04021,18.72391],[82.03092,18.72379],[82.02815,18.72121],[82.01674,18.7195],[82.00879,18.71255],[82.00583,18.71465],[81.99992,18.71108],[81.99859,18.70691],[81.99473,18.70468],[81.9889,18.70528],[81.9701,18.69815],[81.96294,18.68898],[81.96075,18.68863],[81.96915,18.67339],[81.9616,18.67028],[81.95508,18.66422],[81.95279,18.65954],[81.95316,18.65404],[81.94894,18.64371],[81.94303,18.64317],[81.93637,18.6448],[81.92173,18.64291],[81.91526,18.6513],[81.90089,18.66137],[81.89835,18.65854],[81.89377,18.65746],[81.89501,18.65445],[81.8982,18.65441],[81.89405,18.64228],[81.89887,18.63523],[81.89521,18.63282],[81.89459,18.62954],[81.90848,18.62856],[81.92064,18.62342],[81.93074,18.61814],[81.93515,18.61265],[81.93521,18.60709],[81.94221,18.60171],[81.95098,18.60095],[81.96303,18.59479],[81.96342,18.59003],[81.95984,18.58948],[81.95607,18.58393],[81.95291,18.58282],[81.95331,18.57671],[81.95051,18.57485],[81.95057,18.57002],[81.94508,18.57014],[81.9381,18.5666],[81.92971,18.56613],[81.92678,18.56673],[81.92084,18.57269],[81.91777,18.5708],[81.91557,18.57281],[81.91167,18.57122],[81.91036,18.56577],[81.90592,18.56455],[81.90566,18.56116],[81.90862,18.553],[81.90141,18.54861],[81.90587,18.54516],[81.90901,18.53807],[81.8979,18.53509],[81.88927,18.53816],[81.87968,18.52524],[81.86825,18.52492],[81.85699,18.50743],[81.85611,18.50092],[81.85783,18.49477],[81.85621,18.4914],[81.79502,18.44072],[81.76887,18.41709],[81.75006,18.35275],[81.65914,18.34656],[81.65087,18.34062],[81.64966,18.3369],[81.65192,18.33254],[81.66217,18.32498],[81.66223,18.32123],[81.65132,18.32153],[81.64452,18.31818],[81.63965,18.31794],[81.62811,18.31384],[81.61653,18.30735],[81.60054,18.30969],[81.5976,18.30891],[81.5929,18.30071],[81.58551,18.29643],[81.57346,18.28264],[81.56433,18.2752],[81.55084,18.2693],[81.54128,18.27006],[81.53527,18.26838],[81.52524,18.25771],[81.52464,18.25586],[81.52766,18.25094],[81.53045,18.24028],[81.52593,18.23355],[81.52426,18.22751],[81.51992,18.22199],[81.51983,18.21766],[81.51552,18.21324],[81.51326,18.20054],[81.50941,18.19457],[81.507,18.1862],[81.50992,18.17949],[81.51776,18.17546],[81.52373,18.16589],[81.526,18.16042],[81.52582,18.1534],[81.52413,18.15081],[81.51832,18.14816],[81.51382,18.14054],[81.51289,18.13575],[81.51509,18.12276],[81.51286,18.09869],[81.49963,18.07985],[81.4966,18.07095],[81.49069,18.06284],[81.48264,18.05567],[81.48041,18.05074],[81.48015,18.03369],[81.48312,18.02705],[81.47991,18.00439],[81.48028,17.99779],[81.47762,17.98841],[81.48295,17.97682],[81.47609,17.96934],[81.47211,17.9605],[81.45984,17.95295],[81.45291,17.93637],[81.44911,17.93193],[81.44992,17.92403],[81.45337,17.91463],[81.45282,17.90756],[81.4475,17.89849],[81.44811,17.88974],[81.44463,17.88575],[81.43534,17.88082],[81.4126,17.89462],[81.40519,17.89619],[81.4002,17.89357],[81.39548,17.88321],[81.39427,17.86928],[81.40382,17.85301],[81.40326,17.84943],[81.39586,17.83734],[81.38907,17.82992],[81.38857,17.82315],[81.39181,17.81542],[81.39655,17.82023],[81.40165,17.82095],[81.41016,17.81859],[81.41397,17.81359],[81.4156,17.81342],[81.42582,17.82191],[81.43048,17.83006],[81.43412,17.83193],[81.43672,17.83162],[81.44088,17.82533],[81.44419,17.82497],[81.46011,17.82957],[81.46905,17.83622],[81.47426,17.83798],[81.47732,17.83588],[81.48018,17.83043],[81.48152,17.82358],[81.48535,17.82059],[81.48627,17.81434],[81.49005,17.81269],[81.49534,17.81255],[81.50478,17.81629],[81.51841,17.81626],[81.53018,17.82291],[81.53781,17.82159],[81.54684,17.82472],[81.56369,17.82571],[81.57039,17.83531],[81.57432,17.83717],[81.59419,17.83404],[81.60689,17.82583],[81.61723,17.8223],[81.62235,17.83345],[81.63015,17.83202],[81.64171,17.84132],[81.65202,17.8561],[81.65431,17.86908],[81.66219,17.8816],[81.66973,17.88655],[81.67452,17.88818],[81.6861,17.8853],[81.69475,17.89872],[81.69853,17.90135],[81.70123,17.89948],[81.70222,17.89627],[81.70113,17.88795],[81.70411,17.88271],[81.70436,17.87768],[81.70917,17.872],[81.72562,17.87886],[81.76467,17.90334],[81.76881,17.90688],[81.77138,17.91246],[81.77841,17.91284],[81.79013,17.92081],[81.79349,17.92548],[81.7947,17.93294],[81.79707,17.93728],[81.80989,17.95098],[81.81911,17.95169],[81.83099,17.95793],[81.84323,17.95696],[81.86649,17.96329],[81.88175,17.96883],[81.89337,17.97624],[81.90518,17.97732],[81.90903,17.98422],[81.91991,17.99121],[81.93657,17.99028],[81.94602,17.99575],[81.96297,17.99925],[81.96894,18.00598],[81.97606,18.01047],[81.98251,18.01813],[81.99127,18.01951],[81.99427,18.02731],[82.00177,18.03002],[82.00935,18.03007],[82.01166,18.03524],[82.00673,18.0451],[82.00623,18.05297],[82.00767,18.05669],[82.0062,18.05772],[82.00768,18.05669],[82.02028,18.0635],[82.02708,18.06403],[82.03232,18.06932],[82.03758,18.06698],[82.04044,18.05731],[82.05042,18.05814],[82.06156,18.05545],[82.06695,18.05739],[82.07082,18.06909],[82.07664,18.07522],[82.08709,18.06893],[82.09609,18.06743],[82.0964,18.0634],[82.10203,18.06024],[82.10787,18.06326],[82.11365,18.06123],[82.12063,18.06423],[82.12498,18.05967],[82.13349,18.05989],[82.13718,18.04394],[82.14483,18.04885],[82.14678,18.05231],[82.15084,18.04994],[82.15536,18.05374],[82.15084,18.04994],[82.15321,18.04787],[82.15827,18.05034],[82.16884,18.05195],[82.18432,18.02879],[82.17862,18.02039],[82.18354,18.0191],[82.1878,18.01473],[82.19737,18.01774],[82.20531,18.01837],[82.2046,18.01501],[82.2082,18.01044],[82.22225,18.00168],[82.23724,18.00255],[82.24405,17.99838],[82.24796,17.99778],[82.26277,17.99817],[82.26878,18.00094],[82.27338,18.02245],[82.26901,18.03402],[82.26161,18.04185],[82.26894,18.04519],[82.26961,18.05194],[82.27261,18.05722],[82.27698,18.0582],[82.28349,18.0645],[82.28787,18.0629],[82.29039,18.06706],[82.28309,18.07334],[82.29039,18.06706],[82.29138,18.06891],[82.29615,18.06705],[82.3007,18.06925],[82.3044,18.06812],[82.3038,18.06528],[82.30012,18.06321],[82.29865,18.05557],[82.30617,18.05571],[82.31033,18.05393],[82.30726,18.05005],[82.30818,18.04491],[82.31658,18.04744],[82.32036,18.04498],[82.32223,18.04862],[82.31897,18.05707],[82.32225,18.05991],[82.33002,18.05809],[82.33214,18.05511],[82.33199,18.05246],[82.33414,18.05133],[82.34388,18.05799],[82.34708,18.06995],[82.35178,18.07659],[82.34732,18.07998],[82.34958,18.08563],[82.347,18.09825],[82.3385,18.09911],[82.33579,18.10586],[82.33567,18.11375],[82.33377,18.11925],[82.33616,18.12415],[82.3342,18.12686],[82.34213,18.13724],[82.33868,18.14417],[82.3388,18.14692],[82.34018,18.15057],[82.34137,18.15011],[82.35493,18.14247],[82.35963,18.13629],[82.36325,18.13481],[82.36753,18.13716],[82.36875,18.14317],[82.37232,18.14816],[82.35912,18.1627],[82.35337,18.17169],[82.34617,18.17292],[82.33737,18.17218],[82.31545,18.18403],[82.31248,18.19135],[82.31354,18.19715],[82.31084,18.20409],[82.32489,18.21041],[82.32843,18.21608],[82.33706,18.2243],[82.33144,18.22513],[82.32441,18.23121],[82.32674,18.23638],[82.33653,18.24077],[82.33586,18.25],[82.33354,18.25107],[82.33336,18.25291],[82.33612,18.26117],[82.34005,18.26234],[82.34044,18.27223],[82.34467,18.28055],[82.35894,18.28146],[82.3659,18.27761],[82.3765,18.28068],[82.37831,18.28434],[82.38089,18.28544],[82.39234,18.29795],[82.39157,18.3098],[82.39506,18.31564],[82.39237,18.32648],[82.38466,18.32963],[82.37807,18.32706],[82.37509,18.32869],[82.36753,18.32371],[82.364,18.31846],[82.35791,18.31615],[82.3522,18.31735],[82.34948,18.31637],[82.33993,18.32296],[82.33318,18.33896],[82.33748,18.3281],[82.3405,18.32821],[82.34409,18.33079],[82.34694,18.32883],[82.36311,18.34422],[82.36449,18.35277],[82.36818,18.35386],[82.36988,18.35851],[82.37547,18.35913],[82.38442,18.36578],[82.38552,18.37714],[82.38402,18.3845],[82.38607,18.38627],[82.38148,18.38964],[82.37942,18.40417],[82.37522,18.40634],[82.37093,18.41425],[82.36421,18.42154],[82.37574,18.43003],[82.382,18.43258],[82.38555,18.44083],[82.37999,18.43737],[82.38554,18.44083],[82.38768,18.44596],[82.39603,18.44917],[82.3968,18.45421],[82.40352,18.46422],[82.43044,18.4855],[82.41258,18.48785],[82.40243,18.49177],[82.38494,18.50255],[82.38937,18.51062],[82.38488,18.51291],[82.38311,18.52242],[82.38869,18.52934],[82.39259,18.52933],[82.39784,18.5246],[82.403,18.52609],[82.40164,18.52777],[82.40178,18.54091],[82.40605,18.54507],[82.40871,18.55304],[82.41468,18.56296],[82.40685,18.56657],[82.3979,18.57402],[82.39695,18.57769],[82.38622,18.5835],[82.38509,18.59137],[82.4026,18.59768],[82.40856,18.60215],[82.40518,18.60442],[82.40564,18.60613],[82.40187,18.60778],[82.39932,18.61157],[82.40011,18.61439],[82.39599,18.6199],[82.397,18.62154],[82.39359,18.62241],[82.39168,18.6258],[82.39023,18.62574],[82.38961,18.6236],[82.3861,18.62333],[82.3838,18.61757],[82.37493,18.61646],[82.37242,18.61867],[82.37122,18.6238],[82.3638,18.6236],[82.35772,18.61686],[82.34897,18.61294],[82.34237,18.60641],[82.32932,18.59849],[82.32811,18.59168],[82.31899,18.58384],[82.31266,18.57559],[82.30358,18.57802],[82.29133,18.57861],[82.28836,18.58],[82.28903,18.58444],[82.2856,18.58499],[82.28285,18.59024],[82.28056,18.59135],[82.27382,18.58881],[82.26823,18.59155],[82.26679,18.58953],[82.26561,18.59035],[82.26232,18.59352],[82.26398,18.59621],[82.2571,18.59954],[82.2568,18.60436],[82.25383,18.60383],[82.25228,18.6137],[82.24826,18.61495],[82.24382,18.61209],[82.24067,18.61836],[82.2387,18.61867],[82.24073,18.62167],[82.23746,18.62412],[82.2337,18.62359],[82.23254,18.62802],[82.22911,18.63222],[82.23499,18.64311],[82.22944,18.64543],[82.23115,18.65095],[82.23,18.65812],[82.22822,18.66221],[82.22353,18.66504],[82.2224,18.67171],[82.21556,18.66673],[82.21226,18.66767],[82.20841,18.6601],[82.1982,18.65351],[82.19631,18.65403],[82.19587,18.65596],[82.18781,18.65065],[82.18462,18.64142],[82.18198,18.63864],[82.17578,18.63748],[82.17112,18.63856],[82.16903,18.64257],[82.16436,18.6458],[82.16299,18.66104],[82.16038,18.6694],[82.1569,18.67219],[82.15418,18.66772],[82.148,18.66776],[82.14593,18.66506],[82.14194,18.67269],[82.13739,18.67367],[82.13094,18.67889],[82.13406,18.6829],[82.14002,18.68411],[82.14043,18.68871],[82.14355,18.69393],[82.14055,18.70577],[82.13251,18.70767],[82.13319,18.71433],[82.13005,18.72167],[82.12303,18.72511],[82.11524,18.72647],[82.11476,18.72797],[82.11036,18.72618],[82.10807,18.72942],[82.10241,18.73105]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"365","area_level":"District","area_name":"Mayurbhanj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.06549,22.55498],[86.05131,22.56248],[86.04544,22.56751],[86.03217,22.55503],[86.02403,22.54462],[86.03384,22.53449],[86.02867,22.52642],[86.02653,22.52402],[86.02091,22.52732],[86.00409,22.51776],[86.00103,22.51458],[85.99349,22.51438],[85.98961,22.51669],[85.98851,22.51534],[85.98514,22.51548],[85.98179,22.51092],[85.98001,22.51136],[85.97815,22.50842],[85.9734,22.50586],[85.97353,22.49962],[85.97096,22.49739],[85.97233,22.49169],[85.96839,22.48629],[85.96274,22.48512],[85.96218,22.47132],[85.95729,22.46622],[85.95728,22.46389],[85.96035,22.46139],[85.96788,22.46119],[85.96564,22.45115],[85.97288,22.44717],[85.98461,22.43545],[86.00275,22.42637],[86.01069,22.43019],[86.01524,22.4284],[86.01925,22.40743],[86.01833,22.40247],[86.02034,22.40079],[86.02087,22.39724],[86.02437,22.39622],[86.02269,22.39354],[86.02395,22.39267],[86.02346,22.38982],[86.0272,22.38621],[86.0252,22.38322],[86.02713,22.38056],[86.02478,22.37901],[86.02466,22.37527],[86.02106,22.37618],[86.02013,22.37177],[86.02188,22.36529],[86.01919,22.3609],[86.01467,22.35965],[86.0108,22.35229],[86.00753,22.35151],[86.00414,22.34706],[85.99821,22.34515],[85.99802,22.3416],[86.00338,22.33568],[86.00783,22.33776],[86.00949,22.33957],[86.00829,22.34095],[86.01075,22.34123],[86.01956,22.33903],[86.02671,22.33486],[86.01193,22.32232],[86.01049,22.31787],[86.01306,22.31789],[86.0137,22.31307],[86.01605,22.31437],[86.02257,22.309],[86.02735,22.3093],[86.02891,22.30769],[86.03236,22.31122],[86.03815,22.31036],[86.04067,22.31246],[86.04716,22.31145],[86.04734,22.3094],[86.04058,22.30632],[86.0341,22.30619],[86.03289,22.30329],[86.02942,22.303],[86.02882,22.3007],[86.02496,22.3026],[86.02218,22.30003],[86.01898,22.30038],[86.01425,22.29729],[86.00611,22.28739],[86.00704,22.28461],[86.0041,22.28018],[85.99871,22.27724],[85.98832,22.26697],[85.98771,22.26315],[85.99064,22.25694],[85.9897,22.25441],[85.97388,22.24708],[85.98092,22.23891],[85.98567,22.23714],[85.99131,22.22676],[86.00286,22.21383],[86.01837,22.20533],[86.03108,22.19307],[86.03143,22.19085],[86.01723,22.17162],[86.01526,22.16166],[86.00551,22.15086],[86.00351,22.13957],[85.99947,22.13569],[85.99877,22.13302],[85.99676,22.13245],[85.99717,22.12802],[86.00738,22.11709],[86.00381,22.11386],[85.99251,22.09468],[85.98642,22.08897],[85.98044,22.07521],[85.96877,22.0608],[85.96504,22.05237],[85.94359,22.02036],[85.93088,22.02334],[85.92295,22.01124],[85.91615,22.00878],[85.91616,22.00269],[85.91221,21.99719],[85.90952,21.98782],[85.91166,21.98488],[85.9102,21.98117],[85.91189,21.98017],[85.90656,21.97695],[85.91108,21.97312],[85.90587,21.97039],[85.90218,21.97552],[85.9023,21.97833],[85.90009,21.97958],[85.89871,21.98316],[85.89571,21.98324],[85.89577,21.98441],[85.89385,21.98439],[85.8937,21.98229],[85.89159,21.98122],[85.88208,21.98014],[85.85321,21.98376],[85.83614,21.98085],[85.83258,21.97728],[85.82437,21.97545],[85.8209,21.97746],[85.81699,21.98577],[85.81046,21.98631],[85.80537,21.98942],[85.79041,21.98582],[85.78584,21.98704],[85.78275,21.98495],[85.76299,21.99614],[85.76251,22.00125],[85.75857,22.00949],[85.7608,22.01454],[85.76716,22.02349],[85.77496,22.02872],[85.77959,22.02967],[85.78376,22.04018],[85.77873,22.04556],[85.77494,22.05629],[85.79344,22.08181],[85.81611,22.07357],[85.82266,22.07443],[85.83586,22.08016],[85.83268,22.09304],[85.82177,22.09466],[85.81976,22.09643],[85.81332,22.09429],[85.81305,22.09649],[85.82104,22.1065],[85.80743,22.11611],[85.80117,22.10986],[85.79755,22.1084],[85.79732,22.10475],[85.79017,22.10484],[85.78099,22.0965],[85.7673,22.09278],[85.7574,22.08458],[85.75705,22.07831],[85.74939,22.07357],[85.74015,22.07098],[85.7302,22.06528],[85.72054,22.06389],[85.718,22.06174],[85.71337,22.06248],[85.70917,22.05823],[85.70094,22.06173],[85.69308,22.06253],[85.69058,22.06159],[85.68938,22.05605],[85.68629,22.05413],[85.67732,22.05696],[85.6732,22.05178],[85.67368,22.04236],[85.6665,22.03879],[85.66215,22.03396],[85.66912,22.01495],[85.67494,22.01466],[85.68506,22.00803],[85.69427,22.01005],[85.70211,22.00518],[85.70246,22.00074],[85.69707,21.99262],[85.70543,21.9851],[85.71525,21.9882],[85.72678,21.98898],[85.73152,21.99318],[85.73719,21.99303],[85.74619,21.98706],[85.74507,21.98067],[85.74674,21.97722],[85.753,21.97734],[85.75863,21.97342],[85.76483,21.974],[85.76641,21.97204],[85.76628,21.96875],[85.77241,21.96447],[85.77561,21.95929],[85.78469,21.9612],[85.79377,21.9513],[85.79236,21.94696],[85.79438,21.93255],[85.79257,21.92085],[85.7883,21.91042],[85.78783,21.90375],[85.80485,21.88829],[85.8044,21.88435],[85.80021,21.87665],[85.80285,21.87119],[85.80333,21.86261],[85.80913,21.85212],[85.80936,21.83917],[85.80553,21.831],[85.80934,21.81971],[85.80943,21.81154],[85.81485,21.81049],[85.81779,21.80782],[85.82388,21.80726],[85.82535,21.80333],[85.83098,21.80926],[85.83835,21.81082],[85.84528,21.80554],[85.84579,21.80359],[85.85539,21.80229],[85.86011,21.80033],[85.8602,21.79832],[85.86375,21.79613],[85.86869,21.79719],[85.87323,21.79587],[85.8827,21.79055],[85.88512,21.78295],[85.89094,21.78344],[85.89323,21.78168],[85.89452,21.77809],[85.90176,21.77124],[85.90025,21.76732],[85.90491,21.76693],[85.90945,21.77064],[85.91169,21.76531],[85.91658,21.76295],[85.91747,21.7603],[85.9201,21.76364],[85.93255,21.76223],[85.93625,21.76359],[85.94095,21.75674],[85.94736,21.75368],[85.94818,21.75088],[85.95206,21.75203],[85.95161,21.74768],[85.95676,21.7484],[85.95912,21.74436],[85.96157,21.74462],[85.96588,21.73967],[85.96847,21.74246],[85.97023,21.74149],[85.97047,21.73886],[85.97527,21.74368],[85.97495,21.74075],[85.97677,21.73935],[85.98379,21.74591],[85.98821,21.74699],[85.99006,21.74602],[85.99289,21.7484],[85.99561,21.74274],[86.00195,21.74964],[86.00538,21.74526],[86.00573,21.74694],[86.00929,21.74727],[86.00983,21.75165],[86.01287,21.75159],[86.01515,21.74851],[86.01448,21.7458],[86.01665,21.74607],[86.01479,21.74528],[86.01619,21.74181],[86.01909,21.73986],[86.01874,21.7316],[86.02243,21.72667],[86.02757,21.72479],[86.02348,21.70753],[86.02484,21.70202],[86.02412,21.69595],[86.03218,21.69056],[86.03372,21.69179],[86.03616,21.69399],[86.039,21.7047],[86.04995,21.71794],[86.05109,21.71072],[86.05609,21.70579],[86.05505,21.69959],[86.05677,21.69429],[86.06498,21.68821],[86.07088,21.68971],[86.07124,21.69464],[86.07297,21.69543],[86.07559,21.69562],[86.07564,21.69418],[86.07834,21.69544],[86.08208,21.69193],[86.08159,21.68788],[86.07607,21.67917],[86.07623,21.67468],[86.07346,21.67133],[86.07215,21.66418],[86.07218,21.66175],[86.07395,21.66036],[86.07263,21.64515],[86.07457,21.64168],[86.08104,21.63699],[86.07841,21.6331],[86.07913,21.63048],[86.075,21.62539],[86.07151,21.62385],[86.07067,21.61744],[86.06567,21.61372],[86.06838,21.60856],[86.05873,21.60287],[86.05665,21.59793],[86.0503,21.59476],[86.04887,21.59069],[86.05085,21.59014],[86.05117,21.5879],[86.05023,21.58578],[86.04777,21.58601],[86.04885,21.58282],[86.04595,21.57729],[86.04103,21.57661],[86.03447,21.5723],[86.02704,21.57227],[86.02618,21.56957],[86.01575,21.56135],[86.01871,21.55164],[86.01061,21.54285],[86.00629,21.53389],[86.03421,21.52223],[86.06757,21.50415],[86.07651,21.50144],[86.0783,21.49954],[86.09112,21.49669],[86.12637,21.47359],[86.13483,21.46269],[86.13487,21.45536],[86.15096,21.44042],[86.15584,21.43237],[86.15763,21.42619],[86.16126,21.42342],[86.15346,21.41219],[86.14125,21.40562],[86.13504,21.39954],[86.11978,21.37133],[86.12214,21.36891],[86.12128,21.36566],[86.12335,21.36534],[86.12473,21.36056],[86.10443,21.35094],[86.10801,21.34579],[86.10856,21.3418],[86.10786,21.33668],[86.10374,21.3288],[86.10463,21.32648],[86.10358,21.325],[86.10215,21.32569],[86.10124,21.32278],[86.09612,21.32333],[86.09633,21.31891],[86.08902,21.31263],[86.09172,21.31333],[86.09249,21.30808],[86.09647,21.30585],[86.10595,21.30452],[86.10514,21.29877],[86.10648,21.29614],[86.10907,21.29589],[86.10843,21.29275],[86.11403,21.2834],[86.11246,21.27662],[86.114,21.27373],[86.12326,21.27104],[86.12455,21.26785],[86.12707,21.26803],[86.13072,21.26488],[86.13227,21.26674],[86.13518,21.2658],[86.13522,21.2818],[86.13978,21.27809],[86.14288,21.27898],[86.14983,21.28823],[86.15592,21.29214],[86.15924,21.29208],[86.1586,21.28469],[86.17326,21.27688],[86.1829,21.27463],[86.18485,21.27249],[86.18908,21.2723],[86.19424,21.27477],[86.19891,21.28032],[86.20638,21.28132],[86.20579,21.28619],[86.21053,21.28975],[86.21228,21.2951],[86.21636,21.29747],[86.21601,21.30251],[86.21812,21.3101],[86.22364,21.31791],[86.22431,21.32402],[86.23694,21.33085],[86.24921,21.34676],[86.25045,21.35066],[86.26509,21.36257],[86.26774,21.36882],[86.2639,21.37968],[86.26579,21.3802],[86.27605,21.37968],[86.28262,21.37695],[86.29529,21.35671],[86.32757,21.34166],[86.34272,21.32873],[86.35431,21.32141],[86.35987,21.31185],[86.35796,21.29934],[86.36242,21.3022],[86.36573,21.30216],[86.37033,21.30715],[86.3757,21.30684],[86.38269,21.30994],[86.38978,21.31781],[86.39363,21.31994],[86.40461,21.3202],[86.41367,21.32831],[86.42049,21.33086],[86.4264,21.33687],[86.42989,21.33743],[86.43412,21.34119],[86.43565,21.35301],[86.45628,21.36402],[86.45582,21.36534],[86.46332,21.36699],[86.4708,21.37284],[86.48066,21.37717],[86.48888,21.38394],[86.50204,21.39879],[86.508,21.40239],[86.52182,21.4183],[86.53195,21.42599],[86.54217,21.44262],[86.54958,21.45887],[86.55971,21.47314],[86.56089,21.48043],[86.56756,21.49582],[86.58247,21.52271],[86.59987,21.5187],[86.60441,21.52104],[86.60817,21.51844],[86.61136,21.51843],[86.61619,21.52335],[86.61909,21.52273],[86.62013,21.52621],[86.6237,21.52437],[86.6233,21.52862],[86.62699,21.52838],[86.62514,21.53208],[86.62591,21.53385],[86.62852,21.53238],[86.63067,21.53434],[86.63381,21.53238],[86.63783,21.5337],[86.63995,21.54978],[86.64296,21.55643],[86.64862,21.55893],[86.64623,21.56288],[86.65002,21.57037],[86.64784,21.57546],[86.64934,21.57958],[86.66411,21.57767],[86.66628,21.58063],[86.66984,21.58109],[86.67589,21.58645],[86.68295,21.59671],[86.68724,21.59378],[86.68867,21.58736],[86.69353,21.58457],[86.69542,21.58788],[86.69887,21.58657],[86.7073,21.58687],[86.71032,21.58875],[86.71311,21.59543],[86.71864,21.59757],[86.71994,21.59624],[86.72237,21.59914],[86.73458,21.59906],[86.73525,21.60433],[86.74012,21.60561],[86.74503,21.60452],[86.74611,21.60595],[86.75342,21.60719],[86.76541,21.60127],[86.76798,21.60264],[86.7722,21.60213],[86.77415,21.60441],[86.77633,21.60142],[86.78142,21.60225],[86.79477,21.59722],[86.79599,21.60103],[86.79287,21.6012],[86.79259,21.603],[86.79379,21.60307],[86.79389,21.60546],[86.79874,21.60593],[86.79909,21.60758],[86.80736,21.60913],[86.8206,21.60494],[86.82324,21.60658],[86.82966,21.60581],[86.83011,21.60892],[86.83202,21.6078],[86.83053,21.60709],[86.83149,21.60402],[86.83274,21.6041],[86.83287,21.60715],[86.83435,21.60527],[86.8359,21.60629],[86.83638,21.6029],[86.83762,21.60409],[86.83797,21.60188],[86.84456,21.59924],[86.84718,21.60479],[86.8507,21.60128],[86.85453,21.60361],[86.85727,21.59893],[86.86286,21.59693],[86.86234,21.59376],[86.86371,21.59323],[86.86404,21.59023],[86.86471,21.5922],[86.86639,21.59133],[86.87162,21.60517],[86.87557,21.60329],[86.87909,21.61306],[86.88598,21.6125],[86.88314,21.61715],[86.87332,21.62243],[86.87272,21.6357],[86.87494,21.63842],[86.87888,21.63604],[86.87685,21.63151],[86.88133,21.6283],[86.88336,21.62391],[86.88438,21.6259],[86.8886,21.62389],[86.88751,21.61787],[86.8888,21.61384],[86.89209,21.61216],[86.89971,21.61248],[86.89943,21.60829],[86.90274,21.60564],[86.90199,21.60389],[86.90418,21.60256],[86.90455,21.6002],[86.90674,21.5996],[86.90599,21.59803],[86.90197,21.59867],[86.90104,21.59491],[86.90216,21.59301],[86.90431,21.59357],[86.90433,21.59751],[86.91209,21.59226],[86.90898,21.58704],[86.91013,21.58094],[86.91705,21.58234],[86.91704,21.58573],[86.92032,21.59145],[86.92437,21.59058],[86.92522,21.58779],[86.92834,21.58682],[86.92892,21.58356],[86.94139,21.57868],[86.94218,21.57688],[86.94708,21.5773],[86.94789,21.57581],[86.95733,21.57338],[86.95617,21.57858],[86.95299,21.5794],[86.95237,21.58227],[86.95229,21.58386],[86.95556,21.58387],[86.95625,21.58531],[86.95299,21.59066],[86.95537,21.59621],[86.95804,21.595],[86.95839,21.59735],[86.95933,21.59404],[86.96274,21.59349],[86.95825,21.58437],[86.95791,21.58102],[86.96032,21.58072],[86.96388,21.58554],[86.96329,21.58822],[86.96936,21.5888],[86.97,21.58558],[86.97444,21.58491],[86.98496,21.59218],[86.98851,21.59303],[86.99184,21.59742],[86.98968,21.59327],[86.99136,21.59298],[86.99518,21.5956],[87.00119,21.59642],[87.00328,21.59932],[87.0069,21.59934],[87.00703,21.60146],[87.00189,21.60501],[86.999,21.61103],[86.9968,21.61067],[87.00103,21.61486],[86.99887,21.61754],[86.99493,21.62019],[86.98796,21.61894],[86.99344,21.62241],[86.9932,21.62688],[86.98903,21.62924],[86.98694,21.62881],[86.98886,21.63344],[86.99282,21.63609],[86.99758,21.63455],[86.99512,21.62623],[86.99764,21.62269],[86.99914,21.62725],[87.0027,21.62584],[87.00502,21.62733],[87.00546,21.63218],[87.00983,21.6332],[87.01251,21.63791],[87.01183,21.64881],[87.01054,21.64972],[87.00785,21.64834],[87.00763,21.65115],[87.00452,21.65236],[86.99386,21.65166],[86.98878,21.65344],[86.99129,21.66057],[86.98888,21.67166],[86.99131,21.67191],[86.99081,21.67325],[86.99218,21.67384],[86.99765,21.67339],[87.00073,21.67592],[87.00206,21.67498],[87.00227,21.67666],[87.00704,21.67567],[87.00738,21.67339],[87.00888,21.6744],[87.0083,21.67657],[87.01035,21.67596],[87.01106,21.6775],[87.01838,21.6742],[87.01788,21.67009],[87.02184,21.67393],[87.02525,21.67272],[87.02583,21.6685],[87.02366,21.66296],[87.03055,21.66102],[87.03185,21.67312],[87.03834,21.67249],[87.04153,21.67596],[87.04096,21.67853],[87.04886,21.6772],[87.05185,21.68223],[87.05261,21.68465],[87.05084,21.688],[87.04642,21.68826],[87.04634,21.69011],[87.04809,21.69087],[87.04657,21.69224],[87.04282,21.69097],[87.04283,21.69443],[87.0365,21.69735],[87.03686,21.70289],[87.03515,21.70815],[87.03932,21.71092],[87.03614,21.71486],[87.03806,21.71863],[87.03742,21.7221],[87.03385,21.72054],[87.03109,21.72156],[87.02826,21.72752],[87.03043,21.72908],[87.03067,21.73297],[87.02848,21.73425],[87.02842,21.73632],[87.02355,21.7386],[87.02581,21.74302],[87.0337,21.7412],[87.04207,21.7414],[87.04385,21.73984],[87.0461,21.74072],[87.04237,21.73681],[87.04437,21.73202],[87.04291,21.72912],[87.04474,21.71613],[87.05966,21.70733],[87.06686,21.70855],[87.06898,21.70703],[87.07263,21.71045],[87.07147,21.71269],[87.07375,21.71081],[87.07855,21.71183],[87.07619,21.71517],[87.0813,21.72104],[87.08758,21.71568],[87.08862,21.72203],[87.08993,21.72262],[87.08647,21.72578],[87.08821,21.7269],[87.08789,21.72987],[87.0928,21.72721],[87.09366,21.73207],[87.0911,21.73211],[87.08988,21.73428],[87.0891,21.73214],[87.0863,21.73253],[87.08342,21.73841],[87.08621,21.73887],[87.096,21.73303],[87.09626,21.73699],[87.09429,21.73875],[87.09367,21.74239],[87.09497,21.74748],[87.0974,21.7469],[87.10433,21.75454],[87.10718,21.75528],[87.11141,21.75303],[87.11451,21.75468],[87.12207,21.75371],[87.12249,21.75536],[87.1201,21.75854],[87.11259,21.76555],[87.1022,21.77169],[87.10322,21.77692],[87.10158,21.77799],[87.10571,21.78172],[87.10384,21.78403],[87.10863,21.78281],[87.11121,21.78897],[87.11699,21.78926],[87.11832,21.78502],[87.11412,21.78783],[87.11241,21.78565],[87.12165,21.78317],[87.12193,21.77199],[87.12644,21.77202],[87.12538,21.777],[87.12995,21.7789],[87.13922,21.77505],[87.1587,21.77124],[87.16134,21.77385],[87.16442,21.78497],[87.16181,21.789],[87.16632,21.78605],[87.17107,21.789],[87.1709,21.79471],[87.1721,21.79522],[87.17009,21.79598],[87.16928,21.79873],[87.17092,21.80595],[87.16872,21.80725],[87.16855,21.80919],[87.17283,21.81255],[87.17575,21.80878],[87.1801,21.79286],[87.18351,21.79266],[87.183,21.79944],[87.18168,21.80277],[87.17908,21.80419],[87.17643,21.81351],[87.12201,21.8422],[87.12135,21.84875],[87.11832,21.855],[87.10569,21.85753],[87.10267,21.85949],[87.09785,21.86694],[87.08426,21.86812],[87.07929,21.86595],[87.07396,21.86724],[87.06131,21.86587],[87.04951,21.86817],[87.04613,21.8675],[87.04327,21.86927],[87.0356,21.86917],[87.03011,21.87448],[87.02608,21.87568],[87.02748,21.87974],[87.0251,21.88109],[87.02557,21.88689],[87.02293,21.89231],[87.00938,21.89978],[87.00468,21.91013],[86.99972,21.91325],[87.00356,21.92049],[87.00145,21.92456],[87.00463,21.92572],[87.00583,21.93753],[87.00943,21.94789],[87.01284,21.9496],[87.02123,21.97267],[87.03035,21.98534],[87.031,21.99705],[87.0274,22.00266],[87.02234,22.01949],[87.0267,22.03709],[87.01906,22.04178],[87.0144,22.04768],[87.00588,22.04872],[86.99776,22.05403],[86.99314,22.05525],[86.97175,22.07239],[86.97103,22.07834],[86.96782,22.08013],[86.96471,22.08574],[86.95796,22.08855],[86.94732,22.0858],[86.93429,22.09048],[86.90585,22.09193],[86.87114,22.09964],[86.86413,22.09935],[86.86022,22.10233],[86.85015,22.10378],[86.84917,22.1],[86.84662,22.10046],[86.84363,22.09631],[86.83374,22.0987],[86.83465,22.10426],[86.82462,22.11892],[86.81892,22.11664],[86.80641,22.11971],[86.80997,22.12741],[86.80479,22.13033],[86.80142,22.12924],[86.79941,22.13037],[86.80229,22.13282],[86.80374,22.13871],[86.80201,22.15071],[86.79385,22.15748],[86.78841,22.15777],[86.78664,22.1538],[86.77964,22.15365],[86.76499,22.14951],[86.73588,22.14943],[86.7277,22.14718],[86.71971,22.14728],[86.71789,22.1658],[86.71921,22.16704],[86.7193,22.17304],[86.71605,22.18172],[86.71637,22.18632],[86.72122,22.18939],[86.71889,22.19905],[86.72496,22.21802],[86.72086,22.22041],[86.71385,22.22005],[86.70794,22.2233],[86.70346,22.22118],[86.68434,22.22241],[86.67531,22.22925],[86.67239,22.24022],[86.66959,22.24254],[86.66624,22.24162],[86.66082,22.23672],[86.65425,22.23627],[86.6513,22.24438],[86.65466,22.25073],[86.64951,22.26353],[86.64673,22.26536],[86.64351,22.26466],[86.64413,22.26867],[86.63971,22.26551],[86.638,22.2711],[86.63218,22.27323],[86.62731,22.26951],[86.62579,22.27353],[86.62177,22.27704],[86.61048,22.28335],[86.60352,22.28207],[86.59976,22.27887],[86.59308,22.27856],[86.59392,22.28204],[86.59272,22.28544],[86.58793,22.28999],[86.58739,22.29441],[86.58506,22.29536],[86.58225,22.30165],[86.57681,22.30112],[86.57686,22.29556],[86.57198,22.29618],[86.57088,22.30019],[86.56887,22.30144],[86.56169,22.30172],[86.5574,22.29832],[86.55407,22.29847],[86.54849,22.30136],[86.54386,22.30721],[86.54074,22.30824],[86.53935,22.30476],[86.53276,22.30096],[86.52545,22.30761],[86.52577,22.31103],[86.52319,22.31473],[86.52783,22.31549],[86.52709,22.3235],[86.52169,22.32342],[86.50818,22.32786],[86.50748,22.33465],[86.50357,22.33676],[86.50212,22.34359],[86.49678,22.34723],[86.49414,22.34566],[86.49289,22.34708],[86.48726,22.34768],[86.48346,22.33813],[86.47147,22.33578],[86.46819,22.3304],[86.46228,22.32982],[86.46362,22.32875],[86.46195,22.32611],[86.45292,22.32532],[86.44527,22.32892],[86.44307,22.32626],[86.44296,22.31767],[86.44461,22.3125],[86.44229,22.30681],[86.43939,22.30358],[86.43093,22.30717],[86.42828,22.31096],[86.42681,22.31758],[86.40828,22.32097],[86.37708,22.34163],[86.36642,22.34429],[86.35755,22.34977],[86.35761,22.35423],[86.35016,22.36429],[86.34028,22.37292],[86.32852,22.3778],[86.32116,22.38542],[86.32063,22.38902],[86.32271,22.39264],[86.32082,22.39741],[86.30644,22.40961],[86.30745,22.41531],[86.30264,22.4222],[86.29633,22.42403],[86.29303,22.42668],[86.2813,22.44866],[86.26846,22.44217],[86.26394,22.44534],[86.2566,22.44541],[86.23725,22.45259],[86.22467,22.45252],[86.2174,22.46261],[86.22258,22.46725],[86.21388,22.46644],[86.20793,22.47349],[86.20029,22.4718],[86.17056,22.48138],[86.16047,22.48255],[86.15632,22.48036],[86.15028,22.48021],[86.15033,22.48335],[86.13373,22.48713],[86.12375,22.48861],[86.11663,22.487],[86.10275,22.50024],[86.10024,22.50813],[86.09715,22.51033],[86.09487,22.5195],[86.07925,22.53755],[86.07546,22.54411],[86.06735,22.55104],[86.06549,22.55498]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"366","area_level":"District","area_name":"Nabarangpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.95305,20.10154],[81.94638,20.10513],[81.93852,20.10156],[81.93713,20.10235],[81.93384,20.09821],[81.93387,20.09604],[81.92588,20.09158],[81.92276,20.08716],[81.92138,20.07997],[81.91606,20.07198],[81.90144,20.05791],[81.89528,20.04824],[81.8873,20.04402],[81.88191,20.04434],[81.87598,20.05206],[81.86943,20.04126],[81.86882,20.03191],[81.86503,20.0267],[81.86654,20.01105],[81.86057,20.00351],[81.85536,19.97228],[81.84528,19.95953],[81.84502,19.95184],[81.8568,19.94754],[81.85224,19.92161],[81.85316,19.91848],[81.86965,19.90254],[81.90172,19.88622],[81.94106,19.87288],[81.96813,19.85989],[81.96537,19.8369],[81.98656,19.80428],[81.98595,19.80109],[81.99191,19.79959],[81.99537,19.79682],[82.00368,19.80257],[82.00989,19.80422],[82.03105,19.79781],[82.04868,19.79696],[82.05298,19.79229],[82.0564,19.79302],[82.05636,19.79485],[82.06022,19.79637],[82.06239,19.79254],[82.06555,19.79066],[82.06623,19.78315],[82.06047,19.76663],[82.06361,19.75902],[82.05598,19.75297],[82.05564,19.74998],[82.0504,19.74581],[82.05094,19.73642],[82.04924,19.72872],[82.05102,19.71909],[82.04475,19.70888],[82.04459,19.70053],[82.0491,19.68493],[82.05187,19.68047],[82.05532,19.66566],[82.05362,19.66539],[82.05194,19.66095],[82.05551,19.65446],[82.05351,19.6528],[82.05192,19.64657],[82.05473,19.6405],[82.05701,19.63951],[82.05646,19.63312],[82.05902,19.62818],[82.0561,19.62596],[82.05571,19.6231],[82.05061,19.61677],[82.05066,19.60808],[82.04627,19.60728],[82.03988,19.59764],[82.04048,19.59164],[82.04337,19.589],[82.04465,19.58178],[82.04875,19.57827],[82.04985,19.57403],[82.04811,19.56913],[82.04949,19.56841],[82.04551,19.56053],[82.05071,19.54882],[82.04749,19.53965],[82.04761,19.53323],[82.04662,19.53408],[82.04326,19.52986],[82.03988,19.53018],[82.03729,19.52825],[82.03643,19.51978],[82.03406,19.51453],[82.03185,19.51453],[82.03156,19.51104],[82.02903,19.50799],[82.03851,19.50913],[82.05134,19.50816],[82.06542,19.51057],[82.07603,19.52363],[82.10025,19.51659],[82.09797,19.49893],[82.10796,19.49428],[82.10734,19.47504],[82.10282,19.46611],[82.11342,19.46036],[82.11353,19.44826],[82.12614,19.42909],[82.1273,19.43051],[82.13525,19.43038],[82.13524,19.43178],[82.17149,19.43719],[82.17819,19.43661],[82.18619,19.42665],[82.18944,19.42753],[82.18927,19.41536],[82.1852,19.41369],[82.18244,19.40943],[82.18208,19.40293],[82.18431,19.40049],[82.18074,19.39241],[82.18225,19.38874],[82.18099,19.38618],[82.18183,19.3842],[82.178,19.3825],[82.17883,19.37905],[82.17553,19.37664],[82.17353,19.37717],[82.17192,19.37262],[82.16421,19.37353],[82.16004,19.37707],[82.15327,19.37702],[82.15135,19.37331],[82.14774,19.37182],[82.14896,19.36953],[82.14725,19.36549],[82.14839,19.36491],[82.14878,19.35298],[82.15244,19.35274],[82.15413,19.3498],[82.165,19.34899],[82.16904,19.34598],[82.17866,19.34337],[82.17789,19.34005],[82.18604,19.33741],[82.18789,19.33476],[82.18801,19.32892],[82.19013,19.32676],[82.19412,19.32594],[82.18122,19.32339],[82.17917,19.31897],[82.17668,19.29948],[82.17441,19.29453],[82.16594,19.28769],[82.15843,19.26517],[82.15784,19.2275],[82.15942,19.22296],[82.16877,19.21294],[82.16582,19.21145],[82.16171,19.20225],[82.16758,19.19526],[82.18046,19.19168],[82.17514,19.18182],[82.18106,19.17858],[82.18205,19.17416],[82.17671,19.17347],[82.17604,19.17208],[82.17811,19.16937],[82.18395,19.16849],[82.18614,19.16635],[82.1822,19.15929],[82.17753,19.15567],[82.17874,19.15964],[82.17492,19.16288],[82.16993,19.16056],[82.1713,19.15653],[82.17721,19.15561],[82.17768,19.15251],[82.18093,19.15082],[82.17656,19.14921],[82.17154,19.15021],[82.16983,19.14525],[82.17574,19.13866],[82.16621,19.13515],[82.17089,19.11979],[82.17686,19.11857],[82.18247,19.13169],[82.19058,19.1289],[82.19631,19.12213],[82.20025,19.12186],[82.2052,19.1244],[82.21577,19.11502],[82.22001,19.11443],[82.22697,19.12098],[82.23547,19.12197],[82.22568,19.13574],[82.22759,19.14184],[82.22981,19.14396],[82.24518,19.14535],[82.25849,19.14204],[82.26452,19.15154],[82.27539,19.15645],[82.27811,19.15527],[82.28288,19.14778],[82.28584,19.14806],[82.29192,19.15277],[82.29564,19.1636],[82.31133,19.17703],[82.32359,19.17685],[82.33097,19.16902],[82.34023,19.1678],[82.34894,19.17273],[82.3511,19.18293],[82.35275,19.18434],[82.36008,19.17883],[82.36677,19.178],[82.372,19.17011],[82.37828,19.17676],[82.38315,19.17778],[82.39319,19.16707],[82.40204,19.16521],[82.41045,19.16876],[82.4117,19.18554],[82.43349,19.17094],[82.44034,19.17107],[82.44602,19.17738],[82.45338,19.17585],[82.4559,19.18161],[82.46026,19.18455],[82.46411,19.18398],[82.46826,19.17885],[82.47281,19.17698],[82.4779,19.18042],[82.48891,19.18048],[82.51809,19.20262],[82.52547,19.19735],[82.52856,19.20277],[82.53057,19.20363],[82.53913,19.19728],[82.54968,19.19468],[82.55114,19.19684],[82.54612,19.20304],[82.54882,19.20606],[82.56466,19.19815],[82.56884,19.19828],[82.57115,19.2009],[82.5714,19.20983],[82.57274,19.2113],[82.57596,19.21002],[82.57715,19.19883],[82.57972,19.19492],[82.58319,19.19517],[82.58806,19.20252],[82.58973,19.2011],[82.59046,19.19259],[82.59796,19.19156],[82.6053,19.18136],[82.6074,19.18078],[82.61314,19.18316],[82.61586,19.18171],[82.61521,19.15927],[82.62534,19.15115],[82.62996,19.15375],[82.62746,19.15381],[82.62752,19.1577],[82.62375,19.15942],[82.62622,19.16228],[82.63414,19.16161],[82.63846,19.15464],[82.63738,19.14942],[82.64001,19.14941],[82.64199,19.15323],[82.64046,19.17038],[82.63693,19.17554],[82.64304,19.17714],[82.65379,19.18866],[82.66856,19.18409],[82.67952,19.19729],[82.68145,19.19546],[82.68175,19.18971],[82.68569,19.186],[82.6933,19.19064],[82.69631,19.1895],[82.70165,19.19094],[82.70732,19.18703],[82.70662,19.18075],[82.70826,19.17903],[82.72506,19.17408],[82.72546,19.1725],[82.72124,19.17211],[82.72612,19.16566],[82.72298,19.16126],[82.7317,19.16084],[82.73632,19.15705],[82.74116,19.15983],[82.73975,19.16831],[82.74969,19.1731],[82.76119,19.16456],[82.76143,19.17074],[82.77926,19.16529],[82.78448,19.17236],[82.78827,19.17315],[82.78949,19.16946],[82.7935,19.17045],[82.79243,19.168],[82.79539,19.16307],[82.79105,19.15798],[82.79201,19.15524],[82.79802,19.15143],[82.80321,19.1514],[82.80959,19.16427],[82.81746,19.17029],[82.81542,19.15577],[82.82032,19.15177],[82.82002,19.14899],[82.82279,19.14771],[82.82598,19.15149],[82.8272,19.15668],[82.82655,19.16349],[82.82311,19.17226],[82.82706,19.17677],[82.8357,19.1823],[82.83303,19.18962],[82.83906,19.19493],[82.84262,19.20047],[82.84931,19.19505],[82.85404,19.19333],[82.85408,19.19889],[82.85642,19.20564],[82.8503,19.20678],[82.84578,19.21168],[82.84662,19.22416],[82.84067,19.22952],[82.83993,19.23265],[82.83728,19.23354],[82.83616,19.23641],[82.83313,19.23432],[82.83331,19.23702],[82.83083,19.23576],[82.82748,19.23722],[82.8286,19.23889],[82.8239,19.23927],[82.8215,19.2342],[82.81376,19.23078],[82.79867,19.23619],[82.80061,19.23772],[82.80391,19.2371],[82.80935,19.24649],[82.81531,19.25088],[82.81681,19.2566],[82.82124,19.25458],[82.82457,19.25618],[82.82455,19.26265],[82.82844,19.2677],[82.83,19.2759],[82.826,19.28238],[82.83074,19.28487],[82.83141,19.29102],[82.83608,19.29305],[82.83911,19.30118],[82.84374,19.30122],[82.84074,19.30537],[82.84131,19.30799],[82.85299,19.3078],[82.8438,19.31725],[82.84464,19.31899],[82.84871,19.32028],[82.84812,19.32388],[82.83931,19.32234],[82.83714,19.32471],[82.83401,19.32143],[82.82904,19.32402],[82.82252,19.32225],[82.8131,19.32936],[82.80563,19.33051],[82.79875,19.32896],[82.7951,19.3318],[82.78998,19.33288],[82.78871,19.33748],[82.78621,19.33848],[82.78602,19.34205],[82.77971,19.34306],[82.77776,19.34016],[82.77199,19.34034],[82.76896,19.3346],[82.77296,19.33182],[82.75678,19.32684],[82.75636,19.33295],[82.74819,19.33736],[82.74723,19.34174],[82.74139,19.34946],[82.73799,19.34887],[82.73226,19.34467],[82.72565,19.34504],[82.72498,19.35424],[82.72173,19.35244],[82.71695,19.35298],[82.71611,19.3561],[82.71417,19.35556],[82.71186,19.36347],[82.71168,19.36817],[82.71696,19.36979],[82.71341,19.37711],[82.7085,19.37862],[82.70681,19.3896],[82.71152,19.3912],[82.70613,19.40018],[82.71296,19.40183],[82.71551,19.40434],[82.7148,19.40907],[82.71155,19.41382],[82.70699,19.4146],[82.70828,19.41923],[82.69668,19.416],[82.68964,19.42015],[82.68845,19.42622],[82.68441,19.43157],[82.68251,19.43736],[82.67836,19.43428],[82.67392,19.43413],[82.67406,19.44203],[82.67187,19.44278],[82.6708,19.44123],[82.66844,19.44357],[82.66361,19.4445],[82.66083,19.44929],[82.66018,19.45712],[82.65415,19.45638],[82.65158,19.45951],[82.64964,19.45954],[82.64902,19.47746],[82.6462,19.48043],[82.64376,19.48037],[82.64288,19.48273],[82.63318,19.48177],[82.63297,19.48387],[82.6352,19.48652],[82.63375,19.49215],[82.63865,19.49403],[82.64165,19.50241],[82.64379,19.50284],[82.64299,19.50581],[82.64665,19.50624],[82.64655,19.50776],[82.64108,19.5125],[82.62795,19.5141],[82.62358,19.51966],[82.61496,19.5191],[82.60697,19.52077],[82.60933,19.52465],[82.61381,19.52534],[82.61749,19.53721],[82.61609,19.5388],[82.6118,19.53809],[82.60445,19.54181],[82.58966,19.54161],[82.588,19.54046],[82.58376,19.54602],[82.58018,19.54654],[82.57583,19.54391],[82.57265,19.5442],[82.57192,19.54258],[82.56617,19.54465],[82.56491,19.54964],[82.567,19.55685],[82.5646,19.55939],[82.56787,19.56618],[82.56209,19.57354],[82.55879,19.57443],[82.55817,19.5821],[82.54895,19.58195],[82.54612,19.58133],[82.54615,19.57932],[82.53566,19.57813],[82.52928,19.58502],[82.53056,19.5884],[82.53421,19.58929],[82.53316,19.59165],[82.53658,19.59231],[82.53673,19.59706],[82.54045,19.59489],[82.54194,19.59732],[82.54107,19.59861],[82.54587,19.60439],[82.5474,19.61212],[82.54726,19.61342],[82.53809,19.61565],[82.5397,19.61838],[82.53715,19.62047],[82.53487,19.62009],[82.53519,19.62266],[82.53168,19.62497],[82.53096,19.62844],[82.52743,19.62864],[82.52451,19.63222],[82.53252,19.63531],[82.53646,19.63968],[82.54226,19.63977],[82.54455,19.6425],[82.54573,19.64144],[82.55104,19.6446],[82.55572,19.64525],[82.5587,19.65289],[82.56543,19.66238],[82.56806,19.67109],[82.57694,19.68076],[82.57558,19.6827],[82.56758,19.68372],[82.56767,19.69104],[82.56625,19.69177],[82.56718,19.69978],[82.56881,19.70017],[82.56822,19.70872],[82.57321,19.71193],[82.57307,19.71394],[82.56794,19.71525],[82.56797,19.71997],[82.56398,19.72078],[82.56241,19.72659],[82.56754,19.73525],[82.56924,19.73333],[82.57268,19.73367],[82.58063,19.73768],[82.58739,19.74473],[82.59298,19.74727],[82.60219,19.74704],[82.59966,19.75739],[82.59555,19.75998],[82.59687,19.7628],[82.59489,19.77529],[82.58348,19.7788],[82.58359,19.78164],[82.58177,19.78321],[82.58449,19.78825],[82.5827,19.795],[82.58469,19.80235],[82.57599,19.80822],[82.57858,19.81108],[82.5762,19.81474],[82.57853,19.81801],[82.57914,19.82354],[82.57777,19.82498],[82.5794,19.83032],[82.57604,19.82892],[82.57579,19.83339],[82.57974,19.84011],[82.5839,19.84358],[82.58863,19.84338],[82.58772,19.84868],[82.59062,19.84892],[82.59041,19.85245],[82.59687,19.8552],[82.59589,19.85814],[82.6002,19.86019],[82.60343,19.86699],[82.59616,19.87298],[82.58289,19.86942],[82.57302,19.87755],[82.56104,19.87433],[82.55596,19.88066],[82.54839,19.8757],[82.54214,19.88348],[82.53491,19.88689],[82.53142,19.87824],[82.5233,19.88308],[82.51912,19.89097],[82.5118,19.88813],[82.50547,19.88986],[82.50287,19.89447],[82.5049,19.89972],[82.49734,19.90413],[82.49161,19.90345],[82.48417,19.90791],[82.4729,19.90703],[82.47228,19.90158],[82.46422,19.90085],[82.45217,19.90871],[82.44599,19.91019],[82.43711,19.90494],[82.43335,19.90556],[82.43006,19.90401],[82.4262,19.90546],[82.41802,19.90407],[82.41858,19.89985],[82.41196,19.89851],[82.40524,19.89426],[82.40178,19.88994],[82.39487,19.88802],[82.39248,19.88205],[82.38295,19.87386],[82.38365,19.86988],[82.3752,19.85964],[82.36085,19.8628],[82.36041,19.85731],[82.36463,19.85469],[82.36446,19.85101],[82.36142,19.85075],[82.35985,19.84699],[82.34889,19.83657],[82.34395,19.83509],[82.3307,19.84485],[82.32634,19.86161],[82.30312,19.88939],[82.30159,19.90271],[82.27581,19.94859],[82.27487,19.96304],[82.26917,19.97526],[82.25625,19.98345],[82.25001,19.98906],[82.2462,19.99535],[82.23712,20.00333],[82.22929,19.99982],[82.21671,19.99706],[82.2101,19.98625],[82.1931,19.9871],[82.18425,19.98419],[82.18519,19.9873],[82.18347,19.98959],[82.18033,19.99114],[82.17691,19.99731],[82.17478,19.99675],[82.17369,19.99996],[82.17125,20.00078],[82.17123,20.00551],[82.16058,20.00912],[82.15347,20.00756],[82.13981,20.01873],[82.13633,20.01893],[82.12849,20.0142],[82.12679,20.0148],[82.11652,20.02116],[82.11018,20.02752],[82.10695,20.02725],[82.10547,20.0306],[82.1032,20.03107],[82.10383,20.03569],[82.10213,20.03629],[82.10228,20.04004],[82.08946,20.03906],[82.0864,20.04524],[82.08459,20.04605],[82.08543,20.05072],[82.07047,20.05695],[82.06354,20.05453],[82.06296,20.05204],[82.06065,20.05113],[82.06219,20.04922],[82.05901,20.04775],[82.05909,20.04498],[82.0564,20.04174],[82.04782,20.03672],[82.04815,20.03482],[82.04297,20.03491],[82.04121,20.03096],[82.03804,20.03012],[82.03734,20.02795],[82.04,20.0226],[82.03256,20.01572],[82.02155,20.02371],[82.02272,20.03215],[82.01768,20.049],[82.01227,20.05391],[82.00575,20.05561],[82.00325,20.05513],[82.00337,20.05334],[81.99534,20.05357],[81.98706,20.06186],[81.98416,20.06803],[81.98386,20.07324],[81.97366,20.08395],[81.96333,20.09045],[81.95815,20.09785],[81.95305,20.10154]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"367","area_level":"District","area_name":"Nayagada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.83073,20.54941],[84.82096,20.56086],[84.80244,20.57604],[84.7901,20.58127],[84.78917,20.57916],[84.7913,20.56094],[84.78732,20.55853],[84.78657,20.55078],[84.78447,20.5492],[84.77791,20.54917],[84.77315,20.53929],[84.76603,20.53179],[84.75472,20.53711],[84.74045,20.54097],[84.73483,20.53803],[84.73435,20.53587],[84.73221,20.53536],[84.7317,20.53233],[84.72465,20.52783],[84.71247,20.52381],[84.71121,20.52093],[84.71274,20.51387],[84.71026,20.51001],[84.71117,20.50664],[84.70399,20.50082],[84.69669,20.49775],[84.69816,20.49547],[84.6942,20.49119],[84.69523,20.48493],[84.6917,20.47391],[84.69251,20.47011],[84.68663,20.46727],[84.68645,20.46393],[84.68184,20.46284],[84.68053,20.46013],[84.6883,20.45884],[84.69116,20.45024],[84.68584,20.44819],[84.68629,20.44535],[84.68971,20.44392],[84.68961,20.44119],[84.68146,20.43747],[84.68071,20.43284],[84.67376,20.43394],[84.67189,20.42978],[84.6632,20.42451],[84.64665,20.42356],[84.63486,20.42576],[84.62911,20.43161],[84.62361,20.43057],[84.61815,20.43421],[84.61372,20.42802],[84.60891,20.42698],[84.604,20.42006],[84.59597,20.41975],[84.58982,20.42371],[84.56356,20.41134],[84.55515,20.41307],[84.54231,20.41867],[84.53963,20.41006],[84.53045,20.4104],[84.52247,20.40338],[84.51835,20.40543],[84.51367,20.4027],[84.50973,20.39523],[84.51199,20.39279],[84.51143,20.38629],[84.51301,20.38269],[84.51727,20.3802],[84.52058,20.38136],[84.51899,20.37884],[84.51834,20.36949],[84.50131,20.35928],[84.4953,20.35837],[84.49374,20.35022],[84.4901,20.35066],[84.48322,20.34784],[84.48597,20.34685],[84.48662,20.33815],[84.49329,20.33355],[84.50497,20.3316],[84.50787,20.33384],[84.50907,20.33753],[84.51155,20.33779],[84.50934,20.32638],[84.51457,20.31906],[84.5211,20.32558],[84.52884,20.32202],[84.54283,20.32331],[84.55205,20.28399],[84.54387,20.27555],[84.5473,20.25907],[84.54217,20.25075],[84.54893,20.23191],[84.55487,20.22604],[84.55772,20.22706],[84.56257,20.21906],[84.57376,20.2069],[84.58507,20.18652],[84.59718,20.17593],[84.61187,20.18153],[84.6157,20.18511],[84.61837,20.18532],[84.6204,20.1884],[84.62462,20.18732],[84.62898,20.19047],[84.63363,20.19007],[84.63399,20.19306],[84.63596,20.19351],[84.63747,20.19693],[84.64737,20.20134],[84.64806,20.20404],[84.64932,20.20403],[84.64838,20.20675],[84.65099,20.22587],[84.65591,20.23088],[84.66099,20.24105],[84.66504,20.24389],[84.66684,20.25709],[84.67237,20.27411],[84.68344,20.27566],[84.69621,20.28111],[84.70606,20.27775],[84.7183,20.26573],[84.72814,20.25873],[84.7356,20.24415],[84.75806,20.24209],[84.76518,20.2461],[84.77375,20.24344],[84.78215,20.2322],[84.80305,20.22486],[84.81781,20.22218],[84.82266,20.2233],[84.82574,20.21852],[84.83162,20.21639],[84.82952,20.19877],[84.82364,20.17982],[84.82316,20.17334],[84.82594,20.15893],[84.82171,20.13656],[84.82187,20.12048],[84.81994,20.11679],[84.81489,20.11518],[84.80735,20.1154],[84.80411,20.11101],[84.80661,20.104],[84.80469,20.10055],[84.80201,20.0998],[84.80154,20.09688],[84.79812,20.09351],[84.79821,20.0906],[84.80462,20.08329],[84.81068,20.06783],[84.82245,20.05971],[84.83474,20.05411],[84.84929,20.03647],[84.85671,20.03071],[84.85725,20.0241],[84.86119,20.0188],[84.85984,20.00581],[84.86243,20.00006],[84.87348,19.99829],[84.88338,20.00074],[84.89137,19.99531],[84.9008,19.99288],[84.90552,19.98068],[84.90961,19.97596],[84.9141,19.95433],[84.92069,19.94307],[84.92086,19.93997],[84.91739,19.93447],[84.91785,19.9321],[84.9153,19.93029],[84.91549,19.92519],[84.91341,19.92656],[84.90622,19.91554],[84.90603,19.90952],[84.90725,19.90749],[84.91564,19.90614],[84.92296,19.90604],[84.92781,19.90806],[84.93354,19.90073],[84.93992,19.89741],[84.94786,19.90059],[84.95823,19.90022],[84.97593,19.90431],[84.99791,19.90204],[85.00507,19.8996],[85.01903,19.90563],[85.02607,19.90111],[85.03394,19.90707],[85.05079,19.9157],[85.055,19.91359],[85.07453,19.92157],[85.07924,19.92148],[85.0886,19.92527],[85.09299,19.92917],[85.10233,19.93252],[85.11751,19.9322],[85.12298,19.93362],[85.14831,19.91669],[85.15993,19.90767],[85.16195,19.90441],[85.16712,19.90363],[85.18095,19.91022],[85.18265,19.90691],[85.19184,19.90751],[85.21067,19.91226],[85.21909,19.90965],[85.22179,19.9123],[85.24322,19.90609],[85.24892,19.90713],[85.25785,19.91153],[85.26628,19.91236],[85.26676,19.91599],[85.27015,19.9179],[85.27417,19.91386],[85.27859,19.91429],[85.28827,19.92217],[85.30111,19.92253],[85.3046,19.92687],[85.30924,19.92441],[85.31091,19.92605],[85.32781,19.92578],[85.32949,19.92712],[85.32828,19.93006],[85.32963,19.93151],[85.33718,19.93812],[85.35091,19.94395],[85.35375,19.95149],[85.36027,19.95654],[85.36913,19.95456],[85.37278,19.95033],[85.38279,19.95202],[85.38246,19.94242],[85.38386,19.9402],[85.39357,19.94027],[85.39973,19.93235],[85.40767,19.92811],[85.41548,19.92874],[85.41803,19.92415],[85.4182,19.9297],[85.42238,19.93975],[85.42484,19.93727],[85.42683,19.93977],[85.43534,19.93973],[85.4396,19.95093],[85.44644,19.9596],[85.45041,19.96151],[85.45504,19.97052],[85.45161,19.97331],[85.45034,19.98381],[85.43861,19.99123],[85.43707,19.99642],[85.43057,19.99457],[85.43017,19.9931],[85.41471,19.99405],[85.41568,20.00406],[85.42081,20.00276],[85.42339,20.00389],[85.42587,20.01123],[85.43129,20.01497],[85.43568,20.02878],[85.43042,20.02896],[85.42533,20.02553],[85.41617,20.02591],[85.41508,20.02464],[85.41376,20.02786],[85.41535,20.03064],[85.41485,20.03318],[85.40942,20.03267],[85.40787,20.034],[85.40641,20.03174],[85.40333,20.03473],[85.40037,20.03521],[85.39943,20.03781],[85.39709,20.03788],[85.39715,20.04156],[85.39409,20.04198],[85.39618,20.04386],[85.39586,20.0467],[85.39163,20.04903],[85.39188,20.05148],[85.38764,20.05389],[85.38756,20.05973],[85.38562,20.06162],[85.38639,20.06347],[85.38022,20.07071],[85.38423,20.07686],[85.3842,20.07998],[85.38019,20.0809],[85.38437,20.09177],[85.39288,20.09082],[85.39567,20.08907],[85.40085,20.09064],[85.40558,20.09977],[85.4046,20.1031],[85.40879,20.11135],[85.40803,20.11685],[85.41575,20.12327],[85.41576,20.1267],[85.41405,20.12951],[85.40962,20.13163],[85.40697,20.13593],[85.3981,20.13803],[85.39587,20.13689],[85.39438,20.1332],[85.38775,20.13691],[85.38709,20.14351],[85.38843,20.14558],[85.39117,20.14581],[85.38668,20.15023],[85.38526,20.15624],[85.38261,20.1544],[85.38261,20.15121],[85.37788,20.15007],[85.37635,20.14669],[85.36851,20.14437],[85.36243,20.14501],[85.35527,20.14357],[85.35701,20.15436],[85.36269,20.15903],[85.36152,20.16448],[85.36969,20.17084],[85.37017,20.17821],[85.36712,20.17959],[85.36157,20.18755],[85.35687,20.18792],[85.35594,20.18985],[85.35218,20.18647],[85.34683,20.18747],[85.34596,20.18312],[85.34188,20.18039],[85.34308,20.17955],[85.34234,20.17534],[85.33997,20.17102],[85.33174,20.17342],[85.33206,20.18068],[85.33094,20.18164],[85.32753,20.17987],[85.32614,20.17659],[85.31927,20.17152],[85.31286,20.16963],[85.31048,20.16435],[85.31265,20.16419],[85.31355,20.15906],[85.31208,20.15488],[85.30575,20.15548],[85.29536,20.15307],[85.29038,20.15484],[85.28717,20.15248],[85.28819,20.15053],[85.27115,20.14854],[85.26504,20.14323],[85.26579,20.14222],[85.26332,20.14198],[85.25574,20.13226],[85.25263,20.13328],[85.24848,20.13011],[85.24656,20.11844],[85.24096,20.11588],[85.23144,20.11918],[85.22482,20.1287],[85.212,20.13126],[85.21261,20.14123],[85.20948,20.14576],[85.2093,20.15088],[85.20738,20.15083],[85.20713,20.15288],[85.20382,20.15294],[85.20316,20.15584],[85.2037,20.15858],[85.21117,20.16027],[85.21334,20.17058],[85.20813,20.17247],[85.20648,20.17619],[85.20486,20.17391],[85.20268,20.17368],[85.20449,20.1771],[85.20263,20.17857],[85.20392,20.17974],[85.20037,20.18111],[85.19896,20.18645],[85.19983,20.19001],[85.20393,20.19562],[85.21122,20.19887],[85.21297,20.20351],[85.21156,20.20755],[85.21373,20.2101],[85.21334,20.21229],[85.21831,20.21962],[85.22521,20.22446],[85.22741,20.22271],[85.22959,20.22329],[85.22997,20.21605],[85.23213,20.21299],[85.2393,20.20897],[85.24518,20.2099],[85.25456,20.21343],[85.25457,20.22636],[85.27035,20.22789],[85.28136,20.22628],[85.29753,20.2274],[85.3095,20.23038],[85.31331,20.23366],[85.31496,20.23191],[85.31401,20.22996],[85.31679,20.23263],[85.32259,20.22967],[85.326,20.24473],[85.32815,20.24666],[85.33833,20.2464],[85.34108,20.25209],[85.34074,20.25476],[85.33615,20.25653],[85.33518,20.25501],[85.33382,20.25651],[85.33004,20.2548],[85.32921,20.25827],[85.32729,20.25443],[85.32638,20.25767],[85.32442,20.25823],[85.32597,20.26148],[85.3298,20.26385],[85.329,20.26964],[85.32738,20.27103],[85.3285,20.27675],[85.32921,20.27846],[85.33154,20.27843],[85.33358,20.28409],[85.34231,20.28496],[85.34419,20.28601],[85.34329,20.28776],[85.34607,20.28745],[85.34558,20.29019],[85.34861,20.29135],[85.34949,20.29778],[85.35444,20.30177],[85.3518,20.30646],[85.35418,20.31174],[85.35236,20.31342],[85.35315,20.31498],[85.35032,20.31566],[85.35129,20.31854],[85.34853,20.31733],[85.34749,20.3189],[85.35016,20.32071],[85.34894,20.32254],[85.35132,20.328],[85.35006,20.33048],[85.35396,20.32943],[85.35354,20.3328],[85.35036,20.33486],[85.354,20.33724],[85.35643,20.33661],[85.35791,20.34584],[85.36315,20.34752],[85.36685,20.35093],[85.37267,20.35188],[85.37153,20.35459],[85.37317,20.35672],[85.36789,20.35575],[85.36666,20.36716],[85.35782,20.36479],[85.3514,20.36522],[85.33664,20.35839],[85.28913,20.36038],[85.27161,20.35962],[85.26347,20.36437],[85.24787,20.36849],[85.21074,20.37455],[85.19666,20.38087],[85.18527,20.37691],[85.17147,20.37918],[85.15843,20.37855],[85.14593,20.38661],[85.13718,20.38712],[85.13339,20.3913],[85.12359,20.39758],[85.11348,20.40788],[85.09945,20.41297],[85.09218,20.41291],[85.07393,20.41718],[85.06923,20.42215],[85.04959,20.42931],[85.04046,20.43483],[85.03262,20.44225],[85.00898,20.45215],[84.99067,20.46721],[84.97732,20.47289],[84.94917,20.48865],[84.9262,20.49501],[84.91562,20.49612],[84.893,20.49483],[84.88181,20.49889],[84.87443,20.50283],[84.85689,20.51798],[84.83073,20.54941]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"368","area_level":"District","area_name":"Nuapada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.63723,21.09031],[82.63451,21.08903],[82.63311,21.08319],[82.62964,21.07882],[82.61651,21.07918],[82.61198,21.07469],[82.61186,21.06919],[82.61725,21.05986],[82.61788,21.05468],[82.6261,21.04854],[82.62979,21.04094],[82.62879,21.03804],[82.61333,21.02285],[82.61136,21.01297],[82.58878,20.99355],[82.58051,20.97973],[82.57138,20.97226],[82.55915,20.94794],[82.54303,20.93661],[82.52711,20.934],[82.51594,20.92176],[82.50443,20.91959],[82.4877,20.908],[82.48699,20.90504],[82.49107,20.88063],[82.48598,20.87028],[82.48668,20.86165],[82.48108,20.85131],[82.47044,20.84808],[82.46539,20.84295],[82.46878,20.83518],[82.46449,20.829],[82.45437,20.82765],[82.44902,20.83101],[82.44728,20.82996],[82.44367,20.831],[82.44353,20.83437],[82.43934,20.83564],[82.42731,20.83155],[82.41995,20.83156],[82.41673,20.83866],[82.4101,20.84229],[82.40995,20.8456],[82.41287,20.85086],[82.40685,20.85928],[82.40751,20.86576],[82.40545,20.87019],[82.39557,20.87003],[82.38924,20.87409],[82.38967,20.87532],[82.38505,20.87409],[82.37592,20.86798],[82.36461,20.87067],[82.35947,20.87381],[82.36376,20.88849],[82.35119,20.88974],[82.34676,20.87704],[82.34446,20.85637],[82.33953,20.84684],[82.34157,20.83283],[82.33934,20.82577],[82.34102,20.82083],[82.34112,20.81249],[82.34317,20.80893],[82.34202,20.80472],[82.34611,20.79763],[82.34386,20.79223],[82.34364,20.77095],[82.34171,20.76776],[82.35355,20.73592],[82.34556,20.73159],[82.35401,20.71966],[82.35076,20.71728],[82.35041,20.70634],[82.355,20.69319],[82.36145,20.68195],[82.36705,20.68019],[82.37382,20.6674],[82.36875,20.65959],[82.36997,20.65556],[82.36848,20.64923],[82.37467,20.63907],[82.3765,20.63241],[82.37095,20.62599],[82.36452,20.62218],[82.36543,20.61588],[82.36292,20.61412],[82.36226,20.60991],[82.35865,20.60848],[82.3559,20.60925],[82.35256,20.60298],[82.34713,20.60254],[82.34485,20.59848],[82.3457,20.59656],[82.34374,20.59577],[82.34408,20.59289],[82.34679,20.5906],[82.35064,20.58127],[82.34836,20.5764],[82.34335,20.57152],[82.33337,20.56855],[82.33488,20.5646],[82.33223,20.56191],[82.3357,20.5551],[82.34861,20.54667],[82.35765,20.52933],[82.36806,20.52386],[82.37825,20.52203],[82.3897,20.5176],[82.388,20.51073],[82.38953,20.49801],[82.38834,20.49536],[82.39109,20.49243],[82.3906,20.48619],[82.39316,20.48643],[82.39374,20.4825],[82.39203,20.47869],[82.39608,20.47766],[82.39784,20.47295],[82.39764,20.46484],[82.39478,20.46229],[82.39606,20.45957],[82.39798,20.46192],[82.40191,20.46193],[82.40427,20.46005],[82.40855,20.46324],[82.40798,20.46733],[82.41079,20.46813],[82.4158,20.48151],[82.41763,20.48174],[82.42706,20.46906],[82.42573,20.44533],[82.43398,20.44567],[82.43786,20.43439],[82.42966,20.42787],[82.43201,20.41664],[82.41661,20.40765],[82.42117,20.39285],[82.41769,20.38772],[82.41805,20.38211],[82.4112,20.37129],[82.40915,20.36293],[82.40505,20.35804],[82.40627,20.35299],[82.40038,20.34158],[82.40151,20.33758],[82.40916,20.33253],[82.40887,20.32778],[82.41295,20.328],[82.41737,20.32425],[82.42104,20.32411],[82.43077,20.31402],[82.42998,20.30099],[82.43781,20.29441],[82.43557,20.28548],[82.43287,20.28181],[82.42503,20.27522],[82.41596,20.27205],[82.41234,20.26704],[82.41139,20.26011],[82.41601,20.25728],[82.41778,20.25232],[82.42233,20.24797],[82.41123,20.24538],[82.41063,20.24265],[82.41507,20.22681],[82.42247,20.22082],[82.42048,20.21308],[82.42062,20.20492],[82.41347,20.19935],[82.41408,20.18986],[82.41158,20.18149],[82.40754,20.18123],[82.40453,20.17787],[82.40471,20.17598],[82.39491,20.17012],[82.39001,20.1637],[82.39374,20.15704],[82.39415,20.15263],[82.3872,20.14905],[82.3858,20.14644],[82.39315,20.13761],[82.39423,20.12992],[82.39767,20.12377],[82.39818,20.10169],[82.40143,20.09607],[82.39976,20.0898],[82.40149,20.08102],[82.39583,20.06897],[82.39839,20.06269],[82.39829,20.05818],[82.40954,20.05179],[82.41682,20.05215],[82.43003,20.04961],[82.44052,20.04318],[82.44801,20.04066],[82.45753,20.03997],[82.46067,20.0419],[82.47001,20.03591],[82.47857,20.03817],[82.49373,20.02437],[82.50911,20.01816],[82.53318,20.0153],[82.53445,20.01785],[82.55011,20.01777],[82.5714,20.00955],[82.58328,20.00318],[82.59034,19.99373],[82.60502,19.99014],[82.62114,19.9923],[82.6333,20.00487],[82.64151,20.00671],[82.64298,20.00641],[82.64271,20.00366],[82.65198,20.00589],[82.67012,20.00108],[82.69267,20.0],[82.69958,19.99757],[82.70727,19.99905],[82.71545,19.99593],[82.71662,20.00643],[82.72047,20.00815],[82.72758,20.02279],[82.73928,20.0213],[82.74488,20.02461],[82.74432,20.03185],[82.74747,20.03619],[82.7481,20.04162],[82.74679,20.04592],[82.74314,20.04755],[82.73971,20.05261],[82.75494,20.05486],[82.76785,20.07671],[82.77941,20.0866],[82.7883,20.10339],[82.80692,20.09973],[82.81088,20.09966],[82.81358,20.10155],[82.81658,20.11033],[82.82046,20.11281],[82.81922,20.12233],[82.81609,20.12847],[82.82046,20.15957],[82.82292,20.16521],[82.81492,20.16818],[82.81274,20.17137],[82.81068,20.17154],[82.80962,20.17468],[82.81086,20.18082],[82.81266,20.18227],[82.81192,20.18463],[82.81657,20.18911],[82.82739,20.18672],[82.83726,20.18926],[82.8417,20.19306],[82.84537,20.19384],[82.84712,20.19635],[82.84785,20.20659],[82.8519,20.21239],[82.85509,20.21935],[82.85474,20.22301],[82.85767,20.22665],[82.8565,20.22822],[82.86087,20.23135],[82.85941,20.23652],[82.85218,20.2369],[82.85308,20.23994],[82.85146,20.24032],[82.85093,20.24303],[82.85227,20.24658],[82.85153,20.25283],[82.85836,20.25559],[82.85683,20.26143],[82.8599,20.26946],[82.85587,20.28021],[82.8452,20.29043],[82.8402,20.28209],[82.8286,20.27993],[82.82598,20.28062],[82.82461,20.28379],[82.82187,20.28362],[82.82124,20.28108],[82.81415,20.28746],[82.81048,20.29491],[82.81359,20.29603],[82.8168,20.3003],[82.81908,20.30716],[82.81849,20.31349],[82.8152,20.31506],[82.81589,20.31755],[82.81911,20.32085],[82.829,20.32012],[82.8339,20.32168],[82.83675,20.31632],[82.83312,20.30919],[82.83339,20.30669],[82.83984,20.30567],[82.84148,20.30259],[82.8359,20.29565],[82.84588,20.2911],[82.84562,20.29443],[82.84871,20.29464],[82.8516,20.30148],[82.84894,20.31175],[82.84998,20.31796],[82.85359,20.32547],[82.8514,20.33147],[82.85235,20.33738],[82.85133,20.33911],[82.84674,20.34095],[82.83853,20.3362],[82.83451,20.33614],[82.83286,20.34097],[82.82822,20.34132],[82.82213,20.3446],[82.82098,20.35074],[82.81885,20.35222],[82.81623,20.35835],[82.81407,20.35847],[82.81182,20.35183],[82.8123,20.34691],[82.80657,20.34036],[82.81001,20.33622],[82.81146,20.32717],[82.80314,20.32115],[82.7884,20.32425],[82.78791,20.32689],[82.79329,20.33155],[82.79197,20.33286],[82.79401,20.33868],[82.78981,20.34477],[82.79018,20.3471],[82.79777,20.35132],[82.80206,20.35722],[82.81103,20.36117],[82.81275,20.36362],[82.81246,20.37161],[82.815,20.38101],[82.81363,20.3832],[82.80919,20.38165],[82.80352,20.38536],[82.79788,20.37969],[82.79653,20.37214],[82.79041,20.37029],[82.78108,20.37028],[82.78005,20.36379],[82.7766,20.35683],[82.77159,20.35421],[82.76376,20.35338],[82.74817,20.36223],[82.74388,20.36229],[82.73344,20.35659],[82.72642,20.35528],[82.71495,20.35678],[82.71262,20.36115],[82.71478,20.36777],[82.72335,20.37069],[82.72721,20.38079],[82.72991,20.38319],[82.72426,20.38813],[82.72311,20.3935],[82.71505,20.39838],[82.71234,20.40279],[82.71268,20.40793],[82.70871,20.41619],[82.7029,20.42335],[82.69641,20.42602],[82.69431,20.43115],[82.69966,20.44256],[82.69628,20.45043],[82.6908,20.45414],[82.68445,20.45333],[82.68331,20.4614],[82.68947,20.46857],[82.68718,20.47607],[82.69547,20.48183],[82.70017,20.49261],[82.69926,20.49739],[82.70054,20.50075],[82.70515,20.5043],[82.70514,20.5116],[82.70869,20.52668],[82.70379,20.53286],[82.70443,20.53945],[82.70703,20.54373],[82.70962,20.54432],[82.70772,20.54861],[82.70794,20.55458],[82.71042,20.55634],[82.71012,20.56106],[82.71173,20.5644],[82.71019,20.57049],[82.71618,20.57732],[82.72851,20.58521],[82.72646,20.59131],[82.73071,20.60187],[82.73005,20.60604],[82.73583,20.61448],[82.74198,20.6309],[82.73703,20.63472],[82.73074,20.63515],[82.72713,20.6394],[82.73106,20.65417],[82.72393,20.65767],[82.72531,20.67083],[82.72231,20.67232],[82.71891,20.67818],[82.70076,20.68396],[82.69371,20.68361],[82.69336,20.70581],[82.69764,20.71473],[82.69987,20.72966],[82.68535,20.73303],[82.68485,20.74013],[82.68616,20.74361],[82.69006,20.74527],[82.69196,20.75038],[82.69677,20.75432],[82.69765,20.76137],[82.69473,20.77048],[82.68971,20.77442],[82.68782,20.80115],[82.68442,20.80677],[82.68312,20.81379],[82.68421,20.82611],[82.68723,20.83073],[82.685,20.84457],[82.68661,20.85502],[82.68473,20.86554],[82.68176,20.86953],[82.68267,20.87162],[82.68089,20.88538],[82.68095,20.88734],[82.68618,20.89105],[82.69246,20.89998],[82.69373,20.92422],[82.69855,20.93761],[82.69644,20.94487],[82.69715,20.94875],[82.68717,20.97331],[82.68922,20.992],[82.68951,21.0174],[82.69237,21.02167],[82.6797,21.03454],[82.67635,21.04852],[82.66924,21.06504],[82.65576,21.07863],[82.64688,21.07975],[82.64153,21.08363],[82.64112,21.08721],[82.63963,21.0893],[82.63778,21.08835],[82.63723,21.09031]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"369","area_level":"District","area_name":"Puri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.85336,20.20211],[85.85199,20.20359],[85.8514,20.20165],[85.84676,20.20179],[85.84481,20.19811],[85.84043,20.20006],[85.83742,20.19488],[85.84458,20.19233],[85.845,20.19369],[85.8417,20.19546],[85.84237,20.19791],[85.84296,20.19583],[85.8459,20.19581],[85.84708,20.19323],[85.85432,20.19287],[85.85413,20.17642],[85.84433,20.17569],[85.84281,20.17924],[85.84298,20.18829],[85.83924,20.18849],[85.83732,20.1916],[85.83636,20.1879],[85.83385,20.188],[85.8343,20.18236],[85.82747,20.17126],[85.82544,20.15911],[85.82141,20.16068],[85.81568,20.15874],[85.80573,20.16132],[85.7977,20.15195],[85.79047,20.15472],[85.78799,20.15786],[85.77926,20.15803],[85.78347,20.16358],[85.78017,20.16741],[85.76355,20.16842],[85.76134,20.15987],[85.76449,20.1536],[85.75484,20.15308],[85.75496,20.14995],[85.7527,20.14667],[85.75809,20.14592],[85.75684,20.14153],[85.75206,20.14042],[85.7511,20.14239],[85.75074,20.1403],[85.74871,20.14005],[85.74915,20.14585],[85.74494,20.14815],[85.73409,20.15051],[85.72839,20.14967],[85.72054,20.14189],[85.7262,20.13534],[85.72277,20.12974],[85.71733,20.13272],[85.71665,20.1355],[85.71448,20.1369],[85.7199,20.14112],[85.71949,20.14291],[85.71478,20.14571],[85.71391,20.14377],[85.70602,20.14458],[85.70513,20.14599],[85.70408,20.14432],[85.70139,20.1441],[85.70031,20.14712],[85.70137,20.15204],[85.69285,20.15404],[85.69281,20.15787],[85.69055,20.15832],[85.69075,20.15395],[85.68887,20.15511],[85.68799,20.15187],[85.68482,20.15308],[85.68362,20.14468],[85.68288,20.14327],[85.68056,20.14383],[85.68036,20.13624],[85.68363,20.13105],[85.67497,20.12518],[85.6765,20.11446],[85.67462,20.11283],[85.68267,20.10823],[85.68324,20.10546],[85.6859,20.10483],[85.68343,20.10008],[85.68566,20.09793],[85.68638,20.09943],[85.68561,20.09663],[85.68762,20.09912],[85.69021,20.09687],[85.69255,20.09874],[85.69283,20.09531],[85.68636,20.09232],[85.67995,20.09289],[85.67762,20.08978],[85.67117,20.08758],[85.67139,20.08408],[85.67524,20.07711],[85.68125,20.07597],[85.67712,20.06932],[85.66977,20.07022],[85.66286,20.06602],[85.65007,20.06713],[85.64685,20.09026],[85.64931,20.09698],[85.64515,20.09936],[85.63183,20.10257],[85.63684,20.09197],[85.64371,20.08889],[85.64381,20.08191],[85.63717,20.08247],[85.63897,20.07794],[85.63769,20.07526],[85.62803,20.07025],[85.62428,20.06983],[85.6225,20.06664],[85.61897,20.0687],[85.61831,20.06005],[85.61229,20.03772],[85.6204,20.03643],[85.61908,20.03229],[85.62596,20.02814],[85.62843,20.02366],[85.62245,20.01803],[85.62329,20.01673],[85.62076,20.01236],[85.62053,20.00817],[85.61827,20.00651],[85.61358,19.99272],[85.61149,19.99324],[85.61106,19.99531],[85.60917,19.99403],[85.60642,19.99599],[85.61455,20.01961],[85.6116,20.02045],[85.60673,20.01908],[85.60215,20.01456],[85.60121,20.01002],[85.59601,20.0084],[85.59284,20.00088],[85.59,20.00045],[85.58926,19.99882],[85.58616,20.00183],[85.58713,20.00665],[85.5806,20.00883],[85.57885,20.02175],[85.57475,20.02276],[85.57174,20.0257],[85.56963,20.01671],[85.56656,20.01352],[85.56753,20.01276],[85.56625,20.01077],[85.56623,20.00865],[85.57192,20.00693],[85.57038,19.99912],[85.5694,19.99741],[85.56722,19.99792],[85.56666,19.99957],[85.56829,20.00019],[85.56694,20.00057],[85.5674,20.00375],[85.56602,20.00358],[85.56637,20.00178],[85.56333,20.0],[85.56191,19.99565],[85.56228,19.99181],[85.56702,19.99042],[85.564,19.98604],[85.56621,19.9855],[85.56862,19.98187],[85.5663,19.97817],[85.55995,19.98108],[85.55503,19.97493],[85.56253,19.97121],[85.56635,19.97244],[85.56395,19.96791],[85.56445,19.95573],[85.56162,19.95237],[85.55044,19.95261],[85.55233,19.96282],[85.54905,19.96185],[85.54745,19.95696],[85.5317,19.95869],[85.53477,19.96525],[85.53073,19.96716],[85.53071,19.97047],[85.52811,19.97154],[85.5307,19.9747],[85.53065,19.97701],[85.52634,19.97851],[85.52701,19.97629],[85.52109,19.97654],[85.52181,19.97461],[85.51699,19.97413],[85.518,19.97028],[85.5146,19.97016],[85.51564,19.96699],[85.51074,19.95258],[85.50578,19.95272],[85.5017,19.94783],[85.50333,19.94624],[85.50024,19.94736],[85.49895,19.9463],[85.50118,19.94464],[85.50278,19.94577],[85.50572,19.9447],[85.50375,19.94622],[85.50555,19.94798],[85.50635,19.94568],[85.51867,19.94117],[85.51231,19.93544],[85.50871,19.93572],[85.50569,19.93079],[85.50739,19.92981],[85.50728,19.9275],[85.51056,19.92693],[85.52045,19.93063],[85.52668,19.94403],[85.53392,19.93878],[85.53078,19.92764],[85.5609,19.91761],[85.56336,19.91913],[85.56817,19.91682],[85.56374,19.91458],[85.56089,19.9089],[85.56992,19.90395],[85.56773,19.90046],[85.56633,19.90088],[85.56841,19.89833],[85.56481,19.89224],[85.56779,19.88254],[85.56432,19.87586],[85.56188,19.8545],[85.50002,19.86984],[85.50281,19.88466],[85.43843,19.88309],[85.43045,19.87329],[85.39648,19.84307],[85.38663,19.83153],[85.35934,19.8222],[85.35687,19.81748],[85.35542,19.81767],[85.35713,19.81436],[85.34806,19.80034],[85.34348,19.80147],[85.34338,19.79796],[85.32932,19.78523],[85.31556,19.78281],[85.31608,19.78148],[85.30314,19.78361],[85.30359,19.782],[85.28581,19.78158],[85.26788,19.77204],[85.25249,19.76753],[85.24983,19.74389],[85.22564,19.74344],[85.2173,19.73867],[85.20903,19.72446],[85.20306,19.71959],[85.19829,19.70623],[85.20055,19.70079],[85.21118,19.69631],[85.21215,19.68512],[85.2064,19.67844],[85.19678,19.67435],[85.18245,19.67209],[85.17937,19.62101],[85.173,19.55926],[85.13544,19.52154],[85.14872,19.49495],[85.17309,19.46683],[85.29478,19.55238],[85.32713,19.57303],[85.38101,19.6034],[85.43051,19.628],[85.49947,19.65711],[85.63703,19.7255],[85.66004,19.73506],[85.66782,19.73686],[85.67799,19.74385],[85.7508,19.76852],[85.78103,19.78094],[85.8619,19.80507],[85.9481,19.82825],[86.05803,19.84985],[86.19384,19.88884],[86.23289,19.90297],[86.27659,19.92685],[86.30673,19.94024],[86.32732,19.94588],[86.35523,19.94701],[86.3857,19.95368],[86.39273,19.95734],[86.40889,19.97039],[86.41153,19.97456],[86.41067,19.97564],[86.39751,19.96951],[86.39043,19.9631],[86.38216,19.95943],[86.3789,19.96263],[86.37355,19.97643],[86.3579,19.97283],[86.34781,19.97527],[86.33799,19.98484],[86.33125,20.00242],[86.32279,20.01847],[86.31644,20.02131],[86.31354,20.02532],[86.30839,20.02467],[86.2949,20.02944],[86.29206,20.0329],[86.27907,20.04041],[86.27333,20.04231],[86.26977,20.04145],[86.26952,20.04413],[86.27541,20.04736],[86.27813,20.05469],[86.27385,20.05522],[86.26503,20.051],[86.25372,20.05332],[86.24278,20.03652],[86.23022,20.04299],[86.22112,20.03543],[86.21137,20.03987],[86.21281,20.0416],[86.2114,20.0429],[86.2072,20.04237],[86.20536,20.0384],[86.20269,20.04266],[86.20654,20.04293],[86.20689,20.04534],[86.2012,20.04747],[86.20045,20.05243],[86.19894,20.0513],[86.19714,20.05216],[86.19438,20.04956],[86.19157,20.0516],[86.18798,20.05017],[86.18456,20.05117],[86.17241,20.04944],[86.16801,20.04579],[86.16847,20.04092],[86.15991,20.04516],[86.15139,20.04116],[86.14737,20.04386],[86.14174,20.04318],[86.13725,20.03967],[86.12314,20.03918],[86.11828,20.04305],[86.11666,20.04665],[86.12045,20.05196],[86.12728,20.05704],[86.12166,20.0615],[86.10744,20.06662],[86.09649,20.06525],[86.09068,20.06207],[86.08898,20.05822],[86.08694,20.05826],[86.08463,20.06507],[86.0762,20.07306],[86.07796,20.07549],[86.07543,20.07757],[86.07687,20.07999],[86.07589,20.08338],[86.08769,20.0852],[86.08959,20.09113],[86.08501,20.10123],[86.07917,20.10532],[86.07578,20.10514],[86.06928,20.10849],[86.05631,20.10268],[86.05158,20.1077],[86.04909,20.10525],[86.04639,20.10504],[86.04168,20.10684],[86.02897,20.10768],[86.02843,20.10592],[86.02317,20.10405],[86.02141,20.10122],[86.01506,20.10379],[86.01012,20.11278],[86.0062,20.11227],[86.00396,20.114],[86.0027,20.11003],[85.999,20.10696],[85.98959,20.10955],[85.99077,20.11213],[85.98962,20.11255],[85.97847,20.11391],[85.97073,20.11834],[85.96916,20.11728],[85.96199,20.11881],[85.95985,20.12174],[85.95851,20.11785],[85.95735,20.11817],[85.95527,20.11411],[85.95273,20.11269],[85.94989,20.11406],[85.95169,20.11638],[85.94861,20.1177],[85.95007,20.12026],[85.94835,20.11839],[85.94575,20.12108],[85.94307,20.11909],[85.94494,20.11604],[85.94309,20.11591],[85.94373,20.11456],[85.9343,20.11738],[85.92972,20.11538],[85.92987,20.11236],[85.92818,20.11371],[85.92477,20.11295],[85.92568,20.11423],[85.92003,20.11717],[85.92065,20.1192],[85.91861,20.11777],[85.91607,20.11991],[85.91692,20.12131],[85.91439,20.11988],[85.91026,20.12101],[85.91152,20.1216],[85.91008,20.123],[85.90237,20.12734],[85.90227,20.12083],[85.90088,20.12064],[85.89706,20.11185],[85.88962,20.11369],[85.88719,20.11346],[85.88615,20.1111],[85.87992,20.11289],[85.87798,20.11384],[85.87762,20.11771],[85.8754,20.11833],[85.87542,20.1207],[85.87164,20.12175],[85.87362,20.12592],[85.87576,20.12806],[85.88421,20.12941],[85.88688,20.1328],[85.88557,20.13389],[85.89161,20.14118],[85.89454,20.13988],[85.90366,20.15183],[85.89834,20.15294],[85.89821,20.15732],[85.89369,20.15994],[85.89263,20.16757],[85.88866,20.17047],[85.89298,20.17698],[85.88716,20.18354],[85.87371,20.19188],[85.87041,20.18935],[85.86625,20.19115],[85.86157,20.19845],[85.85803,20.19738],[85.85663,20.19842],[85.85724,20.20028],[85.85336,20.20211]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"37","area_level":"District","area_name":"Mansa","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.39184,30.2098],[75.39028,30.2085],[75.38795,30.20932],[75.38643,30.2061],[75.3805,30.20425],[75.37483,30.19842],[75.36954,30.19896],[75.36328,30.19108],[75.3574,30.18727],[75.35747,30.18142],[75.364,30.17602],[75.35613,30.16826],[75.35563,30.16566],[75.35918,30.16408],[75.35752,30.16164],[75.35117,30.16266],[75.34453,30.15949],[75.34551,30.15595],[75.34337,30.15023],[75.34467,30.14881],[75.34366,30.14622],[75.35332,30.14209],[75.34472,30.13122],[75.34034,30.13258],[75.32864,30.12317],[75.3232,30.12284],[75.32112,30.11849],[75.31585,30.11625],[75.31375,30.11224],[75.30974,30.11398],[75.30004,30.10965],[75.29699,30.11178],[75.29494,30.10767],[75.29081,30.1049],[75.29981,30.09812],[75.30007,30.0935],[75.30403,30.08886],[75.30642,30.07735],[75.31716,30.07568],[75.32143,30.07287],[75.32216,30.07055],[75.3259,30.06977],[75.32436,30.06446],[75.32018,30.06134],[75.31727,30.06262],[75.31707,30.06536],[75.31269,30.06565],[75.31016,30.06792],[75.29357,30.0708],[75.29248,30.06695],[75.28619,30.06761],[75.27842,30.06363],[75.2751,30.05955],[75.27558,30.05736],[75.27026,30.04838],[75.26483,30.05004],[75.25173,30.03858],[75.24963,30.03836],[75.25074,30.03261],[75.25795,30.02609],[75.26022,30.01603],[75.27663,30.01415],[75.28153,30.01141],[75.28769,30.0174],[75.28899,30.02241],[75.29417,30.01968],[75.30115,30.02065],[75.29849,30.01938],[75.28806,30.00655],[75.28339,30.00331],[75.28143,30.00378],[75.27434,29.99594],[75.27178,29.98984],[75.27843,29.98548],[75.28109,29.97931],[75.27308,29.974],[75.25073,29.98288],[75.24681,29.96999],[75.23755,29.95976],[75.22092,29.96911],[75.21665,29.96764],[75.20798,29.97483],[75.20763,29.97941],[75.19505,29.9809],[75.18856,29.97369],[75.18276,29.97019],[75.18097,29.95289],[75.18332,29.95207],[75.17813,29.94587],[75.18347,29.94146],[75.18069,29.94154],[75.17165,29.92853],[75.18478,29.91606],[75.18813,29.88939],[75.2049,29.88827],[75.21747,29.88304],[75.21755,29.86192],[75.21291,29.85811],[75.20581,29.85972],[75.19315,29.85346],[75.19041,29.85056],[75.1906,29.84267],[75.19652,29.83776],[75.21068,29.8324],[75.21402,29.82398],[75.20968,29.81734],[75.20854,29.79267],[75.21448,29.79151],[75.21629,29.78771],[75.22631,29.78913],[75.22475,29.77989],[75.23662,29.757],[75.2402,29.75604],[75.24165,29.75353],[75.23818,29.73995],[75.22635,29.72887],[75.21749,29.73714],[75.21034,29.73881],[75.20064,29.72648],[75.19689,29.7157],[75.1978,29.70325],[75.20026,29.70106],[75.2078,29.70121],[75.2068,29.68751],[75.19882,29.68],[75.18815,29.68134],[75.18747,29.67631],[75.18569,29.67437],[75.18395,29.67334],[75.1796,29.67451],[75.17715,29.67063],[75.16825,29.67072],[75.16798,29.66702],[75.17466,29.6556],[75.18004,29.65286],[75.18763,29.65179],[75.18222,29.63596],[75.18307,29.6284],[75.19685,29.61932],[75.20677,29.6219],[75.21971,29.61542],[75.22149,29.61111],[75.2284,29.60543],[75.23378,29.60237],[75.23538,29.60307],[75.22744,29.58721],[75.22173,29.58028],[75.22682,29.57901],[75.23196,29.57479],[75.23443,29.57],[75.23382,29.56432],[75.23841,29.55886],[75.23911,29.55072],[75.23537,29.54207],[75.24449,29.54669],[75.27327,29.54999],[75.28038,29.55397],[75.28117,29.56146],[75.29831,29.55859],[75.30948,29.56083],[75.3113,29.58014],[75.31994,29.58741],[75.31658,29.59038],[75.31402,29.58925],[75.30564,29.59567],[75.30346,29.60258],[75.2897,29.60781],[75.29492,29.61571],[75.29574,29.62503],[75.3073,29.62477],[75.31117,29.62949],[75.31659,29.63062],[75.32349,29.64247],[75.32102,29.64726],[75.32226,29.65161],[75.33187,29.66318],[75.33377,29.67347],[75.34106,29.67525],[75.34866,29.66658],[75.3581,29.66075],[75.36017,29.6626],[75.35984,29.66813],[75.35426,29.67489],[75.35369,29.67959],[75.34892,29.68628],[75.34573,29.696],[75.35145,29.69606],[75.35861,29.69975],[75.35792,29.70439],[75.35908,29.7055],[75.36465,29.70392],[75.37082,29.70446],[75.36988,29.71086],[75.373,29.71326],[75.37636,29.71408],[75.37865,29.71287],[75.38023,29.71421],[75.38402,29.7122],[75.39227,29.71329],[75.38925,29.71613],[75.39114,29.71698],[75.39075,29.71903],[75.39347,29.72198],[75.38816,29.72798],[75.38819,29.72988],[75.39136,29.73279],[75.39548,29.73356],[75.39645,29.73946],[75.40133,29.7402],[75.40478,29.73899],[75.40632,29.76125],[75.41396,29.76999],[75.41938,29.77021],[75.42142,29.77508],[75.42172,29.77301],[75.42748,29.77085],[75.43837,29.78003],[75.44757,29.7838],[75.45121,29.78144],[75.45398,29.782],[75.45586,29.78428],[75.45605,29.79047],[75.45818,29.79475],[75.45288,29.80184],[75.45667,29.8066],[75.46162,29.80773],[75.4796,29.79278],[75.48555,29.79152],[75.49217,29.78577],[75.49729,29.78439],[75.5031,29.77771],[75.5186,29.77582],[75.52327,29.76915],[75.52196,29.75983],[75.52304,29.7584],[75.52492,29.76185],[75.52866,29.76316],[75.5327,29.77062],[75.53796,29.77333],[75.5407,29.77358],[75.54489,29.77079],[75.56212,29.77022],[75.56975,29.75679],[75.57214,29.74335],[75.5801,29.73909],[75.58899,29.74688],[75.60096,29.74946],[75.60527,29.75195],[75.60688,29.74893],[75.61676,29.74408],[75.62057,29.74674],[75.62745,29.74836],[75.63449,29.75528],[75.63518,29.77229],[75.63778,29.77389],[75.64026,29.7725],[75.64246,29.77509],[75.65011,29.77569],[75.65598,29.77376],[75.66098,29.77683],[75.66408,29.77521],[75.66808,29.7774],[75.67717,29.77658],[75.68171,29.77227],[75.68267,29.76694],[75.69136,29.75592],[75.70315,29.75228],[75.70645,29.7532],[75.70925,29.75653],[75.70575,29.75968],[75.70467,29.76362],[75.70739,29.76928],[75.71031,29.7706],[75.71238,29.77406],[75.70981,29.77798],[75.71013,29.78041],[75.71665,29.78872],[75.71275,29.79264],[75.7146,29.79598],[75.71417,29.80185],[75.71798,29.803],[75.71807,29.80865],[75.72097,29.80992],[75.72068,29.81354],[75.7326,29.81252],[75.73782,29.81404],[75.74565,29.82468],[75.7505,29.82427],[75.75712,29.82792],[75.76482,29.82774],[75.77328,29.83485],[75.77201,29.84681],[75.77509,29.85012],[75.77563,29.85323],[75.76133,29.85999],[75.75816,29.85959],[75.75753,29.86143],[75.75814,29.86737],[75.76253,29.87256],[75.76016,29.87591],[75.75877,29.88748],[75.7613,29.89363],[75.76837,29.89809],[75.76556,29.90732],[75.76629,29.91731],[75.76425,29.91908],[75.75687,29.91547],[75.73805,29.92549],[75.73241,29.93484],[75.71838,29.93343],[75.70862,29.93455],[75.7078,29.92196],[75.7055,29.91863],[75.68379,29.90953],[75.6754,29.909],[75.67097,29.91108],[75.67278,29.91823],[75.66901,29.92052],[75.66807,29.92457],[75.66939,29.92604],[75.66385,29.93106],[75.65789,29.9328],[75.65465,29.93047],[75.64929,29.93811],[75.64108,29.93687],[75.64431,29.95141],[75.64768,29.95765],[75.64839,29.97339],[75.65229,29.98016],[75.64735,29.98352],[75.66409,29.99898],[75.67285,29.99995],[75.68246,30.00805],[75.68496,30.00926],[75.68819,30.00836],[75.69003,30.01406],[75.68647,30.01629],[75.68767,30.0236],[75.68229,30.02572],[75.68132,30.02458],[75.67399,30.03172],[75.67997,30.03783],[75.67416,30.04013],[75.67229,30.04013],[75.67063,30.03465],[75.65705,30.03582],[75.64902,30.02343],[75.64162,30.02488],[75.63839,30.02922],[75.64242,30.04141],[75.6362,30.0446],[75.63533,30.04739],[75.64034,30.06552],[75.63275,30.06994],[75.6368,30.07338],[75.62234,30.08473],[75.62429,30.08778],[75.63457,30.09327],[75.6416,30.10156],[75.64704,30.10303],[75.65476,30.11503],[75.64909,30.11487],[75.64718,30.11246],[75.64061,30.11574],[75.6346,30.11583],[75.63418,30.1205],[75.62832,30.12476],[75.63028,30.12699],[75.62472,30.13119],[75.62404,30.1343],[75.62769,30.13551],[75.62558,30.13796],[75.6271,30.14008],[75.62544,30.14267],[75.61498,30.14047],[75.60534,30.13593],[75.59387,30.14067],[75.59162,30.13918],[75.58205,30.14386],[75.57129,30.14409],[75.56445,30.14792],[75.55787,30.14652],[75.55629,30.14333],[75.54883,30.13762],[75.53818,30.14223],[75.53408,30.14661],[75.52968,30.14174],[75.52401,30.13969],[75.5176,30.14337],[75.50723,30.14338],[75.49154,30.15494],[75.49212,30.15793],[75.48936,30.16043],[75.49186,30.16133],[75.4918,30.16351],[75.48888,30.16539],[75.48921,30.17038],[75.48725,30.17124],[75.48725,30.17448],[75.48181,30.17472],[75.48256,30.17897],[75.46347,30.19412],[75.45856,30.1949],[75.45093,30.19123],[75.4394,30.19049],[75.4387,30.19152],[75.42714,30.18704],[75.42117,30.18638],[75.41823,30.1876],[75.41626,30.1863],[75.40616,30.1934],[75.40026,30.19472],[75.3956,30.20034],[75.39343,30.20039],[75.39266,30.20201],[75.39452,30.20213],[75.39356,30.20433],[75.39704,30.20677],[75.39349,30.20662],[75.39184,30.2098]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"370","area_level":"District","area_name":"Rayagada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.45162,19.97359],[83.44623,19.97328],[83.44371,19.95701],[83.44378,19.95382],[83.4458,19.95147],[83.44143,19.94686],[83.44207,19.93358],[83.43767,19.93037],[83.43594,19.93237],[83.4325,19.93255],[83.42315,19.92847],[83.4185,19.93438],[83.40404,19.92069],[83.40804,19.91373],[83.40854,19.90971],[83.41055,19.91107],[83.41019,19.9089],[83.41247,19.90831],[83.411,19.90699],[83.41317,19.90671],[83.40949,19.90062],[83.41239,19.90052],[83.41241,19.89758],[83.41829,19.89202],[83.42017,19.89202],[83.42007,19.88812],[83.42365,19.88456],[83.42278,19.8833],[83.42536,19.88217],[83.42443,19.87577],[83.43049,19.87097],[83.42385,19.85844],[83.42195,19.84955],[83.42364,19.84504],[83.42872,19.84398],[83.43449,19.83983],[83.439,19.83325],[83.43806,19.83019],[83.4336,19.82873],[83.43146,19.82601],[83.43347,19.8161],[83.43761,19.81334],[83.43678,19.80174],[83.43842,19.80256],[83.44651,19.7991],[83.447,19.7965],[83.45265,19.79555],[83.45482,19.79724],[83.45949,19.79663],[83.45888,19.79287],[83.45586,19.7933],[83.45652,19.78983],[83.45183,19.78808],[83.45302,19.78674],[83.45056,19.78458],[83.45095,19.78258],[83.45356,19.78308],[83.4544,19.78077],[83.45044,19.77975],[83.45445,19.77361],[83.45393,19.73708],[83.45215,19.73404],[83.44465,19.73253],[83.44292,19.72615],[83.44639,19.71962],[83.43226,19.71221],[83.42796,19.69633],[83.42201,19.69449],[83.41573,19.68481],[83.40243,19.6828],[83.39481,19.67739],[83.39351,19.6736],[83.38381,19.66791],[83.37801,19.65329],[83.37827,19.63996],[83.3733,19.63373],[83.3717,19.62133],[83.36933,19.61983],[83.37251,19.6154],[83.37506,19.6069],[83.37461,19.60011],[83.37294,19.59743],[83.3662,19.59757],[83.36473,19.59874],[83.36393,19.60472],[83.35796,19.6071],[83.3349,19.59657],[83.3193,19.59236],[83.3062,19.59256],[83.30331,19.59081],[83.30142,19.59233],[83.3002,19.59091],[83.28775,19.5971],[83.28616,19.59536],[83.2878,19.58883],[83.28553,19.58958],[83.28474,19.59234],[83.27962,19.59547],[83.27805,19.59838],[83.27597,19.59806],[83.27449,19.60038],[83.26966,19.60222],[83.26634,19.60112],[83.26575,19.59042],[83.26927,19.58694],[83.26714,19.58287],[83.26935,19.57741],[83.26648,19.5749],[83.25831,19.57701],[83.25299,19.56998],[83.25552,19.56506],[83.26347,19.56244],[83.26589,19.55889],[83.2625,19.55437],[83.26378,19.54786],[83.25599,19.54729],[83.24831,19.53946],[83.25059,19.53539],[83.25652,19.53235],[83.25735,19.52817],[83.25343,19.52078],[83.24536,19.51364],[83.24554,19.50463],[83.23573,19.50718],[83.23314,19.50536],[83.22832,19.50594],[83.2246,19.49816],[83.21938,19.49582],[83.22022,19.49007],[83.21387,19.48579],[83.21442,19.4832],[83.2119,19.4782],[83.20492,19.4742],[83.20829,19.46918],[83.20574,19.46971],[83.20677,19.46633],[83.20477,19.46405],[83.20418,19.45966],[83.20106,19.4601],[83.2043,19.45406],[83.20429,19.45103],[83.20746,19.44807],[83.20929,19.44973],[83.2115,19.44356],[83.21457,19.44226],[83.21806,19.44462],[83.21919,19.44312],[83.21687,19.43942],[83.21613,19.43049],[83.21147,19.43502],[83.21334,19.43618],[83.2131,19.43826],[83.20968,19.43843],[83.20816,19.4405],[83.20156,19.43945],[83.20109,19.44209],[83.20456,19.442],[83.20427,19.44586],[83.19824,19.45855],[83.19499,19.45768],[83.19208,19.46512],[83.18647,19.46408],[83.18416,19.4596],[83.1847,19.4516],[83.18241,19.4522],[83.18534,19.44725],[83.18499,19.44098],[83.18309,19.43709],[83.18506,19.4351],[83.18403,19.43054],[83.18519,19.42368],[83.18237,19.42178],[83.1805,19.4242],[83.17654,19.42463],[83.17339,19.42722],[83.1693,19.42714],[83.1651,19.43559],[83.16308,19.44485],[83.15268,19.4576],[83.15332,19.46384],[83.14845,19.4669],[83.14976,19.47345],[83.15939,19.48142],[83.15329,19.49078],[83.1473,19.49495],[83.1354,19.5079],[83.12859,19.50635],[83.12481,19.49793],[83.12238,19.49784],[83.10719,19.50869],[83.11422,19.51457],[83.10907,19.52023],[83.10885,19.52517],[83.1026,19.52438],[83.10212,19.52794],[83.10796,19.53831],[83.10189,19.5426],[83.10073,19.53746],[83.09366,19.53992],[83.08804,19.53721],[83.08635,19.54531],[83.07726,19.5542],[83.07816,19.55927],[83.0704,19.56173],[83.06059,19.55893],[83.05789,19.55994],[83.05394,19.55686],[83.04958,19.55775],[83.04348,19.55604],[83.04062,19.55133],[83.03605,19.55001],[83.03663,19.5455],[83.03484,19.53838],[83.02832,19.53403],[83.02493,19.52525],[83.02835,19.515],[83.02513,19.50786],[83.0216,19.50761],[83.00616,19.49933],[82.99918,19.4978],[82.9971,19.48919],[82.99401,19.48454],[82.99703,19.46756],[82.99386,19.46393],[82.97831,19.4494],[82.97552,19.45139],[82.97191,19.44787],[82.9384,19.44669],[82.93808,19.45055],[82.93494,19.45172],[82.93034,19.44372],[82.92921,19.44586],[82.9214,19.43932],[82.92243,19.43347],[82.9286,19.42966],[82.93278,19.43146],[82.93348,19.42665],[82.93606,19.42518],[82.93486,19.41703],[82.93652,19.41471],[82.93587,19.40779],[82.93817,19.40334],[82.9499,19.39953],[82.9557,19.39247],[82.95485,19.38252],[82.94846,19.37538],[82.94848,19.37006],[82.94518,19.36376],[82.95218,19.35537],[82.95118,19.35171],[82.95365,19.34652],[82.94779,19.33532],[82.93841,19.32331],[82.9391,19.31582],[82.93637,19.31175],[82.9379,19.30684],[82.93298,19.30093],[82.92614,19.29698],[82.91983,19.29952],[82.91156,19.29592],[82.90427,19.28912],[82.90174,19.28334],[82.90163,19.27644],[82.90615,19.27031],[82.9053,19.26658],[82.90255,19.26402],[82.9131,19.2509],[82.91829,19.23856],[82.9082,19.23041],[82.90925,19.22783],[82.90777,19.22535],[82.89482,19.21723],[82.88837,19.21905],[82.88425,19.21809],[82.88644,19.21521],[82.8941,19.21164],[82.89204,19.20532],[82.88702,19.20066],[82.87883,19.19834],[82.87191,19.19913],[82.86992,19.19439],[82.87375,19.1921],[82.87764,19.18342],[82.88346,19.18442],[82.88401,19.18174],[82.89297,19.17881],[82.8949,19.17396],[82.89799,19.1744],[82.89706,19.16777],[82.90394,19.16011],[82.90134,19.15537],[82.90732,19.15774],[82.91446,19.15736],[82.91669,19.16096],[82.91997,19.16239],[82.93037,19.15881],[82.93862,19.16155],[82.9486,19.15479],[82.95505,19.15597],[82.95864,19.15934],[82.96442,19.16056],[82.97296,19.16583],[82.97669,19.17247],[82.98074,19.1718],[82.98209,19.16891],[82.97939,19.16293],[82.98133,19.15761],[82.98133,19.15032],[82.98302,19.14794],[82.98055,19.13838],[82.9863,19.13654],[82.99099,19.13108],[82.99714,19.1278],[83.00511,19.12062],[83.00722,19.1171],[83.00734,19.11258],[83.0089,19.11223],[83.00657,19.10075],[83.00931,19.09565],[83.01891,19.09537],[83.02389,19.09244],[83.02861,19.0868],[83.0274,19.08249],[83.02915,19.07898],[83.01934,19.07384],[83.01903,19.06571],[83.02048,19.06569],[83.02184,19.06122],[83.03037,19.05739],[83.03169,19.05531],[83.04365,19.05461],[83.04814,19.05577],[83.05046,19.05277],[83.05455,19.0524],[83.06509,19.04415],[83.06882,19.04748],[83.06892,19.05254],[83.07201,19.05764],[83.07162,19.06146],[83.06609,19.06293],[83.06879,19.06824],[83.07311,19.07114],[83.07478,19.0806],[83.07382,19.08156],[83.08009,19.08691],[83.08585,19.0867],[83.08734,19.08802],[83.09215,19.09557],[83.09528,19.10447],[83.09842,19.10675],[83.09789,19.10907],[83.10076,19.11136],[83.10683,19.11381],[83.11005,19.10578],[83.11204,19.10545],[83.11582,19.09989],[83.11626,19.09347],[83.12037,19.08971],[83.12557,19.09334],[83.12952,19.09335],[83.13195,19.10883],[83.13088,19.12232],[83.13353,19.12436],[83.13324,19.13314],[83.13571,19.13643],[83.13802,19.13734],[83.14136,19.13517],[83.14776,19.13564],[83.14726,19.12968],[83.15006,19.12496],[83.16161,19.12185],[83.16272,19.12322],[83.16057,19.12511],[83.16197,19.12931],[83.16379,19.12886],[83.16368,19.13096],[83.16647,19.13402],[83.16619,19.13834],[83.17528,19.14521],[83.17751,19.14353],[83.18136,19.14659],[83.18881,19.14834],[83.18915,19.1506],[83.19289,19.15003],[83.19654,19.14702],[83.20126,19.1483],[83.20483,19.15424],[83.19745,19.16036],[83.19825,19.16897],[83.20769,19.16685],[83.21981,19.16119],[83.22364,19.16512],[83.22666,19.17329],[83.23541,19.17109],[83.24813,19.16245],[83.25713,19.16394],[83.25557,19.1532],[83.2501,19.15295],[83.24832,19.14843],[83.24108,19.14518],[83.24012,19.13314],[83.24363,19.13078],[83.24471,19.12791],[83.2388,19.12787],[83.23208,19.12395],[83.22509,19.12288],[83.22149,19.12884],[83.22206,19.13645],[83.2208,19.13829],[83.21465,19.13422],[83.20742,19.13158],[83.20537,19.1325],[83.20401,19.12744],[83.20487,19.12339],[83.19902,19.11974],[83.19537,19.11928],[83.1952,19.11503],[83.19027,19.11302],[83.18798,19.10603],[83.17907,19.098],[83.18153,19.09531],[83.18952,19.09646],[83.18738,19.08479],[83.18519,19.08112],[83.19008,19.08011],[83.19531,19.07534],[83.19279,19.06695],[83.18661,19.05925],[83.19197,19.05517],[83.1931,19.05241],[83.19048,19.04493],[83.19036,19.03845],[83.18608,19.03097],[83.18449,19.0138],[83.18804,19.00368],[83.19446,19.00022],[83.19653,18.99135],[83.18583,18.96871],[83.185,18.96086],[83.20086,18.96034],[83.21064,18.97462],[83.21985,18.98363],[83.23224,18.98562],[83.23427,18.98967],[83.23684,18.98958],[83.23793,18.99786],[83.23418,19.00837],[83.2363,19.01469],[83.23439,19.02647],[83.23745,19.02505],[83.24327,19.02724],[83.2607,19.03887],[83.26493,19.05094],[83.26854,19.05563],[83.26693,19.06376],[83.26221,19.06503],[83.26227,19.06945],[83.25941,19.06755],[83.26858,19.08469],[83.26906,19.09066],[83.27114,19.09356],[83.27946,19.12337],[83.28321,19.12632],[83.28478,19.12554],[83.2853,19.11577],[83.29145,19.11507],[83.2984,19.12295],[83.3019,19.11427],[83.30895,19.11818],[83.31228,19.11507],[83.3199,19.11414],[83.32688,19.10025],[83.34076,19.10218],[83.33824,19.0961],[83.33981,19.09411],[83.33832,19.08334],[83.34242,19.08108],[83.34478,19.0733],[83.34035,19.06087],[83.34538,19.05237],[83.3588,19.05245],[83.36247,19.0477],[83.35906,19.03988],[83.35437,19.03777],[83.34704,19.02546],[83.34802,19.01692],[83.35805,19.01938],[83.36748,19.01648],[83.36605,19.01287],[83.36695,19.01172],[83.36529,19.01018],[83.36703,19.00935],[83.36662,19.0061],[83.37261,19.00226],[83.38459,19.00126],[83.39469,19.00596],[83.39672,19.0097],[83.39847,19.00847],[83.40062,19.00934],[83.40201,19.00628],[83.40422,19.00667],[83.4043,19.0046],[83.40955,19.00433],[83.41128,19.00026],[83.41439,19.00357],[83.41584,19.0005],[83.41706,19.00206],[83.41961,19.00026],[83.42,18.9981],[83.41532,18.98918],[83.41964,18.98893],[83.42636,18.98501],[83.4292,18.98042],[83.4351,18.97586],[83.43888,18.97639],[83.44033,18.97162],[83.44589,18.96591],[83.44354,18.96095],[83.44586,18.95776],[83.46183,18.95478],[83.46474,18.96271],[83.46783,18.96455],[83.46981,18.96932],[83.46856,18.98037],[83.46418,18.9801],[83.46784,18.99108],[83.466,18.99355],[83.45527,18.99126],[83.45531,18.99683],[83.45066,19.00453],[83.44994,19.00966],[83.45157,19.00978],[83.45225,19.01259],[83.46152,19.01234],[83.47159,19.00723],[83.47968,19.00847],[83.48142,19.00979],[83.48251,19.01509],[83.47958,19.01771],[83.4794,19.02212],[83.48335,19.03355],[83.47072,19.04291],[83.47093,19.04864],[83.46783,19.05514],[83.46952,19.05765],[83.4692,19.0611],[83.46782,19.06316],[83.46229,19.06377],[83.4652,19.07101],[83.46495,19.07452],[83.4631,19.07597],[83.46627,19.0799],[83.47036,19.08014],[83.47299,19.07705],[83.47837,19.07927],[83.47646,19.08567],[83.47049,19.08712],[83.46971,19.08572],[83.46726,19.08769],[83.46798,19.09312],[83.47366,19.09527],[83.4834,19.09226],[83.48633,19.08755],[83.48183,19.08513],[83.48265,19.08134],[83.48084,19.0785],[83.48884,19.07335],[83.5006,19.06063],[83.50178,19.06589],[83.50555,19.06605],[83.51171,19.07032],[83.51099,19.06627],[83.51304,19.06068],[83.5168,19.05708],[83.51313,19.04838],[83.5193,19.03907],[83.51482,19.02846],[83.50847,19.03554],[83.49647,19.03547],[83.49747,19.03454],[83.49546,19.03185],[83.50094,19.02066],[83.50378,19.01873],[83.51624,19.01661],[83.52249,19.01207],[83.52474,19.01452],[83.52591,19.01284],[83.53457,19.01309],[83.53671,19.0095],[83.54149,19.02961],[83.53984,19.03347],[83.54173,19.04148],[83.54688,19.04372],[83.55168,19.05455],[83.55757,19.0562],[83.55541,19.05806],[83.55561,19.06336],[83.54853,19.07787],[83.54905,19.08052],[83.55444,19.08653],[83.56017,19.08707],[83.567,19.07174],[83.56338,19.07052],[83.56035,19.0645],[83.56342,19.05785],[83.57497,19.0614],[83.57977,19.06054],[83.58446,19.05757],[83.58405,19.06508],[83.58702,19.06936],[83.58471,19.08371],[83.58559,19.08656],[83.59295,19.09267],[83.60119,19.09491],[83.60307,19.09259],[83.61061,19.09606],[83.60341,19.11213],[83.59781,19.11881],[83.59913,19.13016],[83.60165,19.13553],[83.6047,19.13599],[83.60797,19.13969],[83.61596,19.13705],[83.61876,19.14132],[83.6208,19.14168],[83.62229,19.14782],[83.62747,19.15065],[83.62779,19.15665],[83.62603,19.16267],[83.63392,19.15946],[83.63768,19.15316],[83.63441,19.15183],[83.63494,19.14966],[83.6317,19.14084],[83.63701,19.13148],[83.64212,19.13192],[83.64675,19.12981],[83.65271,19.13156],[83.65496,19.12962],[83.65436,19.12213],[83.64964,19.12326],[83.64704,19.1184],[83.65045,19.11739],[83.65105,19.10935],[83.65557,19.1088],[83.65758,19.10255],[83.66282,19.09895],[83.66389,19.09219],[83.66038,19.08442],[83.66102,19.08114],[83.66436,19.07571],[83.67463,19.07208],[83.67659,19.0652],[83.68525,19.05853],[83.6912,19.0473],[83.69302,19.03861],[83.69853,19.03188],[83.70014,19.02545],[83.70462,19.02341],[83.70969,19.02464],[83.71616,19.02368],[83.72447,19.02054],[83.73002,19.02196],[83.72389,19.01025],[83.72121,19.00931],[83.71807,19.01043],[83.71031,19.00718],[83.70883,19.00559],[83.70948,19.00264],[83.71362,18.99739],[83.7142,18.99299],[83.71817,18.99342],[83.73301,18.98771],[83.73246,18.97991],[83.7344,18.96918],[83.73879,18.96036],[83.74054,18.95007],[83.74681,18.94358],[83.74766,18.93708],[83.75386,18.92513],[83.76317,18.92728],[83.76939,18.9143],[83.78021,18.91178],[83.78789,18.91587],[83.78505,18.92379],[83.78446,18.9336],[83.77885,18.93666],[83.77622,18.94525],[83.77258,18.94432],[83.76965,18.95476],[83.7639,18.95293],[83.76163,18.95046],[83.75896,18.95061],[83.75407,18.96717],[83.75531,18.97132],[83.74807,18.97404],[83.74488,18.98652],[83.74753,18.99591],[83.75155,18.99868],[83.755,18.9986],[83.76065,19.0026],[83.76281,18.99849],[83.76486,19.0054],[83.7717,19.00808],[83.78198,19.00839],[83.78128,19.01394],[83.77806,19.01547],[83.77791,19.01753],[83.78052,19.01862],[83.79469,19.01798],[83.79722,19.01953],[83.7995,19.02868],[83.80699,19.03341],[83.81091,19.03317],[83.81692,19.03162],[83.81909,19.02036],[83.82348,19.01698],[83.8322,19.00465],[83.8334,19.00383],[83.83663,19.00795],[83.84016,19.00797],[83.84445,19.01073],[83.85575,19.0],[83.85744,18.99106],[83.86445,18.99053],[83.86516,18.98934],[83.8669,18.99006],[83.86767,18.99332],[83.87559,18.99527],[83.88887,18.99353],[83.89103,18.99461],[83.89483,18.99698],[83.89335,19.0009],[83.8952,19.00237],[83.896,19.00706],[83.90785,19.01993],[83.91714,19.01319],[83.92842,19.01507],[83.93063,19.0138],[83.93019,19.01055],[83.9378,19.00927],[83.95028,18.99757],[83.96018,18.99918],[83.96817,19.00633],[83.97244,19.0055],[83.97557,19.00752],[83.98158,19.01295],[83.98556,19.02225],[83.97642,19.03333],[83.96316,19.04307],[83.96469,19.0514],[83.96112,19.05302],[83.96127,19.05656],[83.96466,19.06298],[83.97764,19.07224],[83.99759,19.06824],[84.00343,19.06987],[84.00906,19.05731],[84.01898,19.0567],[84.02427,19.05979],[84.0318,19.05857],[84.02893,19.07567],[84.02177,19.0751],[84.0181,19.07973],[84.01952,19.08923],[84.01352,19.09986],[84.01602,19.10242],[84.01449,19.10628],[84.0156,19.11814],[84.02411,19.12554],[84.03053,19.12764],[84.03369,19.13223],[84.02653,19.14251],[84.01698,19.14154],[84.01017,19.14306],[84.00657,19.14772],[84.00278,19.1466],[83.99809,19.15019],[83.99423,19.14978],[83.99228,19.15441],[83.9888,19.15701],[83.9885,19.16163],[83.98397,19.16468],[83.98783,19.16834],[83.99199,19.16879],[83.98799,19.18662],[83.99586,19.19038],[83.99746,19.19344],[83.98464,19.20362],[83.97975,19.21301],[83.98452,19.21459],[83.98854,19.2211],[83.98821,19.22868],[83.99451,19.23603],[83.9922,19.23734],[83.99239,19.24279],[83.9954,19.2441],[83.99861,19.25753],[84.00277,19.25863],[84.00135,19.26464],[84.00313,19.26974],[84.01125,19.27145],[84.01267,19.28534],[84.02012,19.29084],[84.01977,19.29623],[84.01432,19.30654],[84.01624,19.30859],[84.01618,19.31765],[84.02532,19.32508],[84.02683,19.32849],[84.0264,19.33388],[84.02399,19.33773],[84.02773,19.34154],[84.02882,19.34745],[84.02196,19.36216],[84.01891,19.36535],[84.01544,19.37725],[83.99716,19.38883],[83.98977,19.389],[83.987,19.40244],[83.98015,19.39995],[83.97972,19.39064],[83.97752,19.38356],[83.96633,19.38754],[83.9653,19.39311],[83.96262,19.39595],[83.95468,19.39778],[83.94724,19.39682],[83.94711,19.40588],[83.94168,19.42008],[83.95485,19.43813],[83.9547,19.44128],[83.96336,19.44843],[83.96189,19.45222],[83.96537,19.45941],[83.96921,19.46113],[83.97013,19.46465],[83.9681,19.46925],[83.97353,19.48232],[83.9767,19.48613],[83.97496,19.49006],[83.96923,19.49234],[83.95848,19.50236],[83.95911,19.50785],[83.96575,19.512],[83.97124,19.52567],[83.97907,19.53149],[83.97549,19.5322],[83.97044,19.54222],[83.96617,19.54256],[83.955,19.54823],[83.94603,19.54676],[83.9425,19.54932],[83.93838,19.55571],[83.93956,19.56298],[83.932,19.57188],[83.93445,19.59435],[83.93136,19.59569],[83.92493,19.62641],[83.92633,19.631],[83.94007,19.63525],[83.934,19.65825],[83.92381,19.66358],[83.93598,19.67155],[83.93213,19.67303],[83.93032,19.67872],[83.92709,19.67923],[83.92496,19.6761],[83.92159,19.67567],[83.91659,19.68095],[83.90551,19.67167],[83.90215,19.67339],[83.89629,19.67198],[83.88716,19.67309],[83.87286,19.67169],[83.85384,19.68569],[83.85018,19.69212],[83.84988,19.70075],[83.84259,19.70247],[83.84502,19.70938],[83.83662,19.71151],[83.83241,19.7069],[83.82888,19.71095],[83.82181,19.71119],[83.81759,19.71448],[83.81627,19.71974],[83.81403,19.72102],[83.81215,19.71968],[83.80326,19.7192],[83.79749,19.71313],[83.79354,19.71282],[83.79143,19.71096],[83.78796,19.71281],[83.77983,19.71103],[83.77813,19.71318],[83.775,19.71281],[83.77338,19.71564],[83.76638,19.7162],[83.76449,19.71242],[83.76449,19.7054],[83.76717,19.69905],[83.76499,19.69748],[83.76522,19.6937],[83.76318,19.69148],[83.76478,19.68922],[83.762,19.68341],[83.76296,19.67682],[83.75814,19.67501],[83.75593,19.6715],[83.74945,19.66892],[83.74903,19.66527],[83.74665,19.66421],[83.74436,19.65983],[83.74184,19.65909],[83.74221,19.65536],[83.72879,19.65486],[83.72819,19.66053],[83.72583,19.66205],[83.72245,19.67187],[83.71862,19.67436],[83.71685,19.67304],[83.71356,19.67447],[83.69501,19.69108],[83.69171,19.69069],[83.67043,19.67821],[83.66781,19.6754],[83.66623,19.6699],[83.66301,19.66799],[83.66259,19.66494],[83.65432,19.66391],[83.64893,19.65752],[83.6477,19.65801],[83.63453,19.6714],[83.63491,19.67856],[83.64363,19.69677],[83.64147,19.70559],[83.63161,19.71714],[83.6321,19.73087],[83.62551,19.74484],[83.61708,19.74589],[83.60778,19.75056],[83.608,19.75975],[83.61869,19.7687],[83.62105,19.77541],[83.62152,19.77976],[83.61795,19.78724],[83.61537,19.79995],[83.61661,19.8027],[83.61984,19.80463],[83.61902,19.81454],[83.61539,19.81696],[83.60689,19.8161],[83.60494,19.82606],[83.59981,19.83446],[83.59797,19.83306],[83.59751,19.82834],[83.58528,19.82324],[83.58587,19.82516],[83.56849,19.83128],[83.55802,19.83788],[83.54374,19.84279],[83.53963,19.84805],[83.53964,19.85211],[83.53466,19.85804],[83.53355,19.85452],[83.53157,19.85364],[83.52748,19.85611],[83.5288,19.8652],[83.52672,19.87771],[83.53049,19.88032],[83.53807,19.89694],[83.55356,19.91031],[83.5562,19.91929],[83.55929,19.92414],[83.55986,19.92991],[83.55188,19.93082],[83.54991,19.93609],[83.53694,19.94303],[83.53373,19.94757],[83.5143,19.9551],[83.51165,19.95488],[83.5056,19.95865],[83.49954,19.95809],[83.49581,19.96032],[83.48093,19.96318],[83.47946,19.96566],[83.47362,19.96331],[83.47299,19.96659],[83.46895,19.96651],[83.4648,19.96944],[83.45761,19.96952],[83.45642,19.97234],[83.45162,19.97359]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"371","area_level":"District","area_name":"Sambalpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.48989,22.14385],[84.48645,22.15777],[84.48123,22.16636],[84.47636,22.19],[84.47457,22.18982],[84.45586,22.18656],[84.44611,22.1815],[84.43705,22.18],[84.41795,22.17258],[84.4058,22.1633],[84.39838,22.16011],[84.39456,22.15498],[84.3828,22.14674],[84.37693,22.14924],[84.37018,22.14864],[84.36373,22.15012],[84.35828,22.14442],[84.3435,22.13567],[84.34418,22.13351],[84.34022,22.13039],[84.31556,22.12761],[84.31026,22.12296],[84.30518,22.12258],[84.2981,22.11805],[84.27809,22.12347],[84.27631,22.1168],[84.27788,22.11025],[84.2746,22.10931],[84.27091,22.1104],[84.26741,22.1078],[84.26673,22.10204],[84.27126,22.09074],[84.26576,22.07623],[84.26687,22.06493],[84.27025,22.06151],[84.26936,22.0505],[84.26629,22.04438],[84.26916,22.0258],[84.26783,22.01572],[84.28504,22.01471],[84.29181,22.02336],[84.29365,22.03268],[84.29662,22.03562],[84.31757,22.03949],[84.3261,22.03898],[84.33688,22.03352],[84.34326,22.03736],[84.34776,22.03624],[84.3566,22.03857],[84.37132,22.02859],[84.39087,22.02368],[84.38136,22.01597],[84.37954,22.00098],[84.37678,21.99789],[84.37644,21.9907],[84.37418,21.98888],[84.37893,21.98287],[84.37873,21.97877],[84.37639,21.97738],[84.37123,21.9778],[84.3657,21.98265],[84.36232,21.98355],[84.36776,21.97779],[84.36475,21.97463],[84.36797,21.97215],[84.37207,21.95626],[84.37037,21.95239],[84.36615,21.95137],[84.36546,21.9332],[84.36284,21.9257],[84.36124,21.92337],[84.35782,21.92333],[84.35206,21.91749],[84.34767,21.89943],[84.33904,21.88116],[84.32746,21.8635],[84.32918,21.86021],[84.32622,21.85148],[84.3293,21.84173],[84.32784,21.83308],[84.32362,21.82875],[84.31433,21.82337],[84.31095,21.80818],[84.29825,21.79857],[84.29635,21.79158],[84.28931,21.78436],[84.2866,21.77148],[84.2801,21.76884],[84.27387,21.76318],[84.26831,21.76359],[84.26385,21.76597],[84.2607,21.77428],[84.26024,21.78152],[84.25616,21.78412],[84.25625,21.7871],[84.25345,21.7896],[84.25186,21.79692],[84.23963,21.80307],[84.23649,21.80648],[84.22709,21.79983],[84.21442,21.79951],[84.21259,21.79408],[84.19372,21.79548],[84.1894,21.79095],[84.18224,21.78933],[84.17788,21.79085],[84.1757,21.78864],[84.17402,21.79001],[84.16299,21.78775],[84.16026,21.7857],[84.15875,21.77786],[84.15635,21.77451],[84.15184,21.77689],[84.14541,21.7757],[84.13105,21.78311],[84.12269,21.78323],[84.1149,21.78821],[84.0981,21.78072],[84.08772,21.77148],[84.07557,21.77068],[84.06448,21.77392],[84.0557,21.77409],[84.04617,21.76264],[84.04123,21.76093],[84.04007,21.75799],[84.03615,21.75605],[84.03271,21.75745],[84.03461,21.76284],[84.03267,21.76591],[84.02511,21.77115],[84.0242,21.78264],[84.01971,21.78575],[84.00525,21.78779],[84.00486,21.782],[84.0001,21.77366],[83.99382,21.77721],[83.97958,21.78139],[83.9797,21.77077],[83.98298,21.75712],[83.97821,21.75684],[83.97323,21.76225],[83.96894,21.76141],[83.96893,21.75541],[83.96555,21.74935],[83.95961,21.74365],[83.95462,21.74306],[83.95273,21.73834],[83.95396,21.7337],[83.94182,21.72967],[83.94399,21.7219],[83.94754,21.71739],[83.96724,21.7084],[83.97272,21.70405],[83.96649,21.68908],[83.96767,21.67318],[83.97228,21.65785],[83.97024,21.63864],[83.97451,21.59822],[83.97321,21.5891],[83.96984,21.58212],[83.9651,21.57756],[83.95904,21.57563],[83.9522,21.57685],[83.94074,21.58184],[83.91568,21.58058],[83.9055,21.57696],[83.88524,21.57608],[83.87084,21.57813],[83.8523,21.58605],[83.84112,21.58656],[83.82708,21.59361],[83.81072,21.59478],[83.8074,21.5917],[83.79828,21.56434],[83.81514,21.53636],[83.84589,21.52661],[83.84686,21.52139],[83.85631,21.50678],[83.86267,21.49233],[83.8619,21.48867],[83.86919,21.47827],[83.87296,21.46175],[83.87236,21.45737],[83.88507,21.43863],[83.8817,21.4328],[83.87891,21.43128],[83.87894,21.42989],[83.88111,21.42983],[83.88094,21.42713],[83.8788,21.42566],[83.87403,21.42371],[83.87021,21.42428],[83.86462,21.42149],[83.8587,21.42365],[83.84816,21.42056],[83.84577,21.41413],[83.84975,21.40952],[83.85117,21.40315],[83.85975,21.39926],[83.86833,21.39766],[83.87278,21.39473],[83.87503,21.39008],[83.87909,21.38809],[83.87784,21.38345],[83.87941,21.37745],[83.87766,21.37301],[83.88119,21.36293],[83.87846,21.35883],[83.88032,21.34996],[83.87493,21.33833],[83.87673,21.33366],[83.87546,21.3295],[83.87626,21.32486],[83.8697,21.31047],[83.873,21.30938],[83.87205,21.30488],[83.87529,21.29934],[83.87582,21.29365],[83.87805,21.29263],[83.88373,21.29372],[83.88615,21.29697],[83.89023,21.29485],[83.88814,21.28383],[83.88923,21.28026],[83.89748,21.26518],[83.9023,21.2605],[83.9062,21.25915],[83.91215,21.2444],[83.91241,21.23179],[83.90548,21.2163],[83.89567,21.18638],[83.89063,21.17648],[83.89741,21.17789],[83.90669,21.17497],[83.90819,21.1724],[83.91346,21.1717],[83.91822,21.16819],[83.91909,21.16477],[83.92248,21.16212],[83.94936,21.15114],[83.94811,21.14505],[83.9544,21.14546],[83.96111,21.14324],[83.96616,21.13917],[83.98101,21.13386],[83.98421,21.13136],[83.98299,21.12829],[83.98426,21.12356],[83.98278,21.12346],[83.98231,21.11716],[83.98813,21.11417],[83.99143,21.1103],[83.98994,21.10489],[83.99215,21.10028],[83.98894,21.09078],[83.99024,21.08541],[83.9873,21.07882],[83.99536,21.07583],[83.99498,21.07256],[83.99942,21.06587],[84.00796,21.06167],[84.00953,21.05818],[84.0162,21.05539],[84.01553,21.05312],[84.01743,21.05166],[84.02934,21.05296],[84.04309,21.04359],[84.04818,21.04744],[84.05224,21.04817],[84.07356,21.04894],[84.0745,21.0473],[84.08847,21.04654],[84.09348,21.04307],[84.11172,21.03774],[84.14242,21.03315],[84.14237,21.0281],[84.14079,21.02649],[84.14243,21.02072],[84.13961,21.01274],[84.14471,21.00606],[84.14507,21.00311],[84.14942,21.00222],[84.14806,20.99939],[84.15628,20.99532],[84.15557,20.98996],[84.15256,20.9865],[84.15643,20.97656],[84.15582,20.97464],[84.16318,20.97516],[84.16972,20.97143],[84.19048,20.97449],[84.19207,20.97643],[84.19203,20.97374],[84.19959,20.96609],[84.20918,20.96154],[84.21367,20.94796],[84.22469,20.93225],[84.23862,20.92273],[84.27893,20.92235],[84.28316,20.9247],[84.29151,20.92548],[84.29699,20.93016],[84.29721,20.9341],[84.3021,20.93623],[84.30879,20.93466],[84.30912,20.93162],[84.31053,20.93147],[84.31334,20.9345],[84.31273,20.93739],[84.31588,20.9382],[84.31693,20.94474],[84.32196,20.9445],[84.32821,20.95141],[84.33151,20.95199],[84.33337,20.94905],[84.34214,20.95544],[84.34529,20.953],[84.35204,20.95184],[84.35501,20.95849],[84.35874,20.95727],[84.35982,20.95895],[84.36516,20.95513],[84.36587,20.95137],[84.37315,20.9536],[84.37593,20.95598],[84.37479,20.95899],[84.37817,20.96073],[84.37953,20.96561],[84.38326,20.96591],[84.39206,20.97105],[84.39934,20.97186],[84.406,20.97697],[84.40823,20.99172],[84.41401,21.00364],[84.42686,21.0079],[84.43381,21.01479],[84.43301,21.01953],[84.42414,21.02335],[84.41872,21.02361],[84.40873,21.03036],[84.41225,21.03061],[84.41362,21.03315],[84.4298,21.04017],[84.43494,21.0374],[84.4387,21.03293],[84.4412,21.03924],[84.44309,21.03816],[84.44969,21.04137],[84.45072,21.05071],[84.45362,21.05201],[84.45426,21.05781],[84.4599,21.06089],[84.46522,21.0666],[84.46673,21.07163],[84.47068,21.0731],[84.47325,21.07737],[84.48181,21.0809],[84.48497,21.08063],[84.4879,21.07814],[84.49623,21.07993],[84.50442,21.08863],[84.50919,21.08675],[84.51146,21.0887],[84.52368,21.08637],[84.53227,21.08718],[84.54447,21.07446],[84.54977,21.07257],[84.55082,21.06929],[84.55898,21.0694],[84.56846,21.06201],[84.57399,21.06317],[84.58347,21.06096],[84.58487,21.0647],[84.5883,21.06226],[84.592,21.06244],[84.59599,21.06526],[84.59418,21.06765],[84.59828,21.06663],[84.59864,21.06969],[84.60175,21.06832],[84.60273,21.07054],[84.60434,21.06795],[84.60879,21.07196],[84.61186,21.06992],[84.61299,21.07296],[84.61587,21.07315],[84.61855,21.07558],[84.61883,21.07866],[84.62365,21.07981],[84.62428,21.08246],[84.62904,21.08061],[84.63471,21.0837],[84.6368,21.08068],[84.63975,21.08367],[84.64115,21.08174],[84.64427,21.08333],[84.64678,21.08112],[84.6497,21.08112],[84.65969,21.07325],[84.6601,21.07099],[84.66415,21.07006],[84.66846,21.0638],[84.67221,21.06373],[84.67467,21.06064],[84.67949,21.06009],[84.68129,21.06755],[84.67996,21.06911],[84.68047,21.07227],[84.66889,21.07948],[84.66702,21.09289],[84.66933,21.11411],[84.67143,21.11963],[84.67716,21.12493],[84.68055,21.13809],[84.68034,21.14694],[84.69077,21.1528],[84.7082,21.15218],[84.72275,21.1483],[84.72568,21.16052],[84.73068,21.16481],[84.73177,21.16945],[84.73882,21.16903],[84.74332,21.17072],[84.73856,21.17633],[84.74601,21.17887],[84.74316,21.18345],[84.74102,21.18413],[84.74057,21.1888],[84.73802,21.19288],[84.73909,21.19522],[84.73081,21.19471],[84.7216,21.19936],[84.72395,21.2049],[84.71583,21.20936],[84.71712,21.21025],[84.71673,21.21279],[84.72024,21.21612],[84.71997,21.21872],[84.71758,21.21979],[84.72118,21.22803],[84.7277,21.2294],[84.73361,21.22772],[84.73356,21.23008],[84.73715,21.229],[84.73919,21.233],[84.74376,21.23441],[84.75409,21.22742],[84.75776,21.23358],[84.75838,21.24261],[84.76259,21.24301],[84.76463,21.24484],[84.76837,21.25379],[84.75158,21.25878],[84.75418,21.2624],[84.75391,21.26486],[84.76202,21.27429],[84.7591,21.27834],[84.75283,21.28012],[84.73995,21.28841],[84.7338,21.29493],[84.73244,21.30117],[84.72458,21.30814],[84.71793,21.31009],[84.70936,21.31947],[84.70581,21.32134],[84.69946,21.32067],[84.69562,21.32329],[84.68551,21.32218],[84.67815,21.31812],[84.66638,21.31694],[84.65822,21.31373],[84.66081,21.30757],[84.66528,21.30622],[84.66641,21.30383],[84.6609,21.30423],[84.65564,21.30228],[84.6525,21.30321],[84.64599,21.30039],[84.64276,21.29142],[84.63291,21.29011],[84.63007,21.28248],[84.62673,21.28041],[84.62876,21.27833],[84.62856,21.27602],[84.61712,21.27624],[84.61594,21.27509],[84.61254,21.2769],[84.6061,21.27252],[84.60309,21.26224],[84.59168,21.25786],[84.58763,21.25915],[84.57998,21.25845],[84.57651,21.2535],[84.5694,21.25278],[84.56409,21.25011],[84.56265,21.25604],[84.56008,21.25815],[84.5638,21.2589],[84.56916,21.26802],[84.56558,21.27263],[84.56848,21.27595],[84.56582,21.27576],[84.56505,21.27884],[84.56788,21.28074],[84.56534,21.28078],[84.56625,21.28676],[84.56447,21.28758],[84.567,21.29064],[84.56514,21.29237],[84.56783,21.29254],[84.56712,21.29491],[84.56891,21.29496],[84.5641,21.30156],[84.56559,21.30876],[84.56425,21.31012],[84.56285,21.3092],[84.5619,21.31765],[84.56568,21.32317],[84.5578,21.33442],[84.55538,21.33554],[84.55607,21.34079],[84.55229,21.34504],[84.54968,21.35655],[84.54414,21.3617],[84.54242,21.36607],[84.546,21.37358],[84.54178,21.37765],[84.53311,21.38356],[84.52945,21.3819],[84.51765,21.38182],[84.51241,21.37324],[84.50234,21.37661],[84.49859,21.37526],[84.50252,21.36976],[84.50104,21.36503],[84.49866,21.36478],[84.48578,21.37019],[84.48575,21.3722],[84.48954,21.37397],[84.49244,21.38172],[84.48905,21.39162],[84.48315,21.39034],[84.47907,21.39397],[84.47044,21.39542],[84.46436,21.39378],[84.4489,21.39385],[84.44579,21.39144],[84.43483,21.38987],[84.42423,21.3838],[84.41576,21.38377],[84.40158,21.38031],[84.40294,21.38477],[84.39898,21.38523],[84.39377,21.3946],[84.39592,21.39775],[84.39528,21.40256],[84.3985,21.40752],[84.39524,21.40988],[84.39521,21.41428],[84.39762,21.41926],[84.39215,21.42623],[84.3928,21.43564],[84.39457,21.43713],[84.40137,21.4378],[84.40904,21.44235],[84.4084,21.45102],[84.41466,21.45519],[84.41229,21.45661],[84.41195,21.4623],[84.40877,21.46732],[84.40792,21.47684],[84.41636,21.4838],[84.42162,21.48465],[84.42747,21.48882],[84.4442,21.49087],[84.44613,21.49482],[84.44643,21.50127],[84.44505,21.50594],[84.44039,21.51234],[84.44202,21.51818],[84.44603,21.51907],[84.45812,21.51591],[84.46017,21.5237],[84.4593,21.52831],[84.46719,21.52743],[84.47251,21.53616],[84.47107,21.53898],[84.4917,21.53142],[84.49129,21.53848],[84.4942,21.54377],[84.5,21.54326],[84.50348,21.54937],[84.49753,21.56758],[84.49411,21.57363],[84.49002,21.57539],[84.48832,21.57808],[84.49316,21.57902],[84.50949,21.57223],[84.51003,21.5816],[84.52515,21.57485],[84.53399,21.56833],[84.53768,21.57145],[84.53236,21.57739],[84.54246,21.58367],[84.56669,21.57729],[84.56949,21.58154],[84.5585,21.58787],[84.55657,21.59141],[84.54466,21.59509],[84.54234,21.60159],[84.53129,21.6065],[84.53405,21.6116],[84.52489,21.62148],[84.52445,21.62493],[84.52088,21.62699],[84.51616,21.62248],[84.51065,21.62144],[84.508,21.62433],[84.5006,21.62429],[84.49164,21.63509],[84.48474,21.64021],[84.48631,21.64388],[84.4851,21.64835],[84.49243,21.65366],[84.49428,21.65872],[84.49082,21.66418],[84.50088,21.68367],[84.50595,21.68753],[84.53148,21.67926],[84.54249,21.67966],[84.54429,21.68457],[84.55173,21.68595],[84.55578,21.68495],[84.55894,21.68906],[84.55815,21.69422],[84.55958,21.70096],[84.56668,21.70323],[84.58073,21.70244],[84.59116,21.69785],[84.61533,21.69878],[84.62329,21.69691],[84.62916,21.69839],[84.63657,21.71374],[84.63808,21.72314],[84.63747,21.73376],[84.63026,21.73714],[84.63086,21.73961],[84.6461,21.7433],[84.64951,21.74924],[84.64917,21.75703],[84.6539,21.76428],[84.65673,21.76405],[84.6389,21.76739],[84.62738,21.76144],[84.60981,21.76654],[84.60554,21.76254],[84.60422,21.76383],[84.60233,21.76231],[84.59652,21.76221],[84.59609,21.76025],[84.58812,21.75785],[84.58468,21.76072],[84.57604,21.76251],[84.56996,21.76791],[84.55367,21.76941],[84.55597,21.77281],[84.55964,21.77308],[84.56028,21.77535],[84.5647,21.77637],[84.56727,21.78651],[84.56334,21.79115],[84.54508,21.80036],[84.52587,21.81382],[84.52671,21.82069],[84.52284,21.82473],[84.52269,21.83076],[84.52633,21.8363],[84.52835,21.84738],[84.52776,21.85249],[84.52871,21.85421],[84.5346,21.85642],[84.53934,21.8621],[84.525,21.87233],[84.52469,21.87403],[84.52711,21.87436],[84.5299,21.87784],[84.52715,21.88302],[84.52659,21.8903],[84.52157,21.89196],[84.50706,21.90511],[84.49313,21.9055],[84.49086,21.9116],[84.49462,21.92069],[84.49644,21.91939],[84.50876,21.91932],[84.51259,21.92256],[84.52125,21.9237],[84.52511,21.92596],[84.52522,21.92983],[84.52033,21.935],[84.51892,21.94492],[84.51665,21.9484],[84.51892,21.95342],[84.51809,21.95753],[84.52131,21.95911],[84.52719,21.95841],[84.52612,21.96069],[84.5278,21.96817],[84.52656,21.973],[84.52336,21.97502],[84.52,21.97186],[84.51837,21.97358],[84.51485,21.97365],[84.51412,21.96634],[84.5096,21.96483],[84.50822,21.9609],[84.50522,21.9591],[84.50005,21.96116],[84.50184,21.96422],[84.5,21.97234],[84.50209,21.98424],[84.50727,21.99344],[84.50895,22.00069],[84.50665,22.01301],[84.50828,22.02019],[84.51096,22.0211],[84.51463,22.02837],[84.52416,22.03306],[84.52767,22.04577],[84.52695,22.04779],[84.5113,22.05467],[84.51019,22.05733],[84.50841,22.07013],[84.51207,22.07484],[84.51408,22.08506],[84.51018,22.08843],[84.49963,22.08914],[84.49492,22.09254],[84.49376,22.09885],[84.49921,22.10211],[84.50058,22.10882],[84.4982,22.11457],[84.49592,22.13788],[84.48989,22.14385]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"372","area_level":"District","area_name":"Subarnapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.89848,21.17712],[83.88444,21.17545],[83.87282,21.15915],[83.86112,21.13391],[83.85648,21.11594],[83.84627,21.09944],[83.83976,21.09366],[83.8342,21.0989],[83.82193,21.10203],[83.81248,21.10977],[83.79957,21.11379],[83.78561,21.13335],[83.78465,21.13753],[83.78665,21.14588],[83.78411,21.15162],[83.77898,21.15396],[83.76814,21.15497],[83.7619,21.14285],[83.75143,21.13895],[83.74644,21.13951],[83.73968,21.13572],[83.73725,21.1313],[83.72748,21.13144],[83.72628,21.12847],[83.72411,21.12691],[83.7225,21.12775],[83.72262,21.12406],[83.72025,21.12272],[83.71942,21.12365],[83.71267,21.1193],[83.71051,21.12165],[83.70382,21.12178],[83.69464,21.11779],[83.68528,21.11622],[83.6819,21.11805],[83.68209,21.12108],[83.68033,21.12354],[83.67585,21.12611],[83.66843,21.12562],[83.66171,21.12845],[83.6573,21.12801],[83.64826,21.13072],[83.6428,21.1306],[83.63717,21.12775],[83.63124,21.12906],[83.62359,21.12757],[83.61405,21.12893],[83.61263,21.12782],[83.60743,21.12965],[83.60434,21.12838],[83.60178,21.11815],[83.59484,21.1079],[83.58859,21.10376],[83.58389,21.1026],[83.57921,21.09727],[83.55721,21.08432],[83.54822,21.07687],[83.54382,21.07574],[83.53916,21.07204],[83.52955,21.07169],[83.52668,21.07033],[83.52371,21.06603],[83.51632,21.06562],[83.51255,21.06185],[83.50776,21.06135],[83.50428,21.06464],[83.50188,21.06487],[83.49187,21.0621],[83.49306,21.05291],[83.49707,21.0448],[83.49692,21.04247],[83.49392,21.0407],[83.4879,21.04155],[83.48112,21.05092],[83.47415,21.05268],[83.47287,21.05663],[83.46249,21.06182],[83.45755,21.05997],[83.45701,21.05423],[83.45552,21.05311],[83.45634,21.04819],[83.45159,21.04227],[83.44812,21.03298],[83.44882,21.02773],[83.44548,21.02267],[83.44632,21.01616],[83.45279,21.0129],[83.46463,20.99794],[83.46946,20.99504],[83.48221,20.99653],[83.49034,20.99533],[83.50165,20.9831],[83.50982,20.97986],[83.52323,20.98415],[83.52956,20.98466],[83.56811,20.97445],[83.57514,20.97464],[83.58873,20.97968],[83.61502,20.98388],[83.62533,20.98416],[83.63913,20.98126],[83.6393,20.97885],[83.63599,20.97802],[83.63145,20.9639],[83.62567,20.96051],[83.62394,20.95238],[83.61697,20.95005],[83.61513,20.93595],[83.61349,20.93202],[83.611,20.93227],[83.60908,20.93047],[83.61517,20.92708],[83.61588,20.92283],[83.61213,20.91335],[83.61504,20.91422],[83.61998,20.90966],[83.61962,20.90297],[83.59354,20.88806],[83.5927,20.88387],[83.58937,20.88093],[83.58294,20.87731],[83.58012,20.87391],[83.57651,20.87306],[83.57465,20.86855],[83.57378,20.85555],[83.56971,20.84543],[83.57367,20.84582],[83.58257,20.84316],[83.58946,20.83869],[83.59646,20.83792],[83.60434,20.83309],[83.61423,20.83302],[83.62105,20.82744],[83.62534,20.82713],[83.62089,20.82095],[83.62091,20.81586],[83.61106,20.81932],[83.59368,20.82082],[83.5971,20.80571],[83.59689,20.80426],[83.59282,20.80471],[83.59318,20.79952],[83.60741,20.79941],[83.6133,20.80306],[83.61643,20.80086],[83.6183,20.79701],[83.62492,20.79945],[83.62876,20.79684],[83.63454,20.79666],[83.63615,20.78234],[83.63488,20.78101],[83.63528,20.7711],[83.63879,20.77023],[83.64957,20.77475],[83.65457,20.77311],[83.65594,20.7704],[83.65678,20.76357],[83.65506,20.75713],[83.64975,20.75596],[83.65073,20.75201],[83.6532,20.74976],[83.65341,20.74582],[83.67724,20.74462],[83.67699,20.74054],[83.67246,20.73728],[83.67124,20.73164],[83.667,20.72507],[83.66576,20.71933],[83.66696,20.70928],[83.66459,20.70455],[83.6621,20.70515],[83.66153,20.70254],[83.65892,20.70282],[83.65592,20.69989],[83.65516,20.69553],[83.65223,20.6934],[83.65223,20.68832],[83.6504,20.68656],[83.63666,20.67987],[83.64151,20.67144],[83.63845,20.67031],[83.63612,20.66515],[83.62815,20.66112],[83.6268,20.64414],[83.62243,20.64078],[83.62145,20.63315],[83.60931,20.61834],[83.60663,20.61776],[83.60415,20.61093],[83.60074,20.6108],[83.60083,20.60738],[83.59486,20.60635],[83.59405,20.60098],[83.5999,20.59006],[83.59999,20.58247],[83.59599,20.57931],[83.60503,20.57039],[83.59713,20.56379],[83.59543,20.55306],[83.59446,20.53964],[83.59788,20.53054],[83.60072,20.53164],[83.60259,20.53044],[83.60128,20.52772],[83.61363,20.52836],[83.62438,20.53119],[83.63304,20.53541],[83.64525,20.53705],[83.65378,20.5415],[83.67274,20.55545],[83.68399,20.55884],[83.69514,20.57263],[83.70722,20.5821],[83.71591,20.59665],[83.73072,20.60968],[83.73237,20.61436],[83.7321,20.62277],[83.72672,20.6293],[83.7169,20.63468],[83.71564,20.64044],[83.73571,20.67306],[83.7411,20.68795],[83.74153,20.70017],[83.74312,20.70384],[83.74637,20.70718],[83.75405,20.71086],[83.75775,20.71723],[83.75953,20.7401],[83.76404,20.75736],[83.76066,20.77298],[83.76222,20.7804],[83.77565,20.79539],[83.78612,20.80257],[83.79538,20.80645],[83.8146,20.81102],[83.82956,20.8232],[83.83676,20.82555],[83.84702,20.82472],[83.8534,20.8205],[83.86466,20.81612],[83.87878,20.81554],[83.89608,20.81745],[83.93662,20.8423],[83.9601,20.83985],[83.99798,20.8421],[84.01252,20.84053],[84.0181,20.8378],[84.03329,20.82169],[84.04095,20.82086],[84.0644,20.83019],[84.10741,20.83818],[84.12257,20.84586],[84.14792,20.86474],[84.16384,20.87198],[84.1894,20.88824],[84.2034,20.89352],[84.21687,20.89586],[84.23497,20.89514],[84.24799,20.8911],[84.26631,20.88118],[84.26806,20.88889],[84.26178,20.89978],[84.27071,20.90816],[84.26827,20.91331],[84.27893,20.92235],[84.2381,20.92284],[84.22469,20.93225],[84.21367,20.94796],[84.20918,20.96154],[84.19959,20.96609],[84.19203,20.97374],[84.19207,20.97643],[84.19048,20.97449],[84.16972,20.97143],[84.16318,20.97516],[84.15582,20.97464],[84.15643,20.97656],[84.15256,20.9865],[84.15557,20.98996],[84.15628,20.99532],[84.14806,20.99939],[84.14942,21.00222],[84.14507,21.00311],[84.14471,21.00606],[84.13961,21.01274],[84.14243,21.02072],[84.14079,21.02649],[84.14237,21.0281],[84.14242,21.03315],[84.11172,21.03774],[84.09348,21.04307],[84.08847,21.04654],[84.0745,21.0473],[84.07356,21.04894],[84.05224,21.04817],[84.04818,21.04744],[84.04309,21.04359],[84.02934,21.05296],[84.01743,21.05166],[84.01553,21.05312],[84.0162,21.05539],[84.00953,21.05818],[84.00796,21.06167],[83.99942,21.06587],[83.99498,21.07256],[83.99536,21.07583],[83.9873,21.07882],[83.99024,21.08541],[83.98894,21.09078],[83.99215,21.10028],[83.98994,21.10489],[83.99143,21.1103],[83.98813,21.11417],[83.98231,21.11716],[83.98278,21.12346],[83.98426,21.12356],[83.98299,21.12829],[83.98421,21.13136],[83.98101,21.13386],[83.96616,21.13917],[83.96111,21.14324],[83.9544,21.14546],[83.94811,21.14505],[83.94936,21.15114],[83.92248,21.16212],[83.91909,21.16477],[83.91822,21.16819],[83.91346,21.1717],[83.90857,21.17226],[83.90669,21.17497],[83.89848,21.17712]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"373","area_level":"District","area_name":"Sundaragada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.01001,22.5264],[84.00507,22.52713],[84.00292,22.53033],[83.99761,22.53103],[83.99489,22.5281],[83.98673,22.52554],[83.98091,22.52155],[83.98099,22.51615],[83.97741,22.51587],[83.97465,22.51203],[83.98048,22.50757],[83.98007,22.50239],[83.99785,22.49762],[84.00287,22.49332],[84.01742,22.48925],[84.0266,22.47532],[84.04075,22.4731],[84.04725,22.46922],[84.04542,22.4626],[84.0464,22.45535],[84.04489,22.45286],[84.04725,22.43823],[84.04172,22.43499],[84.03879,22.4297],[84.03034,22.42664],[84.03027,22.42008],[84.02468,22.4155],[84.02347,22.40945],[84.02006,22.40856],[84.01339,22.39742],[84.01318,22.39427],[84.00638,22.3822],[84.01029,22.37158],[84.00578,22.37368],[83.99667,22.37199],[83.98253,22.36733],[83.97025,22.3588],[83.95499,22.36166],[83.94822,22.35632],[83.94329,22.35471],[83.93269,22.35396],[83.92328,22.35841],[83.90652,22.35129],[83.90252,22.34659],[83.90132,22.33936],[83.89033,22.33655],[83.87921,22.33538],[83.87207,22.33778],[83.86932,22.34125],[83.86426,22.34328],[83.86399,22.34163],[83.86041,22.34047],[83.86024,22.33875],[83.85431,22.33764],[83.85493,22.33453],[83.85288,22.32712],[83.85029,22.32523],[83.83524,22.32228],[83.83056,22.3234],[83.82815,22.31752],[83.82198,22.31153],[83.826,22.3055],[83.82285,22.30128],[83.82727,22.29387],[83.82636,22.29282],[83.81985,22.29129],[83.81906,22.28957],[83.81691,22.29088],[83.80926,22.28895],[83.80278,22.29015],[83.79485,22.28595],[83.79604,22.28247],[83.79223,22.27648],[83.77975,22.27383],[83.77665,22.26985],[83.77679,22.26627],[83.77472,22.26477],[83.77524,22.26166],[83.77673,22.2613],[83.77558,22.25734],[83.77289,22.25571],[83.76645,22.25563],[83.75971,22.25121],[83.75768,22.24714],[83.75775,22.24034],[83.74436,22.23963],[83.72949,22.24282],[83.72821,22.24134],[83.7212,22.24304],[83.71306,22.24272],[83.70395,22.24671],[83.69147,22.24412],[83.69105,22.24273],[83.66577,22.23273],[83.66447,22.22879],[83.65531,22.22004],[83.64951,22.22334],[83.62725,22.20378],[83.61333,22.1777],[83.60774,22.15375],[83.59369,22.14029],[83.58321,22.12507],[83.57592,22.1209],[83.56391,22.10529],[83.56181,22.09892],[83.56264,22.09632],[83.57694,22.09032],[83.59358,22.07421],[83.60648,22.06669],[83.6034,22.06383],[83.60152,22.05877],[83.59617,22.05789],[83.58988,22.05445],[83.58671,22.04873],[83.58307,22.05023],[83.58178,22.05458],[83.55822,22.05485],[83.55737,22.05371],[83.55429,22.05437],[83.55398,22.05292],[83.55035,22.05335],[83.5469,22.057],[83.54781,22.05915],[83.54374,22.05697],[83.53672,22.04348],[83.53647,22.0296],[83.53979,22.02167],[83.55615,22.00782],[83.54331,21.99385],[83.54355,21.98762],[83.53716,21.97796],[83.53901,21.96599],[83.54204,21.96211],[83.56169,21.94801],[83.55915,21.94505],[83.55672,21.93535],[83.59036,21.9297],[83.59987,21.92207],[83.60157,21.91806],[83.60592,21.91412],[83.60294,21.90858],[83.59848,21.90497],[83.597,21.906],[83.5947,21.90343],[83.58597,21.90213],[83.58523,21.89964],[83.58708,21.89453],[83.58155,21.88985],[83.57774,21.88898],[83.58081,21.88327],[83.57644,21.88237],[83.57421,21.87511],[83.59089,21.8511],[83.58708,21.84352],[83.58145,21.83817],[83.57791,21.83752],[83.57908,21.8306],[83.58238,21.82847],[83.58997,21.82585],[83.59659,21.83231],[83.6075,21.83285],[83.6102,21.83775],[83.60901,21.84582],[83.61916,21.84669],[83.62326,21.84869],[83.62803,21.84574],[83.62661,21.83927],[83.63448,21.826],[83.63638,21.81906],[83.66706,21.80836],[83.67282,21.8089],[83.68682,21.80168],[83.6888,21.79039],[83.70152,21.79128],[83.70281,21.7896],[83.71122,21.78903],[83.71921,21.78598],[83.72117,21.79049],[83.72904,21.79409],[83.72794,21.80269],[83.73826,21.81679],[83.75834,21.83619],[83.7669,21.83893],[83.77866,21.85333],[83.79375,21.86664],[83.799,21.87016],[83.79916,21.86767],[83.80723,21.85666],[83.81279,21.85461],[83.81205,21.85767],[83.80952,21.85781],[83.8094,21.86072],[83.81401,21.88223],[83.81634,21.88484],[83.82076,21.88413],[83.82513,21.87919],[83.82906,21.87736],[83.8309,21.89605],[83.83763,21.89354],[83.83923,21.8968],[83.84303,21.89858],[83.84603,21.90419],[83.85194,21.90273],[83.85399,21.90413],[83.85437,21.90687],[83.858,21.90723],[83.85872,21.90964],[83.86209,21.90928],[83.8644,21.91124],[83.85174,21.92362],[83.86188,21.92454],[83.87695,21.92311],[83.8963,21.94599],[83.90459,21.94426],[83.91681,21.94491],[83.92823,21.94252],[83.93461,21.9442],[83.95888,21.94256],[83.96515,21.92073],[83.97147,21.91005],[83.97615,21.9054],[84.00498,21.92326],[84.02707,21.95395],[84.03531,21.94882],[84.04615,21.94844],[84.04751,21.94397],[84.05359,21.9371],[84.06062,21.93677],[84.06132,21.93438],[84.06553,21.93506],[84.06705,21.93735],[84.07137,21.93633],[84.07861,21.93751],[84.07683,21.943],[84.07852,21.95388],[84.08107,21.95703],[84.08678,21.95961],[84.08759,21.9636],[84.08491,21.9713],[84.08409,21.97989],[84.0746,21.98134],[84.07224,21.98432],[84.06881,21.9847],[84.07018,21.98971],[84.08121,21.99137],[84.08636,21.99017],[84.0883,21.99546],[84.08688,21.99794],[84.0888,21.99939],[84.09267,21.99917],[84.09454,21.99634],[84.10287,21.99749],[84.10601,21.99215],[84.11023,22.00229],[84.1174,22.01304],[84.12098,22.00734],[84.1241,22.00653],[84.1247,22.00459],[84.12769,22.00511],[84.13205,22.00314],[84.13626,21.99874],[84.14103,22.00032],[84.14413,21.99896],[84.14591,22.0003],[84.15491,21.99864],[84.15983,22.00089],[84.16647,22.00055],[84.16699,22.00189],[84.17181,21.99862],[84.1713,21.99713],[84.17426,21.99726],[84.17413,21.99581],[84.17735,21.99364],[84.18038,21.99443],[84.1835,21.99107],[84.1892,21.99033],[84.19566,21.98645],[84.19938,21.98673],[84.20091,21.98565],[84.20065,21.98141],[84.20373,21.9777],[84.21397,21.97827],[84.22395,21.97452],[84.22767,21.97668],[84.22746,21.97511],[84.23032,21.97472],[84.23619,21.97781],[84.23611,21.97935],[84.23765,21.9779],[84.24126,21.98032],[84.25595,21.9987],[84.25773,22.00387],[84.26318,22.00815],[84.26802,22.00894],[84.26916,22.0258],[84.26629,22.04438],[84.26936,22.0505],[84.27025,22.06151],[84.26687,22.06493],[84.26576,22.07623],[84.27126,22.09074],[84.26672,22.10426],[84.26741,22.1078],[84.26992,22.11005],[84.27788,22.11025],[84.27631,22.1168],[84.27763,22.12326],[84.2981,22.11805],[84.30518,22.12258],[84.31026,22.12296],[84.31556,22.12761],[84.34022,22.13039],[84.34418,22.13351],[84.3435,22.13567],[84.35828,22.14442],[84.36373,22.15012],[84.37018,22.14864],[84.37693,22.14924],[84.3828,22.14674],[84.39456,22.15498],[84.39838,22.16011],[84.4058,22.1633],[84.41795,22.17258],[84.43705,22.18],[84.44611,22.1815],[84.45586,22.18656],[84.47636,22.19],[84.48123,22.16636],[84.48645,22.15777],[84.48989,22.14385],[84.49592,22.13788],[84.4982,22.11457],[84.50058,22.10882],[84.49921,22.10211],[84.49376,22.09885],[84.49492,22.09254],[84.49963,22.08914],[84.51018,22.08843],[84.51408,22.08506],[84.51207,22.07484],[84.50841,22.07013],[84.51019,22.05733],[84.5113,22.05467],[84.52695,22.04779],[84.52767,22.04577],[84.52416,22.03306],[84.51463,22.02837],[84.51096,22.0211],[84.50828,22.02019],[84.50665,22.01301],[84.50895,22.00069],[84.50727,21.99344],[84.50209,21.98424],[84.5,21.97234],[84.50184,21.96422],[84.50005,21.96116],[84.50522,21.9591],[84.50822,21.9609],[84.5096,21.96483],[84.51412,21.96634],[84.51485,21.97365],[84.51837,21.97358],[84.52,21.97186],[84.52336,21.97502],[84.52656,21.973],[84.5278,21.96817],[84.52612,21.96069],[84.52719,21.95841],[84.52131,21.95911],[84.51809,21.95753],[84.51892,21.95342],[84.51665,21.9484],[84.51892,21.94492],[84.52033,21.935],[84.52522,21.92983],[84.52511,21.92596],[84.52125,21.9237],[84.51259,21.92256],[84.50876,21.91932],[84.49644,21.91939],[84.49462,21.92069],[84.49086,21.9116],[84.49313,21.9055],[84.50706,21.90511],[84.52157,21.89196],[84.52659,21.8903],[84.52715,21.88302],[84.5299,21.87784],[84.52711,21.87436],[84.52469,21.87403],[84.525,21.87233],[84.53934,21.8621],[84.5346,21.85642],[84.52871,21.85421],[84.52776,21.85249],[84.52835,21.84738],[84.52633,21.8363],[84.52269,21.83076],[84.52284,21.82473],[84.52671,21.82069],[84.52587,21.81382],[84.54508,21.80036],[84.56334,21.79115],[84.56727,21.78651],[84.5647,21.77637],[84.56028,21.77535],[84.55964,21.77308],[84.55597,21.77281],[84.55367,21.76941],[84.56996,21.76791],[84.57604,21.76251],[84.58468,21.76072],[84.58812,21.75785],[84.59609,21.76025],[84.59652,21.76221],[84.60233,21.76231],[84.60422,21.76383],[84.60554,21.76254],[84.60981,21.76654],[84.62738,21.76144],[84.6389,21.76739],[84.66372,21.76332],[84.6786,21.74898],[84.675,21.73648],[84.68007,21.73162],[84.68716,21.71531],[84.6913,21.70972],[84.70305,21.70743],[84.70825,21.71124],[84.71257,21.71116],[84.71803,21.71706],[84.72186,21.70564],[84.72976,21.6934],[84.74676,21.6825],[84.74695,21.68016],[84.74153,21.67355],[84.74109,21.66932],[84.74587,21.66925],[84.74925,21.66363],[84.74935,21.6548],[84.75329,21.64213],[84.75246,21.62806],[84.75742,21.62448],[84.77892,21.62569],[84.78429,21.6309],[84.78791,21.6311],[84.79341,21.63671],[84.79273,21.63879],[84.78634,21.63924],[84.78291,21.64143],[84.78312,21.64745],[84.78176,21.64935],[84.78991,21.66857],[84.82827,21.66038],[84.85527,21.66054],[84.85654,21.65215],[84.86106,21.65198],[84.87766,21.65833],[84.90094,21.65882],[84.90338,21.66834],[84.91437,21.67052],[84.927,21.66777],[84.94133,21.65943],[84.94738,21.66403],[84.95361,21.6651],[84.95355,21.67813],[84.95643,21.68435],[84.96533,21.68294],[84.97539,21.67278],[84.97879,21.67559],[84.98112,21.67449],[84.98226,21.6786],[84.98121,21.68069],[84.98254,21.68176],[84.98426,21.68219],[84.98863,21.67877],[84.99789,21.68203],[85.00852,21.6769],[85.02292,21.67531],[85.02607,21.67247],[85.03088,21.65873],[85.02615,21.65327],[85.02957,21.64239],[85.02794,21.63328],[85.02938,21.6278],[85.03272,21.62704],[85.03781,21.62257],[85.0394,21.61767],[85.03516,21.60866],[85.0382,21.60052],[85.04849,21.59101],[85.05142,21.58955],[85.05697,21.59221],[85.06507,21.59181],[85.0662,21.59857],[85.07533,21.6012],[85.07733,21.60378],[85.08386,21.60228],[85.08621,21.60357],[85.09201,21.6027],[85.10578,21.59435],[85.11631,21.59603],[85.12179,21.59913],[85.12628,21.59815],[85.13089,21.5996],[85.14394,21.59535],[85.14821,21.5982],[85.14939,21.60577],[85.15959,21.61288],[85.16596,21.62283],[85.17136,21.623],[85.17695,21.62007],[85.18117,21.62582],[85.18807,21.62886],[85.18922,21.63561],[85.19425,21.63953],[85.19178,21.64549],[85.18295,21.64304],[85.18029,21.6451],[85.18423,21.64939],[85.18036,21.65445],[85.18809,21.65684],[85.1912,21.66127],[85.18631,21.67881],[85.18693,21.68218],[85.19066,21.68337],[85.19302,21.68966],[85.19283,21.69668],[85.18941,21.70022],[85.18796,21.70618],[85.18422,21.70906],[85.19127,21.72202],[85.19866,21.72652],[85.2128,21.73933],[85.21433,21.74724],[85.20682,21.74687],[85.20752,21.7481],[85.20441,21.75019],[85.2,21.76216],[85.20234,21.76874],[85.2096,21.77464],[85.20909,21.77886],[85.21524,21.79912],[85.22517,21.8131],[85.22628,21.82022],[85.23101,21.81799],[85.23151,21.81232],[85.23962,21.80535],[85.24285,21.80444],[85.2554,21.81624],[85.27127,21.8181],[85.2808,21.8349],[85.28282,21.83316],[85.29073,21.83741],[85.29636,21.83259],[85.29732,21.82583],[85.3051,21.82449],[85.30939,21.81969],[85.32431,21.82391],[85.33561,21.82343],[85.34058,21.82484],[85.34589,21.82945],[85.34895,21.83947],[85.35592,21.8485],[85.35974,21.85726],[85.36404,21.85975],[85.36282,21.86991],[85.36387,21.87487],[85.36626,21.87707],[85.36589,21.88441],[85.36885,21.89089],[85.36754,21.89969],[85.3708,21.89939],[85.37407,21.90265],[85.37558,21.91056],[85.37278,21.91844],[85.37657,21.92447],[85.37591,21.93648],[85.36833,21.94242],[85.35296,21.94194],[85.34812,21.94657],[85.34906,21.94861],[85.34742,21.94974],[85.34398,21.94858],[85.33696,21.9523],[85.33535,21.95149],[85.33501,21.95301],[85.32289,21.95348],[85.3139,21.95862],[85.30902,21.95887],[85.29863,21.95254],[85.28385,21.95422],[85.27784,21.95863],[85.27221,21.96042],[85.27089,21.96429],[85.26671,21.96806],[85.26492,21.97494],[85.24353,21.98681],[85.23143,21.99649],[85.23307,22.00274],[85.23923,22.01023],[85.23629,22.0098],[85.22921,22.01241],[85.22591,22.01609],[85.22143,22.01799],[85.21687,22.03357],[85.21859,22.04093],[85.21485,22.04333],[85.21508,22.04772],[85.21345,22.04969],[85.2104,22.04942],[85.19817,22.05594],[85.18572,22.05921],[85.18057,22.07323],[85.1746,22.07459],[85.16762,22.06951],[85.17121,22.06342],[85.17083,22.05663],[85.17386,22.05259],[85.17387,22.05138],[85.1706,22.05144],[85.16685,22.0537],[85.16512,22.06381],[85.16038,22.06966],[85.16054,22.07471],[85.15587,22.07834],[85.14359,22.0796],[85.14033,22.07761],[85.12608,22.0746],[85.12007,22.07018],[85.11866,22.0742],[85.11251,22.07984],[85.11381,22.08354],[85.1124,22.08704],[85.10881,22.0876],[85.10557,22.09023],[85.10379,22.08953],[85.10057,22.09372],[85.10169,22.09812],[85.10011,22.10363],[85.09574,22.10621],[85.09543,22.10808],[85.088,22.10591],[85.07046,22.1129],[85.05527,22.11568],[85.04168,22.1161],[85.02892,22.10933],[85.02431,22.11036],[85.01765,22.10342],[85.0158,22.10361],[85.01306,22.09879],[85.01174,22.09141],[85.00865,22.08886],[85.00658,22.09006],[85.00569,22.0879],[84.99369,22.0814],[84.98695,22.08282],[84.98541,22.08468],[84.98339,22.09552],[84.99141,22.09956],[84.99948,22.1077],[85.02358,22.11862],[85.03167,22.13309],[85.03417,22.14702],[85.02834,22.15718],[85.0291,22.16349],[85.04162,22.17299],[85.04283,22.17734],[85.05026,22.17916],[85.05266,22.18246],[85.05369,22.18539],[85.04919,22.19541],[85.05415,22.19799],[85.05582,22.20271],[85.05921,22.206],[85.05849,22.20925],[85.07225,22.23772],[85.06936,22.24358],[85.07025,22.24806],[85.07332,22.24805],[85.0782,22.25739],[85.07664,22.26108],[85.07341,22.2629],[85.0746,22.26485],[85.07218,22.26705],[85.07382,22.26876],[85.07148,22.27036],[85.07061,22.27365],[85.09963,22.29357],[85.10644,22.2959],[85.116,22.29409],[85.11413,22.30542],[85.11601,22.30811],[85.11416,22.31045],[85.11544,22.31528],[85.1181,22.31759],[85.11535,22.31978],[85.10637,22.32148],[85.10069,22.31992],[85.09549,22.31571],[85.09074,22.31858],[85.08939,22.32043],[85.09389,22.33328],[85.09575,22.34474],[85.09461,22.34673],[85.08333,22.34534],[85.08384,22.34905],[85.07892,22.35237],[85.07667,22.35621],[85.07916,22.36051],[85.07739,22.36551],[85.08696,22.38254],[85.08787,22.38847],[85.08622,22.38943],[85.08653,22.39942],[85.08023,22.41001],[85.08208,22.41653],[85.07537,22.42055],[85.0678,22.42843],[85.06683,22.44091],[85.06106,22.44513],[85.06029,22.44956],[85.06422,22.45424],[85.07715,22.46375],[85.07403,22.46553],[85.07524,22.46862],[85.07675,22.46874],[85.07803,22.47646],[85.07601,22.48029],[85.07179,22.4792],[85.06726,22.48417],[85.05968,22.48645],[85.05216,22.48251],[85.0443,22.48233],[85.04165,22.48055],[85.03808,22.48043],[85.03805,22.48196],[85.03595,22.48243],[85.03628,22.47937],[85.03765,22.47949],[85.03718,22.47282],[85.03547,22.47378],[85.01938,22.4706],[84.97302,22.45112],[84.96488,22.44933],[84.95935,22.44305],[84.95667,22.45823],[84.9449,22.45246],[84.94021,22.4452],[84.93194,22.44622],[84.92386,22.44355],[84.92387,22.44093],[84.92656,22.43958],[84.92615,22.43495],[84.9159,22.42611],[84.91023,22.42328],[84.89925,22.42343],[84.88558,22.42108],[84.88559,22.42613],[84.88871,22.42921],[84.8849,22.43745],[84.88509,22.44276],[84.88239,22.44847],[84.87292,22.44227],[84.87307,22.43947],[84.85373,22.43592],[84.84563,22.43626],[84.84223,22.43423],[84.84216,22.43174],[84.83855,22.43093],[84.83738,22.43253],[84.81763,22.43761],[84.81778,22.44462],[84.81252,22.45293],[84.80571,22.44767],[84.80145,22.44846],[84.79907,22.4473],[84.7973,22.44864],[84.79604,22.44626],[84.78875,22.44819],[84.76551,22.44865],[84.75932,22.44747],[84.75206,22.4306],[84.74974,22.41899],[84.71877,22.4199],[84.71556,22.41728],[84.69863,22.4164],[84.68384,22.41992],[84.676,22.41942],[84.67413,22.42191],[84.66806,22.41806],[84.65216,22.42621],[84.62865,22.43455],[84.62196,22.43156],[84.6103,22.43094],[84.60259,22.42883],[84.59785,22.4348],[84.59418,22.43006],[84.5709,22.4274],[84.54929,22.42104],[84.54694,22.42607],[84.54033,22.42719],[84.53806,22.42556],[84.5362,22.42737],[84.53136,22.4259],[84.53054,22.4228],[84.52439,22.41998],[84.51698,22.41935],[84.51064,22.42103],[84.48958,22.41364],[84.48244,22.41327],[84.48069,22.41017],[84.47698,22.40801],[84.47673,22.40528],[84.47793,22.39925],[84.48029,22.39798],[84.47884,22.39408],[84.4844,22.39258],[84.48463,22.38885],[84.47601,22.38665],[84.46118,22.37905],[84.45321,22.38105],[84.45345,22.37946],[84.44953,22.38029],[84.43496,22.37417],[84.43053,22.36894],[84.43226,22.36531],[84.43067,22.36404],[84.43427,22.36047],[84.42998,22.35793],[84.42813,22.35327],[84.4237,22.35444],[84.42041,22.35235],[84.41618,22.35281],[84.40032,22.34646],[84.39969,22.34782],[84.39676,22.3474],[84.39213,22.34986],[84.38302,22.34911],[84.37959,22.35262],[84.37032,22.35573],[84.36789,22.35466],[84.36564,22.3482],[84.33951,22.34755],[84.32994,22.34425],[84.32474,22.34528],[84.31683,22.34231],[84.31336,22.34444],[84.29533,22.34102],[84.29151,22.34213],[84.29004,22.34689],[84.27836,22.34928],[84.26881,22.35455],[84.25561,22.37442],[84.25146,22.37808],[84.19896,22.37581],[84.18489,22.39023],[84.16598,22.39985],[84.15613,22.40774],[84.14093,22.42562],[84.14055,22.44139],[84.1389,22.44776],[84.14138,22.45335],[84.14289,22.46423],[84.14068,22.47392],[84.137,22.47379],[84.13535,22.47659],[84.1288,22.4776],[84.12484,22.47493],[84.11349,22.47569],[84.10631,22.48065],[84.10686,22.48274],[84.10883,22.48268],[84.10795,22.48376],[84.10248,22.48408],[84.09031,22.48929],[84.08088,22.49412],[84.07305,22.50097],[84.07024,22.50135],[84.07528,22.50283],[84.07549,22.5062],[84.06512,22.50761],[84.06454,22.51248],[84.06132,22.51324],[84.05971,22.51643],[84.05306,22.5129],[84.04925,22.51704],[84.03656,22.51597],[84.02771,22.5205],[84.02552,22.52575],[84.01293,22.52337],[84.00921,22.52558],[84.01001,22.5264]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"374","area_level":"District","area_name":"Bastar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.90785,18.67633],[81.90786,18.68952],[81.91943,18.7038],[81.89972,18.72217],[81.89284,18.71848],[81.88133,18.70669],[81.87366,18.70132],[81.85829,18.69695],[81.84501,18.69059],[81.84933,18.6886],[81.85298,18.68457],[81.85225,18.68006],[81.85435,18.67512],[81.84257,18.67479],[81.83956,18.6694],[81.83067,18.66468],[81.82412,18.65775],[81.81507,18.64193],[81.81109,18.63987],[81.80399,18.64302],[81.79017,18.64443],[81.78326,18.64754],[81.77908,18.6522],[81.77342,18.67036],[81.76136,18.66116],[81.75734,18.66167],[81.73217,18.67324],[81.7185,18.68732],[81.70556,18.67743],[81.69702,18.6748],[81.67635,18.66215],[81.67275,18.65914],[81.67338,18.65225],[81.67193,18.64919],[81.6552,18.6544],[81.65219,18.61254],[81.66014,18.60755],[81.7069,18.61384],[81.74612,18.59437],[81.75907,18.59302],[81.77049,18.5941],[81.79015,18.60802],[81.80819,18.61459],[81.8314,18.62614],[81.84067,18.64102],[81.84506,18.64511],[81.86593,18.65076],[81.8695,18.65535],[81.87401,18.65736],[81.90089,18.66137],[81.90902,18.66093],[81.91472,18.66318],[81.90936,18.67048],[81.90785,18.67633]]],[[[81.86381,19.55196],[81.85793,19.55157],[81.84676,19.54244],[81.84554,19.53816],[81.84706,19.51992],[81.84862,19.517],[81.85738,19.51271],[81.85607,19.50559],[81.8572,19.49317],[81.85517,19.48719],[81.85721,19.47366],[81.85042,19.47345],[81.85011,19.48072],[81.84747,19.48579],[81.83561,19.50085],[81.82429,19.51058],[81.81268,19.49219],[81.81093,19.47685],[81.8081,19.46902],[81.79683,19.46002],[81.79149,19.45332],[81.7926,19.44641],[81.79182,19.43087],[81.79762,19.41197],[81.80127,19.40859],[81.81067,19.40747],[81.80046,19.39595],[81.8028,19.37629],[81.79679,19.36275],[81.79426,19.35268],[81.78985,19.35534],[81.77729,19.35689],[81.7638,19.35309],[81.75488,19.35583],[81.75051,19.3579],[81.7416,19.37028],[81.7285,19.37726],[81.72156,19.37624],[81.71066,19.36907],[81.70329,19.3583],[81.69041,19.36534],[81.6667,19.36578],[81.66366,19.35299],[81.65427,19.3485],[81.64247,19.35104],[81.63379,19.34286],[81.63545,19.33062],[81.62954,19.31962],[81.63112,19.31333],[81.62803,19.28913],[81.64033,19.28008],[81.64907,19.26766],[81.65678,19.26505],[81.6637,19.26622],[81.67567,19.26491],[81.67405,19.24956],[81.65709,19.24837],[81.64018,19.24145],[81.6381,19.2376],[81.63252,19.23336],[81.62018,19.22794],[81.61441,19.23539],[81.61172,19.245],[81.61509,19.24971],[81.60923,19.26069],[81.60831,19.27308],[81.59275,19.27524],[81.58598,19.27816],[81.58312,19.28179],[81.56889,19.28306],[81.56182,19.27064],[81.54225,19.25769],[81.54217,19.24603],[81.53765,19.23257],[81.53688,19.22267],[81.52135,19.22601],[81.51071,19.22595],[81.50657,19.22707],[81.503,19.2334],[81.4999,19.23543],[81.48887,19.23517],[81.4862,19.23764],[81.48556,19.24099],[81.47783,19.24401],[81.47504,19.24682],[81.479,19.25327],[81.47517,19.25788],[81.46334,19.26704],[81.4528,19.27166],[81.44599,19.28138],[81.43245,19.28492],[81.42821,19.29666],[81.41216,19.30225],[81.40479,19.30752],[81.39307,19.31151],[81.38354,19.32052],[81.37662,19.31913],[81.37254,19.31248],[81.37762,19.30579],[81.37671,19.30036],[81.37264,19.29852],[81.36826,19.29941],[81.3633,19.29593],[81.3581,19.29485],[81.35684,19.2928],[81.35653,19.28135],[81.3608,19.27202],[81.35929,19.26398],[81.36682,19.25504],[81.36319,19.25015],[81.35394,19.24711],[81.35483,19.23554],[81.3516,19.23016],[81.34925,19.22932],[81.34393,19.23137],[81.36308,19.22018],[81.3665,19.22022],[81.36944,19.21615],[81.38313,19.20915],[81.3873,19.20979],[81.39307,19.2077],[81.39461,19.20252],[81.40029,19.19933],[81.39863,19.19551],[81.40191,19.19116],[81.41902,19.19453],[81.44073,19.18775],[81.45047,19.18899],[81.45397,19.19196],[81.46499,19.20851],[81.47077,19.21216],[81.47682,19.21358],[81.50212,19.20388],[81.4989,19.19053],[81.50041,19.18409],[81.49742,19.17853],[81.49761,19.16451],[81.49654,19.16211],[81.49395,19.1617],[81.49073,19.15612],[81.49521,19.14507],[81.50048,19.1397],[81.49065,19.13814],[81.46919,19.14434],[81.46358,19.13925],[81.46315,19.13675],[81.47356,19.12836],[81.47856,19.11713],[81.48397,19.11745],[81.487,19.11486],[81.48848,19.10802],[81.49422,19.10167],[81.49185,19.09378],[81.49192,19.0905],[81.49364,19.08947],[81.4904,19.0854],[81.49329,19.08277],[81.49332,19.08076],[81.50419,19.07037],[81.51048,19.07062],[81.51663,19.06685],[81.51644,19.06551],[81.50158,19.06164],[81.49702,19.05379],[81.49834,19.05066],[81.50267,19.04455],[81.51265,19.04313],[81.52932,19.03729],[81.52302,19.03062],[81.52131,19.02296],[81.52399,19.01841],[81.5193,19.01689],[81.51677,19.01328],[81.5095,19.00946],[81.50239,19.01237],[81.49306,19.0118],[81.48897,19.00811],[81.48503,19.01022],[81.48001,19.00398],[81.47237,19.00644],[81.47145,19.00304],[81.46819,19.00088],[81.46812,18.99654],[81.47036,18.99408],[81.46949,18.9915],[81.47628,18.97819],[81.48422,18.97371],[81.48014,18.97132],[81.4626,18.96851],[81.45721,18.96622],[81.46466,18.95914],[81.46321,18.94958],[81.46567,18.94556],[81.4737,18.94465],[81.49223,18.93902],[81.49752,18.93589],[81.49834,18.93291],[81.50573,18.93087],[81.50836,18.92678],[81.50893,18.91981],[81.51087,18.92003],[81.51151,18.91665],[81.51502,18.91399],[81.51564,18.91659],[81.52455,18.92345],[81.55588,18.91194],[81.55165,18.90619],[81.54877,18.89683],[81.54502,18.89057],[81.54803,18.88419],[81.55039,18.88134],[81.55679,18.87955],[81.55617,18.87526],[81.56263,18.87489],[81.56508,18.8677],[81.57334,18.86779],[81.57461,18.86166],[81.57966,18.85316],[81.58219,18.84484],[81.59066,18.84316],[81.6021,18.85446],[81.60576,18.8524],[81.61075,18.84493],[81.61957,18.84112],[81.62032,18.83398],[81.61371,18.83353],[81.61126,18.8312],[81.62317,18.8235],[81.62707,18.81359],[81.63133,18.81234],[81.63687,18.81482],[81.6418,18.81833],[81.64252,18.82209],[81.65012,18.8179],[81.65563,18.8085],[81.66546,18.80317],[81.66802,18.80354],[81.67925,18.80991],[81.68099,18.81696],[81.68732,18.82352],[81.69316,18.82127],[81.70451,18.82439],[81.71232,18.83798],[81.71964,18.83354],[81.72037,18.82853],[81.72357,18.82665],[81.72811,18.82682],[81.73827,18.82156],[81.74023,18.81812],[81.74686,18.81627],[81.75717,18.80917],[81.75498,18.79779],[81.76155,18.79481],[81.76675,18.78482],[81.75996,18.77271],[81.77162,18.76951],[81.77733,18.77298],[81.7769,18.76454],[81.77246,18.75631],[81.78784,18.75243],[81.80605,18.73889],[81.82218,18.74455],[81.82615,18.74219],[81.84928,18.7357],[81.86764,18.7467],[81.86997,18.75966],[81.87246,18.76376],[81.87909,18.75783],[81.89249,18.754],[81.89763,18.7579],[81.91047,18.75955],[81.9205,18.77463],[81.93632,18.77356],[81.94684,18.77084],[81.9496,18.76574],[81.95487,18.76163],[81.95675,18.75377],[81.94205,18.73387],[81.94141,18.73021],[81.94434,18.72596],[81.94299,18.71887],[81.95903,18.70927],[81.96408,18.70023],[81.96804,18.69637],[81.9889,18.70528],[81.99473,18.70468],[81.99859,18.70691],[81.99992,18.71108],[82.00583,18.71465],[82.00879,18.71255],[82.01674,18.7195],[82.02815,18.72121],[82.03092,18.72379],[82.04021,18.72391],[82.04812,18.7214],[82.05365,18.72361],[82.05609,18.7229],[82.05877,18.71934],[82.06277,18.71902],[82.06505,18.72007],[82.06742,18.7265],[82.07456,18.72462],[82.07653,18.72211],[82.08497,18.71859],[82.08688,18.72142],[82.08606,18.72795],[82.08836,18.72977],[82.08769,18.73113],[82.09352,18.74681],[82.09258,18.75268],[82.08874,18.76019],[82.09158,18.76573],[82.09782,18.76384],[82.10576,18.76731],[82.11101,18.76588],[82.11536,18.76901],[82.12082,18.76975],[82.13342,18.76536],[82.13362,18.76811],[82.13133,18.77011],[82.13349,18.78045],[82.13567,18.78148],[82.13842,18.77837],[82.14057,18.77846],[82.14738,18.78097],[82.15217,18.7853],[82.15736,18.78548],[82.1608,18.78992],[82.16017,18.79523],[82.16544,18.79862],[82.16453,18.80192],[82.15652,18.80433],[82.1602,18.80807],[82.16137,18.81252],[82.16615,18.81407],[82.16029,18.81987],[82.16896,18.83602],[82.16574,18.84387],[82.16747,18.85235],[82.16303,18.85415],[82.1602,18.8614],[82.16509,18.86487],[82.16737,18.87362],[82.16104,18.87713],[82.16041,18.87891],[82.16506,18.88322],[82.16932,18.88189],[82.17666,18.88709],[82.17516,18.89161],[82.17615,18.90267],[82.18109,18.90694],[82.19251,18.90751],[82.20085,18.91359],[82.2183,18.92252],[82.22728,18.91904],[82.23091,18.91967],[82.23696,18.91423],[82.24605,18.91911],[82.23911,18.96229],[82.23276,19.01794],[82.22988,19.02741],[82.20225,19.06664],[82.20472,19.0756],[82.21495,19.08599],[82.21855,19.09302],[82.21842,19.09727],[82.21414,19.09985],[82.21294,19.09798],[82.20971,19.09968],[82.20648,19.0964],[82.20491,19.09714],[82.20499,19.10115],[82.20735,19.10228],[82.20518,19.107],[82.20298,19.10811],[82.20633,19.11507],[82.20581,19.11694],[82.209,19.12052],[82.20582,19.12413],[82.19739,19.12164],[82.19058,19.1289],[82.18247,19.13169],[82.17686,19.11857],[82.17361,19.11841],[82.17033,19.12041],[82.16921,19.12805],[82.1661,19.1327],[82.16682,19.1361],[82.17574,19.13866],[82.16983,19.14525],[82.17154,19.15021],[82.17656,19.14921],[82.18093,19.15082],[82.17768,19.15251],[82.17721,19.15561],[82.1713,19.15653],[82.17018,19.16116],[82.17492,19.16288],[82.17874,19.15964],[82.17753,19.15567],[82.1822,19.15929],[82.18614,19.16635],[82.18395,19.16849],[82.17811,19.16937],[82.17604,19.17208],[82.17671,19.17347],[82.18205,19.17416],[82.18106,19.17858],[82.17514,19.18182],[82.18046,19.19168],[82.16758,19.19526],[82.16171,19.20225],[82.16582,19.21145],[82.16877,19.21294],[82.15942,19.22296],[82.15784,19.2275],[82.15843,19.26517],[82.16594,19.28769],[82.17441,19.29453],[82.17668,19.29948],[82.17917,19.31897],[82.18122,19.32339],[82.19412,19.32594],[82.19013,19.32676],[82.18801,19.32892],[82.18789,19.33476],[82.18604,19.33741],[82.17789,19.34005],[82.17866,19.34337],[82.16904,19.34598],[82.165,19.34899],[82.15413,19.3498],[82.15244,19.35274],[82.14878,19.35298],[82.14839,19.36491],[82.14725,19.36549],[82.14896,19.36953],[82.14774,19.37182],[82.15135,19.37331],[82.15327,19.37702],[82.15648,19.3773],[82.16004,19.37707],[82.16219,19.37436],[82.16661,19.37277],[82.17192,19.37262],[82.17353,19.37717],[82.17553,19.37664],[82.17883,19.37905],[82.178,19.3825],[82.18183,19.3842],[82.18099,19.38618],[82.18225,19.38874],[82.18074,19.39241],[82.18431,19.40049],[82.18208,19.40293],[82.18244,19.40943],[82.1852,19.41369],[82.18927,19.41536],[82.1898,19.42627],[82.18944,19.42753],[82.18619,19.42665],[82.17819,19.43661],[82.17149,19.43719],[82.13524,19.43178],[82.13525,19.43038],[82.1273,19.43051],[82.12614,19.42909],[82.11353,19.44826],[82.11342,19.46036],[82.10282,19.46611],[82.10734,19.47504],[82.10796,19.49428],[82.09797,19.49893],[82.10025,19.51659],[82.07603,19.52363],[82.06608,19.51084],[82.05134,19.50816],[82.03851,19.50913],[82.02906,19.50764],[82.02246,19.49866],[82.01736,19.49706],[82.01441,19.49307],[82.00951,19.49462],[81.99965,19.49033],[81.99327,19.492],[81.99322,19.49312],[81.99668,19.49779],[81.99634,19.5061],[82.00022,19.51524],[81.99867,19.52949],[81.99067,19.5344],[81.97448,19.5396],[81.95306,19.5413],[81.94753,19.5404],[81.93644,19.53247],[81.92695,19.52842],[81.90699,19.52812],[81.90064,19.53007],[81.89829,19.54992],[81.86381,19.55196]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"375","area_level":"District","area_name":"Bilaspur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.15643,22.54417],[82.15521,22.55049],[82.15874,22.57551],[82.14847,22.58555],[82.1439,22.59348],[82.15026,22.60109],[82.13954,22.6004],[82.13279,22.6027],[82.11434,22.60068],[82.10601,22.59173],[82.09028,22.58477],[82.07538,22.57245],[82.06025,22.57145],[82.05994,22.56482],[82.05618,22.56404],[82.0473,22.56661],[82.04106,22.57219],[82.03281,22.57376],[82.01311,22.58108],[82.00401,22.58194],[81.99452,22.57882],[81.99404,22.58102],[81.9888,22.58499],[81.97527,22.61066],[81.96473,22.60631],[81.95315,22.61497],[81.94992,22.61584],[81.9288,22.61331],[81.92246,22.60925],[81.90571,22.6141],[81.89888,22.61118],[81.89223,22.61185],[81.88523,22.60996],[81.87143,22.61203],[81.85663,22.61111],[81.8478,22.59254],[81.83253,22.57505],[81.83812,22.57299],[81.83589,22.56783],[81.83218,22.56415],[81.83479,22.55973],[81.83669,22.54345],[81.83202,22.5338],[81.84066,22.50809],[81.8474,22.50436],[81.859,22.50255],[81.8654,22.49341],[81.87649,22.48751],[81.9022,22.48146],[81.90538,22.47469],[81.90397,22.47205],[81.90479,22.4678],[81.9078,22.46697],[81.91096,22.46172],[81.89805,22.45532],[81.90321,22.4502],[81.903,22.44892],[81.90085,22.449],[81.90161,22.44262],[81.90545,22.43951],[81.90923,22.4388],[81.91494,22.43221],[81.91569,22.42655],[81.92191,22.42183],[81.92477,22.41224],[81.93514,22.41075],[81.94728,22.4046],[81.95172,22.39829],[81.9527,22.39301],[81.95855,22.38777],[81.96019,22.37914],[81.96617,22.37473],[81.96653,22.37223],[81.965,22.37088],[81.96606,22.36855],[81.97197,22.36633],[81.9764,22.35997],[81.97037,22.35475],[81.96382,22.35472],[81.963,22.35243],[81.96452,22.35103],[81.95947,22.34559],[81.95863,22.34103],[81.95604,22.34075],[81.9543,22.34183],[81.95481,22.346],[81.95072,22.34785],[81.94287,22.35599],[81.93078,22.3616],[81.92513,22.35953],[81.92614,22.35491],[81.9248,22.35444],[81.92807,22.3515],[81.92711,22.34483],[81.92944,22.34102],[81.93523,22.33879],[81.93445,22.32385],[81.93061,22.32558],[81.92972,22.31529],[81.93397,22.31015],[81.93584,22.311],[81.93894,22.3091],[81.92747,22.30129],[81.92673,22.29624],[81.92926,22.2942],[81.92466,22.29224],[81.91533,22.29294],[81.9138,22.31169],[81.90404,22.31096],[81.89718,22.30463],[81.89027,22.31593],[81.88761,22.31647],[81.88735,22.31787],[81.88427,22.31722],[81.88252,22.31972],[81.87326,22.32176],[81.86648,22.3179],[81.86343,22.31212],[81.8566,22.31033],[81.85294,22.30629],[81.85171,22.29561],[81.86153,22.2934],[81.86255,22.29106],[81.85792,22.2889],[81.84122,22.28875],[81.83506,22.28688],[81.8334,22.28295],[81.82562,22.28091],[81.82288,22.26994],[81.8124,22.27767],[81.82288,22.28461],[81.82428,22.29309],[81.81501,22.29095],[81.80619,22.28402],[81.80489,22.28812],[81.78536,22.2873],[81.78168,22.29339],[81.78435,22.29275],[81.78793,22.29556],[81.78046,22.30121],[81.77696,22.30632],[81.77449,22.30705],[81.76749,22.30236],[81.76705,22.2918],[81.76388,22.29035],[81.75951,22.29314],[81.76041,22.2951],[81.75733,22.29775],[81.75673,22.30353],[81.74952,22.30731],[81.74374,22.31256],[81.73909,22.27832],[81.74276,22.27386],[81.74209,22.26789],[81.7337,22.26941],[81.73272,22.26438],[81.7307,22.26342],[81.73401,22.254],[81.73107,22.25018],[81.73283,22.24921],[81.7375,22.25078],[81.73956,22.24853],[81.74301,22.24992],[81.74947,22.24698],[81.75548,22.24879],[81.75991,22.24023],[81.76171,22.23999],[81.7643,22.24249],[81.76661,22.24164],[81.76573,22.23535],[81.77126,22.23386],[81.77344,22.2258],[81.77981,22.22618],[81.78324,22.22357],[81.78696,22.22468],[81.78898,22.22262],[81.79524,22.22305],[81.7991,22.22104],[81.80286,22.22205],[81.80395,22.2189],[81.81028,22.21254],[81.80976,22.20661],[81.81529,22.20298],[81.81303,22.19783],[81.81593,22.19217],[81.81552,22.18482],[81.82185,22.17821],[81.8224,22.17353],[81.82837,22.16996],[81.831,22.16567],[81.83735,22.16356],[81.8459,22.15237],[81.85381,22.14994],[81.85805,22.14188],[81.85947,22.1334],[81.86412,22.13387],[81.86652,22.13133],[81.86859,22.12105],[81.87108,22.1205],[81.87633,22.12566],[81.87862,22.12607],[81.88532,22.1144],[81.89263,22.10899],[81.89001,22.10355],[81.8904,22.10072],[81.89501,22.09919],[81.89679,22.10626],[81.90364,22.10695],[81.90579,22.10094],[81.90262,22.09577],[81.90557,22.09361],[81.90859,22.08781],[81.91266,22.08541],[81.90783,22.08302],[81.90763,22.07949],[81.91359,22.07473],[81.91846,22.07529],[81.923,22.07281],[81.92468,22.0698],[81.92338,22.06427],[81.92882,22.06362],[81.92917,22.06766],[81.9322,22.06686],[81.93425,22.06301],[81.93172,22.05872],[81.93179,22.05585],[81.9341,22.05551],[81.93681,22.05831],[81.94029,22.05659],[81.94241,22.05305],[81.9412,22.04741],[81.9436,22.0472],[81.94747,22.0509],[81.94994,22.04942],[81.95173,22.04527],[81.95002,22.04075],[81.95057,22.03709],[81.95624,22.03229],[81.95049,22.02187],[81.95032,22.01871],[81.95257,22.01628],[81.96201,22.01483],[81.96422,22.01075],[81.96302,22.00729],[81.95457,22.00729],[81.95349,22.00538],[81.95456,22.00342],[81.96404,21.99962],[81.97251,22.00519],[81.98189,21.99885],[81.98538,21.99169],[81.98844,21.99104],[81.99387,21.99325],[82.00148,21.99147],[82.00219,21.985],[82.00868,21.98095],[82.00816,21.97451],[82.0116,21.96986],[82.01218,21.96608],[82.00953,21.96258],[82.00143,21.95811],[81.99718,21.95022],[81.99194,21.94678],[81.99256,21.94252],[81.99093,21.93869],[82.00129,21.92842],[82.00288,21.91658],[82.00902,21.91478],[82.01724,21.91522],[82.02195,21.91293],[82.02415,21.90958],[82.02458,21.90501],[82.02783,21.90052],[82.0284,21.89552],[82.037,21.88329],[82.04537,21.88376],[82.05151,21.88179],[82.06522,21.87056],[82.07017,21.86949],[82.07914,21.86368],[82.09918,21.85548],[82.1229,21.8318],[82.13144,21.833],[82.14404,21.84036],[82.14988,21.84131],[82.15861,21.84721],[82.16952,21.84405],[82.17754,21.84431],[82.18026,21.84264],[82.18544,21.83407],[82.18687,21.82524],[82.18469,21.81008],[82.18165,21.8029],[82.18241,21.79437],[82.19059,21.77081],[82.19462,21.76532],[82.20057,21.76121],[82.24823,21.75378],[82.28881,21.75276],[82.29388,21.74686],[82.29862,21.72989],[82.30612,21.7214],[82.31591,21.71614],[82.37658,21.71146],[82.39212,21.71241],[82.40262,21.7153],[82.41282,21.71891],[82.42806,21.72843],[82.43773,21.7396],[82.43289,21.7455],[82.42337,21.74685],[82.42092,21.7485],[82.41126,21.76406],[82.40038,21.76126],[82.38922,21.76792],[82.38494,21.76483],[82.38638,21.76009],[82.38278,21.76088],[82.37948,21.76903],[82.3788,21.77888],[82.37457,21.78094],[82.37138,21.79154],[82.37134,21.79818],[82.35794,21.82707],[82.35738,21.83692],[82.34964,21.84457],[82.35192,21.84991],[82.35125,21.85293],[82.34204,21.85789],[82.33946,21.86129],[82.3338,21.86072],[82.32639,21.8638],[82.32173,21.8719],[82.31533,21.87243],[82.31311,21.88221],[82.31421,21.88659],[82.30832,21.89797],[82.30947,21.90055],[82.31547,21.90337],[82.31091,21.90647],[82.30639,21.90488],[82.30412,21.9088],[82.30933,21.9135],[82.30654,21.91776],[82.30923,21.92127],[82.30878,21.92702],[82.31609,21.93982],[82.31947,21.94155],[82.32056,21.94523],[82.31938,21.94878],[82.32326,21.95166],[82.32358,21.95618],[82.32817,21.95931],[82.33015,21.96359],[82.32942,21.96492],[82.32469,21.9642],[82.32307,21.9661],[82.32515,21.96888],[82.32407,21.97404],[82.32501,21.97934],[82.32142,21.98449],[82.32105,21.98793],[82.32459,21.99467],[82.3208,22.00179],[82.32948,22.00718],[82.33127,22.01293],[82.33244,22.02025],[82.33047,22.02641],[82.33013,22.03741],[82.3274,22.04343],[82.32877,22.04774],[82.32629,22.05005],[82.33093,22.0548],[82.33087,22.06087],[82.33436,22.06515],[82.33305,22.06924],[82.33669,22.07471],[82.33489,22.08784],[82.33727,22.09547],[82.33394,22.10036],[82.33395,22.10593],[82.33909,22.10891],[82.33723,22.11148],[82.34119,22.11448],[82.33935,22.11753],[82.34114,22.1208],[82.34312,22.12086],[82.34592,22.1241],[82.34473,22.12823],[82.35039,22.12733],[82.35827,22.13618],[82.36342,22.13488],[82.36852,22.13818],[82.37679,22.13654],[82.37999,22.13188],[82.3853,22.13377],[82.38982,22.12853],[82.39379,22.12799],[82.39954,22.12995],[82.40257,22.13315],[82.40579,22.13284],[82.4088,22.1347],[82.41302,22.13392],[82.41605,22.13919],[82.42214,22.13775],[82.42576,22.14134],[82.42544,22.1457],[82.43111,22.14922],[82.43319,22.15993],[82.43701,22.16469],[82.4442,22.16971],[82.4462,22.17293],[82.45162,22.17551],[82.4544,22.17515],[82.45788,22.17811],[82.45945,22.1773],[82.4624,22.1803],[82.46801,22.18241],[82.47217,22.18684],[82.47287,22.19041],[82.46125,22.1944],[82.46,22.19693],[82.45676,22.19817],[82.45959,22.20443],[82.45751,22.20903],[82.45982,22.2134],[82.45874,22.21884],[82.45717,22.22046],[82.45606,22.21977],[82.45219,22.22507],[82.44302,22.22765],[82.44249,22.22636],[82.43633,22.22701],[82.43462,22.23496],[82.42842,22.24323],[82.42897,22.24658],[82.42087,22.24922],[82.40868,22.25704],[82.39665,22.26024],[82.39727,22.26726],[82.41483,22.28086],[82.41414,22.28398],[82.41189,22.28552],[82.3999,22.30528],[82.38434,22.30373],[82.37908,22.30065],[82.37457,22.30356],[82.37248,22.31423],[82.36675,22.31956],[82.35869,22.32207],[82.35174,22.32757],[82.32545,22.32359],[82.31578,22.31132],[82.31099,22.29909],[82.30272,22.29646],[82.29793,22.28912],[82.28806,22.28678],[82.27368,22.29173],[82.26824,22.29659],[82.2621,22.29828],[82.26162,22.3019],[82.2685,22.30781],[82.27217,22.31809],[82.268,22.33471],[82.26165,22.3358],[82.2398,22.3351],[82.23613,22.33393],[82.23669,22.33049],[82.23339,22.32831],[82.22512,22.33173],[82.21565,22.33949],[82.21391,22.32835],[82.20351,22.31177],[82.20083,22.31462],[82.2018,22.31791],[82.1967,22.31671],[82.19324,22.31972],[82.18931,22.31986],[82.18519,22.3251],[82.17698,22.32731],[82.17464,22.32439],[82.17067,22.32749],[82.16911,22.3262],[82.16795,22.32798],[82.16661,22.32753],[82.16552,22.33],[82.16434,22.32888],[82.16141,22.33049],[82.15819,22.3286],[82.15196,22.33091],[82.15065,22.3293],[82.14978,22.33084],[82.14201,22.33309],[82.14131,22.33488],[82.14978,22.33994],[82.15361,22.35242],[82.15386,22.37728],[82.14943,22.38416],[82.15717,22.38243],[82.16692,22.38367],[82.16493,22.39951],[82.1743,22.40463],[82.1788,22.4053],[82.18211,22.40994],[82.1798,22.41266],[82.18005,22.41479],[82.17693,22.4153],[82.17357,22.42474],[82.17205,22.42519],[82.16818,22.4419],[82.15681,22.44477],[82.13798,22.45439],[82.14413,22.46624],[82.14232,22.47302],[82.14352,22.48095],[82.14729,22.48448],[82.14818,22.48914],[82.15521,22.49549],[82.16032,22.50289],[82.16032,22.50793],[82.16481,22.52436],[82.16369,22.53079],[82.15643,22.54417]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"376","area_level":"District","area_name":"Dakshin Bastar Dantewada","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.12645,19.01144],[81.11825,19.01471],[81.11271,19.01838],[81.11155,19.01794],[81.11075,19.01466],[81.10762,19.01159],[81.10717,19.00751],[81.10523,19.00242],[81.10613,19.00089],[81.10591,19.00047],[81.10724,18.99969],[81.10674,18.99844],[81.10825,18.99822],[81.1083,18.99716],[81.10903,18.99722],[81.10915,18.99632],[81.11048,18.99623],[81.11023,18.99489],[81.11122,18.99438],[81.11243,18.99506],[81.11358,18.99498],[81.11331,18.99432],[81.11462,18.99429],[81.11503,18.99268],[81.11702,18.99099],[81.11603,18.98714],[81.11682,18.9866],[81.11684,18.98548],[81.11781,18.98541],[81.11793,18.98409],[81.11711,18.98356],[81.11685,18.9825],[81.11728,18.98169],[81.11826,18.98164],[81.11825,18.98076],[81.11924,18.97965],[81.1201,18.97938],[81.11998,18.97856],[81.12129,18.9747],[81.12325,18.97348],[81.12457,18.97028],[81.12783,18.96525],[81.12789,18.96108],[81.1308,18.961],[81.13427,18.95981],[81.13816,18.96012],[81.14872,18.95845],[81.1526,18.95702],[81.15715,18.95338],[81.16308,18.95319],[81.16338,18.95446],[81.16572,18.95535],[81.16838,18.95716],[81.16815,18.95842],[81.16619,18.95975],[81.16706,18.96222],[81.16883,18.96334],[81.16921,18.96617],[81.16739,18.97004],[81.16669,18.97],[81.16572,18.96909],[81.16509,18.96903],[81.16476,18.96972],[81.1653,18.9724],[81.16317,18.97524],[81.16375,18.97607],[81.16365,18.97717],[81.16067,18.98513],[81.15955,18.99084],[81.15937,18.99449],[81.15961,18.99496],[81.16224,18.99531],[81.16256,18.99612],[81.16175,18.99687],[81.15647,18.99883],[81.15495,18.99859],[81.15299,18.99748],[81.15121,18.99755],[81.15089,18.9983],[81.1523,19.00001],[81.15175,19.00118],[81.14602,19.00091],[81.14094,19.00428],[81.14039,19.00606],[81.13946,19.0069],[81.13126,19.01036],[81.12645,19.01144]]],[[[81.31133,19.19351],[81.3118,19.19554],[81.29196,19.21755],[81.28716,19.2166],[81.28348,19.1847],[81.29515,19.17256],[81.27557,19.13413],[81.20913,19.12437],[81.21154,19.11409],[81.21224,19.09985],[81.20895,19.09168],[81.212,19.08075],[81.21798,19.07373],[81.2195,19.06159],[81.22578,19.05069],[81.2197,19.04015],[81.2113,19.03111],[81.21441,19.02756],[81.21188,19.02475],[81.21154,19.01941],[81.21242,19.01821],[81.22073,19.01955],[81.22288,19.01485],[81.21308,19.01099],[81.20793,19.00545],[81.20643,19.00221],[81.20742,19.00066],[81.2046,18.99957],[81.20347,18.99706],[81.20466,18.9861],[81.21447,18.98062],[81.21838,18.98101],[81.22965,18.973],[81.23023,18.97063],[81.23649,18.96785],[81.23293,18.96415],[81.22427,18.95991],[81.21697,18.95266],[81.21615,18.94325],[81.219,18.93168],[81.20063,18.93843],[81.1914,18.93553],[81.187,18.93655],[81.17295,18.93286],[81.17047,18.92895],[81.17052,18.9198],[81.18634,18.91405],[81.19429,18.91598],[81.20319,18.92114],[81.21228,18.91796],[81.22103,18.92186],[81.22376,18.91767],[81.2251,18.91017],[81.22108,18.90433],[81.2168,18.90246],[81.21446,18.89835],[81.21393,18.86888],[81.21049,18.86037],[81.20472,18.85182],[81.20553,18.84163],[81.20394,18.83631],[81.19709,18.82554],[81.18797,18.81648],[81.18961,18.80005],[81.19234,18.7976],[81.19508,18.79134],[81.19576,18.78],[81.19837,18.77182],[81.19799,18.74814],[81.19587,18.73956],[81.19088,18.73614],[81.18935,18.73116],[81.17637,18.7092],[81.16055,18.69083],[81.16064,18.68013],[81.16322,18.66617],[81.17007,18.66204],[81.17219,18.65714],[81.17883,18.65209],[81.16906,18.6352],[81.16406,18.63494],[81.16229,18.63142],[81.16181,18.62676],[81.16369,18.62501],[81.16394,18.61873],[81.16074,18.61584],[81.16315,18.61416],[81.1627,18.61065],[81.15723,18.60503],[81.15144,18.60305],[81.1511,18.60016],[81.14896,18.60001],[81.15107,18.59696],[81.15038,18.59267],[81.15231,18.5893],[81.14644,18.5686],[81.15934,18.57968],[81.16631,18.58859],[81.17155,18.59197],[81.17473,18.59166],[81.17629,18.59406],[81.18703,18.59597],[81.19283,18.59624],[81.1963,18.59444],[81.19906,18.59092],[81.19936,18.58789],[81.1949,18.55742],[81.19277,18.5551],[81.19616,18.55143],[81.19416,18.54835],[81.18277,18.54107],[81.21493,18.51884],[81.21852,18.51494],[81.21987,18.51507],[81.22251,18.52781],[81.23187,18.52489],[81.24161,18.52464],[81.2471,18.52291],[81.25255,18.52465],[81.25553,18.52377],[81.25165,18.51792],[81.25113,18.51367],[81.25749,18.50558],[81.25892,18.49554],[81.25847,18.47907],[81.26865,18.47817],[81.27527,18.47519],[81.27481,18.47302],[81.26852,18.46865],[81.28118,18.46716],[81.28774,18.45717],[81.29134,18.46292],[81.29975,18.45654],[81.30163,18.45391],[81.30073,18.44709],[81.30556,18.43699],[81.30852,18.43885],[81.31978,18.43686],[81.32757,18.439],[81.32973,18.43241],[81.32835,18.42702],[81.33353,18.41775],[81.35432,18.41381],[81.35719,18.415],[81.35897,18.41833],[81.3703,18.41722],[81.40235,18.40078],[81.40613,18.39841],[81.40979,18.39263],[81.41634,18.39837],[81.42806,18.40198],[81.43391,18.41409],[81.42944,18.42114],[81.42221,18.42541],[81.41818,18.426],[81.39351,18.42081],[81.38582,18.42254],[81.38011,18.42669],[81.37351,18.42789],[81.37018,18.42981],[81.36966,18.43182],[81.3831,18.46634],[81.38402,18.47893],[81.38136,18.47897],[81.37574,18.48306],[81.37759,18.48596],[81.37721,18.48858],[81.38352,18.49043],[81.38676,18.49374],[81.39416,18.49362],[81.39973,18.48867],[81.40067,18.48509],[81.40981,18.48432],[81.41763,18.47974],[81.42342,18.47982],[81.43135,18.48637],[81.43279,18.49289],[81.44315,18.49805],[81.44082,18.50587],[81.43613,18.50334],[81.42797,18.50898],[81.42613,18.51422],[81.41845,18.51266],[81.41405,18.51474],[81.43168,18.53528],[81.44148,18.5405],[81.4377,18.55374],[81.42376,18.55528],[81.41916,18.57031],[81.41613,18.57286],[81.42615,18.58757],[81.43432,18.59274],[81.44101,18.58854],[81.43997,18.58423],[81.4422,18.5817],[81.44587,18.58075],[81.44665,18.59099],[81.44331,18.59804],[81.44577,18.60565],[81.45857,18.61505],[81.48703,18.62402],[81.49772,18.622],[81.49946,18.61415],[81.52173,18.60441],[81.52907,18.60351],[81.54352,18.6065],[81.54354,18.60363],[81.54866,18.59522],[81.55246,18.58341],[81.54004,18.56786],[81.5484,18.56947],[81.55498,18.55942],[81.57073,18.57566],[81.57652,18.58599],[81.57966,18.60036],[81.57687,18.60381],[81.56697,18.60475],[81.54778,18.61289],[81.54512,18.62096],[81.54564,18.63069],[81.54225,18.63227],[81.54516,18.64235],[81.55355,18.64538],[81.55358,18.65422],[81.55632,18.65769],[81.54235,18.67403],[81.54524,18.69336],[81.5478,18.6968],[81.55477,18.69352],[81.55987,18.70713],[81.56975,18.71291],[81.57221,18.72523],[81.56876,18.7397],[81.58249,18.73941],[81.59782,18.73421],[81.60178,18.73635],[81.61205,18.74994],[81.61693,18.74949],[81.62949,18.73333],[81.62939,18.72608],[81.62365,18.70877],[81.66374,18.69723],[81.65708,18.65962],[81.67275,18.65914],[81.68741,18.66957],[81.70556,18.67743],[81.7185,18.68732],[81.73217,18.67324],[81.7446,18.6666],[81.76022,18.66085],[81.77324,18.67027],[81.76809,18.68114],[81.74831,18.69433],[81.73624,18.69588],[81.72943,18.69844],[81.74831,18.71272],[81.75478,18.72557],[81.75689,18.73852],[81.76716,18.74048],[81.77282,18.74597],[81.77218,18.75555],[81.7769,18.76454],[81.77733,18.77298],[81.77162,18.76951],[81.75996,18.77271],[81.76675,18.78482],[81.76155,18.79481],[81.75498,18.79779],[81.7574,18.80891],[81.74686,18.81627],[81.74023,18.81812],[81.73827,18.82156],[81.72811,18.82682],[81.72357,18.82665],[81.72037,18.82853],[81.71964,18.83354],[81.71232,18.83798],[81.70451,18.82439],[81.69316,18.82127],[81.68732,18.82352],[81.68099,18.81696],[81.67925,18.80991],[81.66802,18.80354],[81.66546,18.80317],[81.65563,18.8085],[81.65012,18.8179],[81.64252,18.82209],[81.6418,18.81833],[81.63687,18.81482],[81.63133,18.81234],[81.62707,18.81359],[81.62317,18.8235],[81.61126,18.8312],[81.61371,18.83353],[81.62032,18.83398],[81.61957,18.84112],[81.61075,18.84493],[81.60576,18.8524],[81.6021,18.85446],[81.59066,18.84316],[81.58219,18.84484],[81.57966,18.85316],[81.57461,18.86166],[81.57334,18.86779],[81.56508,18.8677],[81.56263,18.87489],[81.55617,18.87526],[81.55679,18.87955],[81.55039,18.88134],[81.54803,18.88419],[81.54502,18.89057],[81.54877,18.89683],[81.55165,18.90619],[81.55588,18.91194],[81.52455,18.92345],[81.51564,18.91659],[81.51529,18.91388],[81.51151,18.91665],[81.51087,18.92003],[81.50893,18.91981],[81.50836,18.92678],[81.50573,18.93087],[81.49834,18.93291],[81.49752,18.93589],[81.49223,18.93902],[81.4737,18.94465],[81.46567,18.94556],[81.46321,18.94958],[81.46466,18.95914],[81.45721,18.96622],[81.4626,18.96851],[81.48014,18.97132],[81.48422,18.97371],[81.47628,18.97819],[81.46949,18.9915],[81.47036,18.99408],[81.46812,18.99654],[81.46819,19.00088],[81.47145,19.00304],[81.47237,19.00644],[81.48086,19.00424],[81.48503,19.01022],[81.48897,19.00811],[81.49306,19.0118],[81.50239,19.01237],[81.5095,19.00946],[81.51677,19.01328],[81.5193,19.01689],[81.52399,19.01841],[81.52131,19.02296],[81.52302,19.03062],[81.52932,19.03729],[81.51265,19.04313],[81.50267,19.04455],[81.49695,19.05282],[81.50158,19.06164],[81.51644,19.06551],[81.51663,19.06685],[81.51048,19.07062],[81.50419,19.07037],[81.49048,19.08484],[81.49081,19.08721],[81.49364,19.08947],[81.49192,19.0905],[81.49187,19.0941],[81.49434,19.10115],[81.48848,19.10802],[81.48748,19.11416],[81.48461,19.11724],[81.47856,19.11713],[81.47335,19.12857],[81.45654,19.14257],[81.42686,19.16362],[81.41738,19.17377],[81.40323,19.1756],[81.38853,19.17212],[81.38459,19.16901],[81.37085,19.17829],[81.3635,19.16994],[81.3583,19.16049],[81.34879,19.15329],[81.34096,19.14291],[81.32904,19.14904],[81.31953,19.15059],[81.31619,19.15346],[81.31459,19.16159],[81.30208,19.16778],[81.2964,19.18459],[81.29983,19.19354],[81.30515,19.18861],[81.30978,19.18702],[81.31149,19.18759],[81.31133,19.19351]],[[81.37333,18.52407],[81.3774,18.52607],[81.38023,18.52338],[81.38106,18.51666],[81.38854,18.51177],[81.38717,18.50976],[81.37749,18.50574],[81.37057,18.50615],[81.36567,18.5146],[81.37333,18.52407]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"377","area_level":"District","area_name":"Dhamtari","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.46009,20.6121],[81.46208,20.61623],[81.46218,20.61919],[81.4625,20.62081],[81.45908,20.6257],[81.45788,20.62417],[81.45704,20.62413],[81.45329,20.6193],[81.4544,20.61756],[81.4498,20.61543],[81.44959,20.61407],[81.45237,20.61376],[81.45126,20.61145],[81.44787,20.61208],[81.4471,20.60886],[81.44747,20.60803],[81.44649,20.60393],[81.44386,20.60203],[81.44302,20.59483],[81.44556,20.59152],[81.44454,20.58824],[81.44616,20.58907],[81.44922,20.58964],[81.44848,20.5947],[81.44927,20.60432],[81.45111,20.6073],[81.45556,20.60853],[81.45602,20.61031],[81.46009,20.6121]]],[[[81.61435,21.02399],[81.61368,21.0259],[81.61084,21.02691],[81.60712,21.01813],[81.61301,21.0113],[81.62158,20.99079],[81.61883,20.98536],[81.61162,20.98404],[81.60953,20.98095],[81.60951,20.97615],[81.61318,20.96601],[81.60707,20.95764],[81.60465,20.95582],[81.59555,20.95506],[81.59037,20.9516],[81.59081,20.94367],[81.58879,20.94055],[81.56875,20.93808],[81.56523,20.93258],[81.55003,20.93385],[81.54094,20.9302],[81.52934,20.91842],[81.52866,20.90773],[81.5237,20.89673],[81.51767,20.8928],[81.49832,20.89411],[81.49586,20.89051],[81.49434,20.88315],[81.48732,20.8756],[81.48541,20.87056],[81.48158,20.87292],[81.47208,20.87067],[81.474,20.86833],[81.47335,20.86035],[81.47532,20.8563],[81.4783,20.85606],[81.48428,20.85165],[81.48908,20.85196],[81.49016,20.8499],[81.49827,20.84702],[81.4978,20.84185],[81.49484,20.84216],[81.49296,20.83866],[81.4933,20.8334],[81.49731,20.83323],[81.49937,20.83024],[81.51538,20.82953],[81.51703,20.82776],[81.51605,20.82014],[81.51325,20.81535],[81.51477,20.81156],[81.51078,20.79811],[81.50472,20.79742],[81.50171,20.79225],[81.49489,20.78997],[81.49424,20.78207],[81.47856,20.77606],[81.47922,20.7683],[81.48156,20.76809],[81.48348,20.76438],[81.4859,20.76452],[81.48789,20.75867],[81.48475,20.75307],[81.48597,20.75185],[81.48454,20.74924],[81.48769,20.74546],[81.48288,20.73965],[81.47818,20.72731],[81.48404,20.72564],[81.48461,20.72119],[81.48685,20.72098],[81.491,20.71423],[81.49472,20.7136],[81.49955,20.71702],[81.4992,20.71828],[81.50211,20.71894],[81.5161,20.71375],[81.5146,20.7006],[81.51205,20.699],[81.51224,20.69576],[81.50913,20.69339],[81.50818,20.68978],[81.50988,20.68576],[81.51134,20.68562],[81.51302,20.67825],[81.51045,20.66319],[81.50557,20.66394],[81.50275,20.66346],[81.50278,20.6623],[81.49447,20.66206],[81.49239,20.65487],[81.49694,20.65192],[81.50097,20.6439],[81.50049,20.6365],[81.49108,20.63325],[81.48855,20.62705],[81.49161,20.62456],[81.48943,20.62226],[81.49187,20.61871],[81.49141,20.61712],[81.49734,20.61068],[81.49962,20.61222],[81.50002,20.61784],[81.50912,20.62059],[81.51085,20.62371],[81.51379,20.62336],[81.51289,20.6135],[81.49165,20.60195],[81.49144,20.59998],[81.49072,20.60252],[81.48107,20.60161],[81.47301,20.59937],[81.4714,20.59502],[81.49048,20.59133],[81.49224,20.59147],[81.49282,20.59714],[81.49801,20.59349],[81.50841,20.59219],[81.51036,20.59275],[81.5119,20.59596],[81.51571,20.58943],[81.4953,20.58783],[81.48877,20.58221],[81.48102,20.58877],[81.47499,20.59104],[81.46944,20.59072],[81.4705,20.58826],[81.46425,20.58446],[81.45689,20.58814],[81.44727,20.58528],[81.45299,20.57564],[81.45511,20.56692],[81.44536,20.5675],[81.42819,20.5624],[81.42368,20.55257],[81.41036,20.55443],[81.41014,20.54407],[81.41205,20.5402],[81.41082,20.52575],[81.41561,20.52516],[81.42431,20.51566],[81.43725,20.51846],[81.45783,20.5135],[81.48066,20.51374],[81.48809,20.512],[81.49548,20.52037],[81.50284,20.51995],[81.50155,20.51657],[81.50446,20.51015],[81.5049,20.50237],[81.50986,20.49632],[81.51659,20.49309],[81.52199,20.49285],[81.52474,20.49274],[81.53838,20.50073],[81.53836,20.50977],[81.53988,20.50994],[81.54108,20.51519],[81.55639,20.51391],[81.55852,20.51412],[81.56041,20.51712],[81.57197,20.51887],[81.57914,20.51719],[81.58839,20.51885],[81.59423,20.51693],[81.59776,20.51874],[81.60051,20.51833],[81.6066,20.51226],[81.61645,20.5171],[81.61917,20.51425],[81.63475,20.50879],[81.64078,20.50448],[81.64132,20.49503],[81.65928,20.49779],[81.69233,20.4813],[81.7351,20.48193],[81.73461,20.47825],[81.73142,20.47444],[81.73358,20.46986],[81.73651,20.47046],[81.73978,20.46854],[81.74051,20.4629],[81.73746,20.45727],[81.73689,20.44444],[81.73428,20.44113],[81.7329,20.43168],[81.73627,20.4191],[81.74053,20.41511],[81.74089,20.41143],[81.74462,20.40688],[81.74346,20.4037],[81.74706,20.40358],[81.74829,20.40051],[81.75138,20.40035],[81.75335,20.39336],[81.75782,20.39025],[81.76243,20.39061],[81.76899,20.38221],[81.76504,20.37865],[81.7651,20.37493],[81.76693,20.37303],[81.76251,20.35967],[81.76333,20.35437],[81.77479,20.35288],[81.78157,20.35675],[81.7831,20.34775],[81.78202,20.34606],[81.79503,20.32628],[81.79333,20.32087],[81.78409,20.31883],[81.77492,20.31964],[81.77433,20.30911],[81.76617,20.30963],[81.76133,20.3064],[81.75909,20.29728],[81.75851,20.29337],[81.76185,20.28583],[81.7606,20.28297],[81.77309,20.27848],[81.77805,20.27817],[81.78015,20.28199],[81.78923,20.28772],[81.79185,20.27561],[81.80031,20.26467],[81.79923,20.25591],[81.78436,20.26112],[81.78553,20.25611],[81.78288,20.2494],[81.77991,20.24743],[81.77495,20.23202],[81.78163,20.22755],[81.78524,20.20932],[81.80112,20.21418],[81.80535,20.19763],[81.81172,20.18859],[81.8088,20.17851],[81.81421,20.1673],[81.8257,20.16943],[81.82963,20.16728],[81.84061,20.16632],[81.84619,20.16429],[81.84532,20.1588],[81.847,20.13433],[81.84543,20.11281],[81.85436,20.10252],[81.85772,20.09602],[81.86614,20.09114],[81.86796,20.08854],[81.87146,20.05879],[81.86924,20.05512],[81.87598,20.05206],[81.88191,20.04434],[81.8873,20.04402],[81.89528,20.04824],[81.90144,20.05791],[81.91606,20.07198],[81.92138,20.07997],[81.92276,20.08716],[81.92601,20.09173],[81.93387,20.09604],[81.93384,20.09821],[81.93713,20.10235],[81.93852,20.10156],[81.94564,20.10517],[81.95815,20.09785],[81.96333,20.09045],[81.97589,20.08171],[81.98386,20.07324],[81.98416,20.06803],[81.98739,20.06133],[81.99534,20.05357],[82.00337,20.05334],[82.00325,20.05513],[82.00575,20.05561],[82.01227,20.05391],[82.01821,20.04902],[82.02161,20.05391],[82.02249,20.06209],[82.02777,20.07238],[82.03132,20.07602],[82.03633,20.096],[82.03546,20.09929],[82.0448,20.09627],[82.06359,20.10521],[82.0699,20.10609],[82.07708,20.10291],[82.09259,20.10072],[82.10553,20.1055],[82.11149,20.1127],[82.11401,20.11671],[82.11446,20.13476],[82.12925,20.14146],[82.13737,20.14886],[82.13193,20.15772],[82.13405,20.16292],[82.13242,20.16692],[82.13542,20.17512],[82.13347,20.17856],[82.13341,20.18286],[82.13899,20.19721],[82.14467,20.20582],[82.14782,20.21797],[82.1503,20.22288],[82.15452,20.22322],[82.16079,20.2295],[82.16451,20.23048],[82.1622,20.23583],[82.1637,20.23913],[82.17395,20.25181],[82.18022,20.25701],[82.17372,20.26056],[82.16655,20.26045],[82.16041,20.26522],[82.15561,20.26959],[82.15684,20.27724],[82.14515,20.28722],[82.13175,20.28868],[82.11589,20.28752],[82.10861,20.29074],[82.10538,20.30344],[82.09565,20.32259],[82.08551,20.32993],[82.08826,20.33679],[82.08857,20.3455],[82.08551,20.357],[82.08086,20.36533],[82.0808,20.36871],[82.08549,20.37888],[82.08525,20.38245],[82.08192,20.38562],[82.08037,20.39134],[82.0814,20.3954],[82.08517,20.39837],[82.08406,20.40463],[82.08529,20.41043],[82.07584,20.42132],[82.07451,20.42917],[82.07164,20.432],[82.06441,20.43402],[82.06154,20.43728],[82.06331,20.44604],[82.05693,20.45162],[82.05186,20.46307],[82.05621,20.47625],[82.04863,20.4892],[82.04773,20.50074],[82.04086,20.50309],[82.03511,20.51876],[82.02281,20.52458],[82.02101,20.52735],[82.02144,20.54381],[82.01775,20.55902],[82.01791,20.57601],[82.00862,20.59353],[81.99457,20.63524],[81.99808,20.64831],[82.00156,20.65169],[82.0064,20.66439],[82.01212,20.66955],[82.01244,20.67319],[82.00933,20.67692],[82.00351,20.67905],[81.99827,20.68386],[81.99321,20.69246],[81.98299,20.70176],[81.98158,20.70734],[81.98458,20.71962],[81.98148,20.72392],[81.97494,20.7281],[81.95584,20.73497],[81.93818,20.73823],[81.92588,20.74712],[81.92284,20.75141],[81.92422,20.76341],[81.92156,20.77131],[81.90925,20.78661],[81.91108,20.79452],[81.92243,20.8057],[81.92451,20.80939],[81.92436,20.81305],[81.92093,20.81836],[81.91284,20.82389],[81.90565,20.832],[81.90237,20.83963],[81.89962,20.85468],[81.89115,20.86739],[81.88803,20.88151],[81.89245,20.89826],[81.8897,20.90419],[81.88016,20.91103],[81.87711,20.91753],[81.87641,20.93167],[81.87331,20.93998],[81.87322,20.96459],[81.87125,20.96271],[81.85909,20.95955],[81.85693,20.95619],[81.85675,20.94657],[81.85426,20.94305],[81.84796,20.94079],[81.83547,20.94032],[81.83349,20.94302],[81.82851,20.94298],[81.82895,20.94528],[81.82631,20.9448],[81.82411,20.94901],[81.82212,20.94757],[81.81798,20.94852],[81.8147,20.94627],[81.81171,20.95192],[81.81236,20.95447],[81.8152,20.95428],[81.81483,20.95857],[81.81103,20.96313],[81.80756,20.96311],[81.80535,20.96625],[81.80248,20.96674],[81.80118,20.96468],[81.79382,20.96655],[81.79277,20.96454],[81.78932,20.96445],[81.78083,20.96993],[81.77964,20.96919],[81.77869,20.97456],[81.77583,20.97662],[81.77391,20.98239],[81.76869,20.98195],[81.76207,20.98585],[81.76075,20.98851],[81.76289,20.99149],[81.75759,20.99487],[81.75647,21.0012],[81.75153,21.00198],[81.7515,21.00879],[81.74826,21.01146],[81.73351,21.01352],[81.71675,21.01088],[81.71744,21.01346],[81.7136,21.01845],[81.70736,21.01818],[81.70199,21.01064],[81.70102,21.00548],[81.69853,21.00381],[81.68933,21.00336],[81.68214,20.99584],[81.67454,21.00095],[81.67044,21.00063],[81.66977,20.99836],[81.6605,21.00164],[81.65554,20.99984],[81.65533,21.00415],[81.65216,21.00685],[81.64836,21.0076],[81.64765,21.00972],[81.63846,21.00909],[81.63453,21.01152],[81.63218,21.01539],[81.62893,21.01591],[81.62777,21.01889],[81.62439,21.01593],[81.62164,21.02104],[81.61715,21.02023],[81.61651,21.02425],[81.61435,21.02399]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"378","area_level":"District","area_name":"Durg","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.36053,21.54036],[81.36125,21.54359],[81.35531,21.54453],[81.35241,21.53973],[81.35381,21.53846],[81.35158,21.5378],[81.34863,21.53978],[81.34502,21.53824],[81.34408,21.53988],[81.34384,21.53801],[81.34072,21.53709],[81.33811,21.53961],[81.33082,21.54114],[81.32839,21.53277],[81.31701,21.53533],[81.31383,21.53742],[81.3068,21.52078],[81.30816,21.51478],[81.30131,21.51273],[81.27438,21.5136],[81.27516,21.52446],[81.27471,21.52611],[81.27246,21.52642],[81.27297,21.53109],[81.27138,21.53395],[81.25852,21.53483],[81.25076,21.53742],[81.24974,21.53419],[81.24756,21.53455],[81.24482,21.52837],[81.24351,21.52824],[81.24176,21.53055],[81.23126,21.5308],[81.22771,21.53306],[81.21955,21.53339],[81.21921,21.52177],[81.22227,21.51797],[81.22345,21.51155],[81.2213,21.5058],[81.20871,21.50742],[81.20379,21.52017],[81.20158,21.52038],[81.20082,21.51754],[81.19542,21.51818],[81.1878,21.49626],[81.17867,21.4965],[81.16796,21.5011],[81.15784,21.50312],[81.15767,21.49714],[81.15952,21.49529],[81.1601,21.49101],[81.15941,21.48621],[81.16384,21.4835],[81.171,21.48483],[81.18166,21.48238],[81.18019,21.471],[81.17744,21.46852],[81.17663,21.46038],[81.17978,21.4568],[81.17908,21.44807],[81.17443,21.44254],[81.17111,21.43401],[81.17355,21.42692],[81.17706,21.42401],[81.17704,21.41337],[81.18458,21.40766],[81.18313,21.402],[81.17693,21.40271],[81.17545,21.39974],[81.17765,21.39982],[81.17771,21.39712],[81.18,21.39579],[81.18757,21.3962],[81.1907,21.39273],[81.19245,21.3876],[81.19461,21.36996],[81.19266,21.36378],[81.18775,21.35973],[81.18909,21.35681],[81.18813,21.34375],[81.19602,21.3387],[81.19646,21.33575],[81.19312,21.33462],[81.19238,21.33248],[81.18618,21.33381],[81.1859,21.32154],[81.18476,21.31936],[81.17764,21.31858],[81.17656,21.30363],[81.17403,21.29606],[81.172,21.29429],[81.16806,21.29554],[81.1624,21.29403],[81.16064,21.28354],[81.16353,21.27725],[81.16559,21.26587],[81.16312,21.2505],[81.15191,21.24941],[81.14894,21.24484],[81.14844,21.23876],[81.15489,21.23713],[81.15919,21.23913],[81.16421,21.2355],[81.16237,21.23353],[81.16179,21.22922],[81.15024,21.22694],[81.14978,21.21321],[81.14842,21.2121],[81.15494,21.21021],[81.15601,21.21562],[81.16481,21.21642],[81.16887,21.21877],[81.17878,21.21659],[81.18636,21.21725],[81.18721,21.22001],[81.1888,21.21893],[81.18911,21.22063],[81.19872,21.22198],[81.19891,21.20818],[81.19616,21.19646],[81.20732,21.19045],[81.20861,21.18717],[81.20714,21.1737],[81.21487,21.17264],[81.21663,21.16826],[81.21395,21.15648],[81.21483,21.1483],[81.21022,21.14816],[81.20976,21.14353],[81.20804,21.14294],[81.20962,21.13426],[81.20802,21.13087],[81.20859,21.12516],[81.19936,21.12525],[81.19668,21.1241],[81.19554,21.12125],[81.198,21.12024],[81.19523,21.11376],[81.2065,21.11055],[81.20744,21.10416],[81.20544,21.09911],[81.19458,21.09234],[81.18976,21.09188],[81.17917,21.10085],[81.16619,21.1031],[81.16293,21.10079],[81.15935,21.09468],[81.15297,21.09186],[81.1516,21.0892],[81.1533,21.0888],[81.15431,21.0858],[81.15485,21.07656],[81.15915,21.07857],[81.15831,21.06978],[81.17759,21.0693],[81.17957,21.07109],[81.1914,21.07158],[81.19249,21.0588],[81.19632,21.05763],[81.19176,21.03935],[81.20673,21.03674],[81.2087,21.02816],[81.2194,21.02846],[81.22426,21.0469],[81.2351,21.0468],[81.23945,21.04537],[81.24039,21.0421],[81.26514,21.04146],[81.27072,21.03701],[81.2733,21.04062],[81.2723,21.04929],[81.28377,21.04894],[81.29023,21.05592],[81.30119,21.0622],[81.30198,21.04426],[81.30439,21.04051],[81.30782,21.04105],[81.32904,21.03656],[81.33989,21.0375],[81.34825,21.04154],[81.35126,21.04043],[81.35368,21.03713],[81.35794,21.03676],[81.36068,21.03927],[81.36558,21.038],[81.3687,21.03923],[81.37212,21.04405],[81.36974,21.04382],[81.37168,21.05439],[81.38902,21.05701],[81.39065,21.05428],[81.38887,21.04857],[81.38917,21.04317],[81.39148,21.03873],[81.38923,21.02777],[81.39225,21.025],[81.39248,21.02117],[81.39422,21.02124],[81.39499,21.01935],[81.39407,21.01586],[81.40024,21.0157],[81.4037,21.00872],[81.40752,21.00879],[81.4121,21.00556],[81.42007,21.00635],[81.42083,20.98753],[81.40345,20.98273],[81.4087,20.97717],[81.41017,20.97231],[81.42076,20.96933],[81.42062,20.96767],[81.42547,20.96675],[81.4254,20.96376],[81.428,20.9634],[81.42158,20.9504],[81.41697,20.95044],[81.4171,20.94866],[81.41508,20.94856],[81.41499,20.94695],[81.40485,20.9401],[81.40609,20.93556],[81.40995,20.93607],[81.40994,20.93412],[81.40516,20.93136],[81.40633,20.92681],[81.40526,20.91888],[81.40664,20.91771],[81.40678,20.91322],[81.40813,20.91319],[81.4091,20.89956],[81.41421,20.89903],[81.41302,20.89002],[81.39822,20.88392],[81.39961,20.87697],[81.39622,20.88018],[81.39361,20.87935],[81.39137,20.88079],[81.38803,20.86858],[81.39765,20.85872],[81.40447,20.85925],[81.40746,20.85616],[81.40728,20.85423],[81.41587,20.85252],[81.41649,20.84939],[81.4205,20.84991],[81.42306,20.85268],[81.42516,20.85178],[81.42906,20.8558],[81.43507,20.85133],[81.44211,20.85158],[81.44731,20.85438],[81.45142,20.8491],[81.45847,20.85521],[81.46645,20.8542],[81.46418,20.85766],[81.46537,20.86227],[81.4602,20.86573],[81.45997,20.86887],[81.48112,20.87292],[81.485,20.87033],[81.48732,20.8756],[81.49434,20.88315],[81.49586,20.89051],[81.49832,20.89411],[81.51767,20.8928],[81.5237,20.89673],[81.52866,20.90773],[81.52934,20.91842],[81.54011,20.92964],[81.55003,20.93385],[81.56523,20.93258],[81.56875,20.93808],[81.58914,20.94072],[81.59081,20.94367],[81.59037,20.9516],[81.59677,20.95548],[81.60523,20.95605],[81.6128,20.96492],[81.60927,20.98026],[81.61162,20.98404],[81.61883,20.98536],[81.62167,20.99167],[81.61245,21.01233],[81.60712,21.01813],[81.61114,21.02606],[81.60983,21.02839],[81.60583,21.03016],[81.60366,21.03571],[81.58756,21.04365],[81.58571,21.04634],[81.5877,21.04963],[81.59762,21.05002],[81.60658,21.05538],[81.60782,21.06072],[81.60515,21.06658],[81.60275,21.06817],[81.59271,21.06678],[81.57799,21.07302],[81.57826,21.08432],[81.57502,21.0899],[81.57892,21.09817],[81.58114,21.10866],[81.58124,21.12279],[81.5944,21.14264],[81.60196,21.14535],[81.60537,21.14846],[81.60535,21.15284],[81.60261,21.15829],[81.60623,21.15989],[81.62333,21.1589],[81.62543,21.16131],[81.61816,21.16869],[81.60561,21.19275],[81.60532,21.20025],[81.60214,21.20674],[81.59495,21.20967],[81.58781,21.21656],[81.57515,21.22228],[81.56286,21.24071],[81.56061,21.2417],[81.55302,21.23961],[81.54947,21.24045],[81.54171,21.24872],[81.54618,21.26973],[81.53755,21.28773],[81.53409,21.29961],[81.53665,21.30209],[81.5381,21.30049],[81.54075,21.30081],[81.55005,21.30498],[81.554,21.33326],[81.54863,21.3327],[81.54906,21.33447],[81.53864,21.34085],[81.5354,21.34766],[81.52429,21.34709],[81.52403,21.34903],[81.50948,21.34999],[81.49607,21.35374],[81.49518,21.35628],[81.49815,21.35797],[81.49914,21.3617],[81.49948,21.37196],[81.49716,21.37455],[81.49183,21.3747],[81.4899,21.38368],[81.47868,21.38407],[81.48197,21.38936],[81.4835,21.39831],[81.49105,21.39958],[81.49244,21.39751],[81.49487,21.39717],[81.49631,21.40035],[81.50183,21.40483],[81.50194,21.41123],[81.49832,21.41264],[81.49642,21.41617],[81.49032,21.41975],[81.4818,21.4204],[81.47995,21.42234],[81.46831,21.42119],[81.46976,21.41844],[81.46855,21.41775],[81.47072,21.41558],[81.46866,21.40873],[81.45599,21.40909],[81.44943,21.40572],[81.43852,21.40785],[81.44104,21.41929],[81.44642,21.42077],[81.44925,21.42697],[81.45197,21.42748],[81.45071,21.43159],[81.45195,21.44389],[81.44978,21.45147],[81.45785,21.45771],[81.46957,21.47163],[81.44847,21.483],[81.44317,21.48414],[81.44185,21.48717],[81.44529,21.49188],[81.44672,21.49941],[81.46446,21.49542],[81.47003,21.50749],[81.44842,21.51768],[81.44164,21.51568],[81.44262,21.51788],[81.42655,21.51765],[81.41009,21.52038],[81.4072,21.51919],[81.38949,21.52355],[81.38432,21.52352],[81.37604,21.51577],[81.37506,21.5288],[81.36308,21.53296],[81.3598,21.53636],[81.36053,21.54036]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"379","area_level":"District","area_name":"Janjgir-Champa","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.58317,22.02374],[81.57734,22.02425],[81.573,22.01887],[81.57348,22.01657],[81.58329,22.01464],[81.58444,22.0162],[81.58636,22.01591],[81.59128,22.01077],[81.59133,22.00671],[81.58903,22.00653],[81.5884,22.00324],[81.58983,22.00266],[81.5888,21.99791],[81.59162,21.99345],[81.5898,21.9879],[81.58419,21.98816],[81.57986,21.98202],[81.5772,21.9834],[81.57648,21.98846],[81.57343,21.98967],[81.57379,21.99429],[81.57175,21.99679],[81.56722,21.9945],[81.55784,21.99524],[81.55921,21.99795],[81.55736,22.00177],[81.55045,22.00063],[81.54907,21.9964],[81.55205,21.99404],[81.5521,21.98856],[81.55543,21.9892],[81.55377,21.98452],[81.55042,21.98471],[81.54784,21.98117],[81.5435,21.98086],[81.54361,21.97877],[81.53805,21.97474],[81.53651,21.97622],[81.53335,21.97229],[81.53352,21.96031],[81.53847,21.95657],[81.53845,21.95251],[81.54158,21.95417],[81.54138,21.95152],[81.55024,21.9489],[81.54963,21.94429],[81.5441,21.94441],[81.54042,21.94019],[81.53779,21.94212],[81.53738,21.93866],[81.536,21.94059],[81.53381,21.9382],[81.5289,21.94011],[81.52946,21.94229],[81.52545,21.94307],[81.52527,21.94517],[81.52146,21.94447],[81.52072,21.9395],[81.51566,21.94],[81.51421,21.93786],[81.50818,21.93708],[81.50385,21.92689],[81.50464,21.91909],[81.506,21.91858],[81.50708,21.92064],[81.50855,21.91971],[81.51076,21.92474],[81.51809,21.92271],[81.52179,21.92603],[81.52753,21.92258],[81.53049,21.90853],[81.53307,21.90895],[81.53478,21.90668],[81.53565,21.89803],[81.54013,21.89481],[81.55212,21.89623],[81.55421,21.89817],[81.55383,21.89332],[81.54915,21.89168],[81.54857,21.88809],[81.55816,21.88423],[81.55494,21.88051],[81.55575,21.8781],[81.55322,21.87524],[81.55624,21.87357],[81.56036,21.87656],[81.56383,21.87548],[81.5615,21.87228],[81.56296,21.8676],[81.56857,21.86072],[81.58138,21.85239],[81.57872,21.84601],[81.5901,21.83522],[81.59883,21.8346],[81.60861,21.83056],[81.61518,21.83027],[81.62136,21.83281],[81.62772,21.83152],[81.63475,21.82319],[81.65342,21.81565],[81.66708,21.81771],[81.67505,21.81377],[81.67852,21.81609],[81.68912,21.815],[81.69615,21.80954],[81.70421,21.81545],[81.7148,21.81379],[81.7167,21.81237],[81.71748,21.80812],[81.72827,21.80138],[81.73171,21.80152],[81.73578,21.79665],[81.74255,21.7932],[81.74629,21.79546],[81.74585,21.80317],[81.74829,21.80366],[81.74919,21.80027],[81.75469,21.79584],[81.75564,21.77941],[81.76595,21.77306],[81.7664,21.76892],[81.76834,21.76743],[81.77285,21.76942],[81.78107,21.7633],[81.78405,21.76278],[81.79569,21.76999],[81.80533,21.77237],[81.8088,21.76655],[81.8152,21.76054],[81.82208,21.75929],[81.82905,21.76067],[81.84238,21.75793],[81.85072,21.76048],[81.85857,21.76848],[81.87139,21.77032],[81.87948,21.77454],[81.89581,21.77937],[81.9115,21.79522],[81.93711,21.81391],[81.92318,21.82432],[81.92154,21.83329],[81.89431,21.84019],[81.89945,21.85203],[81.9007,21.86794],[81.89875,21.86894],[81.89635,21.86751],[81.89484,21.86985],[81.898,21.88022],[81.90072,21.8834],[81.88857,21.88925],[81.88583,21.89285],[81.8755,21.89138],[81.87509,21.88614],[81.86961,21.88211],[81.86143,21.88393],[81.86069,21.88824],[81.85768,21.88899],[81.85875,21.89744],[81.853,21.89742],[81.83789,21.89266],[81.84213,21.88628],[81.84166,21.88066],[81.83598,21.87834],[81.83351,21.87995],[81.8313,21.87876],[81.82084,21.88014],[81.82062,21.88202],[81.81641,21.88376],[81.81872,21.89767],[81.82293,21.89989],[81.82461,21.91328],[81.82014,21.91892],[81.80343,21.92288],[81.80347,21.92488],[81.79587,21.92911],[81.79625,21.93645],[81.80016,21.94732],[81.79664,21.94816],[81.7863,21.9466],[81.78678,21.9501],[81.77296,21.95402],[81.77116,21.94953],[81.76308,21.94735],[81.75599,21.95386],[81.75549,21.95858],[81.7528,21.95994],[81.74463,21.94909],[81.74231,21.94941],[81.7394,21.9465],[81.72971,21.94693],[81.72923,21.94366],[81.7276,21.94365],[81.72164,21.94643],[81.72109,21.9507],[81.71568,21.95196],[81.71524,21.9535],[81.70585,21.95238],[81.70677,21.95887],[81.70562,21.95971],[81.68647,21.96225],[81.68626,21.95986],[81.6832,21.95883],[81.66779,21.96265],[81.65786,21.96887],[81.65876,21.97795],[81.66316,21.98121],[81.66326,21.98463],[81.65969,21.98555],[81.65746,21.98812],[81.65528,21.98778],[81.65514,21.98906],[81.64773,21.99061],[81.64775,21.9924],[81.64022,21.98901],[81.63294,21.99106],[81.63257,21.98839],[81.62668,21.98573],[81.62367,21.98768],[81.61572,21.98837],[81.61688,22.00202],[81.61096,22.00422],[81.61172,22.00827],[81.60916,22.00962],[81.61113,22.01347],[81.60604,22.01511],[81.60719,22.01675],[81.6037,22.01742],[81.59671,22.01807],[81.59612,22.01692],[81.59001,22.01928],[81.58873,22.01771],[81.58487,22.01819],[81.58478,22.02329],[81.58317,22.02374]]],[[[82.64289,22.22456],[82.64504,22.23873],[82.61584,22.25698],[82.60079,22.25987],[82.59321,22.26344],[82.59056,22.25698],[82.5918,22.2469],[82.58599,22.23875],[82.58262,22.23053],[82.57101,22.22107],[82.55658,22.21776],[82.55287,22.21143],[82.54472,22.20787],[82.53607,22.21258],[82.53594,22.23215],[82.52661,22.23921],[82.52403,22.24736],[82.52047,22.25163],[82.51254,22.25065],[82.51048,22.2532],[82.50265,22.24911],[82.49965,22.25059],[82.49634,22.24769],[82.49627,22.24517],[82.49075,22.24616],[82.49277,22.24449],[82.48988,22.24001],[82.48196,22.23848],[82.48242,22.23428],[82.47755,22.23058],[82.47671,22.22593],[82.47082,22.22453],[82.45785,22.21082],[82.45959,22.20443],[82.45676,22.19817],[82.46,22.19693],[82.46125,22.1944],[82.47287,22.19041],[82.47217,22.18684],[82.46091,22.17801],[82.45788,22.17811],[82.4544,22.17515],[82.45162,22.17551],[82.4462,22.17293],[82.4442,22.16971],[82.43701,22.16469],[82.43319,22.15993],[82.43111,22.14922],[82.42544,22.1457],[82.42576,22.14134],[82.42265,22.13808],[82.41605,22.13919],[82.41302,22.13392],[82.4088,22.1347],[82.40579,22.13284],[82.40257,22.13315],[82.39954,22.12995],[82.39379,22.12799],[82.38982,22.12853],[82.3853,22.13377],[82.37999,22.13188],[82.37679,22.13654],[82.36852,22.13818],[82.36342,22.13488],[82.35827,22.13618],[82.35039,22.12733],[82.34473,22.12823],[82.34592,22.1241],[82.34312,22.12086],[82.34114,22.1208],[82.33935,22.11753],[82.34119,22.11448],[82.33723,22.11148],[82.33909,22.10891],[82.33395,22.10593],[82.33394,22.10036],[82.33727,22.09547],[82.33489,22.08784],[82.33669,22.07471],[82.33305,22.06924],[82.33436,22.06515],[82.33087,22.06087],[82.33093,22.0548],[82.32629,22.05005],[82.32877,22.04774],[82.3274,22.04343],[82.33013,22.03741],[82.33047,22.02641],[82.33244,22.02025],[82.33127,22.01293],[82.32948,22.00718],[82.3208,22.00179],[82.32459,21.99467],[82.32105,21.98793],[82.32142,21.98449],[82.32501,21.97934],[82.32407,21.97404],[82.32515,21.96888],[82.32307,21.9661],[82.32469,21.9642],[82.32942,21.96492],[82.33015,21.96359],[82.32817,21.95931],[82.32358,21.95618],[82.32326,21.95166],[82.31938,21.94878],[82.32056,21.94523],[82.31947,21.94155],[82.31609,21.93982],[82.30878,21.92702],[82.30923,21.92127],[82.30654,21.91776],[82.30933,21.9135],[82.30408,21.90823],[82.30639,21.90488],[82.31091,21.90647],[82.31547,21.90337],[82.30947,21.90055],[82.30832,21.89797],[82.31421,21.88659],[82.31311,21.88221],[82.31533,21.87243],[82.32173,21.8719],[82.32639,21.8638],[82.3338,21.86072],[82.33946,21.86129],[82.34204,21.85789],[82.35125,21.85293],[82.35192,21.84991],[82.34964,21.84457],[82.35738,21.83692],[82.35794,21.82707],[82.37134,21.79818],[82.37138,21.79154],[82.37457,21.78094],[82.3788,21.77888],[82.37948,21.76903],[82.38349,21.7602],[82.38638,21.76009],[82.38494,21.76483],[82.38922,21.76792],[82.40038,21.76126],[82.41126,21.76406],[82.42255,21.74727],[82.43289,21.7455],[82.43773,21.7396],[82.44365,21.74488],[82.45207,21.74407],[82.47125,21.7271],[82.48662,21.72825],[82.50061,21.7339],[82.54039,21.73722],[82.55578,21.73338],[82.57016,21.72134],[82.58445,21.71489],[82.5994,21.71413],[82.61887,21.72758],[82.62676,21.72907],[82.63443,21.72734],[82.6546,21.71127],[82.66168,21.7095],[82.67515,21.71656],[82.6842,21.72454],[82.69549,21.7276],[82.75584,21.72198],[82.79034,21.72389],[82.80092,21.72149],[82.83439,21.70919],[82.85225,21.70012],[82.87143,21.69313],[82.89401,21.69545],[82.90946,21.70342],[82.94175,21.72413],[82.96261,21.72194],[82.97461,21.72379],[82.99222,21.72972],[83.01045,21.73993],[83.02323,21.74301],[83.03312,21.74322],[83.04496,21.73972],[83.05569,21.73383],[83.08124,21.71567],[83.11504,21.72038],[83.17099,21.71815],[83.18326,21.71399],[83.19643,21.71309],[83.2141,21.70682],[83.22192,21.70612],[83.22898,21.70258],[83.23937,21.70048],[83.248,21.69554],[83.2575,21.69419],[83.27829,21.68663],[83.30341,21.68144],[83.31617,21.682],[83.31714,21.69155],[83.31571,21.69758],[83.31227,21.69844],[83.309,21.70183],[83.30881,21.70541],[83.2822,21.70802],[83.26416,21.71546],[83.26523,21.71734],[83.26322,21.72317],[83.26441,21.72532],[83.25882,21.7273],[83.2609,21.72906],[83.25998,21.73055],[83.26653,21.73503],[83.26636,21.74068],[83.25828,21.7508],[83.24574,21.75106],[83.24397,21.75974],[83.23583,21.77621],[83.23708,21.79045],[83.23344,21.79402],[83.22142,21.79373],[83.21953,21.803],[83.20605,21.81188],[83.20574,21.82234],[83.21989,21.83439],[83.22063,21.83694],[83.21322,21.84157],[83.20657,21.84198],[83.19595,21.84563],[83.18702,21.84687],[83.18426,21.84521],[83.18104,21.84635],[83.1786,21.85073],[83.1838,21.86095],[83.19417,21.86359],[83.2023,21.86812],[83.20389,21.8819],[83.21454,21.88373],[83.21488,21.88727],[83.21298,21.89147],[83.21465,21.89779],[83.21183,21.90067],[83.21485,21.90365],[83.21382,21.90751],[83.20605,21.90956],[83.20547,21.91086],[83.20716,21.9124],[83.20019,21.9146],[83.19892,21.92067],[83.19499,21.92086],[83.19507,21.92309],[83.19081,21.92416],[83.18691,21.9273],[83.18604,21.9247],[83.1821,21.92415],[83.18009,21.92673],[83.17683,21.92009],[83.17175,21.91728],[83.16686,21.92056],[83.1597,21.91905],[83.15847,21.92065],[83.15793,21.91867],[83.15356,21.91939],[83.149,21.91721],[83.14833,21.91521],[83.13583,21.92451],[83.1362,21.92919],[83.13441,21.93058],[83.13001,21.92979],[83.12659,21.93305],[83.12568,21.92994],[83.11724,21.93108],[83.11402,21.93458],[83.11455,21.93699],[83.10729,21.94291],[83.10493,21.95242],[83.10131,21.95535],[83.09103,21.97512],[83.06167,21.97677],[83.05918,21.96987],[83.05262,21.96868],[83.04995,21.96666],[83.03964,21.968],[83.03283,21.96387],[83.01756,21.97016],[83.01582,21.96805],[83.00807,21.96531],[83.00318,21.9651],[83.00231,21.97032],[82.99954,21.97263],[82.99517,21.98886],[82.99726,21.98802],[82.99832,21.98992],[83.00595,21.9847],[83.00963,21.98701],[83.01169,21.98655],[83.01536,21.99423],[83.01887,21.99565],[83.02169,22.00182],[83.02123,22.00598],[83.01546,22.00733],[83.01624,22.01047],[83.01267,22.01108],[83.01478,22.01299],[83.01426,22.01483],[83.01727,22.02013],[83.01676,22.02477],[83.01189,22.02389],[83.00564,22.0267],[83.0057,22.02864],[83.01116,22.0301],[83.01539,22.03554],[83.01933,22.03775],[83.02104,22.04161],[83.0242,22.04266],[83.02197,22.04521],[83.02821,22.05026],[83.03159,22.05082],[83.03355,22.05564],[83.0296,22.06058],[83.02176,22.05527],[83.01523,22.05457],[83.01436,22.06045],[83.01626,22.06444],[83.01382,22.06828],[83.01528,22.07612],[83.00659,22.07829],[83.00228,22.08243],[82.97002,22.09793],[82.9519,22.11427],[82.93547,22.1228],[82.92307,22.12683],[82.91823,22.13064],[82.90795,22.13474],[82.90597,22.13732],[82.90188,22.13813],[82.89209,22.16257],[82.86898,22.17186],[82.86136,22.17178],[82.85337,22.16355],[82.85281,22.15843],[82.83439,22.15571],[82.83097,22.15641],[82.82251,22.15407],[82.81867,22.15145],[82.81776,22.14782],[82.81235,22.14705],[82.80357,22.14019],[82.79661,22.1412],[82.79909,22.13561],[82.79928,22.13052],[82.79335,22.12827],[82.77036,22.12512],[82.75833,22.1175],[82.75777,22.11411],[82.75294,22.11085],[82.75895,22.10146],[82.75721,22.09824],[82.75161,22.09657],[82.74072,22.09641],[82.7379,22.08746],[82.73371,22.0873],[82.73142,22.08545],[82.73429,22.06717],[82.736,22.06515],[82.73445,22.06144],[82.73982,22.05232],[82.74057,22.03984],[82.72219,22.03943],[82.71728,22.04242],[82.71477,22.05089],[82.70848,22.05659],[82.70189,22.08439],[82.6987,22.08906],[82.68368,22.08936],[82.67933,22.08041],[82.6698,22.08106],[82.66115,22.0956],[82.64947,22.09857],[82.65194,22.10326],[82.65019,22.10699],[82.6398,22.11465],[82.63784,22.1189],[82.63735,22.12917],[82.64556,22.14876],[82.64875,22.16063],[82.66276,22.17072],[82.66492,22.17917],[82.66525,22.18803],[82.65971,22.18826],[82.65778,22.19011],[82.6488,22.20121],[82.6473,22.20725],[82.64533,22.20845],[82.64611,22.21039],[82.64253,22.21218],[82.64522,22.21734],[82.64223,22.22009],[82.64698,22.22272],[82.64289,22.22456]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"38","area_level":"District","area_name":"Moga","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.16345,31.08793],[75.16256,31.08951],[75.1578,31.08618],[75.15494,31.08623],[75.15316,31.08372],[75.14815,31.084],[75.14582,31.08571],[75.14193,31.08051],[75.13897,31.08076],[75.13389,31.07373],[75.12832,31.07644],[75.12682,31.07898],[75.12013,31.08168],[75.11799,31.08137],[75.11632,31.07812],[75.11195,31.07902],[75.10926,31.07517],[75.09931,31.07737],[75.09995,31.07214],[75.10828,31.06816],[75.10014,31.06521],[75.09459,31.07134],[75.08359,31.06873],[75.08183,31.06538],[75.08447,31.06216],[75.09646,31.05868],[75.09617,31.05024],[75.0943,31.04709],[75.07287,31.04685],[75.07146,31.05224],[75.06836,31.05323],[75.06203,31.06765],[75.05172,31.06253],[75.04731,31.05192],[75.05296,31.04283],[75.0678,31.04075],[75.06768,31.03423],[75.09551,31.02552],[75.10325,31.01534],[75.09633,31.00252],[75.10217,30.99752],[75.09613,30.99166],[75.09955,30.97911],[75.10098,30.97622],[75.10349,30.97561],[75.10297,30.9721],[75.0938,30.97545],[75.09286,30.97019],[75.08653,30.95864],[75.07762,30.95756],[75.07848,30.94639],[75.06985,30.94507],[75.05103,30.92355],[75.04082,30.92218],[75.03649,30.91729],[75.03369,30.90324],[75.03041,30.89681],[75.0161,30.89232],[75.00439,30.89324],[75.00041,30.89578],[74.99644,30.88859],[74.98028,30.89004],[74.97111,30.88915],[74.96534,30.8907],[74.95759,30.88919],[74.95223,30.89163],[74.95316,30.88881],[74.95165,30.88503],[74.94796,30.88181],[74.9458,30.88177],[74.94403,30.87782],[74.94256,30.87766],[74.94482,30.86483],[74.94792,30.85723],[74.94098,30.83899],[74.94613,30.83403],[74.94718,30.82843],[74.9281,30.80451],[74.92835,30.79446],[74.93099,30.78899],[74.91491,30.78226],[74.91433,30.77564],[74.91053,30.77064],[74.91216,30.76815],[74.91178,30.7639],[74.90715,30.75798],[74.90788,30.75376],[74.91198,30.7511],[74.91218,30.74136],[74.90877,30.73658],[74.91056,30.7346],[74.91094,30.72674],[74.90415,30.70332],[74.91553,30.68259],[74.9187,30.68239],[74.91887,30.68534],[74.92285,30.68793],[74.92198,30.67929],[74.93879,30.67825],[74.94536,30.67937],[74.95175,30.67675],[74.95528,30.67781],[74.95771,30.66985],[74.95837,30.65868],[74.95776,30.65575],[74.94998,30.64496],[74.95621,30.63691],[74.95322,30.62566],[74.94838,30.62266],[74.94673,30.60954],[74.94829,30.60898],[74.9493,30.60094],[74.95547,30.59358],[74.95298,30.59067],[74.95026,30.59179],[74.91915,30.58603],[74.91,30.58026],[74.90294,30.57062],[74.90311,30.56231],[74.90462,30.5602],[74.90319,30.55974],[74.90179,30.5514],[74.90408,30.54882],[74.91188,30.54653],[74.92627,30.53914],[74.93144,30.5451],[74.93154,30.54672],[74.9271,30.54995],[74.92764,30.55345],[74.93168,30.55953],[74.94466,30.57184],[74.95046,30.56889],[74.95558,30.56177],[74.96262,30.56061],[74.96375,30.55236],[74.97788,30.54318],[74.99036,30.54329],[74.99711,30.53307],[74.99214,30.52713],[74.9901,30.52039],[74.99389,30.51099],[74.99225,30.49984],[74.99573,30.49024],[75.0,30.48636],[75.00431,30.4914],[75.02023,30.49089],[75.02839,30.49726],[75.03242,30.50427],[75.03651,30.50477],[75.04013,30.50322],[75.04188,30.50422],[75.04291,30.50113],[75.04947,30.50143],[75.05155,30.50346],[75.05504,30.50162],[75.05861,30.50394],[75.06197,30.50147],[75.0779,30.52511],[75.08467,30.53194],[75.10524,30.52124],[75.12199,30.52444],[75.12819,30.5223],[75.13118,30.52739],[75.13078,30.5377],[75.12064,30.56085],[75.12446,30.56751],[75.13399,30.57456],[75.1384,30.57591],[75.14562,30.58238],[75.1543,30.57674],[75.15727,30.57668],[75.16074,30.57936],[75.16536,30.57905],[75.17221,30.56023],[75.17939,30.5518],[75.18308,30.53303],[75.18044,30.52114],[75.18116,30.51054],[75.19199,30.50863],[75.19545,30.51213],[75.20175,30.50696],[75.20705,30.50952],[75.20574,30.51334],[75.21202,30.51636],[75.22116,30.508],[75.22764,30.50763],[75.23127,30.50861],[75.23332,30.51184],[75.23876,30.51038],[75.24043,30.51358],[75.25,30.51773],[75.25231,30.51572],[75.2553,30.51617],[75.25771,30.51979],[75.26198,30.52086],[75.26558,30.52041],[75.26904,30.51658],[75.28287,30.50796],[75.28544,30.51029],[75.28827,30.50885],[75.29409,30.51162],[75.29302,30.51593],[75.30165,30.52246],[75.30428,30.52742],[75.30795,30.52646],[75.31176,30.5284],[75.31275,30.53549],[75.32034,30.53583],[75.32259,30.53814],[75.33092,30.5332],[75.33198,30.52807],[75.32997,30.5259],[75.33375,30.52599],[75.33457,30.52084],[75.34479,30.51467],[75.34695,30.51677],[75.35555,30.51647],[75.36059,30.51285],[75.36109,30.51529],[75.3673,30.51933],[75.36848,30.51706],[75.37089,30.5186],[75.37211,30.51778],[75.37443,30.51841],[75.37548,30.52162],[75.38609,30.5246],[75.38935,30.52731],[75.40062,30.52847],[75.40373,30.53234],[75.40953,30.53565],[75.4137,30.54362],[75.41952,30.54867],[75.41961,30.55345],[75.41602,30.55675],[75.40884,30.5587],[75.40926,30.56184],[75.404,30.56673],[75.40664,30.5672],[75.40518,30.57542],[75.40913,30.5839],[75.39735,30.59383],[75.40167,30.60639],[75.40197,30.61733],[75.39606,30.62095],[75.3948,30.62262],[75.3969,30.62411],[75.39562,30.625],[75.38787,30.62703],[75.38746,30.62584],[75.37655,30.62376],[75.37451,30.62641],[75.37642,30.62863],[75.37874,30.63965],[75.37372,30.64094],[75.37352,30.64447],[75.36974,30.64871],[75.38112,30.66287],[75.38201,30.66907],[75.37844,30.67265],[75.3764,30.67882],[75.36833,30.68483],[75.36734,30.68763],[75.36943,30.69168],[75.36836,30.69367],[75.36963,30.69941],[75.36846,30.70691],[75.37058,30.71092],[75.37293,30.70881],[75.37821,30.70881],[75.3836,30.71247],[75.38619,30.71806],[75.38506,30.7236],[75.37789,30.72394],[75.3761,30.73032],[75.37235,30.73435],[75.3731,30.73723],[75.37752,30.7394],[75.37544,30.74916],[75.37837,30.75077],[75.3775,30.75183],[75.37993,30.75402],[75.38433,30.76487],[75.39054,30.784],[75.3934,30.80186],[75.39605,30.80873],[75.3923,30.81191],[75.38105,30.81492],[75.37633,30.81862],[75.36746,30.83189],[75.36748,30.84176],[75.36935,30.84457],[75.36821,30.84529],[75.37287,30.8501],[75.37555,30.85851],[75.38346,30.86123],[75.39542,30.8715],[75.39916,30.873],[75.39861,30.88215],[75.40633,30.89159],[75.40473,30.89593],[75.39621,30.90137],[75.39649,30.90412],[75.39409,30.90419],[75.39329,30.90975],[75.37805,30.91243],[75.38253,30.92974],[75.37528,30.93169],[75.37367,30.9288],[75.36955,30.92972],[75.37159,30.93428],[75.37059,30.93958],[75.37221,30.93955],[75.37228,30.9413],[75.36627,30.94044],[75.3658,30.95225],[75.36424,30.95743],[75.36123,30.95904],[75.36236,30.9628],[75.36087,30.96343],[75.36269,30.9639],[75.36767,30.97181],[75.36309,30.97839],[75.35616,30.98442],[75.35759,30.99093],[75.35614,30.99764],[75.35863,30.99965],[75.35652,31.00112],[75.35349,30.99806],[75.35213,30.99924],[75.3522,30.99777],[75.34802,30.99681],[75.34182,30.98853],[75.33939,30.99046],[75.33522,31.00054],[75.3318,31.00319],[75.32825,31.00357],[75.32782,31.00976],[75.32187,31.00699],[75.30986,31.00925],[75.30883,31.01451],[75.29496,31.01486],[75.29467,31.02328],[75.29106,31.0356],[75.28676,31.03729],[75.28163,31.04205],[75.2713,31.03661],[75.2683,31.03994],[75.26796,31.04349],[75.25697,31.0433],[75.26263,31.03843],[75.25847,31.03059],[75.25325,31.03262],[75.2403,31.03276],[75.23901,31.03159],[75.23417,31.03436],[75.23203,31.03755],[75.22938,31.03702],[75.22411,31.03452],[75.22488,31.0295],[75.22193,31.02926],[75.21561,31.03215],[75.21002,31.0294],[75.20824,31.02561],[75.20636,31.02816],[75.20519,31.02767],[75.20365,31.02514],[75.20526,31.01966],[75.20391,31.02012],[75.20135,31.02609],[75.20599,31.03167],[75.21003,31.04028],[75.21003,31.04609],[75.20694,31.04858],[75.20692,31.05405],[75.20333,31.05477],[75.19856,31.05332],[75.19064,31.05608],[75.1772,31.05302],[75.17349,31.06231],[75.18344,31.07768],[75.17848,31.08141],[75.17317,31.08049],[75.17254,31.08306],[75.16322,31.08256],[75.16345,31.08793]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"380","area_level":"District","area_name":"Jashpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.80367,23.24591],[83.78963,23.25162],[83.78197,23.22672],[83.77553,23.22474],[83.77022,23.22832],[83.76698,23.2287],[83.76646,23.23205],[83.76221,23.23197],[83.76283,23.2357],[83.75159,23.24057],[83.74932,23.24332],[83.74367,23.24227],[83.73703,23.23612],[83.7265,23.23364],[83.71986,23.22422],[83.72075,23.21743],[83.72316,23.21414],[83.71271,23.21006],[83.70291,23.21068],[83.69852,23.21259],[83.70088,23.21517],[83.69951,23.21643],[83.70109,23.21779],[83.70196,23.22307],[83.70075,23.22506],[83.68928,23.22506],[83.67265,23.23157],[83.65404,23.22948],[83.63644,23.22178],[83.63441,23.2194],[83.62665,23.22188],[83.61881,23.21743],[83.60754,23.19822],[83.60644,23.19349],[83.60158,23.19023],[83.59648,23.19219],[83.57494,23.19414],[83.56801,23.1878],[83.57064,23.18396],[83.57086,23.17802],[83.56933,23.17488],[83.56464,23.1762],[83.55436,23.17509],[83.55188,23.16838],[83.55601,23.15391],[83.56273,23.14774],[83.56294,23.13819],[83.56056,23.13269],[83.55549,23.12698],[83.55632,23.12509],[83.53555,23.12029],[83.53544,23.11134],[83.52286,23.09681],[83.5088,23.08993],[83.50835,23.08661],[83.51138,23.08371],[83.51126,23.08089],[83.5032,23.07466],[83.49988,23.06463],[83.50342,23.06081],[83.51446,23.05663],[83.51927,23.05662],[83.52479,23.05886],[83.54015,23.04598],[83.55046,23.03371],[83.54982,23.02896],[83.54586,23.02228],[83.54348,23.02093],[83.54188,23.01522],[83.53111,23.00335],[83.52934,22.99701],[83.51215,22.98462],[83.51172,22.97488],[83.50741,22.96748],[83.50403,22.95163],[83.50658,22.94947],[83.50996,22.94065],[83.51477,22.93577],[83.52205,22.93403],[83.52479,22.92642],[83.53296,22.9198],[83.53348,22.91453],[83.54064,22.91267],[83.54462,22.90966],[83.55007,22.90492],[83.55354,22.89783],[83.55759,22.89452],[83.56346,22.89499],[83.56568,22.88956],[83.56953,22.89037],[83.57164,22.88123],[83.57069,22.87761],[83.57843,22.87283],[83.5784,22.87005],[83.59558,22.86898],[83.59539,22.86295],[83.59156,22.86009],[83.59593,22.85801],[83.5952,22.84896],[83.62354,22.84187],[83.62063,22.83026],[83.62876,22.82588],[83.63727,22.82482],[83.64595,22.82636],[83.64573,22.81709],[83.65112,22.81095],[83.65143,22.80647],[83.64949,22.80275],[83.6515,22.79305],[83.65437,22.79095],[83.65211,22.78259],[83.65757,22.77955],[83.65847,22.77653],[83.6529,22.77252],[83.65225,22.76538],[83.64803,22.76256],[83.6474,22.76034],[83.6548,22.75593],[83.65422,22.75214],[83.65663,22.74857],[83.65575,22.74688],[83.64732,22.74734],[83.64636,22.74144],[83.65074,22.73905],[83.65031,22.73667],[83.64435,22.73814],[83.64534,22.73462],[83.64395,22.73252],[83.63756,22.73235],[83.63491,22.72925],[83.63034,22.72778],[83.62887,22.71192],[83.63756,22.69911],[83.64353,22.69944],[83.66832,22.68564],[83.68171,22.6803],[83.68612,22.67184],[83.69057,22.66815],[83.68546,22.64843],[83.68694,22.64399],[83.68364,22.63838],[83.673,22.62287],[83.66798,22.62339],[83.65786,22.62997],[83.64956,22.65059],[83.64243,22.65799],[83.62969,22.66493],[83.61814,22.66688],[83.61059,22.67227],[83.596,22.67481],[83.58553,22.6807],[83.57965,22.68194],[83.57325,22.68788],[83.55093,22.69601],[83.54799,22.69542],[83.53899,22.68506],[83.52602,22.67613],[83.51169,22.67135],[83.50576,22.67127],[83.50594,22.65905],[83.49869,22.66101],[83.49108,22.6602],[83.47611,22.6676],[83.46381,22.66956],[83.46081,22.67371],[83.45601,22.67036],[83.44774,22.67474],[83.43443,22.67483],[83.43237,22.67151],[83.4351,22.66628],[83.43088,22.66518],[83.42904,22.66186],[83.42311,22.66198],[83.41863,22.65878],[83.40939,22.65808],[83.41166,22.65088],[83.41694,22.64379],[83.41229,22.64212],[83.41335,22.63797],[83.41049,22.62791],[83.40296,22.62342],[83.39224,22.62472],[83.38639,22.6197],[83.37981,22.61855],[83.40394,22.60949],[83.42711,22.60674],[83.42705,22.60039],[83.41954,22.59594],[83.41433,22.59584],[83.41183,22.58995],[83.40549,22.58573],[83.39798,22.55818],[83.39849,22.55563],[83.40424,22.55022],[83.4129,22.54862],[83.41438,22.54655],[83.41955,22.54529],[83.4202,22.54303],[83.42255,22.54395],[83.42472,22.53735],[83.42705,22.53818],[83.43069,22.53604],[83.44497,22.52224],[83.45063,22.52231],[83.45227,22.51843],[83.4555,22.51833],[83.45513,22.51608],[83.45783,22.51577],[83.46163,22.50837],[83.46616,22.50744],[83.46911,22.50387],[83.4777,22.49968],[83.48434,22.49809],[83.48528,22.49437],[83.48739,22.49508],[83.48998,22.49213],[83.49285,22.49213],[83.49263,22.49593],[83.49702,22.5007],[83.51274,22.51095],[83.54311,22.5163],[83.55162,22.52859],[83.56777,22.54201],[83.57377,22.54389],[83.58734,22.53956],[83.59583,22.53232],[83.59142,22.52665],[83.5914,22.52485],[83.59379,22.52337],[83.59183,22.523],[83.591,22.51376],[83.58226,22.48753],[83.57669,22.48048],[83.57338,22.47328],[83.57573,22.45967],[83.57983,22.45738],[83.58595,22.45004],[83.60013,22.44509],[83.60648,22.4409],[83.61691,22.43193],[83.6201,22.42467],[83.63241,22.42051],[83.64442,22.40703],[83.64458,22.39769],[83.64869,22.39137],[83.65711,22.38962],[83.67227,22.3818],[83.68828,22.37904],[83.69029,22.37596],[83.70371,22.3757],[83.70705,22.37783],[83.70838,22.38152],[83.71038,22.38204],[83.71371,22.38192],[83.72112,22.37823],[83.73182,22.37651],[83.73777,22.37743],[83.73709,22.3709],[83.74322,22.36383],[83.74588,22.35286],[83.75024,22.35072],[83.75365,22.34553],[83.75314,22.33927],[83.75832,22.33778],[83.76102,22.32975],[83.75915,22.32566],[83.76427,22.32441],[83.7683,22.31923],[83.77596,22.31863],[83.78094,22.31192],[83.78526,22.30886],[83.79565,22.30897],[83.7958,22.30292],[83.7933,22.30069],[83.80349,22.2945],[83.80219,22.28957],[83.80926,22.28895],[83.8155,22.29083],[83.81906,22.28957],[83.81985,22.29129],[83.82727,22.29387],[83.82286,22.30106],[83.826,22.3055],[83.82198,22.31153],[83.82815,22.31752],[83.83056,22.3234],[83.83524,22.32228],[83.85029,22.32523],[83.85288,22.32712],[83.85493,22.33453],[83.85431,22.33764],[83.86024,22.33875],[83.86041,22.34047],[83.86399,22.34163],[83.86426,22.34328],[83.86932,22.34125],[83.87207,22.33778],[83.87921,22.33538],[83.89033,22.33655],[83.90132,22.33936],[83.90252,22.34659],[83.90652,22.35129],[83.92328,22.35841],[83.93269,22.35396],[83.94329,22.35471],[83.94822,22.35632],[83.95499,22.36166],[83.97025,22.3588],[83.98253,22.36733],[83.99667,22.37199],[84.00578,22.37368],[84.01029,22.37158],[84.00638,22.3822],[84.01318,22.39427],[84.01339,22.39742],[84.02006,22.40856],[84.02347,22.40945],[84.02468,22.4155],[84.03027,22.42008],[84.03034,22.42664],[84.03879,22.4297],[84.04172,22.43499],[84.04725,22.43823],[84.04489,22.45286],[84.0464,22.45535],[84.04542,22.4626],[84.04725,22.46922],[84.04075,22.4731],[84.0266,22.47532],[84.01742,22.48925],[84.00287,22.49332],[83.99785,22.49762],[83.98023,22.50222],[83.98048,22.50757],[83.97466,22.51189],[83.97741,22.51587],[83.98099,22.51615],[83.98091,22.52155],[83.98673,22.52554],[83.99489,22.5281],[83.99761,22.53103],[84.00292,22.53033],[84.00439,22.52757],[84.00768,22.52612],[84.01233,22.52753],[84.0097,22.52842],[84.01002,22.53168],[84.00285,22.5459],[84.00765,22.55246],[84.00951,22.57305],[84.02417,22.58581],[84.02443,22.5918],[84.03422,22.59231],[84.04183,22.59537],[84.04885,22.5953],[84.05413,22.59811],[84.05766,22.60577],[84.06375,22.60859],[84.0696,22.62043],[84.08402,22.63812],[84.09343,22.63494],[84.11081,22.63975],[84.12348,22.63705],[84.13979,22.63823],[84.15247,22.6368],[84.15627,22.63853],[84.16328,22.64543],[84.18803,22.65523],[84.20019,22.66646],[84.2079,22.66838],[84.21308,22.66771],[84.21319,22.66576],[84.21754,22.66582],[84.22412,22.66989],[84.23321,22.67924],[84.23475,22.68611],[84.2382,22.69145],[84.23293,22.70033],[84.23413,22.71054],[84.23209,22.72555],[84.22985,22.72807],[84.23127,22.73996],[84.25557,22.7601],[84.25965,22.76699],[84.27595,22.76871],[84.28534,22.76323],[84.28936,22.76612],[84.28986,22.77137],[84.29224,22.77571],[84.29114,22.78338],[84.29794,22.79427],[84.29934,22.79589],[84.30578,22.79707],[84.3075,22.80077],[84.3151,22.80065],[84.31573,22.81192],[84.32243,22.82102],[84.32533,22.83498],[84.3252,22.83765],[84.32174,22.83774],[84.32422,22.85094],[84.33478,22.86155],[84.34423,22.85898],[84.34924,22.86098],[84.35199,22.86499],[84.35945,22.86052],[84.3726,22.86532],[84.37336,22.87159],[84.38051,22.87667],[84.37919,22.88377],[84.38315,22.89343],[84.38242,22.89652],[84.37506,22.90186],[84.37627,22.90758],[84.38136,22.91268],[84.38931,22.91525],[84.39485,22.92315],[84.39555,22.92873],[84.39368,22.94245],[84.38457,22.95068],[84.3801,22.97044],[84.37734,22.97525],[84.3729,22.97838],[84.365,22.97423],[84.35107,22.97812],[84.34376,22.97614],[84.33955,22.97999],[84.32811,22.9819],[84.31928,22.97721],[84.31898,22.97361],[84.31291,22.97186],[84.30763,22.96743],[84.28416,22.96339],[84.28054,22.96397],[84.27878,22.96691],[84.27913,22.971],[84.27708,22.97176],[84.274,22.98118],[84.27368,22.98365],[84.27853,22.98704],[84.27671,22.99067],[84.2785,22.99193],[84.27782,22.99337],[84.27055,22.98922],[84.26713,22.9832],[84.2629,22.98084],[84.2611,22.97715],[84.25302,22.97293],[84.24881,22.97382],[84.24104,22.98361],[84.23393,22.98242],[84.23035,22.98333],[84.21918,22.97913],[84.21656,22.98904],[84.20768,22.9999],[84.20085,23.00534],[84.20345,23.01446],[84.20167,23.02107],[84.19674,23.02421],[84.1858,23.02709],[84.18024,23.02444],[84.17812,23.01203],[84.17524,23.00954],[84.17869,23.00055],[84.175,22.99711],[84.1761,22.98492],[84.17808,22.98112],[84.17551,22.97601],[84.17178,22.97076],[84.14925,22.96567],[84.1463,22.97707],[84.14732,22.98801],[84.13818,23.00402],[84.1402,23.00957],[84.13395,23.02021],[84.13122,23.02235],[84.12555,23.03648],[84.12697,23.04419],[84.12473,23.04785],[84.12689,23.05782],[84.13389,23.06863],[84.13346,23.08309],[84.12617,23.08933],[84.12211,23.08797],[84.11574,23.09003],[84.11297,23.09688],[84.10898,23.0983],[84.10566,23.10509],[84.09323,23.11045],[84.09317,23.11278],[84.08205,23.11215],[84.07241,23.109],[84.06259,23.11341],[84.0583,23.12617],[84.04921,23.13451],[84.04485,23.1348],[84.03747,23.13988],[84.03669,23.14817],[84.03331,23.15224],[84.0319,23.15783],[84.03829,23.17109],[84.03134,23.17866],[84.02464,23.18241],[84.02174,23.18784],[84.01711,23.18982],[84.00971,23.18521],[84.00711,23.18649],[83.99935,23.18573],[83.99847,23.19247],[83.99343,23.19177],[83.98679,23.19555],[83.97441,23.19081],[83.96758,23.19056],[83.96296,23.18419],[83.96259,23.17946],[83.96329,23.17692],[83.9677,23.17465],[83.96752,23.17233],[83.95971,23.17312],[83.95601,23.17029],[83.95461,23.17107],[83.9549,23.16971],[83.9483,23.16858],[83.94386,23.16509],[83.94418,23.15418],[83.9351,23.15129],[83.92609,23.15062],[83.92852,23.15594],[83.92662,23.16791],[83.92042,23.17395],[83.91471,23.17426],[83.90666,23.18491],[83.90017,23.18335],[83.88511,23.18831],[83.88366,23.19031],[83.88303,23.20505],[83.87833,23.21208],[83.86546,23.21458],[83.85856,23.22042],[83.85409,23.22748],[83.84433,23.22856],[83.83765,23.23568],[83.82663,23.24321],[83.82299,23.24452],[83.8121,23.24279],[83.80624,23.24605],[83.80367,23.24591]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"381","area_level":"District","area_name":"Uttar Bastar Kanker","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.33912,20.55373],[81.33577,20.55852],[81.32419,20.56271],[81.31067,20.54916],[81.3068,20.54258],[81.3051,20.53028],[81.3025,20.52912],[81.29112,20.51644],[81.28214,20.51683],[81.27471,20.51475],[81.26136,20.50699],[81.25305,20.4988],[81.25749,20.49737],[81.26057,20.48927],[81.25907,20.48538],[81.26065,20.48371],[81.26344,20.48379],[81.26386,20.48076],[81.2634,20.47677],[81.2595,20.47305],[81.25776,20.46651],[81.25102,20.46027],[81.24912,20.45601],[81.252,20.4539],[81.25411,20.44707],[81.24381,20.44018],[81.23727,20.44499],[81.23491,20.44359],[81.23602,20.43653],[81.23366,20.43029],[81.22711,20.43136],[81.22621,20.4328],[81.22663,20.42468],[81.2219,20.41869],[81.20254,20.41597],[81.19673,20.41153],[81.18862,20.41165],[81.1766,20.4062],[81.17312,20.40614],[81.16915,20.39623],[81.1492,20.37698],[81.13087,20.38986],[81.11305,20.39879],[81.10862,20.39891],[81.10447,20.40431],[81.09559,20.40697],[81.09092,20.41235],[81.07713,20.41858],[81.05266,20.4204],[81.03373,20.42742],[81.02395,20.44165],[81.0137,20.44708],[80.99983,20.45119],[80.99188,20.45929],[80.98958,20.45288],[80.98001,20.45041],[80.97847,20.44889],[80.98066,20.44774],[80.98014,20.44519],[80.97419,20.44121],[80.9711,20.44108],[80.96631,20.43681],[80.96126,20.43686],[80.95781,20.43499],[80.94542,20.44177],[80.93099,20.43725],[80.92146,20.42796],[80.91596,20.41718],[80.90919,20.41026],[80.90369,20.40025],[80.90023,20.39892],[80.89838,20.40024],[80.89311,20.39712],[80.88692,20.38692],[80.87549,20.387],[80.87099,20.38377],[80.86615,20.38426],[80.86282,20.38803],[80.8602,20.38791],[80.85874,20.37543],[80.85524,20.37256],[80.85088,20.35285],[80.8477,20.34819],[80.83553,20.34931],[80.82344,20.35876],[80.82029,20.35706],[80.81796,20.35863],[80.81215,20.35479],[80.82638,20.34123],[80.82239,20.33099],[80.82848,20.32368],[80.82981,20.30836],[80.82187,20.29705],[80.81071,20.29632],[80.80603,20.292],[80.78949,20.28225],[80.78429,20.2827],[80.7808,20.2851],[80.78058,20.29098],[80.77606,20.29411],[80.76876,20.29327],[80.76027,20.28894],[80.75893,20.29178],[80.75027,20.29147],[80.74807,20.28858],[80.74601,20.28025],[80.74673,20.27556],[80.73316,20.26873],[80.72755,20.26859],[80.72876,20.25357],[80.73163,20.24704],[80.73491,20.24465],[80.73631,20.2395],[80.73356,20.22558],[80.72798,20.21595],[80.72852,20.21164],[80.72668,20.20558],[80.71576,20.19105],[80.71093,20.18923],[80.70442,20.19124],[80.68807,20.19119],[80.68773,20.19462],[80.67823,20.20371],[80.67726,20.20779],[80.66623,20.22239],[80.65438,20.22647],[80.65021,20.22162],[80.6443,20.21915],[80.64568,20.2113],[80.64113,20.20393],[80.62845,20.19579],[80.62548,20.19219],[80.62602,20.1907],[80.62232,20.18865],[80.62166,20.18993],[80.61626,20.18861],[80.61474,20.1852],[80.61068,20.18375],[80.60925,20.18694],[80.60531,20.1864],[80.58428,20.17749],[80.5766,20.18047],[80.57384,20.18572],[80.56726,20.18909],[80.56537,20.18188],[80.56852,20.17446],[80.56692,20.16647],[80.56913,20.16055],[80.56875,20.15446],[80.56539,20.14897],[80.56659,20.1447],[80.56515,20.13826],[80.55902,20.1248],[80.55519,20.11944],[80.55207,20.11796],[80.55193,20.10933],[80.54772,20.10542],[80.54407,20.09693],[80.55057,20.08432],[80.55511,20.0793],[80.55681,20.07188],[80.55437,20.06543],[80.55109,20.06164],[80.54931,20.05525],[80.55098,20.04164],[80.54684,20.02898],[80.54587,20.02116],[80.54697,20.01795],[80.54256,20.01077],[80.54985,20.00081],[80.55009,19.98879],[80.54905,19.98418],[80.54378,19.97754],[80.53764,19.97379],[80.5378,19.96956],[80.5358,19.96553],[80.53939,19.96256],[80.53721,19.95931],[80.5389,19.95189],[80.53164,19.94857],[80.52989,19.93947],[80.52561,19.93731],[80.52362,19.93379],[80.50965,19.93105],[80.50474,19.92855],[80.50002,19.92861],[80.49593,19.93106],[80.48875,19.93061],[80.48073,19.93437],[80.47842,19.93844],[80.47998,19.94092],[80.47912,19.944],[80.47316,19.95095],[80.46603,19.94818],[80.45216,19.9576],[80.43015,19.94064],[80.4242,19.93944],[80.41952,19.94034],[80.41118,19.93829],[80.41257,19.92464],[80.40795,19.91271],[80.41388,19.90745],[80.42371,19.90259],[80.43322,19.90284],[80.45038,19.89633],[80.45717,19.89897],[80.46203,19.90438],[80.46862,19.90756],[80.47414,19.90381],[80.49143,19.90201],[80.49958,19.89084],[80.50582,19.87065],[80.49952,19.86968],[80.48629,19.86359],[80.48253,19.85881],[80.48417,19.85423],[80.48102,19.84927],[80.47869,19.83932],[80.4719,19.83556],[80.46908,19.82702],[80.46007,19.82299],[80.44072,19.81033],[80.42968,19.80714],[80.42158,19.8134],[80.41306,19.81639],[80.40162,19.81704],[80.40769,19.806],[80.40187,19.79682],[80.40243,19.79478],[80.40488,19.79372],[80.42416,19.79916],[80.43949,19.79606],[80.4493,19.78977],[80.46426,19.79578],[80.46803,19.78882],[80.48083,19.78129],[80.48266,19.77274],[80.48903,19.77041],[80.49131,19.77529],[80.48999,19.79015],[80.48595,19.79648],[80.48497,19.80248],[80.47565,19.80362],[80.46888,19.81045],[80.48058,19.82751],[80.50037,19.82771],[80.50404,19.83085],[80.52021,19.83172],[80.54643,19.81813],[80.54522,19.80608],[80.54756,19.7949],[80.54244,19.78345],[80.54374,19.7758],[80.55284,19.76538],[80.56215,19.76097],[80.57108,19.75949],[80.57382,19.75481],[80.58206,19.75082],[80.5842,19.74737],[80.58141,19.746],[80.58489,19.74408],[80.58574,19.74155],[80.5901,19.74222],[80.59438,19.73917],[80.59897,19.74031],[80.60572,19.73673],[80.61106,19.73817],[80.61397,19.73503],[80.6211,19.73303],[80.62676,19.72578],[80.64013,19.72531],[80.65103,19.7108],[80.65641,19.70709],[80.66344,19.70593],[80.67078,19.70207],[80.68173,19.70622],[80.69115,19.70295],[80.69997,19.71092],[80.71063,19.70664],[80.7123,19.71113],[80.71613,19.71126],[80.71614,19.7178],[80.71092,19.74236],[80.70555,19.75327],[80.70668,19.75829],[80.7033,19.76077],[80.70431,19.76475],[80.7026,19.76562],[80.70551,19.77056],[80.70505,19.77646],[80.71063,19.77948],[80.71364,19.78587],[80.72239,19.79121],[80.72385,19.79011],[80.73086,19.79244],[80.74017,19.8002],[80.74421,19.8075],[80.74842,19.80516],[80.75762,19.81026],[80.76587,19.81125],[80.7668,19.80943],[80.75783,19.79554],[80.75748,19.79129],[80.76495,19.79226],[80.77993,19.78995],[80.78323,19.79159],[80.78664,19.80022],[80.79675,19.80685],[80.79771,19.80942],[80.81063,19.81083],[80.81188,19.81237],[80.80999,19.81735],[80.81187,19.82014],[80.80929,19.82663],[80.8028,19.82999],[80.78918,19.82928],[80.7813,19.83412],[80.77697,19.84375],[80.77746,19.84812],[80.77532,19.84458],[80.77147,19.84307],[80.76794,19.83798],[80.76156,19.83314],[80.75937,19.82692],[80.76172,19.82427],[80.75292,19.82092],[80.7475,19.81621],[80.72707,19.8204],[80.72327,19.82822],[80.71889,19.83085],[80.72461,19.8363],[80.72186,19.8473],[80.73591,19.85636],[80.74842,19.85304],[80.75059,19.85523],[80.75186,19.86107],[80.75197,19.86975],[80.75921,19.87564],[80.76552,19.89088],[80.79157,19.89512],[80.80925,19.90731],[80.81942,19.91229],[80.82901,19.92305],[80.84286,19.94733],[80.8647,19.94097],[80.88838,19.93855],[80.89957,19.92693],[80.90647,19.92217],[80.91768,19.90558],[80.92078,19.89067],[80.93764,19.87394],[80.94372,19.85834],[80.94525,19.83679],[80.94956,19.8306],[80.95213,19.8278],[80.95773,19.82674],[80.96033,19.82045],[80.96667,19.81464],[80.9724,19.8128],[80.97655,19.81533],[80.98171,19.81484],[80.99011,19.817],[81.00546,19.81519],[81.00907,19.81287],[81.01425,19.80631],[81.01814,19.77636],[81.02523,19.76456],[81.03179,19.76166],[81.0406,19.76201],[81.04597,19.75733],[81.05066,19.75615],[81.05862,19.75081],[81.05888,19.74679],[81.08525,19.7063],[81.18662,19.70338],[81.20512,19.71676],[81.19183,19.72946],[81.18136,19.72759],[81.15972,19.7496],[81.15774,19.75474],[81.15892,19.76454],[81.16874,19.78175],[81.17073,19.78149],[81.17356,19.79793],[81.17978,19.8106],[81.19459,19.80738],[81.21668,19.79805],[81.22566,19.78699],[81.24968,19.76663],[81.27073,19.76723],[81.28883,19.78838],[81.30895,19.77903],[81.31757,19.77772],[81.35564,19.77451],[81.35839,19.77466],[81.35987,19.77825],[81.36276,19.779],[81.37331,19.77908],[81.37799,19.78569],[81.37047,19.79581],[81.37077,19.79941],[81.37461,19.80465],[81.37877,19.81508],[81.39039,19.82733],[81.39608,19.83612],[81.37994,19.84762],[81.37731,19.85361],[81.38034,19.85641],[81.37999,19.85966],[81.38825,19.86495],[81.39672,19.86765],[81.40243,19.86767],[81.40582,19.88068],[81.39745,19.89083],[81.38505,19.89638],[81.3747,19.90797],[81.36297,19.91352],[81.34887,19.91315],[81.34909,19.92188],[81.34405,19.93098],[81.32649,19.93893],[81.33154,19.94841],[81.32946,19.95934],[81.33063,19.96488],[81.31217,19.97199],[81.30914,19.97508],[81.30191,19.97598],[81.30313,19.97824],[81.30113,19.98854],[81.30201,20.0008],[81.29189,20.01009],[81.29448,20.01229],[81.29165,20.0214],[81.31092,20.02213],[81.3116,20.02531],[81.33319,20.03682],[81.34803,20.03882],[81.35575,20.03575],[81.35905,20.04766],[81.36794,20.04667],[81.37597,20.04851],[81.38835,20.04854],[81.38776,20.05598],[81.39542,20.06993],[81.39767,20.07208],[81.40108,20.07251],[81.40509,20.08088],[81.40422,20.09421],[81.40055,20.10009],[81.40314,20.10646],[81.4013,20.11666],[81.40827,20.12825],[81.41186,20.1397],[81.41904,20.14897],[81.41942,20.15713],[81.43304,20.15365],[81.44617,20.14681],[81.45092,20.14668],[81.45526,20.1486],[81.46025,20.15465],[81.48355,20.16287],[81.49387,20.16444],[81.4971,20.16193],[81.5005,20.16465],[81.51713,20.16747],[81.52306,20.1701],[81.53034,20.17619],[81.54664,20.18398],[81.5504,20.18977],[81.55418,20.19124],[81.58476,20.19552],[81.58929,20.18796],[81.59378,20.18416],[81.59498,20.17983],[81.61001,20.16798],[81.61218,20.15814],[81.6202,20.15595],[81.62443,20.15159],[81.64221,20.1422],[81.68073,20.12984],[81.69952,20.13338],[81.70969,20.13854],[81.71894,20.13954],[81.72381,20.14262],[81.72437,20.15034],[81.72737,20.15269],[81.72976,20.15767],[81.73774,20.15868],[81.74674,20.16355],[81.75874,20.16263],[81.76713,20.1568],[81.77544,20.15678],[81.80018,20.15925],[81.81423,20.16747],[81.8088,20.17851],[81.81172,20.18859],[81.80535,20.19763],[81.80112,20.21418],[81.78524,20.20932],[81.78163,20.22755],[81.77495,20.23202],[81.77991,20.24743],[81.78288,20.2494],[81.78553,20.25611],[81.78436,20.26112],[81.79923,20.25591],[81.80025,20.26479],[81.79185,20.27561],[81.78893,20.28788],[81.78015,20.28199],[81.77791,20.2781],[81.7606,20.28297],[81.76137,20.28855],[81.75851,20.2937],[81.76114,20.30622],[81.76617,20.30963],[81.77433,20.30911],[81.77492,20.31964],[81.78409,20.31883],[81.79333,20.32087],[81.79503,20.32628],[81.78202,20.34606],[81.7831,20.34775],[81.78157,20.35675],[81.77479,20.35288],[81.76333,20.35437],[81.76251,20.35967],[81.76693,20.37303],[81.7651,20.37493],[81.76504,20.37865],[81.76899,20.38221],[81.76243,20.39061],[81.75782,20.39025],[81.75335,20.39336],[81.75138,20.40035],[81.74829,20.40051],[81.74706,20.40358],[81.74346,20.4037],[81.74462,20.40688],[81.74089,20.41143],[81.74053,20.41511],[81.73627,20.4191],[81.7329,20.43168],[81.73428,20.44113],[81.73689,20.44444],[81.73746,20.45727],[81.74051,20.4629],[81.73978,20.46854],[81.73651,20.47046],[81.73358,20.46986],[81.73142,20.47444],[81.73461,20.47825],[81.7351,20.48193],[81.69233,20.4813],[81.65928,20.49779],[81.64132,20.49503],[81.64109,20.50399],[81.63475,20.50879],[81.61917,20.51425],[81.61645,20.5171],[81.6066,20.51226],[81.60051,20.51833],[81.59776,20.51874],[81.59423,20.51693],[81.58839,20.51885],[81.57914,20.51719],[81.57197,20.51887],[81.56041,20.51712],[81.55852,20.51412],[81.55639,20.51391],[81.54108,20.51519],[81.53988,20.50994],[81.53836,20.50977],[81.53838,20.50073],[81.52474,20.49274],[81.51659,20.49309],[81.50986,20.49632],[81.5049,20.50237],[81.50446,20.51015],[81.50155,20.51657],[81.50284,20.51995],[81.49548,20.52037],[81.48809,20.512],[81.48066,20.51374],[81.45576,20.51372],[81.43725,20.51846],[81.42431,20.51566],[81.41561,20.52516],[81.41082,20.52575],[81.41205,20.5402],[81.41014,20.54407],[81.41036,20.55443],[81.39368,20.54581],[81.38659,20.53339],[81.37568,20.53706],[81.36825,20.54165],[81.36498,20.54808],[81.35739,20.55518],[81.3495,20.55625],[81.33912,20.55373]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"382","area_level":"District","area_name":"Kabeerdham","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.34006,22.51951],[81.33474,22.52424],[81.32653,22.52614],[81.32287,22.52302],[81.32338,22.51893],[81.31801,22.51652],[81.31725,22.51413],[81.31993,22.50705],[81.31985,22.50323],[81.3182,22.50186],[81.32089,22.49523],[81.31813,22.49392],[81.32225,22.49118],[81.3228,22.48916],[81.32049,22.48596],[81.31518,22.48777],[81.31373,22.48292],[81.30729,22.48191],[81.29995,22.49029],[81.29178,22.49429],[81.28127,22.50295],[81.27329,22.49319],[81.26907,22.49432],[81.26213,22.49327],[81.25978,22.48513],[81.26193,22.47217],[81.24831,22.45878],[81.2333,22.45244],[81.20774,22.45659],[81.20612,22.46084],[81.19946,22.46303],[81.20145,22.4682],[81.19992,22.4852],[81.19767,22.48957],[81.19352,22.49095],[81.18697,22.48884],[81.17221,22.48776],[81.16724,22.47797],[81.16282,22.47455],[81.15643,22.45637],[81.15387,22.45409],[81.1497,22.45313],[81.14103,22.45423],[81.12701,22.44923],[81.12053,22.4458],[81.11116,22.43757],[81.10882,22.42876],[81.11034,22.41744],[81.10834,22.40096],[81.10598,22.38769],[81.10366,22.38337],[81.10867,22.37382],[81.11312,22.35327],[81.12121,22.3426],[81.11355,22.32413],[81.11894,22.30922],[81.11872,22.29126],[81.10799,22.2845],[81.10185,22.2783],[81.09731,22.26898],[81.09153,22.249],[81.08241,22.24383],[81.07955,22.23938],[81.07771,22.23904],[81.07604,22.24465],[81.07261,22.24837],[81.05961,22.24429],[81.05006,22.24455],[81.03791,22.23389],[81.02705,22.22892],[81.02364,22.22928],[81.01946,22.22118],[81.02176,22.21212],[81.03037,22.20317],[81.03164,22.19965],[81.02901,22.1925],[81.03066,22.1874],[81.02553,22.1874],[81.02243,22.18947],[81.01666,22.18553],[81.01716,22.17961],[81.02675,22.16639],[81.02631,22.16284],[81.02221,22.15773],[81.02378,22.14867],[81.02191,22.13273],[81.01368,22.13367],[80.99906,22.13132],[80.99487,22.13302],[80.98895,22.12825],[80.9826,22.1257],[80.97814,22.12011],[80.98096,22.11021],[80.98434,22.11456],[80.99048,22.11355],[81.00316,22.10106],[81.00666,22.09995],[81.01133,22.09557],[81.00612,22.09219],[81.00145,22.0835],[81.00458,22.07536],[81.0067,22.075],[81.00911,22.0709],[81.00527,22.06155],[81.00251,22.05824],[80.99488,22.05861],[80.99439,22.04924],[80.98967,22.05138],[80.98354,22.0486],[80.98054,22.05471],[80.97004,22.05741],[80.96902,22.06475],[80.97188,22.08235],[80.96655,22.09353],[80.96101,22.10003],[80.96076,22.10357],[80.95698,22.11042],[80.94758,22.11827],[80.92195,22.11995],[80.91469,22.11319],[80.90793,22.10957],[80.89681,22.06434],[80.89295,22.06308],[80.88901,22.0571],[80.88611,22.05915],[80.88269,22.05903],[80.88199,22.05297],[80.8858,22.04962],[80.87579,22.03853],[80.87695,22.03391],[80.87578,22.01104],[80.86575,21.99426],[80.85914,21.97078],[80.85267,21.95731],[80.84087,21.95558],[80.83849,21.95797],[80.83606,21.95453],[80.82881,21.95871],[80.82549,21.95842],[80.8275,21.95617],[80.82602,21.95284],[80.82913,21.95355],[80.82747,21.95127],[80.82898,21.94838],[80.83318,21.95011],[80.83129,21.94729],[80.83404,21.94575],[80.83647,21.94974],[80.83753,21.94698],[80.84304,21.94612],[80.84204,21.94415],[80.84589,21.94208],[80.84139,21.94117],[80.84571,21.93985],[80.84581,21.93397],[80.8477,21.93253],[80.84765,21.93074],[80.84562,21.93043],[80.8461,21.92624],[80.83925,21.92305],[80.83981,21.91945],[80.83623,21.91461],[80.835,21.90834],[80.83212,21.90797],[80.83614,21.907],[80.83339,21.90213],[80.83433,21.90061],[80.83318,21.89863],[80.83481,21.89606],[80.832,21.89203],[80.8321,21.89024],[80.83394,21.89105],[80.83276,21.88911],[80.83499,21.88559],[80.84326,21.88239],[80.84279,21.88064],[80.84504,21.87767],[80.84295,21.87607],[80.84621,21.87387],[80.84991,21.87625],[80.84956,21.87344],[80.85331,21.87276],[80.85272,21.87048],[80.84909,21.87113],[80.84576,21.86975],[80.84276,21.86533],[80.84539,21.86475],[80.84524,21.86233],[80.84741,21.86354],[80.8487,21.8619],[80.8465,21.85997],[80.84929,21.85917],[80.85024,21.85588],[80.85256,21.85486],[80.85094,21.8521],[80.84654,21.85281],[80.83937,21.84784],[80.84127,21.83978],[80.83891,21.84002],[80.8407,21.83867],[80.83863,21.83831],[80.83847,21.83646],[80.83985,21.83731],[80.84247,21.83553],[80.84472,21.83174],[80.84629,21.83289],[80.84626,21.83548],[80.85269,21.83349],[80.85542,21.83432],[80.85723,21.83181],[80.86164,21.8306],[80.8681,21.83102],[80.86778,21.82923],[80.87176,21.82817],[80.87369,21.82544],[80.87618,21.82638],[80.87736,21.82398],[80.88351,21.82529],[80.88676,21.82829],[80.89313,21.82698],[80.89817,21.82863],[80.89957,21.8259],[80.90535,21.82554],[80.90569,21.82338],[80.91559,21.82575],[80.91644,21.82761],[80.92017,21.82629],[80.92277,21.82738],[80.93017,21.82444],[80.93175,21.82169],[80.93207,21.81275],[80.93622,21.80896],[80.94245,21.80805],[80.94577,21.8047],[80.94805,21.79595],[80.95415,21.78659],[80.95493,21.78289],[80.95296,21.76755],[80.97194,21.76001],[80.97622,21.74571],[80.99837,21.72818],[81.00238,21.72739],[81.01182,21.73659],[81.02748,21.7415],[81.04472,21.73701],[81.04058,21.72755],[81.05048,21.72686],[81.05993,21.72379],[81.06089,21.72432],[81.05974,21.72554],[81.06435,21.72623],[81.06824,21.73223],[81.07848,21.72862],[81.07875,21.73324],[81.08756,21.73332],[81.09648,21.73005],[81.10245,21.73445],[81.10509,21.7325],[81.10901,21.72401],[81.11917,21.71644],[81.12663,21.70416],[81.12993,21.70631],[81.13065,21.71642],[81.15185,21.71125],[81.15418,21.71522],[81.15789,21.71407],[81.15847,21.71506],[81.16264,21.71123],[81.17131,21.70742],[81.17096,21.70525],[81.17236,21.70489],[81.17303,21.70621],[81.18339,21.70528],[81.18643,21.70934],[81.18571,21.71144],[81.19177,21.70858],[81.19255,21.70496],[81.19664,21.70364],[81.19712,21.70873],[81.20348,21.71252],[81.2037,21.71071],[81.20704,21.71224],[81.21217,21.71022],[81.215,21.70534],[81.21787,21.70469],[81.23134,21.71001],[81.23257,21.71435],[81.23152,21.71505],[81.23338,21.71834],[81.23297,21.72082],[81.2304,21.71984],[81.22969,21.7221],[81.22525,21.72197],[81.22596,21.72511],[81.22349,21.72777],[81.22452,21.73206],[81.22333,21.73513],[81.22557,21.73971],[81.22296,21.7559],[81.22613,21.75688],[81.23396,21.75302],[81.24385,21.75162],[81.24625,21.74823],[81.25471,21.74637],[81.25677,21.74906],[81.26177,21.75043],[81.26256,21.7562],[81.26952,21.75583],[81.26991,21.75791],[81.27606,21.75875],[81.27768,21.76241],[81.27985,21.76317],[81.2874,21.76112],[81.28946,21.76599],[81.2946,21.76923],[81.30105,21.76643],[81.30208,21.7647],[81.30091,21.76352],[81.30582,21.76348],[81.31025,21.75777],[81.30987,21.76271],[81.31961,21.76061],[81.32619,21.7668],[81.3354,21.76663],[81.33735,21.76929],[81.33927,21.76861],[81.34089,21.77],[81.34062,21.76775],[81.34308,21.76794],[81.34382,21.77393],[81.33695,21.77353],[81.33596,21.77636],[81.33745,21.77929],[81.33537,21.77939],[81.3346,21.78639],[81.32916,21.78737],[81.33169,21.79269],[81.32951,21.79484],[81.32998,21.79869],[81.32659,21.80061],[81.32637,21.80314],[81.33096,21.80231],[81.33147,21.80462],[81.3287,21.81337],[81.32633,21.81608],[81.32279,21.81684],[81.32088,21.81992],[81.32261,21.82344],[81.31994,21.83125],[81.32719,21.83857],[81.33236,21.84912],[81.33585,21.84508],[81.34326,21.84304],[81.34289,21.84089],[81.3535,21.83815],[81.35492,21.83588],[81.36097,21.83579],[81.36151,21.8328],[81.36378,21.83163],[81.37395,21.83196],[81.37457,21.8349],[81.37746,21.83512],[81.39548,21.82988],[81.39937,21.83076],[81.40206,21.842],[81.39828,21.84351],[81.40138,21.84653],[81.40044,21.85172],[81.39784,21.85207],[81.39764,21.85423],[81.39509,21.85528],[81.3954,21.85717],[81.39397,21.85712],[81.39263,21.85968],[81.39482,21.86151],[81.39412,21.86606],[81.39066,21.87137],[81.39,21.87626],[81.39164,21.88215],[81.39545,21.88531],[81.3983,21.88494],[81.40114,21.88966],[81.40765,21.8882],[81.4097,21.89241],[81.40814,21.89495],[81.41087,21.90933],[81.41231,21.91273],[81.41592,21.91551],[81.42003,21.91407],[81.42162,21.91012],[81.41995,21.9062],[81.42258,21.90583],[81.42324,21.90169],[81.42574,21.89915],[81.42881,21.89847],[81.4309,21.90066],[81.43721,21.89825],[81.4383,21.9004],[81.44458,21.90025],[81.44991,21.90256],[81.43887,21.90775],[81.44576,21.91021],[81.44542,21.91249],[81.44985,21.91164],[81.45272,21.91433],[81.45484,21.91386],[81.4517,21.9209],[81.45196,21.92671],[81.4547,21.93017],[81.46257,21.93176],[81.45684,21.93301],[81.45305,21.93691],[81.45024,21.93694],[81.45136,21.94289],[81.4542,21.94397],[81.45409,21.94682],[81.4518,21.94739],[81.45112,21.95053],[81.45809,21.95466],[81.45929,21.95728],[81.46545,21.95795],[81.46636,21.96101],[81.47144,21.96073],[81.47407,21.96408],[81.47763,21.96409],[81.47902,21.96986],[81.47699,21.97175],[81.47337,21.97192],[81.47374,21.97502],[81.47118,21.97512],[81.46764,21.97884],[81.47926,21.9935],[81.4836,21.99419],[81.48587,21.99661],[81.48282,21.99774],[81.47812,21.99602],[81.47981,21.99949],[81.47649,22.00048],[81.47664,22.00377],[81.4746,22.00494],[81.47377,22.00796],[81.47076,22.00898],[81.46975,22.01221],[81.47239,22.01504],[81.47801,22.0152],[81.48089,22.01796],[81.48295,22.01672],[81.48524,22.01888],[81.49831,22.01194],[81.49997,22.01376],[81.50282,22.01298],[81.50149,22.0049],[81.51191,22.01936],[81.51106,22.03186],[81.50472,22.03261],[81.50623,22.04446],[81.50825,22.0503],[81.51129,22.05347],[81.50835,22.05619],[81.5183,22.0818],[81.52099,22.08417],[81.51738,22.08625],[81.51638,22.10193],[81.51386,22.11082],[81.51522,22.12033],[81.51364,22.13252],[81.51567,22.15413],[81.5179,22.1565],[81.52544,22.15615],[81.52886,22.16176],[81.52743,22.16838],[81.53244,22.18605],[81.53289,22.19334],[81.53535,22.20079],[81.5386,22.20322],[81.53704,22.20884],[81.53314,22.21271],[81.53662,22.21428],[81.5365,22.21915],[81.54314,22.23317],[81.54499,22.2343],[81.54574,22.23142],[81.5482,22.23112],[81.54839,22.23683],[81.55236,22.24105],[81.54918,22.2466],[81.55197,22.25427],[81.55149,22.25723],[81.54894,22.25919],[81.55119,22.26056],[81.55175,22.26691],[81.54539,22.27271],[81.53819,22.273],[81.53611,22.27633],[81.53146,22.27439],[81.53396,22.27809],[81.53351,22.28359],[81.53738,22.28291],[81.53887,22.28516],[81.53137,22.29329],[81.52883,22.30508],[81.52387,22.30794],[81.52583,22.30946],[81.52431,22.31041],[81.52687,22.31154],[81.54106,22.31512],[81.5554,22.33776],[81.55535,22.3438],[81.55323,22.34603],[81.55021,22.34488],[81.54683,22.34861],[81.54455,22.3486],[81.54305,22.35284],[81.54141,22.35176],[81.54054,22.35292],[81.53878,22.3522],[81.53913,22.35407],[81.53685,22.35334],[81.53757,22.35551],[81.53507,22.35586],[81.53656,22.35724],[81.53487,22.35758],[81.52884,22.37063],[81.52438,22.3735],[81.52362,22.37802],[81.51695,22.38164],[81.51394,22.38],[81.51223,22.38117],[81.51701,22.39155],[81.5164,22.3946],[81.51225,22.39907],[81.50164,22.39997],[81.49363,22.42045],[81.48818,22.42275],[81.48484,22.43076],[81.48697,22.43418],[81.48634,22.43787],[81.49196,22.4413],[81.49132,22.44783],[81.47569,22.45576],[81.46994,22.48383],[81.47843,22.49226],[81.4728,22.49374],[81.46301,22.49307],[81.45884,22.48947],[81.45257,22.49581],[81.44942,22.49576],[81.44689,22.49343],[81.44261,22.49435],[81.44397,22.49072],[81.45108,22.4866],[81.44724,22.48465],[81.44254,22.4792],[81.4464,22.47618],[81.45088,22.47859],[81.45019,22.47124],[81.44662,22.46976],[81.44903,22.46752],[81.45589,22.4695],[81.4573,22.47168],[81.45893,22.46929],[81.45528,22.46688],[81.44737,22.46588],[81.44102,22.47178],[81.44293,22.4738],[81.44153,22.47991],[81.43921,22.48212],[81.43221,22.47921],[81.42784,22.47981],[81.42274,22.47146],[81.42382,22.46481],[81.4287,22.45726],[81.42411,22.44914],[81.42039,22.44619],[81.4067,22.44095],[81.39641,22.44008],[81.38811,22.45921],[81.39006,22.46331],[81.38865,22.46821],[81.39125,22.47109],[81.3915,22.47771],[81.38406,22.48976],[81.38619,22.49855],[81.38206,22.50982],[81.37582,22.51105],[81.37063,22.51488],[81.36136,22.515],[81.36059,22.51204],[81.35431,22.51126],[81.35388,22.51423],[81.3506,22.51759],[81.34006,22.51951]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"383","area_level":"District","area_name":"Korba","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.3857,22.9997],[82.38367,23.00042],[82.37588,22.99779],[82.36193,22.99866],[82.34958,22.99126],[82.34483,22.99191],[82.33287,22.98319],[82.3304,22.97371],[82.32633,22.96701],[82.30568,22.96864],[82.29591,22.9622],[82.2834,22.95989],[82.27776,22.95321],[82.26017,22.94072],[82.25876,22.93801],[82.24087,22.93825],[82.22263,22.94091],[82.21584,22.94503],[82.21214,22.93732],[82.212,22.93138],[82.20826,22.92573],[82.20036,22.92192],[82.19789,22.9176],[82.19538,22.91855],[82.19361,22.91736],[82.19268,22.91052],[82.18829,22.90548],[82.18411,22.90471],[82.18132,22.90115],[82.17852,22.90042],[82.17705,22.89655],[82.17419,22.89433],[82.17362,22.89061],[82.16842,22.88757],[82.15836,22.88504],[82.15301,22.86486],[82.1512,22.86323],[82.14542,22.86449],[82.14142,22.86286],[82.142,22.86025],[82.13425,22.85334],[82.13691,22.84421],[82.1393,22.84209],[82.14658,22.84211],[82.15534,22.83868],[82.15246,22.81592],[82.15893,22.81495],[82.15897,22.78756],[82.15579,22.7869],[82.15559,22.77814],[82.15374,22.77429],[82.15558,22.76693],[82.14886,22.74157],[82.15171,22.73633],[82.16472,22.72805],[82.16641,22.72465],[82.16504,22.71573],[82.16677,22.69603],[82.17256,22.69339],[82.17454,22.67823],[82.17372,22.67055],[82.18017,22.67137],[82.18562,22.6745],[82.19715,22.67468],[82.19676,22.66993],[82.20222,22.66601],[82.2021,22.66063],[82.22538,22.6605],[82.23551,22.65724],[82.23988,22.65313],[82.2388,22.64239],[82.23672,22.64133],[82.236,22.62781],[82.23917,22.62436],[82.23839,22.61041],[82.23299,22.59646],[82.23333,22.59122],[82.20832,22.59628],[82.20147,22.58833],[82.19705,22.57904],[82.18444,22.56724],[82.18121,22.5602],[82.17455,22.55691],[82.16618,22.5552],[82.16764,22.54792],[82.15642,22.54417],[82.16369,22.53079],[82.16481,22.52436],[82.16032,22.50793],[82.16032,22.50289],[82.15521,22.49549],[82.14818,22.48914],[82.14729,22.48448],[82.14352,22.48095],[82.14232,22.47302],[82.14413,22.46624],[82.13798,22.45439],[82.15681,22.44477],[82.16818,22.4419],[82.17205,22.42519],[82.17357,22.42474],[82.17693,22.4153],[82.18005,22.41479],[82.1798,22.41266],[82.18211,22.40994],[82.1788,22.4053],[82.1743,22.40463],[82.16493,22.39951],[82.16692,22.38367],[82.15717,22.38243],[82.14943,22.38416],[82.15386,22.37728],[82.15361,22.35242],[82.14978,22.33994],[82.14131,22.33488],[82.14201,22.33309],[82.14978,22.33084],[82.15065,22.3293],[82.15196,22.33091],[82.15819,22.3286],[82.16141,22.33049],[82.16434,22.32888],[82.16552,22.33],[82.16661,22.32753],[82.16795,22.32798],[82.16911,22.3262],[82.17067,22.32749],[82.17464,22.32439],[82.17698,22.32731],[82.18519,22.3251],[82.18931,22.31986],[82.19324,22.31972],[82.1967,22.31671],[82.2018,22.31791],[82.20083,22.31462],[82.20351,22.31177],[82.21391,22.32835],[82.21565,22.33949],[82.22512,22.33173],[82.23339,22.32831],[82.23669,22.33049],[82.23613,22.33393],[82.2398,22.3351],[82.26165,22.3358],[82.268,22.33471],[82.27217,22.31809],[82.2685,22.30781],[82.26162,22.3019],[82.2621,22.29828],[82.26824,22.29659],[82.27368,22.29173],[82.28806,22.28678],[82.29793,22.28912],[82.30272,22.29646],[82.31099,22.29909],[82.31578,22.31132],[82.32545,22.32359],[82.35174,22.32757],[82.35869,22.32207],[82.36675,22.31956],[82.37248,22.31423],[82.37457,22.30356],[82.37908,22.30065],[82.38434,22.30373],[82.3999,22.30528],[82.41189,22.28552],[82.41414,22.28398],[82.41483,22.28086],[82.39727,22.26726],[82.39665,22.26024],[82.40868,22.25704],[82.42087,22.24922],[82.42897,22.24658],[82.42842,22.24323],[82.43462,22.23496],[82.43633,22.22701],[82.44249,22.22636],[82.44302,22.22765],[82.45219,22.22507],[82.45606,22.21977],[82.45717,22.22046],[82.45874,22.21884],[82.45982,22.2134],[82.46435,22.21631],[82.46586,22.22006],[82.47082,22.22453],[82.47671,22.22593],[82.47755,22.23058],[82.48242,22.23428],[82.48183,22.23833],[82.48988,22.24001],[82.49277,22.24449],[82.49088,22.24629],[82.49597,22.24503],[82.49634,22.24769],[82.49965,22.25059],[82.50265,22.24911],[82.51048,22.2532],[82.51254,22.25065],[82.51885,22.25222],[82.52306,22.2491],[82.52661,22.23921],[82.53594,22.23215],[82.53607,22.21258],[82.5397,22.20963],[82.54607,22.20796],[82.55287,22.21143],[82.55658,22.21776],[82.57101,22.22107],[82.58262,22.23053],[82.58599,22.23875],[82.5918,22.2469],[82.59056,22.25698],[82.59255,22.26306],[82.60205,22.25953],[82.61584,22.25698],[82.64504,22.23873],[82.64289,22.22456],[82.64698,22.22272],[82.64223,22.22009],[82.64522,22.21734],[82.64253,22.21218],[82.64611,22.21039],[82.64533,22.20845],[82.6473,22.20725],[82.6488,22.20121],[82.65778,22.19011],[82.65971,22.18826],[82.66534,22.18789],[82.6636,22.17225],[82.64875,22.16063],[82.64556,22.14876],[82.63816,22.13209],[82.63692,22.12285],[82.6398,22.11465],[82.65019,22.10699],[82.65194,22.10326],[82.64947,22.09857],[82.66115,22.0956],[82.6698,22.08106],[82.67933,22.08041],[82.68368,22.08936],[82.6987,22.08906],[82.70189,22.08439],[82.70848,22.05659],[82.71477,22.05089],[82.71728,22.04242],[82.72219,22.03943],[82.74057,22.03984],[82.73982,22.05232],[82.73445,22.06144],[82.736,22.06515],[82.73429,22.06717],[82.73142,22.08545],[82.73371,22.0873],[82.7379,22.08746],[82.74072,22.09641],[82.75161,22.09657],[82.75721,22.09824],[82.75895,22.10146],[82.75294,22.11085],[82.75777,22.11411],[82.75833,22.1175],[82.77036,22.12512],[82.79335,22.12827],[82.79928,22.13052],[82.79909,22.13561],[82.79661,22.1412],[82.80357,22.14019],[82.81235,22.14705],[82.81776,22.14782],[82.81867,22.15145],[82.82251,22.15407],[82.83097,22.15641],[82.83439,22.15571],[82.85281,22.15843],[82.85337,22.16355],[82.86074,22.17165],[82.86898,22.17186],[82.89209,22.16257],[82.90188,22.13813],[82.90597,22.13732],[82.90795,22.13474],[82.91823,22.13064],[82.92371,22.12653],[82.93684,22.12214],[82.93673,22.12856],[82.94381,22.14735],[82.96066,22.1439],[82.96196,22.15656],[82.96633,22.16312],[82.97107,22.16599],[82.98222,22.1671],[82.98992,22.16415],[83.00319,22.16451],[83.00669,22.16765],[83.01399,22.16978],[83.02174,22.16757],[83.03036,22.16882],[83.0384,22.18797],[83.05056,22.19414],[83.04852,22.20394],[83.051,22.21237],[83.04765,22.21999],[83.04676,22.2267],[83.03006,22.23903],[83.03106,22.24189],[83.03639,22.24844],[83.0533,22.25513],[83.06119,22.26181],[83.05454,22.26644],[83.04935,22.27745],[83.04944,22.28043],[83.05947,22.28829],[83.06659,22.30334],[83.08036,22.31021],[83.08297,22.32342],[83.07921,22.33468],[83.08645,22.34848],[83.09066,22.35191],[83.10108,22.35548],[83.10921,22.36623],[83.10389,22.37243],[83.1003,22.38205],[83.10638,22.38367],[83.1079,22.38584],[83.10744,22.41429],[83.11284,22.4175],[83.11352,22.42146],[83.10714,22.4276],[83.09608,22.4289],[83.09482,22.42813],[83.09718,22.42559],[83.09455,22.42724],[83.09355,22.43679],[83.09035,22.43695],[83.08903,22.43874],[83.09065,22.45072],[83.09444,22.45645],[83.09488,22.46043],[83.08607,22.46899],[83.08944,22.49163],[83.0931,22.49782],[83.10312,22.5047],[83.10735,22.51846],[83.10328,22.52607],[83.10699,22.53579],[83.10267,22.55295],[83.09541,22.56324],[83.09254,22.57575],[83.09199,22.58668],[83.09742,22.59405],[83.09764,22.59725],[83.09727,22.61518],[83.09468,22.63362],[83.10368,22.63646],[83.10718,22.6412],[83.12278,22.6473],[83.12296,22.65644],[83.11582,22.67031],[83.09235,22.67421],[83.08116,22.6685],[83.06508,22.66906],[83.05708,22.66361],[83.0488,22.66178],[83.03945,22.65219],[83.02488,22.64624],[83.02048,22.64182],[83.01374,22.63861],[83.01303,22.64466],[83.00978,22.64874],[83.00422,22.65047],[83.00134,22.65518],[82.99598,22.65859],[82.99001,22.66545],[82.98156,22.6644],[82.96713,22.66578],[82.94098,22.67834],[82.93037,22.69528],[82.92092,22.70503],[82.90275,22.71478],[82.89407,22.72394],[82.88903,22.72541],[82.87481,22.74646],[82.86353,22.75186],[82.85878,22.74951],[82.83201,22.74409],[82.77947,22.76778],[82.76471,22.7808],[82.76799,22.78961],[82.75889,22.79327],[82.74847,22.8055],[82.73592,22.81312],[82.72817,22.82355],[82.71272,22.83379],[82.69468,22.83321],[82.68463,22.82566],[82.68055,22.82431],[82.67346,22.81664],[82.66686,22.81541],[82.65967,22.80989],[82.6514,22.80897],[82.63893,22.81136],[82.63452,22.8185],[82.61667,22.82351],[82.61052,22.82736],[82.60541,22.82696],[82.5984,22.83257],[82.57825,22.83172],[82.57105,22.82964],[82.56268,22.84201],[82.55673,22.8471],[82.55636,22.86264],[82.55865,22.86606],[82.56346,22.86495],[82.56799,22.86713],[82.57113,22.87737],[82.57725,22.88932],[82.57372,22.89613],[82.57482,22.89801],[82.58937,22.89424],[82.59218,22.89548],[82.59304,22.89815],[82.58937,22.90767],[82.57994,22.90906],[82.57301,22.91472],[82.57484,22.92195],[82.57259,22.92785],[82.57598,22.93661],[82.572,22.94184],[82.57278,22.94869],[82.55848,22.95689],[82.55918,22.95963],[82.56424,22.96252],[82.56876,22.96312],[82.57317,22.96113],[82.57481,22.96544],[82.57156,22.96707],[82.56678,22.97481],[82.56146,22.9766],[82.52848,22.97543],[82.514,22.96948],[82.48813,22.97053],[82.48232,22.96671],[82.4711,22.96872],[82.45538,22.96682],[82.43194,22.9731],[82.41613,22.97435],[82.41161,22.97661],[82.41068,22.98906],[82.40513,22.99088],[82.4044,22.9938],[82.40003,22.99675],[82.39291,22.9993],[82.3857,22.9997]],[[83.00412,22.25665],[83.00833,22.25433],[83.01783,22.24102],[83.02119,22.23187],[83.0244,22.22905],[83.01197,22.22723],[83.00717,22.22443],[83.00214,22.22445],[82.99309,22.22661],[82.98807,22.23073],[82.99035,22.24228],[82.99389,22.24427],[82.9962,22.24971],[83.00371,22.25327],[83.00412,22.25665]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"384","area_level":"District","area_name":"Korea","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.67312,23.91288],[81.67092,23.92171],[81.6671,23.92537],[81.66168,23.92361],[81.65778,23.91634],[81.63847,23.91083],[81.63645,23.90759],[81.63218,23.90582],[81.62076,23.90673],[81.60981,23.90393],[81.60836,23.90149],[81.61047,23.89877],[81.61157,23.89229],[81.60375,23.88471],[81.60461,23.88129],[81.62221,23.87047],[81.61577,23.86255],[81.61255,23.86137],[81.60646,23.86229],[81.60395,23.85973],[81.604,23.85202],[81.60772,23.84639],[81.6122,23.84315],[81.61132,23.83701],[81.61594,23.83342],[81.62241,23.83538],[81.63507,23.83525],[81.64162,23.82058],[81.64132,23.81474],[81.64665,23.8115],[81.65116,23.80022],[81.64947,23.78336],[81.64445,23.77482],[81.64466,23.77013],[81.65203,23.76537],[81.67668,23.75685],[81.68185,23.7533],[81.68676,23.7475],[81.67917,23.74234],[81.67847,23.73937],[81.68606,23.73304],[81.68953,23.72377],[81.69591,23.72132],[81.68502,23.70021],[81.68408,23.69092],[81.66596,23.685],[81.66062,23.68466],[81.65555,23.68202],[81.65422,23.6778],[81.6563,23.67214],[81.65517,23.66314],[81.64455,23.65718],[81.61457,23.66292],[81.61933,23.65839],[81.62033,23.65143],[81.6142,23.62244],[81.60651,23.61387],[81.6111,23.60327],[81.61197,23.59525],[81.60834,23.59659],[81.60359,23.59336],[81.59811,23.59423],[81.59681,23.59236],[81.593,23.59601],[81.5897,23.59603],[81.58497,23.59455],[81.57668,23.58534],[81.58402,23.55358],[81.60533,23.55406],[81.61004,23.55564],[81.61409,23.54567],[81.61247,23.54086],[81.61323,23.53343],[81.61633,23.53075],[81.61627,23.52843],[81.61361,23.52702],[81.61524,23.51884],[81.61205,23.51701],[81.6114,23.51253],[81.61571,23.50602],[81.62537,23.49676],[81.62692,23.49145],[81.63689,23.49023],[81.64222,23.49689],[81.64218,23.49895],[81.64849,23.49975],[81.65394,23.4983],[81.65459,23.50194],[81.65832,23.50518],[81.65954,23.51177],[81.66235,23.51395],[81.65885,23.52683],[81.66041,23.52978],[81.66812,23.53295],[81.68005,23.52925],[81.69034,23.52837],[81.6999,23.52214],[81.70204,23.52452],[81.702,23.52801],[81.70594,23.52908],[81.71108,23.53488],[81.7145,23.53597],[81.71539,23.54073],[81.72253,23.5433],[81.72152,23.54721],[81.72431,23.55026],[81.72523,23.55687],[81.72802,23.55649],[81.73636,23.56646],[81.73761,23.56507],[81.74238,23.56615],[81.74664,23.5698],[81.75265,23.56795],[81.7548,23.56559],[81.75826,23.54987],[81.77164,23.55054],[81.80191,23.5484],[81.80907,23.54934],[81.81698,23.54087],[81.81959,23.52972],[81.81758,23.52212],[81.82069,23.51524],[81.83643,23.51091],[81.83965,23.51089],[81.84398,23.5144],[81.85026,23.51355],[81.85218,23.51529],[81.86369,23.51757],[81.86912,23.51293],[81.8756,23.51271],[81.88126,23.51507],[81.89368,23.52446],[81.89685,23.52465],[81.90444,23.52955],[81.90787,23.53533],[81.91853,23.535],[81.92399,23.53211],[81.93785,23.51631],[81.93763,23.51374],[81.94234,23.50569],[81.94782,23.5011],[81.95791,23.5007],[81.95503,23.4854],[81.95499,23.46717],[81.95783,23.46532],[81.96472,23.4657],[81.96904,23.46035],[81.97036,23.45558],[81.97688,23.45181],[81.97599,23.44862],[81.9804,23.44704],[81.97779,23.44197],[81.98382,23.43457],[81.98177,23.43366],[81.98169,23.43094],[81.9839,23.42928],[81.97674,23.4238],[81.98254,23.42016],[81.98533,23.41449],[81.98843,23.41453],[81.99056,23.41849],[81.99969,23.42156],[82.0024,23.41696],[82.00955,23.41199],[82.01182,23.41592],[82.02548,23.42488],[82.02578,23.41999],[82.03275,23.40999],[82.03063,23.40824],[82.02569,23.40969],[82.02385,23.40867],[82.0238,23.40676],[82.02907,23.4002],[82.02116,23.39177],[82.0219,23.38732],[82.03231,23.38242],[82.03685,23.38874],[82.04447,23.38005],[82.056,23.37678],[82.05876,23.37875],[82.06406,23.39294],[82.07112,23.39121],[82.07704,23.39494],[82.08217,23.39347],[82.08601,23.39699],[82.09148,23.39828],[82.09301,23.39747],[82.09204,23.39364],[82.09348,23.39286],[82.10341,23.39824],[82.10494,23.39698],[82.10524,23.39256],[82.11377,23.38416],[82.1118,23.36613],[82.11011,23.36317],[82.11714,23.35546],[82.12374,23.35372],[82.14091,23.36181],[82.14575,23.36118],[82.15383,23.35036],[82.16208,23.34284],[82.16373,23.33467],[82.18281,23.32737],[82.19208,23.32677],[82.19939,23.31343],[82.19479,23.30859],[82.19741,23.30688],[82.19603,23.30371],[82.19732,23.30066],[82.19671,23.29728],[82.19382,23.29522],[82.19221,23.28849],[82.19474,23.28439],[82.19338,23.27797],[82.1888,23.2735],[82.18533,23.2739],[82.17435,23.2687],[82.17229,23.2584],[82.16829,23.25515],[82.16964,23.25174],[82.16651,23.25008],[82.16718,23.24589],[82.16276,23.24509],[82.15978,23.24633],[82.15308,23.23047],[82.14527,23.22672],[82.14841,23.2211],[82.14762,23.21897],[82.15361,23.21274],[82.14976,23.20373],[82.14925,23.19738],[82.14398,23.19514],[82.14825,23.18895],[82.14364,23.18711],[82.14464,23.17954],[82.14905,23.17737],[82.1495,23.17548],[82.14854,23.17113],[82.14435,23.16565],[82.14516,23.16341],[82.16092,23.16205],[82.16226,23.15728],[82.16136,23.14311],[82.15687,23.13847],[82.1407,23.13293],[82.13664,23.12544],[82.13791,23.112],[82.12225,23.1038],[82.12875,23.09589],[82.13964,23.08733],[82.14425,23.0801],[82.14786,23.07857],[82.14907,23.07451],[82.15786,23.063],[82.15832,23.0546],[82.16611,23.04669],[82.17429,23.04504],[82.17521,23.04118],[82.18006,23.03515],[82.18483,23.01402],[82.18264,23.00979],[82.18066,22.99566],[82.17365,22.98856],[82.17629,22.98657],[82.17797,22.97414],[82.17705,22.97009],[82.19408,22.95883],[82.19981,22.95106],[82.21066,22.94839],[82.2223,22.94096],[82.24087,22.93825],[82.25876,22.93801],[82.26017,22.94072],[82.27776,22.95321],[82.2834,22.95989],[82.29591,22.9622],[82.30568,22.96864],[82.32633,22.96701],[82.3304,22.97371],[82.33287,22.98319],[82.34483,22.99191],[82.34958,22.99126],[82.36193,22.99866],[82.37588,22.99779],[82.38367,23.00042],[82.40003,22.99675],[82.4044,22.9938],[82.40513,22.99088],[82.41068,22.98906],[82.41161,22.97661],[82.41613,22.97435],[82.43194,22.9731],[82.45538,22.96682],[82.4711,22.96872],[82.48232,22.96671],[82.48813,22.97053],[82.514,22.96948],[82.52848,22.97543],[82.56146,22.9766],[82.56678,22.97481],[82.57156,22.96707],[82.57481,22.96544],[82.58567,22.97788],[82.58682,22.98182],[82.58193,22.99074],[82.58159,22.99638],[82.5869,22.99836],[82.59266,22.99758],[82.59801,23.0006],[82.60071,23.01047],[82.60572,23.01956],[82.60595,23.02405],[82.60352,23.02541],[82.59729,23.02208],[82.59489,23.02274],[82.5952,23.03608],[82.59007,23.03977],[82.58722,23.04792],[82.58484,23.05022],[82.57747,23.05177],[82.58,23.0584],[82.58583,23.05935],[82.58646,23.06217],[82.57292,23.07109],[82.56898,23.07532],[82.5743,23.08456],[82.58371,23.08379],[82.58668,23.09869],[82.58319,23.10539],[82.58043,23.11671],[82.57812,23.11908],[82.5768,23.12772],[82.5821,23.13137],[82.59497,23.13342],[82.60943,23.14474],[82.61267,23.14404],[82.61394,23.14206],[82.61706,23.14461],[82.62137,23.14231],[82.63653,23.14092],[82.63777,23.14527],[82.64031,23.14622],[82.64131,23.14973],[82.64336,23.14994],[82.64337,23.15561],[82.64906,23.15695],[82.66415,23.20655],[82.67349,23.21539],[82.6813,23.21762],[82.68842,23.22622],[82.69116,23.23526],[82.69662,23.2445],[82.70872,23.24367],[82.71469,23.24609],[82.7236,23.24569],[82.72717,23.24666],[82.72921,23.24964],[82.73355,23.25024],[82.73583,23.24823],[82.73872,23.25224],[82.74464,23.25129],[82.75533,23.25674],[82.76286,23.25724],[82.76428,23.25461],[82.77215,23.25843],[82.77073,23.26118],[82.76719,23.25992],[82.76203,23.2635],[82.7583,23.26324],[82.75585,23.26799],[82.75209,23.26608],[82.74438,23.26847],[82.74529,23.27061],[82.74359,23.27369],[82.746,23.27667],[82.74463,23.28486],[82.74658,23.29554],[82.74909,23.29793],[82.75593,23.29962],[82.75684,23.30264],[82.75501,23.31813],[82.75195,23.32061],[82.75658,23.33435],[82.75024,23.34657],[82.75051,23.35096],[82.74835,23.35482],[82.74111,23.35981],[82.72725,23.36494],[82.72284,23.36478],[82.71821,23.36113],[82.71493,23.36075],[82.69673,23.36968],[82.67574,23.37023],[82.67111,23.37497],[82.66744,23.3757],[82.66444,23.38199],[82.65528,23.38198],[82.65013,23.38496],[82.64931,23.39181],[82.65108,23.40681],[82.6565,23.41903],[82.65305,23.43809],[82.65462,23.44293],[82.65247,23.45414],[82.65383,23.45843],[82.65037,23.4657],[82.65208,23.46933],[82.64681,23.47413],[82.64997,23.47614],[82.65025,23.47828],[82.64339,23.48428],[82.64433,23.48858],[82.64177,23.50056],[82.63188,23.50483],[82.6287,23.50965],[82.62154,23.51364],[82.61395,23.51278],[82.60513,23.52024],[82.60366,23.52516],[82.58917,23.5334],[82.58281,23.54012],[82.58016,23.54655],[82.58523,23.55278],[82.5826,23.56337],[82.57842,23.57024],[82.57981,23.57155],[82.57826,23.57415],[82.58348,23.57703],[82.57811,23.58044],[82.57608,23.5861],[82.57792,23.59014],[82.57851,23.60392],[82.57657,23.60768],[82.5796,23.6129],[82.57516,23.61802],[82.5744,23.62641],[82.57816,23.6308],[82.58064,23.63962],[82.59106,23.64392],[82.59356,23.64681],[82.59231,23.64944],[82.60319,23.66169],[82.60105,23.66551],[82.60142,23.67537],[82.59821,23.68126],[82.5956,23.69286],[82.58712,23.69886],[82.5851,23.70581],[82.58074,23.70777],[82.57544,23.71992],[82.57133,23.71972],[82.56593,23.72558],[82.56614,23.73382],[82.56189,23.73371],[82.55339,23.7373],[82.55244,23.74261],[82.55085,23.74354],[82.55176,23.74854],[82.54881,23.75389],[82.54606,23.75436],[82.54572,23.7567],[82.54052,23.75787],[82.53764,23.76167],[82.52982,23.75819],[82.5217,23.75858],[82.51568,23.75611],[82.50878,23.76088],[82.50294,23.75996],[82.49795,23.76593],[82.4989,23.7766],[82.4974,23.7849],[82.48893,23.78995],[82.48418,23.80035],[82.47919,23.80246],[82.47906,23.80595],[82.46926,23.81106],[82.45378,23.81155],[82.44691,23.80455],[82.44065,23.80279],[82.4379,23.80374],[82.43574,23.80262],[82.43431,23.805],[82.42326,23.80459],[82.3932,23.79994],[82.39287,23.80324],[82.39062,23.8052],[82.37697,23.81104],[82.36924,23.80905],[82.36405,23.80994],[82.36352,23.80803],[82.35265,23.80353],[82.33947,23.80862],[82.33466,23.80255],[82.33086,23.80616],[82.3175,23.81176],[82.31152,23.8102],[82.30578,23.81172],[82.30483,23.80739],[82.29877,23.807],[82.29181,23.80982],[82.28164,23.81698],[82.27211,23.81708],[82.26061,23.82124],[82.25013,23.81568],[82.24331,23.80852],[82.23728,23.80532],[82.23181,23.80531],[82.22704,23.80829],[82.22551,23.82008],[82.20631,23.82741],[82.20811,23.83493],[82.21197,23.83585],[82.21532,23.84102],[82.21178,23.852],[82.20128,23.84864],[82.19714,23.84165],[82.18887,23.84259],[82.18622,23.83867],[82.18085,23.83628],[82.17856,23.82161],[82.17146,23.81824],[82.16383,23.82068],[82.14206,23.81555],[82.14172,23.81689],[82.12929,23.81903],[82.12337,23.82205],[82.11659,23.81701],[82.10665,23.81868],[82.09544,23.81553],[82.09418,23.81668],[82.08327,23.81542],[82.07764,23.81864],[82.07233,23.81704],[82.06173,23.81916],[82.05329,23.81844],[82.05244,23.82165],[82.04924,23.82422],[82.03933,23.82621],[82.03876,23.83313],[82.04087,23.83292],[82.04127,23.83688],[82.04405,23.83883],[82.04418,23.84165],[82.03475,23.84641],[82.02047,23.84907],[82.00881,23.86108],[82.00093,23.86218],[81.98907,23.86043],[81.98599,23.86192],[81.98171,23.86089],[81.97721,23.85624],[81.97033,23.85723],[81.9654,23.85591],[81.96359,23.85361],[81.96027,23.85553],[81.9578,23.85228],[81.95556,23.85341],[81.95417,23.85712],[81.94993,23.85665],[81.94608,23.85877],[81.94692,23.86189],[81.93848,23.86235],[81.93823,23.86409],[81.94046,23.86559],[81.93965,23.86775],[81.93131,23.87055],[81.92147,23.87091],[81.91576,23.85893],[81.91044,23.85722],[81.90866,23.85108],[81.90629,23.84992],[81.90609,23.84606],[81.902,23.84486],[81.89875,23.84072],[81.89223,23.84052],[81.88816,23.83555],[81.86771,23.83414],[81.86628,23.82869],[81.86307,23.82446],[81.8382,23.8211],[81.83653,23.81998],[81.83688,23.8162],[81.82916,23.81503],[81.82751,23.81381],[81.82738,23.8106],[81.82282,23.80772],[81.815,23.80645],[81.80874,23.81342],[81.7959,23.81489],[81.79313,23.80991],[81.79112,23.80935],[81.77316,23.8164],[81.76212,23.82361],[81.75451,23.83075],[81.74285,23.83377],[81.73736,23.83918],[81.73223,23.84086],[81.72846,23.83902],[81.72547,23.83982],[81.72504,23.84463],[81.72969,23.84894],[81.73198,23.85668],[81.7202,23.86221],[81.70749,23.86113],[81.70728,23.86505],[81.70974,23.87125],[81.7077,23.87419],[81.70384,23.87593],[81.70731,23.88236],[81.70265,23.88619],[81.69044,23.88476],[81.68754,23.90648],[81.68256,23.9114],[81.67312,23.91288]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"385","area_level":"District","area_name":"Mahasamund","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.88236,21.55342],[82.88034,21.55538],[82.8751,21.55652],[82.87334,21.5526],[82.87075,21.55444],[82.84836,21.5435],[82.83564,21.54112],[82.83329,21.53298],[82.82826,21.52866],[82.8235,21.53184],[82.82074,21.53144],[82.82469,21.52155],[82.82919,21.51503],[82.82842,21.50734],[82.82531,21.5045],[82.81485,21.50939],[82.80199,21.51097],[82.79437,21.50874],[82.78991,21.51025],[82.78395,21.51309],[82.77348,21.52135],[82.77209,21.52415],[82.76106,21.51745],[82.75745,21.51244],[82.75215,21.51165],[82.73722,21.49492],[82.72563,21.49132],[82.71153,21.49006],[82.70166,21.4858],[82.69082,21.48497],[82.69271,21.46293],[82.69822,21.44741],[82.69769,21.41811],[82.6998,21.41141],[82.7001,21.39746],[82.69774,21.38729],[82.70139,21.38061],[82.70283,21.37339],[82.69934,21.35597],[82.7005,21.35125],[82.69928,21.34044],[82.69592,21.32992],[82.68506,21.33079],[82.66902,21.32848],[82.65117,21.33107],[82.65556,21.33686],[82.65186,21.34609],[82.64625,21.34418],[82.64454,21.34206],[82.6329,21.34172],[82.63198,21.33669],[82.62855,21.33532],[82.61721,21.34253],[82.61469,21.33886],[82.61034,21.33929],[82.60666,21.33712],[82.60036,21.33748],[82.59705,21.33965],[82.59131,21.33717],[82.58627,21.33016],[82.58091,21.33119],[82.57819,21.32575],[82.57198,21.32276],[82.56371,21.31586],[82.55718,21.32112],[82.55155,21.31907],[82.54738,21.3209],[82.54271,21.31834],[82.54099,21.32317],[82.53817,21.3238],[82.52993,21.33159],[82.52743,21.32479],[82.52104,21.32298],[82.51715,21.31807],[82.51315,21.31655],[82.49204,21.31603],[82.48127,21.32135],[82.47933,21.32633],[82.47417,21.3255],[82.47187,21.32786],[82.46993,21.32333],[82.4658,21.32398],[82.46443,21.32131],[82.46462,21.31228],[82.46093,21.31326],[82.45991,21.30753],[82.46443,21.30877],[82.46554,21.30533],[82.47547,21.29718],[82.45563,21.29439],[82.45619,21.27868],[82.44938,21.2759],[82.44543,21.27763],[82.44424,21.28089],[82.44018,21.28248],[82.43646,21.28906],[82.43844,21.29221],[82.44245,21.29342],[82.44583,21.29833],[82.44684,21.30178],[82.44505,21.30414],[82.43742,21.30869],[82.42886,21.31027],[82.42321,21.30882],[82.4176,21.3103],[82.39568,21.29591],[82.39548,21.29081],[82.39208,21.28305],[82.39217,21.26796],[82.38983,21.2623],[82.37876,21.26507],[82.37744,21.27352],[82.3621,21.27662],[82.36071,21.27655],[82.35858,21.26648],[82.35093,21.26644],[82.34503,21.26369],[82.34546,21.26669],[82.34326,21.27],[82.3441,21.27272],[82.35212,21.27528],[82.34822,21.28408],[82.3433,21.28602],[82.3379,21.28138],[82.33709,21.28301],[82.33041,21.28502],[82.32504,21.29265],[82.32173,21.29123],[82.31421,21.29248],[82.31151,21.28906],[82.30999,21.28084],[82.29903,21.28119],[82.29746,21.26895],[82.27686,21.27253],[82.27807,21.27743],[82.27576,21.28644],[82.27733,21.30106],[82.26434,21.30171],[82.26169,21.30899],[82.24296,21.31546],[82.25208,21.31774],[82.25539,21.32917],[82.25528,21.33992],[82.25221,21.34502],[82.25551,21.34904],[82.25615,21.35336],[82.25059,21.3587],[82.24488,21.36047],[82.24334,21.36484],[82.24905,21.37028],[82.25659,21.38304],[82.27511,21.38552],[82.27667,21.39244],[82.27491,21.40122],[82.27185,21.40571],[82.2641,21.40742],[82.26133,21.41304],[82.25542,21.41337],[82.25402,21.41648],[82.24548,21.41897],[82.24628,21.42695],[82.25235,21.43233],[82.24305,21.43482],[82.23313,21.43396],[82.22895,21.42329],[82.18953,21.37401],[82.1773,21.35143],[82.16562,21.33375],[82.14593,21.31122],[82.13012,21.2999],[82.1217,21.29024],[82.11768,21.28782],[82.09075,21.28159],[82.05906,21.26346],[82.03688,21.24343],[82.02839,21.23223],[82.01703,21.20989],[82.0171,21.17414],[82.01499,21.16435],[82.01247,21.15474],[82.00266,21.14591],[81.99826,21.13939],[81.99217,21.11314],[81.98818,21.08334],[81.99526,21.07657],[82.00278,21.07619],[82.00724,21.0743],[82.01426,21.06391],[82.02519,21.05675],[82.03206,21.05602],[82.04045,21.05906],[82.0529,21.0601],[82.05801,21.06252],[82.06113,21.06158],[82.06712,21.04506],[82.0782,21.03907],[82.08184,21.0323],[82.09291,21.02574],[82.10823,21.026],[82.12739,21.01602],[82.13974,21.01879],[82.14756,21.01636],[82.16212,21.01611],[82.167,21.00793],[82.16695,21.00307],[82.17142,20.9977],[82.17386,20.98436],[82.17184,20.97457],[82.17669,20.96844],[82.18233,20.9665],[82.18637,20.96691],[82.19028,20.94968],[82.19847,20.93916],[82.20674,20.94257],[82.20949,20.93925],[82.21367,20.93886],[82.21971,20.93467],[82.22621,20.93875],[82.22441,20.94549],[82.22074,20.95024],[82.22383,20.95205],[82.2282,20.9521],[82.23661,20.94723],[82.24279,20.9473],[82.24584,20.94144],[82.24946,20.93974],[82.26023,20.94103],[82.26559,20.94531],[82.27187,20.93549],[82.27017,20.92542],[82.27422,20.91114],[82.28108,20.90566],[82.29738,20.90152],[82.31213,20.88102],[82.31823,20.87873],[82.32584,20.87994],[82.33673,20.87766],[82.33616,20.8704],[82.3382,20.87065],[82.34597,20.87291],[82.35119,20.88974],[82.36376,20.88849],[82.35947,20.87381],[82.36461,20.87067],[82.37592,20.86798],[82.38505,20.87409],[82.38967,20.87532],[82.38924,20.87409],[82.39557,20.87003],[82.40545,20.87019],[82.40751,20.86576],[82.40685,20.85928],[82.41287,20.85086],[82.40995,20.8456],[82.4101,20.84229],[82.41835,20.83687],[82.41959,20.8318],[82.42698,20.83148],[82.43934,20.83564],[82.44353,20.83437],[82.44417,20.83074],[82.44902,20.83101],[82.45541,20.82751],[82.46449,20.829],[82.46878,20.83518],[82.46539,20.84295],[82.47044,20.84808],[82.48108,20.85131],[82.48639,20.86089],[82.48598,20.87028],[82.49107,20.88063],[82.48699,20.90504],[82.48874,20.9094],[82.50443,20.91959],[82.51594,20.92176],[82.52711,20.934],[82.54303,20.93661],[82.55915,20.94794],[82.57138,20.97226],[82.58051,20.97973],[82.58878,20.99355],[82.61136,21.01297],[82.61333,21.02285],[82.62879,21.03804],[82.62979,21.04094],[82.6261,21.04854],[82.61788,21.05468],[82.61725,21.05986],[82.61186,21.06919],[82.61198,21.07469],[82.61651,21.07918],[82.62964,21.07882],[82.63311,21.08319],[82.63389,21.08776],[82.63733,21.09319],[82.64582,21.1],[82.64991,21.10647],[82.64845,21.10956],[82.64215,21.11122],[82.63974,21.11574],[82.64191,21.12007],[82.65276,21.12871],[82.65198,21.13325],[82.64395,21.13487],[82.63727,21.14474],[82.63722,21.15073],[82.64061,21.15487],[82.65549,21.15714],[82.66405,21.155],[82.68415,21.16106],[82.68554,21.16497],[82.693,21.16574],[82.69708,21.1642],[82.69573,21.16053],[82.69983,21.1577],[82.70526,21.15808],[82.71067,21.16085],[82.72119,21.15767],[82.72115,21.16585],[82.73683,21.16533],[82.74057,21.16347],[82.75001,21.16411],[82.75591,21.16643],[82.7575,21.16355],[82.7601,21.1652],[82.76298,21.16262],[82.76334,21.16409],[82.76581,21.16278],[82.76504,21.16173],[82.76782,21.16056],[82.76713,21.15901],[82.77435,21.15413],[82.7794,21.15358],[82.78077,21.14967],[82.78564,21.14487],[82.79368,21.14255],[82.79666,21.14865],[82.79622,21.15065],[82.80032,21.15595],[82.80502,21.15592],[82.81197,21.16107],[82.826,21.16368],[82.82802,21.16544],[82.83126,21.16467],[82.84276,21.16772],[82.8471,21.16653],[82.85088,21.16863],[82.8501,21.16161],[82.85246,21.15954],[82.8556,21.16147],[82.85959,21.15977],[82.86643,21.16282],[82.8717,21.15748],[82.87255,21.16238],[82.87636,21.16355],[82.87852,21.15858],[82.87818,21.15345],[82.88218,21.14843],[82.89393,21.15637],[82.89548,21.16098],[82.90211,21.16699],[82.91022,21.1652],[82.91498,21.16196],[82.92094,21.16347],[82.93225,21.16308],[82.93387,21.16399],[82.93497,21.16833],[82.9377,21.16985],[82.93996,21.16635],[82.93998,21.16093],[82.94768,21.16178],[82.94757,21.16453],[82.94286,21.17164],[82.94682,21.1755],[82.94384,21.17785],[82.94903,21.1839],[82.95916,21.18888],[82.96099,21.19266],[82.96493,21.19327],[82.96743,21.18307],[82.96556,21.17533],[82.96739,21.17484],[82.97001,21.17886],[82.97534,21.18215],[82.97787,21.18258],[82.98325,21.18006],[82.98809,21.18281],[82.99,21.18183],[82.98056,21.17003],[82.98607,21.16811],[82.99319,21.17111],[82.99652,21.16968],[83.00135,21.17057],[83.00376,21.16693],[82.99332,21.16189],[82.9924,21.15856],[82.98576,21.15104],[82.99039,21.13981],[82.99373,21.14084],[82.99545,21.13853],[82.99936,21.13891],[83.00155,21.13687],[83.00458,21.13696],[83.01013,21.14257],[83.01005,21.14474],[83.016,21.14631],[83.0203,21.14346],[83.02304,21.13656],[83.02891,21.13513],[83.03338,21.1373],[83.03482,21.13663],[83.03383,21.13193],[83.03865,21.13173],[83.04525,21.12401],[83.05233,21.12627],[83.05603,21.12231],[83.06611,21.12076],[83.06851,21.11685],[83.075,21.11365],[83.07725,21.11407],[83.07781,21.11195],[83.0849,21.11295],[83.09011,21.11113],[83.09442,21.11328],[83.09709,21.11016],[83.10128,21.10999],[83.11354,21.11266],[83.1216,21.1099],[83.1241,21.1067],[83.13149,21.10581],[83.13383,21.10696],[83.13867,21.10951],[83.14065,21.11234],[83.13893,21.11333],[83.14743,21.11856],[83.15733,21.13107],[83.16464,21.13523],[83.16691,21.13879],[83.17104,21.13617],[83.17816,21.1352],[83.19136,21.13869],[83.1981,21.14544],[83.19656,21.15143],[83.19836,21.15346],[83.19852,21.16426],[83.20462,21.1657],[83.20284,21.17764],[83.20511,21.17943],[83.20933,21.18945],[83.21462,21.19479],[83.21053,21.20504],[83.21275,21.2102],[83.21706,21.21331],[83.21857,21.22089],[83.21758,21.22597],[83.2189,21.22861],[83.22215,21.22872],[83.21765,21.25485],[83.22167,21.26007],[83.22295,21.26577],[83.23191,21.27272],[83.23796,21.26961],[83.23933,21.27363],[83.24627,21.28116],[83.25059,21.28238],[83.25583,21.28212],[83.26777,21.27756],[83.26908,21.27406],[83.2713,21.27294],[83.27491,21.28581],[83.27859,21.28932],[83.27927,21.29496],[83.27629,21.3023],[83.27205,21.30188],[83.26883,21.30507],[83.26208,21.30783],[83.25734,21.3205],[83.26283,21.33027],[83.26653,21.33086],[83.25754,21.33408],[83.25856,21.33707],[83.26835,21.34513],[83.26987,21.34822],[83.27215,21.359],[83.27469,21.36383],[83.27424,21.37729],[83.24786,21.38303],[83.23635,21.38146],[83.22192,21.38312],[83.22073,21.3911],[83.21808,21.39518],[83.20149,21.3996],[83.19419,21.38633],[83.18836,21.38157],[83.19074,21.38722],[83.18943,21.39575],[83.17958,21.40234],[83.17391,21.38989],[83.15313,21.37543],[83.15117,21.37275],[83.15064,21.36609],[83.1464,21.36598],[83.14282,21.36277],[83.14055,21.37067],[83.13076,21.37891],[83.13266,21.39173],[83.13004,21.39831],[83.12721,21.40109],[83.12466,21.39959],[83.11787,21.40277],[83.11428,21.41166],[83.11724,21.41637],[83.12327,21.41518],[83.12262,21.4226],[83.10741,21.42889],[83.10004,21.42672],[83.09495,21.4281],[83.08756,21.43361],[83.07068,21.43337],[83.05937,21.43597],[83.05686,21.44084],[83.05136,21.44494],[83.05448,21.46171],[83.0493,21.47875],[83.04659,21.4823],[83.04003,21.4827],[83.0321,21.48745],[83.01581,21.49017],[83.01366,21.47491],[83.01485,21.47192],[83.00987,21.46813],[83.00527,21.46022],[82.99862,21.45969],[82.9933,21.46231],[82.99194,21.46544],[82.98684,21.46592],[82.98652,21.46819],[82.97779,21.47801],[82.96578,21.47153],[82.96185,21.48925],[82.95311,21.49716],[82.94798,21.49636],[82.94493,21.49233],[82.94436,21.49486],[82.93437,21.49592],[82.93189,21.49472],[82.93178,21.49214],[82.92924,21.49313],[82.924,21.49204],[82.92166,21.48982],[82.91649,21.49497],[82.91044,21.50487],[82.90361,21.52273],[82.89865,21.52907],[82.89694,21.53575],[82.89356,21.53819],[82.89204,21.5423],[82.88236,21.55342]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"386","area_level":"District","area_name":"Raigarh","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[83.00717,22.22443],[83.00936,22.2261],[83.01197,22.22723],[83.01378,22.22767],[83.0183,22.22774],[83.0244,22.22905],[83.02119,22.23187],[83.02008,22.23448],[83.01915,22.23806],[83.01783,22.24102],[83.01673,22.24231],[83.01508,22.24359],[83.00833,22.25433],[83.0071,22.25594],[83.00412,22.25665],[83.00486,22.25476],[83.00371,22.25327],[82.9993,22.2519],[82.99813,22.25073],[82.9962,22.24971],[82.99577,22.24918],[82.99584,22.24726],[82.99562,22.2467],[82.99389,22.24427],[82.99258,22.24295],[82.99035,22.24228],[82.99017,22.24109],[82.9887,22.23794],[82.98803,22.23375],[82.98758,22.23242],[82.98767,22.23136],[82.9904,22.22796],[82.99309,22.22661],[82.99569,22.22622],[83.00214,22.22445],[83.00717,22.22443]]],[[[83.22033,22.7884],[83.2185,22.7912],[83.2152,22.78749],[83.20468,22.78613],[83.20487,22.78414],[83.20127,22.78496],[83.1987,22.78051],[83.19343,22.78082],[83.18885,22.7774],[83.18883,22.78127],[83.19133,22.78285],[83.19014,22.78615],[83.18782,22.78652],[83.17856,22.77945],[83.16184,22.7729],[83.15918,22.7733],[83.15498,22.75862],[83.1568,22.74662],[83.15202,22.73523],[83.14883,22.73421],[83.13829,22.73544],[83.11504,22.7255],[83.11942,22.70758],[83.12492,22.70327],[83.11777,22.6894],[83.11048,22.68926],[83.10166,22.68246],[83.11582,22.67031],[83.12323,22.65479],[83.12278,22.6473],[83.10718,22.6412],[83.10368,22.63646],[83.09468,22.63362],[83.09727,22.61518],[83.09764,22.59725],[83.09742,22.59405],[83.09199,22.58668],[83.09254,22.57575],[83.09541,22.56324],[83.10267,22.55295],[83.10699,22.53579],[83.10328,22.52607],[83.10735,22.51846],[83.10312,22.5047],[83.0931,22.49782],[83.08944,22.49163],[83.08609,22.46989],[83.08697,22.46693],[83.09422,22.46233],[83.09488,22.46043],[83.09444,22.45645],[83.09065,22.45072],[83.08903,22.43874],[83.09035,22.43695],[83.09355,22.43679],[83.09455,22.42724],[83.09718,22.42559],[83.09482,22.42813],[83.09608,22.4289],[83.10714,22.4276],[83.11352,22.42146],[83.11284,22.4175],[83.10744,22.41429],[83.1079,22.38584],[83.10638,22.38367],[83.1003,22.38205],[83.10389,22.37243],[83.10921,22.36623],[83.10108,22.35548],[83.09066,22.35191],[83.08645,22.34848],[83.07921,22.33468],[83.08297,22.32342],[83.08036,22.31021],[83.06659,22.30334],[83.05947,22.28829],[83.04944,22.28043],[83.04935,22.27745],[83.05454,22.26644],[83.06119,22.26181],[83.0533,22.25513],[83.03639,22.24844],[83.0328,22.24494],[83.03006,22.23903],[83.04676,22.2267],[83.04765,22.21999],[83.051,22.21237],[83.04852,22.20394],[83.05056,22.19414],[83.0384,22.18797],[83.03036,22.16882],[83.02174,22.16757],[83.01455,22.16987],[83.00669,22.16765],[83.00319,22.16451],[82.98992,22.16415],[82.98222,22.1671],[82.97107,22.16599],[82.96713,22.16391],[82.96128,22.15502],[82.96066,22.1439],[82.94381,22.14735],[82.93673,22.12856],[82.93676,22.12303],[82.93972,22.12007],[82.95461,22.11266],[82.97002,22.09793],[83.00228,22.08243],[83.00659,22.07829],[83.01528,22.07612],[83.01382,22.06828],[83.01626,22.06444],[83.01436,22.06045],[83.01523,22.05457],[83.02176,22.05527],[83.0296,22.06058],[83.03358,22.0567],[83.03159,22.05082],[83.02821,22.05026],[83.02197,22.04521],[83.02376,22.04214],[83.02104,22.04161],[83.01959,22.03803],[83.01539,22.03554],[83.01116,22.0301],[83.0057,22.02864],[83.00564,22.0267],[83.01189,22.02389],[83.01676,22.02477],[83.01727,22.02013],[83.01426,22.01483],[83.01478,22.01299],[83.01267,22.01108],[83.01624,22.01047],[83.01546,22.00733],[83.02123,22.00598],[83.02169,22.00182],[83.01887,21.99565],[83.01536,21.99423],[83.01169,21.98655],[83.00963,21.98701],[83.00595,21.9847],[82.99832,21.98992],[82.99726,21.98802],[82.99517,21.98886],[82.99954,21.97263],[83.00231,21.97032],[83.00329,21.96498],[83.01582,21.96805],[83.01756,21.97016],[83.03283,21.96387],[83.03964,21.968],[83.04995,21.96666],[83.05262,21.96868],[83.05918,21.96987],[83.06167,21.97677],[83.09103,21.97512],[83.10131,21.95535],[83.10493,21.95242],[83.10729,21.94291],[83.11455,21.93699],[83.11402,21.93458],[83.11724,21.93108],[83.12568,21.92994],[83.12659,21.93305],[83.13001,21.92979],[83.13441,21.93058],[83.1362,21.92919],[83.13583,21.92451],[83.14833,21.91521],[83.149,21.91721],[83.15356,21.91939],[83.15793,21.91867],[83.15847,21.92065],[83.1597,21.91905],[83.16686,21.92056],[83.17175,21.91728],[83.17683,21.92009],[83.18009,21.92673],[83.1821,21.92415],[83.18604,21.9247],[83.18691,21.9273],[83.19081,21.92416],[83.19507,21.92309],[83.19499,21.92086],[83.19892,21.92067],[83.20019,21.9146],[83.20716,21.9124],[83.20547,21.91086],[83.20605,21.90956],[83.21416,21.90716],[83.21485,21.90365],[83.21183,21.90086],[83.21465,21.89779],[83.21298,21.89147],[83.21488,21.88727],[83.21454,21.88373],[83.20389,21.8819],[83.2023,21.86812],[83.19417,21.86359],[83.1838,21.86095],[83.1786,21.85073],[83.18104,21.84635],[83.18426,21.84521],[83.18702,21.84687],[83.19595,21.84563],[83.20657,21.84198],[83.21322,21.84157],[83.22063,21.83694],[83.21989,21.83439],[83.20574,21.82234],[83.20605,21.81188],[83.21953,21.803],[83.22142,21.79373],[83.23344,21.79402],[83.23708,21.79045],[83.23583,21.77621],[83.24397,21.75974],[83.24574,21.75106],[83.25828,21.7508],[83.26636,21.74068],[83.26653,21.73503],[83.25998,21.73055],[83.2609,21.72906],[83.25882,21.7273],[83.26441,21.72532],[83.26322,21.72317],[83.26523,21.71734],[83.26416,21.71546],[83.2822,21.70802],[83.30881,21.70541],[83.309,21.70183],[83.31227,21.69844],[83.31571,21.69758],[83.31714,21.69155],[83.31653,21.68271],[83.30341,21.68144],[83.27829,21.68663],[83.2575,21.69419],[83.248,21.69554],[83.23937,21.70048],[83.22898,21.70258],[83.22192,21.70612],[83.2141,21.70682],[83.19643,21.71309],[83.18326,21.71399],[83.17099,21.71815],[83.11504,21.72038],[83.08124,21.71567],[83.05569,21.73383],[83.04496,21.73972],[83.03312,21.74322],[83.02323,21.74301],[83.01045,21.73993],[82.99222,21.72972],[82.97461,21.72379],[82.96261,21.72194],[82.94889,21.72422],[82.95054,21.71167],[82.95039,21.6919],[82.95917,21.68997],[82.96364,21.69058],[82.9664,21.69274],[82.97019,21.69241],[82.97451,21.68465],[82.9782,21.6661],[82.98246,21.66653],[82.98181,21.6579],[82.98422,21.65484],[82.98585,21.64848],[82.98399,21.64174],[82.97505,21.63629],[82.97277,21.63106],[82.97453,21.62335],[82.96781,21.6185],[82.96486,21.61126],[82.95841,21.60573],[82.96196,21.60273],[82.95413,21.60416],[82.95477,21.60091],[82.95148,21.59809],[82.95358,21.59239],[82.94875,21.59044],[82.94505,21.58652],[82.94429,21.58223],[82.9432,21.58345],[82.94239,21.58206],[82.94276,21.58038],[82.94534,21.57958],[82.94476,21.5745],[82.94268,21.57475],[82.94205,21.57124],[82.93449,21.5665],[82.93321,21.56708],[82.93044,21.56241],[82.92824,21.56243],[82.92565,21.55937],[82.92727,21.55627],[82.92577,21.55669],[82.92507,21.54906],[82.92308,21.54829],[82.92778,21.54511],[82.92668,21.54293],[82.92841,21.54212],[82.92797,21.54027],[82.9261,21.53987],[82.92956,21.5372],[82.92764,21.53669],[82.92858,21.53581],[82.92679,21.53287],[82.93037,21.52954],[82.92812,21.52732],[82.9297,21.52622],[82.93071,21.52716],[82.93192,21.52476],[82.93013,21.52489],[82.92771,21.51859],[82.93235,21.5157],[82.93199,21.51336],[82.93322,21.51287],[82.93334,21.51103],[82.92981,21.50845],[82.93238,21.5073],[82.93124,21.50509],[82.93255,21.50526],[82.93531,21.50033],[82.93299,21.50052],[82.9334,21.4967],[82.94436,21.49486],[82.94493,21.49233],[82.94798,21.49636],[82.95311,21.49716],[82.96185,21.48925],[82.96578,21.47153],[82.97779,21.47801],[82.98652,21.46819],[82.98684,21.46592],[82.99194,21.46544],[82.9933,21.46231],[82.99862,21.45969],[83.00527,21.46022],[83.00987,21.46813],[83.01485,21.47192],[83.01366,21.47491],[83.01581,21.49017],[83.0321,21.48745],[83.04003,21.4827],[83.04659,21.4823],[83.0493,21.47875],[83.05448,21.46171],[83.05136,21.44494],[83.05686,21.44084],[83.05937,21.43597],[83.07068,21.43337],[83.08756,21.43361],[83.09495,21.4281],[83.10004,21.42672],[83.10741,21.42889],[83.12262,21.4226],[83.12327,21.41518],[83.11724,21.41637],[83.11428,21.41166],[83.11787,21.40277],[83.12466,21.39959],[83.12721,21.40109],[83.13004,21.39831],[83.13266,21.39173],[83.13076,21.37891],[83.14055,21.37067],[83.14282,21.36277],[83.1464,21.36598],[83.15064,21.36609],[83.15117,21.37275],[83.15313,21.37543],[83.17391,21.38989],[83.17958,21.40234],[83.18943,21.39575],[83.19074,21.38722],[83.18836,21.38157],[83.19419,21.38633],[83.20149,21.3996],[83.21808,21.39518],[83.22073,21.3911],[83.22192,21.38312],[83.23635,21.38146],[83.24599,21.38321],[83.26873,21.37859],[83.28356,21.38045],[83.28606,21.37761],[83.31137,21.37084],[83.32297,21.3624],[83.34385,21.35836],[83.34718,21.35629],[83.34772,21.35375],[83.35461,21.35429],[83.36686,21.34936],[83.3701,21.34659],[83.37902,21.34453],[83.38549,21.3463],[83.39183,21.34264],[83.40675,21.35142],[83.40864,21.35906],[83.40776,21.36163],[83.40062,21.36391],[83.39687,21.36756],[83.40051,21.37588],[83.3972,21.38803],[83.39893,21.40534],[83.39346,21.40771],[83.38529,21.41537],[83.37815,21.42683],[83.37587,21.42806],[83.37428,21.43498],[83.37124,21.43551],[83.37362,21.44239],[83.36686,21.44555],[83.35437,21.44807],[83.35147,21.46003],[83.34655,21.4716],[83.34574,21.47962],[83.34706,21.48898],[83.34132,21.4942],[83.33784,21.5013],[83.34304,21.50965],[83.34962,21.51265],[83.35204,21.52115],[83.35709,21.52808],[83.35866,21.53824],[83.3614,21.53916],[83.36014,21.54285],[83.36427,21.545],[83.36451,21.54704],[83.3662,21.54663],[83.36766,21.54932],[83.36598,21.55081],[83.36999,21.55252],[83.36978,21.55646],[83.37316,21.55816],[83.37187,21.5596],[83.37033,21.55875],[83.37186,21.56442],[83.3693,21.56668],[83.36989,21.56806],[83.36748,21.56874],[83.36775,21.57209],[83.36498,21.57589],[83.36895,21.585],[83.36694,21.58666],[83.36893,21.58898],[83.36774,21.59172],[83.37051,21.59126],[83.36953,21.60018],[83.38014,21.60813],[83.38304,21.61426],[83.38268,21.62013],[83.38943,21.61769],[83.39246,21.62729],[83.39559,21.62709],[83.40347,21.63094],[83.40907,21.6372],[83.41504,21.6408],[83.42757,21.64352],[83.42884,21.64723],[83.44265,21.65541],[83.45076,21.65075],[83.44438,21.63929],[83.44292,21.63142],[83.44463,21.63043],[83.44397,21.624],[83.45247,21.62241],[83.45227,21.61287],[83.45506,21.61241],[83.45611,21.61],[83.4606,21.6078],[83.46627,21.60955],[83.46986,21.62154],[83.47349,21.62737],[83.47356,21.63249],[83.48905,21.63062],[83.48955,21.63487],[83.49193,21.63818],[83.48714,21.6399],[83.48661,21.64413],[83.46976,21.64873],[83.44813,21.65754],[83.44248,21.66129],[83.43127,21.67421],[83.41869,21.68065],[83.42216,21.68705],[83.42385,21.68721],[83.42287,21.68884],[83.42483,21.69248],[83.42882,21.69462],[83.43165,21.69991],[83.44077,21.6989],[83.4517,21.69542],[83.45948,21.69855],[83.46106,21.70909],[83.47336,21.72064],[83.47784,21.73054],[83.4813,21.73113],[83.48018,21.73396],[83.4852,21.74517],[83.48932,21.74539],[83.48744,21.74895],[83.47605,21.75238],[83.48218,21.7656],[83.47617,21.78078],[83.46936,21.78727],[83.47279,21.78747],[83.47547,21.79126],[83.47761,21.79083],[83.48365,21.79419],[83.48712,21.80036],[83.4878,21.80731],[83.49374,21.813],[83.49245,21.81801],[83.50593,21.80796],[83.52259,21.79945],[83.52587,21.7983],[83.5287,21.79955],[83.54043,21.79905],[83.54273,21.80573],[83.53741,21.81308],[83.5401,21.82204],[83.53071,21.82687],[83.53271,21.83176],[83.54163,21.83826],[83.55177,21.84071],[83.56275,21.83759],[83.57163,21.83204],[83.57615,21.83119],[83.57885,21.83245],[83.57791,21.83752],[83.58145,21.83817],[83.58708,21.84352],[83.59089,21.8511],[83.57421,21.87511],[83.57644,21.88237],[83.58081,21.88327],[83.57774,21.88898],[83.58155,21.88985],[83.58708,21.89453],[83.58523,21.89964],[83.58597,21.90213],[83.5947,21.90343],[83.597,21.906],[83.59848,21.90497],[83.60294,21.90858],[83.60592,21.91412],[83.60157,21.91806],[83.59987,21.92207],[83.59036,21.9297],[83.55672,21.93535],[83.55915,21.94505],[83.56169,21.94801],[83.54204,21.96211],[83.53901,21.96599],[83.53716,21.97796],[83.54355,21.98762],[83.54331,21.99385],[83.55615,22.00782],[83.53979,22.02167],[83.53647,22.0296],[83.53716,22.04505],[83.54374,22.05697],[83.54799,22.05918],[83.5469,22.057],[83.55035,22.05335],[83.55398,22.05292],[83.55429,22.05437],[83.55737,22.05371],[83.55822,22.05485],[83.58178,22.05458],[83.58307,22.05023],[83.5873,22.04891],[83.58988,22.05445],[83.59617,22.05789],[83.60152,22.05877],[83.6034,22.06383],[83.60642,22.06659],[83.59358,22.07421],[83.57694,22.09032],[83.56284,22.0962],[83.56181,22.09892],[83.56435,22.106],[83.57592,22.1209],[83.58321,22.12507],[83.59369,22.14029],[83.60815,22.15437],[83.61333,22.1777],[83.63037,22.20742],[83.64951,22.22334],[83.65531,22.22004],[83.66447,22.22879],[83.66577,22.23273],[83.69105,22.24273],[83.69147,22.24412],[83.70516,22.24685],[83.71306,22.24272],[83.7212,22.24304],[83.72821,22.24134],[83.72949,22.24282],[83.74318,22.23971],[83.75702,22.23995],[83.75847,22.24482],[83.75768,22.24714],[83.75971,22.25121],[83.76645,22.25563],[83.77289,22.25571],[83.77558,22.25734],[83.77673,22.2613],[83.77524,22.26166],[83.77472,22.26477],[83.77679,22.26627],[83.77665,22.26985],[83.77942,22.27365],[83.79223,22.27648],[83.79604,22.28247],[83.79485,22.28595],[83.80193,22.28931],[83.80363,22.29422],[83.7933,22.30069],[83.7958,22.30292],[83.79565,22.30897],[83.78526,22.30886],[83.78094,22.31192],[83.77596,22.31863],[83.7683,22.31923],[83.76427,22.32441],[83.75915,22.32566],[83.76102,22.32975],[83.75832,22.33778],[83.75314,22.33927],[83.75365,22.34553],[83.75024,22.35072],[83.74588,22.35286],[83.74322,22.36383],[83.73709,22.3709],[83.73777,22.37743],[83.73182,22.37651],[83.72112,22.37823],[83.71371,22.38192],[83.71038,22.38204],[83.70838,22.38152],[83.70705,22.37783],[83.70371,22.3757],[83.69029,22.37596],[83.68828,22.37904],[83.67227,22.3818],[83.65711,22.38962],[83.64869,22.39137],[83.64458,22.39769],[83.64442,22.40703],[83.63241,22.42051],[83.6201,22.42467],[83.61691,22.43193],[83.60648,22.4409],[83.60013,22.44509],[83.58595,22.45004],[83.57983,22.45738],[83.57573,22.45967],[83.57338,22.47328],[83.57669,22.48048],[83.58226,22.48753],[83.591,22.51376],[83.59183,22.523],[83.59379,22.52337],[83.5914,22.52485],[83.59142,22.52665],[83.59583,22.53232],[83.58734,22.53956],[83.57377,22.54389],[83.56777,22.54201],[83.55162,22.52859],[83.54311,22.5163],[83.51274,22.51095],[83.49702,22.5007],[83.49263,22.49593],[83.49285,22.49213],[83.48998,22.49213],[83.48739,22.49508],[83.48528,22.49437],[83.48434,22.49809],[83.4777,22.49968],[83.46911,22.50387],[83.46616,22.50744],[83.46163,22.50837],[83.45783,22.51577],[83.45513,22.51608],[83.4555,22.51833],[83.45227,22.51843],[83.45063,22.52231],[83.44497,22.52224],[83.43069,22.53604],[83.42705,22.53818],[83.42472,22.53735],[83.42255,22.54395],[83.4202,22.54303],[83.41955,22.54529],[83.41438,22.54655],[83.41223,22.54886],[83.40759,22.54865],[83.40018,22.55318],[83.39798,22.55818],[83.40549,22.58573],[83.41183,22.58995],[83.41433,22.59584],[83.41954,22.59594],[83.42705,22.60039],[83.42711,22.60674],[83.40394,22.60949],[83.37981,22.61855],[83.38639,22.6197],[83.39224,22.62472],[83.40372,22.62363],[83.41158,22.62938],[83.41335,22.63797],[83.40518,22.6393],[83.40524,22.64673],[83.38481,22.65281],[83.37955,22.66786],[83.37645,22.69182],[83.38297,22.69109],[83.38787,22.68783],[83.39203,22.69586],[83.3918,22.71379],[83.39905,22.7266],[83.3958,22.72928],[83.39376,22.73467],[83.37872,22.74186],[83.37242,22.74148],[83.36983,22.73963],[83.36982,22.73532],[83.36523,22.73336],[83.36381,22.72966],[83.35523,22.73074],[83.35197,22.72938],[83.34676,22.73473],[83.34341,22.7359],[83.34314,22.74474],[83.34007,22.74983],[83.33306,22.75408],[83.33229,22.75986],[83.31981,22.7661],[83.31819,22.76288],[83.31913,22.75912],[83.3156,22.75831],[83.30849,22.75829],[83.30048,22.76418],[83.29778,22.76295],[83.29534,22.76568],[83.28647,22.76957],[83.26787,22.76453],[83.25912,22.7677],[83.25451,22.76607],[83.25369,22.76199],[83.24561,22.75938],[83.24457,22.76091],[83.24741,22.76185],[83.24786,22.7655],[83.24372,22.76564],[83.24174,22.77355],[83.23452,22.76841],[83.23068,22.77468],[83.23016,22.77685],[83.23319,22.77855],[83.23193,22.7818],[83.23325,22.78333],[83.22675,22.77969],[83.21818,22.78045],[83.21809,22.78514],[83.2216,22.78646],[83.22033,22.7884]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"387","area_level":"District","area_name":"Raipur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.78762,21.62272],[81.78544,21.62614],[81.78155,21.62258],[81.77935,21.62271],[81.76954,21.60847],[81.75604,21.61336],[81.74805,21.61329],[81.7475,21.60584],[81.74313,21.60559],[81.74189,21.60109],[81.74382,21.59487],[81.74765,21.5928],[81.74807,21.58815],[81.75356,21.58794],[81.75151,21.58301],[81.749,21.58429],[81.73924,21.58431],[81.73744,21.58194],[81.73306,21.5848],[81.72295,21.5873],[81.72113,21.58929],[81.7066,21.59091],[81.70251,21.58914],[81.69821,21.59226],[81.69555,21.59138],[81.69518,21.59872],[81.69727,21.60099],[81.6948,21.60151],[81.68858,21.59171],[81.68071,21.57437],[81.66649,21.56794],[81.66901,21.55096],[81.6673,21.54804],[81.66484,21.54673],[81.64776,21.54792],[81.64338,21.54606],[81.64458,21.52177],[81.63314,21.51427],[81.62803,21.50803],[81.63066,21.4963],[81.62753,21.4849],[81.63088,21.47445],[81.62399,21.46958],[81.62264,21.46569],[81.62682,21.45169],[81.63212,21.44569],[81.62857,21.43765],[81.62848,21.43413],[81.6325,21.42693],[81.63066,21.41753],[81.63237,21.41249],[81.63912,21.40776],[81.63818,21.40272],[81.62948,21.39591],[81.62541,21.3882],[81.62328,21.387],[81.61414,21.3894],[81.61012,21.38732],[81.60782,21.3822],[81.6085,21.37828],[81.61247,21.37248],[81.61102,21.36536],[81.60872,21.36296],[81.59207,21.35688],[81.59288,21.3526],[81.59681,21.34652],[81.59587,21.34268],[81.5916,21.34099],[81.58072,21.33191],[81.57329,21.33439],[81.55887,21.33566],[81.554,21.33326],[81.55005,21.30498],[81.54075,21.30081],[81.53562,21.30169],[81.53409,21.29961],[81.53439,21.29596],[81.54618,21.26973],[81.5414,21.24979],[81.54287,21.24688],[81.54723,21.24186],[81.55149,21.23973],[81.56061,21.2417],[81.56286,21.24071],[81.57515,21.22228],[81.58781,21.21656],[81.59495,21.20967],[81.60214,21.20674],[81.60532,21.20025],[81.60561,21.19275],[81.61816,21.16869],[81.62543,21.16131],[81.62333,21.1589],[81.60307,21.15894],[81.60537,21.14846],[81.60316,21.14599],[81.59364,21.14181],[81.5808,21.12152],[81.58114,21.10866],[81.57892,21.09817],[81.57502,21.0899],[81.57826,21.08432],[81.57728,21.07398],[81.59271,21.06678],[81.60354,21.06779],[81.60607,21.06501],[81.60807,21.05877],[81.60702,21.05574],[81.59762,21.05002],[81.58689,21.0492],[81.58571,21.04634],[81.5866,21.04429],[81.60366,21.03571],[81.60614,21.02979],[81.61309,21.02634],[81.61435,21.02399],[81.61651,21.02425],[81.61704,21.02028],[81.62164,21.02104],[81.62439,21.01593],[81.62749,21.01905],[81.62893,21.01591],[81.63218,21.01539],[81.63453,21.01152],[81.63846,21.00909],[81.64765,21.00972],[81.64836,21.0076],[81.65508,21.00445],[81.65519,21.00022],[81.65691,20.99945],[81.6605,21.00164],[81.66977,20.99836],[81.67044,21.00063],[81.67454,21.00095],[81.68274,20.99592],[81.68523,21.0005],[81.68933,21.00336],[81.69853,21.00381],[81.70102,21.00548],[81.70199,21.01064],[81.70736,21.01818],[81.7136,21.01845],[81.71744,21.01346],[81.71675,21.01088],[81.73351,21.01352],[81.74826,21.01146],[81.7515,21.00879],[81.75153,21.00198],[81.75647,21.0012],[81.75759,20.99487],[81.76289,20.99149],[81.76075,20.98851],[81.76207,20.98585],[81.76869,20.98195],[81.77391,20.98239],[81.77583,20.97662],[81.77869,20.97456],[81.77964,20.96919],[81.78083,20.96993],[81.78912,20.96448],[81.79277,20.96454],[81.794,20.96656],[81.80195,20.96475],[81.8026,20.96677],[81.80535,20.96625],[81.80756,20.96311],[81.81103,20.96313],[81.81488,20.95839],[81.8152,20.95428],[81.81236,20.95447],[81.81171,20.95192],[81.81487,20.94617],[81.81781,20.94847],[81.82212,20.94757],[81.82411,20.94901],[81.82631,20.9448],[81.82895,20.94528],[81.82851,20.94298],[81.83349,20.94302],[81.83547,20.94032],[81.84702,20.94066],[81.85521,20.9439],[81.85724,20.94832],[81.85779,20.95801],[81.86076,20.96037],[81.87267,20.96391],[81.87741,20.97601],[81.88915,20.98824],[81.91516,21.00728],[81.92331,21.01761],[81.95352,21.03637],[81.97065,21.05886],[81.9801,21.07448],[81.98818,21.08334],[81.99217,21.11314],[81.99826,21.13939],[82.00266,21.14591],[82.01247,21.15474],[82.01499,21.16435],[82.0171,21.17414],[82.01703,21.20989],[82.02839,21.23223],[82.03688,21.24343],[82.06345,21.26638],[82.09075,21.28159],[82.11768,21.28782],[82.1217,21.29024],[82.13012,21.2999],[82.14593,21.31122],[82.16562,21.33375],[82.19347,21.37921],[82.18908,21.38209],[82.18242,21.37849],[82.17018,21.38178],[82.1648,21.37639],[82.16065,21.37602],[82.15621,21.36971],[82.14634,21.36202],[82.14587,21.35879],[82.14184,21.36028],[82.13719,21.36621],[82.12638,21.36659],[82.12412,21.37259],[82.12459,21.38056],[82.11745,21.38251],[82.11593,21.38643],[82.11746,21.4005],[82.12094,21.40547],[82.11803,21.4125],[82.10741,21.41176],[82.10601,21.41469],[82.09993,21.4182],[82.09669,21.41829],[82.08837,21.42961],[82.08462,21.43055],[82.07883,21.4355],[82.06943,21.43366],[82.05431,21.43655],[82.05137,21.43988],[82.0388,21.44652],[82.03532,21.45121],[82.03635,21.45367],[82.03394,21.45557],[82.02629,21.45585],[82.02292,21.45299],[82.02322,21.45036],[82.0199,21.44846],[82.00859,21.45763],[81.99429,21.45998],[81.99343,21.46272],[81.99529,21.47014],[81.99016,21.47387],[81.97865,21.47605],[81.97356,21.47218],[81.96724,21.4719],[81.96068,21.47409],[81.9539,21.4724],[81.95222,21.47836],[81.9522,21.48853],[81.94231,21.48645],[81.93933,21.48844],[81.93432,21.48838],[81.93319,21.4914],[81.93015,21.49232],[81.92625,21.50468],[81.92973,21.51363],[81.93195,21.51488],[81.93501,21.5254],[81.93165,21.53059],[81.93301,21.53413],[81.92929,21.53616],[81.92799,21.53878],[81.92849,21.54574],[81.92406,21.55093],[81.92423,21.55408],[81.92474,21.55738],[81.92782,21.55965],[81.92753,21.56311],[81.93007,21.56382],[81.9362,21.57131],[81.93154,21.57672],[81.92747,21.58784],[81.92247,21.5842],[81.92227,21.59247],[81.92065,21.59451],[81.91048,21.59612],[81.90071,21.59975],[81.89466,21.57757],[81.8907,21.57525],[81.88744,21.57538],[81.88087,21.58015],[81.88046,21.58411],[81.86177,21.5941],[81.86432,21.60472],[81.86379,21.60678],[81.85807,21.60932],[81.85111,21.60757],[81.85032,21.60354],[81.84524,21.60347],[81.84314,21.59821],[81.84464,21.5955],[81.83081,21.59905],[81.81713,21.59841],[81.80885,21.59986],[81.79373,21.59651],[81.79039,21.59789],[81.78434,21.60831],[81.78683,21.61195],[81.78762,21.62272]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"388","area_level":"District","area_name":"Rajnandgaon","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.84651,21.83505],[80.84285,21.82156],[80.84039,21.81823],[80.84143,21.81539],[80.83907,21.81348],[80.84036,21.81255],[80.83974,21.81092],[80.83751,21.80945],[80.83956,21.80721],[80.83809,21.80531],[80.8395,21.80323],[80.83862,21.80231],[80.84015,21.80204],[80.83567,21.79717],[80.83663,21.7961],[80.83205,21.7942],[80.83181,21.78946],[80.82984,21.78916],[80.83022,21.78678],[80.82618,21.78298],[80.8262,21.78159],[80.82954,21.77994],[80.82709,21.77863],[80.82821,21.77621],[80.82358,21.77499],[80.82274,21.77289],[80.82406,21.77218],[80.82263,21.7714],[80.82458,21.77045],[80.82133,21.768],[80.82278,21.76795],[80.822,21.76602],[80.81864,21.7656],[80.81712,21.76213],[80.81563,21.75573],[80.81661,21.75399],[80.82017,21.75402],[80.81974,21.74802],[80.80926,21.74843],[80.80451,21.74662],[80.80326,21.74447],[80.78543,21.74031],[80.78446,21.74287],[80.78585,21.74876],[80.77963,21.7507],[80.77627,21.75363],[80.77792,21.75477],[80.77203,21.75852],[80.75938,21.75918],[80.75599,21.76206],[80.74747,21.75554],[80.74034,21.74413],[80.73781,21.73626],[80.73987,21.732],[80.73338,21.72777],[80.734,21.72053],[80.73206,21.71366],[80.72614,21.71367],[80.72568,21.71214],[80.72902,21.70692],[80.73397,21.70594],[80.73513,21.70389],[80.73233,21.69816],[80.73414,21.69451],[80.733,21.69266],[80.72978,21.69206],[80.72531,21.68128],[80.72145,21.677],[80.71598,21.67473],[80.71918,21.66849],[80.71801,21.66619],[80.71526,21.66578],[80.7163,21.66328],[80.71439,21.66155],[80.71708,21.66008],[80.71928,21.64537],[80.72685,21.64562],[80.72764,21.63666],[80.72958,21.63403],[80.72901,21.62686],[80.73157,21.62651],[80.7291,21.62056],[80.73095,21.61735],[80.7234,21.61405],[80.72297,21.61203],[80.72498,21.60955],[80.72191,21.60955],[80.71705,21.60297],[80.71879,21.60037],[80.71637,21.59907],[80.71808,21.5932],[80.71543,21.5903],[80.71861,21.58743],[80.71536,21.58505],[80.7255,21.58009],[80.72891,21.57258],[80.72867,21.56995],[80.72571,21.5691],[80.72598,21.56635],[80.72117,21.56122],[80.72238,21.55993],[80.71999,21.555],[80.72455,21.55267],[80.72763,21.54869],[80.73419,21.54577],[80.74078,21.53923],[80.73048,21.5156],[80.73365,21.51279],[80.7315,21.50818],[80.73321,21.50066],[80.72929,21.49896],[80.7276,21.4962],[80.73289,21.48434],[80.73716,21.48098],[80.73775,21.47312],[80.73493,21.45991],[80.73001,21.45256],[80.72355,21.4443],[80.71429,21.43619],[80.70682,21.43307],[80.70574,21.43088],[80.70719,21.42546],[80.70655,21.41156],[80.69993,21.40458],[80.70055,21.3966],[80.69716,21.39343],[80.69911,21.39094],[80.69029,21.37207],[80.68739,21.36996],[80.68493,21.37015],[80.6802,21.36486],[80.68188,21.35995],[80.67648,21.35101],[80.67778,21.34881],[80.6716,21.34577],[80.67242,21.34096],[80.67114,21.33825],[80.66418,21.33733],[80.66005,21.33408],[80.66314,21.33437],[80.66556,21.32825],[80.6712,21.32565],[80.67487,21.32185],[80.67534,21.31775],[80.68156,21.31357],[80.6789,21.30333],[80.67957,21.29884],[80.66997,21.29116],[80.66124,21.29107],[80.65881,21.28669],[80.65908,21.28195],[80.65071,21.27738],[80.64917,21.27352],[80.64879,21.26216],[80.64384,21.25147],[80.63926,21.24732],[80.635,21.24748],[80.62312,21.24009],[80.61702,21.22929],[80.61378,21.22657],[80.60592,21.2242],[80.59819,21.22548],[80.58758,21.2221],[80.5779,21.21749],[80.56977,21.20581],[80.55947,21.2021],[80.54144,21.20109],[80.52963,21.20533],[80.51776,21.19281],[80.51499,21.18303],[80.50927,21.18601],[80.50731,21.18463],[80.50259,21.18532],[80.50045,21.18273],[80.49361,21.1796],[80.49206,21.17702],[80.48675,21.17676],[80.47861,21.17068],[80.4757,21.17099],[80.47337,21.17368],[80.46426,21.17503],[80.46081,21.16476],[80.46104,21.15727],[80.45875,21.15005],[80.44471,21.12196],[80.44517,21.12068],[80.45474,21.11828],[80.45812,21.11487],[80.4536,21.11156],[80.45345,21.11268],[80.4478,21.11242],[80.44647,21.1048],[80.43915,21.09656],[80.44164,21.0936],[80.44087,21.08984],[80.44629,21.08412],[80.44652,21.07341],[80.44966,21.06918],[80.44718,21.06326],[80.44956,21.06029],[80.4495,21.05726],[80.45393,21.05306],[80.4512,21.04284],[80.45264,21.03883],[80.45064,21.03684],[80.4495,21.03032],[80.44472,21.02799],[80.44012,21.02808],[80.43923,21.02184],[80.43581,21.02023],[80.42888,21.01169],[80.4251,21.01138],[80.42426,21.0085],[80.42581,21.00597],[80.43518,21.00148],[80.44377,20.99404],[80.44288,20.98645],[80.44553,20.97977],[80.44376,20.97719],[80.44535,20.97063],[80.4547,20.9528],[80.45472,20.94659],[80.46175,20.93984],[80.46175,20.93332],[80.4637,20.9292],[80.49295,20.92933],[80.50327,20.93135],[80.51907,20.92982],[80.53448,20.93459],[80.53902,20.93258],[80.54606,20.93501],[80.54628,20.93199],[80.54203,20.93022],[80.54294,20.92535],[80.54178,20.92392],[80.5481,20.91184],[80.55612,20.8892],[80.55393,20.87158],[80.55653,20.86089],[80.55504,20.84658],[80.55654,20.83784],[80.56123,20.83058],[80.56181,20.82437],[80.55859,20.81158],[80.54917,20.79606],[80.55219,20.78087],[80.55166,20.76403],[80.55867,20.75122],[80.56276,20.74732],[80.56284,20.734],[80.56001,20.7262],[80.56515,20.71079],[80.56729,20.70737],[80.57485,20.70405],[80.5818,20.69741],[80.58765,20.6847],[80.58368,20.67662],[80.58013,20.67292],[80.55947,20.67091],[80.55324,20.66867],[80.54491,20.66028],[80.53078,20.66011],[80.52129,20.65728],[80.49845,20.63942],[80.49565,20.63685],[80.4942,20.62667],[80.49415,20.6125],[80.49675,20.6024],[80.50284,20.59382],[80.50441,20.58335],[80.52154,20.58045],[80.53884,20.585],[80.54497,20.59018],[80.55783,20.59434],[80.56439,20.60362],[80.58077,20.60836],[80.60141,20.60879],[80.60502,20.60743],[80.61231,20.60051],[80.62829,20.60009],[80.63187,20.59839],[80.62406,20.59205],[80.62323,20.58923],[80.61735,20.58575],[80.62555,20.57813],[80.62108,20.57443],[80.62096,20.57006],[80.62587,20.56846],[80.62659,20.56381],[80.62406,20.55903],[80.62431,20.55577],[80.61843,20.55529],[80.61774,20.55212],[80.61527,20.5499],[80.61797,20.54658],[80.62132,20.5328],[80.61796,20.52545],[80.62088,20.52589],[80.61732,20.51517],[80.61885,20.51434],[80.61722,20.51066],[80.61932,20.50577],[80.61471,20.49256],[80.61635,20.48836],[80.6126,20.46193],[80.60217,20.44996],[80.60266,20.44621],[80.60805,20.44388],[80.61289,20.43871],[80.61364,20.43498],[80.60813,20.42415],[80.60009,20.41801],[80.59892,20.41058],[80.59148,20.39307],[80.59473,20.3858],[80.59729,20.38596],[80.59658,20.38384],[80.6038,20.38124],[80.61075,20.37506],[80.60948,20.36985],[80.6159,20.35991],[80.61511,20.35179],[80.61881,20.34913],[80.61828,20.34539],[80.62107,20.34021],[80.6258,20.33692],[80.62593,20.33095],[80.62237,20.32541],[80.61485,20.32239],[80.61052,20.3184],[80.58808,20.31792],[80.5592,20.30851],[80.54958,20.30896],[80.54604,20.30603],[80.54618,20.29766],[80.5435,20.29353],[80.5322,20.28086],[80.52256,20.27354],[80.51882,20.26617],[80.48991,20.27826],[80.47913,20.2783],[80.46694,20.27612],[80.44721,20.26246],[80.4369,20.26117],[80.42205,20.25349],[80.41678,20.24882],[80.39814,20.24427],[80.39549,20.24528],[80.39519,20.23701],[80.40483,20.21873],[80.42171,20.2071],[80.42214,20.20512],[80.42101,20.19617],[80.41211,20.19447],[80.40069,20.18972],[80.39659,20.1739],[80.39203,20.17043],[80.38852,20.16452],[80.40246,20.14672],[80.42593,20.13993],[80.43,20.13596],[80.4468,20.136],[80.45545,20.13793],[80.45465,20.14525],[80.45664,20.1493],[80.46015,20.15094],[80.46477,20.15062],[80.48508,20.14387],[80.49695,20.14553],[80.50559,20.14444],[80.50993,20.1413],[80.51241,20.13584],[80.53067,20.13172],[80.54281,20.12128],[80.55382,20.11854],[80.55902,20.1248],[80.56414,20.1351],[80.56659,20.1447],[80.56561,20.14995],[80.56875,20.15446],[80.56913,20.16055],[80.56692,20.16647],[80.56852,20.17446],[80.56537,20.18188],[80.56726,20.18909],[80.57384,20.18572],[80.5766,20.18047],[80.58428,20.17749],[80.60531,20.1864],[80.60925,20.18694],[80.61068,20.18375],[80.61474,20.1852],[80.61626,20.18861],[80.62166,20.18993],[80.62232,20.18865],[80.62602,20.1907],[80.62548,20.19219],[80.62845,20.19579],[80.64113,20.20393],[80.64568,20.2113],[80.6443,20.21915],[80.65021,20.22162],[80.65438,20.22647],[80.66623,20.22239],[80.67726,20.20779],[80.67823,20.20371],[80.68773,20.19462],[80.68807,20.19119],[80.70442,20.19124],[80.71093,20.18923],[80.7144,20.19024],[80.72668,20.20558],[80.72852,20.21164],[80.72798,20.21595],[80.73356,20.22558],[80.73631,20.2395],[80.73491,20.24465],[80.73163,20.24704],[80.72876,20.25357],[80.72755,20.26859],[80.73316,20.26873],[80.74673,20.27556],[80.74601,20.28025],[80.74807,20.28858],[80.75027,20.29147],[80.75893,20.29178],[80.76027,20.28894],[80.76876,20.29327],[80.77606,20.29411],[80.78058,20.29098],[80.7808,20.2851],[80.78429,20.2827],[80.78949,20.28225],[80.80603,20.292],[80.81071,20.29632],[80.82187,20.29705],[80.82981,20.30836],[80.82848,20.32368],[80.82239,20.33099],[80.82638,20.34123],[80.81215,20.35479],[80.81796,20.35863],[80.82029,20.35706],[80.82344,20.35876],[80.83553,20.34931],[80.8477,20.34819],[80.85088,20.35285],[80.85524,20.37256],[80.85874,20.37543],[80.8602,20.38791],[80.86282,20.38803],[80.86615,20.38426],[80.87099,20.38377],[80.87549,20.387],[80.88692,20.38692],[80.89311,20.39712],[80.89838,20.40024],[80.90023,20.39892],[80.90369,20.40025],[80.90919,20.41026],[80.91596,20.41718],[80.92146,20.42796],[80.93099,20.43725],[80.94542,20.44177],[80.95781,20.43499],[80.96126,20.43686],[80.96631,20.43681],[80.9711,20.44108],[80.97419,20.44121],[80.98014,20.44519],[80.98066,20.44774],[80.97847,20.44889],[80.98001,20.45041],[80.98958,20.45288],[80.99188,20.45929],[80.98896,20.46709],[80.98467,20.47195],[80.98128,20.48251],[80.98461,20.48688],[80.98333,20.50074],[80.97975,20.50183],[80.97932,20.50741],[80.97671,20.50827],[80.96757,20.51052],[80.96082,20.50721],[80.95808,20.52479],[80.95553,20.52813],[80.95419,20.54081],[80.96579,20.54055],[80.96837,20.54239],[80.97516,20.54154],[80.98972,20.5439],[80.98467,20.55148],[80.98519,20.55846],[80.98888,20.56271],[80.98858,20.56759],[80.99446,20.56409],[81.00655,20.57381],[81.00663,20.5773],[81.00357,20.5845],[81.00406,20.59276],[81.00658,20.5983],[81.00145,20.5993],[80.99922,20.6025],[80.99241,20.60545],[80.98999,20.60982],[80.99175,20.61155],[80.98389,20.61075],[80.97883,20.61311],[80.97557,20.61933],[80.97632,20.62262],[80.97113,20.62295],[80.96795,20.63013],[80.96376,20.63006],[80.96382,20.62902],[80.95831,20.63037],[80.95835,20.63395],[80.95321,20.63981],[80.95303,20.64316],[80.9559,20.64688],[80.95712,20.65565],[80.96178,20.66415],[80.95361,20.66523],[80.9494,20.66872],[80.93899,20.66415],[80.9275,20.66751],[80.92506,20.65891],[80.91858,20.64827],[80.91176,20.64841],[80.90956,20.66573],[80.90415,20.66133],[80.89976,20.66015],[80.89702,20.65965],[80.89537,20.66302],[80.88988,20.6555],[80.88201,20.65571],[80.87268,20.66706],[80.86262,20.6653],[80.85496,20.67106],[80.85386,20.67649],[80.86043,20.68835],[80.85901,20.68939],[80.83462,20.68619],[80.82759,20.68389],[80.81658,20.68872],[80.81465,20.69094],[80.81352,20.69796],[80.81185,20.69882],[80.81389,20.70158],[80.8121,20.70759],[80.80718,20.70926],[80.8101,20.71315],[80.80572,20.71467],[80.80357,20.71718],[80.80325,20.72239],[80.80985,20.72744],[80.81157,20.73125],[80.80971,20.7314],[80.80937,20.73302],[80.81492,20.73587],[80.81492,20.73945],[80.8195,20.74503],[80.82096,20.75046],[80.81707,20.75605],[80.81809,20.76068],[80.82212,20.76025],[80.82424,20.76175],[80.82327,20.76464],[80.84193,20.76945],[80.86128,20.78011],[80.86573,20.78467],[80.87038,20.78653],[80.87209,20.79615],[80.88348,20.80369],[80.88586,20.80131],[80.886,20.79854],[80.88791,20.79855],[80.89068,20.79961],[80.89589,20.80681],[80.90033,20.80809],[80.90054,20.80208],[80.90531,20.80197],[80.90701,20.79234],[80.90015,20.79228],[80.90062,20.78623],[80.90415,20.78516],[80.90944,20.77874],[80.91112,20.78295],[80.92156,20.78248],[80.92624,20.7767],[80.92516,20.77206],[80.92945,20.77702],[80.93216,20.77689],[80.93128,20.7808],[80.93572,20.77994],[80.93978,20.79808],[80.94802,20.80397],[80.94638,20.80702],[80.94822,20.81183],[80.95761,20.81519],[80.95955,20.81799],[80.95976,20.82044],[80.95621,20.81963],[80.95665,20.82339],[80.96087,20.82422],[80.96756,20.81799],[80.97018,20.8106],[80.97404,20.81208],[80.9785,20.81096],[80.98039,20.81862],[80.97523,20.82886],[80.96918,20.82461],[80.96574,20.82973],[80.96545,20.83577],[80.9619,20.8395],[80.95814,20.83716],[80.95444,20.83773],[80.9494,20.84308],[80.95632,20.85562],[80.96445,20.85803],[80.96909,20.8573],[80.98231,20.86425],[80.99001,20.87712],[80.99465,20.8789],[80.99518,20.88332],[80.98201,20.89008],[80.98274,20.89758],[80.98162,20.89894],[80.97046,20.90035],[80.96795,20.90628],[80.96564,20.90779],[80.96464,20.92016],[80.96619,20.92057],[80.96729,20.92396],[80.96288,20.92689],[80.96304,20.93636],[80.96059,20.94045],[80.963,20.94971],[80.95613,20.95128],[80.94335,20.94464],[80.94181,20.94677],[80.94213,20.95246],[80.94422,20.95266],[80.94659,20.96397],[80.94919,20.96588],[80.94926,20.96847],[80.9534,20.96951],[80.94532,20.97189],[80.9391,20.97707],[80.9434,20.97853],[80.9449,20.97766],[80.94522,20.98087],[80.95077,20.9824],[80.95373,20.9824],[80.95379,20.98118],[80.95585,20.98306],[80.95662,20.98718],[80.95476,20.98833],[80.95466,20.99405],[80.95269,20.99576],[80.95381,20.99645],[80.95263,20.99815],[80.9535,21.00318],[80.97204,21.00359],[80.97321,21.00393],[80.9723,21.00737],[80.98546,21.00636],[80.98758,21.0078],[80.98898,21.00661],[80.9877,21.00556],[80.99045,21.00285],[80.99767,21.00391],[81.00383,20.99986],[81.01275,21.00003],[81.01352,20.99834],[81.01909,20.99675],[81.02028,20.99368],[81.02451,20.99267],[81.03583,20.99705],[81.03746,20.99563],[81.05449,20.99496],[81.06107,20.99274],[81.06143,20.99416],[81.07147,20.99456],[81.07488,20.9993],[81.09012,20.99622],[81.09395,21.00168],[81.10013,21.00522],[81.10671,21.00304],[81.11111,21.0033],[81.11437,21.00678],[81.11484,21.00407],[81.11676,21.00359],[81.11876,21.00688],[81.12049,21.00452],[81.12214,21.0078],[81.12078,21.01092],[81.12263,21.01054],[81.12823,21.0157],[81.12223,21.01713],[81.12669,21.01671],[81.12785,21.01834],[81.12991,21.01686],[81.13257,21.02025],[81.13148,21.02175],[81.13615,21.02654],[81.13501,21.02876],[81.13786,21.02862],[81.13682,21.03122],[81.13365,21.0316],[81.14038,21.03965],[81.13975,21.04737],[81.14642,21.0506],[81.14806,21.0547],[81.15117,21.05692],[81.14395,21.06997],[81.15038,21.07767],[81.15297,21.07553],[81.15486,21.07651],[81.15431,21.0858],[81.1533,21.0888],[81.1516,21.0892],[81.15258,21.09151],[81.15935,21.09468],[81.16293,21.10079],[81.16619,21.1031],[81.17917,21.10085],[81.18824,21.09262],[81.19194,21.09177],[81.20544,21.09911],[81.20719,21.10305],[81.2065,21.11055],[81.19523,21.11376],[81.198,21.12024],[81.19554,21.12125],[81.19668,21.1241],[81.19936,21.12525],[81.20859,21.12516],[81.20802,21.13087],[81.20962,21.13426],[81.20804,21.14294],[81.20976,21.14353],[81.21022,21.14816],[81.21483,21.1483],[81.21395,21.15648],[81.21663,21.16826],[81.21487,21.17264],[81.20714,21.1737],[81.20861,21.18717],[81.20732,21.19045],[81.19616,21.19646],[81.19891,21.20818],[81.19872,21.22198],[81.18911,21.22063],[81.1888,21.21893],[81.18721,21.22001],[81.18636,21.21725],[81.17878,21.21659],[81.16887,21.21877],[81.16481,21.21642],[81.15601,21.21562],[81.15494,21.21021],[81.14842,21.2121],[81.14978,21.21321],[81.15024,21.22694],[81.16179,21.22922],[81.16237,21.23353],[81.16421,21.2355],[81.15919,21.23913],[81.15489,21.23713],[81.14844,21.23876],[81.14894,21.24484],[81.15191,21.24941],[81.16312,21.2505],[81.16559,21.26587],[81.16353,21.27725],[81.16064,21.28354],[81.1624,21.29403],[81.16806,21.29554],[81.172,21.29429],[81.17403,21.29606],[81.17656,21.30363],[81.17764,21.31858],[81.18476,21.31936],[81.1859,21.32154],[81.18618,21.33381],[81.19238,21.33248],[81.19312,21.33462],[81.19646,21.33575],[81.19602,21.3387],[81.18813,21.34375],[81.18909,21.35681],[81.18775,21.35973],[81.19266,21.36378],[81.19461,21.36996],[81.19245,21.3876],[81.1907,21.39273],[81.18757,21.3962],[81.18,21.39579],[81.17771,21.39712],[81.17765,21.39982],[81.17545,21.39974],[81.17693,21.40271],[81.18313,21.402],[81.18458,21.40766],[81.17704,21.41337],[81.17706,21.42401],[81.17355,21.42692],[81.17111,21.43401],[81.17443,21.44254],[81.17908,21.44807],[81.17978,21.4568],[81.17663,21.46038],[81.17744,21.46852],[81.18019,21.471],[81.18166,21.48238],[81.171,21.48483],[81.16384,21.4835],[81.15941,21.48621],[81.1601,21.49101],[81.15749,21.50209],[81.16063,21.50293],[81.16283,21.50124],[81.16796,21.5011],[81.17867,21.4965],[81.1878,21.49626],[81.19542,21.51818],[81.17794,21.52368],[81.179,21.5253],[81.17031,21.52362],[81.16781,21.52431],[81.16749,21.52614],[81.16352,21.52643],[81.15944,21.53],[81.15961,21.5324],[81.15606,21.53423],[81.15489,21.53802],[81.15751,21.54625],[81.1514,21.55033],[81.14688,21.55058],[81.14404,21.54821],[81.14044,21.54938],[81.14019,21.55383],[81.13882,21.5542],[81.13987,21.55857],[81.14217,21.55768],[81.14559,21.56453],[81.14716,21.57278],[81.15035,21.57492],[81.15095,21.58017],[81.15766,21.59007],[81.16557,21.59128],[81.17074,21.59763],[81.17688,21.5972],[81.1778,21.60045],[81.17631,21.60144],[81.18051,21.61497],[81.17823,21.61541],[81.17886,21.61692],[81.17682,21.6177],[81.1751,21.62326],[81.18045,21.62463],[81.18195,21.6299],[81.19079,21.62942],[81.19225,21.63047],[81.19204,21.63357],[81.19442,21.63448],[81.19361,21.63568],[81.18825,21.6355],[81.18689,21.63892],[81.17785,21.6452],[81.18019,21.65136],[81.17903,21.65286],[81.18231,21.65615],[81.18097,21.65633],[81.18092,21.66323],[81.18256,21.66728],[81.17972,21.66735],[81.18045,21.67141],[81.1766,21.67179],[81.17553,21.67507],[81.17657,21.67811],[81.17275,21.68253],[81.17638,21.6848],[81.17445,21.6888],[81.17636,21.69234],[81.17225,21.69524],[81.17353,21.70231],[81.17096,21.70525],[81.17131,21.70742],[81.16264,21.71123],[81.15847,21.71506],[81.15789,21.71407],[81.15418,21.71522],[81.15185,21.71125],[81.13065,21.71642],[81.12993,21.70631],[81.12642,21.70422],[81.11917,21.71644],[81.10901,21.72401],[81.10509,21.7325],[81.10245,21.73445],[81.09648,21.73005],[81.08756,21.73332],[81.07875,21.73324],[81.07848,21.72862],[81.06824,21.73223],[81.06435,21.72623],[81.05974,21.72554],[81.06089,21.72432],[81.05993,21.72379],[81.05048,21.72686],[81.04058,21.72755],[81.04472,21.73701],[81.02748,21.7415],[81.01182,21.73659],[81.00238,21.72739],[80.99837,21.72818],[80.97622,21.74571],[80.97194,21.76001],[80.95296,21.76755],[80.95493,21.78289],[80.95415,21.78659],[80.94805,21.79595],[80.94577,21.8047],[80.94245,21.80805],[80.93622,21.80896],[80.93207,21.81275],[80.93175,21.82169],[80.93017,21.82444],[80.92277,21.82738],[80.92017,21.82629],[80.91644,21.82761],[80.91559,21.82575],[80.90569,21.82338],[80.90535,21.82554],[80.89957,21.8259],[80.89817,21.82863],[80.89313,21.82698],[80.88676,21.82829],[80.88351,21.82529],[80.87736,21.82398],[80.87618,21.82638],[80.87369,21.82544],[80.87176,21.82817],[80.86778,21.82923],[80.8681,21.83102],[80.86164,21.8306],[80.85723,21.83181],[80.85542,21.83432],[80.85269,21.83349],[80.84651,21.83505]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"389","area_level":"District","area_name":"Surguja","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.42693,23.25425],[83.39363,23.27002],[83.38551,23.2693],[83.36526,23.26239],[83.36529,23.257],[83.37314,23.25249],[83.37742,23.25259],[83.38372,23.25003],[83.38518,23.24815],[83.37739,23.23957],[83.37075,23.23962],[83.36996,23.23682],[83.37201,23.22954],[83.36772,23.2294],[83.36537,23.22629],[83.35314,23.22018],[83.35464,23.21339],[83.36695,23.2164],[83.36812,23.2153],[83.3656,23.209],[83.36146,23.20877],[83.36307,23.20568],[83.35938,23.20073],[83.36136,23.1989],[83.35737,23.19216],[83.36034,23.18557],[83.35408,23.17282],[83.35207,23.17323],[83.34807,23.17803],[83.33874,23.18026],[83.32972,23.17947],[83.3205,23.18632],[83.31211,23.19718],[83.29485,23.20771],[83.28728,23.21432],[83.27768,23.21527],[83.26408,23.23356],[83.24722,23.23619],[83.24304,23.21998],[83.22371,23.21798],[83.22036,23.21867],[83.2173,23.22286],[83.21514,23.22233],[83.2088,23.21401],[83.20131,23.20869],[83.19736,23.20907],[83.19243,23.20477],[83.18491,23.21384],[83.1733,23.21125],[83.17102,23.21778],[83.16181,23.2146],[83.15157,23.21396],[83.1434,23.21597],[83.13783,23.21421],[83.13297,23.1771],[83.13569,23.17421],[83.15938,23.16582],[83.14916,23.15838],[83.15448,23.15254],[83.15997,23.15057],[83.16023,23.14366],[83.16018,23.13513],[83.15435,23.13479],[83.15672,23.12786],[83.15354,23.11082],[83.14909,23.10817],[83.13851,23.10658],[83.12815,23.10864],[83.12367,23.12256],[83.12456,23.12822],[83.12341,23.13485],[83.11624,23.13762],[83.1089,23.13774],[83.1008,23.12897],[83.08778,23.12913],[83.08116,23.12715],[83.02742,23.12657],[83.03105,23.10793],[83.0342,23.1043],[83.03165,23.0999],[83.02899,23.09797],[83.01996,23.09754],[83.01649,23.0937],[83.01219,23.09361],[83.00305,23.08022],[82.99888,23.07106],[82.98315,23.07295],[82.97381,23.06763],[82.96544,23.07131],[82.96301,23.07467],[82.96617,23.08425],[82.95946,23.08767],[82.95663,23.09578],[82.95004,23.09578],[82.94133,23.08855],[82.93834,23.09696],[82.93359,23.09818],[82.93019,23.10623],[82.92222,23.11079],[82.923,23.11554],[82.91368,23.11672],[82.89559,23.10927],[82.8638,23.1092],[82.8624,23.10259],[82.85546,23.09336],[82.85156,23.08393],[82.85265,23.07886],[82.85184,23.06672],[82.87014,23.07059],[82.87974,23.06868],[82.88395,23.07024],[82.89472,23.06833],[82.89525,23.07142],[82.90283,23.07019],[82.90562,23.07851],[82.91989,23.08144],[82.92588,23.07732],[82.92454,23.04725],[82.92038,23.04168],[82.89887,23.03661],[82.89816,23.03432],[82.9005,23.03271],[82.89791,23.0303],[82.89942,23.02834],[82.89903,23.0257],[82.89085,23.03004],[82.88502,23.02729],[82.88355,23.03032],[82.88065,23.02647],[82.87329,23.02219],[82.86084,23.02291],[82.85096,23.01714],[82.83097,23.01529],[82.83055,23.00794],[82.83377,23.00311],[82.85217,23.00194],[82.85365,22.99311],[82.85279,22.98879],[82.83598,22.9653],[82.82745,22.95698],[82.822,22.94069],[82.80809,22.94385],[82.80638,22.94177],[82.7986,22.9421],[82.79277,22.93267],[82.79361,22.9235],[82.78843,22.90986],[82.79574,22.88861],[82.78843,22.87034],[82.78026,22.87025],[82.77763,22.86841],[82.76872,22.87517],[82.76714,22.8746],[82.77237,22.86334],[82.76912,22.85497],[82.7558,22.84356],[82.76485,22.83246],[82.76224,22.82423],[82.76314,22.8202],[82.7598,22.81625],[82.76465,22.81024],[82.76389,22.80324],[82.75741,22.79547],[82.75889,22.79327],[82.76848,22.78902],[82.76452,22.78285],[82.76516,22.78009],[82.77947,22.76778],[82.83187,22.74413],[82.85878,22.74951],[82.86353,22.75186],[82.87481,22.74646],[82.88903,22.72541],[82.89407,22.72394],[82.90275,22.71478],[82.92092,22.70503],[82.93037,22.69528],[82.94098,22.67834],[82.96713,22.66578],[82.98156,22.6644],[82.99001,22.66545],[82.99598,22.65859],[83.00134,22.65518],[83.00422,22.65047],[83.00978,22.64874],[83.01303,22.64466],[83.01374,22.63861],[83.02048,22.64182],[83.02488,22.64624],[83.03945,22.65219],[83.0488,22.66178],[83.05708,22.66361],[83.06508,22.66906],[83.08116,22.6685],[83.09235,22.67421],[83.11465,22.67145],[83.10166,22.68246],[83.11048,22.68926],[83.11777,22.6894],[83.12492,22.70327],[83.11942,22.70758],[83.11504,22.7255],[83.13829,22.73544],[83.14883,22.73421],[83.15202,22.73523],[83.1568,22.74662],[83.15498,22.75862],[83.15918,22.7733],[83.16184,22.7729],[83.17856,22.77945],[83.18782,22.78652],[83.19014,22.78615],[83.19133,22.78285],[83.18883,22.78127],[83.18885,22.7774],[83.19343,22.78082],[83.1987,22.78051],[83.20127,22.78496],[83.20487,22.78414],[83.20468,22.78613],[83.2152,22.78749],[83.2185,22.7912],[83.2216,22.78646],[83.21809,22.78514],[83.21818,22.78045],[83.22675,22.77969],[83.23325,22.78333],[83.23193,22.7818],[83.23319,22.77855],[83.23016,22.77685],[83.23068,22.77468],[83.23452,22.76841],[83.24174,22.77355],[83.24372,22.76564],[83.24786,22.7655],[83.24741,22.76185],[83.24457,22.76091],[83.24561,22.75938],[83.25369,22.76199],[83.25451,22.76607],[83.25912,22.7677],[83.26787,22.76453],[83.28647,22.76957],[83.29534,22.76568],[83.29778,22.76295],[83.30048,22.76418],[83.30849,22.75829],[83.3156,22.75831],[83.31913,22.75912],[83.31819,22.76288],[83.31981,22.7661],[83.33229,22.75986],[83.33306,22.75408],[83.34007,22.74983],[83.34314,22.74474],[83.34341,22.7359],[83.34676,22.73473],[83.35197,22.72938],[83.35523,22.73074],[83.36381,22.72966],[83.36523,22.73336],[83.36982,22.73532],[83.36983,22.73963],[83.37242,22.74148],[83.37872,22.74186],[83.39376,22.73467],[83.3958,22.72928],[83.39905,22.7266],[83.3918,22.71379],[83.39203,22.69586],[83.38787,22.68783],[83.38297,22.69109],[83.37645,22.69182],[83.3766,22.68546],[83.37955,22.66786],[83.38416,22.65366],[83.40557,22.64654],[83.4043,22.64091],[83.40584,22.63878],[83.41335,22.63797],[83.41247,22.64245],[83.4168,22.64302],[83.41661,22.64516],[83.41166,22.65088],[83.40939,22.65808],[83.41863,22.65878],[83.42311,22.66198],[83.42904,22.66186],[83.43088,22.66518],[83.4351,22.66628],[83.43236,22.67192],[83.43499,22.67506],[83.4484,22.6746],[83.45601,22.67036],[83.46081,22.67371],[83.46381,22.66956],[83.47611,22.6676],[83.49108,22.6602],[83.49869,22.66101],[83.50594,22.65905],[83.50576,22.67127],[83.51169,22.67135],[83.52602,22.67613],[83.53899,22.68506],[83.54799,22.69542],[83.55093,22.69601],[83.57325,22.68788],[83.57965,22.68194],[83.58553,22.6807],[83.59669,22.67453],[83.61029,22.67238],[83.61814,22.66688],[83.62969,22.66493],[83.63689,22.66131],[83.64849,22.65248],[83.65801,22.62978],[83.66798,22.62339],[83.673,22.62287],[83.68694,22.64399],[83.68546,22.64843],[83.69055,22.66825],[83.68612,22.67184],[83.68128,22.68073],[83.66832,22.68564],[83.64353,22.69944],[83.63756,22.69911],[83.62887,22.71192],[83.63034,22.72778],[83.63491,22.72925],[83.63756,22.73235],[83.64395,22.73252],[83.64534,22.73462],[83.64435,22.73814],[83.65031,22.73667],[83.65074,22.73905],[83.64636,22.74144],[83.64732,22.74734],[83.65575,22.74688],[83.65663,22.74857],[83.65422,22.75214],[83.6548,22.75593],[83.6474,22.76034],[83.64803,22.76256],[83.65225,22.76538],[83.6529,22.77252],[83.65847,22.77653],[83.65757,22.77955],[83.65211,22.78259],[83.65437,22.79095],[83.6515,22.79305],[83.64949,22.80275],[83.65143,22.80647],[83.65112,22.81095],[83.64573,22.81709],[83.64595,22.82636],[83.63727,22.82482],[83.62876,22.82588],[83.62063,22.83026],[83.62354,22.84187],[83.5952,22.84896],[83.59593,22.85801],[83.59156,22.86009],[83.59539,22.86295],[83.59558,22.86898],[83.5784,22.87005],[83.57843,22.87283],[83.57069,22.87761],[83.57164,22.88123],[83.56953,22.89037],[83.56568,22.88956],[83.56346,22.89499],[83.55759,22.89452],[83.55354,22.89783],[83.55007,22.90492],[83.54462,22.90966],[83.54064,22.91267],[83.53348,22.91453],[83.53296,22.9198],[83.52479,22.92642],[83.52205,22.93403],[83.51477,22.93577],[83.51126,22.93925],[83.50356,22.95277],[83.50741,22.96748],[83.51172,22.97488],[83.51215,22.98462],[83.52934,22.99701],[83.53111,23.00335],[83.54188,23.01522],[83.54348,23.02093],[83.54586,23.02228],[83.55009,23.03014],[83.55046,23.03371],[83.5411,23.04491],[83.52479,23.05886],[83.51927,23.05662],[83.51446,23.05663],[83.50342,23.06081],[83.49986,23.06432],[83.50252,23.07368],[83.50636,23.07827],[83.51126,23.08089],[83.51138,23.08371],[83.50835,23.08661],[83.50913,23.09033],[83.52286,23.09681],[83.53544,23.11134],[83.53555,23.12029],[83.55632,23.12509],[83.55549,23.12698],[83.56056,23.13269],[83.56294,23.13819],[83.56273,23.14774],[83.55601,23.15391],[83.55188,23.1682],[83.55436,23.17504],[83.54503,23.1875],[83.5442,23.19376],[83.54586,23.19721],[83.54605,23.20406],[83.54528,23.20511],[83.53148,23.20134],[83.53141,23.20716],[83.52742,23.21635],[83.52898,23.22133],[83.53424,23.22171],[83.52885,23.22714],[83.52671,23.23221],[83.51662,23.23474],[83.51696,23.2372],[83.52093,23.24158],[83.52079,23.24471],[83.51001,23.24715],[83.49253,23.24577],[83.47974,23.24864],[83.47708,23.25831],[83.46528,23.25723],[83.45686,23.25377],[83.44221,23.25867],[83.42693,23.25425]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"39","area_level":"District","area_name":"Sri Muktsar Sahib","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.54182,30.66524],[74.50456,30.66925],[74.5026,30.66603],[74.49706,30.66303],[74.48338,30.66395],[74.47586,30.65419],[74.47613,30.6466],[74.48509,30.6381],[74.49017,30.63638],[74.494,30.63723],[74.45803,30.62041],[74.46421,30.61553],[74.46183,30.60831],[74.44966,30.61996],[74.44709,30.6244],[74.44033,30.62614],[74.4328,30.62228],[74.41998,30.61162],[74.41557,30.6109],[74.41378,30.61225],[74.41422,30.60946],[74.41935,30.60421],[74.41954,30.59705],[74.40142,30.59772],[74.38895,30.59433],[74.38443,30.59058],[74.36878,30.58839],[74.36681,30.58492],[74.36828,30.58381],[74.368,30.57941],[74.37491,30.5678],[74.37611,30.55872],[74.37981,30.55748],[74.37502,30.54867],[74.38822,30.54596],[74.39029,30.54486],[74.3916,30.54119],[74.4011,30.53534],[74.39882,30.5268],[74.39486,30.52807],[74.38808,30.5251],[74.37302,30.5125],[74.3772,30.50973],[74.38368,30.49995],[74.37877,30.49574],[74.37638,30.48546],[74.3626,30.48031],[74.35395,30.48113],[74.3462,30.48438],[74.3465,30.47118],[74.34385,30.46354],[74.32761,30.44535],[74.30653,30.44624],[74.29057,30.43616],[74.27832,30.43031],[74.27436,30.43112],[74.27118,30.42776],[74.24429,30.42771],[74.2583,30.42267],[74.2792,30.4199],[74.29288,30.41396],[74.31981,30.4089],[74.33562,30.40822],[74.3509,30.4054],[74.35738,30.40259],[74.3584,30.39595],[74.35764,30.38973],[74.35335,30.38213],[74.34181,30.38585],[74.3165,30.38908],[74.31445,30.38675],[74.30766,30.37012],[74.30989,30.36002],[74.31644,30.35681],[74.31894,30.35375],[74.32195,30.33313],[74.32268,30.33073],[74.32542,30.32931],[74.31206,30.31954],[74.30306,30.30835],[74.30588,30.3021],[74.29721,30.27419],[74.29759,30.26516],[74.28305,30.27476],[74.27148,30.26408],[74.26452,30.25373],[74.26305,30.24902],[74.26365,30.2465],[74.27383,30.24185],[74.28624,30.23332],[74.30805,30.24146],[74.32354,30.24493],[74.35796,30.24068],[74.35292,30.21434],[74.34481,30.19926],[74.34807,30.19214],[74.3357,30.16378],[74.35946,30.15519],[74.37472,30.15351],[74.37416,30.14641],[74.38128,30.13081],[74.39441,30.11899],[74.39998,30.11675],[74.40065,30.1112],[74.41286,30.09755],[74.40819,30.09573],[74.39634,30.10852],[74.38669,30.11175],[74.38188,30.11173],[74.37183,30.10783],[74.37307,30.1039],[74.36561,30.08737],[74.38887,30.07456],[74.38715,30.07048],[74.38785,30.06709],[74.39558,30.05818],[74.39269,30.05664],[74.41411,30.03577],[74.41367,30.02904],[74.40807,30.02824],[74.41231,30.02646],[74.42412,30.02607],[74.45137,30.02984],[74.4611,30.01416],[74.46291,30.00912],[74.45963,30.00636],[74.42203,29.99786],[74.43205,29.96755],[74.44819,29.94718],[74.52716,29.94294],[74.53157,29.94967],[74.54133,29.94078],[74.56068,29.9295],[74.55903,29.92728],[74.57197,29.92747],[74.57988,29.92567],[74.5897,29.91698],[74.59726,29.91277],[74.63032,29.90504],[74.65081,29.90508],[74.65436,29.90574],[74.64958,29.90754],[74.64675,29.91128],[74.64816,29.91971],[74.65148,29.92631],[74.67032,29.93964],[74.68215,29.94349],[74.69438,29.96784],[74.70018,29.97272],[74.70207,29.97162],[74.70687,29.97699],[74.70659,29.9797],[74.70128,29.98416],[74.70083,29.98709],[74.71178,30.00266],[74.71712,30.01354],[74.70911,30.01957],[74.70457,30.02609],[74.69419,30.03369],[74.69702,30.03726],[74.69351,30.04418],[74.69413,30.0492],[74.70071,30.06173],[74.70483,30.06511],[74.69049,30.07237],[74.68569,30.0736],[74.68281,30.07206],[74.67659,30.08119],[74.67377,30.08991],[74.68396,30.10401],[74.68396,30.11054],[74.68092,30.11304],[74.67055,30.10777],[74.6488,30.11048],[74.62974,30.13055],[74.64045,30.14353],[74.63994,30.15042],[74.65468,30.16246],[74.68677,30.16796],[74.69065,30.16178],[74.69707,30.15927],[74.70287,30.16009],[74.71023,30.16507],[74.72677,30.17229],[74.72956,30.1754],[74.73503,30.17535],[74.73449,30.17897],[74.7374,30.18324],[74.73453,30.19235],[74.72506,30.19709],[74.71196,30.19664],[74.71629,30.20873],[74.71302,30.2134],[74.7196,30.22065],[74.71837,30.22554],[74.72546,30.22988],[74.72074,30.235],[74.72146,30.24258],[74.71822,30.24474],[74.7181,30.24832],[74.72105,30.25552],[74.72034,30.25724],[74.73468,30.27405],[74.73438,30.2788],[74.73959,30.27983],[74.74248,30.27827],[74.75208,30.28715],[74.7437,30.29278],[74.73353,30.30393],[74.72808,30.30573],[74.72738,30.30371],[74.72414,30.30872],[74.74629,30.3208],[74.76234,30.32045],[74.77515,30.32728],[74.78541,30.33661],[74.77703,30.33764],[74.77467,30.33988],[74.76758,30.33971],[74.74914,30.3431],[74.73507,30.34815],[74.70773,30.35463],[74.69854,30.35508],[74.70013,30.35677],[74.71345,30.36024],[74.72392,30.36589],[74.73251,30.36007],[74.77978,30.33915],[74.78161,30.3412],[74.78403,30.33912],[74.78864,30.33933],[74.79006,30.34079],[74.79259,30.33676],[74.79334,30.34634],[74.79626,30.35548],[74.8217,30.3928],[74.80723,30.40107],[74.80514,30.39713],[74.79734,30.39932],[74.78718,30.39572],[74.7698,30.39731],[74.75762,30.39001],[74.75299,30.394],[74.75549,30.3984],[74.75519,30.40873],[74.75925,30.42278],[74.75211,30.42842],[74.75398,30.43397],[74.74252,30.44037],[74.73179,30.44927],[74.72936,30.45704],[74.7331,30.46297],[74.74031,30.46854],[74.74143,30.473],[74.74787,30.47285],[74.75313,30.47819],[74.76286,30.48379],[74.75864,30.49659],[74.75,30.48965],[74.74472,30.4935],[74.73755,30.49285],[74.71903,30.50539],[74.71818,30.50955],[74.71376,30.51209],[74.69358,30.51844],[74.68838,30.51806],[74.68495,30.52432],[74.68554,30.52717],[74.69763,30.53835],[74.70188,30.54041],[74.70633,30.54721],[74.70917,30.55834],[74.69879,30.56394],[74.69692,30.56692],[74.68686,30.5691],[74.67586,30.57776],[74.66865,30.5789],[74.65876,30.59304],[74.64677,30.59456],[74.64341,30.59725],[74.63877,30.6077],[74.63441,30.60996],[74.63633,30.61579],[74.63118,30.61393],[74.62387,30.61823],[74.62355,30.62659],[74.61885,30.63933],[74.61383,30.63667],[74.60911,30.64252],[74.60035,30.64885],[74.59801,30.64885],[74.59467,30.65349],[74.58822,30.65835],[74.57913,30.6591],[74.57416,30.66254],[74.56193,30.66571],[74.54182,30.66524]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"390","area_level":"District","area_name":"Anuppur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.0315,23.41223],[82.02578,23.41999],[82.02497,23.42503],[82.01182,23.41592],[82.00921,23.41191],[82.0024,23.41696],[82.00013,23.4214],[81.99851,23.42139],[81.99014,23.41821],[81.98843,23.41453],[81.9848,23.41515],[81.97529,23.40026],[81.98272,23.39473],[81.98091,23.38734],[81.97093,23.37484],[81.94943,23.3793],[81.9482,23.38157],[81.93909,23.38156],[81.93262,23.37171],[81.93187,23.36783],[81.93421,23.36305],[81.9324,23.35849],[81.93532,23.34291],[81.93457,23.34169],[81.91994,23.34001],[81.91422,23.32468],[81.91384,23.30362],[81.9118,23.30125],[81.89549,23.29833],[81.87925,23.30068],[81.87672,23.29797],[81.87425,23.30035],[81.8713,23.30025],[81.86381,23.31395],[81.83194,23.3171],[81.82174,23.3198],[81.81815,23.31593],[81.80624,23.32098],[81.81294,23.3002],[81.81259,23.29538],[81.81599,23.29357],[81.8207,23.29941],[81.82195,23.29604],[81.82333,23.29683],[81.82394,23.29552],[81.8248,23.29833],[81.82882,23.29887],[81.83147,23.30224],[81.84001,23.29731],[81.84359,23.29046],[81.84109,23.28045],[81.85025,23.27404],[81.85204,23.27732],[81.86937,23.27379],[81.87011,23.26866],[81.87498,23.26658],[81.87514,23.26243],[81.87897,23.26024],[81.87457,23.25813],[81.87308,23.25477],[81.87932,23.24775],[81.87004,23.2464],[81.85829,23.2475],[81.84694,23.26011],[81.83438,23.25611],[81.83069,23.25741],[81.81983,23.25633],[81.80552,23.25795],[81.80193,23.25589],[81.79628,23.25596],[81.78727,23.25771],[81.7789,23.24974],[81.77088,23.24863],[81.7706,23.24501],[81.76515,23.24176],[81.76463,23.23832],[81.76836,23.23402],[81.75726,23.21599],[81.75094,23.21363],[81.74156,23.21508],[81.73969,23.21052],[81.72624,23.20825],[81.71907,23.20204],[81.71466,23.20465],[81.71106,23.20434],[81.7091,23.20735],[81.70409,23.20452],[81.69665,23.2087],[81.6933,23.20519],[81.68215,23.20869],[81.6681,23.20855],[81.66059,23.19748],[81.64958,23.19403],[81.64497,23.19493],[81.63579,23.19998],[81.61976,23.19432],[81.61592,23.19497],[81.6127,23.19858],[81.61263,23.2032],[81.61555,23.20918],[81.63391,23.22463],[81.63458,23.22794],[81.63301,23.23037],[81.62738,23.23075],[81.60918,23.22467],[81.6011,23.22425],[81.59974,23.209],[81.59599,23.19959],[81.59311,23.19697],[81.59353,23.18463],[81.59191,23.18051],[81.59311,23.17541],[81.58944,23.17056],[81.58197,23.17043],[81.58198,23.16758],[81.58008,23.16616],[81.58186,23.16315],[81.58176,23.1587],[81.58057,23.15011],[81.57742,23.14724],[81.57889,23.14073],[81.57484,23.13509],[81.56871,23.14426],[81.56352,23.14282],[81.56216,23.14047],[81.5648,23.13445],[81.56306,23.13329],[81.5657,23.13252],[81.5611,23.13121],[81.55694,23.12756],[81.55729,23.12481],[81.55474,23.12324],[81.54361,23.12506],[81.53719,23.11293],[81.54694,23.10659],[81.54532,23.10267],[81.54655,23.10023],[81.55182,23.09979],[81.55752,23.09519],[81.56517,23.09484],[81.5805,23.08125],[81.58755,23.07717],[81.5922,23.06626],[81.59143,23.06289],[81.58894,23.06146],[81.58987,23.0596],[81.59692,23.05086],[81.60692,23.04756],[81.60573,23.04194],[81.60389,23.03489],[81.60061,23.03503],[81.59298,23.04059],[81.58984,23.03665],[81.58667,23.0378],[81.58078,23.03649],[81.57274,23.03094],[81.57114,23.03133],[81.57204,23.02984],[81.5702,23.02798],[81.55844,23.02438],[81.55063,23.02559],[81.5458,23.02889],[81.54587,23.03197],[81.55076,23.03563],[81.54782,23.03948],[81.54911,23.04265],[81.53667,23.04473],[81.52907,23.05037],[81.52639,23.05049],[81.52879,23.05382],[81.5392,23.05567],[81.53849,23.06221],[81.53958,23.06297],[81.55121,23.05806],[81.55689,23.05801],[81.54321,23.06763],[81.53679,23.07708],[81.52971,23.07737],[81.51706,23.08204],[81.51179,23.07996],[81.5057,23.07318],[81.49853,23.06988],[81.45947,23.06572],[81.45314,23.06145],[81.43791,23.05722],[81.42911,23.05791],[81.42278,23.06061],[81.41524,23.06038],[81.40646,23.06345],[81.40488,23.06169],[81.39538,23.06112],[81.38831,23.06352],[81.38668,23.066],[81.38181,23.06834],[81.3805,23.07187],[81.37738,23.0728],[81.37421,23.08684],[81.365,23.08917],[81.35879,23.09268],[81.33092,23.10005],[81.32472,23.10034],[81.31895,23.1035],[81.31484,23.10971],[81.31703,23.11391],[81.31736,23.11927],[81.32376,23.12441],[81.32516,23.12793],[81.32276,23.13413],[81.32445,23.13856],[81.32886,23.14123],[81.32829,23.14765],[81.32473,23.14927],[81.32295,23.1525],[81.30486,23.14989],[81.30253,23.15484],[81.30804,23.15731],[81.29928,23.16236],[81.29594,23.17093],[81.2961,23.17413],[81.29932,23.17802],[81.294,23.17844],[81.28881,23.18262],[81.28407,23.18414],[81.27586,23.18509],[81.27461,23.18305],[81.26689,23.18651],[81.26594,23.19184],[81.26476,23.19201],[81.26513,23.19675],[81.25666,23.20318],[81.24884,23.21566],[81.23372,23.2192],[81.22702,23.22346],[81.22601,23.22516],[81.22691,23.23882],[81.23156,23.2465],[81.23219,23.25053],[81.22127,23.2645],[81.20466,23.27523],[81.19396,23.29141],[81.18903,23.29115],[81.18729,23.286],[81.18228,23.28598],[81.17697,23.29235],[81.16672,23.29439],[81.16768,23.29842],[81.16337,23.29996],[81.16634,23.30656],[81.17869,23.31517],[81.17896,23.32261],[81.17166,23.33009],[81.16391,23.33182],[81.15786,23.32051],[81.13761,23.32339],[81.13533,23.30844],[81.13743,23.29802],[81.13628,23.28938],[81.14014,23.26734],[81.13708,23.26045],[81.13969,23.25061],[81.13661,23.24547],[81.13552,23.23334],[81.1318,23.22441],[81.12767,23.22191],[81.12416,23.21633],[81.1258,23.20694],[81.13866,23.19273],[81.14365,23.17752],[81.14896,23.17709],[81.1571,23.17912],[81.16194,23.17659],[81.16201,23.17406],[81.15502,23.16907],[81.15668,23.16372],[81.16,23.16337],[81.17537,23.16884],[81.18594,23.16836],[81.19171,23.16604],[81.19169,23.16397],[81.18273,23.15943],[81.1784,23.15348],[81.17973,23.14985],[81.18185,23.14876],[81.19181,23.15186],[81.19547,23.14932],[81.18954,23.13468],[81.18953,23.13128],[81.19321,23.12724],[81.20289,23.12564],[81.20567,23.12971],[81.20508,23.1326],[81.20712,23.1381],[81.20986,23.14088],[81.21321,23.14037],[81.21462,23.13717],[81.21091,23.13336],[81.20903,23.12105],[81.21108,23.11478],[81.21385,23.11325],[81.22168,23.11529],[81.22758,23.1072],[81.23585,23.1114],[81.23828,23.11122],[81.24156,23.10082],[81.24945,23.09793],[81.24716,23.0912],[81.25493,23.08277],[81.2539,23.07427],[81.2614,23.07356],[81.26365,23.0705],[81.26258,23.06942],[81.25884,23.07037],[81.25353,23.06711],[81.25449,23.0655],[81.26005,23.06437],[81.26094,23.06237],[81.25963,23.06138],[81.25343,23.06245],[81.25185,23.05966],[81.25249,23.05372],[81.25104,23.05199],[81.24899,23.05251],[81.24778,23.05747],[81.24422,23.05753],[81.24159,23.05573],[81.23845,23.06198],[81.22903,23.05779],[81.22933,23.05438],[81.23578,23.05511],[81.23727,23.05336],[81.23526,23.05157],[81.23047,23.0517],[81.23022,23.04797],[81.22652,23.04548],[81.22812,23.04264],[81.22721,23.03964],[81.23047,23.03608],[81.22627,23.03563],[81.22617,23.02968],[81.22311,23.0249],[81.20962,23.01573],[81.20436,23.00368],[81.1932,22.96477],[81.18638,22.95239],[81.1876,22.95133],[81.18724,22.9472],[81.19135,22.94435],[81.19209,22.94151],[81.19078,22.92807],[81.19613,22.92068],[81.19853,22.91362],[81.20084,22.9116],[81.20417,22.9115],[81.21309,22.91577],[81.22945,22.90761],[81.23719,22.90153],[81.25722,22.90162],[81.26603,22.88912],[81.278,22.88003],[81.28948,22.87942],[81.30037,22.88212],[81.31005,22.87765],[81.31482,22.87773],[81.31983,22.86718],[81.3238,22.8634],[81.32742,22.86159],[81.33564,22.86208],[81.34146,22.85791],[81.34763,22.85622],[81.35083,22.85209],[81.36084,22.85045],[81.36608,22.85214],[81.37013,22.85614],[81.38873,22.85523],[81.39377,22.85208],[81.40324,22.85395],[81.40491,22.85083],[81.40293,22.84779],[81.40572,22.84457],[81.41835,22.84234],[81.4294,22.83537],[81.42981,22.82885],[81.43594,22.82293],[81.43803,22.81853],[81.4374,22.81411],[81.43383,22.80947],[81.43438,22.80712],[81.44159,22.7976],[81.45043,22.79428],[81.44547,22.78809],[81.45248,22.77805],[81.45328,22.77042],[81.45781,22.76821],[81.46066,22.77167],[81.46428,22.77072],[81.46756,22.76659],[81.46901,22.76112],[81.47596,22.75863],[81.48323,22.75891],[81.48512,22.76155],[81.48819,22.75944],[81.49191,22.76083],[81.49543,22.75882],[81.49614,22.76129],[81.50216,22.7606],[81.50386,22.76512],[81.50968,22.76538],[81.51242,22.76268],[81.515,22.76295],[81.51383,22.76004],[81.51499,22.75733],[81.5171,22.76121],[81.5193,22.7608],[81.52082,22.75379],[81.52538,22.75273],[81.52643,22.74778],[81.52757,22.74778],[81.52855,22.75226],[81.53245,22.75156],[81.53122,22.74714],[81.53281,22.74575],[81.53532,22.74765],[81.53589,22.75329],[81.54391,22.75134],[81.54612,22.7546],[81.54912,22.75441],[81.54898,22.75765],[81.55401,22.76103],[81.56258,22.75949],[81.56358,22.75585],[81.56665,22.75396],[81.57113,22.75587],[81.57685,22.75451],[81.58125,22.75771],[81.58377,22.75539],[81.58806,22.75852],[81.59247,22.75406],[81.59432,22.75403],[81.59469,22.75697],[81.5965,22.75699],[81.59777,22.75958],[81.60038,22.76004],[81.60331,22.76338],[81.6069,22.7632],[81.60613,22.76579],[81.60745,22.7678],[81.61105,22.76961],[81.61519,22.7693],[81.61591,22.77155],[81.61871,22.76989],[81.6199,22.7725],[81.622,22.77114],[81.62209,22.77281],[81.62557,22.77414],[81.62512,22.77824],[81.62726,22.77723],[81.62951,22.78141],[81.63443,22.77992],[81.63444,22.78195],[81.63623,22.78215],[81.63787,22.7855],[81.64263,22.7874],[81.64422,22.78582],[81.6508,22.78713],[81.65237,22.78558],[81.65786,22.78774],[81.65851,22.78439],[81.66013,22.78357],[81.66531,22.7832],[81.6664,22.78529],[81.67328,22.78302],[81.676,22.78435],[81.68001,22.78354],[81.68302,22.78143],[81.68422,22.78186],[81.68317,22.78304],[81.68538,22.78345],[81.6899,22.77945],[81.69044,22.78112],[81.69462,22.77656],[81.69325,22.77483],[81.69534,22.77479],[81.69344,22.77266],[81.69475,22.76669],[81.69228,22.76535],[81.69451,22.76283],[81.69873,22.76168],[81.69808,22.75762],[81.69594,22.75856],[81.6958,22.75653],[81.69707,22.75636],[81.69675,22.75456],[81.69993,22.75442],[81.69856,22.75057],[81.70104,22.75033],[81.70132,22.74803],[81.70544,22.74506],[81.70457,22.74027],[81.70242,22.73801],[81.70476,22.73552],[81.70248,22.73304],[81.70141,22.72775],[81.69922,22.72683],[81.69897,22.72204],[81.69424,22.71583],[81.69338,22.71032],[81.69771,22.70514],[81.70744,22.70217],[81.71024,22.70279],[81.71144,22.70048],[81.71377,22.70346],[81.71622,22.70115],[81.71818,22.70267],[81.72577,22.70048],[81.72656,22.69889],[81.73106,22.69815],[81.74146,22.68918],[81.73128,22.68079],[81.72785,22.67535],[81.73947,22.67212],[81.7393,22.67496],[81.74186,22.67407],[81.7464,22.66291],[81.7497,22.66039],[81.75194,22.65471],[81.74901,22.65178],[81.74887,22.6473],[81.75173,22.64464],[81.7554,22.6458],[81.77237,22.66821],[81.77302,22.68246],[81.77124,22.68708],[81.76137,22.69714],[81.75693,22.70831],[81.75344,22.72102],[81.75431,22.7311],[81.75573,22.73379],[81.76993,22.73558],[81.76902,22.74187],[81.77307,22.75055],[81.77928,22.75086],[81.78848,22.76355],[81.79439,22.76646],[81.78358,22.77918],[81.7837,22.78395],[81.78098,22.78994],[81.78193,22.79607],[81.78413,22.7987],[81.78178,22.81095],[81.77791,22.81328],[81.77766,22.81643],[81.76946,22.82776],[81.76135,22.83029],[81.76784,22.83541],[81.77401,22.85022],[81.77653,22.85164],[81.77729,22.85549],[81.7749,22.86391],[81.77746,22.86752],[81.77568,22.87444],[81.81758,22.88228],[81.82748,22.8828],[81.83392,22.8809],[81.83837,22.88278],[81.83824,22.88525],[81.84207,22.88775],[81.84626,22.88672],[81.85319,22.89089],[81.86163,22.88926],[81.86949,22.89451],[81.86811,22.90209],[81.86933,22.9098],[81.86552,22.91274],[81.86611,22.91581],[81.86912,22.91733],[81.87824,22.90981],[81.8904,22.92266],[81.89815,22.92593],[81.90469,22.93145],[81.91274,22.94165],[81.91892,22.94655],[81.94631,22.95678],[81.94781,22.96754],[81.94621,22.97392],[81.95048,22.98293],[81.94476,22.98917],[81.94544,22.99582],[81.93914,23.00462],[81.93955,23.00953],[81.93673,23.01617],[81.92977,23.02061],[81.92951,23.02273],[81.93183,23.02548],[81.92561,23.0292],[81.9215,23.04081],[81.92449,23.04711],[81.92904,23.04983],[81.92678,23.05758],[81.93027,23.05904],[81.92955,23.06164],[81.9374,23.06188],[81.93781,23.06525],[81.94294,23.06477],[81.9439,23.06739],[81.94685,23.0691],[81.94506,23.07258],[81.94604,23.07628],[81.94225,23.07897],[81.96317,23.07519],[81.96341,23.07821],[81.96789,23.08072],[81.97621,23.07898],[81.97717,23.08101],[81.98086,23.08263],[81.98127,23.08015],[81.98241,23.08265],[81.98533,23.08267],[81.98565,23.08587],[81.98827,23.08614],[81.98948,23.08431],[81.99114,23.08661],[81.99432,23.08355],[81.99774,23.08441],[82.00042,23.08105],[82.00445,23.08119],[82.00783,23.07912],[82.01174,23.08004],[82.01276,23.08217],[82.01755,23.08243],[82.01857,23.0841],[82.01961,23.08104],[82.02257,23.07944],[82.02753,23.08222],[82.02808,23.08024],[82.03419,23.08005],[82.04372,23.08851],[82.04366,23.09035],[82.0471,23.09135],[82.04665,23.09248],[82.04906,23.09383],[82.04781,23.09644],[82.05323,23.09966],[82.05513,23.10685],[82.06005,23.10848],[82.06193,23.11241],[82.0664,23.11498],[82.06681,23.11676],[82.07008,23.1165],[82.07222,23.11832],[82.0749,23.11484],[82.08042,23.11269],[82.09216,23.11237],[82.0935,23.10907],[82.09787,23.10852],[82.1111,23.10935],[82.11609,23.1056],[82.12225,23.1038],[82.13791,23.112],[82.13664,23.12544],[82.1407,23.13293],[82.15687,23.13847],[82.16136,23.14311],[82.16226,23.15728],[82.16092,23.16205],[82.14516,23.16341],[82.14435,23.16565],[82.14854,23.17113],[82.1495,23.17548],[82.14905,23.17737],[82.14464,23.17954],[82.14364,23.18711],[82.14825,23.18895],[82.14398,23.19514],[82.14925,23.19738],[82.14976,23.20373],[82.15361,23.21274],[82.14762,23.21897],[82.14841,23.2211],[82.14527,23.22672],[82.15308,23.23047],[82.15978,23.24633],[82.16276,23.24509],[82.16718,23.24589],[82.16651,23.25008],[82.16964,23.25174],[82.16829,23.25515],[82.17229,23.2584],[82.17435,23.2687],[82.18533,23.2739],[82.1888,23.2735],[82.19296,23.27713],[82.19474,23.28439],[82.19221,23.28849],[82.19382,23.29522],[82.19671,23.29728],[82.19732,23.30066],[82.19603,23.30371],[82.19741,23.30688],[82.19479,23.30859],[82.1993,23.31397],[82.19208,23.32677],[82.18281,23.32737],[82.16373,23.33467],[82.16208,23.34284],[82.15383,23.35036],[82.14575,23.36118],[82.14091,23.36181],[82.12374,23.35372],[82.11714,23.35546],[82.11011,23.36317],[82.1118,23.36613],[82.11377,23.38416],[82.10524,23.39256],[82.10494,23.39698],[82.10341,23.39824],[82.09348,23.39286],[82.09204,23.39364],[82.09301,23.39747],[82.09148,23.39828],[82.08601,23.39699],[82.08217,23.39347],[82.07704,23.39494],[82.07112,23.39121],[82.06406,23.39294],[82.05876,23.37875],[82.056,23.37678],[82.04447,23.38005],[82.03685,23.38874],[82.03231,23.38242],[82.0233,23.38584],[82.02093,23.38923],[82.02116,23.39177],[82.02907,23.4002],[82.0238,23.40676],[82.02385,23.40867],[82.02569,23.40969],[82.03063,23.40824],[82.03275,23.40999],[82.0315,23.41223]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"391","area_level":"District","area_name":"Ashoknagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.84856,25.00037],[77.85181,25.00498],[77.85117,25.00691],[77.84874,25.00773],[77.84219,25.00158],[77.83666,24.9998],[77.83136,25.00094],[77.828,24.99367],[77.8268,24.98083],[77.81984,24.97002],[77.81301,24.96958],[77.81468,24.95883],[77.80217,24.95321],[77.80229,24.95101],[77.80522,24.95064],[77.8058,24.94495],[77.80128,24.9341],[77.79455,24.93389],[77.79066,24.93637],[77.78842,24.93591],[77.7874,24.93083],[77.78515,24.92966],[77.77424,24.91104],[77.77448,24.90222],[77.76498,24.8969],[77.7553,24.89854],[77.75233,24.89096],[77.75146,24.87119],[77.74598,24.86325],[77.73901,24.85721],[77.72688,24.85735],[77.72592,24.85861],[77.72829,24.85995],[77.72699,24.86388],[77.7233,24.86728],[77.72116,24.86717],[77.71553,24.86321],[77.71438,24.85786],[77.71131,24.85571],[77.71122,24.8537],[77.70919,24.85199],[77.70731,24.85358],[77.70686,24.85173],[77.69741,24.85649],[77.69524,24.85967],[77.69047,24.85784],[77.69101,24.86069],[77.68941,24.86198],[77.68869,24.8582],[77.68663,24.85854],[77.68257,24.86516],[77.67843,24.86538],[77.67607,24.86329],[77.67065,24.87074],[77.66927,24.87837],[77.66281,24.8803],[77.66064,24.88358],[77.65492,24.88506],[77.65373,24.88718],[77.65446,24.89117],[77.64852,24.88991],[77.64715,24.89526],[77.64337,24.89734],[77.64209,24.90003],[77.63778,24.89959],[77.63532,24.9053],[77.63274,24.90555],[77.6292,24.90319],[77.62632,24.90808],[77.6191,24.90978],[77.62044,24.91425],[77.61782,24.9175],[77.6175,24.92107],[77.61514,24.91995],[77.61346,24.9212],[77.613,24.92698],[77.60777,24.93059],[77.60438,24.92892],[77.60377,24.92576],[77.59467,24.92678],[77.59333,24.93336],[77.59647,24.95124],[77.60108,24.95239],[77.5981,24.95565],[77.59726,24.95997],[77.58852,24.96593],[77.58044,24.96084],[77.57542,24.95498],[77.5762,24.95065],[77.5745,24.94635],[77.56973,24.94474],[77.56816,24.94114],[77.56436,24.94018],[77.55976,24.93337],[77.5555,24.93439],[77.54891,24.92194],[77.54961,24.9209],[77.54542,24.91589],[77.54152,24.91507],[77.54143,24.91386],[77.54469,24.91338],[77.5436,24.90523],[77.54956,24.90164],[77.54924,24.89791],[77.5614,24.89657],[77.57564,24.88825],[77.57906,24.88894],[77.58024,24.89118],[77.58378,24.89144],[77.58387,24.88992],[77.58567,24.88967],[77.58743,24.89117],[77.58879,24.88954],[77.58718,24.88781],[77.58064,24.8876],[77.57892,24.88287],[77.56451,24.87167],[77.56259,24.86755],[77.54885,24.86085],[77.53785,24.85144],[77.53509,24.84654],[77.52666,24.8424],[77.5231,24.83672],[77.52009,24.82707],[77.52403,24.8152],[77.52256,24.8066],[77.52591,24.80271],[77.52329,24.79508],[77.53019,24.78916],[77.54188,24.78562],[77.5444,24.78087],[77.54406,24.77482],[77.54955,24.77256],[77.55722,24.76241],[77.55588,24.76038],[77.55065,24.75944],[77.55437,24.75156],[77.55129,24.74621],[77.55674,24.74011],[77.55237,24.73512],[77.55557,24.7272],[77.54932,24.71859],[77.53958,24.71055],[77.53826,24.7042],[77.53428,24.69784],[77.53535,24.69441],[77.53426,24.69227],[77.52646,24.68973],[77.52095,24.67977],[77.51236,24.67977],[77.50377,24.66977],[77.49878,24.66632],[77.49395,24.6569],[77.48875,24.65227],[77.49221,24.63983],[77.48944,24.63761],[77.48568,24.63772],[77.48172,24.6334],[77.48344,24.62645],[77.4809,24.62113],[77.48153,24.61515],[77.47882,24.60894],[77.47848,24.59916],[77.47476,24.5873],[77.48105,24.58603],[77.4865,24.58045],[77.48485,24.56992],[77.4858,24.56577],[77.48416,24.56106],[77.48807,24.55832],[77.48504,24.55515],[77.48619,24.55287],[77.48976,24.5515],[77.49169,24.54371],[77.48837,24.53229],[77.49048,24.52509],[77.48684,24.51449],[77.49236,24.51114],[77.48999,24.50586],[77.49014,24.49652],[77.497,24.49437],[77.49098,24.48145],[77.49511,24.47845],[77.49797,24.47265],[77.49586,24.46662],[77.47808,24.46742],[77.47472,24.46505],[77.47172,24.45764],[77.47577,24.45537],[77.47666,24.43865],[77.4755,24.43539],[77.48491,24.42984],[77.49598,24.42946],[77.49892,24.42736],[77.50149,24.42861],[77.50522,24.42295],[77.50089,24.42105],[77.50862,24.40519],[77.51147,24.40592],[77.51138,24.40304],[77.51793,24.40196],[77.51645,24.4049],[77.51761,24.40576],[77.51753,24.40432],[77.52119,24.40386],[77.52183,24.40175],[77.52502,24.40324],[77.52775,24.39997],[77.52862,24.40157],[77.5325,24.40059],[77.53689,24.40367],[77.53827,24.39845],[77.54076,24.39695],[77.55046,24.39459],[77.55851,24.39471],[77.56899,24.38718],[77.57362,24.388],[77.57969,24.38328],[77.59304,24.38024],[77.59271,24.37661],[77.59144,24.37683],[77.59078,24.37479],[77.59689,24.37696],[77.60053,24.37578],[77.60424,24.38257],[77.60699,24.39671],[77.6174,24.40592],[77.62335,24.42026],[77.62599,24.42246],[77.63391,24.42357],[77.63571,24.42844],[77.63907,24.42703],[77.64737,24.41881],[77.65575,24.42066],[77.65218,24.41459],[77.65195,24.41027],[77.65302,24.40613],[77.65607,24.403],[77.66445,24.40028],[77.68089,24.40005],[77.69009,24.40048],[77.69889,24.40526],[77.69866,24.40766],[77.70702,24.41039],[77.70611,24.41604],[77.70948,24.42185],[77.70972,24.42805],[77.72224,24.42151],[77.7257,24.42173],[77.73276,24.42773],[77.73554,24.42836],[77.73215,24.4204],[77.72894,24.41828],[77.72733,24.40833],[77.72422,24.40508],[77.72246,24.39472],[77.71985,24.39302],[77.7213,24.38687],[77.709,24.38459],[77.698,24.39249],[77.6905,24.39123],[77.68687,24.38695],[77.68353,24.38775],[77.68101,24.38298],[77.66991,24.37366],[77.67375,24.37091],[77.66591,24.36385],[77.65843,24.36355],[77.64432,24.35671],[77.62449,24.35214],[77.61884,24.34305],[77.61676,24.34233],[77.61744,24.33247],[77.62307,24.32776],[77.62396,24.32855],[77.63262,24.3233],[77.63438,24.32412],[77.63888,24.32196],[77.64271,24.32546],[77.6483,24.3257],[77.65125,24.32417],[77.6483,24.31445],[77.6522,24.31259],[77.66437,24.31058],[77.67867,24.31091],[77.69451,24.30544],[77.69582,24.30176],[77.70078,24.3036],[77.70219,24.30595],[77.70314,24.30333],[77.70609,24.30394],[77.70856,24.30245],[77.70892,24.30384],[77.71286,24.30092],[77.71931,24.29945],[77.72588,24.30325],[77.7307,24.30249],[77.75497,24.30756],[77.77147,24.30104],[77.77908,24.30694],[77.77806,24.30831],[77.78102,24.31351],[77.78571,24.31499],[77.79899,24.30621],[77.81192,24.30538],[77.81758,24.29961],[77.81835,24.30609],[77.83472,24.31038],[77.83848,24.31271],[77.84239,24.30809],[77.85038,24.31028],[77.85102,24.31171],[77.87598,24.31427],[77.89364,24.31132],[77.89483,24.3107],[77.89595,24.30196],[77.89501,24.29515],[77.89044,24.28755],[77.88599,24.28414],[77.88417,24.27729],[77.89517,24.27107],[77.90536,24.26857],[77.91903,24.26946],[77.92758,24.2676],[77.92974,24.26017],[77.92856,24.25141],[77.93422,24.2513],[77.93867,24.24868],[77.93747,24.24615],[77.93957,24.23594],[77.9389,24.23157],[77.94314,24.23024],[77.95127,24.22954],[77.95951,24.2382],[77.96343,24.24645],[77.96791,24.24655],[77.97183,24.24447],[77.9821,24.24518],[77.98315,24.24154],[77.99264,24.24085],[77.99345,24.23731],[78.00983,24.23524],[78.01501,24.23639],[78.02108,24.24678],[78.01673,24.24807],[78.02051,24.25799],[78.01714,24.2622],[78.01533,24.27749],[78.0213,24.28671],[78.04278,24.28134],[78.04282,24.27441],[78.04626,24.27296],[78.04637,24.27125],[78.04869,24.27117],[78.04871,24.26542],[78.05723,24.26047],[78.06122,24.25961],[78.06247,24.26261],[78.07444,24.25834],[78.08299,24.25977],[78.08386,24.25679],[78.09528,24.25719],[78.0985,24.26108],[78.09861,24.26432],[78.08642,24.28819],[78.08527,24.29491],[78.08801,24.31428],[78.09163,24.32104],[78.10216,24.32583],[78.11183,24.33453],[78.12264,24.33721],[78.13142,24.34669],[78.14559,24.35505],[78.15096,24.36392],[78.15972,24.37237],[78.16197,24.37675],[78.15928,24.38636],[78.16399,24.39567],[78.16967,24.39793],[78.18283,24.3988],[78.20714,24.40755],[78.2136,24.4115],[78.22024,24.41989],[78.2339,24.42604],[78.24657,24.42922],[78.25997,24.4379],[78.26517,24.44363],[78.26614,24.45121],[78.26416,24.4557],[78.27379,24.46723],[78.27498,24.47392],[78.26802,24.47904],[78.24957,24.48358],[78.24589,24.48614],[78.24406,24.48905],[78.24773,24.5026],[78.24602,24.50954],[78.24442,24.51142],[78.23492,24.51324],[78.22917,24.51653],[78.22598,24.51977],[78.22506,24.52507],[78.22661,24.53393],[78.23007,24.53798],[78.24458,24.54459],[78.2561,24.54714],[78.26447,24.5522],[78.26646,24.55939],[78.26482,24.5675],[78.26733,24.57595],[78.27289,24.57941],[78.2733,24.59576],[78.27798,24.61476],[78.27618,24.61948],[78.26532,24.63141],[78.26267,24.646],[78.26405,24.6511],[78.27522,24.65818],[78.27654,24.66359],[78.26534,24.67934],[78.25752,24.70417],[78.25035,24.71148],[78.22614,24.74691],[78.22557,24.75303],[78.23178,24.76236],[78.23505,24.76381],[78.23574,24.77175],[78.23174,24.77714],[78.21668,24.80859],[78.20403,24.8244],[78.19929,24.83786],[78.19563,24.84149],[78.17751,24.84333],[78.17452,24.8455],[78.16693,24.83997],[78.13935,24.84116],[78.12338,24.83884],[78.12048,24.83587],[78.11142,24.83607],[78.10421,24.83926],[78.0949,24.84697],[78.09012,24.84791],[78.07876,24.84587],[78.07716,24.84927],[78.06916,24.85025],[78.0642,24.85344],[78.04797,24.85887],[78.04476,24.85723],[78.04663,24.85051],[78.04163,24.84223],[78.03805,24.84077],[78.03718,24.83819],[78.02802,24.83654],[78.01724,24.8351],[78.00952,24.83821],[78.00149,24.85186],[77.994,24.85284],[77.99151,24.85565],[77.98618,24.85546],[77.98467,24.8518],[77.98166,24.85246],[77.9771,24.84808],[77.96946,24.87227],[77.9721,24.88457],[77.97927,24.88211],[77.98936,24.88576],[77.99063,24.8929],[77.98723,24.89722],[77.98177,24.90054],[77.98359,24.91124],[77.9888,24.92159],[77.9954,24.92701],[78.00223,24.93662],[78.01457,24.94455],[78.01785,24.95083],[78.0178,24.95593],[78.00082,24.95979],[77.98958,24.95923],[77.98143,24.96226],[77.9708,24.96192],[77.9611,24.96409],[77.96056,24.98337],[77.95031,24.98673],[77.93887,24.98054],[77.9255,24.98597],[77.92451,24.98273],[77.91834,24.98326],[77.91175,24.98136],[77.90491,25.00041],[77.90091,25.00265],[77.89404,25.00264],[77.88793,25.00727],[77.87941,25.00668],[77.87917,25.00314],[77.87378,25.00029],[77.8561,24.99879],[77.85295,24.99448],[77.84831,24.99609],[77.84856,25.00037]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"392","area_level":"District","area_name":"Balaghat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.81091,22.3996],[80.81127,22.40197],[80.80655,22.39919],[80.79823,22.40146],[80.79536,22.40005],[80.80148,22.3872],[80.79503,22.37919],[80.79403,22.37578],[80.80223,22.36639],[80.79413,22.35506],[80.79211,22.34151],[80.79505,22.32887],[80.79072,22.32546],[80.79207,22.32106],[80.78791,22.31372],[80.78495,22.31362],[80.7825,22.31691],[80.77887,22.31742],[80.77653,22.31512],[80.7737,22.31725],[80.77209,22.31255],[80.76978,22.31416],[80.76577,22.31207],[80.7659,22.30891],[80.76176,22.30921],[80.75737,22.30576],[80.7548,22.30122],[80.75252,22.30122],[80.75036,22.2969],[80.74909,22.29741],[80.74623,22.29259],[80.74686,22.29055],[80.74542,22.29057],[80.74341,22.28711],[80.74481,22.28449],[80.72318,22.27745],[80.7188,22.27144],[80.71113,22.27166],[80.70857,22.27503],[80.70395,22.27049],[80.70529,22.25701],[80.70347,22.25462],[80.71777,22.23535],[80.72425,22.23491],[80.72856,22.22027],[80.72803,22.21733],[80.72089,22.21632],[80.71317,22.20558],[80.70625,22.20216],[80.69983,22.20358],[80.69115,22.2126],[80.68161,22.213],[80.66419,22.22207],[80.65914,22.2195],[80.64589,22.22747],[80.63733,22.2262],[80.60785,22.22789],[80.59825,22.23228],[80.57992,22.22651],[80.53221,22.24057],[80.52514,22.2494],[80.52628,22.26463],[80.52392,22.26478],[80.52092,22.26229],[80.51818,22.26451],[80.51741,22.26227],[80.51564,22.26231],[80.50785,22.27567],[80.50231,22.27134],[80.48745,22.27007],[80.48517,22.27167],[80.48318,22.27801],[80.46694,22.27908],[80.46229,22.28082],[80.46049,22.27709],[80.46499,22.26437],[80.45107,22.26332],[80.44856,22.24788],[80.44682,22.24609],[80.42598,22.24641],[80.42227,22.2444],[80.41552,22.24418],[80.42112,22.26975],[80.41977,22.27575],[80.42111,22.2782],[80.40341,22.29312],[80.39975,22.30446],[80.38729,22.30638],[80.38492,22.30925],[80.3711,22.30097],[80.33606,22.29894],[80.33407,22.30557],[80.33665,22.31168],[80.34124,22.31592],[80.34278,22.32399],[80.34628,22.3271],[80.34409,22.32985],[80.33384,22.33412],[80.33317,22.33662],[80.33521,22.33917],[80.32773,22.34185],[80.32308,22.34612],[80.31898,22.3461],[80.30086,22.33738],[80.28826,22.32412],[80.27944,22.32317],[80.27311,22.3074],[80.25973,22.30827],[80.23505,22.30154],[80.23208,22.30277],[80.22813,22.31386],[80.22215,22.31216],[80.22085,22.31033],[80.2151,22.31008],[80.21258,22.3145],[80.2008,22.31636],[80.18498,22.32308],[80.16807,22.32542],[80.17243,22.33996],[80.15985,22.34624],[80.14975,22.34633],[80.14506,22.33948],[80.14282,22.33897],[80.13915,22.34349],[80.12938,22.34616],[80.10338,22.34267],[80.09799,22.33854],[80.10032,22.33512],[80.10053,22.32801],[80.09028,22.3207],[80.08881,22.31333],[80.09117,22.30965],[80.08114,22.29669],[80.09409,22.27885],[80.09376,22.2758],[80.08717,22.27371],[80.08617,22.27092],[80.09553,22.2659],[80.09871,22.24591],[80.09466,22.23958],[80.08316,22.23233],[80.08317,22.23037],[80.08856,22.22609],[80.08606,22.2219],[80.05973,22.21229],[80.056,22.20533],[80.03614,22.18649],[80.03349,22.18198],[80.04284,22.16098],[80.04605,22.1231],[80.05339,22.11713],[80.05967,22.11582],[80.06203,22.10923],[80.0607,22.10402],[80.06393,22.09946],[80.06692,22.08856],[80.06715,22.07738],[80.06282,22.07636],[80.05071,22.08156],[80.00728,22.08035],[80.00128,22.08224],[79.99505,22.07953],[79.99673,22.07574],[79.99122,22.07166],[79.99011,22.06884],[79.96688,22.07001],[79.95963,22.06857],[79.95397,22.07296],[79.95293,22.07163],[79.94796,22.07294],[79.9402,22.07195],[79.93407,22.0692],[79.93183,22.06507],[79.92037,22.05439],[79.92194,22.04201],[79.91833,22.03868],[79.91706,22.03467],[79.92633,22.03227],[79.92314,22.02193],[79.92366,22.01764],[79.92105,22.01359],[79.92064,22.00709],[79.92122,21.99414],[79.92319,21.98782],[79.92324,21.97363],[79.88937,21.96814],[79.88037,21.96952],[79.86148,21.96631],[79.86349,21.95817],[79.85602,21.95394],[79.84574,21.95405],[79.84591,21.94853],[79.84007,21.94534],[79.84089,21.9374],[79.86888,21.932],[79.87726,21.92811],[79.88203,21.93217],[79.8908,21.9313],[79.89121,21.93011],[79.88395,21.92283],[79.88442,21.92],[79.88065,21.91289],[79.87626,21.90969],[79.87715,21.90788],[79.86445,21.90756],[79.86575,21.90217],[79.84165,21.90548],[79.83887,21.88535],[79.82651,21.87854],[79.8247,21.87453],[79.81898,21.8705],[79.80796,21.86409],[79.79734,21.86017],[79.78162,21.86192],[79.77707,21.86004],[79.77774,21.8557],[79.79329,21.84472],[79.79068,21.84404],[79.79112,21.83793],[79.79356,21.83696],[79.78782,21.83918],[79.77279,21.8146],[79.76905,21.81158],[79.76971,21.80898],[79.74814,21.80129],[79.74197,21.80125],[79.73452,21.80349],[79.71915,21.80312],[79.71388,21.80474],[79.69072,21.80037],[79.68824,21.79331],[79.68355,21.78828],[79.68895,21.78094],[79.6894,21.76945],[79.68802,21.76156],[79.68113,21.75538],[79.68197,21.74998],[79.68065,21.74804],[79.68242,21.74679],[79.67951,21.7447],[79.66381,21.74605],[79.65854,21.74356],[79.65865,21.73966],[79.65642,21.73825],[79.65774,21.73395],[79.6611,21.73121],[79.66018,21.72402],[79.66346,21.7214],[79.66842,21.71186],[79.67027,21.71214],[79.66988,21.70702],[79.6732,21.70411],[79.66991,21.70136],[79.67299,21.69634],[79.66421,21.69665],[79.65693,21.6929],[79.63902,21.69632],[79.63456,21.70079],[79.63454,21.70533],[79.62764,21.7086],[79.60351,21.71131],[79.5995,21.70961],[79.60882,21.68631],[79.60873,21.6792],[79.59563,21.6689],[79.59408,21.66643],[79.59414,21.66123],[79.58861,21.66023],[79.58806,21.65426],[79.59296,21.65162],[79.59264,21.64648],[79.5906,21.64581],[79.58918,21.64807],[79.58712,21.64619],[79.58538,21.65085],[79.58149,21.64765],[79.57935,21.6485],[79.57775,21.64734],[79.57576,21.64244],[79.5695,21.63533],[79.54061,21.63107],[79.53797,21.62622],[79.54139,21.622],[79.54481,21.62076],[79.54698,21.61577],[79.54568,21.61091],[79.5423,21.60871],[79.54352,21.60761],[79.54276,21.60603],[79.53564,21.59996],[79.52665,21.5979],[79.52333,21.59427],[79.51765,21.59624],[79.51011,21.59604],[79.51203,21.58397],[79.51824,21.58036],[79.52864,21.57935],[79.53206,21.57502],[79.54251,21.56823],[79.54393,21.55952],[79.53752,21.54875],[79.54019,21.54272],[79.56581,21.54764],[79.58004,21.54118],[79.5841,21.54227],[79.59164,21.54788],[79.59997,21.54948],[79.6185,21.55726],[79.62226,21.55757],[79.63959,21.55297],[79.65279,21.55624],[79.65652,21.55973],[79.65897,21.56516],[79.66094,21.5769],[79.67543,21.5823],[79.68955,21.58096],[79.69501,21.58539],[79.69907,21.5929],[79.71201,21.59187],[79.71816,21.59306],[79.72494,21.59581],[79.7334,21.60333],[79.73996,21.6036],[79.7543,21.59549],[79.79207,21.58659],[79.82151,21.56154],[79.82856,21.54887],[79.83125,21.54692],[79.8507,21.54082],[79.86313,21.5308],[79.87319,21.52954],[79.88224,21.52622],[79.89124,21.51819],[79.897,21.52438],[79.9097,21.52277],[79.91846,21.52454],[79.92219,21.5418],[79.92977,21.55258],[79.9359,21.55624],[79.94821,21.55417],[79.96389,21.55835],[79.97148,21.55772],[79.97952,21.55052],[79.9887,21.53693],[79.99681,21.53362],[80.0041,21.53546],[80.03287,21.55621],[80.04451,21.55624],[80.05611,21.55343],[80.06669,21.5542],[80.07221,21.55679],[80.09013,21.57455],[80.09633,21.58504],[80.10124,21.58999],[80.11072,21.59084],[80.11606,21.59325],[80.11821,21.59852],[80.11797,21.60759],[80.12133,21.61088],[80.12867,21.61144],[80.13442,21.60823],[80.14561,21.60552],[80.15462,21.60647],[80.1602,21.61066],[80.16909,21.62214],[80.18763,21.62854],[80.19278,21.63545],[80.20883,21.63523],[80.21452,21.63017],[80.21746,21.63343],[80.21898,21.62887],[80.21689,21.62565],[80.22148,21.62097],[80.23529,21.6224],[80.24584,21.62049],[80.25196,21.62496],[80.26673,21.61854],[80.27244,21.61313],[80.27985,21.59722],[80.29407,21.59332],[80.29523,21.58136],[80.29806,21.57581],[80.30325,21.5748],[80.31483,21.57731],[80.32137,21.57587],[80.32775,21.5714],[80.33191,21.56093],[80.33931,21.55508],[80.33068,21.55118],[80.33131,21.54754],[80.34434,21.53867],[80.36015,21.53446],[80.36606,21.52906],[80.36967,21.52843],[80.3765,21.52328],[80.38477,21.49974],[80.38397,21.4901],[80.39211,21.4867],[80.39042,21.47941],[80.39722,21.47159],[80.40372,21.46753],[80.40906,21.46737],[80.41108,21.45988],[80.41389,21.45731],[80.41799,21.4485],[80.4187,21.4426],[80.42216,21.44054],[80.4046,21.42502],[80.40891,21.42104],[80.40857,21.41842],[80.39812,21.4123],[80.39604,21.40811],[80.39638,21.40298],[80.40676,21.3817],[80.41224,21.37672],[80.41694,21.3752],[80.43061,21.37626],[80.43246,21.37383],[80.43705,21.37268],[80.44612,21.37109],[80.44863,21.37205],[80.45174,21.37806],[80.44973,21.38732],[80.4542,21.39526],[80.45632,21.39611],[80.4558,21.39826],[80.45826,21.40036],[80.45701,21.40046],[80.45756,21.40268],[80.46235,21.40263],[80.47093,21.39586],[80.47364,21.3969],[80.47647,21.3949],[80.47979,21.39673],[80.48109,21.40094],[80.48341,21.39881],[80.48419,21.39534],[80.48752,21.39796],[80.49521,21.39658],[80.50097,21.39851],[80.50168,21.3956],[80.50842,21.39082],[80.51122,21.39284],[80.51501,21.39176],[80.51712,21.3952],[80.52393,21.39122],[80.52519,21.39402],[80.52762,21.39487],[80.5318,21.38207],[80.5392,21.38271],[80.54316,21.37071],[80.54848,21.37114],[80.55083,21.36874],[80.55333,21.36856],[80.5543,21.3665],[80.55841,21.36734],[80.56074,21.36365],[80.56388,21.36497],[80.57019,21.35752],[80.56541,21.35399],[80.56503,21.3494],[80.56756,21.34824],[80.5667,21.34565],[80.57277,21.3428],[80.57657,21.34687],[80.58137,21.34699],[80.58457,21.34423],[80.58947,21.34372],[80.59142,21.34092],[80.58934,21.3336],[80.59779,21.33155],[80.59989,21.3268],[80.60786,21.32386],[80.60891,21.32714],[80.61116,21.32761],[80.62134,21.32037],[80.64491,21.32804],[80.65191,21.32713],[80.66163,21.33613],[80.67114,21.33825],[80.67242,21.34096],[80.67128,21.34519],[80.67755,21.34843],[80.67648,21.35101],[80.68188,21.35995],[80.6802,21.36486],[80.68493,21.37015],[80.68739,21.36996],[80.69029,21.37207],[80.69911,21.39094],[80.69716,21.39343],[80.70055,21.3966],[80.69993,21.40458],[80.70687,21.41279],[80.70719,21.42546],[80.70574,21.43088],[80.70682,21.43307],[80.71429,21.43619],[80.7244,21.44518],[80.73493,21.45991],[80.73775,21.47312],[80.73716,21.48098],[80.73289,21.48434],[80.7276,21.4962],[80.72929,21.49896],[80.73321,21.50066],[80.7315,21.50818],[80.73365,21.51279],[80.73048,21.5156],[80.74078,21.53923],[80.73419,21.54577],[80.72763,21.54869],[80.72455,21.55267],[80.71999,21.555],[80.72238,21.55993],[80.72117,21.56122],[80.72598,21.56635],[80.72571,21.5691],[80.72867,21.56995],[80.72891,21.57258],[80.7255,21.58009],[80.71536,21.58505],[80.71861,21.58743],[80.71543,21.5903],[80.71808,21.5932],[80.71637,21.59907],[80.71879,21.60037],[80.71705,21.60297],[80.72191,21.60955],[80.72498,21.60955],[80.72297,21.61203],[80.7234,21.61405],[80.73095,21.61735],[80.7291,21.62056],[80.73157,21.62651],[80.72901,21.62686],[80.72958,21.63403],[80.72764,21.63666],[80.72685,21.64562],[80.71928,21.64537],[80.71708,21.66008],[80.71439,21.66155],[80.7163,21.66328],[80.71526,21.66578],[80.71801,21.66619],[80.71918,21.66849],[80.71598,21.67473],[80.72145,21.677],[80.72531,21.68128],[80.72978,21.69206],[80.733,21.69266],[80.73414,21.69451],[80.73233,21.69816],[80.73513,21.70389],[80.73397,21.70594],[80.72902,21.70692],[80.72568,21.71214],[80.72614,21.71367],[80.73206,21.71366],[80.734,21.72053],[80.73338,21.72777],[80.73987,21.732],[80.73781,21.73626],[80.74034,21.74413],[80.74747,21.75554],[80.75599,21.76206],[80.75938,21.75918],[80.77203,21.75852],[80.77792,21.75477],[80.77627,21.75363],[80.77963,21.7507],[80.78585,21.74876],[80.78446,21.74287],[80.78543,21.74031],[80.80326,21.74447],[80.80451,21.74662],[80.80926,21.74843],[80.81974,21.74802],[80.82017,21.75402],[80.81661,21.75399],[80.81563,21.75573],[80.81712,21.76213],[80.81864,21.7656],[80.822,21.76602],[80.82278,21.76795],[80.82133,21.768],[80.82458,21.77045],[80.82263,21.7714],[80.82406,21.77218],[80.82274,21.77289],[80.82358,21.77499],[80.82821,21.77621],[80.82709,21.77863],[80.82954,21.77994],[80.8262,21.78159],[80.82618,21.78298],[80.83022,21.78678],[80.82984,21.78916],[80.83181,21.78946],[80.83205,21.7942],[80.83663,21.7961],[80.83567,21.79717],[80.84018,21.80215],[80.83862,21.80231],[80.8395,21.80323],[80.83809,21.80531],[80.83956,21.80721],[80.83751,21.80945],[80.84036,21.8124],[80.83906,21.81327],[80.84143,21.81539],[80.84039,21.81823],[80.84518,21.82882],[80.84247,21.83553],[80.83837,21.8367],[80.83868,21.83836],[80.8407,21.83867],[80.83891,21.84002],[80.84127,21.83978],[80.83933,21.84765],[80.84654,21.85281],[80.85075,21.85202],[80.85196,21.85348],[80.85256,21.85504],[80.85024,21.85588],[80.85046,21.85813],[80.8465,21.85997],[80.84865,21.86219],[80.84726,21.86358],[80.84524,21.86233],[80.84539,21.86475],[80.84276,21.86533],[80.84576,21.86975],[80.84909,21.87113],[80.85272,21.87048],[80.85331,21.87276],[80.84956,21.87344],[80.84991,21.87625],[80.84621,21.87387],[80.84295,21.87607],[80.84504,21.87767],[80.84279,21.88064],[80.84326,21.88239],[80.83499,21.88559],[80.83276,21.88911],[80.83394,21.89105],[80.8321,21.89024],[80.832,21.89203],[80.83481,21.89606],[80.83318,21.89863],[80.83433,21.90061],[80.83339,21.90213],[80.83614,21.907],[80.83212,21.90797],[80.835,21.90834],[80.83623,21.91461],[80.83981,21.91945],[80.83925,21.92305],[80.8461,21.92624],[80.84562,21.93043],[80.84765,21.93074],[80.8477,21.93253],[80.84581,21.93397],[80.84571,21.93985],[80.84139,21.94117],[80.84589,21.94208],[80.84204,21.94415],[80.84304,21.94612],[80.83753,21.94698],[80.83647,21.94974],[80.83404,21.94575],[80.83129,21.94729],[80.83318,21.95011],[80.82898,21.94838],[80.82747,21.95127],[80.82913,21.95355],[80.82602,21.95284],[80.8275,21.95617],[80.82549,21.95842],[80.82881,21.95871],[80.83606,21.95453],[80.83849,21.95797],[80.84087,21.95558],[80.85267,21.95731],[80.85914,21.97078],[80.86575,21.99426],[80.87578,22.01104],[80.87695,22.03391],[80.87579,22.03853],[80.8858,22.04962],[80.88199,22.05297],[80.88269,22.05903],[80.88611,22.05915],[80.88901,22.0571],[80.89295,22.06308],[80.89681,22.06434],[80.90793,22.10957],[80.91469,22.11319],[80.92195,22.11995],[80.94758,22.11827],[80.95698,22.11042],[80.96076,22.10357],[80.96101,22.10003],[80.96655,22.09353],[80.97188,22.08235],[80.96902,22.06475],[80.97004,22.05741],[80.97973,22.05522],[80.98239,22.04952],[80.98426,22.04862],[80.98967,22.05138],[80.99483,22.04943],[80.99488,22.05861],[81.00317,22.05849],[81.00911,22.0709],[81.0067,22.075],[81.00458,22.07536],[81.00145,22.0835],[81.00612,22.09219],[81.01133,22.09557],[81.00666,22.09995],[81.00316,22.10106],[80.99048,22.11355],[80.98434,22.11456],[80.98096,22.11021],[80.97814,22.12011],[80.9826,22.1257],[80.98895,22.12825],[80.99487,22.13302],[80.99906,22.13132],[81.01368,22.13367],[81.02191,22.13273],[81.02378,22.14867],[81.02221,22.15773],[81.02631,22.16284],[81.02675,22.16639],[81.01716,22.17961],[81.01666,22.18553],[81.02243,22.18947],[81.02553,22.1874],[81.03066,22.1874],[81.02901,22.1925],[81.03164,22.19965],[81.03037,22.20317],[81.02176,22.21212],[81.01939,22.22099],[81.02364,22.22928],[81.02705,22.22892],[81.03791,22.23389],[81.04842,22.24385],[81.04495,22.25436],[81.0324,22.26507],[81.03088,22.27212],[81.01891,22.27744],[81.01113,22.28555],[81.00398,22.2859],[80.99837,22.28434],[80.98755,22.28655],[80.98266,22.28282],[80.98087,22.27799],[80.97447,22.27636],[80.96543,22.28106],[80.96281,22.281],[80.96062,22.28041],[80.95825,22.27516],[80.95424,22.27723],[80.94529,22.28635],[80.93807,22.28757],[80.93665,22.27786],[80.92217,22.27691],[80.92177,22.27856],[80.91912,22.27948],[80.91497,22.27904],[80.91355,22.28053],[80.91302,22.29014],[80.9057,22.29325],[80.90389,22.29906],[80.91021,22.30801],[80.91313,22.30946],[80.9093,22.31642],[80.90994,22.31827],[80.91405,22.32008],[80.91637,22.32871],[80.92006,22.32939],[80.92909,22.32678],[80.93216,22.32959],[80.93049,22.33235],[80.92085,22.33889],[80.90888,22.34286],[80.90227,22.34089],[80.89902,22.33374],[80.88147,22.33374],[80.88056,22.3383],[80.88284,22.34733],[80.89171,22.34899],[80.89007,22.35166],[80.89373,22.35043],[80.87893,22.35896],[80.87204,22.35963],[80.86537,22.36478],[80.86571,22.3789],[80.85682,22.3811],[80.85233,22.38563],[80.84943,22.38561],[80.84458,22.38906],[80.8422,22.38779],[80.84536,22.38295],[80.84433,22.38223],[80.83417,22.38367],[80.82005,22.39107],[80.81477,22.3901],[80.81129,22.39462],[80.81293,22.39912],[80.81091,22.3996]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"393","area_level":"District","area_name":"Barwani","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.3196,22.12564],[75.31579,22.1343],[75.28669,22.1246],[75.25124,22.1255],[75.23666,22.12371],[75.21842,22.11867],[75.19792,22.1074],[75.18821,22.10475],[75.14762,22.1034],[75.11483,22.0962],[75.06053,22.09466],[75.03423,22.08947],[74.97116,22.08416],[74.91471,22.08374],[74.88746,22.07909],[74.84768,22.06442],[74.83421,22.06215],[74.81988,22.0656],[74.7913,22.07724],[74.78009,22.07892],[74.7528,22.06957],[74.73347,22.05989],[74.69447,22.04854],[74.68944,22.0453],[74.68444,22.03807],[74.67891,22.03573],[74.66538,22.03411],[74.63758,22.03699],[74.61955,22.02907],[74.58802,22.02292],[74.56679,22.02232],[74.56017,22.02443],[74.55289,22.02946],[74.54081,22.04816],[74.53613,22.05125],[74.53118,22.05226],[74.5258,22.05181],[74.51094,22.04584],[74.48203,22.04318],[74.43203,22.03047],[74.43925,22.02467],[74.4435,22.02323],[74.43874,22.02084],[74.44387,22.01663],[74.44363,22.01117],[74.44801,22.00919],[74.44916,22.00596],[74.45218,22.00465],[74.44741,22.00063],[74.44536,22.0005],[74.44234,22.00318],[74.43798,22.00007],[74.43233,21.9994],[74.43309,21.99764],[74.43815,21.99734],[74.43978,21.99472],[74.43882,21.99089],[74.44146,21.99004],[74.43883,21.98717],[74.43939,21.97672],[74.44469,21.97548],[74.44451,21.97039],[74.45338,21.96194],[74.46109,21.96145],[74.46385,21.96607],[74.4676,21.96558],[74.46972,21.9671],[74.47137,21.96364],[74.46872,21.96108],[74.4691,21.95964],[74.47384,21.96104],[74.48159,21.95917],[74.48203,21.95475],[74.48873,21.95617],[74.49047,21.95123],[74.48449,21.94741],[74.48467,21.94581],[74.48908,21.94341],[74.49522,21.94681],[74.49712,21.94174],[74.5,21.9393],[74.50839,21.93734],[74.51256,21.93189],[74.50923,21.92064],[74.51266,21.9156],[74.51681,21.91582],[74.52421,21.91058],[74.5228,21.89909],[74.51364,21.88997],[74.51389,21.86266],[74.51001,21.82927],[74.50661,21.81638],[74.50021,21.80652],[74.49974,21.79239],[74.49821,21.79009],[74.50164,21.78152],[74.50972,21.77282],[74.51395,21.76569],[74.51163,21.75985],[74.51309,21.75658],[74.50897,21.75],[74.51204,21.74521],[74.51002,21.73743],[74.51107,21.73531],[74.50772,21.73168],[74.50802,21.72754],[74.50559,21.72631],[74.51386,21.71861],[74.53323,21.71689],[74.54737,21.7196],[74.556,21.70432],[74.55751,21.70427],[74.55538,21.69699],[74.55657,21.69282],[74.5549,21.69086],[74.55756,21.6874],[74.55416,21.68573],[74.5542,21.68136],[74.56238,21.68115],[74.56238,21.68343],[74.57987,21.68333],[74.58386,21.6733],[74.58208,21.66499],[74.61751,21.66047],[74.6224,21.65679],[74.66413,21.65253],[74.66488,21.6473],[74.66836,21.64828],[74.67104,21.64552],[74.67483,21.6465],[74.67747,21.64543],[74.67545,21.64472],[74.68396,21.6395],[74.68516,21.63365],[74.68707,21.63175],[74.69458,21.63247],[74.69989,21.63011],[74.70075,21.62758],[74.75,21.61797],[74.77536,21.61549],[74.78287,21.61069],[74.78988,21.61276],[74.79808,21.60992],[74.79963,21.61435],[74.80165,21.61536],[74.80285,21.61411],[74.80687,21.61463],[74.80811,21.61223],[74.81183,21.614],[74.81285,21.61078],[74.81959,21.6087],[74.82649,21.61141],[74.82987,21.6103],[74.83133,21.61829],[74.83934,21.61881],[74.8381,21.62211],[74.84988,21.62388],[74.85668,21.6266],[74.86276,21.63445],[74.86538,21.62856],[74.8679,21.62848],[74.86798,21.63101],[74.87181,21.63182],[74.87199,21.62982],[74.87547,21.63074],[74.87803,21.62852],[74.87884,21.63008],[74.88402,21.63106],[74.88589,21.62941],[74.88733,21.63159],[74.89011,21.62929],[74.89139,21.63065],[74.89792,21.62826],[74.90123,21.62936],[74.91033,21.61457],[74.93534,21.60598],[74.97923,21.59524],[74.99906,21.58565],[75.01534,21.57523],[75.01502,21.56968],[75.05213,21.56545],[75.08682,21.51789],[75.08665,21.51585],[75.08921,21.51676],[75.08978,21.50346],[75.08846,21.50088],[75.09745,21.48819],[75.10195,21.47428],[75.10775,21.46667],[75.10716,21.46269],[75.12988,21.44717],[75.17012,21.43157],[75.17999,21.43055],[75.20692,21.41272],[75.2147,21.40957],[75.22119,21.40849],[75.2287,21.41426],[75.23465,21.41458],[75.2414,21.41155],[75.24907,21.40348],[75.25484,21.40189],[75.26422,21.4074],[75.28017,21.40723],[75.28737,21.41188],[75.29533,21.41357],[75.3011,21.40994],[75.29858,21.40122],[75.30013,21.3917],[75.29624,21.39023],[75.29874,21.38557],[75.30785,21.39279],[75.31541,21.38793],[75.33194,21.39136],[75.3516,21.39083],[75.35438,21.39316],[75.35563,21.40015],[75.35716,21.40087],[75.36597,21.39649],[75.37044,21.39209],[75.37541,21.39049],[75.37591,21.38661],[75.38244,21.37954],[75.39018,21.38087],[75.39792,21.37988],[75.40779,21.38738],[75.4204,21.38782],[75.42613,21.39101],[75.43118,21.38671],[75.44015,21.38446],[75.44933,21.39041],[75.45755,21.38745],[75.46794,21.39045],[75.47575,21.38658],[75.49416,21.38561],[75.49755,21.38751],[75.51201,21.38209],[75.52005,21.38702],[75.52551,21.38005],[75.53086,21.3787],[75.53502,21.37357],[75.54138,21.37341],[75.5412,21.36934],[75.54372,21.36853],[75.54645,21.36881],[75.54617,21.37242],[75.55714,21.37941],[75.55827,21.37852],[75.5564,21.37461],[75.55717,21.37322],[75.56215,21.37629],[75.56577,21.37414],[75.57932,21.3766],[75.5798,21.37812],[75.5779,21.37917],[75.57176,21.37925],[75.57124,21.38146],[75.58155,21.38464],[75.58734,21.38923],[75.59169,21.38624],[75.59653,21.38771],[75.59921,21.38565],[75.6048,21.39165],[75.60755,21.39164],[75.60729,21.38895],[75.61051,21.3907],[75.61632,21.38809],[75.62028,21.38861],[75.62446,21.39161],[75.62763,21.39121],[75.62787,21.39482],[75.61873,21.39878],[75.60233,21.39733],[75.60603,21.41702],[75.60306,21.42097],[75.59768,21.42277],[75.5933,21.42211],[75.58694,21.42571],[75.59058,21.42937],[75.58969,21.43167],[75.59303,21.43315],[75.59266,21.43557],[75.59014,21.43682],[75.59038,21.43916],[75.59513,21.4406],[75.59562,21.44242],[75.60058,21.44508],[75.60452,21.45258],[75.61118,21.45599],[75.61071,21.45829],[75.60091,21.46078],[75.58323,21.47549],[75.57727,21.47527],[75.56409,21.47946],[75.54767,21.48026],[75.53222,21.47889],[75.52934,21.48252],[75.52999,21.48615],[75.52512,21.48896],[75.50435,21.48957],[75.49743,21.48732],[75.49086,21.49208],[75.48701,21.49299],[75.48591,21.49814],[75.48347,21.49719],[75.48208,21.50047],[75.48018,21.49979],[75.47928,21.50277],[75.47322,21.50946],[75.47125,21.51603],[75.46285,21.51513],[75.46309,21.52281],[75.45964,21.53258],[75.46014,21.54386],[75.46473,21.55048],[75.46471,21.55622],[75.46781,21.56123],[75.47007,21.56194],[75.47174,21.56627],[75.47798,21.56805],[75.47939,21.57464],[75.47903,21.58535],[75.48571,21.59903],[75.49107,21.59932],[75.49442,21.61017],[75.5021,21.61364],[75.49836,21.61721],[75.47986,21.62063],[75.4723,21.6247],[75.47161,21.62253],[75.46926,21.62313],[75.4672,21.62699],[75.46394,21.62829],[75.46297,21.63356],[75.45869,21.63531],[75.45662,21.63867],[75.4472,21.6414],[75.4488,21.64449],[75.44699,21.64857],[75.43724,21.65648],[75.4372,21.65996],[75.44042,21.66315],[75.43954,21.66633],[75.44125,21.66623],[75.43849,21.67577],[75.4167,21.67977],[75.40025,21.677],[75.39143,21.68153],[75.38375,21.67714],[75.37812,21.6782],[75.37449,21.67612],[75.3506,21.67093],[75.33269,21.66412],[75.32203,21.66196],[75.303,21.63894],[75.29697,21.63565],[75.2907,21.63503],[75.28778,21.63834],[75.28652,21.65172],[75.27066,21.6557],[75.27391,21.67527],[75.26445,21.67339],[75.26263,21.67475],[75.26671,21.6803],[75.26708,21.68747],[75.23054,21.69111],[75.22982,21.69249],[75.21742,21.69475],[75.20894,21.70849],[75.20989,21.71316],[75.20738,21.72361],[75.20772,21.72848],[75.21082,21.73359],[75.22222,21.74231],[75.24252,21.74503],[75.25658,21.73801],[75.25723,21.74459],[75.26272,21.74546],[75.27124,21.73802],[75.27603,21.73848],[75.27359,21.75412],[75.27141,21.75581],[75.27052,21.76514],[75.27287,21.76651],[75.27249,21.7693],[75.27499,21.76977],[75.27684,21.77236],[75.2822,21.7722],[75.28003,21.78294],[75.28088,21.78758],[75.2764,21.78994],[75.27575,21.79218],[75.27403,21.79195],[75.27239,21.80139],[75.27571,21.80223],[75.27564,21.80378],[75.28458,21.8032],[75.28888,21.80486],[75.28945,21.81131],[75.29513,21.81119],[75.29309,21.82489],[75.30898,21.8337],[75.30988,21.84355],[75.30157,21.84765],[75.30129,21.85427],[75.29803,21.86316],[75.27657,21.86614],[75.27601,21.88613],[75.27978,21.88593],[75.28772,21.89209],[75.28125,21.90569],[75.28328,21.91578],[75.28786,21.91703],[75.29053,21.92199],[75.29742,21.92251],[75.30731,21.90745],[75.31489,21.90818],[75.32452,21.90573],[75.33268,21.90911],[75.33482,21.91366],[75.33524,21.92089],[75.34188,21.9299],[75.33784,21.94099],[75.33813,21.94584],[75.34453,21.94721],[75.34947,21.95481],[75.35265,21.95592],[75.35031,21.98207],[75.35843,21.98513],[75.39834,21.98472],[75.3995,21.99539],[75.405,22.00232],[75.40943,22.00397],[75.41604,22.00387],[75.42589,22.01034],[75.43043,22.01575],[75.43507,22.01763],[75.44346,22.02593],[75.43734,22.02635],[75.41392,22.02284],[75.41615,22.02756],[75.41296,22.03209],[75.41358,22.05881],[75.43328,22.05997],[75.4457,22.05618],[75.45668,22.0593],[75.45149,22.07267],[75.43724,22.07064],[75.43344,22.07834],[75.41421,22.07297],[75.40541,22.07249],[75.39897,22.07895],[75.39338,22.0809],[75.39314,22.08406],[75.39639,22.08876],[75.3892,22.0897],[75.38443,22.09424],[75.38102,22.1021],[75.36805,22.10176],[75.3575,22.09833],[75.35781,22.10253],[75.35486,22.11276],[75.35195,22.1139],[75.34586,22.11289],[75.34347,22.11992],[75.3405,22.12146],[75.33196,22.12315],[75.32822,22.12151],[75.32368,22.12213],[75.3196,22.12564]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"394","area_level":"District","area_name":"Betul","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.00259,21.67645],[77.00593,21.67875],[77.00551,21.67943],[77.00518,21.68068],[77.00518,21.68265],[77.00468,21.68447],[77.00185,21.68998],[77.00107,21.69093],[76.99966,21.69182],[76.99886,21.69192],[76.99334,21.69049],[76.98874,21.68891],[76.98835,21.68866],[76.98625,21.68565],[76.98618,21.68484],[76.98669,21.68322],[76.98911,21.67831],[76.98971,21.67615],[76.99007,21.67564],[76.99222,21.67494],[76.99682,21.67598],[76.99826,21.67387],[77.0,21.67464],[77.00259,21.67645]]],[[[77.03327,21.72364],[77.03271,21.72644],[77.02795,21.72484],[77.02373,21.72241],[77.02008,21.72086],[77.01823,21.72057],[77.01497,21.72062],[77.01409,21.72019],[77.01304,21.71913],[77.01474,21.71325],[77.02002,21.70435],[77.02035,21.69767],[77.02124,21.69423],[77.02266,21.69167],[77.02357,21.68833],[77.02624,21.69019],[77.02923,21.6916],[77.03514,21.69355],[77.0382,21.69549],[77.0402,21.69708],[77.03845,21.69906],[77.03716,21.70142],[77.03475,21.70402],[77.03435,21.70488],[77.03416,21.70565],[77.03461,21.70984],[77.03401,21.71796],[77.03327,21.72364]]],[[[77.59332,21.3645],[77.59482,21.36303],[77.60513,21.36244],[77.60785,21.36494],[77.60826,21.37049],[77.60617,21.37357],[77.60343,21.38984],[77.61192,21.3924],[77.6139,21.39205],[77.61726,21.38712],[77.62124,21.38678],[77.63265,21.38881],[77.63977,21.3887],[77.64326,21.38692],[77.64936,21.39207],[77.65398,21.39117],[77.65592,21.38614],[77.66648,21.38405],[77.66438,21.37451],[77.66991,21.36892],[77.67866,21.37691],[77.69184,21.39749],[77.69531,21.39653],[77.6971,21.39184],[77.69517,21.37876],[77.69741,21.3743],[77.7006,21.37367],[77.7047,21.377],[77.70739,21.37505],[77.70676,21.3682],[77.70999,21.35745],[77.72329,21.36167],[77.73711,21.3622],[77.74109,21.36625],[77.74679,21.37974],[77.75074,21.38311],[77.76122,21.38517],[77.76388,21.3814],[77.79677,21.38901],[77.79828,21.40491],[77.80115,21.4096],[77.82262,21.40733],[77.84262,21.3972],[77.84728,21.3925],[77.85637,21.39019],[77.8568,21.38852],[77.86758,21.38787],[77.88385,21.38417],[77.88327,21.37604],[77.88843,21.3781],[77.907,21.37784],[77.91209,21.38113],[77.92759,21.38599],[77.94119,21.38577],[77.94051,21.39037],[77.94259,21.39661],[77.96223,21.40171],[77.98104,21.40246],[77.98781,21.4044],[78.00127,21.41469],[78.0091,21.41511],[78.01424,21.41856],[78.02505,21.41997],[78.04029,21.42845],[78.04602,21.43398],[78.06606,21.43797],[78.08094,21.44464],[78.09873,21.45865],[78.11335,21.46346],[78.12587,21.46984],[78.13655,21.47816],[78.17621,21.49975],[78.17447,21.50798],[78.1773,21.5078],[78.18263,21.51175],[78.17125,21.52558],[78.1755,21.5281],[78.17286,21.53875],[78.17421,21.54726],[78.18189,21.55734],[78.20547,21.55297],[78.22328,21.55316],[78.23192,21.55675],[78.23958,21.56307],[78.24805,21.56232],[78.27386,21.56925],[78.27327,21.57121],[78.2603,21.57966],[78.26104,21.58595],[78.26521,21.59159],[78.27182,21.59066],[78.27522,21.59182],[78.28115,21.58524],[78.29121,21.58323],[78.30297,21.58374],[78.30395,21.57045],[78.3052,21.57007],[78.30705,21.56957],[78.30774,21.57134],[78.31386,21.57275],[78.32031,21.57205],[78.32661,21.575],[78.34276,21.58905],[78.34393,21.5941],[78.34303,21.59891],[78.34593,21.60699],[78.34606,21.62288],[78.34966,21.62626],[78.35266,21.62462],[78.358,21.62518],[78.36496,21.61923],[78.36858,21.62861],[78.37501,21.63065],[78.37604,21.63431],[78.37963,21.63503],[78.37975,21.63804],[78.39392,21.63796],[78.39877,21.64377],[78.3985,21.64772],[78.39419,21.6488],[78.39173,21.6516],[78.39025,21.66379],[78.39356,21.6718],[78.39995,21.68045],[78.40133,21.68138],[78.41259,21.67902],[78.41883,21.68469],[78.42026,21.69016],[78.42769,21.69675],[78.42855,21.70348],[78.42533,21.71329],[78.42727,21.71834],[78.43762,21.71605],[78.45127,21.71774],[78.45474,21.71608],[78.45978,21.7179],[78.46662,21.74271],[78.46283,21.74975],[78.46232,21.75753],[78.45922,21.76264],[78.46352,21.76353],[78.46534,21.766],[78.46875,21.76283],[78.4707,21.76456],[78.47183,21.77769],[78.4697,21.78538],[78.47462,21.7863],[78.47791,21.784],[78.48678,21.78454],[78.49563,21.78699],[78.49839,21.79234],[78.49578,21.79231],[78.48917,21.79915],[78.48666,21.79954],[78.48335,21.80529],[78.4725,21.81095],[78.46721,21.81103],[78.46715,21.81353],[78.47381,21.81682],[78.47442,21.82275],[78.48796,21.82754],[78.48989,21.83143],[78.49868,21.83445],[78.50858,21.83077],[78.51958,21.83299],[78.52157,21.83569],[78.52358,21.83506],[78.5264,21.83793],[78.52725,21.84294],[78.53042,21.84836],[78.54138,21.8517],[78.54287,21.85834],[78.5394,21.86085],[78.53964,21.86284],[78.54758,21.86592],[78.54922,21.87321],[78.54773,21.87797],[78.54154,21.8847],[78.54131,21.88868],[78.5393,21.8888],[78.53827,21.8995],[78.5418,21.90222],[78.53795,21.90746],[78.5185,21.90841],[78.52137,21.92531],[78.51453,21.93658],[78.50458,21.93754],[78.5013,21.93586],[78.50103,21.93749],[78.49868,21.93566],[78.49526,21.93695],[78.49235,21.935],[78.48475,21.93902],[78.48651,21.94291],[78.48076,21.95045],[78.4778,21.95072],[78.47633,21.953],[78.46804,21.9537],[78.47212,21.95785],[78.46627,21.96337],[78.46593,21.95794],[78.46401,21.95589],[78.46121,21.95533],[78.45477,21.95752],[78.44936,21.95316],[78.44712,21.95372],[78.44574,21.95879],[78.44232,21.96103],[78.44046,21.95613],[78.4361,21.95433],[78.43175,21.9498],[78.42412,21.9542],[78.42685,21.95874],[78.42457,21.9598],[78.41292,21.95117],[78.41253,21.94371],[78.40878,21.93674],[78.40247,21.93944],[78.39548,21.93996],[78.39447,21.93686],[78.39796,21.93303],[78.39826,21.9286],[78.39523,21.92369],[78.38925,21.92328],[78.38652,21.92894],[78.39014,21.93452],[78.38708,21.9385],[78.38295,21.93952],[78.38768,21.94849],[78.38464,21.96364],[78.38565,21.9663],[78.38918,21.96873],[78.38865,21.97334],[78.39105,21.97876],[78.40092,21.98526],[78.40101,21.99466],[78.39734,21.99518],[78.40094,22.00489],[78.39529,22.01443],[78.38668,22.01647],[78.38623,22.01927],[78.38275,22.02171],[78.37858,22.02185],[78.37768,22.02831],[78.37202,22.0296],[78.37693,22.03532],[78.37561,22.03684],[78.37309,22.03545],[78.36783,22.03604],[78.36375,22.03252],[78.35657,22.0354],[78.35387,22.04345],[78.35544,22.04535],[78.3572,22.04447],[78.35908,22.04746],[78.3569,22.04749],[78.35504,22.05232],[78.34524,22.05066],[78.34673,22.05542],[78.34537,22.05568],[78.34796,22.05705],[78.34817,22.05915],[78.34435,22.05975],[78.34505,22.06416],[78.34314,22.06688],[78.34682,22.06973],[78.34769,22.07368],[78.33773,22.09081],[78.34095,22.09657],[78.33986,22.09923],[78.34966,22.10405],[78.34761,22.10911],[78.33061,22.10743],[78.31652,22.09996],[78.3131,22.09999],[78.3005,22.0922],[78.29073,22.09235],[78.28609,22.09019],[78.27628,22.09062],[78.27569,22.09955],[78.27273,22.10645],[78.27161,22.11579],[78.27574,22.1176],[78.27813,22.12455],[78.27707,22.13365],[78.26426,22.13302],[78.26709,22.13759],[78.26671,22.14615],[78.26248,22.15049],[78.26781,22.16094],[78.26211,22.16164],[78.25889,22.16516],[78.2614,22.17712],[78.26671,22.17649],[78.26306,22.18371],[78.2692,22.18646],[78.26136,22.18816],[78.2629,22.19343],[78.26183,22.19594],[78.26587,22.19907],[78.26062,22.20848],[78.26739,22.21232],[78.26571,22.21605],[78.26862,22.22112],[78.26487,22.22042],[78.26367,22.22208],[78.26644,22.22403],[78.26668,22.22716],[78.26958,22.22819],[78.2711,22.23155],[78.27528,22.23403],[78.27985,22.23968],[78.28616,22.24175],[78.28798,22.2492],[78.29266,22.25123],[78.29343,22.25416],[78.28786,22.26355],[78.26724,22.26493],[78.26243,22.26348],[78.26259,22.26903],[78.25958,22.2741],[78.26031,22.27634],[78.25702,22.2852],[78.2596,22.30095],[78.25299,22.31185],[78.24524,22.31878],[78.24496,22.32057],[78.2493,22.32732],[78.25391,22.32764],[78.26349,22.33618],[78.26752,22.34321],[78.2799,22.35007],[78.2787,22.36133],[78.28016,22.36854],[78.27977,22.38692],[78.27764,22.39811],[78.27015,22.40209],[78.26629,22.39713],[78.26432,22.39692],[78.22261,22.39875],[78.21722,22.39675],[78.20625,22.39951],[78.1877,22.39866],[78.187,22.40033],[78.17754,22.39896],[78.1711,22.39678],[78.16297,22.39026],[78.15042,22.38893],[78.12795,22.37457],[78.1251,22.36928],[78.122,22.36719],[78.10063,22.36445],[78.08269,22.3536],[78.06672,22.3491],[78.0329,22.33],[78.01862,22.33643],[78.01406,22.33583],[78.01112,22.33778],[78.00778,22.33744],[77.99994,22.33282],[77.98853,22.33465],[77.98193,22.33172],[77.9779,22.33277],[77.97647,22.33542],[77.96314,22.33265],[77.95383,22.33273],[77.95412,22.33682],[77.95178,22.33949],[77.94659,22.34118],[77.94226,22.33734],[77.93909,22.33079],[77.92265,22.32444],[77.91683,22.31588],[77.90616,22.31068],[77.89665,22.30367],[77.88484,22.2874],[77.86548,22.28856],[77.86719,22.29749],[77.86221,22.30462],[77.86502,22.31446],[77.86467,22.31943],[77.86611,22.32113],[77.86357,22.33758],[77.86847,22.35077],[77.86443,22.36356],[77.86192,22.36616],[77.85845,22.36613],[77.85459,22.36909],[77.84969,22.3687],[77.84065,22.36278],[77.83727,22.35527],[77.82966,22.3533],[77.82556,22.34938],[77.80693,22.34695],[77.80777,22.33934],[77.78966,22.33536],[77.78173,22.33507],[77.77492,22.33691],[77.76976,22.34644],[77.7642,22.35023],[77.75349,22.35399],[77.7518,22.35143],[77.74742,22.3505],[77.74445,22.34739],[77.74681,22.34405],[77.75504,22.3412],[77.75658,22.33874],[77.75817,22.33173],[77.74982,22.32947],[77.74968,22.32594],[77.73764,22.32632],[77.72826,22.3169],[77.72044,22.31321],[77.71675,22.32157],[77.70235,22.32227],[77.69691,22.32067],[77.68333,22.32219],[77.68085,22.31725],[77.68227,22.31297],[77.6668,22.31154],[77.65528,22.30649],[77.65,22.31083],[77.64386,22.30997],[77.64175,22.3113],[77.63944,22.32167],[77.63798,22.32293],[77.63398,22.32347],[77.62653,22.32065],[77.62453,22.32144],[77.62296,22.3268],[77.62441,22.33267],[77.61644,22.33188],[77.60838,22.32891],[77.60411,22.33214],[77.59735,22.33218],[77.59598,22.33992],[77.59171,22.34353],[77.58488,22.34088],[77.56713,22.34037],[77.56036,22.3358],[77.55733,22.33604],[77.55465,22.33862],[77.55401,22.34217],[77.55609,22.35655],[77.5545,22.35808],[77.55176,22.3575],[77.54802,22.35417],[77.54425,22.34067],[77.53674,22.33536],[77.53233,22.33],[77.52622,22.33045],[77.52011,22.32648],[77.51442,22.31108],[77.50748,22.31197],[77.50304,22.29033],[77.50459,22.28426],[77.50742,22.28392],[77.50813,22.28085],[77.49922,22.27748],[77.49096,22.27205],[77.48694,22.27208],[77.48708,22.25757],[77.48195,22.25585],[77.47779,22.25063],[77.45823,22.24835],[77.45576,22.24183],[77.45872,22.23416],[77.45926,22.22423],[77.45243,22.2171],[77.44069,22.21621],[77.43067,22.21356],[77.42428,22.21568],[77.41665,22.2234],[77.41075,22.2244],[77.40386,22.22175],[77.38997,22.22303],[77.38145,22.21723],[77.39553,22.20311],[77.40263,22.19964],[77.40639,22.19207],[77.41161,22.19132],[77.41555,22.18017],[77.41971,22.17373],[77.42407,22.17092],[77.43765,22.17005],[77.44316,22.17197],[77.45076,22.17034],[77.46294,22.17101],[77.47292,22.16422],[77.47381,22.15956],[77.47043,22.15565],[77.46756,22.1485],[77.46767,22.13863],[77.46557,22.13256],[77.46736,22.12634],[77.47365,22.12175],[77.47485,22.11788],[77.46367,22.10808],[77.46366,22.09583],[77.46551,22.09197],[77.45984,22.08829],[77.45988,22.08328],[77.46113,22.08109],[77.46656,22.07946],[77.46975,22.08262],[77.48248,22.08078],[77.49345,22.07639],[77.51001,22.07563],[77.50838,22.07479],[77.50819,22.07049],[77.50313,22.05963],[77.50701,22.05347],[77.50432,22.03746],[77.50577,22.02996],[77.48293,22.02609],[77.46974,22.01932],[77.44819,22.02016],[77.44181,22.0187],[77.42661,22.02011],[77.40814,22.02549],[77.39648,22.02002],[77.3951,22.01652],[77.3954,21.99913],[77.38527,21.99518],[77.38093,21.99165],[77.37072,21.99266],[77.35828,21.99153],[77.35656,21.99049],[77.35443,21.98429],[77.34769,21.98227],[77.34134,21.97695],[77.32358,21.96925],[77.31658,21.9707],[77.30836,21.96895],[77.29831,21.96945],[77.29391,21.96861],[77.289,21.96531],[77.27638,21.96456],[77.27575,21.96245],[77.27214,21.96115],[77.27135,21.95541],[77.26672,21.94717],[77.26267,21.94583],[77.25863,21.94205],[77.25926,21.93506],[77.25,21.92514],[77.2496,21.91923],[77.24672,21.91376],[77.21856,21.90614],[77.21504,21.89808],[77.20889,21.89343],[77.20774,21.88999],[77.21116,21.88751],[77.21097,21.88395],[77.20202,21.87762],[77.20111,21.87516],[77.20283,21.87237],[77.21311,21.87103],[77.21237,21.86911],[77.2071,21.86589],[77.19457,21.8658],[77.19035,21.86404],[77.18409,21.86806],[77.17924,21.86876],[77.17857,21.87246],[77.16763,21.86996],[77.16626,21.86796],[77.16213,21.85609],[77.16384,21.84468],[77.16688,21.8417],[77.16633,21.82998],[77.16936,21.81922],[77.16918,21.8133],[77.17241,21.8088],[77.17598,21.80688],[77.19138,21.80677],[77.18569,21.79511],[77.19034,21.79172],[77.20141,21.79218],[77.20113,21.78981],[77.19648,21.7897],[77.18689,21.78536],[77.17091,21.78169],[77.16536,21.78393],[77.15014,21.77251],[77.15151,21.77592],[77.14593,21.77834],[77.14282,21.78545],[77.13962,21.7814],[77.12821,21.77634],[77.12164,21.77525],[77.11743,21.77969],[77.11276,21.78179],[77.11256,21.78524],[77.10046,21.78529],[77.09982,21.78233],[77.10675,21.78247],[77.10901,21.77768],[77.10529,21.77275],[77.09791,21.77152],[77.08516,21.77229],[77.07942,21.77026],[77.08036,21.7683],[77.07853,21.76049],[77.07427,21.75902],[77.07572,21.75471],[77.068,21.74979],[77.07837,21.7367],[77.07783,21.7299],[77.07493,21.72651],[77.06864,21.72651],[77.06839,21.73508],[77.06063,21.73492],[77.06217,21.71696],[77.06599,21.71258],[77.06992,21.71735],[77.07521,21.71985],[77.07922,21.71994],[77.08654,21.71442],[77.10796,21.71829],[77.1173,21.72149],[77.12957,21.72224],[77.13919,21.71981],[77.14772,21.71252],[77.16512,21.71074],[77.16964,21.71429],[77.1696,21.72225],[77.1721,21.72485],[77.17603,21.72575],[77.19145,21.72075],[77.1913,21.71261],[77.18813,21.70171],[77.19889,21.69778],[77.20313,21.69277],[77.21042,21.68965],[77.21288,21.69501],[77.21883,21.69395],[77.22078,21.69651],[77.22775,21.69953],[77.22691,21.71679],[77.2323,21.71498],[77.23554,21.71635],[77.24249,21.7147],[77.24438,21.71643],[77.25147,21.7128],[77.26188,21.71229],[77.26756,21.72504],[77.27188,21.72814],[77.27926,21.72406],[77.28722,21.72192],[77.29114,21.73285],[77.28422,21.7369],[77.28742,21.74414],[77.27995,21.74955],[77.28047,21.75858],[77.2903,21.76035],[77.29936,21.75596],[77.31579,21.75657],[77.32443,21.75274],[77.34568,21.75778],[77.35903,21.75415],[77.37305,21.75372],[77.3757,21.75492],[77.38124,21.75309],[77.40417,21.75242],[77.41707,21.75348],[77.42946,21.75771],[77.45629,21.76021],[77.46048,21.76342],[77.47871,21.77002],[77.48287,21.76739],[77.48259,21.76418],[77.47795,21.76283],[77.47974,21.75944],[77.47947,21.75415],[77.49051,21.74698],[77.49459,21.74834],[77.50245,21.74603],[77.50221,21.74342],[77.50454,21.73944],[77.5086,21.73821],[77.51196,21.7322],[77.51971,21.72524],[77.52555,21.72431],[77.5231,21.71972],[77.52402,21.71262],[77.52702,21.71091],[77.53322,21.71135],[77.5421,21.70614],[77.54767,21.69402],[77.55097,21.68078],[77.55386,21.67896],[77.5611,21.6673],[77.56417,21.64188],[77.5725,21.6287],[77.57552,21.62064],[77.57268,21.61598],[77.57545,21.58144],[77.57696,21.57729],[77.57464,21.57228],[77.57412,21.56469],[77.57711,21.55517],[77.58214,21.55378],[77.59529,21.55943],[77.60874,21.54819],[77.61148,21.53882],[77.59677,21.52711],[77.57523,21.52646],[77.54714,21.53672],[77.53722,21.53652],[77.5213,21.54097],[77.50519,21.55167],[77.47397,21.54952],[77.46619,21.55329],[77.45489,21.55384],[77.45412,21.54958],[77.45632,21.54623],[77.45009,21.54168],[77.44005,21.54478],[77.42556,21.53774],[77.42252,21.53256],[77.42231,21.51748],[77.42944,21.50471],[77.43539,21.49958],[77.44332,21.48725],[77.44219,21.48062],[77.43874,21.47865],[77.44147,21.47505],[77.44219,21.46991],[77.45982,21.46662],[77.46591,21.45982],[77.4736,21.45445],[77.47171,21.45029],[77.47435,21.44659],[77.47165,21.43613],[77.4766,21.43179],[77.47955,21.42025],[77.48751,21.40622],[77.48694,21.3859],[77.48987,21.37796],[77.48806,21.37436],[77.50221,21.37719],[77.51452,21.37594],[77.51671,21.38402],[77.51854,21.38392],[77.52329,21.38894],[77.52539,21.39565],[77.52473,21.40293],[77.52786,21.40563],[77.52924,21.4153],[77.53172,21.41915],[77.53591,21.4177],[77.54269,21.41115],[77.54829,21.41131],[77.54766,21.40532],[77.55344,21.4034],[77.56146,21.39646],[77.56324,21.39315],[77.56252,21.39041],[77.55967,21.39055],[77.55678,21.38364],[77.56281,21.37534],[77.5635,21.36931],[77.57114,21.36867],[77.57343,21.37093],[77.58528,21.36679],[77.58711,21.36284],[77.59332,21.3645]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"395","area_level":"District","area_name":"Bhind","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.7932,26.08271],[78.79409,26.0853],[78.79434,26.08548],[78.79459,26.08641],[78.79405,26.08672],[78.79427,26.08726],[78.79297,26.08801],[78.79345,26.0887],[78.79285,26.08905],[78.793,26.09044],[78.79104,26.09084],[78.79022,26.09126],[78.78929,26.0911],[78.78715,26.08766],[78.78639,26.0862],[78.78548,26.08551],[78.78511,26.08487],[78.78491,26.08406],[78.78508,26.08376],[78.78465,26.08208],[78.78783,26.08127],[78.78855,26.08183],[78.79024,26.08108],[78.79056,26.08138],[78.79139,26.08076],[78.79213,26.08197],[78.79287,26.0816],[78.7932,26.08271]]],[[[78.81235,26.14339],[78.8104,26.14426],[78.80934,26.14292],[78.80865,26.1423],[78.8069,26.14112],[78.8083,26.14026],[78.81152,26.13872],[78.81149,26.13806],[78.81256,26.13751],[78.81339,26.13597],[78.81374,26.13559],[78.81445,26.13524],[78.81739,26.13446],[78.81805,26.1338],[78.8187,26.13264],[78.81886,26.13254],[78.81918,26.13255],[78.81817,26.13454],[78.81769,26.13569],[78.81779,26.13652],[78.81736,26.137],[78.81663,26.13737],[78.81639,26.13768],[78.81635,26.13786],[78.81638,26.13819],[78.81655,26.13857],[78.81765,26.13965],[78.81894,26.14059],[78.81743,26.142],[78.81636,26.14318],[78.81597,26.14332],[78.81516,26.14329],[78.81377,26.1426],[78.81235,26.14339]]],[[[78.7298,26.79247],[78.72678,26.79575],[78.7221,26.79728],[78.71084,26.79238],[78.69841,26.79238],[78.68452,26.78875],[78.67739,26.77809],[78.67591,26.76757],[78.67015,26.76231],[78.66291,26.76243],[78.64683,26.76946],[78.6269,26.77293],[78.61931,26.76666],[78.61496,26.75392],[78.60682,26.75024],[78.59417,26.75242],[78.58161,26.74889],[78.57686,26.74897],[78.57173,26.75167],[78.56478,26.76113],[78.54523,26.76421],[78.5396,26.75729],[78.54309,26.75006],[78.54189,26.75162],[78.53888,26.75087],[78.53677,26.74128],[78.53428,26.73999],[78.53884,26.73711],[78.5377,26.73494],[78.53985,26.73466],[78.53909,26.73279],[78.53732,26.73222],[78.52557,26.73854],[78.51822,26.72578],[78.51338,26.72148],[78.52202,26.71067],[78.52486,26.71009],[78.52484,26.70686],[78.52251,26.70371],[78.5247,26.69912],[78.5227,26.69834],[78.52085,26.69396],[78.52563,26.69009],[78.5308,26.6896],[78.52237,26.68482],[78.52288,26.682],[78.52768,26.67836],[78.52689,26.67559],[78.522,26.67533],[78.51895,26.67933],[78.51506,26.68099],[78.51142,26.68629],[78.50831,26.6848],[78.50644,26.67769],[78.49447,26.66983],[78.48812,26.67081],[78.48725,26.67696],[78.48517,26.6787],[78.48288,26.67722],[78.48404,26.67246],[78.48255,26.67108],[78.47478,26.67902],[78.47124,26.67993],[78.46955,26.67913],[78.46802,26.67206],[78.46317,26.67411],[78.45964,26.67335],[78.45921,26.67106],[78.46367,26.66979],[78.46113,26.66326],[78.46347,26.65768],[78.46747,26.65413],[78.46781,26.64917],[78.46569,26.64861],[78.46195,26.65083],[78.45673,26.64658],[78.45003,26.64848],[78.44676,26.64546],[78.44087,26.64541],[78.44107,26.64119],[78.43502,26.63828],[78.43304,26.63106],[78.44074,26.62438],[78.43638,26.62128],[78.4358,26.62492],[78.43325,26.62546],[78.4262,26.61639],[78.42866,26.61291],[78.43406,26.6118],[78.42784,26.60835],[78.42266,26.60998],[78.42188,26.60215],[78.41545,26.60386],[78.41392,26.60155],[78.41479,26.59795],[78.42197,26.59457],[78.41902,26.59062],[78.41587,26.58907],[78.41079,26.58929],[78.40788,26.59672],[78.40207,26.60255],[78.38898,26.6019],[78.3799,26.60413],[78.37885,26.60269],[78.38025,26.59827],[78.3885,26.59736],[78.39136,26.59406],[78.38958,26.58675],[78.37836,26.58288],[78.37597,26.58381],[78.37464,26.58805],[78.36998,26.58789],[78.36677,26.58411],[78.36796,26.57351],[78.36694,26.57064],[78.36318,26.56931],[78.35435,26.5709],[78.35169,26.56647],[78.35118,26.56038],[78.34237,26.56078],[78.33839,26.55915],[78.34046,26.55199],[78.34428,26.55017],[78.34521,26.54768],[78.34442,26.54489],[78.3402,26.54383],[78.32619,26.55185],[78.31556,26.54932],[78.31089,26.55046],[78.30814,26.55411],[78.31045,26.56129],[78.30537,26.56791],[78.30248,26.5685],[78.30386,26.58286],[78.30585,26.58787],[78.29682,26.59038],[78.29426,26.57819],[78.2896,26.57091],[78.28616,26.57595],[78.28065,26.57647],[78.27944,26.57513],[78.28092,26.56569],[78.27327,26.5672],[78.27097,26.5658],[78.27106,26.5626],[78.27769,26.55912],[78.2779,26.55662],[78.27023,26.54539],[78.27054,26.5369],[78.26728,26.53327],[78.25996,26.53456],[78.25899,26.53697],[78.26038,26.5393],[78.25859,26.54079],[78.25034,26.53878],[78.24482,26.54471],[78.23894,26.54562],[78.23747,26.53925],[78.23167,26.53764],[78.22925,26.53286],[78.23273,26.52895],[78.23989,26.53213],[78.24212,26.53004],[78.24204,26.52706],[78.23615,26.5244],[78.22726,26.52637],[78.22267,26.53101],[78.21673,26.53138],[78.21303,26.52794],[78.21047,26.51926],[78.2213,26.51647],[78.22091,26.51353],[78.21879,26.51193],[78.22069,26.50799],[78.22314,26.5064],[78.22419,26.5012],[78.23074,26.49618],[78.22992,26.49464],[78.23419,26.49082],[78.23039,26.48126],[78.23932,26.47517],[78.24144,26.46351],[78.24709,26.46336],[78.24813,26.45906],[78.2528,26.45825],[78.25919,26.45892],[78.26073,26.46372],[78.26537,26.46395],[78.261,26.45309],[78.25835,26.45289],[78.25714,26.45006],[78.25846,26.4487],[78.25499,26.44198],[78.26949,26.43647],[78.27595,26.44405],[78.29133,26.43879],[78.28694,26.432],[78.28619,26.42206],[78.29448,26.41575],[78.29305,26.40466],[78.2818,26.38309],[78.27822,26.38194],[78.27671,26.37956],[78.27424,26.38103],[78.27217,26.37307],[78.2591,26.35889],[78.26464,26.35346],[78.26899,26.35306],[78.2675,26.34372],[78.26283,26.33797],[78.26443,26.33637],[78.27457,26.33633],[78.28156,26.3445],[78.28991,26.34698],[78.29089,26.34573],[78.29195,26.34691],[78.29067,26.34841],[78.2978,26.3457],[78.29763,26.34228],[78.29515,26.34065],[78.29528,26.33564],[78.29794,26.33787],[78.29892,26.33656],[78.30297,26.33818],[78.30269,26.34314],[78.3051,26.34341],[78.30493,26.34535],[78.30871,26.34305],[78.31683,26.34212],[78.3242,26.34705],[78.34405,26.34409],[78.34903,26.34047],[78.34817,26.33636],[78.35631,26.33622],[78.3581,26.33439],[78.36709,26.33948],[78.37447,26.33917],[78.37712,26.33743],[78.37729,26.33544],[78.3843,26.33306],[78.3963,26.33584],[78.40673,26.33055],[78.40749,26.33294],[78.41192,26.33108],[78.42106,26.33054],[78.419,26.32229],[78.41565,26.32043],[78.41424,26.31718],[78.41594,26.31355],[78.4126,26.29648],[78.42689,26.28504],[78.44179,26.27959],[78.44019,26.26024],[78.45545,26.25659],[78.4634,26.25856],[78.46679,26.25656],[78.46886,26.25019],[78.47192,26.24979],[78.47483,26.25348],[78.4772,26.26423],[78.4791,26.26663],[78.50011,26.26363],[78.49995,26.26],[78.50822,26.25556],[78.50378,26.24733],[78.50485,26.24449],[78.51543,26.24169],[78.51789,26.24253],[78.51879,26.23923],[78.52046,26.23928],[78.51743,26.22753],[78.52985,26.22449],[78.53049,26.22097],[78.53904,26.21874],[78.53971,26.21991],[78.54135,26.21833],[78.54071,26.21708],[78.54215,26.21633],[78.53809,26.20754],[78.54028,26.20327],[78.54561,26.19964],[78.55655,26.20313],[78.56483,26.20053],[78.56944,26.2044],[78.56857,26.20582],[78.57568,26.20825],[78.58245,26.21659],[78.59446,26.20984],[78.59466,26.20673],[78.60607,26.20424],[78.60735,26.2024],[78.6069,26.192],[78.60831,26.1915],[78.61266,26.19966],[78.61046,26.20627],[78.61244,26.20995],[78.61224,26.21721],[78.61907,26.21753],[78.61887,26.21262],[78.62086,26.21186],[78.61971,26.20667],[78.62686,26.20339],[78.62492,26.19723],[78.6224,26.16633],[78.62249,26.16312],[78.62701,26.15707],[78.63465,26.16431],[78.64758,26.16936],[78.65611,26.16995],[78.65962,26.16759],[78.6625,26.16956],[78.66583,26.16949],[78.66942,26.16768],[78.67631,26.17057],[78.6788,26.16966],[78.68274,26.1646],[78.69469,26.1631],[78.70291,26.17576],[78.70132,26.18174],[78.69661,26.18572],[78.69197,26.19288],[78.69431,26.19937],[78.69282,26.20103],[78.69457,26.2033],[78.69371,26.20436],[78.6967,26.20687],[78.69632,26.20887],[78.69838,26.21122],[78.69598,26.21268],[78.6959,26.21769],[78.70376,26.21697],[78.70831,26.22059],[78.7154,26.22118],[78.71826,26.22595],[78.72261,26.2238],[78.72757,26.22544],[78.72953,26.22783],[78.74075,26.22349],[78.74249,26.22799],[78.74071,26.22867],[78.74533,26.23314],[78.74974,26.2334],[78.75085,26.23577],[78.75354,26.23541],[78.75581,26.24367],[78.74432,26.24979],[78.74921,26.25828],[78.7554,26.26579],[78.76831,26.26461],[78.77548,26.27242],[78.78006,26.27196],[78.79059,26.29023],[78.79675,26.29063],[78.8015,26.2884],[78.81125,26.28973],[78.81749,26.2837],[78.82366,26.28428],[78.82766,26.2749],[78.8279,26.26259],[78.80913,26.25478],[78.80381,26.24867],[78.8009,26.23866],[78.80119,26.23259],[78.79716,26.23024],[78.79135,26.23109],[78.78964,26.228],[78.79004,26.22341],[78.80861,26.21389],[78.81336,26.20942],[78.81451,26.20661],[78.8135,26.20395],[78.81508,26.20225],[78.82014,26.20301],[78.82422,26.2058],[78.83544,26.20199],[78.83721,26.19723],[78.83376,26.1926],[78.82893,26.19314],[78.8264,26.18757],[78.81883,26.18429],[78.80793,26.18284],[78.80401,26.17895],[78.7988,26.16648],[78.80561,26.16322],[78.80799,26.16531],[78.81186,26.16383],[78.81242,26.162],[78.81497,26.16241],[78.81414,26.16046],[78.81613,26.16118],[78.81902,26.15127],[78.82273,26.14839],[78.8228,26.14258],[78.82682,26.13757],[78.82027,26.12865],[78.82224,26.12813],[78.82497,26.12264],[78.84483,26.11355],[78.8454,26.11191],[78.83988,26.09635],[78.83579,26.0915],[78.83314,26.09278],[78.83346,26.09786],[78.82817,26.10089],[78.82511,26.10068],[78.82179,26.09284],[78.80653,26.09485],[78.80012,26.08606],[78.80232,26.08352],[78.80177,26.08079],[78.8115,26.07615],[78.81012,26.07314],[78.8112,26.0724],[78.81208,26.07365],[78.82219,26.07062],[78.82977,26.07206],[78.83007,26.06876],[78.82688,26.0626],[78.82559,26.0632],[78.82303,26.06011],[78.81869,26.05938],[78.81483,26.05605],[78.80198,26.06155],[78.79704,26.05547],[78.79175,26.05591],[78.79035,26.05378],[78.81162,26.04905],[78.81749,26.04277],[78.81244,26.04032],[78.80974,26.04314],[78.80554,26.04159],[78.80519,26.04315],[78.80265,26.04244],[78.80272,26.04497],[78.80015,26.04272],[78.80157,26.0423],[78.80108,26.04019],[78.79783,26.03813],[78.78589,26.0434],[78.7838,26.03946],[78.78766,26.03575],[78.7882,26.03096],[78.78301,26.0244],[78.7741,26.02093],[78.77284,26.01802],[78.78244,26.01238],[78.78542,26.01328],[78.78693,26.01215],[78.78513,26.00976],[78.78603,26.00762],[78.78136,26.00664],[78.77787,26.00263],[78.77763,25.99897],[78.78357,25.99644],[78.78116,25.99476],[78.78675,25.98684],[78.78451,25.98137],[78.78152,25.97932],[78.77799,25.96931],[78.77973,25.96476],[78.78316,25.96217],[78.79152,25.96141],[78.79398,25.9625],[78.80141,25.95996],[78.79786,25.95784],[78.79656,25.95408],[78.79956,25.94994],[78.80186,25.94935],[78.80106,25.94639],[78.80419,25.944],[78.8173,25.94106],[78.8209,25.9465],[78.82158,25.95134],[78.84139,25.95048],[78.83762,25.93889],[78.84642,25.9368],[78.84628,25.93421],[78.85156,25.93066],[78.85371,25.92712],[78.85518,25.92315],[78.85298,25.91953],[78.85507,25.91733],[78.85916,25.91643],[78.8609,25.91114],[78.86508,25.90697],[78.87071,25.90638],[78.87613,25.90735],[78.87743,25.91208],[78.88336,25.90913],[78.88607,25.91534],[78.89859,25.91794],[78.90566,25.92562],[78.90576,25.92953],[78.90969,25.93153],[78.90825,25.9345],[78.91569,25.93797],[78.91671,25.94005],[78.92154,25.94065],[78.92748,25.94725],[78.93207,25.94745],[78.93609,25.94167],[78.93896,25.94269],[78.93885,25.94427],[78.93329,25.94818],[78.9371,25.95275],[78.93429,25.95314],[78.93484,25.95586],[78.9305,25.95893],[78.93484,25.96137],[78.93473,25.96442],[78.93761,25.96453],[78.93781,25.97377],[78.93494,25.97498],[78.93318,25.97933],[78.93611,25.98184],[78.94068,25.97851],[78.94354,25.97887],[78.95315,25.98906],[78.95298,25.991],[78.94932,25.99123],[78.9483,25.99319],[78.95554,25.99491],[78.95681,25.99654],[78.95606,25.99801],[78.95129,25.99852],[78.9466,26.00116],[78.94449,26.00628],[78.94821,26.00822],[78.94823,26.01051],[78.95351,26.01522],[78.94826,26.02775],[78.95302,26.02934],[78.95455,26.03338],[78.96039,26.03486],[78.9693,26.04563],[78.97389,26.04504],[78.97273,26.05028],[78.97655,26.05104],[78.9769,26.04794],[78.98015,26.04812],[78.98188,26.05161],[78.98614,26.05368],[78.9863,26.06043],[78.98943,26.06284],[78.99069,26.06883],[79.00275,26.06665],[79.00814,26.07542],[79.00841,26.08014],[79.01191,26.08267],[79.01257,26.08991],[79.00866,26.09321],[79.0021,26.09017],[78.99358,26.09371],[78.987,26.0995],[78.97559,26.1052],[78.97746,26.11114],[78.97683,26.11604],[78.96344,26.12216],[78.96237,26.12532],[78.95848,26.12797],[78.94887,26.12868],[78.95157,26.13432],[78.9629,26.13653],[78.96372,26.1404],[78.96565,26.14141],[78.96438,26.14846],[78.96696,26.15014],[78.97996,26.1511],[78.99426,26.1462],[78.99854,26.15001],[79.0049,26.14805],[79.00428,26.14982],[79.00823,26.1564],[79.00476,26.16263],[79.00614,26.16392],[79.00413,26.16638],[79.00529,26.16744],[79.00447,26.16922],[78.99955,26.16993],[78.99471,26.17291],[78.98661,26.18242],[78.98311,26.18436],[78.99367,26.19689],[78.99768,26.19849],[79.00688,26.19167],[79.02583,26.19177],[79.02009,26.19822],[79.02083,26.20021],[79.02783,26.20328],[79.02481,26.2084],[79.02582,26.2201],[79.01363,26.22551],[78.99655,26.22804],[78.98936,26.23498],[78.99169,26.23896],[78.9939,26.23874],[78.9968,26.24189],[79.0033,26.24437],[79.00957,26.24201],[79.01088,26.24468],[79.01944,26.24761],[79.03067,26.23929],[79.0346,26.22537],[79.03786,26.22733],[79.0471,26.22417],[79.05333,26.22804],[79.06344,26.2259],[79.06535,26.22977],[79.06243,26.2365],[79.0642,26.23883],[79.07094,26.24152],[79.06894,26.24317],[79.0697,26.2457],[79.06446,26.2493],[79.05712,26.24904],[79.05343,26.25082],[79.0521,26.2546],[79.04597,26.25645],[79.04564,26.26031],[79.05566,26.25886],[79.05693,26.26025],[79.05351,26.26269],[79.06184,26.27174],[79.06464,26.27704],[79.07453,26.27783],[79.07701,26.28062],[79.08069,26.27841],[79.08443,26.27969],[79.08361,26.27549],[79.08545,26.27622],[79.0857,26.27403],[79.08775,26.27331],[79.0869,26.27139],[79.09065,26.27003],[79.09107,26.27252],[79.09652,26.27849],[79.08989,26.28772],[79.09708,26.29453],[79.0979,26.30093],[79.10193,26.30682],[79.10952,26.30652],[79.11331,26.30464],[79.11368,26.30195],[79.11742,26.29891],[79.11874,26.30104],[79.11753,26.30517],[79.1249,26.31159],[79.11983,26.31258],[79.11625,26.31665],[79.11553,26.32048],[79.12492,26.32241],[79.12515,26.32704],[79.12742,26.32186],[79.13497,26.32474],[79.13219,26.33341],[79.13263,26.33532],[79.13722,26.33551],[79.13883,26.33751],[79.13748,26.3385],[79.13413,26.33914],[79.13189,26.33724],[79.12844,26.33888],[79.12711,26.34308],[79.12046,26.34831],[79.1163,26.3483],[79.11568,26.34999],[79.11427,26.3488],[79.11085,26.34961],[79.11095,26.35156],[79.10926,26.35213],[79.10758,26.34963],[79.10475,26.34946],[79.10309,26.35319],[79.09809,26.35555],[79.09387,26.35393],[79.08907,26.35463],[79.08417,26.35927],[79.08731,26.36843],[79.09135,26.37113],[79.09479,26.36967],[79.09637,26.37232],[79.0954,26.37373],[79.09692,26.37549],[79.0943,26.37615],[79.09684,26.381],[79.09639,26.38305],[79.089,26.39663],[79.09187,26.40595],[79.09438,26.40833],[79.09609,26.40798],[79.09435,26.41085],[79.09521,26.41264],[79.0995,26.41201],[79.10025,26.40817],[79.10469,26.40638],[79.12598,26.41125],[79.12528,26.41238],[79.1237,26.41156],[79.12432,26.42261],[79.12828,26.43142],[79.13518,26.44013],[79.12928,26.44047],[79.12703,26.44296],[79.12301,26.44406],[79.1219,26.44705],[79.11801,26.44558],[79.10788,26.44814],[79.09972,26.45259],[79.09607,26.44999],[79.09722,26.44479],[79.0959,26.44259],[79.08784,26.44618],[79.08381,26.44146],[79.08172,26.44297],[79.08132,26.44123],[79.07879,26.44036],[79.07701,26.44214],[79.06989,26.44162],[79.06755,26.4441],[79.06807,26.44598],[79.06382,26.44871],[79.06215,26.45384],[79.0573,26.45249],[79.05262,26.45374],[79.05779,26.46235],[79.0616,26.46532],[79.0717,26.47887],[79.0678,26.4846],[79.06813,26.49662],[79.05632,26.49509],[79.0538,26.50254],[79.04493,26.5103],[79.04862,26.518],[79.0462,26.51821],[79.04183,26.51457],[79.03966,26.51511],[79.0383,26.51845],[79.03981,26.52986],[79.0266,26.53571],[79.02915,26.54317],[79.02834,26.54669],[79.02638,26.54679],[79.01887,26.54095],[79.01712,26.54149],[79.01457,26.54619],[79.00992,26.54322],[79.00774,26.54387],[79.00702,26.54859],[79.01269,26.54912],[79.01434,26.55105],[79.00628,26.55937],[79.00724,26.56546],[79.00069,26.57798],[78.99107,26.57701],[78.98978,26.57845],[78.99004,26.58465],[78.98759,26.58632],[78.98748,26.59283],[78.98914,26.59556],[78.99205,26.59406],[78.99808,26.59763],[79.01706,26.60104],[79.00803,26.62356],[78.99346,26.64191],[79.00863,26.66331],[79.00908,26.66726],[79.00705,26.67131],[78.99778,26.67664],[78.98334,26.67688],[78.9711,26.67145],[78.9572,26.65766],[78.94929,26.65454],[78.94549,26.65482],[78.94298,26.65669],[78.94248,26.66407],[78.94887,26.67492],[78.95772,26.68306],[78.9586,26.68733],[78.95606,26.69168],[78.93438,26.69757],[78.92419,26.70343],[78.91256,26.70683],[78.90683,26.7065],[78.90007,26.70054],[78.88918,26.69696],[78.87236,26.69779],[78.85848,26.70928],[78.84319,26.7283],[78.83194,26.73941],[78.82243,26.75725],[78.81899,26.76094],[78.81239,26.76335],[78.78512,26.75918],[78.77102,26.75908],[78.76674,26.76332],[78.76129,26.78075],[78.75827,26.78452],[78.7536,26.78701],[78.74692,26.78667],[78.73978,26.77694],[78.73621,26.77468],[78.72719,26.77647],[78.72565,26.77905],[78.7298,26.79247]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"396","area_level":"District","area_name":"Bhopal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.29538,23.89487],[77.29365,23.89535],[77.29086,23.89181],[77.27835,23.88638],[77.2542,23.88852],[77.24874,23.8928],[77.24013,23.8907],[77.22639,23.89287],[77.22114,23.86223],[77.22453,23.84783],[77.21399,23.84023],[77.22339,23.83367],[77.2251,23.82477],[77.22377,23.81305],[77.21483,23.80169],[77.2146,23.79587],[77.21764,23.79098],[77.2173,23.7857],[77.2153,23.78181],[77.20821,23.7779],[77.2062,23.77496],[77.20359,23.75886],[77.19125,23.74071],[77.187,23.72607],[77.18631,23.71763],[77.17759,23.69872],[77.17672,23.69321],[77.16876,23.68754],[77.16572,23.68328],[77.16976,23.67891],[77.16907,23.67591],[77.16666,23.67455],[77.17169,23.67314],[77.17082,23.67097],[77.17364,23.66689],[77.17349,23.66003],[77.17611,23.66025],[77.17589,23.66456],[77.17809,23.66931],[77.18659,23.66665],[77.18801,23.66282],[77.19033,23.66142],[77.19131,23.6555],[77.20006,23.64841],[77.20455,23.65363],[77.20307,23.65397],[77.20571,23.66045],[77.21438,23.66062],[77.2205,23.65507],[77.22563,23.65345],[77.22647,23.64509],[77.22938,23.6386],[77.22196,23.62296],[77.2307,23.61394],[77.23919,23.61489],[77.249,23.6138],[77.26554,23.60223],[77.27759,23.59977],[77.27445,23.59436],[77.27276,23.59419],[77.27365,23.58133],[77.28528,23.58013],[77.29569,23.57411],[77.29167,23.56592],[77.28329,23.55768],[77.28357,23.55365],[77.28239,23.55359],[77.28898,23.54436],[77.28719,23.54109],[77.29134,23.53979],[77.29147,23.53438],[77.2887,23.52949],[77.29051,23.5203],[77.2886,23.51028],[77.29576,23.50856],[77.29765,23.50182],[77.29401,23.49495],[77.28923,23.49251],[77.28706,23.48721],[77.28352,23.48736],[77.28397,23.47126],[77.29814,23.46785],[77.29306,23.46326],[77.29152,23.45478],[77.28727,23.45221],[77.28338,23.44132],[77.28464,23.43143],[77.28819,23.42826],[77.28819,23.42624],[77.28102,23.42107],[77.2826,23.41922],[77.28169,23.41693],[77.26836,23.39983],[77.24901,23.40533],[77.24621,23.40447],[77.2439,23.40143],[77.23366,23.40363],[77.23374,23.39553],[77.22757,23.39061],[77.235,23.38924],[77.24094,23.39094],[77.24583,23.38588],[77.24968,23.38552],[77.25335,23.37749],[77.24683,23.37432],[77.24247,23.37614],[77.2402,23.3728],[77.23455,23.37019],[77.23457,23.3636],[77.22455,23.35544],[77.22179,23.35073],[77.22366,23.34517],[77.21756,23.32978],[77.21757,23.3205],[77.2055,23.31834],[77.20454,23.32234],[77.20013,23.32624],[77.19631,23.33905],[77.19748,23.3464],[77.19315,23.35246],[77.18452,23.35174],[77.18129,23.35349],[77.17676,23.3497],[77.17505,23.34468],[77.17508,23.33315],[77.17696,23.3252],[77.16876,23.31597],[77.17174,23.30879],[77.16966,23.30213],[77.18375,23.30142],[77.18725,23.29213],[77.19433,23.29446],[77.1992,23.29215],[77.20362,23.29289],[77.2051,23.29105],[77.21153,23.29108],[77.21327,23.2902],[77.21466,23.28533],[77.21033,23.27981],[77.21265,23.27642],[77.21204,23.27076],[77.21027,23.26909],[77.20603,23.26971],[77.20317,23.26526],[77.20288,23.25616],[77.20628,23.24827],[77.18942,23.24168],[77.18619,23.2326],[77.17635,23.22909],[77.17611,23.2271],[77.17771,23.22154],[77.18346,23.21222],[77.19201,23.21229],[77.19783,23.21438],[77.19662,23.21588],[77.20929,23.21994],[77.2096,23.21819],[77.20683,23.21723],[77.20672,23.21165],[77.21446,23.20813],[77.21393,23.20516],[77.21125,23.20017],[77.2033,23.19486],[77.20307,23.19248],[77.22804,23.18786],[77.22572,23.17873],[77.22176,23.17471],[77.23159,23.17186],[77.23104,23.16372],[77.23741,23.15876],[77.23786,23.15021],[77.24438,23.15158],[77.24759,23.14977],[77.24831,23.14349],[77.24689,23.13429],[77.26048,23.13287],[77.2669,23.12988],[77.27153,23.12446],[77.27176,23.11633],[77.27483,23.11154],[77.27618,23.10405],[77.27121,23.09403],[77.28105,23.09387],[77.29593,23.10109],[77.31581,23.09975],[77.32143,23.10072],[77.31946,23.08966],[77.32159,23.08535],[77.33732,23.0795],[77.35941,23.08073],[77.36703,23.07668],[77.37465,23.07689],[77.37943,23.0725],[77.39963,23.07741],[77.40218,23.07905],[77.40204,23.08479],[77.40807,23.08178],[77.41137,23.08182],[77.41456,23.08534],[77.42788,23.08749],[77.43074,23.08935],[77.43371,23.08693],[77.43739,23.08791],[77.44489,23.08587],[77.44735,23.08789],[77.45112,23.08797],[77.45351,23.08632],[77.45777,23.09508],[77.46376,23.09492],[77.46514,23.09355],[77.4724,23.09932],[77.47393,23.09757],[77.47369,23.09388],[77.47952,23.09438],[77.4825,23.09296],[77.484,23.09366],[77.48184,23.09565],[77.48235,23.09703],[77.48719,23.09695],[77.48887,23.09517],[77.49404,23.10054],[77.4982,23.09897],[77.50111,23.09967],[77.5007,23.10396],[77.506,23.10663],[77.50641,23.111],[77.51142,23.11202],[77.50971,23.11678],[77.51265,23.11747],[77.51475,23.12073],[77.51606,23.12034],[77.51529,23.11696],[77.51641,23.11624],[77.52273,23.118],[77.52429,23.11616],[77.53089,23.11913],[77.5346,23.11887],[77.53536,23.12133],[77.53311,23.12257],[77.53304,23.12563],[77.53737,23.13001],[77.53764,23.13443],[77.54319,23.1347],[77.54412,23.13793],[77.5466,23.1383],[77.56136,23.13758],[77.56614,23.15247],[77.56607,23.15729],[77.56409,23.15729],[77.56273,23.15516],[77.56056,23.15642],[77.56181,23.1635],[77.55811,23.16552],[77.5582,23.17492],[77.57909,23.17908],[77.58149,23.1864],[77.57907,23.18668],[77.57909,23.18532],[77.57249,23.18683],[77.57316,23.19625],[77.5791,23.19508],[77.58712,23.21175],[77.58624,23.21256],[77.58905,23.21574],[77.58943,23.21995],[77.59422,23.22248],[77.59484,23.22484],[77.59189,23.2269],[77.59087,23.24047],[77.58801,23.24294],[77.58603,23.24945],[77.59518,23.25636],[77.58733,23.26692],[77.58342,23.26816],[77.58216,23.27209],[77.58701,23.27788],[77.58844,23.28325],[77.58586,23.28791],[77.58922,23.2932],[77.59744,23.29918],[77.60535,23.3094],[77.62124,23.31634],[77.62583,23.31508],[77.62758,23.31841],[77.61915,23.32899],[77.62695,23.33953],[77.62337,23.345],[77.58091,23.34137],[77.58162,23.35017],[77.58316,23.35229],[77.58032,23.35187],[77.58086,23.35685],[77.57564,23.35673],[77.56414,23.36214],[77.56228,23.36637],[77.55521,23.37269],[77.55687,23.37712],[77.55872,23.37721],[77.55786,23.37881],[77.5566,23.37811],[77.55619,23.37927],[77.55221,23.3765],[77.54704,23.3786],[77.54803,23.39422],[77.55139,23.39725],[77.55761,23.39836],[77.55962,23.4016],[77.55775,23.40495],[77.55912,23.40935],[77.55488,23.41573],[77.53485,23.41813],[77.51725,23.41471],[77.51109,23.40191],[77.50774,23.40319],[77.50445,23.4079],[77.50157,23.40826],[77.50187,23.41388],[77.48933,23.4166],[77.4913,23.42731],[77.49574,23.43718],[77.49318,23.44731],[77.49758,23.45123],[77.49714,23.45698],[77.50066,23.46285],[77.5018,23.47184],[77.5049,23.47559],[77.50117,23.48324],[77.51158,23.49234],[77.51231,23.49905],[77.51579,23.50658],[77.5182,23.50739],[77.51795,23.51371],[77.51131,23.51787],[77.51168,23.52211],[77.50853,23.52219],[77.50538,23.52481],[77.50442,23.54493],[77.50696,23.54947],[77.51083,23.54936],[77.51091,23.55093],[77.50581,23.56714],[77.51557,23.57669],[77.52437,23.57524],[77.52848,23.58041],[77.53514,23.58069],[77.54587,23.58974],[77.55106,23.58746],[77.55649,23.59322],[77.56245,23.6039],[77.55858,23.61228],[77.5654,23.61022],[77.56605,23.61227],[77.56428,23.61362],[77.56842,23.62192],[77.56698,23.62407],[77.57104,23.62941],[77.57088,23.63391],[77.57421,23.63736],[77.56998,23.64414],[77.5731,23.64484],[77.5737,23.64771],[77.587,23.65003],[77.58568,23.65207],[77.58895,23.65218],[77.59008,23.65594],[77.60662,23.65943],[77.6111,23.65834],[77.61991,23.65943],[77.62364,23.6573],[77.62979,23.65796],[77.63235,23.6668],[77.64108,23.67859],[77.64441,23.68745],[77.64846,23.69282],[77.64701,23.70167],[77.64814,23.71226],[77.64355,23.71235],[77.6398,23.70733],[77.63503,23.71411],[77.63193,23.71291],[77.62844,23.70835],[77.62176,23.71097],[77.61833,23.7106],[77.61523,23.71279],[77.61666,23.72463],[77.60348,23.72774],[77.60107,23.7266],[77.60217,23.73266],[77.60074,23.73375],[77.60664,23.7328],[77.61016,23.74702],[77.59124,23.75107],[77.58919,23.75421],[77.58222,23.75667],[77.58045,23.76047],[77.57657,23.76065],[77.57553,23.76568],[77.57343,23.76686],[77.56268,23.76564],[77.5629,23.76002],[77.55475,23.75501],[77.54635,23.75729],[77.54113,23.75519],[77.53534,23.75943],[77.52804,23.75911],[77.52581,23.76259],[77.51585,23.76162],[77.51046,23.76556],[77.50659,23.77254],[77.49973,23.77542],[77.49512,23.77008],[77.49181,23.76943],[77.49044,23.76678],[77.48176,23.76425],[77.4746,23.75645],[77.4676,23.75597],[77.45409,23.76122],[77.45441,23.77191],[77.44589,23.77821],[77.4373,23.7744],[77.43792,23.77608],[77.4354,23.77537],[77.43395,23.78025],[77.4367,23.78821],[77.44639,23.7914],[77.44513,23.79484],[77.4389,23.79482],[77.42931,23.80045],[77.42712,23.8034],[77.41647,23.80226],[77.41511,23.79972],[77.40958,23.80787],[77.40508,23.8206],[77.40729,23.8271],[77.40133,23.82533],[77.40109,23.8288],[77.39914,23.82769],[77.39431,23.82894],[77.38917,23.83351],[77.39101,23.83592],[77.38922,23.83762],[77.39322,23.8396],[77.39656,23.83672],[77.39941,23.83641],[77.40148,23.84733],[77.39566,23.85281],[77.38891,23.85585],[77.38352,23.86161],[77.37883,23.87299],[77.37718,23.88407],[77.34293,23.891],[77.33508,23.89059],[77.33282,23.89247],[77.32652,23.89272],[77.31966,23.89019],[77.31615,23.89167],[77.31794,23.88435],[77.31256,23.88844],[77.30078,23.89005],[77.29906,23.89325],[77.29538,23.89487]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"397","area_level":"District","area_name":"Burhanpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.40824,21.59864],[76.37708,21.59804],[76.37225,21.59371],[76.37174,21.58503],[76.3745,21.58062],[76.37049,21.57906],[76.35919,21.58037],[76.35893,21.57277],[76.36496,21.57264],[76.35255,21.56688],[76.31313,21.56993],[76.29315,21.57647],[76.29041,21.58076],[76.29292,21.58792],[76.29562,21.59101],[76.29505,21.59616],[76.28555,21.59545],[76.28895,21.59018],[76.2864,21.58498],[76.27115,21.58363],[76.26629,21.58552],[76.26029,21.5852],[76.25075,21.58191],[76.2444,21.58246],[76.23594,21.57598],[76.22732,21.57357],[76.2217,21.57402],[76.21266,21.57098],[76.21443,21.56391],[76.21312,21.56168],[76.20404,21.55907],[76.19665,21.56053],[76.19585,21.558],[76.19835,21.55257],[76.19769,21.55044],[76.19276,21.55001],[76.17678,21.54169],[76.16495,21.54787],[76.15483,21.54819],[76.15285,21.55431],[76.14744,21.55918],[76.14586,21.56345],[76.15011,21.57848],[76.13879,21.57542],[76.13898,21.57213],[76.14472,21.57031],[76.13885,21.56696],[76.1386,21.56204],[76.13574,21.56083],[76.13413,21.56254],[76.12645,21.56174],[76.13048,21.56565],[76.12654,21.57008],[76.12007,21.56902],[76.11781,21.57109],[76.11501,21.57092],[76.11248,21.57802],[76.10142,21.57492],[76.06843,21.57029],[76.06147,21.57326],[76.04968,21.56438],[76.03767,21.5607],[76.02308,21.54929],[76.02054,21.54891],[76.01756,21.55305],[76.01331,21.55275],[76.00776,21.55499],[76.00776,21.55359],[75.96384,21.55462],[75.9522,21.55207],[75.95007,21.54791],[75.94877,21.51764],[75.95054,21.5094],[75.94804,21.49005],[75.9541,21.48745],[75.9581,21.48911],[75.96242,21.48438],[75.96961,21.48527],[75.9708,21.48778],[75.97564,21.49027],[75.97839,21.48689],[75.98921,21.48914],[76.00686,21.47276],[76.00872,21.46547],[76.00946,21.46167],[76.00337,21.45071],[76.00815,21.41791],[76.00022,21.39679],[75.98663,21.36877],[76.0305,21.36533],[76.04898,21.34972],[76.0966,21.37177],[76.11668,21.33495],[76.11894,21.32597],[76.12147,21.32337],[76.1259,21.29852],[76.12974,21.2867],[76.14293,21.28623],[76.14663,21.26787],[76.15023,21.26862],[76.15193,21.26446],[76.154,21.26513],[76.15475,21.2572],[76.15612,21.25941],[76.15833,21.25893],[76.15941,21.25359],[76.15686,21.25116],[76.15387,21.25193],[76.155,21.24967],[76.15226,21.24846],[76.15358,21.24622],[76.15061,21.2464],[76.15143,21.24353],[76.1454,21.24365],[76.14156,21.24099],[76.14204,21.22816],[76.16566,21.22162],[76.15864,21.21359],[76.16326,21.21313],[76.16334,21.20651],[76.1697,21.20665],[76.1697,21.20541],[76.17192,21.2053],[76.17161,21.19896],[76.16629,21.19972],[76.16521,21.19047],[76.17306,21.18857],[76.1764,21.184],[76.17146,21.17954],[76.17169,21.16656],[76.16798,21.16638],[76.16629,21.16951],[76.13386,21.16941],[76.13333,21.17596],[76.12926,21.17582],[76.12379,21.17182],[76.12283,21.17312],[76.11888,21.17159],[76.1138,21.16616],[76.11184,21.16698],[76.11136,21.16155],[76.11348,21.15539],[76.11539,21.154],[76.12006,21.15547],[76.12863,21.15246],[76.133,21.14823],[76.1347,21.14266],[76.14247,21.13515],[76.14101,21.12971],[76.13715,21.13189],[76.13541,21.12921],[76.13163,21.1328],[76.13232,21.12744],[76.13793,21.11985],[76.15382,21.10805],[76.15862,21.1094],[76.16348,21.10488],[76.17089,21.10393],[76.17044,21.09388],[76.17385,21.08968],[76.16843,21.08567],[76.1674,21.07948],[76.18064,21.08031],[76.18589,21.08488],[76.19248,21.0867],[76.20463,21.08539],[76.21181,21.08738],[76.22466,21.08498],[76.23058,21.08833],[76.24497,21.09044],[76.26038,21.09058],[76.27263,21.08874],[76.28013,21.07069],[76.29985,21.07384],[76.33858,21.07152],[76.35142,21.07699],[76.36631,21.07606],[76.37096,21.07273],[76.37477,21.07255],[76.38424,21.07629],[76.38243,21.07962],[76.39033,21.08577],[76.40422,21.08744],[76.40794,21.08941],[76.41319,21.08842],[76.41262,21.09773],[76.4107,21.10244],[76.43017,21.10241],[76.43783,21.10047],[76.44105,21.1062],[76.45609,21.1084],[76.45537,21.11509],[76.45176,21.12125],[76.45642,21.12501],[76.45814,21.13328],[76.46945,21.13366],[76.47439,21.13698],[76.46823,21.13835],[76.46655,21.14266],[76.47873,21.14739],[76.48066,21.18216],[76.49317,21.19386],[76.4979,21.19128],[76.49878,21.19375],[76.5026,21.19321],[76.50096,21.18977],[76.50254,21.18746],[76.5072,21.18872],[76.50833,21.19303],[76.51102,21.18979],[76.53026,21.18193],[76.53578,21.18623],[76.55177,21.19207],[76.56069,21.19862],[76.56726,21.19939],[76.59955,21.19075],[76.60603,21.19034],[76.61388,21.19322],[76.62349,21.18504],[76.63722,21.20271],[76.63427,21.21368],[76.63481,21.2191],[76.64183,21.23713],[76.64968,21.24468],[76.66164,21.24071],[76.6629,21.27596],[76.66269,21.28068],[76.65482,21.28976],[76.65349,21.29352],[76.64738,21.30165],[76.64563,21.30108],[76.62175,21.33229],[76.68282,21.37841],[76.7262,21.40474],[76.73951,21.41056],[76.74095,21.41288],[76.73958,21.41413],[76.74054,21.41757],[76.73793,21.4222],[76.74102,21.42818],[76.73839,21.42969],[76.74443,21.43987],[76.75496,21.44557],[76.76181,21.4523],[76.78128,21.45934],[76.78603,21.46582],[76.78785,21.47749],[76.79138,21.48008],[76.79377,21.47965],[76.79561,21.48958],[76.78767,21.49759],[76.78776,21.50114],[76.78421,21.50128],[76.78073,21.50559],[76.7729,21.50572],[76.76344,21.52077],[76.76881,21.52657],[76.78137,21.5293],[76.78933,21.53638],[76.7891,21.54067],[76.78244,21.54931],[76.78148,21.55888],[76.76503,21.55472],[76.75179,21.55618],[76.74494,21.56571],[76.74522,21.57476],[76.72891,21.57242],[76.71301,21.56657],[76.71098,21.5671],[76.71002,21.55992],[76.68483,21.56753],[76.66356,21.56479],[76.65627,21.56194],[76.65342,21.5643],[76.64847,21.56422],[76.63812,21.56826],[76.62961,21.56467],[76.62524,21.56582],[76.6213,21.57128],[76.61823,21.57292],[76.61154,21.57333],[76.59976,21.56913],[76.59302,21.57038],[76.58607,21.56524],[76.5809,21.56447],[76.5596,21.56543],[76.55405,21.56759],[76.53748,21.56347],[76.51284,21.5613],[76.50192,21.56469],[76.4932,21.57224],[76.48645,21.57405],[76.48544,21.5779],[76.46468,21.58138],[76.46222,21.57777],[76.45187,21.58212],[76.44903,21.58754],[76.44616,21.58792],[76.44011,21.59449],[76.43552,21.59701],[76.43399,21.58947],[76.42765,21.58315],[76.41943,21.58954],[76.41877,21.59653],[76.40824,21.59864]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"398","area_level":"District","area_name":"Chhatarpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.41927,25.13195],[79.42552,25.13015],[79.42689,25.12583],[79.42613,25.11906],[79.42119,25.11518],[79.41996,25.11106],[79.41439,25.10942],[79.41155,25.11018],[79.40574,25.10636],[79.39308,25.11694],[79.39601,25.12836],[79.38757,25.13031],[79.3907,25.14128],[79.38395,25.14271],[79.3896,25.16545],[79.39225,25.16905],[79.3899,25.17011],[79.39337,25.17318],[79.40307,25.17638],[79.41163,25.1827],[79.41151,25.19059],[79.40836,25.19469],[79.4123,25.19831],[79.41208,25.20032],[79.42172,25.20033],[79.43737,25.19682],[79.44037,25.19882],[79.44883,25.21507],[79.43568,25.21684],[79.43372,25.21763],[79.43266,25.22064],[79.44653,25.2442],[79.45057,25.24379],[79.45351,25.24822],[79.45609,25.2475],[79.46214,25.25627],[79.46246,25.26467],[79.47567,25.26099],[79.47635,25.26508],[79.49307,25.26206],[79.49446,25.26691],[79.48192,25.26854],[79.48154,25.27082],[79.47845,25.27301],[79.4793,25.27843],[79.46722,25.2833],[79.46651,25.27975],[79.46116,25.28252],[79.45858,25.27978],[79.46024,25.27407],[79.46292,25.27221],[79.46227,25.27106],[79.45743,25.26852],[79.45538,25.26905],[79.45013,25.26307],[79.44484,25.25916],[79.4405,25.25807],[79.43745,25.25488],[79.4259,25.25354],[79.40881,25.25609],[79.40678,25.25806],[79.4085,25.26163],[79.40761,25.27392],[79.39457,25.28275],[79.39205,25.27957],[79.38903,25.27958],[79.38665,25.28152],[79.38754,25.28582],[79.36859,25.29246],[79.36734,25.28121],[79.36995,25.2798],[79.37021,25.27651],[79.37307,25.27503],[79.3725,25.27299],[79.37389,25.2725],[79.37021,25.26553],[79.36982,25.25999],[79.3629,25.2617],[79.35528,25.2659],[79.35478,25.26884],[79.35856,25.27679],[79.35661,25.27853],[79.35831,25.28424],[79.35193,25.28334],[79.33615,25.2881],[79.34096,25.29955],[79.34658,25.30508],[79.34136,25.30762],[79.342,25.3105],[79.33965,25.31128],[79.34133,25.31893],[79.34467,25.32301],[79.34697,25.32199],[79.35223,25.32988],[79.34444,25.33232],[79.34209,25.329],[79.33905,25.32922],[79.33097,25.33184],[79.32654,25.33525],[79.30842,25.33401],[79.29989,25.33763],[79.29831,25.33287],[79.29916,25.32878],[79.29497,25.32303],[79.28806,25.32472],[79.28335,25.32302],[79.2789,25.32399],[79.27833,25.32015],[79.2699,25.30833],[79.26753,25.28462],[79.26282,25.27339],[79.26447,25.26895],[79.26952,25.26332],[79.27354,25.26061],[79.27532,25.26327],[79.28268,25.26216],[79.28927,25.27278],[79.28783,25.2737],[79.29008,25.28041],[79.29379,25.28358],[79.30291,25.27429],[79.30336,25.26963],[79.30991,25.26262],[79.31039,25.25989],[79.31652,25.25596],[79.32701,25.25579],[79.32959,25.25761],[79.33521,25.2698],[79.33818,25.26802],[79.34335,25.26896],[79.35086,25.26392],[79.34468,25.25],[79.34534,25.23473],[79.34358,25.22706],[79.33908,25.22661],[79.33451,25.22959],[79.33276,25.22828],[79.33607,25.223],[79.34452,25.21726],[79.34772,25.21308],[79.35189,25.21216],[79.34925,25.20654],[79.33836,25.19796],[79.32821,25.20986],[79.32938,25.21146],[79.32779,25.21342],[79.32853,25.22132],[79.32473,25.21851],[79.30899,25.22368],[79.30687,25.22492],[79.30816,25.23194],[79.30522,25.23246],[79.29919,25.23993],[79.2939,25.24033],[79.28499,25.24593],[79.27925,25.24473],[79.28355,25.23798],[79.28596,25.22764],[79.28543,25.22028],[79.28182,25.20891],[79.28344,25.1941],[79.28462,25.19119],[79.29226,25.18417],[79.29891,25.19146],[79.30143,25.20143],[79.30851,25.19829],[79.31005,25.18188],[79.30869,25.17899],[79.30437,25.17823],[79.31045,25.17213],[79.31363,25.16188],[79.32529,25.14699],[79.33034,25.13744],[79.33491,25.12125],[79.33339,25.11891],[79.3382,25.1043],[79.33706,25.09544],[79.34124,25.08283],[79.34116,25.07533],[79.3388,25.06937],[79.33984,25.068],[79.33217,25.05559],[79.32873,25.03472],[79.33331,25.02634],[79.33435,25.02033],[79.33149,25.00341],[79.33227,24.98942],[79.33957,24.98124],[79.34099,24.97691],[79.34004,24.96705],[79.33587,24.95312],[79.3416,24.93662],[79.33933,24.92648],[79.34579,24.90931],[79.3458,24.89962],[79.34217,24.89074],[79.34304,24.88576],[79.33872,24.88028],[79.33557,24.87114],[79.32162,24.85447],[79.31874,24.84868],[79.31767,24.83598],[79.30471,24.79789],[79.30596,24.78648],[79.31275,24.77789],[79.31703,24.76925],[79.32016,24.75145],[79.31672,24.74402],[79.31984,24.73661],[79.30263,24.71091],[79.30459,24.69551],[79.30395,24.68843],[79.3,24.68174],[79.29028,24.67265],[79.27281,24.66439],[79.25801,24.66368],[79.24256,24.65761],[79.22532,24.66548],[79.21828,24.66291],[79.21331,24.6578],[79.20658,24.6428],[79.20708,24.62223],[79.19539,24.6129],[79.17655,24.61003],[79.15677,24.61671],[79.14243,24.62543],[79.11768,24.62792],[79.10298,24.62666],[79.09102,24.63328],[79.08761,24.63256],[79.07937,24.62673],[79.0718,24.62601],[79.06361,24.62185],[79.05954,24.61307],[79.07063,24.59858],[79.07072,24.59432],[79.06206,24.58617],[79.05492,24.57248],[79.04575,24.56542],[79.04199,24.55574],[79.02893,24.54726],[79.02319,24.54628],[79.01477,24.52919],[79.01425,24.51252],[79.00723,24.50558],[79.00675,24.50042],[79.00953,24.49502],[79.00609,24.48872],[78.9986,24.48084],[78.99208,24.46321],[78.98632,24.4536],[78.98596,24.43995],[78.99365,24.42275],[78.99123,24.41759],[78.99287,24.41265],[78.99696,24.41105],[78.99421,24.40732],[78.99529,24.40097],[78.99932,24.39836],[78.99816,24.39636],[79.00079,24.39303],[79.00464,24.39325],[79.00775,24.39079],[79.00407,24.37746],[79.00484,24.37086],[79.00867,24.36943],[79.0113,24.36982],[79.01523,24.37314],[79.01644,24.37653],[79.0185,24.3769],[79.01991,24.38325],[79.02194,24.38266],[79.02277,24.38032],[79.03197,24.37668],[79.03252,24.37112],[79.03391,24.37182],[79.04164,24.36869],[79.0533,24.36913],[79.05867,24.37765],[79.06167,24.37932],[79.06293,24.37748],[79.06994,24.39597],[79.07249,24.39782],[79.07074,24.40371],[79.07332,24.40664],[79.08682,24.40185],[79.10084,24.4018],[79.09934,24.40911],[79.10181,24.41237],[79.11991,24.41631],[79.12831,24.41259],[79.12987,24.40974],[79.13242,24.40992],[79.13835,24.41511],[79.14728,24.41688],[79.15855,24.42781],[79.16168,24.42654],[79.16807,24.43041],[79.1694,24.42928],[79.18072,24.43287],[79.19133,24.42807],[79.19644,24.42871],[79.20212,24.42464],[79.20678,24.41585],[79.20992,24.41466],[79.21871,24.41922],[79.22286,24.4178],[79.23426,24.41913],[79.24338,24.41482],[79.24674,24.40912],[79.24526,24.40216],[79.24327,24.39964],[79.24396,24.39446],[79.24899,24.39046],[79.25219,24.41208],[79.25493,24.41125],[79.26115,24.4],[79.26357,24.39903],[79.26555,24.39156],[79.26981,24.38891],[79.27247,24.38241],[79.29487,24.37497],[79.27675,24.3559],[79.26584,24.36312],[79.26017,24.36925],[79.25762,24.36978],[79.24579,24.36275],[79.2461,24.35822],[79.23998,24.35957],[79.23769,24.36227],[79.23241,24.36194],[79.23281,24.35677],[79.23735,24.35408],[79.23487,24.34819],[79.23508,24.34427],[79.23216,24.34015],[79.23293,24.33494],[79.2278,24.33307],[79.22459,24.33499],[79.21665,24.33074],[79.21098,24.33001],[79.20625,24.33148],[79.20454,24.33461],[79.20006,24.33394],[79.19934,24.33646],[79.20149,24.33977],[79.19902,24.34761],[79.19883,24.35551],[79.19685,24.35527],[79.19552,24.35723],[79.19069,24.35529],[79.18226,24.35767],[79.17075,24.36764],[79.16208,24.37003],[79.15842,24.37349],[79.16106,24.37528],[79.16142,24.37827],[79.16769,24.38601],[79.16733,24.39312],[79.16202,24.39735],[79.16632,24.39952],[79.16818,24.40667],[79.1522,24.40545],[79.15714,24.39685],[79.15116,24.3891],[79.1517,24.37938],[79.15535,24.3752],[79.1488,24.3751],[79.14174,24.37148],[79.13996,24.37006],[79.14049,24.36461],[79.15056,24.36522],[79.1547,24.36168],[79.15974,24.36204],[79.165,24.35203],[79.16454,24.34574],[79.1669,24.34101],[79.1749,24.33718],[79.1786,24.33334],[79.17952,24.32791],[79.18374,24.32872],[79.18733,24.32408],[79.18746,24.31715],[79.18403,24.31064],[79.17558,24.31054],[79.17114,24.30843],[79.17006,24.29455],[79.17165,24.28526],[79.17527,24.27778],[79.17268,24.27588],[79.1648,24.27495],[79.16062,24.27202],[79.15784,24.27402],[79.14917,24.26815],[79.14211,24.26154],[79.1443,24.2549],[79.14297,24.25317],[79.14136,24.25483],[79.13763,24.25117],[79.13264,24.25392],[79.12839,24.26048],[79.12061,24.26311],[79.11473,24.26223],[79.11325,24.26593],[79.11052,24.26362],[79.1045,24.25044],[79.10142,24.24997],[79.10265,24.24572],[79.09631,24.24202],[79.09237,24.24225],[79.08764,24.24622],[79.08129,24.2488],[79.08041,24.25316],[79.0847,24.26026],[79.08279,24.26299],[79.07511,24.26411],[79.0673,24.26112],[79.0648,24.25346],[79.07014,24.24711],[79.07073,24.24357],[79.06557,24.23642],[79.06589,24.22462],[79.05708,24.22551],[79.05305,24.22356],[79.05127,24.22509],[79.04826,24.22432],[79.04611,24.22154],[79.05047,24.21523],[79.05521,24.21243],[79.05199,24.2044],[79.05132,24.1975],[79.05145,24.19036],[79.0559,24.18821],[79.05669,24.185],[79.05402,24.17138],[79.05831,24.16834],[79.06198,24.16888],[79.06827,24.16562],[79.0673,24.16027],[79.06974,24.15234],[79.07967,24.14695],[79.07215,24.13743],[79.0723,24.13147],[79.07756,24.1282],[79.08595,24.12587],[79.09555,24.12832],[79.10137,24.12294],[79.10586,24.12163],[79.11326,24.12254],[79.12402,24.11526],[79.1234,24.10277],[79.1363,24.0974],[79.14127,24.09674],[79.14504,24.09913],[79.1471,24.10279],[79.14696,24.1095],[79.1484,24.11223],[79.15574,24.1104],[79.15901,24.11328],[79.16068,24.11806],[79.15779,24.12204],[79.17359,24.125],[79.17733,24.12266],[79.17683,24.11697],[79.18382,24.11872],[79.18777,24.12314],[79.19056,24.12201],[79.19387,24.12482],[79.1994,24.12622],[79.20382,24.13039],[79.20813,24.13158],[79.2135,24.12926],[79.21762,24.13218],[79.22235,24.13196],[79.22594,24.13752],[79.22373,24.14065],[79.22774,24.14395],[79.23172,24.14171],[79.23501,24.14193],[79.24247,24.14678],[79.24387,24.14459],[79.25193,24.14365],[79.25362,24.14734],[79.25684,24.1474],[79.26536,24.14026],[79.27975,24.14412],[79.28601,24.14328],[79.28831,24.14546],[79.30099,24.14471],[79.3072,24.14188],[79.30821,24.1377],[79.31483,24.13727],[79.31545,24.14326],[79.3232,24.1423],[79.33108,24.14777],[79.33041,24.15307],[79.32696,24.15426],[79.31927,24.1526],[79.30881,24.16353],[79.30228,24.16392],[79.30318,24.17366],[79.30052,24.18052],[79.30988,24.18595],[79.31351,24.18369],[79.32082,24.18235],[79.33207,24.18644],[79.3654,24.19046],[79.36824,24.19623],[79.38233,24.19527],[79.37525,24.20942],[79.37732,24.21145],[79.38565,24.21306],[79.38647,24.21484],[79.38871,24.22741],[79.38516,24.23789],[79.39294,24.25283],[79.39128,24.2583],[79.39494,24.26],[79.39748,24.26803],[79.38812,24.27898],[79.39861,24.28409],[79.3972,24.29218],[79.402,24.30008],[79.40159,24.30378],[79.4032,24.3058],[79.40136,24.30793],[79.40205,24.31045],[79.40481,24.31155],[79.40151,24.31641],[79.3986,24.31785],[79.39608,24.32689],[79.40117,24.32905],[79.40558,24.33746],[79.40989,24.34016],[79.40922,24.34423],[79.41362,24.35034],[79.40633,24.35588],[79.40205,24.36202],[79.39211,24.36722],[79.39239,24.36978],[79.39557,24.37288],[79.3943,24.37633],[79.39486,24.38332],[79.39741,24.38844],[79.40511,24.3875],[79.41202,24.3896],[79.42266,24.38762],[79.42824,24.389],[79.43319,24.39624],[79.4326,24.40211],[79.44058,24.40566],[79.43842,24.40941],[79.4418,24.41204],[79.44181,24.41017],[79.44611,24.40736],[79.45769,24.4075],[79.45988,24.40222],[79.4717,24.39121],[79.47296,24.38401],[79.47503,24.38368],[79.48013,24.38666],[79.4833,24.39083],[79.50348,24.39102],[79.50877,24.39729],[79.52394,24.39122],[79.52629,24.39328],[79.53622,24.39152],[79.55198,24.38172],[79.55957,24.38358],[79.56692,24.39103],[79.56397,24.39102],[79.56396,24.3944],[79.55395,24.40891],[79.55394,24.41229],[79.54544,24.41801],[79.54543,24.4197],[79.55132,24.42309],[79.5668,24.42719],[79.56309,24.43326],[79.56382,24.43732],[79.56749,24.44071],[79.56858,24.44578],[79.57524,24.44006],[79.58707,24.43502],[79.59557,24.42828],[79.59891,24.42322],[79.60667,24.41817],[79.62168,24.41821],[79.62823,24.40381],[79.62896,24.39881],[79.62282,24.39244],[79.62099,24.38644],[79.61545,24.38684],[79.6182,24.38231],[79.61673,24.37868],[79.62478,24.37264],[79.63416,24.38266],[79.63651,24.3822],[79.64813,24.37407],[79.65605,24.37073],[79.66018,24.36374],[79.66095,24.37433],[79.65904,24.37965],[79.66155,24.38247],[79.66513,24.38263],[79.67076,24.37808],[79.67305,24.3739],[79.67775,24.3723],[79.6812,24.37534],[79.6832,24.3855],[79.68255,24.39309],[79.68066,24.39583],[79.68477,24.39652],[79.69127,24.39028],[79.69142,24.38674],[79.6978,24.38427],[79.69968,24.38039],[79.70428,24.37667],[79.71055,24.38114],[79.70769,24.38435],[79.71779,24.39178],[79.71734,24.39444],[79.72314,24.4019],[79.72669,24.40406],[79.73013,24.40198],[79.73679,24.40917],[79.7482,24.41419],[79.75488,24.41145],[79.75828,24.40814],[79.75889,24.40415],[79.76342,24.39901],[79.77266,24.38191],[79.77889,24.38107],[79.79509,24.37386],[79.80633,24.38662],[79.81109,24.38756],[79.82273,24.38542],[79.82841,24.38102],[79.82978,24.37775],[79.83735,24.37611],[79.84141,24.3718],[79.84195,24.37008],[79.83963,24.36613],[79.83998,24.3538],[79.84825,24.34884],[79.85722,24.34877],[79.8597,24.35586],[79.86329,24.35795],[79.87064,24.37073],[79.87311,24.36987],[79.87396,24.37188],[79.87587,24.36982],[79.87652,24.37198],[79.8865,24.37464],[79.8818,24.37877],[79.87944,24.38345],[79.88177,24.38911],[79.87624,24.39439],[79.876,24.40017],[79.87759,24.40212],[79.8755,24.40531],[79.87682,24.40699],[79.87258,24.41268],[79.86806,24.4257],[79.86827,24.45062],[79.86419,24.45616],[79.86663,24.46166],[79.88207,24.47459],[79.86967,24.49012],[79.86637,24.50047],[79.86363,24.50426],[79.86481,24.50948],[79.8689,24.51476],[79.88042,24.51634],[79.88237,24.5191],[79.87946,24.53394],[79.87162,24.54454],[79.86945,24.55025],[79.86966,24.56147],[79.87592,24.57283],[79.87545,24.57598],[79.88429,24.56916],[79.89272,24.57051],[79.90342,24.57465],[79.9042,24.57634],[79.89781,24.57409],[79.8849,24.57527],[79.88444,24.57878],[79.88829,24.59145],[79.88488,24.59273],[79.8748,24.58935],[79.86913,24.58156],[79.8665,24.58086],[79.86464,24.58341],[79.85893,24.5809],[79.85573,24.58126],[79.85645,24.58835],[79.85501,24.59097],[79.84144,24.59456],[79.84305,24.60193],[79.84257,24.61585],[79.85327,24.61858],[79.85814,24.62255],[79.8612,24.636],[79.86981,24.64394],[79.87134,24.64743],[79.87334,24.66686],[79.88239,24.68801],[79.89329,24.69693],[79.89684,24.6962],[79.90053,24.69773],[79.92594,24.6869],[79.92845,24.68305],[79.92816,24.67482],[79.93675,24.66156],[79.95359,24.6531],[79.96495,24.66337],[79.97101,24.67705],[79.98288,24.68719],[79.98776,24.70348],[79.98591,24.71038],[79.99249,24.72432],[80.00576,24.73374],[80.01498,24.74743],[80.02668,24.7533],[80.05489,24.77334],[80.07251,24.79119],[80.07808,24.79892],[80.08741,24.81664],[80.09041,24.82578],[80.09138,24.83178],[80.09028,24.83859],[80.08366,24.84745],[80.06731,24.85547],[80.06067,24.86064],[80.049,24.88926],[80.0429,24.8994],[80.03348,24.90697],[80.03313,24.91021],[80.03523,24.9139],[80.03275,24.91876],[80.03308,24.92184],[80.04325,24.92584],[80.0513,24.93789],[80.05559,24.94032],[80.06749,24.93865],[80.11139,24.93903],[80.12317,24.93364],[80.13115,24.93241],[80.15037,24.93495],[80.15263,24.93868],[80.15192,24.94443],[80.15368,24.9508],[80.15707,24.95692],[80.16524,24.96207],[80.19024,24.96907],[80.20016,24.97361],[80.20993,24.98568],[80.2194,24.99139],[80.23087,25.00429],[80.23592,25.00617],[80.23553,25.008],[80.23971,25.01202],[80.24843,25.01764],[80.25288,25.018],[80.26228,25.02508],[80.271,25.02348],[80.28771,25.03792],[80.28809,25.04661],[80.2855,25.04974],[80.28581,25.05603],[80.29404,25.06388],[80.31825,25.07508],[80.32178,25.08526],[80.32653,25.0922],[80.3224,25.0952],[80.3226,25.0967],[80.3549,25.12632],[80.35534,25.12849],[80.35232,25.13095],[80.35641,25.13216],[80.35381,25.13611],[80.35782,25.1425],[80.37348,25.1474],[80.37488,25.14553],[80.37655,25.14583],[80.38508,25.15561],[80.3902,25.15839],[80.40988,25.16296],[80.41989,25.16318],[80.42699,25.16819],[80.43126,25.17448],[80.43135,25.17891],[80.42649,25.18985],[80.42147,25.19832],[80.41458,25.20565],[80.41209,25.21324],[80.40773,25.21802],[80.41075,25.22408],[80.40389,25.24353],[80.40013,25.24634],[80.39626,25.24643],[80.38867,25.23751],[80.38358,25.23729],[80.36963,25.24763],[80.36939,25.24953],[80.36587,25.25107],[80.35681,25.2618],[80.35497,25.27092],[80.35143,25.27716],[80.34821,25.27845],[80.32551,25.27823],[80.3108,25.28641],[80.31117,25.29823],[80.31851,25.30506],[80.32136,25.31232],[80.31885,25.32223],[80.32267,25.33209],[80.31819,25.33926],[80.31238,25.34407],[80.30955,25.35436],[80.31127,25.36057],[80.32031,25.36605],[80.31655,25.37761],[80.31541,25.38887],[80.28845,25.41703],[80.28561,25.41711],[80.28506,25.41546],[80.27992,25.42076],[80.26793,25.4221],[80.26384,25.42402],[80.26127,25.41607],[80.25551,25.40956],[80.25554,25.40438],[80.25342,25.40083],[80.24291,25.40357],[80.23616,25.40782],[80.23173,25.40236],[80.22082,25.39674],[80.22036,25.39813],[80.20618,25.40447],[80.20547,25.40682],[80.20756,25.41136],[80.20237,25.41404],[80.196,25.40205],[80.19711,25.40083],[80.19587,25.3991],[80.19655,25.38117],[80.19493,25.37816],[80.189,25.37924],[80.1821,25.3768],[80.16896,25.37686],[80.16734,25.3733],[80.16716,25.36408],[80.16304,25.36299],[80.15808,25.35905],[80.14939,25.35761],[80.14178,25.35066],[80.1311,25.33423],[80.12658,25.34026],[80.11883,25.34329],[80.11737,25.34152],[80.10529,25.34855],[80.10314,25.35154],[80.10096,25.35087],[80.08878,25.35585],[80.08207,25.34463],[80.07267,25.33695],[80.07148,25.33842],[80.06704,25.33943],[80.0647,25.33833],[80.06146,25.34031],[80.04295,25.33802],[80.03895,25.33971],[80.03827,25.3385],[80.03776,25.34027],[80.03342,25.34202],[80.02742,25.33665],[80.02743,25.3346],[80.02584,25.33467],[80.02682,25.33154],[80.02412,25.32947],[80.02338,25.32624],[80.01779,25.32253],[80.01963,25.31579],[80.02426,25.31196],[80.02095,25.30544],[80.02265,25.30349],[80.02221,25.29762],[80.01905,25.29909],[80.01198,25.29563],[80.01093,25.29281],[80.00779,25.29178],[80.00448,25.28796],[80.00192,25.28902],[79.99894,25.28597],[79.99851,25.27754],[80.00109,25.27648],[80.00159,25.27384],[80.00728,25.27214],[80.0043,25.26935],[80.00512,25.26571],[79.98666,25.26739],[79.98078,25.26185],[79.96848,25.26655],[79.96049,25.26423],[79.95325,25.26453],[79.94833,25.26866],[79.9388,25.258],[79.93657,25.25371],[79.93654,25.24754],[79.92762,25.24961],[79.92303,25.24178],[79.92202,25.23184],[79.91755,25.22683],[79.91847,25.23752],[79.91652,25.24462],[79.90749,25.25089],[79.90503,25.24902],[79.90208,25.24079],[79.89631,25.24255],[79.89292,25.24151],[79.87788,25.25102],[79.87239,25.24276],[79.8681,25.24079],[79.86452,25.23635],[79.85732,25.23472],[79.85138,25.23556],[79.85116,25.22702],[79.85275,25.2251],[79.86034,25.22221],[79.86859,25.21649],[79.86577,25.2153],[79.86705,25.21355],[79.86586,25.21178],[79.86366,25.21263],[79.86173,25.20953],[79.86173,25.20476],[79.85602,25.19405],[79.85891,25.19354],[79.86504,25.18804],[79.86537,25.17995],[79.86309,25.17719],[79.87009,25.17227],[79.8656,25.16105],[79.86646,25.14982],[79.86914,25.14767],[79.8734,25.149],[79.88153,25.14205],[79.87491,25.14338],[79.86882,25.14053],[79.86614,25.14106],[79.85162,25.12855],[79.85277,25.12563],[79.85179,25.12171],[79.84683,25.11598],[79.84801,25.11053],[79.85039,25.11023],[79.84983,25.10759],[79.85325,25.10583],[79.85249,25.10288],[79.85427,25.10338],[79.85775,25.10082],[79.86153,25.09621],[79.84504,25.09403],[79.8287,25.09932],[79.82657,25.10626],[79.82397,25.10825],[79.80833,25.11003],[79.80488,25.11309],[79.77262,25.1251],[79.76365,25.13005],[79.76199,25.13427],[79.7485,25.13935],[79.73985,25.13535],[79.73564,25.13129],[79.71725,25.12877],[79.69289,25.13324],[79.68806,25.13267],[79.68336,25.13515],[79.67834,25.13178],[79.67637,25.1243],[79.67322,25.12036],[79.67001,25.12284],[79.66048,25.12471],[79.64922,25.12971],[79.64151,25.12692],[79.6375,25.12906],[79.63642,25.13138],[79.6288,25.13422],[79.62271,25.14061],[79.62154,25.14046],[79.62205,25.13593],[79.62038,25.13447],[79.60834,25.12804],[79.60114,25.12749],[79.59941,25.12814],[79.5998,25.13511],[79.60332,25.14293],[79.60573,25.14343],[79.60762,25.14928],[79.60636,25.14976],[79.60699,25.15277],[79.59981,25.14383],[79.59569,25.14337],[79.59369,25.14898],[79.58914,25.1487],[79.58249,25.15088],[79.57968,25.15346],[79.57805,25.16022],[79.57581,25.16189],[79.57736,25.1626],[79.57725,25.16565],[79.57529,25.16707],[79.57628,25.16822],[79.56936,25.1718],[79.56878,25.16898],[79.56506,25.17063],[79.56041,25.16979],[79.56041,25.16758],[79.5569,25.16365],[79.55164,25.16071],[79.54648,25.14836],[79.54184,25.14284],[79.53891,25.1405],[79.53466,25.14215],[79.53486,25.14002],[79.53238,25.13882],[79.53289,25.13331],[79.52751,25.13109],[79.52391,25.13135],[79.52078,25.12699],[79.51795,25.12703],[79.52112,25.12519],[79.51876,25.1181],[79.52425,25.10716],[79.52611,25.09989],[79.52489,25.09697],[79.52062,25.09762],[79.51873,25.09504],[79.51041,25.09683],[79.50584,25.09545],[79.5036,25.09351],[79.50304,25.08888],[79.5,25.08344],[79.49529,25.08355],[79.4915,25.07965],[79.48284,25.07965],[79.48081,25.08153],[79.47731,25.08179],[79.47528,25.08617],[79.4724,25.08778],[79.46502,25.08805],[79.46823,25.09417],[79.47014,25.10797],[79.47724,25.12745],[79.4715,25.12812],[79.46971,25.12476],[79.4597,25.12006],[79.45211,25.10865],[79.44618,25.10479],[79.44137,25.10395],[79.43892,25.10122],[79.43696,25.10547],[79.43894,25.11656],[79.43895,25.12828],[79.43527,25.13171],[79.42702,25.13543],[79.4213,25.13543],[79.41577,25.1331],[79.41927,25.13195]],[[79.40237,25.07869],[79.4058,25.07765],[79.40469,25.0683],[79.40739,25.06478],[79.42591,25.05859],[79.42245,25.05485],[79.42466,25.053],[79.42386,25.045],[79.42204,25.04157],[79.41638,25.04107],[79.41695,25.03777],[79.41394,25.03817],[79.41356,25.03562],[79.4096,25.03386],[79.40181,25.03513],[79.39496,25.03212],[79.3942,25.03574],[79.38414,25.03854],[79.38429,25.04236],[79.38141,25.04182],[79.37726,25.0452],[79.37402,25.04482],[79.37507,25.05118],[79.3678,25.05437],[79.36773,25.05195],[79.36202,25.0482],[79.36748,25.04607],[79.36418,25.04098],[79.3598,25.03928],[79.35611,25.04047],[79.35977,25.05345],[79.35622,25.05643],[79.35806,25.05935],[79.3492,25.0625],[79.35113,25.06888],[79.3574,25.06827],[79.36002,25.06325],[79.36534,25.05903],[79.36908,25.05908],[79.37102,25.06293],[79.37981,25.06479],[79.37983,25.06695],[79.37466,25.06773],[79.37957,25.08561],[79.37251,25.09199],[79.37946,25.09897],[79.37969,25.10122],[79.37394,25.10407],[79.36193,25.10623],[79.35639,25.10939],[79.35058,25.11698],[79.35257,25.12298],[79.35506,25.12446],[79.35052,25.12636],[79.35414,25.13021],[79.3582,25.14329],[79.36484,25.14457],[79.3742,25.1426],[79.36382,25.12565],[79.37132,25.12345],[79.3777,25.12518],[79.3809,25.12243],[79.38261,25.11273],[79.38041,25.11142],[79.38037,25.1076],[79.38686,25.1021],[79.38936,25.09177],[79.38719,25.0857],[79.39871,25.08288],[79.40237,25.07869]],[[79.36677,25.17224],[79.36146,25.1711],[79.35447,25.17589],[79.35952,25.18855],[79.37256,25.18002],[79.36677,25.17224]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"399","area_level":"District","area_name":"Chhindwara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.23066,22.8147],[79.22877,22.81688],[79.22659,22.81238],[79.22222,22.81532],[79.22271,22.81121],[79.21783,22.81312],[79.20668,22.81063],[79.20283,22.81151],[79.19903,22.8101],[79.19694,22.80728],[79.19241,22.809],[79.19093,22.80505],[79.19288,22.80329],[79.19204,22.79721],[79.18575,22.79835],[79.17915,22.78818],[79.17634,22.78692],[79.17002,22.78856],[79.16497,22.79517],[79.16199,22.79309],[79.1568,22.79414],[79.15379,22.79049],[79.14865,22.78877],[79.1382,22.79136],[79.13097,22.78648],[79.13021,22.78412],[79.12707,22.78354],[79.12765,22.77675],[79.12644,22.77354],[79.12328,22.77227],[79.12558,22.77102],[79.123,22.76835],[79.12291,22.76532],[79.11882,22.76381],[79.11563,22.76462],[79.10631,22.76162],[79.10161,22.75824],[79.09618,22.75733],[79.08926,22.74247],[79.08341,22.74747],[79.07449,22.74427],[79.07354,22.74744],[79.07596,22.75003],[79.06847,22.74968],[79.06879,22.7533],[79.06669,22.75406],[79.06413,22.75856],[79.05652,22.75489],[79.04247,22.75951],[79.04326,22.7567],[79.042,22.75359],[79.03664,22.75306],[79.03147,22.74898],[79.03059,22.74514],[79.01703,22.73984],[79.01767,22.73243],[79.02225,22.73224],[79.02761,22.72739],[79.01225,22.72682],[79.01502,22.72165],[79.0133,22.71592],[79.01834,22.7134],[79.0219,22.70831],[79.02859,22.70862],[79.0242,22.702],[79.01636,22.70168],[79.00422,22.69483],[79.00468,22.69071],[79.01136,22.69053],[79.01719,22.6861],[79.01636,22.68434],[79.01199,22.68428],[79.01058,22.68277],[79.01634,22.67677],[79.01692,22.66884],[79.0102,22.66736],[79.01855,22.66135],[79.01869,22.65666],[79.01735,22.65561],[79.01409,22.65681],[79.01204,22.65993],[79.00265,22.65435],[79.01019,22.65204],[79.00717,22.64869],[79.0116,22.64403],[79.00512,22.64455],[79.0015,22.64044],[78.99777,22.64022],[78.99766,22.63641],[78.99573,22.63488],[78.9848,22.63715],[78.98037,22.63367],[78.97752,22.63606],[78.97368,22.63224],[78.97048,22.63326],[78.96931,22.62974],[78.96559,22.62979],[78.96426,22.62624],[78.9585,22.62637],[78.95621,22.62857],[78.94746,22.62833],[78.93889,22.63555],[78.93095,22.63692],[78.92413,22.64956],[78.92242,22.64942],[78.91938,22.65292],[78.92334,22.65522],[78.921,22.65788],[78.92284,22.65925],[78.92359,22.66398],[78.92292,22.66746],[78.91853,22.67204],[78.90337,22.67301],[78.89984,22.67625],[78.8848,22.67873],[78.85557,22.67834],[78.84989,22.68432],[78.83946,22.68168],[78.83816,22.67191],[78.83921,22.668],[78.83459,22.66646],[78.82803,22.66101],[78.82113,22.66304],[78.82348,22.65616],[78.81768,22.65567],[78.81513,22.65289],[78.81074,22.65323],[78.80844,22.65085],[78.80562,22.65221],[78.79893,22.64863],[78.79305,22.65059],[78.77543,22.64701],[78.78165,22.64151],[78.78418,22.63031],[78.78043,22.6224],[78.7709,22.61751],[78.76721,22.61835],[78.76604,22.61661],[78.76184,22.61885],[78.75923,22.61744],[78.7415,22.61927],[78.74078,22.62671],[78.73325,22.62428],[78.72868,22.62765],[78.73019,22.63791],[78.72366,22.64525],[78.70976,22.65345],[78.70407,22.65337],[78.69417,22.65018],[78.68076,22.66006],[78.6797,22.66372],[78.68399,22.66614],[78.68467,22.67136],[78.68176,22.67944],[78.68048,22.69918],[78.67813,22.69966],[78.67079,22.69986],[78.66758,22.69728],[78.66708,22.69261],[78.66946,22.6914],[78.66635,22.68924],[78.66464,22.69119],[78.65899,22.68862],[78.65905,22.68718],[78.65084,22.68823],[78.63755,22.68654],[78.63347,22.68175],[78.62558,22.67849],[78.62446,22.67391],[78.61604,22.66348],[78.61899,22.65783],[78.61786,22.65319],[78.61187,22.64911],[78.59542,22.65314],[78.59339,22.65659],[78.58498,22.65833],[78.57526,22.66312],[78.55996,22.65841],[78.5487,22.66102],[78.54423,22.66004],[78.54207,22.657],[78.52989,22.66507],[78.52531,22.66618],[78.52192,22.66517],[78.51892,22.66262],[78.52052,22.66086],[78.51864,22.65828],[78.51159,22.65689],[78.51073,22.65475],[78.50763,22.65509],[78.50567,22.65335],[78.50592,22.64935],[78.50294,22.64397],[78.50427,22.64457],[78.50481,22.64279],[78.50184,22.6427],[78.50266,22.63984],[78.50026,22.63887],[78.4981,22.63403],[78.50142,22.6132],[78.49944,22.60794],[78.50022,22.60566],[78.49747,22.60491],[78.49782,22.59214],[78.49867,22.59027],[78.5029,22.58949],[78.50351,22.58337],[78.5068,22.58184],[78.50879,22.5778],[78.51903,22.57172],[78.52427,22.56169],[78.52487,22.55728],[78.53238,22.55195],[78.53999,22.55028],[78.54227,22.54133],[78.54794,22.53649],[78.5449,22.5253],[78.53885,22.51505],[78.53944,22.5093],[78.54189,22.50645],[78.5408,22.5016],[78.53241,22.49598],[78.51807,22.49093],[78.51433,22.49124],[78.51079,22.48564],[78.50948,22.47768],[78.51143,22.47657],[78.51619,22.4783],[78.52168,22.47132],[78.52979,22.46988],[78.53056,22.46709],[78.52767,22.46016],[78.52958,22.45501],[78.53328,22.45525],[78.53566,22.46149],[78.54524,22.456],[78.55414,22.45569],[78.55189,22.44599],[78.55801,22.44129],[78.55874,22.4372],[78.56488,22.42827],[78.56118,22.41976],[78.55796,22.41829],[78.54972,22.41955],[78.54516,22.41487],[78.53165,22.42012],[78.52714,22.41998],[78.51344,22.40253],[78.50561,22.40474],[78.49777,22.40026],[78.49265,22.3874],[78.4857,22.38485],[78.48353,22.37955],[78.47243,22.38309],[78.47025,22.38247],[78.4715,22.37829],[78.47043,22.37536],[78.46378,22.37907],[78.45461,22.37675],[78.45321,22.37824],[78.45406,22.38227],[78.45109,22.38403],[78.44762,22.38305],[78.44904,22.37998],[78.44772,22.37869],[78.44326,22.37913],[78.43706,22.38292],[78.43669,22.38031],[78.43403,22.38196],[78.43129,22.38105],[78.42964,22.38375],[78.42504,22.38178],[78.41816,22.38312],[78.4145,22.38577],[78.41245,22.39324],[78.40969,22.39502],[78.40851,22.39927],[78.40431,22.40405],[78.40052,22.40786],[78.39217,22.41047],[78.39377,22.41383],[78.39087,22.41752],[78.38051,22.42052],[78.37008,22.41715],[78.31692,22.42478],[78.30575,22.41443],[78.3027,22.41368],[78.28485,22.4196],[78.27693,22.41226],[78.27015,22.40209],[78.27764,22.39811],[78.27867,22.39357],[78.2799,22.35007],[78.26752,22.34321],[78.26349,22.33618],[78.25391,22.32764],[78.2493,22.32732],[78.24587,22.32374],[78.24496,22.3203],[78.25299,22.31185],[78.2596,22.30095],[78.25702,22.2852],[78.26031,22.27634],[78.25958,22.2741],[78.26259,22.26903],[78.26243,22.26348],[78.26724,22.26493],[78.28786,22.26355],[78.29343,22.25416],[78.29266,22.25123],[78.28798,22.2492],[78.28616,22.24175],[78.27985,22.23968],[78.27528,22.23403],[78.2711,22.23155],[78.26958,22.22819],[78.26668,22.22716],[78.26644,22.22403],[78.26367,22.22208],[78.26487,22.22042],[78.26862,22.22112],[78.26571,22.21605],[78.26739,22.21232],[78.26062,22.20848],[78.26587,22.19907],[78.26183,22.19594],[78.2629,22.19343],[78.26136,22.18816],[78.2692,22.18646],[78.26306,22.18371],[78.26671,22.17649],[78.2614,22.17712],[78.25889,22.16516],[78.26211,22.16164],[78.26781,22.16094],[78.26248,22.15049],[78.26671,22.14615],[78.26709,22.13759],[78.26426,22.13302],[78.27707,22.13365],[78.27813,22.12455],[78.27574,22.1176],[78.27161,22.11579],[78.27273,22.10645],[78.27569,22.09955],[78.27628,22.09062],[78.28609,22.09019],[78.29073,22.09235],[78.3005,22.0922],[78.3131,22.09999],[78.31652,22.09996],[78.33061,22.10743],[78.34761,22.10911],[78.34966,22.10405],[78.33986,22.09923],[78.34095,22.09657],[78.33773,22.09081],[78.34769,22.07368],[78.34682,22.06973],[78.34314,22.06688],[78.34505,22.06416],[78.34435,22.05975],[78.34817,22.05915],[78.34796,22.05705],[78.34537,22.05568],[78.34673,22.05542],[78.34524,22.05066],[78.35504,22.05232],[78.3569,22.04749],[78.35908,22.04746],[78.3572,22.04447],[78.35544,22.04535],[78.35387,22.04345],[78.35657,22.0354],[78.36375,22.03252],[78.36783,22.03604],[78.37309,22.03545],[78.37561,22.03684],[78.37693,22.03532],[78.37202,22.0296],[78.37768,22.02831],[78.37858,22.02185],[78.38275,22.02171],[78.38623,22.01927],[78.38668,22.01647],[78.39529,22.01443],[78.40094,22.00489],[78.39734,21.99518],[78.40101,21.99466],[78.40092,21.98526],[78.39105,21.97876],[78.38865,21.97334],[78.38918,21.96873],[78.38565,21.9663],[78.38464,21.96364],[78.38768,21.94849],[78.38295,21.93952],[78.38708,21.9385],[78.39014,21.93452],[78.38652,21.92894],[78.38874,21.92364],[78.39403,21.92321],[78.39763,21.92692],[78.39851,21.93132],[78.39447,21.93686],[78.39548,21.93996],[78.40247,21.93944],[78.40878,21.93674],[78.41253,21.94371],[78.41292,21.95117],[78.42457,21.9598],[78.42685,21.95874],[78.42412,21.9542],[78.43175,21.9498],[78.4361,21.95433],[78.44046,21.95613],[78.44232,21.96103],[78.44574,21.95879],[78.44712,21.95372],[78.44936,21.95316],[78.45477,21.95752],[78.46121,21.95533],[78.46401,21.95589],[78.46593,21.95794],[78.46627,21.96337],[78.47212,21.95785],[78.46804,21.9537],[78.47633,21.953],[78.4778,21.95072],[78.48076,21.95045],[78.48651,21.94291],[78.48475,21.93902],[78.49235,21.935],[78.49526,21.93695],[78.49868,21.93566],[78.50103,21.93749],[78.5013,21.93586],[78.50458,21.93754],[78.51453,21.93658],[78.52137,21.92531],[78.5185,21.90841],[78.53859,21.90707],[78.5418,21.90222],[78.53827,21.8995],[78.5393,21.8888],[78.54131,21.88868],[78.54154,21.8847],[78.54773,21.87797],[78.54922,21.87321],[78.54758,21.86592],[78.53964,21.86284],[78.5394,21.86085],[78.54287,21.85834],[78.54138,21.8517],[78.53042,21.84836],[78.52725,21.84294],[78.52661,21.83824],[78.52358,21.83506],[78.52182,21.83585],[78.51958,21.83299],[78.50979,21.83081],[78.49868,21.83445],[78.48989,21.83143],[78.48796,21.82754],[78.47442,21.82275],[78.47381,21.81682],[78.46715,21.81353],[78.46721,21.81103],[78.4725,21.81095],[78.48335,21.80529],[78.48666,21.79954],[78.48917,21.79915],[78.49578,21.79231],[78.49839,21.79234],[78.49563,21.78699],[78.48678,21.78454],[78.47791,21.784],[78.47462,21.7863],[78.4697,21.78538],[78.47183,21.77769],[78.4707,21.76456],[78.46875,21.76283],[78.46534,21.766],[78.46352,21.76353],[78.45922,21.76264],[78.46232,21.75753],[78.46283,21.74975],[78.46662,21.74271],[78.45978,21.7179],[78.45474,21.71608],[78.45127,21.71774],[78.43762,21.71605],[78.42727,21.71834],[78.42533,21.71329],[78.42855,21.70348],[78.42716,21.696],[78.42026,21.69016],[78.41883,21.68469],[78.41314,21.6794],[78.40119,21.68137],[78.39325,21.67124],[78.39025,21.66379],[78.39173,21.6516],[78.39419,21.6488],[78.3985,21.64772],[78.39871,21.64576],[78.39877,21.64377],[78.3944,21.63849],[78.37975,21.63804],[78.37963,21.63503],[78.37604,21.63431],[78.37501,21.63065],[78.36858,21.62861],[78.36496,21.61923],[78.35749,21.62527],[78.35266,21.62462],[78.34966,21.62626],[78.34536,21.62179],[78.34593,21.60699],[78.34303,21.59891],[78.34393,21.5941],[78.34275,21.58905],[78.34542,21.58176],[78.34852,21.58067],[78.34894,21.57863],[78.35542,21.57332],[78.36565,21.5761],[78.37347,21.5802],[78.3778,21.58373],[78.38162,21.59204],[78.37264,21.61345],[78.39065,21.61459],[78.39265,21.61349],[78.39285,21.60934],[78.39463,21.60779],[78.40692,21.60879],[78.41266,21.60553],[78.41657,21.60111],[78.42712,21.59934],[78.4215,21.59074],[78.41868,21.5709],[78.42554,21.56964],[78.42539,21.56527],[78.42793,21.55857],[78.42424,21.54444],[78.43464,21.53409],[78.43399,21.53122],[78.42979,21.52767],[78.43075,21.52489],[78.43846,21.51785],[78.43705,21.51595],[78.43205,21.51444],[78.43444,21.51049],[78.43391,21.5062],[78.4365,21.4995],[78.43955,21.5023],[78.4445,21.50172],[78.44831,21.4998],[78.44965,21.49552],[78.453,21.49683],[78.45709,21.49607],[78.46068,21.50348],[78.46223,21.50384],[78.46966,21.50087],[78.47522,21.50097],[78.4757,21.50571],[78.48685,21.50553],[78.48694,21.50777],[78.49503,21.51725],[78.50061,21.51709],[78.50472,21.52679],[78.50926,21.52602],[78.51164,21.52869],[78.53076,21.52326],[78.54067,21.52372],[78.54973,21.51828],[78.55598,21.51762],[78.55653,21.51555],[78.56002,21.51328],[78.57015,21.51425],[78.56702,21.5097],[78.56785,21.50579],[78.57315,21.50156],[78.57172,21.4989],[78.57636,21.49787],[78.58249,21.4923],[78.58177,21.48995],[78.58415,21.49006],[78.58534,21.48672],[78.59475,21.48848],[78.60098,21.4854],[78.60301,21.48809],[78.60877,21.48906],[78.61918,21.48157],[78.61997,21.47826],[78.62868,21.47568],[78.64343,21.48552],[78.65931,21.48138],[78.66712,21.47709],[78.67094,21.48009],[78.68891,21.48197],[78.69014,21.4802],[78.68849,21.47794],[78.69335,21.47909],[78.70167,21.47632],[78.69984,21.47381],[78.70738,21.47391],[78.70756,21.47063],[78.72847,21.46229],[78.731,21.46381],[78.73343,21.46969],[78.74559,21.47019],[78.74495,21.48101],[78.75085,21.49298],[78.75663,21.49024],[78.76687,21.48904],[78.7666,21.4828],[78.76881,21.4775],[78.7716,21.47672],[78.7719,21.47168],[78.77613,21.46458],[78.77877,21.46936],[78.78015,21.47887],[78.78663,21.47934],[78.78698,21.48089],[78.78869,21.48089],[78.78998,21.48639],[78.79599,21.48554],[78.80026,21.49016],[78.81516,21.49064],[78.81557,21.4877],[78.81979,21.48726],[78.82975,21.49017],[78.84105,21.487],[78.84844,21.49003],[78.85191,21.48972],[78.85619,21.49284],[78.85586,21.49462],[78.86331,21.4927],[78.86803,21.49408],[78.86763,21.49131],[78.87152,21.48969],[78.89084,21.48526],[78.89518,21.49828],[78.89926,21.50046],[78.9174,21.49225],[78.92306,21.48745],[78.93669,21.48577],[78.93924,21.49354],[78.94025,21.50787],[78.9413,21.5113],[78.94467,21.51266],[78.94439,21.51588],[78.93543,21.52283],[78.9318,21.52367],[78.92743,21.52225],[78.92593,21.53269],[78.92987,21.54036],[78.92555,21.54082],[78.9186,21.54713],[78.91255,21.54886],[78.91338,21.55078],[78.9068,21.55326],[78.91274,21.5553],[78.91817,21.56114],[78.92792,21.55958],[78.93186,21.56176],[78.93194,21.56452],[78.91375,21.57099],[78.91505,21.58299],[78.91652,21.58493],[78.9163,21.58759],[78.91432,21.58887],[78.91571,21.58866],[78.91676,21.59092],[78.92767,21.5902],[78.92997,21.59284],[78.94349,21.59196],[78.94742,21.59672],[78.952,21.59717],[78.96512,21.60489],[78.96993,21.61052],[78.97426,21.6128],[78.97552,21.61764],[78.98714,21.61596],[78.99596,21.61696],[78.99801,21.61857],[79.00291,21.60642],[79.01237,21.59945],[79.01921,21.60259],[79.02484,21.60169],[79.04188,21.60473],[79.04769,21.60244],[79.05294,21.60416],[79.05537,21.60148],[79.05825,21.60151],[79.07647,21.6054],[79.08851,21.60395],[79.08965,21.59757],[79.09396,21.59811],[79.09336,21.60161],[79.103,21.60149],[79.10721,21.60503],[79.10694,21.60721],[79.10207,21.60923],[79.10053,21.6176],[79.11211,21.62391],[79.11862,21.62382],[79.12289,21.62493],[79.1239,21.62659],[79.13034,21.62581],[79.13452,21.63321],[79.1433,21.63696],[79.14528,21.64669],[79.14824,21.65087],[79.14831,21.66117],[79.20899,21.65006],[79.22402,21.6488],[79.22411,21.65543],[79.23098,21.6562],[79.23108,21.67067],[79.22828,21.67451],[79.22235,21.67636],[79.22092,21.68214],[79.22086,21.69287],[79.22439,21.70029],[79.23737,21.71341],[79.23443,21.71804],[79.22403,21.71848],[79.22232,21.72007],[79.22339,21.73267],[79.2288,21.74705],[79.2293,21.75667],[79.23489,21.76122],[79.24432,21.76322],[79.25164,21.7751],[79.25533,21.77822],[79.27172,21.77417],[79.28154,21.7761],[79.28503,21.77954],[79.28412,21.79196],[79.28981,21.80013],[79.29312,21.81259],[79.28488,21.82567],[79.27601,21.8304],[79.27457,21.83448],[79.28372,21.84164],[79.28701,21.85018],[79.29584,21.861],[79.2969,21.86513],[79.30121,21.87077],[79.30198,21.88137],[79.30708,21.89116],[79.31626,21.89846],[79.32392,21.90874],[79.32285,21.91574],[79.32433,21.91815],[79.32973,21.92197],[79.33983,21.92267],[79.34706,21.92694],[79.34838,21.94283],[79.3468,21.94577],[79.33895,21.95023],[79.33992,21.95471],[79.35193,21.96698],[79.35829,21.96625],[79.36181,21.9674],[79.36508,21.97339],[79.37268,21.97466],[79.37217,21.97609],[79.37416,21.97671],[79.37418,21.98653],[79.37254,21.98914],[79.37344,21.99354],[79.3865,21.99319],[79.40007,21.99745],[79.39925,22.00063],[79.40152,22.00602],[79.4017,22.01137],[79.39816,22.01711],[79.39516,22.01772],[79.40135,22.02257],[79.40653,22.03924],[79.40638,22.04159],[79.3952,22.04099],[79.38743,22.04356],[79.38875,22.0581],[79.38672,22.063],[79.38733,22.06854],[79.3795,22.0763],[79.37313,22.0878],[79.37492,22.09375],[79.37923,22.09634],[79.38113,22.09943],[79.39362,22.10306],[79.38466,22.10531],[79.38015,22.1128],[79.37473,22.1155],[79.37233,22.1191],[79.36593,22.12183],[79.36611,22.12491],[79.36286,22.12908],[79.35404,22.13105],[79.35293,22.13909],[79.34991,22.14317],[79.35089,22.15014],[79.34023,22.16326],[79.34348,22.18047],[79.34023,22.18209],[79.33768,22.18666],[79.33775,22.19713],[79.33592,22.20254],[79.33736,22.20325],[79.33698,22.20705],[79.33568,22.20723],[79.33581,22.20895],[79.33245,22.20802],[79.33033,22.21978],[79.32469,22.22277],[79.32427,22.22459],[79.32588,22.22761],[79.32361,22.231],[79.32645,22.23223],[79.3273,22.23686],[79.33185,22.24174],[79.3403,22.24045],[79.3446,22.23767],[79.34835,22.23353],[79.34784,22.2271],[79.35119,22.22431],[79.36166,22.22071],[79.36396,22.21852],[79.36705,22.2193],[79.36644,22.22306],[79.36933,22.22652],[79.36528,22.23228],[79.36654,22.23995],[79.36411,22.24296],[79.36358,22.25057],[79.36545,22.25903],[79.36332,22.26624],[79.34977,22.26828],[79.3483,22.28011],[79.34257,22.28735],[79.33737,22.28799],[79.33231,22.28615],[79.33092,22.28493],[79.33148,22.28199],[79.32609,22.28493],[79.32111,22.28607],[79.31682,22.28519],[79.30224,22.29057],[79.29556,22.29598],[79.29664,22.30237],[79.30157,22.30286],[79.29821,22.30994],[79.29382,22.31646],[79.28632,22.31518],[79.28596,22.31668],[79.2865,22.32576],[79.28862,22.3279],[79.30022,22.33057],[79.30079,22.33251],[79.30278,22.33232],[79.30904,22.33642],[79.31389,22.33544],[79.32456,22.34063],[79.3251,22.34254],[79.32366,22.34384],[79.32758,22.34462],[79.32734,22.34607],[79.33034,22.34765],[79.34728,22.34977],[79.35197,22.35383],[79.35049,22.36241],[79.34472,22.36864],[79.34858,22.36986],[79.34936,22.37285],[79.34678,22.37985],[79.34718,22.38419],[79.33855,22.38357],[79.33455,22.38567],[79.32338,22.3825],[79.31957,22.38677],[79.3204,22.39042],[79.3188,22.3942],[79.30791,22.38909],[79.29283,22.37759],[79.28265,22.37355],[79.29149,22.39521],[79.29415,22.41048],[79.29884,22.41546],[79.30524,22.41753],[79.3118,22.41451],[79.31419,22.41425],[79.31489,22.41574],[79.31994,22.41458],[79.32316,22.41597],[79.32434,22.41914],[79.32573,22.4177],[79.32488,22.41425],[79.33297,22.41487],[79.33025,22.4166],[79.33025,22.4186],[79.33854,22.42265],[79.33648,22.42613],[79.33785,22.42986],[79.33487,22.44311],[79.32776,22.44429],[79.32829,22.43294],[79.32085,22.4329],[79.31485,22.44551],[79.30752,22.44143],[79.30343,22.44123],[79.29377,22.44392],[79.2881,22.44878],[79.28202,22.44751],[79.27729,22.45093],[79.26573,22.45375],[79.26198,22.44952],[79.25365,22.44792],[79.24986,22.44114],[79.24234,22.44635],[79.23278,22.44495],[79.2308,22.4312],[79.22782,22.42345],[79.22241,22.42443],[79.22069,22.42619],[79.21609,22.42566],[79.21233,22.42878],[79.20874,22.42885],[79.20594,22.43081],[79.20623,22.43434],[79.20374,22.43691],[79.20176,22.44548],[79.1949,22.45244],[79.2095,22.46229],[79.22065,22.465],[79.22383,22.46838],[79.22756,22.46836],[79.23348,22.47172],[79.23248,22.47427],[79.23722,22.47469],[79.24858,22.47195],[79.25878,22.4749],[79.25975,22.47294],[79.26977,22.47521],[79.27663,22.47966],[79.28787,22.47874],[79.30185,22.48352],[79.3141,22.48084],[79.3218,22.47701],[79.3279,22.48051],[79.33728,22.48218],[79.3412,22.48115],[79.34509,22.48366],[79.34757,22.48996],[79.34679,22.49375],[79.34358,22.49665],[79.34451,22.50512],[79.33264,22.50522],[79.33249,22.5091],[79.32805,22.512],[79.33031,22.52575],[79.32102,22.52711],[79.31921,22.53198],[79.32044,22.5396],[79.32209,22.54064],[79.32123,22.54296],[79.32526,22.54256],[79.32599,22.54571],[79.32776,22.54663],[79.32772,22.55134],[79.33356,22.55314],[79.33604,22.55127],[79.34133,22.55353],[79.3377,22.55785],[79.33624,22.5628],[79.33234,22.56619],[79.33681,22.56956],[79.3391,22.56537],[79.34146,22.56576],[79.34321,22.57809],[79.34636,22.57838],[79.34585,22.5713],[79.34833,22.57049],[79.35166,22.57346],[79.35279,22.57815],[79.3573,22.57998],[79.35325,22.58533],[79.3538,22.58787],[79.3643,22.59659],[79.37248,22.59413],[79.3748,22.59609],[79.36791,22.60499],[79.35528,22.60741],[79.35372,22.61038],[79.34846,22.61402],[79.33752,22.61534],[79.32607,22.61051],[79.32519,22.6165],[79.31871,22.61533],[79.31406,22.61783],[79.30803,22.61615],[79.29684,22.61944],[79.2999,22.63007],[79.30617,22.63704],[79.3061,22.64517],[79.30391,22.64779],[79.28575,22.6483],[79.28684,22.65008],[79.28384,22.655],[79.28754,22.67236],[79.29318,22.67468],[79.29699,22.68081],[79.29693,22.68324],[79.2908,22.68787],[79.28901,22.69558],[79.2732,22.69512],[79.26434,22.68716],[79.26593,22.69322],[79.25871,22.69169],[79.26008,22.70243],[79.24858,22.7174],[79.24391,22.719],[79.24323,22.72152],[79.24741,22.72215],[79.25443,22.72675],[79.25998,22.73299],[79.26257,22.7372],[79.26276,22.74466],[79.25855,22.74517],[79.2554,22.749],[79.24436,22.75191],[79.24141,22.7609],[79.24179,22.76811],[79.24737,22.77175],[79.24293,22.78077],[79.24388,22.78395],[79.23805,22.7922],[79.24055,22.80334],[79.23125,22.80948],[79.23262,22.81507],[79.23066,22.8147]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"4","area_level":"District","area_name":"Doda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.49443,33.40169],[75.49045,33.4052],[75.48189,33.40733],[75.47241,33.40078],[75.46415,33.40437],[75.45153,33.39773],[75.44711,33.38666],[75.44666,33.38166],[75.4431,33.37908],[75.41636,33.38128],[75.39758,33.36606],[75.38857,33.36598],[75.39312,33.3578],[75.39326,33.34629],[75.38178,33.29503],[75.37481,33.27374],[75.37711,33.25591],[75.38034,33.25047],[75.38753,33.24352],[75.39059,33.23754],[75.39123,33.23427],[75.3879,33.22426],[75.38797,33.21794],[75.38675,33.21359],[75.37682,33.20196],[75.36614,33.19605],[75.35264,33.1911],[75.34844,33.1877],[75.33988,33.17552],[75.33454,33.16165],[75.33704,33.15758],[75.3481,33.15322],[75.3556,33.14675],[75.36397,33.12166],[75.36549,33.11099],[75.3696,33.09825],[75.37008,33.05643],[75.3765,33.04785],[75.38127,33.04457],[75.39059,33.04154],[75.39202,33.03784],[75.39912,33.03465],[75.40831,33.03513],[75.40733,33.0382],[75.41033,33.04876],[75.41396,33.05131],[75.41501,33.05509],[75.41938,33.05654],[75.42826,33.03716],[75.43646,33.00546],[75.42283,32.99964],[75.41726,32.9931],[75.43563,32.97934],[75.44514,32.97489],[75.44881,32.97487],[75.45308,32.96874],[75.45236,32.9622],[75.45991,32.96104],[75.46215,32.95784],[75.47032,32.9615],[75.47638,32.95745],[75.4893,32.95493],[75.50052,32.9556],[75.50544,32.95875],[75.51205,32.95665],[75.52225,32.95993],[75.52995,32.95626],[75.53235,32.95035],[75.53422,32.94943],[75.54222,32.9529],[75.54428,32.95692],[75.55034,32.96162],[75.55169,32.96597],[75.56286,32.96764],[75.57071,32.96168],[75.57721,32.96095],[75.57908,32.95753],[75.57784,32.95246],[75.58214,32.94706],[75.59662,32.94964],[75.60014,32.946],[75.60582,32.94358],[75.60889,32.93931],[75.62366,32.93975],[75.6283,32.9357],[75.63178,32.93504],[75.63713,32.92986],[75.65622,32.92771],[75.65964,32.92448],[75.65918,32.92262],[75.66228,32.92314],[75.66236,32.92076],[75.66491,32.91899],[75.66803,32.91176],[75.67299,32.89273],[75.67207,32.88991],[75.67687,32.88002],[75.67525,32.87741],[75.675,32.87041],[75.6774,32.86791],[75.68117,32.86791],[75.68278,32.86414],[75.6896,32.86464],[75.69177,32.86635],[75.69318,32.86972],[75.69223,32.8765],[75.69396,32.87844],[75.71359,32.87951],[75.72212,32.87621],[75.7401,32.87633],[75.75218,32.88149],[75.75572,32.88586],[75.76295,32.88953],[75.76795,32.88998],[75.78716,32.89005],[75.79625,32.88426],[75.79901,32.88485],[75.81259,32.89311],[75.81715,32.89937],[75.81895,32.90753],[75.82427,32.91131],[75.83264,32.92403],[75.8377,32.92802],[75.84519,32.92846],[75.85185,32.92493],[75.85933,32.9254],[75.86708,32.92276],[75.873,32.92385],[75.87679,32.91948],[75.88328,32.91868],[75.88875,32.91454],[75.89914,32.91221],[75.90385,32.91279],[75.91293,32.90671],[75.91886,32.90576],[75.92827,32.88979],[75.94106,32.87828],[75.95011,32.87283],[75.96971,32.88505],[75.97537,32.88648],[75.98124,32.8951],[75.99651,32.89935],[75.99895,32.90204],[76.00234,32.90152],[76.00912,32.9087],[76.02719,32.91571],[76.03314,32.92137],[76.032,32.92691],[76.03436,32.93174],[76.03883,32.93575],[76.06126,32.94095],[76.06831,32.9519],[76.08302,32.95525],[76.08224,32.96157],[76.09218,32.96334],[76.09416,32.96516],[76.10629,32.98688],[76.1038,32.99119],[76.10793,33.0],[76.1072,33.00606],[76.13631,33.00959],[76.16034,33.00663],[76.1679,33.00856],[76.17634,33.01886],[76.18149,33.02068],[76.19847,33.01655],[76.21233,33.01645],[76.21751,33.0213],[76.22226,33.02277],[76.23171,33.04029],[76.23109,33.04341],[76.23497,33.05311],[76.23542,33.06411],[76.23165,33.07218],[76.23212,33.08305],[76.22808,33.09107],[76.22425,33.09023],[76.21793,33.08501],[76.20216,33.09572],[76.20058,33.09802],[76.19892,33.11009],[76.1881,33.11202],[76.17769,33.11992],[76.17609,33.12344],[76.17866,33.12651],[76.17171,33.14896],[76.1655,33.15003],[76.15891,33.16115],[76.1505,33.16636],[76.13785,33.16664],[76.13049,33.17321],[76.12657,33.17452],[76.11836,33.17549],[76.1179,33.16603],[76.12012,33.15763],[76.11661,33.15073],[76.11659,33.14473],[76.10917,33.12543],[76.09386,33.12268],[76.08283,33.11869],[76.07659,33.11851],[76.06837,33.11496],[76.05614,33.10652],[76.04482,33.10792],[76.03932,33.10446],[76.01839,33.10195],[76.00622,33.10441],[75.99929,33.1026],[75.99287,33.10859],[75.99038,33.11373],[75.99087,33.11587],[75.98423,33.12181],[75.97847,33.12316],[75.97099,33.11928],[75.96642,33.11923],[75.96446,33.12343],[75.96869,33.12637],[75.96158,33.13021],[75.94949,33.12486],[75.94661,33.11922],[75.94018,33.118],[75.93621,33.11413],[75.92893,33.11412],[75.92669,33.11779],[75.92894,33.1192],[75.92656,33.12565],[75.91963,33.13089],[75.91598,33.13721],[75.91112,33.13695],[75.90828,33.13502],[75.90399,33.13606],[75.90014,33.13441],[75.90046,33.12943],[75.89736,33.11943],[75.89449,33.11772],[75.88515,33.1167],[75.87276,33.12255],[75.85512,33.12077],[75.85689,33.12493],[75.85271,33.13286],[75.83867,33.13829],[75.83322,33.14815],[75.82377,33.15139],[75.81773,33.15158],[75.81435,33.14886],[75.81193,33.14964],[75.81081,33.14607],[75.80633,33.14611],[75.80019,33.14332],[75.79781,33.14745],[75.79698,33.15616],[75.80623,33.17143],[75.78754,33.17482],[75.77488,33.1836],[75.76993,33.1902],[75.76261,33.19364],[75.76143,33.19753],[75.75111,33.19938],[75.73742,33.20446],[75.71836,33.21877],[75.71876,33.22729],[75.71492,33.23397],[75.71055,33.23909],[75.70714,33.24014],[75.69566,33.24958],[75.69224,33.2541],[75.68379,33.25398],[75.67466,33.25812],[75.66658,33.25539],[75.66017,33.25769],[75.64805,33.25009],[75.63441,33.25794],[75.63388,33.25995],[75.62843,33.26059],[75.62021,33.2643],[75.61022,33.27197],[75.59865,33.27403],[75.59525,33.27956],[75.59674,33.28801],[75.58974,33.2935],[75.5891,33.29934],[75.58064,33.31434],[75.57293,33.31785],[75.56657,33.32303],[75.56521,33.32502],[75.56468,33.33471],[75.55821,33.33845],[75.55138,33.34012],[75.5417,33.3506],[75.53961,33.35634],[75.54082,33.36636],[75.53948,33.37216],[75.53044,33.37691],[75.51767,33.39395],[75.50633,33.39845],[75.49705,33.39869],[75.49443,33.40169]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"40","area_level":"District","area_name":"Shahid Bhagat Singh Nagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.85235,31.28305],[75.84309,31.28236],[75.83936,31.27842],[75.83973,31.27258],[75.84333,31.26277],[75.84712,31.25925],[75.8553,31.25627],[75.85557,31.25212],[75.8541,31.25],[75.85816,31.24227],[75.85717,31.23658],[75.85484,31.23326],[75.8536,31.23446],[75.84309,31.23249],[75.82111,31.22272],[75.8099,31.22096],[75.80162,31.21565],[75.79813,31.21617],[75.79667,31.21153],[75.78796,31.20498],[75.79167,31.19911],[75.78822,31.19839],[75.80064,31.19364],[75.80692,31.19317],[75.80828,31.19099],[75.8119,31.19041],[75.81419,31.18812],[75.81988,31.18911],[75.82115,31.18679],[75.82983,31.18454],[75.84305,31.18473],[75.85148,31.18294],[75.85446,31.17464],[75.86265,31.1739],[75.8727,31.16259],[75.88584,31.16606],[75.88324,31.14999],[75.88573,31.14572],[75.88855,31.14616],[75.89082,31.15382],[75.89815,31.15528],[75.90333,31.12541],[75.9161,31.10734],[75.91268,31.0993],[75.92667,31.0942],[75.9306,31.0772],[75.93271,31.0764],[75.92996,31.06791],[75.93059,31.06495],[75.94505,31.0587],[75.94196,31.05612],[75.94274,31.04751],[75.94749,31.03855],[75.94719,31.03019],[75.94939,31.02948],[75.94909,31.02617],[75.95125,31.02158],[75.96912,31.01505],[75.97092,31.00399],[75.98783,31.00512],[75.98776,31.00388],[75.99108,31.00936],[76.00481,31.00635],[76.00425,31.00385],[76.02426,31.00116],[76.02677,30.99676],[76.06266,31.00018],[76.06563,31.0],[76.07073,30.99558],[76.07481,30.99802],[76.08414,30.99776],[76.08818,30.99504],[76.10336,30.99832],[76.10417,30.9962],[76.12071,30.99298],[76.12254,30.993],[76.12243,30.99675],[76.13618,30.9975],[76.14311,30.98577],[76.15783,30.98868],[76.15955,30.98682],[76.16877,30.98941],[76.16662,30.99322],[76.1748,30.99585],[76.18053,30.99204],[76.18291,30.99462],[76.1879,30.99602],[76.18401,31.00521],[76.20458,31.00004],[76.20438,31.00331],[76.21335,31.00441],[76.2102,31.01041],[76.21093,31.01192],[76.21993,31.01158],[76.21988,31.00841],[76.22192,31.00761],[76.22295,31.00332],[76.22453,31.00264],[76.22527,31.00538],[76.22708,31.00442],[76.23411,31.00589],[76.24098,31.00232],[76.2563,31.01031],[76.26391,31.00305],[76.26414,31.00554],[76.27383,31.01294],[76.27473,31.01541],[76.28226,31.01026],[76.28793,31.00909],[76.28755,31.0067],[76.28943,31.00457],[76.27616,31.00231],[76.27676,31.00012],[76.28679,31.00236],[76.29272,30.99915],[76.29175,30.99804],[76.29664,30.98835],[76.30562,30.98783],[76.30595,30.99222],[76.31297,30.9939],[76.31333,30.99524],[76.32681,30.99432],[76.32511,30.97915],[76.34499,30.9806],[76.34284,30.97485],[76.35878,30.96904],[76.36923,30.97228],[76.36924,30.97469],[76.4065,30.97583],[76.40685,30.97251],[76.41461,30.9713],[76.43836,30.97198],[76.45815,30.9733],[76.45748,30.97621],[76.46843,30.97565],[76.47946,30.97948],[76.48188,30.97759],[76.49364,30.97537],[76.49422,30.9794],[76.50998,30.97991],[76.51629,30.98971],[76.51866,30.9954],[76.51015,30.99922],[76.50688,31.00535],[76.50118,31.00455],[76.49761,31.0082],[76.49293,31.00973],[76.48651,31.01433],[76.48409,31.02128],[76.47764,31.0229],[76.46973,31.03096],[76.46697,31.03155],[76.4613,31.04656],[76.45688,31.05042],[76.45735,31.05416],[76.45168,31.05619],[76.45158,31.05925],[76.44576,31.06451],[76.44628,31.06744],[76.43516,31.07849],[76.43574,31.08321],[76.43269,31.08459],[76.43401,31.08781],[76.43172,31.08936],[76.43218,31.09122],[76.42578,31.09584],[76.42963,31.09848],[76.43236,31.10579],[76.43213,31.11006],[76.42919,31.11618],[76.42149,31.1184],[76.41969,31.12392],[76.41356,31.12946],[76.41294,31.13266],[76.39755,31.14051],[76.39356,31.14665],[76.38877,31.14851],[76.38761,31.15156],[76.38345,31.15342],[76.38239,31.15829],[76.37865,31.16286],[76.37707,31.17033],[76.37337,31.17434],[76.37377,31.1756],[76.37091,31.1773],[76.36568,31.1891],[76.35984,31.19306],[76.3612,31.19572],[76.35622,31.20095],[76.35505,31.20609],[76.34818,31.20757],[76.34055,31.21636],[76.33873,31.22218],[76.33469,31.22477],[76.32857,31.22407],[76.31819,31.21418],[76.29476,31.22037],[76.28136,31.22863],[76.27725,31.23521],[76.257,31.23648],[76.24425,31.24507],[76.2391,31.24445],[76.24062,31.22545],[76.23719,31.22486],[76.23459,31.21709],[76.23011,31.21319],[76.22649,31.19859],[76.23478,31.20084],[76.23671,31.20682],[76.23768,31.20387],[76.24602,31.19641],[76.23891,31.18941],[76.23819,31.18676],[76.23436,31.18576],[76.22422,31.18488],[76.22141,31.18788],[76.21211,31.18535],[76.20889,31.1913],[76.1951,31.18419],[76.19722,31.18192],[76.19581,31.17998],[76.19682,31.17618],[76.20556,31.16707],[76.20761,31.15895],[76.20093,31.15607],[76.20582,31.14973],[76.20973,31.13709],[76.18771,31.13274],[76.18095,31.13567],[76.17025,31.13424],[76.16583,31.1396],[76.15605,31.14078],[76.15506,31.14341],[76.15751,31.14562],[76.15583,31.15258],[76.14429,31.15206],[76.1444,31.15028],[76.13726,31.14681],[76.1355,31.15379],[76.13293,31.15644],[76.12984,31.16931],[76.12401,31.16689],[76.11715,31.16668],[76.10649,31.17307],[76.10568,31.17765],[76.10204,31.17749],[76.09926,31.17954],[76.09338,31.18701],[76.09445,31.19157],[76.09142,31.19721],[76.08855,31.19745],[76.08545,31.20291],[76.08777,31.2068],[76.08865,31.21451],[76.08754,31.21489],[76.08661,31.22431],[76.07989,31.22602],[76.07766,31.22818],[76.0657,31.22587],[76.06388,31.22496],[76.06387,31.22058],[76.06538,31.21879],[76.06178,31.21877],[76.06204,31.21682],[76.05174,31.21633],[76.04948,31.21331],[76.04489,31.2186],[76.04975,31.22285],[76.05472,31.22456],[76.05466,31.22629],[76.0279,31.24257],[76.02634,31.24978],[76.02901,31.25057],[76.02531,31.25908],[76.02214,31.25819],[76.02218,31.2564],[76.00738,31.24439],[76.00271,31.24444],[75.99729,31.25132],[75.99339,31.25982],[75.99122,31.26103],[75.98658,31.25978],[75.9863,31.25775],[75.97047,31.25226],[75.96637,31.25774],[75.95388,31.25326],[75.95606,31.25599],[75.95449,31.26129],[75.95084,31.26498],[75.94445,31.26783],[75.94091,31.27276],[75.94212,31.27382],[75.93379,31.27415],[75.93415,31.27187],[75.93153,31.27192],[75.93245,31.26886],[75.93058,31.26837],[75.9246,31.27236],[75.9241,31.27357],[75.92563,31.27325],[75.92469,31.27546],[75.91587,31.27901],[75.91814,31.2806],[75.91495,31.28458],[75.91046,31.27868],[75.90036,31.28023],[75.89239,31.27599],[75.89575,31.26584],[75.90596,31.26398],[75.91025,31.26104],[75.90969,31.26002],[75.90512,31.25818],[75.90127,31.25412],[75.89385,31.25394],[75.87905,31.24533],[75.87377,31.24414],[75.86877,31.24547],[75.87254,31.25138],[75.86871,31.2576],[75.8717,31.2598],[75.87417,31.25903],[75.87528,31.26208],[75.87047,31.27288],[75.86435,31.27662],[75.86027,31.27615],[75.8584,31.27857],[75.85473,31.27911],[75.85235,31.28305]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"400","area_level":"District","area_name":"Damoh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.59557,24.42828],[79.58152,24.43838],[79.57524,24.44006],[79.56858,24.44578],[79.56749,24.44071],[79.56382,24.43732],[79.56309,24.43326],[79.5668,24.42719],[79.55132,24.42309],[79.54543,24.4197],[79.54544,24.41801],[79.55394,24.41229],[79.55395,24.40891],[79.56396,24.3944],[79.56397,24.39102],[79.56692,24.39103],[79.55957,24.38358],[79.55198,24.38172],[79.53622,24.39152],[79.52629,24.39328],[79.52394,24.39122],[79.50877,24.39729],[79.50348,24.39102],[79.4833,24.39083],[79.48013,24.38666],[79.47503,24.38368],[79.47296,24.38401],[79.4717,24.39121],[79.45988,24.40222],[79.45769,24.4075],[79.44611,24.40736],[79.44181,24.41017],[79.4418,24.41204],[79.43842,24.40941],[79.44058,24.40566],[79.4326,24.40211],[79.43319,24.39624],[79.42824,24.389],[79.42266,24.38762],[79.41202,24.3896],[79.40511,24.3875],[79.39741,24.38844],[79.39447,24.38145],[79.39557,24.37288],[79.39179,24.36791],[79.40205,24.36202],[79.40633,24.35588],[79.41362,24.35034],[79.40922,24.34423],[79.40989,24.34016],[79.40558,24.33746],[79.40117,24.32905],[79.39608,24.32689],[79.3986,24.31785],[79.40151,24.31641],[79.40481,24.31155],[79.40205,24.31045],[79.40136,24.30793],[79.4032,24.3058],[79.40159,24.30378],[79.402,24.30008],[79.3972,24.29218],[79.39861,24.28409],[79.38812,24.27898],[79.39748,24.26803],[79.39494,24.26],[79.39128,24.2583],[79.39294,24.25283],[79.38516,24.23789],[79.38871,24.22741],[79.38647,24.21484],[79.38565,24.21306],[79.37732,24.21145],[79.37525,24.20942],[79.38233,24.19527],[79.36824,24.19623],[79.3654,24.19046],[79.33207,24.18644],[79.32082,24.18235],[79.31351,24.18369],[79.30988,24.18595],[79.30052,24.18052],[79.30318,24.17366],[79.30228,24.16392],[79.30881,24.16353],[79.31927,24.1526],[79.32696,24.15426],[79.33041,24.15307],[79.33108,24.14777],[79.3232,24.1423],[79.31545,24.14326],[79.31483,24.13727],[79.30821,24.1377],[79.3072,24.14188],[79.3016,24.14466],[79.28831,24.14546],[79.28601,24.14328],[79.27975,24.14412],[79.26458,24.14026],[79.2572,24.14734],[79.25362,24.14734],[79.25193,24.14365],[79.24387,24.14459],[79.24214,24.14677],[79.23501,24.14193],[79.23172,24.14171],[79.22822,24.144],[79.22594,24.14311],[79.22366,24.14035],[79.22591,24.13737],[79.22235,24.13196],[79.21762,24.13218],[79.2135,24.12926],[79.20813,24.13158],[79.20382,24.13039],[79.1994,24.12622],[79.19387,24.12482],[79.19056,24.12201],[79.18777,24.12314],[79.18382,24.11872],[79.17683,24.11697],[79.17733,24.12266],[79.17359,24.125],[79.15779,24.12204],[79.16068,24.11806],[79.15901,24.11328],[79.15574,24.1104],[79.14952,24.11256],[79.14711,24.1102],[79.1467,24.10154],[79.15092,24.09313],[79.1484,24.0878],[79.15647,24.07879],[79.15473,24.07668],[79.15553,24.07075],[79.16572,24.05579],[79.17166,24.05779],[79.1765,24.05381],[79.18368,24.029],[79.18391,24.02284],[79.17908,24.01887],[79.17927,24.0164],[79.18654,24.01298],[79.18699,24.00888],[79.18114,24.00298],[79.17088,24.00091],[79.16704,24.00168],[79.15401,23.99553],[79.14985,23.99617],[79.14616,23.99274],[79.14481,23.98803],[79.13895,23.98828],[79.13367,23.98544],[79.13647,23.97879],[79.13078,23.97722],[79.12936,23.97389],[79.11755,23.97736],[79.11423,23.9704],[79.11094,23.97133],[79.10839,23.96925],[79.10922,23.96554],[79.10148,23.96305],[79.10209,23.95993],[79.09536,23.95484],[79.09506,23.95026],[79.09224,23.94909],[79.09313,23.94662],[79.08123,23.94216],[79.08218,23.94024],[79.07741,23.93434],[79.07822,23.93244],[79.07033,23.92744],[79.06709,23.92785],[79.06529,23.92492],[79.06007,23.92416],[79.05485,23.91985],[79.05539,23.91721],[79.05977,23.915],[79.06336,23.9102],[79.07184,23.90661],[79.07364,23.90305],[79.07996,23.90457],[79.08329,23.90734],[79.08046,23.90965],[79.08137,23.91131],[79.07963,23.91974],[79.08243,23.91745],[79.08792,23.92057],[79.09376,23.91938],[79.09938,23.90861],[79.10973,23.89903],[79.11191,23.8933],[79.11058,23.89005],[79.11175,23.88617],[79.1087,23.88151],[79.11641,23.88062],[79.12116,23.8716],[79.13206,23.86563],[79.13271,23.86298],[79.13633,23.86139],[79.13724,23.85675],[79.14426,23.85479],[79.14591,23.85341],[79.14614,23.85015],[79.14975,23.8473],[79.15248,23.84649],[79.15786,23.8487],[79.17017,23.8463],[79.1748,23.85016],[79.17925,23.84729],[79.18109,23.84379],[79.17652,23.83737],[79.17713,23.83456],[79.18215,23.83504],[79.18561,23.8333],[79.19206,23.83299],[79.19736,23.83589],[79.20308,23.8367],[79.2077,23.84138],[79.21759,23.84227],[79.22022,23.84427],[79.22203,23.84024],[79.22374,23.83973],[79.22402,23.83692],[79.23332,23.8322],[79.23616,23.82915],[79.23885,23.82887],[79.24153,23.83239],[79.24748,23.82605],[79.25066,23.82552],[79.24395,23.82218],[79.24152,23.81884],[79.23814,23.81974],[79.23678,23.81842],[79.23718,23.81275],[79.23368,23.81088],[79.2336,23.80865],[79.2292,23.80749],[79.22933,23.79996],[79.22464,23.79614],[79.22056,23.78788],[79.21786,23.7866],[79.21961,23.78363],[79.23327,23.77412],[79.24811,23.76772],[79.2547,23.76071],[79.25944,23.76052],[79.26092,23.7578],[79.26421,23.75786],[79.27271,23.75276],[79.27361,23.75049],[79.26956,23.75011],[79.26826,23.74752],[79.27235,23.74359],[79.27568,23.74296],[79.27761,23.73981],[79.27901,23.74351],[79.28126,23.74283],[79.28611,23.74467],[79.28889,23.74841],[79.29301,23.74776],[79.29052,23.74105],[79.28407,23.73594],[79.28449,23.73402],[79.29106,23.73089],[79.29253,23.72676],[79.29147,23.72441],[79.28799,23.72437],[79.28781,23.72032],[79.28965,23.72016],[79.29046,23.71706],[79.29881,23.7111],[79.30066,23.70567],[79.29465,23.70563],[79.28538,23.70182],[79.2826,23.69885],[79.28337,23.69497],[79.28887,23.6903],[79.29537,23.68962],[79.29862,23.68668],[79.30137,23.67667],[79.31477,23.67709],[79.32544,23.67475],[79.33046,23.67202],[79.33444,23.66585],[79.3405,23.66247],[79.34995,23.66618],[79.35127,23.66449],[79.35215,23.65531],[79.34135,23.64322],[79.33993,23.63482],[79.33645,23.63073],[79.32835,23.63002],[79.30577,23.64362],[79.30303,23.64149],[79.30038,23.6321],[79.30143,23.63009],[79.29987,23.62505],[79.30215,23.6207],[79.30091,23.62059],[79.30084,23.6176],[79.30257,23.613],[79.29971,23.61059],[79.30174,23.60331],[79.30072,23.60082],[79.30476,23.59741],[79.30664,23.593],[79.30922,23.59249],[79.31082,23.59449],[79.31099,23.5917],[79.31757,23.58996],[79.31869,23.58791],[79.31378,23.58721],[79.3088,23.58889],[79.30703,23.58589],[79.30586,23.58721],[79.30469,23.58479],[79.297,23.58054],[79.29633,23.57428],[79.29902,23.5698],[79.29845,23.5679],[79.30074,23.56658],[79.29909,23.56208],[79.31135,23.55901],[79.31338,23.55281],[79.32555,23.55122],[79.32617,23.54892],[79.32479,23.5463],[79.32343,23.54691],[79.32181,23.54266],[79.32277,23.53648],[79.3278,23.5292],[79.33343,23.52741],[79.33143,23.52411],[79.32661,23.52004],[79.31717,23.52125],[79.31106,23.5179],[79.29956,23.51642],[79.29276,23.50748],[79.29108,23.49543],[79.28792,23.48724],[79.28881,23.48607],[79.28488,23.48344],[79.28761,23.47907],[79.28304,23.47729],[79.27477,23.47775],[79.26727,23.48046],[79.26677,23.482],[79.26051,23.47599],[79.26263,23.47011],[79.26125,23.46529],[79.25838,23.46288],[79.25145,23.4672],[79.2467,23.46715],[79.23893,23.45871],[79.23134,23.46243],[79.22591,23.46008],[79.22201,23.44873],[79.2239,23.44565],[79.22343,23.44276],[79.22033,23.43674],[79.21254,23.43725],[79.20705,23.44054],[79.19861,23.44057],[79.1954,23.43785],[79.189,23.43704],[79.1848,23.43373],[79.18076,23.42589],[79.18482,23.42126],[79.18793,23.42238],[79.19433,23.41779],[79.20182,23.41556],[79.19983,23.40706],[79.19102,23.40797],[79.18527,23.404],[79.18731,23.39735],[79.18472,23.39353],[79.18817,23.39013],[79.18685,23.38404],[79.19122,23.37557],[79.19173,23.36572],[79.20032,23.36209],[79.20381,23.36292],[79.20943,23.36104],[79.21694,23.36726],[79.21882,23.36505],[79.21967,23.35785],[79.2171,23.35522],[79.21711,23.35017],[79.22466,23.3471],[79.22881,23.34358],[79.23878,23.34043],[79.22497,23.32767],[79.21264,23.31924],[79.21002,23.31914],[79.21024,23.31667],[79.21534,23.31204],[79.21749,23.30716],[79.22392,23.30421],[79.22688,23.29976],[79.23134,23.29834],[79.23204,23.29122],[79.22848,23.2908],[79.22712,23.28435],[79.21828,23.27497],[79.21829,23.27077],[79.21272,23.26095],[79.207,23.25597],[79.19968,23.25423],[79.1773,23.25862],[79.17251,23.25567],[79.17207,23.25164],[79.17605,23.24264],[79.175,23.23564],[79.17641,23.22993],[79.17446,23.22575],[79.17859,23.22247],[79.18382,23.22544],[79.18646,23.22372],[79.19178,23.22344],[79.19541,23.23272],[79.19495,23.23934],[79.19733,23.24189],[79.20712,23.23907],[79.21105,23.23113],[79.21365,23.2295],[79.21917,23.23003],[79.22089,23.22745],[79.22778,23.22579],[79.22933,23.23681],[79.23239,23.24019],[79.23043,23.24925],[79.23209,23.25223],[79.24414,23.25075],[79.24714,23.24842],[79.26231,23.2453],[79.27029,23.23553],[79.26805,23.21651],[79.29246,23.22138],[79.29626,23.22649],[79.30596,23.23246],[79.3061,23.22398],[79.31288,23.21317],[79.31644,23.19838],[79.32118,23.18969],[79.32154,23.18726],[79.31755,23.17919],[79.32282,23.17078],[79.33487,23.1594],[79.33209,23.1545],[79.33205,23.15048],[79.33721,23.15077],[79.35195,23.15566],[79.35474,23.15895],[79.35637,23.16439],[79.35534,23.17128],[79.36386,23.17034],[79.36522,23.16511],[79.3663,23.16531],[79.39142,23.17647],[79.42361,23.19434],[79.42784,23.19822],[79.42867,23.20134],[79.45167,23.2194],[79.45716,23.22655],[79.4753,23.2379],[79.47863,23.24386],[79.48695,23.24931],[79.48892,23.25696],[79.49298,23.26185],[79.48828,23.26402],[79.49857,23.26158],[79.51122,23.2682],[79.51578,23.26834],[79.53144,23.26578],[79.53265,23.26339],[79.53087,23.26025],[79.5321,23.25959],[79.55538,23.27063],[79.56149,23.27587],[79.56633,23.27622],[79.56944,23.28091],[79.59464,23.295],[79.61497,23.30918],[79.63332,23.31784],[79.6649,23.3365],[79.66843,23.33515],[79.6745,23.33822],[79.67484,23.34337],[79.68755,23.34979],[79.70285,23.36153],[79.70633,23.36801],[79.70348,23.37511],[79.70448,23.37595],[79.71248,23.37168],[79.71611,23.38246],[79.71943,23.38581],[79.71964,23.38894],[79.71727,23.3922],[79.72246,23.39381],[79.71974,23.39841],[79.725,23.39965],[79.73318,23.40928],[79.7329,23.4116],[79.7306,23.41283],[79.73312,23.41968],[79.72986,23.42065],[79.72479,23.4188],[79.72295,23.42274],[79.72487,23.4224],[79.72659,23.4244],[79.72435,23.42539],[79.7292,23.42825],[79.73547,23.42625],[79.73482,23.43114],[79.73706,23.43294],[79.73777,23.43659],[79.74084,23.43407],[79.74133,23.42982],[79.75555,23.43304],[79.75843,23.43197],[79.76657,23.43827],[79.76765,23.44533],[79.77154,23.44598],[79.77141,23.44261],[79.77513,23.43927],[79.78216,23.44111],[79.78887,23.44632],[79.78596,23.44653],[79.78556,23.44867],[79.79357,23.45551],[79.78738,23.45985],[79.79276,23.46495],[79.7965,23.46321],[79.80214,23.46584],[79.80784,23.4816],[79.81467,23.49055],[79.81572,23.49528],[79.80998,23.49884],[79.81275,23.50183],[79.81543,23.50201],[79.81962,23.50853],[79.82016,23.51051],[79.81531,23.51268],[79.83642,23.51121],[79.84319,23.50536],[79.84732,23.50417],[79.87324,23.54042],[79.87446,23.54995],[79.87632,23.55148],[79.87547,23.55283],[79.87824,23.55439],[79.87664,23.55624],[79.87912,23.55836],[79.87998,23.55702],[79.88336,23.55966],[79.88489,23.55898],[79.88599,23.56224],[79.88728,23.56155],[79.88802,23.56415],[79.89213,23.56581],[79.89201,23.56773],[79.89369,23.56785],[79.89164,23.56941],[79.89256,23.57292],[79.90101,23.57479],[79.90086,23.57911],[79.90348,23.5813],[79.9024,23.58403],[79.90341,23.58583],[79.90907,23.58504],[79.91004,23.58635],[79.91119,23.58508],[79.91216,23.587],[79.91742,23.58664],[79.92658,23.59429],[79.92969,23.59519],[79.92701,23.59935],[79.92925,23.60551],[79.92744,23.60891],[79.93095,23.61022],[79.94034,23.62399],[79.95149,23.62223],[79.94763,23.62679],[79.94649,23.63388],[79.94415,23.63606],[79.94346,23.64532],[79.94794,23.65165],[79.9552,23.65662],[79.95552,23.65867],[79.95046,23.66789],[79.94034,23.67193],[79.94038,23.67649],[79.936,23.68203],[79.93093,23.67958],[79.92235,23.68253],[79.91999,23.68159],[79.91266,23.68667],[79.90851,23.68642],[79.90882,23.6829],[79.90576,23.68231],[79.88926,23.68266],[79.88581,23.68381],[79.88355,23.68666],[79.87795,23.68746],[79.8735,23.69099],[79.86704,23.69101],[79.86672,23.70047],[79.85673,23.69693],[79.84783,23.69668],[79.83951,23.69447],[79.82764,23.6953],[79.82705,23.70826],[79.83249,23.71623],[79.83667,23.71744],[79.83517,23.72006],[79.83623,23.72332],[79.8312,23.7224],[79.82666,23.71885],[79.82291,23.72101],[79.82028,23.72824],[79.8221,23.72912],[79.8199,23.7301],[79.82155,23.73128],[79.81928,23.73292],[79.82085,23.73448],[79.8152,23.74001],[79.81916,23.74179],[79.83205,23.75745],[79.82887,23.76544],[79.82708,23.76616],[79.83208,23.77513],[79.832,23.77746],[79.84497,23.7846],[79.84155,23.78939],[79.8496,23.79097],[79.85614,23.79453],[79.85824,23.80361],[79.85359,23.80829],[79.85972,23.80772],[79.86682,23.81468],[79.86878,23.81927],[79.86373,23.82773],[79.85418,23.85302],[79.85758,23.85617],[79.85635,23.86186],[79.85851,23.86425],[79.86186,23.86491],[79.86319,23.8706],[79.86092,23.87369],[79.86393,23.87746],[79.86487,23.88344],[79.86865,23.88968],[79.86871,23.89401],[79.86671,23.89547],[79.8704,23.89813],[79.87127,23.9007],[79.86699,23.90407],[79.86309,23.91064],[79.86301,23.91356],[79.85591,23.91766],[79.84825,23.92579],[79.84355,23.92452],[79.83781,23.92979],[79.83456,23.93955],[79.83217,23.94198],[79.83691,23.94592],[79.83852,23.95251],[79.8423,23.95532],[79.84308,23.95973],[79.84546,23.96117],[79.85123,23.97103],[79.84915,23.97689],[79.85379,23.97916],[79.85466,23.98379],[79.85786,23.98861],[79.85526,23.99471],[79.83438,24.00209],[79.84493,24.00687],[79.84403,24.02258],[79.84229,24.02391],[79.82886,24.02514],[79.81988,24.03102],[79.81171,24.02696],[79.79706,24.02924],[79.79469,24.03228],[79.79149,24.0298],[79.78731,24.03054],[79.78169,24.03541],[79.77699,24.03557],[79.76608,24.0421],[79.76433,24.04102],[79.76611,24.03657],[79.76465,24.03511],[79.7612,24.03328],[79.75357,24.0348],[79.7505,24.04223],[79.75208,24.04508],[79.75219,24.05317],[79.75116,24.054],[79.74851,24.05189],[79.74692,24.04296],[79.74259,24.04286],[79.74228,24.04458],[79.73889,24.04641],[79.73991,24.0502],[79.73478,24.05944],[79.73637,24.06923],[79.73954,24.07363],[79.74315,24.07414],[79.75073,24.07017],[79.75925,24.07123],[79.76219,24.07342],[79.76327,24.07913],[79.75895,24.09256],[79.76373,24.106],[79.7682,24.10995],[79.7783,24.1111],[79.78376,24.11365],[79.78586,24.11832],[79.78122,24.12609],[79.78148,24.13195],[79.7855,24.13408],[79.79214,24.13218],[79.79496,24.13312],[79.79491,24.13672],[79.7912,24.14313],[79.79243,24.14915],[79.79783,24.15328],[79.80973,24.15742],[79.8118,24.15991],[79.81191,24.1643],[79.80822,24.17517],[79.81064,24.18184],[79.80962,24.19563],[79.81062,24.19943],[79.81614,24.20258],[79.82857,24.20035],[79.83453,24.20249],[79.84104,24.21887],[79.84132,24.22436],[79.83584,24.22882],[79.83519,24.23247],[79.83722,24.23488],[79.84349,24.23749],[79.84368,24.24527],[79.84048,24.24869],[79.82826,24.25558],[79.8133,24.25973],[79.80618,24.26364],[79.80455,24.26738],[79.80839,24.27285],[79.80847,24.28347],[79.81574,24.28652],[79.82389,24.28109],[79.83194,24.28329],[79.84028,24.28341],[79.84234,24.28787],[79.85468,24.2935],[79.85775,24.29825],[79.84177,24.31486],[79.83224,24.31935],[79.82176,24.32123],[79.79958,24.31733],[79.80228,24.3217],[79.8076,24.32167],[79.81384,24.33618],[79.81605,24.33889],[79.81943,24.33953],[79.81904,24.34463],[79.82107,24.3502],[79.80432,24.35641],[79.80498,24.35906],[79.79364,24.37084],[79.79509,24.37386],[79.77889,24.38107],[79.77266,24.38191],[79.76342,24.39901],[79.75889,24.40415],[79.75841,24.40796],[79.75472,24.41153],[79.7482,24.41419],[79.73679,24.40917],[79.73013,24.40198],[79.72679,24.40404],[79.72509,24.40326],[79.71734,24.39444],[79.71779,24.39178],[79.70769,24.38435],[79.71055,24.38114],[79.70428,24.37667],[79.69968,24.38039],[79.6978,24.38427],[79.69142,24.38674],[79.69127,24.39028],[79.68651,24.39578],[79.68066,24.39583],[79.68323,24.38876],[79.6812,24.37534],[79.6767,24.37194],[79.67305,24.3739],[79.67076,24.37808],[79.66565,24.3823],[79.66155,24.38247],[79.65889,24.37937],[79.66095,24.37433],[79.65993,24.36371],[79.65605,24.37073],[79.64813,24.37407],[79.63711,24.38202],[79.63416,24.38266],[79.62478,24.37264],[79.61673,24.37868],[79.6182,24.38231],[79.61545,24.38684],[79.62099,24.38644],[79.62282,24.39244],[79.62896,24.39881],[79.62823,24.40381],[79.62168,24.41821],[79.60667,24.41817],[79.59891,24.42322],[79.59557,24.42828]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"401","area_level":"District","area_name":"Datia","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.29938,25.10177],[78.29569,25.10357],[78.29442,25.10368],[78.29125,25.10152],[78.28789,25.10142],[78.28611,25.10027],[78.28064,25.09998],[78.27984,25.09874],[78.27792,25.09765],[78.27548,25.09534],[78.2752,25.09139],[78.27265,25.08899],[78.27004,25.08841],[78.27201,25.08349],[78.27409,25.08522],[78.27846,25.08357],[78.28377,25.0803],[78.28565,25.07788],[78.28949,25.07434],[78.2901,25.07286],[78.29068,25.06656],[78.28887,25.06459],[78.2887,25.0638],[78.28989,25.06299],[78.28997,25.06158],[78.29261,25.06024],[78.29564,25.0559],[78.29889,25.05515],[78.30201,25.05283],[78.30468,25.05262],[78.3065,25.05322],[78.30876,25.05515],[78.31045,25.05523],[78.31208,25.05643],[78.31371,25.05643],[78.31667,25.05962],[78.31916,25.06099],[78.32157,25.06138],[78.32298,25.05918],[78.32368,25.05883],[78.32597,25.06077],[78.32721,25.06381],[78.32906,25.0657],[78.33171,25.0662],[78.33544,25.069],[78.33521,25.07897],[78.33584,25.08244],[78.3375,25.08533],[78.33497,25.0856],[78.33384,25.08625],[78.33164,25.09035],[78.33097,25.09378],[78.3282,25.09469],[78.32455,25.09346],[78.3216,25.09016],[78.32015,25.08936],[78.31363,25.08854],[78.30972,25.08888],[78.30712,25.09019],[78.30457,25.09387],[78.30435,25.09995],[78.30335,25.1007],[78.30133,25.10094],[78.29938,25.10177]]],[[[78.33955,25.22278],[78.33416,25.22203],[78.32821,25.21841],[78.32689,25.21626],[78.32578,25.21688],[78.32367,25.21585],[78.32218,25.21404],[78.32169,25.21036],[78.31557,25.21181],[78.31441,25.21304],[78.31134,25.21275],[78.30793,25.20973],[78.30492,25.20243],[78.30047,25.20187],[78.30364,25.20132],[78.30296,25.20052],[78.30657,25.19196],[78.31017,25.18843],[78.31039,25.18496],[78.30839,25.17893],[78.30421,25.17696],[78.29868,25.17185],[78.30138,25.16903],[78.30143,25.16605],[78.29745,25.15749],[78.29231,25.15027],[78.294,25.1465],[78.28979,25.1418],[78.29248,25.13623],[78.29198,25.13526],[78.29004,25.13562],[78.28844,25.13221],[78.28945,25.13001],[78.29755,25.12615],[78.30602,25.12669],[78.30963,25.1229],[78.3271,25.11237],[78.33282,25.11727],[78.33717,25.12416],[78.34,25.12574],[78.34332,25.12984],[78.34721,25.13139],[78.34674,25.13434],[78.34955,25.1391],[78.3493,25.14053],[78.3415,25.14312],[78.33406,25.14797],[78.3388,25.16059],[78.34213,25.16617],[78.34673,25.17063],[78.35413,25.17378],[78.36465,25.17039],[78.36923,25.16574],[78.37443,25.1662],[78.37894,25.16155],[78.37853,25.14809],[78.37977,25.13828],[78.37642,25.13551],[78.37083,25.13333],[78.36762,25.12978],[78.36584,25.12628],[78.36666,25.12539],[78.36575,25.12435],[78.3661,25.12089],[78.3647,25.11942],[78.36783,25.11754],[78.36806,25.11082],[78.37276,25.10857],[78.37389,25.09867],[78.38179,25.10094],[78.38606,25.10378],[78.39973,25.12411],[78.4025,25.12686],[78.40682,25.12893],[78.41118,25.12947],[78.41544,25.12843],[78.43444,25.12014],[78.44195,25.12042],[78.44682,25.12177],[78.44795,25.12811],[78.44203,25.13094],[78.42737,25.14589],[78.4273,25.15399],[78.43206,25.15517],[78.44785,25.15271],[78.45187,25.15998],[78.45759,25.16277],[78.45825,25.16461],[78.45155,25.16893],[78.44608,25.16823],[78.44337,25.16548],[78.43372,25.16648],[78.4234,25.16931],[78.42474,25.17208],[78.41636,25.17644],[78.41664,25.18353],[78.40752,25.18443],[78.40174,25.18637],[78.39928,25.1859],[78.39576,25.18758],[78.39413,25.1935],[78.39466,25.19735],[78.39119,25.20002],[78.39336,25.203],[78.39203,25.20339],[78.39182,25.20594],[78.38133,25.20331],[78.37891,25.20756],[78.37666,25.20903],[78.36015,25.21287],[78.3478,25.22237],[78.34187,25.22115],[78.33955,25.22278]]],[[[78.34123,25.41648],[78.34282,25.41768],[78.34304,25.42027],[78.34205,25.42175],[78.3416,25.4236],[78.33957,25.42593],[78.3389,25.43102],[78.3381,25.43252],[78.33652,25.43429],[78.33609,25.4352],[78.33458,25.43628],[78.33442,25.43692],[78.32932,25.43922],[78.32683,25.44005],[78.32609,25.43967],[78.32574,25.43872],[78.32596,25.43678],[78.32402,25.43518],[78.32066,25.43348],[78.31993,25.43275],[78.31898,25.42988],[78.31886,25.42839],[78.31769,25.42647],[78.31271,25.42485],[78.31116,25.42374],[78.31007,25.42203],[78.30847,25.42054],[78.30726,25.41808],[78.30735,25.41753],[78.30813,25.4166],[78.3112,25.41443],[78.31861,25.41045],[78.31997,25.41015],[78.32139,25.41044],[78.32273,25.41014],[78.3245,25.41069],[78.32963,25.41022],[78.33539,25.41084],[78.33672,25.41136],[78.33712,25.41237],[78.33846,25.41331],[78.33914,25.41506],[78.34023,25.416],[78.34123,25.41648]]],[[[78.3676,25.45796],[78.36444,25.46177],[78.36309,25.46266],[78.36209,25.46295],[78.36105,25.46183],[78.35973,25.45981],[78.35787,25.45347],[78.3602,25.45147],[78.36176,25.44969],[78.36188,25.44671],[78.36219,25.44598],[78.36946,25.43833],[78.37212,25.43784],[78.37643,25.43865],[78.37689,25.43831],[78.37766,25.43681],[78.38095,25.44035],[78.38531,25.44059],[78.38918,25.44182],[78.39315,25.4439],[78.39496,25.44421],[78.39496,25.44542],[78.3958,25.44903],[78.39686,25.45109],[78.39654,25.45254],[78.39666,25.45303],[78.39723,25.45358],[78.39729,25.45416],[78.39673,25.45417],[78.39722,25.45628],[78.39103,25.45689],[78.38309,25.45823],[78.37921,25.46002],[78.37689,25.4605],[78.37311,25.46178],[78.36956,25.45898],[78.36808,25.458],[78.3676,25.45796]]],[[[78.41952,25.52847],[78.41923,25.52999],[78.41281,25.52827],[78.40822,25.52774],[78.39958,25.52803],[78.39758,25.52694],[78.39557,25.52488],[78.39423,25.52442],[78.39232,25.52076],[78.38814,25.51779],[78.3868,25.51558],[78.38632,25.51343],[78.38845,25.5106],[78.39046,25.50651],[78.39046,25.50587],[78.3887,25.5049],[78.38874,25.50448],[78.39535,25.49502],[78.39674,25.49456],[78.39831,25.49008],[78.39642,25.49235],[78.39535,25.49257],[78.39106,25.49076],[78.39023,25.48912],[78.39017,25.48564],[78.39037,25.48423],[78.39095,25.48343],[78.39088,25.48224],[78.38984,25.47979],[78.39079,25.47895],[78.3914,25.47723],[78.39223,25.47665],[78.39268,25.47378],[78.39437,25.47094],[78.39896,25.46575],[78.40031,25.46355],[78.40328,25.4661],[78.40386,25.4671],[78.4067,25.46716],[78.40979,25.46891],[78.41411,25.46979],[78.41421,25.47049],[78.41504,25.47054],[78.41575,25.47163],[78.41589,25.47306],[78.41545,25.47355],[78.41534,25.47535],[78.41662,25.47562],[78.41649,25.47648],[78.41992,25.47587],[78.42569,25.47174],[78.42781,25.4712],[78.43131,25.47363],[78.43105,25.47594],[78.42741,25.48485],[78.42869,25.48785],[78.42017,25.49834],[78.4193,25.50039],[78.41681,25.5017],[78.41768,25.50293],[78.41798,25.50505],[78.41912,25.50641],[78.41841,25.50815],[78.41881,25.50902],[78.42059,25.50813],[78.4207,25.50874],[78.42248,25.51003],[78.4243,25.50938],[78.42853,25.50993],[78.42885,25.51154],[78.42367,25.51556],[78.42205,25.51562],[78.42008,25.51667],[78.41906,25.51814],[78.42013,25.52011],[78.42031,25.52403],[78.41926,25.52614],[78.41952,25.52847]]],[[[78.79675,26.29063],[78.78987,26.28961],[78.78006,26.27196],[78.77548,26.27242],[78.76831,26.26461],[78.7554,26.26579],[78.74432,26.24979],[78.75581,26.24367],[78.75354,26.23541],[78.75085,26.23577],[78.74974,26.2334],[78.74533,26.23314],[78.74071,26.22867],[78.74249,26.22799],[78.74075,26.22349],[78.72953,26.22783],[78.72757,26.22544],[78.72261,26.2238],[78.71826,26.22595],[78.7154,26.22118],[78.70831,26.22059],[78.70376,26.21697],[78.6959,26.21769],[78.69598,26.21268],[78.69838,26.21122],[78.69632,26.20887],[78.6967,26.20687],[78.69371,26.20436],[78.69457,26.2033],[78.69282,26.20103],[78.69431,26.19937],[78.69197,26.19288],[78.69661,26.18572],[78.70132,26.18174],[78.70291,26.17576],[78.69469,26.1631],[78.68274,26.1646],[78.6788,26.16966],[78.67631,26.17057],[78.66942,26.16768],[78.66583,26.16949],[78.6625,26.16956],[78.65962,26.16759],[78.65611,26.16995],[78.64809,26.1694],[78.63663,26.16547],[78.62725,26.15745],[78.62851,26.15387],[78.6331,26.15194],[78.63959,26.12814],[78.65226,26.12662],[78.6463,26.1201],[78.63488,26.1218],[78.6265,26.12584],[78.61579,26.13389],[78.60879,26.12944],[78.61065,26.11331],[78.61207,26.11119],[78.60572,26.10135],[78.60653,26.09859],[78.61596,26.09496],[78.63931,26.08188],[78.63202,26.0758],[78.63127,26.07228],[78.63967,26.0701],[78.64565,26.066],[78.64413,26.06048],[78.6301,26.05267],[78.62674,26.04874],[78.62238,26.05109],[78.61718,26.05099],[78.61158,26.04813],[78.60662,26.04842],[78.60355,26.0466],[78.60144,26.03654],[78.585,26.0056],[78.57494,26.00107],[78.56987,25.99664],[78.55658,25.99393],[78.555,25.99085],[78.54588,25.98505],[78.54553,25.97967],[78.54268,25.97372],[78.51698,25.96894],[78.50685,25.96453],[78.48693,25.96483],[78.48233,25.9621],[78.48423,25.94139],[78.48295,25.9389],[78.47481,25.93458],[78.47232,25.93159],[78.47194,25.92672],[78.47485,25.91853],[78.47289,25.91032],[78.46795,25.90616],[78.45401,25.90061],[78.43771,25.88405],[78.4198,25.8778],[78.4133,25.86821],[78.40292,25.8599],[78.3878,25.8554],[78.38634,25.85193],[78.39208,25.84633],[78.39263,25.84329],[78.38801,25.83655],[78.37897,25.83501],[78.36648,25.83588],[78.36333,25.83235],[78.34793,25.83536],[78.34274,25.83215],[78.33919,25.83574],[78.33539,25.83598],[78.32774,25.83293],[78.31872,25.82611],[78.31825,25.82339],[78.31501,25.82161],[78.31283,25.81571],[78.30752,25.81165],[78.31587,25.8134],[78.31848,25.80835],[78.32583,25.80224],[78.32685,25.79766],[78.32365,25.79721],[78.31878,25.79199],[78.31032,25.7922],[78.29605,25.78594],[78.2961,25.77664],[78.29281,25.77273],[78.28677,25.77044],[78.28523,25.76835],[78.29445,25.76209],[78.29451,25.75925],[78.28962,25.7528],[78.27653,25.74947],[78.27441,25.75105],[78.27471,25.75289],[78.27278,25.75156],[78.26797,25.75247],[78.26655,25.74955],[78.25286,25.74046],[78.24826,25.73544],[78.23548,25.73182],[78.23298,25.72832],[78.22841,25.72818],[78.22298,25.72023],[78.22509,25.71597],[78.22468,25.71331],[78.21438,25.70282],[78.21661,25.6941],[78.22753,25.69164],[78.23332,25.69261],[78.24153,25.68923],[78.24616,25.6924],[78.24986,25.68822],[78.25137,25.69266],[78.24868,25.70237],[78.24662,25.70479],[78.24559,25.71199],[78.24602,25.719],[78.24868,25.72197],[78.26449,25.72101],[78.26652,25.71231],[78.28463,25.70078],[78.29239,25.69947],[78.29742,25.70067],[78.3006,25.70389],[78.30184,25.70787],[78.3054,25.70677],[78.30613,25.70868],[78.30864,25.7079],[78.31224,25.69352],[78.312,25.6877],[78.30916,25.68681],[78.30919,25.68475],[78.31556,25.67705],[78.32057,25.67251],[78.32255,25.67241],[78.32385,25.66832],[78.32822,25.66839],[78.33525,25.6641],[78.33718,25.6656],[78.34318,25.65841],[78.35043,25.66169],[78.35294,25.66829],[78.35218,25.66968],[78.35406,25.67041],[78.35378,25.66876],[78.35763,25.66859],[78.36074,25.66481],[78.36624,25.66471],[78.37627,25.6587],[78.37785,25.65601],[78.37695,25.6486],[78.38083,25.63977],[78.38197,25.62253],[78.38553,25.61494],[78.38458,25.61276],[78.38838,25.60872],[78.39008,25.60418],[78.39398,25.60664],[78.39935,25.60271],[78.40989,25.60048],[78.41086,25.59574],[78.40792,25.5903],[78.40279,25.58803],[78.39869,25.5816],[78.38973,25.57656],[78.40263,25.56654],[78.40703,25.56596],[78.41195,25.56302],[78.42457,25.58231],[78.43851,25.58941],[78.44124,25.59718],[78.44736,25.5939],[78.45103,25.5941],[78.45499,25.59215],[78.46063,25.5861],[78.4686,25.58441],[78.46698,25.58231],[78.4678,25.56972],[78.46506,25.56465],[78.45925,25.57121],[78.45836,25.57514],[78.45533,25.57385],[78.45292,25.57492],[78.45166,25.5731],[78.44935,25.57302],[78.4507,25.56866],[78.44821,25.5661],[78.44934,25.56277],[78.44647,25.56146],[78.44762,25.55657],[78.45096,25.55176],[78.4563,25.54806],[78.46469,25.54551],[78.46627,25.55118],[78.46983,25.55348],[78.46657,25.55337],[78.46567,25.55637],[78.46685,25.55932],[78.47537,25.56466],[78.47833,25.56468],[78.47864,25.56741],[78.48332,25.5708],[78.48266,25.57222],[78.48635,25.57436],[78.4871,25.57315],[78.49334,25.5787],[78.49766,25.57779],[78.49986,25.57416],[78.50206,25.57493],[78.50672,25.57297],[78.5066,25.57152],[78.50912,25.57254],[78.51275,25.56931],[78.51912,25.57029],[78.52366,25.56699],[78.52746,25.56801],[78.52837,25.56666],[78.5327,25.57166],[78.54219,25.56535],[78.54248,25.56295],[78.54466,25.56158],[78.55565,25.55928],[78.5587,25.56058],[78.56063,25.55905],[78.56316,25.56274],[78.56675,25.56256],[78.56921,25.56462],[78.58227,25.56138],[78.58774,25.5566],[78.59113,25.55834],[78.59243,25.56319],[78.59802,25.57069],[78.60155,25.56912],[78.61169,25.56987],[78.61078,25.57797],[78.61596,25.58353],[78.61938,25.58356],[78.6308,25.57893],[78.62419,25.56738],[78.6463,25.56075],[78.65867,25.55989],[78.6675,25.5747],[78.67489,25.57733],[78.67886,25.5853],[78.68731,25.58889],[78.69508,25.58783],[78.69942,25.59091],[78.70018,25.59507],[78.7042,25.59791],[78.71634,25.59953],[78.71598,25.6036],[78.71733,25.60533],[78.72065,25.60554],[78.72457,25.60216],[78.73177,25.60625],[78.73531,25.60101],[78.74215,25.59699],[78.74927,25.59877],[78.75032,25.60304],[78.76621,25.6102],[78.77397,25.61205],[78.77881,25.61091],[78.78236,25.61271],[78.79394,25.61242],[78.79799,25.61643],[78.81176,25.62078],[78.81169,25.63208],[78.81613,25.63581],[78.81987,25.64857],[78.8157,25.66233],[78.81878,25.6692],[78.8167,25.67632],[78.8125,25.68105],[78.80716,25.68412],[78.80453,25.69228],[78.79557,25.69672],[78.79511,25.69978],[78.79998,25.70294],[78.79991,25.70507],[78.78363,25.70872],[78.77478,25.717],[78.76333,25.71993],[78.7557,25.73047],[78.75286,25.75],[78.75873,25.75452],[78.77081,25.74863],[78.77356,25.75527],[78.77208,25.75722],[78.77296,25.75861],[78.77628,25.75978],[78.77883,25.75787],[78.78288,25.75848],[78.78628,25.76472],[78.78597,25.76924],[78.79138,25.77581],[78.79785,25.78838],[78.80292,25.79208],[78.80829,25.80097],[78.82862,25.79571],[78.8333,25.80962],[78.82831,25.81434],[78.82046,25.81574],[78.81431,25.80704],[78.81145,25.80769],[78.81143,25.8096],[78.8092,25.80989],[78.80627,25.81309],[78.80777,25.81685],[78.81038,25.8169],[78.81487,25.82236],[78.81844,25.82901],[78.84555,25.82155],[78.84796,25.81517],[78.84473,25.80605],[78.846,25.80541],[78.84482,25.80433],[78.84753,25.80334],[78.84464,25.8036],[78.84753,25.80254],[78.84595,25.80078],[78.85553,25.79516],[78.85715,25.79182],[78.86364,25.79078],[78.86439,25.79308],[78.86708,25.79321],[78.87039,25.80137],[78.87244,25.80138],[78.87281,25.80832],[78.86997,25.80903],[78.87061,25.81679],[78.87424,25.82215],[78.87193,25.82811],[78.87258,25.83509],[78.8643,25.83594],[78.86209,25.84274],[78.85141,25.83846],[78.8506,25.85218],[78.85565,25.86086],[78.86195,25.86556],[78.86411,25.87141],[78.87621,25.87588],[78.88738,25.86849],[78.89168,25.88024],[78.88672,25.88291],[78.88698,25.88471],[78.89481,25.89517],[78.89115,25.89715],[78.88656,25.90688],[78.88093,25.90932],[78.87867,25.91233],[78.87598,25.91055],[78.87613,25.90735],[78.87042,25.90634],[78.86508,25.90697],[78.8609,25.91114],[78.85916,25.91643],[78.85507,25.91733],[78.85298,25.91953],[78.85518,25.92315],[78.85371,25.92712],[78.85156,25.93066],[78.84628,25.93421],[78.84642,25.9368],[78.83762,25.93889],[78.84139,25.95048],[78.82158,25.95134],[78.8209,25.9465],[78.8173,25.94106],[78.80419,25.944],[78.80106,25.94639],[78.80186,25.94935],[78.79956,25.94994],[78.79656,25.95408],[78.79786,25.95784],[78.80141,25.95996],[78.79398,25.9625],[78.79152,25.96141],[78.78316,25.96217],[78.77973,25.96476],[78.77801,25.96918],[78.78152,25.97932],[78.78451,25.98137],[78.78675,25.98684],[78.78116,25.99476],[78.78357,25.99644],[78.77763,25.99897],[78.77787,26.00263],[78.78136,26.00664],[78.78603,26.00762],[78.78513,26.00976],[78.78693,26.01215],[78.78542,26.01328],[78.78244,26.01238],[78.77284,26.01802],[78.7741,26.02093],[78.78301,26.0244],[78.7882,26.03096],[78.78766,26.03575],[78.7838,26.03946],[78.78589,26.0434],[78.79783,26.03813],[78.80108,26.04019],[78.80157,26.0423],[78.80015,26.04272],[78.80272,26.04497],[78.80265,26.04244],[78.80519,26.04315],[78.80554,26.04159],[78.80974,26.04314],[78.81244,26.04032],[78.81749,26.04277],[78.81162,26.04905],[78.79035,26.05378],[78.79175,26.05591],[78.79704,26.05547],[78.80198,26.06155],[78.81483,26.05605],[78.81869,26.05938],[78.82303,26.06011],[78.82559,26.0632],[78.82688,26.0626],[78.83007,26.06876],[78.82977,26.07206],[78.82219,26.07062],[78.81208,26.07365],[78.8112,26.0724],[78.81012,26.07314],[78.8115,26.07615],[78.80177,26.08079],[78.80232,26.08352],[78.80012,26.08606],[78.80653,26.09485],[78.82179,26.09284],[78.82511,26.10068],[78.82817,26.10089],[78.83346,26.09786],[78.83314,26.09278],[78.83579,26.0915],[78.83988,26.09635],[78.8454,26.11191],[78.84483,26.11355],[78.82497,26.12264],[78.82224,26.12813],[78.82027,26.12865],[78.82682,26.13757],[78.8228,26.14258],[78.82273,26.14839],[78.81902,26.15127],[78.81613,26.16118],[78.81414,26.16046],[78.81497,26.16241],[78.81242,26.162],[78.81186,26.16383],[78.80799,26.16531],[78.80561,26.16322],[78.7988,26.16648],[78.80401,26.17895],[78.80793,26.18284],[78.81883,26.18429],[78.8264,26.18757],[78.82893,26.19314],[78.83376,26.1926],[78.83721,26.19723],[78.83544,26.20199],[78.82422,26.2058],[78.82014,26.20301],[78.81438,26.20262],[78.81336,26.20942],[78.80861,26.21389],[78.79004,26.22341],[78.78964,26.228],[78.79135,26.23109],[78.79716,26.23024],[78.80119,26.23259],[78.8009,26.23866],[78.80421,26.24941],[78.81151,26.25678],[78.82191,26.2591],[78.82746,26.26196],[78.82863,26.26686],[78.82672,26.27903],[78.82366,26.28428],[78.81749,26.2837],[78.81125,26.28973],[78.8015,26.2884],[78.79675,26.29063]],[[78.81886,26.13254],[78.8069,26.14112],[78.8104,26.14426],[78.81377,26.1426],[78.81636,26.14318],[78.81894,26.14059],[78.81635,26.13786],[78.81886,26.13254]],[[78.78465,26.08208],[78.78929,26.0911],[78.793,26.09044],[78.79459,26.08641],[78.79287,26.0816],[78.78465,26.08208]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"402","area_level":"District","area_name":"Dewas","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.96085,23.32141],[75.94677,23.31975],[75.94197,23.29712],[75.93064,23.29671],[75.93097,23.27509],[75.92608,23.27412],[75.92903,23.26763],[75.92862,23.25518],[75.93218,23.24319],[75.93235,23.22242],[75.9499,23.22597],[75.9539,23.2159],[75.95318,23.20799],[75.95139,23.20725],[75.95361,23.1787],[75.95034,23.17756],[75.94761,23.15711],[75.94423,23.14996],[75.93635,23.14725],[75.93064,23.14745],[75.92954,23.14432],[75.93266,23.1318],[75.95901,23.1254],[75.96019,23.12101],[75.95767,23.11139],[75.95781,23.10358],[75.96701,23.10229],[75.97957,23.10307],[75.97925,23.09461],[75.98124,23.08727],[75.9891,23.08789],[75.99174,23.0725],[75.982,23.07087],[75.97927,23.05757],[75.97983,23.03881],[75.97284,23.03821],[75.96425,23.02335],[75.95119,23.0222],[75.92971,23.02944],[75.92494,23.02891],[75.91994,23.02452],[75.90758,23.02742],[75.90315,23.02275],[75.90114,23.02268],[75.89835,23.01687],[75.90081,23.00231],[75.89706,23.00157],[75.90033,22.99844],[75.90136,22.9946],[75.90662,22.99243],[75.90983,22.98897],[75.91381,22.98827],[75.91194,22.98301],[75.91546,22.9763],[75.91751,22.97581],[75.91953,22.97967],[75.92482,22.98028],[75.92629,22.97825],[75.92357,22.97604],[75.9241,22.97473],[75.92865,22.97354],[75.93234,22.96881],[75.93646,22.96812],[75.93709,22.96305],[75.9423,22.96321],[75.94131,22.95851],[75.94643,22.95785],[75.94761,22.95301],[75.95143,22.95148],[75.95168,22.94651],[75.96018,22.94271],[75.96259,22.94477],[75.9651,22.94443],[75.96663,22.93821],[75.96469,22.93479],[75.96581,22.92956],[75.97073,22.9297],[75.97741,22.92178],[75.97716,22.91699],[75.98189,22.91112],[75.97961,22.90607],[75.98249,22.90165],[75.98297,22.89687],[75.98057,22.89313],[75.98614,22.88601],[75.9804,22.88327],[75.97937,22.88089],[75.9843,22.87276],[75.99063,22.87164],[75.99662,22.87423],[75.99688,22.87075],[76.00366,22.86569],[76.00604,22.86025],[76.01045,22.86016],[76.01109,22.86262],[76.01376,22.86303],[76.02324,22.85973],[76.02098,22.85683],[76.02265,22.851],[76.02759,22.85169],[76.03246,22.84757],[76.03399,22.84249],[76.03753,22.8412],[76.03685,22.83845],[76.03918,22.83724],[76.0367,22.83339],[76.03674,22.82982],[76.04242,22.82675],[76.04256,22.82313],[76.04852,22.8171],[76.05129,22.81901],[76.05425,22.816],[76.0515,22.81518],[76.05231,22.81365],[76.05076,22.81039],[76.04849,22.80908],[76.04921,22.80657],[76.05202,22.80589],[76.05377,22.80268],[76.0602,22.80693],[76.05997,22.80409],[76.06286,22.80216],[76.06224,22.79567],[76.06515,22.7912],[76.06803,22.78971],[76.06834,22.78139],[76.07209,22.77691],[76.07295,22.77336],[76.07669,22.77354],[76.08017,22.76785],[76.07882,22.76427],[76.0829,22.75985],[76.08308,22.75767],[76.07946,22.7554],[76.0821,22.75502],[76.08344,22.75207],[76.08575,22.75213],[76.08445,22.74877],[76.08903,22.74557],[76.08893,22.74027],[76.08652,22.73851],[76.08634,22.73405],[76.0878,22.73347],[76.08889,22.72903],[76.09801,22.72608],[76.09798,22.7231],[76.09351,22.71809],[76.09343,22.71504],[76.09604,22.71747],[76.09778,22.71578],[76.10031,22.71638],[76.10324,22.70152],[76.11789,22.69925],[76.1191,22.69935],[76.11975,22.70292],[76.12313,22.70271],[76.1281,22.69969],[76.1349,22.6982],[76.14088,22.69277],[76.15734,22.68948],[76.17109,22.69042],[76.17284,22.6942],[76.17525,22.69502],[76.18065,22.69454],[76.19049,22.69023],[76.197,22.68453],[76.19994,22.6765],[76.20396,22.67611],[76.19229,22.66754],[76.19129,22.66085],[76.19639,22.66279],[76.20067,22.66122],[76.2135,22.66189],[76.22183,22.66968],[76.22184,22.67171],[76.22967,22.67533],[76.23413,22.66181],[76.22786,22.65134],[76.23063,22.6515],[76.23311,22.64926],[76.24025,22.64887],[76.24201,22.64296],[76.24728,22.64383],[76.2375,22.63559],[76.23606,22.62384],[76.23207,22.61708],[76.2167,22.6158],[76.21432,22.61702],[76.21409,22.62309],[76.19943,22.62524],[76.1926,22.61261],[76.19317,22.60081],[76.1875,22.59713],[76.17566,22.60046],[76.17861,22.60511],[76.18468,22.60472],[76.18925,22.60884],[76.18566,22.61167],[76.18245,22.61156],[76.18374,22.61733],[76.17538,22.61486],[76.17421,22.61992],[76.17234,22.62118],[76.17577,22.62402],[76.17519,22.62604],[76.1807,22.63375],[76.18627,22.6325],[76.18781,22.63669],[76.19015,22.63468],[76.19045,22.63946],[76.18858,22.64005],[76.18513,22.6366],[76.18308,22.63919],[76.17856,22.63847],[76.17652,22.63488],[76.17485,22.63505],[76.17421,22.63179],[76.17203,22.63304],[76.17222,22.63015],[76.17013,22.62773],[76.16505,22.62952],[76.16066,22.63418],[76.15791,22.63408],[76.15934,22.62916],[76.15145,22.63263],[76.15394,22.62696],[76.15174,22.62541],[76.15227,22.62421],[76.16254,22.62265],[76.16313,22.61966],[76.16644,22.6171],[76.1659,22.61613],[76.15984,22.61884],[76.15736,22.61844],[76.15798,22.61551],[76.16067,22.61536],[76.16117,22.61157],[76.16572,22.61088],[76.16816,22.60345],[76.16511,22.60072],[76.16228,22.60085],[76.16124,22.60776],[76.1535,22.6089],[76.14878,22.61347],[76.14202,22.60752],[76.1478,22.60372],[76.14092,22.60362],[76.1413,22.60049],[76.14382,22.59862],[76.14151,22.59222],[76.1443,22.58994],[76.14367,22.58884],[76.13668,22.59241],[76.14136,22.59548],[76.13845,22.59783],[76.14084,22.59968],[76.13796,22.60414],[76.1359,22.60284],[76.13213,22.60463],[76.13278,22.59969],[76.13165,22.59829],[76.12784,22.60399],[76.12606,22.60153],[76.12802,22.59498],[76.1269,22.59398],[76.12412,22.59849],[76.121,22.59979],[76.11884,22.60421],[76.11659,22.60314],[76.1168,22.6003],[76.11362,22.60155],[76.10784,22.60002],[76.11324,22.59797],[76.11444,22.5952],[76.11711,22.59572],[76.11962,22.59357],[76.11909,22.5922],[76.12345,22.58921],[76.11951,22.59049],[76.1149,22.58888],[76.11441,22.58666],[76.11943,22.5849],[76.11549,22.58596],[76.11353,22.58192],[76.11104,22.59102],[76.1076,22.59312],[76.10545,22.59027],[76.10667,22.58786],[76.10545,22.58556],[76.10084,22.58638],[76.09858,22.59147],[76.10056,22.59559],[76.09712,22.59689],[76.09357,22.59115],[76.09121,22.59393],[76.09134,22.5977],[76.089,22.59994],[76.08673,22.59787],[76.08211,22.60344],[76.08208,22.59883],[76.08748,22.59273],[76.08314,22.59253],[76.08831,22.58617],[76.08395,22.58861],[76.08286,22.58785],[76.08478,22.58381],[76.07369,22.58572],[76.07249,22.58435],[76.06918,22.58622],[76.06481,22.58601],[76.06338,22.58827],[76.06175,22.58528],[76.07046,22.5801],[76.07259,22.577],[76.07248,22.57331],[76.07838,22.57318],[76.07963,22.56995],[76.08789,22.56571],[76.1002,22.56408],[76.10247,22.56471],[76.10258,22.56673],[76.1066,22.5668],[76.10365,22.56563],[76.10488,22.56356],[76.10271,22.56238],[76.10648,22.55979],[76.09728,22.55441],[76.09264,22.55665],[76.08505,22.54683],[76.0869,22.5408],[76.08679,22.53163],[76.09188,22.52155],[76.09369,22.5026],[76.0927,22.49986],[76.09822,22.48226],[76.09881,22.47459],[76.10116,22.47044],[76.11245,22.46712],[76.11318,22.46141],[76.12196,22.45833],[76.13144,22.45833],[76.14737,22.44351],[76.15384,22.44114],[76.16023,22.43591],[76.16864,22.43352],[76.17678,22.42764],[76.18572,22.4262],[76.19096,22.42087],[76.21227,22.41792],[76.23334,22.39365],[76.23481,22.38704],[76.23129,22.38052],[76.22896,22.37141],[76.2212,22.36451],[76.22041,22.35787],[76.21596,22.35617],[76.20671,22.35741],[76.20255,22.35524],[76.20183,22.35243],[76.20843,22.3475],[76.21431,22.33561],[76.21364,22.33196],[76.20845,22.32878],[76.21159,22.32275],[76.21936,22.31592],[76.22919,22.31299],[76.2382,22.29875],[76.25065,22.29027],[76.30607,22.29431],[76.32668,22.29836],[76.34623,22.30657],[76.35453,22.31657],[76.37924,22.32563],[76.39971,22.33736],[76.4189,22.33792],[76.41983,22.34004],[76.4232,22.34153],[76.4444,22.34281],[76.4455,22.34488],[76.44339,22.35142],[76.43736,22.3576],[76.43604,22.36379],[76.4383,22.37171],[76.44216,22.37592],[76.44354,22.38282],[76.45982,22.39261],[76.48219,22.40332],[76.49471,22.41162],[76.52019,22.41221],[76.52542,22.41196],[76.5485,22.4043],[76.55385,22.39874],[76.56856,22.40562],[76.57333,22.40296],[76.57865,22.4027],[76.58431,22.40499],[76.58483,22.40772],[76.58679,22.40594],[76.59125,22.40696],[76.60318,22.40571],[76.60748,22.40241],[76.60934,22.39858],[76.61257,22.39752],[76.61859,22.3898],[76.62128,22.37801],[76.62007,22.37554],[76.62225,22.37305],[76.63195,22.37116],[76.63433,22.36729],[76.63926,22.36582],[76.64482,22.36104],[76.64569,22.36306],[76.64931,22.36421],[76.65273,22.36347],[76.65529,22.3607],[76.65348,22.35799],[76.65414,22.35345],[76.66459,22.34559],[76.66069,22.34036],[76.66097,22.33526],[76.65509,22.3305],[76.68262,22.29665],[76.68381,22.29627],[76.68473,22.2985],[76.69617,22.29978],[76.70116,22.30474],[76.71921,22.31025],[76.72511,22.30925],[76.72605,22.30291],[76.72827,22.3007],[76.73396,22.30338],[76.73561,22.29973],[76.73542,22.29461],[76.73782,22.29234],[76.74215,22.29196],[76.74889,22.30223],[76.75658,22.30927],[76.76862,22.31631],[76.77651,22.33319],[76.77783,22.34024],[76.78101,22.34419],[76.78342,22.35536],[76.78051,22.36862],[76.78222,22.37768],[76.79121,22.39956],[76.78836,22.41903],[76.78968,22.42386],[76.79389,22.42833],[76.8107,22.43775],[76.81594,22.44293],[76.85134,22.45325],[76.86286,22.45884],[76.8714,22.46624],[76.89779,22.48141],[76.91878,22.48818],[76.94425,22.49154],[76.9776,22.48964],[77.00097,22.4934],[77.02629,22.49347],[77.04199,22.49698],[77.07842,22.509],[77.09156,22.5175],[77.12109,22.54803],[77.13004,22.55542],[77.12276,22.56335],[77.13263,22.57683],[77.13011,22.57807],[77.13118,22.58315],[77.12661,22.58553],[77.12683,22.59333],[77.12426,22.59628],[77.12683,22.59737],[77.11634,22.59784],[77.1137,22.60237],[77.11066,22.60221],[77.10861,22.60373],[77.10934,22.6053],[77.10274,22.60849],[77.10168,22.61441],[77.09703,22.61518],[77.09362,22.61825],[77.09123,22.61715],[77.08885,22.62019],[77.08728,22.6195],[77.0876,22.62723],[77.08927,22.62984],[77.08714,22.63645],[77.09106,22.64169],[77.09102,22.64435],[77.08936,22.64543],[77.09245,22.64709],[77.09041,22.65067],[77.0881,22.65275],[77.08169,22.65433],[77.07747,22.65817],[77.06947,22.65793],[77.06886,22.66117],[77.06167,22.66421],[77.05943,22.66915],[77.06014,22.67602],[77.05544,22.67841],[77.05072,22.67375],[77.04634,22.67187],[77.04476,22.66506],[77.0366,22.68109],[77.034,22.68496],[77.03135,22.6858],[77.03059,22.68999],[77.03347,22.69417],[77.03721,22.6948],[77.03759,22.69312],[77.03966,22.6928],[77.04183,22.69623],[77.04507,22.69577],[77.04518,22.69932],[77.04061,22.70497],[77.03958,22.72357],[77.03724,22.72741],[77.0216,22.72956],[77.02106,22.74239],[77.02044,22.7447],[77.01718,22.74651],[77.01811,22.75231],[77.02145,22.75205],[77.02833,22.75752],[77.02938,22.77075],[77.02458,22.78352],[77.01813,22.78923],[77.01465,22.78917],[77.01176,22.79217],[77.01346,22.79991],[77.00991,22.80342],[77.01168,22.80662],[77.0093,22.81155],[77.00576,22.81432],[77.00772,22.81619],[77.00633,22.82155],[77.0106,22.82839],[77.01078,22.83236],[77.00555,22.83627],[77.00746,22.84138],[77.00387,22.84413],[77.00712,22.85971],[77.0053,22.86171],[77.00661,22.86453],[77.00606,22.86881],[77.00215,22.87344],[77.00392,22.87892],[76.99991,22.87683],[76.99171,22.87769],[76.99436,22.8727],[76.99363,22.86892],[76.98488,22.87465],[76.97864,22.86943],[76.97888,22.86603],[76.97234,22.86487],[76.97185,22.86208],[76.97012,22.86421],[76.96753,22.86374],[76.96782,22.85915],[76.96525,22.86069],[76.96731,22.86475],[76.96213,22.86567],[76.96144,22.86356],[76.96091,22.86645],[76.95776,22.8688],[76.95496,22.86293],[76.95538,22.8603],[76.95211,22.86152],[76.95138,22.86739],[76.95473,22.87229],[76.95645,22.87241],[76.95625,22.87417],[76.95365,22.87556],[76.95181,22.87096],[76.94861,22.87759],[76.94865,22.87377],[76.94693,22.87384],[76.94636,22.87015],[76.94295,22.8701],[76.94431,22.86218],[76.9393,22.86848],[76.94203,22.87119],[76.94083,22.87329],[76.93859,22.8719],[76.93854,22.87503],[76.93447,22.87304],[76.93457,22.87079],[76.93187,22.87045],[76.92869,22.86749],[76.93643,22.86086],[76.93376,22.86084],[76.92796,22.86477],[76.93167,22.85826],[76.93182,22.85348],[76.93019,22.85432],[76.92802,22.85166],[76.92696,22.8527],[76.92851,22.85915],[76.92704,22.86003],[76.92695,22.85785],[76.92438,22.85629],[76.92376,22.85126],[76.91933,22.84121],[76.926,22.83519],[76.93006,22.82834],[76.92945,22.82218],[76.92661,22.82469],[76.92555,22.82353],[76.92478,22.82627],[76.92266,22.82748],[76.91456,22.8256],[76.91049,22.82978],[76.92113,22.83076],[76.92066,22.83426],[76.91403,22.84039],[76.91936,22.84654],[76.91893,22.85135],[76.92489,22.86439],[76.92236,22.86703],[76.92024,22.86539],[76.92052,22.86367],[76.91767,22.8624],[76.91772,22.85773],[76.91572,22.85674],[76.91588,22.86197],[76.91277,22.85802],[76.91205,22.86287],[76.9073,22.85906],[76.91053,22.86324],[76.91458,22.86193],[76.91452,22.86866],[76.91675,22.87463],[76.90071,22.86678],[76.89536,22.86697],[76.90102,22.87054],[76.90636,22.87066],[76.90083,22.87753],[76.90079,22.88166],[76.90349,22.88436],[76.9031,22.88788],[76.89805,22.88971],[76.89809,22.88521],[76.89598,22.88243],[76.89488,22.87629],[76.8939,22.87759],[76.89512,22.87987],[76.89007,22.8783],[76.88824,22.88112],[76.88699,22.87588],[76.88479,22.87957],[76.88647,22.88521],[76.886,22.89006],[76.88361,22.8908],[76.88456,22.88798],[76.88346,22.88415],[76.88219,22.88312],[76.88059,22.88506],[76.87916,22.88212],[76.88218,22.87733],[76.87753,22.8789],[76.88521,22.87099],[76.88495,22.86806],[76.88094,22.86974],[76.87691,22.86384],[76.87132,22.88058],[76.86838,22.88412],[76.86664,22.87768],[76.86855,22.87503],[76.86557,22.87559],[76.86275,22.87408],[76.86766,22.87112],[76.86603,22.8702],[76.86797,22.86399],[76.86425,22.86961],[76.86113,22.86658],[76.86103,22.87279],[76.85869,22.87147],[76.85666,22.87694],[76.85192,22.87381],[76.85661,22.86979],[76.85682,22.86719],[76.85228,22.86923],[76.84957,22.86849],[76.85651,22.86252],[76.85396,22.86129],[76.84341,22.86344],[76.84037,22.86576],[76.84097,22.86889],[76.83877,22.87187],[76.83711,22.86841],[76.83247,22.86459],[76.83368,22.85572],[76.83138,22.85894],[76.83061,22.86415],[76.82804,22.85807],[76.82573,22.85966],[76.8253,22.86257],[76.8205,22.86219],[76.81988,22.86066],[76.82169,22.85914],[76.81949,22.85819],[76.81888,22.86003],[76.81558,22.86106],[76.81383,22.85722],[76.81541,22.8571],[76.81463,22.8543],[76.81806,22.85375],[76.81823,22.8523],[76.81619,22.85178],[76.81448,22.85385],[76.81045,22.84975],[76.80447,22.84989],[76.80492,22.84775],[76.80262,22.84519],[76.80689,22.8463],[76.8078,22.84471],[76.80647,22.84543],[76.8059,22.84229],[76.80367,22.84332],[76.80053,22.83939],[76.80132,22.83698],[76.79774,22.83724],[76.79847,22.83488],[76.79663,22.8342],[76.79776,22.83339],[76.79588,22.83139],[76.79136,22.83267],[76.79162,22.83411],[76.78803,22.83326],[76.78899,22.83211],[76.78717,22.83007],[76.78589,22.83174],[76.78363,22.82948],[76.77946,22.8289],[76.7827,22.82667],[76.78511,22.82717],[76.78204,22.826],[76.78269,22.82366],[76.77751,22.82826],[76.77182,22.8225],[76.76783,22.82228],[76.77015,22.82125],[76.76617,22.81975],[76.7665,22.81698],[76.77045,22.81552],[76.77134,22.81664],[76.77113,22.81457],[76.77508,22.81839],[76.7748,22.81632],[76.7769,22.81568],[76.7701,22.81372],[76.76819,22.81641],[76.76199,22.81419],[76.75815,22.81652],[76.7571,22.81933],[76.75364,22.81992],[76.75499,22.82116],[76.75343,22.82448],[76.74257,22.82336],[76.73709,22.81867],[76.73955,22.81691],[76.74383,22.81935],[76.74107,22.8156],[76.73489,22.81601],[76.72047,22.81239],[76.71542,22.81382],[76.73149,22.81571],[76.72034,22.81874],[76.73004,22.81916],[76.73317,22.81787],[76.73276,22.82016],[76.72932,22.8219],[76.71898,22.82361],[76.71466,22.82275],[76.71381,22.8202],[76.70343,22.81967],[76.69664,22.81649],[76.69797,22.81234],[76.70004,22.81422],[76.70396,22.81382],[76.70264,22.81319],[76.70356,22.81218],[76.69894,22.81174],[76.69911,22.80984],[76.70456,22.80796],[76.70886,22.80853],[76.71054,22.79282],[76.69102,22.78989],[76.68696,22.79392],[76.68457,22.79025],[76.68383,22.7817],[76.67978,22.78539],[76.67566,22.78449],[76.66521,22.78735],[76.66154,22.78114],[76.66115,22.78579],[76.6532,22.78751],[76.65528,22.79134],[76.65462,22.79717],[76.65206,22.79601],[76.6522,22.80068],[76.64617,22.8048],[76.64763,22.80062],[76.64636,22.79859],[76.6428,22.79996],[76.64043,22.79619],[76.63882,22.79731],[76.63377,22.79592],[76.62772,22.79685],[76.63223,22.79282],[76.62617,22.79166],[76.62285,22.79486],[76.62334,22.78918],[76.6166,22.78915],[76.61962,22.78651],[76.61843,22.78466],[76.62145,22.7845],[76.62166,22.78271],[76.62815,22.78605],[76.63284,22.78661],[76.6281,22.78289],[76.61981,22.78091],[76.61641,22.78112],[76.61471,22.7829],[76.61241,22.78102],[76.61276,22.77824],[76.61104,22.77876],[76.60931,22.7771],[76.60653,22.78056],[76.59431,22.77787],[76.589,22.77286],[76.58221,22.76957],[76.58288,22.76658],[76.57384,22.75909],[76.57095,22.75914],[76.56786,22.76367],[76.57127,22.75995],[76.57348,22.75973],[76.57676,22.76405],[76.575,22.76637],[76.57699,22.76909],[76.57579,22.77161],[76.56989,22.77337],[76.56558,22.77897],[76.56311,22.77971],[76.56039,22.77889],[76.5555,22.77106],[76.55475,22.77293],[76.55999,22.77909],[76.56677,22.78293],[76.56652,22.78483],[76.55929,22.78499],[76.55793,22.78804],[76.55223,22.78465],[76.55248,22.79083],[76.55026,22.79255],[76.55308,22.79446],[76.54975,22.79583],[76.54903,22.79785],[76.54086,22.79842],[76.5389,22.79724],[76.53851,22.79457],[76.5361,22.7965],[76.53359,22.79373],[76.53092,22.80045],[76.52724,22.80042],[76.52575,22.79879],[76.52829,22.80492],[76.52519,22.81507],[76.52558,22.82077],[76.53067,22.83279],[76.53395,22.83578],[76.53517,22.84212],[76.52715,22.85491],[76.52874,22.85884],[76.5151,22.86428],[76.51687,22.86808],[76.51099,22.86919],[76.50596,22.87593],[76.50151,22.87619],[76.5011,22.87846],[76.50411,22.88435],[76.50072,22.88876],[76.49323,22.89264],[76.48521,22.89392],[76.47978,22.89802],[76.46754,22.89992],[76.46907,22.90581],[76.46613,22.91332],[76.45939,22.9192],[76.45465,22.91969],[76.45587,22.92078],[76.45322,22.92585],[76.45708,22.93078],[76.46072,22.94232],[76.46369,22.94638],[76.46113,22.95434],[76.46455,22.96684],[76.44497,22.97079],[76.44347,22.97583],[76.4324,22.9791],[76.4302,22.98386],[76.43278,22.99024],[76.43856,22.99274],[76.44146,22.99109],[76.4498,22.99753],[76.45463,22.99742],[76.45881,23.00031],[76.46346,23.00006],[76.46556,23.00256],[76.46966,23.00131],[76.46411,23.02346],[76.45398,23.0272],[76.45757,23.03229],[76.46024,23.04852],[76.46199,23.04977],[76.4649,23.04868],[76.46777,23.06669],[76.46731,23.07574],[76.45329,23.07788],[76.45393,23.08736],[76.45629,23.0916],[76.48182,23.08986],[76.48629,23.08768],[76.49163,23.07713],[76.50141,23.07455],[76.52115,23.07428],[76.5244,23.0831],[76.52493,23.09009],[76.49704,23.09825],[76.50112,23.11322],[76.50801,23.11754],[76.51329,23.11482],[76.52802,23.11279],[76.5304,23.12057],[76.53437,23.12401],[76.53816,23.13045],[76.5403,23.13093],[76.54089,23.13773],[76.54265,23.1406],[76.52693,23.14722],[76.52526,23.15033],[76.52727,23.15889],[76.52547,23.15899],[76.52242,23.16924],[76.51184,23.18014],[76.49643,23.18202],[76.48847,23.18494],[76.48229,23.18298],[76.47302,23.18309],[76.4592,23.18972],[76.45977,23.19459],[76.45181,23.19616],[76.43238,23.19262],[76.42835,23.19601],[76.4257,23.19407],[76.42507,23.19683],[76.42235,23.19619],[76.4198,23.19828],[76.41663,23.19832],[76.41836,23.20156],[76.41227,23.21142],[76.41362,23.21914],[76.40057,23.221],[76.39594,23.22597],[76.38833,23.22603],[76.3826,23.22977],[76.36487,23.23287],[76.36022,23.23154],[76.356,23.22565],[76.34208,23.22757],[76.33239,23.22662],[76.32027,23.23397],[76.31254,23.22909],[76.30658,23.23052],[76.29929,23.22852],[76.29056,23.22994],[76.27562,23.22952],[76.26133,23.22157],[76.25796,23.22115],[76.25233,23.21671],[76.24484,23.2221],[76.22675,23.22654],[76.22285,23.22397],[76.21734,23.22579],[76.20498,23.22251],[76.19222,23.2252],[76.19104,23.22863],[76.18422,23.22967],[76.16324,23.22473],[76.1618,23.22939],[76.15542,23.23181],[76.15375,23.23404],[76.14386,23.23111],[76.14191,23.23136],[76.14189,23.23299],[76.13923,23.23278],[76.13548,23.23676],[76.12707,23.23986],[76.12853,23.24374],[76.12059,23.24367],[76.0983,23.23821],[76.0966,23.24364],[76.08209,23.24253],[76.07839,23.23417],[76.07502,23.2338],[76.07511,23.22883],[76.08442,23.22832],[76.0876,23.22508],[76.08437,23.21313],[76.08125,23.21242],[76.08111,23.21388],[76.07534,23.21661],[76.05969,23.21862],[76.05622,23.20701],[76.07029,23.20442],[76.07293,23.20226],[76.08327,23.2025],[76.08439,23.19726],[76.09387,23.19777],[76.09682,23.20633],[76.1108,23.20691],[76.13328,23.21436],[76.13479,23.20613],[76.13252,23.20304],[76.14882,23.19962],[76.14719,23.19009],[76.14165,23.18574],[76.14125,23.18115],[76.12565,23.1803],[76.12537,23.18191],[76.11821,23.18149],[76.10279,23.17591],[76.09523,23.17521],[76.08474,23.16923],[76.08349,23.16651],[76.08086,23.16635],[76.08092,23.16918],[76.07547,23.17343],[76.07382,23.17941],[76.07445,23.18364],[76.06008,23.18587],[76.06052,23.15967],[76.05885,23.15994],[76.05716,23.15659],[76.05724,23.14697],[76.07001,23.14515],[76.07045,23.12742],[76.09049,23.12413],[76.09085,23.12011],[76.09582,23.1159],[76.099,23.11001],[76.10467,23.10531],[76.10744,23.10568],[76.10972,23.09839],[76.11662,23.08811],[76.11786,23.08193],[76.11635,23.07294],[76.11733,23.06321],[76.11273,23.05091],[76.10988,23.05039],[76.10988,23.04821],[76.10851,23.04807],[76.08778,23.04971],[76.08745,23.04786],[76.08284,23.04808],[76.08316,23.0559],[76.08063,23.06699],[76.07309,23.06972],[76.07145,23.06873],[76.0689,23.07232],[76.07096,23.07618],[76.06095,23.07662],[76.06201,23.08765],[76.06419,23.08822],[76.06415,23.09346],[76.06623,23.09449],[76.0651,23.09617],[76.06599,23.10271],[76.0615,23.1044],[76.06208,23.10817],[76.05955,23.10937],[76.0617,23.10979],[76.06108,23.11738],[76.05717,23.11768],[76.05673,23.12433],[76.05501,23.12727],[76.05304,23.12614],[76.04978,23.1291],[76.05087,23.13265],[76.04686,23.13686],[76.04738,23.13933],[76.04309,23.13912],[76.04098,23.14085],[76.04363,23.14568],[76.04163,23.14981],[76.04235,23.15566],[76.04526,23.15988],[76.04329,23.16256],[76.0403,23.16175],[76.04008,23.16555],[76.04328,23.16701],[76.04191,23.17185],[76.03919,23.17247],[76.03931,23.17597],[76.04122,23.17762],[76.039,23.17937],[76.04097,23.18153],[76.03457,23.18468],[76.03336,23.18712],[76.0306,23.18635],[76.02801,23.19207],[76.02463,23.1896],[76.02306,23.19065],[76.02245,23.19618],[76.01699,23.20007],[76.02025,23.20478],[76.01036,23.20958],[76.00786,23.2142],[76.00906,23.22497],[76.00167,23.22366],[76.00347,23.23023],[76.00276,23.23735],[75.99228,23.23929],[75.99162,23.24063],[75.99111,23.2393],[75.98684,23.23962],[75.98553,23.24118],[75.98005,23.23864],[75.97891,23.23974],[75.97013,23.23908],[75.96851,23.25597],[75.97177,23.26301],[75.99391,23.26402],[75.99034,23.27901],[75.98743,23.27872],[75.9833,23.28953],[75.97521,23.30271],[75.9641,23.3009],[75.96085,23.32141]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"403","area_level":"District","area_name":"Dhar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.25513,23.13303],[75.24219,23.13516],[75.23989,23.12919],[75.24149,23.11753],[75.24388,23.11755],[75.2438,23.11294],[75.24117,23.0931],[75.23791,23.08573],[75.23177,23.08769],[75.21953,23.08838],[75.21131,23.09127],[75.18704,23.09203],[75.17727,23.09636],[75.1778,23.09884],[75.18001,23.0997],[75.17859,23.10063],[75.1692,23.10397],[75.16784,23.10602],[75.16363,23.10468],[75.1598,23.10565],[75.15724,23.10931],[75.15394,23.10493],[75.1493,23.10477],[75.14773,23.10668],[75.14209,23.10741],[75.14036,23.10529],[75.137,23.10498],[75.13382,23.10726],[75.12096,23.10778],[75.11711,23.10999],[75.11409,23.10921],[75.10956,23.11524],[75.10717,23.11468],[75.10707,23.10965],[75.0804,23.10462],[75.06446,23.10717],[75.04825,23.10654],[75.03918,23.10872],[75.03264,23.11336],[75.02805,23.11147],[75.01361,23.11272],[75.00637,23.10948],[75.00881,23.10645],[75.01122,23.09684],[75.01484,23.09161],[75.01596,23.08563],[75.00717,23.07774],[75.00271,23.05668],[75.00486,23.05239],[75.01354,23.04342],[75.01521,23.03671],[75.00687,23.02416],[75.01235,23.01323],[75.00857,23.00341],[75.00889,22.99338],[75.00336,22.97112],[75.0075,22.96273],[75.00247,22.95521],[75.00616,22.93889],[74.99977,22.92797],[74.99975,22.92173],[75.00314,22.91305],[74.99984,22.90732],[74.98577,22.89273],[74.98466,22.88726],[74.98749,22.87416],[74.98513,22.86662],[74.98185,22.86233],[74.965,22.85136],[74.95216,22.83555],[74.95101,22.82833],[74.95401,22.82041],[74.95004,22.81317],[74.95028,22.80735],[74.94632,22.80352],[74.94331,22.80281],[74.94284,22.79968],[74.94009,22.79793],[74.93724,22.79167],[74.92619,22.78706],[74.91871,22.7792],[74.90272,22.772],[74.90174,22.75764],[74.89532,22.74823],[74.88447,22.75527],[74.87303,22.75563],[74.85683,22.75289],[74.85666,22.75053],[74.85465,22.75015],[74.85194,22.74644],[74.83072,22.75053],[74.81598,22.75013],[74.80491,22.75255],[74.79013,22.7598],[74.77548,22.75551],[74.7719,22.75136],[74.77031,22.75107],[74.76837,22.75341],[74.76043,22.75143],[74.76234,22.75053],[74.76202,22.74488],[74.76535,22.74064],[74.76522,22.73591],[74.77478,22.71868],[74.77265,22.71156],[74.78224,22.69222],[74.78232,22.67868],[74.78089,22.67551],[74.78402,22.67418],[74.7851,22.66864],[74.78984,22.66788],[74.79124,22.66355],[74.79631,22.65873],[74.7949,22.65592],[74.78809,22.65162],[74.78413,22.64377],[74.78942,22.6303],[74.78314,22.60985],[74.78234,22.58057],[74.78011,22.5789],[74.77756,22.57286],[74.77229,22.56997],[74.76638,22.57087],[74.75969,22.56361],[74.75222,22.55921],[74.74746,22.56102],[74.73625,22.55745],[74.72787,22.55229],[74.72742,22.54661],[74.72035,22.53885],[74.7187,22.53308],[74.71649,22.53235],[74.71247,22.5263],[74.71511,22.52338],[74.71593,22.51825],[74.72122,22.51505],[74.71998,22.51314],[74.72127,22.50445],[74.72535,22.50189],[74.72114,22.49724],[74.71341,22.49896],[74.70905,22.48824],[74.70978,22.48376],[74.70509,22.47816],[74.71237,22.47219],[74.71284,22.46197],[74.7173,22.45838],[74.72188,22.4587],[74.72623,22.45581],[74.73639,22.45285],[74.73916,22.44559],[74.74651,22.44194],[74.74767,22.43728],[74.74248,22.43441],[74.7348,22.43751],[74.72381,22.43902],[74.72094,22.43312],[74.72108,22.4292],[74.71449,22.42318],[74.71227,22.42488],[74.69924,22.42506],[74.69665,22.42316],[74.69384,22.41708],[74.69002,22.41586],[74.68848,22.41248],[74.69115,22.40954],[74.69126,22.40655],[74.68868,22.40286],[74.69689,22.39767],[74.69447,22.39409],[74.69165,22.39318],[74.69198,22.3871],[74.68989,22.38367],[74.69214,22.38022],[74.69405,22.37984],[74.69114,22.37473],[74.69189,22.36809],[74.68339,22.36467],[74.68163,22.36095],[74.67838,22.36078],[74.67719,22.36395],[74.67312,22.36176],[74.67196,22.36297],[74.673,22.36707],[74.66868,22.36698],[74.66452,22.36933],[74.66087,22.3679],[74.64825,22.36961],[74.63131,22.36598],[74.63038,22.35887],[74.63234,22.35308],[74.62162,22.34625],[74.62289,22.32868],[74.63175,22.31933],[74.6332,22.3161],[74.63253,22.31053],[74.6379,22.30983],[74.63596,22.30601],[74.63954,22.30275],[74.65799,22.30451],[74.65996,22.30395],[74.66186,22.29968],[74.66144,22.28825],[74.65824,22.28901],[74.65359,22.28586],[74.65265,22.28032],[74.64896,22.2742],[74.63493,22.26988],[74.61874,22.27071],[74.61418,22.26826],[74.60777,22.27041],[74.59914,22.26813],[74.5963,22.2632],[74.60214,22.25985],[74.60377,22.2562],[74.60223,22.25441],[74.59532,22.25336],[74.59037,22.25057],[74.59026,22.24325],[74.57519,22.24234],[74.56404,22.24597],[74.55952,22.24301],[74.56229,22.22386],[74.55676,22.21968],[74.55154,22.22163],[74.54705,22.23138],[74.54263,22.23695],[74.5267,22.23639],[74.52105,22.2266],[74.51207,22.22021],[74.51171,22.21699],[74.52167,22.20545],[74.51558,22.2026],[74.51553,22.19858],[74.50757,22.18992],[74.50968,22.18632],[74.50952,22.18296],[74.49916,22.18206],[74.49635,22.17947],[74.49752,22.16669],[74.50219,22.15659],[74.50902,22.14987],[74.52651,22.1464],[74.53029,22.12885],[74.53541,22.1228],[74.5403,22.12341],[74.54063,22.11748],[74.49916,22.11289],[74.47105,22.11355],[74.47579,22.10055],[74.47563,22.09645],[74.49916,22.10019],[74.50736,22.09906],[74.51505,22.10017],[74.51561,22.08941],[74.50941,22.08779],[74.50839,22.08461],[74.50387,22.08383],[74.50404,22.07949],[74.50079,22.07831],[74.49974,22.07362],[74.49777,22.07166],[74.49255,22.07106],[74.49492,22.05508],[74.49916,22.05302],[74.50223,22.04458],[74.51094,22.04584],[74.5258,22.05181],[74.53406,22.0519],[74.54175,22.04706],[74.55368,22.02866],[74.56221,22.02339],[74.56679,22.02232],[74.59183,22.02334],[74.61955,22.02907],[74.63758,22.03699],[74.66538,22.03411],[74.67891,22.03573],[74.68444,22.03807],[74.68944,22.0453],[74.69447,22.04854],[74.73347,22.05989],[74.7528,22.06957],[74.77768,22.07854],[74.7913,22.07724],[74.81988,22.0656],[74.83421,22.06215],[74.84768,22.06442],[74.88746,22.07909],[74.91471,22.08374],[74.97116,22.08416],[75.03423,22.08947],[75.06053,22.09466],[75.11483,22.0962],[75.14762,22.1034],[75.18821,22.10475],[75.19792,22.1074],[75.21842,22.11867],[75.23861,22.12407],[75.25124,22.1255],[75.28948,22.12499],[75.32263,22.13687],[75.36405,22.14157],[75.37865,22.14126],[75.39013,22.13675],[75.39819,22.1366],[75.40902,22.13906],[75.42806,22.14633],[75.45589,22.15165],[75.49061,22.15398],[75.50263,22.15659],[75.50931,22.16205],[75.51122,22.17319],[75.5206,22.17322],[75.51583,22.1864],[75.51974,22.19095],[75.52281,22.21103],[75.53135,22.22095],[75.53565,22.23428],[75.52771,22.25059],[75.53301,22.26336],[75.52925,22.27121],[75.51881,22.27739],[75.51749,22.27974],[75.51481,22.29374],[75.5187,22.32622],[75.51415,22.32915],[75.51026,22.32773],[75.50686,22.32352],[75.49904,22.32681],[75.48998,22.32625],[75.49585,22.33319],[75.49651,22.33978],[75.50497,22.33639],[75.50926,22.33931],[75.51001,22.35019],[75.5035,22.36754],[75.50854,22.37368],[75.51482,22.37312],[75.51804,22.37537],[75.52242,22.37547],[75.52791,22.37099],[75.52601,22.36748],[75.52791,22.36487],[75.53804,22.36529],[75.5392,22.36266],[75.5368,22.3568],[75.54103,22.35789],[75.54272,22.36126],[75.55401,22.36367],[75.55808,22.37038],[75.56464,22.37584],[75.5574,22.3769],[75.5518,22.38286],[75.55492,22.38797],[75.55042,22.38979],[75.55016,22.3925],[75.54793,22.39423],[75.54683,22.39239],[75.54585,22.40809],[75.54284,22.41147],[75.54019,22.41158],[75.55336,22.41806],[75.56367,22.42706],[75.56615,22.43598],[75.56531,22.44298],[75.57444,22.45301],[75.56462,22.47167],[75.56699,22.47804],[75.56505,22.49077],[75.55361,22.48863],[75.5529,22.49094],[75.55407,22.49947],[75.55821,22.50795],[75.5575,22.51518],[75.56591,22.51612],[75.57171,22.51367],[75.57717,22.51352],[75.57812,22.51781],[75.59846,22.51992],[75.59972,22.52444],[75.59699,22.52692],[75.59767,22.54196],[75.60236,22.54089],[75.59512,22.54739],[75.59592,22.56706],[75.60986,22.56844],[75.60988,22.56595],[75.61552,22.55845],[75.61833,22.55859],[75.62022,22.56088],[75.63108,22.55972],[75.63464,22.56099],[75.63516,22.56579],[75.65718,22.56915],[75.663,22.57216],[75.66407,22.57613],[75.68076,22.58186],[75.68018,22.58438],[75.68328,22.58792],[75.68611,22.5961],[75.69619,22.59564],[75.698,22.61363],[75.70022,22.61174],[75.70491,22.6148],[75.70804,22.61472],[75.71356,22.61962],[75.71361,22.63431],[75.70859,22.64921],[75.70677,22.66166],[75.69139,22.66137],[75.68604,22.65887],[75.67859,22.65803],[75.68355,22.65487],[75.68322,22.65058],[75.68013,22.64974],[75.67894,22.64306],[75.6833,22.63732],[75.68713,22.63856],[75.69217,22.644],[75.70436,22.64654],[75.70551,22.63084],[75.69668,22.62638],[75.68756,22.62981],[75.67969,22.63614],[75.65516,22.63832],[75.64534,22.63222],[75.60494,22.63062],[75.59968,22.64365],[75.59843,22.65109],[75.59141,22.65311],[75.58968,22.65924],[75.58404,22.66059],[75.57588,22.66099],[75.56765,22.65806],[75.5647,22.63613],[75.55465,22.63774],[75.53739,22.63583],[75.53595,22.63021],[75.52866,22.63079],[75.52775,22.63587],[75.52363,22.64047],[75.52473,22.64121],[75.5241,22.6457],[75.5181,22.6531],[75.52377,22.65459],[75.52054,22.65964],[75.51787,22.65915],[75.51473,22.65089],[75.50938,22.64425],[75.4954,22.64532],[75.4975,22.66012],[75.507,22.66295],[75.52011,22.66183],[75.51934,22.66442],[75.52068,22.66725],[75.51713,22.68386],[75.50722,22.69523],[75.51163,22.69758],[75.51486,22.70921],[75.50692,22.71545],[75.51019,22.72492],[75.50908,22.73215],[75.49471,22.73169],[75.49561,22.74533],[75.48905,22.74672],[75.4836,22.75131],[75.48574,22.75421],[75.48513,22.75886],[75.48805,22.76181],[75.491,22.76228],[75.48993,22.76381],[75.48408,22.76637],[75.48371,22.76902],[75.48086,22.76914],[75.4791,22.77138],[75.47508,22.77052],[75.47434,22.77304],[75.47177,22.77312],[75.46581,22.76923],[75.45632,22.76946],[75.4382,22.77361],[75.43916,22.7866],[75.44306,22.7956],[75.43475,22.7991],[75.43583,22.80939],[75.42522,22.80953],[75.42627,22.82466],[75.42363,22.8247],[75.42307,22.82874],[75.42506,22.83155],[75.43169,22.82995],[75.43494,22.83114],[75.43304,22.84472],[75.43763,22.84426],[75.44091,22.85034],[75.44202,22.86714],[75.41456,22.86893],[75.40575,22.87137],[75.37149,22.86851],[75.36916,22.85968],[75.37054,22.84665],[75.36301,22.84605],[75.35156,22.83044],[75.34107,22.82973],[75.33029,22.83996],[75.3311,22.86101],[75.33469,22.87314],[75.33136,22.87363],[75.33084,22.87986],[75.32328,22.88189],[75.32434,22.89419],[75.32236,22.90087],[75.32635,22.91446],[75.31852,22.93004],[75.30688,22.9312],[75.30577,22.95559],[75.32509,22.95693],[75.32633,22.98634],[75.30018,22.9945],[75.30251,23.00742],[75.30182,23.01886],[75.30711,23.02994],[75.30249,23.03616],[75.30145,23.04222],[75.30184,23.04524],[75.3131,23.04387],[75.32071,23.03794],[75.33477,23.03946],[75.33546,23.05868],[75.34538,23.05915],[75.34793,23.06356],[75.34715,23.06837],[75.34507,23.07109],[75.32457,23.06883],[75.32355,23.07699],[75.31671,23.09015],[75.31557,23.09549],[75.32002,23.1081],[75.31851,23.10943],[75.31715,23.10762],[75.31196,23.10824],[75.30986,23.10581],[75.30642,23.10761],[75.30028,23.10688],[75.29696,23.10971],[75.30029,23.11123],[75.3006,23.127],[75.29212,23.12872],[75.29093,23.13079],[75.26834,23.13142],[75.26826,23.13347],[75.25513,23.13303]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"404","area_level":"District","area_name":"Dindori","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.70543,23.3723],[80.69945,23.37454],[80.69166,23.37112],[80.69208,23.36987],[80.68547,23.36997],[80.67887,23.36838],[80.67739,23.36641],[80.65559,23.36547],[80.62458,23.36023],[80.60783,23.35148],[80.59941,23.34887],[80.57597,23.35187],[80.57405,23.34983],[80.57312,23.33638],[80.56781,23.31637],[80.58283,23.31368],[80.58461,23.29103],[80.58249,23.28226],[80.57136,23.28178],[80.56915,23.27731],[80.56839,23.26885],[80.54302,23.27073],[80.54347,23.26237],[80.53338,23.25716],[80.52262,23.25913],[80.52075,23.25228],[80.52207,23.24822],[80.52165,23.24065],[80.50357,23.21117],[80.50305,23.20243],[80.48494,23.20205],[80.47831,23.20033],[80.4799,23.19316],[80.49842,23.18733],[80.50352,23.18263],[80.50848,23.17632],[80.51023,23.17083],[80.51455,23.17014],[80.51415,23.1689],[80.51843,23.16466],[80.52281,23.15421],[80.52963,23.15905],[80.53592,23.16116],[80.54243,23.16643],[80.55191,23.16731],[80.55468,23.16466],[80.5558,23.15372],[80.56221,23.14707],[80.58192,23.13804],[80.57756,23.12777],[80.57415,23.12713],[80.56745,23.12055],[80.5649,23.11987],[80.55694,23.12198],[80.55399,23.11912],[80.55192,23.11232],[80.54197,23.10406],[80.52542,23.10481],[80.52488,23.09779],[80.52932,23.08335],[80.5384,23.08065],[80.54269,23.07314],[80.54677,23.08042],[80.54941,23.07891],[80.55054,23.08409],[80.55274,23.08356],[80.55287,23.07435],[80.54929,23.07183],[80.55653,23.05754],[80.55975,23.03041],[80.5718,23.0214],[80.57181,23.01493],[80.57,23.01417],[80.56693,23.00526],[80.56509,22.99448],[80.55739,22.99428],[80.55583,22.99573],[80.55543,22.99373],[80.55897,22.98969],[80.55915,22.98722],[80.56937,22.98571],[80.57156,22.97835],[80.57639,22.97637],[80.57299,22.96429],[80.56796,22.95778],[80.55856,22.95807],[80.54555,22.96346],[80.54272,22.96106],[80.53832,22.94808],[80.53559,22.94577],[80.53165,22.94521],[80.51663,22.95226],[80.51279,22.95099],[80.50933,22.94726],[80.5132,22.94202],[80.51869,22.93845],[80.53151,22.93572],[80.53967,22.91946],[80.53801,22.90307],[80.52601,22.8745],[80.52343,22.87189],[80.53113,22.87231],[80.54419,22.86825],[80.55234,22.86955],[80.55609,22.87184],[80.56029,22.88047],[80.56832,22.87603],[80.5681,22.86992],[80.58228,22.86562],[80.5825,22.86309],[80.58895,22.86022],[80.58854,22.85668],[80.6122,22.85785],[80.63066,22.85522],[80.64826,22.84865],[80.64811,22.84506],[80.651,22.83948],[80.65525,22.84281],[80.66201,22.84311],[80.66709,22.84225],[80.67027,22.83633],[80.67376,22.83821],[80.67904,22.83653],[80.68181,22.83919],[80.68336,22.84317],[80.68195,22.84931],[80.68388,22.8513],[80.68857,22.8443],[80.69268,22.85634],[80.6961,22.85241],[80.70034,22.85065],[80.70887,22.85071],[80.71149,22.85713],[80.71846,22.86258],[80.73637,22.85645],[80.73808,22.84963],[80.74083,22.8468],[80.74275,22.84119],[80.73802,22.84196],[80.73726,22.83857],[80.73446,22.8357],[80.72871,22.83705],[80.72676,22.8329],[80.73188,22.83261],[80.72937,22.82465],[80.72997,22.81176],[80.74358,22.8159],[80.7638,22.81343],[80.77514,22.81472],[80.78087,22.82076],[80.78325,22.81965],[80.78501,22.82153],[80.79158,22.81898],[80.8165,22.83143],[80.82662,22.83299],[80.83051,22.84964],[80.84556,22.85086],[80.87012,22.84859],[80.8711,22.84662],[80.86735,22.8399],[80.86718,22.83439],[80.85775,22.8254],[80.85445,22.80732],[80.85462,22.80597],[80.86912,22.80458],[80.87031,22.80174],[80.87212,22.78878],[80.86995,22.78017],[80.87017,22.76671],[80.86761,22.75811],[80.87651,22.75758],[80.89858,22.76012],[80.91144,22.75628],[80.92489,22.75501],[80.94264,22.74434],[80.92687,22.73065],[80.91649,22.71413],[80.91659,22.71133],[80.91909,22.70898],[80.92789,22.70976],[80.92912,22.70798],[80.92297,22.69219],[80.92396,22.68444],[80.92283,22.67944],[80.9317,22.67798],[80.94044,22.68004],[80.94371,22.67379],[80.94389,22.66869],[80.95004,22.66413],[80.95456,22.65619],[80.95392,22.65069],[80.9509,22.6512],[80.94867,22.64736],[80.95528,22.64366],[80.95571,22.64112],[80.95941,22.63785],[80.96314,22.63742],[80.96482,22.64202],[80.96229,22.64734],[80.96533,22.65008],[80.97138,22.64401],[80.97585,22.6487],[80.98663,22.64906],[81.01152,22.64084],[81.00611,22.63019],[81.00603,22.62606],[81.00891,22.62369],[81.00783,22.62154],[81.00452,22.62237],[81.00249,22.6179],[80.99836,22.61759],[80.99368,22.61388],[80.99329,22.61176],[80.99022,22.61101],[80.98716,22.61438],[80.98451,22.61494],[80.98002,22.60713],[80.97329,22.61166],[80.96746,22.61151],[80.96269,22.60597],[80.95725,22.60451],[80.95563,22.59699],[80.96695,22.59441],[80.96723,22.59188],[80.96535,22.5896],[80.95975,22.59056],[80.95683,22.58717],[80.95272,22.59116],[80.95096,22.58833],[80.94288,22.58294],[80.94024,22.58323],[80.9394,22.58652],[80.93607,22.58774],[80.93443,22.57375],[80.94467,22.56519],[80.94575,22.55816],[80.94923,22.55526],[80.96123,22.56087],[80.96471,22.56079],[80.96538,22.54995],[80.97022,22.54295],[80.9803,22.54453],[80.98487,22.54099],[80.99073,22.54568],[81.00763,22.54807],[81.0098,22.55429],[81.0248,22.56133],[81.02404,22.56986],[81.01609,22.57045],[81.02115,22.58282],[81.0206,22.588],[81.01709,22.59182],[81.02096,22.59574],[81.02265,22.60202],[81.02832,22.6019],[81.03293,22.60404],[81.03126,22.61333],[81.03233,22.61591],[81.03708,22.61616],[81.03971,22.61386],[81.04362,22.61339],[81.04348,22.60882],[81.04556,22.60603],[81.05263,22.60811],[81.06299,22.60754],[81.06653,22.60981],[81.06808,22.61426],[81.07547,22.60909],[81.08038,22.60985],[81.08148,22.61263],[81.08421,22.61323],[81.08938,22.61031],[81.08911,22.6027],[81.09378,22.5973],[81.09674,22.59629],[81.10135,22.59837],[81.10763,22.59598],[81.11174,22.59976],[81.11402,22.59864],[81.11477,22.59381],[81.12317,22.59409],[81.12631,22.58994],[81.12581,22.58791],[81.1314,22.58651],[81.13632,22.58053],[81.13507,22.57716],[81.13745,22.57114],[81.14045,22.5699],[81.14259,22.57128],[81.14384,22.56715],[81.14962,22.56597],[81.14816,22.56224],[81.15248,22.5621],[81.15494,22.55933],[81.15802,22.55951],[81.15754,22.5575],[81.15938,22.55566],[81.1554,22.55409],[81.15712,22.5469],[81.16204,22.54209],[81.15991,22.54037],[81.16225,22.53938],[81.16791,22.54054],[81.16905,22.5385],[81.16833,22.53388],[81.17359,22.52877],[81.17398,22.52608],[81.17816,22.52636],[81.17839,22.52274],[81.1838,22.51734],[81.18481,22.5143],[81.18939,22.51126],[81.18995,22.50601],[81.19696,22.4961],[81.19749,22.49283],[81.19352,22.49095],[81.19767,22.48957],[81.19992,22.4852],[81.20145,22.4682],[81.19946,22.46303],[81.20612,22.46084],[81.20774,22.45659],[81.23219,22.45216],[81.24831,22.45878],[81.26193,22.47217],[81.25978,22.48513],[81.26213,22.49327],[81.26907,22.49432],[81.27329,22.49319],[81.28127,22.50295],[81.29178,22.49429],[81.29995,22.49029],[81.30729,22.48191],[81.31373,22.48292],[81.31518,22.48777],[81.32085,22.48608],[81.3227,22.49042],[81.31813,22.49392],[81.32089,22.49523],[81.3182,22.50186],[81.31985,22.50323],[81.31993,22.50705],[81.31721,22.51461],[81.31839,22.51686],[81.32338,22.51893],[81.32287,22.52302],[81.32653,22.52614],[81.33474,22.52424],[81.34006,22.51951],[81.3506,22.51759],[81.35388,22.51423],[81.35431,22.51126],[81.36059,22.51204],[81.36136,22.515],[81.37063,22.51488],[81.37582,22.51105],[81.38206,22.50982],[81.38619,22.49855],[81.38406,22.48976],[81.3915,22.47771],[81.39125,22.47109],[81.38865,22.46821],[81.39006,22.46331],[81.38811,22.45921],[81.39045,22.45582],[81.39006,22.45226],[81.39298,22.44904],[81.39641,22.44008],[81.4067,22.44095],[81.42295,22.44769],[81.4287,22.45689],[81.42451,22.46327],[81.42278,22.47005],[81.42784,22.47981],[81.43221,22.47921],[81.43921,22.48212],[81.44153,22.47991],[81.44293,22.4738],[81.44102,22.47178],[81.44737,22.46588],[81.45528,22.46688],[81.45893,22.46929],[81.4573,22.47168],[81.45589,22.4695],[81.44903,22.46752],[81.44662,22.46976],[81.45019,22.47124],[81.45088,22.47859],[81.4464,22.47618],[81.44254,22.4792],[81.44724,22.48465],[81.45108,22.4866],[81.44397,22.49072],[81.44261,22.49435],[81.44689,22.49343],[81.44942,22.49576],[81.45257,22.49581],[81.45884,22.48947],[81.46301,22.49307],[81.4728,22.49374],[81.47856,22.49222],[81.48471,22.48783],[81.48701,22.49024],[81.48631,22.49376],[81.48938,22.50317],[81.49442,22.50501],[81.49744,22.51164],[81.49553,22.51426],[81.49665,22.51952],[81.50931,22.52606],[81.51049,22.52196],[81.51824,22.5198],[81.52344,22.53217],[81.52134,22.5366],[81.52223,22.53901],[81.53267,22.53853],[81.54098,22.53304],[81.54608,22.52758],[81.55296,22.53105],[81.55895,22.53079],[81.56253,22.53344],[81.57003,22.53227],[81.56303,22.53396],[81.56275,22.54236],[81.56283,22.5475],[81.56955,22.55073],[81.58623,22.54392],[81.59183,22.54522],[81.59634,22.53653],[81.59998,22.53526],[81.60499,22.53461],[81.61321,22.53867],[81.61542,22.53692],[81.62194,22.53802],[81.62869,22.54442],[81.62404,22.55588],[81.62903,22.56336],[81.63519,22.56528],[81.63625,22.56005],[81.63874,22.5611],[81.64277,22.55971],[81.64929,22.56328],[81.65346,22.56302],[81.65993,22.56946],[81.65618,22.57229],[81.65556,22.57582],[81.65517,22.57881],[81.65783,22.58444],[81.65184,22.58085],[81.64971,22.58145],[81.64896,22.58496],[81.64548,22.58444],[81.64498,22.58686],[81.64943,22.58895],[81.64649,22.59341],[81.64803,22.5977],[81.64571,22.60487],[81.64725,22.61326],[81.65274,22.61856],[81.6609,22.61929],[81.66244,22.62681],[81.66904,22.63196],[81.67205,22.63256],[81.67576,22.63912],[81.68465,22.64782],[81.68877,22.64847],[81.69889,22.64476],[81.71395,22.64865],[81.72272,22.65706],[81.72526,22.67308],[81.73128,22.68079],[81.74146,22.68918],[81.73106,22.69815],[81.72656,22.69889],[81.72577,22.70048],[81.71818,22.70267],[81.71622,22.70115],[81.71377,22.70346],[81.71144,22.70048],[81.71024,22.70279],[81.70744,22.70217],[81.69771,22.70514],[81.69338,22.71032],[81.69424,22.71583],[81.69897,22.72204],[81.69922,22.72683],[81.70141,22.72775],[81.70248,22.73304],[81.70476,22.73552],[81.70242,22.73801],[81.70457,22.74027],[81.70544,22.74506],[81.70132,22.74803],[81.70104,22.75033],[81.69856,22.75057],[81.69993,22.75442],[81.69675,22.75456],[81.69707,22.75636],[81.6958,22.75653],[81.69594,22.75856],[81.69808,22.75762],[81.69865,22.76183],[81.69451,22.76283],[81.69228,22.76535],[81.69475,22.76669],[81.69344,22.77266],[81.69534,22.77479],[81.69325,22.77483],[81.69462,22.77656],[81.69194,22.78022],[81.6902,22.78116],[81.6896,22.77957],[81.68538,22.78345],[81.68317,22.78304],[81.68422,22.78186],[81.68302,22.78143],[81.68001,22.78354],[81.676,22.78435],[81.67328,22.78302],[81.6664,22.78529],[81.66531,22.7832],[81.66013,22.78357],[81.65851,22.78439],[81.65786,22.78774],[81.65237,22.78558],[81.6508,22.78713],[81.64422,22.78582],[81.64263,22.7874],[81.63787,22.7855],[81.63623,22.78215],[81.63444,22.78195],[81.63443,22.77992],[81.62951,22.78141],[81.62726,22.77723],[81.62512,22.77824],[81.62557,22.77414],[81.62209,22.77281],[81.622,22.77114],[81.6199,22.7725],[81.61871,22.76989],[81.61591,22.77155],[81.61519,22.7693],[81.61105,22.76961],[81.60745,22.7678],[81.60613,22.76579],[81.6069,22.7632],[81.60331,22.76338],[81.60038,22.76004],[81.59777,22.75958],[81.5965,22.75699],[81.59469,22.75697],[81.59432,22.75403],[81.59247,22.75406],[81.58806,22.75852],[81.58377,22.75539],[81.58125,22.75771],[81.57685,22.75451],[81.57113,22.75587],[81.56665,22.75396],[81.56358,22.75585],[81.56258,22.75949],[81.55401,22.76103],[81.54898,22.75765],[81.54912,22.75441],[81.54612,22.7546],[81.54391,22.75134],[81.53589,22.75329],[81.53532,22.74765],[81.53281,22.74575],[81.53122,22.74714],[81.53245,22.75156],[81.52855,22.75226],[81.52757,22.74778],[81.52643,22.74778],[81.52538,22.75273],[81.52082,22.75379],[81.5193,22.7608],[81.5171,22.76121],[81.51499,22.75733],[81.51383,22.76004],[81.515,22.76295],[81.51242,22.76268],[81.50968,22.76538],[81.50386,22.76512],[81.50216,22.7606],[81.49614,22.76129],[81.49543,22.75882],[81.49191,22.76083],[81.48819,22.75944],[81.48512,22.76155],[81.48323,22.75891],[81.47596,22.75863],[81.46901,22.76112],[81.46756,22.76659],[81.46428,22.77072],[81.46066,22.77167],[81.45781,22.76821],[81.45328,22.77042],[81.45248,22.77805],[81.44547,22.78809],[81.45043,22.79428],[81.44159,22.7976],[81.43438,22.80712],[81.43383,22.80947],[81.4374,22.81411],[81.43803,22.81853],[81.43594,22.82293],[81.42981,22.82885],[81.4294,22.83537],[81.41835,22.84234],[81.40572,22.84457],[81.40293,22.84779],[81.40491,22.85083],[81.40324,22.85395],[81.39377,22.85208],[81.38873,22.85523],[81.37013,22.85614],[81.36608,22.85214],[81.36084,22.85045],[81.35083,22.85209],[81.34763,22.85622],[81.34146,22.85791],[81.33564,22.86208],[81.32742,22.86159],[81.3238,22.8634],[81.31983,22.86718],[81.31482,22.87773],[81.31005,22.87765],[81.30037,22.88212],[81.28948,22.87942],[81.278,22.88003],[81.26603,22.88912],[81.25722,22.90162],[81.23719,22.90153],[81.22945,22.90761],[81.21309,22.91577],[81.20417,22.9115],[81.20049,22.91177],[81.19078,22.92807],[81.19209,22.94151],[81.19135,22.94435],[81.18724,22.9472],[81.1876,22.95133],[81.18638,22.95239],[81.1932,22.96477],[81.20436,23.00368],[81.20962,23.01573],[81.22311,23.0249],[81.22617,23.02968],[81.22627,23.03563],[81.23047,23.03608],[81.22721,23.03964],[81.22812,23.04264],[81.22652,23.04548],[81.23022,23.04797],[81.23047,23.0517],[81.23526,23.05157],[81.23727,23.05336],[81.23578,23.05511],[81.22933,23.05438],[81.22903,23.05779],[81.23845,23.06198],[81.24159,23.05573],[81.24422,23.05753],[81.24778,23.05747],[81.24899,23.05251],[81.25104,23.05199],[81.25249,23.05372],[81.25185,23.05966],[81.25343,23.06245],[81.25963,23.06138],[81.26094,23.06237],[81.26005,23.06437],[81.25449,23.0655],[81.25353,23.06711],[81.25884,23.07037],[81.26258,23.06942],[81.26365,23.0705],[81.2614,23.07356],[81.2539,23.07427],[81.25493,23.08277],[81.24716,23.0912],[81.24945,23.09793],[81.24156,23.10082],[81.23828,23.11122],[81.23585,23.1114],[81.22758,23.1072],[81.22168,23.11529],[81.21385,23.11325],[81.21108,23.11478],[81.20903,23.12105],[81.21091,23.13336],[81.21462,23.13717],[81.21321,23.14037],[81.20986,23.14088],[81.20712,23.1381],[81.20508,23.1326],[81.20567,23.12971],[81.20289,23.12564],[81.19321,23.12724],[81.18953,23.13128],[81.18954,23.13468],[81.19547,23.14932],[81.19181,23.15186],[81.18185,23.14876],[81.17973,23.14985],[81.1784,23.15348],[81.18273,23.15943],[81.19169,23.16397],[81.19171,23.16604],[81.18594,23.16836],[81.17537,23.16884],[81.16,23.16337],[81.15668,23.16372],[81.15502,23.16907],[81.16247,23.17577],[81.1571,23.17912],[81.14896,23.17709],[81.14365,23.17752],[81.13902,23.19207],[81.13438,23.19894],[81.1258,23.20694],[81.12507,23.21395],[81.12264,23.21762],[81.11816,23.21736],[81.11031,23.21165],[81.10678,23.20301],[81.09099,23.20256],[81.078,23.19691],[81.07228,23.19818],[81.06758,23.19447],[81.06386,23.20012],[81.05232,23.20851],[81.03043,23.20961],[81.02458,23.21349],[81.01793,23.22201],[81.00621,23.22543],[81.00093,23.23171],[80.991,23.23746],[80.99108,23.24338],[80.99496,23.24878],[80.98333,23.24943],[80.96418,23.26006],[80.95651,23.2666],[80.95793,23.27522],[80.956,23.27926],[80.95164,23.27942],[80.9506,23.28401],[80.94213,23.28908],[80.93597,23.29022],[80.92305,23.2855],[80.92145,23.28341],[80.91569,23.27275],[80.91505,23.26313],[80.91249,23.2585],[80.90755,23.25508],[80.89965,23.25287],[80.89787,23.25057],[80.89816,23.24731],[80.88572,23.24471],[80.873,23.23894],[80.86465,23.23298],[80.86538,23.22277],[80.85581,23.22087],[80.85017,23.22285],[80.84637,23.22611],[80.8408,23.22645],[80.83948,23.2317],[80.8312,23.23088],[80.83329,23.2406],[80.82556,23.2417],[80.82101,23.24407],[80.81679,23.24284],[80.81335,23.24408],[80.813,23.24784],[80.81025,23.24816],[80.81183,23.25276],[80.79928,23.25234],[80.79241,23.25055],[80.78735,23.23161],[80.78265,23.22788],[80.77884,23.22716],[80.77552,23.22069],[80.76664,23.22195],[80.74702,23.22939],[80.74007,23.23456],[80.7418,23.24156],[80.74594,23.2484],[80.74279,23.25881],[80.73231,23.2623],[80.7254,23.26026],[80.72211,23.26743],[80.72244,23.27423],[80.71712,23.27817],[80.71665,23.28837],[80.71897,23.28818],[80.72228,23.29486],[80.72736,23.29738],[80.73003,23.29687],[80.73256,23.2931],[80.7325,23.29484],[80.73515,23.29509],[80.73531,23.29613],[80.73284,23.29542],[80.72764,23.29827],[80.72352,23.2979],[80.72407,23.30485],[80.72966,23.30886],[80.74143,23.31267],[80.74521,23.3178],[80.75418,23.32061],[80.74934,23.32137],[80.75004,23.32974],[80.75414,23.33254],[80.75675,23.33728],[80.75987,23.33565],[80.76185,23.3448],[80.75776,23.34148],[80.75189,23.344],[80.74472,23.34286],[80.73559,23.34419],[80.73735,23.35038],[80.72909,23.35859],[80.72313,23.36237],[80.71652,23.36374],[80.7147,23.36245],[80.70531,23.36692],[80.70543,23.3723]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"405","area_level":"District","area_name":"Khandwa (East Nimar)","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.49501,22.41168],[76.48219,22.40332],[76.45982,22.39261],[76.44354,22.38282],[76.44216,22.37592],[76.4383,22.37171],[76.43604,22.36379],[76.43736,22.3576],[76.44339,22.35142],[76.4455,22.34488],[76.4444,22.34281],[76.4232,22.34153],[76.41983,22.34004],[76.4189,22.33792],[76.39971,22.33736],[76.37924,22.32563],[76.35453,22.31657],[76.34623,22.30657],[76.32668,22.29836],[76.30607,22.29431],[76.26926,22.2925],[76.25161,22.28981],[76.23903,22.29788],[76.22919,22.31299],[76.21936,22.31592],[76.21159,22.32275],[76.20853,22.32771],[76.20923,22.32961],[76.20501,22.32522],[76.19354,22.30331],[76.18298,22.28247],[76.18163,22.27577],[76.15872,22.25557],[76.15008,22.25345],[76.11227,22.25213],[76.09931,22.24964],[76.0607,22.22656],[76.03652,22.22558],[76.02252,22.223],[76.01711,22.21845],[76.01253,22.2117],[76.01755,22.20374],[76.02101,22.20467],[76.02488,22.19686],[76.03052,22.19711],[76.03191,22.19435],[76.03997,22.19464],[76.04742,22.19],[76.06437,22.1917],[76.06752,22.19137],[76.06952,22.18823],[76.07854,22.19006],[76.07871,22.18764],[76.08169,22.18815],[76.08259,22.18561],[76.08792,22.18729],[76.09356,22.19254],[76.09436,22.19857],[76.09872,22.19978],[76.09948,22.21152],[76.10213,22.21301],[76.11189,22.21367],[76.11878,22.2119],[76.12299,22.21294],[76.12296,22.20799],[76.13412,22.21274],[76.15364,22.21301],[76.1528,22.20899],[76.15738,22.20236],[76.156,22.20076],[76.15728,22.18938],[76.15053,22.17843],[76.1472,22.1744],[76.13386,22.17566],[76.12756,22.17157],[76.12177,22.17082],[76.1172,22.15896],[76.11688,22.1532],[76.12143,22.15436],[76.12447,22.15292],[76.12476,22.13389],[76.13568,22.12482],[76.13811,22.11007],[76.13525,22.10761],[76.13544,22.10539],[76.11524,22.10376],[76.11454,22.09454],[76.09546,22.09291],[76.09315,22.08992],[76.09683,22.07926],[76.09588,22.05348],[76.10318,22.05447],[76.10608,22.05298],[76.12514,22.05637],[76.1388,22.05547],[76.15164,22.06528],[76.15444,22.07013],[76.15397,22.07721],[76.13728,22.08083],[76.13361,22.09304],[76.13417,22.09764],[76.13549,22.10005],[76.14841,22.10126],[76.14825,22.10471],[76.15146,22.10501],[76.15335,22.10874],[76.15441,22.11717],[76.15871,22.11703],[76.16454,22.1195],[76.17313,22.11959],[76.17377,22.12215],[76.19027,22.11543],[76.19864,22.09722],[76.21969,22.09972],[76.21701,22.09628],[76.21567,22.08837],[76.21909,22.08362],[76.22283,22.083],[76.22467,22.07492],[76.22493,22.07197],[76.20023,22.06713],[76.19871,22.04447],[76.19357,22.0405],[76.18073,22.03793],[76.17716,22.04263],[76.16881,22.04164],[76.16439,22.04274],[76.1592,22.04076],[76.16025,22.03795],[76.15903,22.03574],[76.15225,22.03202],[76.15297,22.02319],[76.16427,22.01655],[76.16506,22.0124],[76.15975,22.00563],[76.16087,21.99832],[76.15641,21.98782],[76.15348,21.98665],[76.14883,21.98825],[76.14779,21.97903],[76.14249,21.97717],[76.14659,21.97565],[76.14855,21.973],[76.14677,21.96909],[76.14979,21.9682],[76.15701,21.97109],[76.16049,21.96818],[76.16044,21.96451],[76.15007,21.96158],[76.15543,21.95302],[76.15468,21.95066],[76.14884,21.95009],[76.1486,21.94678],[76.15425,21.94136],[76.15273,21.93658],[76.15473,21.93452],[76.1559,21.92782],[76.16009,21.92332],[76.16233,21.91016],[76.16639,21.90013],[76.167,21.89337],[76.16878,21.8929],[76.16963,21.88656],[76.15573,21.88813],[76.1254,21.87061],[76.12165,21.8634],[76.12457,21.8548],[76.11852,21.85542],[76.11528,21.8582],[76.10063,21.85503],[76.10099,21.8368],[76.10568,21.82276],[76.10751,21.80323],[76.11021,21.79989],[76.11104,21.7955],[76.10612,21.78937],[76.11282,21.78868],[76.11435,21.77354],[76.1162,21.76893],[76.11842,21.76544],[76.12352,21.76609],[76.12396,21.76068],[76.12682,21.76026],[76.12407,21.74985],[76.10806,21.74983],[76.10147,21.74643],[76.09973,21.74068],[76.10153,21.73033],[76.10705,21.73106],[76.10459,21.7234],[76.11167,21.72201],[76.1122,21.72003],[76.12654,21.72129],[76.13351,21.72469],[76.1382,21.73266],[76.14488,21.7337],[76.14507,21.73502],[76.14986,21.73493],[76.15484,21.73273],[76.16581,21.72453],[76.16455,21.72138],[76.17,21.72105],[76.16746,21.70282],[76.17129,21.6999],[76.16954,21.69774],[76.1644,21.69602],[76.15204,21.69433],[76.15185,21.67722],[76.1474,21.67741],[76.14722,21.67873],[76.13978,21.68161],[76.13526,21.68592],[76.13306,21.69119],[76.11083,21.68984],[76.10784,21.69111],[76.09849,21.68495],[76.09582,21.67932],[76.09189,21.67974],[76.08707,21.67417],[76.08757,21.67223],[76.0816,21.67159],[76.07714,21.66485],[76.06945,21.66337],[76.0758,21.62327],[76.07878,21.61494],[76.0773,21.59364],[76.0749,21.58702],[76.07689,21.57214],[76.10142,21.57492],[76.11248,21.57802],[76.11501,21.57092],[76.11781,21.57109],[76.12007,21.56902],[76.12654,21.57008],[76.13048,21.56565],[76.12645,21.56174],[76.13413,21.56254],[76.13574,21.56083],[76.1386,21.56204],[76.13885,21.56696],[76.14472,21.57031],[76.13898,21.57213],[76.13879,21.57542],[76.15011,21.57848],[76.14586,21.56345],[76.14744,21.55918],[76.15285,21.55431],[76.15483,21.54819],[76.16495,21.54787],[76.17678,21.54169],[76.19276,21.55001],[76.19769,21.55044],[76.19835,21.55257],[76.19585,21.558],[76.19665,21.56053],[76.20404,21.55907],[76.21312,21.56168],[76.21443,21.56391],[76.21266,21.57098],[76.2217,21.57402],[76.22732,21.57357],[76.23594,21.57598],[76.2444,21.58246],[76.25075,21.58191],[76.26029,21.5852],[76.26629,21.58552],[76.27115,21.58363],[76.2864,21.58498],[76.28895,21.59018],[76.28555,21.59545],[76.29505,21.59616],[76.29562,21.59101],[76.29292,21.58792],[76.29041,21.58076],[76.29315,21.57647],[76.31313,21.56993],[76.35255,21.56688],[76.36496,21.57264],[76.35893,21.57277],[76.35919,21.58037],[76.37049,21.57906],[76.3745,21.58062],[76.37174,21.58503],[76.37225,21.59371],[76.37708,21.59804],[76.40693,21.59902],[76.41877,21.59653],[76.41943,21.58954],[76.42765,21.58315],[76.43399,21.58947],[76.43552,21.59701],[76.44011,21.59449],[76.44616,21.58792],[76.44903,21.58754],[76.45187,21.58212],[76.46222,21.57777],[76.46468,21.58138],[76.48544,21.5779],[76.48645,21.57405],[76.4932,21.57224],[76.50192,21.56469],[76.51284,21.5613],[76.53748,21.56347],[76.55405,21.56759],[76.5596,21.56543],[76.5809,21.56447],[76.58607,21.56524],[76.59302,21.57038],[76.59976,21.56913],[76.61154,21.57333],[76.61823,21.57292],[76.6213,21.57128],[76.62524,21.56582],[76.62961,21.56467],[76.63812,21.56826],[76.64847,21.56422],[76.65342,21.5643],[76.65627,21.56194],[76.66356,21.56479],[76.68483,21.56753],[76.71002,21.55992],[76.71098,21.5671],[76.71301,21.56657],[76.72891,21.57242],[76.74522,21.57476],[76.74494,21.56571],[76.75125,21.55644],[76.76828,21.55532],[76.78148,21.55888],[76.78327,21.57249],[76.79105,21.58158],[76.79526,21.59391],[76.80065,21.59495],[76.82738,21.58829],[76.83291,21.58895],[76.83909,21.5929],[76.84287,21.60503],[76.85183,21.61284],[76.85596,21.61308],[76.86589,21.60985],[76.88229,21.6015],[76.89722,21.5961],[76.90295,21.59759],[76.90863,21.60275],[76.91073,21.60967],[76.92589,21.62243],[76.94067,21.63087],[76.9537,21.64244],[76.97237,21.65135],[76.97641,21.65738],[76.99175,21.66614],[76.99826,21.67387],[76.99682,21.67598],[76.99222,21.67494],[76.9898,21.67594],[76.98618,21.68484],[76.98851,21.68878],[77.00056,21.69132],[77.00468,21.68447],[77.00593,21.67875],[77.01501,21.68228],[77.02357,21.68833],[77.02035,21.69767],[77.02002,21.70435],[77.01428,21.71476],[77.01304,21.71913],[77.01409,21.72019],[77.02008,21.72086],[77.03271,21.72644],[77.03435,21.70488],[77.0402,21.69708],[77.04922,21.70244],[77.06247,21.70718],[77.06599,21.71258],[77.06217,21.71696],[77.06063,21.73492],[77.06839,21.73508],[77.06864,21.72651],[77.07493,21.72651],[77.07683,21.72856],[77.07869,21.73237],[77.07837,21.7367],[77.068,21.74979],[77.07572,21.75471],[77.07427,21.75902],[77.07853,21.76049],[77.08036,21.7683],[77.07942,21.77026],[77.08516,21.77229],[77.09791,21.77152],[77.10529,21.77275],[77.10898,21.77733],[77.10703,21.78228],[77.10054,21.78191],[77.09974,21.78513],[77.11256,21.78524],[77.11276,21.78179],[77.11743,21.77969],[77.12164,21.77525],[77.12821,21.77634],[77.13962,21.7814],[77.14282,21.78545],[77.14593,21.77834],[77.15151,21.77592],[77.15014,21.77251],[77.16536,21.78393],[77.17091,21.78169],[77.18689,21.78536],[77.19648,21.7897],[77.20113,21.78981],[77.20141,21.79218],[77.19034,21.79172],[77.18569,21.79511],[77.19138,21.80677],[77.17598,21.80688],[77.17241,21.8088],[77.16918,21.8133],[77.16936,21.81922],[77.16633,21.82998],[77.16688,21.8417],[77.16384,21.84468],[77.16233,21.85784],[77.16741,21.86974],[77.17159,21.87129],[77.17857,21.87246],[77.17924,21.86876],[77.18409,21.86806],[77.19035,21.86404],[77.19457,21.8658],[77.2071,21.86589],[77.21237,21.86911],[77.21311,21.87103],[77.20283,21.87237],[77.20111,21.87516],[77.20202,21.87762],[77.21097,21.88395],[77.21147,21.88674],[77.20802,21.88949],[77.20807,21.89154],[77.21618,21.89997],[77.22103,21.91462],[77.20981,21.92952],[77.20793,21.93423],[77.19863,21.94271],[77.19303,21.9469],[77.18605,21.94836],[77.18243,21.95255],[77.17411,21.95582],[77.17239,21.9636],[77.16981,21.96621],[77.16416,21.97974],[77.14414,21.98894],[77.13787,21.99437],[77.12353,21.99062],[77.11467,21.98641],[77.09603,21.98747],[77.07369,21.98132],[77.06609,21.98203],[77.05554,21.98658],[77.05252,21.98538],[77.03347,21.99054],[77.02489,21.9912],[77.01903,21.98776],[77.01399,21.98054],[77.00288,21.97787],[76.99648,21.97872],[76.99274,21.97659],[76.98489,21.98883],[76.97816,21.99372],[76.97655,22.00222],[76.96841,22.00447],[76.96226,22.00084],[76.96073,22.00413],[76.95551,22.00587],[76.94595,22.00498],[76.94152,22.0025],[76.94155,21.99326],[76.93865,21.9915],[76.93381,21.99332],[76.93444,21.99585],[76.9317,21.99842],[76.92102,22.0029],[76.91904,22.00568],[76.9047,22.00661],[76.90873,21.99946],[76.90625,21.99213],[76.88711,21.98422],[76.88229,21.99063],[76.88254,21.99453],[76.87802,22.00129],[76.87905,22.00401],[76.87713,22.00636],[76.87462,22.00621],[76.87414,22.01327],[76.86682,22.01675],[76.86807,22.02552],[76.8656,22.02752],[76.8568,22.02759],[76.85223,22.03137],[76.8533,22.03636],[76.85169,22.0472],[76.84096,22.05588],[76.84004,22.06015],[76.84423,22.06423],[76.84527,22.08456],[76.85218,22.08588],[76.85806,22.09014],[76.85614,22.09893],[76.8527,22.1028],[76.85489,22.10453],[76.85815,22.11275],[76.86147,22.11432],[76.87122,22.1142],[76.8715,22.11788],[76.86588,22.1188],[76.86584,22.12558],[76.85301,22.12472],[76.85117,22.12783],[76.84455,22.13004],[76.83656,22.12852],[76.83349,22.13398],[76.82791,22.15632],[76.82669,22.15681],[76.82732,22.15922],[76.83094,22.15836],[76.83268,22.15989],[76.83496,22.15758],[76.84154,22.15841],[76.83847,22.16248],[76.84484,22.16626],[76.84732,22.17165],[76.8458,22.17911],[76.84051,22.17949],[76.83933,22.1876],[76.83594,22.19317],[76.83954,22.19989],[76.83842,22.20495],[76.84064,22.21665],[76.84204,22.2168],[76.84665,22.22476],[76.84989,22.22578],[76.84471,22.23925],[76.84707,22.242],[76.85547,22.24464],[76.84584,22.24728],[76.8432,22.25438],[76.85343,22.25681],[76.85463,22.25476],[76.85753,22.25452],[76.85889,22.25562],[76.85844,22.26121],[76.86491,22.26378],[76.868,22.26788],[76.87216,22.26866],[76.87651,22.27718],[76.87342,22.28296],[76.8742,22.28434],[76.88545,22.28521],[76.88479,22.28898],[76.88792,22.29292],[76.89435,22.29323],[76.89493,22.29657],[76.88936,22.29932],[76.88137,22.3089],[76.87563,22.30754],[76.86947,22.30986],[76.86826,22.31245],[76.86924,22.32255],[76.86476,22.32282],[76.85331,22.32772],[76.85199,22.33122],[76.83771,22.3219],[76.83775,22.31848],[76.83475,22.31872],[76.82451,22.31415],[76.82547,22.33102],[76.82001,22.33161],[76.81788,22.33734],[76.81107,22.33734],[76.80073,22.33129],[76.79252,22.34043],[76.78101,22.34419],[76.77783,22.34024],[76.77651,22.33319],[76.76862,22.31631],[76.75658,22.30927],[76.74889,22.30223],[76.74215,22.29196],[76.73782,22.29234],[76.73542,22.29461],[76.73561,22.29973],[76.73396,22.30338],[76.72827,22.3007],[76.72605,22.30291],[76.72511,22.30925],[76.71921,22.31025],[76.70116,22.30474],[76.69617,22.29978],[76.68473,22.2985],[76.68298,22.29642],[76.65509,22.3305],[76.66097,22.33526],[76.66069,22.34036],[76.66459,22.34559],[76.65414,22.35345],[76.65348,22.35799],[76.65529,22.3607],[76.65273,22.36347],[76.64931,22.36421],[76.64569,22.36306],[76.64482,22.36104],[76.63926,22.36582],[76.63433,22.36729],[76.63195,22.37116],[76.62225,22.37305],[76.62007,22.37554],[76.62128,22.37801],[76.61859,22.3898],[76.60378,22.40537],[76.59125,22.40696],[76.58679,22.40594],[76.58483,22.40772],[76.58431,22.40499],[76.57865,22.4027],[76.57333,22.40296],[76.56856,22.40562],[76.55385,22.39874],[76.5485,22.4043],[76.5245,22.41216],[76.49501,22.41168]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"406","area_level":"District","area_name":"Guna","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.28415,25.10752],[77.27319,25.11151],[77.27001,25.11609],[77.25936,25.11089],[77.24879,25.10995],[77.23696,25.10661],[77.22572,25.10895],[77.2151,25.109],[77.2053,25.11387],[77.1959,25.10932],[77.18423,25.10814],[77.17442,25.11181],[77.16876,25.10301],[77.17158,25.09791],[77.16712,25.08461],[77.1494,25.08636],[77.1506,25.09333],[77.14772,25.09511],[77.14149,25.08859],[77.13342,25.08485],[77.12257,25.06665],[77.09598,25.06543],[77.08913,25.06216],[77.08483,25.05424],[77.04278,25.0634],[77.03759,25.06854],[77.0324,25.06895],[77.02969,25.06585],[77.02404,25.06593],[77.01048,25.07345],[76.99907,25.07485],[76.98984,25.07313],[76.9786,25.06639],[76.97464,25.06643],[76.97148,25.06224],[76.97343,25.06076],[76.9733,25.05843],[76.96873,25.05462],[76.9682,25.0511],[76.96584,25.05155],[76.96167,25.05637],[76.95896,25.05217],[76.9523,25.05216],[76.94509,25.04674],[76.93433,25.04563],[76.92572,25.04695],[76.91159,25.043],[76.88754,25.04377],[76.87616,25.0414],[76.8785,25.02848],[76.87604,25.00706],[76.86733,25.00603],[76.86243,25.00255],[76.85678,25.00248],[76.86135,24.99973],[76.86721,24.99016],[76.86704,24.9787],[76.86513,24.9755],[76.86389,24.96552],[76.86239,24.96442],[76.86252,24.96019],[76.86748,24.95649],[76.87196,24.94789],[76.87763,24.9414],[76.88555,24.93873],[76.88937,24.93392],[76.88868,24.92339],[76.89049,24.91969],[76.90937,24.92111],[76.92042,24.91677],[76.92229,24.91249],[76.92141,24.90842],[76.91966,24.90454],[76.91642,24.90426],[76.91382,24.89831],[76.91305,24.88784],[76.92298,24.88036],[76.93263,24.88199],[76.93425,24.87975],[76.93359,24.87508],[76.94396,24.87444],[76.94856,24.86907],[76.94411,24.86537],[76.94054,24.85782],[76.9341,24.85525],[76.92953,24.84867],[76.92496,24.84658],[76.91665,24.84675],[76.90373,24.84238],[76.89789,24.83823],[76.88148,24.8363],[76.86889,24.8395],[76.86208,24.83731],[76.84617,24.83656],[76.84113,24.83458],[76.82992,24.83656],[76.82366,24.83484],[76.8225,24.83214],[76.81197,24.82557],[76.79988,24.82401],[76.8024,24.81942],[76.802,24.81013],[76.80411,24.80689],[76.82349,24.79412],[76.83546,24.77884],[76.84752,24.76927],[76.84925,24.76303],[76.84859,24.75039],[76.8502,24.74658],[76.85388,24.74352],[76.86171,24.7423],[76.88948,24.74726],[76.89597,24.74311],[76.90224,24.73341],[76.9069,24.73149],[76.92319,24.74231],[76.93153,24.74364],[76.94353,24.75755],[76.95396,24.76036],[76.96457,24.75455],[76.96907,24.74231],[76.97456,24.7362],[76.97912,24.73516],[76.98946,24.73614],[76.99552,24.73333],[76.9977,24.72783],[76.99788,24.72046],[77.00166,24.71604],[77.01378,24.71218],[77.02582,24.71432],[77.03027,24.71239],[77.04148,24.6994],[77.04132,24.68675],[77.04374,24.67871],[77.05728,24.65383],[77.06373,24.64679],[77.06788,24.63025],[77.06717,24.61579],[77.06865,24.60695],[77.06517,24.59571],[77.07024,24.58247],[77.07098,24.56789],[77.06816,24.55581],[77.05975,24.54588],[77.05763,24.53713],[77.05435,24.53181],[77.05471,24.52628],[77.0422,24.52477],[77.03689,24.5279],[77.03511,24.52435],[77.03554,24.52089],[77.03037,24.51895],[77.02933,24.5167],[77.03066,24.50183],[77.02897,24.49608],[77.01183,24.49166],[77.01096,24.48734],[77.01374,24.48325],[77.0088,24.4819],[77.00713,24.47902],[77.00928,24.47808],[77.00882,24.47674],[77.0036,24.47374],[76.98349,24.47279],[76.98234,24.46782],[76.97761,24.46138],[76.96214,24.46165],[76.96079,24.46342],[76.95549,24.46451],[76.95222,24.46386],[76.95095,24.4618],[76.95076,24.46571],[76.94311,24.46514],[76.94106,24.47052],[76.93852,24.47231],[76.9267,24.47408],[76.91842,24.48069],[76.91693,24.48327],[76.91794,24.48555],[76.91615,24.48993],[76.91725,24.4968],[76.91578,24.50264],[76.91979,24.51805],[76.9218,24.52049],[76.92083,24.52854],[76.91667,24.53705],[76.9179,24.54348],[76.90187,24.54585],[76.89433,24.5383],[76.88986,24.52486],[76.88431,24.52145],[76.87307,24.52702],[76.87157,24.53211],[76.87477,24.53363],[76.87666,24.53879],[76.87411,24.53921],[76.86963,24.54437],[76.86192,24.5493],[76.86062,24.54777],[76.83812,24.54561],[76.8216,24.53459],[76.81639,24.53358],[76.81631,24.52441],[76.82275,24.52043],[76.82867,24.51273],[76.82815,24.50313],[76.83666,24.49318],[76.8354,24.48892],[76.84227,24.48832],[76.84661,24.48596],[76.84775,24.47348],[76.85308,24.46589],[76.85116,24.46036],[76.85251,24.45552],[76.85159,24.45012],[76.85007,24.44923],[76.84481,24.45068],[76.84103,24.44355],[76.84108,24.44014],[76.84434,24.43717],[76.84592,24.43078],[76.85045,24.42413],[76.84574,24.41592],[76.83906,24.41317],[76.83738,24.40971],[76.83793,24.40648],[76.84369,24.40305],[76.85069,24.38344],[76.84523,24.37513],[76.85139,24.37052],[76.83735,24.35959],[76.83188,24.35797],[76.83731,24.3464],[76.83787,24.33415],[76.84105,24.32241],[76.85167,24.31234],[76.85688,24.30292],[76.86012,24.29409],[76.86262,24.27332],[76.87351,24.26592],[76.87313,24.26262],[76.87992,24.26028],[76.87963,24.2553],[76.88784,24.25213],[76.88597,24.24778],[76.8882,24.24489],[76.89616,24.24309],[76.90528,24.2368],[76.91265,24.23795],[76.91576,24.22964],[76.91812,24.22994],[76.92294,24.22605],[76.9223,24.2117],[76.93157,24.21035],[76.93347,24.20706],[76.94593,24.20611],[76.9474,24.20131],[76.9472,24.19873],[76.93987,24.19339],[76.93577,24.18373],[76.93143,24.18356],[76.91629,24.18785],[76.9157,24.17353],[76.90895,24.16128],[76.91068,24.15865],[76.90994,24.15273],[76.90465,24.14385],[76.90129,24.12822],[76.89128,24.12673],[76.88602,24.12801],[76.88397,24.13004],[76.87902,24.13023],[76.87785,24.12282],[76.88671,24.11488],[76.8865,24.10992],[76.88991,24.1064],[76.90695,24.10636],[76.91737,24.10198],[76.92123,24.09668],[76.93188,24.08895],[76.94186,24.07597],[76.95229,24.07075],[76.96324,24.06237],[76.96623,24.05255],[76.97138,24.04476],[76.97662,24.04446],[76.97886,24.04638],[76.98106,24.0449],[76.9818,24.04643],[76.9803,24.04827],[76.9817,24.04926],[76.98941,24.04778],[77.00481,24.06057],[77.00854,24.06154],[77.02552,24.08318],[77.0343,24.08306],[77.0393,24.08074],[77.04482,24.08202],[77.04926,24.07785],[77.05882,24.08052],[77.06647,24.07847],[77.07711,24.07845],[77.09724,24.08628],[77.11033,24.08795],[77.11816,24.0856],[77.12668,24.08741],[77.13215,24.09362],[77.13448,24.09327],[77.13417,24.08766],[77.13773,24.08817],[77.13791,24.08658],[77.1513,24.08762],[77.15872,24.0812],[77.18263,24.0792],[77.18327,24.05748],[77.178,24.04849],[77.18756,24.02947],[77.18522,24.0256],[77.17771,24.02104],[77.17641,24.01762],[77.17788,24.01242],[77.18479,24.00165],[77.18137,23.98591],[77.17467,23.98398],[77.17266,23.95834],[77.17084,23.95416],[77.16642,23.95087],[77.16551,23.94728],[77.17108,23.93892],[77.18136,23.93713],[77.18563,23.93101],[77.18874,23.91724],[77.18839,23.9067],[77.1909,23.90292],[77.18949,23.89288],[77.19794,23.89168],[77.21132,23.89409],[77.24013,23.8907],[77.24735,23.89296],[77.2542,23.88852],[77.27835,23.88638],[77.29086,23.89181],[77.29365,23.89535],[77.29874,23.89351],[77.30078,23.89005],[77.30991,23.8893],[77.31855,23.88429],[77.31612,23.89194],[77.32279,23.90752],[77.32058,23.91325],[77.30779,23.91644],[77.30967,23.92711],[77.29687,23.92567],[77.29893,23.92983],[77.305,23.92954],[77.30763,23.93184],[77.30855,23.94291],[77.30713,23.94315],[77.30916,23.95183],[77.29648,23.95488],[77.2973,23.95766],[77.30601,23.95729],[77.29811,23.9618],[77.30421,23.96607],[77.30706,23.966],[77.3073,23.96749],[77.3055,23.96776],[77.30848,23.9701],[77.30092,23.96915],[77.29377,23.97542],[77.29662,23.97342],[77.30208,23.97281],[77.30502,23.9742],[77.30197,23.97668],[77.31041,23.97675],[77.31065,23.97847],[77.30716,23.97929],[77.31408,23.98058],[77.31106,23.98298],[77.31353,23.98844],[77.30231,23.98793],[77.30041,23.99241],[77.30492,23.99244],[77.3054,23.99664],[77.29143,23.99685],[77.30119,23.99837],[77.3013,24.00428],[77.30903,24.00275],[77.31175,24.00477],[77.31213,24.00727],[77.30759,24.01683],[77.29642,24.02127],[77.28419,24.01854],[77.27775,24.01885],[77.28461,24.03172],[77.29085,24.03025],[77.2924,24.03491],[77.29576,24.03786],[77.29438,24.04021],[77.28467,24.0416],[77.27295,24.03789],[77.26306,24.04409],[77.25988,24.04322],[77.25965,24.06801],[77.26388,24.06969],[77.27408,24.06996],[77.28025,24.07528],[77.28043,24.07728],[77.28516,24.07854],[77.28496,24.08065],[77.28806,24.08062],[77.28982,24.08306],[77.29467,24.08239],[77.29449,24.0842],[77.29738,24.08402],[77.29734,24.08745],[77.29467,24.09158],[77.29801,24.09743],[77.29005,24.10371],[77.28952,24.12144],[77.28748,24.12373],[77.29229,24.12422],[77.29165,24.12955],[77.29486,24.12648],[77.30055,24.12671],[77.3004,24.12929],[77.30279,24.12959],[77.30928,24.14547],[77.31284,24.15051],[77.30489,24.15896],[77.30437,24.1617],[77.30167,24.16319],[77.3011,24.16743],[77.30357,24.16836],[77.30997,24.16678],[77.3177,24.17075],[77.32083,24.16999],[77.32355,24.17109],[77.32475,24.17504],[77.34289,24.17931],[77.34381,24.18199],[77.34598,24.18244],[77.34602,24.19346],[77.33095,24.21079],[77.33141,24.21655],[77.34456,24.21277],[77.34959,24.21416],[77.35302,24.21328],[77.35301,24.21485],[77.34697,24.23029],[77.34301,24.23318],[77.3392,24.24051],[77.33263,24.24537],[77.32675,24.24524],[77.32926,24.25235],[77.33317,24.25421],[77.33214,24.26007],[77.32506,24.27037],[77.3245,24.28261],[77.32144,24.28761],[77.32766,24.30387],[77.33455,24.30729],[77.34772,24.32152],[77.34705,24.32562],[77.35095,24.33542],[77.35598,24.33997],[77.35375,24.34148],[77.36472,24.34902],[77.37228,24.34824],[77.37194,24.34526],[77.3739,24.34224],[77.39709,24.33872],[77.40218,24.33091],[77.40598,24.32853],[77.408,24.32954],[77.40758,24.3258],[77.40404,24.32311],[77.4015,24.31808],[77.39614,24.31576],[77.39767,24.31125],[77.3949,24.31196],[77.39447,24.30845],[77.39656,24.30816],[77.39397,24.30621],[77.39447,24.30345],[77.40753,24.30041],[77.40468,24.29681],[77.40553,24.29357],[77.39866,24.28464],[77.40038,24.2719],[77.41079,24.26393],[77.41131,24.26028],[77.42828,24.24829],[77.42843,24.24622],[77.43583,24.23947],[77.44387,24.23714],[77.44702,24.23899],[77.45237,24.23805],[77.45748,24.2446],[77.46322,24.24583],[77.46268,24.2472],[77.46501,24.24986],[77.46301,24.25086],[77.46995,24.25224],[77.47166,24.25105],[77.47205,24.25339],[77.4823,24.25212],[77.48493,24.25539],[77.48948,24.25652],[77.49076,24.25975],[77.49599,24.26199],[77.49537,24.26503],[77.49756,24.26617],[77.50028,24.26331],[77.49944,24.26018],[77.50209,24.25316],[77.51377,24.25134],[77.53013,24.24599],[77.55454,24.24634],[77.55547,24.25453],[77.56242,24.25185],[77.56714,24.2537],[77.57532,24.26891],[77.58156,24.26846],[77.58347,24.26653],[77.58338,24.26813],[77.58512,24.26848],[77.58823,24.26828],[77.58827,24.26706],[77.59008,24.26857],[77.5952,24.26764],[77.59648,24.28025],[77.59484,24.28382],[77.59846,24.29802],[77.60723,24.29623],[77.62259,24.29626],[77.63131,24.3066],[77.634,24.30822],[77.6384,24.30784],[77.6483,24.31445],[77.65125,24.32417],[77.6483,24.3257],[77.64271,24.32546],[77.63888,24.32196],[77.63438,24.32412],[77.63262,24.3233],[77.62396,24.32855],[77.62307,24.32776],[77.61744,24.33247],[77.61649,24.3415],[77.61884,24.34305],[77.62272,24.3504],[77.62449,24.35214],[77.64432,24.35671],[77.65843,24.36355],[77.66591,24.36385],[77.67375,24.37091],[77.66991,24.37366],[77.68101,24.38298],[77.68353,24.38775],[77.68687,24.38695],[77.6905,24.39123],[77.698,24.39249],[77.709,24.38459],[77.7213,24.38687],[77.71985,24.39302],[77.72246,24.39472],[77.72422,24.40508],[77.72733,24.40833],[77.72894,24.41828],[77.73215,24.4204],[77.7357,24.42797],[77.73276,24.42773],[77.72553,24.42164],[77.72224,24.42151],[77.70972,24.42805],[77.70948,24.42185],[77.70611,24.41604],[77.70702,24.41039],[77.69866,24.40766],[77.69889,24.40526],[77.69009,24.40048],[77.68089,24.40005],[77.66445,24.40028],[77.65607,24.403],[77.65302,24.40613],[77.65195,24.41027],[77.65218,24.41459],[77.65575,24.42066],[77.64737,24.41881],[77.63907,24.42703],[77.63571,24.42844],[77.63391,24.42357],[77.62599,24.42246],[77.62335,24.42026],[77.6174,24.40592],[77.60699,24.39671],[77.60424,24.38257],[77.60053,24.37578],[77.59689,24.37696],[77.59078,24.37479],[77.59144,24.37683],[77.59271,24.37661],[77.59304,24.38024],[77.57969,24.38328],[77.57362,24.388],[77.56899,24.38718],[77.55851,24.39471],[77.55046,24.39459],[77.54076,24.39695],[77.53827,24.39845],[77.53689,24.40367],[77.5325,24.40059],[77.52862,24.40157],[77.52775,24.39997],[77.52502,24.40324],[77.52183,24.40175],[77.52119,24.40386],[77.51753,24.40432],[77.51761,24.40576],[77.51645,24.4049],[77.51793,24.40196],[77.51138,24.40304],[77.51147,24.40592],[77.50862,24.40519],[77.50089,24.42105],[77.50522,24.42295],[77.50149,24.42861],[77.49892,24.42736],[77.49598,24.42946],[77.48491,24.42984],[77.4755,24.43539],[77.47666,24.43865],[77.47577,24.45537],[77.47172,24.45764],[77.47472,24.46505],[77.47808,24.46742],[77.49586,24.46662],[77.49797,24.47265],[77.49511,24.47845],[77.49098,24.48145],[77.497,24.49437],[77.49014,24.49652],[77.48999,24.50586],[77.49236,24.51114],[77.48684,24.51449],[77.49048,24.52509],[77.48837,24.53229],[77.49169,24.54371],[77.48976,24.5515],[77.48619,24.55287],[77.48504,24.55515],[77.48807,24.55832],[77.48416,24.56106],[77.4858,24.56577],[77.48485,24.56992],[77.4865,24.58045],[77.48105,24.58603],[77.47476,24.5873],[77.47848,24.59916],[77.47882,24.60894],[77.48153,24.61515],[77.4809,24.62113],[77.48344,24.62645],[77.48172,24.6334],[77.48568,24.63772],[77.48944,24.63761],[77.49221,24.63983],[77.48875,24.65227],[77.49395,24.6569],[77.49878,24.66632],[77.50377,24.66977],[77.51236,24.67977],[77.52095,24.67977],[77.52646,24.68973],[77.53426,24.69227],[77.53535,24.69441],[77.53428,24.69784],[77.53826,24.7042],[77.53958,24.71055],[77.54932,24.71859],[77.55557,24.7272],[77.55237,24.73512],[77.55674,24.74011],[77.55129,24.74621],[77.55437,24.75156],[77.55065,24.75944],[77.55588,24.76038],[77.55722,24.76241],[77.54955,24.77256],[77.54406,24.77482],[77.5444,24.78087],[77.54188,24.78562],[77.53019,24.78916],[77.52329,24.79508],[77.52591,24.80271],[77.52256,24.8066],[77.52403,24.8152],[77.52009,24.82707],[77.5231,24.83672],[77.52666,24.8424],[77.53509,24.84654],[77.53785,24.85144],[77.54885,24.86085],[77.56259,24.86755],[77.56451,24.87167],[77.5625,24.87302],[77.55984,24.87179],[77.55771,24.87723],[77.55202,24.87704],[77.55073,24.87881],[77.53778,24.88068],[77.53139,24.87821],[77.52603,24.87206],[77.52138,24.87354],[77.51217,24.87212],[77.50482,24.87903],[77.49241,24.87937],[77.49036,24.8806],[77.48657,24.87588],[77.47857,24.87674],[77.47976,24.87839],[77.47812,24.8785],[77.47628,24.88237],[77.47687,24.88625],[77.4717,24.89027],[77.47016,24.89601],[77.46813,24.89792],[77.4686,24.907],[77.46667,24.91006],[77.45955,24.91337],[77.45789,24.91699],[77.46155,24.92063],[77.46153,24.92485],[77.46437,24.93069],[77.46056,24.93245],[77.45944,24.93102],[77.45552,24.93128],[77.45193,24.92845],[77.44824,24.93448],[77.41795,24.95032],[77.4047,24.95025],[77.39978,24.93806],[77.39561,24.93326],[77.38192,24.92665],[77.37087,24.92539],[77.36765,24.93529],[77.36787,24.94102],[77.36376,24.9436],[77.35952,24.94395],[77.35779,24.94613],[77.36079,24.95652],[77.36281,24.95808],[77.36192,24.96047],[77.35973,24.96195],[77.35485,24.95906],[77.34738,24.96665],[77.34696,24.96967],[77.35077,24.97561],[77.33671,24.99233],[77.33763,24.99684],[77.33484,25.00127],[77.34315,25.0106],[77.34009,25.01716],[77.33915,25.02793],[77.33298,25.03136],[77.32899,25.03858],[77.32219,25.03827],[77.31958,25.04076],[77.32017,25.04758],[77.32236,25.05066],[77.32031,25.05563],[77.32197,25.06194],[77.32127,25.06582],[77.31749,25.0704],[77.31018,25.07098],[77.31139,25.07959],[77.29826,25.08588],[77.2972,25.09224],[77.29159,25.09716],[77.29257,25.10028],[77.29058,25.10392],[77.28803,25.1065],[77.28415,25.10752]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"407","area_level":"District","area_name":"Gwalior","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.29701,26.346],[78.29067,26.34841],[78.29195,26.34691],[78.29089,26.34573],[78.28991,26.34698],[78.28156,26.3445],[78.27457,26.33633],[78.26443,26.33637],[78.25689,26.32889],[78.25506,26.32316],[78.25962,26.31719],[78.26481,26.31517],[78.26414,26.31412],[78.25782,26.3133],[78.24917,26.30818],[78.23767,26.30726],[78.23248,26.31029],[78.23155,26.30837],[78.23458,26.30709],[78.23196,26.30435],[78.22954,26.305],[78.22991,26.30311],[78.22817,26.30457],[78.21101,26.30324],[78.20406,26.30463],[78.20234,26.3077],[78.20276,26.31219],[78.20051,26.31379],[78.20116,26.3179],[78.18104,26.3208],[78.18075,26.32237],[78.16907,26.32901],[78.166,26.32679],[78.16326,26.32683],[78.16048,26.33199],[78.16132,26.33416],[78.15015,26.34151],[78.14763,26.33965],[78.11936,26.33881],[78.11041,26.32393],[78.09725,26.32362],[78.08133,26.33112],[78.07387,26.33179],[78.07521,26.3282],[78.07365,26.32513],[78.06785,26.32419],[78.06526,26.32086],[78.06839,26.31551],[78.06766,26.31297],[78.06496,26.31255],[78.05819,26.31739],[78.05521,26.31133],[78.05245,26.31],[78.04749,26.3135],[78.03842,26.31333],[78.03215,26.31224],[78.02835,26.30826],[78.00795,26.32019],[78.00523,26.3264],[78.00192,26.32107],[78.00272,26.3134],[78.00057,26.29282],[78.0016,26.28698],[78.01167,26.27231],[78.00602,26.27356],[77.99681,26.27229],[77.99181,26.2699],[77.98855,26.26516],[77.99216,26.25877],[77.99704,26.25484],[77.99548,26.24237],[77.98867,26.24276],[77.98794,26.24771],[77.98568,26.25027],[77.96226,26.25953],[77.95172,26.24146],[77.948,26.2523],[77.91233,26.25189],[77.90687,26.24917],[77.90623,26.24566],[77.90382,26.24377],[77.90463,26.24077],[77.90178,26.2311],[77.89285,26.22531],[77.88375,26.23093],[77.87561,26.23071],[77.87299,26.22458],[77.87362,26.21805],[77.86354,26.21227],[77.85669,26.21145],[77.84775,26.21299],[77.84938,26.21954],[77.8358,26.22824],[77.83557,26.23175],[77.84038,26.2445],[77.84531,26.24873],[77.82041,26.25287],[77.81588,26.25517],[77.81226,26.24682],[77.80676,26.24341],[77.79548,26.22589],[77.78152,26.21928],[77.78078,26.21642],[77.78245,26.21269],[77.78112,26.20953],[77.77138,26.20057],[77.77067,26.18191],[77.76332,26.17949],[77.76144,26.172],[77.74451,26.16288],[77.7434,26.16089],[77.74769,26.1445],[77.74198,26.13797],[77.74092,26.12213],[77.74528,26.11699],[77.75225,26.11343],[77.75655,26.11385],[77.76109,26.1172],[77.77254,26.11478],[77.77213,26.10948],[77.76043,26.0822],[77.76602,26.08061],[77.76678,26.07283],[77.77586,26.05355],[77.77568,26.04919],[77.77383,26.04653],[77.76787,26.04442],[77.76147,26.03704],[77.75929,26.03912],[77.74875,26.04016],[77.73313,26.04609],[77.72857,26.04645],[77.71641,26.02813],[77.70823,26.00876],[77.70357,26.00318],[77.68047,25.98765],[77.66735,25.96652],[77.66751,25.96288],[77.67203,25.95299],[77.67033,25.94325],[77.67215,25.9406],[77.67186,25.93781],[77.67784,25.9327],[77.67313,25.92952],[77.67571,25.9175],[77.68094,25.91293],[77.68594,25.91207],[77.69616,25.90147],[77.69876,25.89744],[77.69856,25.88477],[77.7007,25.88059],[77.70429,25.87817],[77.71453,25.8761],[77.71851,25.87974],[77.73069,25.87714],[77.73719,25.8784],[77.74227,25.88281],[77.74902,25.88381],[77.7507,25.88263],[77.74995,25.88116],[77.74759,25.88115],[77.74813,25.87427],[77.74537,25.86602],[77.74738,25.86109],[77.76008,25.86152],[77.76048,25.85422],[77.76401,25.84642],[77.76839,25.84791],[77.77437,25.85701],[77.78312,25.85625],[77.78546,25.85428],[77.79071,25.8414],[77.79534,25.83681],[77.79632,25.82507],[77.80017,25.82086],[77.80855,25.82128],[77.81186,25.81748],[77.82587,25.81241],[77.83571,25.8117],[77.84681,25.81392],[77.86634,25.80768],[77.86921,25.80408],[77.87007,25.79544],[77.8768,25.78849],[77.86691,25.78174],[77.87215,25.78091],[77.87303,25.77663],[77.87657,25.77997],[77.87399,25.77208],[77.87547,25.76959],[77.87292,25.76583],[77.87477,25.7628],[77.8702,25.76271],[77.87003,25.76587],[77.86418,25.75905],[77.86571,25.75924],[77.86607,25.75716],[77.86822,25.75807],[77.86912,25.75352],[77.87094,25.75849],[77.87206,25.75632],[77.87661,25.756],[77.87419,25.75163],[77.87506,25.74771],[77.87349,25.74239],[77.87025,25.74512],[77.8686,25.74382],[77.87434,25.7384],[77.88092,25.73734],[77.88394,25.73528],[77.89452,25.74227],[77.90967,25.74319],[77.91185,25.74532],[77.91368,25.75204],[77.91715,25.75441],[77.93601,25.75103],[77.94435,25.74731],[77.95259,25.74957],[77.96177,25.74912],[77.96502,25.75306],[77.96823,25.75216],[77.97109,25.7533],[77.9705,25.75645],[77.97888,25.76278],[78.00099,25.7657],[78.00218,25.75746],[77.99862,25.74835],[77.99752,25.73882],[78.01224,25.73191],[78.01109,25.72695],[78.01956,25.72512],[78.01883,25.72405],[78.02306,25.71653],[78.02648,25.71989],[78.03043,25.71618],[78.03802,25.71504],[78.05373,25.70862],[78.05623,25.71209],[78.06237,25.71056],[78.07438,25.71894],[78.08571,25.72016],[78.08933,25.71947],[78.09284,25.71614],[78.09665,25.71711],[78.09815,25.71608],[78.10182,25.71685],[78.10535,25.7205],[78.11146,25.71963],[78.11519,25.72117],[78.11617,25.7185],[78.12056,25.72057],[78.12535,25.71984],[78.12769,25.72125],[78.12645,25.72229],[78.13363,25.72615],[78.13687,25.72368],[78.14192,25.72553],[78.14222,25.72281],[78.14341,25.72521],[78.14831,25.72664],[78.14969,25.72071],[78.15425,25.71906],[78.15951,25.7194],[78.16496,25.72956],[78.17428,25.73886],[78.17793,25.74039],[78.20889,25.73677],[78.21427,25.73749],[78.23428,25.76096],[78.23991,25.75768],[78.2446,25.76048],[78.26259,25.78289],[78.27891,25.78208],[78.29076,25.78454],[78.30403,25.78848],[78.31032,25.7922],[78.31878,25.79199],[78.32365,25.79721],[78.32685,25.79766],[78.32583,25.80224],[78.31848,25.80835],[78.31587,25.8134],[78.30752,25.81165],[78.31283,25.81571],[78.31501,25.82161],[78.31825,25.82339],[78.31872,25.82611],[78.32774,25.83293],[78.33734,25.83619],[78.34274,25.83215],[78.34793,25.83536],[78.36333,25.83235],[78.36648,25.83588],[78.38067,25.8351],[78.38893,25.83726],[78.39209,25.84129],[78.39255,25.84518],[78.38634,25.85193],[78.3878,25.8554],[78.40292,25.8599],[78.4133,25.86821],[78.4198,25.8778],[78.43771,25.88405],[78.45401,25.90061],[78.46795,25.90616],[78.47289,25.91032],[78.47485,25.91853],[78.47194,25.92672],[78.47232,25.93159],[78.47481,25.93458],[78.48295,25.9389],[78.48423,25.94139],[78.48233,25.9621],[78.48693,25.96483],[78.50685,25.96453],[78.51698,25.96894],[78.54268,25.97372],[78.54553,25.97967],[78.54588,25.98505],[78.555,25.99085],[78.55658,25.99393],[78.56987,25.99664],[78.57494,26.00107],[78.585,26.0056],[78.60144,26.03654],[78.60355,26.0466],[78.60662,26.04842],[78.61158,26.04813],[78.61718,26.05099],[78.62238,26.05109],[78.62674,26.04874],[78.6301,26.05267],[78.64413,26.06048],[78.64565,26.066],[78.63967,26.0701],[78.63127,26.07228],[78.63202,26.0758],[78.63931,26.08188],[78.61596,26.09496],[78.60653,26.09859],[78.60572,26.10135],[78.61207,26.11119],[78.61065,26.11331],[78.60879,26.12944],[78.61579,26.13389],[78.63175,26.12297],[78.64469,26.12013],[78.64907,26.1219],[78.65226,26.12662],[78.63959,26.12814],[78.6331,26.15194],[78.62851,26.15387],[78.62249,26.16312],[78.62492,26.19723],[78.62686,26.20339],[78.61971,26.20667],[78.62086,26.21186],[78.61887,26.21262],[78.61907,26.21753],[78.61224,26.21721],[78.61244,26.20995],[78.61046,26.20627],[78.61266,26.19966],[78.60831,26.1915],[78.6069,26.192],[78.60735,26.2024],[78.60607,26.20424],[78.59466,26.20673],[78.59446,26.20984],[78.58245,26.21659],[78.57568,26.20825],[78.56857,26.20582],[78.56944,26.2044],[78.56483,26.20053],[78.55655,26.20313],[78.54561,26.19964],[78.54028,26.20327],[78.53809,26.20754],[78.54215,26.21633],[78.54071,26.21708],[78.54135,26.21833],[78.53971,26.21991],[78.53904,26.21874],[78.53049,26.22097],[78.52985,26.22449],[78.51743,26.22753],[78.52046,26.23928],[78.51879,26.23923],[78.51789,26.24253],[78.51543,26.24169],[78.50485,26.24449],[78.50378,26.24733],[78.50822,26.25556],[78.49995,26.26],[78.50011,26.26363],[78.4791,26.26663],[78.4772,26.26423],[78.47483,26.25348],[78.47192,26.24979],[78.46886,26.25019],[78.46679,26.25656],[78.4634,26.25856],[78.45545,26.25659],[78.44019,26.26024],[78.44179,26.27959],[78.42689,26.28504],[78.4126,26.29648],[78.41594,26.31355],[78.41424,26.31718],[78.41565,26.32043],[78.419,26.32229],[78.42106,26.33054],[78.41192,26.33108],[78.40749,26.33294],[78.40673,26.33055],[78.3963,26.33584],[78.3843,26.33306],[78.37729,26.33544],[78.37712,26.33743],[78.37447,26.33917],[78.36709,26.33948],[78.3581,26.33439],[78.35631,26.33622],[78.34817,26.33636],[78.34903,26.34047],[78.34405,26.34409],[78.3242,26.34705],[78.31683,26.34212],[78.30871,26.34305],[78.30493,26.34535],[78.3051,26.34341],[78.30269,26.34314],[78.30297,26.33818],[78.29892,26.33656],[78.29794,26.33787],[78.29528,26.33564],[78.29515,26.34065],[78.29768,26.34246],[78.29701,26.346]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"408","area_level":"District","area_name":"Harda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.23802,22.55021],[77.21797,22.55569],[77.2132,22.56201],[77.21291,22.56563],[77.18213,22.57718],[77.17004,22.57946],[77.15918,22.57883],[77.14584,22.57059],[77.13585,22.55911],[77.12505,22.55189],[77.09156,22.5175],[77.07938,22.50937],[77.04199,22.49698],[77.02763,22.49366],[77.00097,22.4934],[76.9776,22.48964],[76.93512,22.49103],[76.90599,22.48453],[76.88483,22.47455],[76.85569,22.45517],[76.81594,22.44293],[76.8107,22.43775],[76.79389,22.42833],[76.78968,22.42386],[76.78837,22.41584],[76.79121,22.39956],[76.78158,22.37478],[76.78036,22.36747],[76.78342,22.35536],[76.78101,22.34419],[76.79252,22.34043],[76.80073,22.33129],[76.81107,22.33734],[76.81788,22.33734],[76.82001,22.33161],[76.82547,22.33102],[76.82451,22.31415],[76.83475,22.31872],[76.83775,22.31848],[76.83771,22.3219],[76.85199,22.33122],[76.85331,22.32772],[76.86476,22.32282],[76.86924,22.32255],[76.86826,22.31245],[76.86947,22.30986],[76.87563,22.30754],[76.88137,22.3089],[76.88936,22.29932],[76.89493,22.29657],[76.89435,22.29323],[76.88792,22.29292],[76.88479,22.28898],[76.88545,22.28521],[76.8742,22.28434],[76.87342,22.28296],[76.87651,22.27718],[76.87216,22.26866],[76.868,22.26788],[76.86491,22.26378],[76.85844,22.26121],[76.85832,22.25512],[76.85463,22.25476],[76.85343,22.25681],[76.8432,22.25438],[76.84584,22.24728],[76.85547,22.24464],[76.84707,22.242],[76.84471,22.23925],[76.84989,22.22578],[76.84665,22.22476],[76.84204,22.2168],[76.84064,22.21665],[76.83842,22.20495],[76.83954,22.19989],[76.83594,22.19317],[76.83933,22.1876],[76.84051,22.17949],[76.8458,22.17911],[76.84732,22.17165],[76.84484,22.16626],[76.83847,22.16248],[76.84154,22.15841],[76.83496,22.15758],[76.83268,22.15989],[76.83094,22.15836],[76.82732,22.15922],[76.82669,22.15681],[76.82791,22.15632],[76.83349,22.13398],[76.83656,22.12852],[76.84455,22.13004],[76.85117,22.12783],[76.85301,22.12472],[76.86584,22.12558],[76.86588,22.1188],[76.8715,22.11788],[76.87196,22.11458],[76.86996,22.11372],[76.86216,22.11438],[76.85854,22.1132],[76.85489,22.10453],[76.8527,22.1028],[76.85614,22.09893],[76.85806,22.09014],[76.85218,22.08588],[76.84527,22.08456],[76.84423,22.06423],[76.84004,22.06015],[76.84096,22.05588],[76.85169,22.0472],[76.8533,22.03636],[76.85223,22.03137],[76.8568,22.02759],[76.8656,22.02752],[76.86807,22.02552],[76.86682,22.01675],[76.87414,22.01327],[76.87462,22.00621],[76.87713,22.00636],[76.87905,22.00401],[76.87802,22.00129],[76.88254,21.99453],[76.88229,21.99063],[76.88711,21.98422],[76.90625,21.99213],[76.90873,21.99946],[76.9047,22.00661],[76.91904,22.00568],[76.92102,22.0029],[76.9317,21.99842],[76.93444,21.99585],[76.93381,21.99332],[76.93865,21.9915],[76.94155,21.99326],[76.9413,22.00225],[76.94595,22.00498],[76.95551,22.00587],[76.96073,22.00413],[76.96226,22.00084],[76.96841,22.00447],[76.97102,22.00426],[76.97655,22.00222],[76.97816,21.99372],[76.98489,21.98883],[76.99274,21.97659],[76.99648,21.97872],[77.00288,21.97787],[77.01399,21.98054],[77.01903,21.98776],[77.02489,21.9912],[77.03347,21.99054],[77.05252,21.98538],[77.05554,21.98658],[77.06609,21.98203],[77.07369,21.98132],[77.09603,21.98747],[77.11467,21.98641],[77.12353,21.99062],[77.13787,21.99437],[77.14414,21.98894],[77.16416,21.97974],[77.16981,21.96621],[77.17239,21.9636],[77.17411,21.95582],[77.18243,21.95255],[77.18605,21.94836],[77.19303,21.9469],[77.20793,21.93423],[77.20981,21.92952],[77.22103,21.91462],[77.21856,21.90614],[77.22036,21.90611],[77.24672,21.91376],[77.2496,21.91923],[77.25,21.92514],[77.25926,21.93506],[77.25863,21.94205],[77.26267,21.94583],[77.26672,21.94717],[77.27135,21.95541],[77.27214,21.96115],[77.27575,21.96245],[77.27638,21.96456],[77.289,21.96531],[77.29391,21.96861],[77.29831,21.96945],[77.30836,21.96895],[77.31658,21.9707],[77.32358,21.96925],[77.34134,21.97695],[77.34769,21.98227],[77.35443,21.98429],[77.35656,21.99049],[77.35828,21.99153],[77.37072,21.99266],[77.38093,21.99165],[77.38527,21.99518],[77.3954,21.99913],[77.3951,22.01652],[77.39728,22.02096],[77.4089,22.02562],[77.42661,22.02011],[77.44181,22.0187],[77.44819,22.02016],[77.46974,22.01932],[77.48293,22.02609],[77.50577,22.02996],[77.50432,22.03746],[77.50701,22.05347],[77.50313,22.05963],[77.50819,22.07049],[77.50838,22.07479],[77.51001,22.07563],[77.49345,22.07639],[77.48248,22.08078],[77.46975,22.08262],[77.46656,22.07946],[77.46113,22.08109],[77.45965,22.08423],[77.46037,22.08909],[77.46551,22.09197],[77.46366,22.09583],[77.46367,22.10808],[77.47485,22.11788],[77.47365,22.12175],[77.46736,22.12634],[77.46557,22.13256],[77.46767,22.13863],[77.46756,22.1485],[77.47043,22.15565],[77.47381,22.15956],[77.47328,22.16358],[77.46768,22.16897],[77.46294,22.17101],[77.45076,22.17034],[77.44316,22.17197],[77.43765,22.17005],[77.42407,22.17092],[77.41971,22.17373],[77.41555,22.18017],[77.41161,22.19132],[77.40639,22.19207],[77.40263,22.19964],[77.39553,22.20311],[77.38145,22.21723],[77.38997,22.22303],[77.38607,22.24422],[77.3682,22.24516],[77.36319,22.24746],[77.36306,22.2689],[77.37043,22.2836],[77.36685,22.28624],[77.35874,22.28519],[77.35422,22.29014],[77.35201,22.29977],[77.35968,22.30912],[77.35739,22.31708],[77.34818,22.31893],[77.34603,22.3267],[77.33167,22.33799],[77.32968,22.34226],[77.32164,22.34065],[77.32039,22.34861],[77.31404,22.35213],[77.31748,22.36197],[77.31578,22.36784],[77.32298,22.37333],[77.32204,22.3756],[77.31734,22.37833],[77.31915,22.38549],[77.31429,22.3934],[77.31325,22.40026],[77.301,22.41284],[77.30094,22.41675],[77.30967,22.43262],[77.30897,22.43663],[77.30611,22.43838],[77.29918,22.43272],[77.28776,22.43452],[77.28445,22.43322],[77.28009,22.43538],[77.28393,22.4406],[77.28911,22.44204],[77.29262,22.44936],[77.28151,22.46363],[77.28187,22.49853],[77.26901,22.50808],[77.26316,22.51851],[77.26073,22.51901],[77.25367,22.51581],[77.24796,22.51969],[77.24827,22.52297],[77.25392,22.5279],[77.26949,22.53196],[77.27182,22.53524],[77.27168,22.53901],[77.26475,22.54182],[77.2614,22.55065],[77.25647,22.55394],[77.24915,22.55524],[77.24132,22.55039],[77.23802,22.55021]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"409","area_level":"District","area_name":"Narmadapuram","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.4466,22.97608],[78.44316,22.9789],[78.44643,22.98545],[78.44443,22.9871],[78.43346,22.97744],[78.40272,22.96605],[78.39315,22.95956],[78.37834,22.9389],[78.35446,22.92047],[78.34677,22.91774],[78.32869,22.92037],[78.32074,22.91644],[78.30725,22.90224],[78.29754,22.88909],[78.28902,22.87402],[78.27995,22.86784],[78.27625,22.86796],[78.26524,22.87478],[78.25912,22.87589],[78.23772,22.86738],[78.2322,22.87054],[78.2264,22.87664],[78.21633,22.89303],[78.20623,22.89479],[78.19481,22.89076],[78.188,22.88361],[78.18577,22.87529],[78.18307,22.87128],[78.16154,22.86415],[78.12807,22.83716],[78.1251,22.82913],[78.12666,22.80631],[78.12505,22.79947],[78.12124,22.79447],[78.10956,22.78968],[78.10068,22.79087],[78.09106,22.79546],[78.0797,22.80213],[78.07186,22.8099],[78.06406,22.81358],[78.05614,22.81361],[78.03771,22.80275],[78.02961,22.80144],[78.02282,22.8048],[78.00212,22.8213],[77.9912,22.82431],[77.97322,22.82638],[77.95603,22.82284],[77.93712,22.81045],[77.94241,22.79836],[77.9439,22.79052],[77.94179,22.78356],[77.93435,22.77472],[77.9293,22.77127],[77.92479,22.76949],[77.91991,22.77029],[77.90904,22.77549],[77.90639,22.7864],[77.91301,22.79954],[77.9091,22.81248],[77.91002,22.81826],[77.91347,22.82293],[77.9183,22.82482],[77.92847,22.83992],[77.93003,22.84731],[77.92778,22.8514],[77.92083,22.85717],[77.91548,22.85803],[77.91049,22.85624],[77.90083,22.84867],[77.8834,22.83054],[77.87411,22.82923],[77.86646,22.8324],[77.86181,22.83961],[77.86308,22.84672],[77.87058,22.85891],[77.87076,22.86353],[77.86622,22.86751],[77.85996,22.87016],[77.85287,22.87255],[77.84697,22.87234],[77.84059,22.86934],[77.82934,22.85744],[77.82012,22.85066],[77.79869,22.84194],[77.78266,22.81487],[77.77958,22.806],[77.78061,22.7942],[77.77883,22.79073],[77.75265,22.77282],[77.74142,22.76045],[77.72905,22.7582],[77.71136,22.76654],[77.69929,22.76713],[77.6886,22.76205],[77.6846,22.7573],[77.67719,22.7394],[77.67229,22.73485],[77.66498,22.73203],[77.65706,22.73318],[77.64528,22.74164],[77.63697,22.74516],[77.62888,22.74581],[77.62295,22.74419],[77.61753,22.73975],[77.6109,22.7275],[77.59188,22.70242],[77.59007,22.68887],[77.58729,22.6819],[77.58281,22.6771],[77.57275,22.67146],[77.55859,22.66882],[77.53127,22.66857],[77.52059,22.66236],[77.51246,22.6496],[77.50192,22.64395],[77.49451,22.64239],[77.48337,22.64679],[77.46566,22.64738],[77.44551,22.63703],[77.43635,22.62537],[77.4233,22.62426],[77.41392,22.61725],[77.39516,22.60701],[77.37738,22.60951],[77.36586,22.60771],[77.35743,22.6019],[77.35358,22.59675],[77.34434,22.56999],[77.33683,22.56476],[77.32221,22.55869],[77.31058,22.55926],[77.29286,22.56548],[77.28276,22.58151],[77.28047,22.59144],[77.27554,22.60251],[77.26701,22.60638],[77.25878,22.604],[77.22702,22.57224],[77.22099,22.56805],[77.21291,22.56563],[77.2132,22.56201],[77.21696,22.55623],[77.23411,22.55079],[77.24132,22.55039],[77.24915,22.55524],[77.2575,22.55358],[77.2614,22.55065],[77.26475,22.54182],[77.27168,22.53901],[77.27182,22.53524],[77.26949,22.53196],[77.25534,22.5287],[77.24883,22.52362],[77.24769,22.52055],[77.24883,22.51827],[77.25323,22.51586],[77.26073,22.51901],[77.26316,22.51851],[77.26901,22.50808],[77.28231,22.49742],[77.28151,22.46363],[77.29063,22.45285],[77.29258,22.44804],[77.28911,22.44204],[77.28393,22.4406],[77.28009,22.43538],[77.28445,22.43322],[77.28776,22.43452],[77.29918,22.43272],[77.30611,22.43838],[77.30897,22.43663],[77.30967,22.43262],[77.30094,22.41675],[77.301,22.41284],[77.31325,22.40026],[77.31429,22.3934],[77.31915,22.38549],[77.31734,22.37833],[77.32204,22.3756],[77.32298,22.37333],[77.31578,22.36784],[77.31748,22.36197],[77.31404,22.35213],[77.32039,22.34861],[77.32164,22.34065],[77.32968,22.34226],[77.33167,22.33799],[77.34603,22.3267],[77.34818,22.31893],[77.35739,22.31708],[77.35968,22.30912],[77.35201,22.29977],[77.35422,22.29014],[77.35874,22.28519],[77.36685,22.28624],[77.37043,22.2836],[77.36306,22.2689],[77.36319,22.24746],[77.3682,22.24516],[77.38592,22.2446],[77.38997,22.22303],[77.40261,22.22168],[77.41075,22.2244],[77.41665,22.2234],[77.42428,22.21568],[77.43171,22.21344],[77.44069,22.21621],[77.45243,22.2171],[77.45926,22.22423],[77.45872,22.23416],[77.45576,22.24183],[77.45823,22.24835],[77.47779,22.25063],[77.48195,22.25585],[77.48708,22.25757],[77.48694,22.27208],[77.49096,22.27205],[77.49922,22.27748],[77.50813,22.28085],[77.50742,22.28392],[77.50459,22.28426],[77.50304,22.29033],[77.50748,22.31197],[77.51442,22.31108],[77.52011,22.32648],[77.52622,22.33045],[77.53233,22.33],[77.53674,22.33536],[77.54425,22.34067],[77.54802,22.35417],[77.55339,22.35806],[77.55609,22.35655],[77.55427,22.33941],[77.55733,22.33604],[77.56036,22.3358],[77.56713,22.34037],[77.58488,22.34088],[77.59171,22.34353],[77.59598,22.33992],[77.59735,22.33218],[77.60411,22.33214],[77.60838,22.32891],[77.61644,22.33188],[77.62441,22.33267],[77.62296,22.3268],[77.62453,22.32144],[77.62653,22.32065],[77.63398,22.32347],[77.63798,22.32293],[77.63944,22.32167],[77.64175,22.3113],[77.64386,22.30997],[77.65,22.31083],[77.65528,22.30649],[77.6668,22.31154],[77.68227,22.31297],[77.68085,22.31725],[77.68333,22.32219],[77.69691,22.32067],[77.70235,22.32227],[77.71675,22.32157],[77.72044,22.31321],[77.72826,22.3169],[77.73764,22.32632],[77.74968,22.32594],[77.74982,22.32947],[77.75817,22.33173],[77.75658,22.33874],[77.75504,22.3412],[77.74681,22.34405],[77.74445,22.34739],[77.74742,22.3505],[77.7518,22.35143],[77.75349,22.35399],[77.7642,22.35023],[77.76976,22.34644],[77.77492,22.33691],[77.78173,22.33507],[77.78966,22.33536],[77.80777,22.33934],[77.80693,22.34695],[77.82556,22.34938],[77.82966,22.3533],[77.83727,22.35527],[77.84065,22.36278],[77.84969,22.3687],[77.85459,22.36909],[77.85845,22.36613],[77.86192,22.36616],[77.86443,22.36356],[77.86847,22.35077],[77.86357,22.33758],[77.86611,22.32113],[77.86467,22.31943],[77.86502,22.31446],[77.86221,22.30462],[77.86719,22.29749],[77.86548,22.28856],[77.88484,22.2874],[77.89665,22.30367],[77.90616,22.31068],[77.91683,22.31588],[77.92265,22.32444],[77.93909,22.33079],[77.94226,22.33734],[77.94659,22.34118],[77.95178,22.33949],[77.95412,22.33682],[77.95383,22.33273],[77.96314,22.33265],[77.97647,22.33542],[77.9779,22.33277],[77.98193,22.33172],[77.98853,22.33465],[77.99994,22.33282],[78.00778,22.33744],[78.01112,22.33778],[78.01406,22.33583],[78.01862,22.33643],[78.03331,22.33008],[78.06672,22.3491],[78.08269,22.3536],[78.10063,22.36445],[78.122,22.36719],[78.1251,22.36928],[78.12795,22.37457],[78.15042,22.38893],[78.16297,22.39026],[78.1711,22.39678],[78.17754,22.39896],[78.187,22.40033],[78.1877,22.39866],[78.20625,22.39951],[78.21722,22.39675],[78.22261,22.39875],[78.26608,22.39703],[78.27693,22.41226],[78.28485,22.4196],[78.3027,22.41368],[78.30575,22.41443],[78.31692,22.42478],[78.37008,22.41715],[78.38051,22.42052],[78.39087,22.41752],[78.39377,22.41383],[78.39217,22.41047],[78.40052,22.40786],[78.40431,22.40405],[78.40851,22.39927],[78.40969,22.39502],[78.41245,22.39324],[78.4145,22.38577],[78.41816,22.38312],[78.42504,22.38178],[78.42964,22.38375],[78.43129,22.38105],[78.43403,22.38196],[78.43669,22.38031],[78.43706,22.38292],[78.44326,22.37913],[78.44772,22.37869],[78.44904,22.37998],[78.44762,22.38305],[78.45109,22.38403],[78.45406,22.38227],[78.45321,22.37824],[78.45461,22.37675],[78.46378,22.37907],[78.47043,22.37536],[78.4715,22.37829],[78.47025,22.38247],[78.47243,22.38309],[78.48353,22.37955],[78.4857,22.38485],[78.49265,22.3874],[78.49777,22.40026],[78.50561,22.40474],[78.51344,22.40253],[78.52714,22.41998],[78.53165,22.42012],[78.54516,22.41487],[78.55022,22.41969],[78.56044,22.41905],[78.56488,22.42827],[78.55874,22.4372],[78.55801,22.44129],[78.55189,22.44599],[78.55414,22.45569],[78.54524,22.456],[78.53566,22.46149],[78.53328,22.45525],[78.52958,22.45501],[78.52767,22.46016],[78.53056,22.46709],[78.52979,22.46988],[78.52168,22.47132],[78.51619,22.4783],[78.51143,22.47657],[78.50948,22.47768],[78.51079,22.48564],[78.51433,22.49124],[78.51807,22.49093],[78.53241,22.49598],[78.5408,22.5016],[78.54189,22.50645],[78.53944,22.5093],[78.53885,22.51505],[78.5449,22.5253],[78.54794,22.53649],[78.54227,22.54133],[78.53999,22.55028],[78.53238,22.55195],[78.52487,22.55728],[78.52427,22.56169],[78.51903,22.57172],[78.50879,22.5778],[78.5068,22.58184],[78.50351,22.58337],[78.5029,22.58949],[78.49867,22.59027],[78.49782,22.59214],[78.49747,22.60491],[78.50022,22.60566],[78.49944,22.60794],[78.50142,22.6132],[78.4981,22.63403],[78.50026,22.63887],[78.50266,22.63984],[78.50184,22.6427],[78.50481,22.64279],[78.50427,22.64457],[78.50294,22.64397],[78.50592,22.64935],[78.50529,22.6527],[78.50749,22.65505],[78.51073,22.65475],[78.51159,22.65689],[78.51864,22.65828],[78.52052,22.66086],[78.51892,22.66262],[78.52531,22.66618],[78.52989,22.66507],[78.54207,22.657],[78.54423,22.66004],[78.5487,22.66102],[78.55996,22.65841],[78.57526,22.66312],[78.58498,22.65833],[78.59339,22.65659],[78.59542,22.65314],[78.61187,22.64911],[78.61786,22.65319],[78.61899,22.65783],[78.61604,22.66348],[78.62446,22.67391],[78.62605,22.67882],[78.63347,22.68175],[78.63755,22.68654],[78.65084,22.68823],[78.65905,22.68718],[78.65899,22.68862],[78.66464,22.69119],[78.66635,22.68924],[78.66938,22.69111],[78.66708,22.69261],[78.66734,22.69692],[78.6704,22.6997],[78.68048,22.69918],[78.69584,22.70789],[78.69598,22.71087],[78.68869,22.7146],[78.68048,22.71324],[78.68124,22.71696],[78.67769,22.72751],[78.6882,22.74834],[78.69717,22.75741],[78.69872,22.76187],[78.68934,22.77454],[78.67831,22.77797],[78.67366,22.77594],[78.6664,22.76577],[78.66257,22.76412],[78.65736,22.76997],[78.65436,22.77989],[78.64861,22.78116],[78.64577,22.77937],[78.64494,22.77594],[78.64727,22.77023],[78.64713,22.7631],[78.6407,22.75663],[78.63426,22.75701],[78.63084,22.76273],[78.63427,22.77531],[78.63345,22.78344],[78.64016,22.79085],[78.64167,22.79568],[78.63989,22.79898],[78.63661,22.80064],[78.63236,22.79962],[78.62579,22.79415],[78.62223,22.79339],[78.61922,22.79365],[78.61621,22.79809],[78.61812,22.80305],[78.62564,22.81137],[78.6266,22.81786],[78.62154,22.82027],[78.60885,22.81304],[78.60063,22.81164],[78.59036,22.81215],[78.59009,22.81774],[78.60296,22.82536],[78.60652,22.83134],[78.60145,22.83953],[78.60405,22.84779],[78.60296,22.85123],[78.59693,22.85377],[78.58652,22.85351],[78.57747,22.86207],[78.57665,22.86627],[78.57884,22.86957],[78.59021,22.86488],[78.59597,22.86755],[78.59925,22.8753],[78.59569,22.87911],[78.59295,22.87975],[78.58508,22.87394],[78.57596,22.88431],[78.57527,22.88757],[78.57746,22.8924],[78.58732,22.90193],[78.58842,22.90574],[78.58636,22.91185],[78.57899,22.92103],[78.58365,22.93031],[78.58337,22.93285],[78.5809,22.93603],[78.57273,22.93928],[78.56902,22.94373],[78.56874,22.94768],[78.57175,22.95263],[78.57121,22.9553],[78.56531,22.95721],[78.55763,22.95441],[78.53614,22.96113],[78.53257,22.96101],[78.51079,22.95006],[78.5064,22.94993],[78.5016,22.95425],[78.49769,22.96394],[78.49184,22.96651],[78.48326,22.96517],[78.47588,22.95884],[78.47039,22.95748],[78.46484,22.95884],[78.46202,22.9622],[78.46011,22.96837],[78.46082,22.9752],[78.46962,22.9735],[78.47183,22.97548],[78.47072,22.98024],[78.46613,22.98527],[78.45974,22.98618],[78.45459,22.98351],[78.44896,22.97413],[78.4466,22.97608]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"41","area_level":"District","area_name":"Patiala","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[75.97199,29.92843],[75.97093,29.93119],[75.96999,29.93193],[75.96942,29.93176],[75.96871,29.93078],[75.96771,29.93047],[75.96755,29.92827],[75.9661,29.92813],[75.96813,29.92599],[75.96774,29.92101],[75.96767,29.92074],[75.96672,29.92061],[75.96447,29.92165],[75.96388,29.92099],[75.96344,29.91704],[75.96459,29.91534],[75.96587,29.91457],[75.96624,29.91374],[75.96719,29.91388],[75.96628,29.91255],[75.96316,29.91476],[75.96227,29.91346],[75.96136,29.91382],[75.96014,29.91332],[75.95936,29.91353],[75.95778,29.91493],[75.95906,29.91676],[75.95904,29.91738],[75.95563,29.91894],[75.95246,29.92094],[75.94799,29.92121],[75.94585,29.92039],[75.94176,29.9197],[75.9394,29.91854],[75.93756,29.91687],[75.93497,29.91553],[75.93388,29.91462],[75.93271,29.91294],[75.93153,29.91212],[75.92929,29.90815],[75.93311,29.90622],[75.933,29.90476],[75.93435,29.90181],[75.93726,29.89988],[75.93775,29.8991],[75.94396,29.89658],[75.94502,29.89565],[75.94764,29.89493],[75.94936,29.89498],[75.95275,29.8921],[75.9545,29.89104],[75.95507,29.89007],[75.95678,29.89098],[75.95925,29.89096],[75.9603,29.88944],[75.9621,29.89092],[75.96305,29.89266],[75.96709,29.89026],[75.96742,29.89039],[75.97028,29.89301],[75.97411,29.895],[75.97441,29.8959],[75.97687,29.89923],[75.97655,29.90089],[75.97931,29.90432],[75.97822,29.90673],[75.97722,29.90735],[75.97532,29.90743],[75.97395,29.9082],[75.97386,29.90948],[75.9733,29.91014],[75.97403,29.91131],[75.97412,29.91284],[75.97149,29.91495],[75.97101,29.91643],[75.97019,29.91649],[75.96834,29.9153],[75.96793,29.916],[75.96968,29.91796],[75.97068,29.91849],[75.97042,29.91938],[75.97142,29.92001],[75.97044,29.92108],[75.9714,29.92216],[75.97078,29.92425],[75.97065,29.92449],[75.97027,29.92432],[75.96935,29.92523],[75.97009,29.92583],[75.97061,29.92712],[75.97199,29.92843]]],[[[76.64961,30.62697],[76.64136,30.62747],[76.6354,30.62203],[76.63041,30.61419],[76.62288,30.61354],[76.61358,30.60883],[76.61133,30.60276],[76.6074,30.59918],[76.604,30.59189],[76.59839,30.59646],[76.59567,30.59441],[76.5859,30.57978],[76.58789,30.57861],[76.58324,30.57295],[76.5795,30.57258],[76.57871,30.56939],[76.57274,30.56542],[76.57091,30.56554],[76.56894,30.56843],[76.56507,30.5657],[76.56306,30.5679],[76.55042,30.56148],[76.53832,30.55757],[76.52991,30.56265],[76.52208,30.56351],[76.51839,30.56886],[76.50994,30.56719],[76.5044,30.5642],[76.50216,30.56095],[76.50681,30.55461],[76.50062,30.55045],[76.49919,30.54537],[76.50084,30.54059],[76.50012,30.53737],[76.50296,30.53446],[76.50055,30.53228],[76.50258,30.52733],[76.49098,30.51931],[76.49253,30.51301],[76.49658,30.50787],[76.49125,30.49995],[76.49803,30.49325],[76.49511,30.48817],[76.50248,30.47877],[76.50145,30.47304],[76.5028,30.46963],[76.49889,30.46334],[76.4957,30.46562],[76.48744,30.46474],[76.47568,30.4694],[76.47658,30.47058],[76.47039,30.47414],[76.46487,30.46675],[76.47025,30.45995],[76.47001,30.45743],[76.47139,30.45718],[76.46937,30.45479],[76.45976,30.45973],[76.44958,30.44893],[76.44235,30.45482],[76.43316,30.45544],[76.41757,30.46448],[76.41382,30.45568],[76.40736,30.44826],[76.40109,30.45206],[76.39713,30.45197],[76.39603,30.45612],[76.38862,30.46094],[76.38416,30.46622],[76.38454,30.46907],[76.38242,30.47175],[76.379,30.47017],[76.37302,30.47286],[76.3731,30.4691],[76.36225,30.46621],[76.35208,30.46057],[76.34473,30.47519],[76.34345,30.47516],[76.3454,30.47987],[76.33374,30.488],[76.33606,30.49236],[76.33506,30.49475],[76.3297,30.49369],[76.33262,30.49602],[76.32811,30.49918],[76.33293,30.50343],[76.33079,30.51289],[76.32321,30.52871],[76.32835,30.54024],[76.3144,30.54787],[76.30887,30.54545],[76.30012,30.54553],[76.29393,30.54772],[76.28828,30.5446],[76.28609,30.54671],[76.28363,30.54492],[76.27481,30.55299],[76.27604,30.55454],[76.27516,30.55978],[76.26851,30.55893],[76.26216,30.56183],[76.25629,30.56721],[76.25506,30.56662],[76.25645,30.56187],[76.24896,30.55871],[76.24563,30.55416],[76.24711,30.55146],[76.24447,30.54971],[76.23727,30.55021],[76.2364,30.55575],[76.23987,30.5568],[76.23792,30.5666],[76.23535,30.56809],[76.23171,30.56753],[76.22938,30.57008],[76.2199,30.56462],[76.21538,30.56434],[76.21211,30.55853],[76.20738,30.55463],[76.20531,30.55413],[76.20332,30.55638],[76.20138,30.55115],[76.18993,30.54894],[76.18313,30.54138],[76.18092,30.54411],[76.17311,30.54709],[76.16867,30.54311],[76.16568,30.53512],[76.15427,30.5444],[76.14369,30.53469],[76.14543,30.53261],[76.13627,30.52353],[76.13219,30.52718],[76.12365,30.54314],[76.11995,30.54538],[76.11125,30.53538],[76.10827,30.52929],[76.09557,30.53498],[76.09186,30.53982],[76.0859,30.53713],[76.08903,30.53386],[76.08076,30.52027],[76.08353,30.51474],[76.0812,30.51349],[76.07856,30.50828],[76.08103,30.50208],[76.06752,30.49641],[76.06337,30.48869],[76.06596,30.48049],[76.08059,30.47256],[76.07914,30.46939],[76.08021,30.46208],[76.08794,30.45799],[76.07437,30.44912],[76.07116,30.45308],[76.05687,30.43955],[76.04953,30.43563],[76.05281,30.42724],[76.04663,30.42056],[76.04461,30.41554],[76.04099,30.41495],[76.03158,30.40883],[76.036,30.40208],[76.03007,30.3951],[76.02343,30.39041],[76.02493,30.38788],[76.02354,30.37827],[76.01414,30.38176],[76.01357,30.37611],[76.00729,30.36864],[76.00703,30.36535],[76.01053,30.36402],[75.99677,30.36486],[75.99231,30.37197],[75.98929,30.36873],[75.98557,30.36206],[75.98633,30.35578],[75.9846,30.34877],[75.98737,30.3446],[75.98659,30.34053],[75.98851,30.33735],[75.99389,30.33856],[76.00324,30.33387],[76.00695,30.3353],[76.00935,30.33105],[76.01715,30.3283],[76.02042,30.32885],[76.02245,30.33195],[76.02875,30.3326],[76.03322,30.33765],[76.04255,30.3347],[76.04783,30.33894],[76.05741,30.3321],[76.05969,30.32935],[76.05915,30.32671],[76.06803,30.31684],[76.08804,30.30991],[76.09273,30.3145],[76.10687,30.31831],[76.11141,30.32149],[76.12303,30.31797],[76.13363,30.31149],[76.13828,30.3125],[76.1496,30.3208],[76.15183,30.32505],[76.15546,30.3241],[76.16689,30.33161],[76.16783,30.32541],[76.17554,30.31292],[76.17814,30.31229],[76.17962,30.3084],[76.18736,30.30002],[76.19787,30.29574],[76.20345,30.283],[76.19872,30.27529],[76.19407,30.27226],[76.18271,30.27485],[76.17693,30.26578],[76.17691,30.26316],[76.17904,30.26255],[76.17798,30.26094],[76.17941,30.25809],[76.18302,30.25695],[76.17398,30.25077],[76.17597,30.24913],[76.16624,30.2399],[76.16285,30.24624],[76.15355,30.24796],[76.1432,30.2422],[76.1435,30.24011],[76.13869,30.23767],[76.13965,30.23717],[76.13795,30.23324],[76.13209,30.24015],[76.1268,30.23538],[76.12269,30.23749],[76.11513,30.22929],[76.1123,30.22982],[76.11408,30.22694],[76.11272,30.22535],[76.11438,30.22356],[76.10835,30.22088],[76.09553,30.21865],[76.09515,30.22136],[76.08467,30.22165],[76.08423,30.22024],[76.0812,30.22011],[76.08079,30.22474],[76.07773,30.22499],[76.07532,30.22192],[76.07084,30.22021],[76.07049,30.21658],[76.06834,30.21694],[76.06249,30.21099],[76.062,30.20921],[76.06353,30.20793],[76.06846,30.20622],[76.06423,30.2042],[76.06642,30.20331],[76.06051,30.19789],[76.06038,30.19544],[76.05747,30.19214],[76.04932,30.18669],[76.05367,30.18247],[76.05659,30.17554],[76.05502,30.16976],[76.05723,30.16481],[76.07368,30.1519],[76.06952,30.14696],[76.06267,30.1487],[76.06229,30.1443],[76.06904,30.1438],[76.07054,30.14041],[76.07895,30.13596],[76.08026,30.13132],[76.0742,30.13139],[76.07177,30.12433],[76.07375,30.12177],[76.08144,30.12239],[76.08358,30.11973],[76.0806,30.11553],[76.07745,30.1145],[76.07869,30.11107],[76.09329,30.11635],[76.09674,30.11629],[76.10406,30.10674],[76.10473,30.10359],[76.10084,30.10062],[76.09866,30.09241],[76.09494,30.08941],[76.08914,30.0801],[76.09152,30.07429],[76.0811,30.06376],[76.08733,30.05457],[76.08036,30.05562],[76.07084,30.05979],[76.06591,30.05505],[76.06457,30.05645],[76.06651,30.06115],[76.05689,30.06655],[76.05155,30.06453],[76.0524,30.06097],[76.04358,30.05238],[76.0518,30.04953],[76.0506,30.04763],[76.04758,30.04915],[76.04149,30.04813],[76.03952,30.04246],[76.04194,30.04197],[76.03759,30.03793],[76.03829,30.03558],[76.04405,30.0318],[76.04203,30.02744],[76.03416,30.01864],[76.02863,30.02032],[76.02672,30.01288],[76.03209,30.01166],[76.03206,30.01058],[76.01503,30.0],[76.00682,29.98334],[76.00877,29.98129],[76.02164,29.97648],[76.02685,29.97235],[76.02067,29.96624],[76.02597,29.9633],[76.02636,29.95981],[76.00353,29.94476],[75.99605,29.94839],[75.98973,29.94568],[75.99055,29.94408],[75.98713,29.94107],[75.98847,29.93872],[75.98477,29.93624],[75.98612,29.92519],[75.98989,29.92262],[75.9866,29.91463],[75.98723,29.91241],[75.98301,29.90679],[75.98385,29.90402],[75.99179,29.89913],[76.0119,29.89047],[76.01169,29.88481],[76.01561,29.87761],[76.01419,29.87364],[76.01992,29.86894],[76.02266,29.86952],[76.02882,29.87655],[76.03182,29.87668],[76.03305,29.88244],[76.03834,29.88013],[76.03732,29.87639],[76.03929,29.8729],[76.04356,29.87606],[76.0481,29.86933],[76.05041,29.87153],[76.05504,29.87046],[76.05613,29.86929],[76.05277,29.86293],[76.0528,29.85984],[76.05988,29.84657],[76.06495,29.84172],[76.0723,29.84346],[76.07531,29.84141],[76.08414,29.84657],[76.0895,29.84708],[76.09035,29.85111],[76.09985,29.84716],[76.10439,29.85522],[76.11106,29.85953],[76.1171,29.85992],[76.12246,29.85757],[76.11909,29.855],[76.12013,29.85307],[76.11805,29.84851],[76.12024,29.84326],[76.11923,29.83492],[76.11754,29.83464],[76.1179,29.83179],[76.11,29.82251],[76.11051,29.81856],[76.10509,29.81183],[76.11585,29.80231],[76.12015,29.80075],[76.11967,29.79228],[76.12395,29.79091],[76.13323,29.80445],[76.14173,29.81083],[76.14162,29.81546],[76.14549,29.81908],[76.15326,29.82003],[76.16449,29.81761],[76.17374,29.81791],[76.18487,29.82272],[76.19782,29.84476],[76.20269,29.84301],[76.21201,29.84301],[76.22055,29.83784],[76.22062,29.8467],[76.22223,29.84873],[76.22725,29.85177],[76.23047,29.85148],[76.23246,29.8537],[76.24257,29.852],[76.24446,29.85501],[76.24387,29.86893],[76.24676,29.87595],[76.23829,29.87869],[76.2294,29.88563],[76.22682,29.88634],[76.22626,29.88379],[76.22232,29.88495],[76.2213,29.88336],[76.2174,29.88404],[76.21295,29.88704],[76.21084,29.89131],[76.20868,29.88738],[76.20977,29.88589],[76.20114,29.88382],[76.19943,29.88451],[76.19984,29.88841],[76.19346,29.88562],[76.18974,29.8904],[76.18633,29.89083],[76.18566,29.89244],[76.1893,29.90867],[76.18781,29.92063],[76.18528,29.92049],[76.1814,29.92362],[76.17918,29.92264],[76.17549,29.92383],[76.17197,29.92627],[76.17252,29.92882],[76.17814,29.93337],[76.17818,29.94207],[76.18376,29.9483],[76.19114,29.94882],[76.20352,29.94425],[76.21018,29.93961],[76.21312,29.94509],[76.21274,29.94709],[76.2053,29.96158],[76.20108,29.96724],[76.19809,29.96826],[76.20573,29.9743],[76.20477,29.97691],[76.20592,29.98037],[76.20184,29.98475],[76.20241,29.98932],[76.20806,29.98605],[76.21074,29.98815],[76.20653,29.99345],[76.21148,29.99545],[76.20926,30.00406],[76.21599,30.00706],[76.22556,30.00769],[76.23199,30.01521],[76.21317,30.0221],[76.21396,30.03172],[76.22003,30.03411],[76.22241,30.03669],[76.22181,30.04807],[76.22832,30.05285],[76.22623,30.05866],[76.23672,30.0679],[76.2467,30.08213],[76.24784,30.08106],[76.24929,30.08231],[76.24827,30.08482],[76.24967,30.08691],[76.25354,30.0894],[76.26015,30.08741],[76.2653,30.09878],[76.25249,30.10264],[76.25165,30.10444],[76.25318,30.10608],[76.25173,30.1075],[76.24893,30.10383],[76.24211,30.10051],[76.23689,30.10387],[76.23832,30.10561],[76.23634,30.10657],[76.2344,30.105],[76.22982,30.10669],[76.2238,30.11162],[76.21677,30.11001],[76.21629,30.1128],[76.22028,30.11527],[76.21709,30.12281],[76.21107,30.12056],[76.19638,30.12345],[76.19695,30.13246],[76.20244,30.13605],[76.20474,30.13307],[76.20804,30.13402],[76.21593,30.12374],[76.22428,30.12708],[76.21516,30.13489],[76.21519,30.13959],[76.20773,30.14427],[76.20767,30.15699],[76.2146,30.15617],[76.21469,30.1532],[76.21629,30.15293],[76.21649,30.15023],[76.21901,30.1477],[76.22434,30.14696],[76.22688,30.14454],[76.23438,30.14493],[76.23252,30.13975],[76.24322,30.13239],[76.24227,30.12938],[76.24401,30.12819],[76.24694,30.13054],[76.25565,30.12605],[76.25548,30.12372],[76.25311,30.12308],[76.25369,30.12157],[76.26778,30.11442],[76.27518,30.11459],[76.27855,30.11027],[76.28534,30.10618],[76.29063,30.10774],[76.2966,30.1144],[76.30757,30.10872],[76.31955,30.09707],[76.3193,30.09577],[76.32176,30.09506],[76.33119,30.09966],[76.33991,30.0987],[76.34415,30.10082],[76.34473,30.10477],[76.34626,30.10388],[76.34615,30.10618],[76.35443,30.11687],[76.36023,30.12017],[76.35217,30.12178],[76.34206,30.12634],[76.33351,30.13817],[76.33395,30.14199],[76.33781,30.14327],[76.34688,30.14277],[76.34749,30.1453],[76.35049,30.14683],[76.35306,30.14301],[76.35929,30.13974],[76.36132,30.12973],[76.36695,30.12418],[76.36076,30.12255],[76.3622,30.12012],[76.36791,30.1176],[76.38888,30.11323],[76.40006,30.11667],[76.39845,30.12057],[76.39486,30.12198],[76.39598,30.12612],[76.39111,30.1348],[76.39765,30.14017],[76.4009,30.13889],[76.40684,30.14491],[76.41009,30.14504],[76.40178,30.15379],[76.39503,30.15797],[76.3914,30.16432],[76.39349,30.16694],[76.38718,30.17059],[76.39636,30.17958],[76.40298,30.18211],[76.40362,30.18666],[76.40641,30.19034],[76.42274,30.19224],[76.43433,30.18311],[76.43382,30.18071],[76.43039,30.17797],[76.43492,30.17549],[76.44058,30.16584],[76.43652,30.15595],[76.43479,30.15667],[76.42851,30.15085],[76.42986,30.14845],[76.43977,30.14367],[76.43768,30.14212],[76.43854,30.13311],[76.4439,30.13046],[76.45088,30.13216],[76.45557,30.13042],[76.45803,30.13183],[76.45801,30.1302],[76.45998,30.12944],[76.45674,30.11224],[76.46255,30.10102],[76.47276,30.09767],[76.48206,30.09753],[76.49129,30.09462],[76.49798,30.09449],[76.50208,30.09192],[76.51037,30.08231],[76.50871,30.07895],[76.50828,30.07031],[76.52248,30.07411],[76.52685,30.07696],[76.53528,30.0731],[76.54451,30.07466],[76.54565,30.07932],[76.55,30.07885],[76.55638,30.08251],[76.56055,30.09338],[76.5727,30.09906],[76.58655,30.11072],[76.59895,30.11209],[76.60307,30.1186],[76.61279,30.12672],[76.62353,30.14019],[76.63272,30.14183],[76.6353,30.14664],[76.64374,30.15021],[76.63931,30.15263],[76.63272,30.16936],[76.62893,30.16889],[76.62373,30.17503],[76.6234,30.18017],[76.60731,30.19178],[76.61099,30.19634],[76.6101,30.19847],[76.61419,30.20443],[76.61854,30.20055],[76.6303,30.19853],[76.63944,30.19437],[76.6456,30.18807],[76.6355,30.18454],[76.63828,30.1781],[76.63543,30.16998],[76.63926,30.17024],[76.64187,30.171],[76.64604,30.17639],[76.64824,30.17547],[76.6523,30.1781],[76.65163,30.17961],[76.65406,30.18119],[76.65404,30.18397],[76.65682,30.18614],[76.65705,30.18809],[76.65064,30.19314],[76.65426,30.20347],[76.63932,30.20878],[76.63575,30.20683],[76.62171,30.20764],[76.61553,30.21168],[76.61484,30.21353],[76.6164,30.21632],[76.62332,30.21982],[76.62751,30.22719],[76.62326,30.23142],[76.60293,30.24133],[76.6061,30.24691],[76.60371,30.25188],[76.59155,30.25576],[76.59066,30.25341],[76.5879,30.25396],[76.58269,30.24779],[76.56786,30.23809],[76.56621,30.23531],[76.56377,30.2353],[76.56075,30.22892],[76.54856,30.22514],[76.54567,30.22555],[76.54311,30.22839],[76.54523,30.23001],[76.55362,30.23014],[76.56005,30.24519],[76.55831,30.24858],[76.5566,30.26225],[76.55959,30.26484],[76.56203,30.26195],[76.57193,30.26524],[76.57514,30.26188],[76.58063,30.2652],[76.58382,30.27022],[76.58649,30.26854],[76.58802,30.26483],[76.59292,30.26174],[76.60113,30.27032],[76.6087,30.2679],[76.60973,30.27039],[76.61163,30.26953],[76.61441,30.2725],[76.62053,30.26495],[76.62343,30.26455],[76.62723,30.26938],[76.6256,30.2712],[76.63144,30.27609],[76.63036,30.27738],[76.63216,30.28385],[76.63542,30.28959],[76.63887,30.28439],[76.65002,30.29067],[76.65568,30.29839],[76.65955,30.29989],[76.66543,30.3059],[76.66768,30.30284],[76.67486,30.29935],[76.68079,30.30313],[76.67804,30.30583],[76.68647,30.31426],[76.68558,30.31755],[76.68209,30.31979],[76.688,30.32686],[76.69058,30.32631],[76.69563,30.32157],[76.70005,30.32805],[76.70487,30.32588],[76.71102,30.3258],[76.71639,30.33602],[76.72229,30.33324],[76.72975,30.33882],[76.72737,30.34106],[76.73262,30.34832],[76.73847,30.34632],[76.74552,30.34914],[76.74576,30.351],[76.74985,30.35306],[76.75113,30.3553],[76.74892,30.35699],[76.74929,30.3618],[76.74608,30.36719],[76.73794,30.37041],[76.73524,30.36785],[76.73339,30.36883],[76.72571,30.36185],[76.71991,30.36333],[76.71871,30.36658],[76.73124,30.37966],[76.7296,30.38226],[76.71987,30.3786],[76.71761,30.38004],[76.71864,30.38248],[76.71285,30.3902],[76.71511,30.39745],[76.71413,30.40171],[76.7152,30.40282],[76.72221,30.399],[76.72515,30.40218],[76.72822,30.40036],[76.73981,30.41106],[76.73509,30.41922],[76.74105,30.42424],[76.74105,30.42622],[76.74816,30.42882],[76.74863,30.43904],[76.74648,30.44071],[76.74636,30.44313],[76.74752,30.44459],[76.75236,30.44317],[76.75557,30.44516],[76.75848,30.45112],[76.75528,30.4521],[76.75404,30.45618],[76.75597,30.45788],[76.75211,30.46032],[76.75305,30.46976],[76.75644,30.47274],[76.75738,30.47161],[76.76047,30.47437],[76.76543,30.47539],[76.76933,30.48571],[76.76771,30.49594],[76.76998,30.50077],[76.7691,30.50351],[76.77204,30.50748],[76.77526,30.50736],[76.78003,30.51036],[76.78702,30.51888],[76.78261,30.52116],[76.77646,30.52085],[76.76841,30.52464],[76.76386,30.52779],[76.76587,30.53068],[76.76072,30.53368],[76.75422,30.53305],[76.75103,30.53691],[76.75098,30.54059],[76.75405,30.54327],[76.75114,30.54691],[76.75287,30.55016],[76.7507,30.55233],[76.75262,30.55567],[76.75921,30.55774],[76.76565,30.55063],[76.76902,30.55169],[76.76196,30.55945],[76.76583,30.56338],[76.7679,30.56829],[76.77661,30.57623],[76.77251,30.58311],[76.77972,30.59273],[76.78664,30.59521],[76.78804,30.59728],[76.78311,30.60009],[76.78565,30.60334],[76.78415,30.60229],[76.77731,30.60899],[76.77311,30.61037],[76.76199,30.60479],[76.75721,30.59694],[76.75143,30.5964],[76.7486,30.59033],[76.7474,30.59127],[76.7468,30.58781],[76.7411,30.5837],[76.7387,30.57421],[76.73513,30.57166],[76.73195,30.57071],[76.72542,30.57884],[76.7206,30.58209],[76.72182,30.58601],[76.71877,30.58983],[76.71064,30.58526],[76.70337,30.58702],[76.70548,30.57487],[76.70394,30.5736],[76.7001,30.5741],[76.6985,30.57076],[76.69237,30.5703],[76.6859,30.57285],[76.68361,30.57909],[76.68937,30.59361],[76.68473,30.59383],[76.66874,30.58446],[76.66294,30.58315],[76.66094,30.58701],[76.66846,30.59326],[76.66473,30.59696],[76.6632,30.60149],[76.6634,30.60751],[76.66577,30.61095],[76.66265,30.61268],[76.65831,30.61052],[76.65341,30.62414],[76.64961,30.62697]],[[76.06162,30.05467],[76.06243,30.05108],[76.0613,30.04926],[76.05639,30.05226],[76.05688,30.05665],[76.06229,30.05616],[76.06162,30.05467]],[[76.06516,30.02908],[76.06316,30.03145],[76.06572,30.03237],[76.06733,30.02955],[76.06516,30.02908]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"410","area_level":"District","area_name":"Indore","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.60644,23.08697],[75.60628,23.08923],[75.58134,23.08514],[75.56599,23.08597],[75.56441,23.07555],[75.56641,23.07529],[75.56573,23.07158],[75.56841,23.07121],[75.56495,23.06516],[75.54569,23.06243],[75.54544,23.04894],[75.53724,23.04459],[75.53362,23.03528],[75.52848,23.03384],[75.52588,23.03629],[75.52041,23.03722],[75.52208,23.03817],[75.52087,23.04175],[75.51796,23.04021],[75.51679,23.03724],[75.51872,23.0324],[75.51486,23.02735],[75.51647,23.02223],[75.50707,23.02164],[75.50737,23.01786],[75.5112,23.0168],[75.51163,23.01519],[75.50947,23.01171],[75.50763,23.01267],[75.50479,23.00394],[75.50225,23.0015],[75.49908,23.00232],[75.4981,22.9989],[75.49691,22.99881],[75.49502,23.00297],[75.48774,23.00343],[75.48855,23.01488],[75.48438,23.01791],[75.4752,23.01642],[75.45995,23.0069],[75.4591,23.00525],[75.47374,23.00268],[75.47353,22.98623],[75.48572,22.98554],[75.48707,22.98749],[75.4929,22.98454],[75.48629,22.96803],[75.46346,22.96953],[75.45575,22.94197],[75.47606,22.9394],[75.47551,22.92633],[75.45936,22.92612],[75.45615,22.91525],[75.43896,22.90726],[75.44071,22.88049],[75.43703,22.86779],[75.44206,22.86707],[75.44148,22.85246],[75.43796,22.84456],[75.43307,22.84486],[75.43494,22.83114],[75.43169,22.82995],[75.42506,22.83155],[75.42307,22.82874],[75.42363,22.8247],[75.42627,22.82466],[75.42522,22.80953],[75.43583,22.80939],[75.43475,22.7991],[75.44306,22.7956],[75.43916,22.7866],[75.43836,22.77335],[75.45632,22.76946],[75.46581,22.76923],[75.47177,22.77312],[75.47434,22.77304],[75.47516,22.77048],[75.479,22.7714],[75.48086,22.76914],[75.48371,22.76902],[75.48408,22.76637],[75.49098,22.76259],[75.48513,22.75886],[75.48574,22.75421],[75.4836,22.75131],[75.48905,22.74672],[75.49561,22.74533],[75.49471,22.73169],[75.50908,22.73215],[75.51009,22.72414],[75.50677,22.71608],[75.51419,22.71062],[75.51484,22.70739],[75.51163,22.69758],[75.50786,22.6961],[75.50734,22.69448],[75.51713,22.68386],[75.52068,22.66725],[75.51934,22.66442],[75.52011,22.66183],[75.507,22.66295],[75.4975,22.66012],[75.4954,22.64532],[75.50938,22.64425],[75.51473,22.65089],[75.51787,22.65915],[75.52054,22.65964],[75.52377,22.65459],[75.5181,22.6531],[75.5241,22.6457],[75.52473,22.64121],[75.52363,22.64047],[75.52775,22.63587],[75.52866,22.63079],[75.53595,22.63021],[75.53739,22.63583],[75.55465,22.63774],[75.5647,22.63613],[75.56765,22.65806],[75.57588,22.66099],[75.58404,22.66059],[75.58968,22.65924],[75.59141,22.65311],[75.59843,22.65109],[75.59968,22.64365],[75.60494,22.63062],[75.64534,22.63222],[75.65516,22.63832],[75.67969,22.63614],[75.68756,22.62981],[75.69668,22.62638],[75.70551,22.63084],[75.70436,22.64654],[75.69217,22.644],[75.68713,22.63856],[75.6833,22.63732],[75.67894,22.64306],[75.68013,22.64974],[75.68322,22.65058],[75.68355,22.65487],[75.67859,22.65803],[75.68604,22.65887],[75.69139,22.66137],[75.70677,22.66166],[75.70859,22.64921],[75.71361,22.63431],[75.71356,22.61962],[75.70804,22.61472],[75.70491,22.6148],[75.70022,22.61174],[75.698,22.61363],[75.69619,22.59564],[75.68611,22.5961],[75.68328,22.58792],[75.68018,22.58438],[75.68076,22.58186],[75.66407,22.57613],[75.663,22.57216],[75.65718,22.56915],[75.63516,22.56579],[75.63464,22.56099],[75.63108,22.55972],[75.62022,22.56088],[75.61833,22.55859],[75.61552,22.55845],[75.60988,22.56595],[75.60986,22.56844],[75.59592,22.56706],[75.59512,22.54739],[75.60236,22.54089],[75.59767,22.54196],[75.59699,22.52692],[75.59972,22.52444],[75.59846,22.51992],[75.57812,22.51781],[75.57717,22.51352],[75.57171,22.51367],[75.56591,22.51612],[75.5575,22.51518],[75.55821,22.50795],[75.55407,22.49947],[75.5529,22.49094],[75.55361,22.48863],[75.56505,22.49077],[75.56699,22.47804],[75.56462,22.47167],[75.57444,22.45301],[75.56531,22.44298],[75.56615,22.43598],[75.56367,22.42706],[75.55336,22.41806],[75.54019,22.41158],[75.54284,22.41147],[75.54585,22.40809],[75.54648,22.39298],[75.54793,22.39423],[75.55016,22.3925],[75.55042,22.38979],[75.55492,22.38797],[75.5518,22.38286],[75.5574,22.3769],[75.56333,22.37638],[75.56638,22.37429],[75.57128,22.37765],[75.57503,22.37781],[75.57927,22.37315],[75.57988,22.37022],[75.58168,22.37159],[75.58825,22.37146],[75.59018,22.36359],[75.59271,22.36097],[75.59849,22.3646],[75.5996,22.36244],[75.5987,22.35998],[75.60204,22.36331],[75.6103,22.36368],[75.60655,22.35969],[75.61043,22.35883],[75.61046,22.35768],[75.60713,22.35617],[75.60556,22.3514],[75.61092,22.34677],[75.6076,22.34501],[75.60526,22.34655],[75.60264,22.34533],[75.59983,22.34772],[75.59963,22.34075],[75.60587,22.34066],[75.61569,22.33772],[75.62066,22.34299],[75.62549,22.34289],[75.62901,22.34477],[75.63506,22.35288],[75.63514,22.35518],[75.64095,22.35619],[75.64228,22.35509],[75.64238,22.34897],[75.64079,22.34505],[75.64629,22.34133],[75.64432,22.33596],[75.65355,22.33214],[75.65357,22.33541],[75.65115,22.33948],[75.65453,22.34258],[75.66246,22.34558],[75.67471,22.34404],[75.67552,22.34925],[75.68135,22.35317],[75.68716,22.35439],[75.69273,22.3599],[75.70372,22.35859],[75.70284,22.36125],[75.71346,22.36227],[75.72218,22.36957],[75.72511,22.36902],[75.72581,22.36517],[75.73606,22.35817],[75.75206,22.3579],[75.75868,22.36392],[75.76257,22.36468],[75.76272,22.36704],[75.76806,22.36704],[75.77027,22.36922],[75.77141,22.36689],[75.77521,22.36578],[75.78041,22.37357],[75.78447,22.37637],[75.79108,22.37663],[75.79942,22.38026],[75.79964,22.38573],[75.80498,22.38794],[75.80906,22.38708],[75.81571,22.39188],[75.82182,22.40613],[75.83437,22.40884],[75.83817,22.40052],[75.84955,22.39181],[75.84945,22.38392],[75.85627,22.38374],[75.85834,22.38057],[75.86436,22.38003],[75.87394,22.38154],[75.87882,22.38464],[75.88127,22.38342],[75.88747,22.39008],[75.89276,22.39131],[75.89933,22.39074],[75.90341,22.38706],[75.9094,22.38797],[75.91158,22.40224],[75.9087,22.4091],[75.91329,22.41452],[75.91397,22.42049],[75.96088,22.43058],[75.96865,22.42877],[75.97126,22.41981],[75.98701,22.41672],[75.99382,22.4136],[75.99806,22.41791],[76.00663,22.42198],[76.00478,22.42657],[76.00735,22.42882],[76.00664,22.43281],[76.01298,22.44106],[76.00862,22.4446],[76.02147,22.44494],[76.0319,22.43706],[76.03153,22.44823],[76.04561,22.45983],[76.0493,22.45821],[76.0492,22.4566],[76.05263,22.4537],[76.05528,22.46159],[76.05015,22.47212],[76.05067,22.47836],[76.04771,22.48066],[76.04062,22.48089],[76.03926,22.48356],[76.03472,22.48192],[76.03475,22.48576],[76.02367,22.49503],[76.02603,22.4963],[76.02597,22.49937],[76.02795,22.50059],[76.02643,22.5027],[76.03042,22.51005],[76.02827,22.51824],[76.02788,22.52919],[76.02977,22.53014],[76.03337,22.52792],[76.03952,22.52914],[76.04411,22.53452],[76.05198,22.53081],[76.06045,22.53353],[76.07393,22.52791],[76.07637,22.5237],[76.0782,22.53062],[76.08146,22.53473],[76.08071,22.53915],[76.08688,22.54002],[76.08505,22.54683],[76.09122,22.55517],[76.09264,22.55665],[76.09728,22.55441],[76.1067,22.56],[76.10271,22.56238],[76.10488,22.56356],[76.1033,22.56521],[76.1066,22.5668],[76.10595,22.5676],[76.10211,22.56648],[76.1021,22.5643],[76.09278,22.56422],[76.08163,22.56866],[76.07878,22.57062],[76.07814,22.57329],[76.07248,22.57331],[76.07259,22.577],[76.07046,22.5801],[76.06181,22.58485],[76.06284,22.58803],[76.06455,22.5881],[76.06481,22.58601],[76.06918,22.58622],[76.07249,22.58435],[76.07369,22.58572],[76.08478,22.58381],[76.08286,22.58785],[76.08395,22.58861],[76.08831,22.58617],[76.08314,22.59253],[76.08748,22.59273],[76.08208,22.59883],[76.08211,22.60344],[76.08673,22.59787],[76.089,22.59994],[76.09134,22.5977],[76.09121,22.59393],[76.09357,22.59115],[76.09712,22.59689],[76.10056,22.59559],[76.09858,22.59147],[76.10084,22.58638],[76.10545,22.58556],[76.10667,22.58786],[76.10545,22.59027],[76.1076,22.59312],[76.11104,22.59102],[76.11301,22.58652],[76.11189,22.58502],[76.1141,22.58192],[76.11549,22.58596],[76.11943,22.5849],[76.11441,22.58666],[76.1149,22.58888],[76.11951,22.59049],[76.12345,22.58921],[76.11909,22.5922],[76.11962,22.59357],[76.11711,22.59572],[76.11444,22.5952],[76.11324,22.59797],[76.10784,22.60002],[76.11362,22.60155],[76.1168,22.6003],[76.11659,22.60314],[76.11922,22.60426],[76.121,22.59979],[76.12412,22.59849],[76.12733,22.59403],[76.12618,22.60181],[76.12877,22.60375],[76.13165,22.59829],[76.13226,22.60472],[76.1359,22.60284],[76.13796,22.60414],[76.14084,22.59968],[76.13845,22.59783],[76.14136,22.59548],[76.13668,22.59241],[76.14367,22.58884],[76.1443,22.58994],[76.14151,22.59222],[76.14382,22.59862],[76.1413,22.60049],[76.14092,22.60362],[76.1478,22.60372],[76.14202,22.60752],[76.14878,22.61347],[76.1535,22.6089],[76.16124,22.60776],[76.16228,22.60085],[76.16511,22.60072],[76.16816,22.60345],[76.16572,22.61088],[76.16117,22.61157],[76.16067,22.61536],[76.15798,22.61551],[76.15736,22.61844],[76.15984,22.61884],[76.1659,22.61613],[76.16644,22.6171],[76.16313,22.61966],[76.16254,22.62265],[76.15227,22.62421],[76.15174,22.62541],[76.15394,22.62696],[76.15136,22.6325],[76.15934,22.62916],[76.15791,22.63408],[76.16066,22.63418],[76.16505,22.62952],[76.17013,22.62773],[76.17222,22.63015],[76.17203,22.63304],[76.17421,22.63179],[76.17485,22.63505],[76.17652,22.63488],[76.17856,22.63847],[76.18308,22.63919],[76.18513,22.6366],[76.18814,22.63997],[76.19045,22.63946],[76.19015,22.63468],[76.18781,22.63669],[76.18627,22.6325],[76.1807,22.63375],[76.17519,22.62604],[76.17577,22.62402],[76.17234,22.62118],[76.17421,22.61992],[76.17538,22.61486],[76.18374,22.61733],[76.18245,22.61156],[76.18566,22.61167],[76.18925,22.60884],[76.18468,22.60472],[76.17807,22.60455],[76.17566,22.60046],[76.17995,22.59874],[76.18372,22.59915],[76.18436,22.59724],[76.1875,22.59713],[76.19317,22.60081],[76.1926,22.61261],[76.19943,22.62524],[76.21409,22.62309],[76.21432,22.61702],[76.2167,22.6158],[76.23207,22.61708],[76.23606,22.62384],[76.2375,22.63559],[76.24728,22.64383],[76.24201,22.64296],[76.24025,22.64887],[76.23311,22.64926],[76.23063,22.6515],[76.22786,22.65134],[76.23413,22.66181],[76.22967,22.67533],[76.22184,22.67171],[76.22183,22.66968],[76.2135,22.66189],[76.20067,22.66122],[76.19639,22.66279],[76.19129,22.66085],[76.19229,22.66754],[76.20396,22.67611],[76.19994,22.6765],[76.197,22.68453],[76.19049,22.69023],[76.18065,22.69454],[76.17525,22.69502],[76.17284,22.6942],[76.17109,22.69042],[76.15734,22.68948],[76.14088,22.69277],[76.1349,22.6982],[76.1281,22.69969],[76.12313,22.70271],[76.11975,22.70292],[76.1191,22.69935],[76.11789,22.69925],[76.10324,22.70152],[76.10031,22.71638],[76.09778,22.71578],[76.09604,22.71747],[76.09343,22.71504],[76.09351,22.71809],[76.09798,22.7231],[76.09801,22.72608],[76.08889,22.72903],[76.0878,22.73347],[76.08634,22.73405],[76.08652,22.73851],[76.08893,22.74027],[76.08903,22.74557],[76.08445,22.74877],[76.08575,22.75213],[76.08344,22.75207],[76.0821,22.75502],[76.07946,22.7554],[76.08308,22.75767],[76.0829,22.75985],[76.07882,22.76427],[76.08017,22.76785],[76.07669,22.77354],[76.07295,22.77336],[76.07209,22.77691],[76.06834,22.78139],[76.06803,22.78971],[76.06515,22.7912],[76.06224,22.79567],[76.06286,22.80216],[76.05997,22.80409],[76.0602,22.80693],[76.05377,22.80268],[76.05202,22.80589],[76.04921,22.80657],[76.04849,22.80908],[76.05076,22.81039],[76.05231,22.81365],[76.0515,22.81518],[76.05425,22.816],[76.05129,22.81901],[76.04852,22.8171],[76.04256,22.82313],[76.04242,22.82675],[76.03674,22.82982],[76.0367,22.83339],[76.03918,22.83724],[76.03685,22.83845],[76.03753,22.8412],[76.03399,22.84249],[76.03246,22.84757],[76.02759,22.85169],[76.02265,22.851],[76.02098,22.85683],[76.02324,22.85973],[76.01376,22.86303],[76.01109,22.86262],[76.01045,22.86016],[76.00604,22.86025],[76.00366,22.86569],[75.99688,22.87075],[75.99662,22.87423],[75.99063,22.87164],[75.9843,22.87276],[75.97937,22.88089],[75.9804,22.88327],[75.98614,22.88601],[75.98057,22.89313],[75.98297,22.89687],[75.98249,22.90165],[75.97961,22.90607],[75.98189,22.91112],[75.97716,22.91699],[75.97741,22.92178],[75.97073,22.9297],[75.96581,22.92956],[75.96469,22.93479],[75.96663,22.93821],[75.9651,22.94443],[75.96259,22.94477],[75.96018,22.94271],[75.95168,22.94651],[75.95143,22.95148],[75.94761,22.95301],[75.94643,22.95785],[75.94131,22.95851],[75.9423,22.96321],[75.93709,22.96305],[75.93646,22.96812],[75.93234,22.96881],[75.92865,22.97354],[75.9241,22.97473],[75.92357,22.97604],[75.92629,22.97825],[75.92482,22.98028],[75.91903,22.97943],[75.91698,22.97556],[75.91511,22.97664],[75.91397,22.98118],[75.91194,22.98301],[75.91401,22.98672],[75.9134,22.98877],[75.90983,22.98897],[75.90662,22.99243],[75.90091,22.99502],[75.90069,22.99776],[75.89803,22.99973],[75.89548,23.00604],[75.89189,23.00496],[75.88775,23.00822],[75.88919,23.01275],[75.88432,23.01619],[75.88378,23.01953],[75.88653,23.02145],[75.88392,23.02704],[75.88101,23.02826],[75.87779,23.02611],[75.87688,23.03057],[75.8719,23.03336],[75.87464,23.03735],[75.87431,23.03923],[75.86707,23.03878],[75.867,23.03685],[75.84665,23.03643],[75.84219,23.02912],[75.81541,23.03748],[75.8177,23.03987],[75.81617,23.04091],[75.80785,23.04025],[75.80476,23.03445],[75.79405,23.03495],[75.77765,23.03257],[75.77823,23.0278],[75.76003,23.02842],[75.75957,23.03507],[75.73726,23.03464],[75.73298,23.0336],[75.73166,23.01567],[75.72387,23.01471],[75.7149,23.01552],[75.70961,23.01862],[75.69805,23.01801],[75.6848,23.02083],[75.67908,23.02022],[75.67838,23.01622],[75.67174,23.01411],[75.65795,23.01895],[75.65661,23.02071],[75.65022,23.01993],[75.65048,23.02367],[75.64852,23.02357],[75.64945,23.02593],[75.64459,23.02135],[75.64454,23.01964],[75.64124,23.02373],[75.64094,23.02074],[75.63674,23.02256],[75.63553,23.02013],[75.63633,23.01767],[75.64104,23.0171],[75.64083,23.0127],[75.64575,23.01007],[75.64623,23.0069],[75.63224,23.00692],[75.6313,23.01768],[75.63331,23.02914],[75.62839,23.03009],[75.62635,23.03701],[75.62112,23.04368],[75.62707,23.04587],[75.62719,23.04753],[75.62475,23.05164],[75.62059,23.04929],[75.6162,23.05276],[75.61729,23.05699],[75.6206,23.05902],[75.62106,23.06318],[75.62657,23.06238],[75.6297,23.06556],[75.62715,23.06958],[75.62821,23.07284],[75.62597,23.07526],[75.62795,23.08199],[75.62337,23.08477],[75.61658,23.08274],[75.61562,23.08387],[75.60678,23.08311],[75.60644,23.08697]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"411","area_level":"District","area_name":"Jabalpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.96954,23.61216],[79.96823,23.61576],[79.96637,23.61544],[79.94437,23.6052],[79.93288,23.59891],[79.91742,23.58664],[79.91216,23.587],[79.91119,23.58508],[79.91004,23.58635],[79.90907,23.58504],[79.90341,23.58583],[79.9024,23.58403],[79.90348,23.5813],[79.90086,23.57911],[79.90101,23.57479],[79.89256,23.57292],[79.89164,23.56941],[79.89369,23.56785],[79.89201,23.56773],[79.89213,23.56581],[79.88802,23.56415],[79.88728,23.56155],[79.88599,23.56224],[79.88489,23.55898],[79.88336,23.55966],[79.87998,23.55702],[79.87912,23.55836],[79.87664,23.55624],[79.87824,23.55439],[79.87547,23.55283],[79.87632,23.55148],[79.87446,23.54995],[79.87324,23.54042],[79.84732,23.50417],[79.84319,23.50536],[79.83642,23.51121],[79.81531,23.51268],[79.82016,23.51051],[79.81962,23.50853],[79.81543,23.50201],[79.81275,23.50183],[79.80998,23.49884],[79.81572,23.49528],[79.81467,23.49055],[79.80784,23.4816],[79.80214,23.46584],[79.7965,23.46321],[79.79276,23.46495],[79.78738,23.45985],[79.79357,23.45551],[79.78556,23.44867],[79.78596,23.44653],[79.789,23.44646],[79.78216,23.44111],[79.77513,23.43927],[79.77141,23.44261],[79.77154,23.44598],[79.76765,23.44533],[79.76657,23.43827],[79.75843,23.43197],[79.75555,23.43304],[79.74133,23.42982],[79.74084,23.43407],[79.73777,23.43659],[79.73706,23.43294],[79.73482,23.43114],[79.73547,23.42625],[79.7292,23.42825],[79.72435,23.42539],[79.72659,23.4244],[79.72487,23.4224],[79.72295,23.42274],[79.72479,23.4188],[79.72986,23.42065],[79.73312,23.41968],[79.7306,23.41283],[79.7329,23.4116],[79.73318,23.40928],[79.725,23.39965],[79.71974,23.39841],[79.72246,23.39381],[79.71727,23.3922],[79.71964,23.38894],[79.71943,23.38581],[79.71611,23.38246],[79.71248,23.37168],[79.70448,23.37595],[79.70348,23.37511],[79.70633,23.36801],[79.70285,23.36153],[79.68755,23.34979],[79.67484,23.34337],[79.6745,23.33822],[79.66843,23.33515],[79.6649,23.3365],[79.63332,23.31784],[79.61497,23.30918],[79.59464,23.295],[79.56944,23.28091],[79.56633,23.27622],[79.56149,23.27587],[79.55538,23.27063],[79.5321,23.25959],[79.53087,23.26025],[79.53265,23.26339],[79.53144,23.26578],[79.51578,23.26834],[79.51122,23.2682],[79.49857,23.26158],[79.48828,23.26402],[79.49298,23.26185],[79.48892,23.25696],[79.48695,23.24931],[79.47863,23.24386],[79.4753,23.2379],[79.45716,23.22655],[79.45167,23.2194],[79.42867,23.20134],[79.42784,23.19822],[79.42361,23.19434],[79.39142,23.17647],[79.37088,23.16743],[79.37342,23.16392],[79.37356,23.15647],[79.36469,23.14808],[79.35514,23.14305],[79.35154,23.13868],[79.35243,23.13544],[79.35792,23.13047],[79.35365,23.12684],[79.35204,23.11382],[79.34682,23.10735],[79.36186,23.10601],[79.37806,23.11282],[79.38176,23.11302],[79.38815,23.11116],[79.39855,23.10187],[79.40348,23.1002],[79.43485,23.10818],[79.44119,23.10664],[79.45313,23.09877],[79.45815,23.0983],[79.46273,23.10019],[79.46983,23.10623],[79.48077,23.11876],[79.49853,23.13002],[79.50691,23.13859],[79.51427,23.1428],[79.52006,23.1435],[79.53507,23.13976],[79.54445,23.13966],[79.5714,23.13446],[79.57434,23.13241],[79.57756,23.12636],[79.5799,23.11436],[79.58173,23.11206],[79.59583,23.11075],[79.60503,23.10706],[79.6157,23.10535],[79.61495,23.10321],[79.60924,23.1009],[79.60765,23.09865],[79.61351,23.09482],[79.6136,23.09044],[79.60323,23.09284],[79.60029,23.09187],[79.60242,23.08341],[79.60538,23.08441],[79.60583,23.08724],[79.60844,23.08826],[79.60641,23.07616],[79.60821,23.06774],[79.60621,23.06572],[79.60109,23.06478],[79.5964,23.05944],[79.59972,23.05288],[79.59485,23.04769],[79.59391,23.04337],[79.59842,23.03874],[79.59888,23.03403],[79.5903,23.02312],[79.59309,23.02039],[79.60129,23.02211],[79.6044,23.0196],[79.60886,23.01956],[79.60935,23.01713],[79.60618,23.01362],[79.60564,23.00996],[79.60901,23.00519],[79.61515,23.00469],[79.61646,23.00319],[79.61512,22.99258],[79.6229,22.99458],[79.6274,22.99328],[79.6283,22.98977],[79.63267,22.98852],[79.63511,22.98464],[79.64307,22.97897],[79.64046,22.97283],[79.63785,22.97314],[79.63824,22.9708],[79.6227,22.96784],[79.6243,22.96046],[79.62247,22.95555],[79.62609,22.95389],[79.6274,22.94985],[79.62952,22.94908],[79.62985,22.94578],[79.63187,22.94411],[79.6395,22.94459],[79.6488,22.92643],[79.65644,22.92342],[79.66499,22.92339],[79.66908,22.92433],[79.67277,22.92811],[79.67884,22.92674],[79.68692,22.92987],[79.68537,22.92392],[79.69473,22.9238],[79.70086,22.92549],[79.70692,22.9237],[79.71614,22.92423],[79.73016,22.91973],[79.74101,22.92091],[79.74527,22.91931],[79.74846,22.92062],[79.75134,22.91349],[79.74407,22.89685],[79.74974,22.89914],[79.75523,22.89263],[79.76356,22.88833],[79.76781,22.88783],[79.77266,22.88306],[79.78132,22.87933],[79.7708,22.87309],[79.76467,22.86391],[79.75919,22.86023],[79.76339,22.84638],[79.7653,22.84474],[79.78481,22.8466],[79.78752,22.8492],[79.78984,22.84931],[79.79345,22.85632],[79.80064,22.86343],[79.82059,22.87119],[79.8208,22.8669],[79.81798,22.86056],[79.81862,22.8484],[79.82697,22.84476],[79.82761,22.83892],[79.833,22.83522],[79.83438,22.83254],[79.84231,22.8308],[79.85452,22.83345],[79.86383,22.85177],[79.87037,22.85571],[79.87691,22.85254],[79.88188,22.85207],[79.88283,22.85059],[79.88637,22.86036],[79.90041,22.86359],[79.90255,22.86378],[79.90406,22.86049],[79.90671,22.84526],[79.92519,22.85714],[79.93127,22.8572],[79.94104,22.86079],[79.95096,22.8569],[79.95836,22.85617],[79.96437,22.85199],[79.96661,22.86633],[79.96524,22.87173],[79.9623,22.87098],[79.96873,22.87955],[79.97557,22.88539],[79.96897,22.88953],[79.97034,22.8919],[79.97012,22.90088],[79.96823,22.90818],[79.96942,22.91554],[79.9745,22.9174],[79.97081,22.92393],[79.9542,22.93687],[79.95481,22.94414],[79.95135,22.94599],[79.95291,22.94823],[79.96077,22.95153],[79.96188,22.95394],[79.96698,22.95549],[79.96596,22.95826],[79.96989,22.96129],[79.98213,22.9662],[79.98444,22.96923],[79.98964,22.96966],[79.99382,22.97406],[79.9974,22.9755],[79.99919,22.97945],[80.00557,22.97935],[80.00156,22.98731],[79.99472,22.99211],[79.99121,22.99826],[79.99802,23.00352],[80.00451,23.00289],[80.00533,23.0064],[79.99823,23.0165],[79.99034,23.01381],[79.99287,23.01567],[79.99531,23.02116],[79.99237,23.02746],[79.99431,23.02998],[80.01467,23.03161],[80.0366,23.03937],[80.04016,23.04185],[80.04241,23.04674],[80.04724,23.05159],[80.05396,23.05393],[80.05775,23.05889],[80.0711,23.06653],[80.07965,23.06596],[80.08291,23.07495],[80.0812,23.07723],[80.09742,23.07937],[80.10878,23.07574],[80.10744,23.05934],[80.10844,23.05271],[80.11011,23.0516],[80.12486,23.0544],[80.12926,23.05976],[80.13126,23.05861],[80.13482,23.05941],[80.13823,23.05631],[80.14186,23.05657],[80.14064,23.04998],[80.14175,23.04483],[80.14442,23.04924],[80.14826,23.04541],[80.15785,23.04865],[80.1637,23.04765],[80.16919,23.04265],[80.16984,23.03809],[80.17664,23.02419],[80.18645,23.02276],[80.19095,23.02815],[80.19182,23.03331],[80.18738,23.04142],[80.18522,23.05358],[80.18138,23.05504],[80.18192,23.06212],[80.18687,23.06724],[80.19326,23.0685],[80.19709,23.06684],[80.20409,23.06753],[80.20383,23.08242],[80.20274,23.08636],[80.18873,23.09201],[80.19004,23.10455],[80.18165,23.11089],[80.17965,23.12211],[80.1861,23.12868],[80.1926,23.1312],[80.20504,23.13233],[80.21022,23.13094],[80.21776,23.13233],[80.22823,23.14278],[80.23912,23.14028],[80.24326,23.14282],[80.24396,23.14727],[80.24799,23.15149],[80.2607,23.14841],[80.26591,23.14548],[80.27723,23.14555],[80.27908,23.14172],[80.27628,23.13538],[80.28097,23.13627],[80.28366,23.13419],[80.28951,23.13332],[80.29183,23.12938],[80.29353,23.12996],[80.29707,23.12045],[80.29707,23.11172],[80.29557,23.10779],[80.30008,23.10583],[80.30179,23.09842],[80.30879,23.09633],[80.31165,23.0977],[80.32929,23.09693],[80.33758,23.11096],[80.33692,23.11657],[80.35061,23.12087],[80.35952,23.1393],[80.39282,23.14211],[80.38966,23.14445],[80.38969,23.15754],[80.39417,23.16713],[80.39131,23.17128],[80.41152,23.172],[80.41999,23.15398],[80.42316,23.15292],[80.42348,23.14287],[80.43599,23.14031],[80.45045,23.14297],[80.46201,23.14215],[80.46298,23.13174],[80.45824,23.12484],[80.47099,23.12205],[80.47457,23.12538],[80.47885,23.12605],[80.47938,23.11706],[80.48185,23.1156],[80.48682,23.11732],[80.4886,23.116],[80.49098,23.10714],[80.50057,23.10593],[80.51193,23.10703],[80.51228,23.09141],[80.50532,23.08397],[80.50734,23.08263],[80.50731,23.07985],[80.51646,23.07731],[80.52819,23.0779],[80.52932,23.08335],[80.52488,23.09779],[80.52583,23.10536],[80.54197,23.10406],[80.55192,23.11232],[80.55399,23.11912],[80.55694,23.12198],[80.5649,23.11987],[80.56745,23.12055],[80.57415,23.12713],[80.57756,23.12777],[80.58192,23.13804],[80.56221,23.14707],[80.5558,23.15372],[80.55468,23.16466],[80.55191,23.16731],[80.54243,23.16643],[80.53592,23.16116],[80.52963,23.15905],[80.52281,23.15421],[80.51843,23.16466],[80.51415,23.1689],[80.51455,23.17014],[80.51023,23.17083],[80.50848,23.17632],[80.50352,23.18263],[80.49842,23.18733],[80.4799,23.19316],[80.47814,23.19957],[80.48456,23.20201],[80.50305,23.20243],[80.50357,23.21117],[80.52165,23.24065],[80.52207,23.24822],[80.52075,23.25228],[80.52262,23.25913],[80.53338,23.25716],[80.54347,23.26237],[80.54302,23.27073],[80.56839,23.26885],[80.56915,23.27731],[80.57136,23.28178],[80.58249,23.28226],[80.58349,23.28453],[80.58461,23.29103],[80.58283,23.31368],[80.56781,23.31637],[80.57312,23.33638],[80.57405,23.34983],[80.57597,23.35187],[80.56725,23.35468],[80.54701,23.35497],[80.54243,23.35367],[80.54045,23.36265],[80.54469,23.36703],[80.55299,23.37022],[80.55581,23.378],[80.55435,23.38164],[80.5453,23.38617],[80.54395,23.39372],[80.53302,23.38632],[80.52864,23.38099],[80.52343,23.37873],[80.50972,23.3806],[80.50321,23.38685],[80.4847,23.39255],[80.4809,23.38377],[80.48325,23.38007],[80.48211,23.37393],[80.4781,23.37121],[80.47016,23.37143],[80.46763,23.36996],[80.46376,23.36451],[80.46296,23.34723],[80.45845,23.34406],[80.4408,23.34359],[80.43589,23.34808],[80.43228,23.34505],[80.42193,23.34719],[80.42165,23.3459],[80.41012,23.341],[80.40618,23.3418],[80.40579,23.34592],[80.40278,23.34937],[80.39466,23.35134],[80.39005,23.34824],[80.39157,23.34694],[80.39083,23.33852],[80.38655,23.33911],[80.38125,23.33602],[80.37904,23.33687],[80.3762,23.33384],[80.3761,23.33109],[80.36421,23.32885],[80.3639,23.32493],[80.36853,23.31748],[80.36792,23.31334],[80.36956,23.31181],[80.36589,23.30892],[80.36763,23.30736],[80.36715,23.30524],[80.35511,23.30722],[80.34199,23.30344],[80.32646,23.30546],[80.3296,23.31041],[80.32811,23.31463],[80.32273,23.31551],[80.32114,23.31935],[80.31535,23.32052],[80.3055,23.32679],[80.3041,23.33179],[80.30083,23.3346],[80.30177,23.33764],[80.29804,23.33741],[80.29674,23.33876],[80.29886,23.34042],[80.29738,23.34355],[80.29908,23.34413],[80.29821,23.34707],[80.3007,23.34857],[80.30111,23.3505],[80.29978,23.35078],[80.30137,23.35314],[80.30045,23.3546],[80.29785,23.35243],[80.29638,23.35355],[80.297,23.35935],[80.29371,23.36935],[80.29183,23.38407],[80.3026,23.38616],[80.30622,23.39091],[80.30859,23.39771],[80.31744,23.40987],[80.31486,23.4115],[80.31474,23.4136],[80.31142,23.41369],[80.3102,23.41753],[80.30384,23.41748],[80.30339,23.4196],[80.3007,23.42024],[80.3012,23.42191],[80.29884,23.42239],[80.29888,23.42659],[80.29721,23.42781],[80.29838,23.43318],[80.2958,23.43812],[80.29648,23.44113],[80.29218,23.44548],[80.29062,23.44423],[80.28846,23.44094],[80.28759,23.43392],[80.27328,23.43645],[80.27112,23.43903],[80.26868,23.43769],[80.26526,23.43977],[80.26384,23.4478],[80.26,23.4449],[80.25844,23.44887],[80.25485,23.45031],[80.2579,23.45719],[80.26662,23.45607],[80.26662,23.46521],[80.26902,23.47378],[80.26825,23.48045],[80.25937,23.48176],[80.24724,23.48643],[80.24158,23.48633],[80.23734,23.4837],[80.23573,23.48634],[80.22846,23.48639],[80.23108,23.48851],[80.22873,23.49032],[80.22111,23.48938],[80.21889,23.49055],[80.2159,23.48882],[80.20966,23.49042],[80.2052,23.48605],[80.20012,23.48651],[80.20009,23.49408],[80.18998,23.50781],[80.1916,23.5118],[80.20017,23.51612],[80.19395,23.53555],[80.20581,23.5376],[80.20695,23.53549],[80.21208,23.53395],[80.21089,23.52342],[80.21901,23.52332],[80.22017,23.52961],[80.22743,23.53081],[80.22546,23.53425],[80.22612,23.53966],[80.22999,23.53986],[80.2335,23.54256],[80.2341,23.54696],[80.23738,23.54719],[80.23769,23.55139],[80.22576,23.55218],[80.22527,23.55484],[80.2199,23.55556],[80.22015,23.56001],[80.23312,23.55726],[80.23667,23.56213],[80.23831,23.56841],[80.23615,23.57444],[80.23305,23.57581],[80.20906,23.57559],[80.2064,23.58308],[80.19707,23.58971],[80.19319,23.58773],[80.19147,23.57936],[80.18602,23.57824],[80.17938,23.57015],[80.17968,23.56744],[80.17806,23.56777],[80.17323,23.56365],[80.17069,23.57147],[80.16583,23.57491],[80.16359,23.58019],[80.15837,23.58202],[80.14908,23.57996],[80.13958,23.57239],[80.13897,23.5786],[80.14239,23.58527],[80.1399,23.59019],[80.11861,23.58469],[80.11407,23.58584],[80.1157,23.58883],[80.11385,23.58955],[80.10165,23.59289],[80.09104,23.5934],[80.09081,23.58681],[80.0862,23.58202],[80.08588,23.57752],[80.07376,23.57334],[80.07205,23.57021],[80.06967,23.57485],[80.06643,23.57658],[80.05905,23.57353],[80.05462,23.57466],[80.05255,23.57194],[80.04938,23.57219],[80.04674,23.56796],[80.04248,23.56811],[80.04401,23.56996],[80.04233,23.57308],[80.03662,23.57369],[80.03308,23.57324],[80.03184,23.57143],[80.01234,23.57333],[80.01024,23.57025],[79.99781,23.57078],[79.99675,23.57766],[79.99356,23.58342],[79.98541,23.58116],[79.95979,23.56771],[79.95703,23.56946],[79.95421,23.57867],[79.95775,23.58175],[79.96039,23.58127],[79.95935,23.58334],[79.96187,23.58502],[79.96047,23.58613],[79.9642,23.58662],[79.96376,23.58501],[79.96623,23.58512],[79.97042,23.59122],[79.96946,23.59693],[79.97496,23.59696],[79.97108,23.6036],[79.97388,23.6065],[79.96954,23.61216]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"412","area_level":"District","area_name":"Jhabua","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.78765,23.2444],[74.78268,23.24388],[74.76773,23.2359],[74.7508,23.23997],[74.73725,23.2339],[74.73565,23.23037],[74.73687,23.22746],[74.73904,23.22628],[74.74752,23.22665],[74.74921,23.2249],[74.74056,23.21768],[74.74441,23.21131],[74.74158,23.20859],[74.72505,23.20089],[74.72453,23.1966],[74.71525,23.19075],[74.70808,23.19423],[74.69881,23.1923],[74.68187,23.19387],[74.67154,23.19996],[74.66425,23.19516],[74.6493,23.17522],[74.63271,23.16395],[74.62494,23.16172],[74.6184,23.15037],[74.60661,23.14256],[74.5965,23.13789],[74.58549,23.13975],[74.57678,23.13418],[74.57223,23.13315],[74.53937,23.1293],[74.54479,23.11971],[74.54642,23.11435],[74.54551,23.10984],[74.53934,23.10334],[74.53144,23.09907],[74.52338,23.09626],[74.51485,23.09628],[74.51028,23.09446],[74.50691,23.0914],[74.50908,23.08675],[74.50586,23.08514],[74.4992,23.08688],[74.49174,23.0859],[74.48924,23.08768],[74.47472,23.08365],[74.47439,23.08166],[74.46702,23.08303],[74.46384,23.08179],[74.45773,23.08463],[74.45408,23.08833],[74.44072,23.09068],[74.44039,23.09518],[74.43225,23.1049],[74.42738,23.1067],[74.42158,23.10437],[74.40631,23.11202],[74.39836,23.11011],[74.39217,23.11117],[74.38974,23.10962],[74.38905,23.11147],[74.3862,23.11152],[74.37741,23.10637],[74.35629,23.08865],[74.35439,23.08604],[74.35589,23.07981],[74.3416,23.0679],[74.33281,23.06219],[74.3209,23.06142],[74.3189,23.05866],[74.32193,23.04122],[74.32758,23.0366],[74.33979,23.03267],[74.34494,23.0284],[74.34665,23.02414],[74.34686,23.01399],[74.34938,23.00685],[74.36532,22.97697],[74.36431,22.97551],[74.36104,22.97659],[74.35045,22.97428],[74.34969,22.97147],[74.33849,22.96369],[74.33741,22.95669],[74.34027,22.95201],[74.35767,22.93921],[74.35735,22.93401],[74.35905,22.93007],[74.3625,22.92606],[74.3706,22.92173],[74.37756,22.9072],[74.38546,22.90455],[74.39341,22.8966],[74.39986,22.89735],[74.4041,22.8993],[74.40445,22.90359],[74.40824,22.90617],[74.4136,22.90609],[74.41052,22.91184],[74.41848,22.91704],[74.43323,22.91795],[74.43363,22.91249],[74.44095,22.91851],[74.44406,22.91875],[74.44683,22.92108],[74.45957,22.90919],[74.46389,22.89827],[74.46399,22.88644],[74.47025,22.87753],[74.46876,22.86941],[74.4702,22.86377],[74.47643,22.85482],[74.4706,22.84107],[74.46477,22.81639],[74.44922,22.8083],[74.43378,22.8079],[74.43788,22.79204],[74.43554,22.7826],[74.42136,22.75675],[74.41792,22.75625],[74.41596,22.75406],[74.41602,22.7488],[74.41388,22.74304],[74.40891,22.74026],[74.4017,22.73097],[74.39694,22.71355],[74.39953,22.70938],[74.39781,22.70387],[74.3944,22.69961],[74.39498,22.68564],[74.38198,22.66751],[74.38066,22.6584],[74.38429,22.64629],[74.37961,22.64037],[74.37846,22.63356],[74.38055,22.63015],[74.37971,22.62798],[74.38789,22.62187],[74.39162,22.61255],[74.40242,22.61528],[74.40796,22.61398],[74.41063,22.60628],[74.41792,22.60145],[74.42171,22.59403],[74.4278,22.58981],[74.42794,22.58767],[74.4333,22.58439],[74.44201,22.58272],[74.43765,22.57977],[74.43638,22.57257],[74.42866,22.56515],[74.43165,22.55492],[74.43546,22.55305],[74.43665,22.54341],[74.44735,22.54334],[74.44998,22.54175],[74.45244,22.53684],[74.46341,22.52993],[74.47006,22.52954],[74.47179,22.5399],[74.47415,22.54257],[74.47173,22.54758],[74.47222,22.55441],[74.47548,22.55943],[74.48584,22.56016],[74.48809,22.57653],[74.49055,22.57528],[74.49969,22.57575],[74.50419,22.58197],[74.50714,22.58296],[74.51333,22.5801],[74.52153,22.58274],[74.52454,22.58102],[74.52916,22.57675],[74.53147,22.56987],[74.53968,22.56743],[74.53967,22.5624],[74.54145,22.55985],[74.54546,22.5602],[74.54438,22.55916],[74.54743,22.55443],[74.54602,22.554],[74.54886,22.5502],[74.55569,22.55178],[74.56326,22.56076],[74.565,22.56108],[74.56724,22.56043],[74.56944,22.55536],[74.57612,22.55193],[74.57921,22.54853],[74.57804,22.54581],[74.59033,22.54201],[74.59765,22.53686],[74.60549,22.55629],[74.60818,22.55815],[74.61127,22.55629],[74.61982,22.5581],[74.62019,22.55613],[74.63208,22.55473],[74.6321,22.56482],[74.6485,22.5683],[74.65212,22.57319],[74.65641,22.5872],[74.65571,22.59532],[74.65745,22.60318],[74.67439,22.6013],[74.67566,22.59709],[74.68383,22.59125],[74.68973,22.58429],[74.69501,22.58644],[74.7045,22.58313],[74.71241,22.58624],[74.72069,22.58468],[74.73082,22.59167],[74.72808,22.58422],[74.72896,22.58148],[74.72716,22.58045],[74.72938,22.57626],[74.72633,22.57145],[74.74033,22.56356],[74.7412,22.55891],[74.74827,22.56104],[74.75222,22.55921],[74.75969,22.56361],[74.76638,22.57087],[74.77229,22.56997],[74.77695,22.57245],[74.78234,22.58057],[74.78314,22.60985],[74.78942,22.6303],[74.78413,22.64377],[74.78809,22.65162],[74.7949,22.65592],[74.79631,22.65873],[74.79124,22.66355],[74.78984,22.66788],[74.7851,22.66864],[74.78402,22.67418],[74.78089,22.67551],[74.78232,22.67868],[74.78224,22.69222],[74.77265,22.71156],[74.77478,22.71868],[74.76522,22.73591],[74.76535,22.74064],[74.76202,22.74488],[74.76234,22.75053],[74.76043,22.75143],[74.76837,22.75341],[74.77031,22.75107],[74.7719,22.75136],[74.77548,22.75551],[74.79013,22.7598],[74.80491,22.75255],[74.81598,22.75013],[74.83072,22.75053],[74.85194,22.74644],[74.85465,22.75015],[74.85666,22.75053],[74.85683,22.75289],[74.87303,22.75563],[74.88447,22.75527],[74.89532,22.74823],[74.90174,22.75764],[74.90272,22.772],[74.91871,22.7792],[74.92619,22.78706],[74.93724,22.79167],[74.94009,22.79793],[74.94284,22.79968],[74.94331,22.80281],[74.94632,22.80352],[74.95028,22.80735],[74.95004,22.81317],[74.95401,22.82041],[74.95101,22.82833],[74.95216,22.83555],[74.965,22.85136],[74.98185,22.86233],[74.98513,22.86662],[74.98749,22.87416],[74.98466,22.88726],[74.98577,22.89273],[74.99984,22.90732],[75.00314,22.91305],[74.99975,22.92173],[74.99977,22.92797],[75.00616,22.93889],[75.00247,22.95521],[75.0075,22.96273],[75.00336,22.97112],[75.00889,22.99338],[75.00857,23.00341],[75.01235,23.01323],[75.00687,23.02416],[75.01523,23.03693],[75.01354,23.04342],[75.00449,23.05284],[75.00254,23.05905],[75.00745,23.0783],[75.01546,23.08405],[75.0151,23.09073],[75.01122,23.09684],[75.00748,23.10841],[74.99465,23.11581],[74.99037,23.1209],[74.98976,23.12575],[74.99309,23.13711],[74.99292,23.14222],[74.99139,23.14351],[74.97283,23.14501],[74.95462,23.15743],[74.94355,23.15285],[74.93818,23.15303],[74.92718,23.16135],[74.92306,23.16239],[74.91094,23.15829],[74.90149,23.15061],[74.89347,23.14001],[74.88935,23.13756],[74.88025,23.13864],[74.8658,23.13766],[74.8501,23.14221],[74.83381,23.14237],[74.82949,23.14108],[74.81917,23.1338],[74.8075,23.13889],[74.79719,23.14057],[74.7931,23.14814],[74.78645,23.14786],[74.78201,23.15028],[74.77994,23.15655],[74.7825,23.16137],[74.78648,23.16445],[74.78931,23.165],[74.79501,23.16245],[74.80048,23.16318],[74.80172,23.1665],[74.80072,23.16925],[74.79345,23.1738],[74.7724,23.17556],[74.76883,23.17786],[74.76707,23.18172],[74.76843,23.18859],[74.78032,23.19605],[74.78556,23.20223],[74.7855,23.20602],[74.7795,23.21502],[74.77842,23.21963],[74.78258,23.23152],[74.7906,23.23802],[74.79061,23.24177],[74.78765,23.2444]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"413","area_level":"District","area_name":"Katni","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.74186,24.1246],[80.73689,24.13186],[80.7162,24.12782],[80.71466,24.1242],[80.71195,24.12357],[80.71027,24.12554],[80.70541,24.11725],[80.67341,24.10491],[80.68014,24.09165],[80.68304,24.07369],[80.67139,24.07479],[80.66743,24.08329],[80.6606,24.08625],[80.65725,24.09162],[80.65098,24.08557],[80.64742,24.08516],[80.6454,24.08988],[80.63658,24.08497],[80.64053,24.07681],[80.63877,24.07172],[80.64477,24.06139],[80.64599,24.05633],[80.64942,24.05336],[80.64878,24.0445],[80.6462,24.04321],[80.64476,24.04302],[80.64243,24.05929],[80.6342,24.06923],[80.63182,24.06976],[80.62648,24.07545],[80.61174,24.06872],[80.60787,24.06338],[80.60244,24.06517],[80.59936,24.06442],[80.59517,24.0579],[80.57941,24.04779],[80.56554,24.04549],[80.55572,24.04071],[80.54356,24.03117],[80.5454,24.0387],[80.54391,24.04518],[80.55465,24.04903],[80.55235,24.0531],[80.54318,24.05895],[80.54,24.06471],[80.53912,24.07025],[80.53713,24.07045],[80.53691,24.0681],[80.53272,24.06621],[80.5337,24.06525],[80.53246,24.06373],[80.52796,24.06344],[80.52698,24.06162],[80.52579,24.06244],[80.52666,24.06075],[80.52411,24.05703],[80.51967,24.05672],[80.51955,24.05299],[80.51705,24.05245],[80.51539,24.04921],[80.51501,24.04649],[80.51771,24.04417],[80.51862,24.0402],[80.5317,24.02825],[80.52635,24.02147],[80.51315,24.01243],[80.46862,23.99111],[80.45398,23.98869],[80.45112,23.98626],[80.43268,23.98097],[80.42949,23.98246],[80.42342,23.97969],[80.42289,23.98485],[80.41854,23.98466],[80.40976,23.97591],[80.40433,23.97281],[80.39994,23.97327],[80.39023,23.96724],[80.38153,23.96958],[80.37936,23.96868],[80.3748,23.97297],[80.3705,23.97444],[80.36428,23.97326],[80.35986,23.96876],[80.35886,23.97081],[80.35776,23.96925],[80.3547,23.96948],[80.35649,23.96814],[80.35487,23.96269],[80.35908,23.9596],[80.35852,23.95793],[80.36155,23.9587],[80.3609,23.95592],[80.36269,23.95582],[80.36178,23.95232],[80.36472,23.9523],[80.3625,23.94928],[80.36425,23.94878],[80.36207,23.94707],[80.36431,23.94596],[80.36147,23.94542],[80.36222,23.94316],[80.3559,23.94107],[80.34676,23.93202],[80.33581,23.93224],[80.32899,23.92889],[80.33126,23.92044],[80.34062,23.90989],[80.33938,23.90826],[80.33853,23.91014],[80.33433,23.91003],[80.33414,23.90793],[80.3314,23.90692],[80.32787,23.90877],[80.32604,23.90669],[80.3248,23.90915],[80.32086,23.90848],[80.31929,23.9105],[80.3161,23.90783],[80.31511,23.90966],[80.31049,23.91072],[80.30679,23.90947],[80.30694,23.91178],[80.29809,23.92414],[80.28154,23.9219],[80.27514,23.92858],[80.27241,23.92892],[80.27009,23.93167],[80.26842,23.93987],[80.26344,23.93785],[80.25481,23.9369],[80.25231,23.93885],[80.2497,23.93722],[80.24609,23.93895],[80.2452,23.94181],[80.2377,23.94398],[80.23354,23.94734],[80.23205,23.94604],[80.23137,23.95081],[80.22787,23.95067],[80.22649,23.95402],[80.22345,23.95539],[80.22111,23.95456],[80.22067,23.9563],[80.21866,23.9561],[80.21801,23.95822],[80.21584,23.95897],[80.21446,23.96463],[80.21722,23.97327],[80.22164,23.97855],[80.22098,23.97478],[80.22593,23.9718],[80.22799,23.96101],[80.22912,23.9587],[80.23104,23.95938],[80.24048,23.97173],[80.23576,23.97362],[80.23292,23.97791],[80.23272,23.98209],[80.22833,23.9843],[80.22424,23.97983],[80.21708,23.98209],[80.21639,23.98876],[80.21314,23.98875],[80.20902,23.99189],[80.20622,23.99113],[80.1889,24.00249],[80.18181,24.00491],[80.17552,24.00389],[80.17225,24.00046],[80.17323,23.99721],[80.17054,23.99569],[80.17456,23.99257],[80.17473,23.99061],[80.17184,23.98741],[80.1732,23.98341],[80.1693,23.98195],[80.17087,23.97906],[80.16802,23.96679],[80.16442,23.96368],[80.16604,23.96182],[80.16476,23.95774],[80.15754,23.95204],[80.15653,23.94767],[80.15785,23.94629],[80.15519,23.94461],[80.15516,23.94016],[80.14668,23.93748],[80.13697,23.94372],[80.13478,23.94865],[80.1331,23.9481],[80.12739,23.95083],[80.12204,23.94921],[80.11909,23.95041],[80.11888,23.96739],[80.11351,23.96888],[80.11015,23.97502],[80.10739,23.97504],[80.10442,23.98039],[80.10142,23.98191],[80.09605,23.9833],[80.09024,23.98144],[80.08441,23.97396],[80.07553,23.97985],[80.06603,23.98229],[80.0656,23.98447],[80.06294,23.98613],[80.06413,23.98928],[80.06303,23.99036],[80.05314,23.99161],[80.04597,23.98501],[80.04267,23.98536],[80.03999,23.97908],[80.03368,23.98049],[80.01615,23.97691],[80.01466,23.97429],[80.01827,23.96908],[80.01835,23.96286],[80.01566,23.95615],[80.01011,23.95657],[80.00788,23.94897],[80.00319,23.94419],[80.00275,23.93922],[79.99919,23.93565],[79.99848,23.92897],[79.99196,23.93],[79.99449,23.91572],[79.99236,23.91031],[79.98746,23.90466],[79.9865,23.89446],[79.9827,23.89507],[79.97851,23.88425],[79.97467,23.8805],[79.96695,23.87679],[79.96627,23.87473],[79.97055,23.87297],[79.96711,23.86693],[79.97013,23.86573],[79.96824,23.86336],[79.96194,23.86215],[79.96479,23.8582],[79.95591,23.85443],[79.95156,23.85005],[79.95409,23.84476],[79.95645,23.84484],[79.95648,23.84082],[79.9585,23.83777],[79.95438,23.83439],[79.9498,23.83316],[79.9495,23.82766],[79.94655,23.82345],[79.94343,23.82464],[79.93977,23.83091],[79.9342,23.82688],[79.92733,23.83003],[79.91607,23.82801],[79.91018,23.82264],[79.90183,23.8212],[79.89595,23.82187],[79.87295,23.82973],[79.86339,23.82903],[79.86878,23.81927],[79.86682,23.81468],[79.85972,23.80772],[79.85359,23.80829],[79.85824,23.80361],[79.85651,23.80023],[79.85695,23.79551],[79.8496,23.79097],[79.84155,23.78939],[79.84497,23.7846],[79.832,23.77746],[79.83208,23.77513],[79.82708,23.76616],[79.82887,23.76544],[79.83205,23.75745],[79.81916,23.74179],[79.8152,23.74001],[79.82085,23.73448],[79.81928,23.73292],[79.82155,23.73128],[79.8199,23.7301],[79.8221,23.72912],[79.82028,23.72824],[79.82291,23.72101],[79.82666,23.71885],[79.8312,23.7224],[79.83623,23.72332],[79.83517,23.72006],[79.83667,23.71744],[79.83249,23.71623],[79.82705,23.70826],[79.82753,23.69535],[79.83951,23.69447],[79.84783,23.69668],[79.85673,23.69693],[79.86672,23.70047],[79.86704,23.69101],[79.8735,23.69099],[79.87795,23.68746],[79.88355,23.68666],[79.88581,23.68381],[79.88926,23.68266],[79.90576,23.68231],[79.90882,23.6829],[79.90851,23.68642],[79.91266,23.68667],[79.91999,23.68159],[79.92235,23.68253],[79.93093,23.67958],[79.93632,23.68172],[79.94038,23.67649],[79.94034,23.67193],[79.95046,23.66789],[79.95561,23.65766],[79.94794,23.65165],[79.94346,23.64532],[79.94415,23.63606],[79.94649,23.63388],[79.94763,23.62679],[79.95149,23.62223],[79.94034,23.62399],[79.93095,23.61022],[79.92744,23.60891],[79.92925,23.60551],[79.92701,23.59935],[79.92974,23.59529],[79.93288,23.59891],[79.94327,23.60464],[79.96823,23.61576],[79.97388,23.6065],[79.97108,23.6036],[79.97496,23.59696],[79.96946,23.59693],[79.97042,23.59122],[79.96623,23.58512],[79.96376,23.58501],[79.9642,23.58662],[79.96047,23.58613],[79.96187,23.58502],[79.95935,23.58334],[79.96039,23.58127],[79.95775,23.58175],[79.95421,23.57867],[79.95703,23.56946],[79.95979,23.56771],[79.98541,23.58116],[79.99356,23.58342],[79.99675,23.57766],[79.99781,23.57078],[80.01024,23.57025],[80.01234,23.57333],[80.03184,23.57143],[80.03308,23.57324],[80.03662,23.57369],[80.04233,23.57308],[80.04401,23.56996],[80.04248,23.56811],[80.04674,23.56796],[80.04938,23.57219],[80.05255,23.57194],[80.05462,23.57466],[80.05905,23.57353],[80.06643,23.57658],[80.06967,23.57485],[80.07205,23.57021],[80.07376,23.57334],[80.08588,23.57752],[80.0862,23.58202],[80.09081,23.58681],[80.09104,23.5934],[80.10165,23.59289],[80.11385,23.58955],[80.1157,23.58883],[80.11407,23.58584],[80.11861,23.58469],[80.1399,23.59019],[80.14239,23.58527],[80.13897,23.5786],[80.13958,23.57239],[80.14908,23.57996],[80.15837,23.58202],[80.16359,23.58019],[80.16583,23.57491],[80.17069,23.57147],[80.17323,23.56365],[80.17806,23.56777],[80.17968,23.56744],[80.17938,23.57015],[80.18602,23.57824],[80.19147,23.57936],[80.19319,23.58773],[80.19707,23.58971],[80.2064,23.58308],[80.20906,23.57559],[80.23305,23.57581],[80.23615,23.57444],[80.23831,23.56841],[80.23667,23.56213],[80.23312,23.55726],[80.22015,23.56001],[80.2199,23.55556],[80.22527,23.55484],[80.22576,23.55218],[80.23769,23.55139],[80.23738,23.54719],[80.2341,23.54696],[80.2335,23.54256],[80.22999,23.53986],[80.22612,23.53966],[80.22546,23.53425],[80.22743,23.53081],[80.22017,23.52961],[80.21901,23.52332],[80.21089,23.52342],[80.21208,23.53395],[80.20695,23.53549],[80.20581,23.5376],[80.19395,23.53555],[80.20017,23.51612],[80.1916,23.5118],[80.18998,23.50781],[80.20009,23.49408],[80.20012,23.48651],[80.2052,23.48605],[80.20966,23.49042],[80.2159,23.48882],[80.21889,23.49055],[80.22111,23.48938],[80.22873,23.49032],[80.23108,23.48851],[80.22846,23.48639],[80.23573,23.48634],[80.23734,23.4837],[80.24158,23.48633],[80.24724,23.48643],[80.25937,23.48176],[80.26825,23.48045],[80.26902,23.47378],[80.26662,23.46521],[80.26662,23.45607],[80.2579,23.45719],[80.25485,23.45031],[80.25844,23.44887],[80.26,23.4449],[80.26384,23.4478],[80.26526,23.43977],[80.26868,23.43769],[80.27112,23.43903],[80.27328,23.43645],[80.28759,23.43392],[80.28846,23.44094],[80.29062,23.44423],[80.29218,23.44548],[80.29648,23.44113],[80.2958,23.43812],[80.29838,23.43318],[80.29721,23.42781],[80.29888,23.42659],[80.29884,23.42239],[80.3012,23.42191],[80.3007,23.42024],[80.30339,23.4196],[80.30384,23.41748],[80.3102,23.41753],[80.31142,23.41369],[80.31474,23.4136],[80.31486,23.4115],[80.31744,23.40987],[80.30859,23.39771],[80.30622,23.39091],[80.3026,23.38616],[80.29183,23.38407],[80.29371,23.36935],[80.297,23.35935],[80.29638,23.35355],[80.29785,23.35243],[80.30045,23.3546],[80.30137,23.35314],[80.29978,23.35078],[80.30111,23.3505],[80.3007,23.34857],[80.29821,23.34707],[80.29908,23.34413],[80.29738,23.34355],[80.29886,23.34042],[80.29674,23.33876],[80.29804,23.33741],[80.30177,23.33764],[80.30083,23.3346],[80.3041,23.33179],[80.3055,23.32679],[80.31535,23.32052],[80.32114,23.31935],[80.32273,23.31551],[80.32811,23.31463],[80.3296,23.31041],[80.32646,23.30546],[80.34199,23.30344],[80.35511,23.30722],[80.36715,23.30524],[80.36763,23.30736],[80.36589,23.30892],[80.36956,23.31181],[80.36792,23.31334],[80.36853,23.31748],[80.3639,23.32493],[80.36421,23.32885],[80.3761,23.33109],[80.3762,23.33384],[80.37904,23.33687],[80.38125,23.33602],[80.38655,23.33911],[80.39083,23.33852],[80.39157,23.34694],[80.39005,23.34824],[80.39466,23.35134],[80.40278,23.34937],[80.40579,23.34592],[80.40618,23.3418],[80.41012,23.341],[80.42165,23.3459],[80.42193,23.34719],[80.43228,23.34505],[80.43589,23.34808],[80.4408,23.34359],[80.45845,23.34406],[80.46296,23.34723],[80.46376,23.36451],[80.46763,23.36996],[80.47016,23.37143],[80.4781,23.37121],[80.48211,23.37393],[80.48325,23.38007],[80.4809,23.38377],[80.4847,23.39255],[80.50321,23.38685],[80.50972,23.3806],[80.52343,23.37873],[80.52864,23.38099],[80.53302,23.38632],[80.54395,23.39372],[80.54113,23.39841],[80.52946,23.40373],[80.5286,23.41113],[80.5313,23.41796],[80.53853,23.42873],[80.53864,23.43525],[80.54705,23.43815],[80.55452,23.43496],[80.55847,23.43704],[80.56296,23.44966],[80.56162,23.45982],[80.56638,23.46693],[80.56353,23.47156],[80.55123,23.48261],[80.54741,23.49025],[80.54178,23.49366],[80.55088,23.50194],[80.54992,23.50796],[80.54659,23.514],[80.54848,23.51673],[80.54979,23.52489],[80.55588,23.53024],[80.55328,23.53365],[80.55184,23.54063],[80.54853,23.54493],[80.55048,23.54716],[80.55675,23.5479],[80.5603,23.55137],[80.55926,23.55886],[80.56146,23.56699],[80.56663,23.56797],[80.58142,23.57691],[80.58899,23.57758],[80.59816,23.57521],[80.60044,23.57826],[80.59861,23.5843],[80.60237,23.58981],[80.6075,23.59236],[80.60921,23.5879],[80.61166,23.58709],[80.61814,23.58862],[80.62414,23.59326],[80.62633,23.60516],[80.62402,23.60968],[80.6242,23.6133],[80.63111,23.62017],[80.63905,23.62372],[80.65507,23.63506],[80.65119,23.64142],[80.64392,23.64446],[80.64405,23.64931],[80.64638,23.65261],[80.65858,23.65504],[80.66302,23.65735],[80.67641,23.67233],[80.67839,23.6775],[80.67085,23.68685],[80.67208,23.69344],[80.67966,23.70136],[80.68166,23.70771],[80.68589,23.71157],[80.6857,23.72066],[80.69228,23.73573],[80.71064,23.73544],[80.71269,23.7441],[80.71134,23.7484],[80.7127,23.75968],[80.71558,23.76287],[80.72332,23.75584],[80.72762,23.74124],[80.73431,23.72599],[80.73661,23.72471],[80.74067,23.72713],[80.74531,23.72562],[80.75318,23.71686],[80.75974,23.71542],[80.76149,23.71039],[80.77059,23.71031],[80.77455,23.70333],[80.77728,23.70692],[80.77967,23.70692],[80.78188,23.70488],[80.77879,23.69885],[80.78011,23.69714],[80.78801,23.69512],[80.78932,23.69725],[80.78862,23.70163],[80.79216,23.70163],[80.79782,23.69277],[80.80541,23.68773],[80.80721,23.68262],[80.81962,23.67818],[80.82232,23.67001],[80.82782,23.67159],[80.82998,23.6701],[80.83904,23.6697],[80.84579,23.67311],[80.85723,23.67079],[80.88481,23.67956],[80.89472,23.67974],[80.8942,23.67782],[80.89674,23.67475],[80.90522,23.67776],[80.90845,23.70484],[80.90671,23.70531],[80.8993,23.71588],[80.9034,23.71765],[80.90413,23.72017],[80.90278,23.72173],[80.90481,23.7248],[80.90372,23.72798],[80.90101,23.72944],[80.90228,23.73214],[80.90158,23.73783],[80.89529,23.75053],[80.89593,23.7577],[80.89279,23.76299],[80.89209,23.76855],[80.91591,23.76938],[80.917,23.77731],[80.91464,23.78021],[80.91767,23.79],[80.91477,23.79036],[80.90678,23.79804],[80.91099,23.80122],[80.90987,23.80615],[80.90637,23.80837],[80.90971,23.81392],[80.90932,23.81966],[80.90647,23.82242],[80.9064,23.82488],[80.90326,23.82532],[80.90149,23.82812],[80.89899,23.82858],[80.8989,23.83386],[80.89347,23.84027],[80.89399,23.8484],[80.89618,23.85436],[80.90071,23.85949],[80.90053,23.86148],[80.89985,23.86302],[80.89132,23.86407],[80.88785,23.86869],[80.88517,23.86711],[80.88388,23.86951],[80.88645,23.87112],[80.88377,23.87254],[80.87553,23.87374],[80.87352,23.87264],[80.86274,23.87658],[80.87282,23.89244],[80.88218,23.89729],[80.8761,23.90596],[80.86674,23.90618],[80.85846,23.90394],[80.84518,23.9061],[80.84388,23.91019],[80.84607,23.91566],[80.84418,23.92319],[80.84557,23.92416],[80.84762,23.93329],[80.84529,23.93522],[80.8438,23.94079],[80.84147,23.94239],[80.84129,23.94789],[80.83671,23.94983],[80.84311,23.95716],[80.84336,23.96208],[80.8455,23.96176],[80.84657,23.96618],[80.85172,23.96697],[80.8544,23.96379],[80.85958,23.96159],[80.87231,23.96119],[80.8749,23.96194],[80.87608,23.96831],[80.87811,23.96789],[80.88126,23.97174],[80.87141,23.97554],[80.87563,23.98668],[80.87917,23.98731],[80.8879,23.99474],[80.88694,23.99785],[80.87894,23.9988],[80.8768,24.00046],[80.88576,24.01936],[80.88789,24.0292],[80.89028,24.02963],[80.89229,24.02577],[80.89802,24.0225],[80.90709,24.02008],[80.90816,24.02874],[80.9039,24.03844],[80.90449,24.04192],[80.92523,24.04531],[80.93182,24.04917],[80.93241,24.05228],[80.93047,24.05453],[80.92117,24.05416],[80.92175,24.05745],[80.92524,24.05943],[80.94424,24.0615],[80.94918,24.06263],[80.95035,24.06451],[80.9299,24.06752],[80.91294,24.06508],[80.90635,24.07035],[80.90305,24.07063],[80.89306,24.063],[80.88648,24.0662],[80.88154,24.07627],[80.87572,24.07844],[80.86962,24.07853],[80.86659,24.07644],[80.86297,24.06824],[80.86224,24.06482],[80.86453,24.05843],[80.86126,24.05599],[80.85916,24.05136],[80.85499,24.05101],[80.85105,24.04639],[80.84866,24.03573],[80.83911,24.03087],[80.83646,24.0233],[80.82606,24.02745],[80.81959,24.0283],[80.79866,24.01565],[80.79678,24.00628],[80.80092,24.00488],[80.80614,24.00622],[80.80892,24.0031],[80.81157,23.99464],[80.80169,23.98829],[80.80159,23.97726],[80.80648,23.97291],[80.80747,23.96994],[80.79418,23.96993],[80.78243,23.97808],[80.77354,23.98686],[80.76883,23.98823],[80.76465,23.99223],[80.76345,23.9952],[80.76959,24.00524],[80.76692,24.00815],[80.76612,24.01202],[80.76337,24.01191],[80.76376,24.01547],[80.76161,24.0218],[80.75419,24.02573],[80.77431,24.03912],[80.78074,24.03564],[80.7848,24.03667],[80.78854,24.03492],[80.80125,24.03693],[80.80187,24.03835],[80.79526,24.04186],[80.79551,24.04713],[80.79018,24.04918],[80.79247,24.05213],[80.79738,24.0534],[80.7991,24.05847],[80.80302,24.06068],[80.79855,24.06288],[80.7966,24.06596],[80.79459,24.06504],[80.78918,24.06703],[80.7814,24.06686],[80.77573,24.06891],[80.76481,24.06756],[80.76302,24.06615],[80.76351,24.0639],[80.76194,24.06427],[80.75978,24.06256],[80.76049,24.06177],[80.75689,24.06033],[80.7557,24.06659],[80.75511,24.06448],[80.75177,24.06279],[80.74594,24.06377],[80.74565,24.06539],[80.74387,24.06505],[80.74285,24.07014],[80.74019,24.06819],[80.73547,24.06881],[80.7354,24.07005],[80.73233,24.06892],[80.72295,24.0776],[80.72281,24.07387],[80.72507,24.07199],[80.72314,24.06822],[80.72371,24.06505],[80.71972,24.0681],[80.71238,24.06488],[80.70632,24.07049],[80.70432,24.0765],[80.69998,24.07843],[80.69821,24.08255],[80.69581,24.08384],[80.70419,24.09276],[80.72065,24.09108],[80.73091,24.10072],[80.73906,24.10579],[80.74514,24.1169],[80.74336,24.11848],[80.74186,24.1246]],[[80.60428,24.01745],[80.60193,24.02477],[80.60434,24.02657],[80.60991,24.02592],[80.61102,24.02223],[80.61993,24.02294],[80.61935,24.02175],[80.62151,24.02034],[80.61866,24.01238],[80.61318,24.00829],[80.61171,24.01326],[80.60547,24.01256],[80.60735,24.01424],[80.60428,24.01745]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"414","area_level":"District","area_name":"Khargone (West Nimar)","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.08688,22.54002],[76.08071,22.53915],[76.08146,22.53473],[76.0782,22.53062],[76.07637,22.5237],[76.07393,22.52791],[76.06045,22.53353],[76.05198,22.53081],[76.04411,22.53452],[76.03952,22.52914],[76.03337,22.52792],[76.02977,22.53014],[76.02773,22.52894],[76.03042,22.51005],[76.02643,22.5027],[76.02795,22.50059],[76.02597,22.49937],[76.02603,22.4963],[76.02367,22.49503],[76.03475,22.48576],[76.03472,22.48192],[76.03926,22.48356],[76.04062,22.48089],[76.04771,22.48066],[76.05067,22.47836],[76.05015,22.47212],[76.05533,22.46269],[76.05263,22.4537],[76.04734,22.45973],[76.04188,22.45796],[76.03138,22.44806],[76.0319,22.43706],[76.02147,22.44494],[76.00862,22.4446],[76.01298,22.44106],[76.00664,22.43281],[76.00735,22.42882],[76.00478,22.42657],[76.00663,22.42198],[75.99806,22.41791],[75.99382,22.4136],[75.98701,22.41672],[75.97126,22.41981],[75.96865,22.42877],[75.96088,22.43058],[75.91397,22.42049],[75.91329,22.41452],[75.9087,22.4091],[75.91158,22.40224],[75.90965,22.38854],[75.90578,22.38682],[75.90341,22.38706],[75.89933,22.39074],[75.89276,22.39131],[75.88747,22.39008],[75.88127,22.38342],[75.87882,22.38464],[75.87394,22.38154],[75.85834,22.38057],[75.85627,22.38374],[75.84945,22.38392],[75.84955,22.39181],[75.83817,22.40052],[75.83437,22.40884],[75.82182,22.40613],[75.81571,22.39188],[75.80906,22.38708],[75.80498,22.38794],[75.79964,22.38573],[75.79942,22.38026],[75.79108,22.37663],[75.78447,22.37637],[75.78041,22.37357],[75.77521,22.36578],[75.77141,22.36689],[75.77027,22.36922],[75.76806,22.36704],[75.76272,22.36704],[75.76257,22.36468],[75.75868,22.36392],[75.75206,22.3579],[75.73606,22.35817],[75.72581,22.36517],[75.72511,22.36902],[75.72143,22.36947],[75.71346,22.36227],[75.70284,22.36125],[75.70372,22.35859],[75.69273,22.3599],[75.68716,22.35439],[75.68135,22.35317],[75.67552,22.34925],[75.67471,22.34404],[75.66246,22.34558],[75.65453,22.34258],[75.65115,22.33948],[75.65357,22.33541],[75.65355,22.33214],[75.64432,22.33596],[75.64629,22.34133],[75.64079,22.34505],[75.64238,22.34897],[75.64228,22.35509],[75.64095,22.35619],[75.63514,22.35518],[75.63506,22.35288],[75.62901,22.34477],[75.62549,22.34289],[75.62066,22.34299],[75.61569,22.33772],[75.60587,22.34066],[75.59963,22.34075],[75.59983,22.34772],[75.60264,22.34533],[75.60526,22.34655],[75.6076,22.34501],[75.61092,22.34677],[75.60556,22.3514],[75.60713,22.35617],[75.61046,22.35768],[75.61043,22.35883],[75.60655,22.35969],[75.6103,22.36368],[75.60204,22.36331],[75.5987,22.35998],[75.5996,22.36244],[75.59849,22.3646],[75.59271,22.36097],[75.59018,22.36359],[75.58825,22.37146],[75.58168,22.37159],[75.57988,22.37022],[75.57927,22.37315],[75.57503,22.37781],[75.57128,22.37765],[75.56638,22.37429],[75.56464,22.37584],[75.55808,22.37038],[75.55401,22.36367],[75.54272,22.36126],[75.54103,22.35789],[75.5368,22.3568],[75.5392,22.36266],[75.53804,22.36529],[75.52791,22.36487],[75.52601,22.36748],[75.52791,22.37099],[75.52242,22.37547],[75.51804,22.37537],[75.51482,22.37312],[75.50854,22.37368],[75.5035,22.36754],[75.51001,22.35019],[75.50926,22.33931],[75.50497,22.33639],[75.49651,22.33978],[75.49585,22.33319],[75.48998,22.32625],[75.49904,22.32681],[75.50686,22.32352],[75.51026,22.32773],[75.51415,22.32915],[75.5187,22.32622],[75.51481,22.29374],[75.51749,22.27974],[75.51881,22.27739],[75.52925,22.27121],[75.53301,22.26336],[75.52771,22.25059],[75.53565,22.23428],[75.53135,22.22095],[75.52281,22.21103],[75.51974,22.19095],[75.51583,22.1864],[75.5206,22.17322],[75.51122,22.17319],[75.51037,22.16342],[75.50263,22.15659],[75.48641,22.15314],[75.46811,22.15327],[75.45589,22.15165],[75.42806,22.14633],[75.40902,22.13906],[75.39819,22.1366],[75.39013,22.13675],[75.38104,22.14079],[75.36849,22.14186],[75.32263,22.13687],[75.31579,22.1343],[75.32166,22.12287],[75.32802,22.1215],[75.33196,22.12315],[75.3405,22.12146],[75.34347,22.11992],[75.34586,22.11289],[75.35195,22.1139],[75.35486,22.11276],[75.35781,22.10253],[75.3575,22.09833],[75.36805,22.10176],[75.38102,22.1021],[75.38443,22.09424],[75.3892,22.0897],[75.39639,22.08876],[75.39314,22.08406],[75.39338,22.0809],[75.39897,22.07895],[75.40465,22.07289],[75.41421,22.07297],[75.43344,22.07834],[75.43724,22.07064],[75.45149,22.07267],[75.45668,22.0593],[75.4457,22.05618],[75.43328,22.05997],[75.41358,22.05881],[75.41296,22.03209],[75.41615,22.02756],[75.41392,22.02284],[75.43734,22.02635],[75.44346,22.02593],[75.43507,22.01763],[75.43043,22.01575],[75.42589,22.01034],[75.41604,22.00387],[75.40943,22.00397],[75.405,22.00232],[75.3995,21.99539],[75.39834,21.98472],[75.35843,21.98513],[75.35031,21.98207],[75.35265,21.95592],[75.34947,21.95481],[75.34453,21.94721],[75.33813,21.94584],[75.33784,21.94099],[75.34188,21.9299],[75.33524,21.92089],[75.33482,21.91366],[75.33268,21.90911],[75.32452,21.90573],[75.31489,21.90818],[75.30731,21.90745],[75.29742,21.92251],[75.29053,21.92199],[75.28786,21.91703],[75.28328,21.91578],[75.28125,21.90569],[75.28772,21.89209],[75.27978,21.88593],[75.27601,21.88613],[75.27657,21.86614],[75.29803,21.86316],[75.30129,21.85427],[75.30157,21.84765],[75.30988,21.84355],[75.30898,21.8337],[75.29309,21.82489],[75.29513,21.81119],[75.28945,21.81131],[75.28888,21.80486],[75.28458,21.8032],[75.27564,21.80378],[75.27571,21.80223],[75.27239,21.80139],[75.27403,21.79195],[75.27575,21.79218],[75.2764,21.78994],[75.28088,21.78758],[75.28003,21.78294],[75.2822,21.7722],[75.27684,21.77236],[75.27499,21.76977],[75.27249,21.7693],[75.27287,21.76651],[75.27052,21.76514],[75.27141,21.75581],[75.27359,21.75412],[75.27603,21.73848],[75.27124,21.73802],[75.26272,21.74546],[75.25723,21.74459],[75.25658,21.73801],[75.24252,21.74503],[75.22222,21.74231],[75.21082,21.73359],[75.20772,21.72848],[75.20738,21.72361],[75.20989,21.71316],[75.20894,21.70849],[75.21742,21.69475],[75.22982,21.69249],[75.23054,21.69111],[75.26708,21.68747],[75.26671,21.6803],[75.26263,21.67475],[75.26445,21.67339],[75.27391,21.67527],[75.27066,21.6557],[75.28652,21.65172],[75.28778,21.63834],[75.2907,21.63503],[75.29697,21.63565],[75.303,21.63894],[75.32203,21.66196],[75.33269,21.66412],[75.3506,21.67093],[75.37449,21.67612],[75.37812,21.6782],[75.38375,21.67714],[75.39143,21.68153],[75.40025,21.677],[75.4167,21.67977],[75.43849,21.67577],[75.44125,21.66623],[75.43954,21.66633],[75.44042,21.66315],[75.4372,21.65996],[75.43724,21.65648],[75.44699,21.64857],[75.4488,21.64449],[75.4472,21.6414],[75.45662,21.63867],[75.45869,21.63531],[75.46297,21.63356],[75.46394,21.62829],[75.4672,21.62699],[75.46926,21.62313],[75.47161,21.62253],[75.4723,21.6247],[75.47986,21.62063],[75.49836,21.61721],[75.5021,21.61364],[75.49442,21.61017],[75.49107,21.59932],[75.48571,21.59903],[75.47903,21.58535],[75.47939,21.57464],[75.47798,21.56805],[75.47174,21.56627],[75.47007,21.56194],[75.46781,21.56123],[75.46471,21.55622],[75.46473,21.55048],[75.46014,21.54386],[75.45964,21.53258],[75.46309,21.52281],[75.46285,21.51513],[75.47125,21.51603],[75.47322,21.50946],[75.47928,21.50277],[75.48018,21.49979],[75.48208,21.50047],[75.48347,21.49719],[75.48591,21.49814],[75.48701,21.49299],[75.49086,21.49208],[75.49743,21.48732],[75.50435,21.48957],[75.52512,21.48896],[75.52999,21.48615],[75.52934,21.48252],[75.53222,21.47889],[75.54767,21.48026],[75.56409,21.47946],[75.57727,21.47527],[75.58323,21.47549],[75.60091,21.46078],[75.61152,21.45763],[75.61118,21.45599],[75.60452,21.45258],[75.60058,21.44508],[75.59562,21.44242],[75.59513,21.4406],[75.59038,21.43916],[75.59014,21.43682],[75.59266,21.43557],[75.59303,21.43315],[75.58969,21.43167],[75.59058,21.42937],[75.58694,21.42571],[75.5933,21.42211],[75.59768,21.42277],[75.60306,21.42097],[75.60603,21.41702],[75.60233,21.39733],[75.61873,21.39878],[75.62841,21.3941],[75.62763,21.39121],[75.62446,21.39161],[75.62028,21.38861],[75.61632,21.38809],[75.61611,21.38356],[75.6198,21.37897],[75.62002,21.37596],[75.62321,21.37731],[75.62303,21.37502],[75.62831,21.37532],[75.63641,21.37742],[75.64127,21.37488],[75.64661,21.37874],[75.64817,21.37699],[75.65772,21.37877],[75.65922,21.37641],[75.66585,21.37745],[75.67119,21.37463],[75.67375,21.37708],[75.6848,21.38025],[75.68761,21.38408],[75.69223,21.38487],[75.6928,21.38369],[75.70324,21.38807],[75.70949,21.38619],[75.71576,21.38798],[75.71617,21.3856],[75.71877,21.38436],[75.72847,21.38868],[75.73253,21.38711],[75.73656,21.38827],[75.75113,21.38466],[75.75514,21.37938],[75.77382,21.38205],[75.77702,21.38452],[75.78646,21.38413],[75.78783,21.38281],[75.79042,21.3846],[75.80093,21.38335],[75.80273,21.38457],[75.81304,21.37906],[75.83073,21.37821],[75.83071,21.37696],[75.83336,21.37664],[75.83417,21.37957],[75.84139,21.38454],[75.84332,21.38195],[75.84794,21.38134],[75.85316,21.38338],[75.85571,21.38232],[75.85604,21.3802],[75.86246,21.37992],[75.86256,21.38216],[75.86415,21.3811],[75.86978,21.3864],[75.87035,21.39123],[75.89003,21.39471],[75.89419,21.39129],[75.90324,21.3917],[75.91066,21.38257],[75.92901,21.38659],[75.94171,21.38584],[75.95222,21.38958],[75.96306,21.38971],[75.98663,21.36877],[76.00022,21.39679],[76.00815,21.41791],[76.00337,21.45071],[76.00946,21.46167],[76.00686,21.47276],[75.99041,21.48859],[75.98146,21.48835],[75.97839,21.48689],[75.97564,21.49027],[75.9708,21.48778],[75.96961,21.48527],[75.96242,21.48438],[75.9581,21.48911],[75.9541,21.48745],[75.94804,21.49005],[75.95054,21.5094],[75.94877,21.51764],[75.95007,21.54791],[75.9522,21.55207],[75.96384,21.55462],[76.00776,21.55359],[76.00776,21.55499],[76.01331,21.55275],[76.01756,21.55305],[76.02054,21.54891],[76.02308,21.54929],[76.03767,21.5607],[76.04968,21.56438],[76.06147,21.57326],[76.06843,21.57029],[76.07689,21.57214],[76.0749,21.58702],[76.0773,21.59364],[76.07878,21.61494],[76.0758,21.62327],[76.06945,21.66337],[76.07714,21.66485],[76.0816,21.67159],[76.08757,21.67223],[76.08707,21.67417],[76.09189,21.67974],[76.09582,21.67932],[76.09849,21.68495],[76.10784,21.69111],[76.11083,21.68984],[76.13306,21.69119],[76.13526,21.68592],[76.13978,21.68161],[76.14722,21.67873],[76.1474,21.67741],[76.15185,21.67722],[76.15204,21.69433],[76.1644,21.69602],[76.16954,21.69774],[76.17129,21.6999],[76.16746,21.70282],[76.17,21.72105],[76.16455,21.72138],[76.16581,21.72453],[76.14986,21.73493],[76.1382,21.73266],[76.13351,21.72469],[76.12654,21.72129],[76.1122,21.72003],[76.11167,21.72201],[76.10459,21.7234],[76.10705,21.73106],[76.10153,21.73033],[76.09973,21.74068],[76.1004,21.7452],[76.10853,21.74999],[76.12407,21.74985],[76.12682,21.76026],[76.12396,21.76068],[76.12352,21.76609],[76.11842,21.76544],[76.1162,21.76893],[76.11435,21.77354],[76.11282,21.78868],[76.10612,21.78937],[76.11104,21.7955],[76.11021,21.79989],[76.10751,21.80323],[76.10568,21.82276],[76.10099,21.8368],[76.10063,21.85503],[76.11528,21.8582],[76.11852,21.85542],[76.12457,21.8548],[76.12165,21.8634],[76.1254,21.87061],[76.15573,21.88813],[76.16938,21.88595],[76.16926,21.89101],[76.16689,21.89374],[76.16009,21.92332],[76.1559,21.92782],[76.15473,21.93452],[76.15273,21.93658],[76.15425,21.94136],[76.1486,21.94678],[76.14884,21.95009],[76.15468,21.95066],[76.15543,21.95302],[76.15007,21.96158],[76.16044,21.96451],[76.16049,21.96818],[76.15701,21.97109],[76.14979,21.9682],[76.14677,21.96909],[76.14855,21.973],[76.14659,21.97565],[76.14249,21.97717],[76.14779,21.97903],[76.14883,21.98825],[76.15348,21.98665],[76.15641,21.98782],[76.16087,21.99832],[76.15975,22.00563],[76.16506,22.0124],[76.16427,22.01655],[76.15297,22.02319],[76.15225,22.03202],[76.15902,22.03574],[76.16025,22.03795],[76.1592,22.04076],[76.16383,22.04262],[76.17716,22.04263],[76.18073,22.03793],[76.19268,22.04005],[76.19871,22.04447],[76.20023,22.06713],[76.22493,22.07197],[76.22283,22.083],[76.21909,22.08362],[76.21567,22.08837],[76.21701,22.09628],[76.21969,22.09972],[76.19864,22.09722],[76.19027,22.11543],[76.17613,22.1218],[76.17377,22.12215],[76.17313,22.11959],[76.16454,22.1195],[76.15871,22.11703],[76.15441,22.11717],[76.15335,22.10874],[76.15146,22.10501],[76.14825,22.10471],[76.14841,22.10126],[76.13549,22.10005],[76.13361,22.09304],[76.13728,22.08083],[76.15397,22.07721],[76.1532,22.06674],[76.1388,22.05547],[76.12514,22.05637],[76.10608,22.05298],[76.10318,22.05447],[76.09588,22.05348],[76.09683,22.07926],[76.09315,22.08992],[76.09546,22.09291],[76.11454,22.09454],[76.11524,22.10376],[76.13544,22.10539],[76.13525,22.10761],[76.13811,22.11007],[76.13568,22.12482],[76.12476,22.13389],[76.12447,22.15292],[76.12143,22.15436],[76.11688,22.1532],[76.1172,22.15896],[76.12177,22.17082],[76.12756,22.17157],[76.13386,22.17566],[76.1472,22.1744],[76.15053,22.17843],[76.15728,22.18938],[76.156,22.20076],[76.15738,22.20236],[76.1528,22.20899],[76.15364,22.21301],[76.13412,22.21274],[76.12296,22.20799],[76.12299,22.21294],[76.11878,22.2119],[76.11189,22.21367],[76.10213,22.21301],[76.09948,22.21152],[76.09872,22.19978],[76.09436,22.19857],[76.09356,22.19254],[76.08792,22.18729],[76.08259,22.18561],[76.08169,22.18815],[76.07871,22.18764],[76.07854,22.19006],[76.06952,22.18823],[76.06752,22.19137],[76.06437,22.1917],[76.04742,22.19],[76.03997,22.19464],[76.03191,22.19435],[76.03052,22.19711],[76.02488,22.19686],[76.02101,22.20467],[76.01755,22.20374],[76.01253,22.2117],[76.01711,22.21845],[76.02252,22.223],[76.03652,22.22558],[76.0607,22.22656],[76.09931,22.24964],[76.11227,22.25213],[76.15008,22.25345],[76.15872,22.25557],[76.18163,22.27577],[76.18298,22.28247],[76.20501,22.32522],[76.21459,22.33387],[76.20843,22.3475],[76.20268,22.35059],[76.20255,22.35524],[76.20671,22.35741],[76.21934,22.3567],[76.2212,22.36451],[76.22906,22.37159],[76.23477,22.39024],[76.22453,22.40489],[76.21227,22.41792],[76.19096,22.42087],[76.18572,22.4262],[76.17678,22.42764],[76.16864,22.43352],[76.16023,22.43591],[76.15384,22.44114],[76.14737,22.44351],[76.13144,22.45833],[76.12196,22.45833],[76.11318,22.46141],[76.11245,22.46712],[76.10116,22.47044],[76.09881,22.47459],[76.09822,22.48226],[76.0927,22.49986],[76.09369,22.5026],[76.09188,22.52155],[76.08679,22.53163],[76.08688,22.54002]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"415","area_level":"District","area_name":"Mandla","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.40616,23.17226],[80.39131,23.17128],[80.39417,23.16713],[80.38969,23.15754],[80.38966,23.14445],[80.39282,23.14211],[80.35952,23.1393],[80.35061,23.12087],[80.33692,23.11657],[80.33758,23.11096],[80.32929,23.09693],[80.31165,23.0977],[80.30879,23.09633],[80.30179,23.09842],[80.30008,23.10583],[80.29557,23.10779],[80.29713,23.11301],[80.2962,23.12545],[80.28951,23.13332],[80.28366,23.13419],[80.28097,23.13627],[80.27628,23.13538],[80.27908,23.14172],[80.27633,23.14598],[80.26591,23.14548],[80.2607,23.14841],[80.24809,23.15152],[80.24396,23.14727],[80.24364,23.14355],[80.24173,23.14161],[80.2382,23.14005],[80.23267,23.14267],[80.22823,23.14278],[80.21776,23.13233],[80.21022,23.13094],[80.20504,23.13233],[80.1926,23.1312],[80.1861,23.12868],[80.17965,23.12211],[80.18165,23.11089],[80.19004,23.10455],[80.18873,23.09201],[80.20274,23.08636],[80.20422,23.06857],[80.19729,23.06685],[80.19326,23.0685],[80.18687,23.06724],[80.18213,23.06273],[80.18086,23.05658],[80.18522,23.05358],[80.18738,23.04142],[80.19182,23.03331],[80.19095,23.02815],[80.18645,23.02276],[80.17664,23.02419],[80.16984,23.03809],[80.16919,23.04265],[80.1637,23.04765],[80.15785,23.04865],[80.14826,23.04541],[80.14442,23.04924],[80.14193,23.04474],[80.14064,23.04998],[80.14186,23.05657],[80.13823,23.05631],[80.13413,23.05956],[80.13126,23.05861],[80.12926,23.05976],[80.12366,23.0539],[80.11057,23.05142],[80.10844,23.05271],[80.10744,23.05934],[80.10868,23.07585],[80.09742,23.07937],[80.0812,23.07723],[80.08291,23.07495],[80.07965,23.06596],[80.0711,23.06653],[80.05775,23.05889],[80.05396,23.05393],[80.04724,23.05159],[80.04241,23.04674],[80.04016,23.04185],[80.03679,23.03948],[80.01467,23.03161],[80.00072,23.03115],[79.99248,23.02868],[79.99531,23.02116],[79.99287,23.01567],[79.99034,23.01381],[79.99823,23.0165],[80.00534,23.00653],[80.00451,23.00289],[79.99802,23.00352],[79.99121,22.99826],[79.99472,22.99211],[80.00156,22.98731],[80.00557,22.97935],[79.99919,22.97945],[79.9974,22.9755],[79.99382,22.97406],[79.98964,22.96966],[79.98444,22.96923],[79.98213,22.9662],[79.96989,22.96129],[79.96596,22.95826],[79.96663,22.9552],[79.96188,22.95394],[79.96019,22.95114],[79.95167,22.94719],[79.95151,22.94554],[79.95425,22.94487],[79.95529,22.94225],[79.95355,22.93974],[79.9542,22.93687],[79.97081,22.92393],[79.9745,22.9174],[79.96942,22.91554],[79.96823,22.90818],[79.97012,22.90088],[79.97034,22.8919],[79.96897,22.88953],[79.97557,22.88539],[79.96873,22.87955],[79.9623,22.87098],[79.96524,22.87173],[79.96661,22.86633],[79.96437,22.85199],[79.97411,22.83734],[79.97903,22.8326],[80.0008,22.82598],[80.00655,22.82188],[80.01676,22.79523],[80.02389,22.79002],[80.04172,22.7819],[80.06095,22.76012],[80.0708,22.7582],[80.08839,22.76635],[80.10045,22.76924],[80.13028,22.76611],[80.16242,22.76659],[80.17971,22.76292],[80.19035,22.77488],[80.20554,22.77811],[80.20399,22.79303],[80.21253,22.79941],[80.22059,22.80076],[80.23555,22.79698],[80.25461,22.796],[80.26816,22.79321],[80.27888,22.78748],[80.28157,22.78056],[80.27874,22.76492],[80.28309,22.75208],[80.28499,22.73544],[80.28942,22.72633],[80.27629,22.71826],[80.27229,22.71753],[80.26331,22.72016],[80.24509,22.72101],[80.23939,22.71515],[80.23767,22.71074],[80.23845,22.70643],[80.23582,22.70082],[80.23365,22.70001],[80.24104,22.69047],[80.23606,22.67417],[80.21923,22.67044],[80.21296,22.67447],[80.20223,22.66288],[80.19767,22.64862],[80.19435,22.64436],[80.20742,22.63576],[80.21431,22.63446],[80.21604,22.62717],[80.21068,22.61495],[80.20807,22.61148],[80.20417,22.61067],[80.20235,22.60392],[80.19676,22.60318],[80.18986,22.59908],[80.18523,22.60117],[80.17535,22.60168],[80.15385,22.59996],[80.14481,22.61618],[80.14053,22.61528],[80.13828,22.61102],[80.13655,22.61326],[80.13116,22.61446],[80.12756,22.61319],[80.12639,22.61019],[80.12421,22.61416],[80.12011,22.61505],[80.11976,22.62042],[80.11518,22.62709],[80.1129,22.62704],[80.10456,22.62141],[80.09419,22.62198],[80.08905,22.61974],[80.08545,22.61725],[80.08796,22.61312],[80.08202,22.61349],[80.07282,22.60211],[80.06468,22.60736],[80.05579,22.60631],[80.05263,22.6041],[80.04484,22.60436],[80.03537,22.60812],[80.03222,22.59643],[80.01542,22.59696],[80.01066,22.58907],[80.00774,22.57479],[79.9898,22.58079],[79.97886,22.57565],[79.98015,22.56974],[79.97831,22.56686],[79.96409,22.56817],[79.95804,22.56125],[79.9528,22.55829],[79.95436,22.55561],[79.96417,22.55344],[79.97044,22.54755],[79.98249,22.54935],[79.98601,22.54558],[79.98852,22.54507],[79.99366,22.54604],[80.00176,22.55043],[80.00522,22.55462],[80.00496,22.55851],[80.00903,22.55895],[80.0112,22.54771],[80.01613,22.543],[80.01817,22.54324],[80.02166,22.54733],[80.02658,22.54623],[80.02992,22.54726],[80.0345,22.54195],[80.03743,22.54102],[80.03722,22.52423],[80.03472,22.52095],[80.02414,22.51681],[80.02208,22.51057],[80.02334,22.50531],[80.02788,22.4997],[80.0376,22.50139],[80.04425,22.4949],[80.04424,22.4898],[80.04724,22.48588],[80.05223,22.46953],[80.0493,22.46011],[80.05013,22.45618],[80.07158,22.45031],[80.07742,22.44055],[80.08016,22.4276],[80.09267,22.42351],[80.09118,22.4056],[80.07224,22.39339],[80.07404,22.38713],[80.07346,22.38318],[80.06917,22.37645],[80.07095,22.36908],[80.0775,22.35916],[80.07701,22.35071],[80.08299,22.34475],[80.09799,22.33854],[80.10591,22.34384],[80.12938,22.34616],[80.13915,22.34349],[80.14199,22.33945],[80.14398,22.33907],[80.14975,22.34633],[80.15985,22.34624],[80.17243,22.33996],[80.16807,22.32542],[80.18498,22.32308],[80.2008,22.31636],[80.21258,22.3145],[80.2151,22.31008],[80.22085,22.31033],[80.22215,22.31216],[80.22813,22.31386],[80.23208,22.30277],[80.23505,22.30154],[80.25973,22.30827],[80.27311,22.3074],[80.27944,22.32317],[80.28826,22.32412],[80.30086,22.33738],[80.31898,22.3461],[80.32308,22.34612],[80.32773,22.34185],[80.33521,22.33917],[80.33317,22.33662],[80.33384,22.33412],[80.34409,22.32985],[80.34628,22.3271],[80.34278,22.32399],[80.34124,22.31592],[80.33665,22.31168],[80.33407,22.30557],[80.33606,22.29894],[80.3711,22.30097],[80.38492,22.30925],[80.38729,22.30638],[80.39975,22.30446],[80.40341,22.29312],[80.42111,22.2782],[80.41977,22.27575],[80.42112,22.26975],[80.41552,22.24418],[80.42227,22.2444],[80.42598,22.24641],[80.44682,22.24609],[80.44856,22.24788],[80.45107,22.26332],[80.46499,22.26437],[80.46049,22.27709],[80.46229,22.28082],[80.46694,22.27908],[80.48318,22.27801],[80.48517,22.27167],[80.48745,22.27007],[80.50231,22.27134],[80.50785,22.27567],[80.51564,22.26231],[80.51741,22.26227],[80.51818,22.26451],[80.52092,22.26229],[80.52392,22.26478],[80.52628,22.26463],[80.52514,22.2494],[80.53221,22.24057],[80.57992,22.22651],[80.59825,22.23228],[80.60785,22.22789],[80.63733,22.2262],[80.64589,22.22747],[80.65914,22.2195],[80.66419,22.22207],[80.68161,22.213],[80.69115,22.2126],[80.69983,22.20358],[80.70625,22.20216],[80.71317,22.20558],[80.72089,22.21632],[80.72803,22.21733],[80.72856,22.22027],[80.72425,22.23491],[80.71777,22.23535],[80.70347,22.25462],[80.70529,22.25701],[80.70395,22.27049],[80.70857,22.27503],[80.71113,22.27166],[80.7188,22.27144],[80.72318,22.27745],[80.74481,22.28449],[80.74341,22.28711],[80.74542,22.29057],[80.74686,22.29055],[80.74623,22.29259],[80.74909,22.29741],[80.75036,22.2969],[80.75252,22.30122],[80.7548,22.30122],[80.75737,22.30576],[80.76176,22.30921],[80.7659,22.30891],[80.76577,22.31207],[80.76978,22.31416],[80.77209,22.31255],[80.7737,22.31725],[80.77653,22.31512],[80.77887,22.31742],[80.7825,22.31691],[80.78495,22.31362],[80.78791,22.31372],[80.79207,22.32106],[80.79072,22.32546],[80.79505,22.32887],[80.79211,22.34151],[80.79413,22.35506],[80.80223,22.36639],[80.79403,22.37578],[80.79503,22.37919],[80.80148,22.3872],[80.79536,22.40005],[80.79823,22.40146],[80.80655,22.39919],[80.81127,22.40197],[80.81091,22.3996],[80.81293,22.39912],[80.81129,22.39462],[80.81477,22.3901],[80.82005,22.39107],[80.83417,22.38367],[80.84433,22.38223],[80.84536,22.38295],[80.8422,22.38779],[80.84458,22.38906],[80.84943,22.38561],[80.85233,22.38563],[80.85682,22.3811],[80.86571,22.3789],[80.86537,22.36478],[80.87204,22.35963],[80.87893,22.35896],[80.89373,22.35043],[80.89007,22.35166],[80.89171,22.34899],[80.88284,22.34733],[80.88056,22.3383],[80.88147,22.33374],[80.89902,22.33374],[80.90227,22.34089],[80.90888,22.34286],[80.92436,22.33715],[80.9315,22.33117],[80.93119,22.32782],[80.92866,22.32671],[80.91687,22.32923],[80.91405,22.32008],[80.90965,22.3177],[80.90991,22.31424],[80.91313,22.30946],[80.91021,22.30801],[80.90375,22.29765],[80.9057,22.29325],[80.91302,22.29014],[80.91355,22.28053],[80.91497,22.27904],[80.91912,22.27948],[80.92177,22.27856],[80.92217,22.27691],[80.93665,22.27786],[80.93807,22.28757],[80.94529,22.28635],[80.95424,22.27723],[80.95825,22.27516],[80.96062,22.28041],[80.96281,22.281],[80.96543,22.28106],[80.97447,22.27636],[80.98087,22.27799],[80.98266,22.28282],[80.98755,22.28655],[80.99837,22.28434],[81.00398,22.2859],[81.01113,22.28555],[81.01891,22.27744],[81.03088,22.27212],[81.0324,22.26507],[81.04495,22.25436],[81.04842,22.24385],[81.05961,22.24429],[81.07261,22.24837],[81.07604,22.24465],[81.07771,22.23904],[81.07955,22.23938],[81.08241,22.24383],[81.09153,22.249],[81.09731,22.26898],[81.10185,22.2783],[81.10799,22.2845],[81.11872,22.29126],[81.11894,22.30922],[81.11355,22.32413],[81.12121,22.3426],[81.11312,22.35327],[81.10867,22.37382],[81.1037,22.38267],[81.10598,22.38769],[81.11034,22.41744],[81.10882,22.42876],[81.11006,22.43553],[81.12053,22.4458],[81.12701,22.44923],[81.14103,22.45423],[81.1497,22.45313],[81.15512,22.45491],[81.16282,22.47455],[81.16724,22.47797],[81.17221,22.48776],[81.18697,22.48884],[81.19749,22.49283],[81.19505,22.49993],[81.18995,22.50601],[81.18939,22.51126],[81.18481,22.5143],[81.1838,22.51734],[81.17839,22.52274],[81.17816,22.52636],[81.17398,22.52608],[81.17359,22.52877],[81.16833,22.53388],[81.16905,22.5385],[81.16791,22.54054],[81.16225,22.53938],[81.15991,22.54037],[81.16204,22.54209],[81.15712,22.5469],[81.1554,22.55409],[81.15938,22.55566],[81.15754,22.5575],[81.15802,22.55951],[81.15494,22.55933],[81.15248,22.5621],[81.14816,22.56224],[81.14962,22.56597],[81.14384,22.56715],[81.14259,22.57128],[81.14045,22.5699],[81.13745,22.57114],[81.13507,22.57716],[81.13632,22.58053],[81.1314,22.58651],[81.12581,22.58791],[81.12631,22.58994],[81.12317,22.59409],[81.11477,22.59381],[81.11402,22.59864],[81.11174,22.59976],[81.10763,22.59598],[81.10135,22.59837],[81.09674,22.59629],[81.09378,22.5973],[81.08911,22.6027],[81.08938,22.61031],[81.08421,22.61323],[81.08148,22.61263],[81.08038,22.60985],[81.07547,22.60909],[81.06808,22.61426],[81.06653,22.60981],[81.06299,22.60754],[81.05263,22.60811],[81.04523,22.60605],[81.04348,22.60882],[81.04362,22.61339],[81.03409,22.61653],[81.03126,22.61333],[81.03293,22.60404],[81.02832,22.6019],[81.02265,22.60202],[81.02096,22.59574],[81.01709,22.59182],[81.0206,22.588],[81.02115,22.58282],[81.01609,22.57045],[81.02404,22.56986],[81.0248,22.56133],[81.0098,22.55429],[81.00783,22.54819],[80.99073,22.54568],[80.98487,22.54099],[80.9803,22.54453],[80.97022,22.54295],[80.96538,22.54995],[80.96471,22.56079],[80.96123,22.56087],[80.94923,22.55526],[80.94575,22.55816],[80.94467,22.56519],[80.93443,22.57375],[80.93607,22.58774],[80.9394,22.58652],[80.94024,22.58323],[80.94288,22.58294],[80.95096,22.58833],[80.95272,22.59116],[80.95683,22.58717],[80.95975,22.59056],[80.96535,22.5896],[80.96723,22.59188],[80.96695,22.59441],[80.95563,22.59699],[80.95725,22.60451],[80.96269,22.60597],[80.96746,22.61151],[80.97329,22.61166],[80.98002,22.60713],[80.98451,22.61494],[80.98716,22.61438],[80.99022,22.61101],[80.99329,22.61176],[80.99368,22.61388],[80.99836,22.61759],[81.00249,22.6179],[81.00452,22.62237],[81.00783,22.62154],[81.00891,22.62369],[81.00603,22.62606],[81.00611,22.63019],[81.01152,22.64084],[80.98663,22.64906],[80.97585,22.6487],[80.97138,22.64401],[80.96533,22.65008],[80.96229,22.64734],[80.96482,22.64202],[80.96314,22.63742],[80.95941,22.63785],[80.95571,22.64112],[80.95528,22.64366],[80.94867,22.64736],[80.9509,22.6512],[80.95392,22.65069],[80.95456,22.65619],[80.95004,22.66413],[80.94389,22.66869],[80.94371,22.67379],[80.94044,22.68004],[80.9317,22.67798],[80.92283,22.67944],[80.92396,22.68444],[80.92297,22.69219],[80.92912,22.70798],[80.92789,22.70976],[80.91909,22.70898],[80.91659,22.71133],[80.91649,22.71413],[80.92687,22.73065],[80.94264,22.74434],[80.92489,22.75501],[80.91144,22.75628],[80.89858,22.76012],[80.87651,22.75758],[80.86761,22.75811],[80.87017,22.76671],[80.86995,22.78017],[80.87212,22.78878],[80.87031,22.80174],[80.86912,22.80458],[80.85462,22.80597],[80.85445,22.80732],[80.85775,22.8254],[80.86718,22.83439],[80.86735,22.8399],[80.8711,22.84662],[80.87012,22.84859],[80.84556,22.85086],[80.83051,22.84964],[80.82662,22.83299],[80.8165,22.83143],[80.79158,22.81898],[80.78501,22.82153],[80.78325,22.81965],[80.78087,22.82076],[80.77514,22.81472],[80.7638,22.81343],[80.74358,22.8159],[80.72997,22.81176],[80.72937,22.82465],[80.73188,22.83261],[80.72676,22.8329],[80.72871,22.83705],[80.73446,22.8357],[80.73726,22.83857],[80.73802,22.84196],[80.74275,22.84119],[80.74083,22.8468],[80.73808,22.84963],[80.73637,22.85645],[80.71846,22.86258],[80.71149,22.85713],[80.70887,22.85071],[80.70034,22.85065],[80.6961,22.85241],[80.69268,22.85634],[80.68857,22.8443],[80.68388,22.8513],[80.68195,22.84931],[80.68336,22.84317],[80.68181,22.83919],[80.67904,22.83653],[80.67376,22.83821],[80.67027,22.83633],[80.66709,22.84225],[80.66201,22.84311],[80.65525,22.84281],[80.651,22.83948],[80.64811,22.84506],[80.64826,22.84865],[80.63066,22.85522],[80.6122,22.85785],[80.58854,22.85668],[80.58895,22.86022],[80.5825,22.86309],[80.58228,22.86562],[80.5681,22.86992],[80.56832,22.87603],[80.56029,22.88047],[80.55609,22.87184],[80.55234,22.86955],[80.54419,22.86825],[80.53113,22.87231],[80.52343,22.87189],[80.52601,22.8745],[80.53801,22.90307],[80.53967,22.91946],[80.53151,22.93572],[80.51869,22.93845],[80.5132,22.94202],[80.50933,22.94726],[80.51279,22.95099],[80.51663,22.95226],[80.53165,22.94521],[80.53559,22.94577],[80.53832,22.94808],[80.54272,22.96106],[80.54555,22.96346],[80.55856,22.95807],[80.56796,22.95778],[80.57198,22.96213],[80.57612,22.97264],[80.57639,22.97637],[80.57156,22.97835],[80.57024,22.98488],[80.56673,22.98672],[80.55915,22.98722],[80.55897,22.98969],[80.55543,22.99373],[80.55583,22.99573],[80.55739,22.99428],[80.56509,22.99448],[80.56693,23.00526],[80.57,23.01417],[80.57181,23.01493],[80.5718,23.0214],[80.55975,23.03041],[80.55653,23.05754],[80.54929,23.07183],[80.55287,23.07435],[80.55274,23.08356],[80.55054,23.08409],[80.54941,23.07891],[80.54677,23.08042],[80.54269,23.07314],[80.5384,23.08065],[80.52932,23.08335],[80.52819,23.0779],[80.52582,23.07748],[80.52024,23.07849],[80.51646,23.07731],[80.50731,23.07985],[80.50734,23.08263],[80.50532,23.08397],[80.51228,23.09141],[80.51193,23.10703],[80.50057,23.10593],[80.49098,23.10714],[80.4886,23.116],[80.48682,23.11732],[80.48185,23.1156],[80.47938,23.11706],[80.47885,23.12605],[80.47457,23.12538],[80.47099,23.12205],[80.45824,23.12484],[80.46298,23.13174],[80.46201,23.14215],[80.45045,23.14297],[80.43599,23.14031],[80.42461,23.14204],[80.42288,23.14353],[80.42316,23.15292],[80.41999,23.15398],[80.41152,23.172],[80.40616,23.17226]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"416","area_level":"District","area_name":"Mandsaur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.76807,24.75854],[75.75683,24.76155],[75.74048,24.75502],[75.68372,24.7253],[75.65772,24.69299],[75.64596,24.68492],[75.60974,24.68081],[75.59967,24.69677],[75.59057,24.70578],[75.58457,24.7083],[75.58297,24.71326],[75.58097,24.71177],[75.57534,24.71219],[75.57479,24.70777],[75.56319,24.70736],[75.54884,24.70331],[75.55401,24.69996],[75.55942,24.69278],[75.56484,24.67728],[75.56928,24.67004],[75.59744,24.65492],[75.60851,24.6462],[75.60689,24.64067],[75.60266,24.63946],[75.58145,24.64223],[75.57687,24.6357],[75.57201,24.622],[75.57397,24.61715],[75.58344,24.61191],[75.58866,24.60621],[75.58415,24.58247],[75.5939,24.55415],[75.58993,24.51952],[75.57958,24.50332],[75.57439,24.50041],[75.56051,24.49689],[75.54812,24.48447],[75.53876,24.47958],[75.53262,24.47433],[75.51806,24.45938],[75.51169,24.44834],[75.48812,24.42421],[75.48568,24.41324],[75.47948,24.40479],[75.47307,24.39875],[75.46034,24.39277],[75.45756,24.38763],[75.45525,24.37731],[75.43521,24.36234],[75.42946,24.35609],[75.43008,24.33944],[75.42562,24.33343],[75.41607,24.32968],[75.39495,24.32949],[75.36527,24.31524],[75.36281,24.32034],[75.35674,24.32323],[75.35617,24.33131],[75.35153,24.33709],[75.34398,24.33796],[75.34181,24.33285],[75.33835,24.33209],[75.33368,24.33813],[75.31974,24.33307],[75.3159,24.33315],[75.31528,24.329],[75.31182,24.32868],[75.31099,24.31882],[75.30904,24.31724],[75.29231,24.31646],[75.28687,24.31799],[75.28216,24.31531],[75.28179,24.31857],[75.27828,24.31985],[75.2695,24.31424],[75.25968,24.31149],[75.25287,24.31555],[75.25099,24.31481],[75.25044,24.3113],[75.24745,24.31075],[75.24363,24.31556],[75.24132,24.3162],[75.23308,24.3121],[75.23004,24.30864],[75.22152,24.30734],[75.21541,24.30962],[75.20541,24.30862],[75.18961,24.31228],[75.17646,24.31832],[75.16537,24.31944],[75.15314,24.3298],[75.14481,24.32801],[75.13959,24.33058],[75.13239,24.3307],[75.12607,24.33331],[75.12343,24.33643],[75.12252,24.34251],[75.12784,24.34423],[75.13292,24.34817],[75.1162,24.35015],[75.11589,24.35616],[75.11239,24.3573],[75.08855,24.35619],[75.08255,24.34949],[75.07944,24.34026],[75.06466,24.33994],[75.06446,24.33388],[75.06291,24.33467],[75.06148,24.33066],[75.05866,24.32839],[75.05852,24.3257],[75.04167,24.32374],[75.04118,24.33133],[75.03905,24.33412],[75.04434,24.33355],[75.05589,24.35584],[75.0458,24.35926],[75.03705,24.36722],[75.02402,24.37047],[75.02252,24.37037],[75.02322,24.36488],[75.01315,24.36588],[75.01066,24.35686],[75.00721,24.35401],[75.00414,24.34773],[75.00486,24.34304],[74.99582,24.34041],[74.99766,24.33251],[74.9942,24.33252],[74.98793,24.34205],[74.98537,24.34202],[74.98303,24.33242],[74.97833,24.33712],[74.97878,24.33856],[74.97569,24.33731],[74.97515,24.32836],[74.97289,24.32212],[74.96713,24.31655],[74.95874,24.31623],[74.95854,24.30523],[74.95273,24.29633],[74.95491,24.29135],[74.96148,24.28391],[74.96315,24.27422],[74.96261,24.26696],[74.95363,24.25558],[74.94228,24.25141],[74.93646,24.24637],[74.93642,24.24291],[74.92998,24.23978],[74.92553,24.23517],[74.92557,24.22896],[74.91094,24.21792],[74.90917,24.21501],[74.91166,24.21198],[74.90654,24.20005],[74.90235,24.19723],[74.9018,24.19417],[74.89817,24.18975],[74.89447,24.19019],[74.8845,24.18224],[74.87975,24.17361],[74.88171,24.1731],[74.8821,24.17028],[74.88473,24.16994],[74.8865,24.16572],[74.88974,24.16545],[74.89064,24.16262],[74.89611,24.15795],[74.8954,24.15306],[74.90207,24.13899],[74.90124,24.12604],[74.90824,24.12124],[74.90352,24.1093],[74.90847,24.10462],[74.9152,24.10262],[74.91817,24.09806],[74.9177,24.09093],[74.92066,24.08685],[74.91874,24.08099],[74.92088,24.08024],[74.9209,24.07754],[74.92747,24.07439],[74.93239,24.07429],[74.94068,24.06992],[74.93839,24.06212],[74.93934,24.05392],[74.94579,24.0495],[74.95531,24.0486],[74.95535,24.04696],[74.96006,24.04603],[74.96057,24.03884],[74.96603,24.03894],[74.96843,24.041],[74.97405,24.04028],[74.97899,24.03672],[74.97868,24.03216],[74.9823,24.02541],[74.97647,24.02063],[74.97226,24.01326],[74.96482,24.00594],[74.96339,24.0022],[74.96315,23.99807],[74.96469,23.99583],[74.9625,23.98918],[74.96272,23.97874],[74.95914,23.97216],[74.9472,23.9626],[74.93075,23.95699],[74.92907,23.95444],[74.92824,23.9394],[74.92014,23.93522],[74.91625,23.93103],[74.92121,23.92413],[74.9209,23.91909],[74.91292,23.91107],[74.91049,23.90629],[74.90819,23.88162],[74.90262,23.87295],[74.90404,23.86925],[74.90367,23.85274],[74.90601,23.84807],[74.9124,23.84595],[74.91384,23.84168],[74.9089,23.83572],[74.91159,23.82614],[74.90854,23.82293],[74.90638,23.81583],[74.90676,23.80444],[74.90389,23.79849],[74.90371,23.79431],[74.92434,23.79662],[74.92848,23.78789],[74.93199,23.7842],[74.93531,23.77329],[74.93882,23.77013],[74.94036,23.76473],[74.94836,23.76536],[74.95584,23.76839],[74.96083,23.78253],[74.96559,23.7898],[74.96731,23.79889],[74.99577,23.79765],[74.99704,23.80242],[74.9991,23.80392],[75.00878,23.80533],[75.00989,23.81525],[75.01717,23.81487],[75.01905,23.81467],[75.02268,23.80695],[75.02093,23.7983],[75.02533,23.79111],[75.02675,23.78338],[75.03965,23.78293],[75.04086,23.78424],[75.0394,23.78496],[75.03948,23.78942],[75.05463,23.79078],[75.0581,23.79624],[75.05626,23.8057],[75.04773,23.81401],[75.05246,23.826],[75.06678,23.82359],[75.07835,23.82367],[75.07885,23.8219],[75.08499,23.8181],[75.09318,23.81668],[75.10019,23.8239],[75.10136,23.82921],[75.11552,23.8291],[75.1161,23.83652],[75.1207,23.85059],[75.12408,23.85005],[75.1288,23.84267],[75.13227,23.83099],[75.13716,23.83014],[75.13745,23.83218],[75.15282,23.83241],[75.15466,23.83106],[75.17117,23.83244],[75.18611,23.82939],[75.19994,23.82958],[75.21043,23.84073],[75.21119,23.84496],[75.21587,23.85145],[75.217,23.8581],[75.22624,23.85898],[75.22829,23.8604],[75.22824,23.86309],[75.23451,23.86413],[75.24195,23.86328],[75.24553,23.84886],[75.25177,23.84608],[75.25387,23.83674],[75.25647,23.83218],[75.2558,23.82284],[75.27023,23.82281],[75.27666,23.83405],[75.27465,23.83617],[75.27332,23.84093],[75.2742,23.84283],[75.28607,23.84786],[75.2925,23.85237],[75.29897,23.85247],[75.30187,23.84747],[75.30527,23.84645],[75.31132,23.84574],[75.31966,23.84767],[75.32382,23.8421],[75.33458,23.84062],[75.3355,23.83264],[75.33156,23.83057],[75.32968,23.82636],[75.3291,23.80535],[75.33248,23.80227],[75.33753,23.80157],[75.34453,23.80302],[75.34833,23.80614],[75.35187,23.81307],[75.35589,23.8334],[75.36477,23.85548],[75.36819,23.86211],[75.37505,23.86999],[75.3867,23.87668],[75.39574,23.87857],[75.41391,23.88593],[75.42566,23.89978],[75.43073,23.90832],[75.44716,23.90597],[75.45328,23.90803],[75.45725,23.91179],[75.45948,23.9186],[75.46004,23.93242],[75.46531,23.94753],[75.46885,23.97445],[75.47135,23.97904],[75.47503,23.98311],[75.48323,23.98755],[75.49311,23.9979],[75.50469,24.00596],[75.52105,24.02502],[75.53963,24.00906],[75.54822,24.00721],[75.56551,24.00768],[75.57235,23.99878],[75.57628,23.99716],[75.5758,23.99413],[75.57751,23.99414],[75.57953,23.99839],[75.581,23.99674],[75.58134,23.9914],[75.58791,23.99064],[75.59547,23.99447],[75.59552,23.99],[75.59802,23.99414],[75.60379,23.99545],[75.6071,23.99255],[75.61578,23.99659],[75.61977,23.99495],[75.62581,23.99639],[75.63,23.99505],[75.63502,23.99788],[75.64005,23.99789],[75.64108,24.00075],[75.64752,24.00351],[75.65163,24.00282],[75.65264,24.00397],[75.65049,24.00517],[75.6509,24.00631],[75.6546,24.00641],[75.6581,24.01024],[75.67434,24.01768],[75.67818,24.00731],[75.68772,24.00546],[75.68699,23.98877],[75.6925,23.98696],[75.69882,23.98784],[75.70173,23.96659],[75.71752,23.96686],[75.71828,23.96834],[75.72953,23.97025],[75.72893,23.97317],[75.73067,23.97678],[75.73621,23.97533],[75.74113,23.97694],[75.74145,23.98296],[75.74364,23.98629],[75.7434,23.98847],[75.74194,23.98864],[75.74225,23.99273],[75.75352,23.99098],[75.76534,23.99268],[75.76843,23.99753],[75.7685,24.00092],[75.76399,24.00537],[75.76266,24.00988],[75.77339,24.00787],[75.77677,24.01446],[75.77537,24.01411],[75.77528,24.01699],[75.78309,24.02214],[75.78057,24.03952],[75.78169,24.04253],[75.81045,24.04865],[75.81498,24.05154],[75.83672,24.05706],[75.83503,24.07351],[75.8357,24.09212],[75.81657,24.08547],[75.8057,24.09957],[75.79286,24.09185],[75.78762,24.0987],[75.78913,24.10419],[75.79089,24.10541],[75.7876,24.10479],[75.78327,24.10785],[75.78349,24.11409],[75.77864,24.11926],[75.77357,24.11899],[75.77003,24.11579],[75.76411,24.12119],[75.75449,24.11952],[75.74601,24.12127],[75.75162,24.14771],[75.75917,24.15547],[75.75871,24.15878],[75.76152,24.16209],[75.76031,24.16604],[75.76388,24.17],[75.76376,24.1745],[75.77394,24.18127],[75.77098,24.18897],[75.77259,24.19419],[75.7723,24.20103],[75.77563,24.20773],[75.77907,24.21047],[75.7928,24.21035],[75.7949,24.2147],[75.80737,24.21777],[75.80988,24.225],[75.80936,24.2297],[75.81568,24.22581],[75.81794,24.22947],[75.82365,24.22998],[75.83023,24.23376],[75.8255,24.23696],[75.81802,24.23872],[75.81798,24.24215],[75.81352,24.24537],[75.81474,24.24606],[75.81299,24.25047],[75.81922,24.25697],[75.81153,24.25774],[75.8142,24.2677],[75.81419,24.27128],[75.81257,24.27138],[75.81171,24.27528],[75.81319,24.27841],[75.81679,24.27837],[75.81844,24.28069],[75.81189,24.28549],[75.81365,24.28995],[75.81218,24.29331],[75.80893,24.29409],[75.81073,24.29609],[75.80652,24.29978],[75.80353,24.29843],[75.80183,24.30213],[75.78715,24.29872],[75.78581,24.29664],[75.76647,24.29802],[75.76096,24.3145],[75.75734,24.31925],[75.7488,24.32699],[75.73984,24.33215],[75.73822,24.33482],[75.74318,24.34005],[75.74212,24.34986],[75.7432,24.35168],[75.74075,24.35129],[75.73753,24.35356],[75.73997,24.36096],[75.73898,24.37824],[75.73787,24.38234],[75.73304,24.37787],[75.72925,24.3781],[75.72791,24.39641],[75.73158,24.39876],[75.74279,24.39773],[75.74322,24.39934],[75.74952,24.40097],[75.7499,24.40438],[75.75531,24.40653],[75.75469,24.4167],[75.75589,24.42066],[75.74759,24.42289],[75.7476,24.42418],[75.75786,24.43115],[75.76179,24.43086],[75.7632,24.43317],[75.76656,24.43431],[75.77132,24.44172],[75.7741,24.44191],[75.77339,24.4497],[75.78119,24.44962],[75.78606,24.45326],[75.78427,24.4579],[75.78534,24.46788],[75.7894,24.47153],[75.80335,24.46825],[75.81407,24.4613],[75.81445,24.45036],[75.80986,24.43404],[75.81689,24.42942],[75.82484,24.42731],[75.826,24.42343],[75.83557,24.41487],[75.83879,24.41418],[75.84201,24.41627],[75.84644,24.41574],[75.85706,24.41853],[75.86119,24.42155],[75.87509,24.42636],[75.87575,24.43037],[75.89037,24.43937],[75.90023,24.44222],[75.90306,24.44956],[75.90263,24.45379],[75.90906,24.45501],[75.90886,24.46218],[75.90539,24.47247],[75.91009,24.48309],[75.9117,24.49169],[75.90792,24.49237],[75.90393,24.49691],[75.90282,24.5046],[75.8881,24.50709],[75.88988,24.51014],[75.88966,24.51509],[75.89101,24.51478],[75.89053,24.51883],[75.90112,24.51879],[75.90588,24.51354],[75.91105,24.51368],[75.92055,24.52166],[75.92334,24.53518],[75.92059,24.53588],[75.9156,24.54301],[75.90419,24.5464],[75.90358,24.55098],[75.90525,24.55302],[75.90585,24.56276],[75.91219,24.56131],[75.91482,24.569],[75.91446,24.57225],[75.90645,24.57562],[75.89873,24.57628],[75.89412,24.57976],[75.87837,24.58339],[75.87219,24.59034],[75.87115,24.60666],[75.86284,24.60613],[75.86302,24.61003],[75.84924,24.61088],[75.84587,24.60948],[75.84579,24.60764],[75.84166,24.60702],[75.83747,24.59642],[75.83546,24.59495],[75.83253,24.59559],[75.83639,24.60615],[75.83275,24.60505],[75.82588,24.61073],[75.8247,24.61449],[75.82809,24.62043],[75.83716,24.6209],[75.83811,24.6231],[75.84181,24.62385],[75.84215,24.62625],[75.8447,24.62722],[75.8426,24.62808],[75.84627,24.63099],[75.84142,24.63494],[75.84097,24.63811],[75.84876,24.6474],[75.84691,24.65188],[75.84836,24.65749],[75.84691,24.66096],[75.84776,24.66302],[75.84126,24.66544],[75.83845,24.66863],[75.82494,24.66745],[75.82842,24.6722],[75.82853,24.67648],[75.83357,24.6882],[75.8378,24.71801],[75.83732,24.72505],[75.83413,24.72849],[75.8332,24.7323],[75.82646,24.73486],[75.80217,24.75646],[75.79797,24.75631],[75.78473,24.7618],[75.76807,24.75854]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"417","area_level":"District","area_name":"Morena","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.37276,26.86336],[78.36688,26.86786],[78.35832,26.86956],[78.34232,26.86643],[78.33149,26.86249],[78.30424,26.86245],[78.28726,26.85676],[78.27946,26.85222],[78.27312,26.84294],[78.27467,26.82324],[78.27246,26.81593],[78.26791,26.81358],[78.25824,26.81478],[78.24207,26.82503],[78.22525,26.83065],[78.21847,26.8292],[78.20211,26.82138],[78.17984,26.82553],[78.17353,26.82447],[78.16872,26.82039],[78.16727,26.81541],[78.16838,26.81283],[78.18047,26.80414],[78.18664,26.79609],[78.18761,26.78968],[78.18347,26.78365],[78.15619,26.78397],[78.14326,26.79117],[78.12629,26.79629],[78.11732,26.79633],[78.111,26.79363],[78.10596,26.78888],[78.10216,26.78149],[78.10122,26.77409],[78.10231,26.76633],[78.10609,26.76017],[78.11689,26.75662],[78.12169,26.75328],[78.12371,26.75],[78.12353,26.74688],[78.1184,26.74216],[78.11164,26.74064],[78.10808,26.73751],[78.10137,26.73709],[78.09593,26.7278],[78.09233,26.71864],[78.09616,26.68488],[78.09521,26.67927],[78.09267,26.67626],[78.07879,26.67044],[78.07409,26.6706],[78.05601,26.68363],[78.03437,26.68703],[78.03164,26.68631],[78.01796,26.6925],[78.00043,26.69486],[77.99604,26.69257],[77.98476,26.67481],[77.98012,26.67121],[77.95318,26.65894],[77.94303,26.65819],[77.93522,26.66024],[77.91367,26.66101],[77.90111,26.65744],[77.89752,26.65285],[77.89811,26.62315],[77.8967,26.61706],[77.89428,26.61471],[77.88577,26.61244],[77.85881,26.6136],[77.85066,26.61254],[77.83578,26.60615],[77.83206,26.59891],[77.82733,26.59605],[77.82704,26.59179],[77.83378,26.58238],[77.83568,26.57603],[77.83251,26.56147],[77.82201,26.54958],[77.81074,26.54719],[77.78371,26.55204],[77.76781,26.54758],[77.75748,26.53984],[77.74591,26.53875],[77.74029,26.52725],[77.73811,26.51421],[77.73374,26.5078],[77.72701,26.50232],[77.71331,26.49827],[77.69129,26.49964],[77.68024,26.50426],[77.67372,26.50283],[77.65984,26.49112],[77.65058,26.4879],[77.63332,26.47869],[77.62747,26.47242],[77.62297,26.46142],[77.61348,26.45272],[77.58903,26.44648],[77.57147,26.43645],[77.5624,26.43684],[77.55867,26.43518],[77.54633,26.41612],[77.53838,26.4113],[77.52146,26.40721],[77.48651,26.41082],[77.45968,26.40378],[77.44874,26.40461],[77.43735,26.40328],[77.43541,26.40114],[77.43481,26.39539],[77.43975,26.38465],[77.44622,26.37528],[77.44856,26.36753],[77.44567,26.36249],[77.44095,26.36081],[77.41161,26.36321],[77.39705,26.36078],[77.3904,26.35652],[77.37452,26.36572],[77.36685,26.36345],[77.35483,26.3545],[77.34212,26.35181],[77.33525,26.34134],[77.33059,26.34387],[77.32139,26.334],[77.31464,26.31872],[77.31762,26.31746],[77.3166,26.31147],[77.29843,26.29102],[77.27898,26.27596],[77.27105,26.26758],[77.25177,26.25978],[77.23089,26.24598],[77.2168,26.24004],[77.2133,26.2342],[77.21078,26.23271],[77.20389,26.22987],[77.19866,26.22999],[77.18005,26.23791],[77.17355,26.2388],[77.17105,26.23747],[77.16898,26.23275],[77.15391,26.23179],[77.13946,26.23421],[77.13472,26.23295],[77.12243,26.22559],[77.11458,26.21786],[77.12694,26.21022],[77.14717,26.19228],[77.14358,26.18858],[77.13574,26.17428],[77.14057,26.17285],[77.14172,26.16817],[77.14581,26.165],[77.15055,26.16432],[77.15421,26.16465],[77.15817,26.16928],[77.16573,26.17259],[77.16777,26.17149],[77.16848,26.17455],[77.17458,26.17558],[77.18061,26.17445],[77.17421,26.16976],[77.17603,26.16856],[77.1758,26.16552],[77.17737,26.16242],[77.18375,26.16224],[77.18417,26.15908],[77.18907,26.1554],[77.20088,26.14042],[77.2003,26.13142],[77.20198,26.1285],[77.199,26.12347],[77.20376,26.11768],[77.20817,26.10351],[77.21359,26.09867],[77.22638,26.09602],[77.23188,26.08884],[77.23379,26.07857],[77.23885,26.07904],[77.24242,26.083],[77.24881,26.08584],[77.25119,26.08471],[77.25355,26.08687],[77.25433,26.09176],[77.25889,26.09719],[77.25912,26.10385],[77.27702,26.12521],[77.29302,26.13122],[77.29937,26.13012],[77.30192,26.13313],[77.30648,26.13226],[77.3118,26.13436],[77.31132,26.13993],[77.31388,26.14282],[77.3198,26.14252],[77.32544,26.13913],[77.3319,26.14625],[77.34575,26.1414],[77.36185,26.14838],[77.38276,26.14842],[77.38438,26.14977],[77.38322,26.15425],[77.38488,26.15553],[77.38836,26.1561],[77.39275,26.1543],[77.39811,26.15533],[77.40326,26.15293],[77.41295,26.1444],[77.42628,26.13898],[77.42374,26.13329],[77.42639,26.12909],[77.4263,26.12347],[77.43001,26.12309],[77.43114,26.12466],[77.44263,26.11969],[77.44093,26.11515],[77.44438,26.1126],[77.44391,26.11149],[77.45038,26.10956],[77.45315,26.11023],[77.45335,26.10764],[77.45677,26.10413],[77.4657,26.10321],[77.46806,26.10073],[77.4675,26.09717],[77.47052,26.08974],[77.47691,26.08985],[77.48067,26.08824],[77.48372,26.08578],[77.48406,26.08242],[77.48764,26.07799],[77.49376,26.07407],[77.49877,26.06801],[77.50527,26.06473],[77.50996,26.06459],[77.50979,26.05356],[77.51627,26.05056],[77.51992,26.04531],[77.53261,26.04283],[77.53489,26.04065],[77.54311,26.038],[77.54861,26.03237],[77.55261,26.02402],[77.57028,26.02041],[77.57536,26.01471],[77.58121,26.01226],[77.58848,26.01276],[77.59169,26.01511],[77.59611,26.02101],[77.59801,26.02697],[77.59983,26.02702],[77.60732,26.03517],[77.61336,26.03614],[77.61186,26.03742],[77.61392,26.04378],[77.61074,26.04555],[77.61042,26.05967],[77.59977,26.06451],[77.60398,26.06927],[77.60868,26.07174],[77.61653,26.07177],[77.63411,26.08202],[77.64068,26.09293],[77.66417,26.09563],[77.66781,26.09154],[77.66668,26.08666],[77.66981,26.06903],[77.65289,26.06721],[77.64859,26.06809],[77.64334,26.06598],[77.63786,26.06697],[77.63492,26.07018],[77.63209,26.07004],[77.63664,26.06135],[77.63829,26.04883],[77.62613,26.0389],[77.62048,26.03743],[77.62137,26.03664],[77.61597,26.03181],[77.61492,26.02902],[77.61623,26.02112],[77.62542,26.01356],[77.64423,26.01287],[77.64525,26.01032],[77.64774,26.01076],[77.64852,26.00847],[77.65362,26.01011],[77.65133,26.00485],[77.65328,26.00309],[77.644,25.9911],[77.64628,25.9807],[77.64511,25.97582],[77.64717,25.97335],[77.64885,25.96169],[77.63967,25.95819],[77.61665,25.95643],[77.6081,25.95664],[77.60365,25.96069],[77.602,25.96024],[77.60047,25.95529],[77.57889,25.94648],[77.58294,25.94078],[77.57506,25.93889],[77.57076,25.93355],[77.56693,25.93317],[77.56507,25.92694],[77.56297,25.92882],[77.56275,25.93232],[77.55702,25.93578],[77.55184,25.93652],[77.54732,25.94146],[77.53821,25.94397],[77.53731,25.93456],[77.54131,25.92751],[77.54733,25.92352],[77.54535,25.92009],[77.54688,25.91535],[77.54293,25.91291],[77.54311,25.90888],[77.54424,25.90503],[77.5498,25.90031],[77.55026,25.90195],[77.55386,25.90214],[77.5535,25.90322],[77.55547,25.9],[77.55687,25.9016],[77.55869,25.90024],[77.55944,25.902],[77.56194,25.90033],[77.56969,25.90679],[77.57159,25.90538],[77.57431,25.90975],[77.5771,25.91026],[77.57688,25.90857],[77.57834,25.91055],[77.58938,25.9098],[77.58956,25.91161],[77.59536,25.91317],[77.59866,25.91628],[77.60727,25.91675],[77.60847,25.91832],[77.61212,25.91608],[77.6154,25.91825],[77.62729,25.91702],[77.65562,25.91013],[77.66133,25.91179],[77.68094,25.91293],[77.67571,25.9175],[77.67313,25.92952],[77.67784,25.9327],[77.67186,25.93781],[77.67215,25.9406],[77.67033,25.94325],[77.67203,25.95299],[77.66734,25.96533],[77.67763,25.98445],[77.70582,26.0058],[77.72127,26.03682],[77.72857,26.04645],[77.73313,26.04609],[77.74875,26.04016],[77.75929,26.03912],[77.76147,26.03704],[77.76787,26.04442],[77.77383,26.04653],[77.77568,26.04919],[77.77586,26.05355],[77.76678,26.07283],[77.76602,26.08061],[77.76043,26.0822],[77.77213,26.10948],[77.77254,26.11478],[77.76109,26.1172],[77.75655,26.11385],[77.75225,26.11343],[77.74528,26.11699],[77.74092,26.12213],[77.74198,26.13797],[77.74769,26.1445],[77.7434,26.16089],[77.74451,26.16288],[77.76144,26.172],[77.76332,26.17949],[77.77067,26.18191],[77.77138,26.20057],[77.78112,26.20953],[77.78245,26.21269],[77.78078,26.21642],[77.78152,26.21928],[77.79548,26.22589],[77.80676,26.24341],[77.81226,26.24682],[77.81588,26.25517],[77.82041,26.25287],[77.84531,26.24873],[77.84038,26.2445],[77.83557,26.23175],[77.8358,26.22824],[77.84938,26.21954],[77.84775,26.21299],[77.85669,26.21145],[77.86354,26.21227],[77.87362,26.21805],[77.87299,26.22458],[77.87561,26.23071],[77.88375,26.23093],[77.89285,26.22531],[77.90178,26.2311],[77.90463,26.24077],[77.90382,26.24377],[77.90623,26.24566],[77.90687,26.24917],[77.91233,26.25189],[77.948,26.2523],[77.95172,26.24146],[77.96226,26.25953],[77.98568,26.25027],[77.98794,26.24771],[77.98867,26.24276],[77.99548,26.24237],[77.99704,26.25484],[77.99216,26.25877],[77.98855,26.26516],[77.99181,26.2699],[77.99681,26.27229],[78.00602,26.27356],[78.01167,26.27231],[78.0016,26.28698],[78.00057,26.29282],[78.00272,26.3134],[78.00192,26.32107],[78.00523,26.3264],[78.00795,26.32019],[78.02835,26.30826],[78.03215,26.31224],[78.03842,26.31333],[78.04749,26.3135],[78.05245,26.31],[78.05521,26.31133],[78.05819,26.31739],[78.06496,26.31255],[78.06766,26.31297],[78.06839,26.31551],[78.06526,26.32086],[78.06785,26.32419],[78.07365,26.32513],[78.07521,26.3282],[78.07387,26.33179],[78.08133,26.33112],[78.09725,26.32362],[78.11041,26.32393],[78.11936,26.33881],[78.14763,26.33965],[78.15015,26.34151],[78.16132,26.33416],[78.16048,26.33199],[78.16326,26.32683],[78.166,26.32679],[78.16907,26.32901],[78.18075,26.32237],[78.18104,26.3208],[78.20116,26.3179],[78.2006,26.31339],[78.20276,26.31219],[78.20234,26.3077],[78.20424,26.30458],[78.21101,26.30324],[78.22817,26.30457],[78.22991,26.30311],[78.22954,26.305],[78.23196,26.30435],[78.23458,26.30709],[78.23155,26.30837],[78.23248,26.31029],[78.23767,26.30726],[78.24917,26.30818],[78.25782,26.3133],[78.26429,26.31428],[78.26481,26.31517],[78.25962,26.31719],[78.25506,26.32322],[78.25689,26.32889],[78.26454,26.33615],[78.26283,26.33797],[78.2675,26.34372],[78.26899,26.35306],[78.26464,26.35346],[78.2591,26.35889],[78.27217,26.37307],[78.27424,26.38103],[78.27671,26.37956],[78.27822,26.38194],[78.2818,26.38309],[78.29305,26.40466],[78.29448,26.41575],[78.28619,26.42206],[78.28694,26.432],[78.29133,26.43879],[78.27595,26.44405],[78.26949,26.43647],[78.25499,26.44198],[78.25846,26.4487],[78.25714,26.45006],[78.25835,26.45289],[78.261,26.45309],[78.26537,26.46395],[78.26073,26.46372],[78.25919,26.45892],[78.2528,26.45825],[78.24813,26.45906],[78.24709,26.46336],[78.24144,26.46351],[78.23932,26.47517],[78.23039,26.48126],[78.23419,26.49082],[78.22992,26.49464],[78.23074,26.49618],[78.22419,26.5012],[78.22314,26.5064],[78.22069,26.50799],[78.21879,26.51193],[78.22091,26.51353],[78.2213,26.51647],[78.21047,26.51926],[78.21399,26.52952],[78.21673,26.53138],[78.22098,26.53136],[78.22755,26.52627],[78.23615,26.5244],[78.24007,26.52555],[78.24255,26.52791],[78.24097,26.53157],[78.23782,26.53225],[78.23273,26.52895],[78.22925,26.53286],[78.23167,26.53764],[78.23747,26.53925],[78.23894,26.54562],[78.24482,26.54471],[78.25034,26.53878],[78.25859,26.54079],[78.26038,26.5393],[78.25899,26.53697],[78.25996,26.53456],[78.26728,26.53327],[78.27054,26.5369],[78.27023,26.54539],[78.2779,26.55662],[78.27769,26.55912],[78.27106,26.5626],[78.27097,26.5658],[78.27327,26.5672],[78.28092,26.56569],[78.27944,26.57513],[78.28065,26.57647],[78.28616,26.57595],[78.2896,26.57091],[78.29426,26.57819],[78.29682,26.59038],[78.30585,26.58787],[78.30386,26.58286],[78.30248,26.5685],[78.30537,26.56791],[78.31045,26.56129],[78.30814,26.55411],[78.31089,26.55046],[78.31556,26.54932],[78.32619,26.55185],[78.3402,26.54383],[78.34442,26.54489],[78.34521,26.54768],[78.34428,26.55017],[78.34046,26.55199],[78.33839,26.55915],[78.34237,26.56078],[78.35118,26.56038],[78.35169,26.56647],[78.35435,26.5709],[78.36318,26.56931],[78.36694,26.57064],[78.36796,26.57351],[78.36677,26.58411],[78.36998,26.58789],[78.37464,26.58805],[78.37597,26.58381],[78.37836,26.58288],[78.38958,26.58675],[78.39136,26.59406],[78.3885,26.59736],[78.38025,26.59827],[78.37885,26.60269],[78.3799,26.60413],[78.38898,26.6019],[78.40207,26.60255],[78.40788,26.59672],[78.41023,26.5897],[78.4183,26.59013],[78.42197,26.59457],[78.41479,26.59795],[78.41392,26.60155],[78.41545,26.60386],[78.42188,26.60215],[78.42266,26.60998],[78.42784,26.60835],[78.43406,26.6118],[78.42866,26.61291],[78.4262,26.61639],[78.43325,26.62546],[78.4358,26.62492],[78.43638,26.62128],[78.44074,26.62438],[78.43304,26.63106],[78.43502,26.63828],[78.44107,26.64119],[78.44087,26.64541],[78.44676,26.64546],[78.45003,26.64848],[78.45673,26.64658],[78.46195,26.65083],[78.46569,26.64861],[78.46781,26.64917],[78.46747,26.65413],[78.46347,26.65768],[78.46113,26.66326],[78.46367,26.66979],[78.45921,26.67106],[78.45964,26.67335],[78.46317,26.67411],[78.46802,26.67206],[78.46955,26.67913],[78.47124,26.67993],[78.47478,26.67902],[78.48255,26.67108],[78.48404,26.67246],[78.48288,26.67722],[78.48517,26.6787],[78.48725,26.67696],[78.48812,26.67081],[78.49447,26.66983],[78.50644,26.67769],[78.50831,26.6848],[78.51142,26.68629],[78.51506,26.68099],[78.51895,26.67933],[78.522,26.67533],[78.52689,26.67559],[78.52768,26.67836],[78.52288,26.682],[78.52237,26.68482],[78.5308,26.6896],[78.52563,26.69009],[78.52085,26.69396],[78.5227,26.69834],[78.5247,26.69912],[78.52251,26.70371],[78.52484,26.70686],[78.52486,26.71009],[78.52202,26.71067],[78.51338,26.72148],[78.51822,26.72578],[78.52557,26.73854],[78.53732,26.73222],[78.53909,26.73279],[78.53985,26.73466],[78.5377,26.73494],[78.53884,26.73711],[78.53428,26.73999],[78.53677,26.74128],[78.53888,26.75087],[78.54189,26.75162],[78.54318,26.75046],[78.54286,26.7524],[78.54068,26.75287],[78.5396,26.75729],[78.54523,26.76421],[78.52323,26.78031],[78.49779,26.78159],[78.47963,26.78703],[78.46624,26.78721],[78.46074,26.78876],[78.45317,26.79771],[78.44498,26.81325],[78.43429,26.82571],[78.42765,26.82537],[78.40555,26.81841],[78.39905,26.81848],[78.3929,26.8236],[78.38256,26.84065],[78.37276,26.86336]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"418","area_level":"District","area_name":"Narsimhapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.83614,23.24907],[78.8377,23.25269],[78.83323,23.25348],[78.8221,23.25055],[78.82043,23.24526],[78.81713,23.24251],[78.81199,23.24109],[78.80934,23.23559],[78.81165,23.23111],[78.81161,23.22685],[78.81625,23.22223],[78.81666,23.21405],[78.81179,23.20354],[78.80645,23.19726],[78.80681,23.19284],[78.80254,23.18395],[78.80243,23.17861],[78.80645,23.16309],[78.7992,23.15977],[78.80183,23.15687],[78.80093,23.15309],[78.80214,23.1462],[78.8011,23.14491],[78.79789,23.1452],[78.79667,23.14003],[78.79778,23.13393],[78.79122,23.12471],[78.79289,23.1207],[78.78807,23.11737],[78.79504,23.11277],[78.80095,23.11248],[78.80647,23.10874],[78.80213,23.105],[78.80209,23.10197],[78.80443,23.09974],[78.80103,23.09931],[78.80131,23.09444],[78.79702,23.08979],[78.79321,23.0908],[78.79069,23.08864],[78.77752,23.08876],[78.77549,23.08566],[78.77534,23.0801],[78.76902,23.08262],[78.76703,23.07576],[78.75748,23.07907],[78.75688,23.07674],[78.76134,23.07435],[78.75892,23.07051],[78.75577,23.07384],[78.75159,23.06748],[78.7432,23.06928],[78.74303,23.06741],[78.74721,23.06603],[78.74864,23.06058],[78.74377,23.06174],[78.73852,23.05874],[78.73183,23.04431],[78.7109,23.04156],[78.69309,23.0353],[78.67831,23.03847],[78.67037,23.03739],[78.663,23.03294],[78.65375,23.02394],[78.64838,23.02201],[78.64116,23.02301],[78.62897,23.02987],[78.62214,23.0305],[78.61731,23.02788],[78.61095,23.01895],[78.60077,23.01302],[78.59476,23.01138],[78.58767,23.0109],[78.57111,23.01556],[78.55701,23.01723],[78.54811,23.01592],[78.53502,23.01103],[78.51366,23.01203],[78.49562,23.00576],[78.47136,23.00597],[78.45912,23.00053],[78.44715,22.9898],[78.44443,22.9871],[78.44643,22.98545],[78.44316,22.9789],[78.44896,22.97413],[78.4554,22.9841],[78.45974,22.98618],[78.46613,22.98527],[78.47072,22.98024],[78.47183,22.97548],[78.46962,22.9735],[78.46082,22.9752],[78.46011,22.96837],[78.46202,22.9622],[78.46484,22.95884],[78.47039,22.95748],[78.47588,22.95884],[78.48326,22.96517],[78.49184,22.96651],[78.49769,22.96394],[78.5016,22.95425],[78.5064,22.94993],[78.51079,22.95006],[78.53257,22.96101],[78.53614,22.96113],[78.55763,22.95441],[78.56531,22.95721],[78.57121,22.9553],[78.57175,22.95263],[78.56874,22.94768],[78.56902,22.94373],[78.57273,22.93928],[78.5809,22.93603],[78.58337,22.93285],[78.58365,22.93031],[78.57899,22.92103],[78.58636,22.91185],[78.58842,22.90574],[78.58732,22.90193],[78.57746,22.8924],[78.57527,22.88757],[78.57596,22.88431],[78.58508,22.87394],[78.59295,22.87975],[78.59569,22.87911],[78.59925,22.8753],[78.59597,22.86755],[78.59021,22.86488],[78.57884,22.86957],[78.57665,22.86627],[78.57747,22.86207],[78.58652,22.85351],[78.59693,22.85377],[78.60296,22.85123],[78.60405,22.84779],[78.60145,22.83953],[78.60652,22.83134],[78.60296,22.82536],[78.59009,22.81774],[78.59036,22.81215],[78.60063,22.81164],[78.60885,22.81304],[78.62154,22.82027],[78.6266,22.81786],[78.62564,22.81137],[78.61812,22.80305],[78.61621,22.79809],[78.61922,22.79365],[78.62223,22.79339],[78.62579,22.79415],[78.63236,22.79962],[78.63661,22.80064],[78.63989,22.79898],[78.64167,22.79568],[78.64016,22.79085],[78.63345,22.78344],[78.63427,22.77531],[78.63084,22.76273],[78.63426,22.75701],[78.6407,22.75663],[78.64713,22.7631],[78.64727,22.77023],[78.64494,22.77594],[78.64577,22.77937],[78.64802,22.78101],[78.65436,22.77989],[78.65736,22.76997],[78.66257,22.76412],[78.6664,22.76577],[78.67133,22.77378],[78.67639,22.77746],[78.68345,22.77734],[78.69194,22.77212],[78.69804,22.76395],[78.69866,22.76012],[78.6882,22.74834],[78.67771,22.72668],[78.68124,22.71696],[78.68048,22.71324],[78.68784,22.71478],[78.69638,22.70993],[78.69398,22.70637],[78.68009,22.69832],[78.68176,22.67944],[78.68467,22.67136],[78.68399,22.66614],[78.6799,22.66397],[78.67971,22.66223],[78.68303,22.6579],[78.69417,22.65018],[78.70407,22.65337],[78.70976,22.65345],[78.72366,22.64525],[78.73019,22.63791],[78.72868,22.62765],[78.73325,22.62428],[78.74078,22.62671],[78.74067,22.61948],[78.75501,22.61754],[78.76068,22.6176],[78.76184,22.61885],[78.76604,22.61661],[78.76721,22.61835],[78.7709,22.61751],[78.78043,22.6224],[78.78418,22.63031],[78.78165,22.64151],[78.77543,22.64701],[78.79305,22.65059],[78.79893,22.64863],[78.80562,22.65221],[78.80844,22.65085],[78.81074,22.65323],[78.81513,22.65289],[78.81768,22.65567],[78.82348,22.65616],[78.82113,22.66304],[78.82803,22.66101],[78.83459,22.66646],[78.83921,22.668],[78.83816,22.67191],[78.83946,22.68168],[78.84989,22.68432],[78.85557,22.67834],[78.8848,22.67873],[78.89984,22.67625],[78.90337,22.67301],[78.91853,22.67204],[78.92292,22.66746],[78.92359,22.66398],[78.92284,22.65925],[78.921,22.65788],[78.92334,22.65522],[78.91938,22.65292],[78.92242,22.64942],[78.92413,22.64956],[78.93095,22.63692],[78.93889,22.63555],[78.94746,22.62833],[78.95621,22.62857],[78.9585,22.62637],[78.96426,22.62624],[78.96559,22.62979],[78.96931,22.62974],[78.97048,22.63326],[78.97368,22.63224],[78.97752,22.63606],[78.98037,22.63367],[78.9848,22.63715],[78.99655,22.63517],[78.99777,22.64022],[79.0015,22.64044],[79.00512,22.64455],[79.01169,22.64424],[79.00717,22.64869],[79.01019,22.65204],[79.00388,22.65305],[79.00284,22.65455],[79.01204,22.65993],[79.01409,22.65681],[79.01735,22.65561],[79.01869,22.65666],[79.01855,22.66135],[79.0102,22.66736],[79.01692,22.66884],[79.01634,22.67677],[79.01058,22.68277],[79.01136,22.6841],[79.01668,22.68452],[79.017,22.68679],[79.01136,22.69053],[79.00504,22.69049],[79.004,22.69259],[79.00485,22.69552],[79.01363,22.70045],[79.0242,22.702],[79.02853,22.70781],[79.02724,22.70924],[79.0219,22.70831],[79.01834,22.7134],[79.01308,22.71636],[79.01505,22.72125],[79.0123,22.72519],[79.0127,22.72738],[79.02776,22.72767],[79.02225,22.73224],[79.01718,22.73305],[79.01779,22.74063],[79.03059,22.74514],[79.03147,22.74898],[79.03612,22.75272],[79.042,22.75359],[79.04281,22.75962],[79.05652,22.75489],[79.06413,22.75856],[79.06669,22.75406],[79.06879,22.7533],[79.06847,22.74968],[79.07596,22.75003],[79.07354,22.74744],[79.07449,22.74427],[79.08341,22.74747],[79.08926,22.74247],[79.09618,22.75733],[79.10161,22.75824],[79.10631,22.76162],[79.11563,22.76462],[79.11882,22.76381],[79.12291,22.76532],[79.123,22.76835],[79.12558,22.77102],[79.12328,22.77227],[79.12644,22.77354],[79.12765,22.77675],[79.12707,22.78354],[79.13021,22.78412],[79.13097,22.78648],[79.1382,22.79136],[79.14865,22.78877],[79.15379,22.79049],[79.1568,22.79414],[79.16199,22.79309],[79.16497,22.79517],[79.17002,22.78856],[79.17468,22.78682],[79.17835,22.78746],[79.18575,22.79835],[79.19204,22.79721],[79.19288,22.80329],[79.19093,22.80505],[79.19241,22.809],[79.19694,22.80728],[79.19903,22.8101],[79.20283,22.81151],[79.20668,22.81063],[79.21783,22.81312],[79.22271,22.81121],[79.22222,22.81532],[79.22659,22.81238],[79.22877,22.81688],[79.2303,22.8148],[79.23262,22.81507],[79.23125,22.80948],[79.24055,22.80334],[79.23805,22.7922],[79.24388,22.78395],[79.24293,22.78077],[79.24737,22.77175],[79.24179,22.76811],[79.24141,22.7609],[79.24436,22.75191],[79.2554,22.749],[79.25855,22.74517],[79.26276,22.74466],[79.26257,22.7372],[79.25998,22.73299],[79.25443,22.72675],[79.24741,22.72215],[79.24323,22.72152],[79.24391,22.719],[79.24858,22.7174],[79.26008,22.70243],[79.25871,22.69169],[79.26593,22.69322],[79.26434,22.68716],[79.2732,22.69512],[79.28935,22.69542],[79.2908,22.68787],[79.29642,22.6839],[79.29713,22.68184],[79.29318,22.67468],[79.28754,22.67236],[79.28392,22.65621],[79.28684,22.65008],[79.28575,22.6483],[79.30391,22.64779],[79.3061,22.64517],[79.30646,22.64136],[79.30617,22.63704],[79.30053,22.63117],[79.2962,22.62049],[79.30758,22.6162],[79.31406,22.61783],[79.31871,22.61533],[79.3243,22.6162],[79.33539,22.62162],[79.33725,22.62672],[79.33609,22.6381],[79.34124,22.63406],[79.34874,22.64177],[79.35889,22.64388],[79.36208,22.64273],[79.36537,22.65029],[79.36963,22.6542],[79.38094,22.6589],[79.37605,22.66272],[79.37842,22.66854],[79.38839,22.66999],[79.38966,22.67281],[79.39231,22.6736],[79.39123,22.67638],[79.39365,22.6779],[79.39396,22.68066],[79.40136,22.68497],[79.40311,22.69798],[79.402,22.69888],[79.3997,22.69676],[79.39907,22.69902],[79.39414,22.70205],[79.39795,22.70441],[79.40009,22.70177],[79.40294,22.70554],[79.40639,22.70574],[79.41346,22.71186],[79.41384,22.71509],[79.40956,22.72067],[79.42375,22.72535],[79.43094,22.72505],[79.43519,22.72314],[79.44582,22.72794],[79.45441,22.72799],[79.45662,22.73041],[79.46027,22.72992],[79.46496,22.73683],[79.46613,22.74147],[79.46902,22.74204],[79.47557,22.73842],[79.47106,22.7346],[79.47212,22.7244],[79.48791,22.7307],[79.50656,22.72392],[79.50983,22.72126],[79.51647,22.72294],[79.51995,22.73431],[79.51683,22.7356],[79.51646,22.74118],[79.52361,22.75161],[79.51938,22.75248],[79.51577,22.75],[79.51169,22.7499],[79.50919,22.75102],[79.50842,22.75388],[79.519,22.76222],[79.51414,22.77182],[79.51543,22.778],[79.52783,22.78529],[79.53167,22.79381],[79.53902,22.79734],[79.54415,22.80461],[79.54463,22.81451],[79.54087,22.81712],[79.56595,22.83147],[79.57307,22.831],[79.57691,22.83339],[79.57821,22.83942],[79.58773,22.84453],[79.5875,22.85415],[79.59754,22.85841],[79.59747,22.86643],[79.60315,22.86473],[79.60648,22.86],[79.61219,22.85994],[79.6217,22.86887],[79.62497,22.87435],[79.62582,22.87705],[79.6222,22.88878],[79.62536,22.89622],[79.62078,22.90688],[79.61332,22.91747],[79.60002,22.91375],[79.59543,22.9286],[79.59152,22.93393],[79.59083,22.94211],[79.59624,22.94848],[79.5979,22.94587],[79.59899,22.94853],[79.60273,22.95029],[79.62247,22.95555],[79.6243,22.96046],[79.6227,22.96784],[79.63824,22.9708],[79.63785,22.97314],[79.64032,22.97268],[79.64317,22.97871],[79.63511,22.98464],[79.63318,22.98814],[79.6283,22.98977],[79.6274,22.99328],[79.6229,22.99458],[79.61512,22.99258],[79.61646,23.00319],[79.61515,23.00469],[79.60901,23.00519],[79.60564,23.00996],[79.60618,23.01362],[79.60935,23.01713],[79.60886,23.01956],[79.6044,23.0196],[79.60129,23.02211],[79.59309,23.02039],[79.59036,23.02252],[79.59207,23.02661],[79.59727,23.03063],[79.59888,23.03403],[79.59842,23.03874],[79.59391,23.04337],[79.59485,23.04769],[79.59972,23.05288],[79.5964,23.05944],[79.60109,23.06478],[79.60621,23.06572],[79.60821,23.06774],[79.60641,23.07616],[79.60844,23.08826],[79.60583,23.08724],[79.60538,23.08441],[79.60242,23.08341],[79.60029,23.09187],[79.60323,23.09284],[79.6136,23.09044],[79.61351,23.09482],[79.60765,23.09865],[79.60924,23.1009],[79.61495,23.10321],[79.6157,23.10535],[79.60503,23.10706],[79.59583,23.11075],[79.58173,23.11206],[79.5799,23.11436],[79.57756,23.12636],[79.57434,23.13241],[79.5714,23.13446],[79.54445,23.13966],[79.53507,23.13976],[79.52006,23.1435],[79.51427,23.1428],[79.50691,23.13859],[79.49853,23.13002],[79.48077,23.11876],[79.46983,23.10623],[79.46273,23.10019],[79.45815,23.0983],[79.45313,23.09877],[79.44119,23.10664],[79.43485,23.10818],[79.40348,23.1002],[79.39855,23.10187],[79.38815,23.11116],[79.38176,23.11302],[79.37806,23.11282],[79.36186,23.10601],[79.34682,23.10735],[79.35204,23.11382],[79.35365,23.12684],[79.35792,23.13047],[79.35243,23.13544],[79.35189,23.13949],[79.35659,23.1441],[79.36469,23.14808],[79.37356,23.15647],[79.37325,23.16446],[79.37088,23.16743],[79.36522,23.16511],[79.36386,23.17034],[79.35534,23.17128],[79.35637,23.16439],[79.35474,23.15895],[79.35195,23.15566],[79.33721,23.15077],[79.33205,23.15048],[79.33209,23.1545],[79.33487,23.1594],[79.32282,23.17078],[79.31755,23.17919],[79.32154,23.18726],[79.32118,23.18969],[79.31644,23.19838],[79.31288,23.21317],[79.3061,23.22398],[79.30697,23.23146],[79.30541,23.23248],[79.29834,23.22811],[79.29246,23.22138],[79.26805,23.21651],[79.27029,23.23553],[79.2617,23.24583],[79.24714,23.24842],[79.24414,23.25075],[79.23099,23.25142],[79.23239,23.24019],[79.22933,23.23681],[79.22778,23.22579],[79.22089,23.22745],[79.21917,23.23003],[79.216,23.22872],[79.21139,23.23076],[79.20751,23.23873],[79.20509,23.24014],[79.2018,23.23985],[79.19733,23.24189],[79.19558,23.24067],[79.19541,23.23272],[79.19261,23.2245],[79.18995,23.22308],[79.18769,23.21421],[79.18901,23.2059],[79.19227,23.20443],[79.19841,23.19727],[79.19863,23.19463],[79.18838,23.19216],[79.18687,23.19365],[79.18943,23.19589],[79.18672,23.19953],[79.1774,23.19361],[79.16614,23.18986],[79.16365,23.18772],[79.1657,23.18371],[79.16368,23.18116],[79.166,23.17666],[79.15342,23.17941],[79.14832,23.17242],[79.14934,23.1676],[79.14254,23.16629],[79.14202,23.16786],[79.14008,23.1678],[79.13881,23.17446],[79.13592,23.17311],[79.12514,23.17572],[79.12399,23.17186],[79.11814,23.16627],[79.11502,23.16541],[79.10836,23.16717],[79.11358,23.16682],[79.11604,23.16923],[79.11365,23.17551],[79.11677,23.18003],[79.11206,23.18705],[79.10827,23.18103],[79.10799,23.18455],[79.10975,23.18693],[79.1066,23.18916],[79.1066,23.19595],[79.10396,23.19799],[79.10753,23.20158],[79.10571,23.20668],[79.10393,23.20636],[79.10404,23.20368],[79.09524,23.20395],[79.09171,23.19486],[79.09012,23.20023],[79.08726,23.20048],[79.08428,23.19814],[79.0831,23.2046],[79.07582,23.20246],[79.07163,23.20578],[79.06676,23.20129],[79.06448,23.1944],[79.06216,23.19592],[79.05727,23.19447],[79.05167,23.19896],[79.04511,23.19628],[79.03452,23.19734],[79.03101,23.19538],[79.02853,23.19715],[79.02591,23.19361],[79.02324,23.19293],[79.02188,23.19372],[79.02314,23.19486],[79.0219,23.1991],[79.01174,23.20419],[79.00729,23.20896],[79.00397,23.20848],[78.99985,23.21062],[78.99596,23.21698],[78.99452,23.21701],[78.99307,23.21424],[78.99338,23.21148],[78.98301,23.20506],[78.98031,23.2005],[78.97311,23.20446],[78.97355,23.20747],[78.97145,23.21189],[78.96458,23.21172],[78.96262,23.21476],[78.95982,23.21236],[78.95405,23.21675],[78.95129,23.21154],[78.94852,23.21283],[78.94354,23.20941],[78.94821,23.21556],[78.9473,23.22184],[78.94514,23.22706],[78.93983,23.23015],[78.93846,23.23379],[78.93087,23.23195],[78.9264,23.22802],[78.91626,23.22307],[78.9073,23.22705],[78.90668,23.22412],[78.90251,23.22205],[78.89804,23.21639],[78.8975,23.21247],[78.89145,23.21646],[78.87621,23.21813],[78.8702,23.22438],[78.85878,23.22261],[78.85276,23.22583],[78.84865,23.22507],[78.84592,23.2356],[78.84827,23.23743],[78.84638,23.24247],[78.83982,23.24869],[78.83614,23.24907]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"419","area_level":"District","area_name":"Neemuch","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.27205,25.04034],[75.26838,25.04244],[75.26495,25.0419],[75.2539,25.03949],[75.25,25.0358],[75.24504,25.03502],[75.23012,25.03705],[75.22512,25.0341],[75.22053,25.03704],[75.21784,25.03488],[75.20537,25.03947],[75.19974,25.03667],[75.19859,25.03327],[75.155,25.03399],[75.15337,25.0327],[75.15173,25.02913],[75.15163,25.02036],[75.15673,25.02112],[75.16388,25.01664],[75.16857,25.00593],[75.16613,25.00592],[75.16633,25.00288],[75.15868,25.0011],[75.15582,24.99364],[75.15312,24.99475],[75.15177,24.98907],[75.14186,24.98993],[75.13936,24.98566],[75.13723,24.98619],[75.13219,24.98361],[75.13023,24.97962],[75.13845,24.97985],[75.14149,24.97818],[75.13559,24.97604],[75.12757,24.96788],[75.11356,24.96681],[75.11508,24.94387],[75.11412,24.93644],[75.11837,24.9256],[75.11677,24.9218],[75.11643,24.91059],[75.11949,24.91018],[75.11592,24.90621],[75.11324,24.89971],[75.11334,24.89724],[75.1161,24.89706],[75.11741,24.89501],[75.1144,24.89277],[75.11625,24.8919],[75.11853,24.88525],[75.11892,24.8823],[75.11693,24.87826],[75.11249,24.87852],[75.09849,24.87245],[75.08719,24.87079],[75.08821,24.87871],[75.07653,24.88068],[75.06544,24.86802],[75.06386,24.86769],[75.06277,24.87148],[75.05531,24.87189],[75.05548,24.86983],[75.05936,24.86688],[75.05993,24.86361],[75.05659,24.86214],[75.04896,24.85048],[75.04145,24.84921],[75.04196,24.84697],[75.03406,24.84459],[75.02099,24.84857],[75.01476,24.854],[75.00831,24.85642],[75.00157,24.85612],[74.99388,24.85346],[74.99218,24.85457],[74.98491,24.8533],[74.98402,24.85685],[74.98057,24.85865],[74.96811,24.85612],[74.95866,24.85819],[74.95676,24.8607],[74.94821,24.86457],[74.95193,24.87416],[74.9519,24.87646],[74.95088,24.87601],[74.95261,24.88068],[74.94925,24.88145],[74.94498,24.87891],[74.94108,24.8794],[74.94128,24.8807],[74.93223,24.88131],[74.93159,24.8754],[74.9267,24.87981],[74.9239,24.8783],[74.92066,24.88487],[74.91553,24.88759],[74.91041,24.89437],[74.91638,24.90729],[74.913,24.90869],[74.91334,24.91618],[74.9078,24.91829],[74.90245,24.93],[74.89195,24.92974],[74.88785,24.93755],[74.8807,24.93736],[74.87939,24.92998],[74.86948,24.92497],[74.86571,24.93502],[74.86258,24.95318],[74.85911,24.95579],[74.85942,24.96158],[74.85756,24.96389],[74.85176,24.96707],[74.84815,24.96614],[74.84263,24.96885],[74.83322,24.95972],[74.83386,24.94413],[74.82638,24.93352],[74.82653,24.92451],[74.82489,24.92291],[74.82529,24.90015],[74.83074,24.88693],[74.83748,24.88726],[74.84037,24.88482],[74.84657,24.8605],[74.84997,24.85737],[74.85107,24.85129],[74.85851,24.83962],[74.86085,24.82246],[74.85953,24.80771],[74.86152,24.80414],[74.8387,24.79804],[74.8405,24.78974],[74.84832,24.77967],[74.84937,24.77613],[74.86017,24.77942],[74.86094,24.78543],[74.85911,24.79588],[74.86043,24.79849],[74.87932,24.79738],[74.88042,24.78941],[74.89211,24.7836],[74.90671,24.78183],[74.91042,24.77042],[74.91453,24.7692],[74.92129,24.7707],[74.93089,24.7791],[74.93739,24.77836],[74.94061,24.77474],[74.94798,24.77199],[74.95343,24.77368],[74.96477,24.76932],[74.96915,24.77061],[74.97202,24.76378],[74.97562,24.76369],[74.98171,24.76412],[74.98441,24.76883],[74.99041,24.76923],[74.99912,24.77475],[75.00149,24.77452],[75.00693,24.77125],[75.01515,24.74012],[75.0144,24.7347],[75.01603,24.73212],[74.99239,24.73175],[74.99388,24.72601],[74.99193,24.69322],[75.00046,24.69184],[75.00172,24.68642],[74.99339,24.68281],[74.98305,24.68195],[74.97631,24.67875],[74.96019,24.67777],[74.96489,24.67029],[74.96076,24.66547],[74.96228,24.65642],[74.96128,24.65604],[74.95855,24.66093],[74.95646,24.65579],[74.95302,24.65374],[74.95403,24.65196],[74.9513,24.64724],[74.94976,24.64972],[74.94741,24.64572],[74.94382,24.64809],[74.9422,24.64714],[74.9441,24.6419],[74.94309,24.6378],[74.9408,24.64059],[74.93915,24.63795],[74.93704,24.63801],[74.93601,24.63979],[74.92917,24.63546],[74.92493,24.63791],[74.91976,24.63625],[74.91724,24.63777],[74.91386,24.637],[74.91149,24.63885],[74.90945,24.63792],[74.90526,24.64087],[74.90136,24.63704],[74.90182,24.63281],[74.89811,24.63757],[74.89861,24.64186],[74.89498,24.64394],[74.89249,24.64249],[74.89402,24.6418],[74.89398,24.63781],[74.88908,24.63383],[74.88323,24.63822],[74.88439,24.64142],[74.8782,24.64681],[74.87655,24.64285],[74.87323,24.64647],[74.87378,24.64968],[74.87166,24.6505],[74.87139,24.65255],[74.87558,24.65266],[74.86837,24.65741],[74.86869,24.66305],[74.86489,24.66549],[74.86499,24.66962],[74.86355,24.66965],[74.86077,24.67436],[74.85796,24.67436],[74.86014,24.67894],[74.85938,24.68284],[74.8525,24.68422],[74.85309,24.67818],[74.8515,24.67767],[74.85018,24.6842],[74.8545,24.68765],[74.84948,24.68791],[74.84639,24.69623],[74.8481,24.69977],[74.84373,24.6987],[74.83583,24.70674],[74.83689,24.70773],[74.82985,24.72042],[74.83044,24.72777],[74.82321,24.73504],[74.8161,24.74801],[74.81441,24.76064],[74.8088,24.78105],[74.79978,24.77907],[74.79921,24.76377],[74.80397,24.73397],[74.78909,24.7318],[74.78484,24.72814],[74.78211,24.72881],[74.7796,24.73245],[74.78761,24.70418],[74.78451,24.70171],[74.78431,24.69176],[74.78074,24.68419],[74.7777,24.68132],[74.77194,24.66148],[74.77428,24.65948],[74.78055,24.6605],[74.78169,24.65818],[74.78394,24.65775],[74.79022,24.65987],[74.79075,24.66508],[74.798,24.66397],[74.80072,24.6666],[74.80359,24.66536],[74.81458,24.66575],[74.81367,24.65932],[74.81626,24.65855],[74.81414,24.65018],[74.81175,24.65205],[74.80631,24.6484],[74.80294,24.6342],[74.79652,24.63467],[74.79128,24.63178],[74.79021,24.62228],[74.79174,24.61977],[74.78575,24.61929],[74.7794,24.61544],[74.78075,24.60536],[74.78282,24.60542],[74.78333,24.59436],[74.78596,24.59416],[74.78643,24.58593],[74.78063,24.58569],[74.77813,24.58147],[74.76685,24.57856],[74.76684,24.57967],[74.7601,24.57944],[74.76007,24.57766],[74.7582,24.57716],[74.75278,24.57964],[74.75198,24.57743],[74.75329,24.57435],[74.74915,24.57464],[74.74351,24.57146],[74.75359,24.5536],[74.75275,24.54408],[74.75553,24.53488],[74.74422,24.53231],[74.74358,24.52748],[74.7458,24.52535],[74.74653,24.51969],[74.74463,24.51346],[74.72467,24.51318],[74.72478,24.51204],[74.71814,24.50898],[74.71216,24.50046],[74.70873,24.48647],[74.72036,24.48916],[74.72795,24.48908],[74.7317,24.4808],[74.74432,24.47372],[74.74609,24.46978],[74.74815,24.46992],[74.75012,24.4667],[74.76566,24.46677],[74.76942,24.46321],[74.77714,24.4605],[74.78694,24.47224],[74.80618,24.4671],[74.81535,24.46847],[74.82176,24.45311],[74.81899,24.45269],[74.81375,24.43674],[74.83009,24.43514],[74.83228,24.43836],[74.83188,24.4421],[74.83393,24.44318],[74.84136,24.44101],[74.84713,24.44244],[74.85141,24.4456],[74.85387,24.44453],[74.85523,24.4409],[74.85381,24.43432],[74.85548,24.42553],[74.8474,24.4204],[74.83977,24.40814],[74.83498,24.40649],[74.83024,24.40152],[74.82519,24.40002],[74.82492,24.38826],[74.82259,24.37959],[74.81731,24.37949],[74.81096,24.38254],[74.80726,24.38083],[74.80842,24.37655],[74.80107,24.36437],[74.80199,24.35855],[74.79406,24.35126],[74.79089,24.34486],[74.78118,24.33834],[74.77886,24.32386],[74.78314,24.31935],[74.78366,24.31451],[74.78075,24.30599],[74.78141,24.28945],[74.77515,24.28242],[74.77461,24.27805],[74.76561,24.27276],[74.74716,24.25515],[74.75,24.24868],[74.75435,24.24455],[74.75432,24.24217],[74.75874,24.24328],[74.76921,24.23935],[74.77636,24.23873],[74.78687,24.23975],[74.79504,24.24316],[74.81189,24.24414],[74.82328,24.23982],[74.83332,24.23986],[74.83926,24.23727],[74.84999,24.23667],[74.86758,24.24309],[74.87792,24.23782],[74.88714,24.22969],[74.8971,24.22729],[74.89802,24.21434],[74.90577,24.21305],[74.91008,24.2102],[74.91159,24.2124],[74.90917,24.21501],[74.91094,24.21792],[74.92557,24.22896],[74.92509,24.23392],[74.92897,24.239],[74.93642,24.24291],[74.93646,24.24637],[74.94228,24.25141],[74.95363,24.25558],[74.96261,24.26696],[74.96315,24.27422],[74.96148,24.28391],[74.9526,24.29529],[74.95854,24.30523],[74.95874,24.31623],[74.96516,24.31588],[74.97058,24.31932],[74.97475,24.32665],[74.97569,24.33731],[74.97878,24.33856],[74.97833,24.33712],[74.98303,24.33242],[74.98537,24.34202],[74.98976,24.34042],[74.9942,24.33252],[74.99766,24.33251],[74.99582,24.34041],[75.00486,24.34304],[75.00414,24.34773],[75.00721,24.35401],[75.01066,24.35686],[75.01315,24.36588],[75.02322,24.36488],[75.02252,24.37037],[75.03705,24.36722],[75.0458,24.35926],[75.05589,24.35584],[75.04434,24.33355],[75.03905,24.33412],[75.04118,24.33133],[75.04167,24.32374],[75.05852,24.3257],[75.05866,24.32839],[75.06148,24.33066],[75.06291,24.33467],[75.06446,24.33388],[75.06466,24.33994],[75.07944,24.34026],[75.08255,24.34949],[75.08855,24.35619],[75.10773,24.35746],[75.11589,24.35616],[75.1162,24.35015],[75.1326,24.34866],[75.13178,24.34661],[75.12252,24.34251],[75.12343,24.33643],[75.12607,24.33331],[75.13239,24.3307],[75.13959,24.33058],[75.14481,24.32801],[75.15314,24.3298],[75.16537,24.31944],[75.17646,24.31832],[75.18961,24.31228],[75.20541,24.30862],[75.21541,24.30962],[75.22152,24.30734],[75.23004,24.30864],[75.23308,24.3121],[75.24132,24.3162],[75.24363,24.31556],[75.24745,24.31075],[75.25044,24.3113],[75.25099,24.31481],[75.25287,24.31555],[75.25968,24.31149],[75.2695,24.31424],[75.27828,24.31985],[75.28179,24.31857],[75.28216,24.31531],[75.28687,24.31799],[75.29231,24.31646],[75.30904,24.31724],[75.31099,24.31882],[75.31182,24.32868],[75.31528,24.329],[75.3159,24.33315],[75.31974,24.33307],[75.33368,24.33813],[75.33835,24.33209],[75.34181,24.33285],[75.34398,24.33796],[75.35153,24.33709],[75.35617,24.33131],[75.35674,24.32323],[75.36281,24.32034],[75.36527,24.31524],[75.39604,24.3298],[75.41763,24.33],[75.42906,24.33654],[75.43018,24.34169],[75.42911,24.35485],[75.43077,24.35786],[75.45525,24.37731],[75.45756,24.38763],[75.46034,24.39277],[75.47307,24.39875],[75.47948,24.40479],[75.48568,24.41324],[75.48812,24.42421],[75.51169,24.44834],[75.51545,24.45584],[75.52285,24.46462],[75.53876,24.47958],[75.54812,24.48447],[75.56051,24.49689],[75.57439,24.50041],[75.57958,24.50332],[75.58993,24.51952],[75.5939,24.55415],[75.58415,24.58247],[75.58866,24.60621],[75.58344,24.61191],[75.57397,24.61715],[75.57201,24.622],[75.57687,24.6357],[75.58145,24.64223],[75.60266,24.63946],[75.60689,24.64067],[75.60851,24.6462],[75.59744,24.65492],[75.56928,24.67004],[75.56484,24.67728],[75.55942,24.69278],[75.55401,24.69996],[75.54967,24.70306],[75.54184,24.7046],[75.53343,24.71205],[75.53025,24.70948],[75.51835,24.70588],[75.50633,24.69993],[75.48941,24.68665],[75.45519,24.68044],[75.43063,24.68259],[75.3918,24.69038],[75.3707,24.69239],[75.34904,24.7008],[75.32995,24.70298],[75.3204,24.7024],[75.28419,24.70892],[75.26853,24.71475],[75.2649,24.71751],[75.2517,24.7136],[75.24155,24.71344],[75.22838,24.71762],[75.22451,24.71516],[75.21944,24.70255],[75.20807,24.71934],[75.20404,24.73137],[75.19764,24.74325],[75.18763,24.74374],[75.18701,24.7475],[75.18446,24.74844],[75.19037,24.75341],[75.19291,24.77357],[75.20542,24.76946],[75.20811,24.77161],[75.20497,24.77045],[75.20158,24.77174],[75.20745,24.7812],[75.2047,24.7856],[75.20694,24.78837],[75.20727,24.79191],[75.2152,24.80212],[75.21867,24.80512],[75.2217,24.80322],[75.23303,24.80266],[75.24413,24.80471],[75.25032,24.80954],[75.25232,24.81311],[75.25426,24.81848],[75.25396,24.82427],[75.25006,24.82666],[75.24909,24.82982],[75.23238,24.83133],[75.2252,24.83398],[75.22622,24.84038],[75.22409,24.84392],[75.23691,24.84224],[75.24042,24.8457],[75.25023,24.84569],[75.26232,24.84221],[75.27294,24.84284],[75.28996,24.83366],[75.29031,24.8286],[75.2958,24.82026],[75.29486,24.81571],[75.29734,24.81269],[75.29794,24.80714],[75.30473,24.80205],[75.3116,24.80118],[75.31704,24.8039],[75.32843,24.81903],[75.33586,24.82217],[75.34541,24.82168],[75.36268,24.83002],[75.37171,24.83265],[75.38129,24.8382],[75.39602,24.84155],[75.40393,24.84516],[75.41239,24.85213],[75.41857,24.85441],[75.41971,24.85619],[75.41908,24.86201],[75.42576,24.86907],[75.42431,24.88084],[75.4258,24.88429],[75.4217,24.8861],[75.41613,24.88608],[75.40178,24.8827],[75.39598,24.87752],[75.37363,24.86774],[75.35053,24.87365],[75.33829,24.87276],[75.32664,24.87487],[75.32259,24.87315],[75.32277,24.86919],[75.31838,24.86061],[75.3153,24.85791],[75.30805,24.85604],[75.29463,24.85762],[75.29019,24.86621],[75.28111,24.86838],[75.27813,24.87274],[75.27436,24.87478],[75.26343,24.87486],[75.26231,24.88264],[75.2633,24.89108],[75.26507,24.89219],[75.26407,24.89521],[75.26731,24.89944],[75.2727,24.90405],[75.27733,24.89915],[75.2843,24.90796],[75.28674,24.90876],[75.29407,24.90755],[75.29348,24.91129],[75.28779,24.91983],[75.28784,24.92352],[75.27728,24.92494],[75.27926,24.93435],[75.27264,24.93594],[75.27293,24.93818],[75.26892,24.94223],[75.26662,24.94865],[75.26671,24.95088],[75.27082,24.95273],[75.27057,24.95713],[75.27292,24.95971],[75.27389,24.96404],[75.27748,24.96487],[75.27812,24.96375],[75.28219,24.96561],[75.28531,24.96478],[75.28187,24.95309],[75.2884,24.95161],[75.28677,24.94614],[75.29009,24.93766],[75.2977,24.93301],[75.30023,24.93336],[75.30487,24.92866],[75.30141,24.92628],[75.30095,24.92331],[75.30272,24.91987],[75.30859,24.91661],[75.31518,24.89601],[75.31512,24.88934],[75.31274,24.88514],[75.31433,24.88595],[75.3187,24.89481],[75.32146,24.9142],[75.32583,24.91947],[75.32853,24.9328],[75.33528,24.94379],[75.33691,24.9554],[75.33157,24.95764],[75.32702,24.96744],[75.32723,24.97097],[75.31847,24.97413],[75.31346,24.98001],[75.31177,24.99537],[75.31653,25.00556],[75.32054,25.00677],[75.33298,25.01665],[75.33926,25.01932],[75.33914,25.01728],[75.35035,25.01753],[75.35021,25.0224],[75.34272,25.03072],[75.34639,25.03073],[75.34718,25.03214],[75.33216,25.04149],[75.32514,25.03917],[75.3011,25.04174],[75.29397,25.03906],[75.28503,25.03807],[75.27205,25.04034]],[[75.20641,24.88098],[75.20847,24.8943],[75.21327,24.89332],[75.21605,24.88896],[75.22027,24.88788],[75.22126,24.88272],[75.2194,24.87561],[75.22163,24.87378],[75.23008,24.87729],[75.23894,24.8866],[75.24296,24.88722],[75.25067,24.88051],[75.24913,24.86707],[75.24672,24.86197],[75.24304,24.86065],[75.23266,24.84812],[75.22264,24.84409],[75.21794,24.84655],[75.21601,24.85075],[75.20874,24.85403],[75.20814,24.8614],[75.20073,24.86784],[75.20641,24.88098]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"42","area_level":"District","area_name":"Rupnagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.37967,31.42826],[76.37914,31.434],[76.37621,31.43748],[76.37311,31.43713],[76.37317,31.43333],[76.3713,31.43298],[76.37037,31.43007],[76.37252,31.42499],[76.3713,31.42017],[76.37303,31.41734],[76.37045,31.41729],[76.37223,31.41397],[76.37173,31.40946],[76.36726,31.40437],[76.35834,31.40355],[76.35228,31.39831],[76.34733,31.39816],[76.34587,31.40308],[76.34293,31.40254],[76.34295,31.39862],[76.34205,31.40139],[76.33109,31.40163],[76.33046,31.38726],[76.33174,31.38728],[76.33168,31.38407],[76.32976,31.37905],[76.34161,31.37878],[76.34049,31.36336],[76.34292,31.36345],[76.34228,31.35496],[76.34622,31.35486],[76.34712,31.34895],[76.35278,31.34879],[76.35316,31.34496],[76.35148,31.34524],[76.35161,31.34658],[76.34753,31.34667],[76.34687,31.34319],[76.34503,31.34305],[76.34391,31.3402],[76.3375,31.33983],[76.3356,31.34949],[76.33021,31.3481],[76.33146,31.34642],[76.30765,31.34235],[76.31352,31.32914],[76.32238,31.32161],[76.31057,31.31916],[76.30957,31.31696],[76.29846,31.31085],[76.29043,31.30918],[76.28686,31.29813],[76.28808,31.2953],[76.29293,31.29511],[76.29615,31.29085],[76.30537,31.29439],[76.30967,31.29105],[76.30697,31.28678],[76.30787,31.27775],[76.32072,31.26837],[76.32405,31.26869],[76.32828,31.26646],[76.33015,31.25994],[76.3357,31.25335],[76.34139,31.24978],[76.33982,31.24549],[76.34936,31.24138],[76.34792,31.23583],[76.34213,31.23097],[76.33934,31.23184],[76.33177,31.22868],[76.32857,31.22407],[76.3326,31.22534],[76.33764,31.2231],[76.34055,31.21636],[76.34818,31.20757],[76.35505,31.20609],[76.35622,31.20095],[76.3612,31.19572],[76.35984,31.19306],[76.36568,31.1891],[76.37091,31.1773],[76.37377,31.1756],[76.37337,31.17434],[76.37707,31.17033],[76.37865,31.16286],[76.38239,31.15829],[76.38345,31.15342],[76.38761,31.15156],[76.38877,31.14851],[76.39356,31.14665],[76.39755,31.14051],[76.41294,31.13266],[76.41356,31.12946],[76.41969,31.12392],[76.42149,31.1184],[76.42919,31.11618],[76.43213,31.11006],[76.43236,31.10579],[76.42963,31.09848],[76.42578,31.09584],[76.43218,31.09122],[76.43172,31.08936],[76.43401,31.08781],[76.43269,31.08459],[76.43574,31.08321],[76.43516,31.07849],[76.44628,31.06744],[76.44576,31.06451],[76.45158,31.05925],[76.45168,31.05619],[76.45735,31.05416],[76.45688,31.05042],[76.4613,31.04656],[76.46697,31.03155],[76.46973,31.03096],[76.47764,31.0229],[76.48409,31.02128],[76.48651,31.01433],[76.49293,31.00973],[76.49761,31.0082],[76.50118,31.00455],[76.50688,31.00535],[76.51015,30.99922],[76.51866,30.9954],[76.50998,30.97991],[76.49422,30.9794],[76.49364,30.97537],[76.48188,30.97759],[76.47946,30.97948],[76.46843,30.97565],[76.45748,30.97621],[76.45815,30.9733],[76.43836,30.97198],[76.41461,30.9713],[76.40685,30.97251],[76.4065,30.97583],[76.36924,30.97469],[76.36923,30.97228],[76.35878,30.96904],[76.34284,30.97485],[76.34499,30.9806],[76.32511,30.97915],[76.32681,30.99432],[76.31669,30.9956],[76.30595,30.99222],[76.30562,30.98783],[76.3118,30.98843],[76.31366,30.98525],[76.31617,30.97382],[76.31764,30.95065],[76.32352,30.93229],[76.32155,30.92727],[76.31276,30.92472],[76.31974,30.9143],[76.31923,30.87753],[76.32794,30.87879],[76.32968,30.87388],[76.33396,30.86962],[76.3351,30.8722],[76.33744,30.87275],[76.33749,30.87504],[76.34857,30.87377],[76.34864,30.86548],[76.3574,30.86613],[76.3569,30.86912],[76.36801,30.87217],[76.36786,30.86801],[76.36951,30.86595],[76.38208,30.86027],[76.38015,30.85739],[76.37995,30.85313],[76.38488,30.84899],[76.39443,30.84507],[76.40686,30.84702],[76.41121,30.83992],[76.40921,30.83813],[76.40832,30.83894],[76.40248,30.83058],[76.40846,30.81957],[76.41711,30.81953],[76.4226,30.8208],[76.42448,30.82284],[76.43264,30.8192],[76.43193,30.81225],[76.43484,30.81204],[76.4355,30.81049],[76.43332,30.80658],[76.43448,30.80555],[76.43407,30.79917],[76.44286,30.79699],[76.4412,30.79034],[76.44162,30.78341],[76.44421,30.7836],[76.44423,30.75947],[76.45482,30.75395],[76.4564,30.75479],[76.4595,30.75001],[76.46366,30.75466],[76.46967,30.74552],[76.48332,30.75066],[76.49183,30.74622],[76.49508,30.74619],[76.50649,30.74934],[76.51848,30.75641],[76.52308,30.75731],[76.53332,30.76661],[76.53593,30.7749],[76.54067,30.78022],[76.54949,30.78318],[76.55286,30.78268],[76.55866,30.78575],[76.55575,30.7964],[76.56203,30.7999],[76.56025,30.8052],[76.56366,30.80819],[76.56283,30.81168],[76.55946,30.81486],[76.56489,30.8184],[76.56124,30.82816],[76.55954,30.83067],[76.55645,30.82975],[76.55286,30.83811],[76.58398,30.85172],[76.58195,30.85528],[76.58207,30.85909],[76.56977,30.85133],[76.56667,30.86685],[76.57811,30.86921],[76.57831,30.86581],[76.5729,30.86613],[76.5733,30.85941],[76.57468,30.85819],[76.5862,30.8595],[76.59042,30.85119],[76.5913,30.85372],[76.60326,30.85817],[76.59731,30.86885],[76.5971,30.8735],[76.59954,30.87885],[76.60921,30.88301],[76.60676,30.8905],[76.61139,30.89133],[76.62071,30.8966],[76.62477,30.89577],[76.62778,30.90151],[76.63659,30.9025],[76.63788,30.90511],[76.63948,30.9037],[76.64424,30.90406],[76.65239,30.90898],[76.65859,30.91065],[76.66315,30.915],[76.67987,30.91435],[76.68634,30.91759],[76.68936,30.92346],[76.69805,30.92858],[76.70002,30.93181],[76.71734,30.92875],[76.73143,30.93388],[76.73757,30.93993],[76.73615,30.94748],[76.73714,30.94961],[76.73371,30.94934],[76.72234,30.9615],[76.71722,30.96011],[76.71176,30.96461],[76.70812,30.97048],[76.70588,30.96962],[76.70055,30.97098],[76.68395,30.96786],[76.67386,30.96871],[76.67312,30.97438],[76.66441,30.98175],[76.66149,30.98074],[76.65162,30.98783],[76.63848,30.99014],[76.63373,30.99605],[76.62501,30.99864],[76.62647,31.02113],[76.62692,31.02308],[76.62905,31.02362],[76.62295,31.0258],[76.61677,31.03048],[76.61608,31.03651],[76.61097,31.04583],[76.62295,31.05457],[76.61721,31.0676],[76.61658,31.07771],[76.62315,31.07963],[76.62537,31.09077],[76.6322,31.09781],[76.63191,31.09997],[76.63741,31.10313],[76.63858,31.108],[76.63623,31.11649],[76.63328,31.11554],[76.63102,31.11691],[76.62498,31.11516],[76.62384,31.11639],[76.61662,31.11607],[76.61323,31.1223],[76.602,31.12354],[76.60089,31.12838],[76.605,31.13079],[76.60405,31.13337],[76.61041,31.14059],[76.60912,31.14321],[76.6123,31.14803],[76.60993,31.14957],[76.60746,31.14869],[76.60605,31.15169],[76.60233,31.15297],[76.60526,31.16017],[76.6031,31.16473],[76.6076,31.17065],[76.60553,31.17239],[76.60715,31.17425],[76.60491,31.17674],[76.60321,31.17505],[76.59857,31.17454],[76.59682,31.17799],[76.60978,31.18097],[76.61346,31.18413],[76.61488,31.18964],[76.61779,31.19286],[76.63536,31.20195],[76.64542,31.20906],[76.64254,31.21427],[76.63456,31.2178],[76.63686,31.21761],[76.63711,31.22066],[76.64167,31.22302],[76.63536,31.22438],[76.63154,31.22359],[76.62765,31.22622],[76.61296,31.21737],[76.60635,31.21661],[76.60353,31.21436],[76.60102,31.2148],[76.60082,31.21259],[76.59257,31.21126],[76.59268,31.21476],[76.59057,31.21453],[76.59237,31.2175],[76.58901,31.21929],[76.58854,31.22295],[76.59161,31.22295],[76.59279,31.22583],[76.59522,31.22686],[76.59471,31.23424],[76.59834,31.23955],[76.61029,31.24381],[76.6119,31.24912],[76.60108,31.25909],[76.59627,31.26116],[76.59184,31.26593],[76.59235,31.26836],[76.58775,31.2742],[76.58351,31.27615],[76.57915,31.27111],[76.57515,31.27023],[76.5713,31.26617],[76.57196,31.26479],[76.56954,31.26141],[76.56546,31.26179],[76.56002,31.25276],[76.55648,31.2524],[76.55284,31.25512],[76.54921,31.25275],[76.54427,31.25617],[76.54361,31.2589],[76.54847,31.26606],[76.54747,31.26727],[76.55021,31.26987],[76.54883,31.27427],[76.5513,31.27875],[76.54293,31.28243],[76.54109,31.27496],[76.53773,31.27055],[76.53998,31.26626],[76.53934,31.26105],[76.53143,31.25639],[76.5238,31.25814],[76.52393,31.26228],[76.5289,31.26565],[76.52859,31.2681],[76.53055,31.27105],[76.52899,31.27083],[76.52971,31.27226],[76.52794,31.27343],[76.52743,31.27717],[76.52165,31.28033],[76.5064,31.26772],[76.50391,31.26688],[76.50095,31.27003],[76.49757,31.26986],[76.49491,31.28082],[76.49672,31.28534],[76.49421,31.28905],[76.49089,31.28825],[76.49102,31.29423],[76.48801,31.29674],[76.48517,31.3045],[76.47913,31.30867],[76.47437,31.30235],[76.4635,31.29412],[76.45955,31.28892],[76.45937,31.28623],[76.44272,31.27728],[76.4413,31.27922],[76.43999,31.27872],[76.44037,31.28789],[76.45722,31.29513],[76.46281,31.29878],[76.46349,31.30195],[76.45431,31.31228],[76.44685,31.31698],[76.44322,31.31753],[76.43754,31.32221],[76.43587,31.32637],[76.43233,31.32656],[76.4252,31.33958],[76.42679,31.34486],[76.42409,31.34931],[76.41956,31.3493],[76.40726,31.36728],[76.40757,31.37078],[76.40368,31.37828],[76.40061,31.37957],[76.39271,31.38906],[76.39345,31.39119],[76.39812,31.39377],[76.40328,31.39239],[76.40357,31.39583],[76.39956,31.39975],[76.39708,31.40792],[76.38755,31.40944],[76.38964,31.41677],[76.38284,31.42363],[76.38392,31.4259],[76.37967,31.42826]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"420","area_level":"District","area_name":"Panna","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[80.44899,25.07865],[80.44401,25.07797],[80.44322,25.07415],[80.43956,25.07514],[80.43727,25.06934],[80.43303,25.06576],[80.42889,25.06565],[80.42835,25.06734],[80.42311,25.06868],[80.41611,25.07318],[80.41615,25.07026],[80.41814,25.06901],[80.41449,25.05731],[80.40872,25.05525],[80.40412,25.06167],[80.40657,25.0637],[80.4053,25.06772],[80.4023,25.06575],[80.40062,25.06957],[80.39954,25.06435],[80.39227,25.06381],[80.39216,25.05847],[80.38846,25.05503],[80.388,25.05091],[80.38097,25.05186],[80.37366,25.05591],[80.37266,25.05336],[80.37483,25.04894],[80.37051,25.04269],[80.37826,25.04043],[80.38536,25.04183],[80.38984,25.03556],[80.38707,25.03246],[80.38568,25.03557],[80.3833,25.03527],[80.37785,25.02702],[80.38694,25.02395],[80.38512,25.01826],[80.3909,25.01615],[80.39144,25.01308],[80.39644,25.01195],[80.39388,25.00836],[80.38732,25.00431],[80.37849,25.00435],[80.37588,25.01467],[80.37746,25.01954],[80.37186,25.02084],[80.36919,25.01993],[80.36295,25.0236],[80.35738,25.01158],[80.35345,25.01339],[80.352,25.01751],[80.34517,25.01673],[80.34166,25.01348],[80.33099,24.9922],[80.32314,24.99774],[80.32063,25.00283],[80.31338,25.00352],[80.30826,25.00584],[80.3044,25.01109],[80.30021,25.01283],[80.29975,25.01558],[80.29238,25.0167],[80.27356,25.02614],[80.27,25.02327],[80.26228,25.02508],[80.25288,25.018],[80.24843,25.01764],[80.23873,25.01128],[80.23553,25.008],[80.23623,25.00649],[80.234,25.0044],[80.23087,25.00429],[80.2194,24.99139],[80.20993,24.98568],[80.20016,24.97361],[80.19024,24.96907],[80.16524,24.96207],[80.15707,24.95692],[80.15192,24.94443],[80.1525,24.93807],[80.14977,24.93463],[80.13115,24.93241],[80.12317,24.93364],[80.11139,24.93903],[80.06749,24.93865],[80.05703,24.94046],[80.05244,24.93895],[80.04325,24.92584],[80.03308,24.92184],[80.03275,24.91876],[80.03523,24.9139],[80.03312,24.90826],[80.0429,24.8994],[80.049,24.88926],[80.06067,24.86064],[80.06731,24.85547],[80.08366,24.84745],[80.09028,24.83859],[80.09138,24.83178],[80.09041,24.82578],[80.08741,24.81664],[80.07808,24.79892],[80.07251,24.79119],[80.05489,24.77334],[80.02668,24.7533],[80.01498,24.74743],[80.00576,24.73374],[79.99249,24.72432],[79.98591,24.71038],[79.98776,24.70348],[79.98288,24.68719],[79.97101,24.67705],[79.96495,24.66337],[79.95359,24.6531],[79.93675,24.66156],[79.92816,24.67482],[79.92845,24.68305],[79.92594,24.6869],[79.90053,24.69773],[79.89684,24.6962],[79.89329,24.69693],[79.88239,24.68801],[79.87334,24.66686],[79.87134,24.64743],[79.86981,24.64394],[79.8612,24.636],[79.85814,24.62255],[79.85327,24.61858],[79.84257,24.61585],[79.84305,24.60193],[79.84144,24.59456],[79.85501,24.59097],[79.85645,24.58835],[79.85573,24.58126],[79.85893,24.5809],[79.86464,24.58341],[79.8665,24.58086],[79.86913,24.58156],[79.8748,24.58935],[79.88488,24.59273],[79.88829,24.59145],[79.88444,24.57878],[79.8849,24.57527],[79.89781,24.57409],[79.90413,24.5768],[79.90365,24.57479],[79.89893,24.57282],[79.88429,24.56916],[79.87545,24.57598],[79.87592,24.57283],[79.86966,24.56147],[79.86916,24.55213],[79.87162,24.54454],[79.87946,24.53394],[79.88224,24.51812],[79.87967,24.51612],[79.8689,24.51476],[79.86368,24.50584],[79.86967,24.49012],[79.882,24.47575],[79.88133,24.4731],[79.86663,24.46166],[79.86418,24.45636],[79.86827,24.45062],[79.86806,24.4257],[79.87258,24.41268],[79.87682,24.40699],[79.8755,24.40531],[79.87759,24.40212],[79.876,24.40017],[79.87624,24.39439],[79.88177,24.38911],[79.87944,24.38345],[79.8818,24.37877],[79.88649,24.37461],[79.87652,24.37198],[79.87587,24.36982],[79.87396,24.37188],[79.87311,24.36987],[79.87064,24.37073],[79.86329,24.35795],[79.8597,24.35586],[79.8567,24.34855],[79.84825,24.34884],[79.83998,24.3538],[79.83963,24.36613],[79.84195,24.37008],[79.84141,24.3718],[79.83735,24.37611],[79.82978,24.37775],[79.82841,24.38102],[79.82273,24.38542],[79.81109,24.38756],[79.80633,24.38662],[79.7953,24.37446],[79.79364,24.37084],[79.80498,24.35906],[79.80432,24.35641],[79.82108,24.3501],[79.81904,24.34463],[79.81943,24.33953],[79.81605,24.33889],[79.81384,24.33618],[79.8076,24.32167],[79.80228,24.3217],[79.79958,24.31733],[79.82176,24.32123],[79.83224,24.31935],[79.84226,24.31445],[79.8578,24.297],[79.85251,24.29209],[79.84234,24.28787],[79.84028,24.28341],[79.83194,24.28329],[79.82389,24.28109],[79.81574,24.28652],[79.80847,24.28347],[79.80839,24.27285],[79.80455,24.26738],[79.80618,24.26364],[79.8133,24.25973],[79.82826,24.25558],[79.84048,24.24869],[79.84368,24.24527],[79.84349,24.23749],[79.83722,24.23488],[79.83519,24.23247],[79.83584,24.22882],[79.84132,24.22436],[79.84104,24.21887],[79.83453,24.20249],[79.82857,24.20035],[79.81614,24.20258],[79.81062,24.19943],[79.80962,24.19563],[79.81064,24.18184],[79.80822,24.17517],[79.81191,24.1643],[79.8118,24.15991],[79.80973,24.15742],[79.79783,24.15328],[79.79243,24.14915],[79.7912,24.14313],[79.79491,24.13672],[79.79496,24.13312],[79.79214,24.13218],[79.7855,24.13408],[79.78148,24.13195],[79.78122,24.12609],[79.78586,24.11832],[79.78376,24.11365],[79.7783,24.1111],[79.7682,24.10995],[79.76373,24.106],[79.75895,24.09256],[79.76327,24.07913],[79.76219,24.07342],[79.75925,24.07123],[79.75073,24.07017],[79.74061,24.07416],[79.73637,24.06923],[79.73471,24.06143],[79.73562,24.05684],[79.73991,24.0502],[79.73889,24.04641],[79.74228,24.04458],[79.74259,24.04286],[79.74692,24.04296],[79.74851,24.05189],[79.75116,24.054],[79.75219,24.05317],[79.75208,24.04508],[79.7505,24.04223],[79.75357,24.0348],[79.7612,24.03328],[79.76465,24.03511],[79.76611,24.03657],[79.76433,24.04102],[79.76608,24.0421],[79.77699,24.03557],[79.78169,24.03541],[79.78731,24.03054],[79.79149,24.0298],[79.79469,24.03228],[79.79706,24.02924],[79.81171,24.02696],[79.81988,24.03102],[79.82886,24.02514],[79.84229,24.02391],[79.84403,24.02258],[79.84493,24.00687],[79.83438,24.00209],[79.85526,23.99471],[79.85786,23.98861],[79.85466,23.98379],[79.85379,23.97916],[79.84915,23.97689],[79.85123,23.97103],[79.84546,23.96117],[79.84308,23.95973],[79.8423,23.95532],[79.83852,23.95251],[79.83691,23.94592],[79.83217,23.94198],[79.83456,23.93955],[79.83781,23.92979],[79.84355,23.92452],[79.84825,23.92579],[79.85591,23.91766],[79.86301,23.91356],[79.86309,23.91064],[79.86699,23.90407],[79.87127,23.9007],[79.8704,23.89813],[79.86671,23.89547],[79.86871,23.89401],[79.86865,23.88968],[79.86487,23.88344],[79.86393,23.87746],[79.86092,23.87369],[79.86319,23.8706],[79.86186,23.86491],[79.85851,23.86425],[79.85635,23.86186],[79.85758,23.85617],[79.85418,23.85302],[79.86339,23.82903],[79.87295,23.82973],[79.89595,23.82187],[79.90183,23.8212],[79.91018,23.82264],[79.91607,23.82801],[79.92733,23.83003],[79.9342,23.82688],[79.93977,23.83091],[79.94343,23.82464],[79.94655,23.82345],[79.9495,23.82766],[79.9498,23.83316],[79.95438,23.83439],[79.9585,23.83777],[79.95648,23.84082],[79.95645,23.84484],[79.95409,23.84476],[79.95156,23.85005],[79.95591,23.85443],[79.96479,23.8582],[79.96194,23.86215],[79.96824,23.86336],[79.97013,23.86573],[79.96711,23.86693],[79.97055,23.87297],[79.96627,23.87473],[79.96695,23.87679],[79.97467,23.8805],[79.97851,23.88425],[79.9827,23.89507],[79.9865,23.89446],[79.98746,23.90466],[79.99236,23.91031],[79.99449,23.91572],[79.99196,23.93],[79.99848,23.92897],[79.99919,23.93565],[80.00275,23.93922],[80.00319,23.94419],[80.00788,23.94897],[80.01011,23.95657],[80.01566,23.95615],[80.01835,23.96286],[80.01827,23.96908],[80.01466,23.97429],[80.01568,23.97665],[80.03368,23.98049],[80.03999,23.97908],[80.04267,23.98536],[80.04597,23.98501],[80.05314,23.99161],[80.06303,23.99036],[80.06413,23.98928],[80.06294,23.98613],[80.0656,23.98447],[80.06603,23.98229],[80.07553,23.97985],[80.08441,23.97396],[80.08945,23.98103],[80.09538,23.98325],[80.10442,23.98039],[80.10739,23.97504],[80.11015,23.97502],[80.11351,23.96888],[80.11888,23.96739],[80.11909,23.95041],[80.12204,23.94921],[80.12739,23.95083],[80.1331,23.9481],[80.13478,23.94865],[80.13697,23.94372],[80.14668,23.93748],[80.15516,23.94016],[80.15519,23.94461],[80.15785,23.94629],[80.15653,23.94767],[80.15754,23.95204],[80.16476,23.95774],[80.16604,23.96182],[80.16442,23.96368],[80.16802,23.96679],[80.17087,23.97906],[80.1693,23.98195],[80.1732,23.98341],[80.17184,23.98741],[80.17473,23.99061],[80.17456,23.99257],[80.17054,23.99569],[80.17323,23.99721],[80.17225,24.00046],[80.17552,24.00389],[80.18181,24.00491],[80.1889,24.00249],[80.20622,23.99113],[80.20902,23.99189],[80.21314,23.98875],[80.21639,23.98876],[80.21708,23.98209],[80.22424,23.97983],[80.22833,23.9843],[80.23272,23.98209],[80.23292,23.97791],[80.23576,23.97362],[80.24048,23.97173],[80.23104,23.95938],[80.22912,23.9587],[80.22799,23.96101],[80.22593,23.9718],[80.22098,23.97478],[80.22164,23.97855],[80.21722,23.97327],[80.21446,23.96463],[80.21584,23.95897],[80.21801,23.95822],[80.21866,23.9561],[80.22067,23.9563],[80.22111,23.95456],[80.22345,23.95539],[80.22649,23.95402],[80.22787,23.95067],[80.23137,23.95081],[80.23205,23.94604],[80.23354,23.94734],[80.2377,23.94398],[80.2452,23.94181],[80.24609,23.93895],[80.2497,23.93722],[80.25231,23.93885],[80.25481,23.9369],[80.26344,23.93785],[80.26842,23.93987],[80.27009,23.93167],[80.27241,23.92892],[80.27514,23.92858],[80.28154,23.9219],[80.29809,23.92414],[80.30694,23.91178],[80.30679,23.90947],[80.31049,23.91072],[80.31511,23.90966],[80.3161,23.90783],[80.31929,23.9105],[80.32086,23.90848],[80.3248,23.90915],[80.32604,23.90669],[80.32787,23.90877],[80.3314,23.90692],[80.33414,23.90793],[80.33433,23.91003],[80.33853,23.91014],[80.33938,23.90826],[80.34062,23.90989],[80.33126,23.92044],[80.32899,23.92889],[80.33581,23.93224],[80.34676,23.93202],[80.3559,23.94107],[80.36222,23.94316],[80.36147,23.94542],[80.36435,23.94616],[80.36207,23.94707],[80.36429,23.9494],[80.3625,23.94928],[80.36472,23.9523],[80.36178,23.95232],[80.36269,23.95582],[80.3609,23.95592],[80.36155,23.9587],[80.35852,23.95793],[80.35908,23.9596],[80.35478,23.9629],[80.35649,23.96814],[80.3547,23.96948],[80.35462,23.97241],[80.35725,23.97493],[80.35797,23.9802],[80.36274,23.98063],[80.36929,23.98764],[80.38759,23.99836],[80.38925,24.00223],[80.38854,24.00942],[80.38668,24.01194],[80.39341,24.02573],[80.39074,24.02981],[80.38465,24.03346],[80.38413,24.04099],[80.38608,24.04261],[80.38887,24.03934],[80.39371,24.04093],[80.40701,24.03629],[80.41467,24.03632],[80.41652,24.03406],[80.42098,24.03264],[80.4371,24.03206],[80.4416,24.03614],[80.4437,24.04231],[80.44534,24.07002],[80.44091,24.08246],[80.44218,24.08558],[80.43948,24.0883],[80.44112,24.09266],[80.45679,24.08604],[80.46599,24.07362],[80.47256,24.07226],[80.4711,24.06999],[80.47591,24.0715],[80.47685,24.06668],[80.48446,24.07033],[80.48748,24.0697],[80.50831,24.07709],[80.51619,24.08127],[80.51978,24.08637],[80.52894,24.08863],[80.53237,24.09509],[80.542,24.09604],[80.54305,24.1005],[80.54755,24.10242],[80.54426,24.10537],[80.54745,24.10938],[80.54968,24.10803],[80.55232,24.11068],[80.55998,24.10965],[80.55865,24.11223],[80.55468,24.11429],[80.55591,24.12105],[80.56216,24.11905],[80.56736,24.12171],[80.57702,24.1204],[80.57746,24.12884],[80.58517,24.1298],[80.59682,24.13547],[80.59701,24.13791],[80.59938,24.13993],[80.59839,24.14127],[80.60298,24.14772],[80.6095,24.14861],[80.603,24.14983],[80.59632,24.15333],[80.59788,24.15502],[80.60572,24.15595],[80.60539,24.1602],[80.61151,24.15878],[80.61115,24.16606],[80.60841,24.16893],[80.61143,24.16813],[80.61235,24.16987],[80.61741,24.16651],[80.62057,24.16021],[80.62493,24.1571],[80.62142,24.16697],[80.61674,24.16927],[80.61858,24.17327],[80.62311,24.17142],[80.6276,24.17197],[80.62796,24.17532],[80.63288,24.17505],[80.63092,24.17685],[80.63136,24.18383],[80.63728,24.18551],[80.64923,24.18165],[80.6486,24.17367],[80.65476,24.17657],[80.6513,24.18674],[80.65506,24.18949],[80.66482,24.1873],[80.66307,24.19072],[80.66587,24.19334],[80.67371,24.19045],[80.67473,24.19519],[80.67866,24.1982],[80.67776,24.19944],[80.67536,24.19722],[80.67219,24.19746],[80.67086,24.19532],[80.66709,24.19501],[80.66383,24.19805],[80.65727,24.19475],[80.6531,24.19522],[80.65367,24.19268],[80.65078,24.19065],[80.64694,24.18877],[80.64541,24.19171],[80.6449,24.18897],[80.64216,24.1876],[80.63887,24.19155],[80.64055,24.19556],[80.62943,24.19766],[80.62948,24.19406],[80.62373,24.19013],[80.62351,24.18365],[80.61902,24.181],[80.61794,24.18243],[80.62053,24.18457],[80.62078,24.18773],[80.6153,24.18689],[80.61892,24.19037],[80.62113,24.1904],[80.62183,24.19228],[80.61909,24.19235],[80.62284,24.1937],[80.62332,24.19641],[80.62041,24.19629],[80.6231,24.19752],[80.62333,24.19968],[80.61457,24.19849],[80.60543,24.20484],[80.60321,24.20314],[80.60382,24.20681],[80.59745,24.20974],[80.59605,24.2133],[80.59168,24.21691],[80.5923,24.2251],[80.59397,24.22765],[80.58952,24.22941],[80.58856,24.23492],[80.58376,24.23935],[80.58146,24.24414],[80.57046,24.24306],[80.56921,24.25001],[80.56422,24.2515],[80.56294,24.25561],[80.5595,24.25424],[80.55901,24.25587],[80.55703,24.25593],[80.5555,24.25827],[80.55783,24.26087],[80.5547,24.2637],[80.5513,24.26217],[80.5503,24.26368],[80.55057,24.26649],[80.55332,24.26518],[80.55403,24.26689],[80.55081,24.26905],[80.55183,24.2714],[80.55458,24.26777],[80.55649,24.26875],[80.55858,24.26527],[80.56022,24.2653],[80.5602,24.26285],[80.56377,24.26192],[80.56636,24.25803],[80.56868,24.2598],[80.57072,24.25889],[80.56763,24.25633],[80.57218,24.25604],[80.57223,24.25838],[80.57378,24.25883],[80.58501,24.25775],[80.5728,24.26432],[80.55809,24.26696],[80.56331,24.27052],[80.56497,24.27458],[80.56548,24.2798],[80.56419,24.28024],[80.56571,24.28296],[80.56328,24.28982],[80.57477,24.2938],[80.5764,24.30141],[80.568,24.3062],[80.56309,24.30438],[80.56107,24.30612],[80.56011,24.30401],[80.55771,24.30429],[80.55401,24.30926],[80.55795,24.31205],[80.55221,24.31664],[80.54972,24.31511],[80.5456,24.31783],[80.53649,24.3175],[80.54132,24.32442],[80.53681,24.32901],[80.53922,24.33291],[80.53226,24.3332],[80.52984,24.33875],[80.53374,24.33955],[80.53186,24.34276],[80.52631,24.34095],[80.51693,24.34108],[80.51197,24.34403],[80.50911,24.34711],[80.50878,24.34981],[80.51289,24.36064],[80.5058,24.36322],[80.50471,24.37074],[80.50003,24.37474],[80.49789,24.37574],[80.49317,24.3713],[80.48564,24.36911],[80.48146,24.37258],[80.47634,24.37261],[80.47427,24.3761],[80.47052,24.37501],[80.47139,24.38625],[80.46571,24.39072],[80.46911,24.39399],[80.47064,24.39842],[80.46806,24.40152],[80.46651,24.39979],[80.46565,24.40167],[80.46956,24.40406],[80.47041,24.40662],[80.4684,24.41209],[80.47164,24.41228],[80.47091,24.41424],[80.47331,24.41528],[80.46794,24.41716],[80.46878,24.42001],[80.46493,24.41983],[80.46175,24.41703],[80.46007,24.42019],[80.45696,24.42113],[80.45766,24.42265],[80.46678,24.42232],[80.46554,24.42941],[80.46032,24.43686],[80.44996,24.44012],[80.43954,24.43632],[80.43194,24.44117],[80.42276,24.44301],[80.4229,24.44835],[80.42589,24.45397],[80.42661,24.46495],[80.42854,24.46959],[80.43099,24.47055],[80.43257,24.47663],[80.43071,24.4785],[80.42534,24.47812],[80.42401,24.47931],[80.42839,24.4879],[80.43583,24.49006],[80.43554,24.50647],[80.43842,24.50632],[80.43895,24.50978],[80.44082,24.50967],[80.4435,24.51283],[80.45214,24.51233],[80.45352,24.5101],[80.45888,24.51043],[80.46126,24.51419],[80.46103,24.51918],[80.46569,24.52137],[80.46559,24.52404],[80.46374,24.52432],[80.46152,24.52966],[80.46169,24.53225],[80.44815,24.52762],[80.44217,24.52786],[80.44237,24.53397],[80.44611,24.53381],[80.4503,24.53884],[80.45118,24.54954],[80.45293,24.55306],[80.46081,24.55264],[80.45882,24.55573],[80.45978,24.55815],[80.45745,24.5589],[80.45783,24.56396],[80.45617,24.56492],[80.45676,24.57456],[80.46314,24.58559],[80.46298,24.58858],[80.45971,24.59112],[80.46013,24.59281],[80.46202,24.59732],[80.46379,24.59685],[80.46403,24.59941],[80.46653,24.59999],[80.46663,24.60161],[80.46453,24.60208],[80.46476,24.60418],[80.46355,24.60378],[80.46407,24.60665],[80.46289,24.60754],[80.46948,24.61367],[80.46649,24.61578],[80.46175,24.6158],[80.46224,24.61451],[80.45979,24.61278],[80.45311,24.61348],[80.44178,24.60737],[80.43937,24.6082],[80.43933,24.61132],[80.43617,24.60992],[80.43229,24.61199],[80.42977,24.61008],[80.42746,24.61224],[80.41997,24.61078],[80.4157,24.612],[80.41417,24.61323],[80.41479,24.61533],[80.41784,24.61644],[80.41847,24.6213],[80.42398,24.62978],[80.42219,24.63107],[80.42117,24.63699],[80.41938,24.63734],[80.41451,24.64381],[80.41342,24.6476],[80.40878,24.64944],[80.40369,24.65608],[80.39064,24.66576],[80.38684,24.6761],[80.37659,24.68133],[80.3722,24.67604],[80.35508,24.67315],[80.34735,24.69366],[80.34467,24.69599],[80.34636,24.69869],[80.35728,24.69912],[80.36728,24.68974],[80.37355,24.6945],[80.37682,24.70127],[80.38093,24.70438],[80.38219,24.71136],[80.3897,24.71143],[80.40347,24.7084],[80.4035,24.71433],[80.40272,24.71764],[80.40154,24.71765],[80.40913,24.7263],[80.40749,24.72762],[80.40335,24.72566],[80.40016,24.72764],[80.3988,24.73515],[80.39431,24.74186],[80.39402,24.74484],[80.39516,24.75045],[80.39959,24.75315],[80.40064,24.75811],[80.40765,24.76394],[80.41014,24.76426],[80.40971,24.77588],[80.41199,24.77864],[80.41536,24.77736],[80.41937,24.76872],[80.42406,24.76512],[80.42702,24.75327],[80.43598,24.74666],[80.45204,24.75652],[80.45397,24.75928],[80.46219,24.7622],[80.46843,24.76656],[80.47053,24.76505],[80.47227,24.75854],[80.47571,24.75498],[80.47796,24.75552],[80.47483,24.76257],[80.4756,24.7663],[80.47755,24.76776],[80.47916,24.76687],[80.48132,24.76122],[80.48377,24.76415],[80.48567,24.7622],[80.4871,24.76407],[80.483,24.77086],[80.48376,24.77273],[80.48951,24.77494],[80.49302,24.78187],[80.50887,24.77067],[80.50783,24.77458],[80.50954,24.78105],[80.50795,24.78188],[80.50893,24.78568],[80.50718,24.789],[80.51871,24.7963],[80.52163,24.79507],[80.52213,24.79099],[80.52352,24.79139],[80.52449,24.79916],[80.53357,24.80353],[80.53009,24.81088],[80.52737,24.81066],[80.52632,24.8089],[80.52456,24.81],[80.51847,24.80602],[80.52643,24.81551],[80.52505,24.82243],[80.52746,24.81738],[80.5369,24.81354],[80.53429,24.81191],[80.53087,24.81219],[80.53606,24.80573],[80.5568,24.81384],[80.56862,24.81613],[80.57254,24.82057],[80.57321,24.81214],[80.57529,24.8104],[80.57537,24.8187],[80.57922,24.82275],[80.58281,24.82506],[80.58739,24.82468],[80.58964,24.82694],[80.59262,24.82695],[80.59366,24.82838],[80.59011,24.82929],[80.59218,24.83055],[80.59671,24.8289],[80.59418,24.83157],[80.60363,24.83096],[80.60704,24.83815],[80.60348,24.83956],[80.59425,24.83829],[80.5977,24.84552],[80.60981,24.85111],[80.63133,24.86612],[80.63058,24.87299],[80.63196,24.87446],[80.62947,24.87821],[80.62223,24.87476],[80.61332,24.87604],[80.61122,24.87868],[80.58838,24.88979],[80.58341,24.89733],[80.57624,24.90121],[80.56624,24.90068],[80.55723,24.90245],[80.54397,24.89929],[80.53886,24.90042],[80.53459,24.90976],[80.52458,24.91397],[80.52243,24.91698],[80.5176,24.91713],[80.51406,24.91489],[80.51389,24.91126],[80.50814,24.91263],[80.51003,24.90771],[80.50483,24.9026],[80.50605,24.90018],[80.50116,24.89914],[80.50089,24.89629],[80.50601,24.89382],[80.50689,24.8918],[80.49915,24.89108],[80.48997,24.88761],[80.48674,24.88448],[80.48738,24.88244],[80.48467,24.87395],[80.48719,24.86857],[80.48721,24.86099],[80.4976,24.85915],[80.49653,24.85624],[80.49382,24.85514],[80.48915,24.85839],[80.48544,24.85765],[80.48441,24.85281],[80.48067,24.84836],[80.4868,24.84545],[80.48722,24.84376],[80.48175,24.84289],[80.47832,24.84419],[80.47737,24.84727],[80.48233,24.853],[80.48228,24.85665],[80.48461,24.85998],[80.48438,24.86533],[80.48161,24.87179],[80.47854,24.87265],[80.48238,24.88032],[80.47972,24.88504],[80.48146,24.88586],[80.48377,24.89139],[80.48938,24.89445],[80.48682,24.89836],[80.48997,24.89923],[80.48882,24.90115],[80.49061,24.90246],[80.4886,24.90523],[80.49273,24.90652],[80.49504,24.90913],[80.49495,24.91251],[80.48845,24.91688],[80.49044,24.92046],[80.48737,24.92202],[80.48795,24.92532],[80.49105,24.92528],[80.49252,24.93111],[80.4888,24.93852],[80.49055,24.9447],[80.48609,24.94732],[80.47082,24.96653],[80.47738,24.97621],[80.46624,24.97545],[80.45614,24.98164],[80.45943,24.98483],[80.45569,24.99064],[80.46396,24.99538],[80.46311,25.0023],[80.45652,25.00402],[80.45188,24.99944],[80.44691,25.00203],[80.44476,24.99442],[80.44171,24.99513],[80.43939,24.99385],[80.43657,24.99514],[80.43718,24.99741],[80.43565,24.99865],[80.43679,25.00148],[80.44288,25.00207],[80.44353,25.0041],[80.45384,25.00313],[80.45487,25.00573],[80.45124,25.00991],[80.45317,25.01346],[80.45245,25.01515],[80.44747,25.01422],[80.44411,25.02085],[80.43938,25.02299],[80.43552,25.02155],[80.43309,25.02374],[80.44139,25.03341],[80.44585,25.03736],[80.44767,25.03693],[80.44895,25.04055],[80.45445,25.04222],[80.45636,25.03934],[80.46317,25.03981],[80.46464,25.03575],[80.47435,25.03053],[80.4784,25.0326],[80.48271,25.03111],[80.48485,25.03367],[80.48807,25.03019],[80.48972,25.03134],[80.49559,25.0291],[80.50188,25.03725],[80.48882,25.04348],[80.4865,25.04053],[80.48357,25.0409],[80.48174,25.03802],[80.47515,25.03794],[80.47414,25.04276],[80.47153,25.04239],[80.46999,25.04432],[80.47271,25.04603],[80.46974,25.04719],[80.46885,25.05888],[80.46651,25.06492],[80.46357,25.06803],[80.46185,25.06794],[80.45706,25.06331],[80.45143,25.06221],[80.45146,25.06897],[80.44642,25.07112],[80.45271,25.07474],[80.44996,25.07518],[80.45073,25.07691],[80.44899,25.07865]],[[80.4345,24.56296],[80.43911,24.56055],[80.4399,24.55811],[80.43763,24.55377],[80.43709,24.54796],[80.43399,24.54761],[80.43234,24.54824],[80.43138,24.55361],[80.43424,24.55973],[80.43312,24.56117],[80.43411,24.56159],[80.43214,24.56254],[80.4345,24.56296]],[[80.39253,24.52619],[80.39091,24.52719],[80.39192,24.5297],[80.40055,24.52622],[80.40325,24.52963],[80.4165,24.52709],[80.41707,24.52326],[80.41551,24.52338],[80.41514,24.5155],[80.41299,24.51432],[80.41221,24.50669],[80.42428,24.50457],[80.4249,24.50145],[80.41501,24.50037],[80.40402,24.49452],[80.40456,24.50151],[80.40019,24.50022],[80.39905,24.50375],[80.40043,24.5115],[80.39649,24.51251],[80.3943,24.51692],[80.39642,24.5246],[80.39253,24.52619]],[[80.34613,24.40102],[80.33974,24.4081],[80.33814,24.42365],[80.35252,24.41936],[80.37882,24.42049],[80.37925,24.4106],[80.38674,24.40554],[80.38674,24.39883],[80.3832,24.39739],[80.38186,24.39463],[80.37639,24.39457],[80.37612,24.39188],[80.36504,24.39072],[80.35564,24.39188],[80.34941,24.38432],[80.34667,24.38655],[80.34445,24.38558],[80.34329,24.39128],[80.34687,24.39325],[80.35306,24.39283],[80.35478,24.39522],[80.35385,24.39985],[80.34613,24.40102]],[[80.10856,24.38541],[80.10858,24.38403],[80.112,24.38353],[80.11351,24.38137],[80.11366,24.37528],[80.11051,24.37518],[80.11,24.37314],[80.10336,24.36893],[80.0999,24.38634],[80.10314,24.38709],[80.10856,24.38541]]],[[[80.5018,25.0992],[80.49974,25.10031],[80.49937,25.1001],[80.4983,25.09659],[80.49776,25.09721],[80.49534,25.09764],[80.49574,25.09833],[80.49517,25.09884],[80.49465,25.09896],[80.49399,25.09799],[80.4936,25.09946],[80.49311,25.09963],[80.49206,25.09915],[80.49258,25.09832],[80.49235,25.09801],[80.49107,25.09761],[80.49072,25.09852],[80.48957,25.09852],[80.4897,25.09778],[80.48886,25.09816],[80.48791,25.09671],[80.4876,25.09883],[80.48701,25.09908],[80.48518,25.09794],[80.48395,25.09837],[80.48272,25.10021],[80.48065,25.09868],[80.4817,25.09677],[80.48152,25.09587],[80.47953,25.09634],[80.4795,25.09602],[80.48042,25.09545],[80.48077,25.09291],[80.48261,25.09291],[80.48501,25.09209],[80.48635,25.09136],[80.48687,25.09018],[80.48858,25.09094],[80.48962,25.08949],[80.49246,25.08823],[80.49612,25.08719],[80.50053,25.08722],[80.50663,25.08397],[80.50528,25.0819],[80.50583,25.0817],[80.50589,25.07988],[80.50396,25.07573],[80.50338,25.07305],[80.50192,25.07271],[80.50224,25.07322],[80.50146,25.07388],[80.5,25.0732],[80.49753,25.07376],[80.49641,25.07295],[80.49718,25.07259],[80.49714,25.07191],[80.49842,25.07176],[80.49879,25.07089],[80.49965,25.07097],[80.50042,25.07032],[80.50122,25.07119],[80.5012,25.07073],[80.50183,25.07069],[80.50504,25.06649],[80.50625,25.06331],[80.50708,25.06253],[80.5071,25.06115],[80.50899,25.05879],[80.50645,25.05384],[80.50565,25.05343],[80.50373,25.0536],[80.50319,25.05267],[80.50356,25.05261],[80.50348,25.05206],[80.50155,25.05203],[80.50097,25.05146],[80.50066,25.04781],[80.50276,25.04619],[80.50256,25.04564],[80.50307,25.04524],[80.50058,25.04153],[80.50105,25.04115],[80.50213,25.04209],[80.50231,25.04122],[80.50296,25.04127],[80.50398,25.04229],[80.5077,25.04295],[80.50796,25.04334],[80.50861,25.04281],[80.50991,25.0427],[80.51372,25.04344],[80.51517,25.04197],[80.52108,25.04022],[80.52361,25.04047],[80.53032,25.03971],[80.53726,25.04149],[80.5389,25.04424],[80.54089,25.04573],[80.54067,25.04625],[80.53892,25.04679],[80.53757,25.04667],[80.53364,25.04884],[80.53133,25.05209],[80.53506,25.05222],[80.53752,25.05147],[80.54126,25.053],[80.54294,25.05459],[80.54476,25.05893],[80.5448,25.06382],[80.54545,25.06455],[80.54403,25.06825],[80.54169,25.06968],[80.54037,25.07187],[80.53911,25.07206],[80.53638,25.0708],[80.53349,25.07014],[80.52933,25.07185],[80.52811,25.07336],[80.52604,25.07361],[80.52491,25.07487],[80.52201,25.0757],[80.52126,25.07731],[80.52022,25.07828],[80.51988,25.08129],[80.5191,25.08227],[80.52034,25.086],[80.52035,25.08943],[80.52098,25.09039],[80.51969,25.09336],[80.51813,25.0947],[80.51347,25.09708],[80.50479,25.09953],[80.50385,25.09886],[80.5018,25.0992]]],[[[80.37386,25.11654],[80.36915,25.11777],[80.36951,25.11824],[80.36849,25.11918],[80.36415,25.12086],[80.35865,25.12481],[80.3549,25.12632],[80.3514,25.12178],[80.34447,25.11617],[80.34097,25.1122],[80.32369,25.09833],[80.32226,25.09542],[80.32641,25.09278],[80.32637,25.09145],[80.32178,25.08526],[80.32036,25.07929],[80.31825,25.07508],[80.31349,25.07197],[80.30691,25.0698],[80.30163,25.06649],[80.29404,25.06388],[80.2917,25.06223],[80.29058,25.05951],[80.29452,25.05665],[80.29411,25.0556],[80.29691,25.05319],[80.29797,25.05391],[80.29888,25.05302],[80.2997,25.05365],[80.30368,25.05175],[80.3029,25.0511],[80.30465,25.05086],[80.30762,25.04642],[80.3114,25.04423],[80.31296,25.04459],[80.3133,25.04572],[80.31384,25.04503],[80.31611,25.04787],[80.31882,25.04774],[80.31914,25.04869],[80.3205,25.04895],[80.32119,25.04992],[80.32306,25.04939],[80.32774,25.04953],[80.33033,25.04755],[80.33148,25.04798],[80.33116,25.04873],[80.33195,25.05129],[80.33463,25.05494],[80.33419,25.05636],[80.3349,25.05663],[80.33563,25.05862],[80.33675,25.05907],[80.33953,25.05827],[80.34046,25.05862],[80.34098,25.05815],[80.34024,25.05729],[80.34096,25.05559],[80.34067,25.05443],[80.34365,25.05347],[80.34452,25.05574],[80.35071,25.05317],[80.35407,25.05591],[80.35533,25.05563],[80.3562,25.05736],[80.35502,25.05758],[80.35423,25.05933],[80.35597,25.06157],[80.35294,25.06253],[80.35112,25.06192],[80.34908,25.06242],[80.34578,25.0649],[80.34685,25.06614],[80.34602,25.06758],[80.34987,25.0739],[80.34936,25.07406],[80.34982,25.07635],[80.35097,25.07855],[80.35016,25.07892],[80.35154,25.08118],[80.34838,25.08278],[80.34916,25.08634],[80.34843,25.08665],[80.34982,25.08822],[80.35161,25.08816],[80.35212,25.08906],[80.35034,25.08935],[80.35134,25.09139],[80.35187,25.0911],[80.35253,25.09243],[80.35404,25.09155],[80.35654,25.09489],[80.3573,25.09415],[80.35921,25.09449],[80.36008,25.09388],[80.36241,25.09756],[80.36441,25.09767],[80.36578,25.09927],[80.36849,25.09881],[80.37048,25.09972],[80.37118,25.10138],[80.3701,25.10222],[80.37137,25.10407],[80.37191,25.10387],[80.37212,25.1049],[80.37279,25.10493],[80.37485,25.10915],[80.37602,25.11733],[80.37478,25.11746],[80.37386,25.11654]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"421","area_level":"District","area_name":"Raisen","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.42971,23.74543],[78.42485,23.74421],[78.42215,23.74007],[78.41801,23.73757],[78.41206,23.74072],[78.40922,23.74002],[78.40753,23.7442],[78.39849,23.74255],[78.39194,23.73759],[78.38212,23.73687],[78.38271,23.72677],[78.37664,23.72835],[78.36789,23.72797],[78.36768,23.71633],[78.36181,23.71622],[78.35809,23.71362],[78.35683,23.70989],[78.35808,23.70691],[78.35359,23.70419],[78.35834,23.6918],[78.34353,23.67791],[78.35843,23.67171],[78.36899,23.68234],[78.37201,23.68327],[78.37956,23.69404],[78.38229,23.69389],[78.38266,23.69098],[78.38644,23.68863],[78.39265,23.69715],[78.38155,23.70025],[78.38259,23.70754],[78.38146,23.71447],[78.38262,23.71282],[78.38501,23.71332],[78.38641,23.71077],[78.39073,23.71054],[78.39901,23.71498],[78.40062,23.72207],[78.39881,23.72448],[78.39891,23.72973],[78.41028,23.73345],[78.41297,23.73186],[78.41369,23.72806],[78.41725,23.72374],[78.42529,23.71981],[78.42847,23.72031],[78.4323,23.71578],[78.43171,23.71416],[78.4169,23.70704],[78.4126,23.70114],[78.4068,23.70111],[78.41037,23.69126],[78.40857,23.68635],[78.41384,23.68575],[78.41745,23.68253],[78.42412,23.6817],[78.4299,23.6786],[78.43213,23.67317],[78.42897,23.67123],[78.42317,23.67219],[78.42025,23.67101],[78.41246,23.67177],[78.41109,23.67057],[78.40648,23.6714],[78.4058,23.67536],[78.39679,23.67702],[78.39904,23.66424],[78.40254,23.65901],[78.40532,23.65833],[78.40649,23.65377],[78.41656,23.64967],[78.41962,23.65063],[78.41929,23.64842],[78.41465,23.64841],[78.41654,23.64323],[78.41224,23.6427],[78.41336,23.63916],[78.41003,23.63965],[78.40218,23.63686],[78.39755,23.63242],[78.39099,23.63455],[78.38722,23.64095],[78.38369,23.64202],[78.38607,23.64915],[78.37826,23.65344],[78.37606,23.65683],[78.37175,23.65093],[78.36749,23.64878],[78.36547,23.6503],[78.36415,23.64865],[78.35189,23.65362],[78.34793,23.65663],[78.34773,23.65839],[78.34441,23.65926],[78.34341,23.65698],[78.34199,23.65736],[78.33729,23.66136],[78.33702,23.66497],[78.33458,23.66795],[78.33999,23.67756],[78.33176,23.68073],[78.32876,23.68793],[78.32108,23.69433],[78.31827,23.69003],[78.30642,23.68624],[78.30328,23.68037],[78.29529,23.67564],[78.29003,23.67029],[78.29086,23.66548],[78.28739,23.6582],[78.28321,23.65435],[78.28402,23.6481],[78.27479,23.62761],[78.27683,23.62082],[78.27743,23.60932],[78.27184,23.60379],[78.26585,23.59383],[78.2548,23.59077],[78.25035,23.586],[78.24503,23.58519],[78.2429,23.58337],[78.24215,23.57965],[78.24496,23.57031],[78.24253,23.56849],[78.23903,23.56893],[78.24326,23.56723],[78.24338,23.56572],[78.23941,23.56603],[78.23938,23.56298],[78.23474,23.56055],[78.22701,23.56203],[78.22562,23.56106],[78.2257,23.55472],[78.23021,23.55186],[78.23094,23.54671],[78.22553,23.54568],[78.22385,23.54014],[78.22692,23.53754],[78.22698,23.5336],[78.22272,23.52796],[78.21777,23.52565],[78.21187,23.52629],[78.21065,23.52838],[78.20807,23.52893],[78.20808,23.53164],[78.20616,23.52791],[78.20435,23.53137],[78.19875,23.53293],[78.19741,23.53468],[78.19721,23.54478],[78.19453,23.54324],[78.19437,23.53937],[78.18824,23.53623],[78.18706,23.53221],[78.18251,23.52763],[78.18056,23.52772],[78.1801,23.52469],[78.16504,23.52687],[78.16447,23.52529],[78.1594,23.52342],[78.15861,23.51949],[78.15634,23.51841],[78.14722,23.51695],[78.1379,23.51688],[78.13551,23.51825],[78.1304,23.51156],[78.13524,23.50512],[78.13409,23.49798],[78.1368,23.48772],[78.13506,23.48606],[78.13534,23.48269],[78.13844,23.47949],[78.14396,23.47875],[78.14615,23.4746],[78.12908,23.47608],[78.11713,23.47137],[78.11202,23.4725],[78.10262,23.46666],[78.10533,23.46043],[78.09666,23.45878],[78.0847,23.45037],[78.0665,23.45707],[78.05418,23.4578],[78.04512,23.46356],[78.04405,23.46884],[78.03756,23.46938],[78.03038,23.46709],[78.02909,23.46975],[78.02208,23.47148],[78.02192,23.47008],[78.01801,23.46962],[78.01143,23.47281],[78.0071,23.4675],[78.00055,23.46706],[77.9956,23.45936],[77.99512,23.45598],[77.99694,23.45361],[77.98881,23.453],[77.99717,23.4317],[77.99562,23.4241],[77.99394,23.42272],[77.99734,23.41363],[78.00694,23.40814],[78.01445,23.40738],[78.01524,23.40614],[78.02595,23.40763],[78.03188,23.40061],[78.0329,23.40252],[78.03831,23.4015],[78.04425,23.40312],[78.04528,23.40072],[78.04647,23.40277],[78.04847,23.40237],[78.04769,23.39107],[78.05779,23.38674],[78.05731,23.38232],[78.05478,23.38189],[78.05078,23.37541],[78.05225,23.37476],[78.05218,23.36378],[78.04113,23.36324],[78.03743,23.35845],[78.03324,23.35723],[78.03061,23.35339],[78.02506,23.35054],[78.02448,23.34473],[78.02222,23.34374],[78.0209,23.34395],[78.02005,23.34724],[78.01528,23.34867],[78.01558,23.35114],[78.00713,23.35095],[78.00524,23.35494],[78.00517,23.36208],[78.00225,23.36424],[77.99814,23.36274],[77.98884,23.36436],[77.97727,23.37122],[77.9634,23.37495],[77.9619,23.37257],[77.95831,23.37298],[77.95757,23.38558],[77.95257,23.39433],[77.95687,23.39796],[77.95612,23.40013],[77.95742,23.40109],[77.95572,23.4028],[77.9575,23.405],[77.95585,23.40652],[77.95875,23.40958],[77.95504,23.41615],[77.95947,23.41816],[77.95994,23.42082],[77.9579,23.42257],[77.93049,23.42115],[77.92668,23.42477],[77.92758,23.42832],[77.92568,23.43335],[77.91616,23.43566],[77.91375,23.44895],[77.89407,23.44795],[77.89088,23.44346],[77.8859,23.4454],[77.88014,23.44514],[77.87887,23.43996],[77.86953,23.43623],[77.86678,23.43649],[77.86234,23.44087],[77.85242,23.43945],[77.84897,23.44141],[77.84,23.44201],[77.83643,23.45275],[77.83107,23.45483],[77.82877,23.45843],[77.82167,23.45499],[77.81149,23.45564],[77.80924,23.46036],[77.8051,23.46329],[77.80532,23.46518],[77.79787,23.47359],[77.79815,23.47656],[77.7923,23.47881],[77.7921,23.48103],[77.78719,23.484],[77.78654,23.48729],[77.78007,23.48867],[77.77282,23.4851],[77.7724,23.4927],[77.77395,23.49514],[77.77173,23.49781],[77.77207,23.50271],[77.76437,23.50128],[77.76234,23.50235],[77.76248,23.50557],[77.75652,23.50751],[77.76552,23.52019],[77.76437,23.52233],[77.75655,23.52485],[77.75633,23.52661],[77.74717,23.52519],[77.74416,23.52543],[77.74403,23.52702],[77.74041,23.52644],[77.73591,23.53681],[77.72817,23.53464],[77.72329,23.53537],[77.71576,23.54481],[77.71657,23.5528],[77.71382,23.55629],[77.71288,23.56134],[77.7076,23.56446],[77.70273,23.56452],[77.70061,23.56268],[77.70111,23.55809],[77.70528,23.55113],[77.70064,23.54297],[77.69166,23.53431],[77.68284,23.53083],[77.68357,23.52465],[77.67693,23.51852],[77.66169,23.52444],[77.66373,23.5279],[77.6611,23.5302],[77.66157,23.53454],[77.65506,23.53577],[77.65439,23.54137],[77.65162,23.54396],[77.6478,23.54484],[77.64685,23.54239],[77.64181,23.54368],[77.63956,23.54997],[77.62599,23.55256],[77.6225,23.54431],[77.62409,23.53901],[77.62221,23.53718],[77.62543,23.52611],[77.62727,23.52642],[77.64745,23.50943],[77.65015,23.50145],[77.64504,23.49344],[77.64713,23.4937],[77.65003,23.48466],[77.64576,23.4783],[77.63552,23.47483],[77.63487,23.46935],[77.62951,23.47002],[77.62428,23.46508],[77.61902,23.46632],[77.60753,23.47652],[77.60386,23.47801],[77.60047,23.48287],[77.60067,23.48738],[77.56916,23.49063],[77.56599,23.50539],[77.55779,23.50449],[77.54957,23.50109],[77.54284,23.50086],[77.53645,23.50232],[77.5332,23.50491],[77.52031,23.50314],[77.5182,23.50739],[77.51663,23.50731],[77.51231,23.49905],[77.51222,23.49329],[77.50117,23.48324],[77.5049,23.47559],[77.5018,23.47184],[77.50066,23.46285],[77.49714,23.45698],[77.49758,23.45123],[77.49318,23.44731],[77.49574,23.43718],[77.4913,23.42731],[77.48933,23.4166],[77.50187,23.41388],[77.50157,23.40826],[77.50445,23.4079],[77.50774,23.40319],[77.51109,23.40191],[77.51725,23.41471],[77.53485,23.41813],[77.55488,23.41573],[77.55912,23.40935],[77.55775,23.40495],[77.55962,23.4016],[77.55761,23.39836],[77.55139,23.39725],[77.54803,23.39422],[77.54704,23.3786],[77.55221,23.3765],[77.55619,23.37927],[77.5566,23.37811],[77.55786,23.37881],[77.55872,23.37721],[77.55687,23.37712],[77.55521,23.37269],[77.56228,23.36637],[77.56414,23.36214],[77.57564,23.35673],[77.58086,23.35685],[77.58032,23.35187],[77.58316,23.35229],[77.58162,23.35017],[77.58091,23.34137],[77.62337,23.345],[77.62695,23.33953],[77.61915,23.32899],[77.62758,23.31841],[77.62583,23.31508],[77.62124,23.31634],[77.60535,23.3094],[77.59744,23.29918],[77.58922,23.2932],[77.58586,23.28791],[77.58844,23.28325],[77.58701,23.27788],[77.58216,23.27209],[77.58342,23.26816],[77.58733,23.26692],[77.59518,23.25636],[77.58603,23.24945],[77.58801,23.24294],[77.59087,23.24047],[77.59189,23.2269],[77.59484,23.22484],[77.59422,23.22248],[77.58943,23.21995],[77.58905,23.21574],[77.58624,23.21256],[77.58712,23.21175],[77.5791,23.19508],[77.57316,23.19625],[77.57249,23.18683],[77.57909,23.18532],[77.57999,23.18695],[77.58143,23.18512],[77.57886,23.17884],[77.5582,23.17492],[77.55811,23.16552],[77.56181,23.1635],[77.56056,23.15642],[77.56273,23.15516],[77.56409,23.15729],[77.56607,23.15729],[77.56614,23.15247],[77.56136,23.13758],[77.5466,23.1383],[77.54412,23.13793],[77.54319,23.1347],[77.53764,23.13443],[77.53737,23.13001],[77.53304,23.12563],[77.53311,23.12257],[77.53536,23.12133],[77.5346,23.11887],[77.53089,23.11913],[77.52429,23.11616],[77.52273,23.118],[77.51641,23.11624],[77.51529,23.11696],[77.51606,23.12034],[77.51475,23.12073],[77.51265,23.11747],[77.50971,23.11678],[77.51142,23.11202],[77.50641,23.111],[77.506,23.10663],[77.5007,23.10396],[77.50146,23.09995],[77.4982,23.09897],[77.49404,23.10054],[77.48887,23.09517],[77.48719,23.09695],[77.48235,23.09703],[77.48322,23.09298],[77.47952,23.09438],[77.47369,23.09388],[77.47268,23.09939],[77.46514,23.09355],[77.46376,23.09492],[77.45777,23.09508],[77.45351,23.08632],[77.45112,23.08797],[77.44735,23.08789],[77.44489,23.08587],[77.43739,23.08791],[77.43371,23.08693],[77.43074,23.08935],[77.42788,23.08749],[77.41456,23.08534],[77.41137,23.08182],[77.40807,23.08178],[77.40204,23.08479],[77.4013,23.07832],[77.38543,23.07477],[77.37456,23.07001],[77.35743,23.05165],[77.3389,23.03887],[77.3509,23.03651],[77.35324,23.03359],[77.35356,23.02978],[77.35692,23.02623],[77.35764,23.02234],[77.36415,23.01906],[77.36952,23.01098],[77.37517,23.00789],[77.39007,22.99494],[77.39165,22.98864],[77.39875,22.98337],[77.40107,22.97828],[77.40477,22.97514],[77.40622,22.9713],[77.40502,22.96328],[77.40626,22.96082],[77.42031,22.96884],[77.42435,22.96645],[77.42834,22.95918],[77.43558,22.95911],[77.43792,22.95733],[77.43155,22.95324],[77.43091,22.95101],[77.44124,22.94519],[77.44211,22.94165],[77.43613,22.93416],[77.43592,22.93045],[77.44505,22.92036],[77.43657,22.9119],[77.43601,22.90915],[77.44398,22.9071],[77.44664,22.91078],[77.44444,22.91433],[77.45381,22.91931],[77.45644,22.91772],[77.4635,22.91885],[77.47916,22.9115],[77.47843,22.90875],[77.48195,22.902],[77.49433,22.89219],[77.50159,22.89302],[77.5027,22.89698],[77.50621,22.89996],[77.52281,22.90149],[77.52703,22.90431],[77.53039,22.90356],[77.53278,22.90201],[77.53213,22.89855],[77.52801,22.89563],[77.52804,22.88646],[77.52456,22.88325],[77.52395,22.88027],[77.52707,22.87617],[77.53653,22.87751],[77.5369,22.87359],[77.54094,22.87109],[77.53728,22.86965],[77.53592,22.86494],[77.54183,22.85694],[77.55091,22.85936],[77.55586,22.86649],[77.55904,22.87762],[77.5647,22.88454],[77.57124,22.88059],[77.57476,22.87487],[77.58142,22.87465],[77.58736,22.87659],[77.58994,22.87205],[77.59847,22.86534],[77.60846,22.86139],[77.62368,22.85173],[77.63223,22.84603],[77.63896,22.83882],[77.64352,22.84299],[77.64722,22.84393],[77.65077,22.84822],[77.65784,22.84695],[77.6801,22.85296],[77.68518,22.85329],[77.69278,22.84798],[77.70529,22.84683],[77.70558,22.84934],[77.68958,22.85224],[77.68275,22.8619],[77.68376,22.86987],[77.68786,22.87324],[77.69004,22.88436],[77.70397,22.89155],[77.72384,22.89729],[77.72345,22.90008],[77.76687,22.91324],[77.77194,22.91056],[77.77505,22.91112],[77.77801,22.90707],[77.78924,22.90678],[77.82897,22.92695],[77.83179,22.93263],[77.85338,22.94402],[77.85485,22.94894],[77.87052,22.9512],[77.88136,22.95607],[77.89936,22.95992],[77.9205,22.96671],[77.92677,22.9639],[77.93034,22.96661],[77.96104,22.96856],[77.9649,22.96377],[77.96746,22.95701],[77.96501,22.94182],[77.96216,22.9395],[77.96551,22.93578],[77.96494,22.93049],[77.96633,22.92746],[77.96444,22.92518],[77.96679,22.92181],[77.96517,22.91594],[77.95943,22.91236],[77.96854,22.91003],[77.97271,22.91285],[77.97903,22.91131],[77.98301,22.91743],[77.98966,22.91985],[77.98909,22.92261],[77.99054,22.9252],[78.00157,22.92493],[78.00543,22.92997],[78.01296,22.9298],[78.01435,22.92712],[78.01347,22.92305],[78.02215,22.92165],[78.02356,22.91269],[78.03459,22.91207],[78.03096,22.88538],[78.02732,22.88256],[78.01896,22.88238],[78.01858,22.87324],[78.0146,22.86984],[78.00922,22.8612],[78.00903,22.85485],[78.02609,22.85265],[78.02567,22.8477],[78.03143,22.84194],[78.02555,22.83829],[78.02129,22.83319],[78.02182,22.83115],[78.02642,22.82846],[78.02742,22.82407],[78.0321,22.8215],[78.03128,22.81569],[78.02852,22.81374],[78.02974,22.81062],[78.03242,22.81007],[78.03033,22.80816],[78.03126,22.80655],[78.02836,22.805],[78.02814,22.80191],[78.03585,22.80201],[78.0538,22.81266],[78.06103,22.81425],[78.0692,22.81154],[78.0797,22.80213],[78.09591,22.79293],[78.10318,22.79012],[78.10956,22.78968],[78.12124,22.79447],[78.12505,22.79947],[78.12666,22.80631],[78.1251,22.82913],[78.12807,22.83716],[78.16154,22.86415],[78.18307,22.87128],[78.18577,22.87529],[78.188,22.88361],[78.19481,22.89076],[78.20623,22.89479],[78.21633,22.89303],[78.2264,22.87664],[78.2322,22.87054],[78.23772,22.86738],[78.25912,22.87589],[78.26524,22.87478],[78.27625,22.86796],[78.27995,22.86784],[78.28902,22.87402],[78.29754,22.88909],[78.30725,22.90224],[78.32074,22.91644],[78.32869,22.92037],[78.34677,22.91774],[78.35446,22.92047],[78.37834,22.9389],[78.39315,22.95956],[78.40272,22.96605],[78.43346,22.97744],[78.45912,23.00053],[78.46635,23.00431],[78.47669,23.00672],[78.49699,23.00595],[78.51469,23.01215],[78.53502,23.01103],[78.54811,23.01592],[78.55701,23.01723],[78.57111,23.01556],[78.58767,23.0109],[78.59476,23.01138],[78.60077,23.01302],[78.61095,23.01895],[78.61731,23.02788],[78.62214,23.0305],[78.62897,23.02987],[78.64116,23.02301],[78.64838,23.02201],[78.65375,23.02394],[78.663,23.03294],[78.67037,23.03739],[78.67831,23.03847],[78.69309,23.0353],[78.7109,23.04156],[78.73183,23.04431],[78.73852,23.05874],[78.74377,23.06174],[78.74864,23.06058],[78.74721,23.06603],[78.74303,23.06741],[78.7432,23.06928],[78.75159,23.06748],[78.75577,23.07384],[78.75892,23.07051],[78.76134,23.07435],[78.75688,23.07674],[78.75748,23.07907],[78.76703,23.07576],[78.76902,23.08262],[78.77534,23.0801],[78.77549,23.08566],[78.77752,23.08876],[78.79069,23.08864],[78.79321,23.0908],[78.79702,23.08979],[78.80131,23.09444],[78.80103,23.09931],[78.80443,23.09974],[78.80209,23.10197],[78.80213,23.105],[78.80647,23.10874],[78.80095,23.11248],[78.79504,23.11277],[78.78807,23.11737],[78.79289,23.1207],[78.79122,23.12471],[78.79778,23.13393],[78.79667,23.14003],[78.79789,23.1452],[78.8011,23.14491],[78.80214,23.1462],[78.80093,23.15309],[78.80183,23.15687],[78.7992,23.15977],[78.80645,23.16309],[78.80243,23.17861],[78.80254,23.18395],[78.80681,23.19284],[78.80645,23.19726],[78.81179,23.20354],[78.81649,23.21338],[78.81625,23.22223],[78.81161,23.22685],[78.81165,23.23111],[78.80928,23.23572],[78.80359,23.23837],[78.80287,23.2423],[78.79954,23.24146],[78.79153,23.24641],[78.78372,23.24895],[78.77874,23.24886],[78.77506,23.25114],[78.76894,23.24357],[78.7649,23.2474],[78.76005,23.24768],[78.75965,23.25051],[78.76253,23.25628],[78.75959,23.26178],[78.76148,23.26312],[78.76041,23.26823],[78.76557,23.27325],[78.76293,23.2808],[78.76335,23.2843],[78.77151,23.28776],[78.77295,23.29356],[78.77085,23.29651],[78.76291,23.29893],[78.76289,23.30597],[78.75848,23.31034],[78.74774,23.30933],[78.75036,23.31828],[78.74621,23.31827],[78.74696,23.32183],[78.73493,23.32715],[78.73382,23.33926],[78.72785,23.33969],[78.72774,23.3441],[78.72521,23.34731],[78.71994,23.35183],[78.71616,23.35245],[78.716,23.3556],[78.70825,23.36135],[78.70889,23.35379],[78.70015,23.35462],[78.69871,23.35078],[78.69625,23.34946],[78.68625,23.34689],[78.68505,23.34518],[78.67969,23.34596],[78.67556,23.34452],[78.66441,23.33211],[78.65958,23.33741],[78.65326,23.33947],[78.64414,23.34539],[78.6414,23.35601],[78.63125,23.36158],[78.63313,23.36614],[78.63044,23.36886],[78.62751,23.381],[78.62963,23.38696],[78.62942,23.39817],[78.62687,23.4119],[78.62396,23.41193],[78.62539,23.41675],[78.61493,23.42028],[78.6126,23.41865],[78.61081,23.42353],[78.60496,23.42113],[78.60102,23.42412],[78.60357,23.4254],[78.60359,23.43007],[78.60845,23.43347],[78.60853,23.43761],[78.61491,23.43592],[78.61839,23.43658],[78.62221,23.44634],[78.6242,23.44718],[78.62489,23.44369],[78.62876,23.45122],[78.63371,23.44976],[78.63826,23.45047],[78.65448,23.44325],[78.65819,23.44337],[78.66171,23.44727],[78.66338,23.44711],[78.6637,23.44989],[78.66777,23.45477],[78.66935,23.46089],[78.66856,23.46349],[78.67181,23.46604],[78.66805,23.46856],[78.66584,23.47343],[78.66979,23.48291],[78.67308,23.48544],[78.67761,23.49339],[78.69071,23.50052],[78.69656,23.50118],[78.70109,23.51718],[78.71535,23.5181],[78.71936,23.53562],[78.72936,23.5325],[78.7343,23.52914],[78.73794,23.53121],[78.73838,23.54122],[78.7403,23.54504],[78.74495,23.54745],[78.74274,23.55484],[78.74149,23.56886],[78.73951,23.5701],[78.74003,23.57869],[78.73231,23.58447],[78.72902,23.58265],[78.73037,23.57845],[78.72921,23.57655],[78.72387,23.57955],[78.71937,23.57672],[78.71249,23.57709],[78.70982,23.57563],[78.70197,23.57699],[78.69201,23.5706],[78.69038,23.56615],[78.6852,23.56616],[78.6805,23.56065],[78.65013,23.56338],[78.645,23.55953],[78.64441,23.54997],[78.64076,23.546],[78.63312,23.55138],[78.62365,23.55394],[78.61453,23.54652],[78.60653,23.54958],[78.59998,23.54588],[78.59709,23.54624],[78.59264,23.54934],[78.59248,23.55212],[78.58567,23.55398],[78.58043,23.55111],[78.57761,23.55161],[78.57456,23.55421],[78.5719,23.56525],[78.56785,23.56777],[78.56548,23.56496],[78.55966,23.5636],[78.55797,23.56016],[78.55307,23.56115],[78.5415,23.55819],[78.53925,23.56357],[78.53692,23.56375],[78.53704,23.55633],[78.5394,23.55474],[78.53529,23.55039],[78.53396,23.54968],[78.52517,23.55364],[78.51968,23.55337],[78.51802,23.55135],[78.51956,23.54847],[78.51765,23.54806],[78.51693,23.54593],[78.51671,23.53694],[78.51285,23.53541],[78.50866,23.53716],[78.50906,23.53143],[78.50342,23.53089],[78.49867,23.53727],[78.50287,23.54911],[78.50663,23.55322],[78.50702,23.55573],[78.50405,23.56194],[78.50704,23.56464],[78.50626,23.56761],[78.50238,23.57148],[78.5031,23.57981],[78.49939,23.58226],[78.49877,23.58468],[78.50133,23.5858],[78.49957,23.58915],[78.50617,23.59268],[78.51078,23.60165],[78.51063,23.60439],[78.51259,23.60522],[78.51291,23.60778],[78.51569,23.60839],[78.5132,23.61074],[78.51399,23.61267],[78.51243,23.61671],[78.51395,23.62062],[78.50926,23.62385],[78.50957,23.63343],[78.50653,23.63626],[78.50883,23.63936],[78.51282,23.64083],[78.51216,23.64615],[78.51689,23.65052],[78.51519,23.6579],[78.50659,23.65314],[78.50288,23.64651],[78.49546,23.64748],[78.48451,23.64232],[78.48369,23.64072],[78.48646,23.63793],[78.48529,23.6362],[78.48128,23.63901],[78.47608,23.63983],[78.47341,23.64597],[78.47436,23.64948],[78.46912,23.64493],[78.46925,23.64286],[78.46736,23.64384],[78.46609,23.64543],[78.46728,23.65037],[78.47109,23.65485],[78.46606,23.66206],[78.46928,23.66792],[78.46896,23.67502],[78.47027,23.67738],[78.46421,23.67678],[78.45743,23.6858],[78.45672,23.68953],[78.44708,23.69154],[78.4443,23.70154],[78.44598,23.70426],[78.44429,23.71087],[78.44504,23.7144],[78.4386,23.71919],[78.44088,23.72045],[78.44169,23.72329],[78.44015,23.72564],[78.4363,23.72609],[78.43444,23.74492],[78.42971,23.74543]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"422","area_level":"District","area_name":"Rajgarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.6918,24.28651],[76.69275,24.28023],[76.68753,24.27918],[76.68127,24.27507],[76.6781,24.27123],[76.67775,24.26664],[76.66469,24.26188],[76.65673,24.26483],[76.65303,24.2635],[76.64343,24.26939],[76.63997,24.26822],[76.6366,24.26425],[76.6372,24.25834],[76.6313,24.26082],[76.62386,24.25915],[76.62257,24.25735],[76.61765,24.25883],[76.61479,24.25362],[76.6112,24.23865],[76.5956,24.24402],[76.58606,24.24444],[76.58354,24.24287],[76.58784,24.23473],[76.59439,24.22844],[76.59523,24.22332],[76.58944,24.21702],[76.58341,24.21627],[76.582,24.21134],[76.57774,24.21175],[76.57025,24.20899],[76.56876,24.20483],[76.56654,24.20338],[76.56427,24.19095],[76.57467,24.18656],[76.57773,24.17917],[76.57489,24.17572],[76.5705,24.17489],[76.56989,24.17802],[76.56618,24.17444],[76.5618,24.17334],[76.55195,24.16328],[76.54469,24.16285],[76.52742,24.15673],[76.52241,24.15707],[76.51537,24.16263],[76.51293,24.16659],[76.50944,24.18213],[76.50873,24.19358],[76.50454,24.20309],[76.49947,24.20607],[76.4958,24.2054],[76.48054,24.20808],[76.47403,24.22217],[76.47048,24.22298],[76.47051,24.22615],[76.46272,24.22322],[76.46052,24.21851],[76.45227,24.20936],[76.43022,24.22131],[76.41622,24.22063],[76.41642,24.21097],[76.42057,24.20864],[76.4148,24.20064],[76.41168,24.20051],[76.40796,24.20352],[76.40158,24.21527],[76.38191,24.221],[76.3729,24.22785],[76.35834,24.23544],[76.35721,24.23974],[76.34856,24.24062],[76.33988,24.24411],[76.32291,24.24554],[76.31911,24.24481],[76.31084,24.23763],[76.30186,24.23608],[76.29568,24.23185],[76.28736,24.22986],[76.2854,24.20954],[76.28232,24.20731],[76.27554,24.21088],[76.26882,24.21001],[76.25813,24.21463],[76.25211,24.21428],[76.24213,24.21878],[76.22276,24.21554],[76.21752,24.21126],[76.2125,24.20962],[76.21155,24.19909],[76.21653,24.17833],[76.21414,24.16228],[76.21497,24.1503],[76.21628,24.14713],[76.21986,24.14507],[76.23007,24.14775],[76.23291,24.14654],[76.23641,24.14204],[76.23793,24.13478],[76.23658,24.12882],[76.233,24.12281],[76.22264,24.11549],[76.21823,24.10355],[76.22753,24.08674],[76.21192,24.08561],[76.20911,24.08799],[76.2089,24.09149],[76.20059,24.0898],[76.19188,24.09078],[76.1902,24.08737],[76.19019,24.07448],[76.19927,24.05939],[76.19893,24.05527],[76.20363,24.03808],[76.21805,24.04119],[76.2246,24.04058],[76.22679,24.04445],[76.24266,24.04404],[76.25443,24.04015],[76.2585,24.03295],[76.25674,24.01798],[76.26033,24.00044],[76.25557,23.98119],[76.29275,23.96544],[76.29979,23.96492],[76.30316,23.96097],[76.30232,23.94624],[76.30887,23.93893],[76.31438,23.9231],[76.31191,23.91865],[76.30419,23.91535],[76.29968,23.91145],[76.29704,23.90615],[76.29853,23.89779],[76.30205,23.89498],[76.32647,23.88795],[76.32793,23.88439],[76.32697,23.86872],[76.32852,23.86424],[76.34896,23.85761],[76.35331,23.85423],[76.35633,23.84918],[76.35684,23.84266],[76.35423,23.831],[76.35672,23.81898],[76.36449,23.81322],[76.37718,23.8137],[76.38172,23.81015],[76.38241,23.80255],[76.3771,23.79406],[76.37433,23.77603],[76.38028,23.7676],[76.39606,23.7664],[76.39875,23.75824],[76.39672,23.75143],[76.40185,23.73727],[76.40046,23.72933],[76.40236,23.72659],[76.41034,23.72277],[76.41198,23.7197],[76.41099,23.71394],[76.40514,23.70493],[76.40406,23.69926],[76.40566,23.69143],[76.40167,23.68487],[76.40178,23.67668],[76.40617,23.67097],[76.42904,23.65436],[76.43724,23.63972],[76.43512,23.62995],[76.43631,23.62668],[76.44135,23.62403],[76.44625,23.62515],[76.45192,23.62191],[76.46132,23.60104],[76.46313,23.59251],[76.45975,23.59182],[76.45369,23.59836],[76.45156,23.60276],[76.45267,23.60449],[76.43841,23.60565],[76.43717,23.5982],[76.44133,23.59538],[76.44011,23.5845],[76.44602,23.5823],[76.44131,23.56642],[76.43785,23.56843],[76.43484,23.56531],[76.43709,23.55635],[76.4363,23.54557],[76.45417,23.54428],[76.45507,23.53998],[76.4595,23.53535],[76.468,23.53329],[76.47041,23.52747],[76.48128,23.52224],[76.48341,23.51217],[76.489,23.51172],[76.49925,23.51552],[76.50382,23.5144],[76.50449,23.51205],[76.50674,23.51165],[76.50197,23.52438],[76.49647,23.53146],[76.49225,23.53131],[76.48685,23.5417],[76.49141,23.53762],[76.49633,23.53917],[76.50016,23.53286],[76.51185,23.53041],[76.51322,23.54869],[76.50904,23.5509],[76.50687,23.55608],[76.50248,23.55685],[76.50254,23.56677],[76.51441,23.56942],[76.52636,23.57581],[76.5344,23.56956],[76.5352,23.566],[76.54833,23.56348],[76.55416,23.56549],[76.55767,23.5648],[76.57442,23.55312],[76.57549,23.54944],[76.58642,23.54794],[76.58799,23.55197],[76.59426,23.55554],[76.60013,23.56359],[76.61885,23.55573],[76.62435,23.54902],[76.63134,23.54562],[76.63132,23.54187],[76.65186,23.54064],[76.66218,23.53208],[76.66058,23.51496],[76.65388,23.50077],[76.66632,23.5009],[76.68573,23.49718],[76.6872,23.49108],[76.69338,23.48591],[76.70029,23.48929],[76.71402,23.48955],[76.71805,23.49177],[76.72274,23.49134],[76.73064,23.49371],[76.7365,23.49326],[76.75995,23.49656],[76.76236,23.48637],[76.76818,23.484],[76.76753,23.48235],[76.77414,23.47831],[76.77684,23.47265],[76.78569,23.47135],[76.78016,23.46557],[76.7855,23.4636],[76.78924,23.46104],[76.79046,23.45806],[76.79331,23.45707],[76.80172,23.45815],[76.80259,23.46636],[76.81487,23.46803],[76.81464,23.47215],[76.81025,23.47823],[76.80928,23.48239],[76.81828,23.48704],[76.82936,23.48907],[76.84273,23.48809],[76.84296,23.49823],[76.85032,23.49528],[76.87611,23.49768],[76.87711,23.51315],[76.88426,23.51357],[76.88847,23.52265],[76.90788,23.5182],[76.91565,23.51371],[76.90363,23.49477],[76.91593,23.49353],[76.92106,23.4909],[76.92475,23.48748],[76.92578,23.476],[76.93385,23.47179],[76.94058,23.4811],[76.94273,23.48072],[76.94329,23.48766],[76.94782,23.49212],[76.95175,23.4992],[76.96203,23.50486],[76.96769,23.50607],[76.97963,23.50038],[76.98406,23.49958],[76.98738,23.5018],[76.99885,23.49893],[77.00542,23.49486],[77.00837,23.48655],[77.02844,23.48307],[77.03062,23.47105],[77.03508,23.46756],[77.03461,23.46511],[77.0366,23.46494],[77.03667,23.46311],[77.03817,23.46535],[77.04317,23.465],[77.04974,23.46705],[77.06844,23.48075],[77.07462,23.48221],[77.08041,23.48138],[77.09486,23.49024],[77.10041,23.49792],[77.10001,23.50282],[77.1044,23.51005],[77.10506,23.51933],[77.11387,23.52892],[77.11845,23.53784],[77.12731,23.54582],[77.13867,23.54773],[77.13802,23.56328],[77.13476,23.57352],[77.1352,23.57675],[77.14119,23.58197],[77.14365,23.58817],[77.14054,23.59603],[77.13247,23.59927],[77.13026,23.60183],[77.12632,23.6129],[77.12763,23.62078],[77.13755,23.63998],[77.15674,23.66209],[77.16032,23.67177],[77.16964,23.67675],[77.16965,23.67921],[77.16609,23.68197],[77.16598,23.68417],[77.17672,23.69321],[77.17759,23.69872],[77.18631,23.71763],[77.187,23.72607],[77.19125,23.74071],[77.20359,23.75886],[77.2062,23.77496],[77.20821,23.7779],[77.2153,23.78181],[77.2173,23.7857],[77.21764,23.79098],[77.21429,23.79809],[77.21543,23.8036],[77.22377,23.81305],[77.2251,23.82477],[77.22383,23.83283],[77.21399,23.84023],[77.22453,23.84783],[77.22114,23.86223],[77.22639,23.89287],[77.21007,23.8941],[77.19393,23.8916],[77.18949,23.89288],[77.1909,23.90292],[77.18839,23.9067],[77.18874,23.91724],[77.18563,23.93101],[77.18136,23.93713],[77.17108,23.93892],[77.16551,23.94728],[77.16642,23.95087],[77.17084,23.95416],[77.17266,23.95834],[77.17467,23.98398],[77.18137,23.98591],[77.18479,24.00165],[77.17788,24.01242],[77.17641,24.01762],[77.17771,24.02104],[77.18522,24.0256],[77.18756,24.02947],[77.178,24.04849],[77.18327,24.05748],[77.18263,24.0792],[77.15872,24.0812],[77.1513,24.08762],[77.13791,24.08658],[77.13773,24.08817],[77.13417,24.08766],[77.13448,24.09327],[77.13215,24.09362],[77.12668,24.08741],[77.11816,24.0856],[77.11033,24.08795],[77.09724,24.08628],[77.07711,24.07845],[77.06647,24.07847],[77.05882,24.08052],[77.04926,24.07785],[77.04482,24.08202],[77.0393,24.08074],[77.0343,24.08306],[77.02552,24.08318],[77.00854,24.06154],[77.00481,24.06057],[76.98941,24.04778],[76.9817,24.04926],[76.9803,24.04827],[76.9818,24.04643],[76.98106,24.0449],[76.97886,24.04638],[76.97662,24.04446],[76.97138,24.04476],[76.96623,24.05255],[76.96324,24.06237],[76.95229,24.07075],[76.94186,24.07597],[76.93188,24.08895],[76.92123,24.09668],[76.91737,24.10198],[76.90695,24.10636],[76.8943,24.10568],[76.88832,24.10736],[76.8865,24.10992],[76.88671,24.11488],[76.87785,24.12282],[76.88009,24.13506],[76.85426,24.13576],[76.85377,24.13353],[76.83632,24.12673],[76.83308,24.12202],[76.81158,24.12275],[76.80637,24.11818],[76.80186,24.11656],[76.79613,24.12136],[76.79,24.12272],[76.78822,24.13215],[76.78088,24.1394],[76.77837,24.14699],[76.7738,24.15007],[76.77019,24.16012],[76.75978,24.16014],[76.76078,24.165],[76.75792,24.16826],[76.72619,24.16857],[76.72608,24.16072],[76.71912,24.15869],[76.71143,24.16384],[76.69831,24.16847],[76.69858,24.17193],[76.69296,24.17641],[76.69204,24.18057],[76.6863,24.1862],[76.67589,24.19085],[76.6781,24.20489],[76.69044,24.23057],[76.69436,24.23631],[76.70051,24.23898],[76.70273,24.2432],[76.70148,24.25042],[76.69409,24.26166],[76.69309,24.26793],[76.69523,24.27763],[76.69328,24.28572],[76.6918,24.28651]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"423","area_level":"District","area_name":"Ratlam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.48946,23.90737],[75.47737,23.91152],[75.46499,23.9124],[75.46206,23.91476],[75.45966,23.91993],[75.45725,23.91179],[75.45328,23.90803],[75.44251,23.90592],[75.43118,23.90854],[75.41819,23.88985],[75.41391,23.88593],[75.37971,23.87351],[75.36983,23.86424],[75.36622,23.85864],[75.35589,23.8334],[75.35277,23.81577],[75.35006,23.80889],[75.3457,23.80361],[75.34103,23.8021],[75.32211,23.80415],[75.32782,23.81891],[75.33034,23.83142],[75.3355,23.83264],[75.33458,23.84062],[75.32609,23.84017],[75.31868,23.84525],[75.30251,23.84713],[75.29897,23.85247],[75.2925,23.85237],[75.28607,23.84786],[75.2742,23.84283],[75.27332,23.84093],[75.27465,23.83617],[75.27666,23.83405],[75.27023,23.82281],[75.2558,23.82284],[75.25647,23.83218],[75.25387,23.83674],[75.25292,23.84372],[75.24906,23.84816],[75.24553,23.84886],[75.24195,23.86328],[75.23882,23.8642],[75.22824,23.86309],[75.22829,23.8604],[75.22624,23.85898],[75.217,23.8581],[75.21587,23.85145],[75.21119,23.84496],[75.21043,23.84073],[75.19994,23.82958],[75.18611,23.82939],[75.17117,23.83244],[75.15466,23.83106],[75.15282,23.83241],[75.13745,23.83218],[75.13716,23.83014],[75.13227,23.83099],[75.1288,23.84267],[75.12408,23.85005],[75.1207,23.85059],[75.1161,23.83652],[75.11552,23.8291],[75.10136,23.82921],[75.10019,23.8239],[75.09318,23.81668],[75.08499,23.8181],[75.07885,23.8219],[75.07835,23.82367],[75.06678,23.82359],[75.05246,23.826],[75.04773,23.81401],[75.05626,23.8057],[75.0581,23.79624],[75.05463,23.79078],[75.03948,23.78942],[75.0394,23.78496],[75.04086,23.78424],[75.03965,23.78293],[75.02675,23.78338],[75.02533,23.79111],[75.02118,23.79699],[75.02268,23.80695],[75.01905,23.81467],[75.00989,23.81525],[75.00878,23.80533],[74.9991,23.80392],[74.99704,23.80242],[74.99577,23.79765],[74.96731,23.79889],[74.96559,23.7898],[74.96083,23.78253],[74.95584,23.76839],[74.94836,23.76536],[74.94168,23.76555],[74.93425,23.75792],[74.92452,23.75639],[74.92633,23.7517],[74.93032,23.74956],[74.92996,23.7401],[74.93177,23.73434],[74.9351,23.73284],[74.93638,23.72958],[74.92862,23.72801],[74.92798,23.72406],[74.92526,23.7234],[74.92658,23.72021],[74.92445,23.7184],[74.92023,23.71918],[74.92014,23.71107],[74.9183,23.70563],[74.92159,23.69465],[74.91772,23.69065],[74.89959,23.68402],[74.89946,23.6822],[74.9042,23.68014],[74.90384,23.67474],[74.9071,23.67458],[74.90801,23.6711],[74.91754,23.66941],[74.92168,23.66649],[74.92429,23.65721],[74.92401,23.65065],[74.92841,23.64155],[74.9361,23.63958],[74.93654,23.62877],[74.92735,23.62525],[74.92746,23.6219],[74.92444,23.61999],[74.91499,23.61811],[74.91107,23.61916],[74.91003,23.62222],[74.90679,23.62446],[74.90294,23.6251],[74.90363,23.62314],[74.90087,23.61863],[74.90165,23.61758],[74.89776,23.6161],[74.89361,23.6095],[74.88506,23.6081],[74.88468,23.60663],[74.88208,23.60618],[74.87985,23.59522],[74.86991,23.59193],[74.8709,23.58552],[74.87331,23.58159],[74.87336,23.5769],[74.87137,23.57827],[74.86827,23.57417],[74.85691,23.57393],[74.85351,23.57099],[74.85252,23.56415],[74.85012,23.56068],[74.85089,23.55876],[74.84846,23.55607],[74.84878,23.5544],[74.84663,23.55406],[74.84683,23.55186],[74.84029,23.54988],[74.82923,23.55055],[74.82212,23.54085],[74.81807,23.54237],[74.81032,23.54082],[74.80648,23.53813],[74.8033,23.53308],[74.79901,23.5381],[74.79411,23.55088],[74.77368,23.54437],[74.77092,23.54239],[74.76723,23.53557],[74.76689,23.53086],[74.76237,23.5264],[74.76151,23.52114],[74.73529,23.52057],[74.73468,23.51821],[74.73912,23.51379],[74.73405,23.50818],[74.73294,23.50144],[74.72924,23.49662],[74.72373,23.49629],[74.71872,23.50323],[74.70349,23.50501],[74.69674,23.50266],[74.68653,23.49474],[74.68034,23.49478],[74.68217,23.48789],[74.68131,23.48523],[74.67703,23.48273],[74.66606,23.4825],[74.66642,23.47752],[74.65895,23.4673],[74.65188,23.46228],[74.63872,23.46356],[74.6368,23.46728],[74.63277,23.46951],[74.63354,23.46707],[74.63187,23.46139],[74.61623,23.45978],[74.6127,23.46193],[74.60389,23.45726],[74.60974,23.45367],[74.60991,23.45163],[74.60617,23.44453],[74.59932,23.43726],[74.59907,23.42875],[74.59657,23.42828],[74.59425,23.42415],[74.58718,23.42651],[74.58184,23.42156],[74.57507,23.42321],[74.57235,23.42067],[74.56995,23.4126],[74.57304,23.39636],[74.56657,23.38614],[74.56949,23.37839],[74.56894,23.3763],[74.56513,23.37285],[74.55925,23.37118],[74.55769,23.368],[74.5577,23.36191],[74.55469,23.36129],[74.54663,23.3649],[74.54149,23.36382],[74.53982,23.36187],[74.54156,23.35749],[74.53823,23.34667],[74.53993,23.33529],[74.53527,23.33082],[74.51404,23.32805],[74.51484,23.31627],[74.52362,23.32113],[74.52973,23.32067],[74.53108,23.3128],[74.52792,23.31075],[74.53192,23.30636],[74.53427,23.30065],[74.53957,23.2997],[74.54147,23.28673],[74.54667,23.27712],[74.54967,23.27861],[74.55348,23.27747],[74.55647,23.27843],[74.56337,23.28826],[74.56321,23.29269],[74.56824,23.29518],[74.57437,23.29517],[74.57369,23.28922],[74.57685,23.28481],[74.57934,23.28461],[74.58528,23.27951],[74.58499,23.27694],[74.58922,23.27904],[74.59829,23.27694],[74.60168,23.28023],[74.60795,23.28246],[74.61689,23.27938],[74.62185,23.27367],[74.62484,23.27387],[74.62391,23.27179],[74.62681,23.25869],[74.63856,23.25541],[74.64856,23.25593],[74.66378,23.26741],[74.67314,23.26996],[74.67676,23.27381],[74.68622,23.26759],[74.69243,23.26584],[74.69996,23.26837],[74.70107,23.26466],[74.69878,23.25731],[74.70767,23.25483],[74.71277,23.25053],[74.71297,23.2428],[74.71513,23.23699],[74.70881,23.23142],[74.70589,23.23152],[74.70423,23.22885],[74.69167,23.22559],[74.69207,23.21915],[74.70222,23.21451],[74.71711,23.21961],[74.73662,23.22134],[74.74139,23.22529],[74.73582,23.22901],[74.73663,23.23317],[74.75026,23.23989],[74.76663,23.23573],[74.78268,23.24388],[74.78852,23.24402],[74.79061,23.24177],[74.7906,23.23802],[74.78258,23.23152],[74.77842,23.21963],[74.7795,23.21502],[74.7855,23.20602],[74.78556,23.20223],[74.78032,23.19605],[74.76843,23.18859],[74.76732,23.1804],[74.7724,23.17556],[74.78495,23.17534],[74.79345,23.1738],[74.79948,23.17068],[74.80164,23.16718],[74.80048,23.16318],[74.79501,23.16245],[74.78931,23.165],[74.78648,23.16445],[74.78111,23.15926],[74.78055,23.15231],[74.78541,23.14816],[74.7931,23.14814],[74.79719,23.14057],[74.8075,23.13889],[74.81648,23.13423],[74.81982,23.13397],[74.82949,23.14108],[74.83381,23.14237],[74.8501,23.14221],[74.8658,23.13766],[74.89057,23.13785],[74.90149,23.15061],[74.91094,23.15829],[74.91955,23.16197],[74.92446,23.1623],[74.93818,23.15303],[74.94355,23.15285],[74.95462,23.15743],[74.97283,23.14501],[74.99196,23.14321],[74.99309,23.13711],[74.99014,23.12816],[74.99037,23.1209],[74.99465,23.11581],[75.00637,23.10948],[75.01361,23.11272],[75.02805,23.11147],[75.03264,23.11336],[75.03918,23.10872],[75.04825,23.10654],[75.06446,23.10717],[75.0804,23.10462],[75.10707,23.10965],[75.10717,23.11468],[75.10956,23.11524],[75.11409,23.10921],[75.11711,23.10999],[75.12096,23.10778],[75.13382,23.10726],[75.137,23.10498],[75.14036,23.10529],[75.14209,23.10741],[75.14773,23.10668],[75.1493,23.10477],[75.15394,23.10493],[75.15724,23.10931],[75.1598,23.10565],[75.16363,23.10468],[75.16784,23.10602],[75.1692,23.10397],[75.17859,23.10063],[75.18001,23.0997],[75.1778,23.09884],[75.17727,23.09636],[75.18704,23.09203],[75.21131,23.09127],[75.21953,23.08838],[75.23177,23.08769],[75.23791,23.08573],[75.24117,23.0931],[75.2436,23.10884],[75.24388,23.11755],[75.24149,23.11753],[75.23975,23.12672],[75.24219,23.13516],[75.24019,23.13574],[75.23746,23.15389],[75.23897,23.15544],[75.23697,23.16203],[75.23432,23.16365],[75.23519,23.18374],[75.23024,23.18518],[75.22566,23.21034],[75.23936,23.21371],[75.24036,23.22546],[75.24867,23.22493],[75.27604,23.21518],[75.28382,23.21623],[75.28384,23.22659],[75.28274,23.23255],[75.28025,23.23453],[75.28039,23.23761],[75.26708,23.24168],[75.26544,23.24481],[75.26233,23.24523],[75.26331,23.25441],[75.26064,23.26816],[75.26527,23.26909],[75.26734,23.27311],[75.27263,23.268],[75.28158,23.27322],[75.29613,23.27264],[75.30498,23.2702],[75.3082,23.27483],[75.31063,23.27385],[75.3213,23.27587],[75.32486,23.28381],[75.32583,23.29232],[75.31374,23.29384],[75.3124,23.29696],[75.30653,23.29602],[75.30531,23.29873],[75.29514,23.29983],[75.28223,23.29649],[75.27872,23.29735],[75.26702,23.29478],[75.25981,23.29496],[75.2589,23.31258],[75.23941,23.31363],[75.23458,23.30894],[75.23221,23.30886],[75.23019,23.3151],[75.22669,23.31946],[75.22331,23.32015],[75.21632,23.32512],[75.20734,23.32046],[75.20374,23.32362],[75.19431,23.32713],[75.19672,23.34184],[75.20432,23.34379],[75.20527,23.34834],[75.199,23.35321],[75.1923,23.35563],[75.19149,23.36868],[75.18116,23.37055],[75.17942,23.38201],[75.17294,23.3856],[75.17071,23.38981],[75.1682,23.38987],[75.16833,23.39406],[75.16604,23.39707],[75.16545,23.39578],[75.16384,23.39915],[75.16281,23.39877],[75.16423,23.3964],[75.15602,23.39661],[75.14998,23.39991],[75.13455,23.4012],[75.13585,23.41097],[75.14819,23.41229],[75.15084,23.41391],[75.151,23.41718],[75.15299,23.4187],[75.15386,23.41681],[75.15682,23.41707],[75.156,23.41943],[75.15865,23.4245],[75.15716,23.42889],[75.15912,23.42983],[75.15428,23.43166],[75.15597,23.43628],[75.15788,23.4381],[75.16435,23.43787],[75.16242,23.44597],[75.16523,23.44756],[75.16938,23.45403],[75.17467,23.45399],[75.17462,23.45604],[75.17254,23.45694],[75.17328,23.45986],[75.17001,23.46182],[75.17262,23.46364],[75.17658,23.46192],[75.17742,23.46391],[75.17295,23.47056],[75.17694,23.47454],[75.17308,23.47643],[75.1735,23.47875],[75.17099,23.48313],[75.17436,23.4833],[75.17513,23.48576],[75.17316,23.49141],[75.17717,23.49669],[75.17606,23.50053],[75.1778,23.50506],[75.18011,23.50198],[75.18705,23.50496],[75.18431,23.50558],[75.18257,23.50899],[75.18432,23.51934],[75.18779,23.52169],[75.18868,23.52618],[75.19921,23.52843],[75.1965,23.53157],[75.19876,23.53598],[75.20531,23.53366],[75.207,23.53216],[75.20721,23.52848],[75.21102,23.52811],[75.20955,23.52634],[75.21034,23.52308],[75.22525,23.5236],[75.22625,23.51688],[75.2292,23.51487],[75.23965,23.5156],[75.2396,23.52081],[75.24323,23.52438],[75.24422,23.53264],[75.25687,23.52977],[75.25684,23.53957],[75.25827,23.54131],[75.26396,23.54337],[75.27438,23.54047],[75.27619,23.54912],[75.27843,23.54917],[75.28152,23.5605],[75.27817,23.56705],[75.28041,23.57035],[75.27814,23.58353],[75.28037,23.58968],[75.28354,23.58968],[75.28367,23.5922],[75.29841,23.59333],[75.3005,23.6024],[75.31269,23.60264],[75.31123,23.60806],[75.31442,23.62177],[75.32853,23.62286],[75.3395,23.62769],[75.34479,23.62616],[75.34533,23.62293],[75.34029,23.62278],[75.34023,23.62065],[75.33321,23.61901],[75.33364,23.59254],[75.34815,23.5944],[75.37232,23.60249],[75.37528,23.59937],[75.38241,23.60036],[75.38735,23.6035],[75.39422,23.603],[75.39741,23.60163],[75.405,23.59214],[75.4063,23.5924],[75.40528,23.5772],[75.41621,23.57534],[75.4181,23.57095],[75.42231,23.56725],[75.44163,23.56253],[75.44224,23.5544],[75.44568,23.54539],[75.45521,23.54468],[75.4616,23.54814],[75.46672,23.53416],[75.47124,23.53136],[75.48981,23.52868],[75.49008,23.52553],[75.50618,23.52571],[75.50802,23.5301],[75.52196,23.53608],[75.52447,23.53928],[75.52476,23.54254],[75.51884,23.54571],[75.50606,23.55152],[75.49872,23.55293],[75.49836,23.55861],[75.49922,23.57003],[75.50432,23.57501],[75.50886,23.57551],[75.50841,23.58424],[75.51339,23.58409],[75.51398,23.59472],[75.51029,23.59541],[75.50503,23.60206],[75.50368,23.61836],[75.51122,23.63116],[75.51531,23.64852],[75.5221,23.66591],[75.532,23.66994],[75.53348,23.66967],[75.53347,23.66804],[75.54107,23.66561],[75.55621,23.66608],[75.55944,23.65561],[75.58266,23.65384],[75.58587,23.65369],[75.58694,23.6608],[75.62141,23.65992],[75.62648,23.67744],[75.62713,23.69512],[75.64184,23.69712],[75.64367,23.70134],[75.64438,23.71036],[75.65013,23.7105],[75.66697,23.70639],[75.67311,23.71357],[75.68012,23.71495],[75.68666,23.7142],[75.69042,23.71604],[75.68681,23.73043],[75.6903,23.74205],[75.69018,23.74661],[75.68605,23.75744],[75.67943,23.76774],[75.67563,23.78189],[75.65998,23.78423],[75.6545,23.7984],[75.65001,23.79546],[75.64401,23.79778],[75.63848,23.79566],[75.62704,23.79544],[75.62045,23.80093],[75.61435,23.80105],[75.60893,23.79755],[75.59844,23.79776],[75.58345,23.79482],[75.58901,23.80978],[75.5806,23.81228],[75.57157,23.80915],[75.56609,23.80979],[75.55909,23.81962],[75.55912,23.82832],[75.56062,23.83142],[75.56669,23.8332],[75.57306,23.82872],[75.57608,23.82906],[75.57933,23.83511],[75.57814,23.84095],[75.57605,23.84272],[75.56676,23.84362],[75.56559,23.84545],[75.56593,23.85342],[75.56425,23.85649],[75.55236,23.8621],[75.54822,23.86846],[75.54418,23.87156],[75.53075,23.87662],[75.52149,23.88493],[75.50567,23.88725],[75.5,23.89931],[75.48946,23.90737]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"424","area_level":"District","area_name":"Rewa","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.04174,24.79318],[81.04033,24.79387],[81.03987,24.79319],[81.03931,24.7913],[81.03884,24.78898],[81.03882,24.78618],[81.03953,24.7817],[81.04014,24.78063],[81.03976,24.77991],[81.04034,24.77919],[81.04004,24.77869],[81.04,24.77832],[81.0407,24.77737],[81.04069,24.77673],[81.04032,24.7765],[81.04019,24.77613],[81.04134,24.77441],[81.04229,24.77391],[81.04295,24.77387],[81.04425,24.77511],[81.04463,24.77564],[81.04476,24.77625],[81.04863,24.77755],[81.04946,24.77731],[81.05145,24.77741],[81.05254,24.77787],[81.05171,24.77863],[81.05176,24.77893],[81.05246,24.77908],[81.05176,24.77969],[81.05148,24.78023],[81.05114,24.78008],[81.0509,24.78031],[81.05078,24.78171],[81.04967,24.78278],[81.0491,24.78468],[81.04911,24.78517],[81.04787,24.7864],[81.048,24.78719],[81.04772,24.78792],[81.04549,24.78966],[81.04521,24.7908],[81.04513,24.79198],[81.04464,24.7927],[81.04448,24.79335],[81.04262,24.79382],[81.04236,24.79306],[81.04174,24.79318]]],[[[81.59092,25.18367],[81.58124,25.18965],[81.57253,25.19219],[81.55594,25.18358],[81.55411,25.18609],[81.54546,25.18506],[81.53991,25.18608],[81.5398,25.18036],[81.53443,25.18066],[81.53284,25.18239],[81.52746,25.18085],[81.52496,25.18386],[81.51858,25.18605],[81.5146,25.18434],[81.51441,25.17953],[81.51248,25.17734],[81.51464,25.17358],[81.51617,25.17407],[81.51792,25.1705],[81.52533,25.16563],[81.52496,25.16457],[81.53099,25.1647],[81.5365,25.16055],[81.52992,25.15161],[81.5227,25.14667],[81.52658,25.14779],[81.5309,25.14521],[81.52724,25.13809],[81.51916,25.14315],[81.51548,25.14304],[81.5139,25.14564],[81.50998,25.14601],[81.5088,25.14782],[81.49951,25.14868],[81.49618,25.14047],[81.49638,25.12898],[81.49388,25.13208],[81.48519,25.13483],[81.48005,25.13255],[81.48076,25.12764],[81.48744,25.12377],[81.48414,25.11595],[81.48866,25.11421],[81.49032,25.10945],[81.49583,25.10853],[81.49826,25.10506],[81.50307,25.10687],[81.5181,25.10074],[81.50665,25.09553],[81.50024,25.09638],[81.50298,25.08971],[81.50108,25.07743],[81.49947,25.07682],[81.49844,25.07874],[81.49364,25.08027],[81.49113,25.07232],[81.48647,25.07346],[81.48205,25.07675],[81.46927,25.07979],[81.46506,25.08381],[81.46733,25.0884],[81.46481,25.09011],[81.45451,25.09039],[81.43677,25.09408],[81.42993,25.09762],[81.42407,25.09809],[81.41759,25.10235],[81.40727,25.10491],[81.41371,25.10792],[81.42717,25.10712],[81.43069,25.10558],[81.43426,25.10723],[81.4445,25.10594],[81.44766,25.10717],[81.4457,25.10926],[81.44668,25.11109],[81.44513,25.11608],[81.4379,25.12389],[81.43693,25.12815],[81.43852,25.13033],[81.42892,25.13049],[81.42561,25.1326],[81.42187,25.12855],[81.4154,25.12844],[81.40619,25.13129],[81.4057,25.12911],[81.40853,25.12523],[81.41429,25.12093],[81.39992,25.11922],[81.39521,25.12274],[81.3954,25.12616],[81.39326,25.12623],[81.39405,25.12924],[81.39261,25.13096],[81.38538,25.13216],[81.38228,25.13608],[81.3709,25.13484],[81.37541,25.13904],[81.37573,25.14173],[81.36882,25.1439],[81.36268,25.15306],[81.3617,25.15923],[81.35728,25.1631],[81.35402,25.16391],[81.35273,25.16202],[81.34528,25.1619],[81.33452,25.16929],[81.32232,25.16193],[81.31956,25.15678],[81.31867,25.14397],[81.32503,25.13651],[81.32401,25.12763],[81.3252,25.12239],[81.32629,25.11921],[81.33108,25.11463],[81.32147,25.11277],[81.32127,25.11877],[81.31857,25.12282],[81.31624,25.12349],[81.3179,25.1254],[81.31569,25.12709],[81.31432,25.13539],[81.31192,25.13756],[81.31322,25.14945],[81.31229,25.15591],[81.3155,25.15888],[81.31343,25.16374],[81.29921,25.16447],[81.29658,25.16269],[81.28897,25.16188],[81.27752,25.166],[81.2751,25.16346],[81.28167,25.15206],[81.27755,25.14651],[81.26615,25.13969],[81.26851,25.13156],[81.26818,25.12809],[81.26276,25.12538],[81.26479,25.12228],[81.26472,25.11669],[81.26133,25.11018],[81.2572,25.11106],[81.25327,25.10776],[81.25214,25.10208],[81.255,25.09854],[81.25849,25.09752],[81.26156,25.08837],[81.26667,25.08439],[81.25949,25.07574],[81.26506,25.07355],[81.2689,25.06745],[81.26204,25.05808],[81.26382,25.05276],[81.25857,25.049],[81.25373,25.0389],[81.2451,25.02752],[81.24183,25.02587],[81.23935,25.01922],[81.22666,25.00196],[81.2208,24.9974],[81.21304,25.0],[81.21208,24.9957],[81.20892,24.99262],[81.21643,24.98627],[81.22087,24.97761],[81.22028,24.97382],[81.20714,24.96448],[81.21443,24.95796],[81.21463,24.94852],[81.21114,24.94614],[81.21318,24.94532],[81.21523,24.93288],[81.2173,24.93239],[81.21935,24.93511],[81.22061,24.93453],[81.21964,24.92862],[81.21387,24.92756],[81.21017,24.92262],[81.2035,24.92476],[81.20162,24.9269],[81.19639,24.92468],[81.19291,24.92535],[81.19162,24.92718],[81.19759,24.92795],[81.2007,24.93178],[81.20719,24.93043],[81.20354,24.93266],[81.20097,24.93801],[81.19737,24.93867],[81.19715,24.94147],[81.19223,24.94501],[81.18881,24.94472],[81.18515,24.95204],[81.17937,24.94988],[81.17221,24.9573],[81.16801,24.95523],[81.16402,24.94265],[81.16606,24.93816],[81.16371,24.93764],[81.16378,24.92831],[81.16132,24.92792],[81.15852,24.92344],[81.16079,24.91912],[81.1602,24.91356],[81.1504,24.9137],[81.14546,24.9103],[81.14512,24.90672],[81.14165,24.90324],[81.13991,24.89675],[81.14124,24.89025],[81.1396,24.88753],[81.12301,24.89934],[81.11966,24.89594],[81.11947,24.89362],[81.1255,24.89045],[81.12356,24.88902],[81.12529,24.88547],[81.12213,24.88022],[81.11441,24.8824],[81.11125,24.88023],[81.10976,24.87598],[81.11189,24.87168],[81.10956,24.86793],[81.10638,24.86683],[81.1077,24.85905],[81.10487,24.85637],[81.10416,24.85018],[81.1008,24.84624],[81.09398,24.84629],[81.09664,24.84103],[81.09538,24.83797],[81.09665,24.83369],[81.09525,24.83107],[81.09263,24.83228],[81.08261,24.8312],[81.07209,24.83327],[81.06887,24.82717],[81.06479,24.8236],[81.06704,24.82205],[81.06594,24.82073],[81.07113,24.81833],[81.06809,24.81507],[81.06804,24.81011],[81.07083,24.80271],[81.07011,24.80028],[81.06775,24.80087],[81.06283,24.806],[81.05553,24.80784],[81.05269,24.8005],[81.04935,24.80047],[81.04506,24.79693],[81.05291,24.79445],[81.05207,24.79129],[81.05349,24.78601],[81.06137,24.7785],[81.0683,24.77845],[81.06979,24.77456],[81.07252,24.77414],[81.07331,24.7759],[81.07588,24.77389],[81.07812,24.77587],[81.07647,24.77951],[81.07733,24.78589],[81.08477,24.78296],[81.08721,24.78735],[81.08433,24.79218],[81.085,24.79434],[81.08905,24.79316],[81.08942,24.79072],[81.09179,24.78993],[81.09103,24.78681],[81.09242,24.78386],[81.08884,24.78218],[81.09085,24.77924],[81.09059,24.77468],[81.09442,24.76807],[81.1057,24.75798],[81.10951,24.75046],[81.11189,24.74888],[81.11882,24.74984],[81.11981,24.74809],[81.11874,24.74446],[81.12156,24.73994],[81.12445,24.74029],[81.13165,24.73103],[81.13503,24.7312],[81.13976,24.72846],[81.14046,24.72542],[81.15227,24.71484],[81.15707,24.70734],[81.16877,24.70463],[81.18314,24.69873],[81.1802,24.69548],[81.18081,24.68954],[81.17832,24.69204],[81.17499,24.6905],[81.17582,24.68834],[81.17286,24.67858],[81.17457,24.67326],[81.17279,24.66881],[81.16972,24.66659],[81.16902,24.66028],[81.16748,24.65943],[81.16795,24.65562],[81.16537,24.65177],[81.16691,24.64751],[81.16408,24.64603],[81.16633,24.64219],[81.16482,24.63831],[81.16169,24.637],[81.16715,24.63037],[81.16807,24.62447],[81.16391,24.61594],[81.16618,24.61481],[81.1609,24.60238],[81.16328,24.59272],[81.15961,24.5892],[81.16069,24.58677],[81.15891,24.57748],[81.15992,24.57468],[81.16842,24.57282],[81.16765,24.56374],[81.16519,24.5631],[81.16015,24.56861],[81.15769,24.56835],[81.16006,24.56612],[81.15873,24.56407],[81.16049,24.56453],[81.1611,24.56259],[81.15726,24.56164],[81.15896,24.55934],[81.15902,24.5519],[81.15816,24.54894],[81.15546,24.54694],[81.15664,24.52228],[81.14769,24.51681],[81.1455,24.51767],[81.14335,24.51335],[81.13948,24.5118],[81.14235,24.50807],[81.14726,24.50672],[81.15333,24.50847],[81.15728,24.49763],[81.17165,24.49688],[81.17083,24.49931],[81.17302,24.50139],[81.18039,24.50052],[81.18026,24.49928],[81.18542,24.4975],[81.19756,24.49978],[81.20703,24.49788],[81.2103,24.49492],[81.22319,24.49074],[81.22227,24.48614],[81.22393,24.48401],[81.22183,24.47184],[81.22295,24.46884],[81.23468,24.4723],[81.23426,24.46108],[81.2287,24.45231],[81.23433,24.45054],[81.24095,24.44074],[81.2498,24.43365],[81.24904,24.43003],[81.25313,24.4287],[81.25518,24.43113],[81.25664,24.42979],[81.257,24.43251],[81.26032,24.4336],[81.26203,24.43109],[81.25929,24.42634],[81.26038,24.42089],[81.26249,24.42049],[81.26459,24.41668],[81.26742,24.41593],[81.26998,24.41222],[81.27761,24.41086],[81.27868,24.40486],[81.28098,24.40207],[81.29176,24.39651],[81.28918,24.38204],[81.28474,24.38486],[81.28382,24.38154],[81.28522,24.37835],[81.27286,24.38427],[81.26839,24.37626],[81.26765,24.3691],[81.27074,24.36305],[81.27509,24.35885],[81.28333,24.35592],[81.26976,24.32511],[81.27161,24.32038],[81.28554,24.32286],[81.28959,24.31996],[81.31444,24.32437],[81.31412,24.33096],[81.31684,24.33389],[81.31685,24.33615],[81.33232,24.34037],[81.33815,24.3391],[81.34934,24.34939],[81.3573,24.35189],[81.3731,24.36014],[81.38375,24.3623],[81.39175,24.36804],[81.39598,24.36785],[81.41283,24.37439],[81.41882,24.37723],[81.42138,24.38051],[81.4248,24.3802],[81.44972,24.38929],[81.4614,24.39531],[81.50465,24.42396],[81.53171,24.43388],[81.53608,24.43722],[81.54503,24.43939],[81.54867,24.44225],[81.55163,24.44054],[81.55293,24.44214],[81.57591,24.44782],[81.57728,24.44966],[81.58289,24.45006],[81.58793,24.45302],[81.58935,24.45225],[81.59032,24.45404],[81.59262,24.45293],[81.60116,24.4554],[81.62948,24.4654],[81.66774,24.48262],[81.67901,24.49076],[81.68155,24.49066],[81.6819,24.49293],[81.68869,24.49429],[81.69203,24.49756],[81.69515,24.49809],[81.69559,24.49988],[81.69744,24.49829],[81.704,24.50196],[81.70768,24.50123],[81.71308,24.50281],[81.71655,24.50742],[81.71899,24.50615],[81.72676,24.50838],[81.72827,24.51096],[81.73659,24.51084],[81.74113,24.49609],[81.74487,24.49125],[81.74949,24.49284],[81.7489,24.49551],[81.75241,24.49788],[81.75306,24.50072],[81.75633,24.49885],[81.76074,24.50044],[81.76472,24.50881],[81.76377,24.51695],[81.77302,24.51794],[81.78279,24.52272],[81.78844,24.52341],[81.79199,24.53014],[81.79597,24.52925],[81.81325,24.53437],[81.81874,24.53325],[81.81897,24.52864],[81.79881,24.51443],[81.80485,24.51319],[81.81204,24.51502],[81.81592,24.51279],[81.81743,24.50994],[81.82482,24.51281],[81.82746,24.51602],[81.83451,24.51636],[81.83729,24.52031],[81.83951,24.51673],[81.85831,24.52298],[81.86628,24.52401],[81.86362,24.53574],[81.87576,24.54005],[81.89572,24.5441],[81.8929,24.55384],[81.91619,24.55871],[81.91665,24.56545],[81.91528,24.56566],[81.9197,24.56968],[81.93535,24.57051],[81.94043,24.56904],[81.94681,24.57092],[81.94643,24.57235],[81.95101,24.57515],[81.9493,24.57178],[81.95102,24.56357],[81.95145,24.54604],[81.95338,24.54556],[81.96244,24.55412],[81.98225,24.55247],[81.99155,24.55337],[82.01791,24.57036],[82.02479,24.56855],[82.03366,24.56892],[82.06734,24.57609],[82.0667,24.5824],[82.0691,24.58249],[82.06924,24.58558],[82.06813,24.59961],[82.0709,24.60255],[82.07655,24.60359],[82.07789,24.59974],[82.08111,24.60011],[82.09043,24.59503],[82.11728,24.59815],[82.12247,24.58962],[82.13874,24.59428],[82.14069,24.59524],[82.14021,24.59726],[82.15866,24.59693],[82.18304,24.60258],[82.1859,24.6058],[82.18429,24.61022],[82.17259,24.61548],[82.17178,24.61625],[82.1743,24.61646],[82.19111,24.61508],[82.19461,24.61263],[82.21136,24.6141],[82.21635,24.61181],[82.23225,24.61029],[82.23292,24.60572],[82.24153,24.60539],[82.24955,24.60273],[82.25214,24.61084],[82.25797,24.60329],[82.26866,24.59356],[82.27744,24.58964],[82.2821,24.59064],[82.28479,24.59373],[82.28846,24.59065],[82.30087,24.59353],[82.305,24.59141],[82.30669,24.59489],[82.29527,24.60845],[82.29996,24.61207],[82.30368,24.62519],[82.30021,24.63433],[82.30188,24.63914],[82.30084,24.64246],[82.3038,24.64376],[82.29998,24.64698],[82.30388,24.65399],[82.29636,24.66125],[82.3036,24.66331],[82.30314,24.6671],[82.29925,24.66726],[82.29836,24.66552],[82.28801,24.66586],[82.2853,24.66838],[82.28519,24.67578],[82.28062,24.67541],[82.26876,24.68341],[82.26286,24.67826],[82.26456,24.67639],[82.27257,24.67541],[82.27255,24.67355],[82.26351,24.66591],[82.26087,24.66131],[82.25527,24.66045],[82.25708,24.66446],[82.25634,24.66861],[82.25419,24.67018],[82.25109,24.66808],[82.249,24.67116],[82.24753,24.66866],[82.24517,24.67092],[82.24011,24.66966],[82.24115,24.66205],[82.23971,24.66127],[82.2351,24.6709],[82.23654,24.6767],[82.2335,24.68099],[82.22971,24.68179],[82.23452,24.68563],[82.2354,24.69039],[82.2394,24.69021],[82.24231,24.69478],[82.24482,24.69202],[82.24693,24.69225],[82.25011,24.69745],[82.24518,24.70351],[82.24616,24.70906],[82.25024,24.70991],[82.25097,24.71147],[82.24982,24.7194],[82.2447,24.7307],[82.24522,24.73279],[82.24771,24.73286],[82.25067,24.73547],[82.25548,24.74824],[82.25558,24.7521],[82.25327,24.75156],[82.25081,24.75732],[82.24947,24.76813],[82.25093,24.76993],[82.24666,24.77104],[82.24614,24.76966],[82.2466,24.76662],[82.24981,24.76284],[82.24874,24.7562],[82.24623,24.75445],[82.24516,24.74441],[82.24257,24.74467],[82.23993,24.75078],[82.23744,24.75174],[82.23791,24.75501],[82.23542,24.7602],[82.23413,24.76059],[82.23324,24.75826],[82.23132,24.75926],[82.23136,24.75598],[82.22646,24.76124],[82.22475,24.75783],[82.22813,24.75436],[82.22689,24.75273],[82.22928,24.74935],[82.22884,24.74558],[82.22227,24.74657],[82.22225,24.74825],[82.21873,24.75013],[82.21585,24.75488],[82.20657,24.74719],[82.20641,24.74352],[82.20957,24.74212],[82.21058,24.73979],[82.21755,24.73746],[82.22003,24.73105],[82.21888,24.72845],[82.2213,24.72721],[82.2213,24.72233],[82.21997,24.72195],[82.21936,24.7246],[82.21574,24.72649],[82.21592,24.73054],[82.21404,24.73443],[82.20914,24.73385],[82.20497,24.73578],[82.20326,24.73404],[82.19953,24.73525],[82.19709,24.73816],[82.19142,24.73759],[82.18815,24.73419],[82.18525,24.73572],[82.18132,24.73256],[82.17745,24.73233],[82.18398,24.73885],[82.18664,24.73863],[82.1975,24.74677],[82.19747,24.74978],[82.20326,24.75834],[82.2037,24.76049],[82.19542,24.76417],[82.20006,24.76862],[82.1949,24.77519],[82.19655,24.77806],[82.20402,24.77623],[82.20944,24.77153],[82.21035,24.77472],[82.21404,24.77287],[82.21792,24.77668],[82.20921,24.77844],[82.21183,24.78671],[82.21512,24.79021],[82.21729,24.79018],[82.21615,24.79414],[82.21215,24.79364],[82.20632,24.79612],[82.2033,24.7923],[82.19542,24.79187],[82.18426,24.79563],[82.18388,24.7989],[82.18876,24.80579],[82.19162,24.80576],[82.19814,24.81627],[82.20359,24.8192],[82.1994,24.81775],[82.1911,24.81069],[82.1848,24.80971],[82.17818,24.81089],[82.17512,24.80091],[82.16996,24.79938],[82.16665,24.80088],[82.16965,24.79805],[82.1789,24.79507],[82.17823,24.79287],[82.17133,24.79059],[82.16774,24.79118],[82.16702,24.78544],[82.15327,24.79158],[82.15092,24.79462],[82.14973,24.79191],[82.14435,24.79702],[82.13866,24.79946],[82.13188,24.79161],[82.13388,24.78798],[82.13009,24.78809],[82.12958,24.78563],[82.12593,24.78831],[82.1231,24.78694],[82.12032,24.78813],[82.11561,24.78444],[82.11218,24.80052],[82.11032,24.80055],[82.1057,24.80538],[82.09765,24.81615],[82.07505,24.82194],[82.07157,24.81918],[82.05143,24.83052],[82.04521,24.82862],[82.03123,24.84024],[82.024,24.8412],[82.01694,24.84598],[82.01072,24.84691],[82.00311,24.84145],[81.99225,24.84224],[81.98531,24.83925],[81.97154,24.83893],[81.96875,24.83618],[81.96792,24.82902],[81.96527,24.82704],[81.96061,24.83654],[81.94417,24.84124],[81.9424,24.8452],[81.94357,24.84658],[81.93794,24.84973],[81.9365,24.85201],[81.93768,24.85285],[81.93272,24.85874],[81.93463,24.86808],[81.93372,24.8707],[81.92801,24.87403],[81.9255,24.8722],[81.92006,24.87432],[81.92057,24.87739],[81.9165,24.8772],[81.91463,24.88072],[81.90789,24.88135],[81.90657,24.88345],[81.90891,24.88574],[81.90495,24.88678],[81.90355,24.89001],[81.90442,24.89139],[81.90284,24.89168],[81.90574,24.89269],[81.90479,24.89507],[81.90786,24.89654],[81.90353,24.89875],[81.90643,24.90026],[81.90671,24.9044],[81.91835,24.91952],[81.91902,24.9219],[81.91755,24.92328],[81.91965,24.92812],[81.91406,24.93626],[81.91036,24.93738],[81.90907,24.94264],[81.91006,24.95243],[81.9075,24.95951],[81.90939,24.9607],[81.90805,24.96847],[81.90751,24.97076],[81.90408,24.9722],[81.90786,24.98012],[81.90517,24.98137],[81.90593,24.98272],[81.90299,24.98374],[81.90146,24.9865],[81.90634,24.99503],[81.90727,25.00567],[81.89812,25.01064],[81.89556,25.00952],[81.89484,25.00782],[81.8974,25.00352],[81.90169,24.9994],[81.89548,24.98968],[81.89131,24.98887],[81.88991,24.99186],[81.8909,24.99576],[81.87688,24.9994],[81.87688,24.99579],[81.87419,24.99517],[81.87255,24.99976],[81.86642,25.00235],[81.86521,25.00087],[81.85955,25.00314],[81.85347,25.00268],[81.84865,25.00822],[81.84874,25.01164],[81.83482,25.01697],[81.8319,25.01213],[81.82568,25.01679],[81.82305,25.01712],[81.81949,25.01414],[81.81772,25.0152],[81.81401,25.01069],[81.81038,25.01269],[81.80464,25.0059],[81.80559,25.00524],[81.80377,25.0017],[81.79221,25.00441],[81.78089,25.01888],[81.758,25.02739],[81.75517,25.03169],[81.755,25.03484],[81.7458,25.03347],[81.7467,25.03742],[81.74188,25.03894],[81.74256,25.04144],[81.74041,25.04483],[81.73151,25.04864],[81.73044,25.04746],[81.72388,25.05017],[81.71909,25.04184],[81.72168,25.04232],[81.72141,25.03825],[81.71331,25.03607],[81.7071,25.03523],[81.68975,25.03895],[81.68872,25.03954],[81.69344,25.0488],[81.69151,25.05148],[81.68862,25.05174],[81.68574,25.05839],[81.68232,25.06119],[81.67797,25.06204],[81.67088,25.05991],[81.6672,25.06136],[81.66856,25.07171],[81.66654,25.07511],[81.66416,25.07259],[81.66267,25.07417],[81.66051,25.07161],[81.6527,25.07082],[81.65148,25.06716],[81.64122,25.05676],[81.63331,25.05934],[81.62765,25.05263],[81.61143,25.0565],[81.61032,25.06107],[81.61692,25.05879],[81.61745,25.06092],[81.60914,25.06562],[81.61054,25.06865],[81.60035,25.07385],[81.60543,25.07848],[81.61579,25.08034],[81.62143,25.09016],[81.62879,25.09128],[81.62861,25.09474],[81.64086,25.09849],[81.63357,25.1027],[81.63206,25.10643],[81.62834,25.10679],[81.63171,25.11178],[81.63294,25.11712],[81.62408,25.12004],[81.6205,25.11565],[81.62365,25.11223],[81.62314,25.11099],[81.61897,25.11013],[81.61632,25.10773],[81.61466,25.10004],[81.61147,25.09506],[81.60832,25.09605],[81.61023,25.10876],[81.60849,25.11174],[81.61011,25.11252],[81.60639,25.11627],[81.60061,25.11627],[81.59696,25.11909],[81.59804,25.12229],[81.6,25.12313],[81.5983,25.12378],[81.60059,25.12403],[81.60233,25.12725],[81.59826,25.13017],[81.59825,25.13244],[81.60352,25.13667],[81.61046,25.1391],[81.61459,25.14439],[81.62061,25.14029],[81.62332,25.14104],[81.62571,25.14485],[81.62418,25.15614],[81.62621,25.16047],[81.62042,25.16242],[81.61876,25.1674],[81.6154,25.16901],[81.61182,25.16392],[81.60894,25.16469],[81.60463,25.16303],[81.59436,25.16373],[81.58846,25.16577],[81.59508,25.17749],[81.59562,25.18182],[81.59092,25.18367]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"425","area_level":"District","area_name":"Sagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.34294,24.40019],[78.33861,24.40357],[78.33092,24.40469],[78.32189,24.4088],[78.307,24.42309],[78.27065,24.44617],[78.26614,24.45121],[78.26517,24.44363],[78.25997,24.4379],[78.24657,24.42922],[78.2339,24.42604],[78.22024,24.41989],[78.21453,24.4124],[78.20919,24.40863],[78.18283,24.3988],[78.16623,24.39713],[78.16222,24.39358],[78.15928,24.38636],[78.16243,24.37858],[78.16114,24.37497],[78.15256,24.36603],[78.14559,24.35505],[78.13142,24.34669],[78.12264,24.33721],[78.11098,24.33405],[78.1032,24.32653],[78.09312,24.32219],[78.08954,24.31835],[78.08532,24.30055],[78.08608,24.28898],[78.09808,24.26567],[78.0985,24.26108],[78.09528,24.25719],[78.081,24.2561],[78.07964,24.253],[78.07291,24.25044],[78.06949,24.24672],[78.08576,24.24151],[78.08651,24.24463],[78.09067,24.24766],[78.09154,24.25065],[78.09607,24.2506],[78.09559,24.24791],[78.09825,24.24735],[78.10072,24.24408],[78.09714,24.22862],[78.09031,24.23038],[78.09038,24.23187],[78.06762,24.24394],[78.05978,24.23169],[78.05997,24.22893],[78.06693,24.2289],[78.07996,24.22273],[78.07881,24.22008],[78.0815,24.21691],[78.08333,24.21699],[78.08221,24.21529],[78.08371,24.21552],[78.08368,24.21428],[78.09686,24.21229],[78.10706,24.20861],[78.10955,24.2173],[78.12366,24.21636],[78.13826,24.21173],[78.13797,24.20513],[78.14584,24.2019],[78.144,24.19892],[78.13962,24.19951],[78.13086,24.19528],[78.1291,24.16369],[78.12108,24.16309],[78.11469,24.16602],[78.10454,24.16702],[78.10261,24.16448],[78.09996,24.16462],[78.09634,24.15591],[78.10953,24.14865],[78.11193,24.1382],[78.1205,24.12777],[78.11857,24.1264],[78.123,24.12424],[78.13037,24.125],[78.13352,24.12352],[78.13476,24.12075],[78.13137,24.10975],[78.12824,24.10793],[78.12362,24.09747],[78.1233,24.09528],[78.12592,24.09331],[78.12552,24.08381],[78.12381,24.08176],[78.12601,24.08108],[78.12042,24.06685],[78.12014,24.05621],[78.1173,24.04631],[78.11451,24.04545],[78.10214,24.04865],[78.10558,24.06121],[78.10043,24.06569],[78.09795,24.06576],[78.09768,24.06728],[78.09204,24.06867],[78.08966,24.06376],[78.08384,24.06418],[78.08276,24.0599],[78.07603,24.05617],[78.07519,24.05113],[78.07708,24.05085],[78.07581,24.04606],[78.09157,24.04364],[78.09334,24.03452],[78.11523,24.02719],[78.11935,24.04334],[78.13301,24.0415],[78.13465,24.03481],[78.14329,24.03391],[78.14438,24.03005],[78.14267,24.0282],[78.15736,24.02558],[78.16251,24.01046],[78.18337,24.01033],[78.18392,24.03271],[78.18764,24.03285],[78.18916,24.03558],[78.19306,24.05415],[78.19868,24.0621],[78.20251,24.06061],[78.20532,24.0688],[78.2148,24.07046],[78.22994,24.05615],[78.24924,24.05498],[78.25113,24.0467],[78.25695,24.04353],[78.26167,24.04326],[78.27844,24.02779],[78.27646,24.02206],[78.27812,24.0192],[78.28109,24.00045],[78.28535,23.99656],[78.28965,23.98757],[78.28527,23.97772],[78.27952,23.97327],[78.27875,23.97104],[78.28069,23.96699],[78.28662,23.96609],[78.28654,23.96251],[78.28347,23.95949],[78.26659,23.95425],[78.26338,23.95037],[78.26195,23.94372],[78.26591,23.93796],[78.27894,23.9292],[78.289,23.92557],[78.29104,23.91879],[78.29408,23.91519],[78.29482,23.90988],[78.28835,23.9024],[78.28538,23.89323],[78.2829,23.89054],[78.27803,23.88987],[78.27589,23.87689],[78.2801,23.86883],[78.27828,23.86382],[78.27349,23.86088],[78.26357,23.86249],[78.2596,23.85843],[78.26267,23.85255],[78.27294,23.847],[78.27312,23.84319],[78.28341,23.84386],[78.29477,23.84822],[78.29911,23.83947],[78.29389,23.83483],[78.29497,23.82951],[78.29883,23.82989],[78.29952,23.82792],[78.29517,23.82466],[78.29377,23.82025],[78.28864,23.81397],[78.27029,23.82058],[78.26249,23.81624],[78.26254,23.81155],[78.26641,23.80865],[78.2796,23.81196],[78.28604,23.81112],[78.28387,23.80297],[78.28457,23.79995],[78.28183,23.79644],[78.28156,23.79347],[78.28857,23.78373],[78.28372,23.78105],[78.28065,23.78623],[78.2736,23.78402],[78.26853,23.78729],[78.27305,23.78917],[78.27664,23.79575],[78.26538,23.7985],[78.25888,23.79172],[78.25377,23.78196],[78.25542,23.77893],[78.26096,23.77761],[78.26917,23.77935],[78.26827,23.77559],[78.26334,23.7698],[78.26352,23.76769],[78.25467,23.767],[78.25182,23.7571],[78.25753,23.75122],[78.26546,23.75011],[78.26627,23.7488],[78.26117,23.74546],[78.25887,23.74884],[78.25078,23.7467],[78.25103,23.74355],[78.2456,23.73498],[78.24472,23.72857],[78.23729,23.72385],[78.24141,23.72048],[78.23876,23.71394],[78.2487,23.70536],[78.25271,23.70547],[78.25455,23.70742],[78.25212,23.70971],[78.2553,23.71258],[78.2568,23.71929],[78.25994,23.72196],[78.25847,23.72444],[78.26357,23.72728],[78.26896,23.72644],[78.26952,23.72492],[78.26326,23.72045],[78.26287,23.71852],[78.26396,23.71643],[78.26919,23.71447],[78.269,23.71259],[78.27092,23.71124],[78.26934,23.70496],[78.27811,23.70059],[78.28415,23.7001],[78.28014,23.69364],[78.27997,23.69048],[78.28498,23.68275],[78.28927,23.68125],[78.29099,23.67545],[78.29393,23.6745],[78.30079,23.679],[78.29741,23.67984],[78.29322,23.69229],[78.28796,23.69396],[78.28932,23.69458],[78.28971,23.69932],[78.29393,23.6954],[78.29829,23.69393],[78.30674,23.69396],[78.30846,23.69054],[78.31254,23.68811],[78.31827,23.69003],[78.32108,23.69433],[78.32351,23.69337],[78.32884,23.68782],[78.33176,23.68073],[78.33999,23.67756],[78.33458,23.6683],[78.33908,23.65939],[78.34327,23.65694],[78.34422,23.65921],[78.34773,23.65839],[78.34793,23.65663],[78.35189,23.65362],[78.36415,23.64865],[78.36547,23.6503],[78.36749,23.64878],[78.37175,23.65093],[78.37606,23.65683],[78.37826,23.65344],[78.38607,23.64915],[78.38369,23.64202],[78.38722,23.64095],[78.39099,23.63455],[78.39755,23.63242],[78.40218,23.63686],[78.41003,23.63965],[78.41347,23.63923],[78.41224,23.6427],[78.41654,23.64323],[78.41465,23.64841],[78.41929,23.64842],[78.41962,23.65058],[78.41656,23.64967],[78.40649,23.65377],[78.40532,23.65833],[78.40254,23.65901],[78.39904,23.66424],[78.39679,23.67702],[78.4058,23.67536],[78.40648,23.6714],[78.41109,23.67057],[78.41246,23.67177],[78.42025,23.67101],[78.42317,23.67219],[78.42897,23.67123],[78.43213,23.67317],[78.4299,23.6786],[78.42412,23.6817],[78.41745,23.68253],[78.41384,23.68575],[78.40857,23.68635],[78.41037,23.69126],[78.4068,23.70111],[78.4126,23.70114],[78.4169,23.70704],[78.43171,23.71416],[78.43226,23.71603],[78.42946,23.71965],[78.42529,23.71981],[78.41725,23.72374],[78.41369,23.72806],[78.41297,23.73186],[78.41028,23.73345],[78.39991,23.7303],[78.39881,23.72448],[78.40062,23.72179],[78.39901,23.71498],[78.39073,23.71054],[78.38641,23.71077],[78.38501,23.71332],[78.38262,23.71282],[78.38146,23.71447],[78.38259,23.70754],[78.38155,23.70025],[78.39265,23.69715],[78.38644,23.68863],[78.38266,23.69098],[78.38229,23.69389],[78.37956,23.69404],[78.37201,23.68327],[78.36899,23.68234],[78.35843,23.67171],[78.34353,23.67791],[78.35834,23.6918],[78.35359,23.70419],[78.35808,23.70691],[78.35683,23.70989],[78.35809,23.71362],[78.36181,23.71622],[78.36768,23.71633],[78.36789,23.72797],[78.37664,23.72835],[78.38271,23.72677],[78.38212,23.73687],[78.39194,23.73759],[78.39849,23.74255],[78.40753,23.7442],[78.40922,23.74002],[78.41206,23.74072],[78.41801,23.73757],[78.42215,23.74007],[78.42527,23.74445],[78.43416,23.74526],[78.4363,23.72609],[78.44015,23.72564],[78.44169,23.72329],[78.44088,23.72045],[78.4386,23.71919],[78.44504,23.7144],[78.44429,23.71087],[78.44598,23.70426],[78.4443,23.70154],[78.44708,23.69154],[78.45672,23.68953],[78.45743,23.6858],[78.46421,23.67678],[78.47027,23.67738],[78.46896,23.67502],[78.46928,23.66792],[78.46606,23.66206],[78.47109,23.65485],[78.46728,23.65037],[78.46609,23.64543],[78.46736,23.64384],[78.46925,23.64286],[78.46912,23.64493],[78.47436,23.64948],[78.47341,23.64597],[78.47608,23.63983],[78.48128,23.63901],[78.48529,23.6362],[78.48646,23.63793],[78.48369,23.64072],[78.48451,23.64232],[78.49546,23.64748],[78.50288,23.64651],[78.50659,23.65314],[78.51519,23.6579],[78.51689,23.65052],[78.51216,23.64615],[78.51282,23.64083],[78.50883,23.63936],[78.50653,23.63626],[78.50957,23.63343],[78.50926,23.62385],[78.51395,23.62062],[78.51243,23.61671],[78.51399,23.61267],[78.5132,23.61074],[78.51569,23.60839],[78.51291,23.60778],[78.51259,23.60522],[78.51063,23.60439],[78.51078,23.60165],[78.50617,23.59268],[78.49957,23.58915],[78.50133,23.5858],[78.49877,23.58468],[78.49939,23.58226],[78.5031,23.57981],[78.50238,23.57148],[78.50626,23.56761],[78.50704,23.56464],[78.50405,23.56194],[78.50702,23.55573],[78.50663,23.55322],[78.50287,23.54911],[78.49867,23.53727],[78.50342,23.53089],[78.50906,23.53143],[78.50866,23.53716],[78.51285,23.53541],[78.51671,23.53694],[78.51693,23.54593],[78.51765,23.54806],[78.51956,23.54847],[78.51802,23.55135],[78.51968,23.55337],[78.52517,23.55364],[78.53396,23.54968],[78.53529,23.55039],[78.5394,23.55474],[78.53704,23.55633],[78.53692,23.56375],[78.53925,23.56357],[78.5415,23.55819],[78.55307,23.56115],[78.55797,23.56016],[78.55966,23.5636],[78.56548,23.56496],[78.56785,23.56777],[78.5719,23.56525],[78.57456,23.55421],[78.57761,23.55161],[78.58043,23.55111],[78.58567,23.55398],[78.59248,23.55212],[78.59264,23.54934],[78.59709,23.54624],[78.59998,23.54588],[78.60653,23.54958],[78.61453,23.54652],[78.62365,23.55394],[78.63312,23.55138],[78.64076,23.546],[78.64441,23.54997],[78.645,23.55953],[78.65013,23.56338],[78.6805,23.56065],[78.6852,23.56616],[78.69038,23.56615],[78.69201,23.5706],[78.70174,23.57692],[78.70982,23.57563],[78.71249,23.57709],[78.71937,23.57672],[78.72387,23.57955],[78.72899,23.5765],[78.73037,23.57845],[78.72945,23.58319],[78.73231,23.58447],[78.73574,23.58286],[78.74003,23.57869],[78.73951,23.5701],[78.74149,23.56886],[78.74274,23.55484],[78.74495,23.54745],[78.7403,23.54504],[78.73838,23.54122],[78.73894,23.53359],[78.73712,23.52997],[78.7343,23.52914],[78.72936,23.5325],[78.71936,23.53562],[78.71535,23.5181],[78.70109,23.51718],[78.69656,23.50118],[78.69071,23.50052],[78.67761,23.49339],[78.67308,23.48544],[78.66979,23.48291],[78.66584,23.47343],[78.66805,23.46856],[78.67181,23.46604],[78.66856,23.46349],[78.66935,23.46089],[78.66777,23.45477],[78.6637,23.44989],[78.66338,23.44711],[78.66171,23.44727],[78.65819,23.44337],[78.65448,23.44325],[78.63826,23.45047],[78.63371,23.44976],[78.62876,23.45122],[78.62489,23.44369],[78.6242,23.44718],[78.62221,23.44634],[78.61839,23.43658],[78.61491,23.43592],[78.60853,23.43761],[78.60845,23.43347],[78.60359,23.43007],[78.60357,23.4254],[78.60102,23.42412],[78.60496,23.42113],[78.61081,23.42353],[78.6126,23.41865],[78.61493,23.42028],[78.62539,23.41675],[78.62396,23.41193],[78.62687,23.4119],[78.62942,23.39817],[78.62963,23.38696],[78.62751,23.381],[78.63044,23.36886],[78.63313,23.36614],[78.63125,23.36158],[78.6414,23.35601],[78.64414,23.34539],[78.65326,23.33947],[78.65958,23.33741],[78.66441,23.33211],[78.67556,23.34452],[78.67969,23.34596],[78.68505,23.34518],[78.68625,23.34689],[78.69625,23.34946],[78.69871,23.35078],[78.70015,23.35462],[78.70889,23.35379],[78.70825,23.36135],[78.716,23.3556],[78.71616,23.35245],[78.71994,23.35183],[78.72521,23.34731],[78.72774,23.3441],[78.72785,23.33969],[78.73382,23.33926],[78.73493,23.32715],[78.74696,23.32183],[78.74621,23.31827],[78.75036,23.31828],[78.74774,23.30933],[78.75848,23.31034],[78.76289,23.30597],[78.76291,23.29893],[78.77085,23.29651],[78.77295,23.29356],[78.77151,23.28776],[78.76335,23.2843],[78.76293,23.2808],[78.76557,23.27325],[78.76041,23.26823],[78.76148,23.26312],[78.75959,23.26178],[78.76253,23.25628],[78.75965,23.25051],[78.76052,23.24724],[78.7649,23.2474],[78.76894,23.24357],[78.77527,23.25111],[78.77874,23.24886],[78.78372,23.24895],[78.79153,23.24641],[78.79954,23.24146],[78.80287,23.2423],[78.80359,23.23837],[78.80934,23.23559],[78.81199,23.24109],[78.81713,23.24251],[78.82043,23.24526],[78.8221,23.25055],[78.83161,23.25353],[78.8377,23.25269],[78.83607,23.24871],[78.83982,23.24869],[78.84638,23.24247],[78.84827,23.23743],[78.84592,23.2356],[78.84865,23.22507],[78.85276,23.22583],[78.85878,23.22261],[78.8702,23.22438],[78.87621,23.21813],[78.89145,23.21646],[78.8975,23.21247],[78.89804,23.21639],[78.90251,23.22205],[78.90668,23.22412],[78.9073,23.22705],[78.91626,23.22307],[78.9264,23.22802],[78.93087,23.23195],[78.93846,23.23379],[78.93983,23.23015],[78.94514,23.22706],[78.9473,23.22184],[78.94821,23.21556],[78.94354,23.20941],[78.94852,23.21283],[78.95129,23.21154],[78.95405,23.21675],[78.95982,23.21236],[78.96262,23.21476],[78.96458,23.21172],[78.97145,23.21189],[78.97355,23.20747],[78.97311,23.20446],[78.98031,23.2005],[78.98301,23.20506],[78.99338,23.21148],[78.99307,23.21424],[78.99452,23.21701],[78.99596,23.21698],[78.99985,23.21062],[79.00397,23.20848],[79.00729,23.20896],[79.01174,23.20419],[79.0219,23.1991],[79.02314,23.19486],[79.02188,23.19372],[79.02378,23.19285],[79.02853,23.19715],[79.03101,23.19538],[79.03452,23.19734],[79.04511,23.19628],[79.05167,23.19896],[79.05727,23.19447],[79.06216,23.19592],[79.06448,23.1944],[79.06676,23.20129],[79.07163,23.20578],[79.07582,23.20246],[79.0831,23.2046],[79.08428,23.19814],[79.08726,23.20048],[79.09012,23.20023],[79.09171,23.19486],[79.09524,23.20395],[79.10404,23.20368],[79.10393,23.20636],[79.10571,23.20668],[79.10753,23.20158],[79.10396,23.19799],[79.1066,23.19595],[79.1066,23.18916],[79.10975,23.18693],[79.10799,23.18455],[79.10827,23.18103],[79.11206,23.18705],[79.11674,23.18051],[79.11365,23.17551],[79.11604,23.16923],[79.11358,23.16682],[79.10836,23.16717],[79.11408,23.16541],[79.11814,23.16627],[79.12477,23.17285],[79.12514,23.17572],[79.13592,23.17311],[79.13881,23.17446],[79.14008,23.1678],[79.14202,23.16786],[79.14254,23.16629],[79.14934,23.1676],[79.14832,23.17242],[79.15342,23.17941],[79.166,23.17666],[79.16368,23.18116],[79.1657,23.18371],[79.16365,23.18772],[79.16614,23.18986],[79.1774,23.19361],[79.18672,23.19953],[79.18943,23.19589],[79.18687,23.19365],[79.18838,23.19216],[79.19911,23.19496],[79.19227,23.20443],[79.18875,23.20637],[79.18765,23.21503],[79.18995,23.22308],[79.18382,23.22544],[79.17859,23.22247],[79.17446,23.22575],[79.17641,23.22993],[79.175,23.23564],[79.17605,23.24264],[79.17209,23.25138],[79.17251,23.25567],[79.1773,23.25862],[79.18196,23.25866],[79.197,23.25431],[79.20321,23.25452],[79.20845,23.25684],[79.21272,23.26095],[79.21829,23.27077],[79.21828,23.27497],[79.22712,23.28435],[79.22848,23.2908],[79.23204,23.29122],[79.23134,23.29834],[79.22688,23.29976],[79.22392,23.30421],[79.21749,23.30716],[79.21534,23.31204],[79.21024,23.31667],[79.21002,23.31914],[79.21264,23.31924],[79.22497,23.32767],[79.23878,23.34043],[79.22881,23.34358],[79.22466,23.3471],[79.21711,23.35017],[79.2171,23.35522],[79.21967,23.35785],[79.21882,23.36505],[79.21694,23.36726],[79.20943,23.36104],[79.20381,23.36292],[79.20032,23.36209],[79.19173,23.36572],[79.19122,23.37557],[79.18685,23.38404],[79.18817,23.39013],[79.18472,23.39353],[79.18731,23.39735],[79.18527,23.404],[79.19102,23.40797],[79.19983,23.40706],[79.20182,23.41556],[79.19433,23.41779],[79.18793,23.42238],[79.18482,23.42126],[79.18076,23.42589],[79.1848,23.43373],[79.189,23.43704],[79.1954,23.43785],[79.19861,23.44057],[79.20705,23.44054],[79.21254,23.43725],[79.22033,23.43674],[79.22343,23.44276],[79.2239,23.44565],[79.22201,23.44873],[79.22591,23.46008],[79.23134,23.46243],[79.23893,23.45871],[79.2467,23.46715],[79.25145,23.4672],[79.25838,23.46288],[79.26125,23.46529],[79.26263,23.47011],[79.26051,23.47599],[79.26677,23.482],[79.26727,23.48046],[79.27477,23.47775],[79.28304,23.47729],[79.28761,23.47907],[79.28488,23.48344],[79.28881,23.48607],[79.28792,23.48724],[79.29108,23.49543],[79.29276,23.50748],[79.29956,23.51642],[79.31106,23.5179],[79.31717,23.52125],[79.32661,23.52004],[79.33143,23.52411],[79.33343,23.52741],[79.3278,23.5292],[79.32277,23.53648],[79.32181,23.54266],[79.32343,23.54691],[79.32479,23.5463],[79.32617,23.54892],[79.32555,23.55122],[79.31338,23.55281],[79.31135,23.55901],[79.29909,23.56208],[79.30074,23.56658],[79.29845,23.5679],[79.29902,23.5698],[79.29633,23.57428],[79.297,23.58054],[79.30469,23.58479],[79.30586,23.58721],[79.30703,23.58589],[79.3088,23.58889],[79.31378,23.58721],[79.31869,23.58791],[79.31757,23.58996],[79.31099,23.5917],[79.31082,23.59449],[79.30922,23.59249],[79.30664,23.593],[79.30476,23.59741],[79.30072,23.60082],[79.30174,23.60331],[79.29971,23.61059],[79.30257,23.613],[79.30084,23.6176],[79.30091,23.62059],[79.30215,23.6207],[79.29987,23.62505],[79.30143,23.63009],[79.30038,23.6321],[79.30303,23.64149],[79.30577,23.64362],[79.32835,23.63002],[79.33645,23.63073],[79.33993,23.63482],[79.34135,23.64322],[79.35215,23.65531],[79.35127,23.66449],[79.34995,23.66618],[79.3405,23.66247],[79.33444,23.66585],[79.33046,23.67202],[79.32544,23.67475],[79.31477,23.67709],[79.30137,23.67667],[79.29862,23.68668],[79.29537,23.68962],[79.28887,23.6903],[79.28337,23.69497],[79.2826,23.69885],[79.28538,23.70182],[79.29465,23.70563],[79.30066,23.70567],[79.29881,23.7111],[79.29046,23.71706],[79.28965,23.72016],[79.28781,23.72032],[79.28799,23.72437],[79.29147,23.72441],[79.29253,23.72676],[79.29106,23.73089],[79.28449,23.73402],[79.28407,23.73594],[79.29052,23.74105],[79.29301,23.74776],[79.28889,23.74841],[79.28611,23.74467],[79.28126,23.74283],[79.27901,23.74351],[79.27761,23.73981],[79.27568,23.74296],[79.27235,23.74359],[79.26826,23.74752],[79.26956,23.75011],[79.27361,23.75049],[79.27271,23.75276],[79.26421,23.75786],[79.26092,23.7578],[79.25944,23.76052],[79.2547,23.76071],[79.24811,23.76772],[79.23327,23.77412],[79.21961,23.78363],[79.21786,23.7866],[79.22056,23.78788],[79.22464,23.79614],[79.22933,23.79996],[79.2292,23.80749],[79.2336,23.80865],[79.23368,23.81088],[79.23718,23.81275],[79.23678,23.81842],[79.23814,23.81974],[79.24152,23.81884],[79.24395,23.82218],[79.25066,23.82552],[79.24748,23.82605],[79.24153,23.83239],[79.23885,23.82887],[79.23616,23.82915],[79.23332,23.8322],[79.22402,23.83692],[79.22374,23.83973],[79.22203,23.84024],[79.22022,23.84427],[79.21759,23.84227],[79.2077,23.84138],[79.20308,23.8367],[79.19736,23.83589],[79.19206,23.83299],[79.18561,23.8333],[79.18215,23.83504],[79.17713,23.83456],[79.17652,23.83737],[79.18109,23.84379],[79.17925,23.84729],[79.1748,23.85016],[79.17017,23.8463],[79.15786,23.8487],[79.15248,23.84649],[79.14975,23.8473],[79.14614,23.85015],[79.14591,23.85341],[79.14426,23.85479],[79.13724,23.85675],[79.13633,23.86139],[79.13271,23.86298],[79.13206,23.86563],[79.12116,23.8716],[79.11641,23.88062],[79.1087,23.88151],[79.11175,23.88617],[79.11058,23.89005],[79.11191,23.8933],[79.10973,23.89903],[79.09938,23.90861],[79.09376,23.91938],[79.08792,23.92057],[79.08243,23.91745],[79.07963,23.91974],[79.08137,23.91131],[79.08046,23.90965],[79.08329,23.90734],[79.07996,23.90457],[79.07364,23.90305],[79.07184,23.90661],[79.06336,23.9102],[79.05977,23.915],[79.05539,23.91721],[79.05496,23.92007],[79.06007,23.92416],[79.06529,23.92492],[79.06709,23.92785],[79.07033,23.92744],[79.07822,23.93244],[79.07728,23.93405],[79.08203,23.93981],[79.08142,23.94235],[79.09313,23.94662],[79.09224,23.94909],[79.09506,23.95026],[79.09536,23.95484],[79.10209,23.95993],[79.10148,23.96305],[79.10922,23.96554],[79.10839,23.96925],[79.11094,23.97133],[79.11423,23.9704],[79.11755,23.97736],[79.12936,23.97389],[79.13078,23.97722],[79.13647,23.97879],[79.13367,23.98544],[79.13895,23.98828],[79.14481,23.98803],[79.14616,23.99274],[79.14985,23.99617],[79.15401,23.99553],[79.16704,24.00168],[79.17088,24.00091],[79.18114,24.00298],[79.18774,24.01094],[79.18393,24.01505],[79.17927,24.0164],[79.17908,24.01887],[79.18391,24.02284],[79.18368,24.029],[79.1765,24.05381],[79.17166,24.05779],[79.16572,24.05579],[79.15698,24.06826],[79.15469,24.07489],[79.15647,24.07879],[79.1484,24.0878],[79.15092,24.09313],[79.1467,24.10154],[79.14392,24.09811],[79.14032,24.09669],[79.12489,24.10192],[79.1234,24.10277],[79.12278,24.10769],[79.12402,24.11526],[79.11388,24.1222],[79.10586,24.12163],[79.10137,24.12294],[79.09555,24.12832],[79.08595,24.12587],[79.07756,24.1282],[79.07204,24.13182],[79.07227,24.13767],[79.07967,24.14695],[79.06974,24.15234],[79.0673,24.16027],[79.06827,24.16562],[79.06198,24.16888],[79.05831,24.16834],[79.05402,24.17138],[79.05669,24.185],[79.0559,24.18821],[79.05145,24.19036],[79.05132,24.1975],[79.05199,24.2044],[79.05521,24.21243],[79.05047,24.21523],[79.04611,24.22154],[79.04826,24.22432],[79.05127,24.22509],[79.05305,24.22356],[79.05708,24.22551],[79.06589,24.22462],[79.06557,24.23642],[79.07073,24.24357],[79.07014,24.24711],[79.0648,24.25346],[79.06809,24.26194],[79.07511,24.26411],[79.08279,24.26299],[79.0847,24.26026],[79.08041,24.25316],[79.08129,24.2488],[79.08764,24.24622],[79.09237,24.24225],[79.09631,24.24202],[79.10265,24.24572],[79.10142,24.24997],[79.1045,24.25044],[79.11052,24.26362],[79.11325,24.26593],[79.11473,24.26223],[79.12061,24.26311],[79.12839,24.26048],[79.13264,24.25392],[79.13763,24.25117],[79.14136,24.25483],[79.14297,24.25317],[79.1443,24.2549],[79.14211,24.26154],[79.14917,24.26815],[79.15784,24.27402],[79.16062,24.27202],[79.1648,24.27495],[79.17268,24.27588],[79.17527,24.27778],[79.17165,24.28526],[79.17006,24.29455],[79.17114,24.30843],[79.17558,24.31054],[79.18403,24.31064],[79.18746,24.31715],[79.18733,24.32408],[79.18374,24.32872],[79.17952,24.32791],[79.1786,24.33334],[79.1749,24.33718],[79.1669,24.34101],[79.16454,24.34574],[79.165,24.35203],[79.15974,24.36204],[79.1547,24.36168],[79.15056,24.36522],[79.14049,24.36461],[79.13996,24.37006],[79.14174,24.37148],[79.1488,24.3751],[79.15535,24.3752],[79.1517,24.37938],[79.15116,24.3891],[79.15714,24.39685],[79.1522,24.40545],[79.16818,24.40667],[79.16632,24.39952],[79.16202,24.39735],[79.16733,24.39312],[79.16769,24.38601],[79.16142,24.37827],[79.16106,24.37528],[79.15842,24.37349],[79.16208,24.37003],[79.17075,24.36764],[79.18226,24.35767],[79.19069,24.35529],[79.19552,24.35723],[79.19685,24.35527],[79.19883,24.35551],[79.19902,24.34761],[79.20149,24.33977],[79.19934,24.33646],[79.20006,24.33394],[79.20454,24.33461],[79.20625,24.33148],[79.21098,24.33001],[79.21665,24.33074],[79.22459,24.33499],[79.2278,24.33307],[79.23293,24.33494],[79.23216,24.34015],[79.23508,24.34427],[79.23487,24.34819],[79.23735,24.35408],[79.23281,24.35677],[79.23241,24.36194],[79.23769,24.36227],[79.23998,24.35957],[79.2461,24.35822],[79.24579,24.36275],[79.25762,24.36978],[79.26017,24.36925],[79.26584,24.36312],[79.27675,24.3559],[79.29487,24.37497],[79.27247,24.38241],[79.26981,24.38891],[79.26555,24.39156],[79.26357,24.39903],[79.26115,24.4],[79.25493,24.41125],[79.25219,24.41208],[79.24899,24.39046],[79.24396,24.39446],[79.24327,24.39964],[79.24526,24.40216],[79.24674,24.40912],[79.24338,24.41482],[79.23426,24.41913],[79.22286,24.4178],[79.21871,24.41922],[79.20992,24.41466],[79.20678,24.41585],[79.20212,24.42464],[79.19644,24.42871],[79.19133,24.42807],[79.18072,24.43287],[79.1694,24.42928],[79.16807,24.43041],[79.16168,24.42654],[79.15855,24.42781],[79.14728,24.41688],[79.13835,24.41511],[79.13242,24.40992],[79.12987,24.40974],[79.12831,24.41259],[79.11991,24.41631],[79.10181,24.41237],[79.09934,24.40911],[79.10084,24.4018],[79.08682,24.40185],[79.07332,24.40664],[79.07074,24.40371],[79.07249,24.39782],[79.06994,24.39597],[79.06293,24.37748],[79.06167,24.37932],[79.05867,24.37765],[79.0533,24.36913],[79.04164,24.36869],[79.03391,24.37182],[79.03252,24.37112],[79.03197,24.37668],[79.02277,24.38032],[79.02194,24.38266],[79.01991,24.38325],[79.0185,24.3769],[79.01644,24.37653],[79.01523,24.37314],[79.0113,24.36982],[79.00867,24.36943],[79.00484,24.37086],[79.00407,24.37746],[79.00775,24.39079],[78.99914,24.39464],[78.99815,24.39657],[78.99932,24.39836],[78.99538,24.40073],[78.99415,24.40676],[78.99696,24.41105],[78.99287,24.41265],[78.99123,24.41759],[78.98405,24.41026],[78.98435,24.40478],[78.97693,24.38875],[78.97503,24.37857],[78.96991,24.37028],[78.97259,24.35449],[78.9707,24.35138],[78.97145,24.34761],[78.96301,24.34421],[78.94125,24.31529],[78.92365,24.30649],[78.91888,24.30023],[78.90964,24.298],[78.91161,24.288],[78.91866,24.28298],[78.91607,24.26763],[78.90546,24.26453],[78.88437,24.25],[78.88407,24.24335],[78.88805,24.22728],[78.88438,24.2196],[78.8768,24.2138],[78.86251,24.20945],[78.85847,24.2097],[78.85168,24.21416],[78.84689,24.21377],[78.83807,24.20734],[78.82675,24.19545],[78.82376,24.19685],[78.82177,24.20415],[78.81495,24.2068],[78.81294,24.20297],[78.8122,24.19105],[78.81439,24.18589],[78.81267,24.18103],[78.80621,24.17829],[78.79534,24.17813],[78.79282,24.17683],[78.78943,24.17711],[78.783,24.18915],[78.78075,24.19977],[78.78113,24.20605],[78.77699,24.21108],[78.77133,24.21447],[78.76737,24.22021],[78.76751,24.22668],[78.76452,24.2318],[78.76766,24.23879],[78.76865,24.24843],[78.76741,24.25311],[78.76189,24.25954],[78.75987,24.25733],[78.75979,24.24407],[78.75545,24.24112],[78.75496,24.23834],[78.75042,24.23389],[78.7416,24.23384],[78.74042,24.23498],[78.739,24.23808],[78.74181,24.24501],[78.74126,24.24734],[78.73417,24.25241],[78.72789,24.24822],[78.72638,24.24203],[78.72364,24.24],[78.72557,24.23644],[78.70871,24.23431],[78.70306,24.22692],[78.68252,24.23823],[78.66863,24.24004],[78.66664,24.24196],[78.66712,24.24476],[78.66383,24.25067],[78.6643,24.2561],[78.66005,24.26759],[78.64928,24.27163],[78.64565,24.27853],[78.63877,24.28513],[78.63137,24.28643],[78.6258,24.28059],[78.62454,24.28656],[78.62003,24.29032],[78.61997,24.29289],[78.62809,24.30031],[78.62844,24.30394],[78.62624,24.30732],[78.62341,24.3071],[78.61914,24.31033],[78.61821,24.30709],[78.61582,24.30963],[78.60942,24.30855],[78.60365,24.3145],[78.60104,24.32655],[78.59652,24.332],[78.5961,24.33518],[78.58929,24.33772],[78.58429,24.3465],[78.5831,24.34983],[78.586,24.35374],[78.57647,24.35565],[78.575,24.35532],[78.57319,24.35099],[78.56331,24.35798],[78.55934,24.35674],[78.53837,24.36795],[78.52988,24.3681],[78.52991,24.37238],[78.52723,24.37525],[78.52983,24.37891],[78.52729,24.37914],[78.52565,24.38319],[78.51838,24.38782],[78.50223,24.39034],[78.49362,24.38138],[78.48579,24.36934],[78.47429,24.35634],[78.47421,24.34777],[78.47758,24.33848],[78.46366,24.33013],[78.45639,24.32818],[78.45527,24.32407],[78.44389,24.31935],[78.44587,24.31587],[78.43869,24.31254],[78.43762,24.30858],[78.44015,24.29624],[78.43394,24.29127],[78.43388,24.28792],[78.43109,24.28403],[78.4242,24.28558],[78.4184,24.28494],[78.41408,24.27792],[78.41396,24.27298],[78.40997,24.27112],[78.40345,24.2706],[78.40001,24.27202],[78.39813,24.26944],[78.39538,24.26896],[78.39162,24.27068],[78.38852,24.27085],[78.38787,24.26905],[78.38705,24.2709],[78.3849,24.27001],[78.38187,24.27312],[78.38085,24.28041],[78.3781,24.28408],[78.37033,24.28404],[78.36627,24.29107],[78.35816,24.29231],[78.34805,24.29958],[78.34559,24.30624],[78.34587,24.31391],[78.34369,24.31731],[78.33146,24.32393],[78.32908,24.32713],[78.33128,24.33432],[78.34329,24.34462],[78.3468,24.35241],[78.35693,24.36282],[78.35793,24.36758],[78.36233,24.37143],[78.36885,24.37391],[78.36993,24.37592],[78.36494,24.38648],[78.3562,24.38543],[78.3489,24.38744],[78.34294,24.40019]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"426","area_level":"District","area_name":"Satna","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[80.60982,24.02445],[80.60987,24.0251],[80.61024,24.02547],[80.61022,24.02571],[80.60991,24.02592],[80.60781,24.02648],[80.60648,24.02662],[80.60434,24.02657],[80.60309,24.02603],[80.60195,24.02587],[80.60239,24.02553],[80.60247,24.02518],[80.60193,24.02477],[80.60193,24.02459],[80.60222,24.02394],[80.60257,24.02121],[80.60314,24.0206],[80.60311,24.01985],[80.60276,24.01935],[80.60314,24.0189],[80.60387,24.01858],[80.60428,24.01745],[80.60502,24.01735],[80.60561,24.01702],[80.60572,24.01656],[80.6061,24.0162],[80.60624,24.01585],[80.60701,24.01546],[80.6071,24.01526],[80.60706,24.01469],[80.60735,24.01424],[80.60732,24.01404],[80.60578,24.0134],[80.60538,24.01293],[80.60547,24.01256],[80.60627,24.01305],[80.60765,24.01339],[80.61171,24.01326],[80.61203,24.01218],[80.61203,24.01089],[80.61253,24.00992],[80.61283,24.00854],[80.61318,24.00829],[80.61337,24.00842],[80.61344,24.00906],[80.61399,24.00913],[80.61432,24.0095],[80.61503,24.00931],[80.61521,24.0095],[80.61563,24.0109],[80.61595,24.01129],[80.61636,24.01144],[80.61656,24.01132],[80.61647,24.0106],[80.61661,24.01042],[80.61687,24.01045],[80.61727,24.01097],[80.6176,24.01103],[80.6178,24.01124],[80.61789,24.01186],[80.61866,24.01238],[80.61933,24.01338],[80.62024,24.01526],[80.62054,24.01855],[80.62151,24.01999],[80.62151,24.02034],[80.62143,24.02062],[80.62043,24.02072],[80.62021,24.02144],[80.61935,24.02175],[80.61933,24.02225],[80.61988,24.02269],[80.61993,24.02294],[80.61529,24.02289],[80.61519,24.02243],[80.61172,24.02213],[80.61102,24.02223],[80.61055,24.02259],[80.61037,24.02311],[80.61093,24.02391],[80.61081,24.02431],[80.61013,24.02421],[80.60982,24.02445]]],[[[80.89027,24.02917],[80.89028,24.02963],[80.88863,24.0297],[80.88789,24.0292],[80.88721,24.02833],[80.88697,24.02775],[80.88741,24.0261],[80.88687,24.02558],[80.88659,24.02472],[80.88696,24.02411],[80.88576,24.01936],[80.88426,24.01695],[80.88344,24.01453],[80.88068,24.00844],[80.8778,24.00332],[80.87688,24.00111],[80.8768,24.00046],[80.87894,23.9988],[80.88218,23.99832],[80.88349,23.99786],[80.88469,23.99802],[80.88587,23.99772],[80.88694,23.99785],[80.8878,23.99932],[80.8881,23.9994],[80.88898,23.99897],[80.89005,23.99941],[80.89011,23.99969],[80.88971,23.99977],[80.89003,24.00046],[80.89077,24.00102],[80.89205,24.00109],[80.89298,24.0026],[80.89414,24.00329],[80.89519,24.00536],[80.89489,24.00606],[80.89503,24.00652],[80.89589,24.00714],[80.89562,24.00787],[80.89472,24.00799],[80.89464,24.00848],[80.89513,24.00917],[80.89452,24.00969],[80.89472,24.01005],[80.89531,24.00979],[80.89604,24.01021],[80.89629,24.01104],[80.89696,24.01148],[80.89691,24.01317],[80.89719,24.01323],[80.89793,24.0127],[80.89836,24.01365],[80.89875,24.01351],[80.89927,24.01386],[80.89976,24.01377],[80.89983,24.01405],[80.89941,24.01445],[80.89963,24.01487],[80.90067,24.01442],[80.9017,24.01494],[80.9031,24.01487],[80.9036,24.01432],[80.90458,24.01448],[80.90512,24.01508],[80.90467,24.016],[80.90498,24.01667],[80.90507,24.01766],[80.90546,24.01792],[80.90646,24.0176],[80.90709,24.02008],[80.90603,24.02059],[80.89947,24.02255],[80.89802,24.0225],[80.89736,24.02282],[80.894,24.02511],[80.89229,24.02577],[80.89085,24.02897],[80.89027,24.02917]]],[[[80.10474,24.38622],[80.10424,24.38643],[80.1042,24.38667],[80.10385,24.38693],[80.10314,24.38709],[80.10038,24.38664],[80.0999,24.38634],[80.09987,24.38545],[80.10035,24.38511],[80.10061,24.38212],[80.10083,24.38134],[80.10131,24.38066],[80.10183,24.37869],[80.10199,24.37738],[80.10266,24.37423],[80.10336,24.36893],[80.10485,24.36977],[80.10859,24.3726],[80.11,24.37314],[80.11051,24.37518],[80.11366,24.37528],[80.11396,24.37772],[80.11351,24.38137],[80.11298,24.38209],[80.11234,24.3825],[80.11218,24.38326],[80.112,24.38353],[80.11165,24.38358],[80.11118,24.38326],[80.11082,24.3832],[80.11021,24.38349],[80.10939,24.38355],[80.10941,24.38375],[80.10919,24.38397],[80.10858,24.38403],[80.10879,24.38463],[80.10844,24.38477],[80.10836,24.38511],[80.10856,24.38541],[80.10825,24.38567],[80.10758,24.38559],[80.10704,24.38575],[80.10639,24.3864],[80.10528,24.38611],[80.10474,24.38622]]],[[[80.3525,24.41937],[80.33814,24.42365],[80.33879,24.41088],[80.33945,24.40993],[80.33974,24.4081],[80.3423,24.40576],[80.34613,24.40102],[80.34734,24.40015],[80.34787,24.40093],[80.35073,24.3994],[80.35136,24.39979],[80.3523,24.39938],[80.35246,24.39995],[80.35385,24.39985],[80.35381,24.39893],[80.35406,24.39883],[80.35478,24.39522],[80.35426,24.39364],[80.35306,24.39283],[80.3513,24.39264],[80.34687,24.39325],[80.34473,24.39283],[80.34329,24.39128],[80.34361,24.38897],[80.34456,24.38761],[80.34361,24.38694],[80.34445,24.38558],[80.34667,24.38655],[80.34941,24.38432],[80.35078,24.3847],[80.35385,24.39023],[80.35564,24.39188],[80.35786,24.39246],[80.36504,24.39072],[80.37612,24.39188],[80.37639,24.39457],[80.38186,24.39463],[80.38241,24.39525],[80.3832,24.39739],[80.38674,24.39883],[80.38679,24.40075],[80.38633,24.40187],[80.38665,24.40587],[80.38482,24.40629],[80.38411,24.40772],[80.38207,24.40845],[80.38188,24.40945],[80.37925,24.4106],[80.37882,24.42049],[80.37071,24.41964],[80.35981,24.41996],[80.3569,24.41955],[80.35594,24.41986],[80.35465,24.41936],[80.35288,24.41972],[80.3525,24.41937]]],[[[80.39262,24.52932],[80.39192,24.5297],[80.39132,24.52958],[80.39157,24.52791],[80.39097,24.52747],[80.39104,24.52687],[80.3916,24.52629],[80.39356,24.52603],[80.39388,24.52535],[80.39488,24.52537],[80.3961,24.52498],[80.39659,24.52387],[80.39658,24.52301],[80.39623,24.52265],[80.39555,24.52316],[80.39517,24.52306],[80.39547,24.52236],[80.39517,24.5206],[80.39541,24.51951],[80.39502,24.51898],[80.39507,24.51854],[80.39466,24.51804],[80.39435,24.5168],[80.39474,24.51607],[80.39523,24.51624],[80.3954,24.51525],[80.39631,24.51498],[80.3961,24.51328],[80.39649,24.51251],[80.39866,24.51124],[80.40043,24.5115],[80.39904,24.50443],[80.39905,24.50375],[80.40021,24.50169],[80.40019,24.50022],[80.40195,24.50152],[80.40265,24.50173],[80.40456,24.50151],[80.40478,24.49999],[80.40419,24.4971],[80.40402,24.49452],[80.40479,24.49479],[80.40524,24.49555],[80.40741,24.49686],[80.40878,24.49713],[80.41052,24.49791],[80.41145,24.49861],[80.41304,24.49913],[80.41501,24.50037],[80.41689,24.50078],[80.41887,24.50164],[80.42408,24.50173],[80.4249,24.50145],[80.42428,24.50457],[80.41221,24.50669],[80.41269,24.5099],[80.41235,24.51011],[80.41299,24.51432],[80.41481,24.51453],[80.41514,24.5155],[80.41451,24.51612],[80.41432,24.51773],[80.41466,24.51916],[80.41529,24.51993],[80.41529,24.52235],[80.41573,24.52276],[80.41551,24.52338],[80.41707,24.52326],[80.41644,24.52392],[80.41671,24.52442],[80.4165,24.52709],[80.41175,24.5281],[80.41167,24.52845],[80.41067,24.52869],[80.41024,24.52769],[80.40325,24.52963],[80.40209,24.52887],[80.40126,24.52684],[80.40055,24.52622],[80.40008,24.5266],[80.39929,24.5264],[80.39886,24.52671],[80.39792,24.52683],[80.39703,24.52789],[80.39607,24.5279],[80.39449,24.52874],[80.39404,24.5287],[80.39351,24.52937],[80.39262,24.52932]]],[[[80.4351,24.56277],[80.43467,24.56315],[80.4345,24.56296],[80.43369,24.56252],[80.43332,24.56258],[80.43269,24.56287],[80.43232,24.56275],[80.43214,24.56254],[80.43214,24.56236],[80.43228,24.56217],[80.43369,24.56187],[80.43411,24.56159],[80.43404,24.56138],[80.43353,24.56133],[80.43312,24.56117],[80.43328,24.56085],[80.43408,24.56022],[80.43424,24.55973],[80.43417,24.55943],[80.4339,24.55901],[80.43305,24.55824],[80.43269,24.55769],[80.4327,24.55695],[80.43307,24.55588],[80.43297,24.55528],[80.43265,24.55492],[80.43147,24.55435],[80.43149,24.55376],[80.43138,24.55361],[80.43136,24.55286],[80.43157,24.55242],[80.43198,24.55192],[80.43202,24.55119],[80.4323,24.55055],[80.43249,24.54947],[80.43233,24.54881],[80.43234,24.54824],[80.43311,24.54776],[80.43399,24.54761],[80.43446,24.54789],[80.43688,24.5478],[80.43709,24.54796],[80.4378,24.55141],[80.43783,24.55242],[80.43763,24.55377],[80.4377,24.55402],[80.43794,24.55448],[80.4383,24.55477],[80.43839,24.55533],[80.43863,24.55582],[80.43966,24.5566],[80.43983,24.55693],[80.43988,24.55882],[80.43928,24.5596],[80.43911,24.56055],[80.4382,24.56068],[80.43808,24.56105],[80.43529,24.562],[80.4351,24.56277]]],[[[80.88466,25.18794],[80.88057,25.18687],[80.8795,25.18126],[80.87238,25.17809],[80.86879,25.17451],[80.86808,25.17845],[80.86415,25.18278],[80.85717,25.18068],[80.85563,25.18247],[80.84508,25.18494],[80.84415,25.1869],[80.83814,25.18035],[80.83928,25.17994],[80.83879,25.17615],[80.84303,25.17599],[80.84622,25.17172],[80.8491,25.1626],[80.84326,25.15952],[80.83991,25.15549],[80.83982,25.14455],[80.83784,25.14143],[80.83645,25.13056],[80.83808,25.12518],[80.84061,25.1232],[80.83891,25.11893],[80.8407,25.11429],[80.84061,25.10861],[80.83754,25.10593],[80.83911,25.1055],[80.83814,25.10431],[80.83554,25.10513],[80.83605,25.10658],[80.83408,25.10603],[80.83372,25.10349],[80.82989,25.10006],[80.82781,25.11522],[80.82439,25.11613],[80.82665,25.12145],[80.8225,25.12395],[80.81724,25.12423],[80.81597,25.12241],[80.81195,25.12408],[80.81527,25.13165],[80.81319,25.13467],[80.8084,25.13679],[80.80376,25.13757],[80.80078,25.1354],[80.79708,25.13657],[80.79475,25.13059],[80.79136,25.13168],[80.78638,25.12944],[80.78171,25.13363],[80.78417,25.13694],[80.77878,25.14226],[80.77903,25.13861],[80.77206,25.13263],[80.7618,25.13483],[80.75391,25.1328],[80.74545,25.12911],[80.74195,25.12363],[80.73675,25.13536],[80.73258,25.13321],[80.73483,25.13936],[80.7336,25.14048],[80.73189,25.13936],[80.73165,25.14495],[80.73024,25.14632],[80.72763,25.13768],[80.72318,25.13714],[80.72157,25.13529],[80.72042,25.1358],[80.72089,25.13886],[80.71921,25.13467],[80.72011,25.13241],[80.71811,25.13034],[80.70761,25.13054],[80.70504,25.12914],[80.70347,25.12641],[80.70395,25.12283],[80.70733,25.11779],[80.71087,25.11976],[80.72286,25.12027],[80.72385,25.12158],[80.73066,25.11264],[80.72631,25.11116],[80.72324,25.10507],[80.72324,25.09465],[80.72545,25.09143],[80.73512,25.08924],[80.7366,25.09487],[80.74336,25.09272],[80.75193,25.09289],[80.7541,25.09031],[80.7575,25.09083],[80.75524,25.08679],[80.75713,25.08232],[80.76886,25.07923],[80.76999,25.07717],[80.77193,25.07821],[80.78363,25.07595],[80.78409,25.06885],[80.78779,25.06139],[80.78467,25.06167],[80.77576,25.05482],[80.76588,25.05289],[80.76171,25.05601],[80.75284,25.05678],[80.75107,25.05407],[80.74253,25.05383],[80.74303,25.05595],[80.73775,25.05466],[80.73691,25.05296],[80.73431,25.05594],[80.73234,25.06369],[80.72072,25.06401],[80.70838,25.05673],[80.69602,25.05501],[80.69117,25.05173],[80.67974,25.04846],[80.68103,25.05329],[80.68026,25.05771],[80.67581,25.05583],[80.67386,25.06061],[80.68403,25.06773],[80.68244,25.07014],[80.68431,25.07306],[80.68289,25.07429],[80.68501,25.07661],[80.67877,25.07704],[80.67292,25.08252],[80.66915,25.07311],[80.66174,25.06761],[80.65867,25.07091],[80.65839,25.08087],[80.65597,25.08471],[80.65193,25.08378],[80.64768,25.08731],[80.64266,25.08857],[80.64089,25.08724],[80.64166,25.09201],[80.64042,25.09249],[80.63947,25.09081],[80.64097,25.08925],[80.63931,25.08715],[80.63389,25.08765],[80.63421,25.08988],[80.62881,25.09043],[80.62837,25.08716],[80.62581,25.08671],[80.62765,25.08535],[80.62603,25.08294],[80.62394,25.08869],[80.61025,25.09577],[80.60808,25.09843],[80.61133,25.10074],[80.61881,25.10049],[80.62077,25.10498],[80.61875,25.10649],[80.61958,25.10816],[80.62501,25.11127],[80.62445,25.11488],[80.62741,25.11741],[80.63078,25.11598],[80.63237,25.11305],[80.63574,25.11316],[80.63823,25.11687],[80.63254,25.1225],[80.63455,25.12863],[80.62851,25.1334],[80.62237,25.13494],[80.62002,25.13392],[80.61643,25.12835],[80.61161,25.1277],[80.61034,25.12901],[80.61039,25.13631],[80.61268,25.14319],[80.60967,25.14569],[80.60844,25.14983],[80.6007,25.14985],[80.59678,25.14375],[80.59764,25.14125],[80.595,25.1272],[80.59677,25.12791],[80.60003,25.12615],[80.60244,25.12254],[80.60638,25.1212],[80.60719,25.11791],[80.6019,25.11637],[80.60021,25.11391],[80.59756,25.11393],[80.59511,25.10519],[80.59233,25.1032],[80.59613,25.09908],[80.59371,25.0945],[80.59785,25.09117],[80.59772,25.0889],[80.59229,25.0902],[80.59712,25.08185],[80.59603,25.07981],[80.59943,25.08024],[80.5982,25.08726],[80.60281,25.08518],[80.60673,25.08628],[80.6062,25.08016],[80.60986,25.07938],[80.61446,25.06658],[80.61314,25.0657],[80.60424,25.06901],[80.60328,25.0722],[80.60002,25.07335],[80.59726,25.07768],[80.59621,25.07642],[80.59511,25.07942],[80.58219,25.08212],[80.57586,25.08153],[80.56814,25.08686],[80.56665,25.07802],[80.56812,25.07748],[80.56758,25.07336],[80.56442,25.07026],[80.55223,25.06282],[80.54545,25.06455],[80.54394,25.0563],[80.54126,25.053],[80.53752,25.05147],[80.53133,25.05209],[80.53364,25.04884],[80.54067,25.04625],[80.53726,25.04149],[80.53032,25.03971],[80.52108,25.04022],[80.5323,25.03792],[80.53657,25.03408],[80.54607,25.03242],[80.54816,25.02993],[80.54745,25.02493],[80.54123,25.01814],[80.54437,25.01405],[80.54354,25.011],[80.54928,25.0021],[80.54371,25.0029],[80.5386,25.00043],[80.53084,25.00125],[80.52503,25.00356],[80.52359,25.00658],[80.51762,25.00878],[80.51476,25.00295],[80.50962,25.00313],[80.50541,25.00538],[80.50079,25.00447],[80.4993,25.00621],[80.49578,24.99296],[80.49259,24.98938],[80.48829,24.98988],[80.48039,24.986],[80.47836,24.97994],[80.47931,24.97463],[80.47826,24.97393],[80.47738,24.97621],[80.47609,24.97528],[80.47071,24.9673],[80.48524,24.94827],[80.49055,24.9447],[80.4888,24.93852],[80.49252,24.93111],[80.49105,24.92528],[80.48795,24.92532],[80.48737,24.92202],[80.49044,24.92046],[80.48845,24.91688],[80.48977,24.91503],[80.49274,24.91452],[80.49503,24.91171],[80.49438,24.90791],[80.4886,24.90523],[80.49061,24.90246],[80.48882,24.90115],[80.48997,24.89923],[80.48682,24.89836],[80.48938,24.89445],[80.48377,24.89139],[80.48146,24.88586],[80.47972,24.88504],[80.48238,24.88032],[80.47854,24.87265],[80.48161,24.87179],[80.48438,24.86533],[80.48461,24.85998],[80.48228,24.85665],[80.48233,24.853],[80.47737,24.84727],[80.47973,24.84325],[80.48573,24.84297],[80.48722,24.84376],[80.4868,24.84545],[80.48067,24.84836],[80.48441,24.85281],[80.48544,24.85765],[80.48915,24.85839],[80.49229,24.85501],[80.49653,24.85624],[80.4976,24.85915],[80.49645,24.85984],[80.48721,24.86099],[80.48719,24.86857],[80.48467,24.87395],[80.48738,24.88244],[80.48674,24.88448],[80.48997,24.88761],[80.49915,24.89108],[80.50689,24.8918],[80.50601,24.89382],[80.50089,24.89629],[80.50116,24.89914],[80.50605,24.90018],[80.50483,24.9026],[80.51003,24.90771],[80.50814,24.91263],[80.51389,24.91126],[80.51406,24.91489],[80.51815,24.9172],[80.52243,24.91698],[80.52458,24.91397],[80.53459,24.90976],[80.53886,24.90042],[80.54397,24.89929],[80.55723,24.90245],[80.56624,24.90068],[80.57624,24.90121],[80.58341,24.89733],[80.58838,24.88979],[80.61122,24.87868],[80.61332,24.87604],[80.62223,24.87476],[80.62947,24.87821],[80.63196,24.87446],[80.63058,24.87299],[80.63122,24.86591],[80.60981,24.85111],[80.5977,24.84552],[80.59425,24.83829],[80.60348,24.83956],[80.60704,24.83815],[80.60363,24.83096],[80.59418,24.83157],[80.59671,24.8289],[80.59218,24.83055],[80.59011,24.82929],[80.59366,24.82838],[80.59262,24.82695],[80.58964,24.82694],[80.58739,24.82468],[80.58281,24.82506],[80.57922,24.82275],[80.57537,24.8187],[80.57529,24.8104],[80.57321,24.81214],[80.57254,24.82057],[80.56862,24.81613],[80.5568,24.81384],[80.53606,24.80573],[80.53087,24.81219],[80.53429,24.81191],[80.5369,24.81354],[80.52746,24.81738],[80.52505,24.82243],[80.52643,24.81551],[80.51847,24.80602],[80.52456,24.81],[80.52632,24.8089],[80.52737,24.81066],[80.53009,24.81088],[80.53357,24.80353],[80.52449,24.79916],[80.52352,24.79139],[80.52213,24.79099],[80.52163,24.79507],[80.51871,24.7963],[80.50718,24.789],[80.50893,24.78568],[80.50795,24.78188],[80.50954,24.78105],[80.50783,24.77458],[80.50887,24.77067],[80.49302,24.78187],[80.48951,24.77494],[80.48376,24.77273],[80.483,24.77086],[80.4871,24.76407],[80.48567,24.7622],[80.48377,24.76415],[80.48132,24.76122],[80.47916,24.76687],[80.47755,24.76776],[80.4756,24.7663],[80.47483,24.76257],[80.47796,24.75552],[80.47571,24.75498],[80.47227,24.75854],[80.47053,24.76505],[80.46843,24.76656],[80.46219,24.7622],[80.45397,24.75928],[80.45204,24.75652],[80.43598,24.74666],[80.42702,24.75327],[80.42406,24.76512],[80.41937,24.76872],[80.41536,24.77736],[80.41199,24.77864],[80.40971,24.77588],[80.41014,24.76426],[80.40765,24.76394],[80.40064,24.75811],[80.39959,24.75315],[80.39516,24.75045],[80.39402,24.74484],[80.39431,24.74186],[80.3988,24.73515],[80.40016,24.72764],[80.40335,24.72566],[80.40749,24.72762],[80.40913,24.7263],[80.40154,24.71765],[80.40272,24.71764],[80.4035,24.71433],[80.40347,24.7084],[80.3897,24.71143],[80.38219,24.71136],[80.38093,24.70438],[80.37682,24.70127],[80.37355,24.6945],[80.36728,24.68974],[80.35763,24.69901],[80.35095,24.69943],[80.34449,24.69692],[80.34735,24.69366],[80.35508,24.67315],[80.3722,24.67604],[80.37659,24.68133],[80.38684,24.6761],[80.39064,24.66576],[80.40369,24.65608],[80.40878,24.64944],[80.41342,24.6476],[80.41451,24.64381],[80.41938,24.63734],[80.42117,24.63699],[80.42219,24.63107],[80.42398,24.62978],[80.41847,24.6213],[80.41784,24.61644],[80.41479,24.61533],[80.41417,24.61323],[80.4157,24.612],[80.41997,24.61078],[80.42746,24.61224],[80.42977,24.61008],[80.43229,24.61199],[80.43617,24.60992],[80.43933,24.61132],[80.43937,24.6082],[80.44178,24.60737],[80.45311,24.61348],[80.45979,24.61278],[80.46224,24.61451],[80.46175,24.6158],[80.46649,24.61578],[80.46948,24.61367],[80.46289,24.60754],[80.46407,24.60665],[80.46355,24.60378],[80.46476,24.60418],[80.46453,24.60208],[80.46663,24.60161],[80.46653,24.59999],[80.46403,24.59941],[80.46379,24.59685],[80.46202,24.59732],[80.46013,24.59281],[80.45971,24.59112],[80.46298,24.58858],[80.46314,24.58559],[80.45676,24.57456],[80.45617,24.56492],[80.45783,24.56396],[80.45745,24.5589],[80.45978,24.55815],[80.45882,24.55573],[80.46081,24.55264],[80.45293,24.55306],[80.45118,24.54954],[80.4503,24.53884],[80.44611,24.53381],[80.44237,24.53397],[80.44217,24.52786],[80.44815,24.52762],[80.46169,24.53225],[80.46152,24.52966],[80.46374,24.52432],[80.46559,24.52404],[80.46569,24.52137],[80.46103,24.51918],[80.46126,24.51419],[80.45888,24.51043],[80.45352,24.5101],[80.45214,24.51233],[80.4435,24.51283],[80.44082,24.50967],[80.43895,24.50978],[80.43842,24.50632],[80.43554,24.50647],[80.43583,24.49006],[80.42839,24.4879],[80.42401,24.47931],[80.42534,24.47812],[80.43071,24.4785],[80.43257,24.47663],[80.43099,24.47055],[80.42854,24.46959],[80.42661,24.46495],[80.42589,24.45397],[80.4229,24.44835],[80.42276,24.44301],[80.43194,24.44117],[80.43954,24.43632],[80.44996,24.44012],[80.46032,24.43686],[80.46554,24.42941],[80.46678,24.42232],[80.45766,24.42265],[80.45696,24.42113],[80.46007,24.42019],[80.46175,24.41703],[80.46493,24.41983],[80.46878,24.42001],[80.46794,24.41716],[80.47331,24.41528],[80.47091,24.41424],[80.47164,24.41228],[80.4684,24.41209],[80.47041,24.40662],[80.46956,24.40406],[80.46565,24.40167],[80.46651,24.39979],[80.46806,24.40152],[80.47064,24.39842],[80.46911,24.39399],[80.46571,24.39072],[80.47139,24.38625],[80.47052,24.37501],[80.47427,24.3761],[80.47634,24.37261],[80.48146,24.37258],[80.48564,24.36911],[80.49317,24.3713],[80.49789,24.37574],[80.50003,24.37474],[80.50471,24.37074],[80.5058,24.36322],[80.51289,24.36064],[80.50878,24.34981],[80.50911,24.34711],[80.51197,24.34403],[80.51693,24.34108],[80.52631,24.34095],[80.53186,24.34276],[80.53374,24.33955],[80.52984,24.33875],[80.53226,24.3332],[80.53922,24.33291],[80.53681,24.32901],[80.54132,24.32442],[80.53649,24.3175],[80.5456,24.31783],[80.54972,24.31511],[80.55221,24.31664],[80.55795,24.31205],[80.55401,24.30926],[80.55771,24.30429],[80.56011,24.30401],[80.56107,24.30612],[80.56309,24.30438],[80.568,24.3062],[80.5764,24.30141],[80.57477,24.2938],[80.56328,24.28982],[80.56571,24.28296],[80.56419,24.28024],[80.56548,24.2798],[80.56497,24.27458],[80.56331,24.27052],[80.55809,24.26696],[80.5728,24.26432],[80.58501,24.25775],[80.57378,24.25883],[80.57223,24.25838],[80.57218,24.25604],[80.56763,24.25633],[80.57072,24.25889],[80.56868,24.2598],[80.56636,24.25803],[80.56377,24.26192],[80.5602,24.26285],[80.56022,24.2653],[80.55858,24.26527],[80.55649,24.26875],[80.55458,24.26777],[80.55183,24.2714],[80.55081,24.26905],[80.55403,24.26689],[80.55332,24.26518],[80.55057,24.26649],[80.5503,24.26368],[80.5513,24.26217],[80.5547,24.2637],[80.55783,24.26087],[80.5555,24.25827],[80.55703,24.25593],[80.55901,24.25587],[80.5595,24.25424],[80.56294,24.25561],[80.56422,24.2515],[80.56921,24.25001],[80.57046,24.24306],[80.58146,24.24414],[80.58376,24.23935],[80.58856,24.23492],[80.58952,24.22941],[80.59397,24.22765],[80.5923,24.2251],[80.59168,24.21691],[80.59605,24.2133],[80.59745,24.20974],[80.60382,24.20681],[80.60321,24.20314],[80.60543,24.20484],[80.61457,24.19849],[80.62333,24.19968],[80.6231,24.19752],[80.62041,24.19629],[80.62332,24.19641],[80.62284,24.1937],[80.61909,24.19235],[80.62183,24.19228],[80.62113,24.1904],[80.61892,24.19037],[80.6153,24.18689],[80.62078,24.18773],[80.62053,24.18457],[80.61794,24.18243],[80.61902,24.181],[80.62351,24.18365],[80.62373,24.19013],[80.62948,24.19406],[80.62943,24.19766],[80.64055,24.19556],[80.63887,24.19155],[80.64216,24.1876],[80.6449,24.18897],[80.64541,24.19171],[80.64694,24.18877],[80.65078,24.19065],[80.65367,24.19268],[80.6531,24.19522],[80.65727,24.19475],[80.66383,24.19805],[80.66709,24.19501],[80.67086,24.19532],[80.67219,24.19746],[80.67536,24.19722],[80.67776,24.19944],[80.67866,24.1982],[80.67473,24.19519],[80.67371,24.19045],[80.66587,24.19334],[80.66307,24.19072],[80.66482,24.1873],[80.65506,24.18949],[80.6513,24.18674],[80.65476,24.17657],[80.6486,24.17367],[80.64923,24.18165],[80.63728,24.18551],[80.63136,24.18383],[80.63092,24.17685],[80.63288,24.17505],[80.62796,24.17532],[80.6276,24.17197],[80.62311,24.17142],[80.61858,24.17327],[80.61674,24.16927],[80.62142,24.16697],[80.62493,24.1571],[80.62057,24.16021],[80.61741,24.16651],[80.61235,24.16987],[80.61143,24.16813],[80.60841,24.16893],[80.61115,24.16606],[80.61151,24.15878],[80.60539,24.1602],[80.60572,24.15595],[80.59788,24.15502],[80.59632,24.15333],[80.603,24.14983],[80.6095,24.14861],[80.60298,24.14772],[80.59839,24.14127],[80.59938,24.13993],[80.59701,24.13791],[80.59682,24.13547],[80.58517,24.1298],[80.57746,24.12884],[80.57702,24.1204],[80.56736,24.12171],[80.56216,24.11905],[80.55591,24.12105],[80.55468,24.11429],[80.55865,24.11223],[80.55998,24.10965],[80.55232,24.11068],[80.54968,24.10803],[80.54745,24.10938],[80.54426,24.10537],[80.54755,24.10242],[80.54305,24.1005],[80.542,24.09604],[80.53237,24.09509],[80.52894,24.08863],[80.51978,24.08637],[80.51619,24.08127],[80.50831,24.07709],[80.48748,24.0697],[80.48446,24.07033],[80.47685,24.06668],[80.47591,24.0715],[80.4711,24.06999],[80.47256,24.07226],[80.46599,24.07362],[80.45679,24.08604],[80.44112,24.09266],[80.43948,24.0883],[80.44218,24.08558],[80.44091,24.08246],[80.44534,24.07002],[80.4437,24.04231],[80.4416,24.03614],[80.4371,24.03206],[80.42098,24.03264],[80.41652,24.03406],[80.41467,24.03632],[80.40701,24.03629],[80.39371,24.04093],[80.38887,24.03934],[80.3853,24.04233],[80.38343,24.03833],[80.38465,24.03346],[80.39074,24.02981],[80.39341,24.02573],[80.38668,24.01194],[80.38854,24.00942],[80.38925,24.00223],[80.38759,23.99836],[80.36929,23.98764],[80.36274,23.98063],[80.35797,23.9802],[80.3547,23.96948],[80.35776,23.96925],[80.35886,23.97081],[80.35986,23.96876],[80.36428,23.97326],[80.3705,23.97444],[80.3748,23.97297],[80.37936,23.96868],[80.38153,23.96958],[80.39023,23.96724],[80.39994,23.97327],[80.40433,23.97281],[80.40976,23.97591],[80.41854,23.98466],[80.42289,23.98485],[80.42342,23.97969],[80.42949,23.98246],[80.43268,23.98097],[80.45112,23.98626],[80.45398,23.98869],[80.46862,23.99111],[80.51315,24.01243],[80.52635,24.02147],[80.5317,24.02825],[80.51862,24.0402],[80.51771,24.04417],[80.51501,24.04649],[80.51539,24.04921],[80.51705,24.05245],[80.51955,24.05299],[80.51967,24.05672],[80.52411,24.05703],[80.52666,24.06075],[80.52579,24.06244],[80.52698,24.06162],[80.52796,24.06344],[80.53246,24.06373],[80.5337,24.06525],[80.53272,24.06621],[80.53691,24.0681],[80.53729,24.07054],[80.53912,24.07025],[80.54,24.06471],[80.54318,24.05895],[80.55235,24.0531],[80.55465,24.04903],[80.54391,24.04518],[80.5454,24.0387],[80.54356,24.03117],[80.55572,24.04071],[80.56554,24.04549],[80.57941,24.04779],[80.59517,24.0579],[80.59936,24.06442],[80.60244,24.06517],[80.60787,24.06338],[80.61174,24.06872],[80.62648,24.07545],[80.63182,24.06976],[80.6342,24.06923],[80.64205,24.05986],[80.64476,24.04302],[80.64841,24.04401],[80.64942,24.05336],[80.64599,24.05633],[80.64477,24.06139],[80.63877,24.07172],[80.64053,24.07681],[80.63658,24.08497],[80.6454,24.08988],[80.64742,24.08516],[80.65098,24.08557],[80.65725,24.09162],[80.6606,24.08625],[80.66743,24.08329],[80.67139,24.07479],[80.68304,24.07369],[80.68014,24.09165],[80.67341,24.10491],[80.70541,24.11725],[80.71027,24.12554],[80.71195,24.12357],[80.71466,24.1242],[80.7162,24.12782],[80.73689,24.13186],[80.74514,24.1169],[80.73906,24.10579],[80.73091,24.10072],[80.72065,24.09108],[80.70419,24.09276],[80.69581,24.08384],[80.69821,24.08255],[80.69998,24.07843],[80.70432,24.0765],[80.70632,24.07049],[80.71238,24.06488],[80.71972,24.0681],[80.72371,24.06505],[80.72314,24.06822],[80.72507,24.07199],[80.72281,24.07387],[80.72295,24.0776],[80.73233,24.06892],[80.7354,24.07005],[80.73547,24.06881],[80.74019,24.06819],[80.74285,24.07014],[80.74387,24.06505],[80.74565,24.06539],[80.74594,24.06377],[80.75177,24.06279],[80.75511,24.06448],[80.7557,24.06659],[80.75689,24.06033],[80.76049,24.06177],[80.75978,24.06256],[80.76194,24.06427],[80.76351,24.0639],[80.76302,24.06615],[80.76481,24.06756],[80.77573,24.06891],[80.7814,24.06686],[80.78918,24.06703],[80.79459,24.06504],[80.7966,24.06596],[80.79855,24.06288],[80.80302,24.06068],[80.7991,24.05847],[80.79738,24.0534],[80.79247,24.05213],[80.79018,24.04918],[80.79551,24.04713],[80.79526,24.04186],[80.80187,24.03835],[80.80125,24.03693],[80.78854,24.03492],[80.7848,24.03667],[80.78074,24.03564],[80.77431,24.03912],[80.75419,24.02573],[80.76161,24.0218],[80.76376,24.01547],[80.76337,24.01191],[80.76612,24.01202],[80.76692,24.00815],[80.76959,24.00524],[80.76345,23.9952],[80.76465,23.99223],[80.76883,23.98823],[80.77354,23.98686],[80.79306,23.97033],[80.8072,23.96973],[80.80648,23.97291],[80.80159,23.97726],[80.80169,23.98829],[80.81055,23.99296],[80.81154,23.99579],[80.80892,24.0031],[80.80614,24.00622],[80.80092,24.00488],[80.79678,24.00628],[80.79866,24.01565],[80.81959,24.0283],[80.82606,24.02745],[80.83646,24.0233],[80.83911,24.03087],[80.84866,24.03573],[80.85105,24.04639],[80.85499,24.05101],[80.85916,24.05136],[80.86126,24.05599],[80.86453,24.05843],[80.86224,24.06482],[80.86297,24.06824],[80.86659,24.07644],[80.86962,24.07853],[80.87572,24.07844],[80.88154,24.07627],[80.88648,24.0662],[80.89306,24.063],[80.90305,24.07063],[80.90635,24.07035],[80.91294,24.06508],[80.9299,24.06752],[80.95035,24.06451],[80.9612,24.06451],[80.97371,24.06836],[80.9983,24.09122],[81.00896,24.0905],[81.05939,24.10806],[81.11197,24.13013],[81.1362,24.13563],[81.1519,24.1366],[81.15964,24.13429],[81.16878,24.12909],[81.17607,24.12272],[81.18546,24.11091],[81.20237,24.10958],[81.22476,24.12822],[81.22553,24.13291],[81.22303,24.14934],[81.22673,24.15491],[81.24946,24.16292],[81.28048,24.1902],[81.28378,24.19155],[81.29114,24.18897],[81.32171,24.18987],[81.34349,24.1869],[81.3482,24.18781],[81.36169,24.19569],[81.37501,24.21804],[81.38232,24.2431],[81.38267,24.2559],[81.38463,24.25989],[81.38882,24.2626],[81.38869,24.26602],[81.38174,24.26636],[81.37853,24.26307],[81.36874,24.26224],[81.35004,24.25306],[81.34412,24.26085],[81.34111,24.2702],[81.34904,24.27414],[81.34488,24.27866],[81.34769,24.2851],[81.34513,24.28969],[81.34593,24.29209],[81.32529,24.29057],[81.31146,24.30638],[81.30833,24.31195],[81.31068,24.31804],[81.30523,24.32263],[81.28959,24.31996],[81.28554,24.32286],[81.27161,24.32038],[81.26987,24.32331],[81.27298,24.33401],[81.28333,24.35592],[81.27509,24.35885],[81.27074,24.36305],[81.26765,24.3691],[81.26839,24.37626],[81.27286,24.38427],[81.28522,24.37835],[81.28382,24.38154],[81.28474,24.38486],[81.28918,24.38204],[81.29176,24.39651],[81.28098,24.40207],[81.27868,24.40486],[81.27761,24.41086],[81.26998,24.41222],[81.26742,24.41593],[81.26459,24.41668],[81.26249,24.42049],[81.26038,24.42089],[81.25929,24.42634],[81.26203,24.43109],[81.26032,24.4336],[81.257,24.43251],[81.25664,24.42979],[81.25518,24.43113],[81.25313,24.4287],[81.24904,24.43003],[81.2498,24.43365],[81.24095,24.44074],[81.23433,24.45054],[81.2287,24.45231],[81.23426,24.46108],[81.23468,24.4723],[81.22295,24.46884],[81.22183,24.47184],[81.22393,24.48401],[81.22227,24.48614],[81.22319,24.49074],[81.2103,24.49492],[81.20703,24.49788],[81.19756,24.49978],[81.18542,24.4975],[81.18026,24.49928],[81.18039,24.50052],[81.17302,24.50139],[81.17083,24.49931],[81.17165,24.49688],[81.15728,24.49763],[81.15333,24.50847],[81.14726,24.50672],[81.14235,24.50807],[81.13948,24.5118],[81.14335,24.51335],[81.1455,24.51767],[81.14769,24.51681],[81.15664,24.52228],[81.15546,24.54694],[81.15816,24.54894],[81.15902,24.5519],[81.15896,24.55934],[81.15726,24.56164],[81.1611,24.56259],[81.16049,24.56453],[81.15873,24.56407],[81.16006,24.56612],[81.15769,24.56835],[81.16015,24.56861],[81.16519,24.5631],[81.16765,24.56374],[81.16842,24.57282],[81.15992,24.57468],[81.15891,24.57748],[81.16069,24.58677],[81.15961,24.5892],[81.16328,24.59272],[81.1609,24.60238],[81.16618,24.61481],[81.16391,24.61594],[81.16807,24.62447],[81.16715,24.63037],[81.16169,24.637],[81.16482,24.63831],[81.16633,24.64219],[81.16408,24.64603],[81.16691,24.64751],[81.16537,24.65177],[81.16795,24.65562],[81.16748,24.65943],[81.16902,24.66028],[81.16972,24.66659],[81.17279,24.66881],[81.17457,24.67326],[81.17286,24.67858],[81.17582,24.68834],[81.17499,24.6905],[81.17832,24.69204],[81.18081,24.68954],[81.1802,24.69548],[81.18314,24.69873],[81.16877,24.70463],[81.15707,24.70734],[81.15227,24.71484],[81.14046,24.72542],[81.13976,24.72846],[81.13503,24.7312],[81.13165,24.73103],[81.12445,24.74029],[81.12156,24.73994],[81.11874,24.74446],[81.11981,24.74809],[81.11882,24.74984],[81.11189,24.74888],[81.10951,24.75046],[81.1057,24.75798],[81.09442,24.76807],[81.09059,24.77468],[81.09085,24.77924],[81.08884,24.78218],[81.09242,24.78386],[81.09103,24.78681],[81.09179,24.78993],[81.08942,24.79072],[81.08905,24.79316],[81.085,24.79434],[81.08433,24.79218],[81.08721,24.78735],[81.08477,24.78296],[81.07733,24.78589],[81.07647,24.77951],[81.07812,24.77587],[81.07588,24.77389],[81.07331,24.7759],[81.07252,24.77414],[81.06979,24.77456],[81.0683,24.77845],[81.06137,24.7785],[81.05349,24.78601],[81.05207,24.79129],[81.05291,24.79445],[81.04506,24.79693],[81.04935,24.80047],[81.05269,24.8005],[81.05553,24.80784],[81.06283,24.806],[81.06775,24.80087],[81.07011,24.80028],[81.07083,24.80271],[81.06804,24.81011],[81.06809,24.81507],[81.07113,24.81833],[81.06594,24.82073],[81.06704,24.82205],[81.06479,24.8236],[81.06887,24.82717],[81.07209,24.83327],[81.08261,24.8312],[81.09263,24.83228],[81.09525,24.83107],[81.09665,24.83369],[81.09538,24.83797],[81.09664,24.84103],[81.09398,24.84629],[81.1008,24.84624],[81.10416,24.85018],[81.10487,24.85637],[81.1077,24.85905],[81.10638,24.86683],[81.10956,24.86793],[81.11189,24.87168],[81.10976,24.87598],[81.11125,24.88023],[81.11441,24.8824],[81.12213,24.88022],[81.12529,24.88547],[81.12356,24.88902],[81.1255,24.89045],[81.11947,24.89362],[81.11966,24.89594],[81.12301,24.89934],[81.11808,24.90787],[81.1123,24.90737],[81.10388,24.9183],[81.0963,24.92119],[81.09336,24.92899],[81.09046,24.92887],[81.0897,24.93152],[81.08718,24.93295],[81.08942,24.93946],[81.08951,24.94656],[81.08451,24.94991],[81.07971,24.94828],[81.0705,24.94984],[81.06625,24.94903],[81.06085,24.95192],[81.05518,24.95216],[81.0499,24.94981],[81.03373,24.95261],[81.02856,24.94859],[81.02585,24.94875],[81.02835,24.94349],[81.02505,24.94439],[81.02521,24.94007],[81.01627,24.9515],[81.01354,24.94776],[81.0212,24.93945],[81.02261,24.93578],[81.02885,24.93326],[81.02467,24.93309],[81.02307,24.92762],[81.01718,24.93102],[81.01316,24.92793],[81.00952,24.93599],[81.00451,24.93722],[81.0004,24.93604],[80.99722,24.93288],[80.99653,24.92811],[80.98763,24.92604],[80.98675,24.9232],[80.98276,24.92664],[80.98618,24.9306],[80.98538,24.93288],[80.97385,24.93419],[80.9702,24.93305],[80.96825,24.93003],[80.9646,24.92982],[80.96574,24.92607],[80.96186,24.92576],[80.95992,24.91921],[80.95718,24.91785],[80.95752,24.92181],[80.9557,24.92192],[80.95729,24.92306],[80.95655,24.92989],[80.95879,24.93858],[80.9557,24.94055],[80.94771,24.94097],[80.95405,24.95434],[80.95095,24.95896],[80.95006,24.96441],[80.946,24.96627],[80.93635,24.96198],[80.92835,24.96106],[80.89915,24.94862],[80.89762,24.94503],[80.90016,24.94121],[80.90524,24.93866],[80.90708,24.93505],[80.90447,24.93806],[80.89946,24.94004],[80.89546,24.94511],[80.89172,24.94511],[80.87897,24.93949],[80.87902,24.93677],[80.88083,24.93534],[80.87757,24.9345],[80.87324,24.93581],[80.86073,24.92867],[80.85667,24.93158],[80.85133,24.93157],[80.83744,24.92833],[80.83723,24.92032],[80.83254,24.92001],[80.8298,24.91801],[80.81199,24.92255],[80.81391,24.92743],[80.82005,24.93291],[80.80817,24.93868],[80.80584,24.94368],[80.80993,24.95273],[80.80517,24.95351],[80.79951,24.95854],[80.79518,24.96023],[80.79221,24.96487],[80.7998,24.96841],[80.81137,24.97023],[80.81389,24.96936],[80.81383,24.96749],[80.81588,24.96621],[80.82379,24.96777],[80.82543,24.96966],[80.82587,24.9762],[80.83292,24.98198],[80.84589,24.98392],[80.85174,24.98825],[80.85513,25.00399],[80.84303,25.01962],[80.83655,25.02269],[80.83178,25.03287],[80.84012,25.03342],[80.8464,25.04444],[80.85546,25.04731],[80.86375,25.05652],[80.86966,25.05886],[80.87804,25.06547],[80.87642,25.0734],[80.86915,25.07284],[80.8676,25.07534],[80.86718,25.07951],[80.87959,25.09925],[80.87859,25.1021],[80.87459,25.10415],[80.87423,25.10862],[80.86925,25.11225],[80.86844,25.11568],[80.87494,25.12026],[80.87886,25.12565],[80.87952,25.13834],[80.88863,25.13252],[80.89478,25.13401],[80.89573,25.13529],[80.89454,25.13818],[80.91291,25.15908],[80.90372,25.15931],[80.89891,25.16632],[80.88924,25.17549],[80.88876,25.17812],[80.88618,25.17908],[80.88518,25.1818],[80.88208,25.18244],[80.88197,25.18507],[80.88432,25.18612],[80.88466,25.18794]],[[81.03884,24.78898],[81.04033,24.79387],[81.04448,24.79335],[81.05254,24.77787],[81.04134,24.77441],[81.03884,24.78898]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"427","area_level":"District","area_name":"Sehore","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.16839,23.67352],[77.16666,23.67455],[77.16032,23.67177],[77.15674,23.66209],[77.13755,23.63998],[77.12929,23.62505],[77.12669,23.61716],[77.1273,23.60824],[77.13047,23.60144],[77.14054,23.59603],[77.14365,23.58817],[77.14119,23.58197],[77.1352,23.57675],[77.13476,23.57352],[77.13802,23.56328],[77.13867,23.54773],[77.12731,23.54582],[77.11845,23.53784],[77.11387,23.52892],[77.10506,23.51933],[77.1044,23.51005],[77.10001,23.50282],[77.10041,23.49792],[77.09486,23.49024],[77.08041,23.48138],[77.07462,23.48221],[77.06844,23.48075],[77.05308,23.47035],[77.04114,23.45928],[77.0375,23.45294],[77.02683,23.44763],[77.01898,23.4478],[77.01658,23.44577],[77.01137,23.43775],[77.01057,23.42698],[76.99898,23.41481],[76.99494,23.40502],[76.98808,23.39673],[76.98928,23.38897],[76.99411,23.38193],[76.98924,23.36895],[76.98925,23.35742],[76.98048,23.34721],[76.98265,23.33258],[76.97917,23.311],[76.9877,23.30067],[76.98746,23.28582],[76.9726,23.27701],[76.96776,23.26042],[76.95446,23.25366],[76.9395,23.23624],[76.92334,23.23096],[76.90629,23.23139],[76.90124,23.22631],[76.90354,23.21904],[76.90195,23.21295],[76.88879,23.2059],[76.89459,23.19487],[76.89859,23.1788],[76.89263,23.15281],[76.8926,23.14672],[76.89553,23.13649],[76.88482,23.1247],[76.88235,23.1267],[76.8812,23.12133],[76.87499,23.1204],[76.87224,23.12176],[76.87069,23.11716],[76.86094,23.11739],[76.86059,23.11321],[76.86203,23.11244],[76.86239,23.10904],[76.855,23.10772],[76.84609,23.11169],[76.82191,23.11481],[76.82164,23.11958],[76.82641,23.12566],[76.82606,23.12792],[76.81908,23.12928],[76.81008,23.12498],[76.80335,23.12527],[76.80304,23.13091],[76.79735,23.13588],[76.7975,23.14413],[76.78863,23.14609],[76.78869,23.15227],[76.76735,23.1568],[76.77442,23.17197],[76.76217,23.17578],[76.7527,23.18217],[76.74644,23.18404],[76.74174,23.18083],[76.74191,23.17616],[76.7451,23.16946],[76.75125,23.16448],[76.75219,23.15703],[76.74282,23.14134],[76.73138,23.14242],[76.7272,23.15078],[76.72406,23.153],[76.7228,23.15835],[76.70936,23.15935],[76.69815,23.15771],[76.69366,23.1667],[76.6956,23.17545],[76.68536,23.1941],[76.6749,23.1975],[76.67275,23.1891],[76.66006,23.18913],[76.65871,23.18689],[76.65511,23.18723],[76.65375,23.19693],[76.64711,23.20028],[76.63009,23.19763],[76.63179,23.18365],[76.63032,23.17802],[76.63237,23.16811],[76.63108,23.15401],[76.62792,23.14416],[76.62826,23.13876],[76.61849,23.13919],[76.61333,23.13681],[76.59065,23.11831],[76.59192,23.1127],[76.5752,23.11444],[76.55866,23.11949],[76.56038,23.12432],[76.55945,23.12587],[76.54203,23.1309],[76.53816,23.13045],[76.53437,23.12401],[76.5304,23.12057],[76.52779,23.11268],[76.51329,23.11482],[76.50801,23.11754],[76.5049,23.11618],[76.50112,23.11322],[76.49704,23.09825],[76.52493,23.09009],[76.5244,23.0831],[76.52094,23.07421],[76.50141,23.07455],[76.49163,23.07713],[76.48629,23.08768],[76.48182,23.08986],[76.45629,23.0916],[76.45393,23.08736],[76.45329,23.07788],[76.46731,23.07574],[76.46777,23.06669],[76.4649,23.04868],[76.46199,23.04977],[76.46024,23.04852],[76.45757,23.03229],[76.45398,23.0272],[76.46411,23.02346],[76.46966,23.00131],[76.46556,23.00256],[76.46346,23.00006],[76.45881,23.00031],[76.45463,22.99742],[76.4498,22.99753],[76.44146,22.99109],[76.43856,22.99274],[76.43278,22.99024],[76.4302,22.98386],[76.4324,22.9791],[76.44347,22.97583],[76.44497,22.97079],[76.46455,22.96684],[76.46113,22.95434],[76.46369,22.94638],[76.46072,22.94232],[76.45708,22.93078],[76.45322,22.92584],[76.45587,22.92078],[76.45465,22.91969],[76.45939,22.9192],[76.46613,22.91332],[76.46907,22.90581],[76.46754,22.89992],[76.47978,22.89802],[76.48521,22.89392],[76.49323,22.89264],[76.50072,22.88876],[76.50411,22.88435],[76.5011,22.87846],[76.50151,22.87619],[76.50596,22.87593],[76.51099,22.86919],[76.51687,22.86808],[76.5151,22.86428],[76.52874,22.85884],[76.52715,22.85491],[76.53517,22.84212],[76.53395,22.83578],[76.53067,22.83279],[76.52558,22.82077],[76.52519,22.81507],[76.52829,22.80492],[76.52575,22.79879],[76.52724,22.80042],[76.53092,22.80045],[76.53359,22.79373],[76.5361,22.7965],[76.53851,22.79457],[76.5389,22.79724],[76.54086,22.79842],[76.54903,22.79785],[76.54975,22.79583],[76.55308,22.79446],[76.55026,22.79255],[76.55248,22.79083],[76.55223,22.78465],[76.55793,22.78804],[76.55929,22.78499],[76.56652,22.78483],[76.56677,22.78293],[76.55999,22.77909],[76.55486,22.77242],[76.5555,22.77106],[76.56039,22.77889],[76.56246,22.77974],[76.56558,22.77897],[76.56989,22.77337],[76.57579,22.77161],[76.57699,22.76909],[76.575,22.76637],[76.57676,22.76405],[76.57348,22.75973],[76.57127,22.75995],[76.56786,22.76367],[76.57046,22.75946],[76.57332,22.7587],[76.58288,22.76658],[76.58221,22.76957],[76.59161,22.77468],[76.59338,22.77747],[76.60653,22.78056],[76.60931,22.7771],[76.61104,22.77876],[76.61276,22.77824],[76.61241,22.78102],[76.61471,22.7829],[76.61641,22.78112],[76.61981,22.78091],[76.6281,22.78289],[76.63284,22.78661],[76.62815,22.78605],[76.62166,22.78271],[76.62145,22.7845],[76.61843,22.78466],[76.61962,22.78651],[76.6166,22.78915],[76.62334,22.78918],[76.62285,22.79486],[76.62617,22.79166],[76.63223,22.79282],[76.62772,22.79685],[76.63377,22.79592],[76.63882,22.79731],[76.64043,22.79619],[76.6428,22.79996],[76.64636,22.79859],[76.64763,22.80062],[76.64617,22.8048],[76.6522,22.80068],[76.65206,22.79601],[76.65462,22.79717],[76.65528,22.79134],[76.6532,22.78751],[76.66115,22.78579],[76.66154,22.78114],[76.66521,22.78735],[76.67566,22.78449],[76.67978,22.78539],[76.68383,22.7817],[76.68457,22.79025],[76.68696,22.79392],[76.69102,22.78989],[76.71054,22.79282],[76.70886,22.80853],[76.70456,22.80796],[76.69911,22.80984],[76.69894,22.81174],[76.70356,22.81218],[76.70264,22.81319],[76.70396,22.81382],[76.70004,22.81422],[76.69797,22.81234],[76.69664,22.81649],[76.70343,22.81967],[76.71381,22.8202],[76.71466,22.82275],[76.71898,22.82361],[76.72932,22.8219],[76.73276,22.82016],[76.73317,22.81787],[76.73004,22.81916],[76.72034,22.81874],[76.73149,22.81571],[76.71542,22.81382],[76.72047,22.81239],[76.73489,22.81601],[76.74107,22.8156],[76.74383,22.81935],[76.73955,22.81691],[76.73709,22.81867],[76.74257,22.82336],[76.75343,22.82448],[76.75499,22.82116],[76.75364,22.81992],[76.7571,22.81933],[76.75815,22.81652],[76.76199,22.81419],[76.76819,22.81641],[76.7701,22.81372],[76.7769,22.81568],[76.7748,22.81632],[76.77508,22.81839],[76.77113,22.81457],[76.77134,22.81664],[76.77045,22.81552],[76.7665,22.81698],[76.76617,22.81975],[76.77015,22.82125],[76.76783,22.82228],[76.77182,22.8225],[76.77751,22.82826],[76.78269,22.82366],[76.78204,22.826],[76.78511,22.82717],[76.7827,22.82667],[76.77946,22.8289],[76.78363,22.82948],[76.78589,22.83174],[76.78717,22.83007],[76.78899,22.83211],[76.78803,22.83326],[76.79162,22.83411],[76.79136,22.83267],[76.79588,22.83139],[76.79776,22.83339],[76.79663,22.8342],[76.79847,22.83488],[76.79774,22.83724],[76.80132,22.83698],[76.80053,22.83939],[76.80367,22.84332],[76.8059,22.84229],[76.80647,22.84543],[76.8078,22.84471],[76.80689,22.8463],[76.80262,22.84519],[76.80492,22.84775],[76.80447,22.84989],[76.81045,22.84975],[76.81448,22.85385],[76.81619,22.85178],[76.81823,22.8523],[76.81806,22.85375],[76.81463,22.8543],[76.81541,22.8571],[76.81383,22.85722],[76.81558,22.86106],[76.81888,22.86003],[76.81949,22.85819],[76.82169,22.85914],[76.81988,22.86066],[76.8205,22.86219],[76.8253,22.86257],[76.82573,22.85966],[76.82804,22.85807],[76.83061,22.86415],[76.83138,22.85894],[76.83368,22.85572],[76.83247,22.86459],[76.83711,22.86841],[76.83877,22.87187],[76.84097,22.86889],[76.84037,22.86576],[76.84341,22.86344],[76.85396,22.86129],[76.85651,22.86252],[76.84957,22.86849],[76.85228,22.86923],[76.85682,22.86719],[76.85661,22.86979],[76.85192,22.87381],[76.85666,22.87694],[76.85869,22.87147],[76.86103,22.87279],[76.86113,22.86658],[76.86425,22.86961],[76.86797,22.86399],[76.86603,22.8702],[76.86766,22.87112],[76.86275,22.87408],[76.86557,22.87559],[76.86855,22.87503],[76.86664,22.87768],[76.86838,22.88412],[76.87132,22.88058],[76.87691,22.86384],[76.88094,22.86974],[76.88495,22.86806],[76.88521,22.87099],[76.87753,22.8789],[76.88218,22.87733],[76.87916,22.88212],[76.88059,22.88506],[76.88219,22.88312],[76.88346,22.88415],[76.88456,22.88798],[76.88361,22.8908],[76.886,22.89006],[76.88647,22.88521],[76.88479,22.87957],[76.88699,22.87588],[76.88824,22.88112],[76.89007,22.8783],[76.89512,22.87987],[76.8939,22.87759],[76.89488,22.87629],[76.89598,22.88243],[76.89809,22.88521],[76.89805,22.88971],[76.9031,22.88788],[76.90349,22.88436],[76.90079,22.88166],[76.90083,22.87753],[76.90636,22.87066],[76.90102,22.87054],[76.89536,22.86697],[76.90071,22.86678],[76.91675,22.87463],[76.91452,22.86866],[76.91458,22.86193],[76.91053,22.86324],[76.9073,22.85906],[76.91205,22.86287],[76.91277,22.85802],[76.91588,22.86197],[76.91572,22.85674],[76.91772,22.85773],[76.91767,22.8624],[76.92052,22.86367],[76.92024,22.86539],[76.92236,22.86703],[76.92489,22.86439],[76.91893,22.85135],[76.91936,22.84654],[76.91403,22.84039],[76.92066,22.83426],[76.92113,22.83076],[76.91049,22.82978],[76.91456,22.8256],[76.92266,22.82748],[76.92478,22.82627],[76.92555,22.82353],[76.92661,22.82469],[76.92945,22.82218],[76.93006,22.82834],[76.926,22.83519],[76.91933,22.84121],[76.92376,22.85126],[76.92438,22.85629],[76.92695,22.85785],[76.92704,22.86003],[76.92851,22.85915],[76.92696,22.8527],[76.92802,22.85166],[76.93019,22.85432],[76.93182,22.85348],[76.93167,22.85826],[76.92796,22.86477],[76.93376,22.86084],[76.93643,22.86086],[76.92869,22.86749],[76.93187,22.87045],[76.93457,22.87079],[76.93447,22.87304],[76.93854,22.87503],[76.93859,22.8719],[76.94083,22.87329],[76.94203,22.87119],[76.9393,22.86848],[76.94431,22.86218],[76.94295,22.8701],[76.94636,22.87015],[76.94693,22.87384],[76.94865,22.87377],[76.94861,22.87759],[76.95181,22.87096],[76.95365,22.87556],[76.95625,22.87417],[76.95645,22.87241],[76.95473,22.87229],[76.95138,22.86739],[76.95211,22.86152],[76.95538,22.8603],[76.95496,22.86293],[76.95776,22.8688],[76.96091,22.86645],[76.96144,22.86356],[76.96213,22.86567],[76.96731,22.86475],[76.96525,22.86069],[76.96782,22.85915],[76.96753,22.86374],[76.97012,22.86421],[76.97185,22.86208],[76.97234,22.86487],[76.97888,22.86603],[76.97864,22.86943],[76.98488,22.87465],[76.99363,22.86892],[76.99436,22.8727],[76.99171,22.87769],[76.99991,22.87683],[77.00392,22.87892],[77.00215,22.87344],[77.00606,22.86881],[77.00661,22.86453],[77.0053,22.86171],[77.00712,22.85971],[77.00387,22.84413],[77.00746,22.84138],[77.00555,22.83627],[77.01078,22.83236],[77.0106,22.82839],[77.00633,22.82155],[77.00772,22.81619],[77.00576,22.81432],[77.0093,22.81155],[77.01168,22.80662],[77.00991,22.80342],[77.01346,22.79991],[77.01176,22.79217],[77.01465,22.78917],[77.01813,22.78923],[77.02458,22.78352],[77.02938,22.77075],[77.02833,22.75752],[77.02145,22.75205],[77.01811,22.75231],[77.01718,22.74651],[77.02044,22.7447],[77.02106,22.74239],[77.0216,22.72956],[77.03724,22.72741],[77.03958,22.72357],[77.04061,22.70497],[77.04518,22.69932],[77.04507,22.69577],[77.04183,22.69623],[77.03966,22.6928],[77.03759,22.69312],[77.03721,22.6948],[77.03347,22.69417],[77.03059,22.68999],[77.03135,22.6858],[77.034,22.68496],[77.0366,22.68109],[77.04476,22.66506],[77.04634,22.67187],[77.05072,22.67375],[77.05544,22.67841],[77.06014,22.67602],[77.05943,22.66915],[77.06167,22.66421],[77.06886,22.66117],[77.06947,22.65793],[77.07747,22.65817],[77.08169,22.65433],[77.0881,22.65275],[77.09041,22.65067],[77.09245,22.64709],[77.08936,22.64543],[77.09102,22.64435],[77.09106,22.64169],[77.08714,22.63645],[77.08927,22.62984],[77.0876,22.62723],[77.08728,22.6195],[77.08885,22.62019],[77.09123,22.61715],[77.09362,22.61825],[77.09703,22.61518],[77.10168,22.61441],[77.10274,22.60849],[77.10934,22.6053],[77.10861,22.60373],[77.11066,22.60221],[77.1137,22.60237],[77.11634,22.59784],[77.12683,22.59737],[77.12426,22.59628],[77.12683,22.59333],[77.12661,22.58553],[77.13118,22.58315],[77.13011,22.57807],[77.13263,22.57683],[77.12276,22.56335],[77.13004,22.55542],[77.13585,22.55911],[77.15171,22.57531],[77.16065,22.57917],[77.17675,22.5787],[77.208,22.56647],[77.21291,22.56563],[77.21822,22.56689],[77.22702,22.57224],[77.25645,22.60225],[77.26577,22.60645],[77.27266,22.60454],[77.27707,22.60032],[77.28276,22.58151],[77.29286,22.56548],[77.31258,22.55894],[77.32221,22.55869],[77.33092,22.56205],[77.34434,22.56999],[77.35305,22.59579],[77.35675,22.60128],[77.36469,22.60718],[77.37541,22.60954],[77.39516,22.60701],[77.41392,22.61725],[77.4233,22.62426],[77.43635,22.62537],[77.44551,22.63703],[77.46566,22.64738],[77.48337,22.64679],[77.49451,22.64239],[77.50192,22.64395],[77.51246,22.6496],[77.52059,22.66236],[77.53024,22.66815],[77.56805,22.66985],[77.58281,22.6771],[77.58903,22.6851],[77.59247,22.70344],[77.6109,22.7275],[77.61753,22.73975],[77.6239,22.74471],[77.63697,22.74516],[77.64528,22.74164],[77.65706,22.73318],[77.66498,22.73203],[77.67229,22.73485],[77.67719,22.7394],[77.6846,22.7573],[77.6886,22.76205],[77.69929,22.76713],[77.71136,22.76654],[77.72905,22.7582],[77.74142,22.76045],[77.75265,22.77282],[77.77883,22.79073],[77.78061,22.7942],[77.77958,22.806],[77.78266,22.81487],[77.79869,22.84194],[77.82012,22.85066],[77.82934,22.85744],[77.84059,22.86934],[77.84697,22.87234],[77.85287,22.87255],[77.85996,22.87016],[77.86622,22.86751],[77.87076,22.86353],[77.87058,22.85891],[77.86308,22.84672],[77.86181,22.83961],[77.86646,22.8324],[77.87411,22.82923],[77.8834,22.83054],[77.90083,22.84867],[77.91049,22.85624],[77.91548,22.85803],[77.92083,22.85717],[77.92778,22.8514],[77.93003,22.84731],[77.9291,22.84113],[77.9183,22.82482],[77.91416,22.8234],[77.91081,22.82002],[77.90909,22.81313],[77.9131,22.80072],[77.91098,22.79358],[77.90652,22.78703],[77.90739,22.78018],[77.90904,22.77549],[77.91894,22.77064],[77.92394,22.76947],[77.92774,22.77039],[77.93905,22.77937],[77.9439,22.79052],[77.94241,22.79836],[77.93712,22.81045],[77.9579,22.82345],[77.97322,22.82638],[77.99755,22.82289],[78.0034,22.82056],[78.02814,22.80191],[78.02836,22.805],[78.03126,22.80655],[78.03033,22.80816],[78.03242,22.81007],[78.02974,22.81062],[78.02852,22.81374],[78.03128,22.81569],[78.0321,22.8215],[78.02742,22.82407],[78.02642,22.82846],[78.02182,22.83115],[78.02129,22.83319],[78.02555,22.83829],[78.03143,22.84194],[78.02567,22.8477],[78.02609,22.85265],[78.00903,22.85485],[78.00922,22.8612],[78.0146,22.86984],[78.01858,22.87324],[78.01896,22.88238],[78.02732,22.88256],[78.03096,22.88538],[78.03459,22.91207],[78.02356,22.91269],[78.02215,22.92165],[78.01347,22.92305],[78.01435,22.92712],[78.01296,22.9298],[78.00543,22.92997],[78.00157,22.92493],[77.99054,22.9252],[77.98909,22.92261],[77.98966,22.91985],[77.98301,22.91743],[77.97903,22.91131],[77.97271,22.91285],[77.96854,22.91003],[77.95943,22.91236],[77.96517,22.91594],[77.96679,22.92181],[77.96444,22.92518],[77.96633,22.92746],[77.96494,22.93049],[77.96551,22.93578],[77.96216,22.9395],[77.96501,22.94182],[77.96746,22.95701],[77.9649,22.96377],[77.96104,22.96856],[77.93034,22.96661],[77.92677,22.9639],[77.9205,22.96671],[77.89936,22.95992],[77.88136,22.95607],[77.87052,22.9512],[77.85485,22.94894],[77.85338,22.94402],[77.83179,22.93263],[77.82897,22.92695],[77.78924,22.90678],[77.77801,22.90707],[77.77505,22.91112],[77.77194,22.91056],[77.76687,22.91324],[77.72345,22.90008],[77.72384,22.89729],[77.70397,22.89155],[77.69004,22.88436],[77.68786,22.87324],[77.68376,22.86987],[77.68275,22.8619],[77.68958,22.85224],[77.70558,22.84934],[77.70529,22.84683],[77.69278,22.84798],[77.68518,22.85329],[77.6801,22.85296],[77.65784,22.84695],[77.65077,22.84822],[77.64722,22.84393],[77.64352,22.84299],[77.63937,22.8388],[77.63223,22.84603],[77.62368,22.85173],[77.60846,22.86139],[77.59847,22.86534],[77.58994,22.87205],[77.58736,22.87659],[77.58142,22.87465],[77.57476,22.87487],[77.57124,22.88059],[77.5647,22.88454],[77.55904,22.87762],[77.55586,22.86649],[77.55091,22.85936],[77.54183,22.85694],[77.53592,22.86494],[77.53728,22.86965],[77.54094,22.87109],[77.5369,22.87359],[77.53653,22.87751],[77.52707,22.87617],[77.52395,22.88027],[77.52456,22.88325],[77.52804,22.88646],[77.52801,22.89563],[77.53213,22.89855],[77.53278,22.90201],[77.53039,22.90356],[77.52703,22.90431],[77.52281,22.90149],[77.50621,22.89996],[77.5027,22.89698],[77.50159,22.89302],[77.49433,22.89219],[77.48195,22.902],[77.47843,22.90875],[77.47916,22.9115],[77.4635,22.91885],[77.45644,22.91772],[77.45381,22.91931],[77.44444,22.91433],[77.44664,22.91078],[77.44398,22.9071],[77.43601,22.90915],[77.43657,22.9119],[77.44505,22.92036],[77.43592,22.93045],[77.43613,22.93416],[77.44211,22.94165],[77.44124,22.94519],[77.43091,22.95101],[77.43155,22.95324],[77.43792,22.95733],[77.43558,22.95911],[77.42834,22.95918],[77.42435,22.96645],[77.42031,22.96884],[77.40626,22.96082],[77.40502,22.96328],[77.40622,22.9713],[77.40477,22.97514],[77.40107,22.97828],[77.39875,22.98337],[77.39165,22.98864],[77.39007,22.99494],[77.37517,23.00789],[77.36952,23.01098],[77.36415,23.01906],[77.35764,23.02234],[77.35692,23.02623],[77.35356,23.02978],[77.35324,23.03359],[77.3509,23.03651],[77.3389,23.03887],[77.35743,23.05165],[77.36602,23.06001],[77.37076,23.0672],[77.37943,23.0725],[77.37465,23.07689],[77.36703,23.07668],[77.35941,23.08073],[77.33732,23.0795],[77.32159,23.08535],[77.31946,23.08966],[77.32143,23.10072],[77.31581,23.09975],[77.29593,23.10109],[77.28105,23.09387],[77.27121,23.09403],[77.27618,23.10405],[77.27483,23.11154],[77.27176,23.11633],[77.27153,23.12446],[77.2669,23.12988],[77.26048,23.13287],[77.24689,23.13429],[77.24831,23.14349],[77.24759,23.14977],[77.24438,23.15158],[77.23786,23.15021],[77.23741,23.15876],[77.23104,23.16372],[77.23159,23.17186],[77.22176,23.17471],[77.22572,23.17873],[77.22804,23.18786],[77.20307,23.19248],[77.2033,23.19486],[77.21125,23.20017],[77.21393,23.20516],[77.21446,23.20813],[77.20672,23.21165],[77.20683,23.21723],[77.2096,23.21819],[77.20929,23.21994],[77.19662,23.21588],[77.19783,23.21438],[77.19335,23.21269],[77.18367,23.21217],[77.17672,23.22399],[77.17635,23.22909],[77.18619,23.2326],[77.18942,23.24168],[77.20628,23.24827],[77.20288,23.25616],[77.20317,23.26526],[77.20603,23.26971],[77.21027,23.26909],[77.21204,23.27076],[77.21265,23.27642],[77.21033,23.27981],[77.21466,23.28533],[77.21327,23.2902],[77.21153,23.29108],[77.2051,23.29105],[77.20362,23.29289],[77.1992,23.29215],[77.19433,23.29446],[77.18725,23.29213],[77.18375,23.30142],[77.16966,23.30213],[77.17174,23.30879],[77.16876,23.31597],[77.17696,23.3252],[77.17508,23.33315],[77.17505,23.34468],[77.17676,23.3497],[77.18129,23.35349],[77.18452,23.35174],[77.19315,23.35246],[77.19748,23.3464],[77.19631,23.33905],[77.20013,23.32624],[77.20454,23.32234],[77.2055,23.31834],[77.21757,23.3205],[77.21756,23.32978],[77.22366,23.34517],[77.22179,23.35073],[77.22455,23.35544],[77.23457,23.3636],[77.23455,23.37019],[77.2402,23.3728],[77.24247,23.37614],[77.24683,23.37432],[77.25335,23.37749],[77.24968,23.38552],[77.24583,23.38588],[77.24094,23.39094],[77.235,23.38924],[77.22757,23.39061],[77.23374,23.39553],[77.23366,23.40363],[77.2439,23.40143],[77.24621,23.40447],[77.24901,23.40533],[77.26836,23.39983],[77.28169,23.41693],[77.2826,23.41922],[77.28102,23.42107],[77.28819,23.42624],[77.28819,23.42826],[77.28464,23.43143],[77.28338,23.44132],[77.28727,23.45221],[77.29152,23.45478],[77.29306,23.46326],[77.29814,23.46785],[77.28397,23.47126],[77.28352,23.48736],[77.28706,23.48721],[77.28923,23.49251],[77.29401,23.49495],[77.29765,23.50182],[77.29576,23.50856],[77.2886,23.51028],[77.29051,23.5203],[77.2887,23.52949],[77.29147,23.53438],[77.29134,23.53979],[77.28719,23.54109],[77.28898,23.54436],[77.28239,23.55359],[77.28357,23.55365],[77.28329,23.55768],[77.29167,23.56592],[77.29569,23.57411],[77.28528,23.58013],[77.27365,23.58133],[77.27276,23.59419],[77.27445,23.59436],[77.27759,23.59977],[77.26554,23.60223],[77.249,23.6138],[77.23919,23.61489],[77.2307,23.61394],[77.22277,23.6217],[77.22325,23.62791],[77.22683,23.63155],[77.22938,23.6386],[77.22647,23.64509],[77.22563,23.65345],[77.2205,23.65507],[77.21438,23.66062],[77.20571,23.66045],[77.20307,23.65397],[77.20455,23.65363],[77.20006,23.64841],[77.19131,23.6555],[77.19015,23.66181],[77.18801,23.66282],[77.18569,23.66721],[77.17809,23.66931],[77.17589,23.66456],[77.17611,23.66025],[77.17349,23.66003],[77.17364,23.66689],[77.17082,23.67097],[77.17169,23.67314],[77.16839,23.67352]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"428","area_level":"District","area_name":"Seoni","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.62724,22.95087],[79.62609,22.95389],[79.62247,22.95555],[79.60273,22.95029],[79.59899,22.94853],[79.5979,22.94587],[79.59624,22.94848],[79.59264,22.94565],[79.59037,22.93824],[79.59221,22.9319],[79.59543,22.9286],[79.60002,22.91375],[79.61332,22.91747],[79.62078,22.90688],[79.62536,22.89622],[79.6222,22.88878],[79.62582,22.87705],[79.62451,22.87339],[79.61219,22.85994],[79.60648,22.86],[79.60315,22.86473],[79.59747,22.86643],[79.59754,22.85841],[79.5875,22.85415],[79.58773,22.84453],[79.57821,22.83942],[79.57691,22.83339],[79.57307,22.831],[79.56595,22.83147],[79.54087,22.81712],[79.54463,22.81451],[79.54415,22.80461],[79.53902,22.79734],[79.53167,22.79381],[79.52783,22.78529],[79.51543,22.778],[79.51414,22.77182],[79.519,22.76222],[79.50842,22.75388],[79.50919,22.75102],[79.51169,22.7499],[79.51577,22.75],[79.51938,22.75248],[79.52361,22.75161],[79.51646,22.74118],[79.51683,22.7356],[79.51995,22.73431],[79.51647,22.72294],[79.50983,22.72126],[79.50656,22.72392],[79.48791,22.7307],[79.47212,22.7244],[79.47106,22.7346],[79.47557,22.73842],[79.46902,22.74204],[79.46613,22.74147],[79.46496,22.73683],[79.46027,22.72992],[79.45662,22.73041],[79.45441,22.72799],[79.44582,22.72794],[79.43519,22.72314],[79.43094,22.72505],[79.42375,22.72535],[79.41156,22.72162],[79.40955,22.72005],[79.41384,22.71509],[79.41346,22.71186],[79.40639,22.70574],[79.40294,22.70554],[79.40009,22.70177],[79.39795,22.70441],[79.39421,22.70225],[79.39907,22.69902],[79.3997,22.69676],[79.402,22.69888],[79.40311,22.69798],[79.40136,22.68497],[79.39396,22.68066],[79.39365,22.6779],[79.39123,22.67638],[79.39231,22.6736],[79.38966,22.67281],[79.38839,22.66999],[79.37842,22.66854],[79.37605,22.66272],[79.38094,22.6589],[79.36963,22.6542],[79.36537,22.65029],[79.36208,22.64273],[79.35889,22.64388],[79.34874,22.64177],[79.34124,22.63406],[79.33609,22.6381],[79.33725,22.62672],[79.33539,22.62162],[79.32519,22.6165],[79.3258,22.61078],[79.33752,22.61534],[79.34846,22.61402],[79.35372,22.61038],[79.35528,22.60741],[79.36791,22.60499],[79.3748,22.59609],[79.37248,22.59413],[79.3643,22.59659],[79.3538,22.58787],[79.35325,22.58533],[79.3573,22.57998],[79.35279,22.57815],[79.35166,22.57346],[79.34833,22.57049],[79.34585,22.5713],[79.34636,22.57838],[79.34321,22.57809],[79.34146,22.56576],[79.3391,22.56537],[79.33681,22.56956],[79.33234,22.56619],[79.33624,22.5628],[79.3377,22.55785],[79.34133,22.55353],[79.33604,22.55127],[79.33356,22.55314],[79.32772,22.55134],[79.32776,22.54663],[79.32599,22.54571],[79.32526,22.54256],[79.32123,22.54296],[79.32209,22.54064],[79.32044,22.5396],[79.31921,22.53198],[79.32102,22.52711],[79.33031,22.52575],[79.32805,22.512],[79.33249,22.5091],[79.33264,22.50522],[79.34451,22.50512],[79.34358,22.49665],[79.34679,22.49375],[79.34757,22.48996],[79.34566,22.48416],[79.34169,22.48126],[79.33728,22.48218],[79.3279,22.48051],[79.3218,22.47701],[79.3141,22.48084],[79.30185,22.48352],[79.28787,22.47874],[79.27663,22.47966],[79.26977,22.47521],[79.25975,22.47294],[79.25878,22.4749],[79.24858,22.47195],[79.23722,22.47469],[79.23248,22.47427],[79.23348,22.47172],[79.22756,22.46836],[79.22383,22.46838],[79.22065,22.465],[79.2095,22.46229],[79.1949,22.45244],[79.20176,22.44548],[79.20374,22.43691],[79.20623,22.43434],[79.20594,22.43081],[79.20874,22.42885],[79.21233,22.42878],[79.21609,22.42566],[79.22069,22.42619],[79.22241,22.42443],[79.22782,22.42345],[79.2308,22.4312],[79.23278,22.44495],[79.24234,22.44635],[79.24986,22.44114],[79.25365,22.44792],[79.26198,22.44952],[79.26573,22.45375],[79.27729,22.45093],[79.28202,22.44751],[79.2881,22.44878],[79.29377,22.44392],[79.30343,22.44123],[79.30752,22.44143],[79.31485,22.44551],[79.32085,22.4329],[79.32829,22.43294],[79.32776,22.44429],[79.33487,22.44311],[79.33785,22.42986],[79.33648,22.42613],[79.33854,22.42265],[79.33025,22.4186],[79.33025,22.4166],[79.33297,22.41487],[79.32488,22.41425],[79.32573,22.4177],[79.32434,22.41914],[79.32316,22.41597],[79.31994,22.41458],[79.31489,22.41574],[79.31419,22.41425],[79.3118,22.41451],[79.30524,22.41753],[79.29884,22.41546],[79.29415,22.41048],[79.29149,22.39521],[79.28265,22.37355],[79.29283,22.37759],[79.30791,22.38909],[79.3188,22.3942],[79.3204,22.39042],[79.31957,22.38677],[79.32338,22.3825],[79.33455,22.38567],[79.33855,22.38357],[79.34718,22.38419],[79.34678,22.37985],[79.34936,22.37285],[79.34858,22.36986],[79.34472,22.36864],[79.35049,22.36241],[79.35197,22.35383],[79.34728,22.34977],[79.33034,22.34765],[79.32734,22.34607],[79.32758,22.34462],[79.32366,22.34384],[79.3251,22.34254],[79.32456,22.34063],[79.31389,22.33544],[79.30904,22.33642],[79.30278,22.33232],[79.30079,22.33251],[79.30022,22.33057],[79.28862,22.3279],[79.2865,22.32576],[79.28596,22.31668],[79.28632,22.31518],[79.29382,22.31646],[79.29821,22.30994],[79.30157,22.30286],[79.29664,22.30237],[79.29556,22.29598],[79.30224,22.29057],[79.31682,22.28519],[79.32111,22.28607],[79.32609,22.28493],[79.33148,22.28199],[79.33092,22.28493],[79.33231,22.28615],[79.33737,22.28799],[79.34257,22.28735],[79.3483,22.28011],[79.34977,22.26828],[79.36332,22.26624],[79.36545,22.25903],[79.36358,22.25057],[79.36411,22.24296],[79.36654,22.23995],[79.36528,22.23228],[79.36933,22.22652],[79.36644,22.22306],[79.36705,22.2193],[79.36396,22.21852],[79.36166,22.22071],[79.35119,22.22431],[79.34784,22.2271],[79.34835,22.23353],[79.3446,22.23767],[79.3403,22.24045],[79.33185,22.24174],[79.3273,22.23686],[79.32645,22.23223],[79.32361,22.231],[79.32588,22.22761],[79.32427,22.22459],[79.32469,22.22277],[79.33033,22.21978],[79.33245,22.20802],[79.33581,22.20895],[79.33568,22.20723],[79.33698,22.20705],[79.33736,22.20325],[79.33592,22.20254],[79.33775,22.19713],[79.33768,22.18666],[79.34023,22.18209],[79.34348,22.18047],[79.34023,22.16326],[79.35089,22.15014],[79.34991,22.14317],[79.35293,22.13909],[79.35404,22.13105],[79.36286,22.12908],[79.36611,22.12491],[79.36593,22.12183],[79.37233,22.1191],[79.37473,22.1155],[79.38015,22.1128],[79.38466,22.10531],[79.39362,22.10306],[79.38113,22.09943],[79.37923,22.09634],[79.37492,22.09375],[79.37313,22.0878],[79.3795,22.0763],[79.38733,22.06854],[79.38672,22.063],[79.38875,22.0581],[79.38743,22.04356],[79.3952,22.04099],[79.40638,22.04159],[79.40653,22.03924],[79.40135,22.02257],[79.39516,22.01772],[79.39816,22.01711],[79.4017,22.01137],[79.40152,22.00602],[79.39925,22.00063],[79.40007,21.99745],[79.3865,21.99319],[79.37344,21.99354],[79.37254,21.98914],[79.37418,21.98653],[79.37416,21.97671],[79.37217,21.97609],[79.37268,21.97466],[79.36508,21.97339],[79.36181,21.9674],[79.35829,21.96625],[79.35193,21.96698],[79.33992,21.95471],[79.33895,21.95023],[79.3468,21.94577],[79.34838,21.94283],[79.34706,21.92694],[79.33983,21.92267],[79.32973,21.92197],[79.32433,21.91815],[79.32285,21.91574],[79.32392,21.90874],[79.31626,21.89846],[79.30708,21.89116],[79.30198,21.88137],[79.30121,21.87077],[79.2969,21.86513],[79.29584,21.861],[79.28701,21.85018],[79.28372,21.84164],[79.27457,21.83448],[79.27601,21.8304],[79.28488,21.82567],[79.29312,21.81259],[79.28981,21.80013],[79.28412,21.79196],[79.28503,21.77954],[79.28154,21.7761],[79.27172,21.77417],[79.25533,21.77822],[79.25164,21.7751],[79.24432,21.76322],[79.23489,21.76122],[79.23099,21.75863],[79.22837,21.75427],[79.2288,21.74705],[79.22339,21.73267],[79.2226,21.71918],[79.23087,21.71874],[79.23064,21.72223],[79.24193,21.72018],[79.24496,21.72148],[79.26807,21.71541],[79.27791,21.70937],[79.28051,21.70172],[79.2858,21.69547],[79.2886,21.69528],[79.29059,21.69254],[79.29669,21.69331],[79.31141,21.68827],[79.31826,21.68851],[79.32224,21.68523],[79.32455,21.68797],[79.34289,21.68396],[79.35427,21.68483],[79.35237,21.67806],[79.357,21.67925],[79.37465,21.67841],[79.39249,21.67412],[79.39609,21.67651],[79.40044,21.67677],[79.40271,21.68221],[79.41012,21.68475],[79.41566,21.69116],[79.4222,21.69182],[79.42799,21.68975],[79.43525,21.68283],[79.4495,21.68206],[79.46073,21.68755],[79.48072,21.67784],[79.49621,21.67422],[79.49621,21.66541],[79.50135,21.65979],[79.50134,21.65171],[79.50676,21.64567],[79.50427,21.6411],[79.50657,21.63896],[79.50777,21.63435],[79.5161,21.63138],[79.51723,21.62575],[79.51631,21.62069],[79.50813,21.62162],[79.5061,21.62057],[79.50396,21.61211],[79.51064,21.60594],[79.51011,21.59604],[79.51765,21.59624],[79.52333,21.59427],[79.52665,21.5979],[79.53564,21.59996],[79.5426,21.60582],[79.54352,21.60761],[79.5423,21.60871],[79.54568,21.61091],[79.54624,21.61837],[79.53797,21.62622],[79.54061,21.63107],[79.5695,21.63533],[79.57576,21.64244],[79.57775,21.64734],[79.57935,21.6485],[79.58149,21.64765],[79.58538,21.65085],[79.58712,21.64619],[79.58918,21.64807],[79.5906,21.64581],[79.59264,21.64648],[79.59296,21.65162],[79.58806,21.65426],[79.58861,21.66023],[79.59414,21.66123],[79.59408,21.66643],[79.59563,21.6689],[79.60873,21.6792],[79.60882,21.68631],[79.5995,21.70961],[79.60351,21.71131],[79.62764,21.7086],[79.63454,21.70533],[79.63456,21.70079],[79.63902,21.69632],[79.65693,21.6929],[79.66421,21.69665],[79.67299,21.69634],[79.66991,21.70136],[79.6732,21.70411],[79.66988,21.70702],[79.67027,21.71214],[79.66842,21.71186],[79.66346,21.7214],[79.66018,21.72402],[79.6611,21.73121],[79.65774,21.73395],[79.65642,21.73825],[79.65865,21.73966],[79.65854,21.74356],[79.66381,21.74605],[79.67951,21.7447],[79.68242,21.74679],[79.68065,21.74804],[79.68197,21.74998],[79.68113,21.75538],[79.68802,21.76156],[79.6894,21.76945],[79.68895,21.78094],[79.68355,21.78828],[79.68824,21.79331],[79.69072,21.80037],[79.71388,21.80474],[79.71915,21.80312],[79.73452,21.80349],[79.74197,21.80125],[79.74814,21.80129],[79.76971,21.80898],[79.76905,21.81158],[79.77279,21.8146],[79.78782,21.83918],[79.79356,21.83696],[79.79112,21.83793],[79.79068,21.84404],[79.79329,21.84472],[79.77774,21.8557],[79.77707,21.86004],[79.78162,21.86192],[79.79734,21.86017],[79.80796,21.86409],[79.81898,21.8705],[79.8247,21.87453],[79.82651,21.87854],[79.83887,21.88535],[79.84165,21.90548],[79.86575,21.90217],[79.86445,21.90756],[79.87715,21.90788],[79.87626,21.90969],[79.88065,21.91289],[79.88442,21.92],[79.88395,21.92283],[79.89121,21.93011],[79.8908,21.9313],[79.88203,21.93217],[79.87726,21.92811],[79.86888,21.932],[79.84089,21.9374],[79.84007,21.94534],[79.84591,21.94853],[79.84574,21.95405],[79.85602,21.95394],[79.86349,21.95817],[79.86148,21.96631],[79.88037,21.96952],[79.88937,21.96814],[79.92324,21.97363],[79.92319,21.98782],[79.92122,21.99414],[79.92064,22.00709],[79.92105,22.01359],[79.92366,22.01764],[79.92314,22.02193],[79.92633,22.03227],[79.91706,22.03467],[79.91833,22.03868],[79.92194,22.04201],[79.92037,22.05439],[79.93183,22.06507],[79.93407,22.0692],[79.9402,22.07195],[79.94796,22.07294],[79.95293,22.07163],[79.95397,22.07296],[79.95963,22.06857],[79.96688,22.07001],[79.99011,22.06884],[79.99122,22.07166],[79.99673,22.07574],[79.99505,22.07953],[80.00128,22.08224],[80.00728,22.08035],[80.05071,22.08156],[80.06282,22.07636],[80.06715,22.07738],[80.06692,22.08856],[80.06393,22.09946],[80.0607,22.10402],[80.06203,22.10923],[80.05967,22.11582],[80.05339,22.11713],[80.04634,22.1222],[80.04284,22.16098],[80.03345,22.18156],[80.03614,22.18649],[80.056,22.20533],[80.05973,22.21229],[80.08606,22.2219],[80.08856,22.22609],[80.08317,22.23037],[80.08316,22.23233],[80.09466,22.23958],[80.09871,22.24591],[80.09553,22.2659],[80.08617,22.27092],[80.08717,22.27371],[80.09376,22.2758],[80.09409,22.27885],[80.08114,22.29669],[80.09117,22.30965],[80.08881,22.31333],[80.09028,22.3207],[80.10053,22.32801],[80.10032,22.33512],[80.09673,22.33955],[80.08299,22.34475],[80.07701,22.35071],[80.0775,22.35916],[80.07095,22.36908],[80.06917,22.37645],[80.07346,22.38318],[80.0725,22.39411],[80.08266,22.39898],[80.09159,22.40624],[80.09107,22.41422],[80.09267,22.42351],[80.08016,22.4276],[80.07742,22.44055],[80.07158,22.45031],[80.05013,22.45618],[80.0493,22.46011],[80.05223,22.46953],[80.04724,22.48588],[80.04424,22.4898],[80.04425,22.4949],[80.0376,22.50139],[80.02788,22.4997],[80.02334,22.50531],[80.02208,22.51057],[80.02414,22.51681],[80.03472,22.52095],[80.03743,22.52514],[80.03758,22.54049],[80.03396,22.54249],[80.03157,22.54674],[80.02208,22.54745],[80.01817,22.54324],[80.01613,22.543],[80.0112,22.54771],[80.00903,22.55895],[80.00496,22.55851],[80.00522,22.55462],[80.00176,22.55043],[79.99366,22.54604],[79.98852,22.54507],[79.98601,22.54558],[79.98249,22.54935],[79.97044,22.54755],[79.96417,22.55344],[79.95436,22.55561],[79.9528,22.55829],[79.95804,22.56125],[79.96409,22.56817],[79.97831,22.56686],[79.98015,22.56974],[79.97886,22.57565],[79.9898,22.58079],[80.00774,22.57479],[80.01066,22.58907],[80.01542,22.59696],[80.03222,22.59643],[80.03537,22.60812],[80.04484,22.60436],[80.05263,22.6041],[80.05579,22.60631],[80.06468,22.60736],[80.07282,22.60211],[80.08202,22.61349],[80.08796,22.61312],[80.08545,22.61725],[80.08905,22.61974],[80.09419,22.62198],[80.10456,22.62141],[80.1129,22.62704],[80.11518,22.62709],[80.11976,22.62042],[80.12011,22.61505],[80.12421,22.61416],[80.12639,22.61019],[80.12756,22.61319],[80.13116,22.61446],[80.13655,22.61326],[80.13828,22.61102],[80.14053,22.61528],[80.14481,22.61618],[80.15385,22.59996],[80.17535,22.60168],[80.18523,22.60117],[80.18986,22.59908],[80.19676,22.60318],[80.20235,22.60392],[80.20417,22.61067],[80.20807,22.61148],[80.21068,22.61495],[80.21604,22.62717],[80.21431,22.63446],[80.20742,22.63576],[80.19435,22.64436],[80.19767,22.64862],[80.20223,22.66288],[80.21296,22.67447],[80.21923,22.67044],[80.23606,22.67417],[80.24104,22.69047],[80.23365,22.70001],[80.23582,22.70082],[80.23845,22.70643],[80.23767,22.71074],[80.23939,22.71515],[80.24509,22.72101],[80.26331,22.72016],[80.27229,22.71753],[80.27629,22.71826],[80.28942,22.72633],[80.28499,22.73544],[80.28309,22.75208],[80.27874,22.76492],[80.28157,22.78056],[80.28081,22.78398],[80.27685,22.78897],[80.26816,22.79321],[80.21812,22.8005],[80.20994,22.79817],[80.20338,22.79203],[80.20628,22.78009],[80.20554,22.77811],[80.19035,22.77488],[80.17971,22.76292],[80.16242,22.76659],[80.13028,22.76611],[80.10045,22.76924],[80.08839,22.76635],[80.0708,22.7582],[80.06319,22.75911],[80.05898,22.76184],[80.04172,22.7819],[80.02389,22.79002],[80.01676,22.79523],[80.00655,22.82188],[80.00462,22.82368],[79.97903,22.8326],[79.97411,22.83734],[79.96644,22.84965],[79.95836,22.85617],[79.93954,22.86058],[79.93127,22.8572],[79.92519,22.85714],[79.90671,22.84526],[79.903,22.86325],[79.89905,22.86331],[79.88637,22.86036],[79.88283,22.85059],[79.88188,22.85207],[79.87691,22.85254],[79.87037,22.85571],[79.86383,22.85177],[79.85452,22.83345],[79.84682,22.83084],[79.83978,22.83096],[79.83438,22.83254],[79.833,22.83522],[79.82822,22.83827],[79.82697,22.84476],[79.81862,22.8484],[79.81798,22.86056],[79.8208,22.8669],[79.82059,22.87119],[79.80064,22.86343],[79.79345,22.85632],[79.78984,22.84931],[79.78752,22.8492],[79.78481,22.8466],[79.7653,22.84474],[79.76295,22.84719],[79.75919,22.86023],[79.76467,22.86391],[79.7708,22.87309],[79.78132,22.87933],[79.77266,22.88306],[79.76781,22.88783],[79.76356,22.88833],[79.75523,22.89263],[79.74974,22.89914],[79.74407,22.89685],[79.75134,22.91349],[79.74846,22.92062],[79.74527,22.91931],[79.74101,22.92091],[79.73016,22.91973],[79.71614,22.92423],[79.70692,22.9237],[79.70086,22.92549],[79.69473,22.9238],[79.68537,22.92392],[79.68692,22.92987],[79.67884,22.92674],[79.67277,22.92811],[79.66908,22.92433],[79.66499,22.92339],[79.65644,22.92342],[79.6488,22.92643],[79.6395,22.94459],[79.63187,22.94411],[79.62724,22.95087]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"429","area_level":"District","area_name":"Shahdol","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.46947,24.25901],[81.46644,24.27047],[81.46169,24.2777],[81.45554,24.28208],[81.45246,24.2786],[81.45174,24.27468],[81.45276,24.27138],[81.45759,24.26716],[81.4533,24.26253],[81.44581,24.25927],[81.43942,24.25801],[81.42843,24.25906],[81.39857,24.26453],[81.38612,24.26114],[81.38267,24.2559],[81.38232,24.2431],[81.37501,24.21804],[81.36169,24.19569],[81.34515,24.18694],[81.32171,24.18987],[81.30176,24.18853],[81.29114,24.18897],[81.28378,24.19155],[81.28048,24.1902],[81.24946,24.16292],[81.22673,24.15491],[81.22303,24.14934],[81.22553,24.13291],[81.22476,24.12822],[81.20292,24.10976],[81.18546,24.11091],[81.171,24.12731],[81.15758,24.1351],[81.1519,24.1366],[81.13092,24.13495],[81.11197,24.13013],[81.05939,24.10806],[81.01069,24.09151],[81.00017,24.08117],[80.99867,24.07671],[81.00135,24.0676],[81.01851,24.05185],[81.02418,24.04335],[81.02773,24.03375],[81.05676,24.00447],[81.06178,23.99192],[81.06297,23.97603],[81.06973,23.96571],[81.07721,23.96264],[81.09178,23.96633],[81.10644,23.96494],[81.12079,23.97105],[81.12873,23.97071],[81.13047,23.96479],[81.12733,23.94299],[81.13372,23.93222],[81.14445,23.92242],[81.1501,23.92318],[81.15676,23.9266],[81.16187,23.92647],[81.16795,23.92319],[81.17635,23.91504],[81.1771,23.91127],[81.17413,23.90493],[81.1623,23.90077],[81.16078,23.89867],[81.16108,23.89474],[81.16856,23.88219],[81.17305,23.87926],[81.18141,23.87808],[81.19986,23.88477],[81.20444,23.88407],[81.21502,23.87367],[81.21807,23.86737],[81.21902,23.86093],[81.22283,23.85492],[81.23092,23.85209],[81.24326,23.85635],[81.25772,23.85422],[81.26288,23.85136],[81.26835,23.84189],[81.26811,23.83561],[81.26369,23.83144],[81.24616,23.82866],[81.23126,23.82213],[81.21267,23.82278],[81.18825,23.81963],[81.18342,23.81513],[81.17905,23.79715],[81.18124,23.79185],[81.19608,23.77902],[81.2048,23.76821],[81.21343,23.74473],[81.22174,23.7405],[81.23875,23.73659],[81.24273,23.73305],[81.2479,23.72292],[81.24454,23.71129],[81.2454,23.69595],[81.23886,23.69253],[81.2293,23.68347],[81.22715,23.67897],[81.23594,23.66959],[81.24103,23.66116],[81.24146,23.65397],[81.23795,23.64292],[81.23802,23.63207],[81.2418,23.62149],[81.24907,23.61103],[81.24956,23.60358],[81.24767,23.5971],[81.24959,23.59205],[81.2491,23.58123],[81.25121,23.57769],[81.25818,23.57346],[81.27107,23.57045],[81.28079,23.57174],[81.28801,23.5691],[81.29798,23.5593],[81.29832,23.55562],[81.29333,23.55024],[81.2919,23.54408],[81.29742,23.5314],[81.29148,23.51575],[81.29263,23.49409],[81.29668,23.47234],[81.30071,23.46535],[81.30431,23.45227],[81.30124,23.44792],[81.3084,23.43999],[81.30803,23.43446],[81.31468,23.43058],[81.31312,23.42705],[81.30891,23.42758],[81.30788,23.42307],[81.32193,23.4132],[81.33385,23.41211],[81.33706,23.40906],[81.33698,23.40686],[81.32928,23.4028],[81.32762,23.40039],[81.33081,23.39724],[81.33519,23.39697],[81.34065,23.38346],[81.33209,23.37299],[81.33215,23.37031],[81.34372,23.35742],[81.34938,23.35797],[81.35306,23.35442],[81.34869,23.34959],[81.34473,23.34049],[81.34428,23.33528],[81.34676,23.33088],[81.34693,23.32699],[81.33987,23.32324],[81.33891,23.31909],[81.34229,23.3127],[81.34028,23.30518],[81.33458,23.30356],[81.33336,23.30015],[81.33545,23.2998],[81.33469,23.29892],[81.32416,23.29243],[81.32307,23.28332],[81.32796,23.28028],[81.32708,23.2771],[81.32206,23.27246],[81.32357,23.26769],[81.32174,23.26343],[81.32319,23.26188],[81.32065,23.26144],[81.31848,23.25766],[81.3174,23.2538],[81.31898,23.25135],[81.31709,23.24985],[81.3029,23.25367],[81.29586,23.24755],[81.29733,23.24624],[81.29731,23.24142],[81.30059,23.2395],[81.3006,23.23702],[81.29453,23.23024],[81.28734,23.23055],[81.28426,23.22015],[81.26567,23.22085],[81.25554,23.2147],[81.2522,23.21151],[81.25305,23.20898],[81.25666,23.20318],[81.26513,23.19675],[81.26476,23.19201],[81.26594,23.19184],[81.26689,23.18651],[81.27461,23.18305],[81.27586,23.18509],[81.28407,23.18414],[81.28881,23.18262],[81.294,23.17844],[81.29932,23.17802],[81.2961,23.17413],[81.29594,23.17093],[81.29928,23.16236],[81.30804,23.15731],[81.30253,23.15484],[81.30486,23.14989],[81.32295,23.1525],[81.32473,23.14927],[81.32829,23.14765],[81.32886,23.14123],[81.32445,23.13856],[81.32276,23.13413],[81.32516,23.12793],[81.32376,23.12441],[81.31736,23.11927],[81.31703,23.11391],[81.31484,23.10971],[81.31895,23.1035],[81.32472,23.10034],[81.33092,23.10005],[81.35879,23.09268],[81.365,23.08917],[81.37421,23.08684],[81.37738,23.0728],[81.3805,23.07187],[81.38181,23.06834],[81.38668,23.066],[81.38831,23.06352],[81.39538,23.06112],[81.40488,23.06169],[81.40646,23.06345],[81.41524,23.06038],[81.42278,23.06061],[81.42911,23.05791],[81.43791,23.05722],[81.45314,23.06145],[81.45947,23.06572],[81.49853,23.06988],[81.5057,23.07318],[81.51179,23.07996],[81.51706,23.08204],[81.52971,23.07737],[81.53679,23.07708],[81.54321,23.06763],[81.55689,23.05801],[81.55121,23.05806],[81.53958,23.06297],[81.53849,23.06221],[81.5392,23.05567],[81.52879,23.05382],[81.52639,23.05049],[81.52907,23.05037],[81.53667,23.04473],[81.54911,23.04265],[81.54782,23.03948],[81.55076,23.03563],[81.54587,23.03197],[81.5458,23.02889],[81.55063,23.02559],[81.55844,23.02438],[81.5702,23.02798],[81.57204,23.02984],[81.57114,23.03133],[81.57274,23.03094],[81.58078,23.03649],[81.58667,23.0378],[81.58984,23.03665],[81.59298,23.04059],[81.60061,23.03503],[81.60389,23.03489],[81.60573,23.04194],[81.60692,23.04756],[81.59692,23.05086],[81.58987,23.0596],[81.58894,23.06146],[81.59143,23.06289],[81.5922,23.06626],[81.58755,23.07717],[81.5805,23.08125],[81.56517,23.09484],[81.55752,23.09519],[81.55182,23.09979],[81.54655,23.10023],[81.54532,23.10267],[81.54694,23.10659],[81.53719,23.11293],[81.54361,23.12506],[81.55474,23.12324],[81.55729,23.12481],[81.55694,23.12756],[81.5611,23.13121],[81.5657,23.13252],[81.56306,23.13329],[81.5648,23.13445],[81.56216,23.14047],[81.56352,23.14282],[81.56871,23.14426],[81.57484,23.13509],[81.57889,23.14073],[81.57742,23.14724],[81.58057,23.15011],[81.58176,23.1587],[81.58186,23.16315],[81.58008,23.16616],[81.58198,23.16758],[81.58197,23.17043],[81.58944,23.17056],[81.59311,23.17541],[81.59191,23.18051],[81.59353,23.18463],[81.59311,23.19697],[81.59599,23.19959],[81.59974,23.209],[81.6011,23.22425],[81.60918,23.22467],[81.62738,23.23075],[81.63301,23.23037],[81.63458,23.22794],[81.63391,23.22463],[81.61555,23.20918],[81.61263,23.2032],[81.6127,23.19858],[81.61592,23.19497],[81.61976,23.19432],[81.63579,23.19998],[81.64497,23.19493],[81.64958,23.19403],[81.66059,23.19748],[81.6681,23.20855],[81.68215,23.20869],[81.6933,23.20519],[81.69665,23.2087],[81.70409,23.20452],[81.7091,23.20735],[81.71106,23.20434],[81.71466,23.20465],[81.71907,23.20204],[81.72624,23.20825],[81.73969,23.21052],[81.74156,23.21508],[81.75094,23.21363],[81.75726,23.21599],[81.76836,23.23402],[81.76463,23.23832],[81.76515,23.24176],[81.7706,23.24501],[81.77088,23.24863],[81.7789,23.24974],[81.78727,23.25771],[81.79628,23.25596],[81.80193,23.25589],[81.80552,23.25795],[81.81983,23.25633],[81.83069,23.25741],[81.83438,23.25611],[81.84694,23.26011],[81.85829,23.2475],[81.87004,23.2464],[81.87932,23.24775],[81.87308,23.25477],[81.87457,23.25813],[81.87897,23.26024],[81.87514,23.26243],[81.87498,23.26658],[81.87011,23.26866],[81.86937,23.27379],[81.85204,23.27732],[81.85025,23.27404],[81.84109,23.28045],[81.84359,23.29046],[81.84001,23.29731],[81.83147,23.30224],[81.82882,23.29887],[81.8248,23.29833],[81.82394,23.29552],[81.82333,23.29683],[81.82195,23.29604],[81.8207,23.29941],[81.81599,23.29357],[81.81259,23.29538],[81.81294,23.3002],[81.80624,23.32098],[81.81815,23.31593],[81.82174,23.3198],[81.83194,23.3171],[81.86381,23.31395],[81.8713,23.30025],[81.87425,23.30035],[81.87672,23.29797],[81.87902,23.30065],[81.89549,23.29833],[81.9132,23.30196],[81.91422,23.32468],[81.91994,23.34001],[81.93457,23.34169],[81.93532,23.34291],[81.9324,23.35849],[81.93421,23.36305],[81.9318,23.36703],[81.93262,23.37171],[81.93679,23.37921],[81.9406,23.38224],[81.9482,23.38157],[81.94943,23.3793],[81.97041,23.37461],[81.98091,23.38734],[81.9823,23.39572],[81.97512,23.39981],[81.9848,23.41515],[81.98254,23.42016],[81.97674,23.4238],[81.98377,23.429],[81.98173,23.43072],[81.98167,23.43327],[81.98394,23.43389],[81.97788,23.44166],[81.9804,23.44704],[81.97572,23.44898],[81.97688,23.45181],[81.97036,23.45558],[81.96904,23.46035],[81.96472,23.4657],[81.95783,23.46532],[81.95499,23.46717],[81.95489,23.48365],[81.95778,23.50091],[81.94782,23.5011],[81.94234,23.50569],[81.93763,23.51374],[81.93785,23.51631],[81.92399,23.53211],[81.91853,23.535],[81.90787,23.53533],[81.90444,23.52955],[81.89685,23.52465],[81.89368,23.52446],[81.88126,23.51507],[81.8756,23.51271],[81.86912,23.51293],[81.86369,23.51757],[81.85218,23.51529],[81.85026,23.51355],[81.84398,23.5144],[81.83965,23.51089],[81.83643,23.51091],[81.82069,23.51524],[81.81758,23.52212],[81.81959,23.52972],[81.81698,23.54087],[81.80907,23.54934],[81.80191,23.5484],[81.77164,23.55054],[81.75826,23.54987],[81.7548,23.56559],[81.75265,23.56795],[81.74664,23.5698],[81.74238,23.56615],[81.73761,23.56507],[81.73636,23.56646],[81.72802,23.55649],[81.72523,23.55687],[81.72431,23.55026],[81.72152,23.54721],[81.72253,23.5433],[81.71539,23.54073],[81.7145,23.53597],[81.71108,23.53488],[81.70594,23.52908],[81.702,23.52801],[81.70204,23.52452],[81.69964,23.52202],[81.69034,23.52837],[81.68005,23.52925],[81.66812,23.53295],[81.65891,23.529],[81.66237,23.51414],[81.65954,23.51177],[81.65817,23.50491],[81.65459,23.50194],[81.6537,23.49806],[81.64849,23.49975],[81.64218,23.49895],[81.64222,23.49689],[81.63728,23.49036],[81.63406,23.48996],[81.62961,23.49209],[81.62705,23.49132],[81.62537,23.49676],[81.61199,23.51068],[81.61172,23.51647],[81.61537,23.51946],[81.61375,23.52168],[81.61368,23.52758],[81.61627,23.52843],[81.61633,23.53075],[81.61323,23.53343],[81.61247,23.54086],[81.61409,23.54567],[81.61004,23.55564],[81.60533,23.55406],[81.58378,23.55379],[81.57668,23.58534],[81.58497,23.59455],[81.5897,23.59603],[81.593,23.59601],[81.59681,23.59236],[81.59811,23.59423],[81.60359,23.59336],[81.60834,23.59659],[81.61197,23.59525],[81.6111,23.60327],[81.60651,23.61387],[81.6142,23.62244],[81.62033,23.65143],[81.61933,23.65839],[81.61457,23.66292],[81.64455,23.65718],[81.65517,23.66314],[81.6563,23.67214],[81.65422,23.6778],[81.65555,23.68202],[81.66062,23.68466],[81.66596,23.685],[81.68408,23.69092],[81.68502,23.70021],[81.69591,23.72132],[81.68953,23.72377],[81.68606,23.73304],[81.67847,23.73937],[81.67917,23.74234],[81.68676,23.7475],[81.68185,23.7533],[81.67668,23.75685],[81.65203,23.76537],[81.64466,23.77013],[81.64445,23.77482],[81.64947,23.78336],[81.65145,23.79906],[81.64665,23.8115],[81.64132,23.81474],[81.64162,23.82058],[81.63746,23.82767],[81.63584,23.83451],[81.63242,23.83593],[81.61594,23.83342],[81.61132,23.83701],[81.6122,23.84315],[81.60772,23.84639],[81.604,23.85202],[81.60395,23.85973],[81.60646,23.86229],[81.61255,23.86137],[81.61577,23.86255],[81.62195,23.86928],[81.62197,23.87107],[81.60461,23.88129],[81.60343,23.88806],[81.59152,23.89282],[81.58756,23.89864],[81.57112,23.91155],[81.56257,23.91436],[81.55232,23.90912],[81.54411,23.91341],[81.54151,23.9207],[81.53983,23.94194],[81.54536,23.9515],[81.55612,23.95333],[81.55764,23.95777],[81.55422,23.96394],[81.54671,23.96825],[81.54285,23.97812],[81.53923,23.98147],[81.53214,23.98272],[81.51879,23.97897],[81.50877,23.98176],[81.50566,23.98768],[81.50317,24.00047],[81.50669,24.00928],[81.5142,24.01627],[81.51374,24.02012],[81.50967,24.02415],[81.48806,24.03095],[81.48189,24.03535],[81.48183,24.03755],[81.48448,24.04064],[81.49646,24.04129],[81.50765,24.03874],[81.51551,24.04116],[81.52709,24.05032],[81.53529,24.06664],[81.54131,24.06866],[81.55331,24.06772],[81.5589,24.07338],[81.55402,24.08014],[81.54377,24.08477],[81.53522,24.08409],[81.52574,24.07638],[81.52185,24.07559],[81.51785,24.07603],[81.50974,24.08164],[81.50709,24.09137],[81.50981,24.10859],[81.50919,24.1136],[81.49761,24.12481],[81.49632,24.13468],[81.48663,24.1428],[81.48531,24.14594],[81.48631,24.1518],[81.4991,24.15488],[81.50081,24.15789],[81.49977,24.16335],[81.497,24.16606],[81.48249,24.16453],[81.47851,24.16569],[81.4724,24.16995],[81.46982,24.17438],[81.47133,24.18745],[81.47395,24.19012],[81.48066,24.19249],[81.4835,24.19774],[81.48119,24.20558],[81.48261,24.21663],[81.47946,24.22106],[81.48207,24.23034],[81.48002,24.24198],[81.46947,24.25901]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"43","area_level":"District","area_name":"Sangrur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.0669,30.02933],[76.06733,30.02955],[76.06638,30.03132],[76.06572,30.03237],[76.06316,30.03145],[76.06554,30.02864],[76.0669,30.02933]]],[[[76.05901,30.05597],[76.05941,30.0567],[76.05948,30.05691],[76.05892,30.05734],[76.05688,30.05665],[76.05673,30.05646],[76.05667,30.05605],[76.05671,30.05459],[76.0565,30.05295],[76.05635,30.05254],[76.05639,30.05226],[76.05664,30.05236],[76.05751,30.05196],[76.05872,30.05175],[76.05902,30.05161],[76.05966,30.05062],[76.06079,30.04939],[76.06105,30.04926],[76.0613,30.04926],[76.06173,30.0495],[76.06223,30.05006],[76.06239,30.05078],[76.06243,30.05108],[76.06235,30.05143],[76.0622,30.05163],[76.06185,30.05177],[76.06179,30.05186],[76.06191,30.05338],[76.0614,30.05389],[76.06167,30.05433],[76.06162,30.05467],[76.06207,30.05495],[76.0625,30.05583],[76.06229,30.05616],[76.06205,30.05618],[76.06166,30.05574],[76.06132,30.05558],[76.06081,30.05596],[76.06042,30.05609],[76.05987,30.05546],[76.05901,30.05597]]],[[[75.83408,30.69175],[75.82184,30.69065],[75.81623,30.68695],[75.82228,30.67797],[75.81669,30.67405],[75.81789,30.66807],[75.81519,30.66411],[75.8123,30.66561],[75.80374,30.66433],[75.79107,30.6602],[75.78575,30.65677],[75.78091,30.6607],[75.78153,30.67113],[75.77129,30.67331],[75.76484,30.67031],[75.76305,30.66347],[75.76472,30.65856],[75.77293,30.65958],[75.77435,30.6491],[75.77999,30.64182],[75.79683,30.63201],[75.7973,30.62993],[75.78904,30.62347],[75.78215,30.62453],[75.78027,30.62822],[75.76996,30.63166],[75.76071,30.63743],[75.75208,30.63187],[75.73829,30.63169],[75.73355,30.6202],[75.72767,30.61788],[75.72806,30.61657],[75.72055,30.61173],[75.71146,30.60915],[75.70488,30.60387],[75.70307,30.60319],[75.6981,30.6058],[75.68289,30.60605],[75.67702,30.59759],[75.685,30.59005],[75.67623,30.58356],[75.67598,30.57969],[75.67139,30.57102],[75.65901,30.56265],[75.66538,30.55483],[75.66527,30.55268],[75.65902,30.55068],[75.65224,30.54304],[75.65845,30.52976],[75.66414,30.52855],[75.66527,30.52445],[75.67704,30.52114],[75.68027,30.51041],[75.67099,30.49903],[75.6619,30.49767],[75.65875,30.49565],[75.66042,30.49124],[75.65738,30.48494],[75.65802,30.48081],[75.66331,30.47701],[75.66479,30.47321],[75.66784,30.47405],[75.67536,30.4725],[75.67295,30.47064],[75.67222,30.4575],[75.66286,30.44673],[75.65829,30.44408],[75.65363,30.44805],[75.64638,30.44069],[75.64973,30.43807],[75.64932,30.43604],[75.65237,30.43544],[75.65533,30.42836],[75.66064,30.42849],[75.66592,30.42444],[75.66702,30.42123],[75.66995,30.4201],[75.66473,30.41054],[75.67038,30.40306],[75.66446,30.39841],[75.66705,30.39397],[75.66592,30.38791],[75.66884,30.38389],[75.67326,30.38263],[75.67365,30.3809],[75.67729,30.37891],[75.67756,30.37567],[75.67536,30.37234],[75.67749,30.36944],[75.67599,30.36388],[75.67697,30.35665],[75.68396,30.35143],[75.68028,30.34753],[75.68191,30.34573],[75.66755,30.33473],[75.66352,30.33431],[75.65852,30.33752],[75.65399,30.33722],[75.65002,30.33098],[75.65821,30.31646],[75.65551,30.31005],[75.66017,30.30551],[75.66507,30.29525],[75.67197,30.28967],[75.69007,30.28414],[75.70488,30.28303],[75.70583,30.28496],[75.71631,30.28327],[75.73064,30.27571],[75.73,30.27285],[75.72391,30.2742],[75.72224,30.27302],[75.71913,30.26828],[75.72093,30.26495],[75.71876,30.26019],[75.71201,30.25547],[75.70447,30.25255],[75.70044,30.25307],[75.69912,30.24565],[75.69701,30.24414],[75.69787,30.24189],[75.69251,30.24326],[75.69011,30.24071],[75.69169,30.23941],[75.68797,30.23997],[75.6872,30.23688],[75.6887,30.2371],[75.69173,30.23014],[75.68101,30.23999],[75.67532,30.23809],[75.67535,30.23692],[75.6702,30.2363],[75.64877,30.23809],[75.64245,30.2318],[75.6339,30.2284],[75.6316,30.22881],[75.61909,30.22081],[75.61834,30.21814],[75.6132,30.2171],[75.59228,30.22237],[75.58626,30.22657],[75.58696,30.22753],[75.58344,30.22789],[75.58019,30.22391],[75.58504,30.21946],[75.58524,30.21589],[75.58051,30.21567],[75.58067,30.21268],[75.57093,30.20697],[75.57249,30.20534],[75.56836,30.20244],[75.55806,30.20187],[75.55864,30.19833],[75.55534,30.19423],[75.55695,30.19304],[75.55648,30.19009],[75.55982,30.18704],[75.55635,30.18332],[75.55897,30.18181],[75.55562,30.17719],[75.55953,30.17645],[75.56268,30.17174],[75.5618,30.17028],[75.57604,30.15603],[75.57443,30.15152],[75.57833,30.14897],[75.57706,30.144],[75.58205,30.14386],[75.59162,30.13918],[75.59387,30.14067],[75.60534,30.13593],[75.61498,30.14047],[75.62544,30.14267],[75.6271,30.14008],[75.62558,30.13796],[75.62769,30.13551],[75.62404,30.1343],[75.62472,30.13119],[75.63028,30.12699],[75.62832,30.12476],[75.63418,30.1205],[75.6346,30.11583],[75.64061,30.11574],[75.64718,30.11246],[75.64909,30.11487],[75.65476,30.11503],[75.64704,30.10303],[75.6416,30.10156],[75.63457,30.09327],[75.62429,30.08778],[75.62234,30.08473],[75.6368,30.07338],[75.63275,30.06994],[75.64034,30.06552],[75.63533,30.04739],[75.6362,30.0446],[75.64242,30.04141],[75.63839,30.02922],[75.64162,30.02488],[75.64902,30.02343],[75.65705,30.03582],[75.67063,30.03465],[75.67229,30.04013],[75.67416,30.04013],[75.67997,30.03783],[75.67399,30.03172],[75.68132,30.02458],[75.68229,30.02572],[75.68774,30.0235],[75.68647,30.01629],[75.69003,30.01406],[75.68819,30.00836],[75.68496,30.00926],[75.68246,30.00805],[75.67285,29.99995],[75.66409,29.99898],[75.64735,29.98352],[75.65229,29.98016],[75.64839,29.97339],[75.64768,29.95765],[75.64431,29.95141],[75.64108,29.93687],[75.64929,29.93811],[75.65465,29.93047],[75.65789,29.9328],[75.66385,29.93106],[75.66939,29.92604],[75.66807,29.92457],[75.66901,29.92052],[75.67278,29.91823],[75.67097,29.91108],[75.6754,29.909],[75.68379,29.90953],[75.7055,29.91863],[75.7078,29.92196],[75.70862,29.93455],[75.71838,29.93343],[75.73241,29.93484],[75.73587,29.92753],[75.74419,29.92187],[75.75687,29.91547],[75.76425,29.91908],[75.76629,29.91731],[75.76556,29.90732],[75.76837,29.89809],[75.7613,29.89363],[75.75877,29.88748],[75.76016,29.87591],[75.76253,29.87256],[75.75814,29.86737],[75.75753,29.86143],[75.75816,29.85959],[75.76133,29.85999],[75.77563,29.85323],[75.77509,29.85012],[75.77201,29.84681],[75.77328,29.83485],[75.76482,29.82774],[75.75712,29.82792],[75.7505,29.82427],[75.74565,29.82468],[75.73782,29.81404],[75.74689,29.80732],[75.75063,29.8076],[75.75617,29.805],[75.77199,29.81831],[75.77943,29.82229],[75.78297,29.8208],[75.78982,29.81056],[75.80498,29.80484],[75.81149,29.80553],[75.81583,29.80416],[75.82243,29.80779],[75.82585,29.81451],[75.8303,29.81178],[75.83523,29.81435],[75.83776,29.81302],[75.83493,29.8088],[75.83799,29.7971],[75.83701,29.79425],[75.84049,29.78865],[75.84368,29.78983],[75.84583,29.78227],[75.85291,29.77804],[75.85356,29.77638],[75.85141,29.7727],[75.85832,29.7708],[75.85971,29.768],[75.86674,29.76653],[75.87036,29.75754],[75.86925,29.75197],[75.87025,29.7493],[75.88238,29.751],[75.88595,29.74538],[75.89884,29.74624],[75.9008,29.74888],[75.90448,29.74892],[75.9027,29.75162],[75.90631,29.75333],[75.91461,29.74796],[75.91497,29.74302],[75.91944,29.74133],[75.92239,29.73766],[75.93869,29.73066],[75.94113,29.73154],[75.94734,29.72938],[75.95073,29.73193],[75.95485,29.73193],[75.96757,29.72941],[75.97346,29.7304],[75.97535,29.72864],[75.98442,29.72711],[75.98889,29.73393],[75.9949,29.73926],[75.99897,29.74102],[76.00711,29.74074],[76.01677,29.743],[76.01938,29.74767],[76.02406,29.74898],[76.02611,29.75615],[76.03068,29.75472],[76.03088,29.74765],[76.03524,29.74421],[76.04361,29.74265],[76.04747,29.74568],[76.04963,29.7481],[76.04949,29.75186],[76.05481,29.75855],[76.05682,29.76536],[76.06024,29.76464],[76.0671,29.77397],[76.07255,29.77858],[76.07678,29.77488],[76.08265,29.78116],[76.08472,29.78452],[76.08296,29.78796],[76.085,29.80073],[76.08953,29.80113],[76.09808,29.81061],[76.10202,29.81058],[76.10668,29.8133],[76.11051,29.81856],[76.11,29.82251],[76.1179,29.83179],[76.11724,29.83412],[76.11923,29.83492],[76.12015,29.84093],[76.11805,29.84851],[76.12013,29.85307],[76.11909,29.855],[76.12246,29.85757],[76.1171,29.85992],[76.10871,29.85872],[76.10394,29.85465],[76.09985,29.84716],[76.09035,29.85111],[76.0895,29.84708],[76.08414,29.84657],[76.07531,29.84141],[76.0723,29.84346],[76.06495,29.84172],[76.05988,29.84657],[76.0528,29.85984],[76.05277,29.86293],[76.05613,29.86929],[76.05504,29.87046],[76.05041,29.87153],[76.0481,29.86933],[76.04356,29.87606],[76.03929,29.8729],[76.03732,29.87639],[76.03834,29.88013],[76.03305,29.88244],[76.03182,29.87668],[76.02882,29.87655],[76.02266,29.86952],[76.01992,29.86894],[76.01419,29.87364],[76.01561,29.87761],[76.01169,29.88481],[76.0119,29.89047],[75.99179,29.89913],[75.98327,29.90475],[75.98306,29.90714],[75.98723,29.91241],[75.9866,29.91463],[75.98989,29.92262],[75.98612,29.92519],[75.98477,29.93624],[75.98847,29.93872],[75.98713,29.94107],[75.99055,29.94408],[75.98973,29.94568],[75.99605,29.94839],[76.00353,29.94476],[76.02636,29.95981],[76.02597,29.9633],[76.02067,29.96624],[76.02685,29.97235],[76.02164,29.97648],[76.00877,29.98129],[76.00682,29.98334],[76.01503,30.0],[76.03206,30.01058],[76.03209,30.01166],[76.02672,30.01288],[76.02863,30.02032],[76.03416,30.01864],[76.04203,30.02744],[76.04405,30.0318],[76.03829,30.03558],[76.03759,30.03793],[76.04194,30.04197],[76.03952,30.04246],[76.04149,30.04813],[76.04758,30.04915],[76.0506,30.04763],[76.0518,30.04953],[76.04358,30.05238],[76.0524,30.06097],[76.05155,30.06453],[76.05689,30.06655],[76.06651,30.06115],[76.06457,30.05645],[76.06591,30.05505],[76.07084,30.05979],[76.08036,30.05562],[76.08733,30.05457],[76.0811,30.06376],[76.09152,30.07429],[76.08914,30.0801],[76.09494,30.08941],[76.09866,30.09241],[76.10084,30.10062],[76.10473,30.10359],[76.10406,30.10674],[76.09705,30.1162],[76.09329,30.11635],[76.07915,30.11064],[76.07801,30.11178],[76.07776,30.115],[76.0806,30.11553],[76.08358,30.11973],[76.08144,30.12239],[76.07375,30.12177],[76.07177,30.12433],[76.0742,30.13139],[76.08026,30.13132],[76.07895,30.13596],[76.07054,30.14041],[76.06904,30.1438],[76.06373,30.14347],[76.06219,30.14474],[76.06267,30.1487],[76.06952,30.14696],[76.07368,30.1519],[76.05723,30.16481],[76.05502,30.16976],[76.05659,30.17554],[76.05367,30.18247],[76.04932,30.18669],[76.05747,30.19214],[76.06038,30.19544],[76.06051,30.19789],[76.06642,30.20331],[76.06423,30.2042],[76.06846,30.20622],[76.06353,30.20793],[76.062,30.20921],[76.06249,30.21099],[76.06834,30.21694],[76.07049,30.21658],[76.07084,30.22021],[76.07532,30.22192],[76.07773,30.22499],[76.08079,30.22474],[76.0812,30.22011],[76.08423,30.22024],[76.08467,30.22165],[76.09515,30.22136],[76.09553,30.21865],[76.10671,30.2203],[76.11438,30.22356],[76.11272,30.22535],[76.11408,30.22694],[76.1123,30.22982],[76.11513,30.22929],[76.12269,30.23749],[76.1268,30.23538],[76.13209,30.24015],[76.13795,30.23324],[76.13965,30.23717],[76.13869,30.23767],[76.1435,30.24011],[76.1432,30.2422],[76.15355,30.24796],[76.16285,30.24624],[76.16624,30.2399],[76.17597,30.24913],[76.17398,30.25077],[76.18302,30.25695],[76.17941,30.25809],[76.17798,30.26094],[76.17904,30.26255],[76.17691,30.26316],[76.17693,30.26578],[76.18271,30.27485],[76.18716,30.27474],[76.19114,30.27211],[76.19541,30.27285],[76.20081,30.27779],[76.20349,30.28423],[76.19787,30.29574],[76.18736,30.30002],[76.17962,30.3084],[76.17814,30.31229],[76.17554,30.31292],[76.16783,30.32541],[76.16689,30.33161],[76.15546,30.3241],[76.15183,30.32505],[76.1496,30.3208],[76.13828,30.3125],[76.13363,30.31149],[76.12303,30.31797],[76.11141,30.32149],[76.10687,30.31831],[76.09273,30.3145],[76.08804,30.30991],[76.06803,30.31684],[76.05915,30.32671],[76.05969,30.32935],[76.05741,30.3321],[76.04783,30.33894],[76.04255,30.3347],[76.03322,30.33765],[76.02875,30.3326],[76.02245,30.33195],[76.02042,30.32885],[76.01715,30.3283],[76.00935,30.33105],[76.00695,30.3353],[76.00235,30.33398],[75.99389,30.33856],[75.98797,30.33783],[75.98655,30.34082],[75.98737,30.3446],[75.9846,30.34877],[75.98633,30.35578],[75.98584,30.36333],[75.98929,30.36873],[75.99231,30.37197],[75.99677,30.36486],[76.01053,30.36402],[76.00703,30.36535],[76.00729,30.36864],[76.01357,30.37611],[76.01414,30.38176],[76.02354,30.37827],[76.02493,30.38788],[76.02343,30.39041],[76.03007,30.3951],[76.036,30.40208],[76.03158,30.40883],[76.04099,30.41495],[76.04461,30.41554],[76.04663,30.42056],[76.05281,30.42724],[76.04953,30.43563],[76.05687,30.43955],[76.07116,30.45308],[76.07437,30.44912],[76.08794,30.45799],[76.08021,30.46208],[76.07914,30.46939],[76.08059,30.47256],[76.06596,30.48049],[76.06337,30.48869],[76.06752,30.49641],[76.08103,30.50208],[76.07856,30.50828],[76.0812,30.51349],[76.08353,30.51474],[76.08076,30.52027],[76.08903,30.53386],[76.0758,30.54653],[76.08117,30.55224],[76.08139,30.5578],[76.08449,30.56195],[76.08262,30.56461],[76.0786,30.56573],[76.07585,30.56361],[76.07005,30.56392],[76.06542,30.56893],[76.06663,30.57466],[76.06925,30.57695],[76.06882,30.58119],[76.06618,30.58344],[76.05787,30.57854],[76.05405,30.58092],[76.05359,30.58324],[76.04958,30.58383],[76.0433,30.58754],[76.03537,30.58893],[76.03218,30.60078],[76.03413,30.60325],[76.03375,30.60641],[76.03257,30.60927],[76.02958,30.61049],[76.02953,30.61394],[76.02787,30.61531],[76.01008,30.61574],[76.00451,30.6065],[76.00046,30.6033],[75.98689,30.59832],[75.9828,30.59865],[75.97193,30.59245],[75.96099,30.59039],[75.95307,30.57453],[75.94861,30.5725],[75.94774,30.57043],[75.93537,30.56819],[75.9254,30.57789],[75.92684,30.58426],[75.9209,30.59193],[75.92928,30.59725],[75.92299,30.60669],[75.92347,30.6087],[75.91968,30.60979],[75.91716,30.60858],[75.9152,30.61085],[75.9113,30.6102],[75.90999,30.61189],[75.90356,30.60684],[75.90278,30.60371],[75.88785,30.607],[75.88668,30.60944],[75.88818,30.62041],[75.87235,30.62887],[75.87246,30.63924],[75.88005,30.6406],[75.88019,30.64199],[75.88665,30.64521],[75.89805,30.64748],[75.89502,30.65486],[75.89543,30.65957],[75.88326,30.66434],[75.88146,30.66663],[75.88087,30.67563],[75.87929,30.67625],[75.86682,30.67816],[75.85931,30.67052],[75.8557,30.66923],[75.85241,30.67014],[75.84635,30.6755],[75.84385,30.68039],[75.83786,30.67992],[75.83408,30.69175]],[[75.96755,29.92826],[75.96771,29.93047],[75.96999,29.93193],[75.97199,29.92843],[75.96935,29.92523],[75.97142,29.92001],[75.96793,29.916],[75.97101,29.91643],[75.97412,29.91284],[75.97395,29.9082],[75.97822,29.90673],[75.97931,29.90432],[75.97411,29.895],[75.96742,29.89039],[75.96305,29.89266],[75.9603,29.88944],[75.95925,29.89096],[75.95507,29.89007],[75.94936,29.89498],[75.93775,29.8991],[75.93435,29.90181],[75.93311,29.90622],[75.92929,29.90815],[75.93497,29.91553],[75.94176,29.9197],[75.94799,29.92121],[75.95246,29.92094],[75.95904,29.91738],[75.95778,29.91493],[75.95936,29.91353],[75.96316,29.91476],[75.96639,29.91261],[75.96719,29.91388],[75.96344,29.91704],[75.96447,29.92165],[75.96768,29.92075],[75.96813,29.92599],[75.9661,29.92813],[75.96755,29.92826]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"430","area_level":"District","area_name":"Shajapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.41099,23.71394],[76.4112,23.72177],[76.40236,23.72659],[76.40263,23.72308],[76.40842,23.71763],[76.40662,23.71354],[76.40449,23.71553],[76.4032,23.71377],[76.39443,23.71517],[76.37244,23.70626],[76.36763,23.70843],[76.35311,23.70791],[76.35248,23.71778],[76.33863,23.72201],[76.33479,23.71825],[76.33261,23.70494],[76.301,23.7051],[76.28792,23.69792],[76.27616,23.71096],[76.24612,23.70752],[76.20685,23.70897],[76.20448,23.70201],[76.20491,23.69524],[76.21546,23.67335],[76.21733,23.66526],[76.22193,23.65984],[76.22353,23.63878],[76.22178,23.62178],[76.22449,23.61334],[76.22991,23.60667],[76.23154,23.60168],[76.23413,23.58511],[76.23679,23.57932],[76.23745,23.5697],[76.22969,23.56964],[76.22927,23.56663],[76.20076,23.56764],[76.20057,23.57054],[76.18918,23.57223],[76.1825,23.57533],[76.17923,23.58227],[76.17577,23.58554],[76.173,23.5803],[76.17479,23.57738],[76.17171,23.57642],[76.17065,23.57778],[76.16527,23.57152],[76.17348,23.56684],[76.17385,23.56125],[76.179,23.55628],[76.17206,23.54614],[76.17651,23.54081],[76.17185,23.53476],[76.16677,23.53353],[76.16223,23.52877],[76.15685,23.51905],[76.15697,23.51537],[76.16013,23.50734],[76.16576,23.50443],[76.17555,23.50949],[76.17781,23.5074],[76.18865,23.50712],[76.19104,23.50382],[76.19933,23.50097],[76.20381,23.50395],[76.20344,23.50849],[76.21121,23.51113],[76.20689,23.52024],[76.21446,23.52521],[76.21546,23.53178],[76.22618,23.5323],[76.236,23.52778],[76.23752,23.52426],[76.23761,23.51593],[76.24347,23.51538],[76.24625,23.51791],[76.25329,23.51508],[76.25243,23.51058],[76.24633,23.50684],[76.24777,23.49864],[76.24631,23.49701],[76.23109,23.49696],[76.22839,23.49483],[76.22146,23.49658],[76.21946,23.48831],[76.20927,23.48866],[76.20777,23.47751],[76.20457,23.47567],[76.20103,23.47671],[76.20053,23.47824],[76.19784,23.47788],[76.1987,23.4722],[76.19723,23.46544],[76.20934,23.46219],[76.20829,23.45936],[76.21056,23.45427],[76.2124,23.45234],[76.21372,23.45354],[76.21481,23.45253],[76.21319,23.44977],[76.21428,23.44865],[76.21275,23.4486],[76.21205,23.43959],[76.20321,23.4352],[76.20396,23.42962],[76.20089,23.42787],[76.2019,23.41898],[76.20579,23.41706],[76.20443,23.41504],[76.20573,23.41526],[76.20683,23.41915],[76.21116,23.41948],[76.21365,23.41714],[76.21053,23.41044],[76.21326,23.404],[76.20952,23.39608],[76.21295,23.3848],[76.23155,23.38611],[76.24571,23.39273],[76.25477,23.37385],[76.24661,23.36568],[76.25063,23.36022],[76.25215,23.35168],[76.23062,23.33996],[76.22819,23.33997],[76.22743,23.3379],[76.22396,23.34233],[76.2235,23.33908],[76.22061,23.33878],[76.21899,23.34261],[76.22102,23.34877],[76.21497,23.35081],[76.20578,23.34412],[76.2032,23.34128],[76.20381,23.33775],[76.19399,23.32606],[76.19588,23.31949],[76.18788,23.30676],[76.19215,23.29288],[76.18838,23.28083],[76.18204,23.2692],[76.17233,23.26685],[76.1667,23.27175],[76.15923,23.27321],[76.1584,23.27507],[76.16185,23.2766],[76.15707,23.2818],[76.15798,23.28385],[76.1526,23.28442],[76.13301,23.28138],[76.13417,23.27045],[76.12867,23.26299],[76.12417,23.26088],[76.12358,23.25129],[76.12059,23.24367],[76.12853,23.24374],[76.12707,23.23986],[76.13548,23.23676],[76.13923,23.23278],[76.14189,23.23299],[76.14191,23.23136],[76.15375,23.23404],[76.15542,23.23181],[76.1618,23.22939],[76.16324,23.22473],[76.18422,23.22967],[76.19104,23.22863],[76.19222,23.2252],[76.20498,23.22251],[76.21734,23.22579],[76.22285,23.22397],[76.22675,23.22654],[76.24484,23.2221],[76.25233,23.21671],[76.25796,23.22115],[76.26133,23.22157],[76.27562,23.22952],[76.29056,23.22994],[76.29929,23.22852],[76.30658,23.23052],[76.31254,23.22909],[76.3201,23.23397],[76.33239,23.22662],[76.34208,23.22757],[76.356,23.22565],[76.36022,23.23154],[76.36403,23.23286],[76.3826,23.22977],[76.38833,23.22603],[76.39594,23.22597],[76.40057,23.221],[76.41362,23.21914],[76.41227,23.21142],[76.41836,23.20156],[76.41663,23.19832],[76.4198,23.19828],[76.42235,23.19619],[76.42507,23.19683],[76.4257,23.19407],[76.42835,23.19601],[76.43238,23.19262],[76.45181,23.19616],[76.45977,23.19459],[76.4592,23.18972],[76.47302,23.18309],[76.48229,23.18298],[76.48847,23.18494],[76.49643,23.18202],[76.51132,23.18049],[76.52242,23.16924],[76.52547,23.15899],[76.52727,23.15889],[76.52526,23.15033],[76.52693,23.14722],[76.54265,23.1406],[76.54089,23.13773],[76.5403,23.13093],[76.54605,23.13057],[76.55945,23.12587],[76.56038,23.12432],[76.55866,23.11949],[76.58577,23.11249],[76.59192,23.1127],[76.59065,23.11831],[76.61411,23.13734],[76.61975,23.13935],[76.62826,23.13876],[76.62792,23.14416],[76.63108,23.15401],[76.63237,23.16811],[76.63032,23.17802],[76.63179,23.18365],[76.63009,23.19763],[76.64711,23.20028],[76.65375,23.19693],[76.65511,23.18723],[76.65871,23.18689],[76.66006,23.18913],[76.67275,23.1891],[76.6749,23.1975],[76.68536,23.1941],[76.6956,23.17545],[76.69366,23.1667],[76.69815,23.15771],[76.70936,23.15935],[76.7228,23.15835],[76.72406,23.153],[76.7272,23.15078],[76.73138,23.14242],[76.74282,23.14134],[76.75219,23.15703],[76.75125,23.16448],[76.7451,23.16946],[76.74191,23.17616],[76.74174,23.18083],[76.74644,23.18404],[76.7527,23.18217],[76.76217,23.17578],[76.77442,23.17197],[76.76735,23.1568],[76.78869,23.15227],[76.78863,23.14609],[76.7975,23.14413],[76.79735,23.13588],[76.80304,23.13091],[76.80335,23.12527],[76.81008,23.12498],[76.81908,23.12928],[76.82606,23.12792],[76.82641,23.12566],[76.82164,23.11958],[76.82191,23.11481],[76.84609,23.11169],[76.855,23.10772],[76.86239,23.10904],[76.86203,23.11244],[76.86059,23.11321],[76.86094,23.11739],[76.87069,23.11716],[76.87224,23.12176],[76.87499,23.1204],[76.8812,23.12133],[76.88235,23.1267],[76.88482,23.1247],[76.89553,23.13649],[76.8926,23.14672],[76.89263,23.15281],[76.89859,23.1788],[76.89459,23.19487],[76.88879,23.2059],[76.90195,23.21295],[76.90354,23.21904],[76.90124,23.22631],[76.90629,23.23139],[76.92334,23.23096],[76.9395,23.23624],[76.95446,23.25366],[76.96776,23.26042],[76.9726,23.27701],[76.98746,23.28582],[76.9877,23.30067],[76.97917,23.311],[76.98265,23.33258],[76.98048,23.34721],[76.98925,23.35742],[76.98924,23.36895],[76.99411,23.38193],[76.98928,23.38897],[76.98808,23.39673],[76.99494,23.40502],[76.99898,23.41481],[77.01057,23.42698],[77.01137,23.43775],[77.01582,23.44499],[77.01898,23.4478],[77.02683,23.44763],[77.0375,23.45294],[77.04114,23.45928],[77.04974,23.46705],[77.04317,23.465],[77.03817,23.46535],[77.03667,23.46311],[77.0366,23.46494],[77.03461,23.46511],[77.03508,23.46756],[77.03062,23.47105],[77.02844,23.48307],[77.00837,23.48655],[77.00542,23.49486],[76.99885,23.49893],[76.98738,23.5018],[76.98406,23.49958],[76.97963,23.50038],[76.96769,23.50607],[76.96203,23.50486],[76.95175,23.4992],[76.94782,23.49212],[76.94329,23.48766],[76.94273,23.48072],[76.94058,23.4811],[76.93385,23.47179],[76.92578,23.476],[76.92475,23.48748],[76.92106,23.4909],[76.91593,23.49353],[76.90363,23.49477],[76.91565,23.51371],[76.90788,23.5182],[76.88847,23.52265],[76.88426,23.51357],[76.87711,23.51315],[76.87611,23.49768],[76.85032,23.49528],[76.84296,23.49823],[76.84273,23.48809],[76.82936,23.48907],[76.81828,23.48704],[76.80928,23.48239],[76.81025,23.47823],[76.81464,23.47215],[76.81487,23.46803],[76.80259,23.46636],[76.80172,23.45815],[76.79331,23.45707],[76.79046,23.45806],[76.78924,23.46104],[76.7855,23.4636],[76.78016,23.46557],[76.78569,23.47135],[76.77684,23.47265],[76.77414,23.47831],[76.76753,23.48235],[76.76818,23.484],[76.76236,23.48637],[76.75995,23.49656],[76.7365,23.49326],[76.73064,23.49371],[76.72274,23.49134],[76.71805,23.49177],[76.71402,23.48955],[76.70029,23.48929],[76.69338,23.48591],[76.6872,23.49108],[76.68573,23.49718],[76.66632,23.5009],[76.65388,23.50077],[76.66058,23.51496],[76.66218,23.53208],[76.65186,23.54064],[76.63132,23.54187],[76.63134,23.54562],[76.62435,23.54902],[76.61885,23.55573],[76.60013,23.56359],[76.59426,23.55554],[76.58799,23.55197],[76.58642,23.54794],[76.57549,23.54944],[76.57442,23.55312],[76.55767,23.5648],[76.55416,23.56549],[76.54833,23.56348],[76.5352,23.566],[76.5344,23.56956],[76.52636,23.57581],[76.51441,23.56942],[76.50254,23.56677],[76.50248,23.55685],[76.50687,23.55608],[76.50904,23.5509],[76.51322,23.54869],[76.51185,23.53041],[76.50016,23.53286],[76.49633,23.53917],[76.49141,23.53762],[76.48685,23.5417],[76.49225,23.53131],[76.49647,23.53146],[76.50197,23.52438],[76.50674,23.51165],[76.50449,23.51205],[76.50382,23.5144],[76.49925,23.51552],[76.489,23.51172],[76.48341,23.51217],[76.48128,23.52224],[76.47041,23.52747],[76.468,23.53329],[76.4595,23.53535],[76.45507,23.53998],[76.45417,23.54428],[76.4363,23.54557],[76.43709,23.55635],[76.43484,23.56531],[76.43785,23.56843],[76.44131,23.56642],[76.44602,23.5823],[76.44011,23.5845],[76.44133,23.59538],[76.43717,23.5982],[76.43841,23.60565],[76.45267,23.60449],[76.45156,23.60276],[76.45678,23.59379],[76.45891,23.59377],[76.45975,23.59182],[76.46313,23.59251],[76.46132,23.60104],[76.45192,23.62191],[76.44625,23.62515],[76.44135,23.62403],[76.43631,23.62668],[76.43512,23.62995],[76.43724,23.63972],[76.42904,23.65436],[76.40617,23.67097],[76.40178,23.67668],[76.40167,23.68487],[76.40566,23.69143],[76.40406,23.69926],[76.40514,23.70493],[76.41099,23.71394]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"431","area_level":"District","area_name":"Sheopur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.14041,26.18087],[77.14358,26.18858],[77.14717,26.19228],[77.12694,26.21022],[77.11458,26.21786],[77.11185,26.20899],[77.11198,26.20235],[77.10596,26.19614],[77.10093,26.18656],[77.09675,26.18324],[77.08226,26.17906],[77.05448,26.17957],[77.02914,26.17119],[77.01525,26.15704],[77.00631,26.15102],[77.00156,26.14246],[77.00288,26.138],[77.00215,26.13399],[76.99761,26.12907],[76.98712,26.12804],[76.97748,26.12486],[76.94766,26.10274],[76.94077,26.10053],[76.93653,26.10177],[76.91811,26.09876],[76.89978,26.0925],[76.90025,26.08708],[76.89772,26.07425],[76.89416,26.06724],[76.88973,26.06266],[76.88485,26.04804],[76.87581,26.04315],[76.86631,26.03436],[76.8568,26.03473],[76.84078,26.02649],[76.83276,26.01871],[76.8262,26.00739],[76.81925,26.00348],[76.80678,25.98981],[76.80252,25.97822],[76.80358,25.97453],[76.80831,25.97324],[76.80745,25.96537],[76.78903,25.94109],[76.78141,25.93845],[76.768,25.93765],[76.74886,25.94047],[76.7464,25.93768],[76.74659,25.9341],[76.75179,25.92817],[76.75765,25.92663],[76.75662,25.92101],[76.75273,25.91734],[76.73323,25.90632],[76.71633,25.90116],[76.70725,25.90051],[76.6872,25.90786],[76.67011,25.91072],[76.64026,25.90761],[76.63575,25.905],[76.63062,25.89914],[76.6261,25.87573],[76.62374,25.8709],[76.61574,25.86834],[76.59472,25.87524],[76.58656,25.87361],[76.57668,25.8643],[76.55611,25.8349],[76.53426,25.81849],[76.52101,25.7936],[76.5155,25.77779],[76.51789,25.76713],[76.51726,25.75523],[76.52088,25.75211],[76.52522,25.74175],[76.52295,25.73746],[76.52398,25.7302],[76.52032,25.72875],[76.5014,25.72997],[76.49109,25.72083],[76.48161,25.71805],[76.47614,25.71396],[76.47246,25.70744],[76.47218,25.70143],[76.47556,25.69091],[76.48039,25.68326],[76.49144,25.67902],[76.49891,25.67808],[76.50384,25.6732],[76.504,25.66844],[76.49817,25.65675],[76.49658,25.64707],[76.49894,25.63944],[76.50227,25.63762],[76.50559,25.6381],[76.50988,25.63092],[76.5123,25.60555],[76.51116,25.59989],[76.50538,25.58968],[76.50331,25.58269],[76.50506,25.57567],[76.51415,25.56299],[76.51998,25.54727],[76.51661,25.52667],[76.52496,25.51851],[76.53431,25.5144],[76.53775,25.50901],[76.53773,25.50272],[76.55546,25.48257],[76.55807,25.47054],[76.55715,25.4594],[76.55519,25.45446],[76.55598,25.45203],[76.56223,25.44762],[76.56753,25.44034],[76.58243,25.43686],[76.58796,25.4311],[76.59823,25.40543],[76.59847,25.39233],[76.60828,25.39094],[76.61664,25.38076],[76.62279,25.37678],[76.62891,25.37779],[76.63089,25.38123],[76.63556,25.38344],[76.63976,25.38353],[76.64067,25.37953],[76.64383,25.37794],[76.64647,25.37317],[76.64585,25.37072],[76.64936,25.37156],[76.64958,25.36627],[76.65355,25.36711],[76.65406,25.3631],[76.65682,25.3612],[76.65857,25.36154],[76.65883,25.36541],[76.66043,25.36519],[76.66351,25.35795],[76.6688,25.35301],[76.66845,25.35017],[76.67239,25.34809],[76.67532,25.34923],[76.67715,25.34782],[76.67702,25.35012],[76.67903,25.35069],[76.68255,25.34837],[76.68978,25.35235],[76.70028,25.35163],[76.7033,25.34789],[76.71112,25.3461],[76.71998,25.34589],[76.73213,25.35215],[76.7417,25.34885],[76.74649,25.34385],[76.76102,25.34137],[76.75567,25.33107],[76.75566,25.32278],[76.76037,25.31974],[76.76627,25.32022],[76.77642,25.31574],[76.78009,25.31565],[76.78966,25.31954],[76.80027,25.31965],[76.8145,25.32297],[76.82036,25.32628],[76.83078,25.3273],[76.83944,25.3262],[76.85201,25.33203],[76.85728,25.33278],[76.86348,25.33123],[76.86577,25.3285],[76.8704,25.32703],[76.87211,25.32895],[76.88148,25.32413],[76.90246,25.32312],[76.91765,25.30926],[76.92941,25.30319],[76.92739,25.29153],[76.92327,25.28546],[76.9299,25.28297],[76.94309,25.28212],[76.95781,25.28441],[76.96065,25.29729],[76.97374,25.30041],[76.98047,25.29793],[76.99688,25.2984],[77.0257,25.29627],[77.03169,25.29439],[77.04377,25.31269],[77.0459,25.32144],[77.05691,25.31655],[77.06395,25.31657],[77.07005,25.31849],[77.07496,25.32522],[77.07523,25.32823],[77.08303,25.33598],[77.0819,25.35378],[77.08035,25.3547],[77.07123,25.34921],[77.06118,25.34838],[77.04588,25.34127],[77.02717,25.35018],[77.01231,25.35075],[77.01696,25.35733],[77.01635,25.38366],[77.02837,25.38528],[77.03651,25.3881],[77.06717,25.3841],[77.07945,25.38487],[77.08477,25.38795],[77.08733,25.38384],[77.0863,25.38265],[77.08975,25.38027],[77.09808,25.37978],[77.11369,25.3911],[77.10865,25.40655],[77.10998,25.41019],[77.11582,25.41073],[77.12194,25.41478],[77.13657,25.41548],[77.14046,25.41949],[77.14256,25.41996],[77.1473,25.41759],[77.15298,25.42036],[77.15382,25.42863],[77.14775,25.43288],[77.14445,25.444],[77.13921,25.44784],[77.13875,25.45273],[77.1475,25.46317],[77.15223,25.46624],[77.16209,25.46578],[77.17071,25.46295],[77.18564,25.4661],[77.18252,25.47467],[77.17702,25.47957],[77.17475,25.48688],[77.17698,25.49784],[77.17469,25.5051],[77.17855,25.51184],[77.21019,25.51716],[77.22584,25.51441],[77.23566,25.51944],[77.23933,25.51854],[77.2488,25.52034],[77.26749,25.52612],[77.27679,25.52669],[77.28065,25.52953],[77.28795,25.53106],[77.29115,25.52973],[77.29544,25.53036],[77.29955,25.53415],[77.30616,25.54456],[77.30494,25.55025],[77.30703,25.55526],[77.30039,25.55735],[77.29488,25.55633],[77.28983,25.55296],[77.27065,25.56086],[77.27297,25.56935],[77.27001,25.57662],[77.27342,25.58354],[77.25728,25.58298],[77.25955,25.59388],[77.26271,25.60222],[77.2653,25.6033],[77.265,25.60663],[77.26881,25.61423],[77.27524,25.61855],[77.28382,25.62919],[77.27792,25.63595],[77.26981,25.63951],[77.25849,25.6414],[77.26005,25.64489],[77.25332,25.65588],[77.25684,25.66061],[77.26403,25.66479],[77.27149,25.6728],[77.27592,25.67429],[77.27993,25.67099],[77.28635,25.67322],[77.29317,25.66495],[77.30866,25.66072],[77.3181,25.66105],[77.32601,25.66782],[77.32437,25.67601],[77.31958,25.67763],[77.31543,25.68311],[77.30897,25.6843],[77.30867,25.68782],[77.30445,25.69015],[77.30415,25.69416],[77.30075,25.69772],[77.29249,25.70028],[77.2874,25.69995],[77.28411,25.70353],[77.27876,25.70607],[77.27669,25.71951],[77.28555,25.72461],[77.28784,25.72833],[77.29461,25.73121],[77.30008,25.73676],[77.3053,25.73229],[77.31419,25.72853],[77.31848,25.73125],[77.32157,25.73725],[77.32093,25.75035],[77.31879,25.7522],[77.32139,25.76551],[77.32511,25.7722],[77.33533,25.7718],[77.32591,25.78211],[77.32559,25.78583],[77.32947,25.79079],[77.33944,25.78422],[77.37249,25.78641],[77.37744,25.78391],[77.38071,25.78509],[77.38297,25.78324],[77.38901,25.78351],[77.39184,25.78126],[77.39922,25.78089],[77.40456,25.7833],[77.40717,25.78114],[77.40888,25.78323],[77.4111,25.7818],[77.41803,25.78337],[77.42076,25.78158],[77.42999,25.78045],[77.43617,25.77631],[77.44333,25.77407],[77.44155,25.78377],[77.43532,25.79348],[77.40875,25.81162],[77.40914,25.84805],[77.41255,25.85442],[77.41068,25.86211],[77.41745,25.86948],[77.41362,25.87387],[77.40747,25.87368],[77.40524,25.87569],[77.40761,25.88035],[77.41517,25.88465],[77.42304,25.8849],[77.42463,25.88777],[77.42342,25.89221],[77.42934,25.89294],[77.43366,25.88962],[77.43796,25.88879],[77.44357,25.89045],[77.45574,25.87512],[77.46037,25.87431],[77.46167,25.86985],[77.46779,25.8653],[77.47374,25.86393],[77.47325,25.85747],[77.47612,25.85782],[77.48205,25.85398],[77.49201,25.8575],[77.49492,25.85243],[77.49789,25.85122],[77.50425,25.85477],[77.50702,25.85436],[77.5078,25.84845],[77.51292,25.85014],[77.51598,25.84768],[77.52088,25.8487],[77.52186,25.85103],[77.5247,25.83887],[77.5346,25.83395],[77.54223,25.83648],[77.54831,25.836],[77.54403,25.82352],[77.55117,25.82285],[77.55111,25.81671],[77.55453,25.81197],[77.55835,25.81095],[77.56043,25.81369],[77.57777,25.81634],[77.5814,25.82356],[77.58077,25.83081],[77.58324,25.83828],[77.57737,25.84567],[77.58078,25.85187],[77.57872,25.8599],[77.5802,25.86313],[77.58969,25.86772],[77.6022,25.85884],[77.61155,25.85756],[77.61611,25.85922],[77.62236,25.86487],[77.63317,25.86497],[77.63898,25.86752],[77.63897,25.87492],[77.64538,25.88734],[77.64173,25.89526],[77.64208,25.89811],[77.65562,25.91013],[77.62729,25.91702],[77.6154,25.91825],[77.61212,25.91608],[77.60847,25.91832],[77.60727,25.91675],[77.59866,25.91628],[77.59536,25.91317],[77.58956,25.91161],[77.58938,25.9098],[77.57834,25.91055],[77.57688,25.90857],[77.5771,25.91026],[77.57431,25.90975],[77.57159,25.90538],[77.56969,25.90679],[77.56194,25.90033],[77.55944,25.902],[77.55869,25.90024],[77.55687,25.9016],[77.55547,25.9],[77.5535,25.90322],[77.55386,25.90214],[77.55026,25.90195],[77.5498,25.90031],[77.54336,25.90662],[77.54293,25.91291],[77.54688,25.91535],[77.54535,25.92009],[77.54733,25.92352],[77.54131,25.92751],[77.53731,25.93456],[77.53821,25.94397],[77.54732,25.94146],[77.55184,25.93652],[77.55702,25.93578],[77.56275,25.93232],[77.56297,25.92882],[77.56507,25.92694],[77.56693,25.93317],[77.57076,25.93355],[77.57506,25.93889],[77.58294,25.94078],[77.57889,25.94648],[77.60047,25.95529],[77.602,25.96024],[77.60365,25.96069],[77.6081,25.95664],[77.61665,25.95643],[77.63967,25.95819],[77.64885,25.96169],[77.64717,25.97335],[77.64511,25.97582],[77.64628,25.9807],[77.644,25.9911],[77.65328,26.00309],[77.65133,26.00485],[77.65362,26.01011],[77.64852,26.00847],[77.64774,26.01076],[77.64525,26.01032],[77.64423,26.01287],[77.62542,26.01356],[77.61623,26.02112],[77.61492,26.02902],[77.61597,26.03181],[77.62137,26.03664],[77.62048,26.03743],[77.62613,26.0389],[77.63829,26.04883],[77.63664,26.06135],[77.63209,26.07004],[77.63492,26.07018],[77.63786,26.06697],[77.64334,26.06598],[77.64859,26.06809],[77.65289,26.06721],[77.66981,26.06903],[77.66668,26.08666],[77.66781,26.09154],[77.66417,26.09563],[77.64068,26.09293],[77.63411,26.08202],[77.61653,26.07177],[77.60868,26.07174],[77.60398,26.06927],[77.59977,26.06451],[77.61042,26.05967],[77.61074,26.04555],[77.61392,26.04378],[77.61186,26.03742],[77.61336,26.03614],[77.60732,26.03517],[77.59983,26.02702],[77.59801,26.02697],[77.59611,26.02101],[77.59169,26.01511],[77.58848,26.01276],[77.58121,26.01226],[77.57536,26.01471],[77.57028,26.02041],[77.55261,26.02402],[77.54861,26.03237],[77.54311,26.038],[77.53489,26.04065],[77.53261,26.04283],[77.51992,26.04531],[77.51627,26.05056],[77.50979,26.05356],[77.50996,26.06459],[77.50527,26.06473],[77.49877,26.06801],[77.49376,26.07407],[77.48764,26.07799],[77.48406,26.08242],[77.48372,26.08578],[77.48067,26.08824],[77.47691,26.08985],[77.47052,26.08974],[77.4675,26.09717],[77.46806,26.10073],[77.4657,26.10321],[77.45677,26.10413],[77.45335,26.10764],[77.45315,26.11023],[77.45038,26.10956],[77.44391,26.11149],[77.44438,26.1126],[77.44093,26.11515],[77.44263,26.11969],[77.43114,26.12466],[77.43001,26.12309],[77.4263,26.12347],[77.42639,26.12909],[77.42374,26.13329],[77.42628,26.13898],[77.41295,26.1444],[77.40326,26.15293],[77.39811,26.15533],[77.39275,26.1543],[77.38836,26.1561],[77.38488,26.15553],[77.38322,26.15425],[77.38438,26.14977],[77.38276,26.14842],[77.36185,26.14838],[77.34575,26.1414],[77.3319,26.14625],[77.32544,26.13913],[77.3198,26.14252],[77.31388,26.14282],[77.31132,26.13993],[77.3118,26.13436],[77.30648,26.13226],[77.30192,26.13313],[77.29937,26.13012],[77.29302,26.13122],[77.27702,26.12521],[77.25912,26.10385],[77.25889,26.09719],[77.25433,26.09176],[77.25355,26.08687],[77.25119,26.08471],[77.24881,26.08584],[77.24242,26.083],[77.23885,26.07904],[77.23379,26.07857],[77.23188,26.08884],[77.22638,26.09602],[77.21359,26.09867],[77.20817,26.10351],[77.20376,26.11768],[77.199,26.12347],[77.20198,26.1285],[77.2003,26.13142],[77.20088,26.14042],[77.18907,26.1554],[77.18417,26.15908],[77.18375,26.16224],[77.17737,26.16242],[77.1758,26.16552],[77.17603,26.16856],[77.17421,26.16976],[77.18061,26.17445],[77.17458,26.17558],[77.16848,26.17455],[77.16777,26.17149],[77.16573,26.17259],[77.15817,26.16928],[77.15421,26.16465],[77.14748,26.16467],[77.14172,26.16817],[77.14057,26.17285],[77.13574,26.17428],[77.14041,26.18087]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"432","area_level":"District","area_name":"Shivpuri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.68094,25.91293],[77.65812,25.9111],[77.64446,25.90076],[77.64173,25.89526],[77.64538,25.88734],[77.63915,25.87545],[77.63935,25.8681],[77.6371,25.86578],[77.62236,25.86487],[77.61575,25.85897],[77.60969,25.85744],[77.59985,25.85998],[77.59061,25.86754],[77.5802,25.86313],[77.57872,25.8599],[77.58078,25.85187],[77.57737,25.84567],[77.58324,25.83828],[77.58077,25.83081],[77.5814,25.82356],[77.57777,25.81634],[77.56043,25.81369],[77.55835,25.81095],[77.55453,25.81197],[77.55111,25.81671],[77.55117,25.82285],[77.54403,25.82352],[77.54831,25.836],[77.54223,25.83648],[77.5346,25.83395],[77.5247,25.83887],[77.52186,25.85103],[77.52088,25.8487],[77.51598,25.84768],[77.51292,25.85014],[77.5078,25.84845],[77.50702,25.85436],[77.50425,25.85477],[77.49789,25.85122],[77.49492,25.85243],[77.49201,25.8575],[77.48205,25.85398],[77.47612,25.85782],[77.47325,25.85747],[77.47374,25.86393],[77.46779,25.8653],[77.46167,25.86985],[77.46037,25.87431],[77.45574,25.87512],[77.44357,25.89045],[77.43796,25.88879],[77.43366,25.88962],[77.42934,25.89294],[77.42342,25.89221],[77.42463,25.88777],[77.42304,25.8849],[77.41517,25.88465],[77.40761,25.88035],[77.40524,25.87569],[77.40747,25.87368],[77.41362,25.87387],[77.41745,25.86948],[77.41068,25.86211],[77.41255,25.85442],[77.40914,25.84805],[77.40875,25.81162],[77.43532,25.79348],[77.44155,25.78377],[77.44333,25.77407],[77.43617,25.77631],[77.42999,25.78045],[77.42076,25.78158],[77.41803,25.78337],[77.4111,25.7818],[77.40888,25.78323],[77.40717,25.78114],[77.40456,25.7833],[77.39922,25.78089],[77.39184,25.78126],[77.38901,25.78351],[77.38297,25.78324],[77.38071,25.78509],[77.37744,25.78391],[77.37249,25.78641],[77.33944,25.78422],[77.32947,25.79079],[77.32559,25.78583],[77.32591,25.78211],[77.33533,25.7718],[77.32511,25.7722],[77.32139,25.76551],[77.31879,25.7522],[77.32093,25.75035],[77.32157,25.73725],[77.31848,25.73125],[77.31419,25.72853],[77.3053,25.73229],[77.30008,25.73676],[77.29461,25.73121],[77.28784,25.72833],[77.28555,25.72461],[77.27669,25.71951],[77.27876,25.70607],[77.28411,25.70353],[77.2874,25.69995],[77.29249,25.70028],[77.30075,25.69772],[77.30415,25.69416],[77.30445,25.69015],[77.30867,25.68782],[77.30897,25.6843],[77.31543,25.68311],[77.31958,25.67763],[77.32437,25.67601],[77.32601,25.66782],[77.3181,25.66105],[77.30866,25.66072],[77.29317,25.66495],[77.28635,25.67322],[77.27993,25.67099],[77.27592,25.67429],[77.27149,25.6728],[77.26403,25.66479],[77.25684,25.66061],[77.25332,25.65588],[77.26005,25.64489],[77.25849,25.6414],[77.26981,25.63951],[77.27792,25.63595],[77.28382,25.62919],[77.27524,25.61855],[77.26881,25.61423],[77.265,25.60663],[77.2653,25.6033],[77.26271,25.60222],[77.25955,25.59388],[77.25728,25.58298],[77.27342,25.58354],[77.27001,25.57662],[77.27297,25.56935],[77.27065,25.56086],[77.28983,25.55296],[77.29488,25.55633],[77.30039,25.55735],[77.30703,25.55526],[77.30494,25.55025],[77.30616,25.54456],[77.29955,25.53415],[77.29544,25.53036],[77.29115,25.52973],[77.28795,25.53106],[77.28065,25.52953],[77.27679,25.52669],[77.26749,25.52612],[77.2488,25.52034],[77.23933,25.51854],[77.23566,25.51944],[77.22584,25.51441],[77.21019,25.51716],[77.17855,25.51184],[77.17469,25.5051],[77.17698,25.49784],[77.17475,25.48688],[77.17702,25.47957],[77.18252,25.47467],[77.18564,25.4661],[77.17071,25.46295],[77.16209,25.46578],[77.15072,25.466],[77.13875,25.45273],[77.13921,25.44784],[77.14445,25.444],[77.14775,25.43288],[77.15382,25.42863],[77.15298,25.42036],[77.1473,25.41759],[77.14256,25.41996],[77.14046,25.41949],[77.13657,25.41548],[77.12194,25.41478],[77.11582,25.41073],[77.10998,25.41019],[77.10865,25.40655],[77.11369,25.3911],[77.09808,25.37978],[77.08975,25.38027],[77.0863,25.38265],[77.08733,25.38384],[77.08477,25.38795],[77.07945,25.38487],[77.06717,25.3841],[77.03651,25.3881],[77.02837,25.38528],[77.01635,25.38366],[77.01696,25.35733],[77.01195,25.35117],[77.02717,25.35018],[77.04588,25.34127],[77.06118,25.34838],[77.07123,25.34921],[77.08141,25.35472],[77.08303,25.33598],[77.09215,25.33546],[77.10903,25.33063],[77.11249,25.33198],[77.11768,25.32945],[77.12508,25.33027],[77.13503,25.32067],[77.13864,25.32205],[77.14412,25.32053],[77.15374,25.31261],[77.16536,25.30823],[77.17967,25.31191],[77.1856,25.309],[77.20942,25.30631],[77.20919,25.30865],[77.21139,25.30934],[77.20828,25.31434],[77.20555,25.32648],[77.21722,25.32953],[77.21947,25.32779],[77.21988,25.32478],[77.21632,25.32305],[77.21523,25.32034],[77.2175,25.31784],[77.22337,25.31879],[77.22695,25.32526],[77.22578,25.33031],[77.23395,25.33377],[77.22923,25.33761],[77.22566,25.3347],[77.22432,25.33553],[77.22562,25.34237],[77.22815,25.34657],[77.22987,25.36089],[77.22794,25.36867],[77.23157,25.3727],[77.23394,25.3787],[77.23617,25.38039],[77.24395,25.37904],[77.24787,25.38019],[77.25094,25.38794],[77.26694,25.39565],[77.27564,25.40355],[77.27838,25.40951],[77.29141,25.42273],[77.30688,25.43026],[77.31546,25.43147],[77.31994,25.42771],[77.33124,25.42746],[77.3349,25.42542],[77.33464,25.42381],[77.34354,25.42078],[77.3442,25.41862],[77.34994,25.4157],[77.3539,25.41889],[77.36094,25.41899],[77.36693,25.41308],[77.37097,25.40849],[77.37013,25.40453],[77.36531,25.40065],[77.35766,25.39874],[77.35006,25.38075],[77.35166,25.36969],[77.35914,25.36938],[77.36105,25.36461],[77.36413,25.36358],[77.36669,25.36031],[77.36132,25.35876],[77.3616,25.35661],[77.35036,25.32982],[77.34212,25.32177],[77.35282,25.32041],[77.35708,25.32289],[77.358,25.32616],[77.36881,25.32838],[77.37171,25.32089],[77.37476,25.32009],[77.37897,25.3132],[77.38148,25.3046],[77.37962,25.29754],[77.381,25.29273],[77.37587,25.28512],[77.37395,25.27452],[77.36266,25.27901],[77.35755,25.27579],[77.35694,25.27384],[77.35417,25.2736],[77.35509,25.26348],[77.35816,25.26178],[77.36225,25.26269],[77.36611,25.25991],[77.36625,25.25766],[77.36905,25.25546],[77.37037,25.24601],[77.38242,25.24569],[77.38662,25.2427],[77.38765,25.23902],[77.39313,25.23376],[77.39442,25.22994],[77.39977,25.22609],[77.4117,25.22401],[77.41468,25.22013],[77.4185,25.19842],[77.42662,25.18772],[77.42197,25.18331],[77.42158,25.18571],[77.41629,25.18611],[77.40945,25.18294],[77.40014,25.18388],[77.40003,25.16556],[77.39468,25.16213],[77.393,25.15923],[77.39469,25.15644],[77.39616,25.13728],[77.39058,25.12339],[77.40128,25.12164],[77.40537,25.11721],[77.40662,25.11169],[77.40219,25.10929],[77.40243,25.11255],[77.39438,25.11992],[77.37558,25.11029],[77.37567,25.10464],[77.35729,25.09351],[77.35043,25.09576],[77.34083,25.09568],[77.33781,25.09485],[77.33834,25.09217],[77.32191,25.08554],[77.31484,25.08467],[77.31103,25.08177],[77.31173,25.07674],[77.30986,25.07163],[77.31749,25.0704],[77.32127,25.06582],[77.32197,25.06194],[77.32031,25.05563],[77.32236,25.05066],[77.32017,25.04758],[77.31958,25.04076],[77.32219,25.03827],[77.32899,25.03858],[77.33113,25.03665],[77.33225,25.03213],[77.33971,25.02665],[77.34009,25.01716],[77.34315,25.0106],[77.33484,25.00127],[77.33763,24.99684],[77.33671,24.99233],[77.35077,24.97561],[77.34696,24.96967],[77.34738,24.96665],[77.35485,24.95906],[77.35973,24.96195],[77.36192,24.96047],[77.36281,24.95808],[77.36079,24.95652],[77.35779,24.94613],[77.35952,24.94395],[77.36376,24.9436],[77.36787,24.94102],[77.36765,24.93529],[77.37026,24.92603],[77.37661,24.92505],[77.39561,24.93326],[77.39978,24.93806],[77.40529,24.9504],[77.41847,24.95015],[77.44824,24.93448],[77.45193,24.92845],[77.45552,24.93128],[77.45944,24.93102],[77.46113,24.93243],[77.46437,24.93069],[77.46153,24.92485],[77.46155,24.92063],[77.45789,24.91699],[77.45955,24.91337],[77.46667,24.91006],[77.4686,24.907],[77.46813,24.89792],[77.47016,24.89601],[77.4717,24.89027],[77.47687,24.88625],[77.47628,24.88237],[77.47812,24.8785],[77.47976,24.87839],[77.47857,24.87674],[77.48657,24.87588],[77.49036,24.8806],[77.49241,24.87937],[77.50482,24.87903],[77.51217,24.87212],[77.52138,24.87354],[77.52603,24.87206],[77.53139,24.87821],[77.53778,24.88068],[77.55073,24.87881],[77.55202,24.87704],[77.55771,24.87723],[77.55984,24.87179],[77.5625,24.87302],[77.56451,24.87167],[77.57892,24.88287],[77.58064,24.8876],[77.58718,24.88781],[77.58879,24.88954],[77.58743,24.89117],[77.58567,24.88967],[77.58387,24.88992],[77.58378,24.89144],[77.58024,24.89118],[77.57906,24.88894],[77.57564,24.88825],[77.5614,24.89657],[77.54924,24.89791],[77.54956,24.90164],[77.5436,24.90523],[77.54469,24.91338],[77.54143,24.91386],[77.54193,24.91538],[77.54542,24.91589],[77.54961,24.9209],[77.54891,24.92194],[77.5555,24.93439],[77.55976,24.93337],[77.56436,24.94018],[77.56816,24.94114],[77.56973,24.94474],[77.5745,24.94635],[77.5762,24.95065],[77.57542,24.95498],[77.58044,24.96084],[77.58852,24.96593],[77.59726,24.95997],[77.5981,24.95565],[77.60108,24.95239],[77.59647,24.95124],[77.59333,24.93336],[77.59467,24.92678],[77.60377,24.92576],[77.60438,24.92892],[77.60777,24.93059],[77.613,24.92698],[77.61346,24.9212],[77.61514,24.91995],[77.6175,24.92107],[77.61782,24.9175],[77.62044,24.91425],[77.6191,24.90978],[77.62632,24.90808],[77.6292,24.90319],[77.63274,24.90555],[77.63532,24.9053],[77.63778,24.89959],[77.64209,24.90003],[77.64337,24.89734],[77.64715,24.89526],[77.64852,24.88991],[77.65446,24.89117],[77.65373,24.88718],[77.65492,24.88506],[77.66064,24.88358],[77.66281,24.8803],[77.66927,24.87837],[77.67065,24.87074],[77.67607,24.86329],[77.67843,24.86538],[77.68257,24.86516],[77.68663,24.85854],[77.68869,24.8582],[77.68941,24.86198],[77.69101,24.86069],[77.69047,24.85784],[77.69524,24.85967],[77.69741,24.85649],[77.70686,24.85173],[77.70731,24.85358],[77.70919,24.85199],[77.71122,24.8537],[77.71131,24.85571],[77.71438,24.85786],[77.71553,24.86321],[77.72116,24.86717],[77.7233,24.86728],[77.72699,24.86388],[77.72829,24.85995],[77.72592,24.85861],[77.72688,24.85735],[77.73901,24.85721],[77.74598,24.86325],[77.75146,24.87119],[77.75233,24.89096],[77.7553,24.89854],[77.76498,24.8969],[77.77448,24.90222],[77.77424,24.91104],[77.78515,24.92966],[77.7874,24.93083],[77.78842,24.93591],[77.79066,24.93637],[77.79455,24.93389],[77.80128,24.9341],[77.8058,24.94495],[77.80522,24.95064],[77.80229,24.95101],[77.80217,24.95321],[77.81468,24.95883],[77.81301,24.96958],[77.81984,24.97002],[77.8268,24.98083],[77.828,24.99367],[77.83136,25.00094],[77.83666,24.9998],[77.84219,25.00158],[77.84874,25.00773],[77.85117,25.00691],[77.85181,25.00498],[77.84802,24.99949],[77.84795,24.99659],[77.85295,24.99448],[77.8561,24.99879],[77.87378,25.00029],[77.87917,25.00314],[77.87941,25.00668],[77.88793,25.00727],[77.89404,25.00264],[77.90091,25.00265],[77.90491,25.00041],[77.91175,24.98136],[77.91834,24.98326],[77.92451,24.98273],[77.9255,24.98597],[77.93887,24.98054],[77.95031,24.98673],[77.96056,24.98337],[77.9611,24.96409],[77.9708,24.96192],[77.98143,24.96226],[77.98958,24.95923],[78.00082,24.95979],[78.0178,24.95593],[78.01785,24.95083],[78.01457,24.94455],[78.00223,24.93662],[77.9954,24.92701],[77.9888,24.92159],[77.98359,24.91124],[77.98177,24.90054],[77.98723,24.89722],[77.99063,24.8929],[77.98936,24.88576],[77.97927,24.88211],[77.9721,24.88457],[77.96946,24.87227],[77.9771,24.84808],[77.98166,24.85246],[77.98467,24.8518],[77.98618,24.85546],[77.99151,24.85565],[77.994,24.85284],[78.00149,24.85186],[78.00952,24.83821],[78.01724,24.8351],[78.02802,24.83654],[78.03718,24.83819],[78.03805,24.84077],[78.04163,24.84223],[78.04663,24.85051],[78.04476,24.85723],[78.04797,24.85887],[78.0642,24.85344],[78.06916,24.85025],[78.07716,24.84927],[78.07876,24.84587],[78.09012,24.84791],[78.0949,24.84697],[78.11001,24.83627],[78.12048,24.83587],[78.12338,24.83884],[78.13935,24.84116],[78.1676,24.84017],[78.17452,24.8455],[78.16897,24.86262],[78.16906,24.86934],[78.17211,24.87728],[78.19495,24.88943],[78.21059,24.89481],[78.22381,24.91531],[78.2494,24.92987],[78.25623,24.9368],[78.26595,24.94102],[78.27093,24.94877],[78.27915,24.95607],[78.28666,24.95814],[78.29459,24.96306],[78.30703,24.97747],[78.31294,24.98697],[78.32018,24.99185],[78.33274,24.99437],[78.34536,25.01208],[78.34718,25.0245],[78.34018,25.04028],[78.33545,25.069],[78.32906,25.0657],[78.32368,25.05883],[78.32011,25.06127],[78.31371,25.05643],[78.30562,25.05283],[78.30201,25.05283],[78.29564,25.0559],[78.28997,25.06158],[78.2887,25.0638],[78.29068,25.06656],[78.28949,25.07434],[78.27846,25.08357],[78.27409,25.08522],[78.27201,25.08349],[78.27004,25.08841],[78.2752,25.09139],[78.27548,25.09534],[78.28064,25.09998],[78.29125,25.10152],[78.29442,25.10368],[78.30387,25.10047],[78.30457,25.09387],[78.30972,25.08888],[78.32015,25.08936],[78.3282,25.09469],[78.33097,25.09378],[78.33384,25.08625],[78.3375,25.08533],[78.36084,25.09573],[78.37389,25.09867],[78.37276,25.10857],[78.36806,25.11082],[78.36783,25.11754],[78.3647,25.11942],[78.36762,25.12978],[78.37083,25.13333],[78.37977,25.13828],[78.37894,25.16155],[78.37443,25.1662],[78.36923,25.16574],[78.36465,25.17039],[78.3552,25.17365],[78.3509,25.1729],[78.34274,25.16694],[78.3388,25.16059],[78.33409,25.14755],[78.3493,25.14053],[78.34955,25.1391],[78.34674,25.13434],[78.34721,25.13139],[78.34332,25.12984],[78.33717,25.12416],[78.33282,25.11727],[78.3271,25.11237],[78.30963,25.1229],[78.30602,25.12669],[78.29869,25.12599],[78.2925,25.12791],[78.28841,25.13139],[78.29022,25.13582],[78.29242,25.13573],[78.28979,25.1418],[78.29387,25.14614],[78.29231,25.15027],[78.30143,25.16605],[78.30138,25.16903],[78.29868,25.17185],[78.30839,25.17893],[78.31039,25.18496],[78.31017,25.18843],[78.30657,25.19196],[78.30364,25.20132],[78.30047,25.20187],[78.30492,25.20243],[78.30793,25.20973],[78.31134,25.21275],[78.32169,25.21036],[78.32367,25.21585],[78.32689,25.21626],[78.33104,25.22057],[78.33879,25.22337],[78.34187,25.22115],[78.3478,25.22237],[78.36015,25.21287],[78.37666,25.20903],[78.38133,25.20331],[78.39132,25.20616],[78.39234,25.2031],[78.39552,25.20328],[78.39829,25.20538],[78.3993,25.20862],[78.41095,25.21267],[78.4049,25.21488],[78.4025,25.2176],[78.39796,25.21822],[78.39672,25.21691],[78.38206,25.22259],[78.37714,25.22784],[78.37852,25.23869],[78.37488,25.23924],[78.37296,25.23719],[78.36739,25.23685],[78.3598,25.24219],[78.37251,25.25991],[78.36877,25.26138],[78.36637,25.26673],[78.36055,25.27272],[78.35709,25.27314],[78.35011,25.27733],[78.35459,25.29225],[78.33397,25.29241],[78.32991,25.29649],[78.3197,25.29883],[78.3166,25.30184],[78.31173,25.3033],[78.31126,25.30519],[78.32274,25.31633],[78.32489,25.31595],[78.32935,25.3196],[78.33055,25.319],[78.3337,25.3226],[78.3387,25.32406],[78.34379,25.32846],[78.33755,25.33025],[78.3373,25.33639],[78.32806,25.35254],[78.31909,25.35496],[78.31605,25.35755],[78.30053,25.36037],[78.30794,25.3812],[78.31685,25.37867],[78.32237,25.38741],[78.33138,25.39075],[78.34053,25.39952],[78.34091,25.40283],[78.33883,25.40671],[78.34112,25.41637],[78.33539,25.41084],[78.31997,25.41015],[78.3112,25.41443],[78.30726,25.41808],[78.31116,25.42374],[78.31769,25.42647],[78.31993,25.43275],[78.32596,25.43678],[78.32648,25.44001],[78.33442,25.43692],[78.3389,25.43102],[78.34279,25.43162],[78.34698,25.43528],[78.34991,25.44096],[78.34902,25.44281],[78.35437,25.45179],[78.35954,25.45198],[78.35787,25.45368],[78.36209,25.46295],[78.36776,25.45792],[78.37311,25.46178],[78.38309,25.45823],[78.39722,25.45628],[78.40031,25.46355],[78.38984,25.47979],[78.39106,25.49076],[78.39535,25.49257],[78.39831,25.49008],[78.39674,25.49456],[78.38874,25.50448],[78.39046,25.50651],[78.38632,25.51343],[78.38734,25.51688],[78.39958,25.52803],[78.40822,25.52774],[78.41923,25.52999],[78.42107,25.53992],[78.42635,25.54279],[78.42992,25.55237],[78.4436,25.5632],[78.44876,25.56359],[78.44821,25.5661],[78.4507,25.56866],[78.44945,25.57322],[78.45836,25.57514],[78.45925,25.57121],[78.46506,25.56465],[78.4678,25.56972],[78.46698,25.58231],[78.4686,25.58441],[78.46063,25.5861],[78.45499,25.59215],[78.44124,25.59718],[78.43752,25.58843],[78.42457,25.58231],[78.41319,25.56662],[78.41251,25.56324],[78.40204,25.56694],[78.38973,25.57656],[78.39546,25.57883],[78.40279,25.58803],[78.40792,25.5903],[78.41087,25.59491],[78.40989,25.60048],[78.39935,25.60271],[78.39398,25.60664],[78.39008,25.60418],[78.38838,25.60872],[78.38458,25.61276],[78.38553,25.61494],[78.38197,25.62253],[78.38083,25.63977],[78.37695,25.6486],[78.37785,25.65601],[78.37627,25.6587],[78.36624,25.66471],[78.36074,25.66481],[78.35763,25.66859],[78.35378,25.66876],[78.35406,25.67041],[78.35218,25.66968],[78.35294,25.66829],[78.35043,25.66169],[78.34318,25.65841],[78.33718,25.6656],[78.33525,25.6641],[78.32822,25.66839],[78.32385,25.66832],[78.32255,25.67241],[78.32057,25.67251],[78.31556,25.67705],[78.30919,25.68475],[78.30916,25.68681],[78.312,25.6877],[78.31224,25.69352],[78.30864,25.7079],[78.30613,25.70868],[78.3054,25.70677],[78.30184,25.70787],[78.3006,25.70389],[78.29742,25.70067],[78.29239,25.69947],[78.28463,25.70078],[78.26652,25.71231],[78.26449,25.72101],[78.24868,25.72197],[78.24602,25.719],[78.24559,25.71199],[78.24662,25.70479],[78.24868,25.70237],[78.25137,25.69266],[78.24986,25.68822],[78.24616,25.6924],[78.24153,25.68923],[78.23332,25.69261],[78.22753,25.69164],[78.21661,25.6941],[78.21438,25.70282],[78.22468,25.71331],[78.22509,25.71597],[78.22298,25.72023],[78.22841,25.72818],[78.23298,25.72832],[78.23548,25.73182],[78.24826,25.73544],[78.25286,25.74046],[78.26655,25.74955],[78.26797,25.75247],[78.27278,25.75156],[78.27471,25.75289],[78.27441,25.75105],[78.27653,25.74947],[78.28962,25.7528],[78.29451,25.75925],[78.29445,25.76209],[78.28523,25.76835],[78.28677,25.77044],[78.29281,25.77273],[78.2961,25.77664],[78.29605,25.78594],[78.27891,25.78208],[78.26259,25.78289],[78.2446,25.76048],[78.23991,25.75768],[78.23428,25.76096],[78.21534,25.73809],[78.20889,25.73677],[78.1944,25.73928],[78.17617,25.74003],[78.16496,25.72956],[78.16035,25.71984],[78.15725,25.71906],[78.14969,25.72071],[78.14831,25.72664],[78.14341,25.72521],[78.14222,25.72281],[78.14192,25.72553],[78.13687,25.72368],[78.13363,25.72615],[78.12645,25.72229],[78.12769,25.72125],[78.12535,25.71984],[78.12056,25.72057],[78.11617,25.7185],[78.11519,25.72117],[78.11146,25.71963],[78.10535,25.7205],[78.10182,25.71685],[78.09815,25.71608],[78.09665,25.71711],[78.09284,25.71614],[78.08933,25.71947],[78.08571,25.72016],[78.07438,25.71894],[78.06237,25.71056],[78.05623,25.71209],[78.05373,25.70862],[78.03802,25.71504],[78.03043,25.71618],[78.02648,25.71989],[78.02306,25.71653],[78.01883,25.72405],[78.01956,25.72512],[78.01109,25.72695],[78.01224,25.73191],[77.99731,25.73908],[78.00057,25.75607],[78.00186,25.7558],[78.00218,25.75746],[78.00099,25.7657],[77.97888,25.76278],[77.9705,25.75645],[77.97109,25.7533],[77.96823,25.75216],[77.96502,25.75306],[77.96372,25.75004],[77.96043,25.74884],[77.95259,25.74957],[77.94435,25.74731],[77.93601,25.75103],[77.91601,25.75416],[77.91368,25.75204],[77.9105,25.74365],[77.89452,25.74227],[77.8832,25.73532],[77.88092,25.73734],[77.87434,25.7384],[77.86861,25.74367],[77.87025,25.74512],[77.87349,25.74239],[77.87506,25.74771],[77.87419,25.75163],[77.8765,25.75613],[77.87206,25.75632],[77.87094,25.75849],[77.86912,25.75352],[77.86822,25.75807],[77.86607,25.75716],[77.86571,25.75924],[77.86418,25.75905],[77.87003,25.76587],[77.8702,25.76271],[77.87465,25.76256],[77.87292,25.76583],[77.87547,25.76959],[77.87399,25.77208],[77.87662,25.77971],[77.87303,25.77663],[77.87215,25.78091],[77.86691,25.78174],[77.8768,25.78849],[77.87007,25.79544],[77.86921,25.80408],[77.86634,25.80768],[77.84681,25.81392],[77.83571,25.8117],[77.82587,25.81241],[77.81186,25.81748],[77.80855,25.82128],[77.80017,25.82086],[77.79632,25.82507],[77.79534,25.83681],[77.79071,25.8414],[77.78546,25.85428],[77.78312,25.85625],[77.77437,25.85701],[77.76839,25.84791],[77.76401,25.84642],[77.76048,25.85422],[77.76008,25.86152],[77.74738,25.86109],[77.74537,25.86602],[77.74813,25.87427],[77.74852,25.8787],[77.74725,25.87996],[77.74772,25.88132],[77.75016,25.88131],[77.75005,25.88332],[77.74227,25.88281],[77.73719,25.8784],[77.73069,25.87714],[77.71851,25.87974],[77.71453,25.8761],[77.70331,25.87855],[77.6987,25.88375],[77.69876,25.89744],[77.69704,25.90014],[77.68594,25.91207],[77.68094,25.91293]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"433","area_level":"District","area_name":"Sidhi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.17979,24.61629],[82.17178,24.61625],[82.18429,24.61022],[82.1859,24.6058],[82.18304,24.60258],[82.15866,24.59693],[82.14021,24.59726],[82.14069,24.59524],[82.13874,24.59428],[82.12247,24.58962],[82.11728,24.59815],[82.09043,24.59503],[82.08111,24.60011],[82.07789,24.59974],[82.07655,24.60359],[82.0709,24.60255],[82.06813,24.59961],[82.06924,24.58558],[82.0691,24.58249],[82.0667,24.5824],[82.06734,24.57609],[82.03366,24.56892],[82.02479,24.56855],[82.01791,24.57036],[81.99155,24.55337],[81.98225,24.55247],[81.96244,24.55412],[81.95338,24.54556],[81.95145,24.54604],[81.95102,24.56357],[81.9493,24.57178],[81.95101,24.57515],[81.94643,24.57235],[81.94681,24.57092],[81.94043,24.56904],[81.93535,24.57051],[81.9197,24.56968],[81.91528,24.56566],[81.91665,24.56545],[81.91619,24.55871],[81.8929,24.55384],[81.89572,24.5441],[81.87576,24.54005],[81.86362,24.53574],[81.86628,24.52401],[81.85831,24.52298],[81.83951,24.51673],[81.83729,24.52031],[81.83451,24.51636],[81.82746,24.51602],[81.82482,24.51281],[81.81743,24.50994],[81.81592,24.51279],[81.81204,24.51502],[81.80485,24.51319],[81.79881,24.51443],[81.81897,24.52864],[81.81874,24.53325],[81.81325,24.53437],[81.79597,24.52925],[81.79199,24.53014],[81.78844,24.52341],[81.78279,24.52272],[81.77302,24.51794],[81.76377,24.51695],[81.76472,24.50881],[81.76074,24.50044],[81.75633,24.49885],[81.75306,24.50072],[81.75241,24.49788],[81.7489,24.49551],[81.74949,24.49284],[81.74827,24.49178],[81.74399,24.4914],[81.74174,24.49492],[81.73659,24.51084],[81.72827,24.51096],[81.72676,24.50838],[81.71899,24.50615],[81.71655,24.50742],[81.71308,24.50281],[81.70768,24.50123],[81.704,24.50196],[81.69744,24.49829],[81.69559,24.49988],[81.69515,24.49809],[81.69203,24.49756],[81.68869,24.49429],[81.6819,24.49293],[81.68155,24.49066],[81.67901,24.49076],[81.66774,24.48262],[81.62948,24.4654],[81.60116,24.4554],[81.59262,24.45293],[81.59032,24.45404],[81.58935,24.45225],[81.58793,24.45302],[81.58289,24.45006],[81.57728,24.44966],[81.57591,24.44782],[81.55293,24.44214],[81.55163,24.44054],[81.54867,24.44225],[81.54503,24.43939],[81.53608,24.43722],[81.53171,24.43388],[81.50465,24.42396],[81.4614,24.39531],[81.44972,24.38929],[81.4248,24.3802],[81.42138,24.38051],[81.41882,24.37723],[81.41283,24.37439],[81.39598,24.36785],[81.39175,24.36804],[81.38375,24.3623],[81.3731,24.36014],[81.3573,24.35189],[81.34934,24.34939],[81.33815,24.3391],[81.33232,24.34037],[81.31685,24.33615],[81.31684,24.33389],[81.31412,24.33096],[81.31444,24.32437],[81.30523,24.32263],[81.31068,24.31804],[81.30843,24.3116],[81.32529,24.29057],[81.34593,24.29209],[81.34513,24.28969],[81.34769,24.2851],[81.34488,24.27866],[81.34904,24.27414],[81.34111,24.2702],[81.34412,24.26085],[81.35004,24.25306],[81.36874,24.26224],[81.38019,24.26367],[81.38174,24.26636],[81.38869,24.26602],[81.38882,24.2626],[81.39857,24.26453],[81.42843,24.25906],[81.43942,24.25801],[81.44581,24.25927],[81.4533,24.26253],[81.45759,24.26716],[81.45276,24.27138],[81.45174,24.27468],[81.45246,24.2786],[81.45554,24.28208],[81.46243,24.27687],[81.46743,24.26872],[81.47047,24.25657],[81.48002,24.24198],[81.48207,24.23034],[81.47946,24.22106],[81.48261,24.21663],[81.48119,24.20558],[81.4835,24.19774],[81.48066,24.19249],[81.47395,24.19012],[81.47133,24.18745],[81.46982,24.17438],[81.4724,24.16995],[81.47851,24.16569],[81.48249,24.16453],[81.497,24.16606],[81.49977,24.16335],[81.50081,24.15789],[81.4991,24.15488],[81.48631,24.1518],[81.48531,24.14594],[81.48663,24.1428],[81.49632,24.13468],[81.49761,24.12481],[81.50919,24.1136],[81.50981,24.10859],[81.50709,24.09137],[81.50974,24.08164],[81.51785,24.07603],[81.52185,24.07559],[81.52574,24.07638],[81.53522,24.08409],[81.54377,24.08477],[81.55402,24.08014],[81.55879,24.07406],[81.55725,24.07033],[81.55331,24.06772],[81.54131,24.06866],[81.53529,24.06664],[81.52709,24.05032],[81.51551,24.04116],[81.50765,24.03874],[81.49646,24.04129],[81.48448,24.04064],[81.48168,24.03675],[81.48502,24.03233],[81.50784,24.02499],[81.51374,24.02012],[81.5142,24.01627],[81.50669,24.00928],[81.50317,24.00047],[81.50566,23.98768],[81.50877,23.98176],[81.51879,23.97897],[81.53214,23.98272],[81.53923,23.98147],[81.54285,23.97812],[81.54671,23.96825],[81.55422,23.96394],[81.55764,23.95777],[81.55612,23.95333],[81.54536,23.9515],[81.53983,23.94194],[81.54151,23.9207],[81.54485,23.91259],[81.55263,23.90911],[81.56257,23.91436],[81.56938,23.91249],[81.58756,23.89864],[81.59152,23.89282],[81.60225,23.88909],[81.6044,23.88502],[81.61157,23.89229],[81.61047,23.89877],[81.60836,23.90149],[81.60981,23.90393],[81.62076,23.90673],[81.63218,23.90582],[81.63645,23.90759],[81.63847,23.91083],[81.65778,23.91634],[81.66238,23.92427],[81.66791,23.92525],[81.67172,23.91955],[81.67231,23.91339],[81.68256,23.9114],[81.68754,23.90648],[81.69044,23.88476],[81.70265,23.88619],[81.70731,23.88236],[81.70384,23.87593],[81.7077,23.87419],[81.70974,23.87125],[81.70728,23.86505],[81.70749,23.86113],[81.7202,23.86221],[81.73198,23.85668],[81.72969,23.84894],[81.72504,23.84463],[81.72547,23.83982],[81.72846,23.83902],[81.73223,23.84086],[81.73736,23.83918],[81.74285,23.83377],[81.75451,23.83075],[81.76212,23.82361],[81.77316,23.8164],[81.79112,23.80935],[81.79313,23.80991],[81.7959,23.81489],[81.80839,23.81349],[81.81558,23.80636],[81.82343,23.80791],[81.82738,23.8106],[81.82751,23.81381],[81.82916,23.81503],[81.83688,23.8162],[81.83653,23.81998],[81.8382,23.8211],[81.86307,23.82446],[81.86628,23.82869],[81.86771,23.83414],[81.88785,23.83542],[81.89223,23.84052],[81.89903,23.84086],[81.902,23.84486],[81.90609,23.84606],[81.90629,23.84992],[81.90866,23.85108],[81.91044,23.85722],[81.91576,23.85893],[81.92147,23.87091],[81.93131,23.87055],[81.93965,23.86775],[81.94046,23.86559],[81.93823,23.86409],[81.93848,23.86235],[81.94692,23.86189],[81.94608,23.85877],[81.94993,23.85665],[81.95417,23.85712],[81.95556,23.85341],[81.9578,23.85228],[81.96027,23.85553],[81.96359,23.85361],[81.9654,23.85591],[81.97033,23.85723],[81.97721,23.85624],[81.98171,23.86089],[81.98599,23.86192],[81.98907,23.86043],[82.00093,23.86218],[82.00881,23.86108],[82.02047,23.84907],[82.03475,23.84641],[82.04418,23.84165],[82.04405,23.83883],[82.04127,23.83688],[82.04087,23.83292],[82.03876,23.83313],[82.03933,23.82621],[82.04924,23.82422],[82.05244,23.82165],[82.05329,23.81844],[82.06173,23.81916],[82.07233,23.81704],[82.07764,23.81864],[82.08327,23.81542],[82.09418,23.81668],[82.09544,23.81553],[82.10665,23.81868],[82.11659,23.81701],[82.12337,23.82205],[82.12929,23.81903],[82.14172,23.81689],[82.14206,23.81555],[82.16383,23.82068],[82.17146,23.81824],[82.17856,23.82161],[82.18085,23.83628],[82.18622,23.83867],[82.18887,23.84259],[82.19714,23.84165],[82.20128,23.84864],[82.20963,23.85081],[82.21129,23.85583],[82.21557,23.85964],[82.21666,23.86657],[82.22079,23.87332],[82.22595,23.87767],[82.23521,23.88191],[82.24051,23.88938],[82.2387,23.89389],[82.22673,23.89536],[82.22289,23.90039],[82.22464,23.90503],[82.23402,23.91046],[82.23389,23.91791],[82.22622,23.92312],[82.21751,23.92323],[82.2128,23.92584],[82.21055,23.93064],[82.21118,23.94357],[82.20326,23.94655],[82.20129,23.94971],[82.20225,23.95225],[82.21217,23.95933],[82.21404,23.96297],[82.21387,23.97468],[82.2159,23.9794],[82.21474,23.9875],[82.20487,23.98712],[82.19834,23.98021],[82.18813,23.98198],[82.17981,23.98615],[82.17347,23.99849],[82.16872,24.00068],[82.16541,23.99333],[82.1665,23.98386],[82.16538,23.98004],[82.15877,23.9741],[82.15343,23.97381],[82.14655,23.97719],[82.12821,23.99381],[82.12196,23.99618],[82.10777,23.99504],[82.09962,23.9888],[82.09505,23.98772],[82.09227,23.98873],[82.08969,23.99198],[82.08939,23.99994],[82.09077,24.0005],[82.08924,24.00363],[82.0886,24.01388],[82.08553,24.01817],[82.08063,24.01714],[82.07651,24.00372],[82.05004,24.00273],[82.04054,24.0081],[82.02407,24.02789],[82.01867,24.03069],[82.01667,24.03021],[82.01399,24.02376],[82.00414,24.01154],[82.001,24.01242],[81.99329,24.02009],[81.98045,24.01242],[81.96898,24.01324],[81.95742,24.02333],[81.96333,24.04203],[81.9543,24.0521],[81.95305,24.06253],[81.93971,24.07126],[81.92832,24.07434],[81.90875,24.0831],[81.90671,24.08842],[81.90907,24.09859],[81.90705,24.11408],[81.90385,24.11631],[81.88244,24.12062],[81.87887,24.12402],[81.87788,24.12764],[81.87875,24.13141],[81.8868,24.13982],[81.89166,24.14803],[81.89299,24.16235],[81.89806,24.1657],[81.89542,24.18042],[81.89658,24.18516],[81.8993,24.18804],[81.90901,24.19133],[81.9118,24.19401],[81.91916,24.21509],[81.93065,24.21378],[81.93583,24.21749],[81.93942,24.23687],[81.94359,24.23733],[81.95017,24.23063],[81.95575,24.2329],[81.95665,24.2374],[81.95276,24.24866],[81.95526,24.25506],[81.96153,24.25469],[81.96649,24.24006],[81.97383,24.23787],[81.97881,24.23169],[81.98546,24.23149],[82.00088,24.23527],[82.01354,24.2503],[82.02039,24.2614],[82.03217,24.26903],[82.04129,24.2811],[82.04229,24.28832],[82.03237,24.29939],[82.0342,24.30416],[82.05549,24.30887],[82.0599,24.30747],[82.06671,24.30099],[82.09113,24.30927],[82.09945,24.31521],[82.11317,24.31836],[82.11706,24.32124],[82.11643,24.3268],[82.10837,24.33426],[82.1069,24.33799],[82.11129,24.35162],[82.11644,24.35843],[82.13122,24.36131],[82.13878,24.35642],[82.15295,24.36054],[82.16026,24.35644],[82.16356,24.35638],[82.16574,24.35807],[82.16559,24.36104],[82.15691,24.37837],[82.15005,24.38554],[82.15055,24.38806],[82.15639,24.38912],[82.16802,24.38283],[82.18145,24.38183],[82.19541,24.38468],[82.20252,24.39057],[82.20558,24.39992],[82.2013,24.40416],[82.19788,24.41135],[82.18977,24.41667],[82.18812,24.42092],[82.18926,24.42357],[82.17202,24.4304],[82.1709,24.43338],[82.17354,24.43481],[82.18399,24.43374],[82.18893,24.43537],[82.19228,24.43388],[82.19898,24.43527],[82.20213,24.43985],[82.20848,24.44193],[82.21806,24.44164],[82.21783,24.43744],[82.23334,24.43969],[82.23769,24.44726],[82.23736,24.45617],[82.23943,24.46781],[82.24163,24.46797],[82.2482,24.46325],[82.25592,24.46597],[82.25913,24.47811],[82.26293,24.48068],[82.27009,24.47892],[82.27688,24.48042],[82.27789,24.48649],[82.28382,24.49306],[82.28597,24.49904],[82.28958,24.50185],[82.30258,24.50243],[82.31428,24.49676],[82.32182,24.49937],[82.32836,24.50691],[82.33835,24.50956],[82.34398,24.5189],[82.35911,24.53467],[82.36069,24.53873],[82.36848,24.5417],[82.37214,24.54566],[82.37463,24.55309],[82.37936,24.55999],[82.36757,24.55856],[82.35777,24.56715],[82.34568,24.56809],[82.34335,24.57758],[82.34014,24.58149],[82.33793,24.58271],[82.32607,24.58132],[82.3198,24.59093],[82.31709,24.58709],[82.31263,24.58682],[82.30669,24.59489],[82.305,24.59141],[82.30087,24.59353],[82.28846,24.59065],[82.28479,24.59373],[82.2821,24.59064],[82.27744,24.58964],[82.26866,24.59356],[82.25797,24.60329],[82.25214,24.61084],[82.24955,24.60273],[82.24153,24.60539],[82.23292,24.60572],[82.23225,24.61029],[82.21635,24.61181],[82.21136,24.6141],[82.19461,24.61263],[82.19111,24.61508],[82.17979,24.61629]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"434","area_level":"District","area_name":"Tikamgarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.01394,25.27374],[79.00522,25.27216],[78.99437,25.27316],[78.99493,25.26708],[78.98683,25.26414],[78.98522,25.25916],[78.97995,25.25452],[78.97484,25.24049],[78.97472,25.23729],[78.97608,25.23666],[78.98062,25.23994],[78.9846,25.23958],[78.98289,25.23425],[78.99466,25.23222],[79.00119,25.2337],[78.99923,25.23151],[79.00251,25.22795],[79.00103,25.22105],[79.00742,25.212],[79.00614,25.21224],[79.00537,25.20708],[79.00587,25.19505],[78.99277,25.19686],[78.98074,25.20532],[78.9806,25.21146],[78.97594,25.21198],[78.97029,25.21644],[78.96498,25.21718],[78.96308,25.21108],[78.95747,25.21746],[78.95386,25.21896],[78.9514,25.21277],[78.94656,25.21429],[78.93529,25.2107],[78.93433,25.21189],[78.92079,25.20034],[78.90754,25.18479],[78.91189,25.18084],[78.90965,25.17787],[78.90305,25.17492],[78.90303,25.17043],[78.89806,25.16862],[78.89028,25.16066],[78.88689,25.16022],[78.88099,25.14781],[78.86744,25.12866],[78.86518,25.12272],[78.85429,25.11259],[78.845,25.09799],[78.84092,25.09843],[78.8281,25.09345],[78.81292,25.08409],[78.80592,25.08425],[78.79712,25.07928],[78.79545,25.08068],[78.79313,25.07909],[78.79446,25.08171],[78.79086,25.08072],[78.79261,25.08371],[78.78978,25.08321],[78.7932,25.08572],[78.7935,25.08763],[78.79042,25.08605],[78.79211,25.08874],[78.78969,25.08936],[78.78745,25.0859],[78.78576,25.08698],[78.78376,25.08455],[78.78155,25.08805],[78.77843,25.08562],[78.78049,25.08831],[78.77769,25.0901],[78.77709,25.09476],[78.77572,25.09285],[78.77364,25.09371],[78.77545,25.09177],[78.77303,25.09247],[78.77482,25.09072],[78.77234,25.0899],[78.77141,25.08689],[78.76843,25.08724],[78.76521,25.08379],[78.76283,25.08446],[78.76153,25.08233],[78.75917,25.08279],[78.75766,25.08106],[78.74637,25.08085],[78.73716,25.09099],[78.72903,25.09607],[78.71933,25.09367],[78.71312,25.08524],[78.70407,25.07983],[78.69989,25.0777],[78.69172,25.07738],[78.68668,25.07374],[78.6753,25.07651],[78.66898,25.07389],[78.66833,25.07039],[78.65367,25.06765],[78.6461,25.07213],[78.63945,25.07121],[78.65262,25.05059],[78.65192,25.03916],[78.65336,25.03145],[78.64572,25.0186],[78.64706,25.00612],[78.64471,25.00332],[78.64401,24.98429],[78.64143,24.98197],[78.6414,24.97778],[78.63893,24.97578],[78.64003,24.97208],[78.633,24.96712],[78.63394,24.96339],[78.63164,24.96162],[78.63173,24.95769],[78.63613,24.95927],[78.65236,24.94784],[78.65284,24.9438],[78.64988,24.94102],[78.65186,24.93838],[78.65577,24.94037],[78.66339,24.93844],[78.66724,24.91379],[78.67656,24.89863],[78.68365,24.89499],[78.69668,24.89318],[78.70503,24.88725],[78.71089,24.87966],[78.72217,24.88166],[78.72913,24.87895],[78.74676,24.86522],[78.7539,24.86883],[78.76219,24.86002],[78.77004,24.85902],[78.77477,24.84975],[78.77357,24.84094],[78.77593,24.83072],[78.78342,24.81612],[78.78984,24.81098],[78.78703,24.80131],[78.77429,24.79462],[78.7704,24.7884],[78.7728,24.78257],[78.77035,24.7747],[78.77135,24.76883],[78.77,24.75808],[78.7766,24.75183],[78.7723,24.74311],[78.77329,24.73117],[78.77685,24.71364],[78.78115,24.70893],[78.781,24.70608],[78.77795,24.69948],[78.77354,24.69662],[78.77098,24.69141],[78.76364,24.69048],[78.76522,24.68087],[78.76147,24.6709],[78.75879,24.66904],[78.75474,24.66915],[78.75051,24.66419],[78.74677,24.66268],[78.74719,24.65651],[78.74393,24.65406],[78.7454,24.6516],[78.74863,24.65106],[78.74919,24.64817],[78.75064,24.64856],[78.74948,24.64676],[78.75196,24.64241],[78.75001,24.64185],[78.7527,24.63401],[78.75208,24.62192],[78.75482,24.61992],[78.75109,24.61721],[78.75457,24.60382],[78.75203,24.60018],[78.76933,24.59417],[78.77657,24.58874],[78.78379,24.58856],[78.799,24.59437],[78.8032,24.59929],[78.80322,24.60353],[78.81145,24.60393],[78.81244,24.6021],[78.81679,24.60099],[78.82383,24.60244],[78.82637,24.6046],[78.83461,24.60456],[78.83776,24.6158],[78.8433,24.62329],[78.84873,24.62213],[78.85253,24.6247],[78.85555,24.61785],[78.85977,24.61764],[78.86623,24.62743],[78.86861,24.6368],[78.86802,24.63999],[78.87447,24.64178],[78.87705,24.64081],[78.87721,24.64221],[78.88311,24.6414],[78.88231,24.64041],[78.88636,24.63737],[78.88555,24.63495],[78.88999,24.63114],[78.88941,24.62962],[78.89218,24.62929],[78.8962,24.62572],[78.89479,24.6213],[78.89701,24.61479],[78.89915,24.61425],[78.90061,24.60722],[78.90207,24.60779],[78.90206,24.60616],[78.91003,24.60297],[78.91114,24.60012],[78.91257,24.60017],[78.91262,24.59074],[78.92015,24.57481],[78.92343,24.5735],[78.92493,24.57499],[78.92921,24.56573],[78.9338,24.56396],[78.93502,24.56076],[78.94645,24.55715],[78.94834,24.55425],[78.94711,24.55071],[78.95321,24.5469],[78.94815,24.54414],[78.94368,24.53451],[78.94648,24.52585],[78.95132,24.51878],[78.94804,24.51515],[78.94726,24.5024],[78.95705,24.49876],[78.96561,24.49792],[78.97152,24.49424],[78.97044,24.48922],[78.96347,24.48353],[78.94312,24.47901],[78.93622,24.47942],[78.92722,24.48207],[78.92792,24.48433],[78.93714,24.49105],[78.9318,24.49138],[78.92719,24.49452],[78.92465,24.49983],[78.91999,24.49904],[78.91634,24.48233],[78.91221,24.47344],[78.9127,24.46558],[78.91485,24.46229],[78.91421,24.45962],[78.91512,24.4582],[78.92827,24.46019],[78.93992,24.45345],[78.94178,24.45107],[78.94272,24.44408],[78.94748,24.43662],[78.9548,24.43703],[78.96096,24.43954],[78.96522,24.43873],[78.98576,24.44168],[78.98632,24.4536],[78.99208,24.46321],[78.99497,24.4738],[79.00953,24.49502],[79.00675,24.50042],[79.00723,24.50558],[79.01425,24.51252],[79.01477,24.52919],[79.02319,24.54628],[79.02893,24.54726],[79.04199,24.55574],[79.04575,24.56542],[79.05492,24.57248],[79.06206,24.58617],[79.07072,24.59432],[79.07063,24.59858],[79.05954,24.61307],[79.06361,24.62185],[79.0718,24.62601],[79.07937,24.62673],[79.08761,24.63256],[79.09102,24.63328],[79.10298,24.62666],[79.11768,24.62792],[79.14243,24.62543],[79.15677,24.61671],[79.17655,24.61003],[79.19539,24.6129],[79.20708,24.62223],[79.20658,24.6428],[79.21398,24.6589],[79.2208,24.66465],[79.22753,24.66494],[79.24143,24.65788],[79.24504,24.65781],[79.25801,24.66368],[79.27519,24.66513],[79.29028,24.67265],[79.3,24.68174],[79.30319,24.68632],[79.30459,24.6936],[79.30263,24.71091],[79.31988,24.7372],[79.31672,24.74402],[79.32016,24.75145],[79.31754,24.76764],[79.31275,24.77789],[79.30596,24.78648],[79.30471,24.79789],[79.31767,24.83598],[79.31874,24.84868],[79.32162,24.85447],[79.33481,24.86982],[79.33872,24.88028],[79.34261,24.88479],[79.34217,24.89074],[79.34518,24.89647],[79.34635,24.90654],[79.33933,24.92648],[79.3416,24.93662],[79.33599,24.9512],[79.33654,24.95798],[79.34004,24.96705],[79.34086,24.97789],[79.33227,24.98942],[79.33149,25.00341],[79.33435,25.02033],[79.33331,25.02634],[79.32873,25.03472],[79.33217,25.05559],[79.33984,25.068],[79.3388,25.06937],[79.34116,25.07533],[79.34124,25.08283],[79.33706,25.09544],[79.3382,25.1043],[79.33339,25.11891],[79.33491,25.12125],[79.33233,25.13203],[79.3232,25.14976],[79.31526,25.14715],[79.31365,25.13624],[79.30969,25.13421],[79.30804,25.12988],[79.29661,25.13202],[79.29241,25.13053],[79.28711,25.13186],[79.2879,25.12778],[79.28255,25.11754],[79.27818,25.11743],[79.27772,25.11994],[79.27489,25.12169],[79.27267,25.12256],[79.27097,25.12073],[79.26842,25.1208],[79.2599,25.12526],[79.26404,25.12824],[79.2649,25.13387],[79.26881,25.13845],[79.26354,25.14071],[79.26646,25.14626],[79.26443,25.15234],[79.26053,25.15307],[79.25556,25.15786],[79.25151,25.15938],[79.24203,25.15853],[79.23335,25.1541],[79.23168,25.15126],[79.22416,25.14605],[79.23634,25.1405],[79.24922,25.1403],[79.24994,25.13871],[79.24611,25.1348],[79.24304,25.12298],[79.24809,25.11686],[79.24544,25.11398],[79.24037,25.11326],[79.22737,25.122],[79.22228,25.11504],[79.21803,25.11291],[79.21718,25.1108],[79.21503,25.11141],[79.21241,25.11399],[79.2136,25.12066],[79.20384,25.12561],[79.20524,25.12915],[79.20246,25.13251],[79.20431,25.13992],[79.19605,25.14284],[79.19221,25.14621],[79.19034,25.14331],[79.18612,25.1442],[79.18515,25.14202],[79.18315,25.14335],[79.18164,25.14144],[79.17732,25.14164],[79.17618,25.14006],[79.17727,25.13776],[79.17462,25.12821],[79.18729,25.12638],[79.18545,25.12066],[79.186,25.11493],[79.18134,25.11648],[79.1779,25.11558],[79.17544,25.10893],[79.17316,25.10782],[79.16887,25.10857],[79.1658,25.10719],[79.16429,25.1088],[79.16226,25.10737],[79.16127,25.10893],[79.15931,25.10744],[79.15772,25.11144],[79.14391,25.11487],[79.14017,25.10858],[79.131,25.10915],[79.12402,25.11078],[79.12352,25.11515],[79.12876,25.12488],[79.13213,25.12711],[79.12126,25.13425],[79.116,25.13965],[79.12609,25.16122],[79.11317,25.16451],[79.09585,25.1747],[79.09461,25.17663],[79.09545,25.18246],[79.09063,25.19081],[79.08815,25.18695],[79.08862,25.18435],[79.08141,25.18134],[79.07678,25.17429],[79.07388,25.17364],[79.07149,25.1702],[79.07026,25.15554],[79.06699,25.14834],[79.06299,25.14798],[79.06125,25.14489],[79.05559,25.14133],[79.05548,25.139],[79.0528,25.13816],[79.05023,25.13369],[79.03384,25.1372],[79.03076,25.13848],[79.02879,25.14178],[79.03342,25.1525],[79.03236,25.15645],[79.03688,25.16139],[79.03184,25.164],[79.03686,25.1666],[79.04004,25.1709],[79.03439,25.1741],[79.03469,25.17799],[79.03157,25.18035],[79.03091,25.18448],[79.04223,25.1967],[79.0445,25.20174],[79.04873,25.20609],[79.05233,25.20744],[79.05402,25.20169],[79.04859,25.19345],[79.05206,25.18743],[79.05967,25.19041],[79.06209,25.19333],[79.06098,25.19518],[79.06205,25.19904],[79.06432,25.19947],[79.06414,25.20169],[79.06242,25.20028],[79.06032,25.20107],[79.06195,25.20665],[79.06057,25.20964],[79.06373,25.21487],[79.06368,25.22176],[79.03365,25.23372],[79.03999,25.24268],[79.03387,25.24285],[79.02847,25.2406],[79.02613,25.24222],[79.02485,25.24087],[79.02177,25.24157],[79.02139,25.24538],[79.01799,25.24927],[79.02432,25.25723],[79.02561,25.26128],[79.02084,25.26444],[79.02285,25.2679],[79.01394,25.27374]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"435","area_level":"District","area_name":"Ujjain","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.72916,23.75726],[75.71302,23.75635],[75.71107,23.74816],[75.69627,23.74626],[75.68997,23.74747],[75.6903,23.74205],[75.68681,23.73043],[75.69042,23.71604],[75.68666,23.7142],[75.68012,23.71495],[75.67311,23.71357],[75.66697,23.70639],[75.65013,23.7105],[75.64438,23.71036],[75.64367,23.70134],[75.64184,23.69712],[75.62713,23.69512],[75.62648,23.67744],[75.62141,23.65992],[75.58694,23.6608],[75.58587,23.65369],[75.58266,23.65384],[75.55944,23.65561],[75.55621,23.66608],[75.54107,23.66561],[75.53347,23.66804],[75.53348,23.66967],[75.532,23.66994],[75.5221,23.66591],[75.51531,23.64852],[75.51122,23.63116],[75.50368,23.61836],[75.50503,23.60206],[75.51029,23.59541],[75.51398,23.59472],[75.51339,23.58409],[75.50841,23.58424],[75.50886,23.57551],[75.50432,23.57501],[75.49922,23.57003],[75.49836,23.55861],[75.49872,23.55293],[75.50606,23.55152],[75.51884,23.54571],[75.52476,23.54254],[75.52447,23.53928],[75.52196,23.53608],[75.50802,23.5301],[75.50618,23.52571],[75.49008,23.52553],[75.48981,23.52868],[75.47124,23.53136],[75.46672,23.53416],[75.4616,23.54814],[75.45521,23.54468],[75.44568,23.54539],[75.44224,23.5544],[75.44163,23.56253],[75.42231,23.56725],[75.4181,23.57095],[75.41621,23.57534],[75.40528,23.5772],[75.4063,23.5924],[75.405,23.59214],[75.39741,23.60163],[75.38735,23.6035],[75.38241,23.60036],[75.37528,23.59937],[75.37232,23.60249],[75.34815,23.5944],[75.33364,23.59254],[75.33302,23.61847],[75.3404,23.62075],[75.34029,23.62278],[75.34533,23.62293],[75.34479,23.62616],[75.33681,23.62756],[75.33685,23.62569],[75.32853,23.62286],[75.31442,23.62177],[75.31123,23.60806],[75.31269,23.60264],[75.3005,23.6024],[75.29841,23.59333],[75.28367,23.5922],[75.28354,23.58968],[75.28037,23.58968],[75.27814,23.58353],[75.28041,23.57035],[75.27817,23.56705],[75.28152,23.5605],[75.27843,23.54917],[75.27619,23.54912],[75.27438,23.54047],[75.26396,23.54337],[75.25827,23.54131],[75.25684,23.53957],[75.25687,23.52977],[75.24422,23.53264],[75.24323,23.52438],[75.2396,23.52081],[75.23965,23.5156],[75.2292,23.51487],[75.22625,23.51688],[75.22525,23.5236],[75.21034,23.52308],[75.20955,23.52634],[75.21102,23.52811],[75.20721,23.52848],[75.207,23.53216],[75.20531,23.53366],[75.19876,23.53598],[75.1965,23.53157],[75.19921,23.52843],[75.18868,23.52618],[75.18779,23.52169],[75.18432,23.51934],[75.18257,23.50899],[75.18431,23.50558],[75.18705,23.50496],[75.18011,23.50198],[75.1778,23.50506],[75.17606,23.50053],[75.17717,23.49669],[75.17316,23.49141],[75.17513,23.48576],[75.17436,23.4833],[75.17099,23.48313],[75.1735,23.47875],[75.17308,23.47643],[75.17694,23.47454],[75.17295,23.47056],[75.17742,23.46391],[75.17658,23.46192],[75.17262,23.46364],[75.17001,23.46182],[75.17328,23.45986],[75.17254,23.45694],[75.17462,23.45604],[75.17467,23.45399],[75.16938,23.45403],[75.16523,23.44756],[75.16242,23.44597],[75.16435,23.43787],[75.15788,23.4381],[75.15597,23.43628],[75.15428,23.43166],[75.15912,23.42983],[75.15716,23.42889],[75.15865,23.4245],[75.156,23.41943],[75.15682,23.41707],[75.15386,23.41681],[75.15299,23.4187],[75.151,23.41718],[75.15084,23.41391],[75.14819,23.41229],[75.13585,23.41097],[75.13455,23.4012],[75.14998,23.39991],[75.15602,23.39661],[75.16423,23.3964],[75.16281,23.39877],[75.16384,23.39915],[75.16545,23.39578],[75.16604,23.39707],[75.16833,23.39406],[75.1682,23.38987],[75.17071,23.38981],[75.17294,23.3856],[75.17942,23.38201],[75.18116,23.37055],[75.19149,23.36868],[75.1923,23.35563],[75.199,23.35321],[75.20527,23.34834],[75.20432,23.34379],[75.19672,23.34184],[75.19431,23.32713],[75.20374,23.32362],[75.20734,23.32046],[75.21632,23.32512],[75.22331,23.32015],[75.22669,23.31946],[75.23019,23.3151],[75.23221,23.30886],[75.23458,23.30894],[75.23941,23.31363],[75.2589,23.31258],[75.25981,23.29496],[75.26702,23.29478],[75.27872,23.29735],[75.28223,23.29649],[75.29514,23.29983],[75.30531,23.29873],[75.30653,23.29602],[75.3124,23.29696],[75.31374,23.29384],[75.32583,23.29232],[75.32486,23.28381],[75.3213,23.27587],[75.31063,23.27385],[75.3082,23.27483],[75.30498,23.2702],[75.29613,23.27264],[75.28158,23.27322],[75.27263,23.268],[75.26734,23.27311],[75.26527,23.26909],[75.26064,23.26816],[75.26331,23.25441],[75.26233,23.24523],[75.26544,23.24481],[75.26708,23.24168],[75.28039,23.23761],[75.28025,23.23453],[75.28274,23.23255],[75.28384,23.22659],[75.28382,23.21623],[75.27604,23.21518],[75.24867,23.22493],[75.24036,23.22546],[75.23936,23.21371],[75.22588,23.21046],[75.22548,23.20737],[75.23024,23.18518],[75.23519,23.18374],[75.2343,23.16376],[75.23697,23.16203],[75.23897,23.15544],[75.23746,23.15389],[75.24025,23.13567],[75.25036,23.13332],[75.26826,23.13347],[75.26834,23.13142],[75.29093,23.13079],[75.29212,23.12872],[75.3006,23.127],[75.30029,23.11123],[75.29696,23.10971],[75.30028,23.10688],[75.30642,23.10761],[75.30986,23.10581],[75.31196,23.10824],[75.31715,23.10762],[75.31851,23.10943],[75.32002,23.1081],[75.31557,23.09549],[75.31671,23.09015],[75.32355,23.07699],[75.32457,23.06883],[75.34507,23.07109],[75.34695,23.06909],[75.34793,23.06356],[75.34538,23.05915],[75.33546,23.05868],[75.33477,23.03946],[75.32071,23.03794],[75.3131,23.04387],[75.30184,23.04524],[75.30249,23.03616],[75.30711,23.02994],[75.30182,23.01886],[75.30251,23.00742],[75.30015,22.99458],[75.32633,22.98634],[75.32509,22.95693],[75.30583,22.95579],[75.30672,22.93228],[75.30698,22.93116],[75.31852,22.93004],[75.32635,22.91446],[75.32236,22.90087],[75.32434,22.89419],[75.32328,22.88189],[75.33084,22.87986],[75.33136,22.87363],[75.33469,22.87314],[75.3311,22.86101],[75.33029,22.83996],[75.34107,22.82973],[75.35156,22.83044],[75.36301,22.84605],[75.37054,22.84665],[75.36916,22.85968],[75.37149,22.86851],[75.40575,22.87137],[75.41456,22.86893],[75.43703,22.86779],[75.44071,22.88049],[75.43896,22.90726],[75.45615,22.91525],[75.45936,22.92612],[75.47551,22.92633],[75.47606,22.9394],[75.45575,22.94197],[75.46346,22.96953],[75.48629,22.96803],[75.49291,22.98462],[75.48707,22.98749],[75.48572,22.98554],[75.47353,22.98623],[75.47374,23.00268],[75.4591,23.00525],[75.45961,23.00642],[75.4752,23.01642],[75.48438,23.01791],[75.48855,23.01488],[75.48774,23.00343],[75.49502,23.00297],[75.49691,22.99881],[75.49908,23.00232],[75.50225,23.0015],[75.50575,23.00588],[75.50763,23.01267],[75.50947,23.01171],[75.51163,23.01519],[75.5112,23.0168],[75.50737,23.01786],[75.50707,23.02164],[75.51647,23.02223],[75.51486,23.02735],[75.51872,23.0324],[75.51679,23.03724],[75.51796,23.04021],[75.52087,23.04175],[75.52208,23.03817],[75.52041,23.03722],[75.52588,23.03629],[75.52848,23.03384],[75.53362,23.03528],[75.53724,23.04459],[75.54544,23.04894],[75.54569,23.06243],[75.56495,23.06516],[75.56841,23.07121],[75.56573,23.07158],[75.56641,23.07529],[75.56441,23.07555],[75.56599,23.08597],[75.58134,23.08514],[75.60642,23.08923],[75.60678,23.08311],[75.61562,23.08387],[75.61658,23.08274],[75.62337,23.08477],[75.62777,23.08244],[75.62807,23.07892],[75.62597,23.07526],[75.62821,23.07284],[75.62715,23.06958],[75.6297,23.06556],[75.62657,23.06238],[75.62106,23.06318],[75.6206,23.05902],[75.61729,23.05699],[75.6162,23.05276],[75.62059,23.04929],[75.62475,23.05164],[75.62719,23.04753],[75.62707,23.04587],[75.62112,23.04368],[75.62635,23.03701],[75.62839,23.03009],[75.63331,23.02914],[75.6313,23.01768],[75.63224,23.00692],[75.64623,23.0069],[75.64575,23.01007],[75.64083,23.0127],[75.64104,23.0171],[75.63633,23.01767],[75.63553,23.02013],[75.63674,23.02256],[75.64094,23.02074],[75.64124,23.02373],[75.64454,23.01964],[75.64929,23.02591],[75.64852,23.02357],[75.65048,23.02367],[75.65022,23.01993],[75.65661,23.02071],[75.65795,23.01895],[75.67174,23.01411],[75.67838,23.01622],[75.67908,23.02022],[75.6848,23.02083],[75.69805,23.01801],[75.70961,23.01862],[75.71768,23.01479],[75.72745,23.01499],[75.73166,23.01567],[75.73298,23.0336],[75.75847,23.03525],[75.76003,23.03492],[75.76003,23.02842],[75.77823,23.0278],[75.77765,23.03257],[75.79405,23.03495],[75.80476,23.03445],[75.80757,23.04005],[75.81111,23.04082],[75.81664,23.04084],[75.8177,23.03987],[75.81541,23.03748],[75.84219,23.02912],[75.84665,23.03643],[75.867,23.03685],[75.86707,23.03878],[75.87431,23.03923],[75.87464,23.03735],[75.8719,23.03336],[75.87688,23.03057],[75.87779,23.02611],[75.88101,23.02826],[75.88362,23.02745],[75.88653,23.02145],[75.88378,23.01953],[75.88432,23.01619],[75.88919,23.01275],[75.88775,23.00822],[75.89189,23.00496],[75.89548,23.00604],[75.89703,23.00185],[75.90081,23.00231],[75.89835,23.01687],[75.90114,23.02268],[75.90315,23.02275],[75.90758,23.02742],[75.91994,23.02452],[75.92494,23.02891],[75.92971,23.02944],[75.95119,23.0222],[75.96425,23.02335],[75.97284,23.03821],[75.97983,23.03881],[75.97927,23.05757],[75.982,23.07087],[75.99174,23.0725],[75.9891,23.08789],[75.98124,23.08727],[75.97925,23.09461],[75.97957,23.10307],[75.96701,23.10229],[75.95781,23.10358],[75.95767,23.11139],[75.96019,23.12101],[75.95901,23.1254],[75.93266,23.1318],[75.92954,23.14432],[75.93064,23.14745],[75.93635,23.14725],[75.94451,23.15026],[75.94822,23.15922],[75.95034,23.17756],[75.95361,23.1787],[75.95139,23.20725],[75.95318,23.20799],[75.95364,23.21859],[75.9499,23.22597],[75.93235,23.22242],[75.93218,23.24319],[75.92862,23.25518],[75.92903,23.26763],[75.92608,23.27412],[75.93097,23.27509],[75.93064,23.29671],[75.94197,23.29712],[75.94677,23.31975],[75.95859,23.32022],[75.96081,23.32168],[75.9641,23.3009],[75.97521,23.30271],[75.9833,23.28953],[75.98743,23.27872],[75.99034,23.27901],[75.99391,23.26402],[75.97177,23.26301],[75.96851,23.25597],[75.97013,23.23908],[75.97891,23.23974],[75.98005,23.23864],[75.98553,23.24118],[75.98684,23.23962],[75.99111,23.2393],[75.99162,23.24063],[75.99228,23.23929],[76.00276,23.23735],[76.00347,23.23023],[76.00167,23.22366],[76.00906,23.22497],[76.00786,23.2142],[76.01036,23.20958],[76.02025,23.20478],[76.01699,23.20007],[76.02245,23.19618],[76.02306,23.19065],[76.02463,23.1896],[76.02801,23.19207],[76.0306,23.18635],[76.03336,23.18712],[76.03457,23.18468],[76.04097,23.18153],[76.039,23.17937],[76.04122,23.17762],[76.03931,23.17597],[76.03919,23.17247],[76.04191,23.17185],[76.04328,23.16701],[76.04008,23.16555],[76.0403,23.16175],[76.04329,23.16256],[76.04526,23.15988],[76.04235,23.15566],[76.04163,23.14981],[76.04363,23.14568],[76.04098,23.14085],[76.04309,23.13912],[76.04738,23.13933],[76.04686,23.13686],[76.05087,23.13265],[76.04978,23.1291],[76.05304,23.12614],[76.05501,23.12727],[76.05673,23.12433],[76.05717,23.11768],[76.06108,23.11738],[76.0617,23.10979],[76.05955,23.10937],[76.06208,23.10817],[76.0615,23.1044],[76.06599,23.10271],[76.0651,23.09617],[76.06623,23.09449],[76.06415,23.09346],[76.06419,23.08822],[76.06201,23.08765],[76.06095,23.07662],[76.07096,23.07618],[76.0689,23.07232],[76.07145,23.06873],[76.07309,23.06972],[76.08063,23.06699],[76.08316,23.0559],[76.08284,23.04808],[76.08745,23.04786],[76.08778,23.04971],[76.10163,23.04775],[76.10988,23.04821],[76.10988,23.05039],[76.11307,23.05126],[76.11733,23.06321],[76.11635,23.07294],[76.11802,23.08092],[76.11662,23.08811],[76.10972,23.09839],[76.10744,23.10568],[76.10467,23.10531],[76.099,23.11001],[76.09582,23.1159],[76.09085,23.12011],[76.09049,23.12413],[76.07045,23.12742],[76.07001,23.14515],[76.05724,23.14697],[76.05716,23.15659],[76.05885,23.15994],[76.06052,23.15967],[76.06008,23.18587],[76.07445,23.18364],[76.07382,23.17941],[76.07547,23.17343],[76.08092,23.16918],[76.08086,23.16635],[76.08349,23.16651],[76.08474,23.16923],[76.09523,23.17521],[76.10279,23.17591],[76.11821,23.18149],[76.12537,23.18191],[76.12565,23.1803],[76.14125,23.18115],[76.14165,23.18574],[76.14719,23.19009],[76.14882,23.19962],[76.13252,23.20304],[76.13479,23.20613],[76.13328,23.21436],[76.13026,23.21429],[76.1108,23.20691],[76.09682,23.20633],[76.09387,23.19777],[76.08439,23.19726],[76.08327,23.2025],[76.07293,23.20226],[76.07029,23.20442],[76.05622,23.20701],[76.05969,23.21862],[76.07534,23.21661],[76.08111,23.21388],[76.08125,23.21242],[76.08437,23.21313],[76.0876,23.22508],[76.08442,23.22832],[76.07511,23.22883],[76.07502,23.2338],[76.07839,23.23417],[76.08209,23.24253],[76.0966,23.24364],[76.0983,23.23821],[76.12059,23.24367],[76.12358,23.25129],[76.12417,23.26088],[76.12867,23.26299],[76.13417,23.27045],[76.13301,23.28138],[76.1526,23.28442],[76.15798,23.28385],[76.15707,23.2818],[76.16185,23.2766],[76.1584,23.27507],[76.15923,23.27321],[76.1667,23.27175],[76.17233,23.26685],[76.18204,23.2692],[76.18838,23.28083],[76.19215,23.29288],[76.18788,23.30676],[76.19588,23.31949],[76.19399,23.32606],[76.20381,23.33775],[76.2032,23.34128],[76.21497,23.35081],[76.22102,23.34877],[76.21899,23.34261],[76.22061,23.33878],[76.2235,23.33908],[76.22396,23.34233],[76.22743,23.3379],[76.22819,23.33997],[76.23062,23.33996],[76.25215,23.35168],[76.25063,23.36022],[76.24661,23.36568],[76.25477,23.37385],[76.24571,23.39273],[76.23155,23.38611],[76.21295,23.3848],[76.20952,23.39608],[76.21326,23.404],[76.21053,23.41044],[76.21365,23.41714],[76.21116,23.41948],[76.20683,23.41915],[76.20573,23.41526],[76.20443,23.41504],[76.20579,23.41706],[76.2019,23.41898],[76.20089,23.42787],[76.20396,23.42962],[76.20321,23.4352],[76.21205,23.43959],[76.21275,23.4486],[76.21428,23.44865],[76.21319,23.44977],[76.21481,23.45253],[76.21372,23.45354],[76.2124,23.45234],[76.21056,23.45427],[76.20829,23.45936],[76.20934,23.46219],[76.19723,23.46544],[76.1987,23.4722],[76.19784,23.47788],[76.20053,23.47824],[76.20103,23.47671],[76.20457,23.47567],[76.20777,23.47751],[76.20927,23.48866],[76.21946,23.48831],[76.22146,23.49658],[76.22839,23.49483],[76.23109,23.49696],[76.24631,23.49701],[76.24777,23.49864],[76.24633,23.50684],[76.2527,23.51094],[76.25247,23.5159],[76.24625,23.51791],[76.24347,23.51538],[76.23761,23.51593],[76.23752,23.52426],[76.23568,23.52805],[76.22747,23.53214],[76.21619,23.5321],[76.21446,23.52521],[76.20689,23.52024],[76.21121,23.51113],[76.20344,23.50849],[76.20381,23.50395],[76.19933,23.50097],[76.19104,23.50382],[76.18865,23.50712],[76.17781,23.5074],[76.17555,23.50949],[76.17306,23.50928],[76.16658,23.50438],[76.16032,23.50711],[76.15685,23.51905],[76.1605,23.52646],[76.16607,23.53298],[76.17142,23.53444],[76.17631,23.54031],[76.17628,23.54227],[76.17206,23.54614],[76.179,23.55628],[76.17385,23.56125],[76.17348,23.56684],[76.16384,23.57232],[76.16113,23.57055],[76.14888,23.57105],[76.13925,23.56493],[76.13365,23.55989],[76.13202,23.55251],[76.1214,23.54791],[76.11659,23.5413],[76.10896,23.5445],[76.10628,23.55234],[76.10493,23.56614],[76.09583,23.57316],[76.08923,23.57182],[76.08602,23.56835],[76.06721,23.55838],[76.05213,23.56515],[76.02694,23.56684],[76.02575,23.55749],[76.00612,23.55801],[76.0049,23.55836],[76.0079,23.56155],[76.0086,23.56525],[76.00493,23.57018],[75.9997,23.57351],[75.99228,23.57237],[75.9789,23.5639],[75.95454,23.56803],[75.95269,23.56306],[75.95406,23.55306],[75.94554,23.55269],[75.92767,23.55427],[75.92114,23.56655],[75.91258,23.57012],[75.91028,23.56902],[75.90933,23.57032],[75.90555,23.56739],[75.89747,23.56707],[75.89462,23.5603],[75.88112,23.55827],[75.878,23.55891],[75.87822,23.56153],[75.86576,23.56632],[75.85638,23.56749],[75.84835,23.5745],[75.84588,23.58257],[75.83721,23.58881],[75.83974,23.58975],[75.83796,23.59422],[75.84114,23.60281],[75.83792,23.61212],[75.83319,23.61772],[75.83521,23.62538],[75.82877,23.6324],[75.82804,23.64366],[75.81728,23.65494],[75.81308,23.65527],[75.81198,23.66015],[75.8166,23.67163],[75.82145,23.67251],[75.82902,23.67734],[75.8336,23.67764],[75.83732,23.68309],[75.84686,23.68778],[75.84245,23.69456],[75.85353,23.71385],[75.85161,23.71413],[75.84978,23.71761],[75.84526,23.7328],[75.84341,23.73047],[75.83725,23.73071],[75.83617,23.72954],[75.83244,23.73167],[75.82875,23.73143],[75.8291,23.72417],[75.82507,23.71416],[75.82506,23.70961],[75.8293,23.69837],[75.82258,23.69723],[75.80523,23.70803],[75.79178,23.70842],[75.78588,23.72298],[75.76611,23.72339],[75.76133,23.72494],[75.75438,23.7229],[75.74547,23.73957],[75.7332,23.74616],[75.73413,23.75316],[75.72916,23.75726]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"436","area_level":"District","area_name":"Umaria","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.00375,24.06457],[80.99937,24.0724],[80.99876,24.078],[81.00841,24.09033],[81.00017,24.09159],[80.97371,24.06836],[80.9612,24.06451],[80.95035,24.06451],[80.94918,24.06263],[80.94424,24.0615],[80.93018,24.06084],[80.92175,24.05745],[80.92117,24.05416],[80.93047,24.05453],[80.9325,24.05049],[80.92523,24.04531],[80.90449,24.04192],[80.9039,24.03844],[80.90816,24.02874],[80.90646,24.0176],[80.90507,24.01766],[80.90458,24.01448],[80.89963,24.01487],[80.89691,24.01317],[80.89617,24.01034],[80.89458,24.00994],[80.89589,24.00714],[80.89435,24.00366],[80.89005,23.99941],[80.88759,23.99903],[80.88631,23.99662],[80.8879,23.99474],[80.88607,23.99216],[80.87917,23.98731],[80.87563,23.98668],[80.87141,23.97554],[80.88126,23.97174],[80.87811,23.96789],[80.87608,23.96831],[80.8749,23.96194],[80.85958,23.96159],[80.8544,23.96379],[80.85172,23.96697],[80.84657,23.96618],[80.8455,23.96176],[80.84336,23.96208],[80.84311,23.95716],[80.83671,23.94983],[80.84129,23.94789],[80.84147,23.94239],[80.8438,23.94079],[80.84529,23.93522],[80.84762,23.93329],[80.84557,23.92416],[80.84418,23.92319],[80.84607,23.91566],[80.84388,23.91019],[80.84518,23.9061],[80.85846,23.90394],[80.86674,23.90618],[80.8761,23.90596],[80.88218,23.89729],[80.87282,23.89244],[80.86274,23.87658],[80.87352,23.87264],[80.87553,23.87374],[80.88377,23.87254],[80.88645,23.87112],[80.88388,23.86951],[80.88517,23.86711],[80.88785,23.86869],[80.89132,23.86407],[80.89985,23.86302],[80.90053,23.86148],[80.90071,23.85949],[80.89618,23.85436],[80.89399,23.8484],[80.89347,23.84027],[80.8989,23.83386],[80.89899,23.82858],[80.90149,23.82812],[80.90326,23.82532],[80.9064,23.82488],[80.90647,23.82242],[80.90932,23.81966],[80.90971,23.81392],[80.90637,23.80837],[80.90987,23.80615],[80.91099,23.80122],[80.90678,23.79804],[80.91477,23.79036],[80.91767,23.79],[80.91464,23.78021],[80.917,23.77731],[80.91591,23.76938],[80.89209,23.76855],[80.89279,23.76299],[80.89593,23.7577],[80.89529,23.75053],[80.90158,23.73783],[80.90228,23.73214],[80.90101,23.72944],[80.90372,23.72798],[80.90481,23.7248],[80.90278,23.72173],[80.90413,23.72017],[80.9034,23.71765],[80.8993,23.71588],[80.90671,23.70531],[80.90845,23.70484],[80.90522,23.67776],[80.89674,23.67475],[80.8942,23.67782],[80.89472,23.67974],[80.88481,23.67956],[80.85723,23.67079],[80.84579,23.67311],[80.83904,23.6697],[80.82998,23.6701],[80.82782,23.67159],[80.82232,23.67001],[80.81962,23.67818],[80.80721,23.68262],[80.80541,23.68773],[80.79782,23.69277],[80.79216,23.70163],[80.78862,23.70163],[80.78932,23.69725],[80.78801,23.69512],[80.78011,23.69714],[80.77879,23.69885],[80.78188,23.70488],[80.77967,23.70692],[80.77728,23.70692],[80.77455,23.70333],[80.77059,23.71031],[80.76149,23.71039],[80.75974,23.71542],[80.75318,23.71686],[80.74531,23.72562],[80.74067,23.72713],[80.73661,23.72471],[80.73431,23.72599],[80.72762,23.74124],[80.72332,23.75584],[80.71558,23.76287],[80.71376,23.7613],[80.71134,23.7484],[80.71269,23.7441],[80.71064,23.73544],[80.69989,23.73485],[80.69346,23.73668],[80.68997,23.73228],[80.69003,23.72873],[80.6857,23.72066],[80.68589,23.71157],[80.68166,23.70771],[80.67966,23.70136],[80.67249,23.69429],[80.67082,23.68891],[80.67149,23.68566],[80.67809,23.6784],[80.67785,23.67475],[80.66302,23.65735],[80.65858,23.65504],[80.64686,23.65279],[80.6449,23.65091],[80.64352,23.64503],[80.65119,23.64142],[80.6552,23.63533],[80.64054,23.62465],[80.63111,23.62017],[80.62481,23.61435],[80.6236,23.61136],[80.62633,23.60516],[80.62414,23.59326],[80.61814,23.58862],[80.61166,23.58709],[80.60921,23.5879],[80.6075,23.59236],[80.60237,23.58981],[80.59861,23.5843],[80.60044,23.57826],[80.59816,23.57521],[80.58899,23.57758],[80.58142,23.57691],[80.56663,23.56797],[80.56146,23.56699],[80.55926,23.55886],[80.5603,23.55137],[80.55675,23.5479],[80.55048,23.54716],[80.54853,23.54493],[80.55184,23.54063],[80.55328,23.53365],[80.55588,23.53024],[80.54979,23.52489],[80.54848,23.51673],[80.54659,23.514],[80.54992,23.50796],[80.55088,23.50194],[80.54178,23.49366],[80.54741,23.49025],[80.55123,23.48261],[80.56353,23.47156],[80.56638,23.46693],[80.56162,23.45982],[80.56296,23.44966],[80.55847,23.43704],[80.55452,23.43496],[80.54705,23.43815],[80.53864,23.43525],[80.53853,23.42873],[80.5313,23.41796],[80.52839,23.41038],[80.52946,23.40373],[80.54261,23.39671],[80.5453,23.38617],[80.55546,23.38042],[80.55299,23.37022],[80.54469,23.36703],[80.54045,23.36265],[80.54243,23.35367],[80.54701,23.35497],[80.56725,23.35468],[80.57813,23.35073],[80.59941,23.34887],[80.60783,23.35148],[80.62458,23.36023],[80.65559,23.36547],[80.67739,23.36641],[80.67887,23.36838],[80.68547,23.36997],[80.69208,23.36987],[80.69166,23.37112],[80.69945,23.37454],[80.7055,23.37311],[80.70531,23.36692],[80.71056,23.36401],[80.7147,23.36245],[80.71652,23.36374],[80.72313,23.36237],[80.72909,23.35859],[80.73735,23.35038],[80.73559,23.34419],[80.74472,23.34286],[80.75189,23.344],[80.75776,23.34148],[80.76185,23.3448],[80.75987,23.33565],[80.75675,23.33728],[80.75414,23.33254],[80.75004,23.32974],[80.74934,23.32137],[80.75418,23.32061],[80.74521,23.3178],[80.74143,23.31267],[80.72966,23.30886],[80.72407,23.30485],[80.72352,23.2979],[80.72764,23.29827],[80.73284,23.29542],[80.73531,23.29613],[80.73515,23.29509],[80.7325,23.29484],[80.73256,23.2931],[80.73003,23.29687],[80.72736,23.29738],[80.72228,23.29486],[80.71897,23.28818],[80.71665,23.28837],[80.71657,23.28422],[80.71712,23.27817],[80.72244,23.27423],[80.72211,23.26743],[80.7254,23.26026],[80.73231,23.2623],[80.74279,23.25881],[80.74594,23.2484],[80.7418,23.24156],[80.74007,23.23456],[80.74702,23.22939],[80.76912,23.22148],[80.77552,23.22069],[80.77884,23.22716],[80.78265,23.22788],[80.78735,23.23161],[80.79241,23.25055],[80.80305,23.25276],[80.81183,23.25276],[80.81025,23.24816],[80.813,23.24784],[80.81335,23.24408],[80.81679,23.24284],[80.82101,23.24407],[80.82556,23.2417],[80.83329,23.2406],[80.8312,23.23088],[80.83948,23.2317],[80.8408,23.22645],[80.84637,23.22611],[80.85017,23.22285],[80.85581,23.22087],[80.86538,23.22277],[80.86465,23.23298],[80.873,23.23894],[80.88572,23.24471],[80.89816,23.24731],[80.89787,23.25057],[80.89965,23.25287],[80.90755,23.25508],[80.91249,23.2585],[80.91505,23.26313],[80.91569,23.27275],[80.92145,23.28341],[80.92305,23.2855],[80.93597,23.29022],[80.94213,23.28908],[80.9506,23.28401],[80.95164,23.27942],[80.956,23.27926],[80.95793,23.27522],[80.95651,23.2666],[80.96418,23.26006],[80.98333,23.24943],[80.99496,23.24878],[80.99108,23.24338],[80.991,23.23746],[81.00093,23.23171],[81.00621,23.22543],[81.01793,23.22201],[81.02458,23.21349],[81.03043,23.20961],[81.05232,23.20851],[81.06386,23.20012],[81.06758,23.19447],[81.07228,23.19818],[81.078,23.19691],[81.09099,23.20256],[81.10415,23.20211],[81.10684,23.20304],[81.11031,23.21165],[81.11612,23.21632],[81.12126,23.21787],[81.12535,23.21685],[81.12767,23.22191],[81.13158,23.22397],[81.13552,23.23334],[81.13661,23.24547],[81.13969,23.25061],[81.13708,23.26045],[81.14014,23.26734],[81.13628,23.28938],[81.13743,23.29802],[81.13533,23.30844],[81.13761,23.32339],[81.15786,23.32051],[81.16391,23.33182],[81.16536,23.33201],[81.17166,23.33009],[81.17823,23.32376],[81.17908,23.32016],[81.17869,23.31517],[81.16634,23.30656],[81.16337,23.29996],[81.16768,23.29842],[81.16672,23.29439],[81.17697,23.29235],[81.18228,23.28598],[81.18729,23.286],[81.18903,23.29115],[81.19396,23.29141],[81.20466,23.27523],[81.22127,23.2645],[81.23219,23.25053],[81.23156,23.2465],[81.22691,23.23882],[81.22601,23.22516],[81.22823,23.22228],[81.23655,23.21825],[81.24756,23.21642],[81.25261,23.21145],[81.26567,23.22085],[81.28426,23.22015],[81.28734,23.23055],[81.29453,23.23024],[81.3006,23.23702],[81.30059,23.2395],[81.29731,23.24142],[81.29733,23.24624],[81.29586,23.24755],[81.29818,23.25052],[81.3029,23.25367],[81.31709,23.24985],[81.31907,23.25152],[81.3174,23.2538],[81.31848,23.25766],[81.32065,23.26144],[81.32319,23.26188],[81.32174,23.26343],[81.32357,23.26769],[81.32206,23.27246],[81.32708,23.2771],[81.32796,23.28028],[81.32307,23.28332],[81.32416,23.29243],[81.33469,23.29892],[81.33545,23.2998],[81.33336,23.30015],[81.33458,23.30356],[81.34028,23.30518],[81.34229,23.3127],[81.33891,23.31909],[81.33987,23.32324],[81.34693,23.32699],[81.34676,23.33088],[81.34428,23.33528],[81.34473,23.34049],[81.34869,23.34959],[81.35306,23.35442],[81.34938,23.35797],[81.34372,23.35742],[81.33215,23.37031],[81.33209,23.37299],[81.34065,23.38346],[81.33519,23.39697],[81.33081,23.39724],[81.32762,23.40039],[81.32928,23.4028],[81.33698,23.40686],[81.33706,23.40906],[81.33385,23.41211],[81.32193,23.4132],[81.30788,23.42307],[81.30891,23.42758],[81.31312,23.42705],[81.31468,23.43058],[81.30803,23.43446],[81.3084,23.43999],[81.30124,23.44792],[81.30431,23.45227],[81.30071,23.46535],[81.29668,23.47234],[81.29263,23.49409],[81.29148,23.51575],[81.29742,23.5314],[81.2919,23.54408],[81.29333,23.55024],[81.29832,23.55562],[81.29798,23.5593],[81.28801,23.5691],[81.28079,23.57174],[81.27107,23.57045],[81.25818,23.57346],[81.25121,23.57769],[81.2491,23.58123],[81.24959,23.59205],[81.24767,23.5971],[81.24956,23.60358],[81.24907,23.61103],[81.2418,23.62149],[81.23802,23.63207],[81.23795,23.64292],[81.24146,23.65397],[81.24103,23.66116],[81.23594,23.66959],[81.22715,23.67897],[81.2293,23.68347],[81.23886,23.69253],[81.2454,23.69595],[81.24454,23.71129],[81.2479,23.72292],[81.24273,23.73305],[81.23875,23.73659],[81.22174,23.7405],[81.21343,23.74473],[81.2048,23.76821],[81.19608,23.77902],[81.18124,23.79185],[81.17905,23.79715],[81.18342,23.81513],[81.18825,23.81963],[81.21267,23.82278],[81.23126,23.82213],[81.24616,23.82866],[81.26369,23.83144],[81.26811,23.83561],[81.26835,23.84189],[81.26288,23.85136],[81.25772,23.85422],[81.24326,23.85635],[81.23092,23.85209],[81.22283,23.85492],[81.21902,23.86093],[81.21807,23.86737],[81.21502,23.87367],[81.20444,23.88407],[81.19986,23.88477],[81.18141,23.87808],[81.17305,23.87926],[81.16856,23.88219],[81.16108,23.89474],[81.16078,23.89867],[81.1623,23.90077],[81.17413,23.90493],[81.1771,23.91127],[81.17635,23.91504],[81.16795,23.92319],[81.16187,23.92647],[81.15676,23.9266],[81.1501,23.92318],[81.14445,23.92242],[81.13372,23.93222],[81.12733,23.94299],[81.13047,23.96479],[81.12873,23.97071],[81.12079,23.97105],[81.10644,23.96494],[81.09178,23.96633],[81.07721,23.96264],[81.06973,23.96571],[81.06297,23.97603],[81.06178,23.99192],[81.05676,24.00447],[81.02773,24.03375],[81.02418,24.04335],[81.01644,24.05441],[81.00375,24.06457]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"437","area_level":"District","area_name":"Vidisha","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.29829,23.69393],[78.29657,23.69477],[78.29544,23.69491],[78.29393,23.6954],[78.29389,23.6961],[78.29113,23.69824],[78.29031,23.69926],[78.28971,23.69932],[78.2899,23.69893],[78.28992,23.69822],[78.28886,23.69641],[78.28932,23.69458],[78.28796,23.69396],[78.28829,23.69345],[78.28901,23.69287],[78.2909,23.69331],[78.29162,23.69311],[78.29257,23.69234],[78.29322,23.69229],[78.29333,23.69157],[78.29456,23.68911],[78.29501,23.6889],[78.29554,23.6882],[78.2958,23.68617],[78.29626,23.68498],[78.29741,23.67984],[78.2988,23.6791],[78.30079,23.679],[78.30233,23.6801],[78.30328,23.68037],[78.30454,23.68168],[78.30464,23.68258],[78.3055,23.6833],[78.30619,23.68593],[78.30642,23.68624],[78.30712,23.68658],[78.30833,23.68685],[78.31012,23.68701],[78.31083,23.68807],[78.31119,23.68836],[78.31161,23.68841],[78.311,23.68931],[78.31034,23.68995],[78.31001,23.69012],[78.30894,23.6902],[78.30846,23.69054],[78.30674,23.69396],[78.30543,23.69393],[78.30482,23.69374],[78.30412,23.69376],[78.30335,23.69407],[78.29829,23.69393]]],[[[77.37797,24.34099],[77.37264,24.34373],[77.37228,24.34824],[77.36472,24.34902],[77.35375,24.34148],[77.35598,24.33997],[77.35095,24.33542],[77.34705,24.32562],[77.34772,24.32152],[77.33455,24.30729],[77.32766,24.30387],[77.32154,24.28812],[77.3245,24.28261],[77.32506,24.27037],[77.33214,24.26007],[77.33317,24.25421],[77.32926,24.25235],[77.32675,24.24524],[77.33263,24.24537],[77.3392,24.24051],[77.34301,24.23318],[77.34697,24.23029],[77.35301,24.21485],[77.35302,24.21328],[77.34959,24.21416],[77.34456,24.21277],[77.33141,24.21655],[77.33095,24.21079],[77.34602,24.19346],[77.34598,24.18244],[77.34381,24.18199],[77.34289,24.17931],[77.32475,24.17504],[77.32355,24.17109],[77.32083,24.16999],[77.3177,24.17075],[77.30997,24.16678],[77.30357,24.16836],[77.3011,24.16743],[77.30167,24.16319],[77.30437,24.1617],[77.30489,24.15896],[77.31284,24.15051],[77.30928,24.14547],[77.30279,24.12959],[77.3004,24.12929],[77.30055,24.12671],[77.29486,24.12648],[77.29165,24.12955],[77.29229,24.12422],[77.28748,24.12373],[77.28952,24.12144],[77.29005,24.10371],[77.29801,24.09743],[77.29467,24.09158],[77.29734,24.08745],[77.29738,24.08402],[77.29449,24.0842],[77.29467,24.08239],[77.28982,24.08306],[77.28806,24.08062],[77.28496,24.08065],[77.28516,24.07854],[77.28043,24.07728],[77.28025,24.07528],[77.27408,24.06996],[77.26388,24.06969],[77.25965,24.06801],[77.25988,24.04322],[77.26306,24.04409],[77.27295,24.03789],[77.28467,24.0416],[77.29438,24.04021],[77.29576,24.03786],[77.2924,24.03491],[77.29085,24.03025],[77.28461,24.03172],[77.27775,24.01885],[77.28419,24.01854],[77.29642,24.02127],[77.30759,24.01683],[77.31213,24.00727],[77.31175,24.00477],[77.30903,24.00275],[77.3013,24.00428],[77.30119,23.99837],[77.29143,23.99685],[77.3054,23.99664],[77.30492,23.99244],[77.30041,23.99241],[77.30231,23.98793],[77.31353,23.98844],[77.31106,23.98298],[77.31404,23.98183],[77.31408,23.98058],[77.30716,23.97929],[77.31065,23.97847],[77.31041,23.97675],[77.30197,23.97668],[77.30502,23.9742],[77.30275,23.97295],[77.29662,23.97342],[77.29377,23.97542],[77.30092,23.96915],[77.30848,23.9701],[77.3055,23.96776],[77.3073,23.96749],[77.30706,23.966],[77.30421,23.96607],[77.29811,23.9618],[77.30601,23.95729],[77.2973,23.95766],[77.29648,23.95488],[77.30916,23.95183],[77.30713,23.94315],[77.30855,23.94291],[77.30763,23.93184],[77.305,23.92954],[77.29893,23.92983],[77.29687,23.92567],[77.30967,23.92711],[77.30779,23.91644],[77.32058,23.91325],[77.32279,23.90752],[77.31854,23.90005],[77.31612,23.89194],[77.31712,23.89064],[77.33275,23.89249],[77.33508,23.89059],[77.34293,23.891],[77.37718,23.88407],[77.37883,23.87299],[77.38352,23.86161],[77.38891,23.85585],[77.39566,23.85281],[77.40148,23.84733],[77.39941,23.83641],[77.39656,23.83672],[77.39322,23.8396],[77.38922,23.83762],[77.39101,23.83592],[77.38917,23.83351],[77.39431,23.82894],[77.39914,23.82769],[77.40109,23.8288],[77.40133,23.82533],[77.40729,23.8271],[77.40508,23.8206],[77.40958,23.80787],[77.41511,23.79972],[77.41647,23.80226],[77.42712,23.8034],[77.42931,23.80045],[77.4389,23.79482],[77.44513,23.79484],[77.44639,23.7914],[77.4367,23.78821],[77.43395,23.78025],[77.4354,23.77537],[77.43792,23.77608],[77.4373,23.7744],[77.44589,23.77821],[77.45441,23.77191],[77.45409,23.76122],[77.4676,23.75597],[77.4746,23.75645],[77.48176,23.76425],[77.49044,23.76678],[77.49181,23.76943],[77.49512,23.77008],[77.49973,23.77542],[77.50659,23.77254],[77.51046,23.76556],[77.51585,23.76162],[77.52581,23.76259],[77.52804,23.75911],[77.53534,23.75943],[77.54113,23.75519],[77.54635,23.75729],[77.55475,23.75501],[77.5629,23.76002],[77.56268,23.76564],[77.57343,23.76686],[77.57553,23.76568],[77.57657,23.76065],[77.58045,23.76047],[77.58222,23.75667],[77.58919,23.75421],[77.59124,23.75107],[77.61016,23.74702],[77.60664,23.7328],[77.60074,23.73375],[77.60217,23.73266],[77.60107,23.7266],[77.60348,23.72774],[77.61666,23.72463],[77.61523,23.71279],[77.61833,23.7106],[77.62176,23.71097],[77.62844,23.70835],[77.63193,23.71291],[77.63503,23.71411],[77.6398,23.70733],[77.64355,23.71235],[77.64805,23.713],[77.64701,23.70167],[77.64846,23.69282],[77.64441,23.68745],[77.64108,23.67859],[77.63235,23.6668],[77.62979,23.65796],[77.62364,23.6573],[77.61991,23.65943],[77.6111,23.65834],[77.60662,23.65943],[77.59008,23.65594],[77.58895,23.65218],[77.58568,23.65207],[77.587,23.65003],[77.5737,23.64771],[77.5731,23.64484],[77.56998,23.64414],[77.57421,23.63736],[77.57088,23.63391],[77.57104,23.62941],[77.56698,23.62407],[77.56842,23.62192],[77.56428,23.61362],[77.56605,23.61227],[77.56553,23.61057],[77.55858,23.61228],[77.56245,23.6039],[77.5546,23.59098],[77.55106,23.58746],[77.54549,23.58957],[77.53514,23.58069],[77.52848,23.58041],[77.52437,23.57524],[77.5159,23.57684],[77.50623,23.56851],[77.50576,23.56518],[77.50818,23.56201],[77.51091,23.55093],[77.51083,23.54936],[77.50696,23.54947],[77.50442,23.54493],[77.50554,23.52417],[77.51168,23.52211],[77.51131,23.51787],[77.51795,23.51371],[77.51951,23.50346],[77.5332,23.50491],[77.53947,23.50142],[77.54853,23.5009],[77.55779,23.50449],[77.56583,23.50545],[77.56916,23.49063],[77.60067,23.48738],[77.60047,23.48287],[77.60386,23.47801],[77.60753,23.47652],[77.61902,23.46632],[77.62428,23.46508],[77.62951,23.47002],[77.63487,23.46935],[77.63552,23.47483],[77.64576,23.4783],[77.65003,23.48466],[77.64713,23.4937],[77.64504,23.49344],[77.65015,23.50145],[77.64745,23.50943],[77.62727,23.52642],[77.62543,23.52611],[77.62221,23.53718],[77.62409,23.53901],[77.6225,23.54431],[77.62599,23.55256],[77.63956,23.54997],[77.64181,23.54368],[77.64685,23.54239],[77.6478,23.54484],[77.65162,23.54396],[77.65439,23.54137],[77.65506,23.53577],[77.66157,23.53454],[77.6611,23.5302],[77.66373,23.5279],[77.66169,23.52444],[77.67693,23.51852],[77.68357,23.52465],[77.68284,23.53083],[77.69166,23.53431],[77.70064,23.54297],[77.70528,23.55113],[77.70111,23.55809],[77.70061,23.56268],[77.70273,23.56452],[77.7076,23.56446],[77.71288,23.56134],[77.71382,23.55629],[77.71657,23.5528],[77.71576,23.54481],[77.72329,23.53537],[77.72817,23.53464],[77.73591,23.53681],[77.74041,23.52644],[77.74403,23.52702],[77.74416,23.52543],[77.74717,23.52519],[77.75633,23.52661],[77.75655,23.52485],[77.76437,23.52233],[77.76552,23.52019],[77.75652,23.50751],[77.76248,23.50557],[77.76234,23.50235],[77.76437,23.50128],[77.77207,23.50271],[77.77173,23.49781],[77.77395,23.49514],[77.7724,23.4927],[77.77282,23.4851],[77.78007,23.48867],[77.78654,23.48729],[77.78719,23.484],[77.7921,23.48103],[77.7923,23.47881],[77.79815,23.47656],[77.79787,23.47359],[77.80532,23.46518],[77.8051,23.46329],[77.80924,23.46036],[77.81149,23.45564],[77.82167,23.45499],[77.82877,23.45843],[77.83107,23.45483],[77.83643,23.45275],[77.84,23.44201],[77.84897,23.44141],[77.85242,23.43945],[77.86234,23.44087],[77.86678,23.43649],[77.86953,23.43623],[77.87887,23.43996],[77.88014,23.44514],[77.8859,23.4454],[77.89088,23.44346],[77.89407,23.44795],[77.91375,23.44895],[77.91616,23.43566],[77.92568,23.43335],[77.92758,23.42832],[77.92668,23.42477],[77.93049,23.42115],[77.9579,23.42257],[77.95994,23.42082],[77.95947,23.41816],[77.95504,23.41615],[77.95875,23.40958],[77.95585,23.40652],[77.9575,23.405],[77.95572,23.4028],[77.95742,23.40109],[77.95612,23.40013],[77.95687,23.39796],[77.95257,23.39433],[77.95757,23.38558],[77.95831,23.37298],[77.9619,23.37257],[77.9634,23.37495],[77.97727,23.37122],[77.98884,23.36436],[77.99814,23.36274],[78.00225,23.36424],[78.00517,23.36208],[78.00524,23.35494],[78.00713,23.35095],[78.01558,23.35114],[78.01516,23.34881],[78.02005,23.34724],[78.02117,23.34366],[78.02425,23.34453],[78.02506,23.35054],[78.03061,23.35339],[78.03324,23.35723],[78.03743,23.35845],[78.04113,23.36324],[78.05218,23.36378],[78.05225,23.37476],[78.05078,23.37541],[78.05478,23.38189],[78.05731,23.38232],[78.05779,23.38674],[78.04769,23.39107],[78.04847,23.40237],[78.04647,23.40277],[78.04528,23.40072],[78.04425,23.40312],[78.03831,23.4015],[78.0329,23.40252],[78.03188,23.40061],[78.02595,23.40763],[78.01524,23.40614],[78.01445,23.40738],[78.00694,23.40814],[77.99734,23.41363],[77.99394,23.42272],[77.99562,23.4241],[77.99717,23.4317],[77.98881,23.453],[77.99694,23.45361],[77.99512,23.45598],[77.9956,23.45936],[78.00055,23.46706],[78.0071,23.4675],[78.01143,23.47281],[78.01801,23.46962],[78.02192,23.47008],[78.02208,23.47148],[78.02909,23.46975],[78.03038,23.46709],[78.03756,23.46938],[78.04405,23.46884],[78.04512,23.46356],[78.05418,23.4578],[78.0665,23.45707],[78.0847,23.45037],[78.09666,23.45878],[78.10533,23.46043],[78.10262,23.46666],[78.11202,23.4725],[78.11713,23.47137],[78.12908,23.47608],[78.14533,23.47415],[78.146,23.47587],[78.14396,23.47875],[78.13844,23.47949],[78.13534,23.48269],[78.13506,23.48606],[78.1368,23.48772],[78.13409,23.49798],[78.13524,23.50512],[78.1304,23.51156],[78.13496,23.51782],[78.14722,23.51695],[78.15634,23.51841],[78.15861,23.51949],[78.1594,23.52342],[78.16447,23.52529],[78.16504,23.52687],[78.1801,23.52469],[78.18056,23.52772],[78.18251,23.52763],[78.18706,23.53221],[78.18824,23.53623],[78.19437,23.53937],[78.19453,23.54324],[78.19721,23.54478],[78.19741,23.53468],[78.19875,23.53293],[78.20435,23.53137],[78.20616,23.52791],[78.20808,23.53164],[78.20807,23.52893],[78.21065,23.52838],[78.21187,23.52629],[78.21777,23.52565],[78.22272,23.52796],[78.22698,23.5336],[78.22692,23.53754],[78.22385,23.54014],[78.22553,23.54568],[78.23094,23.54671],[78.23021,23.55186],[78.2257,23.55472],[78.22562,23.56106],[78.22701,23.56203],[78.23474,23.56055],[78.23938,23.56298],[78.23941,23.56603],[78.24338,23.56572],[78.24326,23.56723],[78.23903,23.56893],[78.24253,23.56849],[78.24496,23.57031],[78.24215,23.57965],[78.2429,23.58337],[78.24503,23.58519],[78.25035,23.586],[78.2548,23.59077],[78.26585,23.59383],[78.27184,23.60379],[78.27743,23.60932],[78.27683,23.62082],[78.27479,23.62761],[78.28402,23.6481],[78.28321,23.65435],[78.28917,23.66146],[78.29086,23.66548],[78.29003,23.67029],[78.29393,23.6745],[78.29099,23.67545],[78.28927,23.68125],[78.28498,23.68275],[78.27997,23.69048],[78.28014,23.69364],[78.28415,23.7001],[78.27811,23.70059],[78.26891,23.70538],[78.27092,23.71124],[78.269,23.71259],[78.26919,23.71447],[78.26396,23.71643],[78.26274,23.71902],[78.26967,23.72594],[78.26357,23.72728],[78.25847,23.72444],[78.25994,23.72196],[78.2568,23.71929],[78.2553,23.71258],[78.25212,23.70971],[78.25455,23.70742],[78.25224,23.70528],[78.2487,23.70536],[78.23876,23.71394],[78.24141,23.72048],[78.23729,23.72385],[78.24472,23.72857],[78.2456,23.73498],[78.25103,23.74355],[78.25078,23.7467],[78.25887,23.74884],[78.26117,23.74546],[78.26627,23.7488],[78.26546,23.75011],[78.25753,23.75122],[78.25182,23.7571],[78.25467,23.767],[78.26352,23.76769],[78.26334,23.7698],[78.26827,23.77559],[78.26917,23.77935],[78.26096,23.77761],[78.25542,23.77893],[78.25377,23.78196],[78.25888,23.79172],[78.26538,23.7985],[78.27664,23.79575],[78.27305,23.78917],[78.26853,23.78729],[78.2736,23.78402],[78.28065,23.78623],[78.28372,23.78105],[78.28857,23.78373],[78.28156,23.79347],[78.28183,23.79644],[78.28457,23.79995],[78.28387,23.80297],[78.28604,23.81112],[78.2796,23.81196],[78.26641,23.80865],[78.26254,23.81155],[78.26249,23.81624],[78.27029,23.82058],[78.28864,23.81397],[78.29377,23.82025],[78.29517,23.82466],[78.29952,23.82792],[78.29883,23.82989],[78.29497,23.82951],[78.29389,23.83483],[78.29911,23.83947],[78.29477,23.84822],[78.28341,23.84386],[78.27312,23.84319],[78.27294,23.847],[78.26267,23.85255],[78.2596,23.85843],[78.26357,23.86249],[78.27349,23.86088],[78.27828,23.86382],[78.2801,23.86883],[78.27589,23.87689],[78.27803,23.88987],[78.2829,23.89054],[78.28538,23.89323],[78.28835,23.9024],[78.29482,23.90988],[78.29408,23.91519],[78.29104,23.91879],[78.289,23.92557],[78.27894,23.9292],[78.26591,23.93796],[78.26195,23.94372],[78.26338,23.95037],[78.26659,23.95425],[78.28347,23.95949],[78.28654,23.96251],[78.28662,23.96609],[78.28069,23.96699],[78.27875,23.97104],[78.27952,23.97327],[78.28527,23.97772],[78.28965,23.98757],[78.28535,23.99656],[78.28109,24.00045],[78.27812,24.0192],[78.27646,24.02206],[78.27807,24.02879],[78.27127,24.03311],[78.26167,24.04326],[78.25695,24.04353],[78.25113,24.0467],[78.24924,24.05498],[78.22994,24.05615],[78.2148,24.07046],[78.20532,24.0688],[78.20251,24.06061],[78.19868,24.0621],[78.19306,24.05415],[78.18916,24.03558],[78.18764,24.03285],[78.18392,24.03271],[78.18337,24.01033],[78.16251,24.01046],[78.15736,24.02558],[78.14267,24.0282],[78.14438,24.03005],[78.14329,24.03391],[78.13465,24.03481],[78.13301,24.0415],[78.11935,24.04334],[78.11523,24.02719],[78.09334,24.03452],[78.09157,24.04364],[78.07581,24.04606],[78.07708,24.05085],[78.07519,24.05113],[78.07603,24.05617],[78.08276,24.0599],[78.08384,24.06418],[78.08966,24.06376],[78.09204,24.06867],[78.09768,24.06728],[78.09795,24.06576],[78.10043,24.06569],[78.10558,24.06121],[78.10214,24.04865],[78.11451,24.04545],[78.1173,24.04631],[78.12014,24.05621],[78.12042,24.06685],[78.12601,24.08108],[78.12381,24.08176],[78.12552,24.08381],[78.12592,24.09331],[78.1233,24.09528],[78.12362,24.09747],[78.12824,24.10793],[78.13137,24.10975],[78.13476,24.12075],[78.13352,24.12352],[78.13037,24.125],[78.123,24.12424],[78.11857,24.1264],[78.1205,24.12777],[78.11193,24.1382],[78.10953,24.14865],[78.09634,24.15591],[78.09996,24.16462],[78.10261,24.16448],[78.10454,24.16702],[78.11469,24.16602],[78.12108,24.16309],[78.1291,24.16369],[78.13086,24.19528],[78.13962,24.19951],[78.144,24.19892],[78.14584,24.2019],[78.13797,24.20513],[78.13826,24.21173],[78.13573,24.21322],[78.12333,24.21642],[78.10955,24.2173],[78.10706,24.20861],[78.09686,24.21229],[78.08368,24.21428],[78.08371,24.21552],[78.08221,24.21529],[78.08333,24.21699],[78.0815,24.21691],[78.07881,24.22008],[78.08007,24.22261],[78.07498,24.22422],[78.07403,24.22648],[78.06535,24.22934],[78.05997,24.22893],[78.06036,24.23393],[78.06762,24.24394],[78.09038,24.23187],[78.09031,24.23038],[78.09714,24.22862],[78.10055,24.2448],[78.09559,24.24791],[78.09665,24.24982],[78.0948,24.25134],[78.09154,24.25065],[78.09067,24.24766],[78.08651,24.24463],[78.08576,24.24151],[78.07076,24.24582],[78.06949,24.24672],[78.07291,24.25044],[78.07895,24.25257],[78.081,24.2561],[78.08386,24.25679],[78.08356,24.25946],[78.07444,24.25834],[78.06247,24.26261],[78.06122,24.25961],[78.05723,24.26047],[78.04871,24.26542],[78.04869,24.27117],[78.04637,24.27125],[78.04626,24.27296],[78.04282,24.27441],[78.04278,24.28134],[78.0213,24.28671],[78.0172,24.28215],[78.01533,24.27749],[78.01714,24.2622],[78.02051,24.25799],[78.01673,24.24807],[78.02108,24.24678],[78.01501,24.23639],[78.00983,24.23524],[77.99345,24.23731],[77.99264,24.24085],[77.98315,24.24154],[77.9821,24.24518],[77.97183,24.24447],[77.96791,24.24655],[77.96343,24.24645],[77.95951,24.2382],[77.95018,24.22942],[77.9389,24.23157],[77.93957,24.23594],[77.93747,24.24615],[77.93867,24.24868],[77.93422,24.2513],[77.92856,24.25141],[77.92974,24.26017],[77.92758,24.2676],[77.91903,24.26946],[77.90536,24.26857],[77.89517,24.27107],[77.88417,24.27729],[77.88599,24.28414],[77.89044,24.28755],[77.89501,24.29515],[77.89595,24.30196],[77.89483,24.3107],[77.89364,24.31132],[77.87598,24.31427],[77.85102,24.31171],[77.85038,24.31028],[77.84239,24.30809],[77.83848,24.31271],[77.83472,24.31038],[77.81835,24.30609],[77.81758,24.29961],[77.81192,24.30538],[77.79899,24.30621],[77.78571,24.31499],[77.78102,24.31351],[77.77806,24.30831],[77.77908,24.30694],[77.77147,24.30104],[77.75497,24.30756],[77.7307,24.30249],[77.72588,24.30325],[77.71931,24.29945],[77.71286,24.30092],[77.70892,24.30384],[77.70856,24.30245],[77.70609,24.30394],[77.70314,24.30333],[77.70219,24.30595],[77.70078,24.3036],[77.69599,24.30171],[77.69451,24.30544],[77.67867,24.31091],[77.65948,24.31092],[77.64855,24.31448],[77.6384,24.30784],[77.634,24.30822],[77.63131,24.3066],[77.62259,24.29626],[77.60723,24.29623],[77.59846,24.29802],[77.59484,24.28382],[77.59648,24.28025],[77.5952,24.26764],[77.59008,24.26857],[77.58827,24.26706],[77.58823,24.26828],[77.58512,24.26848],[77.58338,24.26813],[77.58347,24.26653],[77.58156,24.26846],[77.57532,24.26891],[77.56714,24.2537],[77.56242,24.25185],[77.55547,24.25453],[77.55489,24.24642],[77.53975,24.24516],[77.53013,24.24599],[77.51377,24.25134],[77.50209,24.25316],[77.49944,24.26018],[77.50028,24.26331],[77.49756,24.26617],[77.49537,24.26503],[77.49599,24.26199],[77.49076,24.25975],[77.48948,24.25652],[77.48493,24.25539],[77.4823,24.25212],[77.47205,24.25339],[77.47166,24.25105],[77.46995,24.25224],[77.46301,24.25086],[77.46501,24.24986],[77.46268,24.2472],[77.46322,24.24583],[77.45748,24.2446],[77.45403,24.23914],[77.45237,24.23805],[77.44702,24.23899],[77.44387,24.23714],[77.43353,24.24081],[77.43115,24.24481],[77.42843,24.24622],[77.42828,24.24829],[77.41131,24.26028],[77.41079,24.26393],[77.40038,24.2719],[77.39866,24.28464],[77.40553,24.29357],[77.40468,24.29681],[77.40753,24.30041],[77.39447,24.30345],[77.39397,24.30621],[77.39656,24.30816],[77.39447,24.30845],[77.3949,24.31196],[77.39767,24.31125],[77.39614,24.31576],[77.4015,24.31808],[77.40404,24.32311],[77.40758,24.3258],[77.408,24.32954],[77.40598,24.32853],[77.40218,24.33091],[77.39739,24.33861],[77.37797,24.34099]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"438","area_level":"District","area_name":"Ahmedabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[71.97206,23.05747],[71.98503,23.0607],[71.99738,23.05922],[71.9989,23.05708],[72.00579,23.05535],[72.01547,23.05805],[72.01969,23.03749],[72.01852,23.03143],[72.02202,23.02314],[72.02171,23.01841],[72.01768,23.01751],[72.01036,23.01199],[72.00876,23.00175],[72.00948,22.99522],[72.01132,22.9931],[72.01512,22.99165],[72.02077,22.99224],[72.01963,22.98713],[72.00831,22.96726],[71.99872,22.95783],[71.99544,22.95038],[71.99399,22.93792],[72.00082,22.92725],[72.00531,22.92445],[71.99949,22.90814],[71.99965,22.90247],[72.00244,22.89709],[71.9984,22.89431],[71.994,22.88582],[71.99183,22.88571],[71.98869,22.87329],[71.98851,22.86694],[71.99466,22.84557],[72.00904,22.8199],[72.01772,22.81843],[72.02797,22.82859],[72.03163,22.85433],[72.03438,22.86002],[72.03453,22.83963],[72.03643,22.83397],[72.04178,22.82665],[72.03691,22.82048],[72.03558,22.80983],[72.04839,22.79893],[72.05718,22.7967],[72.04714,22.76855],[72.0557,22.77057],[72.0544,22.75966],[72.0625,22.75693],[72.054,22.75073],[72.06978,22.73398],[72.10815,22.72124],[72.094,22.67562],[72.06766,22.67514],[72.05734,22.69412],[72.04172,22.68548],[72.02301,22.68019],[72.06139,22.65366],[72.06419,22.64094],[72.06362,22.62207],[72.07675,22.62317],[72.07698,22.62508],[72.08426,22.62571],[72.08434,22.62344],[72.08827,22.62391],[72.08883,22.61739],[72.08713,22.61581],[72.08847,22.6156],[72.08841,22.61286],[72.08648,22.61278],[72.08637,22.61063],[72.15017,22.58404],[72.16473,22.57355],[72.16925,22.56698],[72.17567,22.56182],[72.17655,22.55793],[72.18472,22.55396],[72.18941,22.54238],[72.17263,22.53699],[72.14532,22.5171],[72.14697,22.51303],[72.1505,22.51031],[72.14966,22.50819],[72.15274,22.50132],[72.15214,22.49844],[72.1481,22.49747],[72.14802,22.49579],[72.16401,22.47974],[72.15709,22.48113],[72.1478,22.47558],[72.14616,22.47214],[72.12059,22.46143],[72.11611,22.4577],[72.11526,22.45482],[72.10695,22.44975],[72.1081,22.44826],[72.10579,22.4465],[72.10216,22.44675],[72.09013,22.43589],[72.0839,22.43567],[72.05307,22.44314],[72.05134,22.44728],[72.05316,22.44806],[72.05086,22.47576],[72.0485,22.47373],[72.0455,22.47468],[72.04369,22.47921],[72.0425,22.47854],[72.03902,22.48337],[72.03556,22.49054],[72.03326,22.50685],[72.02945,22.50796],[72.02789,22.51073],[72.0188,22.51068],[72.0157,22.51261],[71.9784,22.51183],[71.97796,22.51378],[71.96699,22.5156],[71.96863,22.51864],[71.96853,22.52596],[71.97302,22.52852],[71.9708,22.53873],[71.9627,22.54322],[71.96173,22.54221],[71.95905,22.54387],[71.95976,22.54507],[71.95241,22.54754],[71.94152,22.54859],[71.926,22.53499],[71.92597,22.52935],[71.91346,22.5265],[71.91827,22.51499],[71.91854,22.50999],[71.92358,22.50962],[71.92384,22.50791],[71.92763,22.50944],[71.93143,22.50297],[71.91927,22.50176],[71.91668,22.48255],[71.93673,22.47982],[71.94155,22.48708],[71.95064,22.49037],[71.96742,22.49268],[71.9685,22.47347],[71.97227,22.47268],[71.94217,22.46362],[71.93399,22.45342],[71.93793,22.42769],[71.9415,22.4221],[71.93854,22.41946],[71.93823,22.41593],[71.94436,22.40514],[71.94289,22.4047],[71.94265,22.3973],[71.94486,22.38487],[71.9411,22.38101],[71.93744,22.38031],[71.92762,22.38781],[71.92428,22.38631],[71.92135,22.38044],[71.92152,22.38512],[71.9176,22.40065],[71.90754,22.41409],[71.90346,22.42331],[71.89197,22.42253],[71.88869,22.41315],[71.88169,22.40802],[71.88226,22.40685],[71.87447,22.40571],[71.87466,22.40235],[71.87076,22.40269],[71.86062,22.39625],[71.85991,22.39145],[71.86203,22.38397],[71.86286,22.37144],[71.85177,22.368],[71.84669,22.3586],[71.84003,22.32615],[71.84134,22.32448],[71.84056,22.32182],[71.84866,22.3189],[71.84756,22.31495],[71.85019,22.31425],[71.85247,22.31689],[71.85767,22.31675],[71.85655,22.31189],[71.85814,22.31247],[71.85911,22.30947],[71.85751,22.30819],[71.85917,22.30773],[71.85581,22.29677],[71.8536,22.29683],[71.85205,22.29055],[71.85447,22.29009],[71.85492,22.28537],[71.8659,22.28189],[71.86909,22.27317],[71.87005,22.26757],[71.86904,22.26596],[71.87074,22.26632],[71.87289,22.26272],[71.87863,22.26194],[71.88031,22.25392],[71.8896,22.25351],[71.89761,22.25578],[71.89768,22.25822],[71.90424,22.25904],[71.9083,22.25524],[71.91374,22.25845],[71.92713,22.27127],[71.92934,22.27149],[71.93411,22.27113],[71.93351,22.26767],[71.9383,22.2546],[71.94115,22.25522],[71.94336,22.25297],[71.97044,22.25263],[71.97798,22.25007],[71.97919,22.25132],[71.99664,22.25074],[72.00882,22.24627],[72.01391,22.24143],[72.03119,22.24474],[72.02618,22.2114],[72.01822,22.19478],[72.03387,22.18031],[72.03948,22.1588],[72.04137,22.14824],[72.03727,22.14099],[72.0388,22.14095],[72.03211,22.12121],[72.05627,22.10213],[72.06007,22.10332],[72.05747,22.09543],[72.06132,22.08448],[72.06769,22.07683],[72.07256,22.06534],[72.07873,22.05698],[72.08073,22.0551],[72.08611,22.05427],[72.10401,22.05465],[72.10593,22.05861],[72.1176,22.0566],[72.12331,22.05726],[72.1509,22.01558],[72.16898,21.99456],[72.17535,21.99075],[72.1873,21.9905],[72.20131,21.98501],[72.21836,21.98161],[72.23219,21.99057],[72.22742,21.99603],[72.22695,22.00479],[72.23125,22.0],[72.24428,21.9945],[72.24172,21.97577],[72.26887,21.9706],[72.27255,21.98445],[72.28043,22.0],[72.28461,22.01337],[72.29389,22.0273],[72.30402,22.03672],[72.39325,22.10528],[72.34364,22.16722],[72.33879,22.17622],[72.33419,22.19047],[72.33919,22.21385],[72.35839,22.24916],[72.36248,22.27159],[72.36238,22.29542],[72.3702,22.30667],[72.37404,22.31735],[72.38206,22.32307],[72.38655,22.33017],[72.38745,22.33739],[72.39816,22.34717],[72.40157,22.35311],[72.3995,22.36299],[72.38501,22.37265],[72.37642,22.37515],[72.35026,22.37693],[72.34474,22.37986],[72.34151,22.38669],[72.36798,22.40723],[72.37334,22.44682],[72.36696,22.44128],[72.35593,22.44044],[72.36026,22.4448],[72.36056,22.44824],[72.36383,22.45355],[72.37322,22.45053],[72.37681,22.45239],[72.37811,22.45919],[72.37573,22.47329],[72.3916,22.47619],[72.4069,22.4818],[72.40815,22.47612],[72.40987,22.4771],[72.42487,22.48931],[72.43877,22.50919],[72.44004,22.53507],[72.43695,22.5448],[72.42248,22.56253],[72.42249,22.56687],[72.42627,22.57173],[72.42823,22.57353],[72.43182,22.57372],[72.44099,22.56547],[72.44763,22.57107],[72.46565,22.5775],[72.48789,22.59862],[72.49371,22.6025],[72.50381,22.60592],[72.50525,22.61007],[72.50559,22.62439],[72.50837,22.63053],[72.51148,22.63306],[72.51769,22.63262],[72.52152,22.62622],[72.52361,22.62957],[72.52917,22.62628],[72.53542,22.62626],[72.53166,22.64292],[72.53391,22.64872],[72.53726,22.65225],[72.54152,22.65443],[72.5498,22.65076],[72.55925,22.65392],[72.56396,22.65455],[72.56796,22.65261],[72.56932,22.65368],[72.56846,22.65519],[72.56458,22.65555],[72.55999,22.66021],[72.56026,22.66466],[72.54788,22.66436],[72.55021,22.67055],[72.54913,22.67276],[72.53148,22.67494],[72.52707,22.67801],[72.52641,22.68146],[72.54223,22.68643],[72.54504,22.69003],[72.54408,22.69303],[72.5407,22.69457],[72.52334,22.69589],[72.51938,22.69795],[72.51798,22.70058],[72.51813,22.70766],[72.52231,22.71231],[72.52615,22.71297],[72.53727,22.70899],[72.53971,22.70937],[72.54066,22.71147],[72.52389,22.73323],[72.52478,22.73834],[72.53581,22.74521],[72.53967,22.75129],[72.5209,22.7525],[72.52233,22.7544],[72.52127,22.75573],[72.52769,22.7606],[72.52727,22.76632],[72.52977,22.76731],[72.51431,22.77887],[72.51996,22.78615],[72.52205,22.7958],[72.5307,22.79964],[72.53865,22.80605],[72.54775,22.80652],[72.55,22.81496],[72.55475,22.81849],[72.56477,22.8223],[72.57035,22.82689],[72.58142,22.81907],[72.58186,22.82276],[72.58333,22.82353],[72.59763,22.82491],[72.59951,22.81743],[72.59854,22.81587],[72.60223,22.81645],[72.60804,22.81358],[72.60622,22.82237],[72.60782,22.82293],[72.6037,22.83125],[72.60476,22.83262],[72.60217,22.83563],[72.60633,22.84864],[72.6062,22.85657],[72.60863,22.86274],[72.60651,22.86592],[72.60284,22.86455],[72.60047,22.86614],[72.59901,22.87219],[72.60533,22.87761],[72.60721,22.88308],[72.606,22.88374],[72.6081,22.88619],[72.61262,22.8859],[72.61534,22.88773],[72.62074,22.88388],[72.63377,22.88176],[72.63471,22.88906],[72.64081,22.89266],[72.64378,22.89739],[72.6474,22.89626],[72.64793,22.8939],[72.65586,22.89324],[72.66755,22.89545],[72.67075,22.89162],[72.66845,22.89033],[72.66773,22.88772],[72.67361,22.88058],[72.67785,22.88157],[72.67808,22.88034],[72.68101,22.88007],[72.68378,22.88181],[72.68918,22.87961],[72.69964,22.88381],[72.70179,22.88743],[72.70657,22.88969],[72.71589,22.90474],[72.7154,22.90822],[72.7236,22.90916],[72.72314,22.91381],[72.72458,22.91432],[72.73762,22.91344],[72.73648,22.90826],[72.74201,22.90865],[72.74083,22.90606],[72.74201,22.90572],[72.74771,22.90933],[72.7576,22.91029],[72.76007,22.90699],[72.77113,22.90932],[72.77582,22.90662],[72.79121,22.90795],[72.78892,22.9152],[72.79572,22.91675],[72.79565,22.91811],[72.79929,22.91931],[72.79758,22.93137],[72.80431,22.93355],[72.80588,22.93268],[72.80487,22.9417],[72.81047,22.94322],[72.81306,22.94824],[72.8166,22.95004],[72.81934,22.9539],[72.82539,22.957],[72.82707,22.95442],[72.8384,22.96436],[72.84079,22.96287],[72.84262,22.96711],[72.83932,22.9705],[72.83993,22.97697],[72.83772,22.98037],[72.83871,22.98201],[72.83194,22.98027],[72.83035,22.98409],[72.83838,22.99633],[72.83653,22.99655],[72.83584,23.00051],[72.83343,23.00293],[72.82412,23.0057],[72.82251,23.0111],[72.81938,23.01214],[72.81906,23.01405],[72.82456,23.01456],[72.82342,23.01929],[72.81827,23.01724],[72.81537,23.02327],[72.81155,23.02265],[72.80694,23.02626],[72.80806,23.0291],[72.8118,23.03054],[72.81064,23.03267],[72.8149,23.03374],[72.81534,23.03737],[72.81097,23.03859],[72.80513,23.03662],[72.80171,23.04058],[72.79449,23.04422],[72.79754,23.05114],[72.78979,23.05847],[72.76607,23.05962],[72.7709,23.07016],[72.77815,23.07738],[72.77522,23.0856],[72.76603,23.09545],[72.76202,23.09632],[72.75532,23.09362],[72.75372,23.09126],[72.74398,23.08904],[72.74417,23.09988],[72.74102,23.0974],[72.73821,23.09855],[72.73804,23.10036],[72.73618,23.10027],[72.7361,23.09849],[72.73247,23.09801],[72.73312,23.09975],[72.71632,23.09477],[72.71392,23.10534],[72.71035,23.11073],[72.70057,23.11068],[72.69989,23.112],[72.69705,23.11125],[72.69394,23.10568],[72.69048,23.10299],[72.6838,23.10169],[72.68109,23.10257],[72.68053,23.1066],[72.67214,23.10806],[72.66525,23.09484],[72.65995,23.09696],[72.65492,23.09478],[72.65038,23.10058],[72.64663,23.10122],[72.64281,23.09527],[72.63737,23.09198],[72.61036,23.09151],[72.6099,23.10079],[72.61174,23.10472],[72.6132,23.1046],[72.614,23.10833],[72.61685,23.10962],[72.61861,23.11505],[72.61296,23.11525],[72.61435,23.12329],[72.61247,23.12318],[72.61218,23.12602],[72.60854,23.12907],[72.59704,23.13194],[72.58808,23.12927],[72.58675,23.13049],[72.5827,23.12992],[72.57821,23.1182],[72.5715,23.12211],[72.56908,23.11613],[72.56308,23.11603],[72.56793,23.12685],[72.56668,23.12693],[72.56783,23.12795],[72.56698,23.13245],[72.56262,23.13727],[72.55788,23.13863],[72.5568,23.13617],[72.55233,23.13399],[72.54566,23.13195],[72.54058,23.13227],[72.53974,23.13731],[72.54188,23.13696],[72.54124,23.14082],[72.54332,23.14565],[72.54089,23.1488],[72.54543,23.15459],[72.54858,23.16401],[72.53743,23.16441],[72.53579,23.15714],[72.53076,23.14853],[72.52613,23.14814],[72.52538,23.15008],[72.5185,23.15052],[72.51182,23.15984],[72.50421,23.155],[72.50349,23.14837],[72.50506,23.14806],[72.50499,23.14416],[72.49392,23.14179],[72.48762,23.14492],[72.48306,23.14443],[72.48609,23.13779],[72.48452,23.1324],[72.48647,23.12526],[72.49556,23.11379],[72.49898,23.1123],[72.49801,23.09972],[72.48171,23.09724],[72.47867,23.09507],[72.4777,23.08944],[72.47568,23.08697],[72.46434,23.08338],[72.45971,23.08394],[72.46022,23.07954],[72.46579,23.08164],[72.46888,23.07646],[72.47396,23.07221],[72.47178,23.06363],[72.46198,23.06035],[72.45294,23.06257],[72.44881,23.06046],[72.44742,23.04754],[72.43929,23.04599],[72.43517,23.04351],[72.4266,23.04789],[72.43105,23.05568],[72.42969,23.05721],[72.43025,23.06324],[72.42764,23.06497],[72.41467,23.0646],[72.41281,23.0668],[72.40722,23.06791],[72.40753,23.06652],[72.40335,23.06516],[72.40303,23.05715],[72.39737,23.05724],[72.39734,23.05605],[72.38725,23.05174],[72.38809,23.05495],[72.38496,23.0589],[72.38114,23.06066],[72.38103,23.07337],[72.38427,23.07968],[72.37516,23.08094],[72.3716,23.08589],[72.3695,23.0936],[72.3655,23.09021],[72.35598,23.08824],[72.34864,23.09046],[72.34485,23.09945],[72.33487,23.10812],[72.32121,23.10767],[72.31591,23.10594],[72.30643,23.09773],[72.30526,23.08487],[72.31071,23.08113],[72.32287,23.06804],[72.32299,23.05577],[72.3164,23.05369],[72.30295,23.04568],[72.29536,23.0388],[72.29011,23.0434],[72.28836,23.05203],[72.28037,23.05945],[72.28299,23.06476],[72.28274,23.08015],[72.27907,23.08457],[72.25654,23.08739],[72.26125,23.10163],[72.25765,23.10676],[72.25173,23.10765],[72.24589,23.11169],[72.24188,23.11254],[72.24293,23.11475],[72.23788,23.12047],[72.21998,23.12494],[72.2161,23.12196],[72.19445,23.11874],[72.19499,23.11449],[72.1912,23.10689],[72.15951,23.10572],[72.1603,23.10913],[72.15557,23.11091],[72.15442,23.11296],[72.15639,23.11328],[72.15561,23.11547],[72.16119,23.11618],[72.1619,23.12738],[72.16365,23.12756],[72.16396,23.13113],[72.16405,23.13733],[72.16181,23.1378],[72.16186,23.14027],[72.18788,23.14415],[72.18395,23.15227],[72.18623,23.1616],[72.18344,23.16924],[72.18251,23.17146],[72.17316,23.1784],[72.17034,23.18449],[72.1677,23.19769],[72.17089,23.19854],[72.17573,23.20839],[72.18496,23.21409],[72.18481,23.22456],[72.18029,23.2414],[72.18515,23.24692],[72.17498,23.25946],[72.17492,23.27285],[72.18301,23.28225],[72.20047,23.27948],[72.20033,23.29389],[72.20808,23.30584],[72.20875,23.31376],[72.21742,23.31562],[72.22136,23.31286],[72.22451,23.3231],[72.23013,23.32923],[72.23093,23.32564],[72.23739,23.32603],[72.24531,23.32846],[72.24593,23.33124],[72.25094,23.33294],[72.24808,23.33529],[72.24828,23.33735],[72.25286,23.33945],[72.25406,23.34381],[72.25858,23.34362],[72.26109,23.34866],[72.26405,23.34922],[72.26703,23.35282],[72.26459,23.36489],[72.26025,23.37456],[72.26418,23.37526],[72.26509,23.37757],[72.27488,23.37971],[72.27355,23.38624],[72.28372,23.39238],[72.28848,23.39317],[72.28928,23.39877],[72.27312,23.40692],[72.26015,23.41032],[72.2566,23.41333],[72.25734,23.42103],[72.26146,23.4245],[72.25886,23.4253],[72.25731,23.43047],[72.25621,23.4298],[72.2564,23.4313],[72.2523,23.4337],[72.25331,23.43583],[72.24964,23.43801],[72.24966,23.44057],[72.24765,23.44002],[72.24732,23.44556],[72.24335,23.4451],[72.2428,23.43887],[72.23842,23.44016],[72.23943,23.43058],[72.23291,23.42877],[72.22917,23.42965],[72.22959,23.43112],[72.22779,23.43135],[72.22528,23.43783],[72.21139,23.43872],[72.20988,23.43055],[72.21174,23.424],[72.20577,23.42291],[72.20443,23.42136],[72.19169,23.42239],[72.19101,23.41657],[72.17982,23.42034],[72.17634,23.42281],[72.17471,23.42672],[72.17176,23.42752],[72.17312,23.43552],[72.17176,23.44422],[72.16497,23.44446],[72.1548,23.44806],[72.15304,23.45135],[72.14833,23.44991],[72.14247,23.45224],[72.14001,23.4491],[72.12985,23.45158],[72.12756,23.45389],[72.10906,23.44976],[72.10496,23.45199],[72.10224,23.45753],[72.09917,23.45977],[72.08774,23.45942],[72.086,23.45726],[72.06432,23.44737],[72.05193,23.44334],[72.04838,23.45156],[72.04288,23.45829],[72.03394,23.45723],[72.03328,23.47048],[72.02646,23.47556],[72.0258,23.47865],[72.02908,23.48072],[72.03544,23.5013],[72.03445,23.50819],[72.0302,23.50738],[72.02995,23.50878],[72.0254,23.50766],[72.02515,23.50609],[72.01556,23.50458],[72.01554,23.50326],[72.0049,23.49913],[71.99842,23.49875],[71.99298,23.48466],[71.98017,23.47854],[71.97942,23.47473],[71.97285,23.47099],[71.96378,23.46257],[71.96326,23.45586],[71.96716,23.43422],[71.97035,23.43109],[71.96839,23.40922],[71.96351,23.3977],[71.95606,23.38762],[71.94812,23.38928],[71.92829,23.38985],[71.90303,23.38085],[71.89842,23.38139],[71.89508,23.384],[71.89406,23.38713],[71.88786,23.39078],[71.87044,23.38167],[71.87179,23.37944],[71.872,23.36924],[71.88285,23.35774],[71.88298,23.35201],[71.89016,23.34279],[71.89044,23.33509],[71.89443,23.32938],[71.88844,23.3284],[71.87996,23.32158],[71.87621,23.30979],[71.88401,23.30243],[71.87979,23.29058],[71.87596,23.29064],[71.87257,23.27932],[71.87176,23.27197],[71.87826,23.26079],[71.87971,23.25374],[71.87541,23.24971],[71.87416,23.22525],[71.87,23.21853],[71.89701,23.2191],[71.90065,23.23346],[71.90206,23.24537],[71.90122,23.25324],[71.90254,23.25608],[71.90575,23.25693],[71.90679,23.26074],[71.91805,23.26164],[71.91973,23.26407],[71.92807,23.26566],[71.93356,23.26161],[71.94318,23.23698],[71.9469,23.23801],[71.94766,23.23979],[71.95772,23.23912],[71.96132,23.24044],[71.96217,23.24308],[71.96447,23.24355],[71.96998,23.25028],[71.99069,23.25045],[71.99569,23.24845],[71.99697,23.24574],[71.99668,23.23935],[71.99054,23.22332],[71.98828,23.20943],[71.97519,23.21073],[71.96709,23.20944],[71.9674,23.20826],[71.96327,23.20617],[71.96362,23.20439],[71.95949,23.20181],[71.95614,23.20221],[71.95454,23.20015],[71.94971,23.20407],[71.94618,23.19892],[71.94406,23.20109],[71.94086,23.19782],[71.94301,23.19724],[71.94221,23.19598],[71.93429,23.19378],[71.93126,23.19118],[71.92793,23.18047],[71.91201,23.17983],[71.9061,23.17623],[71.90807,23.16094],[71.90586,23.15918],[71.90474,23.14254],[71.90233,23.14156],[71.90012,23.13757],[71.90443,23.12107],[71.90348,23.11077],[71.89923,23.10493],[71.90014,23.10139],[71.90897,23.09064],[71.90886,23.08404],[71.91209,23.08489],[71.9137,23.08183],[71.91119,23.08058],[71.91357,23.07493],[71.91846,23.06912],[71.91879,23.06607],[71.93199,23.05982],[71.94549,23.06297],[71.95126,23.04763],[71.94857,23.04399],[71.9461,23.03544],[71.94991,23.03001],[71.95476,23.02783],[71.96208,23.02863],[71.95901,23.0357],[71.96077,23.04709],[71.97206,23.05747]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"439","area_level":"District","area_name":"Amreli","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[71.25606,20.81164],[71.25653,20.81184],[71.25675,20.81201],[71.25688,20.81228],[71.25707,20.81258],[71.25713,20.81276],[71.25713,20.81316],[71.25706,20.81334],[71.25698,20.81345],[71.25646,20.81385],[71.25631,20.81394],[71.25619,20.81398],[71.25608,20.81399],[71.25467,20.814],[71.25456,20.81398],[71.25415,20.81351],[71.25408,20.81332],[71.25416,20.81253],[71.25423,20.81235],[71.25467,20.81172],[71.25494,20.81164],[71.25591,20.81161],[71.25606,20.81164]]],[[[71.262,20.81504],[71.262,20.81523],[71.26207,20.81544],[71.26215,20.81556],[71.26293,20.81606],[71.26315,20.81634],[71.2631,20.81658],[71.26293,20.81682],[71.26277,20.81691],[71.26253,20.81692],[71.26221,20.81699],[71.26205,20.817],[71.26192,20.81697],[71.26098,20.81615],[71.26079,20.81596],[71.26074,20.81571],[71.26077,20.81541],[71.26081,20.81522],[71.26096,20.81499],[71.26109,20.81487],[71.26192,20.81486],[71.262,20.81504]]],[[[71.27065,20.81926],[71.27089,20.81938],[71.27104,20.81958],[71.2711,20.8198],[71.27108,20.82021],[71.27104,20.82036],[71.27093,20.82046],[71.27053,20.82056],[71.27029,20.82065],[71.27018,20.82077],[71.27019,20.82122],[71.27012,20.8213],[71.26946,20.82131],[71.26911,20.82124],[71.26889,20.82115],[71.26889,20.82001],[71.26936,20.81946],[71.26976,20.81929],[71.27024,20.81921],[71.27065,20.81926]]],[[[71.3042,20.83196],[71.30481,20.83229],[71.30491,20.83244],[71.3049,20.83254],[71.30481,20.83257],[71.30471,20.83255],[71.30449,20.83243],[71.30393,20.83223],[71.3037,20.83209],[71.30354,20.83195],[71.30342,20.83191],[71.30331,20.83191],[71.30317,20.83195],[71.30313,20.83201],[71.30297,20.83201],[71.30292,20.83197],[71.30291,20.83192],[71.30293,20.8318],[71.30297,20.83173],[71.30298,20.83168],[71.30293,20.83161],[71.30284,20.83157],[71.30255,20.83162],[71.30242,20.83152],[71.3024,20.83135],[71.3025,20.83108],[71.30262,20.83098],[71.3028,20.83092],[71.30314,20.83098],[71.30324,20.83112],[71.30324,20.83134],[71.3034,20.83153],[71.3037,20.83177],[71.3042,20.83196]]],[[[71.30916,20.83258],[71.30919,20.8328],[71.30916,20.83285],[71.30906,20.83289],[71.30894,20.83286],[71.3088,20.83276],[71.30866,20.8327],[71.30794,20.83263],[71.30784,20.8326],[71.30768,20.83253],[71.3076,20.83241],[71.30761,20.83234],[71.30771,20.83227],[71.30799,20.83228],[71.30833,20.83239],[71.30883,20.83252],[71.30901,20.83249],[71.30916,20.83258]]],[[[71.30407,20.83379],[71.30414,20.83418],[71.30399,20.83438],[71.30359,20.83437],[71.30322,20.83419],[71.30284,20.83406],[71.30277,20.83394],[71.30286,20.83381],[71.30317,20.83372],[71.30378,20.83368],[71.30407,20.83379]]],[[[71.45739,20.87864],[71.45731,20.87881],[71.45719,20.87887],[71.45716,20.87897],[71.45708,20.87897],[71.45693,20.87892],[71.45683,20.87881],[71.45679,20.87847],[71.45643,20.8786],[71.45619,20.87851],[71.45605,20.87834],[71.45605,20.87819],[71.45618,20.87806],[71.45629,20.87793],[71.45623,20.8778],[71.45611,20.87765],[71.45604,20.87744],[71.45609,20.8773],[71.45618,20.87727],[71.45665,20.8773],[71.45674,20.87727],[71.45678,20.87714],[71.45699,20.8771],[71.45756,20.8774],[71.45799,20.87719],[71.45826,20.87725],[71.4583,20.87735],[71.45827,20.87767],[71.4584,20.8777],[71.45873,20.8777],[71.45895,20.87772],[71.45913,20.87781],[71.45918,20.87799],[71.45911,20.87811],[71.45884,20.87819],[71.45823,20.87822],[71.45841,20.87828],[71.45863,20.87832],[71.4587,20.87843],[71.45869,20.87867],[71.45851,20.8788],[71.45831,20.87891],[71.45797,20.87897],[71.45789,20.87894],[71.45771,20.87883],[71.45761,20.8787],[71.45755,20.87857],[71.45739,20.87864]]],[[[71.53549,20.90268],[71.53562,20.90269],[71.53579,20.90277],[71.53595,20.90287],[71.5361,20.90301],[71.53615,20.90311],[71.53616,20.90317],[71.53614,20.90324],[71.53605,20.90331],[71.5359,20.90333],[71.53559,20.90328],[71.5354,20.90324],[71.53523,20.90322],[71.53509,20.9032],[71.53497,20.90316],[71.53483,20.90311],[71.53473,20.90304],[71.53468,20.90294],[71.53469,20.90287],[71.53473,20.90281],[71.5348,20.90276],[71.53498,20.9027],[71.53515,20.90267],[71.53532,20.90266],[71.53549,20.90268]]],[[[71.54819,20.91195],[71.54836,20.91206],[71.54845,20.9122],[71.54851,20.91238],[71.54847,20.91254],[71.54839,20.91264],[71.54803,20.91281],[71.54767,20.91291],[71.54733,20.91305],[71.54719,20.91317],[71.54714,20.91327],[71.54706,20.91337],[71.54699,20.9134],[71.5469,20.91341],[71.54678,20.91336],[71.54671,20.9133],[71.54664,20.91317],[71.54654,20.91305],[71.54638,20.91297],[71.54614,20.91289],[71.546,20.91281],[71.54587,20.91267],[71.54576,20.91246],[71.54574,20.91225],[71.54578,20.91204],[71.54591,20.91181],[71.54612,20.91175],[71.54651,20.9118],[71.54683,20.91175],[71.54751,20.91178],[71.54819,20.91195]]],[[[71.54518,20.91344],[71.54533,20.9135],[71.54552,20.91363],[71.54561,20.91376],[71.54567,20.91393],[71.54564,20.9141],[71.54554,20.91422],[71.54542,20.91428],[71.54531,20.91428],[71.54505,20.91407],[71.54496,20.91395],[71.54486,20.91377],[71.54476,20.91361],[71.54475,20.91352],[71.54483,20.91344],[71.54491,20.9134],[71.54503,20.9134],[71.54518,20.91344]]],[[[71.52079,20.91285],[71.52106,20.91297],[71.52125,20.9131],[71.5213,20.9132],[71.52132,20.9133],[71.5213,20.91338],[71.52126,20.91347],[71.52113,20.91353],[71.52091,20.91358],[71.52074,20.91357],[71.52054,20.91351],[71.52047,20.91347],[71.52021,20.91327],[71.52016,20.91316],[71.52018,20.91304],[71.52028,20.91294],[71.52046,20.91286],[71.5206,20.91283],[71.52079,20.91285]]],[[[71.51823,20.91255],[71.51753,20.9133],[71.517,20.91347],[71.51611,20.91346],[71.51254,20.91098],[71.51203,20.9102],[71.51253,20.90994],[71.51258,20.90929],[71.5129,20.90923],[71.51293,20.90887],[71.51196,20.90803],[71.51116,20.90876],[71.5109,20.90884],[71.51082,20.90836],[71.51136,20.90769],[71.51061,20.90698],[71.51049,20.90643],[71.50992,20.90608],[71.50955,20.90536],[71.50887,20.90516],[71.50801,20.90438],[71.50702,20.90311],[71.507,20.90287],[71.50779,20.90308],[71.50831,20.9021],[71.50907,20.90181],[71.50974,20.90183],[71.5104,20.9022],[71.51076,20.90197],[71.51285,20.90197],[71.51345,20.90265],[71.51416,20.90216],[71.51472,20.90213],[71.51637,20.9025],[71.51719,20.90332],[71.51771,20.90355],[71.52007,20.9031],[71.52043,20.90266],[71.52124,20.90273],[71.52144,20.90259],[71.52238,20.90286],[71.52286,20.90319],[71.52515,20.90331],[71.52534,20.9032],[71.52545,20.90257],[71.52638,20.90296],[71.52687,20.903],[71.5269,20.90267],[71.5271,20.90264],[71.52819,20.90264],[71.52864,20.90292],[71.52921,20.90255],[71.52959,20.90259],[71.52982,20.90282],[71.5305,20.90232],[71.53243,20.90294],[71.53084,20.90352],[71.53135,20.90359],[71.53137,20.90407],[71.53097,20.90435],[71.53018,20.90453],[71.53007,20.90497],[71.52989,20.90508],[71.52888,20.90535],[71.52812,20.90536],[71.52726,20.90596],[71.52672,20.90588],[71.52626,20.90604],[71.52607,20.90579],[71.52607,20.90544],[71.52457,20.90477],[71.5244,20.90462],[71.52446,20.90434],[71.52431,20.90417],[71.52355,20.9042],[71.5245,20.90492],[71.52296,20.90425],[71.52397,20.90526],[71.52385,20.90549],[71.52193,20.90502],[71.52156,20.90514],[71.52093,20.90586],[71.52049,20.90663],[71.51856,20.9111],[71.51863,20.9119],[71.51937,20.91261],[71.51936,20.91282],[71.51823,20.91255]]],[[[71.6531,21.11037],[71.65313,21.1119],[71.65294,21.11277],[71.65094,21.11312],[71.65075,21.1171],[71.64845,21.11644],[71.6486,21.11428],[71.64479,21.11139],[71.64504,21.11065],[71.64423,21.11001],[71.64433,21.10945],[71.64375,21.10945],[71.64315,21.11117],[71.64027,21.11058],[71.64116,21.10822],[71.6396,21.10709],[71.63883,21.10685],[71.63895,21.10614],[71.64122,21.10626],[71.64159,21.10452],[71.63448,21.10384],[71.63499,21.10154],[71.63499,21.09966],[71.63607,21.09979],[71.63641,21.09941],[71.64054,21.09999],[71.64087,21.10153],[71.64217,21.10062],[71.64268,21.0993],[71.64368,21.09826],[71.64232,21.09726],[71.64046,21.09671],[71.63981,21.09592],[71.63993,21.09771],[71.63818,21.09709],[71.63622,21.09728],[71.63626,21.09625],[71.63706,21.09634],[71.63756,21.09568],[71.63771,21.095],[71.63438,21.09459],[71.63453,21.09388],[71.63534,21.09222],[71.63701,21.09245],[71.63736,21.09153],[71.63764,21.08944],[71.63888,21.08848],[71.64004,21.08867],[71.64036,21.08937],[71.64086,21.08979],[71.64466,21.09062],[71.64328,21.09421],[71.64795,21.09573],[71.65051,21.0955],[71.6501,21.09707],[71.64946,21.09701],[71.64931,21.09776],[71.64812,21.09727],[71.64795,21.09822],[71.64729,21.09938],[71.64846,21.09971],[71.64822,21.10031],[71.64859,21.10039],[71.64887,21.10208],[71.64946,21.10223],[71.64931,21.10302],[71.6507,21.10373],[71.65267,21.09807],[71.65373,21.09815],[71.65315,21.10547],[71.6548,21.10627],[71.6531,21.11037]]],[[[70.87969,21.41149],[70.87885,21.4201],[70.87295,21.41785],[70.86569,21.41558],[70.86289,21.41293],[70.86201,21.41267],[70.86149,21.41172],[70.86162,21.41081],[70.86048,21.40913],[70.85979,21.40864],[70.85795,21.40844],[70.85723,21.4091],[70.84604,21.40891],[70.85145,21.39785],[70.86315,21.39273],[70.86794,21.38965],[70.86873,21.39455],[70.87168,21.40278],[70.87203,21.40285],[70.87257,21.40367],[70.87515,21.40512],[70.87712,21.40752],[70.87969,21.41149]]],[[[70.75654,21.67646],[70.75619,21.6768],[70.74962,21.67288],[70.74588,21.66956],[70.74357,21.66801],[70.73897,21.66707],[70.7358,21.66573],[70.73717,21.66494],[70.7377,21.66219],[70.73978,21.65618],[70.73971,21.65382],[70.74043,21.65214],[70.74025,21.64849],[70.74138,21.64578],[70.74326,21.64386],[70.74319,21.64101],[70.74547,21.64119],[70.74961,21.64226],[70.7512,21.64214],[70.76124,21.64345],[70.76555,21.64375],[70.76991,21.64344],[70.77011,21.64601],[70.77111,21.6471],[70.77082,21.64796],[70.77105,21.64982],[70.77242,21.65348],[70.77534,21.65934],[70.77749,21.66249],[70.77462,21.66797],[70.77159,21.67221],[70.76672,21.67152],[70.76437,21.67155],[70.7637,21.67347],[70.76345,21.67663],[70.76208,21.67701],[70.75757,21.67556],[70.75654,21.67646]]],[[[70.78289,21.75715],[70.78916,21.75869],[70.79207,21.76171],[70.79227,21.76288],[70.79295,21.76339],[70.79282,21.7677],[70.79351,21.77008],[70.80154,21.77362],[70.8009,21.77567],[70.79721,21.77863],[70.79221,21.78099],[70.78634,21.78149],[70.78897,21.78594],[70.78223,21.7922],[70.78198,21.79259],[70.78245,21.79406],[70.78176,21.7949],[70.77847,21.80172],[70.77515,21.80241],[70.76579,21.79633],[70.76565,21.78691],[70.7633,21.77994],[70.76224,21.77482],[70.76284,21.77272],[70.76289,21.76975],[70.76131,21.7686],[70.76038,21.76696],[70.75926,21.76629],[70.7603,21.76116],[70.76259,21.75887],[70.76539,21.75062],[70.76641,21.74928],[70.7735,21.75448],[70.77707,21.75638],[70.7789,21.75688],[70.78289,21.75715]]],[[[71.31758,22.03711],[71.30335,22.04127],[71.30244,22.03579],[71.30017,22.03566],[71.29985,22.03184],[71.28747,22.0258],[71.28695,22.02178],[71.28441,22.01963],[71.278,22.01889],[71.28005,22.01245],[71.27761,22.0112],[71.29101,21.9928],[71.29401,21.98311],[71.29631,21.98147],[71.29468,21.98059],[71.29465,21.97784],[71.29926,21.97576],[71.29888,21.97315],[71.29354,21.97358],[71.2929,21.97134],[71.28879,21.97042],[71.29409,21.96253],[71.28026,21.96054],[71.27129,21.96157],[71.26317,21.95771],[71.25976,21.95857],[71.25791,21.96417],[71.26116,21.96626],[71.2575,21.96904],[71.25489,21.96886],[71.25245,21.97803],[71.25459,21.97881],[71.25307,21.98448],[71.25454,21.98487],[71.25449,21.98768],[71.25673,21.98987],[71.25619,21.99966],[71.25799,22.00202],[71.25169,22.01079],[71.24566,22.01096],[71.24433,22.0067],[71.22985,22.00585],[71.20883,22.0093],[71.20184,22.00881],[71.19957,22.01211],[71.19559,22.01363],[71.1925,22.01161],[71.18835,22.01136],[71.18864,22.00773],[71.19405,22.00277],[71.199,22.00154],[71.2011,21.97118],[71.19469,21.96745],[71.18259,21.96407],[71.17986,21.96474],[71.17912,21.95949],[71.16817,21.96397],[71.16351,21.96276],[71.1613,21.96045],[71.16192,21.9564],[71.1496,21.95383],[71.14789,21.94503],[71.13884,21.94999],[71.12859,21.94709],[71.11973,21.93252],[71.11779,21.9245],[71.11901,21.92118],[71.11717,21.91978],[71.09559,21.91481],[71.09471,21.91696],[71.08504,21.91696],[71.06764,21.9105],[71.06611,21.90733],[71.05614,21.90424],[71.05747,21.89802],[71.0629,21.89547],[71.06157,21.89083],[71.0634,21.88569],[71.04927,21.87678],[71.04399,21.87547],[71.03665,21.87699],[71.03049,21.87428],[71.03496,21.86796],[71.04965,21.85376],[71.05757,21.84854],[71.0777,21.86014],[71.10533,21.87103],[71.10948,21.85127],[71.10533,21.84981],[71.10384,21.84175],[71.0895,21.83676],[71.09063,21.82809],[71.08437,21.82369],[71.08516,21.82228],[71.08342,21.82177],[71.08133,21.82583],[71.07062,21.82799],[71.06901,21.82607],[71.06434,21.82512],[71.04755,21.82425],[71.04676,21.81587],[71.04285,21.81323],[71.0399,21.80644],[71.05206,21.7913],[71.05181,21.78737],[71.04158,21.769],[71.04734,21.75587],[71.03757,21.75063],[71.03333,21.74409],[71.03011,21.74349],[71.02986,21.73941],[71.02296,21.73574],[71.01523,21.73712],[70.99063,21.73038],[70.99126,21.72616],[70.98761,21.72561],[70.98765,21.72727],[70.97824,21.72611],[70.97813,21.7279],[70.97411,21.72871],[70.96469,21.75],[70.95238,21.74305],[70.93035,21.74678],[70.92562,21.75892],[70.92031,21.75917],[70.92123,21.7633],[70.90611,21.76874],[70.8977,21.7698],[70.89909,21.76738],[70.89846,21.76301],[70.89263,21.76499],[70.8933,21.75671],[70.88919,21.75315],[70.88851,21.74801],[70.88715,21.74776],[70.88936,21.73778],[70.87969,21.73221],[70.87371,21.74065],[70.84972,21.73672],[70.83625,21.74268],[70.83571,21.74462],[70.82708,21.74314],[70.81491,21.74366],[70.81476,21.74181],[70.81774,21.7422],[70.81828,21.7395],[70.8146,21.73792],[70.81986,21.73811],[70.81937,21.73628],[70.82157,21.73294],[70.81841,21.73154],[70.81569,21.73408],[70.80483,21.73562],[70.80073,21.74157],[70.77815,21.73035],[70.78616,21.71966],[70.76761,21.70977],[70.77531,21.70026],[70.78006,21.70158],[70.78411,21.70572],[70.78513,21.70939],[70.79377,21.7093],[70.79373,21.71252],[70.79535,21.71416],[70.8084,21.71204],[70.80911,21.70883],[70.79945,21.70556],[70.80012,21.70127],[70.79566,21.69725],[70.79495,21.67583],[70.79659,21.66922],[70.79364,21.66624],[70.81035,21.63909],[70.81601,21.64375],[70.82806,21.63483],[70.85557,21.60597],[70.86401,21.59918],[70.87306,21.57739],[70.8794,21.57747],[70.88225,21.55313],[70.88145,21.54804],[70.89014,21.55005],[70.89254,21.54405],[70.89439,21.53508],[70.88828,21.52788],[70.88421,21.52954],[70.87198,21.52925],[70.86668,21.52694],[70.86474,21.52865],[70.86338,21.53403],[70.84886,21.53126],[70.84739,21.51666],[70.84617,21.51391],[70.84216,21.51122],[70.83794,21.51007],[70.8194,21.51053],[70.81445,21.51527],[70.80462,21.51496],[70.80643,21.50068],[70.80999,21.49091],[70.83361,21.49452],[70.82962,21.48916],[70.82743,21.46822],[70.8317,21.45687],[70.86653,21.46651],[70.87493,21.46036],[70.88385,21.44595],[70.88588,21.44597],[70.87932,21.4248],[70.87919,21.41863],[70.88919,21.40667],[70.88488,21.40506],[70.88575,21.40155],[70.89071,21.40296],[70.89264,21.39691],[70.88244,21.38725],[70.88287,21.38071],[70.88027,21.37823],[70.87377,21.37713],[70.8676,21.37995],[70.86634,21.3783],[70.86769,21.37035],[70.86935,21.36862],[70.86881,21.36365],[70.87127,21.36094],[70.87198,21.3461],[70.8736,21.34491],[70.87267,21.34262],[70.87469,21.33766],[70.87128,21.33373],[70.86679,21.33364],[70.86805,21.31911],[70.8726,21.31854],[70.87642,21.32052],[70.87889,21.31809],[70.88179,21.31781],[70.88812,21.32392],[70.89132,21.3232],[70.90053,21.32649],[70.91533,21.33702],[70.92157,21.34872],[70.93102,21.34067],[70.93134,21.33433],[70.93804,21.32236],[70.94223,21.32035],[70.94365,21.31199],[70.93945,21.31127],[70.93497,21.30641],[70.9321,21.30644],[70.9284,21.30359],[70.90823,21.29959],[70.89954,21.28668],[70.89571,21.28739],[70.89544,21.28014],[70.89408,21.27972],[70.89595,21.27834],[70.89133,21.27685],[70.89049,21.26864],[70.8714,21.26259],[70.86663,21.26216],[70.86131,21.26492],[70.82478,21.26157],[70.82689,21.25519],[70.81045,21.24799],[70.80416,21.23724],[70.80391,21.23374],[70.81946,21.20917],[70.82544,21.20415],[70.82364,21.19829],[70.8343,21.18877],[70.84073,21.18684],[70.8505,21.18026],[70.85353,21.16742],[70.86428,21.17357],[70.87056,21.17089],[70.87465,21.17577],[70.89279,21.18556],[70.90085,21.18197],[70.90627,21.18312],[70.92175,21.17988],[70.9477,21.1711],[70.9493,21.1691],[70.97816,21.16431],[70.9894,21.17046],[71.00546,21.16637],[71.00794,21.16102],[71.0162,21.1537],[71.02226,21.14477],[71.02696,21.1449],[71.04145,21.13294],[71.07589,21.11677],[71.08562,21.10368],[71.09312,21.09768],[71.09236,21.09343],[71.09589,21.08692],[71.11076,21.07973],[71.1128,21.07633],[71.11894,21.07865],[71.12537,21.07615],[71.13467,21.06749],[71.13453,21.05708],[71.13832,21.04258],[71.14851,21.03167],[71.14,21.0218],[71.1311,21.00641],[71.1294,20.9933],[71.13282,20.98979],[71.13143,20.98843],[71.12977,20.98917],[71.12521,20.98514],[71.12589,20.981],[71.12315,20.97595],[71.12357,20.96939],[71.12145,20.96621],[71.12306,20.9635],[71.13191,20.96009],[71.13704,20.95421],[71.13623,20.95025],[71.14326,20.95034],[71.14743,20.95183],[71.14516,20.95519],[71.15154,20.95462],[71.15149,20.95663],[71.15534,20.95962],[71.16145,20.95963],[71.16513,20.962],[71.16896,20.96017],[71.17335,20.96699],[71.17841,20.96471],[71.18752,20.9679],[71.18923,20.97545],[71.19357,20.97894],[71.21981,20.95712],[71.21806,20.95602],[71.20974,20.93564],[71.20568,20.93108],[71.20543,20.92701],[71.20157,20.92667],[71.20044,20.92433],[71.19677,20.92317],[71.1963,20.92466],[71.18969,20.92281],[71.18444,20.92607],[71.17759,20.91883],[71.19326,20.9021],[71.19094,20.89574],[71.18223,20.89266],[71.17654,20.88759],[71.17913,20.88106],[71.18543,20.87881],[71.18855,20.87337],[71.20481,20.8738],[71.20813,20.86186],[71.2149,20.85038],[71.21245,20.84509],[71.21372,20.84235],[71.21207,20.84032],[71.21515,20.83173],[71.22131,20.82702],[71.22078,20.8197],[71.22376,20.817],[71.21561,20.81082],[71.2119,20.80454],[71.20758,20.80325],[71.20294,20.79734],[71.20411,20.79477],[71.20916,20.80085],[71.21753,20.80201],[71.21845,20.80338],[71.23197,20.80411],[71.23629,20.80713],[71.23933,20.81173],[71.24698,20.81212],[71.25201,20.81518],[71.25801,20.8163],[71.26784,20.8225],[71.27334,20.82326],[71.27849,20.82725],[71.28258,20.82695],[71.29014,20.83024],[71.29395,20.82823],[71.29603,20.83028],[71.29451,20.83398],[71.29692,20.83169],[71.29709,20.83524],[71.30207,20.83541],[71.32173,20.84665],[71.33169,20.84721],[71.3471,20.85229],[71.35086,20.85024],[71.35228,20.85299],[71.35436,20.8505],[71.36408,20.85358],[71.36585,20.85188],[71.37687,20.85701],[71.38407,20.85676],[71.38497,20.85826],[71.38133,20.85947],[71.38182,20.86392],[71.37574,20.86503],[71.37429,20.86789],[71.37853,20.87335],[71.38449,20.8758],[71.39342,20.87428],[71.39559,20.87181],[71.39416,20.86774],[71.39686,20.86517],[71.40453,20.86813],[71.41035,20.86791],[71.41197,20.86651],[71.42225,20.86948],[71.42039,20.86653],[71.43998,20.86952],[71.44605,20.87703],[71.44706,20.87614],[71.45007,20.8776],[71.4488,20.87942],[71.44966,20.88086],[71.46293,20.88004],[71.4702,20.88727],[71.47705,20.88894],[71.47917,20.89721],[71.48253,20.90015],[71.48178,20.90633],[71.48857,20.91351],[71.49713,20.91773],[71.50521,20.91799],[71.5,20.91875],[71.5,20.92049],[71.50667,20.91877],[71.50322,20.92158],[71.50311,20.92668],[71.50916,20.93276],[71.50801,20.93296],[71.5103,20.93581],[71.50946,20.94188],[71.51665,20.94812],[71.52374,20.94795],[71.5275,20.95096],[71.53024,20.94378],[71.53311,20.94331],[71.54508,20.95002],[71.54895,20.94917],[71.55008,20.95223],[71.55269,20.95017],[71.55529,20.9524],[71.55637,20.95164],[71.55544,20.94996],[71.56558,20.94895],[71.56855,20.95304],[71.57977,20.95374],[71.5802,20.95745],[71.58898,20.96043],[71.59214,20.96001],[71.59685,20.96644],[71.59988,20.96653],[71.59766,20.96364],[71.60005,20.96292],[71.61073,20.96621],[71.61292,20.96859],[71.61077,20.96987],[71.61071,20.97382],[71.60749,20.97796],[71.61201,20.97487],[71.61598,20.97598],[71.61784,20.97383],[71.61883,20.97714],[71.61852,20.97126],[71.61508,20.96887],[71.61715,20.96699],[71.61974,20.9692],[71.62058,20.96722],[71.6282,20.96871],[71.64138,20.97525],[71.64771,20.97465],[71.65002,20.97838],[71.63884,20.97731],[71.63696,20.97765],[71.63677,20.98071],[71.64291,20.99087],[71.64879,20.99518],[71.66652,20.99843],[71.67131,20.99785],[71.67505,20.99479],[71.67737,20.99556],[71.67701,21.00186],[71.67294,21.00621],[71.67057,21.01707],[71.66411,21.02811],[71.6659,21.03148],[71.64045,21.02877],[71.63635,21.04032],[71.63932,21.0453],[71.63757,21.05879],[71.63504,21.06095],[71.62532,21.06194],[71.61306,21.0565],[71.61223,21.05339],[71.61012,21.05483],[71.60819,21.06946],[71.61776,21.07112],[71.61757,21.07269],[71.61976,21.07296],[71.62102,21.06922],[71.62654,21.07],[71.62741,21.07254],[71.62896,21.0727],[71.62747,21.07858],[71.62944,21.07933],[71.62817,21.08548],[71.6307,21.08559],[71.63096,21.08758],[71.62554,21.09459],[71.62757,21.09576],[71.62277,21.11286],[71.61583,21.1122],[71.61464,21.11731],[71.61282,21.11714],[71.61255,21.12069],[71.60904,21.12096],[71.60686,21.12291],[71.60606,21.13134],[71.59389,21.13512],[71.59026,21.1454],[71.5859,21.1437],[71.58527,21.14641],[71.58147,21.14511],[71.58171,21.14868],[71.57763,21.1476],[71.5705,21.15679],[71.56014,21.1594],[71.55469,21.15917],[71.55599,21.16437],[71.54911,21.17046],[71.54854,21.17386],[71.54587,21.17588],[71.54114,21.17681],[71.53519,21.17131],[71.5324,21.17446],[71.52618,21.17276],[71.51647,21.17389],[71.51665,21.17913],[71.52554,21.18583],[71.52226,21.18784],[71.52201,21.1902],[71.5261,21.19306],[71.52347,21.20474],[71.51774,21.2187],[71.52759,21.22807],[71.52306,21.25014],[71.52825,21.25553],[71.52805,21.25979],[71.53297,21.26392],[71.532,21.26827],[71.53362,21.26864],[71.53054,21.27046],[71.52869,21.27633],[71.5306,21.27936],[71.53225,21.29228],[71.53549,21.29507],[71.53527,21.2976],[71.5369,21.29896],[71.53528,21.30024],[71.53516,21.30326],[71.53669,21.30728],[71.53319,21.31032],[71.53446,21.31337],[71.52649,21.31692],[71.52703,21.32286],[71.52126,21.33682],[71.52271,21.33928],[71.52186,21.34216],[71.52598,21.3475],[71.52579,21.35035],[71.52789,21.35077],[71.52767,21.35469],[71.52948,21.3579],[71.53005,21.36631],[71.52815,21.37151],[71.52934,21.37298],[71.54809,21.37567],[71.55192,21.37095],[71.56277,21.36479],[71.58294,21.36922],[71.58427,21.37512],[71.58225,21.3759],[71.58088,21.38791],[71.58183,21.4058],[71.55777,21.40566],[71.55128,21.39719],[71.54405,21.41224],[71.54956,21.41298],[71.55194,21.41639],[71.5515,21.44318],[71.53316,21.44329],[71.52998,21.44607],[71.52465,21.4623],[71.49193,21.46132],[71.47793,21.48124],[71.48725,21.49421],[71.48695,21.50954],[71.4896,21.51926],[71.49286,21.52912],[71.5017,21.54519],[71.50896,21.55026],[71.52094,21.54903],[71.53671,21.55379],[71.54579,21.55897],[71.54551,21.56298],[71.54731,21.56415],[71.54831,21.56953],[71.55822,21.58342],[71.55201,21.59611],[71.55251,21.60252],[71.55377,21.60268],[71.55351,21.61059],[71.5511,21.61768],[71.55319,21.61816],[71.55713,21.62784],[71.58395,21.63546],[71.58879,21.62824],[71.61256,21.63306],[71.61675,21.63018],[71.62279,21.63253],[71.62143,21.64788],[71.61732,21.64601],[71.61766,21.648],[71.61461,21.64804],[71.61395,21.65078],[71.60911,21.65092],[71.60903,21.65331],[71.604,21.65566],[71.60221,21.6592],[71.58967,21.65901],[71.59222,21.66107],[71.58833,21.67438],[71.58822,21.68764],[71.58874,21.69057],[71.5955,21.69581],[71.59251,21.69721],[71.59319,21.69887],[71.5896,21.70647],[71.59538,21.70663],[71.59614,21.71161],[71.59887,21.71286],[71.59736,21.72048],[71.59986,21.72182],[71.60163,21.72781],[71.59569,21.73309],[71.5872,21.73679],[71.58633,21.7393],[71.57597,21.738],[71.57502,21.74188],[71.56627,21.74095],[71.55447,21.74734],[71.54457,21.76173],[71.54324,21.77019],[71.53976,21.7744],[71.5345,21.77689],[71.51623,21.7798],[71.51048,21.78663],[71.51037,21.79338],[71.5071,21.79331],[71.49953,21.80333],[71.49471,21.80306],[71.49474,21.80502],[71.48924,21.80561],[71.48911,21.80409],[71.4703,21.80008],[71.45549,21.82629],[71.45582,21.82937],[71.45855,21.83147],[71.45935,21.83909],[71.45773,21.83954],[71.4594,21.84575],[71.44774,21.8518],[71.44948,21.86498],[71.45467,21.86616],[71.45352,21.87086],[71.44945,21.87079],[71.44864,21.87522],[71.44523,21.8751],[71.44319,21.87126],[71.44,21.87129],[71.43817,21.87645],[71.42572,21.87802],[71.42605,21.8852],[71.42382,21.88578],[71.42192,21.87937],[71.42452,21.87875],[71.42331,21.87752],[71.4184,21.87829],[71.41799,21.87606],[71.41668,21.87656],[71.41765,21.88242],[71.4163,21.88287],[71.41702,21.88685],[71.42289,21.88676],[71.42385,21.89099],[71.41804,21.89598],[71.41774,21.90429],[71.42468,21.91143],[71.43404,21.90608],[71.43971,21.90824],[71.44798,21.90783],[71.45377,21.89878],[71.46046,21.89642],[71.45979,21.90951],[71.46219,21.91257],[71.46695,21.9284],[71.46372,21.93158],[71.46159,21.93156],[71.4582,21.93758],[71.45922,21.93989],[71.45546,21.94194],[71.45188,21.9408],[71.45013,21.94257],[71.45065,21.94717],[71.44797,21.95152],[71.44242,21.95281],[71.4188,21.94491],[71.41405,21.94595],[71.40935,21.95022],[71.40511,21.94906],[71.4023,21.95073],[71.39354,21.96229],[71.39317,21.96691],[71.39071,21.97078],[71.39248,21.97724],[71.39129,21.98325],[71.38183,21.98913],[71.37151,21.98389],[71.34802,21.98432],[71.34821,21.98272],[71.34432,21.9824],[71.33996,21.99632],[71.33925,22.00163],[71.34086,22.00368],[71.33816,22.00461],[71.33398,22.00341],[71.33505,22.01707],[71.3322,22.01902],[71.33303,22.02629],[71.33057,22.03138],[71.31758,22.03711]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"44","area_level":"District","area_name":"Chandigarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.77233,30.79414],[76.77151,30.79521],[76.76744,30.79423],[76.76117,30.7911],[76.75726,30.78685],[76.75171,30.78424],[76.75234,30.78025],[76.74331,30.77592],[76.7455,30.77227],[76.74374,30.77142],[76.74299,30.76942],[76.73019,30.76465],[76.7267,30.76527],[76.72568,30.76642],[76.7207,30.76316],[76.71847,30.7639],[76.71579,30.76273],[76.71392,30.76309],[76.7136,30.76199],[76.71076,30.76098],[76.70533,30.75602],[76.70707,30.75382],[76.70794,30.74973],[76.70715,30.74782],[76.7059,30.7474],[76.70664,30.74465],[76.70518,30.74292],[76.70747,30.73945],[76.71419,30.74093],[76.71572,30.73721],[76.72127,30.72997],[76.72576,30.72783],[76.72957,30.72348],[76.7311,30.72356],[76.73121,30.71741],[76.72855,30.71578],[76.73137,30.71258],[76.72909,30.71177],[76.73003,30.70683],[76.7391,30.70575],[76.73936,30.70033],[76.7379,30.69981],[76.73962,30.69806],[76.73932,30.69286],[76.74717,30.6955],[76.74777,30.68754],[76.75026,30.68831],[76.75276,30.68449],[76.75931,30.68656],[76.76431,30.68636],[76.77018,30.67982],[76.7744,30.6721],[76.77687,30.67035],[76.77899,30.67119],[76.78145,30.67427],[76.78995,30.6756],[76.79672,30.66751],[76.80047,30.6702],[76.80259,30.66649],[76.80876,30.66732],[76.81167,30.67004],[76.8165,30.67138],[76.81691,30.67296],[76.82092,30.67489],[76.821,30.67757],[76.82199,30.67844],[76.82745,30.68213],[76.82914,30.68093],[76.82922,30.68196],[76.83189,30.68323],[76.82762,30.68767],[76.82621,30.68668],[76.82516,30.68825],[76.82755,30.6898],[76.82738,30.69197],[76.83022,30.69345],[76.8286,30.69465],[76.83528,30.70155],[76.83555,30.70358],[76.84392,30.70798],[76.84723,30.71228],[76.84832,30.7153],[76.84677,30.71689],[76.84945,30.71827],[76.84503,30.71719],[76.84357,30.71921],[76.84607,30.72229],[76.8494,30.72339],[76.84639,30.72968],[76.84822,30.7303],[76.84742,30.73141],[76.84319,30.73111],[76.84184,30.73272],[76.83716,30.73345],[76.8315,30.73951],[76.83686,30.74266],[76.83494,30.74184],[76.83343,30.74655],[76.83384,30.74983],[76.83902,30.7512],[76.8358,30.75581],[76.82635,30.7633],[76.82421,30.76096],[76.82011,30.76085],[76.81813,30.75743],[76.81768,30.75409],[76.81561,30.75271],[76.80537,30.76497],[76.81812,30.77129],[76.81957,30.77365],[76.81812,30.77544],[76.81865,30.77791],[76.81544,30.77801],[76.81352,30.78017],[76.81212,30.77925],[76.80917,30.77936],[76.80744,30.77739],[76.80213,30.77557],[76.79818,30.77206],[76.79834,30.77111],[76.79578,30.77095],[76.79169,30.76871],[76.79047,30.77071],[76.78348,30.77057],[76.77959,30.77769],[76.7873,30.77895],[76.78278,30.78917],[76.77556,30.79051],[76.77233,30.79414]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"440","area_level":"District","area_name":"Anand","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.02614,22.73478],[73.02482,22.73484],[73.02507,22.73154],[73.02172,22.72543],[73.01388,22.72538],[73.01163,22.72698],[73.00733,22.72617],[73.00356,22.72269],[73.00373,22.71924],[73.00554,22.71723],[73.00399,22.71557],[73.00609,22.71178],[73.0085,22.71099],[73.00921,22.70535],[73.00754,22.70572],[73.00779,22.70423],[73.00525,22.70266],[72.99733,22.70003],[72.99518,22.68825],[72.99219,22.68787],[72.99344,22.68049],[72.9918,22.67199],[72.99,22.67144],[72.99001,22.66758],[72.98812,22.66555],[72.98486,22.65368],[72.97632,22.65287],[72.97512,22.64171],[72.96277,22.63391],[72.96187,22.63615],[72.94093,22.63005],[72.92978,22.62917],[72.92501,22.60599],[72.92216,22.60337],[72.91869,22.59574],[72.91318,22.59304],[72.90572,22.59265],[72.90075,22.59034],[72.89759,22.59495],[72.87888,22.58555],[72.86721,22.58243],[72.86411,22.5878],[72.85972,22.59141],[72.86305,22.59374],[72.86298,22.60087],[72.87503,22.60351],[72.87493,22.61092],[72.87397,22.61392],[72.87175,22.61486],[72.87189,22.62039],[72.86021,22.6171],[72.85381,22.61839],[72.85643,22.60951],[72.8498,22.60574],[72.85062,22.6017],[72.84336,22.5973],[72.83972,22.59869],[72.83325,22.59683],[72.83054,22.59429],[72.82724,22.59579],[72.8272,22.60394],[72.82252,22.6036],[72.8219,22.60718],[72.8105,22.60815],[72.80826,22.61151],[72.8043,22.61125],[72.80177,22.60869],[72.79604,22.60936],[72.7959,22.61408],[72.79353,22.61676],[72.79273,22.62145],[72.79021,22.62326],[72.77673,22.61982],[72.77759,22.6157],[72.77094,22.61225],[72.77379,22.60713],[72.77637,22.59396],[72.77946,22.59014],[72.77698,22.58851],[72.77061,22.59052],[72.76077,22.59084],[72.7566,22.5919],[72.7561,22.59363],[72.75219,22.59285],[72.75043,22.59713],[72.75233,22.5989],[72.75286,22.60406],[72.75695,22.61264],[72.75209,22.61474],[72.75144,22.61343],[72.74447,22.61368],[72.74487,22.61227],[72.73989,22.61207],[72.73809,22.61049],[72.73519,22.61157],[72.73555,22.61409],[72.7378,22.61338],[72.73786,22.61576],[72.7343,22.61766],[72.73512,22.61927],[72.73228,22.62536],[72.73782,22.62591],[72.73809,22.62885],[72.74005,22.62806],[72.74168,22.63002],[72.74555,22.63763],[72.74279,22.6408],[72.74723,22.6412],[72.74396,22.64426],[72.74072,22.64519],[72.73377,22.64055],[72.72754,22.6293],[72.72487,22.62844],[72.71891,22.63086],[72.71661,22.62767],[72.71729,22.62477],[72.71426,22.62463],[72.71441,22.63067],[72.70848,22.63374],[72.70397,22.63382],[72.69566,22.63012],[72.68562,22.62919],[72.68688,22.62421],[72.68545,22.6201],[72.68705,22.61315],[72.69027,22.6088],[72.68863,22.60847],[72.68897,22.60538],[72.69126,22.60243],[72.69382,22.60293],[72.69396,22.5989],[72.70574,22.59945],[72.7069,22.59542],[72.70926,22.59552],[72.71047,22.58974],[72.6976,22.58194],[72.69424,22.58893],[72.69132,22.59027],[72.67529,22.58596],[72.67238,22.57974],[72.67369,22.57901],[72.67312,22.57677],[72.6685,22.5725],[72.67134,22.56406],[72.66439,22.55914],[72.66052,22.55841],[72.6612,22.55302],[72.65551,22.55221],[72.64904,22.54751],[72.64673,22.54458],[72.6472,22.54091],[72.64366,22.53987],[72.6411,22.53534],[72.64235,22.52888],[72.65109,22.52827],[72.66698,22.5303],[72.67137,22.50593],[72.66617,22.50369],[72.65223,22.50101],[72.65224,22.50695],[72.6509,22.50969],[72.64905,22.50988],[72.63859,22.50716],[72.64036,22.50368],[72.63575,22.50384],[72.63379,22.50605],[72.62861,22.5073],[72.62781,22.50967],[72.6214,22.5095],[72.61897,22.51332],[72.60475,22.50957],[72.6044,22.50497],[72.59942,22.50076],[72.5967,22.50253],[72.59385,22.50026],[72.58892,22.50021],[72.57699,22.50369],[72.57243,22.51161],[72.57492,22.515],[72.57367,22.52132],[72.56756,22.52001],[72.56735,22.54353],[72.55763,22.5415],[72.55745,22.55274],[72.55243,22.55582],[72.55194,22.56196],[72.55409,22.56783],[72.5467,22.56988],[72.53294,22.56929],[72.53357,22.5881],[72.52579,22.58756],[72.52599,22.59812],[72.52409,22.59749],[72.52107,22.59943],[72.51752,22.60461],[72.51839,22.60583],[72.51605,22.61176],[72.51239,22.6134],[72.50509,22.61403],[72.50358,22.60573],[72.49577,22.60344],[72.48789,22.59862],[72.46565,22.5775],[72.44763,22.57107],[72.44099,22.56547],[72.43182,22.57372],[72.42823,22.57353],[72.42627,22.57173],[72.42249,22.56687],[72.42248,22.56253],[72.43695,22.5448],[72.44004,22.53507],[72.43877,22.50919],[72.42487,22.48931],[72.40987,22.4771],[72.40815,22.47612],[72.4069,22.4818],[72.3916,22.47619],[72.37573,22.47329],[72.37811,22.45919],[72.37681,22.45239],[72.37322,22.45053],[72.36383,22.45355],[72.36056,22.44824],[72.36026,22.4448],[72.35593,22.44044],[72.36696,22.44128],[72.37334,22.44682],[72.36798,22.40723],[72.34151,22.38669],[72.34672,22.37822],[72.3835,22.37335],[72.39354,22.36804],[72.3995,22.36299],[72.40095,22.35968],[72.40157,22.35311],[72.39972,22.34925],[72.38808,22.33831],[72.38634,22.33459],[72.38655,22.33017],[72.38206,22.32307],[72.37404,22.31735],[72.3702,22.30667],[72.36238,22.29542],[72.36248,22.27159],[72.35839,22.24916],[72.33919,22.21385],[72.33409,22.19235],[72.33557,22.18508],[72.34247,22.16892],[72.39325,22.10528],[72.43345,22.14025],[72.49941,22.17923],[72.51694,22.2015],[72.53132,22.2158],[72.54707,22.2247],[72.5629,22.23052],[72.57582,22.23282],[72.6197,22.23387],[72.63416,22.23205],[72.662,22.2233],[72.69516,22.2008],[72.69896,22.19991],[72.71269,22.20912],[72.7401,22.22029],[72.77516,22.22919],[72.79485,22.24189],[72.80273,22.25228],[72.81493,22.25472],[72.8335,22.27151],[72.83984,22.27482],[72.86859,22.27462],[72.88708,22.26317],[72.89536,22.25988],[72.90688,22.26083],[72.91297,22.26308],[72.91671,22.26763],[72.91696,22.27431],[72.91127,22.28785],[72.91113,22.29366],[72.91657,22.30092],[72.9258,22.30584],[72.93744,22.30638],[72.94416,22.30352],[72.94971,22.28956],[72.95171,22.26331],[72.9682,22.26279],[72.97453,22.2541],[73.00924,22.2677],[73.0351,22.29579],[73.05181,22.3043],[73.05988,22.31106],[73.06363,22.32044],[73.05335,22.33938],[73.04679,22.35891],[73.04676,22.36278],[73.05273,22.37337],[73.05744,22.37577],[73.06797,22.38527],[73.07297,22.39706],[73.06573,22.41946],[73.06502,22.42835],[73.09336,22.45553],[73.09367,22.46562],[73.0899,22.47972],[73.08788,22.50274],[73.09224,22.51085],[73.09703,22.51175],[73.09996,22.51555],[73.10681,22.51431],[73.11654,22.51594],[73.13735,22.52614],[73.15025,22.55206],[73.15357,22.56563],[73.15347,22.58293],[73.1562,22.58884],[73.16017,22.59255],[73.18455,22.60249],[73.19129,22.60322],[73.20034,22.61744],[73.20967,22.6204],[73.21805,22.62084],[73.2198,22.62633],[73.21679,22.63394],[73.21876,22.63683],[73.21247,22.64409],[73.21297,22.65145],[73.20775,22.6515],[73.20023,22.66603],[73.19631,22.66612],[73.19451,22.67049],[73.19982,22.67143],[73.2003,22.66861],[73.2014,22.66896],[73.20117,22.67641],[73.20372,22.67783],[73.2023,22.6833],[73.18276,22.68711],[73.15792,22.68141],[73.15617,22.68506],[73.15118,22.68833],[73.14739,22.6971],[73.14565,22.69733],[73.14551,22.70478],[73.14363,22.70481],[73.14195,22.71155],[73.13646,22.71741],[73.12483,22.72209],[73.11275,22.71845],[73.10449,22.71964],[73.09748,22.7178],[73.09696,22.72303],[73.10059,22.72475],[73.09968,22.72764],[73.08577,22.72511],[73.0855,22.72355],[73.08318,22.72402],[73.08144,22.72124],[73.08009,22.72268],[73.07854,22.72046],[73.07566,22.72034],[73.07486,22.72233],[73.06533,22.71701],[73.0609,22.71906],[73.05242,22.71842],[73.04432,22.71321],[73.04468,22.71623],[73.04299,22.71773],[73.04131,22.71715],[73.04249,22.7186],[73.03677,22.7213],[73.03701,22.72602],[73.03859,22.72482],[73.03978,22.72623],[73.03899,22.72897],[73.03379,22.73021],[73.03261,22.73438],[73.02614,22.73478]],[[72.74556,22.60441],[72.74699,22.60086],[72.74534,22.59989],[72.7459,22.59666],[72.74169,22.59846],[72.74028,22.60572],[72.74556,22.60441]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"441","area_level":"District","area_name":"Banas Kantha","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[71.2312,24.2135],[71.23006,24.21502],[71.22457,24.2184],[71.21823,24.20903],[71.21628,24.20447],[71.22394,24.20472],[71.23485,24.20284],[71.24061,24.20627],[71.24198,24.21305],[71.23505,24.20993],[71.2312,24.2135]]],[[[71.17838,24.25369],[71.17635,24.25677],[71.17284,24.25874],[71.16785,24.25976],[71.15731,24.26526],[71.15234,24.26667],[71.15072,24.26956],[71.14554,24.27135],[71.14224,24.27369],[71.13329,24.27458],[71.12883,24.2693],[71.13121,24.26219],[71.13176,24.25779],[71.13766,24.2493],[71.13956,24.2508],[71.1476,24.24515],[71.15122,24.24151],[71.15988,24.23566],[71.16219,24.2329],[71.1619,24.22832],[71.17016,24.22361],[71.17795,24.21624],[71.18745,24.21152],[71.19813,24.21461],[71.20486,24.21815],[71.21149,24.22799],[71.21263,24.23409],[71.21089,24.24156],[71.20762,24.24524],[71.1958,24.24866],[71.1871,24.25203],[71.17838,24.25369]]],[[[71.53382,24.68033],[71.5289,24.6847],[71.52134,24.68317],[71.51375,24.67892],[71.50264,24.68214],[71.5,24.68043],[71.49136,24.67926],[71.4787,24.67952],[71.46199,24.66652],[71.44772,24.66839],[71.42901,24.65692],[71.42258,24.64783],[71.39838,24.64078],[71.39623,24.63503],[71.39116,24.63129],[71.38299,24.63366],[71.38129,24.62887],[71.37739,24.62592],[71.37327,24.6277],[71.36934,24.62642],[71.36713,24.6293],[71.35864,24.63075],[71.34817,24.66094],[71.3135,24.64765],[71.30437,24.63528],[71.30455,24.62866],[71.298,24.62612],[71.2987,24.62407],[71.28782,24.61623],[71.28461,24.59388],[71.30437,24.59042],[71.30662,24.58838],[71.30074,24.57946],[71.30117,24.57501],[71.29911,24.57742],[71.29727,24.56433],[71.29576,24.56499],[71.29454,24.56306],[71.29264,24.56345],[71.28604,24.55931],[71.28939,24.55583],[71.28575,24.55335],[71.28072,24.55266],[71.27887,24.54706],[71.27577,24.54505],[71.27839,24.54565],[71.27072,24.53794],[71.26649,24.5363],[71.26639,24.53431],[71.26318,24.53512],[71.26023,24.53338],[71.25676,24.50814],[71.25865,24.50673],[71.26909,24.50984],[71.29236,24.51915],[71.34847,24.51761],[71.34532,24.5],[71.33904,24.49352],[71.33348,24.48214],[71.33398,24.47982],[71.33135,24.47936],[71.33528,24.47577],[71.33639,24.47936],[71.34232,24.47541],[71.34187,24.47357],[71.33387,24.47017],[71.33544,24.46821],[71.3379,24.46938],[71.34439,24.46619],[71.34922,24.45758],[71.33764,24.45594],[71.33115,24.46085],[71.32246,24.45263],[71.3205,24.44552],[71.32068,24.44392],[71.32407,24.44306],[71.33615,24.43042],[71.34379,24.43195],[71.34301,24.42541],[71.34122,24.42415],[71.33773,24.42572],[71.33327,24.41961],[71.32424,24.4136],[71.32223,24.40679],[71.31898,24.40228],[71.32296,24.39422],[71.33467,24.39361],[71.33938,24.39122],[71.34251,24.39318],[71.34736,24.39253],[71.34786,24.38954],[71.34606,24.38678],[71.3526,24.3898],[71.35293,24.38755],[71.36611,24.39153],[71.36612,24.38795],[71.36201,24.38408],[71.36607,24.38218],[71.36492,24.38114],[71.36649,24.38031],[71.3672,24.37587],[71.37355,24.37853],[71.37278,24.37578],[71.37435,24.37458],[71.37185,24.37333],[71.37245,24.37056],[71.37778,24.36191],[71.38082,24.3599],[71.3831,24.35376],[71.38079,24.35318],[71.38402,24.35072],[71.3826,24.34986],[71.37587,24.35342],[71.37111,24.35081],[71.37412,24.34881],[71.38195,24.34799],[71.38162,24.34569],[71.37799,24.34339],[71.37823,24.33929],[71.37611,24.33783],[71.3748,24.33389],[71.37149,24.33538],[71.37078,24.33305],[71.36664,24.33166],[71.36336,24.33314],[71.36233,24.32944],[71.35352,24.3302],[71.35247,24.32852],[71.34852,24.32847],[71.34807,24.32637],[71.34224,24.32805],[71.33253,24.32346],[71.32537,24.32378],[71.32553,24.32195],[71.31983,24.32367],[71.32118,24.31939],[71.3186,24.31956],[71.31668,24.31704],[71.31415,24.32207],[71.31041,24.31181],[71.30741,24.3118],[71.30656,24.30863],[71.30311,24.30844],[71.30365,24.30653],[71.30136,24.30638],[71.2995,24.30305],[71.29613,24.30389],[71.29643,24.3016],[71.29459,24.30099],[71.29459,24.2964],[71.29775,24.29288],[71.29803,24.28942],[71.3003,24.28647],[71.30182,24.28671],[71.29983,24.28424],[71.30328,24.282],[71.30065,24.28168],[71.30094,24.27968],[71.30316,24.27886],[71.30097,24.27759],[71.30463,24.27416],[71.30334,24.27344],[71.305,24.27143],[71.29989,24.27282],[71.30136,24.27],[71.29989,24.27019],[71.29843,24.26612],[71.29719,24.26614],[71.30273,24.25975],[71.28926,24.25829],[71.28609,24.26057],[71.2838,24.26583],[71.27968,24.26311],[71.27702,24.26339],[71.27631,24.25894],[71.27424,24.25777],[71.27711,24.25042],[71.28279,24.25007],[71.2854,24.24205],[71.28555,24.24861],[71.28949,24.24919],[71.29061,24.24721],[71.29177,24.24815],[71.29251,24.24384],[71.28906,24.24415],[71.2883,24.23863],[71.28583,24.24093],[71.28561,24.23864],[71.2798,24.23655],[71.28527,24.23085],[71.28854,24.22973],[71.29051,24.22506],[71.29262,24.22676],[71.29815,24.22264],[71.30219,24.22509],[71.3035,24.22342],[71.30996,24.22209],[71.31015,24.21937],[71.30661,24.2192],[71.30413,24.21762],[71.30492,24.21602],[71.30022,24.21484],[71.30291,24.20747],[71.30491,24.2073],[71.30865,24.20215],[71.31145,24.20381],[71.31754,24.19796],[71.32718,24.19725],[71.32972,24.19569],[71.32559,24.19027],[71.32595,24.18215],[71.33365,24.18215],[71.33843,24.18574],[71.34834,24.18782],[71.35958,24.18746],[71.36074,24.18573],[71.35637,24.18152],[71.3607,24.17738],[71.35837,24.17318],[71.35448,24.17262],[71.34941,24.17564],[71.34518,24.17403],[71.3454,24.17691],[71.34355,24.17726],[71.34239,24.17521],[71.34531,24.16858],[71.33754,24.16378],[71.33516,24.16422],[71.33339,24.16687],[71.33059,24.16436],[71.32892,24.17196],[71.32756,24.17085],[71.32733,24.16648],[71.32494,24.16431],[71.31438,24.16412],[71.30941,24.16618],[71.30563,24.16077],[71.30212,24.15991],[71.29859,24.16109],[71.29525,24.16657],[71.2872,24.16863],[71.28224,24.17401],[71.27277,24.17633],[71.2697,24.17507],[71.27193,24.1722],[71.26862,24.1721],[71.26702,24.16702],[71.25759,24.15897],[71.2678,24.15922],[71.28076,24.15284],[71.28185,24.15031],[71.28549,24.14971],[71.27922,24.14749],[71.27724,24.14515],[71.2718,24.14468],[71.27278,24.1414],[71.27459,24.13942],[71.27978,24.1382],[71.28348,24.13454],[71.28218,24.13263],[71.29385,24.13319],[71.30174,24.12918],[71.3025,24.1253],[71.3044,24.12518],[71.30241,24.12106],[71.31085,24.12218],[71.31291,24.12026],[71.32498,24.11972],[71.3284,24.1165],[71.33171,24.1196],[71.33636,24.10534],[71.32285,24.09718],[71.31806,24.09727],[71.3161,24.0956],[71.31697,24.09235],[71.31386,24.08209],[71.31752,24.07871],[71.31134,24.07489],[71.31566,24.07188],[71.31215,24.06917],[71.31262,24.06734],[71.30618,24.06467],[71.30483,24.0612],[71.30829,24.05656],[71.32188,24.05228],[71.31917,24.04615],[71.30092,24.03172],[71.29161,24.01975],[71.28854,24.01039],[71.28865,24.00128],[71.28502,23.99164],[71.29538,23.98701],[71.30922,23.99333],[71.31908,23.98376],[71.32713,23.97936],[71.33149,23.97276],[71.3354,23.97029],[71.34618,23.97006],[71.34884,23.96866],[71.35825,23.9705],[71.36013,23.96862],[71.366,23.97058],[71.36552,23.96566],[71.37083,23.96521],[71.37209,23.96084],[71.36998,23.96032],[71.37418,23.95517],[71.38392,23.95389],[71.38807,23.95819],[71.38845,23.96523],[71.38962,23.96599],[71.39154,23.96427],[71.39523,23.96579],[71.40584,23.9498],[71.4044,23.94],[71.41612,23.92524],[71.41605,23.92957],[71.42166,23.93496],[71.43235,23.93913],[71.44129,23.9395],[71.44463,23.9413],[71.44823,23.96006],[71.45446,23.9647],[71.4488,23.96737],[71.44654,23.97091],[71.44906,23.97485],[71.44976,23.98208],[71.44535,23.97994],[71.44259,23.98104],[71.44483,23.98631],[71.44642,23.98655],[71.44588,23.98787],[71.45439,23.99264],[71.46105,23.99908],[71.46402,24.01334],[71.47903,24.02529],[71.48066,24.02345],[71.48417,24.02441],[71.48527,24.02235],[71.48432,24.0205],[71.48635,24.01746],[71.49108,24.01482],[71.4914,24.00044],[71.48681,23.99046],[71.48989,23.98792],[71.48753,23.97539],[71.49218,23.97455],[71.49813,23.96973],[71.51683,23.9802],[71.54608,23.98192],[71.54713,23.99512],[71.55166,24.00089],[71.55439,24.00099],[71.5657,23.99614],[71.56439,23.99288],[71.56704,23.98357],[71.56052,23.97943],[71.57033,23.98052],[71.57534,23.97555],[71.58685,23.97755],[71.59157,23.9765],[71.58671,23.9693],[71.58693,23.96341],[71.59436,23.95581],[71.59871,23.94454],[71.6052,23.94249],[71.61341,23.94406],[71.61827,23.95168],[71.62188,23.95406],[71.63398,23.95463],[71.64328,23.9574],[71.64994,23.96414],[71.66506,23.97248],[71.68854,23.97083],[71.69392,23.96213],[71.69296,23.94741],[71.69763,23.93489],[71.69777,23.93039],[71.70834,23.92749],[71.71738,23.92768],[71.71783,23.9188],[71.7146,23.90875],[71.71292,23.88972],[71.70877,23.88217],[71.71436,23.87616],[71.71433,23.87016],[71.71965,23.86118],[71.724,23.85952],[71.72763,23.85562],[71.73134,23.85588],[71.74496,23.85046],[71.74823,23.84299],[71.75086,23.84085],[71.7617,23.84164],[71.76168,23.83914],[71.76491,23.83708],[71.76445,23.82963],[71.76652,23.82683],[71.77202,23.83304],[71.77116,23.83597],[71.77265,23.83892],[71.77609,23.83906],[71.77898,23.84486],[71.78236,23.84423],[71.7972,23.85096],[71.80363,23.85118],[71.81511,23.85523],[71.8151,23.85225],[71.82399,23.84968],[71.82518,23.84568],[71.82785,23.84445],[71.83929,23.84366],[71.86135,23.84698],[71.86698,23.86123],[71.86737,23.86959],[71.87567,23.87108],[71.88946,23.87841],[71.89701,23.879],[71.90125,23.87331],[71.91173,23.88135],[71.92414,23.88452],[71.93688,23.88057],[71.95825,23.88884],[71.97246,23.8882],[71.97774,23.88935],[71.97681,23.90068],[71.97437,23.9056],[71.96139,23.91264],[71.95869,23.91765],[71.95017,23.91715],[71.93813,23.92766],[71.93829,23.93173],[71.93278,23.94767],[71.92913,23.95235],[71.94046,23.96147],[71.94778,23.96332],[71.94885,23.97316],[71.92877,23.97956],[71.92367,24.00384],[71.9254,24.00923],[71.94226,24.00793],[71.94252,24.00632],[71.94913,24.00811],[71.95321,24.0004],[71.96129,23.99255],[71.96101,23.99108],[71.9831,23.99816],[71.99225,23.99375],[71.99272,23.98778],[71.99491,23.98497],[71.99892,23.98353],[71.99924,23.98009],[71.99683,23.97489],[72.0,23.9672],[72.00658,23.96667],[72.00761,23.96991],[72.00553,23.97416],[72.0099,23.97808],[72.01136,23.98503],[72.01292,23.9862],[72.01801,23.98421],[72.02035,23.97801],[72.03395,23.98081],[72.03998,23.98044],[72.04427,23.98709],[72.04832,23.98955],[72.04772,23.99298],[72.05047,23.99951],[72.04481,24.00324],[72.04249,24.00274],[72.04,24.00676],[72.03489,24.00877],[72.03496,24.01403],[72.02941,24.0195],[72.02739,24.01933],[72.02843,24.02204],[72.02637,24.02415],[72.02246,24.03937],[72.01924,24.04542],[72.01598,24.04641],[72.01289,24.04982],[72.01478,24.05432],[72.0129,24.06872],[72.0189,24.07208],[72.02868,24.06738],[72.03141,24.06142],[72.03174,24.05304],[72.0417,24.04754],[72.04774,24.04606],[72.06071,24.0325],[72.06575,24.0326],[72.067,24.03556],[72.07446,24.03946],[72.08587,24.03941],[72.09021,24.04154],[72.09369,24.03876],[72.09293,24.03323],[72.09488,24.03253],[72.10111,24.03459],[72.09817,24.04292],[72.10124,24.05445],[72.11673,24.05016],[72.13258,24.05287],[72.13279,24.06316],[72.13619,24.07016],[72.14451,24.07437],[72.14683,24.07716],[72.14793,24.07662],[72.15378,24.08686],[72.15408,24.09057],[72.15602,24.09042],[72.15732,24.09451],[72.1567,24.09848],[72.1516,24.09998],[72.14708,24.10455],[72.14855,24.11037],[72.14689,24.11124],[72.14715,24.11358],[72.1506,24.11793],[72.14813,24.12389],[72.14456,24.1273],[72.14011,24.12644],[72.12397,24.12825],[72.12199,24.12479],[72.11662,24.12655],[72.11165,24.12339],[72.0987,24.12506],[72.09288,24.12415],[72.08968,24.13861],[72.09387,24.14169],[72.10849,24.13558],[72.11211,24.13589],[72.11539,24.13734],[72.12001,24.14393],[72.12026,24.15275],[72.12485,24.15268],[72.12913,24.15531],[72.14964,24.15241],[72.15398,24.13512],[72.14898,24.12958],[72.16108,24.12693],[72.17692,24.11834],[72.18755,24.12228],[72.18526,24.13033],[72.19105,24.13221],[72.19084,24.1347],[72.19769,24.13705],[72.19977,24.14441],[72.20364,24.14909],[72.21376,24.14584],[72.21763,24.14331],[72.21797,24.1369],[72.22352,24.13106],[72.22043,24.12693],[72.21762,24.12647],[72.20795,24.1177],[72.20634,24.11408],[72.21018,24.11152],[72.21681,24.09459],[72.2179,24.08499],[72.22182,24.0758],[72.22579,24.07218],[72.23419,24.07218],[72.25096,24.08239],[72.25568,24.08139],[72.25838,24.07051],[72.26126,24.06975],[72.26337,24.06322],[72.26854,24.06017],[72.27047,24.05554],[72.28162,24.05359],[72.28725,24.05417],[72.28746,24.05266],[72.28915,24.05367],[72.29315,24.05118],[72.29939,24.05323],[72.30641,24.03945],[72.30928,24.03857],[72.32243,24.03761],[72.3324,24.03897],[72.33982,24.03778],[72.34163,24.03513],[72.34235,24.02896],[72.34502,24.02632],[72.34237,24.02219],[72.34435,24.01399],[72.34952,24.012],[72.34926,24.01018],[72.35148,24.00938],[72.3567,24.00869],[72.36115,24.00996],[72.36097,24.00043],[72.36614,23.9941],[72.36634,23.9883],[72.36921,23.98603],[72.37022,23.97175],[72.37949,23.97148],[72.3836,23.96825],[72.38547,23.96839],[72.38614,23.97018],[72.38511,23.97378],[72.38614,23.97539],[72.38671,23.97412],[72.39881,23.97561],[72.40578,23.97432],[72.40704,23.97544],[72.4142,23.97253],[72.417,23.97726],[72.41946,23.97809],[72.42723,23.97645],[72.42979,23.9836],[72.43159,23.98259],[72.43158,23.97759],[72.43803,23.97399],[72.43809,23.96712],[72.44348,23.96823],[72.44473,23.97167],[72.45129,23.9743],[72.46092,23.9702],[72.46405,23.97086],[72.47094,23.96867],[72.47185,23.96571],[72.47621,23.96615],[72.47518,23.95797],[72.47771,23.95805],[72.47858,23.95627],[72.47726,23.95629],[72.47725,23.9544],[72.48052,23.95368],[72.48121,23.93409],[72.48668,23.93415],[72.48733,23.93196],[72.49942,23.93465],[72.50233,23.93345],[72.51069,23.9346],[72.51798,23.94082],[72.52473,23.9441],[72.52507,23.94291],[72.52889,23.94257],[72.53465,23.93508],[72.54548,23.9404],[72.54858,23.93815],[72.55235,23.93946],[72.55305,23.93776],[72.55719,23.93925],[72.55833,23.93752],[72.56026,23.93841],[72.56248,23.9349],[72.56592,23.93353],[72.57418,23.9364],[72.58435,23.93602],[72.58415,23.93829],[72.5866,23.9384],[72.58506,23.94319],[72.59057,23.95243],[72.58922,23.95482],[72.58628,23.9544],[72.58712,23.95787],[72.58572,23.96235],[72.58829,23.96308],[72.58987,23.96585],[72.58733,23.97221],[72.58921,23.97543],[72.591,23.97533],[72.59091,23.97738],[72.60012,23.97994],[72.59968,23.98364],[72.60179,23.98466],[72.61524,23.98527],[72.61733,23.98689],[72.6187,23.98561],[72.62107,23.9877],[72.62137,23.9904],[72.62906,23.99373],[72.63788,23.99364],[72.64615,23.98945],[72.65072,23.99398],[72.65091,24.00041],[72.64814,24.00841],[72.64845,24.0269],[72.63989,24.02389],[72.63682,24.04227],[72.63381,24.0439],[72.63314,24.04622],[72.63081,24.04587],[72.63067,24.04778],[72.62526,24.0461],[72.62002,24.05388],[72.62845,24.05888],[72.62916,24.06203],[72.63566,24.06441],[72.63871,24.07092],[72.63708,24.07598],[72.64404,24.07528],[72.64603,24.0765],[72.64485,24.07832],[72.65232,24.08096],[72.65224,24.08377],[72.66141,24.07523],[72.67,24.07126],[72.67328,24.07035],[72.68585,24.07308],[72.69074,24.07826],[72.69656,24.07903],[72.70468,24.08408],[72.70644,24.09134],[72.71304,24.09918],[72.718,24.09706],[72.72483,24.09681],[72.72997,24.09411],[72.73478,24.08672],[72.73467,24.07651],[72.74939,24.079],[72.75237,24.07824],[72.75381,24.07112],[72.75728,24.07212],[72.76192,24.07067],[72.75945,24.07729],[72.76467,24.08176],[72.76434,24.0892],[72.76881,24.09105],[72.76844,24.09772],[72.77365,24.10225],[72.78275,24.10204],[72.78526,24.10025],[72.78893,24.09327],[72.78992,24.08782],[72.79361,24.08559],[72.79364,24.08065],[72.79221,24.07956],[72.79685,24.07648],[72.79722,24.07467],[72.79947,24.07585],[72.80262,24.07342],[72.80213,24.07096],[72.80598,24.06819],[72.80663,24.06654],[72.80504,24.06492],[72.80886,24.05867],[72.81318,24.05635],[72.8153,24.05726],[72.81786,24.05023],[72.8204,24.04766],[72.82854,24.04297],[72.83473,24.04345],[72.83908,24.03985],[72.85627,24.04553],[72.86037,24.02961],[72.86665,24.02473],[72.87472,24.02743],[72.88292,24.02805],[72.8987,24.0255],[72.91166,24.03194],[72.91804,24.03848],[72.92316,24.04068],[72.92117,24.04716],[72.92227,24.05925],[72.93074,24.0716],[72.92848,24.07721],[72.9275,24.08851],[72.9341,24.09761],[72.94023,24.10294],[72.9446,24.10426],[72.94639,24.10908],[72.94494,24.11356],[72.94172,24.11572],[72.94055,24.12075],[72.94247,24.12242],[72.9435,24.12785],[72.94293,24.13532],[72.9496,24.13884],[72.95166,24.13671],[72.95293,24.1386],[72.95293,24.14691],[72.95518,24.1525],[72.95352,24.15515],[72.95665,24.15901],[72.96059,24.16109],[72.96499,24.16657],[72.97186,24.16995],[72.97408,24.17363],[72.98551,24.17803],[72.9918,24.18402],[72.99369,24.19264],[72.99228,24.20158],[72.9892,24.20806],[72.99162,24.22347],[72.99699,24.22808],[73.00499,24.22892],[73.0139,24.23478],[73.01777,24.25041],[73.02444,24.26137],[73.02482,24.27046],[73.02802,24.27373],[73.02391,24.27645],[73.02262,24.28165],[73.01878,24.27775],[73.01347,24.27849],[73.00693,24.28337],[73.00657,24.28759],[73.00145,24.28906],[72.99898,24.29614],[73.00046,24.29807],[72.99674,24.30802],[72.98765,24.30656],[72.97845,24.30942],[72.97434,24.30725],[72.96713,24.31324],[72.96203,24.32172],[72.96566,24.33144],[72.96655,24.3487],[72.96297,24.35212],[72.96227,24.35829],[72.95947,24.36096],[72.95403,24.35636],[72.95094,24.35636],[72.93821,24.3483],[72.92755,24.34496],[72.91979,24.34442],[72.91363,24.338],[72.91073,24.33721],[72.89115,24.35697],[72.86997,24.36586],[72.8698,24.36378],[72.85858,24.36974],[72.85767,24.36818],[72.85568,24.36864],[72.85357,24.37146],[72.84648,24.37179],[72.83649,24.36916],[72.81478,24.37023],[72.8085,24.36676],[72.80582,24.36294],[72.77141,24.36823],[72.73261,24.3636],[72.72503,24.36721],[72.69191,24.40612],[72.68915,24.41173],[72.67977,24.44293],[72.6875,24.4526],[72.68823,24.45781],[72.68336,24.46388],[72.68088,24.46514],[72.67094,24.46488],[72.65633,24.46222],[72.61357,24.47231],[72.57594,24.47885],[72.53824,24.51968],[72.53598,24.51761],[72.53525,24.50567],[72.5335,24.50381],[72.52631,24.50323],[72.52019,24.5],[72.51449,24.48396],[72.5048,24.4716],[72.50444,24.45837],[72.49319,24.45908],[72.50042,24.41705],[72.47499,24.4144],[72.45724,24.4148],[72.45841,24.42487],[72.45209,24.43397],[72.45146,24.44211],[72.44804,24.44779],[72.44389,24.44996],[72.43378,24.46011],[72.43022,24.48017],[72.44293,24.50398],[72.44368,24.50898],[72.44143,24.51136],[72.44108,24.51533],[72.43631,24.51715],[72.43383,24.51588],[72.42533,24.51758],[72.42344,24.51669],[72.42015,24.5201],[72.41633,24.52117],[72.41297,24.51725],[72.40004,24.51447],[72.39172,24.51085],[72.38858,24.50768],[72.38573,24.51187],[72.38234,24.51104],[72.37969,24.51239],[72.37646,24.52469],[72.3709,24.53101],[72.36816,24.53734],[72.36751,24.53977],[72.36986,24.5437],[72.36752,24.54772],[72.36123,24.5478],[72.3605,24.55092],[72.35836,24.5509],[72.35796,24.55564],[72.35429,24.55656],[72.35373,24.56376],[72.34874,24.56245],[72.34095,24.56322],[72.33093,24.5693],[72.32687,24.55802],[72.3304,24.55454],[72.32899,24.55241],[72.32688,24.55397],[72.3236,24.55132],[72.30186,24.55021],[72.29934,24.54729],[72.29543,24.54663],[72.2893,24.54802],[72.29013,24.55074],[72.2855,24.56536],[72.27521,24.56523],[72.27131,24.56136],[72.26473,24.56028],[72.26321,24.56501],[72.2531,24.5751],[72.25148,24.58025],[72.2464,24.58561],[72.24847,24.58934],[72.25688,24.59417],[72.25845,24.5983],[72.2643,24.60006],[72.26435,24.60448],[72.27634,24.60753],[72.28535,24.60714],[72.28975,24.60387],[72.29519,24.60941],[72.29739,24.60897],[72.30325,24.60573],[72.30328,24.60343],[72.30538,24.60279],[72.30462,24.59898],[72.30728,24.59788],[72.30778,24.59589],[72.31357,24.59402],[72.33062,24.59955],[72.33559,24.59858],[72.33851,24.60015],[72.33867,24.6056],[72.34393,24.60963],[72.34531,24.61563],[72.34319,24.62119],[72.34764,24.62605],[72.34733,24.62846],[72.33795,24.63007],[72.33545,24.6333],[72.32022,24.61778],[72.31517,24.61995],[72.30499,24.61755],[72.29715,24.62479],[72.2892,24.61953],[72.28298,24.62575],[72.27366,24.62837],[72.27068,24.63052],[72.27223,24.63704],[72.27084,24.63757],[72.26789,24.6368],[72.26312,24.63093],[72.25469,24.62488],[72.24857,24.6269],[72.24229,24.63458],[72.23698,24.63539],[72.234,24.64043],[72.23037,24.64061],[72.22687,24.63916],[72.21669,24.6269],[72.21033,24.62685],[72.20221,24.62311],[72.19475,24.62302],[72.19779,24.6167],[72.19657,24.61472],[72.19203,24.62005],[72.18389,24.61973],[72.17034,24.62318],[72.16481,24.62128],[72.16033,24.63526],[72.15026,24.64367],[72.12819,24.6417],[72.12457,24.6386],[72.11699,24.64336],[72.11496,24.64843],[72.10877,24.64665],[72.10762,24.649],[72.10248,24.65046],[72.09806,24.65612],[72.08982,24.6587],[72.09002,24.66414],[72.08721,24.67002],[72.08614,24.67759],[72.09275,24.68195],[72.08815,24.70057],[72.0847,24.70703],[72.05833,24.71254],[72.04853,24.71056],[72.04258,24.70437],[72.03494,24.70245],[72.02846,24.69733],[72.01783,24.69478],[72.0125,24.69058],[72.00593,24.69043],[72.00143,24.68841],[72.0011,24.69488],[71.99516,24.69317],[71.99383,24.69506],[71.98385,24.68595],[71.98275,24.673],[71.9883,24.65753],[71.97744,24.65692],[71.96425,24.64583],[71.95528,24.64524],[71.94618,24.64109],[71.93987,24.6338],[71.93864,24.6365],[71.93601,24.6354],[71.9255,24.63604],[71.91544,24.64951],[71.91164,24.65857],[71.91701,24.66029],[71.92032,24.66416],[71.92017,24.67092],[71.91861,24.67211],[71.9075,24.67756],[71.89952,24.67674],[71.88823,24.67214],[71.88503,24.67755],[71.87655,24.68164],[71.87175,24.68177],[71.86135,24.6723],[71.85777,24.66617],[71.85749,24.6522],[71.86539,24.63071],[71.85562,24.62207],[71.85217,24.60936],[71.83783,24.6213],[71.83084,24.62339],[71.82127,24.62017],[71.81604,24.62032],[71.8059,24.62675],[71.80253,24.63113],[71.81039,24.65606],[71.80296,24.67165],[71.79153,24.67734],[71.78027,24.67491],[71.77269,24.67587],[71.76243,24.66863],[71.74774,24.66507],[71.73556,24.66005],[71.70636,24.6613],[71.6971,24.65445],[71.69043,24.6542],[71.67745,24.64631],[71.66448,24.64344],[71.66271,24.64442],[71.65537,24.63919],[71.64724,24.64458],[71.64392,24.64393],[71.63994,24.65128],[71.63875,24.65954],[71.62888,24.65992],[71.62737,24.66427],[71.62474,24.66386],[71.62686,24.66712],[71.62415,24.66972],[71.61926,24.6674],[71.61682,24.67087],[71.6111,24.67299],[71.6076,24.67655],[71.58975,24.66716],[71.58453,24.67005],[71.5777,24.6814],[71.573,24.68342],[71.55096,24.6764],[71.55015,24.67752],[71.54183,24.67576],[71.53382,24.68033]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"442","area_level":"District","area_name":"Bharuch","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.7676,21.65702],[72.76265,21.65637],[72.75586,21.65127],[72.75039,21.65147],[72.74002,21.64476],[72.725,21.6454],[72.71705,21.64766],[72.6919,21.64401],[72.68073,21.64584],[72.6719,21.64532],[72.6266,21.62883],[72.61836,21.62125],[72.61839,21.61258],[72.61499,21.60579],[72.61118,21.60176],[72.61253,21.59493],[72.60809,21.59155],[72.60695,21.58758],[72.60583,21.57535],[72.60782,21.56752],[72.60645,21.56459],[72.60725,21.56068],[72.61146,21.55225],[72.61742,21.54697],[72.60846,21.55133],[72.5988,21.54867],[72.60265,21.55659],[72.59856,21.56461],[72.60047,21.57793],[72.59904,21.58025],[72.59358,21.58164],[72.59194,21.58499],[72.58366,21.58452],[72.58017,21.58571],[72.57844,21.58351],[72.58397,21.58083],[72.58261,21.57922],[72.58078,21.57946],[72.58399,21.57658],[72.5813,21.57682],[72.57619,21.57146],[72.57697,21.56499],[72.57576,21.56013],[72.57707,21.55854],[72.57529,21.55628],[72.57661,21.55485],[72.57475,21.55084],[72.57717,21.54259],[72.57853,21.54215],[72.57698,21.54203],[72.57853,21.53544],[72.57519,21.53233],[72.58059,21.529],[72.59081,21.53476],[72.59619,21.53563],[72.60824,21.53289],[72.60964,21.53173],[72.60604,21.53098],[72.61133,21.5305],[72.61771,21.53572],[72.62391,21.53797],[72.62136,21.53744],[72.62196,21.53864],[72.6257,21.53938],[72.63443,21.53861],[72.63684,21.53317],[72.64221,21.53225],[72.64647,21.53713],[72.64461,21.54218],[72.64692,21.54758],[72.65976,21.55691],[72.67055,21.57308],[72.67325,21.57529],[72.67844,21.57522],[72.69242,21.58139],[72.69512,21.58847],[72.70152,21.58797],[72.70194,21.59207],[72.70238,21.5878],[72.70616,21.58591],[72.7139,21.59075],[72.71754,21.58985],[72.71881,21.59165],[72.72103,21.58476],[72.72489,21.58579],[72.72594,21.58763],[72.72563,21.58602],[72.7277,21.58577],[72.7411,21.59734],[72.74798,21.60058],[72.75251,21.60011],[72.76447,21.60696],[72.77065,21.60905],[72.79323,21.60845],[72.81256,21.618],[72.81978,21.62386],[72.82592,21.63562],[72.82541,21.63974],[72.8159,21.65285],[72.80674,21.65044],[72.79643,21.65068],[72.77927,21.6532],[72.7676,21.65702]]],[[[72.85537,22.23605],[72.8538,22.23885],[72.84933,22.24061],[72.84785,22.23914],[72.84985,22.23573],[72.84769,22.23486],[72.84685,22.23764],[72.84274,22.23979],[72.84105,22.23705],[72.84202,22.23184],[72.83828,22.22878],[72.82982,22.22687],[72.82731,22.22913],[72.82627,22.22423],[72.82284,22.22838],[72.82059,22.22454],[72.81845,22.22422],[72.82319,22.22089],[72.81893,22.21588],[72.82322,22.21461],[72.82064,22.21106],[72.82233,22.21177],[72.82271,22.20922],[72.78276,22.19287],[72.78268,22.15757],[72.77418,22.16119],[72.76021,22.17141],[72.74625,22.1739],[72.74404,22.17272],[72.74359,22.17435],[72.74021,22.17388],[72.73647,22.1761],[72.73319,22.17542],[72.73387,22.17743],[72.72615,22.1814],[72.72212,22.18123],[72.72306,22.18252],[72.72158,22.18352],[72.70906,22.18561],[72.70469,22.18243],[72.69568,22.18729],[72.68508,22.19624],[72.6746,22.20015],[72.66843,22.20459],[72.6686,22.20216],[72.67113,22.19991],[72.67064,22.19685],[72.66628,22.20028],[72.66283,22.19939],[72.66133,22.20154],[72.65953,22.19943],[72.65885,22.20158],[72.66135,22.2048],[72.66302,22.20456],[72.66373,22.20577],[72.66237,22.20647],[72.66452,22.20721],[72.66357,22.20824],[72.65777,22.21232],[72.65671,22.21096],[72.65437,22.214],[72.65228,22.21017],[72.6515,22.21497],[72.63838,22.217],[72.62036,22.21677],[72.60506,22.21314],[72.59383,22.20798],[72.59103,22.2052],[72.59177,22.20244],[72.59822,22.20547],[72.59382,22.20273],[72.59492,22.20026],[72.59866,22.20007],[72.59473,22.19851],[72.59319,22.20034],[72.59104,22.19903],[72.58903,22.20313],[72.5866,22.20246],[72.58826,22.205],[72.58055,22.19873],[72.57552,22.19121],[72.58252,22.1873],[72.57253,22.18932],[72.56229,22.1755],[72.54819,22.14499],[72.54713,22.14156],[72.54821,22.13606],[72.54452,22.1322],[72.54316,22.12634],[72.54643,22.11132],[72.54087,22.0915],[72.5385,22.08954],[72.54007,22.08577],[72.54755,22.08314],[72.54654,22.0748],[72.54213,22.07981],[72.53692,22.07511],[72.53688,22.06076],[72.54207,22.03827],[72.54002,22.03331],[72.54851,22.01155],[72.54854,21.99105],[72.54733,21.9878],[72.53781,21.98653],[72.53778,21.98326],[72.537,21.98672],[72.5337,21.98693],[72.53374,21.98261],[72.53866,21.98189],[72.52814,21.98226],[72.52811,21.97784],[72.53856,21.97752],[72.53746,21.97707],[72.53774,21.97209],[72.53332,21.97243],[72.53341,21.96809],[72.53113,21.96827],[72.5311,21.9659],[72.53986,21.96527],[72.53976,21.96175],[72.53838,21.96001],[72.53432,21.96208],[72.52589,21.95987],[72.53054,21.95508],[72.53269,21.95855],[72.54134,21.9589],[72.54123,21.96522],[72.54786,21.96439],[72.54748,21.9543],[72.545,21.94932],[72.53629,21.9498],[72.53343,21.94669],[72.54069,21.94391],[72.53926,21.94221],[72.53173,21.94369],[72.52797,21.93702],[72.53079,21.93597],[72.52851,21.93445],[72.53025,21.93215],[72.52911,21.93115],[72.53308,21.92596],[72.53707,21.9276],[72.53899,21.91706],[72.54267,21.91238],[72.54668,21.91127],[72.54931,21.91393],[72.56404,21.91766],[72.5804,21.92454],[72.58803,21.92241],[72.60788,21.93302],[72.62449,21.94738],[72.63999,21.95683],[72.67209,21.95569],[72.68056,21.95927],[72.68374,21.95432],[72.69176,21.95211],[72.70781,21.9534],[72.71166,21.95602],[72.71523,21.96637],[72.71412,21.97262],[72.70965,21.97924],[72.71512,21.98271],[72.72268,21.99493],[72.72522,21.99647],[72.72857,21.99558],[72.73556,21.98679],[72.73361,21.98274],[72.73396,21.97825],[72.73652,21.97546],[72.74637,21.97057],[72.74827,21.96628],[72.74674,21.96175],[72.74113,21.95506],[72.7324,21.95023],[72.71941,21.93922],[72.69772,21.93854],[72.69477,21.94173],[72.6919,21.94187],[72.69775,21.88891],[72.69309,21.88677],[72.69127,21.88258],[72.68363,21.88506],[72.67092,21.89572],[72.65916,21.89141],[72.65466,21.89529],[72.64817,21.89731],[72.64563,21.89569],[72.64522,21.88819],[72.63878,21.89015],[72.63302,21.88044],[72.62335,21.88375],[72.62308,21.87714],[72.6162,21.86043],[72.61033,21.83968],[72.62043,21.82993],[72.61704,21.82713],[72.61778,21.82574],[72.6143,21.82138],[72.59302,21.80492],[72.59505,21.80222],[72.59412,21.80007],[72.59931,21.79829],[72.59963,21.79227],[72.61004,21.79018],[72.61001,21.78915],[72.60195,21.78977],[72.60139,21.78651],[72.60339,21.78504],[72.60212,21.78566],[72.60102,21.78407],[72.60342,21.77636],[72.60116,21.767],[72.60296,21.76365],[72.6064,21.76504],[72.60426,21.75525],[72.60717,21.75305],[72.6027,21.7539],[72.59962,21.75],[72.59796,21.75148],[72.59676,21.74976],[72.59185,21.74863],[72.59205,21.74695],[72.58769,21.74669],[72.58479,21.74277],[72.57873,21.74115],[72.57689,21.73893],[72.57474,21.74014],[72.56806,21.73872],[72.55856,21.73204],[72.5459,21.73502],[72.53956,21.73174],[72.53161,21.71443],[72.5337,21.67445],[72.53627,21.66748],[72.54106,21.66226],[72.54831,21.65872],[72.55397,21.65879],[72.55839,21.65986],[72.56431,21.66475],[72.59574,21.68024],[72.60517,21.68327],[72.60063,21.68586],[72.6054,21.68773],[72.60881,21.68802],[72.60986,21.68495],[72.61209,21.684],[72.62156,21.68225],[72.63762,21.68077],[72.63927,21.68174],[72.63801,21.68214],[72.63897,21.68391],[72.64476,21.68172],[72.65586,21.68083],[72.6571,21.68209],[72.66014,21.68107],[72.66889,21.68482],[72.6666,21.68564],[72.66626,21.68775],[72.67134,21.68904],[72.67177,21.68744],[72.67489,21.68641],[72.67496,21.68446],[72.68534,21.68147],[72.69224,21.68131],[72.69814,21.68438],[72.71291,21.67958],[72.73697,21.69113],[72.74591,21.68846],[72.7498,21.68129],[72.75263,21.68149],[72.75475,21.67576],[72.76221,21.67002],[72.77658,21.66535],[72.78983,21.66325],[72.80129,21.65769],[72.81777,21.6583],[72.84412,21.68016],[72.85359,21.6854],[72.86191,21.68759],[72.86313,21.68632],[72.88052,21.68632],[72.92278,21.67598],[72.92526,21.67866],[72.92772,21.67826],[72.92777,21.67621],[72.93072,21.67753],[72.93819,21.67671],[72.96114,21.68189],[72.96298,21.67403],[72.94103,21.66906],[72.90683,21.6649],[72.90721,21.6668],[72.89498,21.67505],[72.87724,21.67256],[72.87403,21.66917],[72.87284,21.66348],[72.87334,21.64492],[72.86791,21.64222],[72.85359,21.64825],[72.84168,21.65582],[72.82846,21.65091],[72.83179,21.64105],[72.83015,21.62845],[72.82033,21.61111],[72.80956,21.60339],[72.80185,21.60062],[72.79772,21.5956],[72.80224,21.58721],[72.79084,21.58854],[72.78509,21.58735],[72.77388,21.57146],[72.76878,21.57041],[72.76689,21.57398],[72.76629,21.5707],[72.76759,21.5694],[72.76357,21.56888],[72.76261,21.5733],[72.75942,21.56949],[72.76211,21.56678],[72.7589,21.566],[72.7584,21.56813],[72.75627,21.56557],[72.75445,21.56628],[72.75477,21.56434],[72.76006,21.56033],[72.76133,21.56458],[72.76851,21.56499],[72.77022,21.56252],[72.76723,21.55626],[72.76247,21.55146],[72.76277,21.54887],[72.76064,21.55001],[72.76034,21.54781],[72.75007,21.54171],[72.75,21.52752],[72.74273,21.52859],[72.74185,21.53043],[72.74018,21.52935],[72.73929,21.53088],[72.73711,21.53047],[72.7403,21.53262],[72.73875,21.53403],[72.7323,21.53036],[72.73098,21.53029],[72.731,21.53281],[72.72577,21.52997],[72.72998,21.52714],[72.72387,21.52874],[72.72255,21.52613],[72.72216,21.52969],[72.71892,21.52799],[72.71682,21.52914],[72.71523,21.526],[72.71459,21.52794],[72.71197,21.52725],[72.71489,21.52201],[72.71216,21.52315],[72.71076,21.52123],[72.70787,21.52844],[72.70616,21.52628],[72.70283,21.52567],[72.69023,21.50838],[72.68698,21.50142],[72.67704,21.50303],[72.67579,21.5021],[72.66182,21.47691],[72.65582,21.46917],[72.625,21.44759],[72.61776,21.44385],[72.6052,21.44059],[72.59613,21.4327],[72.59047,21.42397],[72.57958,21.41386],[72.57923,21.40917],[72.58134,21.40849],[72.58371,21.40344],[72.59186,21.40077],[72.60027,21.40015],[72.61495,21.40575],[72.61127,21.40154],[72.61312,21.40011],[72.62847,21.4089],[72.63935,21.42087],[72.6388,21.41757],[72.64234,21.42071],[72.64172,21.41896],[72.64568,21.41948],[72.65406,21.43292],[72.65816,21.43675],[72.6611,21.4439],[72.6803,21.44593],[72.68377,21.45491],[72.6873,21.45244],[72.69166,21.46001],[72.69644,21.46396],[72.70582,21.46691],[72.71741,21.46704],[72.73497,21.47477],[72.74053,21.47289],[72.74379,21.46689],[72.75041,21.4669],[72.75308,21.46215],[72.75204,21.45471],[72.76114,21.44869],[72.76366,21.45019],[72.76641,21.44884],[72.76761,21.45379],[72.77319,21.45638],[72.78389,21.45967],[72.78692,21.45825],[72.78833,21.44633],[72.78311,21.42848],[72.78745,21.42164],[72.79635,21.4223],[72.80602,21.42561],[72.81351,21.42215],[72.82315,21.42615],[72.82582,21.42989],[72.82626,21.43658],[72.83328,21.44016],[72.83706,21.44861],[72.84109,21.45051],[72.84597,21.44972],[72.85075,21.4535],[72.85347,21.45284],[72.85843,21.44742],[72.86785,21.4441],[72.86865,21.4525],[72.87101,21.45604],[72.87667,21.45094],[72.87781,21.44641],[72.87619,21.44391],[72.8702,21.44132],[72.86805,21.43354],[72.87096,21.43635],[72.87518,21.4341],[72.87675,21.43779],[72.88189,21.44256],[72.88753,21.44492],[72.88892,21.43938],[72.8937,21.43339],[72.89944,21.43041],[72.90677,21.43002],[72.91072,21.43278],[72.91364,21.44286],[72.92156,21.45269],[72.92397,21.45887],[72.92332,21.46938],[72.93827,21.47358],[72.95285,21.48397],[72.95107,21.49092],[72.94278,21.50193],[72.94128,21.51247],[72.95713,21.51899],[72.98379,21.52284],[72.9871,21.53168],[72.98472,21.54013],[72.99123,21.54298],[72.99796,21.53985],[73.00416,21.53042],[73.00549,21.53057],[73.00786,21.52401],[73.01613,21.52555],[73.01781,21.52169],[73.02066,21.52125],[73.01805,21.51268],[73.01852,21.50461],[73.01691,21.49708],[73.02042,21.49515],[73.02101,21.49103],[73.02355,21.49278],[73.02274,21.49163],[73.02456,21.49049],[73.02262,21.48837],[73.02497,21.48694],[73.02614,21.48274],[73.03672,21.4848],[73.04035,21.47782],[73.04217,21.4771],[73.04377,21.47783],[73.04324,21.48166],[73.04667,21.48042],[73.05473,21.48415],[73.05375,21.48524],[73.05588,21.48896],[73.05672,21.50087],[73.05388,21.50689],[73.03906,21.52443],[73.0366,21.53467],[73.03992,21.53867],[73.04844,21.54214],[73.04686,21.54433],[73.04808,21.54913],[73.04688,21.56344],[73.05506,21.56926],[73.05883,21.56612],[73.06506,21.56567],[73.06812,21.56375],[73.0755,21.55173],[73.07931,21.53596],[73.08009,21.50886],[73.07742,21.5071],[73.0778,21.5054],[73.1034,21.50798],[73.10512,21.50462],[73.10123,21.50011],[73.10485,21.49886],[73.11148,21.49982],[73.1157,21.4981],[73.11919,21.48952],[73.11739,21.48494],[73.1194,21.48373],[73.12745,21.48892],[73.13363,21.48892],[73.13318,21.49486],[73.14205,21.49439],[73.14297,21.49525],[73.14136,21.49817],[73.17159,21.49533],[73.18148,21.50326],[73.1887,21.50679],[73.21564,21.50482],[73.22346,21.49776],[73.22689,21.49798],[73.22633,21.49707],[73.22886,21.49698],[73.23035,21.49514],[73.2322,21.49589],[73.23412,21.49394],[73.24454,21.49571],[73.25024,21.49395],[73.25756,21.49793],[73.25529,21.50166],[73.25654,21.50383],[73.26277,21.50364],[73.26623,21.5057],[73.26853,21.50953],[73.27262,21.51087],[73.27575,21.5082],[73.28679,21.50662],[73.29711,21.50887],[73.3093,21.50789],[73.30649,21.50502],[73.30647,21.50175],[73.32439,21.48547],[73.32363,21.4878],[73.33985,21.50217],[73.34149,21.50819],[73.34762,21.51712],[73.34746,21.52095],[73.34602,21.5221],[73.35746,21.51841],[73.36732,21.51728],[73.37694,21.51937],[73.3877,21.51608],[73.39903,21.50883],[73.41235,21.51135],[73.41552,21.51443],[73.41586,21.52085],[73.4266,21.52462],[73.43217,21.52353],[73.44284,21.52453],[73.4528,21.52795],[73.44177,21.53814],[73.44289,21.54236],[73.44056,21.54555],[73.44162,21.54775],[73.4399,21.54871],[73.44097,21.55476],[73.44381,21.56186],[73.44703,21.56456],[73.44625,21.56911],[73.44977,21.57129],[73.45023,21.57537],[73.45794,21.57808],[73.46517,21.58469],[73.46616,21.58889],[73.47035,21.59386],[73.47349,21.59381],[73.47412,21.59802],[73.47076,21.60901],[73.47437,21.61131],[73.48224,21.61089],[73.48034,21.6271],[73.47839,21.63187],[73.48476,21.63603],[73.48576,21.6389],[73.48436,21.64188],[73.47698,21.64736],[73.47361,21.65808],[73.47746,21.66652],[73.48703,21.67779],[73.4955,21.67824],[73.49989,21.68087],[73.48759,21.69354],[73.48768,21.70399],[73.47806,21.70402],[73.47497,21.7114],[73.47176,21.71336],[73.46912,21.7209],[73.46207,21.71838],[73.45322,21.71925],[73.44893,21.71669],[73.44947,21.71378],[73.44722,21.71174],[73.43968,21.70943],[73.4315,21.71478],[73.43156,21.71791],[73.40698,21.70928],[73.40296,21.71807],[73.39548,21.71708],[73.39512,21.72073],[73.39326,21.72206],[73.39486,21.72483],[73.404,21.72989],[73.40444,21.73502],[73.40822,21.73744],[73.40663,21.73989],[73.40692,21.7445],[73.40781,21.74833],[73.40972,21.74972],[73.40078,21.75885],[73.39713,21.75856],[73.39432,21.76027],[73.39629,21.76825],[73.39542,21.77581],[73.39269,21.77745],[73.38691,21.77764],[73.3826,21.78127],[73.37418,21.78041],[73.37396,21.78694],[73.37136,21.78822],[73.37102,21.79202],[73.36694,21.79927],[73.36443,21.80192],[73.36016,21.80248],[73.35989,21.80609],[73.35787,21.80541],[73.35901,21.80756],[73.35587,21.80825],[73.35588,21.81034],[73.3515,21.81058],[73.34759,21.81438],[73.33599,21.81035],[73.33236,21.81602],[73.33684,21.81749],[73.33486,21.83138],[73.32918,21.83471],[73.32418,21.83392],[73.3208,21.83142],[73.32139,21.83053],[73.31953,21.83131],[73.31924,21.82964],[73.31491,21.83014],[73.31633,21.82682],[73.30857,21.82229],[73.30579,21.82237],[73.30407,21.82565],[73.30216,21.82504],[73.29935,21.82749],[73.29942,21.83078],[73.30167,21.83285],[73.2971,21.83373],[73.29694,21.83626],[73.30099,21.83701],[73.30299,21.84147],[73.30243,21.85013],[73.30852,21.85141],[73.30591,21.85917],[73.30381,21.85814],[73.30417,21.86204],[73.30166,21.86176],[73.29984,21.87436],[73.29974,21.87897],[73.30383,21.88751],[73.27886,21.90508],[73.27743,21.91384],[73.25688,21.93556],[73.24236,21.93398],[73.23338,21.92841],[73.22534,21.9209],[73.22062,21.91087],[73.22214,21.90096],[73.22605,21.89055],[73.2349,21.87869],[73.24584,21.86924],[73.24851,21.86508],[73.24899,21.85963],[73.24704,21.85021],[73.24374,21.8424],[73.24629,21.84065],[73.23999,21.83542],[73.23741,21.83718],[73.22214,21.82588],[73.20958,21.82229],[73.2015,21.82239],[73.18396,21.83135],[73.15919,21.85577],[73.15825,21.85439],[73.14846,21.85663],[73.14799,21.85387],[73.1418,21.85462],[73.14212,21.86434],[73.13728,21.86701],[73.13193,21.86617],[73.13051,21.87113],[73.12682,21.87038],[73.12536,21.87763],[73.10457,21.87714],[73.0912,21.87225],[73.08591,21.88069],[73.07181,21.87708],[73.05924,21.8823],[73.05889,21.88897],[73.0625,21.90268],[73.06268,21.91176],[73.08711,21.91782],[73.09155,21.9213],[73.09044,21.92963],[73.07666,21.92925],[73.07519,21.93042],[73.06689,21.92386],[73.06199,21.92222],[73.05319,21.92224],[73.04737,21.9354],[73.04206,21.93372],[73.04319,21.9284],[73.03783,21.92679],[73.03557,21.9198],[73.01819,21.9187],[73.0,21.91084],[72.99388,21.92706],[73.00036,21.93105],[73.00215,21.93574],[73.01596,21.942],[73.04224,21.93717],[73.04796,21.9395],[73.05224,21.94883],[73.05041,21.9754],[73.04886,21.97615],[73.06801,21.98403],[73.06235,22.0],[73.06232,22.00304],[73.06412,22.00371],[73.06325,22.01661],[73.05036,22.01237],[73.04801,22.00336],[73.0436,22.00461],[73.03237,21.99737],[73.02839,21.99778],[73.02599,21.99559],[73.01951,22.00263],[73.01802,22.00249],[73.01478,22.01128],[73.0108,22.01016],[73.00902,22.01717],[72.99787,22.01902],[72.99412,22.02601],[72.98928,22.02771],[72.98462,22.04793],[72.9805,22.0485],[72.97926,22.05259],[72.97288,22.04908],[72.97035,22.04998],[72.96048,22.04629],[72.95902,22.04715],[72.95897,22.04991],[72.95434,22.0511],[72.95372,22.05279],[72.94045,22.05373],[72.93989,22.0459],[72.93171,22.04179],[72.92879,22.04277],[72.92943,22.04623],[72.92647,22.04954],[72.91356,22.04711],[72.91615,22.05199],[72.91988,22.05353],[72.92223,22.06054],[72.91658,22.06257],[72.91574,22.06654],[72.90485,22.06806],[72.90397,22.07917],[72.89777,22.09493],[72.88465,22.09326],[72.877,22.10892],[72.87188,22.11244],[72.87343,22.11433],[72.87198,22.11601],[72.87691,22.11678],[72.87986,22.11902],[72.87464,22.12678],[72.87364,22.13929],[72.8664,22.13885],[72.86388,22.14086],[72.86291,22.15519],[72.88225,22.16593],[72.88578,22.17207],[72.88754,22.1703],[72.89037,22.16017],[72.89629,22.16269],[72.90272,22.16207],[72.90713,22.16482],[72.9102,22.16503],[72.91255,22.16293],[72.91354,22.16376],[72.91247,22.16583],[72.91437,22.16787],[72.92679,22.16912],[72.9292,22.17158],[72.92625,22.18129],[72.92681,22.18609],[72.92335,22.18766],[72.92218,22.1926],[72.91508,22.19242],[72.91071,22.18878],[72.89836,22.18729],[72.89458,22.1789],[72.88477,22.17425],[72.8832,22.17508],[72.87682,22.1814],[72.8776,22.1901],[72.87535,22.19622],[72.87711,22.20586],[72.87244,22.20671],[72.86883,22.20952],[72.86889,22.21556],[72.85537,22.23605]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"443","area_level":"District","area_name":"Bhavnagar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.36084,21.59216],[72.3611,21.59285],[72.36119,21.59356],[72.36116,21.59569],[72.36029,21.59657],[72.3595,21.59822],[72.35828,21.59924],[72.35708,21.60059],[72.35623,21.60125],[72.35522,21.60187],[72.35456,21.60213],[72.35289,21.60499],[72.35204,21.60616],[72.35119,21.60772],[72.35074,21.60836],[72.35031,21.60843],[72.34909,21.60592],[72.34964,21.60491],[72.3498,21.60366],[72.35043,21.60205],[72.35097,21.60126],[72.35131,21.60052],[72.35276,21.59925],[72.35356,21.59756],[72.35433,21.59513],[72.35438,21.59364],[72.3551,21.59249],[72.35592,21.5924],[72.35743,21.59196],[72.35874,21.59181],[72.36035,21.592],[72.36084,21.59216]]],[[[71.93178,22.12502],[71.92103,22.13032],[71.91798,22.11433],[71.91522,22.10807],[71.9104,22.1071],[71.91002,22.10555],[71.90434,22.10581],[71.90454,22.1038],[71.89322,22.1051],[71.89186,22.08535],[71.88572,22.08424],[71.88296,22.08091],[71.87357,22.08137],[71.86988,22.06981],[71.8683,22.07026],[71.8644,22.06285],[71.86239,22.06271],[71.86334,22.05773],[71.84741,22.06169],[71.84017,22.06027],[71.83972,22.06666],[71.83161,22.06235],[71.82923,22.05727],[71.83122,22.05326],[71.84057,22.05397],[71.84098,22.04975],[71.85031,22.04541],[71.8526,22.0482],[71.85554,22.04808],[71.85709,22.05276],[71.85923,22.04962],[71.86159,22.04937],[71.86404,22.04465],[71.86705,22.04546],[71.86798,22.03675],[71.87219,22.03555],[71.87425,22.02772],[71.87819,22.02397],[71.87343,22.02334],[71.87065,22.01634],[71.86833,22.01641],[71.86755,22.00957],[71.86214,22.00949],[71.84181,22.01409],[71.8297,22.01427],[71.82968,22.01802],[71.81687,22.01822],[71.80502,22.02229],[71.79384,22.02188],[71.79325,22.00941],[71.78894,22.00772],[71.78201,22.00787],[71.77686,22.01173],[71.76637,22.00701],[71.76044,22.0064],[71.75871,22.0117],[71.75632,22.01168],[71.75603,22.01305],[71.74068,22.01121],[71.74063,22.01],[71.73495,22.01049],[71.73562,21.99825],[71.73214,21.99576],[71.72387,21.99444],[71.72162,21.98883],[71.71622,21.98612],[71.71127,21.9806],[71.71339,21.97289],[71.70847,21.96984],[71.70021,21.9526],[71.6942,21.95121],[71.69104,21.94347],[71.68933,21.94571],[71.68122,21.94319],[71.67597,21.94383],[71.67537,21.93104],[71.67996,21.92212],[71.68623,21.91562],[71.6879,21.91022],[71.69047,21.90944],[71.69011,21.90188],[71.68512,21.89898],[71.68529,21.89672],[71.68154,21.89255],[71.68385,21.8704],[71.67498,21.86886],[71.67164,21.86595],[71.66355,21.86574],[71.66374,21.85956],[71.66624,21.85498],[71.66624,21.85001],[71.66445,21.84974],[71.66446,21.84646],[71.6537,21.84364],[71.65322,21.84093],[71.64836,21.84069],[71.64674,21.83703],[71.64386,21.83716],[71.64111,21.83349],[71.6171,21.83379],[71.61889,21.82168],[71.61746,21.81892],[71.60606,21.81661],[71.60464,21.81244],[71.6017,21.81239],[71.59958,21.80088],[71.59909,21.7812],[71.60984,21.77942],[71.6126,21.77694],[71.62609,21.77714],[71.63312,21.77451],[71.63499,21.77531],[71.63543,21.76895],[71.63024,21.76076],[71.63246,21.7526],[71.62562,21.75348],[71.62004,21.7522],[71.61854,21.75163],[71.6186,21.74732],[71.61194,21.74485],[71.61267,21.73768],[71.6171,21.73105],[71.62006,21.72917],[71.63098,21.72901],[71.63079,21.72645],[71.63372,21.72496],[71.6334,21.72112],[71.63915,21.70804],[71.6391,21.70308],[71.62195,21.70218],[71.6157,21.69415],[71.61581,21.6916],[71.61395,21.69104],[71.61199,21.69278],[71.60435,21.69129],[71.5955,21.69581],[71.58874,21.69057],[71.58822,21.68764],[71.58833,21.67438],[71.59222,21.66107],[71.58967,21.65901],[71.60221,21.6592],[71.604,21.65566],[71.60903,21.65331],[71.60911,21.65092],[71.61395,21.65078],[71.61461,21.64804],[71.61766,21.648],[71.61732,21.64601],[71.62143,21.64788],[71.62279,21.63253],[71.61675,21.63018],[71.61256,21.63306],[71.58879,21.62824],[71.58395,21.63546],[71.55713,21.62784],[71.55319,21.61816],[71.5511,21.61768],[71.55351,21.61059],[71.55377,21.60268],[71.55251,21.60252],[71.55201,21.59611],[71.55822,21.58342],[71.54831,21.56953],[71.54731,21.56415],[71.54551,21.56298],[71.54579,21.55897],[71.53671,21.55379],[71.52094,21.54903],[71.50896,21.55026],[71.5017,21.54519],[71.49286,21.52912],[71.4896,21.51926],[71.48695,21.50954],[71.48725,21.49421],[71.47793,21.4815],[71.49193,21.46132],[71.52465,21.4623],[71.52998,21.44607],[71.53316,21.44329],[71.5515,21.44318],[71.55194,21.41639],[71.54956,21.41298],[71.54405,21.41224],[71.55128,21.39719],[71.55777,21.40566],[71.58183,21.4058],[71.58088,21.38791],[71.58225,21.3759],[71.58427,21.37512],[71.58294,21.36922],[71.56277,21.36479],[71.55192,21.37095],[71.54809,21.37567],[71.52934,21.37298],[71.52815,21.37151],[71.53005,21.36631],[71.52948,21.3579],[71.52767,21.35469],[71.52789,21.35077],[71.52579,21.35035],[71.52598,21.3475],[71.52186,21.34216],[71.52271,21.33928],[71.52126,21.33682],[71.52703,21.32286],[71.52649,21.31692],[71.53446,21.31337],[71.53319,21.31032],[71.53669,21.30728],[71.53516,21.30326],[71.53528,21.30024],[71.5369,21.29896],[71.53527,21.2976],[71.53549,21.29507],[71.53225,21.29228],[71.5306,21.27936],[71.52869,21.27633],[71.53054,21.27046],[71.53362,21.26864],[71.532,21.26827],[71.53297,21.26392],[71.52805,21.25979],[71.52825,21.25553],[71.52306,21.25014],[71.52759,21.22807],[71.51774,21.2187],[71.52347,21.20474],[71.5261,21.19306],[71.52201,21.1902],[71.52226,21.18784],[71.52554,21.18583],[71.51665,21.17913],[71.51647,21.17389],[71.52618,21.17276],[71.5324,21.17446],[71.53519,21.17131],[71.54114,21.17681],[71.54587,21.17588],[71.54854,21.17386],[71.54911,21.17046],[71.55599,21.16437],[71.55469,21.15917],[71.56014,21.1594],[71.5705,21.15679],[71.57763,21.1476],[71.58171,21.14868],[71.58147,21.14511],[71.58527,21.14641],[71.5859,21.1437],[71.59026,21.1454],[71.59389,21.13512],[71.60606,21.13134],[71.60686,21.12291],[71.60904,21.12096],[71.61255,21.12069],[71.61282,21.11714],[71.61464,21.11731],[71.61583,21.1122],[71.62277,21.11286],[71.62757,21.09576],[71.62554,21.09459],[71.63096,21.08758],[71.6307,21.08559],[71.62817,21.08548],[71.62944,21.07933],[71.62747,21.07858],[71.62896,21.0727],[71.62741,21.07254],[71.62654,21.07],[71.62102,21.06922],[71.61976,21.07296],[71.61757,21.07269],[71.61776,21.07112],[71.60819,21.06946],[71.61012,21.05483],[71.61223,21.05339],[71.61306,21.0565],[71.62532,21.06194],[71.63504,21.06095],[71.63757,21.05879],[71.63932,21.0453],[71.63635,21.04032],[71.64045,21.02877],[71.6659,21.03148],[71.66411,21.02811],[71.6696,21.01926],[71.67294,21.00621],[71.67701,21.00186],[71.67859,20.99585],[71.6832,20.99711],[71.68105,21.00171],[71.68285,21.00384],[71.7001,21.01046],[71.71668,21.02075],[71.72841,21.02122],[71.73156,21.0187],[71.73562,21.02107],[71.73955,21.01696],[71.74327,21.01965],[71.75154,21.0193],[71.75301,21.02223],[71.75993,21.02184],[71.76097,21.02056],[71.76437,21.02154],[71.76496,21.02303],[71.76337,21.02474],[71.76532,21.02659],[71.76926,21.02579],[71.7757,21.03029],[71.78439,21.03003],[71.7863,21.03321],[71.78292,21.03308],[71.77757,21.03736],[71.78054,21.03919],[71.79031,21.04132],[71.79272,21.04004],[71.79173,21.03617],[71.79351,21.03833],[71.80586,21.03806],[71.80654,21.03973],[71.80547,21.0389],[71.80316,21.04312],[71.80398,21.04471],[71.80194,21.04456],[71.80289,21.04846],[71.8017,21.04726],[71.79948,21.0485],[71.79763,21.05522],[71.80051,21.05885],[71.81308,21.06747],[71.8222,21.07094],[71.82435,21.07071],[71.8249,21.0691],[71.82827,21.06936],[71.84286,21.07721],[71.84702,21.07798],[71.84779,21.07623],[71.84979,21.07635],[71.85165,21.08151],[71.85156,21.07919],[71.85457,21.08195],[71.85672,21.08138],[71.86024,21.08574],[71.86638,21.0885],[71.86823,21.0865],[71.87064,21.08914],[71.873,21.08909],[71.87385,21.08729],[71.87897,21.08875],[71.8878,21.09924],[71.88809,21.10215],[71.89833,21.10994],[71.92092,21.11325],[71.92487,21.11226],[71.93009,21.11603],[71.93857,21.11669],[71.93978,21.1148],[71.93968,21.11913],[71.942,21.12087],[71.95077,21.12077],[71.95334,21.12348],[71.96235,21.12435],[71.9739,21.12223],[71.97201,21.12735],[71.97625,21.13324],[71.98661,21.13789],[71.99766,21.13959],[71.9966,21.14191],[72.00405,21.14185],[72.00523,21.13818],[72.00803,21.13778],[72.01023,21.13467],[72.00835,21.14494],[72.0107,21.1486],[72.01779,21.15391],[72.03648,21.15956],[72.03869,21.16259],[72.04586,21.16331],[72.05043,21.16943],[72.05772,21.17371],[72.06279,21.17375],[72.06217,21.17578],[72.0644,21.17822],[72.07405,21.18067],[72.07554,21.18311],[72.07901,21.18409],[72.07937,21.18592],[72.0869,21.18775],[72.08589,21.19031],[72.08767,21.19188],[72.11233,21.19886],[72.1103,21.20214],[72.10948,21.21002],[72.10122,21.21725],[72.1,21.22062],[72.09758,21.22113],[72.09564,21.22453],[72.09047,21.22784],[72.08474,21.23649],[72.08267,21.24514],[72.09754,21.26354],[72.09839,21.27937],[72.10367,21.28076],[72.11148,21.29294],[72.10784,21.30247],[72.11243,21.30565],[72.12515,21.32838],[72.13278,21.33764],[72.13246,21.3391],[72.15586,21.3606],[72.15721,21.36546],[72.16765,21.37621],[72.17169,21.38741],[72.21061,21.42104],[72.21977,21.43498],[72.22516,21.43972],[72.22667,21.44574],[72.23535,21.45601],[72.23667,21.46526],[72.24358,21.47386],[72.24282,21.47559],[72.24557,21.48225],[72.24847,21.48511],[72.25315,21.49837],[72.25606,21.50249],[72.25678,21.51106],[72.26496,21.5372],[72.26586,21.54535],[72.26469,21.55518],[72.26822,21.56293],[72.26996,21.57264],[72.2804,21.59081],[72.28836,21.59718],[72.29411,21.60826],[72.30234,21.61762],[72.30613,21.62601],[72.30582,21.63336],[72.30149,21.64527],[72.30523,21.6463],[72.3042,21.6473],[72.3053,21.64907],[72.30274,21.64965],[72.30031,21.65324],[72.29224,21.67279],[72.29105,21.67925],[72.28215,21.6907],[72.28342,21.69246],[72.27937,21.69323],[72.28021,21.69466],[72.28322,21.69433],[72.28284,21.69696],[72.27162,21.70539],[72.25509,21.73259],[72.25,21.74257],[72.23658,21.77999],[72.22828,21.79295],[72.20282,21.81906],[72.20485,21.82382],[72.21031,21.81896],[72.21212,21.82104],[72.22005,21.81965],[72.23548,21.81204],[72.24158,21.82418],[72.24246,21.82986],[72.21723,21.86701],[72.20833,21.88653],[72.2042,21.89107],[72.20523,21.89693],[72.20304,21.91285],[72.20603,21.92281],[72.20586,21.92989],[72.20856,21.94261],[72.20632,21.94712],[72.20679,21.95147],[72.21167,21.96207],[72.23642,21.97099],[72.24172,21.97577],[72.24428,21.9945],[72.23125,22.0],[72.22695,22.00479],[72.22742,21.99603],[72.23219,21.99057],[72.21836,21.98161],[72.20131,21.98501],[72.1873,21.9905],[72.17535,21.99075],[72.16898,21.99456],[72.1509,22.01558],[72.12331,22.05726],[72.1176,22.0566],[72.10593,22.05861],[72.10401,22.05465],[72.08028,22.0553],[72.07256,22.06534],[72.06769,22.07683],[72.06132,22.08448],[72.05747,22.09543],[72.06007,22.10332],[72.05627,22.10213],[72.03211,22.12121],[72.02082,22.10451],[71.97371,22.11386],[71.96323,22.11639],[71.95468,22.12092],[71.93294,22.12619],[71.93178,22.12502]],[[71.85222,22.05075],[71.85392,22.051],[71.85297,22.04863],[71.85222,22.05075]],[[71.70213,21.8999],[71.70339,21.90144],[71.71001,21.90166],[71.72058,21.89906],[71.7253,21.89057],[71.72786,21.88008],[71.72778,21.86764],[71.69772,21.8632],[71.69291,21.88213],[71.69745,21.88225],[71.69705,21.88459],[71.70134,21.88466],[71.70131,21.89328],[71.70299,21.89348],[71.70213,21.8999]],[[71.64845,21.11644],[71.65075,21.1171],[71.65094,21.11312],[71.65294,21.11277],[71.6548,21.10627],[71.65315,21.10547],[71.65373,21.09815],[71.6507,21.10373],[71.64931,21.10302],[71.64729,21.09938],[71.65051,21.0955],[71.64328,21.09421],[71.64466,21.09062],[71.63888,21.08848],[71.63438,21.09459],[71.63771,21.095],[71.63622,21.09728],[71.63993,21.09771],[71.63981,21.09592],[71.64368,21.09826],[71.64087,21.10153],[71.64054,21.09999],[71.63499,21.09966],[71.63448,21.10384],[71.64159,21.10452],[71.64122,21.10626],[71.63895,21.10614],[71.64116,21.10822],[71.64027,21.11058],[71.64315,21.11117],[71.64433,21.10945],[71.6486,21.11428],[71.64845,21.11644]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"444","area_level":"District","area_name":"Dangs","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.56468,21.01058],[73.56115,21.0145],[73.55763,21.01487],[73.55535,21.0135],[73.5543,21.00978],[73.54688,21.00663],[73.54416,20.97411],[73.54245,20.97056],[73.53981,20.96964],[73.53578,20.95917],[73.53743,20.95129],[73.53266,20.94747],[73.53218,20.94848],[73.51976,20.94707],[73.53027,20.9392],[73.53012,20.93439],[73.52764,20.93314],[73.52288,20.93532],[73.5124,20.93539],[73.51104,20.92608],[73.4962,20.92155],[73.49117,20.91752],[73.48943,20.91384],[73.48907,20.90992],[73.49214,20.90015],[73.48814,20.89129],[73.49923,20.87755],[73.49655,20.87026],[73.49224,20.86783],[73.49175,20.86167],[73.49928,20.85985],[73.50281,20.85595],[73.50267,20.84957],[73.50485,20.84373],[73.49866,20.83842],[73.49965,20.82874],[73.49606,20.82437],[73.49614,20.81544],[73.49436,20.80931],[73.48815,20.80078],[73.48201,20.79664],[73.48742,20.7851],[73.48907,20.76696],[73.4911,20.76148],[73.4904,20.75701],[73.48464,20.74962],[73.48017,20.74832],[73.47868,20.74575],[73.4679,20.74623],[73.46547,20.73999],[73.46528,20.7368],[73.46684,20.73575],[73.46571,20.73216],[73.46802,20.72906],[73.46668,20.72215],[73.47465,20.72039],[73.47563,20.70986],[73.48016,20.70709],[73.48367,20.70141],[73.484,20.69156],[73.49027,20.68638],[73.48626,20.67516],[73.48176,20.67959],[73.47856,20.67666],[73.47963,20.67221],[73.48439,20.67016],[73.48459,20.66558],[73.48922,20.6637],[73.4878,20.66288],[73.48923,20.65573],[73.49562,20.65361],[73.49757,20.65859],[73.50251,20.66227],[73.50452,20.67068],[73.51133,20.66576],[73.5179,20.66743],[73.52049,20.67885],[73.52158,20.67528],[73.53279,20.67274],[73.53322,20.66924],[73.53827,20.66516],[73.5508,20.64856],[73.55785,20.64587],[73.56185,20.6504],[73.56664,20.64842],[73.56836,20.65141],[73.57716,20.64639],[73.58357,20.64478],[73.58541,20.64212],[73.58914,20.64172],[73.59599,20.63611],[73.59951,20.6369],[73.61274,20.62442],[73.61519,20.62482],[73.61475,20.62178],[73.61686,20.61792],[73.62228,20.61424],[73.62129,20.61248],[73.62731,20.59642],[73.62683,20.58548],[73.62968,20.58126],[73.64502,20.57398],[73.65139,20.56856],[73.65268,20.56487],[73.65798,20.56468],[73.66086,20.56247],[73.66912,20.56348],[73.68489,20.57366],[73.69538,20.57837],[73.69968,20.57525],[73.71547,20.57644],[73.72497,20.57386],[73.73233,20.57442],[73.73401,20.57191],[73.74198,20.56884],[73.74456,20.56492],[73.74621,20.56875],[73.75547,20.57084],[73.76074,20.57374],[73.7636,20.58674],[73.76763,20.58655],[73.77539,20.60022],[73.77799,20.59944],[73.79127,20.60527],[73.79727,20.6026],[73.7971,20.59886],[73.7984,20.59868],[73.80706,20.60839],[73.8077,20.60752],[73.81727,20.61357],[73.82601,20.61246],[73.83237,20.61882],[73.83839,20.62046],[73.83307,20.63797],[73.83274,20.64572],[73.83297,20.6486],[73.83831,20.65495],[73.83909,20.65877],[73.83658,20.66427],[73.83099,20.67032],[73.83062,20.6751],[73.81721,20.67204],[73.81692,20.67915],[73.81185,20.69203],[73.82543,20.70072],[73.83123,20.70031],[73.83544,20.7021],[73.83916,20.69802],[73.85051,20.69585],[73.85517,20.69225],[73.85624,20.70039],[73.86083,20.70028],[73.85969,20.70317],[73.86262,20.70324],[73.86371,20.70739],[73.86677,20.71058],[73.86858,20.72003],[73.87073,20.72102],[73.87442,20.72953],[73.88107,20.73116],[73.88253,20.73343],[73.88754,20.73144],[73.89551,20.73166],[73.89738,20.72904],[73.90475,20.72529],[73.90555,20.72681],[73.91205,20.72457],[73.91733,20.72485],[73.91787,20.72956],[73.92726,20.73434],[73.92956,20.72761],[73.93175,20.73282],[73.94266,20.74208],[73.9416,20.74642],[73.93803,20.74922],[73.94106,20.75249],[73.94131,20.75833],[73.93882,20.76034],[73.93186,20.76062],[73.93473,20.77331],[73.93298,20.79187],[73.93612,20.8009],[73.93192,20.80863],[73.93815,20.81422],[73.9421,20.8235],[73.94403,20.82409],[73.94056,20.82847],[73.93925,20.83725],[73.94033,20.83945],[73.92935,20.84236],[73.92761,20.84736],[73.92512,20.84831],[73.92372,20.85138],[73.92454,20.85862],[73.92264,20.8624],[73.9248,20.86648],[73.92337,20.8745],[73.92557,20.87737],[73.92573,20.8885],[73.92216,20.89231],[73.91754,20.90778],[73.90009,20.92078],[73.8882,20.93359],[73.88569,20.92962],[73.88114,20.92994],[73.87589,20.92781],[73.87772,20.93151],[73.87365,20.93675],[73.87408,20.9386],[73.8703,20.93973],[73.87145,20.94224],[73.86758,20.94248],[73.86698,20.94413],[73.8216,20.95372],[73.82032,20.95312],[73.82029,20.94771],[73.81463,20.94897],[73.81213,20.95578],[73.79731,20.95867],[73.79414,20.97603],[73.79214,20.98277],[73.78972,20.98506],[73.78122,20.98827],[73.77489,20.98758],[73.77161,20.99066],[73.77136,20.99439],[73.76564,20.99304],[73.76158,20.9999],[73.75573,20.99952],[73.75572,21.00238],[73.75267,21.00614],[73.74493,21.0048],[73.7409,21.0023],[73.74075,21.00374],[73.73655,21.00294],[73.72884,21.00607],[73.72531,21.00129],[73.71768,21.00656],[73.71362,21.0063],[73.71202,21.00441],[73.70533,21.00635],[73.70242,21.0035],[73.69602,21.00284],[73.69296,21.00079],[73.68701,21.00566],[73.67852,21.00326],[73.67652,21.00108],[73.67128,21.00114],[73.66754,21.00609],[73.66019,21.00767],[73.655,21.00604],[73.65199,21.00252],[73.65076,21.00067],[73.65244,20.99808],[73.65212,20.99186],[73.65047,20.99043],[73.64878,20.99154],[73.64567,20.99053],[73.64481,20.98796],[73.64617,20.98371],[73.64474,20.97943],[73.63783,20.97533],[73.62961,20.97827],[73.62027,20.99088],[73.61072,20.99258],[73.61335,20.98139],[73.60933,20.97789],[73.60276,20.97661],[73.60061,20.97456],[73.59581,20.9624],[73.59584,20.95893],[73.59026,20.96267],[73.585,20.97011],[73.58713,20.97216],[73.59195,20.99181],[73.59113,20.9996],[73.58092,21.00633],[73.58089,21.00843],[73.57689,21.00833],[73.57726,21.00966],[73.57279,21.01302],[73.57013,21.0126],[73.56807,21.01005],[73.56468,21.01058]]],[[[73.81024,21.06681],[73.80774,21.08489],[73.79774,21.07591],[73.7941,21.07144],[73.78033,21.06453],[73.76599,21.06884],[73.76021,21.0694],[73.75765,21.072],[73.74516,21.07761],[73.73714,21.08004],[73.73655,21.0775],[73.73501,21.07535],[73.73438,21.07101],[73.73667,21.06394],[73.73611,21.05878],[73.73429,21.05497],[73.7361,21.05122],[73.7381,21.04139],[73.74088,21.04022],[73.74777,21.04077],[73.74923,21.03999],[73.7506,21.03758],[73.75355,21.03618],[73.76164,21.03828],[73.764,21.0323],[73.76826,21.03099],[73.76921,21.02746],[73.76793,21.02198],[73.76509,21.01778],[73.76199,21.01086],[73.76754,21.0117],[73.7787,21.01972],[73.78682,21.02011],[73.80226,21.0242],[73.80449,21.01786],[73.80666,21.00642],[73.80659,21.00237],[73.80526,20.99735],[73.80864,20.9958],[73.8194,20.99515],[73.82495,20.98975],[73.82751,20.98855],[73.82995,20.98918],[73.8375,20.98761],[73.8392,20.98832],[73.8436,20.98765],[73.84351,20.98865],[73.84461,20.98822],[73.846,21.00001],[73.84729,20.99833],[73.8506,20.99828],[73.84944,20.99977],[73.84578,21.00068],[73.83881,21.00754],[73.83566,21.00806],[73.83304,21.00957],[73.82189,21.01815],[73.81866,21.02211],[73.815,21.0235],[73.81018,21.02834],[73.80872,21.02777],[73.81018,21.02834],[73.79553,21.04452],[73.81052,21.05837],[73.81099,21.06249],[73.81024,21.06681]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"445","area_level":"District","area_name":"Dahod","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.78927,22.79018],[73.78888,22.79065],[73.78637,22.78991],[73.78515,22.78986],[73.78467,22.78964],[73.78441,22.78906],[73.78417,22.78912],[73.78407,22.79013],[73.78204,22.79032],[73.78097,22.78919],[73.78073,22.78925],[73.78056,22.78967],[73.78025,22.78979],[73.77941,22.78913],[73.77865,22.78954],[73.77784,22.78891],[73.77732,22.78926],[73.77683,22.78932],[73.77597,22.78884],[73.77536,22.7889],[73.77535,22.78847],[73.77676,22.7849],[73.77674,22.78408],[73.77634,22.78373],[73.77625,22.78343],[73.77659,22.78245],[73.77788,22.78087],[73.77953,22.77971],[73.78007,22.77913],[73.78038,22.77838],[73.78005,22.77756],[73.77945,22.77679],[73.779,22.77657],[73.77887,22.77575],[73.77947,22.77562],[73.77934,22.77511],[73.77909,22.77512],[73.77895,22.7754],[73.77858,22.77555],[73.77836,22.77505],[73.7787,22.77405],[73.77846,22.77317],[73.77879,22.773],[73.77941,22.77333],[73.77965,22.773],[73.77946,22.7727],[73.77903,22.77248],[73.779,22.77227],[73.77944,22.77212],[73.7795,22.77146],[73.78083,22.771],[73.78198,22.76992],[73.78486,22.76947],[73.78571,22.76966],[73.78574,22.77009],[73.78676,22.7707],[73.78733,22.77145],[73.78954,22.77318],[73.79142,22.77345],[73.7916,22.77332],[73.79165,22.77377],[73.7918,22.77379],[73.79279,22.77352],[73.79326,22.77365],[73.79287,22.77398],[73.79284,22.77426],[73.79226,22.77475],[73.7922,22.77535],[73.79246,22.77576],[73.79304,22.77575],[73.79332,22.77533],[73.79377,22.77517],[73.79488,22.77595],[73.79598,22.77746],[73.79714,22.77756],[73.79704,22.77798],[73.79663,22.77821],[73.79589,22.77956],[73.79563,22.77964],[73.79544,22.78017],[73.79564,22.78189],[73.79533,22.78251],[73.79548,22.7828],[73.79541,22.78314],[73.79478,22.78446],[73.79363,22.7852],[73.79248,22.78655],[73.79203,22.78738],[73.79009,22.78853],[73.78927,22.79018]]],[[[74.00157,23.3356],[73.9978,23.33573],[73.99621,23.32888],[73.98767,23.31965],[73.98468,23.31008],[73.9861,23.3014],[73.98995,23.29841],[73.99022,23.29653],[73.9948,23.29425],[73.99721,23.28915],[73.98795,23.28157],[73.98326,23.26153],[73.98938,23.25687],[73.99157,23.25005],[73.99426,23.24848],[73.9932,23.24333],[73.99036,23.24017],[73.9909,23.23099],[73.99269,23.22792],[73.98979,23.22094],[73.98537,23.21854],[73.97207,23.22307],[73.97023,23.2251],[73.96472,23.22478],[73.96641,23.22209],[73.96512,23.217],[73.96633,23.2097],[73.96834,23.20658],[73.97953,23.20787],[73.98143,23.20887],[73.98207,23.21161],[73.98566,23.20796],[73.98348,23.20444],[73.9839,23.20234],[73.98,23.19989],[73.98061,23.19322],[73.98385,23.19284],[73.98357,23.19108],[73.97285,23.18877],[73.97517,23.18466],[73.97228,23.18315],[73.97187,23.18002],[73.97372,23.17216],[73.97534,23.17297],[73.97977,23.16658],[73.98535,23.16577],[73.99039,23.16019],[73.99225,23.16038],[73.99101,23.15588],[73.99213,23.14777],[73.9954,23.14526],[73.99507,23.13613],[73.9814,23.13963],[73.97821,23.1371],[73.97578,23.13243],[73.97553,23.1241],[73.9821,23.11885],[73.99388,23.11572],[73.99811,23.11487],[74.00359,23.11742],[74.00491,23.11575],[74.00493,23.10867],[74.01309,23.10375],[74.01207,23.10203],[74.01954,23.09354],[74.01913,23.0918],[74.01732,23.09201],[74.01293,23.08779],[74.00298,23.08902],[74.00174,23.08633],[73.99788,23.08577],[73.98844,23.09189],[73.98241,23.09852],[73.9686,23.10011],[73.96819,23.10355],[73.96636,23.10405],[73.96574,23.10845],[73.96374,23.11056],[73.96462,23.11117],[73.95901,23.11401],[73.95338,23.10867],[73.94536,23.11026],[73.94515,23.10132],[73.94223,23.09834],[73.93433,23.09656],[73.93045,23.09734],[73.92858,23.09354],[73.91771,23.09199],[73.91152,23.08445],[73.90666,23.08109],[73.90525,23.0685],[73.90816,23.05335],[73.90427,23.04995],[73.90694,23.04135],[73.90574,23.03895],[73.90884,23.03324],[73.90831,23.02306],[73.91098,23.02092],[73.91183,23.01541],[73.91356,23.01641],[73.91397,23.01391],[73.90609,23.00767],[73.90281,22.9959],[73.90348,22.98502],[73.92824,22.97717],[73.92147,22.96621],[73.91386,22.96648],[73.90468,22.964],[73.90133,22.95324],[73.89872,22.95395],[73.89534,22.95239],[73.89336,22.94718],[73.88488,22.9479],[73.88186,22.94602],[73.88932,22.94193],[73.89325,22.93685],[73.90059,22.9368],[73.90076,22.9355],[73.90413,22.9351],[73.90736,22.93177],[73.90764,22.92765],[73.89281,22.91718],[73.88051,22.90178],[73.87609,22.89022],[73.87463,22.8793],[73.86902,22.86859],[73.86312,22.86136],[73.86107,22.85376],[73.85418,22.84172],[73.84781,22.84424],[73.84011,22.84449],[73.83793,22.83502],[73.83955,22.8306],[73.83735,22.82454],[73.83941,22.82356],[73.83969,22.82079],[73.84723,22.81786],[73.8508,22.80181],[73.84936,22.79777],[73.84985,22.79285],[73.84601,22.79181],[73.84286,22.79784],[73.83122,22.80266],[73.83037,22.79956],[73.82721,22.79678],[73.82564,22.7892],[73.82371,22.78813],[73.81338,22.78904],[73.81038,22.7854],[73.82182,22.78351],[73.82452,22.78645],[73.83147,22.78584],[73.83377,22.78326],[73.83378,22.77778],[73.83543,22.77497],[73.85179,22.75855],[73.85484,22.74531],[73.85366,22.74317],[73.84442,22.74252],[73.83977,22.73868],[73.83431,22.73693],[73.83468,22.7349],[73.83736,22.73528],[73.8361,22.73191],[73.83767,22.72934],[73.83472,22.72468],[73.83617,22.71665],[73.83265,22.70764],[73.82791,22.70425],[73.82642,22.70084],[73.82153,22.70163],[73.81582,22.69749],[73.80768,22.70141],[73.80646,22.69353],[73.80374,22.68764],[73.80727,22.67614],[73.81006,22.67425],[73.82003,22.67544],[73.82149,22.67371],[73.82373,22.67388],[73.8303,22.6595],[73.82633,22.65813],[73.82613,22.64966],[73.82251,22.64664],[73.82708,22.64485],[73.82677,22.64092],[73.81284,22.63874],[73.80917,22.62679],[73.79719,22.61263],[73.80891,22.61075],[73.81463,22.61233],[73.82354,22.61129],[73.82407,22.61346],[73.8292,22.6137],[73.83011,22.6124],[73.82782,22.60858],[73.83256,22.60712],[73.84274,22.6103],[73.84327,22.60647],[73.84523,22.60777],[73.85061,22.60094],[73.8528,22.59219],[73.86063,22.58609],[73.86365,22.58102],[73.86463,22.57234],[73.86146,22.57229],[73.85844,22.56905],[73.85105,22.56612],[73.84672,22.57017],[73.84719,22.57255],[73.84542,22.57297],[73.8343,22.5687],[73.81916,22.56914],[73.81117,22.56753],[73.80825,22.55933],[73.80899,22.55314],[73.80529,22.55216],[73.8029,22.54883],[73.8097,22.54883],[73.82625,22.53989],[73.83288,22.53395],[73.83873,22.53329],[73.83789,22.5299],[73.84358,22.52132],[73.84418,22.51766],[73.85206,22.51096],[73.8762,22.50312],[73.88034,22.50292],[73.89058,22.50845],[73.90559,22.50743],[73.90985,22.51028],[73.9105,22.51253],[73.9245,22.5205],[73.9262,22.53014],[73.93626,22.53844],[73.95216,22.53489],[73.95981,22.53681],[73.96503,22.53603],[73.96976,22.53852],[73.97081,22.54218],[73.97442,22.54525],[73.98577,22.54973],[73.98687,22.552],[73.99359,22.55596],[74.00578,22.55688],[74.0153,22.55942],[74.01755,22.57406],[74.02322,22.57059],[74.03934,22.57042],[74.04598,22.56531],[74.05557,22.56254],[74.06114,22.54984],[74.07464,22.5514],[74.08408,22.54475],[74.09926,22.53835],[74.1013,22.53442],[74.1073,22.53941],[74.11184,22.53967],[74.12159,22.5282],[74.1271,22.52687],[74.12684,22.52447],[74.13054,22.52393],[74.13309,22.52025],[74.15067,22.52127],[74.15037,22.52897],[74.15607,22.53488],[74.16264,22.53808],[74.17069,22.54715],[74.18031,22.54818],[74.18951,22.5536],[74.1901,22.55947],[74.1833,22.56649],[74.18578,22.56582],[74.19359,22.56882],[74.20048,22.56573],[74.20369,22.56873],[74.2046,22.56581],[74.21003,22.56426],[74.21125,22.57486],[74.22183,22.58357],[74.22543,22.59604],[74.23112,22.60794],[74.23137,22.6118],[74.24066,22.61187],[74.24351,22.62051],[74.2496,22.61969],[74.2534,22.62148],[74.25512,22.62349],[74.25358,22.63466],[74.25882,22.63685],[74.26356,22.64397],[74.26667,22.64211],[74.26615,22.63835],[74.27182,22.63916],[74.27737,22.646],[74.29321,22.63791],[74.31197,22.63645],[74.3148,22.63387],[74.32372,22.63595],[74.32278,22.6407],[74.32935,22.64173],[74.33212,22.63872],[74.3376,22.64029],[74.35909,22.63399],[74.37451,22.63594],[74.37906,22.63443],[74.37961,22.64037],[74.38429,22.64629],[74.38066,22.6584],[74.38198,22.66751],[74.39498,22.68564],[74.3944,22.69961],[74.39781,22.70387],[74.39953,22.70938],[74.39694,22.71355],[74.4017,22.73097],[74.40891,22.74026],[74.41388,22.74304],[74.41602,22.7488],[74.41596,22.75406],[74.41792,22.75625],[74.42136,22.75675],[74.43554,22.7826],[74.43788,22.79204],[74.43378,22.8079],[74.44922,22.8083],[74.46477,22.81639],[74.4706,22.84107],[74.47643,22.85482],[74.4702,22.86377],[74.46876,22.86941],[74.47025,22.87753],[74.46399,22.88644],[74.46389,22.89827],[74.46076,22.90684],[74.45754,22.91193],[74.44941,22.91739],[74.44683,22.92108],[74.44406,22.91875],[74.44095,22.91851],[74.43363,22.91249],[74.43323,22.91795],[74.41848,22.91704],[74.41052,22.91184],[74.4136,22.90609],[74.40824,22.90617],[74.40445,22.90359],[74.4041,22.8993],[74.40166,22.89773],[74.39341,22.8966],[74.38546,22.90455],[74.37756,22.9072],[74.3706,22.92173],[74.3625,22.92606],[74.35905,22.93007],[74.35735,22.93401],[74.35767,22.93921],[74.3395,22.95289],[74.33741,22.95669],[74.33849,22.96369],[74.34969,22.97147],[74.35045,22.97428],[74.36104,22.97659],[74.36546,22.9759],[74.36368,22.98167],[74.34938,23.00685],[74.34686,23.01399],[74.34665,23.02414],[74.34494,23.0284],[74.33979,23.03267],[74.32758,23.0366],[74.32193,23.04122],[74.31818,23.0621],[74.31248,23.07292],[74.29783,23.08398],[74.28287,23.08853],[74.27764,23.0943],[74.27712,23.0994],[74.28577,23.11257],[74.28712,23.11712],[74.27837,23.12499],[74.27437,23.13075],[74.26933,23.14763],[74.26855,23.15582],[74.26467,23.16193],[74.24736,23.17143],[74.24286,23.17734],[74.2408,23.18469],[74.23164,23.17727],[74.23137,23.17893],[74.22379,23.18151],[74.21252,23.18367],[74.21256,23.18693],[74.20292,23.19031],[74.19578,23.18054],[74.1886,23.17815],[74.1887,23.1752],[74.18293,23.16634],[74.18542,23.15682],[74.17888,23.14728],[74.17166,23.15471],[74.15448,23.15649],[74.15407,23.15204],[74.15169,23.15302],[74.14794,23.15766],[74.14526,23.16836],[74.1412,23.17315],[74.12148,23.17619],[74.11638,23.18466],[74.11902,23.1919],[74.11939,23.20463],[74.13007,23.21115],[74.12814,23.21388],[74.12862,23.21666],[74.13447,23.22303],[74.13116,23.22923],[74.13373,23.22986],[74.1325,23.23159],[74.13258,23.24078],[74.13008,23.24512],[74.13201,23.2472],[74.13077,23.25649],[74.13237,23.25925],[74.13264,23.26619],[74.12793,23.26899],[74.10922,23.27436],[74.10755,23.28444],[74.10058,23.29381],[74.09617,23.29325],[74.08593,23.29804],[74.08298,23.29609],[74.07138,23.29882],[74.04829,23.29332],[74.03816,23.29345],[74.03883,23.29857],[74.0424,23.30029],[74.04486,23.30881],[74.04086,23.30873],[74.03552,23.30501],[74.03307,23.30599],[74.03075,23.31291],[74.02481,23.32106],[74.02865,23.33167],[74.00157,23.3356]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"446","area_level":"District","area_name":"Gandhinagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.65055,23.56625],[72.6469,23.56758],[72.62823,23.5597],[72.62584,23.55624],[72.62391,23.55657],[72.62394,23.54852],[72.62692,23.54392],[72.62112,23.53928],[72.62207,23.53475],[72.62016,23.52943],[72.62127,23.5155],[72.6195,23.51151],[72.61369,23.50962],[72.60515,23.51067],[72.60218,23.51923],[72.58424,23.52186],[72.58071,23.51202],[72.58055,23.5],[72.57651,23.48809],[72.57718,23.47605],[72.57507,23.46474],[72.56781,23.45854],[72.56795,23.45545],[72.55499,23.45678],[72.54555,23.45376],[72.54366,23.44659],[72.54002,23.44237],[72.53392,23.44199],[72.53391,23.44015],[72.53629,23.44026],[72.53704,23.4372],[72.53632,23.43148],[72.54083,23.43085],[72.54082,23.42938],[72.5309,23.42356],[72.52633,23.42502],[72.52409,23.41687],[72.52774,23.40721],[72.52734,23.40463],[72.51147,23.396],[72.50733,23.38671],[72.50411,23.38452],[72.50392,23.38146],[72.5059,23.38124],[72.50599,23.37804],[72.51026,23.37341],[72.51794,23.36868],[72.51972,23.36967],[72.52477,23.36327],[72.52151,23.35437],[72.51982,23.35446],[72.52133,23.35056],[72.51139,23.3502],[72.50816,23.34911],[72.50611,23.34616],[72.50076,23.3464],[72.48874,23.34062],[72.48512,23.34062],[72.47719,23.34605],[72.4718,23.34455],[72.48024,23.33234],[72.48452,23.31891],[72.48038,23.31302],[72.4704,23.31446],[72.45914,23.31357],[72.46093,23.31166],[72.46549,23.31229],[72.47137,23.30744],[72.47634,23.30672],[72.47504,23.30253],[72.46532,23.30048],[72.46323,23.2975],[72.45086,23.29799],[72.45131,23.30021],[72.44818,23.30443],[72.44015,23.30778],[72.43712,23.31076],[72.42706,23.30624],[72.42275,23.30034],[72.41906,23.28957],[72.41589,23.28669],[72.41572,23.28334],[72.41211,23.28079],[72.41348,23.27659],[72.42008,23.26868],[72.42089,23.26378],[72.42338,23.2621],[72.42309,23.25762],[72.42704,23.25762],[72.42567,23.26254],[72.4331,23.26384],[72.4354,23.26119],[72.43842,23.26208],[72.44606,23.25537],[72.44648,23.24462],[72.42639,23.2489],[72.42628,23.24384],[72.42804,23.24075],[72.43126,23.23936],[72.43034,23.23311],[72.43258,23.22276],[72.43937,23.21621],[72.43782,23.21388],[72.44019,23.2101],[72.43975,23.20431],[72.44292,23.20174],[72.44891,23.20063],[72.44809,23.19585],[72.43902,23.19537],[72.43716,23.19975],[72.42276,23.20925],[72.42041,23.20567],[72.41662,23.20508],[72.41549,23.20341],[72.41468,23.19913],[72.41653,23.18909],[72.4153,23.18686],[72.41324,23.18603],[72.40506,23.1884],[72.40235,23.18749],[72.39736,23.17991],[72.3944,23.17927],[72.38426,23.1718],[72.38406,23.16367],[72.38687,23.15395],[72.39392,23.15157],[72.39741,23.14793],[72.4164,23.14997],[72.41854,23.15117],[72.41794,23.15538],[72.42099,23.15303],[72.42562,23.15368],[72.429,23.15099],[72.42738,23.14362],[72.41745,23.13069],[72.40103,23.13378],[72.40279,23.12549],[72.39754,23.1225],[72.39105,23.12223],[72.39008,23.1192],[72.38678,23.11837],[72.38496,23.11529],[72.38589,23.11135],[72.38221,23.1108],[72.37756,23.10758],[72.37072,23.09599],[72.36745,23.09732],[72.37083,23.10226],[72.36938,23.10227],[72.36864,23.10445],[72.36903,23.10787],[72.3621,23.11296],[72.35629,23.12447],[72.35161,23.12395],[72.35073,23.12544],[72.34731,23.12395],[72.34407,23.1264],[72.34331,23.12509],[72.34172,23.12598],[72.33811,23.11781],[72.33651,23.10707],[72.34517,23.09903],[72.34864,23.09046],[72.35598,23.08824],[72.3655,23.09021],[72.3695,23.0936],[72.3716,23.08589],[72.37516,23.08094],[72.38427,23.07968],[72.38103,23.07337],[72.38114,23.06066],[72.38496,23.0589],[72.38809,23.05495],[72.38725,23.05174],[72.39734,23.05605],[72.39737,23.05724],[72.40303,23.05715],[72.40335,23.06516],[72.40753,23.06652],[72.40722,23.06791],[72.41281,23.0668],[72.41467,23.0646],[72.42764,23.06497],[72.43025,23.06324],[72.42969,23.05721],[72.43105,23.05568],[72.4266,23.04789],[72.43517,23.04351],[72.43929,23.04599],[72.44742,23.04754],[72.44881,23.06046],[72.45294,23.06257],[72.46198,23.06035],[72.47178,23.06363],[72.47396,23.07221],[72.46888,23.07646],[72.46579,23.08164],[72.46022,23.07954],[72.45971,23.08394],[72.46434,23.08338],[72.47568,23.08697],[72.4777,23.08944],[72.47867,23.09507],[72.48171,23.09724],[72.49801,23.09972],[72.49898,23.1123],[72.49556,23.11379],[72.48647,23.12526],[72.48452,23.1324],[72.48609,23.13779],[72.48306,23.14443],[72.48762,23.14492],[72.49392,23.14179],[72.50499,23.14416],[72.50506,23.14806],[72.50349,23.14837],[72.50421,23.155],[72.51182,23.15984],[72.5185,23.15052],[72.52538,23.15008],[72.52613,23.14814],[72.53076,23.14853],[72.53579,23.15714],[72.53743,23.16441],[72.54858,23.16401],[72.54543,23.15459],[72.54089,23.1488],[72.54332,23.14565],[72.54124,23.14082],[72.54188,23.13696],[72.53974,23.13731],[72.54058,23.13227],[72.54566,23.13195],[72.55233,23.13399],[72.5568,23.13617],[72.55788,23.13863],[72.56262,23.13727],[72.56698,23.13245],[72.56783,23.12795],[72.56668,23.12693],[72.56793,23.12685],[72.56308,23.11603],[72.56908,23.11613],[72.5715,23.12211],[72.57821,23.1182],[72.5827,23.12992],[72.58675,23.13049],[72.58808,23.12927],[72.59704,23.13194],[72.60854,23.12907],[72.61218,23.12602],[72.61247,23.12318],[72.61435,23.12329],[72.61296,23.11525],[72.61861,23.11505],[72.61685,23.10962],[72.614,23.10833],[72.6132,23.1046],[72.61174,23.10472],[72.6099,23.10079],[72.61036,23.09151],[72.63737,23.09198],[72.64281,23.09527],[72.64663,23.10122],[72.65038,23.10058],[72.65492,23.09478],[72.65995,23.09696],[72.66525,23.09484],[72.67214,23.10806],[72.68053,23.1066],[72.68109,23.10257],[72.6838,23.10169],[72.69048,23.10299],[72.69394,23.10568],[72.69705,23.11125],[72.69989,23.112],[72.70057,23.11068],[72.71035,23.11073],[72.71392,23.10534],[72.71632,23.09477],[72.73312,23.09975],[72.73247,23.09801],[72.7361,23.09849],[72.73618,23.10027],[72.73804,23.10036],[72.73821,23.09855],[72.74102,23.0974],[72.74417,23.09988],[72.74398,23.08904],[72.75372,23.09126],[72.75809,23.09512],[72.7644,23.09604],[72.77522,23.0856],[72.77815,23.07738],[72.7709,23.07016],[72.76607,23.05962],[72.78979,23.05847],[72.79754,23.05114],[72.79449,23.04422],[72.80171,23.04058],[72.80513,23.03662],[72.81097,23.03859],[72.81534,23.03737],[72.8149,23.03374],[72.81064,23.03267],[72.8118,23.03054],[72.80806,23.0291],[72.80694,23.02626],[72.81155,23.02265],[72.81537,23.02327],[72.81827,23.01724],[72.82342,23.01929],[72.82456,23.01456],[72.81906,23.01405],[72.81938,23.01214],[72.82251,23.0111],[72.82412,23.0057],[72.83343,23.00293],[72.83584,23.00051],[72.83653,22.99655],[72.84507,22.99724],[72.84846,22.99917],[72.8488,23.0026],[72.84301,23.01017],[72.84564,23.01163],[72.85309,23.0129],[72.85908,23.01141],[72.86085,23.0084],[72.87508,23.00868],[72.87732,23.01098],[72.87675,23.01475],[72.88032,23.01613],[72.88578,23.01454],[72.88678,23.01603],[72.89035,23.01628],[72.89032,23.01464],[72.8927,23.01469],[72.89082,23.01879],[72.89196,23.01824],[72.89212,23.0212],[72.8981,23.02957],[72.90463,23.03061],[72.90545,23.03996],[72.9086,23.04147],[72.90846,23.04788],[72.9114,23.05179],[72.9135,23.05195],[72.91382,23.05476],[72.90646,23.06507],[72.91225,23.06614],[72.91804,23.0694],[72.92373,23.06931],[72.9221,23.0719],[72.92291,23.07507],[72.92605,23.07409],[72.92548,23.08062],[72.92709,23.08083],[72.92753,23.07693],[72.93009,23.07618],[72.93921,23.07582],[72.93965,23.07721],[72.93959,23.07431],[72.94173,23.07334],[72.94526,23.07458],[72.94514,23.07276],[72.95825,23.07363],[72.95519,23.08547],[72.96492,23.09044],[72.96598,23.10115],[72.97149,23.10138],[72.97147,23.10305],[72.96604,23.10318],[72.96637,23.10804],[72.97775,23.10883],[72.97508,23.115],[72.97484,23.12164],[72.97914,23.12778],[72.98464,23.13109],[72.99662,23.13292],[73.00857,23.13005],[73.01562,23.12625],[73.02444,23.1289],[73.02883,23.13345],[73.02893,23.13751],[73.02506,23.14297],[73.01402,23.14358],[73.01466,23.14902],[73.01184,23.15246],[73.0136,23.15506],[73.01143,23.15814],[73.0141,23.16026],[73.01277,23.16142],[72.98134,23.15932],[72.97566,23.15987],[72.97119,23.16356],[72.97355,23.16816],[72.97904,23.16971],[72.981,23.17235],[72.98315,23.17153],[72.98444,23.17486],[72.98221,23.17466],[72.98206,23.17695],[72.97834,23.17701],[72.97754,23.17838],[72.98037,23.19076],[72.98623,23.20062],[72.9817,23.20242],[72.98183,23.20546],[72.98364,23.2054],[72.98308,23.20716],[72.98477,23.20819],[72.98293,23.20906],[72.98145,23.22245],[72.98621,23.22804],[72.98971,23.25077],[72.99991,23.27026],[73.01701,23.2783],[73.00419,23.28293],[72.99531,23.29027],[72.9871,23.28253],[72.9778,23.28458],[72.96981,23.28026],[72.96054,23.28106],[72.95782,23.27742],[72.95874,23.27539],[72.96582,23.27593],[72.96653,23.27372],[72.97763,23.26693],[72.97837,23.26399],[72.97535,23.26296],[72.97221,23.2655],[72.97016,23.26521],[72.96772,23.26007],[72.97061,23.25729],[72.96932,23.25577],[72.96624,23.25626],[72.96305,23.26032],[72.95978,23.25919],[72.95917,23.25355],[72.96329,23.25175],[72.95983,23.24142],[72.95565,23.24071],[72.95039,23.25105],[72.94786,23.25258],[72.94489,23.25053],[72.94611,23.24492],[72.94451,23.24145],[72.93614,23.23906],[72.93361,23.24375],[72.92994,23.24277],[72.93216,23.24681],[72.92931,23.24654],[72.92924,23.24895],[72.92722,23.249],[72.92705,23.25868],[72.91897,23.26376],[72.92045,23.29105],[72.91499,23.29087],[72.89883,23.28114],[72.89352,23.282],[72.88954,23.28582],[72.88369,23.28842],[72.88445,23.29332],[72.89142,23.29461],[72.89633,23.29343],[72.91058,23.29719],[72.91416,23.29667],[72.91231,23.30373],[72.91374,23.31677],[72.9126,23.31776],[72.91654,23.3216],[72.91559,23.32255],[72.90842,23.32497],[72.89427,23.3248],[72.88435,23.32245],[72.88523,23.31864],[72.88323,23.313],[72.87118,23.31497],[72.86504,23.3135],[72.85486,23.31542],[72.8544,23.31771],[72.84915,23.31951],[72.84392,23.32541],[72.83613,23.32837],[72.83617,23.33121],[72.83377,23.33149],[72.82833,23.32894],[72.8259,23.33034],[72.81029,23.31887],[72.80106,23.31905],[72.79956,23.32707],[72.79746,23.3272],[72.79692,23.33153],[72.80456,23.33415],[72.8048,23.34794],[72.80777,23.35586],[72.80055,23.35709],[72.80014,23.35544],[72.79776,23.35554],[72.79436,23.35772],[72.78703,23.35404],[72.77501,23.3565],[72.76502,23.35474],[72.76076,23.35875],[72.76448,23.36737],[72.74659,23.37456],[72.75178,23.38291],[72.75274,23.38722],[72.74069,23.39316],[72.73071,23.38869],[72.72348,23.38857],[72.72344,23.38978],[72.72686,23.39822],[72.73413,23.40333],[72.74092,23.40576],[72.75985,23.40731],[72.77168,23.41523],[72.77857,23.41473],[72.78733,23.40703],[72.79255,23.40476],[72.79767,23.40406],[72.80212,23.40594],[72.80312,23.41037],[72.79463,23.41997],[72.79346,23.42675],[72.79594,23.43071],[72.80202,23.43423],[72.80717,23.44057],[72.81888,23.46672],[72.81939,23.46987],[72.81417,23.48065],[72.79961,23.49476],[72.79785,23.50288],[72.78575,23.50303],[72.77171,23.51759],[72.76477,23.51102],[72.76247,23.50262],[72.74159,23.5061],[72.74001,23.50302],[72.73403,23.50277],[72.73143,23.50698],[72.72857,23.50625],[72.7226,23.49597],[72.71833,23.4963],[72.71855,23.49884],[72.71704,23.4989],[72.71911,23.50033],[72.7203,23.49845],[72.72772,23.50527],[72.7301,23.51166],[72.73036,23.52044],[72.72494,23.52116],[72.72416,23.52602],[72.71462,23.52663],[72.70802,23.52944],[72.70024,23.52835],[72.6979,23.52314],[72.69092,23.52281],[72.68649,23.52778],[72.68572,23.5317],[72.67576,23.53052],[72.67718,23.54503],[72.68005,23.55119],[72.67863,23.55603],[72.66298,23.55667],[72.66076,23.55027],[72.65918,23.5515],[72.6545,23.55102],[72.65531,23.56655],[72.65055,23.56625]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"447","area_level":"District","area_name":"Jamnagar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[70.5365,22.40753],[70.53603,22.41202],[70.53461,22.41566],[70.53451,22.41691],[70.53487,22.4183],[70.52316,22.41949],[70.52471,22.41752],[70.52408,22.41588],[70.5242,22.41444],[70.51677,22.41189],[70.51657,22.4091],[70.51595,22.40786],[70.51595,22.40558],[70.51963,22.40583],[70.51986,22.40393],[70.51959,22.40177],[70.51618,22.40038],[70.50858,22.39639],[70.50676,22.39611],[70.50606,22.39425],[70.50601,22.39325],[70.50546,22.39287],[70.50549,22.3926],[70.50689,22.39065],[70.50827,22.39077],[70.50862,22.39059],[70.50956,22.38926],[70.51063,22.38952],[70.51165,22.39072],[70.51214,22.39073],[70.51314,22.38863],[70.5119,22.38692],[70.51472,22.3853],[70.51615,22.38692],[70.51629,22.38815],[70.51682,22.38858],[70.51747,22.38852],[70.5192,22.3874],[70.51999,22.3875],[70.52086,22.38812],[70.52145,22.38809],[70.52194,22.3878],[70.52223,22.38717],[70.52265,22.3871],[70.52361,22.38723],[70.52479,22.38788],[70.52577,22.38686],[70.52657,22.38729],[70.53032,22.38759],[70.53118,22.3895],[70.53096,22.39192],[70.53112,22.39284],[70.53082,22.39361],[70.53079,22.39507],[70.53132,22.3961],[70.53275,22.40156],[70.53482,22.40162],[70.53494,22.40213],[70.53704,22.40232],[70.5371,22.40414],[70.53631,22.40528],[70.5365,22.40753]]],[[[70.52069,22.46111],[70.52011,22.46226],[70.51804,22.46175],[70.51916,22.45955],[70.51677,22.45866],[70.51521,22.46096],[70.51489,22.46108],[70.51084,22.45979],[70.51135,22.45848],[70.51162,22.45694],[70.51287,22.45486],[70.51564,22.45177],[70.52092,22.44881],[70.52682,22.44356],[70.5264,22.4426],[70.52651,22.4419],[70.529,22.43549],[70.53423,22.4356],[70.53464,22.43642],[70.53483,22.43828],[70.53598,22.43796],[70.53786,22.4381],[70.53706,22.439],[70.53445,22.44308],[70.53218,22.44523],[70.53143,22.44689],[70.52988,22.44871],[70.52731,22.45111],[70.52586,22.45287],[70.52429,22.45435],[70.52336,22.45492],[70.52185,22.45774],[70.52178,22.45865],[70.52069,22.46111]]],[[[70.05155,22.54493],[70.04894,22.54773],[70.04903,22.54863],[70.04786,22.5496],[70.0482,22.55059],[70.04723,22.55115],[70.04702,22.55195],[70.04591,22.55213],[70.04392,22.55352],[70.04016,22.55284],[70.04007,22.55219],[70.04045,22.55049],[70.04015,22.54745],[70.03905,22.54447],[70.03796,22.54394],[70.03882,22.53978],[70.03787,22.53873],[70.03619,22.53885],[70.0356,22.53749],[70.03556,22.53685],[70.03509,22.53642],[70.03491,22.53559],[70.03575,22.53434],[70.03801,22.5341],[70.03915,22.53374],[70.03928,22.53171],[70.04004,22.53105],[70.04096,22.53105],[70.0411,22.5292],[70.04246,22.52965],[70.04224,22.52767],[70.04259,22.52644],[70.0437,22.52565],[70.04401,22.52577],[70.04483,22.52461],[70.04611,22.52362],[70.04822,22.52375],[70.05159,22.52724],[70.05166,22.52802],[70.05328,22.5306],[70.05406,22.53117],[70.0543,22.53192],[70.05254,22.53407],[70.05143,22.53499],[70.05006,22.53696],[70.05149,22.53705],[70.05157,22.53813],[70.05125,22.53795],[70.05079,22.53842],[70.0505,22.53834],[70.05031,22.53871],[70.04995,22.53834],[70.04902,22.5389],[70.04894,22.53936],[70.05013,22.54008],[70.05145,22.54018],[70.052,22.54075],[70.05173,22.54202],[70.05365,22.54265],[70.05396,22.54209],[70.05518,22.5413],[70.05545,22.54027],[70.05709,22.53817],[70.0572,22.53694],[70.05785,22.53742],[70.05937,22.53743],[70.05814,22.53949],[70.05732,22.54024],[70.05725,22.54165],[70.05588,22.54211],[70.05568,22.54243],[70.05588,22.54272],[70.05531,22.54408],[70.05449,22.54501],[70.05438,22.54585],[70.05362,22.54575],[70.05333,22.54396],[70.05155,22.54493]]],[[[70.48944,22.85475],[70.48773,22.85737],[70.47851,22.86048],[70.46232,22.83131],[70.4393,22.82748],[70.4334,22.81879],[70.41331,22.81839],[70.39621,22.80261],[70.36112,22.78256],[70.32328,22.74891],[70.31592,22.7443],[70.31512,22.74605],[70.31022,22.74329],[70.29307,22.72813],[70.27869,22.72527],[70.28039,22.71866],[70.27492,22.71525],[70.26813,22.70525],[70.26802,22.68725],[70.26865,22.68306],[70.27345,22.67894],[70.273,22.67209],[70.264,22.6699],[70.2666,22.66307],[70.26383,22.6585],[70.26351,22.65346],[70.25545,22.64947],[70.24765,22.64029],[70.23695,22.63226],[70.23346,22.63146],[70.23295,22.6328],[70.22892,22.62567],[70.22478,22.62422],[70.21951,22.61419],[70.21597,22.61402],[70.21093,22.61104],[70.20906,22.607],[70.21076,22.60601],[70.21104,22.59863],[70.20801,22.59834],[70.20554,22.59408],[70.20457,22.59638],[70.19928,22.59705],[70.19861,22.58777],[70.20409,22.582],[70.19457,22.58275],[70.17918,22.56752],[70.17605,22.54438],[70.1789,22.54207],[70.18508,22.54306],[70.1834,22.5241],[70.18473,22.52217],[70.17288,22.52566],[70.17198,22.52931],[70.16348,22.52663],[70.14917,22.51197],[70.13276,22.51718],[70.12415,22.51262],[70.11887,22.50583],[70.12108,22.48879],[70.11956,22.48859],[70.11988,22.48631],[70.11787,22.48802],[70.11767,22.49891],[70.11629,22.50104],[70.10826,22.49757],[70.08583,22.49406],[70.08574,22.49871],[70.08261,22.49785],[70.08126,22.49953],[70.08468,22.50053],[70.08612,22.50394],[70.09024,22.50568],[70.09122,22.50816],[70.08651,22.50947],[70.08665,22.51184],[70.08119,22.51455],[70.07673,22.51536],[70.07318,22.51388],[70.07312,22.51783],[70.05705,22.50667],[70.04757,22.50493],[70.03131,22.50841],[70.02887,22.5047],[70.02769,22.50789],[70.0207,22.50715],[70.01724,22.50586],[70.01544,22.50177],[70.0103,22.49992],[69.99944,22.50886],[69.9911,22.51056],[69.98985,22.5085],[69.98766,22.51047],[69.98561,22.50826],[69.98929,22.50547],[69.98464,22.50479],[69.98475,22.50235],[69.98158,22.49975],[69.98299,22.49711],[69.97936,22.49547],[69.97871,22.49146],[69.98157,22.48998],[69.98025,22.48788],[69.98382,22.48483],[69.98222,22.48028],[69.98668,22.47721],[69.97982,22.47379],[69.97926,22.46817],[69.97498,22.46934],[69.97055,22.46817],[69.96425,22.47769],[69.96172,22.4783],[69.95674,22.47834],[69.95755,22.47502],[69.95051,22.47235],[69.93985,22.48279],[69.93646,22.47889],[69.93504,22.4713],[69.93741,22.46327],[69.92568,22.46448],[69.92055,22.46092],[69.91867,22.46392],[69.91493,22.46546],[69.9132,22.4644],[69.91427,22.45987],[69.9191,22.45646],[69.91328,22.45542],[69.91366,22.45178],[69.90666,22.44846],[69.90754,22.45132],[69.90426,22.45034],[69.90337,22.45405],[69.90236,22.45166],[69.89989,22.45496],[69.90041,22.45644],[69.89681,22.45622],[69.89564,22.45666],[69.89688,22.45756],[69.89459,22.4579],[69.8878,22.45464],[69.8777,22.44431],[69.87558,22.43898],[69.87653,22.43595],[69.87438,22.43402],[69.87365,22.42967],[69.87064,22.42732],[69.87237,22.42364],[69.871,22.42297],[69.86716,22.42736],[69.86714,22.43315],[69.86529,22.43316],[69.86363,22.43565],[69.85686,22.43709],[69.85256,22.43998],[69.83282,22.44707],[69.8327,22.44197],[69.8263,22.42568],[69.82207,22.42143],[69.82257,22.41761],[69.81988,22.4171],[69.81598,22.41271],[69.81383,22.40911],[69.81483,22.4058],[69.80936,22.40148],[69.8139,22.39883],[69.81371,22.39532],[69.80984,22.39446],[69.81089,22.38992],[69.80868,22.38747],[69.80929,22.38617],[69.8036,22.38276],[69.80058,22.38283],[69.79549,22.37928],[69.79653,22.37774],[69.79185,22.38017],[69.79124,22.38357],[69.79555,22.38926],[69.79727,22.40596],[69.79321,22.4073],[69.78972,22.41377],[69.78581,22.41316],[69.78091,22.41672],[69.77931,22.41639],[69.7739,22.42394],[69.7645,22.43168],[69.75908,22.4433],[69.75558,22.43664],[69.7547,22.41837],[69.75085,22.41189],[69.74474,22.41297],[69.74234,22.40699],[69.73415,22.40602],[69.7369,22.40265],[69.73473,22.40166],[69.7371,22.4011],[69.73915,22.39789],[69.73761,22.39785],[69.73734,22.39578],[69.72859,22.39639],[69.72589,22.3947],[69.72903,22.38768],[69.7255,22.38816],[69.72535,22.3868],[69.72743,22.36908],[69.7362,22.36802],[69.73777,22.36405],[69.73606,22.36353],[69.7371,22.35621],[69.73933,22.35531],[69.73812,22.35237],[69.74007,22.34054],[69.74486,22.33385],[69.74902,22.33395],[69.75227,22.32237],[69.75388,22.32098],[69.75076,22.31765],[69.73264,22.30811],[69.74709,22.27662],[69.74818,22.2768],[69.74859,22.27078],[69.75107,22.26799],[69.75326,22.25787],[69.75829,22.25462],[69.75805,22.25205],[69.76169,22.25146],[69.76184,22.24833],[69.75987,22.2477],[69.76176,22.24573],[69.75589,22.24539],[69.75403,22.2434],[69.75545,22.23732],[69.76036,22.23597],[69.76232,22.22995],[69.7644,22.23003],[69.76954,22.22006],[69.78273,22.21889],[69.79131,22.22092],[69.79066,22.21765],[69.79328,22.21792],[69.796,22.21485],[69.79977,22.21555],[69.79977,22.21338],[69.80575,22.2065],[69.80871,22.20693],[69.80874,22.20325],[69.81005,22.20345],[69.8067,22.19299],[69.80264,22.18931],[69.80409,22.18584],[69.80785,22.18431],[69.81295,22.17635],[69.81179,22.17276],[69.81316,22.15052],[69.80966,22.13173],[69.81216,22.1279],[69.82277,22.12069],[69.82244,22.11648],[69.8211,22.11596],[69.82101,22.11879],[69.81787,22.12096],[69.81738,22.11668],[69.81607,22.11583],[69.81537,22.11778],[69.81472,22.11639],[69.81679,22.1143],[69.8151,22.1127],[69.81574,22.10618],[69.81135,22.10307],[69.81069,22.09866],[69.81591,22.09486],[69.81066,22.08633],[69.8109,22.08404],[69.80584,22.08068],[69.80694,22.07194],[69.81085,22.07553],[69.81932,22.07868],[69.82505,22.07749],[69.83721,22.06911],[69.84722,22.06952],[69.8489,22.0715],[69.85241,22.07204],[69.85402,22.06893],[69.85464,22.07151],[69.85783,22.0712],[69.85926,22.06175],[69.85678,22.06101],[69.85905,22.05335],[69.85733,22.04407],[69.86282,22.04315],[69.8656,22.04622],[69.86684,22.0426],[69.86875,22.04313],[69.87008,22.04111],[69.8705,22.03809],[69.86715,22.0369],[69.86723,22.03055],[69.86298,22.02679],[69.86372,22.02508],[69.85817,22.02495],[69.86,22.02256],[69.85547,22.02274],[69.85348,22.01979],[69.85477,22.01567],[69.85618,22.01751],[69.85817,22.01643],[69.86577,22.01772],[69.86822,22.01691],[69.8705,22.01126],[69.87688,22.01064],[69.87467,22.00531],[69.87587,22.0047],[69.87553,22.00061],[69.88689,21.99465],[69.88662,21.99288],[69.89047,21.98917],[69.89116,21.97994],[69.89562,21.97828],[69.89927,21.97394],[69.90224,21.96966],[69.90291,21.96535],[69.91581,21.96447],[69.92307,21.96663],[69.9336,21.96085],[69.92935,21.95557],[69.93065,21.95351],[69.92673,21.95239],[69.93022,21.94695],[69.92947,21.94532],[69.92712,21.94617],[69.92583,21.94456],[69.92815,21.93941],[69.92478,21.93885],[69.92448,21.93736],[69.92159,21.94189],[69.91728,21.94006],[69.91919,21.93399],[69.91563,21.93219],[69.91524,21.92783],[69.91783,21.92599],[69.91999,21.92692],[69.91819,21.92141],[69.91993,21.92004],[69.92035,21.91698],[69.91906,21.91681],[69.92177,21.91372],[69.91908,21.90576],[69.92067,21.9059],[69.92114,21.90213],[69.91905,21.89987],[69.9245,21.89921],[69.92588,21.89513],[69.93599,21.89458],[69.93602,21.89329],[69.92199,21.88496],[69.91599,21.88312],[69.91507,21.87791],[69.91169,21.87756],[69.91169,21.87488],[69.91466,21.87042],[69.91189,21.86904],[69.9113,21.86348],[69.91524,21.8511],[69.91099,21.84818],[69.90966,21.84096],[69.89643,21.84088],[69.89781,21.8384],[69.8969,21.83521],[69.89405,21.83259],[69.88925,21.83323],[69.88731,21.83092],[69.88666,21.83323],[69.88483,21.83306],[69.88504,21.83532],[69.88183,21.83276],[69.87426,21.83326],[69.87414,21.83012],[69.86937,21.82819],[69.86969,21.82637],[69.86702,21.82602],[69.8669,21.82775],[69.86206,21.82268],[69.85581,21.82227],[69.85546,21.82028],[69.85295,21.82185],[69.84243,21.82005],[69.83894,21.81848],[69.83907,21.81498],[69.83507,21.81456],[69.8337,21.81824],[69.82196,21.8209],[69.81499,21.8243],[69.81677,21.80685],[69.81616,21.79372],[69.81283,21.77362],[69.8091,21.76896],[69.80865,21.76181],[69.81846,21.74167],[69.82901,21.7445],[69.83399,21.74355],[69.83965,21.73344],[69.84875,21.73168],[69.85575,21.73395],[69.86397,21.73921],[69.86734,21.73784],[69.8677,21.75986],[69.8652,21.76782],[69.86299,21.76996],[69.86396,21.78108],[69.8664,21.7824],[69.87214,21.78196],[69.87181,21.77826],[69.88168,21.76781],[69.88328,21.77214],[69.89384,21.77436],[69.90319,21.78056],[69.91609,21.78182],[69.91943,21.78131],[69.91879,21.77842],[69.92036,21.77771],[69.92951,21.77892],[69.94371,21.79288],[69.95104,21.78904],[69.95426,21.79022],[69.95553,21.79343],[69.96701,21.79974],[69.97377,21.79756],[69.98417,21.80475],[69.98906,21.80508],[69.99212,21.80743],[69.99888,21.80387],[70.01113,21.80435],[70.01206,21.79073],[70.00872,21.78186],[70.00967,21.76144],[70.00782,21.75403],[70.01983,21.74605],[70.01969,21.71338],[70.02452,21.70401],[70.03898,21.698],[70.04822,21.69931],[70.05812,21.70325],[70.06053,21.70565],[70.06497,21.71834],[70.07004,21.72492],[70.07643,21.72445],[70.07845,21.73286],[70.07056,21.73896],[70.0684,21.74783],[70.0627,21.75708],[70.05469,21.75911],[70.051,21.77472],[70.04107,21.7791],[70.02966,21.79317],[70.03093,21.79443],[70.03466,21.79189],[70.05157,21.79704],[70.06016,21.80241],[70.06902,21.8031],[70.07854,21.8009],[70.09205,21.80054],[70.09386,21.80279],[70.08086,21.81934],[70.08654,21.82143],[70.09037,21.81875],[70.09707,21.82281],[70.10138,21.81701],[70.10643,21.82371],[70.10945,21.82396],[70.1078,21.82809],[70.10353,21.82893],[70.10264,21.83117],[70.0951,21.83258],[70.09173,21.83145],[70.08994,21.83268],[70.09047,21.83476],[70.09577,21.84932],[70.1062,21.85039],[70.11008,21.85251],[70.11362,21.85851],[70.11604,21.8592],[70.11673,21.86243],[70.12035,21.86449],[70.1234,21.86296],[70.12829,21.86513],[70.12183,21.87458],[70.12373,21.87872],[70.13699,21.88261],[70.13936,21.89033],[70.14091,21.8904],[70.13959,21.90625],[70.1437,21.90892],[70.14022,21.91431],[70.14202,21.91753],[70.14187,21.93247],[70.14479,21.94097],[70.14776,21.93847],[70.16488,21.93848],[70.16816,21.93306],[70.17132,21.93123],[70.17014,21.92989],[70.17214,21.92842],[70.17137,21.92604],[70.1734,21.9246],[70.176,21.91235],[70.17445,21.90747],[70.17644,21.90557],[70.17744,21.89931],[70.17637,21.89504],[70.17778,21.8938],[70.18686,21.89503],[70.19081,21.89147],[70.19624,21.89294],[70.19588,21.89433],[70.21742,21.90628],[70.21673,21.92651],[70.21901,21.92866],[70.21824,21.93487],[70.21732,21.93618],[70.21656,21.93501],[70.21043,21.95052],[70.21071,21.95317],[70.20448,21.95749],[70.20307,21.96309],[70.21469,21.96528],[70.21639,21.96729],[70.22276,21.96441],[70.23105,21.9666],[70.23766,21.96206],[70.24745,21.96292],[70.25222,21.9672],[70.25206,21.9723],[70.25725,21.99476],[70.26584,22.0015],[70.27829,21.9983],[70.28902,22.00545],[70.29343,21.99947],[70.29809,21.99693],[70.29886,21.9931],[70.29993,21.99381],[70.30036,22.00202],[70.29699,22.00471],[70.2942,22.01276],[70.31653,22.01309],[70.32643,22.01492],[70.32725,22.02509],[70.32911,22.02903],[70.3257,22.03054],[70.32573,22.03917],[70.32731,22.04312],[70.32532,22.04661],[70.33082,22.05098],[70.3312,22.04986],[70.34823,22.05082],[70.34945,22.05227],[70.36156,22.04412],[70.37283,22.04671],[70.37812,22.04454],[70.37874,22.04219],[70.38136,22.04111],[70.39249,22.03753],[70.39826,22.03848],[70.40248,22.03137],[70.41442,22.03538],[70.41268,22.02542],[70.42222,22.03154],[70.42598,22.0297],[70.43337,22.02935],[70.45271,22.03536],[70.45452,22.03944],[70.45834,22.04127],[70.45508,22.0508],[70.46141,22.05398],[70.4911,22.05544],[70.5,22.04965],[70.51712,22.04943],[70.53054,22.04394],[70.53124,22.03916],[70.52579,22.03749],[70.52325,22.03329],[70.52064,22.01872],[70.51641,22.01769],[70.51017,22.02082],[70.5007,22.02138],[70.50105,21.99677],[70.50964,22.00204],[70.51151,21.99926],[70.51317,22.00101],[70.52183,22.00331],[70.52635,22.00137],[70.55338,22.01379],[70.55821,22.02045],[70.56964,22.027],[70.57122,22.03661],[70.56267,22.03917],[70.56145,22.04248],[70.55651,22.04573],[70.54975,22.04569],[70.54907,22.0548],[70.54682,22.06053],[70.56037,22.07012],[70.56203,22.07276],[70.55662,22.08257],[70.55135,22.0806],[70.55413,22.09074],[70.56242,22.09864],[70.58106,22.10054],[70.58244,22.09903],[70.58816,22.10551],[70.58896,22.11787],[70.57823,22.11719],[70.56976,22.12277],[70.56477,22.12835],[70.56844,22.13162],[70.56265,22.14507],[70.56672,22.15112],[70.56839,22.16014],[70.58758,22.16707],[70.58445,22.17472],[70.58105,22.17523],[70.58,22.18465],[70.58987,22.18883],[70.59115,22.18707],[70.59753,22.19045],[70.59894,22.1933],[70.61491,22.18979],[70.60953,22.19732],[70.60337,22.19899],[70.60282,22.20141],[70.5978,22.2009],[70.59555,22.20387],[70.59629,22.20761],[70.58765,22.20785],[70.58065,22.22279],[70.57821,22.23366],[70.57864,22.24005],[70.57462,22.23978],[70.57136,22.23409],[70.56191,22.23341],[70.54899,22.22954],[70.5386,22.2426],[70.53639,22.24951],[70.51938,22.24513],[70.51603,22.25141],[70.51589,22.25831],[70.51241,22.26164],[70.50828,22.27049],[70.50528,22.28363],[70.49741,22.28609],[70.49457,22.29577],[70.48179,22.30109],[70.47327,22.30929],[70.46905,22.32481],[70.47468,22.32691],[70.48837,22.32741],[70.49487,22.32654],[70.49841,22.32204],[70.5,22.32221],[70.51124,22.32838],[70.5151,22.32854],[70.51819,22.33121],[70.52081,22.33724],[70.52411,22.33696],[70.53059,22.33982],[70.52989,22.34365],[70.52515,22.34666],[70.51774,22.36088],[70.51548,22.35852],[70.50927,22.36439],[70.50579,22.36262],[70.50439,22.36597],[70.50088,22.3668],[70.49861,22.36525],[70.49888,22.36228],[70.48716,22.36197],[70.48671,22.36708],[70.48433,22.36691],[70.4736,22.37856],[70.47544,22.38217],[70.48409,22.38515],[70.49183,22.39842],[70.49359,22.41179],[70.49932,22.41271],[70.50137,22.41084],[70.50785,22.41291],[70.50839,22.41803],[70.50538,22.42399],[70.50656,22.42851],[70.49608,22.427],[70.48567,22.4279],[70.47568,22.42309],[70.47207,22.42653],[70.46477,22.42474],[70.46354,22.42123],[70.45839,22.41937],[70.4476,22.42744],[70.44527,22.43388],[70.45703,22.43576],[70.45711,22.43882],[70.46197,22.439],[70.46044,22.44513],[70.4561,22.44893],[70.46215,22.44995],[70.46329,22.46294],[70.46579,22.46923],[70.47088,22.4702],[70.47315,22.46419],[70.47999,22.45444],[70.48265,22.4529],[70.48717,22.4531],[70.48784,22.45],[70.49891,22.45148],[70.50106,22.45414],[70.49856,22.46674],[70.50375,22.46694],[70.50308,22.47116],[70.50008,22.47137],[70.49916,22.46937],[70.49442,22.47688],[70.4976,22.48203],[70.49819,22.48862],[70.49962,22.48946],[70.50461,22.49055],[70.51184,22.46923],[70.51398,22.46971],[70.51654,22.46496],[70.51966,22.46642],[70.51952,22.46273],[70.52215,22.46378],[70.52191,22.46671],[70.52568,22.46719],[70.52993,22.46456],[70.53377,22.45806],[70.55256,22.46247],[70.55147,22.46924],[70.54835,22.47458],[70.54273,22.47634],[70.54023,22.47939],[70.55284,22.48429],[70.58686,22.49055],[70.58547,22.49585],[70.57473,22.51312],[70.56373,22.5084],[70.55363,22.50118],[70.5425,22.50222],[70.53535,22.49504],[70.52853,22.51554],[70.53602,22.51868],[70.53956,22.53111],[70.54293,22.53328],[70.55132,22.53409],[70.56054,22.53187],[70.56593,22.53332],[70.57134,22.52032],[70.59323,22.53006],[70.60172,22.53116],[70.6004,22.53453],[70.59342,22.53564],[70.5908,22.53843],[70.58979,22.54427],[70.58878,22.54522],[70.58708,22.54401],[70.584,22.54621],[70.58027,22.55248],[70.57218,22.55122],[70.5714,22.55281],[70.56819,22.55164],[70.56907,22.5475],[70.56609,22.54564],[70.56084,22.54366],[70.55904,22.54567],[70.55807,22.54497],[70.55215,22.55177],[70.54942,22.56101],[70.55342,22.57657],[70.5649,22.60288],[70.57193,22.61384],[70.57478,22.63388],[70.58457,22.63439],[70.60829,22.64033],[70.61607,22.65081],[70.61406,22.65838],[70.616,22.66075],[70.61637,22.66829],[70.61019,22.68969],[70.6125,22.69445],[70.60223,22.71914],[70.60068,22.72826],[70.5922,22.724],[70.57947,22.72173],[70.57715,22.72759],[70.57277,22.72704],[70.57128,22.72986],[70.56736,22.72779],[70.56626,22.72942],[70.56641,22.73672],[70.5633,22.74516],[70.56821,22.76198],[70.56455,22.7714],[70.56156,22.77269],[70.55978,22.7767],[70.55737,22.79068],[70.55157,22.7897],[70.5506,22.79073],[70.55165,22.79176],[70.54721,22.79206],[70.54884,22.79473],[70.55201,22.79315],[70.55297,22.80771],[70.54408,22.80493],[70.54169,22.80673],[70.54228,22.81034],[70.53946,22.80994],[70.53837,22.812],[70.53247,22.80867],[70.52942,22.81373],[70.52329,22.81134],[70.52314,22.81344],[70.51699,22.81231],[70.51389,22.81809],[70.51044,22.81804],[70.51099,22.82605],[70.51396,22.83644],[70.51982,22.84397],[70.51391,22.84899],[70.49929,22.84334],[70.48944,22.85475]],[[70.42852,22.41259],[70.43521,22.41483],[70.43455,22.4169],[70.43819,22.41631],[70.44383,22.40691],[70.44738,22.40427],[70.44834,22.39768],[70.45092,22.39359],[70.44975,22.39177],[70.44083,22.3893],[70.44175,22.38726],[70.43598,22.38805],[70.43213,22.38686],[70.43183,22.38434],[70.42619,22.37814],[70.42119,22.37607],[70.42171,22.37413],[70.42411,22.37011],[70.42966,22.36604],[70.43687,22.36215],[70.45158,22.3576],[70.46175,22.35071],[70.46352,22.34661],[70.46357,22.33743],[70.46616,22.33284],[70.45655,22.33143],[70.44885,22.32805],[70.44737,22.3326],[70.44145,22.34012],[70.44027,22.35695],[70.4349,22.35882],[70.4311,22.35722],[70.42093,22.35959],[70.41042,22.35953],[70.40963,22.36076],[70.40795,22.39195],[70.40455,22.39948],[70.40431,22.40834],[70.42852,22.41259]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"448","area_level":"District","area_name":"Junagadh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[70.13034,21.66779],[70.12697,21.67539],[70.1225,21.68001],[70.11951,21.68052],[70.1117,21.67178],[70.10707,21.66936],[70.1059,21.66401],[70.10309,21.6625],[70.10755,21.65413],[70.10906,21.64517],[70.09789,21.64637],[70.09076,21.64893],[70.07675,21.64043],[70.05663,21.63675],[70.05831,21.62663],[70.04745,21.62003],[70.04635,21.61533],[70.03879,21.61192],[70.04065,21.60753],[70.04954,21.61201],[70.05519,21.61039],[70.06097,21.61184],[70.06848,21.61043],[70.07001,21.59752],[70.07367,21.59289],[70.07072,21.5851],[70.05921,21.58408],[70.04757,21.58676],[70.0461,21.59304],[70.04767,21.59771],[70.0342,21.59307],[70.0308,21.60156],[70.01967,21.59687],[70.02075,21.59355],[70.01357,21.59192],[70.01256,21.58997],[70.0,21.58524],[69.99057,21.57944],[69.98374,21.59542],[69.9861,21.60187],[69.98452,21.60236],[69.98142,21.59852],[69.9791,21.60065],[69.97818,21.59799],[69.97713,21.59954],[69.96918,21.59425],[69.96594,21.59022],[69.96559,21.59245],[69.96436,21.59183],[69.9759,21.56638],[69.98662,21.5722],[69.99375,21.55628],[70.00262,21.54289],[69.98266,21.53376],[69.98223,21.53008],[69.99273,21.50726],[69.9903,21.50591],[69.98696,21.50727],[69.98505,21.50621],[69.99268,21.48778],[69.99644,21.47388],[70.00957,21.47785],[70.02881,21.47792],[70.02935,21.46919],[70.02226,21.44395],[69.99971,21.4408],[69.98155,21.4345],[69.97965,21.43249],[69.98265,21.43158],[69.98172,21.42646],[69.98426,21.42355],[69.98733,21.42355],[69.99032,21.41984],[69.9929,21.41139],[69.99144,21.4094],[69.99216,21.40705],[69.99711,21.4006],[69.9884,21.39587],[69.98156,21.40425],[69.97752,21.40398],[69.95411,21.4013],[69.94424,21.39696],[69.94348,21.3905],[69.95077,21.38567],[69.9417,21.37237],[69.94852,21.35695],[69.9569,21.34351],[69.97827,21.33602],[69.97642,21.29501],[69.97778,21.29389],[69.98508,21.29667],[69.99698,21.29813],[70.01291,21.27763],[70.02643,21.28298],[70.02805,21.28087],[70.02886,21.27382],[70.02186,21.27081],[70.01193,21.26085],[70.00266,21.25492],[70.00073,21.25196],[70.00265,21.24431],[69.9883,21.23614],[69.98186,21.22798],[70.00089,21.20628],[70.02724,21.18093],[70.04768,21.15695],[70.09081,21.11482],[70.09845,21.10817],[70.10626,21.10439],[70.12282,21.08853],[70.13911,21.07616],[70.14359,21.06934],[70.15988,21.05482],[70.22534,21.0003],[70.23362,20.99696],[70.23893,20.99249],[70.24173,20.99313],[70.24621,20.99589],[70.25444,21.0063],[70.27231,21.01393],[70.27506,21.01807],[70.27673,21.01762],[70.27698,21.01378],[70.29353,21.01955],[70.30308,21.00622],[70.31663,21.01428],[70.32842,21.01471],[70.33792,21.02587],[70.33995,21.0276],[70.34287,21.02713],[70.34864,21.03386],[70.35084,21.03434],[70.35837,21.03148],[70.35555,21.02597],[70.35746,21.02751],[70.36046,21.02672],[70.35951,21.0233],[70.36308,21.02444],[70.36446,21.02265],[70.36598,21.02428],[70.36572,21.02176],[70.36827,21.0182],[70.37046,21.01794],[70.36754,21.01316],[70.36226,21.01267],[70.36272,21.01078],[70.37297,21.00804],[70.37593,21.00969],[70.37888,21.01503],[70.38374,21.01576],[70.38419,21.0145],[70.39143,21.01639],[70.39537,21.02519],[70.39406,21.03745],[70.40078,21.04677],[70.39993,21.05261],[70.40616,21.0544],[70.40627,21.05173],[70.4084,21.05165],[70.41073,21.04805],[70.42186,21.04492],[70.42156,21.04118],[70.43225,21.04871],[70.43275,21.04631],[70.43609,21.04372],[70.43545,21.03718],[70.44141,21.03908],[70.44671,21.03605],[70.46201,21.05014],[70.46363,21.05414],[70.45585,21.05452],[70.45573,21.05819],[70.45033,21.06287],[70.45397,21.07636],[70.45217,21.07902],[70.44956,21.07774],[70.44744,21.07969],[70.4479,21.09107],[70.45054,21.09253],[70.45696,21.0915],[70.46393,21.09342],[70.46877,21.09789],[70.47703,21.09875],[70.48316,21.09691],[70.48398,21.0938],[70.50196,21.09485],[70.50679,21.09327],[70.50082,21.1053],[70.50058,21.12903],[70.50237,21.14134],[70.51882,21.14128],[70.52584,21.1346],[70.55178,21.13437],[70.54922,21.15406],[70.56424,21.1548],[70.56628,21.16445],[70.57687,21.16955],[70.58547,21.16181],[70.5854,21.1595],[70.58784,21.16056],[70.58877,21.15943],[70.58873,21.15575],[70.59155,21.15496],[70.59009,21.15014],[70.59524,21.14975],[70.59774,21.15142],[70.59743,21.15372],[70.59966,21.15628],[70.60825,21.15103],[70.61331,21.15356],[70.61616,21.15303],[70.61478,21.14969],[70.61647,21.14793],[70.61377,21.14628],[70.61748,21.1433],[70.61826,21.13777],[70.62269,21.13555],[70.62005,21.12969],[70.62016,21.12601],[70.61653,21.12172],[70.61879,21.11618],[70.62162,21.11403],[70.62151,21.11004],[70.62631,21.11193],[70.63195,21.10777],[70.63759,21.10904],[70.63799,21.11109],[70.64021,21.1113],[70.64069,21.10746],[70.6425,21.10786],[70.6493,21.11393],[70.64988,21.12067],[70.65521,21.11891],[70.66632,21.11129],[70.66504,21.10598],[70.66599,21.10435],[70.66069,21.09923],[70.671,21.09464],[70.67033,21.09096],[70.67309,21.08896],[70.67169,21.08077],[70.67003,21.07818],[70.66588,21.07878],[70.66554,21.0768],[70.66936,21.0745],[70.67557,21.07626],[70.68308,21.07565],[70.69405,21.07788],[70.69197,21.08044],[70.69436,21.08094],[70.6938,21.0823],[70.69944,21.08241],[70.70205,21.07649],[70.70694,21.07254],[70.70921,21.06389],[70.71183,21.06196],[70.70861,21.05236],[70.71547,21.05961],[70.72269,21.06132],[70.72393,21.05404],[70.72263,21.04488],[70.72557,21.04141],[70.72455,21.03708],[70.72064,21.03399],[70.71367,21.02296],[70.71538,21.01862],[70.71426,21.01097],[70.70797,21.01132],[70.70789,21.00945],[70.71252,21.00739],[70.71551,20.99863],[70.71826,20.99845],[70.71806,20.99437],[70.72663,20.99478],[70.73606,20.97722],[70.75332,20.96351],[70.75433,20.9646],[70.74919,20.96786],[70.74421,20.97626],[70.74856,20.97822],[70.75153,20.97749],[70.75692,20.98028],[70.75911,20.98256],[70.75938,20.9865],[70.76116,20.98682],[70.76291,20.9847],[70.76433,20.98854],[70.76304,20.99718],[70.76723,20.99589],[70.76823,20.99687],[70.76605,20.99804],[70.76727,20.99995],[70.76569,21.0026],[70.76868,21.00367],[70.7772,21.00124],[70.78031,21.00227],[70.77685,20.99573],[70.78228,20.99205],[70.78252,20.99008],[70.78693,20.99224],[70.80338,20.99465],[70.80482,20.99648],[70.80252,20.99941],[70.81211,20.99474],[70.81532,20.99693],[70.818,20.99637],[70.83348,20.98804],[70.83759,20.99434],[70.84084,20.99408],[70.84094,20.99174],[70.83775,20.98906],[70.83806,20.98395],[70.83644,20.98332],[70.84031,20.97704],[70.83902,20.97176],[70.85646,20.97061],[70.85744,20.97954],[70.86101,20.98094],[70.86149,20.97886],[70.8591,20.9791],[70.86081,20.97419],[70.87368,20.96745],[70.86753,20.96588],[70.86092,20.96699],[70.86192,20.95745],[70.87196,20.93285],[70.89298,20.96325],[70.89922,20.95795],[70.90099,20.96014],[70.90056,20.96255],[70.90241,20.96364],[70.90213,20.95952],[70.90998,20.95714],[70.91021,20.95933],[70.90702,20.96239],[70.9076,20.96687],[70.90967,20.96958],[70.9177,20.97437],[70.92177,20.97335],[70.93129,20.97686],[70.93076,20.98031],[70.93418,20.98828],[70.95319,20.99283],[70.95728,20.99577],[70.95853,20.99424],[70.9619,20.99523],[70.96644,20.99083],[70.96761,20.98634],[70.97901,20.98444],[70.98363,20.9818],[70.97857,20.96945],[70.98143,20.96456],[70.98498,20.9654],[70.99096,20.96195],[70.98887,20.9485],[70.99259,20.94912],[70.99543,20.94734],[71.00157,20.94846],[71.00274,20.95036],[71.00089,20.95038],[71.0,20.95599],[71.008,20.95834],[71.01411,20.95681],[71.01553,20.9598],[71.02087,20.96258],[71.02349,20.96841],[71.03699,20.96576],[71.0361,20.96965],[71.04299,20.97265],[71.04176,20.97472],[71.04896,20.98092],[71.04596,20.98172],[71.04486,20.98378],[71.04593,20.98802],[71.05243,20.99143],[71.06347,20.98983],[71.0663,20.98709],[71.06674,20.98917],[71.07193,20.9877],[71.0735,21.00106],[71.06834,21.00858],[71.06834,21.01797],[71.07369,21.02086],[71.07559,21.02462],[71.07692,21.03507],[71.07934,21.04014],[71.09038,21.03625],[71.08578,21.03212],[71.08494,21.0279],[71.09065,21.02586],[71.09141,21.01961],[71.08918,21.01698],[71.10705,21.01587],[71.11443,21.01115],[71.12501,21.00898],[71.12675,21.00317],[71.13038,21.00226],[71.1311,21.00641],[71.13822,21.01905],[71.14851,21.03167],[71.13832,21.04258],[71.13453,21.05708],[71.13467,21.06749],[71.12537,21.07615],[71.11894,21.07865],[71.1128,21.07633],[71.11076,21.07973],[71.09589,21.08692],[71.09236,21.09343],[71.09312,21.09768],[71.08562,21.10368],[71.07528,21.11721],[71.04145,21.13294],[71.02696,21.1449],[71.02226,21.14477],[71.0162,21.1537],[71.00794,21.16102],[71.00546,21.16637],[70.9894,21.17046],[70.97816,21.16431],[70.9493,21.1691],[70.9477,21.1711],[70.92175,21.17988],[70.90627,21.18312],[70.90085,21.18197],[70.89279,21.18556],[70.87465,21.17577],[70.87056,21.17089],[70.86428,21.17357],[70.85353,21.16742],[70.8505,21.18026],[70.84073,21.18684],[70.8343,21.18877],[70.82364,21.19829],[70.82544,21.20415],[70.81946,21.20917],[70.80391,21.23374],[70.80416,21.23724],[70.81045,21.24799],[70.82689,21.25519],[70.82478,21.26157],[70.86131,21.26492],[70.86663,21.26216],[70.8714,21.26259],[70.89049,21.26864],[70.89133,21.27685],[70.89595,21.27834],[70.89408,21.27972],[70.89544,21.28014],[70.89571,21.28739],[70.89954,21.28668],[70.90823,21.29959],[70.9284,21.30359],[70.9321,21.30644],[70.93497,21.30641],[70.93945,21.31127],[70.94365,21.31199],[70.94223,21.32035],[70.93804,21.32236],[70.93134,21.33433],[70.93102,21.34067],[70.92157,21.34872],[70.91533,21.33702],[70.90053,21.32649],[70.89132,21.3232],[70.88812,21.32392],[70.88179,21.31781],[70.87889,21.31809],[70.87642,21.32052],[70.8726,21.31854],[70.86805,21.31911],[70.86679,21.33364],[70.87128,21.33373],[70.87469,21.33766],[70.87267,21.34262],[70.8736,21.34491],[70.87198,21.3461],[70.87127,21.36094],[70.86881,21.36365],[70.86935,21.36862],[70.86769,21.37035],[70.86634,21.3783],[70.8676,21.37995],[70.87377,21.37713],[70.88027,21.37823],[70.88287,21.38071],[70.88244,21.38725],[70.89264,21.39691],[70.89071,21.40296],[70.88575,21.40155],[70.88488,21.40506],[70.88919,21.40667],[70.87919,21.41863],[70.87932,21.4248],[70.88588,21.44597],[70.88385,21.44595],[70.87493,21.46036],[70.86653,21.46651],[70.8317,21.45687],[70.82743,21.46822],[70.82962,21.48916],[70.83361,21.49452],[70.80999,21.49091],[70.80643,21.50068],[70.80462,21.51496],[70.81445,21.51527],[70.8194,21.51053],[70.83794,21.51007],[70.84216,21.51122],[70.84617,21.51391],[70.84739,21.51666],[70.84886,21.53126],[70.86338,21.53403],[70.86474,21.52865],[70.86668,21.52694],[70.87198,21.52925],[70.88421,21.52954],[70.88828,21.52788],[70.89439,21.53508],[70.89254,21.54405],[70.89014,21.55005],[70.88145,21.54804],[70.88225,21.55313],[70.8794,21.57747],[70.87306,21.57739],[70.86401,21.59918],[70.85557,21.60597],[70.82806,21.63483],[70.81601,21.64375],[70.81035,21.63909],[70.79364,21.66624],[70.77749,21.66249],[70.77242,21.65348],[70.76991,21.64344],[70.74319,21.64101],[70.74195,21.64511],[70.7312,21.64072],[70.73223,21.63845],[70.72747,21.63466],[70.72548,21.62935],[70.72621,21.6152],[70.72159,21.61386],[70.72411,21.61095],[70.70137,21.60446],[70.697,21.60534],[70.68498,21.62282],[70.68277,21.62802],[70.68578,21.63468],[70.67773,21.63925],[70.67473,21.6433],[70.66069,21.64385],[70.65605,21.64932],[70.64232,21.65225],[70.63975,21.64911],[70.63444,21.635],[70.62936,21.63297],[70.62681,21.63433],[70.62167,21.62914],[70.61206,21.62477],[70.60984,21.62513],[70.60846,21.62097],[70.60578,21.62255],[70.60094,21.63001],[70.58044,21.63313],[70.56826,21.63106],[70.56721,21.62086],[70.56241,21.62042],[70.55632,21.62186],[70.55332,21.62456],[70.55271,21.63205],[70.54463,21.64548],[70.55368,21.64768],[70.55263,21.67254],[70.54841,21.67179],[70.54201,21.67539],[70.52388,21.66911],[70.50623,21.66653],[70.50609,21.65607],[70.50084,21.65502],[70.49719,21.64984],[70.48856,21.64886],[70.48752,21.65488],[70.48367,21.65349],[70.47707,21.65479],[70.45897,21.64948],[70.45509,21.65386],[70.45425,21.66069],[70.45135,21.66328],[70.45108,21.67284],[70.44808,21.6747],[70.44125,21.67354],[70.43665,21.65825],[70.42032,21.65795],[70.41772,21.6526],[70.40932,21.65375],[70.40176,21.65031],[70.39031,21.64909],[70.39285,21.64086],[70.38522,21.63776],[70.37425,21.6351],[70.36825,21.63886],[70.36839,21.63569],[70.37202,21.62921],[70.37266,21.62051],[70.36999,21.59997],[70.36565,21.59653],[70.34917,21.59422],[70.34455,21.59201],[70.33939,21.59347],[70.33235,21.58967],[70.30401,21.58932],[70.29938,21.57873],[70.29164,21.56956],[70.29572,21.54633],[70.27932,21.54166],[70.27058,21.52987],[70.26345,21.52584],[70.25304,21.52919],[70.25522,21.53734],[70.25094,21.54804],[70.24975,21.55809],[70.2467,21.5671],[70.27184,21.57542],[70.26549,21.59693],[70.26547,21.61263],[70.26178,21.61495],[70.25581,21.60999],[70.25297,21.61206],[70.2447,21.61322],[70.23587,21.63061],[70.22831,21.63805],[70.21718,21.63664],[70.19979,21.62993],[70.19994,21.62808],[70.18751,21.62611],[70.16545,21.6128],[70.14555,21.60989],[70.13916,21.61197],[70.13343,21.62066],[70.12718,21.64277],[70.13937,21.64289],[70.15207,21.65254],[70.14764,21.66271],[70.14919,21.66354],[70.14743,21.66478],[70.13529,21.66298],[70.1331,21.66872],[70.13034,21.66779]],[[70.86104,21.40983],[70.86201,21.41267],[70.86569,21.41558],[70.87885,21.4201],[70.87969,21.41149],[70.87168,21.40278],[70.86794,21.38965],[70.85145,21.39785],[70.84604,21.40891],[70.85897,21.40844],[70.86104,21.40983]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"449","area_level":"District","area_name":"Kachchh","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[70.25765,23.1738],[70.25646,23.17377],[70.25662,23.17062],[70.25781,23.17064],[70.25765,23.1738]]],[[[70.25254,23.17584],[70.25268,23.1774],[70.24957,23.17698],[70.24962,23.17632],[70.2496,23.17555],[70.24978,23.17528],[70.25217,23.17548],[70.25225,23.17411],[70.25261,23.17087],[70.25384,23.17109],[70.25361,23.17457],[70.25573,23.17493],[70.25566,23.17536],[70.25599,23.17538],[70.25585,23.17593],[70.2525,23.17548],[70.25254,23.17584]]],[[[68.52924,23.68865],[68.52611,23.6897],[68.52532,23.68969],[68.52566,23.68864],[68.52681,23.68818],[68.52655,23.68751],[68.52722,23.687],[68.52679,23.68339],[68.52662,23.67729],[68.52572,23.67361],[68.5249,23.6662],[68.52417,23.66192],[68.52183,23.65875],[68.5209,23.65676],[68.52147,23.65522],[68.52158,23.65394],[68.52204,23.65348],[68.52377,23.65376],[68.52493,23.65425],[68.52567,23.6549],[68.52572,23.6551],[68.5253,23.65537],[68.525,23.6553],[68.52443,23.65457],[68.52287,23.65474],[68.52268,23.65513],[68.52285,23.65598],[68.52253,23.65678],[68.52266,23.65702],[68.52318,23.6571],[68.52351,23.65642],[68.52382,23.65647],[68.52485,23.65795],[68.52426,23.65868],[68.52432,23.65904],[68.52703,23.66135],[68.52818,23.66203],[68.53075,23.66298],[68.53391,23.66208],[68.53369,23.66255],[68.53203,23.66327],[68.53202,23.66361],[68.53239,23.66405],[68.53219,23.66467],[68.53265,23.66523],[68.53491,23.66644],[68.53526,23.66706],[68.53441,23.66734],[68.53394,23.66812],[68.5335,23.66825],[68.53287,23.66784],[68.53206,23.66673],[68.53112,23.66672],[68.53103,23.66737],[68.53071,23.6675],[68.53084,23.66799],[68.53008,23.66874],[68.53025,23.66904],[68.52946,23.66906],[68.52931,23.66925],[68.52925,23.66952],[68.52995,23.67047],[68.52885,23.67121],[68.52907,23.67243],[68.52863,23.6734],[68.5287,23.674],[68.529,23.67424],[68.5299,23.67429],[68.53211,23.673],[68.5334,23.67328],[68.53465,23.67273],[68.53619,23.67335],[68.5367,23.67256],[68.53769,23.67262],[68.53788,23.67099],[68.53895,23.67053],[68.54244,23.67129],[68.54369,23.67131],[68.54445,23.67213],[68.54397,23.67257],[68.54395,23.67293],[68.54684,23.67443],[68.54743,23.67495],[68.54745,23.67541],[68.54641,23.67564],[68.54626,23.67632],[68.54531,23.67674],[68.54515,23.67731],[68.54454,23.67725],[68.54454,23.67834],[68.54342,23.67902],[68.54399,23.68023],[68.54452,23.68074],[68.54421,23.68234],[68.54109,23.68333],[68.54041,23.68388],[68.53974,23.68384],[68.53957,23.68453],[68.53926,23.68472],[68.53812,23.68443],[68.53799,23.68472],[68.53886,23.68514],[68.53887,23.68546],[68.53857,23.68564],[68.53438,23.68497],[68.53432,23.68427],[68.53391,23.68359],[68.53412,23.68279],[68.53479,23.68248],[68.53529,23.68172],[68.53511,23.68018],[68.53543,23.67827],[68.53499,23.678],[68.534,23.67836],[68.53365,23.67822],[68.53287,23.6763],[68.53204,23.67561],[68.52981,23.67569],[68.52974,23.67628],[68.53088,23.67698],[68.5311,23.67735],[68.52947,23.67847],[68.52937,23.67915],[68.53152,23.67987],[68.53246,23.68133],[68.5321,23.68216],[68.53231,23.68337],[68.53123,23.68324],[68.53063,23.68355],[68.53037,23.68664],[68.53118,23.68699],[68.53222,23.68683],[68.53402,23.68854],[68.53374,23.68886],[68.53254,23.68841],[68.53114,23.68877],[68.52924,23.68865]]],[[[71.30127,24.57798],[71.30074,24.57946],[71.3035,24.58189],[71.30681,24.58944],[71.28461,24.59388],[71.28782,24.61623],[71.1134,24.67526],[71.09649,24.68872],[71.08543,24.67193],[71.07473,24.66192],[71.06633,24.65911],[71.06379,24.65572],[71.0492,24.64839],[71.00946,24.63542],[71.00713,24.62861],[70.99882,24.62184],[70.98626,24.59546],[70.98943,24.58483],[70.99246,24.56385],[70.98735,24.54342],[71.00303,24.53002],[71.00521,24.52302],[71.0,24.48634],[70.99604,24.47502],[70.99864,24.47247],[70.99637,24.4659],[70.99857,24.44443],[71.00425,24.44569],[71.01021,24.44425],[71.03754,24.43194],[71.0439,24.43417],[71.06756,24.43692],[71.10307,24.4357],[71.12553,24.42008],[71.12184,24.40566],[71.11824,24.40153],[71.10805,24.39671],[71.08432,24.39445],[71.08189,24.39291],[71.06668,24.37689],[71.05727,24.36148],[71.04948,24.35597],[71.04205,24.35388],[71.04213,24.35125],[71.03992,24.35327],[71.0202,24.34737],[71.00355,24.35096],[70.98654,24.36471],[70.95537,24.34861],[70.94768,24.34805],[70.92366,24.32773],[70.92477,24.32588],[70.91866,24.32292],[70.91719,24.32061],[70.87867,24.3014],[70.88263,24.29981],[70.87715,24.298],[70.87451,24.29449],[70.87575,24.28023],[70.88285,24.27282],[70.9092,24.26283],[70.90726,24.25878],[70.88449,24.25048],[70.87661,24.24575],[70.85223,24.24507],[70.83619,24.23149],[70.82654,24.22683],[70.80546,24.22085],[70.7402,24.21904],[70.7139,24.21565],[70.70054,24.21866],[70.69646,24.21743],[70.69842,24.22027],[70.66694,24.21958],[70.6435,24.22489],[70.58562,24.24736],[70.58278,24.24392],[70.58196,24.24794],[70.57123,24.25173],[70.5744,24.26415],[70.58482,24.27798],[70.58453,24.29036],[70.57944,24.29529],[70.58177,24.30447],[70.56271,24.34995],[70.56204,24.35446],[70.58045,24.36327],[70.59898,24.40596],[70.60247,24.40812],[70.57312,24.42236],[70.55777,24.4198],[70.54968,24.4144],[70.5486,24.41186],[70.54745,24.41338],[70.53476,24.40789],[70.51533,24.40406],[70.4761,24.38979],[70.4387,24.38332],[70.41168,24.37561],[70.39837,24.36712],[70.39091,24.35988],[70.37642,24.35553],[70.36846,24.35077],[70.36309,24.35065],[70.3542,24.35411],[70.34559,24.35158],[70.32559,24.35188],[70.30522,24.34683],[70.26586,24.33368],[70.25949,24.33105],[70.25469,24.32616],[70.25065,24.32442],[70.2142,24.32121],[70.19906,24.31448],[70.16591,24.30348],[70.13937,24.3029],[70.10987,24.29497],[70.06681,24.19916],[70.05105,24.1896],[70.03866,24.17646],[70.02506,24.17128],[69.73121,24.17106],[69.59445,24.2924],[69.56368,24.28149],[69.54416,24.2785],[69.5107,24.26971],[69.49401,24.26778],[69.46974,24.27112],[69.44599,24.28033],[69.40498,24.2712],[69.37628,24.26949],[69.36685,24.27014],[69.31274,24.2816],[69.19375,24.23611],[69.09475,24.27449],[69.09367,24.27133],[69.0879,24.26932],[69.08287,24.26511],[69.0339,24.23955],[69.03083,24.23539],[69.01615,24.22567],[69.00533,24.22312],[68.99363,24.22431],[68.98474,24.22761],[68.97324,24.26017],[68.96734,24.27173],[68.94528,24.30249],[68.90675,24.27979],[68.8975,24.26369],[68.8928,24.25147],[68.8899,24.23789],[68.88029,24.21657],[68.87492,24.21233],[68.86482,24.21278],[68.8574,24.21431],[68.84767,24.23925],[68.84388,24.26008],[68.84339,24.27794],[68.83071,24.31186],[68.82631,24.31736],[68.82041,24.31234],[68.80823,24.3136],[68.7647,24.29584],[68.76571,24.28771],[68.76829,24.28241],[68.76935,24.26439],[68.76564,24.20782],[68.76252,24.11431],[68.75303,23.97131],[68.39738,23.97048],[68.38966,23.96659],[68.38581,23.96951],[68.3833,23.97771],[68.3786,23.98446],[68.36893,23.98477],[68.35037,23.97601],[68.33903,23.96695],[68.3357,23.9563],[68.33832,23.9364],[68.33471,23.92713],[68.32865,23.92235],[68.31894,23.9221],[68.28918,23.93198],[68.28299,23.93173],[68.27574,23.92877],[68.27143,23.92466],[68.258,23.90302],[68.25217,23.8969],[68.23084,23.88573],[68.2231,23.88499],[68.21689,23.88249],[68.20865,23.87546],[68.19953,23.84709],[68.19808,23.83608],[68.19854,23.81324],[68.20345,23.78967],[68.20264,23.76667],[68.18464,23.73733],[68.18165,23.72163],[68.18976,23.71722],[68.19178,23.70735],[68.19682,23.70298],[68.19848,23.69461],[68.2057,23.68034],[68.20666,23.66889],[68.20475,23.66201],[68.20177,23.65867],[68.18807,23.65859],[68.18257,23.65504],[68.18725,23.65544],[68.19579,23.65224],[68.20847,23.65067],[68.19643,23.65034],[68.18632,23.64528],[68.18595,23.64122],[68.18239,23.63848],[68.17751,23.62786],[68.17766,23.61919],[68.1805,23.60704],[68.18103,23.60938],[68.18386,23.60787],[68.19512,23.58874],[68.20767,23.58616],[68.20728,23.58467],[68.20383,23.58634],[68.2016,23.58531],[68.19221,23.5867],[68.18537,23.59555],[68.184,23.587],[68.18745,23.58226],[68.19369,23.58015],[68.19924,23.57943],[68.20775,23.58334],[68.21526,23.58211],[68.21993,23.57972],[68.22012,23.57814],[68.22211,23.57869],[68.22155,23.57711],[68.22456,23.57728],[68.22229,23.57505],[68.22362,23.5739],[68.22971,23.57459],[68.22986,23.57668],[68.23174,23.57651],[68.22956,23.57799],[68.24631,23.57256],[68.24415,23.57058],[68.25417,23.56991],[68.25961,23.56686],[68.26632,23.56702],[68.26563,23.56352],[68.27267,23.56429],[68.27808,23.55973],[68.28187,23.56613],[68.29098,23.57137],[68.30811,23.57559],[68.33415,23.57863],[68.35087,23.58493],[68.38893,23.59562],[68.39471,23.60103],[68.39819,23.60761],[68.39771,23.61321],[68.40155,23.62613],[68.4035,23.65772],[68.40907,23.67917],[68.41272,23.70297],[68.41903,23.7179],[68.41885,23.72709],[68.42098,23.73321],[68.42772,23.73715],[68.43484,23.73898],[68.43886,23.73567],[68.44507,23.73507],[68.45516,23.74098],[68.46396,23.74224],[68.47318,23.73909],[68.47266,23.73747],[68.47563,23.73502],[68.48842,23.73162],[68.50572,23.74092],[68.50876,23.75049],[68.51153,23.74833],[68.51935,23.74765],[68.52108,23.74389],[68.5232,23.74656],[68.527,23.74582],[68.5307,23.7536],[68.55176,23.77901],[68.55537,23.78649],[68.57171,23.80706],[68.574,23.81374],[68.58083,23.82099],[68.60265,23.82952],[68.65548,23.83279],[68.65836,23.83345],[68.67186,23.84344],[68.68823,23.84645],[68.69271,23.84442],[68.70007,23.83808],[68.70831,23.83427],[68.71124,23.83017],[68.69385,23.81817],[68.68149,23.79496],[68.67909,23.79557],[68.67253,23.80404],[68.6608,23.79617],[68.65675,23.79821],[68.65179,23.79438],[68.63529,23.76102],[68.63897,23.75356],[68.64453,23.75053],[68.64196,23.74271],[68.64396,23.74136],[68.64816,23.74358],[68.64843,23.74213],[68.64577,23.74081],[68.64885,23.7389],[68.64609,23.73994],[68.6468,23.73802],[68.6421,23.73943],[68.64062,23.73864],[68.6409,23.73618],[68.63793,23.73904],[68.63834,23.74224],[68.63495,23.73876],[68.63004,23.7415],[68.62848,23.73899],[68.61848,23.73802],[68.61831,23.73459],[68.61528,23.73595],[68.61365,23.73184],[68.61368,23.72861],[68.61568,23.72587],[68.62163,23.72444],[68.62869,23.73451],[68.63116,23.73281],[68.63216,23.72782],[68.62318,23.72577],[68.62215,23.72115],[68.62093,23.72261],[68.62021,23.72036],[68.61891,23.7214],[68.61829,23.71993],[68.61494,23.72029],[68.61277,23.71795],[68.61013,23.72102],[68.60726,23.72149],[68.6055,23.71957],[68.60258,23.72362],[68.59682,23.72405],[68.59988,23.72144],[68.59521,23.71979],[68.59235,23.71369],[68.59646,23.71402],[68.60046,23.70879],[68.59566,23.70797],[68.59514,23.70591],[68.59267,23.70659],[68.58724,23.70263],[68.58459,23.70402],[68.58486,23.70677],[68.58076,23.70515],[68.58124,23.70782],[68.57962,23.70724],[68.57972,23.70893],[68.57742,23.70681],[68.57175,23.7088],[68.57203,23.71338],[68.56957,23.71514],[68.57324,23.71547],[68.57161,23.71693],[68.57372,23.71711],[68.56919,23.7177],[68.5733,23.72144],[68.56712,23.72146],[68.55719,23.71663],[68.54997,23.70101],[68.54829,23.69181],[68.55188,23.69455],[68.55228,23.69698],[68.55067,23.69794],[68.55255,23.69934],[68.55769,23.69444],[68.55713,23.68922],[68.56483,23.69],[68.56819,23.68773],[68.56796,23.68494],[68.56469,23.68399],[68.56287,23.68855],[68.56154,23.68869],[68.5626,23.68356],[68.56074,23.68272],[68.56018,23.67761],[68.55161,23.66557],[68.55262,23.66417],[68.55129,23.66218],[68.54799,23.66091],[68.54862,23.65828],[68.54071,23.65751],[68.54291,23.65324],[68.53931,23.65287],[68.53923,23.65537],[68.53832,23.65264],[68.53491,23.65022],[68.53351,23.65095],[68.53499,23.65307],[68.53275,23.65198],[68.5325,23.65332],[68.52073,23.64959],[68.51991,23.64641],[68.52046,23.64481],[68.52218,23.64495],[68.52181,23.64212],[68.52456,23.64341],[68.52716,23.64811],[68.53337,23.64924],[68.53314,23.64679],[68.52902,23.64667],[68.52966,23.64273],[68.52602,23.63929],[68.52936,23.63734],[68.52902,23.6358],[68.51694,23.63543],[68.51462,23.63831],[68.51191,23.63841],[68.51383,23.64406],[68.51064,23.63948],[68.50793,23.62198],[68.51123,23.62169],[68.51535,23.62392],[68.51571,23.6214],[68.51195,23.61918],[68.51468,23.6184],[68.51238,23.61522],[68.50957,23.61407],[68.50929,23.61623],[68.50591,23.61775],[68.50536,23.61473],[68.5073,23.61458],[68.50221,23.61284],[68.50235,23.60955],[68.51055,23.61183],[68.50888,23.6094],[68.50912,23.6113],[68.50627,23.61039],[68.50113,23.60449],[68.49646,23.60586],[68.49537,23.60365],[68.49291,23.60583],[68.49394,23.60054],[68.49755,23.60061],[68.49507,23.59918],[68.49366,23.59305],[68.49451,23.58907],[68.49763,23.59071],[68.49207,23.58602],[68.4904,23.57953],[68.4928,23.57477],[68.49481,23.5592],[68.49243,23.55387],[68.48359,23.54871],[68.48962,23.5398],[68.49062,23.53223],[68.4943,23.52677],[68.49433,23.51812],[68.5008,23.51304],[68.50073,23.51161],[68.50236,23.51259],[68.50334,23.51058],[68.50456,23.51334],[68.50252,23.50719],[68.50501,23.50284],[68.50242,23.50193],[68.50453,23.49947],[68.51294,23.50104],[68.51206,23.4994],[68.51367,23.49596],[68.51179,23.49476],[68.5174,23.49036],[68.51771,23.48642],[68.51298,23.48735],[68.51277,23.48459],[68.51818,23.47119],[68.52117,23.46856],[68.51922,23.46478],[68.52219,23.46459],[68.52139,23.46118],[68.52878,23.44991],[68.53073,23.44946],[68.5322,23.45249],[68.53038,23.45318],[68.52922,23.45707],[68.53558,23.46048],[68.53417,23.45635],[68.54075,23.45847],[68.54379,23.4655],[68.54627,23.46506],[68.54382,23.46286],[68.54602,23.46],[68.54322,23.45718],[68.54208,23.45891],[68.5393,23.45373],[68.5416,23.45202],[68.53621,23.4516],[68.532,23.44861],[68.53063,23.4452],[68.53338,23.43671],[68.53518,23.43669],[68.53519,23.4339],[68.54235,23.42503],[68.54775,23.42454],[68.54829,23.42291],[68.54331,23.42193],[68.54349,23.42021],[68.54772,23.41706],[68.55885,23.41629],[68.5628,23.41828],[68.56587,23.41721],[68.57034,23.40379],[68.57427,23.40692],[68.57657,23.40559],[68.5753,23.40262],[68.5832,23.40291],[68.58368,23.40011],[68.59032,23.39316],[68.59486,23.39158],[68.5995,23.38609],[68.60856,23.38286],[68.61089,23.38003],[68.60914,23.37909],[68.60991,23.37676],[68.60688,23.37667],[68.60959,23.372],[68.61049,23.37498],[68.61373,23.37545],[68.61751,23.37308],[68.62038,23.37401],[68.61645,23.37147],[68.61198,23.3717],[68.61194,23.36913],[68.62581,23.3649],[68.62511,23.35917],[68.62914,23.35791],[68.62584,23.35479],[68.63041,23.35447],[68.62735,23.3516],[68.63252,23.35254],[68.633,23.35094],[68.62912,23.3489],[68.63387,23.34943],[68.63686,23.34707],[68.63696,23.34358],[68.63964,23.34303],[68.639,23.34111],[68.63615,23.34099],[68.63596,23.33889],[68.64055,23.33945],[68.64213,23.33549],[68.64808,23.33701],[68.644,23.33502],[68.6437,23.33345],[68.65262,23.33555],[68.64251,23.33228],[68.64379,23.32592],[68.64003,23.32319],[68.64096,23.32159],[68.64423,23.32127],[68.64671,23.3112],[68.65234,23.30314],[68.65529,23.30347],[68.6556,23.30913],[68.65809,23.31196],[68.65553,23.31326],[68.65672,23.31657],[68.65309,23.31689],[68.65468,23.32143],[68.65178,23.32609],[68.65425,23.32742],[68.65242,23.32834],[68.65578,23.33007],[68.65574,23.33383],[68.65986,23.33417],[68.6612,23.33646],[68.66116,23.34383],[68.65888,23.34556],[68.66051,23.34745],[68.67028,23.34317],[68.66964,23.34004],[68.66515,23.33635],[68.66826,23.33149],[68.67917,23.33112],[68.68499,23.32885],[68.67925,23.31998],[68.67882,23.31562],[68.6814,23.31185],[68.69281,23.30883],[68.6984,23.31346],[68.71351,23.31796],[68.71369,23.31647],[68.70764,23.31361],[68.71297,23.30718],[68.71164,23.30432],[68.71399,23.29563],[68.70968,23.29161],[68.70263,23.29255],[68.69931,23.28419],[68.70833,23.28833],[68.71187,23.28672],[68.71222,23.28527],[68.70664,23.28047],[68.70816,23.27972],[68.71222,23.28265],[68.71262,23.28053],[68.71007,23.27598],[68.7061,23.27406],[68.70555,23.27072],[68.71462,23.26865],[68.71684,23.26509],[68.72417,23.26679],[68.72577,23.26448],[68.72425,23.26304],[68.72571,23.25913],[68.72452,23.25513],[68.7225,23.25562],[68.72386,23.25841],[68.72311,23.26105],[68.71474,23.26412],[68.71094,23.26177],[68.70987,23.25836],[68.70589,23.2542],[68.70446,23.25],[68.70523,23.2462],[68.70366,23.24205],[68.7014,23.24132],[68.702,23.24006],[68.69981,23.24063],[68.69293,23.23506],[68.68717,23.2349],[68.68385,23.23236],[68.68123,23.23296],[68.67718,23.22906],[68.67562,23.22949],[68.67415,23.23326],[68.66803,23.23158],[68.65954,23.23208],[68.65812,23.22962],[68.65628,23.23131],[68.65352,23.23115],[68.64554,23.22524],[68.64368,23.22243],[68.64512,23.22063],[68.64293,23.21802],[68.63061,23.21745],[68.62593,23.21328],[68.62201,23.21269],[68.62099,23.20573],[68.6232,23.20519],[68.62304,23.2088],[68.62814,23.21187],[68.63804,23.21119],[68.64077,23.21606],[68.64079,23.21304],[68.64495,23.21452],[68.6547,23.21159],[68.65993,23.21466],[68.66203,23.21795],[68.66917,23.2182],[68.67107,23.2112],[68.67034,23.20749],[68.67372,23.20189],[68.66971,23.19815],[68.66245,23.20085],[68.65955,23.1977],[68.6634,23.18996],[68.66768,23.1874],[68.6701,23.182],[68.67563,23.18106],[68.67671,23.17825],[68.68076,23.17902],[68.68022,23.17399],[68.6826,23.17585],[68.67881,23.16841],[68.68048,23.16776],[68.68293,23.15896],[68.6817,23.15792],[68.67795,23.16269],[68.6765,23.16212],[68.68278,23.15269],[68.68797,23.15245],[68.68972,23.15428],[68.69508,23.15542],[68.70219,23.14869],[68.70601,23.14851],[68.71225,23.15143],[68.71246,23.1475],[68.71554,23.14459],[68.71305,23.14136],[68.71965,23.13731],[68.72441,23.13649],[68.72587,23.13458],[68.72413,23.13175],[68.72796,23.13464],[68.73189,23.13418],[68.73246,23.1276],[68.73429,23.12609],[68.73323,23.11953],[68.73946,23.11556],[68.73979,23.11951],[68.74232,23.11796],[68.73993,23.11395],[68.74412,23.11318],[68.74586,23.11002],[68.7492,23.11355],[68.74987,23.11706],[68.75326,23.11749],[68.75443,23.12303],[68.76298,23.12114],[68.76503,23.12376],[68.76637,23.12259],[68.77006,23.12448],[68.76998,23.12181],[68.77499,23.12289],[68.77653,23.12033],[68.78364,23.12001],[68.78491,23.11521],[68.77319,23.11674],[68.77142,23.11637],[68.7709,23.11369],[68.76942,23.11465],[68.76884,23.11304],[68.77075,23.11144],[68.76861,23.11067],[68.76828,23.11235],[68.76678,23.1107],[68.76611,23.10758],[68.76812,23.10608],[68.7668,23.10291],[68.76449,23.10708],[68.76119,23.10113],[68.76301,23.10068],[68.76513,23.09603],[68.76172,23.09705],[68.76114,23.10007],[68.76011,23.09977],[68.76377,23.09359],[68.76189,23.09241],[68.76097,23.09362],[68.76094,23.09046],[68.77272,23.08042],[68.77234,23.07831],[68.77404,23.08055],[68.78154,23.08328],[68.7737,23.07969],[68.77311,23.07756],[68.77708,23.07888],[68.77848,23.07755],[68.77003,23.07734],[68.7705,23.07893],[68.76848,23.07793],[68.76514,23.07902],[68.76945,23.07987],[68.76312,23.08058],[68.76436,23.08118],[68.76374,23.08433],[68.76122,23.08464],[68.76093,23.08614],[68.76373,23.08741],[68.75862,23.0891],[68.756,23.08466],[68.76007,23.08616],[68.75716,23.08361],[68.75169,23.08866],[68.74986,23.08801],[68.75859,23.08035],[68.78373,23.07349],[68.8118,23.05878],[68.81195,23.06098],[68.80964,23.06059],[68.80324,23.06487],[68.80527,23.06524],[68.80768,23.06277],[68.80907,23.06449],[68.80879,23.062],[68.81174,23.0614],[68.81257,23.06815],[68.80972,23.0743],[68.81515,23.07703],[68.81612,23.06253],[68.81764,23.0627],[68.82075,23.06822],[68.81793,23.0619],[68.81893,23.05987],[68.82157,23.06133],[68.82206,23.0565],[68.82402,23.05547],[68.82337,23.05698],[68.82565,23.05593],[68.82718,23.05782],[68.82458,23.0624],[68.82943,23.05718],[68.83194,23.05813],[68.83103,23.05636],[68.83505,23.05058],[68.83665,23.05319],[68.83442,23.05278],[68.8342,23.05661],[68.83764,23.05517],[68.8387,23.0585],[68.83959,23.05741],[68.84179,23.05858],[68.83712,23.0521],[68.83908,23.05026],[68.84351,23.05382],[68.84321,23.05011],[68.84702,23.04844],[68.84546,23.04699],[68.83906,23.04732],[68.84097,23.04887],[68.83594,23.0507],[68.83672,23.04637],[68.84207,23.04666],[68.84188,23.04442],[68.84011,23.04429],[68.85263,23.03946],[68.85423,23.03739],[68.85592,23.03843],[68.85719,23.03716],[68.85577,23.0353],[68.86079,23.03431],[68.86246,23.03181],[68.86923,23.03435],[68.86848,23.0323],[68.87169,23.03299],[68.87189,23.03165],[68.87084,23.03203],[68.87102,23.02924],[68.86934,23.02747],[68.8689,23.02943],[68.86453,23.03023],[68.8676,23.03034],[68.86743,23.03151],[68.86217,23.03145],[68.85206,23.03692],[68.85017,23.03937],[68.84853,23.03875],[68.83242,23.04743],[68.82002,23.05648],[68.81296,23.05793],[68.86843,23.02723],[68.87458,23.02114],[68.91783,22.99616],[68.91781,22.9941],[68.92197,22.99525],[68.92548,22.99356],[68.93117,22.98716],[68.94056,22.98037],[68.94968,22.97751],[68.95494,22.97297],[68.97231,22.96345],[68.9808,22.96082],[69.00574,22.94696],[69.01983,22.94211],[69.02678,22.93722],[69.04377,22.92994],[69.09989,22.89611],[69.13124,22.87229],[69.15008,22.86621],[69.17493,22.85143],[69.17725,22.85188],[69.16685,22.85895],[69.17206,22.86034],[69.17392,22.85947],[69.17479,22.85609],[69.1778,22.85569],[69.18118,22.85777],[69.1842,22.85354],[69.18603,22.85455],[69.18671,22.852],[69.18863,22.8531],[69.19418,22.85186],[69.19324,22.84996],[69.19441,22.84873],[69.1924,22.84822],[69.19188,22.84625],[69.19627,22.84546],[69.19379,22.84379],[69.19583,22.83803],[69.19886,22.83783],[69.20323,22.84166],[69.20416,22.84095],[69.20128,22.83747],[69.22182,22.83612],[69.22756,22.83733],[69.2345,22.83351],[69.24773,22.82973],[69.25401,22.82985],[69.26791,22.8252],[69.28582,22.82755],[69.30169,22.8334],[69.31397,22.83327],[69.33545,22.82797],[69.34776,22.82075],[69.35804,22.82169],[69.37988,22.81674],[69.38122,22.81877],[69.38105,22.81703],[69.38449,22.81733],[69.38145,22.81582],[69.39745,22.81111],[69.40965,22.80402],[69.44369,22.78009],[69.44487,22.78084],[69.43444,22.78804],[69.43811,22.78708],[69.44637,22.78082],[69.44531,22.77977],[69.45878,22.77802],[69.47176,22.77375],[69.47779,22.77455],[69.48012,22.77683],[69.49109,22.77755],[69.49457,22.78],[69.47881,22.77666],[69.46998,22.77645],[69.46923,22.77882],[69.45971,22.78281],[69.46031,22.78417],[69.4579,22.78669],[69.45087,22.78674],[69.44081,22.79421],[69.4395,22.79703],[69.43822,22.7957],[69.43683,22.79905],[69.43576,22.79786],[69.43367,22.799],[69.43576,22.79999],[69.43084,22.80128],[69.43211,22.80318],[69.41863,22.80813],[69.41683,22.81066],[69.41836,22.8128],[69.42175,22.80905],[69.42453,22.81309],[69.42686,22.80963],[69.4287,22.81041],[69.43462,22.80821],[69.43872,22.81066],[69.44427,22.8109],[69.44799,22.80821],[69.44893,22.81181],[69.45202,22.80832],[69.45463,22.81316],[69.45734,22.81428],[69.45765,22.80862],[69.45864,22.81103],[69.46352,22.80396],[69.46788,22.8033],[69.46836,22.80184],[69.46587,22.80071],[69.46792,22.79834],[69.47734,22.79552],[69.48322,22.79905],[69.48285,22.80569],[69.48744,22.79981],[69.49291,22.79954],[69.49428,22.79691],[69.50211,22.79982],[69.50467,22.79896],[69.5035,22.80316],[69.50534,22.8089],[69.50868,22.80541],[69.51161,22.80516],[69.5114,22.80724],[69.51314,22.80687],[69.51358,22.80499],[69.51637,22.80497],[69.51852,22.80287],[69.52349,22.80257],[69.5242,22.80397],[69.52702,22.80185],[69.52716,22.80351],[69.53082,22.79988],[69.53216,22.80044],[69.53052,22.80219],[69.53337,22.80183],[69.53042,22.80565],[69.53284,22.80601],[69.53439,22.80858],[69.53701,22.80406],[69.54003,22.80485],[69.54104,22.80726],[69.54346,22.80598],[69.54664,22.80681],[69.54617,22.8089],[69.54824,22.80723],[69.55687,22.80732],[69.55727,22.81071],[69.56028,22.81114],[69.56117,22.8096],[69.56406,22.81122],[69.5635,22.81235],[69.56499,22.81178],[69.56486,22.81356],[69.56727,22.81203],[69.56937,22.81587],[69.57101,22.80963],[69.57596,22.81039],[69.57798,22.81293],[69.57577,22.81772],[69.57823,22.81539],[69.58175,22.81674],[69.58122,22.81397],[69.58404,22.81238],[69.58775,22.81549],[69.58854,22.8117],[69.59163,22.81438],[69.59348,22.81178],[69.59743,22.81013],[69.59885,22.81194],[69.60049,22.80533],[69.60591,22.80295],[69.60854,22.80604],[69.61189,22.80571],[69.61326,22.80868],[69.61828,22.81225],[69.62302,22.81117],[69.62523,22.80851],[69.62781,22.81028],[69.63119,22.80887],[69.63428,22.81176],[69.63691,22.80827],[69.63642,22.80559],[69.64023,22.80444],[69.64594,22.81],[69.64791,22.80594],[69.64633,22.80585],[69.64594,22.80354],[69.64742,22.79619],[69.6524,22.79581],[69.65466,22.79731],[69.6564,22.79614],[69.66454,22.79901],[69.66612,22.79746],[69.66691,22.79925],[69.67165,22.8004],[69.68355,22.8003],[69.68713,22.80252],[69.68952,22.80675],[69.69151,22.80382],[69.70604,22.80465],[69.70799,22.80586],[69.7056,22.80919],[69.70926,22.80768],[69.70903,22.80977],[69.71079,22.80863],[69.71212,22.81082],[69.7117,22.80792],[69.71316,22.806],[69.71689,22.8097],[69.7199,22.80889],[69.72005,22.81112],[69.72214,22.80989],[69.72488,22.81535],[69.73198,22.81645],[69.73027,22.82098],[69.73099,22.81875],[69.73434,22.81688],[69.74162,22.82027],[69.74557,22.82063],[69.74853,22.81865],[69.77527,22.83025],[69.78164,22.83461],[69.78366,22.83924],[69.78983,22.84227],[69.79486,22.84841],[69.80388,22.85179],[69.81235,22.84997],[69.82788,22.85798],[69.83528,22.85949],[69.83169,22.86024],[69.83748,22.86017],[69.83676,22.86127],[69.83925,22.86284],[69.85627,22.86872],[69.87881,22.87109],[69.87993,22.87187],[69.87777,22.87261],[69.87765,22.87416],[69.8878,22.8711],[69.88717,22.87553],[69.89065,22.87553],[69.89107,22.87289],[69.89348,22.873],[69.89443,22.87083],[69.89636,22.87063],[69.89781,22.87322],[69.89874,22.87126],[69.90153,22.87281],[69.89971,22.87358],[69.91026,22.87856],[69.91367,22.88293],[69.91194,22.88651],[69.91522,22.88527],[69.91505,22.88766],[69.91615,22.88582],[69.91816,22.88601],[69.91717,22.88731],[69.91972,22.88687],[69.9193,22.89007],[69.92363,22.88974],[69.93047,22.89406],[69.92705,22.89603],[69.93227,22.89475],[69.93346,22.89585],[69.93215,22.89701],[69.93612,22.89679],[69.93704,22.89835],[69.9587,22.89862],[69.96224,22.89359],[69.95903,22.89928],[69.96571,22.89884],[69.98212,22.90285],[69.98476,22.91458],[69.99594,22.914],[70.01214,22.91825],[70.01675,22.92024],[70.02197,22.92544],[70.0273,22.92696],[70.02713,22.92872],[70.02421,22.92905],[70.02721,22.93204],[70.02625,22.9397],[70.0292,22.94285],[70.02976,22.94642],[70.03185,22.94584],[70.03655,22.95269],[70.04602,22.95123],[70.04957,22.95452],[70.05273,22.9546],[70.05841,22.95793],[70.05952,22.96362],[70.08372,22.96801],[70.08504,22.96899],[70.08386,22.97341],[70.08053,22.97571],[70.09287,22.97433],[70.10384,22.98001],[70.11879,22.99201],[70.11822,22.99683],[70.12209,22.99659],[70.12525,23.00483],[70.13297,23.01102],[70.13499,23.02138],[70.13843,23.02123],[70.13902,23.02644],[70.14184,23.02695],[70.14722,23.03268],[70.15012,23.03124],[70.15046,23.03361],[70.14821,23.03482],[70.15814,23.0323],[70.14796,23.02042],[70.14221,23.00893],[70.13379,23.00157],[70.12896,22.99045],[70.12974,22.98817],[70.13364,22.98577],[70.13341,22.98111],[70.12118,22.96895],[70.11996,22.96539],[70.12112,22.96263],[70.12551,22.95975],[70.13355,22.95875],[70.16439,22.93828],[70.18038,22.93755],[70.20742,22.94373],[70.22641,22.95182],[70.23074,22.95516],[70.22862,22.95999],[70.23025,22.97266],[70.22552,22.98658],[70.22396,23.00557],[70.22082,23.01344],[70.22214,23.01538],[70.22018,23.01522],[70.22228,23.03545],[70.21961,23.04124],[70.21799,23.05257],[70.21922,23.06081],[70.21783,23.06427],[70.21364,23.06323],[70.21647,23.06591],[70.21082,23.07463],[70.18862,23.07281],[70.18614,23.06834],[70.16995,23.05741],[70.17152,23.05092],[70.1696,23.04284],[70.16259,23.04061],[70.15987,23.03502],[70.14929,23.037],[70.15084,23.03957],[70.15326,23.03821],[70.15671,23.04532],[70.16473,23.05384],[70.16816,23.06324],[70.1657,23.06473],[70.16494,23.06741],[70.16777,23.06439],[70.17554,23.0702],[70.17714,23.06927],[70.17953,23.07092],[70.18169,23.07519],[70.18032,23.07543],[70.18063,23.07687],[70.18363,23.07968],[70.17388,23.0774],[70.18766,23.09502],[70.19207,23.10346],[70.20156,23.11431],[70.2073,23.12562],[70.20839,23.13592],[70.21281,23.13985],[70.20877,23.16035],[70.21831,23.16626],[70.23854,23.16488],[70.23968,23.16698],[70.23619,23.16815],[70.23619,23.1703],[70.2462,23.17635],[70.24511,23.17311],[70.24976,23.17278],[70.24646,23.17647],[70.24968,23.17789],[70.26757,23.17846],[70.26876,23.18247],[70.2837,23.19825],[70.29153,23.1991],[70.29331,23.2111],[70.29665,23.21374],[70.29567,23.21896],[70.30345,23.22391],[70.30825,23.22251],[70.31178,23.21942],[70.31899,23.21975],[70.32386,23.21812],[70.32281,23.22172],[70.32767,23.22627],[70.33278,23.22273],[70.33776,23.22262],[70.34162,23.21986],[70.34563,23.22098],[70.36636,23.21986],[70.36399,23.22245],[70.36551,23.22498],[70.3694,23.22492],[70.36989,23.22751],[70.37801,23.23164],[70.38567,23.23339],[70.3887,23.23086],[70.39515,23.23097],[70.40301,23.2354],[70.42476,23.23725],[70.43631,23.23338],[70.43223,23.2299],[70.43168,23.22273],[70.42803,23.21755],[70.45147,23.20447],[70.46101,23.2039],[70.47571,23.19968],[70.48879,23.19143],[70.49164,23.18609],[70.49966,23.18129],[70.50124,23.17812],[70.51156,23.17736],[70.5237,23.17938],[70.53527,23.17934],[70.57896,23.17771],[70.61791,23.18183],[70.63831,23.18662],[70.64902,23.19204],[70.64438,23.20117],[70.6457,23.20232],[70.64464,23.20822],[70.65207,23.21691],[70.6508,23.2239],[70.6562,23.22131],[70.66223,23.22234],[70.66526,23.2241],[70.66532,23.22711],[70.6678,23.22315],[70.66724,23.21957],[70.67548,23.22209],[70.67817,23.21986],[70.67715,23.21843],[70.68156,23.21779],[70.68198,23.21585],[70.68047,23.21449],[70.68775,23.21546],[70.68496,23.21367],[70.68769,23.21254],[70.68311,23.21231],[70.68691,23.20932],[70.6922,23.2094],[70.69392,23.21191],[70.69855,23.21172],[70.7005,23.21442],[70.71185,23.21565],[70.71317,23.20995],[70.71587,23.21269],[70.7192,23.21236],[70.72461,23.20581],[70.728,23.20586],[70.73089,23.20784],[70.72423,23.21421],[70.72391,23.21766],[70.73246,23.21939],[70.73152,23.22084],[70.73292,23.22236],[70.73314,23.22078],[70.73705,23.22274],[70.74452,23.22088],[70.74963,23.23507],[70.76768,23.2461],[70.77677,23.24959],[70.78281,23.24951],[70.80166,23.23468],[70.81225,23.23007],[70.82321,23.23476],[70.831,23.24845],[70.83416,23.24981],[70.84731,23.24142],[70.87068,23.22981],[70.89313,23.2247],[70.8602,23.20847],[70.86094,23.20584],[70.87329,23.20399],[70.87115,23.20022],[70.86133,23.19779],[70.86031,23.19516],[70.86292,23.19236],[70.87422,23.19175],[70.87858,23.19005],[70.88537,23.18377],[70.89057,23.18267],[70.89584,23.18383],[70.90882,23.19357],[70.9189,23.19838],[70.95188,23.19713],[70.95932,23.19457],[70.94563,23.19022],[70.90157,23.17076],[70.8653,23.17147],[70.84864,23.16931],[70.84741,23.16873],[70.84787,23.1625],[70.84397,23.1601],[70.84754,23.15814],[70.84478,23.1547],[70.8466,23.1524],[70.83645,23.15408],[70.83485,23.15523],[70.83631,23.15778],[70.83539,23.15889],[70.8308,23.15911],[70.82756,23.15742],[70.82513,23.15243],[70.83126,23.14645],[70.8404,23.14512],[70.83114,23.14721],[70.82728,23.14969],[70.82579,23.15331],[70.8301,23.15786],[70.83437,23.15138],[70.84901,23.1483],[70.86405,23.1398],[70.87487,23.13755],[70.87669,23.13139],[70.87332,23.12614],[70.87511,23.12169],[70.88136,23.12413],[70.88102,23.13506],[70.88745,23.1357],[70.88993,23.1341],[70.89027,23.13136],[70.89513,23.13319],[70.89746,23.13149],[70.90509,23.13507],[70.90084,23.13719],[70.90015,23.14358],[70.893,23.13942],[70.89013,23.14063],[70.88978,23.14589],[70.89232,23.14939],[70.89067,23.15179],[70.89057,23.15803],[70.89389,23.16252],[70.91438,23.16405],[70.92634,23.16142],[70.93797,23.1617],[70.94399,23.15566],[70.94481,23.15016],[70.94049,23.14658],[70.93962,23.14396],[70.93018,23.13785],[70.93251,23.13723],[70.93998,23.14158],[70.94598,23.14013],[70.94791,23.13578],[70.94644,23.13249],[70.94998,23.13149],[70.95188,23.13466],[70.95439,23.13382],[70.9544,23.13616],[70.95868,23.13587],[70.95332,23.14173],[70.96135,23.13686],[70.96976,23.13895],[70.96594,23.13943],[70.9644,23.14252],[70.95656,23.1419],[70.95351,23.14471],[70.9535,23.14633],[70.96008,23.1449],[70.95539,23.15056],[70.95255,23.15069],[70.95068,23.16409],[70.95334,23.17036],[70.96435,23.17438],[70.96436,23.17143],[70.96011,23.16737],[70.96476,23.16543],[70.96463,23.16118],[70.96273,23.15804],[70.96492,23.15508],[70.96868,23.1575],[70.96891,23.1596],[70.97074,23.15834],[70.97283,23.16026],[70.9807,23.1597],[70.98522,23.16687],[70.98382,23.1717],[70.99205,23.17098],[70.99506,23.16878],[71.00151,23.16923],[71.00892,23.17173],[71.00137,23.17421],[71.00665,23.17648],[71.01621,23.17175],[71.03107,23.16725],[71.04151,23.16774],[71.05884,23.17323],[71.06549,23.17719],[71.06618,23.182],[71.08142,23.1939],[71.08891,23.19351],[71.08484,23.19668],[71.09815,23.2113],[71.10796,23.21746],[71.10976,23.22229],[71.11134,23.21692],[71.1172,23.21252],[71.12005,23.2131],[71.12068,23.21047],[71.12448,23.20979],[71.12469,23.20798],[71.12221,23.20574],[71.12682,23.20812],[71.12656,23.21007],[71.13036,23.21002],[71.1462,23.20319],[71.14498,23.20153],[71.14736,23.19918],[71.14873,23.2025],[71.15143,23.20284],[71.15585,23.19743],[71.15696,23.1923],[71.15876,23.19191],[71.15782,23.19032],[71.16141,23.18642],[71.16331,23.17734],[71.16615,23.17885],[71.1679,23.18324],[71.17633,23.18914],[71.17822,23.18587],[71.18144,23.18709],[71.18276,23.18582],[71.18376,23.18191],[71.18725,23.18689],[71.19606,23.18612],[71.20023,23.18314],[71.20645,23.18265],[71.21087,23.17634],[71.21172,23.17722],[71.21308,23.17053],[71.21672,23.16438],[71.22362,23.16169],[71.22431,23.159],[71.21615,23.1473],[71.21504,23.14339],[71.20877,23.14129],[71.20982,23.13973],[71.20839,23.13798],[71.21889,23.14275],[71.22215,23.14699],[71.22669,23.14348],[71.23265,23.14323],[71.23333,23.14118],[71.23459,23.14157],[71.23623,23.14328],[71.23555,23.1463],[71.2375,23.1481],[71.23349,23.14923],[71.23692,23.14893],[71.23576,23.15108],[71.2384,23.15048],[71.23899,23.15506],[71.24062,23.15589],[71.24109,23.15096],[71.24257,23.15199],[71.24325,23.15037],[71.24442,23.15208],[71.24504,23.15003],[71.24553,23.15282],[71.24732,23.15183],[71.24658,23.14798],[71.25,23.1528],[71.26874,23.15591],[71.2859,23.14987],[71.28377,23.15786],[71.28015,23.15889],[71.2777,23.16242],[71.27973,23.16758],[71.28198,23.16972],[71.28408,23.16954],[71.28446,23.16519],[71.28713,23.1639],[71.28801,23.16943],[71.29121,23.17534],[71.29634,23.17558],[71.30049,23.1799],[71.29958,23.17285],[71.30256,23.16877],[71.30465,23.16666],[71.31208,23.16634],[71.31156,23.17163],[71.31549,23.1824],[71.31977,23.18618],[71.32552,23.17336],[71.33332,23.17152],[71.33203,23.16124],[71.33478,23.1603],[71.33576,23.16259],[71.33706,23.16074],[71.34068,23.1626],[71.34159,23.16764],[71.34638,23.16882],[71.34584,23.17035],[71.34999,23.17451],[71.36055,23.17304],[71.36531,23.15939],[71.38918,23.15375],[71.38674,23.14692],[71.39014,23.14583],[71.39032,23.14871],[71.39621,23.15317],[71.4024,23.1495],[71.41571,23.14647],[71.41951,23.14292],[71.42484,23.14177],[71.4296,23.14723],[71.43147,23.14747],[71.43365,23.14509],[71.44474,23.1462],[71.45004,23.13855],[71.44888,23.13798],[71.45042,23.13285],[71.45281,23.13403],[71.45381,23.13901],[71.46716,23.13967],[71.47547,23.14657],[71.48846,23.14983],[71.50049,23.14975],[71.50019,23.1521],[71.50329,23.14993],[71.50669,23.15545],[71.51258,23.1506],[71.51353,23.15453],[71.51231,23.15459],[71.51561,23.1585],[71.52069,23.15346],[71.52254,23.15626],[71.52584,23.15486],[71.53272,23.15616],[71.53885,23.15511],[71.54662,23.14965],[71.54887,23.14481],[71.54826,23.14302],[71.55071,23.14029],[71.55562,23.14058],[71.55444,23.14378],[71.55726,23.13955],[71.55836,23.14126],[71.56141,23.14122],[71.56165,23.13861],[71.56447,23.13907],[71.56626,23.14289],[71.56935,23.1421],[71.56762,23.13727],[71.57263,23.1377],[71.57062,23.13493],[71.57373,23.13298],[71.57617,23.1338],[71.5838,23.13212],[71.58986,23.13563],[71.59419,23.13246],[71.59513,23.13715],[71.60131,23.14388],[71.60591,23.13491],[71.61053,23.14473],[71.61296,23.13967],[71.61866,23.14254],[71.6313,23.14251],[71.64065,23.14428],[71.65511,23.14215],[71.65821,23.13859],[71.65937,23.14127],[71.66195,23.13846],[71.66957,23.14312],[71.67091,23.14171],[71.66827,23.13901],[71.67234,23.13468],[71.68271,23.13275],[71.68533,23.12906],[71.68933,23.13117],[71.68996,23.12466],[71.70198,23.12031],[71.70831,23.11565],[71.71076,23.10267],[71.71031,23.09529],[71.71983,23.09077],[71.72136,23.09432],[71.72203,23.09283],[71.72356,23.09404],[71.72512,23.0991],[71.72241,23.10356],[71.7265,23.1042],[71.72756,23.11175],[71.73466,23.11606],[71.73595,23.11947],[71.74557,23.12196],[71.74852,23.11951],[71.7495,23.12212],[71.75572,23.11931],[71.758,23.11619],[71.76118,23.11716],[71.75931,23.12495],[71.75302,23.12818],[71.75,23.1326],[71.74644,23.13349],[71.74488,23.13594],[71.75933,23.14265],[71.76241,23.15774],[71.75015,23.16768],[71.75061,23.17552],[71.74847,23.1781],[71.742,23.17954],[71.73988,23.17697],[71.73234,23.1771],[71.73044,23.17542],[71.73041,23.17053],[71.72695,23.16926],[71.72686,23.16699],[71.72393,23.1652],[71.70835,23.16872],[71.70279,23.17259],[71.70013,23.17533],[71.70636,23.18512],[71.71322,23.19397],[71.72114,23.19727],[71.72062,23.19865],[71.70899,23.20089],[71.6979,23.18866],[71.68926,23.18193],[71.68296,23.18453],[71.67784,23.19554],[71.67678,23.20206],[71.66528,23.20593],[71.66508,23.20723],[71.65753,23.20759],[71.66563,23.21733],[71.66622,23.22358],[71.67065,23.22644],[71.66738,23.22941],[71.66381,23.2288],[71.65938,23.23157],[71.65357,23.23238],[71.65197,23.23455],[71.65364,23.23684],[71.66185,23.24133],[71.68801,23.2405],[71.69621,23.24376],[71.69715,23.24822],[71.69493,23.25274],[71.69148,23.25269],[71.68672,23.24936],[71.68465,23.24993],[71.67782,23.25799],[71.66653,23.25714],[71.65963,23.26013],[71.66349,23.26678],[71.66026,23.27447],[71.66367,23.27319],[71.66974,23.27439],[71.67221,23.27245],[71.67582,23.27485],[71.67678,23.27859],[71.67454,23.28348],[71.67741,23.28867],[71.67457,23.29319],[71.67272,23.29339],[71.67406,23.29018],[71.67131,23.28814],[71.66253,23.28973],[71.65976,23.28868],[71.65918,23.2905],[71.65178,23.28542],[71.65172,23.28191],[71.64669,23.27879],[71.64143,23.28101],[71.63969,23.28642],[71.63919,23.28374],[71.63556,23.2848],[71.6359,23.29003],[71.63382,23.28894],[71.63213,23.29201],[71.62905,23.29151],[71.62873,23.29359],[71.6438,23.30521],[71.64578,23.31195],[71.65144,23.31848],[71.64652,23.32866],[71.64689,23.33138],[71.64138,23.33829],[71.63513,23.34209],[71.62941,23.34874],[71.62197,23.34925],[71.61605,23.35455],[71.6034,23.35141],[71.59489,23.35517],[71.58713,23.35552],[71.58599,23.3561],[71.58662,23.35982],[71.58361,23.36311],[71.56315,23.35195],[71.56156,23.35235],[71.56182,23.35777],[71.56675,23.36183],[71.58571,23.36507],[71.58946,23.36729],[71.59112,23.37128],[71.60077,23.37515],[71.59948,23.37805],[71.59438,23.37774],[71.58454,23.37194],[71.58344,23.36901],[71.5819,23.37089],[71.56653,23.36904],[71.56378,23.3729],[71.5696,23.38166],[71.57042,23.38823],[71.57215,23.39054],[71.58924,23.39719],[71.58098,23.40027],[71.58177,23.40562],[71.58917,23.41355],[71.59397,23.41569],[71.59668,23.41992],[71.60285,23.4237],[71.60127,23.42504],[71.59408,23.42144],[71.59437,23.42324],[71.59273,23.42312],[71.57601,23.41243],[71.57001,23.41163],[71.5683,23.41407],[71.56811,23.41918],[71.56011,23.43118],[71.56124,23.44041],[71.55414,23.44281],[71.54789,23.45589],[71.54257,23.45929],[71.53455,23.45934],[71.53215,23.46104],[71.53375,23.47891],[71.5201,23.46851],[71.51822,23.46229],[71.50801,23.45626],[71.50615,23.46686],[71.50752,23.48739],[71.51064,23.49248],[71.51938,23.50001],[71.52029,23.52781],[71.51191,23.52345],[71.50802,23.5174],[71.50811,23.51156],[71.4949,23.50028],[71.47738,23.49382],[71.46466,23.48032],[71.45348,23.47125],[71.44522,23.46935],[71.44815,23.536],[71.47346,23.55615],[71.4571,23.55909],[71.45238,23.56145],[71.42217,23.56363],[71.41857,23.56732],[71.41667,23.5786],[71.42677,23.60329],[71.4233,23.60963],[71.42508,23.62882],[71.41472,23.623],[71.40488,23.61158],[71.39384,23.60281],[71.39226,23.61133],[71.3863,23.62315],[71.38348,23.63446],[71.37538,23.6435],[71.37554,23.64972],[71.36142,23.65184],[71.35105,23.65638],[71.3336,23.64881],[71.30433,23.64572],[71.27617,23.64962],[71.26266,23.64943],[71.24285,23.65575],[71.22185,23.65639],[71.22064,23.66689],[71.2133,23.67852],[71.22392,23.68794],[71.22378,23.6941],[71.218,23.69898],[71.2252,23.71392],[71.21727,23.72166],[71.21773,23.72947],[71.20694,23.73869],[71.19582,23.73852],[71.19011,23.73403],[71.18962,23.73922],[71.18383,23.74203],[71.18203,23.7402],[71.17469,23.74434],[71.17301,23.74193],[71.1775,23.72891],[71.14427,23.73004],[71.14785,23.72699],[71.14435,23.72075],[71.1456,23.71938],[71.14458,23.71696],[71.14716,23.71682],[71.15199,23.71997],[71.15047,23.71552],[71.15207,23.713],[71.15793,23.7125],[71.16029,23.71615],[71.15918,23.71766],[71.16223,23.72151],[71.16733,23.71559],[71.17136,23.71376],[71.17965,23.7173],[71.1808,23.71594],[71.16422,23.69927],[71.15735,23.69469],[71.14889,23.68356],[71.14923,23.6802],[71.1433,23.67421],[71.14953,23.67375],[71.14957,23.66824],[71.13664,23.66405],[71.13675,23.66146],[71.13105,23.6519],[71.13166,23.64316],[71.13671,23.64407],[71.13896,23.63746],[71.13957,23.63174],[71.13554,23.62785],[71.12039,23.62466],[71.09665,23.61478],[71.09403,23.61502],[71.09486,23.6248],[71.08942,23.62455],[71.08574,23.6175],[71.09071,23.61266],[71.0927,23.60674],[71.08484,23.60316],[71.08617,23.60205],[71.08083,23.59853],[71.07436,23.60645],[71.06902,23.60701],[71.06625,23.60906],[71.06833,23.61618],[71.06346,23.62304],[71.06061,23.62104],[71.05234,23.62034],[71.04694,23.6251],[71.03653,23.64551],[71.03457,23.66176],[71.03533,23.67013],[71.03923,23.68089],[71.04775,23.68128],[71.05376,23.68457],[71.06872,23.68665],[71.06952,23.68857],[71.06688,23.69351],[71.06808,23.69789],[71.0616,23.7056],[71.05709,23.72086],[71.05907,23.73047],[71.05747,23.73215],[71.05712,23.73745],[71.06814,23.73219],[71.06877,23.72971],[71.07281,23.73037],[71.06486,23.74167],[71.05984,23.74117],[71.05375,23.74379],[71.05866,23.75532],[71.05452,23.76019],[71.05648,23.7672],[71.05391,23.76943],[71.05663,23.77496],[71.05541,23.7763],[71.05707,23.77686],[71.0543,23.77958],[71.05595,23.78679],[71.05472,23.78899],[71.04449,23.79053],[71.04312,23.80461],[71.0466,23.80953],[71.05388,23.8091],[71.05744,23.80591],[71.06121,23.80547],[71.06539,23.8159],[71.06932,23.81706],[71.06967,23.81992],[71.06338,23.82132],[71.06347,23.82504],[71.06414,23.82658],[71.06636,23.82646],[71.06678,23.82394],[71.07212,23.82333],[71.07431,23.82986],[71.07199,23.82851],[71.06989,23.83145],[71.0676,23.8304],[71.06375,23.83843],[71.06658,23.84331],[71.06935,23.84238],[71.07112,23.84393],[71.06947,23.84541],[71.07976,23.87498],[71.08622,23.88271],[71.09744,23.902],[71.10345,23.90592],[71.11926,23.90531],[71.12791,23.90809],[71.12746,23.91115],[71.13096,23.90966],[71.14025,23.91036],[71.1398,23.91246],[71.14556,23.91547],[71.15443,23.91669],[71.158,23.92062],[71.16007,23.91848],[71.16519,23.91807],[71.1684,23.92007],[71.17614,23.92023],[71.17728,23.92544],[71.17586,23.92743],[71.17769,23.93066],[71.18702,23.92256],[71.19352,23.92094],[71.19946,23.927],[71.21821,23.93611],[71.23302,23.93015],[71.23885,23.91861],[71.25439,23.9214],[71.24767,23.92849],[71.25311,23.93328],[71.26026,23.93202],[71.26216,23.92502],[71.26506,23.92122],[71.27304,23.92255],[71.27543,23.9278],[71.27078,23.93302],[71.27427,23.93443],[71.27977,23.92824],[71.2995,23.92768],[71.29798,23.93429],[71.30198,23.93349],[71.28887,23.94845],[71.29143,23.95097],[71.29828,23.95222],[71.30155,23.95502],[71.29741,23.96241],[71.29823,23.96739],[71.30463,23.97503],[71.31451,23.97843],[71.31908,23.98376],[71.30922,23.99333],[71.29538,23.98701],[71.28502,23.99164],[71.28865,24.00128],[71.28854,24.01039],[71.29161,24.01975],[71.30092,24.03172],[71.31917,24.04615],[71.32188,24.05228],[71.30829,24.05656],[71.30486,24.06267],[71.30798,24.06607],[71.31262,24.06734],[71.31215,24.06917],[71.31566,24.07188],[71.31134,24.07489],[71.31752,24.07871],[71.31386,24.08209],[71.31697,24.09235],[71.31635,24.09611],[71.32285,24.09718],[71.33638,24.10496],[71.33361,24.11635],[71.33152,24.11968],[71.3284,24.1165],[71.32498,24.11972],[71.31291,24.12026],[71.31085,24.12218],[71.302,24.12128],[71.3044,24.12518],[71.3025,24.1253],[71.30174,24.12918],[71.29385,24.13319],[71.28218,24.13263],[71.28348,24.13454],[71.27978,24.1382],[71.27459,24.13942],[71.27278,24.1414],[71.2718,24.14468],[71.27724,24.14515],[71.27922,24.14749],[71.28549,24.14971],[71.28185,24.15031],[71.28076,24.15284],[71.2678,24.15922],[71.25759,24.15897],[71.26702,24.16702],[71.26862,24.1721],[71.27193,24.1722],[71.2697,24.17507],[71.27277,24.17633],[71.28224,24.17401],[71.2872,24.16863],[71.29525,24.16657],[71.29859,24.16109],[71.30212,24.15991],[71.30563,24.16077],[71.30941,24.16618],[71.31438,24.16412],[71.32494,24.16431],[71.32733,24.16648],[71.32756,24.17085],[71.32892,24.17196],[71.33059,24.16436],[71.33339,24.16687],[71.33516,24.16422],[71.33754,24.16378],[71.34531,24.16858],[71.34239,24.17521],[71.34355,24.17726],[71.3454,24.17691],[71.34518,24.17403],[71.34941,24.17564],[71.35448,24.17262],[71.35837,24.17318],[71.3607,24.17738],[71.35637,24.18152],[71.36074,24.18573],[71.35958,24.18746],[71.34834,24.18782],[71.33843,24.18574],[71.33365,24.18215],[71.32595,24.18215],[71.32559,24.19027],[71.32972,24.19569],[71.32718,24.19725],[71.31754,24.19796],[71.31145,24.20381],[71.30865,24.20215],[71.30491,24.2073],[71.30291,24.20747],[71.30022,24.21484],[71.30492,24.21602],[71.30413,24.21762],[71.30661,24.2192],[71.31015,24.21937],[71.30996,24.22209],[71.3035,24.22342],[71.30219,24.22509],[71.29815,24.22264],[71.29262,24.22676],[71.29051,24.22506],[71.28854,24.22973],[71.28527,24.23085],[71.2798,24.23655],[71.28561,24.23864],[71.28583,24.24093],[71.2883,24.23863],[71.28906,24.24415],[71.29251,24.24384],[71.29177,24.24815],[71.29061,24.24721],[71.28949,24.24919],[71.28555,24.24861],[71.2854,24.24205],[71.28279,24.25007],[71.27711,24.25042],[71.27424,24.25777],[71.27631,24.25894],[71.27702,24.26339],[71.27968,24.26311],[71.2838,24.26583],[71.28609,24.26057],[71.28926,24.25829],[71.30273,24.25975],[71.29719,24.26614],[71.29843,24.26612],[71.29989,24.27019],[71.30136,24.27],[71.29989,24.27282],[71.305,24.27143],[71.30334,24.27344],[71.30463,24.27416],[71.30097,24.27759],[71.30316,24.27886],[71.30094,24.27968],[71.30065,24.28168],[71.30328,24.282],[71.29983,24.28424],[71.30182,24.28671],[71.3003,24.28647],[71.29803,24.28942],[71.29775,24.29288],[71.29459,24.2964],[71.29459,24.30099],[71.29643,24.3016],[71.29613,24.30389],[71.2995,24.30305],[71.30136,24.30638],[71.30365,24.30653],[71.30311,24.30844],[71.30656,24.30863],[71.30741,24.3118],[71.31041,24.31181],[71.31415,24.32207],[71.31668,24.31704],[71.3186,24.31956],[71.32118,24.31939],[71.31983,24.32367],[71.32553,24.32195],[71.32537,24.32378],[71.33253,24.32346],[71.34224,24.32805],[71.34807,24.32637],[71.34852,24.32847],[71.35247,24.32852],[71.35352,24.3302],[71.36233,24.32944],[71.36336,24.33314],[71.36664,24.33166],[71.37078,24.33305],[71.37149,24.33538],[71.3748,24.33389],[71.37611,24.33783],[71.37823,24.33929],[71.37799,24.34339],[71.38162,24.34569],[71.38195,24.34799],[71.37412,24.34881],[71.37111,24.35081],[71.37587,24.35342],[71.3826,24.34986],[71.38402,24.35072],[71.38079,24.35318],[71.3831,24.35376],[71.38082,24.3599],[71.37778,24.36191],[71.37245,24.37056],[71.37185,24.37333],[71.37435,24.37458],[71.37278,24.37578],[71.37355,24.37853],[71.3672,24.37587],[71.36649,24.38031],[71.36492,24.38114],[71.36607,24.38218],[71.36201,24.38408],[71.36612,24.38795],[71.36611,24.39153],[71.35293,24.38755],[71.3526,24.3898],[71.34606,24.38678],[71.34786,24.38954],[71.34736,24.39253],[71.34251,24.39318],[71.33938,24.39122],[71.33467,24.39361],[71.32296,24.39422],[71.31898,24.40228],[71.32223,24.40679],[71.32424,24.4136],[71.33327,24.41961],[71.33773,24.42572],[71.34122,24.42415],[71.34301,24.42541],[71.34379,24.43195],[71.33615,24.43042],[71.32407,24.44306],[71.32068,24.44392],[71.3205,24.44552],[71.32246,24.45263],[71.33115,24.46085],[71.33764,24.45594],[71.34922,24.45758],[71.34439,24.46619],[71.3379,24.46938],[71.33544,24.46821],[71.33387,24.47017],[71.34187,24.47357],[71.34232,24.47541],[71.33639,24.47936],[71.33528,24.47577],[71.33135,24.47936],[71.33398,24.47982],[71.33348,24.48214],[71.33904,24.49352],[71.34532,24.5],[71.34847,24.51761],[71.29236,24.51915],[71.26909,24.50984],[71.25865,24.50673],[71.25676,24.50814],[71.26023,24.53338],[71.26318,24.53512],[71.26639,24.53431],[71.26649,24.5363],[71.27072,24.53794],[71.27839,24.54565],[71.27577,24.54505],[71.27887,24.54706],[71.28072,24.55266],[71.28575,24.55335],[71.28939,24.55583],[71.28604,24.55931],[71.29264,24.56345],[71.29454,24.56306],[71.29576,24.56499],[71.29727,24.56433],[71.29911,24.57742],[71.30106,24.57483],[71.30127,24.57798]],[[71.13121,24.26219],[71.12883,24.2693],[71.13329,24.27458],[71.14224,24.27369],[71.15072,24.26956],[71.15234,24.26667],[71.17284,24.25874],[71.17838,24.25369],[71.20762,24.24524],[71.21089,24.24156],[71.21263,24.23409],[71.21149,24.22799],[71.20486,24.21815],[71.18745,24.21152],[71.17795,24.21624],[71.17016,24.22361],[71.1619,24.22832],[71.16219,24.2329],[71.15988,24.23566],[71.1476,24.24515],[71.13956,24.2508],[71.13766,24.2493],[71.13176,24.25779],[71.13121,24.26219]],[[71.22457,24.2184],[71.23505,24.20993],[71.24198,24.21305],[71.24061,24.20627],[71.23485,24.20284],[71.21628,24.20447],[71.22457,24.2184]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"45","area_level":"District","area_name":"Almora","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.25044,29.96101],[79.24598,29.96988],[79.24107,29.97359],[79.23043,29.97908],[79.22484,29.97801],[79.23152,29.96925],[79.23159,29.96073],[79.22648,29.95201],[79.22864,29.94701],[79.22549,29.94507],[79.22151,29.94622],[79.21835,29.942],[79.21475,29.94064],[79.20827,29.94334],[79.20482,29.93932],[79.1982,29.94626],[79.19262,29.94469],[79.1894,29.9234],[79.18453,29.91895],[79.17676,29.90756],[79.17283,29.90777],[79.16431,29.9153],[79.15879,29.91553],[79.13979,29.90643],[79.1282,29.90647],[79.12645,29.90161],[79.11882,29.89494],[79.10634,29.89375],[79.1015,29.89036],[79.09648,29.89104],[79.09376,29.89317],[79.08775,29.89255],[79.07859,29.88589],[79.077,29.87692],[79.07091,29.87278],[79.07179,29.87102],[79.06771,29.86466],[79.06732,29.86242],[79.07318,29.85936],[79.07693,29.86016],[79.08364,29.85794],[79.08749,29.85595],[79.09107,29.85014],[79.09665,29.84873],[79.09646,29.84717],[79.10055,29.84297],[79.10219,29.83663],[79.11042,29.83243],[79.11436,29.8184],[79.11656,29.81689],[79.11651,29.81345],[79.12005,29.80935],[79.11787,29.80609],[79.11817,29.80313],[79.12275,29.79799],[79.12293,29.79333],[79.12489,29.78992],[79.12411,29.78776],[79.12695,29.78526],[79.12709,29.78153],[79.12094,29.77283],[79.11482,29.76985],[79.11313,29.77325],[79.10919,29.77516],[79.11241,29.76484],[79.11224,29.75906],[79.11,29.75321],[79.11147,29.74979],[79.11018,29.742],[79.10793,29.73937],[79.10934,29.73776],[79.10869,29.73091],[79.11129,29.73124],[79.11212,29.72779],[79.11501,29.72694],[79.11618,29.72576],[79.11514,29.7244],[79.11726,29.72364],[79.11532,29.72207],[79.11572,29.71932],[79.11886,29.72043],[79.12111,29.71778],[79.11979,29.70966],[79.11492,29.70933],[79.11199,29.7063],[79.11253,29.70401],[79.10895,29.70296],[79.10475,29.69894],[79.10674,29.69375],[79.10984,29.69112],[79.11201,29.69256],[79.11458,29.69136],[79.11359,29.68445],[79.11622,29.68284],[79.10918,29.67648],[79.10886,29.66501],[79.10534,29.66057],[79.10143,29.6617],[79.10061,29.66472],[79.1033,29.66768],[79.10086,29.67241],[79.09625,29.67364],[79.09031,29.66377],[79.08742,29.6635],[79.08582,29.65711],[79.08335,29.65453],[79.08447,29.6524],[79.08158,29.65116],[79.08118,29.64664],[79.07921,29.64444],[79.078,29.6389],[79.08057,29.63327],[79.08442,29.63294],[79.0863,29.62942],[79.09444,29.62759],[79.08232,29.61977],[79.08094,29.61581],[79.07563,29.61686],[79.07153,29.62176],[79.06708,29.62048],[79.06758,29.61707],[79.06531,29.61236],[79.06225,29.61045],[79.0623,29.60554],[79.05929,29.60372],[79.06318,29.59936],[79.06068,29.58796],[79.05639,29.58646],[79.0491,29.58805],[79.04647,29.59107],[79.04267,29.59147],[79.03885,29.58841],[79.0371,29.58454],[79.04123,29.58491],[79.0565,29.57948],[79.05909,29.58193],[79.06365,29.58004],[79.07192,29.57984],[79.07688,29.58223],[79.09062,29.57295],[79.09064,29.56802],[79.09316,29.56786],[79.10406,29.56012],[79.10997,29.55848],[79.11137,29.5549],[79.1093,29.5534],[79.10859,29.5441],[79.12416,29.54956],[79.13283,29.5484],[79.13801,29.55269],[79.14076,29.55265],[79.14545,29.54466],[79.14372,29.54178],[79.147,29.53979],[79.15866,29.53809],[79.16786,29.53463],[79.17865,29.53461],[79.18885,29.53006],[79.1975,29.52369],[79.20305,29.52279],[79.2127,29.52557],[79.21501,29.52495],[79.21675,29.52164],[79.22306,29.5221],[79.23313,29.53139],[79.23411,29.53565],[79.23307,29.53752],[79.24057,29.53638],[79.2454,29.54218],[79.24686,29.54907],[79.25009,29.5498],[79.25335,29.55475],[79.27486,29.57379],[79.28664,29.57827],[79.28714,29.59007],[79.29322,29.5891],[79.29967,29.59052],[79.30783,29.60117],[79.32273,29.60381],[79.33216,29.61186],[79.33446,29.61199],[79.3406,29.6069],[79.34855,29.60666],[79.35374,29.59989],[79.34874,29.59689],[79.35019,29.59415],[79.35856,29.598],[79.36724,29.59086],[79.38045,29.58801],[79.38572,29.58234],[79.38758,29.57656],[79.3892,29.57489],[79.39193,29.5754],[79.39486,29.56973],[79.39758,29.5684],[79.3991,29.56378],[79.4032,29.56395],[79.40376,29.56187],[79.40936,29.56235],[79.41236,29.55667],[79.41476,29.55664],[79.42396,29.55114],[79.43154,29.54468],[79.43445,29.53945],[79.43893,29.53846],[79.44166,29.53322],[79.44331,29.52467],[79.4507,29.51668],[79.46039,29.51734],[79.46479,29.51467],[79.46695,29.51019],[79.47319,29.51078],[79.47542,29.50937],[79.48027,29.50434],[79.48191,29.49665],[79.4942,29.50288],[79.50141,29.49679],[79.50384,29.49882],[79.50435,29.50171],[79.51081,29.50544],[79.51662,29.51198],[79.52337,29.52394],[79.52739,29.54909],[79.5349,29.54551],[79.54068,29.55047],[79.54704,29.54981],[79.54985,29.55101],[79.55126,29.55071],[79.55203,29.54749],[79.54936,29.5419],[79.55048,29.54047],[79.57184,29.53961],[79.57708,29.54316],[79.58405,29.54505],[79.58972,29.55022],[79.59767,29.55023],[79.60091,29.55278],[79.60786,29.55372],[79.61269,29.55689],[79.62124,29.55581],[79.62915,29.55161],[79.63139,29.54846],[79.63209,29.5424],[79.64456,29.54763],[79.64814,29.5477],[79.6565,29.54174],[79.66004,29.54272],[79.6654,29.54124],[79.66508,29.53424],[79.67278,29.53207],[79.67131,29.53095],[79.6798,29.52728],[79.68242,29.52357],[79.68152,29.52181],[79.68367,29.52159],[79.68099,29.51663],[79.68209,29.51243],[79.6812,29.50745],[79.68363,29.50633],[79.67937,29.49997],[79.68097,29.49197],[79.68951,29.47372],[79.69145,29.47345],[79.69214,29.46961],[79.69875,29.46915],[79.70318,29.46673],[79.71001,29.45963],[79.71479,29.46228],[79.71594,29.45827],[79.72189,29.45736],[79.73381,29.46141],[79.7316,29.45383],[79.72674,29.44673],[79.72907,29.4406],[79.73581,29.43146],[79.73842,29.43369],[79.74169,29.42983],[79.74425,29.43002],[79.74877,29.43407],[79.75382,29.43479],[79.7568,29.43301],[79.75926,29.43499],[79.7639,29.43339],[79.76719,29.43721],[79.76792,29.44759],[79.77811,29.45135],[79.7808,29.44904],[79.78769,29.4489],[79.79156,29.44271],[79.79556,29.44107],[79.79578,29.43888],[79.79839,29.43723],[79.80855,29.43962],[79.81578,29.43511],[79.82322,29.43286],[79.82528,29.42657],[79.82922,29.42548],[79.84082,29.42719],[79.8486,29.43207],[79.85026,29.43616],[79.8461,29.44456],[79.84874,29.4441],[79.84846,29.44716],[79.85088,29.45275],[79.8527,29.4515],[79.85356,29.45427],[79.85675,29.456],[79.85817,29.45464],[79.85711,29.45047],[79.86006,29.44799],[79.86171,29.44885],[79.86734,29.45449],[79.86613,29.45665],[79.87131,29.46131],[79.87173,29.46517],[79.87508,29.46807],[79.87651,29.47299],[79.88429,29.47865],[79.88683,29.48357],[79.89104,29.48252],[79.89426,29.48603],[79.89737,29.4845],[79.90078,29.48757],[79.90972,29.48983],[79.91084,29.48666],[79.91539,29.48747],[79.91379,29.48322],[79.91725,29.48287],[79.91676,29.47923],[79.91964,29.47732],[79.91876,29.47458],[79.92703,29.47244],[79.93062,29.47629],[79.93444,29.47631],[79.93505,29.47926],[79.93769,29.47621],[79.94466,29.47882],[79.94586,29.47695],[79.94721,29.49994],[79.95307,29.49921],[79.96101,29.49435],[79.95159,29.47826],[79.95344,29.47479],[79.95527,29.47593],[79.95688,29.47408],[79.95991,29.47726],[79.96591,29.47591],[79.96851,29.47824],[79.97229,29.4774],[79.97649,29.48206],[79.97702,29.48557],[79.98547,29.4846],[79.98884,29.4892],[79.99238,29.48619],[79.99505,29.48772],[80.0007,29.4852],[80.0032,29.48977],[80.00772,29.48934],[80.01263,29.49276],[80.01956,29.49316],[80.02346,29.49852],[80.02979,29.49977],[80.03079,29.50822],[80.03741,29.50775],[80.05179,29.51089],[80.05358,29.51269],[80.05882,29.51293],[80.07791,29.52092],[80.06521,29.52784],[80.06688,29.53736],[80.06132,29.53859],[80.04785,29.54589],[80.03643,29.54792],[80.0312,29.55099],[80.01876,29.54984],[80.0111,29.55121],[80.00456,29.55802],[79.99942,29.55959],[79.99697,29.58016],[79.99289,29.58849],[79.994,29.59379],[79.99155,29.59733],[79.9886,29.6138],[79.98288,29.61773],[79.98241,29.62203],[79.97039,29.64254],[79.96867,29.64973],[79.959,29.65674],[79.96335,29.66492],[79.95795,29.66934],[79.9578,29.67748],[79.9509,29.68334],[79.94557,29.6854],[79.94375,29.68189],[79.94193,29.68218],[79.94046,29.68673],[79.92726,29.69511],[79.92479,29.69881],[79.91786,29.69593],[79.91456,29.69795],[79.90176,29.69804],[79.89619,29.70388],[79.88941,29.70399],[79.88947,29.70652],[79.89399,29.71221],[79.88584,29.71254],[79.87652,29.71524],[79.86759,29.71419],[79.86477,29.71088],[79.86152,29.71455],[79.85064,29.71474],[79.84031,29.71716],[79.8335,29.71028],[79.82849,29.70978],[79.8237,29.71301],[79.82252,29.71055],[79.82078,29.71268],[79.81936,29.71091],[79.81685,29.7139],[79.81468,29.71156],[79.80699,29.71228],[79.80645,29.71509],[79.80458,29.71598],[79.7939,29.70701],[79.7803,29.71151],[79.77287,29.70605],[79.76739,29.70531],[79.75836,29.70091],[79.75232,29.70834],[79.7459,29.70984],[79.73461,29.71871],[79.72905,29.7278],[79.72171,29.73061],[79.72056,29.7378],[79.71452,29.7399],[79.70855,29.74662],[79.70817,29.7534],[79.70469,29.75696],[79.70378,29.76164],[79.69623,29.76553],[79.69534,29.77288],[79.69729,29.77694],[79.69626,29.7826],[79.70248,29.78837],[79.70376,29.79718],[79.69723,29.80702],[79.69293,29.80768],[79.68899,29.81051],[79.69185,29.81457],[79.6973,29.81492],[79.70794,29.82586],[79.7045,29.82778],[79.69494,29.82729],[79.67626,29.83448],[79.67317,29.84114],[79.67016,29.84328],[79.65965,29.83895],[79.65616,29.84097],[79.64072,29.84079],[79.63925,29.84112],[79.63948,29.84839],[79.63532,29.84959],[79.63142,29.84653],[79.62586,29.84571],[79.62282,29.84282],[79.61838,29.84533],[79.61051,29.8412],[79.59568,29.8491],[79.58519,29.85164],[79.5795,29.85621],[79.57513,29.86395],[79.56841,29.86329],[79.5599,29.85945],[79.55397,29.86431],[79.5416,29.86841],[79.52823,29.8679],[79.52266,29.86923],[79.51961,29.8717],[79.50775,29.87349],[79.49422,29.89619],[79.49153,29.92663],[79.49209,29.94924],[79.48721,29.95521],[79.48273,29.95736],[79.48689,29.9623],[79.48856,29.97017],[79.48469,29.97501],[79.47879,29.97558],[79.47276,29.97971],[79.4669,29.97856],[79.46715,29.97549],[79.46409,29.97184],[79.45937,29.9712],[79.45375,29.96614],[79.44907,29.96467],[79.44935,29.95878],[79.44711,29.95604],[79.43635,29.95248],[79.42854,29.93678],[79.42454,29.93459],[79.42046,29.93491],[79.41715,29.94315],[79.40474,29.94243],[79.40042,29.9378],[79.39571,29.93767],[79.38571,29.92869],[79.37868,29.92919],[79.37398,29.92691],[79.36874,29.93294],[79.36683,29.93847],[79.36185,29.93948],[79.35739,29.94318],[79.35619,29.94958],[79.35177,29.95251],[79.35025,29.95686],[79.34572,29.96022],[79.33895,29.9704],[79.33891,29.9726],[79.32465,29.97232],[79.32476,29.96903],[79.32866,29.96204],[79.33033,29.95074],[79.33513,29.94303],[79.33342,29.94102],[79.3259,29.93869],[79.32508,29.9292],[79.32049,29.92806],[79.31718,29.92777],[79.31432,29.93053],[79.3091,29.93177],[79.3018,29.92843],[79.28229,29.92557],[79.28318,29.93371],[79.28602,29.93863],[79.28396,29.94279],[79.28459,29.95167],[79.27979,29.95368],[79.27262,29.96034],[79.26772,29.96012],[79.25604,29.9632],[79.25044,29.96101]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"450","area_level":"District","area_name":"Kheda","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.74218,22.6054],[72.742,22.6055],[72.7411,22.60553],[72.74051,22.60587],[72.74028,22.60572],[72.74038,22.60564],[72.74066,22.60503],[72.74072,22.60369],[72.74065,22.60313],[72.74085,22.60275],[72.74103,22.60258],[72.74109,22.60195],[72.74124,22.60146],[72.74124,22.60117],[72.74148,22.60012],[72.74151,22.59878],[72.74196,22.59811],[72.74304,22.59814],[72.74358,22.59826],[72.74376,22.59722],[72.74421,22.59722],[72.74466,22.59736],[72.74529,22.59744],[72.74567,22.59679],[72.7459,22.59666],[72.74605,22.59676],[72.74637,22.59714],[72.74667,22.5972],[72.74645,22.59764],[72.74629,22.59825],[72.74567,22.59945],[72.74527,22.59943],[72.74534,22.59989],[72.74652,22.60047],[72.74699,22.60086],[72.74693,22.60097],[72.74603,22.60165],[72.74621,22.60181],[72.74676,22.60198],[72.74687,22.60208],[72.74587,22.60394],[72.74556,22.60441],[72.7454,22.60453],[72.74497,22.60437],[72.74464,22.60492],[72.74446,22.60509],[72.74439,22.60548],[72.74406,22.6058],[72.74381,22.60585],[72.74302,22.60558],[72.74274,22.60537],[72.74229,22.60531],[72.74218,22.6054]]],[[[73.14144,23.19948],[73.13346,23.2055],[73.13189,23.20186],[73.12458,23.19674],[73.12068,23.18656],[73.11451,23.18497],[73.11511,23.18339],[73.09348,23.16842],[73.08634,23.16829],[73.08246,23.17076],[73.07516,23.16725],[73.07189,23.1651],[73.06979,23.15966],[73.06367,23.15897],[73.0445,23.16538],[73.03798,23.16158],[73.03346,23.1623],[73.03412,23.16498],[73.03222,23.16819],[73.02583,23.1652],[73.02312,23.16576],[73.0218,23.16935],[73.01895,23.16909],[73.01973,23.16114],[73.01891,23.15988],[73.01197,23.15944],[73.01173,23.15679],[73.0136,23.15506],[73.01184,23.15246],[73.01466,23.14902],[73.01402,23.14358],[73.02506,23.14297],[73.02808,23.13909],[73.02945,23.1348],[73.02594,23.13001],[73.01562,23.12625],[73.00857,23.13005],[72.99461,23.13294],[72.98706,23.13191],[72.97914,23.12778],[72.97549,23.12343],[72.97465,23.11825],[72.97836,23.1098],[72.97576,23.10783],[72.96637,23.10804],[72.96604,23.10318],[72.97147,23.10305],[72.97149,23.10138],[72.96598,23.10115],[72.96492,23.09044],[72.95519,23.08547],[72.95825,23.07363],[72.94514,23.07276],[72.94526,23.07458],[72.94173,23.07334],[72.93959,23.07431],[72.93965,23.07721],[72.93921,23.07582],[72.93009,23.07618],[72.92753,23.07693],[72.92709,23.08083],[72.92548,23.08062],[72.92605,23.07409],[72.92291,23.07507],[72.9221,23.0719],[72.92373,23.06931],[72.91804,23.0694],[72.91225,23.06614],[72.90646,23.06507],[72.91382,23.05476],[72.9135,23.05195],[72.9114,23.05179],[72.90846,23.04788],[72.9086,23.04147],[72.90545,23.03996],[72.90463,23.03061],[72.8981,23.02957],[72.89212,23.0212],[72.89196,23.01824],[72.89082,23.01879],[72.8927,23.01469],[72.89032,23.01464],[72.89035,23.01628],[72.88678,23.01603],[72.88578,23.01454],[72.88032,23.01613],[72.87675,23.01475],[72.87732,23.01098],[72.87508,23.00868],[72.86085,23.0084],[72.85908,23.01141],[72.85309,23.0129],[72.84301,23.01017],[72.8488,23.0026],[72.84846,22.99917],[72.83838,22.99633],[72.83035,22.98409],[72.83194,22.98027],[72.83871,22.98201],[72.83772,22.98037],[72.83993,22.97697],[72.83932,22.9705],[72.84262,22.96711],[72.84079,22.96287],[72.8384,22.96436],[72.82707,22.95442],[72.82539,22.957],[72.81934,22.9539],[72.8166,22.95004],[72.81306,22.94824],[72.81047,22.94322],[72.80487,22.9417],[72.80588,22.93268],[72.80431,22.93355],[72.79758,22.93137],[72.79929,22.91931],[72.79565,22.91811],[72.79572,22.91675],[72.78892,22.9152],[72.79121,22.90795],[72.77582,22.90662],[72.77113,22.90932],[72.76007,22.90699],[72.7576,22.91029],[72.74771,22.90933],[72.74201,22.90572],[72.74083,22.90606],[72.74201,22.90865],[72.73648,22.90826],[72.73762,22.91344],[72.72458,22.91432],[72.72314,22.91381],[72.7236,22.90916],[72.7154,22.90822],[72.71589,22.90474],[72.70657,22.88969],[72.70179,22.88743],[72.69964,22.88381],[72.68918,22.87961],[72.68378,22.88181],[72.68101,22.88007],[72.67808,22.88034],[72.67785,22.88157],[72.67361,22.88058],[72.66773,22.88772],[72.66845,22.89033],[72.67075,22.89162],[72.66755,22.89545],[72.65586,22.89324],[72.64793,22.8939],[72.6474,22.89626],[72.64378,22.89739],[72.64081,22.89266],[72.63471,22.88906],[72.63377,22.88176],[72.62074,22.88388],[72.61534,22.88773],[72.61262,22.8859],[72.6081,22.88619],[72.606,22.88374],[72.60721,22.88308],[72.60533,22.87761],[72.59901,22.87219],[72.60047,22.86614],[72.60284,22.86455],[72.60651,22.86592],[72.60863,22.86274],[72.6062,22.85657],[72.60633,22.84864],[72.60217,22.83563],[72.60476,22.83262],[72.6037,22.83125],[72.60782,22.82293],[72.60622,22.82237],[72.60804,22.81358],[72.60223,22.81645],[72.59854,22.81587],[72.59951,22.81743],[72.59763,22.82491],[72.58333,22.82353],[72.58186,22.82276],[72.58142,22.81907],[72.57035,22.82689],[72.56477,22.8223],[72.55475,22.81849],[72.55,22.81496],[72.54775,22.80652],[72.53865,22.80605],[72.5307,22.79964],[72.52205,22.7958],[72.51996,22.78615],[72.51431,22.77887],[72.52977,22.76731],[72.52727,22.76632],[72.52769,22.7606],[72.52127,22.75573],[72.52233,22.7544],[72.5209,22.7525],[72.53967,22.75129],[72.53581,22.74521],[72.52478,22.73834],[72.52389,22.73323],[72.54066,22.71147],[72.53971,22.70937],[72.53727,22.70899],[72.52615,22.71297],[72.52231,22.71231],[72.51813,22.70766],[72.51798,22.70058],[72.51938,22.69795],[72.52334,22.69589],[72.5407,22.69457],[72.54408,22.69303],[72.54504,22.69003],[72.54223,22.68643],[72.52641,22.68146],[72.52707,22.67801],[72.53148,22.67494],[72.54913,22.67276],[72.55021,22.67055],[72.54788,22.66436],[72.56026,22.66466],[72.55999,22.66021],[72.56458,22.65555],[72.56846,22.65519],[72.56932,22.65368],[72.56796,22.65261],[72.56396,22.65455],[72.55925,22.65392],[72.5498,22.65076],[72.54152,22.65443],[72.53726,22.65225],[72.53391,22.64872],[72.53166,22.64292],[72.53542,22.62626],[72.52917,22.62628],[72.52361,22.62957],[72.52152,22.62622],[72.51769,22.63262],[72.51148,22.63306],[72.50837,22.63053],[72.50585,22.62523],[72.5051,22.61386],[72.51605,22.61176],[72.51839,22.60583],[72.51752,22.60461],[72.52107,22.59943],[72.52409,22.59749],[72.52599,22.59812],[72.52579,22.58756],[72.53357,22.5881],[72.53294,22.56929],[72.5467,22.56988],[72.55409,22.56783],[72.55194,22.56196],[72.55243,22.55582],[72.55745,22.55274],[72.55763,22.5415],[72.56735,22.54353],[72.56756,22.52001],[72.57367,22.52132],[72.57492,22.515],[72.57243,22.51161],[72.57652,22.50406],[72.58892,22.50021],[72.59385,22.50026],[72.5967,22.50253],[72.59942,22.50076],[72.6044,22.50497],[72.60475,22.50957],[72.61897,22.51332],[72.6214,22.5095],[72.62781,22.50967],[72.62861,22.5073],[72.63379,22.50605],[72.63575,22.50384],[72.63846,22.50464],[72.63877,22.50341],[72.64099,22.50456],[72.63859,22.50716],[72.6509,22.50969],[72.65246,22.5063],[72.65223,22.50101],[72.67137,22.50593],[72.66698,22.5303],[72.65109,22.52827],[72.64235,22.52888],[72.6411,22.53534],[72.64366,22.53987],[72.6472,22.54091],[72.64673,22.54458],[72.64904,22.54751],[72.65551,22.55221],[72.6612,22.55302],[72.66052,22.55841],[72.66439,22.55914],[72.67134,22.56406],[72.6685,22.5725],[72.67312,22.57677],[72.67369,22.57901],[72.67238,22.57974],[72.67529,22.58596],[72.69132,22.59027],[72.69424,22.58893],[72.6976,22.58194],[72.71047,22.58974],[72.70926,22.59552],[72.7069,22.59542],[72.70574,22.59945],[72.69396,22.5989],[72.69382,22.60293],[72.69126,22.60243],[72.68897,22.60538],[72.68863,22.60847],[72.69027,22.6088],[72.68705,22.61315],[72.68545,22.6201],[72.68688,22.62421],[72.68562,22.62919],[72.69566,22.63012],[72.70397,22.63382],[72.70848,22.63374],[72.71441,22.63067],[72.71426,22.62463],[72.71729,22.62477],[72.71661,22.62767],[72.71891,22.63086],[72.72487,22.62844],[72.72821,22.62966],[72.73377,22.64055],[72.74072,22.64519],[72.74723,22.6412],[72.74279,22.6408],[72.74555,22.63763],[72.74017,22.62816],[72.73842,22.62905],[72.73782,22.62591],[72.73233,22.62446],[72.73512,22.61927],[72.7343,22.61766],[72.73786,22.61576],[72.73768,22.61327],[72.73555,22.61409],[72.73606,22.61082],[72.74446,22.61214],[72.74529,22.61385],[72.75144,22.61343],[72.75209,22.61474],[72.75695,22.61264],[72.75286,22.60406],[72.75233,22.5989],[72.75043,22.59734],[72.75219,22.59285],[72.7561,22.59363],[72.7566,22.5919],[72.76077,22.59084],[72.77061,22.59052],[72.77698,22.58851],[72.77946,22.59014],[72.77637,22.59396],[72.77379,22.60713],[72.77094,22.61225],[72.77759,22.6157],[72.77673,22.61982],[72.79021,22.62326],[72.79273,22.62145],[72.79353,22.61676],[72.7959,22.61408],[72.79604,22.60936],[72.80177,22.60869],[72.8043,22.61125],[72.80826,22.61151],[72.8105,22.60815],[72.8219,22.60718],[72.82252,22.6036],[72.8272,22.60394],[72.82724,22.59579],[72.83054,22.59429],[72.83325,22.59683],[72.83972,22.59869],[72.84336,22.5973],[72.85062,22.6017],[72.8498,22.60574],[72.85643,22.60951],[72.85381,22.61839],[72.86021,22.6171],[72.87189,22.62039],[72.87175,22.61486],[72.87397,22.61392],[72.87493,22.61092],[72.87503,22.60351],[72.86298,22.60087],[72.86305,22.59374],[72.85972,22.59141],[72.86411,22.5878],[72.86721,22.58243],[72.87888,22.58555],[72.89759,22.59495],[72.90075,22.59034],[72.91741,22.59472],[72.92501,22.60599],[72.92978,22.62917],[72.94093,22.63005],[72.96187,22.63615],[72.96277,22.63391],[72.97512,22.64171],[72.97632,22.65287],[72.98486,22.65368],[72.98812,22.66555],[72.99001,22.66758],[72.99,22.67144],[72.9918,22.67199],[72.99344,22.68049],[72.99219,22.68787],[72.99518,22.68825],[72.99733,22.70003],[73.00525,22.70266],[73.00779,22.70423],[73.00754,22.70572],[73.00921,22.70535],[73.0085,22.71099],[73.00609,22.71178],[73.00399,22.71557],[73.00554,22.71723],[73.00373,22.71924],[73.00356,22.72269],[73.00733,22.72617],[73.01163,22.72698],[73.01388,22.72538],[73.02172,22.72543],[73.02507,22.73154],[73.02517,22.73503],[73.03261,22.73438],[73.03379,22.73021],[73.03899,22.72897],[73.03978,22.72623],[73.03859,22.72482],[73.03701,22.72602],[73.03677,22.7213],[73.04249,22.7186],[73.04131,22.71715],[73.04299,22.71773],[73.04468,22.71623],[73.04432,22.71321],[73.05242,22.71842],[73.0609,22.71906],[73.06533,22.71701],[73.07486,22.72233],[73.07566,22.72034],[73.07854,22.72046],[73.08009,22.72268],[73.08144,22.72124],[73.08318,22.72402],[73.0855,22.72355],[73.08577,22.72511],[73.09968,22.72764],[73.10059,22.72475],[73.09696,22.72303],[73.09748,22.7178],[73.10449,22.71964],[73.11275,22.71845],[73.12483,22.72209],[73.13646,22.71741],[73.14195,22.71155],[73.14363,22.70481],[73.14551,22.70478],[73.14565,22.69733],[73.14739,22.6971],[73.15118,22.68833],[73.15617,22.68506],[73.15792,22.68141],[73.18276,22.68711],[73.2023,22.6833],[73.20372,22.67783],[73.20117,22.67641],[73.2014,22.66896],[73.2003,22.66861],[73.19982,22.67143],[73.19451,22.67049],[73.19631,22.66612],[73.20023,22.66603],[73.20775,22.6515],[73.21297,22.65145],[73.21247,22.64409],[73.21876,22.63683],[73.21679,22.63394],[73.21834,22.63265],[73.21971,22.62603],[73.23928,22.64591],[73.26026,22.65682],[73.26924,22.66648],[73.26932,22.6734],[73.26487,22.68751],[73.26502,22.69145],[73.25505,22.70571],[73.25186,22.71941],[73.25182,22.73464],[73.25468,22.74307],[73.25983,22.75],[73.25833,22.75053],[73.255,22.76031],[73.25719,22.76658],[73.26298,22.77538],[73.27552,22.78208],[73.28841,22.78364],[73.29134,22.78209],[73.30209,22.78203],[73.30808,22.78363],[73.31558,22.78159],[73.32445,22.786],[73.35115,22.79259],[73.36329,22.79888],[73.36177,22.80712],[73.36324,22.81319],[73.3665,22.8187],[73.37171,22.82262],[73.37336,22.82871],[73.3731,22.83651],[73.38191,22.84814],[73.38559,22.8595],[73.38255,22.87045],[73.36803,22.88683],[73.36677,22.89345],[73.36761,22.89771],[73.3706,22.90357],[73.38308,22.91543],[73.41935,22.94036],[73.41469,22.94504],[73.41067,22.95508],[73.40492,22.95184],[73.40433,22.95512],[73.39344,22.95143],[73.38548,22.9577],[73.38203,22.95023],[73.37183,22.93965],[73.36364,22.93752],[73.35915,22.93138],[73.3501,22.92413],[73.34788,22.92618],[73.33629,22.9257],[73.3301,22.92768],[73.33023,22.93071],[73.32581,22.93483],[73.32164,22.93619],[73.32093,22.93804],[73.31344,22.93973],[73.31251,22.94225],[73.30432,22.93684],[73.30274,22.93236],[73.28898,22.93593],[73.28792,22.93452],[73.27798,22.93462],[73.27329,22.92991],[73.26526,22.92847],[73.26443,22.92624],[73.26377,22.9277],[73.26174,22.92616],[73.25912,22.92851],[73.25781,22.93098],[73.25999,22.94053],[73.25941,22.94766],[73.25729,22.9543],[73.25098,22.96405],[73.25351,22.96849],[73.27157,22.97416],[73.27583,22.97776],[73.27168,22.9811],[73.27023,22.98861],[73.26772,22.99101],[73.26476,23.00051],[73.25303,23.00671],[73.24215,23.01788],[73.24618,23.02678],[73.24608,23.03471],[73.24459,23.03774],[73.25501,23.04032],[73.25769,23.03941],[73.25763,23.04101],[73.27564,23.04966],[73.2735,23.05807],[73.24096,23.07061],[73.23705,23.08643],[73.23196,23.08622],[73.229,23.08433],[73.23189,23.0889],[73.22684,23.10131],[73.22498,23.10132],[73.22514,23.10553],[73.21762,23.10539],[73.20907,23.1076],[73.20585,23.11008],[73.20122,23.12526],[73.20371,23.14388],[73.20248,23.14576],[73.20034,23.14621],[73.19964,23.14375],[73.19741,23.14567],[73.1954,23.14503],[73.19527,23.14644],[73.1921,23.14495],[73.19024,23.1503],[73.18867,23.15006],[73.18737,23.14841],[73.18832,23.14643],[73.18378,23.14644],[73.18096,23.14354],[73.18267,23.14135],[73.17671,23.13782],[73.17603,23.13919],[73.171,23.13454],[73.17011,23.13574],[73.17152,23.13922],[73.16751,23.14241],[73.16689,23.14549],[73.16098,23.14935],[73.15345,23.16529],[73.15102,23.16716],[73.15075,23.16963],[73.15281,23.17004],[73.15258,23.17129],[73.15806,23.17318],[73.15549,23.19294],[73.15289,23.19229],[73.14144,23.19948]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"451","area_level":"District","area_name":"Mahesana","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.77919,24.10209],[72.77365,24.10225],[72.76844,24.09772],[72.76881,24.09105],[72.76434,24.0892],[72.76467,24.08176],[72.75945,24.07729],[72.76192,24.07067],[72.75728,24.07212],[72.75381,24.07112],[72.75237,24.07824],[72.74939,24.079],[72.73467,24.07651],[72.73478,24.08672],[72.72997,24.09411],[72.72483,24.09681],[72.718,24.09706],[72.71304,24.09918],[72.70644,24.09134],[72.70468,24.08408],[72.69656,24.07903],[72.69074,24.07826],[72.68585,24.07308],[72.67328,24.07035],[72.67,24.07126],[72.66141,24.07523],[72.65224,24.08377],[72.65232,24.08096],[72.64485,24.07832],[72.64603,24.0765],[72.64404,24.07528],[72.63722,24.0761],[72.63871,24.07092],[72.63566,24.06441],[72.62916,24.06203],[72.62845,24.05888],[72.62002,24.05388],[72.62526,24.0461],[72.63067,24.04778],[72.63081,24.04587],[72.63314,24.04622],[72.63381,24.0439],[72.63682,24.04227],[72.63989,24.02389],[72.64845,24.0269],[72.64814,24.00841],[72.65091,24.00041],[72.65072,23.99398],[72.64615,23.98945],[72.63788,23.99364],[72.62906,23.99373],[72.62137,23.9904],[72.62107,23.9877],[72.6187,23.98561],[72.61733,23.98689],[72.61524,23.98527],[72.60179,23.98466],[72.59968,23.98364],[72.60012,23.97994],[72.59091,23.97738],[72.591,23.97533],[72.58921,23.97543],[72.58733,23.97221],[72.58987,23.96585],[72.58829,23.96308],[72.58572,23.96235],[72.58712,23.95787],[72.58628,23.9544],[72.58922,23.95482],[72.59057,23.95243],[72.58506,23.94319],[72.5866,23.9384],[72.58415,23.93829],[72.58435,23.93602],[72.57418,23.9364],[72.56592,23.93353],[72.56248,23.9349],[72.56026,23.93841],[72.55833,23.93752],[72.55719,23.93925],[72.55305,23.93776],[72.55235,23.93946],[72.54858,23.93815],[72.54548,23.9404],[72.53465,23.93508],[72.52889,23.94257],[72.52507,23.94291],[72.52473,23.9441],[72.51798,23.94082],[72.51069,23.9346],[72.50233,23.93345],[72.49942,23.93465],[72.48733,23.93196],[72.48668,23.93415],[72.48121,23.93409],[72.48067,23.93195],[72.48249,23.93278],[72.47763,23.92615],[72.47825,23.91718],[72.47545,23.91335],[72.47681,23.91116],[72.47412,23.90601],[72.47548,23.90358],[72.47148,23.89936],[72.47306,23.89391],[72.46838,23.89096],[72.46266,23.89048],[72.46105,23.89436],[72.4558,23.89578],[72.45234,23.90649],[72.44485,23.90685],[72.4417,23.89874],[72.43543,23.8992],[72.43241,23.90569],[72.42961,23.90533],[72.43053,23.89621],[72.42935,23.89558],[72.4227,23.90016],[72.42052,23.89375],[72.4165,23.89434],[72.41488,23.88674],[72.40769,23.88556],[72.40496,23.87808],[72.40255,23.87677],[72.4029,23.87252],[72.3994,23.87049],[72.39752,23.86993],[72.39637,23.87363],[72.39255,23.87515],[72.39082,23.87439],[72.39041,23.87119],[72.38592,23.87233],[72.38338,23.871],[72.38237,23.8671],[72.37643,23.86658],[72.37154,23.86885],[72.36987,23.8755],[72.3658,23.87979],[72.35991,23.88013],[72.3566,23.88339],[72.34629,23.87791],[72.33708,23.87796],[72.32924,23.8811],[72.32485,23.87701],[72.32317,23.87104],[72.32321,23.86913],[72.32431,23.87011],[72.32601,23.86878],[72.32449,23.85519],[72.32615,23.85126],[72.32335,23.85049],[72.32316,23.852],[72.32107,23.85236],[72.31665,23.84966],[72.3061,23.85221],[72.29663,23.85206],[72.29288,23.84902],[72.29283,23.84619],[72.29667,23.84089],[72.3021,23.84214],[72.30354,23.83427],[72.30827,23.82729],[72.30716,23.82263],[72.31421,23.82429],[72.31682,23.81792],[72.31587,23.81445],[72.31806,23.81182],[72.30949,23.80818],[72.30792,23.80985],[72.30684,23.80904],[72.30885,23.80698],[72.30725,23.80358],[72.30122,23.80291],[72.30033,23.79795],[72.30279,23.79312],[72.29893,23.78872],[72.2993,23.784],[72.29427,23.78232],[72.29493,23.78003],[72.29796,23.77917],[72.29977,23.77512],[72.30429,23.77527],[72.30311,23.77388],[72.30461,23.77302],[72.31157,23.77561],[72.31262,23.76891],[72.32121,23.76721],[72.32104,23.7614],[72.31907,23.76021],[72.31967,23.75761],[72.31667,23.75693],[72.31748,23.75512],[72.30566,23.75082],[72.30312,23.74428],[72.28979,23.7414],[72.29087,23.73463],[72.28571,23.73054],[72.28426,23.72352],[72.2881,23.71467],[72.28338,23.71138],[72.29139,23.70981],[72.28749,23.69395],[72.28483,23.68909],[72.28604,23.68355],[72.29128,23.68172],[72.29678,23.68578],[72.30413,23.68725],[72.30565,23.67793],[72.30918,23.67735],[72.31058,23.67454],[72.30448,23.67046],[72.30474,23.66855],[72.30738,23.67034],[72.30848,23.66588],[72.30758,23.66153],[72.304,23.65827],[72.30512,23.63891],[72.30286,23.63787],[72.30301,23.63564],[72.29895,23.63484],[72.29932,23.63293],[72.29689,23.63211],[72.29444,23.62198],[72.29016,23.62036],[72.29106,23.61936],[72.28477,23.61774],[72.28202,23.62323],[72.27338,23.62398],[72.27231,23.62752],[72.26536,23.62973],[72.26609,23.6328],[72.2597,23.63263],[72.25847,23.63682],[72.26133,23.63931],[72.25747,23.64543],[72.2552,23.64604],[72.24953,23.64358],[72.24518,23.62614],[72.23082,23.62119],[72.22817,23.61759],[72.22462,23.6181],[72.22435,23.62364],[72.22202,23.62414],[72.22096,23.6263],[72.21116,23.62462],[72.20643,23.63373],[72.19454,23.6328],[72.19496,23.64006],[72.18397,23.64015],[72.17968,23.63778],[72.18003,23.63554],[72.17692,23.63544],[72.17797,23.63287],[72.17544,23.63189],[72.17564,23.62998],[72.18082,23.628],[72.18449,23.62389],[72.18218,23.61963],[72.1792,23.61823],[72.18069,23.61199],[72.17782,23.60992],[72.15782,23.60222],[72.15282,23.60636],[72.14657,23.60605],[72.14511,23.60799],[72.14294,23.60554],[72.13929,23.60478],[72.13855,23.59859],[72.13495,23.59763],[72.12911,23.59902],[72.12545,23.60225],[72.12378,23.60608],[72.1266,23.60675],[72.1253,23.61846],[72.12438,23.62184],[72.1209,23.62152],[72.10902,23.61619],[72.11162,23.61447],[72.11357,23.60259],[72.10852,23.60003],[72.1038,23.59425],[72.1082,23.59232],[72.10773,23.59058],[72.10617,23.59057],[72.10639,23.58875],[72.10766,23.58883],[72.10681,23.58388],[72.10896,23.57484],[72.10758,23.57057],[72.10289,23.56867],[72.09654,23.5701],[72.08632,23.56926],[72.07868,23.56531],[72.07736,23.56699],[72.06906,23.5656],[72.06394,23.56815],[72.06128,23.5656],[72.0592,23.56808],[72.05984,23.57251],[72.0632,23.57301],[72.0643,23.58042],[72.06906,23.58168],[72.07027,23.59006],[72.05763,23.59741],[72.0598,23.60194],[72.05528,23.60428],[72.05519,23.60581],[72.05713,23.60615],[72.0554,23.60723],[72.06179,23.61331],[72.04803,23.61992],[72.04308,23.61891],[72.04175,23.6159],[72.03909,23.61528],[72.0304,23.61645],[72.02453,23.62293],[72.01292,23.62931],[72.00718,23.62303],[72.00253,23.62039],[71.98875,23.6179],[71.98843,23.61927],[71.98093,23.6185],[71.98041,23.60993],[71.98226,23.60086],[71.96935,23.59902],[71.95963,23.59332],[71.95703,23.58726],[71.94039,23.58364],[71.94047,23.58114],[71.95245,23.57919],[71.95279,23.57715],[71.9575,23.57706],[71.95719,23.56543],[71.95928,23.55005],[71.96371,23.54517],[71.96574,23.53904],[71.96521,23.53411],[71.96862,23.53213],[71.96911,23.52562],[71.97941,23.51974],[71.98058,23.50226],[72.00182,23.49854],[72.01207,23.50167],[72.01554,23.50326],[72.01556,23.50458],[72.02515,23.50609],[72.02738,23.50839],[72.03445,23.50819],[72.03544,23.5013],[72.03294,23.49624],[72.032,23.48827],[72.02908,23.48072],[72.02577,23.47803],[72.02646,23.47556],[72.03328,23.47048],[72.03394,23.45723],[72.04288,23.45829],[72.04838,23.45156],[72.05193,23.44334],[72.06432,23.44737],[72.086,23.45726],[72.08774,23.45942],[72.09917,23.45977],[72.10224,23.45753],[72.10496,23.45199],[72.10906,23.44976],[72.12756,23.45389],[72.12985,23.45158],[72.14001,23.4491],[72.14247,23.45224],[72.14833,23.44991],[72.15304,23.45135],[72.1548,23.44806],[72.16497,23.44446],[72.17176,23.44422],[72.17312,23.43552],[72.17176,23.42752],[72.17471,23.42672],[72.17634,23.42281],[72.17982,23.42034],[72.19101,23.41657],[72.19169,23.42239],[72.20443,23.42136],[72.20577,23.42291],[72.21174,23.424],[72.20988,23.43055],[72.21139,23.43872],[72.22528,23.43783],[72.22779,23.43135],[72.22959,23.43112],[72.22917,23.42965],[72.23291,23.42877],[72.23943,23.43058],[72.23842,23.44016],[72.2428,23.43887],[72.24335,23.4451],[72.24732,23.44556],[72.24765,23.44002],[72.24966,23.44057],[72.24964,23.43801],[72.25331,23.43583],[72.2523,23.4337],[72.2564,23.4313],[72.25621,23.4298],[72.25731,23.43047],[72.25886,23.4253],[72.26146,23.4245],[72.25734,23.42103],[72.2566,23.41333],[72.26015,23.41032],[72.27312,23.40692],[72.28928,23.39877],[72.28848,23.39317],[72.28372,23.39238],[72.27355,23.38624],[72.27488,23.37971],[72.26509,23.37757],[72.26418,23.37526],[72.26025,23.37456],[72.26459,23.36489],[72.26703,23.35282],[72.26405,23.34922],[72.26109,23.34866],[72.25858,23.34362],[72.25406,23.34381],[72.25286,23.33945],[72.24828,23.33735],[72.24808,23.33529],[72.25094,23.33294],[72.24593,23.33124],[72.24531,23.32846],[72.23739,23.32603],[72.23093,23.32564],[72.23013,23.32923],[72.22451,23.3231],[72.22136,23.31286],[72.21742,23.31562],[72.20875,23.31376],[72.20808,23.30584],[72.20033,23.29389],[72.20047,23.27948],[72.18301,23.28225],[72.17492,23.27285],[72.17498,23.25946],[72.18515,23.24692],[72.18029,23.2414],[72.18481,23.22456],[72.18496,23.21409],[72.17573,23.20839],[72.17089,23.19854],[72.1677,23.19769],[72.17034,23.18449],[72.17316,23.1784],[72.18251,23.17146],[72.18344,23.16924],[72.18623,23.1616],[72.18395,23.15227],[72.18788,23.14415],[72.16186,23.14027],[72.16181,23.1378],[72.16405,23.13733],[72.16396,23.13113],[72.16365,23.12756],[72.1619,23.12738],[72.16119,23.11618],[72.15561,23.11547],[72.15639,23.11328],[72.15442,23.11296],[72.15557,23.11091],[72.1603,23.10913],[72.15951,23.10572],[72.1912,23.10689],[72.19499,23.11449],[72.19445,23.11874],[72.2161,23.12196],[72.21998,23.12494],[72.23788,23.12047],[72.24293,23.11475],[72.24188,23.11254],[72.24589,23.11169],[72.25173,23.10765],[72.25765,23.10676],[72.26125,23.10163],[72.25654,23.08739],[72.27907,23.08457],[72.28274,23.08015],[72.28299,23.06476],[72.28037,23.05945],[72.28836,23.05203],[72.29011,23.0434],[72.29536,23.0388],[72.30295,23.04568],[72.3164,23.05369],[72.32299,23.05577],[72.32287,23.06804],[72.31071,23.08113],[72.30526,23.08487],[72.30583,23.09662],[72.31037,23.10235],[72.31886,23.10696],[72.33155,23.10835],[72.33651,23.10707],[72.33811,23.11781],[72.34172,23.12598],[72.34331,23.12509],[72.34407,23.1264],[72.34731,23.12395],[72.35073,23.12544],[72.35161,23.12395],[72.35629,23.12447],[72.3621,23.11296],[72.36903,23.10787],[72.36864,23.10445],[72.36938,23.10227],[72.37083,23.10226],[72.36745,23.09732],[72.37072,23.09599],[72.37756,23.10758],[72.38221,23.1108],[72.38589,23.11135],[72.38496,23.11529],[72.38678,23.11837],[72.39008,23.1192],[72.39105,23.12223],[72.39754,23.1225],[72.40279,23.12549],[72.40103,23.13378],[72.41745,23.13069],[72.42738,23.14362],[72.429,23.15099],[72.42562,23.15368],[72.42099,23.15303],[72.41794,23.15538],[72.41854,23.15117],[72.4164,23.14997],[72.39741,23.14793],[72.39392,23.15157],[72.38687,23.15395],[72.38475,23.1593],[72.38388,23.17096],[72.38687,23.17441],[72.39736,23.17991],[72.3989,23.18369],[72.40396,23.18838],[72.40976,23.18804],[72.41324,23.18603],[72.4153,23.18686],[72.41653,23.18909],[72.41468,23.19913],[72.41549,23.20341],[72.41662,23.20508],[72.42041,23.20567],[72.42276,23.20925],[72.43716,23.19975],[72.43902,23.19537],[72.44788,23.19542],[72.44891,23.20063],[72.44292,23.20174],[72.43975,23.20431],[72.44019,23.2101],[72.43782,23.21388],[72.43937,23.21621],[72.43258,23.22276],[72.43034,23.23311],[72.43126,23.23936],[72.42804,23.24075],[72.42628,23.24384],[72.42639,23.2489],[72.44648,23.24462],[72.44606,23.25537],[72.43842,23.26208],[72.4354,23.26119],[72.4331,23.26384],[72.42567,23.26254],[72.42704,23.25762],[72.42309,23.25762],[72.42338,23.2621],[72.42089,23.26378],[72.42008,23.26868],[72.41348,23.27659],[72.41211,23.28079],[72.41572,23.28334],[72.41589,23.28669],[72.41906,23.28957],[72.42275,23.30034],[72.42706,23.30624],[72.43712,23.31076],[72.44015,23.30778],[72.44818,23.30443],[72.45131,23.30021],[72.45086,23.29799],[72.46323,23.2975],[72.46532,23.30048],[72.47504,23.30253],[72.47634,23.30672],[72.47137,23.30744],[72.46549,23.31229],[72.46093,23.31166],[72.45914,23.31357],[72.4704,23.31446],[72.48038,23.31302],[72.48452,23.31891],[72.48024,23.33234],[72.4718,23.34455],[72.47719,23.34605],[72.48512,23.34062],[72.48874,23.34062],[72.50076,23.3464],[72.50611,23.34616],[72.50816,23.34911],[72.51139,23.3502],[72.52133,23.35056],[72.51982,23.35446],[72.52151,23.35437],[72.52477,23.36327],[72.51972,23.36967],[72.51794,23.36868],[72.51026,23.37341],[72.50599,23.37804],[72.5059,23.38124],[72.50392,23.38146],[72.50411,23.38452],[72.50733,23.38671],[72.51147,23.396],[72.52734,23.40463],[72.52774,23.40721],[72.52409,23.41687],[72.52633,23.42502],[72.5309,23.42356],[72.54082,23.42938],[72.54083,23.43085],[72.53632,23.43148],[72.53704,23.4372],[72.53629,23.44026],[72.53391,23.44015],[72.53392,23.44199],[72.54002,23.44237],[72.54366,23.44659],[72.54555,23.45376],[72.55499,23.45678],[72.56795,23.45545],[72.56781,23.45854],[72.57507,23.46474],[72.57718,23.47605],[72.57651,23.48809],[72.58055,23.5],[72.58071,23.51202],[72.58424,23.52186],[72.60218,23.51923],[72.60515,23.51067],[72.61369,23.50962],[72.62043,23.51253],[72.62016,23.52943],[72.62207,23.53475],[72.62112,23.53928],[72.62692,23.54392],[72.62394,23.54852],[72.62346,23.55482],[72.62823,23.5597],[72.6469,23.56758],[72.65531,23.56655],[72.6545,23.55102],[72.65918,23.5515],[72.66076,23.55027],[72.66298,23.55667],[72.67926,23.55501],[72.67981,23.54913],[72.67718,23.54503],[72.67576,23.53052],[72.68572,23.5317],[72.68649,23.52778],[72.69184,23.52272],[72.6979,23.52314],[72.69894,23.52746],[72.70414,23.5293],[72.72416,23.52602],[72.72494,23.52116],[72.73036,23.52044],[72.7301,23.51166],[72.72496,23.50223],[72.7203,23.49845],[72.71911,23.50033],[72.71704,23.4989],[72.71855,23.49884],[72.71833,23.4963],[72.7226,23.49597],[72.72857,23.50625],[72.73143,23.50698],[72.73403,23.50277],[72.74001,23.50302],[72.74159,23.5061],[72.76247,23.50262],[72.76477,23.51102],[72.77171,23.51759],[72.78575,23.50303],[72.79785,23.50288],[72.80281,23.5075],[72.81827,23.50008],[72.82296,23.5],[72.82584,23.50177],[72.82505,23.50574],[72.82755,23.5098],[72.82746,23.51451],[72.82981,23.51763],[72.83384,23.51837],[72.83389,23.52057],[72.82714,23.51975],[72.82344,23.52294],[72.8289,23.528],[72.83248,23.53445],[72.8317,23.54424],[72.82557,23.55166],[72.80776,23.56551],[72.80607,23.57026],[72.80693,23.58097],[72.80956,23.58837],[72.81271,23.59117],[72.82798,23.59492],[72.84133,23.60345],[72.84039,23.61031],[72.84224,23.61333],[72.83497,23.61562],[72.83045,23.61967],[72.82487,23.6255],[72.81549,23.64037],[72.81786,23.64589],[72.83377,23.66335],[72.83423,23.67226],[72.8301,23.68857],[72.82007,23.69992],[72.81482,23.70917],[72.81072,23.72259],[72.80102,23.73407],[72.80076,23.74606],[72.79677,23.75175],[72.79485,23.75939],[72.7954,23.76399],[72.80429,23.78153],[72.80458,23.78517],[72.81443,23.79855],[72.81091,23.80578],[72.8049,23.8131],[72.80094,23.81527],[72.79608,23.81546],[72.78955,23.8219],[72.7887,23.83323],[72.79072,23.85124],[72.80245,23.86953],[72.80385,23.87578],[72.80481,23.91522],[72.80918,23.92023],[72.82737,23.92732],[72.83046,23.93153],[72.82999,23.93688],[72.8186,23.94848],[72.82766,23.96166],[72.84551,23.96789],[72.85159,23.97318],[72.85703,23.98994],[72.85594,24.00043],[72.85199,24.01057],[72.85886,24.02095],[72.86665,24.02473],[72.86037,24.02961],[72.85627,24.04553],[72.83908,24.03985],[72.83473,24.04345],[72.82854,24.04297],[72.81952,24.04844],[72.8153,24.05726],[72.81318,24.05635],[72.80886,24.05867],[72.80504,24.06492],[72.80663,24.06654],[72.80598,24.06819],[72.80213,24.07096],[72.80262,24.07342],[72.79947,24.07585],[72.79722,24.07467],[72.79685,24.07648],[72.79221,24.07956],[72.79364,24.08065],[72.79361,24.08559],[72.78992,24.08782],[72.79038,24.09012],[72.78526,24.10025],[72.77919,24.10209]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"452","area_level":"District","area_name":"Narmada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.61471,22.07246],[73.61457,22.07907],[73.6091,22.08209],[73.60938,22.07847],[73.60347,22.0716],[73.60136,22.0707],[73.59771,22.07207],[73.5894,22.06586],[73.58233,22.0649],[73.57507,22.05307],[73.57233,22.05252],[73.56807,22.05921],[73.56331,22.06148],[73.56194,22.06022],[73.56317,22.05455],[73.55715,22.05341],[73.54486,22.04756],[73.53401,22.04863],[73.52161,22.05651],[73.52228,22.05217],[73.51858,22.04853],[73.51432,22.03794],[73.50896,22.03725],[73.49987,22.03965],[73.50317,22.03543],[73.50018,22.03295],[73.50188,22.02821],[73.50332,22.02826],[73.50238,22.02261],[73.50063,22.01725],[73.49495,22.0174],[73.49912,22.01392],[73.50031,22.00913],[73.51111,22.00364],[73.51124,21.99347],[73.51369,21.99307],[73.5142,21.99018],[73.51181,21.98755],[73.51416,21.9854],[73.51285,21.98096],[73.50473,21.97724],[73.50755,21.96971],[73.5044,21.96643],[73.50383,21.96289],[73.46181,21.9799],[73.45865,21.975],[73.45382,21.97628],[73.44895,21.97544],[73.44488,21.97268],[73.43988,21.96401],[73.44288,21.94162],[73.43866,21.92667],[73.42354,21.91376],[73.41365,21.90983],[73.40288,21.91061],[73.3834,21.92186],[73.37632,21.92945],[73.36641,21.93093],[73.35957,21.93018],[73.34895,21.92319],[73.34452,21.91448],[73.34388,21.90379],[73.34678,21.88438],[73.34425,21.87729],[73.33538,21.87429],[73.32777,21.87493],[73.31437,21.88058],[73.30383,21.88751],[73.29974,21.87897],[73.30166,21.86176],[73.30417,21.86204],[73.30381,21.85814],[73.30591,21.85917],[73.30852,21.85141],[73.30243,21.85013],[73.30299,21.84147],[73.30099,21.83701],[73.29694,21.83626],[73.2971,21.83373],[73.30167,21.83285],[73.29942,21.83078],[73.29935,21.82749],[73.30216,21.82504],[73.30407,21.82565],[73.30579,21.82237],[73.30857,21.82229],[73.31633,21.82682],[73.31491,21.83014],[73.31924,21.82964],[73.31953,21.83131],[73.32139,21.83053],[73.3208,21.83142],[73.32418,21.83392],[73.32918,21.83471],[73.33486,21.83138],[73.33684,21.81749],[73.33236,21.81602],[73.33599,21.81035],[73.34759,21.81438],[73.3515,21.81058],[73.35588,21.81034],[73.35587,21.80825],[73.35901,21.80756],[73.35787,21.80541],[73.35989,21.80609],[73.36016,21.80248],[73.36443,21.80192],[73.36694,21.79927],[73.37102,21.79202],[73.37136,21.78822],[73.37396,21.78694],[73.37418,21.78041],[73.3826,21.78127],[73.38691,21.77764],[73.39269,21.77745],[73.39542,21.77581],[73.39629,21.76825],[73.39432,21.76027],[73.39713,21.75856],[73.40078,21.75885],[73.40972,21.74972],[73.40781,21.74833],[73.40692,21.7445],[73.40663,21.73989],[73.40822,21.73744],[73.40444,21.73502],[73.404,21.72989],[73.39486,21.72483],[73.39326,21.72206],[73.39512,21.72073],[73.39548,21.71708],[73.40296,21.71807],[73.40698,21.70928],[73.43156,21.71791],[73.4315,21.71478],[73.43968,21.70943],[73.44722,21.71174],[73.44947,21.71378],[73.44893,21.71669],[73.45322,21.71925],[73.46207,21.71838],[73.46912,21.7209],[73.47176,21.71336],[73.47497,21.7114],[73.47806,21.70402],[73.48768,21.70399],[73.48759,21.69354],[73.49985,21.68123],[73.49603,21.67838],[73.48703,21.67779],[73.47779,21.667],[73.47428,21.66016],[73.47387,21.65441],[73.47698,21.64736],[73.48436,21.64188],[73.48576,21.6389],[73.48476,21.63603],[73.47839,21.63187],[73.48034,21.6271],[73.48224,21.61089],[73.47437,21.61131],[73.47076,21.60901],[73.47412,21.59802],[73.47349,21.59381],[73.47035,21.59386],[73.46616,21.58889],[73.46495,21.58445],[73.45726,21.57756],[73.45023,21.57537],[73.44977,21.57129],[73.44639,21.5694],[73.44709,21.56475],[73.4419,21.55836],[73.4399,21.54871],[73.44162,21.54775],[73.44056,21.54555],[73.44289,21.54236],[73.44177,21.53814],[73.45842,21.52242],[73.46535,21.51992],[73.46834,21.50829],[73.48802,21.51538],[73.48926,21.51386],[73.48488,21.50459],[73.48608,21.49447],[73.48953,21.49062],[73.49361,21.49087],[73.49445,21.48565],[73.51073,21.48745],[73.51566,21.48322],[73.52392,21.4833],[73.52788,21.47943],[73.53656,21.4785],[73.5481,21.4803],[73.54996,21.4771],[73.55505,21.47453],[73.56472,21.47483],[73.58043,21.48083],[73.59725,21.48476],[73.6009,21.48445],[73.6061,21.47688],[73.60693,21.47251],[73.60952,21.47374],[73.62866,21.47288],[73.63524,21.47745],[73.64265,21.47723],[73.64948,21.48057],[73.65574,21.47905],[73.66663,21.47245],[73.66977,21.47192],[73.67371,21.47405],[73.67634,21.47276],[73.68978,21.44648],[73.68842,21.43813],[73.6953,21.42846],[73.69396,21.42107],[73.69127,21.41672],[73.69251,21.402],[73.69904,21.39637],[73.70965,21.39968],[73.70985,21.40385],[73.71603,21.40618],[73.74308,21.41099],[73.76284,21.40966],[73.7768,21.41113],[73.78205,21.41319],[73.79404,21.4107],[73.80253,21.4116],[73.81861,21.40124],[73.83403,21.4123],[73.8347,21.42023],[73.83762,21.42386],[73.88182,21.45086],[73.89191,21.45331],[73.90863,21.44895],[73.91747,21.44927],[73.9263,21.45078],[73.94511,21.46049],[73.9639,21.45922],[73.97139,21.46166],[73.98374,21.47367],[73.98921,21.48136],[73.98583,21.48242],[73.9821,21.48128],[73.98167,21.48421],[73.97823,21.48315],[73.97369,21.48562],[73.97272,21.48972],[73.97825,21.48995],[73.97686,21.49514],[73.98055,21.49538],[73.98068,21.49704],[73.97899,21.49674],[73.9784,21.50178],[73.97465,21.5096],[73.97842,21.51147],[73.97672,21.51555],[73.98098,21.51637],[73.98256,21.52219],[73.97743,21.52168],[73.97626,21.52316],[73.97132,21.52351],[73.9663,21.52207],[73.96281,21.52769],[73.96035,21.54164],[73.95445,21.54065],[73.95595,21.5253],[73.95421,21.5241],[73.95521,21.52035],[73.95212,21.51909],[73.95175,21.51269],[73.94657,21.51434],[73.94593,21.51679],[73.93206,21.51226],[73.92926,21.5237],[73.92739,21.5251],[73.92159,21.52508],[73.92175,21.52116],[73.91682,21.51959],[73.91198,21.52273],[73.90423,21.52451],[73.90532,21.51576],[73.87983,21.5052],[73.87847,21.5049],[73.87706,21.51216],[73.87201,21.51073],[73.86857,21.51085],[73.8686,21.51274],[73.8643,21.51257],[73.86632,21.50703],[73.87264,21.5064],[73.87183,21.5048],[73.86912,21.50108],[73.86436,21.50094],[73.86383,21.49817],[73.86001,21.49976],[73.85356,21.49747],[73.84606,21.5094],[73.83843,21.51556],[73.8349,21.52058],[73.83296,21.53706],[73.82914,21.54559],[73.82723,21.54585],[73.8278,21.55444],[73.8253,21.55513],[73.82228,21.56179],[73.82334,21.56439],[73.81712,21.58113],[73.81748,21.58802],[73.81542,21.58888],[73.81413,21.60109],[73.81209,21.6029],[73.79829,21.60457],[73.78996,21.61229],[73.78772,21.6165],[73.78137,21.61859],[73.78268,21.62208],[73.78051,21.62859],[73.78502,21.62901],[73.78805,21.6341],[73.80158,21.63714],[73.80471,21.63952],[73.81232,21.64008],[73.81426,21.64417],[73.81759,21.64197],[73.82173,21.64342],[73.8248,21.63978],[73.83038,21.64237],[73.8321,21.63835],[73.83603,21.63918],[73.83466,21.63435],[73.83859,21.63308],[73.84594,21.63974],[73.84977,21.63913],[73.85167,21.64648],[73.86004,21.64233],[73.86715,21.64604],[73.87419,21.64756],[73.88378,21.65334],[73.88801,21.65325],[73.88863,21.66077],[73.89459,21.67598],[73.89161,21.68106],[73.89246,21.68493],[73.8903,21.69797],[73.88389,21.70523],[73.88632,21.70667],[73.88061,21.71559],[73.86761,21.71834],[73.85836,21.7265],[73.85327,21.73538],[73.84681,21.73728],[73.83751,21.74553],[73.83366,21.75492],[73.82755,21.75672],[73.82467,21.75993],[73.82374,21.7626],[73.82494,21.76523],[73.83361,21.77165],[73.8347,21.77405],[73.83414,21.7762],[73.82957,21.77755],[73.82945,21.78594],[73.8371,21.78733],[73.83816,21.78875],[73.83449,21.7921],[73.82734,21.79248],[73.82696,21.79793],[73.83295,21.80095],[73.82807,21.80407],[73.82743,21.80991],[73.82239,21.8113],[73.80784,21.80981],[73.8043,21.8197],[73.79595,21.82473],[73.80732,21.83633],[73.81386,21.83979],[73.84232,21.844],[73.86976,21.84107],[73.8758,21.84367],[73.888,21.85521],[73.90058,21.85795],[73.91215,21.85796],[73.92815,21.86421],[73.94051,21.87091],[73.93769,21.87353],[73.93141,21.8888],[73.9108,21.89831],[73.90766,21.90315],[73.90848,21.90683],[73.88931,21.92619],[73.88709,21.92497],[73.87507,21.92502],[73.87176,21.92306],[73.86815,21.92432],[73.86541,21.92943],[73.85986,21.93474],[73.86045,21.94357],[73.8559,21.94733],[73.85497,21.95262],[73.84709,21.95046],[73.84135,21.94613],[73.82295,21.94034],[73.82011,21.93587],[73.81217,21.93369],[73.80559,21.92964],[73.80051,21.92939],[73.80102,21.93816],[73.80819,21.94018],[73.80372,21.94153],[73.80349,21.94472],[73.80094,21.94489],[73.79921,21.9484],[73.79581,21.94321],[73.79558,21.93517],[73.79369,21.93251],[73.79003,21.93118],[73.78815,21.93512],[73.78631,21.93481],[73.78324,21.93823],[73.77873,21.93996],[73.77746,21.95271],[73.7795,21.95364],[73.7793,21.95826],[73.78104,21.95992],[73.77355,21.96148],[73.77074,21.96768],[73.7579,21.96293],[73.74824,21.96254],[73.74517,21.96457],[73.73677,21.9775],[73.7341,21.97934],[73.7312,21.97854],[73.72892,21.98153],[73.71535,21.98162],[73.71469,21.97944],[73.71064,21.97983],[73.70459,21.97685],[73.7027,21.99265],[73.70713,21.99417],[73.7062,21.99682],[73.70866,22.00083],[73.70882,22.00897],[73.70669,22.00998],[73.70085,22.00591],[73.70181,22.00175],[73.69846,21.99902],[73.69879,21.99342],[73.69324,21.9929],[73.69608,21.98829],[73.68883,21.98726],[73.68969,21.98883],[73.68752,21.9894],[73.689,21.99202],[73.68683,21.99596],[73.68921,21.99633],[73.68793,21.99908],[73.69109,22.00098],[73.69011,22.01143],[73.68692,22.01262],[73.68275,22.00969],[73.67973,22.00105],[73.67809,22.00956],[73.66997,22.01481],[73.67198,22.02683],[73.67446,22.02628],[73.67601,22.04313],[73.68359,22.04317],[73.68451,22.05122],[73.6822,22.05319],[73.67752,22.05381],[73.67359,22.04871],[73.66668,22.04678],[73.66565,22.04335],[73.66054,22.0431],[73.66191,22.04821],[73.66071,22.05112],[73.65886,22.05045],[73.65751,22.05444],[73.65934,22.05596],[73.65729,22.06201],[73.65209,22.0604],[73.64847,22.07205],[73.64497,22.07332],[73.63802,22.06768],[73.63035,22.06689],[73.63082,22.07953],[73.625,22.07276],[73.62036,22.07318],[73.61476,22.07028],[73.61471,22.07246]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"453","area_level":"District","area_name":"Navsari","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.80423,21.06407],[72.7929,21.07355],[72.78342,21.06541],[72.77515,21.06221],[72.76046,21.06176],[72.75001,21.06368],[72.74893,21.05722],[72.74062,21.05143],[72.73728,21.05075],[72.73311,21.05364],[72.72947,21.06092],[72.7267,21.06134],[72.72475,21.05837],[72.72599,21.0473],[72.72273,21.04323],[72.72216,21.03773],[72.7264,21.01474],[72.72767,21.01459],[72.73087,21.00253],[72.73254,21.00154],[72.73321,20.99228],[72.73899,20.98132],[72.74372,20.95895],[72.75465,20.93866],[72.76501,20.9351],[72.76976,20.93755],[72.77403,20.93679],[72.78757,20.94361],[72.79861,20.94424],[72.80908,20.94683],[72.82037,20.9523],[72.81377,20.94256],[72.81273,20.93711],[72.81436,20.93446],[72.81637,20.93419],[72.81998,20.9275],[72.80527,20.92633],[72.7921,20.91819],[72.7871,20.91955],[72.78449,20.92524],[72.78095,20.92472],[72.78017,20.92115],[72.7855,20.91148],[72.81798,20.83445],[72.82466,20.82419],[72.82741,20.8129],[72.8323,20.80728],[72.83924,20.80525],[72.83921,20.80055],[72.82866,20.79902],[72.82021,20.7938],[72.82273,20.79099],[72.82425,20.78354],[72.82921,20.77653],[72.8387,20.76828],[72.8377,20.76519],[72.84826,20.76194],[72.85111,20.75946],[72.85477,20.75],[72.86386,20.74108],[72.86808,20.73944],[72.87673,20.7401],[72.88029,20.73357],[72.9147,20.73312],[72.92879,20.73441],[72.93551,20.73304],[72.93672,20.73049],[72.94095,20.72813],[72.94144,20.72287],[72.95793,20.71909],[72.9638,20.7251],[72.96844,20.72728],[72.96674,20.73204],[72.96324,20.73536],[72.96292,20.74151],[72.96947,20.74257],[72.97199,20.74509],[72.98676,20.73695],[72.9902,20.73348],[72.99664,20.73507],[72.9969,20.73317],[72.99353,20.72908],[72.99389,20.72679],[72.99911,20.72763],[73.00098,20.72516],[73.00873,20.72975],[73.01671,20.7297],[73.01222,20.72707],[73.01387,20.72403],[73.01323,20.72155],[73.01833,20.7111],[73.02862,20.70707],[73.03308,20.7016],[73.03937,20.70068],[73.04359,20.70184],[73.04734,20.6991],[73.03932,20.68051],[73.03552,20.68152],[73.03128,20.68029],[73.02852,20.67666],[73.03012,20.67064],[73.03493,20.66904],[73.03286,20.66502],[73.03695,20.66592],[73.04093,20.66334],[73.04191,20.66453],[73.04342,20.66342],[73.05584,20.66412],[73.05855,20.66314],[73.06157,20.65888],[73.06447,20.65937],[73.07279,20.65276],[73.0729,20.64761],[73.06619,20.63336],[73.06561,20.62701],[73.0671,20.62255],[73.0714,20.62259],[73.06734,20.61188],[73.06924,20.60551],[73.07192,20.60548],[73.07281,20.59995],[73.0835,20.6019],[73.09558,20.59766],[73.10028,20.60007],[73.10344,20.59952],[73.10319,20.59811],[73.10928,20.59478],[73.11507,20.59418],[73.12148,20.60164],[73.12734,20.59952],[73.13034,20.60075],[73.14029,20.59914],[73.1468,20.60413],[73.15248,20.60559],[73.16556,20.59942],[73.17226,20.60266],[73.17813,20.59496],[73.18694,20.5918],[73.20374,20.59337],[73.21016,20.60238],[73.2189,20.60229],[73.22519,20.59592],[73.24182,20.59353],[73.24528,20.58802],[73.25498,20.5853],[73.25892,20.57978],[73.27327,20.58141],[73.28329,20.58967],[73.28657,20.59008],[73.28997,20.59296],[73.29421,20.58983],[73.30627,20.59134],[73.30997,20.5943],[73.31,20.5985],[73.31497,20.60193],[73.32232,20.59578],[73.32511,20.60079],[73.33002,20.59911],[73.33309,20.60302],[73.35253,20.60789],[73.35752,20.61226],[73.35942,20.61647],[73.36831,20.6132],[73.36963,20.61621],[73.37535,20.6157],[73.37871,20.6184],[73.38224,20.61425],[73.38517,20.61415],[73.39267,20.61724],[73.40075,20.6233],[73.40636,20.62323],[73.40704,20.62744],[73.40996,20.62998],[73.40423,20.6376],[73.39812,20.64073],[73.39411,20.64078],[73.39224,20.64929],[73.3957,20.65269],[73.40618,20.6549],[73.41245,20.66147],[73.41966,20.66068],[73.43214,20.66588],[73.43483,20.67184],[73.43204,20.67726],[73.4443,20.6811],[73.4482,20.69136],[73.44749,20.69555],[73.44341,20.69665],[73.44078,20.69984],[73.44494,20.7099],[73.44847,20.71325],[73.44918,20.71718],[73.45927,20.7166],[73.46694,20.72206],[73.46795,20.72988],[73.46571,20.73216],[73.46684,20.73575],[73.46528,20.7368],[73.46713,20.74546],[73.46965,20.74706],[73.47868,20.74575],[73.48017,20.74832],[73.48464,20.74962],[73.48993,20.75586],[73.4911,20.76148],[73.48907,20.76696],[73.48742,20.7851],[73.48201,20.79664],[73.48815,20.80078],[73.49436,20.80931],[73.49605,20.81921],[73.49148,20.81553],[73.48326,20.81498],[73.47918,20.81757],[73.47242,20.8189],[73.4646,20.81583],[73.46051,20.8171],[73.45729,20.81179],[73.45346,20.80897],[73.44232,20.80863],[73.43623,20.81273],[73.42848,20.81457],[73.4212,20.81858],[73.40366,20.82248],[73.39624,20.82738],[73.39218,20.82764],[73.38811,20.82245],[73.38165,20.82384],[73.37431,20.83126],[73.36721,20.83258],[73.36857,20.83853],[73.36581,20.84143],[73.35044,20.84863],[73.34971,20.85091],[73.3514,20.85631],[73.34972,20.85973],[73.34205,20.86275],[73.33277,20.85982],[73.3328,20.86712],[73.32316,20.86872],[73.31888,20.87788],[73.3121,20.88171],[73.30658,20.87833],[73.30549,20.87543],[73.30178,20.85092],[73.31186,20.84806],[73.31286,20.84149],[73.31098,20.83987],[73.3064,20.84149],[73.30627,20.83863],[73.30279,20.83705],[73.30536,20.83529],[73.30341,20.82841],[73.29946,20.82293],[73.30178,20.81801],[73.29189,20.81559],[73.28893,20.81876],[73.28386,20.81846],[73.28071,20.82062],[73.27846,20.81671],[73.27207,20.82086],[73.25396,20.81976],[73.25315,20.82354],[73.24931,20.82397],[73.24602,20.82715],[73.24397,20.83259],[73.24426,20.83894],[73.2473,20.8437],[73.24751,20.84855],[73.23932,20.85194],[73.23541,20.84934],[73.23409,20.85184],[73.22981,20.85299],[73.22686,20.85617],[73.22218,20.85527],[73.22278,20.85609],[73.21663,20.85875],[73.21479,20.85731],[73.21216,20.86151],[73.19561,20.85984],[73.19538,20.87039],[73.18929,20.86943],[73.18806,20.87793],[73.18421,20.88617],[73.18509,20.88897],[73.18272,20.89042],[73.17877,20.88977],[73.17773,20.89286],[73.17272,20.89674],[73.17143,20.89971],[73.16441,20.90315],[73.15574,20.90096],[73.14718,20.90534],[73.14288,20.90581],[73.13775,20.90459],[73.13682,20.89959],[73.13488,20.89771],[73.12572,20.89757],[73.1256,20.92271],[73.10984,20.9269],[73.1071,20.92966],[73.09874,20.93034],[73.09706,20.93418],[73.09228,20.93691],[73.09033,20.9409],[73.092,20.94307],[73.08935,20.94545],[73.09132,20.94687],[73.09195,20.95046],[73.08979,20.95111],[73.09216,20.9541],[73.08832,20.95651],[73.08941,20.9585],[73.0881,20.9585],[73.08994,20.95993],[73.08772,20.96159],[73.08912,20.96235],[73.08828,20.96718],[73.08465,20.96799],[73.08285,20.96607],[73.08059,20.96904],[73.08159,20.9726],[73.07991,20.97039],[73.07653,20.97132],[73.07405,20.97331],[73.07523,20.97402],[73.07386,20.97717],[73.07218,20.97397],[73.06911,20.97416],[73.06818,20.97605],[73.06516,20.97475],[73.06238,20.97817],[73.06349,20.98381],[73.05973,20.98552],[73.05686,20.985],[73.05632,20.98821],[73.04913,20.99284],[73.03881,21.0066],[73.03434,21.00443],[73.03083,21.00763],[73.0252,21.02043],[73.02169,21.02115],[73.01505,21.01882],[73.01154,21.02192],[73.00852,21.0223],[73.00708,21.03331],[73.01348,21.03623],[73.01266,21.04792],[73.01852,21.04971],[73.01853,21.05792],[73.01492,21.06507],[73.00735,21.06678],[73.00657,21.06994],[73.00445,21.06869],[72.99986,21.06965],[72.9943,21.07917],[72.99137,21.07846],[72.98993,21.07489],[72.99552,21.07249],[72.99789,21.06419],[72.99631,21.0601],[72.99411,21.05982],[72.98997,21.06265],[72.98326,21.06085],[72.98184,21.06402],[72.97732,21.06521],[72.96453,21.05811],[72.96395,21.05985],[72.96878,21.06423],[72.96969,21.0688],[72.9643,21.0739],[72.96203,21.07413],[72.96113,21.07215],[72.96255,21.06578],[72.95217,21.0695],[72.94828,21.06586],[72.94564,21.05915],[72.94098,21.05913],[72.93013,21.0514],[72.92636,21.05184],[72.92587,21.0464],[72.92896,21.04287],[72.91364,21.04013],[72.90593,21.04302],[72.89567,21.05155],[72.89199,21.06218],[72.89037,21.06087],[72.88803,21.04793],[72.88342,21.0499],[72.8812,21.05527],[72.87098,21.05615],[72.87112,21.04918],[72.86261,21.05279],[72.85672,21.0499],[72.85735,21.04287],[72.86083,21.03741],[72.85281,21.03754],[72.84702,21.04628],[72.84514,21.04697],[72.84191,21.04361],[72.83922,21.03537],[72.83579,21.03416],[72.83289,21.03696],[72.83416,21.05003],[72.83215,21.05467],[72.82657,21.05934],[72.81411,21.05566],[72.80423,21.06407]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"454","area_level":"District","area_name":"Panch Mahals","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.67336,23.1044],[73.67032,23.09846],[73.66413,23.09586],[73.65865,23.07789],[73.65506,23.07449],[73.65186,23.06492],[73.64197,23.05864],[73.64014,23.05336],[73.63532,23.04999],[73.63444,23.04574],[73.62875,23.03984],[73.62955,23.0304],[73.63179,23.02627],[73.63565,23.0257],[73.64105,23.02028],[73.65,23.01967],[73.65605,23.02168],[73.65642,23.02038],[73.65068,23.01674],[73.64322,23.01512],[73.6363,23.01746],[73.63584,23.01354],[73.63148,23.01167],[73.61939,23.02458],[73.61831,23.01725],[73.61299,23.01481],[73.60819,23.00646],[73.59418,22.9951],[73.59475,22.99217],[73.58742,22.99129],[73.5843,22.98721],[73.5621,22.98552],[73.54013,22.9911],[73.53531,22.99381],[73.53312,22.98794],[73.52839,22.98594],[73.52447,22.98619],[73.52414,22.98118],[73.52064,22.98219],[73.51764,22.986],[73.51462,22.98352],[73.50962,22.98343],[73.50834,22.98815],[73.50517,22.98935],[73.50272,22.98808],[73.50297,22.99484],[73.49521,22.99517],[73.48498,22.99429],[73.48123,22.98607],[73.47603,22.98285],[73.47827,22.98695],[73.473,22.98833],[73.47142,23.00072],[73.45578,23.00295],[73.45234,23.01445],[73.44789,23.01608],[73.44978,23.02261],[73.44555,23.02871],[73.44598,23.03042],[73.44415,23.03197],[73.43689,23.03269],[73.43478,23.02564],[73.43519,23.00367],[73.43744,22.99435],[73.44858,22.97722],[73.44873,22.96812],[73.42382,22.94303],[73.38357,22.91581],[73.37025,22.90306],[73.36692,22.89533],[73.36764,22.88788],[73.38255,22.87045],[73.38538,22.85703],[73.38191,22.84814],[73.3731,22.83651],[73.37336,22.82871],[73.37171,22.82262],[73.3665,22.8187],[73.36324,22.81319],[73.36177,22.80712],[73.36359,22.79924],[73.35022,22.79235],[73.35266,22.78966],[73.35532,22.78985],[73.35611,22.78728],[73.359,22.78734],[73.35999,22.78112],[73.36343,22.77733],[73.36205,22.77109],[73.38091,22.75802],[73.37904,22.76416],[73.38083,22.77141],[73.37835,22.78008],[73.379,22.79344],[73.37749,22.80136],[73.38356,22.79482],[73.38438,22.81157],[73.39874,22.80803],[73.40469,22.81455],[73.4064,22.809],[73.40403,22.79378],[73.41442,22.78661],[73.42277,22.78562],[73.42518,22.77929],[73.42467,22.77608],[73.42655,22.77218],[73.42487,22.76521],[73.42675,22.76246],[73.41043,22.75925],[73.38466,22.74206],[73.38627,22.74003],[73.38665,22.73259],[73.38293,22.71977],[73.386,22.70528],[73.38741,22.70436],[73.38693,22.70136],[73.38938,22.701],[73.38951,22.6922],[73.39118,22.68745],[73.40275,22.69036],[73.40701,22.6781],[73.41572,22.67562],[73.4146,22.67012],[73.41685,22.66121],[73.40711,22.65436],[73.40022,22.65669],[73.3971,22.64355],[73.38955,22.64353],[73.38383,22.65004],[73.36816,22.64773],[73.36888,22.64082],[73.36758,22.63883],[73.36565,22.63899],[73.36583,22.63192],[73.36251,22.62747],[73.3744,22.62534],[73.38412,22.62693],[73.38774,22.62172],[73.38716,22.61787],[73.38874,22.61674],[73.3884,22.61172],[73.38305,22.61168],[73.38138,22.59697],[73.37792,22.58567],[73.38277,22.5793],[73.372,22.55638],[73.38439,22.55568],[73.39168,22.55199],[73.41401,22.55371],[73.42124,22.54679],[73.41783,22.53364],[73.41128,22.52512],[73.41454,22.52162],[73.41478,22.51765],[73.41115,22.5166],[73.41203,22.51506],[73.41024,22.51468],[73.40523,22.50694],[73.40816,22.50458],[73.40994,22.5064],[73.41003,22.50536],[73.41474,22.50567],[73.41651,22.49735],[73.41954,22.49435],[73.42312,22.49385],[73.42407,22.48736],[73.42742,22.48575],[73.42739,22.47603],[73.43016,22.46185],[73.42914,22.45834],[73.42529,22.4569],[73.42699,22.44957],[73.42218,22.44913],[73.42049,22.44711],[73.42125,22.43049],[73.4199,22.42846],[73.42913,22.42635],[73.43292,22.42156],[73.43456,22.42312],[73.44559,22.42531],[73.44638,22.41417],[73.43792,22.40014],[73.44296,22.39896],[73.44401,22.3959],[73.44879,22.39658],[73.45801,22.38123],[73.4704,22.38311],[73.47243,22.38183],[73.47289,22.37939],[73.46821,22.37342],[73.46768,22.36772],[73.4643,22.36018],[73.47852,22.35526],[73.47821,22.3526],[73.48224,22.34955],[73.49116,22.3492],[73.49413,22.35087],[73.49929,22.34892],[73.50793,22.35005],[73.51073,22.35226],[73.5138,22.34918],[73.51294,22.34685],[73.5177,22.34301],[73.51772,22.34115],[73.52796,22.34596],[73.54178,22.34436],[73.54631,22.34595],[73.55168,22.34262],[73.55432,22.33649],[73.56621,22.33645],[73.56535,22.33095],[73.56283,22.32865],[73.61658,22.32436],[73.62925,22.33128],[73.62562,22.33788],[73.61235,22.33821],[73.61261,22.3475],[73.61544,22.34684],[73.61854,22.35272],[73.61641,22.36081],[73.62595,22.37267],[73.63355,22.37818],[73.62994,22.38606],[73.62983,22.38974],[73.63951,22.38613],[73.64803,22.38609],[73.67123,22.37575],[73.68237,22.3746],[73.68348,22.37218],[73.69138,22.36911],[73.69994,22.36087],[73.70515,22.35852],[73.70364,22.34872],[73.68924,22.34617],[73.69405,22.33925],[73.68947,22.33738],[73.67769,22.33953],[73.67385,22.33743],[73.66473,22.33856],[73.65525,22.33658],[73.65242,22.33231],[73.65065,22.3242],[73.64849,22.32325],[73.64426,22.3164],[73.64565,22.31511],[73.641,22.3145],[73.63943,22.31571],[73.6289,22.31283],[73.63445,22.30269],[73.64206,22.30154],[73.64372,22.29922],[73.64533,22.29988],[73.64814,22.29641],[73.65047,22.29607],[73.65352,22.28821],[73.69723,22.28652],[73.69892,22.29976],[73.70023,22.29919],[73.70149,22.30141],[73.70727,22.30173],[73.7087,22.30372],[73.71362,22.30319],[73.7167,22.29002],[73.72331,22.28881],[73.72605,22.29281],[73.73065,22.28792],[73.73181,22.29076],[73.72916,22.29029],[73.72728,22.29634],[73.72805,22.30015],[73.73157,22.30399],[73.72907,22.30863],[73.72636,22.30857],[73.72346,22.31616],[73.72686,22.31916],[73.72704,22.3266],[73.72956,22.33142],[73.72583,22.33746],[73.73318,22.33867],[73.73752,22.34354],[73.74745,22.3469],[73.74952,22.3439],[73.75266,22.34762],[73.7529,22.35488],[73.7564,22.35692],[73.75565,22.35935],[73.75743,22.36619],[73.76254,22.36827],[73.76466,22.37107],[73.76989,22.38351],[73.76953,22.38915],[73.74479,22.38666],[73.73508,22.38855],[73.73924,22.39524],[73.73408,22.40636],[73.73094,22.40961],[73.72963,22.41509],[73.73087,22.42098],[73.73766,22.42812],[73.74073,22.43865],[73.73467,22.4471],[73.7365,22.45492],[73.7326,22.45589],[73.72636,22.45406],[73.72288,22.46014],[73.72444,22.46212],[73.72529,22.47694],[73.73237,22.4919],[73.73227,22.50483],[73.73033,22.50616],[73.72877,22.51544],[73.73493,22.52473],[73.73879,22.53401],[73.74106,22.53666],[73.74827,22.5386],[73.74984,22.54217],[73.75555,22.54726],[73.76224,22.54723],[73.76409,22.54554],[73.77286,22.54831],[73.78417,22.54654],[73.7858,22.54844],[73.79408,22.54743],[73.8029,22.54883],[73.80529,22.55216],[73.80899,22.55314],[73.80825,22.55933],[73.81117,22.56753],[73.81916,22.56914],[73.8343,22.5687],[73.84542,22.57297],[73.84719,22.57255],[73.84672,22.57017],[73.85105,22.56612],[73.85844,22.56905],[73.86146,22.57229],[73.86463,22.57234],[73.86365,22.58102],[73.86063,22.58609],[73.8528,22.59219],[73.85061,22.60094],[73.84523,22.60777],[73.84327,22.60647],[73.84274,22.6103],[73.83256,22.60712],[73.82782,22.60858],[73.83011,22.6124],[73.8292,22.6137],[73.82407,22.61346],[73.82354,22.61129],[73.81463,22.61233],[73.80891,22.61075],[73.79719,22.61263],[73.80917,22.62679],[73.81284,22.63874],[73.82677,22.64092],[73.82708,22.64485],[73.82251,22.64664],[73.82613,22.64966],[73.82633,22.65813],[73.8303,22.6595],[73.82373,22.67388],[73.82149,22.67371],[73.82003,22.67544],[73.81006,22.67425],[73.80727,22.67614],[73.80374,22.68764],[73.80646,22.69353],[73.80768,22.70141],[73.81582,22.69749],[73.82153,22.70163],[73.82642,22.70084],[73.82791,22.70425],[73.83265,22.70764],[73.83617,22.71665],[73.83472,22.72468],[73.83767,22.72934],[73.8361,22.73191],[73.83736,22.73528],[73.83468,22.7349],[73.83431,22.73693],[73.83977,22.73868],[73.84442,22.74252],[73.85366,22.74317],[73.85484,22.74531],[73.85179,22.75855],[73.83543,22.77497],[73.83378,22.77778],[73.83377,22.78326],[73.83147,22.78584],[73.82452,22.78645],[73.82182,22.78351],[73.81038,22.7854],[73.81338,22.78904],[73.82371,22.78813],[73.82564,22.7892],[73.82721,22.79678],[73.83037,22.79956],[73.83122,22.80266],[73.84286,22.79784],[73.84601,22.79181],[73.84985,22.79285],[73.84936,22.79777],[73.8508,22.80181],[73.84723,22.81786],[73.83969,22.82079],[73.83941,22.82356],[73.83735,22.82454],[73.83955,22.8306],[73.83793,22.83502],[73.84011,22.84449],[73.84781,22.84424],[73.85418,22.84172],[73.86107,22.85376],[73.86312,22.86136],[73.86902,22.86859],[73.87463,22.8793],[73.87609,22.89022],[73.88051,22.90178],[73.89281,22.91718],[73.90764,22.92765],[73.90736,22.93177],[73.90413,22.9351],[73.90076,22.9355],[73.90059,22.9368],[73.89325,22.93685],[73.88932,22.94193],[73.88186,22.94602],[73.88488,22.9479],[73.89336,22.94718],[73.89534,22.95239],[73.89872,22.95395],[73.90133,22.95324],[73.90468,22.964],[73.91386,22.96648],[73.92147,22.96621],[73.92824,22.97717],[73.90348,22.98502],[73.90281,22.9959],[73.90609,23.00767],[73.91397,23.01391],[73.91356,23.01641],[73.91183,23.01541],[73.91098,23.02092],[73.90831,23.02306],[73.90884,23.03324],[73.90574,23.03895],[73.90694,23.04135],[73.90427,23.04995],[73.89922,23.04929],[73.88705,23.05169],[73.88118,23.05723],[73.86027,23.06026],[73.85261,23.06673],[73.84478,23.07773],[73.84638,23.07929],[73.84203,23.08298],[73.84374,23.08505],[73.84242,23.08686],[73.82992,23.09284],[73.8221,23.09946],[73.81375,23.10116],[73.81475,23.10394],[73.8095,23.10906],[73.80396,23.10722],[73.80222,23.09916],[73.7953,23.09493],[73.79102,23.08912],[73.77921,23.08361],[73.77384,23.07558],[73.76757,23.07289],[73.76026,23.07289],[73.7563,23.07484],[73.7447,23.06932],[73.74579,23.06424],[73.74875,23.06],[73.7675,23.0555],[73.76613,23.0521],[73.7688,23.0441],[73.76435,23.03833],[73.75775,23.03871],[73.75562,23.02533],[73.74926,23.02095],[73.74635,23.01492],[73.74346,23.01444],[73.74131,23.0117],[73.73649,23.01316],[73.73263,23.02535],[73.7323,23.0331],[73.72377,23.03636],[73.71931,23.03617],[73.71633,23.02355],[73.7026,23.02146],[73.69658,23.02762],[73.69043,23.02392],[73.6853,23.0241],[73.6739,23.01925],[73.6686,23.02026],[73.66707,23.02158],[73.67112,23.03074],[73.66989,23.03311],[73.6772,23.03496],[73.67916,23.03746],[73.68465,23.03769],[73.71673,23.05369],[73.71034,23.06396],[73.71193,23.06738],[73.71061,23.07216],[73.70283,23.08236],[73.6971,23.08848],[73.69179,23.09092],[73.6915,23.09388],[73.68199,23.09218],[73.68156,23.09627],[73.67774,23.09849],[73.67336,23.1044]],[[73.78887,22.79065],[73.79478,22.78446],[73.79714,22.77756],[73.79377,22.77517],[73.79246,22.77576],[73.79326,22.77365],[73.78954,22.77318],[73.78571,22.76966],[73.78198,22.76992],[73.77846,22.77317],[73.78038,22.77838],[73.77659,22.78245],[73.77536,22.7889],[73.78887,22.79065]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"455","area_level":"District","area_name":"Patan","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.13588,24.15398],[72.12913,24.15531],[72.12485,24.15268],[72.12026,24.15275],[72.12001,24.14393],[72.11539,24.13734],[72.11211,24.13589],[72.10849,24.13558],[72.09387,24.14169],[72.08968,24.13861],[72.09288,24.12415],[72.0987,24.12506],[72.11165,24.12339],[72.11662,24.12655],[72.12199,24.12479],[72.12397,24.12825],[72.14011,24.12644],[72.14456,24.1273],[72.14813,24.12389],[72.1506,24.11793],[72.14715,24.11358],[72.14689,24.11124],[72.14855,24.11037],[72.14708,24.10455],[72.1516,24.09998],[72.1567,24.09848],[72.15732,24.09451],[72.15602,24.09042],[72.15408,24.09057],[72.15378,24.08686],[72.14793,24.07662],[72.14683,24.07716],[72.14451,24.07437],[72.13619,24.07016],[72.13279,24.06316],[72.13258,24.05287],[72.11673,24.05016],[72.10124,24.05445],[72.09817,24.04292],[72.10111,24.03459],[72.09488,24.03253],[72.09293,24.03323],[72.09369,24.03876],[72.09021,24.04154],[72.08587,24.03941],[72.07446,24.03946],[72.067,24.03556],[72.06575,24.0326],[72.06071,24.0325],[72.04774,24.04606],[72.0417,24.04754],[72.03174,24.05304],[72.03141,24.06142],[72.02868,24.06738],[72.0189,24.07208],[72.01299,24.0688],[72.01478,24.05432],[72.01289,24.04982],[72.01598,24.04641],[72.01924,24.04542],[72.02246,24.03937],[72.02637,24.02415],[72.02843,24.02204],[72.02739,24.01933],[72.02941,24.0195],[72.03496,24.01403],[72.03489,24.00877],[72.04,24.00676],[72.04249,24.00274],[72.04481,24.00324],[72.05061,23.99894],[72.04772,23.99298],[72.04832,23.98955],[72.04427,23.98709],[72.04313,23.98355],[72.03884,23.98001],[72.03707,23.98119],[72.02035,23.97801],[72.01801,23.98421],[72.01292,23.9862],[72.01165,23.9853],[72.0099,23.97808],[72.00553,23.97416],[72.00761,23.96991],[72.00594,23.96594],[72.0,23.9672],[71.9988,23.96887],[71.99683,23.97574],[71.99924,23.98009],[71.99892,23.98353],[71.99491,23.98497],[71.99272,23.98778],[71.99257,23.99349],[71.98578,23.99731],[71.9831,23.99816],[71.96101,23.99108],[71.96129,23.99255],[71.95321,24.0004],[71.94913,24.00811],[71.94252,24.00632],[71.94226,24.00793],[71.9254,24.00923],[71.92367,24.00384],[71.92877,23.97956],[71.94885,23.97316],[71.94778,23.96332],[71.94046,23.96147],[71.92913,23.95235],[71.93278,23.94767],[71.93829,23.93173],[71.93813,23.92766],[71.95017,23.91715],[71.95869,23.91765],[71.96139,23.91264],[71.97437,23.9056],[71.97681,23.90068],[71.97774,23.88935],[71.97246,23.8882],[71.95825,23.88884],[71.93688,23.88057],[71.92414,23.88452],[71.91173,23.88135],[71.90125,23.87331],[71.89701,23.879],[71.88946,23.87841],[71.87567,23.87108],[71.86737,23.86959],[71.86698,23.86123],[71.86135,23.84698],[71.83929,23.84366],[71.82785,23.84445],[71.82518,23.84568],[71.82399,23.84968],[71.8151,23.85225],[71.81511,23.85523],[71.80363,23.85118],[71.7972,23.85096],[71.78236,23.84423],[71.77898,23.84486],[71.77609,23.83906],[71.77265,23.83892],[71.77116,23.83597],[71.77202,23.83304],[71.76652,23.82683],[71.76445,23.82963],[71.76491,23.83708],[71.76168,23.83914],[71.7617,23.84164],[71.75086,23.84085],[71.74823,23.84299],[71.74496,23.85046],[71.73134,23.85588],[71.72763,23.85562],[71.724,23.85952],[71.71965,23.86118],[71.71433,23.87016],[71.71436,23.87616],[71.70877,23.88217],[71.71292,23.88972],[71.7146,23.90875],[71.71783,23.9188],[71.71738,23.92768],[71.70834,23.92749],[71.69777,23.93039],[71.69763,23.93489],[71.69296,23.94741],[71.69392,23.96213],[71.68854,23.97083],[71.66506,23.97248],[71.64994,23.96414],[71.64328,23.9574],[71.63398,23.95463],[71.62188,23.95406],[71.61827,23.95168],[71.61341,23.94406],[71.6052,23.94249],[71.59871,23.94454],[71.59436,23.95581],[71.58693,23.96341],[71.58671,23.9693],[71.59157,23.9765],[71.58685,23.97755],[71.57534,23.97555],[71.57033,23.98052],[71.56052,23.97943],[71.56704,23.98357],[71.56439,23.99288],[71.5657,23.99614],[71.55439,24.00099],[71.55166,24.00089],[71.54713,23.99512],[71.54608,23.98192],[71.51683,23.9802],[71.49813,23.96973],[71.49218,23.97455],[71.48753,23.97539],[71.48989,23.98792],[71.48681,23.99046],[71.4914,24.00044],[71.49108,24.01482],[71.48635,24.01746],[71.48432,24.0205],[71.48527,24.02235],[71.48417,24.02441],[71.48066,24.02345],[71.47903,24.02529],[71.46402,24.01334],[71.46105,23.99908],[71.45439,23.99264],[71.44588,23.98787],[71.44642,23.98655],[71.44483,23.98631],[71.44259,23.98104],[71.44535,23.97994],[71.44976,23.98208],[71.44906,23.97485],[71.44654,23.97091],[71.4488,23.96737],[71.45446,23.9647],[71.44823,23.96006],[71.44463,23.9413],[71.44129,23.9395],[71.43235,23.93913],[71.42166,23.93496],[71.41605,23.92957],[71.41612,23.92524],[71.4044,23.94],[71.40584,23.9498],[71.39523,23.96579],[71.39154,23.96427],[71.38962,23.96599],[71.38845,23.96523],[71.38807,23.95819],[71.38392,23.95389],[71.37418,23.95517],[71.36998,23.96032],[71.37209,23.96084],[71.37083,23.96521],[71.36552,23.96566],[71.366,23.97058],[71.36013,23.96862],[71.35825,23.9705],[71.34884,23.96866],[71.34618,23.97006],[71.3354,23.97029],[71.33149,23.97276],[71.32713,23.97936],[71.31908,23.98376],[71.31451,23.97843],[71.30463,23.97503],[71.29823,23.96739],[71.29741,23.96241],[71.30155,23.95502],[71.29828,23.95222],[71.29143,23.95097],[71.28887,23.94845],[71.30198,23.93349],[71.29798,23.93429],[71.2995,23.92768],[71.27977,23.92824],[71.27427,23.93443],[71.27078,23.93302],[71.27543,23.9278],[71.27304,23.92255],[71.26506,23.92122],[71.26216,23.92502],[71.26026,23.93202],[71.25311,23.93328],[71.24767,23.92849],[71.25439,23.9214],[71.23885,23.91861],[71.23302,23.93015],[71.21821,23.93611],[71.19946,23.927],[71.19352,23.92094],[71.18702,23.92256],[71.17769,23.93066],[71.17586,23.92743],[71.17728,23.92544],[71.17614,23.92023],[71.1684,23.92007],[71.16519,23.91807],[71.16007,23.91848],[71.158,23.92062],[71.15443,23.91669],[71.14556,23.91547],[71.1398,23.91246],[71.14025,23.91036],[71.13096,23.90966],[71.12781,23.91121],[71.12791,23.90809],[71.11926,23.90531],[71.10174,23.90537],[71.09744,23.902],[71.08622,23.88271],[71.07976,23.87498],[71.06947,23.84541],[71.07112,23.84393],[71.06935,23.84238],[71.06658,23.84331],[71.06375,23.83843],[71.0676,23.8304],[71.06989,23.83145],[71.07199,23.82851],[71.07431,23.82986],[71.07212,23.82333],[71.06678,23.82394],[71.06636,23.82646],[71.06414,23.82658],[71.06347,23.82504],[71.06338,23.82132],[71.06967,23.81992],[71.06932,23.81706],[71.06539,23.8159],[71.06121,23.80547],[71.05744,23.80591],[71.05388,23.8091],[71.0466,23.80953],[71.04312,23.80461],[71.04449,23.79053],[71.05472,23.78899],[71.05595,23.78679],[71.0543,23.77958],[71.05707,23.77686],[71.05541,23.7763],[71.05663,23.77496],[71.05391,23.76943],[71.05648,23.7672],[71.05452,23.76019],[71.05866,23.75532],[71.05375,23.74379],[71.05984,23.74117],[71.06486,23.74167],[71.07281,23.73037],[71.06877,23.72971],[71.06814,23.73219],[71.05712,23.73745],[71.05747,23.73215],[71.05907,23.73047],[71.05709,23.72086],[71.0616,23.7056],[71.06808,23.69789],[71.06688,23.69351],[71.06952,23.68857],[71.06872,23.68665],[71.05376,23.68457],[71.04775,23.68128],[71.03923,23.68089],[71.03533,23.67013],[71.03439,23.65895],[71.03882,23.63896],[71.04694,23.6251],[71.05197,23.62051],[71.06061,23.62104],[71.06346,23.62304],[71.06833,23.61618],[71.06625,23.60906],[71.06902,23.60701],[71.07436,23.60645],[71.0814,23.59846],[71.08617,23.60205],[71.08484,23.60316],[71.0927,23.60674],[71.09071,23.61266],[71.08574,23.6175],[71.08942,23.62455],[71.09486,23.6248],[71.09403,23.61502],[71.09665,23.61478],[71.12039,23.62466],[71.13554,23.62785],[71.13957,23.63174],[71.13896,23.63746],[71.13671,23.64407],[71.13166,23.64316],[71.13105,23.6519],[71.13675,23.66146],[71.13664,23.66405],[71.14957,23.66824],[71.14953,23.67375],[71.1433,23.67421],[71.14923,23.6802],[71.14889,23.68356],[71.15735,23.69469],[71.16422,23.69927],[71.1808,23.71594],[71.17965,23.7173],[71.17136,23.71376],[71.16733,23.71559],[71.16223,23.72151],[71.15918,23.71766],[71.16029,23.71615],[71.15793,23.7125],[71.15207,23.713],[71.15047,23.71552],[71.15199,23.71997],[71.14716,23.71682],[71.14458,23.71696],[71.1456,23.71938],[71.14435,23.72075],[71.14785,23.72699],[71.14427,23.73004],[71.1775,23.72891],[71.17301,23.74193],[71.17469,23.74434],[71.18203,23.7402],[71.18383,23.74203],[71.18962,23.73922],[71.19011,23.73403],[71.19582,23.73852],[71.20694,23.73869],[71.21773,23.72947],[71.21727,23.72166],[71.2252,23.71392],[71.218,23.69898],[71.22378,23.6941],[71.22392,23.68794],[71.2133,23.67852],[71.22064,23.66689],[71.22185,23.65639],[71.24285,23.65575],[71.26266,23.64943],[71.27617,23.64962],[71.30433,23.64572],[71.3336,23.64881],[71.35105,23.65638],[71.36142,23.65184],[71.37554,23.64972],[71.37538,23.6435],[71.38348,23.63446],[71.3863,23.62315],[71.39226,23.61133],[71.39384,23.60281],[71.40488,23.61158],[71.41472,23.623],[71.42508,23.62882],[71.4233,23.60963],[71.42677,23.60329],[71.41667,23.5786],[71.41857,23.56732],[71.42217,23.56363],[71.45238,23.56145],[71.4571,23.55909],[71.47346,23.55615],[71.44815,23.536],[71.44522,23.46935],[71.45348,23.47125],[71.46466,23.48032],[71.47738,23.49382],[71.4949,23.50028],[71.50811,23.51156],[71.50802,23.5174],[71.51191,23.52345],[71.52029,23.52781],[71.51938,23.50001],[71.51064,23.49248],[71.50752,23.48739],[71.50615,23.46686],[71.50801,23.45626],[71.51822,23.46229],[71.5201,23.46851],[71.53495,23.47995],[71.56469,23.49563],[71.58162,23.49148],[71.59035,23.50091],[71.59824,23.502],[71.59921,23.49813],[71.60368,23.49729],[71.6136,23.50132],[71.61626,23.49798],[71.62635,23.49757],[71.64464,23.49071],[71.64957,23.49265],[71.6664,23.48471],[71.67423,23.48906],[71.68293,23.48721],[71.69182,23.48785],[71.70232,23.48122],[71.70895,23.48325],[71.71995,23.49024],[71.73045,23.49074],[71.73228,23.48685],[71.72786,23.48408],[71.72545,23.47996],[71.72639,23.46824],[71.73913,23.47044],[71.74343,23.46736],[71.74514,23.47398],[71.75,23.46897],[71.75822,23.46632],[71.76475,23.46946],[71.76725,23.46677],[71.77171,23.46798],[71.77213,23.46126],[71.77782,23.4546],[71.76942,23.43518],[71.7622,23.43249],[71.76009,23.4267],[71.76097,23.42285],[71.75922,23.42281],[71.75805,23.41532],[71.76197,23.4029],[71.77149,23.39975],[71.77221,23.39818],[71.7794,23.39723],[71.78165,23.39491],[71.78421,23.39638],[71.79157,23.39203],[71.79866,23.39467],[71.80269,23.3941],[71.80845,23.39848],[71.80833,23.39997],[71.81158,23.40076],[71.81177,23.40333],[71.81732,23.40708],[71.81731,23.4089],[71.82126,23.40919],[71.82101,23.41074],[71.83773,23.41936],[71.84982,23.43552],[71.85127,23.4567],[71.86419,23.47263],[71.88751,23.4834],[71.88839,23.48485],[71.88699,23.48549],[71.89397,23.48659],[71.89877,23.48423],[71.90214,23.4849],[71.90118,23.4907],[71.90493,23.48712],[71.90818,23.49392],[71.91329,23.49395],[71.91524,23.49119],[71.92211,23.49382],[71.92876,23.49228],[71.9299,23.497],[71.93406,23.49611],[71.9424,23.5],[71.94251,23.51271],[71.94407,23.51513],[71.94304,23.51831],[71.9688,23.52672],[71.96862,23.53213],[71.96521,23.53411],[71.96574,23.53904],[71.96371,23.54517],[71.95928,23.55005],[71.95719,23.56543],[71.9575,23.57706],[71.95279,23.57715],[71.95245,23.57919],[71.94047,23.58114],[71.94039,23.58364],[71.95703,23.58726],[71.95963,23.59332],[71.96935,23.59902],[71.98226,23.60086],[71.98041,23.60993],[71.98093,23.6185],[71.98843,23.61927],[71.98875,23.6179],[72.00253,23.62039],[72.00718,23.62303],[72.01292,23.62931],[72.02453,23.62293],[72.0304,23.61645],[72.03909,23.61528],[72.04175,23.6159],[72.04308,23.61891],[72.04803,23.61992],[72.06129,23.61361],[72.0554,23.60723],[72.05713,23.60615],[72.05519,23.60581],[72.05528,23.60428],[72.0598,23.60194],[72.05763,23.59741],[72.07027,23.59006],[72.06906,23.58168],[72.06398,23.58006],[72.0632,23.57301],[72.05984,23.57251],[72.0592,23.56808],[72.06128,23.5656],[72.06394,23.56815],[72.06906,23.5656],[72.07736,23.56699],[72.07868,23.56531],[72.08632,23.56926],[72.09654,23.5701],[72.10289,23.56867],[72.10758,23.57057],[72.10896,23.57484],[72.10681,23.58388],[72.10766,23.58883],[72.10639,23.58875],[72.10617,23.59057],[72.10773,23.59058],[72.1082,23.59232],[72.1038,23.59425],[72.10852,23.60003],[72.11357,23.60259],[72.11162,23.61447],[72.10902,23.61619],[72.12438,23.62184],[72.12665,23.60722],[72.12378,23.60608],[72.12911,23.59902],[72.13495,23.59763],[72.13855,23.59859],[72.13929,23.60478],[72.14294,23.60554],[72.14511,23.60799],[72.14657,23.60605],[72.15282,23.60636],[72.1575,23.60229],[72.16353,23.60346],[72.18069,23.61199],[72.1792,23.61823],[72.18218,23.61963],[72.18449,23.62389],[72.18082,23.628],[72.17564,23.62998],[72.17544,23.63189],[72.17797,23.63287],[72.17692,23.63544],[72.18003,23.63554],[72.17968,23.63778],[72.18397,23.64015],[72.19496,23.64006],[72.19454,23.6328],[72.20643,23.63373],[72.21116,23.62462],[72.22096,23.6263],[72.22202,23.62414],[72.22435,23.62364],[72.22462,23.6181],[72.22817,23.61759],[72.23082,23.62119],[72.24518,23.62614],[72.24953,23.64358],[72.2552,23.64604],[72.25747,23.64543],[72.26133,23.63931],[72.25847,23.63682],[72.2597,23.63263],[72.26609,23.6328],[72.26536,23.62973],[72.27231,23.62752],[72.27338,23.62398],[72.28202,23.62323],[72.28477,23.61774],[72.29106,23.61936],[72.29016,23.62036],[72.29444,23.62198],[72.29689,23.63211],[72.29932,23.63293],[72.29895,23.63484],[72.30301,23.63564],[72.30286,23.63787],[72.30512,23.63891],[72.304,23.65827],[72.30758,23.66153],[72.30848,23.66588],[72.30738,23.67034],[72.30474,23.66855],[72.30448,23.67046],[72.31058,23.67454],[72.30918,23.67735],[72.30565,23.67793],[72.30413,23.68725],[72.29678,23.68578],[72.29128,23.68172],[72.28604,23.68355],[72.28483,23.68909],[72.28749,23.69395],[72.29139,23.70981],[72.28338,23.71138],[72.2881,23.71467],[72.28426,23.72352],[72.28571,23.73054],[72.29087,23.73463],[72.28979,23.7414],[72.30312,23.74428],[72.30566,23.75082],[72.31748,23.75512],[72.31667,23.75693],[72.31967,23.75761],[72.31907,23.76021],[72.32104,23.7614],[72.32121,23.76721],[72.31262,23.76891],[72.31157,23.77561],[72.30461,23.77302],[72.30311,23.77388],[72.30429,23.77527],[72.29977,23.77512],[72.29796,23.77917],[72.29493,23.78003],[72.29427,23.78232],[72.2993,23.784],[72.29893,23.78872],[72.30279,23.79312],[72.30033,23.79795],[72.30122,23.80291],[72.30725,23.80358],[72.30885,23.80698],[72.30684,23.80904],[72.30792,23.80985],[72.30949,23.80818],[72.31806,23.81182],[72.31587,23.81445],[72.31682,23.81792],[72.31421,23.82429],[72.30716,23.82263],[72.30827,23.82729],[72.30354,23.83427],[72.3021,23.84214],[72.29667,23.84089],[72.29283,23.84619],[72.29288,23.84902],[72.29663,23.85206],[72.3061,23.85221],[72.31665,23.84966],[72.32107,23.85236],[72.32316,23.852],[72.32335,23.85049],[72.32615,23.85126],[72.32449,23.85519],[72.32601,23.86878],[72.32431,23.87011],[72.32321,23.86913],[72.32317,23.87104],[72.32485,23.87701],[72.32924,23.8811],[72.33708,23.87796],[72.34629,23.87791],[72.3566,23.88339],[72.35991,23.88013],[72.3658,23.87979],[72.36987,23.8755],[72.37154,23.86885],[72.37643,23.86658],[72.38237,23.8671],[72.38338,23.871],[72.38592,23.87233],[72.39041,23.87119],[72.39082,23.87439],[72.39255,23.87515],[72.39637,23.87363],[72.39752,23.86993],[72.3994,23.87049],[72.4029,23.87252],[72.40255,23.87677],[72.40496,23.87808],[72.40769,23.88556],[72.41488,23.88674],[72.4165,23.89434],[72.42052,23.89375],[72.4227,23.90016],[72.42935,23.89558],[72.43053,23.89621],[72.42961,23.90533],[72.43241,23.90569],[72.43543,23.8992],[72.4417,23.89874],[72.44485,23.90685],[72.45234,23.90649],[72.4558,23.89578],[72.46105,23.89436],[72.46266,23.89048],[72.46586,23.88986],[72.46902,23.89131],[72.47306,23.89391],[72.47148,23.89936],[72.47548,23.90358],[72.47412,23.90601],[72.47681,23.91116],[72.47545,23.91335],[72.47825,23.91718],[72.47763,23.92615],[72.48249,23.93278],[72.48067,23.93195],[72.48052,23.95368],[72.47725,23.9544],[72.47726,23.95629],[72.47858,23.95627],[72.47771,23.95805],[72.47518,23.95797],[72.47621,23.96615],[72.47185,23.96571],[72.47094,23.96867],[72.46405,23.97086],[72.46092,23.9702],[72.45129,23.9743],[72.44473,23.97167],[72.44348,23.96823],[72.43809,23.96712],[72.43803,23.97399],[72.43158,23.97759],[72.43159,23.98259],[72.42979,23.9836],[72.42723,23.97645],[72.41946,23.97809],[72.417,23.97726],[72.4142,23.97253],[72.40704,23.97544],[72.40578,23.97432],[72.39881,23.97561],[72.38671,23.97412],[72.38614,23.97539],[72.38511,23.97378],[72.38614,23.97018],[72.38547,23.96839],[72.3836,23.96825],[72.37949,23.97148],[72.37022,23.97175],[72.36921,23.98603],[72.36634,23.9883],[72.36614,23.9941],[72.36097,24.00043],[72.36115,24.00996],[72.3567,24.00869],[72.35148,24.00938],[72.34926,24.01018],[72.34952,24.012],[72.34435,24.01399],[72.34237,24.02219],[72.34502,24.02632],[72.34235,24.02896],[72.34163,24.03513],[72.33982,24.03778],[72.3324,24.03897],[72.32243,24.03761],[72.30928,24.03857],[72.30641,24.03945],[72.29939,24.05323],[72.29315,24.05118],[72.28915,24.05367],[72.28746,24.05266],[72.28725,24.05417],[72.28162,24.05359],[72.27047,24.05554],[72.26854,24.06017],[72.26337,24.06322],[72.26126,24.06975],[72.25838,24.07051],[72.25568,24.08139],[72.25096,24.08239],[72.23419,24.07218],[72.22639,24.07198],[72.22182,24.0758],[72.2179,24.08499],[72.21681,24.09459],[72.21338,24.10394],[72.21018,24.11152],[72.20634,24.11408],[72.20795,24.1177],[72.21762,24.12647],[72.22043,24.12693],[72.22352,24.13106],[72.21797,24.1369],[72.21763,24.14331],[72.21237,24.14657],[72.20364,24.14909],[72.19977,24.14441],[72.19769,24.13705],[72.19084,24.1347],[72.19105,24.13221],[72.18526,24.13033],[72.18755,24.12228],[72.17692,24.11834],[72.16108,24.12693],[72.14898,24.12958],[72.15398,24.13512],[72.15227,24.13789],[72.15074,24.15043],[72.14934,24.15255],[72.13588,24.15398]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"456","area_level":"District","area_name":"Porbandar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[69.72199,21.96274],[69.71987,21.97395],[69.68827,21.9794],[69.68495,21.96481],[69.68528,21.95924],[69.66758,21.95917],[69.64987,21.95576],[69.65755,21.92543],[69.63622,21.91957],[69.62707,21.92089],[69.62299,21.92949],[69.62099,21.94253],[69.61823,21.94193],[69.6115,21.94826],[69.60757,21.94689],[69.58073,21.94771],[69.56874,21.9462],[69.54817,21.93499],[69.54128,21.92524],[69.54074,21.91659],[69.538,21.91215],[69.53603,21.90096],[69.53837,21.89704],[69.53432,21.89422],[69.52787,21.89303],[69.51804,21.89999],[69.50684,21.90098],[69.50445,21.90407],[69.5,21.89502],[69.48671,21.89689],[69.48594,21.87562],[69.48334,21.87536],[69.48878,21.85687],[69.48671,21.8546],[69.46071,21.85255],[69.44764,21.85303],[69.43043,21.87939],[69.42232,21.87947],[69.40283,21.894],[69.39824,21.8923],[69.3984,21.88889],[69.39515,21.88572],[69.39199,21.88532],[69.38911,21.88238],[69.38909,21.87941],[69.38514,21.87705],[69.38378,21.86989],[69.38443,21.86193],[69.38042,21.84859],[69.37549,21.84145],[69.37514,21.83499],[69.37136,21.8301],[69.39986,21.79686],[69.4165,21.78309],[69.43297,21.76669],[69.44259,21.76165],[69.45271,21.75],[69.46444,21.74418],[69.4774,21.73447],[69.51032,21.70022],[69.56619,21.6515],[69.58543,21.63728],[69.58966,21.63659],[69.58958,21.63827],[69.59146,21.63868],[69.60221,21.63716],[69.61596,21.62455],[69.67374,21.56329],[69.70636,21.53536],[69.75505,21.48024],[69.81521,21.41693],[69.92354,21.29046],[69.98186,21.22798],[69.9883,21.23614],[70.00265,21.24431],[70.00073,21.25196],[70.00266,21.25492],[70.01193,21.26085],[70.02186,21.27081],[70.02886,21.27382],[70.02805,21.28087],[70.02643,21.28298],[70.01291,21.27763],[69.99698,21.29813],[69.98508,21.29667],[69.97778,21.29389],[69.97642,21.29501],[69.97827,21.33602],[69.9569,21.34351],[69.94852,21.35695],[69.9417,21.37237],[69.95077,21.38567],[69.94304,21.39154],[69.94424,21.39696],[69.95411,21.4013],[69.98156,21.40425],[69.9884,21.39587],[69.99711,21.4006],[69.99216,21.40705],[69.99144,21.4094],[69.9929,21.41139],[69.99032,21.41984],[69.98733,21.42355],[69.98426,21.42355],[69.98172,21.42646],[69.98265,21.43158],[69.97965,21.43249],[69.98155,21.4345],[69.99971,21.4408],[70.02226,21.44395],[70.02754,21.46054],[70.02987,21.47585],[70.02881,21.47792],[70.00957,21.47785],[69.99644,21.47388],[69.99268,21.48778],[69.98505,21.50621],[69.98696,21.50727],[69.9903,21.50591],[69.99273,21.50726],[69.98223,21.53008],[69.98266,21.53376],[70.00262,21.54289],[69.99375,21.55628],[69.98662,21.5722],[69.9759,21.56638],[69.96436,21.59183],[69.96559,21.59245],[69.96594,21.59022],[69.96918,21.59425],[69.97713,21.59954],[69.97818,21.59799],[69.9791,21.60065],[69.98142,21.59852],[69.98452,21.60236],[69.9861,21.60187],[69.98374,21.59542],[69.99057,21.57944],[70.0,21.58524],[70.01256,21.58997],[70.01357,21.59192],[70.02075,21.59355],[70.01967,21.59687],[70.0308,21.60156],[70.0342,21.59307],[70.04767,21.59771],[70.0461,21.59304],[70.04757,21.58676],[70.05921,21.58408],[70.07072,21.5851],[70.07367,21.59289],[70.07001,21.59752],[70.06848,21.61043],[70.06097,21.61184],[70.05519,21.61039],[70.04954,21.61201],[70.04065,21.60753],[70.03879,21.61192],[70.04635,21.61533],[70.04745,21.62003],[70.05831,21.62663],[70.05663,21.63675],[70.07675,21.64043],[70.09076,21.64893],[70.09789,21.64637],[70.10906,21.64517],[70.10755,21.65413],[70.10309,21.6625],[70.1059,21.66401],[70.10707,21.66936],[70.1117,21.67178],[70.11951,21.68052],[70.1225,21.68001],[70.12697,21.67539],[70.13034,21.66779],[70.1331,21.66872],[70.13529,21.66298],[70.1484,21.66504],[70.1429,21.68592],[70.1418,21.68812],[70.13933,21.68772],[70.12908,21.6945],[70.12653,21.69821],[70.12209,21.7006],[70.12272,21.70409],[70.11742,21.7052],[70.11792,21.70637],[70.10559,21.70624],[70.08905,21.70257],[70.08368,21.73648],[70.07839,21.7329],[70.07643,21.72445],[70.06925,21.72428],[70.06497,21.71834],[70.06101,21.70637],[70.05812,21.70325],[70.04822,21.69931],[70.03898,21.698],[70.02452,21.70401],[70.01911,21.71519],[70.01983,21.74605],[70.00782,21.75403],[70.00967,21.76144],[70.00872,21.78186],[70.01206,21.79073],[70.01113,21.80435],[69.99888,21.80387],[69.99212,21.80743],[69.98906,21.80508],[69.98417,21.80475],[69.97377,21.79756],[69.96701,21.79974],[69.95553,21.79343],[69.95426,21.79022],[69.95104,21.78904],[69.94371,21.79288],[69.92951,21.77892],[69.92036,21.77771],[69.91879,21.77842],[69.91943,21.78131],[69.91609,21.78182],[69.90319,21.78056],[69.89384,21.77436],[69.88328,21.77214],[69.88168,21.76781],[69.87181,21.77826],[69.87214,21.78196],[69.86435,21.78155],[69.86299,21.76996],[69.8652,21.76782],[69.8677,21.75986],[69.86734,21.73784],[69.86397,21.73921],[69.85575,21.73395],[69.84875,21.73168],[69.83965,21.73344],[69.83399,21.74355],[69.82901,21.7445],[69.81846,21.74167],[69.80865,21.76181],[69.8091,21.76896],[69.81283,21.77362],[69.81616,21.79372],[69.81677,21.80685],[69.81499,21.8243],[69.79157,21.82712],[69.77665,21.82445],[69.77527,21.82262],[69.76236,21.82222],[69.74742,21.83137],[69.73849,21.83424],[69.73243,21.82527],[69.72657,21.82173],[69.72676,21.80778],[69.71586,21.79498],[69.71125,21.79389],[69.71085,21.79925],[69.70057,21.79642],[69.69731,21.80966],[69.69056,21.81113],[69.68987,21.81897],[69.68464,21.82291],[69.67387,21.82247],[69.67351,21.81713],[69.67521,21.81333],[69.66473,21.81238],[69.65643,21.83825],[69.64643,21.83953],[69.63917,21.83761],[69.63319,21.82965],[69.63022,21.82962],[69.63316,21.81668],[69.63193,21.80479],[69.62639,21.80395],[69.62608,21.8053],[69.6163,21.80329],[69.61536,21.809],[69.61232,21.80854],[69.61343,21.83096],[69.60862,21.83123],[69.60998,21.85463],[69.6078,21.86183],[69.60947,21.86217],[69.6089,21.86435],[69.61408,21.86499],[69.61505,21.87006],[69.63091,21.86727],[69.63385,21.87558],[69.65607,21.86975],[69.66194,21.88158],[69.6672,21.88742],[69.6642,21.90132],[69.67224,21.90373],[69.67117,21.91193],[69.66656,21.92568],[69.68196,21.92793],[69.68808,21.91246],[69.69629,21.91696],[69.70104,21.92254],[69.70763,21.92567],[69.70698,21.9348],[69.72021,21.93515],[69.72018,21.93744],[69.72487,21.93788],[69.72522,21.94081],[69.7224,21.94184],[69.72674,21.95528],[69.72294,21.95591],[69.72199,21.96274]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"457","area_level":"District","area_name":"Rajkot","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[70.43966,22.41408],[70.43819,22.41631],[70.43455,22.4169],[70.43521,22.41483],[70.4291,22.41275],[70.41166,22.40966],[70.40998,22.40989],[70.40953,22.40927],[70.40431,22.40834],[70.4041,22.40267],[70.40455,22.39948],[70.40795,22.39195],[70.40765,22.3802],[70.40947,22.37402],[70.40853,22.36545],[70.40963,22.36076],[70.41042,22.35953],[70.42093,22.35959],[70.42083,22.35874],[70.4311,22.35722],[70.4349,22.35882],[70.44027,22.35695],[70.44145,22.34012],[70.44737,22.3326],[70.44885,22.32805],[70.45655,22.33143],[70.46018,22.33216],[70.46306,22.3317],[70.46361,22.3328],[70.46616,22.33284],[70.46357,22.33743],[70.46301,22.34144],[70.46352,22.34661],[70.4622,22.35015],[70.45598,22.35517],[70.4529,22.35696],[70.44793,22.35913],[70.43687,22.36215],[70.42966,22.36604],[70.42411,22.37011],[70.4212,22.37558],[70.42119,22.37607],[70.42412,22.37658],[70.42685,22.3788],[70.42909,22.38229],[70.43183,22.38434],[70.43213,22.38686],[70.43598,22.38805],[70.43938,22.38781],[70.44013,22.38692],[70.44175,22.38726],[70.44083,22.3893],[70.44975,22.39177],[70.44954,22.3931],[70.45092,22.39359],[70.44834,22.39768],[70.44738,22.40427],[70.44466,22.40699],[70.44383,22.40691],[70.44358,22.40869],[70.43966,22.41408]]],[[[70.59264,22.60699],[70.58798,22.60911],[70.58468,22.61332],[70.58197,22.60991],[70.58154,22.60299],[70.56975,22.60167],[70.5649,22.60288],[70.55342,22.57657],[70.54942,22.56066],[70.55215,22.55177],[70.55807,22.54497],[70.55904,22.54567],[70.56084,22.54366],[70.56609,22.54564],[70.56907,22.5475],[70.56819,22.55164],[70.5714,22.55281],[70.57218,22.55122],[70.58027,22.55248],[70.584,22.54621],[70.58708,22.54401],[70.58878,22.54522],[70.58979,22.54427],[70.5908,22.53843],[70.59342,22.53564],[70.6004,22.53453],[70.60172,22.53116],[70.59323,22.53006],[70.57134,22.52032],[70.56593,22.53332],[70.56054,22.53187],[70.55132,22.53409],[70.54293,22.53328],[70.53956,22.53111],[70.53602,22.51868],[70.52853,22.51554],[70.53535,22.49504],[70.5425,22.50222],[70.55363,22.50118],[70.56373,22.5084],[70.57473,22.51312],[70.58547,22.49585],[70.58686,22.49055],[70.55284,22.48429],[70.54023,22.47939],[70.54273,22.47634],[70.54835,22.47458],[70.55147,22.46924],[70.55256,22.46247],[70.53377,22.45806],[70.52993,22.46456],[70.52568,22.46719],[70.52191,22.46671],[70.52215,22.46378],[70.51952,22.46273],[70.51966,22.46642],[70.51654,22.46496],[70.51398,22.46971],[70.51184,22.46923],[70.50461,22.49055],[70.49962,22.48946],[70.49819,22.48862],[70.4976,22.48203],[70.49442,22.47688],[70.49916,22.46937],[70.50008,22.47137],[70.50308,22.47116],[70.50375,22.46694],[70.49856,22.46674],[70.50106,22.45414],[70.49891,22.45148],[70.48784,22.45],[70.48717,22.4531],[70.48265,22.4529],[70.47999,22.45444],[70.47315,22.46419],[70.47088,22.4702],[70.46579,22.46923],[70.46329,22.46294],[70.46215,22.44995],[70.4561,22.44893],[70.46044,22.44513],[70.46197,22.439],[70.45711,22.43882],[70.45703,22.43576],[70.44527,22.43388],[70.4476,22.42744],[70.45839,22.41937],[70.46354,22.42123],[70.46477,22.42474],[70.47207,22.42653],[70.47568,22.42309],[70.48567,22.4279],[70.49608,22.427],[70.50656,22.42851],[70.50538,22.42399],[70.50839,22.41803],[70.50785,22.41291],[70.50137,22.41084],[70.49932,22.41271],[70.49359,22.41179],[70.49183,22.39842],[70.48409,22.38515],[70.47544,22.38217],[70.4736,22.37856],[70.48433,22.36691],[70.48671,22.36708],[70.48716,22.36197],[70.49888,22.36228],[70.49861,22.36525],[70.50088,22.3668],[70.50439,22.36597],[70.50579,22.36262],[70.50927,22.36439],[70.51548,22.35852],[70.51774,22.36088],[70.52515,22.34666],[70.52989,22.34365],[70.53059,22.33982],[70.52411,22.33696],[70.52081,22.33724],[70.51819,22.33121],[70.5151,22.32854],[70.51124,22.32838],[70.5,22.32221],[70.49841,22.32204],[70.49487,22.32654],[70.48837,22.32741],[70.47468,22.32691],[70.46905,22.32481],[70.47327,22.30929],[70.48179,22.30109],[70.49457,22.29577],[70.49741,22.28609],[70.50528,22.28363],[70.50828,22.27049],[70.51241,22.26164],[70.51589,22.25831],[70.51603,22.25141],[70.51938,22.24513],[70.53639,22.24951],[70.5386,22.2426],[70.54899,22.22954],[70.56191,22.23341],[70.57136,22.23409],[70.57462,22.23978],[70.57864,22.24005],[70.57821,22.23366],[70.58065,22.22279],[70.58765,22.20785],[70.59629,22.20761],[70.59555,22.20387],[70.5978,22.2009],[70.60282,22.20141],[70.60337,22.19899],[70.60953,22.19732],[70.61491,22.18979],[70.59894,22.1933],[70.59753,22.19045],[70.59115,22.18707],[70.58987,22.18883],[70.58,22.18465],[70.58105,22.17523],[70.58445,22.17472],[70.58758,22.16707],[70.56839,22.16014],[70.56672,22.15112],[70.56265,22.14507],[70.56844,22.13162],[70.56477,22.12835],[70.56976,22.12277],[70.57823,22.11719],[70.58896,22.11787],[70.58816,22.10551],[70.58244,22.09903],[70.58106,22.10054],[70.56242,22.09864],[70.55413,22.09074],[70.55135,22.0806],[70.55662,22.08257],[70.56203,22.07276],[70.56037,22.07012],[70.54682,22.06053],[70.54907,22.0548],[70.54975,22.04569],[70.55651,22.04573],[70.56145,22.04248],[70.56267,22.03917],[70.57122,22.03661],[70.56964,22.027],[70.55821,22.02045],[70.55338,22.01379],[70.52635,22.00137],[70.52183,22.00331],[70.51317,22.00101],[70.51151,21.99926],[70.50964,22.00204],[70.50105,21.99677],[70.5007,22.02138],[70.51017,22.02082],[70.51641,22.01769],[70.52064,22.01872],[70.52325,22.03329],[70.52579,22.03749],[70.53124,22.03916],[70.53054,22.04394],[70.51712,22.04943],[70.5,22.04965],[70.4911,22.05544],[70.46141,22.05398],[70.45508,22.0508],[70.45834,22.04127],[70.45452,22.03944],[70.45271,22.03536],[70.43337,22.02935],[70.42598,22.0297],[70.42222,22.03154],[70.41268,22.02542],[70.41442,22.03538],[70.40248,22.03137],[70.39826,22.03848],[70.39249,22.03753],[70.38136,22.04111],[70.37874,22.04219],[70.37812,22.04454],[70.37283,22.04671],[70.36156,22.04412],[70.34945,22.05227],[70.34823,22.05082],[70.3312,22.04986],[70.33082,22.05098],[70.32532,22.04661],[70.32731,22.04312],[70.32573,22.03917],[70.3257,22.03054],[70.32911,22.02903],[70.32725,22.02509],[70.32643,22.01492],[70.31653,22.01309],[70.2942,22.01276],[70.29699,22.00471],[70.30036,22.00202],[70.29993,21.99381],[70.29886,21.9931],[70.29809,21.99693],[70.29343,21.99947],[70.28902,22.00545],[70.27829,21.9983],[70.26584,22.0015],[70.25725,21.99476],[70.25206,21.9723],[70.25222,21.9672],[70.24745,21.96292],[70.23766,21.96206],[70.23105,21.9666],[70.22276,21.96441],[70.21639,21.96729],[70.21469,21.96528],[70.20307,21.96309],[70.20448,21.95749],[70.21071,21.95317],[70.21043,21.95052],[70.21656,21.93501],[70.21732,21.93618],[70.21824,21.93487],[70.21901,21.92866],[70.21673,21.92651],[70.21742,21.90628],[70.19588,21.89433],[70.19624,21.89294],[70.19081,21.89147],[70.18686,21.89503],[70.17778,21.8938],[70.17637,21.89504],[70.17744,21.89931],[70.17644,21.90557],[70.17445,21.90747],[70.176,21.91235],[70.1734,21.9246],[70.17137,21.92604],[70.17214,21.92842],[70.17014,21.92989],[70.17132,21.93123],[70.16816,21.93306],[70.16488,21.93848],[70.14776,21.93847],[70.14479,21.94097],[70.14187,21.93247],[70.14202,21.91753],[70.14022,21.91431],[70.1437,21.90892],[70.13959,21.90625],[70.14091,21.8904],[70.13936,21.89033],[70.13699,21.88261],[70.12373,21.87872],[70.12183,21.87458],[70.12829,21.86513],[70.1234,21.86296],[70.12035,21.86449],[70.11673,21.86243],[70.11604,21.8592],[70.11362,21.85851],[70.11008,21.85251],[70.1062,21.85039],[70.09577,21.84932],[70.09047,21.83476],[70.08994,21.83268],[70.09173,21.83145],[70.0951,21.83258],[70.10264,21.83117],[70.10353,21.82893],[70.1078,21.82809],[70.10945,21.82396],[70.10643,21.82371],[70.10138,21.81701],[70.09707,21.82281],[70.09037,21.81875],[70.08654,21.82143],[70.08086,21.81934],[70.09386,21.80279],[70.09205,21.80054],[70.07854,21.8009],[70.06902,21.8031],[70.06016,21.80241],[70.05157,21.79704],[70.03466,21.79189],[70.03093,21.79443],[70.02966,21.79317],[70.04107,21.7791],[70.051,21.77472],[70.05285,21.77055],[70.05367,21.76079],[70.05469,21.75911],[70.0627,21.75708],[70.0662,21.75259],[70.07056,21.73896],[70.07839,21.7329],[70.08368,21.73648],[70.08905,21.70257],[70.10559,21.70624],[70.11792,21.70637],[70.11742,21.7052],[70.12272,21.70409],[70.12209,21.7006],[70.12653,21.69821],[70.12952,21.69415],[70.13933,21.68772],[70.1418,21.68812],[70.14501,21.67946],[70.1484,21.66504],[70.14743,21.66478],[70.14919,21.66354],[70.14764,21.66271],[70.15207,21.65254],[70.13937,21.64289],[70.12718,21.64277],[70.1328,21.62235],[70.13845,21.61236],[70.14555,21.60989],[70.16545,21.6128],[70.18751,21.62611],[70.19994,21.62808],[70.19979,21.62993],[70.21718,21.63664],[70.22831,21.63805],[70.23587,21.63061],[70.2447,21.61322],[70.25297,21.61206],[70.25581,21.60999],[70.26178,21.61495],[70.26547,21.61263],[70.26549,21.59693],[70.27184,21.57542],[70.2467,21.5671],[70.24975,21.55809],[70.25094,21.54804],[70.25522,21.53734],[70.25304,21.52919],[70.25924,21.52682],[70.26665,21.52651],[70.27896,21.54141],[70.2843,21.5441],[70.29572,21.54633],[70.29164,21.56956],[70.29938,21.57873],[70.3041,21.58939],[70.33235,21.58967],[70.33939,21.59347],[70.34455,21.59201],[70.34917,21.59422],[70.36565,21.59653],[70.36999,21.59997],[70.37266,21.62051],[70.37202,21.62921],[70.36839,21.63569],[70.36825,21.63886],[70.37425,21.6351],[70.38522,21.63776],[70.39285,21.64086],[70.39031,21.64909],[70.40176,21.65031],[70.40932,21.65375],[70.41772,21.6526],[70.42032,21.65795],[70.43665,21.65825],[70.44125,21.67354],[70.44808,21.6747],[70.45108,21.67284],[70.45135,21.66328],[70.45425,21.66069],[70.45509,21.65386],[70.45897,21.64948],[70.47707,21.65479],[70.48367,21.65349],[70.48752,21.65488],[70.48856,21.64886],[70.49719,21.64984],[70.50084,21.65502],[70.50609,21.65607],[70.50623,21.66653],[70.52388,21.66911],[70.54201,21.67539],[70.54841,21.67179],[70.55263,21.67254],[70.55368,21.64768],[70.54463,21.64548],[70.55271,21.63205],[70.55332,21.62456],[70.55632,21.62186],[70.56241,21.62042],[70.56721,21.62086],[70.56826,21.63106],[70.58044,21.63313],[70.60094,21.63001],[70.60578,21.62255],[70.60846,21.62097],[70.60984,21.62513],[70.61206,21.62477],[70.62167,21.62914],[70.62681,21.63433],[70.62936,21.63297],[70.63444,21.635],[70.63975,21.64911],[70.64232,21.65225],[70.65605,21.64932],[70.66069,21.64385],[70.67473,21.6433],[70.67773,21.63925],[70.68578,21.63468],[70.68277,21.62802],[70.68498,21.62282],[70.697,21.60534],[70.70137,21.60446],[70.72411,21.61095],[70.72159,21.61386],[70.72621,21.6152],[70.72548,21.62935],[70.72747,21.63466],[70.73223,21.63845],[70.7312,21.64072],[70.74195,21.64511],[70.74025,21.64849],[70.73978,21.65618],[70.7358,21.66573],[70.74357,21.66801],[70.75619,21.6768],[70.75757,21.67556],[70.76345,21.67663],[70.76437,21.67155],[70.77159,21.67221],[70.77749,21.66249],[70.79322,21.66568],[70.79659,21.66922],[70.79495,21.67583],[70.79566,21.69725],[70.80012,21.70127],[70.79945,21.70556],[70.80911,21.70883],[70.8084,21.71204],[70.79535,21.71416],[70.79373,21.71252],[70.79377,21.7093],[70.78513,21.70939],[70.78411,21.70572],[70.78006,21.70158],[70.77531,21.70026],[70.76761,21.70977],[70.78616,21.71966],[70.77815,21.73035],[70.80073,21.74157],[70.80483,21.73562],[70.81569,21.73408],[70.81841,21.73154],[70.82157,21.73294],[70.81937,21.73628],[70.81986,21.73811],[70.8146,21.73792],[70.81828,21.7395],[70.81774,21.7422],[70.81476,21.74181],[70.81491,21.74366],[70.82708,21.74314],[70.83571,21.74462],[70.83625,21.74268],[70.84972,21.73672],[70.87371,21.74065],[70.87969,21.73221],[70.88936,21.73778],[70.88715,21.74776],[70.88851,21.74801],[70.88919,21.75315],[70.8933,21.75671],[70.89263,21.76499],[70.89846,21.76301],[70.89909,21.76738],[70.8977,21.7698],[70.90611,21.76874],[70.92123,21.7633],[70.92031,21.75917],[70.92562,21.75892],[70.93035,21.74678],[70.95238,21.74305],[70.96469,21.75],[70.97411,21.72871],[70.97813,21.7279],[70.97824,21.72611],[70.98765,21.72727],[70.98761,21.72561],[70.99126,21.72616],[70.99063,21.73038],[71.01263,21.73661],[71.02296,21.73574],[71.02986,21.73941],[71.03011,21.74349],[71.03333,21.74409],[71.03851,21.75144],[71.04734,21.75587],[71.04158,21.769],[71.05181,21.78737],[71.05206,21.7913],[71.0399,21.80644],[71.04285,21.81323],[71.04676,21.81587],[71.04755,21.82425],[71.06434,21.82512],[71.06901,21.82607],[71.07062,21.82799],[71.08133,21.82583],[71.08342,21.82177],[71.08516,21.82228],[71.08437,21.82369],[71.09063,21.82809],[71.0895,21.83676],[71.10384,21.84175],[71.10533,21.84981],[71.10948,21.85127],[71.10533,21.87103],[71.0777,21.86014],[71.05757,21.84854],[71.04965,21.85376],[71.03496,21.86796],[71.03049,21.87428],[71.03665,21.87699],[71.04399,21.87547],[71.04927,21.87678],[71.0634,21.88569],[71.06157,21.89083],[71.0629,21.89547],[71.05747,21.89802],[71.05614,21.90424],[71.06611,21.90733],[71.06764,21.9105],[71.08504,21.91696],[71.09471,21.91696],[71.09559,21.91481],[71.11717,21.91978],[71.11901,21.92118],[71.11779,21.9245],[71.11973,21.93252],[71.12859,21.94709],[71.13884,21.94999],[71.14789,21.94503],[71.1496,21.95383],[71.16192,21.9564],[71.1613,21.96045],[71.16351,21.96276],[71.16817,21.96397],[71.17912,21.95949],[71.17986,21.96474],[71.18259,21.96407],[71.19469,21.96745],[71.2011,21.97118],[71.199,22.00154],[71.1897,22.00565],[71.18835,22.01136],[71.19612,22.01364],[71.19957,22.01211],[71.20184,22.00881],[71.20883,22.0093],[71.22985,22.00585],[71.24433,22.0067],[71.24566,22.01096],[71.25169,22.01079],[71.25799,22.00202],[71.25619,21.99966],[71.25673,21.98987],[71.25449,21.98768],[71.25454,21.98487],[71.25307,21.98448],[71.25459,21.97881],[71.25245,21.97803],[71.25321,21.97173],[71.25489,21.96886],[71.2575,21.96904],[71.26116,21.96626],[71.25791,21.96417],[71.25843,21.96186],[71.25976,21.95857],[71.26317,21.95771],[71.27129,21.96157],[71.28026,21.96054],[71.29409,21.96253],[71.28879,21.97042],[71.2929,21.97134],[71.29354,21.97358],[71.29888,21.97315],[71.29926,21.97576],[71.29465,21.97784],[71.29468,21.98059],[71.29631,21.98147],[71.29401,21.98311],[71.29101,21.9928],[71.27761,22.0112],[71.28005,22.01245],[71.278,22.01889],[71.28441,22.01963],[71.28695,22.02178],[71.28747,22.0258],[71.29985,22.03184],[71.30017,22.03566],[71.30244,22.03579],[71.30335,22.04127],[71.31701,22.03786],[71.33057,22.03138],[71.33303,22.02629],[71.3322,22.01902],[71.33505,22.01707],[71.33398,22.00341],[71.33816,22.00461],[71.34086,22.00368],[71.33925,22.00163],[71.33996,21.99632],[71.34432,21.9824],[71.34821,21.98272],[71.34802,21.98432],[71.37151,21.98389],[71.38183,21.98913],[71.39129,21.98325],[71.39257,21.98062],[71.41762,21.99025],[71.42317,21.99048],[71.42617,21.99669],[71.43488,21.99739],[71.43752,21.99944],[71.44002,21.99861],[71.44125,22.00061],[71.44512,22.00059],[71.44862,21.99833],[71.45549,22.00202],[71.46257,22.00216],[71.46222,22.00364],[71.4664,22.00659],[71.46482,22.01272],[71.46143,22.01394],[71.45861,22.01971],[71.461,22.0287],[71.45917,22.03214],[71.46145,22.0358],[71.47298,22.03744],[71.4775,22.03949],[71.4781,22.04223],[71.48868,22.04642],[71.49051,22.04872],[71.48807,22.05529],[71.50047,22.05412],[71.50054,22.06665],[71.49832,22.06683],[71.49859,22.07494],[71.50207,22.07446],[71.50271,22.08375],[71.50006,22.10329],[71.50459,22.10987],[71.50918,22.11186],[71.49403,22.13547],[71.47638,22.13867],[71.47631,22.14593],[71.48516,22.16793],[71.4859,22.18699],[71.47766,22.1856],[71.47195,22.19361],[71.45046,22.2031],[71.44913,22.21071],[71.43499,22.20585],[71.43347,22.20815],[71.437,22.20879],[71.43491,22.2192],[71.46163,22.23046],[71.4602,22.23526],[71.46407,22.246],[71.46067,22.25596],[71.45512,22.25511],[71.45162,22.25185],[71.44299,22.25833],[71.44266,22.26015],[71.43609,22.2608],[71.43582,22.2487],[71.43074,22.24224],[71.42899,22.23567],[71.40726,22.22418],[71.39695,22.22292],[71.3915,22.22545],[71.39537,22.24827],[71.38999,22.24919],[71.39191,22.27793],[71.38154,22.27762],[71.38153,22.27278],[71.37794,22.27287],[71.3749,22.27495],[71.37337,22.27714],[71.37395,22.28008],[71.36892,22.28069],[71.36903,22.28352],[71.37221,22.28619],[71.37406,22.2913],[71.37259,22.29243],[71.37018,22.29317],[71.36629,22.29148],[71.3662,22.28464],[71.36127,22.26841],[71.34672,22.25889],[71.33525,22.266],[71.33406,22.26957],[71.32974,22.27179],[71.32748,22.27558],[71.31053,22.27999],[71.30528,22.26591],[71.30852,22.26284],[71.30451,22.2617],[71.30732,22.25326],[71.30367,22.25073],[71.29598,22.2514],[71.288,22.25429],[71.28246,22.26432],[71.2885,22.26719],[71.2861,22.26851],[71.28119,22.26859],[71.27918,22.2707],[71.27335,22.27164],[71.26919,22.26997],[71.26815,22.27177],[71.25731,22.27601],[71.23479,22.27605],[71.23541,22.2644],[71.23287,22.25202],[71.23076,22.25029],[71.22733,22.251],[71.22782,22.24914],[71.21847,22.24641],[71.21386,22.24254],[71.21511,22.23257],[71.22127,22.22754],[71.21741,22.21978],[71.22862,22.21727],[71.24156,22.22134],[71.25248,22.22157],[71.25977,22.22026],[71.2644,22.21469],[71.26937,22.21372],[71.27523,22.21388],[71.28168,22.21778],[71.29472,22.19286],[71.30289,22.18459],[71.30068,22.17574],[71.29695,22.17149],[71.29704,22.16792],[71.28907,22.16115],[71.27761,22.15932],[71.26765,22.16061],[71.25997,22.16583],[71.24955,22.16912],[71.24269,22.16479],[71.23352,22.16339],[71.23009,22.16526],[71.22434,22.1733],[71.22276,22.17944],[71.21751,22.18665],[71.19226,22.17462],[71.197,22.16392],[71.19022,22.16311],[71.17947,22.15692],[71.17558,22.15847],[71.17847,22.15107],[71.17725,22.1436],[71.15413,22.13515],[71.15094,22.13205],[71.14728,22.13257],[71.14603,22.12903],[71.1441,22.12941],[71.14424,22.12409],[71.14062,22.12365],[71.13718,22.1253],[71.12497,22.12449],[71.12243,22.12904],[71.11876,22.13032],[71.1182,22.13483],[71.12372,22.1377],[71.12697,22.14964],[71.13244,22.15447],[71.13715,22.15457],[71.15499,22.1647],[71.15906,22.16505],[71.16063,22.1681],[71.16275,22.18564],[71.14239,22.19181],[71.14232,22.1954],[71.13251,22.20409],[71.12985,22.21031],[71.12042,22.22117],[71.11266,22.23383],[71.11144,22.24044],[71.10812,22.2458],[71.11122,22.2473],[71.11242,22.25097],[71.1152,22.2517],[71.1156,22.25482],[71.10305,22.25687],[71.09769,22.25508],[71.09208,22.25737],[71.0877,22.25711],[71.08456,22.25474],[71.08189,22.2553],[71.078,22.26582],[71.07194,22.26775],[71.07247,22.27251],[71.06731,22.27589],[71.06396,22.27546],[71.06084,22.27874],[71.05705,22.27893],[71.06356,22.29646],[71.06483,22.30746],[71.05506,22.31111],[71.04218,22.32006],[71.04095,22.32232],[71.0295,22.32427],[71.02127,22.32975],[71.01866,22.33445],[71.01833,22.34015],[71.01614,22.34201],[71.0143,22.34769],[71.01483,22.35054],[71.01307,22.35429],[71.01412,22.35813],[71.01259,22.3584],[71.01907,22.36555],[71.01835,22.37802],[71.02665,22.37708],[71.02679,22.37856],[71.03157,22.37937],[71.04128,22.38591],[71.04069,22.38854],[71.03583,22.39112],[71.03387,22.39518],[71.02329,22.39898],[71.01272,22.41202],[71.00732,22.40986],[71.0062,22.40612],[71.00289,22.4033],[71.0,22.40402],[70.99146,22.40167],[70.98081,22.4149],[70.97242,22.41911],[70.95436,22.42417],[70.94885,22.42874],[70.94142,22.42488],[70.93618,22.42746],[70.93396,22.43714],[70.92835,22.44103],[70.92175,22.43892],[70.92011,22.4423],[70.91555,22.44041],[70.90494,22.44475],[70.89149,22.44292],[70.88033,22.45235],[70.87985,22.45483],[70.87385,22.4542],[70.87191,22.45959],[70.84821,22.4601],[70.84828,22.46423],[70.84329,22.46441],[70.83606,22.47109],[70.82959,22.46941],[70.82182,22.47028],[70.82254,22.47178],[70.81746,22.4766],[70.8146,22.47723],[70.81436,22.48288],[70.81225,22.47698],[70.80026,22.4745],[70.79706,22.48057],[70.7947,22.47985],[70.79217,22.48428],[70.78934,22.48473],[70.78295,22.49224],[70.78485,22.49843],[70.78158,22.50128],[70.77006,22.49866],[70.7549,22.49196],[70.75443,22.48343],[70.74704,22.48455],[70.74613,22.48268],[70.73937,22.48006],[70.73286,22.47452],[70.73101,22.463],[70.72789,22.46227],[70.71988,22.46232],[70.71667,22.46564],[70.71141,22.46808],[70.70937,22.4674],[70.7081,22.47002],[70.70401,22.47093],[70.70474,22.48508],[70.6863,22.48321],[70.68594,22.48087],[70.68995,22.48136],[70.69049,22.47921],[70.6964,22.47636],[70.69802,22.46896],[70.69444,22.4648],[70.69158,22.46439],[70.69241,22.46284],[70.68968,22.4589],[70.69027,22.45733],[70.68583,22.45433],[70.68762,22.45131],[70.68333,22.44916],[70.682,22.45817],[70.68008,22.46103],[70.65693,22.47445],[70.65858,22.47553],[70.66152,22.47358],[70.66664,22.47314],[70.66734,22.47947],[70.66679,22.48151],[70.66429,22.48146],[70.66225,22.48384],[70.66033,22.49194],[70.65643,22.48982],[70.65494,22.49136],[70.65911,22.50277],[70.65539,22.50069],[70.6515,22.50121],[70.65175,22.50343],[70.64753,22.50412],[70.64758,22.5069],[70.64288,22.50747],[70.64335,22.51119],[70.64142,22.51182],[70.6456,22.51246],[70.64411,22.51648],[70.62519,22.51023],[70.62275,22.52571],[70.61923,22.53256],[70.62379,22.53546],[70.6238,22.54365],[70.62602,22.5492],[70.63143,22.55319],[70.62835,22.55684],[70.63556,22.55831],[70.64004,22.56626],[70.64075,22.58046],[70.63431,22.57591],[70.63186,22.57579],[70.63121,22.57921],[70.62847,22.58088],[70.61994,22.58177],[70.61015,22.58619],[70.6051,22.58355],[70.6016,22.58973],[70.60589,22.59133],[70.60303,22.6001],[70.60385,22.60554],[70.59264,22.60699]],[[70.52069,22.46111],[70.52336,22.45492],[70.53786,22.4381],[70.53483,22.43828],[70.53423,22.4356],[70.529,22.43549],[70.52682,22.44356],[70.51564,22.45177],[70.51162,22.45694],[70.51084,22.45979],[70.51489,22.46108],[70.51677,22.45866],[70.51916,22.45955],[70.51804,22.46175],[70.52069,22.46111]],[[70.52083,22.41329],[70.5242,22.41444],[70.52471,22.41752],[70.52316,22.41949],[70.53487,22.4183],[70.53704,22.40232],[70.53275,22.40156],[70.53032,22.38759],[70.52577,22.38686],[70.51682,22.38858],[70.51472,22.3853],[70.5119,22.38692],[70.51314,22.38863],[70.51214,22.39073],[70.50956,22.38926],[70.50546,22.39287],[70.50676,22.39611],[70.51959,22.40177],[70.51963,22.40583],[70.51595,22.40558],[70.51595,22.40786],[70.51677,22.41189],[70.52083,22.41329]],[[70.76445,21.78305],[70.76579,21.79633],[70.77515,21.80241],[70.77847,21.80172],[70.78223,21.7922],[70.78897,21.78594],[70.78634,21.78149],[70.79221,21.78099],[70.79721,21.77863],[70.80154,21.77362],[70.79351,21.77008],[70.79295,21.76339],[70.78916,21.75869],[70.77707,21.75638],[70.76641,21.74928],[70.7603,21.76116],[70.75926,21.76629],[70.76289,21.76975],[70.76224,21.77482],[70.76445,21.78305]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"458","area_level":"District","area_name":"Sabar Kantha","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.08677,24.49812],[73.08178,24.49717],[73.08044,24.49424],[73.07786,24.49477],[73.07235,24.49165],[73.07306,24.48678],[73.07013,24.48687],[73.06803,24.48326],[73.06086,24.48361],[73.06108,24.48075],[73.0573,24.47769],[73.04857,24.47426],[73.04916,24.46877],[73.03707,24.46677],[73.03721,24.46444],[73.03523,24.46385],[73.03235,24.46688],[73.02894,24.46527],[73.02066,24.46585],[73.0201,24.46445],[73.01102,24.4666],[73.00382,24.46638],[73.00145,24.46928],[73.00607,24.47321],[73.00661,24.47574],[73.00425,24.48147],[73.00041,24.48363],[72.98912,24.47575],[72.98619,24.4694],[72.96796,24.45091],[72.97487,24.44948],[72.97316,24.44368],[72.97395,24.44116],[72.98048,24.43774],[72.98121,24.43438],[72.97631,24.42756],[72.97332,24.42654],[72.97008,24.41523],[72.96836,24.41494],[72.96671,24.41092],[72.96193,24.40593],[72.95519,24.40284],[72.95421,24.39148],[72.95967,24.39127],[72.97436,24.38275],[72.97754,24.37682],[72.97763,24.37352],[72.97483,24.36841],[72.96862,24.36798],[72.95947,24.36096],[72.96227,24.35829],[72.96297,24.35212],[72.96655,24.3487],[72.96566,24.33144],[72.96203,24.32172],[72.96713,24.31324],[72.97434,24.30725],[72.97845,24.30942],[72.98765,24.30656],[72.99674,24.30802],[73.00046,24.29807],[72.99898,24.29614],[73.00145,24.28906],[73.00657,24.28759],[73.00693,24.28337],[73.01347,24.27849],[73.01878,24.27775],[73.02262,24.28165],[73.02391,24.27645],[73.02802,24.27373],[73.02482,24.27046],[73.02444,24.26137],[73.01777,24.25041],[73.0139,24.23478],[73.00499,24.22892],[72.99699,24.22808],[72.99162,24.22347],[72.9892,24.20806],[72.99228,24.20158],[72.99369,24.19264],[72.9918,24.18402],[72.98551,24.17803],[72.97408,24.17363],[72.97186,24.16995],[72.96499,24.16657],[72.96059,24.16109],[72.95665,24.15901],[72.95352,24.15515],[72.95518,24.1525],[72.95293,24.14691],[72.95293,24.1386],[72.95166,24.13671],[72.9496,24.13884],[72.94293,24.13532],[72.9435,24.12785],[72.94247,24.12242],[72.94055,24.12075],[72.94172,24.11572],[72.94494,24.11356],[72.94639,24.10908],[72.9446,24.10426],[72.94023,24.10294],[72.9341,24.09761],[72.9275,24.08851],[72.92848,24.07721],[72.93074,24.0716],[72.92227,24.05925],[72.92117,24.04716],[72.92316,24.04068],[72.91804,24.03848],[72.91166,24.03194],[72.8987,24.0255],[72.88389,24.02807],[72.87472,24.02743],[72.85886,24.02095],[72.85199,24.01057],[72.85594,24.00043],[72.85703,23.98994],[72.85159,23.97318],[72.84551,23.96789],[72.82766,23.96166],[72.81843,23.948],[72.82947,23.93762],[72.83046,23.93153],[72.82737,23.92732],[72.80918,23.92023],[72.80481,23.91522],[72.80385,23.87578],[72.80245,23.86953],[72.79072,23.85124],[72.78856,23.8269],[72.78955,23.8219],[72.79407,23.81695],[72.79695,23.81507],[72.80317,23.81447],[72.8057,23.81226],[72.81091,23.80578],[72.81441,23.79801],[72.80458,23.78517],[72.80429,23.78153],[72.79817,23.77104],[72.79474,23.76022],[72.79677,23.75175],[72.80076,23.74606],[72.80102,23.73407],[72.81072,23.72259],[72.81482,23.70917],[72.82007,23.69992],[72.8301,23.68857],[72.83118,23.6805],[72.83404,23.67356],[72.83377,23.66335],[72.81786,23.64589],[72.81549,23.64037],[72.82487,23.6255],[72.83045,23.61967],[72.83497,23.61562],[72.84224,23.61333],[72.84034,23.60954],[72.84179,23.60426],[72.84002,23.60237],[72.82798,23.59492],[72.81473,23.59221],[72.81054,23.58962],[72.80693,23.58097],[72.80607,23.57026],[72.80875,23.56451],[72.83104,23.54597],[72.83278,23.53528],[72.8289,23.528],[72.82344,23.52294],[72.82714,23.51975],[72.83389,23.52057],[72.83384,23.51837],[72.82981,23.51763],[72.82746,23.51451],[72.82496,23.50078],[72.81827,23.50008],[72.80281,23.5075],[72.79785,23.50288],[72.79926,23.49525],[72.81417,23.48065],[72.81944,23.46961],[72.81276,23.45106],[72.80717,23.44057],[72.80202,23.43423],[72.79594,23.43071],[72.79346,23.42675],[72.79463,23.41997],[72.80312,23.41037],[72.80212,23.40594],[72.79767,23.40406],[72.79255,23.40476],[72.78733,23.40703],[72.77857,23.41473],[72.77168,23.41523],[72.75985,23.40731],[72.74092,23.40576],[72.73413,23.40333],[72.72686,23.39822],[72.72344,23.38978],[72.72348,23.38857],[72.73071,23.38869],[72.74069,23.39316],[72.75274,23.38722],[72.75178,23.38291],[72.74659,23.37456],[72.76448,23.36737],[72.76076,23.35875],[72.76502,23.35474],[72.77501,23.3565],[72.78703,23.35404],[72.79436,23.35772],[72.79776,23.35554],[72.80014,23.35544],[72.80055,23.35709],[72.80777,23.35586],[72.8048,23.34794],[72.80456,23.33415],[72.79692,23.33153],[72.80144,23.31885],[72.81029,23.31887],[72.8259,23.33034],[72.82833,23.32894],[72.83377,23.33149],[72.83617,23.33121],[72.83613,23.32837],[72.84392,23.32541],[72.84915,23.31951],[72.8544,23.31771],[72.85486,23.31542],[72.86504,23.3135],[72.87118,23.31497],[72.88323,23.313],[72.88523,23.31864],[72.88435,23.32245],[72.89427,23.3248],[72.90842,23.32497],[72.91616,23.3222],[72.9126,23.31776],[72.91374,23.31677],[72.91231,23.30373],[72.91416,23.29667],[72.91058,23.29719],[72.89633,23.29343],[72.89142,23.29461],[72.88445,23.29332],[72.88369,23.28842],[72.88954,23.28582],[72.89352,23.282],[72.89883,23.28114],[72.91499,23.29087],[72.92045,23.29105],[72.91897,23.26376],[72.92705,23.25868],[72.92722,23.249],[72.92924,23.24895],[72.92931,23.24654],[72.93216,23.24681],[72.92994,23.24277],[72.93361,23.24375],[72.93614,23.23906],[72.94451,23.24145],[72.94611,23.24492],[72.94489,23.25053],[72.94786,23.25258],[72.95039,23.25105],[72.95565,23.24071],[72.95983,23.24142],[72.96329,23.25175],[72.95917,23.25355],[72.95978,23.25919],[72.96305,23.26032],[72.96624,23.25626],[72.96932,23.25577],[72.97061,23.25729],[72.96772,23.26007],[72.97016,23.26521],[72.97221,23.2655],[72.97535,23.26296],[72.97837,23.26399],[72.97763,23.26693],[72.96653,23.27372],[72.96582,23.27593],[72.95874,23.27539],[72.95782,23.27742],[72.96014,23.28078],[72.96981,23.28026],[72.9778,23.28458],[72.9871,23.28253],[72.99062,23.28452],[72.99493,23.29029],[73.00521,23.28236],[73.01641,23.2791],[73.0227,23.27504],[73.04821,23.28228],[73.05364,23.28526],[73.05586,23.27579],[73.05446,23.27387],[73.05082,23.27301],[73.05058,23.27152],[73.05502,23.26765],[73.05419,23.26482],[73.06679,23.25795],[73.07261,23.26231],[73.07893,23.26372],[73.08147,23.26607],[73.0827,23.271],[73.09009,23.27362],[73.09106,23.27529],[73.08816,23.27738],[73.08912,23.27998],[73.08056,23.28821],[73.07842,23.29291],[73.08057,23.3012],[73.08641,23.30935],[73.08636,23.31482],[73.09204,23.31501],[73.09815,23.31827],[73.1033,23.32462],[73.09996,23.33522],[73.10157,23.34113],[73.10055,23.34551],[73.10292,23.34853],[73.097,23.35164],[73.09298,23.35762],[73.08586,23.35789],[73.08948,23.36283],[73.08716,23.36394],[73.0874,23.36743],[73.07324,23.37292],[73.07508,23.37595],[73.09289,23.3842],[73.09218,23.37567],[73.10542,23.37645],[73.11107,23.37207],[73.1146,23.37131],[73.12036,23.3722],[73.12034,23.37397],[73.13101,23.37907],[73.13529,23.39595],[73.12484,23.41075],[73.12481,23.41442],[73.13591,23.4148],[73.1373,23.41126],[73.14403,23.41421],[73.14347,23.41752],[73.14126,23.41782],[73.14261,23.42036],[73.14068,23.42288],[73.13185,23.41902],[73.1296,23.42063],[73.12264,23.41668],[73.12303,23.43489],[73.12695,23.44153],[73.11697,23.45338],[73.12026,23.46131],[73.12273,23.46091],[73.12229,23.46314],[73.12499,23.4632],[73.12116,23.46344],[73.12028,23.46642],[73.12349,23.46819],[73.12531,23.47207],[73.12987,23.47257],[73.1305,23.47931],[73.13845,23.48164],[73.14859,23.47926],[73.1502,23.48083],[73.15538,23.4759],[73.15628,23.4821],[73.16297,23.49573],[73.16784,23.50016],[73.16647,23.50381],[73.17003,23.51692],[73.17137,23.51687],[73.16864,23.52128],[73.17245,23.52266],[73.17044,23.52442],[73.16834,23.52375],[73.16588,23.52655],[73.16631,23.5298],[73.16255,23.53426],[73.16333,23.53648],[73.16014,23.53792],[73.15976,23.53987],[73.16205,23.54313],[73.16132,23.54524],[73.16961,23.54806],[73.17217,23.55103],[73.17827,23.55049],[73.17913,23.55397],[73.19608,23.55442],[73.19677,23.55652],[73.19376,23.56042],[73.19317,23.56474],[73.19503,23.56531],[73.19618,23.56852],[73.19404,23.57017],[73.19301,23.57494],[73.19842,23.57983],[73.20169,23.57799],[73.20252,23.58284],[73.20696,23.58964],[73.20459,23.59211],[73.20384,23.59632],[73.20685,23.60089],[73.20884,23.61247],[73.2176,23.61197],[73.22661,23.61697],[73.22575,23.62819],[73.22935,23.63356],[73.24213,23.63332],[73.24458,23.63064],[73.24377,23.62491],[73.24489,23.62332],[73.25,23.62935],[73.24444,23.63213],[73.23836,23.64373],[73.24095,23.64674],[73.24963,23.64986],[73.255,23.65848],[73.24558,23.66368],[73.2425,23.66342],[73.23353,23.66718],[73.23696,23.67838],[73.23711,23.68499],[73.23047,23.69152],[73.21233,23.68431],[73.20953,23.68781],[73.19492,23.69549],[73.19296,23.70113],[73.18994,23.70123],[73.18908,23.7064],[73.19045,23.70913],[73.18847,23.71569],[73.19161,23.71984],[73.19025,23.72134],[73.19044,23.72589],[73.17631,23.7282],[73.17471,23.72317],[73.17232,23.7213],[73.17273,23.72922],[73.175,23.7315],[73.17388,23.73527],[73.15526,23.73605],[73.16022,23.74701],[73.16266,23.75931],[73.16461,23.75967],[73.16534,23.76583],[73.17034,23.77637],[73.17168,23.77815],[73.18442,23.77718],[73.18597,23.78074],[73.19289,23.78676],[73.19425,23.79166],[73.18993,23.79386],[73.18014,23.79216],[73.18232,23.7982],[73.18192,23.79985],[73.17525,23.80315],[73.1773,23.80432],[73.17733,23.80706],[73.16896,23.80967],[73.17196,23.8145],[73.17737,23.82054],[73.18233,23.82247],[73.19298,23.82229],[73.19789,23.82468],[73.20252,23.82371],[73.2039,23.82868],[73.21205,23.83591],[73.21627,23.84421],[73.22083,23.84815],[73.22539,23.85632],[73.22451,23.85913],[73.2263,23.8619],[73.22501,23.86622],[73.22617,23.87144],[73.22271,23.88343],[73.22696,23.88602],[73.23441,23.8851],[73.23841,23.88738],[73.24214,23.88666],[73.24163,23.87664],[73.24971,23.85817],[73.25754,23.85245],[73.26769,23.84804],[73.27233,23.84368],[73.27341,23.83934],[73.27751,23.83618],[73.28356,23.83311],[73.28879,23.8329],[73.29243,23.84004],[73.29646,23.83891],[73.29921,23.84547],[73.2991,23.84987],[73.30525,23.85914],[73.30025,23.86217],[73.30094,23.86367],[73.29824,23.86629],[73.28704,23.87201],[73.2902,23.88462],[73.29481,23.88907],[73.30753,23.88987],[73.31263,23.88101],[73.32109,23.8841],[73.3252,23.88884],[73.34218,23.88362],[73.34399,23.88722],[73.3422,23.89604],[73.34305,23.90026],[73.35731,23.91035],[73.35885,23.90891],[73.36417,23.9094],[73.36529,23.90515],[73.37665,23.90624],[73.37863,23.90453],[73.38382,23.90886],[73.38746,23.91591],[73.39069,23.91797],[73.39516,23.91902],[73.40039,23.91683],[73.40652,23.91651],[73.40899,23.92158],[73.41455,23.92159],[73.42006,23.92488],[73.42048,23.92683],[73.42053,23.93183],[73.41692,23.93465],[73.4163,23.93787],[73.41324,23.93916],[73.41491,23.94458],[73.41303,23.94596],[73.41421,23.955],[73.41323,23.95883],[73.41604,23.97016],[73.41496,23.98578],[73.40458,23.9908],[73.39788,23.98951],[73.40375,23.9933],[73.40799,24.00809],[73.40666,24.01852],[73.39848,24.03751],[73.40276,24.03848],[73.40255,24.0443],[73.39719,24.0506],[73.3947,24.05101],[73.39521,24.05282],[73.38625,24.06473],[73.3703,24.07637],[73.36737,24.07583],[73.36532,24.07906],[73.36087,24.08128],[73.36205,24.08628],[73.36071,24.08749],[73.36088,24.09631],[73.36284,24.10063],[73.36176,24.10485],[73.34778,24.10638],[73.34408,24.10017],[73.33903,24.09841],[73.33575,24.09979],[73.33489,24.10288],[73.3334,24.10325],[73.33301,24.10869],[73.32701,24.10922],[73.32212,24.09682],[73.32595,24.07696],[73.32397,24.07413],[73.32406,24.06964],[73.31632,24.0576],[73.31739,24.05321],[73.30835,24.04793],[73.30732,24.04566],[73.30045,24.04631],[73.29736,24.04353],[73.29063,24.03326],[73.28985,24.02666],[73.28673,24.02467],[73.28614,24.02177],[73.28311,24.01887],[73.27938,24.02031],[73.27548,24.0191],[73.27047,24.02103],[73.26533,24.02032],[73.261,24.01771],[73.25844,24.01197],[73.25237,24.00948],[73.24933,24.00319],[73.24279,24.00228],[73.23988,24.00343],[73.23741,24.00744],[73.23663,24.01234],[73.23353,24.01255],[73.22975,24.01567],[73.22937,24.02211],[73.21074,24.02885],[73.21086,24.03153],[73.20891,24.03389],[73.19955,24.03623],[73.19314,24.041],[73.20238,24.05099],[73.20531,24.06139],[73.21265,24.07585],[73.20119,24.08003],[73.19435,24.08516],[73.1837,24.08546],[73.18357,24.08958],[73.17514,24.09422],[73.15892,24.09833],[73.15499,24.10869],[73.15719,24.10953],[73.15353,24.11278],[73.13812,24.12221],[73.13001,24.12228],[73.12522,24.12486],[73.12216,24.13065],[73.11042,24.14231],[73.10637,24.14201],[73.10343,24.14375],[73.10386,24.14988],[73.09916,24.15947],[73.07413,24.18053],[73.06971,24.19098],[73.06545,24.1939],[73.07093,24.19679],[73.07703,24.20518],[73.07927,24.2051],[73.07671,24.21396],[73.07901,24.22059],[73.09223,24.22334],[73.09712,24.23108],[73.09014,24.23383],[73.08804,24.23263],[73.08791,24.23382],[73.09338,24.23798],[73.09536,24.24935],[73.1036,24.25549],[73.10715,24.26394],[73.11834,24.26868],[73.12029,24.27204],[73.12395,24.27124],[73.12545,24.27343],[73.13099,24.28867],[73.13544,24.30843],[73.14087,24.31109],[73.16652,24.29925],[73.16922,24.3003],[73.17359,24.30859],[73.17372,24.31906],[73.17623,24.32473],[73.17456,24.33007],[73.17656,24.33428],[73.17635,24.33788],[73.18166,24.34332],[73.18621,24.33974],[73.18659,24.33546],[73.1885,24.33363],[73.19857,24.33193],[73.20626,24.35126],[73.20903,24.35216],[73.21926,24.3639],[73.21721,24.36752],[73.20668,24.37466],[73.19919,24.37651],[73.18147,24.36625],[73.17137,24.35542],[73.16482,24.356],[73.15856,24.3541],[73.15534,24.35614],[73.15257,24.35384],[73.14589,24.35673],[73.13347,24.36665],[73.131,24.3656],[73.1243,24.36729],[73.12092,24.37009],[73.11186,24.37341],[73.1076,24.37753],[73.10534,24.38259],[73.10227,24.38172],[73.10269,24.38743],[73.10002,24.39039],[73.09006,24.38625],[73.0875,24.38663],[73.0765,24.3966],[73.08112,24.40128],[73.08672,24.41253],[73.09019,24.41409],[73.10025,24.4261],[73.10283,24.43301],[73.09839,24.44801],[73.10006,24.45427],[73.10328,24.45576],[73.10182,24.47081],[73.09381,24.47154],[73.09113,24.4751],[73.09589,24.49012],[73.08677,24.49812]],[[73.15301,23.49567],[73.15599,23.49933],[73.15853,23.49763],[73.15301,23.49567]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"459","area_level":"District","area_name":"Surat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.06214,21.56544],[73.05506,21.56926],[73.04688,21.56344],[73.04808,21.54913],[73.04686,21.54433],[73.04844,21.54214],[73.03992,21.53867],[73.0366,21.53467],[73.03906,21.52443],[73.05388,21.50689],[73.05672,21.50087],[73.05588,21.48896],[73.05375,21.48524],[73.05473,21.48415],[73.04667,21.48042],[73.04324,21.48166],[73.04377,21.47783],[73.04217,21.4771],[73.04035,21.47782],[73.03672,21.4848],[73.02614,21.48274],[73.02497,21.48694],[73.02262,21.48837],[73.02456,21.49049],[73.02274,21.49163],[73.02355,21.49278],[73.02101,21.49103],[73.02042,21.49515],[73.01691,21.49708],[73.01852,21.50461],[73.01805,21.51268],[73.02066,21.52125],[73.01781,21.52169],[73.01613,21.52555],[73.00786,21.52401],[73.00549,21.53057],[73.00416,21.53042],[72.99796,21.53985],[72.99123,21.54298],[72.98472,21.54013],[72.9871,21.53168],[72.98379,21.52284],[72.95713,21.51899],[72.94128,21.51247],[72.94278,21.50193],[72.95107,21.49092],[72.95285,21.48397],[72.93827,21.47358],[72.92332,21.46938],[72.92397,21.45887],[72.92156,21.45269],[72.91364,21.44286],[72.91072,21.43278],[72.90677,21.43002],[72.89944,21.43041],[72.8937,21.43339],[72.88892,21.43938],[72.88753,21.44492],[72.88189,21.44256],[72.87675,21.43779],[72.87518,21.4341],[72.87096,21.43635],[72.86805,21.43354],[72.8702,21.44132],[72.87619,21.44391],[72.87781,21.44641],[72.87667,21.45094],[72.87101,21.45604],[72.86865,21.4525],[72.86785,21.4441],[72.85843,21.44742],[72.85347,21.45284],[72.85075,21.4535],[72.84597,21.44972],[72.84109,21.45051],[72.83706,21.44861],[72.83328,21.44016],[72.82626,21.43658],[72.82582,21.42989],[72.82315,21.42615],[72.81351,21.42215],[72.80602,21.42561],[72.79635,21.4223],[72.78745,21.42164],[72.78311,21.42848],[72.78833,21.44633],[72.78692,21.45825],[72.78389,21.45967],[72.77319,21.45638],[72.76761,21.45379],[72.76641,21.44884],[72.76366,21.45019],[72.76114,21.44869],[72.75204,21.45471],[72.75308,21.46215],[72.75041,21.4669],[72.74379,21.46689],[72.74053,21.47289],[72.73497,21.47477],[72.71741,21.46704],[72.70582,21.46691],[72.69644,21.46396],[72.69166,21.46001],[72.68112,21.44132],[72.67662,21.43882],[72.66515,21.43626],[72.65289,21.4214],[72.64143,21.41209],[72.62472,21.40056],[72.60992,21.3947],[72.60117,21.38862],[72.60098,21.32767],[72.59795,21.31737],[72.5975,21.30554],[72.60034,21.28987],[72.61046,21.28076],[72.60806,21.27351],[72.60932,21.26892],[72.61983,21.25368],[72.62226,21.24259],[72.63045,21.23435],[72.64523,21.22516],[72.65735,21.22465],[72.65568,21.22233],[72.65559,21.21802],[72.6521,21.21469],[72.63806,21.21111],[72.63933,21.20277],[72.63456,21.19052],[72.62862,21.14412],[72.62522,21.12985],[72.61906,21.11462],[72.62061,21.09789],[72.62325,21.09308],[72.6312,21.08619],[72.63806,21.08454],[72.64482,21.08613],[72.6489,21.08972],[72.65224,21.09739],[72.65808,21.1045],[72.66496,21.10834],[72.66982,21.11504],[72.66987,21.10586],[72.67544,21.10327],[72.68633,21.09392],[72.68431,21.08805],[72.68479,21.08297],[72.69558,21.08479],[72.69546,21.09517],[72.70247,21.09616],[72.70416,21.08995],[72.70331,21.08684],[72.70845,21.08072],[72.73624,21.07663],[72.74119,21.07446],[72.74099,21.0705],[72.75316,21.06274],[72.77515,21.06221],[72.78342,21.06541],[72.7929,21.07355],[72.81411,21.05566],[72.82657,21.05934],[72.83123,21.05551],[72.83416,21.05003],[72.83289,21.03696],[72.83579,21.03416],[72.83922,21.03537],[72.84191,21.04361],[72.84514,21.04697],[72.84702,21.04628],[72.85281,21.03754],[72.86083,21.03741],[72.85735,21.04287],[72.85672,21.0499],[72.86261,21.05279],[72.87112,21.04918],[72.87098,21.05615],[72.8812,21.05527],[72.88342,21.0499],[72.88803,21.04793],[72.89037,21.06087],[72.89199,21.06218],[72.89567,21.05155],[72.90804,21.04171],[72.91364,21.04013],[72.92822,21.04254],[72.9292,21.04399],[72.92587,21.0464],[72.92636,21.05184],[72.93013,21.0514],[72.94098,21.05913],[72.94564,21.05915],[72.94828,21.06586],[72.95217,21.0695],[72.96255,21.06578],[72.96113,21.07215],[72.96203,21.07413],[72.9643,21.0739],[72.96969,21.0688],[72.96878,21.06423],[72.96395,21.05985],[72.96453,21.05811],[72.97732,21.06521],[72.98184,21.06402],[72.98326,21.06085],[72.99095,21.06257],[72.9953,21.0598],[72.99785,21.06285],[72.99568,21.07208],[72.98993,21.07489],[72.99057,21.07765],[72.99373,21.07943],[72.99986,21.06965],[73.00445,21.06869],[73.00657,21.06994],[73.00735,21.06678],[73.01492,21.06507],[73.01853,21.05792],[73.01852,21.04971],[73.01266,21.04792],[73.01348,21.03623],[73.00708,21.03331],[73.00852,21.0223],[73.01154,21.02192],[73.01505,21.01882],[73.02169,21.02115],[73.0252,21.02043],[73.03083,21.00763],[73.03434,21.00443],[73.03881,21.0066],[73.04913,20.99284],[73.05632,20.98821],[73.05686,20.985],[73.05973,20.98552],[73.06349,20.98381],[73.06238,20.97817],[73.06516,20.97475],[73.06818,20.97605],[73.06911,20.97416],[73.07218,20.97397],[73.07386,20.97717],[73.07523,20.97402],[73.07405,20.97331],[73.07653,20.97132],[73.07991,20.97039],[73.08159,20.9726],[73.08059,20.96904],[73.08285,20.96607],[73.08465,20.96799],[73.08828,20.96718],[73.08912,20.96235],[73.08772,20.96159],[73.08994,20.95993],[73.0881,20.9585],[73.08941,20.9585],[73.08832,20.95651],[73.09216,20.9541],[73.08979,20.95111],[73.09195,20.95046],[73.09132,20.94687],[73.08935,20.94545],[73.092,20.94307],[73.09033,20.9409],[73.09228,20.93691],[73.09706,20.93418],[73.09874,20.93034],[73.1071,20.92966],[73.10984,20.9269],[73.1256,20.92271],[73.12572,20.89757],[73.13488,20.89771],[73.13682,20.89959],[73.13775,20.90459],[73.14006,20.90548],[73.14604,20.90576],[73.1567,20.90084],[73.16618,20.90279],[73.17207,20.89928],[73.17877,20.88977],[73.18272,20.89042],[73.18509,20.88897],[73.18421,20.88617],[73.18806,20.87793],[73.18929,20.86943],[73.19538,20.87039],[73.19561,20.85984],[73.21216,20.86151],[73.21479,20.85731],[73.21663,20.85875],[73.22278,20.85609],[73.22218,20.85527],[73.22686,20.85617],[73.22981,20.85299],[73.23409,20.85184],[73.23541,20.84934],[73.23932,20.85194],[73.24751,20.84855],[73.2473,20.8437],[73.24426,20.83894],[73.24397,20.83259],[73.24759,20.82537],[73.25315,20.82354],[73.2535,20.81991],[73.27207,20.82086],[73.27846,20.81671],[73.28071,20.82062],[73.28386,20.81846],[73.28893,20.81876],[73.29189,20.81559],[73.30013,20.81692],[73.30208,20.81895],[73.29946,20.82293],[73.30341,20.82841],[73.30536,20.83529],[73.30279,20.83705],[73.30627,20.83863],[73.3064,20.84149],[73.31098,20.83987],[73.31286,20.84149],[73.31232,20.84762],[73.30894,20.84969],[73.30634,20.84898],[73.30216,20.85057],[73.30183,20.85425],[73.30389,20.86207],[73.30372,20.86947],[73.30658,20.87833],[73.31109,20.88164],[73.3167,20.87993],[73.31785,20.8922],[73.31558,20.90233],[73.30812,20.90776],[73.30745,20.9128],[73.30337,20.91238],[73.2946,20.91826],[73.29296,20.92498],[73.29066,20.92908],[73.28813,20.93027],[73.28845,20.9324],[73.2842,20.92934],[73.27581,20.92857],[73.27432,20.92582],[73.27257,20.92657],[73.2727,20.92532],[73.26808,20.92498],[73.26402,20.92232],[73.26019,20.92253],[73.26076,20.92452],[73.25866,20.92756],[73.25916,20.94359],[73.25527,20.94758],[73.25114,20.94912],[73.24389,20.94833],[73.23674,20.95227],[73.23,20.95072],[73.22822,20.95261],[73.21376,20.95528],[73.20976,20.95754],[73.21225,20.95985],[73.21201,20.96181],[73.21484,20.96231],[73.22194,20.96772],[73.22516,20.97612],[73.23654,20.9814],[73.24054,20.99138],[73.22629,21.00976],[73.21377,21.01105],[73.20734,21.0146],[73.20444,21.01917],[73.2039,21.02206],[73.20529,21.02355],[73.20111,21.02648],[73.20126,21.028],[73.20534,21.03048],[73.21229,21.03872],[73.20977,21.05148],[73.20338,21.05208],[73.20166,21.05749],[73.19989,21.05826],[73.20062,21.07175],[73.19814,21.07514],[73.19847,21.07761],[73.203,21.07661],[73.20373,21.07817],[73.20868,21.07671],[73.21199,21.07808],[73.21425,21.07685],[73.21571,21.08097],[73.22317,21.07918],[73.22495,21.08789],[73.22406,21.09115],[73.22662,21.09057],[73.22759,21.09218],[73.247,21.08855],[73.24725,21.09208],[73.25308,21.09285],[73.25027,21.1079],[73.2471,21.11209],[73.24709,21.11457],[73.22715,21.11741],[73.22626,21.12903],[73.22332,21.13387],[73.2296,21.13364],[73.23106,21.12996],[73.23426,21.12896],[73.24714,21.1286],[73.25387,21.12209],[73.25819,21.12471],[73.26034,21.1327],[73.26926,21.13166],[73.27111,21.1381],[73.26937,21.13891],[73.27066,21.14745],[73.28481,21.15648],[73.28377,21.16265],[73.28551,21.16447],[73.28666,21.17254],[73.28535,21.18107],[73.28311,21.18433],[73.2886,21.19658],[73.29965,21.19662],[73.30831,21.19978],[73.30813,21.20154],[73.33416,21.21456],[73.33411,21.21685],[73.34259,21.21911],[73.34271,21.21703],[73.34583,21.21452],[73.35734,21.21701],[73.36353,21.21652],[73.36461,21.2196],[73.37507,21.2253],[73.37545,21.23868],[73.37734,21.23885],[73.37699,21.2411],[73.37103,21.24937],[73.36799,21.26187],[73.36419,21.26483],[73.36499,21.26897],[73.37817,21.27033],[73.39757,21.2766],[73.41242,21.27807],[73.4269,21.27559],[73.44221,21.26783],[73.4453,21.27649],[73.44833,21.27745],[73.44891,21.28835],[73.44571,21.30283],[73.44748,21.30757],[73.44299,21.30889],[73.43949,21.31542],[73.43227,21.31394],[73.43472,21.31572],[73.44016,21.32611],[73.43793,21.33596],[73.43874,21.34533],[73.4494,21.37192],[73.45368,21.37697],[73.45476,21.38394],[73.49344,21.38131],[73.51005,21.37874],[73.50971,21.36821],[73.51178,21.35738],[73.51388,21.35358],[73.52053,21.35354],[73.52479,21.35025],[73.52712,21.35221],[73.52499,21.35643],[73.5256,21.3649],[73.53054,21.36494],[73.53265,21.36781],[73.53644,21.36914],[73.53929,21.36876],[73.53944,21.36643],[73.54547,21.36367],[73.55711,21.36786],[73.55962,21.36497],[73.56623,21.36485],[73.57978,21.36953],[73.58086,21.36702],[73.58507,21.36838],[73.58973,21.36573],[73.5938,21.37065],[73.59749,21.36806],[73.60196,21.37121],[73.60885,21.37044],[73.60986,21.37216],[73.60874,21.37583],[73.61328,21.37845],[73.61566,21.37623],[73.61895,21.37834],[73.62346,21.37757],[73.62714,21.37962],[73.64435,21.38243],[73.65231,21.3808],[73.66515,21.38264],[73.67817,21.38724],[73.68462,21.39322],[73.69913,21.39636],[73.69251,21.402],[73.69127,21.41672],[73.69396,21.42107],[73.69534,21.42821],[73.68837,21.43828],[73.68978,21.44648],[73.67634,21.47276],[73.67371,21.47405],[73.66977,21.47192],[73.66663,21.47245],[73.65216,21.48029],[73.64475,21.47932],[73.64265,21.47723],[73.63524,21.47745],[73.62866,21.47288],[73.60952,21.47374],[73.60693,21.47251],[73.6061,21.47688],[73.60017,21.48454],[73.59495,21.48465],[73.58043,21.48083],[73.56472,21.47483],[73.55505,21.47453],[73.54996,21.4771],[73.5481,21.4803],[73.53656,21.4785],[73.52788,21.47943],[73.52392,21.4833],[73.51566,21.48322],[73.51073,21.48745],[73.49445,21.48565],[73.49361,21.49087],[73.48953,21.49062],[73.48608,21.49447],[73.48488,21.50459],[73.48926,21.51386],[73.48802,21.51538],[73.46834,21.50829],[73.46535,21.51992],[73.45842,21.52242],[73.4528,21.52795],[73.44284,21.52453],[73.43217,21.52353],[73.4266,21.52462],[73.41586,21.52085],[73.41552,21.51443],[73.41235,21.51135],[73.39903,21.50883],[73.3877,21.51608],[73.37694,21.51937],[73.36732,21.51728],[73.35746,21.51841],[73.34602,21.5221],[73.34746,21.52095],[73.34762,21.51712],[73.34149,21.50819],[73.33985,21.50217],[73.32363,21.4878],[73.32439,21.48547],[73.30647,21.50175],[73.30649,21.50502],[73.3093,21.50789],[73.29711,21.50887],[73.28679,21.50662],[73.27575,21.5082],[73.27262,21.51087],[73.26853,21.50953],[73.26623,21.5057],[73.26277,21.50364],[73.25654,21.50383],[73.25529,21.50166],[73.25756,21.49793],[73.25024,21.49395],[73.24454,21.49571],[73.23412,21.49394],[73.2322,21.49589],[73.23035,21.49514],[73.22886,21.49698],[73.22633,21.49707],[73.22689,21.49798],[73.22346,21.49776],[73.21564,21.50482],[73.1887,21.50679],[73.18148,21.50326],[73.17159,21.49533],[73.14136,21.49817],[73.14297,21.49525],[73.14205,21.49439],[73.13318,21.49486],[73.13363,21.48892],[73.12745,21.48892],[73.1194,21.48373],[73.11739,21.48494],[73.11919,21.48952],[73.1157,21.4981],[73.11148,21.49982],[73.10485,21.49886],[73.10123,21.50011],[73.10512,21.50462],[73.1034,21.50798],[73.0778,21.5054],[73.07742,21.5071],[73.08009,21.50886],[73.07829,21.54355],[73.07371,21.55587],[73.06869,21.563],[73.06506,21.56567],[73.06214,21.56544]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"46","area_level":"District","area_name":"Bageshwar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.99841,30.31642],[79.98685,30.31646],[79.97693,30.29889],[79.96715,30.29566],[79.96155,30.29175],[79.95468,30.29007],[79.94243,30.29849],[79.93181,30.29834],[79.91875,30.28747],[79.91319,30.2869],[79.90153,30.28164],[79.89833,30.2764],[79.87332,30.27106],[79.86183,30.28004],[79.85417,30.28309],[79.85185,30.28608],[79.84435,30.28812],[79.83666,30.28758],[79.82535,30.28986],[79.81319,30.28553],[79.79952,30.2843],[79.79726,30.27874],[79.80394,30.26917],[79.8041,30.26077],[79.80638,30.25985],[79.81262,30.24949],[79.81776,30.24538],[79.81504,30.23772],[79.81932,30.2347],[79.8221,30.22648],[79.81502,30.21702],[79.80838,30.21529],[79.80569,30.21277],[79.80173,30.21266],[79.7996,30.20354],[79.79145,30.18813],[79.78602,30.18482],[79.78281,30.18068],[79.78107,30.1716],[79.78643,30.16534],[79.78212,30.15228],[79.76661,30.14346],[79.76305,30.133],[79.773,30.1284],[79.77448,30.12078],[79.7817,30.11295],[79.7772,30.09775],[79.78585,30.08711],[79.78871,30.08042],[79.79162,30.07769],[79.80482,30.07871],[79.81107,30.07625],[79.82425,30.06552],[79.82904,30.05907],[79.8242,30.0521],[79.81619,30.04769],[79.81086,30.02994],[79.81293,30.02273],[79.79827,30.0158],[79.78914,30.01623],[79.78226,30.00771],[79.77796,30.0058],[79.77385,30.00611],[79.76595,30.01012],[79.75032,30.00675],[79.74845,30.00484],[79.74254,30.00391],[79.73694,30.00565],[79.72861,30.00194],[79.7207,30.00134],[79.70875,30.00423],[79.69472,30.00428],[79.68797,30.00811],[79.67996,30.00948],[79.66924,30.00888],[79.66635,30.00519],[79.66309,30.00479],[79.65466,30.0121],[79.64589,30.01444],[79.6378,30.01978],[79.63209,30.02008],[79.62628,30.01737],[79.62063,30.01776],[79.61517,30.02029],[79.61013,30.02011],[79.60202,30.01457],[79.59634,30.01328],[79.59529,30.01011],[79.58838,30.0068],[79.58744,30.00448],[79.57901,30.00588],[79.5661,30.00235],[79.56246,30.00339],[79.54977,29.99811],[79.54772,29.99583],[79.5329,29.99992],[79.52689,30.00532],[79.52316,30.01347],[79.49848,30.0154],[79.49256,30.02212],[79.48409,30.0233],[79.47211,29.99765],[79.4706,29.98919],[79.47164,29.97947],[79.47753,29.97764],[79.47879,29.97558],[79.48469,29.97501],[79.48824,29.97134],[79.48689,29.9623],[79.48253,29.95805],[79.48721,29.95521],[79.49209,29.94924],[79.49153,29.92663],[79.49422,29.89619],[79.50775,29.87349],[79.51961,29.8717],[79.52266,29.86923],[79.52823,29.8679],[79.5416,29.86841],[79.55397,29.86431],[79.5599,29.85945],[79.56841,29.86329],[79.57513,29.86395],[79.5795,29.85621],[79.58519,29.85164],[79.59568,29.8491],[79.61051,29.8412],[79.61838,29.84533],[79.62282,29.84282],[79.62586,29.84571],[79.63142,29.84653],[79.63532,29.84959],[79.63948,29.84839],[79.63925,29.84112],[79.64072,29.84079],[79.65616,29.84097],[79.65965,29.83895],[79.67016,29.84328],[79.67317,29.84114],[79.67626,29.83448],[79.69494,29.82729],[79.7045,29.82778],[79.70794,29.82586],[79.6973,29.81492],[79.69185,29.81457],[79.68899,29.81051],[79.69293,29.80768],[79.69723,29.80702],[79.70376,29.79718],[79.70248,29.78837],[79.69626,29.7826],[79.69729,29.77694],[79.69534,29.77288],[79.69623,29.76553],[79.70378,29.76164],[79.70469,29.75696],[79.70817,29.7534],[79.70855,29.74662],[79.71452,29.7399],[79.72056,29.7378],[79.72171,29.73061],[79.72905,29.7278],[79.73461,29.71871],[79.7459,29.70984],[79.75232,29.70834],[79.75836,29.70091],[79.76739,29.70531],[79.77287,29.70605],[79.7803,29.71151],[79.7939,29.70701],[79.80458,29.71598],[79.80645,29.71509],[79.80699,29.71228],[79.81468,29.71156],[79.81685,29.7139],[79.81936,29.71091],[79.82078,29.71268],[79.82252,29.71055],[79.8237,29.71301],[79.82849,29.70978],[79.8335,29.71028],[79.84031,29.71716],[79.85064,29.71474],[79.86152,29.71455],[79.86477,29.71088],[79.86759,29.71419],[79.87404,29.71521],[79.89399,29.71221],[79.89123,29.71815],[79.88585,29.72048],[79.87738,29.73142],[79.86836,29.73879],[79.84531,29.74472],[79.84062,29.74805],[79.83264,29.74995],[79.82663,29.75947],[79.82704,29.76953],[79.82095,29.77322],[79.82372,29.77714],[79.82206,29.78152],[79.84437,29.77729],[79.85035,29.77141],[79.85732,29.76797],[79.86068,29.76908],[79.86986,29.76746],[79.87527,29.77335],[79.88694,29.77609],[79.88976,29.78631],[79.89259,29.78934],[79.8921,29.79364],[79.89392,29.79479],[79.89859,29.79181],[79.90436,29.79852],[79.90874,29.7965],[79.90947,29.78917],[79.91216,29.78935],[79.91121,29.79177],[79.91245,29.79271],[79.9314,29.78995],[79.92915,29.78612],[79.93224,29.77377],[79.93156,29.76653],[79.94571,29.76403],[79.96402,29.76429],[79.97519,29.7596],[79.99201,29.76531],[79.99842,29.7643],[79.9998,29.77445],[80.00335,29.77794],[80.0102,29.77632],[80.0127,29.77401],[80.01817,29.78269],[80.03313,29.78222],[80.03808,29.78511],[80.04025,29.78797],[80.03867,29.79022],[80.03866,29.79497],[80.03388,29.79613],[80.03267,29.80623],[80.02332,29.81144],[80.01881,29.81074],[80.01648,29.82042],[80.02032,29.82641],[80.0197,29.82862],[80.00211,29.83555],[79.99808,29.83523],[79.99464,29.83823],[79.99354,29.84507],[79.98133,29.84093],[79.97923,29.84323],[79.97685,29.84162],[79.97659,29.84996],[79.97796,29.8523],[79.9931,29.85013],[80.00665,29.85103],[80.00781,29.8578],[80.00546,29.8738],[80.01278,29.88757],[80.02401,29.89311],[80.0267,29.89629],[80.03221,29.89541],[80.03765,29.89689],[80.04497,29.89555],[80.05345,29.90263],[80.06147,29.90308],[80.06352,29.90153],[80.07129,29.90079],[80.07775,29.89058],[80.08545,29.88691],[80.09035,29.88833],[80.096,29.89359],[80.09585,29.89726],[80.10753,29.90645],[80.11616,29.90551],[80.12671,29.8994],[80.13441,29.89948],[80.14339,29.90209],[80.14859,29.89777],[80.15393,29.89988],[80.15863,29.90436],[80.15673,29.9118],[80.15185,29.91702],[80.13851,29.9415],[80.13103,29.94311],[80.12921,29.94589],[80.11966,29.95043],[80.11503,29.95473],[80.10982,29.95603],[80.10676,29.9594],[80.10182,29.96001],[80.09786,29.96251],[80.09538,29.96729],[80.09098,29.96901],[80.0812,29.98881],[80.07623,29.99375],[80.07572,29.998],[80.07119,30.00072],[80.07323,30.00983],[80.07034,30.01176],[80.07108,30.01382],[80.06749,30.01893],[80.06958,30.01992],[80.06975,30.02626],[80.07162,30.02963],[80.07041,30.03127],[80.07181,30.03157],[80.07175,30.0344],[80.07493,30.03886],[80.07537,30.04688],[80.08167,30.05931],[80.08472,30.06242],[80.08559,30.07064],[80.08159,30.07686],[80.08213,30.08017],[80.07979,30.08323],[80.08449,30.09595],[80.08221,30.10012],[80.08238,30.11155],[80.08756,30.12002],[80.08841,30.12494],[80.09435,30.12818],[80.09667,30.13639],[80.10421,30.14841],[80.10496,30.15237],[80.10324,30.15454],[80.10322,30.16406],[80.10784,30.17869],[80.10732,30.18334],[80.11122,30.19176],[80.10808,30.19952],[80.11702,30.21801],[80.11612,30.22658],[80.11045,30.22816],[80.09301,30.22657],[80.07757,30.23766],[80.07309,30.24318],[80.07448,30.25332],[80.07138,30.25819],[80.07314,30.26282],[80.06854,30.26694],[80.06319,30.26573],[80.06074,30.27084],[80.06423,30.27809],[80.0679,30.28119],[80.04886,30.2869],[80.04153,30.2914],[80.03596,30.30274],[80.02498,30.31392],[80.02012,30.31541],[80.0107,30.31449],[79.99841,30.31642]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"460","area_level":"District","area_name":"Surendranagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[71.97206,23.05747],[71.96077,23.04709],[71.95901,23.0357],[71.96208,23.02863],[71.95476,23.02783],[71.94991,23.03001],[71.9461,23.03544],[71.94857,23.04399],[71.95126,23.04763],[71.94549,23.06297],[71.93199,23.05982],[71.91879,23.06607],[71.91846,23.06912],[71.91357,23.07493],[71.91119,23.08058],[71.9137,23.08183],[71.91209,23.08489],[71.90886,23.08404],[71.90897,23.09064],[71.90014,23.10139],[71.89923,23.10493],[71.90348,23.11077],[71.90443,23.12107],[71.90012,23.13757],[71.90233,23.14156],[71.90474,23.14254],[71.90586,23.15918],[71.90807,23.16094],[71.9061,23.17623],[71.91201,23.17983],[71.92793,23.18047],[71.93126,23.19118],[71.93429,23.19378],[71.94221,23.19598],[71.94301,23.19724],[71.94086,23.19782],[71.94406,23.20109],[71.94618,23.19892],[71.94971,23.20407],[71.95454,23.20015],[71.95614,23.20221],[71.95949,23.20181],[71.96362,23.20439],[71.96327,23.20617],[71.9674,23.20826],[71.96709,23.20944],[71.97519,23.21073],[71.98828,23.20943],[71.99054,23.22332],[71.99668,23.23935],[71.99697,23.24574],[71.99569,23.24845],[71.99069,23.25045],[71.96998,23.25028],[71.96447,23.24355],[71.96217,23.24308],[71.96132,23.24044],[71.95772,23.23912],[71.94766,23.23979],[71.9469,23.23801],[71.94318,23.23698],[71.93356,23.26161],[71.92807,23.26566],[71.91973,23.26407],[71.91805,23.26164],[71.90679,23.26074],[71.90575,23.25693],[71.90254,23.25608],[71.90122,23.25324],[71.90206,23.24537],[71.90065,23.23346],[71.89701,23.2191],[71.87,23.21853],[71.87416,23.22525],[71.87541,23.24971],[71.87971,23.25374],[71.87826,23.26079],[71.87176,23.27197],[71.87257,23.27932],[71.87596,23.29064],[71.87979,23.29058],[71.88401,23.30243],[71.87621,23.30979],[71.87996,23.32158],[71.88844,23.3284],[71.89443,23.32938],[71.89044,23.33509],[71.89016,23.34279],[71.88298,23.35201],[71.88285,23.35774],[71.872,23.36924],[71.87179,23.37944],[71.87044,23.38167],[71.88786,23.39078],[71.89406,23.38713],[71.89508,23.384],[71.89842,23.38139],[71.90303,23.38085],[71.92829,23.38985],[71.94812,23.38928],[71.9559,23.3875],[71.957,23.38881],[71.96351,23.3977],[71.96816,23.40783],[71.97035,23.43109],[71.96716,23.43422],[71.96326,23.45586],[71.96348,23.46185],[71.97222,23.47049],[71.97942,23.47473],[71.98017,23.47854],[71.99298,23.48466],[71.99785,23.49523],[71.99845,23.49892],[71.98058,23.50226],[71.97941,23.51974],[71.97155,23.52358],[71.9688,23.52672],[71.94304,23.51831],[71.94407,23.51513],[71.94251,23.51271],[71.94229,23.49986],[71.93829,23.49918],[71.93406,23.49611],[71.9299,23.497],[71.92876,23.49228],[71.92211,23.49382],[71.91524,23.49119],[71.91329,23.49395],[71.90818,23.49392],[71.90493,23.48712],[71.90118,23.4907],[71.90214,23.4849],[71.89877,23.48423],[71.89397,23.48659],[71.88699,23.48549],[71.88839,23.48485],[71.88751,23.4834],[71.86419,23.47263],[71.85127,23.4567],[71.84982,23.43552],[71.83773,23.41936],[71.82101,23.41074],[71.82126,23.40919],[71.81731,23.4089],[71.81732,23.40708],[71.81177,23.40333],[71.81158,23.40076],[71.80833,23.39997],[71.80845,23.39848],[71.80269,23.3941],[71.79866,23.39467],[71.79157,23.39203],[71.78421,23.39638],[71.78165,23.39491],[71.7794,23.39723],[71.77221,23.39818],[71.77149,23.39975],[71.76197,23.4029],[71.75805,23.41532],[71.75922,23.42281],[71.76097,23.42285],[71.76009,23.4267],[71.7622,23.43249],[71.76942,23.43518],[71.77782,23.4546],[71.77213,23.46126],[71.77171,23.46798],[71.76725,23.46677],[71.76475,23.46946],[71.75822,23.46632],[71.75,23.46897],[71.74514,23.47398],[71.74343,23.46736],[71.73913,23.47044],[71.72639,23.46824],[71.72545,23.47996],[71.72786,23.48408],[71.73228,23.48685],[71.73045,23.49074],[71.71995,23.49024],[71.70895,23.48325],[71.70232,23.48122],[71.69182,23.48785],[71.68293,23.48721],[71.67423,23.48906],[71.6664,23.48471],[71.64957,23.49265],[71.64464,23.49071],[71.62635,23.49757],[71.61626,23.49798],[71.6136,23.50132],[71.6076,23.49806],[71.59964,23.4978],[71.59824,23.502],[71.58789,23.49958],[71.58162,23.49148],[71.56469,23.49563],[71.53375,23.47891],[71.53215,23.46104],[71.53455,23.45934],[71.54257,23.45929],[71.54789,23.45589],[71.55414,23.44281],[71.56124,23.44041],[71.56011,23.43118],[71.56811,23.41918],[71.5683,23.41407],[71.57001,23.41163],[71.57601,23.41243],[71.59273,23.42312],[71.59437,23.42324],[71.59408,23.42144],[71.60127,23.42504],[71.60285,23.4237],[71.59668,23.41992],[71.59397,23.41569],[71.58917,23.41355],[71.58177,23.40562],[71.58098,23.40027],[71.58924,23.39719],[71.57215,23.39054],[71.57042,23.38823],[71.5696,23.38166],[71.56378,23.3729],[71.56653,23.36904],[71.5819,23.37089],[71.58344,23.36901],[71.58454,23.37194],[71.59438,23.37774],[71.59948,23.37805],[71.60077,23.37515],[71.59112,23.37128],[71.58946,23.36729],[71.58571,23.36507],[71.56675,23.36183],[71.56182,23.35777],[71.56156,23.35235],[71.56315,23.35195],[71.58361,23.36311],[71.58662,23.35982],[71.58599,23.3561],[71.58713,23.35552],[71.59489,23.35517],[71.6034,23.35141],[71.61605,23.35455],[71.62197,23.34925],[71.62941,23.34874],[71.63513,23.34209],[71.64138,23.33829],[71.64689,23.33138],[71.64652,23.32866],[71.65144,23.31848],[71.64578,23.31195],[71.6438,23.30521],[71.62873,23.29359],[71.62905,23.29151],[71.63213,23.29201],[71.63382,23.28894],[71.6359,23.29003],[71.63556,23.2848],[71.63919,23.28374],[71.63969,23.28642],[71.64143,23.28101],[71.64669,23.27879],[71.65172,23.28191],[71.65178,23.28542],[71.65918,23.2905],[71.65976,23.28868],[71.66253,23.28973],[71.67131,23.28814],[71.67406,23.29018],[71.67272,23.29339],[71.67457,23.29319],[71.67741,23.28867],[71.67454,23.28348],[71.67678,23.27859],[71.67582,23.27485],[71.67221,23.27245],[71.66974,23.27439],[71.66367,23.27319],[71.66026,23.27447],[71.66349,23.26678],[71.65963,23.26013],[71.66653,23.25714],[71.67782,23.25799],[71.68465,23.24993],[71.68672,23.24936],[71.69148,23.25269],[71.69493,23.25274],[71.69715,23.24822],[71.69621,23.24376],[71.68801,23.2405],[71.66185,23.24133],[71.65364,23.23684],[71.65197,23.23455],[71.65357,23.23238],[71.65938,23.23157],[71.66381,23.2288],[71.66738,23.22941],[71.67065,23.22644],[71.66622,23.22358],[71.66563,23.21733],[71.65753,23.20759],[71.66508,23.20723],[71.66528,23.20593],[71.67678,23.20206],[71.67784,23.19554],[71.68296,23.18453],[71.68926,23.18193],[71.6979,23.18866],[71.70899,23.20089],[71.72142,23.19822],[71.71322,23.19397],[71.70013,23.17533],[71.70835,23.16872],[71.72393,23.1652],[71.72686,23.16699],[71.72695,23.16926],[71.73041,23.17053],[71.73044,23.17542],[71.73234,23.1771],[71.73988,23.17697],[71.742,23.17954],[71.74847,23.1781],[71.75061,23.17552],[71.75015,23.16768],[71.762,23.15828],[71.76268,23.15506],[71.75967,23.14913],[71.75844,23.14169],[71.74488,23.13594],[71.74644,23.13349],[71.75,23.1326],[71.75302,23.12818],[71.75931,23.12495],[71.76118,23.11716],[71.758,23.11619],[71.75572,23.11931],[71.7495,23.12212],[71.74852,23.11951],[71.74557,23.12196],[71.73595,23.11947],[71.73466,23.11606],[71.72756,23.11175],[71.7265,23.1042],[71.72241,23.10356],[71.72512,23.0991],[71.72295,23.09312],[71.72136,23.09432],[71.71953,23.09081],[71.71031,23.09529],[71.71076,23.10267],[71.70831,23.11565],[71.70198,23.12031],[71.68996,23.12466],[71.68933,23.13117],[71.68533,23.12906],[71.68271,23.13275],[71.67234,23.13468],[71.66827,23.13901],[71.67091,23.14171],[71.66957,23.14312],[71.66195,23.13846],[71.65937,23.14127],[71.65821,23.13859],[71.65511,23.14215],[71.64065,23.14428],[71.6313,23.14251],[71.61866,23.14254],[71.61296,23.13967],[71.61053,23.14473],[71.60591,23.13491],[71.60131,23.14388],[71.59513,23.13715],[71.59419,23.13246],[71.58986,23.13563],[71.5838,23.13212],[71.57617,23.1338],[71.57373,23.13298],[71.57062,23.13493],[71.57263,23.1377],[71.56762,23.13727],[71.56935,23.1421],[71.56626,23.14289],[71.56447,23.13907],[71.56165,23.13861],[71.56141,23.14122],[71.55836,23.14126],[71.55726,23.13955],[71.55444,23.14378],[71.55562,23.14058],[71.55071,23.14029],[71.54826,23.14302],[71.54887,23.14481],[71.54662,23.14965],[71.53885,23.15511],[71.53272,23.15616],[71.52584,23.15486],[71.52254,23.15626],[71.52069,23.15346],[71.51561,23.1585],[71.51231,23.15459],[71.51353,23.15453],[71.51258,23.1506],[71.50669,23.15545],[71.50329,23.14993],[71.50019,23.1521],[71.50049,23.14975],[71.48846,23.14983],[71.47547,23.14657],[71.46716,23.13967],[71.45381,23.13901],[71.45281,23.13403],[71.45042,23.13285],[71.44888,23.13798],[71.45004,23.13855],[71.44474,23.1462],[71.43365,23.14509],[71.43147,23.14747],[71.4296,23.14723],[71.42484,23.14177],[71.41951,23.14292],[71.41571,23.14647],[71.4024,23.1495],[71.39621,23.15317],[71.39032,23.14871],[71.39014,23.14583],[71.38674,23.14692],[71.38918,23.15375],[71.36531,23.15939],[71.36055,23.17304],[71.34999,23.17451],[71.34584,23.17035],[71.34638,23.16882],[71.34159,23.16764],[71.34068,23.1626],[71.33706,23.16074],[71.33576,23.16259],[71.33478,23.1603],[71.33203,23.16124],[71.33332,23.17152],[71.32552,23.17336],[71.31977,23.18618],[71.31549,23.1824],[71.31156,23.17163],[71.31208,23.16634],[71.30465,23.16666],[71.30256,23.16877],[71.29958,23.17285],[71.30049,23.1799],[71.29634,23.17558],[71.29121,23.17534],[71.28801,23.16943],[71.28713,23.1639],[71.28446,23.16519],[71.28408,23.16954],[71.28198,23.16972],[71.27973,23.16758],[71.2777,23.16242],[71.28015,23.15889],[71.28377,23.15786],[71.2859,23.14987],[71.27,23.15551],[71.27105,23.14131],[71.26987,23.13801],[71.27489,23.12712],[71.27617,23.11835],[71.28771,23.11785],[71.30666,23.11411],[71.32736,23.12516],[71.33728,23.12613],[71.33531,23.13344],[71.34558,23.13589],[71.34886,23.13593],[71.35325,23.1335],[71.35498,23.12669],[71.35961,23.12089],[71.35903,23.11919],[71.35428,23.11735],[71.34273,23.11518],[71.34548,23.10573],[71.34389,23.10338],[71.34746,23.09842],[71.34185,23.09628],[71.33998,23.09227],[71.33663,23.09196],[71.33129,23.08671],[71.32606,23.08508],[71.31157,23.08184],[71.30696,23.08253],[71.30612,23.07512],[71.29759,23.07506],[71.29185,23.06801],[71.29134,23.06461],[71.29763,23.04935],[71.30165,23.04851],[71.30226,23.04486],[71.29815,23.04467],[71.29405,23.03042],[71.29548,23.01853],[71.31473,23.01402],[71.31386,22.99945],[71.3165,22.98726],[71.30032,22.97989],[71.2936,22.97392],[71.30008,22.95904],[71.3028,22.94782],[71.30065,22.94727],[71.29968,22.94448],[71.2981,22.94495],[71.29975,22.94191],[71.29773,22.9413],[71.29398,22.93386],[71.28978,22.934],[71.29223,22.91907],[71.28421,22.91051],[71.27056,22.90586],[71.26559,22.89428],[71.26605,22.88537],[71.26328,22.88482],[71.26242,22.87233],[71.25519,22.86636],[71.24517,22.86277],[71.25468,22.83723],[71.24405,22.83233],[71.23994,22.82593],[71.22745,22.82234],[71.21485,22.82375],[71.21496,22.82535],[71.20886,22.82695],[71.20714,22.83051],[71.1898,22.82696],[71.18898,22.83022],[71.18643,22.82929],[71.18765,22.82669],[71.18367,22.82593],[71.17862,22.83681],[71.17309,22.84161],[71.16233,22.85699],[71.16136,22.86165],[71.13904,22.86235],[71.14025,22.83948],[71.14507,22.82746],[71.12418,22.82433],[71.10586,22.82491],[71.09945,22.82318],[71.10423,22.814],[71.11357,22.8085],[71.11773,22.80151],[71.12506,22.79791],[71.12619,22.79179],[71.12489,22.78439],[71.12916,22.76814],[71.13301,22.76196],[71.12558,22.76068],[71.12288,22.75684],[71.12583,22.7426],[71.14615,22.72043],[71.14794,22.7126],[71.16385,22.70255],[71.16256,22.68392],[71.16028,22.67806],[71.15795,22.6793],[71.14356,22.66331],[71.13995,22.66316],[71.14018,22.66104],[71.13733,22.65758],[71.12802,22.65258],[71.12679,22.64336],[71.12935,22.63499],[71.12015,22.63616],[71.10993,22.64237],[71.10446,22.6316],[71.10194,22.63089],[71.09665,22.61852],[71.09908,22.60807],[71.1027,22.60267],[71.09707,22.60297],[71.09337,22.60616],[71.09322,22.58987],[71.09477,22.58715],[71.09972,22.58578],[71.10221,22.58318],[71.09441,22.56336],[71.07575,22.55693],[71.0704,22.54968],[71.0727,22.54362],[71.06619,22.54233],[71.06168,22.53746],[71.06769,22.5345],[71.07041,22.52984],[71.07959,22.52478],[71.08475,22.52401],[71.08576,22.5209],[71.09167,22.51847],[71.09413,22.51344],[71.10051,22.51219],[71.10744,22.5279],[71.10867,22.53472],[71.11583,22.5476],[71.13429,22.54587],[71.14419,22.52482],[71.16388,22.50449],[71.16508,22.49335],[71.16297,22.48869],[71.16435,22.48434],[71.15734,22.47948],[71.1455,22.47807],[71.13801,22.4814],[71.13025,22.48088],[71.12948,22.46771],[71.13106,22.46091],[71.11732,22.45134],[71.11911,22.44536],[71.12624,22.43773],[71.10531,22.43594],[71.10052,22.43243],[71.10085,22.42539],[71.09929,22.42415],[71.09766,22.41673],[71.09849,22.4046],[71.09444,22.3994],[71.08722,22.39725],[71.08448,22.40171],[71.07636,22.40458],[71.07475,22.41699],[71.07224,22.42305],[71.06463,22.42776],[71.05807,22.43734],[71.0536,22.43809],[71.0526,22.43486],[71.04964,22.43447],[71.04495,22.43911],[71.04123,22.43878],[71.03778,22.44103],[71.02424,22.44041],[71.02266,22.4377],[71.01999,22.43735],[71.01945,22.43503],[70.99981,22.4264],[70.98081,22.4149],[70.99146,22.40167],[71.0,22.40402],[71.00289,22.4033],[71.0062,22.40612],[71.00732,22.40986],[71.01272,22.41202],[71.02329,22.39898],[71.03307,22.39568],[71.03583,22.39112],[71.04069,22.38854],[71.04087,22.38548],[71.03157,22.37937],[71.02679,22.37856],[71.02635,22.377],[71.01835,22.37802],[71.01907,22.36555],[71.01259,22.35822],[71.01408,22.3583],[71.01307,22.35429],[71.01483,22.35054],[71.0143,22.34769],[71.01614,22.34201],[71.01833,22.34015],[71.01866,22.33445],[71.02127,22.32975],[71.0295,22.32427],[71.04095,22.32232],[71.04218,22.32006],[71.05506,22.31111],[71.06483,22.30746],[71.06356,22.29646],[71.05705,22.27893],[71.06084,22.27874],[71.06396,22.27546],[71.06731,22.27589],[71.07247,22.27251],[71.07194,22.26775],[71.078,22.26582],[71.08189,22.2553],[71.08456,22.25474],[71.0877,22.25711],[71.09208,22.25737],[71.09769,22.25508],[71.10305,22.25687],[71.1156,22.25482],[71.1152,22.2517],[71.11242,22.25097],[71.11122,22.2473],[71.10812,22.2458],[71.11144,22.24044],[71.11266,22.23383],[71.12042,22.22117],[71.12985,22.21031],[71.13251,22.20409],[71.14232,22.1954],[71.14239,22.19181],[71.16275,22.18564],[71.16063,22.1681],[71.15906,22.16505],[71.15499,22.1647],[71.13715,22.15457],[71.13244,22.15447],[71.12697,22.14964],[71.12372,22.1377],[71.1182,22.13483],[71.11876,22.13032],[71.12243,22.12904],[71.12497,22.12449],[71.13718,22.1253],[71.14062,22.12365],[71.14424,22.12409],[71.1441,22.12941],[71.14603,22.12903],[71.14728,22.13257],[71.15094,22.13205],[71.15413,22.13515],[71.17725,22.1436],[71.17847,22.15107],[71.17558,22.15847],[71.17947,22.15692],[71.19022,22.16311],[71.197,22.16392],[71.19226,22.17462],[71.21751,22.18665],[71.22276,22.17944],[71.22434,22.1733],[71.23009,22.16526],[71.23352,22.16339],[71.24269,22.16479],[71.24955,22.16912],[71.25997,22.16583],[71.26765,22.16061],[71.27761,22.15932],[71.28907,22.16115],[71.29704,22.16792],[71.29695,22.17149],[71.30068,22.17574],[71.30289,22.18459],[71.29472,22.19286],[71.28168,22.21778],[71.27523,22.21388],[71.26937,22.21372],[71.2644,22.21469],[71.25977,22.22026],[71.25248,22.22157],[71.24156,22.22134],[71.22862,22.21727],[71.21741,22.21978],[71.22127,22.22754],[71.21511,22.23257],[71.21386,22.24254],[71.21847,22.24641],[71.22782,22.24914],[71.22733,22.251],[71.23076,22.25029],[71.23287,22.25202],[71.23541,22.2644],[71.23479,22.27605],[71.25731,22.27601],[71.26815,22.27177],[71.26919,22.26997],[71.27335,22.27164],[71.27918,22.2707],[71.28119,22.26859],[71.2861,22.26851],[71.2885,22.26719],[71.28246,22.26432],[71.288,22.25429],[71.29598,22.2514],[71.30367,22.25073],[71.30732,22.25326],[71.30451,22.2617],[71.30852,22.26284],[71.30528,22.26591],[71.31053,22.27999],[71.32748,22.27558],[71.32974,22.27179],[71.33406,22.26957],[71.33525,22.266],[71.34672,22.25889],[71.36127,22.26841],[71.3662,22.28464],[71.36629,22.29148],[71.37018,22.29317],[71.37259,22.29243],[71.37406,22.2913],[71.37221,22.28619],[71.36903,22.28352],[71.36892,22.28069],[71.37395,22.28008],[71.37337,22.27714],[71.3749,22.27495],[71.37794,22.27287],[71.38153,22.27278],[71.38154,22.27762],[71.39191,22.27793],[71.38999,22.24919],[71.39537,22.24827],[71.3915,22.22545],[71.39509,22.22326],[71.40074,22.22291],[71.40895,22.22491],[71.42899,22.23567],[71.43074,22.24224],[71.43582,22.2487],[71.43609,22.2608],[71.43964,22.26314],[71.44372,22.27145],[71.44332,22.27333],[71.4468,22.27548],[71.44585,22.28939],[71.45786,22.29199],[71.47807,22.29962],[71.48935,22.3007],[71.4954,22.30401],[71.50473,22.31283],[71.51023,22.32304],[71.51623,22.3271],[71.53031,22.34316],[71.53914,22.34475],[71.55474,22.34112],[71.56507,22.34203],[71.56912,22.32261],[71.57884,22.3201],[71.58308,22.32307],[71.58854,22.33325],[71.58861,22.3399],[71.58275,22.34148],[71.5824,22.34737],[71.59224,22.34751],[71.59212,22.35461],[71.60151,22.35137],[71.60266,22.34581],[71.60176,22.33992],[71.61221,22.33924],[71.62986,22.34401],[71.62618,22.35445],[71.62633,22.38297],[71.6357,22.38054],[71.64111,22.38704],[71.64972,22.40248],[71.67398,22.38448],[71.68436,22.39062],[71.6908,22.3895],[71.6917,22.39236],[71.71149,22.39928],[71.72088,22.38231],[71.73547,22.38252],[71.74128,22.36375],[71.75473,22.36118],[71.793,22.36383],[71.78913,22.38917],[71.79632,22.39625],[71.79956,22.39259],[71.81478,22.39524],[71.83297,22.39503],[71.83675,22.39649],[71.83563,22.38036],[71.83172,22.36079],[71.84485,22.35792],[71.8472,22.35917],[71.85251,22.36857],[71.86286,22.37144],[71.86203,22.38397],[71.85991,22.39145],[71.86062,22.39625],[71.87076,22.40269],[71.87466,22.40235],[71.87447,22.40571],[71.88226,22.40685],[71.88169,22.40802],[71.88869,22.41315],[71.89197,22.42253],[71.90211,22.42385],[71.9176,22.40065],[71.92152,22.38512],[71.92114,22.38062],[71.92428,22.38631],[71.92807,22.38786],[71.93614,22.38071],[71.9411,22.38101],[71.94486,22.38487],[71.94265,22.3973],[71.94289,22.4047],[71.94436,22.40514],[71.93823,22.41593],[71.93854,22.41946],[71.9415,22.4221],[71.93793,22.42769],[71.93399,22.45342],[71.94217,22.46362],[71.97227,22.47268],[71.9685,22.47347],[71.96742,22.49268],[71.95064,22.49037],[71.94155,22.48708],[71.93673,22.47982],[71.91668,22.48255],[71.91927,22.50176],[71.93143,22.50297],[71.92763,22.50944],[71.92384,22.50791],[71.92358,22.50962],[71.91854,22.50999],[71.91827,22.51499],[71.91346,22.5265],[71.92597,22.52935],[71.926,22.53499],[71.94152,22.54859],[71.95241,22.54754],[71.95976,22.54507],[71.95905,22.54387],[71.96173,22.54221],[71.9627,22.54322],[71.9708,22.53873],[71.97302,22.52852],[71.96853,22.52596],[71.96863,22.51864],[71.96699,22.5156],[71.97796,22.51378],[71.9784,22.51183],[72.0157,22.51261],[72.0188,22.51068],[72.02789,22.51073],[72.02945,22.50796],[72.03326,22.50685],[72.03556,22.49054],[72.03902,22.48337],[72.0425,22.47854],[72.04369,22.47921],[72.0455,22.47468],[72.0485,22.47373],[72.05086,22.47576],[72.05316,22.44806],[72.05134,22.44728],[72.05307,22.44314],[72.05919,22.44255],[72.07701,22.43675],[72.09013,22.43589],[72.10216,22.44675],[72.10579,22.4465],[72.10805,22.44816],[72.10695,22.44975],[72.11526,22.45482],[72.11611,22.4577],[72.12059,22.46143],[72.14616,22.47214],[72.1478,22.47558],[72.15709,22.48113],[72.16401,22.47974],[72.14802,22.49579],[72.1481,22.49747],[72.15214,22.49844],[72.15274,22.50132],[72.14966,22.50819],[72.1505,22.51031],[72.14697,22.51303],[72.14532,22.5171],[72.17263,22.53699],[72.18941,22.54238],[72.18472,22.55396],[72.17655,22.55793],[72.17567,22.56182],[72.16925,22.56698],[72.16473,22.57355],[72.15017,22.58404],[72.08637,22.61063],[72.08648,22.61278],[72.08841,22.61286],[72.08847,22.6156],[72.08713,22.61581],[72.08883,22.61739],[72.08827,22.62391],[72.08434,22.62344],[72.08426,22.62571],[72.07698,22.62508],[72.07675,22.62317],[72.06362,22.62207],[72.06419,22.64094],[72.06139,22.65366],[72.02301,22.68019],[72.04172,22.68548],[72.05734,22.69412],[72.06766,22.67514],[72.094,22.67562],[72.10815,22.72124],[72.06978,22.73398],[72.054,22.75073],[72.0625,22.75693],[72.0544,22.75966],[72.0557,22.77057],[72.04714,22.76855],[72.05718,22.7967],[72.04839,22.79893],[72.03558,22.80983],[72.03691,22.82048],[72.04178,22.82665],[72.03643,22.83397],[72.03453,22.83963],[72.03438,22.86002],[72.03163,22.85433],[72.02797,22.82859],[72.01772,22.81843],[72.00904,22.8199],[71.99466,22.84557],[71.98851,22.86694],[71.98869,22.87329],[71.99183,22.88571],[71.994,22.88582],[71.9984,22.89431],[72.00244,22.89709],[71.99965,22.90247],[71.99949,22.90814],[72.00531,22.92445],[72.00082,22.92725],[71.99399,22.93792],[71.99544,22.95038],[71.99872,22.95783],[72.00831,22.96726],[72.01963,22.98713],[72.02077,22.99224],[72.01512,22.99165],[72.01132,22.9931],[72.00948,22.99522],[72.00876,23.00175],[72.01036,23.01199],[72.01768,23.01751],[72.02171,23.01841],[72.02202,23.02314],[72.01852,23.03143],[72.01969,23.03749],[72.01547,23.05805],[72.00579,23.05535],[71.9989,23.05708],[71.99738,23.05922],[71.98503,23.0607],[71.97206,23.05747]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"461","area_level":"District","area_name":"Vadodara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.4064,22.809],[73.40469,22.81455],[73.39874,22.80803],[73.38438,22.81157],[73.38356,22.79482],[73.37749,22.80136],[73.379,22.79344],[73.37835,22.78008],[73.38083,22.77141],[73.37904,22.76416],[73.38091,22.75802],[73.36205,22.77109],[73.36343,22.77733],[73.35999,22.78112],[73.359,22.78734],[73.35611,22.78728],[73.35532,22.78985],[73.35266,22.78966],[73.35022,22.79235],[73.32445,22.786],[73.31558,22.78159],[73.30808,22.78363],[73.30209,22.78203],[73.29134,22.78209],[73.28841,22.78364],[73.27604,22.78221],[73.26483,22.77683],[73.2588,22.76944],[73.255,22.76031],[73.25833,22.75053],[73.25983,22.75],[73.25468,22.74307],[73.25182,22.73464],[73.25186,22.71941],[73.25505,22.70571],[73.26502,22.69145],[73.26487,22.68751],[73.26932,22.6734],[73.26924,22.66648],[73.26026,22.65682],[73.23859,22.64533],[73.21971,22.62603],[73.21882,22.62125],[73.20109,22.61793],[73.19432,22.60971],[73.19129,22.60322],[73.18455,22.60249],[73.16017,22.59255],[73.1562,22.58884],[73.15347,22.58293],[73.15357,22.56563],[73.15025,22.55206],[73.1405,22.5311],[73.13566,22.52461],[73.12136,22.51755],[73.1118,22.51472],[73.09996,22.51555],[73.09703,22.51175],[73.09174,22.51025],[73.08788,22.50274],[73.08765,22.4961],[73.09367,22.46562],[73.09336,22.45553],[73.06502,22.42835],[73.06573,22.41946],[73.07297,22.39706],[73.06797,22.38527],[73.05744,22.37577],[73.05273,22.37337],[73.04676,22.36278],[73.04679,22.35891],[73.05335,22.33938],[73.06363,22.32044],[73.06184,22.31401],[73.05907,22.31027],[73.05181,22.3043],[73.0351,22.29579],[73.00924,22.2677],[72.97453,22.2541],[72.9682,22.26279],[72.95171,22.26331],[72.94912,22.29233],[72.94488,22.30271],[72.93744,22.30638],[72.9258,22.30584],[72.91657,22.30092],[72.91324,22.29744],[72.91078,22.28996],[72.91611,22.2787],[72.91671,22.26763],[72.91297,22.26308],[72.90842,22.26122],[72.89457,22.26005],[72.88708,22.26317],[72.86985,22.27427],[72.84922,22.27497],[72.84887,22.24784],[72.86889,22.21556],[72.86883,22.20952],[72.87244,22.20671],[72.87711,22.20586],[72.87535,22.19622],[72.8776,22.1901],[72.87682,22.1814],[72.88477,22.17425],[72.89598,22.18015],[72.89836,22.18729],[72.91071,22.18878],[72.91508,22.19242],[72.92218,22.1926],[72.92335,22.18766],[72.92681,22.18609],[72.92625,22.18129],[72.9292,22.17158],[72.92679,22.16912],[72.91437,22.16787],[72.91247,22.16583],[72.91354,22.16376],[72.91255,22.16293],[72.9102,22.16503],[72.90713,22.16482],[72.90272,22.16207],[72.89629,22.16269],[72.89037,22.16017],[72.88754,22.1703],[72.88578,22.17207],[72.88225,22.16593],[72.86291,22.15519],[72.86388,22.14086],[72.8664,22.13885],[72.87364,22.13929],[72.87464,22.12678],[72.87986,22.11902],[72.87691,22.11678],[72.87198,22.11601],[72.87343,22.11433],[72.87188,22.11244],[72.877,22.10892],[72.88465,22.09326],[72.89777,22.09493],[72.90397,22.07917],[72.90485,22.06806],[72.91574,22.06654],[72.91658,22.06257],[72.92223,22.06054],[72.91988,22.05353],[72.91615,22.05199],[72.91356,22.04711],[72.92647,22.04954],[72.92943,22.04623],[72.92879,22.04277],[72.93171,22.04179],[72.93989,22.0459],[72.94045,22.05373],[72.95372,22.05279],[72.95434,22.0511],[72.95897,22.04991],[72.95902,22.04715],[72.96048,22.04629],[72.97035,22.04998],[72.97288,22.04908],[72.97926,22.05259],[72.9805,22.0485],[72.98462,22.04793],[72.98928,22.02771],[72.99412,22.02601],[72.99787,22.01902],[73.00902,22.01717],[73.0108,22.01016],[73.01478,22.01128],[73.01802,22.00249],[73.01951,22.00263],[73.02599,21.99559],[73.02839,21.99778],[73.03237,21.99737],[73.0436,22.00461],[73.04801,22.00336],[73.05036,22.01237],[73.06325,22.01661],[73.06412,22.00371],[73.06232,22.00304],[73.06235,22.0],[73.06801,21.98403],[73.04886,21.97615],[73.05041,21.9754],[73.05224,21.94883],[73.04796,21.9395],[73.04224,21.93717],[73.01596,21.942],[73.00215,21.93574],[73.00036,21.93105],[72.99388,21.92706],[73.0,21.91084],[73.01819,21.9187],[73.03557,21.9198],[73.03783,21.92679],[73.04319,21.9284],[73.04206,21.93372],[73.04737,21.9354],[73.05319,21.92224],[73.06199,21.92222],[73.06689,21.92386],[73.07519,21.93042],[73.07666,21.92925],[73.09044,21.92963],[73.09155,21.9213],[73.08711,21.91782],[73.06268,21.91176],[73.0625,21.90268],[73.05889,21.88897],[73.05924,21.8823],[73.07181,21.87708],[73.08591,21.88069],[73.0912,21.87225],[73.10457,21.87714],[73.12536,21.87763],[73.12682,21.87038],[73.13051,21.87113],[73.13193,21.86617],[73.13728,21.86701],[73.14212,21.86434],[73.1418,21.85462],[73.14799,21.85387],[73.14846,21.85663],[73.15825,21.85439],[73.15919,21.85577],[73.18396,21.83135],[73.2015,21.82239],[73.20958,21.82229],[73.21937,21.8247],[73.23741,21.83718],[73.23999,21.83542],[73.24629,21.84065],[73.24374,21.8424],[73.24704,21.85021],[73.24899,21.85963],[73.24851,21.86508],[73.22795,21.88767],[73.22416,21.89441],[73.22089,21.90649],[73.22201,21.91592],[73.23338,21.92841],[73.24236,21.93398],[73.25688,21.93556],[73.27743,21.91384],[73.27886,21.90508],[73.29747,21.89086],[73.31437,21.88058],[73.32777,21.87493],[73.34122,21.87554],[73.34499,21.87807],[73.34673,21.8823],[73.34388,21.90379],[73.34452,21.91448],[73.34895,21.92319],[73.35535,21.92836],[73.3646,21.93094],[73.37632,21.92945],[73.3834,21.92186],[73.39981,21.91158],[73.40765,21.90988],[73.41646,21.91029],[73.42946,21.91779],[73.43866,21.92667],[73.44288,21.94162],[73.43988,21.96401],[73.44711,21.97454],[73.45382,21.97628],[73.45865,21.975],[73.46181,21.9799],[73.50383,21.96289],[73.5044,21.96643],[73.50755,21.96971],[73.50473,21.97724],[73.51285,21.98096],[73.51416,21.9854],[73.51181,21.98755],[73.5142,21.99018],[73.51369,21.99307],[73.51124,21.99347],[73.51111,22.00364],[73.50031,22.00913],[73.49912,22.01392],[73.49495,22.0174],[73.50063,22.01725],[73.50238,22.02261],[73.50332,22.02826],[73.50188,22.02821],[73.50018,22.03295],[73.50317,22.03543],[73.49987,22.03965],[73.50896,22.03725],[73.51399,22.03772],[73.51858,22.04853],[73.52228,22.05217],[73.52161,22.05651],[73.53089,22.05065],[73.53215,22.05875],[73.52914,22.06197],[73.54219,22.06181],[73.54325,22.06482],[73.54238,22.06669],[73.53958,22.06685],[73.53241,22.07146],[73.53264,22.07451],[73.5391,22.08232],[73.54034,22.09132],[73.52415,22.09341],[73.51998,22.09157],[73.51415,22.09215],[73.51002,22.08898],[73.50837,22.08405],[73.5041,22.08303],[73.50166,22.07853],[73.49704,22.07667],[73.49276,22.07743],[73.4921,22.07908],[73.48915,22.07812],[73.48941,22.07219],[73.48795,22.07059],[73.48654,22.07055],[73.48322,22.07842],[73.47891,22.0808],[73.47615,22.08679],[73.4765,22.09699],[73.47909,22.10336],[73.48277,22.1061],[73.4982,22.10988],[73.50095,22.11243],[73.50667,22.12259],[73.50699,22.13436],[73.51092,22.13976],[73.51619,22.14167],[73.51893,22.14481],[73.51781,22.14567],[73.51598,22.14302],[73.51543,22.14482],[73.51157,22.14331],[73.50903,22.14507],[73.50602,22.14475],[73.50676,22.15116],[73.5084,22.15233],[73.50626,22.15412],[73.50443,22.15257],[73.50324,22.15774],[73.50092,22.15989],[73.49924,22.15955],[73.49786,22.16203],[73.49896,22.16303],[73.49635,22.1669],[73.4954,22.17758],[73.50396,22.18901],[73.50528,22.19945],[73.50161,22.20428],[73.49244,22.20441],[73.48647,22.20773],[73.48548,22.21299],[73.48086,22.21901],[73.48637,22.22468],[73.49165,22.2246],[73.49161,22.23593],[73.49809,22.23562],[73.50218,22.24334],[73.50837,22.24905],[73.52113,22.24815],[73.52359,22.25082],[73.52554,22.2603],[73.52459,22.26144],[73.52947,22.26378],[73.5312,22.2628],[73.53227,22.26519],[73.54028,22.27036],[73.54342,22.27005],[73.54402,22.27386],[73.54517,22.27295],[73.54626,22.27534],[73.54348,22.27927],[73.54012,22.27908],[73.53963,22.2868],[73.54214,22.28877],[73.54812,22.28675],[73.54915,22.28815],[73.54724,22.28881],[73.54487,22.29451],[73.54219,22.29473],[73.54153,22.29766],[73.54395,22.30699],[73.54614,22.30708],[73.54735,22.31447],[73.54522,22.31926],[73.54418,22.33118],[73.56283,22.32865],[73.56535,22.33095],[73.56621,22.33645],[73.55432,22.33649],[73.55168,22.34262],[73.54631,22.34595],[73.54178,22.34436],[73.52796,22.34596],[73.51772,22.34115],[73.5177,22.34301],[73.51294,22.34685],[73.5138,22.34918],[73.51073,22.35226],[73.50793,22.35005],[73.49929,22.34892],[73.49413,22.35087],[73.49116,22.3492],[73.48224,22.34955],[73.47821,22.3526],[73.47852,22.35526],[73.4643,22.36018],[73.46768,22.36772],[73.46821,22.37342],[73.47289,22.37939],[73.47243,22.38183],[73.4704,22.38311],[73.45801,22.38123],[73.44879,22.39658],[73.44401,22.3959],[73.44296,22.39896],[73.43792,22.40014],[73.44638,22.41417],[73.44559,22.42531],[73.43456,22.42312],[73.43292,22.42156],[73.42913,22.42635],[73.4199,22.42846],[73.42125,22.43049],[73.42049,22.44711],[73.42218,22.44913],[73.42699,22.44957],[73.42529,22.4569],[73.42914,22.45834],[73.43016,22.46185],[73.42739,22.47603],[73.42742,22.48575],[73.42407,22.48736],[73.42312,22.49385],[73.41954,22.49435],[73.41651,22.49735],[73.41474,22.50567],[73.41003,22.50536],[73.40994,22.5064],[73.40816,22.50458],[73.40523,22.50694],[73.41024,22.51468],[73.41203,22.51506],[73.41115,22.5166],[73.41478,22.51765],[73.41454,22.52162],[73.41128,22.52512],[73.41783,22.53364],[73.42124,22.54679],[73.41401,22.55371],[73.39168,22.55199],[73.38439,22.55568],[73.372,22.55638],[73.38277,22.5793],[73.37792,22.58567],[73.38138,22.59697],[73.38305,22.61168],[73.3884,22.61172],[73.38894,22.61374],[73.38874,22.61674],[73.38716,22.61787],[73.38774,22.62172],[73.38412,22.62693],[73.3744,22.62534],[73.36251,22.62747],[73.36583,22.63192],[73.36565,22.63899],[73.36758,22.63883],[73.36888,22.64082],[73.36816,22.64773],[73.38383,22.65004],[73.38955,22.64353],[73.3971,22.64355],[73.40022,22.65669],[73.40711,22.65436],[73.41685,22.66121],[73.4146,22.67012],[73.41572,22.67562],[73.40701,22.6781],[73.40275,22.69036],[73.39118,22.68745],[73.38951,22.6922],[73.38938,22.701],[73.38693,22.70136],[73.38741,22.70436],[73.386,22.70528],[73.38293,22.71977],[73.38665,22.73259],[73.38627,22.74003],[73.38466,22.74206],[73.41043,22.75925],[73.42675,22.76246],[73.42477,22.76646],[73.42653,22.77249],[73.42277,22.78562],[73.41442,22.78661],[73.40403,22.79378],[73.4064,22.809]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"462","area_level":"District","area_name":"Valsad","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.0014,20.21582],[73.00255,20.22063],[73.00562,20.2234],[73.00832,20.22896],[73.00548,20.23197],[72.9984,20.23675],[72.98951,20.2388],[72.97923,20.23403],[72.97462,20.22573],[72.97478,20.21927],[72.97905,20.21558],[72.98377,20.21306],[72.99029,20.21335],[72.99286,20.21421],[72.99295,20.21499],[73.00008,20.21429],[73.00113,20.21444],[73.0014,20.21582]]],[[[72.85444,20.75049],[72.854,20.7517],[72.84969,20.75009],[72.8488,20.74446],[72.8542,20.71496],[72.86496,20.68874],[72.87598,20.64925],[72.87944,20.64319],[72.88426,20.6403],[72.88422,20.6355],[72.89665,20.59322],[72.89822,20.57451],[72.8951,20.56328],[72.89068,20.55704],[72.88618,20.54365],[72.88991,20.53288],[72.88776,20.53247],[72.88624,20.52678],[72.88883,20.50899],[72.88594,20.49768],[72.87989,20.49245],[72.87256,20.4932],[72.86556,20.48305],[72.85812,20.46564],[72.87725,20.46176],[72.88655,20.46233],[72.888,20.46071],[72.88797,20.4506],[72.89532,20.44431],[72.89016,20.43865],[72.88771,20.43825],[72.8789,20.44166],[72.87484,20.44557],[72.8698,20.43952],[72.86507,20.42908],[72.86109,20.4276],[72.85725,20.41892],[72.86842,20.4164],[72.87049,20.41381],[72.8743,20.41487],[72.87533,20.41681],[72.8802,20.41702],[72.88273,20.41985],[72.88919,20.41904],[72.89216,20.42156],[72.89639,20.42113],[72.90412,20.41484],[72.90177,20.41021],[72.90329,20.40978],[72.90285,20.40685],[72.89187,20.39916],[72.8877,20.40003],[72.88276,20.39785],[72.88362,20.39122],[72.8871,20.38818],[72.8869,20.38545],[72.8966,20.37999],[72.89149,20.37565],[72.89067,20.37265],[72.88297,20.37231],[72.87667,20.36977],[72.86569,20.37226],[72.86394,20.37521],[72.85813,20.37404],[72.85614,20.37203],[72.84577,20.37489],[72.83594,20.37332],[72.82925,20.36728],[72.82379,20.36722],[72.81409,20.35285],[72.80315,20.34946],[72.79402,20.35053],[72.79128,20.34919],[72.77881,20.335],[72.7761,20.32529],[72.77439,20.30179],[72.76765,20.29741],[72.76335,20.29931],[72.75744,20.29203],[72.75373,20.26045],[72.74242,20.2412],[72.74657,20.22627],[72.74864,20.20693],[72.75049,20.20372],[72.74739,20.19745],[72.74445,20.18195],[72.74551,20.16527],[72.7426,20.15928],[72.74292,20.14041],[72.74122,20.14026],[72.74,20.13481],[72.74931,20.13137],[72.76057,20.13122],[72.76269,20.12982],[72.76732,20.13151],[72.77728,20.13166],[72.79411,20.12334],[72.79221,20.13282],[72.78758,20.13872],[72.78743,20.14394],[72.78527,20.14512],[72.78862,20.14932],[72.79723,20.14967],[72.79927,20.15156],[72.80016,20.1501],[72.80585,20.15447],[72.80605,20.15311],[72.81069,20.15159],[72.81516,20.14469],[72.81888,20.14467],[72.82447,20.14202],[72.82237,20.15498],[72.81632,20.15669],[72.81645,20.16034],[72.81963,20.16477],[72.82009,20.17542],[72.818,20.1826],[72.81604,20.18444],[72.82526,20.18899],[72.8297,20.18805],[72.83255,20.18984],[72.83695,20.18846],[72.83089,20.19677],[72.83345,20.20247],[72.83607,20.20341],[72.83568,20.20507],[72.83903,20.20913],[72.86118,20.20761],[72.85874,20.22474],[72.8705,20.22832],[72.87518,20.22601],[72.87912,20.22691],[72.88961,20.22024],[72.89306,20.22584],[72.89942,20.22784],[72.90177,20.22505],[72.90808,20.22342],[72.92123,20.22271],[72.92228,20.22083],[72.93445,20.21595],[72.94144,20.21701],[72.94951,20.21585],[72.9625,20.20965],[72.96451,20.2138],[72.96595,20.22487],[72.96491,20.22674],[72.96059,20.23033],[72.95829,20.23539],[72.95398,20.23826],[72.93761,20.24482],[72.93064,20.24441],[72.9232,20.2572],[72.91838,20.25868],[72.91752,20.26339],[72.91171,20.27026],[72.91239,20.27535],[72.91601,20.27601],[72.91724,20.2808],[72.9202,20.28117],[72.9208,20.28368],[72.92858,20.28631],[72.93201,20.29349],[72.93795,20.29439],[72.94164,20.29309],[72.94505,20.28849],[72.9482,20.28777],[72.95205,20.28408],[72.95529,20.2842],[72.95568,20.27891],[72.96184,20.27502],[72.96223,20.27134],[72.97119,20.26906],[72.98193,20.2755],[72.98117,20.28927],[72.98536,20.28808],[72.98728,20.29087],[72.99441,20.29231],[72.99682,20.29076],[73.00102,20.29197],[73.00483,20.28917],[73.01005,20.29121],[73.01157,20.30039],[73.00942,20.30981],[73.00615,20.3128],[73.01217,20.31169],[73.01241,20.30933],[73.01669,20.31037],[73.01532,20.29402],[73.02661,20.29067],[73.03429,20.29163],[73.03561,20.2932],[73.0377,20.31767],[73.04174,20.32599],[73.04924,20.32441],[73.06665,20.33003],[73.07027,20.32547],[73.07717,20.32348],[73.08453,20.33182],[73.08782,20.34124],[73.09027,20.34393],[73.08845,20.35033],[73.08906,20.35869],[73.0958,20.36133],[73.0983,20.35838],[73.09864,20.3547],[73.10169,20.35474],[73.10478,20.34994],[73.10398,20.34755],[73.10738,20.34391],[73.10803,20.33902],[73.11125,20.33777],[73.10804,20.33103],[73.10843,20.32457],[73.10291,20.31413],[73.10037,20.30482],[73.10281,20.30178],[73.10852,20.30527],[73.11154,20.30405],[73.11661,20.30616],[73.12189,20.30419],[73.12695,20.30551],[73.12645,20.3088],[73.12944,20.31832],[73.15078,20.31834],[73.15941,20.30885],[73.16573,20.31043],[73.16623,20.30527],[73.16349,20.2982],[73.16579,20.29407],[73.1663,20.28787],[73.16494,20.28399],[73.15823,20.28131],[73.15367,20.28523],[73.15173,20.29203],[73.14585,20.28858],[73.14222,20.2811],[73.14227,20.27642],[73.13997,20.27379],[73.13728,20.27314],[73.13123,20.27503],[73.13053,20.26949],[73.126,20.26076],[73.11399,20.25831],[73.107,20.25077],[73.10627,20.24619],[73.0973,20.23867],[73.09901,20.23194],[73.09774,20.2293],[73.08927,20.22676],[73.08549,20.22764],[73.08244,20.23089],[73.07051,20.2321],[73.06365,20.22776],[73.06257,20.22403],[73.05996,20.22334],[73.05507,20.21224],[73.05446,20.20742],[73.04885,20.20021],[73.05322,20.19543],[73.05953,20.19393],[73.0628,20.17761],[73.06264,20.16975],[73.06041,20.16687],[73.06024,20.16189],[73.06431,20.15865],[73.07358,20.15562],[73.07928,20.17324],[73.08704,20.17032],[73.0903,20.16032],[73.09941,20.15622],[73.10811,20.15784],[73.11365,20.15209],[73.11566,20.15217],[73.11652,20.15582],[73.11481,20.15894],[73.11566,20.16222],[73.11948,20.16404],[73.11918,20.16821],[73.12841,20.17344],[73.13248,20.16942],[73.13604,20.17003],[73.14187,20.17736],[73.13896,20.18447],[73.13492,20.18499],[73.1339,20.18783],[73.13261,20.19196],[73.13299,20.20577],[73.13753,20.20759],[73.13852,20.20451],[73.14757,20.20074],[73.15225,20.2039],[73.15718,20.19835],[73.16829,20.20823],[73.16873,20.20302],[73.17147,20.19844],[73.17675,20.19933],[73.1788,20.19775],[73.17795,20.19264],[73.19003,20.1951],[73.19172,20.19743],[73.19881,20.19446],[73.2067,20.18812],[73.20825,20.1895],[73.21772,20.18593],[73.21819,20.18152],[73.21416,20.17171],[73.20554,20.16417],[73.20104,20.16531],[73.18967,20.16426],[73.1883,20.15859],[73.18538,20.15584],[73.18452,20.14725],[73.18776,20.1286],[73.19745,20.12632],[73.20302,20.1196],[73.21057,20.12049],[73.21701,20.12861],[73.21793,20.13665],[73.22568,20.14015],[73.22678,20.13358],[73.22495,20.1238],[73.22929,20.12263],[73.24323,20.12812],[73.24673,20.12652],[73.24925,20.12233],[73.2547,20.12693],[73.2539,20.13796],[73.25741,20.13765],[73.26515,20.14026],[73.27923,20.15014],[73.28157,20.16686],[73.28118,20.19001],[73.28305,20.19805],[73.28901,20.19817],[73.29328,20.20445],[73.29983,20.20954],[73.30516,20.20858],[73.31405,20.20214],[73.32444,20.20619],[73.33647,20.20017],[73.34384,20.19938],[73.34639,20.20931],[73.3565,20.213],[73.35925,20.21151],[73.36126,20.20765],[73.35347,20.20282],[73.3536,20.20036],[73.36475,20.19558],[73.36653,20.19636],[73.36624,20.20391],[73.37456,20.2047],[73.37814,20.21095],[73.3825,20.21173],[73.38638,20.20939],[73.38575,20.19615],[73.38867,20.19277],[73.39121,20.19369],[73.39448,20.19864],[73.40588,20.19549],[73.41651,20.19829],[73.42121,20.20659],[73.42011,20.211],[73.41557,20.2127],[73.41714,20.21457],[73.41784,20.22235],[73.4164,20.22422],[73.4136,20.22434],[73.41191,20.23207],[73.41447,20.23594],[73.41044,20.23851],[73.41741,20.24273],[73.41252,20.24449],[73.41533,20.25071],[73.4113,20.25322],[73.41612,20.25868],[73.4138,20.25965],[73.41552,20.26195],[73.41215,20.26551],[73.41494,20.26631],[73.41581,20.26838],[73.41311,20.26921],[73.41285,20.27095],[73.41503,20.27488],[73.4179,20.27332],[73.41919,20.27555],[73.42319,20.27477],[73.4277,20.28012],[73.42394,20.29151],[73.42022,20.29736],[73.42043,20.30735],[73.41873,20.31397],[73.41535,20.31742],[73.41681,20.32017],[73.41617,20.32479],[73.41381,20.32572],[73.41847,20.33052],[73.41718,20.33514],[73.41423,20.33612],[73.41216,20.34358],[73.41329,20.34613],[73.4092,20.34922],[73.40986,20.35093],[73.41366,20.35221],[73.41267,20.36088],[73.40644,20.3734],[73.40549,20.38538],[73.4024,20.38621],[73.39839,20.38406],[73.3882,20.37386],[73.38419,20.37204],[73.38041,20.37749],[73.37928,20.39027],[73.37994,20.39404],[73.38728,20.3983],[73.39641,20.39667],[73.39951,20.4058],[73.40191,20.40607],[73.40592,20.40297],[73.40487,20.40998],[73.41232,20.41075],[73.41402,20.41622],[73.41718,20.41309],[73.41957,20.41307],[73.41854,20.41793],[73.42312,20.42216],[73.4211,20.43003],[73.42856,20.44208],[73.4315,20.44971],[73.43101,20.45441],[73.43296,20.45364],[73.43546,20.45584],[73.44483,20.47478],[73.45625,20.47833],[73.45721,20.48835],[73.45912,20.49184],[73.46767,20.49647],[73.46874,20.50585],[73.46691,20.50923],[73.46987,20.52031],[73.49325,20.53668],[73.4935,20.53933],[73.49117,20.54092],[73.4831,20.54104],[73.4753,20.54333],[73.4792,20.56024],[73.47315,20.58464],[73.46357,20.58952],[73.45908,20.58942],[73.44947,20.59404],[73.43561,20.5933],[73.42958,20.5952],[73.42909,20.59788],[73.43151,20.60015],[73.42646,20.60198],[73.42824,20.60651],[73.42555,20.6088],[73.42562,20.61188],[73.42351,20.61421],[73.42509,20.61758],[73.42112,20.62587],[73.4186,20.62773],[73.41515,20.62631],[73.4102,20.62707],[73.40636,20.62323],[73.40075,20.6233],[73.39267,20.61724],[73.38432,20.61396],[73.38224,20.61425],[73.37926,20.61835],[73.37535,20.6157],[73.36963,20.61621],[73.36831,20.6132],[73.35942,20.61647],[73.35752,20.61226],[73.35253,20.60789],[73.33309,20.60302],[73.33002,20.59911],[73.32511,20.60079],[73.32232,20.59578],[73.31497,20.60193],[73.31,20.5985],[73.30997,20.5943],[73.30627,20.59134],[73.29421,20.58983],[73.28997,20.59296],[73.28657,20.59008],[73.28329,20.58967],[73.27327,20.58141],[73.25892,20.57978],[73.25498,20.5853],[73.24528,20.58802],[73.24182,20.59353],[73.22519,20.59592],[73.2189,20.60229],[73.21016,20.60238],[73.20374,20.59337],[73.18694,20.5918],[73.17813,20.59496],[73.17226,20.60266],[73.16556,20.59942],[73.15248,20.60559],[73.1468,20.60413],[73.14029,20.59914],[73.13034,20.60075],[73.12734,20.59952],[73.12148,20.60164],[73.11507,20.59418],[73.10928,20.59478],[73.10319,20.59811],[73.10344,20.59952],[73.10028,20.60007],[73.09558,20.59766],[73.0835,20.6019],[73.07281,20.59995],[73.07192,20.60548],[73.06924,20.60551],[73.06734,20.61188],[73.0714,20.62259],[73.0671,20.62255],[73.06561,20.62701],[73.06619,20.63336],[73.0729,20.64761],[73.07279,20.65276],[73.06447,20.65937],[73.06157,20.65888],[73.05855,20.66314],[73.05584,20.66412],[73.04342,20.66342],[73.04191,20.66453],[73.04093,20.66334],[73.03695,20.66592],[73.03286,20.66502],[73.03493,20.66904],[73.03012,20.67064],[73.02852,20.67666],[73.03128,20.68029],[73.03552,20.68152],[73.03932,20.68051],[73.04734,20.6991],[73.04359,20.70184],[73.03937,20.70068],[73.03308,20.7016],[73.02862,20.70707],[73.01833,20.7111],[73.01323,20.72155],[73.01387,20.72403],[73.01222,20.72707],[73.01669,20.72871],[73.01623,20.73004],[73.01283,20.72881],[73.00873,20.72975],[73.00098,20.72516],[72.99911,20.72763],[72.99389,20.72679],[72.99353,20.72908],[72.9969,20.73317],[72.99664,20.73507],[72.9902,20.73348],[72.98676,20.73695],[72.97199,20.74509],[72.96947,20.74257],[72.96292,20.74151],[72.96324,20.73536],[72.96674,20.73204],[72.96844,20.72728],[72.9638,20.7251],[72.95793,20.71909],[72.94144,20.72287],[72.94095,20.72813],[72.93672,20.73049],[72.93551,20.73304],[72.92879,20.73441],[72.9147,20.73312],[72.88029,20.73357],[72.87673,20.7401],[72.86644,20.73981],[72.85444,20.75049]],[[72.9553,20.31051],[72.95277,20.31421],[72.95574,20.31808],[72.95705,20.32372],[72.95935,20.32559],[72.96112,20.33242],[72.9791,20.33224],[72.98239,20.31831],[72.97286,20.30865],[72.97357,20.30556],[72.97084,20.29686],[72.96841,20.29793],[72.96449,20.30464],[72.9553,20.31051]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"463","area_level":"District","area_name":"Daman","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.84839,20.47802],[72.84627,20.47803],[72.84647,20.47139],[72.8442,20.46683],[72.83712,20.46191],[72.83544,20.45991],[72.83308,20.45512],[72.82565,20.4464],[72.8212,20.43682],[72.82008,20.43292],[72.82089,20.42337],[72.81902,20.42178],[72.81856,20.4189],[72.81708,20.41751],[72.81663,20.40667],[72.81516,20.40312],[72.81332,20.3901],[72.80965,20.38235],[72.80524,20.37606],[72.8046,20.37227],[72.80991,20.37224],[72.82616,20.36642],[72.83039,20.36794],[72.83594,20.37332],[72.84087,20.37346],[72.84423,20.37494],[72.85614,20.37203],[72.85813,20.37404],[72.86419,20.37519],[72.86569,20.37226],[72.87667,20.36977],[72.88297,20.37231],[72.89067,20.37265],[72.89149,20.37565],[72.89547,20.37813],[72.89659,20.37987],[72.8869,20.38545],[72.8871,20.38818],[72.88362,20.39122],[72.88276,20.39785],[72.88508,20.39788],[72.8877,20.40003],[72.88999,20.39898],[72.89187,20.39916],[72.89485,20.40158],[72.8959,20.40116],[72.89793,20.40235],[72.90041,20.40526],[72.90259,20.4058],[72.90329,20.40978],[72.90177,20.41021],[72.90405,20.41498],[72.90041,20.41687],[72.8979,20.42061],[72.8932,20.42173],[72.89172,20.42137],[72.89111,20.41961],[72.88919,20.41904],[72.88323,20.41992],[72.88167,20.41948],[72.8802,20.41702],[72.87533,20.41681],[72.8743,20.41487],[72.87175,20.41389],[72.87018,20.41385],[72.86842,20.4164],[72.8649,20.41731],[72.86253,20.4168],[72.85725,20.41892],[72.85838,20.42314],[72.86023,20.42489],[72.86109,20.4276],[72.86507,20.42908],[72.86836,20.43459],[72.8698,20.43952],[72.87484,20.44557],[72.87685,20.44464],[72.8789,20.44166],[72.88771,20.43825],[72.89016,20.43865],[72.89144,20.4409],[72.89532,20.44431],[72.88797,20.4506],[72.88713,20.45492],[72.888,20.46071],[72.88529,20.46262],[72.87725,20.46176],[72.87047,20.46349],[72.8666,20.46339],[72.85978,20.46464],[72.85812,20.46564],[72.85583,20.47116],[72.85022,20.47456],[72.84839,20.47802]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"464","area_level":"District","area_name":"Diu","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[70.92536,20.73799],[70.92429,20.74066],[70.91949,20.7431],[70.91586,20.74203],[70.91339,20.74014],[70.91142,20.73736],[70.91011,20.73684],[70.90535,20.73656],[70.89387,20.73239],[70.88245,20.73095],[70.87713,20.72763],[70.87597,20.72575],[70.87574,20.72316],[70.87213,20.71835],[70.87085,20.71026],[70.87139,20.70711],[70.87422,20.70641],[70.87467,20.7089],[70.87677,20.70968],[70.88774,20.70928],[70.89315,20.70764],[70.898,20.70456],[70.89895,20.70286],[70.89691,20.70102],[70.89766,20.70007],[70.89996,20.69964],[70.90975,20.70083],[70.91021,20.70133],[70.90955,20.70191],[70.91053,20.70226],[70.91183,20.70139],[70.91137,20.7],[70.91332,20.69951],[70.91701,20.70207],[70.91468,20.70221],[70.91564,20.70303],[70.91505,20.7053],[70.91556,20.70688],[70.91769,20.70922],[70.91977,20.71052],[70.92804,20.71227],[70.93234,20.71191],[70.93768,20.71037],[70.93843,20.70981],[70.93781,20.7087],[70.93821,20.70795],[70.94433,20.70588],[70.94532,20.70641],[70.94812,20.70568],[70.94893,20.70687],[70.94981,20.7058],[70.95075,20.70611],[70.95095,20.70495],[70.95231,20.70402],[70.95505,20.70451],[70.95968,20.70714],[70.961,20.70728],[70.96181,20.70613],[70.9636,20.70586],[70.96933,20.70795],[70.97052,20.70702],[70.97126,20.70435],[70.97304,20.70514],[70.97369,20.70301],[70.97418,20.70454],[70.97525,20.70484],[70.97696,20.7028],[70.9799,20.70595],[70.9852,20.70927],[70.98612,20.70899],[70.987,20.71032],[70.98931,20.70935],[70.99116,20.7107],[70.99189,20.7103],[70.99442,20.71127],[70.99738,20.71393],[70.99845,20.71715],[70.99774,20.71833],[70.99554,20.71947],[70.99331,20.72262],[70.99308,20.72657],[70.99757,20.73263],[71.0,20.73394],[71.0,20.7352],[71.00738,20.73752],[71.00231,20.74182],[70.99949,20.74223],[70.9987,20.74044],[70.9956,20.73884],[70.99307,20.73578],[70.99051,20.73541],[70.9887,20.73342],[70.98448,20.73225],[70.98101,20.72269],[70.97402,20.72787],[70.96435,20.72961],[70.9633,20.73357],[70.96041,20.73672],[70.95414,20.73492],[70.94695,20.7346],[70.93851,20.73243],[70.93172,20.73689],[70.92708,20.73696],[70.92536,20.73799]]],[[[71.15536,20.76009],[71.15544,20.76039],[71.15544,20.76065],[71.15526,20.76105],[71.15507,20.76116],[71.15471,20.76125],[71.15338,20.76143],[71.1529,20.76162],[71.15257,20.76192],[71.15209,20.76277],[71.15209,20.76337],[71.15201,20.76372],[71.15177,20.76391],[71.15159,20.76393],[71.15132,20.76387],[71.15117,20.76369],[71.15117,20.76355],[71.15124,20.76309],[71.15133,20.76284],[71.15147,20.76214],[71.1515,20.76177],[71.15145,20.76155],[71.1513,20.7613],[71.15099,20.76095],[71.1505,20.76064],[71.14999,20.76007],[71.14987,20.75975],[71.14991,20.75943],[71.1502,20.75919],[71.15071,20.75906],[71.15108,20.75907],[71.15152,20.75912],[71.15255,20.75954],[71.15316,20.75984],[71.15342,20.75988],[71.15368,20.75984],[71.15407,20.7596],[71.15443,20.75951],[71.15464,20.75952],[71.15511,20.75977],[71.15536,20.76009]]],[[[71.14734,20.77136],[71.14639,20.77134],[71.14675,20.7707],[71.14665,20.77036],[71.14642,20.77008],[71.14642,20.76997],[71.14643,20.76979],[71.14668,20.76931],[71.14645,20.76862],[71.14677,20.76777],[71.14615,20.76313],[71.14592,20.76066],[71.14607,20.75898],[71.14712,20.75876],[71.14733,20.75848],[71.14808,20.75825],[71.14843,20.75861],[71.14846,20.75965],[71.14833,20.75998],[71.14836,20.76045],[71.14846,20.76072],[71.14937,20.7613],[71.14972,20.7619],[71.14958,20.76271],[71.14924,20.76329],[71.14883,20.76616],[71.14913,20.76637],[71.14949,20.77028],[71.14976,20.77144],[71.14734,20.77136]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"465","area_level":"District","area_name":"Dadra And Nagar Haveli","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.96297,20.33248],[72.96112,20.33242],[72.96058,20.32859],[72.95935,20.32559],[72.95705,20.32372],[72.95664,20.32038],[72.95574,20.31808],[72.95459,20.31624],[72.95277,20.31401],[72.95451,20.31124],[72.9553,20.31051],[72.95657,20.30959],[72.95986,20.30792],[72.96449,20.30464],[72.96586,20.30261],[72.96701,20.29991],[72.96841,20.29793],[72.96959,20.29702],[72.97084,20.29686],[72.97101,20.29797],[72.97193,20.29995],[72.97225,20.30139],[72.97239,20.30407],[72.97357,20.30556],[72.97286,20.30865],[72.97415,20.31036],[72.97719,20.31207],[72.97868,20.31514],[72.98239,20.31831],[72.98256,20.32036],[72.97946,20.32743],[72.9791,20.33224],[72.9741,20.33188],[72.96958,20.33266],[72.9647,20.33237],[72.96297,20.33248]]],[[[73.09699,20.35993],[73.0958,20.36133],[73.08906,20.35869],[73.08845,20.35033],[73.09027,20.34393],[73.08782,20.34124],[73.08453,20.33182],[73.07717,20.32348],[73.07027,20.32547],[73.06665,20.33003],[73.04924,20.32441],[73.04174,20.32599],[73.0377,20.31767],[73.03561,20.2932],[73.03429,20.29163],[73.02661,20.29067],[73.01532,20.29402],[73.01669,20.31037],[73.01241,20.30933],[73.01217,20.31169],[73.00615,20.3128],[73.00942,20.30981],[73.01157,20.30039],[73.01005,20.29121],[73.00483,20.28917],[73.00102,20.29197],[72.99682,20.29076],[72.99441,20.29231],[72.98728,20.29087],[72.98536,20.28808],[72.98117,20.28927],[72.98193,20.2755],[72.97119,20.26906],[72.96223,20.27134],[72.96184,20.27502],[72.95568,20.27891],[72.95529,20.2842],[72.95205,20.28408],[72.9482,20.28777],[72.94505,20.28849],[72.94164,20.29309],[72.9357,20.29462],[72.93133,20.29288],[72.92858,20.28631],[72.9208,20.28368],[72.9202,20.28117],[72.91724,20.2808],[72.91601,20.27601],[72.91213,20.275],[72.91171,20.27026],[72.91752,20.26339],[72.91848,20.25856],[72.92366,20.25661],[72.93064,20.24441],[72.93761,20.24482],[72.95398,20.23826],[72.95829,20.23539],[72.96059,20.23033],[72.96595,20.22487],[72.96451,20.2138],[72.96164,20.20944],[72.95985,20.20122],[72.96178,20.19203],[72.96085,20.18605],[72.96303,20.18221],[72.96893,20.18342],[72.97676,20.1809],[72.97688,20.17865],[72.97372,20.17383],[72.9744,20.16025],[72.96158,20.1371],[72.96082,20.13328],[72.96358,20.12604],[72.96852,20.12366],[72.9705,20.11561],[72.97736,20.11278],[72.9796,20.11569],[72.99182,20.1177],[72.99535,20.13231],[72.9946,20.13882],[72.9975,20.14276],[72.99922,20.14257],[73.00329,20.14034],[73.005,20.13588],[73.01165,20.13402],[73.0132,20.12956],[72.99961,20.12302],[73.00074,20.1123],[73.01043,20.10578],[73.0137,20.09648],[73.02183,20.09],[73.02336,20.08472],[73.03048,20.07966],[73.0402,20.06643],[73.04738,20.0657],[73.05062,20.06374],[73.05206,20.08529],[73.05519,20.09987],[73.06369,20.09959],[73.06817,20.09679],[73.08059,20.09495],[73.08096,20.09233],[73.08355,20.09117],[73.10226,20.09124],[73.10604,20.08754],[73.10606,20.07417],[73.10846,20.0753],[73.11198,20.07117],[73.11192,20.07427],[73.11434,20.07624],[73.11893,20.07509],[73.11905,20.07866],[73.1241,20.07797],[73.1255,20.0835],[73.13071,20.08175],[73.13336,20.08618],[73.13639,20.08637],[73.13707,20.07913],[73.14247,20.0803],[73.14309,20.07643],[73.14669,20.07386],[73.14869,20.07485],[73.14919,20.079],[73.15464,20.07576],[73.15185,20.07256],[73.15447,20.07042],[73.15579,20.06588],[73.15716,20.06587],[73.15644,20.06352],[73.1635,20.06055],[73.16513,20.05524],[73.16776,20.05577],[73.17071,20.05204],[73.17663,20.05195],[73.17798,20.04703],[73.18332,20.05028],[73.19092,20.04959],[73.1921,20.05471],[73.18615,20.05917],[73.18925,20.07325],[73.18853,20.0781],[73.19691,20.07594],[73.19816,20.07785],[73.20475,20.07996],[73.20952,20.085],[73.2139,20.11899],[73.20302,20.1196],[73.19745,20.12632],[73.18964,20.12731],[73.18699,20.12945],[73.18465,20.14469],[73.18538,20.15584],[73.1883,20.15859],[73.18967,20.16426],[73.20104,20.16531],[73.20554,20.16417],[73.21416,20.17171],[73.21819,20.18152],[73.21772,20.18593],[73.20825,20.1895],[73.2067,20.18812],[73.19881,20.19446],[73.19172,20.19743],[73.19003,20.1951],[73.17795,20.19264],[73.1788,20.19775],[73.17675,20.19933],[73.17147,20.19844],[73.16873,20.20302],[73.16829,20.20823],[73.15718,20.19835],[73.15225,20.2039],[73.14757,20.20074],[73.13852,20.20451],[73.13753,20.20759],[73.13299,20.20577],[73.13261,20.19196],[73.13492,20.18499],[73.13896,20.18447],[73.14187,20.17736],[73.13604,20.17003],[73.13248,20.16942],[73.12841,20.17344],[73.11918,20.16821],[73.11948,20.16404],[73.11566,20.16222],[73.11481,20.15894],[73.11652,20.15582],[73.11566,20.15217],[73.11365,20.15209],[73.10811,20.15784],[73.09941,20.15622],[73.0903,20.16032],[73.08704,20.17032],[73.07928,20.17324],[73.07358,20.15562],[73.07066,20.15558],[73.06024,20.16189],[73.06041,20.16687],[73.06264,20.16975],[73.0628,20.17761],[73.05953,20.19393],[73.05322,20.19543],[73.0488,20.20086],[73.0534,20.20539],[73.05996,20.22334],[73.06257,20.22403],[73.06365,20.22776],[73.07051,20.2321],[73.08244,20.23089],[73.08549,20.22764],[73.08927,20.22676],[73.09774,20.2293],[73.09901,20.23194],[73.0973,20.23867],[73.10627,20.24619],[73.107,20.25077],[73.11399,20.25831],[73.126,20.26076],[73.13053,20.26949],[73.13123,20.27503],[73.13728,20.27314],[73.13997,20.27379],[73.14227,20.27642],[73.14222,20.2811],[73.14585,20.28858],[73.15173,20.29203],[73.15367,20.28523],[73.15823,20.28131],[73.16494,20.28399],[73.1663,20.28787],[73.16579,20.29407],[73.16349,20.2982],[73.16623,20.30527],[73.16573,20.31043],[73.15941,20.30885],[73.15078,20.31834],[73.12944,20.31832],[73.12645,20.3088],[73.12695,20.30551],[73.12189,20.30419],[73.11661,20.30616],[73.11154,20.30405],[73.10852,20.30527],[73.10281,20.30178],[73.10037,20.30482],[73.10291,20.31413],[73.10843,20.32457],[73.10804,20.33103],[73.11125,20.33777],[73.10803,20.33902],[73.10738,20.34391],[73.10398,20.34755],[73.10478,20.34994],[73.10169,20.35474],[73.09864,20.3547],[73.09699,20.35993]],[[72.98987,20.21333],[72.98377,20.21306],[72.97905,20.21558],[72.97478,20.21927],[72.97462,20.22573],[72.97923,20.23403],[72.98951,20.2388],[72.9984,20.23675],[73.00832,20.22896],[73.00255,20.22063],[73.00113,20.21444],[72.99295,20.21499],[72.98987,20.21333]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"466","area_level":"District","area_name":"Ahilyanagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.46867,19.99493],[74.45768,19.99498],[74.45197,19.97949],[74.44362,19.97419],[74.43315,19.97328],[74.38242,19.98136],[74.37697,19.97198],[74.36472,19.97478],[74.36277,19.96511],[74.34953,19.96747],[74.34727,19.98455],[74.31608,19.98548],[74.31611,19.97869],[74.31162,19.97661],[74.30845,19.96829],[74.30308,19.96667],[74.2992,19.97201],[74.29921,19.97419],[74.29223,19.97981],[74.29168,19.98271],[74.28538,19.98619],[74.28502,19.97221],[74.28109,19.95727],[74.27274,19.96225],[74.24784,19.96298],[74.24771,19.93549],[74.2654,19.93474],[74.27274,19.93272],[74.27614,19.91857],[74.27456,19.90644],[74.29014,19.90376],[74.28913,19.90208],[74.29039,19.8984],[74.30195,19.89672],[74.30947,19.893],[74.33533,19.88662],[74.33734,19.87246],[74.36315,19.87144],[74.362,19.85048],[74.3629,19.83419],[74.36311,19.83313],[74.36902,19.83472],[74.36714,19.81096],[74.3733,19.80544],[74.37425,19.80216],[74.37089,19.80201],[74.3677,19.80562],[74.36503,19.80205],[74.36245,19.80263],[74.36145,19.80066],[74.35903,19.80153],[74.35917,19.79743],[74.3547,19.79773],[74.35287,19.79521],[74.34957,19.79559],[74.34982,19.79784],[74.34394,19.79874],[74.32683,19.7957],[74.32257,19.78001],[74.3256,19.77286],[74.31685,19.76514],[74.30935,19.76632],[74.30952,19.7675],[74.28722,19.7764],[74.27469,19.77733],[74.2694,19.76067],[74.24737,19.75179],[74.24652,19.74444],[74.22362,19.74208],[74.22425,19.73988],[74.22033,19.73758],[74.21094,19.73942],[74.18866,19.73924],[74.18354,19.73233],[74.16639,19.72991],[74.16366,19.72505],[74.1643,19.71824],[74.15625,19.70763],[74.1582,19.70407],[74.15301,19.69547],[74.15362,19.69259],[74.15093,19.68509],[74.14461,19.69225],[74.13865,19.69518],[74.13568,19.69315],[74.13459,19.69087],[74.13813,19.68644],[74.13672,19.68397],[74.14483,19.67353],[74.14208,19.67088],[74.13794,19.67087],[74.13446,19.66749],[74.1341,19.6643],[74.12813,19.65921],[74.12329,19.65162],[74.12311,19.64759],[74.11972,19.64261],[74.11599,19.64647],[74.10975,19.64433],[74.10132,19.64837],[74.09909,19.64268],[74.09602,19.64102],[74.09183,19.64276],[74.0876,19.64753],[74.07849,19.65192],[74.07642,19.6579],[74.07276,19.65836],[74.07094,19.66082],[74.05196,19.66231],[74.0433,19.66702],[74.03467,19.66584],[74.03246,19.66878],[74.02398,19.67087],[74.02105,19.67384],[74.01412,19.67247],[74.01178,19.66993],[74.00841,19.67241],[74.00334,19.66782],[73.99978,19.66975],[73.99505,19.66781],[73.98471,19.66982],[73.97843,19.67573],[73.97168,19.67469],[73.96934,19.67083],[73.96126,19.67428],[73.95833,19.67233],[73.95687,19.6687],[73.94943,19.6727],[73.9315,19.67041],[73.92716,19.67523],[73.92551,19.67219],[73.92248,19.67563],[73.90854,19.6827],[73.90396,19.69413],[73.90706,19.69732],[73.91222,19.69424],[73.91265,19.69648],[73.91057,19.69845],[73.91117,19.70154],[73.90471,19.70368],[73.90154,19.71056],[73.89869,19.71133],[73.89515,19.71609],[73.89822,19.72592],[73.89726,19.72955],[73.89969,19.74265],[73.89848,19.74725],[73.89072,19.74727],[73.88845,19.75196],[73.88617,19.74409],[73.88401,19.74337],[73.88428,19.74063],[73.88056,19.74105],[73.88052,19.73852],[73.87598,19.74148],[73.8733,19.74154],[73.87299,19.73969],[73.86799,19.74132],[73.8647,19.74861],[73.85993,19.74659],[73.85487,19.74698],[73.85791,19.74311],[73.84931,19.74551],[73.84837,19.74376],[73.83676,19.74046],[73.84037,19.73196],[73.83877,19.72212],[73.83044,19.71696],[73.82321,19.71609],[73.81942,19.71398],[73.81861,19.70936],[73.81356,19.70071],[73.81422,19.69321],[73.81284,19.69162],[73.81495,19.68974],[73.81238,19.69025],[73.81054,19.68758],[73.8097,19.68209],[73.80637,19.68473],[73.80495,19.68948],[73.80304,19.68759],[73.79614,19.68945],[73.79404,19.68824],[73.79341,19.68657],[73.79537,19.68432],[73.80099,19.68331],[73.80577,19.67696],[73.7992,19.67734],[73.8,19.676],[73.79417,19.67554],[73.79329,19.67324],[73.79232,19.67379],[73.79223,19.671],[73.78945,19.66887],[73.79114,19.66772],[73.78949,19.66515],[73.79029,19.66296],[73.78496,19.65905],[73.78152,19.65977],[73.78072,19.65501],[73.77762,19.6522],[73.77909,19.6497],[73.78242,19.64669],[73.78867,19.6456],[73.79283,19.64159],[73.78953,19.64247],[73.78367,19.63956],[73.77575,19.64063],[73.77784,19.63527],[73.7765,19.63476],[73.77688,19.63248],[73.77516,19.6321],[73.7757,19.6285],[73.76638,19.63188],[73.76708,19.62994],[73.7637,19.6283],[73.76064,19.62913],[73.75167,19.62558],[73.74956,19.62201],[73.74408,19.62371],[73.73699,19.61806],[73.7295,19.61764],[73.72687,19.62116],[73.72481,19.6214],[73.71975,19.61994],[73.71251,19.61653],[73.70945,19.61233],[73.70847,19.60166],[73.7051,19.59606],[73.69641,19.59149],[73.68632,19.59265],[73.67536,19.58669],[73.66939,19.58608],[73.66913,19.58999],[73.66475,19.58659],[73.64917,19.58965],[73.64176,19.58956],[73.63533,19.59434],[73.63057,19.5946],[73.62943,19.59173],[73.61561,19.58453],[73.61438,19.57674],[73.6177,19.58133],[73.62443,19.57487],[73.62565,19.57161],[73.62686,19.57292],[73.62846,19.5685],[73.62589,19.56597],[73.62768,19.55699],[73.62666,19.55306],[73.6219,19.54853],[73.62328,19.5454],[73.62261,19.54208],[73.62514,19.5435],[73.62892,19.54082],[73.63191,19.54165],[73.63292,19.53271],[73.63511,19.53294],[73.63913,19.53915],[73.64436,19.53848],[73.64531,19.53706],[73.64933,19.53834],[73.65693,19.53684],[73.66021,19.52966],[73.65991,19.52597],[73.66298,19.52134],[73.66457,19.51212],[73.66988,19.51337],[73.67518,19.50949],[73.67903,19.51342],[73.67962,19.51876],[73.68209,19.51538],[73.68614,19.51445],[73.68641,19.51047],[73.68979,19.50648],[73.69007,19.50487],[73.68629,19.50015],[73.70621,19.49756],[73.70839,19.49547],[73.70822,19.49151],[73.71351,19.48443],[73.70794,19.48444],[73.70598,19.47899],[73.69585,19.47871],[73.69659,19.47609],[73.69483,19.46979],[73.68478,19.46615],[73.68588,19.44962],[73.6846,19.4448],[73.68897,19.44075],[73.68777,19.44023],[73.69314,19.43357],[73.70319,19.43455],[73.70677,19.43152],[73.70788,19.42768],[73.70774,19.43069],[73.7107,19.43169],[73.72631,19.43165],[73.73072,19.43023],[73.72898,19.422],[73.73608,19.41012],[73.73592,19.40754],[73.74487,19.40889],[73.75141,19.40725],[73.75306,19.39705],[73.76995,19.39201],[73.77144,19.38648],[73.77798,19.38724],[73.78919,19.39178],[73.7937,19.39135],[73.80092,19.39512],[73.80768,19.39304],[73.8126,19.38784],[73.82115,19.38675],[73.82568,19.38158],[73.83659,19.37681],[73.84173,19.37231],[73.84298,19.3711],[73.84076,19.36631],[73.85348,19.35555],[73.85791,19.35647],[73.86645,19.35517],[73.87397,19.35868],[73.87933,19.36758],[73.8855,19.37362],[73.89416,19.37051],[73.9038,19.3622],[73.91302,19.36224],[73.91899,19.35493],[73.91996,19.34908],[73.92398,19.34577],[73.92687,19.33871],[73.9332,19.34124],[73.93644,19.3387],[73.93885,19.34007],[73.93821,19.343],[73.94185,19.34215],[73.94351,19.34454],[73.94503,19.3397],[73.94683,19.34269],[73.94918,19.34257],[73.94991,19.34001],[73.95306,19.3424],[73.95509,19.34173],[73.95353,19.34753],[73.96598,19.35034],[73.96907,19.35404],[73.97143,19.35317],[73.97235,19.34898],[73.9768,19.35047],[73.98256,19.34968],[73.99229,19.35334],[73.99504,19.35243],[73.99942,19.35944],[74.00225,19.34907],[74.00173,19.3414],[74.00523,19.34069],[74.01153,19.3353],[74.01213,19.3291],[74.01931,19.32147],[74.01771,19.31523],[74.02204,19.3154],[74.02238,19.31354],[74.02384,19.31484],[74.02528,19.31201],[74.02419,19.30947],[74.01967,19.30971],[74.02162,19.30909],[74.02509,19.29893],[74.02405,19.29819],[74.0224,19.30024],[74.01878,19.2956],[74.01528,19.29964],[74.01171,19.29958],[74.00912,19.30566],[74.00558,19.30514],[74.00487,19.30285],[74.00817,19.29823],[74.00777,19.29497],[74.00565,19.2936],[74.00635,19.29254],[74.01157,19.29525],[74.01429,19.29261],[74.01593,19.29395],[74.01743,19.28585],[74.01961,19.28377],[74.02041,19.28702],[74.02348,19.28865],[74.02689,19.28364],[74.02982,19.28291],[74.02981,19.27797],[74.02584,19.27449],[74.02684,19.27081],[74.02475,19.27053],[74.02306,19.26672],[74.02787,19.26467],[74.03282,19.25818],[74.03123,19.24953],[74.04227,19.26113],[74.04495,19.26192],[74.04769,19.25211],[74.04901,19.25209],[74.04964,19.24355],[74.05404,19.24158],[74.06027,19.24586],[74.07151,19.23545],[74.07722,19.2359],[74.08926,19.22821],[74.09277,19.22767],[74.09283,19.22869],[74.08515,19.23287],[74.08372,19.23907],[74.09737,19.2323],[74.10047,19.23351],[74.10049,19.23089],[74.10572,19.23069],[74.11384,19.22609],[74.11547,19.22993],[74.11722,19.22628],[74.12599,19.22239],[74.13552,19.22466],[74.1513,19.22573],[74.15192,19.22169],[74.1552,19.22035],[74.15324,19.21971],[74.15403,19.21482],[74.1566,19.21233],[74.15712,19.20423],[74.16521,19.20807],[74.16373,19.21508],[74.16847,19.22415],[74.17855,19.21985],[74.18874,19.20954],[74.21177,19.20614],[74.21402,19.20391],[74.21986,19.20287],[74.22302,19.20509],[74.22752,19.20381],[74.23046,19.20527],[74.2328,19.20781],[74.233,19.21064],[74.24369,19.21403],[74.24732,19.21762],[74.24685,19.21929],[74.25019,19.21864],[74.25159,19.22111],[74.2565,19.21986],[74.26158,19.22407],[74.26035,19.22646],[74.27369,19.21944],[74.29284,19.2177],[74.31616,19.20784],[74.3098,19.20462],[74.30863,19.19845],[74.30624,19.1981],[74.30318,19.19149],[74.29986,19.18903],[74.29439,19.18952],[74.29477,19.18647],[74.28267,19.18759],[74.27361,19.18576],[74.26439,19.17942],[74.26715,19.17654],[74.26368,19.1698],[74.26604,19.16744],[74.2656,19.16373],[74.26684,19.1631],[74.26328,19.15978],[74.25794,19.15876],[74.25634,19.15206],[74.24396,19.14449],[74.24268,19.13921],[74.24119,19.13913],[74.23494,19.12791],[74.23467,19.12274],[74.23209,19.12114],[74.2282,19.12207],[74.22562,19.12955],[74.21801,19.12841],[74.21615,19.1302],[74.21159,19.12878],[74.20349,19.11177],[74.2002,19.11013],[74.19916,19.10391],[74.19682,19.10074],[74.20153,19.09329],[74.20011,19.0902],[74.20216,19.08897],[74.19125,19.07872],[74.18987,19.07353],[74.19114,19.05982],[74.18778,19.05965],[74.1864,19.05549],[74.18317,19.05374],[74.17929,19.04716],[74.17658,19.04664],[74.17633,19.04427],[74.17219,19.04103],[74.17646,19.03436],[74.17394,19.03143],[74.1784,19.02677],[74.18805,19.02393],[74.18963,19.01571],[74.19872,19.01486],[74.19972,19.01225],[74.19851,19.00778],[74.20019,19.00542],[74.20292,19.00533],[74.21097,19.00968],[74.21273,19.00877],[74.21465,19.00181],[74.21077,18.99712],[74.21082,18.99475],[74.21598,18.99308],[74.2193,18.99563],[74.22165,18.99519],[74.22567,18.98565],[74.22083,18.97779],[74.22073,18.97271],[74.22224,18.97055],[74.23164,18.96755],[74.23687,18.96879],[74.2355,18.9615],[74.23908,18.95751],[74.23608,18.9531],[74.24614,18.95284],[74.24915,18.95487],[74.25334,18.94337],[74.26042,18.93779],[74.27085,18.91869],[74.2808,18.91455],[74.28188,18.90908],[74.28396,18.90698],[74.29476,18.90351],[74.29576,18.90161],[74.29351,18.89769],[74.29442,18.89082],[74.29551,18.88728],[74.30169,18.87997],[74.30188,18.8731],[74.30815,18.86812],[74.30561,18.86357],[74.3064,18.85523],[74.3085,18.85296],[74.3279,18.83696],[74.33955,18.83681],[74.34341,18.84346],[74.34709,18.84565],[74.37788,18.83207],[74.38257,18.83086],[74.38916,18.83294],[74.39729,18.82835],[74.39865,18.82179],[74.39367,18.81865],[74.39117,18.8117],[74.38439,18.80495],[74.3889,18.79036],[74.38824,18.78482],[74.39345,18.77877],[74.40047,18.77569],[74.39363,18.76754],[74.3973,18.75247],[74.39802,18.74215],[74.40238,18.74308],[74.40956,18.74137],[74.41861,18.74605],[74.42514,18.74665],[74.42862,18.74274],[74.43687,18.73803],[74.43685,18.73511],[74.43181,18.73526],[74.43102,18.7335],[74.43793,18.72954],[74.43752,18.72448],[74.44009,18.72217],[74.44881,18.7204],[74.47034,18.72678],[74.47343,18.72554],[74.47743,18.72037],[74.48149,18.70359],[74.48042,18.70072],[74.47393,18.69601],[74.47598,18.68687],[74.48676,18.67711],[74.4912,18.67752],[74.49443,18.67973],[74.50359,18.67776],[74.50962,18.6688],[74.50904,18.66578],[74.50103,18.65915],[74.48978,18.65597],[74.48757,18.65372],[74.48641,18.64719],[74.47603,18.65024],[74.47266,18.649],[74.47092,18.64647],[74.47136,18.64173],[74.48157,18.63074],[74.50472,18.62406],[74.50604,18.61792],[74.5091,18.61342],[74.52901,18.61527],[74.53471,18.61827],[74.54883,18.61282],[74.55258,18.60763],[74.54313,18.59953],[74.54388,18.59262],[74.54141,18.581],[74.55302,18.57473],[74.55462,18.57008],[74.55915,18.56701],[74.56581,18.55616],[74.57695,18.54973],[74.57662,18.54461],[74.57485,18.54358],[74.57105,18.54566],[74.56852,18.54353],[74.57065,18.53928],[74.56584,18.52472],[74.56119,18.52191],[74.55865,18.51786],[74.55147,18.51428],[74.54757,18.50898],[74.55557,18.49523],[74.57035,18.48496],[74.57823,18.47432],[74.58114,18.47252],[74.61372,18.46813],[74.61947,18.46551],[74.63152,18.45384],[74.63955,18.45053],[74.64703,18.45017],[74.65084,18.45115],[74.65919,18.45733],[74.67176,18.45907],[74.67469,18.46278],[74.67452,18.4663],[74.67224,18.46877],[74.66294,18.46841],[74.65604,18.47332],[74.65606,18.48256],[74.65977,18.4901],[74.68202,18.49658],[74.69838,18.50603],[74.70264,18.50657],[74.70762,18.50428],[74.72571,18.48597],[74.72768,18.48215],[74.72366,18.46037],[74.72335,18.44842],[74.72188,18.44258],[74.71609,18.4321],[74.71706,18.42266],[74.72619,18.41413],[74.72898,18.40375],[74.73076,18.40131],[74.73838,18.3973],[74.75219,18.39654],[74.75499,18.3971],[74.76717,18.40666],[74.77747,18.40998],[74.79339,18.40198],[74.79896,18.39272],[74.80958,18.3837],[74.80344,18.37404],[74.79806,18.35334],[74.81559,18.34171],[74.82592,18.34443],[74.83041,18.34393],[74.83419,18.34073],[74.8334,18.33503],[74.84631,18.33284],[74.85047,18.32987],[74.85538,18.33194],[74.8549,18.3349],[74.86103,18.33431],[74.86485,18.3371],[74.86519,18.34835],[74.86735,18.35272],[74.87323,18.35519],[74.88531,18.357],[74.90805,18.35678],[74.91084,18.37214],[74.91468,18.37863],[74.92241,18.37811],[74.93604,18.38518],[74.94973,18.38829],[74.95888,18.38918],[74.96622,18.38554],[74.97049,18.38934],[74.97039,18.39255],[74.97267,18.39529],[74.9791,18.3998],[74.9987,18.4043],[75.00539,18.40334],[75.01072,18.42495],[75.01427,18.43467],[75.01726,18.43736],[75.05017,18.42968],[75.05826,18.41934],[75.0745,18.42355],[75.07944,18.42341],[75.08054,18.42843],[75.09023,18.43134],[75.09114,18.43774],[75.08936,18.44177],[75.09052,18.45134],[75.10472,18.48959],[75.11542,18.49295],[75.12199,18.49247],[75.12527,18.50727],[75.13298,18.52583],[75.13459,18.5265],[75.14558,18.52253],[75.15222,18.52275],[75.15825,18.51988],[75.18035,18.52679],[75.18198,18.53053],[75.19477,18.53223],[75.20163,18.53132],[75.2135,18.55407],[75.21957,18.55063],[75.22271,18.54434],[75.22841,18.54094],[75.23314,18.54225],[75.23926,18.54047],[75.24141,18.53701],[75.24089,18.5313],[75.24342,18.52614],[75.25296,18.51768],[75.2589,18.50829],[75.26646,18.50826],[75.26793,18.51257],[75.27977,18.51581],[75.28064,18.51932],[75.3,18.52168],[75.31298,18.51985],[75.31801,18.52306],[75.32973,18.52364],[75.32962,18.5378],[75.33815,18.54773],[75.3395,18.5548],[75.34268,18.5609],[75.34984,18.55936],[75.35508,18.55528],[75.36585,18.55267],[75.36566,18.55114],[75.37323,18.5517],[75.39449,18.54373],[75.39959,18.54095],[75.41007,18.53117],[75.41483,18.53059],[75.43012,18.54936],[75.43385,18.55114],[75.4385,18.56084],[75.44112,18.57609],[75.44522,18.58427],[75.45337,18.59355],[75.45238,18.59695],[75.45889,18.59477],[75.45924,18.59881],[75.46227,18.60147],[75.46078,18.6019],[75.46164,18.60569],[75.46919,18.6084],[75.48165,18.61793],[75.48614,18.61934],[75.48642,18.62338],[75.48964,18.62698],[75.49242,18.62305],[75.49588,18.62443],[75.49734,18.62116],[75.49921,18.62069],[75.5001,18.6233],[75.50702,18.62314],[75.50845,18.62646],[75.51842,18.63273],[75.51948,18.63809],[75.52135,18.6392],[75.52217,18.6378],[75.52813,18.64022],[75.53976,18.63889],[75.54196,18.64231],[75.54599,18.6444],[75.5471,18.65622],[75.54009,18.65653],[75.5397,18.65796],[75.54084,18.67285],[75.54441,18.68153],[75.56561,18.68583],[75.58128,18.68387],[75.58246,18.69846],[75.57762,18.69749],[75.57314,18.70087],[75.57232,18.70392],[75.56229,18.70332],[75.55322,18.70804],[75.55224,18.72626],[75.55552,18.7366],[75.5416,18.74512],[75.52496,18.75264],[75.52669,18.73321],[75.51448,18.72452],[75.50738,18.72333],[75.49131,18.72883],[75.49106,18.73711],[75.48173,18.74034],[75.47561,18.74556],[75.46874,18.74759],[75.4687,18.75145],[75.46424,18.75144],[75.46216,18.75456],[75.46228,18.75203],[75.456,18.74979],[75.45056,18.75115],[75.44657,18.75596],[75.44712,18.7649],[75.44491,18.76538],[75.44213,18.78973],[75.43864,18.79892],[75.41981,18.81415],[75.42083,18.81824],[75.41486,18.82286],[75.40344,18.82738],[75.39945,18.83158],[75.39189,18.82008],[75.39008,18.79318],[75.38636,18.77975],[75.38643,18.77244],[75.38048,18.77393],[75.38194,18.77052],[75.37962,18.7706],[75.37971,18.76922],[75.37673,18.76978],[75.37602,18.76803],[75.37521,18.77022],[75.37274,18.77115],[75.37315,18.77342],[75.3766,18.77461],[75.37407,18.77609],[75.37544,18.77808],[75.37264,18.77768],[75.37113,18.77487],[75.36896,18.77864],[75.36808,18.77793],[75.36783,18.78096],[75.36486,18.78164],[75.36621,18.78541],[75.36532,18.78681],[75.3622,18.78502],[75.36051,18.78576],[75.36164,18.78797],[75.35983,18.78937],[75.35701,18.78677],[75.35007,18.78605],[75.34899,18.78409],[75.3424,18.78265],[75.34348,18.78403],[75.33854,18.78651],[75.33604,18.79285],[75.32963,18.79567],[75.33032,18.7979],[75.32746,18.80125],[75.32079,18.79729],[75.31817,18.79131],[75.30703,18.78208],[75.3003,18.77105],[75.29181,18.76582],[75.29116,18.76359],[75.29254,18.76403],[75.28601,18.74827],[75.28228,18.74409],[75.28161,18.74186],[75.28329,18.74141],[75.27695,18.73002],[75.263,18.72675],[75.25495,18.72021],[75.22277,18.72876],[75.2138,18.73299],[75.21373,18.73753],[75.20816,18.73878],[75.19239,18.73654],[75.17163,18.73648],[75.17573,18.71421],[75.17499,18.70901],[75.17453,18.70655],[75.17238,18.70654],[75.16378,18.696],[75.16318,18.68653],[75.16552,18.68616],[75.164,18.66857],[75.16118,18.65284],[75.15826,18.6433],[75.15617,18.64214],[75.15218,18.64773],[75.14179,18.65343],[75.1415,18.66129],[75.13821,18.66596],[75.13063,18.66986],[75.12327,18.6788],[75.11689,18.6799],[75.11753,18.68211],[75.12045,18.68306],[75.11914,18.68575],[75.11001,18.68962],[75.10467,18.69602],[75.1033,18.70243],[75.09673,18.70667],[75.0887,18.70825],[75.08256,18.71382],[75.07704,18.71437],[75.07245,18.72029],[75.06743,18.73134],[75.05693,18.73568],[75.05708,18.74079],[75.05295,18.74773],[75.04384,18.75173],[75.04347,18.75558],[75.03978,18.7582],[75.03965,18.76365],[75.03077,18.76951],[75.02641,18.76949],[75.02232,18.77314],[75.01777,18.77173],[75.01266,18.77517],[75.01128,18.77894],[75.00638,18.78214],[75.00373,18.78808],[75.00867,18.79363],[75.00905,18.80446],[75.00177,18.80478],[75.00079,18.79819],[74.99882,18.79801],[74.99953,18.80548],[74.99839,18.80589],[74.99754,18.79789],[74.99331,18.79568],[74.9878,18.79821],[74.98607,18.79757],[74.97145,18.81336],[74.97569,18.82326],[74.97371,18.82829],[74.95894,18.81982],[74.95397,18.82026],[74.95066,18.8244],[74.9432,18.82731],[74.92739,18.82603],[74.92006,18.83023],[74.92001,18.83283],[74.92726,18.84275],[74.91835,18.85321],[74.90822,18.84636],[74.89469,18.84672],[74.89529,18.85798],[74.89393,18.86662],[74.89618,18.87595],[74.88898,18.88515],[74.88369,18.88623],[74.88509,18.89147],[74.88429,18.90094],[74.88657,18.90376],[74.88569,18.90726],[74.8835,18.90877],[74.88487,18.91208],[74.88404,18.91411],[74.87915,18.91482],[74.87723,18.91246],[74.87466,18.91273],[74.86476,18.89761],[74.8606,18.89847],[74.85581,18.90442],[74.84583,18.91054],[74.84572,18.91898],[74.84311,18.92331],[74.82504,18.93226],[74.82631,18.93555],[74.83381,18.93916],[74.83642,18.94491],[74.8358,18.95344],[74.82988,18.95705],[74.82915,18.96222],[74.81925,18.96256],[74.81585,18.96035],[74.81153,18.96251],[74.80866,18.96989],[74.80823,18.97693],[74.81803,18.98202],[74.8248,18.99048],[74.83608,18.96994],[74.84442,18.97068],[74.86823,18.97985],[74.87137,18.98503],[74.87969,18.98343],[74.88377,18.98047],[74.89948,18.98007],[74.90425,18.9717],[74.90382,18.96423],[74.91359,18.9589],[74.91853,18.95949],[74.91816,18.96896],[74.92361,18.97142],[74.93114,18.97111],[74.93579,18.97631],[74.9446,18.96952],[74.95256,18.97151],[74.95215,18.97551],[74.95438,18.97735],[74.95495,18.98098],[74.95439,18.99009],[74.95939,18.99913],[74.95802,19.0026],[74.94828,19.00454],[74.94961,19.03283],[74.93914,19.0342],[74.92159,19.03108],[74.91979,19.03311],[74.92647,19.03969],[74.92745,19.04307],[74.91763,19.03518],[74.91441,19.03751],[74.91785,19.06008],[74.91621,19.06509],[74.91923,19.07206],[74.91848,19.08326],[74.92083,19.09475],[74.92653,19.09992],[74.93251,19.1089],[74.93401,19.1192],[74.94246,19.13324],[74.94527,19.13311],[74.94749,19.12932],[74.95377,19.12514],[74.95374,19.12321],[74.95746,19.119],[74.96223,19.11948],[74.96468,19.11594],[74.9738,19.11099],[74.98009,19.11196],[74.97824,19.11672],[74.98262,19.11257],[74.98953,19.10977],[74.99671,19.11248],[75.00132,19.11072],[75.00627,19.10549],[75.01771,19.10707],[75.0177,19.10493],[75.01947,19.10524],[75.02099,19.11287],[75.02355,19.11494],[75.02574,19.1107],[75.02482,19.10587],[75.02615,19.10452],[75.02438,19.10273],[75.02676,19.10257],[75.03003,19.10779],[75.03437,19.10848],[75.03451,19.10718],[75.03782,19.10628],[75.04395,19.10981],[75.03611,19.10293],[75.03637,19.10049],[75.05246,19.10567],[75.0538,19.0997],[75.05637,19.10034],[75.05855,19.09838],[75.06182,19.10443],[75.06544,19.10287],[75.06525,19.10738],[75.06787,19.10262],[75.0705,19.10414],[75.07375,19.10169],[75.07534,19.10957],[75.07138,19.10739],[75.06986,19.11207],[75.0734,19.11463],[75.07142,19.11644],[75.07569,19.11896],[75.06898,19.12135],[75.0847,19.12259],[75.08796,19.12067],[75.09053,19.12779],[75.09653,19.12431],[75.09832,19.12611],[75.10219,19.12342],[75.10385,19.12686],[75.10936,19.12486],[75.11137,19.11651],[75.11038,19.11223],[75.10757,19.10822],[75.10444,19.10889],[75.1022,19.10475],[75.0996,19.10493],[75.10078,19.10249],[75.09902,19.10196],[75.09736,19.07793],[75.08326,19.08185],[75.07844,19.07873],[75.0782,19.07726],[75.08398,19.07421],[75.08336,19.07134],[75.09197,19.0681],[75.08878,19.06723],[75.08211,19.06923],[75.08144,19.06589],[75.0749,19.06858],[75.07263,19.06503],[75.07299,19.06213],[75.06965,19.0597],[75.0708,19.05538],[75.07579,19.05217],[75.09299,19.04864],[75.09994,19.04239],[75.10504,19.04303],[75.11126,19.04046],[75.1091,19.04283],[75.11193,19.04344],[75.12108,19.03977],[75.12513,19.04009],[75.13032,19.03804],[75.13071,19.03931],[75.1346,19.03512],[75.1385,19.0373],[75.14269,19.03519],[75.14456,19.03607],[75.1421,19.04005],[75.145,19.03972],[75.14676,19.04206],[75.15339,19.04044],[75.15659,19.0363],[75.15838,19.03795],[75.16782,19.03581],[75.16898,19.01921],[75.18291,19.01167],[75.19774,19.01855],[75.20806,19.02061],[75.20981,19.02927],[75.20737,19.03614],[75.19864,19.04157],[75.19404,19.04978],[75.18612,19.05162],[75.19255,19.06233],[75.19515,19.06344],[75.19715,19.06699],[75.1951,19.07228],[75.19147,19.07285],[75.19352,19.07943],[75.19303,19.08627],[75.18988,19.08701],[75.18739,19.09256],[75.19175,19.09414],[75.19203,19.09736],[75.19862,19.09552],[75.19812,19.09787],[75.202,19.09942],[75.20252,19.10309],[75.20568,19.10148],[75.20818,19.10409],[75.21117,19.10443],[75.21287,19.10719],[75.21212,19.11022],[75.21999,19.11167],[75.21975,19.10064],[75.2237,19.1015],[75.22409,19.09808],[75.22597,19.09728],[75.22836,19.08119],[75.22449,19.06578],[75.23323,19.06147],[75.25328,19.06954],[75.26147,19.06995],[75.26104,19.06649],[75.26833,19.05348],[75.26695,19.03366],[75.26497,19.03001],[75.25614,19.02574],[75.26253,19.02151],[75.26228,19.01835],[75.26469,19.018],[75.26377,19.01309],[75.26735,19.00969],[75.26913,18.99756],[75.2739,18.99403],[75.27429,18.99194],[75.28585,18.98681],[75.28835,18.98176],[75.31577,18.98048],[75.32276,18.98275],[75.32966,18.98781],[75.33761,18.99082],[75.34063,18.99004],[75.34275,18.99436],[75.3409,18.99993],[75.34387,19.02245],[75.34356,19.02517],[75.33905,19.02744],[75.33901,19.02935],[75.33477,19.02932],[75.33433,19.03198],[75.32957,19.03183],[75.32791,19.03468],[75.31403,19.03194],[75.30665,19.03392],[75.2975,19.03351],[75.29416,19.03599],[75.2855,19.03339],[75.28318,19.03444],[75.28745,19.05281],[75.29155,19.06183],[75.29292,19.07617],[75.28057,19.08035],[75.28088,19.08498],[75.29497,19.08495],[75.29798,19.09057],[75.30037,19.09232],[75.30455,19.0921],[75.30355,19.09559],[75.30539,19.09865],[75.3069,19.09861],[75.30872,19.09678],[75.32271,19.09426],[75.32833,19.08608],[75.33719,19.08084],[75.35655,19.07802],[75.36173,19.07856],[75.36451,19.08131],[75.36289,19.09094],[75.36475,19.0987],[75.3608,19.10863],[75.35153,19.11364],[75.34969,19.12407],[75.33459,19.12837],[75.33114,19.13218],[75.33025,19.15261],[75.33979,19.1559],[75.3475,19.14884],[75.35254,19.14665],[75.35147,19.12699],[75.35874,19.12725],[75.36151,19.1329],[75.36556,19.12992],[75.37091,19.13099],[75.37596,19.12902],[75.38046,19.13432],[75.38261,19.13357],[75.39128,19.13706],[75.39425,19.14202],[75.40752,19.14101],[75.41054,19.13279],[75.40931,19.12888],[75.40443,19.12354],[75.39224,19.1266],[75.3895,19.11993],[75.38674,19.11847],[75.38592,19.11343],[75.38049,19.10308],[75.36803,19.09066],[75.36545,19.08987],[75.36523,19.08606],[75.36874,19.08174],[75.37523,19.08421],[75.37636,19.08263],[75.38045,19.08208],[75.382,19.07792],[75.39502,19.08125],[75.40592,19.08025],[75.41313,19.08149],[75.41321,19.08748],[75.41775,19.09241],[75.42136,19.09006],[75.42925,19.08954],[75.43769,19.0904],[75.44476,19.09318],[75.44717,19.08441],[75.44945,19.08324],[75.45403,19.08642],[75.45781,19.08567],[75.46035,19.08965],[75.46571,19.09049],[75.47319,19.0982],[75.47824,19.09898],[75.48517,19.10587],[75.48571,19.10793],[75.48238,19.11598],[75.48371,19.12793],[75.47961,19.12732],[75.46406,19.13015],[75.46366,19.12725],[75.45294,19.12741],[75.4437,19.12449],[75.43622,19.11784],[75.43652,19.11638],[75.43098,19.11782],[75.4233,19.13862],[75.4298,19.14118],[75.44959,19.14133],[75.45023,19.1438],[75.45366,19.14463],[75.45403,19.146],[75.45148,19.14833],[75.44932,19.16396],[75.44499,19.17218],[75.42536,19.17277],[75.42522,19.17532],[75.41955,19.18326],[75.40975,19.1884],[75.40877,19.19065],[75.40254,19.19487],[75.40159,19.19746],[75.40492,19.20471],[75.41409,19.20995],[75.41627,19.2151],[75.42088,19.2168],[75.4219,19.2215],[75.43552,19.2215],[75.4389,19.21985],[75.44037,19.21715],[75.44492,19.2194],[75.4499,19.2323],[75.45272,19.2325],[75.45557,19.24515],[75.4587,19.25023],[75.4743,19.25301],[75.47311,19.25923],[75.47643,19.25876],[75.48184,19.26164],[75.49281,19.26301],[75.49381,19.26497],[75.49948,19.26716],[75.5025,19.26675],[75.50366,19.26876],[75.5057,19.26817],[75.51026,19.27477],[75.51503,19.27561],[75.51553,19.27821],[75.51979,19.27777],[75.52013,19.2833],[75.52563,19.29824],[75.52866,19.29793],[75.53258,19.30403],[75.53776,19.30618],[75.53911,19.30828],[75.53843,19.31057],[75.54044,19.3128],[75.54032,19.316],[75.53856,19.3173],[75.54086,19.31874],[75.54134,19.32338],[75.54301,19.32319],[75.53997,19.32852],[75.51721,19.33082],[75.52769,19.35761],[75.53207,19.37692],[75.51712,19.38069],[75.51683,19.38482],[75.51403,19.38258],[75.49767,19.37844],[75.49027,19.37914],[75.4853,19.38137],[75.48225,19.38423],[75.48821,19.41665],[75.48227,19.41857],[75.48301,19.42137],[75.47544,19.42334],[75.47324,19.42357],[75.46952,19.41661],[75.46637,19.41435],[75.45533,19.41595],[75.44262,19.41404],[75.44082,19.41574],[75.44114,19.42702],[75.43573,19.42306],[75.43458,19.41895],[75.42951,19.42027],[75.42497,19.41576],[75.41259,19.41625],[75.41071,19.41867],[75.3982,19.41566],[75.39585,19.41383],[75.39138,19.41482],[75.38638,19.40956],[75.38133,19.41053],[75.37885,19.40612],[75.37346,19.40501],[75.36515,19.3969],[75.33693,19.40704],[75.3365,19.40854],[75.34679,19.41793],[75.35703,19.43196],[75.35472,19.43345],[75.3469,19.449],[75.34196,19.44845],[75.34095,19.4458],[75.33725,19.44504],[75.33418,19.44185],[75.32703,19.43856],[75.32255,19.45357],[75.3232,19.46573],[75.33938,19.46874],[75.34421,19.48547],[75.35811,19.48266],[75.36123,19.48612],[75.36027,19.48781],[75.36155,19.49018],[75.35655,19.50174],[75.35053,19.50475],[75.33915,19.50181],[75.33495,19.48271],[75.32744,19.48377],[75.32857,19.49097],[75.3267,19.49141],[75.32866,19.50611],[75.32999,19.50689],[75.32888,19.50843],[75.32415,19.50613],[75.32611,19.50197],[75.32524,19.49897],[75.32043,19.49599],[75.31347,19.49715],[75.3118,19.49575],[75.3085,19.49846],[75.30905,19.5005],[75.30107,19.50311],[75.30134,19.51217],[75.28639,19.51255],[75.27366,19.51526],[75.27446,19.52338],[75.28043,19.53787],[75.28071,19.54543],[75.27731,19.54823],[75.27411,19.55435],[75.26749,19.55461],[75.25947,19.5245],[75.25682,19.52325],[75.24088,19.53621],[75.23006,19.54132],[75.22573,19.54543],[75.21752,19.55877],[75.20633,19.56216],[75.20366,19.56627],[75.20671,19.57569],[75.20653,19.58157],[75.20322,19.58245],[75.19718,19.58801],[75.19405,19.59485],[75.18733,19.59512],[75.18139,19.59917],[75.17435,19.60043],[75.16394,19.59818],[75.15454,19.58931],[75.15092,19.58936],[75.14687,19.59418],[75.14041,19.59811],[75.13549,19.59736],[75.13169,19.59395],[75.12683,19.5946],[75.1161,19.6036],[75.11211,19.60504],[75.09859,19.60398],[75.08708,19.61275],[75.05916,19.6057],[75.05272,19.611],[75.04442,19.61216],[75.03873,19.61595],[75.04175,19.62221],[75.03776,19.62584],[75.02627,19.6233],[75.00657,19.62508],[74.99867,19.62402],[74.98541,19.6334],[74.98518,19.63694],[74.98252,19.63955],[74.96277,19.64714],[74.94167,19.6451],[74.93118,19.63691],[74.9286,19.64057],[74.92771,19.64694],[74.92005,19.64558],[74.91377,19.6482],[74.90739,19.64677],[74.89906,19.64159],[74.88797,19.63904],[74.88443,19.64228],[74.88615,19.65277],[74.88304,19.65447],[74.87505,19.65004],[74.86612,19.65127],[74.85806,19.64654],[74.84879,19.64637],[74.8442,19.64959],[74.83666,19.66334],[74.82282,19.66851],[74.81784,19.68068],[74.81087,19.68518],[74.80845,19.6885],[74.81444,19.69847],[74.81412,19.70307],[74.81181,19.70413],[74.80437,19.70223],[74.79784,19.70561],[74.78654,19.7154],[74.78505,19.71921],[74.7857,19.73211],[74.78427,19.73434],[74.78073,19.73636],[74.76761,19.73673],[74.76523,19.74072],[74.76609,19.74903],[74.76407,19.7537],[74.75992,19.75354],[74.75453,19.74882],[74.74943,19.74864],[74.74446,19.75219],[74.73878,19.76222],[74.73532,19.76491],[74.73146,19.76242],[74.73124,19.7578],[74.72813,19.75441],[74.72147,19.75466],[74.71739,19.76274],[74.71944,19.7724],[74.71677,19.77892],[74.71443,19.78015],[74.70732,19.7818],[74.7007,19.77556],[74.70034,19.77253],[74.70625,19.76356],[74.69527,19.75501],[74.69076,19.75544],[74.68906,19.75721],[74.68972,19.76643],[74.68612,19.76778],[74.67714,19.76674],[74.66793,19.77614],[74.65329,19.77645],[74.65102,19.77841],[74.64946,19.7849],[74.63678,19.79304],[74.63386,19.79329],[74.62563,19.78953],[74.61607,19.77889],[74.61189,19.76995],[74.60732,19.76975],[74.59232,19.77583],[74.58886,19.78418],[74.59485,19.79224],[74.59998,19.80659],[74.60291,19.83248],[74.6029,19.84696],[74.63606,19.8418],[74.65688,19.83487],[74.65982,19.85771],[74.64444,19.86014],[74.64536,19.8788],[74.64848,19.89582],[74.64599,19.90929],[74.64931,19.92012],[74.66637,19.92364],[74.67707,19.92414],[74.67716,19.9307],[74.67205,19.93148],[74.671,19.94697],[74.65152,19.94633],[74.6189,19.95128],[74.6002,19.95076],[74.59908,19.9528],[74.56865,19.9543],[74.55446,19.96785],[74.54545,19.9695],[74.53507,19.97444],[74.5229,19.97658],[74.5198,19.97455],[74.51895,19.9667],[74.51007,19.96891],[74.50931,19.97287],[74.50041,19.97123],[74.50005,19.96999],[74.49469,19.97013],[74.49201,19.96222],[74.47922,19.96402],[74.47777,19.96611],[74.47838,19.97133],[74.4827,19.97853],[74.48241,19.98381],[74.48084,19.9857],[74.48278,19.9887],[74.48176,19.99478],[74.46867,19.99493]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"467","area_level":"District","area_name":"Akola","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.04885,21.23773],[77.04566,21.24324],[77.03312,21.24803],[77.02446,21.24543],[77.02041,21.23644],[77.01365,21.23746],[77.01256,21.23363],[77.00613,21.22906],[77.00376,21.21827],[77.00623,21.2136],[77.00611,21.20736],[77.00381,21.20501],[77.00423,21.20325],[76.9982,21.20246],[76.99821,21.19581],[76.98405,21.1992],[76.98274,21.19709],[76.97893,21.19729],[76.97206,21.20036],[76.97361,21.19719],[76.96645,21.19744],[76.96389,21.19514],[76.95359,21.19544],[76.94136,21.19952],[76.92414,21.19863],[76.90955,21.20043],[76.89588,21.19843],[76.88951,21.19663],[76.88923,21.19449],[76.87283,21.19054],[76.87239,21.19171],[76.85728,21.18937],[76.85438,21.18703],[76.84776,21.19279],[76.83297,21.18532],[76.81581,21.18748],[76.7899,21.18294],[76.78676,21.1872],[76.78172,21.18861],[76.77291,21.18494],[76.77125,21.18278],[76.77163,21.17631],[76.77813,21.16468],[76.77572,21.1646],[76.77575,21.15977],[76.772,21.1535],[76.77177,21.14918],[76.77357,21.14742],[76.77775,21.14984],[76.7792,21.14902],[76.7788,21.14534],[76.77569,21.14052],[76.78179,21.13591],[76.78456,21.12522],[76.79049,21.12271],[76.79068,21.12089],[76.78764,21.11496],[76.78886,21.10446],[76.78337,21.09658],[76.78294,21.09108],[76.77617,21.08855],[76.77329,21.08453],[76.77404,21.07688],[76.77568,21.07438],[76.78496,21.07195],[76.78134,21.05128],[76.77499,21.05224],[76.77388,21.04781],[76.77506,21.04654],[76.76966,21.04367],[76.76357,21.03738],[76.77137,21.03687],[76.77156,21.03304],[76.77349,21.03108],[76.77191,21.02404],[76.77723,21.02405],[76.7781,21.02837],[76.7939,21.02712],[76.79312,21.0235],[76.7985,21.019],[76.79685,21.01601],[76.79735,21.01075],[76.79486,21.00653],[76.79618,21.00404],[76.7785,21.00006],[76.77573,20.99602],[76.77585,20.99011],[76.78415,20.98918],[76.78395,20.97276],[76.80617,20.97178],[76.80789,20.96921],[76.8119,20.96877],[76.80775,20.96692],[76.80821,20.96277],[76.81135,20.96018],[76.80862,20.95995],[76.81006,20.95898],[76.80916,20.95658],[76.80059,20.96018],[76.78913,20.96253],[76.78661,20.94005],[76.78195,20.94096],[76.7758,20.93144],[76.77707,20.92885],[76.77951,20.93115],[76.78812,20.92792],[76.78696,20.92033],[76.78772,20.91736],[76.79031,20.91715],[76.79022,20.9156],[76.78414,20.90806],[76.77526,20.90896],[76.77593,20.91148],[76.78053,20.91387],[76.77718,20.91603],[76.77444,20.92122],[76.7671,20.92342],[76.75362,20.92107],[76.74448,20.92862],[76.73567,20.92491],[76.73206,20.92033],[76.7263,20.92029],[76.71892,20.9174],[76.7119,20.92097],[76.69914,20.92057],[76.69112,20.91784],[76.69866,20.91211],[76.69575,20.90655],[76.70739,20.90749],[76.70698,20.90261],[76.71788,20.89842],[76.71783,20.89143],[76.72171,20.89009],[76.72671,20.88361],[76.73006,20.88408],[76.73405,20.88909],[76.74458,20.88728],[76.74461,20.88067],[76.74737,20.87659],[76.74623,20.87144],[76.75002,20.87139],[76.75341,20.87386],[76.75452,20.86462],[76.76439,20.8571],[76.76345,20.85447],[76.76041,20.85381],[76.76121,20.85026],[76.75841,20.8486],[76.75819,20.84604],[76.75538,20.84626],[76.75531,20.83899],[76.75102,20.83518],[76.7542,20.82489],[76.74538,20.82382],[76.74549,20.81756],[76.74708,20.81746],[76.74446,20.80295],[76.7445,20.79693],[76.76249,20.79484],[76.7647,20.79307],[76.77294,20.77657],[76.77095,20.76402],[76.76377,20.7563],[76.75782,20.75245],[76.75771,20.74743],[76.75401,20.73865],[76.75707,20.72846],[76.76322,20.72644],[76.76337,20.72034],[76.75116,20.71703],[76.75123,20.71544],[76.73583,20.7163],[76.73274,20.69633],[76.72572,20.70024],[76.72283,20.68996],[76.73938,20.68721],[76.73821,20.67972],[76.74083,20.67951],[76.73883,20.6664],[76.73834,20.66422],[76.73598,20.66486],[76.73231,20.6557],[76.7536,20.65457],[76.7559,20.656],[76.75912,20.6517],[76.7601,20.64887],[76.75562,20.64608],[76.75623,20.64465],[76.74994,20.63014],[76.77059,20.62631],[76.76348,20.61262],[76.76065,20.60281],[76.78178,20.60331],[76.78888,20.59523],[76.78638,20.59117],[76.78781,20.58728],[76.77674,20.58719],[76.7736,20.58029],[76.76876,20.57572],[76.77101,20.57389],[76.78314,20.57252],[76.77767,20.55577],[76.77197,20.54514],[76.77039,20.53669],[76.77044,20.51786],[76.7602,20.5101],[76.7524,20.51124],[76.7521,20.50281],[76.74724,20.49796],[76.74669,20.49546],[76.74514,20.49671],[76.73526,20.49308],[76.73362,20.49313],[76.73787,20.49666],[76.73543,20.51138],[76.73127,20.51354],[76.72578,20.51244],[76.72602,20.5166],[76.72206,20.51413],[76.71728,20.51377],[76.71568,20.51544],[76.71072,20.50595],[76.70575,20.48734],[76.70605,20.47943],[76.71138,20.47326],[76.70646,20.47099],[76.69965,20.47123],[76.69307,20.45913],[76.6987,20.45565],[76.708,20.44346],[76.70765,20.44207],[76.71385,20.43841],[76.71274,20.41859],[76.71917,20.41833],[76.71995,20.41571],[76.72283,20.41543],[76.72224,20.41161],[76.72653,20.40707],[76.72685,20.39865],[76.72337,20.38959],[76.70876,20.38459],[76.70963,20.38026],[76.70492,20.37449],[76.70456,20.36244],[76.69994,20.35196],[76.72838,20.34292],[76.72695,20.3373],[76.73509,20.33992],[76.74515,20.33739],[76.74519,20.32998],[76.74248,20.3302],[76.74264,20.32879],[76.7537,20.32669],[76.76559,20.31635],[76.76801,20.32169],[76.78471,20.31801],[76.79235,20.31417],[76.78862,20.30988],[76.78605,20.28944],[76.79096,20.28686],[76.80436,20.28673],[76.80593,20.28828],[76.81167,20.27797],[76.83231,20.28276],[76.83801,20.28908],[76.83679,20.29428],[76.83776,20.29605],[76.85025,20.29762],[76.85218,20.30021],[76.85825,20.29937],[76.86206,20.29673],[76.86584,20.29061],[76.86584,20.28205],[76.8687,20.27786],[76.87284,20.27523],[76.88021,20.2797],[76.88212,20.28496],[76.87764,20.28804],[76.88081,20.29416],[76.89328,20.30413],[76.90883,20.31311],[76.90239,20.31319],[76.89155,20.31702],[76.89171,20.32078],[76.89622,20.32876],[76.89673,20.33443],[76.90478,20.34448],[76.91671,20.35135],[76.91947,20.35964],[76.92979,20.35582],[76.93199,20.35704],[76.93327,20.36677],[76.93617,20.37061],[76.94041,20.36899],[76.94308,20.36537],[76.94908,20.36557],[76.95331,20.36347],[76.95707,20.36345],[76.96466,20.36764],[76.97799,20.37035],[76.97799,20.37283],[76.97357,20.37749],[76.97446,20.38037],[76.98104,20.38009],[76.98112,20.38778],[76.98634,20.38916],[76.98935,20.39448],[76.99531,20.39355],[76.99576,20.39803],[76.99101,20.40434],[76.99358,20.40904],[77.00182,20.41136],[77.00351,20.41475],[77.01448,20.41271],[77.01368,20.43173],[77.02141,20.44319],[77.02231,20.44992],[77.04479,20.44966],[77.05732,20.44705],[77.05902,20.44537],[77.05966,20.43944],[77.04711,20.41931],[77.04684,20.41585],[77.05095,20.40742],[77.04556,20.3934],[77.04533,20.38655],[77.06246,20.38136],[77.06829,20.38286],[77.06873,20.38528],[77.07972,20.3867],[77.08115,20.38895],[77.08119,20.39045],[77.0745,20.39361],[77.07314,20.40148],[77.07961,20.42386],[77.08522,20.42232],[77.08517,20.41936],[77.10294,20.41521],[77.10493,20.41097],[77.11324,20.41162],[77.11589,20.408],[77.12021,20.4111],[77.12111,20.40277],[77.12727,20.39901],[77.1304,20.39889],[77.13264,20.39521],[77.13191,20.3904],[77.13648,20.39141],[77.13815,20.38514],[77.14206,20.38015],[77.14404,20.38053],[77.14559,20.38638],[77.1521,20.39256],[77.15152,20.39914],[77.16948,20.39918],[77.17126,20.40118],[77.18041,20.39753],[77.18507,20.39841],[77.18953,20.40243],[77.19144,20.40229],[77.19509,20.40919],[77.19724,20.42222],[77.19721,20.42376],[77.19094,20.42364],[77.18864,20.42996],[77.18286,20.43173],[77.18233,20.43732],[77.18555,20.44738],[77.18982,20.4469],[77.20168,20.44956],[77.2064,20.448],[77.20955,20.44496],[77.21252,20.44789],[77.22517,20.44741],[77.22957,20.47339],[77.24679,20.47237],[77.24571,20.46035],[77.24681,20.45974],[77.25513,20.45784],[77.2663,20.4586],[77.26716,20.44849],[77.27126,20.44159],[77.27338,20.43267],[77.27776,20.43059],[77.27771,20.42363],[77.28183,20.41893],[77.28456,20.41833],[77.29379,20.42071],[77.29604,20.42214],[77.29664,20.42498],[77.29615,20.43944],[77.29803,20.44587],[77.31405,20.4497],[77.31383,20.45231],[77.31808,20.45056],[77.32548,20.45032],[77.32631,20.46481],[77.33237,20.47011],[77.33321,20.47257],[77.34343,20.47164],[77.34412,20.48054],[77.33923,20.48378],[77.32483,20.48703],[77.32748,20.49797],[77.34037,20.4964],[77.36805,20.49653],[77.36988,20.4957],[77.3702,20.48762],[77.36793,20.48003],[77.38163,20.48315],[77.38405,20.49552],[77.38724,20.49757],[77.38898,20.5017],[77.39567,20.52544],[77.36833,20.52549],[77.36708,20.51942],[77.36441,20.51819],[77.33634,20.52578],[77.33714,20.53751],[77.34122,20.54743],[77.33538,20.54865],[77.33944,20.57526],[77.34985,20.56995],[77.36208,20.56764],[77.36571,20.57775],[77.36567,20.58338],[77.39568,20.57981],[77.39944,20.58532],[77.40926,20.58707],[77.40985,20.59447],[77.41303,20.59396],[77.41436,20.60203],[77.41087,20.60692],[77.43103,20.6123],[77.45977,20.60972],[77.46707,20.61091],[77.46477,20.62855],[77.45107,20.63449],[77.45176,20.63816],[77.44532,20.6393],[77.4426,20.64229],[77.43856,20.64255],[77.43842,20.65316],[77.43255,20.65754],[77.43033,20.66056],[77.43089,20.66226],[77.45262,20.65686],[77.45382,20.66468],[77.46136,20.66587],[77.46359,20.66019],[77.46916,20.65691],[77.47859,20.65515],[77.48468,20.65711],[77.48565,20.66225],[77.48377,20.66321],[77.48101,20.68204],[77.49308,20.68289],[77.50087,20.6749],[77.50127,20.67189],[77.50299,20.67163],[77.50399,20.66485],[77.51084,20.66441],[77.5153,20.67329],[77.51313,20.67833],[77.51385,20.68169],[77.5381,20.67757],[77.54324,20.67828],[77.53956,20.69653],[77.52351,20.69731],[77.52657,20.70146],[77.54974,20.7039],[77.56343,20.70105],[77.56528,20.70749],[77.57304,20.70537],[77.57458,20.71408],[77.5774,20.71917],[77.57789,20.72692],[77.59077,20.72641],[77.59832,20.72002],[77.59822,20.71837],[77.61047,20.71756],[77.61287,20.73648],[77.61464,20.73657],[77.6198,20.75682],[77.61423,20.75939],[77.61941,20.77942],[77.61132,20.77863],[77.6102,20.79966],[77.59265,20.80476],[77.59256,20.8104],[77.58745,20.80813],[77.56916,20.80845],[77.56528,20.81864],[77.56097,20.81879],[77.55862,20.82279],[77.55945,20.82411],[77.5535,20.82474],[77.55066,20.8546],[77.54088,20.85599],[77.54036,20.85486],[77.53307,20.85466],[77.53291,20.85034],[77.52688,20.85005],[77.52678,20.85175],[77.51662,20.85106],[77.51524,20.85369],[77.49913,20.857],[77.4995,20.86013],[77.48173,20.86261],[77.47754,20.86266],[77.47556,20.86082],[77.47968,20.87896],[77.47424,20.87939],[77.4745,20.87609],[77.46961,20.87829],[77.4678,20.87598],[77.46543,20.87656],[77.46636,20.87927],[77.46509,20.87962],[77.46072,20.87578],[77.46336,20.87375],[77.46272,20.87188],[77.4576,20.87119],[77.46064,20.86721],[77.45768,20.86739],[77.45494,20.85807],[77.45343,20.86088],[77.45386,20.85879],[77.4478,20.85217],[77.44436,20.85267],[77.44235,20.85129],[77.43751,20.85386],[77.43592,20.8439],[77.43369,20.84249],[77.43221,20.8469],[77.428,20.84558],[77.42493,20.84793],[77.41804,20.8428],[77.41295,20.84272],[77.41209,20.84587],[77.39951,20.84613],[77.39568,20.84421],[77.39429,20.84091],[77.39153,20.84138],[77.38925,20.84525],[77.38732,20.84573],[77.38406,20.84342],[77.37474,20.84283],[77.37122,20.84553],[77.36283,20.84776],[77.35338,20.8481],[77.34455,20.84309],[77.34146,20.84514],[77.33743,20.84335],[77.32732,20.84918],[77.32593,20.85381],[77.31957,20.85544],[77.32072,20.85151],[77.31799,20.85147],[77.31843,20.85593],[77.31448,20.85792],[77.31216,20.85401],[77.30856,20.85356],[77.30278,20.84923],[77.28923,20.84976],[77.28585,20.84637],[77.27109,20.85313],[77.26462,20.85122],[77.26069,20.84582],[77.25804,20.84573],[77.25183,20.85545],[77.24482,20.85294],[77.23887,20.85616],[77.22686,20.85575],[77.22171,20.85853],[77.2161,20.85786],[77.21153,20.84853],[77.1961,20.8541],[77.18013,20.85042],[77.1692,20.85442],[77.1704,20.85977],[77.1647,20.86348],[77.16201,20.86961],[77.15875,20.8706],[77.15585,20.86704],[77.15821,20.86235],[77.15534,20.85953],[77.14264,20.86382],[77.1367,20.86115],[77.12955,20.86322],[77.13191,20.87056],[77.1316,20.87976],[77.13746,20.88007],[77.13553,20.8817],[77.13686,20.884],[77.13765,20.89838],[77.13538,20.90031],[77.13535,20.91838],[77.13753,20.91833],[77.13798,20.92203],[77.1445,20.92161],[77.14677,20.93781],[77.15107,20.94909],[77.15366,20.96257],[77.1563,20.96245],[77.15985,20.97134],[77.13293,20.97621],[77.13355,20.98889],[77.16768,20.98871],[77.16849,20.99766],[77.16582,20.99836],[77.16968,21.01086],[77.17096,21.01053],[77.17284,21.02384],[77.16103,21.02623],[77.16179,21.0295],[77.14957,21.03397],[77.15072,21.03494],[77.14944,21.03913],[77.15177,21.04783],[77.15057,21.05441],[77.152,21.06145],[77.15008,21.07218],[77.17656,21.07239],[77.17527,21.07749],[77.17715,21.08564],[77.17573,21.08632],[77.1756,21.08959],[77.1718,21.09245],[77.17153,21.09481],[77.17173,21.11863],[77.17957,21.11907],[77.18489,21.12126],[77.19615,21.12053],[77.19625,21.13894],[77.19328,21.13929],[77.19238,21.13545],[77.1832,21.13444],[77.16489,21.13591],[77.16312,21.13626],[77.16619,21.1441],[77.15954,21.14548],[77.16281,21.14679],[77.16738,21.16296],[77.16647,21.1665],[77.16099,21.16762],[77.16546,21.17721],[77.16621,21.18443],[77.16827,21.18709],[77.17218,21.18675],[77.17286,21.19137],[77.17968,21.19103],[77.17853,21.1955],[77.18365,21.20134],[77.18196,21.20764],[77.17581,21.20821],[77.17782,21.21932],[77.17411,21.22347],[77.19065,21.22867],[77.19373,21.2365],[77.19249,21.24136],[77.19026,21.2429],[77.18021,21.24135],[77.17262,21.24359],[77.16477,21.24322],[77.16634,21.23757],[77.16276,21.23478],[77.15337,21.2345],[77.15039,21.23229],[77.14871,21.22755],[77.14218,21.22702],[77.13031,21.22038],[77.12742,21.22082],[77.1257,21.22468],[77.11907,21.22449],[77.11789,21.21971],[77.1091,21.21887],[77.10615,21.22165],[77.09313,21.22633],[77.08887,21.22231],[77.08567,21.22193],[77.08065,21.21644],[77.07517,21.22138],[77.0666,21.22016],[77.0616,21.22495],[77.0597,21.23144],[77.05623,21.23345],[77.05115,21.23313],[77.04885,21.23773]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"468","area_level":"District","area_name":"Amravati","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.48217,21.76385],[77.48314,21.76693],[77.47871,21.77002],[77.46048,21.76342],[77.45629,21.76021],[77.42946,21.75771],[77.41707,21.75348],[77.40175,21.75233],[77.38124,21.75309],[77.3757,21.75492],[77.37305,21.75372],[77.35903,21.75415],[77.34568,21.75778],[77.32443,21.75274],[77.31579,21.75657],[77.29936,21.75596],[77.2903,21.76035],[77.28047,21.75858],[77.27995,21.74955],[77.28742,21.74414],[77.28422,21.7369],[77.29114,21.73285],[77.28722,21.72192],[77.27926,21.72406],[77.27188,21.72814],[77.26756,21.72504],[77.26188,21.71229],[77.25147,21.7128],[77.24438,21.71643],[77.24249,21.7147],[77.23554,21.71635],[77.2323,21.71498],[77.22691,21.71679],[77.22775,21.69953],[77.22078,21.69651],[77.21883,21.69395],[77.21288,21.69501],[77.21042,21.68965],[77.20313,21.69277],[77.19889,21.69778],[77.18813,21.70171],[77.1913,21.71261],[77.19145,21.72075],[77.17603,21.72575],[77.1721,21.72485],[77.1696,21.72225],[77.16964,21.71429],[77.16512,21.71074],[77.14772,21.71252],[77.13919,21.71981],[77.12957,21.72224],[77.1173,21.72149],[77.10796,21.71829],[77.08654,21.71442],[77.07922,21.71994],[77.07322,21.71945],[77.06856,21.71579],[77.06247,21.70718],[77.04363,21.69977],[77.01501,21.68228],[77.00656,21.67914],[76.99649,21.67237],[76.9901,21.6649],[76.97641,21.65738],[76.97237,21.65135],[76.95323,21.64213],[76.94231,21.63209],[76.92836,21.6243],[76.91289,21.61176],[76.90995,21.60832],[76.90863,21.60275],[76.90162,21.59684],[76.89722,21.5961],[76.88569,21.60008],[76.86865,21.60876],[76.85449,21.61332],[76.8499,21.61211],[76.84471,21.6075],[76.8394,21.59331],[76.83291,21.58895],[76.82738,21.58829],[76.80121,21.59485],[76.79576,21.59422],[76.79362,21.59181],[76.79105,21.58158],[76.784,21.57409],[76.78141,21.56472],[76.78174,21.55158],[76.7891,21.54067],[76.78933,21.53638],[76.78137,21.5293],[76.76881,21.52657],[76.76344,21.52077],[76.7729,21.50572],[76.78073,21.50559],[76.78421,21.50128],[76.78776,21.50114],[76.78767,21.49759],[76.79561,21.48958],[76.79377,21.47965],[76.79138,21.48008],[76.78785,21.47749],[76.78508,21.4641],[76.78128,21.45934],[76.76181,21.4523],[76.75496,21.44557],[76.74443,21.43987],[76.73839,21.42969],[76.74102,21.42818],[76.73793,21.4222],[76.74054,21.41757],[76.73958,21.41413],[76.74095,21.41288],[76.73951,21.41056],[76.7262,21.40474],[76.68282,21.37841],[76.62175,21.33229],[76.63022,21.32077],[76.64563,21.30108],[76.64748,21.30155],[76.65482,21.28976],[76.66268,21.28069],[76.67705,21.28306],[76.68572,21.2887],[76.69637,21.28535],[76.71196,21.28447],[76.71781,21.2856],[76.71789,21.28968],[76.72366,21.28923],[76.72299,21.28581],[76.72633,21.28211],[76.72587,21.27972],[76.73088,21.27871],[76.733,21.27573],[76.73679,21.26088],[76.74168,21.26058],[76.74386,21.2544],[76.74641,21.25449],[76.74853,21.25081],[76.74094,21.24151],[76.74792,21.22689],[76.74596,21.22323],[76.75242,21.21831],[76.75725,21.22167],[76.76074,21.22034],[76.76456,21.2063],[76.76418,21.2011],[76.76747,21.19142],[76.77583,21.19068],[76.78195,21.19438],[76.78172,21.18861],[76.78676,21.1872],[76.7899,21.18294],[76.81581,21.18748],[76.83391,21.18544],[76.84776,21.19279],[76.85438,21.18703],[76.85728,21.18937],[76.87239,21.19171],[76.87283,21.19054],[76.88923,21.19449],[76.88951,21.19663],[76.89588,21.19843],[76.90955,21.20043],[76.92414,21.19863],[76.94136,21.19952],[76.95359,21.19544],[76.96389,21.19514],[76.96645,21.19744],[76.97361,21.19719],[76.97206,21.20036],[76.97893,21.19729],[76.98274,21.19709],[76.98405,21.1992],[76.99849,21.19588],[76.9982,21.20246],[77.00423,21.20325],[77.00381,21.20501],[77.00611,21.20736],[77.00623,21.2136],[77.00376,21.21827],[77.00613,21.22906],[77.01256,21.23363],[77.01365,21.23746],[77.02041,21.23644],[77.02446,21.24543],[77.03312,21.24803],[77.04566,21.24324],[77.05115,21.23313],[77.05623,21.23345],[77.0597,21.23144],[77.0616,21.22495],[77.0666,21.22016],[77.07517,21.22138],[77.08065,21.21644],[77.08567,21.22193],[77.08887,21.22231],[77.09313,21.22633],[77.10615,21.22165],[77.1091,21.21887],[77.11789,21.21971],[77.11907,21.22449],[77.1257,21.22468],[77.12742,21.22082],[77.13031,21.22038],[77.14218,21.22702],[77.14871,21.22755],[77.15039,21.23229],[77.15337,21.2345],[77.16276,21.23478],[77.16634,21.23757],[77.16477,21.24322],[77.17262,21.24359],[77.18021,21.24135],[77.19026,21.2429],[77.19249,21.24136],[77.19373,21.2365],[77.19065,21.22867],[77.17411,21.22347],[77.17782,21.21932],[77.17581,21.20821],[77.18196,21.20764],[77.18365,21.20134],[77.17853,21.1955],[77.17968,21.19103],[77.17286,21.19137],[77.17218,21.18675],[77.16827,21.18709],[77.16621,21.18443],[77.16546,21.17721],[77.16099,21.16762],[77.16647,21.1665],[77.16738,21.16296],[77.16281,21.14679],[77.15954,21.14548],[77.16619,21.1441],[77.16312,21.13626],[77.16489,21.13591],[77.1832,21.13444],[77.19238,21.13545],[77.19328,21.13929],[77.19625,21.13894],[77.19615,21.12053],[77.18489,21.12126],[77.17957,21.11907],[77.17173,21.11863],[77.17153,21.09481],[77.1718,21.09245],[77.1756,21.08959],[77.17573,21.08632],[77.17715,21.08564],[77.17527,21.07749],[77.17656,21.07239],[77.15008,21.07218],[77.152,21.06145],[77.15057,21.05441],[77.15177,21.04783],[77.14944,21.03913],[77.15072,21.03494],[77.14957,21.03397],[77.16179,21.0295],[77.16103,21.02623],[77.17284,21.02384],[77.17096,21.01053],[77.16968,21.01086],[77.16582,20.99836],[77.16849,20.99766],[77.16768,20.98871],[77.13355,20.98889],[77.13293,20.97621],[77.15985,20.97134],[77.1563,20.96245],[77.15366,20.96257],[77.15107,20.94909],[77.14677,20.93781],[77.1445,20.92161],[77.13798,20.92203],[77.13753,20.91833],[77.13535,20.91838],[77.13538,20.90031],[77.13765,20.89838],[77.13686,20.884],[77.13553,20.8817],[77.13746,20.88007],[77.1316,20.87976],[77.13191,20.87056],[77.12955,20.86322],[77.1367,20.86115],[77.14264,20.86382],[77.15534,20.85953],[77.15821,20.86235],[77.15585,20.86704],[77.15875,20.8706],[77.16201,20.86961],[77.1647,20.86348],[77.1704,20.85977],[77.1692,20.85442],[77.18013,20.85042],[77.1961,20.8541],[77.21153,20.84853],[77.2161,20.85786],[77.22171,20.85853],[77.22686,20.85575],[77.23887,20.85616],[77.24482,20.85294],[77.25183,20.85545],[77.25804,20.84573],[77.26069,20.84582],[77.26462,20.85122],[77.27109,20.85313],[77.28585,20.84637],[77.28923,20.84976],[77.30278,20.84923],[77.30856,20.85356],[77.31216,20.85401],[77.31448,20.85792],[77.31843,20.85593],[77.31799,20.85147],[77.32072,20.85151],[77.31957,20.85544],[77.32593,20.85381],[77.32732,20.84918],[77.33743,20.84335],[77.34146,20.84514],[77.34455,20.84309],[77.35338,20.8481],[77.36283,20.84776],[77.37122,20.84553],[77.37474,20.84283],[77.38406,20.84342],[77.38732,20.84573],[77.38925,20.84525],[77.39153,20.84138],[77.39429,20.84091],[77.39568,20.84421],[77.39951,20.84613],[77.41209,20.84587],[77.41295,20.84272],[77.41804,20.8428],[77.42493,20.84793],[77.428,20.84558],[77.43221,20.8469],[77.43369,20.84249],[77.43592,20.8439],[77.43751,20.85386],[77.44235,20.85129],[77.44436,20.85267],[77.4478,20.85217],[77.45386,20.85879],[77.45343,20.86088],[77.45494,20.85807],[77.45768,20.86739],[77.46064,20.86721],[77.4576,20.87119],[77.46272,20.87188],[77.46336,20.87375],[77.46072,20.87578],[77.46578,20.88],[77.46543,20.87656],[77.4678,20.87598],[77.46961,20.87829],[77.4745,20.87609],[77.47424,20.87939],[77.47968,20.87896],[77.47563,20.86545],[77.47608,20.86063],[77.47929,20.86267],[77.4995,20.86013],[77.49913,20.857],[77.51524,20.85369],[77.51662,20.85106],[77.52678,20.85175],[77.52688,20.85005],[77.53291,20.85034],[77.53307,20.85466],[77.54036,20.85486],[77.54088,20.85599],[77.55066,20.8546],[77.5535,20.82474],[77.55945,20.82411],[77.55862,20.82279],[77.56097,20.81879],[77.56528,20.81864],[77.56916,20.80845],[77.58745,20.80813],[77.59256,20.8104],[77.59265,20.80476],[77.6102,20.79966],[77.61132,20.77863],[77.61941,20.77942],[77.61423,20.75939],[77.6198,20.75682],[77.63391,20.75572],[77.63147,20.73807],[77.62556,20.73726],[77.6234,20.73005],[77.61213,20.73075],[77.61052,20.71782],[77.62423,20.7162],[77.63329,20.71344],[77.63513,20.71137],[77.63213,20.70939],[77.63139,20.70145],[77.63793,20.69438],[77.63681,20.68515],[77.63211,20.6715],[77.6362,20.67005],[77.63467,20.65823],[77.65399,20.66187],[77.65485,20.65936],[77.64828,20.64869],[77.65972,20.64619],[77.65864,20.63647],[77.65407,20.6323],[77.65288,20.62542],[77.65027,20.62552],[77.64809,20.62197],[77.64709,20.60466],[77.64486,20.60493],[77.63822,20.58559],[77.63439,20.5787],[77.63253,20.57903],[77.62814,20.56699],[77.62904,20.56622],[77.65921,20.56394],[77.6596,20.56899],[77.66238,20.57011],[77.66617,20.57973],[77.66912,20.5786],[77.67129,20.58022],[77.68296,20.57716],[77.691,20.57758],[77.69082,20.57083],[77.69412,20.56889],[77.70435,20.56494],[77.71931,20.56497],[77.73102,20.55959],[77.74124,20.56133],[77.75119,20.54529],[77.75527,20.54364],[77.75618,20.54596],[77.76867,20.54365],[77.77009,20.53882],[77.77493,20.53951],[77.7801,20.53813],[77.78339,20.5446],[77.78523,20.54483],[77.79139,20.5605],[77.80479,20.56443],[77.80536,20.57035],[77.80902,20.57478],[77.80848,20.58133],[77.81072,20.58475],[77.82183,20.58021],[77.82617,20.57496],[77.8396,20.56494],[77.84778,20.57066],[77.84573,20.57984],[77.8462,20.58801],[77.85976,20.59082],[77.86743,20.59547],[77.86653,20.60574],[77.86764,20.61156],[77.87125,20.6123],[77.87795,20.61012],[77.88596,20.62497],[77.8948,20.62583],[77.90048,20.61859],[77.9084,20.61564],[77.91299,20.60798],[77.91754,20.6075],[77.91751,20.59919],[77.91383,20.59089],[77.91817,20.5898],[77.91847,20.58704],[77.91721,20.57895],[77.91159,20.56736],[77.91401,20.56447],[77.91669,20.56618],[77.92059,20.56532],[77.92502,20.56669],[77.92229,20.55999],[77.9247,20.55913],[77.92562,20.56294],[77.92765,20.56242],[77.92979,20.57057],[77.93204,20.57039],[77.93315,20.57769],[77.94094,20.57998],[77.94445,20.57952],[77.94496,20.58155],[77.94662,20.57782],[77.95068,20.57968],[77.95017,20.57493],[77.95729,20.57891],[77.95928,20.58223],[77.96795,20.58485],[77.9745,20.58906],[77.97721,20.5934],[77.97661,20.59873],[77.97505,20.60011],[77.97777,20.60529],[77.98257,20.60901],[77.98222,20.6109],[77.98523,20.61347],[77.9883,20.61205],[77.99001,20.61309],[77.99515,20.61972],[77.99543,20.62461],[77.99986,20.62267],[78.00193,20.62509],[78.02111,20.62676],[78.01898,20.6304],[78.02644,20.63324],[78.01908,20.64097],[78.02358,20.64604],[78.02743,20.65838],[78.03664,20.65934],[78.03658,20.6659],[78.05814,20.66859],[78.05802,20.67014],[78.063,20.66989],[78.06302,20.6725],[78.06553,20.67296],[78.07135,20.67101],[78.07193,20.66793],[78.07753,20.6671],[78.07571,20.66483],[78.07871,20.66526],[78.07871,20.66406],[78.08017,20.6648],[78.08046,20.66928],[78.08363,20.66945],[78.08381,20.6721],[78.08867,20.67205],[78.08816,20.66966],[78.09092,20.67065],[78.09952,20.66634],[78.09933,20.65974],[78.09651,20.65826],[78.09331,20.6415],[78.10119,20.64309],[78.10151,20.64058],[78.11068,20.6402],[78.11242,20.64781],[78.12939,20.64745],[78.13214,20.65384],[78.12446,20.65944],[78.12718,20.66309],[78.13106,20.66398],[78.14192,20.65968],[78.15392,20.65874],[78.1569,20.65677],[78.15775,20.66722],[78.16558,20.66711],[78.17063,20.67027],[78.17704,20.66971],[78.17709,20.66778],[78.17927,20.6678],[78.18221,20.678],[78.2059,20.67446],[78.20569,20.6763],[78.21,20.679],[78.21167,20.69232],[78.22106,20.69377],[78.22824,20.69289],[78.24069,20.68433],[78.24191,20.68684],[78.25522,20.6836],[78.25499,20.68847],[78.2589,20.69799],[78.27694,20.69622],[78.27886,20.7001],[78.28486,20.70041],[78.28772,20.70742],[78.28972,20.70947],[78.29296,20.70987],[78.29443,20.70656],[78.29142,20.70242],[78.29383,20.69886],[78.2974,20.69935],[78.30048,20.70477],[78.29973,20.7151],[78.30488,20.71933],[78.31169,20.73802],[78.30672,20.74171],[78.30482,20.74531],[78.30512,20.74954],[78.30855,20.75589],[78.30596,20.76446],[78.2937,20.77428],[78.29237,20.77691],[78.29254,20.78291],[78.2956,20.79305],[78.2935,20.79998],[78.29771,20.80491],[78.29642,20.80974],[78.29773,20.81166],[78.30936,20.81234],[78.31676,20.81821],[78.31706,20.82077],[78.31254,20.82744],[78.3127,20.8328],[78.3058,20.83464],[78.29851,20.82776],[78.29478,20.82679],[78.29238,20.82792],[78.29141,20.82972],[78.29276,20.84036],[78.28999,20.84164],[78.28381,20.8405],[78.27937,20.8434],[78.27517,20.85574],[78.27552,20.86129],[78.26269,20.8715],[78.25814,20.88064],[78.25709,20.88707],[78.25199,20.88743],[78.24181,20.89343],[78.22319,20.89967],[78.2132,20.9086],[78.20849,20.90012],[78.19939,20.89931],[78.18147,20.90459],[78.17957,20.90974],[78.17399,20.91524],[78.17642,20.92283],[78.17531,20.92583],[78.1698,20.92971],[78.17026,20.93813],[78.16824,20.94187],[78.16338,20.94533],[78.15645,20.94573],[78.14301,20.95264],[78.14279,20.95612],[78.146,20.95944],[78.14866,20.96628],[78.14826,20.98475],[78.14422,20.98904],[78.14522,20.99205],[78.13905,20.99598],[78.13561,21.00121],[78.13495,21.01026],[78.14385,21.01982],[78.14471,21.02348],[78.14395,21.02912],[78.1362,21.03818],[78.13864,21.04027],[78.14509,21.04071],[78.14972,21.04808],[78.14985,21.05178],[78.14657,21.05779],[78.14949,21.06537],[78.15049,21.07556],[78.14513,21.09577],[78.14468,21.10326],[78.14234,21.10469],[78.13239,21.10502],[78.12834,21.11445],[78.13569,21.12505],[78.13736,21.1322],[78.14375,21.13774],[78.1435,21.13988],[78.13612,21.14424],[78.13171,21.14939],[78.1276,21.15061],[78.12501,21.15406],[78.1184,21.15638],[78.11389,21.16187],[78.09156,21.17951],[78.09227,21.18249],[78.09859,21.18879],[78.09678,21.19887],[78.08737,21.21025],[78.07082,21.22132],[78.06976,21.22755],[78.07335,21.23104],[78.07182,21.23637],[78.06734,21.23999],[78.05815,21.23957],[78.05224,21.25724],[78.05824,21.2659],[78.05888,21.27369],[78.06158,21.27745],[78.06971,21.27871],[78.07341,21.27602],[78.07602,21.27646],[78.08046,21.28159],[78.07959,21.28939],[78.0689,21.29837],[78.06872,21.30082],[78.07935,21.32731],[78.07895,21.3362],[78.07356,21.3517],[78.07633,21.35575],[78.08035,21.35766],[78.08565,21.35927],[78.09769,21.35411],[78.10308,21.3565],[78.12361,21.34701],[78.13107,21.34672],[78.14135,21.34284],[78.14851,21.34315],[78.15144,21.33996],[78.15151,21.3334],[78.15583,21.33162],[78.18337,21.33319],[78.19697,21.33128],[78.21139,21.33382],[78.23313,21.32738],[78.2398,21.32992],[78.24864,21.33063],[78.25113,21.33875],[78.26913,21.34588],[78.27224,21.35165],[78.27749,21.35221],[78.2867,21.35041],[78.29754,21.35551],[78.3071,21.35733],[78.30879,21.36191],[78.3167,21.36678],[78.32222,21.36883],[78.3273,21.36838],[78.32991,21.37212],[78.33851,21.37489],[78.34296,21.38004],[78.34468,21.3853],[78.34683,21.38424],[78.34712,21.37993],[78.34993,21.38186],[78.3543,21.38006],[78.35828,21.38286],[78.36238,21.38265],[78.3645,21.38503],[78.36342,21.39222],[78.37131,21.3957],[78.37416,21.3951],[78.3764,21.3898],[78.3802,21.38764],[78.3821,21.38693],[78.38914,21.39139],[78.39498,21.38513],[78.40691,21.3817],[78.40822,21.38193],[78.40591,21.38534],[78.4068,21.38767],[78.41045,21.38918],[78.4132,21.38749],[78.41956,21.39101],[78.42046,21.39423],[78.41592,21.39364],[78.41908,21.39559],[78.42078,21.39944],[78.42385,21.39685],[78.43231,21.40142],[78.43851,21.40217],[78.44069,21.40066],[78.44759,21.40283],[78.4492,21.41064],[78.44809,21.41288],[78.44528,21.41312],[78.44367,21.41619],[78.44467,21.42143],[78.4418,21.42207],[78.44141,21.43547],[78.43852,21.4398],[78.43889,21.44151],[78.44213,21.44314],[78.44284,21.44654],[78.44062,21.44819],[78.44135,21.45239],[78.43871,21.45646],[78.44006,21.46277],[78.43646,21.46586],[78.43847,21.471],[78.42822,21.47584],[78.42894,21.48587],[78.43312,21.49117],[78.43027,21.4972],[78.43635,21.49983],[78.43391,21.5062],[78.43444,21.51049],[78.43209,21.51464],[78.43705,21.51595],[78.43846,21.51785],[78.43002,21.52623],[78.42997,21.52872],[78.43414,21.53144],[78.43426,21.53493],[78.42424,21.54444],[78.42793,21.55857],[78.42539,21.56527],[78.42554,21.56964],[78.41868,21.5709],[78.4215,21.59074],[78.42712,21.59934],[78.41657,21.60111],[78.41266,21.60553],[78.40692,21.60879],[78.39463,21.60779],[78.39285,21.60934],[78.39265,21.61349],[78.39065,21.61459],[78.37264,21.61345],[78.38162,21.59204],[78.3778,21.58373],[78.36306,21.5752],[78.35542,21.57332],[78.34894,21.57863],[78.34852,21.58067],[78.34542,21.58176],[78.34275,21.58906],[78.32661,21.575],[78.32031,21.57205],[78.30817,21.57151],[78.30705,21.56957],[78.30395,21.57045],[78.30297,21.58374],[78.29121,21.58323],[78.28115,21.58524],[78.27522,21.59182],[78.27182,21.59066],[78.26648,21.59173],[78.2644,21.59127],[78.26137,21.58674],[78.2603,21.57966],[78.27327,21.57121],[78.27386,21.56925],[78.24805,21.56232],[78.23958,21.56307],[78.23192,21.55675],[78.22328,21.55316],[78.20547,21.55297],[78.18189,21.55734],[78.17421,21.54726],[78.17286,21.53875],[78.1755,21.5281],[78.17125,21.52558],[78.18263,21.51175],[78.1773,21.5078],[78.17447,21.50798],[78.17621,21.49975],[78.13655,21.47816],[78.12587,21.46984],[78.11335,21.46346],[78.09873,21.45865],[78.08318,21.44602],[78.06606,21.43797],[78.04602,21.43398],[78.04029,21.42845],[78.03009,21.42214],[78.02132,21.41912],[78.01424,21.41856],[78.0091,21.41511],[78.00127,21.41469],[77.98473,21.40319],[77.96512,21.40221],[77.94259,21.39661],[77.94051,21.39037],[77.94119,21.38577],[77.92759,21.38599],[77.91209,21.38113],[77.907,21.37784],[77.88843,21.3781],[77.88327,21.37604],[77.88385,21.38417],[77.86758,21.38787],[77.8568,21.38852],[77.85637,21.39019],[77.84728,21.3925],[77.84262,21.3972],[77.82262,21.40733],[77.80115,21.4096],[77.79828,21.40491],[77.79677,21.38901],[77.76388,21.3814],[77.76122,21.38517],[77.75004,21.38283],[77.74605,21.37849],[77.74057,21.36542],[77.73838,21.36477],[77.73711,21.3622],[77.72329,21.36167],[77.70999,21.35745],[77.70676,21.3682],[77.70739,21.37505],[77.7047,21.377],[77.7006,21.37367],[77.69741,21.3743],[77.69517,21.37876],[77.69708,21.39271],[77.69548,21.39637],[77.69199,21.39757],[77.67866,21.37691],[77.66991,21.36892],[77.66438,21.37451],[77.66648,21.38405],[77.65592,21.38614],[77.65313,21.39146],[77.64936,21.39207],[77.64326,21.38692],[77.63977,21.3887],[77.63265,21.38881],[77.61726,21.38712],[77.6139,21.39205],[77.60497,21.39073],[77.60343,21.38984],[77.60617,21.37357],[77.60826,21.37049],[77.60785,21.36494],[77.60513,21.36244],[77.59482,21.36303],[77.59182,21.36504],[77.58711,21.36284],[77.58528,21.36679],[77.57343,21.37093],[77.57114,21.36867],[77.5635,21.36931],[77.56281,21.37534],[77.55678,21.38364],[77.55967,21.39055],[77.56252,21.39041],[77.56324,21.39315],[77.56146,21.39646],[77.55344,21.4034],[77.54766,21.40532],[77.54829,21.41131],[77.54269,21.41115],[77.53591,21.4177],[77.53172,21.41915],[77.52924,21.4153],[77.52786,21.40563],[77.52473,21.40293],[77.52539,21.39565],[77.52329,21.38894],[77.51854,21.38392],[77.51671,21.38402],[77.51452,21.37594],[77.50221,21.37719],[77.48806,21.37436],[77.48987,21.37796],[77.48694,21.3859],[77.48751,21.40622],[77.47955,21.42025],[77.4766,21.43179],[77.47165,21.43613],[77.47435,21.44659],[77.47171,21.45029],[77.4736,21.45445],[77.46591,21.45982],[77.45982,21.46662],[77.44219,21.46991],[77.44147,21.47505],[77.43874,21.47865],[77.44219,21.48062],[77.44332,21.48725],[77.43539,21.49958],[77.42944,21.50471],[77.42231,21.51748],[77.42252,21.53256],[77.42556,21.53774],[77.44005,21.54478],[77.45009,21.54168],[77.45632,21.54623],[77.45412,21.54958],[77.45489,21.55384],[77.46619,21.55329],[77.47397,21.54952],[77.50519,21.55167],[77.5213,21.54097],[77.53722,21.53652],[77.54714,21.53672],[77.57523,21.52646],[77.59677,21.52711],[77.61148,21.53882],[77.60874,21.54819],[77.59529,21.55943],[77.58214,21.55378],[77.57711,21.55517],[77.57412,21.56469],[77.57464,21.57228],[77.57696,21.57729],[77.57545,21.58144],[77.57268,21.61598],[77.57552,21.62064],[77.5725,21.6287],[77.56417,21.64188],[77.5611,21.6673],[77.55386,21.67896],[77.55097,21.68078],[77.54767,21.69402],[77.54249,21.70558],[77.53322,21.71135],[77.52702,21.71091],[77.52402,21.71262],[77.5231,21.71972],[77.52555,21.72431],[77.51971,21.72524],[77.51196,21.7322],[77.5086,21.73821],[77.50454,21.73944],[77.50221,21.74342],[77.50259,21.74593],[77.49495,21.74831],[77.49051,21.74698],[77.47947,21.75415],[77.47974,21.75944],[77.47795,21.76283],[77.48217,21.76385]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"469","area_level":"District","area_name":"Chhatrapati Sambhajinagar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.73122,20.08692],[74.7312,20.08789],[74.72854,20.0878],[74.72855,20.08551],[74.73125,20.08527],[74.73122,20.08692]]],[[[76.00625,20.64487],[76.00581,20.64601],[76.00499,20.64587],[76.00516,20.64304],[76.00821,20.64036],[76.00701,20.63874],[76.00842,20.63611],[76.0072,20.6349],[76.00654,20.63152],[76.00521,20.63088],[76.00468,20.62915],[75.9977,20.62791],[75.99671,20.62263],[75.99348,20.62258],[75.99348,20.62199],[75.98941,20.6209],[75.9889,20.61699],[75.98763,20.61699],[75.9876,20.61608],[75.98204,20.61684],[75.97998,20.61825],[75.9712,20.61875],[75.96549,20.62025],[75.95477,20.62058],[75.95427,20.60503],[75.95329,20.60071],[75.9556,20.59909],[75.95844,20.60526],[75.9604,20.60363],[75.96339,20.59865],[75.9667,20.5968],[75.97107,20.59841],[75.97269,20.59581],[75.97128,20.59049],[75.97369,20.58917],[75.97463,20.58661],[75.97378,20.58357],[75.97296,20.5833],[75.97282,20.58041],[75.96362,20.58063],[75.96595,20.57761],[75.96506,20.57437],[75.96568,20.57108],[75.96416,20.57117],[75.96392,20.56959],[75.94997,20.57013],[75.94895,20.56898],[75.94582,20.57328],[75.94859,20.57485],[75.94964,20.5807],[75.9483,20.58181],[75.94576,20.58053],[75.94482,20.58392],[75.93907,20.58485],[75.93716,20.58566],[75.93585,20.58766],[75.93234,20.58665],[75.93069,20.58445],[75.93204,20.58448],[75.93172,20.58327],[75.9332,20.58249],[75.93084,20.58148],[75.93176,20.57611],[75.9303,20.54916],[75.93181,20.54892],[75.93477,20.5433],[75.93988,20.54202],[75.93955,20.53826],[75.94058,20.53554],[75.94449,20.53356],[75.95575,20.53009],[75.96075,20.53068],[75.96191,20.5325],[75.9654,20.5325],[75.96726,20.53526],[75.96941,20.53522],[75.97147,20.53805],[75.97056,20.53432],[75.97098,20.53277],[75.97403,20.53143],[75.97622,20.53275],[75.97807,20.52979],[75.98121,20.52965],[75.98483,20.53145],[75.99088,20.5311],[75.99223,20.53568],[75.9943,20.5341],[75.99668,20.5342],[75.99725,20.53052],[76.00046,20.52951],[76.00227,20.53148],[76.00616,20.53319],[76.00867,20.53878],[76.01039,20.53673],[76.00984,20.53306],[76.01317,20.53127],[76.01807,20.53022],[76.01581,20.55092],[76.03013,20.55557],[76.03629,20.55475],[76.0379,20.55841],[76.03649,20.57182],[76.0416,20.57891],[76.04285,20.57911],[76.03847,20.58687],[76.03667,20.58754],[76.03783,20.59652],[76.0392,20.59641],[76.03981,20.59986],[76.0391,20.60483],[76.0401,20.60628],[76.03713,20.60982],[76.03704,20.61126],[76.03043,20.62336],[76.0303,20.62775],[76.03212,20.6367],[76.02744,20.63748],[76.02421,20.63912],[76.02452,20.64103],[76.02272,20.64148],[76.02255,20.64522],[76.02181,20.64555],[76.0184,20.64599],[76.01717,20.64271],[76.01063,20.64261],[76.00625,20.64487]]],[[[75.6813,20.6652],[75.66703,20.66831],[75.66621,20.66466],[75.66392,20.66623],[75.66171,20.66524],[75.65587,20.65944],[75.654,20.64954],[75.65884,20.64969],[75.6616,20.6415],[75.65816,20.64019],[75.66118,20.63043],[75.65981,20.62432],[75.64992,20.62468],[75.64583,20.61674],[75.6436,20.61793],[75.62994,20.61635],[75.627,20.62117],[75.61987,20.6223],[75.60535,20.62166],[75.60617,20.61816],[75.60962,20.6143],[75.60882,20.6127],[75.61226,20.60839],[75.6114,20.60407],[75.61272,20.60276],[75.60362,20.60257],[75.60377,20.60118],[75.59174,20.59948],[75.58434,20.60098],[75.58122,20.60324],[75.57413,20.60268],[75.57032,20.60523],[75.56629,20.60397],[75.5558,20.60844],[75.55779,20.60581],[75.55746,20.6032],[75.55573,20.59835],[75.55221,20.59801],[75.53967,20.60593],[75.53498,20.60604],[75.53452,20.60092],[75.53638,20.60098],[75.53454,20.59686],[75.5331,20.59763],[75.53257,20.59118],[75.52059,20.59009],[75.52231,20.58609],[75.52168,20.57829],[75.52849,20.55599],[75.526,20.55776],[75.52566,20.55559],[75.52413,20.55547],[75.52191,20.55846],[75.51766,20.55647],[75.51561,20.55714],[75.51466,20.55586],[75.51618,20.55236],[75.51283,20.54917],[75.5043,20.55102],[75.50466,20.54281],[75.50639,20.54036],[75.49404,20.53816],[75.49587,20.53418],[75.49342,20.53273],[75.49534,20.52494],[75.49299,20.52364],[75.48705,20.52752],[75.48616,20.53074],[75.48124,20.5349],[75.4801,20.54313],[75.46491,20.54314],[75.46339,20.54549],[75.46397,20.54948],[75.46199,20.5512],[75.4558,20.55076],[75.45705,20.54835],[75.45741,20.52651],[75.46051,20.51822],[75.45447,20.51357],[75.45084,20.51995],[75.4483,20.53073],[75.44639,20.53212],[75.44671,20.53734],[75.43295,20.53504],[75.43365,20.53302],[75.43177,20.53227],[75.43161,20.53029],[75.4232,20.53038],[75.42447,20.52533],[75.42741,20.52282],[75.42523,20.5169],[75.42868,20.51161],[75.41662,20.51351],[75.41358,20.51818],[75.40949,20.51885],[75.40681,20.52202],[75.39568,20.52061],[75.3914,20.53774],[75.3912,20.56781],[75.38868,20.57781],[75.3646,20.57502],[75.36441,20.58267],[75.35912,20.59109],[75.35845,20.59607],[75.35441,20.59192],[75.35622,20.58957],[75.3543,20.58783],[75.33484,20.58918],[75.33494,20.59168],[75.31848,20.59162],[75.31474,20.58864],[75.31642,20.5746],[75.30676,20.57674],[75.3061,20.57463],[75.29266,20.57352],[75.29351,20.5696],[75.29117,20.56643],[75.27758,20.56963],[75.26739,20.56836],[75.2652,20.56663],[75.26331,20.56877],[75.26184,20.57565],[75.25886,20.5765],[75.25536,20.57302],[75.25571,20.56887],[75.25335,20.56875],[75.25239,20.56239],[75.25013,20.55934],[75.25042,20.55242],[75.24826,20.55066],[75.24094,20.55145],[75.2441,20.54381],[75.24433,20.53603],[75.23499,20.5367],[75.23719,20.52777],[75.23852,20.52707],[75.23681,20.52605],[75.2379,20.5209],[75.2364,20.51919],[75.22597,20.51752],[75.22517,20.51555],[75.22292,20.50018],[75.22646,20.49441],[75.21775,20.49573],[75.21409,20.49848],[75.20505,20.49897],[75.20861,20.49204],[75.19656,20.49232],[75.19743,20.48784],[75.19595,20.48102],[75.19724,20.47543],[75.18688,20.47504],[75.1864,20.47257],[75.1752,20.4751],[75.17388,20.47794],[75.1598,20.47648],[75.15707,20.46647],[75.15712,20.46525],[75.16068,20.46482],[75.16041,20.46273],[75.15726,20.46107],[75.15762,20.45864],[75.15929,20.45847],[75.15817,20.45551],[75.16754,20.45878],[75.16671,20.45579],[75.16938,20.45499],[75.16971,20.45656],[75.17288,20.45639],[75.17411,20.45456],[75.17107,20.44952],[75.17469,20.44593],[75.17419,20.44242],[75.16168,20.44004],[75.15333,20.43283],[75.14567,20.43218],[75.13804,20.43397],[75.13756,20.43232],[75.1279,20.43097],[75.12652,20.42907],[75.12466,20.43197],[75.12296,20.42752],[75.12385,20.42331],[75.11834,20.42311],[75.11498,20.41567],[75.10583,20.41191],[75.11055,20.39492],[75.11634,20.39342],[75.1172,20.38225],[75.12241,20.36329],[75.12251,20.34971],[75.11533,20.32666],[75.1167,20.32287],[75.11501,20.3181],[75.11116,20.31722],[75.11089,20.31019],[75.10333,20.3078],[75.09933,20.31217],[75.0947,20.31282],[75.09443,20.31492],[75.0918,20.31556],[75.09049,20.31298],[75.08805,20.31561],[75.08182,20.31557],[75.08226,20.32149],[75.08976,20.33218],[75.07474,20.33855],[75.05858,20.33717],[75.056,20.33334],[75.05473,20.33009],[75.05649,20.3268],[75.05496,20.32392],[75.05549,20.31073],[75.0541,20.30934],[75.0564,20.30667],[75.05489,20.30576],[75.05203,20.30852],[75.04798,20.30839],[75.0408,20.31109],[75.02828,20.31897],[75.02498,20.31857],[75.02015,20.32452],[75.01199,20.32736],[74.99952,20.33596],[74.99441,20.32803],[75.00532,20.29369],[74.98396,20.29444],[74.98341,20.30564],[74.96632,20.30697],[74.94493,20.28783],[74.95419,20.27183],[74.94735,20.27414],[74.94478,20.27202],[74.93493,20.27003],[74.9329,20.25119],[74.91328,20.24583],[74.90523,20.24719],[74.90779,20.2191],[74.9285,20.21738],[74.92994,20.19838],[74.92812,20.18476],[74.92743,20.18153],[74.92262,20.17974],[74.92187,20.17567],[74.92545,20.17131],[74.92489,20.16473],[74.92994,20.15966],[74.92798,20.15454],[74.91709,20.15607],[74.90678,20.155],[74.90698,20.16759],[74.89843,20.16906],[74.89567,20.18026],[74.88337,20.18131],[74.85463,20.17968],[74.85497,20.20644],[74.85266,20.20658],[74.85196,20.21387],[74.85297,20.22406],[74.85538,20.23036],[74.84816,20.23376],[74.82928,20.23538],[74.82843,20.24623],[74.82089,20.24677],[74.81839,20.25041],[74.81524,20.25006],[74.80999,20.24602],[74.807,20.24662],[74.80741,20.24454],[74.80191,20.2382],[74.79655,20.23844],[74.79588,20.23671],[74.79383,20.23869],[74.78779,20.23393],[74.78179,20.23448],[74.78182,20.22901],[74.78565,20.22848],[74.8,20.23267],[74.79682,20.23065],[74.78288,20.20616],[74.77034,20.20676],[74.76194,20.20477],[74.75863,20.20099],[74.75595,20.19682],[74.7601,20.18449],[74.74613,20.18568],[74.74009,20.18904],[74.73464,20.18877],[74.73575,20.19633],[74.73387,20.19759],[74.73116,20.19288],[74.7292,20.19223],[74.7209,20.19422],[74.71912,20.19279],[74.7208,20.18697],[74.71602,20.18284],[74.71476,20.17826],[74.71244,20.17804],[74.71158,20.17319],[74.71726,20.1593],[74.71737,20.15017],[74.71558,20.15018],[74.71414,20.13348],[74.71186,20.13576],[74.70845,20.13498],[74.71097,20.13211],[74.71144,20.12873],[74.70914,20.12868],[74.70562,20.12348],[74.71,20.12234],[74.70734,20.12042],[74.70738,20.11675],[74.70493,20.11755],[74.70378,20.11476],[74.70501,20.11342],[74.72016,20.11511],[74.73034,20.11458],[74.73152,20.09907],[74.73646,20.08079],[74.70954,20.07992],[74.71137,20.07629],[74.71143,20.06839],[74.72066,20.05416],[74.71276,20.04532],[74.7065,20.04149],[74.70965,20.03289],[74.71241,20.03112],[74.71276,20.02317],[74.71622,20.02153],[74.7179,20.01813],[74.71336,20.01582],[74.69489,20.01699],[74.6932,20.01338],[74.68932,20.01077],[74.68626,19.999],[74.68833,19.99489],[74.6818,19.98922],[74.68515,19.96866],[74.68009,19.96475],[74.67444,19.96585],[74.67089,19.95934],[74.67205,19.93148],[74.67716,19.9307],[74.67707,19.92414],[74.66637,19.92364],[74.64931,19.92012],[74.64599,19.90929],[74.64848,19.89582],[74.64536,19.8788],[74.64444,19.86014],[74.65982,19.85771],[74.65688,19.83487],[74.63606,19.8418],[74.6029,19.84696],[74.60291,19.83248],[74.59998,19.80659],[74.59485,19.79224],[74.58886,19.78418],[74.59232,19.77583],[74.60732,19.76975],[74.61189,19.76995],[74.61607,19.77889],[74.62563,19.78953],[74.63386,19.79329],[74.63678,19.79304],[74.64946,19.7849],[74.65102,19.77841],[74.65329,19.77645],[74.66793,19.77614],[74.67714,19.76674],[74.68612,19.76778],[74.68972,19.76643],[74.68906,19.75721],[74.69076,19.75544],[74.69527,19.75501],[74.70625,19.76356],[74.70034,19.77253],[74.7007,19.77556],[74.70732,19.7818],[74.71443,19.78015],[74.71677,19.77892],[74.71944,19.7724],[74.71739,19.76274],[74.72147,19.75466],[74.72813,19.75441],[74.73124,19.7578],[74.73146,19.76242],[74.73532,19.76491],[74.73878,19.76222],[74.74446,19.75219],[74.74943,19.74864],[74.75453,19.74882],[74.75992,19.75354],[74.76407,19.7537],[74.76609,19.74903],[74.76523,19.74072],[74.76761,19.73673],[74.78073,19.73636],[74.78427,19.73434],[74.7857,19.73211],[74.78505,19.71921],[74.78654,19.7154],[74.79784,19.70561],[74.80437,19.70223],[74.81181,19.70413],[74.81412,19.70307],[74.81444,19.69847],[74.80845,19.6885],[74.81087,19.68518],[74.81784,19.68068],[74.82282,19.66851],[74.83666,19.66334],[74.8442,19.64959],[74.84879,19.64637],[74.85806,19.64654],[74.86612,19.65127],[74.87505,19.65004],[74.88304,19.65447],[74.88615,19.65277],[74.88443,19.64228],[74.88797,19.63904],[74.89906,19.64159],[74.90739,19.64677],[74.91377,19.6482],[74.92005,19.64558],[74.92771,19.64694],[74.9286,19.64057],[74.93118,19.63691],[74.94167,19.6451],[74.96277,19.64714],[74.98252,19.63955],[74.98518,19.63694],[74.98541,19.6334],[74.99867,19.62402],[75.00657,19.62508],[75.02627,19.6233],[75.03776,19.62584],[75.04175,19.62221],[75.03873,19.61595],[75.04442,19.61216],[75.05272,19.611],[75.05916,19.6057],[75.08708,19.61275],[75.09859,19.60398],[75.11211,19.60504],[75.1161,19.6036],[75.12683,19.5946],[75.13169,19.59395],[75.13549,19.59736],[75.14041,19.59811],[75.14687,19.59418],[75.15092,19.58936],[75.15454,19.58931],[75.16394,19.59818],[75.17435,19.60043],[75.18139,19.59917],[75.18733,19.59512],[75.19405,19.59485],[75.19718,19.58801],[75.20322,19.58245],[75.20653,19.58157],[75.20671,19.57569],[75.20366,19.56627],[75.20633,19.56216],[75.21752,19.55877],[75.22573,19.54543],[75.23006,19.54132],[75.24088,19.53621],[75.25682,19.52325],[75.25947,19.5245],[75.26749,19.55461],[75.27411,19.55435],[75.27731,19.54823],[75.28071,19.54543],[75.28043,19.53787],[75.27446,19.52338],[75.27366,19.51526],[75.28639,19.51255],[75.30134,19.51217],[75.30107,19.50311],[75.30905,19.5005],[75.3085,19.49846],[75.3118,19.49575],[75.31347,19.49715],[75.32043,19.49599],[75.32524,19.49897],[75.32611,19.50197],[75.32415,19.50613],[75.32888,19.50843],[75.32999,19.50689],[75.32866,19.50611],[75.3267,19.49141],[75.32857,19.49097],[75.32744,19.48377],[75.33495,19.48271],[75.33915,19.50181],[75.35053,19.50475],[75.35655,19.50174],[75.36155,19.49018],[75.36027,19.48781],[75.36123,19.48612],[75.35811,19.48266],[75.34421,19.48547],[75.33938,19.46874],[75.3232,19.46573],[75.32255,19.45357],[75.32703,19.43856],[75.33418,19.44185],[75.33725,19.44504],[75.34095,19.4458],[75.34196,19.44845],[75.3469,19.449],[75.35472,19.43345],[75.35703,19.43196],[75.34679,19.41793],[75.3365,19.40854],[75.33942,19.40601],[75.36515,19.3969],[75.37346,19.40501],[75.37885,19.40612],[75.38133,19.41053],[75.38638,19.40956],[75.39138,19.41482],[75.39585,19.41383],[75.3982,19.41566],[75.41071,19.41867],[75.41259,19.41625],[75.42497,19.41576],[75.42951,19.42027],[75.43458,19.41895],[75.43573,19.42306],[75.44114,19.42702],[75.44082,19.41574],[75.44262,19.41404],[75.45533,19.41595],[75.46637,19.41435],[75.47296,19.42186],[75.47921,19.4385],[75.4859,19.4424],[75.48865,19.44135],[75.4965,19.43315],[75.50042,19.43162],[75.50702,19.43189],[75.50762,19.42877],[75.50599,19.42646],[75.5147,19.4205],[75.51768,19.41565],[75.51614,19.40797],[75.5195,19.40239],[75.53636,19.39694],[75.54769,19.38809],[75.56283,19.38247],[75.57377,19.38181],[75.58671,19.37762],[75.59111,19.38006],[75.59522,19.38574],[75.60613,19.38354],[75.6108,19.40434],[75.61276,19.42515],[75.60327,19.42754],[75.60468,19.45218],[75.6086,19.45227],[75.61275,19.46122],[75.6139,19.46765],[75.62646,19.46059],[75.62937,19.46028],[75.63154,19.46464],[75.63101,19.46735],[75.63701,19.47809],[75.64156,19.49622],[75.64221,19.50209],[75.63993,19.52089],[75.64274,19.53886],[75.64656,19.53887],[75.64799,19.54613],[75.6549,19.56045],[75.65604,19.56815],[75.65228,19.57133],[75.65264,19.57545],[75.6502,19.57817],[75.65289,19.58591],[75.65086,19.58574],[75.64921,19.59544],[75.63994,19.59433],[75.60987,19.59788],[75.60886,19.60163],[75.59912,19.60143],[75.59799,19.60012],[75.59166,19.60996],[75.59358,19.61016],[75.59375,19.61801],[75.59219,19.61801],[75.59046,19.62194],[75.58875,19.62202],[75.58515,19.6383],[75.60386,19.64349],[75.60513,19.65783],[75.62541,19.65594],[75.62794,19.6567],[75.62924,19.66032],[75.63139,19.66772],[75.6314,19.67627],[75.62568,19.69543],[75.62519,19.70424],[75.62859,19.70394],[75.62963,19.70775],[75.63196,19.73486],[75.62524,19.73637],[75.62646,19.74245],[75.62616,19.74552],[75.62478,19.74585],[75.62586,19.75495],[75.62272,19.755],[75.62254,19.75748],[75.62359,19.772],[75.6361,19.77237],[75.63401,19.77812],[75.64442,19.78006],[75.64495,19.79314],[75.64125,19.79299],[75.63947,19.79988],[75.63345,19.80695],[75.6336,19.81168],[75.65358,19.81336],[75.65548,19.81443],[75.6585,19.82252],[75.66,19.82921],[75.65772,19.82966],[75.65811,19.83394],[75.65666,19.83334],[75.65591,19.84095],[75.64489,19.8421],[75.64811,19.85428],[75.64671,19.85848],[75.64778,19.87023],[75.64942,19.87643],[75.65257,19.87673],[75.65678,19.91251],[75.66367,19.91218],[75.67104,19.91438],[75.67289,19.91699],[75.67754,19.91654],[75.67972,19.91823],[75.6806,19.92452],[75.67719,19.93083],[75.67417,19.9331],[75.67353,19.9398],[75.66871,19.94214],[75.66921,19.94402],[75.66365,19.94543],[75.66194,19.94947],[75.6583,19.94793],[75.65747,19.94538],[75.65416,19.94635],[75.6511,19.94973],[75.65485,19.95777],[75.65576,19.96584],[75.65069,19.9686],[75.64806,19.97135],[75.64859,19.97264],[75.64393,19.97555],[75.64212,19.98279],[75.64581,19.99618],[75.64447,20.00698],[75.63974,20.00775],[75.63908,20.0102],[75.63343,20.0116],[75.63254,20.00686],[75.63018,20.00385],[75.6225,19.99993],[75.60736,20.00135],[75.59957,19.99951],[75.59809,20.00526],[75.59245,20.00638],[75.592,20.01626],[75.58993,20.01778],[75.58842,20.02393],[75.59487,20.0322],[75.60062,20.04942],[75.60432,20.05338],[75.5972,20.05842],[75.59837,20.06183],[75.59081,20.06096],[75.58867,20.06358],[75.58985,20.06564],[75.58756,20.06645],[75.58536,20.08643],[75.58636,20.0979],[75.62416,20.10027],[75.62576,20.1081],[75.6324,20.11917],[75.63362,20.1358],[75.63741,20.1393],[75.6412,20.15794],[75.64083,20.16655],[75.64601,20.18814],[75.6736,20.18375],[75.67866,20.19079],[75.68125,20.19817],[75.68023,20.22876],[75.67396,20.23149],[75.6742,20.23325],[75.67999,20.25852],[75.68241,20.25895],[75.6861,20.26402],[75.69003,20.26514],[75.6951,20.28234],[75.69219,20.28635],[75.69106,20.29139],[75.68412,20.30147],[75.68195,20.3023],[75.68178,20.30633],[75.70777,20.31283],[75.71643,20.33041],[75.72982,20.32733],[75.73363,20.33345],[75.74246,20.33493],[75.74322,20.3262],[75.75453,20.32579],[75.76096,20.32824],[75.76415,20.33622],[75.77055,20.33639],[75.766,20.34986],[75.75813,20.35914],[75.75738,20.36843],[75.7456,20.37058],[75.74651,20.37942],[75.75055,20.38898],[75.74918,20.40223],[75.74246,20.40434],[75.73933,20.40341],[75.73705,20.40596],[75.73263,20.40713],[75.73749,20.4193],[75.74137,20.42144],[75.75576,20.42306],[75.75855,20.43026],[75.7581,20.43563],[75.76398,20.45198],[75.76907,20.45278],[75.7711,20.45525],[75.77894,20.45501],[75.79457,20.45024],[75.79677,20.46125],[75.80396,20.46347],[75.81119,20.46324],[75.81515,20.46976],[75.8197,20.47209],[75.8268,20.47104],[75.82647,20.4688],[75.83309,20.46604],[75.83606,20.45963],[75.84097,20.45757],[75.84607,20.4579],[75.85156,20.46074],[75.85512,20.46022],[75.8644,20.44732],[75.86478,20.44271],[75.86241,20.44224],[75.86266,20.4399],[75.8726,20.44015],[75.8776,20.43741],[75.88182,20.44494],[75.89406,20.44538],[75.89132,20.44618],[75.89129,20.4483],[75.88877,20.44783],[75.86949,20.45506],[75.8709,20.46128],[75.86159,20.46541],[75.86151,20.47658],[75.85855,20.47694],[75.85881,20.48141],[75.85426,20.48022],[75.85394,20.48171],[75.8492,20.48306],[75.84746,20.48828],[75.84944,20.49188],[75.8499,20.5009],[75.85294,20.50066],[75.85291,20.50315],[75.85897,20.50348],[75.8624,20.51986],[75.86038,20.5201],[75.86059,20.5238],[75.87176,20.52807],[75.87182,20.5265],[75.87722,20.52503],[75.87947,20.5228],[75.88237,20.52423],[75.88401,20.52832],[75.8841,20.5305],[75.88015,20.53241],[75.87865,20.53671],[75.86036,20.55983],[75.8659,20.55922],[75.87657,20.55254],[75.87731,20.55802],[75.87942,20.56054],[75.88292,20.56074],[75.88745,20.57279],[75.88595,20.58478],[75.88677,20.59229],[75.87721,20.59649],[75.87708,20.59775],[75.86873,20.59783],[75.86958,20.61353],[75.86637,20.61493],[75.8675,20.61954],[75.86358,20.62181],[75.85464,20.62175],[75.85354,20.61273],[75.83678,20.61425],[75.83748,20.605],[75.83943,20.60012],[75.83843,20.59601],[75.8426,20.59275],[75.83254,20.59196],[75.83264,20.57409],[75.82814,20.5712],[75.83778,20.56653],[75.84727,20.56632],[75.84399,20.56257],[75.83125,20.55559],[75.83004,20.55623],[75.83147,20.55783],[75.82455,20.55638],[75.81771,20.55839],[75.80937,20.56385],[75.80685,20.56364],[75.80418,20.56733],[75.79829,20.56173],[75.79687,20.56138],[75.79703,20.56358],[75.78612,20.56189],[75.79206,20.58146],[75.78488,20.5835],[75.78137,20.58286],[75.7764,20.58142],[75.77331,20.57482],[75.75698,20.57383],[75.75789,20.58296],[75.75634,20.58333],[75.75886,20.59946],[75.75874,20.6105],[75.75429,20.61056],[75.75424,20.61341],[75.75043,20.61082],[75.74306,20.61107],[75.74039,20.60716],[75.73084,20.60681],[75.73103,20.6101],[75.72242,20.61802],[75.72263,20.62066],[75.71292,20.61354],[75.69941,20.61401],[75.69535,20.62309],[75.69886,20.63487],[75.70008,20.63506],[75.70099,20.65339],[75.70358,20.65883],[75.6813,20.6652]],[[75.56285,19.95428],[75.5588,19.95726],[75.55826,19.96054],[75.56245,19.96242],[75.56163,19.96485],[75.56784,19.96706],[75.58128,19.96667],[75.58565,19.9636],[75.59624,19.9602],[75.59547,19.95109],[75.59256,19.94996],[75.59215,19.94271],[75.57287,19.93554],[75.56811,19.93563],[75.56207,19.9398],[75.5642,19.95167],[75.56285,19.95428]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"47","area_level":"District","area_name":"Chamoli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.42457,31.07107],[79.41053,31.0754],[79.40654,31.07061],[79.40128,31.06866],[79.39154,31.06952],[79.38451,31.06377],[79.38283,31.05536],[79.3801,31.05365],[79.37545,31.05373],[79.36236,31.03678],[79.35218,31.03141],[79.34284,31.03036],[79.32026,31.02427],[79.31174,31.01587],[79.30666,31.01375],[79.30602,31.01105],[79.30813,31.00479],[79.31319,31.00166],[79.32854,30.99919],[79.3316,30.9957],[79.32622,30.98607],[79.32323,30.98363],[79.32857,30.97596],[79.33038,30.96991],[79.32184,30.96089],[79.31429,30.95904],[79.30284,30.96499],[79.30114,30.96811],[79.29201,30.96813],[79.2853,30.96606],[79.28191,30.96181],[79.26936,30.9591],[79.26351,30.95488],[79.26694,30.94607],[79.27375,30.94551],[79.28446,30.9353],[79.2809,30.92331],[79.28361,30.91376],[79.27273,30.90975],[79.27,30.9069],[79.27184,30.89155],[79.28093,30.87658],[79.27433,30.87402],[79.27029,30.8698],[79.25902,30.8693],[79.25815,30.86373],[79.255,30.8601],[79.25499,30.85616],[79.25132,30.84825],[79.25133,30.84332],[79.24238,30.8426],[79.23664,30.83882],[79.23961,30.83316],[79.24086,30.8247],[79.22626,30.81939],[79.22487,30.81084],[79.22873,30.80745],[79.2361,30.8061],[79.2401,30.8033],[79.23866,30.79759],[79.24052,30.79391],[79.24389,30.79236],[79.24539,30.78488],[79.24991,30.78201],[79.25932,30.77957],[79.26252,30.77261],[79.26107,30.77004],[79.2711,30.76085],[79.2718,30.7584],[79.28016,30.75624],[79.28956,30.74985],[79.27976,30.73769],[79.27988,30.73061],[79.27473,30.72425],[79.29703,30.71955],[79.30058,30.7067],[79.29974,30.69505],[79.3045,30.68934],[79.30558,30.68339],[79.30373,30.6783],[79.31089,30.67218],[79.32371,30.66993],[79.32752,30.66682],[79.3315,30.65784],[79.33846,30.65714],[79.3467,30.65344],[79.34974,30.64891],[79.35331,30.64683],[79.35601,30.63148],[79.35412,30.62536],[79.34794,30.6236],[79.34635,30.61309],[79.34805,30.60983],[79.34613,30.60657],[79.34152,30.60535],[79.33867,30.59668],[79.33231,30.59333],[79.32167,30.59466],[79.30683,30.58921],[79.3075,30.58511],[79.30402,30.58008],[79.30392,30.57521],[79.30029,30.56688],[79.29528,30.56094],[79.28364,30.56395],[79.27501,30.56364],[79.27042,30.56627],[79.26533,30.56673],[79.25648,30.5663],[79.2542,30.56317],[79.24561,30.55892],[79.24656,30.55289],[79.24145,30.5484],[79.24545,30.53776],[79.2289,30.52701],[79.22655,30.52186],[79.22821,30.51604],[79.22549,30.50961],[79.22671,30.50529],[79.2248,30.50383],[79.22646,30.49912],[79.2218,30.49037],[79.21839,30.48798],[79.20716,30.48573],[79.19159,30.47693],[79.187,30.47068],[79.18622,30.46247],[79.17968,30.45942],[79.17406,30.44915],[79.16657,30.44623],[79.16572,30.44009],[79.17424,30.43074],[79.17441,30.4284],[79.17254,30.41513],[79.16456,30.4105],[79.16376,30.40203],[79.16556,30.39756],[79.16528,30.38793],[79.16163,30.38307],[79.15657,30.38276],[79.14923,30.37816],[79.14326,30.38067],[79.13932,30.37909],[79.12685,30.38159],[79.11906,30.38458],[79.11224,30.38311],[79.11043,30.38118],[79.1078,30.37465],[79.11245,30.37247],[79.11336,30.37049],[79.1293,30.36459],[79.12909,30.35807],[79.13207,30.35439],[79.13173,30.35045],[79.13887,30.34667],[79.13757,30.34226],[79.14127,30.34153],[79.14032,30.33996],[79.1422,30.33954],[79.1414,30.33793],[79.14437,30.33919],[79.145,30.33642],[79.1509,30.33512],[79.15096,30.33138],[79.15458,30.33274],[79.1593,30.32813],[79.1598,30.32499],[79.15763,30.32301],[79.15431,30.32189],[79.15391,30.32477],[79.14881,30.3225],[79.14836,30.31332],[79.14553,30.31014],[79.14438,30.30083],[79.1469,30.30065],[79.14586,30.29924],[79.1469,30.2984],[79.16672,30.29735],[79.17054,30.29533],[79.16004,30.29311],[79.15627,30.29636],[79.15364,30.2965],[79.14456,30.29226],[79.14177,30.28691],[79.13728,30.28523],[79.12216,30.28974],[79.12028,30.29337],[79.11393,30.29253],[79.11227,30.29032],[79.10676,30.28882],[79.10684,30.28497],[79.10194,30.27886],[79.10188,30.27682],[79.10789,30.26983],[79.10353,30.25588],[79.09832,30.25231],[79.09644,30.24671],[79.08836,30.2399],[79.08347,30.23042],[79.07732,30.22574],[79.07606,30.22116],[79.07644,30.21937],[79.08803,30.21461],[79.09427,30.21633],[79.09556,30.21357],[79.10122,30.21111],[79.09792,30.20597],[79.09462,30.2059],[79.09755,30.19669],[79.10263,30.19523],[79.10805,30.18919],[79.11196,30.18952],[79.1222,30.18002],[79.12662,30.1796],[79.12565,30.17101],[79.12674,30.16892],[79.13967,30.16575],[79.14031,30.16131],[79.14414,30.15839],[79.14403,30.15513],[79.13587,30.15085],[79.13346,30.14603],[79.1324,30.14005],[79.13505,30.1329],[79.13385,30.12933],[79.13542,30.12411],[79.1344,30.11824],[79.14457,30.11265],[79.15132,30.11193],[79.1539,30.106],[79.15278,30.10457],[79.15371,30.09965],[79.1603,30.09307],[79.16957,30.09396],[79.16986,30.09692],[79.17239,30.09656],[79.18077,30.09054],[79.18673,30.0909],[79.19312,30.08447],[79.19369,30.08044],[79.19771,30.07561],[79.19959,30.06769],[79.20312,30.06316],[79.19366,30.05919],[79.18896,30.0474],[79.18889,30.03727],[79.19222,30.03536],[79.20237,30.03532],[79.20634,30.03185],[79.20957,30.03122],[79.21073,30.0278],[79.21778,30.0226],[79.2163,30.01052],[79.22019,30.00267],[79.22313,30.0006],[79.22268,29.99349],[79.22397,29.99172],[79.21873,29.98588],[79.22484,29.97801],[79.23043,29.97908],[79.24107,29.97359],[79.24598,29.96988],[79.25081,29.96072],[79.25604,29.9632],[79.26772,29.96012],[79.27262,29.96034],[79.27979,29.95368],[79.28459,29.95167],[79.28396,29.94279],[79.28602,29.93863],[79.28318,29.93371],[79.28229,29.92557],[79.3018,29.92843],[79.3091,29.93177],[79.31432,29.93053],[79.31718,29.92777],[79.32508,29.9292],[79.3259,29.93869],[79.33342,29.94102],[79.33513,29.94303],[79.33033,29.95074],[79.32866,29.96204],[79.32469,29.9693],[79.32493,29.97287],[79.33891,29.9726],[79.33895,29.9704],[79.34572,29.96022],[79.35025,29.95686],[79.35177,29.95251],[79.35619,29.94958],[79.35739,29.94318],[79.36185,29.93948],[79.36683,29.93847],[79.36874,29.93294],[79.37398,29.92691],[79.37868,29.92919],[79.38571,29.92869],[79.39571,29.93767],[79.40042,29.9378],[79.40474,29.94243],[79.41715,29.94315],[79.42046,29.93491],[79.42454,29.93459],[79.42854,29.93678],[79.43635,29.95248],[79.44613,29.95527],[79.44876,29.95791],[79.44907,29.96467],[79.45375,29.96614],[79.45937,29.9712],[79.46409,29.97184],[79.46715,29.97549],[79.4669,29.97856],[79.47164,29.97947],[79.4706,29.98919],[79.47211,29.99765],[79.48422,30.02335],[79.49256,30.02212],[79.49848,30.0154],[79.52316,30.01347],[79.52689,30.00532],[79.5329,29.99992],[79.54772,29.99583],[79.54977,29.99811],[79.56246,30.00339],[79.5661,30.00235],[79.57901,30.00588],[79.58744,30.00448],[79.58838,30.0068],[79.59529,30.01011],[79.59634,30.01328],[79.60202,30.01457],[79.61013,30.02011],[79.61517,30.02029],[79.62063,30.01776],[79.62628,30.01737],[79.63209,30.02008],[79.6378,30.01978],[79.64589,30.01444],[79.65466,30.0121],[79.66309,30.00479],[79.66635,30.00519],[79.66924,30.00888],[79.67996,30.00948],[79.68797,30.00811],[79.69472,30.00428],[79.70875,30.00423],[79.7207,30.00134],[79.72861,30.00194],[79.73694,30.00565],[79.74254,30.00391],[79.74845,30.00484],[79.75032,30.00675],[79.76595,30.01012],[79.77385,30.00611],[79.77796,30.0058],[79.78226,30.00771],[79.78914,30.01623],[79.79827,30.0158],[79.81293,30.02273],[79.81086,30.02994],[79.81619,30.04769],[79.8242,30.0521],[79.82904,30.05907],[79.82425,30.06552],[79.81107,30.07625],[79.80482,30.07871],[79.79162,30.07769],[79.78871,30.08042],[79.78585,30.08711],[79.7772,30.09775],[79.7817,30.11295],[79.77448,30.12078],[79.773,30.1284],[79.76305,30.133],[79.76661,30.14346],[79.78212,30.15228],[79.78643,30.16534],[79.78107,30.1716],[79.78281,30.18068],[79.78602,30.18482],[79.79145,30.18813],[79.7996,30.20354],[79.80173,30.21266],[79.80569,30.21277],[79.80838,30.21529],[79.81502,30.21702],[79.8221,30.22648],[79.81932,30.2347],[79.81504,30.23772],[79.81776,30.24538],[79.81262,30.24949],[79.80638,30.25985],[79.8041,30.26077],[79.80394,30.26917],[79.79726,30.27874],[79.79743,30.28051],[79.80028,30.28469],[79.81319,30.28553],[79.82354,30.28969],[79.82798,30.29004],[79.83666,30.28758],[79.84435,30.28812],[79.85185,30.28608],[79.85417,30.28309],[79.86183,30.28004],[79.87332,30.27106],[79.89833,30.2764],[79.90153,30.28164],[79.91319,30.2869],[79.91875,30.28747],[79.93181,30.29834],[79.94243,30.29849],[79.95502,30.29007],[79.97693,30.29889],[79.99599,30.33491],[79.9964,30.35166],[79.99909,30.35756],[79.99739,30.36558],[80.00822,30.36911],[80.01768,30.38255],[80.02987,30.39202],[80.03297,30.39279],[80.03139,30.3968],[80.03779,30.40696],[80.03746,30.40965],[80.02989,30.4133],[80.03179,30.41859],[80.03091,30.42168],[80.03385,30.42568],[80.03273,30.43276],[80.03719,30.43938],[80.0376,30.44387],[80.02001,30.44889],[80.02273,30.45357],[80.01958,30.46006],[80.00861,30.46927],[80.00926,30.47408],[80.02022,30.48106],[80.01554,30.48545],[80.01578,30.49177],[80.0092,30.49445],[80.0127,30.49958],[80.01257,30.5021],[80.00695,30.50667],[80.00619,30.5222],[80.00392,30.52409],[80.00367,30.52727],[79.99631,30.53194],[79.99475,30.53545],[79.99778,30.54412],[79.99987,30.5447],[80.00148,30.54872],[80.00746,30.55374],[80.01167,30.5608],[80.01069,30.56912],[80.01257,30.57547],[80.01973,30.57875],[80.02039,30.58348],[80.02341,30.58741],[80.03387,30.59169],[80.04279,30.59831],[80.03964,30.60862],[80.02991,30.61516],[80.03628,30.62082],[80.0353,30.62487],[80.03016,30.62866],[80.03378,30.63333],[80.03327,30.6359],[80.02922,30.63856],[80.02124,30.64044],[80.01968,30.64511],[80.01516,30.64829],[80.01697,30.65706],[80.01346,30.66566],[80.00713,30.66659],[80.00075,30.67637],[79.98313,30.6891],[79.98508,30.69347],[79.98267,30.69698],[79.98334,30.70036],[79.9799,30.70564],[79.97948,30.7093],[79.98519,30.70861],[79.99357,30.71676],[80.01852,30.72784],[80.02567,30.73434],[80.04425,30.7327],[80.05832,30.72796],[80.0804,30.72927],[80.08752,30.7278],[80.09468,30.72338],[80.10064,30.72508],[80.1019,30.72788],[80.10181,30.73049],[80.0956,30.74157],[80.09728,30.74417],[80.09665,30.74705],[80.08711,30.75717],[80.08631,30.76386],[80.08331,30.77012],[80.08439,30.77546],[80.09313,30.78392],[80.10011,30.78738],[80.08901,30.79408],[80.08499,30.80402],[80.07675,30.8155],[80.05747,30.82941],[80.05825,30.83967],[80.05322,30.84199],[80.04461,30.83562],[80.04203,30.83582],[80.02507,30.84809],[80.01747,30.85556],[80.01225,30.86354],[80.00375,30.86508],[79.99729,30.86909],[79.9925,30.87694],[79.96966,30.88245],[79.96455,30.88603],[79.96215,30.89002],[79.95369,30.88506],[79.94491,30.88616],[79.93564,30.88244],[79.93085,30.88133],[79.9291,30.88243],[79.9251,30.89318],[79.9135,30.90758],[79.91039,30.91507],[79.89026,30.91864],[79.88705,30.93172],[79.88864,30.93929],[79.88496,30.94218],[79.88224,30.95086],[79.88239,30.9554],[79.87583,30.96752],[79.86271,30.97536],[79.85616,30.97742],[79.83858,30.97396],[79.83554,30.97533],[79.82276,30.97339],[79.81637,30.97393],[79.80724,30.98177],[79.80277,30.97929],[79.79862,30.9797],[79.79542,30.98162],[79.79189,30.98836],[79.78086,30.98752],[79.77463,30.98889],[79.75301,31.00786],[79.7471,31.00304],[79.73803,30.98374],[79.73548,30.98154],[79.72669,30.98028],[79.71711,30.976],[79.708,30.97832],[79.70162,30.97308],[79.69796,30.9725],[79.6749,30.98349],[79.66499,30.98292],[79.6634,30.97934],[79.66487,30.96956],[79.6636,30.96653],[79.65849,30.96294],[79.65034,30.96155],[79.63327,30.95338],[79.61985,30.95129],[79.61412,30.94425],[79.60551,30.93982],[79.60346,30.93265],[79.60185,30.93348],[79.60167,30.93995],[79.5967,30.94476],[79.59014,30.94818],[79.58295,30.94968],[79.57176,30.94855],[79.56888,30.95006],[79.56454,30.95721],[79.55559,30.95732],[79.55255,30.96007],[79.54595,30.9712],[79.54034,30.97546],[79.54065,30.97987],[79.54702,30.98553],[79.54844,30.98953],[79.53812,30.99019],[79.5242,31.01445],[79.51903,31.02671],[79.50693,31.03208],[79.49161,31.03354],[79.46859,31.03347],[79.4456,31.02805],[79.43061,31.02862],[79.42476,31.03049],[79.42248,31.04842],[79.42569,31.06636],[79.42457,31.07107]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"470","area_level":"District","area_name":"Beed","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.4965,19.43315],[75.48865,19.44135],[75.48359,19.44193],[75.47921,19.4385],[75.4733,19.42392],[75.48301,19.42137],[75.48227,19.41857],[75.48821,19.41665],[75.48225,19.38423],[75.48613,19.38077],[75.49567,19.37833],[75.51403,19.38258],[75.51683,19.38482],[75.51712,19.38069],[75.53207,19.37692],[75.52769,19.35761],[75.51721,19.33082],[75.5354,19.32964],[75.54137,19.32759],[75.54301,19.32319],[75.54134,19.32338],[75.54086,19.31874],[75.53856,19.3173],[75.54049,19.31489],[75.54031,19.31188],[75.53843,19.31057],[75.53911,19.30828],[75.53776,19.30618],[75.53258,19.30403],[75.53007,19.29896],[75.52563,19.29824],[75.52013,19.2833],[75.51953,19.27751],[75.51553,19.27821],[75.51503,19.27561],[75.51026,19.27477],[75.5057,19.26817],[75.50366,19.26876],[75.5025,19.26675],[75.49948,19.26716],[75.49381,19.26497],[75.49281,19.26301],[75.48184,19.26164],[75.47643,19.25876],[75.47311,19.25923],[75.4743,19.25301],[75.4587,19.25023],[75.45557,19.24515],[75.45272,19.2325],[75.4499,19.2323],[75.44492,19.2194],[75.44037,19.21715],[75.4389,19.21985],[75.43552,19.2215],[75.4219,19.2215],[75.4209,19.21684],[75.41627,19.2151],[75.41409,19.20995],[75.40483,19.2046],[75.40144,19.19655],[75.40975,19.1884],[75.41955,19.18326],[75.42522,19.17532],[75.42536,19.17277],[75.44499,19.17218],[75.44932,19.16396],[75.45148,19.14833],[75.45403,19.146],[75.45366,19.14463],[75.45023,19.1438],[75.44959,19.14133],[75.4298,19.14118],[75.4233,19.13862],[75.43098,19.11782],[75.43652,19.11638],[75.43622,19.11784],[75.4437,19.12449],[75.45294,19.12741],[75.46366,19.12725],[75.46406,19.13015],[75.47961,19.12732],[75.48371,19.12793],[75.48238,19.11598],[75.48571,19.10793],[75.48517,19.10587],[75.47824,19.09898],[75.47319,19.0982],[75.46571,19.09049],[75.46035,19.08965],[75.45781,19.08567],[75.45403,19.08642],[75.44945,19.08324],[75.44717,19.08441],[75.44476,19.09318],[75.43769,19.0904],[75.42925,19.08954],[75.42136,19.09006],[75.41775,19.09241],[75.41321,19.08748],[75.41313,19.08149],[75.40592,19.08025],[75.39502,19.08125],[75.382,19.07792],[75.38045,19.08208],[75.37636,19.08263],[75.37523,19.08421],[75.36874,19.08174],[75.36523,19.08606],[75.36545,19.08987],[75.36803,19.09066],[75.38049,19.10308],[75.38592,19.11343],[75.38674,19.11847],[75.3895,19.11993],[75.39224,19.1266],[75.40443,19.12354],[75.40931,19.12888],[75.41054,19.13279],[75.40752,19.14101],[75.39425,19.14202],[75.39128,19.13706],[75.38261,19.13357],[75.38046,19.13432],[75.37596,19.12902],[75.37091,19.13099],[75.36556,19.12992],[75.36151,19.1329],[75.35874,19.12725],[75.35147,19.12699],[75.35215,19.14725],[75.3475,19.14884],[75.33979,19.1559],[75.33053,19.15288],[75.33114,19.13218],[75.33459,19.12837],[75.34969,19.12407],[75.35153,19.11364],[75.3608,19.10863],[75.36475,19.0987],[75.36289,19.09094],[75.36468,19.08165],[75.36173,19.07856],[75.35655,19.07802],[75.33719,19.08084],[75.32833,19.08608],[75.32271,19.09426],[75.30872,19.09678],[75.3069,19.09861],[75.30539,19.09865],[75.30355,19.09559],[75.30455,19.0921],[75.30037,19.09232],[75.29798,19.09057],[75.29497,19.08495],[75.28088,19.08498],[75.28057,19.08035],[75.29292,19.07617],[75.29155,19.06183],[75.28745,19.05281],[75.28318,19.03444],[75.2855,19.03339],[75.29416,19.03599],[75.2975,19.03351],[75.30665,19.03392],[75.31403,19.03194],[75.32791,19.03468],[75.32957,19.03183],[75.33433,19.03198],[75.33477,19.02932],[75.33901,19.02935],[75.33905,19.02744],[75.34356,19.02517],[75.34387,19.02245],[75.3409,18.99993],[75.34275,18.99436],[75.34063,18.99004],[75.33761,18.99082],[75.32966,18.98781],[75.32276,18.98275],[75.31577,18.98048],[75.28835,18.98176],[75.28585,18.98681],[75.27429,18.99194],[75.2739,18.99403],[75.26913,18.99756],[75.26735,19.00969],[75.26377,19.01309],[75.26469,19.018],[75.26228,19.01835],[75.26253,19.02151],[75.25614,19.02574],[75.26497,19.03001],[75.26695,19.03366],[75.26833,19.05348],[75.26104,19.06649],[75.26147,19.06995],[75.25328,19.06954],[75.23323,19.06147],[75.22449,19.06578],[75.22836,19.08119],[75.22597,19.09728],[75.22409,19.09808],[75.2237,19.1015],[75.21975,19.10064],[75.21999,19.11167],[75.21212,19.11022],[75.21287,19.10719],[75.21117,19.10443],[75.20818,19.10409],[75.20568,19.10148],[75.20252,19.10309],[75.202,19.09942],[75.19812,19.09787],[75.19862,19.09552],[75.19203,19.09736],[75.19175,19.09414],[75.18739,19.09256],[75.18988,19.08701],[75.19303,19.08627],[75.19352,19.07943],[75.19147,19.07285],[75.1951,19.07228],[75.19715,19.06699],[75.19515,19.06344],[75.19255,19.06233],[75.18612,19.05162],[75.19404,19.04978],[75.19864,19.04157],[75.20737,19.03614],[75.20981,19.02927],[75.20806,19.02061],[75.19774,19.01855],[75.18291,19.01167],[75.16898,19.01921],[75.16782,19.03581],[75.15838,19.03795],[75.15659,19.0363],[75.15339,19.04044],[75.14676,19.04206],[75.145,19.03972],[75.1421,19.04005],[75.14456,19.03607],[75.14269,19.03519],[75.1385,19.0373],[75.1346,19.03512],[75.13071,19.03931],[75.13032,19.03804],[75.12513,19.04009],[75.12108,19.03977],[75.11193,19.04344],[75.1091,19.04283],[75.11126,19.04046],[75.10504,19.04303],[75.09994,19.04239],[75.09299,19.04864],[75.07579,19.05217],[75.0708,19.05538],[75.06965,19.0597],[75.07299,19.06213],[75.07263,19.06503],[75.0749,19.06858],[75.08144,19.06589],[75.08211,19.06923],[75.08878,19.06723],[75.09197,19.0681],[75.08336,19.07134],[75.08398,19.07421],[75.0782,19.07726],[75.07844,19.07873],[75.08326,19.08185],[75.09736,19.07793],[75.09902,19.10196],[75.10078,19.10249],[75.0996,19.10493],[75.1022,19.10475],[75.10444,19.10889],[75.10757,19.10822],[75.11038,19.11223],[75.11137,19.11651],[75.10936,19.12486],[75.10385,19.12686],[75.10219,19.12342],[75.09832,19.12611],[75.09653,19.12431],[75.09053,19.12779],[75.08796,19.12067],[75.0847,19.12259],[75.06898,19.12135],[75.07569,19.11896],[75.07142,19.11644],[75.0734,19.11463],[75.06986,19.11207],[75.07138,19.10739],[75.07534,19.10957],[75.07375,19.10169],[75.0705,19.10414],[75.06787,19.10262],[75.06525,19.10738],[75.06544,19.10287],[75.06182,19.10443],[75.05855,19.09838],[75.05637,19.10034],[75.0538,19.0997],[75.05246,19.10567],[75.03637,19.10049],[75.03611,19.10293],[75.04395,19.10981],[75.03782,19.10628],[75.03451,19.10718],[75.03437,19.10848],[75.03003,19.10779],[75.02676,19.10257],[75.02438,19.10273],[75.02615,19.10452],[75.02482,19.10587],[75.02574,19.1107],[75.02355,19.11494],[75.02099,19.11287],[75.01947,19.10524],[75.0177,19.10493],[75.01771,19.10707],[75.00627,19.10549],[75.00132,19.11072],[74.99671,19.11248],[74.98953,19.10977],[74.98262,19.11257],[74.97824,19.11672],[74.98009,19.11196],[74.9738,19.11099],[74.96468,19.11594],[74.96223,19.11948],[74.95746,19.119],[74.95374,19.12321],[74.95377,19.12514],[74.94749,19.12932],[74.94527,19.13311],[74.94246,19.13324],[74.93401,19.1192],[74.93251,19.1089],[74.92653,19.09992],[74.92083,19.09475],[74.91848,19.08326],[74.91923,19.07206],[74.91621,19.06509],[74.91785,19.06008],[74.91441,19.03751],[74.91763,19.03518],[74.92745,19.04307],[74.92647,19.03969],[74.91979,19.03311],[74.92159,19.03108],[74.93914,19.0342],[74.94961,19.03283],[74.94828,19.00454],[74.95802,19.0026],[74.95939,18.99913],[74.95439,18.99009],[74.95495,18.98098],[74.95438,18.97735],[74.95215,18.97551],[74.95256,18.97151],[74.9446,18.96952],[74.93579,18.97631],[74.93114,18.97111],[74.92361,18.97142],[74.91816,18.96896],[74.91853,18.95949],[74.91359,18.9589],[74.90382,18.96423],[74.90425,18.9717],[74.89948,18.98007],[74.88377,18.98047],[74.87969,18.98343],[74.87137,18.98503],[74.86823,18.97985],[74.84442,18.97068],[74.83608,18.96994],[74.8248,18.99048],[74.81803,18.98202],[74.80823,18.97693],[74.80866,18.96989],[74.81153,18.96251],[74.81585,18.96035],[74.81925,18.96256],[74.82915,18.96222],[74.82988,18.95705],[74.8358,18.95344],[74.83642,18.94491],[74.83381,18.93916],[74.82631,18.93555],[74.82504,18.93226],[74.84311,18.92331],[74.84572,18.91898],[74.84583,18.91054],[74.85581,18.90442],[74.8606,18.89847],[74.86476,18.89761],[74.87466,18.91273],[74.87723,18.91246],[74.87915,18.91482],[74.88404,18.91411],[74.88487,18.91208],[74.8835,18.90877],[74.88569,18.90726],[74.88657,18.90376],[74.88429,18.90094],[74.88509,18.89147],[74.88369,18.88623],[74.88898,18.88515],[74.89618,18.87595],[74.89393,18.86662],[74.89529,18.85798],[74.89469,18.84672],[74.90822,18.84636],[74.91835,18.85321],[74.92726,18.84275],[74.92001,18.83283],[74.92006,18.83023],[74.92739,18.82603],[74.9432,18.82731],[74.95066,18.8244],[74.95397,18.82026],[74.95894,18.81982],[74.97371,18.82829],[74.97569,18.82326],[74.97145,18.81336],[74.98607,18.79757],[74.9878,18.79821],[74.99331,18.79568],[74.99754,18.79789],[74.99839,18.80589],[74.99953,18.80548],[74.99882,18.79801],[75.00079,18.79819],[75.00177,18.80478],[75.00905,18.80446],[75.00867,18.79363],[75.00373,18.78808],[75.00638,18.78214],[75.01128,18.77894],[75.01266,18.77517],[75.01777,18.77173],[75.02232,18.77314],[75.02641,18.76949],[75.03077,18.76951],[75.03965,18.76365],[75.03978,18.7582],[75.04347,18.75558],[75.04384,18.75173],[75.05295,18.74773],[75.05708,18.74079],[75.05693,18.73568],[75.06743,18.73134],[75.07245,18.72029],[75.07704,18.71437],[75.08256,18.71382],[75.0887,18.70825],[75.09673,18.70667],[75.1033,18.70243],[75.10467,18.69602],[75.11001,18.68962],[75.11914,18.68575],[75.12045,18.68306],[75.11753,18.68211],[75.11689,18.6799],[75.12327,18.6788],[75.13063,18.66986],[75.13821,18.66596],[75.1415,18.66129],[75.14179,18.65343],[75.15218,18.64773],[75.15617,18.64214],[75.15826,18.6433],[75.16118,18.65284],[75.164,18.66857],[75.16552,18.68616],[75.16318,18.68653],[75.16378,18.696],[75.17238,18.70654],[75.17453,18.70655],[75.17499,18.70901],[75.17573,18.71421],[75.17163,18.73648],[75.19239,18.73654],[75.20816,18.73878],[75.21373,18.73753],[75.2138,18.73299],[75.22277,18.72876],[75.25495,18.72021],[75.263,18.72675],[75.27695,18.73002],[75.28329,18.74141],[75.28161,18.74186],[75.28228,18.74409],[75.28601,18.74827],[75.29254,18.76403],[75.29116,18.76359],[75.29181,18.76582],[75.3003,18.77105],[75.30703,18.78208],[75.31817,18.79131],[75.32079,18.79729],[75.32746,18.80125],[75.33032,18.7979],[75.32963,18.79567],[75.33604,18.79285],[75.33854,18.78651],[75.34348,18.78403],[75.3424,18.78265],[75.34899,18.78409],[75.35007,18.78605],[75.35701,18.78677],[75.35983,18.78937],[75.36164,18.78797],[75.36051,18.78576],[75.3622,18.78502],[75.36532,18.78681],[75.36621,18.78541],[75.36486,18.78164],[75.36783,18.78096],[75.36808,18.77793],[75.36896,18.77864],[75.37113,18.77487],[75.37264,18.77768],[75.37544,18.77808],[75.37407,18.77609],[75.3766,18.77461],[75.37315,18.77342],[75.37274,18.77115],[75.37521,18.77022],[75.37602,18.76803],[75.37673,18.76978],[75.37971,18.76922],[75.37962,18.7706],[75.38194,18.77052],[75.38048,18.77393],[75.38643,18.77244],[75.38636,18.77975],[75.39008,18.79318],[75.39189,18.82008],[75.39945,18.83158],[75.40344,18.82738],[75.41486,18.82286],[75.42083,18.81824],[75.41981,18.81415],[75.43864,18.79892],[75.44213,18.78973],[75.44491,18.76538],[75.44712,18.7649],[75.44657,18.75596],[75.45056,18.75115],[75.456,18.74979],[75.46228,18.75203],[75.46216,18.75456],[75.46424,18.75144],[75.4687,18.75145],[75.46874,18.74759],[75.47561,18.74556],[75.48173,18.74034],[75.49106,18.73711],[75.49131,18.72883],[75.50738,18.72333],[75.51448,18.72452],[75.52669,18.73321],[75.52496,18.75264],[75.5416,18.74512],[75.55552,18.7366],[75.55224,18.72626],[75.55322,18.70804],[75.56229,18.70332],[75.57232,18.70392],[75.57314,18.70087],[75.57762,18.69749],[75.58652,18.69797],[75.60381,18.68881],[75.60612,18.68676],[75.61282,18.67258],[75.61231,18.67009],[75.6149,18.66477],[75.62209,18.66207],[75.62312,18.66009],[75.63295,18.65473],[75.63713,18.65442],[75.63978,18.65062],[75.64546,18.64832],[75.65678,18.64773],[75.66065,18.64556],[75.66657,18.65144],[75.66737,18.65332],[75.66386,18.664],[75.66429,18.67505],[75.66623,18.67538],[75.66651,18.68326],[75.66971,18.69126],[75.70172,18.68905],[75.70676,18.68335],[75.72968,18.67596],[75.7298,18.67407],[75.7316,18.67989],[75.74261,18.67977],[75.74318,18.68226],[75.74542,18.68013],[75.75304,18.67866],[75.75603,18.68056],[75.76612,18.67101],[75.77142,18.66915],[75.77326,18.67359],[75.7769,18.67297],[75.77715,18.67101],[75.77971,18.67091],[75.77863,18.66526],[75.7814,18.66437],[75.78808,18.65568],[75.7934,18.65423],[75.79781,18.6729],[75.80237,18.67276],[75.8068,18.67194],[75.80791,18.66869],[75.82074,18.66852],[75.82278,18.66261],[75.82853,18.66173],[75.82947,18.66392],[75.83497,18.65935],[75.84367,18.65891],[75.8479,18.65536],[75.85336,18.65957],[75.85748,18.65974],[75.85564,18.64938],[75.86367,18.65025],[75.87167,18.65382],[75.87349,18.65334],[75.87303,18.64825],[75.88247,18.64698],[75.90644,18.64921],[75.9208,18.64307],[75.92775,18.64337],[75.93895,18.64073],[75.94468,18.63476],[75.94633,18.6251],[75.94286,18.62038],[75.94371,18.60969],[75.94809,18.60506],[75.95691,18.60466],[75.96423,18.60986],[75.97289,18.61294],[75.97542,18.61174],[75.98346,18.61787],[75.99095,18.61893],[75.99398,18.6172],[75.99579,18.61379],[75.99664,18.60695],[75.98934,18.6029],[75.98304,18.59422],[75.98257,18.59083],[75.99374,18.58323],[76.00328,18.58359],[76.00786,18.5855],[76.00488,18.601],[76.00667,18.60168],[76.00565,18.60388],[76.00756,18.60403],[76.00734,18.6067],[76.01225,18.60777],[76.01251,18.60573],[76.02649,18.60312],[76.03244,18.60027],[76.03584,18.59235],[76.04353,18.59057],[76.04827,18.57708],[76.05737,18.5739],[76.07923,18.57629],[76.10168,18.58794],[76.11893,18.58392],[76.13476,18.58766],[76.14288,18.58334],[76.15182,18.58131],[76.15596,18.5781],[76.15772,18.56774],[76.15696,18.56014],[76.15774,18.55708],[76.16034,18.55495],[76.17048,18.561],[76.1662,18.57353],[76.16846,18.58465],[76.17741,18.5845],[76.19552,18.58058],[76.20122,18.58159],[76.20159,18.57682],[76.21142,18.57693],[76.21969,18.57456],[76.23328,18.57515],[76.24181,18.57215],[76.25467,18.5754],[76.2544,18.56381],[76.27351,18.55797],[76.2751,18.55791],[76.2785,18.57417],[76.2859,18.57366],[76.29087,18.57629],[76.30162,18.56817],[76.31237,18.56559],[76.32314,18.57029],[76.33048,18.56338],[76.33933,18.56057],[76.34615,18.56572],[76.34922,18.56537],[76.36018,18.55913],[76.36524,18.55287],[76.36786,18.5445],[76.37738,18.5422],[76.38293,18.5434],[76.39065,18.54227],[76.39328,18.55017],[76.38731,18.55101],[76.38497,18.56431],[76.38563,18.574],[76.38776,18.57365],[76.39203,18.59607],[76.39821,18.59495],[76.40299,18.59659],[76.40369,18.60185],[76.40681,18.60204],[76.40722,18.59996],[76.41085,18.60111],[76.41154,18.60821],[76.42015,18.60822],[76.42917,18.61282],[76.42913,18.61698],[76.43663,18.61671],[76.45479,18.62155],[76.46547,18.6351],[76.47159,18.63405],[76.47708,18.62347],[76.47831,18.61548],[76.4894,18.6113],[76.4913,18.60693],[76.49962,18.60403],[76.50335,18.60877],[76.52048,18.62172],[76.52123,18.6249],[76.52481,18.62405],[76.52982,18.64892],[76.54103,18.65104],[76.54242,18.64463],[76.54558,18.64645],[76.5501,18.6442],[76.54588,18.63606],[76.54871,18.63495],[76.55025,18.63847],[76.55346,18.63657],[76.55586,18.64044],[76.56118,18.63869],[76.5592,18.62942],[76.57835,18.61948],[76.58036,18.62516],[76.58215,18.6248],[76.58265,18.63521],[76.58688,18.65003],[76.59099,18.65013],[76.59155,18.6528],[76.59302,18.65274],[76.59398,18.65819],[76.59286,18.6681],[76.59488,18.67251],[76.60433,18.67242],[76.6148,18.67446],[76.62558,18.67363],[76.6273,18.67568],[76.63501,18.67435],[76.63566,18.6678],[76.64082,18.66634],[76.64115,18.66287],[76.6377,18.65822],[76.63629,18.64837],[76.64742,18.64571],[76.65323,18.64252],[76.65384,18.63594],[76.65725,18.63339],[76.66722,18.63201],[76.67871,18.63448],[76.68131,18.65003],[76.66188,18.65546],[76.66161,18.65783],[76.6738,18.67404],[76.68208,18.69199],[76.69774,18.69147],[76.71328,18.69999],[76.72712,18.69543],[76.7282,18.69812],[76.73063,18.69815],[76.7309,18.70011],[76.73378,18.7001],[76.73256,18.72208],[76.72925,18.7279],[76.72754,18.73544],[76.72466,18.73654],[76.72552,18.74125],[76.72331,18.75046],[76.70486,18.75416],[76.69916,18.75741],[76.69778,18.75623],[76.69793,18.75949],[76.69634,18.75817],[76.68303,18.75932],[76.68019,18.75207],[76.67437,18.75634],[76.67032,18.76325],[76.6746,18.76638],[76.6807,18.77444],[76.68178,18.77928],[76.68071,18.78184],[76.67355,18.78692],[76.67259,18.78953],[76.67416,18.79476],[76.66884,18.80397],[76.6712,18.81351],[76.66914,18.81538],[76.66712,18.81496],[76.66381,18.82043],[76.65738,18.81934],[76.65069,18.82247],[76.65,18.82131],[76.64287,18.82191],[76.64396,18.82542],[76.64248,18.83293],[76.63909,18.83396],[76.63819,18.83902],[76.64218,18.84796],[76.6338,18.84559],[76.62845,18.84679],[76.62033,18.8564],[76.61922,18.86222],[76.62072,18.86793],[76.6107,18.86905],[76.58647,18.8681],[76.58528,18.87194],[76.58183,18.87248],[76.58079,18.87846],[76.58389,18.8902],[76.58461,18.90413],[76.58239,18.93089],[76.58542,18.93372],[76.58301,18.93568],[76.58472,18.93926],[76.58319,18.93934],[76.58322,18.94278],[76.56355,18.9488],[76.53686,18.94903],[76.53259,18.92396],[76.53367,18.91854],[76.53563,18.9179],[76.52053,18.91822],[76.51288,18.92009],[76.5102,18.92444],[76.5058,18.9331],[76.5026,18.94938],[76.47799,18.95334],[76.47296,18.96344],[76.47736,18.9753],[76.46936,18.97647],[76.46865,18.98331],[76.47137,18.98805],[76.47766,18.98848],[76.47975,19.00117],[76.47251,19.00178],[76.45969,19.00733],[76.45995,19.00985],[76.45603,19.00832],[76.45473,19.01211],[76.45536,19.01987],[76.45386,19.01996],[76.45338,19.02461],[76.45224,19.02504],[76.4515,19.02294],[76.44831,19.02449],[76.44916,19.03472],[76.44214,19.03729],[76.441,19.04061],[76.4383,19.04237],[76.43821,19.04876],[76.44381,19.04772],[76.44865,19.05019],[76.45087,19.04901],[76.45169,19.05086],[76.44201,19.05924],[76.43688,19.06889],[76.43295,19.07286],[76.433,19.07652],[76.4374,19.08771],[76.43521,19.09305],[76.42981,19.09785],[76.42671,19.09854],[76.4233,19.0972],[76.41993,19.0915],[76.4116,19.09134],[76.40526,19.0963],[76.40141,19.10355],[76.39257,19.11353],[76.38884,19.12518],[76.3787,19.1308],[76.3692,19.12759],[76.36294,19.11985],[76.35883,19.1083],[76.35526,19.10405],[76.34848,19.09979],[76.33596,19.09919],[76.32774,19.10246],[76.32204,19.10732],[76.31898,19.11559],[76.32892,19.12169],[76.32932,19.12912],[76.33285,19.13645],[76.35253,19.14492],[76.35602,19.14743],[76.36063,19.15599],[76.36065,19.15964],[76.35425,19.1672],[76.35759,19.18259],[76.3507,19.19383],[76.35138,19.1964],[76.35974,19.20441],[76.36344,19.21572],[76.36372,19.23391],[76.35707,19.2423],[76.33995,19.25184],[76.33155,19.25028],[76.32094,19.25422],[76.30857,19.26429],[76.30627,19.26504],[76.29768,19.26275],[76.28456,19.2659],[76.27788,19.26402],[76.27825,19.26308],[76.25946,19.25371],[76.2551,19.24317],[76.25012,19.24119],[76.24543,19.24194],[76.24053,19.24545],[76.22465,19.24308],[76.22201,19.2448],[76.22195,19.24659],[76.22612,19.25441],[76.22539,19.25748],[76.22316,19.2594],[76.21352,19.26122],[76.21339,19.2695],[76.21007,19.27428],[76.19531,19.2859],[76.17963,19.28841],[76.17119,19.28357],[76.16268,19.28343],[76.16029,19.28582],[76.16036,19.29539],[76.15174,19.29579],[76.14401,19.29125],[76.1395,19.29117],[76.13361,19.29318],[76.12895,19.3021],[76.12568,19.30335],[76.12161,19.30252],[76.1155,19.29621],[76.11347,19.29619],[76.11118,19.30355],[76.10892,19.30606],[76.1027,19.30807],[76.09839,19.30667],[76.09634,19.30426],[76.09084,19.28501],[76.08793,19.28094],[76.07107,19.27895],[76.05623,19.28499],[76.03967,19.28364],[76.03226,19.28814],[76.02512,19.29944],[76.02515,19.31463],[76.02093,19.32946],[76.02369,19.33325],[76.0202,19.33764],[76.0149,19.3379],[76.01002,19.33575],[76.00342,19.32687],[75.97684,19.30526],[75.96042,19.30173],[75.94285,19.29189],[75.93516,19.29338],[75.9229,19.29949],[75.91822,19.30344],[75.90649,19.31833],[75.90343,19.3379],[75.90522,19.34698],[75.90987,19.35789],[75.91551,19.36143],[75.91763,19.36543],[75.91792,19.37314],[75.92503,19.3827],[75.91866,19.38858],[75.91203,19.39217],[75.90375,19.3906],[75.89314,19.37957],[75.89013,19.37872],[75.87993,19.38376],[75.87314,19.38329],[75.84988,19.37307],[75.83529,19.37182],[75.78897,19.40018],[75.75781,19.38933],[75.7562,19.38458],[75.7614,19.3758],[75.75335,19.35845],[75.75093,19.35608],[75.74119,19.35854],[75.7367,19.3572],[75.72455,19.35753],[75.71424,19.35422],[75.69985,19.35902],[75.68447,19.35512],[75.67966,19.35565],[75.67552,19.35826],[75.67532,19.36536],[75.67244,19.3676],[75.65574,19.36716],[75.65076,19.36857],[75.64011,19.38145],[75.62573,19.37337],[75.61982,19.37467],[75.60613,19.38354],[75.59932,19.38575],[75.59522,19.38574],[75.59111,19.38006],[75.58671,19.37762],[75.57377,19.38181],[75.56283,19.38247],[75.54769,19.38809],[75.53636,19.39694],[75.5195,19.40239],[75.51614,19.40797],[75.51768,19.41565],[75.5147,19.4205],[75.50599,19.42646],[75.50762,19.42877],[75.50702,19.43189],[75.50042,19.43162],[75.4965,19.43315]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"471","area_level":"District","area_name":"Bhandara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.76848,21.59242],[79.7543,21.59549],[79.74186,21.603],[79.73486,21.60377],[79.72404,21.59521],[79.71816,21.59306],[79.71201,21.59187],[79.69907,21.5929],[79.69501,21.58539],[79.68955,21.58096],[79.67543,21.5823],[79.66094,21.5769],[79.65837,21.56375],[79.65527,21.55811],[79.65205,21.55598],[79.63959,21.55297],[79.62008,21.55757],[79.59997,21.54948],[79.59164,21.54788],[79.58138,21.5413],[79.57598,21.542],[79.56551,21.54763],[79.54019,21.54272],[79.53656,21.53581],[79.53167,21.53988],[79.52467,21.53953],[79.51962,21.53587],[79.51389,21.53423],[79.5082,21.52891],[79.49983,21.51679],[79.49591,21.51452],[79.49235,21.50832],[79.48287,21.50144],[79.48029,21.50148],[79.48147,21.49924],[79.47849,21.4932],[79.47247,21.48388],[79.46911,21.4836],[79.45986,21.46787],[79.45842,21.46798],[79.4576,21.46249],[79.45253,21.45903],[79.44907,21.45938],[79.44832,21.45676],[79.45008,21.45169],[79.44813,21.44384],[79.44841,21.43465],[79.45486,21.431],[79.45684,21.42803],[79.46691,21.42462],[79.47475,21.42882],[79.48024,21.42885],[79.48204,21.42717],[79.48556,21.41919],[79.48525,21.41257],[79.48817,21.40313],[79.48376,21.39884],[79.49953,21.39846],[79.50219,21.39122],[79.50876,21.38297],[79.50877,21.3805],[79.51083,21.38024],[79.51346,21.37673],[79.51298,21.37468],[79.5172,21.37132],[79.51745,21.36626],[79.5227,21.36425],[79.52472,21.3599],[79.52406,21.35354],[79.52645,21.34905],[79.53368,21.34877],[79.53401,21.34582],[79.53564,21.34648],[79.53514,21.34483],[79.53704,21.3443],[79.53382,21.33983],[79.53921,21.34096],[79.53891,21.33765],[79.54133,21.33722],[79.54426,21.33175],[79.54875,21.32907],[79.55367,21.33022],[79.55518,21.32856],[79.55368,21.32633],[79.55649,21.32428],[79.5549,21.32321],[79.55516,21.31796],[79.55123,21.31765],[79.55394,21.31487],[79.55234,21.31309],[79.55372,21.31009],[79.55668,21.30853],[79.55355,21.30573],[79.55749,21.30425],[79.55619,21.30166],[79.55987,21.30307],[79.56083,21.29735],[79.56422,21.29957],[79.56885,21.29353],[79.56815,21.29158],[79.57068,21.29197],[79.57193,21.28376],[79.57505,21.28347],[79.57361,21.28028],[79.57612,21.27636],[79.57375,21.27161],[79.56983,21.27185],[79.56737,21.26228],[79.56886,21.24762],[79.56327,21.24594],[79.56053,21.24139],[79.55951,21.23327],[79.5632,21.23117],[79.56315,21.22693],[79.56003,21.2251],[79.55879,21.21861],[79.55529,21.213],[79.54971,21.20837],[79.54944,21.20658],[79.55695,21.203],[79.55839,21.19852],[79.55698,21.19768],[79.55823,21.19647],[79.55734,21.19192],[79.56041,21.1892],[79.55946,21.18562],[79.55601,21.18338],[79.55088,21.17318],[79.55093,21.17129],[79.55359,21.16939],[79.55772,21.16965],[79.55736,21.16739],[79.55938,21.16607],[79.55771,21.16409],[79.56003,21.16132],[79.55638,21.15974],[79.55802,21.1588],[79.5571,21.15612],[79.54954,21.15972],[79.54662,21.15895],[79.54513,21.16008],[79.5447,21.15797],[79.54372,21.15874],[79.54172,21.15668],[79.54096,21.15897],[79.53207,21.15913],[79.52823,21.16275],[79.52265,21.16411],[79.525,21.171],[79.52728,21.17077],[79.5296,21.17285],[79.53034,21.17454],[79.52894,21.17637],[79.52555,21.1768],[79.52476,21.17829],[79.52283,21.17759],[79.52112,21.17952],[79.51652,21.17526],[79.51593,21.17748],[79.51503,21.17605],[79.513,21.17635],[79.5075,21.18284],[79.49828,21.18369],[79.49584,21.17907],[79.49703,21.17591],[79.49978,21.17518],[79.49945,21.16818],[79.50634,21.16532],[79.50807,21.16293],[79.50406,21.14709],[79.4974,21.14262],[79.49372,21.14277],[79.49372,21.13777],[79.50117,21.13707],[79.50058,21.1344],[79.5055,21.13553],[79.50993,21.13269],[79.50897,21.12659],[79.51023,21.12399],[79.51407,21.12509],[79.51717,21.12118],[79.52475,21.11988],[79.51645,21.10473],[79.52509,21.10248],[79.52852,21.09771],[79.53215,21.09576],[79.53075,21.09362],[79.5196,21.08886],[79.52642,21.07892],[79.53329,21.07838],[79.53922,21.08147],[79.54267,21.08563],[79.55069,21.08868],[79.55365,21.08733],[79.56145,21.07776],[79.56478,21.07095],[79.57207,21.06609],[79.57906,21.06671],[79.58481,21.07572],[79.5876,21.07758],[79.59234,21.07681],[79.59664,21.07394],[79.61333,21.03183],[79.6217,21.01662],[79.63173,21.00354],[79.63708,20.99036],[79.65123,20.97836],[79.65485,20.97223],[79.65697,20.96277],[79.65409,20.94395],[79.64628,20.92475],[79.6329,20.91176],[79.62035,20.9094],[79.61235,20.90362],[79.61032,20.89704],[79.61076,20.88582],[79.60798,20.87545],[79.613,20.86601],[79.6086,20.86411],[79.60769,20.86653],[79.60335,20.86709],[79.60275,20.86508],[79.59984,20.8636],[79.59824,20.86549],[79.59805,20.86419],[79.59598,20.86417],[79.58845,20.85076],[79.57964,20.84336],[79.56523,20.84541],[79.56507,20.85079],[79.56053,20.85391],[79.5581,20.85346],[79.55636,20.85615],[79.54946,20.84971],[79.53727,20.8522],[79.53962,20.84795],[79.53887,20.84358],[79.54717,20.8344],[79.54657,20.83269],[79.548,20.83155],[79.54665,20.82898],[79.54851,20.8266],[79.55177,20.82619],[79.55178,20.82126],[79.55038,20.82046],[79.55364,20.81743],[79.55373,20.81449],[79.5561,20.81378],[79.55621,20.81005],[79.55947,20.80809],[79.55966,20.80542],[79.55804,20.80455],[79.55957,20.80266],[79.55747,20.80068],[79.5517,20.79944],[79.54982,20.79478],[79.54465,20.79125],[79.54607,20.78575],[79.54132,20.78193],[79.53628,20.78096],[79.53538,20.77729],[79.53151,20.77483],[79.5366,20.76473],[79.53481,20.76282],[79.53486,20.75927],[79.53136,20.75664],[79.53186,20.74756],[79.53011,20.7413],[79.52865,20.74065],[79.52935,20.73652],[79.52275,20.73184],[79.5215,20.72805],[79.52279,20.7265],[79.51943,20.72141],[79.51798,20.71421],[79.52713,20.71267],[79.53131,20.70992],[79.53079,20.70821],[79.53204,20.70898],[79.5359,20.70547],[79.55214,20.70714],[79.55908,20.70572],[79.56554,20.7075],[79.56697,20.6971],[79.56999,20.69815],[79.58154,20.69588],[79.58848,20.69155],[79.60091,20.69138],[79.6082,20.69647],[79.61354,20.69223],[79.61965,20.67622],[79.64529,20.67334],[79.65474,20.66804],[79.65902,20.66751],[79.66168,20.66481],[79.6615,20.65621],[79.66313,20.6542],[79.67037,20.65031],[79.6746,20.65136],[79.68078,20.64999],[79.69089,20.64164],[79.69327,20.6414],[79.69959,20.64496],[79.7002,20.6486],[79.69767,20.65104],[79.69831,20.65708],[79.69247,20.6672],[79.6931,20.67328],[79.69884,20.67508],[79.70994,20.68453],[79.71077,20.6871],[79.73388,20.68426],[79.75113,20.68814],[79.75377,20.69381],[79.75472,20.70097],[79.75897,20.70752],[79.75922,20.71068],[79.75598,20.71097],[79.75466,20.71355],[79.7531,20.71347],[79.75822,20.73488],[79.77028,20.73233],[79.79147,20.71883],[79.79367,20.70679],[79.80073,20.69927],[79.83601,20.68315],[79.85281,20.68108],[79.86987,20.68754],[79.88798,20.6887],[79.8953,20.68618],[79.90573,20.67691],[79.91503,20.67513],[79.93108,20.66848],[79.93357,20.67166],[79.93473,20.67853],[79.94696,20.68202],[79.95056,20.68637],[79.96476,20.69424],[79.97015,20.70624],[79.97122,20.71126],[79.96926,20.71532],[79.96156,20.71671],[79.95473,20.72016],[79.94757,20.71796],[79.94429,20.72096],[79.94707,20.72308],[79.94713,20.72911],[79.95282,20.72817],[79.95473,20.73008],[79.95615,20.72697],[79.958,20.73035],[79.95612,20.73137],[79.96252,20.73792],[79.96767,20.7369],[79.97143,20.74507],[79.96053,20.75063],[79.96052,20.75209],[79.95669,20.75277],[79.95535,20.76597],[79.9797,20.77303],[79.96717,20.78314],[79.95967,20.78341],[79.95345,20.77916],[79.94729,20.77994],[79.94959,20.78872],[79.9417,20.78839],[79.94054,20.80137],[79.94459,20.80447],[79.94755,20.80401],[79.95366,20.8066],[79.95663,20.80896],[79.9576,20.81343],[79.95914,20.81293],[79.95113,20.82612],[79.9588,20.82653],[79.96583,20.83185],[79.96747,20.83104],[79.96749,20.82573],[79.97193,20.82433],[79.97367,20.82657],[79.98183,20.82535],[79.98783,20.82697],[79.99293,20.83391],[79.99917,20.85048],[79.98751,20.8551],[79.98621,20.85992],[79.9841,20.86268],[79.98257,20.86211],[79.97993,20.85528],[79.98292,20.8552],[79.98363,20.85022],[79.98638,20.84811],[79.98429,20.84207],[79.97977,20.83595],[79.97435,20.83993],[79.97007,20.85542],[79.96548,20.85488],[79.97042,20.87435],[79.96968,20.88085],[79.96448,20.8809],[79.96466,20.88729],[79.97502,20.88644],[79.97721,20.89014],[79.97451,20.89238],[79.97151,20.89123],[79.97278,20.90002],[79.97012,20.90991],[79.96748,20.91378],[79.96309,20.91456],[79.96182,20.91736],[79.96365,20.932],[79.96908,20.93447],[79.96896,20.93997],[79.95433,20.93892],[79.95282,20.94086],[79.95339,20.94394],[79.95912,20.94522],[79.95704,20.94811],[79.95782,20.95026],[79.96431,20.95359],[79.97098,20.95361],[79.97536,20.94891],[79.977,20.94939],[79.97671,20.94714],[79.98122,20.94785],[79.98371,20.95187],[79.98584,20.95081],[79.9862,20.95281],[79.99142,20.9525],[79.99384,20.95069],[79.99553,20.95214],[79.99673,20.94978],[80.00216,20.94862],[80.00853,20.95412],[80.01308,20.95267],[80.01595,20.95557],[80.03242,20.95761],[80.03453,20.957],[80.0335,20.94986],[80.03037,20.94518],[80.03568,20.94771],[80.04549,20.95714],[80.03769,20.95868],[80.03718,20.96504],[80.05305,20.95324],[80.06207,20.94894],[80.0579,20.95825],[80.07093,20.95656],[80.07195,20.96393],[80.07072,20.96371],[80.07078,20.96537],[80.07482,20.96521],[80.08192,20.98241],[80.08239,20.98678],[80.07624,20.98828],[80.07637,20.98967],[80.08211,20.98947],[80.08188,20.9873],[80.08394,20.98667],[80.09346,20.99192],[80.10211,20.99051],[80.09993,20.99271],[80.10059,20.99803],[80.09871,20.99802],[80.09893,21.00041],[80.09666,21.00365],[80.09746,21.00531],[80.09395,21.00787],[80.09407,21.0105],[80.09784,21.01274],[80.0972,21.01677],[80.09905,21.01919],[80.09802,21.02668],[80.09454,21.02742],[80.09587,21.03284],[80.09322,21.03404],[80.088,21.03324],[80.08346,21.03535],[80.08051,21.03373],[80.08085,21.0312],[80.0783,21.0312],[80.07762,21.02773],[80.07466,21.0293],[80.0667,21.02916],[80.06604,21.0319],[80.06453,21.03013],[80.06304,21.03071],[80.07648,21.03875],[80.07995,21.04645],[80.08011,21.0511],[80.07507,21.05493],[80.07539,21.05766],[80.06881,21.05993],[80.07903,21.06244],[80.08428,21.0737],[80.08418,21.07564],[80.0697,21.08159],[80.07654,21.09345],[80.07537,21.09842],[80.06852,21.1001],[80.06101,21.09918],[80.06217,21.10217],[80.0675,21.10682],[80.07013,21.11314],[80.08212,21.1186],[80.08146,21.12052],[80.07259,21.11992],[80.07165,21.12647],[80.07398,21.12728],[80.07355,21.13488],[80.07849,21.13649],[80.08052,21.14775],[80.07416,21.15518],[80.07208,21.15557],[80.07151,21.16417],[80.06688,21.17269],[80.07062,21.17459],[80.07112,21.17875],[80.06906,21.17864],[80.07027,21.1805],[80.06898,21.18296],[80.07288,21.18698],[80.07215,21.18851],[80.06896,21.18885],[80.07004,21.18985],[80.068,21.19108],[80.06875,21.19595],[80.05468,21.20007],[80.05083,21.20247],[80.05015,21.20652],[80.04398,21.20984],[80.03661,21.21013],[80.03261,21.21353],[80.02476,21.21281],[80.02425,21.21581],[80.02653,21.22066],[80.02312,21.22865],[80.011,21.21993],[80.00278,21.21813],[79.99981,21.22237],[79.99432,21.22615],[79.98975,21.23385],[79.98193,21.23459],[79.97353,21.23256],[79.96605,21.23273],[79.96155,21.23688],[79.95583,21.23807],[79.95164,21.24411],[79.93899,21.25494],[79.92068,21.25575],[79.91049,21.2502],[79.90593,21.24472],[79.90262,21.25107],[79.89073,21.25255],[79.88675,21.25053],[79.88643,21.25327],[79.88954,21.25454],[79.88873,21.25593],[79.87414,21.24995],[79.86734,21.24985],[79.86323,21.24458],[79.86066,21.24554],[79.85971,21.24776],[79.85572,21.24485],[79.84518,21.25221],[79.84011,21.25384],[79.84035,21.2558],[79.84102,21.25689],[79.85335,21.25498],[79.85367,21.25161],[79.85971,21.2522],[79.86118,21.251],[79.86393,21.25186],[79.86328,21.25818],[79.85934,21.26156],[79.84925,21.25917],[79.8313,21.26341],[79.82888,21.27311],[79.82616,21.27312],[79.82597,21.27716],[79.82695,21.28092],[79.83782,21.2849],[79.83403,21.28718],[79.83613,21.28919],[79.83316,21.29224],[79.83123,21.29353],[79.82909,21.29233],[79.82837,21.30039],[79.8306,21.30007],[79.83134,21.30279],[79.83302,21.3028],[79.83363,21.30954],[79.83302,21.31057],[79.83223,21.30887],[79.83061,21.30951],[79.83154,21.31171],[79.82855,21.31296],[79.82878,21.31568],[79.82579,21.31956],[79.81296,21.32127],[79.81486,21.33527],[79.81157,21.33599],[79.8107,21.33892],[79.81322,21.35583],[79.81102,21.35498],[79.81037,21.35765],[79.8078,21.35697],[79.80296,21.35904],[79.80004,21.3576],[79.79612,21.37447],[79.80272,21.38322],[79.82128,21.39142],[79.84786,21.41173],[79.87949,21.42519],[79.8811,21.42875],[79.87952,21.43852],[79.88951,21.45145],[79.89118,21.45691],[79.91727,21.4799],[79.9253,21.49087],[79.92811,21.49694],[79.92641,21.51266],[79.92122,21.52233],[79.9178,21.52441],[79.9097,21.52277],[79.897,21.52438],[79.89124,21.51819],[79.88224,21.52622],[79.87319,21.52954],[79.86313,21.5308],[79.8507,21.54082],[79.82856,21.54887],[79.82151,21.56154],[79.79207,21.58659],[79.76848,21.59242]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"472","area_level":"District","area_name":"Buldhana","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.7203,21.28851],[76.71789,21.28968],[76.71781,21.2856],[76.71196,21.28447],[76.69637,21.28535],[76.68572,21.2887],[76.67705,21.28306],[76.66268,21.28069],[76.66164,21.24071],[76.64968,21.24468],[76.64183,21.23713],[76.63481,21.2191],[76.63427,21.21368],[76.63722,21.20271],[76.62349,21.18504],[76.61388,21.19322],[76.60603,21.19034],[76.59955,21.19075],[76.56585,21.19947],[76.56069,21.19862],[76.55177,21.19207],[76.53578,21.18623],[76.53026,21.18193],[76.51102,21.18979],[76.50824,21.19305],[76.5072,21.18872],[76.50291,21.18746],[76.50099,21.18933],[76.50208,21.19349],[76.49878,21.19375],[76.49812,21.1913],[76.49358,21.19396],[76.49059,21.19215],[76.48594,21.18576],[76.48066,21.18216],[76.47873,21.14739],[76.46655,21.14266],[76.46823,21.13835],[76.47439,21.13698],[76.46945,21.13366],[76.45814,21.13328],[76.45642,21.12501],[76.45176,21.12125],[76.45537,21.11509],[76.45609,21.1084],[76.44105,21.1062],[76.43783,21.10047],[76.43017,21.10241],[76.4107,21.10244],[76.41262,21.09773],[76.41319,21.08842],[76.40794,21.08941],[76.40422,21.08744],[76.39184,21.08619],[76.38515,21.08194],[76.38854,21.05395],[76.39866,21.03313],[76.39625,21.03086],[76.39618,21.02394],[76.38794,21.015],[76.39009,21.01507],[76.3877,21.0035],[76.38188,20.98943],[76.38038,20.97702],[76.36837,20.97917],[76.36672,20.97814],[76.36617,20.97392],[76.35856,20.96874],[76.35432,20.96203],[76.35117,20.9614],[76.35221,20.95687],[76.35015,20.9552],[76.34599,20.95667],[76.34551,20.95141],[76.34314,20.95269],[76.33743,20.95163],[76.33247,20.95259],[76.31888,20.95097],[76.29911,20.9577],[76.27934,20.9574],[76.27768,20.95955],[76.27826,20.96539],[76.27707,20.96786],[76.27178,20.97176],[76.26619,20.98015],[76.26022,20.98217],[76.25164,20.98816],[76.23841,20.99036],[76.2359,20.99198],[76.22914,21.0032],[76.22378,21.00621],[76.21427,21.00808],[76.21108,21.00659],[76.20001,21.01129],[76.19506,21.01492],[76.19083,21.02097],[76.16917,21.029],[76.16483,21.03641],[76.16366,21.02767],[76.16162,21.02903],[76.16003,21.02757],[76.15985,21.02486],[76.16352,21.02425],[76.16462,21.02258],[76.16324,21.01825],[76.15978,21.0144],[76.15824,21.00279],[76.15378,21.00192],[76.14856,20.9981],[76.14153,20.9895],[76.14219,20.98804],[76.1327,20.98236],[76.13099,20.97933],[76.1286,20.97967],[76.12223,20.9754],[76.11839,20.97764],[76.11278,20.9625],[76.11167,20.95081],[76.10076,20.94564],[76.08981,20.94379],[76.08971,20.93944],[76.08834,20.9396],[76.08658,20.93561],[76.08653,20.92769],[76.07998,20.92819],[76.07784,20.90865],[76.10081,20.90157],[76.10291,20.89615],[76.10653,20.89244],[76.10944,20.89332],[76.11069,20.89093],[76.11355,20.89274],[76.11265,20.88667],[76.10987,20.88167],[76.10604,20.88042],[76.10704,20.87864],[76.10456,20.87619],[76.09893,20.87523],[76.09428,20.86757],[76.0906,20.86625],[76.09173,20.86363],[76.08503,20.86183],[76.08604,20.86075],[76.0836,20.85984],[76.08493,20.85816],[76.08342,20.8553],[76.08072,20.8545],[76.08182,20.85328],[76.08097,20.85067],[76.07699,20.84576],[76.07532,20.84498],[76.07377,20.84685],[76.0739,20.83836],[76.07116,20.83359],[76.07355,20.83242],[76.06534,20.83054],[76.06157,20.8251],[76.05627,20.82538],[76.05399,20.82335],[76.05595,20.82193],[76.05328,20.81693],[76.04865,20.81586],[76.0488,20.80925],[76.05488,20.80529],[76.05576,20.80244],[76.05225,20.79979],[76.05078,20.7951],[76.04902,20.79409],[76.05043,20.79003],[76.04769,20.78865],[76.04505,20.78449],[76.01262,20.78486],[76.01066,20.77983],[75.9952,20.778],[75.99369,20.76389],[75.98533,20.76099],[75.98441,20.75259],[75.99673,20.74072],[76.00154,20.74279],[76.00738,20.74148],[76.00716,20.74019],[76.01177,20.73731],[76.01196,20.73127],[76.01578,20.73017],[76.01641,20.72292],[76.01396,20.71901],[76.00609,20.71515],[75.99756,20.71378],[75.99774,20.7072],[75.99425,20.69717],[75.99757,20.69288],[75.99627,20.68934],[76.0017,20.68616],[75.99958,20.68417],[76.00155,20.67778],[76.0005,20.67424],[75.99806,20.67309],[75.99767,20.66943],[75.99467,20.66691],[75.995,20.66296],[75.99765,20.66141],[75.99852,20.65768],[76.00406,20.65623],[76.0046,20.65121],[76.00683,20.64898],[76.00656,20.64454],[76.01063,20.64261],[76.01717,20.64271],[76.0184,20.64599],[76.02181,20.64555],[76.02421,20.63912],[76.03212,20.6367],[76.03043,20.62336],[76.0401,20.60628],[76.03667,20.58754],[76.03847,20.58687],[76.04285,20.57911],[76.03649,20.57182],[76.0379,20.55841],[76.03629,20.55475],[76.03013,20.55557],[76.01581,20.55092],[76.01807,20.53022],[76.00984,20.53306],[76.01039,20.53673],[76.00867,20.53878],[76.00616,20.53319],[76.00046,20.52951],[75.99725,20.53052],[75.99668,20.5342],[75.99223,20.53568],[75.99088,20.5311],[75.98483,20.53145],[75.98121,20.52965],[75.97807,20.52979],[75.97622,20.53275],[75.97267,20.53182],[75.96955,20.5231],[75.96002,20.52601],[75.95646,20.52212],[75.94929,20.51861],[75.9481,20.50991],[75.9409,20.50215],[75.94119,20.49195],[75.94566,20.48543],[75.94533,20.48329],[75.94837,20.47825],[75.94866,20.47247],[75.95487,20.47302],[75.95243,20.46529],[75.95703,20.46454],[75.95512,20.45104],[75.94494,20.44313],[75.94299,20.43107],[75.94032,20.43138],[75.94143,20.4248],[75.94387,20.42324],[75.94388,20.41497],[75.94753,20.41302],[75.94965,20.39326],[75.95259,20.38704],[75.96213,20.38292],[75.96683,20.37295],[75.96621,20.37094],[75.95961,20.37186],[75.95781,20.36556],[75.94978,20.36854],[75.94164,20.36891],[75.94136,20.36416],[75.93979,20.3627],[75.94127,20.36205],[75.94197,20.35835],[75.94068,20.34214],[75.93388,20.33877],[75.92885,20.32576],[75.92311,20.32063],[75.92617,20.30769],[75.92887,20.30221],[75.94943,20.29853],[75.95171,20.3023],[75.96461,20.31148],[75.96702,20.31599],[75.97001,20.31583],[75.97641,20.31443],[75.97525,20.30775],[75.99119,20.30871],[75.99255,20.3108],[76.00438,20.30643],[76.00124,20.29078],[76.02002,20.28825],[76.02837,20.28906],[76.03208,20.30825],[76.03835,20.32259],[76.04568,20.33245],[76.04683,20.33712],[76.05226,20.34221],[76.06138,20.34316],[76.06919,20.3491],[76.07146,20.34904],[76.07608,20.3581],[76.08577,20.36524],[76.08665,20.3597],[76.0919,20.35951],[76.09303,20.35808],[76.0923,20.35411],[76.08974,20.35157],[76.09426,20.34723],[76.09654,20.34738],[76.09971,20.35035],[76.09866,20.3544],[76.10821,20.35401],[76.10822,20.3504],[76.11472,20.34603],[76.12104,20.34662],[76.12096,20.34192],[76.12613,20.34493],[76.12801,20.33885],[76.12374,20.3331],[76.12472,20.32496],[76.12963,20.32239],[76.12922,20.31728],[76.13655,20.31838],[76.14764,20.31057],[76.14648,20.30578],[76.14292,20.30509],[76.14091,20.30053],[76.15505,20.30275],[76.16852,20.29491],[76.1723,20.30218],[76.19382,20.30015],[76.18717,20.28886],[76.1849,20.27909],[76.17782,20.26604],[76.17332,20.26579],[76.17327,20.26048],[76.16971,20.25833],[76.16803,20.2544],[76.16639,20.23843],[76.14993,20.2371],[76.1447,20.23215],[76.13928,20.23126],[76.13293,20.22244],[76.13753,20.21788],[76.13937,20.21275],[76.148,20.20876],[76.14985,20.20595],[76.14514,20.19958],[76.13197,20.19875],[76.13361,20.18485],[76.12763,20.17959],[76.12638,20.17409],[76.12353,20.1737],[76.12513,20.17064],[76.12388,20.16777],[76.1203,20.16735],[76.12098,20.1644],[76.11885,20.16236],[76.11942,20.16086],[76.10881,20.16243],[76.10541,20.15314],[76.10798,20.15236],[76.10841,20.14844],[76.10572,20.13258],[76.09846,20.13049],[76.09926,20.11594],[76.09563,20.10587],[76.09473,20.0963],[76.09266,20.09639],[76.09164,20.09424],[76.0883,20.09559],[76.08656,20.10029],[76.08447,20.09965],[76.08424,20.09799],[76.08171,20.09818],[76.08074,20.10023],[76.07203,20.10027],[76.06716,20.09804],[76.06238,20.09926],[76.05577,20.09739],[76.05386,20.09511],[76.0519,20.08519],[76.05818,20.08686],[76.06228,20.08449],[76.06953,20.0728],[76.06336,20.06856],[76.05559,20.06599],[76.0522,20.06206],[76.03519,20.0619],[76.0188,20.0584],[76.02127,20.04991],[76.02332,20.0243],[76.01088,20.02197],[76.00618,20.01242],[76.00365,20.0138],[75.99934,20.01271],[75.98609,20.00473],[75.97665,20.00407],[75.97333,20.00226],[75.96565,20.00279],[75.9625,19.99491],[75.96763,19.98631],[75.97178,19.98266],[75.98809,19.98067],[75.98936,19.97404],[75.99407,19.97612],[76.00029,19.97098],[76.0087,19.97432],[76.01146,19.97371],[76.01255,19.96935],[76.01126,19.95376],[76.02704,19.95044],[76.02665,19.94786],[76.03047,19.95007],[76.03259,19.94721],[76.03547,19.94964],[76.0409,19.94967],[76.04124,19.94596],[76.04264,19.94708],[76.04814,19.94597],[76.05233,19.94025],[76.04783,19.93562],[76.05749,19.92981],[76.05858,19.91868],[76.08112,19.91254],[76.08001,19.89847],[76.08091,19.88055],[76.09282,19.87205],[76.09755,19.85696],[76.1052,19.86012],[76.11848,19.86009],[76.12074,19.86451],[76.12933,19.86502],[76.13573,19.85195],[76.13533,19.84677],[76.13993,19.84407],[76.14429,19.84489],[76.1476,19.84364],[76.14839,19.85595],[76.16398,19.85272],[76.16419,19.85486],[76.16586,19.85469],[76.18175,19.84807],[76.18595,19.85489],[76.19427,19.85881],[76.19683,19.8654],[76.20754,19.86394],[76.21447,19.86795],[76.22951,19.86514],[76.24168,19.87218],[76.24912,19.87094],[76.25435,19.87334],[76.25543,19.87629],[76.25919,19.87524],[76.26981,19.87616],[76.29176,19.87249],[76.29307,19.8708],[76.30014,19.8776],[76.31542,19.87724],[76.32666,19.88598],[76.33646,19.88368],[76.33976,19.88676],[76.3423,19.89444],[76.3466,19.89272],[76.35166,19.89652],[76.35484,19.89687],[76.35485,19.91017],[76.36458,19.92278],[76.36602,19.9285],[76.38393,19.91696],[76.38606,19.91468],[76.38739,19.90861],[76.39282,19.90492],[76.40216,19.9098],[76.40204,19.91286],[76.40529,19.9198],[76.42144,19.92049],[76.44112,19.91729],[76.44656,19.92244],[76.45348,19.92336],[76.45773,19.9203],[76.46247,19.91952],[76.49357,19.92016],[76.49058,19.90692],[76.49081,19.89797],[76.49276,19.8938],[76.49544,19.89443],[76.50189,19.88878],[76.50649,19.87801],[76.51224,19.87673],[76.51447,19.87869],[76.51817,19.87826],[76.5187,19.87593],[76.51698,19.87422],[76.51852,19.87281],[76.53451,19.86553],[76.53117,19.86176],[76.53401,19.85764],[76.5341,19.85027],[76.53663,19.84676],[76.56409,19.83954],[76.56746,19.83989],[76.56965,19.84537],[76.59169,19.84451],[76.59989,19.84167],[76.6017,19.84298],[76.61083,19.83749],[76.61409,19.83834],[76.61941,19.84132],[76.61893,19.84477],[76.62442,19.84859],[76.63173,19.86283],[76.63321,19.86899],[76.64713,19.867],[76.65263,19.87359],[76.65301,19.87881],[76.65879,19.8857],[76.65964,19.8922],[76.65439,19.90051],[76.63324,19.89931],[76.62431,19.88954],[76.61098,19.89309],[76.61065,19.89979],[76.61275,19.90171],[76.61365,19.90674],[76.61067,19.91813],[76.60567,19.92213],[76.60737,19.92493],[76.62233,19.92307],[76.62839,19.92549],[76.63646,19.93368],[76.63428,19.95512],[76.63663,19.95946],[76.64536,19.96489],[76.65906,19.96438],[76.65928,19.9656],[76.66072,19.97872],[76.6455,19.98466],[76.65836,20.00187],[76.65843,20.02182],[76.6631,20.04756],[76.62403,20.05125],[76.63046,20.08221],[76.63409,20.08068],[76.63283,20.0744],[76.63755,20.0717],[76.64846,20.06956],[76.6519,20.09139],[76.65825,20.09761],[76.66024,20.09722],[76.65785,20.10619],[76.65811,20.11345],[76.66675,20.11942],[76.66893,20.12611],[76.68195,20.12296],[76.69646,20.12168],[76.708,20.12273],[76.7221,20.12719],[76.73218,20.12504],[76.75742,20.13111],[76.76017,20.1395],[76.76217,20.16133],[76.74829,20.16543],[76.75034,20.17753],[76.74932,20.18699],[76.74687,20.1884],[76.74518,20.19613],[76.74678,20.20672],[76.7506,20.20701],[76.75054,20.20862],[76.75241,20.20887],[76.76828,20.20936],[76.77349,20.20784],[76.77295,20.206],[76.7847,20.20322],[76.78922,20.20592],[76.79485,20.21829],[76.80152,20.221],[76.81093,20.21933],[76.81433,20.22806],[76.82131,20.23471],[76.82427,20.24197],[76.8247,20.24924],[76.8208,20.26136],[76.82562,20.26823],[76.82589,20.27143],[76.8196,20.28058],[76.81167,20.27797],[76.80593,20.28828],[76.80436,20.28673],[76.79096,20.28686],[76.78605,20.28944],[76.78862,20.30988],[76.79235,20.31417],[76.78471,20.31801],[76.76801,20.32169],[76.76559,20.31635],[76.7537,20.32669],[76.74264,20.32879],[76.74248,20.3302],[76.74519,20.32998],[76.74515,20.33739],[76.73509,20.33992],[76.72695,20.3373],[76.72838,20.34292],[76.69994,20.35196],[76.70456,20.36244],[76.70492,20.37449],[76.70963,20.38026],[76.70876,20.38459],[76.72337,20.38959],[76.72685,20.39865],[76.72653,20.40707],[76.72224,20.41161],[76.72283,20.41543],[76.71995,20.41571],[76.71917,20.41833],[76.71274,20.41859],[76.71385,20.43841],[76.70765,20.44207],[76.708,20.44346],[76.6987,20.45565],[76.69307,20.45913],[76.69965,20.47123],[76.70646,20.47099],[76.71138,20.47326],[76.70605,20.47943],[76.70575,20.48734],[76.71072,20.50595],[76.71568,20.51544],[76.71728,20.51377],[76.72206,20.51413],[76.72602,20.5166],[76.72578,20.51244],[76.73127,20.51354],[76.73543,20.51138],[76.73787,20.49666],[76.73362,20.49313],[76.73526,20.49308],[76.74514,20.49671],[76.74669,20.49546],[76.74724,20.49796],[76.7521,20.50281],[76.7524,20.51124],[76.7602,20.5101],[76.77044,20.51786],[76.77039,20.53669],[76.77197,20.54514],[76.77767,20.55577],[76.78314,20.57252],[76.77101,20.57389],[76.76876,20.57572],[76.7736,20.58029],[76.77674,20.58719],[76.78781,20.58728],[76.78638,20.59117],[76.78888,20.59523],[76.78178,20.60331],[76.76065,20.60281],[76.76348,20.61262],[76.77059,20.62631],[76.74994,20.63014],[76.75623,20.64465],[76.75562,20.64608],[76.7601,20.64887],[76.75912,20.6517],[76.7559,20.656],[76.7536,20.65457],[76.73231,20.6557],[76.73598,20.66486],[76.73834,20.66422],[76.73883,20.6664],[76.74083,20.67951],[76.73821,20.67972],[76.73938,20.68721],[76.72283,20.68996],[76.72572,20.70024],[76.73274,20.69633],[76.73583,20.7163],[76.75123,20.71544],[76.75116,20.71703],[76.76337,20.72034],[76.76322,20.72644],[76.75707,20.72846],[76.75401,20.73865],[76.75771,20.74743],[76.75782,20.75245],[76.76377,20.7563],[76.77095,20.76402],[76.77294,20.77657],[76.7647,20.79307],[76.76249,20.79484],[76.7445,20.79693],[76.74446,20.80295],[76.74708,20.81746],[76.74549,20.81756],[76.74538,20.82382],[76.7542,20.82489],[76.75102,20.83518],[76.75531,20.83899],[76.75538,20.84626],[76.75819,20.84604],[76.75841,20.8486],[76.76121,20.85026],[76.76041,20.85381],[76.76345,20.85447],[76.76439,20.8571],[76.75452,20.86462],[76.75341,20.87386],[76.75002,20.87139],[76.74623,20.87144],[76.74737,20.87659],[76.74461,20.88067],[76.74458,20.88728],[76.73405,20.88909],[76.73006,20.88408],[76.72671,20.88361],[76.72171,20.89009],[76.71783,20.89143],[76.71788,20.89842],[76.70698,20.90261],[76.70739,20.90749],[76.69575,20.90655],[76.69866,20.91211],[76.69112,20.91784],[76.69914,20.92057],[76.7119,20.92097],[76.71892,20.9174],[76.7263,20.92029],[76.73206,20.92033],[76.73567,20.92491],[76.74448,20.92862],[76.75362,20.92107],[76.7671,20.92342],[76.77444,20.92122],[76.77718,20.91603],[76.78053,20.91387],[76.77593,20.91148],[76.77526,20.90896],[76.78414,20.90806],[76.79022,20.9156],[76.79031,20.91715],[76.78772,20.91736],[76.78696,20.92033],[76.78812,20.92792],[76.77951,20.93115],[76.77707,20.92885],[76.7758,20.93144],[76.78195,20.94096],[76.78661,20.94005],[76.78913,20.96253],[76.80059,20.96018],[76.80916,20.95658],[76.81006,20.95898],[76.80862,20.95995],[76.81135,20.96018],[76.81122,20.96144],[76.80821,20.96277],[76.80775,20.96692],[76.8119,20.96877],[76.80789,20.96921],[76.80455,20.9724],[76.79828,20.97269],[76.79738,20.97151],[76.78395,20.97276],[76.78415,20.98918],[76.77585,20.99011],[76.77573,20.99602],[76.7785,21.00006],[76.79618,21.00404],[76.79486,21.00653],[76.79735,21.01075],[76.79685,21.01601],[76.7985,21.019],[76.79312,21.0235],[76.7939,21.02712],[76.79157,21.02758],[76.7781,21.02837],[76.77723,21.02405],[76.77191,21.02404],[76.77349,21.03108],[76.77156,21.03304],[76.77137,21.03687],[76.76357,21.03738],[76.76966,21.04367],[76.77506,21.04654],[76.77388,21.04781],[76.77499,21.05224],[76.78134,21.05128],[76.78496,21.07195],[76.77568,21.07438],[76.77404,21.07688],[76.77329,21.08453],[76.77617,21.08855],[76.78294,21.09108],[76.78337,21.09658],[76.78896,21.10514],[76.78764,21.11496],[76.79038,21.11938],[76.79049,21.12271],[76.78456,21.12522],[76.78179,21.13591],[76.77569,21.14052],[76.7788,21.14534],[76.7792,21.14902],[76.77775,21.14984],[76.77357,21.14742],[76.77174,21.14939],[76.772,21.1535],[76.77575,21.15977],[76.77572,21.1646],[76.77813,21.16468],[76.77163,21.17631],[76.77125,21.18278],[76.77517,21.18666],[76.78152,21.18826],[76.78204,21.19428],[76.77583,21.19068],[76.76769,21.19123],[76.76418,21.2011],[76.76456,21.2063],[76.76074,21.22034],[76.75725,21.22167],[76.75242,21.21831],[76.74596,21.22323],[76.74792,21.22689],[76.74094,21.24151],[76.74853,21.25081],[76.74641,21.25449],[76.74386,21.2544],[76.74168,21.26058],[76.73679,21.26088],[76.73226,21.27719],[76.72587,21.27972],[76.72633,21.28211],[76.72299,21.28581],[76.72366,21.28923],[76.7203,21.28851]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"473","area_level":"District","area_name":"Chandrapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.79231,20.71406],[79.79147,20.71883],[79.78088,20.72666],[79.76801,20.73325],[79.75812,20.73486],[79.7531,20.71347],[79.75466,20.71355],[79.75598,20.71097],[79.75922,20.71068],[79.75897,20.70752],[79.75472,20.70097],[79.75377,20.69381],[79.75113,20.68814],[79.73388,20.68426],[79.71077,20.6871],[79.70994,20.68453],[79.69884,20.67508],[79.6931,20.67328],[79.69247,20.6672],[79.69831,20.65708],[79.69767,20.65104],[79.7002,20.6486],[79.69959,20.64496],[79.69349,20.64141],[79.69089,20.64164],[79.68078,20.64999],[79.6746,20.65136],[79.67037,20.65031],[79.66313,20.6542],[79.6615,20.65621],[79.66168,20.66481],[79.65902,20.66751],[79.65474,20.66804],[79.64529,20.67334],[79.61965,20.67622],[79.61354,20.69223],[79.6082,20.69647],[79.60091,20.69138],[79.58848,20.69155],[79.58154,20.69588],[79.56999,20.69815],[79.56697,20.6971],[79.56554,20.7075],[79.55908,20.70572],[79.55214,20.70714],[79.5359,20.70547],[79.53204,20.70898],[79.53079,20.70821],[79.53131,20.70992],[79.52713,20.71267],[79.51798,20.71421],[79.51813,20.71179],[79.51599,20.70939],[79.50578,20.70923],[79.50642,20.70497],[79.50449,20.70192],[79.50042,20.70476],[79.49483,20.70499],[79.49349,20.70911],[79.48987,20.7089],[79.48823,20.70236],[79.48512,20.70039],[79.48276,20.69524],[79.48091,20.69531],[79.48056,20.69187],[79.47368,20.69115],[79.47145,20.6837],[79.46966,20.68426],[79.4697,20.6816],[79.4676,20.67986],[79.46394,20.67973],[79.46385,20.6774],[79.45869,20.6758],[79.45842,20.67408],[79.45395,20.67223],[79.45309,20.66975],[79.44954,20.66997],[79.44892,20.66769],[79.44357,20.66965],[79.44288,20.66594],[79.43648,20.66409],[79.43614,20.66187],[79.428,20.66488],[79.42386,20.66303],[79.42396,20.6613],[79.4195,20.66028],[79.41246,20.66176],[79.40264,20.6593],[79.39759,20.66026],[79.39761,20.66267],[79.38803,20.66668],[79.38804,20.67132],[79.39009,20.6734],[79.38811,20.68138],[79.38002,20.68189],[79.37951,20.68433],[79.3769,20.68222],[79.37187,20.68157],[79.36928,20.67595],[79.35757,20.67427],[79.34871,20.67605],[79.34803,20.66978],[79.34925,20.66647],[79.35649,20.66204],[79.35464,20.6548],[79.34361,20.64711],[79.34391,20.64519],[79.34061,20.64521],[79.34412,20.64234],[79.3471,20.64328],[79.3472,20.63556],[79.34456,20.63296],[79.34212,20.63337],[79.33967,20.63023],[79.33928,20.62641],[79.33795,20.62663],[79.33738,20.62116],[79.33412,20.61977],[79.3312,20.60977],[79.3304,20.59456],[79.3247,20.59071],[79.32222,20.58443],[79.31404,20.5836],[79.30806,20.58528],[79.30718,20.58735],[79.29731,20.58918],[79.29667,20.59269],[79.29414,20.59301],[79.28809,20.59172],[79.28322,20.5884],[79.27685,20.58815],[79.27463,20.59025],[79.2642,20.58717],[79.25873,20.58941],[79.25389,20.58888],[79.24911,20.59122],[79.23219,20.58614],[79.22238,20.58489],[79.22096,20.58129],[79.22221,20.57076],[79.21729,20.56099],[79.21764,20.55261],[79.21384,20.55008],[79.21359,20.54759],[79.20821,20.54457],[79.19905,20.54267],[79.19425,20.53908],[79.18462,20.52578],[79.18289,20.51471],[79.18101,20.51238],[79.17465,20.51526],[79.16979,20.5143],[79.166,20.49274],[79.16022,20.4876],[79.15775,20.47812],[79.15256,20.48272],[79.13979,20.48219],[79.13856,20.47207],[79.13488,20.46421],[79.1329,20.46432],[79.1325,20.45707],[79.12702,20.45584],[79.11888,20.45101],[79.11333,20.45547],[79.10165,20.45757],[79.10131,20.46163],[79.09618,20.46392],[79.08662,20.46389],[79.07465,20.46608],[79.07082,20.4683],[79.06197,20.46911],[79.05191,20.4665],[79.05152,20.46851],[79.04716,20.46955],[79.04782,20.475],[79.04383,20.47585],[79.04345,20.47801],[79.03707,20.47754],[79.03536,20.48064],[79.02295,20.48334],[79.02063,20.47748],[79.01545,20.47501],[79.0153,20.47145],[79.00955,20.46508],[79.00654,20.45509],[79.00475,20.45595],[79.0004,20.45084],[78.99456,20.45963],[78.98735,20.46575],[78.9866,20.46093],[78.98347,20.46128],[78.98162,20.45884],[78.96687,20.4605],[78.96714,20.44993],[78.96573,20.44591],[78.96124,20.43708],[78.95558,20.43454],[78.95319,20.42879],[78.94757,20.43073],[78.94556,20.43044],[78.94486,20.42793],[78.93437,20.42855],[78.93053,20.431],[78.92506,20.4304],[78.92109,20.43231],[78.90962,20.43157],[78.89884,20.4376],[78.89424,20.43602],[78.88477,20.42785],[78.86635,20.42476],[78.86249,20.42163],[78.85454,20.42225],[78.85334,20.42403],[78.8544,20.42698],[78.85079,20.42802],[78.8444,20.43438],[78.84219,20.43414],[78.83855,20.42748],[78.83409,20.42722],[78.83425,20.42556],[78.84162,20.42224],[78.84534,20.41794],[78.85204,20.4154],[78.84343,20.40652],[78.82545,20.40413],[78.82196,20.40535],[78.81982,20.40154],[78.81857,20.40301],[78.81715,20.39745],[78.81748,20.39148],[78.81638,20.39142],[78.81919,20.38491],[78.82035,20.37152],[78.82583,20.36288],[78.81994,20.35006],[78.83041,20.3368],[78.83192,20.33112],[78.83148,20.32372],[78.8269,20.31832],[78.81711,20.31578],[78.80528,20.31026],[78.79877,20.29956],[78.80962,20.28639],[78.81944,20.27848],[78.82009,20.27327],[78.81245,20.26321],[78.81209,20.25744],[78.81348,20.25451],[78.81728,20.2509],[78.8206,20.25005],[78.83482,20.2501],[78.85809,20.25408],[78.87083,20.25292],[78.88178,20.24999],[78.89365,20.24954],[78.91026,20.25554],[78.91521,20.25594],[78.91998,20.25429],[78.92216,20.25024],[78.92123,20.24237],[78.92274,20.23848],[78.93747,20.22939],[78.93946,20.22031],[78.95608,20.21367],[78.96231,20.20786],[78.96043,20.20164],[78.95459,20.19498],[78.9577,20.18377],[78.95409,20.17645],[78.95369,20.17223],[78.95749,20.16785],[78.97277,20.16268],[78.9812,20.14997],[78.97949,20.14718],[78.9716,20.14615],[78.96945,20.1442],[78.96787,20.13244],[78.9702,20.12755],[78.97718,20.1244],[78.98882,20.12919],[78.9998,20.1266],[79.00798,20.11919],[79.02067,20.11101],[79.03298,20.09504],[79.0391,20.09051],[79.0475,20.08702],[79.04764,20.07994],[79.04368,20.07428],[79.04521,20.06859],[79.05867,20.06605],[79.0649,20.07084],[79.0679,20.07024],[79.07267,20.06354],[79.07258,20.05304],[79.07977,20.04165],[79.08204,20.02485],[79.09096,20.01798],[79.09883,20.01625],[79.10762,20.00868],[79.11239,19.9948],[79.11175,19.99093],[79.10948,19.988],[79.10188,19.99014],[79.09203,19.98231],[79.09292,19.97824],[79.108,19.97377],[79.10898,19.9706],[79.10241,19.95776],[79.08902,19.94824],[79.09005,19.94323],[79.08878,19.92916],[79.09111,19.91764],[79.09373,19.91596],[79.10101,19.91756],[79.11174,19.9054],[79.1492,19.89682],[79.14454,19.88567],[79.13706,19.8777],[79.13369,19.86762],[79.11827,19.86125],[79.11184,19.85058],[79.09789,19.84219],[79.08924,19.84244],[79.08865,19.83572],[79.08573,19.8303],[79.07194,19.81793],[79.06122,19.81708],[79.04828,19.82206],[79.0433,19.82205],[79.03562,19.81761],[79.03107,19.80593],[79.02373,19.80045],[79.01784,19.80095],[79.01115,19.8061],[79.00505,19.80735],[78.96842,19.80705],[78.95291,19.79943],[78.94055,19.7855],[78.93764,19.77873],[78.93892,19.77102],[78.94913,19.76289],[78.9503,19.75981],[78.95033,19.75288],[78.94682,19.74893],[78.92448,19.74846],[78.91837,19.74612],[78.90925,19.73923],[78.90068,19.73734],[78.89542,19.73899],[78.88698,19.7462],[78.87985,19.74826],[78.87899,19.75196],[78.88138,19.76411],[78.87923,19.76691],[78.87019,19.76824],[78.86322,19.7711],[78.85628,19.7713],[78.84668,19.76367],[78.84089,19.76167],[78.84066,19.75535],[78.84532,19.74688],[78.84795,19.7355],[78.85115,19.73613],[78.85237,19.7279],[78.84943,19.72197],[78.85992,19.68949],[78.85715,19.68962],[78.85569,19.68666],[78.85584,19.67731],[78.85192,19.65836],[78.86159,19.65741],[78.86809,19.65903],[78.88673,19.65507],[78.89048,19.65941],[78.88645,19.66245],[78.89601,19.66446],[78.90354,19.67001],[78.90768,19.66799],[78.91165,19.66911],[78.91582,19.6669],[78.91986,19.66697],[78.91972,19.662],[78.94423,19.66174],[78.95556,19.65579],[78.95739,19.64717],[78.96185,19.63744],[78.96119,19.63169],[78.95537,19.61912],[78.95562,19.60017],[78.95914,19.59547],[78.97178,19.59001],[78.97283,19.58239],[78.96487,19.57358],[78.95254,19.56498],[78.94649,19.56161],[78.93767,19.56187],[78.94044,19.55187],[78.9521,19.54886],[78.97422,19.54938],[78.9768,19.55694],[78.97985,19.55766],[78.98125,19.56084],[78.99775,19.54907],[78.99803,19.54008],[79.00687,19.54202],[79.02402,19.54178],[79.03945,19.5476],[79.04601,19.54833],[79.06534,19.53963],[79.06769,19.53566],[79.0769,19.5324],[79.09803,19.53203],[79.10539,19.52238],[79.11434,19.51976],[79.12093,19.512],[79.13311,19.50783],[79.13566,19.50615],[79.13861,19.50048],[79.14299,19.50053],[79.15755,19.48929],[79.16135,19.48826],[79.16783,19.47236],[79.18007,19.46188],[79.19087,19.4589],[79.20821,19.46497],[79.21568,19.46464],[79.22359,19.46907],[79.22319,19.47235],[79.21577,19.48094],[79.21075,19.48174],[79.20685,19.48582],[79.20385,19.49408],[79.20738,19.49763],[79.20746,19.50613],[79.21403,19.51119],[79.22116,19.52099],[79.23373,19.52001],[79.24002,19.53524],[79.23712,19.55714],[79.24622,19.56752],[79.25103,19.5775],[79.25312,19.59329],[79.24441,19.59487],[79.23864,19.60617],[79.24356,19.61669],[79.2511,19.61587],[79.27295,19.59884],[79.28436,19.59552],[79.30684,19.59656],[79.31026,19.57796],[79.30985,19.57151],[79.31393,19.56642],[79.31854,19.5677],[79.31844,19.57672],[79.32618,19.57743],[79.33481,19.57479],[79.35739,19.57758],[79.36573,19.57633],[79.36708,19.57294],[79.36947,19.5727],[79.37275,19.56099],[79.3768,19.55888],[79.38568,19.55833],[79.38732,19.55471],[79.39175,19.55287],[79.39621,19.54806],[79.40171,19.53845],[79.40532,19.53567],[79.42047,19.52976],[79.423,19.53016],[79.42256,19.53804],[79.43333,19.53726],[79.44221,19.52798],[79.44605,19.52692],[79.45327,19.5201],[79.45676,19.51913],[79.46896,19.50957],[79.47142,19.50019],[79.48263,19.50628],[79.49839,19.50569],[79.50076,19.50739],[79.50226,19.51164],[79.51483,19.51944],[79.51859,19.52018],[79.52081,19.53489],[79.51861,19.54311],[79.52922,19.55105],[79.53993,19.55466],[79.54248,19.55423],[79.54538,19.5507],[79.54839,19.53162],[79.55293,19.52417],[79.569,19.51827],[79.58404,19.50913],[79.59615,19.50728],[79.60046,19.50951],[79.60297,19.51455],[79.60604,19.53283],[79.61166,19.54752],[79.61414,19.55968],[79.62792,19.57317],[79.63546,19.57594],[79.65829,19.57971],[79.67532,19.57971],[79.68895,19.58387],[79.709,19.58448],[79.71798,19.58945],[79.73525,19.60496],[79.74308,19.60863],[79.75345,19.60753],[79.77861,19.59967],[79.79858,19.58197],[79.80808,19.57987],[79.8093,19.58204],[79.80731,19.58236],[79.79348,19.60637],[79.78592,19.643],[79.78574,19.67503],[79.78402,19.68558],[79.78571,19.70518],[79.78363,19.72059],[79.7789,19.72849],[79.76918,19.73754],[79.76552,19.74488],[79.75335,19.75824],[79.74952,19.7762],[79.74348,19.79023],[79.74142,19.81158],[79.74092,19.82229],[79.74278,19.8313],[79.74599,19.83738],[79.75814,19.84731],[79.76518,19.85838],[79.78084,19.86847],[79.78782,19.87797],[79.79833,19.88589],[79.80253,19.89135],[79.80367,19.89572],[79.80061,19.90869],[79.7936,19.91936],[79.78513,19.93994],[79.77457,19.95388],[79.77039,19.9637],[79.77171,19.97572],[79.77903,19.99754],[79.78791,20.01008],[79.81422,20.02732],[79.8278,20.03],[79.84943,20.03033],[79.85798,20.02642],[79.86314,20.01862],[79.87163,19.98896],[79.87492,19.98362],[79.88807,19.97333],[79.89974,19.96858],[79.91258,19.96738],[79.92054,19.96919],[79.938,19.97921],[79.95222,19.9899],[79.9815,20.02745],[79.98907,20.04258],[79.98923,20.04783],[79.98428,20.05958],[79.98073,20.08544],[79.97161,20.11207],[79.96419,20.12174],[79.95786,20.1244],[79.93154,20.12929],[79.91406,20.14243],[79.91204,20.14607],[79.91229,20.15119],[79.91866,20.16928],[79.93441,20.19221],[79.94322,20.19762],[79.95837,20.20349],[79.98335,20.20834],[79.98978,20.21288],[79.99214,20.22312],[79.9906,20.23183],[79.97906,20.25123],[79.948,20.28033],[79.94371,20.28793],[79.94374,20.30628],[79.94828,20.32307],[79.96953,20.34409],[79.9721,20.3537],[79.96935,20.36653],[79.96003,20.37658],[79.95823,20.38159],[79.9592,20.39099],[79.96509,20.40333],[79.96516,20.41075],[79.96256,20.41713],[79.94583,20.43201],[79.94013,20.44119],[79.9439,20.47006],[79.94303,20.47683],[79.94928,20.49388],[79.9488,20.5082],[79.95262,20.52652],[79.95194,20.5296],[79.94607,20.53949],[79.93147,20.54666],[79.92582,20.55329],[79.92683,20.55874],[79.93635,20.5789],[79.93924,20.60037],[79.94083,20.63163],[79.9399,20.63396],[79.93196,20.63738],[79.93214,20.63991],[79.92974,20.64055],[79.93311,20.64521],[79.93444,20.64473],[79.93721,20.6498],[79.93507,20.66435],[79.92804,20.67002],[79.91245,20.67595],[79.90573,20.67691],[79.8953,20.68618],[79.88798,20.6887],[79.86987,20.68754],[79.85281,20.68108],[79.83468,20.68361],[79.80073,20.69927],[79.79395,20.70623],[79.79231,20.71406]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"474","area_level":"District","area_name":"Dhule","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.86538,21.62856],[74.86276,21.63445],[74.85668,21.6266],[74.84988,21.62388],[74.8381,21.62211],[74.83974,21.61903],[74.83133,21.61829],[74.8306,21.61171],[74.82886,21.60979],[74.82649,21.61141],[74.81959,21.6087],[74.81285,21.61078],[74.81232,21.61384],[74.80811,21.61223],[74.80687,21.61463],[74.80285,21.61411],[74.80217,21.6154],[74.79963,21.61435],[74.79808,21.60992],[74.78988,21.61276],[74.78287,21.61069],[74.77536,21.61549],[74.76883,21.61604],[74.76771,21.60988],[74.77119,21.60841],[74.75857,21.57651],[74.75926,21.54685],[74.75807,21.54503],[74.75964,21.53756],[74.75389,21.52923],[74.75722,21.52345],[74.75766,21.51894],[74.76022,21.51895],[74.76123,21.5168],[74.75623,21.50207],[74.7585,21.49723],[74.75671,21.4969],[74.75617,21.49492],[74.75763,21.4914],[74.75589,21.48949],[74.75603,21.48598],[74.75296,21.48231],[74.75522,21.47756],[74.74643,21.47953],[74.7318,21.47873],[74.73319,21.47632],[74.73276,21.47185],[74.72607,21.47695],[74.71079,21.47425],[74.69977,21.469],[74.70005,21.46557],[74.70178,21.46512],[74.70401,21.46107],[74.70318,21.4533],[74.70509,21.45231],[74.70391,21.45145],[74.70521,21.44986],[74.70055,21.44674],[74.69776,21.44212],[74.69825,21.43827],[74.6963,21.4384],[74.69349,21.43655],[74.69384,21.4342],[74.69181,21.43415],[74.69204,21.43104],[74.69471,21.42984],[74.69483,21.42825],[74.69726,21.42921],[74.69863,21.42286],[74.69381,21.41235],[74.68863,21.40938],[74.68603,21.40355],[74.67712,21.40617],[74.66461,21.40707],[74.63792,21.40134],[74.63351,21.40174],[74.61949,21.41141],[74.61272,21.4139],[74.59961,21.41542],[74.58995,21.41352],[74.58003,21.40553],[74.57193,21.40258],[74.56536,21.40542],[74.55845,21.41388],[74.53619,21.42607],[74.51253,21.4298],[74.49657,21.42558],[74.49782,21.42106],[74.50209,21.41583],[74.49889,21.3984],[74.4944,21.39541],[74.49301,21.39129],[74.50285,21.39402],[74.50843,21.38901],[74.50271,21.38151],[74.48973,21.37067],[74.49194,21.36992],[74.4904,21.35005],[74.47847,21.34924],[74.47747,21.33149],[74.48073,21.31409],[74.4831,21.30919],[74.47382,21.30566],[74.47431,21.29661],[74.49259,21.29783],[74.50036,21.28565],[74.50189,21.28001],[74.49958,21.27933],[74.50149,21.27556],[74.49814,21.26932],[74.49867,21.26436],[74.49155,21.26162],[74.48703,21.25462],[74.49216,21.25524],[74.48986,21.25454],[74.48827,21.24897],[74.4904,21.24668],[74.48999,21.24249],[74.43467,21.23711],[74.43249,21.24478],[74.44091,21.24778],[74.43747,21.25492],[74.43189,21.25602],[74.43187,21.26118],[74.41029,21.25745],[74.4124,21.26487],[74.41205,21.26653],[74.40932,21.26662],[74.3982,21.2647],[74.39584,21.26111],[74.39027,21.2595],[74.388,21.25579],[74.35567,21.2522],[74.35804,21.24413],[74.3567,21.23228],[74.33787,21.22862],[74.33794,21.23089],[74.32768,21.23299],[74.32205,21.23273],[74.32146,21.23127],[74.31716,21.23015],[74.31621,21.23217],[74.31779,21.2484],[74.30865,21.24166],[74.29906,21.23801],[74.28407,21.23971],[74.27202,21.24638],[74.27191,21.24825],[74.26733,21.24936],[74.25022,21.24716],[74.24601,21.24817],[74.23182,21.23983],[74.21965,21.24128],[74.21379,21.2265],[74.20946,21.22148],[74.2003,21.21992],[74.19051,21.221],[74.18952,21.21754],[74.1858,21.22011],[74.18152,21.21045],[74.17918,21.20979],[74.17384,21.21099],[74.16546,21.216],[74.16341,21.21487],[74.15979,21.2186],[74.16434,21.22527],[74.15985,21.22693],[74.15789,21.23078],[74.15548,21.22554],[74.15289,21.22378],[74.14946,21.22546],[74.14856,21.22086],[74.14378,21.22015],[74.1426,21.21653],[74.1443,21.21351],[74.14681,21.21486],[74.1494,21.2103],[74.14603,21.2069],[74.126,21.21313],[74.1207,21.21336],[74.11088,21.20823],[74.10215,21.198],[74.09374,21.19473],[74.09297,21.19742],[74.08741,21.19575],[74.08644,21.19168],[74.07548,21.18499],[74.07006,21.17569],[74.06688,21.17364],[74.05903,21.17328],[74.05718,21.16998],[74.05916,21.16479],[74.0674,21.1567],[74.07686,21.15152],[74.07728,21.14108],[74.074,21.13782],[74.07693,21.13352],[74.08288,21.13073],[74.09261,21.13278],[74.09806,21.12676],[74.09924,21.1229],[74.09725,21.11044],[74.08883,21.11387],[74.08407,21.11275],[74.07965,21.12047],[74.0703,21.1298],[74.04753,21.12785],[74.04968,21.13581],[74.03542,21.1448],[74.0201,21.14164],[74.01606,21.13108],[74.00013,21.12093],[73.97461,21.11355],[73.95635,21.10254],[73.94357,21.07856],[73.94809,21.07146],[73.94745,21.0669],[73.94452,21.06206],[73.95526,21.05132],[73.9543,21.03919],[73.94818,21.03152],[73.92989,21.03903],[73.9099,21.03762],[73.90718,21.0436],[73.90703,21.03653],[73.8953,21.03526],[73.88219,21.02623],[73.87503,21.03091],[73.85915,21.02989],[73.85449,21.03265],[73.85663,21.02022],[73.85607,21.01517],[73.85417,21.0142],[73.85094,21.00667],[73.8512,20.99763],[73.862,20.99039],[73.86632,20.9899],[73.86902,20.98526],[73.87148,20.98572],[73.89239,20.97947],[73.89641,20.98202],[73.9013,20.9823],[73.90332,20.97219],[73.90837,20.96719],[73.90798,20.95974],[73.89901,20.9603],[73.89231,20.95571],[73.8882,20.93359],[73.90009,20.92078],[73.91754,20.90778],[73.92216,20.89231],[73.92573,20.8885],[73.92557,20.87737],[73.92337,20.8745],[73.9248,20.86648],[73.92264,20.8624],[73.92454,20.85862],[73.92372,20.85138],[73.92512,20.84831],[73.92761,20.84736],[73.92935,20.84236],[73.9479,20.8389],[73.95561,20.84242],[73.96264,20.84251],[73.96664,20.85443],[73.97579,20.85165],[73.97956,20.8479],[73.98929,20.84732],[73.99138,20.84456],[74.00453,20.84252],[74.00662,20.83621],[74.01395,20.84398],[74.0126,20.84623],[74.01524,20.85381],[74.01579,20.84635],[74.01751,20.84418],[74.0229,20.85109],[74.0262,20.8521],[74.03002,20.84709],[74.03273,20.83952],[74.04388,20.83471],[74.06315,20.84894],[74.06801,20.84717],[74.06977,20.84873],[74.07731,20.84877],[74.08581,20.84389],[74.09715,20.84102],[74.10282,20.84479],[74.10014,20.85008],[74.10338,20.8551],[74.11144,20.85501],[74.11667,20.86292],[74.12043,20.86087],[74.12891,20.86477],[74.14227,20.85267],[74.14957,20.85034],[74.15893,20.85195],[74.15931,20.86211],[74.187,20.85765],[74.19137,20.85911],[74.19281,20.85601],[74.196,20.85519],[74.20154,20.85959],[74.20571,20.85585],[74.20891,20.85508],[74.22441,20.85672],[74.22773,20.85035],[74.2336,20.84889],[74.24024,20.85136],[74.2435,20.85018],[74.24813,20.85374],[74.2482,20.85659],[74.25043,20.85657],[74.25175,20.85953],[74.25614,20.85948],[74.25832,20.85381],[74.26564,20.85139],[74.26987,20.85303],[74.27526,20.8508],[74.27372,20.85317],[74.27875,20.85435],[74.28359,20.85293],[74.28687,20.85521],[74.29018,20.85428],[74.29244,20.85543],[74.29695,20.85233],[74.29849,20.85359],[74.30177,20.8492],[74.31484,20.84295],[74.32002,20.84537],[74.32223,20.84894],[74.32538,20.84814],[74.32558,20.84507],[74.33303,20.83652],[74.33695,20.83695],[74.33641,20.84157],[74.33829,20.84981],[74.34683,20.84757],[74.34958,20.85265],[74.34901,20.85887],[74.35066,20.85895],[74.35212,20.85658],[74.35421,20.85933],[74.35618,20.85867],[74.35712,20.85233],[74.35411,20.85327],[74.35177,20.85066],[74.35343,20.84886],[74.35752,20.84863],[74.35722,20.84544],[74.35873,20.84459],[74.36097,20.84683],[74.36072,20.84493],[74.37124,20.84421],[74.3711,20.84178],[74.37345,20.84054],[74.3755,20.84262],[74.37675,20.84093],[74.38264,20.84033],[74.38489,20.84201],[74.38192,20.84961],[74.38533,20.85353],[74.38789,20.8517],[74.3865,20.85694],[74.39038,20.8561],[74.3914,20.85794],[74.39273,20.85474],[74.39625,20.86097],[74.39741,20.8586],[74.39592,20.84956],[74.39858,20.84864],[74.4009,20.84208],[74.40376,20.84144],[74.4029,20.83758],[74.40002,20.83655],[74.39882,20.83822],[74.39505,20.83783],[74.38943,20.84003],[74.38707,20.83916],[74.38826,20.83581],[74.39697,20.8319],[74.39778,20.82723],[74.40074,20.82791],[74.40091,20.82356],[74.40339,20.82296],[74.40543,20.81815],[74.40835,20.81769],[74.41667,20.8098],[74.43983,20.7985],[74.44318,20.80107],[74.44211,20.80812],[74.44961,20.8155],[74.45637,20.81207],[74.46642,20.81923],[74.4761,20.82002],[74.47482,20.82711],[74.47886,20.83416],[74.48081,20.83378],[74.48148,20.83141],[74.48372,20.83138],[74.48325,20.82949],[74.48494,20.82894],[74.48203,20.8236],[74.48346,20.82289],[74.4825,20.82117],[74.49133,20.81529],[74.49392,20.81884],[74.50533,20.81888],[74.50506,20.81491],[74.50868,20.81159],[74.50847,20.80859],[74.51187,20.80844],[74.51996,20.8143],[74.52586,20.81582],[74.53026,20.82978],[74.53627,20.83507],[74.54148,20.82902],[74.56334,20.8236],[74.57262,20.83091],[74.57284,20.81878],[74.58827,20.81285],[74.60279,20.81119],[74.61932,20.80396],[74.63185,20.79066],[74.63327,20.78304],[74.64031,20.7817],[74.65424,20.77555],[74.66449,20.77416],[74.66265,20.76267],[74.65951,20.75874],[74.6539,20.75611],[74.65361,20.75162],[74.65614,20.75163],[74.65824,20.74925],[74.6576,20.74238],[74.66106,20.73968],[74.6592,20.73434],[74.65601,20.73337],[74.65401,20.72781],[74.6525,20.72757],[74.65577,20.71904],[74.6585,20.71954],[74.65851,20.71825],[74.65618,20.70493],[74.64979,20.69402],[74.66521,20.69225],[74.67299,20.69415],[74.71074,20.68576],[74.72032,20.67876],[74.72014,20.6773],[74.72473,20.67704],[74.72494,20.67563],[74.73253,20.67764],[74.7337,20.67677],[74.73099,20.67316],[74.73327,20.67408],[74.73783,20.66588],[74.74213,20.66663],[74.74301,20.67032],[74.74494,20.6708],[74.74909,20.66669],[74.75273,20.66722],[74.75351,20.66948],[74.75684,20.66537],[74.76026,20.66801],[74.76219,20.66715],[74.76194,20.66386],[74.7693,20.66246],[74.76825,20.66533],[74.77202,20.66745],[74.77242,20.66279],[74.77957,20.66661],[74.78116,20.66396],[74.78807,20.66054],[74.79408,20.66237],[74.79734,20.65886],[74.80136,20.66025],[74.80318,20.65867],[74.80311,20.65606],[74.80001,20.63806],[74.80935,20.63823],[74.81274,20.63198],[74.81634,20.63174],[74.82294,20.62773],[74.82673,20.62823],[74.83031,20.63292],[74.84023,20.63154],[74.8404,20.63669],[74.85395,20.63442],[74.8621,20.63907],[74.87102,20.64047],[74.87469,20.64325],[74.8916,20.64268],[74.89906,20.65022],[74.89924,20.6563],[74.93046,20.65618],[74.93407,20.66433],[74.93749,20.6662],[74.94139,20.67344],[74.94091,20.67995],[74.95635,20.69042],[74.95025,20.70636],[74.9524,20.71213],[74.9556,20.71402],[74.95494,20.71586],[74.9478,20.71941],[74.94806,20.72163],[74.95667,20.71964],[74.96182,20.72086],[74.96974,20.72735],[74.97784,20.72847],[74.98121,20.73516],[74.98594,20.73347],[74.98941,20.7387],[74.99138,20.75477],[74.98838,20.76715],[74.98547,20.77235],[74.97875,20.77798],[74.97588,20.77842],[74.96326,20.80049],[74.95885,20.80214],[74.96469,20.81256],[74.96564,20.81909],[74.97301,20.82188],[74.98139,20.82034],[74.98398,20.82146],[74.9847,20.82754],[74.98349,20.83212],[74.97977,20.83667],[74.98045,20.83927],[74.97728,20.84564],[74.96995,20.84631],[74.96364,20.85898],[74.96778,20.87172],[74.96856,20.8784],[74.96718,20.88162],[74.96833,20.88356],[74.96343,20.88389],[74.95918,20.89207],[74.96106,20.9019],[74.95409,20.90165],[74.94867,20.91462],[74.94178,20.91789],[74.94046,20.91609],[74.93328,20.91775],[74.93366,20.92623],[74.91211,20.9275],[74.91018,20.95572],[74.91098,20.96369],[74.91712,20.963],[74.9221,20.96429],[74.92871,20.96206],[74.93123,20.96915],[74.92712,20.97247],[74.92837,20.97811],[74.92684,20.98048],[74.91658,20.99009],[74.91532,21.0016],[74.91855,21.01405],[74.91558,21.01644],[74.91055,21.0305],[74.89934,21.0378],[74.89254,21.03921],[74.89258,21.04559],[74.88945,21.05147],[74.86286,21.05316],[74.85787,21.0609],[74.8574,21.06317],[74.85975,21.06739],[74.86685,21.07378],[74.87298,21.08957],[74.86937,21.10121],[74.87323,21.10623],[74.88615,21.11467],[74.88407,21.12552],[74.88919,21.14206],[74.89333,21.1483],[74.90361,21.15565],[74.91042,21.1631],[74.91977,21.16551],[74.93282,21.16486],[74.93523,21.16781],[74.93574,21.17161],[74.9494,21.17788],[74.95827,21.18631],[74.96392,21.19454],[74.96361,21.19856],[74.95347,21.19889],[74.95044,21.20033],[74.95129,21.20409],[74.95984,21.20771],[74.95995,21.21078],[74.95755,21.2143],[74.95168,21.21459],[74.9479,21.21744],[74.94457,21.22152],[74.94429,21.22499],[74.95123,21.22163],[74.96549,21.22352],[74.97414,21.22001],[74.97857,21.21405],[74.98398,21.19995],[74.98948,21.1965],[74.99781,21.18761],[75.00344,21.18608],[75.01372,21.18737],[75.01361,21.18927],[75.01669,21.1918],[75.0241,21.19045],[75.02724,21.19279],[75.03211,21.19079],[75.03775,21.1916],[75.04075,21.20584],[75.04428,21.21036],[75.05515,21.21183],[75.05913,21.22021],[75.06755,21.22505],[75.07949,21.22764],[75.08717,21.22752],[75.0888,21.22859],[75.08988,21.23357],[75.09479,21.23211],[75.09988,21.23332],[75.10623,21.23956],[75.107,21.24603],[75.11453,21.26036],[75.12614,21.26618],[75.12844,21.2694],[75.12954,21.27279],[75.12647,21.27788],[75.12845,21.28442],[75.13573,21.28735],[75.13839,21.29026],[75.14011,21.3001],[75.1361,21.31553],[75.14018,21.31724],[75.14768,21.31684],[75.15299,21.32517],[75.13191,21.33671],[75.12276,21.33824],[75.12042,21.34112],[75.12187,21.34608],[75.12658,21.34904],[75.13624,21.3496],[75.14295,21.34503],[75.14817,21.34939],[75.145,21.35462],[75.13753,21.35797],[75.13847,21.35908],[75.13602,21.36126],[75.1381,21.38272],[75.15013,21.38725],[75.15717,21.39659],[75.15853,21.40288],[75.16135,21.40402],[75.17326,21.40173],[75.18545,21.41063],[75.20656,21.4131],[75.17999,21.43055],[75.17012,21.43157],[75.13383,21.4454],[75.12583,21.44926],[75.10716,21.46269],[75.10775,21.46667],[75.10195,21.47428],[75.09745,21.48819],[75.08846,21.50088],[75.08978,21.50346],[75.08921,21.51676],[75.08665,21.51585],[75.08682,21.51789],[75.05332,21.56482],[75.01502,21.56968],[75.01534,21.57523],[74.99906,21.58565],[74.97923,21.59524],[74.93534,21.60598],[74.91033,21.61457],[74.90168,21.62924],[74.89792,21.62826],[74.89139,21.63065],[74.89011,21.62929],[74.88733,21.63159],[74.88589,21.62941],[74.88402,21.63106],[74.87884,21.63008],[74.87803,21.62852],[74.87547,21.63074],[74.87199,21.62982],[74.87181,21.63182],[74.86798,21.63101],[74.8679,21.62848],[74.86538,21.62856]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"475","area_level":"District","area_name":"Gadchiroli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.52248,20.83443],[80.51205,20.83336],[80.48723,20.82486],[80.47353,20.82399],[80.46961,20.8217],[80.46169,20.82032],[80.42848,20.82463],[80.4142,20.82469],[80.40379,20.80885],[80.39159,20.80621],[80.38137,20.80656],[80.3674,20.81219],[80.3645,20.81227],[80.36074,20.80896],[80.35661,20.80929],[80.34062,20.82132],[80.33164,20.81955],[80.33024,20.80866],[80.32463,20.79782],[80.32105,20.79857],[80.323,20.78964],[80.31691,20.77618],[80.31818,20.76866],[80.32124,20.7654],[80.32236,20.76047],[80.32128,20.75314],[80.31188,20.74146],[80.30777,20.73216],[80.30907,20.72824],[80.29842,20.71028],[80.28115,20.70919],[80.27354,20.68098],[80.26793,20.67829],[80.25081,20.67897],[80.24895,20.67553],[80.25012,20.66637],[80.25216,20.66571],[80.25234,20.664],[80.24913,20.6586],[80.24262,20.65466],[80.21378,20.66309],[80.2118,20.66533],[80.20765,20.66556],[80.20499,20.6678],[80.20212,20.66731],[80.20174,20.67019],[80.19792,20.67395],[80.19525,20.67433],[80.19473,20.677],[80.18995,20.6755],[80.18782,20.67752],[80.18663,20.67665],[80.18478,20.67939],[80.17884,20.67739],[80.17308,20.68303],[80.17071,20.68263],[80.16637,20.68579],[80.16263,20.69384],[80.15686,20.69345],[80.15519,20.69466],[80.15401,20.69083],[80.14195,20.69132],[80.13987,20.6854],[80.13545,20.68457],[80.13337,20.69007],[80.12445,20.69045],[80.12076,20.68869],[80.11607,20.69413],[80.1129,20.69509],[80.10273,20.69093],[80.09325,20.69103],[80.07882,20.697],[80.07273,20.70546],[80.05878,20.71211],[80.05722,20.71084],[80.05488,20.71187],[80.05251,20.70908],[80.04604,20.70933],[80.03225,20.70006],[80.02841,20.68534],[80.01642,20.66714],[80.01422,20.67486],[80.00909,20.67387],[80.00951,20.67243],[80.00655,20.67095],[80.00642,20.66902],[80.00035,20.67411],[79.99643,20.67523],[79.9897,20.67305],[79.9873,20.67386],[79.98138,20.67842],[79.98026,20.68305],[79.97325,20.68566],[79.96476,20.69424],[79.95056,20.68637],[79.94696,20.68202],[79.93473,20.67853],[79.93357,20.67166],[79.93108,20.66848],[79.93507,20.66435],[79.93721,20.6498],[79.93444,20.64473],[79.93311,20.64521],[79.92974,20.64055],[79.93214,20.63991],[79.93196,20.63738],[79.9399,20.63396],[79.94083,20.63163],[79.93924,20.60037],[79.93635,20.5789],[79.92683,20.55874],[79.92582,20.55329],[79.93147,20.54666],[79.94607,20.53949],[79.95194,20.5296],[79.95262,20.52652],[79.9488,20.5082],[79.94928,20.49388],[79.94303,20.47683],[79.9439,20.47006],[79.94013,20.44119],[79.94583,20.43201],[79.96256,20.41713],[79.96516,20.41075],[79.96509,20.40333],[79.9592,20.39099],[79.95823,20.38159],[79.96003,20.37658],[79.96935,20.36653],[79.9721,20.3537],[79.96953,20.34409],[79.94828,20.32307],[79.94374,20.30628],[79.94371,20.28793],[79.948,20.28033],[79.97906,20.25123],[79.9906,20.23183],[79.99214,20.22312],[79.98978,20.21288],[79.98335,20.20834],[79.95837,20.20349],[79.94322,20.19762],[79.93441,20.19221],[79.91578,20.16383],[79.91181,20.14805],[79.91239,20.14474],[79.91874,20.13782],[79.93154,20.12929],[79.95786,20.1244],[79.96419,20.12174],[79.96802,20.11785],[79.97161,20.11207],[79.98073,20.08544],[79.98428,20.05958],[79.98923,20.04783],[79.98907,20.04258],[79.9815,20.02745],[79.95222,19.9899],[79.938,19.97921],[79.92054,19.96919],[79.91258,19.96738],[79.89459,19.9704],[79.87713,19.98132],[79.87163,19.98896],[79.86085,20.02328],[79.85243,20.02965],[79.84014,20.0308],[79.81422,20.02732],[79.78791,20.01008],[79.77903,19.99754],[79.77145,19.97479],[79.77039,19.9637],[79.77457,19.95388],[79.78513,19.93994],[79.7936,19.91936],[79.80061,19.90869],[79.80324,19.9002],[79.80315,19.89293],[79.8006,19.88825],[79.78782,19.87797],[79.78084,19.86847],[79.76518,19.85838],[79.75814,19.84731],[79.74599,19.83738],[79.74278,19.8313],[79.74092,19.82229],[79.74348,19.79023],[79.74952,19.7762],[79.75335,19.75824],[79.76552,19.74488],[79.76918,19.73754],[79.7789,19.72849],[79.78363,19.72059],[79.78571,19.70518],[79.78402,19.68558],[79.78574,19.67503],[79.78592,19.643],[79.79348,19.60637],[79.80731,19.58236],[79.8093,19.58204],[79.80808,19.57987],[79.80453,19.5799],[79.81633,19.57403],[79.82115,19.56422],[79.82125,19.56021],[79.82411,19.55679],[79.8267,19.54621],[79.83135,19.53986],[79.84518,19.53321],[79.84817,19.52653],[79.85532,19.52103],[79.86458,19.51051],[79.87095,19.50906],[79.88085,19.50357],[79.90196,19.5009],[79.9145,19.49604],[79.93241,19.47654],[79.94482,19.46981],[79.94822,19.4606],[79.94761,19.44968],[79.95248,19.44095],[79.97239,19.41621],[79.97469,19.41099],[79.9747,19.40436],[79.97794,19.40036],[79.97698,19.39495],[79.97967,19.38866],[79.97404,19.3855],[79.97183,19.38156],[79.97142,19.37681],[79.96953,19.37469],[79.97023,19.37103],[79.96797,19.35663],[79.95908,19.33594],[79.95909,19.33086],[79.96557,19.31307],[79.96587,19.30304],[79.96227,19.29735],[79.95482,19.29376],[79.95057,19.28904],[79.93636,19.26413],[79.93085,19.2508],[79.92451,19.22572],[79.92545,19.21064],[79.94482,19.18008],[79.9465,19.17425],[79.9459,19.16949],[79.94174,19.16428],[79.92532,19.15159],[79.87375,19.12405],[79.86146,19.11226],[79.85843,19.10242],[79.85896,19.09276],[79.8634,19.07782],[79.86338,19.06869],[79.866,19.0542],[79.86859,19.04424],[79.8711,19.04102],[79.87704,19.0388],[79.89922,19.04024],[79.92063,19.04971],[79.92892,19.04919],[79.93281,19.0474],[79.93707,19.04269],[79.94038,19.03201],[79.94256,19.00698],[79.9424,19.00066],[79.94096,19.00023],[79.94162,18.99209],[79.95705,18.94288],[79.95742,18.92279],[79.95361,18.9045],[79.95867,18.88861],[79.96161,18.86663],[79.95851,18.85942],[79.94764,18.85018],[79.94138,18.84604],[79.92825,18.84091],[79.91911,18.83382],[79.91503,18.82869],[79.91403,18.82381],[79.92412,18.8069],[79.94949,18.78915],[79.95915,18.7773],[79.96415,18.77382],[79.99305,18.76993],[79.99583,18.77082],[79.99809,18.77592],[80.00099,18.77607],[80.01854,18.77038],[80.02498,18.75494],[80.03455,18.75499],[80.03868,18.75297],[80.04141,18.74299],[80.0528,18.72506],[80.05694,18.72332],[80.06462,18.72326],[80.06926,18.71957],[80.07459,18.71052],[80.08207,18.70725],[80.08851,18.70728],[80.09904,18.69448],[80.10415,18.69157],[80.11225,18.68288],[80.11812,18.68052],[80.12438,18.68136],[80.12856,18.68743],[80.14002,18.693],[80.14846,18.69309],[80.15771,18.70098],[80.16862,18.69971],[80.17416,18.68818],[80.1787,18.68327],[80.19047,18.68046],[80.19657,18.6808],[80.19937,18.68321],[80.20043,18.69256],[80.21277,18.70572],[80.21933,18.70792],[80.22628,18.7056],[80.2304,18.70181],[80.23462,18.70263],[80.23864,18.70573],[80.25223,18.70681],[80.26501,18.7175],[80.26614,18.72055],[80.27242,18.72351],[80.25974,18.74232],[80.24475,18.75661],[80.24512,18.76086],[80.2477,18.7642],[80.25671,18.76998],[80.26217,18.7701],[80.27271,18.76576],[80.27592,18.76611],[80.28837,18.77378],[80.28845,18.77738],[80.29149,18.78347],[80.29994,18.79445],[80.30599,18.79794],[80.31401,18.79993],[80.323,18.79897],[80.3418,18.8124],[80.35141,18.81629],[80.35431,18.82646],[80.35224,18.83994],[80.34926,18.8478],[80.32619,18.8809],[80.31611,18.88876],[80.29979,18.91112],[80.2762,18.92977],[80.27025,18.93988],[80.26912,18.94867],[80.27229,18.95775],[80.27431,18.97119],[80.2732,18.99237],[80.27401,18.99469],[80.28705,19.00682],[80.29153,19.00922],[80.30313,19.02216],[80.30516,19.02735],[80.30288,19.03491],[80.29824,19.04128],[80.29638,19.04688],[80.29734,19.04901],[80.31996,19.06588],[80.32967,19.07011],[80.32892,19.07591],[80.33114,19.08135],[80.32792,19.09505],[80.33962,19.10011],[80.33621,19.11185],[80.33068,19.12049],[80.33123,19.12795],[80.33,19.13272],[80.32743,19.13511],[80.33308,19.14552],[80.34068,19.14621],[80.34778,19.15236],[80.34789,19.16012],[80.38766,19.18051],[80.39384,19.1878],[80.39435,19.19637],[80.38393,19.21502],[80.38631,19.233],[80.38903,19.23797],[80.3955,19.24647],[80.42987,19.25408],[80.4377,19.25787],[80.44841,19.26663],[80.45473,19.27499],[80.45736,19.28834],[80.46303,19.30092],[80.47134,19.31383],[80.47705,19.32992],[80.4825,19.33814],[80.48834,19.34177],[80.49574,19.34323],[80.50681,19.34242],[80.52033,19.34777],[80.53843,19.37779],[80.54417,19.38388],[80.5521,19.38854],[80.56248,19.3991],[80.57593,19.40236],[80.58096,19.39789],[80.5918,19.37591],[80.58822,19.37026],[80.59084,19.3577],[80.59003,19.35177],[80.60766,19.32613],[80.60789,19.31823],[80.61254,19.30952],[80.61498,19.30983],[80.62329,19.30572],[80.63151,19.30717],[80.63649,19.31333],[80.64699,19.31649],[80.64836,19.31572],[80.65405,19.32281],[80.67313,19.33001],[80.6799,19.33033],[80.68613,19.32673],[80.69315,19.31555],[80.68865,19.29517],[80.6897,19.28698],[80.6957,19.28433],[80.69931,19.28474],[80.70185,19.2821],[80.70417,19.28309],[80.71076,19.28176],[80.72656,19.28718],[80.73832,19.28546],[80.74229,19.28708],[80.74313,19.28902],[80.75096,19.28776],[80.75529,19.28908],[80.75949,19.29125],[80.75974,19.29584],[80.76304,19.29719],[80.76861,19.30362],[80.77421,19.31358],[80.79022,19.3236],[80.79567,19.3234],[80.79883,19.32662],[80.80609,19.32751],[80.81007,19.33621],[80.83036,19.34818],[80.84608,19.35525],[80.85285,19.3639],[80.84905,19.36974],[80.84185,19.37191],[80.82839,19.38008],[80.82067,19.38116],[80.81733,19.38391],[80.81665,19.39715],[80.81223,19.40636],[80.80447,19.41195],[80.80429,19.41946],[80.79932,19.42272],[80.79585,19.43226],[80.81253,19.43276],[80.82306,19.43985],[80.82795,19.44014],[80.83013,19.44319],[80.84242,19.44691],[80.84759,19.44539],[80.85049,19.44669],[80.85345,19.44475],[80.85674,19.44604],[80.86437,19.44403],[80.87363,19.44499],[80.88001,19.4503],[80.89343,19.46658],[80.89768,19.48045],[80.89502,19.50079],[80.89294,19.5023],[80.89428,19.50369],[80.89321,19.50727],[80.89471,19.50962],[80.89496,19.51962],[80.8912,19.52051],[80.88369,19.52617],[80.87314,19.5187],[80.86851,19.52177],[80.86448,19.52004],[80.85621,19.523],[80.8499,19.52891],[80.84967,19.5345],[80.8437,19.53845],[80.8394,19.54921],[80.84065,19.55425],[80.83946,19.55941],[80.83559,19.56636],[80.82396,19.56672],[80.81615,19.5712],[80.81079,19.5689],[80.80633,19.56896],[80.797,19.56248],[80.78944,19.56042],[80.78113,19.56375],[80.77511,19.56251],[80.76703,19.57491],[80.76943,19.58667],[80.76532,19.59039],[80.76,19.59165],[80.75752,19.59667],[80.74588,19.60154],[80.74085,19.60623],[80.73308,19.6063],[80.73034,19.61018],[80.71465,19.6167],[80.70567,19.61398],[80.68847,19.61317],[80.67027,19.60932],[80.66533,19.61188],[80.66262,19.62248],[80.66637,19.63799],[80.66734,19.65771],[80.67425,19.68441],[80.67222,19.70072],[80.66344,19.70593],[80.65641,19.70709],[80.6502,19.71143],[80.64013,19.72531],[80.62676,19.72578],[80.6211,19.73303],[80.61397,19.73503],[80.61106,19.73817],[80.60572,19.73673],[80.59897,19.74031],[80.59438,19.73917],[80.5901,19.74222],[80.58647,19.74114],[80.58489,19.74408],[80.58141,19.746],[80.5842,19.74737],[80.58206,19.75082],[80.57382,19.75481],[80.57146,19.75923],[80.56215,19.76097],[80.55261,19.76556],[80.54374,19.7758],[80.54261,19.77992],[80.54244,19.78345],[80.54756,19.7949],[80.54522,19.80608],[80.5463,19.81827],[80.52021,19.83172],[80.50404,19.83085],[80.50037,19.82771],[80.48058,19.82751],[80.46888,19.81045],[80.47565,19.80362],[80.48497,19.80248],[80.48595,19.79648],[80.48999,19.79015],[80.49131,19.77529],[80.48903,19.77041],[80.48266,19.77274],[80.48083,19.78129],[80.46803,19.78882],[80.46426,19.79578],[80.4493,19.78977],[80.43949,19.79606],[80.42416,19.79916],[80.40488,19.79372],[80.4017,19.7962],[80.40769,19.806],[80.40162,19.81704],[80.41306,19.81639],[80.42158,19.8134],[80.42968,19.80714],[80.44072,19.81033],[80.46007,19.82299],[80.46908,19.82702],[80.4719,19.83556],[80.47869,19.83932],[80.48102,19.84927],[80.48417,19.85423],[80.48253,19.85881],[80.48629,19.86359],[80.49952,19.86968],[80.50582,19.87065],[80.49958,19.89084],[80.49143,19.90201],[80.47414,19.90381],[80.46862,19.90756],[80.46203,19.90438],[80.45717,19.89897],[80.45038,19.89633],[80.43322,19.90284],[80.42371,19.90259],[80.41388,19.90745],[80.40795,19.91271],[80.41257,19.92464],[80.41125,19.93849],[80.43015,19.94064],[80.45216,19.9576],[80.46603,19.94818],[80.47316,19.95095],[80.47912,19.944],[80.47998,19.94092],[80.47842,19.93844],[80.48073,19.93437],[80.48875,19.93061],[80.49593,19.93106],[80.50002,19.92861],[80.50474,19.92855],[80.50965,19.93105],[80.52362,19.93379],[80.52561,19.93731],[80.52989,19.93947],[80.53164,19.94857],[80.5389,19.95189],[80.53721,19.95931],[80.53939,19.96256],[80.5358,19.96553],[80.5378,19.96956],[80.53764,19.97379],[80.54378,19.97754],[80.5496,19.98597],[80.54985,20.00081],[80.54256,20.01077],[80.54697,20.01795],[80.54587,20.02116],[80.54684,20.02898],[80.55098,20.04164],[80.54931,20.05525],[80.55109,20.06164],[80.55437,20.06543],[80.55681,20.07188],[80.55491,20.07969],[80.544,20.09564],[80.54772,20.10542],[80.55193,20.10933],[80.55207,20.11796],[80.54034,20.12285],[80.53067,20.13172],[80.51241,20.13584],[80.50993,20.1413],[80.50559,20.14444],[80.49695,20.14553],[80.48508,20.14387],[80.46616,20.15042],[80.46015,20.15094],[80.45664,20.1493],[80.45465,20.14525],[80.45545,20.13793],[80.43338,20.13533],[80.42959,20.1361],[80.42593,20.13993],[80.40182,20.14724],[80.38854,20.1652],[80.39659,20.1739],[80.40069,20.18972],[80.41211,20.19447],[80.42101,20.19617],[80.42205,20.2068],[80.40483,20.21873],[80.39519,20.23701],[80.39526,20.24501],[80.39814,20.24427],[80.41678,20.24882],[80.42205,20.25349],[80.4369,20.26117],[80.44721,20.26246],[80.46694,20.27612],[80.47913,20.2783],[80.48991,20.27826],[80.51882,20.26617],[80.52256,20.27354],[80.5322,20.28086],[80.5435,20.29353],[80.54618,20.29766],[80.54604,20.30603],[80.54958,20.30896],[80.5592,20.30851],[80.58808,20.31792],[80.61052,20.3184],[80.61485,20.32239],[80.62237,20.32541],[80.62635,20.33263],[80.6258,20.33692],[80.62158,20.33956],[80.61854,20.34473],[80.61881,20.34913],[80.61511,20.35179],[80.6159,20.35991],[80.60948,20.36985],[80.61075,20.37506],[80.6038,20.38124],[80.59658,20.38384],[80.59729,20.38596],[80.59473,20.3858],[80.59148,20.39307],[80.59892,20.41058],[80.60009,20.41801],[80.60813,20.42415],[80.61364,20.43498],[80.61289,20.43871],[80.60805,20.44388],[80.60266,20.44621],[80.60217,20.44996],[80.6126,20.46193],[80.61635,20.48836],[80.61471,20.49256],[80.61932,20.50577],[80.61722,20.51066],[80.61885,20.51434],[80.61732,20.51517],[80.62088,20.52589],[80.61796,20.52545],[80.62132,20.5328],[80.61797,20.54658],[80.61527,20.5499],[80.61774,20.55212],[80.61843,20.55529],[80.62431,20.55577],[80.62406,20.55903],[80.62659,20.56381],[80.62587,20.56846],[80.62096,20.57006],[80.62108,20.57443],[80.62555,20.57813],[80.61735,20.58575],[80.62323,20.58923],[80.62406,20.59205],[80.63186,20.5984],[80.62829,20.60009],[80.61231,20.60051],[80.60502,20.60743],[80.60141,20.60879],[80.58077,20.60836],[80.56439,20.60362],[80.55783,20.59434],[80.54497,20.59018],[80.53884,20.585],[80.52093,20.58048],[80.50441,20.58335],[80.50284,20.59382],[80.49675,20.6024],[80.49415,20.6125],[80.49565,20.63685],[80.51793,20.65506],[80.53078,20.66011],[80.54491,20.66028],[80.55247,20.66809],[80.55697,20.67023],[80.58013,20.67292],[80.58765,20.68407],[80.5818,20.69741],[80.57485,20.70405],[80.56729,20.70737],[80.56515,20.71079],[80.56001,20.7262],[80.56284,20.734],[80.56276,20.74732],[80.55867,20.75122],[80.55166,20.76403],[80.55219,20.78087],[80.54917,20.79606],[80.55859,20.81158],[80.56174,20.82346],[80.55467,20.82228],[80.55095,20.82605],[80.53228,20.83038],[80.52248,20.83443]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"476","area_level":"District","area_name":"Gondia","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.20667,21.63561],[80.19278,21.63545],[80.18763,21.62854],[80.17029,21.62291],[80.16255,21.6153],[80.1602,21.61066],[80.15462,21.60647],[80.14561,21.60552],[80.13442,21.60823],[80.12867,21.61144],[80.12133,21.61088],[80.11797,21.60759],[80.11821,21.59852],[80.11606,21.59325],[80.11178,21.59108],[80.10062,21.5895],[80.09013,21.57455],[80.07221,21.55679],[80.06231,21.5534],[80.04081,21.55666],[80.03287,21.55621],[80.00053,21.53373],[79.98987,21.53597],[79.97952,21.55052],[79.96964,21.55835],[79.95948,21.55749],[79.95041,21.55435],[79.93761,21.55642],[79.93284,21.55504],[79.92219,21.5418],[79.9178,21.52441],[79.92122,21.52233],[79.92617,21.51364],[79.92822,21.50188],[79.92768,21.49543],[79.91821,21.48085],[79.89058,21.45605],[79.88951,21.45145],[79.87952,21.43852],[79.88035,21.4261],[79.8729,21.4214],[79.84786,21.41173],[79.82128,21.39142],[79.80272,21.38322],[79.79856,21.37914],[79.79596,21.37367],[79.80004,21.3576],[79.80296,21.35904],[79.8078,21.35697],[79.81037,21.35765],[79.81102,21.35498],[79.81322,21.35583],[79.8107,21.33892],[79.81157,21.33599],[79.81486,21.33527],[79.81296,21.32127],[79.82579,21.31956],[79.82878,21.31568],[79.82855,21.31296],[79.83154,21.31171],[79.83061,21.30951],[79.83345,21.31009],[79.83302,21.3028],[79.83134,21.30279],[79.8306,21.30007],[79.82837,21.30039],[79.82909,21.29233],[79.83123,21.29353],[79.83316,21.29224],[79.83613,21.28919],[79.83403,21.28718],[79.83782,21.2849],[79.82695,21.28092],[79.82597,21.27716],[79.82616,21.27312],[79.82888,21.27311],[79.8313,21.26341],[79.84925,21.25917],[79.85934,21.26156],[79.86328,21.25818],[79.86393,21.25186],[79.86118,21.251],[79.85971,21.2522],[79.85367,21.25161],[79.85335,21.25498],[79.84102,21.25689],[79.84011,21.25384],[79.84518,21.25221],[79.8555,21.24489],[79.85971,21.24776],[79.86301,21.24452],[79.86734,21.24985],[79.87414,21.24995],[79.88893,21.25593],[79.88943,21.25439],[79.88643,21.25327],[79.88675,21.25053],[79.89073,21.25255],[79.90262,21.25107],[79.90593,21.24472],[79.91049,21.2502],[79.92068,21.25575],[79.93899,21.25494],[79.95164,21.24411],[79.95583,21.23807],[79.96155,21.23688],[79.96605,21.23273],[79.97353,21.23256],[79.98193,21.23459],[79.98975,21.23385],[79.99432,21.22615],[79.99981,21.22237],[80.00278,21.21813],[80.011,21.21993],[80.02312,21.22865],[80.02653,21.22066],[80.02449,21.21302],[80.02844,21.21216],[80.03261,21.21353],[80.03661,21.21013],[80.04284,21.21024],[80.04933,21.20709],[80.05083,21.20247],[80.05468,21.20007],[80.06875,21.19595],[80.068,21.19108],[80.07004,21.18985],[80.06896,21.18885],[80.07215,21.18851],[80.07288,21.18698],[80.06898,21.18296],[80.07027,21.1805],[80.06906,21.17864],[80.07112,21.17875],[80.07062,21.17459],[80.06688,21.17269],[80.07151,21.16417],[80.07208,21.15557],[80.07416,21.15518],[80.08052,21.14775],[80.07849,21.13649],[80.07355,21.13488],[80.07398,21.12728],[80.07165,21.12647],[80.07259,21.11992],[80.08146,21.12052],[80.08212,21.1186],[80.07013,21.11314],[80.0675,21.10682],[80.06217,21.10217],[80.06101,21.09918],[80.06852,21.1001],[80.07537,21.09842],[80.07654,21.09345],[80.0697,21.08159],[80.08418,21.07564],[80.08428,21.0737],[80.07903,21.06244],[80.06881,21.05993],[80.07539,21.05766],[80.07507,21.05493],[80.08011,21.0511],[80.07995,21.04645],[80.07648,21.03875],[80.06304,21.03071],[80.06453,21.03013],[80.06604,21.0319],[80.0667,21.02916],[80.07466,21.0293],[80.07762,21.02773],[80.0783,21.0312],[80.08085,21.0312],[80.08051,21.03373],[80.08346,21.03535],[80.088,21.03324],[80.09322,21.03404],[80.09587,21.03284],[80.09454,21.02742],[80.09802,21.02668],[80.09905,21.01919],[80.0972,21.01677],[80.09784,21.01274],[80.09407,21.0105],[80.09395,21.00787],[80.09746,21.00531],[80.09666,21.00365],[80.09893,21.00041],[80.09871,20.99802],[80.10059,20.99803],[80.09993,20.99271],[80.1021,20.99043],[80.09346,20.99192],[80.08394,20.98667],[80.08188,20.9873],[80.08211,20.98947],[80.07637,20.98967],[80.07624,20.98828],[80.08239,20.98678],[80.08192,20.98241],[80.07482,20.96521],[80.07078,20.96537],[80.07072,20.96371],[80.07195,20.96393],[80.07093,20.95656],[80.0579,20.95825],[80.06207,20.94894],[80.05305,20.95324],[80.03718,20.96504],[80.03769,20.95868],[80.04549,20.95714],[80.03568,20.94771],[80.03037,20.94518],[80.0335,20.94986],[80.03453,20.957],[80.03178,20.95759],[80.01595,20.95557],[80.01308,20.95267],[80.00853,20.95412],[80.00216,20.94862],[79.99673,20.94978],[79.99553,20.95214],[79.99384,20.95069],[79.99142,20.9525],[79.9862,20.95281],[79.98584,20.95081],[79.98371,20.95187],[79.98122,20.94785],[79.97671,20.94714],[79.977,20.94939],[79.97536,20.94891],[79.97098,20.95361],[79.96431,20.95359],[79.95861,20.95122],[79.95701,20.94823],[79.9592,20.94531],[79.95418,20.9448],[79.95279,20.94112],[79.95433,20.93892],[79.96896,20.93997],[79.96908,20.93447],[79.96365,20.932],[79.96182,20.91736],[79.96309,20.91456],[79.96748,20.91378],[79.97012,20.90991],[79.97278,20.90002],[79.97151,20.89123],[79.97451,20.89238],[79.97721,20.89014],[79.97502,20.88644],[79.96466,20.88729],[79.96448,20.8809],[79.96968,20.88085],[79.97042,20.87435],[79.96548,20.85488],[79.97007,20.85542],[79.97435,20.83993],[79.97977,20.83595],[79.98429,20.84207],[79.98638,20.84811],[79.98363,20.85022],[79.98292,20.8552],[79.97993,20.85528],[79.98257,20.86211],[79.9841,20.86268],[79.98621,20.85992],[79.98751,20.8551],[79.99917,20.85048],[79.99293,20.83391],[79.98783,20.82697],[79.98183,20.82535],[79.97367,20.82657],[79.97193,20.82433],[79.96749,20.82573],[79.96747,20.83104],[79.96583,20.83185],[79.9588,20.82653],[79.95113,20.82612],[79.95914,20.81293],[79.9576,20.81343],[79.95663,20.80896],[79.95366,20.8066],[79.94755,20.80401],[79.94459,20.80447],[79.94054,20.80137],[79.9417,20.78839],[79.94959,20.78872],[79.94729,20.77994],[79.95345,20.77916],[79.95967,20.78341],[79.96717,20.78314],[79.9797,20.77303],[79.95535,20.76597],[79.95669,20.75277],[79.96052,20.75209],[79.96053,20.75063],[79.97143,20.74507],[79.96767,20.7369],[79.96252,20.73792],[79.95612,20.73137],[79.958,20.73035],[79.95615,20.72697],[79.95473,20.73008],[79.95282,20.72817],[79.94713,20.72911],[79.94707,20.72308],[79.94429,20.7209],[79.94757,20.71796],[79.95473,20.72016],[79.96156,20.71671],[79.96926,20.71532],[79.97122,20.71126],[79.9697,20.70481],[79.96523,20.69756],[79.96476,20.69424],[79.96655,20.69193],[79.97325,20.68566],[79.98026,20.68305],[79.98138,20.67842],[79.9873,20.67386],[79.9897,20.67305],[79.99643,20.67523],[80.00035,20.67411],[80.00625,20.66902],[80.00655,20.67095],[80.00951,20.67243],[80.00909,20.67387],[80.01422,20.67486],[80.01642,20.66714],[80.02841,20.68534],[80.03225,20.70006],[80.04604,20.70933],[80.05251,20.70908],[80.05488,20.71187],[80.05722,20.71084],[80.05878,20.71211],[80.07273,20.70546],[80.07882,20.697],[80.09325,20.69103],[80.10273,20.69093],[80.1129,20.69509],[80.11607,20.69413],[80.12076,20.68869],[80.12445,20.69045],[80.13337,20.69007],[80.13545,20.68457],[80.13987,20.6854],[80.14195,20.69132],[80.15401,20.69083],[80.15519,20.69466],[80.15686,20.69345],[80.16263,20.69384],[80.16637,20.68579],[80.17071,20.68263],[80.17308,20.68303],[80.17884,20.67739],[80.18478,20.67939],[80.18663,20.67665],[80.18782,20.67752],[80.18995,20.6755],[80.19473,20.677],[80.19525,20.67433],[80.19792,20.67395],[80.20174,20.67019],[80.20212,20.66731],[80.20499,20.6678],[80.20765,20.66556],[80.2118,20.66533],[80.21378,20.66309],[80.24262,20.65466],[80.24913,20.6586],[80.25234,20.664],[80.25216,20.66571],[80.25012,20.66637],[80.24895,20.67553],[80.25081,20.67897],[80.26793,20.67829],[80.27354,20.68098],[80.28115,20.70919],[80.29842,20.71028],[80.30907,20.72824],[80.30777,20.73216],[80.31188,20.74146],[80.32128,20.75314],[80.32236,20.76047],[80.32124,20.7654],[80.31818,20.76866],[80.31691,20.77618],[80.323,20.78964],[80.32105,20.79857],[80.32463,20.79782],[80.33024,20.80866],[80.3323,20.81991],[80.34062,20.82132],[80.35661,20.80929],[80.36074,20.80896],[80.3645,20.81227],[80.3674,20.81219],[80.38137,20.80656],[80.39159,20.80621],[80.40379,20.80885],[80.4142,20.82469],[80.42848,20.82463],[80.46169,20.82032],[80.46961,20.8217],[80.47353,20.82399],[80.48723,20.82486],[80.51205,20.83336],[80.5216,20.83468],[80.53228,20.83038],[80.55095,20.82605],[80.55467,20.82228],[80.56174,20.82346],[80.56123,20.83058],[80.55654,20.83784],[80.55504,20.84658],[80.55653,20.86089],[80.55393,20.87158],[80.55612,20.8892],[80.5481,20.91184],[80.54178,20.92392],[80.54294,20.92535],[80.54203,20.93022],[80.54628,20.93199],[80.54606,20.93501],[80.53902,20.93258],[80.53448,20.93459],[80.51907,20.92982],[80.50327,20.93135],[80.49295,20.92933],[80.4637,20.9292],[80.46175,20.93332],[80.46175,20.93984],[80.45472,20.94659],[80.4547,20.9528],[80.44535,20.97063],[80.44376,20.97719],[80.44553,20.97977],[80.44288,20.98645],[80.44377,20.99404],[80.43518,21.00148],[80.42581,21.00597],[80.42426,21.0085],[80.4251,21.01138],[80.42888,21.01169],[80.43581,21.02023],[80.43923,21.02184],[80.44012,21.02808],[80.44472,21.02799],[80.4495,21.03032],[80.45064,21.03684],[80.45264,21.03883],[80.4512,21.04284],[80.45393,21.05306],[80.4495,21.05726],[80.44956,21.06029],[80.44718,21.06326],[80.44966,21.06918],[80.44652,21.07341],[80.44629,21.08412],[80.44087,21.08984],[80.44164,21.0936],[80.43915,21.09656],[80.44647,21.1048],[80.4478,21.11242],[80.45345,21.11268],[80.4536,21.11156],[80.45812,21.11487],[80.45474,21.11828],[80.44517,21.12068],[80.44471,21.12196],[80.45875,21.15005],[80.46104,21.15727],[80.46081,21.16476],[80.46426,21.17503],[80.47337,21.17368],[80.4757,21.17099],[80.47861,21.17068],[80.48675,21.17676],[80.49206,21.17702],[80.49361,21.1796],[80.50045,21.18273],[80.50259,21.18532],[80.50731,21.18463],[80.50927,21.18601],[80.51499,21.18303],[80.51776,21.19281],[80.52963,21.20533],[80.54144,21.20109],[80.55947,21.2021],[80.56977,21.20581],[80.5779,21.21749],[80.58758,21.2221],[80.59819,21.22548],[80.60592,21.2242],[80.61378,21.22657],[80.61702,21.22929],[80.62312,21.24009],[80.635,21.24748],[80.63926,21.24732],[80.64384,21.25147],[80.64879,21.26216],[80.64917,21.27352],[80.65071,21.27738],[80.65908,21.28195],[80.65881,21.28669],[80.66124,21.29107],[80.66997,21.29116],[80.67957,21.29884],[80.6789,21.30333],[80.68156,21.31357],[80.67534,21.31775],[80.67487,21.32185],[80.6712,21.32565],[80.66556,21.32825],[80.66314,21.33437],[80.66005,21.33408],[80.65191,21.32713],[80.64491,21.32804],[80.62134,21.32037],[80.61116,21.32761],[80.60891,21.32714],[80.60786,21.32386],[80.59989,21.3268],[80.59779,21.33155],[80.58934,21.3336],[80.59142,21.34092],[80.58947,21.34372],[80.58457,21.34423],[80.58137,21.34699],[80.57657,21.34687],[80.57277,21.3428],[80.5667,21.34565],[80.56756,21.34824],[80.56503,21.3494],[80.56541,21.35399],[80.57019,21.35752],[80.56388,21.36497],[80.56074,21.36365],[80.55841,21.36734],[80.5543,21.3665],[80.55333,21.36856],[80.55083,21.36874],[80.54848,21.37114],[80.54316,21.37071],[80.5392,21.38271],[80.5318,21.38207],[80.52762,21.39487],[80.52519,21.39402],[80.52393,21.39122],[80.51712,21.3952],[80.51501,21.39176],[80.51122,21.39284],[80.50842,21.39082],[80.50168,21.3956],[80.50097,21.39851],[80.49521,21.39658],[80.48752,21.39796],[80.48419,21.39534],[80.48341,21.39881],[80.48109,21.40094],[80.47979,21.39673],[80.47647,21.3949],[80.47364,21.3969],[80.47093,21.39586],[80.46235,21.40263],[80.45756,21.40268],[80.45701,21.40046],[80.45826,21.40036],[80.4558,21.39826],[80.45632,21.39611],[80.4542,21.39526],[80.44973,21.38732],[80.45174,21.37806],[80.44863,21.37205],[80.44612,21.37109],[80.43705,21.37268],[80.43246,21.37383],[80.43061,21.37626],[80.41694,21.3752],[80.41224,21.37672],[80.40676,21.3817],[80.39638,21.40298],[80.39604,21.40811],[80.39812,21.4123],[80.40857,21.41842],[80.40891,21.42104],[80.4046,21.42502],[80.42216,21.44054],[80.4187,21.4426],[80.41799,21.4485],[80.41389,21.45731],[80.41108,21.45988],[80.40906,21.46737],[80.40372,21.46753],[80.39722,21.47159],[80.39042,21.47941],[80.39211,21.4867],[80.38397,21.4901],[80.38477,21.49974],[80.3765,21.52328],[80.36967,21.52843],[80.36606,21.52906],[80.36015,21.53446],[80.34434,21.53867],[80.33131,21.54754],[80.33068,21.55118],[80.33931,21.55508],[80.33191,21.56093],[80.32775,21.5714],[80.32137,21.57587],[80.31483,21.57731],[80.30325,21.5748],[80.29806,21.57581],[80.29523,21.58136],[80.29407,21.59332],[80.27985,21.59722],[80.27244,21.61313],[80.26673,21.61854],[80.25196,21.62496],[80.24584,21.62049],[80.23529,21.6224],[80.22148,21.62097],[80.21689,21.62565],[80.21898,21.62887],[80.21746,21.63343],[80.21452,21.63017],[80.21121,21.6339],[80.20667,21.63561]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"477","area_level":"District","area_name":"Hingoli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.01048,20.00346],[76.99581,20.01725],[76.99217,20.0171],[76.98835,19.99807],[76.9724,19.99641],[76.96189,19.98728],[76.94378,19.98484],[76.93377,19.97886],[76.92235,19.97587],[76.91274,19.96928],[76.90046,19.96426],[76.89956,19.95273],[76.89835,19.9531],[76.89538,19.94913],[76.88899,19.9528],[76.87315,19.9543],[76.87231,19.95828],[76.85984,19.96154],[76.83728,19.96391],[76.83296,19.95698],[76.83053,19.94735],[76.82136,19.9292],[76.80529,19.92992],[76.79524,19.93297],[76.77768,19.93405],[76.77229,19.93578],[76.77069,19.91892],[76.7654,19.90441],[76.7614,19.90493],[76.74715,19.91231],[76.74255,19.90188],[76.74367,19.88558],[76.74027,19.87331],[76.72132,19.86945],[76.70663,19.87202],[76.69857,19.87543],[76.69295,19.874],[76.69305,19.87059],[76.68929,19.86383],[76.69195,19.85961],[76.68854,19.85834],[76.68493,19.85026],[76.6812,19.84699],[76.66166,19.85325],[76.65495,19.85748],[76.65453,19.86013],[76.64681,19.86753],[76.63321,19.86899],[76.63173,19.86283],[76.62442,19.84859],[76.61893,19.84477],[76.61941,19.84132],[76.61083,19.83749],[76.6017,19.84298],[76.59989,19.84167],[76.59169,19.84451],[76.56965,19.84537],[76.56746,19.83989],[76.56409,19.83954],[76.54055,19.84657],[76.53959,19.84539],[76.5341,19.85027],[76.51902,19.85],[76.52132,19.84865],[76.52109,19.84457],[76.52277,19.8419],[76.51977,19.83994],[76.52105,19.83687],[76.51841,19.83636],[76.51723,19.83273],[76.51247,19.83183],[76.51305,19.82699],[76.51535,19.82692],[76.51277,19.82413],[76.52182,19.82138],[76.53558,19.82264],[76.53954,19.8181],[76.54378,19.82037],[76.55431,19.82075],[76.56326,19.81533],[76.56667,19.81706],[76.56998,19.82672],[76.58268,19.82638],[76.59413,19.83037],[76.60539,19.81047],[76.59734,19.80376],[76.59705,19.79957],[76.59985,19.79702],[76.60953,19.79349],[76.60998,19.79182],[76.60867,19.78914],[76.60574,19.78779],[76.59285,19.78443],[76.59238,19.78041],[76.59632,19.77715],[76.60505,19.77508],[76.61013,19.77652],[76.61548,19.78127],[76.62434,19.78225],[76.62731,19.78401],[76.62868,19.78595],[76.62804,19.79084],[76.62318,19.7966],[76.62288,19.79898],[76.62404,19.80206],[76.62737,19.80406],[76.63228,19.80311],[76.6395,19.78953],[76.64052,19.77657],[76.64199,19.7737],[76.64927,19.77383],[76.65876,19.77716],[76.66932,19.77548],[76.68661,19.76791],[76.68605,19.75763],[76.69118,19.75504],[76.69624,19.75634],[76.7006,19.76533],[76.70832,19.77006],[76.71688,19.76888],[76.72385,19.74963],[76.72362,19.74678],[76.7197,19.74316],[76.71993,19.7411],[76.72518,19.7376],[76.73584,19.73395],[76.7389,19.72944],[76.73863,19.72589],[76.73195,19.7204],[76.73235,19.71424],[76.74374,19.71131],[76.74789,19.70612],[76.74879,19.69693],[76.76069,19.68542],[76.77087,19.69289],[76.77213,19.6957],[76.77206,19.70321],[76.76705,19.71478],[76.76723,19.71915],[76.77836,19.73259],[76.78394,19.73131],[76.78962,19.72233],[76.78289,19.70366],[76.78694,19.68804],[76.7859,19.67621],[76.79105,19.67044],[76.79792,19.6721],[76.80716,19.68302],[76.81295,19.68054],[76.81894,19.67058],[76.8232,19.67263],[76.82544,19.67766],[76.82404,19.68582],[76.82131,19.69142],[76.81341,19.70047],[76.81922,19.70685],[76.84027,19.70252],[76.84964,19.70673],[76.85426,19.69091],[76.86357,19.67614],[76.86189,19.67147],[76.85209,19.66565],[76.84963,19.66225],[76.85033,19.65107],[76.85143,19.64759],[76.85671,19.64564],[76.87032,19.64659],[76.87533,19.637],[76.87003,19.63217],[76.86681,19.6268],[76.86714,19.62404],[76.87152,19.62147],[76.87699,19.62094],[76.88411,19.62646],[76.89693,19.64295],[76.90797,19.64527],[76.91082,19.64374],[76.91498,19.63726],[76.91365,19.62011],[76.91467,19.61756],[76.9262,19.61645],[76.93003,19.61107],[76.9263,19.61122],[76.92466,19.59823],[76.91618,19.59803],[76.90446,19.59029],[76.90338,19.58458],[76.89269,19.58253],[76.89036,19.57754],[76.89069,19.56784],[76.8889,19.56026],[76.88181,19.55059],[76.88519,19.54973],[76.8812,19.53727],[76.88239,19.53704],[76.88263,19.53375],[76.85699,19.53549],[76.85527,19.50704],[76.85548,19.50515],[76.86048,19.50451],[76.85609,19.49151],[76.86038,19.48173],[76.86594,19.4776],[76.86607,19.46823],[76.8876,19.46206],[76.88644,19.45688],[76.88083,19.45682],[76.87932,19.45287],[76.87378,19.45416],[76.87322,19.44864],[76.86796,19.4481],[76.86994,19.44451],[76.86618,19.44394],[76.86506,19.43901],[76.88069,19.43406],[76.8807,19.43194],[76.88714,19.43143],[76.88875,19.43277],[76.89587,19.42894],[76.90005,19.43832],[76.90072,19.44588],[76.92074,19.44306],[76.92525,19.4374],[76.92187,19.4263],[76.916,19.42401],[76.91957,19.4193],[76.9197,19.4153],[76.91138,19.4119],[76.90962,19.40355],[76.90453,19.39823],[76.90058,19.3874],[76.89215,19.37913],[76.89341,19.36557],[76.88858,19.35512],[76.88951,19.35019],[76.90048,19.33867],[76.90059,19.34298],[76.90247,19.34042],[76.90528,19.34093],[76.9066,19.33895],[76.90882,19.34055],[76.91606,19.33859],[76.91366,19.33568],[76.9094,19.33663],[76.90862,19.332],[76.89954,19.33324],[76.90095,19.32517],[76.89836,19.32062],[76.88929,19.32273],[76.88871,19.31785],[76.89444,19.31658],[76.89109,19.31102],[76.89116,19.30803],[76.89814,19.30359],[76.90068,19.29823],[76.92271,19.2983],[76.9229,19.31025],[76.93651,19.3078],[76.93917,19.31447],[76.94394,19.31461],[76.95621,19.32042],[76.96908,19.32045],[76.97928,19.31855],[76.98022,19.3197],[76.98436,19.31534],[76.98364,19.30944],[76.9866,19.30824],[76.98433,19.30305],[76.98588,19.28851],[76.99008,19.28783],[76.98934,19.28097],[76.99383,19.28077],[76.99523,19.2751],[77.00047,19.27282],[77.00236,19.28296],[77.02209,19.28519],[77.02205,19.27773],[77.01049,19.27402],[77.00975,19.26986],[77.01167,19.25386],[77.01873,19.25254],[77.02463,19.24766],[77.04041,19.24563],[77.05122,19.25227],[77.07835,19.2573],[77.0875,19.25317],[77.08845,19.24024],[77.09831,19.23579],[77.10157,19.23541],[77.11075,19.23858],[77.12586,19.23713],[77.13011,19.23174],[77.14038,19.22578],[77.15441,19.22178],[77.15787,19.22867],[77.16164,19.2298],[77.16301,19.23245],[77.17888,19.22627],[77.17905,19.22892],[77.18323,19.23233],[77.19189,19.2363],[77.1933,19.2444],[77.20309,19.24478],[77.20227,19.25511],[77.20607,19.25718],[77.21499,19.2669],[77.22018,19.27574],[77.23545,19.2752],[77.23777,19.31263],[77.24135,19.32286],[77.26389,19.31503],[77.28073,19.31602],[77.28112,19.32632],[77.28912,19.32591],[77.29838,19.32902],[77.30166,19.33322],[77.31074,19.33076],[77.31263,19.33751],[77.31168,19.35503],[77.33105,19.35701],[77.33818,19.35597],[77.35002,19.35222],[77.3492,19.34675],[77.36233,19.33954],[77.37866,19.33819],[77.38141,19.34106],[77.38532,19.33988],[77.38964,19.35231],[77.40001,19.35756],[77.40765,19.3661],[77.41361,19.36885],[77.41717,19.37666],[77.41653,19.38062],[77.4239,19.37867],[77.43522,19.37972],[77.44728,19.38634],[77.44866,19.39184],[77.44774,19.39361],[77.43596,19.40711],[77.4447,19.42095],[77.44815,19.44051],[77.47018,19.43799],[77.47373,19.45881],[77.48654,19.45816],[77.4849,19.47567],[77.48823,19.48238],[77.48643,19.48385],[77.48656,19.48711],[77.48884,19.48695],[77.4872,19.49075],[77.48931,19.49129],[77.48958,19.49324],[77.48801,19.49336],[77.48767,19.49541],[77.48444,19.49523],[77.48715,19.49795],[77.48465,19.49798],[77.47518,19.49131],[77.47003,19.4909],[77.46945,19.50129],[77.4676,19.50172],[77.46983,19.5284],[77.46759,19.52869],[77.4658,19.53314],[77.46439,19.54437],[77.46625,19.56407],[77.45263,19.562],[77.45252,19.56793],[77.4509,19.56905],[77.45652,19.58032],[77.47252,19.59353],[77.47687,19.59952],[77.47937,19.59958],[77.46314,19.60965],[77.4626,19.61145],[77.46651,19.6424],[77.46318,19.64275],[77.46165,19.64509],[77.46641,19.6563],[77.46652,19.66424],[77.46184,19.66519],[77.46244,19.66964],[77.45375,19.6732],[77.45377,19.67481],[77.4496,19.67372],[77.44969,19.67565],[77.45576,19.67705],[77.45903,19.68236],[77.45136,19.68801],[77.44364,19.68978],[77.44247,19.69364],[77.44941,19.70081],[77.44551,19.71212],[77.44112,19.71419],[77.4387,19.72518],[77.43343,19.72689],[77.43185,19.73047],[77.41442,19.73681],[77.41239,19.73951],[77.41341,19.74321],[77.4091,19.74562],[77.40102,19.73877],[77.39343,19.72809],[77.3844,19.72582],[77.38044,19.72941],[77.38141,19.73898],[77.37757,19.74376],[77.37649,19.74814],[77.38318,19.76609],[77.3932,19.76815],[77.40029,19.76647],[77.40208,19.76738],[77.40451,19.77299],[77.40416,19.77804],[77.40086,19.78128],[77.38104,19.78399],[77.37765,19.78685],[77.38419,19.80991],[77.39065,19.81277],[77.38946,19.81856],[77.38664,19.82375],[77.3765,19.82289],[77.36703,19.82609],[77.35677,19.8177],[77.35377,19.81735],[77.35045,19.81965],[77.34775,19.82486],[77.34403,19.82536],[77.34035,19.83125],[77.3415,19.83623],[77.35771,19.83525],[77.36084,19.83633],[77.35861,19.84178],[77.35218,19.84753],[77.35174,19.84983],[77.36357,19.85545],[77.36403,19.85889],[77.362,19.86145],[77.35149,19.8614],[77.34487,19.86391],[77.34353,19.86921],[77.3465,19.87426],[77.34549,19.87711],[77.33252,19.87811],[77.32545,19.88736],[77.31903,19.88965],[77.30772,19.88265],[77.29528,19.88433],[77.29195,19.89114],[77.29354,19.89528],[77.31222,19.89409],[77.31294,19.89634],[77.31045,19.90394],[77.31268,19.91458],[77.30662,19.91439],[77.29793,19.9062],[77.29223,19.90336],[77.28379,19.90604],[77.28319,19.91309],[77.27966,19.91776],[77.27116,19.91958],[77.26909,19.91757],[77.26957,19.90235],[77.26629,19.89764],[77.25581,19.90162],[77.25013,19.89488],[77.23652,19.88943],[77.23408,19.89746],[77.24562,19.9055],[77.23799,19.91268],[77.23678,19.92757],[77.23822,19.93453],[77.23526,19.93867],[77.22537,19.93717],[77.21635,19.93884],[77.21073,19.938],[77.20549,19.94211],[77.20386,19.94858],[77.20729,19.95526],[77.20839,19.96898],[77.21293,19.97064],[77.21489,19.97332],[77.20209,19.99063],[77.19744,19.9906],[77.19442,19.98878],[77.19334,19.98571],[77.17786,19.97976],[77.17298,19.9676],[77.16948,19.96451],[77.15409,19.96591],[77.13617,19.95268],[77.13552,19.94393],[77.13361,19.94189],[77.12503,19.94237],[77.12073,19.93991],[77.11408,19.93995],[77.10261,19.93143],[77.093,19.93523],[77.0931,19.94371],[77.08258,19.95554],[77.08467,19.964],[77.07079,19.9722],[77.06936,19.97567],[77.07042,19.98161],[77.06277,19.98521],[77.06163,19.99389],[77.05529,19.99681],[77.04206,19.99903],[77.03755,20.00473],[77.03669,20.00831],[77.03414,20.00933],[77.02549,20.00968],[77.02108,20.00385],[77.01756,20.00194],[77.01048,20.00346]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"478","area_level":"District","area_name":"Jalgaon","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.24309,21.40925],[75.24017,21.41236],[75.23327,21.41477],[75.2287,21.41426],[75.22119,21.40849],[75.21892,21.40834],[75.20656,21.4131],[75.18545,21.41063],[75.17326,21.40173],[75.16135,21.40402],[75.15853,21.40288],[75.15717,21.39659],[75.15013,21.38725],[75.13788,21.38207],[75.13793,21.37065],[75.13602,21.36126],[75.13847,21.35908],[75.13753,21.35797],[75.145,21.35462],[75.148,21.34905],[75.14228,21.34503],[75.13691,21.34939],[75.12867,21.34964],[75.12187,21.34608],[75.1203,21.343],[75.12276,21.33824],[75.13191,21.33671],[75.15295,21.32501],[75.14768,21.31684],[75.14018,21.31724],[75.1361,21.31553],[75.14011,21.3001],[75.13839,21.29026],[75.13573,21.28735],[75.12845,21.28442],[75.12647,21.27788],[75.1297,21.27187],[75.12614,21.26618],[75.11453,21.26036],[75.107,21.24603],[75.10623,21.23956],[75.09781,21.2321],[75.08988,21.23357],[75.0888,21.22859],[75.08717,21.22752],[75.07949,21.22764],[75.06755,21.22505],[75.05913,21.22021],[75.05515,21.21183],[75.04428,21.21036],[75.04075,21.20584],[75.03775,21.1916],[75.03211,21.19079],[75.02724,21.19279],[75.0241,21.19045],[75.01669,21.1918],[75.01361,21.18927],[75.01372,21.18737],[75.00344,21.18608],[74.99781,21.18761],[74.98948,21.1965],[74.98398,21.19995],[74.97857,21.21405],[74.97414,21.22001],[74.96549,21.22352],[74.95123,21.22163],[74.94429,21.22499],[74.94457,21.22152],[74.9479,21.21744],[74.95168,21.21459],[74.95755,21.2143],[74.95995,21.21078],[74.95984,21.20771],[74.95129,21.20409],[74.95044,21.20033],[74.95347,21.19889],[74.96361,21.19856],[74.96392,21.19454],[74.95827,21.18631],[74.9494,21.17788],[74.93574,21.17161],[74.93523,21.16781],[74.93282,21.16486],[74.91977,21.16551],[74.91042,21.1631],[74.90361,21.15565],[74.89333,21.1483],[74.88919,21.14206],[74.88407,21.12552],[74.88615,21.11467],[74.87323,21.10623],[74.86937,21.10121],[74.87298,21.08957],[74.86685,21.07378],[74.85975,21.06739],[74.85772,21.06127],[74.86286,21.05316],[74.88945,21.05147],[74.89258,21.04559],[74.89254,21.03921],[74.89934,21.0378],[74.91055,21.0305],[74.91558,21.01644],[74.91855,21.01405],[74.91532,21.0016],[74.91658,20.99009],[74.92684,20.98048],[74.92837,20.97811],[74.92712,20.97247],[74.93123,20.96915],[74.92871,20.96206],[74.9221,20.96429],[74.91712,20.963],[74.91098,20.96369],[74.91018,20.95572],[74.91211,20.9275],[74.93366,20.92623],[74.93328,20.91775],[74.94046,20.91609],[74.94178,20.91789],[74.94867,20.91462],[74.95409,20.90165],[74.96106,20.9019],[74.95918,20.89207],[74.96343,20.88389],[74.96833,20.88356],[74.96718,20.88162],[74.96856,20.8784],[74.96778,20.87172],[74.96364,20.85898],[74.96995,20.84631],[74.97728,20.84564],[74.98045,20.83927],[74.97977,20.83667],[74.98349,20.83212],[74.9847,20.82754],[74.98398,20.82146],[74.98139,20.82034],[74.97301,20.82188],[74.96564,20.81909],[74.96469,20.81256],[74.95885,20.80214],[74.96326,20.80049],[74.97588,20.77842],[74.98045,20.77687],[74.98212,20.77397],[74.98586,20.77192],[74.99031,20.76265],[74.99138,20.75477],[74.98941,20.7387],[74.98594,20.73347],[74.98121,20.73516],[74.97784,20.72847],[74.96974,20.72735],[74.96657,20.72366],[74.95867,20.71964],[74.94806,20.72163],[74.9478,20.71941],[74.95494,20.71586],[74.9556,20.71402],[74.9524,20.71213],[74.95025,20.70636],[74.95635,20.69042],[74.94091,20.67995],[74.94139,20.67344],[74.93749,20.6662],[74.93407,20.66433],[74.93046,20.65618],[74.89924,20.6563],[74.89906,20.65022],[74.8916,20.64268],[74.87469,20.64325],[74.87102,20.64047],[74.8621,20.63907],[74.85395,20.63442],[74.8404,20.63669],[74.84023,20.63154],[74.83031,20.63292],[74.82673,20.62823],[74.82294,20.62773],[74.81634,20.63174],[74.81271,20.63198],[74.81135,20.62461],[74.81265,20.61931],[74.81211,20.60993],[74.81074,20.59726],[74.80896,20.59436],[74.80977,20.58818],[74.80472,20.5878],[74.80103,20.5896],[74.79579,20.57948],[74.79279,20.57839],[74.79161,20.56647],[74.79389,20.56111],[74.79369,20.55459],[74.79965,20.55209],[74.79548,20.53966],[74.78084,20.53689],[74.76112,20.53743],[74.76043,20.53006],[74.76685,20.52241],[74.77101,20.50746],[74.77458,20.50675],[74.78022,20.50988],[74.78195,20.49972],[74.78388,20.49737],[74.78165,20.48984],[74.77727,20.4855],[74.77072,20.47243],[74.77356,20.47228],[74.77444,20.46998],[74.7881,20.47701],[74.79302,20.47803],[74.79836,20.47231],[74.7996,20.47046],[74.79875,20.45307],[74.80227,20.44565],[74.81338,20.44226],[74.81683,20.43741],[74.81517,20.43355],[74.8164,20.43104],[74.82264,20.42951],[74.83522,20.41936],[74.83779,20.41429],[74.83772,20.40728],[74.82869,20.40664],[74.82422,20.39823],[74.82705,20.39815],[74.83915,20.39137],[74.84331,20.38418],[74.8481,20.3845],[74.85154,20.38094],[74.85031,20.37894],[74.8519,20.37798],[74.85247,20.37439],[74.84926,20.37039],[74.85517,20.36396],[74.85413,20.35968],[74.85604,20.3584],[74.85453,20.35112],[74.8591,20.33904],[74.85922,20.33616],[74.85772,20.33599],[74.8648,20.33516],[74.86476,20.32839],[74.86296,20.32562],[74.86496,20.32028],[74.86364,20.31396],[74.85524,20.31367],[74.85618,20.29787],[74.85439,20.28739],[74.85171,20.28615],[74.86358,20.27645],[74.90558,20.27163],[74.91607,20.27587],[74.92279,20.27119],[74.93101,20.27005],[74.94478,20.27202],[74.94735,20.27414],[74.95419,20.27183],[74.94493,20.28783],[74.96632,20.30697],[74.98341,20.30564],[74.98396,20.29444],[75.00532,20.29369],[74.99441,20.32803],[74.99952,20.33596],[75.01199,20.32736],[75.02015,20.32452],[75.02498,20.31857],[75.02828,20.31897],[75.0408,20.31109],[75.04798,20.30839],[75.05203,20.30852],[75.05489,20.30576],[75.0564,20.30667],[75.0541,20.30934],[75.05549,20.31073],[75.05496,20.32392],[75.05649,20.3268],[75.05473,20.33009],[75.056,20.33334],[75.05858,20.33717],[75.07474,20.33855],[75.08976,20.33218],[75.08226,20.32149],[75.08182,20.31557],[75.08805,20.31561],[75.09049,20.31298],[75.0918,20.31556],[75.09443,20.31492],[75.0947,20.31282],[75.09933,20.31217],[75.10333,20.3078],[75.11089,20.31019],[75.11116,20.31722],[75.11501,20.3181],[75.1167,20.32287],[75.11533,20.32666],[75.12251,20.34971],[75.12241,20.36329],[75.1172,20.38225],[75.11634,20.39342],[75.11055,20.39492],[75.10583,20.41191],[75.11498,20.41567],[75.11834,20.42311],[75.12385,20.42331],[75.12296,20.42752],[75.12466,20.43197],[75.12652,20.42907],[75.1279,20.43097],[75.13756,20.43232],[75.13804,20.43397],[75.14567,20.43218],[75.15333,20.43283],[75.16168,20.44004],[75.17419,20.44242],[75.17469,20.44593],[75.17107,20.44952],[75.17411,20.45456],[75.17288,20.45639],[75.16971,20.45656],[75.16938,20.45499],[75.16671,20.45579],[75.16754,20.45878],[75.15817,20.45551],[75.15929,20.45847],[75.15762,20.45864],[75.15726,20.46107],[75.16041,20.46273],[75.16068,20.46482],[75.15712,20.46525],[75.15707,20.46647],[75.1598,20.47648],[75.17388,20.47794],[75.1752,20.4751],[75.1864,20.47257],[75.18688,20.47504],[75.19724,20.47543],[75.19595,20.48102],[75.19743,20.48784],[75.19656,20.49232],[75.20861,20.49204],[75.20505,20.49897],[75.21409,20.49848],[75.21775,20.49573],[75.22646,20.49441],[75.22292,20.50018],[75.22517,20.51555],[75.22597,20.51752],[75.2364,20.51919],[75.2379,20.5209],[75.23681,20.52605],[75.23852,20.52707],[75.23467,20.53582],[75.23552,20.53684],[75.24433,20.53603],[75.2441,20.54381],[75.24094,20.55145],[75.24826,20.55066],[75.25042,20.55242],[75.25013,20.55934],[75.25239,20.56239],[75.25335,20.56875],[75.25571,20.56887],[75.25536,20.57302],[75.25679,20.5748],[75.25886,20.5765],[75.26184,20.57565],[75.26331,20.56877],[75.2652,20.56663],[75.26739,20.56836],[75.27758,20.56963],[75.29117,20.56643],[75.29351,20.5696],[75.29266,20.57352],[75.3061,20.57463],[75.30676,20.57674],[75.31642,20.5746],[75.31474,20.58864],[75.31848,20.59162],[75.33494,20.59168],[75.33484,20.58918],[75.3543,20.58783],[75.35622,20.58957],[75.35441,20.59192],[75.35845,20.59607],[75.35912,20.59109],[75.36441,20.58267],[75.3646,20.57502],[75.38868,20.57781],[75.3912,20.56781],[75.3914,20.53774],[75.39568,20.52061],[75.40681,20.52202],[75.40949,20.51885],[75.41358,20.51818],[75.41662,20.51351],[75.42868,20.51161],[75.42523,20.5169],[75.42741,20.52282],[75.42447,20.52533],[75.4232,20.53038],[75.43161,20.53029],[75.43177,20.53227],[75.43365,20.53302],[75.43295,20.53504],[75.44671,20.53734],[75.44639,20.53212],[75.4483,20.53073],[75.45084,20.51995],[75.45447,20.51357],[75.46051,20.51822],[75.45741,20.52651],[75.45705,20.54835],[75.4558,20.55076],[75.46199,20.5512],[75.46397,20.54948],[75.46339,20.54549],[75.46491,20.54314],[75.4801,20.54313],[75.48124,20.5349],[75.48616,20.53074],[75.48705,20.52752],[75.49299,20.52364],[75.49534,20.52494],[75.49342,20.53273],[75.49587,20.53418],[75.49404,20.53816],[75.50639,20.54036],[75.50466,20.54281],[75.5043,20.55102],[75.51283,20.54917],[75.51618,20.55236],[75.51466,20.55586],[75.51561,20.55714],[75.51766,20.55647],[75.52191,20.55846],[75.52413,20.55547],[75.52566,20.55559],[75.526,20.55776],[75.52849,20.55599],[75.52168,20.57829],[75.52231,20.58609],[75.52059,20.59009],[75.53257,20.59118],[75.5331,20.59763],[75.53454,20.59686],[75.53638,20.60098],[75.53452,20.60092],[75.53498,20.60604],[75.53967,20.60593],[75.55221,20.59801],[75.55573,20.59835],[75.55746,20.6032],[75.55779,20.60581],[75.5558,20.60844],[75.56629,20.60397],[75.57032,20.60523],[75.57413,20.60268],[75.58122,20.60324],[75.58434,20.60098],[75.59296,20.59956],[75.60377,20.60118],[75.60362,20.60257],[75.61272,20.60276],[75.6114,20.60407],[75.61226,20.60839],[75.60882,20.6127],[75.60962,20.6143],[75.60617,20.61816],[75.60535,20.62166],[75.61987,20.6223],[75.627,20.62117],[75.62994,20.61635],[75.6436,20.61793],[75.64583,20.61674],[75.64992,20.62468],[75.65981,20.62432],[75.66118,20.63043],[75.65816,20.64019],[75.6616,20.6415],[75.65884,20.64969],[75.654,20.64954],[75.65731,20.66156],[75.66392,20.66623],[75.66621,20.66466],[75.66703,20.66831],[75.70358,20.65883],[75.70099,20.65339],[75.70008,20.63506],[75.69886,20.63487],[75.69535,20.62309],[75.69941,20.61401],[75.71292,20.61354],[75.72263,20.62066],[75.72242,20.61802],[75.73103,20.6101],[75.73084,20.60681],[75.74039,20.60716],[75.74306,20.61107],[75.75043,20.61082],[75.75424,20.61341],[75.75429,20.61056],[75.75874,20.6105],[75.75886,20.59946],[75.75634,20.58333],[75.75789,20.58296],[75.75698,20.57383],[75.77331,20.57482],[75.7764,20.58142],[75.78488,20.5835],[75.7921,20.58132],[75.78612,20.56189],[75.79703,20.56358],[75.79687,20.56138],[75.79829,20.56173],[75.80418,20.56733],[75.80685,20.56364],[75.80937,20.56385],[75.81771,20.55839],[75.82455,20.55638],[75.83147,20.55783],[75.83004,20.55623],[75.83125,20.55559],[75.84399,20.56257],[75.84727,20.56632],[75.83778,20.56653],[75.82814,20.5712],[75.83264,20.57409],[75.83254,20.59196],[75.8426,20.59275],[75.83843,20.59601],[75.83943,20.60012],[75.83748,20.605],[75.83678,20.61425],[75.85354,20.61273],[75.85464,20.62175],[75.86358,20.62181],[75.8675,20.61954],[75.86637,20.61493],[75.86958,20.61353],[75.86873,20.59783],[75.87708,20.59775],[75.87721,20.59649],[75.88529,20.59393],[75.8871,20.59167],[75.88595,20.58478],[75.88745,20.57279],[75.88292,20.56074],[75.89681,20.55769],[75.90414,20.558],[75.91225,20.55478],[75.91831,20.55432],[75.9266,20.54579],[75.93143,20.54844],[75.9303,20.54916],[75.93176,20.57611],[75.93084,20.58148],[75.9332,20.58249],[75.93069,20.58445],[75.93234,20.58665],[75.93585,20.58766],[75.93907,20.58485],[75.94482,20.58392],[75.94576,20.58053],[75.9483,20.58181],[75.94964,20.5807],[75.94859,20.57485],[75.94582,20.57328],[75.94923,20.56889],[75.94997,20.57013],[75.96392,20.56959],[75.96416,20.57117],[75.96568,20.57108],[75.96595,20.57761],[75.96362,20.58063],[75.97282,20.58041],[75.97463,20.58661],[75.97128,20.59049],[75.97269,20.59581],[75.97107,20.59841],[75.9667,20.5968],[75.96339,20.59865],[75.95844,20.60526],[75.9556,20.59909],[75.95329,20.60071],[75.95477,20.62058],[75.96549,20.62025],[75.9876,20.61608],[75.98941,20.6209],[75.99671,20.62263],[75.9977,20.62791],[76.00506,20.62946],[76.00842,20.63611],[76.00701,20.63874],[76.00821,20.64036],[76.00516,20.64304],[76.00683,20.64898],[76.0046,20.65121],[76.00406,20.65623],[75.99852,20.65768],[75.99765,20.66141],[75.995,20.66296],[75.99467,20.66691],[75.99767,20.66943],[75.99806,20.67309],[76.0005,20.67424],[76.00155,20.67778],[75.99958,20.68417],[76.00173,20.68592],[75.99602,20.68971],[75.99757,20.69288],[75.99425,20.69717],[75.99431,20.69987],[75.99774,20.7072],[75.99756,20.71378],[76.00609,20.71515],[76.01396,20.71901],[76.01641,20.72292],[76.01578,20.73017],[76.01196,20.73127],[76.01177,20.73731],[76.00716,20.74019],[76.00738,20.74148],[76.00154,20.74279],[75.99673,20.74072],[75.98441,20.75259],[75.98533,20.76099],[75.99369,20.76389],[75.9952,20.778],[76.01066,20.77983],[76.01262,20.78486],[76.04505,20.78449],[76.04769,20.78865],[76.05043,20.79003],[76.04902,20.79409],[76.05078,20.7951],[76.05225,20.79979],[76.05576,20.80244],[76.05488,20.80529],[76.0488,20.80925],[76.04865,20.81586],[76.05328,20.81693],[76.05595,20.82193],[76.05399,20.82335],[76.05627,20.82538],[76.06157,20.8251],[76.06534,20.83054],[76.07355,20.83242],[76.07116,20.83359],[76.0739,20.83836],[76.07377,20.84685],[76.07532,20.84498],[76.07699,20.84576],[76.08097,20.85067],[76.08182,20.85328],[76.08072,20.8545],[76.08342,20.8553],[76.08493,20.85816],[76.0836,20.85984],[76.08604,20.86075],[76.08503,20.86183],[76.09173,20.86363],[76.0906,20.86625],[76.09428,20.86757],[76.09893,20.87523],[76.10456,20.87619],[76.10704,20.87864],[76.10604,20.88042],[76.10987,20.88167],[76.11265,20.88667],[76.11355,20.89274],[76.11069,20.89093],[76.10944,20.89332],[76.10653,20.89244],[76.10291,20.89615],[76.10081,20.90157],[76.07784,20.90865],[76.07998,20.92819],[76.08653,20.92769],[76.08658,20.93561],[76.08834,20.9396],[76.08971,20.93944],[76.08981,20.94379],[76.10076,20.94564],[76.11167,20.95081],[76.11278,20.9625],[76.11839,20.97764],[76.12223,20.9754],[76.1286,20.97967],[76.13099,20.97933],[76.1327,20.98236],[76.14219,20.98804],[76.14153,20.9895],[76.14856,20.9981],[76.15378,21.00192],[76.15824,21.00279],[76.15978,21.0144],[76.16324,21.01825],[76.16462,21.02258],[76.16352,21.02425],[76.15985,21.02486],[76.16003,21.02757],[76.16162,21.02903],[76.16366,21.02767],[76.16483,21.03641],[76.16917,21.029],[76.19083,21.02097],[76.19506,21.01492],[76.20001,21.01129],[76.21108,21.00659],[76.21427,21.00808],[76.22378,21.00621],[76.22914,21.0032],[76.2359,20.99198],[76.23841,20.99036],[76.25164,20.98816],[76.26022,20.98217],[76.26619,20.98015],[76.27178,20.97176],[76.27707,20.96786],[76.27826,20.96539],[76.27768,20.95955],[76.27934,20.9574],[76.29911,20.9577],[76.31888,20.95097],[76.33247,20.95259],[76.33743,20.95163],[76.34314,20.95269],[76.34496,20.95126],[76.34599,20.95667],[76.35015,20.9552],[76.35221,20.95687],[76.35117,20.9614],[76.35432,20.96203],[76.35856,20.96874],[76.36617,20.97392],[76.36672,20.97814],[76.36837,20.97917],[76.38038,20.97702],[76.38188,20.98943],[76.3877,21.0035],[76.39009,21.01507],[76.38794,21.015],[76.39618,21.02394],[76.39625,21.03086],[76.39866,21.03313],[76.38854,21.05395],[76.38515,21.08194],[76.38223,21.07897],[76.38424,21.07629],[76.37477,21.07255],[76.37096,21.07273],[76.36631,21.07606],[76.35142,21.07699],[76.33858,21.07152],[76.29985,21.07384],[76.28013,21.07069],[76.27263,21.08874],[76.26038,21.09058],[76.24497,21.09044],[76.22929,21.08811],[76.22466,21.08498],[76.21181,21.08738],[76.20463,21.08539],[76.19087,21.08648],[76.18589,21.08488],[76.18064,21.08031],[76.1674,21.07948],[76.16843,21.08567],[76.17385,21.08968],[76.17044,21.09388],[76.17089,21.10393],[76.16348,21.10488],[76.15862,21.1094],[76.15382,21.10805],[76.13793,21.11985],[76.13442,21.12415],[76.13163,21.1328],[76.13541,21.12921],[76.13715,21.13189],[76.14101,21.12971],[76.14247,21.13515],[76.1347,21.14266],[76.133,21.14823],[76.12838,21.15265],[76.12006,21.15547],[76.11656,21.1538],[76.11348,21.15539],[76.11141,21.16115],[76.11158,21.16677],[76.1138,21.16616],[76.11888,21.17159],[76.12283,21.17312],[76.12379,21.17182],[76.12706,21.17362],[76.12693,21.17513],[76.13333,21.17596],[76.13386,21.16941],[76.16629,21.16951],[76.16798,21.16638],[76.17169,21.16656],[76.17146,21.17954],[76.1764,21.184],[76.17306,21.18857],[76.16521,21.19047],[76.16629,21.19972],[76.17161,21.19896],[76.17192,21.2053],[76.1697,21.20541],[76.1697,21.20665],[76.16334,21.20651],[76.16326,21.21313],[76.15864,21.21359],[76.16566,21.22162],[76.14204,21.22816],[76.14156,21.24099],[76.1454,21.24365],[76.15143,21.24353],[76.15061,21.2464],[76.15358,21.24622],[76.15226,21.24846],[76.155,21.24967],[76.15387,21.25193],[76.15733,21.25139],[76.15941,21.25359],[76.15936,21.25597],[76.15718,21.25961],[76.15559,21.25702],[76.15429,21.2577],[76.154,21.26513],[76.15193,21.26446],[76.15116,21.26799],[76.14848,21.26906],[76.14663,21.26787],[76.14293,21.28623],[76.12974,21.2867],[76.1259,21.29852],[76.12147,21.32337],[76.11894,21.32597],[76.11668,21.33495],[76.0966,21.37177],[76.04859,21.34973],[76.0305,21.36533],[75.98662,21.36877],[75.96306,21.38971],[75.95222,21.38958],[75.94171,21.38584],[75.92901,21.38659],[75.91066,21.38257],[75.90324,21.3917],[75.89419,21.39129],[75.89036,21.39467],[75.88561,21.39471],[75.88306,21.39295],[75.87505,21.39288],[75.87035,21.39123],[75.86978,21.3864],[75.86415,21.3811],[75.86256,21.38216],[75.86246,21.37992],[75.85604,21.3802],[75.85571,21.38232],[75.85316,21.38338],[75.84794,21.38134],[75.84332,21.38195],[75.84139,21.38454],[75.83417,21.37957],[75.83336,21.37664],[75.83071,21.37696],[75.83073,21.37821],[75.81304,21.37906],[75.80273,21.38457],[75.80093,21.38335],[75.79042,21.3846],[75.78783,21.38281],[75.78646,21.38413],[75.77702,21.38452],[75.77382,21.38205],[75.75514,21.37938],[75.75113,21.38466],[75.73656,21.38827],[75.73253,21.38711],[75.72847,21.38868],[75.71877,21.38436],[75.71617,21.3856],[75.71576,21.38798],[75.70949,21.38619],[75.70324,21.38807],[75.6928,21.38369],[75.69223,21.38487],[75.68761,21.38408],[75.6848,21.38025],[75.67375,21.37708],[75.67009,21.37458],[75.66585,21.37745],[75.65922,21.37641],[75.65772,21.37877],[75.64817,21.37699],[75.64661,21.37874],[75.64127,21.37488],[75.63641,21.37742],[75.62303,21.37502],[75.62352,21.37708],[75.62002,21.37596],[75.6198,21.37897],[75.61667,21.38177],[75.61632,21.38809],[75.61051,21.3907],[75.60729,21.38895],[75.60694,21.39184],[75.60364,21.39123],[75.59921,21.38565],[75.59653,21.38771],[75.59169,21.38624],[75.58734,21.38923],[75.58155,21.38464],[75.57234,21.38247],[75.57145,21.37951],[75.57848,21.37895],[75.57994,21.37774],[75.57895,21.37648],[75.56577,21.37414],[75.56215,21.37629],[75.55717,21.37322],[75.5564,21.37461],[75.55827,21.37852],[75.55593,21.37903],[75.55242,21.3753],[75.54617,21.37242],[75.54645,21.36881],[75.54372,21.36853],[75.5412,21.36934],[75.54138,21.37341],[75.53502,21.37357],[75.53086,21.3787],[75.52551,21.38005],[75.52005,21.38702],[75.51201,21.38209],[75.49755,21.38751],[75.49416,21.38561],[75.47575,21.38658],[75.46794,21.39045],[75.45755,21.38745],[75.44933,21.39041],[75.44015,21.38446],[75.43118,21.38671],[75.42613,21.39101],[75.4204,21.38782],[75.40779,21.38738],[75.39792,21.37988],[75.39018,21.38087],[75.38244,21.37954],[75.37591,21.38661],[75.37541,21.39049],[75.37044,21.39209],[75.36597,21.39649],[75.35716,21.40087],[75.35563,21.40015],[75.35438,21.39316],[75.3516,21.39083],[75.33194,21.39136],[75.31541,21.38793],[75.30785,21.39279],[75.29874,21.38557],[75.29624,21.39023],[75.30013,21.3917],[75.29858,21.40122],[75.3011,21.40994],[75.29533,21.41357],[75.28737,21.41188],[75.28017,21.40723],[75.26422,21.4074],[75.25484,21.40189],[75.24907,21.40348],[75.24309,21.40925]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"479","area_level":"District","area_name":"Jalna","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[75.58367,19.96449],[75.58358,19.96504],[75.58262,19.96529],[75.58229,19.96622],[75.58128,19.96667],[75.57592,19.96755],[75.56784,19.96706],[75.56163,19.96485],[75.56245,19.96242],[75.55826,19.96054],[75.5588,19.95726],[75.56189,19.95619],[75.5642,19.95167],[75.56352,19.94637],[75.56226,19.94567],[75.56188,19.94375],[75.56279,19.94172],[75.56262,19.94099],[75.5621,19.94056],[75.56207,19.9398],[75.56742,19.93632],[75.56811,19.93563],[75.57287,19.93554],[75.58981,19.94102],[75.59215,19.94271],[75.59256,19.94996],[75.5953,19.9506],[75.59547,19.95109],[75.59553,19.95665],[75.59624,19.9602],[75.59294,19.96046],[75.59272,19.96123],[75.58986,19.96217],[75.58972,19.96278],[75.58565,19.9636],[75.58567,19.96448],[75.58367,19.96449]]],[[[75.87524,20.55339],[75.8659,20.55922],[75.86036,20.55983],[75.87865,20.53671],[75.88015,20.53241],[75.8841,20.5305],[75.88368,20.52702],[75.88237,20.52423],[75.87947,20.5228],[75.87722,20.52503],[75.87182,20.5265],[75.87176,20.52807],[75.86059,20.5238],[75.86038,20.5201],[75.8624,20.51986],[75.85897,20.50348],[75.85291,20.50315],[75.85294,20.50066],[75.8499,20.5009],[75.84944,20.49188],[75.84746,20.48828],[75.8492,20.48306],[75.85394,20.48171],[75.85426,20.48022],[75.85881,20.48141],[75.85855,20.47694],[75.86151,20.47658],[75.86159,20.46541],[75.8709,20.46128],[75.86949,20.45506],[75.88877,20.44783],[75.89129,20.4483],[75.89132,20.44618],[75.89406,20.44538],[75.88182,20.44494],[75.8776,20.43741],[75.8726,20.44015],[75.86266,20.4399],[75.86241,20.44224],[75.86478,20.44271],[75.8644,20.44732],[75.85512,20.46022],[75.85156,20.46074],[75.84607,20.4579],[75.84097,20.45757],[75.83606,20.45963],[75.83309,20.46604],[75.82647,20.4688],[75.8268,20.47104],[75.8197,20.47209],[75.81515,20.46976],[75.81119,20.46324],[75.80396,20.46347],[75.79677,20.46125],[75.79457,20.45024],[75.77894,20.45501],[75.7711,20.45525],[75.76907,20.45278],[75.76398,20.45198],[75.7581,20.43563],[75.75855,20.43026],[75.75576,20.42306],[75.74137,20.42144],[75.73749,20.4193],[75.73263,20.40713],[75.73705,20.40596],[75.73933,20.40341],[75.74246,20.40434],[75.74918,20.40223],[75.75055,20.38898],[75.74651,20.37942],[75.7456,20.37058],[75.75738,20.36843],[75.75813,20.35914],[75.766,20.34986],[75.77055,20.33639],[75.76415,20.33622],[75.76096,20.32824],[75.75453,20.32579],[75.74322,20.3262],[75.74246,20.33493],[75.73363,20.33345],[75.72982,20.32733],[75.71643,20.33041],[75.70777,20.31283],[75.68178,20.30633],[75.68195,20.3023],[75.68412,20.30147],[75.69106,20.29139],[75.69219,20.28635],[75.6951,20.28234],[75.69003,20.26514],[75.6861,20.26402],[75.68241,20.25895],[75.67999,20.25852],[75.6742,20.23325],[75.67396,20.23149],[75.68023,20.22876],[75.68125,20.19817],[75.67866,20.19079],[75.6736,20.18375],[75.64601,20.18814],[75.64083,20.16655],[75.6412,20.15794],[75.63741,20.1393],[75.63362,20.1358],[75.6324,20.11917],[75.62576,20.1081],[75.62416,20.10027],[75.58636,20.0979],[75.58536,20.08643],[75.58756,20.06645],[75.58985,20.06564],[75.58867,20.06358],[75.59081,20.06096],[75.59837,20.06183],[75.5972,20.05842],[75.60432,20.05338],[75.60062,20.04942],[75.59487,20.0322],[75.58842,20.02393],[75.58993,20.01778],[75.592,20.01626],[75.59245,20.00638],[75.59809,20.00526],[75.59957,19.99951],[75.60736,20.00135],[75.6225,19.99993],[75.63018,20.00385],[75.63254,20.00686],[75.63343,20.0116],[75.63908,20.0102],[75.63974,20.00775],[75.64447,20.00698],[75.64581,19.99618],[75.64212,19.98279],[75.64393,19.97555],[75.64859,19.97264],[75.64806,19.97135],[75.65069,19.9686],[75.65576,19.96584],[75.65485,19.95777],[75.6511,19.94973],[75.65416,19.94635],[75.65747,19.94538],[75.6583,19.94793],[75.66194,19.94947],[75.66365,19.94543],[75.66921,19.94402],[75.66871,19.94214],[75.67353,19.9398],[75.67417,19.9331],[75.67719,19.93083],[75.6806,19.92452],[75.67972,19.91823],[75.67754,19.91654],[75.67289,19.91699],[75.67104,19.91438],[75.66367,19.91218],[75.65678,19.91251],[75.65257,19.87673],[75.64942,19.87643],[75.64778,19.87023],[75.64671,19.85848],[75.64811,19.85428],[75.64489,19.8421],[75.65591,19.84095],[75.65666,19.83334],[75.65811,19.83394],[75.65772,19.82966],[75.66,19.82921],[75.6585,19.82252],[75.65548,19.81443],[75.65358,19.81336],[75.6336,19.81168],[75.63345,19.80695],[75.63947,19.79988],[75.64125,19.79299],[75.64495,19.79314],[75.64442,19.78006],[75.63401,19.77812],[75.6361,19.77237],[75.62359,19.772],[75.62254,19.75748],[75.62272,19.755],[75.62586,19.75495],[75.62478,19.74585],[75.62616,19.74552],[75.62646,19.74245],[75.62524,19.73637],[75.63196,19.73486],[75.62963,19.70775],[75.62859,19.70394],[75.62519,19.70424],[75.62568,19.69543],[75.6314,19.67627],[75.63139,19.66772],[75.62924,19.66032],[75.62794,19.6567],[75.62541,19.65594],[75.60513,19.65783],[75.60386,19.64349],[75.58515,19.6383],[75.58875,19.62202],[75.59046,19.62194],[75.59219,19.61801],[75.59375,19.61801],[75.59358,19.61016],[75.59166,19.60996],[75.59799,19.60012],[75.59912,19.60143],[75.60886,19.60163],[75.60987,19.59788],[75.63994,19.59433],[75.64921,19.59544],[75.65086,19.58574],[75.65289,19.58591],[75.6502,19.57817],[75.65264,19.57545],[75.65228,19.57133],[75.65604,19.56815],[75.6549,19.56045],[75.64799,19.54613],[75.64656,19.53887],[75.64274,19.53886],[75.63993,19.52089],[75.64221,19.50209],[75.64156,19.49622],[75.63701,19.47809],[75.63101,19.46735],[75.63154,19.46464],[75.62937,19.46028],[75.62646,19.46059],[75.6139,19.46765],[75.61275,19.46122],[75.6086,19.45227],[75.60468,19.45218],[75.60327,19.42754],[75.61276,19.42515],[75.6108,19.40434],[75.60613,19.38354],[75.61982,19.37467],[75.62573,19.37337],[75.64011,19.38145],[75.65076,19.36857],[75.65574,19.36716],[75.67244,19.3676],[75.67532,19.36536],[75.67552,19.35826],[75.67966,19.35565],[75.68657,19.35506],[75.69985,19.35902],[75.71424,19.35422],[75.72455,19.35753],[75.7367,19.3572],[75.74119,19.35854],[75.75093,19.35608],[75.75335,19.35845],[75.7614,19.3758],[75.7562,19.38458],[75.75641,19.38766],[75.76433,19.39259],[75.77933,19.39616],[75.7854,19.39954],[75.78897,19.40018],[75.79305,19.39827],[75.81936,19.38267],[75.82447,19.37765],[75.83529,19.37182],[75.84048,19.37148],[75.85788,19.37562],[75.87314,19.38329],[75.87993,19.38376],[75.89013,19.37872],[75.89314,19.37957],[75.90375,19.3906],[75.91203,19.39217],[75.91866,19.38858],[75.92503,19.3827],[75.91792,19.37314],[75.91763,19.36543],[75.91551,19.36143],[75.90987,19.35789],[75.90522,19.34698],[75.90343,19.3379],[75.90649,19.31833],[75.91822,19.30344],[75.9229,19.29949],[75.93516,19.29338],[75.94285,19.29189],[75.96042,19.30173],[75.97684,19.30526],[76.00342,19.32687],[76.01002,19.33575],[76.0149,19.3379],[76.0202,19.33764],[76.02369,19.33325],[76.02093,19.32946],[76.02515,19.31463],[76.02512,19.29944],[76.03226,19.28814],[76.03967,19.28364],[76.05623,19.28499],[76.07107,19.27895],[76.08793,19.28094],[76.09084,19.28501],[76.09634,19.30426],[76.09839,19.30667],[76.1027,19.30807],[76.10892,19.30606],[76.11118,19.30355],[76.11347,19.29619],[76.1155,19.29621],[76.12161,19.30252],[76.12568,19.30335],[76.12895,19.3021],[76.13361,19.29318],[76.1395,19.29117],[76.14401,19.29125],[76.15174,19.29579],[76.16036,19.29539],[76.16029,19.28582],[76.16268,19.28343],[76.17119,19.28357],[76.17963,19.28841],[76.19531,19.2859],[76.2076,19.27699],[76.20848,19.28069],[76.21169,19.28],[76.21282,19.2814],[76.21869,19.293],[76.20777,19.29784],[76.20708,19.29985],[76.20817,19.30981],[76.21118,19.319],[76.23021,19.31347],[76.23233,19.31719],[76.23682,19.31793],[76.23581,19.32617],[76.23948,19.33655],[76.24184,19.33738],[76.26331,19.33387],[76.27549,19.34438],[76.27621,19.34655],[76.26174,19.35318],[76.25742,19.35664],[76.26175,19.36693],[76.2828,19.36562],[76.28388,19.37446],[76.28764,19.38158],[76.29002,19.39413],[76.29011,19.39674],[76.28439,19.39738],[76.28884,19.43307],[76.3014,19.43178],[76.31323,19.4667],[76.3169,19.46458],[76.32264,19.45717],[76.32663,19.45567],[76.333,19.4563],[76.33593,19.45365],[76.33992,19.45533],[76.34283,19.47285],[76.36422,19.4708],[76.36721,19.48362],[76.37613,19.50715],[76.36837,19.50935],[76.37572,19.53695],[76.392,19.53144],[76.39568,19.54112],[76.41218,19.53827],[76.41272,19.53455],[76.41556,19.53401],[76.43728,19.53962],[76.43855,19.54174],[76.44214,19.54156],[76.44546,19.55252],[76.44457,19.56634],[76.44794,19.58474],[76.4365,19.58695],[76.43777,19.60018],[76.43237,19.60216],[76.44161,19.61339],[76.45088,19.61428],[76.45626,19.63676],[76.45361,19.64092],[76.44466,19.64066],[76.4494,19.65968],[76.45256,19.66652],[76.4617,19.6643],[76.46546,19.66562],[76.46868,19.67086],[76.47017,19.67918],[76.48152,19.67805],[76.48713,19.68106],[76.48794,19.68418],[76.48838,19.70185],[76.48445,19.71343],[76.4839,19.72144],[76.45939,19.72519],[76.46011,19.72975],[76.45833,19.73746],[76.45954,19.74725],[76.48367,19.74486],[76.48803,19.75452],[76.48712,19.7588],[76.48828,19.76372],[76.49633,19.76083],[76.49944,19.76395],[76.50156,19.76219],[76.51015,19.76082],[76.51272,19.77141],[76.49736,19.77294],[76.48666,19.77925],[76.48737,19.78112],[76.48206,19.78666],[76.48345,19.79763],[76.48446,19.80017],[76.49531,19.7986],[76.50361,19.80006],[76.51145,19.79897],[76.51449,19.80822],[76.51385,19.81473],[76.51103,19.81885],[76.51295,19.82507],[76.51535,19.82692],[76.51305,19.82699],[76.51247,19.83183],[76.51723,19.83273],[76.51841,19.83636],[76.52105,19.83687],[76.51977,19.83994],[76.52277,19.8419],[76.52109,19.84457],[76.52132,19.84865],[76.51902,19.85],[76.5341,19.85027],[76.53401,19.85764],[76.53117,19.86176],[76.53451,19.86553],[76.51852,19.87281],[76.51698,19.87422],[76.5187,19.87593],[76.51817,19.87826],[76.51447,19.87869],[76.51224,19.87673],[76.50649,19.87801],[76.50189,19.88878],[76.49544,19.89443],[76.49276,19.8938],[76.49081,19.89797],[76.49058,19.90692],[76.49357,19.92016],[76.46247,19.91952],[76.45773,19.9203],[76.45348,19.92336],[76.44656,19.92244],[76.44112,19.91729],[76.42144,19.92049],[76.40529,19.9198],[76.40204,19.91286],[76.40216,19.9098],[76.39282,19.90492],[76.38739,19.90861],[76.38606,19.91468],[76.38393,19.91696],[76.36602,19.9285],[76.36458,19.92278],[76.35485,19.91017],[76.35484,19.89687],[76.35166,19.89652],[76.3466,19.89272],[76.3423,19.89444],[76.33976,19.88676],[76.33646,19.88368],[76.32666,19.88598],[76.31542,19.87724],[76.30014,19.8776],[76.29307,19.8708],[76.29176,19.87249],[76.26981,19.87616],[76.25919,19.87524],[76.25543,19.87629],[76.25435,19.87334],[76.24912,19.87094],[76.24168,19.87218],[76.22951,19.86514],[76.21447,19.86795],[76.20754,19.86394],[76.19683,19.8654],[76.19427,19.85881],[76.18595,19.85489],[76.18175,19.84807],[76.16586,19.85469],[76.16419,19.85486],[76.16398,19.85272],[76.14839,19.85595],[76.1476,19.84364],[76.14429,19.84489],[76.13993,19.84407],[76.13533,19.84677],[76.13573,19.85195],[76.12933,19.86502],[76.12074,19.86451],[76.11848,19.86009],[76.1052,19.86012],[76.09755,19.85696],[76.09282,19.87205],[76.08091,19.88055],[76.08001,19.89847],[76.08112,19.91254],[76.05858,19.91868],[76.05749,19.92981],[76.04783,19.93562],[76.05233,19.94025],[76.04814,19.94597],[76.04264,19.94708],[76.04124,19.94596],[76.0409,19.94967],[76.03547,19.94964],[76.03259,19.94721],[76.03047,19.95007],[76.02665,19.94786],[76.02704,19.95044],[76.01126,19.95376],[76.01255,19.96935],[76.01146,19.97371],[76.0087,19.97432],[76.00029,19.97098],[75.99407,19.97612],[75.98936,19.97404],[75.98809,19.98067],[75.97178,19.98266],[75.96763,19.98631],[75.9625,19.99491],[75.96565,20.00279],[75.97333,20.00226],[75.97665,20.00407],[75.98609,20.00473],[75.99934,20.01271],[76.00365,20.0138],[76.00618,20.01242],[76.01088,20.02197],[76.02332,20.0243],[76.02127,20.04991],[76.0188,20.0584],[76.03519,20.0619],[76.0522,20.06206],[76.05559,20.06599],[76.06336,20.06856],[76.06953,20.0728],[76.06228,20.08449],[76.05818,20.08686],[76.0519,20.08519],[76.05446,20.09635],[76.05807,20.09885],[76.06716,20.09804],[76.07203,20.10027],[76.08074,20.10023],[76.08171,20.09818],[76.08424,20.09799],[76.08447,20.09965],[76.08656,20.10029],[76.0883,20.09559],[76.09164,20.09424],[76.09266,20.09639],[76.09473,20.0963],[76.09563,20.10587],[76.09926,20.11594],[76.09846,20.13049],[76.10572,20.13258],[76.10841,20.14844],[76.10798,20.15236],[76.10541,20.15314],[76.10881,20.16243],[76.11942,20.16086],[76.11885,20.16236],[76.12098,20.1644],[76.1203,20.16735],[76.12388,20.16777],[76.12513,20.17064],[76.12353,20.1737],[76.12638,20.17409],[76.12763,20.17959],[76.13361,20.18485],[76.13197,20.19875],[76.14514,20.19958],[76.14985,20.20595],[76.148,20.20876],[76.13937,20.21275],[76.13753,20.21788],[76.13293,20.22244],[76.13928,20.23126],[76.1447,20.23215],[76.14993,20.2371],[76.16639,20.23843],[76.16803,20.2544],[76.16971,20.25833],[76.17327,20.26048],[76.17332,20.26579],[76.17782,20.26604],[76.1849,20.27909],[76.18717,20.28886],[76.19382,20.30015],[76.1723,20.30218],[76.16852,20.29491],[76.15505,20.30275],[76.14091,20.30053],[76.14292,20.30509],[76.14648,20.30578],[76.14764,20.31057],[76.13655,20.31838],[76.12922,20.31728],[76.12963,20.32239],[76.12472,20.32496],[76.12374,20.3331],[76.12801,20.33885],[76.12613,20.34493],[76.12096,20.34192],[76.12104,20.34662],[76.11472,20.34603],[76.10822,20.3504],[76.10821,20.35401],[76.09866,20.3544],[76.09971,20.35035],[76.09654,20.34738],[76.09426,20.34723],[76.08974,20.35157],[76.0923,20.35411],[76.09303,20.35808],[76.0919,20.35951],[76.08665,20.3597],[76.08577,20.36524],[76.07608,20.3581],[76.07146,20.34904],[76.06919,20.3491],[76.06138,20.34316],[76.05226,20.34221],[76.04683,20.33712],[76.04568,20.33245],[76.03835,20.32259],[76.03208,20.30825],[76.02837,20.28906],[76.02002,20.28825],[76.00124,20.29078],[76.00438,20.30643],[75.99255,20.3108],[75.99119,20.30871],[75.97525,20.30775],[75.97641,20.31443],[75.97001,20.31583],[75.96702,20.31599],[75.96461,20.31148],[75.95171,20.3023],[75.94943,20.29853],[75.92887,20.30221],[75.92417,20.31295],[75.92311,20.32063],[75.92885,20.32576],[75.93388,20.33877],[75.94068,20.34214],[75.94197,20.35835],[75.94127,20.36205],[75.93979,20.3627],[75.94136,20.36416],[75.94164,20.36891],[75.94978,20.36854],[75.95781,20.36556],[75.95961,20.37186],[75.96621,20.37094],[75.96683,20.37295],[75.96213,20.38292],[75.95259,20.38704],[75.94965,20.39326],[75.94753,20.41302],[75.94388,20.41497],[75.94387,20.42324],[75.94143,20.4248],[75.94032,20.43138],[75.94299,20.43107],[75.94494,20.44313],[75.95512,20.45104],[75.95703,20.46454],[75.95243,20.46529],[75.95487,20.47302],[75.94866,20.47247],[75.94837,20.47825],[75.94533,20.48329],[75.94566,20.48543],[75.94119,20.49195],[75.94065,20.49866],[75.94115,20.50259],[75.9481,20.50991],[75.94929,20.51861],[75.95646,20.52212],[75.96002,20.52601],[75.96955,20.5231],[75.97267,20.53182],[75.97056,20.53432],[75.97147,20.53805],[75.9654,20.5325],[75.95575,20.53009],[75.94058,20.53554],[75.93988,20.54202],[75.93477,20.5433],[75.93181,20.54892],[75.92622,20.54585],[75.91831,20.55432],[75.91225,20.55478],[75.90414,20.558],[75.89681,20.55769],[75.8816,20.56094],[75.87731,20.55802],[75.87657,20.55254],[75.87524,20.55339]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"48","area_level":"District","area_name":"Champawat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.10897,29.51981],[80.10432,29.52355],[80.09404,29.51945],[80.08137,29.52182],[80.05882,29.51293],[80.05358,29.51269],[80.05179,29.51089],[80.03741,29.50775],[80.03144,29.50844],[80.02972,29.50481],[80.03009,29.50002],[80.02346,29.49852],[80.01956,29.49316],[80.01263,29.49276],[80.00772,29.48934],[80.0032,29.48977],[80.0007,29.4852],[79.99505,29.48772],[79.99238,29.48619],[79.98884,29.4892],[79.98547,29.4846],[79.97702,29.48557],[79.97649,29.48206],[79.97229,29.4774],[79.96851,29.47824],[79.96591,29.47591],[79.95991,29.47726],[79.95688,29.47408],[79.95527,29.47593],[79.95344,29.47479],[79.95159,29.47826],[79.96101,29.49435],[79.95307,29.49921],[79.94721,29.49994],[79.94586,29.47695],[79.94466,29.47882],[79.93769,29.47621],[79.93505,29.47926],[79.93444,29.47631],[79.93062,29.47629],[79.92703,29.47244],[79.91876,29.47458],[79.91964,29.47732],[79.91676,29.47923],[79.91725,29.48287],[79.91379,29.48322],[79.91539,29.48747],[79.91084,29.48666],[79.90972,29.48983],[79.90078,29.48757],[79.89737,29.4845],[79.89426,29.48603],[79.89104,29.48252],[79.88683,29.48357],[79.88429,29.47865],[79.87651,29.47299],[79.87508,29.46807],[79.87173,29.46517],[79.87131,29.46131],[79.86613,29.45665],[79.86734,29.45449],[79.86171,29.44885],[79.86006,29.44799],[79.85711,29.45047],[79.85817,29.45464],[79.85675,29.456],[79.85356,29.45427],[79.8527,29.4515],[79.85071,29.4525],[79.84874,29.4441],[79.8461,29.44456],[79.85026,29.43616],[79.8486,29.43207],[79.85631,29.43272],[79.84757,29.41823],[79.83337,29.40587],[79.83394,29.39933],[79.83282,29.39787],[79.83736,29.3953],[79.84207,29.39733],[79.84694,29.38978],[79.84779,29.38566],[79.85954,29.37979],[79.85783,29.36986],[79.86177,29.36911],[79.87027,29.37067],[79.87291,29.36946],[79.87571,29.37087],[79.88205,29.36606],[79.88396,29.36801],[79.88716,29.36631],[79.89206,29.36971],[79.89616,29.3592],[79.89927,29.35923],[79.90203,29.35571],[79.90243,29.35316],[79.8986,29.34917],[79.90002,29.34822],[79.89463,29.34751],[79.89064,29.35072],[79.8825,29.34964],[79.87127,29.34505],[79.86882,29.34014],[79.86794,29.33215],[79.86428,29.33011],[79.86326,29.32738],[79.86296,29.31715],[79.86528,29.31553],[79.86255,29.31509],[79.8613,29.31219],[79.858,29.31091],[79.85008,29.31425],[79.84986,29.31658],[79.84389,29.322],[79.83188,29.32322],[79.8301,29.32658],[79.83187,29.32828],[79.83208,29.33793],[79.81863,29.33813],[79.81681,29.33988],[79.81507,29.33793],[79.80722,29.3404],[79.79982,29.3367],[79.79352,29.33635],[79.80541,29.32808],[79.80582,29.31474],[79.8095,29.31423],[79.81817,29.30797],[79.81743,29.30056],[79.8146,29.29997],[79.8161,29.29759],[79.81558,29.29394],[79.81195,29.29265],[79.81406,29.28828],[79.8177,29.2866],[79.81278,29.28183],[79.81377,29.27813],[79.81902,29.27143],[79.82507,29.26895],[79.8399,29.27285],[79.844,29.27086],[79.84577,29.27307],[79.84522,29.27572],[79.84715,29.27742],[79.85039,29.27221],[79.8559,29.27681],[79.85939,29.27144],[79.86259,29.27093],[79.86293,29.26884],[79.86671,29.26639],[79.86844,29.2602],[79.87653,29.25964],[79.88909,29.25342],[79.89022,29.25587],[79.89732,29.25698],[79.90018,29.25195],[79.90334,29.25312],[79.90675,29.25],[79.90685,29.24457],[79.91095,29.23265],[79.92185,29.22384],[79.92673,29.21416],[79.92355,29.20904],[79.918,29.20725],[79.91266,29.20035],[79.91052,29.20023],[79.90391,29.19483],[79.90071,29.18202],[79.89153,29.17455],[79.88394,29.1752],[79.88043,29.17344],[79.87825,29.16929],[79.87788,29.15806],[79.88268,29.15389],[79.89257,29.15194],[79.89554,29.14783],[79.89689,29.13536],[79.90586,29.13406],[79.91048,29.12864],[79.91528,29.12877],[79.91717,29.13209],[79.92127,29.13381],[79.94108,29.13265],[79.95352,29.12686],[79.96613,29.12546],[79.97569,29.11956],[79.97624,29.11663],[79.96314,29.1112],[79.96117,29.10881],[79.95711,29.09643],[79.95793,29.09253],[79.95401,29.08192],[79.95412,29.06919],[79.95803,29.06646],[79.96336,29.05767],[79.96843,29.05406],[79.97325,29.05535],[79.98227,29.06536],[79.99751,29.06737],[80.00716,29.0739],[80.0151,29.09291],[80.02033,29.07857],[80.03125,29.06002],[80.0329,29.05188],[80.0478,29.02503],[80.05199,29.00855],[80.05828,29.00438],[80.05456,28.99772],[80.05498,28.9944],[80.05041,28.99207],[80.05177,28.98842],[80.05074,28.98271],[80.05303,28.98264],[80.05309,28.97912],[80.05562,28.97614],[80.05722,28.97005],[80.05976,28.96777],[80.0594,28.96095],[80.06098,28.95946],[80.06563,28.95954],[80.06995,28.95286],[80.074,28.95344],[80.07435,28.9488],[80.07702,28.94736],[80.07652,28.94487],[80.09632,28.97574],[80.10055,28.9869],[80.11792,28.98155],[80.12669,29.00611],[80.13542,29.0074],[80.13625,29.00959],[80.1245,29.01307],[80.13124,29.0305],[80.12637,29.03194],[80.13718,29.06047],[80.12942,29.06272],[80.14287,29.09952],[80.14689,29.10445],[80.16509,29.11848],[80.16633,29.12466],[80.16872,29.12654],[80.17715,29.12817],[80.18139,29.13556],[80.18483,29.13727],[80.19463,29.13162],[80.20309,29.12969],[80.20969,29.12197],[80.23366,29.11856],[80.23868,29.12124],[80.24342,29.12656],[80.24835,29.12803],[80.25534,29.13735],[80.26013,29.1398],[80.27246,29.14189],[80.27171,29.14714],[80.26517,29.15351],[80.25825,29.16477],[80.25774,29.16938],[80.26011,29.17248],[80.26043,29.17644],[80.25797,29.18468],[80.25873,29.18703],[80.24059,29.20291],[80.24454,29.21267],[80.24773,29.21628],[80.24786,29.22045],[80.25263,29.22144],[80.2574,29.21798],[80.25804,29.21065],[80.26039,29.20691],[80.27567,29.20666],[80.28146,29.20204],[80.28595,29.19585],[80.29049,29.19554],[80.29373,29.19776],[80.29744,29.20665],[80.29405,29.21182],[80.29608,29.22125],[80.29062,29.23181],[80.30019,29.24164],[80.29855,29.24952],[80.30008,29.25465],[80.29931,29.26102],[80.30465,29.27518],[80.30485,29.28664],[80.30706,29.28969],[80.31101,29.2909],[80.31852,29.30301],[80.316,29.30844],[80.31688,29.31525],[80.30919,29.32253],[80.29576,29.32453],[80.29092,29.33112],[80.29114,29.33604],[80.28475,29.34035],[80.27994,29.34724],[80.27996,29.35907],[80.27145,29.36437],[80.27158,29.37378],[80.27916,29.37884],[80.27309,29.38621],[80.27571,29.39222],[80.2482,29.40619],[80.24206,29.41154],[80.24598,29.41583],[80.24416,29.424],[80.24763,29.43559],[80.24243,29.44379],[80.22295,29.44979],[80.21943,29.45228],[80.21106,29.45322],[80.20503,29.45183],[80.1958,29.4591],[80.18346,29.45748],[80.18205,29.46452],[80.16692,29.46486],[80.16563,29.46762],[80.16188,29.4687],[80.16315,29.47244],[80.161,29.47477],[80.14987,29.47122],[80.14753,29.48019],[80.14233,29.48288],[80.13948,29.48803],[80.13261,29.48898],[80.12542,29.49547],[80.12977,29.50185],[80.12911,29.50565],[80.1239,29.50982],[80.11249,29.5146],[80.10897,29.51981]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"480","area_level":"District","area_name":"Kolhapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.78437,17.17966],[73.77587,17.18208],[73.77348,17.17753],[73.76812,17.17553],[73.77075,17.16352],[73.7771,17.15407],[73.77319,17.14963],[73.75961,17.1538],[73.75176,17.15339],[73.74959,17.15565],[73.74724,17.15509],[73.74236,17.16007],[73.74472,17.16361],[73.74352,17.16434],[73.74257,17.17648],[73.73748,17.1757],[73.73749,17.17335],[73.72912,17.16902],[73.71997,17.1691],[73.71318,17.17369],[73.70791,17.16974],[73.70708,17.16348],[73.68862,17.1568],[73.68931,17.14181],[73.69432,17.13891],[73.7098,17.14108],[73.71678,17.13125],[73.72199,17.1275],[73.73649,17.12144],[73.74474,17.13126],[73.74981,17.12949],[73.7596,17.12073],[73.76867,17.10929],[73.77832,17.10835],[73.78029,17.1066],[73.78449,17.09821],[73.78998,17.09489],[73.79333,17.09928],[73.80711,17.08622],[73.8036,17.06252],[73.81725,17.06551],[73.83255,17.05823],[73.834,17.05311],[73.83242,17.04812],[73.82484,17.03768],[73.83156,17.02312],[73.82742,17.01165],[73.83413,17.00135],[73.83122,16.98949],[73.82182,16.98799],[73.8196,16.9898],[73.80923,16.98795],[73.79718,16.99267],[73.78596,16.99307],[73.7824,16.99032],[73.78375,16.98594],[73.77586,16.97268],[73.77212,16.97504],[73.76514,16.96827],[73.76216,16.96174],[73.76687,16.96009],[73.77786,16.94738],[73.78957,16.93965],[73.78995,16.93487],[73.79516,16.92992],[73.79105,16.93064],[73.78776,16.92408],[73.79221,16.92328],[73.79032,16.92108],[73.78837,16.90689],[73.78527,16.90788],[73.7837,16.90655],[73.78043,16.91071],[73.77824,16.90912],[73.77703,16.91069],[73.77052,16.90801],[73.76478,16.90982],[73.75926,16.90359],[73.75407,16.90662],[73.74764,16.90517],[73.74243,16.91781],[73.73653,16.91472],[73.73871,16.90738],[73.73576,16.90175],[73.73964,16.8962],[73.74738,16.90426],[73.74868,16.89509],[73.74667,16.8844],[73.76152,16.8726],[73.76714,16.86593],[73.76419,16.86206],[73.76668,16.85468],[73.76184,16.8515],[73.76403,16.84888],[73.76262,16.84734],[73.76584,16.84419],[73.76634,16.83689],[73.76273,16.8347],[73.76493,16.82902],[73.73782,16.84509],[73.73249,16.83716],[73.72752,16.8346],[73.7238,16.83909],[73.71695,16.83671],[73.71183,16.83047],[73.71142,16.82792],[73.72905,16.82081],[73.72755,16.81683],[73.73298,16.81616],[73.73547,16.82246],[73.7517,16.81037],[73.75033,16.80572],[73.75523,16.80593],[73.76045,16.80254],[73.75885,16.79406],[73.75997,16.79156],[73.7543,16.78335],[73.75647,16.77925],[73.75543,16.77685],[73.76076,16.77362],[73.76084,16.77001],[73.76274,16.76895],[73.77047,16.77052],[73.77418,16.77755],[73.7798,16.77941],[73.78494,16.77587],[73.78614,16.76782],[73.79296,16.76164],[73.79758,16.76091],[73.80226,16.76569],[73.80797,16.76635],[73.81272,16.76888],[73.81838,16.76576],[73.82406,16.75759],[73.82872,16.754],[73.82747,16.7502],[73.83001,16.7504],[73.82742,16.74316],[73.83483,16.7424],[73.83491,16.74039],[73.83757,16.73803],[73.83724,16.73588],[73.82947,16.728],[73.82589,16.71522],[73.82408,16.71396],[73.8179,16.71476],[73.81088,16.70823],[73.81671,16.70908],[73.81991,16.70589],[73.82082,16.70079],[73.82419,16.70064],[73.8253,16.69726],[73.83615,16.69401],[73.84231,16.69414],[73.85958,16.68118],[73.85593,16.67669],[73.85105,16.6751],[73.85029,16.67344],[73.86127,16.6718],[73.86349,16.66841],[73.85681,16.65925],[73.85321,16.65893],[73.85647,16.6559],[73.84904,16.65007],[73.85201,16.64777],[73.84793,16.64288],[73.85297,16.63239],[73.8536,16.62503],[73.86144,16.617],[73.86238,16.61404],[73.85907,16.60406],[73.85298,16.60176],[73.84924,16.59685],[73.84732,16.59644],[73.84709,16.59294],[73.84183,16.58915],[73.84073,16.58602],[73.84448,16.58321],[73.84479,16.57726],[73.84654,16.5743],[73.83587,16.56092],[73.83401,16.5622],[73.83118,16.55839],[73.83096,16.54967],[73.82512,16.55093],[73.82237,16.54984],[73.82145,16.5511],[73.81701,16.54834],[73.81482,16.54424],[73.82431,16.54077],[73.83081,16.53371],[73.83431,16.53171],[73.83905,16.53233],[73.84095,16.52919],[73.84718,16.52623],[73.84575,16.5184],[73.84161,16.51597],[73.83974,16.5074],[73.84624,16.50298],[73.85004,16.49781],[73.85201,16.49275],[73.85161,16.48763],[73.85423,16.48806],[73.86124,16.48172],[73.86097,16.47613],[73.88538,16.46993],[73.88754,16.46339],[73.88642,16.45084],[73.88396,16.4499],[73.88256,16.44562],[73.87834,16.44247],[73.87209,16.44213],[73.86717,16.43374],[73.85753,16.42548],[73.8494,16.42263],[73.85097,16.41663],[73.84507,16.41296],[73.83404,16.40148],[73.83675,16.3922],[73.84243,16.39156],[73.84533,16.38875],[73.85602,16.3859],[73.86328,16.37279],[73.85993,16.36682],[73.85675,16.36633],[73.85001,16.35489],[73.84786,16.35384],[73.84342,16.35531],[73.84244,16.35224],[73.83931,16.35238],[73.83732,16.34605],[73.83213,16.345],[73.83401,16.34288],[73.83746,16.34257],[73.84068,16.3385],[73.84811,16.32445],[73.83888,16.31644],[73.84675,16.31428],[73.84753,16.30843],[73.84589,16.30037],[73.8521,16.31332],[73.8564,16.31727],[73.85829,16.31286],[73.86381,16.30854],[73.86813,16.31499],[73.87319,16.31662],[73.88685,16.32834],[73.88756,16.32274],[73.88976,16.32265],[73.89417,16.32864],[73.8994,16.32981],[73.9022,16.32863],[73.9036,16.31945],[73.90202,16.30861],[73.90076,16.30601],[73.88877,16.29964],[73.88972,16.28985],[73.88763,16.28523],[73.88272,16.28249],[73.8818,16.27883],[73.88461,16.2761],[73.8841,16.27376],[73.88831,16.27201],[73.89251,16.26669],[73.89452,16.26219],[73.89079,16.25784],[73.89187,16.25658],[73.90492,16.25652],[73.90896,16.25456],[73.90677,16.25282],[73.90758,16.25152],[73.9175,16.24565],[73.90733,16.23935],[73.90024,16.23785],[73.89272,16.23386],[73.88938,16.22905],[73.89761,16.23467],[73.90048,16.23337],[73.90575,16.2351],[73.91366,16.23447],[73.91478,16.23108],[73.91852,16.23449],[73.92429,16.23508],[73.926,16.23932],[73.92879,16.23851],[73.93576,16.24357],[73.94286,16.24379],[73.94621,16.239],[73.93835,16.23599],[73.93537,16.22572],[73.92988,16.22127],[73.9178,16.2182],[73.92389,16.21899],[73.92589,16.21727],[73.92571,16.21367],[73.92901,16.21251],[73.92928,16.21033],[73.92568,16.20819],[73.9276,16.20628],[73.92263,16.20212],[73.92549,16.20217],[73.93249,16.20609],[73.93567,16.20456],[73.93812,16.20928],[73.94503,16.20613],[73.95621,16.20857],[73.95374,16.20389],[73.9565,16.20327],[73.95128,16.19714],[73.94044,16.19069],[73.9409,16.18847],[73.93757,16.18583],[73.94153,16.18476],[73.94578,16.17935],[73.94273,16.17451],[73.93433,16.17369],[73.93149,16.16977],[73.92886,16.16943],[73.92204,16.17359],[73.91465,16.17184],[73.91797,16.1699],[73.91762,16.16745],[73.91234,16.16129],[73.90833,16.15973],[73.91878,16.15363],[73.91762,16.151],[73.91394,16.14954],[73.9167,16.1453],[73.91433,16.14008],[73.91122,16.13993],[73.90606,16.13578],[73.89686,16.13939],[73.88953,16.14008],[73.88835,16.14362],[73.88596,16.14327],[73.88307,16.14562],[73.8776,16.14365],[73.87271,16.14451],[73.86954,16.14274],[73.86912,16.14568],[73.86716,16.14699],[73.86572,16.14419],[73.86607,16.13933],[73.86457,16.1391],[73.84487,16.1531],[73.8502,16.14566],[73.85006,16.14103],[73.85334,16.13794],[73.85363,16.13472],[73.84682,16.13167],[73.84988,16.12833],[73.84612,16.1239],[73.84906,16.12166],[73.84786,16.11958],[73.84929,16.11842],[73.84597,16.11439],[73.844,16.10614],[73.84056,16.1057],[73.83717,16.10058],[73.83465,16.09943],[73.83394,16.09396],[73.84402,16.08463],[73.84266,16.07885],[73.8554,16.07489],[73.85995,16.06994],[73.85337,16.08169],[73.84485,16.08431],[73.84345,16.08729],[73.84378,16.09391],[73.84738,16.09475],[73.85027,16.09811],[73.85369,16.0985],[73.85271,16.10274],[73.85871,16.10361],[73.86031,16.10502],[73.85934,16.10609],[73.86292,16.10717],[73.86557,16.10586],[73.87344,16.1063],[73.86441,16.09762],[73.86444,16.09538],[73.87154,16.09375],[73.87385,16.09704],[73.87541,16.09704],[73.87733,16.09482],[73.88479,16.09286],[73.8852,16.09438],[73.8945,16.09118],[73.8959,16.08895],[73.90075,16.08883],[73.90012,16.09683],[73.90525,16.1009],[73.91042,16.09902],[73.9154,16.0995],[73.91866,16.09718],[73.9264,16.09849],[73.93763,16.09711],[73.94212,16.09988],[73.95696,16.09735],[73.96241,16.09465],[73.96724,16.0957],[73.97471,16.09362],[73.99595,16.09273],[73.99101,16.07942],[74.00439,16.07913],[74.00864,16.06913],[74.01137,16.06663],[74.00919,16.06465],[74.00716,16.06653],[74.00889,16.06451],[74.00048,16.05941],[73.99706,16.05963],[73.99678,16.05801],[73.9997,16.05832],[73.9993,16.05596],[74.00274,16.0529],[73.99999,16.04366],[74.00073,16.04128],[74.01317,16.03718],[74.01845,16.03901],[74.02494,16.03221],[74.03234,16.03285],[74.03452,16.03113],[74.03827,16.03431],[74.04401,16.03116],[74.05045,16.03304],[74.05157,16.04283],[74.0566,16.0504],[74.06004,16.05108],[74.06398,16.04445],[74.0651,16.03875],[74.07705,16.02331],[74.08124,16.01896],[74.09104,16.01474],[74.09089,16.00769],[74.08914,16.00529],[74.085,16.00465],[74.07827,15.99998],[74.07649,15.99641],[74.06245,15.98427],[74.05948,15.97809],[74.05539,15.97397],[74.05715,15.97225],[74.05593,15.96791],[74.05351,15.96424],[74.04746,15.96073],[74.04558,15.95712],[74.05153,15.95206],[74.05059,15.94613],[74.05966,15.94182],[74.06452,15.94268],[74.07306,15.94878],[74.07511,15.9422],[74.08153,15.93301],[74.08387,15.92012],[74.08832,15.9109],[74.08951,15.90332],[74.09311,15.90011],[74.09054,15.89777],[74.09281,15.89067],[74.0872,15.87446],[74.09297,15.87308],[74.08868,15.86819],[74.08304,15.86819],[74.07681,15.86282],[74.06726,15.85837],[74.05096,15.84694],[74.04818,15.84254],[74.04263,15.84084],[74.04271,15.83913],[74.03272,15.83703],[74.03305,15.83591],[74.03037,15.83464],[74.03404,15.83273],[74.03043,15.81884],[74.03453,15.8027],[74.04925,15.80524],[74.0668,15.81517],[74.06583,15.82612],[74.07421,15.83448],[74.0777,15.83426],[74.08423,15.83709],[74.08417,15.8384],[74.10288,15.84086],[74.10363,15.83384],[74.10895,15.82268],[74.12378,15.82491],[74.14572,15.83288],[74.14096,15.82339],[74.1444,15.82204],[74.15882,15.82183],[74.15819,15.81541],[74.15267,15.79949],[74.15363,15.78682],[74.1725,15.77381],[74.18156,15.7751],[74.19918,15.78537],[74.21311,15.78006],[74.2159,15.78389],[74.22834,15.78834],[74.2335,15.78699],[74.23465,15.77919],[74.22937,15.77346],[74.22751,15.76907],[74.2265,15.76263],[74.22763,15.75658],[74.23243,15.75221],[74.2337,15.7483],[74.23652,15.74822],[74.23822,15.74406],[74.24538,15.74324],[74.25403,15.74515],[74.25386,15.74677],[74.25554,15.74604],[74.26384,15.75296],[74.26832,15.75474],[74.27283,15.74967],[74.28426,15.74366],[74.28546,15.74163],[74.29612,15.74442],[74.30135,15.74764],[74.3079,15.74848],[74.31034,15.75157],[74.30974,15.75489],[74.31862,15.75838],[74.31899,15.76622],[74.32307,15.77268],[74.33747,15.7679],[74.34069,15.76467],[74.34568,15.76456],[74.35025,15.77032],[74.35843,15.77483],[74.36214,15.78236],[74.36907,15.7882],[74.36889,15.79174],[74.37197,15.79824],[74.37039,15.79859],[74.37192,15.80098],[74.36869,15.80695],[74.3703,15.81071],[74.36035,15.81686],[74.36157,15.81857],[74.36536,15.81927],[74.36641,15.82576],[74.37074,15.83057],[74.37233,15.83022],[74.37482,15.83313],[74.3774,15.83222],[74.3766,15.83335],[74.37993,15.83827],[74.38104,15.83538],[74.38405,15.84012],[74.38309,15.8491],[74.345,15.85044],[74.33821,15.85492],[74.34661,15.85879],[74.34552,15.86229],[74.35087,15.86543],[74.35794,15.87316],[74.36337,15.87507],[74.36513,15.8825],[74.3647,15.89386],[74.36861,15.89436],[74.3661,15.89131],[74.37675,15.88238],[74.38003,15.87629],[74.38283,15.86004],[74.38693,15.85965],[74.38814,15.85425],[74.39141,15.85476],[74.39754,15.85115],[74.40235,15.85227],[74.40163,15.85461],[74.40617,15.85538],[74.40637,15.86445],[74.39765,15.86997],[74.39279,15.87839],[74.39674,15.88036],[74.39342,15.90004],[74.38778,15.90131],[74.38687,15.90498],[74.43083,15.95658],[74.43099,15.95962],[74.43607,15.96747],[74.43893,15.97568],[74.43787,15.9799],[74.44395,15.9864],[74.44261,15.99163],[74.44464,15.99244],[74.44634,15.9971],[74.44477,16.00305],[74.44691,16.00318],[74.45026,16.00855],[74.45011,16.01105],[74.45535,16.01952],[74.45723,16.02697],[74.46322,16.03919],[74.45649,16.04106],[74.46302,16.04162],[74.46221,16.04984],[74.45714,16.04823],[74.45012,16.05401],[74.44285,16.05281],[74.43422,16.05847],[74.42969,16.05915],[74.40552,16.05184],[74.40209,16.04611],[74.38099,16.03548],[74.378,16.0377],[74.3734,16.03644],[74.36905,16.03922],[74.37457,16.04689],[74.37734,16.05512],[74.37252,16.056],[74.36355,16.05303],[74.36133,16.05384],[74.37151,16.06824],[74.37222,16.07821],[74.38173,16.0793],[74.38362,16.08293],[74.38954,16.07979],[74.39086,16.08048],[74.39182,16.08253],[74.39004,16.08946],[74.40696,16.09351],[74.40997,16.10212],[74.42762,16.11197],[74.4429,16.10534],[74.45868,16.1038],[74.46105,16.09978],[74.47269,16.09299],[74.47273,16.0906],[74.48156,16.08889],[74.4843,16.09147],[74.4851,16.09837],[74.49123,16.10431],[74.49084,16.11672],[74.48587,16.13406],[74.48511,16.1423],[74.48007,16.14499],[74.47983,16.14713],[74.48837,16.15726],[74.48984,16.16342],[74.48955,16.17742],[74.49379,16.18645],[74.50331,16.18807],[74.50624,16.19024],[74.50723,16.19653],[74.50584,16.20136],[74.508,16.20226],[74.50126,16.20553],[74.49593,16.2143],[74.49629,16.21667],[74.50311,16.22247],[74.5031,16.22541],[74.49521,16.2349],[74.49035,16.23489],[74.48048,16.25013],[74.47671,16.24943],[74.46862,16.24019],[74.45609,16.24386],[74.45483,16.25339],[74.43555,16.25115],[74.43577,16.25883],[74.41761,16.258],[74.41595,16.2801],[74.41439,16.28265],[74.41181,16.28166],[74.40786,16.28329],[74.38261,16.27736],[74.38021,16.27115],[74.38064,16.26197],[74.37301,16.26164],[74.36828,16.26686],[74.36336,16.28504],[74.3593,16.29058],[74.3456,16.29376],[74.3431,16.29035],[74.35371,16.28282],[74.35046,16.27537],[74.34378,16.27808],[74.34205,16.27651],[74.34335,16.27309],[74.33843,16.2714],[74.33333,16.27597],[74.33506,16.2704],[74.33415,16.2688],[74.32846,16.26887],[74.32493,16.27176],[74.32457,16.27723],[74.32245,16.27791],[74.32083,16.28448],[74.32578,16.28559],[74.32469,16.2889],[74.32796,16.29325],[74.33184,16.29243],[74.33472,16.28961],[74.33831,16.29001],[74.34,16.29213],[74.34201,16.29118],[74.34255,16.29803],[74.34028,16.29816],[74.34042,16.30244],[74.33591,16.30709],[74.33192,16.30525],[74.33474,16.30903],[74.33296,16.31106],[74.33322,16.31345],[74.32919,16.31221],[74.32516,16.31368],[74.32461,16.31666],[74.33129,16.32067],[74.32874,16.32375],[74.32064,16.32375],[74.31661,16.32656],[74.3225,16.33437],[74.31656,16.33619],[74.31532,16.34008],[74.31879,16.34266],[74.32648,16.34142],[74.32703,16.34251],[74.31764,16.35305],[74.31789,16.35496],[74.32425,16.35743],[74.32477,16.35994],[74.31898,16.37164],[74.32084,16.37589],[74.31719,16.381],[74.32484,16.37829],[74.32814,16.38534],[74.32749,16.3915],[74.33587,16.39374],[74.34064,16.38867],[74.34121,16.38277],[74.34564,16.3769],[74.34512,16.37314],[74.3473,16.36832],[74.35341,16.36642],[74.35358,16.38188],[74.35701,16.38344],[74.35797,16.38954],[74.36291,16.39552],[74.36369,16.40509],[74.3448,16.40553],[74.34289,16.40346],[74.33505,16.40141],[74.32885,16.41905],[74.33129,16.42418],[74.33674,16.42881],[74.33269,16.43685],[74.33623,16.44567],[74.32971,16.4472],[74.33259,16.45476],[74.32466,16.45593],[74.32044,16.45392],[74.31246,16.45324],[74.3064,16.45528],[74.29705,16.46454],[74.29195,16.46175],[74.28928,16.46297],[74.28845,16.47723],[74.29218,16.48571],[74.2909,16.5049],[74.27966,16.50483],[74.27458,16.49403],[74.27438,16.48563],[74.26077,16.4801],[74.25663,16.48954],[74.24737,16.49691],[74.25251,16.50062],[74.26573,16.5011],[74.27822,16.50491],[74.2761,16.52131],[74.26975,16.52217],[74.26413,16.53983],[74.27047,16.54789],[74.27237,16.54775],[74.28109,16.5411],[74.28075,16.53145],[74.28314,16.52459],[74.28685,16.52677],[74.28909,16.53244],[74.2916,16.53388],[74.30137,16.52927],[74.30264,16.52725],[74.30105,16.52264],[74.30614,16.50369],[74.31512,16.5046],[74.31571,16.55445],[74.31757,16.55371],[74.32517,16.5563],[74.33488,16.54788],[74.33969,16.54776],[74.34446,16.55173],[74.34572,16.555],[74.35028,16.55603],[74.35512,16.55506],[74.35399,16.55892],[74.35625,16.55975],[74.35908,16.55575],[74.35611,16.54976],[74.35774,16.54608],[74.35793,16.53834],[74.36082,16.53893],[74.37081,16.5348],[74.37643,16.52913],[74.37983,16.52859],[74.38715,16.5362],[74.38858,16.55076],[74.3869,16.55994],[74.39291,16.56488],[74.39121,16.56655],[74.39554,16.57217],[74.39663,16.58327],[74.40869,16.58323],[74.42081,16.58612],[74.42215,16.58451],[74.42634,16.59574],[74.43544,16.60106],[74.46345,16.60449],[74.46671,16.60682],[74.4641,16.61509],[74.46574,16.61566],[74.46581,16.62472],[74.4585,16.63557],[74.45478,16.6473],[74.45835,16.64868],[74.4564,16.65505],[74.46408,16.65827],[74.46738,16.66307],[74.47171,16.66405],[74.47496,16.65469],[74.476,16.64586],[74.48903,16.63014],[74.49501,16.62975],[74.50024,16.63313],[74.50385,16.63356],[74.52445,16.63343],[74.54449,16.63547],[74.54473,16.62898],[74.5427,16.62663],[74.54349,16.59532],[74.55877,16.59465],[74.56689,16.58539],[74.56466,16.57965],[74.55539,16.57239],[74.55578,16.56298],[74.56008,16.56306],[74.56854,16.55387],[74.57238,16.55349],[74.57402,16.55422],[74.5746,16.55894],[74.58464,16.55913],[74.58403,16.56235],[74.58788,16.5661],[74.60102,16.5649],[74.60428,16.56898],[74.60854,16.56905],[74.61629,16.57483],[74.6188,16.58407],[74.62284,16.57975],[74.62833,16.57751],[74.63319,16.58321],[74.63565,16.58361],[74.63309,16.5918],[74.63335,16.60036],[74.63615,16.60742],[74.63931,16.61012],[74.64443,16.61029],[74.65405,16.60417],[74.65999,16.6029],[74.67383,16.6092],[74.68362,16.60603],[74.68843,16.60847],[74.68986,16.61314],[74.68757,16.61789],[74.6766,16.62359],[74.66981,16.6294],[74.65905,16.63167],[74.65348,16.63883],[74.65916,16.64734],[74.66516,16.66567],[74.6795,16.66617],[74.67902,16.6731],[74.68955,16.67703],[74.68886,16.68154],[74.68109,16.68091],[74.68082,16.68589],[74.6894,16.68646],[74.68855,16.71279],[74.70046,16.73055],[74.69993,16.73502],[74.69857,16.73717],[74.69396,16.73908],[74.67598,16.74374],[74.67086,16.74695],[74.64583,16.75236],[74.64258,16.75677],[74.64318,16.76631],[74.64154,16.77279],[74.62943,16.78795],[74.61361,16.79368],[74.60466,16.7994],[74.59197,16.80195],[74.57368,16.80278],[74.5606,16.80622],[74.5579,16.81056],[74.55737,16.81933],[74.55443,16.8246],[74.53458,16.84618],[74.52871,16.8458],[74.52216,16.85174],[74.51793,16.85239],[74.51694,16.85814],[74.51295,16.85135],[74.51456,16.84086],[74.50227,16.83388],[74.50057,16.82963],[74.49713,16.83041],[74.49542,16.83512],[74.49403,16.84717],[74.49673,16.85505],[74.49503,16.85781],[74.49253,16.85979],[74.48638,16.8603],[74.48247,16.8657],[74.47256,16.86848],[74.46821,16.86642],[74.4656,16.85852],[74.45843,16.85297],[74.45111,16.85407],[74.44559,16.85135],[74.43879,16.85161],[74.43166,16.8478],[74.42826,16.84796],[74.42209,16.84385],[74.41464,16.84395],[74.40666,16.84789],[74.40406,16.85138],[74.41042,16.86192],[74.41441,16.8649],[74.41568,16.87767],[74.41294,16.87963],[74.4036,16.87641],[74.40222,16.87853],[74.40312,16.88176],[74.40153,16.88301],[74.39038,16.87482],[74.38806,16.87019],[74.37853,16.86868],[74.368,16.85735],[74.36203,16.85344],[74.35537,16.86253],[74.35562,16.8712],[74.3542,16.87278],[74.34555,16.87356],[74.34336,16.87699],[74.33709,16.8813],[74.33141,16.87755],[74.32578,16.87784],[74.32309,16.88339],[74.31438,16.89132],[74.31185,16.89243],[74.30441,16.89052],[74.29555,16.89464],[74.2951,16.89663],[74.29099,16.89962],[74.28375,16.91745],[74.28182,16.91852],[74.27335,16.91428],[74.268,16.90966],[74.26281,16.90949],[74.25723,16.90651],[74.25451,16.90289],[74.25241,16.89347],[74.2488,16.88683],[74.24695,16.88642],[74.23641,16.88612],[74.23219,16.89038],[74.23086,16.90333],[74.22475,16.9133],[74.22317,16.91369],[74.21627,16.91165],[74.21252,16.89502],[74.20973,16.89302],[74.20048,16.8951],[74.19184,16.89389],[74.18729,16.89571],[74.18162,16.90073],[74.1752,16.90254],[74.16362,16.89866],[74.15662,16.88987],[74.14559,16.88273],[74.1393,16.88731],[74.13509,16.8881],[74.12447,16.90297],[74.12515,16.90426],[74.123,16.9053],[74.12362,16.91126],[74.12073,16.91318],[74.1066,16.90964],[74.10053,16.9102],[74.09147,16.91826],[74.08036,16.9072],[74.07679,16.90665],[74.07213,16.90314],[74.06571,16.90238],[74.06472,16.91018],[74.05317,16.91433],[74.04901,16.92159],[74.04158,16.92178],[74.03842,16.92388],[74.03945,16.92793],[74.03719,16.93076],[74.03833,16.93551],[74.03715,16.9383],[74.03109,16.94121],[74.02685,16.93993],[74.02296,16.9423],[74.02813,16.95124],[74.02712,16.95367],[74.02267,16.95541],[74.01981,16.95937],[74.0208,16.96222],[74.02534,16.96163],[74.02619,16.96399],[74.02532,16.96625],[74.02147,16.96745],[74.02074,16.96997],[74.02299,16.97592],[74.02335,16.98515],[74.01887,16.98722],[74.01037,16.98787],[74.0047,16.99292],[73.99854,16.99145],[73.99641,16.99583],[73.99081,16.99717],[73.98913,16.99563],[73.98823,16.98953],[73.98475,16.98668],[73.98132,16.98636],[73.97349,16.99015],[73.97192,16.99495],[73.97241,17.00064],[73.96914,17.0073],[73.97079,17.00869],[73.97704,17.00774],[73.97877,17.00931],[73.97925,17.03451],[73.97819,17.03645],[73.97367,17.03573],[73.96511,17.04832],[73.96036,17.05112],[73.9598,17.05548],[73.95792,17.0575],[73.94811,17.05871],[73.94858,17.06167],[73.9469,17.0635],[73.94026,17.06295],[73.93808,17.06544],[73.93822,17.06901],[73.93378,17.07091],[73.92979,17.07503],[73.92064,17.07502],[73.91576,17.07081],[73.91382,17.07143],[73.91466,17.07597],[73.90895,17.07852],[73.90425,17.08478],[73.90276,17.0919],[73.90355,17.09726],[73.89989,17.10239],[73.89564,17.10577],[73.88905,17.10632],[73.88174,17.11114],[73.87851,17.11515],[73.87347,17.11707],[73.87117,17.12338],[73.87539,17.12626],[73.87553,17.12854],[73.8712,17.12994],[73.86884,17.13296],[73.8641,17.1335],[73.86253,17.13757],[73.85813,17.1373],[73.8556,17.14011],[73.85337,17.14881],[73.8465,17.15423],[73.83893,17.15647],[73.82022,17.17026],[73.81376,17.16987],[73.81136,17.17185],[73.8034,17.17019],[73.79919,17.17124],[73.79238,17.17826],[73.78437,17.17966]],[[74.28485,15.83079],[74.29117,15.83214],[74.30337,15.80666],[74.31291,15.7982],[74.31176,15.79326],[74.30234,15.78746],[74.29787,15.79097],[74.29673,15.79414],[74.2933,15.79527],[74.28915,15.79142],[74.28982,15.78773],[74.28543,15.78795],[74.27486,15.79609],[74.27104,15.79502],[74.26647,15.7978],[74.26794,15.80027],[74.26619,15.80978],[74.26899,15.81657],[74.26166,15.82959],[74.27819,15.82928],[74.28485,15.83079]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"481","area_level":"District","area_name":"Latur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.90766,18.83883],[76.89764,18.83865],[76.88148,18.83384],[76.88084,18.83179],[76.86694,18.83019],[76.86358,18.818],[76.86231,18.8176],[76.86235,18.82124],[76.8602,18.82332],[76.85808,18.82004],[76.85338,18.81888],[76.85352,18.80697],[76.84568,18.80782],[76.84437,18.81286],[76.83916,18.81381],[76.82842,18.81214],[76.82401,18.80764],[76.81997,18.80731],[76.81453,18.80419],[76.81157,18.79991],[76.80666,18.79917],[76.8016,18.80244],[76.79481,18.79989],[76.79025,18.80015],[76.78785,18.79723],[76.7834,18.79679],[76.7794,18.78978],[76.77987,18.7813],[76.77735,18.77608],[76.77223,18.77564],[76.77037,18.77399],[76.75204,18.7749],[76.75223,18.77385],[76.74789,18.77363],[76.74282,18.7757],[76.73711,18.75987],[76.73284,18.75985],[76.73502,18.75412],[76.72905,18.74993],[76.72329,18.75013],[76.72552,18.74125],[76.72466,18.73654],[76.72754,18.73544],[76.72925,18.7279],[76.73256,18.72208],[76.73378,18.7001],[76.7309,18.70011],[76.73063,18.69815],[76.7282,18.69812],[76.72712,18.69543],[76.71328,18.69999],[76.69774,18.69147],[76.68208,18.69199],[76.6738,18.67404],[76.66244,18.65972],[76.66188,18.65546],[76.68131,18.65003],[76.67871,18.63448],[76.66722,18.63201],[76.65725,18.63339],[76.65384,18.63594],[76.65323,18.64252],[76.64742,18.64571],[76.63629,18.64837],[76.6377,18.65822],[76.64115,18.66287],[76.64032,18.66696],[76.63566,18.6678],[76.63501,18.67435],[76.6273,18.67568],[76.62558,18.67363],[76.6148,18.67446],[76.60433,18.67242],[76.59488,18.67251],[76.59286,18.6681],[76.59398,18.65819],[76.59302,18.65274],[76.59155,18.6528],[76.59099,18.65013],[76.58688,18.65003],[76.58265,18.63521],[76.58215,18.6248],[76.58036,18.62516],[76.57835,18.61948],[76.5592,18.62942],[76.56118,18.63869],[76.55586,18.64044],[76.55346,18.63657],[76.55025,18.63847],[76.54871,18.63495],[76.54588,18.63606],[76.5501,18.6442],[76.54558,18.64645],[76.54242,18.64463],[76.54103,18.65104],[76.52982,18.64892],[76.52481,18.62405],[76.52123,18.6249],[76.52048,18.62172],[76.50335,18.60877],[76.49962,18.60403],[76.4913,18.60693],[76.4894,18.6113],[76.47831,18.61548],[76.47708,18.62347],[76.47159,18.63405],[76.46547,18.6351],[76.45479,18.62155],[76.43663,18.61671],[76.42913,18.61698],[76.42917,18.61282],[76.42015,18.60822],[76.41154,18.60821],[76.41085,18.60111],[76.40722,18.59996],[76.40681,18.60204],[76.40369,18.60185],[76.40299,18.59659],[76.39821,18.59495],[76.39203,18.59607],[76.38776,18.57365],[76.38563,18.574],[76.38497,18.56431],[76.38731,18.55101],[76.39328,18.55017],[76.39065,18.54227],[76.38293,18.5434],[76.37738,18.5422],[76.36786,18.5445],[76.36524,18.55287],[76.36018,18.55913],[76.34922,18.56537],[76.34615,18.56572],[76.33933,18.56057],[76.33048,18.56338],[76.32314,18.57029],[76.31237,18.56559],[76.30162,18.56817],[76.29229,18.57603],[76.2859,18.57366],[76.2785,18.57417],[76.2751,18.55791],[76.2762,18.54387],[76.27449,18.53791],[76.26218,18.52726],[76.25297,18.52202],[76.25536,18.5012],[76.2531,18.49563],[76.26176,18.49289],[76.25543,18.48763],[76.25406,18.48275],[76.25749,18.48252],[76.25881,18.4784],[76.26729,18.4758],[76.26974,18.46856],[76.26193,18.46581],[76.26627,18.44302],[76.26695,18.42268],[76.26045,18.42815],[76.24676,18.43009],[76.2369,18.43441],[76.22989,18.43526],[76.22569,18.43402],[76.2206,18.42884],[76.22065,18.42317],[76.21407,18.40712],[76.20349,18.39471],[76.22208,18.38028],[76.24561,18.37713],[76.25769,18.36402],[76.27497,18.38115],[76.28851,18.38944],[76.29002,18.38649],[76.28847,18.37989],[76.28937,18.37527],[76.28646,18.3632],[76.28415,18.34001],[76.29518,18.33819],[76.31684,18.32997],[76.3169,18.31683],[76.3142,18.29867],[76.31454,18.28246],[76.31008,18.28094],[76.3079,18.27375],[76.30613,18.27368],[76.30736,18.26875],[76.30337,18.26266],[76.29427,18.26113],[76.2887,18.25567],[76.2868,18.25014],[76.28382,18.24928],[76.28579,18.23215],[76.30139,18.23181],[76.29835,18.21286],[76.29522,18.21278],[76.29295,18.19774],[76.28005,18.18387],[76.28231,18.16268],[76.28165,18.15245],[76.27851,18.14496],[76.27603,18.14504],[76.27498,18.14036],[76.28374,18.12746],[76.27944,18.11094],[76.2946,18.10689],[76.29439,18.10493],[76.29656,18.1047],[76.29473,18.09987],[76.30328,18.09953],[76.30463,18.09679],[76.30443,18.09817],[76.30613,18.09814],[76.30765,18.09255],[76.31873,18.09648],[76.32717,18.09675],[76.32998,18.07611],[76.3322,18.07668],[76.34051,18.06128],[76.34894,18.06212],[76.34932,18.06461],[76.35256,18.06628],[76.35392,18.07636],[76.35292,18.08202],[76.37188,18.08994],[76.37879,18.08874],[76.38209,18.08421],[76.38259,18.07778],[76.38782,18.0767],[76.39223,18.07007],[76.39859,18.06604],[76.39658,18.05958],[76.38488,18.06056],[76.38366,18.04508],[76.4042,18.044],[76.40494,18.04625],[76.41718,18.04198],[76.42012,18.03586],[76.42758,18.03379],[76.43542,18.03414],[76.44967,18.03179],[76.45505,18.0286],[76.46181,18.02703],[76.46137,18.02993],[76.46558,18.03177],[76.47988,18.02677],[76.48313,18.02724],[76.48861,18.02443],[76.49519,18.02723],[76.49929,18.05185],[76.51216,18.05022],[76.51035,18.02322],[76.53138,18.02856],[76.53179,18.03139],[76.53946,18.03187],[76.54958,18.0309],[76.55092,18.02664],[76.553,18.02644],[76.56317,18.03128],[76.57092,18.02871],[76.57592,18.02257],[76.5789,18.03789],[76.58892,18.03693],[76.5942,18.03339],[76.59807,18.03303],[76.60305,18.03838],[76.61093,18.03894],[76.61045,18.02652],[76.60371,18.00729],[76.61568,18.00486],[76.61716,18.00133],[76.62991,17.99956],[76.64025,18.0011],[76.64883,17.99984],[76.66206,18.00057],[76.67841,17.9963],[76.68924,17.9702],[76.67537,17.9694],[76.67556,17.9671],[76.67307,17.96712],[76.67494,17.95271],[76.67347,17.94679],[76.68111,17.94589],[76.67641,17.93682],[76.67347,17.91887],[76.68973,17.91905],[76.70714,17.91639],[76.72387,17.91834],[76.72567,17.91251],[76.73562,17.91144],[76.73911,17.90856],[76.74021,17.89972],[76.75713,17.89917],[76.76816,17.90115],[76.77357,17.89046],[76.77505,17.87771],[76.78839,17.87579],[76.80437,17.87061],[76.80819,17.87098],[76.80768,17.87802],[76.81022,17.88704],[76.8312,17.88562],[76.83192,17.89526],[76.83972,17.89937],[76.85264,17.90072],[76.87266,17.89808],[76.87917,17.89452],[76.88139,17.89556],[76.88427,17.89429],[76.88399,17.89898],[76.88849,17.89794],[76.89419,17.89983],[76.89504,17.90275],[76.89384,17.90607],[76.89655,17.90575],[76.89689,17.91037],[76.89899,17.90907],[76.90126,17.91724],[76.91474,17.91481],[76.9191,17.9162],[76.92067,17.94157],[76.91729,17.94806],[76.9183,17.95602],[76.91539,17.95711],[76.91444,17.96156],[76.91226,17.97805],[76.91314,17.99689],[76.90671,17.99659],[76.90807,17.99952],[76.90603,18.00232],[76.90564,18.00971],[76.90763,18.01422],[76.91094,18.01496],[76.9123,18.01734],[76.91432,18.03536],[76.93662,18.03686],[76.95231,18.04022],[76.95269,18.04394],[76.94836,18.0444],[76.9449,18.04836],[76.95106,18.05776],[76.95162,18.06105],[76.95144,18.06566],[76.94521,18.0832],[76.96294,18.08957],[76.96493,18.09173],[76.96635,18.0982],[76.95872,18.10412],[76.95427,18.11054],[76.93774,18.11491],[76.93292,18.11283],[76.92486,18.11631],[76.92171,18.11555],[76.9205,18.11818],[76.92025,18.12507],[76.9318,18.13353],[76.92448,18.14274],[76.92396,18.14663],[76.93148,18.15965],[76.94236,18.15641],[76.94608,18.16663],[76.94768,18.16641],[76.94845,18.16876],[76.95193,18.1881],[76.9658,18.19007],[76.97742,18.18887],[76.9784,18.19198],[76.99061,18.18999],[76.99056,18.18576],[76.99401,18.18054],[76.9932,18.17581],[76.99641,18.1662],[77.00179,18.16235],[77.00111,18.1609],[77.0233,18.15851],[77.02565,18.16175],[77.02308,18.17565],[77.03173,18.17743],[77.03318,18.18199],[77.05198,18.17323],[77.0532,18.15945],[77.05865,18.15661],[77.06396,18.15065],[77.08485,18.15079],[77.09132,18.15584],[77.09948,18.15819],[77.10324,18.15783],[77.10652,18.15525],[77.1106,18.15534],[77.11257,18.15677],[77.11672,18.16618],[77.1168,18.16961],[77.11397,18.1749],[77.09843,18.19295],[77.0976,18.19672],[77.11129,18.20424],[77.12728,18.20767],[77.13374,18.20586],[77.13464,18.20721],[77.14014,18.20772],[77.1427,18.21704],[77.15152,18.21704],[77.15071,18.22216],[77.14923,18.2214],[77.14863,18.23905],[77.15177,18.23802],[77.15913,18.25579],[77.16975,18.26087],[77.17041,18.26431],[77.16903,18.26583],[77.17073,18.2767],[77.17481,18.28486],[77.18821,18.28474],[77.19541,18.27981],[77.19747,18.27661],[77.20377,18.28006],[77.21301,18.28032],[77.20936,18.28772],[77.20985,18.29497],[77.20555,18.2941],[77.20293,18.29773],[77.20311,18.30542],[77.19889,18.31439],[77.19911,18.31677],[77.20167,18.32217],[77.21179,18.31628],[77.21478,18.32324],[77.21907,18.32573],[77.22277,18.33975],[77.22958,18.34821],[77.22009,18.34927],[77.22448,18.35597],[77.22583,18.36522],[77.23399,18.3698],[77.24628,18.37054],[77.24842,18.37606],[77.23946,18.37861],[77.23369,18.3882],[77.23473,18.39665],[77.24177,18.41261],[77.25937,18.41326],[77.2658,18.42235],[77.26408,18.42744],[77.26629,18.42947],[77.26659,18.43402],[77.26545,18.43716],[77.26328,18.43808],[77.26363,18.44365],[77.26121,18.44358],[77.25459,18.44984],[77.25467,18.45467],[77.25816,18.45565],[77.26746,18.45426],[77.26775,18.45968],[77.27503,18.47773],[77.26454,18.47972],[77.26464,18.48163],[77.2615,18.4851],[77.25086,18.48661],[77.24568,18.49519],[77.24586,18.49966],[77.26024,18.5153],[77.26504,18.51792],[77.26674,18.52235],[77.27483,18.51968],[77.28171,18.52158],[77.28596,18.53085],[77.28655,18.53986],[77.29436,18.54905],[77.28158,18.55579],[77.27528,18.56149],[77.26152,18.56586],[77.26549,18.58146],[77.26993,18.58311],[77.26989,18.58564],[77.26727,18.5867],[77.26658,18.59372],[77.26816,18.61146],[77.25357,18.61662],[77.2109,18.62421],[77.21107,18.63389],[77.20856,18.63353],[77.20845,18.63778],[77.20242,18.63961],[77.20286,18.6413],[77.19885,18.64249],[77.19868,18.64669],[77.19709,18.64724],[77.17056,18.64852],[77.15815,18.64616],[77.15389,18.64723],[77.15476,18.65681],[77.15737,18.66448],[77.15655,18.67585],[77.15825,18.68224],[77.17761,18.67946],[77.19332,18.6886],[77.1939,18.69135],[77.1871,18.69339],[77.18342,18.70103],[77.17118,18.70474],[77.1646,18.70395],[77.15761,18.70055],[77.15103,18.70057],[77.14678,18.70647],[77.14501,18.71297],[77.14122,18.71331],[77.1351,18.71128],[77.13842,18.69727],[77.1332,18.69749],[77.12024,18.69402],[77.10224,18.69467],[77.09666,18.69146],[77.06807,18.68793],[77.06674,18.68215],[77.06342,18.68128],[77.04595,18.68377],[77.04548,18.68914],[77.04294,18.6945],[77.04362,18.6991],[77.05125,18.71744],[77.05644,18.7171],[77.05836,18.72575],[77.05403,18.73694],[77.05376,18.74812],[77.05784,18.76484],[77.05413,18.77363],[77.05303,18.77456],[77.04165,18.7722],[77.03413,18.76901],[77.02793,18.76995],[77.01601,18.76602],[77.00753,18.76622],[77.00599,18.78652],[77.00247,18.79705],[76.99938,18.80205],[76.99668,18.80278],[76.99543,18.81604],[76.99077,18.82424],[76.99051,18.82891],[76.97443,18.8305],[76.9693,18.82852],[76.95765,18.8317],[76.95589,18.83416],[76.93694,18.83215],[76.93567,18.83461],[76.92878,18.83366],[76.91322,18.83641],[76.90766,18.83883]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"482","area_level":"District","area_name":"Mumbai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.86762,19.05283],[72.84189,19.05023],[72.8384,19.0479],[72.8385,19.03305],[72.83433,19.02539],[72.82647,19.01841],[72.82303,19.0174],[72.82032,19.01933],[72.81818,19.02532],[72.81746,19.02556],[72.81694,19.02427],[72.81639,19.0098],[72.81111,19.00152],[72.81304,18.99232],[72.8105,18.98755],[72.81294,18.98776],[72.81376,18.98296],[72.81154,18.97891],[72.80639,18.97704],[72.80613,18.97521],[72.80406,18.97367],[72.80171,18.9631],[72.80019,18.96149],[72.79918,18.95725],[72.79556,18.95444],[72.7957,18.95337],[72.79354,18.95218],[72.7925,18.94991],[72.79256,18.94606],[72.79365,18.94458],[72.79332,18.93941],[72.79433,18.94033],[72.79514,18.94431],[72.79808,18.94753],[72.80668,18.95327],[72.8077,18.95513],[72.81218,18.95527],[72.82096,18.94692],[72.82361,18.94125],[72.82357,18.93324],[72.81995,18.92787],[72.82282,18.92763],[72.82587,18.92577],[72.82635,18.92258],[72.82559,18.91945],[72.81673,18.9088],[72.8145,18.90808],[72.81155,18.91076],[72.80927,18.91106],[72.8051,18.91015],[72.80409,18.90861],[72.80356,18.89881],[72.80874,18.89341],[72.81349,18.89657],[72.81699,18.90125],[72.81699,18.90691],[72.81813,18.90718],[72.81822,18.90821],[72.82107,18.91081],[72.82488,18.91235],[72.82725,18.91147],[72.82841,18.91218],[72.82794,18.91471],[72.83156,18.91705],[72.83311,18.92113],[72.83798,18.92564],[72.83493,18.92601],[72.83604,18.92694],[72.83559,18.92844],[72.84053,18.93027],[72.84337,18.93029],[72.8431,18.93351],[72.84563,18.9431],[72.84524,18.94629],[72.84847,18.95966],[72.84712,18.96042],[72.84879,18.96105],[72.84612,18.96303],[72.84917,18.96328],[72.84907,18.96411],[72.84604,18.96481],[72.84884,18.96498],[72.85007,18.96651],[72.85049,18.96801],[72.84858,18.96805],[72.84793,18.96953],[72.84906,18.97352],[72.85339,18.97259],[72.85372,18.97368],[72.85054,18.97416],[72.85028,18.97565],[72.85489,18.97494],[72.8552,18.97596],[72.84933,18.97678],[72.84885,18.97775],[72.85485,18.97703],[72.85523,18.97799],[72.84977,18.97935],[72.8502,18.98024],[72.85682,18.97846],[72.86054,18.98147],[72.85432,18.9972],[72.86014,18.99922],[72.86205,19.00319],[72.86097,19.00444],[72.86248,19.01006],[72.8712,19.0129],[72.87824,19.02194],[72.87738,19.02483],[72.88148,19.03648],[72.87974,19.04678],[72.87501,19.05014],[72.86762,19.05283]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"483","area_level":"District","area_name":"Mumbai Suburban","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.85007,19.26949],[72.84544,19.26679],[72.83976,19.26842],[72.83629,19.25964],[72.83826,19.25724],[72.83851,19.25315],[72.82402,19.24596],[72.81269,19.24976],[72.80174,19.2585],[72.79972,19.26255],[72.78948,19.26169],[72.78384,19.26507],[72.78127,19.24653],[72.77873,19.23963],[72.7805,19.23283],[72.77558,19.22719],[72.77683,19.22166],[72.78143,19.21809],[72.78,19.20857],[72.783,19.20889],[72.7862,19.20449],[72.78509,19.20183],[72.78253,19.20133],[72.78173,19.19433],[72.78465,19.19582],[72.78971,19.19475],[72.7926,19.19701],[72.79544,19.19533],[72.79486,19.1747],[72.78579,19.16747],[72.78255,19.16904],[72.78164,19.16788],[72.78181,19.16569],[72.78447,19.16354],[72.78196,19.15929],[72.78328,19.15645],[72.78791,19.15326],[72.78969,19.14733],[72.78815,19.14349],[72.78908,19.13656],[72.78607,19.13352],[72.7941,19.13267],[72.79699,19.13449],[72.79553,19.14139],[72.80051,19.13955],[72.80685,19.15145],[72.81156,19.14477],[72.80608,19.14665],[72.80444,19.14074],[72.81731,19.12699],[72.81931,19.12289],[72.82112,19.12239],[72.82056,19.12057],[72.82576,19.12007],[72.8287,19.11662],[72.82199,19.1192],[72.82118,19.11742],[72.82753,19.09435],[72.82589,19.08473],[72.82816,19.0835],[72.83322,19.08483],[72.82798,19.07739],[72.82516,19.07796],[72.82391,19.0807],[72.82299,19.08005],[72.82189,19.07386],[72.82342,19.06532],[72.82194,19.06038],[72.82445,19.05584],[72.81701,19.04147],[72.8199,19.04096],[72.82708,19.0459],[72.83178,19.05325],[72.83695,19.05277],[72.8384,19.0479],[72.84283,19.05062],[72.86687,19.053],[72.87923,19.04764],[72.88148,19.03648],[72.87738,19.02483],[72.87962,19.01969],[72.88507,19.01581],[72.88572,19.01207],[72.87984,18.99078],[72.88299,18.98394],[72.88932,18.97943],[72.90233,18.97891],[72.92217,18.98415],[72.95605,18.98779],[72.95868,18.99886],[72.96957,19.01869],[72.97646,19.03862],[72.97565,19.04739],[72.96609,19.06929],[72.9657,19.09993],[72.96719,19.11032],[72.9756,19.13644],[72.97405,19.13698],[72.98002,19.15551],[72.98113,19.15561],[72.97565,19.15849],[72.97258,19.16221],[72.97187,19.16814],[72.96862,19.17126],[72.96667,19.17121],[72.9662,19.17792],[72.96228,19.17651],[72.95354,19.18508],[72.95011,19.18464],[72.94594,19.1876],[72.94046,19.18666],[72.93406,19.19113],[72.93355,19.20422],[72.9379,19.21109],[72.93072,19.2086],[72.9203,19.21349],[72.9178,19.22395],[72.91236,19.23197],[72.90603,19.23776],[72.90588,19.24665],[72.89929,19.24919],[72.88833,19.24981],[72.87539,19.26064],[72.86839,19.26138],[72.86561,19.26484],[72.86588,19.26681],[72.86227,19.26787],[72.86094,19.26683],[72.85781,19.26888],[72.85325,19.26699],[72.85007,19.26949]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"484","area_level":"District","area_name":"Nagpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.23176,21.72221],[79.23064,21.72223],[79.23086,21.71875],[79.23522,21.71752],[79.23737,21.71341],[79.23394,21.70858],[79.22679,21.70368],[79.22086,21.69287],[79.22182,21.67704],[79.22906,21.67398],[79.23118,21.67035],[79.23131,21.65698],[79.23031,21.65572],[79.22411,21.65543],[79.22402,21.6488],[79.20899,21.65006],[79.14831,21.66117],[79.14824,21.65087],[79.14528,21.64669],[79.1433,21.63696],[79.13452,21.63321],[79.13034,21.62581],[79.1239,21.62659],[79.12289,21.62493],[79.11862,21.62382],[79.11211,21.62391],[79.10053,21.6176],[79.10207,21.60923],[79.10694,21.60721],[79.10721,21.60503],[79.103,21.60149],[79.09336,21.60161],[79.09396,21.59811],[79.08965,21.59757],[79.08851,21.60395],[79.07647,21.6054],[79.05825,21.60151],[79.05537,21.60148],[79.05294,21.60416],[79.04769,21.60244],[79.04188,21.60473],[79.02484,21.60169],[79.01921,21.60259],[79.01237,21.59945],[79.00291,21.60642],[78.99801,21.61857],[78.99596,21.61696],[78.98714,21.61596],[78.97552,21.61764],[78.97426,21.6128],[78.96993,21.61052],[78.96512,21.60489],[78.952,21.59717],[78.94742,21.59672],[78.94349,21.59196],[78.92997,21.59284],[78.92767,21.5902],[78.91676,21.59092],[78.91571,21.58866],[78.91432,21.58887],[78.9163,21.58759],[78.91652,21.58493],[78.91505,21.58299],[78.91375,21.57099],[78.93194,21.56452],[78.93186,21.56176],[78.92792,21.55958],[78.91817,21.56114],[78.91274,21.5553],[78.9068,21.55326],[78.91338,21.55078],[78.91255,21.54886],[78.9186,21.54713],[78.92555,21.54082],[78.92987,21.54036],[78.92593,21.53269],[78.92743,21.52225],[78.9318,21.52367],[78.93543,21.52283],[78.94439,21.51588],[78.94467,21.51266],[78.9413,21.5113],[78.94025,21.50787],[78.93924,21.49354],[78.93669,21.48577],[78.92306,21.48745],[78.9174,21.49225],[78.89926,21.50046],[78.89518,21.49828],[78.89084,21.48526],[78.87152,21.48969],[78.86763,21.49131],[78.86803,21.49408],[78.86331,21.4927],[78.85586,21.49462],[78.85619,21.49284],[78.85191,21.48972],[78.84844,21.49003],[78.84105,21.487],[78.82975,21.49017],[78.81979,21.48726],[78.81557,21.4877],[78.81516,21.49064],[78.80026,21.49016],[78.79599,21.48554],[78.78998,21.48639],[78.78869,21.48089],[78.78698,21.48089],[78.78663,21.47934],[78.78015,21.47887],[78.77877,21.46936],[78.77613,21.46458],[78.7719,21.47168],[78.7716,21.47672],[78.76881,21.4775],[78.7666,21.4828],[78.76687,21.48904],[78.75663,21.49024],[78.75085,21.49298],[78.74495,21.48101],[78.74559,21.47019],[78.73343,21.46969],[78.731,21.46381],[78.72847,21.46229],[78.70756,21.47063],[78.70738,21.47391],[78.69984,21.47381],[78.70167,21.47632],[78.69335,21.47909],[78.68849,21.47794],[78.69014,21.4802],[78.68891,21.48197],[78.67094,21.48009],[78.66712,21.47709],[78.65931,21.48138],[78.64343,21.48552],[78.62868,21.47568],[78.61997,21.47826],[78.61918,21.48157],[78.60877,21.48906],[78.60301,21.48809],[78.60098,21.4854],[78.59475,21.48848],[78.58534,21.48672],[78.58415,21.49006],[78.58177,21.48995],[78.58249,21.4923],[78.57636,21.49787],[78.57172,21.4989],[78.57315,21.50156],[78.56785,21.50579],[78.56702,21.5097],[78.57015,21.51425],[78.56002,21.51328],[78.55653,21.51555],[78.55598,21.51762],[78.54973,21.51828],[78.54067,21.52372],[78.53076,21.52326],[78.51164,21.52869],[78.50926,21.52602],[78.50472,21.52679],[78.50061,21.51709],[78.49503,21.51725],[78.48694,21.50777],[78.48685,21.50553],[78.4757,21.50571],[78.47522,21.50097],[78.46966,21.50087],[78.46223,21.50384],[78.46068,21.50348],[78.45709,21.49607],[78.453,21.49683],[78.44965,21.49552],[78.44809,21.5],[78.43955,21.5023],[78.4365,21.4995],[78.4304,21.49745],[78.43312,21.49117],[78.42894,21.48587],[78.42822,21.47584],[78.43847,21.471],[78.43646,21.46586],[78.44006,21.46277],[78.43871,21.45646],[78.44135,21.45239],[78.44062,21.44819],[78.44284,21.44654],[78.44213,21.44314],[78.43889,21.44151],[78.43852,21.4398],[78.44141,21.43547],[78.4418,21.42207],[78.44467,21.42143],[78.44367,21.41619],[78.44528,21.41312],[78.44809,21.41288],[78.4492,21.41064],[78.44759,21.40283],[78.44069,21.40066],[78.43851,21.40217],[78.43231,21.40142],[78.42385,21.39685],[78.42078,21.39944],[78.41908,21.39559],[78.41592,21.39364],[78.42046,21.39423],[78.41956,21.39101],[78.4132,21.38749],[78.41045,21.38918],[78.4068,21.38767],[78.40591,21.38534],[78.40822,21.38193],[78.40691,21.3817],[78.39498,21.38513],[78.38914,21.39139],[78.3821,21.38693],[78.3802,21.38764],[78.3764,21.3898],[78.37416,21.3951],[78.37131,21.3957],[78.36342,21.39222],[78.3645,21.38503],[78.36238,21.38265],[78.35828,21.38286],[78.3543,21.38006],[78.34993,21.38186],[78.34712,21.37993],[78.34683,21.38424],[78.34468,21.3853],[78.34296,21.38004],[78.33851,21.37489],[78.32991,21.37212],[78.3273,21.36838],[78.32222,21.36883],[78.3167,21.36678],[78.30879,21.36191],[78.3071,21.35733],[78.29754,21.35551],[78.2867,21.35041],[78.27749,21.35221],[78.27224,21.35165],[78.26913,21.34588],[78.25113,21.33875],[78.2496,21.33124],[78.25374,21.32553],[78.25568,21.32977],[78.25728,21.32996],[78.26417,21.32288],[78.26683,21.3227],[78.26993,21.31508],[78.2751,21.31112],[78.27744,21.30645],[78.28567,21.30227],[78.29416,21.29313],[78.31265,21.29458],[78.30915,21.28632],[78.30323,21.27954],[78.30345,21.27549],[78.31093,21.26809],[78.321,21.27319],[78.32779,21.27127],[78.32937,21.26788],[78.32445,21.26294],[78.32458,21.25578],[78.3314,21.25001],[78.33764,21.25036],[78.34206,21.25322],[78.35835,21.25268],[78.37536,21.24205],[78.3825,21.24313],[78.40069,21.23945],[78.41193,21.23921],[78.41351,21.23261],[78.41659,21.229],[78.4301,21.22599],[78.44075,21.23468],[78.44528,21.236],[78.45494,21.22496],[78.46324,21.22405],[78.46378,21.2213],[78.46949,21.21893],[78.47041,21.21598],[78.47729,21.21963],[78.47839,21.21305],[78.48555,21.2103],[78.48624,21.20717],[78.49168,21.20057],[78.50202,21.1908],[78.50296,21.1872],[78.50987,21.1869],[78.51058,21.1827],[78.5198,21.17441],[78.52033,21.16866],[78.5185,21.16282],[78.52424,21.15457],[78.52339,21.15218],[78.5281,21.15087],[78.53028,21.14033],[78.54027,21.13683],[78.5451,21.1327],[78.54688,21.12767],[78.55284,21.12575],[78.55266,21.11899],[78.55495,21.11677],[78.57409,21.11415],[78.58472,21.11664],[78.58818,21.1149],[78.58815,21.11154],[78.59018,21.10961],[78.59933,21.10807],[78.59928,21.10581],[78.59737,21.10587],[78.59539,21.10263],[78.59447,21.09757],[78.59804,21.09649],[78.59721,21.08964],[78.61063,21.08837],[78.61004,21.07931],[78.60704,21.06962],[78.61161,21.07019],[78.61496,21.06859],[78.61506,21.06548],[78.61762,21.06541],[78.62139,21.06813],[78.62662,21.06647],[78.6293,21.05773],[78.64354,21.05837],[78.64524,21.05487],[78.64963,21.05189],[78.65063,21.04491],[78.64917,21.03558],[78.6559,21.0332],[78.66137,21.03451],[78.66607,21.03348],[78.67564,21.03608],[78.67654,21.03269],[78.67922,21.03332],[78.67802,21.03008],[78.68274,21.0295],[78.68626,21.02089],[78.69216,21.0178],[78.70735,21.01353],[78.71036,21.01395],[78.71214,21.00854],[78.716,21.0041],[78.72033,21.0055],[78.72516,21.00249],[78.72545,21.00445],[78.72657,21.00417],[78.72944,20.99458],[78.72494,20.99226],[78.7238,20.98851],[78.72541,20.983],[78.72338,20.97938],[78.72576,20.97341],[78.72435,20.96885],[78.73015,20.96327],[78.73183,20.95959],[78.73094,20.95809],[78.73321,20.9463],[78.74221,20.94384],[78.74848,20.94458],[78.73963,20.93955],[78.74286,20.93619],[78.74241,20.93454],[78.74844,20.93058],[78.75277,20.92341],[78.75769,20.92092],[78.76646,20.92044],[78.76902,20.91737],[78.76962,20.91224],[78.77556,20.91315],[78.78229,20.91124],[78.77513,20.90943],[78.77302,20.90409],[78.78563,20.8901],[78.80544,20.88648],[78.81719,20.88073],[78.82459,20.89293],[78.83011,20.89476],[78.83996,20.89294],[78.84798,20.88667],[78.85097,20.88624],[78.84743,20.87862],[78.86004,20.87452],[78.86095,20.86982],[78.85863,20.86677],[78.8577,20.85492],[78.85973,20.85238],[78.86064,20.84162],[78.86568,20.84004],[78.86832,20.8329],[78.87198,20.83046],[78.87804,20.82979],[78.88159,20.83554],[78.88361,20.8436],[78.89947,20.8414],[78.90778,20.83887],[78.90969,20.83608],[78.91285,20.83599],[78.91244,20.83055],[78.91347,20.83028],[78.91188,20.82245],[78.91266,20.81961],[78.91678,20.81954],[78.91518,20.81245],[78.91186,20.8085],[78.92297,20.80202],[78.92441,20.79813],[78.93545,20.79755],[78.94539,20.79374],[78.94447,20.78206],[78.94093,20.78134],[78.94075,20.77085],[78.94243,20.76666],[78.95301,20.76821],[78.95933,20.7623],[78.95866,20.76005],[78.97475,20.75524],[78.98661,20.75355],[78.9943,20.75448],[78.99608,20.75604],[78.99738,20.74482],[79.01166,20.7478],[79.01126,20.74591],[79.01591,20.74429],[79.0156,20.73983],[79.03468,20.73811],[79.03627,20.74175],[79.04211,20.73789],[79.05026,20.73766],[79.04997,20.73339],[79.05183,20.72915],[79.05552,20.72934],[79.05497,20.72746],[79.07251,20.72668],[79.07296,20.71923],[79.08229,20.71632],[79.08576,20.71681],[79.08999,20.71123],[79.09669,20.71209],[79.10118,20.71587],[79.10332,20.71571],[79.10388,20.71148],[79.10914,20.70232],[79.10528,20.69255],[79.10521,20.68794],[79.11137,20.68827],[79.11419,20.68465],[79.12005,20.68311],[79.12335,20.68392],[79.12767,20.6808],[79.14276,20.67905],[79.14253,20.67358],[79.14452,20.66905],[79.14371,20.6636],[79.14828,20.66117],[79.14736,20.65362],[79.15771,20.6517],[79.17071,20.64559],[79.16864,20.627],[79.17923,20.61906],[79.18405,20.62127],[79.18367,20.6146],[79.18658,20.61441],[79.18593,20.60894],[79.18763,20.6077],[79.1889,20.59916],[79.19125,20.59966],[79.1926,20.60269],[79.2082,20.60007],[79.21103,20.59828],[79.21081,20.59595],[79.21978,20.59071],[79.22066,20.58313],[79.22238,20.58489],[79.23219,20.58614],[79.24911,20.59122],[79.25389,20.58888],[79.25873,20.58941],[79.2642,20.58717],[79.27463,20.59025],[79.27685,20.58815],[79.28322,20.5884],[79.28809,20.59172],[79.29414,20.59301],[79.29667,20.59269],[79.29731,20.58918],[79.30718,20.58735],[79.30806,20.58528],[79.31404,20.5836],[79.32118,20.58381],[79.3247,20.59071],[79.3304,20.59456],[79.3312,20.60977],[79.33412,20.61977],[79.33738,20.62116],[79.33795,20.62663],[79.33928,20.62641],[79.33967,20.63023],[79.34212,20.63337],[79.34456,20.63296],[79.3472,20.63556],[79.3471,20.64328],[79.34412,20.64234],[79.34061,20.64521],[79.34391,20.64519],[79.34361,20.64711],[79.35464,20.6548],[79.35649,20.66204],[79.34925,20.66647],[79.34803,20.66978],[79.34871,20.67605],[79.35757,20.67427],[79.36928,20.67595],[79.37187,20.68157],[79.3769,20.68222],[79.37951,20.68433],[79.38002,20.68189],[79.38811,20.68138],[79.39009,20.6734],[79.38804,20.67132],[79.38803,20.66668],[79.39761,20.66267],[79.39759,20.66026],[79.40264,20.6593],[79.41246,20.66176],[79.4195,20.66028],[79.42396,20.6613],[79.42386,20.66303],[79.428,20.66488],[79.43614,20.66187],[79.43648,20.66409],[79.44288,20.66594],[79.44357,20.66965],[79.44892,20.66769],[79.44954,20.66997],[79.45309,20.66975],[79.45395,20.67223],[79.45842,20.67408],[79.45869,20.6758],[79.46385,20.6774],[79.46394,20.67973],[79.4676,20.67986],[79.4697,20.6816],[79.46966,20.68426],[79.47145,20.6837],[79.47368,20.69115],[79.48056,20.69187],[79.48091,20.69531],[79.48276,20.69524],[79.48512,20.70039],[79.48823,20.70236],[79.48987,20.7089],[79.49349,20.70911],[79.49483,20.70499],[79.50042,20.70476],[79.50449,20.70192],[79.50642,20.70497],[79.50578,20.70923],[79.51429,20.7088],[79.51715,20.71017],[79.51943,20.72141],[79.52279,20.7265],[79.5215,20.72805],[79.52275,20.73184],[79.52935,20.73652],[79.52865,20.74065],[79.53011,20.7413],[79.53186,20.74756],[79.53136,20.75664],[79.53486,20.75927],[79.53481,20.76282],[79.5366,20.76473],[79.53151,20.77483],[79.53538,20.77729],[79.53628,20.78096],[79.54132,20.78193],[79.54607,20.78575],[79.54465,20.79125],[79.54982,20.79478],[79.5517,20.79944],[79.55747,20.80068],[79.55957,20.80266],[79.55804,20.80455],[79.55966,20.80542],[79.55947,20.80809],[79.55621,20.81005],[79.5561,20.81378],[79.55373,20.81449],[79.55364,20.81743],[79.55038,20.82046],[79.55178,20.82126],[79.55177,20.82619],[79.54851,20.8266],[79.54665,20.82898],[79.548,20.83155],[79.54657,20.83269],[79.54717,20.8344],[79.53887,20.84358],[79.53962,20.84795],[79.53727,20.8522],[79.54946,20.84971],[79.55636,20.85615],[79.5581,20.85346],[79.56053,20.85391],[79.56507,20.85079],[79.56523,20.84541],[79.57964,20.84336],[79.58845,20.85076],[79.59598,20.86417],[79.59805,20.86419],[79.59824,20.86549],[79.59984,20.8636],[79.60275,20.86508],[79.60335,20.86709],[79.60769,20.86653],[79.6086,20.86411],[79.613,20.86601],[79.60798,20.87545],[79.61076,20.88582],[79.61032,20.89704],[79.61235,20.90362],[79.62035,20.9094],[79.6329,20.91176],[79.64628,20.92475],[79.65409,20.94395],[79.65697,20.96277],[79.65485,20.97223],[79.65123,20.97836],[79.63708,20.99036],[79.63173,21.00354],[79.6217,21.01662],[79.61333,21.03183],[79.59664,21.07394],[79.59234,21.07681],[79.5876,21.07758],[79.58481,21.07572],[79.57906,21.06671],[79.57207,21.06609],[79.56478,21.07095],[79.56145,21.07776],[79.55365,21.08733],[79.55069,21.08868],[79.54267,21.08563],[79.53922,21.08147],[79.53329,21.07838],[79.52642,21.07892],[79.5196,21.08886],[79.53075,21.09362],[79.53215,21.09576],[79.52852,21.09771],[79.52509,21.10248],[79.51645,21.10473],[79.52475,21.11988],[79.51717,21.12118],[79.51407,21.12509],[79.51023,21.12399],[79.50897,21.12659],[79.50993,21.13269],[79.5055,21.13553],[79.50058,21.1344],[79.50117,21.13707],[79.49372,21.13777],[79.49372,21.14277],[79.4974,21.14262],[79.50406,21.14709],[79.50807,21.16293],[79.50634,21.16532],[79.49945,21.16818],[79.49978,21.17518],[79.49703,21.17591],[79.49584,21.17907],[79.49828,21.18369],[79.5075,21.18284],[79.513,21.17635],[79.51503,21.17605],[79.51593,21.17748],[79.51652,21.17526],[79.52112,21.17952],[79.52283,21.17759],[79.52476,21.17829],[79.52555,21.1768],[79.52894,21.17637],[79.53034,21.17454],[79.5296,21.17285],[79.52728,21.17077],[79.525,21.171],[79.52265,21.16411],[79.52823,21.16275],[79.53207,21.15913],[79.54096,21.15897],[79.54172,21.15668],[79.54372,21.15874],[79.5447,21.15797],[79.54513,21.16008],[79.54662,21.15895],[79.54954,21.15972],[79.5571,21.15612],[79.55802,21.1588],[79.55638,21.15974],[79.56003,21.16132],[79.55771,21.16409],[79.55938,21.16607],[79.55736,21.16739],[79.55772,21.16965],[79.55359,21.16939],[79.55093,21.17129],[79.55088,21.17318],[79.55601,21.18338],[79.55946,21.18562],[79.56041,21.1892],[79.55734,21.19192],[79.55823,21.19647],[79.55698,21.19768],[79.55839,21.19852],[79.55695,21.203],[79.54944,21.20658],[79.54971,21.20837],[79.55529,21.213],[79.55879,21.21861],[79.56003,21.2251],[79.56315,21.22693],[79.5632,21.23117],[79.55951,21.23327],[79.56053,21.24139],[79.56327,21.24594],[79.56886,21.24762],[79.56737,21.26228],[79.56983,21.27185],[79.57375,21.27161],[79.57613,21.27614],[79.57361,21.28028],[79.57505,21.28347],[79.57193,21.28376],[79.57068,21.29197],[79.56815,21.29158],[79.56885,21.29353],[79.56422,21.29957],[79.56083,21.29735],[79.55987,21.30307],[79.55619,21.30166],[79.55749,21.30425],[79.55355,21.30573],[79.55668,21.30853],[79.55372,21.31009],[79.55234,21.31309],[79.55394,21.31487],[79.55123,21.31765],[79.55516,21.31796],[79.5549,21.32321],[79.55649,21.32428],[79.55368,21.32633],[79.55518,21.32856],[79.55367,21.33022],[79.54875,21.32907],[79.54426,21.33175],[79.54133,21.33722],[79.53891,21.33765],[79.53921,21.34096],[79.53382,21.33983],[79.53704,21.3443],[79.53514,21.34483],[79.53564,21.34648],[79.53401,21.34582],[79.53368,21.34877],[79.52645,21.34905],[79.52406,21.35354],[79.52472,21.3599],[79.5227,21.36425],[79.51745,21.36626],[79.5172,21.37132],[79.51298,21.37468],[79.51346,21.37673],[79.51083,21.38024],[79.50877,21.3805],[79.50876,21.38297],[79.50219,21.39122],[79.49953,21.39846],[79.48376,21.39884],[79.48817,21.40313],[79.48525,21.41257],[79.48556,21.41919],[79.48216,21.42704],[79.48024,21.42885],[79.47475,21.42882],[79.46691,21.42462],[79.45684,21.42803],[79.45486,21.431],[79.44841,21.43465],[79.44813,21.44384],[79.45008,21.45169],[79.44834,21.45619],[79.44907,21.45938],[79.45253,21.45903],[79.4576,21.46249],[79.45842,21.46798],[79.45986,21.46787],[79.46911,21.4836],[79.47247,21.48388],[79.47849,21.4932],[79.48147,21.49924],[79.48029,21.50148],[79.48287,21.50144],[79.49235,21.50832],[79.49591,21.51452],[79.49983,21.51679],[79.5082,21.52891],[79.51389,21.53423],[79.527,21.54002],[79.53167,21.53988],[79.53591,21.53589],[79.53762,21.53606],[79.53749,21.53898],[79.54019,21.54272],[79.53756,21.54899],[79.54393,21.55952],[79.54331,21.56682],[79.54007,21.57064],[79.53206,21.57502],[79.52794,21.5797],[79.51824,21.58036],[79.51203,21.58397],[79.51008,21.59566],[79.511,21.60488],[79.50439,21.61124],[79.50371,21.61459],[79.50713,21.62132],[79.51662,21.62085],[79.51723,21.62575],[79.5161,21.63138],[79.50777,21.63435],[79.50657,21.63896],[79.50427,21.6411],[79.50676,21.64567],[79.50134,21.65171],[79.50135,21.65979],[79.49621,21.66541],[79.49633,21.67401],[79.48072,21.67784],[79.46073,21.68755],[79.4495,21.68206],[79.43525,21.68283],[79.42799,21.68975],[79.4222,21.69182],[79.41566,21.69116],[79.41012,21.68475],[79.40271,21.68221],[79.40044,21.67677],[79.39609,21.67651],[79.39249,21.67412],[79.37465,21.67841],[79.357,21.67925],[79.35237,21.67806],[79.35427,21.68483],[79.34289,21.68396],[79.32455,21.68797],[79.32224,21.68523],[79.31826,21.68851],[79.31141,21.68827],[79.29669,21.69331],[79.29059,21.69254],[79.2886,21.69528],[79.2858,21.69547],[79.28051,21.70172],[79.27791,21.70937],[79.26916,21.71486],[79.24496,21.72148],[79.24193,21.72018],[79.23176,21.72221]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"485","area_level":"District","area_name":"Nanded","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.06169,19.9091],[78.05915,19.91249],[78.05735,19.92177],[78.05175,19.9237],[78.03311,19.91985],[78.02548,19.91656],[78.02013,19.9094],[78.01458,19.9077],[77.99891,19.9114],[77.97882,19.90865],[77.9675,19.90549],[77.95238,19.90888],[77.9431,19.9008],[77.93984,19.89449],[77.93606,19.89182],[77.92508,19.89059],[77.91771,19.88419],[77.90356,19.88128],[77.89617,19.87529],[77.87994,19.85035],[77.87409,19.84634],[77.87039,19.83357],[77.86991,19.82074],[77.85307,19.80514],[77.84826,19.79806],[77.85182,19.78514],[77.86144,19.77861],[77.86342,19.77407],[77.86375,19.76755],[77.85799,19.7514],[77.86042,19.74518],[77.86663,19.74152],[77.8765,19.74405],[77.87964,19.735],[77.88985,19.72591],[77.89433,19.7271],[77.89766,19.73322],[77.90412,19.73315],[77.91419,19.72903],[77.92521,19.73725],[77.93023,19.73852],[77.94728,19.73002],[77.95711,19.71794],[77.96319,19.7066],[77.96948,19.70275],[77.97782,19.70178],[77.98015,19.69989],[77.98264,19.69199],[77.981,19.68097],[77.98985,19.67317],[78.00046,19.67263],[78.01639,19.68523],[78.02763,19.69127],[78.03571,19.69288],[78.04969,19.68943],[78.05624,19.67483],[78.05489,19.66609],[78.05586,19.66261],[78.06533,19.66205],[78.0705,19.65941],[78.07572,19.65197],[78.08017,19.64093],[78.08734,19.63699],[78.09335,19.63658],[78.0962,19.63833],[78.09824,19.64904],[78.10534,19.65598],[78.10895,19.65636],[78.12019,19.65046],[78.1237,19.6508],[78.12726,19.65497],[78.13031,19.66451],[78.13453,19.66429],[78.17975,19.64916],[78.19649,19.61573],[78.1898,19.59676],[78.19166,19.58717],[78.18486,19.57623],[78.18937,19.56622],[78.18817,19.55835],[78.18373,19.55552],[78.17285,19.55447],[78.15759,19.5461],[78.14678,19.54516],[78.12861,19.55113],[78.1231,19.55003],[78.12041,19.54774],[78.11929,19.54529],[78.12064,19.54198],[78.13493,19.52868],[78.1347,19.51932],[78.12296,19.51028],[78.11881,19.49284],[78.11534,19.48983],[78.11092,19.48186],[78.10368,19.48102],[78.09547,19.48393],[78.08653,19.47525],[78.0741,19.46663],[78.06668,19.45852],[78.06299,19.45978],[78.0439,19.47445],[78.03091,19.48822],[78.02224,19.48959],[78.01693,19.4859],[78.01531,19.48092],[78.01657,19.46079],[78.01502,19.45578],[78.00682,19.45277],[77.99368,19.4542],[77.98301,19.46399],[77.98304,19.46647],[77.98855,19.47524],[77.98751,19.47932],[77.98229,19.48333],[77.97532,19.49295],[77.97316,19.49783],[77.97261,19.50739],[77.9709,19.50895],[77.95377,19.51192],[77.94664,19.50717],[77.93897,19.49744],[77.93663,19.49866],[77.93517,19.5047],[77.9144,19.51765],[77.91005,19.53297],[77.90643,19.53428],[77.90312,19.53275],[77.90037,19.52601],[77.89672,19.52234],[77.88974,19.51988],[77.88732,19.50596],[77.88066,19.50208],[77.87734,19.50406],[77.87819,19.51224],[77.87686,19.51537],[77.86661,19.51673],[77.85936,19.52243],[77.85225,19.51982],[77.84247,19.51096],[77.84127,19.50573],[77.84362,19.49489],[77.84201,19.48786],[77.83806,19.48383],[77.82981,19.48397],[77.82753,19.48271],[77.82491,19.4799],[77.82484,19.4776],[77.83273,19.46644],[77.84307,19.45938],[77.84639,19.4531],[77.84551,19.45125],[77.83761,19.44948],[77.83122,19.43904],[77.826,19.43807],[77.81847,19.44117],[77.8128,19.45827],[77.8068,19.46454],[77.80377,19.46408],[77.80025,19.46068],[77.7987,19.45004],[77.78672,19.44956],[77.77459,19.43996],[77.75084,19.4309],[77.74387,19.43207],[77.74083,19.43778],[77.73084,19.43443],[77.70546,19.43664],[77.69555,19.44028],[77.69539,19.45726],[77.70978,19.46849],[77.71192,19.47792],[77.71474,19.47859],[77.71911,19.47464],[77.72349,19.47446],[77.72959,19.48048],[77.73514,19.48068],[77.73839,19.48262],[77.73954,19.48563],[77.73623,19.48873],[77.73362,19.49435],[77.73418,19.49674],[77.74696,19.50446],[77.75081,19.51347],[77.74994,19.51856],[77.74514,19.52571],[77.72818,19.53227],[77.70576,19.52214],[77.70418,19.52543],[77.70624,19.53321],[77.69777,19.53895],[77.69398,19.54],[77.67417,19.53904],[77.66282,19.54559],[77.65129,19.54956],[77.63836,19.54817],[77.63117,19.55365],[77.63125,19.55619],[77.63389,19.55818],[77.64234,19.55534],[77.6479,19.55628],[77.64871,19.55818],[77.64124,19.57918],[77.64065,19.58684],[77.63766,19.59472],[77.63785,19.60008],[77.64302,19.60326],[77.64384,19.60765],[77.63831,19.6104],[77.62748,19.60645],[77.62792,19.61857],[77.62653,19.62353],[77.6242,19.62693],[77.61595,19.62703],[77.61297,19.62895],[77.61245,19.63291],[77.61652,19.6382],[77.60948,19.6383],[77.60592,19.64074],[77.60758,19.64764],[77.6064,19.64862],[77.60214,19.64369],[77.59805,19.6423],[77.59551,19.64415],[77.59377,19.65068],[77.5915,19.65169],[77.58284,19.6506],[77.58145,19.65555],[77.57907,19.65727],[77.57691,19.65713],[77.57185,19.6505],[77.56616,19.64958],[77.55466,19.65093],[77.55236,19.65237],[77.55072,19.65829],[77.55259,19.66027],[77.55194,19.66157],[77.54128,19.66048],[77.53709,19.66957],[77.52806,19.6683],[77.51692,19.67087],[77.51014,19.67421],[77.50412,19.67369],[77.49974,19.67898],[77.48881,19.67967],[77.4828,19.67719],[77.47914,19.67901],[77.47862,19.68244],[77.47549,19.68348],[77.46304,19.68094],[77.45903,19.68236],[77.45576,19.67705],[77.44969,19.67565],[77.4496,19.67372],[77.45377,19.67481],[77.45375,19.6732],[77.46244,19.66964],[77.46184,19.66519],[77.46652,19.66424],[77.46641,19.6563],[77.46165,19.64509],[77.46318,19.64275],[77.46651,19.6424],[77.4626,19.61145],[77.46314,19.60965],[77.47937,19.59958],[77.47687,19.59952],[77.47252,19.59353],[77.45652,19.58032],[77.4509,19.56905],[77.45252,19.56793],[77.45263,19.562],[77.46625,19.56407],[77.46439,19.54437],[77.4658,19.53314],[77.46759,19.52869],[77.46983,19.5284],[77.4676,19.50172],[77.46945,19.50129],[77.47003,19.4909],[77.47518,19.49131],[77.48465,19.49798],[77.48715,19.49795],[77.48444,19.49523],[77.48767,19.49541],[77.48801,19.49336],[77.48958,19.49324],[77.48931,19.49129],[77.4872,19.49075],[77.48884,19.48695],[77.48656,19.48711],[77.48643,19.48385],[77.48823,19.48238],[77.4849,19.47567],[77.48654,19.45816],[77.47373,19.45881],[77.47018,19.43799],[77.44815,19.44051],[77.4447,19.42095],[77.43596,19.40711],[77.44774,19.39361],[77.44866,19.39184],[77.44728,19.38634],[77.43522,19.37972],[77.4239,19.37867],[77.41653,19.38062],[77.41717,19.37666],[77.41361,19.36885],[77.40765,19.3661],[77.40001,19.35756],[77.38964,19.35231],[77.38532,19.33988],[77.38141,19.34106],[77.37866,19.33819],[77.36233,19.33954],[77.3492,19.34675],[77.35002,19.35222],[77.33818,19.35597],[77.33105,19.35701],[77.31168,19.35503],[77.31263,19.33751],[77.31074,19.33076],[77.30166,19.33322],[77.29838,19.32902],[77.28912,19.32591],[77.28112,19.32632],[77.28073,19.31602],[77.26389,19.31503],[77.24135,19.32286],[77.23777,19.31263],[77.23545,19.2752],[77.22018,19.27574],[77.21499,19.2669],[77.20607,19.25718],[77.20227,19.25511],[77.20309,19.24478],[77.1933,19.2444],[77.19189,19.2363],[77.17905,19.22892],[77.176,19.21113],[77.18008,19.20369],[77.18123,19.19592],[77.1787,19.18731],[77.17895,19.17524],[77.17704,19.16756],[77.19178,19.16387],[77.19253,19.14185],[77.19158,19.13653],[77.18764,19.13077],[77.18001,19.13153],[77.17933,19.1264],[77.1752,19.12154],[77.17093,19.12357],[77.16687,19.12294],[77.16415,19.12049],[77.16157,19.11443],[77.16313,19.09609],[77.15548,19.08278],[77.14435,19.07571],[77.14107,19.07144],[77.13243,19.07176],[77.12668,19.07767],[77.12222,19.07895],[77.09386,19.06636],[77.08635,19.07327],[77.08516,19.0788],[77.08638,19.08597],[77.08857,19.09012],[77.1022,19.09498],[77.10373,19.09978],[77.10031,19.10892],[77.08398,19.10951],[77.08267,19.10044],[77.07713,19.09307],[77.07394,19.08412],[77.06727,19.07841],[77.06218,19.06928],[77.06124,19.06133],[77.06664,19.04499],[77.06437,19.03176],[77.04326,19.03129],[77.04119,19.00514],[77.05568,18.99934],[77.05644,18.9885],[77.03718,18.96812],[77.03579,18.95266],[77.03262,18.95363],[77.02807,18.94025],[77.02375,18.93851],[77.02278,18.93247],[77.01978,18.93299],[77.01921,18.9317],[77.00938,18.93363],[77.00605,18.92926],[76.99442,18.93205],[76.98867,18.93577],[76.98576,18.92962],[76.98291,18.91441],[76.97798,18.91243],[76.97514,18.91275],[76.97399,18.91578],[76.97388,18.92454],[76.96467,18.93018],[76.95995,18.92963],[76.96041,18.93304],[76.95582,18.93378],[76.95529,18.93195],[76.95297,18.9323],[76.95097,18.92673],[76.9479,18.92759],[76.94588,18.91125],[76.94748,18.90815],[76.92965,18.90139],[76.93317,18.89418],[76.9377,18.89488],[76.95436,18.89203],[76.95134,18.88212],[76.95272,18.87387],[76.97142,18.87706],[76.97969,18.88016],[77.0016,18.88151],[77.00505,18.88001],[77.01494,18.87983],[77.02027,18.85105],[77.01954,18.84367],[77.00835,18.84309],[77.00576,18.8401],[76.99219,18.83253],[76.99051,18.82891],[76.99077,18.82424],[76.99489,18.81812],[76.99668,18.80278],[76.99938,18.80205],[77.00247,18.79705],[77.00599,18.78652],[77.00753,18.76622],[77.01601,18.76602],[77.02793,18.76995],[77.03413,18.76901],[77.05303,18.77456],[77.05575,18.77069],[77.05784,18.76484],[77.05376,18.74812],[77.05381,18.73952],[77.05836,18.72575],[77.05644,18.7171],[77.05125,18.71744],[77.04362,18.6991],[77.04294,18.6945],[77.04548,18.68914],[77.04581,18.68386],[77.06342,18.68128],[77.06674,18.68215],[77.06807,18.68793],[77.09666,18.69146],[77.10224,18.69467],[77.12024,18.69402],[77.1332,18.69749],[77.13842,18.69727],[77.1351,18.71128],[77.14122,18.71331],[77.14501,18.71297],[77.14678,18.70647],[77.15103,18.70057],[77.15761,18.70055],[77.16598,18.70415],[77.17658,18.7039],[77.18342,18.70103],[77.1871,18.69339],[77.1939,18.69135],[77.19332,18.6886],[77.17761,18.67946],[77.15825,18.68224],[77.15655,18.67585],[77.15737,18.66448],[77.15476,18.65681],[77.15389,18.64723],[77.15815,18.64616],[77.17056,18.64852],[77.19709,18.64724],[77.19868,18.64669],[77.19885,18.64249],[77.20286,18.6413],[77.20242,18.63961],[77.20845,18.63778],[77.20856,18.63353],[77.21107,18.63389],[77.2109,18.62421],[77.25357,18.61662],[77.26816,18.61146],[77.26658,18.59372],[77.26727,18.5867],[77.26989,18.58564],[77.26993,18.58311],[77.26549,18.58146],[77.26152,18.56586],[77.27528,18.56149],[77.28158,18.55579],[77.29436,18.54905],[77.28655,18.53986],[77.28596,18.53085],[77.28171,18.52158],[77.27483,18.51968],[77.26674,18.52235],[77.26504,18.51792],[77.26024,18.5153],[77.24586,18.49966],[77.24568,18.49519],[77.25086,18.48661],[77.2615,18.4851],[77.26464,18.48163],[77.26454,18.47972],[77.28397,18.47447],[77.29629,18.4771],[77.29995,18.47418],[77.30043,18.47139],[77.29953,18.46488],[77.29613,18.46347],[77.29429,18.45875],[77.2888,18.45525],[77.28485,18.45612],[77.28004,18.4536],[77.25816,18.45565],[77.25467,18.45467],[77.25459,18.44984],[77.26121,18.44358],[77.26363,18.44365],[77.26328,18.43808],[77.26545,18.43716],[77.26659,18.43402],[77.26629,18.42947],[77.26408,18.42744],[77.2658,18.42235],[77.27325,18.42302],[77.27904,18.4298],[77.28717,18.43057],[77.30032,18.43639],[77.30066,18.43818],[77.31685,18.44225],[77.31688,18.44799],[77.31989,18.45803],[77.32642,18.45885],[77.3269,18.45175],[77.33603,18.45015],[77.33566,18.44232],[77.34522,18.43361],[77.3475,18.43396],[77.34796,18.43947],[77.35107,18.4422],[77.35349,18.44767],[77.36564,18.45156],[77.3675,18.44696],[77.36184,18.43728],[77.36203,18.43558],[77.36446,18.43452],[77.36215,18.42989],[77.3654,18.42772],[77.36726,18.41869],[77.37065,18.41879],[77.36839,18.41253],[77.37233,18.40673],[77.37283,18.4011],[77.38843,18.39953],[77.40016,18.402],[77.40083,18.39988],[77.40357,18.39965],[77.41416,18.39225],[77.41329,18.38507],[77.40984,18.37741],[77.39487,18.36845],[77.39893,18.35979],[77.40015,18.34745],[77.39434,18.34743],[77.39498,18.3415],[77.39016,18.34371],[77.38549,18.34081],[77.38243,18.34225],[77.38094,18.33102],[77.37562,18.33205],[77.3716,18.32521],[77.35672,18.3202],[77.35783,18.31691],[77.36579,18.30712],[77.38512,18.30931],[77.39485,18.30359],[77.40142,18.30449],[77.409,18.30147],[77.41703,18.30643],[77.42556,18.30788],[77.42831,18.31236],[77.43766,18.31031],[77.43642,18.29628],[77.43834,18.28644],[77.44035,18.28263],[77.44586,18.28381],[77.44558,18.27662],[77.44758,18.27],[77.45178,18.26972],[77.45132,18.26781],[77.45365,18.26632],[77.46504,18.26254],[77.47575,18.26466],[77.47973,18.26818],[77.48138,18.27236],[77.49269,18.26721],[77.49866,18.27675],[77.50522,18.27702],[77.50962,18.28181],[77.51156,18.28205],[77.51205,18.29074],[77.51023,18.29248],[77.51109,18.2953],[77.50882,18.30428],[77.51263,18.3096],[77.52373,18.30821],[77.53272,18.2987],[77.54003,18.29466],[77.55126,18.29169],[77.55326,18.29809],[77.5714,18.30883],[77.57048,18.31811],[77.56387,18.3223],[77.55802,18.33142],[77.53023,18.33917],[77.52234,18.34647],[77.52021,18.35718],[77.52405,18.3642],[77.52547,18.37271],[77.53561,18.38075],[77.5386,18.38588],[77.54319,18.38609],[77.54592,18.38869],[77.5516,18.3889],[77.55268,18.40169],[77.55676,18.41714],[77.55647,18.41943],[77.5369,18.42425],[77.53731,18.42628],[77.52817,18.42891],[77.52752,18.44211],[77.52849,18.44337],[77.54056,18.44471],[77.54798,18.44323],[77.5602,18.43728],[77.56418,18.4373],[77.56829,18.43947],[77.56907,18.44287],[77.5743,18.4418],[77.5853,18.44679],[77.5861,18.4494],[77.583,18.44994],[77.5836,18.45621],[77.56404,18.46102],[77.55076,18.46041],[77.54856,18.46858],[77.56024,18.46862],[77.56107,18.47026],[77.57286,18.46981],[77.57637,18.48678],[77.59225,18.48472],[77.59428,18.47691],[77.60313,18.47685],[77.60361,18.48368],[77.60623,18.4892],[77.60368,18.49294],[77.60471,18.49637],[77.5944,18.4962],[77.59429,18.49791],[77.58591,18.504],[77.58775,18.51286],[77.59707,18.51588],[77.60028,18.5223],[77.59883,18.52421],[77.60044,18.5273],[77.59657,18.5302],[77.59069,18.52667],[77.59206,18.53232],[77.5953,18.53554],[77.59637,18.54894],[77.61007,18.54988],[77.61056,18.54454],[77.6125,18.54448],[77.61319,18.5491],[77.61604,18.54897],[77.61519,18.55085],[77.62647,18.55189],[77.62925,18.55368],[77.62763,18.54812],[77.634,18.54392],[77.63962,18.55494],[77.64791,18.55493],[77.64771,18.55299],[77.65207,18.55179],[77.64922,18.54119],[77.6459,18.53884],[77.65135,18.53226],[77.65586,18.5309],[77.66166,18.53186],[77.6646,18.5358],[77.68069,18.54525],[77.68833,18.54495],[77.70156,18.55517],[77.71097,18.5563],[77.72325,18.55333],[77.7385,18.55679],[77.73704,18.56384],[77.73961,18.56836],[77.74038,18.57522],[77.74347,18.57762],[77.74607,18.5846],[77.75034,18.58921],[77.7476,18.6032],[77.74557,18.60594],[77.74566,18.62129],[77.73471,18.64101],[77.7305,18.64515],[77.7302,18.65608],[77.73571,18.66099],[77.72997,18.66694],[77.73822,18.6765],[77.74313,18.67827],[77.74369,18.68162],[77.74925,18.68267],[77.75244,18.68934],[77.75059,18.69525],[77.7535,18.70099],[77.75998,18.70684],[77.76815,18.70586],[77.77033,18.70184],[77.77324,18.70136],[77.77191,18.68905],[77.77701,18.68536],[77.78729,18.68264],[77.79035,18.68783],[77.78976,18.69515],[77.79501,18.69704],[77.79622,18.70396],[77.80106,18.70762],[77.80418,18.71318],[77.80425,18.72724],[77.81234,18.73851],[77.81671,18.75064],[77.82679,18.76984],[77.83219,18.78825],[77.83851,18.79683],[77.83995,18.80482],[77.85368,18.80907],[77.85988,18.80905],[77.87141,18.81816],[77.88199,18.8174],[77.90667,18.8267],[77.91226,18.82689],[77.9345,18.82227],[77.94309,18.82481],[77.94828,18.8291],[77.9489,18.84329],[77.93478,18.84514],[77.93745,18.85159],[77.92935,18.85359],[77.93006,18.85873],[77.92514,18.86069],[77.91415,18.86137],[77.91243,18.86507],[77.90323,18.86663],[77.90391,18.88125],[77.89158,18.88141],[77.88481,18.9003],[77.88538,18.9042],[77.87394,18.90767],[77.87317,18.90393],[77.85794,18.90235],[77.84325,18.90869],[77.84791,18.9269],[77.85146,18.92641],[77.85859,18.94911],[77.84194,18.94987],[77.83562,18.94725],[77.83245,18.94163],[77.81925,18.94586],[77.81622,18.94728],[77.81984,18.95444],[77.81621,18.95752],[77.82176,18.97851],[77.80522,18.98186],[77.79114,18.98282],[77.78967,18.97458],[77.78763,18.97265],[77.7715,18.97916],[77.77535,19.00063],[77.77224,19.00363],[77.77034,19.00996],[77.76992,19.02241],[77.76556,19.02431],[77.76179,19.033],[77.76495,19.04714],[77.76481,19.06266],[77.77523,19.05602],[77.7891,19.05567],[77.79331,19.05257],[77.80035,19.05112],[77.7986,19.06145],[77.8001,19.06684],[77.7968,19.07259],[77.79786,19.07516],[77.80167,19.07618],[77.80281,19.07976],[77.80458,19.0918],[77.80312,19.09617],[77.80453,19.10056],[77.80993,19.10473],[77.81814,19.10498],[77.82358,19.09773],[77.82641,19.09664],[77.82953,19.08707],[77.83127,19.08608],[77.8423,19.08801],[77.84858,19.0865],[77.8504,19.08856],[77.85108,19.09203],[77.84621,19.10131],[77.84837,19.11013],[77.84766,19.116],[77.84156,19.11811],[77.83688,19.13401],[77.83406,19.13431],[77.83566,19.13808],[77.83795,19.13765],[77.84322,19.14158],[77.85253,19.15468],[77.85265,19.16682],[77.85453,19.1702],[77.85671,19.17075],[77.85593,19.17711],[77.86049,19.18035],[77.85401,19.18749],[77.84772,19.1896],[77.85149,19.1961],[77.85123,19.19975],[77.85481,19.20277],[77.85819,19.21418],[77.86601,19.2264],[77.86612,19.23261],[77.86814,19.23674],[77.8669,19.23994],[77.87002,19.24418],[77.86947,19.24817],[77.87141,19.25502],[77.8746,19.25364],[77.87502,19.25884],[77.89001,19.26089],[77.89092,19.25928],[77.90285,19.25646],[77.90756,19.26823],[77.90346,19.27796],[77.89419,19.27981],[77.88436,19.27893],[77.86558,19.28382],[77.86495,19.28813],[77.8664,19.29172],[77.86346,19.3042],[77.87283,19.30531],[77.87818,19.30928],[77.89003,19.3133],[77.89432,19.32047],[77.91155,19.31626],[77.9176,19.32328],[77.92331,19.32578],[77.92801,19.33221],[77.93198,19.33467],[77.93824,19.33411],[77.94229,19.34227],[77.94512,19.34245],[77.96186,19.33561],[77.96588,19.32746],[77.97411,19.32262],[77.97763,19.32271],[77.98485,19.30988],[77.99467,19.30539],[77.99868,19.2998],[78.0135,19.29472],[78.01596,19.28757],[78.01424,19.28596],[78.01482,19.27904],[78.04251,19.2706],[78.04184,19.26166],[78.03594,19.25063],[78.04161,19.24343],[78.05568,19.23712],[78.06442,19.24777],[78.0723,19.24925],[78.0791,19.25483],[78.08323,19.24868],[78.08235,19.24322],[78.08915,19.23937],[78.09531,19.24374],[78.11317,19.24442],[78.11522,19.24883],[78.11704,19.24864],[78.13428,19.23889],[78.13709,19.23439],[78.14455,19.2294],[78.15099,19.2295],[78.1584,19.23578],[78.16495,19.23455],[78.17532,19.23758],[78.17702,19.24216],[78.18177,19.24762],[78.17798,19.25391],[78.17964,19.25886],[78.17671,19.26294],[78.17817,19.27251],[78.17667,19.27855],[78.18311,19.28518],[78.19374,19.31489],[78.19021,19.32078],[78.19228,19.32583],[78.18951,19.32897],[78.18324,19.32998],[78.17623,19.33493],[78.17215,19.3493],[78.17206,19.35972],[78.17923,19.36284],[78.17679,19.3674],[78.18767,19.39459],[78.17619,19.41226],[78.18382,19.4122],[78.19244,19.40669],[78.19507,19.40675],[78.19881,19.41016],[78.19919,19.41484],[78.20253,19.4197],[78.21159,19.42848],[78.21996,19.43302],[78.23561,19.42675],[78.23743,19.42873],[78.24451,19.4288],[78.24672,19.43217],[78.24648,19.4352],[78.25338,19.43677],[78.25831,19.44179],[78.26265,19.44306],[78.26374,19.44893],[78.26868,19.44847],[78.27044,19.45616],[78.28697,19.44853],[78.29865,19.45195],[78.30451,19.45652],[78.30922,19.48108],[78.29866,19.49681],[78.29495,19.51317],[78.29701,19.51308],[78.296,19.51737],[78.2904,19.52762],[78.29244,19.52931],[78.29411,19.53479],[78.29323,19.54223],[78.28393,19.54141],[78.27431,19.55397],[78.27525,19.56246],[78.29356,19.55898],[78.29815,19.56404],[78.29729,19.5679],[78.30369,19.56932],[78.30425,19.57269],[78.3009,19.57907],[78.30382,19.58478],[78.30557,19.60707],[78.2939,19.61944],[78.2922,19.62741],[78.29208,19.64223],[78.29046,19.646],[78.28088,19.65093],[78.27901,19.65764],[78.27105,19.65854],[78.27162,19.66191],[78.26891,19.66407],[78.26265,19.66506],[78.26579,19.67309],[78.27108,19.67871],[78.27619,19.69242],[78.28785,19.68804],[78.30019,19.68799],[78.30341,19.6912],[78.31182,19.69105],[78.31573,19.70259],[78.31865,19.70553],[78.34313,19.71325],[78.3435,19.71547],[78.33929,19.72416],[78.33982,19.72696],[78.34285,19.72978],[78.34082,19.73333],[78.34123,19.73576],[78.34464,19.73811],[78.34929,19.73798],[78.35555,19.75201],[78.35893,19.76793],[78.36365,19.77577],[78.36467,19.78123],[78.35744,19.80543],[78.35238,19.8074],[78.3448,19.81337],[78.33402,19.81459],[78.33641,19.83792],[78.31576,19.84256],[78.30146,19.84042],[78.28608,19.84794],[78.28531,19.85662],[78.29188,19.86172],[78.29875,19.87497],[78.30703,19.9143],[78.2832,19.90573],[78.28072,19.90048],[78.27934,19.88202],[78.27569,19.87536],[78.2648,19.86799],[78.25202,19.86571],[78.24745,19.86781],[78.24392,19.87191],[78.24117,19.88395],[78.24402,19.889],[78.25448,19.89944],[78.25632,19.90356],[78.2557,19.91661],[78.25261,19.92403],[78.2459,19.92257],[78.23227,19.91005],[78.21654,19.90892],[78.20703,19.89973],[78.19174,19.89613],[78.1853,19.89811],[78.17892,19.90403],[78.14243,19.91055],[78.13687,19.90734],[78.12713,19.89429],[78.09922,19.89081],[78.07753,19.89441],[78.07162,19.8984],[78.06169,19.9091]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"486","area_level":"District","area_name":"Nandurbar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.44369,22.02241],[74.43164,22.03027],[74.41515,22.02494],[74.38833,22.02075],[74.38406,22.0172],[74.37582,22.00059],[74.36085,21.99031],[74.3507,21.97812],[74.33871,21.97376],[74.31237,21.97353],[74.30089,21.96713],[74.29471,21.95948],[74.29242,21.94681],[74.28952,21.93997],[74.28577,21.93551],[74.28118,21.93311],[74.26248,21.93402],[74.24153,21.93025],[74.19308,21.92597],[74.18184,21.92942],[74.17764,21.93255],[74.16947,21.94347],[74.15743,21.95082],[74.14685,21.95289],[74.14626,21.94644],[74.1403,21.94546],[74.13724,21.94718],[74.13609,21.95018],[74.12822,21.94978],[74.1059,21.94323],[74.08405,21.93373],[74.04789,21.925],[74.03123,21.91609],[74.03122,21.91406],[74.02886,21.91214],[74.02358,21.91092],[74.0039,21.90025],[73.96539,21.88432],[73.92096,21.86103],[73.90782,21.85706],[73.90058,21.85795],[73.88678,21.85466],[73.87744,21.84501],[73.87161,21.84151],[73.83843,21.84382],[73.81944,21.84137],[73.80732,21.83633],[73.79594,21.82455],[73.8043,21.8197],[73.80784,21.80981],[73.82239,21.8113],[73.82717,21.81023],[73.82807,21.80407],[73.83295,21.80095],[73.82696,21.79793],[73.82734,21.79248],[73.83362,21.79239],[73.8381,21.78909],[73.8371,21.78733],[73.82945,21.78594],[73.82957,21.77755],[73.83414,21.7762],[73.8347,21.77405],[73.83361,21.77165],[73.82494,21.76523],[73.82374,21.7626],[73.82486,21.75956],[73.828,21.75647],[73.83366,21.75492],[73.83751,21.74553],[73.84681,21.73728],[73.85327,21.73538],[73.85836,21.7265],[73.86761,21.71834],[73.88061,21.71559],[73.88632,21.70667],[73.88389,21.70523],[73.8903,21.69797],[73.89246,21.68493],[73.89161,21.68106],[73.8946,21.67627],[73.88863,21.66077],[73.88801,21.65325],[73.88378,21.65334],[73.87419,21.64756],[73.86715,21.64604],[73.86004,21.64233],[73.85167,21.64648],[73.84977,21.63913],[73.84594,21.63974],[73.83859,21.63308],[73.83466,21.63435],[73.83603,21.63918],[73.8321,21.63835],[73.83038,21.64237],[73.8248,21.63978],[73.82173,21.64342],[73.81759,21.64197],[73.81426,21.64417],[73.81232,21.64008],[73.80471,21.63952],[73.80158,21.63714],[73.78805,21.6341],[73.78502,21.62901],[73.78051,21.62859],[73.78268,21.62208],[73.78137,21.61859],[73.78772,21.6165],[73.79667,21.60574],[73.80016,21.60368],[73.81209,21.6029],[73.81413,21.60109],[73.81542,21.58888],[73.81748,21.58802],[73.81712,21.58113],[73.82334,21.56439],[73.82228,21.56179],[73.8253,21.55513],[73.8278,21.55444],[73.82723,21.54585],[73.82914,21.54559],[73.83296,21.53706],[73.8349,21.52058],[73.83843,21.51556],[73.84606,21.5094],[73.85356,21.49747],[73.86001,21.49976],[73.86383,21.49817],[73.86436,21.50094],[73.86912,21.50108],[73.87183,21.5048],[73.87264,21.5064],[73.86632,21.50703],[73.8643,21.51257],[73.8686,21.51274],[73.86857,21.51085],[73.87201,21.51073],[73.87706,21.51216],[73.87847,21.5049],[73.87983,21.5052],[73.90532,21.51576],[73.90423,21.52451],[73.91198,21.52273],[73.91682,21.51959],[73.92175,21.52116],[73.92159,21.52508],[73.92739,21.5251],[73.92926,21.5237],[73.93206,21.51226],[73.94593,21.51679],[73.94657,21.51434],[73.95175,21.51269],[73.95212,21.51909],[73.95521,21.52035],[73.95421,21.5241],[73.95595,21.5253],[73.95418,21.5337],[73.95508,21.54083],[73.96035,21.54164],[73.96281,21.52769],[73.9663,21.52207],[73.97132,21.52351],[73.97626,21.52316],[73.97743,21.52168],[73.98227,21.5226],[73.98127,21.52781],[73.97493,21.53424],[73.97419,21.54328],[73.98108,21.54361],[73.98281,21.54073],[73.99319,21.5433],[73.99633,21.5402],[73.99581,21.53871],[73.99742,21.53901],[74.00233,21.54155],[74.00032,21.54565],[74.00345,21.5453],[74.00584,21.55276],[74.0103,21.5492],[74.02044,21.54996],[74.03091,21.54515],[74.03498,21.54553],[74.03501,21.55034],[74.03746,21.55063],[74.03831,21.54579],[74.03644,21.54557],[74.04361,21.54248],[74.04454,21.54816],[74.04748,21.54738],[74.04694,21.54468],[74.04881,21.54469],[74.04935,21.54823],[74.05118,21.54668],[74.05378,21.54751],[74.05403,21.55791],[74.0599,21.5503],[74.06697,21.55028],[74.07319,21.54792],[74.08158,21.54875],[74.07922,21.55442],[74.08504,21.55535],[74.08698,21.55157],[74.09645,21.55124],[74.09731,21.55525],[74.10446,21.55643],[74.10995,21.55624],[74.11319,21.54878],[74.11665,21.55084],[74.11556,21.5533],[74.11755,21.55614],[74.12013,21.55625],[74.12011,21.55139],[74.1298,21.55118],[74.13612,21.54929],[74.13696,21.54686],[74.13894,21.55503],[74.15396,21.55682],[74.15586,21.5683],[74.16674,21.56904],[74.17586,21.569],[74.17648,21.55762],[74.1751,21.55643],[74.18252,21.54545],[74.18272,21.54232],[74.18761,21.5428],[74.18822,21.54072],[74.19338,21.53938],[74.19321,21.53761],[74.19554,21.53748],[74.19584,21.53206],[74.20008,21.53284],[74.20291,21.53641],[74.20845,21.53677],[74.21585,21.54109],[74.22042,21.5469],[74.22757,21.54879],[74.22901,21.55446],[74.23197,21.55361],[74.23104,21.55095],[74.23494,21.55088],[74.23458,21.5484],[74.23631,21.5484],[74.23622,21.5397],[74.26318,21.53985],[74.26332,21.54261],[74.26641,21.54259],[74.26906,21.55293],[74.27853,21.5536],[74.27672,21.56225],[74.28453,21.5651],[74.2846,21.56643],[74.2956,21.56708],[74.29553,21.56907],[74.30246,21.56636],[74.30382,21.56547],[74.30324,21.55223],[74.31475,21.55117],[74.32156,21.55231],[74.32261,21.54911],[74.32518,21.55139],[74.33116,21.55242],[74.33233,21.54348],[74.32834,21.54278],[74.32793,21.53944],[74.33122,21.5395],[74.33084,21.53553],[74.32554,21.53607],[74.32525,21.53229],[74.32148,21.52957],[74.3226,21.51748],[74.32079,21.4985],[74.30389,21.49945],[74.30414,21.48811],[74.27734,21.48251],[74.27732,21.47937],[74.25592,21.47678],[74.25356,21.46774],[74.24742,21.46886],[74.23571,21.46777],[74.23435,21.48229],[74.21416,21.48168],[74.20891,21.46704],[74.20928,21.46219],[74.19716,21.46098],[74.19782,21.45875],[74.19612,21.4583],[74.19531,21.46053],[74.18773,21.45819],[74.18641,21.46112],[74.18349,21.46125],[74.18232,21.46925],[74.1735,21.46637],[74.17297,21.46852],[74.16122,21.4689],[74.15805,21.46755],[74.15881,21.46649],[74.15524,21.46295],[74.14766,21.46141],[74.1483,21.458],[74.13584,21.45612],[74.13373,21.46586],[74.12518,21.46665],[74.11996,21.46538],[74.12053,21.46343],[74.11716,21.46208],[74.1165,21.45241],[74.10071,21.44763],[74.09459,21.45573],[74.0723,21.45703],[74.07544,21.4598],[74.07393,21.46127],[74.07495,21.46379],[74.07297,21.46379],[74.07418,21.46563],[74.07276,21.46877],[74.06955,21.47229],[74.06293,21.47455],[74.06143,21.46197],[74.05967,21.4594],[74.05715,21.45939],[74.053,21.45627],[74.0532,21.45469],[74.04994,21.4529],[74.0457,21.44618],[74.04965,21.44021],[74.04768,21.43527],[74.0491,21.42831],[74.04827,21.4234],[74.04462,21.41919],[74.0234,21.41779],[74.01506,21.42128],[74.00895,21.41954],[74.00829,21.42287],[74.00262,21.42141],[74.00087,21.42084],[74.00293,21.41947],[74.00254,21.41746],[73.98698,21.41124],[73.98222,21.4079],[73.97692,21.41193],[73.97803,21.40734],[73.97045,21.39782],[73.95952,21.39695],[73.95947,21.39543],[73.95179,21.39527],[73.94692,21.40493],[73.93893,21.40502],[73.94408,21.39997],[73.94475,21.38112],[73.94918,21.35116],[73.94585,21.34357],[73.94235,21.32563],[73.94273,21.30031],[73.93324,21.29122],[73.92224,21.28964],[73.91897,21.28555],[73.90873,21.27867],[73.9021,21.27757],[73.89743,21.27225],[73.87961,21.26596],[73.86338,21.27266],[73.8597,21.27151],[73.84971,21.27472],[73.82654,21.26772],[73.82507,21.27136],[73.82287,21.27086],[73.82238,21.2611],[73.82749,21.25217],[73.82846,21.23998],[73.81181,21.23123],[73.81074,21.20762],[73.81296,21.20573],[73.81543,21.19735],[73.82605,21.20013],[73.8259,21.18715],[73.82298,21.18514],[73.81987,21.18673],[73.81576,21.17396],[73.8027,21.17492],[73.79356,21.18175],[73.7847,21.18399],[73.78135,21.1711],[73.7736,21.16866],[73.77231,21.16464],[73.75757,21.16743],[73.74019,21.16761],[73.74009,21.17112],[73.72975,21.16538],[73.72852,21.16194],[73.73408,21.15798],[73.73712,21.15325],[73.73742,21.15022],[73.7332,21.14832],[73.73355,21.14293],[73.73181,21.14097],[73.72102,21.14204],[73.71849,21.14157],[73.71897,21.13976],[73.71305,21.14247],[73.71074,21.14543],[73.70659,21.14462],[73.70134,21.14631],[73.70178,21.15369],[73.68164,21.15124],[73.67271,21.15443],[73.66749,21.15463],[73.66424,21.15327],[73.66494,21.1473],[73.65753,21.14585],[73.64336,21.13957],[73.62743,21.14335],[73.62994,21.14883],[73.62927,21.15492],[73.61472,21.15578],[73.60779,21.15898],[73.60579,21.17008],[73.60645,21.17876],[73.5996,21.1817],[73.59385,21.17439],[73.58101,21.16945],[73.57742,21.17075],[73.57764,21.16792],[73.58328,21.16101],[73.57688,21.15667],[73.57852,21.15048],[73.59879,21.15663],[73.60077,21.15022],[73.60513,21.14401],[73.61763,21.1427],[73.61191,21.13808],[73.61846,21.11846],[73.63103,21.12328],[73.64638,21.12125],[73.6519,21.1076],[73.6772,21.10856],[73.68895,21.10079],[73.70315,21.11865],[73.70305,21.11233],[73.70549,21.10843],[73.72968,21.09987],[73.73198,21.10443],[73.74376,21.11518],[73.73302,21.09825],[73.72993,21.08243],[73.74516,21.07761],[73.75765,21.072],[73.76021,21.0694],[73.77332,21.07178],[73.7941,21.07144],[73.80774,21.08489],[73.8109,21.05949],[73.79553,21.04452],[73.81018,21.02834],[73.80872,21.02777],[73.81018,21.02834],[73.815,21.0235],[73.81864,21.0221],[73.82932,21.02616],[73.83422,21.02472],[73.83673,21.01918],[73.83534,21.01571],[73.83881,21.00754],[73.84409,21.0019],[73.8512,20.99763],[73.85094,21.00667],[73.85417,21.0142],[73.85607,21.01517],[73.85663,21.02022],[73.85449,21.03265],[73.85915,21.02989],[73.87503,21.03091],[73.88219,21.02623],[73.8953,21.03526],[73.90703,21.03653],[73.90718,21.0436],[73.9099,21.03762],[73.92989,21.03903],[73.94818,21.03152],[73.9543,21.03919],[73.95526,21.05132],[73.94452,21.06206],[73.94745,21.0669],[73.94809,21.07146],[73.94357,21.07856],[73.95635,21.10254],[73.97461,21.11355],[74.00013,21.12093],[74.01606,21.13108],[74.0201,21.14164],[74.03542,21.1448],[74.04968,21.13581],[74.04753,21.12785],[74.0703,21.1298],[74.07965,21.12047],[74.08407,21.11275],[74.08883,21.11387],[74.09725,21.11044],[74.09924,21.1229],[74.09806,21.12676],[74.09261,21.13278],[74.08288,21.13073],[74.07693,21.13352],[74.074,21.13782],[74.07728,21.14108],[74.07686,21.15152],[74.0674,21.1567],[74.05916,21.16479],[74.05718,21.16998],[74.05903,21.17328],[74.06688,21.17364],[74.07006,21.17569],[74.07548,21.18499],[74.08644,21.19168],[74.08741,21.19575],[74.09297,21.19742],[74.09374,21.19473],[74.10215,21.198],[74.11088,21.20823],[74.1207,21.21336],[74.126,21.21313],[74.14603,21.2069],[74.1494,21.2103],[74.14681,21.21486],[74.1443,21.21351],[74.1426,21.21653],[74.14378,21.22015],[74.14856,21.22086],[74.14946,21.22546],[74.15289,21.22378],[74.15548,21.22554],[74.15789,21.23078],[74.15985,21.22693],[74.16434,21.22527],[74.15979,21.2186],[74.16341,21.21487],[74.16546,21.216],[74.17384,21.21099],[74.17918,21.20979],[74.18152,21.21045],[74.1858,21.22011],[74.18952,21.21754],[74.19051,21.221],[74.2003,21.21992],[74.20946,21.22148],[74.21379,21.2265],[74.21965,21.24128],[74.23182,21.23983],[74.24601,21.24817],[74.25022,21.24716],[74.26733,21.24936],[74.27191,21.24825],[74.27202,21.24638],[74.28407,21.23971],[74.29906,21.23801],[74.30865,21.24166],[74.31779,21.2484],[74.31621,21.23217],[74.31716,21.23015],[74.32146,21.23127],[74.32205,21.23273],[74.32768,21.23299],[74.33794,21.23089],[74.33787,21.22862],[74.3567,21.23228],[74.35804,21.24413],[74.35567,21.2522],[74.388,21.25579],[74.39027,21.2595],[74.39584,21.26111],[74.3982,21.2647],[74.40932,21.26662],[74.41205,21.26653],[74.4124,21.26487],[74.41029,21.25745],[74.43187,21.26118],[74.43189,21.25602],[74.43747,21.25492],[74.44091,21.24778],[74.43249,21.24478],[74.43467,21.23711],[74.48999,21.24249],[74.4904,21.24668],[74.48827,21.24897],[74.48986,21.25454],[74.49216,21.25524],[74.48703,21.25462],[74.49155,21.26162],[74.49867,21.26436],[74.49814,21.26932],[74.50149,21.27556],[74.49958,21.27933],[74.50189,21.28001],[74.50036,21.28565],[74.49259,21.29783],[74.47431,21.29661],[74.47382,21.30566],[74.4831,21.30919],[74.48073,21.31409],[74.47747,21.33149],[74.47847,21.34924],[74.4904,21.35005],[74.49194,21.36992],[74.48973,21.37067],[74.50271,21.38151],[74.50843,21.38901],[74.50285,21.39402],[74.49301,21.39129],[74.4944,21.39541],[74.49889,21.3984],[74.50209,21.41583],[74.49782,21.42106],[74.49657,21.42558],[74.51253,21.4298],[74.53619,21.42607],[74.55845,21.41388],[74.56536,21.40542],[74.57193,21.40258],[74.58003,21.40553],[74.58995,21.41352],[74.59961,21.41542],[74.61272,21.4139],[74.61949,21.41141],[74.63351,21.40174],[74.63792,21.40134],[74.66461,21.40707],[74.67712,21.40617],[74.68603,21.40355],[74.68863,21.40938],[74.69381,21.41235],[74.69863,21.42286],[74.69726,21.42921],[74.69483,21.42825],[74.69471,21.42984],[74.69204,21.43104],[74.69181,21.43415],[74.69384,21.4342],[74.69349,21.43655],[74.6963,21.4384],[74.69825,21.43827],[74.69776,21.44212],[74.70055,21.44674],[74.70521,21.44986],[74.70391,21.45145],[74.70509,21.45231],[74.70318,21.4533],[74.70401,21.46107],[74.70178,21.46512],[74.70005,21.46557],[74.69977,21.469],[74.71079,21.47425],[74.72607,21.47695],[74.73276,21.47185],[74.73319,21.47632],[74.7318,21.47873],[74.74643,21.47953],[74.75522,21.47756],[74.75296,21.48231],[74.75603,21.48598],[74.75589,21.48949],[74.75763,21.4914],[74.75617,21.49492],[74.75671,21.4969],[74.7585,21.49723],[74.75623,21.50207],[74.76123,21.5168],[74.76022,21.51895],[74.75766,21.51894],[74.75722,21.52345],[74.75389,21.52923],[74.75964,21.53756],[74.75807,21.54503],[74.75926,21.54685],[74.75857,21.57651],[74.77119,21.60841],[74.76771,21.60988],[74.76892,21.61608],[74.75,21.61797],[74.70075,21.62758],[74.69989,21.63011],[74.69318,21.63281],[74.68746,21.63159],[74.68516,21.63365],[74.68396,21.6395],[74.67545,21.64472],[74.67747,21.64543],[74.67483,21.6465],[74.67104,21.64552],[74.66836,21.64828],[74.66488,21.6473],[74.66413,21.65253],[74.6224,21.65679],[74.61751,21.66047],[74.58208,21.66499],[74.58386,21.6733],[74.57987,21.68333],[74.56238,21.68343],[74.56238,21.68115],[74.5542,21.68136],[74.55416,21.68573],[74.55756,21.6874],[74.5549,21.69086],[74.55657,21.69282],[74.55538,21.69699],[74.55751,21.70427],[74.556,21.70432],[74.54737,21.7196],[74.53323,21.71689],[74.51386,21.71861],[74.50559,21.72631],[74.50802,21.72754],[74.50772,21.73168],[74.51107,21.73531],[74.51002,21.73743],[74.51204,21.74521],[74.50897,21.75],[74.51309,21.75658],[74.51163,21.75985],[74.51395,21.76569],[74.50972,21.77282],[74.50164,21.78152],[74.49821,21.79009],[74.49974,21.79239],[74.50021,21.80652],[74.50661,21.81638],[74.51001,21.82927],[74.51389,21.86266],[74.51364,21.88997],[74.5228,21.89909],[74.52421,21.91058],[74.51681,21.91582],[74.51266,21.9156],[74.50923,21.92064],[74.51256,21.93189],[74.50839,21.93734],[74.5,21.9393],[74.49712,21.94174],[74.49522,21.94681],[74.48908,21.94341],[74.48467,21.94581],[74.48449,21.94741],[74.49047,21.95123],[74.48873,21.95617],[74.48203,21.95475],[74.48159,21.95917],[74.47384,21.96104],[74.4691,21.95964],[74.46872,21.96108],[74.47137,21.96364],[74.46972,21.9671],[74.4676,21.96558],[74.46385,21.96607],[74.46109,21.96145],[74.45338,21.96194],[74.44451,21.97039],[74.44469,21.97548],[74.43939,21.97672],[74.43883,21.98717],[74.44146,21.99004],[74.43882,21.99089],[74.43978,21.99472],[74.43815,21.99734],[74.43309,21.99764],[74.43233,21.9994],[74.43798,22.00007],[74.44234,22.00318],[74.44536,22.0005],[74.44741,22.00063],[74.45219,22.00423],[74.45142,22.0059],[74.44916,22.00596],[74.44801,22.00919],[74.44363,22.01117],[74.44387,22.01663],[74.43874,22.02084],[74.44369,22.02241]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"487","area_level":"District","area_name":"Nashik","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.129,20.86414],[74.12043,20.86087],[74.11667,20.86292],[74.11144,20.85501],[74.10338,20.8551],[74.10014,20.85008],[74.10282,20.84479],[74.09715,20.84102],[74.08581,20.84389],[74.07731,20.84877],[74.06977,20.84873],[74.06801,20.84717],[74.06315,20.84894],[74.04388,20.83471],[74.03273,20.83952],[74.03002,20.84709],[74.0262,20.8521],[74.0229,20.85109],[74.01751,20.84418],[74.01579,20.84635],[74.01524,20.85381],[74.0126,20.84623],[74.01395,20.84398],[74.00662,20.83621],[74.00453,20.84252],[73.99138,20.84456],[73.98929,20.84732],[73.97956,20.8479],[73.97579,20.85165],[73.96664,20.85443],[73.96264,20.84251],[73.95561,20.84242],[73.9479,20.8389],[73.94032,20.83944],[73.93925,20.83725],[73.94056,20.82847],[73.94404,20.82377],[73.9421,20.8235],[73.93815,20.81422],[73.93193,20.8089],[73.93612,20.8009],[73.93298,20.79187],[73.93473,20.77331],[73.93186,20.76062],[73.93882,20.76034],[73.94131,20.75833],[73.94106,20.75249],[73.93803,20.74922],[73.9416,20.74642],[73.94266,20.74208],[73.93175,20.73282],[73.92956,20.72761],[73.92726,20.73434],[73.91787,20.72956],[73.91733,20.72485],[73.91205,20.72457],[73.90555,20.72681],[73.90475,20.72529],[73.89738,20.72904],[73.89551,20.73166],[73.88754,20.73144],[73.88253,20.73343],[73.88107,20.73116],[73.87442,20.72953],[73.87073,20.72102],[73.86858,20.72003],[73.86677,20.71058],[73.86371,20.70739],[73.86262,20.70324],[73.85969,20.70317],[73.86083,20.70028],[73.85624,20.70039],[73.85517,20.69225],[73.85051,20.69585],[73.83916,20.69802],[73.83544,20.7021],[73.83123,20.70031],[73.82543,20.70072],[73.81185,20.69203],[73.81692,20.67915],[73.81721,20.67204],[73.83062,20.6751],[73.83099,20.67032],[73.83658,20.66427],[73.83909,20.65877],[73.83831,20.65495],[73.83297,20.6486],[73.83274,20.64572],[73.83307,20.63797],[73.83839,20.62046],[73.83237,20.61882],[73.82601,20.61246],[73.81727,20.61357],[73.8077,20.60752],[73.80706,20.60839],[73.7984,20.59868],[73.7971,20.59886],[73.79727,20.6026],[73.79127,20.60527],[73.77799,20.59944],[73.77539,20.60022],[73.76763,20.58655],[73.7636,20.58674],[73.76074,20.57374],[73.75547,20.57084],[73.74621,20.56875],[73.74456,20.56492],[73.74198,20.56884],[73.73401,20.57191],[73.73233,20.57442],[73.72497,20.57386],[73.71547,20.57644],[73.69968,20.57525],[73.69538,20.57837],[73.68489,20.57366],[73.66912,20.56348],[73.66086,20.56247],[73.65798,20.56468],[73.65268,20.56487],[73.65139,20.56856],[73.64502,20.57398],[73.63163,20.58006],[73.62698,20.58503],[73.62731,20.59642],[73.62129,20.61248],[73.62228,20.61424],[73.61686,20.61792],[73.61475,20.62178],[73.61519,20.62482],[73.61274,20.62442],[73.59951,20.6369],[73.59599,20.63611],[73.58914,20.64172],[73.58541,20.64212],[73.58357,20.64478],[73.57716,20.64639],[73.57015,20.65095],[73.56818,20.65131],[73.56664,20.64842],[73.56185,20.6504],[73.55785,20.64587],[73.5508,20.64856],[73.53827,20.66516],[73.53322,20.66924],[73.53279,20.67274],[73.52158,20.67528],[73.52049,20.67885],[73.5179,20.66743],[73.51133,20.66576],[73.50452,20.67068],[73.50251,20.66227],[73.49757,20.65859],[73.49562,20.65361],[73.48923,20.65573],[73.4878,20.66288],[73.48922,20.6637],[73.48459,20.66558],[73.48439,20.67016],[73.47963,20.67221],[73.47856,20.67666],[73.48216,20.67976],[73.48374,20.67631],[73.48626,20.67516],[73.49027,20.68638],[73.484,20.69156],[73.48367,20.70141],[73.48016,20.70709],[73.47563,20.70986],[73.47465,20.72039],[73.46694,20.72206],[73.45927,20.7166],[73.44918,20.71718],[73.44847,20.71325],[73.44494,20.7099],[73.44078,20.69984],[73.44341,20.69665],[73.44749,20.69555],[73.4482,20.69136],[73.4443,20.6811],[73.43204,20.67726],[73.43483,20.67184],[73.43299,20.66683],[73.43012,20.66412],[73.41966,20.66068],[73.41245,20.66147],[73.40618,20.6549],[73.3957,20.65269],[73.39224,20.64929],[73.39411,20.64078],[73.39812,20.64073],[73.4071,20.63533],[73.40738,20.63263],[73.40996,20.62998],[73.40704,20.62744],[73.40721,20.62397],[73.41087,20.62718],[73.41515,20.62631],[73.4186,20.62773],[73.42112,20.62587],[73.42518,20.61719],[73.42351,20.61421],[73.42562,20.61188],[73.42555,20.6088],[73.42824,20.60651],[73.42646,20.60198],[73.43151,20.60015],[73.42909,20.59788],[73.42958,20.5952],[73.43561,20.5933],[73.44947,20.59404],[73.45908,20.58942],[73.46357,20.58952],[73.47315,20.58464],[73.4792,20.56024],[73.4753,20.54333],[73.4831,20.54104],[73.49117,20.54092],[73.49362,20.53807],[73.49027,20.53389],[73.46987,20.52031],[73.46691,20.50923],[73.46874,20.50585],[73.46767,20.49647],[73.45912,20.49184],[73.45721,20.48835],[73.45625,20.47833],[73.44483,20.47478],[73.43546,20.45584],[73.43296,20.45364],[73.43101,20.45441],[73.4315,20.44971],[73.42856,20.44208],[73.4211,20.43003],[73.42312,20.42216],[73.41854,20.41793],[73.41957,20.41307],[73.41718,20.41309],[73.41402,20.41622],[73.41232,20.41075],[73.40487,20.40998],[73.40592,20.40297],[73.40009,20.40605],[73.39801,20.40383],[73.39592,20.39633],[73.38783,20.39841],[73.37977,20.3935],[73.3801,20.37895],[73.38273,20.37306],[73.38695,20.37292],[73.39839,20.38406],[73.40451,20.3861],[73.40645,20.38323],[73.40644,20.3734],[73.41267,20.36088],[73.41366,20.35221],[73.40986,20.35093],[73.4092,20.34922],[73.41329,20.34613],[73.41216,20.34358],[73.41423,20.33612],[73.41718,20.33514],[73.41847,20.33052],[73.41381,20.32572],[73.41617,20.32479],[73.41681,20.32017],[73.41535,20.31742],[73.41873,20.31397],[73.42043,20.30735],[73.42022,20.29736],[73.42394,20.29151],[73.4277,20.28012],[73.42319,20.27477],[73.41992,20.2757],[73.41831,20.27333],[73.41587,20.27499],[73.41423,20.27413],[73.4129,20.2695],[73.41587,20.2679],[73.41215,20.26551],[73.41552,20.26195],[73.4138,20.25965],[73.41612,20.25868],[73.4113,20.25322],[73.41533,20.25071],[73.41252,20.24449],[73.41741,20.24273],[73.41044,20.23851],[73.41447,20.23594],[73.41191,20.23207],[73.4136,20.22434],[73.4164,20.22422],[73.41784,20.22235],[73.41714,20.21457],[73.41557,20.2127],[73.42011,20.211],[73.42121,20.20659],[73.41651,20.19829],[73.40588,20.19549],[73.39448,20.19864],[73.3893,20.19262],[73.38575,20.19615],[73.38638,20.20939],[73.3825,20.21173],[73.37814,20.21095],[73.37456,20.2047],[73.36624,20.20391],[73.36653,20.19636],[73.36475,20.19558],[73.3536,20.20036],[73.35347,20.20282],[73.36126,20.20765],[73.35925,20.21151],[73.3565,20.213],[73.34639,20.20931],[73.34384,20.19938],[73.33647,20.20017],[73.32444,20.20619],[73.31405,20.20214],[73.30516,20.20858],[73.29906,20.20917],[73.29328,20.20445],[73.28901,20.19817],[73.28305,20.19805],[73.28118,20.19001],[73.28157,20.16686],[73.27923,20.15014],[73.26515,20.14026],[73.25741,20.13765],[73.2539,20.13796],[73.2547,20.12693],[73.25008,20.12282],[73.24772,20.12266],[73.25266,20.11269],[73.25491,20.1113],[73.26701,20.11057],[73.26881,20.10872],[73.27111,20.09533],[73.29348,20.09806],[73.31319,20.09144],[73.3124,20.08131],[73.30903,20.07695],[73.30832,20.07289],[73.30873,20.05942],[73.30656,20.05662],[73.30677,20.05548],[73.31121,20.05599],[73.31373,20.0491],[73.32928,20.04191],[73.33109,20.04174],[73.33072,20.04436],[73.33209,20.04561],[73.34296,20.03975],[73.34598,20.03611],[73.35207,20.03983],[73.35765,20.03991],[73.35784,20.03649],[73.36346,20.03367],[73.36422,20.02919],[73.36251,20.02245],[73.36606,20.01933],[73.37993,20.02086],[73.39199,20.0141],[73.39695,20.01682],[73.40639,20.01702],[73.40783,20.01406],[73.41194,20.01179],[73.41503,20.01217],[73.41751,20.00312],[73.41604,19.99946],[73.42644,19.98592],[73.432,19.98211],[73.44099,19.98074],[73.45077,19.98479],[73.45168,19.98185],[73.44899,19.96663],[73.45611,19.95936],[73.44921,19.95369],[73.44283,19.95417],[73.4398,19.95593],[73.44102,19.94226],[73.43925,19.93465],[73.43003,19.92053],[73.42271,19.91665],[73.4225,19.91378],[73.42672,19.90595],[73.42573,19.89956],[73.42824,19.89359],[73.4322,19.89018],[73.43133,19.88298],[73.43626,19.87242],[73.424,19.87146],[73.41762,19.86768],[73.4149,19.85998],[73.41988,19.85006],[73.4179,19.84883],[73.42052,19.8348],[73.42253,19.83177],[73.42944,19.83351],[73.44051,19.82688],[73.44187,19.82734],[73.4424,19.81498],[73.43929,19.80723],[73.44381,19.8048],[73.44249,19.78645],[73.4471,19.76989],[73.44925,19.76712],[73.47836,19.75988],[73.48405,19.76039],[73.48976,19.76319],[73.49779,19.76104],[73.5038,19.7479],[73.50344,19.7458],[73.50001,19.74301],[73.50164,19.73912],[73.49934,19.73657],[73.50366,19.73319],[73.50162,19.73217],[73.49757,19.73317],[73.49479,19.72985],[73.48501,19.72897],[73.48592,19.72259],[73.49266,19.72059],[73.4948,19.71677],[73.49951,19.71662],[73.50059,19.71486],[73.51899,19.70751],[73.51456,19.69869],[73.52336,19.6964],[73.52855,19.69773],[73.52827,19.68923],[73.53465,19.67459],[73.54389,19.66488],[73.54413,19.6579],[73.55016,19.65272],[73.55324,19.64767],[73.55555,19.64858],[73.55959,19.64437],[73.56342,19.62616],[73.56328,19.61848],[73.56883,19.61624],[73.57083,19.61955],[73.57547,19.6184],[73.58121,19.61295],[73.58141,19.60871],[73.57492,19.60216],[73.57943,19.60231],[73.58365,19.6065],[73.60634,19.59496],[73.614,19.59548],[73.61587,19.58612],[73.61734,19.58721],[73.61869,19.5859],[73.62943,19.59173],[73.63057,19.5946],[73.63533,19.59434],[73.64176,19.58956],[73.64917,19.58965],[73.66475,19.58659],[73.66913,19.58999],[73.66939,19.58608],[73.67536,19.58669],[73.68632,19.59265],[73.69619,19.59144],[73.70334,19.59418],[73.70847,19.60166],[73.70945,19.61233],[73.71251,19.61653],[73.71975,19.61994],[73.72481,19.6214],[73.72687,19.62116],[73.7295,19.61764],[73.73699,19.61806],[73.74408,19.62371],[73.74956,19.62201],[73.75167,19.62558],[73.76064,19.62913],[73.7637,19.6283],[73.76708,19.62994],[73.76638,19.63188],[73.7757,19.6285],[73.77516,19.6321],[73.77688,19.63248],[73.7765,19.63476],[73.77784,19.63527],[73.77575,19.64063],[73.78367,19.63956],[73.78953,19.64247],[73.79283,19.64159],[73.78867,19.6456],[73.78242,19.64669],[73.77909,19.6497],[73.77762,19.6522],[73.78072,19.65501],[73.78152,19.65977],[73.78496,19.65905],[73.79029,19.66296],[73.78949,19.66515],[73.79114,19.66772],[73.78945,19.66887],[73.79223,19.671],[73.79232,19.67379],[73.79329,19.67324],[73.79417,19.67554],[73.8,19.676],[73.7992,19.67734],[73.80577,19.67696],[73.80099,19.68331],[73.79537,19.68432],[73.79341,19.68657],[73.79404,19.68824],[73.79614,19.68945],[73.80304,19.68759],[73.80495,19.68948],[73.80637,19.68473],[73.8097,19.68209],[73.81054,19.68758],[73.81238,19.69025],[73.81495,19.68974],[73.81284,19.69162],[73.81422,19.69321],[73.81356,19.70071],[73.81861,19.70936],[73.81942,19.71398],[73.82321,19.71609],[73.83044,19.71696],[73.83877,19.72212],[73.84037,19.73196],[73.83676,19.74046],[73.84837,19.74376],[73.84931,19.74551],[73.85791,19.74311],[73.85487,19.74698],[73.85993,19.74659],[73.8647,19.74861],[73.86799,19.74132],[73.87299,19.73969],[73.8733,19.74154],[73.87598,19.74148],[73.88052,19.73852],[73.88056,19.74105],[73.88428,19.74063],[73.88401,19.74337],[73.88617,19.74409],[73.88662,19.74922],[73.88846,19.75196],[73.89072,19.74727],[73.89887,19.74651],[73.89963,19.74138],[73.89726,19.72955],[73.89822,19.72592],[73.89488,19.71781],[73.89869,19.71133],[73.90154,19.71056],[73.90471,19.70368],[73.91117,19.70154],[73.91057,19.69845],[73.91265,19.69648],[73.91222,19.69424],[73.90706,19.69732],[73.90397,19.69415],[73.90723,19.68856],[73.90768,19.68423],[73.92248,19.67563],[73.92551,19.67219],[73.92716,19.67523],[73.9315,19.67041],[73.94943,19.6727],[73.95687,19.6687],[73.95833,19.67233],[73.96126,19.67428],[73.96934,19.67083],[73.97168,19.67469],[73.97843,19.67573],[73.98471,19.66982],[73.99505,19.66781],[73.99978,19.66975],[74.00334,19.66782],[74.00841,19.67241],[74.01178,19.66993],[74.01412,19.67247],[74.02105,19.67384],[74.02398,19.67087],[74.03246,19.66878],[74.03467,19.66584],[74.0433,19.66702],[74.05196,19.66231],[74.07094,19.66082],[74.07276,19.65836],[74.07642,19.6579],[74.07849,19.65192],[74.0876,19.64753],[74.09183,19.64276],[74.09602,19.64102],[74.09909,19.64268],[74.10132,19.64837],[74.10975,19.64433],[74.11599,19.64647],[74.11972,19.64261],[74.12311,19.64759],[74.12329,19.65162],[74.12813,19.65921],[74.1341,19.6643],[74.13446,19.66749],[74.13794,19.67087],[74.14208,19.67088],[74.14483,19.67353],[74.13672,19.68397],[74.13813,19.68644],[74.13459,19.69087],[74.13568,19.69315],[74.13865,19.69518],[74.14461,19.69225],[74.15093,19.68509],[74.15362,19.69259],[74.15301,19.69547],[74.1582,19.70407],[74.15625,19.70763],[74.1643,19.71824],[74.16366,19.72505],[74.16639,19.72991],[74.18354,19.73233],[74.18866,19.73924],[74.21094,19.73942],[74.22033,19.73758],[74.22425,19.73988],[74.22362,19.74208],[74.24652,19.74444],[74.24737,19.75179],[74.2694,19.76067],[74.27469,19.77733],[74.28722,19.7764],[74.30952,19.7675],[74.30935,19.76632],[74.31685,19.76514],[74.3256,19.77286],[74.32257,19.78001],[74.32683,19.7957],[74.34394,19.79874],[74.34982,19.79784],[74.34957,19.79559],[74.35287,19.79521],[74.3547,19.79773],[74.35917,19.79743],[74.35903,19.80153],[74.36145,19.80066],[74.36245,19.80263],[74.36503,19.80205],[74.3677,19.80562],[74.37089,19.80201],[74.37425,19.80216],[74.3733,19.80544],[74.36714,19.81096],[74.36902,19.83472],[74.36311,19.83313],[74.3629,19.83419],[74.362,19.85048],[74.36315,19.87144],[74.33734,19.87246],[74.33533,19.88662],[74.30947,19.893],[74.30195,19.89672],[74.29039,19.8984],[74.28913,19.90208],[74.29014,19.90376],[74.27456,19.90644],[74.27614,19.91857],[74.27274,19.93272],[74.2654,19.93474],[74.24771,19.93549],[74.24784,19.96298],[74.27274,19.96225],[74.28109,19.95727],[74.28502,19.97221],[74.28538,19.98619],[74.29168,19.98271],[74.29223,19.97981],[74.29921,19.97419],[74.2992,19.97201],[74.30308,19.96667],[74.30845,19.96829],[74.31162,19.97661],[74.31611,19.97869],[74.31608,19.98548],[74.34727,19.98455],[74.34953,19.96747],[74.36277,19.96511],[74.36472,19.97478],[74.37697,19.97198],[74.38242,19.98136],[74.43315,19.97328],[74.44224,19.97383],[74.44739,19.97553],[74.45197,19.97949],[74.45768,19.99498],[74.48062,19.99508],[74.4828,19.989],[74.48084,19.9857],[74.48241,19.98381],[74.4827,19.97853],[74.47838,19.97133],[74.47777,19.96611],[74.47922,19.96402],[74.49201,19.96222],[74.49469,19.97013],[74.50005,19.96999],[74.50041,19.97123],[74.50931,19.97287],[74.51007,19.96891],[74.51895,19.9667],[74.5198,19.97455],[74.5229,19.97658],[74.53507,19.97444],[74.54545,19.9695],[74.55446,19.96785],[74.56865,19.9543],[74.59908,19.9528],[74.6002,19.95076],[74.6189,19.95128],[74.65152,19.94633],[74.67082,19.94697],[74.67089,19.95934],[74.67225,19.96283],[74.67477,19.96601],[74.68009,19.96475],[74.68515,19.96866],[74.6818,19.98922],[74.68833,19.99489],[74.68626,19.999],[74.68932,20.01077],[74.6932,20.01338],[74.69489,20.01699],[74.71336,20.01582],[74.7179,20.01813],[74.71622,20.02153],[74.71276,20.02317],[74.71241,20.03112],[74.70965,20.03289],[74.7065,20.04149],[74.71276,20.04532],[74.72066,20.05416],[74.71143,20.06839],[74.71137,20.07629],[74.70954,20.07992],[74.73646,20.08079],[74.73152,20.09907],[74.73034,20.11458],[74.72016,20.11511],[74.70501,20.11342],[74.70378,20.11476],[74.70493,20.11755],[74.70738,20.11675],[74.70734,20.12042],[74.71,20.12234],[74.70562,20.12348],[74.70914,20.12868],[74.71144,20.12873],[74.71097,20.13211],[74.70845,20.13498],[74.71186,20.13576],[74.71414,20.13348],[74.71558,20.15018],[74.71737,20.15017],[74.71726,20.1593],[74.71158,20.17319],[74.71244,20.17804],[74.71476,20.17826],[74.71602,20.18284],[74.7208,20.18697],[74.71912,20.19279],[74.7209,20.19422],[74.7292,20.19223],[74.73116,20.19288],[74.73387,20.19759],[74.73575,20.19633],[74.73464,20.18877],[74.74009,20.18904],[74.74613,20.18568],[74.7601,20.18449],[74.75595,20.19682],[74.75863,20.20099],[74.76194,20.20477],[74.77034,20.20676],[74.78288,20.20616],[74.79682,20.23065],[74.8,20.23267],[74.78565,20.22848],[74.78182,20.22901],[74.78179,20.23448],[74.78779,20.23393],[74.79383,20.23869],[74.79588,20.23671],[74.79655,20.23844],[74.80191,20.2382],[74.80741,20.24454],[74.807,20.24662],[74.80999,20.24602],[74.81524,20.25006],[74.81839,20.25041],[74.82089,20.24677],[74.82843,20.24623],[74.82928,20.23538],[74.84816,20.23376],[74.85538,20.23036],[74.85297,20.22406],[74.85196,20.21387],[74.85266,20.20658],[74.85497,20.20644],[74.85463,20.17968],[74.88337,20.18131],[74.89567,20.18026],[74.89843,20.16906],[74.90698,20.16759],[74.90678,20.155],[74.91709,20.15607],[74.92798,20.15454],[74.92994,20.15966],[74.92489,20.16473],[74.92545,20.17131],[74.92187,20.17567],[74.92262,20.17974],[74.92743,20.18153],[74.92812,20.18476],[74.92994,20.19838],[74.9285,20.21738],[74.90779,20.2191],[74.90679,20.23987],[74.90489,20.24581],[74.90523,20.24719],[74.91328,20.24583],[74.9329,20.25119],[74.93493,20.27003],[74.92279,20.27119],[74.91607,20.27587],[74.90558,20.27163],[74.86358,20.27645],[74.85171,20.28615],[74.85439,20.28739],[74.85618,20.29787],[74.85524,20.31367],[74.86364,20.31396],[74.86496,20.32028],[74.86296,20.32562],[74.86476,20.32839],[74.86481,20.33512],[74.85772,20.33599],[74.85922,20.33616],[74.8591,20.33904],[74.85453,20.35112],[74.85604,20.3584],[74.85413,20.35968],[74.85517,20.36396],[74.84926,20.37039],[74.85247,20.37439],[74.8519,20.37798],[74.85031,20.37894],[74.85154,20.38094],[74.8481,20.3845],[74.84331,20.38418],[74.83915,20.39137],[74.82705,20.39815],[74.82422,20.39823],[74.82869,20.40664],[74.83852,20.40824],[74.83624,20.41808],[74.82264,20.42951],[74.8164,20.43104],[74.81517,20.43355],[74.81683,20.43741],[74.81338,20.44226],[74.80227,20.44565],[74.79875,20.45307],[74.7996,20.47046],[74.79302,20.47803],[74.7881,20.47701],[74.77444,20.46998],[74.77356,20.47228],[74.77072,20.47243],[74.77727,20.4855],[74.78165,20.48984],[74.78388,20.49737],[74.78195,20.49972],[74.78022,20.50988],[74.77458,20.50675],[74.77101,20.50746],[74.76685,20.52241],[74.76043,20.53006],[74.76023,20.53285],[74.76112,20.53743],[74.77701,20.53667],[74.79488,20.53873],[74.79796,20.54629],[74.79965,20.55209],[74.79369,20.55459],[74.79389,20.56111],[74.79161,20.56647],[74.79279,20.57839],[74.79579,20.57948],[74.80103,20.5896],[74.80472,20.5878],[74.80977,20.58818],[74.80896,20.59436],[74.81074,20.59726],[74.81265,20.61931],[74.81135,20.62461],[74.81274,20.63198],[74.81127,20.63555],[74.80935,20.63823],[74.80001,20.63806],[74.80311,20.65606],[74.8019,20.65994],[74.79734,20.65886],[74.79408,20.66237],[74.78807,20.66054],[74.78116,20.66396],[74.77957,20.66661],[74.77242,20.66279],[74.77202,20.66745],[74.76825,20.66533],[74.7693,20.66246],[74.76194,20.66386],[74.76219,20.66715],[74.76026,20.66801],[74.75684,20.66537],[74.75351,20.66948],[74.75273,20.66722],[74.74909,20.66669],[74.74494,20.6708],[74.74301,20.67032],[74.74213,20.66663],[74.73783,20.66588],[74.73327,20.67408],[74.73099,20.67316],[74.7337,20.67677],[74.73253,20.67764],[74.72494,20.67563],[74.72473,20.67704],[74.72014,20.6773],[74.72032,20.67876],[74.71074,20.68576],[74.67299,20.69415],[74.66521,20.69225],[74.64979,20.69402],[74.65618,20.70493],[74.65851,20.71825],[74.6585,20.71954],[74.65577,20.71904],[74.6525,20.72757],[74.65401,20.72781],[74.65601,20.73337],[74.6592,20.73434],[74.66106,20.73968],[74.6576,20.74238],[74.65824,20.74925],[74.65614,20.75163],[74.65361,20.75162],[74.6539,20.75611],[74.65951,20.75874],[74.66265,20.76267],[74.66449,20.77416],[74.65424,20.77555],[74.64031,20.7817],[74.63327,20.78304],[74.63185,20.79066],[74.61932,20.80396],[74.60279,20.81119],[74.58827,20.81285],[74.57284,20.81878],[74.57262,20.83091],[74.56334,20.8236],[74.54148,20.82902],[74.53627,20.83507],[74.53026,20.82978],[74.52586,20.81582],[74.51996,20.8143],[74.51187,20.80844],[74.50847,20.80859],[74.50868,20.81159],[74.50506,20.81491],[74.50533,20.81888],[74.49392,20.81884],[74.49133,20.81529],[74.4825,20.82117],[74.48346,20.82289],[74.48203,20.8236],[74.48494,20.82894],[74.48325,20.82949],[74.48372,20.83138],[74.48148,20.83141],[74.48081,20.83378],[74.47886,20.83416],[74.47482,20.82711],[74.4761,20.82002],[74.46642,20.81923],[74.45637,20.81207],[74.44961,20.8155],[74.44211,20.80812],[74.44318,20.80107],[74.43983,20.7985],[74.41667,20.8098],[74.40835,20.81769],[74.40543,20.81815],[74.40339,20.82296],[74.40091,20.82356],[74.40074,20.82791],[74.39778,20.82723],[74.39697,20.8319],[74.38826,20.83581],[74.38707,20.83916],[74.38943,20.84003],[74.39505,20.83783],[74.39882,20.83822],[74.40002,20.83655],[74.4029,20.83758],[74.40376,20.84144],[74.4009,20.84208],[74.39858,20.84864],[74.39592,20.84956],[74.39741,20.8586],[74.39625,20.86097],[74.39273,20.85474],[74.3914,20.85794],[74.39038,20.8561],[74.3865,20.85694],[74.38789,20.8517],[74.38533,20.85353],[74.38192,20.84961],[74.38489,20.84201],[74.38264,20.84033],[74.37675,20.84093],[74.3755,20.84262],[74.37345,20.84054],[74.3711,20.84178],[74.37124,20.84421],[74.36072,20.84493],[74.36097,20.84683],[74.35873,20.84459],[74.35722,20.84544],[74.35752,20.84863],[74.35343,20.84886],[74.35177,20.85066],[74.35411,20.85327],[74.35712,20.85233],[74.35618,20.85867],[74.35421,20.85933],[74.35212,20.85658],[74.35066,20.85895],[74.34901,20.85887],[74.34958,20.85265],[74.34683,20.84757],[74.33829,20.84981],[74.33641,20.84157],[74.33695,20.83695],[74.33303,20.83652],[74.32558,20.84507],[74.32538,20.84814],[74.32223,20.84894],[74.32002,20.84537],[74.31484,20.84295],[74.30177,20.8492],[74.29849,20.85359],[74.29695,20.85233],[74.29244,20.85543],[74.29018,20.85428],[74.28687,20.85521],[74.28359,20.85293],[74.27875,20.85435],[74.27372,20.85317],[74.27526,20.8508],[74.26987,20.85303],[74.26564,20.85139],[74.25832,20.85381],[74.25614,20.85948],[74.25175,20.85953],[74.25043,20.85657],[74.2482,20.85659],[74.24813,20.85374],[74.2435,20.85018],[74.24024,20.85136],[74.2336,20.84889],[74.22773,20.85035],[74.22441,20.85672],[74.20891,20.85508],[74.20571,20.85585],[74.20154,20.85959],[74.196,20.85519],[74.19281,20.85601],[74.19137,20.85911],[74.187,20.85765],[74.15931,20.86211],[74.15893,20.85195],[74.14957,20.85034],[74.14227,20.85267],[74.129,20.86414]],[[74.72855,20.08551],[74.72854,20.0878],[74.7312,20.08789],[74.73125,20.08527],[74.72855,20.08551]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"488","area_level":"District","area_name":"Dharashiv","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[75.60297,18.1479],[75.60253,18.14961],[75.60445,18.14972],[75.6034,18.15421],[75.60333,18.15507],[75.60243,18.15921],[75.59731,18.15738],[75.59501,18.15643],[75.59165,18.15566],[75.58974,18.1545],[75.58837,18.15284],[75.59358,18.14609],[75.59813,18.14714],[75.59844,18.14701],[75.60114,18.14769],[75.60192,18.14619],[75.60366,18.14374],[75.6045,18.14393],[75.60354,18.14604],[75.60297,18.1479]]],[[[75.60832,18.16091],[75.60831,18.16102],[75.60461,18.15991],[75.60509,18.15521],[75.60762,18.15519],[75.60742,18.15474],[75.60759,18.15381],[75.60543,18.154],[75.60572,18.15236],[75.60879,18.15246],[75.60903,18.14986],[75.60643,18.14969],[75.60716,18.14575],[75.61012,18.1465],[75.61062,18.14677],[75.61025,18.14733],[75.60976,18.14884],[75.60959,18.15028],[75.61441,18.1506],[75.61431,18.15491],[75.61403,18.15581],[75.61411,18.15791],[75.61286,18.1578],[75.61157,18.15781],[75.61177,18.16102],[75.61022,18.16108],[75.60832,18.16091]]],[[[75.58525,18.69817],[75.58294,18.69773],[75.58128,18.68387],[75.56561,18.68583],[75.54441,18.68153],[75.54084,18.67285],[75.5397,18.65796],[75.54009,18.65653],[75.5471,18.65622],[75.54754,18.65333],[75.54608,18.64448],[75.54196,18.64231],[75.54009,18.63906],[75.52813,18.64022],[75.52217,18.6378],[75.52135,18.6392],[75.51948,18.63809],[75.51842,18.63273],[75.50845,18.62646],[75.50702,18.62314],[75.5001,18.6233],[75.49921,18.62069],[75.49734,18.62116],[75.49588,18.62443],[75.49242,18.62305],[75.49005,18.62667],[75.4882,18.6263],[75.48571,18.62168],[75.48614,18.61934],[75.48165,18.61793],[75.46919,18.6084],[75.46164,18.60569],[75.46078,18.6019],[75.46227,18.60147],[75.45924,18.59881],[75.45889,18.59477],[75.45238,18.59695],[75.45337,18.59355],[75.44613,18.58568],[75.44112,18.57609],[75.44016,18.56648],[75.43469,18.55259],[75.42625,18.54511],[75.41483,18.53059],[75.41007,18.53117],[75.39959,18.54095],[75.39449,18.54373],[75.37323,18.5517],[75.36566,18.55114],[75.36585,18.55267],[75.35508,18.55528],[75.34984,18.55936],[75.34268,18.5609],[75.3395,18.5548],[75.33815,18.54773],[75.32962,18.5378],[75.32973,18.52364],[75.31801,18.52306],[75.31312,18.52028],[75.31002,18.50848],[75.30345,18.50801],[75.29637,18.49623],[75.2987,18.49014],[75.30029,18.48991],[75.30318,18.47873],[75.30045,18.46415],[75.29817,18.46373],[75.29659,18.45705],[75.29638,18.44563],[75.2996,18.44391],[75.30121,18.43076],[75.28514,18.41805],[75.28397,18.41143],[75.28573,18.40535],[75.28942,18.40152],[75.29926,18.39933],[75.30377,18.39136],[75.30662,18.3892],[75.31396,18.39506],[75.3228,18.39326],[75.32519,18.3863],[75.32779,18.3847],[75.32984,18.38548],[75.33097,18.38911],[75.33345,18.38933],[75.33587,18.38691],[75.33634,18.38074],[75.34479,18.37699],[75.35015,18.36963],[75.35831,18.36844],[75.36022,18.36543],[75.35937,18.36122],[75.36287,18.357],[75.37149,18.35029],[75.37808,18.34744],[75.38216,18.34332],[75.38419,18.33185],[75.38697,18.32775],[75.38983,18.32565],[75.401,18.32957],[75.40326,18.32862],[75.40313,18.32582],[75.39815,18.32331],[75.40249,18.31659],[75.39594,18.31325],[75.39154,18.30728],[75.39466,18.30183],[75.40052,18.29673],[75.39325,18.28621],[75.3965,18.28166],[75.39513,18.27921],[75.3944,18.26383],[75.42932,18.26133],[75.42906,18.24746],[75.41974,18.23979],[75.41973,18.23806],[75.42284,18.2386],[75.42751,18.231],[75.42509,18.22712],[75.42572,18.21504],[75.43504,18.20997],[75.43837,18.20537],[75.43085,18.19786],[75.42601,18.18438],[75.42547,18.18209],[75.42886,18.17491],[75.43744,18.17519],[75.44605,18.17228],[75.46187,18.15926],[75.46399,18.15997],[75.46601,18.16476],[75.45927,18.16531],[75.45892,18.16794],[75.46115,18.1702],[75.47606,18.17412],[75.48651,18.17382],[75.48552,18.16757],[75.48893,18.16253],[75.48568,18.15645],[75.48752,18.15175],[75.49373,18.15611],[75.49979,18.15706],[75.51655,18.14609],[75.51769,18.1449],[75.51452,18.1396],[75.52462,18.13477],[75.52541,18.13091],[75.53112,18.13364],[75.53399,18.14041],[75.54244,18.14924],[75.54407,18.17729],[75.55366,18.18946],[75.54857,18.20449],[75.56121,18.20312],[75.5622,18.2175],[75.56641,18.22596],[75.56848,18.23579],[75.57442,18.23785],[75.58342,18.24589],[75.58757,18.25439],[75.62723,18.24107],[75.62924,18.24895],[75.6297,18.26589],[75.61381,18.27141],[75.6214,18.285],[75.62356,18.28466],[75.62564,18.28641],[75.6289,18.29924],[75.6421,18.3171],[75.64148,18.32018],[75.64799,18.33038],[75.64987,18.33012],[75.65338,18.33312],[75.67847,18.32828],[75.68248,18.32567],[75.68247,18.32394],[75.69654,18.32713],[75.69558,18.32878],[75.69711,18.33147],[75.70521,18.33889],[75.71804,18.33734],[75.71895,18.34684],[75.72144,18.35195],[75.72802,18.35701],[75.72977,18.36175],[75.72393,18.37967],[75.72518,18.38681],[75.71078,18.39033],[75.71225,18.39075],[75.70772,18.39271],[75.70644,18.39629],[75.71566,18.41175],[75.72365,18.43354],[75.72747,18.43251],[75.73619,18.43516],[75.74096,18.4339],[75.75032,18.43542],[75.75784,18.43968],[75.763,18.45023],[75.76799,18.45099],[75.76745,18.4467],[75.76241,18.44049],[75.76419,18.43814],[75.76418,18.43292],[75.76749,18.43193],[75.77078,18.40859],[75.77294,18.40504],[75.77636,18.40483],[75.78303,18.40039],[75.78015,18.396],[75.78929,18.3903],[75.79564,18.3884],[75.79488,18.38413],[75.79729,18.38046],[75.81092,18.38063],[75.81816,18.37828],[75.82382,18.37952],[75.82662,18.37529],[75.8402,18.36407],[75.84979,18.36108],[75.85679,18.36254],[75.85832,18.35886],[75.86469,18.36286],[75.87864,18.36529],[75.88793,18.36332],[75.88965,18.36099],[75.89521,18.35866],[75.90226,18.33882],[75.90334,18.32766],[75.90561,18.3271],[75.92008,18.31225],[75.92432,18.30343],[75.92304,18.29981],[75.92645,18.28354],[75.92817,18.27881],[75.93017,18.27862],[75.92772,18.26495],[75.92875,18.25877],[75.93544,18.25236],[75.9422,18.24897],[75.94341,18.24412],[75.94337,18.23893],[75.94108,18.23915],[75.93372,18.22392],[75.92328,18.19321],[75.93388,18.19105],[75.93406,18.18395],[75.93792,18.18339],[75.93821,18.18039],[75.94179,18.18014],[75.9508,18.17282],[75.95709,18.16101],[75.94986,18.13928],[75.94719,18.13746],[75.94726,18.13578],[75.94515,18.13697],[75.94345,18.12863],[75.93788,18.12657],[75.94107,18.12602],[75.94407,18.11976],[75.94497,18.10713],[75.94617,18.10419],[75.95532,18.10039],[75.95559,18.08579],[75.98666,18.08834],[75.99026,18.0691],[75.99418,18.06931],[75.99338,18.06527],[75.9876,18.05961],[75.98444,18.05379],[75.9894,18.05187],[76.00263,18.05688],[76.0056,18.05064],[76.01383,18.05306],[76.0153,18.04732],[76.01872,18.04216],[76.00659,18.03237],[76.00408,18.02863],[75.99585,17.99979],[75.99639,17.99503],[75.98329,17.99356],[75.97971,17.97245],[75.97399,17.97111],[75.96895,17.97168],[75.95226,17.97897],[75.93017,17.97381],[75.91781,17.97578],[75.91459,17.97752],[75.91024,17.98527],[75.91048,17.98745],[75.90869,17.98814],[75.91035,17.99937],[75.9084,18.00357],[75.90711,18.00152],[75.89393,18.00528],[75.889,18.00313],[75.88384,18.00403],[75.87553,18.00769],[75.87201,18.01092],[75.86808,18.01157],[75.8559,18.01112],[75.85306,18.0093],[75.844,17.9942],[75.8396,17.98126],[75.84475,17.98069],[75.84507,17.97733],[75.83831,17.95937],[75.83702,17.94814],[75.83809,17.93236],[75.84628,17.93145],[75.85126,17.92212],[75.84595,17.90306],[75.84219,17.90271],[75.8447,17.89161],[75.85217,17.88024],[75.85614,17.86866],[75.86399,17.86648],[75.87245,17.8565],[75.87501,17.84643],[75.88949,17.84468],[75.90364,17.83609],[75.91092,17.83451],[75.91098,17.8328],[75.92474,17.83315],[75.93181,17.85177],[75.94109,17.85202],[75.94303,17.84419],[75.94661,17.84378],[75.96218,17.83113],[75.96598,17.81816],[75.97744,17.82011],[75.97729,17.82733],[75.97432,17.83474],[75.97488,17.84143],[75.98056,17.84379],[75.99581,17.83846],[76.00824,17.83018],[76.0198,17.82839],[76.01752,17.82676],[76.01402,17.81197],[76.00781,17.80079],[76.01126,17.78769],[76.0049,17.78613],[76.00324,17.76802],[75.99949,17.75625],[76.00173,17.75511],[76.00265,17.75035],[76.00708,17.75089],[76.01397,17.75449],[76.02954,17.76561],[76.04881,17.76503],[76.05351,17.76351],[76.05954,17.7698],[76.06914,17.77112],[76.07768,17.77549],[76.08333,17.77567],[76.0845,17.77781],[76.09728,17.77782],[76.10266,17.76504],[76.11334,17.7653],[76.11331,17.76787],[76.12933,17.76774],[76.12989,17.76077],[76.13345,17.75585],[76.14407,17.75614],[76.1474,17.73413],[76.17041,17.73233],[76.17517,17.72971],[76.16937,17.71696],[76.16528,17.71441],[76.14969,17.71868],[76.14711,17.71648],[76.14445,17.71203],[76.14669,17.7031],[76.14589,17.69981],[76.16504,17.70071],[76.16636,17.69999],[76.1647,17.69377],[76.16901,17.69345],[76.1879,17.68321],[76.20454,17.68921],[76.22193,17.68765],[76.22265,17.69911],[76.24015,17.69737],[76.23848,17.70594],[76.25012,17.70524],[76.25075,17.71164],[76.25442,17.71698],[76.26304,17.72275],[76.26366,17.72633],[76.26653,17.72682],[76.26789,17.72954],[76.27582,17.72898],[76.28021,17.72672],[76.28421,17.72968],[76.28767,17.72833],[76.29463,17.72979],[76.30328,17.72261],[76.3027,17.72073],[76.31562,17.71484],[76.3163,17.69825],[76.32038,17.69597],[76.33856,17.69275],[76.34538,17.69659],[76.35356,17.69633],[76.35625,17.69785],[76.35981,17.68941],[76.36319,17.68661],[76.37157,17.6846],[76.37852,17.68666],[76.38036,17.66404],[76.37823,17.66081],[76.4033,17.65724],[76.41428,17.64708],[76.42913,17.64456],[76.43539,17.64626],[76.445,17.64095],[76.44184,17.64931],[76.45448,17.64979],[76.45286,17.65579],[76.45892,17.65812],[76.48667,17.65841],[76.48975,17.6605],[76.48502,17.67098],[76.48449,17.67851],[76.48723,17.71476],[76.50069,17.71842],[76.51173,17.71797],[76.5239,17.71515],[76.52736,17.73784],[76.52316,17.75976],[76.53069,17.75826],[76.56126,17.76462],[76.57271,17.76054],[76.56396,17.75083],[76.5678,17.74248],[76.5703,17.70541],[76.5822,17.70527],[76.58834,17.70758],[76.59438,17.72245],[76.60108,17.72586],[76.59979,17.73271],[76.6053,17.75865],[76.60696,17.75936],[76.61104,17.76936],[76.61363,17.77085],[76.61829,17.76772],[76.62243,17.7605],[76.63188,17.75464],[76.6281,17.75065],[76.63326,17.72822],[76.65279,17.72213],[76.6556,17.71785],[76.65973,17.70828],[76.66419,17.68756],[76.67076,17.69053],[76.67492,17.68999],[76.67972,17.68635],[76.68436,17.68589],[76.68738,17.68005],[76.69084,17.681],[76.69083,17.68575],[76.69418,17.69568],[76.69214,17.70078],[76.69254,17.70672],[76.70131,17.70907],[76.70365,17.71562],[76.70433,17.72301],[76.69965,17.72725],[76.72827,17.73756],[76.72404,17.74796],[76.72481,17.7511],[76.71879,17.75148],[76.72107,17.7695],[76.71191,17.77327],[76.71409,17.78094],[76.72094,17.78806],[76.73016,17.78385],[76.72987,17.78274],[76.74065,17.77946],[76.74434,17.78034],[76.74253,17.78422],[76.75074,17.78455],[76.75091,17.78705],[76.76204,17.78702],[76.7621,17.78878],[76.76446,17.78896],[76.7659,17.79224],[76.76651,17.79847],[76.77544,17.79829],[76.77873,17.80048],[76.78259,17.80664],[76.78151,17.80939],[76.78286,17.81792],[76.79039,17.82633],[76.787,17.8332],[76.77931,17.83628],[76.77422,17.84197],[76.77407,17.84638],[76.7675,17.85213],[76.7656,17.85128],[76.75922,17.85588],[76.75149,17.85813],[76.73848,17.85668],[76.73884,17.8831],[76.74125,17.8954],[76.73787,17.90979],[76.73562,17.91144],[76.72567,17.91251],[76.72387,17.91834],[76.70714,17.91639],[76.68973,17.91905],[76.67347,17.91887],[76.67641,17.93682],[76.68111,17.94589],[76.67347,17.94679],[76.67494,17.95271],[76.67307,17.96712],[76.67556,17.9671],[76.67537,17.9694],[76.68924,17.9702],[76.67841,17.9963],[76.66206,18.00057],[76.64883,17.99984],[76.64025,18.0011],[76.62991,17.99956],[76.61716,18.00133],[76.61568,18.00486],[76.60371,18.00729],[76.61045,18.02652],[76.61093,18.03894],[76.60305,18.03838],[76.59807,18.03303],[76.5942,18.03339],[76.58892,18.03693],[76.5789,18.03789],[76.57592,18.02257],[76.57092,18.02871],[76.56317,18.03128],[76.553,18.02644],[76.55092,18.02664],[76.54958,18.0309],[76.53946,18.03187],[76.53179,18.03139],[76.53138,18.02856],[76.51119,18.02317],[76.51018,18.03458],[76.51216,18.05022],[76.50866,18.05099],[76.49929,18.05185],[76.49519,18.02723],[76.48861,18.02443],[76.48313,18.02724],[76.47988,18.02677],[76.46558,18.03177],[76.46137,18.02993],[76.46181,18.02703],[76.45505,18.0286],[76.44967,18.03179],[76.43542,18.03414],[76.42738,18.03383],[76.42012,18.03586],[76.41718,18.04198],[76.40494,18.04625],[76.4042,18.044],[76.38366,18.04508],[76.38488,18.06056],[76.39658,18.05958],[76.39859,18.06604],[76.39223,18.07007],[76.38782,18.0767],[76.38259,18.07778],[76.38032,18.08791],[76.37188,18.08994],[76.35292,18.08202],[76.35392,18.07636],[76.35256,18.06628],[76.34932,18.06461],[76.34894,18.06212],[76.34051,18.06128],[76.3322,18.07668],[76.32998,18.07611],[76.32717,18.09675],[76.31873,18.09648],[76.30765,18.09255],[76.30613,18.09814],[76.30443,18.09817],[76.30463,18.09679],[76.30328,18.09953],[76.29473,18.09987],[76.29656,18.1047],[76.29439,18.10493],[76.2946,18.10689],[76.27937,18.11103],[76.28374,18.12746],[76.27498,18.14036],[76.27603,18.14504],[76.27851,18.14496],[76.28165,18.15245],[76.28231,18.16268],[76.28005,18.18387],[76.29295,18.19774],[76.29522,18.21278],[76.29835,18.21286],[76.30139,18.23181],[76.28579,18.23215],[76.28382,18.24928],[76.2868,18.25014],[76.2887,18.25567],[76.29427,18.26113],[76.30337,18.26266],[76.30736,18.26875],[76.30613,18.27368],[76.3079,18.27375],[76.31008,18.28094],[76.31454,18.28246],[76.3142,18.29867],[76.3169,18.31683],[76.31684,18.32997],[76.29518,18.33819],[76.28415,18.34001],[76.28646,18.3632],[76.28937,18.37527],[76.28847,18.37989],[76.29002,18.38649],[76.28851,18.38944],[76.27497,18.38115],[76.25769,18.36402],[76.24561,18.37713],[76.22208,18.38028],[76.20349,18.39471],[76.21407,18.40712],[76.22065,18.42317],[76.2206,18.42884],[76.22569,18.43402],[76.22989,18.43526],[76.2369,18.43441],[76.24676,18.43009],[76.26045,18.42815],[76.26695,18.42268],[76.26627,18.44302],[76.26193,18.46581],[76.26974,18.46856],[76.26729,18.4758],[76.25881,18.4784],[76.25749,18.48252],[76.25406,18.48275],[76.25543,18.48763],[76.26176,18.49289],[76.2531,18.49563],[76.25536,18.5012],[76.25297,18.52202],[76.26218,18.52726],[76.27374,18.53669],[76.2762,18.54387],[76.27596,18.55794],[76.2544,18.56381],[76.25467,18.5754],[76.24181,18.57215],[76.23328,18.57515],[76.21969,18.57456],[76.21142,18.57693],[76.20159,18.57682],[76.20122,18.58159],[76.19552,18.58058],[76.17741,18.5845],[76.16846,18.58465],[76.1662,18.57353],[76.17048,18.561],[76.16034,18.55495],[76.15774,18.55708],[76.15696,18.56014],[76.15772,18.56774],[76.15596,18.5781],[76.15182,18.58131],[76.14288,18.58334],[76.13476,18.58766],[76.11893,18.58392],[76.10168,18.58794],[76.07923,18.57629],[76.06024,18.57383],[76.05352,18.57459],[76.04827,18.57708],[76.04353,18.59057],[76.03584,18.59235],[76.03244,18.60027],[76.02649,18.60312],[76.01251,18.60573],[76.01225,18.60777],[76.00734,18.6067],[76.00756,18.60403],[76.00565,18.60388],[76.00667,18.60168],[76.00488,18.601],[76.00786,18.5855],[75.99533,18.58287],[75.98855,18.58582],[75.98257,18.59083],[75.98304,18.59422],[75.98934,18.6029],[75.99664,18.60695],[75.99662,18.61115],[75.99398,18.6172],[75.98914,18.61935],[75.98611,18.61881],[75.98019,18.61611],[75.97542,18.61174],[75.97289,18.61294],[75.96748,18.61115],[75.95691,18.60466],[75.94809,18.60506],[75.94371,18.60969],[75.94286,18.62038],[75.94633,18.6251],[75.94468,18.63476],[75.93745,18.64139],[75.9208,18.64307],[75.90644,18.64921],[75.88247,18.64698],[75.87303,18.64825],[75.87349,18.65334],[75.87167,18.65382],[75.86367,18.65025],[75.85564,18.64938],[75.85748,18.65974],[75.85336,18.65957],[75.8479,18.65536],[75.84367,18.65891],[75.83497,18.65935],[75.82947,18.66392],[75.82853,18.66173],[75.82278,18.66261],[75.82074,18.66852],[75.80791,18.66869],[75.8068,18.67194],[75.79975,18.673],[75.79763,18.67241],[75.7934,18.65423],[75.78808,18.65568],[75.7814,18.66437],[75.77863,18.66526],[75.77971,18.67091],[75.77715,18.67101],[75.7769,18.67297],[75.77326,18.67359],[75.77142,18.66915],[75.76182,18.67402],[75.75603,18.68056],[75.75304,18.67866],[75.74542,18.68013],[75.74318,18.68226],[75.74261,18.67977],[75.7316,18.67989],[75.7298,18.67407],[75.72968,18.67596],[75.70676,18.68335],[75.70119,18.68917],[75.66971,18.69126],[75.66651,18.68326],[75.66623,18.67538],[75.66429,18.67505],[75.66386,18.664],[75.66737,18.65332],[75.66657,18.65144],[75.66065,18.64556],[75.65678,18.64773],[75.64759,18.64789],[75.63978,18.65062],[75.63747,18.65422],[75.63295,18.65473],[75.62312,18.66009],[75.62209,18.66207],[75.61604,18.66379],[75.60612,18.68676],[75.58525,18.69817]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"489","area_level":"District","area_name":"Parbhani","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.59596,19.8268],[76.59555,19.82947],[76.59285,19.83049],[76.58268,19.82638],[76.56998,19.82672],[76.56667,19.81706],[76.56326,19.81533],[76.55431,19.82075],[76.54378,19.82037],[76.53954,19.8181],[76.53558,19.82264],[76.52182,19.82138],[76.51277,19.82413],[76.51103,19.81885],[76.51385,19.81473],[76.51449,19.80822],[76.51145,19.79897],[76.48404,19.79975],[76.48206,19.78666],[76.48737,19.78112],[76.48666,19.77925],[76.49736,19.77294],[76.51258,19.77051],[76.51015,19.76082],[76.50156,19.76219],[76.49944,19.76395],[76.49633,19.76083],[76.48828,19.76372],[76.48712,19.7588],[76.48803,19.75452],[76.48367,19.74486],[76.45954,19.74725],[76.45833,19.73746],[76.46011,19.72975],[76.45939,19.72519],[76.4839,19.72144],[76.48445,19.71343],[76.48838,19.70185],[76.48794,19.68418],[76.48713,19.68106],[76.48152,19.67805],[76.47017,19.67918],[76.46868,19.67086],[76.46546,19.66562],[76.4617,19.6643],[76.45256,19.66652],[76.4494,19.65968],[76.44466,19.64066],[76.45361,19.64092],[76.45626,19.63676],[76.45088,19.61428],[76.44161,19.61339],[76.43237,19.60216],[76.43777,19.60018],[76.4365,19.58695],[76.44794,19.58474],[76.44457,19.56634],[76.44546,19.55252],[76.44214,19.54156],[76.43855,19.54174],[76.43728,19.53962],[76.41556,19.53401],[76.41272,19.53455],[76.41218,19.53827],[76.39568,19.54112],[76.392,19.53144],[76.37572,19.53695],[76.36837,19.50935],[76.37613,19.50715],[76.36721,19.48362],[76.36422,19.4708],[76.34283,19.47285],[76.33992,19.45533],[76.33593,19.45365],[76.333,19.4563],[76.32663,19.45567],[76.32264,19.45717],[76.3169,19.46458],[76.31323,19.4667],[76.3014,19.43178],[76.28884,19.43307],[76.28439,19.39738],[76.29011,19.39674],[76.29002,19.39413],[76.28764,19.38158],[76.28388,19.37446],[76.2828,19.36562],[76.26175,19.36693],[76.25742,19.35664],[76.26174,19.35318],[76.27621,19.34655],[76.27549,19.34438],[76.26331,19.33387],[76.24184,19.33738],[76.23948,19.33655],[76.23581,19.32617],[76.23682,19.31793],[76.23233,19.31719],[76.23021,19.31347],[76.21118,19.319],[76.20817,19.30981],[76.20708,19.29985],[76.20777,19.29784],[76.21869,19.293],[76.21282,19.2814],[76.21169,19.28],[76.20848,19.28069],[76.20742,19.27676],[76.21339,19.2695],[76.21352,19.26122],[76.22316,19.2594],[76.22539,19.25748],[76.22612,19.25441],[76.22195,19.24659],[76.22201,19.2448],[76.22465,19.24308],[76.24053,19.24545],[76.24543,19.24194],[76.25012,19.24119],[76.2551,19.24317],[76.25946,19.25371],[76.27825,19.26308],[76.27788,19.26402],[76.28456,19.2659],[76.29768,19.26275],[76.30627,19.26504],[76.30857,19.26429],[76.32094,19.25422],[76.33155,19.25028],[76.33995,19.25184],[76.3592,19.24084],[76.36372,19.23391],[76.36344,19.21572],[76.35974,19.20441],[76.35138,19.1964],[76.3507,19.19383],[76.35759,19.18259],[76.35425,19.1672],[76.36065,19.15964],[76.36063,19.15599],[76.35602,19.14743],[76.35253,19.14492],[76.33285,19.13645],[76.32932,19.12912],[76.32892,19.12169],[76.31898,19.11559],[76.32204,19.10732],[76.32774,19.10246],[76.33596,19.09919],[76.34848,19.09979],[76.35526,19.10405],[76.35883,19.1083],[76.36294,19.11985],[76.3692,19.12759],[76.3787,19.1308],[76.38884,19.12518],[76.39257,19.11353],[76.40141,19.10355],[76.40526,19.0963],[76.4116,19.09134],[76.41993,19.0915],[76.425,19.09831],[76.42981,19.09785],[76.4321,19.09592],[76.43521,19.09305],[76.4374,19.08771],[76.433,19.07652],[76.43295,19.07286],[76.43688,19.06889],[76.44201,19.05924],[76.45169,19.05086],[76.45087,19.04901],[76.44865,19.05019],[76.44381,19.04772],[76.43821,19.04876],[76.4383,19.04237],[76.441,19.04061],[76.44214,19.03729],[76.44916,19.03472],[76.44831,19.02449],[76.4515,19.02294],[76.45224,19.02504],[76.45338,19.02461],[76.45386,19.01996],[76.45536,19.01987],[76.45473,19.01211],[76.45603,19.00832],[76.45995,19.00985],[76.45969,19.00733],[76.47251,19.00178],[76.47975,19.00117],[76.47766,18.98848],[76.47137,18.98805],[76.46865,18.98331],[76.46936,18.97647],[76.47736,18.9753],[76.47296,18.96344],[76.47799,18.95334],[76.5026,18.94938],[76.5058,18.9331],[76.5102,18.92444],[76.51288,18.92009],[76.52053,18.91822],[76.53563,18.9179],[76.53367,18.91854],[76.53259,18.92396],[76.53686,18.94903],[76.56355,18.9488],[76.58322,18.94278],[76.58319,18.93934],[76.58472,18.93926],[76.58301,18.93568],[76.58542,18.93372],[76.58239,18.93089],[76.58461,18.90413],[76.58389,18.8902],[76.58079,18.87846],[76.58183,18.87248],[76.58528,18.87194],[76.58647,18.8681],[76.6107,18.86905],[76.62072,18.86793],[76.61922,18.86222],[76.62033,18.8564],[76.62845,18.84679],[76.6338,18.84559],[76.64218,18.84796],[76.63819,18.83902],[76.63909,18.83396],[76.64248,18.83293],[76.64396,18.82542],[76.64287,18.82191],[76.65,18.82131],[76.65069,18.82247],[76.65738,18.81934],[76.66381,18.82043],[76.66712,18.81496],[76.66914,18.81538],[76.6712,18.81351],[76.66884,18.80397],[76.67416,18.79476],[76.67259,18.78953],[76.67355,18.78692],[76.68071,18.78184],[76.68178,18.77928],[76.6807,18.77444],[76.6746,18.76638],[76.67032,18.76325],[76.67463,18.7561],[76.68019,18.75207],[76.68303,18.75932],[76.69634,18.75817],[76.69793,18.75949],[76.69778,18.75623],[76.69916,18.75741],[76.70647,18.75372],[76.72905,18.74993],[76.73502,18.75412],[76.73284,18.75985],[76.73711,18.75987],[76.74282,18.7757],[76.74789,18.77363],[76.75223,18.77385],[76.75204,18.7749],[76.77037,18.77399],[76.77223,18.77564],[76.77735,18.77608],[76.77987,18.7813],[76.77907,18.78894],[76.7834,18.79679],[76.78785,18.79723],[76.79095,18.80041],[76.79481,18.79989],[76.8016,18.80244],[76.80666,18.79917],[76.81157,18.79991],[76.81453,18.80419],[76.81997,18.80731],[76.82401,18.80764],[76.82842,18.81214],[76.83916,18.81381],[76.84412,18.81292],[76.84568,18.80782],[76.85352,18.80697],[76.85338,18.81888],[76.85808,18.82004],[76.8602,18.82332],[76.86235,18.82124],[76.86231,18.8176],[76.86358,18.818],[76.86694,18.83019],[76.88084,18.83179],[76.88148,18.83384],[76.89764,18.83865],[76.90682,18.83917],[76.91322,18.83641],[76.92878,18.83366],[76.93567,18.83461],[76.93694,18.83215],[76.95589,18.83416],[76.95765,18.8317],[76.9693,18.82852],[76.97443,18.8305],[76.9901,18.82869],[76.99219,18.83253],[77.00576,18.8401],[77.00835,18.84309],[77.01954,18.84367],[77.02027,18.85105],[77.01494,18.87983],[77.00505,18.88001],[77.0016,18.88151],[76.97969,18.88016],[76.97142,18.87706],[76.95272,18.87387],[76.95134,18.88212],[76.95436,18.89203],[76.9377,18.89488],[76.93317,18.89418],[76.92965,18.90139],[76.94748,18.90815],[76.94588,18.91125],[76.9479,18.92759],[76.95097,18.92673],[76.95297,18.9323],[76.95529,18.93195],[76.95582,18.93378],[76.96041,18.93304],[76.95995,18.92963],[76.96467,18.93018],[76.97388,18.92454],[76.97399,18.91578],[76.97514,18.91275],[76.97798,18.91243],[76.98291,18.91441],[76.98576,18.92962],[76.98867,18.93577],[76.99442,18.93205],[77.00605,18.92926],[77.00938,18.93363],[77.01921,18.9317],[77.01978,18.93299],[77.02278,18.93247],[77.02375,18.93851],[77.02807,18.94025],[77.03262,18.95363],[77.03579,18.95266],[77.03718,18.96812],[77.05644,18.9885],[77.05568,18.99934],[77.04119,19.00514],[77.04326,19.03129],[77.06437,19.03176],[77.06664,19.04499],[77.06124,19.06133],[77.06218,19.06928],[77.06727,19.07841],[77.07394,19.08412],[77.07713,19.09307],[77.08267,19.10044],[77.08398,19.10951],[77.10031,19.10892],[77.10373,19.09978],[77.1022,19.09498],[77.08857,19.09012],[77.08638,19.08597],[77.08551,19.07614],[77.08983,19.06889],[77.09513,19.06655],[77.12222,19.07895],[77.12668,19.07767],[77.13077,19.07288],[77.13468,19.07087],[77.14278,19.07226],[77.14435,19.07571],[77.15548,19.08278],[77.16243,19.09418],[77.16345,19.10114],[77.16157,19.11443],[77.16415,19.12049],[77.16687,19.12294],[77.17093,19.12357],[77.1752,19.12154],[77.17933,19.1264],[77.18001,19.13153],[77.18723,19.13055],[77.19158,19.13653],[77.19178,19.16387],[77.17704,19.16756],[77.17895,19.17524],[77.1787,19.18731],[77.18123,19.19592],[77.18008,19.20369],[77.176,19.21113],[77.17888,19.22627],[77.16301,19.23245],[77.16164,19.2298],[77.15787,19.22867],[77.15441,19.22178],[77.14038,19.22578],[77.13011,19.23174],[77.12586,19.23713],[77.11075,19.23858],[77.10157,19.23541],[77.09831,19.23579],[77.08845,19.24024],[77.0875,19.25317],[77.07835,19.2573],[77.05122,19.25227],[77.04041,19.24563],[77.02463,19.24766],[77.01873,19.25254],[77.01167,19.25386],[77.00975,19.26986],[77.01049,19.27402],[77.02205,19.27773],[77.02209,19.28519],[77.00236,19.28296],[77.00047,19.27282],[76.99523,19.2751],[76.99383,19.28077],[76.98934,19.28097],[76.99008,19.28783],[76.98588,19.28851],[76.98433,19.30305],[76.9866,19.30824],[76.98364,19.30944],[76.98436,19.31534],[76.98022,19.3197],[76.97928,19.31855],[76.96908,19.32045],[76.95621,19.32042],[76.94394,19.31461],[76.93917,19.31447],[76.93651,19.3078],[76.9229,19.31025],[76.92271,19.2983],[76.90068,19.29823],[76.89814,19.30359],[76.89116,19.30803],[76.89109,19.31102],[76.89444,19.31658],[76.88871,19.31785],[76.88929,19.32273],[76.89836,19.32062],[76.90095,19.32517],[76.89954,19.33324],[76.90862,19.332],[76.9094,19.33663],[76.91366,19.33568],[76.91606,19.33859],[76.90882,19.34055],[76.9066,19.33895],[76.90528,19.34093],[76.90247,19.34042],[76.90059,19.34298],[76.90048,19.33867],[76.88951,19.35019],[76.88858,19.35512],[76.89341,19.36557],[76.89215,19.37913],[76.90058,19.3874],[76.90453,19.39823],[76.90962,19.40355],[76.91138,19.4119],[76.9197,19.4153],[76.91957,19.4193],[76.916,19.42401],[76.92187,19.4263],[76.92525,19.4374],[76.92074,19.44306],[76.90072,19.44588],[76.90005,19.43832],[76.89587,19.42894],[76.88875,19.43277],[76.88714,19.43143],[76.8807,19.43194],[76.88069,19.43406],[76.86506,19.43901],[76.86618,19.44394],[76.86994,19.44451],[76.86796,19.4481],[76.87322,19.44864],[76.87378,19.45416],[76.87932,19.45287],[76.88083,19.45682],[76.88644,19.45688],[76.8876,19.46206],[76.86607,19.46823],[76.86594,19.4776],[76.86038,19.48173],[76.85609,19.49151],[76.86048,19.50451],[76.85548,19.50515],[76.85572,19.52374],[76.85699,19.53549],[76.88263,19.53375],[76.88239,19.53704],[76.8812,19.53727],[76.88519,19.54973],[76.88181,19.55059],[76.8889,19.56026],[76.89069,19.56784],[76.89036,19.57754],[76.89269,19.58253],[76.90338,19.58458],[76.90446,19.59029],[76.91618,19.59803],[76.92466,19.59823],[76.9263,19.61122],[76.93003,19.61107],[76.9262,19.61645],[76.91467,19.61756],[76.91415,19.63948],[76.90797,19.64527],[76.89812,19.6435],[76.88411,19.62646],[76.87699,19.62094],[76.87152,19.62147],[76.86714,19.62404],[76.86681,19.6268],[76.87003,19.63217],[76.87533,19.637],[76.87032,19.64659],[76.85671,19.64564],[76.85143,19.64759],[76.85033,19.65107],[76.84963,19.66225],[76.85209,19.66565],[76.86189,19.67147],[76.86357,19.67614],[76.85426,19.69091],[76.84964,19.70673],[76.84027,19.70252],[76.81922,19.70685],[76.81341,19.70047],[76.82131,19.69142],[76.82404,19.68582],[76.82544,19.67766],[76.8232,19.67263],[76.81894,19.67058],[76.81295,19.68054],[76.80716,19.68302],[76.79792,19.6721],[76.79105,19.67044],[76.7859,19.67621],[76.78694,19.68804],[76.78289,19.70366],[76.78962,19.72233],[76.78394,19.73131],[76.78135,19.73285],[76.77701,19.73142],[76.76723,19.71915],[76.76705,19.71478],[76.77206,19.70321],[76.77213,19.6957],[76.77087,19.69289],[76.76069,19.68542],[76.74879,19.69693],[76.74789,19.70612],[76.74374,19.71131],[76.73235,19.71424],[76.73195,19.7204],[76.73863,19.72589],[76.7389,19.72944],[76.73584,19.73395],[76.72518,19.7376],[76.71993,19.7411],[76.7197,19.74316],[76.72362,19.74678],[76.72385,19.74963],[76.71688,19.76888],[76.70832,19.77006],[76.7006,19.76533],[76.69624,19.75634],[76.69118,19.75504],[76.68605,19.75763],[76.68661,19.76791],[76.66932,19.77548],[76.65876,19.77716],[76.64927,19.77383],[76.64199,19.7737],[76.64052,19.77657],[76.6395,19.78953],[76.63228,19.80311],[76.62737,19.80406],[76.62404,19.80206],[76.62288,19.79898],[76.62318,19.7966],[76.62804,19.79084],[76.62868,19.78595],[76.62731,19.78401],[76.62434,19.78225],[76.61548,19.78127],[76.61013,19.77652],[76.60505,19.77508],[76.59632,19.77715],[76.59238,19.78041],[76.59285,19.78443],[76.60574,19.78779],[76.60867,19.78914],[76.60998,19.79182],[76.60953,19.79349],[76.59985,19.79702],[76.59671,19.80041],[76.59734,19.80376],[76.60539,19.81047],[76.59596,19.8268]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"49","area_level":"District","area_name":"Dehradun","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.8223,31.0295],[77.81931,31.03244],[77.81563,31.03296],[77.81145,31.03163],[77.807,31.02677],[77.80751,31.01621],[77.80994,31.01099],[77.82501,31.0098],[77.82199,31.00429],[77.83182,30.99399],[77.82417,30.98842],[77.82513,30.98509],[77.82406,30.98047],[77.82243,30.97655],[77.8163,30.97278],[77.81438,30.96178],[77.82419,30.95711],[77.83219,30.95959],[77.83769,30.95518],[77.83759,30.95317],[77.83473,30.95205],[77.82862,30.95329],[77.82436,30.9505],[77.81009,30.95559],[77.8024,30.96333],[77.79006,30.9704],[77.77098,30.97434],[77.76877,30.97395],[77.76721,30.97059],[77.76341,30.96825],[77.75409,30.96448],[77.74879,30.95218],[77.75075,30.94349],[77.75404,30.93754],[77.75274,30.93381],[77.76394,30.93045],[77.7628,30.91818],[77.76589,30.91968],[77.76752,30.91733],[77.7718,30.91861],[77.78265,30.91673],[77.78473,30.91715],[77.78653,30.92026],[77.79182,30.92173],[77.80493,30.92359],[77.81153,30.92327],[77.8133,30.92187],[77.81094,30.91663],[77.81587,30.91032],[77.81528,30.90438],[77.80883,30.8967],[77.80138,30.89332],[77.79886,30.86804],[77.80359,30.86499],[77.80568,30.85321],[77.78624,30.85715],[77.77923,30.86037],[77.77738,30.86315],[77.77613,30.87541],[77.77341,30.87754],[77.76321,30.8804],[77.75822,30.8768],[77.7561,30.87268],[77.75719,30.85998],[77.75418,30.85547],[77.74587,30.85112],[77.74402,30.84659],[77.75768,30.83513],[77.76128,30.82607],[77.74837,30.82163],[77.7456,30.81314],[77.73497,30.80448],[77.73294,30.80108],[77.73187,30.79187],[77.72136,30.77579],[77.71512,30.77072],[77.70378,30.76516],[77.70896,30.75249],[77.70517,30.75078],[77.70243,30.74627],[77.70796,30.73991],[77.72068,30.74179],[77.72836,30.73414],[77.73319,30.73534],[77.7373,30.73034],[77.73659,30.72415],[77.74669,30.71972],[77.74741,30.71697],[77.74562,30.71387],[77.75582,30.70692],[77.7504,30.70011],[77.75258,30.69665],[77.74694,30.69443],[77.74841,30.68775],[77.74675,30.68304],[77.74741,30.67985],[77.75916,30.67577],[77.75975,30.67309],[77.76421,30.67082],[77.77251,30.6691],[77.77458,30.66476],[77.78119,30.65997],[77.78445,30.65956],[77.7895,30.66223],[77.79253,30.65869],[77.79249,30.65693],[77.78687,30.65498],[77.78603,30.65182],[77.78123,30.64667],[77.78674,30.6417],[77.78639,30.6367],[77.79062,30.634],[77.78605,30.62994],[77.78614,30.62442],[77.79255,30.62091],[77.79626,30.61365],[77.78672,30.61431],[77.78025,30.61284],[77.77111,30.61638],[77.76894,30.61452],[77.77107,30.61053],[77.77022,30.6049],[77.77241,30.59855],[77.77167,30.5969],[77.76435,30.59592],[77.75564,30.60469],[77.7519,30.60178],[77.7461,30.60389],[77.74325,30.60149],[77.74679,30.59746],[77.74325,30.59616],[77.74315,30.59311],[77.74838,30.59145],[77.75664,30.58561],[77.76066,30.57752],[77.76714,30.57115],[77.76752,30.56535],[77.77403,30.55784],[77.78357,30.55983],[77.79411,30.5532],[77.79718,30.55406],[77.79964,30.55766],[77.80637,30.55449],[77.81399,30.56008],[77.81785,30.56102],[77.8226,30.55378],[77.81994,30.54682],[77.82767,30.53274],[77.82682,30.52775],[77.82526,30.52594],[77.82022,30.52499],[77.81854,30.50812],[77.81602,30.5056],[77.80829,30.50478],[77.79986,30.50106],[77.78307,30.50058],[77.77567,30.49431],[77.76436,30.49108],[77.7394,30.47602],[77.73172,30.47314],[77.72098,30.473],[77.7072,30.45924],[77.69794,30.45586],[77.69025,30.44802],[77.67077,30.44419],[77.66298,30.44704],[77.65237,30.44805],[77.649,30.44515],[77.64607,30.43341],[77.64327,30.43184],[77.637,30.43319],[77.63192,30.43125],[77.62595,30.43469],[77.62268,30.43466],[77.59613,30.42729],[77.57312,30.41238],[77.57236,30.40791],[77.57457,30.40058],[77.57604,30.39739],[77.57758,30.39777],[77.58255,30.39987],[77.58193,30.40134],[77.58546,30.40492],[77.59043,30.40628],[77.59831,30.40488],[77.59963,30.40104],[77.6017,30.3997],[77.60288,30.40293],[77.60505,30.40171],[77.61849,30.40238],[77.62366,30.4052],[77.6283,30.39854],[77.63102,30.3977],[77.64789,30.40463],[77.65279,30.40122],[77.65725,30.40067],[77.65668,30.39831],[77.65973,30.39056],[77.67242,30.39047],[77.67655,30.38778],[77.67623,30.38032],[77.67808,30.37566],[77.6831,30.37646],[77.68607,30.37925],[77.6896,30.37682],[77.69472,30.36574],[77.70224,30.35562],[77.70608,30.34707],[77.70897,30.345],[77.70978,30.34161],[77.71355,30.3399],[77.72185,30.33021],[77.73209,30.32809],[77.74701,30.3201],[77.76116,30.31829],[77.76578,30.31415],[77.78425,30.30565],[77.78571,30.30298],[77.79424,30.29716],[77.83283,30.28018],[77.83902,30.27453],[77.84075,30.27376],[77.84217,30.27639],[77.84717,30.27659],[77.84653,30.27164],[77.85869,30.27141],[77.86567,30.26582],[77.86933,30.26611],[77.87958,30.26195],[77.88166,30.26227],[77.88574,30.26698],[77.894,30.26537],[77.91089,30.25699],[77.93699,30.24916],[77.93822,30.24384],[77.94147,30.23979],[77.94413,30.23925],[77.94982,30.24231],[77.95151,30.24528],[77.96084,30.24372],[77.96067,30.23882],[77.95578,30.23057],[77.96053,30.22812],[77.96362,30.22372],[77.96585,30.22345],[77.96888,30.2202],[77.97328,30.22062],[77.97519,30.21839],[77.9736,30.216],[77.97425,30.21318],[77.97772,30.21179],[77.97813,30.20934],[77.98013,30.20925],[77.98367,30.20394],[77.9859,30.20431],[77.98672,30.19965],[77.99135,30.19549],[77.99306,30.18977],[78.00458,30.176],[78.01113,30.16361],[78.01517,30.14996],[78.01442,30.14785],[78.02655,30.13386],[78.02962,30.12192],[78.03275,30.11971],[78.03313,30.11066],[78.03592,30.11041],[78.03519,30.10737],[78.03666,30.10449],[78.03554,30.10357],[78.04247,30.09826],[78.04566,30.09759],[78.04681,30.09175],[78.05987,30.08686],[78.06104,30.08331],[78.06414,30.08238],[78.06955,30.07543],[78.06728,30.07236],[78.07207,30.069],[78.07187,30.06318],[78.07446,30.05965],[78.07141,30.05767],[78.06674,30.04689],[78.06927,30.04478],[78.06908,30.04202],[78.07419,30.04189],[78.0766,30.03713],[78.08096,30.03621],[78.08204,30.03193],[78.0858,30.03343],[78.09183,30.02887],[78.09925,30.0279],[78.10057,30.02574],[78.09402,30.01575],[78.09613,30.01126],[78.09871,30.01225],[78.10445,30.0075],[78.10715,30.01092],[78.10919,30.00984],[78.11369,30.01106],[78.11587,30.00866],[78.11592,30.00554],[78.11926,30.00387],[78.12285,29.99829],[78.12957,30.00108],[78.13168,29.99778],[78.13075,29.99415],[78.13473,29.9904],[78.1345,29.9861],[78.1384,29.98152],[78.13861,29.97824],[78.1431,29.97805],[78.14877,29.9678],[78.15304,29.96713],[78.15813,29.96883],[78.16133,29.965],[78.16645,29.96599],[78.17191,29.96379],[78.16873,29.96903],[78.17992,29.97899],[78.18318,29.99056],[78.18912,29.99725],[78.19226,29.99405],[78.19368,29.98677],[78.1977,29.98792],[78.18678,29.97206],[78.18715,29.96217],[78.19155,29.96556],[78.20209,29.9661],[78.20781,29.97746],[78.21479,29.98239],[78.21723,29.98687],[78.22593,29.98461],[78.23153,29.99256],[78.23229,29.99856],[78.2258,30.00632],[78.2275,30.01558],[78.24492,30.01759],[78.24892,30.02297],[78.24752,30.03401],[78.26212,30.03893],[78.2716,30.04708],[78.27639,30.05714],[78.28106,30.06073],[78.29224,30.08402],[78.29297,30.08801],[78.28993,30.09556],[78.29104,30.09989],[78.29571,30.10213],[78.30543,30.10255],[78.31019,30.10812],[78.3098,30.11272],[78.30496,30.11291],[78.30305,30.11478],[78.30127,30.11153],[78.29571,30.11738],[78.28542,30.11889],[78.28016,30.12179],[78.28277,30.12928],[78.27728,30.12928],[78.25472,30.13821],[78.25704,30.15261],[78.26149,30.16106],[78.24169,30.1657],[78.24214,30.1719],[78.23699,30.17476],[78.23373,30.18431],[78.23435,30.18702],[78.24278,30.19166],[78.2442,30.19438],[78.24316,30.19707],[78.24865,30.20312],[78.25459,30.20488],[78.2564,30.20743],[78.25601,30.20986],[78.2589,30.21053],[78.26973,30.22066],[78.28286,30.22247],[78.29368,30.23043],[78.29658,30.2334],[78.29534,30.23552],[78.29885,30.24553],[78.29576,30.24948],[78.28848,30.25271],[78.28698,30.26039],[78.27688,30.27176],[78.28157,30.27655],[78.27996,30.28358],[78.28299,30.2877],[78.28174,30.29072],[78.28392,30.29233],[78.27966,30.29387],[78.27831,30.29631],[78.26811,30.30207],[78.26259,30.29451],[78.26306,30.29164],[78.25821,30.28549],[78.25231,30.28505],[78.24168,30.28807],[78.23675,30.28753],[78.23578,30.29259],[78.23699,30.29916],[78.22495,30.3064],[78.21428,30.30943],[78.21291,30.30124],[78.20912,30.29323],[78.20009,30.29383],[78.19452,30.30189],[78.18555,30.30146],[78.17925,30.30513],[78.17019,30.30673],[78.15772,30.31947],[78.14254,30.32552],[78.1403,30.32833],[78.13816,30.3368],[78.13345,30.3438],[78.13909,30.35046],[78.13821,30.35692],[78.14177,30.36507],[78.14974,30.37215],[78.15469,30.37448],[78.16202,30.38246],[78.16962,30.3839],[78.17491,30.38225],[78.17986,30.38632],[78.18472,30.38759],[78.18487,30.39027],[78.19096,30.39243],[78.19164,30.39489],[78.19847,30.39862],[78.22312,30.40556],[78.23463,30.41312],[78.23942,30.42315],[78.23094,30.42826],[78.22915,30.42667],[78.22609,30.43355],[78.21428,30.44042],[78.19789,30.44681],[78.18235,30.44972],[78.16897,30.44478],[78.16412,30.44594],[78.16064,30.44888],[78.16016,30.45182],[78.15326,30.45623],[78.1495,30.45751],[78.13948,30.45652],[78.13217,30.45958],[78.12348,30.46822],[78.1152,30.47156],[78.10684,30.47124],[78.10566,30.47821],[78.09659,30.47812],[78.09548,30.47467],[78.09,30.47324],[78.08619,30.47458],[78.08163,30.47383],[78.08194,30.46737],[78.07708,30.46792],[78.07243,30.4706],[78.06999,30.47005],[78.0708,30.47605],[78.06884,30.47733],[78.06047,30.47565],[78.05264,30.48101],[78.03955,30.48225],[78.04024,30.4726],[78.03611,30.46918],[78.03668,30.46537],[78.03235,30.46751],[78.03102,30.47315],[78.02171,30.47505],[78.02305,30.47809],[78.01976,30.48127],[78.01451,30.48394],[78.0086,30.48355],[78.00457,30.48049],[77.99783,30.48007],[77.99995,30.47451],[77.99841,30.47125],[78.00008,30.46844],[77.99623,30.46697],[77.99071,30.46904],[77.98749,30.46685],[77.98042,30.47661],[77.97641,30.47595],[77.9733,30.48613],[77.95876,30.4891],[77.9388,30.50334],[77.93615,30.51135],[77.94147,30.51328],[77.94413,30.51121],[77.94738,30.51133],[77.94673,30.51602],[77.94935,30.51782],[77.95403,30.51721],[77.95757,30.51418],[77.96302,30.51379],[77.96543,30.51043],[77.96837,30.50931],[77.97473,30.51358],[77.97872,30.50867],[77.98156,30.50871],[77.98778,30.51489],[77.98689,30.51761],[77.97938,30.51652],[77.9754,30.52232],[77.97633,30.52523],[77.97953,30.5257],[77.98441,30.52373],[77.98619,30.52586],[77.98134,30.53083],[77.97565,30.52894],[77.97483,30.53761],[77.98287,30.53923],[77.9825,30.54532],[77.98462,30.55087],[77.9802,30.55385],[77.98055,30.55496],[77.9895,30.55585],[77.99111,30.55936],[78.00124,30.56072],[78.00429,30.56638],[78.00271,30.57233],[78.00965,30.57961],[78.00863,30.58413],[78.01044,30.58774],[78.00919,30.59018],[78.01058,30.59253],[78.0142,30.59123],[78.01383,30.59547],[78.01016,30.59931],[78.01274,30.60381],[78.0133,30.61496],[78.00809,30.62123],[78.00825,30.62421],[78.01298,30.62597],[78.01406,30.62986],[78.0094,30.64595],[78.01083,30.65097],[78.01599,30.65359],[78.02037,30.65306],[78.02452,30.65112],[78.0291,30.64555],[78.03307,30.64521],[78.04257,30.65294],[78.04404,30.65765],[78.04766,30.66141],[78.05933,30.66421],[78.06263,30.6665],[78.06673,30.67491],[78.06694,30.68567],[78.07379,30.69847],[78.07221,30.70665],[78.07968,30.7107],[78.08368,30.71863],[78.08363,30.72204],[78.07955,30.72534],[78.07767,30.7305],[78.07951,30.73504],[78.07922,30.74064],[78.06877,30.74314],[78.06829,30.75203],[78.06225,30.76138],[78.05411,30.76495],[78.05282,30.76899],[78.04759,30.7748],[78.04129,30.77722],[78.03644,30.78242],[78.02673,30.78885],[78.02329,30.78944],[78.02675,30.79569],[78.02728,30.80411],[78.02313,30.80939],[78.01856,30.81075],[78.01734,30.81382],[78.0118,30.81861],[78.00051,30.82432],[77.99155,30.8405],[77.98917,30.85242],[77.99144,30.85936],[77.98712,30.8595],[77.98203,30.87388],[77.98442,30.87922],[77.97399,30.88947],[77.97765,30.89457],[77.97854,30.90002],[77.98872,30.90024],[77.99345,30.90211],[77.99757,30.90608],[78.01643,30.90887],[78.01488,30.91618],[78.02056,30.91865],[78.01778,30.92636],[78.01249,30.93173],[78.01077,30.93766],[78.00048,30.948],[78.00026,30.9517],[77.9951,30.95686],[77.98649,30.9595],[77.99024,30.96307],[77.98397,30.96525],[77.98284,30.96918],[77.9788,30.96872],[77.97442,30.97117],[77.96871,30.9776],[77.96256,30.97758],[77.95906,30.97547],[77.95589,30.97634],[77.95116,30.97424],[77.92715,30.97202],[77.92413,30.96763],[77.91955,30.96598],[77.90439,30.95366],[77.89982,30.95244],[77.89905,30.95543],[77.89718,30.95562],[77.88492,30.94574],[77.88022,30.94883],[77.8707,30.94418],[77.86785,30.94662],[77.86848,30.95099],[77.86333,30.95647],[77.8536,30.95382],[77.85483,30.96434],[77.8475,30.9732],[77.84369,30.97497],[77.84392,30.97899],[77.83928,30.98087],[77.84074,30.98754],[77.83883,30.99006],[77.84342,30.99508],[77.83842,30.99836],[77.8378,31.00506],[77.83395,31.00775],[77.83387,31.01108],[77.83157,31.01221],[77.8341,31.01443],[77.83435,31.0174],[77.83231,31.02818],[77.8223,31.0295]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"490","area_level":"District","area_name":"Pune","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.80779,19.39294],[73.80092,19.39512],[73.7937,19.39135],[73.78919,19.39178],[73.77798,19.38724],[73.79474,19.34274],[73.79325,19.33379],[73.78746,19.3382],[73.78253,19.33667],[73.78169,19.33497],[73.77906,19.33586],[73.77171,19.34238],[73.77263,19.33793],[73.77015,19.33155],[73.76411,19.33026],[73.76115,19.32752],[73.75837,19.33115],[73.75045,19.3274],[73.74787,19.32194],[73.74896,19.31837],[73.74716,19.31815],[73.74604,19.32422],[73.7434,19.32423],[73.74587,19.32865],[73.74687,19.33723],[73.73821,19.33306],[73.70942,19.32491],[73.7073,19.32358],[73.70186,19.3127],[73.70134,19.31458],[73.68686,19.31513],[73.6826,19.31166],[73.68167,19.30747],[73.67214,19.30684],[73.66926,19.30517],[73.67293,19.30111],[73.66747,19.29143],[73.67348,19.29024],[73.68052,19.27389],[73.68723,19.27244],[73.69501,19.25818],[73.69327,19.25147],[73.69176,19.25128],[73.68539,19.24232],[73.67206,19.23947],[73.66267,19.24207],[73.65834,19.23933],[73.64945,19.22923],[73.64472,19.21989],[73.63662,19.21453],[73.63515,19.20926],[73.62997,19.20571],[73.62665,19.20732],[73.62269,19.21646],[73.60865,19.21061],[73.61053,19.20194],[73.60814,19.19362],[73.60568,19.19494],[73.60637,19.1905],[73.60312,19.1916],[73.60146,19.19462],[73.59972,19.19439],[73.5991,19.19225],[73.59692,19.19566],[73.59506,19.19554],[73.59328,19.19233],[73.59104,19.19155],[73.58885,19.19326],[73.58384,19.19028],[73.57617,19.19252],[73.57585,19.19437],[73.56698,19.19006],[73.56615,19.1846],[73.56026,19.18753],[73.55611,19.18393],[73.55049,19.18709],[73.54583,19.18709],[73.54627,19.18158],[73.54451,19.17713],[73.54294,19.17814],[73.53979,19.17627],[73.53653,19.17884],[73.53777,19.16706],[73.54258,19.15883],[73.5401,19.16074],[73.53284,19.15355],[73.53419,19.14564],[73.53864,19.1444],[73.54255,19.14054],[73.54244,19.12026],[73.52468,19.12893],[73.52193,19.12207],[73.52461,19.11858],[73.52114,19.11431],[73.51844,19.10688],[73.51753,19.10228],[73.51932,19.09969],[73.51224,19.09618],[73.51335,19.08488],[73.52819,19.08581],[73.52066,19.07066],[73.52489,19.05487],[73.5169,19.05784],[73.51699,19.04918],[73.51462,19.04768],[73.51531,19.04597],[73.53953,19.04834],[73.53712,19.04472],[73.53355,19.02973],[73.53497,19.02835],[73.53827,19.02919],[73.54368,19.02387],[73.53902,19.01573],[73.54405,19.01395],[73.54447,19.01503],[73.54854,19.01072],[73.55433,19.01278],[73.55478,19.00986],[73.54301,19.00168],[73.54147,18.99618],[73.53382,18.99571],[73.53363,18.99119],[73.52396,18.98595],[73.52199,18.97785],[73.51726,18.98014],[73.51519,18.97513],[73.51055,18.97345],[73.51245,18.97193],[73.50959,18.96774],[73.50308,18.96932],[73.49326,18.96879],[73.49428,18.97299],[73.48769,18.98],[73.48476,18.98064],[73.48042,18.97991],[73.4794,18.96987],[73.46668,18.96833],[73.46337,18.96563],[73.46209,18.96715],[73.46084,18.96403],[73.45912,18.96407],[73.46006,18.96241],[73.4561,18.94559],[73.4621,18.92724],[73.45295,18.92382],[73.44796,18.92402],[73.44152,18.929],[73.43626,18.918],[73.43162,18.91551],[73.43661,18.90552],[73.44003,18.90461],[73.43502,18.90097],[73.43669,18.88484],[73.43443,18.88449],[73.43596,18.88023],[73.42494,18.8611],[73.41234,18.85684],[73.40162,18.84216],[73.39033,18.85411],[73.38905,18.85345],[73.38296,18.8272],[73.38391,18.8186],[73.37849,18.81864],[73.38023,18.81364],[73.3792,18.80955],[73.38142,18.80778],[73.38152,18.80396],[73.37873,18.7978],[73.37851,18.7929],[73.37375,18.78829],[73.37063,18.7945],[73.36889,18.79483],[73.36231,18.77089],[73.3509,18.75763],[73.35721,18.75304],[73.35543,18.74293],[73.35776,18.74108],[73.35806,18.73779],[73.35319,18.7326],[73.35441,18.73238],[73.35328,18.72833],[73.35462,18.72134],[73.34962,18.72084],[73.34503,18.71829],[73.34263,18.71545],[73.34446,18.71462],[73.34354,18.71258],[73.34562,18.71093],[73.32955,18.70126],[73.33311,18.69431],[73.33859,18.69843],[73.34117,18.69454],[73.34614,18.69665],[73.34712,18.69304],[73.35832,18.71343],[73.35787,18.69964],[73.36552,18.69946],[73.36833,18.70271],[73.38224,18.69334],[73.38564,18.69461],[73.38317,18.68319],[73.38516,18.6772],[73.38761,18.67718],[73.38266,18.67532],[73.38832,18.66586],[73.38628,18.6552],[73.37758,18.65182],[73.37588,18.65042],[73.3754,18.64527],[73.37067,18.64498],[73.36867,18.64293],[73.36822,18.63813],[73.36034,18.63079],[73.34679,18.61009],[73.34569,18.61158],[73.34341,18.61117],[73.34171,18.60542],[73.33853,18.60422],[73.33451,18.60996],[73.33306,18.60412],[73.33462,18.59615],[73.33225,18.59739],[73.33087,18.59293],[73.32846,18.59381],[73.33201,18.58307],[73.32813,18.57652],[73.32284,18.57213],[73.32353,18.55688],[73.33572,18.55033],[73.33833,18.55338],[73.34179,18.55287],[73.34203,18.55466],[73.34826,18.55392],[73.35682,18.55773],[73.34662,18.54916],[73.34895,18.54585],[73.34144,18.5413],[73.34303,18.53258],[73.35567,18.53376],[73.37351,18.5127],[73.38178,18.50584],[73.38923,18.50225],[73.39733,18.50546],[73.38029,18.49423],[73.37653,18.49521],[73.37524,18.49409],[73.37538,18.48843],[73.37742,18.48902],[73.37878,18.48201],[73.3665,18.48224],[73.36144,18.48617],[73.3613,18.47225],[73.3743,18.46453],[73.37445,18.46782],[73.37698,18.46852],[73.3771,18.48016],[73.38244,18.47659],[73.37976,18.48177],[73.3899,18.48255],[73.38986,18.48954],[73.39359,18.49288],[73.39705,18.48973],[73.40219,18.49941],[73.40841,18.49953],[73.40699,18.48899],[73.40942,18.47688],[73.4038,18.4767],[73.40651,18.46431],[73.40229,18.46272],[73.40187,18.4458],[73.39599,18.44789],[73.39382,18.44453],[73.39477,18.4267],[73.39775,18.4178],[73.39686,18.41535],[73.39877,18.40062],[73.4042,18.39758],[73.40482,18.40082],[73.41027,18.39885],[73.41269,18.40555],[73.42048,18.40323],[73.42008,18.39956],[73.4245,18.38693],[73.42262,18.37307],[73.43419,18.36467],[73.44062,18.35793],[73.43315,18.35008],[73.43399,18.34833],[73.43149,18.34609],[73.42731,18.33023],[73.42191,18.32843],[73.42045,18.31967],[73.42636,18.31933],[73.42038,18.31134],[73.42283,18.30561],[73.42407,18.30417],[73.42592,18.30482],[73.42533,18.29924],[73.42701,18.29884],[73.43007,18.30316],[73.43164,18.30205],[73.43394,18.30433],[73.43918,18.30496],[73.44595,18.30431],[73.45106,18.29811],[73.4543,18.29731],[73.45666,18.29927],[73.46443,18.29858],[73.46961,18.30152],[73.47583,18.3],[73.47593,18.29522],[73.47304,18.29043],[73.47329,18.28721],[73.47578,18.28596],[73.47361,18.28156],[73.4743,18.27797],[73.47766,18.27383],[73.48195,18.27122],[73.48484,18.2764],[73.48709,18.27434],[73.49151,18.27709],[73.49322,18.27586],[73.49898,18.2822],[73.50346,18.2797],[73.50462,18.27185],[73.5149,18.27199],[73.50752,18.26068],[73.50333,18.25947],[73.5053,18.25671],[73.50077,18.25684],[73.5048,18.25598],[73.50528,18.25418],[73.50846,18.25625],[73.5079,18.25285],[73.51399,18.25083],[73.51536,18.25178],[73.51627,18.24734],[73.52331,18.24623],[73.52658,18.25307],[73.53128,18.25684],[73.54477,18.24881],[73.54416,18.24639],[73.54652,18.24254],[73.54043,18.2383],[73.53535,18.22943],[73.53108,18.22799],[73.53461,18.22066],[73.53035,18.2188],[73.52776,18.21395],[73.52206,18.21161],[73.52464,18.2091],[73.53082,18.21073],[73.53413,18.20826],[73.5311,18.20078],[73.52445,18.19548],[73.52051,18.18772],[73.53716,18.18939],[73.53985,18.19754],[73.53959,18.20291],[73.54237,18.20609],[73.55741,18.19823],[73.55622,18.20323],[73.55987,18.20879],[73.55961,18.21457],[73.56267,18.20455],[73.56331,18.19261],[73.56579,18.19346],[73.56833,18.18702],[73.57794,18.18369],[73.58225,18.17816],[73.59392,18.17681],[73.5964,18.17942],[73.59739,18.18884],[73.60082,18.18658],[73.6098,18.18483],[73.62336,18.17655],[73.63041,18.1745],[73.63402,18.17599],[73.64767,18.17213],[73.65243,18.17296],[73.66263,18.16592],[73.66216,18.1611],[73.66607,18.16023],[73.66613,18.15583],[73.66105,18.15162],[73.66164,18.1546],[73.65611,18.15567],[73.65417,18.15842],[73.64955,18.15688],[73.65082,18.15212],[73.64926,18.15235],[73.64117,18.14071],[73.63663,18.14686],[73.6337,18.14691],[73.63372,18.14386],[73.62845,18.14124],[73.62929,18.13621],[73.62806,18.13368],[73.61924,18.1267],[73.62679,18.12303],[73.61813,18.12273],[73.61238,18.12453],[73.61011,18.12217],[73.60749,18.12253],[73.60667,18.1264],[73.61001,18.13346],[73.60922,18.14094],[73.60643,18.13888],[73.60858,18.13676],[73.60873,18.13189],[73.60402,18.12206],[73.60113,18.12159],[73.60211,18.11938],[73.60081,18.11497],[73.59589,18.11199],[73.59511,18.10825],[73.59968,18.10272],[73.60939,18.09678],[73.60925,18.09319],[73.60664,18.08888],[73.6006,18.08453],[73.6027,18.081],[73.60552,18.08274],[73.60677,18.08034],[73.62091,18.07712],[73.61947,18.07267],[73.61471,18.06868],[73.61276,18.06191],[73.61375,18.0586],[73.62999,18.04915],[73.63014,18.0451],[73.63848,18.04602],[73.6449,18.04426],[73.65104,18.03673],[73.6555,18.03601],[73.65955,18.03274],[73.65809,18.02932],[73.6632,18.02508],[73.66614,18.02472],[73.67934,18.03323],[73.69379,18.03909],[73.70229,18.04435],[73.70941,18.04257],[73.72023,18.04278],[73.73758,18.03698],[73.75619,18.03862],[73.75365,18.03244],[73.75567,18.02815],[73.76137,18.02719],[73.76599,18.02344],[73.76647,18.02507],[73.77038,18.02501],[73.77533,18.02786],[73.7774,18.02494],[73.7824,18.0263],[73.79265,18.02057],[73.79524,18.02412],[73.7995,18.02418],[73.80512,18.03074],[73.80863,18.03163],[73.81336,18.03799],[73.81355,18.03511],[73.82343,18.03432],[73.82422,18.03019],[73.8289,18.02942],[73.83572,18.032],[73.84055,18.031],[73.8442,18.03471],[73.84444,18.03899],[73.84604,18.03983],[73.8543,18.03033],[73.85761,18.03062],[73.86502,18.04171],[73.86435,18.04676],[73.87018,18.04799],[73.86944,18.0515],[73.87159,18.05535],[73.87014,18.06384],[73.8714,18.06683],[73.868,18.07035],[73.86927,18.07549],[73.88016,18.08655],[73.87351,18.09323],[73.87412,18.09498],[73.86734,18.10471],[73.86622,18.10974],[73.86321,18.1129],[73.86077,18.11959],[73.87732,18.11545],[73.88772,18.11626],[73.89173,18.12547],[73.89727,18.12537],[73.90155,18.1288],[73.90168,18.13694],[73.896,18.13949],[73.89053,18.14787],[73.88864,18.15419],[73.87801,18.16374],[73.87419,18.1645],[73.87283,18.16637],[73.87491,18.1732],[73.87321,18.17467],[73.88289,18.17271],[73.88554,18.17401],[73.89162,18.18188],[73.89463,18.18231],[73.89664,18.18004],[73.90048,18.16221],[73.90197,18.15958],[73.90488,18.15915],[73.90832,18.16324],[73.9221,18.17174],[73.93498,18.17205],[73.93846,18.17319],[73.94132,18.17837],[73.94519,18.17905],[73.9493,18.17408],[73.96127,18.16555],[73.96182,18.16168],[73.96397,18.16242],[73.96774,18.15883],[73.96801,18.15982],[73.97945,18.15387],[73.981,18.15436],[73.98016,18.15237],[73.98134,18.15149],[73.98779,18.15137],[73.98776,18.14978],[73.98857,18.15131],[73.98881,18.15024],[73.99347,18.15092],[73.99512,18.15257],[73.99321,18.15468],[74.00117,18.16019],[74.00578,18.1604],[74.00893,18.14858],[74.01162,18.14832],[74.01324,18.14431],[74.02813,18.13228],[74.04334,18.13552],[74.04724,18.14058],[74.05312,18.14162],[74.06797,18.13661],[74.07572,18.12242],[74.08034,18.12082],[74.10087,18.12312],[74.11234,18.13118],[74.118,18.13332],[74.1214,18.13217],[74.1346,18.1181],[74.13749,18.11683],[74.14593,18.12227],[74.15104,18.11959],[74.15754,18.11043],[74.16252,18.10804],[74.17562,18.10924],[74.1852,18.11291],[74.18969,18.11115],[74.19596,18.10506],[74.20437,18.10368],[74.21014,18.09725],[74.21551,18.09633],[74.23579,18.0996],[74.24198,18.09673],[74.24919,18.08995],[74.26283,18.08103],[74.27964,18.07477],[74.29473,18.07407],[74.29871,18.06815],[74.30229,18.06725],[74.30584,18.0679],[74.31034,18.07208],[74.31878,18.07251],[74.32748,18.08523],[74.35504,18.09698],[74.35907,18.09489],[74.36019,18.0872],[74.36845,18.08463],[74.37245,18.07413],[74.3838,18.06956],[74.39552,18.07372],[74.40216,18.07025],[74.41064,18.07063],[74.42188,18.06679],[74.43626,18.06477],[74.4401,18.06245],[74.4435,18.05724],[74.45289,18.05279],[74.45639,18.04794],[74.45984,18.04641],[74.47358,18.04866],[74.48588,18.05599],[74.50061,18.06014],[74.50847,18.0594],[74.51582,18.06097],[74.5335,18.05792],[74.54226,18.06189],[74.54741,18.06838],[74.55775,18.07016],[74.56266,18.06731],[74.56941,18.05521],[74.57841,18.05396],[74.57971,18.04847],[74.58249,18.04602],[74.58516,18.04621],[74.58638,18.05314],[74.59043,18.05596],[74.59772,18.05347],[74.60551,18.04727],[74.61029,18.0464],[74.61985,18.04842],[74.62401,18.05148],[74.62632,18.05595],[74.62949,18.05692],[74.63586,18.05162],[74.63809,18.04504],[74.64105,18.04416],[74.64324,18.04528],[74.64517,18.04969],[74.64988,18.05271],[74.65372,18.05869],[74.65419,18.06819],[74.66472,18.06991],[74.67475,18.06143],[74.68409,18.0601],[74.68618,18.05676],[74.68646,18.04819],[74.69094,18.03881],[74.69565,18.03704],[74.70199,18.03813],[74.70796,18.03051],[74.71525,18.02835],[74.72414,18.03109],[74.7327,18.02705],[74.74189,18.02673],[74.74537,18.0182],[74.74942,18.01612],[74.75791,18.02184],[74.7681,18.02332],[74.77308,18.01752],[74.7742,18.01076],[74.79031,18.00841],[74.79934,17.99788],[74.80262,17.99666],[74.81245,18.00029],[74.81172,18.00967],[74.81605,18.01499],[74.8181,18.01534],[74.82306,18.01172],[74.8292,17.99588],[74.83224,17.99318],[74.83605,17.99209],[74.84508,17.99658],[74.86209,17.99254],[74.86277,17.98847],[74.85908,17.9789],[74.85852,17.97025],[74.85032,17.96338],[74.84312,17.95252],[74.84341,17.94863],[74.84588,17.94585],[74.85435,17.94637],[74.85976,17.95076],[74.86578,17.9524],[74.87124,17.95012],[74.8735,17.94322],[74.88364,17.9423],[74.8938,17.9365],[74.89662,17.93711],[74.90294,17.94366],[74.91288,17.94549],[74.91859,17.94504],[74.92695,17.94124],[74.9371,17.94157],[74.94283,17.93672],[74.94014,17.92608],[74.9412,17.92426],[74.95257,17.92331],[74.9635,17.91736],[74.98305,17.91798],[75.0053,17.91265],[75.01226,17.90952],[75.01899,17.90899],[75.0202,17.89734],[75.02403,17.89504],[75.02759,17.89583],[75.03187,17.90128],[75.0386,17.90613],[75.05065,17.90356],[75.05411,17.90504],[75.05284,17.90952],[75.04501,17.91908],[75.04612,17.92332],[75.051,17.92727],[75.05594,17.92803],[75.06717,17.91878],[75.07091,17.91693],[75.07398,17.9173],[75.08264,17.92141],[75.08786,17.92686],[75.08695,17.92959],[75.08015,17.93565],[75.07986,17.9387],[75.08192,17.94081],[75.09611,17.94662],[75.10092,17.94465],[75.10697,17.9378],[75.11206,17.93841],[75.11672,17.94709],[75.12614,17.95159],[75.12955,17.95645],[75.12781,17.9615],[75.11702,17.96518],[75.1153,17.96816],[75.11605,17.97098],[75.11975,17.97351],[75.13094,17.97053],[75.13606,17.9719],[75.13276,17.97293],[75.12914,17.97864],[75.12474,17.99616],[75.11882,18.00107],[75.11171,18.00128],[75.10864,17.99895],[75.10528,17.98281],[75.10373,17.97864],[75.10036,17.97606],[75.09654,17.97607],[75.08094,17.98214],[75.06895,17.97961],[75.06338,17.96433],[75.05796,17.95584],[75.05313,17.9521],[75.03847,17.94975],[75.02957,17.95902],[75.02215,17.96311],[75.02014,17.9667],[75.02777,17.98949],[75.03801,17.99991],[75.04688,18.01272],[75.05159,18.02416],[75.08062,18.03909],[75.0841,18.04552],[75.08539,18.05699],[75.09473,18.06963],[75.1133,18.07483],[75.12873,18.07457],[75.13078,18.07853],[75.13163,18.08735],[75.13582,18.09274],[75.14166,18.09751],[75.15575,18.10164],[75.16236,18.10854],[75.16276,18.11331],[75.16092,18.11729],[75.15205,18.12192],[75.13847,18.12192],[75.12076,18.11726],[75.11031,18.11727],[75.09584,18.11864],[75.09216,18.12282],[75.09073,18.13039],[75.09188,18.14891],[75.09539,18.15681],[75.10074,18.16342],[75.11034,18.18705],[75.11193,18.20503],[75.10611,18.21999],[75.09574,18.22101],[75.08251,18.21841],[75.05809,18.19958],[75.05271,18.19735],[75.038,18.1963],[75.02317,18.18963],[75.01834,18.19248],[75.01018,18.20409],[75.00843,18.20933],[75.01316,18.22092],[75.02355,18.23605],[75.04407,18.25421],[75.0439,18.26008],[75.04182,18.26234],[75.03604,18.26156],[74.99137,18.24057],[74.9631,18.25165],[74.95816,18.25507],[74.95302,18.26371],[74.94877,18.26646],[74.92523,18.25986],[74.8921,18.25949],[74.88515,18.25646],[74.87642,18.24919],[74.86189,18.24923],[74.84248,18.24533],[74.83251,18.24914],[74.81703,18.26788],[74.80028,18.27656],[74.79685,18.28036],[74.79521,18.28564],[74.79658,18.29576],[74.80069,18.30142],[74.80874,18.30128],[74.83293,18.29532],[74.83705,18.29585],[74.84337,18.29967],[74.84442,18.30821],[74.84255,18.31215],[74.83413,18.32051],[74.83292,18.3263],[74.83419,18.34073],[74.82775,18.34444],[74.81559,18.34171],[74.79806,18.35334],[74.80344,18.37404],[74.80958,18.3837],[74.79896,18.39272],[74.79339,18.40198],[74.77747,18.40998],[74.76717,18.40666],[74.75499,18.3971],[74.75219,18.39654],[74.73838,18.3973],[74.73076,18.40131],[74.72619,18.41413],[74.71706,18.42266],[74.71609,18.4321],[74.72188,18.44258],[74.72335,18.44842],[74.72366,18.46037],[74.72768,18.48215],[74.72571,18.48597],[74.71339,18.49734],[74.71038,18.50239],[74.70264,18.50657],[74.69275,18.50353],[74.68202,18.49658],[74.66689,18.49148],[74.66151,18.49126],[74.65606,18.48256],[74.65604,18.47332],[74.66294,18.46841],[74.67224,18.46877],[74.67452,18.4663],[74.67469,18.46278],[74.67176,18.45907],[74.65919,18.45733],[74.65084,18.45115],[74.64285,18.45024],[74.63152,18.45384],[74.61947,18.46551],[74.61372,18.46813],[74.58114,18.47252],[74.57823,18.47432],[74.57035,18.48496],[74.55557,18.49523],[74.54757,18.50898],[74.55147,18.51428],[74.55865,18.51786],[74.56119,18.52191],[74.56584,18.52472],[74.57065,18.53928],[74.56852,18.54353],[74.57105,18.54566],[74.57485,18.54358],[74.57662,18.54461],[74.57695,18.54973],[74.56581,18.55616],[74.55915,18.56701],[74.55462,18.57008],[74.55302,18.57473],[74.54141,18.581],[74.54388,18.59262],[74.54313,18.59953],[74.55258,18.60763],[74.54883,18.61282],[74.53471,18.61827],[74.52901,18.61527],[74.5091,18.61342],[74.50604,18.61792],[74.50472,18.62406],[74.48157,18.63074],[74.47136,18.64173],[74.47092,18.64647],[74.47266,18.649],[74.47603,18.65024],[74.48641,18.64719],[74.48757,18.65372],[74.48978,18.65597],[74.50103,18.65915],[74.50904,18.66578],[74.50962,18.6688],[74.50359,18.67776],[74.49443,18.67973],[74.4912,18.67752],[74.48676,18.67711],[74.47598,18.68687],[74.47393,18.69601],[74.48042,18.70072],[74.48149,18.70359],[74.47743,18.72037],[74.47343,18.72554],[74.47034,18.72678],[74.44881,18.7204],[74.44009,18.72217],[74.43752,18.72448],[74.43793,18.72954],[74.43102,18.7335],[74.43181,18.73526],[74.43685,18.73511],[74.43687,18.73803],[74.42862,18.74274],[74.42514,18.74665],[74.41861,18.74605],[74.40956,18.74137],[74.40238,18.74308],[74.39802,18.74215],[74.3973,18.75247],[74.39363,18.76754],[74.40047,18.77569],[74.39345,18.77877],[74.38824,18.78482],[74.3889,18.79036],[74.38439,18.80495],[74.39117,18.8117],[74.39367,18.81865],[74.39865,18.82179],[74.39729,18.82835],[74.38916,18.83294],[74.38257,18.83086],[74.37788,18.83207],[74.34709,18.84565],[74.34341,18.84346],[74.33955,18.83681],[74.3279,18.83696],[74.3085,18.85296],[74.3064,18.85523],[74.30561,18.86357],[74.30815,18.86812],[74.30188,18.8731],[74.30169,18.87997],[74.29551,18.88728],[74.29442,18.89082],[74.29351,18.89769],[74.29576,18.90161],[74.29476,18.90351],[74.28396,18.90698],[74.28188,18.90908],[74.2808,18.91455],[74.27085,18.91869],[74.26042,18.93779],[74.25334,18.94337],[74.24915,18.95487],[74.24614,18.95284],[74.23608,18.9531],[74.23908,18.95751],[74.2355,18.9615],[74.23687,18.96879],[74.23164,18.96755],[74.22224,18.97055],[74.22073,18.97271],[74.22083,18.97779],[74.22567,18.98565],[74.22165,18.99519],[74.2193,18.99563],[74.21598,18.99308],[74.21082,18.99475],[74.21077,18.99712],[74.21465,19.00181],[74.21273,19.00877],[74.21097,19.00968],[74.20292,19.00533],[74.20019,19.00542],[74.19851,19.00778],[74.19972,19.01225],[74.19872,19.01486],[74.18963,19.01571],[74.18805,19.02393],[74.1784,19.02677],[74.17394,19.03143],[74.17646,19.03436],[74.17219,19.04103],[74.17633,19.04427],[74.17658,19.04664],[74.17929,19.04716],[74.18317,19.05374],[74.1864,19.05549],[74.18778,19.05965],[74.19114,19.05982],[74.18987,19.07353],[74.19125,19.07872],[74.20216,19.08897],[74.20011,19.0902],[74.20153,19.09329],[74.19682,19.10074],[74.19916,19.10391],[74.2002,19.11013],[74.20349,19.11177],[74.21159,19.12878],[74.21615,19.1302],[74.21801,19.12841],[74.22562,19.12955],[74.2282,19.12207],[74.23209,19.12114],[74.23467,19.12274],[74.23494,19.12791],[74.24119,19.13913],[74.24268,19.13921],[74.24396,19.14449],[74.25634,19.15206],[74.25794,19.15876],[74.26328,19.15978],[74.26684,19.1631],[74.2656,19.16373],[74.26604,19.16744],[74.26368,19.1698],[74.26715,19.17654],[74.26439,19.17942],[74.27361,19.18576],[74.28267,19.18759],[74.29477,19.18647],[74.29439,19.18952],[74.29986,19.18903],[74.30318,19.19149],[74.30624,19.1981],[74.30863,19.19845],[74.3098,19.20462],[74.31616,19.20784],[74.29284,19.2177],[74.27369,19.21944],[74.26035,19.22646],[74.26158,19.22407],[74.2565,19.21986],[74.25159,19.22111],[74.25019,19.21864],[74.24685,19.21929],[74.24732,19.21762],[74.24369,19.21403],[74.233,19.21064],[74.2328,19.20781],[74.23046,19.20527],[74.22752,19.20381],[74.22302,19.20509],[74.21986,19.20287],[74.21402,19.20391],[74.21177,19.20614],[74.18874,19.20954],[74.17855,19.21985],[74.16847,19.22415],[74.16373,19.21508],[74.16521,19.20807],[74.15712,19.20423],[74.1566,19.21233],[74.15403,19.21482],[74.15324,19.21971],[74.1552,19.22035],[74.15192,19.22169],[74.1513,19.22573],[74.13552,19.22466],[74.12599,19.22239],[74.11722,19.22628],[74.11547,19.22993],[74.11384,19.22609],[74.10572,19.23069],[74.10049,19.23089],[74.10047,19.23351],[74.09737,19.2323],[74.08372,19.23907],[74.08515,19.23287],[74.09283,19.22869],[74.09277,19.22767],[74.08926,19.22821],[74.07722,19.2359],[74.07151,19.23545],[74.06027,19.24586],[74.05404,19.24158],[74.04964,19.24355],[74.04901,19.25209],[74.04769,19.25211],[74.04495,19.26192],[74.04227,19.26113],[74.03084,19.24973],[74.03282,19.25818],[74.02787,19.26467],[74.02306,19.26672],[74.02475,19.27053],[74.02684,19.27081],[74.02584,19.27449],[74.02981,19.27797],[74.02982,19.28291],[74.02689,19.28364],[74.02348,19.28865],[74.02041,19.28702],[74.01961,19.28377],[74.01743,19.28585],[74.01593,19.29395],[74.01429,19.29261],[74.01157,19.29525],[74.00635,19.29254],[74.00565,19.2936],[74.00777,19.29497],[74.00817,19.29823],[74.00487,19.30285],[74.00558,19.30514],[74.00912,19.30566],[74.01171,19.29958],[74.01528,19.29964],[74.01878,19.2956],[74.0224,19.30024],[74.02405,19.29819],[74.02509,19.29893],[74.02162,19.30909],[74.01967,19.30971],[74.02419,19.30947],[74.02528,19.31201],[74.02384,19.31484],[74.02238,19.31354],[74.02204,19.3154],[74.01771,19.31523],[74.01931,19.32147],[74.01213,19.3291],[74.01153,19.3353],[74.00523,19.34069],[74.00173,19.3414],[74.00225,19.34907],[73.99942,19.35944],[73.99504,19.35243],[73.99229,19.35334],[73.98256,19.34968],[73.9768,19.35047],[73.97235,19.34898],[73.97143,19.35317],[73.96907,19.35404],[73.96598,19.35034],[73.95353,19.34753],[73.95509,19.34173],[73.95306,19.3424],[73.94991,19.34001],[73.94918,19.34257],[73.94683,19.34269],[73.94503,19.3397],[73.94351,19.34454],[73.94185,19.34215],[73.93821,19.343],[73.9389,19.34025],[73.93766,19.339],[73.9332,19.34124],[73.92687,19.33871],[73.92398,19.34577],[73.91996,19.34908],[73.91899,19.35493],[73.91281,19.36237],[73.9038,19.3622],[73.89416,19.37051],[73.8855,19.37362],[73.87933,19.36758],[73.87397,19.35868],[73.86645,19.35517],[73.85791,19.35647],[73.85348,19.35555],[73.84076,19.36631],[73.84298,19.3711],[73.83772,19.37604],[73.82568,19.38158],[73.82115,19.38675],[73.81247,19.38791],[73.80779,19.39294]],[[73.84905,18.16772],[73.84704,18.1688],[73.84714,18.17498],[73.85126,18.17777],[73.8563,18.17728],[73.86101,18.17476],[73.86673,18.17547],[73.86318,18.16561],[73.85838,18.16263],[73.84905,18.16772]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"491","area_level":"District","area_name":"Raigad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.14481,19.12604],[73.14341,19.12745],[73.14212,19.12539],[73.14056,19.12575],[73.13686,19.11942],[73.13479,19.11885],[73.13035,19.10867],[73.12275,19.11051],[73.11984,19.1099],[73.11787,19.10674],[73.11558,19.10741],[73.11417,19.11091],[73.11103,19.11112],[73.10624,19.11019],[73.09966,19.10617],[73.09595,19.11391],[73.09108,19.1151],[73.0866,19.11422],[73.08397,19.11569],[73.08147,19.11177],[73.07782,19.11445],[73.07482,19.11026],[73.06496,19.1107],[73.05716,19.10224],[73.04753,19.09982],[73.04709,19.09086],[73.04858,19.08787],[73.04484,19.08061],[73.04349,19.06928],[73.04617,19.05948],[73.04323,19.05453],[73.04935,19.04349],[73.04752,19.03291],[73.04879,19.02765],[73.04654,19.0259],[73.04655,19.02057],[73.04963,19.01597],[73.04484,19.01248],[73.04369,19.00739],[73.02974,18.99972],[73.02494,18.99975],[73.02463,18.99782],[73.02086,18.99524],[72.99815,18.987],[72.98213,18.98816],[72.94715,18.98677],[72.94821,18.96746],[72.95065,18.95951],[72.95493,18.95724],[72.95917,18.95716],[72.9514,18.9518],[72.9456,18.94997],[72.94081,18.94449],[72.94079,18.94155],[72.94448,18.93555],[72.93866,18.92867],[72.94186,18.92309],[72.93935,18.92158],[72.93706,18.90933],[72.92777,18.91443],[72.92101,18.91364],[72.91542,18.90759],[72.90407,18.90444],[72.90397,18.8971],[72.90175,18.89136],[72.90219,18.88288],[72.91384,18.87581],[72.91549,18.86903],[72.91988,18.86522],[72.92008,18.86386],[72.91684,18.8627],[72.9159,18.86068],[72.92008,18.85329],[72.9257,18.84857],[72.93484,18.84405],[72.94248,18.84237],[72.95034,18.8449],[72.95647,18.8413],[72.96388,18.84184],[72.9692,18.84808],[72.96942,18.85467],[72.97341,18.8628],[72.97602,18.86473],[72.98384,18.86545],[72.99368,18.87227],[72.99539,18.87151],[72.98944,18.86693],[72.98135,18.85675],[72.97509,18.8395],[72.97746,18.83038],[72.98271,18.82341],[72.98493,18.81499],[72.9874,18.81256],[72.99929,18.8092],[72.99891,18.80282],[72.99783,18.8026],[72.98769,18.80476],[72.97846,18.80877],[72.97827,18.8076],[72.994,18.78711],[72.99667,18.77954],[72.99594,18.77302],[72.99279,18.77954],[72.98773,18.78336],[72.96502,18.79506],[72.95869,18.80037],[72.95713,18.79923],[72.95698,18.80301],[72.9495,18.81542],[72.94795,18.81623],[72.94611,18.81273],[72.94466,18.81739],[72.9471,18.8174],[72.94661,18.82481],[72.94515,18.82638],[72.93643,18.82169],[72.93701,18.82411],[72.92739,18.82089],[72.92488,18.81796],[72.92399,18.81266],[72.91555,18.80633],[72.91449,18.80032],[72.90856,18.80014],[72.89904,18.8059],[72.89633,18.80192],[72.88955,18.80053],[72.88642,18.80499],[72.87437,18.80457],[72.87238,18.8057],[72.87037,18.81134],[72.86581,18.80762],[72.86524,18.8014],[72.8608,18.79176],[72.86168,18.77956],[72.85865,18.7707],[72.8643,18.75847],[72.86043,18.74223],[72.86254,18.73346],[72.86225,18.72078],[72.8578,18.7062],[72.85105,18.69883],[72.85783,18.69009],[72.8613,18.66956],[72.86071,18.64943],[72.86211,18.64587],[72.86406,18.64543],[72.86272,18.63836],[72.86015,18.63452],[72.86062,18.63111],[72.86236,18.62974],[72.8644,18.63257],[72.87014,18.63316],[72.87814,18.63081],[72.87846,18.62954],[72.8741,18.62914],[72.87557,18.6224],[72.87813,18.62466],[72.87738,18.62206],[72.87906,18.61619],[72.88125,18.61588],[72.88095,18.61845],[72.88353,18.61712],[72.89151,18.60622],[72.90155,18.58362],[72.91484,18.56427],[72.92174,18.54718],[72.90699,18.54103],[72.90532,18.53856],[72.91162,18.51868],[72.91109,18.50256],[72.90565,18.50269],[72.90353,18.49336],[72.90189,18.49266],[72.90189,18.47577],[72.89373,18.47179],[72.89564,18.46373],[72.89482,18.45752],[72.89728,18.45822],[72.90176,18.45144],[72.9071,18.43726],[72.90751,18.43221],[72.90473,18.42918],[72.90976,18.42231],[72.90617,18.41133],[72.90704,18.40299],[72.90935,18.40376],[72.90956,18.39941],[72.91353,18.39764],[72.91326,18.39401],[72.91898,18.39451],[72.92293,18.39308],[72.92595,18.38344],[72.92508,18.37737],[72.91476,18.37087],[72.91192,18.36545],[72.91298,18.36163],[72.91569,18.35901],[72.91522,18.35514],[72.91883,18.34861],[72.92209,18.34748],[72.92124,18.34999],[72.92411,18.35108],[72.9276,18.34973],[72.93353,18.35163],[72.9366,18.34955],[72.93515,18.34416],[72.94231,18.34439],[72.946,18.34137],[72.94566,18.33907],[72.94908,18.33878],[72.95387,18.33496],[72.95632,18.32578],[72.96,18.32097],[72.95591,18.31586],[72.96045,18.31184],[72.96419,18.31449],[72.96841,18.30941],[72.97007,18.29985],[72.97306,18.30098],[72.97572,18.29797],[72.97939,18.29788],[72.98648,18.28228],[72.98541,18.27849],[72.98065,18.27665],[72.98115,18.27053],[72.97302,18.26616],[72.97146,18.27309],[72.96431,18.28017],[72.95447,18.27796],[72.9509,18.27998],[72.95091,18.28387],[72.94831,18.285],[72.93805,18.28372],[72.93588,18.28047],[72.9378,18.27518],[72.93528,18.27257],[72.94019,18.26407],[72.9394,18.26034],[72.94313,18.24733],[72.94054,18.24296],[72.94256,18.23408],[72.93826,18.23272],[72.93783,18.2303],[72.93501,18.22861],[72.93387,18.22399],[72.93172,18.2234],[72.93178,18.22042],[72.93873,18.21732],[72.93839,18.21894],[72.94241,18.22046],[72.94508,18.22407],[72.9496,18.22239],[72.95162,18.21972],[72.9564,18.21964],[72.96196,18.21341],[72.96499,18.21224],[72.9682,18.20664],[72.98093,18.19629],[72.98062,18.1872],[72.98866,18.1579],[72.98669,18.15732],[72.98134,18.13703],[72.97103,18.13289],[72.97297,18.12506],[72.97676,18.12039],[72.9774,18.11512],[72.97919,18.11436],[72.97979,18.10807],[72.98382,18.10342],[72.98791,18.10262],[72.99683,18.08421],[72.99916,18.06955],[72.99479,18.06763],[72.99143,18.06155],[72.99038,18.05577],[72.99542,18.05013],[72.9981,18.05076],[73.00086,18.05502],[73.00606,18.05206],[73.00845,18.04986],[73.01444,18.0336],[73.01893,18.03161],[73.02129,18.02745],[73.01014,18.02429],[73.00521,18.02119],[73.0085,18.01066],[73.01249,18.01038],[73.01528,18.00767],[73.02111,17.99332],[73.01816,17.99285],[73.01939,17.98984],[73.02728,17.98816],[73.03066,17.9898],[73.03668,17.98271],[73.04137,17.98599],[73.07242,17.99011],[73.09226,17.98971],[73.10258,17.98211],[73.11442,17.9795],[73.11773,17.98111],[73.1322,18.01402],[73.13739,18.01822],[73.14599,18.019],[73.14937,18.0218],[73.15133,18.03328],[73.16056,18.04514],[73.16929,18.05165],[73.17413,18.05976],[73.17926,18.06107],[73.18604,18.05827],[73.19138,18.05835],[73.20157,18.06905],[73.20532,18.06941],[73.2089,18.06739],[73.21115,18.06183],[73.21531,18.05885],[73.23019,18.05648],[73.24042,18.06008],[73.24452,18.06371],[73.25419,18.06313],[73.26145,18.07078],[73.27559,18.06707],[73.28162,18.06814],[73.28686,18.0713],[73.29461,18.05836],[73.29063,18.05102],[73.29008,18.03616],[73.30057,18.02427],[73.30685,18.02239],[73.31503,18.02885],[73.31661,18.02864],[73.31748,18.02586],[73.32679,18.02523],[73.3343,18.01159],[73.34015,18.01594],[73.3454,18.0262],[73.34856,18.01799],[73.35425,18.01521],[73.35488,18.0119],[73.35864,18.0073],[73.35579,17.99287],[73.34808,17.98971],[73.3422,17.98096],[73.34265,17.97473],[73.34078,17.9723],[73.35061,17.95912],[73.35589,17.95818],[73.36134,17.95443],[73.35903,17.94751],[73.36075,17.93753],[73.364,17.9336],[73.36912,17.93354],[73.3712,17.92788],[73.37398,17.92527],[73.37594,17.913],[73.36846,17.90796],[73.36883,17.89379],[73.37083,17.88789],[73.3805,17.8823],[73.38737,17.88287],[73.39145,17.88099],[73.39898,17.88375],[73.405,17.88281],[73.40735,17.88544],[73.40765,17.88864],[73.41133,17.89033],[73.41382,17.89373],[73.41887,17.89357],[73.42285,17.89695],[73.42621,17.90917],[73.43707,17.90271],[73.43695,17.89522],[73.43831,17.89267],[73.43681,17.88779],[73.4392,17.88245],[73.43816,17.87835],[73.44234,17.8767],[73.44306,17.87064],[73.44254,17.86657],[73.43925,17.8636],[73.43835,17.85934],[73.44468,17.85062],[73.45044,17.85175],[73.45022,17.85576],[73.45662,17.85911],[73.46119,17.86701],[73.47855,17.86518],[73.48912,17.86705],[73.49973,17.85222],[73.51025,17.8522],[73.51776,17.86281],[73.52222,17.86561],[73.52243,17.87205],[73.52622,17.8769],[73.53266,17.87926],[73.53311,17.88311],[73.54066,17.87173],[73.54976,17.86533],[73.55397,17.86539],[73.57078,17.87831],[73.57,17.8804],[73.56441,17.88611],[73.56042,17.89369],[73.55709,17.89488],[73.53534,17.89238],[73.53487,17.89683],[73.53251,17.89948],[73.54033,17.90689],[73.54288,17.90597],[73.54747,17.90944],[73.55191,17.90917],[73.56339,17.91704],[73.56481,17.92133],[73.57784,17.93404],[73.57607,17.94109],[73.57922,17.94703],[73.58126,17.946],[73.58316,17.94803],[73.58427,17.9473],[73.59039,17.93965],[73.59762,17.94034],[73.61072,17.94777],[73.61566,17.953],[73.61756,17.95805],[73.63857,17.9717],[73.63931,17.97622],[73.63719,17.97867],[73.63767,17.98022],[73.62669,17.98533],[73.62737,17.98868],[73.63015,17.98924],[73.63159,17.99222],[73.63422,17.99326],[73.63787,17.99215],[73.64242,18.00155],[73.64954,18.00671],[73.65054,18.00553],[73.65754,18.0126],[73.65044,18.02215],[73.6583,18.02868],[73.65955,18.03274],[73.6555,18.03601],[73.65104,18.03673],[73.6449,18.04426],[73.63848,18.04602],[73.63014,18.0451],[73.62999,18.04915],[73.61375,18.0586],[73.61276,18.06191],[73.61471,18.06868],[73.61947,18.07267],[73.62091,18.07712],[73.60677,18.08034],[73.60552,18.08274],[73.6027,18.081],[73.6006,18.08453],[73.60664,18.08888],[73.60925,18.09319],[73.60939,18.09678],[73.59968,18.10272],[73.59511,18.10825],[73.59589,18.11199],[73.60081,18.11497],[73.60211,18.11938],[73.60113,18.12159],[73.60402,18.12206],[73.60786,18.12953],[73.60943,18.13383],[73.60643,18.13888],[73.60824,18.14125],[73.61001,18.13346],[73.60667,18.1264],[73.60749,18.12253],[73.61011,18.12217],[73.61238,18.12453],[73.61813,18.12273],[73.62679,18.12303],[73.61924,18.1267],[73.62806,18.13368],[73.62929,18.13621],[73.62845,18.14124],[73.63372,18.14386],[73.6337,18.14691],[73.63663,18.14686],[73.64117,18.14071],[73.64926,18.15235],[73.65082,18.15212],[73.64955,18.15688],[73.65417,18.15842],[73.65611,18.15567],[73.66164,18.1546],[73.66105,18.15162],[73.66613,18.15583],[73.66607,18.16023],[73.66216,18.1611],[73.66263,18.16592],[73.65243,18.17296],[73.64767,18.17213],[73.63402,18.17599],[73.63041,18.1745],[73.62336,18.17655],[73.6098,18.18483],[73.60082,18.18658],[73.59739,18.18884],[73.5964,18.17942],[73.59392,18.17681],[73.58225,18.17816],[73.57794,18.18369],[73.56833,18.18702],[73.56579,18.19346],[73.56331,18.19261],[73.56267,18.20455],[73.55961,18.21457],[73.55987,18.20879],[73.55622,18.20323],[73.55741,18.19823],[73.54237,18.20609],[73.53959,18.20291],[73.53985,18.19754],[73.53716,18.18939],[73.52051,18.18772],[73.52445,18.19548],[73.5311,18.20078],[73.53413,18.20826],[73.53082,18.21073],[73.52464,18.2091],[73.52206,18.21161],[73.52776,18.21395],[73.53035,18.2188],[73.53461,18.22066],[73.53108,18.22799],[73.53535,18.22943],[73.54043,18.2383],[73.54652,18.24254],[73.54416,18.24639],[73.54477,18.24881],[73.53128,18.25684],[73.52658,18.25307],[73.52331,18.24623],[73.51627,18.24734],[73.51536,18.25178],[73.51399,18.25083],[73.5079,18.25285],[73.50846,18.25625],[73.50528,18.25418],[73.5048,18.25598],[73.50077,18.25684],[73.5053,18.25671],[73.50333,18.25947],[73.50752,18.26068],[73.5149,18.27199],[73.50462,18.27185],[73.50346,18.2797],[73.49898,18.2822],[73.49322,18.27586],[73.49151,18.27709],[73.48709,18.27434],[73.48484,18.2764],[73.48195,18.27122],[73.47766,18.27383],[73.4743,18.27797],[73.47361,18.28156],[73.47578,18.28596],[73.47329,18.28721],[73.47304,18.29043],[73.47593,18.29522],[73.47583,18.3],[73.46961,18.30152],[73.46443,18.29858],[73.45666,18.29927],[73.4543,18.29731],[73.45106,18.29811],[73.44595,18.30431],[73.43918,18.30496],[73.43394,18.30433],[73.43164,18.30205],[73.43007,18.30316],[73.42701,18.29884],[73.42533,18.29924],[73.42592,18.30482],[73.42407,18.30417],[73.42283,18.30561],[73.42038,18.31134],[73.42636,18.31933],[73.42045,18.31967],[73.42191,18.32843],[73.42731,18.33023],[73.43149,18.34609],[73.43399,18.34833],[73.43315,18.35008],[73.44062,18.35793],[73.43419,18.36467],[73.42262,18.37307],[73.4245,18.38693],[73.42008,18.39956],[73.42048,18.40323],[73.41269,18.40555],[73.41027,18.39885],[73.40482,18.40082],[73.4042,18.39758],[73.39877,18.40062],[73.39686,18.41535],[73.39775,18.4178],[73.39477,18.4267],[73.39382,18.44453],[73.39599,18.44789],[73.40187,18.4458],[73.40229,18.46272],[73.40651,18.46431],[73.4038,18.4767],[73.40942,18.47688],[73.40699,18.48899],[73.40841,18.49953],[73.40219,18.49941],[73.39705,18.48973],[73.39359,18.49288],[73.38986,18.48954],[73.3899,18.48255],[73.37976,18.48177],[73.38244,18.47659],[73.3771,18.48016],[73.37698,18.46852],[73.37445,18.46782],[73.3743,18.46453],[73.3613,18.47225],[73.36144,18.48617],[73.3665,18.48224],[73.37878,18.48201],[73.37742,18.48902],[73.37538,18.48843],[73.37524,18.49409],[73.37653,18.49521],[73.38029,18.49423],[73.39733,18.50546],[73.38923,18.50225],[73.38178,18.50584],[73.37351,18.5127],[73.35567,18.53376],[73.34303,18.53258],[73.34144,18.5413],[73.34895,18.54585],[73.34662,18.54916],[73.35682,18.55773],[73.34826,18.55392],[73.34203,18.55466],[73.34179,18.55287],[73.33833,18.55338],[73.33572,18.55033],[73.32353,18.55688],[73.32284,18.57213],[73.32813,18.57652],[73.33201,18.58307],[73.32846,18.59381],[73.33087,18.59293],[73.33225,18.59739],[73.33462,18.59615],[73.33306,18.60412],[73.33451,18.60996],[73.33853,18.60422],[73.34171,18.60542],[73.34341,18.61117],[73.34569,18.61158],[73.34679,18.61009],[73.36034,18.63079],[73.36822,18.63813],[73.36867,18.64293],[73.37067,18.64498],[73.3754,18.64527],[73.37588,18.65042],[73.37758,18.65182],[73.38628,18.6552],[73.38832,18.66586],[73.38266,18.67532],[73.38761,18.67718],[73.38516,18.6772],[73.38317,18.68319],[73.38564,18.69461],[73.38224,18.69334],[73.36833,18.70271],[73.36552,18.69946],[73.35787,18.69964],[73.35832,18.71343],[73.34712,18.69304],[73.34614,18.69665],[73.34117,18.69454],[73.33859,18.69843],[73.33311,18.69431],[73.32955,18.70126],[73.34562,18.71093],[73.34354,18.71258],[73.34446,18.71462],[73.34263,18.71545],[73.34503,18.71829],[73.34962,18.72084],[73.35462,18.72134],[73.35328,18.72833],[73.35441,18.73238],[73.35319,18.7326],[73.35806,18.73779],[73.35776,18.74108],[73.35543,18.74293],[73.35721,18.75304],[73.3509,18.75763],[73.36231,18.77089],[73.36889,18.79483],[73.37063,18.7945],[73.37375,18.78829],[73.37851,18.7929],[73.37873,18.7978],[73.38152,18.80396],[73.38142,18.80778],[73.3792,18.80955],[73.38023,18.81364],[73.37849,18.81864],[73.38391,18.8186],[73.38296,18.8272],[73.38905,18.85345],[73.39033,18.85411],[73.40162,18.84216],[73.41234,18.85684],[73.42494,18.8611],[73.42575,18.86444],[73.43025,18.86909],[73.43596,18.88023],[73.43443,18.88449],[73.43669,18.88484],[73.43502,18.90097],[73.44003,18.90461],[73.43661,18.90552],[73.43162,18.91551],[73.43626,18.918],[73.44152,18.929],[73.44796,18.92402],[73.45295,18.92382],[73.4621,18.92724],[73.4561,18.94559],[73.46006,18.96241],[73.45912,18.96407],[73.46084,18.96403],[73.46209,18.96715],[73.46337,18.96563],[73.46668,18.96833],[73.4794,18.96987],[73.48042,18.97991],[73.48476,18.98064],[73.48769,18.98],[73.49428,18.97299],[73.49326,18.96879],[73.50308,18.96932],[73.50959,18.96774],[73.51245,18.97193],[73.51055,18.97345],[73.51519,18.97513],[73.51726,18.98014],[73.52199,18.97785],[73.52396,18.98595],[73.53363,18.99119],[73.53382,18.99571],[73.54147,18.99618],[73.54301,19.00168],[73.55478,19.00986],[73.55433,19.01278],[73.54854,19.01072],[73.54447,19.01503],[73.54405,19.01395],[73.53902,19.01573],[73.54368,19.02387],[73.53827,19.02919],[73.53497,19.02835],[73.53355,19.02973],[73.53712,19.04472],[73.53953,19.04834],[73.51531,19.04597],[73.51462,19.04768],[73.51699,19.04918],[73.5169,19.05784],[73.52489,19.05487],[73.52066,19.07066],[73.52819,19.08581],[73.51335,19.08488],[73.51222,19.09264],[73.51224,19.09618],[73.51932,19.09969],[73.51759,19.10292],[73.52114,19.11431],[73.52461,19.11858],[73.52193,19.12207],[73.52502,19.12986],[73.5197,19.13105],[73.51283,19.12858],[73.49051,19.12795],[73.49023,19.12547],[73.48652,19.12326],[73.48546,19.12677],[73.47775,19.13315],[73.46744,19.13548],[73.45726,19.1314],[73.44617,19.13404],[73.43063,19.12638],[73.42379,19.13002],[73.41363,19.12988],[73.40455,19.13469],[73.39553,19.1316],[73.38566,19.1328],[73.37317,19.12828],[73.37229,19.12669],[73.35839,19.13077],[73.34859,19.12869],[73.34154,19.12428],[73.33435,19.12329],[73.33338,19.12012],[73.32634,19.11967],[73.32145,19.11672],[73.31623,19.10763],[73.30743,19.10693],[73.30928,19.0996],[73.32201,19.08699],[73.31879,19.0801],[73.31396,19.0769],[73.31144,19.07935],[73.30588,19.07844],[73.30124,19.07253],[73.29763,19.07232],[73.29778,19.08344],[73.29073,19.08452],[73.28431,19.08763],[73.27938,19.08678],[73.26422,19.07223],[73.26407,19.06627],[73.25684,19.06211],[73.25074,19.06177],[73.24345,19.06464],[73.23808,19.07015],[73.23486,19.06856],[73.23051,19.08796],[73.22472,19.09031],[73.22138,19.09551],[73.21817,19.0954],[73.21283,19.09939],[73.20873,19.10848],[73.20188,19.11517],[73.19408,19.12746],[73.17941,19.11594],[73.18215,19.10582],[73.15268,19.11353],[73.14584,19.12224],[73.14481,19.12604]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"492","area_level":"District","area_name":"Ratnagiri","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.69481,16.58559],[73.69303,16.58637],[73.69288,16.58913],[73.69258,16.58955],[73.69253,16.59099],[73.69209,16.59218],[73.69107,16.59252],[73.68803,16.59254],[73.68644,16.59215],[73.6858,16.59142],[73.68505,16.59098],[73.6825,16.58776],[73.67848,16.58426],[73.67846,16.58396],[73.68039,16.58433],[73.68088,16.58398],[73.68099,16.58451],[73.68158,16.58472],[73.68189,16.58422],[73.68255,16.58447],[73.6831,16.58394],[73.68334,16.58404],[73.68342,16.58384],[73.68366,16.58391],[73.68415,16.58367],[73.68456,16.58391],[73.6848,16.58363],[73.68529,16.58369],[73.68538,16.58341],[73.68589,16.58362],[73.68614,16.58347],[73.68602,16.58325],[73.68623,16.58301],[73.68654,16.58305],[73.68654,16.58325],[73.68688,16.58319],[73.68683,16.58305],[73.68705,16.58285],[73.68742,16.58326],[73.68811,16.58342],[73.68864,16.58312],[73.68939,16.58322],[73.69067,16.58296],[73.69153,16.58312],[73.69206,16.58284],[73.69305,16.5828],[73.69341,16.58265],[73.69366,16.58157],[73.69401,16.58157],[73.6941,16.58122],[73.69501,16.58],[73.69597,16.57964],[73.69684,16.57958],[73.69745,16.57875],[73.69893,16.57781],[73.69956,16.5786],[73.70041,16.57908],[73.70151,16.57935],[73.70191,16.57969],[73.70228,16.58048],[73.70317,16.5809],[73.70353,16.58107],[73.70419,16.58104],[73.70519,16.58142],[73.70593,16.58137],[73.70616,16.58121],[73.70628,16.58164],[73.70616,16.58203],[73.70682,16.58365],[73.70597,16.58555],[73.70585,16.58662],[73.70555,16.58737],[73.70462,16.58742],[73.7042,16.58764],[73.703,16.58762],[73.7013,16.58695],[73.7007,16.58713],[73.69967,16.58634],[73.69704,16.58546],[73.69481,16.58559]]],[[[73.2856,16.98943],[73.28559,16.98948],[73.28548,16.98951],[73.28543,16.98935],[73.28554,16.98932],[73.2856,16.98943]]],[[[73.12017,17.76655],[73.11994,17.76644],[73.11976,17.76643],[73.11922,17.76599],[73.11948,17.76552],[73.11967,17.76609],[73.11969,17.76616],[73.11976,17.76616],[73.12017,17.76655]]],[[[73.10157,17.80412],[73.10127,17.80471],[73.10112,17.80464],[73.10136,17.80406],[73.10157,17.80412]]],[[[73.21115,18.06183],[73.2089,18.06739],[73.20532,18.06941],[73.20157,18.06905],[73.19138,18.05835],[73.18604,18.05827],[73.17809,18.06109],[73.17246,18.05837],[73.16929,18.05165],[73.16056,18.04514],[73.15133,18.03328],[73.14937,18.0218],[73.14599,18.019],[73.13739,18.01822],[73.1322,18.01402],[73.11773,17.98111],[73.11442,17.9795],[73.10258,17.98211],[73.09226,17.98971],[73.07242,17.99011],[73.04137,17.98599],[73.03668,17.98271],[73.04026,17.97844],[73.03833,17.97483],[73.03026,17.96803],[73.03133,17.95541],[73.02885,17.94956],[73.03178,17.94105],[73.03582,17.94006],[73.03857,17.93524],[73.04228,17.93363],[73.04643,17.93451],[73.05088,17.93075],[73.05262,17.91055],[73.0547,17.90962],[73.05326,17.90674],[73.05121,17.90634],[73.05473,17.89965],[73.06145,17.89211],[73.06441,17.89024],[73.06796,17.89132],[73.06682,17.88682],[73.07019,17.88212],[73.075,17.88253],[73.07637,17.87849],[73.07557,17.87546],[73.082,17.86687],[73.08149,17.86113],[73.08517,17.85685],[73.08462,17.85326],[73.08729,17.84773],[73.08871,17.83519],[73.09627,17.82585],[73.09434,17.82519],[73.0937,17.81981],[73.09211,17.81661],[73.08975,17.81571],[73.08936,17.81234],[73.09404,17.81171],[73.10315,17.80298],[73.10659,17.79302],[73.11081,17.79019],[73.1102,17.78582],[73.1179,17.76682],[73.12122,17.7667],[73.11867,17.76331],[73.11934,17.75966],[73.12288,17.75327],[73.12592,17.75275],[73.124,17.74879],[73.12516,17.74182],[73.1284,17.73939],[73.12887,17.73136],[73.13153,17.72954],[73.1331,17.72442],[73.13515,17.70865],[73.13264,17.70582],[73.12932,17.70613],[73.12512,17.70153],[73.12532,17.69944],[73.11778,17.69843],[73.11435,17.69517],[73.11428,17.68573],[73.11525,17.68079],[73.1177,17.67902],[73.11909,17.67197],[73.12121,17.67009],[73.12091,17.66746],[73.12485,17.66449],[73.12745,17.65805],[73.1317,17.65622],[73.1348,17.64761],[73.13525,17.64537],[73.13028,17.64291],[73.12755,17.63803],[73.13201,17.63378],[73.13208,17.62988],[73.13512,17.62823],[73.13353,17.62814],[73.13375,17.62519],[73.13832,17.6096],[73.14821,17.59869],[73.15217,17.59971],[73.15273,17.59871],[73.15018,17.57413],[73.14,17.5702],[73.13701,17.56441],[73.1371,17.55589],[73.14114,17.54674],[73.151,17.53767],[73.15383,17.5282],[73.15742,17.52742],[73.16104,17.52874],[73.16615,17.52449],[73.16947,17.51885],[73.17393,17.51691],[73.19218,17.46996],[73.19231,17.46386],[73.1845,17.45571],[73.18581,17.4492],[73.18453,17.44314],[73.18629,17.44135],[73.19698,17.44196],[73.19865,17.43909],[73.19442,17.43688],[73.19245,17.43305],[73.18934,17.43338],[73.186,17.43021],[73.18459,17.41751],[73.1861,17.41501],[73.18331,17.41256],[73.17849,17.41137],[73.17675,17.40781],[73.16885,17.40971],[73.1677,17.40305],[73.17521,17.38963],[73.18333,17.38408],[73.19109,17.38419],[73.19281,17.38762],[73.19642,17.38566],[73.19735,17.38768],[73.20138,17.38736],[73.20047,17.38908],[73.20205,17.38974],[73.20558,17.38733],[73.21067,17.3763],[73.20896,17.37188],[73.21359,17.37016],[73.21132,17.36073],[73.21519,17.35507],[73.2191,17.35307],[73.21462,17.34955],[73.21481,17.34631],[73.22611,17.33434],[73.22945,17.33516],[73.22926,17.33398],[73.2199,17.3331],[73.2189,17.32855],[73.22461,17.3223],[73.23876,17.31704],[73.23794,17.31425],[73.23928,17.30987],[73.23496,17.30369],[73.23663,17.29874],[73.23556,17.28811],[73.25541,17.29078],[73.25877,17.28603],[73.2576,17.27977],[73.24944,17.27993],[73.24783,17.28235],[73.24623,17.28313],[73.24527,17.28179],[73.2406,17.28535],[73.23316,17.28577],[73.22925,17.28248],[73.2251,17.29563],[73.22614,17.30185],[73.22265,17.30633],[73.21151,17.30701],[73.21167,17.30337],[73.20542,17.29916],[73.2015,17.30113],[73.1969,17.3068],[73.19586,17.30497],[73.19246,17.30423],[73.19357,17.30111],[73.19064,17.29931],[73.19519,17.29741],[73.19893,17.2902],[73.20299,17.28922],[73.20353,17.28554],[73.20161,17.28201],[73.20561,17.26957],[73.21004,17.27084],[73.21131,17.27351],[73.21022,17.27804],[73.21777,17.27049],[73.21978,17.27035],[73.22262,17.2654],[73.22124,17.26068],[73.22272,17.2558],[73.22666,17.25648],[73.2285,17.25106],[73.2241,17.24842],[73.23126,17.24673],[73.23467,17.23787],[73.23254,17.23491],[73.23543,17.22762],[73.24155,17.22759],[73.24469,17.22239],[73.24664,17.20431],[73.24253,17.19816],[73.2393,17.20063],[73.23328,17.20152],[73.23163,17.19914],[73.2364,17.19389],[73.23947,17.19433],[73.24493,17.19055],[73.24873,17.1922],[73.25345,17.18831],[73.25896,17.17316],[73.26041,17.16317],[73.26515,17.15513],[73.2682,17.1323],[73.27231,17.12122],[73.27249,17.11885],[73.26891,17.11442],[73.26765,17.11474],[73.26916,17.11273],[73.27778,17.11342],[73.28204,17.10857],[73.28631,17.08447],[73.28348,17.07883],[73.28774,17.07803],[73.28905,17.07441],[73.28875,17.06267],[73.28671,17.05425],[73.27914,17.03756],[73.27666,17.03634],[73.27592,17.03937],[73.27443,17.03965],[73.2677,17.03839],[73.27007,17.04219],[73.26887,17.04486],[73.26519,17.04771],[73.25821,17.04877],[73.25658,17.0434],[73.25868,17.03176],[73.25537,17.02771],[73.25864,17.01986],[73.26151,17.02164],[73.26569,17.02093],[73.26774,17.02499],[73.27209,17.02416],[73.273,17.0224],[73.27604,17.02345],[73.28405,17.0111],[73.28444,17.00383],[73.28181,16.9985],[73.27915,16.9976],[73.28035,16.99895],[73.27696,17.0015],[73.27402,16.99772],[73.27024,16.99997],[73.26781,16.99747],[73.26726,16.99095],[73.27124,16.98509],[73.2743,16.98369],[73.27618,16.98481],[73.27846,16.99063],[73.27706,16.99211],[73.27928,16.9934],[73.29972,16.98188],[73.29542,16.97893],[73.2965,16.96728],[73.2947,16.96684],[73.29308,16.962],[73.2925,16.95501],[73.2885,16.95175],[73.28462,16.95309],[73.28318,16.95037],[73.28791,16.93691],[73.28754,16.93126],[73.2833,16.9308],[73.28363,16.92469],[73.28725,16.92046],[73.28758,16.91641],[73.28609,16.91481],[73.28729,16.91339],[73.2849,16.91146],[73.28527,16.90818],[73.28073,16.90475],[73.28165,16.89809],[73.27858,16.89304],[73.28795,16.89409],[73.28755,16.89729],[73.29387,16.89844],[73.29831,16.89714],[73.303,16.89141],[73.29636,16.88822],[73.28743,16.8809],[73.2876,16.87492],[73.2938,16.8705],[73.2958,16.86036],[73.29558,16.85792],[73.29495,16.85983],[73.28939,16.85837],[73.29354,16.85603],[73.29389,16.85343],[73.29159,16.85221],[73.29373,16.85209],[73.29419,16.85017],[73.2933,16.84756],[73.28914,16.84429],[73.29194,16.84424],[73.29505,16.83913],[73.29391,16.83668],[73.29766,16.824],[73.29557,16.8209],[73.29635,16.81638],[73.30311,16.80948],[73.31619,16.8061],[73.31914,16.79534],[73.31031,16.7845],[73.30795,16.77135],[73.30444,16.76587],[73.30526,16.7508],[73.3071,16.74795],[73.30555,16.74376],[73.30539,16.73028],[73.30981,16.72639],[73.30995,16.72259],[73.312,16.72238],[73.31255,16.72072],[73.31231,16.71505],[73.31641,16.71283],[73.31696,16.70861],[73.31921,16.70639],[73.31805,16.701],[73.31911,16.69774],[73.32972,16.68739],[73.33305,16.65057],[73.33229,16.64785],[73.32823,16.64569],[73.3262,16.64746],[73.32378,16.64678],[73.32206,16.6442],[73.32302,16.63862],[73.32434,16.63609],[73.32745,16.63711],[73.32925,16.63816],[73.32944,16.64179],[73.33572,16.64047],[73.33911,16.63781],[73.34058,16.63013],[73.34222,16.6293],[73.33992,16.62627],[73.33797,16.62761],[73.33401,16.62629],[73.32971,16.62137],[73.33045,16.61986],[73.33354,16.61863],[73.33745,16.6236],[73.34051,16.62097],[73.3457,16.62073],[73.35215,16.62489],[73.35519,16.61895],[73.35232,16.61593],[73.35413,16.6144],[73.35193,16.6103],[73.35345,16.60776],[73.3478,16.61258],[73.3394,16.60468],[73.33527,16.60535],[73.33526,16.60667],[73.33074,16.60863],[73.32712,16.60748],[73.32546,16.60508],[73.32069,16.60687],[73.31742,16.60167],[73.31994,16.59853],[73.31865,16.59302],[73.32218,16.58974],[73.32191,16.584],[73.33006,16.57747],[73.33333,16.57677],[73.33562,16.57975],[73.33992,16.58054],[73.34302,16.57911],[73.34486,16.57697],[73.34447,16.57118],[73.34627,16.56509],[73.35179,16.56561],[73.35357,16.56442],[73.35556,16.56595],[73.3568,16.55329],[73.35178,16.55658],[73.3465,16.5563],[73.3471,16.55274],[73.34945,16.55115],[73.34423,16.54877],[73.34976,16.5388],[73.34994,16.53125],[73.35875,16.52371],[73.36926,16.51787],[73.389,16.51417],[73.39447,16.51044],[73.40512,16.51108],[73.41057,16.51406],[73.4157,16.51469],[73.42193,16.51288],[73.43392,16.50371],[73.45728,16.49466],[73.4666,16.49368],[73.47439,16.49696],[73.4804,16.50397],[73.48032,16.5067],[73.49297,16.51787],[73.49798,16.52039],[73.5016,16.52055],[73.51054,16.51672],[73.51665,16.51951],[73.51979,16.52428],[73.52543,16.52514],[73.53435,16.51724],[73.54035,16.51422],[73.54415,16.51539],[73.55286,16.52384],[73.56558,16.52969],[73.57876,16.5454],[73.59167,16.54064],[73.60056,16.54446],[73.61211,16.55703],[73.61413,16.56156],[73.61279,16.56656],[73.61552,16.57133],[73.6148,16.5739],[73.61842,16.57537],[73.62208,16.58312],[73.62731,16.58279],[73.62755,16.58018],[73.63248,16.5782],[73.63357,16.57325],[73.63529,16.57213],[73.63342,16.56804],[73.63415,16.56464],[73.63151,16.56041],[73.63235,16.55919],[73.63612,16.56351],[73.64128,16.56067],[73.646,16.56195],[73.65006,16.56729],[73.6485,16.57562],[73.65657,16.57506],[73.66593,16.58123],[73.66132,16.58909],[73.66479,16.5893],[73.67067,16.58407],[73.66897,16.58864],[73.67357,16.59444],[73.67291,16.59733],[73.67555,16.60794],[73.6835,16.61392],[73.68709,16.61843],[73.68693,16.62131],[73.69057,16.62386],[73.69826,16.62521],[73.70008,16.62427],[73.70946,16.60311],[73.71999,16.6076],[73.72401,16.60369],[73.7319,16.608],[73.74181,16.59983],[73.76769,16.60326],[73.76736,16.6098],[73.76577,16.61251],[73.76986,16.62479],[73.76094,16.62956],[73.76068,16.63518],[73.75827,16.63603],[73.75623,16.64081],[73.75354,16.6418],[73.75642,16.64439],[73.76011,16.64158],[73.76098,16.6448],[73.76487,16.64375],[73.76988,16.65888],[73.76834,16.66161],[73.77098,16.66223],[73.77176,16.66521],[73.77653,16.66271],[73.77935,16.66438],[73.78015,16.66174],[73.7841,16.6593],[73.79081,16.65966],[73.79235,16.66337],[73.79576,16.66306],[73.81094,16.65508],[73.81862,16.65573],[73.82323,16.65392],[73.83027,16.64906],[73.83987,16.65313],[73.84906,16.65006],[73.85647,16.6559],[73.85321,16.65893],[73.85681,16.65925],[73.86349,16.66841],[73.86308,16.6706],[73.85029,16.67344],[73.85105,16.6751],[73.85593,16.67669],[73.85958,16.68118],[73.84231,16.69414],[73.83615,16.69401],[73.8253,16.69726],[73.82419,16.70064],[73.82082,16.70079],[73.81991,16.70589],[73.81671,16.70908],[73.81088,16.70823],[73.8179,16.71476],[73.82408,16.71396],[73.82589,16.71522],[73.82947,16.728],[73.83759,16.73649],[73.83483,16.7424],[73.82742,16.74316],[73.83001,16.7504],[73.82747,16.7502],[73.82872,16.754],[73.82406,16.75759],[73.81838,16.76576],[73.81233,16.76898],[73.81171,16.76751],[73.81009,16.76845],[73.80797,16.76635],[73.80226,16.76569],[73.79758,16.76091],[73.79081,16.76263],[73.78614,16.76782],[73.78494,16.77587],[73.7798,16.77941],[73.77418,16.77755],[73.77047,16.77052],[73.76274,16.76895],[73.76084,16.77001],[73.76076,16.77362],[73.75543,16.77685],[73.75647,16.77925],[73.7543,16.78335],[73.75997,16.79156],[73.75885,16.79406],[73.76045,16.80254],[73.75523,16.80593],[73.75033,16.80572],[73.7517,16.81037],[73.73547,16.82246],[73.73298,16.81616],[73.72755,16.81683],[73.72905,16.82081],[73.71142,16.82792],[73.71183,16.83047],[73.71695,16.83671],[73.7238,16.83909],[73.72752,16.8346],[73.73249,16.83716],[73.73782,16.84509],[73.76493,16.82902],[73.76273,16.8347],[73.76634,16.83689],[73.76584,16.84419],[73.76262,16.84734],[73.76403,16.84888],[73.76184,16.8515],[73.76668,16.85468],[73.76419,16.86206],[73.76714,16.86593],[73.76152,16.8726],[73.74667,16.8844],[73.74868,16.89509],[73.74738,16.90426],[73.73964,16.8962],[73.73576,16.90175],[73.73871,16.90738],[73.73653,16.91472],[73.74243,16.91781],[73.74764,16.90517],[73.75407,16.90662],[73.75926,16.90359],[73.76478,16.90982],[73.77052,16.90801],[73.77703,16.91069],[73.77824,16.90912],[73.78043,16.91071],[73.7837,16.90655],[73.78527,16.90788],[73.78837,16.90689],[73.79032,16.92108],[73.79221,16.92328],[73.78776,16.92408],[73.79105,16.93064],[73.79516,16.92992],[73.78995,16.93487],[73.78957,16.93965],[73.77786,16.94738],[73.76687,16.96009],[73.76216,16.96174],[73.76514,16.96827],[73.77212,16.97504],[73.77586,16.97268],[73.78375,16.98594],[73.7824,16.99032],[73.78596,16.99307],[73.79718,16.99267],[73.80923,16.98795],[73.8196,16.9898],[73.82182,16.98799],[73.83122,16.98949],[73.83413,17.00135],[73.82742,17.01165],[73.83156,17.02312],[73.82484,17.03768],[73.83242,17.04812],[73.83397,17.05352],[73.83255,17.05823],[73.81725,17.06551],[73.8036,17.06252],[73.80711,17.08622],[73.79333,17.09928],[73.78998,17.09489],[73.78449,17.09821],[73.77832,17.10835],[73.76867,17.10929],[73.7596,17.12073],[73.74981,17.12949],[73.74474,17.13126],[73.73649,17.12144],[73.72199,17.1275],[73.71678,17.13125],[73.7098,17.14108],[73.69448,17.13889],[73.68931,17.14181],[73.68862,17.1568],[73.70708,17.16348],[73.70867,17.17025],[73.69898,17.17806],[73.69339,17.18025],[73.69592,17.18212],[73.69806,17.18067],[73.70144,17.18749],[73.70258,17.18593],[73.70578,17.18987],[73.7089,17.1977],[73.71306,17.19994],[73.71496,17.20353],[73.71519,17.20922],[73.71056,17.21215],[73.71055,17.21619],[73.7066,17.21975],[73.70562,17.22476],[73.69282,17.23065],[73.69108,17.24347],[73.69448,17.25302],[73.69464,17.26052],[73.68828,17.26772],[73.69127,17.27765],[73.68692,17.28316],[73.68996,17.28439],[73.68981,17.28564],[73.6881,17.29027],[73.6841,17.29009],[73.68054,17.2949],[73.67814,17.29478],[73.6833,17.304],[73.68498,17.31465],[73.6837,17.32187],[73.67914,17.327],[73.67955,17.33059],[73.68258,17.33506],[73.68569,17.34519],[73.68337,17.34869],[73.67385,17.34767],[73.6788,17.34976],[73.69136,17.35938],[73.68664,17.36854],[73.68533,17.36647],[73.68401,17.36684],[73.68026,17.37484],[73.67398,17.37656],[73.66757,17.3724],[73.6581,17.37718],[73.6575,17.37525],[73.64963,17.38429],[73.64538,17.38178],[73.64567,17.38499],[73.64078,17.3912],[73.6443,17.39764],[73.64888,17.39784],[73.65417,17.3874],[73.66006,17.39538],[73.66836,17.39334],[73.67103,17.39709],[73.67078,17.40049],[73.67314,17.40603],[73.68081,17.415],[73.68438,17.41651],[73.68998,17.4222],[73.70167,17.42065],[73.70408,17.42344],[73.70812,17.43383],[73.70336,17.43797],[73.70659,17.44489],[73.70417,17.44767],[73.70422,17.45046],[73.69991,17.45343],[73.70595,17.46592],[73.70351,17.46747],[73.70335,17.47031],[73.70146,17.47125],[73.69891,17.47662],[73.6954,17.47829],[73.69626,17.48343],[73.69374,17.48743],[73.70205,17.48995],[73.70825,17.49416],[73.71024,17.49751],[73.7097,17.49947],[73.70432,17.50484],[73.70749,17.5103],[73.71485,17.51713],[73.7205,17.51757],[73.72097,17.52492],[73.7278,17.52517],[73.74111,17.53417],[73.73852,17.53573],[73.74653,17.55689],[73.73834,17.56286],[73.73211,17.56432],[73.71548,17.57356],[73.71741,17.57922],[73.72344,17.58667],[73.72776,17.58899],[73.72377,17.59941],[73.71276,17.60757],[73.7207,17.61785],[73.71943,17.62159],[73.7155,17.62453],[73.70489,17.62717],[73.69784,17.62768],[73.6951,17.62632],[73.69047,17.62867],[73.69021,17.63166],[73.69892,17.6433],[73.69971,17.64791],[73.69682,17.65159],[73.70138,17.65894],[73.70075,17.66084],[73.69529,17.66311],[73.69725,17.66646],[73.6932,17.66853],[73.69257,17.67363],[73.68087,17.67808],[73.68138,17.68202],[73.68683,17.68573],[73.68044,17.68978],[73.67338,17.6903],[73.66654,17.69337],[73.66279,17.69723],[73.65759,17.69625],[73.65483,17.69971],[73.65423,17.7051],[73.65106,17.70857],[73.63529,17.69806],[73.63449,17.70167],[73.62824,17.70569],[73.62382,17.70629],[73.61555,17.71416],[73.61268,17.71346],[73.60394,17.70446],[73.59333,17.70173],[73.57942,17.70956],[73.58262,17.71414],[73.57277,17.72132],[73.56594,17.72419],[73.57324,17.73158],[73.57148,17.73565],[73.57297,17.74004],[73.57768,17.74374],[73.57832,17.75099],[73.58779,17.76324],[73.59185,17.77296],[73.59158,17.77915],[73.58929,17.78269],[73.58253,17.786],[73.58184,17.78919],[73.58331,17.79073],[73.58606,17.78923],[73.59165,17.79059],[73.59316,17.78946],[73.5942,17.79101],[73.5985,17.7913],[73.60205,17.79503],[73.59636,17.79806],[73.59621,17.80189],[73.59455,17.80331],[73.59362,17.81764],[73.59693,17.82323],[73.58608,17.83034],[73.58444,17.83384],[73.58619,17.8417],[73.59647,17.84619],[73.59726,17.85007],[73.58892,17.85182],[73.58319,17.85862],[73.58123,17.85996],[73.5798,17.85916],[73.57428,17.86518],[73.57476,17.87032],[73.5764,17.87087],[73.57824,17.87519],[73.57724,17.87608],[73.56966,17.8781],[73.55397,17.86539],[73.54976,17.86533],[73.54066,17.87173],[73.53311,17.88311],[73.53266,17.87926],[73.52622,17.8769],[73.52243,17.87205],[73.52222,17.86561],[73.51776,17.86281],[73.51025,17.8522],[73.49973,17.85222],[73.48912,17.86705],[73.47855,17.86518],[73.46119,17.86701],[73.45662,17.85911],[73.45022,17.85576],[73.45044,17.85175],[73.44468,17.85062],[73.43835,17.85934],[73.43925,17.8636],[73.44254,17.86657],[73.44306,17.87064],[73.44234,17.8767],[73.43816,17.87835],[73.4392,17.88245],[73.43681,17.88779],[73.43831,17.89267],[73.43695,17.89522],[73.43707,17.90271],[73.42621,17.90917],[73.42285,17.89695],[73.41887,17.89357],[73.41382,17.89373],[73.41133,17.89033],[73.40765,17.88864],[73.40735,17.88544],[73.405,17.88281],[73.39898,17.88375],[73.39145,17.88099],[73.38737,17.88287],[73.3805,17.8823],[73.37083,17.88789],[73.36883,17.89379],[73.36846,17.90796],[73.37532,17.91194],[73.3759,17.91646],[73.37398,17.92527],[73.3712,17.92788],[73.36912,17.93354],[73.364,17.9336],[73.36075,17.93753],[73.35903,17.94751],[73.36134,17.95443],[73.35589,17.95818],[73.35061,17.95912],[73.34078,17.9723],[73.34265,17.97473],[73.3422,17.98096],[73.34808,17.98971],[73.35579,17.99287],[73.35922,18.00547],[73.35425,18.01521],[73.34856,18.01799],[73.3459,18.02583],[73.34337,18.02368],[73.34015,18.01594],[73.3343,18.01159],[73.32679,18.02523],[73.31748,18.02586],[73.31661,18.02864],[73.31503,18.02885],[73.30685,18.02239],[73.30057,18.02427],[73.29008,18.03616],[73.29063,18.05102],[73.29461,18.05836],[73.28686,18.0713],[73.28162,18.06814],[73.27559,18.06707],[73.26145,18.07078],[73.25419,18.06313],[73.24452,18.06371],[73.24042,18.06008],[73.23019,18.05648],[73.21763,18.05777],[73.21115,18.06183]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"493","area_level":"District","area_name":"Sangli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.90903,17.6209],[74.90904,17.62985],[74.90066,17.6264],[74.89055,17.61767],[74.88804,17.61112],[74.88503,17.60791],[74.87962,17.60428],[74.87999,17.5946],[74.88172,17.59039],[74.87918,17.58931],[74.88144,17.58344],[74.8808,17.5779],[74.87635,17.5699],[74.87321,17.56931],[74.87133,17.56527],[74.86367,17.56128],[74.85655,17.55975],[74.85716,17.54875],[74.86357,17.52814],[74.86068,17.52737],[74.86,17.52552],[74.8604,17.51162],[74.85546,17.50591],[74.8491,17.50295],[74.8434,17.49367],[74.83432,17.48937],[74.82788,17.4776],[74.82439,17.47517],[74.82175,17.46736],[74.81671,17.46767],[74.81487,17.46249],[74.80694,17.45283],[74.77655,17.46392],[74.75517,17.47616],[74.74163,17.47699],[74.73135,17.47965],[74.72698,17.47758],[74.72524,17.47406],[74.72535,17.47864],[74.7168,17.48522],[74.69558,17.48899],[74.68468,17.48786],[74.68662,17.48346],[74.69462,17.47828],[74.69489,17.47564],[74.69316,17.47462],[74.69627,17.46861],[74.69377,17.46809],[74.69604,17.43882],[74.69193,17.43565],[74.69259,17.42955],[74.68404,17.42543],[74.68252,17.42304],[74.68361,17.4183],[74.68679,17.41567],[74.68678,17.40905],[74.68949,17.40835],[74.68742,17.4065],[74.69246,17.40164],[74.68835,17.40218],[74.68492,17.39413],[74.68086,17.39262],[74.66973,17.38951],[74.66699,17.39066],[74.66186,17.39723],[74.65293,17.39978],[74.64275,17.40069],[74.63766,17.39729],[74.63135,17.40123],[74.62249,17.39935],[74.62441,17.40031],[74.6253,17.40437],[74.62406,17.4139],[74.61836,17.42055],[74.61442,17.43086],[74.60637,17.43875],[74.6055,17.44595],[74.59508,17.44909],[74.59211,17.449],[74.59043,17.44611],[74.58842,17.44622],[74.588,17.43684],[74.5846,17.43327],[74.58353,17.42794],[74.58371,17.41364],[74.57208,17.41517],[74.56998,17.41786],[74.56433,17.41907],[74.55618,17.4175],[74.5506,17.42106],[74.54677,17.42],[74.54507,17.42238],[74.52749,17.41918],[74.52713,17.41499],[74.52244,17.41272],[74.52169,17.40583],[74.51768,17.40419],[74.50449,17.39249],[74.50351,17.38905],[74.49812,17.38561],[74.49795,17.38344],[74.47511,17.38811],[74.46832,17.39392],[74.45482,17.3909],[74.43149,17.39072],[74.42154,17.397],[74.41735,17.40193],[74.40459,17.40692],[74.39306,17.40915],[74.34395,17.41059],[74.34533,17.41369],[74.34431,17.41972],[74.32921,17.41915],[74.30962,17.42186],[74.29644,17.42585],[74.29233,17.42502],[74.29118,17.42147],[74.28634,17.41842],[74.28393,17.4194],[74.27221,17.39652],[74.26043,17.38565],[74.26206,17.37731],[74.25666,17.37035],[74.25862,17.36888],[74.25952,17.3631],[74.2571,17.36136],[74.25639,17.36449],[74.25429,17.36334],[74.25584,17.35761],[74.2603,17.35499],[74.2618,17.35648],[74.27902,17.36059],[74.28666,17.35861],[74.28812,17.35546],[74.28754,17.35181],[74.27916,17.34143],[74.27903,17.33655],[74.29037,17.32676],[74.2901,17.32542],[74.28722,17.32608],[74.29379,17.31277],[74.29103,17.31104],[74.26152,17.30665],[74.26107,17.29992],[74.25682,17.29656],[74.25622,17.29339],[74.26309,17.28944],[74.25806,17.2883],[74.25709,17.28533],[74.26077,17.27821],[74.25956,17.27277],[74.26494,17.26503],[74.26522,17.25745],[74.27514,17.25292],[74.27689,17.24938],[74.27456,17.24679],[74.28034,17.24942],[74.28226,17.24736],[74.2854,17.24872],[74.28782,17.24744],[74.28459,17.23398],[74.28242,17.23195],[74.27981,17.2327],[74.26606,17.22231],[74.26876,17.21406],[74.27655,17.21321],[74.28392,17.20794],[74.28535,17.2059],[74.28501,17.20053],[74.28712,17.19779],[74.28669,17.19505],[74.28227,17.19133],[74.28178,17.18602],[74.27796,17.1787],[74.27605,17.18083],[74.27748,17.18582],[74.26637,17.18739],[74.26308,17.18714],[74.26433,17.18499],[74.25659,17.18615],[74.25474,17.18582],[74.25414,17.18357],[74.24795,17.18294],[74.24831,17.17934],[74.25249,17.17631],[74.25304,17.17093],[74.24651,17.16932],[74.24725,17.16046],[74.2386,17.16072],[74.23767,17.15729],[74.2329,17.15728],[74.23275,17.15583],[74.23375,17.15388],[74.23749,17.15516],[74.23747,17.15344],[74.23888,17.15325],[74.23891,17.15478],[74.24224,17.15515],[74.24217,17.15376],[74.24437,17.15357],[74.24447,17.15509],[74.24702,17.15488],[74.24691,17.14154],[74.22113,17.13978],[74.19914,17.15188],[74.19303,17.14956],[74.1774,17.14917],[74.17734,17.14594],[74.17474,17.14251],[74.16282,17.14102],[74.16131,17.13078],[74.15922,17.12842],[74.14206,17.11931],[74.1342,17.11872],[74.12899,17.11454],[74.11953,17.12224],[74.11363,17.12242],[74.11116,17.12394],[74.10738,17.12039],[74.10038,17.11721],[74.09942,17.11538],[74.1009,17.11267],[74.09803,17.10753],[74.09903,17.10544],[74.09703,17.10475],[74.09635,17.10189],[74.09341,17.10084],[74.07782,17.10203],[74.0743,17.09783],[74.06812,17.10089],[74.05127,17.10519],[74.04873,17.10006],[74.04913,17.09704],[74.04425,17.09976],[74.03247,17.09018],[74.03042,17.09038],[74.02901,17.09527],[74.01712,17.10181],[74.00856,17.11025],[74.00266,17.11342],[73.98387,17.1169],[73.98549,17.12218],[73.98463,17.12603],[73.97976,17.12916],[73.97939,17.13194],[73.97428,17.13098],[73.95649,17.13531],[73.94068,17.13341],[73.93797,17.1343],[73.91824,17.14491],[73.91761,17.14855],[73.91,17.15131],[73.90461,17.15501],[73.90126,17.15955],[73.884,17.1553],[73.88137,17.16212],[73.88294,17.1661],[73.88194,17.17131],[73.87684,17.17647],[73.87816,17.17722],[73.87504,17.17925],[73.87002,17.19196],[73.8505,17.19881],[73.84362,17.21396],[73.83467,17.22603],[73.81754,17.23344],[73.80913,17.23185],[73.7987,17.24494],[73.79601,17.24368],[73.78445,17.24522],[73.76561,17.25096],[73.76555,17.2543],[73.7594,17.25512],[73.75534,17.26777],[73.74536,17.27856],[73.73986,17.27651],[73.73437,17.27706],[73.72586,17.27042],[73.71989,17.26315],[73.72038,17.26155],[73.71493,17.26086],[73.71375,17.26207],[73.70722,17.26016],[73.70136,17.26489],[73.69972,17.26273],[73.69469,17.26162],[73.69448,17.25302],[73.69108,17.24347],[73.69282,17.23065],[73.70562,17.22476],[73.7066,17.21975],[73.71055,17.21619],[73.71056,17.21215],[73.71519,17.20922],[73.71496,17.20353],[73.71306,17.19994],[73.7089,17.1977],[73.70578,17.18987],[73.70258,17.18593],[73.70144,17.18749],[73.69806,17.18067],[73.69592,17.18212],[73.69339,17.18025],[73.69898,17.17806],[73.70868,17.1706],[73.71318,17.17369],[73.71997,17.1691],[73.72912,17.16902],[73.73749,17.17335],[73.73748,17.1757],[73.74257,17.17648],[73.74352,17.16434],[73.74472,17.16361],[73.74236,17.16007],[73.74724,17.15509],[73.74959,17.15565],[73.75176,17.15339],[73.75961,17.1538],[73.77319,17.14963],[73.7771,17.15407],[73.77075,17.16352],[73.76781,17.17433],[73.76883,17.17673],[73.77348,17.17753],[73.77587,17.18208],[73.79238,17.17826],[73.79919,17.17124],[73.8034,17.17019],[73.81136,17.17185],[73.81376,17.16987],[73.82022,17.17026],[73.83893,17.15647],[73.8465,17.15423],[73.85337,17.14881],[73.8556,17.14011],[73.85813,17.1373],[73.86253,17.13757],[73.8641,17.1335],[73.86884,17.13296],[73.8712,17.12994],[73.87553,17.12854],[73.87539,17.12626],[73.87117,17.12338],[73.87347,17.11707],[73.87851,17.11515],[73.88174,17.11114],[73.88905,17.10632],[73.89564,17.10577],[73.89989,17.10239],[73.90355,17.09726],[73.90276,17.0919],[73.90425,17.08478],[73.90895,17.07852],[73.91466,17.07597],[73.91382,17.07143],[73.91576,17.07081],[73.92064,17.07502],[73.93044,17.07482],[73.93378,17.07091],[73.93822,17.06901],[73.93808,17.06544],[73.94026,17.06295],[73.9469,17.0635],[73.94858,17.06167],[73.94811,17.05871],[73.95792,17.0575],[73.9598,17.05548],[73.96036,17.05112],[73.96511,17.04832],[73.97367,17.03573],[73.97819,17.03645],[73.97989,17.02131],[73.97888,17.00961],[73.97704,17.00774],[73.97079,17.00869],[73.9691,17.00694],[73.97214,17.00171],[73.9723,16.99297],[73.97505,16.98862],[73.98475,16.98668],[73.98823,16.98953],[73.98913,16.99563],[73.99081,16.99717],[73.99641,16.99583],[73.99854,16.99145],[74.0047,16.99292],[74.01037,16.98787],[74.01887,16.98722],[74.02335,16.98515],[74.02299,16.97592],[74.02074,16.96997],[74.02147,16.96745],[74.02532,16.96625],[74.02619,16.96399],[74.02534,16.96163],[74.0208,16.96222],[74.01981,16.95937],[74.02267,16.95541],[74.02712,16.95367],[74.02813,16.95124],[74.02296,16.9423],[74.02685,16.93993],[74.03109,16.94121],[74.03715,16.9383],[74.03833,16.93551],[74.03719,16.93076],[74.03945,16.92793],[74.03842,16.92388],[74.04158,16.92178],[74.04901,16.92159],[74.05317,16.91433],[74.06472,16.91018],[74.06571,16.90238],[74.07213,16.90314],[74.07679,16.90665],[74.08036,16.9072],[74.09147,16.91826],[74.10053,16.9102],[74.1066,16.90964],[74.12073,16.91318],[74.12362,16.91126],[74.123,16.9053],[74.12515,16.90426],[74.12447,16.90297],[74.13509,16.8881],[74.1393,16.88731],[74.14559,16.88273],[74.15662,16.88987],[74.16362,16.89866],[74.1752,16.90254],[74.18162,16.90073],[74.18729,16.89571],[74.19184,16.89389],[74.20048,16.8951],[74.20973,16.89302],[74.21252,16.89502],[74.21627,16.91165],[74.22317,16.91369],[74.22475,16.9133],[74.23086,16.90333],[74.23219,16.89038],[74.23641,16.88612],[74.24695,16.88642],[74.2488,16.88683],[74.25241,16.89347],[74.25451,16.90289],[74.25723,16.90651],[74.26281,16.90949],[74.268,16.90966],[74.27335,16.91428],[74.28182,16.91852],[74.28375,16.91745],[74.29099,16.89962],[74.2951,16.89663],[74.29555,16.89464],[74.30441,16.89052],[74.31185,16.89243],[74.31438,16.89132],[74.32309,16.88339],[74.32578,16.87784],[74.33141,16.87755],[74.33709,16.8813],[74.34336,16.87699],[74.34555,16.87356],[74.3542,16.87278],[74.35562,16.8712],[74.35537,16.86253],[74.36203,16.85344],[74.368,16.85735],[74.37853,16.86868],[74.38806,16.87019],[74.39038,16.87482],[74.40153,16.88301],[74.40312,16.88176],[74.40222,16.87853],[74.4036,16.87641],[74.41294,16.87963],[74.41568,16.87767],[74.41441,16.8649],[74.41042,16.86192],[74.40406,16.85138],[74.40666,16.84789],[74.41464,16.84395],[74.42209,16.84385],[74.42826,16.84796],[74.43166,16.8478],[74.43879,16.85161],[74.44559,16.85135],[74.45111,16.85407],[74.45843,16.85297],[74.4656,16.85852],[74.46821,16.86642],[74.47256,16.86848],[74.48247,16.8657],[74.48638,16.8603],[74.49253,16.85979],[74.49503,16.85781],[74.49673,16.85505],[74.49403,16.84717],[74.49542,16.83512],[74.49713,16.83041],[74.50057,16.82963],[74.50227,16.83388],[74.51456,16.84086],[74.51295,16.85135],[74.51694,16.85814],[74.51793,16.85239],[74.52216,16.85174],[74.52871,16.8458],[74.53458,16.84618],[74.55443,16.8246],[74.55737,16.81933],[74.5579,16.81056],[74.5606,16.80622],[74.57368,16.80278],[74.59197,16.80195],[74.60466,16.7994],[74.61361,16.79368],[74.62943,16.78795],[74.64154,16.77279],[74.64318,16.76631],[74.64258,16.75677],[74.64583,16.75236],[74.66331,16.74931],[74.67598,16.74374],[74.69857,16.73717],[74.70046,16.73055],[74.69223,16.71533],[74.70569,16.71491],[74.72718,16.71684],[74.72732,16.71909],[74.73004,16.71875],[74.73035,16.72013],[74.73209,16.71832],[74.73698,16.72354],[74.75276,16.73086],[74.75299,16.73309],[74.76035,16.74127],[74.76505,16.74186],[74.76937,16.74481],[74.77197,16.75068],[74.78337,16.75132],[74.79575,16.74775],[74.79874,16.75366],[74.84451,16.76182],[74.84982,16.77276],[74.86568,16.76336],[74.86936,16.77407],[74.88987,16.77126],[74.92014,16.7725],[74.91082,16.78954],[74.91022,16.81659],[74.90873,16.8237],[74.91029,16.83514],[74.90761,16.85017],[74.90424,16.85939],[74.90152,16.86255],[74.91097,16.86404],[74.9265,16.86354],[74.92402,16.86713],[74.92542,16.86772],[74.92555,16.87203],[74.93522,16.87107],[74.93592,16.87924],[74.94438,16.8827],[74.94458,16.88116],[74.96036,16.88095],[74.96358,16.90971],[74.96364,16.9111],[74.96227,16.91058],[74.95884,16.90585],[74.95535,16.90534],[74.95486,16.91017],[74.94435,16.91084],[74.93827,16.91729],[74.93266,16.91891],[74.93422,16.92423],[74.92178,16.92986],[74.92316,16.93931],[74.92654,16.93932],[74.93056,16.94167],[74.93171,16.94476],[74.93671,16.9442],[74.94117,16.94078],[74.9476,16.93935],[74.95042,16.93295],[74.95826,16.92824],[74.96454,16.92678],[74.96568,16.92986],[74.9605,16.93348],[74.96016,16.93726],[74.96064,16.93995],[74.96751,16.94161],[74.96436,16.94763],[74.96826,16.95016],[74.99291,16.95207],[75.00035,16.94985],[75.0045,16.94627],[75.02659,16.94414],[75.02477,16.93964],[75.02523,16.928],[75.0271,16.92945],[75.02643,16.93192],[75.02906,16.93149],[75.0336,16.93372],[75.03577,16.93284],[75.03787,16.93571],[75.04066,16.93644],[75.04139,16.94006],[75.04454,16.94173],[75.06204,16.94152],[75.07259,16.94665],[75.07435,16.95002],[75.07812,16.94883],[75.08508,16.95157],[75.08933,16.95158],[75.09214,16.94011],[75.0918,16.92605],[75.09631,16.91374],[75.11748,16.91344],[75.12032,16.90253],[75.13484,16.8947],[75.13246,16.88942],[75.13648,16.87449],[75.15555,16.86856],[75.17658,16.86771],[75.18899,16.87528],[75.18185,16.8434],[75.2142,16.8417],[75.22764,16.84318],[75.23766,16.86794],[75.26472,16.8628],[75.27299,16.8692],[75.28203,16.88029],[75.28994,16.90403],[75.2829,16.90972],[75.27938,16.92333],[75.281,16.95305],[75.2796,16.95656],[75.32555,16.95582],[75.35005,16.95782],[75.35853,16.96286],[75.35839,16.9649],[75.36113,16.96557],[75.36854,16.97195],[75.39214,16.98009],[75.41151,16.97425],[75.42788,16.96649],[75.43536,16.97345],[75.4416,16.98223],[75.46555,16.98837],[75.46618,16.98131],[75.46889,16.97954],[75.47856,16.97857],[75.48324,16.97599],[75.48917,16.95911],[75.48908,16.94442],[75.50736,16.95083],[75.50966,16.95025],[75.52931,16.9694],[75.53917,16.96548],[75.56413,16.96791],[75.56765,16.96575],[75.56609,16.98138],[75.56722,17.00905],[75.5731,17.00961],[75.60689,17.00457],[75.60613,16.99436],[75.60824,16.98165],[75.60786,16.971],[75.63393,16.97026],[75.63693,16.96854],[75.63821,16.95775],[75.64476,16.95408],[75.64668,16.95469],[75.64893,16.95899],[75.6554,16.96153],[75.66991,16.96182],[75.67513,16.96555],[75.67708,16.969],[75.67255,16.97013],[75.67184,16.97593],[75.66882,16.97983],[75.66608,16.97977],[75.66572,16.99375],[75.66723,17.00576],[75.66909,17.00957],[75.66969,17.03816],[75.64999,17.03224],[75.641,17.03758],[75.65031,17.05726],[75.6604,17.0645],[75.67672,17.06542],[75.67874,17.07715],[75.67337,17.0912],[75.67579,17.09529],[75.67234,17.1014],[75.67229,17.116],[75.65035,17.11569],[75.64953,17.13438],[75.64757,17.13451],[75.6452,17.14421],[75.62826,17.16269],[75.62538,17.174],[75.62723,17.18316],[75.62886,17.1834],[75.62843,17.18866],[75.63993,17.18887],[75.63985,17.19432],[75.64259,17.19765],[75.65539,17.20553],[75.66191,17.21458],[75.65856,17.23867],[75.65772,17.26321],[75.65417,17.27382],[75.62785,17.27434],[75.63022,17.28084],[75.62547,17.28532],[75.62241,17.2951],[75.60384,17.30539],[75.593,17.30329],[75.57959,17.29273],[75.56589,17.28703],[75.55559,17.28072],[75.54753,17.27954],[75.54237,17.27693],[75.53652,17.26851],[75.53119,17.2643],[75.53221,17.26059],[75.52514,17.2569],[75.51891,17.24831],[75.51545,17.24036],[75.50427,17.23958],[75.46721,17.24443],[75.46579,17.25184],[75.44431,17.25479],[75.43491,17.26437],[75.4285,17.26799],[75.42091,17.26588],[75.40833,17.23934],[75.40957,17.22975],[75.40223,17.21151],[75.40885,17.1908],[75.40632,17.19062],[75.40676,17.18472],[75.39774,17.18663],[75.38909,17.19065],[75.37491,17.19172],[75.36995,17.1905],[75.37055,17.21719],[75.36565,17.23619],[75.35109,17.23757],[75.34427,17.2367],[75.33478,17.23955],[75.33024,17.2181],[75.31702,17.22042],[75.28718,17.21566],[75.28277,17.20701],[75.28283,17.19588],[75.29337,17.18352],[75.29701,17.18216],[75.29989,17.1787],[75.30459,17.16937],[75.3021,17.16567],[75.30068,17.15594],[75.29623,17.14598],[75.29057,17.14573],[75.28208,17.1485],[75.27027,17.14838],[75.26893,17.16717],[75.26995,17.17957],[75.26632,17.17909],[75.26825,17.18334],[75.25829,17.18306],[75.24708,17.17874],[75.23539,17.17875],[75.23003,17.17896],[75.22899,17.18115],[75.22224,17.18365],[75.2163,17.19535],[75.21684,17.20467],[75.22015,17.20888],[75.22763,17.2136],[75.23191,17.21282],[75.23844,17.21569],[75.24019,17.21823],[75.23874,17.22644],[75.23996,17.22881],[75.23935,17.23984],[75.24729,17.25546],[75.24468,17.25639],[75.22527,17.25436],[75.21956,17.25673],[75.2149,17.26091],[75.20384,17.26404],[75.20451,17.27036],[75.19365,17.26821],[75.19212,17.25836],[75.1891,17.25481],[75.18997,17.25097],[75.1824,17.24206],[75.17973,17.2357],[75.17657,17.24016],[75.16417,17.24011],[75.14298,17.24401],[75.13373,17.24064],[75.12838,17.24341],[75.12476,17.24344],[75.11637,17.24207],[75.11419,17.23966],[75.11277,17.24287],[75.11147,17.24179],[75.09918,17.24405],[75.09855,17.24581],[75.10002,17.24713],[75.09673,17.24916],[75.09481,17.24814],[75.09378,17.25161],[75.0796,17.2476],[75.07636,17.24095],[75.07514,17.23397],[75.07877,17.22521],[75.07771,17.22159],[75.05459,17.22458],[75.01617,17.2247],[75.00881,17.20928],[74.98885,17.20413],[74.98514,17.20486],[74.98189,17.20156],[74.9817,17.19772],[74.97922,17.1939],[74.97671,17.19286],[74.96402,17.19513],[74.96496,17.19804],[74.95907,17.19881],[74.95829,17.20136],[74.95627,17.19914],[74.95351,17.19881],[74.95238,17.20287],[74.94789,17.20199],[74.94363,17.2047],[74.94755,17.20123],[74.94727,17.19701],[74.94188,17.19881],[74.93956,17.19589],[74.94109,17.19432],[74.93967,17.19229],[74.94194,17.19126],[74.9439,17.19441],[74.94596,17.1893],[74.94959,17.19293],[74.95191,17.1858],[74.94647,17.18497],[74.95001,17.17388],[74.94098,17.16905],[74.93479,17.17001],[74.92959,17.16755],[74.92331,17.16766],[74.92092,17.16591],[74.91914,17.16689],[74.91861,17.17369],[74.91145,17.17292],[74.90897,17.17515],[74.90553,17.17498],[74.90509,17.17749],[74.90327,17.17602],[74.90039,17.17682],[74.89786,17.18095],[74.90027,17.18251],[74.89943,17.18396],[74.89549,17.17853],[74.89559,17.17637],[74.89195,17.18041],[74.88653,17.18126],[74.89355,17.1833],[74.8939,17.1846],[74.88604,17.18979],[74.88974,17.19164],[74.89476,17.19115],[74.89454,17.19527],[74.88574,17.1958],[74.87997,17.18869],[74.8765,17.19103],[74.87782,17.19206],[74.87672,17.19412],[74.87459,17.1945],[74.87127,17.19017],[74.87098,17.19789],[74.86249,17.19645],[74.86717,17.20286],[74.86939,17.20242],[74.87107,17.20887],[74.86882,17.21009],[74.86753,17.20514],[74.86506,17.20549],[74.8648,17.20792],[74.86297,17.20703],[74.86218,17.20828],[74.86519,17.21044],[74.86246,17.21129],[74.8581,17.20479],[74.85412,17.20285],[74.85836,17.20826],[74.85926,17.21106],[74.85735,17.21169],[74.85431,17.20764],[74.84833,17.2037],[74.85007,17.20768],[74.8533,17.20889],[74.85734,17.21542],[74.86377,17.2182],[74.86596,17.21632],[74.86708,17.21765],[74.87706,17.2121],[74.87683,17.21431],[74.87467,17.21573],[74.87629,17.21769],[74.87233,17.21989],[74.87778,17.22197],[74.88243,17.21824],[74.88522,17.2208],[74.88555,17.23516],[74.89159,17.23484],[74.89447,17.23661],[74.89273,17.23972],[74.89806,17.24153],[74.89951,17.26367],[74.90902,17.27597],[74.91057,17.27718],[74.93524,17.27552],[74.93638,17.27616],[74.93668,17.28539],[74.95977,17.29309],[74.97044,17.32692],[74.96749,17.33078],[74.96674,17.33887],[74.96797,17.34142],[74.98336,17.35549],[75.00832,17.36821],[75.0062,17.37848],[75.00146,17.38918],[74.99792,17.39263],[74.99443,17.39262],[74.99782,17.40406],[74.9995,17.4042],[74.99777,17.40664],[75.00036,17.40882],[75.00311,17.40877],[75.00474,17.41348],[75.02326,17.40794],[75.02428,17.41097],[75.03514,17.41808],[75.03259,17.44495],[75.03879,17.45773],[75.04179,17.47011],[75.03807,17.48896],[75.03173,17.49569],[75.02712,17.49526],[75.01819,17.48887],[74.99007,17.47569],[74.98026,17.46579],[74.9734,17.46613],[74.96869,17.47137],[74.96956,17.4756],[74.96664,17.47876],[74.9657,17.48479],[74.96253,17.48739],[74.96058,17.492],[74.94785,17.49844],[74.94425,17.50256],[74.94473,17.50501],[74.94309,17.5074],[74.93679,17.51032],[74.94315,17.52189],[74.94855,17.52068],[74.95897,17.52233],[74.96981,17.53141],[74.98181,17.53846],[74.9841,17.53821],[74.98512,17.54489],[74.9743,17.55135],[74.96247,17.56207],[74.96076,17.56895],[74.96301,17.57747],[74.96186,17.59146],[74.95453,17.58986],[74.95308,17.58785],[74.94435,17.59079],[74.9348,17.58369],[74.92048,17.5768],[74.91544,17.58003],[74.9149,17.5931],[74.91745,17.5982],[74.91492,17.60146],[74.91669,17.60215],[74.91874,17.61251],[74.92372,17.61928],[74.91913,17.61847],[74.91658,17.62181],[74.90903,17.6209]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"494","area_level":"District","area_name":"Satara","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.8563,18.17728],[73.85271,18.17816],[73.85126,18.17777],[73.84952,18.17694],[73.84733,18.17563],[73.84714,18.17498],[73.84751,18.17312],[73.84773,18.16993],[73.84704,18.1688],[73.84793,18.16812],[73.84905,18.16772],[73.84981,18.16752],[73.85065,18.1677],[73.85082,18.16722],[73.85228,18.16615],[73.85278,18.16548],[73.8541,18.16536],[73.85542,18.16472],[73.8558,18.16429],[73.85838,18.16263],[73.86064,18.1642],[73.86318,18.16561],[73.86373,18.16762],[73.86359,18.16777],[73.86406,18.16865],[73.8649,18.17122],[73.86673,18.17547],[73.86654,18.17573],[73.86413,18.1758],[73.86101,18.17476],[73.8563,18.17728]]],[[[73.8974,18.17541],[73.89664,18.18004],[73.89366,18.18267],[73.88289,18.17271],[73.87321,18.17467],[73.87491,18.1732],[73.87283,18.16637],[73.87419,18.1645],[73.87801,18.16374],[73.88864,18.15419],[73.89053,18.14787],[73.896,18.13949],[73.90168,18.13694],[73.90155,18.1288],[73.89727,18.12537],[73.89173,18.12547],[73.88772,18.11626],[73.87732,18.11545],[73.86077,18.11959],[73.86321,18.1129],[73.86622,18.10974],[73.86734,18.10471],[73.87412,18.09498],[73.87351,18.09323],[73.88016,18.08655],[73.86927,18.07549],[73.868,18.07035],[73.8714,18.06683],[73.87014,18.06384],[73.87159,18.05535],[73.86944,18.0515],[73.87018,18.04799],[73.86435,18.04676],[73.86559,18.04321],[73.85869,18.03115],[73.8543,18.03033],[73.84604,18.03983],[73.84444,18.03899],[73.8442,18.03471],[73.84055,18.031],[73.83572,18.032],[73.8289,18.02942],[73.82422,18.03019],[73.82343,18.03432],[73.81355,18.03511],[73.81336,18.03799],[73.80863,18.03163],[73.80512,18.03074],[73.7995,18.02418],[73.79524,18.02412],[73.79265,18.02057],[73.7824,18.0263],[73.7774,18.02494],[73.77533,18.02786],[73.77038,18.02501],[73.76647,18.02507],[73.76599,18.02344],[73.76137,18.02719],[73.75567,18.02815],[73.75365,18.03244],[73.75619,18.03862],[73.73758,18.03698],[73.72023,18.04278],[73.70941,18.04257],[73.70229,18.04435],[73.69379,18.03909],[73.67934,18.03323],[73.66629,18.02474],[73.6632,18.02508],[73.65848,18.02905],[73.65044,18.02215],[73.65635,18.01572],[73.65684,18.0109],[73.65054,18.00553],[73.64954,18.00671],[73.64242,18.00155],[73.63787,17.99215],[73.63422,17.99326],[73.63159,17.99222],[73.63015,17.98924],[73.62737,17.98868],[73.62669,17.98533],[73.63767,17.98022],[73.63719,17.97867],[73.63931,17.97622],[73.63857,17.9717],[73.61756,17.95805],[73.61566,17.953],[73.61072,17.94777],[73.59762,17.94034],[73.59039,17.93965],[73.58427,17.9473],[73.58316,17.94803],[73.58126,17.946],[73.57922,17.94703],[73.57607,17.94109],[73.57784,17.93404],[73.56481,17.92133],[73.56339,17.91704],[73.55191,17.90917],[73.54747,17.90944],[73.54288,17.90597],[73.54033,17.90689],[73.53251,17.89948],[73.53487,17.89683],[73.53534,17.89238],[73.55709,17.89488],[73.56168,17.89301],[73.56441,17.88611],[73.57077,17.87819],[73.57824,17.87519],[73.5764,17.87087],[73.57476,17.87032],[73.57428,17.86518],[73.5798,17.85916],[73.58123,17.85996],[73.58319,17.85862],[73.58892,17.85182],[73.59726,17.85007],[73.59647,17.84619],[73.58619,17.8417],[73.58444,17.83384],[73.58608,17.83034],[73.59693,17.82323],[73.59362,17.81764],[73.59455,17.80331],[73.59621,17.80189],[73.59636,17.79806],[73.60205,17.79503],[73.5985,17.7913],[73.5942,17.79101],[73.59316,17.78946],[73.59165,17.79059],[73.58606,17.78923],[73.58331,17.79073],[73.58184,17.78919],[73.58253,17.786],[73.58929,17.78269],[73.59158,17.77915],[73.59185,17.77296],[73.58779,17.76324],[73.57832,17.75099],[73.57768,17.74374],[73.57297,17.74004],[73.57148,17.73565],[73.57324,17.73158],[73.56594,17.72419],[73.57277,17.72132],[73.58262,17.71414],[73.57942,17.70956],[73.59333,17.70173],[73.60394,17.70446],[73.61268,17.71346],[73.61555,17.71416],[73.62382,17.70629],[73.62824,17.70569],[73.63449,17.70167],[73.63529,17.69806],[73.65106,17.70857],[73.65423,17.7051],[73.65483,17.69971],[73.65759,17.69625],[73.66279,17.69723],[73.66654,17.69337],[73.67338,17.6903],[73.68044,17.68978],[73.68683,17.68573],[73.68138,17.68202],[73.68087,17.67808],[73.69257,17.67363],[73.6932,17.66853],[73.69725,17.66646],[73.69529,17.66311],[73.70075,17.66084],[73.70138,17.65894],[73.69682,17.65159],[73.69971,17.64791],[73.69892,17.6433],[73.69021,17.63166],[73.69047,17.62867],[73.6951,17.62632],[73.69784,17.62768],[73.70489,17.62717],[73.7155,17.62453],[73.71943,17.62159],[73.7207,17.61785],[73.71276,17.60757],[73.72377,17.59941],[73.72776,17.58899],[73.72344,17.58667],[73.71741,17.57922],[73.71548,17.57356],[73.73211,17.56432],[73.73834,17.56286],[73.74653,17.55689],[73.73852,17.53573],[73.74111,17.53417],[73.7278,17.52517],[73.72097,17.52492],[73.7205,17.51757],[73.71485,17.51713],[73.70749,17.5103],[73.70432,17.50484],[73.7097,17.49947],[73.71024,17.49751],[73.70825,17.49416],[73.70205,17.48995],[73.69374,17.48743],[73.69626,17.48343],[73.6954,17.47829],[73.69891,17.47662],[73.70146,17.47125],[73.70335,17.47031],[73.70351,17.46747],[73.70595,17.46592],[73.69991,17.45343],[73.70422,17.45046],[73.70417,17.44767],[73.70659,17.44489],[73.70336,17.43797],[73.70812,17.43383],[73.70408,17.42344],[73.70167,17.42065],[73.68998,17.4222],[73.68438,17.41651],[73.68081,17.415],[73.67314,17.40603],[73.67078,17.40049],[73.67103,17.39709],[73.66836,17.39334],[73.66006,17.39538],[73.65417,17.3874],[73.64888,17.39784],[73.6443,17.39764],[73.64078,17.3912],[73.64567,17.38499],[73.64538,17.38178],[73.64963,17.38429],[73.6575,17.37525],[73.6581,17.37718],[73.66757,17.3724],[73.67398,17.37656],[73.68026,17.37484],[73.68401,17.36684],[73.68533,17.36647],[73.68664,17.36854],[73.69136,17.35938],[73.6788,17.34976],[73.67385,17.34767],[73.68337,17.34869],[73.68569,17.34519],[73.68258,17.33506],[73.67955,17.33059],[73.67914,17.327],[73.6837,17.32187],[73.68498,17.31465],[73.6833,17.304],[73.67814,17.29478],[73.68054,17.2949],[73.6841,17.29009],[73.6881,17.29027],[73.68996,17.28439],[73.68692,17.28316],[73.69127,17.27765],[73.68828,17.26772],[73.69464,17.26052],[73.70136,17.26489],[73.70722,17.26016],[73.71375,17.26207],[73.71493,17.26086],[73.72038,17.26155],[73.71989,17.26315],[73.72586,17.27042],[73.73437,17.27706],[73.73986,17.27651],[73.74536,17.27856],[73.75534,17.26777],[73.7594,17.25512],[73.76555,17.2543],[73.76561,17.25096],[73.78445,17.24522],[73.79601,17.24368],[73.7987,17.24494],[73.80913,17.23185],[73.81754,17.23344],[73.83467,17.22603],[73.84362,17.21396],[73.8505,17.19881],[73.87002,17.19196],[73.87504,17.17925],[73.87816,17.17722],[73.87684,17.17647],[73.88194,17.17131],[73.88294,17.1661],[73.88137,17.16212],[73.88412,17.15522],[73.90126,17.15955],[73.90461,17.15501],[73.91,17.15131],[73.91761,17.14855],[73.91824,17.14491],[73.93797,17.1343],[73.94068,17.13341],[73.95649,17.13531],[73.97428,17.13098],[73.97939,17.13194],[73.97976,17.12916],[73.98463,17.12603],[73.98549,17.12218],[73.98387,17.1169],[74.00266,17.11342],[74.00856,17.11025],[74.01712,17.10181],[74.02901,17.09527],[74.03042,17.09038],[74.03247,17.09018],[74.04425,17.09976],[74.04913,17.09704],[74.04873,17.10006],[74.05127,17.10519],[74.06812,17.10089],[74.07382,17.09787],[74.07782,17.10203],[74.09397,17.10094],[74.09903,17.10544],[74.09803,17.10753],[74.1009,17.11267],[74.09942,17.11538],[74.10038,17.11721],[74.10738,17.12039],[74.11008,17.12335],[74.11953,17.12224],[74.12899,17.11454],[74.1342,17.11872],[74.14206,17.11931],[74.15922,17.12842],[74.16131,17.13078],[74.16282,17.14102],[74.17474,17.14251],[74.17734,17.14594],[74.1774,17.14917],[74.19303,17.14956],[74.19914,17.15188],[74.22113,17.13978],[74.24691,17.14154],[74.24702,17.15488],[74.24447,17.15509],[74.24437,17.15357],[74.24217,17.15376],[74.24224,17.15515],[74.23891,17.15478],[74.23888,17.15325],[74.23747,17.15344],[74.23749,17.15516],[74.23375,17.15388],[74.23275,17.15583],[74.2329,17.15728],[74.23767,17.15729],[74.2386,17.16072],[74.24725,17.16046],[74.24651,17.16932],[74.25304,17.17093],[74.25249,17.17631],[74.24831,17.17934],[74.24795,17.18294],[74.25414,17.18357],[74.25474,17.18582],[74.25659,17.18615],[74.26433,17.18499],[74.26308,17.18714],[74.26637,17.18739],[74.27748,17.18582],[74.27605,17.18083],[74.27796,17.1787],[74.28178,17.18602],[74.28227,17.19133],[74.28669,17.19505],[74.28535,17.2059],[74.27655,17.21321],[74.26876,17.21406],[74.26606,17.22231],[74.27981,17.2327],[74.28242,17.23195],[74.28459,17.23398],[74.28782,17.24744],[74.2854,17.24872],[74.28226,17.24736],[74.28034,17.24942],[74.27456,17.24679],[74.27689,17.24938],[74.27514,17.25292],[74.26522,17.25745],[74.26494,17.26503],[74.25956,17.27277],[74.26077,17.27821],[74.25709,17.28533],[74.25806,17.2883],[74.26309,17.28944],[74.25622,17.29339],[74.25682,17.29656],[74.26107,17.29992],[74.26152,17.30665],[74.29103,17.31104],[74.29379,17.31277],[74.28722,17.32608],[74.2901,17.32542],[74.29037,17.32676],[74.27903,17.33655],[74.27916,17.34143],[74.28833,17.35388],[74.28666,17.35861],[74.27902,17.36059],[74.2618,17.35648],[74.26067,17.35493],[74.25584,17.35761],[74.25429,17.36334],[74.25639,17.36449],[74.2571,17.36136],[74.25952,17.3631],[74.25862,17.36888],[74.25666,17.37035],[74.26206,17.37731],[74.26043,17.38565],[74.27221,17.39652],[74.28184,17.41729],[74.28393,17.4194],[74.28634,17.41842],[74.29106,17.42136],[74.29233,17.42502],[74.29644,17.42585],[74.30962,17.42186],[74.32921,17.41915],[74.34431,17.41972],[74.34484,17.41043],[74.382,17.40991],[74.40459,17.40692],[74.41735,17.40193],[74.42154,17.397],[74.43149,17.39072],[74.45482,17.3909],[74.46832,17.39392],[74.47511,17.38811],[74.49795,17.38344],[74.49812,17.38561],[74.50351,17.38905],[74.50449,17.39249],[74.51768,17.40419],[74.52169,17.40583],[74.52244,17.41272],[74.52713,17.41499],[74.52749,17.41918],[74.54507,17.42238],[74.54677,17.42],[74.5506,17.42106],[74.55618,17.4175],[74.56433,17.41907],[74.56998,17.41786],[74.57208,17.41517],[74.58371,17.41364],[74.58353,17.42794],[74.5846,17.43327],[74.588,17.43684],[74.58842,17.44622],[74.59043,17.44611],[74.59211,17.449],[74.59508,17.44909],[74.6055,17.44595],[74.60637,17.43875],[74.61442,17.43086],[74.61836,17.42055],[74.62406,17.4139],[74.6253,17.40437],[74.62441,17.40031],[74.62249,17.39935],[74.63135,17.40123],[74.63766,17.39729],[74.64275,17.40069],[74.65293,17.39978],[74.66186,17.39723],[74.66699,17.39066],[74.66973,17.38951],[74.68492,17.39413],[74.68835,17.40218],[74.69246,17.40164],[74.68742,17.4065],[74.68949,17.40835],[74.68678,17.40905],[74.68679,17.41567],[74.68361,17.4183],[74.68252,17.42304],[74.68404,17.42543],[74.69259,17.42955],[74.69193,17.43565],[74.69604,17.43882],[74.69377,17.46809],[74.69627,17.46861],[74.69316,17.47462],[74.69489,17.47564],[74.69395,17.47989],[74.69216,17.47917],[74.68662,17.48346],[74.68468,17.48786],[74.69558,17.48899],[74.7168,17.48522],[74.72535,17.47864],[74.72524,17.47406],[74.72698,17.47758],[74.73135,17.47965],[74.74163,17.47699],[74.75517,17.47616],[74.77655,17.46392],[74.80694,17.45283],[74.81487,17.46249],[74.81671,17.46767],[74.82175,17.46736],[74.82439,17.47517],[74.82788,17.4776],[74.83432,17.48937],[74.8434,17.49367],[74.8491,17.50295],[74.85546,17.50591],[74.8604,17.51162],[74.86,17.52552],[74.86068,17.52737],[74.86357,17.52814],[74.85716,17.54875],[74.85655,17.55975],[74.86916,17.56366],[74.8726,17.56638],[74.87321,17.56931],[74.87635,17.5699],[74.8808,17.5779],[74.88144,17.58344],[74.87918,17.58931],[74.88172,17.59039],[74.87999,17.5946],[74.87962,17.60428],[74.88804,17.61112],[74.89055,17.61767],[74.90611,17.62928],[74.90316,17.63252],[74.90227,17.6373],[74.89911,17.6403],[74.89861,17.6488],[74.891,17.65904],[74.89207,17.66119],[74.8873,17.66921],[74.88773,17.67255],[74.88519,17.67734],[74.88574,17.6827],[74.88351,17.6848],[74.88095,17.68116],[74.87425,17.68173],[74.87069,17.69194],[74.86714,17.69184],[74.8641,17.6942],[74.86534,17.69845],[74.8646,17.70509],[74.86862,17.71192],[74.86784,17.71654],[74.871,17.71943],[74.87184,17.72702],[74.86812,17.72849],[74.86751,17.73106],[74.86346,17.72925],[74.85961,17.73105],[74.857,17.72783],[74.8555,17.72928],[74.85522,17.72716],[74.84889,17.72463],[74.84959,17.7279],[74.8477,17.72948],[74.84762,17.73215],[74.84453,17.73021],[74.84394,17.73165],[74.83852,17.7272],[74.82605,17.73806],[74.82666,17.73984],[74.82307,17.7419],[74.82359,17.7443],[74.82202,17.74673],[74.82007,17.74732],[74.8185,17.75058],[74.81553,17.75136],[74.81472,17.75354],[74.81231,17.75292],[74.80708,17.75503],[74.79944,17.76157],[74.79828,17.76011],[74.79176,17.76207],[74.78639,17.76137],[74.78581,17.76729],[74.78282,17.76911],[74.78344,17.77131],[74.78162,17.77142],[74.78194,17.77409],[74.77917,17.7765],[74.77814,17.77426],[74.77392,17.77421],[74.77639,17.7728],[74.77511,17.77045],[74.7715,17.77265],[74.77224,17.76835],[74.76755,17.76949],[74.76691,17.76267],[74.76432,17.76103],[74.7633,17.76528],[74.76088,17.7641],[74.76213,17.76284],[74.7596,17.76258],[74.7587,17.76536],[74.76105,17.76615],[74.75984,17.76774],[74.76077,17.76895],[74.75824,17.76852],[74.75681,17.76211],[74.75469,17.76392],[74.75546,17.7696],[74.75442,17.7702],[74.75012,17.76788],[74.74921,17.76557],[74.74814,17.76785],[74.74516,17.76602],[74.74502,17.76906],[74.74038,17.76697],[74.73964,17.76827],[74.73761,17.76738],[74.73812,17.76919],[74.74367,17.77125],[74.74067,17.77543],[74.74522,17.77439],[74.74746,17.77161],[74.75141,17.7724],[74.74615,17.77865],[74.74832,17.77977],[74.74591,17.78413],[74.74881,17.78384],[74.75071,17.78637],[74.75011,17.78114],[74.75614,17.77423],[74.75591,17.78107],[74.75298,17.78709],[74.74839,17.79155],[74.74094,17.78891],[74.73543,17.79077],[74.73358,17.79502],[74.72841,17.79247],[74.72716,17.79418],[74.72807,17.79642],[74.7258,17.79777],[74.72681,17.79362],[74.72398,17.79448],[74.72489,17.79264],[74.72136,17.79057],[74.71942,17.79229],[74.71522,17.78984],[74.71495,17.78684],[74.71228,17.7888],[74.71222,17.79199],[74.71477,17.79298],[74.71328,17.79622],[74.7111,17.79355],[74.70992,17.79395],[74.70819,17.78883],[74.70555,17.78891],[74.70584,17.79226],[74.70483,17.79002],[74.70299,17.79109],[74.69941,17.79017],[74.70658,17.7967],[74.69961,17.79344],[74.69934,17.79488],[74.69411,17.79733],[74.69661,17.79915],[74.70279,17.79889],[74.70108,17.80054],[74.6975,17.80037],[74.70021,17.80294],[74.69777,17.80417],[74.70202,17.80683],[74.70387,17.81058],[74.69874,17.80654],[74.69773,17.80712],[74.69697,17.80478],[74.69585,17.80748],[74.69836,17.81375],[74.69471,17.81207],[74.69565,17.80776],[74.69322,17.80569],[74.69068,17.80707],[74.69231,17.80945],[74.6888,17.81173],[74.68799,17.80894],[74.68454,17.81277],[74.69006,17.81674],[74.68371,17.81696],[74.68247,17.81883],[74.68577,17.82106],[74.68975,17.82023],[74.68791,17.82217],[74.68975,17.82337],[74.69472,17.82142],[74.69215,17.82404],[74.68817,17.8236],[74.68681,17.82578],[74.6835,17.82683],[74.69112,17.82824],[74.68973,17.83035],[74.68403,17.82899],[74.68483,17.83251],[74.68158,17.83197],[74.68274,17.83488],[74.67762,17.83514],[74.68002,17.83787],[74.68268,17.83798],[74.68031,17.84102],[74.67791,17.84044],[74.67813,17.84891],[74.67943,17.8504],[74.67278,17.8536],[74.67296,17.85679],[74.66668,17.85699],[74.66422,17.85996],[74.66549,17.86422],[74.66276,17.8618],[74.65354,17.8636],[74.6527,17.85794],[74.64741,17.85526],[74.64858,17.85051],[74.64359,17.84864],[74.64557,17.8464],[74.644,17.84574],[74.64637,17.84502],[74.64875,17.84668],[74.65196,17.8444],[74.649,17.84416],[74.65011,17.84298],[74.64657,17.84193],[74.64401,17.84307],[74.63652,17.84111],[74.64663,17.84041],[74.64849,17.83878],[74.646,17.8371],[74.64584,17.83864],[74.64371,17.83882],[74.64295,17.83638],[74.64033,17.83797],[74.64033,17.83667],[74.63606,17.83715],[74.63792,17.83418],[74.63933,17.83484],[74.64315,17.83097],[74.63954,17.83212],[74.63957,17.83021],[74.63563,17.82956],[74.63626,17.83155],[74.63401,17.83278],[74.63274,17.83746],[74.63063,17.83621],[74.62931,17.84009],[74.62751,17.83937],[74.62913,17.83859],[74.62797,17.8375],[74.63007,17.83418],[74.62733,17.83443],[74.62746,17.83153],[74.62517,17.83234],[74.62565,17.83552],[74.62403,17.83749],[74.62085,17.83521],[74.61887,17.82914],[74.61805,17.83106],[74.61564,17.8309],[74.61745,17.83449],[74.6127,17.83321],[74.61802,17.83711],[74.61529,17.83788],[74.61663,17.83894],[74.61541,17.8397],[74.62076,17.83963],[74.61837,17.844],[74.62115,17.8452],[74.6173,17.84492],[74.61732,17.84607],[74.61426,17.84386],[74.61154,17.84578],[74.61054,17.84323],[74.61,17.84547],[74.60706,17.84524],[74.60909,17.84802],[74.60897,17.85164],[74.61228,17.85333],[74.61071,17.85688],[74.6086,17.85683],[74.61191,17.86218],[74.61906,17.86237],[74.6262,17.86528],[74.62869,17.87029],[74.63168,17.87045],[74.63607,17.87354],[74.63465,17.88105],[74.63201,17.88491],[74.63314,17.88796],[74.63224,17.89439],[74.635,17.90155],[74.6373,17.90096],[74.64073,17.90765],[74.64272,17.91524],[74.64904,17.91566],[74.6532,17.91944],[74.6519,17.92055],[74.65543,17.92559],[74.65559,17.9369],[74.65886,17.94227],[74.66736,17.97888],[74.66743,17.98993],[74.66609,17.99482],[74.66414,17.99638],[74.6651,17.99755],[74.66169,18.00117],[74.66233,18.00385],[74.67077,18.00784],[74.68681,18.02052],[74.6898,18.01989],[74.69309,18.02372],[74.69626,18.02303],[74.71124,18.0293],[74.70717,18.03113],[74.70199,18.03813],[74.69565,18.03704],[74.69094,18.03881],[74.68646,18.04819],[74.68618,18.05676],[74.68409,18.0601],[74.67342,18.06211],[74.66652,18.06931],[74.65796,18.06954],[74.65401,18.06796],[74.65375,18.05875],[74.6418,18.0443],[74.63816,18.04496],[74.63586,18.05162],[74.62949,18.05692],[74.62632,18.05595],[74.62401,18.05148],[74.61985,18.04842],[74.61029,18.0464],[74.60551,18.04727],[74.59772,18.05347],[74.59043,18.05596],[74.58638,18.05314],[74.58516,18.04621],[74.58249,18.04602],[74.57971,18.04847],[74.57841,18.05396],[74.56941,18.05521],[74.56266,18.06731],[74.55775,18.07016],[74.54741,18.06838],[74.54226,18.06189],[74.5335,18.05792],[74.51582,18.06097],[74.50847,18.0594],[74.50061,18.06014],[74.48588,18.05599],[74.47358,18.04866],[74.45984,18.04641],[74.45639,18.04794],[74.45289,18.05279],[74.4435,18.05724],[74.4401,18.06245],[74.43626,18.06477],[74.42188,18.06679],[74.41064,18.07063],[74.40216,18.07025],[74.39552,18.07372],[74.3838,18.06956],[74.37245,18.07413],[74.36845,18.08463],[74.36019,18.0872],[74.35907,18.09489],[74.35504,18.09698],[74.32748,18.08523],[74.31878,18.07251],[74.31034,18.07208],[74.30584,18.0679],[74.30229,18.06725],[74.29871,18.06815],[74.29473,18.07407],[74.27964,18.07477],[74.26283,18.08103],[74.24919,18.08995],[74.24198,18.09673],[74.23579,18.0996],[74.21551,18.09633],[74.21014,18.09725],[74.20437,18.10368],[74.19596,18.10506],[74.18969,18.11115],[74.1852,18.11291],[74.17562,18.10924],[74.16252,18.10804],[74.15754,18.11043],[74.15104,18.11959],[74.14593,18.12227],[74.13749,18.11683],[74.1346,18.1181],[74.1214,18.13217],[74.118,18.13332],[74.11234,18.13118],[74.10087,18.12312],[74.08034,18.12082],[74.07572,18.12242],[74.06797,18.13661],[74.05312,18.14162],[74.04724,18.14058],[74.04334,18.13552],[74.02813,18.13228],[74.01324,18.14431],[74.01162,18.14832],[74.00893,18.14858],[74.00683,18.15867],[74.00433,18.16119],[73.99321,18.15468],[73.99512,18.15257],[73.99347,18.15092],[73.98881,18.15024],[73.98857,18.15131],[73.98776,18.14978],[73.98779,18.15137],[73.98134,18.15149],[73.98016,18.15237],[73.981,18.15436],[73.97945,18.15387],[73.96801,18.15982],[73.96774,18.15883],[73.96397,18.16242],[73.96182,18.16168],[73.96127,18.16555],[73.9493,18.17408],[73.94519,18.17905],[73.94132,18.17837],[73.93846,18.17319],[73.93498,18.17205],[73.9221,18.17174],[73.90832,18.16324],[73.90488,18.15915],[73.90197,18.15958],[73.90048,18.16221],[73.8974,18.17541]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"495","area_level":"District","area_name":"Sindhudurg","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.77653,16.66271],[73.77223,16.66535],[73.77098,16.66223],[73.76834,16.66161],[73.76988,16.65888],[73.76487,16.64375],[73.76098,16.6448],[73.76011,16.64158],[73.75642,16.64439],[73.75354,16.6418],[73.75623,16.64081],[73.75827,16.63603],[73.76068,16.63518],[73.76094,16.62956],[73.76986,16.62479],[73.76577,16.61251],[73.76736,16.6098],[73.76769,16.60326],[73.74181,16.59983],[73.7319,16.608],[73.72401,16.60369],[73.71999,16.6076],[73.70946,16.60311],[73.70008,16.62427],[73.69826,16.62521],[73.69057,16.62386],[73.68693,16.62131],[73.68709,16.61843],[73.6835,16.61392],[73.67555,16.60794],[73.67291,16.59733],[73.67357,16.59444],[73.66897,16.58864],[73.67067,16.58407],[73.66479,16.5893],[73.66132,16.58909],[73.66593,16.58123],[73.65657,16.57506],[73.6485,16.57562],[73.65006,16.56729],[73.64769,16.56315],[73.64128,16.56067],[73.63612,16.56351],[73.63235,16.55919],[73.63151,16.56041],[73.63415,16.56464],[73.63342,16.56804],[73.63529,16.57213],[73.63357,16.57325],[73.63248,16.5782],[73.62755,16.58018],[73.62731,16.58279],[73.62208,16.58312],[73.61842,16.57537],[73.6148,16.5739],[73.61552,16.57133],[73.61279,16.56656],[73.61413,16.56156],[73.61211,16.55703],[73.60056,16.54446],[73.59167,16.54064],[73.57876,16.5454],[73.56558,16.52969],[73.55286,16.52384],[73.54415,16.51539],[73.54035,16.51422],[73.53595,16.51628],[73.52543,16.52514],[73.51979,16.52428],[73.51665,16.51951],[73.51054,16.51672],[73.5016,16.52055],[73.49798,16.52039],[73.49297,16.51787],[73.48032,16.5067],[73.4804,16.50397],[73.47439,16.49696],[73.4666,16.49368],[73.45728,16.49466],[73.43392,16.50371],[73.42193,16.51288],[73.4157,16.51469],[73.41057,16.51406],[73.40512,16.51108],[73.39447,16.51044],[73.389,16.51417],[73.36926,16.51787],[73.35112,16.52929],[73.34976,16.5388],[73.34423,16.54877],[73.34945,16.55115],[73.3471,16.55274],[73.3465,16.5563],[73.35178,16.55658],[73.3568,16.55329],[73.35644,16.56344],[73.35506,16.56656],[73.35357,16.56442],[73.35179,16.56561],[73.34627,16.56509],[73.34467,16.56965],[73.33213,16.56574],[73.32736,16.5659],[73.32782,16.56292],[73.33315,16.55736],[73.32604,16.55696],[73.32492,16.55266],[73.31939,16.55341],[73.31903,16.54964],[73.31612,16.54471],[73.31498,16.54493],[73.31492,16.54158],[73.31087,16.54144],[73.31398,16.53886],[73.31259,16.53532],[73.3169,16.52983],[73.31674,16.52313],[73.31906,16.51889],[73.31695,16.51418],[73.32164,16.51637],[73.32439,16.51462],[73.33317,16.48583],[73.33601,16.48322],[73.33672,16.48019],[73.33982,16.47891],[73.34335,16.47416],[73.34274,16.46841],[73.34549,16.46184],[73.3469,16.45037],[73.35082,16.44389],[73.35867,16.44166],[73.35721,16.43914],[73.35953,16.4285],[73.35769,16.42502],[73.36026,16.42397],[73.36252,16.41808],[73.36611,16.4148],[73.36682,16.40849],[73.36547,16.4045],[73.36796,16.40075],[73.36563,16.3974],[73.37128,16.38956],[73.36851,16.37992],[73.36941,16.37929],[73.36688,16.37789],[73.36739,16.37516],[73.37011,16.37551],[73.37223,16.371],[73.36892,16.36293],[73.37372,16.35995],[73.3783,16.36146],[73.38025,16.36122],[73.38276,16.35799],[73.38668,16.35842],[73.39037,16.34667],[73.38763,16.34325],[73.38613,16.33646],[73.39325,16.33193],[73.39612,16.31935],[73.3945,16.31756],[73.3942,16.31318],[73.39856,16.30789],[73.39986,16.29981],[73.40304,16.29978],[73.40397,16.29826],[73.40682,16.28555],[73.41307,16.26876],[73.41205,16.26753],[73.41466,16.25819],[73.41554,16.25716],[73.41885,16.25808],[73.41529,16.25462],[73.41729,16.24529],[73.41942,16.24329],[73.42326,16.23092],[73.42495,16.22319],[73.42397,16.21823],[73.42672,16.21579],[73.42781,16.20896],[73.42706,16.20365],[73.42987,16.1989],[73.43539,16.19976],[73.43964,16.19133],[73.45782,16.11759],[73.45753,16.10619],[73.46033,16.09665],[73.4586,16.09096],[73.4603,16.0886],[73.46241,16.08931],[73.46492,16.08694],[73.45817,16.08603],[73.45908,16.08365],[73.45736,16.07989],[73.46343,16.07943],[73.46475,16.07616],[73.46453,16.07074],[73.46205,16.06935],[73.46432,16.06933],[73.4649,16.06698],[73.46175,16.06373],[73.45837,16.063],[73.4569,16.06428],[73.45476,16.06194],[73.45687,16.06034],[73.45682,16.05823],[73.45514,16.05861],[73.45721,16.0566],[73.45606,16.05595],[73.45643,16.05268],[73.46007,16.05265],[73.46046,16.05539],[73.46722,16.05373],[73.46911,16.05016],[73.46654,16.04603],[73.47715,16.04141],[73.48436,16.03371],[73.49094,16.01113],[73.48928,15.98849],[73.50182,15.9668],[73.50356,15.96475],[73.50476,15.96531],[73.50244,15.95608],[73.50572,15.94716],[73.5087,15.94597],[73.51011,15.94046],[73.51256,15.9382],[73.51419,15.94059],[73.51683,15.93985],[73.51869,15.94134],[73.5193,15.93855],[73.5308,15.93232],[73.53352,15.9333],[73.53566,15.93916],[73.53572,15.93786],[73.54008,15.93673],[73.54843,15.92779],[73.55478,15.92613],[73.56709,15.91942],[73.56925,15.91295],[73.58119,15.91026],[73.58697,15.91061],[73.59179,15.90134],[73.59554,15.89745],[73.59506,15.89361],[73.59898,15.88953],[73.59841,15.887],[73.6117,15.86173],[73.61356,15.85477],[73.61625,15.85308],[73.61748,15.85602],[73.62002,15.85633],[73.62309,15.85545],[73.62609,15.85177],[73.62866,15.84717],[73.6287,15.84365],[73.63351,15.83608],[73.63354,15.83145],[73.63939,15.82051],[73.63907,15.81816],[73.63603,15.81707],[73.63605,15.81544],[73.64287,15.81126],[73.64541,15.80562],[73.64841,15.80449],[73.65626,15.79576],[73.65416,15.79153],[73.65481,15.78808],[73.6621,15.76666],[73.66435,15.7531],[73.65761,15.74707],[73.65419,15.74815],[73.65371,15.74523],[73.64986,15.7449],[73.65311,15.74437],[73.65533,15.74099],[73.65863,15.742],[73.6608,15.73998],[73.66373,15.74049],[73.66778,15.73557],[73.67091,15.73492],[73.67239,15.73018],[73.67688,15.72589],[73.67847,15.72896],[73.68755,15.72988],[73.69253,15.72822],[73.69362,15.72415],[73.69549,15.72402],[73.69645,15.72701],[73.69799,15.7254],[73.70298,15.72881],[73.70495,15.73122],[73.70353,15.73181],[73.70681,15.73242],[73.70777,15.72949],[73.71428,15.72992],[73.71699,15.72675],[73.72088,15.72567],[73.73174,15.72864],[73.73515,15.73284],[73.74284,15.73657],[73.76517,15.73387],[73.77035,15.73031],[73.78497,15.72613],[73.78754,15.72826],[73.78893,15.73484],[73.79316,15.73723],[73.79723,15.73422],[73.80664,15.73768],[73.80943,15.74203],[73.81258,15.74245],[73.81824,15.73947],[73.82662,15.74336],[73.83083,15.75399],[73.82975,15.76433],[73.83849,15.76756],[73.8408,15.77612],[73.84391,15.78113],[73.84985,15.77954],[73.85267,15.78092],[73.84707,15.7858],[73.85047,15.78964],[73.85277,15.79708],[73.85571,15.80102],[73.8634,15.79879],[73.8675,15.79703],[73.86481,15.79082],[73.86607,15.78534],[73.86985,15.78354],[73.87644,15.77471],[73.87789,15.77415],[73.87787,15.77563],[73.88009,15.77432],[73.87735,15.76808],[73.87506,15.76716],[73.87701,15.76442],[73.87306,15.76088],[73.87288,15.75468],[73.8757,15.75128],[73.89288,15.74939],[73.89918,15.746],[73.90699,15.74797],[73.90698,15.74997],[73.9148,15.74544],[73.93873,15.74333],[73.94087,15.73811],[73.94174,15.72919],[73.94595,15.7212],[73.95233,15.7144],[73.94918,15.71156],[73.9498,15.7107],[73.94717,15.70983],[73.94928,15.70865],[73.94856,15.70354],[73.9437,15.69694],[73.94651,15.69781],[73.95152,15.69645],[73.95294,15.69953],[73.95923,15.70006],[73.95909,15.69809],[73.96376,15.69232],[73.96269,15.67326],[73.96571,15.66943],[73.96782,15.66025],[73.96256,15.65234],[73.96108,15.64556],[73.96177,15.64168],[73.96739,15.63531],[73.96786,15.63058],[73.97078,15.62741],[73.97905,15.62713],[73.99052,15.61223],[73.99336,15.61064],[74.00884,15.61016],[74.0208,15.60609],[74.0254,15.60944],[74.03116,15.62261],[74.0506,15.62487],[74.06161,15.62853],[74.06317,15.62638],[74.06577,15.62968],[74.07011,15.62916],[74.07849,15.63176],[74.09429,15.64237],[74.09753,15.64102],[74.10706,15.64645],[74.11389,15.64613],[74.11411,15.64879],[74.11826,15.65203],[74.11094,15.65769],[74.1037,15.65761],[74.09423,15.66308],[74.08828,15.66994],[74.0881,15.67247],[74.09136,15.67463],[74.10261,15.67222],[74.10885,15.67269],[74.12577,15.68097],[74.13072,15.68963],[74.13168,15.69354],[74.13034,15.70175],[74.13213,15.7024],[74.13143,15.70587],[74.12834,15.70867],[74.12618,15.70796],[74.1261,15.71846],[74.12217,15.72073],[74.12582,15.72411],[74.13076,15.72336],[74.13346,15.72631],[74.13396,15.72982],[74.14184,15.73433],[74.14401,15.73309],[74.15097,15.73581],[74.15111,15.73987],[74.1533,15.74363],[74.16156,15.75129],[74.18953,15.75212],[74.20143,15.75862],[74.20892,15.78113],[74.19918,15.78537],[74.18156,15.7751],[74.1725,15.77381],[74.15363,15.78682],[74.15267,15.79949],[74.15819,15.81541],[74.15849,15.82272],[74.14723,15.82185],[74.14096,15.82339],[74.14572,15.83288],[74.12378,15.82491],[74.10895,15.82268],[74.10363,15.83384],[74.10288,15.84086],[74.08417,15.8384],[74.08423,15.83709],[74.0777,15.83426],[74.07421,15.83448],[74.06583,15.82612],[74.0668,15.81517],[74.04925,15.80524],[74.03453,15.8027],[74.03043,15.81884],[74.03404,15.83273],[74.03037,15.83464],[74.03305,15.83591],[74.03272,15.83703],[74.04271,15.83913],[74.04263,15.84084],[74.04818,15.84254],[74.05096,15.84694],[74.06726,15.85837],[74.07681,15.86282],[74.08304,15.86819],[74.08868,15.86819],[74.09297,15.87308],[74.0872,15.87446],[74.09281,15.89067],[74.09054,15.89777],[74.09311,15.90011],[74.08951,15.90332],[74.08832,15.9109],[74.08387,15.92012],[74.08153,15.93301],[74.07511,15.9422],[74.07306,15.94878],[74.06452,15.94268],[74.05966,15.94182],[74.05059,15.94613],[74.05153,15.95206],[74.04558,15.95712],[74.04746,15.96073],[74.05351,15.96424],[74.05593,15.96791],[74.05715,15.97225],[74.05539,15.97397],[74.05948,15.97809],[74.06245,15.98427],[74.07649,15.99641],[74.07827,15.99998],[74.085,16.00465],[74.08807,16.00461],[74.09089,16.00769],[74.09104,16.01474],[74.08124,16.01896],[74.07705,16.02331],[74.0651,16.03875],[74.06398,16.04445],[74.06004,16.05108],[74.0566,16.0504],[74.05157,16.04283],[74.05045,16.03304],[74.04401,16.03116],[74.03827,16.03431],[74.03452,16.03113],[74.03234,16.03285],[74.02494,16.03221],[74.01845,16.03901],[74.01317,16.03718],[74.00073,16.04128],[73.99999,16.04366],[74.00274,16.0529],[73.9993,16.05596],[73.9997,16.05832],[73.99678,16.05801],[73.99706,16.05963],[74.00048,16.05941],[74.00889,16.06451],[74.00716,16.06653],[74.00919,16.06465],[74.01137,16.06663],[74.00864,16.06913],[74.00439,16.07913],[73.99101,16.07942],[73.99595,16.09273],[73.97471,16.09362],[73.96724,16.0957],[73.96241,16.09465],[73.95696,16.09735],[73.94212,16.09988],[73.93763,16.09711],[73.9264,16.09849],[73.91866,16.09718],[73.9154,16.0995],[73.91042,16.09902],[73.90525,16.1009],[73.90012,16.09683],[73.90075,16.08883],[73.8959,16.08895],[73.8945,16.09118],[73.8852,16.09438],[73.88479,16.09286],[73.87733,16.09482],[73.87541,16.09704],[73.87385,16.09704],[73.87154,16.09375],[73.86444,16.09538],[73.86441,16.09762],[73.87344,16.1063],[73.86557,16.10586],[73.86292,16.10717],[73.85934,16.10609],[73.86031,16.10502],[73.85871,16.10361],[73.85271,16.10274],[73.85369,16.0985],[73.85027,16.09811],[73.84738,16.09475],[73.84378,16.09391],[73.84345,16.08729],[73.84485,16.08431],[73.85337,16.08169],[73.85995,16.06994],[73.8554,16.07489],[73.84266,16.07885],[73.84402,16.08463],[73.83394,16.09396],[73.83465,16.09943],[73.83717,16.10058],[73.84056,16.1057],[73.844,16.10614],[73.84597,16.11439],[73.84929,16.11842],[73.84786,16.11958],[73.84906,16.12166],[73.84612,16.1239],[73.84988,16.12833],[73.84682,16.13167],[73.85363,16.13472],[73.85334,16.13794],[73.85006,16.14103],[73.8502,16.14566],[73.84487,16.1531],[73.86457,16.1391],[73.86607,16.13933],[73.86572,16.14419],[73.86716,16.14699],[73.86912,16.14568],[73.86954,16.14274],[73.87271,16.14451],[73.8776,16.14365],[73.88307,16.14562],[73.88596,16.14327],[73.88835,16.14362],[73.88953,16.14008],[73.89686,16.13939],[73.90606,16.13578],[73.91122,16.13993],[73.91433,16.14008],[73.9167,16.1453],[73.91394,16.14954],[73.91762,16.151],[73.91878,16.15363],[73.90833,16.15973],[73.91234,16.16129],[73.91762,16.16745],[73.91797,16.1699],[73.91465,16.17184],[73.92204,16.17359],[73.92886,16.16943],[73.93149,16.16977],[73.93433,16.17369],[73.94273,16.17451],[73.94578,16.17935],[73.94153,16.18476],[73.93757,16.18583],[73.9409,16.18847],[73.94053,16.19077],[73.9543,16.19996],[73.9565,16.20327],[73.95374,16.20389],[73.95621,16.20857],[73.94503,16.20613],[73.93812,16.20928],[73.93567,16.20456],[73.93249,16.20609],[73.92549,16.20217],[73.92263,16.20212],[73.9276,16.20628],[73.92568,16.20819],[73.92928,16.21033],[73.92901,16.21251],[73.92571,16.21367],[73.92589,16.21727],[73.92389,16.21899],[73.9178,16.2182],[73.92988,16.22127],[73.93537,16.22572],[73.93835,16.23599],[73.94621,16.239],[73.94286,16.24379],[73.93576,16.24357],[73.92879,16.23851],[73.926,16.23932],[73.92429,16.23508],[73.91852,16.23449],[73.91478,16.23108],[73.91366,16.23447],[73.90575,16.2351],[73.90048,16.23337],[73.89761,16.23467],[73.88938,16.22905],[73.89272,16.23386],[73.90024,16.23785],[73.90733,16.23935],[73.9175,16.24565],[73.90758,16.25152],[73.90677,16.25282],[73.90896,16.25456],[73.90492,16.25652],[73.89187,16.25658],[73.89079,16.25784],[73.89452,16.26219],[73.89251,16.26669],[73.88831,16.27201],[73.8841,16.27376],[73.88461,16.2761],[73.8818,16.27883],[73.88272,16.28249],[73.88763,16.28523],[73.88972,16.28985],[73.88877,16.29964],[73.90076,16.30601],[73.90202,16.30861],[73.9036,16.31945],[73.9022,16.32863],[73.8994,16.32981],[73.89417,16.32864],[73.88976,16.32265],[73.88756,16.32274],[73.88685,16.32834],[73.87319,16.31662],[73.86813,16.31499],[73.86381,16.30854],[73.85829,16.31286],[73.8564,16.31727],[73.8521,16.31332],[73.84589,16.30037],[73.84753,16.30843],[73.84675,16.31428],[73.83888,16.31644],[73.84811,16.32445],[73.84068,16.3385],[73.83746,16.34257],[73.83401,16.34288],[73.83213,16.345],[73.83732,16.34605],[73.83931,16.35238],[73.84244,16.35224],[73.84342,16.35531],[73.84786,16.35384],[73.85001,16.35489],[73.85675,16.36633],[73.85993,16.36682],[73.86328,16.37279],[73.85602,16.3859],[73.84533,16.38875],[73.84243,16.39156],[73.83675,16.3922],[73.83404,16.40148],[73.84507,16.41296],[73.85097,16.41663],[73.8494,16.42263],[73.85753,16.42548],[73.86717,16.43374],[73.87209,16.44213],[73.87834,16.44247],[73.88256,16.44562],[73.88396,16.4499],[73.88642,16.45084],[73.88754,16.46339],[73.88538,16.46993],[73.86097,16.47613],[73.86124,16.48172],[73.85423,16.48806],[73.85161,16.48763],[73.85201,16.49275],[73.85004,16.49781],[73.84624,16.50298],[73.83974,16.5074],[73.84161,16.51597],[73.84575,16.5184],[73.84718,16.52623],[73.84095,16.52919],[73.83905,16.53233],[73.83431,16.53171],[73.83081,16.53371],[73.82431,16.54077],[73.81482,16.54424],[73.81701,16.54834],[73.82145,16.5511],[73.82237,16.54984],[73.82512,16.55093],[73.83096,16.54967],[73.83118,16.55839],[73.83401,16.5622],[73.83587,16.56092],[73.84654,16.5743],[73.84479,16.57726],[73.84448,16.58321],[73.84073,16.58602],[73.84183,16.58915],[73.84709,16.59294],[73.84732,16.59644],[73.84924,16.59685],[73.85298,16.60176],[73.85907,16.60406],[73.86238,16.61404],[73.86144,16.617],[73.8536,16.62503],[73.85297,16.63239],[73.84793,16.64288],[73.85201,16.64777],[73.84906,16.65006],[73.83987,16.65313],[73.83027,16.64906],[73.82323,16.65392],[73.81862,16.65573],[73.81094,16.65508],[73.79576,16.66306],[73.79235,16.66337],[73.79081,16.65966],[73.7841,16.6593],[73.78015,16.66174],[73.77935,16.66438],[73.77653,16.66271]],[[73.6825,16.58776],[73.68644,16.59215],[73.69107,16.59252],[73.69303,16.58637],[73.69704,16.58546],[73.70543,16.58747],[73.70682,16.58365],[73.70616,16.58121],[73.69893,16.57781],[73.69305,16.5828],[73.68158,16.58472],[73.67846,16.58396],[73.6825,16.58776]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"496","area_level":"District","area_name":"Solapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.22886,18.54088],[75.22271,18.54434],[75.21957,18.55063],[75.2135,18.55407],[75.20163,18.53132],[75.19477,18.53223],[75.18198,18.53053],[75.18035,18.52679],[75.15825,18.51988],[75.15222,18.52275],[75.14558,18.52253],[75.13459,18.5265],[75.13298,18.52583],[75.12527,18.50727],[75.12199,18.49247],[75.11542,18.49295],[75.10472,18.48959],[75.09052,18.45134],[75.08936,18.44177],[75.09114,18.43774],[75.09023,18.43134],[75.08054,18.42843],[75.07944,18.42341],[75.0745,18.42355],[75.05826,18.41934],[75.05017,18.42968],[75.0216,18.43701],[75.01544,18.43671],[75.01072,18.42495],[75.00539,18.40334],[74.9987,18.4043],[74.9791,18.3998],[74.97267,18.39529],[74.97039,18.39255],[74.97049,18.38934],[74.96622,18.38554],[74.95888,18.38918],[74.94973,18.38829],[74.93604,18.38518],[74.92241,18.37811],[74.91468,18.37863],[74.91084,18.37214],[74.90805,18.35678],[74.88531,18.357],[74.87323,18.35519],[74.86735,18.35272],[74.86519,18.34835],[74.86449,18.33607],[74.85995,18.33397],[74.8549,18.3349],[74.85538,18.33194],[74.85169,18.32994],[74.84631,18.33284],[74.8334,18.33503],[74.83413,18.32051],[74.84255,18.31215],[74.84442,18.30821],[74.84404,18.30097],[74.84207,18.29849],[74.83293,18.29532],[74.80296,18.30227],[74.79788,18.29859],[74.79635,18.2946],[74.79531,18.28475],[74.79917,18.27757],[74.81703,18.26788],[74.83251,18.24914],[74.84248,18.24533],[74.86189,18.24923],[74.87642,18.24919],[74.88515,18.25646],[74.8921,18.25949],[74.92523,18.25986],[74.94877,18.26646],[74.95302,18.26371],[74.95816,18.25507],[74.9631,18.25165],[74.99137,18.24057],[75.03604,18.26156],[75.04182,18.26234],[75.0439,18.26008],[75.04407,18.25421],[75.02355,18.23605],[75.01316,18.22092],[75.00843,18.20933],[75.01018,18.20409],[75.01834,18.19248],[75.02275,18.18972],[75.038,18.1963],[75.05271,18.19735],[75.05809,18.19958],[75.08251,18.21841],[75.09574,18.22101],[75.10611,18.21999],[75.11193,18.20503],[75.11034,18.18705],[75.10074,18.16342],[75.09539,18.15681],[75.09188,18.14891],[75.09073,18.13039],[75.09216,18.12282],[75.09584,18.11864],[75.11031,18.11727],[75.12076,18.11726],[75.13847,18.12192],[75.15205,18.12192],[75.16092,18.11729],[75.16276,18.11331],[75.16236,18.10854],[75.15575,18.10164],[75.14166,18.09751],[75.13582,18.09274],[75.13163,18.08735],[75.13078,18.07853],[75.12873,18.07457],[75.1133,18.07483],[75.09473,18.06963],[75.08539,18.05699],[75.0841,18.04552],[75.08062,18.03909],[75.05159,18.02416],[75.04688,18.01272],[75.03801,17.99991],[75.02777,17.98949],[75.02014,17.9667],[75.02215,17.96311],[75.02957,17.95902],[75.03847,17.94975],[75.05313,17.9521],[75.05796,17.95584],[75.06338,17.96433],[75.06895,17.97961],[75.08094,17.98214],[75.09654,17.97607],[75.10036,17.97606],[75.10373,17.97864],[75.10528,17.98281],[75.10864,17.99895],[75.11171,18.00128],[75.11728,18.00136],[75.12474,17.99616],[75.12914,17.97864],[75.13276,17.97293],[75.13606,17.9719],[75.13094,17.97053],[75.11975,17.97351],[75.11574,17.97038],[75.11702,17.96518],[75.12881,17.96074],[75.12955,17.95645],[75.12716,17.95238],[75.11837,17.9486],[75.11206,17.93841],[75.10992,17.93761],[75.1062,17.93832],[75.10092,17.94465],[75.09689,17.94655],[75.08192,17.94081],[75.07986,17.9387],[75.08015,17.93565],[75.08695,17.92959],[75.08786,17.92686],[75.08264,17.92141],[75.07398,17.9173],[75.07091,17.91693],[75.06717,17.91878],[75.05594,17.92803],[75.051,17.92727],[75.04612,17.92332],[75.04501,17.91908],[75.05284,17.90952],[75.05411,17.90504],[75.05065,17.90356],[75.0386,17.90613],[75.03187,17.90128],[75.02759,17.89583],[75.02403,17.89504],[75.0202,17.89734],[75.01899,17.90899],[75.01226,17.90952],[75.0053,17.91265],[74.98305,17.91798],[74.9635,17.91736],[74.95257,17.92331],[74.9412,17.92426],[74.94014,17.92608],[74.94283,17.93672],[74.9371,17.94157],[74.92695,17.94124],[74.91859,17.94504],[74.91288,17.94549],[74.90294,17.94366],[74.89662,17.93711],[74.8938,17.9365],[74.88364,17.9423],[74.8735,17.94322],[74.87124,17.95012],[74.86578,17.9524],[74.85976,17.95076],[74.85435,17.94637],[74.84588,17.94585],[74.84341,17.94863],[74.84312,17.95252],[74.85032,17.96338],[74.85852,17.97025],[74.85908,17.9789],[74.86277,17.98847],[74.86209,17.99254],[74.84508,17.99658],[74.83605,17.99209],[74.83224,17.99318],[74.8292,17.99588],[74.82306,18.01172],[74.81883,18.0151],[74.81605,18.01499],[74.81172,18.00967],[74.81245,18.00029],[74.80262,17.99666],[74.79934,17.99788],[74.79031,18.00841],[74.7742,18.01076],[74.77308,18.01752],[74.7681,18.02332],[74.75791,18.02184],[74.74942,18.01612],[74.74537,18.0182],[74.74189,18.02673],[74.7327,18.02705],[74.72414,18.03109],[74.71525,18.02835],[74.71124,18.0293],[74.69626,18.02303],[74.69309,18.02372],[74.6898,18.01989],[74.68681,18.02052],[74.67077,18.00784],[74.66233,18.00385],[74.66169,18.00117],[74.6651,17.99755],[74.66414,17.99638],[74.66609,17.99482],[74.66743,17.98993],[74.6673,17.9782],[74.65886,17.94227],[74.65559,17.9369],[74.65567,17.92638],[74.6519,17.92055],[74.6532,17.91944],[74.64904,17.91566],[74.64272,17.91524],[74.64073,17.90765],[74.6373,17.90096],[74.635,17.90155],[74.63224,17.89439],[74.63314,17.88796],[74.63201,17.88491],[74.63465,17.88105],[74.63607,17.87354],[74.63168,17.87045],[74.62869,17.87029],[74.6262,17.86528],[74.61906,17.86237],[74.61191,17.86218],[74.61147,17.86012],[74.60854,17.85843],[74.61228,17.85333],[74.60897,17.85164],[74.60909,17.84802],[74.60706,17.84524],[74.61,17.84547],[74.61054,17.84323],[74.61154,17.84578],[74.61426,17.84386],[74.61732,17.84607],[74.6173,17.84492],[74.62115,17.8452],[74.61837,17.844],[74.62076,17.83963],[74.61541,17.8397],[74.61663,17.83894],[74.61529,17.83788],[74.61802,17.83711],[74.6127,17.83321],[74.61745,17.83449],[74.61564,17.8309],[74.61805,17.83106],[74.61887,17.82914],[74.62085,17.83521],[74.62403,17.83749],[74.62565,17.83552],[74.62517,17.83234],[74.62746,17.83153],[74.62733,17.83443],[74.63031,17.83511],[74.62751,17.83937],[74.62931,17.84009],[74.63063,17.83621],[74.63274,17.83746],[74.63401,17.83278],[74.63626,17.83155],[74.63563,17.82956],[74.63957,17.83021],[74.63954,17.83212],[74.64315,17.83097],[74.63933,17.83484],[74.63792,17.83418],[74.63606,17.83715],[74.64033,17.83667],[74.64033,17.83797],[74.64295,17.83638],[74.64371,17.83882],[74.64584,17.83864],[74.646,17.8371],[74.64849,17.83878],[74.64663,17.84041],[74.63652,17.84111],[74.64401,17.84307],[74.64657,17.84193],[74.65011,17.84298],[74.649,17.84416],[74.65196,17.8444],[74.64875,17.84668],[74.64528,17.84507],[74.64359,17.84864],[74.64858,17.85051],[74.64741,17.85526],[74.6527,17.85794],[74.65354,17.8636],[74.66276,17.8618],[74.66549,17.86422],[74.66422,17.85996],[74.66668,17.85699],[74.67296,17.85679],[74.67278,17.8536],[74.67943,17.8504],[74.67813,17.84891],[74.67791,17.84044],[74.68031,17.84102],[74.68268,17.83798],[74.68002,17.83787],[74.67762,17.83514],[74.68274,17.83488],[74.68158,17.83197],[74.68483,17.83251],[74.68403,17.82899],[74.68973,17.83035],[74.69112,17.82824],[74.6835,17.82683],[74.68681,17.82578],[74.68817,17.8236],[74.69215,17.82404],[74.69472,17.82142],[74.68975,17.82337],[74.68791,17.82217],[74.68975,17.82023],[74.68577,17.82106],[74.68247,17.81883],[74.68371,17.81696],[74.69006,17.81674],[74.68454,17.81277],[74.68799,17.80894],[74.6888,17.81173],[74.69231,17.80945],[74.69068,17.80707],[74.69322,17.80569],[74.69565,17.80776],[74.69471,17.81207],[74.69836,17.81375],[74.69585,17.80748],[74.69697,17.80478],[74.69773,17.80712],[74.69874,17.80654],[74.70387,17.81058],[74.70202,17.80683],[74.69777,17.80417],[74.70021,17.80294],[74.6975,17.80037],[74.70108,17.80054],[74.70279,17.79889],[74.69661,17.79915],[74.69411,17.79733],[74.69934,17.79488],[74.69961,17.79344],[74.70658,17.7967],[74.69941,17.79017],[74.70299,17.79109],[74.70483,17.79002],[74.70584,17.79226],[74.70555,17.78891],[74.70819,17.78883],[74.70992,17.79395],[74.7111,17.79355],[74.71328,17.79622],[74.71477,17.79298],[74.71222,17.79199],[74.71228,17.7888],[74.71495,17.78684],[74.71522,17.78984],[74.71942,17.79229],[74.72136,17.79057],[74.72489,17.79264],[74.72398,17.79448],[74.72681,17.79362],[74.7258,17.79777],[74.72807,17.79642],[74.72716,17.79418],[74.72841,17.79247],[74.73358,17.79502],[74.73543,17.79077],[74.74094,17.78891],[74.74839,17.79155],[74.75298,17.78709],[74.75591,17.78107],[74.75614,17.77423],[74.75011,17.78114],[74.75071,17.78637],[74.74881,17.78384],[74.74591,17.78413],[74.74832,17.77977],[74.74615,17.77865],[74.75141,17.7724],[74.74746,17.77161],[74.74522,17.77439],[74.74067,17.77543],[74.74367,17.77125],[74.73812,17.76919],[74.73761,17.76738],[74.73964,17.76827],[74.74038,17.76697],[74.74502,17.76906],[74.74516,17.76602],[74.74814,17.76785],[74.74921,17.76557],[74.75012,17.76788],[74.75442,17.7702],[74.75546,17.7696],[74.75469,17.76392],[74.75681,17.76211],[74.75824,17.76852],[74.76077,17.76895],[74.75984,17.76774],[74.76105,17.76615],[74.7587,17.76536],[74.7596,17.76258],[74.76213,17.76284],[74.76088,17.7641],[74.7633,17.76528],[74.76432,17.76103],[74.76691,17.76267],[74.76755,17.76949],[74.77224,17.76835],[74.7715,17.77265],[74.77511,17.77045],[74.77639,17.7728],[74.77392,17.77421],[74.77814,17.77426],[74.77917,17.7765],[74.78194,17.77409],[74.78162,17.77142],[74.78344,17.77131],[74.78282,17.76911],[74.78581,17.76729],[74.78639,17.76137],[74.79176,17.76207],[74.79828,17.76011],[74.79944,17.76157],[74.80708,17.75503],[74.81231,17.75292],[74.81472,17.75354],[74.81553,17.75136],[74.8185,17.75058],[74.82007,17.74732],[74.82202,17.74673],[74.82359,17.7443],[74.82307,17.7419],[74.82666,17.73984],[74.82605,17.73806],[74.83852,17.7272],[74.84394,17.73165],[74.84453,17.73021],[74.84762,17.73215],[74.8477,17.72948],[74.84959,17.7279],[74.84862,17.72522],[74.85021,17.72461],[74.85522,17.72716],[74.8555,17.72928],[74.857,17.72783],[74.85961,17.73105],[74.86346,17.72925],[74.86751,17.73106],[74.86812,17.72849],[74.87184,17.72702],[74.87221,17.7246],[74.871,17.71943],[74.86784,17.71654],[74.86862,17.71192],[74.8646,17.70509],[74.86534,17.69845],[74.8641,17.6942],[74.86714,17.69184],[74.87069,17.69194],[74.87425,17.68173],[74.88095,17.68116],[74.88351,17.6848],[74.88574,17.6827],[74.88519,17.67734],[74.88773,17.67255],[74.8873,17.66921],[74.89207,17.66119],[74.891,17.65904],[74.89861,17.6488],[74.89911,17.6403],[74.90277,17.6365],[74.90316,17.63252],[74.90611,17.62928],[74.90904,17.62985],[74.90903,17.6209],[74.91658,17.62181],[74.91913,17.61847],[74.92372,17.61928],[74.91874,17.61251],[74.91669,17.60215],[74.91492,17.60146],[74.91745,17.5982],[74.9149,17.5931],[74.91544,17.58003],[74.92048,17.5768],[74.9348,17.58369],[74.94435,17.59079],[74.95308,17.58785],[74.95453,17.58986],[74.96186,17.59146],[74.96301,17.57747],[74.96076,17.56895],[74.96247,17.56207],[74.9743,17.55135],[74.98512,17.54489],[74.9841,17.53821],[74.98181,17.53846],[74.96981,17.53141],[74.95897,17.52233],[74.94855,17.52068],[74.94315,17.52189],[74.94032,17.51867],[74.93709,17.5093],[74.94309,17.5074],[74.94473,17.50501],[74.94425,17.50256],[74.94785,17.49844],[74.96058,17.492],[74.96253,17.48739],[74.9657,17.48479],[74.96664,17.47876],[74.96956,17.4756],[74.96869,17.47137],[74.9734,17.46613],[74.98026,17.46579],[74.99007,17.47569],[75.01819,17.48887],[75.02712,17.49526],[75.03173,17.49569],[75.03905,17.48658],[75.0416,17.46842],[75.03879,17.45773],[75.03259,17.44495],[75.03514,17.41808],[75.02428,17.41097],[75.02326,17.40794],[75.00474,17.41348],[75.00311,17.40877],[75.00036,17.40882],[74.99777,17.40664],[74.9995,17.4042],[74.99782,17.40406],[74.99443,17.39262],[74.99792,17.39263],[75.00146,17.38918],[75.0062,17.37848],[75.00832,17.36821],[74.98336,17.35549],[74.96797,17.34142],[74.96674,17.33887],[74.96749,17.33078],[74.97044,17.32692],[74.95977,17.29309],[74.93668,17.28539],[74.93638,17.27616],[74.93524,17.27552],[74.91057,17.27718],[74.90902,17.27597],[74.89951,17.26367],[74.89806,17.24153],[74.89273,17.23972],[74.89447,17.23661],[74.89159,17.23484],[74.88555,17.23516],[74.88522,17.2208],[74.88243,17.21824],[74.87778,17.22197],[74.87233,17.21989],[74.87629,17.21769],[74.87467,17.21573],[74.87683,17.21431],[74.87706,17.2121],[74.86708,17.21765],[74.86596,17.21632],[74.86377,17.2182],[74.85734,17.21542],[74.8533,17.20889],[74.85007,17.20768],[74.84833,17.2037],[74.85431,17.20764],[74.85735,17.21169],[74.85926,17.21106],[74.85836,17.20826],[74.85412,17.20285],[74.8581,17.20479],[74.86246,17.21129],[74.86519,17.21044],[74.86218,17.20828],[74.86297,17.20703],[74.8648,17.20792],[74.86506,17.20549],[74.86753,17.20514],[74.86882,17.21009],[74.87107,17.20887],[74.86939,17.20242],[74.86717,17.20286],[74.86249,17.19645],[74.87098,17.19789],[74.87127,17.19017],[74.87459,17.1945],[74.87672,17.19412],[74.87782,17.19206],[74.8765,17.19103],[74.87997,17.18869],[74.88574,17.1958],[74.89454,17.19527],[74.89476,17.19115],[74.88974,17.19164],[74.88604,17.18979],[74.8939,17.1846],[74.89355,17.1833],[74.88653,17.18126],[74.89195,17.18041],[74.89559,17.17637],[74.89549,17.17853],[74.89943,17.18396],[74.90027,17.18251],[74.89786,17.18095],[74.90039,17.17682],[74.90327,17.17602],[74.90509,17.17749],[74.90553,17.17498],[74.90897,17.17515],[74.91145,17.17292],[74.91861,17.17369],[74.91914,17.16689],[74.92092,17.16591],[74.92331,17.16766],[74.92959,17.16755],[74.93479,17.17001],[74.94098,17.16905],[74.95001,17.17388],[74.94647,17.18497],[74.95191,17.1858],[74.94959,17.19293],[74.94596,17.1893],[74.9439,17.19441],[74.94194,17.19126],[74.93967,17.19229],[74.94109,17.19432],[74.93956,17.19589],[74.94188,17.19881],[74.94727,17.19701],[74.94755,17.20123],[74.94363,17.2047],[74.94789,17.20199],[74.95238,17.20287],[74.95351,17.19881],[74.95627,17.19914],[74.95829,17.20136],[74.95907,17.19881],[74.96496,17.19804],[74.96402,17.19513],[74.97671,17.19286],[74.97922,17.1939],[74.9817,17.19772],[74.98189,17.20156],[74.98514,17.20486],[74.98885,17.20413],[75.00881,17.20928],[75.01617,17.2247],[75.05459,17.22458],[75.07771,17.22159],[75.07877,17.22521],[75.07514,17.23397],[75.07636,17.24095],[75.0796,17.2476],[75.09378,17.25161],[75.09481,17.24814],[75.09673,17.24916],[75.10002,17.24713],[75.09855,17.24581],[75.09918,17.24405],[75.11147,17.24179],[75.11277,17.24287],[75.11419,17.23966],[75.11637,17.24207],[75.12476,17.24344],[75.12838,17.24341],[75.13373,17.24064],[75.14298,17.24401],[75.16417,17.24011],[75.17657,17.24016],[75.17973,17.2357],[75.1824,17.24206],[75.18997,17.25097],[75.1891,17.25481],[75.19212,17.25836],[75.19365,17.26821],[75.20451,17.27036],[75.20384,17.26404],[75.2149,17.26091],[75.21956,17.25673],[75.22527,17.25436],[75.24468,17.25639],[75.24729,17.25546],[75.23935,17.23984],[75.23996,17.22881],[75.23874,17.22644],[75.24019,17.21823],[75.23844,17.21569],[75.23191,17.21282],[75.22763,17.2136],[75.22015,17.20888],[75.21684,17.20467],[75.2163,17.19535],[75.22224,17.18365],[75.22899,17.18115],[75.23003,17.17896],[75.23539,17.17875],[75.24708,17.17874],[75.25829,17.18306],[75.26825,17.18334],[75.26632,17.17909],[75.26995,17.17957],[75.26893,17.16717],[75.27027,17.14838],[75.28208,17.1485],[75.29057,17.14573],[75.29623,17.14598],[75.30068,17.15594],[75.3021,17.16567],[75.30459,17.16937],[75.29989,17.1787],[75.29701,17.18216],[75.29337,17.18352],[75.28283,17.19588],[75.28277,17.20701],[75.28718,17.21566],[75.31702,17.22042],[75.33024,17.2181],[75.33478,17.23955],[75.34427,17.2367],[75.35109,17.23757],[75.36565,17.23619],[75.37055,17.21719],[75.36995,17.1905],[75.37491,17.19172],[75.38909,17.19065],[75.39774,17.18663],[75.40676,17.18472],[75.40632,17.19062],[75.40885,17.1908],[75.40223,17.21151],[75.40957,17.22975],[75.40833,17.23934],[75.42091,17.26588],[75.4285,17.26799],[75.43491,17.26437],[75.44431,17.25479],[75.46579,17.25184],[75.46721,17.24443],[75.50427,17.23958],[75.51545,17.24036],[75.51891,17.24831],[75.52514,17.2569],[75.53221,17.26059],[75.53119,17.2643],[75.53652,17.26851],[75.54237,17.27693],[75.54753,17.27954],[75.55559,17.28072],[75.56589,17.28703],[75.57959,17.29273],[75.593,17.30329],[75.60346,17.30467],[75.61209,17.32514],[75.61235,17.33689],[75.61057,17.33687],[75.61003,17.34504],[75.59514,17.34621],[75.58629,17.35059],[75.58085,17.35122],[75.57718,17.37591],[75.57414,17.3833],[75.5936,17.3873],[75.60108,17.39031],[75.60612,17.39448],[75.61352,17.39192],[75.61208,17.4074],[75.6066,17.42037],[75.60958,17.42374],[75.61335,17.42474],[75.61545,17.43885],[75.62161,17.45925],[75.62744,17.4625],[75.63298,17.47721],[75.64879,17.47033],[75.65884,17.45806],[75.66895,17.45859],[75.67588,17.45594],[75.6785,17.45109],[75.67809,17.43406],[75.6835,17.41692],[75.69073,17.40947],[75.7045,17.40748],[75.71244,17.40793],[75.71998,17.41152],[75.72807,17.41942],[75.73359,17.42009],[75.75309,17.40713],[75.76587,17.4053],[75.7679,17.40235],[75.77203,17.38574],[75.78028,17.37564],[75.79294,17.3697],[75.80608,17.36802],[75.81366,17.37276],[75.8151,17.37847],[75.81358,17.39572],[75.81832,17.40662],[75.81898,17.4181],[75.82144,17.42122],[75.83026,17.42181],[75.85108,17.41053],[75.85406,17.40449],[75.85641,17.38943],[75.86088,17.38559],[75.8752,17.39809],[75.87452,17.41236],[75.87651,17.41614],[75.87848,17.41813],[75.88419,17.41796],[75.8919,17.40755],[75.89406,17.4012],[75.89524,17.37818],[75.89018,17.36117],[75.89058,17.35652],[75.8945,17.35083],[75.91008,17.34452],[75.9251,17.32575],[75.93082,17.32257],[75.96871,17.33647],[75.9839,17.33622],[75.99827,17.33797],[76.01019,17.35238],[76.01433,17.35353],[76.02853,17.35114],[76.03775,17.35188],[76.05277,17.35579],[76.06054,17.35531],[76.06463,17.35121],[76.07214,17.33531],[76.0734,17.33651],[76.07913,17.3316],[76.0875,17.33651],[76.08812,17.34217],[76.09347,17.34935],[76.08938,17.35313],[76.09974,17.36465],[76.11299,17.36752],[76.11895,17.3705],[76.133,17.35832],[76.14105,17.35349],[76.16262,17.34522],[76.16508,17.30334],[76.17632,17.30079],[76.18107,17.30905],[76.18325,17.31943],[76.17926,17.31857],[76.17658,17.32461],[76.17264,17.33629],[76.17031,17.35262],[76.18042,17.35839],[76.19639,17.36367],[76.21236,17.36199],[76.22944,17.36521],[76.22853,17.37584],[76.24209,17.37884],[76.24413,17.37879],[76.24458,17.37154],[76.25043,17.36968],[76.24905,17.36659],[76.25073,17.36043],[76.26504,17.36171],[76.26702,17.36348],[76.27004,17.36051],[76.27201,17.36059],[76.27636,17.33457],[76.31766,17.33238],[76.31886,17.33814],[76.31203,17.34601],[76.31434,17.34839],[76.3292,17.35081],[76.33803,17.35411],[76.3453,17.35445],[76.34703,17.3442],[76.35429,17.3244],[76.35401,17.31432],[76.38316,17.31453],[76.3851,17.32376],[76.39661,17.3471],[76.40316,17.34997],[76.41219,17.35107],[76.40912,17.37139],[76.38298,17.37397],[76.36343,17.37767],[76.37107,17.41343],[76.37,17.41694],[76.37151,17.43642],[76.35348,17.4373],[76.33326,17.4339],[76.33343,17.45548],[76.33095,17.45567],[76.33069,17.47019],[76.33321,17.47176],[76.35036,17.47417],[76.36824,17.4832],[76.37552,17.49022],[76.37469,17.49565],[76.36231,17.49592],[76.34576,17.49253],[76.34333,17.50066],[76.34657,17.51258],[76.3646,17.51497],[76.36716,17.5199],[76.36274,17.53737],[76.34875,17.53943],[76.34069,17.54247],[76.33853,17.5568],[76.33503,17.56518],[76.33313,17.56499],[76.33111,17.59622],[76.33129,17.59742],[76.33156,17.59598],[76.33674,17.5973],[76.35003,17.5941],[76.37764,17.59787],[76.3817,17.60225],[76.39186,17.60065],[76.39305,17.60315],[76.41968,17.60371],[76.41929,17.60623],[76.42679,17.62581],[76.42849,17.63379],[76.42724,17.63959],[76.42913,17.64456],[76.4128,17.64774],[76.4033,17.65724],[76.37823,17.66081],[76.38036,17.66404],[76.37852,17.68666],[76.37157,17.6846],[76.36319,17.68661],[76.35981,17.68941],[76.35625,17.69785],[76.35356,17.69633],[76.34538,17.69659],[76.33856,17.69275],[76.32038,17.69597],[76.31636,17.69812],[76.31562,17.71484],[76.3027,17.72073],[76.30328,17.72261],[76.29463,17.72979],[76.28767,17.72833],[76.28421,17.72968],[76.28021,17.72672],[76.27582,17.72898],[76.26789,17.72954],[76.26653,17.72682],[76.26366,17.72633],[76.26304,17.72275],[76.25442,17.71698],[76.25075,17.71164],[76.25012,17.70524],[76.23848,17.70594],[76.24015,17.69737],[76.22265,17.69911],[76.22193,17.68765],[76.20454,17.68921],[76.1879,17.68321],[76.16901,17.69345],[76.1647,17.69377],[76.16636,17.69999],[76.16504,17.70071],[76.14589,17.69981],[76.14669,17.7031],[76.14445,17.71203],[76.14711,17.71648],[76.14969,17.71868],[76.16528,17.71441],[76.16937,17.71696],[76.17517,17.72971],[76.17041,17.73233],[76.1474,17.73413],[76.14407,17.75614],[76.13345,17.75585],[76.12989,17.76077],[76.12933,17.76774],[76.11331,17.76787],[76.11334,17.7653],[76.10266,17.76504],[76.09728,17.77782],[76.0845,17.77781],[76.08333,17.77567],[76.07768,17.77549],[76.06914,17.77112],[76.05954,17.7698],[76.05351,17.76351],[76.04881,17.76503],[76.02954,17.76561],[76.01397,17.75449],[76.00708,17.75089],[76.00265,17.75035],[76.00173,17.75511],[75.99949,17.75625],[76.00324,17.76802],[76.0049,17.78613],[76.01126,17.78769],[76.00781,17.80079],[76.01402,17.81197],[76.01752,17.82676],[76.0198,17.82839],[76.00824,17.83018],[75.99581,17.83846],[75.98056,17.84379],[75.97488,17.84143],[75.97432,17.83474],[75.97729,17.82733],[75.97744,17.82011],[75.96598,17.81816],[75.96218,17.83113],[75.94661,17.84378],[75.94303,17.84419],[75.94109,17.85202],[75.93933,17.85244],[75.93181,17.85177],[75.92474,17.83315],[75.91098,17.8328],[75.91092,17.83451],[75.90364,17.83609],[75.88949,17.84468],[75.87501,17.84643],[75.87245,17.8565],[75.86399,17.86648],[75.85614,17.86866],[75.85217,17.88024],[75.8447,17.89161],[75.84219,17.90271],[75.84595,17.90306],[75.85126,17.92212],[75.84628,17.93145],[75.83809,17.93236],[75.83702,17.94814],[75.83923,17.96336],[75.84229,17.96717],[75.84507,17.97733],[75.84475,17.98069],[75.8396,17.98126],[75.844,17.9942],[75.85306,18.0093],[75.8559,18.01112],[75.86808,18.01157],[75.87201,18.01092],[75.87553,18.00769],[75.88384,18.00403],[75.889,18.00313],[75.89393,18.00528],[75.90711,18.00152],[75.9084,18.00357],[75.91035,17.99937],[75.90869,17.98814],[75.91048,17.98745],[75.91024,17.98527],[75.91459,17.97752],[75.91781,17.97578],[75.93017,17.97381],[75.95226,17.97897],[75.96895,17.97168],[75.97399,17.97111],[75.97971,17.97245],[75.98329,17.99356],[75.99639,17.99503],[75.99585,17.99979],[76.00408,18.02863],[76.00659,18.03237],[76.01872,18.04216],[76.0153,18.04732],[76.01383,18.05306],[76.0056,18.05064],[76.00263,18.05688],[75.9894,18.05187],[75.98444,18.05379],[75.9876,18.05961],[75.99338,18.06527],[75.99418,18.06931],[75.99026,18.0691],[75.98666,18.08834],[75.95559,18.08579],[75.95532,18.10039],[75.94617,18.10419],[75.94497,18.10713],[75.94407,18.11976],[75.94107,18.12602],[75.93788,18.12657],[75.94345,18.12863],[75.94515,18.13697],[75.94726,18.13578],[75.94719,18.13746],[75.94986,18.13928],[75.95709,18.16101],[75.9508,18.17282],[75.94179,18.18014],[75.93821,18.18039],[75.93792,18.18339],[75.93406,18.18395],[75.93388,18.19105],[75.92328,18.19321],[75.93372,18.22392],[75.94108,18.23915],[75.94337,18.23893],[75.94341,18.24412],[75.9422,18.24897],[75.93544,18.25236],[75.92875,18.25877],[75.92772,18.26495],[75.93017,18.27862],[75.92817,18.27881],[75.92645,18.28354],[75.92304,18.29981],[75.92432,18.30343],[75.92008,18.31225],[75.90561,18.3271],[75.90334,18.32766],[75.90226,18.33882],[75.89521,18.35866],[75.88965,18.36099],[75.88793,18.36332],[75.87864,18.36529],[75.86469,18.36286],[75.85832,18.35886],[75.85679,18.36254],[75.84979,18.36108],[75.8402,18.36407],[75.82662,18.37529],[75.82382,18.37952],[75.81816,18.37828],[75.81092,18.38063],[75.79729,18.38046],[75.79488,18.38413],[75.79564,18.3884],[75.78929,18.3903],[75.78015,18.396],[75.78303,18.40039],[75.77636,18.40483],[75.77294,18.40504],[75.77078,18.40859],[75.76749,18.43193],[75.76418,18.43292],[75.76419,18.43814],[75.76241,18.44049],[75.76745,18.4467],[75.76799,18.45099],[75.763,18.45023],[75.75784,18.43968],[75.75032,18.43542],[75.74096,18.4339],[75.73619,18.43516],[75.72747,18.43251],[75.72365,18.43354],[75.71566,18.41175],[75.70644,18.39629],[75.70772,18.39271],[75.71225,18.39075],[75.71078,18.39033],[75.72518,18.38681],[75.72393,18.37967],[75.72977,18.36175],[75.72802,18.35701],[75.72144,18.35195],[75.71895,18.34684],[75.71804,18.33734],[75.70521,18.33889],[75.69711,18.33147],[75.69558,18.32878],[75.69654,18.32713],[75.68247,18.32394],[75.68248,18.32567],[75.67847,18.32828],[75.65338,18.33312],[75.64728,18.32968],[75.64148,18.32018],[75.6421,18.3171],[75.6289,18.29924],[75.62564,18.28641],[75.62356,18.28466],[75.6214,18.285],[75.61381,18.27141],[75.6297,18.26589],[75.62859,18.24288],[75.62723,18.24107],[75.62496,18.24169],[75.58757,18.25439],[75.58342,18.24589],[75.57442,18.23785],[75.56848,18.23579],[75.56641,18.22596],[75.5622,18.2175],[75.56121,18.20312],[75.54857,18.20449],[75.55366,18.18946],[75.54407,18.17729],[75.54244,18.14924],[75.53399,18.14041],[75.53112,18.13364],[75.52541,18.13091],[75.52462,18.13477],[75.51452,18.1396],[75.51769,18.1449],[75.5026,18.15584],[75.49616,18.15691],[75.489,18.15195],[75.48598,18.15322],[75.48568,18.15645],[75.48893,18.16253],[75.48552,18.16757],[75.48651,18.17382],[75.47606,18.17412],[75.46115,18.1702],[75.45892,18.16794],[75.45927,18.16531],[75.46601,18.16476],[75.46399,18.15997],[75.46187,18.15926],[75.44605,18.17228],[75.43744,18.17519],[75.42886,18.17491],[75.42547,18.18209],[75.42601,18.18438],[75.43085,18.19786],[75.43837,18.20537],[75.43504,18.20997],[75.42572,18.21504],[75.42509,18.22712],[75.42751,18.231],[75.42284,18.2386],[75.41973,18.23806],[75.41974,18.23979],[75.42906,18.24746],[75.42932,18.26133],[75.3944,18.26383],[75.39513,18.27921],[75.3965,18.28166],[75.39325,18.28621],[75.40052,18.29673],[75.39466,18.30183],[75.39154,18.30728],[75.39594,18.31325],[75.40249,18.31659],[75.39815,18.32331],[75.40313,18.32582],[75.40326,18.32862],[75.401,18.32957],[75.38983,18.32565],[75.38697,18.32775],[75.38419,18.33185],[75.38216,18.34332],[75.37808,18.34744],[75.37149,18.35029],[75.36287,18.357],[75.35937,18.36122],[75.36022,18.36543],[75.35831,18.36844],[75.35015,18.36963],[75.34479,18.37699],[75.33634,18.38074],[75.33587,18.38691],[75.33345,18.38933],[75.33097,18.38911],[75.32984,18.38548],[75.32779,18.3847],[75.32519,18.3863],[75.3228,18.39326],[75.31396,18.39506],[75.30662,18.3892],[75.30377,18.39136],[75.29926,18.39933],[75.28942,18.40152],[75.28573,18.40535],[75.28397,18.41143],[75.28514,18.41805],[75.30121,18.43076],[75.2996,18.44391],[75.29638,18.44563],[75.29659,18.45705],[75.29817,18.46373],[75.30045,18.46415],[75.30318,18.47873],[75.30029,18.48991],[75.2987,18.49014],[75.29637,18.49623],[75.30345,18.50801],[75.31002,18.50848],[75.31298,18.51985],[75.3,18.52168],[75.28064,18.51932],[75.27977,18.51581],[75.26793,18.51257],[75.26646,18.50826],[75.2589,18.50829],[75.25296,18.51768],[75.24342,18.52614],[75.24089,18.5313],[75.24141,18.53701],[75.23926,18.54047],[75.23314,18.54225],[75.22886,18.54088]],[[75.60376,18.14551],[75.60366,18.14374],[75.60114,18.14769],[75.59358,18.14609],[75.58837,18.15284],[75.59165,18.15566],[75.60243,18.15921],[75.60445,18.14972],[75.60253,18.14961],[75.60376,18.14551]],[[75.60749,18.15434],[75.60509,18.15521],[75.60461,18.15991],[75.61177,18.16102],[75.61157,18.15781],[75.61411,18.15791],[75.61441,18.1506],[75.60959,18.15028],[75.61062,18.14677],[75.60716,18.14575],[75.60643,18.14969],[75.60903,18.14986],[75.60879,18.15246],[75.60572,18.15236],[75.60543,18.154],[75.60749,18.15434]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"497","area_level":"District","area_name":"Thane","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[73.48268,19.72579],[73.47567,19.73148],[73.4755,19.72377],[73.46494,19.71836],[73.45659,19.72351],[73.45704,19.71855],[73.45509,19.71441],[73.44599,19.71719],[73.43921,19.70864],[73.43342,19.71076],[73.43202,19.7035],[73.42985,19.70214],[73.4239,19.70707],[73.41993,19.70756],[73.41811,19.70589],[73.41465,19.70873],[73.41335,19.70785],[73.41485,19.69744],[73.40397,19.7011],[73.39972,19.69937],[73.39653,19.70004],[73.38627,19.6955],[73.38409,19.69623],[73.38256,19.70008],[73.37988,19.69826],[73.38106,19.69066],[73.37645,19.68839],[73.36831,19.69047],[73.36753,19.6868],[73.35883,19.68688],[73.34904,19.69525],[73.33081,19.69514],[73.31933,19.67355],[73.3134,19.67486],[73.31084,19.67361],[73.30111,19.68736],[73.30136,19.68946],[73.29933,19.68828],[73.28871,19.69324],[73.28374,19.69109],[73.27924,19.68386],[73.27985,19.6791],[73.2754,19.66848],[73.27383,19.66648],[73.27104,19.66715],[73.27302,19.65976],[73.27243,19.65448],[73.26747,19.6519],[73.27479,19.64578],[73.27945,19.63947],[73.28366,19.62627],[73.28084,19.62422],[73.27684,19.62431],[73.27225,19.62769],[73.25923,19.62943],[73.25611,19.6318],[73.25731,19.62856],[73.25284,19.62583],[73.24966,19.62054],[73.24731,19.61028],[73.23871,19.61193],[73.23695,19.61283],[73.2373,19.6158],[73.23403,19.61657],[73.22993,19.61429],[73.22706,19.6031],[73.22361,19.6044],[73.19902,19.6006],[73.19662,19.59896],[73.19448,19.60002],[73.19452,19.59419],[73.19833,19.5902],[73.20433,19.5791],[73.20406,19.56972],[73.21106,19.56239],[73.2079,19.5565],[73.19798,19.55347],[73.19742,19.55073],[73.18979,19.54629],[73.18635,19.54086],[73.17942,19.53784],[73.17239,19.52614],[73.16801,19.52247],[73.16328,19.52026],[73.14049,19.51903],[73.13338,19.51668],[73.12957,19.51089],[73.13311,19.50117],[73.12331,19.49904],[73.11851,19.496],[73.11214,19.4963],[73.1086,19.49405],[73.10361,19.49619],[73.10046,19.49562],[73.09632,19.49078],[73.08812,19.48881],[73.08425,19.48487],[73.07722,19.48409],[73.07262,19.47918],[73.05709,19.47898],[73.05274,19.48223],[73.04812,19.49317],[73.04385,19.4929],[73.03628,19.49729],[73.03125,19.49209],[73.0275,19.49117],[73.02807,19.49288],[73.0228,19.49441],[73.01715,19.50701],[73.01435,19.50739],[73.01076,19.50261],[73.00358,19.50363],[72.99994,19.49594],[72.98846,19.48985],[72.99308,19.48482],[72.99548,19.47881],[72.99307,19.47108],[72.99393,19.46676],[73.00167,19.4601],[73.01141,19.45512],[73.01743,19.44776],[73.02045,19.44685],[73.00498,19.43337],[73.00296,19.42623],[72.99053,19.41799],[72.987,19.41212],[72.9821,19.41218],[72.98102,19.41374],[72.97749,19.40823],[72.97697,19.39868],[72.97447,19.39735],[72.9599,19.39877],[72.9592,19.39417],[72.9622,19.38559],[72.95908,19.38165],[72.95696,19.38302],[72.94927,19.37927],[72.94742,19.35389],[72.94356,19.34595],[72.9419,19.33224],[72.94493,19.31288],[72.95399,19.30479],[72.95521,19.30033],[72.94314,19.2971],[72.93714,19.28933],[72.93232,19.28719],[72.92238,19.29009],[72.90224,19.28969],[72.89519,19.29446],[72.87541,19.31588],[72.87161,19.32202],[72.86029,19.32616],[72.83085,19.32852],[72.82491,19.32164],[72.81572,19.31448],[72.80034,19.31335],[72.79503,19.31503],[72.79285,19.31044],[72.78586,19.30638],[72.78387,19.30171],[72.7851,19.29901],[72.78438,19.28333],[72.78283,19.27939],[72.77866,19.27892],[72.78103,19.27012],[72.78322,19.26938],[72.78413,19.26654],[72.78548,19.26677],[72.78384,19.26507],[72.78948,19.26169],[72.79972,19.26255],[72.80174,19.2585],[72.81269,19.24976],[72.82402,19.24596],[72.83851,19.25315],[72.83826,19.25724],[72.83629,19.25964],[72.83976,19.26842],[72.84544,19.26679],[72.84918,19.26961],[72.85325,19.26699],[72.85781,19.26888],[72.86094,19.26683],[72.86227,19.26787],[72.86588,19.26681],[72.86561,19.26484],[72.86839,19.26138],[72.87539,19.26064],[72.88833,19.24981],[72.89929,19.24919],[72.90588,19.24665],[72.90603,19.23776],[72.91236,19.23197],[72.9178,19.22395],[72.9203,19.21349],[72.93072,19.2086],[72.9379,19.21109],[72.93355,19.20422],[72.93406,19.19113],[72.94046,19.18666],[72.94594,19.1876],[72.95011,19.18464],[72.95354,19.18508],[72.96228,19.17651],[72.9662,19.17792],[72.96667,19.17121],[72.96862,19.17126],[72.97187,19.16814],[72.97258,19.16221],[72.97565,19.15849],[72.98113,19.15561],[72.98002,19.15551],[72.97405,19.13698],[72.9756,19.13644],[72.96719,19.11032],[72.9657,19.09993],[72.96609,19.06929],[72.97565,19.04739],[72.97646,19.03862],[72.96957,19.01869],[72.95868,18.99886],[72.95605,18.98779],[72.99815,18.987],[73.02086,18.99524],[73.02463,18.99782],[73.02494,18.99975],[73.02974,18.99972],[73.04369,19.00739],[73.04484,19.01248],[73.04963,19.01597],[73.04655,19.02057],[73.04654,19.0259],[73.04879,19.02765],[73.04752,19.03291],[73.04935,19.04349],[73.04323,19.05453],[73.04617,19.05948],[73.04349,19.06928],[73.04484,19.08061],[73.04858,19.08787],[73.04709,19.09086],[73.04753,19.09982],[73.05716,19.10224],[73.06496,19.1107],[73.07482,19.11026],[73.07745,19.11437],[73.0812,19.11173],[73.08397,19.11569],[73.0866,19.11422],[73.09439,19.1148],[73.09966,19.10617],[73.10624,19.11019],[73.11103,19.11112],[73.11417,19.11091],[73.11558,19.10741],[73.11787,19.10674],[73.11984,19.1099],[73.12275,19.11051],[73.13035,19.10867],[73.13358,19.11716],[73.14341,19.12745],[73.15268,19.11353],[73.18215,19.10582],[73.17941,19.11594],[73.19408,19.12746],[73.20188,19.11517],[73.20873,19.10848],[73.21283,19.09939],[73.21817,19.0954],[73.22138,19.09551],[73.22472,19.09031],[73.23051,19.08796],[73.23486,19.06856],[73.23808,19.07015],[73.24345,19.06464],[73.25074,19.06177],[73.25684,19.06211],[73.26407,19.06627],[73.26422,19.07223],[73.27292,19.07936],[73.27671,19.08526],[73.28164,19.08736],[73.29778,19.08344],[73.29763,19.07232],[73.30124,19.07253],[73.30588,19.07844],[73.31144,19.07935],[73.31396,19.0769],[73.31879,19.0801],[73.32201,19.08699],[73.30928,19.0996],[73.30743,19.10693],[73.31623,19.10763],[73.32145,19.11672],[73.32634,19.11967],[73.33338,19.12012],[73.33435,19.12329],[73.34154,19.12428],[73.34859,19.12869],[73.35839,19.13077],[73.37229,19.12669],[73.37317,19.12828],[73.38566,19.1328],[73.39553,19.1316],[73.40455,19.13469],[73.41363,19.12988],[73.42379,19.13002],[73.43063,19.12638],[73.44617,19.13404],[73.45726,19.1314],[73.46744,19.13548],[73.47775,19.13315],[73.48546,19.12677],[73.48652,19.12326],[73.49023,19.12547],[73.49051,19.12795],[73.51283,19.12858],[73.51747,19.13089],[73.52309,19.13122],[73.52725,19.12705],[73.53508,19.12473],[73.54244,19.12026],[73.54255,19.14054],[73.53864,19.1444],[73.53419,19.14564],[73.53284,19.15355],[73.5401,19.16074],[73.54258,19.15883],[73.53777,19.16706],[73.53629,19.17704],[73.53653,19.17884],[73.53979,19.17627],[73.54294,19.17814],[73.54451,19.17713],[73.54627,19.18158],[73.54583,19.18709],[73.55049,19.18709],[73.55611,19.18393],[73.56026,19.18753],[73.56615,19.1846],[73.56698,19.19006],[73.57585,19.19437],[73.57617,19.19252],[73.58384,19.19028],[73.58885,19.19326],[73.59104,19.19155],[73.59328,19.19233],[73.59506,19.19554],[73.59692,19.19566],[73.5991,19.19225],[73.59972,19.19439],[73.60146,19.19462],[73.60312,19.1916],[73.60637,19.1905],[73.60568,19.19494],[73.60814,19.19362],[73.61053,19.20194],[73.60865,19.21061],[73.62269,19.21646],[73.62665,19.20732],[73.62997,19.20571],[73.63515,19.20926],[73.63662,19.21453],[73.64472,19.21989],[73.64945,19.22923],[73.65834,19.23933],[73.66267,19.24207],[73.67206,19.23947],[73.68539,19.24232],[73.69176,19.25128],[73.69327,19.25147],[73.69501,19.25818],[73.69017,19.26869],[73.68723,19.27244],[73.68052,19.27389],[73.67348,19.29024],[73.66747,19.29143],[73.67293,19.30111],[73.66926,19.30517],[73.67214,19.30684],[73.68167,19.30747],[73.6826,19.31166],[73.68686,19.31513],[73.70134,19.31458],[73.70186,19.3127],[73.7073,19.32358],[73.70942,19.32491],[73.73821,19.33306],[73.74687,19.33723],[73.74587,19.32865],[73.7434,19.32423],[73.74604,19.32422],[73.74716,19.31815],[73.74896,19.31837],[73.74787,19.32194],[73.75045,19.3274],[73.75837,19.33115],[73.76115,19.32752],[73.76411,19.33026],[73.77015,19.33155],[73.77263,19.33793],[73.77171,19.34238],[73.77906,19.33586],[73.78169,19.33497],[73.78253,19.33667],[73.78746,19.3382],[73.79325,19.33379],[73.79474,19.34274],[73.77798,19.38724],[73.77144,19.38648],[73.76995,19.39201],[73.75306,19.39705],[73.75141,19.40725],[73.74487,19.40889],[73.73592,19.40754],[73.73608,19.41012],[73.72898,19.422],[73.73072,19.43023],[73.72631,19.43165],[73.7107,19.43169],[73.70774,19.43069],[73.70788,19.42768],[73.70677,19.43152],[73.70319,19.43455],[73.69314,19.43357],[73.68777,19.44023],[73.68897,19.44075],[73.6846,19.4448],[73.68588,19.44962],[73.68478,19.46615],[73.69483,19.46979],[73.69659,19.47609],[73.69585,19.47871],[73.70598,19.47899],[73.70794,19.48444],[73.71351,19.48443],[73.70822,19.49151],[73.70799,19.49605],[73.70573,19.49766],[73.68629,19.50015],[73.69007,19.50487],[73.68979,19.50648],[73.68641,19.51047],[73.68614,19.51445],[73.68209,19.51538],[73.67962,19.51876],[73.67903,19.51342],[73.67518,19.50949],[73.66988,19.51337],[73.66457,19.51212],[73.66298,19.52134],[73.65991,19.52597],[73.66021,19.52966],[73.65693,19.53684],[73.64933,19.53834],[73.64531,19.53706],[73.64436,19.53848],[73.63913,19.53915],[73.63511,19.53294],[73.63292,19.53271],[73.63191,19.54165],[73.62892,19.54082],[73.62514,19.5435],[73.62261,19.54208],[73.62328,19.5454],[73.6219,19.54853],[73.62666,19.55306],[73.62768,19.55699],[73.62589,19.56597],[73.62846,19.5685],[73.62686,19.57292],[73.62565,19.57161],[73.62443,19.57487],[73.6177,19.58133],[73.61438,19.57674],[73.61561,19.58453],[73.61814,19.58632],[73.61587,19.58612],[73.614,19.59548],[73.60634,19.59496],[73.58365,19.6065],[73.57943,19.60231],[73.57492,19.60216],[73.58141,19.60871],[73.58121,19.61295],[73.57547,19.6184],[73.57083,19.61955],[73.56883,19.61624],[73.56328,19.61848],[73.56342,19.62616],[73.55959,19.64437],[73.55555,19.64858],[73.55324,19.64767],[73.55016,19.65272],[73.54413,19.6579],[73.54389,19.66488],[73.53465,19.67459],[73.52827,19.68923],[73.52855,19.69773],[73.52336,19.6964],[73.51456,19.69869],[73.51899,19.70751],[73.50059,19.71486],[73.49951,19.71662],[73.4948,19.71677],[73.49266,19.72059],[73.48613,19.72243],[73.4856,19.72575],[73.48268,19.72579]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"498","area_level":"District","area_name":"Wardha","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.09583,21.35429],[78.08565,21.35927],[78.07425,21.35379],[78.07399,21.34982],[78.07895,21.3362],[78.07935,21.32731],[78.06872,21.30082],[78.0689,21.29837],[78.07959,21.28939],[78.08046,21.28159],[78.07602,21.27646],[78.07341,21.27602],[78.06971,21.27871],[78.06158,21.27745],[78.05888,21.27369],[78.05824,21.2659],[78.05224,21.25724],[78.05815,21.23957],[78.06734,21.23999],[78.07182,21.23637],[78.07335,21.23104],[78.06976,21.22755],[78.07082,21.22132],[78.08737,21.21025],[78.09678,21.19887],[78.09859,21.18879],[78.09227,21.18249],[78.09156,21.17951],[78.11389,21.16187],[78.1184,21.15638],[78.12501,21.15406],[78.1276,21.15061],[78.13171,21.14939],[78.13612,21.14424],[78.1435,21.13988],[78.14375,21.13774],[78.13736,21.1322],[78.13569,21.12505],[78.12834,21.11445],[78.13239,21.10502],[78.14234,21.10469],[78.14468,21.10326],[78.14513,21.09577],[78.15049,21.07556],[78.14949,21.06537],[78.14657,21.05779],[78.14985,21.05178],[78.14972,21.04808],[78.14509,21.04071],[78.13864,21.04027],[78.1362,21.03818],[78.14395,21.02912],[78.14471,21.02348],[78.14385,21.01982],[78.13495,21.01026],[78.13561,21.00121],[78.13905,20.99598],[78.14522,20.99205],[78.14422,20.98904],[78.14826,20.98475],[78.14866,20.96628],[78.146,20.95944],[78.14279,20.95612],[78.14281,20.95297],[78.15645,20.94573],[78.16338,20.94533],[78.16824,20.94187],[78.17026,20.93813],[78.1698,20.92971],[78.17531,20.92583],[78.17642,20.92283],[78.17399,20.91524],[78.17909,20.91036],[78.18294,20.90374],[78.19939,20.89931],[78.20849,20.90012],[78.2132,20.9086],[78.22319,20.89967],[78.24181,20.89343],[78.25199,20.88743],[78.25748,20.88681],[78.25814,20.88064],[78.26269,20.8715],[78.27552,20.86129],[78.27517,20.85574],[78.27937,20.8434],[78.28381,20.8405],[78.28999,20.84164],[78.29276,20.84036],[78.29141,20.82972],[78.29238,20.82792],[78.29478,20.82679],[78.29851,20.82776],[78.3058,20.83464],[78.31176,20.83374],[78.31254,20.82744],[78.31722,20.82036],[78.31611,20.81714],[78.3098,20.81252],[78.29879,20.81246],[78.29715,20.81119],[78.29771,20.80491],[78.2935,20.79998],[78.2956,20.79305],[78.29254,20.78291],[78.29237,20.77691],[78.2937,20.77428],[78.30596,20.76446],[78.30855,20.75589],[78.30512,20.74954],[78.30482,20.74531],[78.30672,20.74171],[78.31169,20.73802],[78.30488,20.71933],[78.29973,20.7151],[78.2998,20.70236],[78.2971,20.69914],[78.29383,20.69886],[78.29134,20.70316],[78.29439,20.70828],[78.29296,20.70987],[78.28972,20.70947],[78.28486,20.70041],[78.27886,20.7001],[78.27721,20.69859],[78.27657,20.6885],[78.26686,20.68045],[78.26649,20.67642],[78.27024,20.6683],[78.26486,20.65992],[78.24867,20.64549],[78.25327,20.63511],[78.25168,20.61488],[78.25756,20.60729],[78.25947,20.60189],[78.25682,20.59785],[78.26254,20.58756],[78.2633,20.57849],[78.27466,20.57059],[78.27509,20.5653],[78.27999,20.56024],[78.28483,20.55908],[78.29374,20.56068],[78.29795,20.55561],[78.33339,20.54543],[78.34549,20.53896],[78.34909,20.53305],[78.35557,20.52904],[78.36025,20.52894],[78.36355,20.53351],[78.36788,20.53378],[78.38016,20.52852],[78.3851,20.51987],[78.39542,20.51823],[78.40456,20.51317],[78.40993,20.51194],[78.42029,20.5135],[78.43356,20.51949],[78.44219,20.51386],[78.45044,20.5129],[78.46595,20.5222],[78.47006,20.52717],[78.47413,20.52816],[78.48494,20.52848],[78.49502,20.52244],[78.50855,20.52315],[78.509,20.51698],[78.51621,20.51267],[78.51779,20.50626],[78.52143,20.50119],[78.52144,20.49207],[78.52802,20.48574],[78.53296,20.48383],[78.53516,20.48055],[78.53601,20.47808],[78.53419,20.46912],[78.5357,20.4663],[78.5443,20.45812],[78.54608,20.45433],[78.5553,20.45127],[78.56377,20.4396],[78.58021,20.43314],[78.60621,20.43156],[78.60935,20.43368],[78.60812,20.43985],[78.60889,20.44263],[78.61199,20.44486],[78.61439,20.44343],[78.6167,20.43664],[78.61931,20.43558],[78.64027,20.43669],[78.64832,20.43447],[78.64817,20.42901],[78.64636,20.4288],[78.64375,20.42447],[78.64548,20.42022],[78.65499,20.41574],[78.65908,20.41192],[78.6632,20.39597],[78.67812,20.38347],[78.6886,20.37067],[78.68933,20.35922],[78.70369,20.3539],[78.70825,20.34981],[78.71018,20.33741],[78.70778,20.329],[78.7084,20.32084],[78.70614,20.31225],[78.72905,20.30673],[78.73507,20.29469],[78.73826,20.29379],[78.7494,20.29786],[78.75822,20.29482],[78.76653,20.29513],[78.7762,20.30071],[78.78869,20.29738],[78.79877,20.29956],[78.80528,20.31026],[78.81711,20.31578],[78.82505,20.31743],[78.83053,20.32155],[78.83202,20.32969],[78.8306,20.33629],[78.81994,20.35006],[78.82583,20.36288],[78.82035,20.37152],[78.81919,20.38491],[78.81638,20.39142],[78.81748,20.39148],[78.81691,20.39609],[78.81857,20.40301],[78.81982,20.40154],[78.82196,20.40535],[78.82545,20.40413],[78.84343,20.40652],[78.85204,20.4154],[78.84534,20.41794],[78.84162,20.42224],[78.83425,20.42556],[78.83409,20.42722],[78.8388,20.42769],[78.84232,20.43428],[78.84468,20.43424],[78.85079,20.42802],[78.8544,20.42698],[78.85334,20.42403],[78.85706,20.42107],[78.8631,20.42185],[78.86635,20.42476],[78.88477,20.42785],[78.89424,20.43602],[78.89884,20.4376],[78.90962,20.43157],[78.92109,20.43231],[78.92506,20.4304],[78.93053,20.431],[78.93437,20.42855],[78.94486,20.42793],[78.94556,20.43044],[78.94757,20.43073],[78.95319,20.42879],[78.95558,20.43454],[78.96124,20.43708],[78.96573,20.44591],[78.96714,20.44993],[78.96687,20.4605],[78.98162,20.45884],[78.98347,20.46128],[78.9866,20.46093],[78.98735,20.46575],[78.99456,20.45963],[79.0004,20.45084],[79.00475,20.45595],[79.00654,20.45509],[79.00955,20.46508],[79.0153,20.47145],[79.01545,20.47501],[79.02063,20.47748],[79.02295,20.48334],[79.03536,20.48064],[79.03707,20.47754],[79.04345,20.47801],[79.04383,20.47585],[79.04782,20.475],[79.04716,20.46955],[79.05152,20.46851],[79.05191,20.4665],[79.06197,20.46911],[79.07082,20.4683],[79.07465,20.46608],[79.08662,20.46389],[79.09618,20.46392],[79.10131,20.46163],[79.10165,20.45757],[79.11333,20.45547],[79.11975,20.45127],[79.12702,20.45584],[79.1325,20.45707],[79.1329,20.46432],[79.13488,20.46421],[79.13856,20.47207],[79.13979,20.48219],[79.15256,20.48272],[79.15777,20.47815],[79.16022,20.4876],[79.166,20.49274],[79.16979,20.5143],[79.17465,20.51526],[79.18101,20.51238],[79.18289,20.51471],[79.18462,20.52578],[79.19425,20.53908],[79.19905,20.54267],[79.20821,20.54457],[79.21359,20.54759],[79.21384,20.55008],[79.21764,20.55261],[79.21729,20.56099],[79.22141,20.56733],[79.22236,20.57313],[79.21978,20.59071],[79.21534,20.5924],[79.21073,20.59603],[79.21103,20.59828],[79.2052,20.60143],[79.1926,20.60269],[79.19125,20.59966],[79.1889,20.59916],[79.18763,20.6077],[79.18593,20.60894],[79.18658,20.61441],[79.18367,20.6146],[79.18405,20.62127],[79.17923,20.61906],[79.16864,20.627],[79.17071,20.64559],[79.15771,20.6517],[79.14736,20.65362],[79.14828,20.66117],[79.14371,20.6636],[79.14452,20.66905],[79.14253,20.67358],[79.14276,20.67905],[79.12767,20.6808],[79.12335,20.68392],[79.12005,20.68311],[79.11419,20.68465],[79.11137,20.68827],[79.10521,20.68794],[79.10528,20.69255],[79.10914,20.70232],[79.10388,20.71148],[79.10337,20.71569],[79.10118,20.71587],[79.09669,20.71209],[79.08999,20.71123],[79.08576,20.71681],[79.08229,20.71632],[79.07296,20.71923],[79.07251,20.72668],[79.05497,20.72746],[79.05552,20.72934],[79.05183,20.72915],[79.04997,20.73339],[79.05026,20.73766],[79.04211,20.73789],[79.03627,20.74175],[79.03468,20.73811],[79.0156,20.73983],[79.01591,20.74429],[79.01126,20.74591],[79.01166,20.7478],[78.99738,20.74482],[78.99608,20.75604],[78.9943,20.75448],[78.98661,20.75355],[78.97475,20.75524],[78.95866,20.76005],[78.95933,20.7623],[78.95301,20.76821],[78.94243,20.76666],[78.94075,20.77085],[78.94093,20.78134],[78.94447,20.78206],[78.94539,20.79374],[78.93545,20.79755],[78.92441,20.79813],[78.92297,20.80202],[78.91186,20.8085],[78.91518,20.81245],[78.91678,20.81954],[78.91266,20.81961],[78.91188,20.82245],[78.91347,20.83028],[78.91244,20.83055],[78.91285,20.83599],[78.90969,20.83608],[78.90778,20.83887],[78.89947,20.8414],[78.88361,20.8436],[78.88159,20.83554],[78.87804,20.82979],[78.87401,20.82993],[78.86766,20.83352],[78.86568,20.84004],[78.86064,20.84162],[78.85973,20.85238],[78.8577,20.85492],[78.85863,20.86677],[78.86095,20.86982],[78.86004,20.87452],[78.84743,20.87862],[78.85097,20.88624],[78.84798,20.88667],[78.83996,20.89294],[78.8286,20.89456],[78.82459,20.89293],[78.81719,20.88073],[78.80544,20.88648],[78.78563,20.8901],[78.77302,20.90409],[78.77513,20.90943],[78.78229,20.91124],[78.77556,20.91315],[78.76962,20.91224],[78.76902,20.91737],[78.76646,20.92044],[78.75769,20.92092],[78.75277,20.92341],[78.74844,20.93058],[78.74241,20.93454],[78.74286,20.93619],[78.73963,20.93955],[78.74848,20.94458],[78.74221,20.94384],[78.73321,20.9463],[78.73094,20.95809],[78.73183,20.95959],[78.73015,20.96327],[78.72435,20.96885],[78.72576,20.97341],[78.72338,20.97938],[78.72541,20.983],[78.7238,20.98851],[78.72494,20.99226],[78.72944,20.99458],[78.72657,21.00417],[78.72545,21.00445],[78.72516,21.00249],[78.72033,21.0055],[78.716,21.0041],[78.71214,21.00854],[78.71036,21.01395],[78.70735,21.01353],[78.69216,21.0178],[78.68626,21.02089],[78.68274,21.0295],[78.67802,21.03008],[78.67922,21.03332],[78.67654,21.03269],[78.67564,21.03608],[78.66607,21.03348],[78.66137,21.03451],[78.6559,21.0332],[78.64917,21.03558],[78.65063,21.04491],[78.64963,21.05189],[78.64524,21.05487],[78.64354,21.05837],[78.6293,21.05773],[78.62662,21.06647],[78.62139,21.06813],[78.61762,21.06541],[78.61506,21.06548],[78.61496,21.06859],[78.61161,21.07019],[78.60704,21.06962],[78.61004,21.07931],[78.61063,21.08837],[78.59721,21.08964],[78.59804,21.09649],[78.59447,21.09757],[78.59539,21.10263],[78.59737,21.10587],[78.59928,21.10581],[78.59933,21.10807],[78.59018,21.10961],[78.58815,21.11154],[78.58818,21.1149],[78.58472,21.11664],[78.57409,21.11415],[78.55495,21.11677],[78.55266,21.11899],[78.55284,21.12575],[78.54688,21.12767],[78.5451,21.1327],[78.54027,21.13683],[78.53028,21.14033],[78.5281,21.15087],[78.52339,21.15218],[78.52424,21.15457],[78.5185,21.16282],[78.52033,21.16866],[78.5198,21.17441],[78.51058,21.1827],[78.50987,21.1869],[78.50296,21.1872],[78.50202,21.1908],[78.49168,21.20057],[78.48624,21.20717],[78.48555,21.2103],[78.47839,21.21305],[78.47713,21.21974],[78.47041,21.21598],[78.46949,21.21893],[78.46378,21.2213],[78.46324,21.22405],[78.45494,21.22496],[78.44528,21.236],[78.44075,21.23468],[78.4301,21.22599],[78.41659,21.229],[78.41351,21.23261],[78.41193,21.23921],[78.40069,21.23945],[78.3825,21.24313],[78.37536,21.24205],[78.35835,21.25268],[78.34206,21.25322],[78.33764,21.25036],[78.3314,21.25001],[78.32458,21.25578],[78.32445,21.26294],[78.32937,21.26788],[78.32779,21.27127],[78.321,21.27319],[78.31093,21.26809],[78.30345,21.27549],[78.30323,21.27954],[78.30915,21.28632],[78.31265,21.29458],[78.29416,21.29313],[78.28567,21.30227],[78.27744,21.30645],[78.2751,21.31112],[78.26993,21.31508],[78.26781,21.32157],[78.26417,21.32288],[78.25728,21.32996],[78.25568,21.32977],[78.25394,21.3255],[78.2496,21.33124],[78.23208,21.32739],[78.21139,21.33382],[78.19697,21.33128],[78.18337,21.33319],[78.15583,21.33162],[78.15151,21.3334],[78.15144,21.33996],[78.14851,21.34315],[78.14135,21.34284],[78.13107,21.34672],[78.12361,21.34701],[78.10308,21.3565],[78.09583,21.35429]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"499","area_level":"District","area_name":"Washim","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.58165,20.7267],[77.57789,20.72692],[77.5774,20.71917],[77.57458,20.71408],[77.57304,20.70537],[77.56528,20.70749],[77.56343,20.70105],[77.54974,20.7039],[77.52624,20.70118],[77.52351,20.69731],[77.53956,20.69653],[77.54324,20.67828],[77.5381,20.67757],[77.51385,20.68169],[77.51313,20.67833],[77.5153,20.67329],[77.51084,20.66441],[77.50399,20.66485],[77.50299,20.67163],[77.50127,20.67189],[77.50087,20.6749],[77.49308,20.68289],[77.48101,20.68204],[77.48377,20.66321],[77.48565,20.66225],[77.48468,20.65711],[77.47859,20.65515],[77.46916,20.65691],[77.46359,20.66019],[77.46136,20.66587],[77.45382,20.66468],[77.45262,20.65686],[77.43089,20.66226],[77.43033,20.66056],[77.43255,20.65754],[77.43842,20.65316],[77.43856,20.64255],[77.4426,20.64229],[77.44532,20.6393],[77.45176,20.63816],[77.45107,20.63449],[77.46477,20.62855],[77.46707,20.61091],[77.45977,20.60972],[77.43103,20.6123],[77.41087,20.60692],[77.41436,20.60203],[77.41303,20.59396],[77.40985,20.59447],[77.40926,20.58707],[77.39944,20.58532],[77.39568,20.57981],[77.36567,20.58338],[77.36571,20.57775],[77.36208,20.56764],[77.34985,20.56995],[77.33944,20.57526],[77.33538,20.54865],[77.34122,20.54743],[77.33714,20.53751],[77.33634,20.52578],[77.36441,20.51819],[77.36708,20.51942],[77.36833,20.52549],[77.39567,20.52544],[77.38898,20.5017],[77.38724,20.49757],[77.38405,20.49552],[77.38163,20.48315],[77.36793,20.48003],[77.3702,20.48762],[77.36988,20.4957],[77.36805,20.49653],[77.34037,20.4964],[77.32748,20.49797],[77.32483,20.48703],[77.33923,20.48378],[77.34412,20.48054],[77.34343,20.47164],[77.33321,20.47257],[77.33237,20.47011],[77.32631,20.46481],[77.32548,20.45032],[77.31808,20.45056],[77.31383,20.45231],[77.31405,20.4497],[77.29803,20.44587],[77.29615,20.43944],[77.29664,20.42498],[77.29604,20.42214],[77.29379,20.42071],[77.28456,20.41833],[77.28183,20.41893],[77.27771,20.42363],[77.27776,20.43059],[77.27338,20.43267],[77.27126,20.44159],[77.26716,20.44849],[77.2663,20.4586],[77.25513,20.45784],[77.24681,20.45974],[77.24571,20.46035],[77.24679,20.47237],[77.22957,20.47339],[77.22517,20.44741],[77.21252,20.44789],[77.20955,20.44496],[77.2064,20.448],[77.20168,20.44956],[77.18982,20.4469],[77.18555,20.44738],[77.18233,20.43732],[77.18286,20.43173],[77.18864,20.42996],[77.19094,20.42364],[77.19721,20.42376],[77.19724,20.42222],[77.19509,20.40919],[77.19144,20.40229],[77.18953,20.40243],[77.18507,20.39841],[77.18041,20.39753],[77.17126,20.40118],[77.16948,20.39918],[77.15152,20.39914],[77.1521,20.39256],[77.14559,20.38638],[77.14404,20.38053],[77.14206,20.38015],[77.13815,20.38514],[77.13648,20.39141],[77.13191,20.3904],[77.13264,20.39521],[77.1304,20.39889],[77.12727,20.39901],[77.12111,20.40277],[77.12021,20.4111],[77.11589,20.408],[77.11324,20.41162],[77.10493,20.41097],[77.10294,20.41521],[77.08517,20.41936],[77.08522,20.42232],[77.07961,20.42386],[77.07314,20.40148],[77.0745,20.39361],[77.08119,20.39045],[77.08115,20.38895],[77.07972,20.3867],[77.06873,20.38528],[77.06829,20.38286],[77.06246,20.38136],[77.04533,20.38655],[77.04556,20.3934],[77.05095,20.40742],[77.04684,20.41585],[77.04711,20.41931],[77.05966,20.43944],[77.05902,20.44537],[77.05732,20.44705],[77.04479,20.44966],[77.02231,20.44992],[77.02141,20.44319],[77.01368,20.43173],[77.01448,20.41271],[77.00351,20.41475],[77.00182,20.41136],[76.99358,20.40904],[76.99101,20.40434],[76.99576,20.39803],[76.99531,20.39355],[76.98935,20.39448],[76.98634,20.38916],[76.98112,20.38778],[76.98104,20.38009],[76.97446,20.38037],[76.97357,20.37749],[76.97799,20.37283],[76.97799,20.37035],[76.96466,20.36764],[76.95707,20.36345],[76.95331,20.36347],[76.94908,20.36557],[76.94308,20.36537],[76.94041,20.36899],[76.93617,20.37061],[76.93327,20.36677],[76.93199,20.35704],[76.92979,20.35582],[76.91947,20.35964],[76.91671,20.35135],[76.90478,20.34448],[76.89673,20.33443],[76.89622,20.32876],[76.89171,20.32078],[76.89155,20.31702],[76.90239,20.31319],[76.90883,20.31311],[76.89328,20.30413],[76.88081,20.29416],[76.87764,20.28804],[76.88212,20.28496],[76.88021,20.2797],[76.87284,20.27523],[76.8687,20.27786],[76.86584,20.28205],[76.86584,20.29061],[76.86206,20.29673],[76.85825,20.29937],[76.85218,20.30021],[76.85025,20.29762],[76.83776,20.29605],[76.83679,20.29428],[76.83801,20.28908],[76.83231,20.28276],[76.82011,20.27989],[76.82608,20.26973],[76.8208,20.26136],[76.8247,20.24924],[76.82427,20.24197],[76.82131,20.23471],[76.81262,20.22524],[76.81093,20.21933],[76.80152,20.221],[76.79485,20.21829],[76.78922,20.20592],[76.7847,20.20322],[76.77295,20.206],[76.77349,20.20784],[76.76828,20.20936],[76.75241,20.20887],[76.75054,20.20862],[76.7506,20.20701],[76.74678,20.20672],[76.74518,20.19613],[76.74687,20.1884],[76.74932,20.18699],[76.75034,20.17753],[76.74829,20.16543],[76.76217,20.16133],[76.76017,20.1395],[76.75742,20.13111],[76.73218,20.12504],[76.7221,20.12719],[76.708,20.12273],[76.69646,20.12168],[76.68195,20.12296],[76.66893,20.12611],[76.66675,20.11942],[76.65811,20.11345],[76.65785,20.10619],[76.66024,20.09722],[76.65825,20.09761],[76.6519,20.09139],[76.64846,20.06956],[76.63755,20.0717],[76.63283,20.0744],[76.63409,20.08068],[76.63046,20.08221],[76.62403,20.05125],[76.6631,20.04756],[76.65843,20.02182],[76.65836,20.00187],[76.6455,19.98466],[76.66072,19.97872],[76.66081,19.97659],[76.65906,19.96438],[76.64536,19.96489],[76.63663,19.95946],[76.63451,19.95638],[76.63646,19.93368],[76.62839,19.92549],[76.62233,19.92307],[76.60674,19.9248],[76.60567,19.92213],[76.61067,19.91813],[76.61365,19.90674],[76.61275,19.90171],[76.61065,19.89979],[76.61098,19.89309],[76.62431,19.88954],[76.63324,19.89931],[76.65439,19.90051],[76.65965,19.89234],[76.65879,19.8857],[76.65301,19.87881],[76.65263,19.87359],[76.64713,19.867],[76.65453,19.86013],[76.65495,19.85748],[76.66166,19.85325],[76.6812,19.84699],[76.68493,19.85026],[76.68854,19.85834],[76.69195,19.85961],[76.68929,19.86383],[76.69305,19.87059],[76.69295,19.874],[76.69857,19.87543],[76.70663,19.87202],[76.72132,19.86945],[76.74027,19.87331],[76.74367,19.88558],[76.74255,19.90188],[76.74715,19.91231],[76.7614,19.90493],[76.7654,19.90441],[76.77069,19.91892],[76.77229,19.93578],[76.77768,19.93405],[76.79524,19.93297],[76.80529,19.92992],[76.82136,19.9292],[76.83053,19.94735],[76.83296,19.95698],[76.83728,19.96391],[76.85984,19.96154],[76.87231,19.95828],[76.87315,19.9543],[76.88899,19.9528],[76.89538,19.94913],[76.89835,19.9531],[76.89956,19.95273],[76.90046,19.96426],[76.91274,19.96928],[76.92235,19.97587],[76.93377,19.97886],[76.94378,19.98484],[76.96189,19.98728],[76.9724,19.99641],[76.98835,19.99807],[76.99211,20.01191],[76.99198,20.01683],[76.99495,20.01763],[77.01245,20.0024],[77.01972,20.00294],[77.02549,20.00968],[77.03414,20.00933],[77.03669,20.00831],[77.03755,20.00473],[77.04206,19.99903],[77.05529,19.99681],[77.06163,19.99389],[77.06277,19.98521],[77.07042,19.98161],[77.06936,19.97567],[77.07079,19.9722],[77.08467,19.964],[77.08258,19.95554],[77.0931,19.94371],[77.093,19.93523],[77.1023,19.93147],[77.10484,19.93194],[77.11408,19.93995],[77.12073,19.93991],[77.12503,19.94237],[77.13361,19.94189],[77.13552,19.94393],[77.13617,19.95268],[77.15409,19.96591],[77.16948,19.96451],[77.17298,19.9676],[77.17786,19.97976],[77.19334,19.98571],[77.19442,19.98878],[77.19901,19.99126],[77.20294,19.99019],[77.20391,19.9867],[77.21095,19.98005],[77.21489,19.97332],[77.21293,19.97064],[77.20839,19.96898],[77.20729,19.95526],[77.20386,19.94858],[77.20549,19.94211],[77.21073,19.938],[77.21635,19.93884],[77.22537,19.93717],[77.23526,19.93867],[77.23822,19.93453],[77.23678,19.92757],[77.23799,19.91268],[77.24562,19.9055],[77.23392,19.8971],[77.23551,19.89066],[77.23908,19.88969],[77.25013,19.89488],[77.25581,19.90162],[77.26629,19.89764],[77.26957,19.90235],[77.26909,19.91757],[77.27116,19.91958],[77.27966,19.91776],[77.28355,19.9127],[77.2844,19.93708],[77.29262,19.93976],[77.29907,19.94387],[77.30322,19.95327],[77.30381,19.96533],[77.31756,19.96245],[77.32194,19.95925],[77.32125,19.96511],[77.32464,19.97361],[77.33721,19.97464],[77.3364,19.99042],[77.33734,19.99703],[77.34155,20.00574],[77.34083,20.00841],[77.34791,20.00984],[77.34974,20.01372],[77.35388,20.0129],[77.35534,20.0141],[77.35411,20.0202],[77.36047,20.02616],[77.3726,20.04689],[77.35243,20.06432],[77.35213,20.07042],[77.35376,20.07078],[77.3562,20.07726],[77.36469,20.08233],[77.36916,20.08905],[77.36823,20.09407],[77.36484,20.09833],[77.38345,20.0865],[77.40779,20.08367],[77.41837,20.07841],[77.44211,20.07352],[77.44614,20.0704],[77.45948,20.06936],[77.46433,20.06955],[77.47226,20.07798],[77.47668,20.08036],[77.47927,20.08443],[77.48561,20.07733],[77.49441,20.07876],[77.49869,20.08509],[77.51954,20.09354],[77.52482,20.09809],[77.52632,20.09027],[77.53639,20.07974],[77.53658,20.07636],[77.54009,20.06994],[77.54375,20.06705],[77.5502,20.06551],[77.55158,20.05915],[77.5537,20.05711],[77.55234,20.0556],[77.5549,20.04746],[77.56019,20.04829],[77.56582,20.04255],[77.56836,20.04277],[77.57208,20.03581],[77.58067,20.02883],[77.58462,20.03353],[77.59006,20.03207],[77.59619,20.03785],[77.60103,20.03463],[77.60382,20.03628],[77.60759,20.03594],[77.61147,20.03852],[77.61399,20.03736],[77.61523,20.04036],[77.62424,20.04154],[77.62706,20.04577],[77.62999,20.04529],[77.63743,20.05475],[77.6372,20.05846],[77.64023,20.06071],[77.64048,20.07372],[77.65527,20.08],[77.65672,20.09772],[77.65979,20.09607],[77.65973,20.09968],[77.66636,20.0983],[77.66894,20.10194],[77.67122,20.1128],[77.67035,20.11985],[77.67748,20.13056],[77.68213,20.14099],[77.682,20.14431],[77.67578,20.14399],[77.67377,20.14769],[77.6771,20.1549],[77.67946,20.16669],[77.67518,20.16707],[77.67168,20.16871],[77.67206,20.17005],[77.66792,20.17103],[77.66818,20.17235],[77.66301,20.1736],[77.65262,20.17169],[77.65228,20.17412],[77.649,20.17516],[77.64954,20.18575],[77.64425,20.18695],[77.65142,20.19748],[77.65578,20.2004],[77.65779,20.20727],[77.65217,20.21052],[77.65269,20.21467],[77.66538,20.24148],[77.66543,20.2474],[77.64359,20.25059],[77.63351,20.26141],[77.61033,20.26409],[77.61026,20.27883],[77.5985,20.282],[77.59433,20.28073],[77.5948,20.30305],[77.58792,20.30646],[77.58326,20.32133],[77.58436,20.32696],[77.57902,20.32646],[77.57519,20.33093],[77.57216,20.32877],[77.56747,20.32963],[77.56875,20.35995],[77.57889,20.37225],[77.5757,20.37405],[77.57193,20.38787],[77.57387,20.40067],[77.58093,20.40777],[77.58142,20.41527],[77.58445,20.41743],[77.59576,20.41234],[77.59608,20.41736],[77.59233,20.42121],[77.59019,20.42923],[77.59308,20.42883],[77.604,20.43695],[77.60377,20.44183],[77.60155,20.4462],[77.59627,20.44819],[77.60353,20.45131],[77.60552,20.45591],[77.61237,20.45564],[77.61358,20.46103],[77.62518,20.45863],[77.6348,20.45252],[77.64286,20.45034],[77.64925,20.45965],[77.64837,20.47188],[77.65403,20.48064],[77.65576,20.49488],[77.6529,20.49525],[77.65338,20.49789],[77.65781,20.50018],[77.66216,20.50018],[77.66719,20.51714],[77.68172,20.52042],[77.68575,20.51939],[77.68965,20.52413],[77.69071,20.53401],[77.66879,20.53998],[77.65572,20.53375],[77.65364,20.53126],[77.64293,20.53169],[77.64925,20.55388],[77.6504,20.56398],[77.62807,20.5666],[77.63253,20.57903],[77.63439,20.5787],[77.63822,20.58559],[77.64486,20.60493],[77.64709,20.60466],[77.64809,20.62197],[77.65027,20.62552],[77.65288,20.62542],[77.65407,20.6323],[77.65864,20.63647],[77.65972,20.64619],[77.64828,20.64869],[77.65485,20.65936],[77.65399,20.66187],[77.63467,20.65823],[77.6362,20.67005],[77.63211,20.6715],[77.63681,20.68515],[77.63793,20.69438],[77.63139,20.70145],[77.63213,20.70939],[77.63513,20.71137],[77.63402,20.71288],[77.62131,20.71666],[77.59822,20.71837],[77.59832,20.72002],[77.59077,20.72641],[77.58165,20.7267]]],[[[77.6338,20.75425],[77.63391,20.75572],[77.61982,20.75703],[77.61924,20.75306],[77.61837,20.75321],[77.61805,20.75033],[77.61566,20.74306],[77.61464,20.73657],[77.61287,20.73648],[77.61213,20.73075],[77.6234,20.73005],[77.62454,20.7324],[77.62503,20.73415],[77.62556,20.73726],[77.62795,20.7375],[77.62896,20.73855],[77.63147,20.73807],[77.63159,20.74134],[77.63267,20.74803],[77.63335,20.74949],[77.6338,20.75425]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"5","area_level":"District","area_name":"Jammu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.45898,32.78758],[74.46458,32.7759],[74.47596,32.7754],[74.48428,32.76831],[74.48608,32.76445],[74.49668,32.76469],[74.49791,32.76585],[74.50463,32.7641],[74.50531,32.76635],[74.51162,32.76453],[74.51043,32.76249],[74.51525,32.75584],[74.51407,32.75107],[74.51002,32.75102],[74.50943,32.74719],[74.51159,32.7455],[74.52705,32.74681],[74.53185,32.74436],[74.53386,32.74487],[74.53588,32.74986],[74.54212,32.74857],[74.54195,32.75191],[74.54334,32.75254],[74.54405,32.74803],[74.54822,32.74685],[74.54638,32.75001],[74.54703,32.75182],[74.55425,32.75838],[74.56289,32.76012],[74.57034,32.75973],[74.57623,32.75662],[74.5766,32.75449],[74.57402,32.7505],[74.57684,32.7479],[74.58052,32.7485],[74.58239,32.75279],[74.58991,32.75064],[74.59605,32.75646],[74.61347,32.75765],[74.61362,32.75966],[74.6192,32.76068],[74.63426,32.74954],[74.63532,32.75124],[74.63804,32.75153],[74.63824,32.75573],[74.63683,32.75625],[74.63835,32.75862],[74.63036,32.76843],[74.63293,32.77382],[74.63229,32.7764],[74.63967,32.78206],[74.65401,32.78087],[74.65836,32.78765],[74.64543,32.79544],[74.63463,32.80662],[74.63521,32.81177],[74.64052,32.81894],[74.65562,32.8321],[74.65904,32.832],[74.66348,32.82598],[74.66788,32.82504],[74.6835,32.83676],[74.70477,32.84195],[74.70544,32.82577],[74.70395,32.81699],[74.69749,32.8097],[74.69621,32.80504],[74.68416,32.7841],[74.68183,32.7765],[74.67842,32.77256],[74.67679,32.76879],[74.67707,32.76131],[74.67491,32.75599],[74.66457,32.74259],[74.65945,32.73084],[74.65591,32.72796],[74.66186,32.72703],[74.66371,32.72395],[74.65797,32.71505],[74.65789,32.70698],[74.6535,32.69669],[74.66136,32.68653],[74.66695,32.67527],[74.68239,32.67226],[74.68255,32.66883],[74.69526,32.66544],[74.69527,32.66131],[74.68887,32.65192],[74.68072,32.65252],[74.67126,32.64522],[74.67038,32.63895],[74.66778,32.63882],[74.66232,32.63508],[74.6551,32.63695],[74.65604,32.63278],[74.6531,32.63092],[74.657,32.63045],[74.65502,32.62459],[74.6558,32.617],[74.6525,32.61437],[74.63905,32.61464],[74.64034,32.60826],[74.63947,32.60348],[74.64682,32.59774],[74.6543,32.59945],[74.65877,32.59685],[74.65711,32.59263],[74.64889,32.58798],[74.64983,32.58241],[74.65469,32.58083],[74.65211,32.56983],[74.65254,32.56296],[74.66273,32.56488],[74.66934,32.56883],[74.67384,32.56798],[74.67449,32.55443],[74.67327,32.55336],[74.66274,32.55383],[74.66171,32.54967],[74.66288,32.54452],[74.6825,32.53532],[74.6888,32.53507],[74.69061,32.53296],[74.69073,32.52348],[74.68278,32.5125],[74.68257,32.5097],[74.68566,32.50664],[74.68273,32.49224],[74.68792,32.48687],[74.69358,32.48649],[74.69595,32.48767],[74.69608,32.48951],[74.70026,32.48999],[74.7011,32.49293],[74.70367,32.49139],[74.71018,32.49262],[74.71367,32.48804],[74.71118,32.47818],[74.72746,32.47582],[74.72835,32.48077],[74.75155,32.4783],[74.75463,32.48208],[74.76548,32.48053],[74.77113,32.48128],[74.79477,32.4764],[74.79954,32.47781],[74.8005,32.48232],[74.81282,32.47964],[74.81377,32.48678],[74.81875,32.49791],[74.82423,32.49507],[74.83552,32.49516],[74.84708,32.48918],[74.85864,32.49285],[74.86529,32.48634],[74.87074,32.48596],[74.87799,32.49275],[74.8914,32.51001],[74.88522,32.51591],[74.88705,32.51719],[74.88394,32.51926],[74.88552,32.52734],[74.89254,32.53246],[74.90083,32.52574],[74.90832,32.53299],[74.90884,32.53465],[74.90536,32.53767],[74.90539,32.54302],[74.90234,32.54567],[74.90158,32.5505],[74.90893,32.55069],[74.91528,32.54766],[74.92796,32.55142],[74.93548,32.56429],[74.94171,32.56761],[74.94684,32.56833],[74.94817,32.57208],[74.9476,32.58302],[74.94538,32.58329],[74.94485,32.58655],[74.94339,32.58705],[74.93902,32.58566],[74.95064,32.59372],[74.94702,32.59701],[74.93805,32.59078],[74.92906,32.59507],[74.92514,32.60284],[74.92075,32.60231],[74.91887,32.60562],[74.92763,32.61237],[74.92394,32.61703],[74.90923,32.62767],[74.90417,32.62267],[74.89592,32.61846],[74.89208,32.61232],[74.88728,32.60822],[74.87573,32.61476],[74.86937,32.62097],[74.88466,32.62027],[74.88741,32.62377],[74.88445,32.62616],[74.88869,32.62677],[74.88949,32.62982],[74.89277,32.63193],[74.89088,32.63484],[74.89672,32.63904],[74.8954,32.64161],[74.89577,32.65252],[74.90847,32.65549],[74.91234,32.65961],[74.92952,32.66861],[74.92689,32.67095],[74.92779,32.67201],[74.94769,32.67964],[74.95485,32.68472],[74.95764,32.68924],[74.95635,32.69655],[74.96161,32.70188],[74.96594,32.70356],[74.96699,32.70857],[74.96598,32.71154],[74.97945,32.71272],[74.98659,32.70958],[74.9901,32.71031],[74.99535,32.71693],[74.99793,32.71711],[74.99908,32.72127],[75.00977,32.72296],[75.01078,32.73233],[75.01413,32.73162],[75.01535,32.73412],[75.02052,32.73503],[75.0265,32.73093],[75.0346,32.7341],[75.04203,32.7303],[75.04272,32.72815],[75.04481,32.73095],[75.04409,32.73195],[75.04683,32.73394],[75.04809,32.74144],[75.05516,32.74258],[75.07779,32.73178],[75.08161,32.73459],[75.08617,32.73015],[75.08507,32.72769],[75.09166,32.72087],[75.0976,32.73098],[75.10235,32.73265],[75.11161,32.74129],[75.12128,32.74442],[75.12457,32.74095],[75.13008,32.73952],[75.13098,32.74014],[75.12941,32.74258],[75.13396,32.74618],[75.13244,32.74956],[75.13928,32.7505],[75.14139,32.75517],[75.16382,32.76353],[75.16702,32.76784],[75.16519,32.77292],[75.1614,32.77447],[75.15764,32.78326],[75.1574,32.78848],[75.15328,32.787],[75.14599,32.79077],[75.13089,32.79433],[75.12812,32.79956],[75.13179,32.81129],[75.12882,32.81566],[75.11624,32.82183],[75.11447,32.8268],[75.1116,32.82912],[75.09862,32.83446],[75.07677,32.84728],[75.05557,32.86552],[75.04985,32.86639],[75.04274,32.87107],[75.03286,32.87488],[75.0272,32.88312],[75.01226,32.8926],[75.01121,32.89618],[75.00201,32.9053],[74.9917,32.9119],[74.97883,32.92487],[74.97826,32.92908],[74.96996,32.94219],[74.9743,32.94784],[74.97755,32.94816],[74.97884,32.95367],[74.97753,32.95515],[74.97892,32.95796],[74.98428,32.96124],[74.98524,32.96416],[74.98369,32.97162],[74.98795,32.9757],[74.98098,32.97581],[74.97669,32.97318],[74.96932,32.97263],[74.96086,32.96649],[74.95796,32.96047],[74.95981,32.95881],[74.95953,32.95132],[74.96162,32.94604],[74.96057,32.94433],[74.9629,32.94013],[74.96211,32.933],[74.96316,32.93186],[74.95402,32.9319],[74.95401,32.92232],[74.95273,32.92031],[74.95918,32.91096],[74.96141,32.91101],[74.9614,32.90544],[74.964,32.90044],[74.961,32.89887],[74.96113,32.89613],[74.95353,32.89926],[74.94928,32.89918],[74.95164,32.89267],[74.93612,32.88724],[74.92342,32.89817],[74.91953,32.90527],[74.91843,32.9108],[74.91095,32.92014],[74.91059,32.9236],[74.90165,32.92477],[74.89768,32.92273],[74.89584,32.92423],[74.8935,32.92795],[74.89407,32.9404],[74.88855,32.95509],[74.88214,32.95577],[74.87842,32.95952],[74.87445,32.95704],[74.87276,32.95057],[74.86885,32.951],[74.86292,32.94701],[74.85877,32.94665],[74.85157,32.94283],[74.85362,32.94626],[74.85404,32.95223],[74.85066,32.9577],[74.8502,32.97047],[74.84727,32.97725],[74.83961,32.978],[74.83735,32.98072],[74.83428,32.98034],[74.82797,32.98629],[74.82376,32.98794],[74.82334,32.99291],[74.81628,32.99965],[74.81394,33.00486],[74.80983,33.00741],[74.79265,33.02972],[74.79325,33.03433],[74.77972,33.038],[74.77677,33.03754],[74.77769,33.04189],[74.77073,33.0473],[74.77012,33.05112],[74.75233,33.05156],[74.74917,33.05314],[74.74812,33.05878],[74.73783,33.06126],[74.72994,33.06038],[74.73119,33.05537],[74.72933,33.0534],[74.71854,33.05451],[74.71065,33.05195],[74.70858,33.05321],[74.70934,33.05898],[74.70311,33.05705],[74.69945,33.06099],[74.69511,33.05627],[74.68681,33.05471],[74.68564,33.05862],[74.68193,33.05948],[74.68154,33.06232],[74.67894,33.06138],[74.67667,33.06248],[74.67675,33.05712],[74.67525,33.05459],[74.66257,33.05144],[74.65843,33.0544],[74.64502,33.0494],[74.63901,33.05031],[74.63196,33.0489],[74.61367,33.03994],[74.60765,33.04013],[74.59521,33.03635],[74.57669,33.03371],[74.57238,33.03],[74.56634,33.04193],[74.56612,33.04864],[74.56393,33.04866],[74.56363,33.05063],[74.56097,33.04986],[74.55567,33.05196],[74.53355,33.05152],[74.52649,33.05327],[74.52555,33.0556],[74.51015,33.05524],[74.5122,33.04552],[74.50898,33.04173],[74.49841,33.04183],[74.49644,33.03727],[74.4983,33.03413],[74.51081,33.03216],[74.5131,33.02977],[74.51542,33.02601],[74.51386,33.02115],[74.51636,33.01572],[74.51319,33.01336],[74.49639,33.01809],[74.48617,33.01608],[74.44809,33.01497],[74.4458,33.01289],[74.44647,33.00494],[74.44435,33.00062],[74.4203,32.98896],[74.4047,32.97036],[74.40435,32.9678],[74.40041,32.96566],[74.39364,32.96574],[74.3913,32.95943],[74.38234,32.95662],[74.38109,32.95407],[74.3722,32.95329],[74.36903,32.95001],[74.3663,32.9545],[74.36489,32.95287],[74.35451,32.95293],[74.3504,32.95085],[74.34928,32.95463],[74.34763,32.95151],[74.33974,32.95439],[74.34045,32.95228],[74.31261,32.93644],[74.31261,32.92907],[74.31637,32.92849],[74.32305,32.92331],[74.32544,32.9232],[74.32551,32.92066],[74.34345,32.92092],[74.34925,32.92271],[74.37129,32.92031],[74.37756,32.91515],[74.37265,32.91545],[74.37313,32.9142],[74.3925,32.91058],[74.39976,32.90457],[74.40652,32.90302],[74.41516,32.89858],[74.41882,32.88695],[74.41757,32.88009],[74.41216,32.8701],[74.4215,32.85444],[74.41916,32.84104],[74.42386,32.83582],[74.43203,32.83058],[74.43843,32.82268],[74.43773,32.80715],[74.44028,32.80217],[74.45898,32.78758]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"50","area_level":"District","area_name":"Haridwar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.96171,30.24202],[77.958,30.24224],[77.94692,30.23406],[77.94602,30.23036],[77.94116,30.22788],[77.93839,30.22434],[77.93793,30.22084],[77.9348,30.21928],[77.93213,30.21439],[77.91894,30.21128],[77.91802,30.20307],[77.91393,30.19647],[77.91483,30.19156],[77.91175,30.18665],[77.91202,30.18253],[77.90028,30.17259],[77.88893,30.15732],[77.88118,30.15073],[77.87688,30.13923],[77.86842,30.12683],[77.86609,30.11913],[77.86042,30.11319],[77.84936,30.1047],[77.84161,30.10265],[77.83682,30.10352],[77.83661,30.09844],[77.83303,30.09458],[77.83428,30.09052],[77.82805,30.08592],[77.82167,30.08568],[77.81045,30.09272],[77.8012,30.09548],[77.79917,30.09047],[77.7997,30.08719],[77.79675,30.08528],[77.79845,30.08355],[77.79477,30.08125],[77.79582,30.07986],[77.79084,30.07502],[77.78113,30.06048],[77.77482,30.05522],[77.77114,30.04802],[77.77005,30.04255],[77.78137,30.0335],[77.77938,30.03067],[77.78549,30.02789],[77.78276,30.02385],[77.78198,30.01863],[77.77581,30.01797],[77.77391,30.01475],[77.77168,30.01498],[77.76196,30.0093],[77.76423,30.00445],[77.75538,29.999],[77.76038,29.99511],[77.75527,29.99198],[77.75034,29.98587],[77.74768,29.986],[77.74371,29.98336],[77.74603,29.98055],[77.7402,29.97529],[77.74062,29.96956],[77.7333,29.95593],[77.73701,29.95376],[77.74836,29.95164],[77.74492,29.94784],[77.74723,29.94664],[77.743,29.94381],[77.74299,29.94094],[77.74062,29.94219],[77.73047,29.9317],[77.74289,29.92493],[77.74298,29.9181],[77.74778,29.91117],[77.73653,29.90666],[77.7386,29.90321],[77.73367,29.90157],[77.73392,29.89964],[77.72927,29.90051],[77.72856,29.89755],[77.73186,29.8928],[77.72507,29.89031],[77.72328,29.88854],[77.72412,29.88678],[77.72275,29.88442],[77.71846,29.8874],[77.71602,29.88588],[77.71471,29.88408],[77.71695,29.87847],[77.72077,29.87616],[77.71521,29.87299],[77.71413,29.87022],[77.71864,29.86545],[77.71652,29.86319],[77.72344,29.85505],[77.72567,29.85613],[77.72657,29.85424],[77.74189,29.85185],[77.74389,29.84758],[77.74145,29.84671],[77.74404,29.83988],[77.74022,29.83473],[77.7557,29.8253],[77.75399,29.8208],[77.75899,29.8185],[77.75608,29.81284],[77.75158,29.81068],[77.76322,29.80263],[77.76545,29.79592],[77.77467,29.79102],[77.77219,29.78641],[77.77396,29.78401],[77.77238,29.78],[77.77786,29.77498],[77.77312,29.7687],[77.78036,29.76502],[77.77052,29.75022],[77.76931,29.75059],[77.76953,29.74534],[77.78268,29.73624],[77.76973,29.7176],[77.77172,29.71385],[77.77872,29.71068],[77.78334,29.7094],[77.78558,29.71057],[77.79185,29.70994],[77.8026,29.70339],[77.81048,29.70237],[77.79905,29.68619],[77.80924,29.67986],[77.81534,29.67831],[77.83005,29.6683],[77.83195,29.67041],[77.83568,29.66956],[77.83678,29.67171],[77.83862,29.67049],[77.8431,29.67522],[77.84709,29.67541],[77.85025,29.67998],[77.85373,29.68154],[77.8557,29.68006],[77.86281,29.68945],[77.8656,29.68781],[77.8696,29.68899],[77.87471,29.68729],[77.87948,29.69291],[77.87901,29.70024],[77.88265,29.70243],[77.8909,29.69886],[77.8945,29.69973],[77.89661,29.7022],[77.90207,29.70119],[77.91253,29.69592],[77.91396,29.69848],[77.92007,29.69929],[77.91577,29.70221],[77.91692,29.70556],[77.91979,29.705],[77.92644,29.71422],[77.93457,29.71112],[77.93815,29.71448],[77.94094,29.71084],[77.94702,29.71248],[77.95302,29.70735],[77.94957,29.70413],[77.95098,29.70159],[77.93989,29.69608],[77.94567,29.69182],[77.94589,29.68996],[77.95093,29.68736],[77.94744,29.68309],[77.94937,29.6798],[77.96996,29.66643],[77.96955,29.65623],[77.96645,29.65014],[77.97945,29.64266],[77.98186,29.64512],[77.98379,29.64364],[77.97739,29.63125],[77.97597,29.61738],[77.97769,29.61345],[77.96021,29.61165],[77.94842,29.61691],[77.94277,29.60865],[77.9333,29.60051],[77.94034,29.59271],[77.9671,29.58014],[77.96889,29.58141],[77.97311,29.58031],[77.97493,29.58502],[77.97997,29.58515],[77.98272,29.58356],[77.98645,29.58438],[77.99353,29.59122],[77.99517,29.5958],[77.99617,29.59146],[78.0008,29.58621],[78.0216,29.58085],[78.01524,29.58725],[78.01828,29.5982],[78.03109,29.60832],[78.03307,29.61161],[78.03432,29.61038],[78.04649,29.61607],[78.04885,29.61461],[78.05711,29.62669],[78.05747,29.63069],[78.06855,29.63042],[78.08188,29.62514],[78.08669,29.62503],[78.08146,29.63514],[78.0934,29.64045],[78.10403,29.64123],[78.11929,29.64997],[78.13054,29.65254],[78.13359,29.6595],[78.13758,29.66354],[78.17162,29.69157],[78.18051,29.69683],[78.1884,29.69229],[78.19603,29.69268],[78.20201,29.71443],[78.20358,29.72826],[78.20016,29.73029],[78.20392,29.73727],[78.22165,29.74066],[78.22958,29.73669],[78.24023,29.74143],[78.24592,29.73452],[78.25009,29.73426],[78.25565,29.73825],[78.25975,29.73834],[78.26219,29.74355],[78.26703,29.74284],[78.2683,29.74645],[78.28095,29.75576],[78.28453,29.76178],[78.29268,29.75906],[78.30096,29.76825],[78.30061,29.77104],[78.30363,29.77476],[78.30687,29.77551],[78.30952,29.77996],[78.3129,29.77941],[78.3211,29.7855],[78.32439,29.78986],[78.33074,29.79318],[78.33316,29.79267],[78.33566,29.79661],[78.33184,29.79891],[78.32945,29.80272],[78.32093,29.82767],[78.31875,29.83609],[78.31685,29.85921],[78.31529,29.86228],[78.29974,29.87296],[78.29178,29.8818],[78.28595,29.88337],[78.28113,29.88842],[78.27627,29.89742],[78.27089,29.89859],[78.26673,29.90411],[78.26903,29.91042],[78.27249,29.91354],[78.27154,29.91692],[78.27495,29.92049],[78.27502,29.92265],[78.26593,29.92706],[78.24985,29.92968],[78.24596,29.93396],[78.24599,29.93606],[78.23472,29.9416],[78.22799,29.94816],[78.22259,29.94963],[78.2138,29.95821],[78.20211,29.9661],[78.19155,29.96556],[78.18715,29.96217],[78.18678,29.97206],[78.1977,29.98792],[78.19368,29.98677],[78.19226,29.99405],[78.18912,29.99725],[78.18318,29.99056],[78.17992,29.97899],[78.16873,29.96903],[78.17191,29.96379],[78.16645,29.96599],[78.16133,29.965],[78.15813,29.96883],[78.15304,29.96713],[78.14877,29.9678],[78.1431,29.97805],[78.13861,29.97824],[78.1384,29.98152],[78.1345,29.9861],[78.13473,29.9904],[78.13075,29.99415],[78.13168,29.99778],[78.12957,30.00108],[78.12285,29.99829],[78.11926,30.00387],[78.11592,30.00554],[78.11587,30.00866],[78.11369,30.01106],[78.10919,30.00984],[78.10715,30.01092],[78.10445,30.0075],[78.09871,30.01225],[78.09613,30.01126],[78.09402,30.01575],[78.10057,30.02574],[78.09925,30.0279],[78.09183,30.02887],[78.0858,30.03343],[78.08204,30.03193],[78.08096,30.03621],[78.0766,30.03713],[78.07419,30.04189],[78.06908,30.04202],[78.06927,30.04478],[78.06674,30.04689],[78.07141,30.05767],[78.07446,30.05965],[78.07187,30.06318],[78.07207,30.069],[78.06728,30.07236],[78.06955,30.07543],[78.06414,30.08238],[78.06104,30.08331],[78.05987,30.08686],[78.04681,30.09175],[78.04566,30.09759],[78.04247,30.09826],[78.03554,30.10357],[78.03666,30.10449],[78.03519,30.10737],[78.03592,30.11041],[78.03313,30.11066],[78.03275,30.11971],[78.02962,30.12192],[78.02655,30.13386],[78.01442,30.14785],[78.01517,30.14996],[78.01113,30.16361],[78.00458,30.176],[77.99306,30.18977],[77.99135,30.19549],[77.98672,30.19965],[77.9859,30.20431],[77.98367,30.20394],[77.98013,30.20925],[77.97813,30.20934],[77.97772,30.21179],[77.97425,30.21318],[77.9736,30.216],[77.97519,30.21839],[77.97328,30.22062],[77.96888,30.2202],[77.96585,30.22345],[77.96362,30.22372],[77.96053,30.22812],[77.95578,30.23057],[77.96171,30.24202]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"500","area_level":"District","area_name":"Yavatmal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.27513,20.6963],[78.2589,20.69799],[78.25499,20.68847],[78.25522,20.6836],[78.24191,20.68684],[78.24069,20.68433],[78.22824,20.69289],[78.22106,20.69377],[78.21167,20.69232],[78.21,20.679],[78.20569,20.6763],[78.2059,20.67446],[78.18221,20.678],[78.17927,20.6678],[78.17709,20.66778],[78.17704,20.66971],[78.17063,20.67027],[78.16558,20.66711],[78.15775,20.66722],[78.1569,20.65677],[78.15392,20.65874],[78.14192,20.65968],[78.13106,20.66398],[78.12718,20.66309],[78.12446,20.65944],[78.13214,20.65384],[78.12939,20.64745],[78.11242,20.64781],[78.11068,20.6402],[78.10151,20.64058],[78.10119,20.64309],[78.09331,20.6415],[78.09651,20.65826],[78.09933,20.65974],[78.09952,20.66634],[78.09092,20.67065],[78.08816,20.66966],[78.08867,20.67205],[78.08381,20.6721],[78.08363,20.66945],[78.08046,20.66928],[78.08017,20.6648],[78.07871,20.66406],[78.07871,20.66526],[78.07571,20.66483],[78.07753,20.6671],[78.07193,20.66793],[78.07135,20.67101],[78.06553,20.67296],[78.06302,20.6725],[78.063,20.66989],[78.05802,20.67014],[78.05814,20.66859],[78.03658,20.6659],[78.03664,20.65934],[78.02743,20.65838],[78.02358,20.64604],[78.01908,20.64097],[78.02644,20.63324],[78.01898,20.6304],[78.02111,20.62676],[78.00193,20.62509],[77.99986,20.62267],[77.99543,20.62461],[77.99515,20.61972],[77.99001,20.61309],[77.9883,20.61205],[77.98523,20.61347],[77.98222,20.6109],[77.98257,20.60901],[77.97777,20.60529],[77.97505,20.60011],[77.97661,20.59873],[77.97721,20.5934],[77.9745,20.58906],[77.96795,20.58485],[77.95928,20.58223],[77.95729,20.57891],[77.95017,20.57493],[77.95068,20.57968],[77.94662,20.57782],[77.94496,20.58155],[77.94445,20.57952],[77.94094,20.57998],[77.93315,20.57769],[77.93204,20.57039],[77.92979,20.57057],[77.92765,20.56242],[77.92562,20.56294],[77.9247,20.55913],[77.92229,20.55999],[77.92502,20.56669],[77.92059,20.56532],[77.91669,20.56618],[77.91401,20.56447],[77.91159,20.56736],[77.91721,20.57895],[77.91847,20.58704],[77.91817,20.5898],[77.91383,20.59089],[77.91751,20.59919],[77.91754,20.6075],[77.91299,20.60798],[77.9084,20.61564],[77.90048,20.61859],[77.8948,20.62583],[77.88596,20.62497],[77.87795,20.61012],[77.87125,20.6123],[77.86764,20.61156],[77.86653,20.60574],[77.86743,20.59547],[77.85976,20.59082],[77.8462,20.58801],[77.84573,20.57984],[77.84778,20.57066],[77.8396,20.56494],[77.82617,20.57496],[77.82183,20.58021],[77.81072,20.58475],[77.80848,20.58133],[77.80902,20.57478],[77.80536,20.57035],[77.80479,20.56443],[77.79139,20.5605],[77.78523,20.54483],[77.78339,20.5446],[77.7801,20.53813],[77.77493,20.53951],[77.77009,20.53882],[77.76867,20.54365],[77.75618,20.54596],[77.75527,20.54364],[77.75119,20.54529],[77.74124,20.56133],[77.73102,20.55959],[77.72494,20.56334],[77.71624,20.56562],[77.70435,20.56494],[77.69082,20.57083],[77.691,20.57758],[77.68296,20.57716],[77.67129,20.58022],[77.66912,20.5786],[77.66617,20.57973],[77.66238,20.57011],[77.6596,20.56899],[77.65921,20.56394],[77.6504,20.56398],[77.64925,20.55388],[77.64293,20.53169],[77.65364,20.53126],[77.65572,20.53375],[77.66879,20.53998],[77.69071,20.53401],[77.68965,20.52413],[77.68575,20.51939],[77.68172,20.52042],[77.66719,20.51714],[77.66216,20.50018],[77.65781,20.50018],[77.65338,20.49789],[77.6529,20.49525],[77.65576,20.49488],[77.65403,20.48064],[77.64837,20.47188],[77.64925,20.45965],[77.64286,20.45034],[77.6348,20.45252],[77.62518,20.45863],[77.61358,20.46103],[77.61237,20.45564],[77.60552,20.45591],[77.60353,20.45131],[77.59627,20.44819],[77.60155,20.4462],[77.60377,20.44183],[77.6037,20.43562],[77.59308,20.42883],[77.59019,20.42923],[77.59233,20.42121],[77.59608,20.41736],[77.59576,20.41234],[77.58394,20.41726],[77.58081,20.41364],[77.58047,20.40688],[77.57387,20.40067],[77.57187,20.38581],[77.57632,20.37276],[77.57889,20.37225],[77.56875,20.35995],[77.56734,20.34518],[77.56747,20.32963],[77.57216,20.32877],[77.57519,20.33093],[77.57902,20.32646],[77.58436,20.32696],[77.58326,20.32133],[77.58792,20.30646],[77.5948,20.30305],[77.59433,20.28073],[77.5985,20.282],[77.61026,20.27883],[77.61033,20.26409],[77.63351,20.26141],[77.64359,20.25059],[77.66543,20.2474],[77.66538,20.24148],[77.65269,20.21467],[77.65217,20.21052],[77.65779,20.20727],[77.65578,20.2004],[77.65142,20.19748],[77.64425,20.18695],[77.64954,20.18575],[77.649,20.17516],[77.65228,20.17412],[77.65262,20.17169],[77.66301,20.1736],[77.66818,20.17235],[77.66792,20.17103],[77.67206,20.17005],[77.67168,20.16871],[77.67518,20.16707],[77.67946,20.16669],[77.6771,20.1549],[77.67377,20.14769],[77.67578,20.14399],[77.682,20.14431],[77.68213,20.14099],[77.67748,20.13056],[77.67035,20.11985],[77.67122,20.1128],[77.66894,20.10194],[77.66636,20.0983],[77.65973,20.09968],[77.65979,20.09607],[77.65672,20.09772],[77.65527,20.08],[77.64048,20.07372],[77.64023,20.06071],[77.6372,20.05846],[77.63743,20.05475],[77.62999,20.04529],[77.62706,20.04577],[77.62424,20.04154],[77.61523,20.04036],[77.61399,20.03736],[77.61147,20.03852],[77.60759,20.03594],[77.60382,20.03628],[77.60103,20.03463],[77.59619,20.03785],[77.59006,20.03207],[77.58462,20.03353],[77.58067,20.02883],[77.57208,20.03581],[77.56836,20.04277],[77.56582,20.04255],[77.56019,20.04829],[77.5549,20.04746],[77.55234,20.0556],[77.5537,20.05711],[77.55158,20.05915],[77.5502,20.06551],[77.54375,20.06705],[77.54009,20.06994],[77.53658,20.07636],[77.53639,20.07974],[77.52632,20.09027],[77.52482,20.09809],[77.51954,20.09354],[77.49869,20.08509],[77.49441,20.07876],[77.48561,20.07733],[77.47927,20.08443],[77.47668,20.08036],[77.47226,20.07798],[77.46433,20.06955],[77.45948,20.06936],[77.44614,20.0704],[77.44211,20.07352],[77.41837,20.07841],[77.40779,20.08367],[77.38345,20.0865],[77.36484,20.09833],[77.36823,20.09407],[77.36916,20.08905],[77.36469,20.08233],[77.3562,20.07726],[77.35376,20.07078],[77.35213,20.07042],[77.35243,20.06432],[77.3726,20.04689],[77.36047,20.02616],[77.35411,20.0202],[77.35534,20.0141],[77.35388,20.0129],[77.34974,20.01372],[77.34791,20.00984],[77.34083,20.00841],[77.34155,20.00574],[77.33734,19.99703],[77.3364,19.99042],[77.33721,19.97464],[77.32464,19.97361],[77.32125,19.96511],[77.32194,19.95925],[77.31756,19.96245],[77.30381,19.96533],[77.30322,19.95327],[77.29907,19.94387],[77.29262,19.93976],[77.2844,19.93708],[77.28261,19.91023],[77.28395,19.90587],[77.29281,19.90346],[77.29793,19.9062],[77.30662,19.91439],[77.31292,19.91414],[77.31045,19.90394],[77.31294,19.89634],[77.31222,19.89409],[77.29354,19.89528],[77.29195,19.89114],[77.29528,19.88433],[77.30772,19.88265],[77.31903,19.88965],[77.32545,19.88736],[77.33252,19.87811],[77.34603,19.87648],[77.3465,19.87426],[77.34353,19.86921],[77.34487,19.86391],[77.35149,19.8614],[77.362,19.86145],[77.36403,19.85889],[77.36357,19.85545],[77.35174,19.84983],[77.35218,19.84753],[77.35861,19.84178],[77.36084,19.83633],[77.35771,19.83525],[77.3415,19.83623],[77.34035,19.83125],[77.34403,19.82536],[77.34775,19.82486],[77.35045,19.81965],[77.35377,19.81735],[77.35677,19.8177],[77.36703,19.82609],[77.3765,19.82289],[77.38769,19.82314],[77.39101,19.81397],[77.38419,19.80991],[77.37765,19.78685],[77.38104,19.78399],[77.40086,19.78128],[77.40416,19.77804],[77.40457,19.7746],[77.40094,19.76668],[77.3932,19.76815],[77.38318,19.76609],[77.37649,19.74814],[77.37757,19.74376],[77.38141,19.73898],[77.38044,19.72941],[77.3844,19.72582],[77.39343,19.72809],[77.40102,19.73877],[77.4103,19.7455],[77.41341,19.74321],[77.41239,19.73951],[77.41442,19.73681],[77.43172,19.73053],[77.43343,19.72689],[77.4387,19.72518],[77.44112,19.71419],[77.44551,19.71212],[77.44946,19.7005],[77.44239,19.69225],[77.44364,19.68978],[77.45136,19.68801],[77.4601,19.68164],[77.46697,19.68123],[77.47549,19.68348],[77.47862,19.68244],[77.47914,19.67901],[77.4828,19.67719],[77.48881,19.67967],[77.49974,19.67898],[77.50412,19.67369],[77.51014,19.67421],[77.51692,19.67087],[77.52806,19.6683],[77.53709,19.66957],[77.54128,19.66048],[77.55194,19.66157],[77.55259,19.66027],[77.55072,19.65829],[77.55236,19.65237],[77.55466,19.65093],[77.56616,19.64958],[77.57185,19.6505],[77.57691,19.65713],[77.57907,19.65727],[77.58145,19.65555],[77.58284,19.6506],[77.5915,19.65169],[77.59377,19.65068],[77.59551,19.64415],[77.59805,19.6423],[77.60214,19.64369],[77.6064,19.64862],[77.60758,19.64764],[77.60592,19.64074],[77.60948,19.6383],[77.61652,19.6382],[77.61245,19.63291],[77.61297,19.62895],[77.61595,19.62703],[77.6242,19.62693],[77.62653,19.62353],[77.62792,19.61857],[77.62748,19.60645],[77.63831,19.6104],[77.64384,19.60765],[77.64302,19.60326],[77.63785,19.60008],[77.63766,19.59472],[77.64065,19.58684],[77.64124,19.57918],[77.64871,19.55818],[77.6479,19.55628],[77.64234,19.55534],[77.63389,19.55818],[77.63125,19.55619],[77.63117,19.55365],[77.63836,19.54817],[77.65129,19.54956],[77.66282,19.54559],[77.67417,19.53904],[77.69398,19.54],[77.69777,19.53895],[77.70624,19.53321],[77.70418,19.52543],[77.70576,19.52214],[77.72818,19.53227],[77.74514,19.52571],[77.74994,19.51856],[77.75081,19.51347],[77.74696,19.50446],[77.73418,19.49674],[77.73362,19.49435],[77.73953,19.48444],[77.73632,19.48105],[77.72959,19.48048],[77.72349,19.47446],[77.71911,19.47464],[77.71474,19.47859],[77.71192,19.47792],[77.70978,19.46849],[77.69539,19.45726],[77.69463,19.45294],[77.69647,19.44694],[77.69467,19.44236],[77.69633,19.43966],[77.70546,19.43664],[77.71598,19.43662],[77.72715,19.43446],[77.74083,19.43778],[77.74387,19.43207],[77.75084,19.4309],[77.77459,19.43996],[77.78672,19.44956],[77.7987,19.45004],[77.80025,19.46068],[77.80377,19.46408],[77.8068,19.46454],[77.8128,19.45827],[77.81847,19.44117],[77.826,19.43807],[77.83122,19.43904],[77.83761,19.44948],[77.84551,19.45125],[77.84639,19.4531],[77.84307,19.45938],[77.83273,19.46644],[77.82484,19.4776],[77.82491,19.4799],[77.82753,19.48271],[77.82981,19.48397],[77.83806,19.48383],[77.84201,19.48786],[77.84362,19.49489],[77.84127,19.50573],[77.84247,19.51096],[77.85225,19.51982],[77.85936,19.52243],[77.86661,19.51673],[77.87686,19.51537],[77.87819,19.51224],[77.87734,19.50406],[77.88066,19.50208],[77.88732,19.50596],[77.88974,19.51988],[77.89672,19.52234],[77.90037,19.52601],[77.90312,19.53275],[77.90643,19.53428],[77.91005,19.53297],[77.9144,19.51765],[77.93517,19.5047],[77.93663,19.49866],[77.93897,19.49744],[77.94664,19.50717],[77.95377,19.51192],[77.9709,19.50895],[77.97261,19.50739],[77.97316,19.49783],[77.97532,19.49295],[77.98229,19.48333],[77.98751,19.47932],[77.98855,19.47524],[77.98304,19.46647],[77.98301,19.46399],[77.99368,19.4542],[78.00682,19.45277],[78.01502,19.45578],[78.01657,19.46079],[78.01531,19.48092],[78.01885,19.48808],[78.02373,19.48971],[78.03091,19.48822],[78.0439,19.47445],[78.06299,19.45978],[78.06754,19.45859],[78.0741,19.46663],[78.08653,19.47525],[78.09547,19.48393],[78.10368,19.48102],[78.11092,19.48186],[78.11534,19.48983],[78.11881,19.49284],[78.12296,19.51028],[78.13452,19.51865],[78.13438,19.52976],[78.11935,19.54458],[78.11987,19.54717],[78.1231,19.55003],[78.12861,19.55113],[78.14373,19.54587],[78.1514,19.54519],[78.15916,19.54669],[78.17285,19.55447],[78.18373,19.55552],[78.18817,19.55835],[78.18937,19.56622],[78.18486,19.57623],[78.19166,19.58717],[78.1898,19.59676],[78.19649,19.61573],[78.1893,19.62856],[78.18664,19.63697],[78.17847,19.65016],[78.16981,19.65172],[78.16378,19.65496],[78.13453,19.66429],[78.13031,19.66451],[78.12726,19.65497],[78.1237,19.6508],[78.12019,19.65046],[78.10895,19.65636],[78.10534,19.65598],[78.09824,19.64904],[78.0962,19.63833],[78.09335,19.63658],[78.08734,19.63699],[78.08017,19.64093],[78.07572,19.65197],[78.0705,19.65941],[78.06533,19.66205],[78.05586,19.66261],[78.05489,19.66609],[78.05624,19.67483],[78.05107,19.68761],[78.04867,19.69007],[78.03842,19.69251],[78.03079,19.6925],[78.01639,19.68523],[78.00046,19.67263],[77.98985,19.67317],[77.981,19.68097],[77.98264,19.69199],[77.98015,19.69989],[77.97782,19.70178],[77.96948,19.70275],[77.96319,19.7066],[77.95711,19.71794],[77.94728,19.73002],[77.93023,19.73852],[77.92521,19.73725],[77.91419,19.72903],[77.90412,19.73315],[77.89766,19.73322],[77.89433,19.7271],[77.88985,19.72591],[77.87964,19.735],[77.8765,19.74405],[77.86663,19.74152],[77.85923,19.74664],[77.85799,19.7514],[77.86375,19.76755],[77.86342,19.77407],[77.86144,19.77861],[77.85182,19.78514],[77.84826,19.79806],[77.85307,19.80514],[77.86991,19.82074],[77.87039,19.83357],[77.87409,19.84634],[77.87994,19.85035],[77.89617,19.87529],[77.90356,19.88128],[77.91771,19.88419],[77.92508,19.89059],[77.93606,19.89182],[77.93984,19.89449],[77.9431,19.9008],[77.95238,19.90888],[77.9675,19.90549],[77.97882,19.90865],[77.99891,19.9114],[78.01458,19.9077],[78.02013,19.9094],[78.02548,19.91656],[78.03311,19.91985],[78.049,19.92354],[78.05482,19.92342],[78.05792,19.92085],[78.05915,19.91249],[78.07496,19.89571],[78.09922,19.89081],[78.10657,19.89081],[78.12713,19.89429],[78.13687,19.90734],[78.14243,19.91055],[78.17892,19.90403],[78.18886,19.8963],[78.20429,19.89842],[78.21654,19.90892],[78.23462,19.91128],[78.2459,19.92257],[78.25067,19.92435],[78.25261,19.92403],[78.2557,19.91661],[78.25632,19.90356],[78.25448,19.89944],[78.24402,19.889],[78.24117,19.88395],[78.24392,19.87191],[78.24745,19.86781],[78.25202,19.86571],[78.2648,19.86799],[78.27569,19.87536],[78.27934,19.88202],[78.28072,19.90048],[78.2832,19.90573],[78.30703,19.9143],[78.32636,19.91659],[78.33178,19.91337],[78.33412,19.90572],[78.32465,19.89737],[78.32471,19.89339],[78.32876,19.88715],[78.33688,19.883],[78.36043,19.8834],[78.36964,19.87977],[78.38067,19.88044],[78.38304,19.87391],[78.38179,19.85704],[78.38598,19.84609],[78.40028,19.83403],[78.42295,19.81763],[78.43168,19.81488],[78.45389,19.81295],[78.46923,19.81772],[78.47246,19.81734],[78.48315,19.80381],[78.48503,19.79605],[78.49024,19.79268],[78.49521,19.79263],[78.50722,19.79755],[78.50895,19.81205],[78.51527,19.81902],[78.53168,19.81859],[78.53795,19.82006],[78.54229,19.82383],[78.54948,19.82425],[78.56323,19.82108],[78.57229,19.81585],[78.58612,19.81879],[78.59258,19.81752],[78.60357,19.81837],[78.61057,19.81667],[78.61899,19.80998],[78.62552,19.80816],[78.64274,19.80781],[78.65505,19.80019],[78.66635,19.79975],[78.67513,19.79486],[78.69895,19.78856],[78.70167,19.7862],[78.70609,19.7723],[78.71971,19.76654],[78.72415,19.76775],[78.73002,19.78023],[78.73887,19.78318],[78.74611,19.78117],[78.75171,19.77466],[78.75637,19.77251],[78.77112,19.77938],[78.77734,19.77986],[78.78237,19.77841],[78.7863,19.77653],[78.79563,19.76727],[78.79693,19.76001],[78.80435,19.75625],[78.81692,19.76183],[78.82588,19.75514],[78.83351,19.76012],[78.84668,19.76367],[78.85628,19.7713],[78.86322,19.7711],[78.87019,19.76824],[78.87834,19.76721],[78.88138,19.76411],[78.87899,19.75196],[78.87985,19.74826],[78.88698,19.7462],[78.89542,19.73899],[78.90068,19.73734],[78.90925,19.73923],[78.91837,19.74612],[78.92448,19.74846],[78.9447,19.74844],[78.94904,19.7505],[78.95084,19.75489],[78.94945,19.76222],[78.93892,19.77102],[78.93764,19.77873],[78.94055,19.7855],[78.95499,19.8009],[78.96842,19.80705],[79.00252,19.80751],[79.01115,19.8061],[79.01784,19.80095],[79.02373,19.80045],[79.03107,19.80593],[79.03562,19.81761],[79.0433,19.82205],[79.04828,19.82206],[79.06122,19.81708],[79.07194,19.81793],[79.08573,19.8303],[79.08865,19.83572],[79.08924,19.84244],[79.09789,19.84219],[79.11184,19.85058],[79.11827,19.86125],[79.13369,19.86762],[79.13706,19.8777],[79.14118,19.88084],[79.14907,19.89488],[79.14791,19.89752],[79.13073,19.90005],[79.11174,19.9054],[79.10101,19.91756],[79.09373,19.91596],[79.09111,19.91764],[79.08878,19.92916],[79.09005,19.94323],[79.08902,19.94824],[79.10241,19.95776],[79.10898,19.9706],[79.108,19.97377],[79.09292,19.97824],[79.09203,19.98231],[79.10188,19.99014],[79.10948,19.988],[79.11175,19.99093],[79.11239,19.9948],[79.10762,20.00868],[79.09883,20.01625],[79.09096,20.01798],[79.08204,20.02485],[79.07977,20.04165],[79.07258,20.05304],[79.07267,20.06354],[79.0679,20.07024],[79.0649,20.07084],[79.05867,20.06605],[79.04521,20.06859],[79.04368,20.07428],[79.04764,20.07994],[79.0475,20.08702],[79.0391,20.09051],[79.03298,20.09504],[79.02067,20.11101],[79.00798,20.11919],[78.9998,20.1266],[78.98882,20.12919],[78.97718,20.1244],[78.9702,20.12755],[78.96787,20.13244],[78.96945,20.1442],[78.9716,20.14615],[78.97949,20.14718],[78.9812,20.14997],[78.97277,20.16268],[78.95749,20.16785],[78.95369,20.17223],[78.95409,20.17645],[78.9577,20.18377],[78.95459,20.19498],[78.96043,20.20164],[78.96231,20.20786],[78.95608,20.21367],[78.93946,20.22031],[78.93747,20.22939],[78.92274,20.23848],[78.92123,20.24237],[78.92216,20.25024],[78.91998,20.25429],[78.91521,20.25594],[78.90833,20.25518],[78.89483,20.24956],[78.88178,20.24999],[78.87083,20.25292],[78.85809,20.25408],[78.83482,20.2501],[78.81796,20.25061],[78.81348,20.25451],[78.81204,20.2603],[78.81304,20.26449],[78.82009,20.27327],[78.81944,20.27848],[78.80962,20.28639],[78.79975,20.29935],[78.79585,20.29975],[78.78869,20.29738],[78.7762,20.30071],[78.76653,20.29513],[78.75822,20.29482],[78.7494,20.29786],[78.73682,20.29384],[78.73305,20.29765],[78.72905,20.30673],[78.72205,20.30744],[78.71555,20.31065],[78.70767,20.31114],[78.70614,20.31225],[78.70607,20.31511],[78.7084,20.32084],[78.70778,20.329],[78.7103,20.34039],[78.70825,20.34981],[78.70369,20.3539],[78.68933,20.35922],[78.6886,20.37067],[78.67812,20.38347],[78.6632,20.39597],[78.65908,20.41192],[78.65499,20.41574],[78.64548,20.42022],[78.64375,20.42447],[78.64636,20.4288],[78.64817,20.42901],[78.64832,20.43447],[78.64027,20.43669],[78.61931,20.43558],[78.6167,20.43664],[78.61439,20.44343],[78.61199,20.44486],[78.60889,20.44263],[78.60812,20.43985],[78.60935,20.43368],[78.60621,20.43156],[78.58021,20.43314],[78.56377,20.4396],[78.5553,20.45127],[78.54608,20.45433],[78.5443,20.45812],[78.5357,20.4663],[78.53419,20.46912],[78.53601,20.47808],[78.53516,20.48055],[78.53296,20.48383],[78.52802,20.48574],[78.52144,20.49207],[78.52143,20.50119],[78.51779,20.50626],[78.51621,20.51267],[78.509,20.51698],[78.50855,20.52315],[78.49502,20.52244],[78.48494,20.52848],[78.47413,20.52816],[78.47006,20.52717],[78.46595,20.5222],[78.45044,20.5129],[78.44219,20.51386],[78.43356,20.51949],[78.42029,20.5135],[78.40993,20.51194],[78.40456,20.51317],[78.39542,20.51823],[78.3851,20.51987],[78.38016,20.52852],[78.36788,20.53378],[78.36355,20.53351],[78.36025,20.52894],[78.35557,20.52904],[78.34909,20.53305],[78.34549,20.53896],[78.33339,20.54543],[78.29795,20.55561],[78.29374,20.56068],[78.28483,20.55908],[78.27999,20.56024],[78.27509,20.5653],[78.27466,20.57059],[78.2633,20.57849],[78.26254,20.58756],[78.25682,20.59785],[78.25947,20.60189],[78.25756,20.60729],[78.25168,20.61488],[78.25327,20.63511],[78.24867,20.64549],[78.26486,20.65992],[78.27024,20.6683],[78.26649,20.67642],[78.26686,20.68045],[78.27724,20.68968],[78.27694,20.69622],[78.27513,20.6963]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"501","area_level":"District","area_name":"Adilabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.33565,19.88358],[78.32876,19.88715],[78.32436,19.89483],[78.32512,19.89815],[78.33409,19.9053],[78.33328,19.91047],[78.3306,19.91469],[78.32184,19.91681],[78.30703,19.9143],[78.29783,19.87225],[78.29188,19.86172],[78.28531,19.85662],[78.28608,19.84794],[78.29975,19.841],[78.30385,19.84032],[78.31576,19.84256],[78.33641,19.83792],[78.33402,19.81459],[78.3448,19.81337],[78.35238,19.8074],[78.35707,19.80577],[78.35889,19.80289],[78.36459,19.78065],[78.36365,19.77577],[78.35893,19.76793],[78.35555,19.75201],[78.34929,19.73798],[78.34464,19.73811],[78.34123,19.73576],[78.34082,19.73333],[78.34285,19.72978],[78.33982,19.72696],[78.33929,19.72416],[78.3435,19.71547],[78.34313,19.71325],[78.31865,19.70553],[78.31573,19.70259],[78.31182,19.69105],[78.30341,19.6912],[78.30019,19.68799],[78.28785,19.68804],[78.27619,19.69242],[78.27108,19.67871],[78.26579,19.67309],[78.26265,19.66506],[78.26891,19.66407],[78.27162,19.66191],[78.27105,19.65854],[78.27901,19.65764],[78.28088,19.65093],[78.29046,19.646],[78.29208,19.64223],[78.2922,19.62741],[78.2939,19.61944],[78.30557,19.60707],[78.30382,19.58478],[78.3009,19.57907],[78.30425,19.57269],[78.30369,19.56932],[78.29729,19.5679],[78.29815,19.56404],[78.29356,19.55898],[78.27525,19.56246],[78.27431,19.55397],[78.28393,19.54141],[78.29323,19.54223],[78.29411,19.53479],[78.29244,19.52931],[78.2904,19.52762],[78.296,19.51737],[78.29701,19.51308],[78.29495,19.51317],[78.29866,19.49681],[78.30922,19.48108],[78.30451,19.45652],[78.29865,19.45195],[78.28697,19.44853],[78.27044,19.45616],[78.26868,19.44847],[78.26374,19.44893],[78.26265,19.44306],[78.25831,19.44179],[78.25338,19.43677],[78.24648,19.4352],[78.24672,19.43217],[78.24451,19.4288],[78.23743,19.42873],[78.23561,19.42675],[78.21996,19.43302],[78.21159,19.42848],[78.20253,19.4197],[78.19919,19.41484],[78.19881,19.41016],[78.19507,19.40675],[78.19244,19.40669],[78.18382,19.4122],[78.17619,19.41226],[78.18767,19.39459],[78.17679,19.3674],[78.17923,19.36284],[78.17206,19.35972],[78.17215,19.3493],[78.17623,19.33493],[78.18324,19.32998],[78.18951,19.32897],[78.19228,19.32583],[78.19021,19.32078],[78.19608,19.31548],[78.19736,19.30903],[78.20753,19.30714],[78.21813,19.31249],[78.22091,19.31061],[78.23024,19.30887],[78.2421,19.30173],[78.24847,19.29033],[78.2579,19.28974],[78.26586,19.28583],[78.27107,19.28082],[78.27232,19.27203],[78.27544,19.2659],[78.29276,19.26378],[78.29939,19.25938],[78.30097,19.24645],[78.30525,19.24133],[78.30393,19.23573],[78.30742,19.23434],[78.30925,19.23147],[78.30808,19.22952],[78.30996,19.22306],[78.31335,19.22132],[78.31715,19.21574],[78.32435,19.21268],[78.3297,19.207],[78.33812,19.20777],[78.3416,19.20562],[78.34718,19.20723],[78.35143,19.20444],[78.35333,19.19886],[78.35687,19.1978],[78.36013,19.20034],[78.36297,19.19986],[78.36566,19.19174],[78.36419,19.18799],[78.36932,19.18228],[78.38354,19.17961],[78.38846,19.17582],[78.39425,19.17659],[78.39821,19.17999],[78.40071,19.18012],[78.4044,19.17819],[78.4042,19.17547],[78.40818,19.17333],[78.41459,19.1724],[78.42104,19.17585],[78.43094,19.17269],[78.43373,19.17616],[78.43616,19.18451],[78.4484,19.17886],[78.44969,19.1839],[78.45656,19.19541],[78.45491,19.20616],[78.45829,19.22252],[78.45664,19.22682],[78.48371,19.22666],[78.49863,19.21859],[78.50943,19.21475],[78.51904,19.22618],[78.51787,19.24545],[78.52183,19.25063],[78.52566,19.25498],[78.54733,19.26199],[78.57031,19.28646],[78.58448,19.28934],[78.5877,19.28802],[78.60111,19.27683],[78.61024,19.26513],[78.61538,19.26104],[78.61786,19.27019],[78.62111,19.27408],[78.65103,19.30009],[78.67367,19.31599],[78.69048,19.31653],[78.72252,19.3264],[78.71994,19.29649],[78.73649,19.28596],[78.75884,19.27816],[78.76791,19.25655],[78.77591,19.25063],[78.78049,19.24933],[78.78421,19.24586],[78.78614,19.24068],[78.7901,19.24047],[78.79994,19.21404],[78.80199,19.21666],[78.80532,19.21708],[78.81213,19.22151],[78.81509,19.23137],[78.81836,19.23539],[78.81967,19.24674],[78.82966,19.25267],[78.84323,19.2547],[78.84485,19.25651],[78.84474,19.26007],[78.84883,19.26268],[78.84666,19.26771],[78.84782,19.27174],[78.85468,19.27882],[78.84985,19.29465],[78.85836,19.32405],[78.8583,19.33145],[78.85414,19.36853],[78.84605,19.37097],[78.84063,19.37056],[78.82865,19.37503],[78.82477,19.37459],[78.8211,19.37894],[78.8106,19.38086],[78.80898,19.38324],[78.81047,19.38408],[78.80986,19.38659],[78.81258,19.38859],[78.81953,19.38666],[78.82086,19.38778],[78.82178,19.39702],[78.8297,19.40688],[78.8294,19.4094],[78.8445,19.42256],[78.84134,19.43394],[78.853,19.44725],[78.85994,19.44795],[78.86206,19.44526],[78.8654,19.4445],[78.8845,19.44546],[78.8872,19.45034],[78.89327,19.45472],[78.90381,19.47416],[78.9146,19.47342],[78.92109,19.46312],[78.92682,19.46208],[78.95763,19.47349],[78.96053,19.47798],[78.97757,19.49235],[78.95878,19.50288],[78.95545,19.50206],[78.95223,19.5038],[78.94907,19.50134],[78.94893,19.51017],[78.94214,19.51381],[78.95025,19.53326],[78.94476,19.53715],[78.93557,19.5474],[78.9354,19.54995],[78.94066,19.55307],[78.93767,19.56187],[78.94649,19.56161],[78.95254,19.56498],[78.96487,19.57358],[78.97283,19.58239],[78.97178,19.59001],[78.95914,19.59547],[78.95562,19.60017],[78.95537,19.61912],[78.96119,19.63169],[78.96185,19.63744],[78.95739,19.64717],[78.95546,19.65593],[78.94423,19.66174],[78.91972,19.662],[78.91986,19.66697],[78.91582,19.6669],[78.91165,19.66911],[78.90768,19.66799],[78.90354,19.67001],[78.89601,19.66446],[78.88645,19.66245],[78.89048,19.65941],[78.88673,19.65507],[78.86809,19.65903],[78.86159,19.65741],[78.85192,19.65836],[78.85584,19.67731],[78.85569,19.68666],[78.85715,19.68962],[78.85992,19.68949],[78.84943,19.72197],[78.85237,19.7279],[78.85115,19.73613],[78.84795,19.7355],[78.84532,19.74688],[78.8404,19.75634],[78.84096,19.76189],[78.83351,19.76012],[78.82588,19.75514],[78.81692,19.76183],[78.80691,19.75689],[78.80216,19.75653],[78.79693,19.76001],[78.79563,19.76727],[78.7863,19.77653],[78.78237,19.77841],[78.77734,19.77986],[78.77112,19.77938],[78.75637,19.77251],[78.75171,19.77466],[78.74611,19.78117],[78.74006,19.78313],[78.73002,19.78023],[78.72415,19.76775],[78.71916,19.76665],[78.70609,19.7723],[78.70137,19.78674],[78.69256,19.79103],[78.67513,19.79486],[78.66635,19.79975],[78.65505,19.80019],[78.64274,19.80781],[78.62552,19.80816],[78.61899,19.80998],[78.61115,19.81632],[78.60731,19.81761],[78.58612,19.81879],[78.57229,19.81585],[78.56323,19.82108],[78.55201,19.82408],[78.54229,19.82383],[78.53794,19.82005],[78.53078,19.81845],[78.51502,19.81893],[78.50895,19.81205],[78.50722,19.79755],[78.49521,19.79263],[78.49024,19.79268],[78.48503,19.79605],[78.48315,19.80381],[78.47246,19.81734],[78.46923,19.81772],[78.45389,19.81295],[78.43168,19.81488],[78.42295,19.81763],[78.40028,19.83403],[78.38598,19.84609],[78.38179,19.85704],[78.38304,19.87391],[78.38067,19.88044],[78.36964,19.87977],[78.36043,19.8834],[78.33565,19.88358]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"502","area_level":"District","area_name":"Ananthapuramu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.13122,15.42632],[77.12596,15.42447],[77.121,15.42493],[77.12018,15.42297],[77.11656,15.42205],[77.11361,15.41914],[77.11449,15.4173],[77.11296,15.41785],[77.10489,15.41305],[77.06429,15.40561],[77.06662,15.41644],[77.05658,15.41968],[77.03383,15.41894],[77.0288,15.40613],[77.0314,15.40104],[77.03963,15.39702],[77.04725,15.39002],[77.04742,15.3834],[77.04135,15.37099],[77.04183,15.36192],[77.04474,15.35569],[77.05903,15.34896],[77.0649,15.34355],[77.06601,15.33774],[77.06373,15.32802],[77.07439,15.32589],[77.10145,15.33368],[77.1131,15.33368],[77.11259,15.32743],[77.11701,15.32574],[77.11838,15.29485],[77.15158,15.29243],[77.15194,15.27568],[77.1471,15.27495],[77.14714,15.27292],[77.15285,15.27406],[77.15926,15.26784],[77.16693,15.26858],[77.16767,15.2585],[77.14378,15.25721],[77.14304,15.25184],[77.14054,15.25172],[77.14028,15.24748],[77.13622,15.24096],[77.13283,15.24169],[77.13251,15.23969],[77.12627,15.24002],[77.12512,15.22694],[77.14416,15.22397],[77.1454,15.2251],[77.14766,15.22391],[77.14725,15.22068],[77.15197,15.21757],[77.15166,15.2147],[77.15482,15.21482],[77.15931,15.201],[77.16195,15.20111],[77.16588,15.18935],[77.16913,15.17135],[77.16742,15.17125],[77.16736,15.16815],[77.16487,15.1682],[77.16283,15.15736],[77.14076,15.15859],[77.13472,15.14829],[77.13714,15.1478],[77.13795,15.14347],[77.149,15.14142],[77.14975,15.13976],[77.15728,15.14047],[77.15633,15.12293],[77.15017,15.11161],[77.14208,15.10457],[77.13694,15.10425],[77.13696,15.10234],[77.13012,15.10077],[77.12821,15.07231],[77.12081,15.054],[77.1195,15.04569],[77.11527,15.0464],[77.11293,15.03406],[77.09366,15.03614],[77.09085,15.02933],[77.08475,15.03071],[77.08245,15.00608],[77.0725,15.0058],[77.07204,15.00459],[77.0481,15.00801],[77.04412,15.00984],[77.05043,15.02447],[77.04956,15.03308],[77.04032,15.0331],[77.03595,15.03128],[77.00408,15.03383],[77.00303,15.03091],[76.98603,15.02649],[76.98522,15.01519],[76.9775,15.01568],[76.96592,15.01804],[76.9496,15.03037],[76.93586,15.02941],[76.92222,15.03128],[76.91837,15.03552],[76.90722,15.03252],[76.89498,15.03707],[76.87716,15.03021],[76.87784,15.03546],[76.86919,15.05342],[76.86519,15.05522],[76.86589,15.05968],[76.86411,15.05803],[76.86087,15.05979],[76.86143,15.06198],[76.85459,15.06512],[76.83602,15.07923],[76.82377,15.08001],[76.81161,15.08638],[76.80024,15.09583],[76.79392,15.09185],[76.79235,15.08757],[76.78602,15.08781],[76.7853,15.08231],[76.78215,15.07733],[76.77787,15.07987],[76.77669,15.0784],[76.77989,15.07604],[76.77524,15.07225],[76.77361,15.05912],[76.77663,15.05468],[76.78035,15.04269],[76.78343,15.04261],[76.78575,15.03715],[76.78572,15.02768],[76.79013,15.02071],[76.78712,15.00793],[76.78363,15.00478],[76.77874,15.00456],[76.77503,14.99306],[76.77238,14.99084],[76.76957,14.99176],[76.76786,14.9901],[76.76057,14.98986],[76.76654,14.97562],[76.77761,14.97545],[76.79627,14.96917],[76.81828,14.96944],[76.8285,14.95646],[76.83411,14.95646],[76.83527,14.96003],[76.84194,14.96641],[76.86746,14.96982],[76.86609,14.95753],[76.86962,14.93771],[76.86384,14.89558],[76.84733,14.89598],[76.84548,14.88929],[76.84552,14.88718],[76.85247,14.88697],[76.85145,14.88335],[76.85339,14.88321],[76.85388,14.86918],[76.85719,14.86911],[76.85489,14.85892],[76.85541,14.84878],[76.85406,14.84323],[76.84179,14.83655],[76.8455,14.83405],[76.84601,14.82205],[76.85456,14.81809],[76.85398,14.80944],[76.85146,14.8086],[76.83737,14.81056],[76.83675,14.79077],[76.83257,14.79039],[76.83239,14.79291],[76.81908,14.79312],[76.82034,14.78888],[76.81766,14.7876],[76.80296,14.7856],[76.79383,14.7854],[76.78864,14.78697],[76.78846,14.78582],[76.78396,14.78697],[76.78269,14.78594],[76.78898,14.77228],[76.78953,14.76006],[76.79415,14.75127],[76.80294,14.74188],[76.78651,14.70843],[76.78622,14.69578],[76.77527,14.68096],[76.77253,14.63911],[76.76692,14.61827],[76.76499,14.60212],[76.78023,14.59306],[76.78033,14.59704],[76.78184,14.5965],[76.78337,14.58044],[76.79136,14.55465],[76.79786,14.54917],[76.80282,14.5422],[76.80628,14.53106],[76.81254,14.53173],[76.81941,14.52994],[76.82346,14.52682],[76.83101,14.53036],[76.83282,14.52911],[76.83549,14.5213],[76.8419,14.51937],[76.84923,14.51258],[76.8556,14.50959],[76.8592,14.49746],[76.86246,14.49276],[76.8651,14.47823],[76.86796,14.47404],[76.88427,14.47708],[76.88387,14.47927],[76.88651,14.48353],[76.88925,14.48317],[76.90069,14.48921],[76.92091,14.49052],[76.94339,14.48948],[76.94875,14.48914],[76.95,14.48676],[76.97481,14.48533],[76.97544,14.47786],[76.97167,14.46814],[76.9684,14.46511],[76.96833,14.46179],[76.9598,14.45021],[76.9568,14.45198],[76.95037,14.45237],[76.94596,14.45255],[76.94479,14.4509],[76.94779,14.41316],[76.94676,14.40615],[76.94271,14.39934],[76.93142,14.41052],[76.91583,14.42069],[76.9046,14.40392],[76.89863,14.39795],[76.88482,14.39571],[76.88375,14.36466],[76.88201,14.35971],[76.88464,14.34754],[76.89228,14.34126],[76.90339,14.32268],[76.90787,14.32295],[76.9272,14.31451],[76.94565,14.31318],[76.95672,14.29435],[76.94738,14.28617],[76.93877,14.28301],[76.93711,14.28034],[76.92818,14.2793],[76.9249,14.27378],[76.9358,14.25937],[76.94006,14.24461],[76.95194,14.2419],[76.95983,14.24496],[76.96983,14.24337],[76.9762,14.24613],[76.9856,14.24733],[76.99194,14.24141],[76.99894,14.24087],[77.00566,14.23579],[77.00848,14.238],[77.03036,14.24227],[77.03054,14.24419],[77.03614,14.24487],[77.03605,14.24674],[77.05246,14.2455],[77.05773,14.2438],[77.05694,14.24067],[77.06028,14.2362],[77.06007,14.23228],[77.0618,14.22946],[77.06776,14.2284],[77.07589,14.22336],[77.08117,14.21415],[77.1008,14.21714],[77.11486,14.22314],[77.11667,14.22638],[77.11565,14.23758],[77.11832,14.24481],[77.11533,14.25453],[77.11856,14.25682],[77.12048,14.26293],[77.11119,14.26158],[77.11169,14.26536],[77.11019,14.26827],[77.11552,14.27424],[77.11564,14.29248],[77.12588,14.30042],[77.13226,14.31066],[77.13633,14.32302],[77.137,14.33176],[77.1357,14.33687],[77.1389,14.33997],[77.15266,14.33914],[77.15734,14.3421],[77.16675,14.34212],[77.16932,14.33544],[77.17868,14.33548],[77.17795,14.33422],[77.18104,14.33038],[77.18404,14.33247],[77.19742,14.32118],[77.21347,14.31878],[77.22867,14.3212],[77.2382,14.31736],[77.24734,14.31781],[77.25387,14.32223],[77.25336,14.32526],[77.25828,14.32748],[77.25858,14.33092],[77.26357,14.3328],[77.26931,14.33211],[77.27712,14.33754],[77.28388,14.33753],[77.28484,14.3401],[77.28657,14.3401],[77.28744,14.32716],[77.28854,14.32714],[77.28883,14.30547],[77.28795,14.29876],[77.28289,14.28607],[77.28354,14.28274],[77.28933,14.2813],[77.30534,14.28344],[77.31426,14.28051],[77.33016,14.27986],[77.33906,14.2769],[77.36382,14.27583],[77.36186,14.26875],[77.36383,14.25469],[77.36012,14.24531],[77.35949,14.23401],[77.36637,14.23285],[77.37917,14.22648],[77.3842,14.22095],[77.38322,14.20744],[77.38667,14.20352],[77.38709,14.20002],[77.3926,14.19884],[77.40077,14.20321],[77.41027,14.20571],[77.41413,14.20476],[77.41828,14.20907],[77.41939,14.21162],[77.41769,14.22584],[77.41212,14.22769],[77.41148,14.23238],[77.40967,14.23192],[77.40883,14.25985],[77.40694,14.25969],[77.40538,14.26669],[77.39578,14.26612],[77.38736,14.27087],[77.38877,14.28084],[77.38664,14.28167],[77.38514,14.29268],[77.3824,14.29901],[77.37782,14.30139],[77.37703,14.3076],[77.37904,14.32272],[77.38555,14.3279],[77.38909,14.33313],[77.39417,14.33659],[77.40644,14.33775],[77.41213,14.33651],[77.42308,14.32818],[77.4284,14.32864],[77.43126,14.31296],[77.43806,14.31638],[77.44622,14.31747],[77.44518,14.29523],[77.44813,14.28261],[77.45063,14.28279],[77.45028,14.28071],[77.45965,14.2805],[77.46606,14.28309],[77.47893,14.29216],[77.48312,14.29071],[77.48712,14.28172],[77.49076,14.2813],[77.49275,14.27815],[77.49828,14.27885],[77.50386,14.26375],[77.50221,14.2614],[77.50341,14.25977],[77.49652,14.23691],[77.49237,14.23484],[77.49373,14.23301],[77.49279,14.23101],[77.49592,14.23199],[77.49449,14.22424],[77.50328,14.21054],[77.50133,14.20477],[77.50465,14.19398],[77.51703,14.18604],[77.51703,14.18281],[77.5152,14.18294],[77.51343,14.17785],[77.51434,14.17665],[77.51065,14.17305],[77.50351,14.15712],[77.49961,14.1598],[77.48813,14.16167],[77.48083,14.16474],[77.46809,14.16489],[77.467,14.17164],[77.45682,14.16962],[77.44575,14.1717],[77.4302,14.17046],[77.4226,14.17298],[77.42277,14.17644],[77.42036,14.17695],[77.40785,14.17352],[77.39372,14.17425],[77.39162,14.17282],[77.39474,14.1687],[77.39488,14.16077],[77.38925,14.15965],[77.38804,14.15363],[77.38507,14.15326],[77.38335,14.14413],[77.37894,14.13584],[77.35785,14.13032],[77.35171,14.1311],[77.35148,14.12037],[77.34747,14.10364],[77.34978,14.10313],[77.35355,14.10969],[77.36168,14.11533],[77.37566,14.11868],[77.3821,14.1235],[77.39061,14.12664],[77.39736,14.12544],[77.39724,14.12318],[77.40103,14.12018],[77.40092,14.11871],[77.39761,14.10955],[77.38881,14.09948],[77.38618,14.09756],[77.38127,14.09784],[77.37562,14.07935],[77.37361,14.07701],[77.36366,14.07301],[77.36054,14.06256],[77.34593,14.05967],[77.3405,14.06019],[77.33509,14.0454],[77.3323,14.03069],[77.38491,14.01603],[77.39016,14.0167],[77.38765,14.00571],[77.37967,13.98984],[77.38164,13.97623],[77.39569,13.98373],[77.42589,13.98611],[77.42766,13.97968],[77.43402,13.98016],[77.43788,13.97552],[77.43475,13.96438],[77.43531,13.95766],[77.43758,13.95551],[77.43536,13.94751],[77.43072,13.94508],[77.41209,13.94556],[77.41488,13.93663],[77.41588,13.9242],[77.4349,13.91967],[77.43504,13.91501],[77.43227,13.91054],[77.42835,13.90908],[77.42841,13.90593],[77.42283,13.90282],[77.42051,13.89933],[77.41057,13.89631],[77.40546,13.88945],[77.39874,13.88813],[77.39994,13.89646],[77.39788,13.90618],[77.38717,13.90625],[77.36849,13.90295],[77.35763,13.90337],[77.35445,13.90411],[77.35293,13.9139],[77.35016,13.91341],[77.34784,13.91596],[77.35521,13.93076],[77.36745,13.94968],[77.37129,13.95275],[77.34949,13.95814],[77.35385,13.96279],[77.35213,13.96875],[77.35595,13.97908],[77.35934,13.98383],[77.36109,13.99081],[77.34818,13.99447],[77.33622,13.99537],[77.33686,14.00447],[77.32268,14.02301],[77.32223,14.02999],[77.31081,14.03253],[77.30658,14.032],[77.30142,14.02741],[77.29827,14.02161],[77.29209,14.02001],[77.28188,14.01291],[77.275,14.01128],[77.27931,14.02602],[77.27876,14.03241],[77.27686,14.03197],[77.27732,14.03465],[77.27036,14.03448],[77.26312,14.02873],[77.26059,14.02886],[77.25679,14.02238],[77.24817,14.01757],[77.24535,14.01194],[77.21982,14.01357],[77.21572,14.01088],[77.20997,14.01104],[77.20467,14.00825],[77.174,14.01298],[77.17095,14.012],[77.17283,14.00108],[77.14922,14.00116],[77.14107,14.00386],[77.14173,14.0132],[77.14036,14.01796],[77.1364,14.0229],[77.13184,14.04392],[77.1274,14.04701],[77.10237,14.04524],[77.09512,14.04244],[77.07892,14.04264],[77.07532,14.04348],[77.07612,14.05327],[77.06742,14.05202],[77.04571,14.05669],[77.03476,14.0557],[77.03152,14.05646],[77.02768,14.06175],[77.02544,14.06573],[77.02888,14.07781],[77.0298,14.08817],[77.01842,14.09463],[77.01912,14.09639],[77.01467,14.1],[77.01636,14.10424],[77.02406,14.11261],[77.02181,14.12325],[77.02622,14.12502],[77.02586,14.12994],[77.0201,14.1309],[77.02183,14.15195],[77.02041,14.15716],[77.02603,14.17479],[77.02333,14.17669],[77.00546,14.18397],[76.99644,14.18027],[76.98377,14.17882],[76.97065,14.18241],[76.9606,14.18177],[76.95903,14.18262],[76.95976,14.18395],[76.95736,14.18811],[76.95114,14.19266],[76.94757,14.19818],[76.94271,14.1954],[76.94248,14.19109],[76.94467,14.18657],[76.94208,14.18067],[76.94237,14.17333],[76.92192,14.16942],[76.91975,14.16446],[76.90966,14.16796],[76.90054,14.16757],[76.89966,14.16923],[76.89837,14.16755],[76.89453,14.16781],[76.89052,14.14282],[76.88591,14.13824],[76.88952,14.13562],[76.9048,14.13364],[76.91284,14.12881],[76.91757,14.12884],[76.92498,14.13711],[76.93112,14.13102],[76.93587,14.12885],[76.93658,14.12428],[76.94426,14.12074],[76.94569,14.11821],[76.95353,14.09966],[76.9484,14.09205],[76.95941,14.09163],[76.97345,14.08352],[76.97497,14.08091],[76.97526,14.074],[76.97757,14.07129],[76.97646,14.06528],[76.97174,14.05802],[76.9586,14.05704],[76.95031,14.05356],[76.93238,14.05392],[76.9344,14.04464],[76.93113,14.0302],[76.93502,14.0328],[76.94016,14.0295],[76.94347,14.02974],[76.94378,14.0233],[76.94994,14.01509],[76.96539,14.0115],[76.98197,14.00163],[76.99637,13.99051],[76.99949,13.99034],[77.00033,13.98942],[76.99618,13.97676],[76.99377,13.96256],[77.00627,13.95646],[77.01421,13.95487],[77.02437,13.93995],[77.03704,13.93695],[77.04166,13.93343],[77.04422,13.91476],[77.04729,13.9066],[77.03222,13.90518],[77.02303,13.9026],[77.02325,13.89593],[77.02063,13.89235],[77.02032,13.88843],[77.01625,13.88441],[77.01847,13.87254],[77.01319,13.87152],[77.01422,13.86031],[77.00654,13.85206],[76.9968,13.84895],[76.99223,13.84901],[76.9889,13.83526],[76.98289,13.8289],[76.97802,13.82687],[76.97641,13.81732],[76.98974,13.81294],[76.99169,13.80267],[76.98919,13.79463],[76.9852,13.7908],[76.9929,13.77075],[76.9945,13.75999],[76.99839,13.75505],[76.99687,13.74775],[76.9985,13.74557],[77.0165,13.73851],[77.01658,13.74586],[77.01868,13.74867],[77.01735,13.7561],[77.02388,13.7679],[77.02447,13.77922],[77.04337,13.77779],[77.04406,13.77084],[77.04861,13.77018],[77.05184,13.76418],[77.05804,13.7603],[77.05897,13.75716],[77.05749,13.75296],[77.0602,13.75283],[77.05991,13.74933],[77.0647,13.74383],[77.06978,13.74522],[77.07589,13.74284],[77.08563,13.74244],[77.08396,13.74577],[77.08383,13.75664],[77.08547,13.76234],[77.09022,13.76236],[77.09044,13.76714],[77.10596,13.76776],[77.11788,13.7645],[77.12233,13.7613],[77.13684,13.7583],[77.13983,13.7611],[77.14087,13.76504],[77.15111,13.76621],[77.17305,13.76201],[77.17851,13.78268],[77.17559,13.7836],[77.16516,13.79447],[77.16285,13.79846],[77.1621,13.80476],[77.15752,13.80603],[77.16258,13.80866],[77.16279,13.81237],[77.15952,13.81686],[77.16265,13.81684],[77.16772,13.82121],[77.16868,13.82962],[77.16549,13.83311],[77.15368,13.83414],[77.15601,13.84435],[77.13217,13.8462],[77.1282,13.85646],[77.13604,13.85652],[77.14764,13.86848],[77.16858,13.86449],[77.17136,13.87111],[77.16876,13.88052],[77.16876,13.88957],[77.16205,13.89906],[77.16193,13.90662],[77.16992,13.92061],[77.18471,13.92519],[77.18808,13.91391],[77.19084,13.91187],[77.18584,13.89233],[77.18568,13.87617],[77.18139,13.86984],[77.20043,13.86304],[77.20991,13.87807],[77.2102,13.88494],[77.21313,13.88619],[77.21555,13.88617],[77.21703,13.88374],[77.21541,13.86791],[77.21985,13.86772],[77.22401,13.88122],[77.22483,13.88292],[77.22666,13.88216],[77.22989,13.89161],[77.23065,13.90333],[77.23562,13.90414],[77.23647,13.90102],[77.24514,13.90301],[77.24827,13.90121],[77.24778,13.88832],[77.24472,13.88327],[77.24868,13.87352],[77.24636,13.86791],[77.25911,13.86314],[77.25615,13.85167],[77.25669,13.84652],[77.28027,13.85105],[77.28828,13.84748],[77.29016,13.84825],[77.29492,13.8574],[77.29638,13.85701],[77.30358,13.86203],[77.31055,13.86288],[77.31149,13.86658],[77.31646,13.86327],[77.31907,13.85722],[77.32145,13.85592],[77.32165,13.84702],[77.32514,13.84538],[77.32307,13.84],[77.32469,13.83989],[77.32538,13.83324],[77.33684,13.83275],[77.34555,13.8411],[77.35328,13.84552],[77.35732,13.8513],[77.36243,13.85425],[77.37364,13.85263],[77.37689,13.85069],[77.38119,13.84729],[77.3794,13.84084],[77.3819,13.83936],[77.39938,13.84105],[77.41554,13.83973],[77.4197,13.84161],[77.42683,13.84112],[77.42917,13.8448],[77.43252,13.84322],[77.43132,13.83665],[77.4274,13.8322],[77.42737,13.82834],[77.42364,13.82374],[77.41643,13.80876],[77.41611,13.80668],[77.4185,13.80624],[77.41967,13.8096],[77.42865,13.80681],[77.42827,13.80347],[77.42549,13.80322],[77.42257,13.79909],[77.43703,13.7967],[77.44059,13.80657],[77.44533,13.81102],[77.45479,13.80985],[77.45746,13.80722],[77.46423,13.80792],[77.46459,13.80608],[77.46463,13.80318],[77.46087,13.803],[77.45649,13.78872],[77.46138,13.78839],[77.46043,13.78047],[77.46379,13.7715],[77.46515,13.75868],[77.47055,13.75802],[77.46765,13.75317],[77.46667,13.73997],[77.46464,13.73413],[77.46336,13.72292],[77.46508,13.71088],[77.46166,13.70965],[77.45007,13.7109],[77.45074,13.70483],[77.4525,13.70405],[77.453,13.69601],[77.45459,13.69564],[77.45466,13.69104],[77.45609,13.69072],[77.45533,13.68226],[77.47424,13.68611],[77.48788,13.68666],[77.48783,13.68917],[77.49211,13.68981],[77.49122,13.69519],[77.48789,13.69977],[77.48827,13.70415],[77.48652,13.7041],[77.48504,13.71478],[77.51417,13.71321],[77.51451,13.70502],[77.51237,13.69725],[77.51963,13.69627],[77.52126,13.69213],[77.52524,13.691],[77.52834,13.69301],[77.53437,13.707],[77.53664,13.7306],[77.5271,13.74152],[77.52195,13.74456],[77.5252,13.75299],[77.52727,13.75381],[77.54122,13.75594],[77.54744,13.7529],[77.5493,13.74887],[77.54929,13.74064],[77.55375,13.73654],[77.5589,13.72353],[77.56057,13.72241],[77.56485,13.72618],[77.57168,13.7382],[77.57712,13.73831],[77.58055,13.73508],[77.58685,13.73349],[77.59602,13.74819],[77.59997,13.75076],[77.61361,13.75192],[77.62443,13.73523],[77.62772,13.7346],[77.63359,13.73958],[77.63697,13.73941],[77.64143,13.74195],[77.64223,13.7468],[77.62964,13.7542],[77.62521,13.75298],[77.61884,13.75496],[77.6175,13.76193],[77.62107,13.76844],[77.64599,13.77876],[77.65129,13.78407],[77.66135,13.78538],[77.66984,13.78391],[77.68008,13.78678],[77.68146,13.7796],[77.67987,13.77233],[77.67761,13.76669],[77.67172,13.76048],[77.67962,13.76218],[77.69518,13.7707],[77.70329,13.76979],[77.70846,13.74102],[77.71514,13.74376],[77.71736,13.74107],[77.7201,13.75597],[77.71999,13.7651],[77.72222,13.76885],[77.71974,13.775],[77.71868,13.7841],[77.71951,13.78809],[77.72194,13.79],[77.72228,13.79394],[77.71931,13.80027],[77.72929,13.80221],[77.73158,13.80757],[77.74072,13.81242],[77.74514,13.81013],[77.74793,13.81039],[77.76351,13.81722],[77.78153,13.81829],[77.78876,13.82316],[77.78909,13.83047],[77.78426,13.83439],[77.7822,13.83894],[77.78227,13.84408],[77.79301,13.84894],[77.80808,13.85059],[77.81203,13.84898],[77.81485,13.85778],[77.82019,13.86321],[77.82225,13.86474],[77.83023,13.86558],[77.83707,13.86974],[77.82733,13.87444],[77.82813,13.87654],[77.83554,13.88097],[77.83196,13.89567],[77.82682,13.89921],[77.81999,13.89978],[77.81618,13.90298],[77.81703,13.90831],[77.81349,13.91462],[77.81484,13.93193],[77.82659,13.94472],[77.8308,13.94039],[77.83882,13.93589],[77.85485,13.93818],[77.86861,13.93601],[77.89569,13.94104],[77.89891,13.93064],[77.89535,13.92563],[77.89582,13.92036],[77.89968,13.91659],[77.9054,13.91644],[77.91542,13.90785],[77.92677,13.90533],[77.93713,13.91866],[77.9462,13.93534],[77.95451,13.93854],[77.95734,13.93672],[77.96,13.94051],[77.96195,13.95497],[77.96422,13.95556],[77.96813,13.96019],[77.9794,13.95862],[77.98753,13.9555],[77.98025,13.92786],[77.98376,13.91576],[77.9831,13.90487],[77.98662,13.903],[77.98431,13.89719],[77.95213,13.88983],[77.94908,13.88645],[77.94906,13.8707],[77.95416,13.85516],[77.9548,13.84224],[77.95368,13.83856],[77.95625,13.83593],[77.95614,13.83122],[77.95242,13.82908],[77.95298,13.82735],[77.96054,13.82945],[77.9761,13.82949],[77.98298,13.84727],[77.98722,13.85407],[77.98885,13.85377],[77.98951,13.8626],[77.99206,13.86882],[77.99832,13.86908],[78.00048,13.87293],[78.01158,13.87194],[78.01672,13.86496],[78.02123,13.86383],[78.03185,13.86425],[78.04133,13.86027],[78.04619,13.86213],[78.04625,13.86635],[78.05011,13.87186],[78.05083,13.87599],[78.04887,13.89609],[78.06065,13.89196],[78.06225,13.8908],[78.06183,13.88842],[78.0643,13.88664],[78.079,13.88116],[78.08054,13.86754],[78.08261,13.86429],[78.08191,13.86124],[78.08994,13.8647],[78.094,13.86481],[78.10185,13.8617],[78.11478,13.86289],[78.11681,13.85883],[78.11654,13.85187],[78.12363,13.84535],[78.1222,13.83895],[78.12547,13.83201],[78.11479,13.81199],[78.11375,13.80747],[78.12269,13.79878],[78.12654,13.7879],[78.12885,13.78546],[78.13786,13.78187],[78.14703,13.78138],[78.15118,13.78557],[78.16488,13.78362],[78.18222,13.785],[78.18317,13.78839],[78.18936,13.78823],[78.19588,13.78484],[78.20252,13.78551],[78.20881,13.781],[78.21743,13.78193],[78.237,13.7788],[78.23732,13.78062],[78.24198,13.78153],[78.24875,13.78578],[78.25116,13.79163],[78.26142,13.79135],[78.26297,13.79831],[78.2548,13.80641],[78.2549,13.82061],[78.25598,13.82371],[78.25883,13.82379],[78.25569,13.82716],[78.25656,13.83441],[78.25571,13.83649],[78.25144,13.83779],[78.24083,13.84512],[78.2422,13.8505],[78.2577,13.85388],[78.25899,13.85813],[78.26204,13.85643],[78.26233,13.8578],[78.265,13.85764],[78.26562,13.85912],[78.26398,13.85985],[78.26313,13.86423],[78.2688,13.86752],[78.26781,13.87282],[78.27474,13.88101],[78.27337,13.88378],[78.27426,13.88624],[78.27821,13.88944],[78.27274,13.89493],[78.27766,13.89521],[78.2798,13.89752],[78.28944,13.89198],[78.29832,13.89374],[78.29697,13.89585],[78.2993,13.90627],[78.30633,13.90833],[78.30992,13.91392],[78.31815,13.92078],[78.32556,13.92174],[78.33138,13.91798],[78.33649,13.92676],[78.3357,13.92977],[78.33726,13.93665],[78.3468,13.93476],[78.34837,13.93986],[78.35209,13.93845],[78.37034,13.95675],[78.37559,13.95226],[78.3724,13.94442],[78.37883,13.94033],[78.38742,13.93894],[78.39313,13.94702],[78.39943,13.95268],[78.41303,13.96135],[78.42049,13.96328],[78.42706,13.97919],[78.43457,13.97906],[78.44246,13.98353],[78.44562,13.98185],[78.45328,13.98416],[78.46039,13.98734],[78.46458,13.9946],[78.46678,13.9951],[78.46926,14.00701],[78.45833,14.00808],[78.44285,14.01512],[78.44034,14.01849],[78.44139,14.02817],[78.4398,14.04299],[78.44872,14.05206],[78.44595,14.05653],[78.44593,14.06907],[78.44719,14.07054],[78.44485,14.07212],[78.44548,14.07526],[78.443,14.07691],[78.44242,14.08041],[78.44435,14.08413],[78.448,14.08211],[78.44901,14.08444],[78.45123,14.08262],[78.45432,14.08424],[78.45858,14.091],[78.46125,14.1068],[78.45947,14.11055],[78.45396,14.11528],[78.449,14.13071],[78.44343,14.1377],[78.44096,14.13721],[78.44094,14.13512],[78.43875,14.13405],[78.4382,14.13679],[78.42827,14.13889],[78.42499,14.14064],[78.42456,14.14767],[78.42168,14.14842],[78.42268,14.15097],[78.422,14.15489],[78.41992,14.15577],[78.41983,14.16794],[78.42364,14.17818],[78.42795,14.17971],[78.43024,14.1828],[78.43113,14.19223],[78.42931,14.19633],[78.42827,14.19779],[78.4232,14.19834],[78.42109,14.19591],[78.41433,14.19603],[78.41031,14.19988],[78.40588,14.20099],[78.40632,14.21179],[78.40989,14.22359],[78.40847,14.22685],[78.41755,14.25079],[78.42383,14.27338],[78.4205,14.28292],[78.41589,14.27772],[78.39561,14.27675],[78.3683,14.2877],[78.36417,14.28688],[78.35708,14.29266],[78.34515,14.29155],[78.34311,14.29103],[78.34211,14.28866],[78.33862,14.28822],[78.32051,14.29343],[78.30742,14.29025],[78.29899,14.29021],[78.29449,14.29325],[78.28494,14.29174],[78.28252,14.29364],[78.28111,14.30124],[78.27724,14.30464],[78.25328,14.3046],[78.25111,14.30812],[78.24729,14.30723],[78.22888,14.31532],[78.22944,14.3172],[78.21989,14.32237],[78.22078,14.32449],[78.21795,14.32845],[78.20708,14.33273],[78.19118,14.34359],[78.18852,14.34977],[78.18319,14.35236],[78.17783,14.35216],[78.17089,14.35432],[78.13691,14.37859],[78.10666,14.39287],[78.08582,14.41498],[78.08504,14.42138],[78.06355,14.43449],[78.03065,14.46454],[78.00056,14.48858],[77.99806,14.50045],[77.99481,14.50197],[77.98806,14.5145],[77.97735,14.52423],[77.9725,14.53209],[77.97259,14.53504],[77.97678,14.53628],[77.97692,14.53775],[77.96269,14.5555],[77.96117,14.56001],[77.95251,14.56211],[77.94405,14.57027],[77.95363,14.5795],[77.96187,14.58174],[77.96399,14.58452],[77.9641,14.58805],[77.9659,14.58833],[77.96945,14.57499],[77.97596,14.56821],[77.98288,14.56686],[77.98518,14.5523],[77.98287,14.54558],[77.98704,14.54057],[78.01196,14.53625],[78.01429,14.53773],[78.02207,14.53302],[78.02533,14.53422],[78.03317,14.53061],[78.03447,14.53302],[78.0406,14.53369],[78.04348,14.5414],[78.04424,14.54662],[78.03869,14.5556],[78.03925,14.55954],[78.03767,14.56251],[78.03922,14.56603],[78.05897,14.57274],[78.06453,14.57234],[78.06691,14.5797],[78.06968,14.58072],[78.07417,14.58803],[78.08164,14.6121],[78.08626,14.6194],[78.08809,14.63036],[78.10441,14.62781],[78.11307,14.62815],[78.11242,14.62538],[78.11818,14.62401],[78.12173,14.62365],[78.12289,14.62555],[78.12391,14.62978],[78.11934,14.63407],[78.12952,14.64929],[78.13456,14.6953],[78.11928,14.69707],[78.11893,14.69277],[78.11656,14.69297],[78.11635,14.69155],[78.10944,14.6923],[78.10924,14.70122],[78.10671,14.70138],[78.10632,14.69942],[78.09646,14.70094],[78.09779,14.7074],[78.09508,14.70878],[78.09377,14.71349],[78.07814,14.71802],[78.06617,14.71584],[78.06336,14.7184],[78.07759,14.74497],[78.07628,14.75234],[78.07293,14.7566],[78.06776,14.75768],[78.0604,14.76315],[78.06031,14.76471],[78.04598,14.77199],[78.05495,14.78361],[78.05796,14.78996],[78.06049,14.79097],[78.06554,14.79719],[78.07177,14.81213],[78.07518,14.81618],[78.07618,14.82709],[78.10119,14.81704],[78.10852,14.84042],[78.11353,14.85062],[78.10856,14.85389],[78.08904,14.85758],[78.0941,14.87798],[78.0942,14.88423],[78.10941,14.92538],[78.11302,14.93157],[78.12229,14.93405],[78.12339,14.93678],[78.12523,14.93691],[78.12623,14.93312],[78.13108,14.93414],[78.13509,14.93979],[78.13725,14.94528],[78.13378,14.96122],[78.12574,14.96232],[78.12493,14.96458],[78.12058,14.96453],[78.11681,14.9665],[78.09834,14.96757],[78.08728,14.97216],[78.08852,14.98222],[78.08534,14.98283],[78.08232,14.98626],[78.06552,14.995],[78.0599,15.00303],[78.05697,15.00077],[78.05467,14.99206],[78.03392,14.99947],[78.03202,15.00497],[78.02632,15.01137],[78.02662,15.01637],[78.02159,15.01686],[78.01132,15.02704],[78.00936,15.04612],[78.01057,15.05079],[78.00448,15.05294],[78.00074,15.05887],[77.99505,15.06392],[77.99854,15.07216],[77.99595,15.07681],[77.99759,15.08131],[77.99869,15.08248],[78.00344,15.08033],[78.00566,15.08179],[78.00652,15.09409],[78.01367,15.10212],[78.01412,15.11188],[78.013,15.1146],[78.00819,15.11801],[78.00643,15.12246],[78.00201,15.12168],[77.99696,15.12437],[77.99323,15.13315],[77.9744,15.13888],[77.9647,15.12264],[77.96412,15.11535],[77.96126,15.10863],[77.93647,15.11457],[77.93273,15.11237],[77.9259,15.11619],[77.92025,15.11721],[77.91748,15.1206],[77.91198,15.12314],[77.90629,15.12261],[77.9057,15.12908],[77.90706,15.13063],[77.91497,15.12888],[77.91476,15.13199],[77.90859,15.13364],[77.91136,15.13559],[77.90871,15.13824],[77.90942,15.13952],[77.91397,15.1418],[77.91369,15.14439],[77.92438,15.14831],[77.92466,15.15248],[77.92043,15.15304],[77.92052,15.15588],[77.92346,15.15793],[77.92358,15.16147],[77.92102,15.16222],[77.92304,15.16414],[77.91816,15.16984],[77.91927,15.17401],[77.91629,15.17295],[77.90664,15.17574],[77.90464,15.17791],[77.89715,15.1771],[77.88464,15.17856],[77.88378,15.17502],[77.88516,15.17131],[77.88065,15.16243],[77.88126,15.1496],[77.87562,15.13948],[77.87544,15.13516],[77.85437,15.13511],[77.84272,15.12957],[77.83884,15.14487],[77.81568,15.14285],[77.8098,15.1352],[77.81118,15.12858],[77.80398,15.12233],[77.79633,15.11891],[77.7917,15.10612],[77.78871,15.10699],[77.78473,15.113],[77.78159,15.11331],[77.77936,15.11054],[77.77078,15.11391],[77.77402,15.1242],[77.75414,15.12777],[77.74802,15.13036],[77.7466,15.14097],[77.74223,15.14379],[77.74302,15.14498],[77.73514,15.14689],[77.72983,15.15183],[77.7304,15.16415],[77.73325,15.16861],[77.71646,15.17238],[77.71731,15.17924],[77.71455,15.18041],[77.71173,15.18675],[77.71011,15.18704],[77.70927,15.18413],[77.70256,15.18012],[77.69552,15.18187],[77.69305,15.18398],[77.69532,15.19493],[77.69865,15.20042],[77.69781,15.20584],[77.6961,15.20737],[77.69097,15.20699],[77.68802,15.20924],[77.68874,15.21348],[77.68182,15.21423],[77.6788,15.21705],[77.6765,15.22087],[77.67717,15.22805],[77.67543,15.23022],[77.67003,15.23275],[77.66587,15.23243],[77.66427,15.23414],[77.65644,15.2314],[77.65162,15.23264],[77.64873,15.22995],[77.64975,15.22502],[77.63766,15.22188],[77.63514,15.20701],[77.62572,15.20702],[77.62335,15.20476],[77.61829,15.20476],[77.61541,15.20644],[77.61571,15.20319],[77.6104,15.19556],[77.6114,15.18349],[77.59551,15.18356],[77.58216,15.1879],[77.57477,15.1954],[77.5755,15.1994],[77.57292,15.1974],[77.5664,15.20299],[77.54161,15.20891],[77.52704,15.22396],[77.50939,15.22334],[77.50165,15.22136],[77.4983,15.22],[77.49653,15.21546],[77.48561,15.21326],[77.48341,15.2087],[77.48104,15.20791],[77.46713,15.21743],[77.45939,15.2177],[77.45114,15.22182],[77.45029,15.21481],[77.44638,15.21354],[77.45022,15.20501],[77.43415,15.21016],[77.43298,15.22042],[77.42853,15.22077],[77.42598,15.22312],[77.41354,15.22372],[77.40895,15.2254],[77.40631,15.21908],[77.39866,15.21738],[77.39742,15.21901],[77.39498,15.21708],[77.3903,15.2172],[77.38361,15.22039],[77.36301,15.2229],[77.36213,15.2127],[77.35725,15.20068],[77.3546,15.20101],[77.35361,15.19796],[77.35002,15.18157],[77.3515,15.1812],[77.35147,15.17753],[77.33422,15.17639],[77.33081,15.17456],[77.31638,15.17741],[77.31004,15.15437],[77.29975,15.15411],[77.29183,15.1309],[77.28264,15.13195],[77.27111,15.13072],[77.26413,15.14267],[77.24669,15.14487],[77.22982,15.14376],[77.22948,15.14571],[77.22019,15.14809],[77.22027,15.15042],[77.21325,15.15156],[77.21488,15.1542],[77.21797,15.17541],[77.22149,15.17629],[77.21484,15.18391],[77.20791,15.18634],[77.20919,15.19265],[77.21244,15.19301],[77.21777,15.20735],[77.21959,15.21826],[77.22999,15.21785],[77.23223,15.24553],[77.20852,15.24688],[77.21231,15.28593],[77.19578,15.28596],[77.19625,15.29464],[77.2042,15.30557],[77.20496,15.30912],[77.20578,15.31676],[77.20325,15.31787],[77.20282,15.33117],[77.18165,15.33867],[77.18294,15.34613],[77.16956,15.35253],[77.17032,15.35479],[77.16749,15.35649],[77.16301,15.35713],[77.17181,15.37083],[77.17901,15.39759],[77.17872,15.40368],[77.17575,15.40464],[77.17408,15.40123],[77.17267,15.4033],[77.16773,15.40427],[77.16587,15.40858],[77.15732,15.40521],[77.15392,15.40885],[77.15357,15.41263],[77.15547,15.41286],[77.15499,15.41403],[77.14234,15.41843],[77.13861,15.422],[77.13362,15.42216],[77.13122,15.42632]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"503","area_level":"District","area_name":"Chittoor","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.65631,13.90609],[78.65648,13.90624],[78.65751,13.90734],[78.65822,13.90803],[78.65837,13.90821],[78.65772,13.90811],[78.65678,13.90799],[78.6568,13.90789],[78.65674,13.90765],[78.65614,13.90635],[78.65612,13.9062],[78.65617,13.90611],[78.65625,13.90607],[78.65631,13.90609]]],[[[78.46544,13.994],[78.46458,13.9946],[78.46039,13.98734],[78.45328,13.98416],[78.44562,13.98185],[78.44246,13.98353],[78.43457,13.97906],[78.42706,13.97919],[78.42049,13.96328],[78.41303,13.96135],[78.39943,13.95268],[78.39313,13.94702],[78.38742,13.93894],[78.37883,13.94033],[78.3724,13.94442],[78.37559,13.95226],[78.37034,13.95675],[78.35209,13.93845],[78.34837,13.93986],[78.3468,13.93476],[78.33726,13.93665],[78.3357,13.92977],[78.33649,13.92676],[78.33138,13.91798],[78.32556,13.92174],[78.31815,13.92078],[78.30992,13.91392],[78.30633,13.90833],[78.2993,13.90627],[78.29697,13.89585],[78.29832,13.89374],[78.28944,13.89198],[78.2798,13.89752],[78.27766,13.89521],[78.27274,13.89493],[78.27821,13.88944],[78.27426,13.88624],[78.27337,13.88378],[78.27474,13.88101],[78.26781,13.87282],[78.2688,13.86752],[78.26313,13.86423],[78.26398,13.85985],[78.26562,13.85912],[78.265,13.85764],[78.26233,13.8578],[78.26204,13.85643],[78.25899,13.85813],[78.2577,13.85388],[78.2422,13.8505],[78.24083,13.84512],[78.25144,13.83779],[78.25571,13.83649],[78.25656,13.83441],[78.25569,13.82716],[78.25883,13.82379],[78.25598,13.82371],[78.2549,13.82061],[78.2548,13.80641],[78.26297,13.79831],[78.26142,13.79135],[78.25116,13.79163],[78.24875,13.78578],[78.24198,13.78153],[78.23732,13.78062],[78.237,13.7788],[78.21743,13.78193],[78.20881,13.781],[78.20252,13.78551],[78.19588,13.78484],[78.18936,13.78823],[78.18317,13.78839],[78.18222,13.785],[78.16488,13.78362],[78.15118,13.78557],[78.14703,13.78138],[78.13786,13.78187],[78.12885,13.78546],[78.12654,13.7879],[78.1138,13.76343],[78.09988,13.75846],[78.09152,13.74228],[78.09832,13.73779],[78.10433,13.73654],[78.11101,13.7258],[78.11585,13.72253],[78.1208,13.71562],[78.11471,13.70342],[78.11322,13.69274],[78.09242,13.69117],[78.0921,13.69256],[78.08588,13.69219],[78.08014,13.69664],[78.07087,13.69844],[78.06908,13.69781],[78.06961,13.6908],[78.07089,13.68846],[78.07359,13.68773],[78.07124,13.68238],[78.06731,13.6797],[78.06572,13.67614],[78.07701,13.67335],[78.07855,13.66727],[78.08974,13.6591],[78.0869,13.65117],[78.08711,13.64307],[78.09895,13.6428],[78.10225,13.65106],[78.10847,13.65311],[78.11429,13.65736],[78.12366,13.65573],[78.13112,13.65936],[78.14709,13.65669],[78.15613,13.65862],[78.16758,13.65583],[78.16907,13.65394],[78.16822,13.63285],[78.17505,13.63061],[78.2042,13.62842],[78.20232,13.61943],[78.20377,13.61828],[78.20333,13.60651],[78.19901,13.59924],[78.19026,13.59014],[78.18961,13.57521],[78.19297,13.56485],[78.20292,13.56878],[78.20784,13.57699],[78.21408,13.58323],[78.21621,13.59062],[78.21923,13.59246],[78.22622,13.58744],[78.23258,13.58598],[78.23509,13.59106],[78.23439,13.59712],[78.23634,13.59858],[78.24211,13.59565],[78.24369,13.59684],[78.24929,13.59088],[78.25804,13.58569],[78.2586,13.58301],[78.27048,13.58815],[78.30773,13.59222],[78.31496,13.59142],[78.32617,13.59484],[78.34657,13.5905],[78.34863,13.58687],[78.36124,13.58899],[78.36493,13.58808],[78.36531,13.58951],[78.38429,13.59186],[78.39346,13.59066],[78.39617,13.58817],[78.402,13.58797],[78.40155,13.5785],[78.40667,13.57686],[78.39313,13.55256],[78.39364,13.54063],[78.38411,13.5249],[78.38552,13.51556],[78.37532,13.50895],[78.37685,13.50524],[78.37485,13.5027],[78.37805,13.50017],[78.37879,13.48204],[78.37082,13.46952],[78.37236,13.46335],[78.37456,13.46195],[78.37285,13.45214],[78.37573,13.44389],[78.37836,13.44372],[78.37897,13.44007],[78.3764,13.43945],[78.3756,13.43738],[78.37751,13.43188],[78.37744,13.42403],[78.38075,13.41887],[78.37922,13.41483],[78.38106,13.40882],[78.38168,13.39698],[78.37878,13.38365],[78.37236,13.37846],[78.36906,13.37319],[78.36508,13.3618],[78.36581,13.35865],[78.36967,13.35826],[78.37083,13.36151],[78.3761,13.36113],[78.37764,13.36315],[78.39486,13.35433],[78.39321,13.35074],[78.4084,13.34569],[78.40868,13.34288],[78.40729,13.33752],[78.39302,13.33376],[78.38487,13.33489],[78.38842,13.3391],[78.38768,13.3428],[78.38303,13.34359],[78.37825,13.33719],[78.37715,13.33197],[78.38713,13.33179],[78.39216,13.3253],[78.39927,13.32069],[78.4011,13.31547],[78.41888,13.32057],[78.42176,13.32827],[78.42795,13.33129],[78.44038,13.32843],[78.44124,13.32489],[78.44001,13.32181],[78.44421,13.30811],[78.45263,13.31008],[78.45772,13.31384],[78.46666,13.31512],[78.46948,13.31709],[78.47015,13.31983],[78.4769,13.32264],[78.4834,13.32117],[78.48363,13.31304],[78.48124,13.31018],[78.47931,13.30129],[78.49674,13.29861],[78.49878,13.29956],[78.50485,13.29137],[78.514,13.29059],[78.51335,13.28523],[78.51993,13.28277],[78.51979,13.27711],[78.52165,13.27616],[78.52196,13.273],[78.52651,13.27162],[78.52667,13.26842],[78.53218,13.26694],[78.53639,13.27241],[78.53932,13.28787],[78.54533,13.28789],[78.55411,13.28317],[78.56164,13.28851],[78.56499,13.29546],[78.56492,13.30691],[78.56321,13.30939],[78.56555,13.312],[78.56954,13.30922],[78.57149,13.30337],[78.57755,13.29528],[78.57634,13.28499],[78.57865,13.28035],[78.58736,13.28064],[78.58764,13.27125],[78.5853,13.2622],[78.57906,13.25366],[78.57014,13.2471],[78.5705,13.24259],[78.57194,13.24259],[78.56873,13.2374],[78.5664,13.22085],[78.57855,13.21802],[78.5787,13.21299],[78.57626,13.21151],[78.57112,13.21204],[78.56779,13.20152],[78.56053,13.19877],[78.55006,13.20018],[78.54976,13.18969],[78.55582,13.18864],[78.56646,13.19182],[78.5673,13.19326],[78.57606,13.18669],[78.57648,13.17455],[78.57977,13.16736],[78.57649,13.16712],[78.57337,13.1689],[78.56873,13.16562],[78.5682,13.16176],[78.55011,13.16419],[78.5414,13.15574],[78.54087,13.15348],[78.54836,13.14854],[78.54465,13.142],[78.53126,13.14137],[78.52667,13.13894],[78.52608,13.13407],[78.52334,13.13045],[78.52156,13.13013],[78.52151,13.13181],[78.51704,13.13159],[78.51893,13.12511],[78.51853,13.11982],[78.52303,13.11841],[78.52262,13.11496],[78.52527,13.11445],[78.52683,13.11222],[78.53745,13.10861],[78.53851,13.10573],[78.53246,13.10567],[78.52448,13.1012],[78.52285,13.09772],[78.52339,13.09469],[78.51607,13.09655],[78.50947,13.0915],[78.50862,13.07902],[78.51077,13.07803],[78.51512,13.06997],[78.51568,13.06551],[78.51425,13.06186],[78.49806,13.0612],[78.48736,13.05236],[78.47849,13.05454],[78.47796,13.05009],[78.47312,13.04292],[78.4648,13.04466],[78.4622,13.04321],[78.46141,13.02569],[78.46482,13.02042],[78.46345,13.01634],[78.46454,13.01179],[78.46361,13.00532],[78.46826,13.00462],[78.4677,12.99854],[78.47187,12.99262],[78.47481,12.99144],[78.46858,12.98272],[78.46746,12.97502],[78.45972,12.97725],[78.45269,12.97677],[78.43533,12.98104],[78.43248,12.97796],[78.43474,12.97144],[78.43272,12.9678],[78.43797,12.96399],[78.43458,12.96079],[78.4297,12.95913],[78.42916,12.95746],[78.41927,12.95868],[78.4215,12.95463],[78.42038,12.94774],[78.41376,12.94835],[78.41116,12.94527],[78.41355,12.93932],[78.41309,12.9334],[78.4152,12.93336],[78.41574,12.92968],[78.41789,12.92789],[78.41882,12.92172],[78.42282,12.92335],[78.42818,12.93209],[78.43802,12.92901],[78.44453,12.91963],[78.4523,12.91767],[78.45925,12.90873],[78.4667,12.90541],[78.46946,12.88964],[78.46477,12.86676],[78.46205,12.87106],[78.46411,12.8777],[78.45589,12.88747],[78.44882,12.8901],[78.44724,12.89221],[78.44923,12.89824],[78.44396,12.903],[78.44649,12.90819],[78.44558,12.9118],[78.43884,12.91366],[78.43495,12.91184],[78.4359,12.90945],[78.4337,12.90454],[78.43039,12.90479],[78.42865,12.90208],[78.41221,12.90323],[78.4089,12.90927],[78.39867,12.91731],[78.3964,12.90731],[78.3887,12.90686],[78.38576,12.90937],[78.38563,12.91144],[78.37825,12.91385],[78.37672,12.91794],[78.35587,12.94074],[78.34971,12.93571],[78.35385,12.93025],[78.34905,12.92899],[78.3466,12.91404],[78.34197,12.9119],[78.34407,12.9085],[78.33973,12.90318],[78.33106,12.90187],[78.32631,12.9045],[78.32353,12.90178],[78.3225,12.89749],[78.32407,12.89291],[78.32033,12.88726],[78.32169,12.88556],[78.32918,12.88459],[78.33088,12.88536],[78.33179,12.88884],[78.33452,12.88921],[78.33799,12.88621],[78.33708,12.88236],[78.33224,12.8807],[78.33102,12.87558],[78.31363,12.87645],[78.31559,12.86755],[78.31245,12.85852],[78.2821,12.85931],[78.27171,12.86696],[78.2684,12.86769],[78.26527,12.86201],[78.25814,12.8604],[78.25366,12.8622],[78.2522,12.86055],[78.25234,12.82894],[78.25056,12.81221],[78.24656,12.80166],[78.24564,12.78826],[78.23898,12.76838],[78.23095,12.76066],[78.23214,12.75304],[78.23579,12.74585],[78.23609,12.7381],[78.24088,12.73271],[78.24101,12.72994],[78.23117,12.71256],[78.22712,12.71483],[78.21807,12.7088],[78.21346,12.71098],[78.21217,12.70763],[78.20718,12.70817],[78.20544,12.70572],[78.20772,12.70483],[78.20713,12.70221],[78.20936,12.70252],[78.20994,12.7005],[78.20419,12.6959],[78.19936,12.69545],[78.19971,12.69288],[78.20128,12.6916],[78.20336,12.69313],[78.20986,12.69041],[78.21235,12.68848],[78.21059,12.68608],[78.23212,12.6872],[78.23771,12.68576],[78.23929,12.70101],[78.24456,12.70633],[78.27215,12.70467],[78.2765,12.70155],[78.28645,12.68901],[78.29559,12.67526],[78.29647,12.67104],[78.30133,12.66758],[78.30099,12.66587],[78.30603,12.66627],[78.31837,12.66192],[78.32581,12.65524],[78.33107,12.65303],[78.33221,12.64926],[78.34359,12.64874],[78.35212,12.64158],[78.35565,12.63646],[78.36286,12.63434],[78.37377,12.62632],[78.37942,12.62501],[78.39251,12.62738],[78.41261,12.62686],[78.42707,12.63524],[78.43483,12.62955],[78.45846,12.62964],[78.46497,12.62403],[78.47172,12.63204],[78.47056,12.64459],[78.47478,12.64763],[78.47051,12.65056],[78.4679,12.67589],[78.4845,12.67166],[78.48484,12.67329],[78.49933,12.67509],[78.50012,12.67991],[78.50386,12.68191],[78.50252,12.68416],[78.50406,12.68346],[78.50336,12.68991],[78.50744,12.69141],[78.50291,12.69191],[78.50399,12.69864],[78.49941,12.69925],[78.49932,12.70161],[78.49658,12.70325],[78.50193,12.70445],[78.50396,12.71123],[78.50307,12.71677],[78.51178,12.7077],[78.51462,12.70791],[78.51448,12.71037],[78.51901,12.71035],[78.52001,12.71201],[78.51753,12.71469],[78.51983,12.71557],[78.52024,12.71868],[78.51781,12.72012],[78.51658,12.7187],[78.50927,12.72423],[78.50597,12.72252],[78.50644,12.72434],[78.50427,12.72494],[78.50161,12.73116],[78.49696,12.73134],[78.49269,12.73564],[78.48909,12.74198],[78.49317,12.74715],[78.50527,12.74296],[78.50714,12.73711],[78.51383,12.73447],[78.51162,12.72685],[78.51392,12.72527],[78.51808,12.72484],[78.51917,12.73628],[78.52092,12.73613],[78.52271,12.71921],[78.52703,12.72149],[78.52507,12.71542],[78.53323,12.71398],[78.53752,12.71699],[78.53697,12.71332],[78.54428,12.71094],[78.53996,12.70822],[78.53774,12.71045],[78.53505,12.70732],[78.53275,12.71158],[78.52961,12.71022],[78.5313,12.69702],[78.53491,12.69112],[78.54091,12.69067],[78.55588,12.70016],[78.55662,12.70361],[78.55488,12.70752],[78.56159,12.71001],[78.55604,12.71519],[78.55442,12.71928],[78.56055,12.72716],[78.56386,12.73762],[78.55532,12.73928],[78.55616,12.74271],[78.56012,12.74378],[78.5597,12.74919],[78.5632,12.75132],[78.55834,12.74994],[78.55826,12.75371],[78.55563,12.75579],[78.56153,12.76145],[78.56558,12.75936],[78.56839,12.76693],[78.57656,12.76738],[78.57605,12.77191],[78.59252,12.78268],[78.59307,12.79823],[78.60116,12.80368],[78.60039,12.81842],[78.60776,12.8219],[78.60156,12.8508],[78.61309,12.86794],[78.61669,12.88858],[78.62286,12.90425],[78.62686,12.90732],[78.63345,12.92611],[78.63344,12.93175],[78.65226,12.9291],[78.65701,12.93211],[78.64612,12.94589],[78.63824,12.96408],[78.64717,12.96624],[78.64002,12.97098],[78.6209,12.99124],[78.63001,12.9945],[78.63462,13.0008],[78.64513,13.00623],[78.65208,13.01359],[78.65552,13.01525],[78.65621,13.03117],[78.70527,13.01524],[78.71452,13.06868],[78.74029,13.064],[78.75178,13.05494],[78.7943,13.06658],[78.79763,13.07485],[78.81314,13.08914],[78.8208,13.08776],[78.84204,13.07861],[78.86111,13.08366],[78.87097,13.08188],[78.8698,13.08952],[78.8751,13.09682],[78.88142,13.09818],[78.89121,13.09715],[78.89569,13.09512],[78.89219,13.08976],[78.88895,13.07336],[78.89129,13.06881],[78.89164,13.03306],[78.91563,13.03356],[78.92912,13.03649],[78.93155,13.03469],[78.93575,13.03479],[78.93711,13.03043],[78.94081,13.03641],[78.93374,13.03926],[78.92916,13.04576],[78.92175,13.04701],[78.91751,13.04362],[78.90612,13.04512],[78.90368,13.04771],[78.9126,13.06593],[78.91657,13.06731],[78.91949,13.06486],[78.92174,13.06609],[78.92394,13.08081],[78.9275,13.08183],[78.94148,13.07852],[78.94919,13.08399],[78.94958,13.08017],[78.95545,13.07584],[78.96073,13.07612],[78.96213,13.07873],[78.96879,13.07786],[78.97028,13.07471],[78.97144,13.077],[78.97019,13.07965],[78.9723,13.08381],[78.98252,13.08641],[78.995,13.08661],[79.00392,13.0846],[79.00369,13.08321],[79.00817,13.08071],[79.0095,13.07723],[79.01533,13.07694],[79.01656,13.07455],[79.02299,13.07379],[79.02438,13.07187],[79.02869,13.07262],[79.02974,13.07098],[79.03156,13.07203],[79.0346,13.06998],[79.03695,13.07059],[79.03628,13.06546],[79.03869,13.06114],[79.0634,13.05311],[79.06452,13.05006],[79.06287,13.04064],[79.07394,13.03285],[79.08091,13.02573],[79.08682,13.02801],[79.09114,13.02607],[79.09831,13.02606],[79.10747,13.03828],[79.11448,13.03927],[79.12754,13.03557],[79.13734,13.03481],[79.14831,13.02466],[79.16312,13.02027],[79.16831,13.02426],[79.17109,13.02398],[79.17186,13.02728],[79.17583,13.0271],[79.17642,13.02885],[79.18112,13.02974],[79.1822,13.03187],[79.18483,13.02985],[79.1885,13.04195],[79.193,13.0467],[79.19189,13.04835],[79.18271,13.04732],[79.18044,13.04885],[79.17966,13.0545],[79.1921,13.05615],[79.19134,13.05856],[79.18474,13.0568],[79.1783,13.05919],[79.18007,13.06431],[79.18732,13.06066],[79.18809,13.06566],[79.19212,13.06743],[79.1908,13.07335],[79.18401,13.07273],[79.18565,13.07522],[79.18533,13.07967],[79.18324,13.08193],[79.18137,13.0799],[79.18066,13.08424],[79.18766,13.08346],[79.18855,13.0879],[79.19069,13.08873],[79.1931,13.08229],[79.19829,13.08134],[79.20086,13.08883],[79.20964,13.09272],[79.21277,13.09244],[79.22461,13.1008],[79.23443,13.10523],[79.23427,13.11466],[79.23841,13.11855],[79.23038,13.12637],[79.22937,13.13158],[79.23287,13.13937],[79.22829,13.13998],[79.22315,13.14356],[79.22197,13.14624],[79.21922,13.14562],[79.21599,13.14781],[79.21003,13.14846],[79.21469,13.15696],[79.21811,13.15685],[79.21811,13.15536],[79.22732,13.15562],[79.22561,13.15886],[79.22969,13.16199],[79.23493,13.17084],[79.23951,13.17197],[79.24269,13.171],[79.24111,13.15961],[79.24312,13.15858],[79.24421,13.15274],[79.24208,13.14963],[79.24339,13.15115],[79.24496,13.14882],[79.24244,13.14795],[79.24018,13.14437],[79.24527,13.13828],[79.25391,13.14577],[79.2547,13.14919],[79.25221,13.15772],[79.25327,13.16026],[79.25746,13.16074],[79.25928,13.15887],[79.26037,13.15956],[79.26027,13.15214],[79.26167,13.15187],[79.26209,13.14904],[79.2674,13.14967],[79.26975,13.15375],[79.27454,13.15567],[79.27736,13.15622],[79.28034,13.15287],[79.28402,13.12277],[79.28567,13.12376],[79.28874,13.12199],[79.3044,13.12662],[79.31246,13.12614],[79.29926,13.11866],[79.29877,13.11571],[79.30154,13.11366],[79.29584,13.11237],[79.29431,13.1096],[79.29815,13.10696],[79.30169,13.10778],[79.30719,13.10552],[79.30931,13.10781],[79.30991,13.11201],[79.31615,13.11163],[79.31903,13.11333],[79.31192,13.11657],[79.3213,13.11702],[79.32424,13.11854],[79.31867,13.12347],[79.32677,13.12608],[79.32902,13.13052],[79.33962,13.13045],[79.34131,13.13682],[79.34464,13.13667],[79.34356,13.13102],[79.34514,13.12913],[79.34511,13.12127],[79.3536,13.12053],[79.3605,13.12354],[79.36175,13.12875],[79.36516,13.13067],[79.36552,13.13393],[79.36339,13.13897],[79.36114,13.13864],[79.35996,13.15197],[79.35746,13.15594],[79.35612,13.16458],[79.36342,13.16595],[79.37011,13.16281],[79.38004,13.16293],[79.3806,13.16896],[79.37924,13.17151],[79.36952,13.17291],[79.3727,13.17884],[79.37555,13.1777],[79.38228,13.17962],[79.38773,13.17753],[79.38561,13.18305],[79.37814,13.18471],[79.37281,13.18772],[79.37403,13.18926],[79.38739,13.1891],[79.39202,13.19238],[79.3958,13.19182],[79.3962,13.18868],[79.39906,13.18781],[79.40084,13.19166],[79.40919,13.19404],[79.41017,13.19051],[79.42114,13.18908],[79.42146,13.1906],[79.4262,13.19049],[79.43843,13.18818],[79.43729,13.19106],[79.43315,13.19252],[79.43238,13.19697],[79.43566,13.19721],[79.43956,13.20589],[79.44385,13.20778],[79.44119,13.20827],[79.43622,13.21274],[79.43738,13.21955],[79.43947,13.21968],[79.43971,13.21764],[79.44853,13.21569],[79.4538,13.21694],[79.45329,13.23849],[79.44149,13.23799],[79.43882,13.23436],[79.44,13.2306],[79.43087,13.22985],[79.42987,13.23121],[79.43507,13.23223],[79.43979,13.23586],[79.43149,13.23607],[79.43138,13.23828],[79.43813,13.24003],[79.43768,13.24289],[79.43243,13.24326],[79.42769,13.24155],[79.42459,13.24334],[79.42143,13.24213],[79.4185,13.24296],[79.41966,13.24572],[79.41704,13.24585],[79.42214,13.2494],[79.42264,13.25132],[79.41686,13.25168],[79.41617,13.26041],[79.41308,13.26295],[79.40847,13.26391],[79.40842,13.26527],[79.41142,13.26465],[79.41396,13.26641],[79.41759,13.27177],[79.43373,13.27499],[79.43472,13.28907],[79.43576,13.29128],[79.44631,13.29162],[79.44542,13.30125],[79.43054,13.30025],[79.42004,13.28955],[79.41883,13.28975],[79.41841,13.29352],[79.41958,13.29523],[79.41577,13.29958],[79.4053,13.29757],[79.40217,13.29971],[79.39412,13.29993],[79.38984,13.29743],[79.38866,13.30978],[79.38189,13.30749],[79.38349,13.31326],[79.38781,13.31805],[79.39347,13.3176],[79.39576,13.31572],[79.39783,13.31736],[79.40202,13.31735],[79.4019,13.32148],[79.39876,13.32167],[79.39836,13.3302],[79.40248,13.33023],[79.40536,13.33504],[79.41254,13.33295],[79.41291,13.32993],[79.41472,13.33003],[79.42099,13.33629],[79.43167,13.33671],[79.43259,13.34539],[79.43573,13.34814],[79.43543,13.35171],[79.44766,13.34632],[79.45311,13.33988],[79.45626,13.33857],[79.46407,13.34172],[79.46544,13.33873],[79.47281,13.33924],[79.47457,13.34109],[79.48049,13.34],[79.49971,13.34779],[79.49738,13.33204],[79.51008,13.33417],[79.51108,13.34197],[79.52179,13.34181],[79.52594,13.34439],[79.53557,13.33819],[79.53731,13.33865],[79.54185,13.3273],[79.53936,13.32188],[79.54411,13.31678],[79.54217,13.31024],[79.53486,13.30137],[79.53508,13.29802],[79.53826,13.2959],[79.5371,13.29443],[79.54123,13.29244],[79.53878,13.28785],[79.53515,13.28509],[79.53366,13.27908],[79.5346,13.2754],[79.54002,13.27236],[79.55841,13.27272],[79.57349,13.25936],[79.57927,13.25779],[79.58257,13.25734],[79.59131,13.26143],[79.59384,13.26641],[79.5946,13.27174],[79.59266,13.27506],[79.59489,13.27605],[79.59606,13.28485],[79.60579,13.2882],[79.60869,13.28749],[79.60609,13.27955],[79.61412,13.2827],[79.61955,13.27956],[79.62768,13.27015],[79.63164,13.2697],[79.63204,13.2713],[79.63406,13.27157],[79.63155,13.27719],[79.63436,13.27743],[79.63326,13.28238],[79.63805,13.28425],[79.63834,13.28744],[79.63948,13.277],[79.64127,13.27559],[79.64248,13.29015],[79.65179,13.29183],[79.65458,13.28563],[79.65783,13.28385],[79.65891,13.28669],[79.66387,13.28977],[79.66664,13.28598],[79.66471,13.28194],[79.66539,13.27872],[79.66857,13.28114],[79.67134,13.28012],[79.67425,13.28177],[79.67814,13.29741],[79.6824,13.29591],[79.68126,13.28799],[79.68319,13.28819],[79.68943,13.28303],[79.69046,13.28033],[79.69393,13.2798],[79.69367,13.27348],[79.68881,13.27087],[79.69082,13.26768],[79.69426,13.2705],[79.69575,13.26728],[79.6933,13.26309],[79.69172,13.26355],[79.69112,13.26098],[79.68913,13.26094],[79.68951,13.26374],[79.68771,13.2667],[79.68057,13.26456],[79.68026,13.26224],[79.67829,13.26165],[79.68024,13.25276],[79.68427,13.24443],[79.68914,13.23983],[79.69268,13.24065],[79.69594,13.23856],[79.69307,13.24329],[79.69634,13.24325],[79.69825,13.25099],[79.70098,13.25303],[79.70327,13.2511],[79.70912,13.25104],[79.70897,13.24808],[79.71255,13.24467],[79.71124,13.2425],[79.71407,13.23573],[79.7061,13.2342],[79.70221,13.22524],[79.70271,13.2224],[79.70794,13.22151],[79.71186,13.21927],[79.71196,13.21777],[79.71839,13.21652],[79.72165,13.22346],[79.72588,13.22166],[79.7314,13.22245],[79.73028,13.23253],[79.73281,13.23327],[79.73264,13.23688],[79.73732,13.23653],[79.73908,13.2295],[79.74277,13.22829],[79.74247,13.22526],[79.74797,13.22167],[79.751,13.21642],[79.75008,13.20799],[79.75455,13.20646],[79.75984,13.20744],[79.76096,13.21526],[79.76425,13.21911],[79.76756,13.21806],[79.76884,13.21931],[79.76977,13.21771],[79.77394,13.21916],[79.77292,13.21546],[79.77548,13.21531],[79.77796,13.22359],[79.78115,13.22339],[79.78478,13.2279],[79.79309,13.2293],[79.79325,13.22641],[79.79449,13.22632],[79.79484,13.24023],[79.79473,13.2421],[79.78721,13.24518],[79.7816,13.25159],[79.76119,13.25752],[79.75164,13.26537],[79.74808,13.27099],[79.74172,13.27095],[79.74025,13.27376],[79.73504,13.27594],[79.73281,13.28214],[79.73065,13.28287],[79.73404,13.28902],[79.73924,13.29135],[79.74423,13.28859],[79.75242,13.29166],[79.75675,13.29529],[79.76028,13.30161],[79.76121,13.30707],[79.76186,13.31264],[79.76027,13.3182],[79.76814,13.31392],[79.77042,13.30922],[79.7752,13.30598],[79.78023,13.30615],[79.78559,13.29666],[79.79173,13.29352],[79.80164,13.3005],[79.80476,13.30744],[79.8036,13.31098],[79.80788,13.31413],[79.8089,13.31725],[79.81736,13.31855],[79.82919,13.31751],[79.83609,13.31422],[79.84805,13.3166],[79.85326,13.31596],[79.85355,13.32071],[79.86281,13.31692],[79.86807,13.33107],[79.87763,13.32428],[79.88085,13.32478],[79.8829,13.32332],[79.8835,13.33286],[79.90381,13.34043],[79.90516,13.34353],[79.91038,13.34727],[79.91485,13.34814],[79.9149,13.35156],[79.91336,13.35224],[79.91681,13.35808],[79.91597,13.35987],[79.92529,13.35836],[79.92921,13.35562],[79.9313,13.35151],[79.93311,13.35192],[79.93377,13.35448],[79.93512,13.35411],[79.93591,13.35644],[79.93801,13.35552],[79.94099,13.36128],[79.9429,13.36127],[79.9422,13.36356],[79.94565,13.36374],[79.94542,13.36822],[79.94947,13.37548],[79.94919,13.37767],[79.94505,13.38178],[79.94766,13.38173],[79.94822,13.38324],[79.94999,13.37981],[79.9539,13.37712],[79.95805,13.37918],[79.96275,13.39136],[79.96145,13.3956],[79.95623,13.39714],[79.94436,13.39687],[79.94128,13.40061],[79.9457,13.40773],[79.94138,13.41015],[79.94221,13.4128],[79.93839,13.4128],[79.93774,13.41489],[79.93457,13.41645],[79.94184,13.41672],[79.93961,13.42503],[79.94818,13.42503],[79.94948,13.42375],[79.95255,13.42584],[79.95572,13.42521],[79.95507,13.42238],[79.95665,13.42219],[79.95749,13.42356],[79.96197,13.42338],[79.96579,13.42657],[79.97073,13.4273],[79.97334,13.42967],[79.97287,13.43972],[79.97111,13.44026],[79.97242,13.46909],[79.9824,13.47046],[79.98408,13.47958],[80.00749,13.47864],[80.00762,13.48135],[80.01352,13.48519],[80.01584,13.48903],[80.01444,13.49612],[80.0159,13.49795],[80.03,13.49819],[80.04662,13.49368],[80.04805,13.51253],[80.03552,13.51831],[80.02719,13.5137],[80.01952,13.51925],[80.01765,13.52956],[80.00799,13.52581],[80.00052,13.52568],[79.9986,13.54272],[80.01689,13.54718],[80.02177,13.54495],[80.0239,13.54604],[80.02844,13.53882],[80.03806,13.53898],[80.0398,13.54685],[80.03935,13.55554],[80.0512,13.55823],[80.04668,13.57326],[80.04059,13.57309],[80.03966,13.57634],[80.02207,13.576],[80.02161,13.58238],[80.02407,13.5883],[80.02354,13.59249],[80.02215,13.59441],[80.01695,13.59455],[80.01896,13.59726],[80.01689,13.60356],[80.01517,13.6058],[80.01145,13.6052],[80.01099,13.60958],[80.00439,13.61718],[80.00289,13.62408],[80.00379,13.63254],[80.00005,13.64328],[79.99286,13.64782],[79.98525,13.64682],[79.97915,13.64284],[79.97538,13.64353],[79.96489,13.65031],[79.96313,13.65999],[79.96089,13.66438],[79.95735,13.66653],[79.96176,13.66989],[79.96756,13.6797],[79.97228,13.68391],[79.97206,13.68904],[79.96973,13.69268],[79.95834,13.699],[79.95697,13.70765],[79.88548,13.70034],[79.88214,13.70236],[79.8814,13.70491],[79.86996,13.70643],[79.86841,13.71089],[79.86629,13.71193],[79.86615,13.71614],[79.86329,13.71937],[79.86732,13.7349],[79.85942,13.73762],[79.8582,13.73956],[79.86119,13.74545],[79.86084,13.75622],[79.85054,13.76013],[79.85096,13.76906],[79.82019,13.77166],[79.81937,13.78549],[79.81409,13.78845],[79.8119,13.78879],[79.8119,13.78169],[79.80419,13.78467],[79.79174,13.7859],[79.78341,13.78296],[79.77976,13.79971],[79.77643,13.80297],[79.77313,13.79907],[79.77045,13.80061],[79.76692,13.7978],[79.76447,13.7989],[79.75989,13.79774],[79.75898,13.79963],[79.74477,13.80337],[79.74986,13.80999],[79.74405,13.81221],[79.74168,13.81699],[79.731,13.81843],[79.73286,13.8234],[79.72972,13.83082],[79.73095,13.8382],[79.73884,13.85765],[79.73333,13.86156],[79.72695,13.86272],[79.72799,13.88185],[79.73131,13.88999],[79.72875,13.9047],[79.69688,13.91228],[79.68431,13.9218],[79.68198,13.92579],[79.67874,13.92422],[79.67737,13.91264],[79.66938,13.88467],[79.67346,13.87902],[79.67459,13.87105],[79.6695,13.85801],[79.66885,13.83595],[79.63656,13.84473],[79.62831,13.844],[79.62364,13.84685],[79.60962,13.85096],[79.60721,13.85348],[79.60972,13.85909],[79.61332,13.86175],[79.61925,13.86315],[79.6244,13.8719],[79.62395,13.88063],[79.61999,13.88549],[79.60906,13.88811],[79.59501,13.88891],[79.59385,13.90425],[79.59641,13.9116],[79.59283,13.92289],[79.58276,13.9188],[79.57488,13.92018],[79.55249,13.91454],[79.53413,13.91543],[79.51352,13.91379],[79.50037,13.91093],[79.47795,13.91303],[79.47398,13.89962],[79.46671,13.89695],[79.44868,13.89511],[79.44155,13.88939],[79.43392,13.877],[79.43445,13.8652],[79.4376,13.85623],[79.45453,13.82577],[79.45677,13.8016],[79.46365,13.79894],[79.46871,13.79891],[79.46749,13.79513],[79.45523,13.78529],[79.44555,13.78263],[79.43505,13.78378],[79.42988,13.78239],[79.42587,13.7846],[79.41926,13.78461],[79.41678,13.78239],[79.41672,13.77894],[79.42039,13.77736],[79.4218,13.77202],[79.41829,13.76518],[79.40732,13.76246],[79.39003,13.76111],[79.37245,13.75636],[79.35941,13.74802],[79.30576,13.72413],[79.29303,13.75973],[79.24161,13.76058],[79.24216,13.75172],[79.2249,13.75766],[79.22112,13.76181],[79.22098,13.76683],[79.21594,13.77473],[79.20354,13.77996],[79.1992,13.78407],[79.19656,13.79015],[79.19089,13.7933],[79.19506,13.803],[79.19795,13.80314],[79.20386,13.80797],[79.21047,13.80682],[79.21236,13.81093],[79.21584,13.81131],[79.21601,13.81345],[79.20777,13.81825],[79.20565,13.82167],[79.19867,13.8239],[79.196,13.82691],[79.17739,13.83796],[79.17158,13.84789],[79.16323,13.84904],[79.15672,13.85304],[79.15019,13.85866],[79.14868,13.86525],[79.12677,13.85006],[79.09953,13.8503],[79.09063,13.88064],[79.08175,13.87919],[79.02356,13.89149],[79.02362,13.89659],[79.00273,13.90833],[78.98937,13.91185],[78.9837,13.89191],[78.95608,13.88516],[78.94159,13.88473],[78.93716,13.88858],[78.93569,13.89714],[78.91825,13.89692],[78.91619,13.89368],[78.91619,13.89102],[78.9187,13.8893],[78.91725,13.88892],[78.91321,13.88951],[78.91068,13.89334],[78.90908,13.89247],[78.90956,13.8956],[78.90145,13.89532],[78.89644,13.8984],[78.88432,13.89965],[78.87414,13.89734],[78.86957,13.89808],[78.85927,13.88657],[78.8474,13.88593],[78.83919,13.88725],[78.82139,13.88204],[78.79811,13.88079],[78.79747,13.87742],[78.79409,13.87661],[78.7904,13.87149],[78.78371,13.86789],[78.78029,13.86418],[78.78265,13.86227],[78.78277,13.85889],[78.7858,13.85771],[78.78843,13.85363],[78.78613,13.84566],[78.78326,13.84251],[78.78566,13.83606],[78.78379,13.83549],[78.78377,13.82966],[78.77098,13.82751],[78.75897,13.83456],[78.75841,13.83931],[78.7555,13.84173],[78.7554,13.84471],[78.75098,13.84784],[78.75122,13.85771],[78.74637,13.86514],[78.74591,13.87132],[78.74026,13.87008],[78.73934,13.87503],[78.72939,13.88238],[78.72899,13.88552],[78.72314,13.88763],[78.71089,13.8882],[78.70602,13.88558],[78.70857,13.87731],[78.69807,13.87146],[78.6837,13.87222],[78.65247,13.86682],[78.64282,13.86794],[78.63927,13.87291],[78.64335,13.87831],[78.64384,13.89196],[78.64682,13.89489],[78.65397,13.8977],[78.65635,13.90304],[78.65617,13.90791],[78.65467,13.90966],[78.65108,13.90781],[78.64975,13.90861],[78.63802,13.90123],[78.6356,13.90781],[78.6207,13.90691],[78.6149,13.91276],[78.6004,13.91368],[78.58718,13.91078],[78.59105,13.93918],[78.59271,13.93944],[78.59911,13.95983],[78.58682,13.95827],[78.5719,13.96295],[78.58001,13.97233],[78.58484,13.98503],[78.57308,13.98565],[78.57042,13.9842],[78.56401,13.99],[78.55843,13.98906],[78.54443,13.99075],[78.53942,13.98137],[78.53194,13.98147],[78.53102,13.97882],[78.52722,13.97855],[78.52494,13.97479],[78.52074,13.97308],[78.51862,13.96642],[78.50978,13.96344],[78.50389,13.95921],[78.50123,13.9465],[78.49645,13.9392],[78.49322,13.93787],[78.48541,13.94614],[78.47234,13.9544],[78.46831,13.95865],[78.47055,13.96468],[78.46846,13.96808],[78.47022,13.96862],[78.46921,13.97396],[78.47363,13.97802],[78.47567,13.98363],[78.46544,13.994]],[[79.84291,13.32465],[79.84567,13.32758],[79.84765,13.32435],[79.85005,13.32374],[79.84337,13.32167],[79.84291,13.32465]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"504","area_level":"District","area_name":"Y.S.R. Kadapa","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.93714,15.22925],[78.927,15.22845],[78.92594,15.21865],[78.92355,15.21577],[78.92217,15.20338],[78.91963,15.19842],[78.91935,15.18695],[78.9058,15.18755],[78.9033,15.19135],[78.89236,15.19161],[78.8854,15.19434],[78.87766,15.1944],[78.87137,15.19755],[78.77743,15.19962],[78.75826,15.18465],[78.75327,15.15828],[78.75321,15.14192],[78.75,15.13435],[78.75295,15.12983],[78.75135,15.10108],[78.76028,15.07956],[78.75502,15.07557],[78.75883,15.06538],[78.75756,15.06249],[78.76225,15.05876],[78.76136,15.05335],[78.75223,15.03671],[78.71538,15.00098],[78.71796,14.96857],[78.69164,14.96798],[78.69127,14.9644],[78.68823,14.96096],[78.68448,14.93849],[78.67552,14.93535],[78.67289,14.93675],[78.66593,14.93505],[78.66441,14.93161],[78.66028,14.92977],[78.65371,14.93005],[78.64233,14.92802],[78.64259,14.92685],[78.62998,14.92551],[78.63198,14.93856],[78.63031,14.94432],[78.62519,14.94675],[78.6097,14.9481],[78.60999,14.94929],[78.60511,14.95148],[78.60543,14.9536],[78.60129,14.9543],[78.59631,14.95052],[78.59179,14.93895],[78.58201,14.94589],[78.57755,14.94371],[78.5744,14.93799],[78.56708,14.93567],[78.56673,14.93336],[78.56245,14.93079],[78.55312,14.93033],[78.54682,14.93271],[78.54687,14.94166],[78.5514,14.96129],[78.54011,14.96486],[78.53803,14.96392],[78.53719,14.96081],[78.52811,14.9601],[78.52293,14.95196],[78.51951,14.95366],[78.51651,14.94599],[78.51963,14.94305],[78.51129,14.93533],[78.50441,14.92582],[78.49776,14.92155],[78.48516,14.90042],[78.47724,14.9022],[78.48295,14.92228],[78.49031,14.93366],[78.49815,14.95547],[78.50482,14.95451],[78.51277,14.97701],[78.51655,14.99657],[78.51498,14.99767],[78.51572,15.00236],[78.50831,15.00493],[78.51527,15.01337],[78.51522,15.01869],[78.51354,15.01879],[78.51317,15.02125],[78.51212,15.04001],[78.51555,15.06045],[78.50776,15.06464],[78.50818,15.06744],[78.50627,15.06942],[78.48697,15.07203],[78.48153,15.07107],[78.48124,15.06315],[78.47379,15.06267],[78.47801,15.06108],[78.47768,15.05809],[78.47947,15.0578],[78.47858,15.05352],[78.48138,15.05248],[78.4812,15.05028],[78.48738,15.04998],[78.48619,15.04296],[78.48859,15.04239],[78.48818,15.04076],[78.48583,15.04168],[78.4852,15.03656],[78.48395,15.03675],[78.48472,15.0408],[78.48241,15.04287],[78.47998,15.04252],[78.47953,15.03898],[78.47549,15.03748],[78.47639,15.03627],[78.4742,15.03535],[78.47053,15.03561],[78.47074,15.03827],[78.4679,15.03843],[78.46788,15.0397],[78.46687,15.03629],[78.46549,15.03637],[78.46567,15.03885],[78.46165,15.03901],[78.45935,15.03491],[78.46154,15.03471],[78.46127,15.03331],[78.45837,15.03361],[78.45716,15.03071],[78.44478,15.0317],[78.44427,15.03402],[78.43865,15.03355],[78.43857,15.03669],[78.43664,15.03642],[78.43611,15.03224],[78.42904,15.0336],[78.41928,15.03142],[78.41358,15.01069],[78.41269,14.98959],[78.40964,14.97263],[78.40093,14.97268],[78.3981,14.96899],[78.39296,14.97016],[78.3921,14.96797],[78.38716,14.96938],[78.36414,14.98395],[78.35921,14.9855],[78.3427,15.00277],[78.34961,15.01533],[78.35017,15.02495],[78.35312,15.03093],[78.36579,15.0288],[78.36955,15.02604],[78.37552,15.03601],[78.38485,15.03892],[78.39977,15.04856],[78.37798,15.05634],[78.38268,15.0692],[78.37096,15.07163],[78.36362,15.05195],[78.35333,15.05442],[78.35455,15.06178],[78.33272,15.06626],[78.32506,15.07322],[78.31375,15.06868],[78.30193,15.07362],[78.28854,15.07259],[78.28446,15.07057],[78.27801,15.06155],[78.27683,15.06179],[78.27473,15.05457],[78.27839,15.04848],[78.27941,15.04089],[78.28345,15.03768],[78.28368,15.03098],[78.27779,15.02808],[78.26,15.02653],[78.2561,15.0223],[78.24384,14.99919],[78.23577,15.00325],[78.23008,14.98685],[78.22442,14.97748],[78.22033,14.95512],[78.21047,14.95205],[78.17936,14.96424],[78.1585,14.96241],[78.15282,14.95893],[78.15134,14.94859],[78.13685,14.9477],[78.13708,14.9443],[78.13108,14.93414],[78.12623,14.93312],[78.12523,14.93691],[78.12339,14.93678],[78.12229,14.93405],[78.11302,14.93157],[78.10941,14.92538],[78.0942,14.88423],[78.0941,14.87798],[78.08916,14.86138],[78.08904,14.85758],[78.10856,14.85389],[78.11353,14.85062],[78.10852,14.84042],[78.10119,14.81704],[78.07618,14.82709],[78.07518,14.81618],[78.07177,14.81213],[78.06554,14.79719],[78.06049,14.79097],[78.05796,14.78996],[78.05495,14.78361],[78.04649,14.77401],[78.04706,14.77043],[78.06031,14.76471],[78.0604,14.76315],[78.06776,14.75768],[78.07293,14.7566],[78.07628,14.75234],[78.07759,14.74497],[78.06339,14.7183],[78.06656,14.71556],[78.07814,14.71802],[78.09377,14.71349],[78.09508,14.70878],[78.09779,14.7074],[78.09646,14.70094],[78.10632,14.69942],[78.10671,14.70138],[78.10924,14.70122],[78.10944,14.6923],[78.11635,14.69155],[78.11656,14.69297],[78.11893,14.69277],[78.11928,14.69707],[78.13456,14.6953],[78.12952,14.64929],[78.11934,14.63407],[78.12391,14.62978],[78.12179,14.6237],[78.11242,14.62538],[78.11307,14.62815],[78.10441,14.62781],[78.08809,14.63036],[78.08626,14.6194],[78.08164,14.6121],[78.07417,14.58803],[78.06968,14.58072],[78.06691,14.5797],[78.06453,14.57234],[78.05897,14.57274],[78.03922,14.56603],[78.03767,14.56251],[78.03925,14.55954],[78.03869,14.5556],[78.04424,14.54662],[78.04348,14.5414],[78.0406,14.53369],[78.03447,14.53302],[78.03317,14.53061],[78.02533,14.53422],[78.02207,14.53302],[78.01429,14.53773],[78.01196,14.53625],[77.98704,14.54057],[77.98287,14.54558],[77.98518,14.5523],[77.98288,14.56686],[77.97596,14.56821],[77.96945,14.57499],[77.9659,14.58833],[77.9641,14.58805],[77.96399,14.58452],[77.96187,14.58174],[77.95363,14.5795],[77.94405,14.57027],[77.95251,14.56211],[77.96117,14.56001],[77.96269,14.5555],[77.97692,14.53775],[77.97678,14.53628],[77.97259,14.53504],[77.9725,14.53209],[77.97735,14.52423],[77.98806,14.5145],[77.99481,14.50197],[77.99806,14.50045],[78.00056,14.48858],[78.03065,14.46454],[78.06355,14.43449],[78.08504,14.42138],[78.08582,14.41498],[78.10666,14.39287],[78.13691,14.37859],[78.17089,14.35432],[78.17783,14.35216],[78.18319,14.35236],[78.18852,14.34977],[78.19118,14.34359],[78.20708,14.33273],[78.21795,14.32845],[78.22078,14.32449],[78.21989,14.32237],[78.22944,14.3172],[78.22888,14.31532],[78.24729,14.30723],[78.25111,14.30812],[78.25328,14.3046],[78.27724,14.30464],[78.28111,14.30124],[78.28252,14.29364],[78.28494,14.29174],[78.29449,14.29325],[78.29899,14.29021],[78.30742,14.29025],[78.32051,14.29343],[78.33862,14.28822],[78.34211,14.28866],[78.34311,14.29103],[78.34515,14.29155],[78.35708,14.29266],[78.36417,14.28688],[78.3683,14.2877],[78.39561,14.27675],[78.41589,14.27772],[78.4205,14.28292],[78.42383,14.27338],[78.41755,14.25079],[78.40847,14.22685],[78.40989,14.22359],[78.40632,14.21179],[78.40588,14.20099],[78.41031,14.19988],[78.41433,14.19603],[78.42109,14.19591],[78.4232,14.19834],[78.42827,14.19779],[78.42931,14.19633],[78.43113,14.19223],[78.43024,14.1828],[78.42795,14.17971],[78.42364,14.17818],[78.41983,14.16794],[78.41992,14.15577],[78.422,14.15489],[78.42268,14.15097],[78.42168,14.14842],[78.42456,14.14767],[78.42499,14.14064],[78.42827,14.13889],[78.4382,14.13679],[78.43875,14.13405],[78.44094,14.13512],[78.44096,14.13721],[78.44343,14.1377],[78.449,14.13071],[78.45396,14.11528],[78.45947,14.11055],[78.46128,14.1064],[78.45847,14.09067],[78.45432,14.08424],[78.45123,14.08262],[78.44901,14.08444],[78.448,14.08211],[78.44435,14.08413],[78.44242,14.08041],[78.443,14.07691],[78.44548,14.07526],[78.44485,14.07212],[78.44719,14.07054],[78.44593,14.06907],[78.44595,14.05653],[78.44872,14.05206],[78.4398,14.04299],[78.44139,14.02817],[78.44034,14.01849],[78.44285,14.01512],[78.45833,14.00808],[78.46926,14.00701],[78.46586,13.99426],[78.46829,13.99002],[78.47093,13.98926],[78.47567,13.98363],[78.47363,13.97802],[78.46921,13.97396],[78.47022,13.96862],[78.46846,13.96808],[78.47055,13.96468],[78.46831,13.95865],[78.47234,13.9544],[78.48541,13.94614],[78.49319,13.93788],[78.49645,13.9392],[78.50123,13.9465],[78.50389,13.95921],[78.50978,13.96344],[78.51862,13.96642],[78.52074,13.97308],[78.52494,13.97479],[78.52722,13.97855],[78.53102,13.97882],[78.53194,13.98147],[78.53942,13.98137],[78.54443,13.99075],[78.55843,13.98906],[78.56401,13.99],[78.57042,13.9842],[78.57308,13.98565],[78.58479,13.98505],[78.58001,13.97233],[78.5719,13.96295],[78.58682,13.95827],[78.59911,13.95983],[78.59271,13.93944],[78.59105,13.93918],[78.58718,13.91078],[78.6004,13.91368],[78.6149,13.91276],[78.6207,13.90691],[78.6356,13.90781],[78.63802,13.90123],[78.64975,13.90861],[78.65108,13.90781],[78.65467,13.90966],[78.65617,13.90791],[78.65635,13.90304],[78.65397,13.8977],[78.64682,13.89489],[78.64384,13.89196],[78.64335,13.87831],[78.63927,13.87291],[78.64282,13.86794],[78.65247,13.86682],[78.6837,13.87222],[78.69807,13.87146],[78.70857,13.87731],[78.70602,13.88558],[78.71089,13.8882],[78.72314,13.88763],[78.72899,13.88552],[78.72939,13.88238],[78.73934,13.87503],[78.74026,13.87008],[78.74591,13.87132],[78.74637,13.86514],[78.75122,13.85771],[78.75098,13.84784],[78.7554,13.84471],[78.7555,13.84173],[78.75841,13.83931],[78.75897,13.83456],[78.77137,13.82748],[78.78377,13.82966],[78.78379,13.83549],[78.78566,13.83606],[78.78326,13.84251],[78.78613,13.84566],[78.78843,13.85363],[78.7858,13.85771],[78.78277,13.85889],[78.78265,13.86227],[78.78029,13.86418],[78.78371,13.86789],[78.7904,13.87149],[78.79409,13.87661],[78.79747,13.87742],[78.79811,13.88079],[78.82139,13.88204],[78.83919,13.88725],[78.8474,13.88593],[78.85927,13.88657],[78.86957,13.89808],[78.87414,13.89734],[78.88432,13.89965],[78.89644,13.8984],[78.90145,13.89532],[78.90956,13.8956],[78.90908,13.89247],[78.91068,13.89334],[78.91321,13.88951],[78.91725,13.88892],[78.9187,13.8893],[78.91619,13.89102],[78.91619,13.89368],[78.91825,13.89692],[78.93569,13.89714],[78.93716,13.88858],[78.94159,13.88473],[78.95608,13.88516],[78.9837,13.89191],[78.98937,13.91185],[78.99792,13.9102],[79.02409,13.89631],[79.02356,13.89149],[79.08175,13.87919],[79.09063,13.88064],[79.09953,13.8503],[79.12677,13.85006],[79.14868,13.86525],[79.15019,13.85866],[79.15672,13.85304],[79.16323,13.84904],[79.17158,13.84789],[79.17739,13.83796],[79.196,13.82691],[79.19867,13.8239],[79.20565,13.82167],[79.20777,13.81825],[79.21601,13.81345],[79.21584,13.81131],[79.21236,13.81093],[79.21047,13.80682],[79.20386,13.80797],[79.19795,13.80314],[79.19506,13.803],[79.19089,13.7933],[79.19656,13.79015],[79.1992,13.78407],[79.20354,13.77996],[79.21594,13.77473],[79.22098,13.76683],[79.22112,13.76181],[79.2249,13.75766],[79.24216,13.75172],[79.24161,13.76058],[79.29303,13.75973],[79.30576,13.72413],[79.35941,13.74802],[79.37245,13.75636],[79.39003,13.76111],[79.40732,13.76246],[79.41786,13.76495],[79.42023,13.76713],[79.4218,13.7722],[79.42039,13.77736],[79.41672,13.77894],[79.41829,13.78414],[79.42587,13.7846],[79.42988,13.78239],[79.43482,13.78377],[79.44631,13.78281],[79.45523,13.78529],[79.46698,13.79457],[79.46884,13.79774],[79.46871,13.79891],[79.46365,13.79894],[79.45677,13.8016],[79.45437,13.82627],[79.43774,13.85591],[79.43445,13.8652],[79.43371,13.87263],[79.43392,13.877],[79.44306,13.89028],[79.44443,13.89502],[79.44469,13.89807],[79.44186,13.90504],[79.45519,13.92338],[79.45462,13.93022],[79.4571,13.93199],[79.45679,13.94351],[79.45884,13.94639],[79.45641,13.95204],[79.45231,13.95375],[79.45105,13.95976],[79.45207,13.96282],[79.44986,13.97123],[79.45499,13.98754],[79.45222,13.99291],[79.44273,13.99782],[79.43966,14.006],[79.43673,14.02373],[79.44344,14.04006],[79.44258,14.06071],[79.4463,14.06461],[79.44631,14.06689],[79.44995,14.06973],[79.45174,14.07554],[79.45004,14.08865],[79.45318,14.09327],[79.45421,14.1007],[79.45175,14.10281],[79.44472,14.1163],[79.43791,14.13987],[79.43422,14.16309],[79.4283,14.18068],[79.42876,14.19328],[79.42414,14.1996],[79.42237,14.20604],[79.42552,14.21298],[79.42474,14.22127],[79.43536,14.24309],[79.42766,14.25025],[79.41964,14.26497],[79.41943,14.27681],[79.42237,14.2783],[79.39941,14.31919],[79.38952,14.34063],[79.36599,14.35134],[79.36464,14.35746],[79.36682,14.36066],[79.36752,14.36805],[79.36491,14.37164],[79.36423,14.37837],[79.359,14.38128],[79.35596,14.39013],[79.34972,14.39843],[79.34868,14.40502],[79.34305,14.408],[79.34168,14.41214],[79.3356,14.41722],[79.32998,14.42576],[79.327,14.436],[79.32466,14.45574],[79.32667,14.45722],[79.31673,14.47606],[79.31417,14.47809],[79.31137,14.4778],[79.3052,14.48382],[79.29288,14.48471],[79.29267,14.49452],[79.28792,14.49987],[79.28049,14.5205],[79.27816,14.5325],[79.2676,14.55073],[79.25857,14.55569],[79.2486,14.57042],[79.24697,14.58025],[79.24175,14.59298],[79.23548,14.59901],[79.22942,14.60233],[79.21967,14.58793],[79.21272,14.59389],[79.20951,14.59995],[79.20981,14.60247],[79.20254,14.60441],[79.20043,14.61355],[79.18886,14.61619],[79.18721,14.62727],[79.18513,14.63021],[79.18258,14.63875],[79.18349,14.64065],[79.18161,14.64351],[79.18162,14.64872],[79.18513,14.6526],[79.18727,14.65882],[79.18429,14.65949],[79.18358,14.66273],[79.17905,14.66353],[79.18232,14.66815],[79.17885,14.67341],[79.17882,14.67881],[79.174,14.68227],[79.18391,14.68852],[79.18632,14.71054],[79.1783,14.73059],[79.17168,14.73777],[79.16634,14.76237],[79.16142,14.76977],[79.16051,14.78035],[79.15615,14.78815],[79.15057,14.79329],[79.14764,14.81057],[79.14434,14.81818],[79.14198,14.84205],[79.13377,14.86683],[79.10831,14.89481],[79.11184,14.89849],[79.1042,14.8983],[79.10218,14.90307],[79.0988,14.91703],[79.09278,14.93268],[79.08771,14.96054],[79.08162,14.9807],[79.08385,14.99367],[79.08714,15.00257],[79.08482,15.00687],[79.08407,15.01488],[79.08668,15.02728],[79.08716,15.04632],[79.08916,15.04817],[79.08741,15.06306],[79.07938,15.09492],[79.0757,15.10407],[79.07199,15.14528],[79.07341,15.16508],[79.08319,15.17347],[79.0168,15.17945],[79.01147,15.17546],[79.01233,15.17109],[79.01005,15.16752],[79.00252,15.16894],[78.99971,15.16568],[78.99156,15.16863],[78.98137,15.16459],[78.97218,15.16827],[78.96731,15.17334],[78.95735,15.17595],[78.95474,15.1919],[78.95094,15.20028],[78.94759,15.20332],[78.94952,15.20965],[78.94775,15.22838],[78.93714,15.22925]],[[78.65679,13.90796],[78.65837,13.90821],[78.65621,13.90608],[78.65679,13.90796]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"505","area_level":"District","area_name":"East Godavari","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.9829,18.00499],[81.97864,18.01066],[81.98008,18.01272],[81.97937,18.01443],[81.96297,17.99925],[81.94602,17.99575],[81.93657,17.99028],[81.91991,17.99121],[81.90903,17.98422],[81.90619,17.97838],[81.90372,17.97666],[81.89337,17.97624],[81.88027,17.96817],[81.84323,17.95696],[81.83201,17.95813],[81.81911,17.95169],[81.81072,17.9514],[81.79707,17.93728],[81.7947,17.93294],[81.79349,17.92548],[81.79013,17.92081],[81.77841,17.91284],[81.77138,17.91246],[81.76834,17.90628],[81.75035,17.89375],[81.72562,17.87886],[81.71039,17.87194],[81.70436,17.87768],[81.70411,17.88271],[81.70113,17.88795],[81.70222,17.89627],[81.70123,17.89948],[81.69763,17.9012],[81.6861,17.8853],[81.67365,17.88816],[81.66219,17.8816],[81.65385,17.8681],[81.65428,17.86328],[81.65202,17.8561],[81.64217,17.84192],[81.63015,17.83202],[81.62235,17.83345],[81.61875,17.82381],[81.61655,17.82208],[81.60689,17.82583],[81.59419,17.83404],[81.57432,17.83717],[81.57039,17.83531],[81.56369,17.82571],[81.54684,17.82472],[81.53781,17.82159],[81.53018,17.82291],[81.51841,17.81626],[81.50478,17.81629],[81.49534,17.81255],[81.49005,17.81269],[81.48627,17.81434],[81.48551,17.82022],[81.48152,17.82358],[81.47784,17.83499],[81.47392,17.83797],[81.47182,17.83615],[81.46905,17.83622],[81.46011,17.82957],[81.44419,17.82497],[81.44088,17.82533],[81.43672,17.83162],[81.43412,17.83193],[81.43048,17.83006],[81.42582,17.82191],[81.4156,17.81342],[81.41397,17.81359],[81.41016,17.81859],[81.40165,17.82095],[81.39655,17.82023],[81.39181,17.81542],[81.39313,17.80767],[81.39185,17.79418],[81.38656,17.79487],[81.38544,17.79844],[81.37731,17.80446],[81.35878,17.80948],[81.35411,17.81229],[81.34845,17.81233],[81.3456,17.8103],[81.32612,17.81395],[81.30497,17.80866],[81.26626,17.80952],[81.24838,17.81666],[81.2393,17.82602],[81.21561,17.83451],[81.19931,17.84693],[81.17065,17.85476],[81.16613,17.8576],[81.15728,17.85043],[81.14213,17.84146],[81.12792,17.827],[81.10244,17.81603],[81.09397,17.80927],[81.09046,17.80241],[81.08559,17.79802],[81.08978,17.79104],[81.096,17.77449],[81.10388,17.7732],[81.10426,17.77201],[81.09565,17.7622],[81.08258,17.7531],[81.06983,17.74071],[81.05817,17.73309],[81.05051,17.73401],[81.04416,17.74042],[81.04056,17.74761],[81.02763,17.74813],[81.01592,17.74503],[80.99132,17.74992],[80.98423,17.75566],[80.97688,17.77632],[80.97342,17.78012],[80.97217,17.77796],[80.96587,17.77978],[80.96343,17.77739],[80.95532,17.77462],[80.95562,17.77291],[80.94631,17.76019],[80.92785,17.76178],[80.92338,17.75729],[80.91946,17.7562],[80.91757,17.74811],[80.915,17.74836],[80.91444,17.75046],[80.91273,17.74948],[80.91458,17.74653],[80.913,17.74592],[80.90237,17.7462],[80.88555,17.73568],[80.89076,17.72188],[80.89099,17.71368],[80.89475,17.70291],[80.89079,17.68976],[80.8764,17.66838],[80.87681,17.65435],[80.87906,17.64927],[80.88274,17.64591],[80.89734,17.64056],[80.9381,17.63258],[80.95387,17.63781],[80.96043,17.64438],[80.97014,17.64967],[80.98006,17.65261],[80.99041,17.65357],[80.99955,17.65152],[81.0069,17.64762],[81.00955,17.64365],[81.00695,17.62113],[81.0077,17.60436],[81.01181,17.59978],[81.01724,17.59808],[81.03965,17.59766],[81.05969,17.60791],[81.07839,17.60928],[81.10231,17.61879],[81.10991,17.62034],[81.11496,17.61911],[81.12253,17.60279],[81.12806,17.59501],[81.12727,17.58698],[81.13656,17.58127],[81.15149,17.57675],[81.17694,17.57398],[81.18507,17.57105],[81.21079,17.57098],[81.21665,17.56619],[81.22209,17.56418],[81.23648,17.56636],[81.24492,17.56956],[81.25835,17.564],[81.26944,17.55307],[81.2881,17.52398],[81.29232,17.51047],[81.29257,17.50098],[81.29546,17.4961],[81.30132,17.49218],[81.3136,17.48763],[81.34103,17.49557],[81.34916,17.49991],[81.36351,17.49928],[81.3834,17.49158],[81.39054,17.47335],[81.40704,17.46494],[81.41828,17.46542],[81.44463,17.46188],[81.46465,17.46849],[81.4753,17.46752],[81.48039,17.46959],[81.49468,17.48062],[81.50126,17.48053],[81.51264,17.47283],[81.51728,17.4566],[81.53096,17.44035],[81.54095,17.43659],[81.55233,17.43995],[81.56365,17.44001],[81.56845,17.4359],[81.57601,17.43279],[81.57997,17.41506],[81.58631,17.40564],[81.5913,17.4059],[81.59703,17.40984],[81.60325,17.41136],[81.60901,17.41043],[81.61398,17.4071],[81.61636,17.40061],[81.60992,17.3971],[81.60474,17.37584],[81.60631,17.36884],[81.61481,17.35195],[81.61111,17.34326],[81.61495,17.33104],[81.61859,17.32731],[81.6278,17.32472],[81.63345,17.32615],[81.6426,17.32396],[81.67225,17.30801],[81.67932,17.30184],[81.68026,17.29112],[81.67813,17.2895],[81.6732,17.28932],[81.664,17.28357],[81.66048,17.27709],[81.65677,17.26649],[81.65546,17.24921],[81.64169,17.22979],[81.64212,17.21393],[81.64066,17.20726],[81.64611,17.19365],[81.65259,17.18492],[81.65818,17.17028],[81.66355,17.15285],[81.66485,17.13326],[81.66968,17.12333],[81.67464,17.11815],[81.6772,17.10273],[81.68077,17.0945],[81.6971,17.08523],[81.71869,17.05938],[81.72445,17.04486],[81.72419,17.03711],[81.73139,17.02296],[81.73111,17.0207],[81.73955,17.01479],[81.7419,17.00965],[81.74514,16.98449],[81.74492,16.96488],[81.72924,16.94404],[81.72697,16.93282],[81.72764,16.92062],[81.72431,16.91429],[81.73122,16.91417],[81.73042,16.9027],[81.73326,16.87974],[81.74675,16.86625],[81.7516,16.85107],[81.75329,16.82479],[81.74656,16.8113],[81.74643,16.80938],[81.75016,16.80515],[81.74471,16.7975],[81.74459,16.79329],[81.74955,16.78715],[81.75612,16.7734],[81.76503,16.76143],[81.78485,16.75222],[81.79086,16.74541],[81.79442,16.7377],[81.79484,16.73301],[81.7855,16.71389],[81.78546,16.70802],[81.80223,16.69365],[81.80612,16.68934],[81.81116,16.67884],[81.84201,16.64696],[81.85623,16.61381],[81.85838,16.59881],[81.85529,16.58],[81.85401,16.55904],[81.85169,16.54753],[81.84485,16.52917],[81.84853,16.50441],[81.84641,16.49592],[81.84182,16.49344],[81.81981,16.49039],[81.8115,16.48373],[81.80687,16.48348],[81.80485,16.48041],[81.79921,16.47716],[81.78889,16.46315],[81.78538,16.46357],[81.78209,16.45065],[81.76885,16.43986],[81.76238,16.42919],[81.75548,16.42344],[81.74952,16.42274],[81.74626,16.42016],[81.73643,16.4223],[81.73329,16.42594],[81.72837,16.44064],[81.72413,16.4459],[81.7188,16.44733],[81.71026,16.44287],[81.69999,16.42279],[81.69771,16.41552],[81.69825,16.40904],[81.70669,16.39241],[81.71015,16.37656],[81.71703,16.35854],[81.71742,16.35182],[81.71326,16.33082],[81.71352,16.32689],[81.71656,16.32682],[81.71666,16.32294],[81.71095,16.31669],[81.71921,16.31558],[81.71912,16.31128],[81.7165,16.30763],[81.71795,16.30655],[81.72548,16.30897],[81.73554,16.3161],[81.74721,16.32116],[81.74937,16.32037],[81.78708,16.33819],[81.78667,16.34033],[81.82275,16.35873],[81.85881,16.37542],[81.87081,16.37979],[81.87351,16.37946],[81.87815,16.38263],[81.93941,16.39538],[81.94867,16.3962],[81.95773,16.39237],[81.96359,16.4027],[81.97045,16.40756],[81.99334,16.41932],[81.9983,16.42025],[82.08626,16.46826],[82.14073,16.49367],[82.20174,16.52516],[82.23119,16.54081],[82.2297,16.54343],[82.23491,16.54601],[82.24457,16.55003],[82.24853,16.54945],[82.26707,16.55372],[82.28719,16.55374],[82.29948,16.55594],[82.31186,16.56151],[82.31285,16.56349],[82.31375,16.55883],[82.31344,16.56482],[82.31067,16.56774],[82.30864,16.56696],[82.3097,16.56465],[82.30537,16.5651],[82.30087,16.56239],[82.30147,16.5673],[82.29915,16.57224],[82.29982,16.5693],[82.29826,16.56713],[82.30039,16.5672],[82.29877,16.56105],[82.29964,16.55819],[82.29815,16.5592],[82.29705,16.55708],[82.28999,16.55487],[82.29032,16.55608],[82.28099,16.55865],[82.29163,16.55981],[82.2937,16.55805],[82.29591,16.56461],[82.29474,16.56666],[82.29738,16.56586],[82.29711,16.5676],[82.29368,16.56758],[82.29515,16.56481],[82.29346,16.56305],[82.28269,16.56234],[82.27688,16.55939],[82.27236,16.55991],[82.26974,16.56291],[82.26691,16.56098],[82.26308,16.56302],[82.27656,16.57093],[82.28583,16.57338],[82.28752,16.57298],[82.28728,16.57096],[82.29882,16.58644],[82.29946,16.59201],[82.29533,16.59836],[82.29464,16.60254],[82.2849,16.59999],[82.28638,16.60613],[82.29042,16.60975],[82.287,16.61508],[82.2878,16.61721],[82.28523,16.62085],[82.28682,16.6215],[82.28426,16.62603],[82.29562,16.62602],[82.29772,16.63396],[82.29993,16.63634],[82.29601,16.62603],[82.30144,16.63387],[82.30037,16.62841],[82.30141,16.62809],[82.30449,16.63674],[82.30297,16.62979],[82.30373,16.63071],[82.30418,16.62879],[82.3075,16.63993],[82.30856,16.63035],[82.30673,16.62311],[82.30846,16.62461],[82.30896,16.62952],[82.30971,16.62687],[82.31077,16.62867],[82.31214,16.62708],[82.31434,16.63246],[82.30997,16.6393],[82.30875,16.6534],[82.31282,16.66801],[82.31241,16.65328],[82.31716,16.64269],[82.32104,16.64124],[82.31981,16.63902],[82.32147,16.63145],[82.3201,16.62652],[82.32421,16.62145],[82.32551,16.61685],[82.32555,16.61041],[82.3235,16.60441],[82.32497,16.6022],[82.32422,16.60012],[82.32249,16.6002],[82.32262,16.59577],[82.31796,16.58718],[82.31407,16.58667],[82.31072,16.59273],[82.30925,16.59263],[82.3165,16.58325],[82.31482,16.58111],[82.31782,16.58171],[82.31569,16.57896],[82.31462,16.57979],[82.31359,16.57486],[82.31887,16.57683],[82.32553,16.59707],[82.32905,16.61448],[82.32365,16.62908],[82.32276,16.6419],[82.31697,16.65863],[82.31729,16.66227],[82.3227,16.67304],[82.34555,16.69651],[82.35668,16.70389],[82.36534,16.70665],[82.36323,16.70959],[82.35988,16.71084],[82.36002,16.70705],[82.35496,16.70428],[82.35629,16.70901],[82.35374,16.71362],[82.34963,16.71605],[82.34645,16.71564],[82.34579,16.71462],[82.35169,16.71331],[82.3506,16.71112],[82.35216,16.71139],[82.354,16.70563],[82.34337,16.69732],[82.34317,16.69511],[82.33782,16.68976],[82.32768,16.68501],[82.33538,16.69008],[82.3338,16.69674],[82.33469,16.69908],[82.34118,16.70527],[82.34493,16.70455],[82.3389,16.71471],[82.33334,16.71673],[82.33927,16.71612],[82.34199,16.72975],[82.34298,16.75096],[82.34434,16.75101],[82.34519,16.75409],[82.35854,16.81402],[82.35847,16.82418],[82.36527,16.87599],[82.36647,16.90835],[82.35968,16.95832],[82.35565,16.96779],[82.34951,16.97691],[82.33919,16.98612],[82.33037,16.98957],[82.32669,16.98876],[82.32539,16.98624],[82.32878,16.98256],[82.33317,16.98078],[82.34019,16.96695],[82.35215,16.96064],[82.35771,16.95003],[82.36334,16.91732],[82.36197,16.89753],[82.36323,16.8892],[82.36157,16.85445],[82.35937,16.85518],[82.35487,16.85124],[82.35144,16.85187],[82.34942,16.8505],[82.33607,16.85656],[82.32131,16.85335],[82.32209,16.85249],[82.31854,16.85047],[82.3204,16.84897],[82.31842,16.84938],[82.31719,16.84563],[82.31423,16.84588],[82.31122,16.85482],[82.30796,16.85778],[82.30601,16.8557],[82.30726,16.85812],[82.30158,16.86264],[82.29425,16.86502],[82.28226,16.86483],[82.28396,16.86974],[82.28188,16.87196],[82.27636,16.86999],[82.27522,16.86752],[82.27407,16.86893],[82.27275,16.86806],[82.26599,16.86982],[82.26307,16.87594],[82.26374,16.87977],[82.25982,16.88445],[82.25547,16.88526],[82.2505,16.87994],[82.24953,16.87761],[82.25088,16.8767],[82.24827,16.87647],[82.25017,16.8817],[82.24968,16.89015],[82.24706,16.89995],[82.24144,16.90804],[82.24304,16.91784],[82.24671,16.91785],[82.26431,16.93818],[82.27115,16.9413],[82.27363,16.94703],[82.27788,16.9507],[82.27346,16.94759],[82.27055,16.94142],[82.26493,16.93891],[82.26966,16.94172],[82.27153,16.9472],[82.27712,16.9517],[82.27138,16.94795],[82.2694,16.95009],[82.26864,16.95654],[82.27053,16.95717],[82.26981,16.95997],[82.27431,16.97007],[82.27596,16.98124],[82.27971,16.9847],[82.27981,16.99424],[82.28676,17.01253],[82.30249,17.03813],[82.31931,17.05785],[82.44309,17.17481],[82.48224,17.20677],[82.54234,17.24913],[82.53887,17.2639],[82.52546,17.27171],[82.52123,17.28418],[82.52126,17.29507],[82.51831,17.29858],[82.51903,17.30006],[82.53001,17.30219],[82.53472,17.30581],[82.53654,17.31611],[82.53474,17.32091],[82.53537,17.32733],[82.54704,17.32717],[82.54783,17.32513],[82.55631,17.32423],[82.55758,17.32596],[82.56044,17.33274],[82.55979,17.34171],[82.56511,17.34175],[82.5659,17.34945],[82.5612,17.35323],[82.55566,17.35212],[82.55252,17.35782],[82.54805,17.36169],[82.54783,17.36892],[82.54334,17.37248],[82.54368,17.37418],[82.55626,17.39037],[82.55702,17.39803],[82.56013,17.40171],[82.56079,17.40838],[82.58303,17.42482],[82.58412,17.43015],[82.59838,17.44324],[82.60411,17.45488],[82.60458,17.46032],[82.60215,17.45959],[82.59704,17.46154],[82.59153,17.46491],[82.59099,17.46716],[82.58536,17.46894],[82.58425,17.47499],[82.58044,17.47621],[82.5782,17.48193],[82.56946,17.48601],[82.56796,17.49249],[82.56346,17.49256],[82.56146,17.49105],[82.56167,17.49272],[82.55984,17.49352],[82.55908,17.52197],[82.5527,17.5271],[82.54732,17.51342],[82.53736,17.50659],[82.53235,17.50621],[82.5318,17.5044],[82.52668,17.50295],[82.51795,17.50186],[82.50731,17.50301],[82.50356,17.50793],[82.50039,17.50802],[82.4974,17.50694],[82.49451,17.50017],[82.48738,17.49935],[82.48719,17.50127],[82.48035,17.50122],[82.47747,17.5201],[82.47578,17.51925],[82.47251,17.52169],[82.47644,17.52723],[82.46671,17.53589],[82.46892,17.53235],[82.46819,17.53121],[82.46166,17.53199],[82.46079,17.5302],[82.46612,17.52423],[82.46842,17.51858],[82.46518,17.51175],[82.44986,17.51117],[82.45245,17.496],[82.45485,17.49385],[82.45427,17.48989],[82.45266,17.48878],[82.45135,17.48057],[82.44403,17.47768],[82.43915,17.4781],[82.43787,17.4711],[82.43152,17.47271],[82.43115,17.47049],[82.42039,17.47076],[82.41031,17.46695],[82.38895,17.47902],[82.38142,17.4778],[82.373,17.47936],[82.36754,17.48944],[82.37867,17.50703],[82.37556,17.51076],[82.36478,17.51062],[82.35923,17.5083],[82.3448,17.49441],[82.33742,17.5014],[82.33135,17.50338],[82.33394,17.51166],[82.33264,17.51832],[82.33757,17.52398],[82.33647,17.53114],[82.33091,17.53944],[82.32889,17.55566],[82.33395,17.56503],[82.3336,17.5678],[82.34189,17.57392],[82.34381,17.58097],[82.34103,17.58727],[82.33159,17.58869],[82.32725,17.58545],[82.32187,17.58513],[82.31403,17.58692],[82.3109,17.5908],[82.30413,17.58991],[82.28895,17.60498],[82.27474,17.61186],[82.27672,17.62414],[82.27347,17.62423],[82.27284,17.62293],[82.26965,17.6238],[82.26759,17.62195],[82.26325,17.62353],[82.26007,17.6217],[82.25928,17.6229],[82.25337,17.61964],[82.2519,17.62135],[82.24866,17.6194],[82.2418,17.62773],[82.23882,17.62804],[82.22813,17.63873],[82.21077,17.63459],[82.19575,17.62343],[82.19085,17.62254],[82.19068,17.61821],[82.18464,17.61555],[82.18553,17.6141],[82.18062,17.60983],[82.1815,17.60852],[82.16453,17.61202],[82.16299,17.61025],[82.15188,17.61791],[82.14762,17.62706],[82.13767,17.63538],[82.13729,17.64774],[82.13619,17.64854],[82.12074,17.65491],[82.11428,17.65554],[82.10613,17.65067],[82.09104,17.6568],[82.08524,17.65363],[82.08365,17.6505],[82.07913,17.64903],[82.0791,17.64683],[82.07628,17.64461],[82.06811,17.64516],[82.06799,17.64342],[82.06455,17.64357],[82.05807,17.63592],[82.05641,17.63564],[82.05622,17.64089],[82.05165,17.64312],[82.04682,17.63988],[82.04431,17.6399],[82.03359,17.63229],[82.02835,17.63346],[82.02334,17.63237],[82.02277,17.62828],[82.02448,17.62334],[82.01623,17.61844],[82.00505,17.62768],[82.00179,17.63909],[82.00332,17.64129],[82.00731,17.64237],[82.00753,17.64468],[82.01033,17.64667],[82.00644,17.64791],[82.00792,17.65235],[82.00609,17.65912],[82.01169,17.66247],[82.01636,17.66133],[82.02224,17.6693],[82.02216,17.67443],[82.01973,17.67485],[82.01935,17.67649],[82.02627,17.68418],[82.0287,17.69553],[82.02468,17.70301],[82.03296,17.70866],[82.03154,17.71003],[82.03319,17.71414],[82.02884,17.71512],[82.03056,17.72068],[82.02779,17.7281],[82.01129,17.73799],[82.01476,17.7418],[82.01511,17.74609],[82.01807,17.74954],[82.01614,17.75344],[82.0111,17.75254],[82.00305,17.75737],[81.99746,17.7656],[81.98077,17.76995],[81.96446,17.76282],[81.95965,17.7592],[81.96624,17.74939],[81.96937,17.74937],[81.97252,17.74672],[81.96165,17.74378],[81.95383,17.74361],[81.94709,17.74025],[81.9397,17.74011],[81.9354,17.7384],[81.92994,17.74192],[81.92318,17.74262],[81.92023,17.7411],[81.90795,17.74027],[81.89844,17.74523],[81.88818,17.74509],[81.88297,17.74181],[81.87721,17.74141],[81.86935,17.74576],[81.86738,17.74991],[81.86008,17.75284],[81.85964,17.75522],[81.86163,17.75424],[81.86497,17.75796],[81.8674,17.75626],[81.86874,17.75865],[81.87239,17.76008],[81.87336,17.76613],[81.87839,17.7732],[81.88436,17.77636],[81.88597,17.77904],[81.89166,17.78066],[81.89947,17.78929],[81.90492,17.79192],[81.91182,17.79279],[81.91687,17.79839],[81.92518,17.80142],[81.92331,17.8085],[81.93313,17.81424],[81.94208,17.81283],[81.95597,17.81548],[81.96068,17.81791],[81.9671,17.82555],[81.9708,17.83833],[81.97777,17.84825],[81.98482,17.85007],[81.98738,17.85328],[81.99161,17.84977],[81.99334,17.84558],[82.00794,17.84507],[82.00995,17.8278],[82.01966,17.83955],[82.01674,17.85119],[82.01713,17.86213],[82.01371,17.86633],[82.00486,17.87091],[82.00087,17.87941],[82.00087,17.88612],[82.00357,17.89468],[82.0027,17.90084],[82.00627,17.90335],[82.00797,17.90996],[82.0106,17.91134],[82.01324,17.91638],[82.02037,17.92092],[82.0203,17.92751],[82.02774,17.93167],[82.02701,17.93687],[82.02956,17.93931],[82.02598,17.94348],[82.02611,17.94614],[82.02224,17.95234],[82.02242,17.95693],[82.01213,17.9614],[82.00725,17.96525],[82.00693,17.96713],[82.00952,17.96961],[82.00821,17.97282],[82.00997,17.98015],[82.00804,17.9794],[82.00748,17.98181],[82.00129,17.98648],[81.99654,17.99974],[81.9913,18.00234],[81.98529,18.00288],[81.98439,18.00571],[81.9829,18.00499]],[[82.20459,16.74848],[82.21502,16.75572],[82.21892,16.76023],[82.22547,16.7637],[82.22961,16.76236],[82.22758,16.75689],[82.21783,16.74331],[82.21879,16.73999],[82.22824,16.7304],[82.23485,16.72927],[82.2715,16.73151],[82.28851,16.73491],[82.29688,16.75312],[82.3015,16.75518],[82.30553,16.75253],[82.30885,16.74551],[82.31062,16.73504],[82.30264,16.71826],[82.293,16.70966],[82.28417,16.70533],[82.26128,16.70192],[82.25437,16.70362],[82.23524,16.71677],[82.22327,16.72186],[82.21037,16.71976],[82.20141,16.72052],[82.18691,16.72833],[82.18245,16.73711],[82.18814,16.7401],[82.19656,16.73922],[82.20459,16.74848]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"506","area_level":"District","area_name":"Guntur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.10436,16.82231],[80.08658,16.82051],[80.07265,16.81648],[80.07069,16.81268],[80.0706,16.80169],[80.06645,16.78641],[80.05386,16.76543],[80.05496,16.74465],[80.03664,16.72766],[80.03004,16.71441],[80.02215,16.71033],[80.00758,16.70884],[79.99741,16.70209],[79.97938,16.66534],[79.96566,16.64609],[79.94751,16.63503],[79.93054,16.63128],[79.91452,16.63269],[79.90646,16.6363],[79.8929,16.65183],[79.88594,16.68609],[79.87753,16.6973],[79.85885,16.70465],[79.85106,16.70584],[79.82816,16.69378],[79.82109,16.69151],[79.81726,16.69187],[79.8112,16.69568],[79.79887,16.71068],[79.79251,16.7255],[79.78583,16.73014],[79.77399,16.73078],[79.74461,16.71908],[79.72932,16.69551],[79.72289,16.69028],[79.71389,16.68924],[79.68154,16.69437],[79.66219,16.68665],[79.64828,16.67003],[79.63309,16.66042],[79.62149,16.66318],[79.60632,16.67131],[79.59892,16.67323],[79.59218,16.66988],[79.57563,16.64978],[79.54209,16.63225],[79.52942,16.63064],[79.51037,16.63574],[79.50385,16.63592],[79.49401,16.63304],[79.48333,16.6231],[79.45958,16.62366],[79.44717,16.61971],[79.43914,16.61291],[79.43305,16.59075],[79.41864,16.58025],[79.39682,16.57978],[79.37677,16.58275],[79.35369,16.57927],[79.34011,16.58264],[79.32643,16.57646],[79.30824,16.57415],[79.29552,16.56301],[79.29102,16.56157],[79.28136,16.56061],[79.26164,16.56692],[79.25684,16.56582],[79.25222,16.55925],[79.25027,16.54715],[79.24477,16.53181],[79.22724,16.52378],[79.21998,16.51264],[79.21448,16.48468],[79.21706,16.47756],[79.23336,16.4592],[79.21795,16.45382],[79.21156,16.44739],[79.20772,16.38475],[79.20844,16.37929],[79.21243,16.37347],[79.21017,16.35913],[79.21235,16.35213],[79.23425,16.33461],[79.23381,16.32199],[79.23104,16.31433],[79.23038,16.28249],[79.22451,16.27085],[79.22342,16.24665],[79.22136,16.23634],[79.21514,16.22598],[79.2167,16.22365],[79.21563,16.18129],[79.22207,16.16291],[79.24976,16.1795],[79.25929,16.19344],[79.29627,16.21465],[79.32603,16.22828],[79.37112,16.23268],[79.44741,16.30261],[79.47313,16.29045],[79.49857,16.29039],[79.528,16.29706],[79.53635,16.30582],[79.54996,16.28432],[79.55738,16.28033],[79.56216,16.28011],[79.5667,16.27595],[79.56112,16.26078],[79.56003,16.24179],[79.56253,16.23702],[79.56136,16.23207],[79.56314,16.22717],[79.55635,16.21373],[79.5609,16.20473],[79.55926,16.19433],[79.5527,16.18425],[79.55189,16.17926],[79.54717,16.17364],[79.53887,16.17118],[79.53671,16.16316],[79.54035,16.15573],[79.54046,16.14844],[79.53683,16.14221],[79.53836,16.13326],[79.54421,16.12039],[79.54729,16.11949],[79.55287,16.11222],[79.55269,16.10754],[79.55545,16.10078],[79.55317,16.09741],[79.55261,16.08474],[79.54648,16.07602],[79.54725,16.06774],[79.55231,16.05681],[79.55376,16.04879],[79.56371,16.03302],[79.56113,16.02908],[79.56684,16.0177],[79.563,16.01209],[79.57257,16.00487],[79.56733,15.98411],[79.56854,15.98288],[79.55951,15.96332],[79.56169,15.95523],[79.55916,15.94784],[79.57239,15.93685],[79.58981,15.94014],[79.60398,15.93807],[79.61543,15.93245],[79.6116,15.92199],[79.62327,15.91637],[79.63583,15.90696],[79.64918,15.91312],[79.65526,15.92058],[79.65802,15.91802],[79.66374,15.91668],[79.67085,15.90964],[79.67052,15.90739],[79.67623,15.90337],[79.68172,15.90365],[79.68502,15.89831],[79.68942,15.89987],[79.69322,15.89796],[79.69499,15.89416],[79.68998,15.88323],[79.68852,15.87583],[79.69444,15.87607],[79.71434,15.86736],[79.71975,15.85875],[79.71708,15.84515],[79.71061,15.83724],[79.7185,15.83542],[79.73181,15.8356],[79.73404,15.83465],[79.73874,15.82696],[79.74351,15.82526],[79.76214,15.82355],[79.76561,15.82682],[79.77086,15.82516],[79.77037,15.83036],[79.77265,15.84213],[79.75417,15.84738],[79.75279,15.85457],[79.74687,15.85921],[79.75387,15.87101],[79.75538,15.89958],[79.7631,15.90032],[79.76336,15.90388],[79.7689,15.90736],[79.77481,15.90664],[79.78338,15.91467],[79.7858,15.91801],[79.78878,15.93607],[79.79117,15.94072],[79.80541,15.93722],[79.81712,15.93636],[79.84602,15.9288],[79.84823,15.92807],[79.84722,15.92245],[79.86956,15.91609],[79.87797,15.92471],[79.87549,15.9352],[79.87913,15.93641],[79.88003,15.94018],[79.88474,15.94011],[79.88539,15.94182],[79.89406,15.93929],[79.8968,15.94666],[79.90324,15.94236],[79.9123,15.96689],[79.89858,15.97071],[79.90261,15.98325],[79.8906,15.98743],[79.89037,15.99453],[79.8796,15.9993],[79.87171,15.99854],[79.86288,15.99325],[79.86654,16.02151],[79.86981,16.03033],[79.87324,16.02928],[79.87531,16.03438],[79.87884,16.0344],[79.88075,16.03902],[79.90349,16.04199],[79.90896,16.04539],[79.9174,16.04697],[79.91949,16.0513],[79.92053,16.06057],[79.91948,16.0697],[79.91489,16.07156],[79.91583,16.0747],[79.90141,16.07741],[79.89548,16.07693],[79.89596,16.08312],[79.8941,16.08326],[79.89522,16.08717],[79.89048,16.08629],[79.8901,16.08455],[79.88501,16.08573],[79.88172,16.09222],[79.86848,16.09613],[79.87389,16.11212],[79.86902,16.1117],[79.86953,16.11705],[79.87513,16.12874],[79.86676,16.13228],[79.866,16.13469],[79.86817,16.141],[79.87863,16.15478],[79.90159,16.1494],[79.91921,16.14015],[79.92781,16.13192],[79.93258,16.13224],[79.93699,16.13941],[79.9426,16.14031],[79.94471,16.13927],[79.94928,16.14514],[79.95343,16.15228],[79.95201,16.15436],[79.95197,16.16139],[79.95042,16.16288],[79.95282,16.16428],[79.97227,16.15472],[79.97618,16.15095],[79.97403,16.14608],[79.98697,16.14128],[79.99205,16.14234],[80.00056,16.13986],[79.99876,16.13616],[80.00617,16.1337],[80.00841,16.13151],[80.00723,16.12978],[80.01082,16.12761],[80.01015,16.11903],[80.01272,16.1167],[80.02064,16.11447],[80.02692,16.11577],[80.03185,16.11742],[80.0338,16.12288],[80.04341,16.12982],[80.0492,16.12865],[80.05033,16.13062],[80.05174,16.12942],[80.05028,16.12364],[80.05139,16.11959],[80.04061,16.09233],[80.04752,16.08521],[80.06156,16.08921],[80.06788,16.09456],[80.07413,16.09197],[80.07081,16.07503],[80.07341,16.06845],[80.08256,16.06289],[80.07996,16.05603],[80.08286,16.05488],[80.08256,16.05321],[80.08463,16.05148],[80.0848,16.0401],[80.08802,16.02939],[80.08616,16.0207],[80.08922,16.01588],[80.09153,16.0151],[80.09178,16.0129],[80.10014,16.01117],[80.1049,16.01491],[80.12062,16.02052],[80.13978,16.01563],[80.13311,16.01967],[80.1373,16.0455],[80.15526,16.04557],[80.15484,16.04144],[80.18231,16.03439],[80.18156,16.0266],[80.18745,16.02529],[80.19011,16.03836],[80.22995,16.03187],[80.2299,16.03764],[80.23733,16.03702],[80.24014,16.05223],[80.24931,16.05082],[80.26105,16.04566],[80.26248,16.05326],[80.26684,16.05069],[80.28366,16.04912],[80.28998,16.0496],[80.29352,16.05319],[80.30088,16.04968],[80.30193,16.05538],[80.31029,16.05056],[80.31069,16.0471],[80.31845,16.04457],[80.31383,16.02879],[80.31797,16.02894],[80.32796,16.02486],[80.32542,16.01871],[80.33554,16.01498],[80.33641,16.0203],[80.34237,16.02238],[80.34546,16.02861],[80.35859,16.02676],[80.35889,16.02163],[80.36644,16.01893],[80.36611,16.01671],[80.37158,16.01587],[80.37179,16.01297],[80.38593,16.01132],[80.39189,16.00672],[80.40625,16.00216],[80.40847,16.00293],[80.40936,16.00083],[80.42622,15.99949],[80.42526,15.9906],[80.42679,15.98141],[80.4178,15.96339],[80.39708,15.9741],[80.38551,15.97683],[80.38526,15.97077],[80.37973,15.97364],[80.37505,15.94378],[80.37689,15.93814],[80.3789,15.9379],[80.37981,15.93062],[80.37534,15.92318],[80.37721,15.91905],[80.37813,15.8965],[80.38684,15.89135],[80.39253,15.87806],[80.39663,15.87457],[80.39778,15.87014],[80.40162,15.86697],[80.40682,15.85719],[80.43699,15.87782],[80.44009,15.87301],[80.44229,15.87303],[80.45081,15.85704],[80.45501,15.85819],[80.45681,15.85499],[80.47154,15.85917],[80.4751,15.85252],[80.45923,15.84846],[80.4586,15.85024],[80.4474,15.84731],[80.4513,15.83593],[80.44787,15.83351],[80.44861,15.82617],[80.44966,15.82338],[80.45184,15.82423],[80.45377,15.82003],[80.4512,15.81858],[80.44944,15.82263],[80.44763,15.82276],[80.43673,15.8186],[80.41734,15.80739],[80.41834,15.79708],[80.42769,15.80265],[80.42856,15.80468],[80.43306,15.80545],[80.4968,15.83583],[80.52799,15.84581],[80.53646,15.8523],[80.54395,15.85147],[80.57453,15.86244],[80.60473,15.87026],[80.63539,15.87513],[80.64024,15.87724],[80.67666,15.88027],[80.67967,15.88243],[80.67983,15.88536],[80.68592,15.88152],[80.70734,15.88109],[80.7291,15.87848],[80.74847,15.87404],[80.76743,15.86474],[80.77388,15.86627],[80.77494,15.86373],[80.77848,15.86446],[80.78169,15.8631],[80.80036,15.84797],[80.80805,15.83911],[80.81259,15.83113],[80.81266,15.81395],[80.81561,15.8107],[80.80948,15.81174],[80.80246,15.8161],[80.80091,15.80579],[80.79144,15.82066],[80.79254,15.81562],[80.79068,15.81773],[80.7912,15.82242],[80.7887,15.83237],[80.78582,15.83075],[80.7804,15.83869],[80.78027,15.84164],[80.77963,15.8353],[80.78947,15.81509],[80.79425,15.80134],[80.80418,15.78429],[80.80726,15.77045],[80.8116,15.76256],[80.81363,15.74911],[80.81753,15.74936],[80.81775,15.7404],[80.81577,15.73317],[80.81707,15.72715],[80.81532,15.73284],[80.81645,15.74134],[80.81455,15.73927],[80.81328,15.72867],[80.81558,15.72085],[80.82235,15.71063],[80.81671,15.71699],[80.81358,15.72518],[80.81143,15.72706],[80.81024,15.73526],[80.79855,15.74371],[80.79122,15.75363],[80.79082,15.76075],[80.79242,15.7672],[80.79132,15.76635],[80.79087,15.76794],[80.78929,15.76387],[80.79036,15.76867],[80.79821,15.77384],[80.79965,15.77677],[80.79046,15.76986],[80.78772,15.76426],[80.78843,15.75723],[80.79016,15.75267],[80.79808,15.74242],[80.80923,15.73497],[80.80955,15.72219],[80.81571,15.71342],[80.82519,15.70797],[80.82898,15.70942],[80.83098,15.70654],[80.83369,15.70936],[80.83421,15.7128],[80.83222,15.74175],[80.83875,15.76422],[80.85599,15.8066],[80.86168,15.80911],[80.86244,15.82474],[80.87268,15.84597],[80.88077,15.85689],[80.88633,15.85613],[80.89718,15.88833],[80.90324,15.91704],[80.89494,15.92274],[80.89874,15.93518],[80.89853,15.94171],[80.89689,15.94322],[80.89807,15.95378],[80.89652,15.95393],[80.89668,15.96505],[80.89024,15.96075],[80.8927,15.96953],[80.89017,15.98408],[80.89138,16.00079],[80.88765,16.02168],[80.87679,16.05279],[80.88033,16.05396],[80.88036,16.06038],[80.88181,16.0616],[80.88078,16.06839],[80.87563,16.06718],[80.87148,16.06834],[80.87148,16.06974],[80.87522,16.06996],[80.87367,16.07885],[80.87551,16.07959],[80.87235,16.08922],[80.86631,16.09096],[80.86777,16.1054],[80.85508,16.10357],[80.85424,16.11057],[80.86364,16.12711],[80.86354,16.1326],[80.85862,16.13913],[80.85721,16.14623],[80.85329,16.15037],[80.84875,16.16186],[80.83981,16.17351],[80.82819,16.19886],[80.83427,16.20422],[80.84118,16.21549],[80.82031,16.2179],[80.81736,16.24078],[80.80278,16.24046],[80.80428,16.25458],[80.79959,16.27317],[80.7993,16.28211],[80.78532,16.28923],[80.7485,16.32967],[80.74085,16.34163],[80.7376,16.35377],[80.72564,16.3805],[80.70661,16.40025],[80.67423,16.42447],[80.67471,16.44243],[80.66607,16.44061],[80.66296,16.44955],[80.66391,16.45465],[80.67055,16.4653],[80.66472,16.4721],[80.61642,16.50172],[80.59085,16.5124],[80.59171,16.51513],[80.58461,16.51982],[80.58341,16.51781],[80.55521,16.53282],[80.55456,16.54151],[80.53951,16.55215],[80.5288,16.56256],[80.49853,16.5791],[80.47213,16.5885],[80.4235,16.58871],[80.40267,16.58527],[80.36929,16.58721],[80.3674,16.58751],[80.36483,16.59202],[80.3311,16.61141],[80.3155,16.60918],[80.2811,16.61118],[80.25211,16.61081],[80.23992,16.61361],[80.21041,16.62685],[80.1839,16.64176],[80.16941,16.64084],[80.15169,16.64561],[80.14088,16.65133],[80.13587,16.66668],[80.14933,16.68826],[80.14075,16.70796],[80.14091,16.70962],[80.14267,16.70957],[80.14399,16.71602],[80.14651,16.71645],[80.14767,16.72403],[80.14402,16.72508],[80.14249,16.74336],[80.13287,16.7664],[80.13126,16.7932],[80.12819,16.802],[80.11626,16.82071],[80.10436,16.82231]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"507","area_level":"District","area_name":"Hyderabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.50502,17.48017],[78.50031,17.48302],[78.49766,17.47957],[78.49867,17.47352],[78.50387,17.4709],[78.50471,17.46852],[78.50044,17.46667],[78.49661,17.46727],[78.49389,17.45899],[78.48839,17.45636],[78.48303,17.45745],[78.47591,17.46344],[78.47646,17.47057],[78.47951,17.4714],[78.48276,17.47593],[78.48007,17.4827],[78.47713,17.48261],[78.47184,17.47745],[78.46544,17.47472],[78.46365,17.47265],[78.46371,17.44907],[78.46041,17.44646],[78.45757,17.44783],[78.45295,17.44478],[78.44754,17.45068],[78.43388,17.45122],[78.43116,17.45034],[78.42781,17.44427],[78.42492,17.44372],[78.41447,17.44588],[78.4089,17.44151],[78.40972,17.43448],[78.40499,17.43242],[78.4013,17.42424],[78.39496,17.42309],[78.40015,17.41941],[78.404,17.40772],[78.40293,17.4061],[78.3946,17.40378],[78.39274,17.40182],[78.39266,17.3993],[78.39547,17.39647],[78.39187,17.39139],[78.39546,17.39005],[78.3951,17.38604],[78.38944,17.38294],[78.38516,17.38305],[78.37939,17.3792],[78.36916,17.37921],[78.36759,17.378],[78.36789,17.37614],[78.37382,17.37273],[78.3768,17.37208],[78.37943,17.37346],[78.38804,17.37088],[78.39776,17.37044],[78.40223,17.37246],[78.41468,17.37071],[78.42857,17.37271],[78.4269,17.36013],[78.43279,17.35897],[78.4419,17.35142],[78.44227,17.34894],[78.43881,17.34621],[78.42969,17.35157],[78.4272,17.35113],[78.42591,17.34859],[78.42912,17.34556],[78.42321,17.34337],[78.42342,17.34066],[78.42688,17.33898],[78.43188,17.33943],[78.44004,17.33631],[78.44215,17.3334],[78.44337,17.32714],[78.45166,17.32367],[78.45339,17.31912],[78.4544,17.30815],[78.46109,17.29821],[78.46883,17.29801],[78.4689,17.30557],[78.47261,17.31037],[78.47359,17.31477],[78.47729,17.31769],[78.48954,17.32022],[78.49488,17.31824],[78.5019,17.32204],[78.50305,17.31886],[78.50716,17.31855],[78.50481,17.33316],[78.50737,17.33975],[78.50595,17.34873],[78.51585,17.35211],[78.51794,17.35142],[78.51893,17.34562],[78.52122,17.34306],[78.52749,17.34406],[78.52877,17.34909],[78.53188,17.34581],[78.52978,17.35887],[78.53555,17.36238],[78.5408,17.37143],[78.53699,17.37217],[78.53258,17.3692],[78.5292,17.37145],[78.52789,17.37413],[78.53031,17.37758],[78.52676,17.38055],[78.52779,17.40133],[78.52532,17.40368],[78.52312,17.40175],[78.52216,17.40231],[78.52317,17.40616],[78.53478,17.40395],[78.53336,17.41122],[78.527,17.41275],[78.52779,17.41999],[78.52637,17.422],[78.53023,17.42528],[78.53683,17.42204],[78.54517,17.42905],[78.54586,17.43337],[78.54898,17.43759],[78.54738,17.44121],[78.54549,17.4406],[78.54385,17.44319],[78.53137,17.43699],[78.51779,17.44072],[78.52061,17.4579],[78.51865,17.4623],[78.52021,17.46835],[78.51765,17.47364],[78.52285,17.47584],[78.52309,17.48128],[78.51828,17.48257],[78.5103,17.48015],[78.50502,17.48017]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"508","area_level":"District","area_name":"Karimnagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.01289,18.67319],[79.01119,18.67623],[79.00429,18.67831],[78.99865,18.67291],[78.99248,18.67493],[78.98794,18.67143],[78.98322,18.66442],[78.98194,18.66109],[78.98635,18.6559],[78.98841,18.64995],[78.9808,18.6434],[78.98181,18.64205],[78.9798,18.63992],[78.97705,18.62816],[78.96772,18.60899],[78.97099,18.60564],[78.97503,18.59587],[78.98097,18.59586],[78.98,18.59198],[78.98299,18.5835],[78.98874,18.57746],[78.9894,18.57388],[78.9832,18.56854],[78.97575,18.57467],[78.96772,18.57746],[78.95709,18.57671],[78.95602,18.5695],[78.949,18.55392],[78.95291,18.55252],[78.95618,18.54821],[78.95637,18.54381],[78.9592,18.54271],[78.96074,18.53624],[78.95473,18.52395],[78.95404,18.513],[78.94682,18.49952],[78.9279,18.49049],[78.92266,18.47576],[78.93571,18.46426],[78.93845,18.45716],[78.94798,18.44382],[78.95758,18.45262],[78.97082,18.45474],[78.98744,18.46204],[78.988,18.45456],[78.99117,18.44797],[78.99147,18.44092],[78.9783,18.44198],[78.97414,18.42736],[78.9782,18.42023],[78.98937,18.41741],[78.9886,18.41545],[78.99101,18.40941],[78.99709,18.39987],[79.01666,18.3994],[79.03141,18.40119],[79.03977,18.40519],[79.05512,18.41822],[79.06488,18.42296],[79.07552,18.42465],[79.07994,18.42297],[79.08551,18.41235],[79.09336,18.40693],[79.10897,18.40363],[79.11962,18.39655],[79.12662,18.3966],[79.12781,18.38515],[79.15354,18.37802],[79.15753,18.35505],[79.15296,18.35222],[79.13618,18.34713],[79.13029,18.34879],[79.11692,18.3388],[79.10689,18.33738],[79.10523,18.33261],[79.10693,18.33095],[79.10187,18.32045],[79.11027,18.31603],[79.10899,18.30838],[79.11473,18.3044],[79.11917,18.30421],[79.11736,18.30225],[79.11472,18.29039],[79.11801,18.28714],[79.11979,18.27702],[79.12739,18.27543],[79.13369,18.27125],[79.13004,18.26132],[79.12034,18.25536],[79.12328,18.24314],[79.11716,18.24263],[79.10849,18.23726],[79.10817,18.22136],[79.11337,18.21495],[79.12054,18.21488],[79.12325,18.217],[79.12847,18.21462],[79.13716,18.20627],[79.13786,18.20066],[79.14023,18.19639],[79.14093,18.18787],[79.1462,18.18342],[79.14586,18.17099],[79.16016,18.16647],[79.16248,18.15719],[79.18784,18.17022],[79.19252,18.16387],[79.21226,18.16163],[79.21063,18.17491],[79.22347,18.17778],[79.22906,18.18143],[79.24448,18.18399],[79.24219,18.1772],[79.2443,18.16922],[79.25047,18.16311],[79.25089,18.15417],[79.28742,18.15355],[79.29067,18.1509],[79.29084,18.14235],[79.29638,18.13738],[79.30121,18.12999],[79.31392,18.13415],[79.31736,18.13988],[79.32734,18.14815],[79.3463,18.14679],[79.35387,18.13991],[79.3656,18.13977],[79.37937,18.1567],[79.3863,18.15158],[79.39692,18.14804],[79.40092,18.16108],[79.39762,18.16276],[79.39906,18.1662],[79.41318,18.16489],[79.41918,18.16919],[79.42448,18.16563],[79.42767,18.15725],[79.43117,18.15683],[79.43767,18.15926],[79.44749,18.1589],[79.44721,18.16364],[79.46202,18.16441],[79.46148,18.17727],[79.46288,18.18048],[79.46105,18.18734],[79.46663,18.18947],[79.46812,18.1929],[79.47352,18.19563],[79.46539,18.20071],[79.46807,18.21022],[79.47326,18.21972],[79.47384,18.22995],[79.48131,18.23183],[79.48236,18.22915],[79.48627,18.23124],[79.49152,18.2294],[79.49788,18.23466],[79.51951,18.24122],[79.53467,18.2352],[79.54046,18.23789],[79.55,18.24726],[79.54872,18.25264],[79.55189,18.26782],[79.56309,18.26283],[79.56719,18.27493],[79.5674,18.27987],[79.56669,18.28362],[79.56101,18.28723],[79.56091,18.29583],[79.56286,18.29815],[79.55977,18.30001],[79.56503,18.30924],[79.56695,18.3099],[79.57253,18.30764],[79.57652,18.30917],[79.57392,18.31703],[79.57541,18.31893],[79.57617,18.32883],[79.57461,18.33108],[79.5795,18.34874],[79.57671,18.3538],[79.57776,18.35675],[79.57546,18.35911],[79.57681,18.36682],[79.57479,18.36923],[79.5756,18.37805],[79.5804,18.38806],[79.57941,18.39092],[79.5758,18.39089],[79.57826,18.409],[79.58048,18.41327],[79.56878,18.41598],[79.57095,18.42023],[79.56706,18.42388],[79.54898,18.41104],[79.54586,18.40697],[79.53372,18.39991],[79.51908,18.39679],[79.50665,18.39916],[79.49824,18.39508],[79.48874,18.38742],[79.47738,18.3854],[79.45851,18.39386],[79.44387,18.40815],[79.43937,18.41066],[79.41673,18.42084],[79.37278,18.43535],[79.33329,18.46751],[79.30629,18.48046],[79.29273,18.48253],[79.28208,18.48016],[79.24863,18.45334],[79.23659,18.44757],[79.23557,18.45065],[79.22886,18.45686],[79.22546,18.46997],[79.22063,18.47807],[79.22034,18.48578],[79.21565,18.49193],[79.21988,18.50848],[79.2155,18.51599],[79.21835,18.5245],[79.21975,18.52386],[79.22132,18.52794],[79.21551,18.53473],[79.2205,18.54548],[79.22563,18.54487],[79.22782,18.5466],[79.23025,18.56676],[79.20528,18.57785],[79.20443,18.59525],[79.18485,18.61069],[79.18195,18.61976],[79.18262,18.62537],[79.17926,18.64477],[79.1762,18.65444],[79.17154,18.65428],[79.17098,18.64986],[79.1678,18.64751],[79.16099,18.64701],[79.15665,18.63869],[79.14774,18.62805],[79.14467,18.62971],[79.14358,18.62673],[79.13785,18.6247],[79.12718,18.62837],[79.12214,18.62646],[79.11516,18.62057],[79.1106,18.62269],[79.11285,18.62969],[79.11109,18.64507],[79.11771,18.65163],[79.11594,18.65923],[79.1125,18.65845],[79.10996,18.66333],[79.1067,18.66375],[79.1068,18.65777],[79.10322,18.64955],[79.09724,18.64842],[79.09516,18.65178],[79.08628,18.6459],[79.07724,18.65173],[79.06463,18.65376],[79.06483,18.65948],[79.06287,18.6611],[79.06208,18.66555],[79.05949,18.66597],[79.0573,18.65904],[79.05261,18.65562],[79.04978,18.6472],[79.03593,18.64463],[79.03626,18.65111],[79.02754,18.65143],[79.02256,18.6546],[79.01793,18.65413],[79.01751,18.66152],[79.01289,18.67319]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"509","area_level":"District","area_name":"Khammam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.3203,17.56362],[80.30494,17.56983],[80.28598,17.57309],[80.28251,17.56335],[80.29233,17.55584],[80.28077,17.54259],[80.24801,17.56186],[80.23795,17.55923],[80.23374,17.56628],[80.23022,17.55237],[80.21863,17.55593],[80.2019,17.5581],[80.20494,17.54556],[80.22827,17.53056],[80.22881,17.52254],[80.22639,17.50737],[80.22771,17.50455],[80.22486,17.49633],[80.22099,17.49205],[80.21656,17.47527],[80.20986,17.47097],[80.20864,17.47433],[80.20409,17.47453],[80.20024,17.48682],[80.19581,17.47603],[80.19525,17.47082],[80.19823,17.46383],[80.20317,17.44204],[80.19166,17.44295],[80.18091,17.43922],[80.17011,17.43853],[80.16249,17.42048],[80.16634,17.40761],[80.16027,17.40317],[80.16214,17.38961],[80.16074,17.37682],[80.14373,17.39387],[80.12993,17.38825],[80.1283,17.37954],[80.12378,17.38251],[80.12038,17.38267],[80.12017,17.37872],[80.11809,17.37826],[80.11702,17.37586],[80.11636,17.37009],[80.11267,17.37347],[80.11146,17.37039],[80.11266,17.36702],[80.10845,17.35867],[80.10044,17.35799],[80.08582,17.36714],[80.07663,17.36427],[80.0729,17.3568],[80.07494,17.35278],[80.07396,17.35096],[80.06857,17.35312],[80.05728,17.34649],[80.05232,17.34661],[80.04662,17.35232],[80.03657,17.35489],[80.02796,17.35476],[80.01522,17.35979],[79.99247,17.36406],[79.9934,17.38631],[79.9915,17.39937],[79.97977,17.40602],[79.9697,17.40655],[79.96893,17.39984],[79.96477,17.39839],[79.95652,17.3959],[79.93661,17.39507],[79.94035,17.38216],[79.93699,17.37471],[79.93058,17.36636],[79.93015,17.3725],[79.90311,17.37587],[79.90249,17.37326],[79.89936,17.37207],[79.89729,17.36713],[79.89584,17.35647],[79.89134,17.35329],[79.88234,17.35716],[79.87887,17.35354],[79.87916,17.34314],[79.87544,17.33649],[79.87543,17.33055],[79.84985,17.33463],[79.84352,17.3292],[79.83146,17.33594],[79.81511,17.33134],[79.81109,17.32674],[79.80429,17.32523],[79.80169,17.31235],[79.81879,17.28996],[79.81774,17.28198],[79.83046,17.27021],[79.83278,17.2713],[79.83444,17.27472],[79.83606,17.27419],[79.8382,17.27968],[79.84041,17.27926],[79.86812,17.26228],[79.87282,17.266],[79.87483,17.26302],[79.88139,17.25909],[79.88698,17.2593],[79.89005,17.25632],[79.88953,17.25937],[79.90068,17.25385],[79.90023,17.24629],[79.90223,17.24634],[79.8997,17.23576],[79.89732,17.23648],[79.89574,17.2309],[79.90187,17.21155],[79.88624,17.20911],[79.88195,17.19815],[79.87656,17.19359],[79.88105,17.17363],[79.88867,17.17173],[79.89893,17.15529],[79.91252,17.14865],[79.91839,17.12946],[79.93189,17.12742],[79.94619,17.13499],[79.951,17.1295],[79.96206,17.1244],[79.9698,17.11191],[79.9857,17.09623],[79.99234,17.08152],[79.99657,17.07593],[80.00596,17.06801],[80.01568,17.06612],[80.02258,17.0579],[80.02941,17.05317],[80.03597,17.05384],[80.03977,17.05118],[80.04035,17.03881],[80.03687,17.02416],[80.03929,17.02298],[80.03928,17.02087],[80.04633,17.01697],[80.0458,17.01441],[80.04967,17.01358],[80.05096,17.01108],[80.062,17.00935],[80.05994,17.00065],[80.05615,16.99894],[80.05759,16.99709],[80.05643,16.99533],[80.06119,16.98726],[80.05544,16.97142],[80.08338,16.97018],[80.09156,16.96832],[80.09411,16.97558],[80.09516,16.99065],[80.10255,16.99096],[80.10963,16.98721],[80.1204,16.98789],[80.12048,16.99122],[80.12786,16.99227],[80.14024,16.99059],[80.14637,17.00026],[80.15336,17.00694],[80.15729,17.00741],[80.16202,17.00494],[80.16776,17.00559],[80.17017,17.01683],[80.17773,17.0166],[80.18038,17.01902],[80.18729,17.01995],[80.19263,17.02675],[80.192,17.03354],[80.19669,17.04394],[80.20409,17.03829],[80.19958,17.02649],[80.20206,17.01703],[80.21143,17.01027],[80.22287,17.00784],[80.22616,17.01532],[80.24007,17.00512],[80.2404,17.00215],[80.25607,17.0011],[80.25686,16.99893],[80.26488,16.99724],[80.2669,17.00134],[80.27047,17.00399],[80.28266,17.00767],[80.29359,16.99633],[80.29436,16.99383],[80.29027,16.98108],[80.29352,16.97666],[80.30659,16.97379],[80.30502,16.9537],[80.31647,16.94844],[80.31309,16.94053],[80.31387,16.92483],[80.31159,16.91666],[80.31561,16.9155],[80.32381,16.90643],[80.32497,16.90033],[80.3217,16.87963],[80.34401,16.87437],[80.3409,16.8597],[80.34938,16.85912],[80.37407,16.85239],[80.37339,16.8395],[80.37961,16.84108],[80.3737,16.82823],[80.38043,16.81745],[80.38317,16.81581],[80.38601,16.81625],[80.38733,16.81896],[80.38607,16.8249],[80.39084,16.82474],[80.39237,16.82793],[80.39668,16.8275],[80.39971,16.83355],[80.40422,16.83205],[80.4078,16.84823],[80.38347,16.85003],[80.37837,16.85199],[80.38278,16.8549],[80.37883,16.86156],[80.38413,16.86525],[80.38526,16.86329],[80.41212,16.8519],[80.42771,16.8498],[80.42794,16.84688],[80.42971,16.84673],[80.42859,16.83812],[80.4344,16.83743],[80.4382,16.83425],[80.44088,16.83427],[80.44141,16.83078],[80.45007,16.82723],[80.45327,16.82301],[80.46016,16.82004],[80.46424,16.81998],[80.46614,16.81635],[80.46383,16.80536],[80.46445,16.79545],[80.4863,16.79111],[80.49405,16.78369],[80.50439,16.77869],[80.52619,16.77459],[80.55158,16.77501],[80.57024,16.76801],[80.57687,16.77715],[80.58495,16.78355],[80.58716,16.78225],[80.58879,16.78532],[80.59685,16.7902],[80.59711,16.79221],[80.61297,16.79354],[80.5944,16.80281],[80.58455,16.81295],[80.57741,16.82333],[80.56553,16.82684],[80.56285,16.83284],[80.57014,16.84852],[80.57119,16.86112],[80.56831,16.86939],[80.57756,16.87895],[80.59591,16.88462],[80.59482,16.89889],[80.58768,16.90229],[80.58712,16.90418],[80.59234,16.90744],[80.60194,16.91859],[80.59691,16.92386],[80.59171,16.92299],[80.5904,16.92709],[80.58406,16.9288],[80.58132,16.93252],[80.58098,16.93615],[80.57547,16.93814],[80.57349,16.94132],[80.56702,16.94316],[80.54577,16.95693],[80.5347,16.96141],[80.5261,16.94788],[80.50546,16.95654],[80.49923,16.95633],[80.49559,16.94999],[80.49345,16.92743],[80.48203,16.93213],[80.47302,16.93848],[80.46743,16.94545],[80.44967,16.95476],[80.4194,16.96257],[80.40765,16.96397],[80.37136,16.97581],[80.3634,16.97607],[80.36662,16.98144],[80.37576,16.9887],[80.38692,17.00459],[80.38785,17.00927],[80.40703,17.0158],[80.4074,17.02561],[80.39576,17.03573],[80.39593,17.04633],[80.39825,17.04909],[80.39849,17.0526],[80.39382,17.05477],[80.39166,17.0613],[80.38578,17.0669],[80.38726,17.07129],[80.40063,17.08196],[80.40382,17.08196],[80.40443,17.08676],[80.40785,17.08785],[80.40939,17.09176],[80.41896,17.0923],[80.41779,17.08788],[80.41855,17.07843],[80.41705,17.07361],[80.43172,17.05552],[80.43863,17.03758],[80.4533,17.03476],[80.46486,17.03002],[80.47138,17.05037],[80.486,17.05208],[80.49093,17.05097],[80.49767,17.06265],[80.5054,17.06846],[80.51008,17.0869],[80.50403,17.09264],[80.5055,17.09824],[80.51288,17.10925],[80.51408,17.12205],[80.52759,17.11891],[80.54234,17.1246],[80.54882,17.13079],[80.55429,17.1336],[80.55732,17.13212],[80.56318,17.1331],[80.58002,17.15307],[80.60054,17.14228],[80.6064,17.13518],[80.61699,17.13158],[80.61825,17.12842],[80.6279,17.1299],[80.6363,17.12853],[80.64548,17.12352],[80.64204,17.1159],[80.64924,17.11136],[80.6656,17.10512],[80.67055,17.10119],[80.66805,17.09493],[80.65889,17.09156],[80.65709,17.08956],[80.64992,17.07137],[80.65381,17.06861],[80.6664,17.06748],[80.67107,17.07004],[80.67347,17.06664],[80.6764,17.07075],[80.67967,17.07203],[80.69496,17.07414],[80.69729,17.07679],[80.69634,17.08006],[80.69898,17.0816],[80.69945,17.08379],[80.70536,17.08078],[80.71058,17.08188],[80.7368,17.07769],[80.73888,17.07959],[80.74465,17.07694],[80.74647,17.07777],[80.75089,17.07262],[80.76498,17.06661],[80.79046,17.06346],[80.79874,17.06124],[80.81041,17.05532],[80.82882,17.05277],[80.84079,17.04671],[80.84531,17.03997],[80.85584,17.04652],[80.85911,17.05261],[80.86551,17.05856],[80.87149,17.06984],[80.87716,17.07043],[80.87611,17.07488],[80.86871,17.078],[80.86758,17.08045],[80.87521,17.09545],[80.87389,17.09854],[80.87643,17.10559],[80.87348,17.1141],[80.86833,17.12027],[80.86774,17.12313],[80.8693,17.12669],[80.87364,17.12877],[80.87825,17.13514],[80.8777,17.14981],[80.87944,17.16083],[80.8924,17.15937],[80.90703,17.15385],[80.91659,17.15369],[80.92399,17.15785],[80.92309,17.16129],[80.9252,17.16775],[80.92643,17.18348],[80.92267,17.18859],[80.91845,17.18974],[80.92105,17.20028],[80.91676,17.21096],[80.91676,17.21609],[80.91884,17.22001],[80.91471,17.21901],[80.89965,17.22286],[80.87792,17.23085],[80.87456,17.23354],[80.86798,17.2334],[80.86526,17.23577],[80.86633,17.24621],[80.86977,17.25713],[80.87298,17.26303],[80.87619,17.26473],[80.86889,17.2832],[80.87199,17.32301],[80.86759,17.3297],[80.86773,17.33503],[80.86528,17.34494],[80.86223,17.34821],[80.85921,17.36505],[80.84514,17.36726],[80.83166,17.36314],[80.81928,17.35126],[80.8128,17.33708],[80.80373,17.33843],[80.77871,17.33732],[80.77623,17.32862],[80.77735,17.31543],[80.77539,17.30821],[80.76101,17.31389],[80.75002,17.30066],[80.74846,17.2913],[80.73658,17.29744],[80.73274,17.30166],[80.72566,17.30542],[80.72242,17.30528],[80.70883,17.29992],[80.69836,17.29013],[80.69436,17.28852],[80.68722,17.29122],[80.68294,17.29674],[80.68189,17.30689],[80.68736,17.30863],[80.68751,17.31095],[80.68366,17.31911],[80.68284,17.33199],[80.67975,17.33781],[80.67547,17.33978],[80.66634,17.34072],[80.65989,17.33968],[80.66034,17.34329],[80.64579,17.34633],[80.64623,17.35357],[80.6449,17.35554],[80.64607,17.36018],[80.63436,17.36283],[80.63192,17.36183],[80.63052,17.35844],[80.63293,17.34611],[80.6292,17.34302],[80.62852,17.33874],[80.62538,17.33677],[80.61485,17.34288],[80.61416,17.3458],[80.61727,17.34881],[80.61291,17.35441],[80.60943,17.35629],[80.61887,17.36611],[80.61947,17.37141],[80.60478,17.38324],[80.5977,17.38237],[80.59606,17.38373],[80.59225,17.38216],[80.58212,17.35699],[80.56938,17.35379],[80.55629,17.34109],[80.55531,17.36805],[80.5646,17.38007],[80.56715,17.38804],[80.56642,17.41732],[80.59256,17.42445],[80.58509,17.43211],[80.5879,17.44111],[80.58702,17.44493],[80.57897,17.44375],[80.57522,17.44581],[80.5709,17.45112],[80.57281,17.45909],[80.56855,17.45953],[80.56481,17.45669],[80.56161,17.4572],[80.55925,17.45978],[80.5568,17.46813],[80.55305,17.47263],[80.53228,17.47831],[80.517,17.47159],[80.5136,17.47169],[80.50588,17.47859],[80.49386,17.47417],[80.476,17.45571],[80.46958,17.45705],[80.45051,17.44794],[80.45021,17.44445],[80.44673,17.4409],[80.43822,17.42385],[80.4381,17.41809],[80.43409,17.41257],[80.42968,17.41112],[80.41166,17.41759],[80.4062,17.42106],[80.39117,17.41767],[80.38508,17.4147],[80.37589,17.41689],[80.39071,17.43281],[80.40007,17.44697],[80.40257,17.45237],[80.40156,17.4606],[80.41135,17.46988],[80.43132,17.49732],[80.42364,17.50098],[80.42399,17.50449],[80.41592,17.51011],[80.4058,17.51346],[80.40201,17.52101],[80.40067,17.52788],[80.39681,17.52821],[80.37681,17.50868],[80.36102,17.50098],[80.35968,17.49699],[80.36047,17.48638],[80.34649,17.48516],[80.34778,17.50933],[80.34038,17.51889],[80.33967,17.52262],[80.34357,17.53508],[80.35597,17.53124],[80.36848,17.56784],[80.34614,17.56783],[80.33966,17.56313],[80.32537,17.56096],[80.3203,17.56362]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"51","area_level":"District","area_name":"Nainital","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.34209,29.60652],[79.33594,29.61173],[79.33216,29.61186],[79.32273,29.60381],[79.30783,29.60117],[79.29967,29.59052],[79.29322,29.5891],[79.28714,29.59007],[79.28664,29.57827],[79.27486,29.57379],[79.25335,29.55475],[79.25009,29.5498],[79.24686,29.54907],[79.2454,29.54218],[79.24057,29.53638],[79.23307,29.53752],[79.23411,29.53565],[79.23313,29.53139],[79.22807,29.52773],[79.2265,29.52428],[79.22306,29.5221],[79.21769,29.52158],[79.21349,29.5255],[79.20305,29.52279],[79.19696,29.52383],[79.18885,29.53006],[79.17865,29.53461],[79.16786,29.53463],[79.15866,29.53809],[79.14607,29.54015],[79.14372,29.54178],[79.14545,29.54466],[79.14076,29.55265],[79.13801,29.55269],[79.13283,29.5484],[79.12416,29.54956],[79.10859,29.5441],[79.1093,29.5534],[79.11137,29.5549],[79.10997,29.55848],[79.10406,29.56012],[79.09316,29.56786],[79.09064,29.56802],[79.09062,29.57295],[79.07688,29.58223],[79.07192,29.57984],[79.06365,29.58004],[79.05909,29.58193],[79.0565,29.57948],[79.04123,29.58491],[79.03464,29.58514],[79.02647,29.58923],[79.02177,29.58362],[79.00898,29.58605],[79.00811,29.57152],[78.99845,29.56234],[78.99995,29.55943],[79.00639,29.55639],[79.00613,29.55444],[79.00216,29.55162],[78.99301,29.55269],[78.98073,29.5435],[78.97088,29.53918],[78.96894,29.53586],[78.96665,29.52776],[78.97085,29.52236],[78.96906,29.52001],[78.96633,29.51937],[78.96352,29.52095],[78.96253,29.51905],[78.96318,29.51207],[78.96162,29.50955],[78.96314,29.5051],[78.96127,29.50101],[78.96239,29.49969],[78.95968,29.49688],[78.96046,29.49428],[78.96304,29.49325],[78.95822,29.4815],[78.95614,29.4807],[78.95443,29.47178],[78.95151,29.46416],[78.95035,29.46412],[78.94979,29.46157],[78.95233,29.45856],[78.94734,29.45883],[78.94271,29.45216],[78.93814,29.44851],[78.93546,29.44907],[78.93346,29.44527],[78.92313,29.44222],[78.92101,29.43427],[78.92534,29.43383],[78.93634,29.43822],[78.94167,29.43868],[78.94024,29.43526],[78.94312,29.43469],[78.93831,29.43401],[78.92571,29.42595],[78.92398,29.41881],[78.91875,29.40988],[78.91838,29.40351],[78.91256,29.40117],[78.91118,29.39882],[78.91221,29.39422],[78.90507,29.38951],[78.90219,29.38495],[78.8925,29.38125],[78.88734,29.37305],[78.87774,29.37497],[78.87595,29.37105],[78.87958,29.36936],[78.87977,29.36755],[78.8717,29.36221],[78.86032,29.3582],[78.85193,29.36033],[78.85102,29.35585],[78.85405,29.35061],[78.86477,29.34949],[78.86968,29.34505],[78.87575,29.34677],[78.87911,29.35164],[78.88622,29.34182],[78.89286,29.34554],[78.89973,29.34556],[78.9132,29.34412],[78.91851,29.34143],[78.92786,29.34098],[78.93036,29.33556],[78.94757,29.32941],[78.95344,29.32411],[78.95506,29.32447],[78.95819,29.32118],[78.95639,29.31792],[78.98587,29.31651],[78.98904,29.31962],[78.98814,29.32113],[78.99265,29.32346],[78.99948,29.31844],[79.00823,29.32507],[79.01445,29.32262],[79.01866,29.32541],[79.02675,29.31817],[79.02846,29.31349],[79.02295,29.30855],[79.02953,29.30539],[79.0161,29.29447],[79.01246,29.28975],[79.01858,29.28368],[79.02225,29.2821],[79.02251,29.2755],[79.03,29.26521],[79.03472,29.26325],[79.04049,29.26396],[79.03909,29.26271],[79.04181,29.25931],[79.04177,29.25418],[79.04371,29.25562],[79.0438,29.2579],[79.04946,29.26166],[79.05522,29.26191],[79.0596,29.26876],[79.06439,29.2715],[79.06906,29.26992],[79.07377,29.27376],[79.07593,29.27791],[79.09037,29.27499],[79.09165,29.26815],[79.09594,29.26301],[79.09341,29.2594],[79.10795,29.25519],[79.12003,29.26921],[79.13435,29.27526],[79.14829,29.27129],[79.16286,29.26352],[79.22016,29.24796],[79.25165,29.24181],[79.25946,29.24222],[79.27715,29.23956],[79.30117,29.21508],[79.35205,29.16892],[79.3632,29.15619],[79.37535,29.15186],[79.3836,29.14418],[79.39249,29.12736],[79.40131,29.1146],[79.43563,29.08355],[79.41595,29.05144],[79.55926,29.05283],[79.57926,29.051],[79.61682,29.05141],[79.62752,29.05004],[79.63263,29.05467],[79.63409,29.06151],[79.63871,29.06292],[79.64551,29.07025],[79.64865,29.0698],[79.64872,29.0728],[79.65193,29.07739],[79.65342,29.07421],[79.66482,29.06829],[79.67384,29.06951],[79.68278,29.06299],[79.6929,29.05314],[79.69447,29.04477],[79.71059,29.03103],[79.72015,29.03098],[79.72509,29.02679],[79.74631,29.02554],[79.75048,29.02633],[79.74744,29.03206],[79.75421,29.03179],[79.76419,29.03694],[79.76885,29.03545],[79.77295,29.03086],[79.77715,29.03028],[79.77646,29.02766],[79.7717,29.02731],[79.77339,29.02523],[79.78857,29.02712],[79.79004,29.02634],[79.78938,29.02347],[79.79189,29.02289],[79.80025,29.02491],[79.8064,29.01635],[79.80208,29.01622],[79.79651,29.01352],[79.79324,28.99819],[79.79999,28.99947],[79.80635,28.99288],[79.8066,28.9903],[79.80805,28.99019],[79.80994,28.99358],[79.81263,28.99263],[79.81173,28.98483],[79.82424,28.99014],[79.82744,28.9891],[79.82481,28.99487],[79.82843,28.99584],[79.82941,28.99443],[79.83616,28.99777],[79.83734,29.0005],[79.83951,28.99851],[79.8379,28.99464],[79.84201,28.99613],[79.84638,29.00144],[79.84524,29.00475],[79.84781,29.00391],[79.84979,29.00966],[79.85764,29.01294],[79.86293,29.00979],[79.86443,29.00287],[79.86911,28.99596],[79.87373,28.99196],[79.87551,28.99286],[79.8747,28.9914],[79.87609,28.99145],[79.87327,28.98844],[79.8737,28.98354],[79.87163,28.98396],[79.87016,28.98164],[79.87254,28.97917],[79.87599,28.97839],[79.87805,28.97903],[79.88053,28.9833],[79.8776,28.98408],[79.87784,28.98553],[79.88126,28.98566],[79.87821,28.98993],[79.87951,28.99355],[79.88622,28.996],[79.88677,28.9929],[79.88951,28.99372],[79.89129,28.99213],[79.89599,28.99341],[79.89307,28.99454],[79.89617,28.9964],[79.89361,29.001],[79.89661,29.0045],[79.90288,29.0069],[79.90108,29.0085],[79.89732,29.00785],[79.89704,29.00903],[79.90106,29.01178],[79.90122,29.01635],[79.90632,29.01984],[79.90677,29.02532],[79.91159,29.02804],[79.91234,29.0333],[79.91468,29.03313],[79.91406,29.0311],[79.91528,29.03008],[79.92081,29.03091],[79.92589,29.03653],[79.9379,29.04422],[79.94587,29.04328],[79.95694,29.0468],[79.96181,29.04658],[79.96653,29.04894],[79.97245,29.05476],[79.96937,29.05367],[79.96459,29.05667],[79.95803,29.06646],[79.95412,29.06919],[79.95398,29.08151],[79.95793,29.09253],[79.95711,29.09643],[79.96117,29.10881],[79.96314,29.1112],[79.96975,29.11288],[79.9767,29.11698],[79.97479,29.12057],[79.96613,29.12546],[79.95352,29.12686],[79.94108,29.13265],[79.92127,29.13381],[79.91717,29.13209],[79.91528,29.12877],[79.91048,29.12864],[79.90586,29.13406],[79.89689,29.13536],[79.89554,29.14783],[79.89257,29.15194],[79.88268,29.15389],[79.87788,29.15806],[79.87825,29.16929],[79.88043,29.17344],[79.88394,29.1752],[79.89153,29.17455],[79.90071,29.18202],[79.90391,29.19483],[79.91052,29.20023],[79.91266,29.20035],[79.918,29.20725],[79.92355,29.20904],[79.92673,29.21416],[79.92185,29.22384],[79.91095,29.23265],[79.90685,29.24457],[79.90675,29.25],[79.90334,29.25312],[79.90018,29.25195],[79.89732,29.25698],[79.89022,29.25587],[79.88909,29.25342],[79.87653,29.25964],[79.86844,29.2602],[79.86671,29.26639],[79.86293,29.26884],[79.86259,29.27093],[79.85939,29.27144],[79.8559,29.27681],[79.85039,29.27221],[79.84715,29.27742],[79.84522,29.27572],[79.84577,29.27307],[79.844,29.27086],[79.8399,29.27285],[79.82507,29.26895],[79.81902,29.27143],[79.81377,29.27813],[79.81278,29.28183],[79.8177,29.2866],[79.81406,29.28828],[79.81195,29.29265],[79.81558,29.29394],[79.8161,29.29759],[79.8146,29.29997],[79.81743,29.30056],[79.81817,29.30797],[79.8095,29.31423],[79.80582,29.31474],[79.80541,29.32808],[79.79352,29.33635],[79.79982,29.3367],[79.80722,29.3404],[79.81507,29.33793],[79.81681,29.33988],[79.81863,29.33813],[79.83208,29.33793],[79.83187,29.32828],[79.8301,29.32658],[79.83188,29.32322],[79.84389,29.322],[79.84986,29.31658],[79.85008,29.31425],[79.858,29.31091],[79.8613,29.31219],[79.86255,29.31509],[79.86528,29.31553],[79.86296,29.31715],[79.86326,29.32738],[79.86428,29.33011],[79.86794,29.33215],[79.86882,29.34014],[79.87127,29.34505],[79.8825,29.34964],[79.89064,29.35072],[79.89463,29.34751],[79.90002,29.34822],[79.8986,29.34917],[79.90243,29.35316],[79.90203,29.35571],[79.89927,29.35923],[79.89616,29.3592],[79.89206,29.36971],[79.88716,29.36631],[79.88396,29.36801],[79.88205,29.36606],[79.87571,29.37087],[79.87291,29.36946],[79.87027,29.37067],[79.86177,29.36911],[79.85783,29.36986],[79.85954,29.37979],[79.84779,29.38566],[79.84694,29.38978],[79.84207,29.39733],[79.83736,29.3953],[79.83295,29.39733],[79.83337,29.40587],[79.84757,29.41823],[79.85631,29.43272],[79.85195,29.43313],[79.84082,29.42719],[79.82859,29.4255],[79.82528,29.42657],[79.82322,29.43286],[79.81578,29.43511],[79.80855,29.43962],[79.79839,29.43723],[79.79578,29.43888],[79.79556,29.44107],[79.79156,29.44271],[79.78769,29.4489],[79.7808,29.44904],[79.77811,29.45135],[79.76792,29.44759],[79.76719,29.43721],[79.7639,29.43339],[79.75926,29.43499],[79.7568,29.43301],[79.75382,29.43479],[79.74877,29.43407],[79.74425,29.43002],[79.74169,29.42983],[79.73842,29.43369],[79.73581,29.43146],[79.72907,29.4406],[79.72674,29.44673],[79.7316,29.45383],[79.73381,29.46141],[79.72189,29.45736],[79.71594,29.45827],[79.71479,29.46228],[79.71001,29.45963],[79.70318,29.46673],[79.69875,29.46915],[79.69214,29.46961],[79.69145,29.47345],[79.68951,29.47372],[79.68097,29.49197],[79.67937,29.49997],[79.68363,29.50633],[79.6812,29.50745],[79.68209,29.51243],[79.68099,29.51663],[79.68367,29.52159],[79.68152,29.52181],[79.68242,29.52357],[79.6798,29.52728],[79.67131,29.53095],[79.67278,29.53207],[79.66508,29.53424],[79.6654,29.54124],[79.66004,29.54272],[79.6565,29.54174],[79.64814,29.5477],[79.64456,29.54763],[79.63209,29.5424],[79.63139,29.54846],[79.62915,29.55161],[79.62124,29.55581],[79.61269,29.55689],[79.60786,29.55372],[79.60091,29.55278],[79.59767,29.55023],[79.58972,29.55022],[79.58405,29.54505],[79.57708,29.54316],[79.57184,29.53961],[79.55048,29.54047],[79.54936,29.5419],[79.55203,29.54749],[79.55126,29.55071],[79.54985,29.55101],[79.54704,29.54981],[79.54068,29.55047],[79.5349,29.54551],[79.52739,29.54909],[79.52337,29.52394],[79.51662,29.51198],[79.51081,29.50544],[79.50435,29.50171],[79.50384,29.49882],[79.50141,29.49679],[79.4942,29.50288],[79.48191,29.49665],[79.48027,29.50434],[79.47542,29.50937],[79.47319,29.51078],[79.46695,29.51019],[79.46479,29.51467],[79.46039,29.51734],[79.4507,29.51668],[79.44331,29.52467],[79.44166,29.53322],[79.43893,29.53846],[79.43445,29.53945],[79.43154,29.54468],[79.42396,29.55114],[79.41476,29.55664],[79.41236,29.55667],[79.40936,29.56235],[79.40376,29.56187],[79.4032,29.56395],[79.3991,29.56378],[79.39758,29.5684],[79.39486,29.56973],[79.39193,29.5754],[79.3892,29.57489],[79.38758,29.57656],[79.38572,29.58234],[79.38045,29.58801],[79.36724,29.59086],[79.35856,29.598],[79.35019,29.59415],[79.34874,29.59689],[79.35374,29.59989],[79.34855,29.60666],[79.34209,29.60652]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"510","area_level":"District","area_name":"Krishna","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.61567,17.13213],[80.60664,17.13499],[80.60096,17.14201],[80.58002,17.15307],[80.56318,17.1331],[80.55732,17.13212],[80.55429,17.1336],[80.54882,17.13079],[80.54234,17.1246],[80.52759,17.11891],[80.51408,17.12205],[80.51288,17.10925],[80.5055,17.09824],[80.50403,17.09264],[80.51008,17.0869],[80.5054,17.06846],[80.49767,17.06265],[80.49093,17.05097],[80.486,17.05208],[80.47138,17.05037],[80.46486,17.03002],[80.4533,17.03476],[80.43863,17.03758],[80.43172,17.05552],[80.41705,17.07361],[80.41855,17.07843],[80.41779,17.08788],[80.41896,17.0923],[80.40939,17.09176],[80.40785,17.08785],[80.40443,17.08676],[80.40382,17.08196],[80.40063,17.08196],[80.39102,17.07467],[80.38573,17.06793],[80.39166,17.0613],[80.39382,17.05477],[80.39849,17.0526],[80.39825,17.04909],[80.39593,17.04633],[80.39576,17.03573],[80.4074,17.02561],[80.40703,17.0158],[80.38785,17.00927],[80.38692,17.00459],[80.37576,16.9887],[80.37156,16.98635],[80.36343,16.97675],[80.36658,16.97519],[80.37136,16.97581],[80.40765,16.96397],[80.4194,16.96257],[80.44967,16.95476],[80.46743,16.94545],[80.47302,16.93848],[80.48203,16.93213],[80.49345,16.92743],[80.49559,16.94999],[80.49923,16.95633],[80.50546,16.95654],[80.5261,16.94788],[80.5347,16.96141],[80.54577,16.95693],[80.56702,16.94316],[80.57349,16.94132],[80.57547,16.93814],[80.58098,16.93615],[80.58132,16.93252],[80.58406,16.9288],[80.59122,16.92637],[80.59171,16.92299],[80.59703,16.92378],[80.60194,16.91859],[80.59234,16.90744],[80.58712,16.90418],[80.58768,16.90229],[80.5946,16.89936],[80.59611,16.88511],[80.59286,16.88266],[80.58508,16.88183],[80.57756,16.87895],[80.56831,16.86939],[80.57119,16.86112],[80.57014,16.84852],[80.56285,16.83284],[80.56553,16.82684],[80.57741,16.82333],[80.58455,16.81295],[80.5944,16.80281],[80.61297,16.79354],[80.59711,16.79221],[80.59685,16.7902],[80.58879,16.78532],[80.58716,16.78225],[80.58495,16.78355],[80.57687,16.77715],[80.57024,16.76801],[80.55158,16.77501],[80.52619,16.77459],[80.50439,16.77869],[80.49405,16.78369],[80.4863,16.79111],[80.46445,16.79545],[80.46383,16.80536],[80.46614,16.81635],[80.46424,16.81998],[80.46016,16.82004],[80.45327,16.82301],[80.45007,16.82723],[80.44141,16.83078],[80.44088,16.83427],[80.4382,16.83425],[80.4344,16.83743],[80.42859,16.83812],[80.42971,16.84673],[80.42794,16.84688],[80.42771,16.8498],[80.41212,16.8519],[80.38526,16.86329],[80.38413,16.86525],[80.37883,16.86156],[80.38278,16.8549],[80.37837,16.85199],[80.38347,16.85003],[80.4078,16.84823],[80.40422,16.83205],[80.39971,16.83355],[80.39668,16.8275],[80.39237,16.82793],[80.39084,16.82474],[80.38607,16.8249],[80.38733,16.81896],[80.38601,16.81625],[80.38317,16.81581],[80.38043,16.81745],[80.3737,16.82823],[80.37961,16.84108],[80.37339,16.8395],[80.37407,16.85239],[80.34938,16.85912],[80.3409,16.8597],[80.34401,16.87437],[80.3217,16.87963],[80.32497,16.90033],[80.32381,16.90643],[80.31561,16.9155],[80.31159,16.91666],[80.31387,16.92483],[80.31309,16.94053],[80.31647,16.94844],[80.30502,16.9537],[80.30659,16.97379],[80.29352,16.97666],[80.29027,16.98108],[80.29436,16.99383],[80.29359,16.99633],[80.28266,17.00767],[80.27047,17.00399],[80.2669,17.00134],[80.26488,16.99724],[80.25686,16.99893],[80.25607,17.0011],[80.2404,17.00215],[80.24007,17.00512],[80.22616,17.01532],[80.22287,17.00784],[80.21143,17.01027],[80.20206,17.01703],[80.19958,17.02649],[80.20409,17.03829],[80.19645,17.04403],[80.192,17.03354],[80.19263,17.02675],[80.18729,17.01995],[80.18038,17.01902],[80.17773,17.0166],[80.17017,17.01683],[80.16776,17.00559],[80.16202,17.00494],[80.15729,17.00741],[80.15336,17.00694],[80.14637,17.00026],[80.14024,16.99059],[80.12786,16.99227],[80.12048,16.99122],[80.1204,16.98789],[80.10963,16.98721],[80.10255,16.99096],[80.09516,16.99065],[80.09411,16.97558],[80.09156,16.96832],[80.08338,16.97018],[80.05544,16.97142],[80.05743,16.96404],[80.05245,16.95987],[80.04822,16.94943],[80.0519,16.9421],[80.0504,16.93598],[80.04455,16.92926],[80.03955,16.91707],[80.03751,16.91856],[80.03145,16.91688],[80.02706,16.91754],[80.02456,16.91506],[80.01738,16.91497],[80.01242,16.89268],[80.00458,16.88105],[80.00508,16.87645],[80.00156,16.86769],[79.99876,16.86521],[80.00363,16.8639],[80.00395,16.86179],[80.01704,16.85423],[80.02901,16.85202],[80.04684,16.85334],[80.0464,16.83868],[80.04785,16.8337],[80.0595,16.82519],[80.07079,16.8213],[80.07195,16.81713],[80.10144,16.82222],[80.11457,16.82151],[80.11728,16.8196],[80.13041,16.7966],[80.13287,16.7664],[80.14249,16.74336],[80.14402,16.72508],[80.14767,16.72403],[80.14651,16.71645],[80.14399,16.71602],[80.14267,16.70957],[80.14091,16.70962],[80.14075,16.70796],[80.14933,16.68826],[80.13587,16.66668],[80.13931,16.65298],[80.14156,16.6509],[80.15169,16.64561],[80.16941,16.64084],[80.1839,16.64176],[80.21041,16.62685],[80.23992,16.61361],[80.25287,16.61064],[80.26512,16.61157],[80.3155,16.60918],[80.3311,16.61141],[80.36483,16.59202],[80.36746,16.58747],[80.40267,16.58527],[80.4235,16.58871],[80.46822,16.58908],[80.48068,16.58601],[80.49853,16.5791],[80.5288,16.56256],[80.53951,16.55215],[80.55456,16.54151],[80.55521,16.53282],[80.58341,16.51781],[80.58461,16.51982],[80.59171,16.51513],[80.59085,16.5124],[80.61493,16.50246],[80.63605,16.49041],[80.66472,16.4721],[80.66955,16.46655],[80.67055,16.4653],[80.66391,16.45465],[80.66296,16.44955],[80.66607,16.44061],[80.67471,16.44243],[80.67423,16.42447],[80.70661,16.40025],[80.72564,16.3805],[80.7376,16.35377],[80.74085,16.34163],[80.7485,16.32967],[80.78532,16.28923],[80.79891,16.28267],[80.79959,16.27317],[80.80428,16.25458],[80.80255,16.24095],[80.80458,16.2396],[80.81266,16.24138],[80.81736,16.24078],[80.82031,16.2179],[80.84118,16.21549],[80.83427,16.20422],[80.82819,16.19886],[80.83981,16.17351],[80.84875,16.16186],[80.85329,16.15037],[80.85721,16.14623],[80.85862,16.13913],[80.86354,16.1326],[80.86364,16.12711],[80.85424,16.11057],[80.85508,16.10357],[80.86777,16.1054],[80.86631,16.09096],[80.87235,16.08922],[80.87551,16.07959],[80.87367,16.07885],[80.87522,16.06996],[80.87148,16.06974],[80.87148,16.06834],[80.88098,16.06744],[80.88181,16.0616],[80.88036,16.06038],[80.88033,16.05396],[80.87679,16.05279],[80.88765,16.02168],[80.89138,16.00079],[80.89017,15.98408],[80.8927,15.96953],[80.89024,15.96075],[80.89668,15.96505],[80.89652,15.95393],[80.89807,15.95378],[80.89689,15.94322],[80.89853,15.94171],[80.89874,15.93518],[80.89494,15.92274],[80.90324,15.91704],[80.89718,15.88833],[80.88633,15.85613],[80.88077,15.85689],[80.87268,15.84597],[80.86244,15.82474],[80.86168,15.80911],[80.85599,15.8066],[80.83875,15.76422],[80.83222,15.74175],[80.83421,15.7128],[80.83326,15.70857],[80.83044,15.70613],[80.8461,15.70554],[80.86963,15.70891],[80.92574,15.71872],[80.932,15.72368],[80.93484,15.71754],[80.93466,15.71448],[80.93722,15.7144],[80.96208,15.72707],[80.96237,15.73357],[80.96427,15.73417],[80.96706,15.73164],[80.9715,15.73269],[81.00846,15.75293],[81.01015,15.7565],[81.00951,15.76184],[81.00425,15.76047],[81.00598,15.75865],[81.00478,15.75677],[80.99932,15.75887],[80.99845,15.76969],[81.00496,15.76574],[81.01194,15.76599],[81.01445,15.77127],[81.00969,15.78085],[81.00912,15.78864],[81.00725,15.79006],[81.00905,15.79461],[81.00824,15.79741],[81.01134,15.80152],[81.01604,15.79784],[81.01863,15.7922],[81.02056,15.79301],[81.01698,15.80729],[81.01294,15.81333],[81.00718,15.81667],[81.00578,15.82815],[81.0034,15.83417],[81.00477,15.8378],[81.01219,15.84542],[81.01491,15.85057],[81.04082,15.87459],[81.05664,15.89416],[81.05537,15.89721],[81.05812,15.89678],[81.0715,15.91111],[81.10872,15.94538],[81.13255,15.96208],[81.13486,15.9647],[81.13344,15.96977],[81.13485,15.97216],[81.14144,15.96875],[81.14805,15.9737],[81.14837,15.97907],[81.14518,15.98679],[81.14272,15.99941],[81.14408,16.00059],[81.14758,16.01937],[81.16518,16.05325],[81.17787,16.07407],[81.19137,16.10282],[81.19764,16.12344],[81.20149,16.14393],[81.20015,16.14454],[81.20239,16.14692],[81.20266,16.15687],[81.20445,16.15831],[81.20613,16.17127],[81.20928,16.18089],[81.20844,16.18582],[81.20636,16.18578],[81.21022,16.19277],[81.21376,16.20722],[81.23154,16.23743],[81.24804,16.25784],[81.24619,16.25887],[81.24875,16.25856],[81.26373,16.27344],[81.26506,16.27814],[81.27,16.27907],[81.31443,16.30894],[81.34705,16.32437],[81.39072,16.3396],[81.39379,16.34247],[81.39856,16.34045],[81.42805,16.34715],[81.48366,16.35313],[81.48724,16.35507],[81.49139,16.35274],[81.51031,16.35351],[81.53259,16.3522],[81.53754,16.35147],[81.54029,16.34751],[81.55213,16.34598],[81.55463,16.35473],[81.55211,16.36771],[81.54675,16.37797],[81.52305,16.38067],[81.51277,16.36997],[81.49484,16.36987],[81.48833,16.37306],[81.48045,16.38772],[81.47247,16.39351],[81.46999,16.39818],[81.46281,16.39846],[81.45665,16.40383],[81.45275,16.40477],[81.4423,16.39822],[81.43706,16.39851],[81.42972,16.40932],[81.42691,16.41083],[81.42589,16.41905],[81.42261,16.42044],[81.41564,16.419],[81.41205,16.42016],[81.39983,16.43031],[81.39921,16.4337],[81.40096,16.4389],[81.39144,16.43995],[81.38919,16.44248],[81.38441,16.44325],[81.38846,16.4461],[81.38279,16.44832],[81.37324,16.45874],[81.37857,16.46705],[81.37275,16.47412],[81.36899,16.47535],[81.36792,16.48353],[81.37197,16.49465],[81.37077,16.4994],[81.36535,16.50076],[81.36291,16.50703],[81.3569,16.50727],[81.35081,16.50513],[81.34567,16.50707],[81.34269,16.50454],[81.33842,16.50489],[81.33283,16.51015],[81.33441,16.513],[81.33904,16.51286],[81.33779,16.5177],[81.33957,16.52716],[81.34367,16.53027],[81.34265,16.53836],[81.3449,16.5493],[81.34738,16.55317],[81.34615,16.55936],[81.34901,16.56481],[81.34844,16.57073],[81.34628,16.57454],[81.34798,16.58057],[81.34634,16.584],[81.34757,16.58733],[81.34625,16.59107],[81.34814,16.59225],[81.35333,16.59165],[81.35362,16.59405],[81.35063,16.59712],[81.35739,16.59613],[81.35736,16.59825],[81.35454,16.61026],[81.34887,16.60856],[81.34531,16.60387],[81.3426,16.60831],[81.33689,16.61041],[81.32767,16.61934],[81.32634,16.62585],[81.33022,16.63492],[81.331,16.65412],[81.3338,16.6703],[81.33292,16.67994],[81.32896,16.68889],[81.30736,16.69245],[81.29327,16.67149],[81.27974,16.65664],[81.27356,16.62156],[81.26538,16.60647],[81.24974,16.59733],[81.23759,16.59226],[81.23776,16.58587],[81.24212,16.57592],[81.23652,16.56977],[81.23406,16.57441],[81.22914,16.57253],[81.22822,16.57352],[81.20776,16.59656],[81.2009,16.61247],[81.19202,16.61753],[81.18905,16.62124],[81.17897,16.61792],[81.17269,16.61747],[81.16753,16.61951],[81.16077,16.60666],[81.15154,16.59458],[81.14232,16.59808],[81.1402,16.60498],[81.13705,16.60661],[81.12862,16.59864],[81.12355,16.59943],[81.11566,16.59227],[81.10182,16.60145],[81.10087,16.60529],[81.08914,16.60527],[81.08664,16.59906],[81.08692,16.59231],[81.09217,16.59257],[81.09494,16.58726],[81.07882,16.57484],[81.07198,16.57597],[81.06267,16.57044],[81.04854,16.56973],[81.04011,16.56594],[81.03988,16.56158],[81.03599,16.56408],[81.02779,16.56197],[81.0251,16.56069],[81.02528,16.55887],[81.02248,16.55666],[81.01928,16.55744],[81.01857,16.5617],[81.01148,16.56012],[81.00639,16.5861],[81.00137,16.58829],[81.00104,16.59537],[80.99626,16.59841],[80.9784,16.62228],[80.97295,16.62624],[80.97382,16.63119],[80.96978,16.64042],[80.96947,16.64644],[80.95409,16.66522],[80.95435,16.67139],[80.9634,16.67017],[80.97154,16.66683],[80.97258,16.66503],[80.97599,16.66503],[80.979,16.65683],[80.9882,16.64461],[80.99549,16.638],[80.9955,16.63552],[80.99845,16.63586],[80.99975,16.63394],[81.00408,16.63336],[81.00881,16.6338],[81.01114,16.6363],[81.01861,16.65015],[81.01139,16.65688],[80.99874,16.66457],[81.00735,16.67208],[80.98988,16.68128],[80.98892,16.69043],[80.98413,16.70211],[80.98152,16.72323],[80.98939,16.72166],[80.99332,16.72708],[81.00076,16.75215],[81.01025,16.7689],[81.01419,16.7696],[81.01734,16.77673],[81.02721,16.77622],[81.03229,16.78247],[81.03655,16.78252],[81.04282,16.78518],[81.04111,16.79594],[81.03687,16.80766],[81.0334,16.80521],[81.02466,16.80754],[81.01962,16.81311],[81.01644,16.82111],[81.00877,16.82063],[80.99617,16.82765],[80.99789,16.83739],[80.97828,16.8821],[80.97491,16.89535],[80.96801,16.89866],[80.96588,16.90581],[80.96104,16.9118],[80.96238,16.9202],[80.95782,16.92441],[80.9562,16.93566],[80.94793,16.94793],[80.94323,16.94884],[80.94254,16.95297],[80.93941,16.95677],[80.93507,16.95863],[80.93796,16.97167],[80.93628,16.97541],[80.93657,16.98324],[80.95218,16.99137],[80.95211,16.99762],[80.9597,17.01169],[80.95958,17.02122],[80.96411,17.03277],[80.96337,17.03897],[80.9585,17.05136],[80.9498,17.05714],[80.94313,17.067],[80.93338,17.06754],[80.92851,17.07109],[80.91855,17.06445],[80.91457,17.06638],[80.90874,17.06619],[80.90629,17.06969],[80.90351,17.06616],[80.89662,17.06421],[80.88801,17.06747],[80.88557,17.07091],[80.88131,17.06887],[80.87548,17.07098],[80.87149,17.06984],[80.86551,17.05856],[80.85911,17.05261],[80.85526,17.0459],[80.84531,17.03997],[80.84079,17.04671],[80.82882,17.05277],[80.81041,17.05532],[80.79874,17.06124],[80.79046,17.06346],[80.76498,17.06661],[80.75089,17.07262],[80.74647,17.07777],[80.74465,17.07694],[80.73888,17.07959],[80.7368,17.07769],[80.71058,17.08188],[80.70536,17.08078],[80.69945,17.08379],[80.69621,17.07972],[80.69725,17.07669],[80.69348,17.07358],[80.67967,17.07203],[80.6764,17.07075],[80.67347,17.06664],[80.67107,17.07004],[80.6664,17.06748],[80.65591,17.068],[80.64992,17.07137],[80.65709,17.08956],[80.65889,17.09156],[80.66805,17.09493],[80.67055,17.10119],[80.6656,17.10512],[80.64924,17.11136],[80.64204,17.1159],[80.64548,17.12352],[80.63688,17.12837],[80.6279,17.1299],[80.61944,17.12805],[80.61567,17.13213]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"511","area_level":"District","area_name":"Kurnool","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.89116,16.08449],[78.88905,16.08519],[78.88698,16.09848],[78.87939,16.11761],[78.87651,16.13553],[78.87288,16.14326],[78.86679,16.14645],[78.8547,16.14881],[78.83467,16.14516],[78.83284,16.14195],[78.83304,16.13732],[78.83925,16.11355],[78.84262,16.09017],[78.84171,16.0826],[78.83706,16.07037],[78.82765,16.06082],[78.8194,16.0483],[78.80121,16.03776],[78.79606,16.0284],[78.79071,16.02357],[78.76719,16.0166],[78.751,16.01573],[78.74091,16.00866],[78.7355,16.00815],[78.72357,16.02012],[78.69937,16.02715],[78.68119,16.03479],[78.67262,16.04587],[78.66814,16.0545],[78.65042,16.07199],[78.65022,16.07881],[78.62724,16.08764],[78.60996,16.08713],[78.60163,16.08393],[78.59625,16.07797],[78.59239,16.0691],[78.58694,16.06344],[78.55763,16.04497],[78.55176,16.0428],[78.54205,16.04417],[78.52292,16.05369],[78.49865,16.05997],[78.47477,16.0685],[78.44111,16.07443],[78.43451,16.0712],[78.41283,16.075],[78.40519,16.07399],[78.40145,16.07201],[78.39763,16.06613],[78.38706,16.06563],[78.3836,16.06407],[78.36542,16.04678],[78.36197,16.0458],[78.34773,16.04747],[78.32656,16.03674],[78.32208,16.02868],[78.32193,16.01711],[78.31226,16.01151],[78.29942,16.01154],[78.27719,16.02432],[78.26698,16.02715],[78.26086,16.02582],[78.25749,16.02135],[78.25551,16.01285],[78.25982,15.99556],[78.25126,15.97681],[78.25333,15.96633],[78.25208,15.95383],[78.25362,15.94254],[78.25162,15.93522],[78.23214,15.92399],[78.20451,15.91798],[78.18443,15.90982],[78.17944,15.90193],[78.18993,15.89227],[78.18661,15.88481],[78.17667,15.87676],[78.17534,15.85808],[78.16679,15.85463],[78.15877,15.85376],[78.13554,15.8547],[78.13007,15.8507],[78.13428,15.84402],[78.134,15.83626],[78.13011,15.83809],[78.12332,15.83671],[78.11123,15.83836],[78.09879,15.83601],[78.08355,15.84092],[78.08488,15.84506],[78.07511,15.84718],[78.07136,15.85037],[78.07152,15.86175],[78.05583,15.86633],[78.05621,15.87465],[78.04682,15.8749],[78.04494,15.90414],[78.03189,15.90735],[78.031,15.90296],[78.02551,15.90236],[78.01503,15.87599],[78.0088,15.86478],[78.00886,15.86175],[77.99696,15.86632],[77.97533,15.88334],[77.94905,15.88476],[77.93696,15.8835],[77.88798,15.90608],[77.87822,15.90522],[77.87005,15.89724],[77.86232,15.88636],[77.85851,15.88371],[77.84597,15.88212],[77.83873,15.88509],[77.81983,15.87783],[77.80352,15.87413],[77.79292,15.87648],[77.78236,15.87617],[77.77723,15.88077],[77.76687,15.88614],[77.76079,15.88462],[77.74405,15.8861],[77.73881,15.88803],[77.73133,15.8937],[77.7241,15.89581],[77.71273,15.89452],[77.69275,15.88331],[77.6592,15.8855],[77.63647,15.89606],[77.62505,15.90904],[77.61139,15.91793],[77.59504,15.91185],[77.58966,15.9129],[77.58081,15.91848],[77.54898,15.91912],[77.53246,15.92409],[77.51493,15.92618],[77.49874,15.93318],[77.466,15.9345],[77.4296,15.94906],[77.42257,15.94749],[77.41434,15.94203],[77.39769,15.94448],[77.3901,15.9415],[77.37948,15.9398],[77.36125,15.94942],[77.34814,15.95132],[77.32406,15.95016],[77.31143,15.9534],[77.30107,15.958],[77.28468,15.95381],[77.24887,15.96456],[77.23547,15.95714],[77.21859,15.95795],[77.20495,15.95504],[77.18529,15.95674],[77.17409,15.95077],[77.15507,15.95003],[77.14314,15.9447],[77.13585,15.93758],[77.10255,15.92872],[77.07244,15.91026],[77.06256,15.89678],[77.05589,15.88154],[77.03369,15.85889],[77.02519,15.83751],[77.03585,15.82955],[77.04069,15.83274],[77.04256,15.82884],[77.04766,15.83004],[77.04809,15.82797],[77.05098,15.8304],[77.05344,15.82884],[77.05888,15.82999],[77.0652,15.82819],[77.06373,15.80319],[77.06712,15.80269],[77.06717,15.78774],[77.06641,15.78505],[77.06094,15.78626],[77.05695,15.7687],[77.05231,15.76987],[77.05106,15.76452],[77.05646,15.76283],[77.05431,15.75617],[77.04799,15.75622],[77.04594,15.74036],[77.04938,15.74004],[77.0491,15.73026],[77.07969,15.72751],[77.07887,15.71625],[77.08741,15.71549],[77.08257,15.6987],[77.08064,15.69853],[77.07869,15.69514],[77.09379,15.69038],[77.09503,15.68836],[77.10923,15.68146],[77.10928,15.67988],[77.1142,15.67798],[77.11339,15.67569],[77.12137,15.67109],[77.12014,15.66761],[77.12888,15.66586],[77.12142,15.63108],[77.11564,15.63251],[77.10832,15.63783],[77.10625,15.63744],[77.10747,15.64003],[77.1034,15.64284],[77.10136,15.6485],[77.09095,15.65339],[77.087,15.65763],[77.08319,15.65915],[77.07173,15.64665],[77.04599,15.63864],[77.03432,15.6368],[77.03412,15.63456],[77.03043,15.63449],[77.03007,15.62683],[77.03146,15.62683],[77.03111,15.62099],[77.03272,15.62063],[77.0313,15.61159],[77.03291,15.60498],[77.02624,15.58174],[77.03132,15.54408],[77.03136,15.50709],[77.03004,15.50265],[77.02884,15.50046],[77.02279,15.50224],[77.01479,15.50183],[77.00946,15.50461],[76.99233,15.50579],[76.97453,15.51051],[76.97459,15.49563],[76.97825,15.48879],[76.99121,15.4829],[76.9973,15.47801],[77.01077,15.44874],[77.0275,15.43974],[77.03217,15.43491],[77.03484,15.43029],[77.03383,15.41894],[77.05658,15.41968],[77.06662,15.41644],[77.06429,15.40561],[77.10489,15.41305],[77.11296,15.41785],[77.11449,15.4173],[77.11361,15.41914],[77.11656,15.42205],[77.12018,15.42297],[77.121,15.42493],[77.12596,15.42447],[77.13053,15.42644],[77.13362,15.42216],[77.13861,15.422],[77.14234,15.41843],[77.15499,15.41403],[77.15547,15.41286],[77.15357,15.41263],[77.15392,15.40885],[77.15732,15.40521],[77.16587,15.40858],[77.16773,15.40427],[77.17267,15.4033],[77.17408,15.40123],[77.17575,15.40464],[77.17872,15.40368],[77.17901,15.39759],[77.17181,15.37083],[77.16301,15.35713],[77.16749,15.35649],[77.17032,15.35479],[77.16956,15.35253],[77.18294,15.34613],[77.18165,15.33867],[77.20282,15.33117],[77.20325,15.31787],[77.20578,15.31676],[77.20496,15.30912],[77.2042,15.30557],[77.19625,15.29464],[77.19578,15.28596],[77.21231,15.28593],[77.20852,15.24688],[77.23223,15.24553],[77.22999,15.21785],[77.21959,15.21826],[77.21777,15.20735],[77.21244,15.19301],[77.20919,15.19265],[77.20791,15.18634],[77.21484,15.18391],[77.22149,15.17629],[77.21797,15.17541],[77.21488,15.1542],[77.21325,15.15156],[77.22027,15.15042],[77.22019,15.14809],[77.22948,15.14571],[77.22982,15.14376],[77.24669,15.14487],[77.26413,15.14267],[77.27111,15.13072],[77.28264,15.13195],[77.29183,15.1309],[77.29975,15.15411],[77.31004,15.15437],[77.31638,15.17741],[77.33081,15.17456],[77.33422,15.17639],[77.35147,15.17753],[77.3515,15.1812],[77.35002,15.18157],[77.35361,15.19796],[77.3546,15.20101],[77.35725,15.20068],[77.36213,15.2127],[77.36301,15.2229],[77.38361,15.22039],[77.3903,15.2172],[77.39498,15.21708],[77.39742,15.21901],[77.39866,15.21738],[77.40631,15.21908],[77.40895,15.2254],[77.41354,15.22372],[77.42598,15.22312],[77.42853,15.22077],[77.43298,15.22042],[77.43415,15.21016],[77.45022,15.20501],[77.44638,15.21354],[77.45029,15.21481],[77.45114,15.22182],[77.45939,15.2177],[77.46713,15.21743],[77.48104,15.20791],[77.48341,15.2087],[77.48561,15.21326],[77.49653,15.21546],[77.4983,15.22],[77.50165,15.22136],[77.50939,15.22334],[77.52704,15.22396],[77.54161,15.20891],[77.5664,15.20299],[77.57292,15.1974],[77.5755,15.1994],[77.57477,15.1954],[77.58216,15.1879],[77.59551,15.18356],[77.6114,15.18349],[77.6104,15.19556],[77.61571,15.20319],[77.61541,15.20644],[77.61829,15.20476],[77.62335,15.20476],[77.62572,15.20702],[77.63514,15.20701],[77.63766,15.22188],[77.64975,15.22502],[77.64873,15.22995],[77.65162,15.23264],[77.65644,15.2314],[77.66398,15.2342],[77.66587,15.23243],[77.67003,15.23275],[77.67543,15.23022],[77.67717,15.22805],[77.6765,15.22087],[77.6788,15.21705],[77.68182,15.21423],[77.68874,15.21348],[77.68802,15.20924],[77.69097,15.20699],[77.6961,15.20737],[77.69781,15.20584],[77.69865,15.20042],[77.69532,15.19493],[77.69305,15.18398],[77.69552,15.18187],[77.70256,15.18012],[77.70927,15.18413],[77.71011,15.18704],[77.71173,15.18675],[77.71455,15.18041],[77.71731,15.17924],[77.71646,15.17238],[77.73325,15.16861],[77.7304,15.16415],[77.72983,15.15183],[77.73514,15.14689],[77.74302,15.14498],[77.74223,15.14379],[77.7466,15.14097],[77.74802,15.13036],[77.75414,15.12777],[77.77402,15.1242],[77.77078,15.11391],[77.77936,15.11054],[77.78159,15.11331],[77.78473,15.113],[77.78871,15.10699],[77.7917,15.10612],[77.79633,15.11891],[77.80398,15.12233],[77.81118,15.12858],[77.8098,15.1352],[77.81568,15.14285],[77.83884,15.14487],[77.84272,15.12957],[77.85437,15.13511],[77.87544,15.13516],[77.87562,15.13948],[77.88126,15.1496],[77.88065,15.16243],[77.88516,15.17131],[77.88378,15.17502],[77.88464,15.17856],[77.89715,15.1771],[77.90464,15.17791],[77.90664,15.17574],[77.91629,15.17295],[77.91927,15.17401],[77.91816,15.16984],[77.92304,15.16414],[77.92102,15.16222],[77.92358,15.16147],[77.92346,15.15793],[77.92052,15.15588],[77.92043,15.15304],[77.92466,15.15248],[77.92438,15.14831],[77.91369,15.14439],[77.91397,15.1418],[77.90942,15.13952],[77.90871,15.13824],[77.91136,15.13559],[77.90859,15.13364],[77.91476,15.13199],[77.91497,15.12888],[77.90706,15.13063],[77.9057,15.12908],[77.90629,15.12261],[77.91198,15.12314],[77.91748,15.1206],[77.92025,15.11721],[77.9259,15.11619],[77.93273,15.11237],[77.93647,15.11457],[77.96126,15.10863],[77.96412,15.11535],[77.9647,15.12264],[77.9744,15.13888],[77.99323,15.13315],[77.99696,15.12437],[78.00201,15.12168],[78.00643,15.12246],[78.00819,15.11801],[78.013,15.1146],[78.01412,15.11188],[78.01367,15.10212],[78.00652,15.09409],[78.00566,15.08179],[78.00344,15.08033],[77.99869,15.08248],[77.99759,15.08131],[77.99595,15.07681],[77.99854,15.07216],[77.99505,15.06392],[78.00074,15.05887],[78.00448,15.05294],[78.01057,15.05079],[78.00936,15.04612],[78.01132,15.02704],[78.02159,15.01686],[78.02662,15.01637],[78.02632,15.01137],[78.03202,15.00497],[78.03392,14.99947],[78.05467,14.99206],[78.05697,15.00077],[78.0599,15.00303],[78.06552,14.995],[78.08232,14.98626],[78.08534,14.98283],[78.08852,14.98222],[78.08728,14.97216],[78.09834,14.96757],[78.11681,14.9665],[78.12058,14.96453],[78.12493,14.96458],[78.12574,14.96232],[78.13378,14.96122],[78.13685,14.9477],[78.15134,14.94859],[78.15328,14.95961],[78.15674,14.96197],[78.16773,14.96394],[78.17991,14.96417],[78.21047,14.95205],[78.22033,14.95512],[78.22442,14.97748],[78.23008,14.98685],[78.23577,15.00325],[78.24384,14.99919],[78.2561,15.0223],[78.26,15.02653],[78.27779,15.02808],[78.28368,15.03098],[78.28345,15.03768],[78.27941,15.04089],[78.27839,15.04848],[78.27482,15.05384],[78.27496,15.05796],[78.28446,15.07057],[78.29281,15.07324],[78.30193,15.07362],[78.31375,15.06868],[78.32517,15.07319],[78.33272,15.06626],[78.35455,15.06178],[78.35333,15.05442],[78.36362,15.05195],[78.37096,15.07163],[78.38268,15.0692],[78.37798,15.05634],[78.39977,15.04856],[78.38485,15.03892],[78.37552,15.03601],[78.36955,15.02604],[78.36579,15.0288],[78.35312,15.03093],[78.35017,15.02495],[78.34961,15.01533],[78.3427,15.00277],[78.35921,14.9855],[78.36414,14.98395],[78.38716,14.96938],[78.3921,14.96797],[78.39296,14.97016],[78.3981,14.96899],[78.40093,14.97268],[78.40964,14.97263],[78.41269,14.98959],[78.41358,15.01069],[78.41928,15.03142],[78.42904,15.0336],[78.43611,15.03224],[78.43664,15.03642],[78.43857,15.03669],[78.43865,15.03355],[78.44427,15.03402],[78.44478,15.0317],[78.45716,15.03071],[78.45837,15.03361],[78.46127,15.03331],[78.46154,15.03471],[78.45935,15.03491],[78.46165,15.03901],[78.46567,15.03885],[78.46549,15.03637],[78.46687,15.03629],[78.46788,15.0397],[78.4679,15.03843],[78.47074,15.03827],[78.47053,15.03561],[78.4742,15.03535],[78.47639,15.03627],[78.47549,15.03748],[78.47953,15.03898],[78.47998,15.04252],[78.48241,15.04287],[78.48472,15.0408],[78.48395,15.03675],[78.4852,15.03656],[78.48583,15.04168],[78.48818,15.04076],[78.48859,15.04239],[78.48619,15.04296],[78.48738,15.04998],[78.4812,15.05028],[78.48138,15.05248],[78.47858,15.05352],[78.47947,15.0578],[78.47768,15.05809],[78.47801,15.06108],[78.47379,15.06267],[78.48124,15.06315],[78.48153,15.07107],[78.48697,15.07203],[78.5055,15.06974],[78.50818,15.06744],[78.50776,15.06464],[78.51555,15.06045],[78.51212,15.04001],[78.51317,15.02125],[78.51354,15.01879],[78.51522,15.01869],[78.51527,15.01337],[78.50831,15.00493],[78.51572,15.00236],[78.51498,14.99767],[78.51655,14.99657],[78.51277,14.97701],[78.50482,14.95451],[78.49815,14.95547],[78.49031,14.93366],[78.48295,14.92228],[78.47724,14.9022],[78.48516,14.90042],[78.49776,14.92155],[78.50441,14.92582],[78.51129,14.93533],[78.51963,14.94305],[78.51651,14.94599],[78.51951,14.95366],[78.52293,14.95196],[78.52811,14.9601],[78.53719,14.96081],[78.53803,14.96392],[78.54011,14.96486],[78.5514,14.96129],[78.54687,14.94166],[78.54682,14.93271],[78.55312,14.93033],[78.56245,14.93079],[78.56673,14.93336],[78.56708,14.93567],[78.5744,14.93799],[78.57755,14.94371],[78.58201,14.94589],[78.59179,14.93895],[78.59631,14.95052],[78.60129,14.9543],[78.60543,14.9536],[78.60511,14.95148],[78.60999,14.94929],[78.6097,14.9481],[78.62519,14.94675],[78.63031,14.94432],[78.63198,14.93856],[78.62998,14.92551],[78.64259,14.92685],[78.64233,14.92802],[78.65371,14.93005],[78.66168,14.93018],[78.66441,14.93161],[78.66593,14.93505],[78.67289,14.93675],[78.67552,14.93535],[78.68448,14.93849],[78.68823,14.96096],[78.69127,14.9644],[78.69164,14.96798],[78.71796,14.96857],[78.71538,15.00098],[78.75223,15.03671],[78.76162,15.05436],[78.76225,15.05876],[78.75756,15.06249],[78.75883,15.06538],[78.75502,15.07557],[78.76028,15.07956],[78.75135,15.10108],[78.75295,15.12983],[78.75,15.13435],[78.75321,15.14192],[78.75327,15.15828],[78.75826,15.18465],[78.74216,15.18161],[78.73689,15.19982],[78.73674,15.24287],[78.73845,15.25075],[78.73904,15.26848],[78.73836,15.31843],[78.73655,15.32615],[78.74196,15.35192],[78.74794,15.36848],[78.76081,15.39386],[78.77126,15.41979],[78.76927,15.4649],[78.77666,15.5333],[78.76942,15.62577],[78.77141,15.66442],[78.80977,15.86724],[78.83633,15.90569],[78.86201,15.93001],[78.91076,15.96764],[78.93096,16.09329],[78.92264,16.12658],[78.92129,16.10277],[78.90611,16.09483],[78.8956,16.08558],[78.89116,16.08449]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"512","area_level":"District","area_name":"Mahabubnagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.15333,17.0127],[78.14662,17.01341],[78.13581,17.00732],[78.13634,16.99298],[78.12671,16.99416],[78.12477,16.98637],[78.11966,16.98292],[78.11437,16.98622],[78.10839,16.98281],[78.10027,16.98247],[78.09976,16.98413],[78.09517,16.98439],[78.09211,16.98317],[78.08923,16.98574],[78.0851,16.9963],[78.07485,17.00071],[78.06832,17.00542],[78.05778,17.00101],[78.03803,17.00944],[78.0306,17.01079],[78.021,17.00904],[78.01192,17.00326],[78.00978,17.00069],[78.00876,16.99014],[78.0138,16.9863],[78.01263,16.98133],[78.01053,16.97831],[77.99969,16.97971],[77.9952,16.96372],[77.98784,16.96188],[77.98546,16.95966],[77.98775,16.95298],[77.99405,16.94921],[77.99869,16.95239],[78.0108,16.94964],[78.01215,16.94329],[78.00841,16.94386],[78.00455,16.93591],[78.00722,16.93389],[78.00892,16.92824],[78.01117,16.90915],[78.00862,16.90247],[77.99963,16.89893],[77.99235,16.89986],[77.98798,16.89881],[77.98152,16.89324],[77.98018,16.87968],[77.97846,16.87654],[77.98324,16.87264],[77.99037,16.87061],[77.98704,16.85953],[77.97743,16.84682],[77.96694,16.85014],[77.95945,16.86294],[77.95481,16.86828],[77.94818,16.87181],[77.94276,16.88236],[77.93631,16.88849],[77.93178,16.90678],[77.92142,16.91401],[77.91464,16.92102],[77.90325,16.9262],[77.88973,16.92462],[77.87734,16.92863],[77.86955,16.92746],[77.87782,16.94077],[77.88046,16.95124],[77.88417,16.95789],[77.87834,16.96794],[77.87041,16.9676],[77.86721,16.95517],[77.86095,16.95033],[77.85465,16.94913],[77.84904,16.95058],[77.84425,16.95997],[77.84163,16.96079],[77.83715,16.94911],[77.83346,16.94867],[77.82577,16.95325],[77.82462,16.95656],[77.8343,16.98767],[77.82511,16.98689],[77.81344,16.99458],[77.79884,16.99257],[77.79838,16.99891],[77.78703,16.99913],[77.77966,17.0018],[77.76674,17.003],[77.76024,17.00223],[77.75916,16.99325],[77.75539,16.98863],[77.75046,16.97753],[77.75534,16.97629],[77.75583,16.96867],[77.75137,16.96161],[77.75189,16.95757],[77.75033,16.95302],[77.74693,16.95013],[77.74051,16.94857],[77.73641,16.94451],[77.73019,16.94379],[77.73015,16.93925],[77.74031,16.93838],[77.74137,16.92893],[77.74018,16.91986],[77.74597,16.91073],[77.74352,16.90843],[77.74065,16.90118],[77.74208,16.89545],[77.73947,16.88876],[77.7396,16.88346],[77.73148,16.87341],[77.73493,16.8665],[77.73426,16.85999],[77.73001,16.85625],[77.7274,16.85033],[77.73393,16.84127],[77.73985,16.83608],[77.74368,16.8274],[77.74321,16.82445],[77.72952,16.81113],[77.73774,16.80266],[77.74154,16.79307],[77.73533,16.7893],[77.71114,16.79277],[77.70821,16.78321],[77.69448,16.79326],[77.68674,16.79137],[77.68191,16.79239],[77.67939,16.79487],[77.68045,16.78117],[77.67909,16.77728],[77.67437,16.7767],[77.67656,16.76047],[77.67949,16.75665],[77.69681,16.74826],[77.71034,16.75119],[77.72664,16.75136],[77.7452,16.73947],[77.75342,16.72379],[77.74895,16.70395],[77.75167,16.70283],[77.74916,16.69335],[77.75914,16.68834],[77.76464,16.68818],[77.76726,16.68188],[77.76748,16.66821],[77.77349,16.6547],[77.78085,16.6495],[77.78879,16.63906],[77.79652,16.63389],[77.79786,16.63053],[77.79744,16.61992],[77.7989,16.61634],[77.78117,16.61568],[77.78747,16.57442],[77.78544,16.5744],[77.77836,16.5652],[77.75852,16.5654],[77.75482,16.56743],[77.74958,16.5665],[77.74974,16.55009],[77.75097,16.55037],[77.75291,16.54629],[77.75309,16.54221],[77.76065,16.53337],[77.76447,16.52605],[77.76253,16.50322],[77.76745,16.49597],[77.76843,16.48477],[77.76798,16.47969],[77.75939,16.48028],[77.7555,16.47355],[77.74871,16.47412],[77.73941,16.46635],[77.7425,16.45603],[77.74605,16.45134],[77.75043,16.43375],[77.74554,16.41875],[77.75101,16.4036],[77.74916,16.38794],[77.76184,16.39392],[77.75878,16.40925],[77.75556,16.41456],[77.75422,16.42127],[77.76822,16.42266],[77.79341,16.42186],[77.79073,16.41251],[77.79133,16.40921],[77.79683,16.40564],[77.80217,16.39758],[77.81713,16.39144],[77.8318,16.39711],[77.84007,16.39502],[77.85502,16.37189],[77.86266,16.37181],[77.86275,16.38448],[77.86538,16.38901],[77.865,16.39951],[77.87004,16.42131],[77.86346,16.4364],[77.86381,16.44655],[77.89589,16.45113],[77.9005,16.44967],[77.90269,16.44442],[77.91639,16.44238],[77.92394,16.45153],[77.92154,16.46177],[77.91867,16.46515],[77.90689,16.46353],[77.89721,16.4686],[77.89107,16.4748],[77.89331,16.49596],[77.8973,16.5024],[77.8901,16.51612],[77.8942,16.52576],[77.89789,16.52806],[77.92426,16.52068],[77.93404,16.52168],[77.93394,16.5191],[77.9303,16.51828],[77.92876,16.50642],[77.92167,16.49941],[77.92323,16.49276],[77.91866,16.48808],[77.9211,16.48389],[77.93098,16.48196],[77.93485,16.49265],[77.94123,16.50035],[77.96764,16.50051],[77.96812,16.50387],[77.98244,16.5025],[77.985,16.50511],[77.98475,16.50857],[77.98683,16.51122],[77.98489,16.51381],[77.98985,16.51816],[77.99227,16.51559],[77.99476,16.5159],[77.99328,16.51945],[77.99792,16.53101],[78.0072,16.53217],[78.01863,16.52841],[78.02009,16.53309],[78.01388,16.54521],[77.99784,16.55415],[77.99778,16.55768],[78.00408,16.56808],[77.99673,16.58432],[77.99308,16.58642],[77.98891,16.5923],[78.00035,16.59436],[77.99803,16.60044],[77.99995,16.60245],[78.00005,16.60702],[78.00834,16.61538],[78.01218,16.61694],[78.02544,16.61619],[78.03099,16.62173],[78.03805,16.62566],[78.05595,16.62312],[78.05785,16.62621],[78.06269,16.624],[78.06904,16.62452],[78.07018,16.61449],[78.07679,16.60877],[78.1016,16.59796],[78.11607,16.59778],[78.11894,16.59196],[78.12517,16.59145],[78.12741,16.60939],[78.12954,16.61362],[78.13024,16.62575],[78.14088,16.63511],[78.15078,16.64766],[78.14006,16.66081],[78.14029,16.67457],[78.14188,16.67532],[78.14232,16.68145],[78.14446,16.68236],[78.14459,16.68786],[78.15538,16.70074],[78.15806,16.71001],[78.1575,16.71395],[78.16296,16.72887],[78.18315,16.73083],[78.18128,16.71379],[78.18244,16.70369],[78.18814,16.70436],[78.19827,16.701],[78.20814,16.70724],[78.21019,16.71102],[78.21157,16.71068],[78.21346,16.72237],[78.22279,16.73668],[78.22356,16.74131],[78.22977,16.74126],[78.23378,16.73896],[78.23504,16.74204],[78.25947,16.72168],[78.26307,16.71708],[78.26374,16.71273],[78.26713,16.70954],[78.28201,16.70559],[78.29547,16.69678],[78.29823,16.6901],[78.30783,16.68869],[78.31698,16.68453],[78.31971,16.67971],[78.31906,16.67698],[78.32194,16.66832],[78.32913,16.65592],[78.3338,16.65562],[78.34287,16.65827],[78.36616,16.64472],[78.36872,16.6563],[78.3785,16.66063],[78.38294,16.65972],[78.3902,16.66114],[78.39687,16.65879],[78.39927,16.65636],[78.40481,16.65547],[78.40374,16.66544],[78.40491,16.67393],[78.42431,16.68004],[78.42731,16.68815],[78.43033,16.70559],[78.44284,16.70774],[78.44722,16.71517],[78.46437,16.73068],[78.46586,16.73456],[78.4652,16.75216],[78.48699,16.75103],[78.49372,16.75938],[78.48814,16.76813],[78.47433,16.77783],[78.46739,16.77625],[78.46489,16.77387],[78.45295,16.77872],[78.43433,16.77824],[78.42685,16.78822],[78.41321,16.79799],[78.39806,16.79892],[78.39414,16.78995],[78.39096,16.78843],[78.38907,16.78392],[78.38058,16.78629],[78.36672,16.79334],[78.35503,16.7965],[78.35065,16.79115],[78.34792,16.79074],[78.34856,16.78568],[78.34683,16.7842],[78.34469,16.78513],[78.34043,16.79297],[78.33671,16.79422],[78.33327,16.79787],[78.33257,16.80151],[78.33435,16.80723],[78.32287,16.82503],[78.32424,16.83972],[78.32831,16.85144],[78.32047,16.85609],[78.32201,16.85767],[78.31622,16.87434],[78.30493,16.87516],[78.29928,16.87892],[78.30301,16.8799],[78.30409,16.88953],[78.30377,16.90136],[78.30069,16.90857],[78.30156,16.91897],[78.2756,16.92321],[78.27482,16.92447],[78.27185,16.93287],[78.27634,16.95735],[78.26946,16.96477],[78.26439,16.96367],[78.26167,16.96084],[78.24055,16.96348],[78.23385,16.94713],[78.23305,16.94035],[78.21946,16.93878],[78.21125,16.94631],[78.21119,16.95211],[78.20286,16.95393],[78.20102,16.95733],[78.19861,16.95764],[78.19626,16.96117],[78.19121,16.96369],[78.18641,16.97086],[78.18121,16.97342],[78.18156,16.97972],[78.18493,16.98358],[78.18584,16.98828],[78.18311,16.98918],[78.18331,16.99135],[78.17655,16.99753],[78.17409,17.00816],[78.16014,17.01248],[78.15333,17.0127]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"513","area_level":"District","area_name":"Medak","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.21749,18.20708],[78.21526,18.21229],[78.20652,18.21751],[78.195,18.20693],[78.18775,18.20676],[78.18061,18.20454],[78.17868,18.19505],[78.16885,18.16732],[78.17073,18.15664],[78.16929,18.15295],[78.17523,18.14561],[78.17704,18.13847],[78.17981,18.13501],[78.1804,18.12408],[78.17689,18.11829],[78.17992,18.09836],[78.17397,18.09294],[78.1603,18.08641],[78.1541,18.08571],[78.14314,18.06831],[78.13841,18.06877],[78.13442,18.07143],[78.12472,18.06999],[78.1169,18.07266],[78.11516,18.07646],[78.11496,18.08906],[78.11111,18.09258],[78.10634,18.09346],[78.10113,18.09045],[78.0989,18.07399],[78.09716,18.07049],[78.09388,18.06838],[78.08971,18.06834],[78.08535,18.07226],[78.08355,18.06733],[78.07888,18.0688],[78.07669,18.07209],[78.07431,18.07218],[78.07312,18.07022],[78.07429,18.0658],[78.07157,18.05987],[78.06891,18.06216],[78.0689,18.06534],[78.06607,18.06847],[78.06759,18.07015],[78.06408,18.07189],[78.05951,18.07178],[78.05988,18.0751],[78.05544,18.07932],[78.05361,18.07901],[78.05235,18.07361],[78.05057,18.07374],[78.04681,18.07988],[78.04404,18.07971],[78.04403,18.07785],[78.04045,18.07524],[78.04291,18.06916],[78.04508,18.0681],[78.04215,18.06557],[78.03742,18.06945],[78.03444,18.06433],[78.03409,18.06816],[78.03167,18.06882],[78.03274,18.07041],[78.03039,18.07073],[78.02863,18.07377],[78.03274,18.07659],[78.02937,18.08386],[78.02741,18.08164],[78.01987,18.08178],[78.01789,18.08655],[78.01217,18.09015],[78.00905,18.08863],[78.01588,18.07954],[78.01408,18.07842],[78.01427,18.07584],[78.01308,18.07542],[78.01098,18.08111],[78.00912,18.08096],[78.00904,18.08439],[78.00434,18.0877],[78.00185,18.08722],[78.00075,18.08128],[77.99867,18.08386],[77.99868,18.09476],[77.9951,18.10696],[77.98872,18.11086],[77.97566,18.11496],[77.93969,18.11172],[77.93683,18.11002],[77.93215,18.10064],[77.92794,18.09765],[77.91137,18.10001],[77.9066,18.0973],[77.90274,18.09725],[77.89563,18.09224],[77.89543,18.08735],[77.88823,18.07059],[77.87563,18.07446],[77.85134,18.073],[77.85266,18.05087],[77.85789,18.04232],[77.86578,18.02229],[77.87088,18.01709],[77.86944,18.01191],[77.87179,18.00496],[77.87136,18.00178],[77.89129,18.00496],[77.89921,18.00374],[77.90493,18.00069],[77.9029,17.99746],[77.89199,17.99234],[77.88797,17.98472],[77.89113,17.9742],[77.89061,17.96429],[77.8958,17.96367],[77.90668,17.95899],[77.90709,17.94877],[77.90296,17.93758],[77.89967,17.93625],[77.90253,17.91974],[77.89829,17.91061],[77.88396,17.9107],[77.88005,17.91847],[77.86272,17.91665],[77.85503,17.91796],[77.85126,17.91111],[77.85549,17.9111],[77.85616,17.90965],[77.85415,17.90756],[77.86067,17.907],[77.86574,17.90355],[77.86744,17.90006],[77.86605,17.89778],[77.87073,17.89837],[77.87925,17.89596],[77.87797,17.88875],[77.8864,17.88862],[77.88756,17.87932],[77.89043,17.87549],[77.89341,17.87562],[77.89544,17.86944],[77.89474,17.84701],[77.90554,17.84711],[77.91273,17.85716],[77.91793,17.85508],[77.91968,17.8572],[77.92244,17.84959],[77.93166,17.84383],[77.93679,17.84225],[77.95262,17.84189],[77.95403,17.85161],[77.95612,17.8523],[77.95573,17.85609],[77.96574,17.85325],[77.9706,17.85396],[77.97519,17.86691],[77.97224,17.88219],[77.99585,17.88401],[77.99868,17.88751],[78.01411,17.88954],[78.01728,17.88922],[78.03465,17.8785],[78.03998,17.88702],[78.04742,17.89265],[78.04654,17.89751],[78.04859,17.90402],[78.04592,17.91085],[78.0463,17.91392],[78.05313,17.91805],[78.05493,17.91592],[78.06018,17.91715],[78.06177,17.92046],[78.05919,17.92222],[78.06356,17.92464],[78.07187,17.91959],[78.0791,17.90525],[78.07586,17.89742],[78.07426,17.88532],[78.07512,17.88235],[78.07257,17.87738],[78.07337,17.86919],[78.07476,17.86735],[78.09007,17.86402],[78.0944,17.8606],[78.09679,17.84455],[78.09374,17.83257],[78.09782,17.82416],[78.09733,17.81803],[78.10036,17.81309],[78.11075,17.80825],[78.11394,17.80273],[78.12003,17.80064],[78.11906,17.80371],[78.122,17.80709],[78.13146,17.81138],[78.13555,17.8176],[78.13907,17.8317],[78.14847,17.83617],[78.15094,17.83244],[78.1505,17.81607],[78.14779,17.80911],[78.14924,17.80589],[78.16063,17.81527],[78.17466,17.8226],[78.17551,17.82815],[78.18762,17.83059],[78.18071,17.82129],[78.16635,17.81388],[78.16328,17.7977],[78.16589,17.78981],[78.17349,17.78851],[78.1932,17.79783],[78.19605,17.80519],[78.20386,17.80272],[78.19924,17.78045],[78.19561,17.77317],[78.19612,17.76366],[78.19815,17.76274],[78.20441,17.7651],[78.20426,17.75499],[78.19913,17.74608],[78.20143,17.73577],[78.21523,17.74153],[78.21778,17.7388],[78.21811,17.73202],[78.23495,17.73529],[78.2337,17.73108],[78.23687,17.72825],[78.2352,17.72391],[78.22632,17.71469],[78.23803,17.70512],[78.2381,17.70297],[78.22938,17.70203],[78.23175,17.70014],[78.22995,17.69848],[78.2311,17.69163],[78.2483,17.69058],[78.25662,17.69303],[78.2606,17.68966],[78.26453,17.68955],[78.26508,17.68724],[78.26826,17.6891],[78.27373,17.6867],[78.27595,17.6889],[78.27952,17.68654],[78.28159,17.68723],[78.28504,17.6857],[78.29017,17.67735],[78.29741,17.68049],[78.30177,17.67815],[78.3047,17.67768],[78.30524,17.6791],[78.31095,17.67709],[78.30551,17.66743],[78.31962,17.66338],[78.32509,17.67377],[78.32497,17.67683],[78.31978,17.68008],[78.32519,17.70272],[78.32438,17.70427],[78.32217,17.70428],[78.31982,17.71111],[78.31972,17.71607],[78.32389,17.71673],[78.32379,17.72476],[78.32067,17.72121],[78.31805,17.72283],[78.31291,17.73929],[78.31792,17.73982],[78.31808,17.74354],[78.33812,17.74121],[78.35176,17.74373],[78.35183,17.74132],[78.36089,17.73944],[78.36174,17.73765],[78.35981,17.73529],[78.36295,17.73204],[78.36097,17.73144],[78.36426,17.72837],[78.3724,17.72635],[78.37167,17.70901],[78.3738,17.70993],[78.37429,17.70647],[78.38504,17.69995],[78.39628,17.69917],[78.40246,17.70984],[78.40255,17.71622],[78.41637,17.73277],[78.44036,17.72669],[78.44441,17.71682],[78.45003,17.71105],[78.44859,17.70793],[78.45794,17.70522],[78.45981,17.69779],[78.47213,17.69127],[78.47148,17.69004],[78.47997,17.69406],[78.4943,17.69485],[78.49365,17.68816],[78.49643,17.68548],[78.49916,17.68569],[78.50451,17.69449],[78.5042,17.70373],[78.5072,17.71432],[78.50615,17.71931],[78.51445,17.72597],[78.52548,17.7286],[78.52187,17.73913],[78.52558,17.74379],[78.5246,17.74578],[78.52655,17.75067],[78.51299,17.75199],[78.51082,17.7553],[78.51511,17.78567],[78.52027,17.79999],[78.5202,17.80676],[78.52658,17.81253],[78.5292,17.81941],[78.53034,17.83274],[78.54001,17.83637],[78.5422,17.84308],[78.54279,17.8461],[78.53964,17.85372],[78.53913,17.86038],[78.56102,17.87028],[78.56099,17.87699],[78.57774,17.88239],[78.57341,17.901],[78.56991,17.90495],[78.56653,17.90324],[78.55838,17.89296],[78.55194,17.88933],[78.53735,17.88763],[78.53412,17.89189],[78.52425,17.89646],[78.53486,17.90288],[78.53363,17.90462],[78.53521,17.90731],[78.54077,17.9072],[78.54001,17.90984],[78.54339,17.91088],[78.54325,17.91452],[78.54591,17.91498],[78.53596,17.92298],[78.53096,17.92342],[78.52968,17.92488],[78.53103,17.92969],[78.53822,17.93263],[78.54172,17.94123],[78.53874,17.94535],[78.53182,17.94999],[78.53593,17.96423],[78.53585,17.96952],[78.54205,17.97299],[78.54226,17.97958],[78.55729,17.99277],[78.5618,17.99923],[78.56161,18.003],[78.58335,18.0061],[78.5842,18.01354],[78.58782,18.02276],[78.58637,18.03008],[78.56027,18.04515],[78.55329,18.05676],[78.55864,18.06093],[78.56567,18.06016],[78.57212,18.06987],[78.56906,18.07893],[78.57209,18.09047],[78.57634,18.09329],[78.57952,18.10615],[78.57532,18.1098],[78.55831,18.1094],[78.54777,18.11209],[78.54532,18.11644],[78.55062,18.12316],[78.55324,18.14349],[78.56934,18.15729],[78.56669,18.16208],[78.58093,18.1632],[78.58065,18.17315],[78.57387,18.18133],[78.56881,18.18492],[78.56897,18.18015],[78.56457,18.17559],[78.54997,18.17859],[78.54772,18.18118],[78.54449,18.1798],[78.54268,18.18304],[78.54016,18.18267],[78.53677,18.18671],[78.53234,18.18448],[78.52706,18.18556],[78.5219,18.18238],[78.51999,18.17288],[78.51584,18.1664],[78.51209,18.17035],[78.50234,18.17551],[78.49147,18.15554],[78.48378,18.14832],[78.4833,18.14165],[78.49153,18.13565],[78.49152,18.13253],[78.48476,18.13037],[78.47983,18.12605],[78.4718,18.12756],[78.45819,18.12063],[78.44155,18.13008],[78.44629,18.14057],[78.44573,18.14497],[78.441,18.15594],[78.4331,18.16291],[78.42709,18.15652],[78.42477,18.15636],[78.42255,18.15185],[78.42137,18.14123],[78.41187,18.13067],[78.40763,18.12926],[78.40005,18.13097],[78.39661,18.12902],[78.38966,18.12879],[78.38453,18.12345],[78.37508,18.13505],[78.37578,18.14158],[78.3744,18.14462],[78.36318,18.14677],[78.36616,18.15092],[78.36538,18.15476],[78.35781,18.17183],[78.33784,18.18009],[78.33614,18.18289],[78.3373,18.18875],[78.33247,18.1962],[78.31269,18.20235],[78.31381,18.17904],[78.2977,18.1619],[78.29015,18.15861],[78.27779,18.14314],[78.25695,18.13958],[78.24866,18.15541],[78.24157,18.15856],[78.23792,18.16197],[78.2295,18.17064],[78.22751,18.17533],[78.21639,18.17548],[78.22178,18.1826],[78.21749,18.20708]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"514","area_level":"District","area_name":"Nalgonda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.2571,17.36016],[79.2507,17.3588],[79.24934,17.33109],[79.25185,17.32499],[79.24809,17.31543],[79.22893,17.31792],[79.22389,17.31442],[79.21936,17.31382],[79.21913,17.30422],[79.21587,17.28875],[79.20473,17.26887],[79.20501,17.26209],[79.18415,17.2733],[79.18178,17.25936],[79.17887,17.25643],[79.17793,17.25173],[79.17521,17.25146],[79.17568,17.25522],[79.1703,17.25465],[79.16327,17.2565],[79.15836,17.26066],[79.15804,17.25901],[79.1567,17.25952],[79.15711,17.26192],[79.1546,17.26331],[79.15529,17.26466],[79.14972,17.27145],[79.15561,17.2811],[79.14197,17.28182],[79.13816,17.28002],[79.13772,17.27674],[79.12096,17.27627],[79.11696,17.27768],[79.1105,17.26553],[79.10831,17.2548],[79.10477,17.24897],[79.10341,17.24269],[79.08874,17.24712],[79.08225,17.25247],[79.07342,17.25381],[79.06403,17.2579],[79.05532,17.25711],[79.04183,17.26657],[79.03627,17.26877],[79.00815,17.27305],[78.99768,17.27162],[78.99777,17.27849],[78.98181,17.27956],[78.98082,17.27657],[78.98275,17.27552],[78.98061,17.2642],[78.98291,17.25468],[78.98649,17.25071],[78.98274,17.24731],[78.97888,17.24879],[78.97912,17.24371],[78.9746,17.23251],[78.9715,17.2163],[78.97372,17.21476],[78.95715,17.19883],[78.9611,17.19785],[78.96287,17.19539],[78.96055,17.19077],[78.97232,17.18378],[78.97059,17.17939],[78.9794,17.17377],[78.9779,17.16843],[78.98921,17.16008],[78.99266,17.15533],[78.97525,17.13209],[78.97452,17.12862],[78.97219,17.127],[78.9538,17.13335],[78.95265,17.13144],[78.95143,17.13191],[78.94725,17.12605],[78.95218,17.12263],[78.94824,17.11019],[78.93842,17.10653],[78.93076,17.09204],[78.93073,17.0844],[78.92829,17.08131],[78.9149,17.0907],[78.91133,17.09012],[78.90206,17.07883],[78.90101,17.0738],[78.9031,17.07231],[78.9005,17.06506],[78.89771,17.06541],[78.89444,17.05983],[78.89471,17.0497],[78.89196,17.04361],[78.8807,17.04668],[78.87947,17.05748],[78.87339,17.06161],[78.84165,17.07397],[78.84421,17.06846],[78.83604,17.05523],[78.83745,17.04106],[78.8339,17.03639],[78.82191,17.03034],[78.79707,17.03567],[78.7926,17.04178],[78.78286,17.04053],[78.7766,17.03149],[78.82503,17.01932],[78.82267,17.00571],[78.81633,17.00072],[78.79897,16.99967],[78.7926,16.99125],[78.78905,16.9762],[78.77407,16.98219],[78.76526,16.98149],[78.76071,16.98385],[78.75391,16.98436],[78.75317,16.97448],[78.75636,16.96952],[78.73185,16.97315],[78.71871,16.96853],[78.71154,16.96881],[78.70211,16.96455],[78.70386,16.94965],[78.70142,16.94446],[78.69695,16.94208],[78.69583,16.9356],[78.70755,16.93395],[78.71343,16.92862],[78.74116,16.91839],[78.74531,16.91491],[78.74501,16.91198],[78.7355,16.90194],[78.73161,16.89993],[78.72888,16.89488],[78.72825,16.87472],[78.72669,16.86968],[78.73028,16.86447],[78.7498,16.85458],[78.75203,16.86241],[78.76005,16.87097],[78.76787,16.87664],[78.77198,16.88249],[78.7736,16.8769],[78.78084,16.86827],[78.78127,16.85979],[78.77566,16.84383],[78.78902,16.83971],[78.78753,16.83167],[78.80211,16.82619],[78.79782,16.80746],[78.79526,16.81225],[78.79178,16.80204],[78.79314,16.78963],[78.79516,16.78534],[78.78926,16.76122],[78.78081,16.74608],[78.76159,16.74871],[78.75726,16.74759],[78.75762,16.73718],[78.75955,16.73063],[78.75555,16.70614],[78.74084,16.70669],[78.72559,16.68842],[78.71759,16.68446],[78.71009,16.6783],[78.70726,16.6661],[78.71348,16.6505],[78.70781,16.64934],[78.69336,16.65136],[78.66736,16.65177],[78.67761,16.63569],[78.6799,16.62405],[78.69176,16.62254],[78.69197,16.62062],[78.6985,16.61884],[78.70006,16.61525],[78.69806,16.61275],[78.70399,16.60546],[78.70704,16.5951],[78.71623,16.58193],[78.70138,16.56458],[78.69071,16.56105],[78.67988,16.55222],[78.67945,16.55485],[78.67115,16.55234],[78.66188,16.54622],[78.66376,16.54116],[78.66928,16.53607],[78.6723,16.52942],[78.6755,16.53312],[78.67752,16.53115],[78.6798,16.53127],[78.68159,16.5363],[78.68389,16.53733],[78.69513,16.53622],[78.72429,16.53953],[78.76527,16.53333],[78.77469,16.5301],[78.78913,16.51516],[78.79421,16.51599],[78.80068,16.51396],[78.80917,16.51851],[78.81227,16.52378],[78.83599,16.54366],[78.85566,16.55088],[78.8656,16.54432],[78.86994,16.54357],[78.90939,16.55148],[78.91168,16.54792],[78.91214,16.53989],[78.91831,16.53452],[78.92253,16.52336],[78.93929,16.51034],[78.9676,16.49743],[78.98588,16.49335],[79.00519,16.48025],[79.02201,16.47218],[79.02898,16.46547],[79.0463,16.4587],[79.0589,16.44698],[79.07306,16.44235],[79.08374,16.42819],[79.09154,16.42158],[79.10987,16.42078],[79.11656,16.4111],[79.12246,16.40629],[79.13507,16.40386],[79.14297,16.3986],[79.15169,16.39974],[79.15328,16.39688],[79.15358,16.38243],[79.15664,16.38011],[79.16417,16.37874],[79.16598,16.37689],[79.16631,16.37304],[79.17185,16.36796],[79.18054,16.36762],[79.19389,16.35903],[79.20311,16.36265],[79.21059,16.35617],[79.21243,16.37347],[79.20844,16.37929],[79.20772,16.38475],[79.21156,16.44739],[79.21795,16.45382],[79.23336,16.4592],[79.21569,16.4801],[79.21448,16.48468],[79.21672,16.49948],[79.21998,16.51264],[79.22724,16.52378],[79.24477,16.53181],[79.25027,16.54715],[79.25222,16.55925],[79.25684,16.56582],[79.26164,16.56692],[79.28136,16.56061],[79.29102,16.56157],[79.29552,16.56301],[79.30824,16.57415],[79.32643,16.57646],[79.34011,16.58264],[79.35369,16.57927],[79.37677,16.58275],[79.39682,16.57978],[79.41864,16.58025],[79.43305,16.59075],[79.43914,16.61291],[79.44405,16.61793],[79.45045,16.62099],[79.45958,16.62366],[79.48333,16.6231],[79.49401,16.63304],[79.50385,16.63592],[79.51037,16.63574],[79.52942,16.63064],[79.54209,16.63225],[79.57563,16.64978],[79.59218,16.66988],[79.59892,16.67323],[79.60632,16.67131],[79.62149,16.66318],[79.63128,16.66039],[79.635,16.66107],[79.6511,16.67262],[79.66219,16.68665],[79.67915,16.6934],[79.69983,16.71845],[79.68868,16.72259],[79.67446,16.72407],[79.66806,16.73334],[79.66886,16.74274],[79.67051,16.75072],[79.67345,16.75606],[79.67415,16.76361],[79.67351,16.77965],[79.66647,16.80309],[79.66585,16.81468],[79.66833,16.82867],[79.66795,16.84136],[79.66305,16.85025],[79.64584,16.86613],[79.64178,16.88768],[79.63381,16.9013],[79.62651,16.90701],[79.62233,16.91251],[79.61682,16.92358],[79.61414,16.93967],[79.61469,16.96159],[79.61661,16.96985],[79.61559,16.98432],[79.6098,16.99555],[79.60547,16.99971],[79.60331,17.01358],[79.59901,17.02642],[79.59832,17.03128],[79.60116,17.04468],[79.59284,17.05964],[79.59394,17.07491],[79.59211,17.08355],[79.58288,17.10125],[79.56916,17.12001],[79.56174,17.14182],[79.55154,17.1533],[79.53868,17.16412],[79.52537,17.18616],[79.5243,17.21298],[79.51974,17.23329],[79.50231,17.23103],[79.49397,17.23337],[79.49565,17.25069],[79.49308,17.25719],[79.49719,17.26235],[79.48644,17.2945],[79.4843,17.31272],[79.47478,17.33088],[79.4619,17.34086],[79.448,17.34642],[79.42472,17.34544],[79.39955,17.34844],[79.37381,17.3436],[79.3659,17.3449],[79.34342,17.35603],[79.32549,17.36016],[79.29533,17.3568],[79.27604,17.35985],[79.2571,17.36016]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"515","area_level":"District","area_name":"Sri Potti Sriramulu Nellore","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.36779,15.08539],[79.3575,15.10251],[79.35791,15.10757],[79.36006,15.11126],[79.3516,15.11668],[79.34891,15.11431],[79.35146,15.10746],[79.3479,15.09217],[79.34656,15.09168],[79.34637,15.08601],[79.34428,15.08518],[79.33761,15.09056],[79.3317,15.08923],[79.32833,15.09055],[79.32701,15.09648],[79.32878,15.09964],[79.33408,15.09665],[79.33617,15.09966],[79.3361,15.10373],[79.33752,15.10392],[79.33813,15.10686],[79.33586,15.10807],[79.33875,15.11232],[79.33583,15.11658],[79.33391,15.11648],[79.33364,15.11483],[79.32759,15.11456],[79.32762,15.11142],[79.32914,15.11099],[79.32611,15.10909],[79.32457,15.11009],[79.32135,15.10275],[79.31909,15.10356],[79.31518,15.10143],[79.31542,15.0944],[79.3128,15.0931],[79.31474,15.09292],[79.31403,15.09091],[79.30946,15.0901],[79.3074,15.08717],[79.30954,15.09336],[79.30369,15.09551],[79.29083,15.09822],[79.27167,15.09922],[79.26588,15.09673],[79.26599,15.10473],[79.26062,15.10658],[79.25402,15.10691],[79.24875,15.10507],[79.21471,15.08546],[79.18276,15.08689],[79.17309,15.09005],[79.16503,15.0898],[79.16003,15.09124],[79.15322,15.09707],[79.14891,15.09838],[79.1437,15.09791],[79.13709,15.10101],[79.12868,15.0996],[79.13046,15.0936],[79.13013,15.08521],[79.10048,15.08365],[79.10142,15.07256],[79.09415,15.0654],[79.0947,15.05368],[79.08716,15.04632],[79.08668,15.02728],[79.08407,15.01488],[79.08482,15.00687],[79.08714,15.00257],[79.08141,14.9826],[79.08771,14.96054],[79.09278,14.93268],[79.0988,14.91703],[79.10218,14.90307],[79.1042,14.8983],[79.11184,14.89849],[79.10831,14.89481],[79.13377,14.86683],[79.14198,14.84205],[79.14434,14.81818],[79.14764,14.81057],[79.15057,14.79329],[79.15615,14.78815],[79.16051,14.78035],[79.16142,14.76977],[79.16634,14.76237],[79.17168,14.73777],[79.1783,14.73059],[79.18632,14.71054],[79.18391,14.68852],[79.174,14.68227],[79.17882,14.67881],[79.17885,14.67341],[79.18232,14.66815],[79.17905,14.66353],[79.18358,14.66273],[79.18429,14.65949],[79.18727,14.65882],[79.18513,14.6526],[79.18162,14.64872],[79.18161,14.64351],[79.18349,14.64065],[79.18258,14.63875],[79.18513,14.63021],[79.18721,14.62727],[79.18886,14.61619],[79.20043,14.61355],[79.20254,14.60441],[79.20981,14.60247],[79.20951,14.59995],[79.21272,14.59389],[79.21967,14.58793],[79.22942,14.60233],[79.23548,14.59901],[79.24175,14.59298],[79.24697,14.58025],[79.2486,14.57042],[79.25857,14.55569],[79.2676,14.55073],[79.27816,14.5325],[79.28049,14.5205],[79.28792,14.49987],[79.29267,14.49452],[79.29288,14.48471],[79.3052,14.48382],[79.31137,14.4778],[79.31417,14.47809],[79.31673,14.47606],[79.32667,14.45722],[79.32466,14.45574],[79.327,14.436],[79.32998,14.42576],[79.3356,14.41722],[79.34168,14.41214],[79.34305,14.408],[79.34868,14.40502],[79.34972,14.39843],[79.35596,14.39013],[79.359,14.38128],[79.36423,14.37837],[79.36491,14.37164],[79.36752,14.36805],[79.36682,14.36066],[79.36464,14.35746],[79.36599,14.35134],[79.38952,14.34063],[79.39941,14.31919],[79.42237,14.2783],[79.41943,14.27681],[79.41964,14.26497],[79.42766,14.25025],[79.43536,14.24309],[79.42474,14.22127],[79.42552,14.21298],[79.42237,14.20604],[79.42414,14.1996],[79.42876,14.19328],[79.4283,14.18068],[79.43422,14.16309],[79.43791,14.13987],[79.44472,14.1163],[79.45175,14.10281],[79.45421,14.1007],[79.45318,14.09327],[79.45004,14.08865],[79.45174,14.07554],[79.44995,14.06973],[79.44631,14.06689],[79.4463,14.06461],[79.44258,14.06071],[79.44344,14.04006],[79.43673,14.02373],[79.43966,14.006],[79.44273,13.99782],[79.45222,13.99291],[79.45499,13.98754],[79.44986,13.97123],[79.45207,13.96282],[79.45105,13.95976],[79.45231,13.95375],[79.45641,13.95204],[79.45884,13.94639],[79.45679,13.94351],[79.4571,13.93199],[79.45462,13.93022],[79.45519,13.92338],[79.44186,13.90504],[79.4448,13.8976],[79.44306,13.89028],[79.44868,13.89511],[79.46671,13.89695],[79.47398,13.89962],[79.47802,13.91306],[79.50037,13.91093],[79.51352,13.91379],[79.53413,13.91543],[79.55249,13.91454],[79.57488,13.92018],[79.58276,13.9188],[79.59283,13.92289],[79.59641,13.9116],[79.59385,13.90425],[79.59501,13.88891],[79.60906,13.88811],[79.61999,13.88549],[79.62395,13.88063],[79.6244,13.8719],[79.61925,13.86315],[79.61332,13.86175],[79.60972,13.85909],[79.60721,13.85348],[79.60962,13.85096],[79.62364,13.84685],[79.62831,13.844],[79.63656,13.84473],[79.66885,13.83595],[79.6695,13.85801],[79.67459,13.87105],[79.67346,13.87902],[79.66938,13.88467],[79.67737,13.91264],[79.67874,13.92422],[79.68198,13.92579],[79.68431,13.9218],[79.69688,13.91228],[79.72875,13.9047],[79.73131,13.88999],[79.72799,13.88185],[79.72695,13.86272],[79.73333,13.86156],[79.73884,13.85765],[79.73095,13.8382],[79.72972,13.83082],[79.73286,13.8234],[79.731,13.81843],[79.74191,13.81686],[79.74405,13.81221],[79.74986,13.80999],[79.74477,13.80337],[79.75898,13.79963],[79.75989,13.79774],[79.76447,13.7989],[79.76692,13.7978],[79.77045,13.80061],[79.77313,13.79907],[79.77643,13.80297],[79.77976,13.79971],[79.78341,13.78296],[79.79174,13.7859],[79.80419,13.78467],[79.8119,13.78169],[79.8119,13.78879],[79.81409,13.78845],[79.81937,13.78549],[79.82019,13.77166],[79.85096,13.76906],[79.85054,13.76013],[79.86084,13.75622],[79.86119,13.74545],[79.8582,13.73956],[79.85942,13.73762],[79.86732,13.7349],[79.86329,13.71937],[79.86615,13.71614],[79.86629,13.71193],[79.86841,13.71089],[79.86996,13.70643],[79.8814,13.70491],[79.88214,13.70236],[79.88548,13.70034],[79.95697,13.70765],[79.95834,13.699],[79.96862,13.69355],[79.97206,13.68904],[79.97228,13.68391],[79.96756,13.6797],[79.96176,13.66989],[79.95735,13.66653],[79.96089,13.66438],[79.96313,13.65999],[79.96489,13.65031],[79.97538,13.64353],[79.97915,13.64284],[79.98525,13.64682],[79.99286,13.64782],[80.00005,13.64328],[80.00379,13.63254],[80.00289,13.62408],[80.00439,13.61718],[80.01099,13.60958],[80.01145,13.6052],[80.01517,13.6058],[80.01689,13.60356],[80.01896,13.59726],[80.01695,13.59455],[80.02215,13.59441],[80.02354,13.59249],[80.02407,13.5883],[80.02161,13.58238],[80.02207,13.576],[80.03966,13.57634],[80.04059,13.57309],[80.04736,13.57257],[80.0512,13.55823],[80.03935,13.55554],[80.0398,13.54685],[80.03806,13.53898],[80.05693,13.53664],[80.06275,13.54536],[80.0684,13.54461],[80.08126,13.54975],[80.08864,13.5354],[80.08284,13.5328],[80.07714,13.5268],[80.07819,13.48881],[80.10306,13.48695],[80.10093,13.48985],[80.10516,13.49335],[80.10821,13.48892],[80.11151,13.49328],[80.11277,13.50595],[80.11884,13.50369],[80.12674,13.50463],[80.13171,13.50144],[80.13921,13.50427],[80.14553,13.49949],[80.14514,13.49142],[80.15384,13.49089],[80.16304,13.48823],[80.17712,13.49117],[80.18653,13.49065],[80.20995,13.48628],[80.2106,13.49048],[80.2146,13.49027],[80.21383,13.4861],[80.22589,13.48507],[80.2352,13.474],[80.24097,13.47331],[80.24181,13.47065],[80.25111,13.50277],[80.26405,13.56264],[80.26854,13.56454],[80.24257,13.61644],[80.23728,13.63596],[80.23365,13.65845],[80.23387,13.69676],[80.23753,13.72386],[80.25366,13.78091],[80.25309,13.78592],[80.25033,13.79694],[80.24284,13.81225],[80.22659,13.85499],[80.22088,13.87495],[80.21912,13.87823],[80.21753,13.87663],[80.21837,13.88052],[80.19816,13.91717],[80.18139,13.96167],[80.14978,14.03177],[80.14303,14.05677],[80.1421,14.07465],[80.13614,14.08539],[80.13378,14.09691],[80.12932,14.12558],[80.12641,14.16432],[80.12702,14.19219],[80.13105,14.22737],[80.13011,14.23116],[80.1317,14.23185],[80.13869,14.25349],[80.13903,14.26917],[80.14292,14.28661],[80.15267,14.31421],[80.16513,14.34065],[80.17165,14.37342],[80.17498,14.44342],[80.17314,14.44315],[80.17497,14.44464],[80.17542,14.44814],[80.1729,14.44921],[80.17549,14.44982],[80.17874,14.492],[80.17875,14.49438],[80.17728,14.49498],[80.17881,14.49584],[80.18542,14.547],[80.19466,14.57762],[80.19551,14.58583],[80.1931,14.59318],[80.17817,14.60319],[80.17118,14.61166],[80.15127,14.66812],[80.14207,14.70351],[80.13773,14.70419],[80.1306,14.72185],[80.12119,14.73064],[80.11787,14.73601],[80.11485,14.73613],[80.1134,14.73788],[80.09979,14.77325],[80.08875,14.82364],[80.08437,14.88325],[80.06798,14.9304],[80.05438,15.00425],[80.04425,15.00903],[80.04023,15.00913],[80.04054,15.00686],[80.03289,14.99907],[80.02731,14.98056],[80.02516,14.9831],[80.01301,14.98722],[79.98915,14.99864],[79.97841,15.00775],[79.97337,15.01651],[79.96416,15.0223],[79.96181,15.02282],[79.95265,15.01914],[79.9452,15.0221],[79.93378,15.02286],[79.91526,15.01564],[79.91712,15.01364],[79.91653,15.01096],[79.90488,15.01068],[79.90427,15.0079],[79.89333,15.00407],[79.88924,14.99827],[79.88847,14.98918],[79.87359,14.98772],[79.86577,14.96375],[79.84254,14.96546],[79.83209,14.96671],[79.82773,14.97154],[79.82183,14.97336],[79.79913,14.9763],[79.79014,14.98188],[79.77952,14.9811],[79.78084,14.99451],[79.78833,15.00296],[79.79363,15.02055],[79.79138,15.02458],[79.78176,15.02912],[79.78486,15.03451],[79.79288,15.0387],[79.79717,15.0553],[79.79593,15.05966],[79.77966,15.06401],[79.77828,15.06684],[79.77481,15.06648],[79.76573,15.06029],[79.75986,15.05309],[79.75262,15.05343],[79.74713,15.04806],[79.74229,15.03767],[79.73535,15.03464],[79.73406,15.03066],[79.73208,15.03098],[79.73153,15.03388],[79.72846,15.03644],[79.71815,15.04067],[79.71826,15.04213],[79.71515,15.04404],[79.71491,15.05307],[79.68949,15.03822],[79.68884,15.03528],[79.67201,15.03249],[79.66539,15.03781],[79.6559,15.03362],[79.64024,15.03717],[79.62294,15.03269],[79.61645,15.0348],[79.61233,15.03896],[79.60896,15.04011],[79.60154,15.03791],[79.59132,15.03987],[79.58094,15.0362],[79.58033,15.0433],[79.56338,15.0435],[79.56273,15.03357],[79.55879,15.0285],[79.56004,15.02178],[79.55022,15.02232],[79.54818,15.02442],[79.54407,15.02507],[79.5431,15.02761],[79.5361,15.03135],[79.5299,15.03783],[79.51973,15.03696],[79.51467,15.04321],[79.50696,15.04597],[79.50524,15.04832],[79.50634,15.05353],[79.50185,15.0562],[79.49324,15.05687],[79.49175,15.05559],[79.48906,15.05796],[79.47665,15.05807],[79.47392,15.06098],[79.4726,15.06579],[79.46907,15.06837],[79.46599,15.06799],[79.46162,15.06156],[79.45363,15.0638],[79.43932,15.05526],[79.42643,15.05741],[79.42351,15.05655],[79.41697,15.05901],[79.4162,15.06425],[79.41935,15.07336],[79.40822,15.0745],[79.40316,15.07871],[79.39667,15.07492],[79.39044,15.07537],[79.39078,15.08475],[79.39345,15.08672],[79.3928,15.09095],[79.39094,15.09145],[79.39003,15.08733],[79.38758,15.08506],[79.36779,15.08539]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"516","area_level":"District","area_name":"Nizamabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.26856,18.99884],[78.25761,19.00607],[78.24866,19.01474],[78.24201,19.01634],[78.23702,19.01532],[78.22803,19.00835],[78.22242,19.0061],[78.21313,19.00491],[78.19343,18.99779],[78.1884,18.99729],[78.17936,18.99974],[78.16807,18.99804],[78.16458,18.99502],[78.1643,18.99066],[78.16114,18.98809],[78.16191,18.98221],[78.1606,18.97939],[78.14685,18.96551],[78.13019,18.96068],[78.12112,18.9611],[78.11817,18.96274],[78.11319,18.96131],[78.10466,18.95443],[78.09644,18.94425],[78.08933,18.93994],[78.05766,18.94214],[78.04676,18.93606],[78.04735,18.9276],[78.04177,18.91476],[78.041,18.89806],[78.03689,18.88804],[78.0392,18.88225],[78.03716,18.87696],[78.02795,18.87653],[78.01782,18.88367],[78.01397,18.88438],[77.98802,18.87967],[77.97006,18.87192],[77.96053,18.86167],[77.95664,18.85359],[77.94952,18.84528],[77.94854,18.82984],[77.94309,18.82481],[77.9345,18.82227],[77.91226,18.82689],[77.90667,18.8267],[77.88199,18.8174],[77.87141,18.81816],[77.85988,18.80905],[77.85368,18.80907],[77.83995,18.80482],[77.83851,18.79683],[77.83219,18.78825],[77.82679,18.76984],[77.81671,18.75064],[77.81234,18.73851],[77.80425,18.72724],[77.80418,18.71318],[77.80106,18.70762],[77.79622,18.70396],[77.79501,18.69704],[77.78976,18.69515],[77.79035,18.68783],[77.78729,18.68264],[77.77701,18.68536],[77.77202,18.68895],[77.77324,18.70136],[77.77033,18.70184],[77.76764,18.70614],[77.76092,18.70715],[77.75387,18.70146],[77.75067,18.69559],[77.75244,18.68934],[77.74925,18.68267],[77.74369,18.68162],[77.74313,18.67827],[77.73822,18.6765],[77.72997,18.66694],[77.73571,18.66099],[77.7302,18.65608],[77.7305,18.64515],[77.73471,18.64101],[77.74566,18.62129],[77.74557,18.60594],[77.7476,18.6032],[77.75034,18.58921],[77.74607,18.5846],[77.74347,18.57762],[77.74038,18.57522],[77.73961,18.56836],[77.73704,18.56384],[77.7385,18.55679],[77.74857,18.54263],[77.75684,18.53611],[77.75771,18.53032],[77.76147,18.52561],[77.76069,18.51214],[77.75669,18.50249],[77.77302,18.50287],[77.77397,18.50496],[77.77836,18.50561],[77.78368,18.50399],[77.78946,18.49707],[77.80006,18.50104],[77.81964,18.50231],[77.82156,18.50474],[77.83035,18.50447],[77.83744,18.50649],[77.85371,18.50329],[77.8647,18.50797],[77.88132,18.50174],[77.88515,18.49525],[77.88929,18.49243],[77.89522,18.49478],[77.90005,18.49184],[77.90767,18.49317],[77.93754,18.49146],[77.94992,18.48722],[77.95294,18.48202],[77.97085,18.47428],[77.97494,18.47049],[77.98152,18.45923],[77.97486,18.44628],[78.02214,18.43615],[78.03784,18.46489],[78.03644,18.47279],[78.03755,18.48297],[78.03822,18.48733],[78.04136,18.48938],[78.03639,18.49393],[78.03616,18.49892],[78.03942,18.50065],[78.03417,18.50893],[78.03948,18.51776],[78.06216,18.51381],[78.06987,18.50834],[78.06976,18.51117],[78.07625,18.51455],[78.08483,18.50909],[78.09123,18.50865],[78.10354,18.50417],[78.10695,18.4978],[78.10592,18.49156],[78.11806,18.49268],[78.12127,18.48822],[78.13335,18.48463],[78.1349,18.4823],[78.15959,18.47726],[78.16645,18.48389],[78.17279,18.49775],[78.17576,18.50092],[78.18596,18.50719],[78.19217,18.50873],[78.19287,18.5038],[78.2005,18.50522],[78.20226,18.50129],[78.21244,18.49836],[78.21688,18.49896],[78.22488,18.49084],[78.23642,18.49212],[78.24255,18.48635],[78.24997,18.48641],[78.25812,18.47587],[78.25476,18.47196],[78.25527,18.46676],[78.25365,18.46662],[78.25737,18.46072],[78.25453,18.45822],[78.25976,18.45268],[78.26828,18.45296],[78.26966,18.45062],[78.27119,18.45333],[78.2749,18.45425],[78.27527,18.458],[78.28099,18.45369],[78.29777,18.45591],[78.30727,18.45398],[78.30764,18.45624],[78.3139,18.4598],[78.3166,18.46518],[78.32944,18.46688],[78.33451,18.46361],[78.34573,18.46292],[78.35038,18.45742],[78.35443,18.45919],[78.36314,18.45443],[78.38258,18.45372],[78.39242,18.46619],[78.3988,18.48201],[78.40653,18.48257],[78.42463,18.47498],[78.44228,18.4779],[78.44512,18.48328],[78.45258,18.4827],[78.45386,18.4812],[78.45466,18.47738],[78.45224,18.47226],[78.46075,18.46538],[78.46431,18.46041],[78.46537,18.45239],[78.4692,18.44608],[78.47715,18.44057],[78.49208,18.43777],[78.49863,18.44557],[78.50617,18.45147],[78.51818,18.45641],[78.52132,18.46148],[78.52099,18.46444],[78.52496,18.46337],[78.53018,18.46549],[78.53122,18.47791],[78.53945,18.49617],[78.54653,18.50374],[78.55175,18.50405],[78.55312,18.51378],[78.54954,18.52248],[78.5535,18.53071],[78.56948,18.54383],[78.57,18.54664],[78.56429,18.55247],[78.55964,18.55236],[78.56363,18.55489],[78.57496,18.55034],[78.58755,18.54922],[78.59742,18.55078],[78.59909,18.55479],[78.59987,18.57389],[78.61364,18.58975],[78.61739,18.59126],[78.62211,18.58992],[78.64396,18.59651],[78.65111,18.59482],[78.65411,18.59633],[78.66989,18.62332],[78.66429,18.63354],[78.65278,18.63867],[78.6379,18.67224],[78.63366,18.6726],[78.63161,18.67749],[78.64081,18.70185],[78.64096,18.71535],[78.63718,18.72333],[78.62864,18.72782],[78.61471,18.72998],[78.61288,18.72803],[78.59059,18.72542],[78.58163,18.72283],[78.57117,18.73826],[78.55828,18.74003],[78.55271,18.74253],[78.55156,18.75066],[78.55746,18.75602],[78.55431,18.76509],[78.56351,18.77882],[78.55925,18.78543],[78.55247,18.79108],[78.5543,18.80093],[78.54896,18.80895],[78.55092,18.81348],[78.54166,18.81531],[78.54814,18.83066],[78.54828,18.83455],[78.54144,18.83947],[78.54008,18.84574],[78.53737,18.84423],[78.54331,18.85962],[78.54115,18.86083],[78.5417,18.86326],[78.53607,18.88429],[78.52634,18.88945],[78.51981,18.88923],[78.51412,18.89231],[78.51893,18.90069],[78.51794,18.90332],[78.51916,18.90443],[78.52098,18.92293],[78.52494,18.92974],[78.52674,18.92873],[78.52798,18.93015],[78.5259,18.93225],[78.52593,18.93897],[78.52839,18.94292],[78.53663,18.9423],[78.53697,18.94581],[78.53139,18.94706],[78.52542,18.95077],[78.51622,18.96532],[78.5082,18.97229],[78.49079,18.97284],[78.48623,18.96973],[78.48231,18.96194],[78.47722,18.95802],[78.47269,18.95709],[78.46543,18.95834],[78.45684,18.95548],[78.45248,18.96405],[78.44055,18.9666],[78.42629,18.97697],[78.41712,18.99948],[78.40999,19.00384],[78.37112,18.99603],[78.36415,18.98951],[78.35489,18.98453],[78.34598,18.97366],[78.33945,18.96829],[78.32128,18.96043],[78.314,18.95151],[78.29327,18.94403],[78.28514,18.94256],[78.2788,18.94652],[78.27708,18.95303],[78.27772,18.96865],[78.27609,18.97331],[78.28039,18.98148],[78.28084,18.98557],[78.27633,18.99278],[78.26856,18.99884]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"517","area_level":"District","area_name":"Prakasam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.54472,16.29152],[79.53635,16.30582],[79.528,16.29706],[79.49857,16.29039],[79.47313,16.29045],[79.44741,16.30261],[79.37112,16.23268],[79.32603,16.22828],[79.29627,16.21465],[79.25929,16.19344],[79.24976,16.1795],[79.22207,16.16291],[79.21563,16.18129],[79.2167,16.22365],[79.21514,16.22598],[79.20628,16.22091],[79.17019,16.2099],[79.15695,16.20929],[79.14417,16.21512],[79.12377,16.23102],[79.1143,16.23095],[79.10792,16.22809],[79.10294,16.22311],[79.09881,16.22311],[79.08411,16.23012],[79.07211,16.22707],[79.05436,16.23707],[79.02918,16.24174],[79.00909,16.23995],[78.98572,16.21071],[78.96774,16.21112],[78.96027,16.20907],[78.94896,16.20354],[78.93001,16.19805],[78.91106,16.18843],[78.9054,16.18359],[78.90408,16.17646],[78.91054,16.16407],[78.91469,16.14932],[78.92387,16.13736],[78.92438,16.13084],[78.92264,16.12658],[78.93104,16.09257],[78.91076,15.96764],[78.86201,15.93001],[78.83633,15.90569],[78.80977,15.86724],[78.77141,15.66442],[78.76942,15.62577],[78.77666,15.5333],[78.76927,15.4649],[78.77126,15.41979],[78.76081,15.39386],[78.74794,15.36848],[78.74196,15.35192],[78.73655,15.32615],[78.73836,15.31843],[78.73904,15.26848],[78.73845,15.25075],[78.73674,15.24287],[78.73689,15.19982],[78.74216,15.18161],[78.75826,15.18465],[78.77743,15.19962],[78.87137,15.19755],[78.87766,15.1944],[78.8854,15.19434],[78.89236,15.19161],[78.9033,15.19135],[78.9058,15.18755],[78.91935,15.18695],[78.91963,15.19842],[78.92217,15.20338],[78.92355,15.21577],[78.92594,15.21865],[78.927,15.22845],[78.94775,15.22838],[78.94952,15.20965],[78.94759,15.20332],[78.95094,15.20028],[78.95474,15.1919],[78.95735,15.17595],[78.96731,15.17334],[78.97218,15.16827],[78.98137,15.16459],[78.99156,15.16863],[78.99971,15.16568],[79.00252,15.16894],[79.01005,15.16752],[79.01233,15.17109],[79.01147,15.17546],[79.0168,15.17945],[79.02016,15.17964],[79.08319,15.17347],[79.07341,15.16508],[79.07206,15.14286],[79.0757,15.10407],[79.07938,15.09492],[79.08741,15.06306],[79.08916,15.04817],[79.0947,15.05368],[79.09415,15.0654],[79.10133,15.07227],[79.10048,15.08365],[79.13013,15.08521],[79.13046,15.0936],[79.12868,15.0996],[79.13709,15.10101],[79.1437,15.09791],[79.14891,15.09838],[79.15322,15.09707],[79.16003,15.09124],[79.16503,15.0898],[79.17309,15.09005],[79.18276,15.08689],[79.21471,15.08546],[79.24875,15.10507],[79.25402,15.10691],[79.26062,15.10658],[79.26599,15.10473],[79.26588,15.09673],[79.27167,15.09922],[79.29083,15.09822],[79.30369,15.09551],[79.30954,15.09336],[79.3074,15.08717],[79.30946,15.0901],[79.31403,15.09091],[79.31474,15.09292],[79.3128,15.0931],[79.31542,15.0944],[79.31518,15.10143],[79.31909,15.10356],[79.32135,15.10275],[79.32457,15.11009],[79.32611,15.10909],[79.32914,15.11099],[79.32762,15.11142],[79.32759,15.11456],[79.33364,15.11483],[79.33391,15.11648],[79.33583,15.11658],[79.33875,15.11232],[79.33586,15.10807],[79.33813,15.10686],[79.33752,15.10392],[79.3361,15.10373],[79.33617,15.09966],[79.33408,15.09665],[79.32878,15.09964],[79.32701,15.09648],[79.32833,15.09055],[79.3317,15.08923],[79.33761,15.09056],[79.34428,15.08518],[79.34637,15.08601],[79.34656,15.09168],[79.3479,15.09217],[79.35146,15.10746],[79.34891,15.11431],[79.3516,15.11668],[79.36006,15.11126],[79.35791,15.10757],[79.3575,15.10251],[79.36794,15.0851],[79.38758,15.08506],[79.39003,15.08733],[79.39094,15.09145],[79.3928,15.09095],[79.39345,15.08672],[79.39078,15.08475],[79.39044,15.07537],[79.39667,15.07492],[79.40316,15.07871],[79.40822,15.0745],[79.41935,15.07336],[79.4162,15.06425],[79.41701,15.05897],[79.42351,15.05655],[79.42643,15.05741],[79.43932,15.05526],[79.45363,15.0638],[79.46162,15.06156],[79.46599,15.06799],[79.46907,15.06837],[79.4726,15.06579],[79.47392,15.06098],[79.47665,15.05807],[79.48906,15.05796],[79.49175,15.05559],[79.49324,15.05687],[79.50185,15.0562],[79.50634,15.05353],[79.50524,15.04832],[79.50696,15.04597],[79.51467,15.04321],[79.51973,15.03696],[79.5299,15.03783],[79.5361,15.03135],[79.5431,15.02761],[79.54407,15.02507],[79.54818,15.02442],[79.55022,15.02232],[79.56004,15.02178],[79.55879,15.0285],[79.56273,15.03357],[79.56338,15.0435],[79.58033,15.0433],[79.58094,15.0362],[79.59132,15.03987],[79.60154,15.03791],[79.60896,15.04011],[79.61233,15.03896],[79.61645,15.0348],[79.62294,15.03269],[79.64024,15.03717],[79.6559,15.03362],[79.66539,15.03781],[79.67201,15.03249],[79.68884,15.03528],[79.68949,15.03822],[79.71491,15.05307],[79.71515,15.04404],[79.71826,15.04213],[79.71815,15.04067],[79.72846,15.03644],[79.73153,15.03388],[79.73208,15.03098],[79.73406,15.03066],[79.73535,15.03464],[79.74229,15.03767],[79.74713,15.04806],[79.75262,15.05343],[79.75986,15.05309],[79.76573,15.06029],[79.77481,15.06648],[79.77828,15.06684],[79.77966,15.06401],[79.79593,15.05966],[79.79717,15.0553],[79.79288,15.0387],[79.78486,15.03451],[79.78176,15.02912],[79.79138,15.02458],[79.79363,15.02055],[79.78833,15.00296],[79.78084,14.99451],[79.77952,14.9811],[79.79014,14.98188],[79.79913,14.9763],[79.82241,14.97321],[79.82773,14.97154],[79.83209,14.96671],[79.86577,14.96375],[79.87359,14.98772],[79.88847,14.98918],[79.88924,14.99827],[79.89333,15.00407],[79.90427,15.0079],[79.90488,15.01068],[79.91653,15.01096],[79.91712,15.01364],[79.91526,15.01564],[79.93378,15.02286],[79.9452,15.0221],[79.95265,15.01914],[79.96181,15.02282],[79.97129,15.01838],[79.97544,15.01408],[79.97841,15.00775],[79.98915,14.99864],[80.01301,14.98722],[80.02516,14.9831],[80.02572,14.98104],[80.02809,14.98045],[80.03289,14.99907],[80.04054,15.00686],[80.04023,15.00913],[80.04425,15.00903],[80.0544,15.00424],[80.04708,15.08343],[80.05566,15.12338],[80.06289,15.14563],[80.07039,15.16534],[80.07965,15.18109],[80.07603,15.17923],[80.07085,15.1826],[80.0784,15.18951],[80.0822,15.19183],[80.08361,15.19112],[80.08903,15.21193],[80.08889,15.23573],[80.08799,15.23769],[80.08712,15.23694],[80.08843,15.22394],[80.08343,15.22241],[80.08749,15.2245],[80.08404,15.23033],[80.08213,15.23092],[80.08071,15.24104],[80.08183,15.24921],[80.08271,15.24751],[80.084,15.24841],[80.08675,15.23894],[80.08816,15.23882],[80.08239,15.25268],[80.08236,15.26323],[80.08621,15.28188],[80.08474,15.28334],[80.08642,15.2824],[80.09838,15.31148],[80.10251,15.31567],[80.10586,15.32404],[80.11025,15.34547],[80.12183,15.36787],[80.14181,15.39546],[80.18311,15.44196],[80.20012,15.46502],[80.2079,15.48021],[80.20607,15.48402],[80.20816,15.48368],[80.21039,15.49378],[80.20383,15.4946],[80.19885,15.49314],[80.20143,15.50076],[80.1988,15.503],[80.20171,15.50154],[80.2032,15.503],[80.20305,15.5061],[80.19638,15.50423],[80.19423,15.50501],[80.19692,15.50514],[80.19585,15.50712],[80.19923,15.50556],[80.20361,15.50794],[80.20253,15.51157],[80.20479,15.50824],[80.20959,15.51147],[80.20213,15.5154],[80.21103,15.51202],[80.2128,15.5153],[80.21534,15.51574],[80.21452,15.51825],[80.21598,15.51801],[80.21605,15.51959],[80.21367,15.51964],[80.21296,15.52203],[80.21431,15.52143],[80.214,15.52619],[80.2177,15.52561],[80.21849,15.52333],[80.22485,15.53369],[80.22334,15.53604],[80.22573,15.54001],[80.2232,15.54082],[80.21973,15.53834],[80.22363,15.54117],[80.22603,15.54058],[80.22602,15.54795],[80.22677,15.54932],[80.22791,15.54681],[80.22683,15.55378],[80.22903,15.5689],[80.22468,15.56827],[80.22684,15.56958],[80.22637,15.57096],[80.22974,15.57056],[80.23336,15.58488],[80.232,15.58621],[80.23087,15.58425],[80.2292,15.58699],[80.23205,15.58711],[80.23104,15.58911],[80.23376,15.5863],[80.23508,15.59121],[80.23416,15.5925],[80.22689,15.59315],[80.22659,15.58923],[80.22552,15.59306],[80.22247,15.58263],[80.22527,15.59354],[80.22413,15.59497],[80.22866,15.5941],[80.23064,15.59712],[80.23325,15.5962],[80.23473,15.59905],[80.22781,15.60284],[80.22561,15.60096],[80.22063,15.60092],[80.22905,15.60425],[80.23167,15.6028],[80.23342,15.60411],[80.23239,15.60272],[80.23369,15.60147],[80.23481,15.60301],[80.23721,15.60067],[80.24131,15.61132],[80.24145,15.61339],[80.23994,15.61364],[80.24225,15.61425],[80.24502,15.62032],[80.23973,15.62055],[80.23972,15.62164],[80.24273,15.62184],[80.24279,15.62487],[80.24279,15.62241],[80.24394,15.62218],[80.24395,15.62485],[80.24533,15.62156],[80.24787,15.62579],[80.24681,15.62733],[80.24571,15.62523],[80.24343,15.62543],[80.24314,15.63011],[80.24776,15.62721],[80.24913,15.62795],[80.25661,15.64334],[80.28224,15.68527],[80.31068,15.71804],[80.34389,15.74821],[80.3451,15.75078],[80.36191,15.76337],[80.41819,15.79755],[80.41734,15.80739],[80.43673,15.8186],[80.44763,15.82276],[80.44944,15.82263],[80.4512,15.81858],[80.45377,15.82003],[80.45184,15.82423],[80.44966,15.82338],[80.44861,15.82617],[80.44787,15.83351],[80.4513,15.83593],[80.4474,15.84731],[80.4586,15.85024],[80.45923,15.84846],[80.4751,15.85252],[80.47154,15.85917],[80.45681,15.85499],[80.45501,15.85819],[80.45081,15.85704],[80.44229,15.87303],[80.44009,15.87301],[80.43699,15.87782],[80.40682,15.85719],[80.40162,15.86697],[80.39778,15.87014],[80.39663,15.87457],[80.39253,15.87806],[80.38684,15.89135],[80.37813,15.8965],[80.37721,15.91905],[80.37534,15.92318],[80.37981,15.93062],[80.3789,15.9379],[80.37689,15.93814],[80.37505,15.94378],[80.37973,15.97364],[80.38526,15.97077],[80.38551,15.97683],[80.39708,15.9741],[80.4178,15.96339],[80.42679,15.98141],[80.42526,15.9906],[80.42622,15.99949],[80.40936,16.00083],[80.40847,16.00293],[80.40625,16.00216],[80.39189,16.00672],[80.38593,16.01132],[80.37179,16.01297],[80.37158,16.01587],[80.36611,16.01671],[80.36644,16.01893],[80.35889,16.02163],[80.35859,16.02676],[80.34546,16.02861],[80.34237,16.02238],[80.33641,16.0203],[80.33554,16.01498],[80.32542,16.01871],[80.32796,16.02486],[80.31797,16.02894],[80.31383,16.02879],[80.31845,16.04457],[80.31069,16.0471],[80.31029,16.05056],[80.30193,16.05538],[80.30088,16.04968],[80.29352,16.05319],[80.28998,16.0496],[80.28366,16.04912],[80.26684,16.05069],[80.26248,16.05326],[80.26105,16.04566],[80.24931,16.05082],[80.24014,16.05223],[80.23733,16.03702],[80.2299,16.03764],[80.22995,16.03187],[80.19011,16.03836],[80.18745,16.02529],[80.18156,16.0266],[80.18231,16.03439],[80.15484,16.04144],[80.15526,16.04557],[80.1373,16.0455],[80.13311,16.01967],[80.13978,16.01563],[80.12062,16.02052],[80.1049,16.01491],[80.10046,16.01129],[80.09715,16.01108],[80.09101,16.01327],[80.09153,16.0151],[80.08922,16.01588],[80.08616,16.0207],[80.08802,16.02939],[80.0848,16.0401],[80.08463,16.05148],[80.08256,16.05321],[80.08286,16.05488],[80.07996,16.05603],[80.08256,16.06289],[80.07341,16.06845],[80.07081,16.07503],[80.07413,16.09197],[80.06788,16.09456],[80.06156,16.08921],[80.04752,16.08521],[80.04061,16.09233],[80.05139,16.11959],[80.05028,16.12364],[80.0519,16.12902],[80.05033,16.13062],[80.0492,16.12865],[80.04341,16.12982],[80.0338,16.12288],[80.03185,16.11742],[80.02064,16.11447],[80.01272,16.1167],[80.01015,16.11903],[80.01154,16.12616],[80.00723,16.12978],[80.00841,16.13151],[80.00617,16.1337],[79.99876,16.13616],[80.00056,16.13986],[79.99205,16.14234],[79.98697,16.14128],[79.97403,16.14608],[79.97618,16.15095],[79.97227,16.15472],[79.95282,16.16428],[79.95042,16.16288],[79.95197,16.16139],[79.95201,16.15436],[79.95343,16.15228],[79.94928,16.14514],[79.94471,16.13927],[79.9426,16.14031],[79.93699,16.13941],[79.93258,16.13224],[79.92781,16.13192],[79.91921,16.14015],[79.90159,16.1494],[79.87863,16.15478],[79.86817,16.141],[79.866,16.13469],[79.86676,16.13228],[79.87513,16.12874],[79.86953,16.11705],[79.86902,16.1117],[79.87389,16.11212],[79.86848,16.09613],[79.88172,16.09222],[79.88501,16.08573],[79.8901,16.08455],[79.89048,16.08629],[79.89522,16.08717],[79.8941,16.08326],[79.89596,16.08312],[79.89548,16.07693],[79.90141,16.07741],[79.91583,16.0747],[79.91489,16.07156],[79.91948,16.0697],[79.92053,16.06057],[79.91949,16.0513],[79.9174,16.04697],[79.90896,16.04539],[79.90349,16.04199],[79.88075,16.03902],[79.87884,16.0344],[79.87531,16.03438],[79.87324,16.02928],[79.86981,16.03033],[79.86654,16.02151],[79.86288,15.99325],[79.87171,15.99854],[79.8796,15.9993],[79.89037,15.99453],[79.8906,15.98743],[79.90261,15.98325],[79.89858,15.97071],[79.9123,15.96689],[79.9033,15.9425],[79.8968,15.94666],[79.89406,15.93929],[79.88539,15.94182],[79.88474,15.94011],[79.88003,15.94018],[79.87913,15.93641],[79.87549,15.9352],[79.87797,15.92471],[79.86956,15.91609],[79.84722,15.92245],[79.84823,15.92807],[79.84602,15.9288],[79.81712,15.93636],[79.80541,15.93722],[79.79117,15.94072],[79.78878,15.93607],[79.7858,15.91801],[79.78338,15.91467],[79.77481,15.90664],[79.7689,15.90736],[79.76336,15.90388],[79.7631,15.90032],[79.75538,15.89958],[79.75387,15.87101],[79.74687,15.85921],[79.75279,15.85457],[79.75417,15.84738],[79.77265,15.84213],[79.77037,15.83036],[79.77086,15.82516],[79.76561,15.82682],[79.76214,15.82355],[79.73981,15.82626],[79.73365,15.83491],[79.7185,15.83542],[79.71061,15.83724],[79.71708,15.84515],[79.71975,15.85875],[79.71434,15.86736],[79.69444,15.87607],[79.68852,15.87583],[79.68998,15.88323],[79.69499,15.89416],[79.69322,15.89796],[79.68942,15.89987],[79.68502,15.89831],[79.68172,15.90365],[79.67623,15.90337],[79.67052,15.90739],[79.67085,15.90964],[79.66374,15.91668],[79.65802,15.91802],[79.65526,15.92058],[79.64918,15.91312],[79.63583,15.90696],[79.62327,15.91637],[79.6116,15.92199],[79.61543,15.93245],[79.60398,15.93807],[79.58981,15.94014],[79.57239,15.93685],[79.55916,15.94784],[79.56169,15.95523],[79.55951,15.96332],[79.56854,15.98288],[79.56733,15.98411],[79.57257,16.00487],[79.563,16.01209],[79.56684,16.0177],[79.56113,16.02908],[79.56371,16.03302],[79.55376,16.04879],[79.55231,16.05681],[79.54725,16.06774],[79.54648,16.07602],[79.55261,16.08474],[79.55317,16.09741],[79.55545,16.10078],[79.55269,16.10754],[79.55287,16.11222],[79.54729,16.11949],[79.54421,16.12039],[79.53836,16.13326],[79.53683,16.14221],[79.54046,16.14844],[79.54035,16.15573],[79.53671,16.16316],[79.53887,16.17118],[79.54717,16.17364],[79.55189,16.17926],[79.5527,16.18425],[79.55926,16.19433],[79.5609,16.20473],[79.55635,16.21373],[79.56314,16.22717],[79.56136,16.23207],[79.56253,16.23702],[79.56003,16.24179],[79.56112,16.26078],[79.5667,16.27595],[79.56216,16.28011],[79.55738,16.28033],[79.54996,16.28432],[79.54472,16.29152]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"518","area_level":"District","area_name":"Ranga Reddy","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.36427,17.51921],[78.35547,17.51988],[78.34764,17.52247],[78.34335,17.51756],[78.33698,17.50372],[78.33771,17.50636],[78.31289,17.50898],[78.31248,17.51074],[78.30746,17.51005],[78.30813,17.50743],[78.31448,17.50298],[78.31765,17.49463],[78.30921,17.49019],[78.298,17.49095],[78.29802,17.47959],[78.30019,17.47578],[78.3018,17.46082],[78.294,17.45234],[78.28995,17.44189],[78.28814,17.43126],[78.2756,17.43477],[78.27011,17.42953],[78.25009,17.42741],[78.231,17.42943],[78.21785,17.4385],[78.21867,17.45741],[78.21707,17.46702],[78.21396,17.47222],[78.21381,17.48605],[78.19147,17.48693],[78.19014,17.48117],[78.19158,17.47815],[78.18971,17.47569],[78.18608,17.4726],[78.1751,17.46918],[78.17016,17.46357],[78.16629,17.46433],[78.16435,17.46279],[78.14508,17.46784],[78.14529,17.4841],[78.12197,17.48512],[78.11603,17.48322],[78.11355,17.47972],[78.11111,17.47969],[78.10855,17.4885],[78.10542,17.49021],[78.09574,17.48873],[78.08975,17.49109],[78.08379,17.49125],[78.08377,17.49736],[78.08161,17.49746],[78.08067,17.50173],[78.08311,17.50525],[78.08211,17.51642],[78.0708,17.51842],[78.07155,17.51373],[78.0668,17.50756],[78.05808,17.50887],[78.05869,17.50443],[78.06559,17.502],[78.06565,17.50072],[78.07111,17.50036],[78.07124,17.49589],[78.06378,17.49002],[78.05766,17.47978],[78.05158,17.47883],[78.04998,17.47589],[78.05228,17.47443],[78.05341,17.47547],[78.05303,17.46965],[78.05608,17.46897],[78.0595,17.46074],[78.06448,17.45801],[78.06674,17.45962],[78.07021,17.45578],[78.06275,17.45011],[78.06327,17.44714],[78.06849,17.44314],[78.07228,17.43753],[78.07216,17.41335],[78.06953,17.40971],[78.05123,17.41192],[78.04707,17.40114],[78.03593,17.39057],[78.03285,17.37889],[78.02794,17.3756],[78.02514,17.37002],[78.02201,17.37005],[78.02295,17.36394],[78.0214,17.36283],[78.02079,17.35523],[78.01715,17.34419],[78.01256,17.34432],[78.00721,17.34049],[78.00558,17.33787],[78.00669,17.33706],[78.0053,17.32798],[78.00777,17.32723],[78.00948,17.32013],[78.01289,17.31969],[78.01476,17.31188],[78.0325,17.30862],[78.03152,17.30303],[78.04713,17.29535],[78.04338,17.27501],[78.04691,17.2723],[78.04851,17.26597],[78.05947,17.25124],[78.05736,17.24804],[78.05081,17.24359],[78.05097,17.23541],[78.06952,17.23065],[78.06612,17.22359],[78.06366,17.21059],[78.05722,17.21445],[78.05475,17.21438],[78.04693,17.20835],[78.04386,17.19405],[78.04085,17.18841],[78.04527,17.18777],[78.04288,17.17949],[78.04422,17.16861],[78.04115,17.1664],[78.03195,17.16835],[78.0235,17.16795],[78.02155,17.16627],[78.01632,17.1657],[78.01133,17.14763],[78.00398,17.14744],[77.99869,17.13355],[77.99167,17.12822],[77.99152,17.12245],[77.99337,17.12239],[77.9929,17.11379],[77.99103,17.11172],[77.99227,17.10953],[77.99001,17.10334],[77.98361,17.10391],[77.98228,17.10174],[77.97527,17.0995],[77.97183,17.10074],[77.95415,17.09921],[77.95421,17.09554],[77.95194,17.094],[77.93411,17.08603],[77.93816,17.08189],[77.94919,17.08069],[77.94902,17.07555],[77.94209,17.07533],[77.92417,17.066],[77.92287,17.06339],[77.92274,17.0518],[77.93222,17.04797],[77.93064,17.03962],[77.93481,17.02819],[77.93842,17.02705],[77.94392,17.02135],[77.95074,17.02033],[77.94828,17.01684],[77.95357,17.0144],[77.96773,17.01397],[77.96839,17.01263],[77.97827,17.01008],[77.97804,17.00432],[77.98371,16.99614],[77.99623,16.98623],[77.99969,16.97971],[78.01053,16.97831],[78.01434,16.98499],[78.00876,16.99014],[78.00986,17.00097],[78.01685,17.00694],[78.02422,17.01006],[78.03465,17.01036],[78.05778,17.00101],[78.06832,17.00542],[78.07485,17.00071],[78.0851,16.9963],[78.08923,16.98574],[78.09211,16.98317],[78.09517,16.98439],[78.09976,16.98413],[78.10027,16.98247],[78.10839,16.98281],[78.11437,16.98622],[78.11966,16.98292],[78.12477,16.98637],[78.12671,16.99416],[78.13634,16.99298],[78.13581,17.00732],[78.14391,17.0124],[78.15003,17.01344],[78.16014,17.01248],[78.17409,17.00816],[78.17655,16.99753],[78.18331,16.99135],[78.18311,16.98918],[78.18584,16.98828],[78.18493,16.98358],[78.18156,16.97972],[78.18121,16.97342],[78.18641,16.97086],[78.19121,16.96369],[78.19626,16.96117],[78.19861,16.95764],[78.20102,16.95733],[78.20286,16.95393],[78.21119,16.95211],[78.21125,16.94631],[78.21946,16.93878],[78.23305,16.94035],[78.23385,16.94713],[78.24055,16.96348],[78.26167,16.96084],[78.26439,16.96367],[78.26946,16.96477],[78.27705,16.95612],[78.27185,16.93287],[78.2756,16.92321],[78.30156,16.91897],[78.30069,16.90857],[78.30377,16.90136],[78.30409,16.88953],[78.30301,16.8799],[78.29928,16.87892],[78.30493,16.87516],[78.31622,16.87434],[78.32201,16.85767],[78.32047,16.85609],[78.32831,16.85144],[78.32424,16.83972],[78.32287,16.82503],[78.33435,16.80723],[78.33257,16.80151],[78.33327,16.79787],[78.33671,16.79422],[78.34043,16.79297],[78.34224,16.78804],[78.34599,16.78428],[78.34856,16.78568],[78.34792,16.79074],[78.35065,16.79115],[78.35503,16.7965],[78.36672,16.79334],[78.38058,16.78629],[78.38907,16.78392],[78.39096,16.78843],[78.39414,16.78995],[78.39806,16.79892],[78.41321,16.79799],[78.42685,16.78822],[78.43433,16.77824],[78.45295,16.77872],[78.46489,16.77387],[78.47158,16.77758],[78.47342,16.78723],[78.47337,16.80064],[78.47856,16.81718],[78.48029,16.8172],[78.48269,16.82098],[78.51403,16.82174],[78.51914,16.82074],[78.52626,16.8159],[78.53769,16.82146],[78.54334,16.81922],[78.54737,16.82017],[78.5505,16.81823],[78.55864,16.81862],[78.56489,16.81617],[78.57056,16.80612],[78.58171,16.80295],[78.58416,16.79949],[78.58719,16.79931],[78.59079,16.79612],[78.61587,16.79417],[78.61595,16.78392],[78.62353,16.78182],[78.63295,16.77646],[78.6673,16.80388],[78.66719,16.81464],[78.66528,16.8233],[78.66668,16.83241],[78.67619,16.82404],[78.68255,16.81144],[78.68308,16.78881],[78.6527,16.77448],[78.6506,16.77246],[78.65268,16.76695],[78.65929,16.767],[78.66455,16.76043],[78.67235,16.76284],[78.6769,16.76525],[78.67785,16.76738],[78.68376,16.76793],[78.6922,16.76479],[78.69617,16.76551],[78.69605,16.75431],[78.703,16.75785],[78.70989,16.75587],[78.71561,16.75182],[78.72133,16.75186],[78.72601,16.75261],[78.72635,16.75576],[78.73358,16.75813],[78.75443,16.7514],[78.75726,16.74759],[78.76159,16.74871],[78.78081,16.74608],[78.78961,16.76219],[78.79516,16.78534],[78.79314,16.78963],[78.79178,16.80204],[78.79526,16.81225],[78.79782,16.80746],[78.80211,16.82619],[78.78753,16.83167],[78.78902,16.83971],[78.77566,16.84383],[78.78127,16.85979],[78.78084,16.86827],[78.7736,16.8769],[78.77198,16.88249],[78.76787,16.87664],[78.76005,16.87097],[78.75203,16.86241],[78.7498,16.85458],[78.73082,16.86382],[78.72669,16.86968],[78.72825,16.87472],[78.72855,16.8937],[78.73161,16.89993],[78.7355,16.90194],[78.74501,16.91198],[78.74531,16.91491],[78.74116,16.91839],[78.71343,16.92862],[78.70755,16.93395],[78.69583,16.9356],[78.69619,16.93883],[78.69695,16.94208],[78.70142,16.94446],[78.70386,16.94965],[78.70209,16.96453],[78.70729,16.96745],[78.71871,16.96853],[78.73185,16.97315],[78.75636,16.96952],[78.75317,16.97448],[78.75279,16.98177],[78.75391,16.98436],[78.75703,16.98477],[78.76244,16.98183],[78.77407,16.98219],[78.78905,16.9762],[78.7926,16.99125],[78.79897,16.99967],[78.81633,17.00072],[78.82267,17.00571],[78.82503,17.01932],[78.79639,17.02559],[78.7766,17.03149],[78.77714,17.03241],[78.78286,17.04053],[78.7926,17.04178],[78.79707,17.03567],[78.82191,17.03034],[78.8339,17.03639],[78.83745,17.04106],[78.83604,17.05523],[78.84421,17.06846],[78.82814,17.09204],[78.81536,17.0962],[78.81914,17.10899],[78.83336,17.10345],[78.83307,17.11305],[78.78863,17.13762],[78.78849,17.13648],[78.7854,17.1373],[78.78063,17.14363],[78.78003,17.14764],[78.77782,17.14801],[78.77543,17.15138],[78.77365,17.15532],[78.77756,17.16218],[78.78504,17.15909],[78.78926,17.16484],[78.78221,17.17874],[78.7809,17.18633],[78.7726,17.18889],[78.7719,17.19483],[78.75921,17.21397],[78.7979,17.20276],[78.80248,17.20775],[78.80705,17.20783],[78.81621,17.2121],[78.81657,17.22535],[78.82032,17.2283],[78.81923,17.23224],[78.81271,17.23381],[78.80656,17.24044],[78.79789,17.24354],[78.79086,17.24412],[78.78958,17.24221],[78.78708,17.24473],[78.77797,17.24574],[78.77653,17.24806],[78.7696,17.25008],[78.75964,17.25636],[78.75759,17.25936],[78.75326,17.26089],[78.75494,17.26777],[78.75248,17.28138],[78.74994,17.28502],[78.74503,17.28758],[78.74106,17.29575],[78.74123,17.29746],[78.74612,17.29639],[78.75194,17.30211],[78.76222,17.30345],[78.7532,17.32924],[78.74504,17.33082],[78.74057,17.32932],[78.73906,17.32709],[78.73111,17.32639],[78.72003,17.32845],[78.7195,17.33097],[78.72132,17.33103],[78.72127,17.33239],[78.7141,17.33403],[78.71384,17.33918],[78.70708,17.34638],[78.70775,17.35232],[78.71604,17.35888],[78.73075,17.35231],[78.73235,17.35409],[78.7301,17.35919],[78.73728,17.38066],[78.73754,17.38604],[78.72853,17.38541],[78.72295,17.3959],[78.71874,17.40011],[78.71319,17.4007],[78.70529,17.39466],[78.70198,17.39393],[78.69854,17.39514],[78.69256,17.40345],[78.68745,17.40499],[78.68133,17.40345],[78.67631,17.39988],[78.67375,17.39422],[78.67428,17.38604],[78.6729,17.38337],[78.66217,17.37829],[78.65888,17.37877],[78.65172,17.38465],[78.64769,17.38546],[78.63529,17.38314],[78.61341,17.38711],[78.59094,17.38749],[78.57893,17.38954],[78.57848,17.38401],[78.57167,17.38263],[78.57211,17.37796],[78.57437,17.37239],[78.57428,17.36775],[78.57569,17.36871],[78.58157,17.36372],[78.57136,17.3609],[78.55685,17.36122],[78.55688,17.36463],[78.55264,17.37082],[78.54747,17.37305],[78.54147,17.37183],[78.53889,17.36979],[78.53555,17.36238],[78.52978,17.35887],[78.53188,17.34581],[78.52877,17.34909],[78.52749,17.34406],[78.52122,17.34306],[78.51893,17.34562],[78.51794,17.35142],[78.51585,17.35211],[78.50595,17.34873],[78.50737,17.33975],[78.50481,17.33316],[78.50716,17.31855],[78.50305,17.31886],[78.5019,17.32204],[78.49488,17.31824],[78.48954,17.32022],[78.47729,17.31769],[78.47359,17.31477],[78.47261,17.31037],[78.4689,17.30557],[78.46883,17.29801],[78.46109,17.29821],[78.4544,17.30815],[78.45166,17.32367],[78.44337,17.32714],[78.44004,17.33631],[78.42342,17.34066],[78.42321,17.34337],[78.42912,17.34556],[78.42591,17.34859],[78.4272,17.35113],[78.42969,17.35157],[78.43881,17.34621],[78.44227,17.34894],[78.4419,17.35142],[78.43279,17.35897],[78.4269,17.36013],[78.42857,17.37271],[78.41468,17.37071],[78.40223,17.37246],[78.39776,17.37044],[78.38804,17.37088],[78.37943,17.37346],[78.3768,17.37208],[78.37382,17.37273],[78.36789,17.37614],[78.36788,17.37874],[78.36916,17.37921],[78.37939,17.3792],[78.38516,17.38305],[78.38944,17.38294],[78.3951,17.38604],[78.39546,17.39005],[78.39187,17.39139],[78.39547,17.39647],[78.39266,17.3993],[78.39274,17.40182],[78.404,17.40772],[78.40015,17.41941],[78.39496,17.42309],[78.4013,17.42424],[78.40499,17.43242],[78.40979,17.43516],[78.4089,17.44151],[78.40486,17.44467],[78.40461,17.44731],[78.39482,17.44823],[78.39313,17.45956],[78.38816,17.46228],[78.38194,17.47176],[78.3734,17.47799],[78.37461,17.49574],[78.37967,17.50071],[78.38214,17.50877],[78.37495,17.51131],[78.37148,17.5191],[78.36427,17.51921]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"519","area_level":"District","area_name":"Srikakulam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.67778,19.16639],[84.67419,19.16646],[84.67252,19.16455],[84.67091,19.16604],[84.66874,19.16299],[84.66793,19.15417],[84.67102,19.15623],[84.67166,19.14822],[84.66974,19.13794],[84.66669,19.13184],[84.66732,19.12986],[84.65995,19.1315],[84.65426,19.12937],[84.64408,19.13372],[84.64363,19.12971],[84.63102,19.12968],[84.62978,19.12668],[84.61416,19.12789],[84.6072,19.12918],[84.60328,19.13193],[84.59553,19.13245],[84.59601,19.12879],[84.60285,19.12662],[84.60186,19.12318],[84.60552,19.11754],[84.60841,19.10753],[84.61128,19.10685],[84.60955,19.10078],[84.61867,19.10008],[84.61965,19.1044],[84.62548,19.09909],[84.6249,19.09564],[84.62268,19.09386],[84.62501,19.09166],[84.62411,19.08831],[84.626,19.08767],[84.62549,19.08491],[84.63042,19.08439],[84.63193,19.08656],[84.6312,19.0821],[84.63433,19.08867],[84.63678,19.08595],[84.63684,19.08974],[84.64424,19.09291],[84.64704,19.09626],[84.65319,19.09309],[84.65897,19.09443],[84.65868,19.09196],[84.66388,19.08757],[84.66347,19.0824],[84.67085,19.07633],[84.66948,19.07438],[84.66308,19.07461],[84.66113,19.06304],[84.65758,19.06431],[84.65796,19.06556],[84.65467,19.0659],[84.65394,19.06754],[84.64161,19.06727],[84.63711,19.05998],[84.63101,19.06042],[84.62987,19.0617],[84.63064,19.0646],[84.62782,19.06621],[84.61831,19.06587],[84.61705,19.06093],[84.62243,19.05985],[84.62074,19.05614],[84.61761,19.05453],[84.61343,19.05657],[84.61281,19.05353],[84.61427,19.05194],[84.60585,19.0417],[84.60198,19.03244],[84.6009,19.02479],[84.59693,19.02595],[84.59486,19.02497],[84.59415,19.02226],[84.59154,19.02296],[84.58167,19.03009],[84.58126,19.03752],[84.58329,19.04248],[84.57729,19.04047],[84.57868,19.04566],[84.58305,19.04924],[84.58152,19.05302],[84.58182,19.05891],[84.58046,19.06002],[84.58338,19.06815],[84.5831,19.07273],[84.5747,19.06757],[84.57158,19.06958],[84.57388,19.07327],[84.57286,19.07372],[84.5566,19.05658],[84.54327,19.05505],[84.52613,19.04604],[84.52412,19.0487],[84.51638,19.04843],[84.51173,19.04024],[84.50532,19.03386],[84.50047,19.03317],[84.49437,19.029],[84.48877,19.01951],[84.48502,19.01924],[84.48264,19.01657],[84.48293,19.00487],[84.47889,18.98846],[84.47603,18.98804],[84.47434,18.99176],[84.47027,18.99142],[84.46678,18.99388],[84.46489,18.99373],[84.46474,18.99161],[84.46059,18.99306],[84.46036,18.99678],[84.45582,18.99733],[84.45438,19.0],[84.44961,19.003],[84.44483,19.00445],[84.44161,19.00353],[84.44056,19.00741],[84.43712,19.00713],[84.4316,19.01348],[84.42458,19.01395],[84.42573,19.01921],[84.42109,19.02199],[84.42201,19.01275],[84.42406,19.0132],[84.42824,19.00767],[84.4325,19.00655],[84.43222,18.99505],[84.4433,18.9905],[84.44468,18.98326],[84.45243,18.97598],[84.44773,18.97557],[84.44505,18.97324],[84.44605,18.97193],[84.44168,18.96865],[84.43734,18.97037],[84.43107,18.96919],[84.42941,18.96486],[84.432,18.96229],[84.43243,18.95909],[84.42601,18.95275],[84.42422,18.94725],[84.43103,18.93585],[84.42768,18.93209],[84.43857,18.93157],[84.43947,18.92708],[84.43802,18.92046],[84.43111,18.91666],[84.42839,18.90902],[84.42443,18.91035],[84.42053,18.91767],[84.41857,18.91732],[84.41676,18.9146],[84.42047,18.91089],[84.42219,18.90541],[84.42134,18.90116],[84.41802,18.8972],[84.41288,18.89717],[84.40971,18.89512],[84.40009,18.89531],[84.39412,18.90081],[84.39353,18.90433],[84.38556,18.90036],[84.37893,18.90422],[84.37814,18.90329],[84.38505,18.89783],[84.38515,18.89592],[84.39033,18.89582],[84.39596,18.89307],[84.39752,18.89028],[84.39833,18.88368],[84.39761,18.88204],[84.39518,18.88202],[84.39537,18.87977],[84.39213,18.8763],[84.38811,18.88424],[84.38148,18.88643],[84.38335,18.88286],[84.38256,18.88142],[84.37427,18.88652],[84.37068,18.88662],[84.36495,18.88969],[84.36027,18.89455],[84.36255,18.88715],[84.37259,18.87807],[84.37882,18.87815],[84.3842,18.87414],[84.37899,18.8717],[84.37733,18.86451],[84.37423,18.86139],[84.3699,18.86084],[84.3665,18.86402],[84.3645,18.86133],[84.36206,18.86088],[84.35779,18.8693],[84.35605,18.86935],[84.33681,18.89021],[84.33053,18.88322],[84.3256,18.87609],[84.33094,18.86769],[84.33306,18.86051],[84.34163,18.85426],[84.34499,18.84905],[84.36123,18.84216],[84.36126,18.8389],[84.36385,18.83712],[84.3596,18.83121],[84.35211,18.83149],[84.35066,18.82775],[84.35201,18.82711],[84.35125,18.8227],[84.34941,18.82006],[84.34266,18.82222],[84.33932,18.81969],[84.3341,18.81996],[84.33437,18.81771],[84.33106,18.81785],[84.33105,18.81501],[84.33424,18.81519],[84.33692,18.81156],[84.34183,18.80898],[84.34455,18.8018],[84.33901,18.80226],[84.3381,18.80045],[84.33613,18.80107],[84.33645,18.79844],[84.32659,18.79879],[84.32454,18.79484],[84.32493,18.79044],[84.32126,18.78649],[84.31259,18.79037],[84.30898,18.79414],[84.30592,18.79423],[84.30499,18.79826],[84.28866,18.80466],[84.28877,18.79842],[84.28649,18.7923],[84.26812,18.78456],[84.26097,18.78322],[84.25592,18.78799],[84.24903,18.78579],[84.24314,18.78862],[84.24358,18.79152],[84.24128,18.79138],[84.2408,18.79714],[84.23674,18.79855],[84.23383,18.79477],[84.23225,18.79715],[84.22631,18.79877],[84.2239,18.79709],[84.22185,18.79783],[84.21919,18.79492],[84.2144,18.79542],[84.21377,18.794],[84.21891,18.79119],[84.21808,18.79011],[84.20758,18.78915],[84.20045,18.79049],[84.20011,18.79221],[84.1981,18.79081],[84.19534,18.79168],[84.19342,18.78759],[84.19468,18.78332],[84.18994,18.7777],[84.18271,18.78196],[84.17577,18.78008],[84.17229,18.7829],[84.16972,18.78822],[84.16559,18.78776],[84.1635,18.7893],[84.15926,18.78785],[84.15843,18.78289],[84.15651,18.78458],[84.15176,18.78354],[84.14622,18.77716],[84.14039,18.77727],[84.13891,18.7688],[84.14199,18.7643],[84.1374,18.76124],[84.13256,18.7606],[84.1293,18.76533],[84.12468,18.76394],[84.12238,18.76794],[84.11771,18.76554],[84.11349,18.76687],[84.10327,18.76027],[84.09688,18.76054],[84.08946,18.75678],[84.08959,18.76399],[84.08475,18.76427],[84.08523,18.76649],[84.08117,18.76419],[84.08034,18.76535],[84.07642,18.76445],[84.07373,18.77582],[84.06922,18.77815],[84.06799,18.78231],[84.06201,18.78138],[84.05991,18.78242],[84.06056,18.78489],[84.05727,18.78937],[84.06163,18.79073],[84.06137,18.79234],[84.05728,18.79276],[84.05988,18.79918],[84.0511,18.79908],[84.04669,18.80161],[84.04599,18.80506],[84.04426,18.80606],[84.04561,18.81288],[84.03848,18.81643],[84.03778,18.81305],[84.03296,18.8116],[84.02483,18.81548],[84.02522,18.81705],[84.02252,18.8159],[84.01912,18.81792],[84.01917,18.81645],[84.01547,18.81706],[84.01744,18.8128],[84.01573,18.80875],[84.0099,18.81169],[84.00522,18.80874],[84.00107,18.81139],[83.99567,18.81127],[83.99385,18.81361],[83.98721,18.8115],[83.98845,18.8109],[83.98686,18.81005],[83.97785,18.81417],[83.96509,18.81462],[83.96281,18.81289],[83.96096,18.81408],[83.95539,18.80649],[83.95016,18.80518],[83.94174,18.80833],[83.94232,18.81546],[83.9381,18.81585],[83.93754,18.81816],[83.93465,18.81815],[83.93463,18.81628],[83.93165,18.81588],[83.92634,18.82243],[83.92328,18.82183],[83.92263,18.82359],[83.91767,18.8243],[83.9158,18.82796],[83.91199,18.82596],[83.90476,18.8274],[83.89963,18.8244],[83.89613,18.81564],[83.89316,18.81447],[83.89116,18.82509],[83.88773,18.83096],[83.8687,18.85076],[83.85137,18.85956],[83.84601,18.8691],[83.84368,18.87627],[83.8489,18.8999],[83.84579,18.91358],[83.8434,18.91716],[83.84032,18.91851],[83.83071,18.91475],[83.82658,18.91628],[83.82894,18.9306],[83.81973,18.93926],[83.81901,18.9452],[83.82176,18.96023],[83.81052,18.98522],[83.80893,18.99228],[83.79686,19.00092],[83.79512,19.00368],[83.79348,19.00824],[83.79469,19.01798],[83.78052,19.01862],[83.77791,19.01753],[83.77806,19.01547],[83.78128,19.01394],[83.78198,19.00839],[83.7717,19.00808],[83.76691,19.00639],[83.76411,19.0046],[83.76281,18.99849],[83.76065,19.0026],[83.74753,18.99591],[83.74485,18.98798],[83.74591,18.98063],[83.74807,18.97404],[83.75531,18.97132],[83.75407,18.96717],[83.75896,18.95061],[83.76163,18.95046],[83.7639,18.95293],[83.76965,18.95476],[83.77258,18.94432],[83.77622,18.94525],[83.77885,18.93666],[83.78446,18.9336],[83.78505,18.92379],[83.78774,18.91817],[83.78789,18.91587],[83.77824,18.91136],[83.77184,18.91465],[83.76939,18.9143],[83.76317,18.92728],[83.75386,18.92513],[83.75191,18.926],[83.75637,18.91065],[83.76319,18.90711],[83.77098,18.89878],[83.77465,18.89822],[83.77956,18.88167],[83.78903,18.87065],[83.79025,18.86635],[83.79554,18.8602],[83.80508,18.86499],[83.80888,18.86149],[83.81087,18.85664],[83.80531,18.84997],[83.80784,18.84411],[83.81267,18.83904],[83.81235,18.83329],[83.80452,18.82587],[83.79908,18.8249],[83.78402,18.82667],[83.77849,18.82461],[83.774,18.82046],[83.76334,18.82224],[83.75425,18.82742],[83.75084,18.82753],[83.74672,18.82431],[83.74648,18.82111],[83.75404,18.81716],[83.75203,18.81103],[83.74764,18.80836],[83.74629,18.8027],[83.74638,18.79902],[83.75209,18.78798],[83.74615,18.78232],[83.74487,18.77829],[83.73871,18.77166],[83.73426,18.77984],[83.72428,18.7859],[83.71136,18.78834],[83.70966,18.79297],[83.70469,18.79756],[83.69306,18.79733],[83.68854,18.80647],[83.67381,18.7922],[83.66461,18.79475],[83.6626,18.79306],[83.66469,18.7861],[83.65587,18.77786],[83.65046,18.77752],[83.64479,18.77383],[83.63378,18.77232],[83.62499,18.76739],[83.61675,18.76708],[83.61448,18.75949],[83.6073,18.75365],[83.6005,18.7557],[83.59486,18.75352],[83.58626,18.75372],[83.587,18.74325],[83.5899,18.73857],[83.58343,18.73805],[83.57803,18.7352],[83.57712,18.73792],[83.57663,18.73617],[83.5711,18.73788],[83.56852,18.7372],[83.56653,18.7341],[83.56893,18.731],[83.56768,18.72952],[83.56379,18.72931],[83.56054,18.72465],[83.55686,18.72505],[83.55074,18.72222],[83.54855,18.72348],[83.54757,18.71094],[83.53834,18.71042],[83.54158,18.68537],[83.54608,18.68558],[83.55356,18.68264],[83.55466,18.67889],[83.55828,18.67619],[83.55784,18.67269],[83.56145,18.66695],[83.55697,18.65739],[83.55502,18.65792],[83.54996,18.64866],[83.55003,18.64209],[83.55605,18.63809],[83.5533,18.62953],[83.54959,18.62872],[83.54803,18.62522],[83.55205,18.61428],[83.54918,18.59576],[83.5699,18.59452],[83.57068,18.59245],[83.56516,18.58708],[83.55515,18.58485],[83.5506,18.58028],[83.54428,18.58332],[83.54066,18.57617],[83.53817,18.56333],[83.53305,18.56623],[83.53185,18.56001],[83.5266,18.55231],[83.53115,18.54887],[83.53428,18.5523],[83.53837,18.55115],[83.53786,18.5435],[83.53962,18.54077],[83.55102,18.53656],[83.55859,18.53773],[83.55861,18.5427],[83.55638,18.54839],[83.55791,18.55737],[83.56075,18.56128],[83.56451,18.56107],[83.56545,18.56332],[83.56846,18.56331],[83.57652,18.56874],[83.58561,18.56333],[83.60474,18.56217],[83.60794,18.56056],[83.61397,18.56116],[83.61674,18.5633],[83.62416,18.56286],[83.63116,18.55963],[83.63178,18.55581],[83.63154,18.53876],[83.62838,18.53725],[83.63117,18.53425],[83.63066,18.52774],[83.62895,18.52772],[83.62904,18.52203],[83.62713,18.51822],[83.62862,18.51395],[83.62779,18.51066],[83.62318,18.50944],[83.61946,18.50537],[83.60468,18.50708],[83.59888,18.50993],[83.59028,18.509],[83.58332,18.50521],[83.58112,18.49965],[83.58007,18.49203],[83.58745,18.48934],[83.59626,18.48843],[83.59726,18.47679],[83.60918,18.46741],[83.6143,18.46628],[83.61573,18.45394],[83.61346,18.45388],[83.60971,18.45772],[83.60655,18.45767],[83.605,18.46025],[83.60189,18.45918],[83.59068,18.46096],[83.58804,18.45958],[83.58608,18.4482],[83.58292,18.44733],[83.58491,18.44468],[83.58683,18.44508],[83.59584,18.43437],[83.59185,18.42741],[83.58785,18.42937],[83.58727,18.42764],[83.57924,18.43007],[83.57466,18.42642],[83.57527,18.42239],[83.57302,18.41929],[83.57465,18.41485],[83.58144,18.40921],[83.58677,18.41174],[83.59681,18.40823],[83.59866,18.40216],[83.60739,18.38975],[83.60558,18.38146],[83.603,18.38226],[83.60419,18.37782],[83.60323,18.37504],[83.59574,18.37209],[83.59615,18.37071],[83.60124,18.36993],[83.60034,18.36719],[83.59613,18.36849],[83.59339,18.3647],[83.58981,18.36503],[83.58834,18.36138],[83.59142,18.36052],[83.59131,18.35883],[83.5863,18.35634],[83.58582,18.35408],[83.59499,18.34792],[83.59553,18.34418],[83.61146,18.33622],[83.60612,18.33011],[83.6061,18.32827],[83.61482,18.33324],[83.62441,18.33358],[83.62789,18.32189],[83.62926,18.32351],[83.63133,18.32195],[83.64513,18.32081],[83.6571,18.3225],[83.65891,18.31639],[83.66305,18.31547],[83.66637,18.31712],[83.67202,18.31115],[83.67964,18.31351],[83.68181,18.31203],[83.68148,18.30871],[83.6844,18.30898],[83.68593,18.30585],[83.69117,18.30417],[83.69564,18.30679],[83.69663,18.30246],[83.69978,18.30069],[83.70001,18.29793],[83.71001,18.29568],[83.70915,18.29392],[83.70418,18.29221],[83.70332,18.2895],[83.69731,18.28963],[83.69023,18.28484],[83.67425,18.28285],[83.67272,18.27253],[83.66861,18.27102],[83.66785,18.26887],[83.66744,18.26024],[83.66888,18.26023],[83.66661,18.25527],[83.66534,18.24528],[83.6654,18.23779],[83.6673,18.23674],[83.66736,18.23296],[83.66368,18.22568],[83.65596,18.21853],[83.65658,18.21213],[83.6527,18.2072],[83.64444,18.21114],[83.64331,18.21043],[83.64331,18.21342],[83.64191,18.21489],[83.63772,18.21497],[83.63774,18.21781],[83.63595,18.21967],[83.62928,18.21834],[83.62547,18.2123],[83.6087,18.21326],[83.60723,18.20743],[83.60358,18.20668],[83.60405,18.2046],[83.6068,18.20498],[83.60879,18.20287],[83.60403,18.2019],[83.60308,18.19327],[83.60997,18.19271],[83.61227,18.18556],[83.61395,18.1846],[83.61403,18.1792],[83.61166,18.16534],[83.6071,18.16629],[83.60296,18.16465],[83.60238,18.16035],[83.6045,18.15966],[83.60396,18.15774],[83.60617,18.15481],[83.60502,18.14981],[83.60764,18.14673],[83.60743,18.14332],[83.61154,18.1427],[83.61172,18.14013],[83.61865,18.13597],[83.61946,18.13206],[83.62402,18.12934],[83.62442,18.12593],[83.62091,18.1179],[83.62356,18.1127],[83.6307,18.10976],[83.63581,18.10525],[83.64043,18.10781],[83.64479,18.1063],[83.65446,18.09165],[83.66328,18.08689],[83.66578,18.08151],[83.66243,18.07938],[83.66342,18.07783],[83.69494,18.0988],[83.7302,18.11869],[83.77771,18.14234],[83.80526,18.15404],[83.8058,18.15545],[83.79832,18.16066],[83.80028,18.16106],[83.79652,18.16437],[83.79497,18.1684],[83.80154,18.16248],[83.80168,18.16448],[83.80272,18.16279],[83.80428,18.16336],[83.80352,18.15996],[83.80993,18.15603],[83.86039,18.17428],[83.87239,18.1824],[83.87846,18.19027],[83.88817,18.19549],[83.91368,18.20468],[83.93588,18.20904],[83.99716,18.24119],[84.00526,18.24676],[84.07096,18.27659],[84.08211,18.28654],[84.07879,18.28774],[84.08252,18.28793],[84.10042,18.29629],[84.12723,18.31373],[84.12914,18.31706],[84.12638,18.33391],[84.1269,18.34385],[84.13073,18.34529],[84.14741,18.37342],[84.17583,18.40222],[84.2105,18.43391],[84.21529,18.43895],[84.21391,18.43945],[84.21498,18.4413],[84.21632,18.4398],[84.23123,18.45478],[84.28294,18.49953],[84.32295,18.52874],[84.35473,18.55491],[84.35751,18.56359],[84.35542,18.5663],[84.3571,18.57344],[84.36839,18.59313],[84.38626,18.61148],[84.43985,18.6595],[84.4372,18.65795],[84.44119,18.6638],[84.44293,18.67438],[84.45321,18.69291],[84.46966,18.71443],[84.49309,18.74014],[84.51177,18.75788],[84.53099,18.77154],[84.5515,18.79049],[84.55409,18.79605],[84.5541,18.80384],[84.55784,18.81775],[84.56259,18.8249],[84.57491,18.83765],[84.57669,18.84591],[84.5871,18.86744],[84.6049,18.89112],[84.63673,18.92225],[84.671,18.95248],[84.68448,18.96747],[84.68437,18.96892],[84.67749,18.96695],[84.67645,18.96791],[84.68695,18.97087],[84.7077,18.99824],[84.7116,19.00711],[84.71982,19.01572],[84.76146,19.07912],[84.75109,19.08444],[84.7082,19.11572],[84.7028,19.11786],[84.70144,19.12219],[84.70252,19.12586],[84.69784,19.12644],[84.70612,19.14103],[84.70036,19.14297],[84.70126,19.14462],[84.70005,19.14439],[84.70118,19.14706],[84.71052,19.14646],[84.71485,19.15232],[84.71201,19.15828],[84.70998,19.15967],[84.70473,19.1593],[84.7034,19.16117],[84.69692,19.16076],[84.69622,19.15945],[84.6929,19.16121],[84.68435,19.15999],[84.68073,19.16528],[84.67778,19.16639]],[[84.34953,18.79096],[84.35327,18.78989],[84.35171,18.78577],[84.34953,18.79096]],[[84.33888,18.78994],[84.33936,18.77869],[84.3363,18.78287],[84.32927,18.7872],[84.33111,18.78954],[84.33888,18.78994]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"52","area_level":"District","area_name":"Pauri Garhwal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.89215,30.25242],[78.8824,30.26005],[78.87822,30.26025],[78.87513,30.25174],[78.87182,30.25156],[78.85996,30.24363],[78.85794,30.24328],[78.85251,30.24634],[78.84729,30.24646],[78.84656,30.23851],[78.8443,30.23638],[78.83954,30.23704],[78.82666,30.24331],[78.81951,30.23753],[78.82099,30.22955],[78.809,30.22752],[78.80837,30.22123],[78.80671,30.21972],[78.79777,30.22113],[78.79189,30.22813],[78.78734,30.22853],[78.77852,30.22548],[78.76619,30.22595],[78.76258,30.21692],[78.75521,30.21755],[78.74836,30.21311],[78.7189,30.23212],[78.71613,30.23686],[78.71388,30.23636],[78.71344,30.2324],[78.70474,30.23132],[78.69917,30.23636],[78.69244,30.23441],[78.68709,30.23856],[78.68289,30.23856],[78.67986,30.23167],[78.68361,30.22637],[78.68168,30.22375],[78.68376,30.22118],[78.67941,30.21743],[78.68029,30.21014],[78.67014,30.2126],[78.66662,30.21091],[78.66382,30.20607],[78.65789,30.20455],[78.64707,30.20745],[78.64259,30.20373],[78.64316,30.1997],[78.64567,30.19665],[78.64496,30.19442],[78.63253,30.18456],[78.62068,30.17841],[78.62122,30.16774],[78.61897,30.16287],[78.62009,30.15623],[78.61727,30.15084],[78.61475,30.14892],[78.60805,30.14859],[78.60581,30.14307],[78.59754,30.14483],[78.59599,30.13114],[78.60134,30.12676],[78.5975,30.1241],[78.58712,30.12198],[78.58617,30.11923],[78.58856,30.11352],[78.5882,30.10779],[78.58686,30.1052],[78.58093,30.10579],[78.57897,30.10369],[78.58032,30.09987],[78.59208,30.08691],[78.59137,30.08408],[78.58279,30.07557],[78.5824,30.07228],[78.58878,30.07253],[78.60214,30.06817],[78.59872,30.06456],[78.59317,30.06678],[78.59098,30.06609],[78.58891,30.06254],[78.58969,30.05333],[78.588,30.05253],[78.58384,30.05319],[78.57945,30.06134],[78.57699,30.06288],[78.5658,30.06166],[78.56311,30.06903],[78.55075,30.07017],[78.5323,30.07575],[78.52483,30.0738],[78.52261,30.07098],[78.52366,30.06827],[78.52268,30.06577],[78.51409,30.06618],[78.51433,30.05834],[78.51131,30.05493],[78.50676,30.0563],[78.49917,30.06304],[78.50099,30.07438],[78.49717,30.07545],[78.49246,30.07267],[78.488,30.05876],[78.48016,30.05542],[78.47857,30.05745],[78.47924,30.0629],[78.47704,30.06674],[78.46547,30.06445],[78.46014,30.06724],[78.45051,30.06903],[78.44642,30.07388],[78.43483,30.08041],[78.43397,30.09901],[78.43885,30.1112],[78.43591,30.11287],[78.42537,30.113],[78.41922,30.1247],[78.41879,30.12877],[78.41009,30.13538],[78.40096,30.13771],[78.39168,30.13538],[78.39022,30.13188],[78.39218,30.13046],[78.39138,30.12252],[78.38891,30.12069],[78.3821,30.12161],[78.37386,30.1169],[78.36686,30.11933],[78.35615,30.12682],[78.34869,30.12975],[78.34256,30.1352],[78.3329,30.13448],[78.33051,30.1326],[78.33032,30.12694],[78.32865,30.12432],[78.31858,30.12544],[78.30991,30.11992],[78.30855,30.1162],[78.31019,30.10812],[78.30671,30.10321],[78.29571,30.10213],[78.29104,30.09989],[78.28993,30.09556],[78.29297,30.08801],[78.29224,30.08402],[78.28106,30.06073],[78.27639,30.05714],[78.2716,30.04708],[78.26212,30.03893],[78.24752,30.03401],[78.24892,30.02297],[78.24492,30.01759],[78.2275,30.01558],[78.2258,30.00632],[78.23229,29.99856],[78.23153,29.99256],[78.22593,29.98461],[78.21723,29.98687],[78.21479,29.98239],[78.20781,29.97746],[78.20209,29.9661],[78.2138,29.95821],[78.22259,29.94963],[78.22799,29.94816],[78.23472,29.9416],[78.24599,29.93606],[78.24596,29.93396],[78.24985,29.92968],[78.26593,29.92706],[78.27502,29.92265],[78.27495,29.92049],[78.27154,29.91692],[78.27249,29.91354],[78.26903,29.91042],[78.26673,29.90411],[78.27089,29.89859],[78.27627,29.89742],[78.28113,29.88842],[78.28595,29.88337],[78.29178,29.8818],[78.29974,29.87296],[78.31529,29.86228],[78.31741,29.85563],[78.31952,29.83302],[78.33184,29.79891],[78.34701,29.78965],[78.39276,29.76739],[78.40906,29.76338],[78.42851,29.76446],[78.44261,29.7522],[78.45399,29.74593],[78.47369,29.73988],[78.48854,29.73813],[78.50096,29.7329],[78.51297,29.72406],[78.51654,29.7194],[78.51871,29.70177],[78.52145,29.69347],[78.52149,29.65782],[78.53267,29.63875],[78.54081,29.62709],[78.54424,29.62555],[78.56507,29.60109],[78.58036,29.58637],[78.61667,29.55877],[78.62425,29.55654],[78.63851,29.54666],[78.65047,29.546],[78.69972,29.50621],[78.71092,29.50045],[78.72009,29.50217],[78.73059,29.50038],[78.73273,29.50199],[78.73819,29.50019],[78.74501,29.50078],[78.74919,29.49596],[78.75359,29.49619],[78.75655,29.49459],[78.75903,29.49064],[78.77757,29.47714],[78.79967,29.46457],[78.81056,29.46581],[78.82274,29.45975],[78.8402,29.4574],[78.87911,29.44385],[78.9002,29.44149],[78.90545,29.43846],[78.92101,29.43427],[78.92313,29.44222],[78.93346,29.44527],[78.93546,29.44907],[78.93814,29.44851],[78.94271,29.45216],[78.94734,29.45883],[78.95233,29.45856],[78.94979,29.46157],[78.95035,29.46412],[78.95151,29.46416],[78.95443,29.47178],[78.95614,29.4807],[78.95822,29.4815],[78.96304,29.49325],[78.96046,29.49428],[78.95968,29.49688],[78.96239,29.49969],[78.96127,29.50101],[78.96314,29.5051],[78.96162,29.50955],[78.96318,29.51207],[78.96253,29.51905],[78.96352,29.52095],[78.96633,29.51937],[78.96906,29.52001],[78.97085,29.52236],[78.96665,29.52776],[78.97048,29.5387],[78.98073,29.5435],[78.99301,29.55269],[79.00216,29.55162],[79.00613,29.55444],[79.00639,29.55639],[78.99995,29.55943],[78.99845,29.56234],[79.00811,29.57152],[79.00898,29.58605],[79.02177,29.58362],[79.02647,29.58923],[79.0371,29.58454],[79.0404,29.59024],[79.04377,29.59153],[79.05277,29.58718],[79.05729,29.58641],[79.06068,29.58796],[79.06318,29.59936],[79.05929,29.60372],[79.0623,29.60554],[79.06225,29.61045],[79.06531,29.61236],[79.06758,29.61707],[79.06708,29.62048],[79.07153,29.62176],[79.07563,29.61686],[79.08094,29.61581],[79.08232,29.61977],[79.09444,29.62759],[79.0863,29.62942],[79.08464,29.63273],[79.08077,29.63306],[79.07833,29.63708],[79.08128,29.65054],[79.08447,29.6524],[79.08335,29.65453],[79.08582,29.65711],[79.08742,29.6635],[79.09031,29.66377],[79.09625,29.67364],[79.09826,29.67383],[79.10139,29.67187],[79.10341,29.66743],[79.10073,29.6651],[79.10125,29.66196],[79.10534,29.66057],[79.10886,29.66501],[79.10918,29.67648],[79.11622,29.68284],[79.11359,29.68445],[79.11458,29.69136],[79.11201,29.69256],[79.10984,29.69112],[79.10674,29.69375],[79.10475,29.69894],[79.10895,29.70296],[79.11253,29.70401],[79.11199,29.7063],[79.11492,29.70933],[79.11979,29.70966],[79.12113,29.71812],[79.11886,29.72043],[79.11572,29.71932],[79.11532,29.72207],[79.11726,29.72364],[79.11514,29.7244],[79.11607,29.72597],[79.11212,29.72779],[79.11129,29.73124],[79.10881,29.73079],[79.10811,29.7328],[79.10935,29.73742],[79.10793,29.73937],[79.11018,29.742],[79.11147,29.74979],[79.10996,29.75283],[79.11209,29.75812],[79.11241,29.76484],[79.10919,29.77516],[79.11313,29.77325],[79.11482,29.76985],[79.12011,29.77238],[79.12709,29.78153],[79.12709,29.78458],[79.12411,29.78776],[79.12489,29.78992],[79.12293,29.79333],[79.12275,29.79799],[79.11836,29.80256],[79.11787,29.80609],[79.12005,29.80935],[79.11651,29.81345],[79.11656,29.81689],[79.11436,29.8184],[79.11042,29.83243],[79.10219,29.83663],[79.10055,29.84297],[79.09646,29.84717],[79.0969,29.84841],[79.0908,29.85035],[79.08749,29.85595],[79.07693,29.86016],[79.07318,29.85936],[79.06732,29.86242],[79.07179,29.87102],[79.07091,29.87278],[79.077,29.87692],[79.07859,29.88589],[79.08384,29.89086],[79.09077,29.89326],[79.10083,29.89032],[79.10634,29.89375],[79.11882,29.89494],[79.12645,29.90161],[79.1282,29.90647],[79.13979,29.90643],[79.15879,29.91553],[79.16431,29.9153],[79.17283,29.90777],[79.17676,29.90756],[79.18453,29.91895],[79.1894,29.9234],[79.19221,29.94432],[79.1982,29.94626],[79.20482,29.93932],[79.20827,29.94334],[79.21475,29.94064],[79.21835,29.942],[79.22151,29.94622],[79.22661,29.94529],[79.22903,29.94805],[79.22648,29.95201],[79.23187,29.9629],[79.23002,29.97225],[79.21873,29.98588],[79.22397,29.99172],[79.22268,29.99349],[79.22313,30.0006],[79.22019,30.00267],[79.2163,30.01052],[79.21778,30.0226],[79.21073,30.0278],[79.20957,30.03122],[79.20634,30.03185],[79.20237,30.03532],[79.19222,30.03536],[79.18853,30.03824],[79.18896,30.0474],[79.19366,30.05919],[79.20312,30.06316],[79.19959,30.06769],[79.19771,30.07561],[79.19369,30.08044],[79.19337,30.0841],[79.18673,30.0909],[79.18077,30.09054],[79.17239,30.09656],[79.16986,30.09692],[79.16957,30.09396],[79.1603,30.09307],[79.15371,30.09965],[79.15278,30.10457],[79.1539,30.106],[79.15132,30.11193],[79.14457,30.11265],[79.1344,30.11824],[79.13542,30.12411],[79.13385,30.12933],[79.13505,30.1329],[79.1324,30.14005],[79.13346,30.14603],[79.13587,30.15085],[79.14369,30.15458],[79.14414,30.15839],[79.14031,30.16131],[79.13912,30.16631],[79.12617,30.16939],[79.12662,30.1796],[79.1222,30.18002],[79.11196,30.18952],[79.10805,30.18919],[79.10263,30.19523],[79.09755,30.19669],[79.09462,30.2059],[79.09792,30.20597],[79.10122,30.21111],[79.09556,30.21357],[79.09427,30.21633],[79.08803,30.21461],[79.07599,30.22046],[79.07041,30.22002],[79.06871,30.21769],[79.06173,30.2149],[79.05484,30.21646],[79.04742,30.2137],[79.04226,30.21705],[79.03869,30.21629],[79.02933,30.20656],[79.02915,30.19158],[79.0196,30.18478],[79.01032,30.18552],[79.00623,30.18256],[79.00113,30.18404],[78.9977,30.17997],[78.99407,30.17884],[78.97708,30.18004],[78.97213,30.17762],[78.96607,30.17826],[78.95542,30.17471],[78.94773,30.17754],[78.93826,30.17674],[78.92927,30.18143],[78.91938,30.18211],[78.91415,30.18046],[78.89886,30.17997],[78.89835,30.18279],[78.90137,30.19008],[78.90343,30.20175],[78.90229,30.20948],[78.90737,30.20888],[78.90955,30.20244],[78.91481,30.20408],[78.9155,30.21001],[78.91053,30.2128],[78.91303,30.21488],[78.91318,30.21702],[78.91043,30.22242],[78.9148,30.22666],[78.91499,30.23011],[78.90738,30.23498],[78.89076,30.23543],[78.8996,30.24484],[78.89746,30.25087],[78.89215,30.25242]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"520","area_level":"District","area_name":"Visakhapatnam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.49351,18.5434],[82.4919,18.54763],[82.48728,18.5498],[82.48275,18.54872],[82.47347,18.54258],[82.46863,18.5349],[82.46412,18.53287],[82.46098,18.5255],[82.44558,18.51484],[82.44285,18.50843],[82.43813,18.50626],[82.43715,18.50094],[82.43384,18.49789],[82.43791,18.49485],[82.43416,18.49177],[82.43193,18.48691],[82.42048,18.4764],[82.41497,18.47443],[82.40352,18.46422],[82.3968,18.45421],[82.39603,18.44917],[82.38665,18.44501],[82.382,18.43258],[82.37574,18.43003],[82.36421,18.42154],[82.37093,18.41425],[82.37522,18.40634],[82.37962,18.4038],[82.38148,18.38964],[82.38607,18.38627],[82.38402,18.3845],[82.38555,18.36751],[82.37682,18.35984],[82.36988,18.35851],[82.36818,18.35386],[82.36449,18.35277],[82.36311,18.34422],[82.34899,18.33044],[82.34694,18.32883],[82.34409,18.33079],[82.33813,18.32803],[82.33822,18.32671],[82.34048,18.32241],[82.34902,18.31652],[82.35432,18.31722],[82.35587,18.31592],[82.364,18.31846],[82.36753,18.32371],[82.37509,18.32869],[82.37807,18.32706],[82.38427,18.3296],[82.38896,18.32851],[82.39283,18.32596],[82.39506,18.31564],[82.39157,18.3098],[82.39234,18.29795],[82.38089,18.28544],[82.37831,18.28434],[82.3765,18.28068],[82.3659,18.27761],[82.35894,18.28146],[82.34467,18.28055],[82.34044,18.27223],[82.34005,18.26234],[82.33612,18.26117],[82.33336,18.25291],[82.33354,18.25107],[82.33586,18.25],[82.33653,18.24077],[82.32674,18.23638],[82.32441,18.23121],[82.33144,18.22513],[82.33706,18.2243],[82.32843,18.21608],[82.32489,18.21041],[82.31084,18.20409],[82.31354,18.19715],[82.31248,18.19135],[82.31545,18.18403],[82.33737,18.17218],[82.34617,18.17292],[82.35337,18.17169],[82.35912,18.1627],[82.37232,18.14816],[82.36875,18.14317],[82.36753,18.13716],[82.36325,18.13481],[82.35963,18.13629],[82.35493,18.14247],[82.34137,18.15011],[82.34018,18.15057],[82.3388,18.14692],[82.33868,18.14417],[82.34213,18.13724],[82.3342,18.12686],[82.33616,18.12415],[82.33377,18.11925],[82.33567,18.11375],[82.33579,18.10586],[82.3385,18.09911],[82.347,18.09825],[82.34958,18.08563],[82.34732,18.07998],[82.35178,18.07659],[82.34708,18.06995],[82.34388,18.05799],[82.33414,18.05133],[82.33199,18.05246],[82.33214,18.05511],[82.33002,18.05809],[82.32225,18.05991],[82.31897,18.05707],[82.32223,18.04862],[82.31985,18.04476],[82.31658,18.04744],[82.30774,18.04511],[82.30726,18.05005],[82.31033,18.05393],[82.30617,18.05571],[82.29874,18.05528],[82.30012,18.06321],[82.30436,18.0664],[82.3044,18.06812],[82.30201,18.06916],[82.2972,18.06707],[82.29138,18.06891],[82.28767,18.06272],[82.28349,18.0645],[82.27698,18.0582],[82.27261,18.05722],[82.26961,18.05194],[82.26894,18.04519],[82.26161,18.04185],[82.26901,18.03402],[82.27338,18.02245],[82.27123,18.00887],[82.26801,18.0],[82.25611,17.99769],[82.24405,17.99838],[82.23645,18.00266],[82.22346,18.0013],[82.2082,18.01044],[82.2046,18.01501],[82.20531,18.01837],[82.19737,18.01774],[82.1878,18.01473],[82.18354,18.0191],[82.17862,18.02039],[82.18432,18.02879],[82.16884,18.05195],[82.15827,18.05034],[82.15321,18.04787],[82.14678,18.05231],[82.14483,18.04885],[82.13718,18.04394],[82.13349,18.05989],[82.12498,18.05967],[82.12063,18.06423],[82.11365,18.06123],[82.10787,18.06326],[82.10203,18.06024],[82.0964,18.0634],[82.09609,18.06743],[82.08709,18.06893],[82.07664,18.07522],[82.07082,18.06909],[82.06731,18.05804],[82.06487,18.05608],[82.06056,18.05553],[82.05042,18.05814],[82.04044,18.05731],[82.03758,18.06698],[82.03296,18.06943],[82.02708,18.06403],[82.02028,18.0635],[82.00867,18.05766],[82.00622,18.05076],[82.00673,18.0451],[82.01166,18.03524],[82.0103,18.03124],[82.00849,18.02949],[82.00203,18.03006],[81.99427,18.02731],[81.99222,18.02043],[81.98912,18.01834],[81.98251,18.01813],[81.97851,18.01112],[81.98261,18.00518],[81.98456,18.00564],[81.98529,18.00288],[81.9913,18.00234],[81.99654,17.99974],[82.00129,17.98648],[82.00748,17.98181],[82.00804,17.9794],[82.00997,17.98015],[82.00821,17.97282],[82.00952,17.96961],[82.00693,17.96713],[82.00725,17.96525],[82.01213,17.9614],[82.02242,17.95693],[82.02224,17.95234],[82.02611,17.94614],[82.02598,17.94348],[82.02956,17.93931],[82.02701,17.93687],[82.02774,17.93167],[82.0203,17.92751],[82.02037,17.92092],[82.01324,17.91638],[82.0106,17.91134],[82.00797,17.90996],[82.00627,17.90335],[82.0027,17.90084],[82.00357,17.89468],[82.00087,17.88612],[82.00087,17.87941],[82.00486,17.87091],[82.01371,17.86633],[82.01713,17.86213],[82.01674,17.85119],[82.01966,17.83955],[82.00995,17.8278],[82.00794,17.84507],[81.99334,17.84558],[81.99161,17.84977],[81.98738,17.85328],[81.98482,17.85007],[81.97777,17.84825],[81.9708,17.83833],[81.9671,17.82555],[81.96068,17.81791],[81.95597,17.81548],[81.94208,17.81283],[81.93313,17.81424],[81.92331,17.8085],[81.92518,17.80142],[81.91687,17.79839],[81.91182,17.79279],[81.90492,17.79192],[81.89947,17.78929],[81.89166,17.78066],[81.88597,17.77904],[81.88436,17.77636],[81.87839,17.7732],[81.87336,17.76613],[81.87239,17.76008],[81.86874,17.75865],[81.8674,17.75626],[81.86478,17.75788],[81.86163,17.75424],[81.85964,17.75522],[81.85957,17.75351],[81.86777,17.74965],[81.86935,17.74576],[81.87721,17.74141],[81.88297,17.74181],[81.88818,17.74509],[81.89844,17.74523],[81.90795,17.74027],[81.92023,17.7411],[81.92318,17.74262],[81.92994,17.74192],[81.9354,17.7384],[81.9397,17.74011],[81.94709,17.74025],[81.95383,17.74361],[81.96165,17.74378],[81.97252,17.74672],[81.96937,17.74937],[81.96624,17.74939],[81.95965,17.7592],[81.96446,17.76282],[81.98077,17.76995],[81.99746,17.7656],[82.00305,17.75737],[82.0111,17.75254],[82.01614,17.75344],[82.01807,17.74954],[82.01511,17.74609],[82.01476,17.7418],[82.01129,17.73799],[82.02779,17.7281],[82.03056,17.72068],[82.02884,17.71512],[82.03319,17.71414],[82.03154,17.71003],[82.03296,17.70866],[82.02468,17.70301],[82.0287,17.69553],[82.02627,17.68418],[82.01935,17.67649],[82.01973,17.67485],[82.02216,17.67443],[82.02224,17.6693],[82.01636,17.66133],[82.01169,17.66247],[82.00609,17.65912],[82.00792,17.65235],[82.00644,17.64791],[82.01033,17.64667],[82.00753,17.64468],[82.00731,17.64237],[82.00332,17.64129],[82.00179,17.63909],[82.00505,17.62768],[82.01623,17.61844],[82.02448,17.62334],[82.02277,17.62828],[82.02334,17.63237],[82.02835,17.63346],[82.03359,17.63229],[82.04431,17.6399],[82.04682,17.63988],[82.05165,17.64312],[82.05622,17.64089],[82.05641,17.63564],[82.05807,17.63592],[82.06455,17.64357],[82.06799,17.64342],[82.06811,17.64516],[82.07628,17.64461],[82.0791,17.64683],[82.07913,17.64903],[82.08365,17.6505],[82.08524,17.65363],[82.09191,17.65685],[82.10551,17.65071],[82.11663,17.65557],[82.12667,17.65348],[82.13619,17.64854],[82.13729,17.64774],[82.13767,17.63538],[82.14762,17.62706],[82.15188,17.61791],[82.16299,17.61025],[82.16453,17.61202],[82.1815,17.60852],[82.18062,17.60983],[82.18553,17.6141],[82.18464,17.61555],[82.19068,17.61821],[82.19085,17.62254],[82.19575,17.62343],[82.21077,17.63459],[82.22544,17.63902],[82.22997,17.63758],[82.23882,17.62804],[82.2418,17.62773],[82.24866,17.6194],[82.2519,17.62135],[82.25337,17.61964],[82.25928,17.6229],[82.26007,17.6217],[82.26325,17.62353],[82.26759,17.62195],[82.26965,17.6238],[82.27284,17.62293],[82.27347,17.62423],[82.27672,17.62414],[82.27474,17.61186],[82.28895,17.60498],[82.30413,17.58991],[82.3109,17.5908],[82.31403,17.58692],[82.32187,17.58513],[82.32725,17.58545],[82.33159,17.58869],[82.34103,17.58727],[82.34346,17.58197],[82.34172,17.57354],[82.3336,17.5678],[82.33395,17.56503],[82.32907,17.55691],[82.33091,17.53944],[82.33647,17.53114],[82.33757,17.52398],[82.33264,17.51832],[82.33394,17.51166],[82.33135,17.50338],[82.33742,17.5014],[82.3448,17.49441],[82.35923,17.5083],[82.36478,17.51062],[82.37556,17.51076],[82.37867,17.50703],[82.36754,17.48944],[82.373,17.47936],[82.38142,17.4778],[82.38895,17.47902],[82.41031,17.46695],[82.42039,17.47076],[82.43115,17.47049],[82.43152,17.47271],[82.43787,17.4711],[82.43915,17.4781],[82.44403,17.47768],[82.45135,17.48057],[82.45485,17.49385],[82.45245,17.496],[82.44986,17.51117],[82.46554,17.51213],[82.46811,17.52075],[82.46079,17.5302],[82.46166,17.53199],[82.46819,17.53121],[82.46892,17.53235],[82.46671,17.53589],[82.47644,17.52723],[82.47251,17.52169],[82.47578,17.51925],[82.47747,17.5201],[82.48035,17.50122],[82.48719,17.50127],[82.48738,17.49935],[82.49451,17.50017],[82.4974,17.50694],[82.50039,17.50802],[82.50356,17.50793],[82.50731,17.50301],[82.51795,17.50186],[82.52668,17.50295],[82.5318,17.5044],[82.53235,17.50621],[82.53736,17.50659],[82.54732,17.51342],[82.5527,17.5271],[82.55908,17.52197],[82.55984,17.49352],[82.56167,17.49272],[82.56146,17.49105],[82.56346,17.49256],[82.56796,17.49249],[82.56946,17.48601],[82.5782,17.48193],[82.58044,17.47621],[82.58425,17.47499],[82.58536,17.46894],[82.59099,17.46716],[82.59153,17.46491],[82.59704,17.46154],[82.60215,17.45959],[82.60458,17.46032],[82.60411,17.45488],[82.59838,17.44324],[82.58412,17.43015],[82.58303,17.42482],[82.56079,17.40838],[82.56013,17.40171],[82.55702,17.39803],[82.55626,17.39037],[82.54368,17.37418],[82.54334,17.37248],[82.54783,17.36892],[82.54805,17.36169],[82.55252,17.35782],[82.55566,17.35212],[82.5612,17.35323],[82.5659,17.34945],[82.56511,17.34175],[82.55979,17.34171],[82.56044,17.33274],[82.55758,17.32596],[82.55631,17.32423],[82.54783,17.32513],[82.54704,17.32717],[82.53537,17.32733],[82.53474,17.32091],[82.53654,17.31611],[82.53472,17.30581],[82.53001,17.30219],[82.51903,17.30006],[82.51831,17.29858],[82.52126,17.29507],[82.52123,17.28418],[82.52546,17.27171],[82.53887,17.2639],[82.54258,17.24856],[82.56194,17.26157],[82.63446,17.30472],[82.72083,17.35212],[82.81664,17.39401],[82.82124,17.39796],[82.88866,17.42673],[82.95261,17.45733],[82.97478,17.46611],[82.99733,17.48257],[83.01763,17.50596],[83.03255,17.5144],[83.06516,17.52504],[83.1127,17.54575],[83.14875,17.5572],[83.21647,17.5955],[83.23853,17.62995],[83.24828,17.63765],[83.25941,17.64316],[83.26106,17.64717],[83.25989,17.64952],[83.28222,17.66034],[83.28515,17.66633],[83.29487,17.67452],[83.29543,17.68133],[83.29753,17.68527],[83.29691,17.69332],[83.30438,17.69894],[83.30598,17.69749],[83.30602,17.701],[83.31821,17.71],[83.33775,17.71947],[83.3464,17.72615],[83.34696,17.72796],[83.34422,17.731],[83.34395,17.73764],[83.35054,17.74621],[83.35071,17.75034],[83.35459,17.75598],[83.35966,17.76104],[83.37355,17.76837],[83.3858,17.77735],[83.38721,17.77976],[83.38512,17.78359],[83.38902,17.79024],[83.39826,17.80009],[83.41087,17.80936],[83.41145,17.81371],[83.41618,17.82255],[83.41625,17.83368],[83.41231,17.83592],[83.41127,17.83948],[83.4077,17.83955],[83.4071,17.84103],[83.41088,17.84202],[83.40961,17.8436],[83.41158,17.84384],[83.4215,17.85783],[83.44372,17.87278],[83.44753,17.88025],[83.45564,17.88763],[83.45532,17.89634],[83.45865,17.90109],[83.47748,17.91715],[83.49954,17.93122],[83.51302,17.93727],[83.51457,17.9411],[83.52503,17.94728],[83.51871,17.95363],[83.51383,17.9525],[83.51073,17.9551],[83.50649,17.95298],[83.50076,17.95259],[83.4993,17.95082],[83.49416,17.95151],[83.48263,17.94878],[83.47571,17.95338],[83.47529,17.96104],[83.47396,17.96106],[83.47337,17.96463],[83.46639,17.96595],[83.46258,17.9646],[83.46041,17.96191],[83.45154,17.96031],[83.45088,17.94497],[83.44396,17.94581],[83.44377,17.9472],[83.43725,17.94716],[83.43789,17.94504],[83.44271,17.94344],[83.44629,17.93806],[83.44502,17.92792],[83.45057,17.92508],[83.44315,17.92258],[83.43842,17.92954],[83.44013,17.93103],[83.43412,17.93637],[83.43066,17.93557],[83.42883,17.93954],[83.42198,17.94114],[83.42109,17.94561],[83.41515,17.95263],[83.41519,17.95574],[83.41271,17.95618],[83.41176,17.95918],[83.40645,17.96339],[83.40709,17.96879],[83.41395,17.97119],[83.41261,17.9733],[83.41461,17.98703],[83.42048,17.98732],[83.4243,17.99491],[83.42391,18.00132],[83.42044,18.0097],[83.42106,18.01376],[83.41498,18.01581],[83.39278,18.01717],[83.39513,18.02776],[83.40156,18.03716],[83.40398,18.04408],[83.40429,18.04831],[83.40232,18.05192],[83.4037,18.05772],[83.39531,18.05091],[83.38789,18.05056],[83.37858,18.05266],[83.37659,18.05133],[83.36423,18.05681],[83.36584,18.06451],[83.35785,18.06465],[83.35192,18.05635],[83.35377,18.05198],[83.35326,18.04863],[83.34488,18.05089],[83.341,18.04556],[83.33404,18.04576],[83.32062,18.03508],[83.3178,18.02584],[83.30968,18.02913],[83.3073,18.03216],[83.30505,18.03101],[83.30565,18.02796],[83.31183,18.02302],[83.30948,18.01985],[83.31438,18.01592],[83.31518,18.00536],[83.30791,18.00366],[83.30481,18.00755],[83.28888,18.00828],[83.28735,18.00359],[83.29476,17.99781],[83.29319,17.9966],[83.2875,18.00092],[83.28284,18.00096],[83.28025,18.00801],[83.27315,18.0074],[83.27295,18.00369],[83.26914,17.99693],[83.26633,17.99668],[83.26563,17.98833],[83.26091,17.98086],[83.25671,17.97616],[83.25026,17.97342],[83.25219,17.96682],[83.24277,17.95087],[83.23301,17.95022],[83.22419,17.94623],[83.23364,17.93626],[83.2327,17.92758],[83.23617,17.92451],[83.24368,17.92553],[83.24674,17.92843],[83.26089,17.91552],[83.25495,17.9141],[83.24864,17.90847],[83.23907,17.90401],[83.23639,17.89017],[83.235,17.89058],[83.23184,17.88569],[83.23039,17.8811],[83.23096,17.87563],[83.2286,17.87363],[83.22337,17.87317],[83.21725,17.87574],[83.21723,17.88137],[83.21546,17.88267],[83.21113,17.88206],[83.2108,17.87661],[83.20565,17.86302],[83.21403,17.86161],[83.20885,17.85838],[83.20537,17.84739],[83.20162,17.84868],[83.20084,17.84734],[83.1907,17.85229],[83.18604,17.85288],[83.18528,17.84575],[83.1643,17.8489],[83.16126,17.8404],[83.15723,17.84375],[83.14563,17.84512],[83.14854,17.85778],[83.14529,17.86621],[83.14541,17.87024],[83.13598,17.8771],[83.12938,17.87361],[83.12726,17.87704],[83.1245,17.88627],[83.12413,17.89483],[83.12604,17.90174],[83.12338,17.90455],[83.12514,17.90761],[83.12392,17.90985],[83.11942,17.91117],[83.12024,17.91704],[83.11265,17.91877],[83.11299,17.92111],[83.10772,17.92337],[83.10946,17.92933],[83.10713,17.93336],[83.11125,17.93812],[83.1105,17.93931],[83.09206,17.94083],[83.08736,17.93957],[83.08186,17.94163],[83.08082,17.94479],[83.07723,17.94577],[83.06962,17.94426],[83.06682,17.9464],[83.06667,17.95139],[83.06083,17.95302],[83.05694,17.95611],[83.05634,17.96108],[83.05226,17.96414],[83.05007,17.9652],[83.04717,17.96415],[83.04176,17.96766],[83.04112,17.96665],[83.03355,17.97302],[83.02983,17.97397],[83.02145,17.97067],[83.01735,17.97453],[83.0065,17.9773],[83.00801,17.98323],[83.0056,17.98859],[83.0091,17.99609],[83.0117,17.99765],[83.01009,17.99874],[83.01138,18.00548],[83.00726,18.0137],[83.00931,18.02142],[83.00642,18.02339],[83.01548,18.03454],[83.01177,18.03765],[83.00778,18.03548],[83.01491,18.04533],[83.01428,18.05087],[83.02412,18.05984],[83.05092,18.0635],[83.04664,18.07222],[83.05954,18.07356],[83.06678,18.07275],[83.06861,18.07343],[83.07428,18.08568],[83.09959,18.09033],[83.10754,18.09607],[83.12325,18.09685],[83.12731,18.09839],[83.12948,18.10493],[83.12869,18.1089],[83.12525,18.1102],[83.10465,18.1099],[83.10486,18.11139],[83.11544,18.11183],[83.11764,18.11453],[83.12236,18.11536],[83.12072,18.12234],[83.10211,18.13453],[83.10367,18.14169],[83.11147,18.13878],[83.11254,18.14647],[83.11577,18.15275],[83.11838,18.15424],[83.11744,18.15649],[83.10747,18.15849],[83.10857,18.16141],[83.11356,18.16411],[83.11818,18.16982],[83.11279,18.17892],[83.10774,18.18112],[83.10434,18.18887],[83.11391,18.1885],[83.11744,18.18692],[83.1233,18.18049],[83.13269,18.1759],[83.13344,18.18103],[83.1366,18.18487],[83.1413,18.18679],[83.1474,18.18553],[83.15288,18.19057],[83.15165,18.19255],[83.14575,18.19187],[83.14372,18.19975],[83.14834,18.19659],[83.152,18.20008],[83.15788,18.20011],[83.15615,18.20908],[83.16793,18.2111],[83.16882,18.22191],[83.17152,18.22152],[83.17121,18.22464],[83.17422,18.22882],[83.17765,18.22372],[83.18401,18.22318],[83.18065,18.21906],[83.1808,18.21615],[83.18938,18.19808],[83.19032,18.19723],[83.19565,18.19945],[83.20851,18.19093],[83.20881,18.18907],[83.22142,18.18902],[83.22537,18.194],[83.22535,18.19685],[83.2151,18.20131],[83.2216,18.21592],[83.2187,18.22132],[83.21896,18.22468],[83.22671,18.21847],[83.22634,18.2095],[83.22846,18.20531],[83.24145,18.20265],[83.24058,18.22247],[83.23259,18.22364],[83.23237,18.23747],[83.23443,18.2373],[83.23768,18.23092],[83.24633,18.23019],[83.25052,18.22628],[83.25298,18.22755],[83.25998,18.2182],[83.26423,18.21727],[83.26554,18.21548],[83.26687,18.21655],[83.26494,18.22093],[83.2647,18.23107],[83.26357,18.23501],[83.26067,18.23743],[83.25797,18.25091],[83.26135,18.27258],[83.2588,18.27667],[83.24933,18.27956],[83.24936,18.27762],[83.22947,18.28854],[83.22826,18.28821],[83.22736,18.28316],[83.22522,18.28175],[83.22144,18.2829],[83.21922,18.28565],[83.21043,18.28632],[83.21138,18.2911],[83.21018,18.30844],[83.21247,18.31439],[83.2187,18.32146],[83.2209,18.33136],[83.21865,18.33412],[83.21251,18.33519],[83.19053,18.32995],[83.18425,18.32382],[83.17673,18.32095],[83.1742,18.31475],[83.16793,18.3136],[83.16526,18.31418],[83.16586,18.31689],[83.15899,18.32307],[83.16212,18.32795],[83.16136,18.32874],[83.15791,18.32947],[83.15749,18.3264],[83.15413,18.32742],[83.1513,18.32515],[83.14851,18.32715],[83.15112,18.34112],[83.13313,18.34977],[83.12254,18.35079],[83.11189,18.34867],[83.10989,18.35025],[83.11066,18.35271],[83.10588,18.35378],[83.10453,18.35758],[83.09386,18.35311],[83.09154,18.34255],[83.07915,18.34671],[83.07745,18.35206],[83.07874,18.35392],[83.07402,18.36311],[83.07501,18.37094],[83.07984,18.37864],[83.09552,18.39399],[83.10304,18.41025],[83.10368,18.41314],[83.09999,18.41356],[83.08659,18.41219],[83.08443,18.4066],[83.07705,18.40347],[83.05449,18.37999],[83.04308,18.37937],[83.03923,18.38345],[83.03222,18.3835],[83.02951,18.38609],[83.02579,18.38693],[83.02192,18.3917],[83.01598,18.38705],[83.01179,18.38864],[83.00528,18.38276],[82.99683,18.38552],[82.99208,18.37856],[82.99027,18.3806],[82.98728,18.37884],[82.98811,18.37766],[82.98219,18.36812],[82.98318,18.36644],[82.97047,18.36001],[82.96699,18.35893],[82.96011,18.36641],[82.95373,18.36157],[82.93973,18.36082],[82.92603,18.36814],[82.9222,18.37542],[82.91786,18.37528],[82.91308,18.36848],[82.91089,18.37295],[82.90192,18.37407],[82.89419,18.38157],[82.89341,18.38701],[82.89072,18.3905],[82.89778,18.4035],[82.895,18.4241],[82.88156,18.42068],[82.8764,18.42163],[82.8713,18.41846],[82.85641,18.42544],[82.85242,18.4192],[82.84863,18.42372],[82.84584,18.43375],[82.83638,18.43709],[82.83595,18.43929],[82.83122,18.44229],[82.8238,18.4435],[82.82322,18.44726],[82.81875,18.44968],[82.80842,18.45052],[82.80314,18.44925],[82.79538,18.43971],[82.78216,18.43079],[82.78289,18.42261],[82.78743,18.41917],[82.78688,18.41071],[82.79549,18.40909],[82.79954,18.40675],[82.79383,18.40135],[82.79146,18.39614],[82.79386,18.38602],[82.78265,18.38189],[82.78478,18.38041],[82.78876,18.3718],[82.79056,18.36319],[82.77639,18.34924],[82.77409,18.34032],[82.77112,18.33758],[82.76845,18.33806],[82.76482,18.33616],[82.7633,18.33891],[82.75969,18.33961],[82.7581,18.33763],[82.75919,18.33403],[82.7563,18.33331],[82.75518,18.33019],[82.75064,18.33092],[82.74785,18.32897],[82.74287,18.32999],[82.73831,18.32695],[82.74098,18.32261],[82.73605,18.32311],[82.73427,18.32024],[82.72491,18.32453],[82.71502,18.32252],[82.70856,18.31584],[82.70938,18.31318],[82.70166,18.31064],[82.69452,18.31228],[82.69195,18.30764],[82.68442,18.30359],[82.68018,18.30335],[82.67632,18.30656],[82.66677,18.29803],[82.66225,18.2983],[82.65742,18.29607],[82.65494,18.29699],[82.65119,18.30186],[82.64265,18.30203],[82.64072,18.29623],[82.64382,18.28801],[82.65224,18.28114],[82.64854,18.27287],[82.64279,18.27155],[82.64228,18.26377],[82.64712,18.26223],[82.65095,18.251],[82.65249,18.25],[82.64863,18.245],[82.63768,18.2367],[82.63187,18.23926],[82.62755,18.24458],[82.62353,18.24632],[82.61385,18.25842],[82.60721,18.2614],[82.60422,18.26469],[82.59691,18.26479],[82.59678,18.27437],[82.58779,18.27606],[82.58805,18.2803],[82.59215,18.28035],[82.59406,18.2847],[82.59419,18.28697],[82.59102,18.28978],[82.5952,18.29184],[82.59467,18.29822],[82.59866,18.30419],[82.59647,18.30639],[82.59606,18.31028],[82.58517,18.30846],[82.58131,18.31517],[82.58389,18.31976],[82.58847,18.31788],[82.59488,18.32888],[82.60125,18.32534],[82.60894,18.32713],[82.6112,18.33371],[82.60854,18.34004],[82.60288,18.34435],[82.60204,18.35228],[82.61452,18.35091],[82.62123,18.35971],[82.60599,18.36606],[82.60573,18.37005],[82.60322,18.37265],[82.60612,18.37567],[82.60529,18.38203],[82.60152,18.37937],[82.59952,18.37979],[82.59644,18.38297],[82.5948,18.38923],[82.58863,18.39163],[82.58387,18.38673],[82.57583,18.39623],[82.571,18.39467],[82.56243,18.39996],[82.55533,18.39363],[82.55218,18.39791],[82.54088,18.39943],[82.53553,18.40617],[82.54709,18.41261],[82.54719,18.41429],[82.5433,18.41402],[82.54141,18.42191],[82.54562,18.4224],[82.54574,18.42752],[82.55201,18.42857],[82.55058,18.4333],[82.55815,18.43966],[82.55652,18.44297],[82.56095,18.44518],[82.5614,18.44849],[82.55659,18.44982],[82.55482,18.45448],[82.55258,18.45504],[82.54876,18.45305],[82.54237,18.45763],[82.54134,18.45416],[82.54447,18.44938],[82.53956,18.4436],[82.53726,18.44643],[82.53325,18.45866],[82.52739,18.45966],[82.52834,18.46421],[82.52389,18.46349],[82.51942,18.4656],[82.51945,18.46722],[82.52477,18.4717],[82.53084,18.47303],[82.53419,18.47773],[82.53189,18.48049],[82.52785,18.48065],[82.5283,18.48305],[82.53327,18.48828],[82.53199,18.49243],[82.52789,18.49386],[82.52649,18.49629],[82.52966,18.5013],[82.52698,18.50588],[82.53216,18.51099],[82.52597,18.51632],[82.5152,18.5181],[82.51097,18.5176],[82.5051,18.51345],[82.49405,18.52455],[82.48684,18.52752],[82.48594,18.52877],[82.48759,18.53261],[82.48395,18.53545],[82.48134,18.54061],[82.484,18.54332],[82.49116,18.54176],[82.49351,18.5434]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"521","area_level":"District","area_name":"Vizianagaram","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.63764,19.15308],[83.63392,19.15946],[83.62603,19.16267],[83.62779,19.15665],[83.62747,19.15065],[83.62229,19.14782],[83.6208,19.14168],[83.61876,19.14132],[83.61596,19.13705],[83.60797,19.13969],[83.6047,19.13599],[83.60165,19.13553],[83.59889,19.12953],[83.59781,19.11881],[83.60341,19.11213],[83.61061,19.09606],[83.60307,19.09259],[83.60119,19.09491],[83.59295,19.09267],[83.58559,19.08656],[83.58471,19.08371],[83.58702,19.06936],[83.58405,19.06508],[83.58446,19.05757],[83.57977,19.06054],[83.57497,19.0614],[83.56342,19.05785],[83.56035,19.0645],[83.56338,19.07052],[83.567,19.07174],[83.56017,19.08707],[83.55444,19.08653],[83.54905,19.08052],[83.54853,19.07787],[83.55561,19.06336],[83.55541,19.05806],[83.55757,19.0562],[83.55168,19.05455],[83.54688,19.04372],[83.54173,19.04148],[83.53984,19.03347],[83.54149,19.02961],[83.53671,19.0095],[83.53457,19.01309],[83.52591,19.01284],[83.52474,19.01452],[83.52249,19.01207],[83.51624,19.01661],[83.50378,19.01873],[83.50094,19.02066],[83.49546,19.03185],[83.49747,19.03454],[83.49647,19.03547],[83.50847,19.03554],[83.51482,19.02846],[83.5193,19.03907],[83.51313,19.04838],[83.5168,19.05708],[83.51304,19.06068],[83.51099,19.06627],[83.51171,19.07032],[83.50555,19.06605],[83.50178,19.06589],[83.5006,19.06063],[83.48884,19.07335],[83.48084,19.0785],[83.48265,19.08134],[83.48183,19.08513],[83.48633,19.08755],[83.4834,19.09226],[83.47366,19.09527],[83.46798,19.09312],[83.46726,19.08769],[83.46971,19.08572],[83.47049,19.08712],[83.47646,19.08567],[83.47837,19.07927],[83.47299,19.07705],[83.47036,19.08014],[83.46627,19.0799],[83.4631,19.07597],[83.46495,19.07452],[83.4652,19.07101],[83.46229,19.06377],[83.46782,19.06316],[83.4692,19.0611],[83.46952,19.05765],[83.46783,19.05514],[83.47093,19.04864],[83.47072,19.04291],[83.48335,19.03355],[83.4794,19.02212],[83.47958,19.01771],[83.48251,19.01509],[83.48142,19.00979],[83.47968,19.00847],[83.47159,19.00723],[83.46152,19.01234],[83.45225,19.01259],[83.45157,19.00978],[83.44994,19.00966],[83.45066,19.00453],[83.45531,18.99683],[83.45527,18.99126],[83.466,18.99355],[83.46784,18.99108],[83.46418,18.9801],[83.46856,18.98037],[83.46981,18.96932],[83.46783,18.96455],[83.46474,18.96271],[83.46183,18.95478],[83.44586,18.95776],[83.44354,18.96095],[83.44589,18.96591],[83.44033,18.97162],[83.43888,18.97639],[83.4351,18.97586],[83.4292,18.98042],[83.42636,18.98501],[83.41964,18.98893],[83.41532,18.98918],[83.41999,18.99793],[83.41961,19.00026],[83.41706,19.00206],[83.41584,19.0005],[83.4141,19.00368],[83.41128,19.00026],[83.40955,19.00433],[83.4043,19.0046],[83.40422,19.00667],[83.40201,19.00628],[83.40047,19.0094],[83.39598,19.00954],[83.39469,19.00596],[83.38459,19.00126],[83.37261,19.00226],[83.36662,19.0061],[83.36703,19.00935],[83.36529,19.01018],[83.36695,19.01172],[83.36605,19.01287],[83.36748,19.01648],[83.35805,19.01938],[83.34802,19.01692],[83.34292,19.01814],[83.34003,19.00885],[83.33695,19.00597],[83.33636,19.00294],[83.33878,18.99701],[83.33126,18.99899],[83.32721,19.0024],[83.32237,18.99951],[83.31665,19.00126],[83.31065,18.99867],[83.31033,18.99568],[83.3159,18.98717],[83.31523,18.9832],[83.3176,18.98029],[83.31874,18.97341],[83.3283,18.96703],[83.33148,18.96908],[83.33482,18.96852],[83.33252,18.95767],[83.33374,18.95494],[83.33902,18.95278],[83.33784,18.94629],[83.32711,18.94462],[83.32486,18.93748],[83.3265,18.93198],[83.33392,18.92878],[83.33342,18.92621],[83.33522,18.92493],[83.34844,18.92629],[83.34385,18.94112],[83.35017,18.94327],[83.35086,18.9474],[83.34828,18.96038],[83.35092,18.96679],[83.35474,18.9673],[83.36154,18.96315],[83.36713,18.96301],[83.3684,18.96059],[83.36584,18.95694],[83.36838,18.9533],[83.37128,18.94265],[83.38303,18.93694],[83.38738,18.93298],[83.38202,18.92729],[83.37735,18.92561],[83.3706,18.92604],[83.36919,18.92986],[83.37015,18.94172],[83.36098,18.94083],[83.35248,18.94346],[83.35343,18.9306],[83.35749,18.92392],[83.35914,18.91688],[83.3617,18.91599],[83.35983,18.91471],[83.36239,18.91476],[83.36901,18.90809],[83.37512,18.90897],[83.38181,18.91389],[83.38503,18.91332],[83.3932,18.90763],[83.38465,18.90386],[83.37833,18.89695],[83.38353,18.89036],[83.39151,18.88695],[83.39183,18.88229],[83.39881,18.87796],[83.40703,18.87715],[83.41024,18.87432],[83.41475,18.87496],[83.40487,18.86191],[83.40437,18.84756],[83.40588,18.84252],[83.40413,18.84299],[83.37833,18.83066],[83.37519,18.83635],[83.37174,18.83902],[83.37044,18.84291],[83.36815,18.84406],[83.36394,18.84228],[83.35868,18.83493],[83.34934,18.83013],[83.34777,18.82711],[83.33796,18.82436],[83.32825,18.81808],[83.32814,18.81213],[83.33062,18.80635],[83.3194,18.80477],[83.30931,18.8095],[83.29787,18.8017],[83.28434,18.79788],[83.27527,18.7829],[83.28137,18.7746],[83.27135,18.76464],[83.26255,18.76976],[83.25339,18.76756],[83.24325,18.76828],[83.2346,18.77406],[83.22461,18.77509],[83.22235,18.77277],[83.22813,18.76102],[83.22772,18.75524],[83.22537,18.75091],[83.21741,18.74445],[83.21464,18.73337],[83.21245,18.73049],[83.21128,18.73254],[83.21269,18.73758],[83.20737,18.74576],[83.20801,18.74912],[83.20655,18.75144],[83.19319,18.75312],[83.17791,18.77086],[83.16505,18.76894],[83.16415,18.7669],[83.15648,18.76823],[83.15228,18.77269],[83.15181,18.77607],[83.13903,18.78536],[83.138,18.78482],[83.11515,18.76809],[83.12114,18.76584],[83.12363,18.76052],[83.12221,18.7575],[83.11242,18.75281],[83.10761,18.74706],[83.10169,18.73275],[83.09477,18.73138],[83.09261,18.72353],[83.07279,18.70554],[83.07137,18.70164],[83.07501,18.70126],[83.06278,18.68363],[83.05802,18.66531],[83.04423,18.65844],[83.02542,18.65458],[83.02264,18.65122],[83.01672,18.65002],[83.01313,18.64586],[83.01963,18.63512],[83.0089,18.62685],[83.00575,18.62169],[82.99957,18.61953],[83.00047,18.60798],[83.01521,18.60544],[83.01501,18.60209],[83.01269,18.59936],[83.01356,18.59436],[83.0188,18.59347],[83.02379,18.58965],[83.02759,18.59257],[83.04444,18.59947],[83.04672,18.59875],[83.05266,18.601],[83.0531,18.58813],[83.04008,18.58648],[83.03766,18.58102],[83.03127,18.57785],[83.02976,18.57351],[83.03315,18.56979],[83.03843,18.55587],[83.04535,18.54418],[83.05496,18.54398],[83.06193,18.54205],[83.07124,18.54976],[83.07885,18.55039],[83.08094,18.55402],[83.08381,18.55166],[83.08951,18.55299],[83.09504,18.54664],[83.09353,18.53984],[83.08927,18.53891],[83.08364,18.53106],[83.07701,18.52615],[83.07507,18.51457],[83.06401,18.50228],[83.06048,18.50205],[83.05797,18.49684],[83.05521,18.49566],[83.05511,18.48561],[83.03765,18.46862],[83.03073,18.46627],[83.02095,18.45624],[83.02461,18.44846],[83.03289,18.44796],[83.03668,18.4427],[83.04094,18.44079],[83.03776,18.43454],[83.04313,18.42596],[83.04253,18.42423],[83.04598,18.42667],[83.0508,18.43413],[83.05856,18.43668],[83.05998,18.43696],[83.0634,18.43207],[83.06731,18.43009],[83.0655,18.42299],[83.05744,18.41937],[83.06425,18.40941],[83.07684,18.4054],[83.07788,18.40321],[83.08518,18.40738],[83.08659,18.41219],[83.10368,18.41314],[83.09552,18.39399],[83.07984,18.37864],[83.07501,18.37094],[83.07402,18.36311],[83.07874,18.35392],[83.07745,18.35206],[83.079,18.34685],[83.09154,18.34255],[83.09386,18.35311],[83.10453,18.35758],[83.10588,18.35378],[83.11066,18.35271],[83.10989,18.35025],[83.11189,18.34867],[83.12254,18.35079],[83.13313,18.34977],[83.15112,18.34112],[83.14851,18.32715],[83.1513,18.32515],[83.15413,18.32742],[83.15749,18.3264],[83.15791,18.32947],[83.16136,18.32874],[83.16212,18.32795],[83.15899,18.32307],[83.16586,18.31689],[83.16526,18.31418],[83.16793,18.3136],[83.1742,18.31475],[83.17673,18.32095],[83.18425,18.32382],[83.19053,18.32995],[83.21251,18.33519],[83.21766,18.33472],[83.22078,18.33159],[83.22066,18.32958],[83.2187,18.32146],[83.21247,18.31439],[83.21018,18.30844],[83.21055,18.28609],[83.21922,18.28565],[83.22144,18.2829],[83.22522,18.28175],[83.22736,18.28316],[83.22826,18.28821],[83.22947,18.28854],[83.24936,18.27762],[83.24933,18.27956],[83.25861,18.27688],[83.26135,18.27258],[83.25797,18.25091],[83.26067,18.23743],[83.26357,18.23501],[83.2647,18.23107],[83.26494,18.22093],[83.26687,18.21655],[83.26554,18.21548],[83.26423,18.21727],[83.25998,18.2182],[83.25298,18.22755],[83.25052,18.22628],[83.24633,18.23019],[83.23768,18.23092],[83.23443,18.2373],[83.23237,18.23747],[83.23259,18.22364],[83.24058,18.22247],[83.24145,18.20265],[83.22846,18.20531],[83.22634,18.2095],[83.22671,18.21847],[83.2202,18.22421],[83.21809,18.22414],[83.2216,18.21592],[83.2151,18.20131],[83.22547,18.19662],[83.22435,18.19133],[83.22142,18.18902],[83.20881,18.18907],[83.20851,18.19093],[83.19565,18.19945],[83.19032,18.19723],[83.1842,18.20679],[83.18374,18.21107],[83.1808,18.21615],[83.18065,18.21906],[83.18401,18.22318],[83.17765,18.22372],[83.17422,18.22882],[83.17121,18.22464],[83.17152,18.22152],[83.16882,18.22191],[83.16793,18.2111],[83.15615,18.20908],[83.15788,18.20011],[83.152,18.20008],[83.14834,18.19659],[83.14372,18.19975],[83.14575,18.19187],[83.15165,18.19255],[83.15288,18.19057],[83.1474,18.18553],[83.1413,18.18679],[83.1366,18.18487],[83.13344,18.18103],[83.13269,18.1759],[83.1233,18.18049],[83.11744,18.18692],[83.11391,18.1885],[83.10434,18.18887],[83.10774,18.18112],[83.11279,18.17892],[83.11818,18.16982],[83.11356,18.16411],[83.10857,18.16141],[83.10747,18.15849],[83.11744,18.15649],[83.11838,18.15424],[83.11577,18.15275],[83.11254,18.14647],[83.11147,18.13878],[83.10367,18.14169],[83.10211,18.13453],[83.12072,18.12234],[83.12236,18.11536],[83.11764,18.11453],[83.11544,18.11183],[83.10486,18.11139],[83.10465,18.1099],[83.12525,18.1102],[83.12869,18.1089],[83.12948,18.10493],[83.12731,18.09839],[83.12325,18.09685],[83.10754,18.09607],[83.09959,18.09033],[83.07428,18.08568],[83.06861,18.07343],[83.06678,18.07275],[83.05954,18.07356],[83.04664,18.07222],[83.05092,18.0635],[83.02412,18.05984],[83.01428,18.05087],[83.01491,18.04533],[83.00778,18.03548],[83.01177,18.03765],[83.01548,18.03454],[83.00642,18.02339],[83.00931,18.02142],[83.00726,18.0137],[83.01138,18.00548],[83.01009,17.99874],[83.0117,17.99765],[83.0091,17.99609],[83.0056,17.98859],[83.00801,17.98323],[83.0065,17.9773],[83.01735,17.97453],[83.02145,17.97067],[83.02983,17.97397],[83.03355,17.97302],[83.04112,17.96665],[83.04176,17.96766],[83.04717,17.96415],[83.05007,17.9652],[83.05226,17.96414],[83.05634,17.96108],[83.05694,17.95611],[83.06083,17.95302],[83.06667,17.95139],[83.06682,17.9464],[83.06962,17.94426],[83.07723,17.94577],[83.08082,17.94479],[83.08186,17.94163],[83.08736,17.93957],[83.09206,17.94083],[83.1105,17.93931],[83.11125,17.93812],[83.10713,17.93336],[83.10946,17.92933],[83.10772,17.92337],[83.11299,17.92111],[83.11265,17.91877],[83.12024,17.91704],[83.11942,17.91117],[83.12392,17.90985],[83.12514,17.90761],[83.12338,17.90455],[83.12604,17.90174],[83.12413,17.89483],[83.1245,17.88627],[83.12726,17.87704],[83.12938,17.87361],[83.13598,17.8771],[83.14541,17.87024],[83.14529,17.86621],[83.14854,17.85778],[83.14563,17.84512],[83.15723,17.84375],[83.16126,17.8404],[83.1643,17.8489],[83.18528,17.84575],[83.18604,17.85288],[83.1907,17.85229],[83.20084,17.84734],[83.20162,17.84868],[83.20537,17.84739],[83.20885,17.85838],[83.21403,17.86161],[83.20565,17.86302],[83.2108,17.87661],[83.21113,17.88206],[83.21546,17.88267],[83.21723,17.88137],[83.21725,17.87574],[83.22337,17.87317],[83.2286,17.87363],[83.23096,17.87563],[83.23039,17.8811],[83.23184,17.88569],[83.235,17.89058],[83.23639,17.89017],[83.23907,17.90401],[83.24864,17.90847],[83.25495,17.9141],[83.26089,17.91552],[83.24674,17.92843],[83.24368,17.92553],[83.23617,17.92451],[83.2327,17.92758],[83.23364,17.93626],[83.22419,17.94623],[83.23301,17.95022],[83.24277,17.95087],[83.25219,17.96682],[83.25026,17.97342],[83.25671,17.97616],[83.26091,17.98086],[83.26563,17.98833],[83.26633,17.99668],[83.26914,17.99693],[83.27295,18.00369],[83.27315,18.0074],[83.28025,18.00801],[83.28284,18.00096],[83.2875,18.00092],[83.29319,17.9966],[83.29476,17.99781],[83.28735,18.00359],[83.28888,18.00828],[83.30481,18.00755],[83.30791,18.00366],[83.31518,18.00536],[83.31438,18.01592],[83.30948,18.01985],[83.31183,18.02302],[83.30565,18.02796],[83.30505,18.03101],[83.3073,18.03216],[83.30968,18.02913],[83.3178,18.02584],[83.32062,18.03508],[83.33404,18.04576],[83.341,18.04556],[83.34488,18.05089],[83.35326,18.04863],[83.35377,18.05198],[83.35192,18.05635],[83.35785,18.06465],[83.36584,18.06451],[83.36423,18.05681],[83.37659,18.05133],[83.37858,18.05266],[83.38789,18.05056],[83.39531,18.05091],[83.4037,18.05772],[83.40232,18.05192],[83.40429,18.04831],[83.40398,18.04408],[83.40156,18.03716],[83.39513,18.02776],[83.39278,18.01717],[83.41498,18.01581],[83.42106,18.01376],[83.42044,18.0097],[83.42391,18.00132],[83.4243,17.99491],[83.42048,17.98732],[83.41461,17.98703],[83.41261,17.9733],[83.41395,17.97119],[83.40709,17.96879],[83.40645,17.96339],[83.41176,17.95918],[83.41271,17.95618],[83.41519,17.95574],[83.41515,17.95263],[83.42109,17.94561],[83.42198,17.94114],[83.42883,17.93954],[83.43066,17.93557],[83.43412,17.93637],[83.44013,17.93103],[83.43842,17.92954],[83.44315,17.92258],[83.45057,17.92508],[83.44502,17.92792],[83.44629,17.93806],[83.44271,17.94344],[83.43789,17.94504],[83.43725,17.94716],[83.44377,17.9472],[83.44396,17.94581],[83.45088,17.94497],[83.45154,17.96031],[83.46041,17.96191],[83.46582,17.96577],[83.47337,17.96463],[83.47396,17.96106],[83.47529,17.96104],[83.47571,17.95338],[83.48263,17.94878],[83.49416,17.95151],[83.4993,17.95082],[83.50076,17.95259],[83.50649,17.95298],[83.51073,17.9551],[83.51383,17.9525],[83.51871,17.95363],[83.52489,17.94752],[83.53161,17.95099],[83.53236,17.95419],[83.5436,17.96303],[83.55079,17.97582],[83.5583,17.98243],[83.561,17.98849],[83.55906,17.99119],[83.55885,17.99659],[83.56937,18.0118],[83.61194,18.04217],[83.63417,18.0553],[83.65629,18.07139],[83.66578,18.08151],[83.66315,18.08706],[83.65259,18.09371],[83.64479,18.1063],[83.64043,18.10781],[83.63581,18.10525],[83.6307,18.10976],[83.62356,18.1127],[83.62091,18.1179],[83.62442,18.12593],[83.62402,18.12934],[83.61946,18.13206],[83.61865,18.13597],[83.61172,18.14013],[83.61154,18.1427],[83.60743,18.14332],[83.60764,18.14673],[83.60502,18.14981],[83.60617,18.15481],[83.60396,18.15774],[83.6045,18.15966],[83.60238,18.16035],[83.60271,18.16449],[83.6071,18.16629],[83.61166,18.16534],[83.61354,18.17236],[83.61401,18.18432],[83.61227,18.18556],[83.60997,18.19271],[83.60323,18.19295],[83.60403,18.2019],[83.60879,18.20287],[83.60657,18.20507],[83.6042,18.2045],[83.60345,18.20623],[83.60723,18.20743],[83.6087,18.21326],[83.62547,18.2123],[83.62928,18.21834],[83.63595,18.21967],[83.63774,18.21781],[83.63772,18.21497],[83.64191,18.21489],[83.64331,18.21342],[83.64331,18.21043],[83.64444,18.21114],[83.6527,18.2072],[83.65658,18.21213],[83.65596,18.21853],[83.66368,18.22568],[83.66736,18.23296],[83.6673,18.23674],[83.6654,18.23779],[83.66534,18.24528],[83.66661,18.25527],[83.66888,18.26023],[83.66744,18.26024],[83.66785,18.26887],[83.66861,18.27102],[83.67272,18.27253],[83.67425,18.28285],[83.69023,18.28484],[83.69731,18.28963],[83.70332,18.2895],[83.70418,18.29221],[83.70915,18.29392],[83.71001,18.29568],[83.70001,18.29793],[83.69978,18.30069],[83.69663,18.30246],[83.69564,18.30679],[83.69117,18.30417],[83.68593,18.30585],[83.6844,18.30898],[83.68148,18.30871],[83.68181,18.31203],[83.67964,18.31351],[83.67202,18.31115],[83.66637,18.31712],[83.66305,18.31547],[83.65891,18.31639],[83.6571,18.3225],[83.64513,18.32081],[83.63133,18.32195],[83.62926,18.32351],[83.62789,18.32189],[83.62441,18.33358],[83.61482,18.33324],[83.6061,18.32827],[83.60612,18.33011],[83.61146,18.33622],[83.59553,18.34418],[83.59499,18.34792],[83.58582,18.35408],[83.5863,18.35634],[83.59131,18.35883],[83.59142,18.36052],[83.58834,18.36138],[83.58981,18.36503],[83.59339,18.3647],[83.59613,18.36849],[83.60034,18.36719],[83.60124,18.36993],[83.59615,18.37071],[83.59574,18.37209],[83.60323,18.37504],[83.60419,18.37782],[83.603,18.38226],[83.60558,18.38146],[83.60739,18.38975],[83.59866,18.40216],[83.59681,18.40823],[83.58677,18.41174],[83.58144,18.40921],[83.57465,18.41485],[83.57302,18.41929],[83.57527,18.42239],[83.57466,18.42642],[83.57924,18.43007],[83.58727,18.42764],[83.58785,18.42937],[83.59185,18.42741],[83.59584,18.43437],[83.58683,18.44508],[83.58491,18.44468],[83.58292,18.44733],[83.58608,18.4482],[83.58804,18.45958],[83.59068,18.46096],[83.60189,18.45918],[83.605,18.46025],[83.60655,18.45767],[83.60971,18.45772],[83.61346,18.45388],[83.61573,18.45394],[83.6143,18.46628],[83.60918,18.46741],[83.59726,18.47679],[83.59626,18.48843],[83.58745,18.48934],[83.58007,18.49203],[83.58112,18.49965],[83.58332,18.50521],[83.59028,18.509],[83.59888,18.50993],[83.60468,18.50708],[83.61946,18.50537],[83.62318,18.50944],[83.62779,18.51066],[83.62862,18.51395],[83.62713,18.51822],[83.62904,18.52203],[83.62895,18.52772],[83.63066,18.52774],[83.63117,18.53425],[83.62838,18.53725],[83.63154,18.53876],[83.63178,18.55581],[83.63116,18.55963],[83.62416,18.56286],[83.61674,18.5633],[83.61397,18.56116],[83.60794,18.56056],[83.60474,18.56217],[83.58561,18.56333],[83.57652,18.56874],[83.56846,18.56331],[83.56545,18.56332],[83.56451,18.56107],[83.56075,18.56128],[83.55791,18.55737],[83.55638,18.54839],[83.55861,18.5427],[83.55859,18.53773],[83.55102,18.53656],[83.53962,18.54077],[83.53786,18.5435],[83.53837,18.55115],[83.53428,18.5523],[83.53115,18.54887],[83.5266,18.55231],[83.53185,18.56001],[83.53305,18.56623],[83.53817,18.56333],[83.54066,18.57617],[83.54428,18.58332],[83.5506,18.58028],[83.55515,18.58485],[83.56516,18.58708],[83.57068,18.59245],[83.5699,18.59452],[83.54918,18.59576],[83.55205,18.61428],[83.54803,18.62522],[83.54959,18.62872],[83.5533,18.62953],[83.55605,18.63809],[83.55003,18.64209],[83.54996,18.64866],[83.55502,18.65792],[83.55697,18.65739],[83.56145,18.66695],[83.55784,18.67269],[83.55828,18.67619],[83.55466,18.67889],[83.55356,18.68264],[83.54608,18.68558],[83.54158,18.68537],[83.53834,18.71042],[83.54757,18.71094],[83.54855,18.72348],[83.55074,18.72222],[83.55686,18.72505],[83.56054,18.72465],[83.56379,18.72931],[83.56768,18.72952],[83.56893,18.731],[83.56653,18.7341],[83.56852,18.7372],[83.5711,18.73788],[83.57663,18.73617],[83.57712,18.73792],[83.57803,18.7352],[83.58343,18.73805],[83.5899,18.73857],[83.587,18.74325],[83.58626,18.75372],[83.59486,18.75352],[83.6005,18.7557],[83.6073,18.75365],[83.61448,18.75949],[83.61675,18.76708],[83.62499,18.76739],[83.63378,18.77232],[83.64479,18.77383],[83.65046,18.77752],[83.65587,18.77786],[83.66469,18.7861],[83.6626,18.79306],[83.66461,18.79475],[83.67381,18.7922],[83.68854,18.80647],[83.69306,18.79733],[83.70469,18.79756],[83.70966,18.79297],[83.71136,18.78834],[83.72428,18.7859],[83.73426,18.77984],[83.73871,18.77166],[83.74487,18.77829],[83.74615,18.78232],[83.75209,18.78798],[83.74638,18.79902],[83.74629,18.8027],[83.74764,18.80836],[83.75203,18.81103],[83.75404,18.81716],[83.74648,18.82111],[83.74643,18.82407],[83.75084,18.82753],[83.75425,18.82742],[83.76334,18.82224],[83.77212,18.82033],[83.78402,18.82667],[83.80227,18.82532],[83.81205,18.83295],[83.81332,18.8365],[83.80531,18.84997],[83.81087,18.85664],[83.80888,18.86149],[83.80508,18.86499],[83.79554,18.8602],[83.79025,18.86635],[83.78903,18.87065],[83.77956,18.88167],[83.77465,18.89822],[83.77098,18.89878],[83.76319,18.90711],[83.75637,18.91065],[83.75201,18.92463],[83.75337,18.92623],[83.74766,18.93708],[83.74681,18.94358],[83.74097,18.94903],[83.73879,18.96036],[83.7344,18.96918],[83.73246,18.97991],[83.73301,18.98771],[83.71817,18.99342],[83.7142,18.99299],[83.71362,18.99739],[83.70964,19.00216],[83.70883,19.00559],[83.71031,19.00718],[83.71807,19.01043],[83.72121,19.00931],[83.72389,19.01025],[83.73002,19.02196],[83.72447,19.02054],[83.71471,19.02396],[83.70462,19.02341],[83.70062,19.025],[83.69753,19.03376],[83.69302,19.03861],[83.6912,19.0473],[83.68525,19.05853],[83.67659,19.0652],[83.67356,19.073],[83.66393,19.07608],[83.66038,19.08442],[83.66389,19.09219],[83.66282,19.09895],[83.65758,19.10255],[83.65557,19.1088],[83.65105,19.10935],[83.65045,19.11739],[83.64704,19.1184],[83.64964,19.12326],[83.65436,19.12213],[83.65496,19.12962],[83.65271,19.13156],[83.64675,19.12981],[83.64212,19.13192],[83.63701,19.13148],[83.6317,19.14084],[83.63494,19.14966],[83.63441,19.15183],[83.63764,19.15308]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"522","area_level":"District","area_name":"Warangal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.64104,18.26804],[79.63505,18.27651],[79.63727,18.28095],[79.63645,18.28311],[79.63117,18.28489],[79.62832,18.28165],[79.6274,18.27301],[79.62333,18.26804],[79.62155,18.26816],[79.62042,18.2624],[79.60999,18.26222],[79.60668,18.25918],[79.59739,18.26278],[79.58591,18.25966],[79.58209,18.25656],[79.57809,18.24286],[79.59084,18.2262],[79.59171,18.21957],[79.59785,18.21535],[79.59698,18.1982],[79.6127,18.18848],[79.61085,18.18401],[79.60787,18.18499],[79.60978,18.17634],[79.60476,18.17315],[79.60126,18.14146],[79.61324,18.13754],[79.62198,18.13737],[79.62732,18.12459],[79.62698,18.11882],[79.6239,18.11867],[79.62198,18.11672],[79.61416,18.11517],[79.60495,18.11701],[79.6052,18.10706],[79.60326,18.09634],[79.61238,18.09237],[79.6204,18.07342],[79.61772,18.06866],[79.62331,18.06813],[79.62075,18.05246],[79.62217,18.04617],[79.62084,18.03971],[79.64187,18.03818],[79.64266,18.04287],[79.64605,18.03892],[79.65099,18.04224],[79.66662,18.03389],[79.666,18.03281],[79.67166,18.02711],[79.67074,18.02374],[79.65922,18.02372],[79.65189,18.01138],[79.64645,18.00932],[79.63746,18.01185],[79.63139,18.00976],[79.63123,18.00749],[79.63698,18.00568],[79.63661,18.00303],[79.64306,18.00088],[79.64034,17.98546],[79.63109,17.98229],[79.62502,17.97719],[79.62322,17.97732],[79.62206,17.97308],[79.63115,17.96695],[79.63005,17.95975],[79.63163,17.95336],[79.627,17.94062],[79.62553,17.92563],[79.61943,17.92517],[79.61909,17.91791],[79.61417,17.90837],[79.6083,17.90819],[79.60783,17.89741],[79.58743,17.89786],[79.56661,17.91258],[79.55601,17.89106],[79.55616,17.88833],[79.54626,17.88942],[79.5303,17.88262],[79.52867,17.86848],[79.52607,17.8647],[79.52734,17.85786],[79.5247,17.85222],[79.52498,17.83264],[79.52092,17.82953],[79.51402,17.82741],[79.51213,17.82279],[79.51527,17.81596],[79.51344,17.80442],[79.51493,17.79258],[79.51459,17.77409],[79.51087,17.76686],[79.50534,17.74862],[79.49048,17.75447],[79.48644,17.75265],[79.481,17.74524],[79.49082,17.74179],[79.49534,17.73833],[79.50419,17.72419],[79.50229,17.71541],[79.49894,17.71664],[79.49501,17.71551],[79.48688,17.71149],[79.481,17.70531],[79.49022,17.69823],[79.49059,17.69618],[79.48973,17.69001],[79.48132,17.67484],[79.49111,17.66588],[79.48982,17.6629],[79.50354,17.66109],[79.52222,17.66136],[79.52446,17.63311],[79.53645,17.63027],[79.54047,17.63789],[79.54583,17.63008],[79.56369,17.61849],[79.57231,17.61781],[79.57784,17.62037],[79.5777,17.62848],[79.61387,17.63616],[79.61641,17.62184],[79.62148,17.62419],[79.63549,17.62339],[79.65351,17.62796],[79.65786,17.64373],[79.66143,17.64952],[79.67688,17.65059],[79.68006,17.65419],[79.68253,17.65471],[79.68052,17.66117],[79.69137,17.68653],[79.70523,17.68223],[79.71413,17.68384],[79.71364,17.68945],[79.71672,17.6951],[79.71544,17.69784],[79.72154,17.70084],[79.72441,17.69913],[79.72284,17.69589],[79.74155,17.68894],[79.74984,17.68791],[79.75325,17.69083],[79.7596,17.69057],[79.76777,17.68668],[79.77145,17.6891],[79.77129,17.69719],[79.77886,17.70316],[79.78187,17.70308],[79.78384,17.70591],[79.79105,17.70877],[79.80542,17.70025],[79.81901,17.69931],[79.82218,17.69534],[79.82442,17.69516],[79.81897,17.70901],[79.8215,17.71337],[79.84461,17.71871],[79.86358,17.71956],[79.86353,17.7227],[79.86131,17.7231],[79.86134,17.72806],[79.86689,17.73044],[79.86429,17.73521],[79.87209,17.73926],[79.86923,17.74236],[79.87331,17.74169],[79.87875,17.73695],[79.89338,17.7301],[79.89895,17.74124],[79.90367,17.74685],[79.90213,17.75096],[79.90373,17.76168],[79.90035,17.76672],[79.89499,17.7686],[79.88344,17.77936],[79.88262,17.79071],[79.87557,17.80845],[79.88744,17.81153],[79.8865,17.8091],[79.89128,17.80987],[79.89489,17.81373],[79.91069,17.81343],[79.90894,17.81255],[79.91097,17.80472],[79.90995,17.80418],[79.91538,17.79885],[79.91777,17.8094],[79.93093,17.81871],[79.93472,17.82636],[79.9344,17.83409],[79.93868,17.84061],[79.94282,17.83943],[79.94721,17.83568],[79.95156,17.84411],[79.95275,17.86074],[79.96088,17.86428],[79.97538,17.8614],[79.98286,17.87355],[79.98127,17.87668],[79.98467,17.87704],[79.98856,17.87966],[79.98891,17.88161],[79.99117,17.88141],[79.99179,17.88668],[79.99419,17.88947],[79.98874,17.90484],[79.99346,17.91228],[79.99424,17.91701],[79.99059,17.92007],[79.98939,17.92731],[79.98562,17.93119],[79.98584,17.93539],[79.98352,17.94195],[79.97925,17.94668],[79.97673,17.95238],[79.98091,17.94906],[79.98569,17.95367],[79.98585,17.96164],[79.98802,17.96943],[79.98388,17.97094],[79.98636,17.99165],[79.99395,18.00091],[79.98824,18.00481],[79.97935,18.02025],[79.98079,18.0391],[79.98487,18.05376],[79.98123,18.0606],[79.99189,18.10754],[79.97948,18.11191],[79.97545,18.10723],[79.9651,18.10061],[79.9578,18.08948],[79.95076,18.08592],[79.93633,18.0836],[79.90754,18.08468],[79.89328,18.0836],[79.89054,18.08538],[79.88449,18.08572],[79.88715,18.0982],[79.86384,18.09354],[79.86294,18.0954],[79.84959,18.09403],[79.83722,18.0949],[79.83101,18.09275],[79.82322,18.09439],[79.81449,18.0919],[79.81976,18.1131],[79.8241,18.11255],[79.82947,18.12247],[79.842,18.13245],[79.84095,18.13469],[79.83418,18.13754],[79.82781,18.13657],[79.81827,18.14063],[79.81746,18.14466],[79.80922,18.15671],[79.80908,18.16197],[79.80304,18.17731],[79.80369,18.18237],[79.80032,18.19054],[79.80073,18.19473],[79.79604,18.19825],[79.78754,18.19637],[79.78131,18.1908],[79.76335,18.18217],[79.75372,18.17427],[79.74733,18.17866],[79.74401,18.17735],[79.74254,18.18052],[79.74005,18.18112],[79.73475,18.18663],[79.73405,18.18985],[79.724,18.19444],[79.72222,18.19771],[79.7228,18.20056],[79.72719,18.19847],[79.73315,18.20038],[79.73614,18.20284],[79.73582,18.205],[79.72248,18.20946],[79.72289,18.21977],[79.7167,18.22091],[79.71406,18.22772],[79.71486,18.2335],[79.7108,18.24093],[79.70552,18.24655],[79.69532,18.25092],[79.69597,18.25457],[79.7002,18.25793],[79.70167,18.26705],[79.70418,18.27203],[79.69707,18.27773],[79.6707,18.25532],[79.65251,18.25247],[79.64104,18.26804]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"523","area_level":"District","area_name":"West Godavari","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.9984,17.62824],[80.99555,17.62912],[80.98952,17.62658],[80.98424,17.62629],[80.97571,17.61941],[80.96931,17.59838],[80.97673,17.58719],[80.98283,17.58274],[80.9888,17.57242],[80.9984,17.56468],[81.00281,17.55061],[81.00843,17.547],[81.01368,17.53662],[81.01483,17.52213],[81.0199,17.52003],[81.04721,17.51951],[81.08007,17.51505],[81.09135,17.50565],[81.09756,17.50426],[81.10111,17.5056],[81.11746,17.52207],[81.1245,17.52706],[81.12728,17.52642],[81.13848,17.51624],[81.14051,17.50466],[81.14487,17.49508],[81.14215,17.48859],[81.15968,17.48437],[81.14825,17.46365],[81.17555,17.46364],[81.17233,17.44904],[81.18298,17.44025],[81.1933,17.43563],[81.2027,17.43395],[81.2023,17.44066],[81.20526,17.44959],[81.21176,17.44174],[81.21905,17.44228],[81.22143,17.43944],[81.23633,17.43558],[81.24269,17.43206],[81.24551,17.43303],[81.25974,17.42222],[81.26854,17.41826],[81.30051,17.41271],[81.31238,17.40872],[81.31859,17.39842],[81.32264,17.37455],[81.31647,17.369],[81.31631,17.36448],[81.31199,17.36069],[81.3053,17.34591],[81.30111,17.34066],[81.28852,17.32807],[81.27851,17.32341],[81.27403,17.31719],[81.26825,17.32003],[81.24567,17.32579],[81.24463,17.32309],[81.23913,17.32349],[81.23913,17.32084],[81.23357,17.32036],[81.22205,17.32149],[81.21031,17.32605],[81.19041,17.32481],[81.18137,17.30445],[81.17666,17.28767],[81.17957,17.27837],[81.17818,17.26904],[81.18394,17.25835],[81.18759,17.25465],[81.18609,17.24849],[81.17502,17.23697],[81.17301,17.23203],[81.17398,17.23034],[81.15947,17.2308],[81.1276,17.22431],[81.10943,17.22347],[81.09037,17.2196],[81.07961,17.21528],[81.05461,17.22487],[81.05559,17.21956],[81.0495,17.20707],[81.04357,17.20233],[81.03687,17.19248],[81.03127,17.19033],[81.01543,17.1944],[81.00862,17.19186],[80.99845,17.19046],[80.99436,17.19132],[80.97629,17.20027],[80.96029,17.20407],[80.94128,17.21929],[80.91888,17.21974],[80.91676,17.21609],[80.91676,17.21096],[80.92105,17.20028],[80.91845,17.18974],[80.92267,17.18859],[80.92643,17.18348],[80.9252,17.16775],[80.92309,17.16129],[80.92399,17.15785],[80.91659,17.15369],[80.90703,17.15385],[80.8924,17.15937],[80.87944,17.16083],[80.8777,17.14981],[80.87825,17.13514],[80.86778,17.12386],[80.86833,17.12027],[80.87348,17.1141],[80.87643,17.10559],[80.87389,17.09854],[80.87521,17.09545],[80.86833,17.08366],[80.86835,17.0784],[80.87611,17.07488],[80.87801,17.0695],[80.88131,17.06887],[80.88557,17.07091],[80.88801,17.06747],[80.89662,17.06421],[80.90351,17.06616],[80.90629,17.06969],[80.90874,17.06619],[80.91457,17.06638],[80.91855,17.06445],[80.92796,17.0712],[80.93338,17.06754],[80.94256,17.0673],[80.9498,17.05714],[80.9585,17.05136],[80.96337,17.03897],[80.96411,17.03277],[80.95958,17.02122],[80.9597,17.01169],[80.95211,16.99762],[80.95218,16.99137],[80.93657,16.98324],[80.93628,16.97541],[80.93796,16.97167],[80.93507,16.95863],[80.93941,16.95677],[80.94254,16.95297],[80.94323,16.94884],[80.94793,16.94793],[80.9562,16.93566],[80.95782,16.92441],[80.96238,16.9202],[80.96104,16.9118],[80.96588,16.90581],[80.96801,16.89866],[80.97491,16.89535],[80.97828,16.8821],[80.99789,16.83739],[80.99617,16.82765],[81.00877,16.82063],[81.01644,16.82111],[81.01962,16.81311],[81.02466,16.80754],[81.0334,16.80521],[81.03687,16.80766],[81.04121,16.79543],[81.04275,16.78506],[81.03229,16.78247],[81.02721,16.77622],[81.01734,16.77673],[81.01419,16.7696],[81.01025,16.7689],[81.00076,16.75215],[80.99332,16.72708],[80.98939,16.72166],[80.98152,16.72323],[80.98413,16.70211],[80.98892,16.69043],[80.98988,16.68128],[81.00735,16.67208],[80.99874,16.66457],[81.01139,16.65688],[81.01861,16.65015],[81.01114,16.6363],[81.00881,16.6338],[81.00408,16.63336],[80.99975,16.63394],[80.99845,16.63586],[80.9955,16.63552],[80.99549,16.638],[80.9882,16.64461],[80.979,16.65683],[80.97599,16.66503],[80.97258,16.66503],[80.97154,16.66683],[80.9634,16.67017],[80.95435,16.67139],[80.95409,16.66522],[80.96947,16.64644],[80.96978,16.64042],[80.97382,16.63119],[80.97295,16.62624],[80.9784,16.62228],[80.99626,16.59841],[81.00104,16.59537],[81.00137,16.58829],[81.00639,16.5861],[81.01148,16.56012],[81.01857,16.5617],[81.02051,16.55695],[81.02359,16.55707],[81.02639,16.5615],[81.03599,16.56408],[81.03988,16.56158],[81.04011,16.56594],[81.04854,16.56973],[81.06267,16.57044],[81.07198,16.57597],[81.07882,16.57484],[81.09494,16.58726],[81.09217,16.59257],[81.08692,16.59231],[81.08664,16.59906],[81.08914,16.60527],[81.10087,16.60529],[81.10182,16.60145],[81.11566,16.59227],[81.12355,16.59943],[81.12862,16.59864],[81.13705,16.60661],[81.1402,16.60498],[81.14232,16.59808],[81.15154,16.59458],[81.16077,16.60666],[81.16753,16.61951],[81.17269,16.61747],[81.17897,16.61792],[81.18905,16.62124],[81.19202,16.61753],[81.2009,16.61247],[81.20776,16.59656],[81.22822,16.57352],[81.22914,16.57253],[81.23406,16.57441],[81.23652,16.56977],[81.24212,16.57592],[81.23776,16.58587],[81.23759,16.59226],[81.24974,16.59733],[81.26538,16.60647],[81.27356,16.62156],[81.27974,16.65664],[81.29327,16.67149],[81.30736,16.69245],[81.32896,16.68889],[81.33292,16.67994],[81.3338,16.6703],[81.331,16.65412],[81.33022,16.63492],[81.32634,16.62585],[81.32767,16.61934],[81.33689,16.61041],[81.3426,16.60831],[81.34531,16.60387],[81.34887,16.60856],[81.35454,16.61026],[81.35736,16.59825],[81.35739,16.59613],[81.35063,16.59712],[81.35362,16.59405],[81.35333,16.59165],[81.34814,16.59225],[81.34625,16.59107],[81.34757,16.58733],[81.34634,16.584],[81.34798,16.58057],[81.34628,16.57454],[81.34844,16.57073],[81.34901,16.56481],[81.34615,16.55936],[81.34738,16.55317],[81.3449,16.5493],[81.34265,16.53836],[81.34367,16.53027],[81.33957,16.52716],[81.33779,16.5177],[81.33904,16.51286],[81.33485,16.51316],[81.33257,16.5107],[81.33842,16.50489],[81.34269,16.50454],[81.34567,16.50707],[81.35081,16.50513],[81.3569,16.50727],[81.36291,16.50703],[81.36535,16.50076],[81.37077,16.4994],[81.37197,16.49465],[81.36792,16.48353],[81.36899,16.47535],[81.37275,16.47412],[81.37843,16.46779],[81.37819,16.46517],[81.37324,16.45874],[81.38279,16.44832],[81.38846,16.4461],[81.38441,16.44325],[81.38919,16.44248],[81.39144,16.43995],[81.40096,16.4389],[81.39921,16.4337],[81.39983,16.43031],[81.41205,16.42016],[81.41464,16.41902],[81.42134,16.42039],[81.42525,16.4196],[81.42691,16.41083],[81.42972,16.40932],[81.43773,16.39816],[81.4423,16.39822],[81.45275,16.40477],[81.45665,16.40383],[81.46281,16.39846],[81.46999,16.39818],[81.47247,16.39351],[81.48045,16.38772],[81.48529,16.37698],[81.49227,16.37062],[81.51277,16.36997],[81.52277,16.38067],[81.54675,16.37797],[81.55164,16.36905],[81.55459,16.35574],[81.55254,16.34714],[81.62732,16.33798],[81.67551,16.32869],[81.69064,16.32747],[81.69908,16.32443],[81.71065,16.31648],[81.71666,16.32294],[81.71656,16.32682],[81.71352,16.32689],[81.71326,16.33082],[81.71742,16.35182],[81.71703,16.35854],[81.71015,16.37656],[81.70669,16.39241],[81.69882,16.40722],[81.69761,16.41343],[81.69999,16.42279],[81.70769,16.43812],[81.71124,16.44381],[81.71842,16.44727],[81.7215,16.44712],[81.72837,16.44064],[81.73329,16.42594],[81.73643,16.4223],[81.74626,16.42016],[81.74952,16.42274],[81.75487,16.42317],[81.76166,16.42832],[81.76885,16.43986],[81.78209,16.45065],[81.78538,16.46357],[81.78889,16.46315],[81.79921,16.47716],[81.80485,16.48041],[81.80687,16.48348],[81.8115,16.48373],[81.81981,16.49039],[81.84182,16.49344],[81.84641,16.49592],[81.84853,16.50441],[81.84485,16.52917],[81.85169,16.54753],[81.85401,16.55904],[81.85529,16.58],[81.85841,16.59785],[81.85684,16.61203],[81.84201,16.64696],[81.81116,16.67884],[81.80612,16.68934],[81.80223,16.69365],[81.78546,16.70802],[81.7855,16.71389],[81.79484,16.73301],[81.79442,16.7377],[81.79086,16.74541],[81.78485,16.75222],[81.76503,16.76143],[81.75612,16.7734],[81.74955,16.78715],[81.74459,16.79329],[81.74471,16.7975],[81.75016,16.80515],[81.74643,16.80938],[81.74656,16.8113],[81.75329,16.82479],[81.7516,16.85107],[81.74675,16.86625],[81.73326,16.87974],[81.73042,16.9027],[81.73122,16.91417],[81.72431,16.91429],[81.72764,16.92062],[81.72697,16.93282],[81.72924,16.94404],[81.74492,16.96488],[81.74514,16.98449],[81.7419,17.00965],[81.73955,17.01479],[81.73111,17.0207],[81.73139,17.02296],[81.72419,17.03711],[81.72445,17.04486],[81.71869,17.05938],[81.6971,17.08523],[81.68077,17.0945],[81.6772,17.10273],[81.67464,17.11815],[81.66968,17.12333],[81.66485,17.13326],[81.66355,17.15285],[81.65818,17.17028],[81.65259,17.18492],[81.64611,17.19365],[81.64066,17.20726],[81.64212,17.21393],[81.64169,17.22979],[81.65546,17.24921],[81.65677,17.26649],[81.66048,17.27709],[81.664,17.28357],[81.6732,17.28932],[81.67813,17.2895],[81.68026,17.29112],[81.67932,17.30184],[81.67225,17.30801],[81.6426,17.32396],[81.63345,17.32615],[81.6278,17.32472],[81.61859,17.32731],[81.61495,17.33104],[81.61111,17.34326],[81.61481,17.35195],[81.60631,17.36884],[81.60474,17.37584],[81.60992,17.3971],[81.61636,17.40061],[81.61398,17.4071],[81.60901,17.41043],[81.60325,17.41136],[81.59703,17.40984],[81.5913,17.4059],[81.58631,17.40564],[81.57997,17.41506],[81.57601,17.43279],[81.56845,17.4359],[81.56365,17.44001],[81.55233,17.43995],[81.54095,17.43659],[81.53096,17.44035],[81.51728,17.4566],[81.51264,17.47283],[81.50126,17.48053],[81.49468,17.48062],[81.48039,17.46959],[81.4753,17.46752],[81.46465,17.46849],[81.44463,17.46188],[81.41828,17.46542],[81.40704,17.46494],[81.39054,17.47335],[81.3834,17.49158],[81.36351,17.49928],[81.34916,17.49991],[81.34103,17.49557],[81.3136,17.48763],[81.30132,17.49218],[81.29546,17.4961],[81.29257,17.50098],[81.29232,17.51047],[81.2901,17.51959],[81.28161,17.53504],[81.26467,17.55872],[81.25835,17.564],[81.24838,17.56897],[81.24371,17.56936],[81.23648,17.56636],[81.22209,17.56418],[81.21665,17.56619],[81.21079,17.57098],[81.19217,17.57017],[81.17694,17.57398],[81.15149,17.57675],[81.14206,17.57921],[81.12771,17.5864],[81.12806,17.59501],[81.12253,17.60279],[81.11635,17.61778],[81.11062,17.62026],[81.09988,17.61804],[81.08092,17.60986],[81.05969,17.60791],[81.03965,17.59766],[81.03199,17.59684],[81.01469,17.59853],[81.0077,17.60436],[81.00704,17.62171],[80.9984,17.62824]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"524","area_level":"District","area_name":"Bagalkote","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.42205,16.76759],[75.41936,16.76801],[75.41414,16.76543],[75.41307,16.76648],[75.40765,16.76381],[75.40769,16.76146],[75.39239,16.75957],[75.38844,16.76165],[75.38697,16.7604],[75.38435,16.76342],[75.36618,16.76013],[75.36645,16.74242],[75.36368,16.73727],[75.3625,16.72912],[75.36538,16.72272],[75.36265,16.71436],[75.31858,16.71858],[75.28789,16.7151],[75.27921,16.70471],[75.26456,16.69162],[75.26269,16.68069],[75.26593,16.66742],[75.26825,16.64096],[75.26148,16.62042],[75.25532,16.61898],[75.25801,16.61155],[75.2567,16.60926],[75.25885,16.60773],[75.25228,16.60513],[75.24269,16.60803],[75.23137,16.61576],[75.22133,16.61693],[75.19819,16.60869],[75.17706,16.60383],[75.16875,16.59868],[75.15993,16.59029],[75.15718,16.58499],[75.15695,16.56904],[75.16493,16.55398],[75.16591,16.54771],[75.16198,16.53452],[75.15479,16.52838],[75.14995,16.5264],[75.13559,16.52461],[75.13162,16.52181],[75.12607,16.51232],[75.12135,16.50862],[75.11539,16.5061],[75.11043,16.50696],[75.10527,16.51102],[75.10017,16.52652],[75.09023,16.5382],[75.08766,16.55369],[75.08441,16.55926],[75.08029,16.56339],[75.07128,16.56759],[75.06675,16.53938],[75.0076,16.53841],[75.00655,16.53345],[75.00422,16.53343],[75.00414,16.53102],[75.00097,16.52969],[74.99799,16.51757],[74.99445,16.51607],[74.98851,16.50096],[74.98911,16.47709],[74.98627,16.46946],[74.98653,16.46309],[74.99132,16.46285],[74.99154,16.45913],[74.9884,16.45355],[74.99845,16.45446],[75.00187,16.45782],[75.0168,16.45844],[75.0153,16.45257],[75.01773,16.43978],[75.02323,16.44038],[75.02382,16.43555],[75.02796,16.43364],[75.07782,16.43779],[75.07296,16.40439],[75.0494,16.39982],[75.0485,16.39642],[75.04152,16.3962],[75.03963,16.39802],[75.03506,16.38677],[75.03302,16.35785],[75.0346,16.33801],[75.0432,16.31823],[75.0559,16.33042],[75.0651,16.32671],[75.07621,16.33165],[75.08661,16.33044],[75.09627,16.32487],[75.109,16.32865],[75.11741,16.32666],[75.12457,16.33114],[75.12962,16.33086],[75.14865,16.31535],[75.15941,16.32083],[75.16081,16.31624],[75.16011,16.31127],[75.14809,16.28245],[75.1702,16.27969],[75.17355,16.27655],[75.17779,16.27542],[75.18487,16.27598],[75.20317,16.27283],[75.21659,16.26888],[75.22509,16.26218],[75.23409,16.25947],[75.23222,16.25024],[75.2384,16.25097],[75.23394,16.24274],[75.2332,16.23806],[75.22962,16.23336],[75.23051,16.22328],[75.233,16.21795],[75.23231,16.21006],[75.24909,16.20464],[75.26879,16.20802],[75.27307,16.20632],[75.28074,16.19972],[75.28588,16.20125],[75.28886,16.19201],[75.28597,16.18758],[75.28584,16.17942],[75.28434,16.17636],[75.29233,16.17274],[75.28708,16.15132],[75.27581,16.12028],[75.32777,16.11533],[75.33149,16.11857],[75.33834,16.12113],[75.34134,16.12455],[75.34703,16.12375],[75.35436,16.12861],[75.3531,16.11647],[75.35535,16.11532],[75.38949,16.1133],[75.40458,16.11387],[75.40692,16.12624],[75.41188,16.13063],[75.41593,16.11576],[75.43893,16.11548],[75.43576,16.09658],[75.43131,16.09631],[75.42787,16.09294],[75.43117,16.06925],[75.44523,16.06925],[75.4449,16.05286],[75.42799,16.05263],[75.42319,16.05371],[75.41941,16.05663],[75.41541,16.05242],[75.41646,16.03281],[75.42333,16.0329],[75.42607,16.00935],[75.43084,16.00853],[75.43784,16.00302],[75.43596,15.98791],[75.43163,15.97541],[75.43236,15.97],[75.43961,15.96646],[75.43342,15.94555],[75.42979,15.93995],[75.42723,15.92476],[75.42487,15.92137],[75.44153,15.91857],[75.43963,15.91285],[75.43794,15.89359],[75.44662,15.89307],[75.44715,15.8899],[75.44403,15.89057],[75.44327,15.88917],[75.44791,15.88615],[75.46145,15.88675],[75.45871,15.88454],[75.45977,15.88012],[75.46296,15.87912],[75.46367,15.88181],[75.46542,15.88136],[75.46663,15.88043],[75.46561,15.87724],[75.47567,15.87631],[75.47377,15.87529],[75.47405,15.87332],[75.47658,15.87325],[75.47882,15.87107],[75.48022,15.87121],[75.47776,15.87543],[75.48023,15.87766],[75.48255,15.87488],[75.48704,15.87684],[75.49172,15.87295],[75.49784,15.87229],[75.49742,15.87018],[75.5052,15.86179],[75.50233,15.85832],[75.50699,15.85551],[75.50785,15.86018],[75.51963,15.85771],[75.52057,15.85286],[75.51566,15.85412],[75.51434,15.85153],[75.51234,15.85133],[75.51982,15.84603],[75.51941,15.84384],[75.52232,15.84008],[75.52454,15.83981],[75.52886,15.8427],[75.53143,15.84203],[75.53258,15.83995],[75.52989,15.83487],[75.53829,15.83484],[75.53899,15.83313],[75.54696,15.83645],[75.5564,15.83252],[75.55061,15.8279],[75.55024,15.82632],[75.55213,15.82484],[75.55744,15.8288],[75.56302,15.83041],[75.56346,15.83605],[75.56646,15.83833],[75.57128,15.83374],[75.56813,15.8339],[75.56828,15.83136],[75.5657,15.83096],[75.56596,15.82964],[75.57673,15.83058],[75.57551,15.8263],[75.57687,15.82478],[75.58711,15.83333],[75.6,15.82681],[75.60898,15.83061],[75.60541,15.82713],[75.61246,15.82424],[75.61395,15.82119],[75.61656,15.82118],[75.61774,15.83559],[75.62132,15.83404],[75.63087,15.83388],[75.63121,15.83081],[75.63537,15.83343],[75.63703,15.84085],[75.64243,15.84134],[75.64415,15.84016],[75.64281,15.83196],[75.65134,15.83035],[75.65681,15.82658],[75.66156,15.82874],[75.66002,15.83432],[75.66269,15.8378],[75.67215,15.83626],[75.67542,15.83151],[75.67423,15.82445],[75.67604,15.82112],[75.6802,15.82184],[75.6832,15.83016],[75.68862,15.83061],[75.69116,15.82712],[75.69669,15.82464],[75.70855,15.8292],[75.70878,15.82808],[75.71386,15.82764],[75.72192,15.81792],[75.73682,15.81628],[75.73692,15.81342],[75.74479,15.81276],[75.74904,15.81494],[75.7796,15.81716],[75.77743,15.82728],[75.77439,15.82729],[75.77667,15.84897],[75.78028,15.85271],[75.78711,15.84909],[75.7947,15.8492],[75.79763,15.84781],[75.79992,15.85765],[75.80909,15.85469],[75.80818,15.85154],[75.80564,15.85105],[75.80606,15.84859],[75.81367,15.84688],[75.82074,15.84978],[75.82099,15.84548],[75.82949,15.83985],[75.83794,15.83829],[75.84703,15.83881],[75.84677,15.84691],[75.84996,15.86046],[75.84829,15.86277],[75.84873,15.87193],[75.84006,15.87182],[75.83822,15.86497],[75.82801,15.86652],[75.83289,15.87582],[75.83183,15.87814],[75.83375,15.87813],[75.83523,15.8823],[75.83232,15.88681],[75.82971,15.88677],[75.8296,15.89644],[75.82733,15.90035],[75.81187,15.89992],[75.81033,15.8937],[75.79787,15.89672],[75.77907,15.8974],[75.77831,15.90015],[75.77355,15.90241],[75.77417,15.90418],[75.77798,15.90461],[75.77886,15.9075],[75.77524,15.91412],[75.77616,15.91825],[75.78852,15.92502],[75.79074,15.92303],[75.8114,15.92366],[75.8108,15.92532],[75.82574,15.9271],[75.83067,15.9251],[75.83651,15.92565],[75.83953,15.93094],[75.84331,15.93101],[75.8471,15.93433],[75.85319,15.93557],[75.8673,15.93199],[75.87817,15.93171],[75.88325,15.92384],[75.8915,15.91626],[75.90278,15.91819],[75.90169,15.92353],[75.91404,15.91241],[75.92707,15.89501],[75.92589,15.88659],[75.92871,15.88246],[75.92829,15.87564],[75.9415,15.8745],[75.94441,15.86693],[75.96342,15.86545],[75.96634,15.85919],[75.9743,15.86178],[75.97904,15.87333],[75.97876,15.88167],[75.97529,15.89669],[75.9767,15.90043],[75.97413,15.92252],[75.97675,15.92995],[75.97629,15.94305],[75.97765,15.95152],[75.97432,15.95242],[75.97584,15.96145],[75.9736,15.98633],[75.97686,15.99009],[75.98706,15.99595],[75.98968,15.9993],[75.98964,16.00524],[76.01214,16.00213],[76.01298,16.0035],[76.01768,16.00339],[76.02161,16.00918],[76.05212,16.00328],[76.05238,16.00575],[76.0566,16.00561],[76.05663,16.01181],[76.07878,16.01079],[76.08373,16.001],[76.08446,15.99615],[76.07811,15.97582],[76.07259,15.96525],[76.07082,15.94845],[76.06262,15.91985],[76.06272,15.91547],[76.05815,15.90741],[76.07059,15.90265],[76.10117,15.90055],[76.10301,15.89391],[76.11723,15.88634],[76.12536,15.89367],[76.14524,15.89531],[76.15397,15.91481],[76.15697,15.91607],[76.16052,15.92122],[76.16432,15.92132],[76.17201,15.92467],[76.17233,15.9316],[76.18996,15.93168],[76.19966,15.93512],[76.20105,15.93829],[76.20038,15.94381],[76.22655,15.94087],[76.22994,15.92322],[76.25689,15.92277],[76.25726,15.91538],[76.26138,15.91482],[76.26207,15.90667],[76.27157,15.90498],[76.27438,15.9105],[76.27597,15.91047],[76.27757,15.9094],[76.2761,15.90381],[76.28464,15.90274],[76.28528,15.92896],[76.3018,15.93063],[76.30233,15.92359],[76.31205,15.92262],[76.31324,15.92939],[76.32849,15.93226],[76.32782,15.93974],[76.32269,15.95597],[76.30944,15.95724],[76.30139,15.97516],[76.29803,15.98953],[76.29791,15.99905],[76.31189,16.00011],[76.31136,16.01291],[76.30542,16.02527],[76.30292,16.03822],[76.30586,16.06337],[76.30556,16.06651],[76.30338,16.06669],[76.3032,16.07345],[76.28371,16.0753],[76.25881,16.07399],[76.25671,16.0858],[76.25814,16.09045],[76.29381,16.08839],[76.30053,16.08395],[76.30587,16.08383],[76.32796,16.07752],[76.33228,16.09195],[76.31691,16.09551],[76.30444,16.10111],[76.28821,16.10575],[76.28092,16.10591],[76.2678,16.10971],[76.26184,16.09681],[76.25546,16.09707],[76.25253,16.1051],[76.25418,16.11023],[76.24413,16.11368],[76.24472,16.12252],[76.24722,16.12634],[76.24648,16.12811],[76.23416,16.13071],[76.23868,16.16673],[76.16469,16.18603],[76.15563,16.18567],[76.13924,16.1811],[76.12065,16.19121],[76.09568,16.19828],[76.08287,16.20547],[76.06771,16.20756],[76.06313,16.21048],[76.05956,16.21794],[76.05786,16.22767],[76.05908,16.23259],[76.06802,16.24374],[76.06768,16.2557],[76.06531,16.26207],[76.05866,16.27132],[76.03985,16.28265],[76.03244,16.28941],[76.02641,16.30067],[76.00946,16.30453],[75.999,16.30333],[75.99219,16.2996],[75.97757,16.29988],[75.96233,16.29635],[75.95602,16.2972],[75.93045,16.31577],[75.90005,16.32285],[75.89122,16.32701],[75.87327,16.3447],[75.86769,16.34633],[75.85174,16.34638],[75.84048,16.34905],[75.82649,16.3611],[75.81029,16.37029],[75.78919,16.37406],[75.78189,16.37974],[75.77318,16.38322],[75.75616,16.38482],[75.74842,16.38845],[75.72081,16.39099],[75.70302,16.40778],[75.68866,16.41438],[75.67781,16.42419],[75.67301,16.42588],[75.67115,16.42483],[75.64479,16.43951],[75.63277,16.44432],[75.60739,16.44794],[75.59943,16.44652],[75.58398,16.43256],[75.57826,16.42297],[75.57509,16.41278],[75.56734,16.41254],[75.56071,16.41698],[75.55596,16.42668],[75.55191,16.44488],[75.55345,16.45147],[75.55219,16.45592],[75.54601,16.46236],[75.53632,16.46624],[75.52901,16.46551],[75.49906,16.45357],[75.49562,16.44669],[75.49847,16.43071],[75.4953,16.42446],[75.48852,16.41854],[75.47905,16.41595],[75.46489,16.41834],[75.45659,16.41239],[75.44764,16.41403],[75.43372,16.42935],[75.43235,16.43661],[75.44873,16.45446],[75.46322,16.47379],[75.46329,16.47639],[75.45909,16.48424],[75.4555,16.50669],[75.48587,16.5086],[75.48862,16.52029],[75.49039,16.52098],[75.49073,16.52602],[75.49065,16.52945],[75.48846,16.53014],[75.48836,16.5551],[75.48477,16.55504],[75.48459,16.55722],[75.47951,16.5574],[75.48073,16.56117],[75.47224,16.56336],[75.47295,16.56696],[75.47806,16.56738],[75.48387,16.5731],[75.48531,16.5757],[75.48486,16.5808],[75.49113,16.58563],[75.49361,16.59315],[75.49143,16.59894],[75.48492,16.60643],[75.47396,16.61211],[75.46205,16.62256],[75.46102,16.63561],[75.45688,16.64739],[75.45494,16.66386],[75.44721,16.6651],[75.4378,16.69785],[75.4626,16.69991],[75.4883,16.69449],[75.49176,16.72432],[75.49201,16.74419],[75.49152,16.74589],[75.47696,16.74732],[75.46529,16.75492],[75.44275,16.75727],[75.42604,16.76793],[75.42205,16.76759]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"525","area_level":"District","area_name":"Bengaluru Urban","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.55233,13.23208],[77.5432,13.23284],[77.54214,13.22724],[77.53862,13.22588],[77.53686,13.21902],[77.52657,13.22111],[77.52211,13.21437],[77.52233,13.20877],[77.52227,13.2106],[77.52039,13.21109],[77.51894,13.20913],[77.52101,13.21461],[77.51796,13.21867],[77.51835,13.22029],[77.51196,13.22448],[77.51144,13.22857],[77.5065,13.22883],[77.50565,13.22516],[77.4989,13.22717],[77.48797,13.22239],[77.47991,13.2234],[77.47418,13.21126],[77.47442,13.2062],[77.47809,13.2062],[77.47833,13.20505],[77.47671,13.18914],[77.4756,13.18468],[77.46927,13.17469],[77.46788,13.16247],[77.46161,13.16209],[77.46067,13.16076],[77.44363,13.1666],[77.43179,13.16509],[77.40859,13.1237],[77.39755,13.12351],[77.39707,13.11869],[77.39338,13.11848],[77.39272,13.11503],[77.40131,13.11814],[77.40087,13.11171],[77.40893,13.10711],[77.4179,13.10492],[77.4155,13.10181],[77.41876,13.09787],[77.41595,13.0932],[77.42136,13.09124],[77.42048,13.08654],[77.42279,13.08599],[77.42394,13.08745],[77.42878,13.08603],[77.4237,13.07027],[77.41601,13.07073],[77.41144,13.07358],[77.39771,13.0732],[77.39535,13.07096],[77.38332,13.06692],[77.38303,13.05722],[77.38606,13.05535],[77.39009,13.05576],[77.39402,13.05295],[77.3918,13.05171],[77.38915,13.02653],[77.37928,13.02653],[77.37557,13.02876],[77.3769,13.02172],[77.3757,13.01486],[77.36991,13.01326],[77.36908,13.00646],[77.37137,13.00338],[77.3702,13.00032],[77.37182,12.99214],[77.3666,12.991],[77.36494,12.98722],[77.36073,12.98954],[77.3559,12.98605],[77.35526,12.98083],[77.35184,12.97589],[77.33805,12.97282],[77.33731,12.97778],[77.33303,12.97865],[77.32873,12.97764],[77.32617,12.97389],[77.32561,12.97133],[77.33008,12.96292],[77.33298,12.95014],[77.33948,12.94408],[77.33554,12.93798],[77.33643,12.9284],[77.33932,12.92362],[77.33655,12.91215],[77.34339,12.88799],[77.33324,12.88792],[77.33542,12.8843],[77.335,12.87839],[77.34488,12.87645],[77.3463,12.8701],[77.3656,12.87161],[77.36976,12.85761],[77.37941,12.85488],[77.37988,12.85762],[77.38538,12.85706],[77.38521,12.85903],[77.39003,12.86051],[77.3974,12.86833],[77.40266,12.86541],[77.40216,12.86993],[77.40389,12.87388],[77.41039,12.87659],[77.41579,12.87521],[77.41579,12.8717],[77.42122,12.87168],[77.42989,12.87539],[77.42922,12.87059],[77.41839,12.86952],[77.4289,12.85666],[77.42664,12.85031],[77.43786,12.85018],[77.43379,12.84433],[77.43455,12.83917],[77.42964,12.83957],[77.42512,12.83778],[77.42225,12.83437],[77.41959,12.82626],[77.43138,12.82176],[77.43344,12.82333],[77.43546,12.82071],[77.43401,12.8167],[77.43604,12.81035],[77.43987,12.81119],[77.44359,12.80823],[77.44444,12.81001],[77.44623,12.80999],[77.44657,12.8148],[77.44936,12.81781],[77.45158,12.81805],[77.45955,12.81448],[77.46588,12.80861],[77.46839,12.81102],[77.47049,12.80953],[77.47469,12.81073],[77.48004,12.80863],[77.47897,12.80465],[77.48209,12.80085],[77.48469,12.80077],[77.47629,12.79677],[77.47105,12.79959],[77.4693,12.79506],[77.47772,12.78151],[77.47401,12.76445],[77.47635,12.76227],[77.47355,12.75692],[77.48357,12.74896],[77.48613,12.74279],[77.49891,12.73932],[77.50324,12.73659],[77.50492,12.73238],[77.50529,12.73522],[77.51012,12.73816],[77.51381,12.75022],[77.52088,12.74435],[77.51853,12.73673],[77.52127,12.73241],[77.52414,12.7387],[77.53264,12.74856],[77.53222,12.75185],[77.53431,12.75596],[77.54071,12.75016],[77.54632,12.77006],[77.55232,12.77218],[77.54404,12.77598],[77.54881,12.78598],[77.54315,12.7942],[77.54307,12.79744],[77.54489,12.79865],[77.5486,12.80047],[77.55693,12.7991],[77.55471,12.78856],[77.56279,12.78711],[77.56147,12.784],[77.55545,12.78142],[77.5561,12.77689],[77.55895,12.76646],[77.56547,12.75895],[77.56972,12.76065],[77.57161,12.7649],[77.57083,12.77803],[77.58042,12.78723],[77.59053,12.78176],[77.59791,12.76346],[77.59799,12.75898],[77.59473,12.7523],[77.57609,12.75208],[77.56971,12.74166],[77.56764,12.73447],[77.57024,12.73192],[77.56893,12.72979],[77.56473,12.7325],[77.55579,12.73274],[77.55937,12.71465],[77.56511,12.70261],[77.56743,12.70109],[77.57933,12.70864],[77.59414,12.72208],[77.61544,12.70917],[77.61318,12.69925],[77.60554,12.69222],[77.59936,12.6727],[77.5955,12.66854],[77.59517,12.66381],[77.59726,12.65744],[77.59887,12.66716],[77.62391,12.6739],[77.63788,12.67571],[77.65991,12.68384],[77.67638,12.67947],[77.67509,12.67309],[77.67714,12.67144],[77.67865,12.66039],[77.68993,12.65899],[77.69219,12.66084],[77.70236,12.66081],[77.71101,12.66712],[77.71159,12.68314],[77.72277,12.67965],[77.72462,12.67119],[77.73993,12.67299],[77.74118,12.67546],[77.74101,12.68577],[77.73495,12.692],[77.73746,12.69775],[77.74068,12.69987],[77.75429,12.69734],[77.76175,12.69758],[77.7647,12.70108],[77.76575,12.71374],[77.76955,12.71252],[77.77032,12.71787],[77.77445,12.72421],[77.76109,12.72749],[77.76333,12.73689],[77.76945,12.74029],[77.78006,12.74202],[77.78356,12.74121],[77.79296,12.74818],[77.79439,12.75762],[77.7845,12.76238],[77.77878,12.76776],[77.78954,12.78016],[77.79292,12.78798],[77.79856,12.79512],[77.80037,12.79443],[77.80221,12.79626],[77.80403,12.79423],[77.80665,12.79406],[77.80854,12.79673],[77.80728,12.79939],[77.8051,12.7996],[77.8034,12.80481],[77.79973,12.80522],[77.80216,12.817],[77.8099,12.81553],[77.80796,12.82304],[77.80988,12.83153],[77.7959,12.83453],[77.79246,12.8427],[77.79489,12.84562],[77.79675,12.84478],[77.79911,12.85154],[77.80792,12.84767],[77.81555,12.85579],[77.82308,12.85584],[77.82579,12.85994],[77.83246,12.86204],[77.83216,12.86752],[77.83603,12.87065],[77.83229,12.87395],[77.83149,12.87695],[77.82963,12.87747],[77.8321,12.88216],[77.82984,12.88942],[77.82478,12.89529],[77.82295,12.9011],[77.82115,12.90185],[77.82078,12.91178],[77.81621,12.91465],[77.81781,12.91867],[77.81675,12.92141],[77.82668,12.92126],[77.82993,12.91965],[77.83228,12.92661],[77.82294,12.92934],[77.81633,12.92641],[77.81096,12.93313],[77.80307,12.91933],[77.79751,12.91825],[77.79809,12.92521],[77.77882,12.92887],[77.77663,12.93159],[77.77743,12.93411],[77.77544,12.93872],[77.76511,12.94247],[77.76571,12.94506],[77.77258,12.9511],[77.76714,12.95944],[77.77918,12.97023],[77.77922,12.97241],[77.77654,12.97482],[77.77879,12.97763],[77.77651,12.98189],[77.77477,13.00119],[77.77244,13.00256],[77.7751,13.0032],[77.77575,13.0058],[77.7732,13.00629],[77.77437,13.01324],[77.77131,13.01417],[77.77628,13.02117],[77.77764,13.02819],[77.78139,13.03119],[77.78106,13.03381],[77.77832,13.03585],[77.77347,13.04826],[77.77132,13.04792],[77.77101,13.05368],[77.76755,13.05808],[77.76739,13.06507],[77.76026,13.07377],[77.76121,13.07643],[77.75956,13.08178],[77.7669,13.08457],[77.76488,13.09726],[77.76339,13.0991],[77.76503,13.10776],[77.76304,13.10828],[77.76138,13.11339],[77.75475,13.11333],[77.75004,13.11631],[77.74274,13.11455],[77.73231,13.11477],[77.73368,13.12347],[77.72447,13.12661],[77.72976,13.13239],[77.729,13.13423],[77.73196,13.14488],[77.7282,13.14665],[77.7299,13.156],[77.73265,13.1594],[77.73015,13.16105],[77.73078,13.16526],[77.72737,13.16865],[77.73038,13.17354],[77.72683,13.17626],[77.72855,13.18483],[77.72562,13.19272],[77.71208,13.19618],[77.70744,13.18976],[77.69847,13.18941],[77.69014,13.2027],[77.68425,13.20336],[77.68669,13.19329],[77.67146,13.18979],[77.67081,13.18512],[77.66658,13.18605],[77.66301,13.184],[77.65453,13.18815],[77.6542,13.1914],[77.657,13.19783],[77.66041,13.20089],[77.64748,13.20033],[77.6381,13.20332],[77.63763,13.20522],[77.62868,13.20891],[77.61736,13.21052],[77.61309,13.20877],[77.61583,13.20535],[77.60432,13.20364],[77.60006,13.19647],[77.5915,13.19782],[77.5892,13.19625],[77.57428,13.19874],[77.56677,13.20143],[77.56901,13.20716],[77.5711,13.20701],[77.56951,13.2161],[77.55661,13.21918],[77.55995,13.23176],[77.55233,13.23208]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"526","area_level":"District","area_name":"Bengaluru Rural","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.39908,13.49277],[77.38466,13.49907],[77.37807,13.48976],[77.3771,13.48333],[77.3723,13.48311],[77.37021,13.47822],[77.3734,13.47004],[77.36681,13.46945],[77.36612,13.46356],[77.35844,13.46306],[77.34862,13.45718],[77.3484,13.44659],[77.35281,13.44405],[77.35338,13.44032],[77.35491,13.44074],[77.35689,13.4377],[77.36197,13.43692],[77.36287,13.42004],[77.35846,13.41485],[77.34589,13.41756],[77.34234,13.39866],[77.34353,13.39137],[77.34084,13.37703],[77.3457,13.37463],[77.34125,13.35711],[77.34235,13.35083],[77.34457,13.35013],[77.34382,13.3397],[77.34099,13.33767],[77.33852,13.32911],[77.3318,13.32824],[77.32934,13.3304],[77.32295,13.32587],[77.31191,13.32208],[77.30867,13.31061],[77.2812,13.3104],[77.28166,13.29728],[77.27525,13.29768],[77.26963,13.30561],[77.26982,13.31115],[77.25473,13.30887],[77.25266,13.30173],[77.24945,13.30171],[77.24311,13.3024],[77.24023,13.30851],[77.23353,13.30962],[77.2317,13.31267],[77.22901,13.31331],[77.22033,13.28551],[77.22003,13.27445],[77.22214,13.26835],[77.21934,13.26295],[77.21605,13.26156],[77.2046,13.26228],[77.19991,13.26825],[77.19246,13.26902],[77.19116,13.27475],[77.18839,13.2764],[77.18349,13.25762],[77.19245,13.24356],[77.19021,13.23784],[77.18582,13.23852],[77.18269,13.22872],[77.18635,13.22518],[77.19406,13.2243],[77.1951,13.20663],[77.20025,13.20316],[77.19934,13.1968],[77.20095,13.19451],[77.20295,13.19461],[77.20287,13.19732],[77.2075,13.19662],[77.20359,13.18448],[77.20755,13.17884],[77.2074,13.17358],[77.21335,13.16855],[77.21628,13.16161],[77.21321,13.1516],[77.2175,13.14487],[77.22842,13.14655],[77.23043,13.14461],[77.23159,13.14734],[77.24163,13.14636],[77.24893,13.1519],[77.25529,13.15255],[77.26619,13.1506],[77.26972,13.15245],[77.27504,13.15258],[77.27394,13.13979],[77.27092,13.14315],[77.26708,13.14266],[77.26543,13.12758],[77.26841,13.11885],[77.27647,13.11945],[77.27783,13.1254],[77.2793,13.12599],[77.27913,13.13377],[77.28475,13.13435],[77.28679,13.12169],[77.29195,13.12117],[77.29283,13.1101],[77.29649,13.10912],[77.30272,13.11088],[77.31434,13.10614],[77.30928,13.08324],[77.30936,13.05497],[77.31105,13.04632],[77.32005,13.04853],[77.32388,13.04702],[77.32577,13.04972],[77.32839,13.05021],[77.33113,13.04291],[77.32966,13.03914],[77.32996,13.02607],[77.32545,13.02291],[77.32783,13.00887],[77.32193,13.00832],[77.32873,12.97764],[77.33731,12.97778],[77.33805,12.97282],[77.34759,12.97428],[77.35276,12.9764],[77.35526,12.98083],[77.3559,12.98605],[77.36017,12.98928],[77.36494,12.98722],[77.3666,12.991],[77.37182,12.99214],[77.3702,13.00032],[77.37137,13.00338],[77.36908,13.00646],[77.36991,13.01326],[77.3757,13.01486],[77.3769,13.02172],[77.37557,13.02876],[77.37928,13.02653],[77.38915,13.02653],[77.3918,13.05171],[77.39402,13.05295],[77.39009,13.05576],[77.38606,13.05535],[77.38303,13.05722],[77.38278,13.06503],[77.38412,13.06787],[77.39535,13.07096],[77.39771,13.0732],[77.41144,13.07358],[77.41601,13.07073],[77.4237,13.07027],[77.42884,13.08646],[77.42048,13.08654],[77.42136,13.09124],[77.41595,13.0932],[77.41876,13.09787],[77.4155,13.10181],[77.4179,13.10492],[77.40893,13.10711],[77.40087,13.11171],[77.40131,13.11814],[77.39272,13.11503],[77.39292,13.11764],[77.39405,13.11943],[77.39707,13.11869],[77.39755,13.12351],[77.40859,13.1237],[77.43179,13.16509],[77.44363,13.1666],[77.46067,13.16076],[77.46161,13.16209],[77.46788,13.16247],[77.46927,13.17469],[77.4756,13.18468],[77.47671,13.18914],[77.47833,13.20505],[77.47809,13.2062],[77.47442,13.2062],[77.47418,13.21126],[77.47991,13.2234],[77.48797,13.22239],[77.4989,13.22717],[77.50565,13.22516],[77.5065,13.22883],[77.51144,13.22857],[77.51196,13.22448],[77.51835,13.22029],[77.51796,13.21867],[77.52101,13.21461],[77.51894,13.20913],[77.52039,13.21109],[77.52227,13.2106],[77.52233,13.20877],[77.52211,13.21437],[77.52657,13.22111],[77.53686,13.21902],[77.53862,13.22588],[77.54214,13.22724],[77.5432,13.23284],[77.54924,13.23153],[77.55052,13.23304],[77.55932,13.2323],[77.55661,13.21918],[77.56951,13.2161],[77.5711,13.20701],[77.56901,13.20716],[77.56677,13.20143],[77.57428,13.19874],[77.5892,13.19625],[77.5915,13.19782],[77.60006,13.19647],[77.60432,13.20364],[77.61583,13.20535],[77.61309,13.20877],[77.61736,13.21052],[77.62868,13.20891],[77.63763,13.20522],[77.6381,13.20332],[77.64748,13.20033],[77.66041,13.20089],[77.657,13.19783],[77.6542,13.1914],[77.65453,13.18815],[77.66301,13.184],[77.66658,13.18605],[77.67081,13.18512],[77.67146,13.18979],[77.68669,13.19329],[77.68425,13.20336],[77.69014,13.2027],[77.69847,13.18941],[77.70744,13.18976],[77.71208,13.19618],[77.72562,13.19272],[77.72855,13.18483],[77.72683,13.17626],[77.73038,13.17354],[77.72737,13.16865],[77.73078,13.16526],[77.73015,13.16105],[77.73265,13.1594],[77.7299,13.156],[77.7282,13.14665],[77.73196,13.14488],[77.729,13.13423],[77.72976,13.13239],[77.72447,13.12661],[77.73368,13.12347],[77.73231,13.11477],[77.74274,13.11455],[77.75004,13.11631],[77.75475,13.11333],[77.76138,13.11339],[77.76304,13.10828],[77.76503,13.10776],[77.76339,13.0991],[77.76488,13.09726],[77.7669,13.08457],[77.75956,13.08178],[77.76121,13.07643],[77.76026,13.07377],[77.76739,13.06507],[77.76755,13.05808],[77.77101,13.05368],[77.77132,13.04792],[77.77347,13.04826],[77.77832,13.03585],[77.78106,13.03381],[77.78139,13.03119],[77.77764,13.02819],[77.77628,13.02117],[77.77131,13.01417],[77.77437,13.01324],[77.7732,13.00629],[77.77575,13.0058],[77.7751,13.0032],[77.77244,13.00256],[77.77477,13.00119],[77.77651,12.98189],[77.77879,12.97763],[77.77654,12.97482],[77.77922,12.97241],[77.77918,12.97023],[77.76714,12.95944],[77.77258,12.9511],[77.76571,12.94506],[77.76511,12.94247],[77.77544,12.93872],[77.77743,12.93411],[77.77663,12.93159],[77.77882,12.92887],[77.79809,12.92521],[77.79751,12.91825],[77.80307,12.91933],[77.81096,12.93313],[77.81633,12.92641],[77.82294,12.92934],[77.83228,12.92661],[77.82993,12.91965],[77.82668,12.92126],[77.81675,12.92141],[77.81781,12.91867],[77.81621,12.91465],[77.82078,12.91178],[77.82115,12.90185],[77.82295,12.9011],[77.82478,12.89529],[77.82984,12.88942],[77.8321,12.88216],[77.82963,12.87747],[77.83149,12.87695],[77.83229,12.87395],[77.83601,12.87033],[77.84261,12.86869],[77.84739,12.86932],[77.85073,12.86616],[77.85748,12.86948],[77.86765,12.86807],[77.86643,12.8761],[77.85568,12.87625],[77.85228,12.89091],[77.86189,12.91427],[77.85681,12.91649],[77.85353,12.91537],[77.84457,12.91635],[77.84219,12.91404],[77.83956,12.92218],[77.84103,12.92483],[77.84736,12.92629],[77.85102,12.93208],[77.85918,12.93567],[77.86918,12.93382],[77.87074,12.93714],[77.87371,12.94519],[77.86711,12.95093],[77.87156,12.95984],[77.8653,12.96614],[77.8647,12.97365],[77.87142,12.9729],[77.87097,12.98512],[77.87372,12.98708],[77.87287,12.99454],[77.87406,12.99765],[77.87938,13.00518],[77.88587,13.00857],[77.88676,13.01996],[77.88988,13.02375],[77.8933,13.03503],[77.88716,13.03708],[77.88881,13.04543],[77.89309,13.04624],[77.89143,13.0471],[77.89222,13.0522],[77.8939,13.0538],[77.90532,13.04897],[77.91366,13.04845],[77.91529,13.05084],[77.91897,13.0509],[77.92161,13.05653],[77.92163,13.06114],[77.9282,13.06845],[77.93737,13.06597],[77.94145,13.06879],[77.94155,13.07677],[77.93955,13.08355],[77.93875,13.07863],[77.93602,13.07557],[77.93183,13.07395],[77.92623,13.07587],[77.92704,13.08266],[77.91838,13.07926],[77.9174,13.08077],[77.91332,13.08084],[77.91674,13.08623],[77.91607,13.0876],[77.9111,13.09601],[77.90154,13.09979],[77.90134,13.10239],[77.91412,13.11106],[77.91541,13.11904],[77.92364,13.11593],[77.92307,13.11253],[77.92523,13.11228],[77.9255,13.11068],[77.93734,13.10814],[77.93658,13.11419],[77.93927,13.12514],[77.94575,13.12359],[77.94857,13.12762],[77.95619,13.12629],[77.95772,13.13033],[77.95544,13.14011],[77.95941,13.15151],[77.95735,13.15212],[77.95877,13.15738],[77.95304,13.16057],[77.95534,13.16307],[77.95552,13.16944],[77.95424,13.17007],[77.95534,13.17643],[77.95704,13.17634],[77.9583,13.18175],[77.96087,13.18186],[77.96156,13.18656],[77.96383,13.18934],[77.96245,13.18954],[77.9595,13.19579],[77.96055,13.20015],[77.95512,13.20087],[77.95634,13.2044],[77.95473,13.20566],[77.95795,13.21869],[77.95127,13.21936],[77.95136,13.21498],[77.94523,13.21418],[77.94656,13.21922],[77.96385,13.23277],[77.96333,13.23882],[77.96499,13.23746],[77.96492,13.24405],[77.95567,13.24863],[77.94855,13.24999],[77.94559,13.24366],[77.93495,13.24606],[77.92901,13.23823],[77.92577,13.23976],[77.91412,13.23974],[77.91385,13.23194],[77.90869,13.23147],[77.89092,13.23453],[77.89967,13.24174],[77.90219,13.24208],[77.9047,13.24511],[77.90565,13.25056],[77.90446,13.25048],[77.90537,13.25267],[77.90341,13.25483],[77.89079,13.25756],[77.88859,13.25079],[77.88007,13.25045],[77.87411,13.24393],[77.87848,13.23934],[77.8766,13.23431],[77.87079,13.23425],[77.86364,13.24112],[77.858,13.22847],[77.85829,13.22037],[77.85002,13.2195],[77.84779,13.22107],[77.85077,13.24106],[77.82133,13.25262],[77.81705,13.24706],[77.81441,13.23951],[77.80756,13.24313],[77.80909,13.24685],[77.81088,13.24617],[77.81541,13.25348],[77.8185,13.25356],[77.82097,13.25817],[77.8088,13.26148],[77.81139,13.26784],[77.81146,13.27758],[77.8157,13.28761],[77.81589,13.29756],[77.82217,13.29695],[77.82259,13.29076],[77.82955,13.29067],[77.82763,13.30549],[77.81444,13.30425],[77.81444,13.30943],[77.81018,13.31007],[77.81242,13.31301],[77.81378,13.31258],[77.81334,13.31095],[77.81728,13.31018],[77.81849,13.31538],[77.82262,13.31881],[77.82717,13.32701],[77.82103,13.3286],[77.81023,13.3344],[77.81025,13.33834],[77.80357,13.338],[77.79638,13.34067],[77.79111,13.34567],[77.79047,13.35087],[77.77472,13.35305],[77.77195,13.35603],[77.75414,13.3638],[77.75188,13.36275],[77.75062,13.35929],[77.74406,13.36112],[77.74279,13.36025],[77.74514,13.35533],[77.74389,13.35375],[77.73726,13.3604],[77.73009,13.36087],[77.72649,13.36332],[77.72632,13.36163],[77.72924,13.36035],[77.72855,13.35169],[77.71639,13.35178],[77.71755,13.35349],[77.71675,13.36563],[77.71096,13.36623],[77.70901,13.36452],[77.71021,13.36324],[77.69866,13.35898],[77.69939,13.34828],[77.70313,13.34606],[77.70344,13.34425],[77.69989,13.33737],[77.69627,13.33833],[77.6879,13.34989],[77.68429,13.35187],[77.68216,13.351],[77.67994,13.34488],[77.66706,13.34799],[77.66706,13.35071],[77.65594,13.35823],[77.65705,13.37271],[77.66196,13.37746],[77.65957,13.38347],[77.65196,13.38704],[77.65773,13.39306],[77.65756,13.39782],[77.65326,13.39842],[77.64784,13.39183],[77.63846,13.3938],[77.63793,13.38541],[77.63651,13.38667],[77.63391,13.37592],[77.62831,13.37763],[77.62094,13.37536],[77.6222,13.38226],[77.62092,13.38468],[77.61276,13.38713],[77.61911,13.40236],[77.61201,13.40367],[77.60745,13.40719],[77.60657,13.39978],[77.6046,13.39785],[77.60238,13.39821],[77.60158,13.40405],[77.59986,13.4049],[77.60042,13.4099],[77.59875,13.41062],[77.59921,13.41514],[77.60589,13.41647],[77.60669,13.41451],[77.614,13.41852],[77.61545,13.42108],[77.60745,13.42524],[77.60574,13.43552],[77.60307,13.4413],[77.59996,13.43921],[77.59957,13.43614],[77.58979,13.43625],[77.5891,13.42922],[77.59146,13.42153],[77.59347,13.42125],[77.59137,13.41883],[77.58958,13.42074],[77.58423,13.42157],[77.56431,13.42044],[77.55904,13.41863],[77.55147,13.41964],[77.55036,13.43424],[77.54844,13.43587],[77.54599,13.43773],[77.53708,13.43648],[77.53455,13.43075],[77.52248,13.43153],[77.51685,13.43939],[77.51594,13.44388],[77.50411,13.44549],[77.50492,13.45378],[77.50671,13.45662],[77.5047,13.4578],[77.49348,13.45889],[77.4886,13.46093],[77.48326,13.46789],[77.47662,13.46641],[77.47147,13.46936],[77.46134,13.46287],[77.45814,13.46911],[77.45457,13.46861],[77.4548,13.46428],[77.45031,13.46434],[77.44607,13.46162],[77.43948,13.46179],[77.43302,13.46398],[77.4344,13.46874],[77.42286,13.47193],[77.42483,13.48156],[77.42162,13.48558],[77.41559,13.48607],[77.41553,13.49201],[77.40796,13.49679],[77.39908,13.49277]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"527","area_level":"District","area_name":"Belagavi","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.2913,15.83217],[74.27833,15.82929],[74.26171,15.82967],[74.26157,15.82848],[74.26368,15.82433],[74.26896,15.81659],[74.26838,15.81449],[74.26665,15.81209],[74.26619,15.80978],[74.26634,15.80573],[74.26704,15.80386],[74.2668,15.80251],[74.26787,15.80119],[74.26794,15.80027],[74.26647,15.7978],[74.27094,15.79508],[74.27239,15.79642],[74.27486,15.79609],[74.27548,15.79498],[74.27711,15.79425],[74.27796,15.79291],[74.28078,15.79073],[74.28349,15.79022],[74.28485,15.78923],[74.28544,15.78794],[74.28982,15.78773],[74.29013,15.78837],[74.28936,15.78962],[74.28915,15.79142],[74.28962,15.79221],[74.2933,15.79527],[74.29673,15.79414],[74.29787,15.79097],[74.29993,15.79003],[74.30035,15.78919],[74.3014,15.7885],[74.30177,15.78752],[74.30234,15.78746],[74.30301,15.78822],[74.30566,15.78925],[74.30579,15.79008],[74.307,15.7907],[74.30944,15.79118],[74.31029,15.79247],[74.31176,15.79326],[74.31171,15.79412],[74.31243,15.79449],[74.31341,15.79643],[74.31276,15.7976],[74.31291,15.7982],[74.31206,15.79928],[74.31124,15.79938],[74.31007,15.80146],[74.30928,15.80155],[74.3063,15.80342],[74.30455,15.80495],[74.30337,15.80666],[74.30346,15.80721],[74.30047,15.81402],[74.2913,15.83217]]],[[[74.99178,16.95221],[74.96826,16.95016],[74.96436,16.94763],[74.96751,16.94161],[74.96064,16.93995],[74.96016,16.93726],[74.9605,16.93348],[74.96568,16.92986],[74.96454,16.92678],[74.95826,16.92824],[74.95042,16.93295],[74.94832,16.93881],[74.94117,16.94078],[74.93671,16.9442],[74.93171,16.94476],[74.93056,16.94167],[74.92654,16.93932],[74.92316,16.93931],[74.92178,16.92986],[74.93422,16.92423],[74.93266,16.91891],[74.93827,16.91729],[74.94478,16.91061],[74.95486,16.91017],[74.95535,16.90534],[74.95884,16.90585],[74.96364,16.9111],[74.96036,16.88095],[74.94458,16.88116],[74.94438,16.8827],[74.93592,16.87924],[74.93522,16.87107],[74.92555,16.87203],[74.92542,16.86772],[74.92402,16.86713],[74.9265,16.86354],[74.91097,16.86404],[74.90152,16.86255],[74.90424,16.85939],[74.90761,16.85017],[74.91029,16.83514],[74.90873,16.8237],[74.91022,16.81659],[74.91082,16.78954],[74.92014,16.7725],[74.88987,16.77126],[74.86936,16.77407],[74.86568,16.76336],[74.84982,16.77276],[74.84451,16.76182],[74.79874,16.75366],[74.79575,16.74775],[74.78337,16.75132],[74.77197,16.75068],[74.76937,16.74481],[74.76505,16.74186],[74.76035,16.74127],[74.75299,16.73309],[74.75276,16.73086],[74.73698,16.72354],[74.73209,16.71832],[74.73035,16.72013],[74.73004,16.71875],[74.72732,16.71909],[74.72718,16.71684],[74.70569,16.71491],[74.69102,16.71554],[74.68855,16.71279],[74.6894,16.68646],[74.68082,16.68589],[74.68109,16.68091],[74.68886,16.68154],[74.68955,16.67703],[74.67902,16.6731],[74.6795,16.66617],[74.66516,16.66567],[74.65916,16.64734],[74.65348,16.63883],[74.65905,16.63167],[74.66981,16.6294],[74.6766,16.62359],[74.68757,16.61789],[74.68986,16.61314],[74.68698,16.60679],[74.68268,16.6061],[74.67383,16.6092],[74.65999,16.6029],[74.65405,16.60417],[74.64443,16.61029],[74.64001,16.61045],[74.63615,16.60742],[74.63335,16.60036],[74.63323,16.59083],[74.63586,16.58391],[74.63319,16.58321],[74.62863,16.57773],[74.62284,16.57975],[74.6188,16.58407],[74.61708,16.57587],[74.60952,16.56959],[74.60428,16.56898],[74.60196,16.56536],[74.59896,16.56431],[74.58788,16.5661],[74.58403,16.56235],[74.58464,16.55913],[74.5746,16.55894],[74.57381,16.55391],[74.56854,16.55387],[74.56065,16.56262],[74.55639,16.56277],[74.55485,16.56451],[74.55602,16.57356],[74.56466,16.57965],[74.56689,16.58539],[74.55877,16.59465],[74.54349,16.59532],[74.5427,16.62663],[74.54473,16.62898],[74.54449,16.63547],[74.52445,16.63343],[74.50385,16.63356],[74.50024,16.63313],[74.49501,16.62975],[74.48903,16.63014],[74.47672,16.64447],[74.47171,16.66405],[74.46874,16.6638],[74.46408,16.65827],[74.4564,16.65505],[74.45835,16.64868],[74.45478,16.6473],[74.4585,16.63557],[74.46581,16.62472],[74.46574,16.61566],[74.4641,16.61509],[74.46671,16.60682],[74.46345,16.60449],[74.43544,16.60106],[74.42634,16.59574],[74.42215,16.58451],[74.42081,16.58612],[74.40869,16.58323],[74.39663,16.58327],[74.39554,16.57217],[74.39121,16.56655],[74.39291,16.56488],[74.3869,16.55994],[74.38858,16.55076],[74.38715,16.5362],[74.37983,16.52859],[74.37643,16.52913],[74.37081,16.5348],[74.36082,16.53893],[74.35793,16.53834],[74.35774,16.54608],[74.35611,16.54976],[74.35908,16.55575],[74.35625,16.55975],[74.35399,16.55892],[74.35512,16.55506],[74.35028,16.55603],[74.34572,16.555],[74.34446,16.55173],[74.33969,16.54776],[74.33488,16.54788],[74.32517,16.5563],[74.31757,16.55371],[74.31571,16.55445],[74.31512,16.5046],[74.30614,16.50369],[74.30096,16.52317],[74.30261,16.52665],[74.30165,16.52902],[74.2916,16.53388],[74.28909,16.53244],[74.28685,16.52677],[74.28314,16.52459],[74.28075,16.53145],[74.28109,16.5411],[74.27692,16.54542],[74.27054,16.54796],[74.26413,16.53983],[74.26975,16.52217],[74.2761,16.52131],[74.27801,16.50446],[74.26573,16.5011],[74.25251,16.50062],[74.24737,16.49691],[74.25663,16.48954],[74.26077,16.4801],[74.27438,16.48563],[74.27458,16.49403],[74.27966,16.50483],[74.2909,16.5049],[74.29218,16.48571],[74.28845,16.47723],[74.28928,16.46297],[74.29195,16.46175],[74.29705,16.46454],[74.3064,16.45528],[74.31246,16.45324],[74.32044,16.45392],[74.32466,16.45593],[74.33259,16.45476],[74.32971,16.4472],[74.33623,16.44567],[74.33269,16.43685],[74.33674,16.42881],[74.33129,16.42418],[74.32885,16.41905],[74.33505,16.40141],[74.34289,16.40346],[74.3448,16.40553],[74.36365,16.40521],[74.36291,16.39552],[74.35797,16.38954],[74.35701,16.38344],[74.35358,16.38188],[74.35341,16.36642],[74.3473,16.36832],[74.34512,16.37314],[74.34564,16.3769],[74.34121,16.38277],[74.34064,16.38867],[74.33587,16.39374],[74.32749,16.3915],[74.32814,16.38534],[74.32484,16.37829],[74.31719,16.381],[74.32084,16.37589],[74.31898,16.37164],[74.32477,16.35994],[74.32425,16.35743],[74.31789,16.35496],[74.31764,16.35305],[74.32703,16.34251],[74.32648,16.34142],[74.31879,16.34266],[74.31532,16.34008],[74.31656,16.33619],[74.3225,16.33437],[74.31661,16.32656],[74.32064,16.32375],[74.32874,16.32375],[74.33129,16.32067],[74.32461,16.31666],[74.32516,16.31368],[74.32919,16.31221],[74.33322,16.31345],[74.33296,16.31106],[74.33474,16.30903],[74.33192,16.30525],[74.33591,16.30709],[74.34042,16.30244],[74.34028,16.29816],[74.34255,16.29803],[74.34201,16.29118],[74.34,16.29213],[74.33831,16.29001],[74.33472,16.28961],[74.33184,16.29243],[74.32796,16.29325],[74.32469,16.2889],[74.32578,16.28559],[74.32083,16.28448],[74.32245,16.27791],[74.32457,16.27723],[74.32493,16.27176],[74.32846,16.26887],[74.33415,16.2688],[74.33506,16.2704],[74.33333,16.27597],[74.33843,16.2714],[74.34335,16.27309],[74.34205,16.27651],[74.34378,16.27808],[74.35046,16.27537],[74.35371,16.28282],[74.3431,16.29035],[74.3456,16.29376],[74.3593,16.29058],[74.36336,16.28504],[74.36828,16.26686],[74.37301,16.26164],[74.38064,16.26197],[74.38021,16.27115],[74.38261,16.27736],[74.40786,16.28329],[74.41181,16.28166],[74.41439,16.28265],[74.41595,16.2801],[74.41761,16.258],[74.43577,16.25883],[74.43555,16.25115],[74.45483,16.25339],[74.45609,16.24386],[74.46862,16.24019],[74.47671,16.24943],[74.47984,16.25055],[74.48156,16.24668],[74.48604,16.24312],[74.49035,16.23489],[74.49521,16.2349],[74.50283,16.22586],[74.50311,16.22247],[74.4958,16.21519],[74.50126,16.20553],[74.50771,16.20307],[74.50771,16.20162],[74.50584,16.20136],[74.50699,16.19129],[74.50331,16.18807],[74.49379,16.18645],[74.48955,16.17742],[74.48984,16.16342],[74.48837,16.15726],[74.47983,16.14713],[74.48007,16.14499],[74.48511,16.1423],[74.48587,16.13406],[74.49084,16.11672],[74.49123,16.10431],[74.4851,16.09837],[74.48482,16.09221],[74.48156,16.08889],[74.47273,16.0906],[74.47269,16.09299],[74.46105,16.09978],[74.45868,16.1038],[74.4429,16.10534],[74.42762,16.11197],[74.40997,16.10212],[74.40696,16.09351],[74.39004,16.08946],[74.39182,16.08253],[74.39086,16.08048],[74.38954,16.07979],[74.38362,16.08293],[74.38173,16.0793],[74.37222,16.07821],[74.37151,16.06824],[74.36133,16.05384],[74.36355,16.05303],[74.37252,16.056],[74.37734,16.05512],[74.37457,16.04689],[74.36905,16.03922],[74.3734,16.03644],[74.378,16.0377],[74.38099,16.03548],[74.40209,16.04611],[74.40552,16.05184],[74.42969,16.05915],[74.43422,16.05847],[74.44285,16.05281],[74.45012,16.05401],[74.45714,16.04823],[74.46221,16.04984],[74.46302,16.04162],[74.45649,16.04106],[74.46322,16.03919],[74.45723,16.02697],[74.45535,16.01952],[74.45011,16.01105],[74.45026,16.00855],[74.44691,16.00318],[74.44477,16.00305],[74.44634,15.9971],[74.44464,15.99244],[74.44261,15.99163],[74.44395,15.9864],[74.43787,15.9799],[74.43893,15.97568],[74.43607,15.96747],[74.43099,15.95962],[74.43083,15.95658],[74.38687,15.90498],[74.38778,15.90131],[74.39342,15.90004],[74.39674,15.88036],[74.39279,15.87839],[74.39765,15.86997],[74.40637,15.86445],[74.40617,15.85538],[74.40163,15.85461],[74.40235,15.85227],[74.39754,15.85115],[74.39141,15.85476],[74.38814,15.85425],[74.38693,15.85965],[74.38283,15.86004],[74.38003,15.87629],[74.37675,15.88238],[74.3661,15.89131],[74.36861,15.89436],[74.3647,15.89386],[74.36513,15.8825],[74.36326,15.87492],[74.35794,15.87316],[74.35087,15.86543],[74.34552,15.86229],[74.34661,15.85879],[74.33821,15.85492],[74.345,15.85044],[74.38309,15.8491],[74.38405,15.84012],[74.38104,15.83538],[74.37993,15.83827],[74.3766,15.83335],[74.3774,15.83222],[74.37482,15.83313],[74.37233,15.83022],[74.37074,15.83057],[74.36641,15.82576],[74.36536,15.81927],[74.36062,15.81778],[74.36267,15.81469],[74.36993,15.81146],[74.3703,15.80849],[74.36869,15.80695],[74.37192,15.80098],[74.37039,15.79859],[74.37197,15.79824],[74.36889,15.79174],[74.36904,15.78812],[74.36214,15.78236],[74.35843,15.77483],[74.35025,15.77032],[74.34568,15.76456],[74.34069,15.76467],[74.33747,15.7679],[74.32307,15.77268],[74.31899,15.76622],[74.31862,15.75838],[74.30974,15.75489],[74.31034,15.75157],[74.3079,15.74848],[74.30135,15.74764],[74.29612,15.74442],[74.28729,15.74198],[74.2852,15.74173],[74.28426,15.74366],[74.2736,15.74908],[74.26832,15.75474],[74.26384,15.75296],[74.25554,15.74604],[74.25386,15.74677],[74.25403,15.74515],[74.24026,15.74332],[74.23708,15.74518],[74.23652,15.74822],[74.2337,15.7483],[74.23243,15.75221],[74.22797,15.75603],[74.2265,15.76263],[74.22858,15.7721],[74.23458,15.77858],[74.2335,15.78699],[74.22777,15.7884],[74.22103,15.786],[74.2159,15.78389],[74.21311,15.78006],[74.20897,15.78127],[74.20143,15.75862],[74.18953,15.75212],[74.16156,15.75129],[74.1533,15.74363],[74.15111,15.73987],[74.15097,15.73581],[74.14401,15.73309],[74.14184,15.73433],[74.13396,15.72982],[74.13346,15.72631],[74.13076,15.72336],[74.12582,15.72411],[74.12217,15.72073],[74.1261,15.71846],[74.12618,15.70796],[74.12834,15.70867],[74.13143,15.70587],[74.13213,15.7024],[74.13034,15.70175],[74.13168,15.69354],[74.13072,15.68963],[74.12577,15.68097],[74.10885,15.67269],[74.10261,15.67222],[74.09136,15.67463],[74.0881,15.67247],[74.08828,15.66994],[74.09423,15.66308],[74.10188,15.65839],[74.11094,15.65769],[74.11828,15.652],[74.13554,15.64837],[74.14112,15.6511],[74.14909,15.65197],[74.15435,15.6499],[74.15747,15.65468],[74.16442,15.6535],[74.16558,15.65438],[74.16737,15.67201],[74.17208,15.674],[74.17668,15.67987],[74.18155,15.68215],[74.1891,15.68059],[74.18989,15.67911],[74.19039,15.67632],[74.1861,15.6745],[74.18684,15.66745],[74.20406,15.66368],[74.20175,15.65634],[74.20513,15.65103],[74.21745,15.65274],[74.22216,15.65564],[74.22222,15.65685],[74.21772,15.65836],[74.21515,15.66287],[74.21765,15.6623],[74.21802,15.66435],[74.22378,15.66898],[74.2246,15.66626],[74.22841,15.66444],[74.22979,15.66638],[74.23636,15.66858],[74.2394,15.66461],[74.23817,15.66362],[74.24299,15.66244],[74.24485,15.6582],[74.25044,15.65726],[74.25198,15.65431],[74.24416,15.62611],[74.24826,15.6229],[74.25372,15.62674],[74.25848,15.6234],[74.25859,15.62078],[74.2643,15.61551],[74.25999,15.60672],[74.26025,15.59263],[74.24874,15.58038],[74.25053,15.57737],[74.24519,15.5666],[74.24967,15.56765],[74.25833,15.56169],[74.26174,15.56488],[74.2653,15.55837],[74.27792,15.54611],[74.28265,15.53142],[74.2817,15.52613],[74.27815,15.52285],[74.29172,15.52496],[74.30457,15.52068],[74.32684,15.517],[74.34248,15.51795],[74.34892,15.50949],[74.35335,15.50722],[74.35968,15.49666],[74.37485,15.48075],[74.38064,15.48131],[74.38672,15.48413],[74.38821,15.48136],[74.39446,15.48065],[74.40439,15.47386],[74.40626,15.47332],[74.40955,15.47526],[74.41327,15.4739],[74.41506,15.47022],[74.41783,15.46933],[74.41955,15.46432],[74.42188,15.46359],[74.42349,15.42278],[74.42637,15.39839],[74.43236,15.39871],[74.43391,15.4021],[74.4372,15.40264],[74.4386,15.40505],[74.4412,15.40431],[74.44585,15.40667],[74.45197,15.4061],[74.45422,15.40229],[74.45646,15.40307],[74.45924,15.40598],[74.46035,15.41324],[74.46454,15.41507],[74.4705,15.40941],[74.471,15.40358],[74.47379,15.40246],[74.47256,15.39779],[74.48261,15.39581],[74.49114,15.40078],[74.49728,15.40116],[74.50278,15.4037],[74.51692,15.40232],[74.53527,15.41868],[74.54469,15.41681],[74.55827,15.4065],[74.56833,15.40242],[74.57623,15.39139],[74.5822,15.39023],[74.58565,15.38256],[74.59726,15.37612],[74.59843,15.37188],[74.60272,15.36666],[74.61392,15.35846],[74.6324,15.36696],[74.64279,15.38432],[74.64932,15.39002],[74.68958,15.3979],[74.69936,15.41004],[74.70653,15.4076],[74.71803,15.41144],[74.72625,15.41149],[74.72903,15.409],[74.73386,15.40859],[74.74082,15.41097],[74.74095,15.41778],[74.73801,15.42219],[74.73305,15.42317],[74.73107,15.42533],[74.72965,15.43145],[74.73213,15.43369],[74.7307,15.43549],[74.73079,15.44014],[74.74023,15.4468],[74.73781,15.44835],[74.74009,15.44863],[74.74034,15.45144],[74.74232,15.45132],[74.7435,15.46127],[74.74199,15.46221],[74.74443,15.46347],[74.74295,15.46417],[74.74354,15.4667],[74.73719,15.46588],[74.7319,15.4709],[74.72889,15.47672],[74.73104,15.47733],[74.72731,15.48888],[74.73811,15.49013],[74.74859,15.4962],[74.75338,15.48731],[74.75539,15.48777],[74.7539,15.48476],[74.76108,15.47047],[74.7646,15.47391],[74.77096,15.46909],[74.77831,15.45931],[74.7886,15.47396],[74.78897,15.4817],[74.78644,15.48369],[74.78694,15.48612],[74.79587,15.48751],[74.79589,15.49117],[74.79991,15.49425],[74.798,15.49775],[74.80007,15.49672],[74.79984,15.49914],[74.80416,15.49696],[74.80583,15.49801],[74.80226,15.50101],[74.80345,15.50298],[74.81386,15.50496],[74.80945,15.51262],[74.81125,15.51431],[74.81146,15.52183],[74.7979,15.54851],[74.80592,15.55115],[74.80752,15.55423],[74.82028,15.56229],[74.81986,15.5653],[74.82345,15.56603],[74.82244,15.56848],[74.8409,15.57474],[74.83801,15.57707],[74.83532,15.58659],[74.83223,15.59091],[74.82989,15.59029],[74.82857,15.60824],[74.83047,15.6103],[74.83825,15.61236],[74.84021,15.60855],[74.87888,15.61793],[74.87767,15.62272],[74.88358,15.6247],[74.88734,15.62967],[74.90217,15.63185],[74.91183,15.63166],[74.9281,15.62418],[74.93271,15.62357],[74.94448,15.62396],[74.95243,15.62691],[74.96507,15.62719],[74.96311,15.64348],[74.96632,15.65432],[74.97801,15.64913],[74.99126,15.65153],[74.99208,15.64998],[75.01936,15.64392],[75.02191,15.65034],[75.0236,15.6518],[75.02801,15.6518],[75.02828,15.6698],[75.04672,15.67063],[75.04975,15.68246],[75.05978,15.68208],[75.0589,15.67736],[75.06319,15.66927],[75.05634,15.63248],[75.06209,15.63002],[75.06431,15.6279],[75.06394,15.62569],[75.08065,15.6229],[75.08242,15.61731],[75.08487,15.61658],[75.08719,15.6124],[75.08999,15.61221],[75.0918,15.60788],[75.09768,15.62933],[75.10143,15.66078],[75.1061,15.66023],[75.10821,15.67198],[75.12386,15.66799],[75.12386,15.66549],[75.12628,15.66425],[75.12677,15.66568],[75.1303,15.66349],[75.13235,15.66011],[75.14134,15.65868],[75.14712,15.65992],[75.14931,15.65843],[75.15195,15.66106],[75.15283,15.65941],[75.17135,15.66055],[75.17782,15.65925],[75.18101,15.65675],[75.18395,15.65763],[75.18565,15.65599],[75.18724,15.64896],[75.20272,15.64906],[75.20263,15.68155],[75.21775,15.68157],[75.21787,15.67695],[75.23628,15.67901],[75.24911,15.64698],[75.2737,15.6487],[75.27261,15.66286],[75.27887,15.68849],[75.27709,15.72207],[75.27362,15.72259],[75.27456,15.74039],[75.29378,15.74103],[75.29311,15.72821],[75.29964,15.7276],[75.31416,15.73004],[75.31835,15.74493],[75.31831,15.76455],[75.30608,15.76596],[75.30364,15.81257],[75.32103,15.81238],[75.32145,15.81028],[75.32487,15.81121],[75.33283,15.81635],[75.32988,15.82401],[75.33927,15.82763],[75.34114,15.80476],[75.36469,15.8049],[75.37491,15.84534],[75.39034,15.8378],[75.40417,15.84166],[75.40752,15.83973],[75.4108,15.84149],[75.42456,15.84193],[75.42438,15.82272],[75.41417,15.78477],[75.43716,15.77871],[75.44013,15.79531],[75.44718,15.79376],[75.45082,15.81136],[75.45267,15.81085],[75.45466,15.81846],[75.45783,15.81846],[75.45728,15.86153],[75.4511,15.86282],[75.45387,15.88096],[75.4489,15.88608],[75.44327,15.88917],[75.44403,15.89057],[75.44715,15.8899],[75.44662,15.89307],[75.43794,15.89359],[75.43963,15.91285],[75.44153,15.91857],[75.42487,15.92137],[75.42723,15.92476],[75.42979,15.93995],[75.43342,15.94555],[75.43961,15.96646],[75.43236,15.97],[75.43163,15.97541],[75.43596,15.98791],[75.43784,16.00302],[75.43084,16.00853],[75.42607,16.00935],[75.42333,16.0329],[75.41646,16.03281],[75.41553,16.04001],[75.41541,16.05242],[75.41941,16.05663],[75.42319,16.05371],[75.42799,16.05263],[75.4449,16.05286],[75.44523,16.06925],[75.43117,16.06925],[75.42787,16.09294],[75.43131,16.09631],[75.43576,16.09658],[75.43893,16.11548],[75.41593,16.11576],[75.41188,16.13063],[75.40692,16.12624],[75.40458,16.11387],[75.38949,16.1133],[75.35535,16.11532],[75.3531,16.11647],[75.35436,16.12861],[75.34703,16.12375],[75.34134,16.12455],[75.33834,16.12113],[75.33149,16.11857],[75.32777,16.11533],[75.27581,16.12028],[75.28708,16.15132],[75.29233,16.17274],[75.28434,16.17636],[75.28584,16.17942],[75.28597,16.18758],[75.28886,16.19201],[75.28588,16.20125],[75.28074,16.19972],[75.27307,16.20632],[75.26879,16.20802],[75.24909,16.20464],[75.23231,16.21006],[75.233,16.21795],[75.23051,16.22328],[75.22962,16.23336],[75.2332,16.23806],[75.23394,16.24274],[75.2384,16.25097],[75.23222,16.25024],[75.23409,16.25947],[75.22509,16.26218],[75.21659,16.26888],[75.20317,16.27283],[75.18487,16.27598],[75.17779,16.27542],[75.17355,16.27655],[75.1702,16.27969],[75.14809,16.28245],[75.16011,16.31127],[75.16081,16.31624],[75.15941,16.32083],[75.14865,16.31535],[75.12962,16.33086],[75.12457,16.33114],[75.11741,16.32666],[75.109,16.32865],[75.09627,16.32487],[75.08661,16.33044],[75.07621,16.33165],[75.0651,16.32671],[75.0559,16.33042],[75.0432,16.31823],[75.0346,16.33801],[75.03302,16.35785],[75.03506,16.38677],[75.03963,16.39802],[75.04152,16.3962],[75.0485,16.39642],[75.0494,16.39982],[75.07296,16.40439],[75.07782,16.43779],[75.02796,16.43364],[75.02382,16.43555],[75.02323,16.44038],[75.01773,16.43978],[75.0153,16.45257],[75.0168,16.45844],[75.00187,16.45782],[74.99845,16.45446],[74.9884,16.45355],[74.99154,16.45913],[74.99132,16.46285],[74.98653,16.46309],[74.98628,16.47072],[74.98846,16.47255],[74.98911,16.47709],[74.98851,16.50096],[74.99445,16.51607],[74.99799,16.51757],[75.00097,16.52969],[75.00414,16.53102],[75.00422,16.53343],[75.00655,16.53345],[75.0076,16.53841],[75.06675,16.53938],[75.07128,16.56759],[75.08029,16.56339],[75.08384,16.56011],[75.08766,16.55369],[75.09023,16.5382],[75.10017,16.52652],[75.10437,16.51252],[75.10884,16.50787],[75.11539,16.5061],[75.1255,16.51163],[75.13317,16.52328],[75.13826,16.52559],[75.1524,16.52707],[75.16198,16.53452],[75.16588,16.55095],[75.15715,16.56826],[75.15699,16.58381],[75.15993,16.59029],[75.17095,16.60035],[75.17706,16.60383],[75.19819,16.60869],[75.22133,16.61693],[75.23137,16.61576],[75.24269,16.60803],[75.25228,16.60513],[75.25858,16.60738],[75.2567,16.60926],[75.25801,16.61155],[75.25532,16.61898],[75.26148,16.62042],[75.26825,16.64096],[75.26593,16.66742],[75.26269,16.68069],[75.2655,16.69347],[75.2767,16.70225],[75.28992,16.7158],[75.31858,16.71858],[75.36265,16.71436],[75.36538,16.72272],[75.3625,16.72912],[75.36368,16.73727],[75.36645,16.74242],[75.36618,16.76013],[75.38435,16.76342],[75.38507,16.77088],[75.38251,16.78042],[75.38082,16.79854],[75.37869,16.79841],[75.37888,16.82408],[75.38104,16.83367],[75.39495,16.86315],[75.3859,16.86352],[75.38067,16.86681],[75.36902,16.86625],[75.35379,16.87114],[75.33563,16.86939],[75.33387,16.8918],[75.3342,16.91243],[75.34124,16.94152],[75.34267,16.95179],[75.34158,16.95617],[75.2796,16.95656],[75.281,16.95305],[75.27938,16.92333],[75.2829,16.90972],[75.28994,16.90403],[75.28203,16.88029],[75.27299,16.8692],[75.26472,16.8628],[75.23766,16.86794],[75.22764,16.84318],[75.2142,16.8417],[75.18185,16.8434],[75.18899,16.87528],[75.17658,16.86771],[75.15555,16.86856],[75.13648,16.87449],[75.13246,16.88942],[75.13484,16.8947],[75.12032,16.90253],[75.11748,16.91344],[75.09631,16.91374],[75.0918,16.92605],[75.09214,16.94011],[75.08933,16.95158],[75.08508,16.95157],[75.07812,16.94883],[75.07435,16.95002],[75.07259,16.94665],[75.06204,16.94152],[75.04454,16.94173],[75.04139,16.94006],[75.04066,16.93644],[75.03787,16.93571],[75.03577,16.93284],[75.0336,16.93372],[75.02906,16.93149],[75.02643,16.93192],[75.0271,16.92945],[75.02523,16.928],[75.02477,16.93964],[75.02659,16.94414],[75.0045,16.94627],[75.00035,16.94985],[74.99178,16.95221]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"528","area_level":"District","area_name":"Ballari","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.03527,15.83009],[77.02519,15.83751],[77.02202,15.82963],[77.01598,15.82216],[77.00499,15.81366],[76.99876,15.81119],[76.99268,15.80172],[76.98296,15.79391],[76.96699,15.77427],[76.94404,15.76329],[76.93021,15.74227],[76.92578,15.73187],[76.92227,15.7281],[76.91932,15.71901],[76.92059,15.71337],[76.91688,15.69966],[76.91292,15.69758],[76.90678,15.69035],[76.88942,15.68485],[76.88086,15.67132],[76.87203,15.66568],[76.8616,15.65389],[76.85762,15.6424],[76.85238,15.64081],[76.8343,15.62778],[76.83238,15.61828],[76.83644,15.60262],[76.83222,15.59572],[76.83503,15.58137],[76.83467,15.56431],[76.83102,15.56002],[76.82593,15.55845],[76.81072,15.54744],[76.81062,15.53456],[76.80785,15.52428],[76.81255,15.51689],[76.81216,15.51467],[76.79697,15.50106],[76.77852,15.49249],[76.76448,15.49155],[76.75171,15.49279],[76.73951,15.49089],[76.72646,15.49257],[76.70899,15.48855],[76.68235,15.47033],[76.6731,15.45521],[76.66736,15.45044],[76.63989,15.44414],[76.61227,15.44283],[76.59607,15.42543],[76.59464,15.41706],[76.59233,15.41302],[76.5718,15.40127],[76.55497,15.39666],[76.54863,15.3869],[76.51291,15.35923],[76.49897,15.35113],[76.49332,15.34497],[76.48781,15.34503],[76.47715,15.34952],[76.47178,15.34438],[76.46025,15.34436],[76.4506,15.33923],[76.4318,15.33915],[76.40458,15.32568],[76.38891,15.33083],[76.364,15.3284],[76.35777,15.32333],[76.35069,15.31042],[76.34953,15.3027],[76.34663,15.2977],[76.34053,15.27599],[76.33365,15.26363],[76.33242,15.26242],[76.3229,15.26503],[76.31967,15.2644],[76.30284,15.2557],[76.30034,15.25106],[76.30093,15.24258],[76.29151,15.23223],[76.29133,15.22304],[76.27525,15.21293],[76.26822,15.2066],[76.25715,15.20627],[76.25494,15.19707],[76.249,15.19074],[76.22966,15.18845],[76.22316,15.192],[76.21884,15.19659],[76.21777,15.2017],[76.23264,15.22776],[76.23116,15.2313],[76.22752,15.23269],[76.21358,15.23238],[76.18746,15.23502],[76.17398,15.22742],[76.15986,15.21491],[76.15746,15.21013],[76.16019,15.20082],[76.15589,15.19583],[76.15283,15.1955],[76.12504,15.20336],[76.1182,15.20234],[76.1117,15.19862],[76.10577,15.18465],[76.10343,15.16838],[76.09372,15.16276],[76.08339,15.15949],[76.05684,15.15696],[76.04535,15.14595],[76.0414,15.14439],[76.02481,15.14272],[76.00608,15.14916],[75.99541,15.14674],[75.98755,15.15085],[75.97848,15.15277],[75.97217,15.14976],[75.96641,15.14311],[75.95418,15.1379],[75.94714,15.13749],[75.93652,15.14194],[75.92807,15.14191],[75.9242,15.14125],[75.91588,15.13539],[75.90228,15.13166],[75.90092,15.12153],[75.88828,15.11257],[75.88486,15.10758],[75.88854,15.09688],[75.90278,15.08581],[75.9088,15.07672],[75.9094,15.07166],[75.90716,15.06132],[75.90348,15.05668],[75.8888,15.05469],[75.88367,15.05231],[75.88043,15.04794],[75.8778,15.03997],[75.87393,15.0353],[75.85954,15.03638],[75.85021,15.04409],[75.84613,15.0449],[75.83851,15.04162],[75.83562,15.0316],[75.83325,15.02866],[75.81342,15.02728],[75.80768,15.0245],[75.79845,15.01367],[75.78483,15.00234],[75.78016,14.99164],[75.77917,14.97718],[75.7607,14.96839],[75.74985,14.95326],[75.7416,14.94501],[75.73521,14.94454],[75.72533,14.95013],[75.72033,14.95118],[75.70108,14.94844],[75.6871,14.94379],[75.68288,14.94008],[75.68324,14.92749],[75.69619,14.89205],[75.7281,14.89748],[75.72891,14.89463],[75.73907,14.8873],[75.7343,14.88293],[75.73268,14.86359],[75.72155,14.8642],[75.72114,14.86078],[75.71252,14.8527],[75.70254,14.85384],[75.70095,14.85223],[75.69517,14.85216],[75.69369,14.85886],[75.69028,14.85684],[75.6758,14.8334],[75.67082,14.81728],[75.66389,14.80703],[75.66357,14.8035],[75.66542,14.80007],[75.67768,14.79796],[75.69175,14.78226],[75.71337,14.77884],[75.72238,14.77194],[75.72108,14.75217],[75.71183,14.7404],[75.7028,14.73239],[75.70217,14.72942],[75.70425,14.72522],[75.71318,14.71978],[75.71781,14.71954],[75.72764,14.72597],[75.74251,14.73101],[75.75622,14.73877],[75.75981,14.77574],[75.77151,14.78226],[75.77292,14.79162],[75.77649,14.78569],[75.79876,14.7689],[75.81384,14.77642],[75.82256,14.77604],[75.8252,14.77894],[75.8337,14.7967],[75.83393,14.81008],[75.818,14.8345],[75.81111,14.82928],[75.80534,14.84129],[75.81029,14.84269],[75.80975,14.84805],[75.80169,14.86886],[75.80348,14.87627],[75.80928,14.88091],[75.81101,14.89225],[75.81308,14.89592],[75.81601,14.89602],[75.81603,14.89977],[75.82566,14.8992],[75.83222,14.88347],[75.84092,14.88964],[75.84479,14.88985],[75.84735,14.88723],[75.84773,14.8844],[75.85391,14.88356],[75.85573,14.88182],[75.85422,14.87853],[75.85373,14.86359],[75.85799,14.85951],[75.86912,14.85436],[75.87112,14.86534],[75.87317,14.868],[75.88738,14.86861],[75.88857,14.87309],[75.8931,14.87759],[75.89759,14.87815],[75.89772,14.8808],[75.90149,14.88112],[75.90696,14.88489],[75.9275,14.88959],[75.92821,14.89233],[75.93431,14.89203],[75.93728,14.89347],[75.93718,14.89566],[75.93989,14.89639],[75.94004,14.90001],[75.9496,14.89997],[75.94968,14.902],[75.95928,14.90249],[75.96242,14.90434],[75.96533,14.90302],[75.96592,14.90847],[75.97709,14.89844],[75.98144,14.90224],[75.98452,14.90817],[75.99729,14.89812],[76.00119,14.90134],[76.00504,14.90192],[76.0057,14.90593],[76.0105,14.90523],[76.01266,14.89633],[76.01386,14.89687],[76.0141,14.90207],[76.02286,14.91019],[76.02545,14.91595],[76.03028,14.91999],[76.03257,14.9245],[76.04476,14.93194],[76.04547,14.93001],[76.04766,14.93028],[76.04798,14.92451],[76.05128,14.91616],[76.06212,14.91585],[76.06508,14.91355],[76.0661,14.91008],[76.0688,14.91046],[76.06971,14.90892],[76.08466,14.91335],[76.08243,14.90443],[76.06977,14.89066],[76.06624,14.88396],[76.07272,14.86884],[76.08774,14.87257],[76.09416,14.86968],[76.12888,14.86912],[76.13059,14.86823],[76.13053,14.86076],[76.15471,14.86121],[76.15461,14.85743],[76.15935,14.85387],[76.15797,14.85193],[76.15933,14.84716],[76.1744,14.84844],[76.19069,14.84648],[76.19157,14.8315],[76.19431,14.82082],[76.18565,14.82027],[76.17613,14.82203],[76.16057,14.82992],[76.16047,14.82828],[76.15765,14.82912],[76.15521,14.82783],[76.15334,14.82134],[76.1464,14.82348],[76.1436,14.81382],[76.1429,14.79321],[76.14697,14.78949],[76.14936,14.7839],[76.16895,14.78515],[76.17991,14.76874],[76.1809,14.76406],[76.18681,14.76509],[76.18612,14.76699],[76.19233,14.76834],[76.196,14.75648],[76.19862,14.75324],[76.20058,14.75323],[76.20094,14.73914],[76.19861,14.73912],[76.19713,14.72499],[76.18713,14.72251],[76.18369,14.7003],[76.19343,14.69797],[76.19354,14.68198],[76.20443,14.67788],[76.2305,14.64931],[76.23925,14.67853],[76.24901,14.6975],[76.25689,14.70072],[76.2579,14.69604],[76.27232,14.69573],[76.27332,14.68829],[76.27948,14.68464],[76.28894,14.68516],[76.30158,14.68999],[76.31233,14.68722],[76.3152,14.69234],[76.32214,14.69241],[76.33814,14.68567],[76.34294,14.66572],[76.374,14.66397],[76.37931,14.66202],[76.37457,14.65377],[76.37453,14.64656],[76.38987,14.64861],[76.39361,14.62688],[76.40189,14.62739],[76.40314,14.62361],[76.41477,14.62303],[76.42167,14.62479],[76.43214,14.61831],[76.43223,14.60473],[76.42953,14.59861],[76.42838,14.59055],[76.42482,14.58657],[76.4236,14.58165],[76.44392,14.58031],[76.46228,14.57625],[76.46464,14.57421],[76.50507,14.56537],[76.51004,14.56039],[76.51822,14.56248],[76.53436,14.56088],[76.53581,14.56178],[76.5352,14.56484],[76.54215,14.5666],[76.5443,14.57035],[76.5497,14.57347],[76.55064,14.57888],[76.56746,14.58732],[76.57249,14.59403],[76.57404,14.60268],[76.57954,14.61095],[76.58492,14.61515],[76.58505,14.61741],[76.60086,14.62084],[76.60056,14.6257],[76.59599,14.63058],[76.59689,14.63216],[76.60282,14.63377],[76.61212,14.64838],[76.59734,14.65343],[76.59869,14.65625],[76.5966,14.66088],[76.59802,14.66928],[76.61058,14.66874],[76.60833,14.68762],[76.61745,14.69251],[76.61746,14.69449],[76.62408,14.70243],[76.63033,14.70078],[76.63099,14.70264],[76.63608,14.70435],[76.63754,14.70992],[76.6448,14.71297],[76.64492,14.7166],[76.65119,14.72527],[76.65035,14.72826],[76.64827,14.7286],[76.64707,14.73079],[76.65153,14.73727],[76.64958,14.73878],[76.65092,14.75239],[76.6488,14.75625],[76.65039,14.758],[76.65541,14.75772],[76.65777,14.76479],[76.6602,14.76562],[76.65984,14.77171],[76.66692,14.77527],[76.66583,14.77893],[76.66727,14.78251],[76.66999,14.78751],[76.67286,14.78834],[76.67267,14.79021],[76.66747,14.79379],[76.67481,14.79411],[76.68276,14.80864],[76.70461,14.81788],[76.71816,14.81824],[76.73417,14.81354],[76.73513,14.81568],[76.73914,14.81519],[76.7404,14.81858],[76.74171,14.81832],[76.7424,14.82366],[76.74058,14.82598],[76.71659,14.83326],[76.7117,14.83731],[76.71503,14.85196],[76.71337,14.86532],[76.69752,14.8882],[76.67794,14.88717],[76.67733,14.91122],[76.66519,14.91602],[76.66295,14.92472],[76.66259,14.93514],[76.65984,14.94185],[76.67931,14.93884],[76.69721,14.9276],[76.70338,14.93134],[76.70693,14.93105],[76.706,14.9423],[76.7128,14.93946],[76.71672,14.94787],[76.71709,14.96903],[76.71535,14.97298],[76.7087,14.97655],[76.68872,14.97858],[76.67762,15.0095],[76.67273,15.01291],[76.67354,15.01688],[76.67153,15.01867],[76.67259,15.02056],[76.67654,15.02206],[76.67793,15.0246],[76.68808,15.02501],[76.68896,15.02388],[76.68627,15.02186],[76.68596,15.01878],[76.69309,15.01899],[76.70158,15.01608],[76.70474,15.02183],[76.70258,15.02745],[76.7037,15.03337],[76.71151,15.03273],[76.71726,15.036],[76.72028,15.03382],[76.7301,15.03282],[76.73295,15.03153],[76.73609,15.0229],[76.72815,15.00984],[76.7275,14.99735],[76.73071,14.9945],[76.73406,14.98545],[76.73681,14.98672],[76.74461,14.98646],[76.75076,14.98317],[76.76057,14.98986],[76.76786,14.9901],[76.76957,14.99176],[76.77238,14.99084],[76.77503,14.99306],[76.77874,15.00456],[76.78363,15.00478],[76.78712,15.00793],[76.79013,15.02071],[76.78572,15.02768],[76.78575,15.03715],[76.78343,15.04261],[76.78035,15.04269],[76.77663,15.05468],[76.77361,15.05912],[76.77524,15.07225],[76.77989,15.07604],[76.77669,15.0784],[76.77787,15.07987],[76.78215,15.07733],[76.7853,15.08231],[76.78602,15.08781],[76.79235,15.08757],[76.79392,15.09185],[76.80024,15.09583],[76.81161,15.08638],[76.82377,15.08001],[76.83602,15.07923],[76.85459,15.06512],[76.86143,15.06198],[76.86087,15.05979],[76.86411,15.05803],[76.86589,15.05968],[76.86519,15.05522],[76.86919,15.05342],[76.87784,15.03546],[76.87716,15.03021],[76.89498,15.03707],[76.90722,15.03252],[76.91837,15.03552],[76.92222,15.03128],[76.93586,15.02941],[76.9496,15.03037],[76.96592,15.01804],[76.98522,15.01519],[76.98603,15.02649],[77.00303,15.03091],[77.00408,15.03383],[77.03595,15.03128],[77.04032,15.0331],[77.04956,15.03308],[77.05043,15.02447],[77.04412,15.00984],[77.06902,15.00476],[77.08245,15.00608],[77.08475,15.03071],[77.09085,15.02933],[77.09366,15.03614],[77.11293,15.03406],[77.11527,15.0464],[77.1195,15.04569],[77.12081,15.054],[77.12821,15.07231],[77.13012,15.10077],[77.13696,15.10234],[77.13694,15.10425],[77.14208,15.10457],[77.15017,15.11161],[77.15633,15.12293],[77.15728,15.14047],[77.14975,15.13976],[77.149,15.14142],[77.13795,15.14347],[77.13714,15.1478],[77.13472,15.14829],[77.14076,15.15859],[77.16283,15.15736],[77.16487,15.1682],[77.16736,15.16815],[77.16742,15.17125],[77.16913,15.17135],[77.16588,15.18935],[77.16195,15.20111],[77.15931,15.201],[77.15482,15.21482],[77.15166,15.2147],[77.15197,15.21757],[77.14719,15.22081],[77.14766,15.22391],[77.12512,15.22694],[77.12639,15.24044],[77.13251,15.23969],[77.13283,15.24169],[77.13622,15.24096],[77.14028,15.24748],[77.14054,15.25172],[77.14304,15.25184],[77.14378,15.25721],[77.16767,15.2585],[77.16768,15.26342],[77.16693,15.26858],[77.15926,15.26784],[77.15285,15.27406],[77.14714,15.27292],[77.1471,15.27495],[77.15194,15.27568],[77.15158,15.29243],[77.11838,15.29485],[77.11701,15.32574],[77.11259,15.32743],[77.1131,15.33368],[77.10145,15.33368],[77.07439,15.32589],[77.06373,15.32802],[77.06601,15.33774],[77.0649,15.34355],[77.05903,15.34896],[77.04474,15.35569],[77.04183,15.36192],[77.04135,15.37099],[77.04742,15.3834],[77.04725,15.39002],[77.03963,15.39702],[77.03294,15.39971],[77.02923,15.40436],[77.02897,15.40768],[77.0339,15.41927],[77.03484,15.43029],[77.03353,15.43289],[77.0275,15.43974],[77.01077,15.44874],[76.9973,15.47801],[76.99121,15.4829],[76.97825,15.48879],[76.97459,15.49563],[76.97453,15.51051],[76.99233,15.50579],[77.00946,15.50461],[77.01479,15.50183],[77.02279,15.50224],[77.02884,15.50046],[77.03004,15.50265],[77.03136,15.50709],[77.03132,15.54408],[77.02624,15.58174],[77.03291,15.60498],[77.0313,15.61159],[77.03272,15.62063],[77.03111,15.62099],[77.03146,15.62683],[77.03007,15.62683],[77.03043,15.63449],[77.03412,15.63456],[77.03432,15.6368],[77.04599,15.63864],[77.07173,15.64665],[77.08319,15.65915],[77.087,15.65763],[77.09095,15.65339],[77.10136,15.6485],[77.1034,15.64284],[77.10747,15.64003],[77.10625,15.63744],[77.10832,15.63783],[77.11564,15.63251],[77.12142,15.63108],[77.1283,15.66246],[77.12888,15.66586],[77.12014,15.66761],[77.12137,15.67109],[77.11339,15.67569],[77.1142,15.67798],[77.10928,15.67988],[77.10923,15.68146],[77.09503,15.68836],[77.09379,15.69038],[77.07869,15.69514],[77.08064,15.69853],[77.08257,15.6987],[77.08741,15.71549],[77.07887,15.71625],[77.07969,15.72751],[77.0491,15.73026],[77.04938,15.74004],[77.04594,15.74036],[77.04799,15.75622],[77.05431,15.75617],[77.05646,15.76283],[77.05106,15.76452],[77.05231,15.76987],[77.05695,15.7687],[77.06094,15.78626],[77.06641,15.78505],[77.06717,15.78774],[77.06712,15.80269],[77.06373,15.80319],[77.06547,15.82735],[77.06314,15.82958],[77.05888,15.82999],[77.05344,15.82884],[77.05098,15.8304],[77.04809,15.82797],[77.04766,15.83004],[77.04256,15.82884],[77.04069,15.83274],[77.03527,15.83009]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"529","area_level":"District","area_name":"Bidar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.3323,18.45086],[77.3269,18.45175],[77.32642,18.45885],[77.31989,18.45803],[77.31688,18.44799],[77.31685,18.44225],[77.30066,18.43818],[77.30032,18.43639],[77.28717,18.43057],[77.27904,18.4298],[77.27325,18.42302],[77.26565,18.42234],[77.25937,18.41326],[77.24177,18.41261],[77.23476,18.39676],[77.23369,18.3882],[77.23946,18.37861],[77.24842,18.37606],[77.24639,18.37077],[77.23399,18.3698],[77.22583,18.36522],[77.22448,18.35597],[77.22009,18.34927],[77.22958,18.34821],[77.22277,18.33975],[77.21907,18.32573],[77.21478,18.32324],[77.21179,18.31628],[77.20167,18.32217],[77.19871,18.31545],[77.20311,18.30542],[77.20293,18.29773],[77.20555,18.2941],[77.20985,18.29497],[77.20936,18.28772],[77.21301,18.28032],[77.20377,18.28006],[77.19747,18.27661],[77.19541,18.27981],[77.18821,18.28474],[77.17481,18.28486],[77.17073,18.2767],[77.16903,18.26583],[77.17041,18.26431],[77.16975,18.26087],[77.15913,18.25579],[77.15177,18.23802],[77.14863,18.23905],[77.14923,18.2214],[77.15071,18.22216],[77.15152,18.21704],[77.1427,18.21704],[77.14014,18.20772],[77.13464,18.20721],[77.13374,18.20586],[77.12728,18.20767],[77.11129,18.20424],[77.0976,18.19672],[77.09912,18.19199],[77.11634,18.17102],[77.11672,18.16618],[77.11154,18.15583],[77.1069,18.15516],[77.10324,18.15783],[77.09948,18.15819],[77.09132,18.15584],[77.08485,18.15079],[77.06396,18.15065],[77.05865,18.15661],[77.0532,18.15945],[77.05198,18.17323],[77.03318,18.18199],[77.03173,18.17743],[77.02308,18.17565],[77.02565,18.16175],[77.0233,18.15851],[77.00111,18.1609],[77.00179,18.16235],[76.99641,18.1662],[76.9932,18.17581],[76.99401,18.18054],[76.99056,18.18576],[76.99061,18.18999],[76.9784,18.19198],[76.97742,18.18887],[76.9658,18.19007],[76.95193,18.1881],[76.94845,18.16876],[76.94768,18.16641],[76.94608,18.16663],[76.94236,18.15641],[76.93148,18.15965],[76.92396,18.14663],[76.92448,18.14274],[76.9318,18.13353],[76.92025,18.12507],[76.9205,18.11818],[76.92171,18.11555],[76.92486,18.11631],[76.93292,18.11283],[76.93774,18.11491],[76.95427,18.11054],[76.95872,18.10412],[76.96635,18.0982],[76.96493,18.09173],[76.96294,18.08957],[76.94521,18.0832],[76.95144,18.06566],[76.95162,18.06105],[76.95106,18.05776],[76.9449,18.04836],[76.94836,18.0444],[76.95269,18.04394],[76.95231,18.04022],[76.93662,18.03686],[76.91432,18.03536],[76.9123,18.01734],[76.91094,18.01496],[76.90763,18.01422],[76.90564,18.00971],[76.90603,18.00232],[76.90807,17.99952],[76.90671,17.99659],[76.91314,17.99689],[76.91226,17.97805],[76.91444,17.96156],[76.91539,17.95711],[76.9183,17.95602],[76.91729,17.94806],[76.92067,17.94157],[76.9191,17.9162],[76.91474,17.91481],[76.90126,17.91724],[76.89899,17.90907],[76.89689,17.91037],[76.89655,17.90575],[76.89384,17.90607],[76.89504,17.90275],[76.89419,17.89983],[76.88849,17.89794],[76.88399,17.89898],[76.88427,17.89429],[76.88139,17.89556],[76.87917,17.89452],[76.87266,17.89808],[76.85264,17.90072],[76.83896,17.89906],[76.83192,17.89526],[76.8312,17.88562],[76.81022,17.88704],[76.80768,17.87802],[76.80819,17.87098],[76.80667,17.87058],[76.79878,17.87154],[76.78839,17.87579],[76.77505,17.87771],[76.77357,17.89046],[76.76816,17.90115],[76.75713,17.89917],[76.73997,17.8997],[76.74125,17.8954],[76.73884,17.8831],[76.73848,17.85668],[76.75149,17.85813],[76.75922,17.85588],[76.7656,17.85128],[76.7675,17.85213],[76.77407,17.84638],[76.77422,17.84197],[76.77931,17.83628],[76.787,17.8332],[76.79039,17.82633],[76.78286,17.81792],[76.78151,17.80939],[76.78259,17.80664],[76.77873,17.80048],[76.77544,17.79829],[76.76651,17.79847],[76.7659,17.79224],[76.76446,17.78896],[76.7621,17.78878],[76.76204,17.78702],[76.75091,17.78705],[76.75074,17.78455],[76.74253,17.78422],[76.74434,17.78034],[76.74065,17.77946],[76.72987,17.78274],[76.73016,17.78385],[76.72094,17.78806],[76.71409,17.78094],[76.71191,17.77327],[76.72107,17.7695],[76.71879,17.75148],[76.72481,17.7511],[76.72404,17.74796],[76.72827,17.73756],[76.70911,17.7317],[76.6994,17.72684],[76.70443,17.72262],[76.70087,17.70675],[76.70638,17.70191],[76.71297,17.70041],[76.7136,17.69908],[76.71103,17.69448],[76.70691,17.69357],[76.69418,17.69568],[76.69129,17.68777],[76.69097,17.68126],[76.695,17.67729],[76.69425,17.66218],[76.70916,17.66255],[76.71229,17.65765],[76.70864,17.65208],[76.69875,17.64725],[76.69828,17.64251],[76.71435,17.63881],[76.72029,17.65386],[76.73183,17.65882],[76.73273,17.66563],[76.74183,17.66485],[76.74654,17.66678],[76.76351,17.66568],[76.77347,17.66677],[76.77375,17.65776],[76.77014,17.6463],[76.77191,17.64018],[76.77846,17.63597],[76.78444,17.63645],[76.78467,17.63914],[76.78873,17.64319],[76.78823,17.64796],[76.79291,17.65318],[76.80197,17.65018],[76.80733,17.65068],[76.80787,17.64901],[76.82312,17.65188],[76.83678,17.6494],[76.84185,17.65371],[76.85243,17.6446],[76.86401,17.64637],[76.88326,17.64292],[76.89882,17.64467],[76.90338,17.64149],[76.90781,17.63509],[76.9148,17.63921],[76.9289,17.63754],[76.92864,17.63234],[76.92519,17.62596],[76.91784,17.62356],[76.92191,17.61313],[76.921,17.61073],[76.92769,17.61188],[76.94039,17.60889],[76.94597,17.61699],[76.95038,17.6199],[76.95133,17.62438],[76.95808,17.62096],[76.95874,17.62719],[76.95699,17.63415],[76.96188,17.63962],[76.97139,17.64721],[76.97672,17.64816],[76.98238,17.65277],[76.98321,17.65581],[76.98713,17.65806],[76.988,17.6619],[76.97783,17.66492],[76.9771,17.67992],[76.98097,17.69154],[76.98967,17.69404],[76.99089,17.696],[77.00056,17.696],[77.00626,17.68771],[77.00865,17.68735],[77.01007,17.68462],[77.01765,17.67935],[77.01757,17.67786],[77.03149,17.68153],[77.03416,17.68064],[77.03398,17.67684],[77.03672,17.67505],[77.03477,17.67297],[77.03529,17.66937],[77.04092,17.67166],[77.04321,17.66737],[77.04631,17.67074],[77.0534,17.67114],[77.05814,17.67313],[77.07368,17.66156],[77.08137,17.66229],[77.08531,17.65902],[77.08941,17.66915],[77.08978,17.66773],[77.10458,17.669],[77.10628,17.67402],[77.1145,17.67797],[77.11667,17.68728],[77.11915,17.68552],[77.12357,17.68702],[77.12703,17.68645],[77.12829,17.68239],[77.13246,17.68245],[77.13271,17.66224],[77.13682,17.66213],[77.1365,17.65856],[77.14475,17.65572],[77.14368,17.64765],[77.14782,17.64584],[77.14824,17.6433],[77.15034,17.64257],[77.15151,17.63707],[77.14997,17.63241],[77.15322,17.6316],[77.15516,17.6289],[77.17129,17.62778],[77.17312,17.62408],[77.17853,17.62213],[77.18277,17.61813],[77.18754,17.61858],[77.18888,17.61538],[77.1942,17.61551],[77.19585,17.63121],[77.19751,17.63201],[77.20042,17.63225],[77.20083,17.63063],[77.20732,17.62675],[77.21033,17.62952],[77.21438,17.62928],[77.21561,17.63079],[77.21862,17.62913],[77.22196,17.63237],[77.22771,17.63028],[77.22804,17.63185],[77.2305,17.63251],[77.23342,17.6303],[77.23759,17.6315],[77.25824,17.62332],[77.26421,17.62569],[77.27491,17.62683],[77.27954,17.61756],[77.2821,17.61789],[77.28288,17.61979],[77.28476,17.61922],[77.28718,17.61759],[77.28508,17.61553],[77.28837,17.61455],[77.29149,17.61119],[77.29363,17.6155],[77.29509,17.61509],[77.29461,17.60897],[77.29956,17.60685],[77.29848,17.60362],[77.30029,17.59772],[77.32988,17.59195],[77.34039,17.5879],[77.35183,17.60006],[77.35961,17.60019],[77.37922,17.595],[77.37877,17.58388],[77.38446,17.58308],[77.39135,17.58616],[77.40115,17.58392],[77.40387,17.58512],[77.43055,17.58595],[77.44405,17.58436],[77.44498,17.58625],[77.44329,17.59169],[77.44614,17.59647],[77.44476,17.60941],[77.44873,17.60934],[77.45115,17.62321],[77.45589,17.63418],[77.45208,17.63642],[77.45223,17.64],[77.44972,17.64396],[77.45001,17.65058],[77.44822,17.65112],[77.44893,17.65943],[77.45482,17.67448],[77.45349,17.67711],[77.4537,17.68649],[77.45504,17.68893],[77.45216,17.69114],[77.45243,17.6947],[77.45782,17.6963],[77.45887,17.69862],[77.46748,17.70298],[77.48415,17.7056],[77.48489,17.70914],[77.48601,17.70793],[77.49227,17.70813],[77.49705,17.71551],[77.50914,17.71629],[77.51165,17.72092],[77.51655,17.72016],[77.51824,17.72358],[77.52201,17.72603],[77.52859,17.72517],[77.53133,17.72867],[77.53328,17.72768],[77.54219,17.72894],[77.54596,17.72684],[77.54623,17.73282],[77.54861,17.73577],[77.5567,17.73738],[77.55801,17.74139],[77.56094,17.74281],[77.56439,17.74786],[77.56853,17.74891],[77.56727,17.7596],[77.56915,17.76649],[77.56628,17.76675],[77.55983,17.76342],[77.55486,17.76397],[77.54823,17.76706],[77.54606,17.77166],[77.54026,17.77438],[77.54054,17.77777],[77.53751,17.77993],[77.53439,17.77763],[77.52867,17.78066],[77.527,17.7799],[77.52636,17.78163],[77.52211,17.78055],[77.51751,17.78249],[77.51233,17.78213],[77.50656,17.78595],[77.509,17.78778],[77.51494,17.80545],[77.52294,17.81141],[77.52903,17.81293],[77.52822,17.8279],[77.53238,17.82911],[77.5467,17.82848],[77.54891,17.81938],[77.55403,17.82007],[77.56068,17.83865],[77.56744,17.84542],[77.56484,17.85119],[77.56932,17.85156],[77.57,17.86765],[77.57346,17.86919],[77.5764,17.87542],[77.58059,17.87345],[77.58342,17.87704],[77.59449,17.87233],[77.59908,17.87309],[77.60037,17.8806],[77.59583,17.88136],[77.58599,17.89384],[77.585,17.90193],[77.58606,17.90784],[77.59999,17.90414],[77.60518,17.90781],[77.61904,17.90406],[77.622,17.92957],[77.61868,17.93949],[77.62294,17.94552],[77.63251,17.94667],[77.63289,17.9558],[77.62454,17.9596],[77.63301,17.96738],[77.63329,17.96037],[77.63513,17.95925],[77.63721,17.95232],[77.64062,17.95189],[77.6409,17.95411],[77.64948,17.95002],[77.64951,17.95907],[77.65586,17.96884],[77.64821,17.98026],[77.65204,17.99389],[77.64891,17.99888],[77.63875,17.99645],[77.62779,17.99679],[77.61966,18.00649],[77.60747,18.00985],[77.60794,18.01796],[77.60593,18.02023],[77.60164,18.01984],[77.59586,18.01285],[77.58859,18.01216],[77.58489,18.01679],[77.58325,18.02826],[77.58059,18.03158],[77.56061,18.03622],[77.55379,18.03582],[77.55183,18.0507],[77.54948,18.05124],[77.54961,18.05439],[77.54764,18.05613],[77.54834,18.06521],[77.55742,18.06373],[77.55971,18.07188],[77.56592,18.07667],[77.56943,18.07824],[77.57592,18.07806],[77.58358,18.08246],[77.58551,18.08184],[77.59564,18.08603],[77.5988,18.09333],[77.60155,18.1059],[77.59916,18.12099],[77.59699,18.12367],[77.5944,18.13272],[77.59684,18.15595],[77.5924,18.15544],[77.58422,18.15923],[77.58131,18.16232],[77.57716,18.17249],[77.57472,18.1741],[77.57069,18.19217],[77.56405,18.19426],[77.56346,18.19613],[77.56388,18.20194],[77.56551,18.20418],[77.57215,18.20351],[77.57482,18.20163],[77.58058,18.21385],[77.58531,18.21982],[77.58149,18.22486],[77.58185,18.22697],[77.57988,18.22816],[77.58052,18.23217],[77.57301,18.23944],[77.57178,18.244],[77.57378,18.24499],[77.58315,18.26078],[77.59119,18.26241],[77.59489,18.26531],[77.60117,18.27762],[77.6043,18.27877],[77.60542,18.28135],[77.58185,18.28538],[77.57616,18.28873],[77.57256,18.2933],[77.57021,18.29253],[77.56694,18.28728],[77.56134,18.28495],[77.55411,18.29088],[77.54048,18.29449],[77.53272,18.2987],[77.52373,18.30821],[77.51263,18.3096],[77.50882,18.30428],[77.51109,18.2953],[77.51023,18.29248],[77.51205,18.29074],[77.51156,18.28205],[77.50962,18.28181],[77.50522,18.27702],[77.49866,18.27675],[77.49267,18.2672],[77.48138,18.27236],[77.47973,18.26818],[77.47575,18.26466],[77.46504,18.26254],[77.45233,18.26698],[77.45178,18.26972],[77.44758,18.27],[77.44558,18.27662],[77.44586,18.28381],[77.44035,18.28263],[77.43651,18.29323],[77.43766,18.31031],[77.42831,18.31236],[77.42556,18.30788],[77.41703,18.30643],[77.409,18.30147],[77.40142,18.30449],[77.39485,18.30359],[77.38512,18.30931],[77.36579,18.30712],[77.35672,18.3202],[77.3716,18.32521],[77.37562,18.33205],[77.38094,18.33102],[77.38243,18.34225],[77.38549,18.34081],[77.39016,18.34371],[77.39498,18.3415],[77.39434,18.34743],[77.40015,18.34745],[77.39893,18.35979],[77.39487,18.36845],[77.40984,18.37741],[77.41329,18.38507],[77.41409,18.39311],[77.40357,18.39965],[77.40083,18.39988],[77.40016,18.402],[77.38843,18.39953],[77.37283,18.4011],[77.37233,18.40673],[77.36839,18.41253],[77.37065,18.41879],[77.36726,18.41869],[77.3654,18.42772],[77.36215,18.42989],[77.36446,18.43452],[77.36203,18.43558],[77.36184,18.43728],[77.3675,18.44696],[77.36564,18.45156],[77.35349,18.44767],[77.35107,18.4422],[77.34796,18.43947],[77.3475,18.43396],[77.34522,18.43361],[77.33566,18.44232],[77.33603,18.45015],[77.3323,18.45086]]],[[[77.27885,18.47574],[77.27813,18.47593],[77.2777,18.47661],[77.27605,18.47696],[77.27504,18.47772],[77.27334,18.47439],[77.27215,18.47296],[77.27206,18.47105],[77.27175,18.47054],[77.27177,18.47002],[77.27105,18.46771],[77.27094,18.46675],[77.27127,18.46577],[77.26938,18.46386],[77.26844,18.46077],[77.26775,18.45968],[77.26754,18.45444],[77.26941,18.45439],[77.27243,18.45392],[77.28001,18.45361],[77.28077,18.45378],[77.28178,18.45459],[77.28234,18.45564],[77.28433,18.45519],[77.28477,18.45593],[77.28545,18.45602],[77.28864,18.45534],[77.29064,18.45669],[77.29208,18.45718],[77.29423,18.45882],[77.29595,18.46092],[77.29546,18.46129],[77.29559,18.46239],[77.29613,18.46347],[77.29866,18.46518],[77.29953,18.46488],[77.29992,18.46638],[77.29995,18.47014],[77.30043,18.47139],[77.30029,18.47303],[77.29979,18.47411],[77.29638,18.47702],[77.29275,18.47697],[77.28915,18.4765],[77.28682,18.47436],[77.28559,18.47456],[77.28397,18.47447],[77.28263,18.47494],[77.28051,18.47478],[77.27885,18.47574]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"53","area_level":"District","area_name":"Pithoragarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.18756,30.78985],[80.18447,30.79724],[80.17777,30.80405],[80.15815,30.80588],[80.15597,30.80487],[80.1542,30.79974],[80.15737,30.78873],[80.15376,30.78743],[80.14354,30.78975],[80.13774,30.7841],[80.13003,30.78198],[80.12242,30.77736],[80.11091,30.7793],[80.10011,30.78738],[80.09313,30.78392],[80.08439,30.77546],[80.08331,30.77012],[80.08631,30.76386],[80.08711,30.75717],[80.09665,30.74705],[80.09732,30.7444],[80.09581,30.74089],[80.10204,30.72979],[80.10064,30.72508],[80.09468,30.72338],[80.08752,30.7278],[80.0804,30.72927],[80.05832,30.72796],[80.04425,30.7327],[80.02567,30.73434],[80.01852,30.72784],[79.99357,30.71676],[79.98519,30.70861],[79.97948,30.7093],[79.9799,30.70564],[79.98334,30.70036],[79.98267,30.69698],[79.98508,30.69347],[79.98313,30.6891],[80.00075,30.67637],[80.00713,30.66659],[80.01346,30.66566],[80.01697,30.65706],[80.01516,30.64829],[80.01968,30.64511],[80.02124,30.64044],[80.02922,30.63856],[80.03327,30.6359],[80.03378,30.63333],[80.03016,30.62866],[80.0353,30.62487],[80.03628,30.62082],[80.02991,30.61516],[80.03964,30.60862],[80.04279,30.59831],[80.03387,30.59169],[80.02341,30.58741],[80.02039,30.58348],[80.01973,30.57875],[80.01257,30.57547],[80.01069,30.56912],[80.01167,30.5608],[80.00746,30.55374],[80.00148,30.54872],[79.99987,30.5447],[79.99778,30.54412],[79.99499,30.53742],[79.99631,30.53194],[80.00334,30.52764],[80.00392,30.52409],[80.00631,30.52189],[80.00695,30.50667],[80.01257,30.5021],[80.0127,30.49958],[80.0092,30.49445],[80.01578,30.49177],[80.01554,30.48545],[80.02022,30.48106],[80.00926,30.47408],[80.00861,30.46927],[80.01958,30.46006],[80.02273,30.45357],[80.02001,30.44889],[80.0376,30.44387],[80.03719,30.43938],[80.03273,30.43276],[80.03385,30.42568],[80.03091,30.42168],[80.03179,30.41859],[80.02989,30.4133],[80.03746,30.40965],[80.03779,30.40696],[80.03139,30.3968],[80.03297,30.39279],[80.02987,30.39202],[80.01768,30.38255],[80.00822,30.36911],[79.99739,30.36558],[79.99909,30.35756],[79.9964,30.35166],[79.99661,30.33711],[79.98685,30.31646],[79.99782,30.3167],[80.0107,30.31449],[80.02012,30.31541],[80.02498,30.31392],[80.03596,30.30274],[80.04153,30.2914],[80.04886,30.2869],[80.0679,30.28119],[80.06423,30.27809],[80.06074,30.27084],[80.06319,30.26573],[80.06854,30.26694],[80.07314,30.26282],[80.07138,30.25819],[80.07448,30.25332],[80.07309,30.24318],[80.07757,30.23766],[80.09301,30.22657],[80.11045,30.22816],[80.11612,30.22658],[80.11702,30.21801],[80.10808,30.19952],[80.11122,30.19176],[80.10732,30.18334],[80.10784,30.17869],[80.10322,30.16406],[80.10324,30.15454],[80.10496,30.15237],[80.10421,30.14841],[80.09667,30.13639],[80.09435,30.12818],[80.08841,30.12494],[80.08756,30.12002],[80.08238,30.11155],[80.08221,30.10012],[80.08449,30.09595],[80.07979,30.08323],[80.08213,30.08017],[80.08159,30.07686],[80.08559,30.07064],[80.08472,30.06242],[80.08167,30.05931],[80.07537,30.04688],[80.07493,30.03886],[80.07175,30.0344],[80.07181,30.03157],[80.07041,30.03127],[80.07162,30.02963],[80.06975,30.02626],[80.06958,30.01992],[80.06749,30.01893],[80.07108,30.01382],[80.07034,30.01176],[80.07323,30.00983],[80.07119,30.00072],[80.07572,29.998],[80.07623,29.99375],[80.0812,29.98881],[80.09098,29.96901],[80.09538,29.96729],[80.09786,29.96251],[80.10182,29.96001],[80.10676,29.9594],[80.10982,29.95603],[80.11503,29.95473],[80.11966,29.95043],[80.12921,29.94589],[80.13103,29.94311],[80.13851,29.9415],[80.15185,29.91702],[80.15673,29.9118],[80.15863,29.90436],[80.15393,29.89988],[80.14859,29.89777],[80.14339,29.90209],[80.13441,29.89948],[80.12671,29.8994],[80.11616,29.90551],[80.10753,29.90645],[80.09585,29.89726],[80.096,29.89359],[80.09035,29.88833],[80.08545,29.88691],[80.07775,29.89058],[80.07129,29.90079],[80.06352,29.90153],[80.06147,29.90308],[80.05345,29.90263],[80.04497,29.89555],[80.03765,29.89689],[80.03221,29.89541],[80.0267,29.89629],[80.02401,29.89311],[80.01278,29.88757],[80.00546,29.8738],[80.00781,29.8578],[80.00665,29.85103],[79.9931,29.85013],[79.97796,29.8523],[79.97659,29.84996],[79.97685,29.84162],[79.97923,29.84323],[79.98133,29.84093],[79.99354,29.84507],[79.99464,29.83823],[79.99808,29.83523],[80.00211,29.83555],[80.0197,29.82862],[80.02032,29.82641],[80.01648,29.82042],[80.01881,29.81074],[80.02332,29.81144],[80.02833,29.80756],[80.03245,29.8065],[80.03388,29.79613],[80.03866,29.79497],[80.03867,29.79022],[80.04025,29.78797],[80.0336,29.78232],[80.01817,29.78269],[80.0127,29.77401],[80.0102,29.77632],[80.00335,29.77794],[79.9998,29.77445],[79.99842,29.7643],[79.99201,29.76531],[79.97519,29.7596],[79.96402,29.76429],[79.94571,29.76403],[79.93156,29.76653],[79.93224,29.77377],[79.92915,29.78612],[79.9314,29.78995],[79.91245,29.79271],[79.91121,29.79177],[79.91216,29.78935],[79.90947,29.78917],[79.90874,29.7965],[79.90436,29.79852],[79.89859,29.79181],[79.89392,29.79479],[79.8921,29.79364],[79.89259,29.78934],[79.88976,29.78631],[79.88694,29.77609],[79.87527,29.77335],[79.86986,29.76746],[79.86068,29.76908],[79.85732,29.76797],[79.85035,29.77141],[79.84633,29.77648],[79.82455,29.78174],[79.82206,29.78152],[79.82372,29.77714],[79.82095,29.77322],[79.82704,29.76953],[79.82663,29.75947],[79.83264,29.74995],[79.84062,29.74805],[79.84531,29.74472],[79.86836,29.73879],[79.87738,29.73142],[79.88585,29.72048],[79.89123,29.71815],[79.89399,29.71221],[79.88947,29.70652],[79.88941,29.70399],[79.89619,29.70388],[79.90269,29.69768],[79.91456,29.69795],[79.91786,29.69593],[79.92479,29.69881],[79.92726,29.69511],[79.94046,29.68673],[79.94193,29.68218],[79.94375,29.68189],[79.94655,29.68535],[79.9578,29.67748],[79.95795,29.66934],[79.96349,29.66381],[79.95955,29.65965],[79.959,29.65674],[79.96867,29.64973],[79.97039,29.64254],[79.98241,29.62203],[79.98288,29.61773],[79.9886,29.6138],[79.99155,29.59733],[79.994,29.59379],[79.99289,29.58849],[79.99697,29.58016],[79.99942,29.55959],[80.00456,29.55802],[80.0111,29.55121],[80.01876,29.54984],[80.0312,29.55099],[80.03643,29.54792],[80.04785,29.54589],[80.06132,29.53859],[80.06688,29.53736],[80.06521,29.52784],[80.07159,29.52534],[80.07476,29.52176],[80.08724,29.52141],[80.092,29.51935],[80.10272,29.5234],[80.10703,29.5222],[80.11249,29.5146],[80.1239,29.50982],[80.12911,29.50565],[80.12977,29.50185],[80.12542,29.49547],[80.13261,29.48898],[80.13948,29.48803],[80.14233,29.48288],[80.14753,29.48019],[80.14987,29.47122],[80.161,29.47477],[80.16315,29.47244],[80.16188,29.4687],[80.16563,29.46762],[80.16692,29.46486],[80.18205,29.46452],[80.18346,29.45748],[80.1958,29.4591],[80.20503,29.45183],[80.21106,29.45322],[80.21943,29.45228],[80.22295,29.44979],[80.24243,29.44379],[80.24559,29.44708],[80.25481,29.44799],[80.25731,29.45174],[80.2661,29.44927],[80.27437,29.45012],[80.27452,29.45231],[80.26921,29.45416],[80.26907,29.45554],[80.27567,29.45852],[80.27928,29.45784],[80.27891,29.45387],[80.28083,29.4516],[80.28813,29.45124],[80.29444,29.45395],[80.2975,29.45173],[80.30178,29.45278],[80.30236,29.45509],[80.28716,29.47357],[80.28694,29.47698],[80.29352,29.47958],[80.29666,29.48526],[80.29622,29.48775],[80.29873,29.49061],[80.30116,29.49029],[80.3047,29.48623],[80.31306,29.48481],[80.31462,29.49039],[80.31313,29.49611],[80.31422,29.49943],[80.3292,29.50575],[80.33213,29.51294],[80.34171,29.51028],[80.34967,29.51921],[80.34863,29.52436],[80.35561,29.52795],[80.35788,29.53277],[80.34857,29.54044],[80.34152,29.54054],[80.34134,29.54242],[80.34563,29.54861],[80.34247,29.55277],[80.34867,29.55535],[80.36358,29.55636],[80.36219,29.56032],[80.36307,29.56393],[80.37849,29.56105],[80.37911,29.57158],[80.38805,29.57146],[80.39101,29.58116],[80.40277,29.58929],[80.40794,29.59597],[80.40875,29.60571],[80.40585,29.6124],[80.40809,29.61521],[80.40818,29.62066],[80.41144,29.62592],[80.41824,29.6267],[80.42087,29.62985],[80.41933,29.63371],[80.41986,29.63933],[80.41585,29.64146],[80.41397,29.64465],[80.41635,29.65163],[80.41394,29.65431],[80.41012,29.6538],[80.40601,29.65986],[80.39943,29.65855],[80.398,29.65979],[80.3988,29.66211],[80.39009,29.66485],[80.38987,29.67121],[80.38402,29.67542],[80.38486,29.68547],[80.38023,29.68959],[80.37943,29.70089],[80.3767,29.7035],[80.3745,29.71308],[80.37207,29.71549],[80.37587,29.72005],[80.36671,29.72355],[80.36577,29.72928],[80.36958,29.73444],[80.36432,29.74015],[80.36515,29.74693],[80.36867,29.75097],[80.37179,29.7494],[80.38527,29.75046],[80.38634,29.75135],[80.38484,29.75676],[80.38577,29.75906],[80.39038,29.76049],[80.39425,29.75827],[80.39764,29.75917],[80.39627,29.76528],[80.40067,29.77458],[80.40475,29.778],[80.40368,29.78192],[80.40724,29.78409],[80.40614,29.78865],[80.40711,29.7949],[80.41347,29.79186],[80.41588,29.79564],[80.4291,29.7981],[80.43605,29.80614],[80.44347,29.79926],[80.44831,29.79904],[80.45321,29.80217],[80.46432,29.80238],[80.47999,29.79539],[80.49386,29.7958],[80.49431,29.79875],[80.49261,29.80173],[80.49449,29.8019],[80.49574,29.80503],[80.49989,29.80821],[80.49754,29.81111],[80.50109,29.81739],[80.50464,29.81948],[80.50668,29.82302],[80.52195,29.82743],[80.52376,29.82948],[80.5236,29.83245],[80.52779,29.83362],[80.53138,29.83869],[80.53566,29.8389],[80.53873,29.8475],[80.54389,29.84668],[80.54823,29.85036],[80.55312,29.85134],[80.55138,29.85636],[80.55423,29.85946],[80.55427,29.86164],[80.56127,29.86645],[80.55678,29.87036],[80.56555,29.87927],[80.57239,29.89489],[80.56971,29.90875],[80.57411,29.92404],[80.57788,29.92773],[80.58133,29.937],[80.59527,29.95327],[80.6039,29.95916],[80.60868,29.9588],[80.61918,29.96359],[80.62957,29.96543],[80.63702,29.96348],[80.64056,29.95967],[80.64879,29.95573],[80.67455,29.95721],[80.68243,29.9624],[80.68398,29.967],[80.69041,29.97462],[80.69719,29.97978],[80.7,29.97967],[80.70532,29.98627],[80.71227,29.99061],[80.71896,30.00058],[80.737,29.99936],[80.74456,30.00385],[80.74954,30.00901],[80.75391,30.01984],[80.75772,30.0242],[80.75807,30.0283],[80.75562,30.03158],[80.75589,30.03985],[80.75913,30.04269],[80.75849,30.04512],[80.76103,30.04952],[80.77213,30.0541],[80.77651,30.0544],[80.77954,30.05681],[80.78932,30.06958],[80.78988,30.07329],[80.79962,30.08093],[80.80561,30.08999],[80.81373,30.09309],[80.8145,30.09582],[80.81919,30.09683],[80.82071,30.09969],[80.82584,30.10011],[80.82919,30.09729],[80.83977,30.09871],[80.84601,30.10438],[80.84586,30.10697],[80.84189,30.11117],[80.84472,30.11623],[80.85425,30.11908],[80.85496,30.12047],[80.86254,30.12105],[80.86845,30.12619],[80.87477,30.12649],[80.87683,30.13439],[80.87145,30.14759],[80.8704,30.15919],[80.86717,30.1703],[80.86776,30.17387],[80.88197,30.1837],[80.89096,30.19643],[80.89561,30.20839],[80.90273,30.21538],[80.91972,30.2142],[80.9217,30.20517],[80.92131,30.19834],[80.91828,30.18983],[80.94442,30.17869],[80.95001,30.17826],[80.96005,30.17899],[80.99961,30.19252],[81.00745,30.19183],[81.01316,30.1941],[81.03106,30.19638],[81.03503,30.19815],[81.03625,30.20163],[81.04328,30.20456],[81.04661,30.21087],[81.03105,30.22015],[81.03002,30.22184],[81.0314,30.2261],[81.0271,30.22846],[81.03321,30.24639],[81.01243,30.25495],[81.00555,30.26309],[80.98839,30.26542],[80.95749,30.2751],[80.93306,30.2801],[80.89626,30.294],[80.86272,30.29947],[80.82157,30.31556],[80.8007,30.32965],[80.78733,30.34261],[80.78462,30.34987],[80.78565,30.35414],[80.78359,30.35785],[80.75197,30.3935],[80.74572,30.39737],[80.71352,30.40817],[80.67807,30.43745],[80.65202,30.44429],[80.63786,30.45369],[80.61609,30.46515],[80.59801,30.47877],[80.58556,30.48214],[80.5802,30.48093],[80.57659,30.47819],[80.56985,30.46662],[80.56006,30.46637],[80.55554,30.46486],[80.55142,30.46089],[80.54761,30.44859],[80.53908,30.4492],[80.52459,30.46265],[80.5171,30.47318],[80.5095,30.47552],[80.49833,30.48417],[80.45596,30.49422],[80.44769,30.49765],[80.43133,30.50718],[80.42917,30.51096],[80.41948,30.51518],[80.41558,30.52533],[80.41273,30.5252],[80.40686,30.5205],[80.39831,30.51676],[80.38559,30.51505],[80.38283,30.51614],[80.38142,30.52006],[80.37833,30.52188],[80.3739,30.52145],[80.36061,30.52735],[80.31886,30.55938],[80.31242,30.56207],[80.28307,30.57219],[80.27703,30.56583],[80.27359,30.56504],[80.26623,30.56664],[80.26171,30.56506],[80.25776,30.55884],[80.25325,30.56543],[80.24891,30.5687],[80.22683,30.57895],[80.22736,30.59343],[80.22963,30.60089],[80.2288,30.60349],[80.21709,30.60836],[80.21167,30.62242],[80.21193,30.62481],[80.21872,30.62864],[80.22182,30.63334],[80.22117,30.64182],[80.19716,30.66209],[80.19761,30.68001],[80.19971,30.68305],[80.20407,30.68485],[80.21572,30.68462],[80.23457,30.68829],[80.23642,30.69038],[80.23687,30.70747],[80.24762,30.71781],[80.25044,30.74235],[80.2429,30.74663],[80.23966,30.76206],[80.23018,30.75918],[80.21977,30.75036],[80.21491,30.74906],[80.2001,30.76472],[80.20028,30.77268],[80.20322,30.77652],[80.19836,30.77884],[80.18756,30.78985]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"530","area_level":"District","area_name":"Vijayapura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.66002,17.45769],[75.65662,17.4599],[75.64879,17.47033],[75.63298,17.47721],[75.62744,17.4625],[75.62161,17.45925],[75.61545,17.43885],[75.61335,17.42474],[75.60958,17.42374],[75.6066,17.42037],[75.61208,17.4074],[75.61352,17.39192],[75.60612,17.39448],[75.60108,17.39031],[75.5936,17.3873],[75.57414,17.3833],[75.57718,17.37591],[75.58085,17.35122],[75.58629,17.35059],[75.59514,17.34621],[75.61003,17.34504],[75.61057,17.33687],[75.61235,17.33689],[75.61209,17.32514],[75.60373,17.3055],[75.62241,17.2951],[75.62547,17.28532],[75.63022,17.28084],[75.62785,17.27434],[75.65417,17.27382],[75.65772,17.26321],[75.65856,17.23867],[75.66191,17.21458],[75.65539,17.20553],[75.64259,17.19765],[75.63985,17.19432],[75.63993,17.18887],[75.62843,17.18866],[75.62886,17.1834],[75.62723,17.18316],[75.62538,17.174],[75.62826,17.16269],[75.6452,17.14421],[75.64757,17.13451],[75.64953,17.13438],[75.65035,17.11569],[75.67229,17.116],[75.67234,17.1014],[75.67579,17.09529],[75.67337,17.0912],[75.67874,17.07715],[75.67672,17.06542],[75.6604,17.0645],[75.65031,17.05726],[75.641,17.03758],[75.64999,17.03224],[75.66969,17.03816],[75.66909,17.00957],[75.66723,17.00576],[75.66572,16.99375],[75.66608,16.97977],[75.66882,16.97983],[75.67184,16.97593],[75.67255,16.97013],[75.67708,16.969],[75.67577,16.96642],[75.66991,16.96182],[75.6554,16.96153],[75.64854,16.95871],[75.64598,16.95401],[75.64206,16.95455],[75.63821,16.95775],[75.63693,16.96854],[75.63393,16.97026],[75.60786,16.971],[75.60824,16.98165],[75.60613,16.99436],[75.60689,17.00457],[75.5731,17.00961],[75.56722,17.00905],[75.56609,16.98138],[75.56765,16.96575],[75.56413,16.96791],[75.53917,16.96548],[75.52931,16.9694],[75.50966,16.95025],[75.50736,16.95083],[75.49035,16.94467],[75.48908,16.94442],[75.48956,16.95555],[75.48779,16.96562],[75.48377,16.97208],[75.48324,16.97599],[75.47856,16.97857],[75.46889,16.97954],[75.46618,16.98131],[75.46555,16.98837],[75.4416,16.98223],[75.43536,16.97345],[75.42788,16.96649],[75.41151,16.97425],[75.39214,16.98009],[75.36854,16.97195],[75.36113,16.96557],[75.35839,16.9649],[75.35868,16.96299],[75.35293,16.95903],[75.34158,16.95617],[75.34267,16.95179],[75.34124,16.94152],[75.3342,16.91243],[75.33387,16.8918],[75.33563,16.86939],[75.35379,16.87114],[75.36902,16.86625],[75.38067,16.86681],[75.3859,16.86352],[75.39495,16.86315],[75.38104,16.83367],[75.37888,16.82408],[75.37869,16.79841],[75.38082,16.79854],[75.38251,16.78042],[75.38507,16.77088],[75.38435,16.76342],[75.38697,16.7604],[75.38844,16.76165],[75.39239,16.75957],[75.40769,16.76146],[75.40765,16.76381],[75.41307,16.76648],[75.41414,16.76543],[75.41982,16.76813],[75.42604,16.76793],[75.44275,16.75727],[75.46529,16.75492],[75.47696,16.74732],[75.49185,16.74563],[75.49176,16.72432],[75.4883,16.69449],[75.4626,16.69991],[75.4378,16.69785],[75.44721,16.6651],[75.45494,16.66386],[75.45688,16.64739],[75.46102,16.63561],[75.46205,16.62256],[75.47396,16.61211],[75.48492,16.60643],[75.49143,16.59894],[75.49361,16.59315],[75.49113,16.58563],[75.48486,16.5808],[75.48531,16.5757],[75.48387,16.5731],[75.47806,16.56738],[75.47295,16.56696],[75.47224,16.56336],[75.48073,16.56117],[75.47951,16.5574],[75.48459,16.55722],[75.48477,16.55504],[75.48836,16.5551],[75.48846,16.53014],[75.49065,16.52945],[75.49073,16.52602],[75.49039,16.52098],[75.48862,16.52029],[75.48587,16.5086],[75.4555,16.50669],[75.45909,16.48424],[75.46329,16.47639],[75.46322,16.47379],[75.44539,16.45047],[75.4331,16.43838],[75.4328,16.43095],[75.44874,16.41326],[75.4578,16.41271],[75.46552,16.41845],[75.47706,16.416],[75.48682,16.4176],[75.49384,16.42281],[75.49847,16.43071],[75.49562,16.44669],[75.49906,16.45357],[75.53318,16.46635],[75.54333,16.46403],[75.55219,16.45592],[75.55345,16.45147],[75.552,16.4443],[75.5568,16.42458],[75.56197,16.41569],[75.56984,16.41183],[75.57509,16.41278],[75.57826,16.42297],[75.58398,16.43256],[75.59943,16.44652],[75.60739,16.44794],[75.63459,16.44384],[75.67115,16.42483],[75.67301,16.42588],[75.67781,16.42419],[75.68866,16.41438],[75.70302,16.40778],[75.72081,16.39099],[75.74842,16.38845],[75.75616,16.38482],[75.77318,16.38322],[75.78189,16.37974],[75.78919,16.37406],[75.81029,16.37029],[75.82649,16.3611],[75.84048,16.34905],[75.85174,16.34638],[75.86769,16.34633],[75.87327,16.3447],[75.89122,16.32701],[75.90005,16.32285],[75.93045,16.31577],[75.95602,16.2972],[75.96233,16.29635],[75.97757,16.29988],[75.99219,16.2996],[75.999,16.30333],[76.00946,16.30453],[76.02641,16.30067],[76.03244,16.28941],[76.03985,16.28265],[76.05866,16.27132],[76.06531,16.26207],[76.06768,16.2557],[76.06802,16.24374],[76.05908,16.23259],[76.05786,16.22767],[76.06123,16.21328],[76.06771,16.20756],[76.08481,16.20481],[76.09568,16.19828],[76.1224,16.19049],[76.13924,16.1811],[76.15958,16.18623],[76.17202,16.1849],[76.18301,16.18032],[76.24979,16.16435],[76.25372,16.16092],[76.27176,16.15167],[76.28052,16.15267],[76.28817,16.15923],[76.29485,16.18213],[76.29709,16.18469],[76.3158,16.19097],[76.32176,16.1898],[76.33148,16.19404],[76.33364,16.19887],[76.34739,16.21572],[76.34953,16.22192],[76.34906,16.23017],[76.35276,16.23543],[76.34612,16.24968],[76.34794,16.25785],[76.34778,16.27768],[76.34136,16.27744],[76.34176,16.27847],[76.33836,16.27943],[76.32017,16.28208],[76.32013,16.28696],[76.3127,16.28669],[76.29964,16.28323],[76.29803,16.29874],[76.30283,16.31897],[76.29515,16.32034],[76.29496,16.32437],[76.29235,16.32541],[76.29135,16.33054],[76.29218,16.33465],[76.30403,16.34086],[76.30541,16.3457],[76.31423,16.34539],[76.31316,16.35671],[76.31141,16.36148],[76.30973,16.36127],[76.30828,16.37016],[76.30477,16.37709],[76.31046,16.3967],[76.31193,16.39562],[76.3147,16.39682],[76.31699,16.39419],[76.32092,16.39633],[76.32576,16.39596],[76.33074,16.3915],[76.33321,16.39115],[76.33865,16.4059],[76.33209,16.40718],[76.33055,16.40963],[76.33352,16.41638],[76.33289,16.42285],[76.3305,16.42524],[76.33212,16.42696],[76.35052,16.42683],[76.35455,16.42214],[76.35753,16.42224],[76.38524,16.4256],[76.39029,16.43804],[76.40303,16.43453],[76.40307,16.43292],[76.43462,16.43573],[76.43514,16.43772],[76.43245,16.45051],[76.42983,16.4986],[76.43278,16.50478],[76.43399,16.51884],[76.42254,16.5518],[76.42157,16.55926],[76.42398,16.56807],[76.42245,16.5687],[76.42286,16.57334],[76.42129,16.57397],[76.4158,16.59019],[76.41327,16.59021],[76.41556,16.59881],[76.41503,16.60544],[76.40986,16.61272],[76.40906,16.61892],[76.40494,16.62519],[76.40345,16.64867],[76.4063,16.65661],[76.41772,16.67137],[76.42041,16.67292],[76.42114,16.67859],[76.42651,16.68604],[76.42534,16.69551],[76.42898,16.69727],[76.43105,16.70091],[76.4381,16.70339],[76.44111,16.70871],[76.45214,16.71414],[76.45827,16.70867],[76.46195,16.7083],[76.4594,16.72329],[76.44634,16.72268],[76.44394,16.71538],[76.44168,16.71364],[76.42263,16.71687],[76.42316,16.72957],[76.42889,16.73355],[76.42888,16.73785],[76.44041,16.74203],[76.44002,16.75096],[76.43844,16.75332],[76.44265,16.75755],[76.44,16.76073],[76.43703,16.76158],[76.43608,16.76454],[76.42641,16.76588],[76.41851,16.7689],[76.4183,16.7645],[76.41123,16.76483],[76.41157,16.76818],[76.38255,16.76961],[76.37092,16.76859],[76.37366,16.78459],[76.37721,16.79345],[76.37735,16.80169],[76.39142,16.80271],[76.39637,16.80592],[76.40083,16.80111],[76.41019,16.79884],[76.41373,16.81343],[76.38738,16.8173],[76.3524,16.81975],[76.3543,16.83255],[76.35883,16.84261],[76.36717,16.84897],[76.37428,16.85883],[76.38875,16.85632],[76.3949,16.85853],[76.40427,16.85853],[76.40404,16.85403],[76.42911,16.85075],[76.4295,16.83736],[76.45997,16.83304],[76.46348,16.83852],[76.47098,16.83879],[76.47066,16.84706],[76.46718,16.84972],[76.46197,16.84929],[76.46135,16.85938],[76.45845,16.86029],[76.45854,16.86691],[76.43806,16.868],[76.43665,16.88134],[76.43316,16.88181],[76.4346,16.88939],[76.43361,16.89762],[76.46275,16.90063],[76.46528,16.90273],[76.4649,16.91386],[76.45848,16.92791],[76.45178,16.92781],[76.44756,16.9406],[76.4341,16.94325],[76.43376,16.9383],[76.42785,16.9274],[76.42086,16.92742],[76.39905,16.93533],[76.40227,16.94216],[76.40237,16.96253],[76.40037,16.97708],[76.42496,16.97802],[76.43664,16.98173],[76.44043,16.99677],[76.43926,17.00679],[76.43315,17.02549],[76.43644,17.02532],[76.43726,17.02669],[76.43115,17.02987],[76.42734,17.05354],[76.43109,17.05342],[76.42941,17.09965],[76.41007,17.08916],[76.39817,17.07005],[76.39402,17.06972],[76.38798,17.07258],[76.39139,17.09169],[76.39035,17.09712],[76.38413,17.10263],[76.36612,17.10725],[76.36302,17.11095],[76.36226,17.11604],[76.36372,17.12088],[76.36741,17.12384],[76.38355,17.12749],[76.3912,17.13082],[76.39508,17.13788],[76.39458,17.14297],[76.38919,17.1464],[76.38351,17.14659],[76.36747,17.13767],[76.36371,17.13765],[76.35999,17.14025],[76.3597,17.14528],[76.36674,17.15593],[76.36894,17.16674],[76.36463,17.18139],[76.36052,17.18673],[76.35631,17.18873],[76.35233,17.18751],[76.3466,17.18099],[76.33321,17.17078],[76.30621,17.17081],[76.29003,17.1678],[76.27684,17.16746],[76.27162,17.16343],[76.26446,17.15143],[76.25345,17.14873],[76.24448,17.15011],[76.24051,17.15243],[76.23612,17.16318],[76.22371,17.17477],[76.22052,17.18543],[76.21687,17.18688],[76.20313,17.18342],[76.19244,17.18503],[76.17771,17.1933],[76.16643,17.21061],[76.12752,17.24499],[76.11365,17.25239],[76.09196,17.25534],[76.08762,17.25797],[76.08597,17.26345],[76.08686,17.26849],[76.09136,17.27721],[76.09865,17.28325],[76.09978,17.28978],[76.08939,17.29888],[76.07461,17.30391],[76.06578,17.30965],[76.06611,17.3161],[76.07316,17.33243],[76.06161,17.35494],[76.05277,17.35579],[76.03775,17.35188],[76.02853,17.35114],[76.01148,17.35301],[75.99827,17.33797],[75.9839,17.33622],[75.96871,17.33647],[75.93082,17.32257],[75.9251,17.32575],[75.91008,17.34452],[75.8945,17.35083],[75.89058,17.35652],[75.89018,17.36117],[75.89524,17.37818],[75.89406,17.4012],[75.8919,17.40755],[75.88419,17.41796],[75.87848,17.41813],[75.87651,17.41614],[75.87452,17.41236],[75.8752,17.39809],[75.86088,17.38559],[75.85641,17.38943],[75.85406,17.40449],[75.85108,17.41053],[75.83026,17.42181],[75.82144,17.42122],[75.81898,17.4181],[75.81832,17.40662],[75.81358,17.39572],[75.8151,17.37847],[75.81403,17.37348],[75.80701,17.36822],[75.79566,17.36909],[75.78432,17.37329],[75.77798,17.3781],[75.77103,17.38749],[75.7679,17.40235],[75.76515,17.40591],[75.75309,17.40713],[75.73359,17.42009],[75.72807,17.41942],[75.71998,17.41152],[75.71244,17.40793],[75.7045,17.40748],[75.69073,17.40947],[75.6835,17.41692],[75.67809,17.43406],[75.67771,17.45366],[75.67231,17.45811],[75.66002,17.45769]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"531","area_level":"District","area_name":"Chamarajanagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.27937,12.30899],[77.26669,12.31413],[77.24888,12.30832],[77.23681,12.31021],[77.22513,12.30337],[77.22096,12.30463],[77.21762,12.30861],[77.21038,12.30727],[77.19104,12.30763],[77.17893,12.31052],[77.17333,12.30914],[77.16653,12.31008],[77.16984,12.30064],[77.16853,12.29413],[77.16999,12.28503],[77.16597,12.28319],[77.16462,12.28084],[77.17004,12.25976],[77.16295,12.25634],[77.15203,12.25602],[77.14492,12.24985],[77.13053,12.24888],[77.12528,12.24526],[77.12442,12.23744],[77.13247,12.22996],[77.13425,12.22564],[77.13155,12.21722],[77.13191,12.20724],[77.12574,12.20312],[77.12231,12.19717],[77.1141,12.19435],[77.1074,12.18979],[77.09961,12.19125],[77.0846,12.19102],[77.06143,12.17095],[77.04471,12.16918],[77.04455,12.16199],[77.04589,12.1608],[77.03959,12.15052],[77.03925,12.14722],[77.03953,12.14185],[77.04087,12.13967],[77.04433,12.14205],[77.04573,12.13604],[77.04433,12.13566],[77.04375,12.13111],[77.0398,12.1283],[77.03699,12.13919],[77.01576,12.13401],[77.01556,12.13726],[77.01298,12.13733],[77.01336,12.15017],[77.01165,12.15054],[77.01122,12.15357],[77.01333,12.156],[77.01425,12.16323],[77.00388,12.15987],[77.0025,12.16543],[76.99748,12.16696],[76.99867,12.17714],[76.99308,12.17662],[76.99002,12.17469],[76.99039,12.16247],[76.98803,12.16157],[76.98939,12.1548],[76.98912,12.14044],[76.98669,12.14076],[76.98643,12.13805],[76.98226,12.13825],[76.98206,12.13628],[76.97915,12.13428],[76.97624,12.13426],[76.97586,12.12267],[76.96939,12.12288],[76.96891,12.11676],[76.97083,12.11663],[76.97042,12.11254],[76.95431,12.1019],[76.95201,12.09871],[76.94884,12.09876],[76.94881,12.09742],[76.93723,12.10117],[76.93439,12.10575],[76.93058,12.1068],[76.93043,12.10876],[76.92617,12.10912],[76.92358,12.11412],[76.90632,12.11331],[76.90268,12.11627],[76.90261,12.12264],[76.89094,12.12107],[76.89025,12.13083],[76.88196,12.12949],[76.87138,12.14127],[76.8699,12.14823],[76.87104,12.15177],[76.8678,12.16178],[76.86955,12.16176],[76.87137,12.17396],[76.86563,12.1745],[76.86591,12.17712],[76.86355,12.17652],[76.86261,12.1803],[76.85549,12.18068],[76.8515,12.17892],[76.85321,12.17035],[76.8459,12.1688],[76.84556,12.16742],[76.84686,12.16414],[76.85053,12.16356],[76.85347,12.15944],[76.84075,12.15606],[76.84106,12.14541],[76.83906,12.145],[76.83298,12.13559],[76.83105,12.13535],[76.83155,12.13187],[76.83742,12.12438],[76.84495,12.11926],[76.84575,12.11316],[76.84768,12.11872],[76.85441,12.11616],[76.867,12.11738],[76.87667,12.11518],[76.87761,12.10536],[76.87967,12.10371],[76.87905,12.10055],[76.88101,12.09878],[76.88204,12.0876],[76.88414,12.08254],[76.87411,12.07565],[76.87004,12.06309],[76.85405,12.06218],[76.85345,12.05981],[76.86831,12.05973],[76.86992,12.0553],[76.88134,12.05799],[76.88739,12.05708],[76.89069,12.05821],[76.8905,12.04899],[76.90067,12.04649],[76.89933,12.04323],[76.90163,12.04304],[76.90231,12.04481],[76.90461,12.04196],[76.91006,12.04108],[76.91052,12.03597],[76.9135,12.035],[76.91506,12.02588],[76.93884,12.02624],[76.93828,12.01768],[76.9361,12.0131],[76.92367,12.01306],[76.91863,12.00734],[76.90422,11.99898],[76.89297,11.99864],[76.88588,12.00124],[76.88311,12.01544],[76.87301,12.00545],[76.85825,12.00759],[76.85828,12.00242],[76.85676,12.00245],[76.85659,11.99954],[76.83646,11.99978],[76.83741,12.00359],[76.83341,12.00435],[76.82808,12.00926],[76.8213,12.01083],[76.8227,12.01776],[76.82031,12.02723],[76.8117,12.02683],[76.81064,12.02171],[76.80557,12.0207],[76.80594,12.01826],[76.79916,12.01741],[76.79206,12.01071],[76.79168,12.00549],[76.79539,12.00481],[76.79766,11.9986],[76.79722,11.98893],[76.79362,11.98885],[76.79368,11.98627],[76.77988,11.98525],[76.78059,11.98774],[76.76847,11.99187],[76.76666,11.99917],[76.75115,11.99989],[76.74581,12.00244],[76.74623,12.00834],[76.74092,12.00927],[76.74044,12.00687],[76.73663,12.00521],[76.73605,12.00312],[76.73276,12.00247],[76.73191,11.9939],[76.72942,11.99054],[76.7192,11.9907],[76.71725,11.98493],[76.70513,11.98508],[76.70439,11.99079],[76.7017,11.99155],[76.7015,11.99782],[76.69458,12.00042],[76.68049,12.00052],[76.67332,12.00203],[76.67193,12.00602],[76.65112,12.00791],[76.64278,11.98282],[76.63188,11.98356],[76.61336,11.99156],[76.60516,11.99036],[76.59598,11.98431],[76.59207,11.9873],[76.58654,11.98547],[76.57825,11.98825],[76.57429,11.9684],[76.55747,11.94887],[76.57128,11.94012],[76.5703,11.92807],[76.5766,11.92352],[76.57018,11.90786],[76.56199,11.904],[76.55699,11.89469],[76.55367,11.85863],[76.53467,11.87322],[76.50285,11.86155],[76.49115,11.86102],[76.48937,11.85699],[76.48825,11.84339],[76.49278,11.82208],[76.46884,11.81912],[76.4622,11.79264],[76.45803,11.79327],[76.44938,11.79946],[76.42945,11.80367],[76.42084,11.8068],[76.41315,11.81189],[76.40992,11.81123],[76.41221,11.80788],[76.42078,11.80285],[76.42433,11.80462],[76.42523,11.79916],[76.42873,11.79547],[76.42664,11.79333],[76.42143,11.79559],[76.42215,11.79039],[76.4164,11.78986],[76.41294,11.78775],[76.41636,11.78493],[76.41417,11.77873],[76.42292,11.77562],[76.42156,11.77002],[76.41777,11.76775],[76.41382,11.76182],[76.41498,11.7555],[76.4123,11.75182],[76.41241,11.74368],[76.41046,11.74233],[76.41288,11.74011],[76.41817,11.7426],[76.4221,11.73829],[76.42744,11.72598],[76.42411,11.72029],[76.41659,11.71769],[76.41606,11.71296],[76.41401,11.71125],[76.41184,11.7158],[76.40804,11.71477],[76.4056,11.71119],[76.40338,11.71091],[76.40346,11.70776],[76.40524,11.70586],[76.40745,11.70745],[76.40888,11.70639],[76.41087,11.70005],[76.40983,11.69875],[76.41178,11.69783],[76.41238,11.69502],[76.40963,11.69438],[76.41083,11.69367],[76.41026,11.691],[76.40844,11.68972],[76.41305,11.68598],[76.4126,11.68276],[76.41593,11.67281],[76.41913,11.6709],[76.42069,11.6725],[76.42613,11.67114],[76.42818,11.66998],[76.42946,11.66624],[76.43339,11.6668],[76.43533,11.6647],[76.44016,11.66585],[76.44377,11.66359],[76.45514,11.66578],[76.45821,11.66433],[76.47443,11.68122],[76.48262,11.68611],[76.48168,11.69252],[76.48843,11.69135],[76.4936,11.69298],[76.51168,11.70498],[76.53723,11.6908],[76.55056,11.67419],[76.5514,11.67188],[76.54931,11.66498],[76.55006,11.6611],[76.5544,11.65557],[76.55391,11.64571],[76.55873,11.63851],[76.55958,11.63317],[76.56142,11.63268],[76.55995,11.62247],[76.56266,11.62291],[76.56966,11.61806],[76.57521,11.61919],[76.57675,11.6145],[76.57908,11.61573],[76.58379,11.61376],[76.59229,11.61866],[76.59647,11.61625],[76.59761,11.61064],[76.61065,11.61085],[76.61398,11.60755],[76.63046,11.61379],[76.6502,11.61345],[76.67147,11.61591],[76.68459,11.61396],[76.70271,11.61584],[76.72183,11.61439],[76.73684,11.61531],[76.74707,11.61378],[76.75692,11.61844],[76.76482,11.61413],[76.77019,11.61569],[76.77476,11.61234],[76.79153,11.61274],[76.79635,11.60841],[76.80924,11.60838],[76.81757,11.60472],[76.82284,11.60808],[76.83274,11.60048],[76.84694,11.59447],[76.85647,11.59928],[76.85724,11.60547],[76.85567,11.60758],[76.85774,11.61016],[76.85812,11.61403],[76.85601,11.61564],[76.85053,11.61596],[76.84884,11.61856],[76.85211,11.62167],[76.84955,11.62107],[76.8496,11.62432],[76.84276,11.62705],[76.84484,11.62815],[76.84513,11.63415],[76.84419,11.63257],[76.83841,11.63538],[76.83463,11.6395],[76.83793,11.64194],[76.83374,11.64896],[76.83626,11.65388],[76.83501,11.65542],[76.83778,11.65621],[76.8387,11.66009],[76.84184,11.66213],[76.84141,11.66595],[76.84365,11.6682],[76.84403,11.67281],[76.84854,11.67969],[76.85276,11.69237],[76.86371,11.70537],[76.86117,11.70722],[76.86263,11.71101],[76.87421,11.72411],[76.88835,11.73364],[76.8881,11.7417],[76.89625,11.7598],[76.89792,11.7706],[76.89661,11.77647],[76.908,11.79525],[76.92218,11.79178],[76.93209,11.79279],[76.94239,11.78802],[76.95394,11.79205],[76.95602,11.79115],[76.96118,11.78162],[76.96992,11.77686],[76.97273,11.78038],[76.97533,11.78925],[76.98089,11.79541],[76.9802,11.79853],[76.98365,11.80168],[76.9821,11.80346],[76.98215,11.8115],[76.9858,11.81187],[76.99354,11.80916],[77.01294,11.81461],[77.01401,11.80621],[77.01622,11.8069],[77.01689,11.81071],[77.02988,11.80467],[77.03065,11.80201],[77.03419,11.79995],[77.03267,11.79589],[77.03534,11.7939],[77.03875,11.79385],[77.03549,11.78314],[77.02886,11.77467],[77.0351,11.76978],[77.04006,11.78062],[77.043,11.78199],[77.04647,11.78762],[77.05043,11.78962],[77.05779,11.78885],[77.06294,11.7904],[77.06692,11.78798],[77.06976,11.78208],[77.0671,11.77831],[77.06126,11.77592],[77.05991,11.77152],[77.05643,11.76978],[77.07109,11.75131],[77.08276,11.73976],[77.08022,11.73598],[77.10501,11.7328],[77.11482,11.72175],[77.11771,11.72107],[77.11814,11.72611],[77.11602,11.72564],[77.11739,11.72847],[77.11535,11.72817],[77.11754,11.73179],[77.11419,11.73447],[77.11484,11.73893],[77.11174,11.74307],[77.11138,11.7504],[77.10855,11.7526],[77.11246,11.75693],[77.11134,11.76367],[77.11266,11.76558],[77.11075,11.77347],[77.11565,11.77472],[77.12276,11.77245],[77.13058,11.7737],[77.13808,11.77264],[77.14709,11.78191],[77.18202,11.78632],[77.18924,11.79252],[77.21752,11.79533],[77.2386,11.79465],[77.2496,11.80418],[77.24988,11.81301],[77.26158,11.81061],[77.27342,11.80534],[77.27443,11.803],[77.28798,11.80044],[77.29385,11.809],[77.31267,11.79354],[77.3277,11.77535],[77.33515,11.77123],[77.36042,11.77947],[77.36485,11.7904],[77.36904,11.78951],[77.37026,11.78666],[77.38927,11.78838],[77.39446,11.78763],[77.41366,11.77467],[77.42223,11.77238],[77.4226,11.76172],[77.42814,11.76147],[77.42805,11.76701],[77.43381,11.77814],[77.4422,11.78329],[77.4396,11.78561],[77.4405,11.78883],[77.44662,11.79031],[77.4498,11.79601],[77.45404,11.82023],[77.45697,11.82898],[77.46036,11.83184],[77.46661,11.84708],[77.46624,11.85002],[77.46141,11.85369],[77.46305,11.85885],[77.45994,11.86345],[77.46284,11.8648],[77.46586,11.8742],[77.46048,11.8812],[77.46314,11.88437],[77.46223,11.88796],[77.46398,11.89403],[77.46163,11.89998],[77.47352,11.89918],[77.47478,11.898],[77.47416,11.89439],[77.47722,11.89046],[77.48064,11.89341],[77.48409,11.88801],[77.4862,11.88741],[77.48307,11.89957],[77.49059,11.90849],[77.49089,11.91068],[77.48861,11.91234],[77.49189,11.92119],[77.49287,11.94126],[77.49418,11.9433],[77.49619,11.94391],[77.50041,11.93998],[77.50492,11.94113],[77.51231,11.93781],[77.51834,11.93822],[77.52824,11.93378],[77.53798,11.93239],[77.54252,11.93816],[77.55818,11.94155],[77.56107,11.94192],[77.57531,11.93648],[77.58596,11.93687],[77.58839,11.93934],[77.59358,11.94022],[77.60345,11.93766],[77.60695,11.94202],[77.61253,11.94241],[77.624,11.94731],[77.62886,11.94637],[77.63944,11.94805],[77.64232,11.95002],[77.64722,11.95049],[77.64871,11.95367],[77.65205,11.95482],[77.65619,11.95346],[77.65738,11.94983],[77.66907,11.94907],[77.67569,11.95198],[77.67451,11.9539],[77.67474,11.96594],[77.69637,12.01577],[77.72664,12.06113],[77.74271,12.07002],[77.75569,12.07973],[77.76427,12.10087],[77.76775,12.10664],[77.77541,12.11057],[77.77656,12.11594],[77.77193,12.12212],[77.75721,12.13044],[77.74981,12.13846],[77.74679,12.14453],[77.74746,12.15289],[77.74575,12.15821],[77.73543,12.16959],[77.73383,12.17738],[77.73004,12.18063],[77.72086,12.18312],[77.71135,12.18243],[77.70228,12.18413],[77.67722,12.19254],[77.66524,12.19821],[77.65608,12.19955],[77.63999,12.1964],[77.63537,12.19744],[77.62984,12.20224],[77.62096,12.19988],[77.61075,12.20614],[77.60534,12.20553],[77.59674,12.19927],[77.58042,12.1981],[77.57386,12.20089],[77.56943,12.19974],[77.5658,12.19633],[77.54626,12.20466],[77.54017,12.20238],[77.53585,12.19862],[77.52815,12.19889],[77.51868,12.19448],[77.49271,12.19733],[77.48645,12.20381],[77.47544,12.20559],[77.47204,12.20789],[77.48256,12.2289],[77.48231,12.2331],[77.47849,12.24006],[77.47344,12.24301],[77.46611,12.24372],[77.46031,12.24887],[77.45377,12.24756],[77.44832,12.25001],[77.44704,12.26226],[77.43777,12.27925],[77.43032,12.28712],[77.41928,12.28934],[77.40911,12.28142],[77.40348,12.27943],[77.38872,12.27939],[77.36548,12.28388],[77.34889,12.27891],[77.34252,12.28159],[77.33914,12.28535],[77.32691,12.30768],[77.31614,12.3057],[77.3076,12.29941],[77.30275,12.2987],[77.29516,12.30289],[77.28661,12.30423],[77.27937,12.30899]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"532","area_level":"District","area_name":"Chikkamagaluru","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.62123,12.99508],[75.62552,13.00418],[75.63141,13.01164],[75.63758,13.01119],[75.63838,13.0179],[75.64034,13.0187],[75.63995,13.02466],[75.64302,13.02727],[75.64249,13.03118],[75.64479,13.0323],[75.64762,13.03153],[75.64834,13.02917],[75.65456,13.02937],[75.65563,13.0225],[75.65676,13.02513],[75.66145,13.02635],[75.66492,13.03185],[75.67113,13.0298],[75.67922,13.03192],[75.68127,13.03069],[75.6836,13.03205],[75.68418,13.03579],[75.68807,13.03296],[75.69056,13.03367],[75.68887,13.03529],[75.68843,13.03931],[75.69033,13.04074],[75.69067,13.0443],[75.69467,13.04603],[75.69644,13.03682],[75.70512,13.03576],[75.7104,13.03817],[75.71653,13.03094],[75.72476,13.03144],[75.72368,13.02756],[75.7279,13.02346],[75.74022,13.02999],[75.74016,13.04112],[75.74167,13.04164],[75.74033,13.04748],[75.74246,13.05672],[75.74044,13.06105],[75.7425,13.06944],[75.73396,13.09127],[75.72794,13.09531],[75.72707,13.09939],[75.72828,13.10561],[75.7351,13.11015],[75.73832,13.11011],[75.7387,13.11421],[75.73676,13.1156],[75.73533,13.12349],[75.74646,13.1282],[75.7537,13.13604],[75.75046,13.14306],[75.75184,13.14566],[75.74492,13.15069],[75.7408,13.14914],[75.73453,13.15532],[75.73461,13.16037],[75.73216,13.16118],[75.73019,13.16439],[75.72874,13.18316],[75.73243,13.18608],[75.7368,13.19778],[75.74321,13.20779],[75.75063,13.20642],[75.7536,13.21353],[75.75835,13.21742],[75.76159,13.21698],[75.76234,13.21456],[75.76603,13.21213],[75.77394,13.21351],[75.77425,13.21591],[75.77582,13.21611],[75.77897,13.20994],[75.78951,13.21466],[75.79663,13.2147],[75.79882,13.21648],[75.8057,13.21592],[75.81022,13.22029],[75.81004,13.23094],[75.81248,13.23075],[75.81006,13.24258],[75.80761,13.24698],[75.80879,13.25449],[75.81602,13.25891],[75.81817,13.25894],[75.82452,13.25301],[75.83563,13.25393],[75.83564,13.25199],[75.83892,13.25191],[75.84261,13.25226],[75.84257,13.25434],[75.85111,13.25806],[75.85731,13.2583],[75.85762,13.25588],[75.85467,13.2551],[75.85675,13.25307],[75.86003,13.25316],[75.86,13.24372],[75.86318,13.24259],[75.86154,13.24002],[75.87168,13.248],[75.87501,13.25272],[75.87676,13.2603],[75.88407,13.26049],[75.89254,13.26481],[75.89939,13.26631],[75.90339,13.2579],[75.9161,13.26306],[75.9184,13.25737],[75.93607,13.25616],[75.93989,13.2586],[75.95591,13.26109],[75.97209,13.26087],[75.98391,13.26457],[75.98537,13.26461],[75.98557,13.26232],[75.98817,13.26264],[75.98795,13.25957],[75.99008,13.25813],[76.01485,13.26122],[76.01799,13.25641],[76.01635,13.25088],[76.03641,13.24856],[76.03838,13.25092],[76.03834,13.26014],[76.04037,13.2635],[76.03898,13.26608],[76.04178,13.26624],[76.04167,13.27035],[76.04432,13.27502],[76.04244,13.28],[76.03817,13.28007],[76.03995,13.28409],[76.03932,13.29269],[76.03714,13.2949],[76.03731,13.29994],[76.03532,13.30048],[76.03686,13.30345],[76.03594,13.30472],[76.03848,13.30587],[76.03704,13.30937],[76.03993,13.30978],[76.03893,13.31721],[76.03718,13.31859],[76.03853,13.32006],[76.0416,13.31927],[76.04292,13.32375],[76.03706,13.32044],[76.0322,13.32086],[76.02981,13.32405],[76.02695,13.32134],[76.02696,13.32694],[76.02848,13.33301],[76.03322,13.33235],[76.0327,13.33615],[76.03474,13.33653],[76.02876,13.34564],[76.03189,13.34578],[76.03452,13.35144],[76.03723,13.35925],[76.03761,13.36691],[76.04162,13.37436],[76.05585,13.38085],[76.07901,13.37395],[76.082,13.37154],[76.08889,13.37151],[76.08705,13.37847],[76.08994,13.39368],[76.09962,13.3925],[76.1105,13.39587],[76.11123,13.40062],[76.11984,13.40158],[76.12885,13.40036],[76.12938,13.40391],[76.13945,13.4066],[76.14024,13.4093],[76.13871,13.41276],[76.13931,13.41893],[76.14073,13.42037],[76.13867,13.42724],[76.14068,13.43706],[76.13723,13.44228],[76.14697,13.44807],[76.15175,13.45727],[76.15783,13.45998],[76.16219,13.4697],[76.18812,13.4703],[76.19341,13.46891],[76.1923,13.4611],[76.18727,13.45265],[76.19636,13.45035],[76.19967,13.45034],[76.19986,13.46055],[76.19798,13.46891],[76.20863,13.4666],[76.23113,13.46789],[76.23408,13.48344],[76.22915,13.48403],[76.23098,13.48732],[76.23701,13.49088],[76.23831,13.4948],[76.2343,13.50171],[76.23389,13.50751],[76.26008,13.51142],[76.26206,13.50521],[76.28986,13.50484],[76.29316,13.52714],[76.29544,13.52705],[76.29577,13.52439],[76.29999,13.52206],[76.30333,13.52459],[76.30594,13.52417],[76.30664,13.52598],[76.31204,13.52542],[76.31126,13.52994],[76.31555,13.53167],[76.31595,13.53974],[76.31745,13.53978],[76.31825,13.53661],[76.32146,13.5373],[76.32315,13.53051],[76.32973,13.52215],[76.34235,13.51373],[76.34573,13.51385],[76.3483,13.51718],[76.34845,13.52553],[76.35317,13.52584],[76.3532,13.52729],[76.36268,13.53051],[76.36387,13.54713],[76.35862,13.55752],[76.3531,13.57947],[76.34764,13.57597],[76.34123,13.57612],[76.33316,13.59632],[76.33163,13.59438],[76.308,13.59175],[76.30399,13.58889],[76.30025,13.58886],[76.29294,13.59046],[76.29214,13.59325],[76.29375,13.59584],[76.2925,13.59743],[76.28887,13.59424],[76.28768,13.59477],[76.28705,13.60101],[76.28202,13.60122],[76.28194,13.6068],[76.27773,13.6069],[76.27621,13.60412],[76.27312,13.60499],[76.27254,13.60757],[76.27545,13.61052],[76.27692,13.61631],[76.27575,13.62202],[76.2796,13.62393],[76.27858,13.62793],[76.28099,13.63228],[76.28008,13.63705],[76.28339,13.6385],[76.28651,13.64363],[76.28655,13.64661],[76.28152,13.64907],[76.26315,13.64884],[76.26278,13.65302],[76.25479,13.66197],[76.24265,13.66667],[76.24085,13.67218],[76.23588,13.67785],[76.22487,13.67941],[76.22168,13.68213],[76.21966,13.71332],[76.19504,13.71132],[76.18294,13.71607],[76.17361,13.71675],[76.16998,13.72688],[76.16067,13.73056],[76.14891,13.73251],[76.14658,13.74542],[76.14696,13.75241],[76.13248,13.78658],[76.1295,13.81425],[76.1152,13.81206],[76.10661,13.83077],[76.0986,13.8639],[76.09228,13.86671],[76.08667,13.87428],[76.07736,13.88022],[76.05551,13.88078],[76.05042,13.89911],[76.0333,13.8977],[76.03238,13.87976],[76.02773,13.87337],[76.03057,13.86928],[76.02577,13.86789],[76.02334,13.86349],[76.01857,13.86378],[76.01577,13.87193],[76.01083,13.86594],[76.00808,13.86855],[75.99482,13.853],[75.98882,13.84849],[75.98485,13.85008],[75.98037,13.84781],[75.9752,13.85068],[75.97019,13.85635],[75.96513,13.8467],[75.94974,13.83383],[75.94811,13.82849],[75.9503,13.82667],[75.94962,13.82024],[75.9531,13.81808],[75.9523,13.81598],[75.94733,13.81792],[75.94552,13.8142],[75.93558,13.81261],[75.93159,13.81477],[75.92757,13.81387],[75.92026,13.80705],[75.90818,13.80731],[75.90367,13.80882],[75.89549,13.80621],[75.8895,13.80967],[75.83552,13.81378],[75.82544,13.81865],[75.80775,13.79444],[75.79177,13.79691],[75.77759,13.78849],[75.7726,13.79693],[75.76705,13.79706],[75.76069,13.79421],[75.76686,13.78998],[75.76456,13.78149],[75.74909,13.78094],[75.73175,13.76905],[75.71809,13.77136],[75.71286,13.77053],[75.70962,13.76649],[75.70353,13.76773],[75.68716,13.76672],[75.68196,13.7613],[75.68863,13.75391],[75.6865,13.74988],[75.67647,13.75115],[75.67437,13.76191],[75.67103,13.76443],[75.66918,13.76406],[75.66415,13.75795],[75.66311,13.75074],[75.65673,13.74833],[75.65586,13.74613],[75.65914,13.74134],[75.6658,13.7375],[75.66813,13.73083],[75.67459,13.72833],[75.67468,13.72316],[75.6709,13.71986],[75.65115,13.71869],[75.64794,13.70906],[75.64188,13.70377],[75.63567,13.70141],[75.63151,13.70332],[75.62689,13.70226],[75.62253,13.70574],[75.62214,13.7138],[75.61729,13.72295],[75.62789,13.73322],[75.609,13.74596],[75.61085,13.76094],[75.59905,13.76091],[75.59117,13.75802],[75.58594,13.75871],[75.58153,13.75649],[75.57141,13.75538],[75.56728,13.75309],[75.56581,13.74084],[75.56063,13.73963],[75.55557,13.73416],[75.54092,13.728],[75.53285,13.73074],[75.52773,13.73958],[75.52164,13.74361],[75.52239,13.74798],[75.52096,13.75177],[75.51069,13.75497],[75.50698,13.76072],[75.50691,13.76568],[75.50238,13.76337],[75.49991,13.75834],[75.4983,13.75807],[75.48677,13.76833],[75.4856,13.76509],[75.4887,13.76214],[75.48862,13.75973],[75.47702,13.75349],[75.46118,13.74172],[75.45978,13.73068],[75.45434,13.72364],[75.42659,13.71511],[75.42262,13.70796],[75.41919,13.70608],[75.40743,13.70579],[75.40252,13.70376],[75.39367,13.70844],[75.38294,13.71086],[75.38225,13.70262],[75.38573,13.70219],[75.38785,13.69851],[75.3942,13.70026],[75.39426,13.69351],[75.3963,13.69246],[75.40338,13.68093],[75.41106,13.65859],[75.41468,13.65286],[75.40909,13.64216],[75.41194,13.63964],[75.40539,13.63002],[75.40729,13.62561],[75.39432,13.63052],[75.3921,13.62391],[75.38666,13.62346],[75.38897,13.61975],[75.38729,13.61681],[75.38878,13.61327],[75.38609,13.61324],[75.37824,13.61501],[75.3791,13.62067],[75.37475,13.62665],[75.37271,13.62674],[75.36601,13.62194],[75.36639,13.60936],[75.36393,13.6042],[75.36974,13.59707],[75.36448,13.5981],[75.35736,13.5956],[75.35308,13.5921],[75.35076,13.58622],[75.3443,13.58061],[75.34079,13.58574],[75.33168,13.58478],[75.32818,13.58585],[75.32618,13.59254],[75.32081,13.58991],[75.31327,13.58899],[75.30797,13.58399],[75.29497,13.58471],[75.28964,13.57458],[75.28736,13.57421],[75.28338,13.5689],[75.27978,13.56853],[75.27886,13.56448],[75.27145,13.56899],[75.26752,13.5823],[75.26454,13.58662],[75.2587,13.58302],[75.25647,13.58371],[75.25494,13.59477],[75.24915,13.59599],[75.24476,13.60511],[75.23742,13.60128],[75.23547,13.59844],[75.23206,13.59978],[75.23067,13.60399],[75.22571,13.60593],[75.22127,13.60205],[75.22377,13.59602],[75.21066,13.58531],[75.21174,13.57814],[75.21873,13.57585],[75.22193,13.57093],[75.22645,13.56832],[75.22203,13.55959],[75.21667,13.55926],[75.21593,13.55785],[75.217,13.55589],[75.2198,13.5552],[75.2183,13.55198],[75.22045,13.54948],[75.22437,13.54856],[75.22074,13.53324],[75.22618,13.52816],[75.21969,13.52359],[75.21184,13.52582],[75.20879,13.52466],[75.2041,13.51816],[75.20876,13.51916],[75.21139,13.51827],[75.21107,13.51699],[75.20574,13.51533],[75.20271,13.50898],[75.19968,13.51015],[75.19749,13.50797],[75.19629,13.50942],[75.1884,13.50876],[75.18141,13.50549],[75.17616,13.49909],[75.17342,13.50115],[75.16973,13.50794],[75.16687,13.50278],[75.16035,13.49629],[75.15958,13.49332],[75.15159,13.48745],[75.14664,13.47803],[75.13625,13.47245],[75.13799,13.46499],[75.14232,13.45778],[75.14556,13.4572],[75.14413,13.45471],[75.15452,13.45313],[75.15301,13.43993],[75.14874,13.43683],[75.15496,13.43027],[75.15089,13.42705],[75.14948,13.41898],[75.14532,13.41828],[75.1431,13.40818],[75.13989,13.40677],[75.14654,13.39561],[75.14635,13.39282],[75.14308,13.39179],[75.13956,13.38677],[75.1319,13.39118],[75.12709,13.38521],[75.12932,13.37747],[75.1273,13.37056],[75.12768,13.36614],[75.1228,13.3652],[75.11702,13.36158],[75.11456,13.35712],[75.11205,13.3564],[75.10819,13.35927],[75.1021,13.36011],[75.09855,13.35691],[75.08973,13.36119],[75.08884,13.34991],[75.08335,13.34417],[75.07853,13.34296],[75.09603,13.31702],[75.10069,13.30107],[75.10516,13.29275],[75.1122,13.28584],[75.11247,13.28247],[75.1193,13.28212],[75.12092,13.28488],[75.12605,13.28662],[75.13091,13.28584],[75.13125,13.28777],[75.13609,13.2898],[75.13994,13.28807],[75.14384,13.27734],[75.1529,13.26431],[75.15361,13.25761],[75.15805,13.24778],[75.16209,13.22903],[75.16883,13.21159],[75.16599,13.20767],[75.16675,13.2028],[75.1705,13.20475],[75.17356,13.20397],[75.17664,13.20183],[75.17559,13.19916],[75.17703,13.19674],[75.18074,13.19503],[75.18984,13.18308],[75.19528,13.18256],[75.19845,13.17958],[75.20108,13.18051],[75.20628,13.17674],[75.21058,13.16973],[75.21125,13.16462],[75.20951,13.15585],[75.20754,13.15322],[75.21154,13.15598],[75.21724,13.15655],[75.22446,13.14833],[75.22868,13.14662],[75.23371,13.13839],[75.24466,13.13729],[75.25224,13.12893],[75.2548,13.1311],[75.26128,13.1313],[75.26839,13.12538],[75.2709,13.12709],[75.27753,13.12682],[75.28126,13.13297],[75.28477,13.13492],[75.28612,13.131],[75.29426,13.1244],[75.29746,13.13273],[75.30021,13.13153],[75.31114,13.13193],[75.31644,13.1364],[75.31688,13.14445],[75.3238,13.14718],[75.32181,13.15819],[75.32526,13.16249],[75.32805,13.17086],[75.33306,13.16978],[75.33369,13.17342],[75.34233,13.1816],[75.34634,13.18066],[75.35147,13.1834],[75.35199,13.18516],[75.35693,13.18275],[75.35836,13.18373],[75.36345,13.18035],[75.36917,13.18286],[75.37655,13.18175],[75.38228,13.17881],[75.39104,13.16807],[75.39892,13.16436],[75.4038,13.15962],[75.4096,13.14951],[75.40813,13.13586],[75.41064,13.11811],[75.40713,13.11168],[75.41078,13.1109],[75.41451,13.10686],[75.42061,13.10796],[75.42468,13.10629],[75.43372,13.12169],[75.43326,13.12034],[75.44276,13.11371],[75.44482,13.10469],[75.45509,13.11008],[75.47085,13.09707],[75.4719,13.09014],[75.46805,13.08328],[75.47039,13.07763],[75.47451,13.07893],[75.47968,13.07722],[75.47942,13.08056],[75.4822,13.08793],[75.48608,13.09239],[75.50042,13.08196],[75.50435,13.07797],[75.50685,13.07233],[75.50963,13.0718],[75.5152,13.06601],[75.51768,13.05971],[75.51573,13.05634],[75.52106,13.05388],[75.52357,13.04919],[75.52506,13.05072],[75.52553,13.04955],[75.52523,13.03977],[75.51939,13.03191],[75.51967,13.02729],[75.52766,13.02515],[75.53106,13.02126],[75.5325,13.00453],[75.53081,13.00221],[75.52459,13.00041],[75.52602,12.99654],[75.52512,12.99374],[75.51429,12.97893],[75.51516,12.97767],[75.52045,12.97758],[75.52477,12.96693],[75.52981,12.96773],[75.53406,12.95891],[75.54194,12.95595],[75.54377,12.95252],[75.54957,12.94947],[75.55041,12.94598],[75.55625,12.94296],[75.55468,12.93481],[75.55674,12.9128],[75.57123,12.93029],[75.57222,12.93473],[75.58663,12.94202],[75.59544,12.94377],[75.60292,12.9584],[75.60183,12.96512],[75.60412,12.97349],[75.60908,12.97797],[75.60884,12.98113],[75.61898,12.99024],[75.62123,12.99508]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"533","area_level":"District","area_name":"Chitradurga","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.72028,15.03382],[76.71726,15.036],[76.71151,15.03273],[76.7037,15.03337],[76.70258,15.02745],[76.70474,15.02183],[76.70187,15.01614],[76.69309,15.01899],[76.68596,15.01878],[76.68627,15.02186],[76.68896,15.02388],[76.68808,15.02501],[76.67793,15.0246],[76.67153,15.01867],[76.67354,15.01688],[76.67273,15.01291],[76.67762,15.0095],[76.68872,14.97858],[76.7087,14.97655],[76.71549,14.97272],[76.71709,14.96903],[76.71672,14.94787],[76.71295,14.93962],[76.706,14.9423],[76.70693,14.93105],[76.70338,14.93134],[76.69721,14.9276],[76.67931,14.93884],[76.65979,14.94175],[76.66259,14.93514],[76.66295,14.92472],[76.66528,14.91583],[76.67733,14.91122],[76.67794,14.88717],[76.69752,14.8882],[76.71356,14.86499],[76.71503,14.85196],[76.7117,14.83731],[76.71659,14.83326],[76.74058,14.82598],[76.7424,14.82366],[76.74171,14.81832],[76.7404,14.81858],[76.73914,14.81519],[76.73513,14.81568],[76.73417,14.81354],[76.71816,14.81824],[76.70461,14.81788],[76.68276,14.80864],[76.67481,14.79411],[76.66747,14.79379],[76.67267,14.79021],[76.67286,14.78834],[76.66999,14.78751],[76.66727,14.78251],[76.66583,14.77893],[76.66692,14.77527],[76.65984,14.77171],[76.6602,14.76562],[76.65777,14.76479],[76.65541,14.75772],[76.65039,14.758],[76.6488,14.75625],[76.65092,14.75239],[76.64958,14.73878],[76.65153,14.73727],[76.64707,14.73079],[76.64827,14.7286],[76.65035,14.72826],[76.65119,14.72527],[76.64492,14.7166],[76.6448,14.71297],[76.63754,14.70992],[76.63608,14.70435],[76.63099,14.70264],[76.63033,14.70078],[76.62408,14.70243],[76.61746,14.69449],[76.61745,14.69251],[76.60833,14.68762],[76.61058,14.66874],[76.59802,14.66928],[76.5966,14.66088],[76.59869,14.65625],[76.59734,14.65343],[76.61212,14.64838],[76.60282,14.63377],[76.59689,14.63216],[76.59599,14.63058],[76.60056,14.6257],[76.60086,14.62084],[76.58505,14.61741],[76.58492,14.61515],[76.57954,14.61095],[76.57404,14.60268],[76.57249,14.59403],[76.56746,14.58732],[76.55064,14.57888],[76.5497,14.57347],[76.5443,14.57035],[76.54215,14.5666],[76.5352,14.56484],[76.53527,14.56117],[76.51822,14.56248],[76.51004,14.56039],[76.51476,14.55111],[76.51678,14.54989],[76.52385,14.55314],[76.52699,14.54608],[76.53313,14.54266],[76.53265,14.53855],[76.52143,14.52434],[76.51368,14.52315],[76.50812,14.51629],[76.49539,14.51168],[76.48482,14.50453],[76.47325,14.50246],[76.46864,14.50543],[76.46137,14.50609],[76.4556,14.47157],[76.45581,14.46538],[76.45965,14.45165],[76.43838,14.44791],[76.42349,14.44997],[76.42395,14.43852],[76.41619,14.43935],[76.4059,14.43493],[76.39647,14.43439],[76.39534,14.42919],[76.3923,14.42869],[76.39323,14.42634],[76.38321,14.42698],[76.38387,14.42041],[76.37325,14.41828],[76.37001,14.42031],[76.35289,14.41938],[76.34945,14.41621],[76.34233,14.4169],[76.33921,14.41897],[76.33872,14.41431],[76.33262,14.40953],[76.31915,14.40814],[76.29307,14.40876],[76.28118,14.40417],[76.27413,14.40902],[76.27079,14.42031],[76.26615,14.42382],[76.26514,14.43704],[76.26128,14.44426],[76.24742,14.444],[76.23805,14.4504],[76.21848,14.44187],[76.2077,14.45739],[76.17335,14.46064],[76.172,14.448],[76.16272,14.44516],[76.1453,14.43093],[76.13624,14.42697],[76.14033,14.42072],[76.14312,14.41214],[76.14927,14.40773],[76.15095,14.39791],[76.15528,14.38686],[76.15539,14.37704],[76.15149,14.37743],[76.15075,14.36632],[76.15451,14.36279],[76.15492,14.36037],[76.15675,14.36036],[76.1549,14.35022],[76.15833,14.33188],[76.15655,14.32001],[76.15463,14.31819],[76.14288,14.32205],[76.11612,14.32319],[76.10994,14.31728],[76.10873,14.31209],[76.10635,14.31028],[76.10642,14.30838],[76.11178,14.30235],[76.118,14.30001],[76.12007,14.29485],[76.12062,14.29097],[76.11704,14.27746],[76.1249,14.28249],[76.12989,14.27994],[76.13079,14.26838],[76.13454,14.26287],[76.13487,14.25604],[76.10519,14.24654],[76.10137,14.24605],[76.09611,14.24783],[76.08829,14.24537],[76.07898,14.24513],[76.07209,14.226],[76.06102,14.22248],[76.06555,14.20625],[76.06322,14.20591],[76.06296,14.20345],[76.05776,14.20179],[76.05631,14.19457],[76.05753,14.18125],[76.06591,14.18126],[76.06429,14.17686],[76.06518,14.17102],[76.06384,14.17127],[76.06329,14.15951],[76.04627,14.15494],[76.04638,14.14507],[76.0395,14.14238],[76.03552,14.13522],[76.03263,14.13386],[76.03345,14.12503],[76.03188,14.1203],[76.02806,14.11972],[76.02496,14.11312],[76.02626,14.10385],[76.02528,14.10002],[76.03493,14.09951],[76.03416,14.09597],[76.03236,14.09587],[76.03321,14.09009],[76.03497,14.09006],[76.042,14.096],[76.04692,14.09743],[76.04987,14.09419],[76.05214,14.09396],[76.05455,14.08896],[76.05497,14.07488],[76.0565,14.07147],[76.05394,14.06108],[76.04963,14.05613],[76.04764,14.04717],[76.04783,14.0394],[76.05113,14.0342],[76.05082,14.0237],[76.04815,14.01373],[76.04621,14.01352],[76.04324,13.98731],[76.04689,13.98317],[76.0496,13.98322],[76.05083,13.97859],[76.07219,13.98221],[76.06903,13.96742],[76.06932,13.95279],[76.0656,13.94151],[76.04962,13.94102],[76.04459,13.94237],[76.0351,13.9245],[76.02936,13.91843],[76.03082,13.90607],[76.02837,13.89866],[76.0333,13.8977],[76.05042,13.89911],[76.05551,13.88078],[76.07736,13.88022],[76.08667,13.87428],[76.09228,13.86671],[76.0986,13.8639],[76.10661,13.83077],[76.1152,13.81206],[76.1295,13.81425],[76.13248,13.78658],[76.14696,13.75241],[76.14658,13.74542],[76.14891,13.73251],[76.16067,13.73056],[76.16998,13.72688],[76.17361,13.71675],[76.18294,13.71607],[76.19504,13.71132],[76.21966,13.71332],[76.22168,13.68213],[76.22487,13.67941],[76.23588,13.67785],[76.24085,13.67218],[76.24265,13.66667],[76.25479,13.66197],[76.26278,13.65302],[76.26315,13.64884],[76.28152,13.64907],[76.28655,13.64661],[76.28651,13.64363],[76.28339,13.6385],[76.28008,13.63705],[76.28099,13.63228],[76.27858,13.62793],[76.2796,13.62393],[76.27575,13.62202],[76.27692,13.61631],[76.27545,13.61052],[76.27254,13.60757],[76.27312,13.60499],[76.27621,13.60412],[76.27773,13.6069],[76.28194,13.6068],[76.28202,13.60122],[76.28705,13.60101],[76.28768,13.59477],[76.28887,13.59424],[76.2925,13.59743],[76.29375,13.59584],[76.29214,13.59325],[76.29294,13.59046],[76.30025,13.58886],[76.30399,13.58889],[76.308,13.59175],[76.33163,13.59438],[76.33316,13.59632],[76.34123,13.57612],[76.34764,13.57597],[76.37352,13.5931],[76.37822,13.58939],[76.38106,13.57785],[76.38271,13.57687],[76.39245,13.59054],[76.39765,13.59081],[76.39824,13.59461],[76.39946,13.59486],[76.40513,13.5906],[76.40986,13.57966],[76.41331,13.5782],[76.42444,13.58138],[76.42735,13.59109],[76.43031,13.59313],[76.44102,13.59414],[76.44983,13.59072],[76.45512,13.59086],[76.45553,13.59552],[76.46167,13.60015],[76.45893,13.60053],[76.45705,13.60344],[76.45529,13.61144],[76.4607,13.61889],[76.48995,13.62323],[76.50008,13.62169],[76.49722,13.6271],[76.51699,13.63425],[76.51853,13.64111],[76.52719,13.64832],[76.53399,13.65086],[76.5343,13.65311],[76.52911,13.66046],[76.52953,13.66605],[76.53403,13.66624],[76.53974,13.66314],[76.54951,13.67725],[76.55548,13.68261],[76.56415,13.68471],[76.56869,13.68867],[76.57335,13.68674],[76.57658,13.69011],[76.56938,13.71458],[76.57231,13.71391],[76.58574,13.71868],[76.59597,13.72011],[76.5993,13.72418],[76.6038,13.72567],[76.60945,13.72348],[76.61475,13.72715],[76.61365,13.72886],[76.62085,13.734],[76.62445,13.73405],[76.62981,13.71365],[76.63983,13.71482],[76.66178,13.72131],[76.67304,13.71865],[76.67249,13.70612],[76.68504,13.69045],[76.68977,13.72241],[76.68896,13.72739],[76.68445,13.72972],[76.68753,13.74597],[76.69092,13.75117],[76.69533,13.75435],[76.69527,13.7584],[76.69775,13.76037],[76.69392,13.76329],[76.69666,13.76557],[76.69804,13.77138],[76.70173,13.77474],[76.70582,13.77573],[76.70829,13.78191],[76.71367,13.78563],[76.71695,13.7942],[76.72374,13.79969],[76.72749,13.79691],[76.72713,13.79272],[76.73099,13.78463],[76.74897,13.78063],[76.75989,13.78033],[76.76453,13.782],[76.76879,13.79513],[76.76848,13.80597],[76.76561,13.81214],[76.76395,13.82173],[76.76659,13.83584],[76.7623,13.83506],[76.75223,13.85014],[76.75133,13.85212],[76.75281,13.85521],[76.74978,13.85386],[76.74679,13.85639],[76.73576,13.87011],[76.73148,13.88123],[76.72957,13.88068],[76.72311,13.89011],[76.72117,13.89458],[76.72286,13.89845],[76.73648,13.90351],[76.75246,13.90655],[76.74946,13.91614],[76.75203,13.91959],[76.76379,13.92041],[76.76466,13.92442],[76.77994,13.92427],[76.8022,13.91651],[76.81537,13.91603],[76.81126,13.93165],[76.81135,13.93648],[76.81939,13.93657],[76.82098,13.93972],[76.82189,13.95051],[76.84202,13.96275],[76.84987,13.96357],[76.84851,13.98043],[76.8397,13.98659],[76.83152,13.98905],[76.82344,13.99429],[76.82277,13.99848],[76.82494,14.00115],[76.83337,14.00319],[76.83611,14.00882],[76.83725,14.01817],[76.84788,14.01787],[76.86103,14.0147],[76.87277,14.00916],[76.87638,14.01939],[76.87987,14.01868],[76.88744,14.03967],[76.88863,14.04785],[76.89915,14.0575],[76.9101,14.06429],[76.91666,14.06049],[76.91636,14.05932],[76.92301,14.05701],[76.92474,14.0692],[76.92839,14.07779],[76.9484,14.09205],[76.95344,14.09921],[76.94426,14.12074],[76.93658,14.12428],[76.93587,14.12885],[76.93112,14.13102],[76.92498,14.13711],[76.91757,14.12884],[76.91284,14.12881],[76.9048,14.13364],[76.88952,14.13562],[76.88591,14.13824],[76.89052,14.14282],[76.89453,14.16781],[76.89837,14.16755],[76.89966,14.16923],[76.90054,14.16757],[76.90966,14.16796],[76.91975,14.16446],[76.92192,14.16942],[76.94237,14.17333],[76.94208,14.18067],[76.94467,14.18657],[76.94248,14.19109],[76.94271,14.1954],[76.94757,14.19818],[76.95114,14.19266],[76.95736,14.18811],[76.95976,14.18395],[76.95903,14.18262],[76.9606,14.18177],[76.97065,14.18241],[76.98377,14.17882],[76.99644,14.18027],[77.00546,14.18397],[77.02117,14.17764],[77.02276,14.17923],[77.02384,14.1863],[77.02146,14.18879],[77.01502,14.19341],[77.00922,14.19411],[77.0028,14.19796],[77.00608,14.20619],[77.00641,14.21506],[77.00562,14.22099],[77.00295,14.22156],[76.99929,14.2291],[77.00379,14.22956],[77.00566,14.23579],[76.99894,14.24087],[76.99194,14.24141],[76.9856,14.24733],[76.9762,14.24613],[76.96983,14.24337],[76.95983,14.24496],[76.95194,14.2419],[76.94646,14.24218],[76.93976,14.24486],[76.9358,14.25937],[76.9249,14.27378],[76.92818,14.2793],[76.93711,14.28034],[76.93877,14.28301],[76.94738,14.28617],[76.95672,14.29435],[76.94565,14.31318],[76.9272,14.31451],[76.90787,14.32295],[76.90339,14.32268],[76.89228,14.34126],[76.88464,14.34754],[76.88232,14.35578],[76.88482,14.39571],[76.89863,14.39795],[76.9046,14.40392],[76.91583,14.42069],[76.93142,14.41052],[76.94271,14.39934],[76.94676,14.40615],[76.94779,14.41316],[76.94479,14.4509],[76.94596,14.45255],[76.95037,14.45237],[76.9568,14.45198],[76.9598,14.45021],[76.96833,14.46179],[76.9684,14.46511],[76.97167,14.46814],[76.97544,14.47786],[76.97481,14.48533],[76.95,14.48676],[76.94875,14.48914],[76.94339,14.48948],[76.92091,14.49052],[76.90069,14.48921],[76.88925,14.48317],[76.88651,14.48353],[76.88387,14.47927],[76.88427,14.47708],[76.86796,14.47404],[76.8651,14.47823],[76.86246,14.49276],[76.8592,14.49746],[76.8556,14.50959],[76.84923,14.51258],[76.8419,14.51937],[76.83549,14.5213],[76.83282,14.52911],[76.83101,14.53036],[76.82346,14.52682],[76.81941,14.52994],[76.81254,14.53173],[76.80628,14.53106],[76.80282,14.5422],[76.79786,14.54917],[76.79136,14.55465],[76.78337,14.58044],[76.78184,14.5965],[76.78033,14.59704],[76.78023,14.59306],[76.76499,14.60212],[76.76692,14.61827],[76.77253,14.63911],[76.77527,14.68096],[76.78622,14.69578],[76.78651,14.70843],[76.80294,14.74188],[76.79415,14.75127],[76.78953,14.76006],[76.78898,14.77228],[76.78269,14.78594],[76.78396,14.78697],[76.78846,14.78582],[76.78864,14.78697],[76.79383,14.7854],[76.80296,14.7856],[76.81766,14.7876],[76.82034,14.78888],[76.81908,14.79312],[76.83239,14.79291],[76.83257,14.79039],[76.83675,14.79077],[76.83737,14.81056],[76.85146,14.8086],[76.85398,14.80944],[76.85456,14.81809],[76.84601,14.82205],[76.8455,14.83405],[76.84179,14.83655],[76.85406,14.84323],[76.85541,14.84878],[76.85489,14.85892],[76.85719,14.86911],[76.85388,14.86918],[76.85339,14.88321],[76.85145,14.88335],[76.85247,14.88697],[76.84552,14.88718],[76.84548,14.88929],[76.84733,14.89598],[76.86384,14.89558],[76.86962,14.93771],[76.86609,14.95753],[76.86746,14.96982],[76.84194,14.96641],[76.83527,14.96003],[76.83411,14.95646],[76.8285,14.95646],[76.81828,14.96944],[76.79627,14.96917],[76.77761,14.97545],[76.76712,14.9749],[76.76057,14.98986],[76.75076,14.98317],[76.74461,14.98646],[76.73681,14.98672],[76.73406,14.98545],[76.73071,14.9945],[76.7275,14.99735],[76.72773,15.00463],[76.72815,15.00984],[76.73609,15.02313],[76.73271,15.03177],[76.72028,15.03382]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"534","area_level":"District","area_name":"Dakshina Kannada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.35337,13.184],[75.35199,13.18516],[75.34854,13.1815],[75.34128,13.18086],[75.33369,13.17342],[75.33306,13.16978],[75.32805,13.17086],[75.32526,13.16249],[75.32181,13.15819],[75.3238,13.14718],[75.31688,13.14445],[75.31644,13.1364],[75.31114,13.13193],[75.30021,13.13153],[75.29746,13.13273],[75.29426,13.1244],[75.28612,13.131],[75.28477,13.13492],[75.28126,13.13297],[75.27753,13.12682],[75.2709,13.12709],[75.26839,13.12538],[75.26128,13.1313],[75.2548,13.1311],[75.25224,13.12893],[75.24466,13.13729],[75.23371,13.13839],[75.22868,13.14662],[75.22446,13.14833],[75.21724,13.15655],[75.21154,13.15598],[75.20754,13.15322],[75.20951,13.15585],[75.21125,13.16462],[75.21058,13.16973],[75.2058,13.17728],[75.19212,13.16355],[75.18029,13.15804],[75.18035,13.15441],[75.17659,13.14718],[75.17087,13.14484],[75.16767,13.13624],[75.16185,13.13195],[75.15884,13.13288],[75.1574,13.12974],[75.15004,13.1247],[75.14485,13.1262],[75.1436,13.12856],[75.14468,13.13134],[75.1375,13.13176],[75.13642,13.13377],[75.1321,13.1328],[75.12874,13.13453],[75.12852,13.13194],[75.12227,13.13308],[75.12004,13.13091],[75.11512,13.13125],[75.11586,13.13348],[75.12016,13.13472],[75.12067,13.13621],[75.1107,13.14751],[75.11288,13.15081],[75.10368,13.15108],[75.10093,13.15406],[75.10408,13.15595],[75.10368,13.15773],[75.09706,13.15595],[75.09991,13.16289],[75.09747,13.16487],[75.09197,13.16249],[75.08933,13.16457],[75.08689,13.1613],[75.08089,13.16179],[75.08058,13.15604],[75.08363,13.14593],[75.07641,13.14781],[75.07051,13.14324],[75.07123,13.1365],[75.05851,13.13153],[75.04773,13.13619],[75.04287,13.14023],[75.03664,13.14165],[75.0343,13.14145],[75.03186,13.13886],[75.02433,13.13866],[75.01518,13.13083],[75.01095,13.14064],[75.00291,13.15234],[74.99421,13.15728],[74.99153,13.15283],[74.9887,13.1523],[74.98542,13.14812],[74.97486,13.12937],[74.96359,13.12536],[74.96101,13.12677],[74.95977,13.12281],[74.95413,13.12325],[74.95444,13.12118],[74.95332,13.12104],[74.94833,13.12288],[74.94875,13.12406],[74.94017,13.13326],[74.93967,13.13432],[74.94399,13.13634],[74.94111,13.13802],[74.94084,13.14238],[74.94246,13.1419],[74.94273,13.14331],[74.93999,13.14555],[74.93563,13.14428],[74.93331,13.14971],[74.92,13.14296],[74.91608,13.13652],[74.91055,13.13291],[74.90821,13.12387],[74.91325,13.12079],[74.91257,13.11246],[74.90911,13.11189],[74.91203,13.1103],[74.91185,13.10805],[74.90466,13.10699],[74.87825,13.09531],[74.8742,13.09931],[74.87514,13.10567],[74.87015,13.11796],[74.86779,13.12185],[74.86354,13.12245],[74.86288,13.12693],[74.85981,13.12791],[74.84975,13.1263],[74.8463,13.12954],[74.84153,13.12726],[74.83877,13.1288],[74.8342,13.12773],[74.83248,13.12988],[74.82605,13.12955],[74.82266,13.12374],[74.81457,13.12232],[74.81202,13.11526],[74.80961,13.11322],[74.8066,13.11591],[74.80181,13.11478],[74.79525,13.1176],[74.79208,13.11697],[74.79096,13.114],[74.7925,13.11089],[74.79524,13.10955],[74.79628,13.11158],[74.79848,13.10748],[74.79825,13.1043],[74.79178,13.09653],[74.7841,13.10026],[74.78249,13.10386],[74.77748,13.10271],[74.7771,13.09945],[74.77961,13.09585],[74.78077,13.08927],[74.77731,13.08],[74.77955,13.07237],[74.77633,13.07152],[74.78167,13.04247],[74.78915,13.00399],[74.79354,12.99598],[74.81219,12.90005],[74.82443,12.84906],[74.83712,12.82398],[74.84676,12.79537],[74.85547,12.78408],[74.86424,12.76131],[74.86543,12.76646],[74.8644,12.77089],[74.86784,12.76587],[74.86721,12.76137],[74.87224,12.76106],[74.87414,12.75494],[74.88231,12.75405],[74.89303,12.76243],[74.89958,12.76258],[74.90763,12.76896],[74.93293,12.78054],[74.94173,12.77998],[74.95069,12.78429],[74.95819,12.78467],[74.95999,12.77889],[74.96293,12.77868],[74.96441,12.78163],[74.96633,12.78079],[74.96654,12.77648],[74.96836,12.77636],[74.98193,12.77963],[74.98244,12.78231],[74.98514,12.78155],[74.98731,12.78296],[74.99209,12.78821],[74.98741,12.79359],[74.98903,12.79546],[74.99122,12.79553],[74.99602,12.7893],[74.99875,12.78908],[74.99831,12.78594],[75.00243,12.78834],[75.00018,12.79022],[75.00316,12.79167],[75.00509,12.79031],[75.00297,12.78438],[75.00339,12.77798],[75.00621,12.77084],[75.00945,12.76751],[75.00606,12.76612],[75.00433,12.76043],[74.99868,12.75699],[74.9966,12.75208],[74.98768,12.74165],[74.98464,12.74308],[74.98403,12.73993],[74.98545,12.73889],[74.98327,12.7372],[74.98559,12.7336],[74.98724,12.73657],[74.98893,12.73629],[74.98881,12.73821],[74.99039,12.73746],[74.99002,12.73608],[74.99135,12.73695],[74.99047,12.73873],[74.99248,12.73989],[75.0,12.73205],[75.0134,12.72795],[75.00494,12.72028],[75.00096,12.71956],[75.00099,12.71639],[75.01504,12.71423],[75.01864,12.72111],[75.02658,12.71931],[75.03358,12.72351],[75.03905,12.72382],[75.04268,12.72077],[75.04431,12.72311],[75.04792,12.7206],[75.05246,12.72008],[75.05034,12.71632],[75.05389,12.71112],[75.0543,12.70713],[75.05189,12.7069],[75.05023,12.70439],[75.05559,12.69346],[75.05385,12.69052],[75.04855,12.69404],[75.04392,12.69264],[75.0405,12.68535],[75.043,12.68224],[75.04146,12.67873],[75.04257,12.67285],[75.04664,12.66757],[75.05397,12.67022],[75.05752,12.66605],[75.05981,12.67177],[75.06525,12.66483],[75.06858,12.66467],[75.07415,12.67225],[75.08517,12.67476],[75.08744,12.6792],[75.0855,12.68247],[75.08558,12.69022],[75.0831,12.69333],[75.08508,12.69567],[75.08115,12.69738],[75.08095,12.69907],[75.08601,12.70403],[75.09232,12.69981],[75.10022,12.69967],[75.10625,12.69681],[75.10727,12.69105],[75.11062,12.69058],[75.11018,12.68845],[75.11259,12.68522],[75.11146,12.68182],[75.11739,12.68128],[75.12213,12.67891],[75.12312,12.68137],[75.12492,12.68148],[75.12841,12.67694],[75.13251,12.67614],[75.13467,12.67805],[75.13764,12.67676],[75.13982,12.68059],[75.14319,12.67839],[75.14639,12.68219],[75.152,12.68324],[75.14903,12.67616],[75.14988,12.67333],[75.16203,12.67196],[75.15212,12.65611],[75.15081,12.65006],[75.13851,12.64344],[75.1433,12.63966],[75.14444,12.64049],[75.15392,12.62497],[75.16068,12.62213],[75.16417,12.62407],[75.16996,12.62227],[75.1829,12.6328],[75.18555,12.63185],[75.18822,12.63314],[75.19374,12.63031],[75.20174,12.63002],[75.20281,12.62759],[75.19877,12.61443],[75.19926,12.61207],[75.20095,12.60961],[75.20674,12.60801],[75.20775,12.60269],[75.20998,12.60023],[75.20786,12.59573],[75.20173,12.59336],[75.20114,12.58773],[75.20949,12.59107],[75.21262,12.57816],[75.21777,12.57636],[75.22032,12.5691],[75.22393,12.57036],[75.22919,12.56853],[75.2375,12.56976],[75.2371,12.57614],[75.23898,12.57802],[75.23867,12.58071],[75.24158,12.58003],[75.2497,12.58457],[75.25178,12.589],[75.25534,12.59138],[75.25684,12.59651],[75.26126,12.59817],[75.266,12.60719],[75.26513,12.61117],[75.26716,12.61466],[75.27261,12.61556],[75.27635,12.61851],[75.2817,12.61644],[75.28598,12.61121],[75.28958,12.6104],[75.29156,12.60195],[75.29907,12.6059],[75.30189,12.60541],[75.31216,12.58972],[75.32701,12.59239],[75.328,12.58429],[75.32643,12.58139],[75.31869,12.57749],[75.31539,12.57254],[75.30804,12.57833],[75.29054,12.58261],[75.28467,12.56957],[75.27855,12.5716],[75.27289,12.56897],[75.27006,12.55845],[75.27215,12.55484],[75.27056,12.54834],[75.27449,12.54022],[75.27396,12.5356],[75.27864,12.53146],[75.28031,12.52531],[75.29135,12.52685],[75.29554,12.52525],[75.29652,12.52319],[75.3041,12.52328],[75.30321,12.51426],[75.30456,12.50408],[75.31445,12.50292],[75.31503,12.49711],[75.32451,12.49673],[75.333,12.49833],[75.33448,12.49549],[75.33353,12.49205],[75.33742,12.48852],[75.3361,12.47701],[75.34154,12.46912],[75.3366,12.46408],[75.34611,12.46298],[75.35173,12.46488],[75.36082,12.46497],[75.36751,12.47533],[75.371,12.4748],[75.3726,12.47703],[75.3716,12.4869],[75.36864,12.48728],[75.36805,12.49121],[75.37779,12.4951],[75.38223,12.50202],[75.38741,12.5019],[75.39169,12.49936],[75.3946,12.50277],[75.39905,12.50352],[75.40008,12.5],[75.403,12.49774],[75.40806,12.49864],[75.41195,12.50201],[75.41613,12.50003],[75.41584,12.50521],[75.41942,12.50935],[75.41668,12.51117],[75.41643,12.5153],[75.42426,12.51729],[75.42889,12.515],[75.43194,12.51777],[75.42946,12.52121],[75.43221,12.52379],[75.43435,12.53012],[75.43978,12.52851],[75.44209,12.52202],[75.44546,12.52076],[75.44569,12.51833],[75.44994,12.51859],[75.4532,12.51366],[75.45534,12.5129],[75.45809,12.51588],[75.4587,12.51058],[75.4617,12.5083],[75.46131,12.50498],[75.47249,12.49946],[75.46669,12.49027],[75.46198,12.48791],[75.46352,12.48544],[75.46143,12.48319],[75.4608,12.47694],[75.46463,12.47186],[75.47453,12.46608],[75.47542,12.46343],[75.47796,12.46621],[75.48195,12.46581],[75.48477,12.4622],[75.48986,12.46009],[75.49248,12.46191],[75.49318,12.46497],[75.49165,12.46891],[75.49602,12.47857],[75.49332,12.48373],[75.50008,12.48704],[75.50559,12.48642],[75.51411,12.48934],[75.51796,12.48788],[75.52367,12.48983],[75.52589,12.49684],[75.52916,12.49947],[75.53105,12.49942],[75.5337,12.49499],[75.54036,12.49503],[75.54725,12.49199],[75.55184,12.49322],[75.55605,12.48944],[75.55965,12.48933],[75.56082,12.48738],[75.56591,12.48611],[75.5662,12.49202],[75.56482,12.49506],[75.55506,12.49834],[75.55617,12.50123],[75.56418,12.51065],[75.57089,12.51152],[75.57765,12.51866],[75.58093,12.51932],[75.58013,12.52209],[75.58169,12.52326],[75.58269,12.53084],[75.59099,12.54008],[75.59298,12.53805],[75.59584,12.52764],[75.59968,12.52647],[75.60574,12.52111],[75.6055,12.51267],[75.61476,12.51019],[75.62368,12.51627],[75.62676,12.52112],[75.6283,12.5191],[75.63232,12.52111],[75.63315,12.52809],[75.63788,12.53065],[75.64052,12.5365],[75.64428,12.53942],[75.65374,12.54072],[75.65747,12.54371],[75.66637,12.54638],[75.67056,12.55105],[75.66871,12.56517],[75.66314,12.56956],[75.66845,12.57218],[75.66211,12.57786],[75.6642,12.58556],[75.66154,12.59662],[75.6564,12.6027],[75.65392,12.6107],[75.6544,12.61833],[75.65308,12.6207],[75.64232,12.62625],[75.64197,12.63293],[75.64538,12.65771],[75.64797,12.66573],[75.65275,12.67174],[75.65689,12.68253],[75.66695,12.69782],[75.64396,12.694],[75.63787,12.69531],[75.63506,12.69402],[75.63387,12.68982],[75.62903,12.701],[75.62934,12.70322],[75.62606,12.70514],[75.63333,12.70748],[75.63753,12.71326],[75.64925,12.71683],[75.65149,12.71932],[75.65242,12.72988],[75.65812,12.7418],[75.65609,12.74844],[75.65744,12.75204],[75.65513,12.74929],[75.64431,12.75881],[75.63832,12.76086],[75.64117,12.76998],[75.63682,12.77021],[75.62938,12.77903],[75.62461,12.78009],[75.6212,12.77887],[75.6228,12.79162],[75.62089,12.7942],[75.61442,12.79721],[75.61827,12.81763],[75.61589,12.82279],[75.61487,12.83201],[75.6222,12.84696],[75.62132,12.85531],[75.61668,12.85556],[75.61275,12.86061],[75.60226,12.86495],[75.60109,12.87021],[75.6028,12.87554],[75.5939,12.87582],[75.58779,12.873],[75.5777,12.87213],[75.56849,12.86837],[75.56632,12.86596],[75.56361,12.86654],[75.56433,12.87548],[75.55996,12.87834],[75.5612,12.89347],[75.55816,12.8978],[75.55706,12.9055],[75.55454,12.90638],[75.55711,12.9114],[75.55468,12.93481],[75.55641,12.94266],[75.55041,12.94598],[75.54957,12.94947],[75.54377,12.95252],[75.54194,12.95595],[75.53406,12.95891],[75.52981,12.96773],[75.52477,12.96693],[75.52045,12.97758],[75.51516,12.97767],[75.51429,12.97893],[75.52512,12.99374],[75.52602,12.99654],[75.52459,13.00041],[75.53081,13.00221],[75.5325,13.00453],[75.53106,13.02126],[75.52766,13.02515],[75.51967,13.02729],[75.51939,13.03191],[75.52523,13.03977],[75.52553,13.04955],[75.52506,13.05072],[75.52357,13.04919],[75.52106,13.05388],[75.51573,13.05634],[75.51768,13.05971],[75.5152,13.06601],[75.50963,13.0718],[75.50685,13.07233],[75.50435,13.07797],[75.50042,13.08196],[75.48608,13.09239],[75.4822,13.08793],[75.47942,13.08056],[75.47968,13.07722],[75.47451,13.07893],[75.47039,13.07763],[75.46805,13.08328],[75.4719,13.09014],[75.47085,13.09707],[75.45509,13.11008],[75.44482,13.10469],[75.44276,13.11371],[75.43326,13.12034],[75.43372,13.12169],[75.42468,13.10629],[75.42061,13.10796],[75.41451,13.10686],[75.41078,13.1109],[75.40713,13.11168],[75.41064,13.11811],[75.40813,13.13586],[75.40983,13.14799],[75.40398,13.15942],[75.39892,13.16436],[75.39104,13.16807],[75.3831,13.17818],[75.37655,13.18175],[75.36877,13.18285],[75.36415,13.18021],[75.35836,13.18373],[75.35693,13.18275],[75.35337,13.184]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"535","area_level":"District","area_name":"Davanagere","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.04523,14.93061],[76.04406,14.93186],[76.03257,14.9245],[76.03028,14.91999],[76.02545,14.91595],[76.02286,14.91019],[76.0141,14.90207],[76.01386,14.89687],[76.01266,14.89633],[76.0105,14.90523],[76.0057,14.90593],[76.00504,14.90192],[76.00119,14.90134],[75.99729,14.89812],[75.98452,14.90817],[75.98144,14.90224],[75.97709,14.89844],[75.96592,14.90847],[75.96533,14.90302],[75.96242,14.90434],[75.95928,14.90249],[75.94968,14.902],[75.9496,14.89997],[75.94004,14.90001],[75.93989,14.89639],[75.93718,14.89566],[75.93728,14.89347],[75.93431,14.89203],[75.92821,14.89233],[75.9275,14.88959],[75.90696,14.88489],[75.90149,14.88112],[75.89772,14.8808],[75.89759,14.87815],[75.8931,14.87759],[75.88857,14.87309],[75.88738,14.86861],[75.87317,14.868],[75.87112,14.86534],[75.86912,14.85436],[75.85799,14.85951],[75.85373,14.86359],[75.85422,14.87853],[75.85573,14.88182],[75.85391,14.88356],[75.84773,14.8844],[75.84735,14.88723],[75.84479,14.88985],[75.84092,14.88964],[75.83222,14.88347],[75.82566,14.8992],[75.81603,14.89977],[75.81601,14.89602],[75.81308,14.89592],[75.81101,14.89225],[75.80928,14.88091],[75.80348,14.87627],[75.80169,14.86886],[75.81015,14.84623],[75.81029,14.84269],[75.80534,14.84129],[75.81111,14.82928],[75.818,14.8345],[75.83308,14.81309],[75.8348,14.8036],[75.8333,14.79545],[75.82315,14.77642],[75.81384,14.77642],[75.79876,14.7689],[75.77649,14.78569],[75.77292,14.79162],[75.77151,14.78226],[75.75975,14.77526],[75.756,14.74051],[75.75622,14.73877],[75.75948,14.73743],[75.76377,14.73204],[75.76431,14.72331],[75.762,14.7199],[75.75394,14.71551],[75.7411,14.70082],[75.73796,14.69119],[75.73961,14.68522],[75.76352,14.67531],[75.77546,14.67606],[75.78925,14.68235],[75.79711,14.6825],[75.80039,14.67693],[75.7983,14.67132],[75.79885,14.66758],[75.81065,14.65464],[75.8113,14.62829],[75.80588,14.61105],[75.80447,14.59841],[75.81872,14.57406],[75.82025,14.56702],[75.81886,14.5617],[75.8026,14.54591],[75.79963,14.54119],[75.79734,14.53056],[75.79924,14.51074],[75.79735,14.50941],[75.79076,14.51045],[75.77907,14.51678],[75.77295,14.5184],[75.75751,14.51444],[75.75195,14.51134],[75.74713,14.50443],[75.73519,14.49497],[75.72492,14.47912],[75.71555,14.47227],[75.70798,14.47507],[75.7027,14.48844],[75.70018,14.49114],[75.69633,14.49241],[75.68973,14.49184],[75.67994,14.47875],[75.67317,14.46375],[75.6616,14.45183],[75.65956,14.4543],[75.66124,14.45916],[75.65819,14.45922],[75.65475,14.46368],[75.63683,14.46558],[75.63038,14.44474],[75.63652,14.44099],[75.63459,14.43293],[75.64285,14.43125],[75.6402,14.41172],[75.63513,14.39061],[75.63115,14.38344],[75.63127,14.37831],[75.62615,14.37231],[75.62287,14.34418],[75.62687,14.33234],[75.63222,14.32798],[75.63423,14.3241],[75.63526,14.31969],[75.63404,14.31494],[75.61086,14.31587],[75.60958,14.30801],[75.60342,14.29297],[75.59096,14.28763],[75.58769,14.28936],[75.58242,14.27824],[75.57603,14.27702],[75.5609,14.27762],[75.55655,14.2749],[75.55162,14.27424],[75.54539,14.27652],[75.52989,14.2774],[75.52925,14.26571],[75.52698,14.25832],[75.52919,14.22998],[75.52668,14.22842],[75.5289,14.21498],[75.52676,14.2028],[75.52086,14.2025],[75.50728,14.21912],[75.47622,14.21492],[75.47254,14.21064],[75.46171,14.20921],[75.45609,14.20679],[75.45292,14.20469],[75.46171,14.19967],[75.47044,14.18888],[75.4842,14.17623],[75.46114,14.17466],[75.44373,14.16345],[75.43342,14.1529],[75.42427,14.1495],[75.42058,14.14101],[75.41541,14.1412],[75.40135,14.1262],[75.39896,14.11812],[75.39879,14.11686],[75.40607,14.11371],[75.4329,14.10646],[75.43859,14.10374],[75.44847,14.09538],[75.46476,14.10234],[75.47074,14.1032],[75.47987,14.10023],[75.49051,14.10475],[75.49278,14.09949],[75.51001,14.10106],[75.52361,14.09445],[75.52903,14.0946],[75.53128,14.09751],[75.53392,14.09017],[75.53877,14.08612],[75.53968,14.08069],[75.54323,14.07805],[75.54817,14.07696],[75.55365,14.07876],[75.56432,14.06927],[75.58522,14.05786],[75.5913,14.06392],[75.59547,14.06128],[75.60089,14.06084],[75.60358,14.05654],[75.6111,14.06139],[75.61753,14.07659],[75.63071,14.0735],[75.63429,14.07984],[75.64241,14.07947],[75.64364,14.07857],[75.64362,14.07396],[75.65963,14.0675],[75.66438,14.06628],[75.66723,14.06748],[75.67299,14.06495],[75.70195,14.07289],[75.72548,14.07578],[75.72654,14.07655],[75.72114,14.08338],[75.73819,14.0874],[75.73879,14.10108],[75.75312,14.10175],[75.75597,14.11028],[75.76816,14.1094],[75.76852,14.10359],[75.80585,14.09814],[75.81411,14.10563],[75.81395,14.09458],[75.82104,14.07947],[75.81988,14.07078],[75.82095,14.06501],[75.81392,14.04878],[75.8039,14.04367],[75.80099,14.04369],[75.79876,14.03326],[75.80341,14.02607],[75.80791,14.02621],[75.81082,14.02363],[75.82386,14.01894],[75.82805,13.99259],[75.83085,13.98671],[75.82914,13.97166],[75.84521,13.94203],[75.85965,13.91036],[75.85976,13.88659],[75.85531,13.87265],[75.86286,13.87265],[75.86572,13.85982],[75.87135,13.85109],[75.87053,13.83552],[75.87876,13.81011],[75.8895,13.80967],[75.89549,13.80621],[75.90367,13.80882],[75.90818,13.80731],[75.92026,13.80705],[75.92757,13.81387],[75.93159,13.81477],[75.93558,13.81261],[75.94552,13.8142],[75.94733,13.81792],[75.9523,13.81598],[75.9531,13.81808],[75.94962,13.82024],[75.9503,13.82667],[75.94811,13.82849],[75.94974,13.83383],[75.96513,13.8467],[75.97019,13.85635],[75.9752,13.85068],[75.98037,13.84781],[75.98485,13.85008],[75.98882,13.84849],[75.99482,13.853],[76.00808,13.86855],[76.01083,13.86594],[76.01577,13.87193],[76.01857,13.86378],[76.02236,13.86346],[76.02577,13.86789],[76.03008,13.86844],[76.02773,13.87337],[76.03238,13.87976],[76.0333,13.8977],[76.02837,13.89866],[76.03082,13.90607],[76.02936,13.91843],[76.0351,13.9245],[76.04459,13.94237],[76.04962,13.94102],[76.0656,13.94151],[76.06932,13.95279],[76.06903,13.96742],[76.07219,13.98221],[76.05076,13.97861],[76.0496,13.98322],[76.04689,13.98317],[76.04324,13.98731],[76.04263,13.99084],[76.04621,14.01352],[76.04815,14.01373],[76.05082,14.0237],[76.05113,14.0342],[76.04783,14.0394],[76.04764,14.04717],[76.04963,14.05613],[76.05394,14.06108],[76.05634,14.07049],[76.05455,14.08896],[76.05214,14.09396],[76.04987,14.09419],[76.04692,14.09743],[76.042,14.096],[76.03497,14.09006],[76.03321,14.09009],[76.03236,14.09587],[76.03416,14.09597],[76.03493,14.09951],[76.02528,14.10002],[76.02626,14.10385],[76.02496,14.11312],[76.02806,14.11972],[76.03188,14.1203],[76.03345,14.12503],[76.03263,14.13386],[76.03552,14.13522],[76.0395,14.14238],[76.04638,14.14507],[76.04627,14.15494],[76.06329,14.15951],[76.06384,14.17127],[76.06518,14.17102],[76.06429,14.17686],[76.06591,14.18126],[76.05753,14.18125],[76.05631,14.19457],[76.05776,14.20179],[76.06296,14.20345],[76.06322,14.20591],[76.06555,14.20625],[76.06102,14.22248],[76.07209,14.226],[76.07898,14.24513],[76.08829,14.24537],[76.09611,14.24783],[76.10137,14.24605],[76.10519,14.24654],[76.13487,14.25604],[76.13454,14.26287],[76.13079,14.26838],[76.12989,14.27994],[76.1249,14.28249],[76.11704,14.27746],[76.12062,14.29097],[76.12007,14.29485],[76.118,14.30001],[76.11178,14.30235],[76.10642,14.30838],[76.10635,14.31028],[76.10873,14.31209],[76.10994,14.31728],[76.11612,14.32319],[76.14288,14.32205],[76.15463,14.31819],[76.15655,14.32001],[76.15833,14.33188],[76.1549,14.35022],[76.15675,14.36036],[76.15492,14.36037],[76.15451,14.36279],[76.15075,14.36632],[76.15149,14.37743],[76.15539,14.37704],[76.15528,14.38686],[76.15095,14.39791],[76.14927,14.40773],[76.14312,14.41214],[76.14033,14.42072],[76.13624,14.42697],[76.1453,14.43093],[76.16272,14.44516],[76.172,14.448],[76.17335,14.46064],[76.2077,14.45739],[76.21848,14.44187],[76.23805,14.4504],[76.24742,14.444],[76.26128,14.44426],[76.26514,14.43704],[76.26615,14.42382],[76.27079,14.42031],[76.27413,14.40902],[76.28118,14.40417],[76.29307,14.40876],[76.31915,14.40814],[76.33262,14.40953],[76.33872,14.41431],[76.33921,14.41897],[76.34233,14.4169],[76.34945,14.41621],[76.35289,14.41938],[76.37001,14.42031],[76.37325,14.41828],[76.38315,14.42016],[76.38436,14.422],[76.38321,14.42698],[76.39323,14.42634],[76.3923,14.42869],[76.39534,14.42919],[76.39647,14.43439],[76.4059,14.43493],[76.41619,14.43935],[76.42395,14.43852],[76.42349,14.44997],[76.43838,14.44791],[76.45965,14.45165],[76.45581,14.46538],[76.4556,14.47157],[76.46137,14.50609],[76.46864,14.50543],[76.47325,14.50246],[76.48482,14.50453],[76.49539,14.51168],[76.50812,14.51629],[76.51368,14.52315],[76.52143,14.52434],[76.53363,14.5408],[76.53286,14.5434],[76.52699,14.54608],[76.52385,14.55314],[76.51678,14.54989],[76.51476,14.55111],[76.50918,14.56231],[76.50507,14.56537],[76.46464,14.57421],[76.46228,14.57625],[76.44392,14.58031],[76.4236,14.58165],[76.42482,14.58657],[76.42838,14.59055],[76.42953,14.59861],[76.43223,14.60473],[76.43214,14.61831],[76.42167,14.62479],[76.41477,14.62303],[76.40314,14.62361],[76.40189,14.62739],[76.39361,14.62688],[76.38987,14.64861],[76.37453,14.64656],[76.37457,14.65377],[76.37931,14.66202],[76.374,14.66397],[76.34294,14.66572],[76.33814,14.68567],[76.33525,14.68777],[76.32214,14.69241],[76.31618,14.69261],[76.31233,14.68722],[76.30158,14.68999],[76.28894,14.68516],[76.27948,14.68464],[76.27332,14.68829],[76.27232,14.69573],[76.2579,14.69604],[76.25689,14.70072],[76.24901,14.6975],[76.24649,14.69453],[76.23925,14.67853],[76.2305,14.64931],[76.20443,14.67788],[76.19354,14.68198],[76.19343,14.69797],[76.18369,14.7003],[76.18713,14.72251],[76.19713,14.72499],[76.19861,14.73912],[76.20094,14.73914],[76.20058,14.75323],[76.19862,14.75324],[76.196,14.75648],[76.19233,14.76834],[76.18612,14.76699],[76.18681,14.76509],[76.1809,14.76406],[76.17991,14.76874],[76.16895,14.78515],[76.14936,14.7839],[76.14697,14.78949],[76.1429,14.79321],[76.1436,14.81382],[76.1464,14.82348],[76.15334,14.82134],[76.15521,14.82783],[76.15765,14.82912],[76.16047,14.82828],[76.16057,14.82992],[76.17613,14.82203],[76.18565,14.82027],[76.19431,14.82082],[76.19157,14.8315],[76.19069,14.84648],[76.1744,14.84844],[76.15933,14.84716],[76.15797,14.85193],[76.15935,14.85387],[76.15461,14.85743],[76.15471,14.86121],[76.13053,14.86076],[76.13059,14.86823],[76.12888,14.86912],[76.09416,14.86968],[76.08774,14.87257],[76.07272,14.86884],[76.06624,14.88396],[76.06977,14.89066],[76.08243,14.90443],[76.08466,14.91335],[76.06971,14.90892],[76.0688,14.91046],[76.0661,14.91008],[76.06508,14.91355],[76.06212,14.91585],[76.05128,14.91616],[76.04798,14.92451],[76.04766,14.93028],[76.04523,14.93061]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"536","area_level":"District","area_name":"Dharwad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.49315,15.68505],[75.4876,15.70254],[75.46851,15.70076],[75.47283,15.68659],[75.47008,15.68415],[75.46206,15.68178],[75.45385,15.68201],[75.4505,15.67803],[75.44758,15.68227],[75.44132,15.67229],[75.42887,15.66915],[75.42514,15.67045],[75.42391,15.66893],[75.42436,15.66246],[75.41694,15.66091],[75.41305,15.65537],[75.41123,15.65547],[75.41104,15.65767],[75.4088,15.65765],[75.40768,15.65594],[75.38109,15.66513],[75.36244,15.66867],[75.35945,15.64557],[75.33565,15.64873],[75.33699,15.67382],[75.31306,15.68005],[75.304,15.68675],[75.2968,15.68938],[75.29556,15.6919],[75.28332,15.69083],[75.2779,15.68712],[75.27261,15.66286],[75.2737,15.6487],[75.24911,15.64698],[75.23628,15.67901],[75.21787,15.67695],[75.21775,15.68157],[75.20263,15.68155],[75.20272,15.64906],[75.18724,15.64896],[75.18565,15.65599],[75.18395,15.65763],[75.18101,15.65675],[75.17782,15.65925],[75.17135,15.66055],[75.15283,15.65941],[75.15195,15.66106],[75.14931,15.65843],[75.14712,15.65992],[75.14134,15.65868],[75.13235,15.66011],[75.1303,15.66349],[75.12677,15.66568],[75.12628,15.66425],[75.12386,15.66549],[75.12386,15.66799],[75.10821,15.67198],[75.1061,15.66023],[75.10143,15.66078],[75.09768,15.62933],[75.0918,15.60788],[75.08999,15.61221],[75.08719,15.6124],[75.08487,15.61658],[75.08242,15.61731],[75.08065,15.6229],[75.06394,15.62569],[75.06431,15.6279],[75.06209,15.63002],[75.05634,15.63248],[75.06319,15.66927],[75.0589,15.67736],[75.05978,15.68208],[75.04975,15.68246],[75.04672,15.67063],[75.02828,15.6698],[75.02801,15.6518],[75.0236,15.6518],[75.02191,15.65034],[75.01936,15.64392],[74.99208,15.64998],[74.99126,15.65153],[74.97801,15.64913],[74.96632,15.65432],[74.96311,15.64348],[74.96507,15.62719],[74.95243,15.62691],[74.94448,15.62396],[74.93271,15.62357],[74.9281,15.62418],[74.91183,15.63166],[74.90038,15.63163],[74.88734,15.62967],[74.88358,15.6247],[74.87767,15.62272],[74.87888,15.61793],[74.84021,15.60855],[74.83825,15.61236],[74.82975,15.60979],[74.82857,15.6077],[74.82989,15.59029],[74.83223,15.59091],[74.83532,15.58659],[74.83801,15.57707],[74.8409,15.57474],[74.82244,15.56848],[74.82345,15.56603],[74.81986,15.5653],[74.82028,15.56229],[74.80752,15.55423],[74.80592,15.55115],[74.7979,15.54851],[74.81146,15.52183],[74.81125,15.51431],[74.80945,15.51262],[74.81386,15.50496],[74.80345,15.50298],[74.80226,15.50101],[74.80583,15.49801],[74.80416,15.49696],[74.79984,15.49914],[74.80007,15.49672],[74.798,15.49775],[74.79991,15.49425],[74.79589,15.49117],[74.79587,15.48751],[74.78694,15.48612],[74.78644,15.48369],[74.78897,15.4817],[74.7886,15.47396],[74.77831,15.45931],[74.77096,15.46909],[74.7646,15.47391],[74.76108,15.47047],[74.7539,15.48476],[74.75539,15.48777],[74.75338,15.48731],[74.74859,15.4962],[74.73811,15.49013],[74.72731,15.48888],[74.73104,15.47733],[74.72889,15.47672],[74.7319,15.4709],[74.73719,15.46588],[74.74354,15.4667],[74.74295,15.46417],[74.74443,15.46347],[74.74199,15.46221],[74.7435,15.46127],[74.74232,15.45132],[74.74034,15.45144],[74.74009,15.44863],[74.73781,15.44835],[74.74024,15.4473],[74.73895,15.44546],[74.73079,15.44014],[74.7307,15.43549],[74.73213,15.43369],[74.72961,15.43043],[74.73305,15.42317],[74.73801,15.42219],[74.73999,15.41945],[74.74136,15.41231],[74.75427,15.41096],[74.76667,15.41721],[74.76847,15.41615],[74.76833,15.41123],[74.77067,15.40785],[74.76558,15.40238],[74.76523,15.39961],[74.76926,15.40099],[74.78238,15.39432],[74.78663,15.38474],[74.794,15.37843],[74.79706,15.37714],[74.8022,15.37797],[74.82096,15.38509],[74.8309,15.3728],[74.82436,15.37476],[74.81914,15.37036],[74.82596,15.34457],[74.8284,15.34064],[74.83584,15.33456],[74.83806,15.33647],[74.84513,15.33563],[74.84736,15.33749],[74.84742,15.34049],[74.85363,15.34119],[74.86071,15.32724],[74.8762,15.31665],[74.87457,15.31509],[74.87748,15.31289],[74.87836,15.31],[74.87368,15.29848],[74.88193,15.29876],[74.88886,15.30705],[74.89356,15.30048],[74.89645,15.30167],[74.90094,15.29181],[74.90822,15.26856],[74.91023,15.25103],[74.88767,15.23425],[74.88732,15.22884],[74.87544,15.21681],[74.87307,15.21635],[74.87533,15.2069],[74.87329,15.20475],[74.87737,15.19317],[74.87338,15.19229],[74.86526,15.18697],[74.86542,15.18264],[74.86274,15.18195],[74.86242,15.17812],[74.85108,15.17158],[74.84864,15.16721],[74.84841,15.16291],[74.84085,15.15664],[74.84191,15.15549],[74.83958,15.15253],[74.835,15.15029],[74.83743,15.1439],[74.82927,15.13963],[74.83119,15.13844],[74.83147,15.13183],[74.83545,15.13108],[74.84075,15.12721],[74.8433,15.1219],[74.84687,15.12307],[74.85125,15.12087],[74.8539,15.11107],[74.8593,15.10272],[74.87414,15.10277],[74.88009,15.10006],[74.8891,15.0999],[74.89198,15.09697],[74.89322,15.09357],[74.88947,15.08881],[74.88383,15.08819],[74.88011,15.08475],[74.87846,15.07377],[74.88719,15.06559],[74.88615,15.06341],[74.88978,15.05342],[74.88795,15.05024],[74.89093,15.04476],[74.90056,15.04927],[74.90814,15.05084],[74.9107,15.04114],[74.91706,15.03878],[74.9187,15.04421],[74.92213,15.04514],[74.92393,15.04844],[74.92807,15.0501],[74.92986,15.04934],[74.9317,15.05206],[74.94056,15.05194],[74.94163,15.05615],[74.93913,15.05707],[74.94062,15.06644],[74.94426,15.06417],[74.95084,15.06747],[74.95761,15.06483],[74.96366,15.06938],[74.97446,15.07054],[74.97931,15.06899],[74.98624,15.07121],[74.98602,15.07287],[74.99403,15.07349],[74.99841,15.07007],[75.00843,15.07138],[75.00916,15.06962],[75.01293,15.06828],[75.01832,15.07258],[75.02009,15.07021],[75.02227,15.07025],[75.02554,15.07323],[75.02595,15.07221],[75.02765,15.07382],[75.03025,15.07313],[75.03045,15.07474],[75.03259,15.07457],[75.03357,15.07849],[75.04375,15.07915],[75.04732,15.08174],[75.05399,15.08288],[75.05528,15.07376],[75.05821,15.0723],[75.07095,15.07034],[75.08139,15.07431],[75.0825,15.0854],[75.08102,15.08759],[75.07974,15.10425],[75.07744,15.11032],[75.09529,15.1102],[75.09528,15.11393],[75.11347,15.11716],[75.11418,15.12099],[75.11144,15.12635],[75.1084,15.12997],[75.10528,15.13039],[75.10446,15.13382],[75.10665,15.13842],[75.10362,15.1403],[75.10422,15.14127],[75.10935,15.13881],[75.11689,15.14084],[75.12166,15.14028],[75.12565,15.14502],[75.13176,15.14479],[75.13427,15.14871],[75.13477,15.15683],[75.13705,15.15781],[75.13668,15.16074],[75.14098,15.16141],[75.14057,15.15927],[75.14509,15.15431],[75.14663,15.15006],[75.14887,15.15038],[75.15286,15.14563],[75.15156,15.14556],[75.15252,15.14333],[75.148,15.13966],[75.14546,15.13411],[75.1416,15.13321],[75.13776,15.12995],[75.13883,15.12554],[75.13746,15.12015],[75.13307,15.11897],[75.13527,15.11295],[75.13749,15.11207],[75.13622,15.11034],[75.13778,15.10595],[75.13912,15.10433],[75.14163,15.10448],[75.14404,15.10492],[75.14392,15.10664],[75.15317,15.10724],[75.15311,15.1087],[75.15867,15.10965],[75.15819,15.10149],[75.18611,15.10426],[75.18822,15.09788],[75.19849,15.10135],[75.20355,15.10029],[75.22485,15.10125],[75.22582,15.10743],[75.23838,15.10894],[75.23986,15.10714],[75.25116,15.10762],[75.25302,15.09807],[75.25841,15.09848],[75.26053,15.11828],[75.26987,15.11762],[75.27272,15.12213],[75.27972,15.12464],[75.28797,15.13051],[75.2871,15.13688],[75.30977,15.13826],[75.30708,15.15512],[75.32593,15.15739],[75.33639,15.16177],[75.33703,15.11218],[75.33984,15.10667],[75.34919,15.103],[75.35056,15.10103],[75.35002,15.09468],[75.33919,15.09154],[75.33979,15.08843],[75.33295,15.08667],[75.33967,15.06972],[75.34834,15.06444],[75.35717,15.06519],[75.36684,15.05136],[75.36925,15.05012],[75.37522,15.05028],[75.39918,15.05994],[75.41664,15.0595],[75.41852,15.06587],[75.41664,15.08487],[75.42045,15.08644],[75.42061,15.09055],[75.42448,15.09227],[75.42245,15.0985],[75.43262,15.1046],[75.4335,15.10941],[75.42998,15.1164],[75.42913,15.1263],[75.41194,15.14599],[75.41004,15.16136],[75.406,15.16165],[75.40563,15.16437],[75.40347,15.16462],[75.40313,15.1716],[75.40109,15.17155],[75.40171,15.16562],[75.39577,15.16554],[75.39521,15.17209],[75.40073,15.17315],[75.39777,15.18756],[75.39885,15.20126],[75.43287,15.19889],[75.43315,15.20999],[75.44912,15.2081],[75.44594,15.21829],[75.4402,15.22723],[75.42269,15.22595],[75.422,15.23524],[75.41583,15.23459],[75.41471,15.25261],[75.4171,15.2567],[75.41648,15.26246],[75.40642,15.26413],[75.40471,15.26313],[75.40545,15.26103],[75.40283,15.26029],[75.40198,15.27332],[75.41676,15.27492],[75.41608,15.27918],[75.40607,15.27764],[75.40607,15.28412],[75.41028,15.28506],[75.41237,15.29974],[75.42641,15.30029],[75.42652,15.30173],[75.43333,15.30211],[75.4497,15.30184],[75.44846,15.32764],[75.45273,15.3401],[75.45767,15.34209],[75.45416,15.36087],[75.44899,15.35948],[75.44457,15.38609],[75.46893,15.38586],[75.46975,15.39748],[75.47527,15.39577],[75.48175,15.39316],[75.48027,15.38768],[75.48169,15.37858],[75.48488,15.37781],[75.48619,15.37315],[75.48977,15.37304],[75.49057,15.36823],[75.49239,15.36872],[75.49165,15.37852],[75.49416,15.38775],[75.49895,15.42382],[75.49276,15.44861],[75.49305,15.46598],[75.49511,15.4698],[75.48703,15.48927],[75.47178,15.49271],[75.47575,15.51258],[75.47502,15.51657],[75.47662,15.52159],[75.48146,15.52576],[75.48173,15.5317],[75.49338,15.53194],[75.50533,15.52972],[75.52948,15.53787],[75.52861,15.56575],[75.53024,15.56575],[75.5344,15.59158],[75.53704,15.59153],[75.54068,15.60002],[75.53983,15.60068],[75.54173,15.60155],[75.54377,15.61213],[75.54926,15.61444],[75.54984,15.62799],[75.55437,15.64727],[75.5453,15.64895],[75.51971,15.64658],[75.50255,15.64739],[75.49974,15.66551],[75.49315,15.68505]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"537","area_level":"District","area_name":"Gadag","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.46145,15.88675],[75.4489,15.88608],[75.45387,15.88096],[75.4511,15.86282],[75.45728,15.86153],[75.45783,15.81846],[75.45466,15.81846],[75.45267,15.81085],[75.45082,15.81136],[75.44718,15.79376],[75.44013,15.79531],[75.43716,15.77871],[75.41417,15.78477],[75.42438,15.82272],[75.42456,15.84193],[75.4108,15.84149],[75.40752,15.83973],[75.40417,15.84166],[75.39034,15.8378],[75.37491,15.84534],[75.36469,15.8049],[75.34114,15.80476],[75.33927,15.82763],[75.32988,15.82401],[75.33283,15.81635],[75.32487,15.81121],[75.32145,15.81028],[75.32103,15.81238],[75.30364,15.81257],[75.30608,15.76596],[75.31831,15.76455],[75.31835,15.74493],[75.31416,15.73004],[75.29964,15.7276],[75.29311,15.72821],[75.29378,15.74103],[75.27456,15.74039],[75.27416,15.73553],[75.27362,15.72259],[75.27709,15.72207],[75.27888,15.68846],[75.28332,15.69083],[75.29556,15.6919],[75.2968,15.68938],[75.304,15.68675],[75.31306,15.68005],[75.33699,15.67382],[75.33565,15.64873],[75.35945,15.64557],[75.36244,15.66867],[75.38109,15.66513],[75.40768,15.65594],[75.4088,15.65765],[75.41104,15.65767],[75.41123,15.65547],[75.41305,15.65537],[75.41694,15.66091],[75.42436,15.66246],[75.42391,15.66893],[75.42514,15.67045],[75.42887,15.66915],[75.44132,15.67229],[75.44758,15.68227],[75.4505,15.67803],[75.45385,15.68201],[75.46206,15.68178],[75.47008,15.68415],[75.47283,15.68659],[75.46851,15.70076],[75.4876,15.70254],[75.49974,15.66551],[75.50255,15.64739],[75.51971,15.64658],[75.5453,15.64895],[75.55437,15.64727],[75.54984,15.62799],[75.54926,15.61444],[75.54377,15.61213],[75.54173,15.60155],[75.53983,15.60068],[75.54068,15.60002],[75.53704,15.59153],[75.5344,15.59158],[75.53024,15.56575],[75.52861,15.56575],[75.52948,15.53787],[75.50533,15.52972],[75.49338,15.53194],[75.48173,15.5317],[75.48146,15.52576],[75.47662,15.52159],[75.47502,15.51657],[75.47575,15.51258],[75.47178,15.49271],[75.48703,15.48927],[75.49511,15.4698],[75.49305,15.46598],[75.49276,15.44861],[75.49895,15.42382],[75.49416,15.38775],[75.49165,15.37852],[75.49239,15.36872],[75.49057,15.36823],[75.48977,15.37304],[75.48619,15.37315],[75.48488,15.37781],[75.48169,15.37858],[75.48027,15.38768],[75.48175,15.39316],[75.47527,15.39577],[75.46975,15.39748],[75.46893,15.38586],[75.44457,15.38609],[75.44899,15.35948],[75.45416,15.36087],[75.45767,15.34209],[75.45273,15.3401],[75.44846,15.32764],[75.4497,15.30184],[75.43333,15.30211],[75.42652,15.30173],[75.42641,15.30029],[75.41237,15.29974],[75.41028,15.28506],[75.40607,15.28412],[75.40607,15.27764],[75.41608,15.27918],[75.41676,15.27492],[75.40198,15.27332],[75.40283,15.26029],[75.40545,15.26103],[75.40471,15.26313],[75.40642,15.26413],[75.41648,15.26246],[75.4171,15.2567],[75.41471,15.25261],[75.41583,15.23459],[75.422,15.23524],[75.42269,15.22595],[75.4402,15.22723],[75.44594,15.21829],[75.44912,15.2081],[75.43315,15.20999],[75.43287,15.19889],[75.39885,15.20126],[75.39777,15.18756],[75.40073,15.17315],[75.39521,15.17209],[75.39577,15.16554],[75.40171,15.16562],[75.40109,15.17155],[75.40313,15.1716],[75.40347,15.16462],[75.40563,15.16437],[75.406,15.16165],[75.41004,15.16136],[75.41194,15.14599],[75.42913,15.1263],[75.42998,15.1164],[75.4335,15.10941],[75.43262,15.1046],[75.42245,15.0985],[75.42448,15.09227],[75.42061,15.09055],[75.42045,15.08644],[75.41664,15.08487],[75.41852,15.06587],[75.4171,15.06149],[75.42505,15.0602],[75.42706,15.06151],[75.44867,15.0607],[75.45203,15.0499],[75.45575,15.05134],[75.46025,15.04994],[75.46106,15.04393],[75.46856,15.04712],[75.47758,15.04391],[75.49514,15.04709],[75.50718,15.04454],[75.52104,15.03322],[75.53285,15.03454],[75.5382,15.02742],[75.53978,15.02222],[75.53848,15.01775],[75.54276,15.01355],[75.54302,14.99948],[75.54048,14.98499],[75.54133,14.97869],[75.56549,14.97925],[75.56575,14.97644],[75.56377,14.97337],[75.56523,14.97137],[75.58369,14.96842],[75.58919,14.95938],[75.59788,14.95478],[75.60216,14.95439],[75.60339,14.95613],[75.61071,14.95843],[75.60829,14.96644],[75.60892,14.97299],[75.61807,14.97384],[75.6175,14.98056],[75.62933,14.98358],[75.63182,14.99143],[75.65109,14.99104],[75.66858,14.98665],[75.67432,14.98175],[75.68942,14.97483],[75.69424,14.96909],[75.70108,14.94844],[75.72134,14.95116],[75.73377,14.94505],[75.73933,14.94409],[75.74331,14.94614],[75.74906,14.95231],[75.7607,14.96839],[75.77917,14.97718],[75.78016,14.99164],[75.78483,15.00234],[75.79845,15.01367],[75.80768,15.0245],[75.81342,15.02728],[75.83325,15.02866],[75.83562,15.0316],[75.83851,15.04162],[75.84613,15.0449],[75.85021,15.04409],[75.85954,15.03638],[75.87393,15.0353],[75.8778,15.03997],[75.88043,15.04794],[75.88367,15.05231],[75.8888,15.05469],[75.90285,15.05632],[75.90668,15.05975],[75.9094,15.07166],[75.9088,15.07672],[75.90278,15.08581],[75.88854,15.09688],[75.88489,15.1056],[75.88571,15.10977],[75.88828,15.11257],[75.90092,15.12153],[75.90228,15.13166],[75.91588,15.13539],[75.9242,15.14125],[75.92807,15.14191],[75.93652,15.14194],[75.94714,15.13749],[75.95165,15.13766],[75.94822,15.17307],[75.94,15.17534],[75.92471,15.18267],[75.92621,15.19536],[75.92445,15.20586],[75.91171,15.2405],[75.90324,15.23941],[75.90287,15.24328],[75.89999,15.24529],[75.89475,15.27333],[75.89921,15.2766],[75.89393,15.28038],[75.88868,15.2904],[75.89016,15.2949],[75.88879,15.2973],[75.88997,15.29929],[75.8899,15.31148],[75.89328,15.31857],[75.89121,15.32559],[75.89236,15.3279],[75.89094,15.33641],[75.889,15.33704],[75.88737,15.35317],[75.90278,15.35439],[75.90121,15.37568],[75.90399,15.4029],[75.88439,15.40881],[75.86576,15.40782],[75.86535,15.42374],[75.85892,15.4239],[75.85893,15.44416],[75.84774,15.44455],[75.83987,15.44273],[75.83616,15.44751],[75.82743,15.44935],[75.81923,15.45621],[75.81871,15.46858],[75.81289,15.46754],[75.81051,15.47539],[75.80956,15.4867],[75.81574,15.48691],[75.81487,15.49548],[75.82403,15.49571],[75.8191,15.50786],[75.83134,15.50675],[75.83278,15.51007],[75.84946,15.51232],[75.85049,15.5158],[75.86024,15.51376],[75.8677,15.56072],[75.86842,15.58234],[75.86682,15.59602],[75.87876,15.59913],[75.87913,15.59652],[75.88241,15.59704],[75.88215,15.60032],[75.89455,15.6033],[75.89459,15.60697],[75.8975,15.60708],[75.89933,15.62003],[75.89837,15.62484],[75.89395,15.6254],[75.89469,15.63241],[75.88575,15.63373],[75.88851,15.65027],[75.88746,15.66827],[75.88357,15.6716],[75.87104,15.67261],[75.87101,15.7144],[75.88694,15.71685],[75.89105,15.7284],[75.8887,15.72867],[75.88308,15.73749],[75.89271,15.73841],[75.89739,15.75046],[75.90211,15.74874],[75.91057,15.74443],[75.91037,15.7317],[75.92142,15.72611],[75.91521,15.70438],[75.91542,15.6977],[75.92588,15.69232],[75.94033,15.69322],[75.94009,15.6824],[75.9436,15.67636],[75.96127,15.67588],[75.96732,15.67872],[75.96624,15.66965],[75.96758,15.66912],[75.96799,15.66424],[75.9767,15.66245],[75.98122,15.66366],[76.01121,15.66236],[76.01613,15.67312],[76.01644,15.67847],[76.01416,15.68018],[75.995,15.6779],[75.99009,15.66983],[75.98629,15.66954],[75.98334,15.66724],[75.98427,15.68114],[75.98825,15.68817],[75.98369,15.68979],[75.98443,15.69377],[75.99282,15.70618],[76.0042,15.71161],[76.0049,15.71553],[76.01902,15.71499],[76.02319,15.70927],[76.03021,15.71491],[76.04167,15.71845],[76.04506,15.72546],[76.04349,15.73654],[76.03728,15.73689],[76.04001,15.74764],[76.03991,15.75384],[76.03473,15.75464],[76.03478,15.75661],[76.04043,15.76316],[76.03888,15.7708],[76.03386,15.77018],[76.01988,15.77569],[76.01893,15.77893],[76.01236,15.77961],[76.00984,15.78394],[75.99454,15.78071],[75.99059,15.78679],[75.98834,15.80156],[75.98445,15.80242],[75.9762,15.80026],[75.96741,15.79426],[75.96381,15.7946],[75.96095,15.78383],[75.93848,15.79078],[75.92895,15.79093],[75.90777,15.80883],[75.90058,15.81094],[75.87195,15.82914],[75.8478,15.83869],[75.83794,15.83829],[75.82949,15.83985],[75.82099,15.84548],[75.82074,15.84978],[75.81367,15.84688],[75.80606,15.84859],[75.80564,15.85105],[75.80818,15.85154],[75.80909,15.85469],[75.79992,15.85765],[75.79763,15.84781],[75.7947,15.8492],[75.78711,15.84909],[75.78039,15.85271],[75.77675,15.84915],[75.77439,15.82729],[75.77743,15.82728],[75.7796,15.81716],[75.74904,15.81494],[75.74479,15.81276],[75.73692,15.81342],[75.73682,15.81628],[75.72192,15.81792],[75.71386,15.82764],[75.70665,15.82914],[75.70357,15.82655],[75.69595,15.82469],[75.68786,15.83076],[75.68275,15.82992],[75.6802,15.82184],[75.6771,15.8209],[75.67434,15.82367],[75.67542,15.83151],[75.67215,15.83626],[75.66269,15.8378],[75.66002,15.83432],[75.66156,15.82874],[75.65681,15.82658],[75.65134,15.83035],[75.64281,15.83196],[75.64415,15.84016],[75.64243,15.84134],[75.63703,15.84085],[75.63537,15.83343],[75.63121,15.83081],[75.63087,15.83388],[75.62132,15.83404],[75.61774,15.83559],[75.61656,15.82118],[75.61395,15.82119],[75.61246,15.82424],[75.60541,15.82713],[75.60898,15.83061],[75.6,15.82681],[75.58711,15.83333],[75.57687,15.82478],[75.57551,15.8263],[75.57673,15.83058],[75.56596,15.82964],[75.5657,15.83096],[75.56828,15.83136],[75.56813,15.8339],[75.57128,15.83374],[75.56646,15.83833],[75.56346,15.83605],[75.56302,15.83041],[75.55744,15.8288],[75.55265,15.82474],[75.55024,15.82632],[75.55061,15.8279],[75.5564,15.83252],[75.54696,15.83645],[75.53899,15.83313],[75.53829,15.83484],[75.52989,15.83487],[75.53258,15.83995],[75.53143,15.84203],[75.52886,15.8427],[75.5237,15.83972],[75.52106,15.84114],[75.51982,15.84603],[75.51234,15.85133],[75.51434,15.85153],[75.51566,15.85412],[75.52057,15.85286],[75.51963,15.85771],[75.50785,15.86018],[75.50699,15.85551],[75.50233,15.85832],[75.5052,15.86179],[75.49742,15.87018],[75.49784,15.87229],[75.49172,15.87295],[75.48704,15.87684],[75.48255,15.87488],[75.48023,15.87766],[75.47776,15.87543],[75.48022,15.87121],[75.47882,15.87107],[75.47658,15.87325],[75.47405,15.87332],[75.47377,15.87529],[75.47567,15.87631],[75.46561,15.87724],[75.46663,15.88043],[75.46542,15.88136],[75.46367,15.88181],[75.46296,15.87912],[75.45977,15.88012],[75.45871,15.88454],[75.46145,15.88675]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"538","area_level":"District","area_name":"Kalaburagi","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.70143,17.70933],[76.70131,17.70907],[76.70053,17.70915],[76.69971,17.70904],[76.69759,17.70846],[76.69545,17.7082],[76.6932,17.70745],[76.69304,17.7071],[76.69254,17.70672],[76.69214,17.70078],[76.69321,17.69757],[76.69418,17.69568],[76.69522,17.69578],[76.69692,17.69556],[76.70191,17.69403],[76.70436,17.69353],[76.70691,17.69357],[76.71103,17.69448],[76.7122,17.69594],[76.7135,17.698],[76.7136,17.69908],[76.71335,17.70013],[76.71297,17.70041],[76.70991,17.70041],[76.7088,17.70071],[76.70638,17.70191],[76.70492,17.70289],[76.70234,17.70513],[76.70087,17.70675],[76.70071,17.70749],[76.70079,17.70801],[76.70143,17.70933]]],[[[76.62433,17.75939],[76.61533,17.7704],[76.61104,17.76936],[76.60696,17.75936],[76.6053,17.75865],[76.6011,17.74035],[76.59979,17.73271],[76.60108,17.72586],[76.59438,17.72245],[76.58834,17.70758],[76.58024,17.70522],[76.5703,17.70541],[76.5678,17.74248],[76.56396,17.75083],[76.57271,17.76054],[76.56126,17.76462],[76.53069,17.75826],[76.52316,17.75976],[76.52736,17.73784],[76.5239,17.71515],[76.51173,17.71797],[76.50069,17.71842],[76.48723,17.71476],[76.48449,17.67851],[76.48502,17.67098],[76.48975,17.6605],[76.48667,17.65841],[76.45892,17.65812],[76.45286,17.65579],[76.45448,17.64979],[76.44184,17.64931],[76.445,17.64095],[76.43539,17.64626],[76.42919,17.64495],[76.42724,17.63959],[76.42849,17.63379],[76.42679,17.62581],[76.41929,17.60623],[76.41968,17.60371],[76.39305,17.60315],[76.39186,17.60065],[76.3817,17.60225],[76.37764,17.59787],[76.35003,17.5941],[76.33674,17.5973],[76.33156,17.59598],[76.33129,17.59742],[76.33313,17.56499],[76.33503,17.56518],[76.33853,17.5568],[76.34069,17.54247],[76.34875,17.53943],[76.36274,17.53737],[76.36722,17.51945],[76.3646,17.51497],[76.34657,17.51258],[76.34333,17.50066],[76.34576,17.49253],[76.36231,17.49592],[76.37469,17.49565],[76.37552,17.49022],[76.36824,17.4832],[76.35036,17.47417],[76.33321,17.47176],[76.33069,17.47019],[76.33095,17.45567],[76.33343,17.45548],[76.33326,17.4339],[76.35348,17.4373],[76.37151,17.43642],[76.37,17.41694],[76.37107,17.41343],[76.36343,17.37767],[76.38298,17.37397],[76.40912,17.37139],[76.41219,17.35107],[76.40316,17.34997],[76.39661,17.3471],[76.3851,17.32376],[76.38316,17.31453],[76.35401,17.31432],[76.35429,17.3244],[76.34703,17.3442],[76.3453,17.35445],[76.33803,17.35411],[76.3292,17.35081],[76.31434,17.34839],[76.31203,17.34601],[76.31886,17.33814],[76.31766,17.33238],[76.27636,17.33457],[76.27201,17.36059],[76.27004,17.36051],[76.26702,17.36348],[76.26504,17.36171],[76.25073,17.36043],[76.24905,17.36659],[76.25043,17.36968],[76.24458,17.37154],[76.24413,17.37879],[76.24209,17.37884],[76.22853,17.37584],[76.22944,17.36521],[76.21236,17.36199],[76.19639,17.36367],[76.18042,17.35839],[76.17031,17.35262],[76.17264,17.33629],[76.17658,17.32461],[76.17926,17.31857],[76.18325,17.31943],[76.18107,17.30905],[76.17632,17.30079],[76.16508,17.30334],[76.16262,17.34522],[76.14105,17.35349],[76.133,17.35832],[76.11955,17.37044],[76.09974,17.36465],[76.08938,17.35313],[76.09347,17.34935],[76.08812,17.34217],[76.08722,17.33618],[76.07913,17.3316],[76.0734,17.33651],[76.07214,17.33531],[76.07301,17.33028],[76.06611,17.3161],[76.06499,17.31139],[76.06666,17.3087],[76.07638,17.30312],[76.08861,17.29931],[76.0994,17.29104],[76.09865,17.28325],[76.09136,17.27721],[76.08686,17.26849],[76.08612,17.26178],[76.08839,17.25697],[76.11365,17.25239],[76.12752,17.24499],[76.16643,17.21061],[76.17693,17.19395],[76.18316,17.19102],[76.18814,17.18638],[76.20313,17.18342],[76.21687,17.18688],[76.22052,17.18543],[76.22371,17.17477],[76.23612,17.16318],[76.2398,17.15355],[76.2426,17.15079],[76.25403,17.14873],[76.26375,17.15101],[76.27162,17.16343],[76.27684,17.16746],[76.29003,17.1678],[76.30621,17.17081],[76.33321,17.17078],[76.3466,17.18099],[76.35233,17.18751],[76.35631,17.18873],[76.36052,17.18673],[76.36463,17.18139],[76.36894,17.16674],[76.36674,17.15593],[76.3597,17.14528],[76.35999,17.14025],[76.36371,17.13765],[76.36747,17.13767],[76.38351,17.14659],[76.38919,17.1464],[76.39458,17.14297],[76.39508,17.13788],[76.3912,17.13082],[76.38355,17.12749],[76.36741,17.12384],[76.36372,17.12088],[76.36226,17.11604],[76.36302,17.11095],[76.36612,17.10725],[76.38413,17.10263],[76.39035,17.09712],[76.39139,17.09169],[76.38798,17.07258],[76.39402,17.06972],[76.39817,17.07005],[76.41007,17.08916],[76.42941,17.09965],[76.43109,17.05342],[76.42734,17.05354],[76.43115,17.02987],[76.43726,17.02669],[76.43644,17.02532],[76.43315,17.02549],[76.43926,17.00679],[76.44043,16.99677],[76.43664,16.98173],[76.42496,16.97802],[76.40037,16.97708],[76.40237,16.96253],[76.40227,16.94216],[76.39905,16.93533],[76.42086,16.92742],[76.42785,16.9274],[76.43376,16.9383],[76.4341,16.94325],[76.44756,16.9406],[76.45178,16.92781],[76.45848,16.92791],[76.4649,16.91386],[76.46528,16.90273],[76.46275,16.90063],[76.43361,16.89762],[76.4346,16.88939],[76.43316,16.88181],[76.43665,16.88134],[76.43806,16.868],[76.45854,16.86691],[76.45845,16.86029],[76.46135,16.85938],[76.46197,16.84929],[76.46718,16.84972],[76.47066,16.84706],[76.47098,16.83879],[76.46348,16.83852],[76.45997,16.83304],[76.4295,16.83736],[76.42911,16.85075],[76.40404,16.85403],[76.40427,16.85853],[76.3949,16.85853],[76.38875,16.85632],[76.37428,16.85883],[76.36717,16.84897],[76.35883,16.84261],[76.3543,16.83255],[76.3524,16.81975],[76.38738,16.8173],[76.41373,16.81343],[76.41019,16.79884],[76.40083,16.80111],[76.39637,16.80592],[76.39142,16.80271],[76.37735,16.80169],[76.37721,16.79345],[76.37366,16.78459],[76.37092,16.76859],[76.38255,16.76961],[76.41157,16.76818],[76.41123,16.76483],[76.4183,16.7645],[76.41851,16.7689],[76.42641,16.76588],[76.43608,16.76454],[76.43703,16.76158],[76.44,16.76073],[76.44265,16.75755],[76.43844,16.75332],[76.44002,16.75096],[76.44041,16.74203],[76.42888,16.73785],[76.42889,16.73355],[76.42316,16.72957],[76.42263,16.71687],[76.44102,16.71368],[76.44394,16.71538],[76.44634,16.72268],[76.45086,16.72378],[76.4594,16.72329],[76.4608,16.71114],[76.47369,16.71052],[76.48133,16.71216],[76.5029,16.72298],[76.50212,16.73375],[76.50331,16.74117],[76.50641,16.74443],[76.51021,16.74476],[76.5164,16.75107],[76.54724,16.7479],[76.54844,16.75111],[76.55286,16.75121],[76.55355,16.75311],[76.56952,16.75341],[76.58047,16.75844],[76.58126,16.76553],[76.60095,16.76717],[76.62355,16.76553],[76.623,16.74249],[76.63547,16.7458],[76.63543,16.73507],[76.64404,16.73335],[76.65873,16.72508],[76.65779,16.73199],[76.65475,16.73769],[76.65271,16.75097],[76.65315,16.755],[76.66079,16.76701],[76.67554,16.76516],[76.67936,16.78472],[76.69761,16.78645],[76.69948,16.79064],[76.70206,16.78946],[76.70204,16.79298],[76.70448,16.79179],[76.70938,16.79249],[76.70923,16.78055],[76.7194,16.77793],[76.72475,16.78474],[76.72781,16.78077],[76.7349,16.77874],[76.73643,16.77354],[76.72904,16.77233],[76.72888,16.75388],[76.73483,16.75129],[76.74502,16.75164],[76.74755,16.75538],[76.74514,16.77886],[76.74471,16.81585],[76.74807,16.82027],[76.75462,16.82035],[76.75426,16.82337],[76.75806,16.82896],[76.75867,16.83576],[76.7634,16.84054],[76.75999,16.84141],[76.75993,16.84413],[76.78891,16.83729],[76.79106,16.84998],[76.80198,16.84918],[76.80479,16.85026],[76.81071,16.85618],[76.81122,16.85867],[76.81315,16.85855],[76.81638,16.8737],[76.82883,16.87302],[76.83098,16.86912],[76.83387,16.86768],[76.83813,16.86856],[76.84132,16.86645],[76.84316,16.87055],[76.84949,16.87649],[76.85293,16.87672],[76.85458,16.87883],[76.85683,16.8912],[76.87021,16.89261],[76.8705,16.89588],[76.89306,16.89503],[76.90146,16.89256],[76.90152,16.8782],[76.90677,16.87723],[76.90627,16.87591],[76.91347,16.87543],[76.9157,16.8718],[76.92063,16.87001],[76.91438,16.86071],[76.90558,16.85857],[76.90167,16.85468],[76.90372,16.83038],[76.90674,16.82194],[76.91073,16.81659],[76.91543,16.81595],[76.91953,16.81788],[76.92248,16.82654],[76.92669,16.83045],[76.94437,16.83107],[76.9512,16.82768],[76.95748,16.8217],[76.98268,16.8096],[76.99062,16.81222],[76.99286,16.83299],[76.99406,16.83308],[76.99515,16.83731],[76.98323,16.83988],[76.97838,16.85462],[76.97987,16.86143],[77.00078,16.85978],[77.00696,16.85785],[77.01969,16.86744],[77.03028,16.86761],[77.03022,16.86909],[77.04139,16.86997],[77.04277,16.88073],[77.04094,16.88073],[77.04024,16.88319],[77.03388,16.88381],[77.03385,16.89333],[77.02799,16.89355],[77.02782,16.89505],[77.0176,16.89862],[77.02001,16.91578],[77.01953,16.92744],[77.02345,16.92484],[77.03087,16.92524],[77.0411,16.92303],[77.04446,16.92618],[77.04672,16.93236],[77.05233,16.93788],[77.05693,16.93936],[77.05836,16.94658],[77.06067,16.94443],[77.06289,16.94536],[77.06567,16.94933],[77.06385,16.95399],[77.07258,16.95272],[77.0707,16.94318],[77.07144,16.93969],[77.07358,16.93981],[77.07581,16.9427],[77.0789,16.94193],[77.0839,16.93621],[77.08614,16.93683],[77.08517,16.93492],[77.0886,16.92924],[77.08714,16.92629],[77.08874,16.91838],[77.09307,16.90659],[77.09471,16.90621],[77.11059,16.90568],[77.11836,16.90994],[77.11915,16.91254],[77.12557,16.91795],[77.13834,16.91495],[77.16021,16.91557],[77.16152,16.9308],[77.16564,16.93892],[77.18402,16.94245],[77.19608,16.92675],[77.19924,16.93051],[77.19938,16.93379],[77.20479,16.93804],[77.20847,16.93764],[77.20813,16.94041],[77.21137,16.94492],[77.22649,16.94142],[77.23164,16.94282],[77.23267,16.93905],[77.24192,16.9431],[77.24484,16.94037],[77.2462,16.9329],[77.25504,16.9323],[77.26302,16.92825],[77.27385,16.93027],[77.27776,16.93263],[77.28906,16.93351],[77.28948,16.93723],[77.29497,16.9324],[77.31075,16.92911],[77.31137,16.92741],[77.31282,16.93061],[77.31706,16.93218],[77.31867,16.93644],[77.33601,16.92986],[77.33962,16.93057],[77.34172,16.93418],[77.34836,16.91201],[77.35083,16.91057],[77.35162,16.908],[77.35509,16.90862],[77.36065,16.90528],[77.36578,16.90459],[77.37139,16.89766],[77.3729,16.89914],[77.37666,16.89792],[77.37655,16.8946],[77.38211,16.8958],[77.38404,16.89413],[77.38466,16.89848],[77.38906,16.89638],[77.38796,16.89223],[77.38943,16.89117],[77.3917,16.8969],[77.39394,16.89743],[77.3936,16.89981],[77.39575,16.90332],[77.40187,16.90306],[77.40086,16.90224],[77.40264,16.8998],[77.40514,16.89972],[77.40408,16.90204],[77.40646,16.90188],[77.4056,16.89881],[77.40178,16.89669],[77.40143,16.8832],[77.40327,16.88415],[77.41112,16.87469],[77.42504,16.88513],[77.45589,16.88534],[77.45834,16.89409],[77.45646,16.89992],[77.45791,16.90951],[77.4547,16.91037],[77.45402,16.9139],[77.45842,16.91491],[77.4592,16.91731],[77.46652,16.91511],[77.46944,16.9192],[77.46941,16.92806],[77.4642,16.92985],[77.46829,16.93959],[77.46484,16.94418],[77.46721,16.94985],[77.46523,16.95661],[77.46595,16.95893],[77.47215,16.95714],[77.4783,16.96837],[77.48134,16.97043],[77.48289,16.98565],[77.47952,16.99602],[77.48656,17.00321],[77.49187,17.00366],[77.49783,17.00933],[77.5022,17.00937],[77.50253,17.0141],[77.50062,17.01929],[77.49495,17.02709],[77.49665,17.04272],[77.48787,17.04762],[77.48766,17.04953],[77.48984,17.05054],[77.48345,17.05891],[77.47898,17.07263],[77.48194,17.07585],[77.48098,17.07923],[77.47656,17.07943],[77.46725,17.08633],[77.46285,17.09408],[77.46469,17.10776],[77.46362,17.11],[77.45919,17.1091],[77.45563,17.11145],[77.45428,17.11485],[77.44955,17.11502],[77.4458,17.11796],[77.43849,17.11685],[77.436,17.11498],[77.40666,17.12451],[77.40382,17.13292],[77.38454,17.14003],[77.37792,17.13994],[77.37817,17.15266],[77.3669,17.15441],[77.36682,17.15898],[77.36372,17.15878],[77.36261,17.16448],[77.36677,17.1693],[77.3662,17.17221],[77.37001,17.17579],[77.3719,17.18113],[77.36946,17.18632],[77.37335,17.19087],[77.37396,17.19455],[77.37227,17.19556],[77.38174,17.19765],[77.39389,17.1944],[77.39641,17.20753],[77.39839,17.21031],[77.40375,17.20989],[77.40198,17.21412],[77.38876,17.21532],[77.38296,17.21798],[77.38019,17.22253],[77.40495,17.23653],[77.40827,17.24121],[77.41039,17.24041],[77.41145,17.23767],[77.42042,17.23762],[77.42254,17.25076],[77.42633,17.25646],[77.43578,17.26018],[77.444,17.27055],[77.45081,17.27053],[77.45356,17.2761],[77.45854,17.279],[77.45488,17.28724],[77.43793,17.29192],[77.44051,17.3013],[77.44298,17.30122],[77.4456,17.30774],[77.44765,17.3075],[77.44884,17.30962],[77.45219,17.31755],[77.45245,17.32747],[77.45601,17.33124],[77.45706,17.34741],[77.45487,17.35178],[77.45168,17.35268],[77.45106,17.35938],[77.45361,17.37399],[77.4791,17.37072],[77.476,17.36841],[77.47653,17.36371],[77.47443,17.36151],[77.48382,17.355],[77.4882,17.35873],[77.50263,17.35707],[77.51148,17.36058],[77.51576,17.36038],[77.52482,17.3647],[77.5298,17.37071],[77.53315,17.3805],[77.52622,17.38193],[77.52429,17.388],[77.53723,17.40225],[77.53784,17.40609],[77.53607,17.40798],[77.52983,17.40818],[77.51417,17.41418],[77.513,17.43087],[77.5373,17.44375],[77.55269,17.43705],[77.56151,17.43761],[77.57586,17.43071],[77.57619,17.45617],[77.58424,17.4545],[77.60292,17.44415],[77.61427,17.44595],[77.613,17.46683],[77.61523,17.47289],[77.63824,17.47352],[77.64051,17.47646],[77.64479,17.47757],[77.64766,17.48717],[77.64788,17.49608],[77.65713,17.50658],[77.65333,17.49389],[77.65232,17.48273],[77.65544,17.48308],[77.65736,17.48092],[77.67053,17.47789],[77.67663,17.47838],[77.6884,17.4752],[77.68963,17.48281],[77.68801,17.48943],[77.69252,17.49893],[77.6888,17.51094],[77.68772,17.51182],[77.68342,17.50818],[77.67749,17.50998],[77.67545,17.50862],[77.66864,17.51161],[77.66654,17.51713],[77.66201,17.52282],[77.64527,17.52238],[77.637,17.52571],[77.62796,17.52363],[77.62339,17.52563],[77.62097,17.5304],[77.61936,17.52887],[77.61206,17.53476],[77.60738,17.53225],[77.60301,17.53584],[77.5969,17.5343],[77.59558,17.54487],[77.59723,17.55373],[77.5938,17.56451],[77.58907,17.5647],[77.5881,17.56],[77.56737,17.55636],[77.56085,17.55257],[77.55424,17.55385],[77.55056,17.55173],[77.54512,17.56439],[77.53744,17.57544],[77.52838,17.57537],[77.51649,17.55915],[77.51544,17.55242],[77.5069,17.54228],[77.50003,17.54672],[77.50043,17.55619],[77.49618,17.55961],[77.49407,17.56836],[77.47805,17.5668],[77.47623,17.57061],[77.47082,17.57186],[77.46181,17.58075],[77.45858,17.57997],[77.45562,17.58233],[77.43055,17.58595],[77.40387,17.58512],[77.40115,17.58392],[77.39135,17.58616],[77.38446,17.58308],[77.37877,17.58388],[77.37922,17.595],[77.35961,17.60019],[77.35183,17.60006],[77.34039,17.5879],[77.32988,17.59195],[77.311,17.59468],[77.30029,17.59772],[77.29848,17.60362],[77.29956,17.60685],[77.29461,17.60897],[77.29509,17.61509],[77.29363,17.6155],[77.29149,17.61119],[77.28837,17.61455],[77.28508,17.61553],[77.28718,17.61759],[77.28476,17.61922],[77.28288,17.61979],[77.2821,17.61789],[77.27954,17.61756],[77.27676,17.62113],[77.27646,17.62568],[77.27436,17.62698],[77.25824,17.62332],[77.23759,17.6315],[77.23342,17.6303],[77.23009,17.63246],[77.22771,17.63028],[77.22196,17.63237],[77.21862,17.62913],[77.21561,17.63079],[77.21438,17.62928],[77.21033,17.62952],[77.20732,17.62675],[77.20083,17.63063],[77.20042,17.63225],[77.19751,17.63201],[77.19585,17.63121],[77.1942,17.61551],[77.18888,17.61538],[77.18754,17.61858],[77.18277,17.61813],[77.17853,17.62213],[77.17312,17.62408],[77.17129,17.62778],[77.15516,17.6289],[77.15322,17.6316],[77.14997,17.63241],[77.15151,17.63707],[77.15034,17.64257],[77.14824,17.6433],[77.14782,17.64584],[77.14368,17.64765],[77.14475,17.65572],[77.1365,17.65856],[77.13682,17.66213],[77.13271,17.66224],[77.13246,17.68245],[77.12829,17.68239],[77.12703,17.68645],[77.12388,17.68698],[77.11915,17.68552],[77.11667,17.68728],[77.1145,17.67797],[77.10628,17.67402],[77.10458,17.669],[77.08978,17.66773],[77.08941,17.66915],[77.08531,17.65902],[77.08137,17.66229],[77.07368,17.66156],[77.05814,17.67313],[77.0534,17.67114],[77.04631,17.67074],[77.04321,17.66737],[77.04092,17.67166],[77.03529,17.66937],[77.03477,17.67297],[77.03672,17.67505],[77.03398,17.67684],[77.03416,17.68064],[77.03149,17.68153],[77.01757,17.67786],[77.01765,17.67935],[77.01007,17.68462],[77.00865,17.68735],[77.00626,17.68771],[77.00056,17.696],[76.99089,17.696],[76.98967,17.69404],[76.98097,17.69154],[76.9771,17.67992],[76.97783,17.66492],[76.988,17.6619],[76.98713,17.65806],[76.98321,17.65581],[76.98238,17.65277],[76.97672,17.64816],[76.97139,17.64721],[76.96188,17.63962],[76.95699,17.63415],[76.95874,17.62719],[76.95808,17.62096],[76.95133,17.62438],[76.95038,17.6199],[76.94597,17.61699],[76.94039,17.60889],[76.92769,17.61188],[76.921,17.61073],[76.92191,17.61313],[76.91784,17.62356],[76.92519,17.62596],[76.92864,17.63234],[76.9289,17.63754],[76.9148,17.63921],[76.90781,17.63509],[76.90338,17.64149],[76.89882,17.64467],[76.88326,17.64292],[76.86401,17.64637],[76.85243,17.6446],[76.84185,17.65371],[76.83678,17.6494],[76.82312,17.65188],[76.80787,17.64901],[76.80733,17.65068],[76.80197,17.65018],[76.79291,17.65318],[76.78823,17.64796],[76.78873,17.64319],[76.78467,17.63914],[76.78444,17.63645],[76.77846,17.63597],[76.77191,17.64018],[76.77014,17.6463],[76.77375,17.65776],[76.77347,17.66677],[76.76351,17.66568],[76.74654,17.66678],[76.74183,17.66485],[76.73273,17.66563],[76.73183,17.65882],[76.72029,17.65386],[76.71435,17.63881],[76.70776,17.64006],[76.69875,17.64218],[76.69771,17.64516],[76.69912,17.64757],[76.71065,17.65429],[76.71235,17.65688],[76.71099,17.66126],[76.70784,17.66277],[76.69454,17.66184],[76.695,17.67729],[76.69097,17.68126],[76.68738,17.68005],[76.68436,17.68589],[76.67972,17.68635],[76.67261,17.69054],[76.66419,17.68756],[76.65932,17.7096],[76.65279,17.72213],[76.63326,17.72822],[76.6281,17.75065],[76.63188,17.75464],[76.62433,17.75939]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"539","area_level":"District","area_name":"Hassan","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.59353,12.94341],[75.58663,12.94202],[75.57222,12.93473],[75.57123,12.93029],[75.55674,12.9128],[75.55454,12.90638],[75.55706,12.9055],[75.55816,12.8978],[75.5612,12.89347],[75.55996,12.87834],[75.56433,12.87548],[75.56378,12.86634],[75.56632,12.86596],[75.56849,12.86837],[75.5777,12.87213],[75.58779,12.873],[75.5939,12.87582],[75.6028,12.87554],[75.60109,12.87021],[75.60226,12.86495],[75.61275,12.86061],[75.61668,12.85556],[75.62132,12.85531],[75.6222,12.84696],[75.61487,12.83201],[75.61589,12.82279],[75.61827,12.81763],[75.61442,12.79721],[75.62089,12.7942],[75.6228,12.79162],[75.6212,12.77887],[75.62461,12.78009],[75.62938,12.77903],[75.63682,12.77021],[75.64117,12.76998],[75.64081,12.76562],[75.6381,12.76116],[75.64431,12.75881],[75.65513,12.74929],[75.65744,12.75204],[75.65609,12.74844],[75.65827,12.74282],[75.65242,12.72988],[75.65203,12.72046],[75.65056,12.71794],[75.63753,12.71326],[75.63333,12.70748],[75.62606,12.70514],[75.62934,12.70322],[75.63352,12.69],[75.63506,12.69402],[75.63787,12.69531],[75.64396,12.694],[75.65647,12.69704],[75.66804,12.69726],[75.67549,12.70052],[75.69512,12.70253],[75.7067,12.70717],[75.71154,12.70539],[75.71292,12.70769],[75.71464,12.70474],[75.71754,12.70454],[75.71732,12.70128],[75.72135,12.69627],[75.73131,12.69786],[75.74556,12.67966],[75.76076,12.67406],[75.76838,12.68166],[75.77307,12.67937],[75.77436,12.68499],[75.77721,12.6888],[75.77999,12.68731],[75.7842,12.68936],[75.79163,12.68839],[75.80769,12.7017],[75.81908,12.6912],[75.82079,12.68598],[75.83293,12.67151],[75.84246,12.66928],[75.84421,12.67193],[75.84701,12.67278],[75.85253,12.66931],[75.86233,12.67162],[75.86727,12.67482],[75.87791,12.67175],[75.88675,12.67655],[75.88753,12.67871],[75.88708,12.68852],[75.88984,12.69202],[75.88465,12.70082],[75.88656,12.70501],[75.88512,12.70459],[75.88534,12.7077],[75.88397,12.7082],[75.87725,12.70769],[75.87249,12.70909],[75.86989,12.71533],[75.86239,12.71757],[75.85491,12.72352],[75.85172,12.73013],[75.85522,12.73651],[75.854,12.74537],[75.84945,12.74982],[75.85238,12.75356],[75.86002,12.75718],[75.85823,12.76184],[75.85828,12.76964],[75.86498,12.76858],[75.8722,12.77056],[75.87485,12.76984],[75.87543,12.77128],[75.87293,12.77285],[75.87308,12.77434],[75.87824,12.77669],[75.87328,12.77725],[75.86393,12.79644],[75.86598,12.80275],[75.86399,12.80559],[75.865,12.81071],[75.86377,12.81865],[75.86944,12.82256],[75.87679,12.82358],[75.87752,12.82644],[75.87561,12.82884],[75.87574,12.83159],[75.87952,12.83418],[75.8948,12.82817],[75.90007,12.82779],[75.90334,12.81914],[75.91126,12.81523],[75.91844,12.81963],[75.91712,12.82648],[75.91982,12.82826],[75.92777,12.8217],[75.92503,12.81419],[75.93016,12.80791],[75.94623,12.80793],[75.94847,12.8053],[75.94938,12.80048],[75.96506,12.80515],[75.96913,12.80498],[75.96694,12.79773],[75.97077,12.78395],[75.96643,12.7818],[75.9578,12.78198],[75.95514,12.77591],[75.95462,12.76858],[75.94719,12.76533],[75.94072,12.76756],[75.9358,12.76743],[75.93298,12.764],[75.9376,12.74937],[75.93452,12.73374],[75.9396,12.72662],[75.94191,12.72019],[75.94474,12.7179],[75.9498,12.71738],[75.96524,12.71095],[75.96251,12.70617],[75.96455,12.70125],[75.95871,12.68994],[75.95963,12.68326],[75.95415,12.67674],[75.94573,12.67816],[75.93991,12.67641],[75.94165,12.67118],[75.94662,12.66774],[75.94792,12.66394],[75.94456,12.66203],[75.93891,12.65298],[75.9378,12.64355],[75.94028,12.64289],[75.94351,12.63649],[75.93561,12.63002],[75.93914,12.62848],[75.94466,12.62948],[75.94961,12.62476],[75.94697,12.61419],[75.94161,12.61198],[75.93951,12.60868],[75.94096,12.60429],[75.94863,12.59568],[75.95549,12.57541],[75.96261,12.56118],[75.96978,12.56087],[75.97547,12.56347],[75.96876,12.57667],[75.97393,12.57652],[75.98184,12.57334],[75.98852,12.5741],[75.98768,12.58129],[75.99168,12.58541],[75.99008,12.58817],[75.99221,12.58875],[75.99454,12.58877],[75.99722,12.58066],[75.99909,12.58053],[76.0025,12.57525],[76.00991,12.5715],[76.01231,12.57315],[76.01393,12.5695],[76.01906,12.57159],[76.02173,12.57687],[76.02967,12.57512],[76.03148,12.57633],[76.03363,12.57573],[76.03422,12.57345],[76.04556,12.57696],[76.04939,12.56337],[76.0487,12.55951],[76.05207,12.5542],[76.06754,12.55727],[76.07058,12.55585],[76.07105,12.54922],[76.07448,12.55007],[76.07492,12.54802],[76.08549,12.54372],[76.0871,12.54613],[76.08961,12.54419],[76.09065,12.54564],[76.09095,12.54282],[76.08844,12.54206],[76.08616,12.5388],[76.08858,12.53833],[76.09025,12.53538],[76.0924,12.53562],[76.09314,12.53335],[76.09726,12.53256],[76.09941,12.52807],[76.10325,12.52908],[76.10161,12.52585],[76.10317,12.52191],[76.10456,12.52235],[76.10607,12.51734],[76.11002,12.51799],[76.11189,12.51244],[76.11532,12.51282],[76.11532,12.5166],[76.11891,12.51876],[76.11418,12.52695],[76.11685,12.52884],[76.13335,12.52874],[76.13442,12.53698],[76.13863,12.53824],[76.14089,12.53662],[76.14261,12.54522],[76.15132,12.54715],[76.14968,12.54927],[76.15319,12.55737],[76.15773,12.56279],[76.15242,12.56592],[76.14807,12.56622],[76.14927,12.57463],[76.15237,12.57957],[76.15908,12.57862],[76.16853,12.58043],[76.18207,12.57495],[76.1837,12.57736],[76.1965,12.5773],[76.19213,12.58746],[76.19199,12.59411],[76.20058,12.60539],[76.20098,12.6103],[76.20544,12.61688],[76.21229,12.61663],[76.21543,12.62166],[76.21591,12.6248],[76.21345,12.62791],[76.20573,12.62896],[76.20936,12.63678],[76.21913,12.64427],[76.2319,12.64354],[76.23976,12.63804],[76.24569,12.63695],[76.24674,12.63591],[76.24578,12.62593],[76.25333,12.62376],[76.25455,12.62028],[76.25667,12.62042],[76.25747,12.62219],[76.26493,12.61929],[76.26733,12.6232],[76.26542,12.62885],[76.27982,12.63371],[76.27956,12.63114],[76.28214,12.62978],[76.27929,12.62543],[76.28027,12.61665],[76.28642,12.61553],[76.29059,12.61656],[76.29255,12.62629],[76.30034,12.62915],[76.30147,12.62193],[76.30426,12.62184],[76.30517,12.62508],[76.30977,12.62247],[76.30632,12.61039],[76.32128,12.61219],[76.32769,12.61138],[76.32842,12.62665],[76.32349,12.63506],[76.33242,12.64467],[76.3381,12.64645],[76.33809,12.65322],[76.34198,12.65568],[76.34191,12.65935],[76.34749,12.66795],[76.35288,12.66796],[76.35374,12.68521],[76.36003,12.68687],[76.35919,12.69222],[76.36183,12.69301],[76.36278,12.70131],[76.36152,12.71183],[76.35493,12.71088],[76.35024,12.71342],[76.34597,12.71932],[76.34375,12.72869],[76.34131,12.73204],[76.34567,12.73754],[76.34408,12.7423],[76.34812,12.74445],[76.35123,12.74254],[76.35528,12.74384],[76.35709,12.75003],[76.35284,12.75123],[76.34288,12.76053],[76.34268,12.76607],[76.34828,12.76931],[76.34993,12.77197],[76.34765,12.77923],[76.3496,12.78558],[76.34833,12.78689],[76.33847,12.78595],[76.33441,12.78768],[76.32963,12.80276],[76.33182,12.81195],[76.34379,12.81176],[76.34901,12.80929],[76.36829,12.80904],[76.37082,12.81427],[76.36696,12.8243],[76.36945,12.82864],[76.37479,12.83153],[76.37745,12.82808],[76.38288,12.83111],[76.38771,12.84146],[76.38549,12.84351],[76.38617,12.84512],[76.39053,12.8445],[76.39694,12.8475],[76.40238,12.84571],[76.40414,12.8466],[76.40853,12.84402],[76.4072,12.865],[76.41357,12.86443],[76.41564,12.86329],[76.41764,12.8582],[76.42532,12.85792],[76.42655,12.85037],[76.42516,12.8454],[76.42127,12.84532],[76.42014,12.84171],[76.42532,12.82498],[76.44593,12.82333],[76.44608,12.81889],[76.44742,12.81893],[76.45088,12.81186],[76.45673,12.80836],[76.45798,12.80447],[76.46246,12.80296],[76.46429,12.80602],[76.46951,12.8024],[76.46907,12.79969],[76.47139,12.79873],[76.47129,12.79743],[76.46933,12.79727],[76.46832,12.7935],[76.46592,12.79327],[76.46175,12.78919],[76.45757,12.78884],[76.45504,12.78102],[76.4585,12.77736],[76.46527,12.77687],[76.46981,12.77297],[76.47479,12.77169],[76.47812,12.7728],[76.47817,12.78063],[76.48961,12.78576],[76.49164,12.77969],[76.49012,12.77306],[76.49285,12.76723],[76.4994,12.77231],[76.49978,12.7803],[76.49437,12.78267],[76.49059,12.78857],[76.49436,12.8027],[76.49389,12.80547],[76.49011,12.80643],[76.49307,12.8116],[76.5029,12.82195],[76.51002,12.82216],[76.51828,12.82634],[76.51749,12.83376],[76.52053,12.84136],[76.52953,12.84109],[76.53552,12.84425],[76.54663,12.84018],[76.55407,12.84533],[76.57229,12.84488],[76.57772,12.84693],[76.57719,12.86105],[76.5752,12.86592],[76.57999,12.87152],[76.57911,12.87314],[76.5832,12.87299],[76.59649,12.88094],[76.59104,12.89085],[76.59955,12.90467],[76.59653,12.92115],[76.59924,12.92364],[76.60314,12.92295],[76.606,12.93858],[76.61621,12.93711],[76.61803,12.94556],[76.61745,12.95509],[76.61198,12.95891],[76.61182,12.96529],[76.62135,12.96549],[76.62925,12.97279],[76.63142,12.9727],[76.63119,12.98157],[76.63357,12.98126],[76.63376,12.984],[76.63228,12.99336],[76.62983,12.99429],[76.63224,13.00417],[76.61915,13.00879],[76.61294,13.0058],[76.60617,13.01282],[76.60423,13.01718],[76.60888,13.03105],[76.6073,13.03359],[76.60811,13.03764],[76.60207,13.04017],[76.60534,13.05321],[76.60599,13.05481],[76.6198,13.05404],[76.61786,13.06379],[76.6075,13.07108],[76.59932,13.07428],[76.59238,13.07485],[76.58572,13.07039],[76.56656,13.07561],[76.53607,13.07718],[76.52766,13.07895],[76.52282,13.07879],[76.5219,13.07351],[76.51582,13.06877],[76.51376,13.06947],[76.50802,13.07639],[76.49571,13.08668],[76.49472,13.0946],[76.49059,13.09482],[76.48082,13.09135],[76.47216,13.09319],[76.47277,13.0965],[76.46856,13.12021],[76.46954,13.1399],[76.47316,13.14986],[76.45505,13.1499],[76.45423,13.15552],[76.45149,13.15551],[76.45134,13.15926],[76.44512,13.16463],[76.44495,13.16978],[76.42887,13.17304],[76.42557,13.18341],[76.4147,13.18713],[76.4124,13.19182],[76.4056,13.1927],[76.39435,13.19055],[76.39376,13.19788],[76.37077,13.20037],[76.3699,13.21221],[76.3764,13.21581],[76.38004,13.22255],[76.37989,13.23154],[76.36454,13.23399],[76.364,13.2436],[76.36197,13.24904],[76.3562,13.24913],[76.35867,13.26062],[76.35524,13.26427],[76.35731,13.27558],[76.35696,13.28727],[76.34983,13.29445],[76.34761,13.30122],[76.34888,13.31707],[76.35225,13.33052],[76.34775,13.33933],[76.34659,13.35817],[76.34717,13.36013],[76.35972,13.36321],[76.38143,13.36414],[76.38342,13.36739],[76.38196,13.36889],[76.38267,13.37235],[76.38576,13.37086],[76.39226,13.37943],[76.3922,13.3882],[76.38944,13.3961],[76.39694,13.40224],[76.39621,13.40657],[76.40001,13.42117],[76.40446,13.42637],[76.40442,13.42959],[76.41969,13.44841],[76.40705,13.4592],[76.41179,13.47727],[76.41517,13.47884],[76.40819,13.4829],[76.40523,13.49065],[76.40032,13.49073],[76.39598,13.49345],[76.39506,13.49568],[76.39654,13.50388],[76.39764,13.50596],[76.40867,13.50537],[76.41012,13.50774],[76.41521,13.50904],[76.41987,13.51985],[76.42727,13.52563],[76.40053,13.52637],[76.39776,13.52841],[76.39564,13.53599],[76.38771,13.5342],[76.37658,13.5415],[76.37017,13.54794],[76.36387,13.54713],[76.36268,13.53051],[76.3532,13.52729],[76.35317,13.52584],[76.34845,13.52553],[76.3483,13.51718],[76.34573,13.51385],[76.34235,13.51373],[76.32973,13.52215],[76.32315,13.53051],[76.32146,13.5373],[76.31825,13.53661],[76.31745,13.53978],[76.31595,13.53974],[76.31555,13.53167],[76.31126,13.52994],[76.31204,13.52542],[76.30664,13.52598],[76.30594,13.52417],[76.30333,13.52459],[76.29999,13.52206],[76.29577,13.52439],[76.29544,13.52705],[76.29316,13.52714],[76.28986,13.50484],[76.26206,13.50521],[76.26008,13.51142],[76.23389,13.50751],[76.2343,13.50171],[76.23831,13.4948],[76.23701,13.49088],[76.23098,13.48732],[76.22915,13.48403],[76.23408,13.48344],[76.23113,13.46789],[76.20863,13.4666],[76.19798,13.46891],[76.19986,13.46055],[76.19967,13.45034],[76.19327,13.45049],[76.18727,13.45265],[76.1923,13.4611],[76.19341,13.46891],[76.18812,13.4703],[76.16219,13.4697],[76.15783,13.45998],[76.15175,13.45727],[76.14697,13.44807],[76.13723,13.44228],[76.14068,13.43706],[76.13867,13.42724],[76.14073,13.42037],[76.13931,13.41893],[76.13871,13.41276],[76.14024,13.4093],[76.13945,13.4066],[76.12938,13.40391],[76.12885,13.40036],[76.11984,13.40158],[76.11123,13.40062],[76.1105,13.39587],[76.09962,13.3925],[76.08994,13.39368],[76.08705,13.37847],[76.08889,13.37151],[76.082,13.37154],[76.07901,13.37395],[76.05585,13.38085],[76.04162,13.37436],[76.03761,13.36691],[76.03723,13.35925],[76.03452,13.35144],[76.03189,13.34578],[76.02876,13.34564],[76.03474,13.33653],[76.0327,13.33615],[76.03322,13.33235],[76.02848,13.33301],[76.02696,13.32694],[76.02695,13.32134],[76.02981,13.32405],[76.0322,13.32086],[76.03706,13.32044],[76.04292,13.32375],[76.0416,13.31927],[76.03853,13.32006],[76.03718,13.31859],[76.03893,13.31721],[76.03993,13.30978],[76.03704,13.30937],[76.03848,13.30587],[76.03594,13.30472],[76.03686,13.30345],[76.03532,13.30048],[76.03731,13.29994],[76.03714,13.2949],[76.03932,13.29269],[76.03995,13.28409],[76.03817,13.28007],[76.04244,13.28],[76.04432,13.27502],[76.04167,13.27035],[76.04178,13.26624],[76.03898,13.26608],[76.04037,13.2635],[76.03834,13.26014],[76.03838,13.25092],[76.03641,13.24856],[76.01635,13.25088],[76.01799,13.25641],[76.01485,13.26122],[75.99008,13.25813],[75.98795,13.25957],[75.98817,13.26264],[75.98557,13.26232],[75.98537,13.26461],[75.98391,13.26457],[75.97209,13.26087],[75.95591,13.26109],[75.93989,13.2586],[75.93607,13.25616],[75.9184,13.25737],[75.9161,13.26306],[75.90339,13.2579],[75.89939,13.26631],[75.89254,13.26481],[75.88407,13.26049],[75.87676,13.2603],[75.87501,13.25272],[75.87168,13.248],[75.86154,13.24002],[75.86318,13.24259],[75.86,13.24372],[75.86003,13.25316],[75.85675,13.25307],[75.85467,13.2551],[75.85762,13.25588],[75.85731,13.2583],[75.85111,13.25806],[75.84257,13.25434],[75.84261,13.25226],[75.83892,13.25191],[75.83564,13.25199],[75.83563,13.25393],[75.82452,13.25301],[75.81817,13.25894],[75.81602,13.25891],[75.80879,13.25449],[75.80761,13.24698],[75.81006,13.24258],[75.81248,13.23075],[75.81004,13.23094],[75.81022,13.22029],[75.8057,13.21592],[75.79882,13.21648],[75.79663,13.2147],[75.78951,13.21466],[75.77897,13.20994],[75.77582,13.21611],[75.77425,13.21591],[75.77394,13.21351],[75.76603,13.21213],[75.76234,13.21456],[75.76159,13.21698],[75.75835,13.21742],[75.7536,13.21353],[75.75063,13.20642],[75.74321,13.20779],[75.7368,13.19778],[75.73243,13.18608],[75.72874,13.18316],[75.73019,13.16439],[75.73216,13.16118],[75.73461,13.16037],[75.73453,13.15532],[75.7408,13.14914],[75.74492,13.15069],[75.75184,13.14566],[75.75046,13.14306],[75.7537,13.13604],[75.74646,13.1282],[75.73533,13.12349],[75.73676,13.1156],[75.7387,13.11421],[75.73832,13.11011],[75.7351,13.11015],[75.72828,13.10561],[75.72707,13.09939],[75.72794,13.09531],[75.73396,13.09127],[75.7425,13.06944],[75.74044,13.06105],[75.74246,13.05672],[75.74033,13.04748],[75.74167,13.04164],[75.74016,13.04112],[75.74022,13.02999],[75.7279,13.02346],[75.72368,13.02756],[75.72476,13.03144],[75.71653,13.03094],[75.7104,13.03817],[75.70512,13.03576],[75.69644,13.03682],[75.69467,13.04603],[75.69067,13.0443],[75.69033,13.04074],[75.68843,13.03931],[75.68887,13.03529],[75.69056,13.03367],[75.68807,13.03296],[75.68418,13.03579],[75.6836,13.03205],[75.68127,13.03069],[75.67922,13.03192],[75.67113,13.0298],[75.66492,13.03185],[75.66145,13.02635],[75.65676,13.02513],[75.65563,13.0225],[75.65456,13.02937],[75.64834,13.02917],[75.64605,13.03241],[75.64267,13.03132],[75.64302,13.02727],[75.63995,13.02466],[75.64034,13.0187],[75.63838,13.0179],[75.63758,13.01119],[75.63141,13.01164],[75.62552,13.00418],[75.61956,12.99102],[75.60884,12.98113],[75.60908,12.97797],[75.60412,12.97349],[75.60183,12.96512],[75.60292,12.9584],[75.59544,12.94377],[75.59353,12.94341]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"54","area_level":"District","area_name":"Rudraprayag","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.11264,30.77245],[79.09185,30.77584],[79.08045,30.78593],[79.07566,30.78813],[79.06777,30.79818],[79.0553,30.80079],[79.04455,30.80633],[79.0372,30.80721],[79.03331,30.80228],[79.02587,30.79769],[79.02856,30.79614],[79.02988,30.79194],[79.02462,30.78376],[79.02354,30.77932],[79.02835,30.7675],[79.02087,30.76298],[79.02096,30.75634],[79.01825,30.74972],[79.00025,30.74894],[79.00302,30.74383],[78.99893,30.74353],[78.99498,30.73758],[78.99519,30.7339],[78.99203,30.73166],[78.97925,30.73356],[78.97133,30.72997],[78.96023,30.73481],[78.9519,30.73216],[78.94753,30.72337],[78.94318,30.72071],[78.92968,30.71919],[78.92508,30.71597],[78.91666,30.70109],[78.91623,30.69502],[78.91075,30.69053],[78.91205,30.68782],[78.91211,30.67618],[78.90883,30.66801],[78.90981,30.66314],[78.90529,30.65424],[78.90817,30.64031],[78.90744,30.63362],[78.90932,30.62949],[78.90338,30.62217],[78.90262,30.61606],[78.89629,30.61284],[78.88627,30.60351],[78.89054,30.5957],[78.88922,30.58594],[78.88615,30.58296],[78.87829,30.58133],[78.87313,30.57821],[78.86928,30.57162],[78.86286,30.56677],[78.86588,30.56116],[78.863,30.55444],[78.85835,30.55045],[78.86039,30.54367],[78.86259,30.54191],[78.86218,30.52939],[78.86778,30.51849],[78.86638,30.51682],[78.86822,30.51466],[78.8664,30.50909],[78.85678,30.49641],[78.84997,30.4909],[78.84525,30.48968],[78.83762,30.49087],[78.83267,30.4844],[78.82572,30.48305],[78.82418,30.48008],[78.82381,30.47845],[78.83408,30.47528],[78.8372,30.47088],[78.84131,30.469],[78.84163,30.46573],[78.84684,30.46263],[78.85056,30.45621],[78.84337,30.45005],[78.8474,30.44806],[78.84894,30.44465],[78.84407,30.42997],[78.83723,30.42508],[78.83303,30.41718],[78.82872,30.41496],[78.82562,30.41572],[78.82393,30.4137],[78.82571,30.41245],[78.82397,30.40803],[78.81685,30.40083],[78.82574,30.39468],[78.83515,30.39159],[78.83411,30.384],[78.8388,30.37666],[78.83801,30.3599],[78.83516,30.3574],[78.84017,30.35515],[78.84546,30.35587],[78.85821,30.34692],[78.85493,30.33281],[78.86378,30.32818],[78.86886,30.32192],[78.85781,30.31359],[78.86102,30.30812],[78.85831,30.30431],[78.85841,30.302],[78.87283,30.28485],[78.87162,30.28167],[78.87348,30.27556],[78.8832,30.2713],[78.89345,30.27268],[78.89472,30.27106],[78.90953,30.26995],[78.92037,30.26457],[78.9197,30.26065],[78.91106,30.25691],[78.91069,30.25131],[78.90681,30.24602],[78.90113,30.24255],[78.89925,30.24466],[78.89082,30.23581],[78.90738,30.23498],[78.91499,30.23011],[78.9148,30.22666],[78.91043,30.22242],[78.91318,30.21702],[78.91303,30.21488],[78.91053,30.2128],[78.9155,30.21001],[78.91481,30.20408],[78.90955,30.20244],[78.90737,30.20888],[78.90229,30.20948],[78.90343,30.20175],[78.90137,30.19008],[78.89835,30.18279],[78.89886,30.17997],[78.91415,30.18046],[78.91938,30.18211],[78.92927,30.18143],[78.93826,30.17674],[78.94773,30.17754],[78.95542,30.17471],[78.96607,30.17826],[78.97213,30.17762],[78.97708,30.18004],[78.99407,30.17884],[78.9977,30.17997],[79.00113,30.18404],[79.00623,30.18256],[79.01032,30.18552],[79.0196,30.18478],[79.02915,30.19158],[79.02933,30.20656],[79.03869,30.21629],[79.04226,30.21705],[79.04742,30.2137],[79.05484,30.21646],[79.06173,30.2149],[79.06871,30.21769],[79.07041,30.22002],[79.07599,30.22046],[79.07732,30.22574],[79.08347,30.23042],[79.08836,30.2399],[79.09644,30.24671],[79.09775,30.25166],[79.10353,30.25588],[79.10789,30.26983],[79.10188,30.27682],[79.10194,30.27886],[79.10684,30.28497],[79.10676,30.28882],[79.11227,30.29032],[79.11393,30.29253],[79.12028,30.29337],[79.12216,30.28974],[79.13728,30.28523],[79.14177,30.28691],[79.14456,30.29226],[79.15364,30.2965],[79.15627,30.29636],[79.16004,30.29311],[79.17054,30.29533],[79.16672,30.29735],[79.1469,30.2984],[79.14586,30.29924],[79.1469,30.30065],[79.14438,30.30083],[79.14553,30.31014],[79.14836,30.31332],[79.14881,30.3225],[79.15391,30.32477],[79.15431,30.32189],[79.15763,30.32301],[79.1598,30.32499],[79.1593,30.32813],[79.15458,30.33274],[79.15096,30.33138],[79.1509,30.33512],[79.145,30.33642],[79.14437,30.33919],[79.1414,30.33793],[79.1422,30.33954],[79.14032,30.33996],[79.14127,30.34153],[79.13757,30.34226],[79.13887,30.34667],[79.13173,30.35045],[79.13207,30.35439],[79.12909,30.35807],[79.1293,30.36459],[79.11336,30.37049],[79.11245,30.37247],[79.1078,30.37465],[79.11043,30.38118],[79.11224,30.38311],[79.11906,30.38458],[79.12685,30.38159],[79.13932,30.37909],[79.14326,30.38067],[79.14923,30.37816],[79.15657,30.38276],[79.16163,30.38307],[79.16528,30.38793],[79.16556,30.39756],[79.16376,30.40203],[79.16456,30.4105],[79.17254,30.41513],[79.17441,30.4284],[79.17424,30.43074],[79.16572,30.44009],[79.16657,30.44623],[79.17406,30.44915],[79.17968,30.45942],[79.18622,30.46247],[79.187,30.47068],[79.19159,30.47693],[79.20716,30.48573],[79.21839,30.48798],[79.2218,30.49037],[79.22646,30.49912],[79.2248,30.50383],[79.22671,30.50529],[79.22549,30.50961],[79.22821,30.51604],[79.22655,30.52186],[79.2289,30.52701],[79.24545,30.53776],[79.24145,30.5484],[79.24656,30.55289],[79.24561,30.55892],[79.2542,30.56317],[79.25648,30.5663],[79.26533,30.56673],[79.27042,30.56627],[79.27501,30.56364],[79.28364,30.56395],[79.29528,30.56094],[79.30029,30.56688],[79.30392,30.57521],[79.30402,30.58008],[79.3075,30.58511],[79.30683,30.58921],[79.32167,30.59466],[79.33231,30.59333],[79.33761,30.59583],[79.34152,30.60535],[79.34752,30.60837],[79.34805,30.6107],[79.34636,30.61352],[79.34794,30.6236],[79.35412,30.62536],[79.35602,30.6319],[79.35292,30.64735],[79.34476,30.65456],[79.3315,30.65784],[79.32752,30.66682],[79.32371,30.66993],[79.31089,30.67218],[79.30373,30.6783],[79.30568,30.68139],[79.3045,30.68934],[79.29974,30.69505],[79.30058,30.7067],[79.29805,30.71317],[79.29799,30.71808],[79.29614,30.72016],[79.26996,30.72475],[79.26288,30.72218],[79.25584,30.72276],[79.25338,30.72783],[79.24472,30.73443],[79.24167,30.73267],[79.23559,30.7329],[79.2219,30.73627],[79.20771,30.7376],[79.19947,30.73295],[79.19733,30.73999],[79.19233,30.74189],[79.18305,30.75011],[79.17436,30.75199],[79.1691,30.75581],[79.16144,30.75619],[79.1579,30.75362],[79.14907,30.75168],[79.14286,30.74746],[79.1323,30.7557],[79.12854,30.76839],[79.1175,30.77298],[79.11264,30.77245]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"540","area_level":"District","area_name":"Haveri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.14204,15.1586],[75.14057,15.15927],[75.14098,15.16141],[75.13668,15.16074],[75.13705,15.15781],[75.13477,15.15683],[75.13427,15.14871],[75.13176,15.14479],[75.12565,15.14502],[75.12166,15.14028],[75.11689,15.14084],[75.10935,15.13881],[75.10422,15.14127],[75.10362,15.1403],[75.10665,15.13842],[75.10446,15.13382],[75.10528,15.13039],[75.1084,15.12997],[75.11144,15.12635],[75.11418,15.12099],[75.11347,15.11716],[75.09528,15.11393],[75.09529,15.1102],[75.07744,15.11032],[75.07974,15.10425],[75.08102,15.08759],[75.0825,15.0854],[75.08204,15.07461],[75.07409,15.05241],[75.0739,15.04092],[75.07714,15.03725],[75.06927,15.01517],[75.07617,14.97381],[75.08134,14.96915],[75.08383,14.95643],[75.09892,14.95633],[75.09447,14.95133],[75.09802,14.94717],[75.0973,14.94274],[75.10292,14.93424],[75.10119,14.93162],[75.10126,14.92684],[75.08225,14.92594],[75.08475,14.92145],[75.07777,14.923],[75.06735,14.91868],[75.06972,14.90176],[75.07141,14.90051],[75.07016,14.89008],[75.0715,14.8716],[75.07439,14.86893],[75.07167,14.86778],[75.07393,14.85584],[75.06923,14.8411],[75.06782,14.84086],[75.06795,14.83708],[75.07158,14.8335],[75.07383,14.8258],[75.09035,14.82021],[75.09163,14.81114],[75.07487,14.80857],[75.06548,14.81044],[75.05542,14.81469],[75.05581,14.80499],[75.06849,14.79842],[75.0687,14.78704],[75.06675,14.78609],[75.06991,14.78297],[75.06564,14.7821],[75.06294,14.77643],[75.05528,14.77584],[75.05307,14.77699],[75.05052,14.77562],[75.05012,14.7735],[75.0411,14.77402],[75.04021,14.76692],[75.04326,14.75577],[75.04693,14.7526],[75.04714,14.74447],[75.04345,14.74283],[75.0444,14.7392],[75.03781,14.73833],[75.03826,14.72788],[75.03295,14.72764],[75.03038,14.72993],[75.02847,14.72578],[75.02254,14.72558],[75.02212,14.72397],[75.02065,14.72451],[75.01522,14.72071],[75.01721,14.70991],[75.02253,14.71021],[75.02468,14.70779],[75.03215,14.70792],[75.03197,14.69563],[75.03596,14.67559],[75.03045,14.67234],[75.03098,14.66493],[75.03523,14.65798],[75.03867,14.65862],[75.04053,14.66073],[75.04502,14.65432],[75.05084,14.6495],[75.06488,14.65189],[75.07258,14.65521],[75.08231,14.65281],[75.09938,14.65271],[75.10298,14.64512],[75.11452,14.64156],[75.12419,14.63115],[75.14249,14.63377],[75.14406,14.62035],[75.15275,14.62615],[75.16019,14.61728],[75.16475,14.62079],[75.1635,14.6289],[75.16537,14.63331],[75.16989,14.6352],[75.17192,14.63433],[75.18192,14.62463],[75.18777,14.62253],[75.19649,14.62359],[75.20239,14.62773],[75.2033,14.62992],[75.20018,14.63442],[75.20071,14.63794],[75.20549,14.63764],[75.20748,14.63579],[75.20517,14.6341],[75.20812,14.63344],[75.20662,14.62981],[75.20861,14.6291],[75.20736,14.62718],[75.20977,14.6278],[75.21056,14.62329],[75.2057,14.60947],[75.2051,14.59745],[75.19863,14.59626],[75.19321,14.59921],[75.18738,14.59945],[75.1817,14.59772],[75.18409,14.58583],[75.19772,14.5827],[75.19732,14.57736],[75.20752,14.57208],[75.21033,14.57266],[75.21355,14.57717],[75.21916,14.5802],[75.22155,14.58487],[75.22737,14.58377],[75.23055,14.5797],[75.22512,14.56767],[75.22842,14.56114],[75.23424,14.55679],[75.23889,14.55721],[75.24043,14.55489],[75.24346,14.56015],[75.24207,14.56805],[75.24464,14.5687],[75.24352,14.57795],[75.24913,14.5807],[75.26544,14.57975],[75.26771,14.57489],[75.27442,14.56996],[75.27548,14.56702],[75.27434,14.56544],[75.28176,14.56032],[75.28559,14.56049],[75.29097,14.55271],[75.29157,14.54825],[75.29379,14.54801],[75.2931,14.54349],[75.29719,14.54047],[75.29534,14.54029],[75.29586,14.53793],[75.29009,14.53157],[75.28721,14.53237],[75.28453,14.52957],[75.27826,14.53413],[75.26777,14.52775],[75.26905,14.52443],[75.26747,14.51488],[75.27501,14.51087],[75.28312,14.51448],[75.286,14.51454],[75.28681,14.51159],[75.29737,14.51101],[75.31957,14.51344],[75.3242,14.50885],[75.32519,14.50208],[75.32943,14.4945],[75.34609,14.48527],[75.34069,14.47489],[75.33991,14.46874],[75.34192,14.46374],[75.34518,14.46234],[75.3472,14.45742],[75.34242,14.45169],[75.34164,14.43967],[75.33898,14.43763],[75.34013,14.43575],[75.35533,14.43161],[75.35608,14.42831],[75.35852,14.43133],[75.35762,14.43645],[75.36257,14.44171],[75.36458,14.44164],[75.37046,14.43758],[75.38205,14.43353],[75.37791,14.40779],[75.36512,14.41087],[75.35937,14.40926],[75.356,14.40588],[75.35304,14.39439],[75.34857,14.38796],[75.36179,14.38136],[75.36871,14.37299],[75.37366,14.37024],[75.38291,14.36988],[75.38962,14.36636],[75.39739,14.36612],[75.40155,14.35925],[75.40662,14.35682],[75.41023,14.35243],[75.41737,14.35256],[75.42927,14.34906],[75.43357,14.34309],[75.44182,14.33975],[75.44375,14.33627],[75.45062,14.33259],[75.4543,14.32857],[75.46907,14.32262],[75.47733,14.31743],[75.48004,14.331],[75.47655,14.34382],[75.48052,14.34433],[75.48115,14.33957],[75.48865,14.33869],[75.48977,14.34733],[75.50097,14.34433],[75.50159,14.32454],[75.50494,14.31756],[75.50269,14.30782],[75.51761,14.30139],[75.52058,14.29871],[75.5214,14.29419],[75.5244,14.29193],[75.5341,14.28952],[75.53565,14.27744],[75.54539,14.27652],[75.55162,14.27424],[75.55655,14.2749],[75.5609,14.27762],[75.57603,14.27702],[75.58242,14.27824],[75.58769,14.28936],[75.59096,14.28763],[75.60342,14.29297],[75.60958,14.30801],[75.61086,14.31587],[75.63404,14.31494],[75.63491,14.31719],[75.63344,14.32593],[75.62687,14.33234],[75.62287,14.34418],[75.62615,14.37231],[75.63127,14.37831],[75.63115,14.38344],[75.63513,14.39061],[75.6402,14.41172],[75.64285,14.43125],[75.63459,14.43293],[75.63652,14.44099],[75.63038,14.44474],[75.63683,14.46558],[75.65475,14.46368],[75.65819,14.45922],[75.66124,14.45916],[75.65956,14.4543],[75.6616,14.45183],[75.67317,14.46375],[75.67994,14.47875],[75.68973,14.49184],[75.69633,14.49241],[75.70018,14.49114],[75.7027,14.48844],[75.70798,14.47507],[75.71555,14.47227],[75.72492,14.47912],[75.73519,14.49497],[75.74713,14.50443],[75.75195,14.51134],[75.75751,14.51444],[75.76961,14.51819],[75.77443,14.51824],[75.79076,14.51045],[75.79735,14.50941],[75.79963,14.51188],[75.79734,14.53056],[75.79963,14.54119],[75.80135,14.54455],[75.81003,14.55176],[75.81948,14.56281],[75.81937,14.57275],[75.80447,14.59841],[75.80588,14.61105],[75.81105,14.6263],[75.81133,14.64916],[75.81017,14.65538],[75.79885,14.66758],[75.7983,14.67132],[75.80039,14.67693],[75.79883,14.68121],[75.79231,14.68299],[75.77546,14.67606],[75.76352,14.67531],[75.73924,14.68552],[75.73796,14.69119],[75.7411,14.70082],[75.75394,14.71551],[75.76385,14.72228],[75.76454,14.72824],[75.76206,14.73483],[75.75565,14.73871],[75.74251,14.73101],[75.72764,14.72597],[75.71781,14.71954],[75.71318,14.71978],[75.70626,14.7233],[75.70312,14.72688],[75.70243,14.73161],[75.72062,14.75108],[75.72238,14.77194],[75.71337,14.77884],[75.69175,14.78226],[75.67768,14.79796],[75.66594,14.79973],[75.66357,14.8035],[75.66422,14.80786],[75.67082,14.81728],[75.6758,14.8334],[75.69028,14.85684],[75.69369,14.85886],[75.69517,14.85216],[75.70095,14.85223],[75.70254,14.85384],[75.71252,14.8527],[75.72114,14.86078],[75.72155,14.8642],[75.73268,14.86359],[75.7343,14.88293],[75.73907,14.8873],[75.72891,14.89463],[75.7281,14.89748],[75.69619,14.89205],[75.68324,14.92749],[75.68221,14.93695],[75.6834,14.94095],[75.68623,14.94332],[75.70108,14.94844],[75.69424,14.96909],[75.69137,14.97311],[75.67432,14.98175],[75.66858,14.98665],[75.65109,14.99104],[75.63182,14.99143],[75.62933,14.98358],[75.6175,14.98056],[75.61807,14.97384],[75.60892,14.97299],[75.60829,14.96644],[75.61071,14.95843],[75.60339,14.95613],[75.60216,14.95439],[75.59788,14.95478],[75.58919,14.95938],[75.58369,14.96842],[75.56523,14.97137],[75.56377,14.97337],[75.56575,14.97644],[75.56549,14.97925],[75.54133,14.97869],[75.54048,14.98499],[75.54302,14.99948],[75.54276,15.01355],[75.53848,15.01775],[75.53978,15.02222],[75.5382,15.02742],[75.53285,15.03454],[75.52104,15.03322],[75.50718,15.04454],[75.49514,15.04709],[75.47758,15.04391],[75.46856,15.04712],[75.46106,15.04393],[75.46025,15.04994],[75.45575,15.05134],[75.45203,15.0499],[75.44867,15.0607],[75.42706,15.06151],[75.42505,15.0602],[75.4171,15.06149],[75.41664,15.0595],[75.39918,15.05994],[75.37522,15.05028],[75.36925,15.05012],[75.36684,15.05136],[75.35717,15.06519],[75.34929,15.06421],[75.3444,15.06608],[75.33967,15.06972],[75.33295,15.08667],[75.33979,15.08843],[75.33919,15.09154],[75.35002,15.09468],[75.35056,15.10015],[75.3499,15.1026],[75.33984,15.10667],[75.33669,15.11364],[75.33639,15.16177],[75.32593,15.15739],[75.30708,15.15512],[75.30977,15.13826],[75.2871,15.13688],[75.28797,15.13051],[75.27972,15.12464],[75.27272,15.12213],[75.26987,15.11762],[75.26053,15.11828],[75.25841,15.09848],[75.25327,15.09801],[75.25116,15.10762],[75.23986,15.10714],[75.23886,15.10894],[75.22582,15.10743],[75.22485,15.10125],[75.20355,15.10029],[75.19849,15.10135],[75.18822,15.09788],[75.18611,15.10426],[75.15819,15.10149],[75.15867,15.10965],[75.13912,15.10433],[75.13622,15.11034],[75.13749,15.11207],[75.13527,15.11295],[75.13307,15.11897],[75.13746,15.12015],[75.13883,15.12554],[75.13776,15.12995],[75.1416,15.13321],[75.14546,15.13411],[75.148,15.13966],[75.15252,15.14333],[75.15156,15.14556],[75.15286,15.14563],[75.14887,15.15038],[75.14663,15.15006],[75.14204,15.1586]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"541","area_level":"District","area_name":"Kodagu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.89578,12.82799],[75.88676,12.83223],[75.87855,12.83391],[75.87564,12.83115],[75.87752,12.82644],[75.87679,12.82358],[75.86944,12.82256],[75.8638,12.81876],[75.865,12.81071],[75.86399,12.80559],[75.86598,12.80275],[75.86393,12.79644],[75.87328,12.77725],[75.87824,12.77669],[75.87308,12.77434],[75.87293,12.77285],[75.87543,12.77128],[75.87485,12.76984],[75.8722,12.77056],[75.86498,12.76858],[75.85828,12.76964],[75.85823,12.76184],[75.86002,12.75718],[75.85238,12.75356],[75.84945,12.74982],[75.854,12.74537],[75.85522,12.73651],[75.85172,12.73013],[75.85491,12.72352],[75.86239,12.71757],[75.86989,12.71533],[75.87249,12.70909],[75.88534,12.7077],[75.88512,12.70459],[75.88656,12.70501],[75.88465,12.70082],[75.88984,12.69202],[75.88708,12.68852],[75.88825,12.68483],[75.88675,12.67655],[75.87791,12.67175],[75.86727,12.67482],[75.86233,12.67162],[75.85253,12.66931],[75.84701,12.67278],[75.84421,12.67193],[75.84246,12.66928],[75.83455,12.6709],[75.83066,12.67319],[75.82079,12.68598],[75.81908,12.6912],[75.80769,12.7017],[75.79163,12.68839],[75.7842,12.68936],[75.77999,12.68731],[75.77721,12.6888],[75.77436,12.68499],[75.77307,12.67937],[75.76838,12.68166],[75.76076,12.67406],[75.74556,12.67966],[75.73131,12.69786],[75.72135,12.69627],[75.71732,12.70128],[75.71754,12.70454],[75.71464,12.70474],[75.71324,12.70761],[75.71154,12.70539],[75.7067,12.70717],[75.69512,12.70253],[75.67549,12.70052],[75.66695,12.69782],[75.65689,12.68253],[75.65275,12.67174],[75.64797,12.66573],[75.64538,12.65771],[75.64197,12.63293],[75.64232,12.62625],[75.65402,12.61937],[75.65392,12.6107],[75.6564,12.6027],[75.66154,12.59662],[75.6642,12.58556],[75.66211,12.57786],[75.66845,12.57218],[75.66314,12.56956],[75.66871,12.56517],[75.67055,12.55874],[75.67064,12.55135],[75.66802,12.54783],[75.65747,12.54371],[75.65374,12.54072],[75.64428,12.53942],[75.64052,12.5365],[75.63788,12.53065],[75.63315,12.52809],[75.63232,12.52111],[75.6283,12.5191],[75.62676,12.52112],[75.62368,12.51627],[75.61476,12.51019],[75.6055,12.51267],[75.60574,12.52111],[75.59968,12.52647],[75.59584,12.52764],[75.59298,12.53805],[75.59099,12.54008],[75.58269,12.53084],[75.58169,12.52326],[75.58013,12.52209],[75.58093,12.51932],[75.57765,12.51866],[75.57089,12.51152],[75.56418,12.51065],[75.55617,12.50123],[75.55506,12.49834],[75.56482,12.49506],[75.5662,12.49202],[75.56591,12.48611],[75.56082,12.48738],[75.55965,12.48933],[75.55605,12.48944],[75.55184,12.49322],[75.54725,12.49199],[75.54036,12.49503],[75.5337,12.49499],[75.53105,12.49942],[75.52916,12.49947],[75.52589,12.49684],[75.52367,12.48983],[75.51796,12.48788],[75.51411,12.48934],[75.50559,12.48642],[75.50008,12.48704],[75.49332,12.48373],[75.49602,12.47857],[75.49165,12.46891],[75.49318,12.46497],[75.49248,12.46191],[75.48986,12.46009],[75.48477,12.4622],[75.48195,12.46581],[75.47796,12.46621],[75.47542,12.46343],[75.47453,12.46608],[75.46463,12.47186],[75.4608,12.47694],[75.46143,12.48319],[75.46352,12.48544],[75.46198,12.48791],[75.46669,12.49027],[75.47249,12.49946],[75.46131,12.50498],[75.4617,12.5083],[75.4587,12.51058],[75.45809,12.51588],[75.45534,12.5129],[75.4532,12.51366],[75.44994,12.51859],[75.44569,12.51833],[75.44546,12.52076],[75.44209,12.52202],[75.43978,12.52851],[75.43435,12.53012],[75.43221,12.52379],[75.42946,12.52121],[75.43194,12.51777],[75.42889,12.515],[75.42426,12.51729],[75.41643,12.5153],[75.41668,12.51117],[75.41942,12.50935],[75.41684,12.50786],[75.4158,12.50498],[75.41609,12.5001],[75.41866,12.49554],[75.41725,12.49363],[75.42058,12.48852],[75.4203,12.47976],[75.42482,12.47426],[75.42487,12.46892],[75.42326,12.46678],[75.41572,12.46598],[75.41565,12.46216],[75.41332,12.45857],[75.40398,12.45494],[75.39962,12.45493],[75.3934,12.45137],[75.39221,12.45512],[75.38629,12.45828],[75.38187,12.45663],[75.37422,12.45973],[75.37126,12.45656],[75.36579,12.45774],[75.37029,12.44887],[75.36885,12.44217],[75.37149,12.43772],[75.36617,12.41183],[75.37086,12.40876],[75.37261,12.40025],[75.37773,12.39842],[75.37924,12.39236],[75.38394,12.39091],[75.38649,12.39237],[75.39229,12.38999],[75.39857,12.38143],[75.4004,12.38074],[75.40154,12.38252],[75.40553,12.37906],[75.41312,12.38029],[75.42193,12.37266],[75.41964,12.35694],[75.41544,12.34961],[75.41168,12.34914],[75.4104,12.34719],[75.41539,12.34006],[75.41619,12.32993],[75.41864,12.32917],[75.42028,12.31898],[75.42716,12.31072],[75.43109,12.31059],[75.43215,12.30899],[75.42829,12.30699],[75.42776,12.30405],[75.42411,12.30292],[75.42515,12.30057],[75.41373,12.29236],[75.41392,12.29067],[75.4211,12.29171],[75.42284,12.2951],[75.4266,12.29561],[75.42738,12.29781],[75.43009,12.29901],[75.43302,12.29734],[75.43635,12.29845],[75.4412,12.2966],[75.44573,12.29763],[75.4599,12.29404],[75.46374,12.2983],[75.47015,12.30071],[75.47547,12.29596],[75.4794,12.29541],[75.48101,12.29217],[75.48663,12.2886],[75.48692,12.28428],[75.49387,12.27279],[75.5054,12.27074],[75.50583,12.26458],[75.51178,12.25958],[75.51159,12.25306],[75.5198,12.24621],[75.51861,12.24351],[75.52111,12.23613],[75.52833,12.23159],[75.52691,12.22569],[75.53969,12.21681],[75.53703,12.20808],[75.53194,12.20567],[75.53261,12.20145],[75.53416,12.20293],[75.53649,12.20128],[75.5398,12.20273],[75.54118,12.19755],[75.54625,12.19794],[75.54859,12.19263],[75.55262,12.19285],[75.55497,12.18318],[75.55851,12.18207],[75.55935,12.1775],[75.56159,12.17505],[75.56978,12.17285],[75.5772,12.15775],[75.58331,12.15912],[75.58375,12.15699],[75.59046,12.15249],[75.59293,12.14778],[75.5959,12.15432],[75.60197,12.15364],[75.60691,12.15549],[75.61125,12.15262],[75.61496,12.1556],[75.61903,12.15652],[75.63133,12.14878],[75.63605,12.14917],[75.6392,12.14336],[75.63826,12.13895],[75.64205,12.1398],[75.64319,12.13865],[75.64408,12.12552],[75.64753,12.12192],[75.64658,12.1158],[75.64908,12.10933],[75.65276,12.11005],[75.653,12.10791],[75.66198,12.09918],[75.66742,12.09731],[75.67687,12.0982],[75.67988,12.10273],[75.68364,12.10449],[75.68718,12.11025],[75.69554,12.11049],[75.70326,12.10817],[75.70213,12.09229],[75.71307,12.09048],[75.71793,12.08558],[75.71769,12.08229],[75.71545,12.08166],[75.71473,12.07044],[75.72485,12.07318],[75.72774,12.07255],[75.73611,12.07895],[75.74358,12.08017],[75.74712,12.07819],[75.74913,12.08191],[75.75348,12.08413],[75.76282,12.08325],[75.76763,12.08448],[75.78036,12.08251],[75.78542,12.08426],[75.80255,12.07856],[75.80383,12.07516],[75.79867,12.06327],[75.79866,12.05604],[75.79396,12.05503],[75.79966,12.04738],[75.80107,12.03701],[75.81102,12.02857],[75.80993,12.02271],[75.81547,12.02051],[75.82286,12.01337],[75.82325,12.0098],[75.82038,12.00252],[75.82523,12.00273],[75.82563,11.99187],[75.82726,11.98768],[75.83003,11.984],[75.83704,11.98093],[75.83971,11.98267],[75.84292,11.98073],[75.84691,11.98201],[75.84955,11.97804],[75.848,11.97495],[75.85011,11.97474],[75.853,11.97159],[75.85461,11.96411],[75.85886,11.95942],[75.86643,11.95738],[75.87045,11.95258],[75.87254,11.9533],[75.88068,11.94971],[75.88602,11.95203],[75.89703,11.94547],[75.89873,11.94666],[75.91399,11.94692],[75.91747,11.94488],[75.92719,11.94337],[75.93078,11.9397],[75.93571,11.94006],[75.93741,11.9421],[75.95174,11.94064],[75.95637,11.9419],[75.9764,11.93371],[75.97927,11.93476],[75.98347,11.93272],[75.99042,11.93471],[75.99391,11.93227],[76.0032,11.93139],[76.00738,11.93902],[76.01312,11.94172],[76.01649,11.9411],[76.02238,11.94397],[76.02676,11.94308],[76.02997,11.94015],[76.03372,11.9403],[76.03907,11.94509],[76.04233,11.94602],[76.04482,11.95054],[76.05204,11.95161],[76.05796,11.95778],[76.06742,11.96333],[76.0701,11.96708],[76.07729,11.96874],[76.08943,11.96735],[76.09351,11.96849],[76.10477,11.97569],[76.1141,11.97935],[76.11693,11.98269],[76.12451,11.98306],[76.12829,11.98568],[76.13664,11.99658],[76.13956,12.00442],[76.14758,12.00981],[76.15085,12.01837],[76.16585,12.02634],[76.18278,12.03234],[76.18926,12.05004],[76.18303,12.06337],[76.17869,12.06821],[76.17578,12.07611],[76.17496,12.08231],[76.17659,12.09937],[76.17189,12.10625],[76.17094,12.11874],[76.16472,12.12596],[76.16155,12.13363],[76.15001,12.14386],[76.1442,12.15454],[76.1415,12.16757],[76.13716,12.17381],[76.13315,12.19155],[76.12925,12.19484],[76.11875,12.19066],[76.10187,12.19721],[76.09519,12.2076],[76.09318,12.21366],[76.08402,12.22032],[76.0745,12.2341],[76.07381,12.24009],[76.06224,12.24905],[76.05187,12.24638],[76.05093,12.24847],[76.04025,12.25261],[76.0254,12.25126],[76.02468,12.24882],[76.02064,12.25378],[76.0151,12.26667],[76.01477,12.2711],[76.01746,12.27226],[76.01465,12.28389],[76.01452,12.29225],[76.00466,12.30537],[75.99909,12.30739],[75.99713,12.3163],[75.99473,12.31738],[75.99445,12.32055],[76.00128,12.32898],[76.00109,12.33055],[75.99636,12.3315],[75.9932,12.33609],[75.98172,12.34245],[75.97508,12.34223],[75.97047,12.34557],[75.96049,12.34387],[75.95685,12.35007],[75.95374,12.35187],[75.93761,12.37236],[75.93232,12.38229],[75.91618,12.3883],[75.91313,12.38557],[75.90868,12.39816],[75.90922,12.40185],[75.91135,12.40716],[75.9153,12.40953],[75.9234,12.42335],[75.92217,12.42953],[75.92616,12.43678],[75.93063,12.44063],[75.93492,12.44086],[75.94561,12.44898],[75.96043,12.45145],[75.96776,12.44725],[75.97167,12.4503],[75.96889,12.45364],[75.96689,12.46138],[75.96725,12.46579],[75.97161,12.47083],[75.96798,12.47111],[75.96405,12.47427],[75.96665,12.47822],[75.96643,12.48313],[75.96464,12.4846],[75.96056,12.48434],[75.95815,12.49055],[75.96196,12.49783],[75.96222,12.50645],[75.96413,12.50927],[75.97253,12.51185],[75.97535,12.51977],[75.98096,12.52092],[75.9862,12.51973],[75.99394,12.5221],[75.99344,12.52964],[75.9834,12.54043],[75.98465,12.54436],[75.98667,12.54505],[75.99492,12.54104],[75.9989,12.54742],[75.998,12.55135],[75.99087,12.55613],[75.99126,12.56145],[75.99645,12.56263],[76.00761,12.55529],[76.01246,12.5542],[76.01184,12.56077],[76.01881,12.56691],[76.01906,12.57159],[76.01393,12.5695],[76.01231,12.57315],[76.00991,12.5715],[76.00643,12.57437],[76.00356,12.57448],[75.99909,12.58053],[75.99722,12.58066],[75.99454,12.58877],[75.99221,12.58875],[75.99008,12.58817],[75.99168,12.58541],[75.98768,12.58129],[75.98852,12.5741],[75.98184,12.57334],[75.97393,12.57652],[75.96876,12.57667],[75.97547,12.56347],[75.96978,12.56087],[75.96261,12.56118],[75.95549,12.57541],[75.94863,12.59568],[75.94052,12.60501],[75.93962,12.60936],[75.94161,12.61198],[75.94697,12.61419],[75.94983,12.62334],[75.94466,12.62948],[75.93914,12.62848],[75.93561,12.63002],[75.94351,12.63649],[75.94028,12.64289],[75.9378,12.64355],[75.93891,12.65298],[75.94456,12.66203],[75.94792,12.66394],[75.94662,12.66774],[75.94165,12.67118],[75.93977,12.67599],[75.94573,12.67816],[75.95415,12.67674],[75.95963,12.68326],[75.95871,12.68994],[75.96455,12.70125],[75.96251,12.70617],[75.96524,12.71095],[75.9498,12.71738],[75.94474,12.7179],[75.94191,12.72019],[75.9396,12.72662],[75.93452,12.73374],[75.9376,12.74937],[75.93298,12.764],[75.9358,12.76743],[75.94072,12.76756],[75.94719,12.76533],[75.95462,12.76858],[75.95514,12.77591],[75.9578,12.78198],[75.96643,12.7818],[75.97077,12.78395],[75.96694,12.79773],[75.96913,12.80498],[75.96506,12.80515],[75.94919,12.80053],[75.94847,12.8053],[75.94623,12.80793],[75.9299,12.80811],[75.92503,12.81419],[75.92777,12.8217],[75.91982,12.82826],[75.91712,12.82648],[75.91844,12.81963],[75.91126,12.81523],[75.90334,12.81914],[75.90007,12.82779],[75.89578,12.82799]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"542","area_level":"District","area_name":"Kolar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.23973,13.59739],[78.23634,13.59858],[78.23439,13.59712],[78.23509,13.59106],[78.23258,13.58598],[78.22209,13.58956],[78.21975,13.59258],[78.21621,13.59062],[78.21408,13.58323],[78.20784,13.57699],[78.20292,13.56878],[78.19619,13.56626],[78.20134,13.56389],[78.19377,13.54855],[78.20115,13.54131],[78.20145,13.53318],[78.20365,13.52777],[78.20278,13.52334],[78.19909,13.52089],[78.19041,13.5207],[78.18777,13.51359],[78.1924,13.51204],[78.19816,13.51259],[78.20069,13.4841],[78.20306,13.48078],[78.20811,13.47811],[78.21039,13.47104],[78.20605,13.46473],[78.20586,13.4588],[78.202,13.45064],[78.19341,13.4471],[78.19433,13.43844],[78.18864,13.44248],[78.18551,13.43893],[78.18469,13.43519],[78.18629,13.43472],[78.18285,13.43342],[78.18255,13.42063],[78.16893,13.41357],[78.16082,13.41528],[78.15265,13.4096],[78.14734,13.40959],[78.13573,13.40525],[78.1298,13.3939],[78.12833,13.38671],[78.12461,13.386],[78.12239,13.3752],[78.1288,13.37342],[78.14263,13.37587],[78.14565,13.37377],[78.14796,13.36749],[78.14556,13.3614],[78.14936,13.36103],[78.15009,13.35794],[78.15034,13.35062],[78.13186,13.35246],[78.13084,13.34603],[78.13407,13.33122],[78.13159,13.33227],[78.13084,13.32843],[78.10897,13.32326],[78.11486,13.31777],[78.12175,13.3155],[78.12319,13.30842],[78.13055,13.30734],[78.13647,13.30434],[78.13639,13.29681],[78.13382,13.28764],[78.12747,13.29026],[78.12666,13.29191],[78.12166,13.29273],[78.11742,13.29846],[78.1075,13.30429],[78.10246,13.30369],[78.09711,13.30815],[78.09274,13.30847],[78.09197,13.31023],[78.08987,13.30392],[78.08678,13.30219],[78.07726,13.30094],[78.07564,13.30241],[78.06058,13.299],[78.05906,13.29277],[78.05596,13.29433],[78.05211,13.29341],[78.04691,13.27829],[78.02991,13.28371],[78.01552,13.2829],[78.01367,13.28997],[78.01171,13.29066],[78.01128,13.30145],[77.99884,13.30506],[77.99403,13.30491],[77.98903,13.30415],[77.98813,13.30125],[77.98519,13.29917],[77.98455,13.28607],[77.97493,13.28555],[77.96894,13.28238],[77.96123,13.28424],[77.95774,13.28192],[77.9567,13.27708],[77.95941,13.27599],[77.95948,13.2722],[77.95618,13.26969],[77.94629,13.27125],[77.94478,13.26931],[77.94154,13.26895],[77.94147,13.26756],[77.93822,13.26795],[77.93821,13.26403],[77.9414,13.25847],[77.93775,13.25123],[77.9345,13.24915],[77.93495,13.24606],[77.94559,13.24366],[77.94855,13.24999],[77.95567,13.24863],[77.96492,13.24405],[77.96499,13.23746],[77.96333,13.23882],[77.96385,13.23277],[77.94656,13.21922],[77.94523,13.21418],[77.95136,13.21498],[77.95127,13.21936],[77.95795,13.21869],[77.95473,13.20566],[77.95634,13.2044],[77.95512,13.20087],[77.96055,13.20015],[77.9595,13.19579],[77.96245,13.18954],[77.96383,13.18934],[77.96156,13.18656],[77.96087,13.18186],[77.9583,13.18175],[77.95704,13.17634],[77.95534,13.17643],[77.95424,13.17007],[77.95552,13.16944],[77.95534,13.16307],[77.95304,13.16057],[77.95877,13.15738],[77.95735,13.15212],[77.95941,13.15151],[77.95544,13.14011],[77.95772,13.13033],[77.95619,13.12629],[77.94857,13.12762],[77.94575,13.12359],[77.93927,13.12514],[77.93658,13.11419],[77.93734,13.10814],[77.9255,13.11068],[77.92523,13.11228],[77.92307,13.11253],[77.92364,13.11593],[77.91541,13.11904],[77.91412,13.11106],[77.90134,13.10239],[77.90154,13.09979],[77.9111,13.09601],[77.91607,13.0876],[77.91674,13.08623],[77.91332,13.08084],[77.9174,13.08077],[77.91838,13.07926],[77.92704,13.08266],[77.92623,13.07587],[77.93183,13.07395],[77.93602,13.07557],[77.93875,13.07863],[77.93955,13.08355],[77.94155,13.07677],[77.94145,13.06879],[77.93737,13.06597],[77.9282,13.06845],[77.92163,13.06114],[77.92161,13.05653],[77.91897,13.0509],[77.91529,13.05084],[77.91366,13.04845],[77.90532,13.04897],[77.8939,13.0538],[77.89222,13.0522],[77.89143,13.0471],[77.89309,13.04624],[77.88881,13.04543],[77.88716,13.03708],[77.8933,13.03503],[77.88988,13.02375],[77.88676,13.01996],[77.88587,13.00857],[77.87938,13.00518],[77.87406,12.99765],[77.87287,12.99454],[77.87372,12.98708],[77.87097,12.98512],[77.87142,12.9729],[77.8647,12.97365],[77.8653,12.96614],[77.87156,12.95984],[77.86711,12.95093],[77.87371,12.94519],[77.87074,12.93714],[77.86918,12.93382],[77.85918,12.93567],[77.85102,12.93208],[77.84736,12.92629],[77.84103,12.92483],[77.83954,12.9218],[77.84219,12.91404],[77.84457,12.91635],[77.85353,12.91537],[77.85681,12.91649],[77.86189,12.91427],[77.85228,12.89091],[77.85568,12.87625],[77.86643,12.8761],[77.86765,12.86807],[77.87594,12.8668],[77.87727,12.86862],[77.88254,12.86856],[77.88475,12.87022],[77.89034,12.86966],[77.89492,12.87857],[77.90841,12.87881],[77.90876,12.88484],[77.92187,12.88474],[77.92509,12.89009],[77.92932,12.89092],[77.93601,12.88724],[77.93463,12.88066],[77.92714,12.88152],[77.92772,12.87492],[77.94163,12.87274],[77.94121,12.86822],[77.93662,12.86684],[77.93559,12.86275],[77.93135,12.86181],[77.92281,12.85556],[77.92424,12.85112],[77.91725,12.83885],[77.91807,12.83135],[77.92056,12.82816],[77.92651,12.83028],[77.92852,12.82678],[77.93434,12.8231],[77.94068,12.82334],[77.94217,12.83121],[77.94661,12.83871],[77.94058,12.84525],[77.93999,12.85314],[77.94365,12.85782],[77.95234,12.85712],[77.95278,12.85013],[77.963,12.85018],[77.96535,12.84818],[77.96257,12.83737],[77.96432,12.83284],[77.9727,12.83282],[77.97405,12.83483],[77.98039,12.83506],[77.97927,12.82704],[77.9868,12.82182],[77.98978,12.82155],[77.98852,12.80819],[77.99562,12.80587],[77.99669,12.80787],[78.00646,12.80858],[78.00975,12.80574],[78.01531,12.81379],[78.01277,12.81882],[78.0058,12.82217],[78.00392,12.8256],[78.01062,12.83091],[78.01466,12.82982],[78.0183,12.83105],[78.01915,12.84394],[78.02433,12.84174],[78.02899,12.84519],[78.0297,12.84891],[78.02407,12.85251],[78.02387,12.8565],[78.03065,12.85802],[78.03073,12.85245],[78.05047,12.84874],[78.05333,12.85385],[78.05905,12.85117],[78.06021,12.84383],[78.0712,12.8424],[78.07652,12.83965],[78.07726,12.8381],[78.07508,12.8362],[78.07386,12.83051],[78.0862,12.83194],[78.08813,12.82787],[78.08753,12.82488],[78.09017,12.8235],[78.09016,12.81736],[78.10473,12.80908],[78.10936,12.80449],[78.12036,12.80171],[78.12188,12.79925],[78.12499,12.79819],[78.12595,12.79168],[78.13126,12.7838],[78.13424,12.78197],[78.13572,12.78309],[78.1363,12.78185],[78.14515,12.78093],[78.16766,12.77008],[78.17163,12.77379],[78.1774,12.77595],[78.18239,12.77425],[78.18426,12.77622],[78.18896,12.77191],[78.19208,12.77428],[78.19516,12.77384],[78.21286,12.76503],[78.22389,12.76588],[78.23095,12.76066],[78.23898,12.76838],[78.24564,12.78826],[78.24656,12.80166],[78.25056,12.81221],[78.25234,12.82894],[78.2522,12.86055],[78.25366,12.8622],[78.25814,12.8604],[78.26527,12.86201],[78.2684,12.86769],[78.27171,12.86696],[78.2821,12.85931],[78.31245,12.85852],[78.31559,12.86755],[78.31363,12.87645],[78.33102,12.87558],[78.33224,12.8807],[78.33708,12.88236],[78.33799,12.88621],[78.33452,12.88921],[78.33179,12.88884],[78.33088,12.88536],[78.32918,12.88459],[78.32169,12.88556],[78.32033,12.88726],[78.32407,12.89291],[78.3225,12.89749],[78.32353,12.90178],[78.32631,12.9045],[78.33106,12.90187],[78.33973,12.90318],[78.34407,12.9085],[78.34197,12.9119],[78.3466,12.91404],[78.34905,12.92899],[78.35385,12.93025],[78.34971,12.93571],[78.35587,12.94074],[78.37672,12.91794],[78.37825,12.91385],[78.38563,12.91144],[78.38576,12.90937],[78.3887,12.90686],[78.3964,12.90731],[78.39867,12.91731],[78.4089,12.90927],[78.41221,12.90323],[78.42865,12.90208],[78.43039,12.90479],[78.4337,12.90454],[78.4359,12.90945],[78.43495,12.91184],[78.43884,12.91366],[78.44558,12.9118],[78.44649,12.90819],[78.44396,12.903],[78.44923,12.89824],[78.44724,12.89221],[78.44882,12.8901],[78.45589,12.88747],[78.46411,12.8777],[78.46205,12.87106],[78.46477,12.86676],[78.46946,12.88964],[78.4667,12.90541],[78.45925,12.90873],[78.4523,12.91767],[78.44453,12.91963],[78.43802,12.92901],[78.42818,12.93209],[78.42282,12.92335],[78.41882,12.92172],[78.41789,12.92789],[78.41574,12.92968],[78.4152,12.93336],[78.41309,12.9334],[78.41355,12.93932],[78.41116,12.94527],[78.41376,12.94835],[78.42038,12.94774],[78.4215,12.95463],[78.41927,12.95868],[78.42916,12.95746],[78.4297,12.95913],[78.43458,12.96079],[78.43797,12.96399],[78.43272,12.9678],[78.43474,12.97144],[78.43248,12.97796],[78.43533,12.98104],[78.45269,12.97677],[78.45972,12.97725],[78.46746,12.97502],[78.46858,12.98272],[78.47481,12.99144],[78.47187,12.99262],[78.4677,12.99854],[78.46826,13.00462],[78.46361,13.00532],[78.46454,13.01179],[78.46345,13.01634],[78.46482,13.02042],[78.46141,13.02569],[78.4622,13.04321],[78.4648,13.04466],[78.47312,13.04292],[78.47796,13.05009],[78.47849,13.05454],[78.48736,13.05236],[78.49806,13.0612],[78.51425,13.06186],[78.51568,13.06551],[78.51512,13.06997],[78.51077,13.07803],[78.50862,13.07902],[78.50947,13.0915],[78.51607,13.09655],[78.52339,13.09469],[78.52285,13.09772],[78.52448,13.1012],[78.53246,13.10567],[78.53851,13.10573],[78.53745,13.10861],[78.52683,13.11222],[78.52527,13.11445],[78.52262,13.11496],[78.52303,13.11841],[78.51853,13.11982],[78.51893,13.12511],[78.51704,13.13159],[78.52151,13.13181],[78.52156,13.13013],[78.52334,13.13045],[78.52608,13.13407],[78.52667,13.13894],[78.53126,13.14137],[78.54465,13.142],[78.54836,13.14854],[78.54087,13.15348],[78.5414,13.15574],[78.55011,13.16419],[78.5682,13.16176],[78.56873,13.16562],[78.57337,13.1689],[78.57649,13.16712],[78.57977,13.16736],[78.57648,13.17455],[78.57606,13.18669],[78.5673,13.19326],[78.56646,13.19182],[78.55582,13.18864],[78.54976,13.18969],[78.55006,13.20018],[78.56053,13.19877],[78.56779,13.20152],[78.57112,13.21204],[78.57626,13.21151],[78.5787,13.21299],[78.57855,13.21802],[78.5664,13.22085],[78.56873,13.2374],[78.57194,13.24259],[78.5705,13.24259],[78.57014,13.2471],[78.57906,13.25366],[78.58491,13.26156],[78.5877,13.27297],[78.58736,13.28064],[78.57865,13.28035],[78.57634,13.28499],[78.57755,13.29528],[78.57149,13.30337],[78.56954,13.30922],[78.56555,13.312],[78.56321,13.30939],[78.56492,13.30691],[78.56499,13.29546],[78.56164,13.28851],[78.55411,13.28317],[78.54533,13.28789],[78.53932,13.28787],[78.53639,13.27241],[78.53218,13.26694],[78.52667,13.26842],[78.52651,13.27162],[78.52196,13.273],[78.52165,13.27616],[78.51979,13.27711],[78.51993,13.28277],[78.51335,13.28523],[78.514,13.29059],[78.50485,13.29137],[78.49878,13.29956],[78.49674,13.29861],[78.47931,13.30129],[78.48124,13.31018],[78.48363,13.31304],[78.4834,13.32117],[78.4769,13.32264],[78.47015,13.31983],[78.46948,13.31709],[78.46666,13.31512],[78.45772,13.31384],[78.45263,13.31008],[78.44421,13.30811],[78.44001,13.32181],[78.44124,13.32489],[78.44038,13.32843],[78.42795,13.33129],[78.42176,13.32827],[78.41888,13.32057],[78.4011,13.31547],[78.39927,13.32069],[78.39216,13.3253],[78.38713,13.33179],[78.37715,13.33197],[78.37825,13.33719],[78.38303,13.34359],[78.38768,13.3428],[78.38842,13.3391],[78.38487,13.33489],[78.39302,13.33376],[78.40729,13.33752],[78.40868,13.34288],[78.4084,13.34569],[78.39321,13.35074],[78.39486,13.35433],[78.37764,13.36315],[78.3761,13.36113],[78.37083,13.36151],[78.36967,13.35826],[78.36581,13.35865],[78.36508,13.3618],[78.36906,13.37319],[78.37236,13.37846],[78.37878,13.38365],[78.38168,13.39698],[78.38106,13.40882],[78.37922,13.41483],[78.38075,13.41887],[78.37744,13.42403],[78.37751,13.43188],[78.3756,13.43738],[78.3764,13.43945],[78.37897,13.44007],[78.37836,13.44372],[78.37573,13.44389],[78.37285,13.45214],[78.37456,13.46195],[78.37236,13.46335],[78.37082,13.46952],[78.37879,13.48204],[78.37805,13.50017],[78.37485,13.5027],[78.37685,13.50524],[78.37532,13.50895],[78.38552,13.51556],[78.38411,13.5249],[78.39364,13.54063],[78.39313,13.55256],[78.40667,13.57686],[78.40155,13.5785],[78.402,13.58797],[78.39617,13.58817],[78.39346,13.59066],[78.38429,13.59186],[78.36531,13.58951],[78.36493,13.58808],[78.36124,13.58899],[78.34863,13.58687],[78.34657,13.5905],[78.32617,13.59484],[78.31496,13.59142],[78.30773,13.59222],[78.27048,13.58815],[78.2586,13.58301],[78.25804,13.58569],[78.24929,13.59088],[78.24369,13.59684],[78.24211,13.59565],[78.23973,13.59739]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"543","area_level":"District","area_name":"Koppal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.06523,16.01076],[76.05663,16.01181],[76.0566,16.00561],[76.05238,16.00575],[76.05212,16.00328],[76.02161,16.00918],[76.01768,16.00339],[76.01298,16.0035],[76.01214,16.00213],[75.98964,16.00524],[75.98968,15.9993],[75.98706,15.99595],[75.974,15.98745],[75.97584,15.96145],[75.97432,15.95242],[75.97765,15.95152],[75.97629,15.94305],[75.97675,15.92995],[75.97413,15.92181],[75.9767,15.90043],[75.97531,15.89651],[75.97876,15.88167],[75.97904,15.87333],[75.97819,15.86877],[75.97364,15.86145],[75.96634,15.85919],[75.96342,15.86545],[75.94441,15.86693],[75.9415,15.8745],[75.92829,15.87564],[75.92871,15.88246],[75.92589,15.88659],[75.92707,15.89501],[75.91404,15.91241],[75.90169,15.92353],[75.90278,15.91819],[75.8915,15.91626],[75.87663,15.93211],[75.8673,15.93199],[75.85319,15.93557],[75.8471,15.93433],[75.84331,15.93101],[75.83953,15.93094],[75.83651,15.92565],[75.83067,15.9251],[75.82574,15.9271],[75.8108,15.92532],[75.8114,15.92366],[75.79074,15.92303],[75.78852,15.92502],[75.77616,15.91825],[75.77524,15.91412],[75.77886,15.9075],[75.77798,15.90461],[75.77417,15.90418],[75.77353,15.90258],[75.77831,15.90015],[75.77907,15.8974],[75.79787,15.89672],[75.81033,15.8937],[75.81187,15.89992],[75.82733,15.90035],[75.8296,15.89644],[75.82971,15.88677],[75.83232,15.88681],[75.83523,15.8823],[75.83375,15.87813],[75.83183,15.87814],[75.83289,15.87582],[75.82801,15.86652],[75.83822,15.86497],[75.84006,15.87182],[75.84873,15.87193],[75.84829,15.86277],[75.84996,15.86046],[75.84627,15.83942],[75.87195,15.82914],[75.90058,15.81094],[75.90777,15.80883],[75.92895,15.79093],[75.93848,15.79078],[75.96095,15.78383],[75.96381,15.7946],[75.96741,15.79426],[75.9762,15.80026],[75.98445,15.80242],[75.98834,15.80156],[75.99059,15.78679],[75.99454,15.78071],[76.00984,15.78394],[76.01236,15.77961],[76.01893,15.77893],[76.01988,15.77569],[76.03362,15.77025],[76.03886,15.77083],[76.03948,15.76836],[76.04043,15.76316],[76.03478,15.75661],[76.03473,15.75464],[76.03991,15.75384],[76.04001,15.74764],[76.03728,15.73689],[76.04349,15.73654],[76.04506,15.72546],[76.04156,15.7183],[76.03021,15.71491],[76.02319,15.70927],[76.01902,15.71499],[76.0049,15.71553],[76.0042,15.71161],[75.99282,15.70618],[75.98443,15.69377],[75.98369,15.68979],[75.98825,15.68817],[75.98427,15.68114],[75.98334,15.66724],[75.98629,15.66954],[75.99009,15.66983],[75.995,15.6779],[76.01416,15.68018],[76.01644,15.67847],[76.01613,15.67312],[76.01121,15.66236],[75.98122,15.66366],[75.9767,15.66245],[75.96799,15.66424],[75.96758,15.66912],[75.96624,15.66965],[75.967,15.67888],[75.96127,15.67588],[75.9436,15.67636],[75.94009,15.6824],[75.94033,15.69322],[75.92588,15.69232],[75.91542,15.6977],[75.91521,15.70438],[75.92142,15.72611],[75.91037,15.7317],[75.91057,15.74443],[75.89739,15.75046],[75.89271,15.73841],[75.88308,15.73749],[75.8887,15.72867],[75.89105,15.7284],[75.88694,15.71685],[75.87101,15.7144],[75.87104,15.67261],[75.88357,15.6716],[75.88746,15.66827],[75.88851,15.65027],[75.88575,15.63373],[75.89469,15.63241],[75.89395,15.6254],[75.89837,15.62484],[75.89933,15.62003],[75.8975,15.60708],[75.89459,15.60697],[75.89455,15.6033],[75.88215,15.60032],[75.88241,15.59704],[75.87913,15.59652],[75.87876,15.59913],[75.86682,15.59602],[75.86842,15.58234],[75.8677,15.56072],[75.86024,15.51376],[75.85049,15.5158],[75.84946,15.51232],[75.83278,15.51007],[75.83134,15.50675],[75.8191,15.50786],[75.82403,15.49571],[75.81487,15.49548],[75.81574,15.48691],[75.80956,15.4867],[75.81051,15.47539],[75.81289,15.46754],[75.81871,15.46858],[75.81923,15.45621],[75.82376,15.45173],[75.82998,15.44818],[75.83652,15.44731],[75.83987,15.44273],[75.84774,15.44455],[75.85893,15.44416],[75.85892,15.4239],[75.86535,15.42374],[75.86576,15.40782],[75.88439,15.40881],[75.90399,15.4029],[75.90121,15.37568],[75.90278,15.35439],[75.88737,15.35317],[75.889,15.33704],[75.89094,15.33641],[75.89236,15.3279],[75.89121,15.32559],[75.89328,15.31857],[75.8899,15.31148],[75.88997,15.29929],[75.88879,15.2973],[75.89016,15.2949],[75.88868,15.2904],[75.89393,15.28038],[75.89921,15.2766],[75.89475,15.27333],[75.89999,15.24529],[75.90287,15.24328],[75.90324,15.23941],[75.91171,15.2405],[75.92445,15.20586],[75.92621,15.19536],[75.92471,15.18267],[75.94,15.17534],[75.94822,15.17307],[75.95165,15.13766],[75.96418,15.14177],[75.97217,15.14976],[75.97848,15.15277],[75.98755,15.15085],[75.99541,15.14674],[76.00608,15.14916],[76.02718,15.14276],[76.04332,15.14474],[76.05684,15.15696],[76.08339,15.15949],[76.09372,15.16276],[76.10343,15.16838],[76.10577,15.18465],[76.1117,15.19862],[76.1182,15.20234],[76.12504,15.20336],[76.15283,15.1955],[76.15589,15.19583],[76.16019,15.20082],[76.15746,15.21013],[76.15986,15.21491],[76.17398,15.22742],[76.18746,15.23502],[76.21358,15.23238],[76.22752,15.23269],[76.23116,15.2313],[76.23264,15.22776],[76.21777,15.2017],[76.21884,15.19659],[76.22316,15.192],[76.22966,15.18845],[76.249,15.19074],[76.25494,15.19707],[76.25715,15.20627],[76.26822,15.2066],[76.27525,15.21293],[76.29133,15.22304],[76.29151,15.23223],[76.30093,15.24258],[76.30034,15.25106],[76.30284,15.2557],[76.31967,15.2644],[76.3229,15.26503],[76.33242,15.26242],[76.33365,15.26363],[76.34053,15.27599],[76.34663,15.2977],[76.34953,15.3027],[76.35069,15.31042],[76.35777,15.32333],[76.364,15.3284],[76.38891,15.33083],[76.40458,15.32568],[76.4318,15.33915],[76.4506,15.33923],[76.46025,15.34436],[76.47178,15.34438],[76.47715,15.34952],[76.48781,15.34503],[76.49332,15.34497],[76.49897,15.35113],[76.51291,15.35923],[76.54863,15.3869],[76.55497,15.39666],[76.5718,15.40127],[76.59233,15.41302],[76.59464,15.41706],[76.59607,15.42543],[76.61227,15.44283],[76.63989,15.44414],[76.66599,15.44984],[76.67136,15.45306],[76.68393,15.47175],[76.70899,15.48855],[76.72646,15.49257],[76.74145,15.49089],[76.75171,15.49279],[76.76448,15.49155],[76.78012,15.49285],[76.79697,15.50106],[76.81154,15.5137],[76.81255,15.51689],[76.80785,15.52428],[76.81062,15.53456],[76.81072,15.54744],[76.78613,15.55646],[76.77836,15.55711],[76.75885,15.5669],[76.75583,15.57091],[76.75534,15.5832],[76.75347,15.58791],[76.73822,15.59279],[76.72129,15.5913],[76.70089,15.59449],[76.7003,15.59102],[76.68877,15.59584],[76.69081,15.60126],[76.68546,15.606],[76.68017,15.60662],[76.67957,15.61269],[76.6804,15.62704],[76.69356,15.62464],[76.69388,15.63418],[76.69058,15.64817],[76.68011,15.64395],[76.67694,15.64068],[76.67423,15.64124],[76.6702,15.6389],[76.67181,15.65822],[76.65343,15.6603],[76.65386,15.66571],[76.63062,15.67035],[76.61593,15.66999],[76.59945,15.67394],[76.59698,15.69963],[76.58604,15.69755],[76.56184,15.70567],[76.56141,15.70311],[76.55298,15.69986],[76.54151,15.69872],[76.54433,15.70338],[76.53995,15.70414],[76.53564,15.70353],[76.5357,15.6989],[76.53187,15.69924],[76.52885,15.70032],[76.52611,15.70746],[76.51752,15.71287],[76.5148,15.71037],[76.51465,15.71432],[76.51035,15.71674],[76.50499,15.71539],[76.49149,15.70746],[76.49051,15.71338],[76.48489,15.71423],[76.48219,15.71922],[76.45638,15.72877],[76.44723,15.73425],[76.44322,15.7382],[76.44742,15.74402],[76.43911,15.74995],[76.43821,15.7621],[76.43949,15.78443],[76.43341,15.78702],[76.4305,15.78535],[76.42217,15.78557],[76.42195,15.79092],[76.41514,15.79157],[76.41297,15.79673],[76.41321,15.80445],[76.41763,15.80654],[76.42045,15.80533],[76.42229,15.81197],[76.42508,15.81284],[76.43792,15.82472],[76.44218,15.82404],[76.44499,15.83349],[76.44885,15.83642],[76.45146,15.84592],[76.45118,15.84895],[76.44785,15.85376],[76.43286,15.85829],[76.41818,15.86893],[76.41895,15.87114],[76.42172,15.87248],[76.4242,15.87989],[76.42461,15.88842],[76.42681,15.89031],[76.41789,15.89535],[76.40374,15.89939],[76.40369,15.90206],[76.37509,15.90222],[76.37353,15.9174],[76.37001,15.9128],[76.36414,15.91238],[76.35917,15.90969],[76.35345,15.90277],[76.35874,15.90139],[76.35737,15.88207],[76.35882,15.88174],[76.35544,15.86459],[76.35318,15.86596],[76.3512,15.86371],[76.33786,15.87177],[76.34242,15.87819],[76.34521,15.88716],[76.34485,15.90048],[76.33387,15.90548],[76.32284,15.90312],[76.31598,15.90498],[76.31436,15.90284],[76.31505,15.8966],[76.31358,15.89471],[76.30561,15.89319],[76.30064,15.89566],[76.29073,15.89227],[76.28535,15.90271],[76.2761,15.90381],[76.27757,15.9094],[76.27597,15.91047],[76.27438,15.9105],[76.27157,15.90498],[76.26207,15.90667],[76.26138,15.91482],[76.25726,15.91538],[76.25689,15.92277],[76.22994,15.92322],[76.22655,15.94087],[76.20038,15.94381],[76.20105,15.93829],[76.19966,15.93512],[76.18996,15.93168],[76.17233,15.9316],[76.17201,15.92467],[76.16432,15.92132],[76.16052,15.92122],[76.15697,15.91607],[76.15397,15.91481],[76.14524,15.89531],[76.12536,15.89367],[76.11723,15.88634],[76.10301,15.89391],[76.10117,15.90055],[76.07059,15.90265],[76.05817,15.90737],[76.06272,15.91547],[76.06262,15.91985],[76.07082,15.94845],[76.07259,15.96525],[76.07811,15.97582],[76.08446,15.99615],[76.08373,16.001],[76.07878,16.01079],[76.06523,16.01076]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"544","area_level":"District","area_name":"Mandya","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.98266,12.25554],[76.98295,12.2573],[76.98435,12.25871],[76.98574,12.26062],[76.98371,12.26573],[76.98258,12.26811],[76.98241,12.26911],[76.98199,12.27023],[76.97943,12.27249],[76.97369,12.27374],[76.96957,12.27498],[76.96912,12.27393],[76.96925,12.27374],[76.96928,12.27294],[76.96914,12.27154],[76.96948,12.27115],[76.96915,12.2654],[76.96909,12.25857],[76.97043,12.25824],[76.97049,12.25524],[76.97186,12.25502],[76.97205,12.25339],[76.97303,12.25327],[76.97312,12.2529],[76.97495,12.25278],[76.97502,12.25321],[76.97596,12.25319],[76.97613,12.25438],[76.98236,12.25452],[76.98266,12.25554]]],[[[76.91721,12.38181],[76.91116,12.38346],[76.91047,12.38048],[76.9105,12.37859],[76.90996,12.37488],[76.90794,12.37574],[76.90272,12.37575],[76.90269,12.37542],[76.90171,12.37536],[76.90168,12.37475],[76.90092,12.37468],[76.9009,12.37427],[76.89896,12.37372],[76.89904,12.37215],[76.89843,12.36456],[76.89852,12.36083],[76.89838,12.35966],[76.8976,12.35808],[76.89828,12.3567],[76.90257,12.35701],[76.90254,12.3559],[76.90325,12.35593],[76.90323,12.3555],[76.90403,12.35545],[76.90405,12.35579],[76.90468,12.35583],[76.90469,12.35605],[76.90945,12.356],[76.90927,12.35202],[76.91102,12.35207],[76.91102,12.35243],[76.91319,12.3526],[76.91366,12.35797],[76.91778,12.35899],[76.91948,12.35884],[76.91951,12.35906],[76.92011,12.35905],[76.92011,12.3618],[76.91946,12.36186],[76.919,12.36371],[76.91823,12.36374],[76.91813,12.36488],[76.91784,12.36491],[76.91793,12.36692],[76.91753,12.36728],[76.91865,12.36908],[76.92055,12.37124],[76.92143,12.37331],[76.92219,12.37359],[76.92274,12.3785],[76.9229,12.38208],[76.921,12.38178],[76.91721,12.38181]]],[[[76.68323,13.04567],[76.68036,13.04767],[76.67722,13.0538],[76.67279,13.05534],[76.65949,13.02017],[76.65844,13.02032],[76.65758,13.01326],[76.65256,13.00726],[76.64073,13.00949],[76.63691,13.00845],[76.63224,13.00417],[76.62983,12.99429],[76.63228,12.99336],[76.63376,12.984],[76.63357,12.98126],[76.63119,12.98157],[76.63176,12.97336],[76.62925,12.97279],[76.62215,12.96581],[76.61182,12.96529],[76.61198,12.95891],[76.61745,12.95509],[76.61803,12.94556],[76.61621,12.93711],[76.606,12.93858],[76.60314,12.92295],[76.59924,12.92364],[76.59653,12.92115],[76.59955,12.90467],[76.59104,12.89085],[76.59649,12.88094],[76.5832,12.87299],[76.57911,12.87314],[76.57999,12.87152],[76.5752,12.86592],[76.57719,12.86105],[76.57772,12.84693],[76.57229,12.84488],[76.55407,12.84533],[76.54663,12.84018],[76.53552,12.84425],[76.52953,12.84109],[76.52053,12.84136],[76.51749,12.83376],[76.51828,12.82634],[76.51002,12.82216],[76.5029,12.82195],[76.49307,12.8116],[76.49011,12.80643],[76.49389,12.80547],[76.49436,12.8027],[76.49059,12.78857],[76.49437,12.78267],[76.49978,12.7803],[76.4994,12.77231],[76.49285,12.76723],[76.49012,12.77306],[76.49164,12.77969],[76.48961,12.78576],[76.47817,12.78063],[76.47812,12.7728],[76.47479,12.77169],[76.46981,12.77297],[76.46527,12.77687],[76.4585,12.77736],[76.45504,12.78102],[76.45757,12.78884],[76.46175,12.78919],[76.46592,12.79327],[76.46832,12.7935],[76.46933,12.79727],[76.47129,12.79743],[76.47139,12.79873],[76.46907,12.79969],[76.46951,12.8024],[76.46429,12.80602],[76.46246,12.80296],[76.45798,12.80447],[76.45673,12.80836],[76.45088,12.81186],[76.44742,12.81893],[76.44608,12.81889],[76.44593,12.82333],[76.42532,12.82498],[76.42014,12.84171],[76.42127,12.84532],[76.42516,12.8454],[76.42655,12.85037],[76.42532,12.85792],[76.41764,12.8582],[76.41564,12.86329],[76.41357,12.86443],[76.4072,12.865],[76.40853,12.84402],[76.40414,12.8466],[76.40238,12.84571],[76.39694,12.8475],[76.39053,12.8445],[76.38617,12.84512],[76.38549,12.84351],[76.38771,12.84146],[76.38288,12.83111],[76.37745,12.82808],[76.37479,12.83153],[76.36945,12.82864],[76.36696,12.8243],[76.37082,12.81427],[76.36829,12.80904],[76.34901,12.80929],[76.34467,12.8116],[76.33443,12.81254],[76.33182,12.81195],[76.32992,12.80756],[76.33024,12.7997],[76.33477,12.78719],[76.33847,12.78595],[76.34833,12.78689],[76.3496,12.78558],[76.34763,12.78033],[76.34999,12.77443],[76.34962,12.77087],[76.34325,12.76698],[76.34252,12.76167],[76.35284,12.75123],[76.35709,12.75003],[76.35528,12.74384],[76.35123,12.74254],[76.34812,12.74445],[76.34408,12.7423],[76.34567,12.73754],[76.34131,12.73204],[76.34327,12.72992],[76.3479,12.716],[76.35493,12.71088],[76.36152,12.71183],[76.36284,12.70594],[76.36183,12.69301],[76.35919,12.69222],[76.36003,12.68687],[76.35374,12.68521],[76.35288,12.66796],[76.34749,12.66795],[76.34191,12.65935],[76.34198,12.65568],[76.35161,12.65071],[76.35219,12.63973],[76.36258,12.6286],[76.36348,12.60767],[76.36995,12.60613],[76.36896,12.60338],[76.37273,12.59716],[76.37675,12.57657],[76.39615,12.57332],[76.39743,12.56903],[76.3912,12.56542],[76.38886,12.56052],[76.38831,12.55805],[76.39085,12.55184],[76.40296,12.55296],[76.41129,12.55788],[76.41478,12.54855],[76.42766,12.54226],[76.42737,12.53885],[76.42475,12.53873],[76.42276,12.53257],[76.4302,12.52766],[76.43551,12.52163],[76.43812,12.51098],[76.44277,12.50649],[76.44929,12.50905],[76.45216,12.50538],[76.44884,12.49734],[76.44946,12.48736],[76.45174,12.4836],[76.46395,12.47562],[76.47676,12.47313],[76.48841,12.46782],[76.49525,12.46187],[76.49903,12.45318],[76.50191,12.45147],[76.51038,12.45334],[76.53177,12.44165],[76.54807,12.4397],[76.55419,12.43318],[76.56733,12.42595],[76.56535,12.39909],[76.55829,12.40007],[76.55505,12.39188],[76.55923,12.38996],[76.56029,12.38375],[76.56623,12.38173],[76.56371,12.37126],[76.56016,12.36473],[76.56477,12.35148],[76.57165,12.34797],[76.57563,12.34832],[76.59203,12.35595],[76.58971,12.35852],[76.59009,12.36159],[76.5929,12.36209],[76.59499,12.36567],[76.60795,12.36781],[76.61198,12.36661],[76.62201,12.36756],[76.62485,12.36928],[76.62688,12.37786],[76.64077,12.38489],[76.64347,12.39516],[76.64858,12.39692],[76.65508,12.39564],[76.66308,12.38668],[76.66837,12.38711],[76.66872,12.38926],[76.67319,12.39085],[76.68278,12.39107],[76.68137,12.38644],[76.68316,12.38289],[76.68615,12.38238],[76.68137,12.37156],[76.68187,12.36686],[76.68328,12.36556],[76.6875,12.36639],[76.68863,12.36433],[76.69016,12.36452],[76.69192,12.35876],[76.70019,12.35059],[76.71333,12.3552],[76.715,12.35732],[76.71897,12.35656],[76.71767,12.3516],[76.72178,12.35034],[76.72267,12.34816],[76.72839,12.34534],[76.73053,12.34252],[76.73209,12.33029],[76.73166,12.31649],[76.73707,12.32113],[76.74342,12.31817],[76.74488,12.31049],[76.75399,12.30212],[76.75556,12.30417],[76.75905,12.30387],[76.75933,12.30656],[76.76388,12.31173],[76.76432,12.32417],[76.76174,12.34127],[76.7655,12.34564],[76.76568,12.3504],[76.7778,12.35235],[76.78146,12.35149],[76.78236,12.34672],[76.78976,12.34706],[76.79526,12.35464],[76.80077,12.35594],[76.80282,12.35503],[76.80281,12.36736],[76.80658,12.35991],[76.81142,12.36293],[76.8147,12.38698],[76.82815,12.38859],[76.83324,12.38452],[76.83422,12.39585],[76.83021,12.40028],[76.8324,12.40252],[76.8483,12.40321],[76.85267,12.40866],[76.85437,12.40867],[76.86166,12.40626],[76.86197,12.39974],[76.87759,12.39974],[76.88077,12.40051],[76.87973,12.40442],[76.88093,12.40516],[76.90028,12.40887],[76.89861,12.41485],[76.90037,12.41682],[76.90012,12.41978],[76.90636,12.42245],[76.90345,12.42676],[76.90492,12.43668],[76.91321,12.44016],[76.91743,12.43966],[76.91853,12.44139],[76.92242,12.4418],[76.92778,12.42943],[76.9274,12.42362],[76.9243,12.42247],[76.92445,12.42105],[76.93062,12.41385],[76.93766,12.40034],[76.9368,12.36943],[76.93901,12.3526],[76.92422,12.35312],[76.92344,12.34954],[76.92532,12.34412],[76.92829,12.33913],[76.93189,12.33817],[76.92758,12.32575],[76.92192,12.32165],[76.92807,12.32264],[76.93042,12.3248],[76.93344,12.32479],[76.93349,12.32368],[76.94802,12.33043],[76.95324,12.32926],[76.95449,12.32638],[76.95766,12.32691],[76.95953,12.33651],[76.95634,12.35233],[76.95906,12.3528],[76.95893,12.35566],[76.97118,12.35243],[76.97688,12.35275],[76.97683,12.32771],[76.98166,12.327],[76.98657,12.33345],[76.98716,12.31942],[76.99139,12.31617],[76.99136,12.31363],[76.99793,12.31305],[76.99301,12.30058],[76.98741,12.3008],[76.98389,12.30472],[76.98039,12.30589],[76.98078,12.30712],[76.97697,12.30711],[76.97167,12.29031],[76.982,12.28561],[76.98622,12.28506],[76.99073,12.28698],[76.98959,12.25611],[76.9938,12.25181],[76.99528,12.24217],[77.01318,12.24411],[77.02554,12.23983],[77.03625,12.23223],[77.03717,12.23404],[77.04715,12.23367],[77.04995,12.2386],[77.05558,12.23891],[77.06462,12.23289],[77.06922,12.23506],[77.06931,12.237],[77.07874,12.23649],[77.07785,12.22125],[77.07968,12.2211],[77.08108,12.22314],[77.08834,12.21791],[77.10617,12.22055],[77.10647,12.23407],[77.10852,12.2408],[77.11362,12.24037],[77.12406,12.24268],[77.12965,12.24866],[77.14492,12.24985],[77.15203,12.25602],[77.16295,12.25634],[77.17004,12.25976],[77.16462,12.28084],[77.16597,12.28319],[77.16999,12.28503],[77.16853,12.29413],[77.16984,12.30064],[77.16678,12.31018],[77.17333,12.30914],[77.17893,12.31052],[77.19104,12.30763],[77.21038,12.30727],[77.21762,12.30861],[77.22096,12.30463],[77.22513,12.30337],[77.23681,12.31021],[77.24888,12.30832],[77.26796,12.31406],[77.28661,12.30423],[77.29516,12.30289],[77.30275,12.2987],[77.3076,12.29941],[77.31614,12.3057],[77.3253,12.30795],[77.32269,12.31274],[77.32507,12.32647],[77.3338,12.35418],[77.33057,12.36213],[77.31337,12.39237],[77.30158,12.39083],[77.28593,12.39307],[77.28435,12.40676],[77.28181,12.4072],[77.28172,12.40924],[77.28407,12.40919],[77.28179,12.42081],[77.28598,12.42084],[77.28521,12.42868],[77.27333,12.42955],[77.27004,12.43398],[77.27479,12.43963],[77.26915,12.4648],[77.26432,12.46162],[77.25761,12.4635],[77.25422,12.47032],[77.24517,12.46796],[77.24341,12.47002],[77.23619,12.47],[77.23517,12.48342],[77.22979,12.48367],[77.22962,12.47978],[77.22721,12.4795],[77.22546,12.47443],[77.2258,12.48948],[77.23596,12.48633],[77.2386,12.4894],[77.23781,12.4999],[77.22409,12.50258],[77.22396,12.49548],[77.22224,12.49154],[77.21655,12.49224],[77.21327,12.48507],[77.2058,12.48519],[77.20591,12.49056],[77.20016,12.49054],[77.19783,12.48325],[77.19484,12.48372],[77.19299,12.48192],[77.17819,12.47932],[77.17578,12.4803],[77.17585,12.48257],[77.16812,12.48527],[77.16476,12.47503],[77.15777,12.4755],[77.15069,12.46474],[77.14719,12.46204],[77.14141,12.46318],[77.13797,12.4662],[77.13442,12.47187],[77.13304,12.4792],[77.12538,12.48024],[77.12391,12.4844],[77.13062,12.4977],[77.12991,12.50955],[77.1317,12.51865],[77.12504,12.52328],[77.12729,12.5318],[77.12529,12.53541],[77.12065,12.54114],[77.11454,12.54301],[77.11448,12.55332],[77.12005,12.55561],[77.1278,12.55335],[77.12848,12.56995],[77.12346,12.57362],[77.11694,12.58197],[77.1142,12.59646],[77.10998,12.59668],[77.1081,12.60842],[77.11104,12.61617],[77.1225,12.61949],[77.12236,12.62365],[77.11903,12.62725],[77.11676,12.6273],[77.11672,12.62871],[77.10466,12.62766],[77.1032,12.63048],[77.10037,12.63049],[77.09922,12.67332],[77.09752,12.67551],[77.08029,12.67623],[77.07368,12.68069],[77.07569,12.68489],[77.07375,12.68506],[77.07285,12.68949],[77.07281,12.70418],[77.07648,12.71263],[77.07772,12.72156],[77.07925,12.72207],[77.08139,12.73141],[77.0801,12.73367],[77.08376,12.74122],[77.08052,12.74645],[77.0767,12.74554],[77.06736,12.75831],[77.06093,12.75576],[77.05922,12.75181],[77.05629,12.75233],[77.04887,12.74742],[77.05031,12.75064],[77.04699,12.75969],[77.04362,12.77807],[77.03447,12.76883],[77.02589,12.76672],[77.02524,12.76312],[77.00918,12.76431],[77.0064,12.77272],[77.00962,12.78243],[76.99827,12.77591],[76.99086,12.78627],[76.98359,12.78995],[76.98337,12.79296],[76.97724,12.79263],[76.97565,12.79101],[76.97284,12.79919],[76.97307,12.80354],[76.95632,12.80411],[76.95067,12.80154],[76.9413,12.80561],[76.93285,12.80048],[76.92898,12.80333],[76.92455,12.804],[76.91821,12.81501],[76.91884,12.81796],[76.90578,12.82835],[76.90527,12.83494],[76.90164,12.83861],[76.90018,12.84479],[76.89227,12.8471],[76.89446,12.8739],[76.88915,12.89742],[76.87317,12.89711],[76.87288,12.89945],[76.87078,12.89915],[76.86548,12.90499],[76.86455,12.91347],[76.86719,12.91863],[76.87494,12.91848],[76.88071,12.9196],[76.88048,12.92099],[76.89025,12.91862],[76.89621,12.92049],[76.89285,12.92422],[76.89149,12.9326],[76.88836,12.93511],[76.88439,12.93511],[76.87025,12.92934],[76.86261,12.92789],[76.86246,12.93466],[76.85712,12.93772],[76.84968,12.93833],[76.84868,12.94409],[76.8396,12.94581],[76.84178,12.95636],[76.83968,12.97348],[76.85047,12.97345],[76.85288,12.97865],[76.84534,12.98424],[76.84426,12.98753],[76.82746,12.99875],[76.83019,13.00064],[76.82965,13.0022],[76.81984,13.00502],[76.81469,13.01371],[76.80753,13.01218],[76.79486,13.01511],[76.78584,13.01526],[76.78311,13.0294],[76.77167,13.03436],[76.75915,13.03679],[76.75743,13.03523],[76.75781,13.03682],[76.75541,13.03731],[76.75095,13.03582],[76.72528,13.04124],[76.70869,13.03978],[76.7021,13.04146],[76.69352,13.03671],[76.68659,13.04445],[76.68323,13.04567]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"545","area_level":"District","area_name":"Mysuru","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.36372,12.61212],[76.36298,12.62744],[76.35219,12.63973],[76.35161,12.65071],[76.34198,12.65568],[76.33809,12.65322],[76.3381,12.64645],[76.33242,12.64467],[76.32349,12.63506],[76.32842,12.62665],[76.32836,12.61475],[76.32659,12.61094],[76.32128,12.61219],[76.30632,12.61039],[76.30977,12.62247],[76.30517,12.62508],[76.30426,12.62184],[76.30147,12.62193],[76.30034,12.62915],[76.29255,12.62629],[76.29059,12.61656],[76.28642,12.61553],[76.28027,12.61665],[76.27929,12.62543],[76.28214,12.62978],[76.27956,12.63114],[76.27982,12.63371],[76.26542,12.62885],[76.26733,12.6232],[76.26493,12.61929],[76.25747,12.62219],[76.25667,12.62042],[76.25455,12.62028],[76.25333,12.62376],[76.24578,12.62593],[76.24674,12.63591],[76.24569,12.63695],[76.23976,12.63804],[76.2319,12.64354],[76.21913,12.64427],[76.20936,12.63678],[76.20573,12.62896],[76.21345,12.62791],[76.21591,12.6248],[76.21543,12.62166],[76.21229,12.61663],[76.20544,12.61688],[76.20098,12.6103],[76.20058,12.60539],[76.19199,12.59411],[76.19213,12.58746],[76.1965,12.5773],[76.1837,12.57736],[76.18207,12.57495],[76.16853,12.58043],[76.15908,12.57862],[76.15237,12.57957],[76.14927,12.57463],[76.14807,12.56622],[76.15242,12.56592],[76.15773,12.56279],[76.15319,12.55737],[76.14968,12.54927],[76.15132,12.54715],[76.14261,12.54522],[76.14089,12.53662],[76.13863,12.53824],[76.13442,12.53698],[76.13335,12.52874],[76.11685,12.52884],[76.11418,12.52695],[76.11891,12.51876],[76.11532,12.5166],[76.11532,12.51282],[76.11189,12.51244],[76.11002,12.51799],[76.10607,12.51734],[76.10456,12.52235],[76.10317,12.52191],[76.10161,12.52585],[76.10325,12.52908],[76.09941,12.52807],[76.09726,12.53256],[76.09314,12.53335],[76.0924,12.53562],[76.09025,12.53538],[76.08858,12.53833],[76.08616,12.5388],[76.08844,12.54206],[76.09095,12.54282],[76.09065,12.54564],[76.08961,12.54419],[76.0871,12.54613],[76.08549,12.54372],[76.07492,12.54802],[76.07448,12.55007],[76.07105,12.54922],[76.07058,12.55585],[76.06754,12.55727],[76.05207,12.5542],[76.0487,12.55951],[76.04939,12.56337],[76.04556,12.57696],[76.03422,12.57345],[76.03363,12.57573],[76.03148,12.57633],[76.02967,12.57512],[76.02173,12.57687],[76.01906,12.57159],[76.01881,12.56691],[76.01184,12.56077],[76.01246,12.5542],[76.00761,12.55529],[75.99645,12.56263],[75.99126,12.56145],[75.99087,12.55613],[75.998,12.55135],[75.9989,12.54742],[75.99492,12.54104],[75.98667,12.54505],[75.98465,12.54436],[75.9834,12.54043],[75.99344,12.52964],[75.99394,12.5221],[75.9862,12.51973],[75.97665,12.52063],[75.97462,12.51875],[75.97253,12.51185],[75.96413,12.50927],[75.96162,12.5054],[75.96196,12.49783],[75.95816,12.48986],[75.96056,12.48434],[75.96464,12.4846],[75.96643,12.48313],[75.96665,12.47822],[75.96405,12.47427],[75.96798,12.47111],[75.97161,12.47083],[75.96694,12.46451],[75.96767,12.45663],[75.97164,12.45098],[75.97118,12.44938],[75.96652,12.44728],[75.96043,12.45145],[75.94899,12.44994],[75.93927,12.44502],[75.93492,12.44086],[75.92905,12.43951],[75.92217,12.42953],[75.9234,12.42335],[75.922,12.42054],[75.9153,12.40953],[75.91135,12.40716],[75.90868,12.39946],[75.91313,12.38557],[75.91618,12.3883],[75.93232,12.38229],[75.93761,12.37236],[75.95374,12.35187],[75.95685,12.35007],[75.96049,12.34387],[75.97047,12.34557],[75.97508,12.34223],[75.98172,12.34245],[75.9932,12.33609],[75.99636,12.3315],[76.00109,12.33055],[76.00128,12.32898],[75.99445,12.32055],[75.99473,12.31738],[75.99713,12.3163],[75.99909,12.30739],[76.00466,12.30537],[76.01452,12.29225],[76.01465,12.28389],[76.01746,12.27226],[76.01477,12.2711],[76.0151,12.26667],[76.02064,12.25378],[76.02468,12.24882],[76.0254,12.25126],[76.04025,12.25261],[76.05093,12.24847],[76.05187,12.24638],[76.06224,12.24905],[76.07381,12.24009],[76.0745,12.2341],[76.08402,12.22032],[76.09318,12.21366],[76.09519,12.2076],[76.10187,12.19721],[76.11875,12.19066],[76.12925,12.19484],[76.13315,12.19155],[76.13716,12.17381],[76.1415,12.16757],[76.1442,12.15454],[76.15001,12.14386],[76.16155,12.13363],[76.16472,12.12596],[76.17094,12.11874],[76.17189,12.10625],[76.17659,12.09937],[76.17496,12.08231],[76.17578,12.07611],[76.17869,12.06821],[76.18303,12.06337],[76.18926,12.05004],[76.18278,12.03234],[76.16585,12.02634],[76.15204,12.01937],[76.14896,12.0161],[76.14758,12.00981],[76.13913,12.00389],[76.13664,11.99658],[76.12829,11.98568],[76.12451,11.98306],[76.11693,11.98269],[76.11236,11.97861],[76.11337,11.89521],[76.11176,11.88736],[76.1149,11.86683],[76.11302,11.85845],[76.11785,11.85719],[76.11704,11.85485],[76.12015,11.85034],[76.13229,11.85387],[76.14608,11.867],[76.1494,11.86642],[76.15603,11.87014],[76.16481,11.86757],[76.1735,11.87121],[76.17881,11.87017],[76.18672,11.87196],[76.19039,11.87121],[76.19838,11.86655],[76.20201,11.86241],[76.20747,11.86154],[76.21026,11.84422],[76.21311,11.84262],[76.20989,11.82817],[76.21709,11.82157],[76.21821,11.81436],[76.22372,11.8082],[76.22935,11.80531],[76.24558,11.80293],[76.25,11.80337],[76.25964,11.80869],[76.27369,11.81063],[76.27687,11.81237],[76.28022,11.81161],[76.28488,11.8003],[76.29024,11.79283],[76.29403,11.79176],[76.30117,11.78563],[76.30558,11.7859],[76.3077,11.78422],[76.31071,11.7673],[76.31362,11.76357],[76.31445,11.75691],[76.31727,11.75213],[76.32914,11.74828],[76.33484,11.74464],[76.33974,11.739],[76.3502,11.74024],[76.35222,11.73819],[76.36282,11.74837],[76.36846,11.74814],[76.37699,11.74454],[76.38395,11.7472],[76.39129,11.75477],[76.3934,11.75503],[76.39864,11.75081],[76.40521,11.75637],[76.41062,11.75887],[76.41426,11.7588],[76.41382,11.76182],[76.41777,11.76775],[76.42156,11.77002],[76.4229,11.77625],[76.41876,11.77609],[76.41417,11.77873],[76.41636,11.78493],[76.41301,11.78794],[76.4164,11.78986],[76.42171,11.78999],[76.42274,11.79211],[76.42143,11.79559],[76.42664,11.79333],[76.42873,11.79547],[76.42523,11.79916],[76.42433,11.80462],[76.42078,11.80285],[76.41221,11.80788],[76.40992,11.81123],[76.41315,11.81189],[76.42084,11.8068],[76.42945,11.80367],[76.44938,11.79946],[76.45803,11.79327],[76.4622,11.79264],[76.46884,11.81912],[76.49278,11.82208],[76.48825,11.84339],[76.48937,11.85699],[76.49115,11.86102],[76.50285,11.86155],[76.53467,11.87322],[76.55367,11.85863],[76.55699,11.89469],[76.56199,11.904],[76.57018,11.90786],[76.5766,11.92352],[76.5703,11.92807],[76.57128,11.94012],[76.55747,11.94887],[76.57429,11.9684],[76.57825,11.98825],[76.58654,11.98547],[76.59207,11.9873],[76.59598,11.98431],[76.60516,11.99036],[76.61336,11.99156],[76.63188,11.98356],[76.64278,11.98282],[76.65112,12.00791],[76.67193,12.00602],[76.67332,12.00203],[76.68049,12.00052],[76.69458,12.00042],[76.7015,11.99782],[76.7017,11.99155],[76.70439,11.99079],[76.70513,11.98508],[76.71725,11.98493],[76.7192,11.9907],[76.72942,11.99054],[76.73191,11.9939],[76.73276,12.00247],[76.73605,12.00312],[76.73663,12.00521],[76.74044,12.00687],[76.74092,12.00927],[76.74623,12.00834],[76.74581,12.00244],[76.75115,11.99989],[76.76666,11.99917],[76.76847,11.99187],[76.78059,11.98774],[76.77988,11.98525],[76.79368,11.98627],[76.79362,11.98885],[76.79722,11.98893],[76.79766,11.9986],[76.79539,12.00481],[76.79168,12.00549],[76.79206,12.01071],[76.79916,12.01741],[76.80594,12.01826],[76.80557,12.0207],[76.81064,12.02171],[76.8117,12.02683],[76.82031,12.02723],[76.8227,12.01776],[76.8213,12.01083],[76.82808,12.00926],[76.83341,12.00435],[76.83741,12.00359],[76.83646,11.99978],[76.85659,11.99954],[76.85676,12.00245],[76.85828,12.00242],[76.85825,12.00759],[76.87301,12.00545],[76.88311,12.01544],[76.88588,12.00124],[76.89297,11.99864],[76.90422,11.99898],[76.91863,12.00734],[76.92367,12.01306],[76.9361,12.0131],[76.93828,12.01768],[76.93884,12.02624],[76.91506,12.02588],[76.9135,12.035],[76.91052,12.03597],[76.91006,12.04108],[76.90461,12.04196],[76.90231,12.04481],[76.90163,12.04304],[76.89933,12.04323],[76.90067,12.04649],[76.8905,12.04899],[76.89069,12.05821],[76.88739,12.05708],[76.88134,12.05799],[76.86992,12.0553],[76.86831,12.05973],[76.85345,12.05981],[76.85405,12.06218],[76.87004,12.06309],[76.87411,12.07565],[76.88414,12.08254],[76.88204,12.0876],[76.88101,12.09878],[76.87905,12.10055],[76.87967,12.10371],[76.87761,12.10536],[76.87667,12.11518],[76.867,12.11738],[76.85441,12.11616],[76.84768,12.11872],[76.84575,12.11316],[76.84495,12.11926],[76.83742,12.12438],[76.83155,12.13187],[76.83105,12.13535],[76.83298,12.13559],[76.83906,12.145],[76.84106,12.14541],[76.84075,12.15606],[76.85347,12.15944],[76.85053,12.16356],[76.84686,12.16414],[76.84556,12.16742],[76.8459,12.1688],[76.85321,12.17035],[76.85201,12.17926],[76.85549,12.18068],[76.86261,12.1803],[76.86355,12.17652],[76.86591,12.17712],[76.86563,12.1745],[76.87137,12.17396],[76.86955,12.16176],[76.8678,12.16178],[76.87104,12.15177],[76.8699,12.14823],[76.87138,12.14127],[76.88196,12.12949],[76.89025,12.13083],[76.89094,12.12107],[76.90261,12.12264],[76.90268,12.11627],[76.90632,12.11331],[76.92358,12.11412],[76.92617,12.10912],[76.93043,12.10876],[76.93058,12.1068],[76.93439,12.10575],[76.93723,12.10117],[76.94881,12.09742],[76.94884,12.09876],[76.95201,12.09871],[76.95431,12.1019],[76.97042,12.11254],[76.97083,12.11663],[76.96891,12.11676],[76.96939,12.12288],[76.97586,12.12267],[76.97624,12.13426],[76.97915,12.13428],[76.98206,12.13628],[76.98226,12.13825],[76.98643,12.13805],[76.98669,12.14076],[76.98912,12.14044],[76.98939,12.1548],[76.98803,12.16157],[76.99039,12.16247],[76.99002,12.17469],[76.99308,12.17662],[76.99867,12.17714],[76.99748,12.16696],[77.0025,12.16543],[77.00388,12.15987],[77.01425,12.16323],[77.01333,12.156],[77.01122,12.15357],[77.01165,12.15054],[77.01336,12.15017],[77.01298,12.13733],[77.01556,12.13726],[77.01603,12.13375],[77.03699,12.13919],[77.0398,12.1283],[77.04375,12.13111],[77.04433,12.13566],[77.04573,12.13604],[77.04433,12.14205],[77.04087,12.13967],[77.03953,12.14185],[77.03925,12.14722],[77.03959,12.15052],[77.04589,12.1608],[77.04455,12.16199],[77.04471,12.16918],[77.06143,12.17095],[77.0846,12.19102],[77.09961,12.19125],[77.1074,12.18979],[77.1141,12.19435],[77.12231,12.19717],[77.12574,12.20312],[77.13191,12.20724],[77.13155,12.21722],[77.13428,12.22663],[77.13247,12.22996],[77.12567,12.23507],[77.12406,12.24268],[77.10842,12.24071],[77.10647,12.23407],[77.10617,12.22055],[77.08834,12.21791],[77.08108,12.22314],[77.07968,12.2211],[77.07785,12.22125],[77.07874,12.23649],[77.06931,12.237],[77.06922,12.23506],[77.06462,12.23289],[77.05558,12.23891],[77.04995,12.2386],[77.04715,12.23367],[77.03717,12.23404],[77.03625,12.23223],[77.02554,12.23983],[77.01318,12.24411],[76.99528,12.24217],[76.9938,12.25181],[76.98959,12.25611],[76.99073,12.28698],[76.98622,12.28506],[76.982,12.28561],[76.97167,12.29031],[76.97697,12.30711],[76.98078,12.30712],[76.98039,12.30589],[76.98389,12.30472],[76.98741,12.3008],[76.99301,12.30058],[76.99793,12.31305],[76.99136,12.31363],[76.99139,12.31617],[76.98716,12.31942],[76.98657,12.33345],[76.98166,12.327],[76.97683,12.32771],[76.97688,12.35275],[76.97118,12.35243],[76.95893,12.35566],[76.95906,12.3528],[76.95634,12.35233],[76.95953,12.33651],[76.95766,12.32691],[76.95449,12.32638],[76.95324,12.32926],[76.94802,12.33043],[76.93349,12.32368],[76.93344,12.32479],[76.93042,12.3248],[76.92807,12.32264],[76.92192,12.32165],[76.92758,12.32575],[76.93189,12.33817],[76.92829,12.33913],[76.92532,12.34412],[76.92344,12.34954],[76.92422,12.35312],[76.93901,12.3526],[76.9368,12.36943],[76.93766,12.40034],[76.93062,12.41385],[76.92445,12.42105],[76.9243,12.42247],[76.9274,12.42362],[76.92778,12.42943],[76.92242,12.4418],[76.91853,12.44139],[76.91743,12.43966],[76.91321,12.44016],[76.90492,12.43668],[76.90345,12.42676],[76.90636,12.42245],[76.90012,12.41978],[76.90037,12.41682],[76.89861,12.41485],[76.90028,12.40887],[76.88093,12.40516],[76.87973,12.40442],[76.88077,12.40051],[76.87759,12.39974],[76.86197,12.39974],[76.86166,12.40626],[76.85437,12.40867],[76.85267,12.40866],[76.8483,12.40321],[76.8324,12.40252],[76.83021,12.40028],[76.83422,12.39585],[76.83324,12.38452],[76.82815,12.38859],[76.8147,12.38698],[76.81142,12.36293],[76.80658,12.35991],[76.80281,12.36736],[76.80282,12.35503],[76.80077,12.35594],[76.79526,12.35464],[76.78976,12.34706],[76.78236,12.34672],[76.78146,12.35149],[76.7778,12.35235],[76.76568,12.3504],[76.7655,12.34564],[76.76174,12.34127],[76.76432,12.32417],[76.76388,12.31173],[76.75933,12.30656],[76.75905,12.30387],[76.75556,12.30417],[76.75399,12.30212],[76.74488,12.31049],[76.74342,12.31817],[76.73707,12.32113],[76.73166,12.31649],[76.73209,12.33029],[76.73053,12.34252],[76.72839,12.34534],[76.72267,12.34816],[76.72178,12.35034],[76.71767,12.3516],[76.71897,12.35656],[76.715,12.35732],[76.71333,12.3552],[76.70019,12.35059],[76.69192,12.35876],[76.69016,12.36452],[76.68863,12.36433],[76.6875,12.36639],[76.68328,12.36556],[76.68187,12.36686],[76.68137,12.37156],[76.68615,12.38238],[76.68316,12.38289],[76.68137,12.38644],[76.68278,12.39107],[76.67319,12.39085],[76.66872,12.38926],[76.66837,12.38711],[76.66308,12.38668],[76.65508,12.39564],[76.64858,12.39692],[76.64347,12.39516],[76.64077,12.38489],[76.62688,12.37786],[76.62485,12.36928],[76.62201,12.36756],[76.61198,12.36661],[76.60795,12.36781],[76.59499,12.36567],[76.5929,12.36209],[76.59009,12.36159],[76.58971,12.35852],[76.59203,12.35595],[76.57412,12.34791],[76.56607,12.35065],[76.56016,12.36473],[76.56371,12.37126],[76.56623,12.38173],[76.56029,12.38375],[76.55923,12.38996],[76.55505,12.39188],[76.55829,12.40007],[76.56535,12.39909],[76.56733,12.42595],[76.55419,12.43318],[76.54807,12.4397],[76.53177,12.44165],[76.51038,12.45334],[76.50191,12.45147],[76.49903,12.45318],[76.49525,12.46187],[76.48841,12.46782],[76.47676,12.47313],[76.46395,12.47562],[76.45174,12.4836],[76.44946,12.48736],[76.44884,12.49734],[76.45216,12.50538],[76.44929,12.50905],[76.44277,12.50649],[76.43812,12.51098],[76.43551,12.52163],[76.4302,12.52766],[76.42276,12.53257],[76.42475,12.53873],[76.42737,12.53885],[76.42766,12.54226],[76.41478,12.54855],[76.41129,12.55788],[76.40296,12.55296],[76.39027,12.55228],[76.38886,12.56052],[76.3912,12.56542],[76.39743,12.56903],[76.39615,12.57332],[76.37675,12.57657],[76.37273,12.59716],[76.36896,12.60338],[76.36995,12.60613],[76.36348,12.60767],[76.36372,12.61212]],[[76.96928,12.27294],[76.96957,12.27498],[76.97943,12.27249],[76.98199,12.27023],[76.98574,12.26062],[76.98236,12.25452],[76.97613,12.25438],[76.97495,12.25278],[76.97049,12.25524],[76.97043,12.25824],[76.96909,12.25857],[76.96928,12.27294]],[[76.91319,12.3526],[76.90927,12.35202],[76.90945,12.356],[76.89828,12.3567],[76.89896,12.37372],[76.90272,12.37575],[76.90996,12.37488],[76.91116,12.38346],[76.9229,12.38208],[76.92219,12.37359],[76.91753,12.36728],[76.92011,12.35905],[76.91366,12.35797],[76.91319,12.3526]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"546","area_level":"District","area_name":"Raichur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.28796,16.40864],[77.27208,16.40391],[77.26346,16.40423],[77.24788,16.4156],[77.24287,16.41759],[77.20763,16.42382],[77.20419,16.42574],[77.17334,16.43258],[77.1622,16.44526],[77.16507,16.45092],[77.16411,16.46016],[77.15606,16.47265],[77.14301,16.47993],[77.1228,16.48166],[77.10328,16.48898],[77.09766,16.49373],[77.09215,16.49345],[77.08696,16.49898],[77.06873,16.50757],[77.05764,16.51978],[77.0536,16.52087],[77.04397,16.5183],[77.02558,16.5016],[77.01322,16.49958],[77.0053,16.51556],[77.00537,16.52192],[77.0101,16.54276],[77.00741,16.55003],[76.99431,16.56019],[76.98522,16.56205],[76.97599,16.56017],[76.97059,16.55419],[76.96805,16.54458],[76.96965,16.53441],[76.97656,16.51665],[76.9734,16.50565],[76.97133,16.50375],[76.95646,16.50319],[76.9412,16.49962],[76.93052,16.49578],[76.91183,16.48489],[76.90632,16.48476],[76.88225,16.49238],[76.86985,16.4893],[76.86322,16.48257],[76.86276,16.47859],[76.86455,16.4758],[76.8659,16.46683],[76.86471,16.45683],[76.86193,16.45473],[76.85445,16.44129],[76.84826,16.43487],[76.84101,16.43044],[76.82886,16.42577],[76.78549,16.41776],[76.76079,16.42864],[76.75044,16.42044],[76.74427,16.40956],[76.73406,16.40651],[76.70159,16.39226],[76.68701,16.38261],[76.66593,16.37355],[76.65389,16.36361],[76.65215,16.36418],[76.65024,16.36097],[76.63226,16.35606],[76.61125,16.34161],[76.59986,16.34122],[76.5901,16.33874],[76.58327,16.33142],[76.56816,16.32988],[76.56097,16.32667],[76.55263,16.31935],[76.54081,16.31485],[76.51781,16.30223],[76.50843,16.29907],[76.49145,16.29835],[76.47823,16.29215],[76.47148,16.2874],[76.46722,16.28201],[76.45974,16.27972],[76.45451,16.27535],[76.44412,16.27028],[76.43674,16.26309],[76.42861,16.26021],[76.41664,16.25299],[76.41451,16.25052],[76.41914,16.24905],[76.41577,16.2455],[76.4065,16.23928],[76.39766,16.23655],[76.39552,16.23172],[76.38727,16.22755],[76.38602,16.22534],[76.37749,16.22296],[76.37469,16.21956],[76.36871,16.21797],[76.36131,16.2073],[76.35573,16.20628],[76.3514,16.20054],[76.32176,16.1898],[76.3158,16.19097],[76.29817,16.18548],[76.29485,16.18213],[76.28817,16.15923],[76.28052,16.15267],[76.27554,16.1514],[76.26848,16.15272],[76.24979,16.16435],[76.23868,16.16673],[76.23416,16.13071],[76.24648,16.12811],[76.24722,16.12634],[76.24472,16.12252],[76.24413,16.11368],[76.25418,16.11023],[76.25253,16.1051],[76.25546,16.09707],[76.26184,16.09681],[76.2678,16.10971],[76.28092,16.10591],[76.28821,16.10575],[76.30444,16.10111],[76.31691,16.09551],[76.33228,16.09195],[76.32796,16.07752],[76.30587,16.08383],[76.30053,16.08395],[76.29381,16.08839],[76.25814,16.09045],[76.25724,16.08842],[76.25881,16.07399],[76.28371,16.0753],[76.3032,16.07345],[76.30338,16.06669],[76.30556,16.06651],[76.30586,16.06337],[76.30292,16.03822],[76.30542,16.02527],[76.31136,16.01291],[76.31189,16.00011],[76.29791,15.99905],[76.29803,15.98953],[76.30139,15.97516],[76.30944,15.95724],[76.32269,15.95597],[76.32897,15.9348],[76.32849,15.93226],[76.31324,15.92939],[76.31205,15.92262],[76.30233,15.92359],[76.3018,15.93063],[76.28528,15.92896],[76.28535,15.90271],[76.28775,15.89636],[76.29073,15.89227],[76.30064,15.89566],[76.30561,15.89319],[76.31358,15.89471],[76.31505,15.8966],[76.31436,15.90284],[76.31598,15.90498],[76.32284,15.90312],[76.33387,15.90548],[76.34485,15.90048],[76.34521,15.88716],[76.34242,15.87819],[76.33786,15.87177],[76.3512,15.86371],[76.35318,15.86596],[76.35544,15.86459],[76.35882,15.88174],[76.35737,15.88207],[76.35874,15.90139],[76.35345,15.90277],[76.35917,15.90969],[76.36414,15.91238],[76.37001,15.9128],[76.37353,15.9174],[76.37509,15.90222],[76.40369,15.90206],[76.40374,15.89939],[76.41789,15.89535],[76.42681,15.89031],[76.42461,15.88842],[76.4242,15.87989],[76.42172,15.87248],[76.41895,15.87114],[76.41818,15.86893],[76.43286,15.85829],[76.44785,15.85376],[76.45118,15.84895],[76.45146,15.84592],[76.44885,15.83642],[76.44499,15.83349],[76.44218,15.82404],[76.43792,15.82472],[76.42508,15.81284],[76.42229,15.81197],[76.42045,15.80533],[76.41763,15.80654],[76.41321,15.80445],[76.41297,15.79673],[76.41514,15.79157],[76.42195,15.79092],[76.42217,15.78557],[76.4305,15.78535],[76.43341,15.78702],[76.43949,15.78443],[76.43821,15.7621],[76.43911,15.74995],[76.44742,15.74402],[76.44322,15.7382],[76.44723,15.73425],[76.45638,15.72877],[76.48219,15.71922],[76.48489,15.71423],[76.49051,15.71338],[76.49149,15.70746],[76.50499,15.71539],[76.51035,15.71674],[76.51465,15.71432],[76.5148,15.71037],[76.51752,15.71287],[76.52611,15.70746],[76.52885,15.70032],[76.53187,15.69924],[76.5357,15.6989],[76.53564,15.70353],[76.53995,15.70414],[76.54433,15.70338],[76.54151,15.69872],[76.55298,15.69986],[76.56141,15.70311],[76.56184,15.70567],[76.58604,15.69755],[76.59698,15.69963],[76.59945,15.67394],[76.61593,15.66999],[76.63062,15.67035],[76.65386,15.66571],[76.65343,15.6603],[76.67181,15.65822],[76.6702,15.6389],[76.67423,15.64124],[76.67694,15.64068],[76.68011,15.64395],[76.69058,15.64817],[76.69388,15.63418],[76.69356,15.62464],[76.6804,15.62704],[76.67957,15.61269],[76.68017,15.60662],[76.68546,15.606],[76.69081,15.60126],[76.68877,15.59584],[76.7003,15.59102],[76.70089,15.59449],[76.72129,15.5913],[76.73822,15.59279],[76.74893,15.58985],[76.75439,15.58686],[76.75583,15.57091],[76.75885,15.5669],[76.77836,15.55711],[76.78613,15.55646],[76.81072,15.54744],[76.82593,15.55845],[76.83102,15.56002],[76.83467,15.56431],[76.83503,15.58137],[76.83222,15.59572],[76.83644,15.60262],[76.83238,15.61828],[76.8343,15.62778],[76.85238,15.64081],[76.85762,15.6424],[76.8616,15.65389],[76.87203,15.66568],[76.88086,15.67132],[76.88942,15.68485],[76.90678,15.69035],[76.91292,15.69758],[76.91688,15.69966],[76.92059,15.71337],[76.91932,15.71901],[76.92227,15.7281],[76.92578,15.73187],[76.93021,15.74227],[76.93969,15.75488],[76.94283,15.76188],[76.95899,15.77149],[76.96699,15.77427],[76.98296,15.79391],[76.99268,15.80172],[76.99876,15.81119],[77.00499,15.81366],[77.01598,15.82216],[77.0228,15.83124],[77.03369,15.85889],[77.05589,15.88154],[77.06124,15.89448],[77.07103,15.90883],[77.08457,15.91864],[77.10255,15.92872],[77.13585,15.93758],[77.14314,15.9447],[77.15507,15.95003],[77.17409,15.95077],[77.18529,15.95674],[77.20495,15.95504],[77.21859,15.95795],[77.23547,15.95714],[77.24887,15.96456],[77.28468,15.95381],[77.30107,15.958],[77.31143,15.9534],[77.32406,15.95016],[77.34814,15.95132],[77.36125,15.94942],[77.37948,15.9398],[77.3901,15.9415],[77.39769,15.94448],[77.41434,15.94203],[77.42257,15.94749],[77.4296,15.94906],[77.466,15.9345],[77.49874,15.93318],[77.51344,15.92679],[77.51981,15.96691],[77.5164,15.96736],[77.51066,15.97516],[77.51109,15.97937],[77.50955,15.9804],[77.51405,16.00808],[77.50441,16.01133],[77.50434,16.01821],[77.50267,16.01871],[77.50225,16.02247],[77.49745,16.02867],[77.49803,16.02998],[77.49558,16.03098],[77.494,16.03699],[77.49535,16.0417],[77.49787,16.04409],[77.49681,16.04712],[77.49946,16.05372],[77.49651,16.05504],[77.49944,16.06102],[77.50261,16.05881],[77.50688,16.07964],[77.49366,16.08634],[77.50093,16.10619],[77.50875,16.10919],[77.51328,16.10802],[77.51081,16.11227],[77.50231,16.11717],[77.50022,16.12059],[77.48979,16.11962],[77.4916,16.13502],[77.49068,16.15958],[77.48615,16.16298],[77.49132,16.18453],[77.49949,16.19856],[77.49818,16.20956],[77.50115,16.22172],[77.50279,16.22366],[77.51215,16.22092],[77.51499,16.22196],[77.51566,16.22779],[77.51317,16.23085],[77.50356,16.23094],[77.49506,16.22712],[77.49234,16.2293],[77.49298,16.24408],[77.49007,16.25518],[77.5024,16.26306],[77.50514,16.2676],[77.50481,16.2758],[77.51043,16.27459],[77.51386,16.27784],[77.52187,16.27803],[77.5296,16.27548],[77.52933,16.2728],[77.53282,16.27168],[77.5369,16.2668],[77.54082,16.28546],[77.54508,16.29171],[77.56321,16.30164],[77.56888,16.3036],[77.582,16.29134],[77.59772,16.29281],[77.59337,16.29744],[77.59202,16.30217],[77.59538,16.31812],[77.59,16.3255],[77.59083,16.32928],[77.58803,16.33337],[77.59524,16.33963],[77.59538,16.3422],[77.59341,16.34392],[77.57272,16.34093],[77.555,16.34877],[77.54604,16.35693],[77.53877,16.35821],[77.53143,16.36376],[77.5234,16.37583],[77.51437,16.37497],[77.49535,16.38116],[77.48969,16.38501],[77.47467,16.38177],[77.44098,16.38077],[77.43711,16.37861],[77.42885,16.36919],[77.41941,16.36629],[77.41144,16.36745],[77.4017,16.3713],[77.37866,16.38541],[77.35584,16.38264],[77.34971,16.38363],[77.33342,16.39537],[77.31393,16.39801],[77.3043,16.40173],[77.29745,16.4069],[77.28796,16.40864]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"547","area_level":"District","area_name":"Shivamogga","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.08446,14.65276],[75.07247,14.65521],[75.06488,14.65189],[75.05084,14.6495],[75.04895,14.64204],[75.04009,14.6375],[75.0369,14.62965],[75.02674,14.6157],[75.02552,14.60843],[75.02351,14.60671],[75.02515,14.60542],[75.02323,14.602],[75.02505,14.59802],[75.02675,14.58441],[75.02363,14.58058],[75.02438,14.57734],[75.02079,14.57417],[75.02298,14.56262],[75.02428,14.56108],[75.03352,14.55876],[75.03893,14.55251],[75.03967,14.54918],[75.04454,14.54578],[75.04866,14.54564],[75.05474,14.54886],[75.0613,14.54358],[75.05462,14.53956],[75.05235,14.53355],[75.03686,14.5294],[75.04059,14.5219],[75.0418,14.51128],[75.0402,14.50653],[75.04064,14.50018],[75.01857,14.49673],[75.00645,14.48745],[75.00877,14.48413],[75.00548,14.48052],[74.99559,14.47779],[74.98951,14.47269],[74.98738,14.47809],[74.98787,14.481],[74.98449,14.48633],[74.9911,14.49339],[74.9906,14.5011],[74.98222,14.51325],[74.97962,14.51385],[74.97829,14.51707],[74.9731,14.51851],[74.97178,14.52076],[74.97253,14.52385],[74.97968,14.5242],[74.97677,14.53313],[74.9768,14.54867],[74.97007,14.55097],[74.9626,14.54946],[74.95424,14.5512],[74.94863,14.53641],[74.94333,14.53266],[74.94102,14.53452],[74.94175,14.53118],[74.93572,14.51869],[74.92963,14.52335],[74.9268,14.52902],[74.9138,14.52881],[74.90452,14.53039],[74.90092,14.52934],[74.90207,14.51517],[74.89816,14.50826],[74.89463,14.50739],[74.89476,14.50108],[74.89039,14.49099],[74.89084,14.48534],[74.88925,14.47932],[74.89341,14.47397],[74.90301,14.47321],[74.91829,14.46644],[74.92095,14.45915],[74.90877,14.45767],[74.8989,14.4641],[74.88982,14.4619],[74.87457,14.44756],[74.87802,14.43548],[74.88039,14.43436],[74.88077,14.42917],[74.91714,14.43149],[74.93357,14.40393],[74.93888,14.40161],[74.947,14.40084],[74.94893,14.39857],[74.94823,14.39353],[74.95068,14.38226],[74.9498,14.37599],[74.94594,14.37384],[74.94069,14.36765],[74.93924,14.35848],[74.95028,14.35065],[74.95231,14.35166],[74.95509,14.34985],[74.95909,14.34214],[74.97437,14.33751],[74.97334,14.33717],[74.9741,14.33333],[74.97628,14.33191],[74.97375,14.33139],[74.97294,14.32657],[74.96962,14.3259],[74.97239,14.32039],[74.97313,14.32328],[74.97692,14.32063],[74.97602,14.31827],[74.97137,14.31567],[74.96774,14.31528],[74.96731,14.31716],[74.96329,14.31841],[74.96163,14.3216],[74.95781,14.32337],[74.95569,14.31957],[74.95178,14.31688],[74.94894,14.31947],[74.94239,14.31833],[74.93921,14.3194],[74.93696,14.32234],[74.93099,14.31882],[74.93028,14.32035],[74.92516,14.31939],[74.92034,14.31569],[74.91792,14.30843],[74.9134,14.30395],[74.91332,14.29897],[74.90698,14.29481],[74.90855,14.28709],[74.90757,14.28535],[74.90999,14.27816],[74.91555,14.27616],[74.9166,14.27311],[74.92387,14.2783],[74.92631,14.27742],[74.92898,14.26774],[74.92839,14.2647],[74.9342,14.26329],[74.93513,14.2584],[74.9383,14.25629],[74.93584,14.25208],[74.93533,14.24312],[74.93039,14.24104],[74.93039,14.23891],[74.92716,14.23683],[74.92885,14.2353],[74.92321,14.23246],[74.91981,14.22749],[74.91638,14.22738],[74.91285,14.22947],[74.90892,14.22774],[74.90448,14.23069],[74.90349,14.22934],[74.90056,14.2299],[74.89682,14.22738],[74.8952,14.22253],[74.89618,14.2206],[74.8928,14.2176],[74.87764,14.21577],[74.87746,14.21799],[74.88,14.21949],[74.87952,14.22105],[74.87609,14.2194],[74.87528,14.22777],[74.88024,14.23459],[74.8732,14.24123],[74.86839,14.23802],[74.8682,14.22715],[74.86694,14.22727],[74.86629,14.21971],[74.85923,14.21876],[74.85669,14.21276],[74.85338,14.21122],[74.83737,14.22712],[74.83228,14.23002],[74.82223,14.22779],[74.81823,14.23231],[74.80931,14.23062],[74.80738,14.23222],[74.80581,14.23077],[74.80334,14.23202],[74.80083,14.22921],[74.79176,14.22735],[74.7835,14.23101],[74.78114,14.23581],[74.77294,14.23936],[74.76369,14.2379],[74.7574,14.24515],[74.75266,14.2473],[74.74489,14.25534],[74.73509,14.26224],[74.72999,14.26382],[74.71592,14.23323],[74.71871,14.21394],[74.72873,14.17489],[74.74842,14.15685],[74.74791,14.14266],[74.74302,14.14902],[74.72337,14.15258],[74.70747,14.17],[74.69748,14.17309],[74.69054,14.16617],[74.6655,14.18441],[74.65057,14.17006],[74.62522,14.16249],[74.62899,14.14423],[74.64488,14.14207],[74.643,14.13599],[74.6463,14.11441],[74.65566,14.11327],[74.63735,14.09459],[74.65357,14.07443],[74.66084,14.05836],[74.65712,14.05302],[74.65392,14.04386],[74.65521,14.03909],[74.67751,14.03478],[74.66875,14.00865],[74.66962,14.00686],[74.66318,13.9932],[74.66578,13.98002],[74.67304,13.97341],[74.67476,13.96895],[74.68321,13.96496],[74.68559,13.95836],[74.68458,13.95775],[74.68871,13.95491],[74.69347,13.95476],[74.69871,13.95063],[74.70058,13.94443],[74.69957,13.93901],[74.6905,13.93349],[74.69672,13.92775],[74.70567,13.92551],[74.70774,13.92683],[74.70972,13.92101],[74.71378,13.91633],[74.71174,13.90509],[74.72284,13.90718],[74.7303,13.91051],[74.73397,13.91407],[74.74181,13.91481],[74.74507,13.91483],[74.75497,13.90905],[74.75687,13.91225],[74.76264,13.91596],[74.7634,13.91433],[74.77765,13.91514],[74.78785,13.91322],[74.79146,13.90549],[74.79297,13.9057],[74.7946,13.9104],[74.80066,13.91011],[74.80867,13.90573],[74.81619,13.90561],[74.81962,13.9078],[74.83104,13.90289],[74.83722,13.89691],[74.83985,13.89738],[74.84146,13.89368],[74.85615,13.8784],[74.8577,13.86895],[74.86511,13.85719],[74.87083,13.85712],[74.8763,13.86052],[74.87611,13.86419],[74.87869,13.86745],[74.88985,13.8659],[74.90692,13.86024],[74.91062,13.8566],[74.91304,13.85092],[74.9122,13.84464],[74.91598,13.83386],[74.91644,13.82316],[74.92364,13.81267],[74.92545,13.80335],[74.92437,13.79628],[74.93142,13.79186],[74.9334,13.78761],[74.92936,13.78253],[74.93135,13.78069],[74.93147,13.7781],[74.92798,13.7688],[74.93532,13.77173],[74.93531,13.76815],[74.93774,13.76389],[74.94416,13.75995],[74.94671,13.7601],[74.94809,13.75692],[74.95968,13.75408],[74.96318,13.75139],[74.97159,13.75113],[74.97606,13.74648],[74.98688,13.74332],[74.98982,13.73988],[74.99524,13.74035],[74.99855,13.73835],[74.99344,13.72118],[74.98866,13.72019],[74.99112,13.71004],[75.00077,13.71062],[75.01123,13.70751],[75.01296,13.70204],[75.0213,13.6981],[75.02075,13.69393],[75.01097,13.69104],[75.01089,13.68934],[75.0131,13.68916],[75.01205,13.67674],[75.02844,13.67016],[75.029,13.66694],[75.02432,13.66049],[75.01571,13.66356],[75.01272,13.65777],[75.01495,13.65423],[75.01339,13.65196],[75.01496,13.64431],[75.01779,13.64046],[75.01542,13.63467],[75.01787,13.63136],[75.02097,13.6309],[75.02335,13.6272],[75.02819,13.62712],[75.03241,13.61924],[75.03647,13.6165],[75.03625,13.61319],[75.03942,13.61034],[75.04394,13.61037],[75.04997,13.608],[75.05196,13.61056],[75.05577,13.61047],[75.06127,13.60261],[75.061,13.59493],[75.05899,13.58956],[75.05091,13.58332],[75.04516,13.5853],[75.03779,13.57996],[75.03721,13.57697],[75.03363,13.57384],[75.03499,13.56712],[75.04216,13.56148],[75.04255,13.55606],[75.04545,13.5569],[75.04955,13.55404],[75.04901,13.53733],[75.06265,13.52868],[75.05955,13.51945],[75.06168,13.51789],[75.06416,13.52389],[75.06826,13.52345],[75.07684,13.51427],[75.07956,13.50462],[75.0775,13.49663],[75.07987,13.49246],[75.08761,13.49442],[75.0907,13.49331],[75.09203,13.48963],[75.09679,13.48644],[75.10227,13.48894],[75.10396,13.48245],[75.11311,13.46656],[75.11122,13.46065],[75.11577,13.4568],[75.12667,13.46214],[75.13262,13.4607],[75.14073,13.46133],[75.13799,13.46499],[75.13625,13.47245],[75.14664,13.47803],[75.15159,13.48745],[75.15958,13.49332],[75.16035,13.49629],[75.16687,13.50278],[75.16973,13.50794],[75.17342,13.50115],[75.17616,13.49909],[75.18141,13.50549],[75.1884,13.50876],[75.19629,13.50942],[75.19749,13.50797],[75.19968,13.51015],[75.20271,13.50898],[75.20574,13.51533],[75.21107,13.51699],[75.21139,13.51827],[75.20876,13.51916],[75.2041,13.51816],[75.20879,13.52466],[75.21184,13.52582],[75.21969,13.52359],[75.22603,13.52795],[75.22074,13.53324],[75.22437,13.54856],[75.22045,13.54948],[75.2183,13.55198],[75.2198,13.5552],[75.217,13.55589],[75.21593,13.55785],[75.21667,13.55926],[75.22203,13.55959],[75.22645,13.56832],[75.22193,13.57093],[75.21873,13.57585],[75.21174,13.57814],[75.21066,13.58531],[75.22377,13.59602],[75.22127,13.60205],[75.22571,13.60593],[75.23067,13.60399],[75.23206,13.59978],[75.23547,13.59844],[75.23742,13.60128],[75.24476,13.60511],[75.24915,13.59599],[75.25494,13.59477],[75.25647,13.58371],[75.2587,13.58302],[75.26454,13.58662],[75.26752,13.5823],[75.27145,13.56899],[75.27886,13.56448],[75.27978,13.56853],[75.28338,13.5689],[75.28736,13.57421],[75.28964,13.57458],[75.29497,13.58471],[75.30797,13.58399],[75.31327,13.58899],[75.32081,13.58991],[75.32618,13.59254],[75.32818,13.58585],[75.33168,13.58478],[75.34079,13.58574],[75.3443,13.58061],[75.35076,13.58622],[75.35308,13.5921],[75.35736,13.5956],[75.36448,13.5981],[75.36974,13.59707],[75.36393,13.6042],[75.36639,13.60936],[75.36601,13.62194],[75.37271,13.62674],[75.37475,13.62665],[75.3791,13.62067],[75.37824,13.61501],[75.38609,13.61324],[75.38878,13.61327],[75.38729,13.61681],[75.38897,13.61975],[75.38666,13.62346],[75.3921,13.62391],[75.39432,13.63052],[75.40729,13.62561],[75.40539,13.63002],[75.41194,13.63964],[75.40909,13.64216],[75.41468,13.65286],[75.41106,13.65859],[75.40338,13.68093],[75.3963,13.69246],[75.39426,13.69351],[75.3942,13.70026],[75.38785,13.69851],[75.38573,13.70219],[75.38225,13.70262],[75.38294,13.71086],[75.39367,13.70844],[75.40252,13.70376],[75.40743,13.70579],[75.41919,13.70608],[75.42262,13.70796],[75.42659,13.71511],[75.45434,13.72364],[75.45978,13.73068],[75.46118,13.74172],[75.47702,13.75349],[75.48862,13.75973],[75.4887,13.76214],[75.4856,13.76509],[75.48677,13.76833],[75.4983,13.75807],[75.49991,13.75834],[75.50238,13.76337],[75.50691,13.76568],[75.50698,13.76072],[75.51069,13.75497],[75.52096,13.75177],[75.52239,13.74798],[75.52164,13.74361],[75.52773,13.73958],[75.53285,13.73074],[75.54092,13.728],[75.55557,13.73416],[75.56063,13.73963],[75.56581,13.74084],[75.56728,13.75309],[75.57141,13.75538],[75.58153,13.75649],[75.58594,13.75871],[75.59117,13.75802],[75.59905,13.76091],[75.61085,13.76094],[75.609,13.74596],[75.62789,13.73322],[75.61729,13.72295],[75.62214,13.7138],[75.62253,13.70574],[75.62689,13.70226],[75.63151,13.70332],[75.63488,13.70124],[75.641,13.70322],[75.64794,13.70906],[75.65115,13.71869],[75.6709,13.71986],[75.67468,13.72316],[75.67459,13.72833],[75.66813,13.73083],[75.6658,13.7375],[75.65914,13.74134],[75.65586,13.74613],[75.65673,13.74833],[75.66311,13.75074],[75.66415,13.75795],[75.66918,13.76406],[75.67103,13.76443],[75.67437,13.76191],[75.67647,13.75115],[75.6865,13.74988],[75.68863,13.75391],[75.68196,13.7613],[75.68716,13.76672],[75.70353,13.76773],[75.70962,13.76649],[75.71286,13.77053],[75.71809,13.77136],[75.73175,13.76905],[75.74909,13.78094],[75.76456,13.78149],[75.76686,13.78998],[75.76069,13.79421],[75.76705,13.79706],[75.7726,13.79693],[75.77759,13.78849],[75.79177,13.79691],[75.80775,13.79444],[75.82544,13.81865],[75.83552,13.81378],[75.87876,13.81011],[75.87053,13.83552],[75.87135,13.85109],[75.86572,13.85982],[75.86286,13.87265],[75.85531,13.87265],[75.85976,13.88659],[75.85965,13.91036],[75.84521,13.94203],[75.82914,13.97166],[75.83085,13.98671],[75.82805,13.99259],[75.82386,14.01894],[75.81082,14.02363],[75.80791,14.02621],[75.80341,14.02607],[75.79876,14.03326],[75.80099,14.04369],[75.8039,14.04367],[75.81392,14.04878],[75.82095,14.06501],[75.81988,14.07078],[75.82104,14.07947],[75.81395,14.09458],[75.81411,14.10563],[75.80585,14.09814],[75.76852,14.10359],[75.76816,14.1094],[75.75597,14.11028],[75.75312,14.10175],[75.73879,14.10108],[75.73819,14.0874],[75.72114,14.08338],[75.72654,14.07655],[75.72548,14.07578],[75.70195,14.07289],[75.67299,14.06495],[75.66723,14.06748],[75.66438,14.06628],[75.65963,14.0675],[75.64362,14.07396],[75.64364,14.07857],[75.64241,14.07947],[75.63429,14.07984],[75.63071,14.0735],[75.61753,14.07659],[75.6111,14.06139],[75.60358,14.05654],[75.60089,14.06084],[75.59547,14.06128],[75.5913,14.06392],[75.58522,14.05786],[75.56432,14.06927],[75.55365,14.07876],[75.54817,14.07696],[75.54323,14.07805],[75.53968,14.08069],[75.53877,14.08612],[75.53392,14.09017],[75.53128,14.09751],[75.52903,14.0946],[75.52361,14.09445],[75.51001,14.10106],[75.49278,14.09949],[75.49051,14.10475],[75.47987,14.10023],[75.47074,14.1032],[75.46476,14.10234],[75.44847,14.09538],[75.43859,14.10374],[75.4329,14.10646],[75.42304,14.10816],[75.39879,14.11686],[75.40135,14.1262],[75.41541,14.1412],[75.42058,14.14101],[75.42427,14.1495],[75.43342,14.1529],[75.44373,14.16345],[75.46114,14.17466],[75.4842,14.17623],[75.47044,14.18888],[75.46171,14.19967],[75.45292,14.20469],[75.46171,14.20921],[75.47254,14.21064],[75.47622,14.21492],[75.50687,14.21914],[75.52086,14.2025],[75.52676,14.2028],[75.5289,14.21498],[75.52668,14.22842],[75.52919,14.22998],[75.52698,14.25832],[75.52925,14.26571],[75.52989,14.2774],[75.53565,14.27744],[75.5341,14.28952],[75.5244,14.29193],[75.5214,14.29419],[75.52058,14.29871],[75.51761,14.30139],[75.50269,14.30782],[75.50494,14.31756],[75.50159,14.32454],[75.50097,14.34433],[75.48977,14.34733],[75.48865,14.33869],[75.48115,14.33957],[75.48052,14.34433],[75.47655,14.34382],[75.48004,14.331],[75.47733,14.31743],[75.46907,14.32262],[75.4543,14.32857],[75.45062,14.33259],[75.44375,14.33627],[75.44182,14.33975],[75.43357,14.34309],[75.42927,14.34906],[75.41737,14.35256],[75.41023,14.35243],[75.40662,14.35682],[75.40155,14.35925],[75.39739,14.36612],[75.38962,14.36636],[75.38291,14.36988],[75.37366,14.37024],[75.36871,14.37299],[75.36179,14.38136],[75.34857,14.38796],[75.35304,14.39439],[75.356,14.40588],[75.35937,14.40926],[75.36512,14.41087],[75.37791,14.40779],[75.38205,14.43353],[75.37046,14.43758],[75.36458,14.44164],[75.36257,14.44171],[75.35762,14.43645],[75.35852,14.43133],[75.35608,14.42831],[75.35533,14.43161],[75.34013,14.43575],[75.33898,14.43763],[75.34164,14.43967],[75.34242,14.45169],[75.3472,14.45742],[75.34518,14.46234],[75.34192,14.46374],[75.33991,14.46874],[75.34069,14.47489],[75.34609,14.48527],[75.32943,14.4945],[75.32519,14.50208],[75.3242,14.50885],[75.31957,14.51344],[75.29737,14.51101],[75.28681,14.51159],[75.286,14.51454],[75.28312,14.51448],[75.27501,14.51087],[75.26747,14.51488],[75.26905,14.52443],[75.26777,14.52775],[75.27826,14.53413],[75.28453,14.52957],[75.28721,14.53237],[75.29009,14.53157],[75.29586,14.53793],[75.29534,14.54029],[75.29719,14.54047],[75.2931,14.54349],[75.29379,14.54801],[75.29157,14.54825],[75.29097,14.55271],[75.28559,14.56049],[75.28176,14.56032],[75.27434,14.56544],[75.27548,14.56702],[75.27442,14.56996],[75.26771,14.57489],[75.26544,14.57975],[75.24913,14.5807],[75.24352,14.57795],[75.24464,14.5687],[75.24207,14.56805],[75.24346,14.56015],[75.24043,14.55489],[75.23889,14.55721],[75.23424,14.55679],[75.22842,14.56114],[75.22512,14.56767],[75.23055,14.5797],[75.22737,14.58377],[75.22155,14.58487],[75.21916,14.5802],[75.21355,14.57717],[75.21033,14.57266],[75.20752,14.57208],[75.19732,14.57736],[75.19772,14.5827],[75.18409,14.58583],[75.1817,14.59772],[75.18738,14.59945],[75.19321,14.59921],[75.19863,14.59626],[75.2051,14.59745],[75.2057,14.60947],[75.21056,14.62329],[75.20977,14.6278],[75.20736,14.62718],[75.20861,14.6291],[75.20662,14.62981],[75.20812,14.63344],[75.20517,14.6341],[75.20748,14.63579],[75.20549,14.63764],[75.20071,14.63794],[75.20018,14.63442],[75.2033,14.62992],[75.20239,14.62773],[75.19649,14.62359],[75.18777,14.62253],[75.18192,14.62463],[75.17192,14.63433],[75.16989,14.6352],[75.16537,14.63331],[75.1635,14.6289],[75.16475,14.62079],[75.16019,14.61728],[75.15275,14.62615],[75.14406,14.62035],[75.14249,14.63377],[75.12439,14.63108],[75.11452,14.64156],[75.10298,14.64512],[75.09938,14.65271],[75.08446,14.65276]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"548","area_level":"District","area_name":"Tumakuru","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.08046,13.07028],[77.08198,13.07036],[77.08254,13.07053],[77.08296,13.07076],[77.08324,13.07104],[77.08344,13.07148],[77.08356,13.07213],[77.08353,13.07298],[77.08303,13.07325],[77.08264,13.0736],[77.08238,13.07392],[77.08111,13.07394],[77.07957,13.06969],[77.08023,13.06967],[77.08046,13.07028]]],[[[76.97256,14.06022],[76.97646,14.06528],[76.97757,14.07129],[76.97526,14.074],[76.97497,14.08091],[76.97345,14.08352],[76.95941,14.09163],[76.9484,14.09205],[76.9427,14.08897],[76.92742,14.07623],[76.92474,14.0692],[76.92301,14.05701],[76.91636,14.05932],[76.91666,14.06049],[76.9101,14.06429],[76.89915,14.0575],[76.88863,14.04785],[76.88744,14.03967],[76.87987,14.01868],[76.87638,14.01939],[76.87277,14.00916],[76.86103,14.0147],[76.84788,14.01787],[76.83725,14.01817],[76.83611,14.00882],[76.83337,14.00319],[76.82494,14.00115],[76.82277,13.99848],[76.82344,13.99429],[76.83152,13.98905],[76.8397,13.98659],[76.84851,13.98043],[76.84987,13.96357],[76.84202,13.96275],[76.82189,13.95051],[76.82098,13.93972],[76.81939,13.93657],[76.81135,13.93648],[76.81126,13.93165],[76.81537,13.91603],[76.8022,13.91651],[76.77994,13.92427],[76.76466,13.92442],[76.76379,13.92041],[76.75203,13.91959],[76.74946,13.91614],[76.75246,13.90655],[76.73648,13.90351],[76.72286,13.89845],[76.72117,13.89458],[76.72311,13.89011],[76.72957,13.88068],[76.73148,13.88123],[76.73576,13.87011],[76.74679,13.85639],[76.74978,13.85386],[76.75281,13.85521],[76.75133,13.85212],[76.75223,13.85014],[76.7623,13.83506],[76.76659,13.83584],[76.76395,13.82173],[76.76561,13.81214],[76.76848,13.80597],[76.76879,13.79513],[76.76453,13.782],[76.75989,13.78033],[76.74897,13.78063],[76.73099,13.78463],[76.72713,13.79272],[76.72749,13.79691],[76.72374,13.79969],[76.71695,13.7942],[76.71367,13.78563],[76.70829,13.78191],[76.70582,13.77573],[76.70173,13.77474],[76.69804,13.77138],[76.69666,13.76557],[76.69392,13.76329],[76.69775,13.76037],[76.69527,13.7584],[76.69533,13.75435],[76.69092,13.75117],[76.68753,13.74597],[76.68445,13.72972],[76.68896,13.72739],[76.68977,13.72241],[76.68504,13.69045],[76.67249,13.70612],[76.67304,13.71865],[76.66178,13.72131],[76.63983,13.71482],[76.62981,13.71365],[76.62445,13.73405],[76.62085,13.734],[76.61365,13.72886],[76.61475,13.72715],[76.60945,13.72348],[76.6038,13.72567],[76.5993,13.72418],[76.59597,13.72011],[76.58574,13.71868],[76.57231,13.71391],[76.56938,13.71458],[76.57658,13.69011],[76.57335,13.68674],[76.56869,13.68867],[76.56415,13.68471],[76.55548,13.68261],[76.54951,13.67725],[76.53974,13.66314],[76.53403,13.66624],[76.52953,13.66605],[76.52911,13.66046],[76.5343,13.65311],[76.53399,13.65086],[76.52719,13.64832],[76.51853,13.64111],[76.51699,13.63425],[76.49722,13.6271],[76.50008,13.62169],[76.48995,13.62323],[76.4607,13.61889],[76.45529,13.61144],[76.45705,13.60344],[76.45893,13.60053],[76.46167,13.60015],[76.45553,13.59552],[76.45512,13.59086],[76.44983,13.59072],[76.44102,13.59414],[76.43031,13.59313],[76.42735,13.59109],[76.42444,13.58138],[76.41331,13.5782],[76.40986,13.57966],[76.40513,13.5906],[76.39946,13.59486],[76.39824,13.59461],[76.39765,13.59081],[76.39245,13.59054],[76.38271,13.57687],[76.38106,13.57785],[76.37822,13.58939],[76.37352,13.5931],[76.3531,13.57947],[76.35862,13.55752],[76.36387,13.54713],[76.37017,13.54794],[76.37658,13.5415],[76.38771,13.5342],[76.39564,13.53599],[76.39776,13.52841],[76.40053,13.52637],[76.42727,13.52563],[76.41987,13.51985],[76.41521,13.50904],[76.41012,13.50774],[76.40867,13.50537],[76.39764,13.50596],[76.39654,13.50388],[76.39506,13.49568],[76.39598,13.49345],[76.40032,13.49073],[76.40523,13.49065],[76.40819,13.4829],[76.41517,13.47884],[76.41179,13.47727],[76.40705,13.4592],[76.41969,13.44841],[76.40442,13.42959],[76.40446,13.42637],[76.40061,13.42277],[76.39621,13.40657],[76.39694,13.40224],[76.38944,13.3961],[76.3922,13.3882],[76.39226,13.37943],[76.38576,13.37086],[76.38267,13.37235],[76.38196,13.36889],[76.38342,13.36739],[76.38143,13.36414],[76.36217,13.36356],[76.34701,13.35998],[76.34704,13.34292],[76.34854,13.33657],[76.35225,13.33052],[76.34888,13.31707],[76.34761,13.30122],[76.34983,13.29445],[76.35696,13.28727],[76.35731,13.27558],[76.35524,13.26427],[76.35867,13.26062],[76.3562,13.24913],[76.36197,13.24904],[76.364,13.2436],[76.36454,13.23399],[76.37989,13.23154],[76.38004,13.22255],[76.3764,13.21581],[76.3699,13.21221],[76.37077,13.20037],[76.39376,13.19788],[76.39435,13.19055],[76.4056,13.1927],[76.4124,13.19182],[76.4147,13.18713],[76.42557,13.18341],[76.42887,13.17304],[76.44495,13.16978],[76.44512,13.16463],[76.45134,13.15926],[76.45149,13.15551],[76.45423,13.15552],[76.45505,13.1499],[76.47316,13.14986],[76.46954,13.1399],[76.46856,13.12021],[76.47229,13.09308],[76.48082,13.09135],[76.49059,13.09482],[76.49472,13.0946],[76.49571,13.08668],[76.51582,13.06877],[76.5219,13.07351],[76.52282,13.07879],[76.525,13.07903],[76.56656,13.07561],[76.58572,13.07039],[76.59238,13.07485],[76.59932,13.07428],[76.6075,13.07108],[76.61786,13.06379],[76.6198,13.05404],[76.60599,13.05481],[76.60207,13.04017],[76.60811,13.03764],[76.6073,13.03359],[76.60877,13.03011],[76.60423,13.01718],[76.60617,13.01282],[76.61294,13.0058],[76.61915,13.00879],[76.63224,13.00417],[76.63691,13.00845],[76.64073,13.00949],[76.65256,13.00726],[76.65758,13.01326],[76.65844,13.02032],[76.65949,13.02017],[76.67279,13.05534],[76.67722,13.0538],[76.68064,13.04734],[76.68659,13.04445],[76.69352,13.03671],[76.7021,13.04146],[76.70869,13.03978],[76.72528,13.04124],[76.75095,13.03582],[76.75541,13.03731],[76.75781,13.03682],[76.75743,13.03523],[76.75915,13.03679],[76.76459,13.03579],[76.78311,13.0294],[76.78584,13.01526],[76.79486,13.01511],[76.80753,13.01218],[76.81469,13.01371],[76.81984,13.00502],[76.82965,13.0022],[76.83019,13.00064],[76.82746,12.99875],[76.84426,12.98753],[76.84534,12.98424],[76.85288,12.97865],[76.85047,12.97345],[76.83968,12.97348],[76.84178,12.95636],[76.8396,12.94581],[76.84868,12.94409],[76.84968,12.93833],[76.85712,12.93772],[76.86246,12.93466],[76.86261,12.92789],[76.87025,12.92934],[76.88439,12.93511],[76.88836,12.93511],[76.89149,12.9326],[76.89285,12.92422],[76.89621,12.92049],[76.89025,12.91862],[76.88048,12.92099],[76.88071,12.9196],[76.87494,12.91848],[76.86719,12.91863],[76.86455,12.91347],[76.86548,12.90499],[76.87078,12.89915],[76.87288,12.89945],[76.87317,12.89711],[76.88915,12.89742],[76.89446,12.8739],[76.89227,12.8471],[76.90018,12.84479],[76.90164,12.83861],[76.90527,12.83494],[76.90578,12.82835],[76.91884,12.81796],[76.91821,12.81501],[76.92455,12.804],[76.92898,12.80333],[76.93285,12.80048],[76.9413,12.80561],[76.95067,12.80154],[76.95632,12.80411],[76.97307,12.80354],[76.97284,12.79919],[76.97565,12.79101],[76.97724,12.79263],[76.98337,12.79296],[76.98359,12.78995],[76.99086,12.78627],[76.99827,12.77591],[77.00962,12.78243],[77.0064,12.77272],[77.00918,12.76431],[77.02524,12.76312],[77.02589,12.76672],[77.03447,12.76883],[77.04362,12.77807],[77.04699,12.75969],[77.05031,12.75064],[77.04887,12.74742],[77.05629,12.75233],[77.05922,12.75181],[77.06093,12.75576],[77.06736,12.75831],[77.0767,12.74554],[77.08052,12.74645],[77.0791,12.74896],[77.08013,12.75908],[77.08455,12.75753],[77.08724,12.75277],[77.09261,12.75267],[77.09157,12.76084],[77.0975,12.77626],[77.10753,12.78026],[77.11042,12.77756],[77.12434,12.77387],[77.1339,12.78234],[77.13667,12.78373],[77.14522,12.7816],[77.15022,12.78704],[77.15091,12.79195],[77.13917,12.81004],[77.14193,12.82027],[77.14752,12.81978],[77.15883,12.82742],[77.15317,12.83087],[77.14941,12.83044],[77.15041,12.83466],[77.1481,12.83722],[77.14759,12.84099],[77.14936,12.84452],[77.14818,12.84586],[77.14915,12.84863],[77.14596,12.84949],[77.14457,12.85169],[77.13722,12.85301],[77.13456,12.85599],[77.13603,12.86015],[77.13115,12.85921],[77.13422,12.87728],[77.13087,12.87799],[77.13144,12.88814],[77.12319,12.88796],[77.1187,12.88404],[77.10919,12.89067],[77.10699,12.89441],[77.11163,12.89458],[77.11763,12.89886],[77.12448,12.89905],[77.12478,12.90213],[77.13263,12.89802],[77.13634,12.9014],[77.13989,12.9182],[77.15813,12.9134],[77.16542,12.92905],[77.16258,12.93611],[77.15653,12.94255],[77.15799,12.94985],[77.15735,12.95816],[77.1524,12.96149],[77.14285,12.96449],[77.13227,12.97297],[77.12984,12.97789],[77.13044,12.98062],[77.13314,12.98144],[77.1317,12.98277],[77.13277,12.98639],[77.14184,12.98372],[77.14484,12.98765],[77.13569,12.99568],[77.1381,12.99885],[77.13437,13.00535],[77.13164,13.00707],[77.12451,13.00624],[77.12434,13.00384],[77.12963,12.99869],[77.12948,12.99555],[77.10658,12.9965],[77.10551,12.99266],[77.0981,12.99934],[77.10139,13.00086],[77.10265,13.0062],[77.11687,13.00985],[77.11826,13.01464],[77.11126,13.01832],[77.10858,13.02158],[77.09437,13.02666],[77.08221,13.03846],[77.06978,13.04019],[77.07377,13.05457],[77.07738,13.05814],[77.07709,13.06097],[77.07332,13.0608],[77.07335,13.06661],[77.06806,13.06651],[77.06822,13.06798],[77.07294,13.06861],[77.07584,13.07226],[77.07924,13.07916],[77.08079,13.09026],[77.07067,13.11753],[77.07192,13.13085],[77.0797,13.13116],[77.08018,13.13367],[77.08514,13.13643],[77.09201,13.13564],[77.09593,13.14582],[77.10542,13.14457],[77.10811,13.14263],[77.10916,13.13731],[77.10775,13.1367],[77.10788,13.13327],[77.11612,13.13003],[77.1183,13.1369],[77.11513,13.14038],[77.11551,13.14256],[77.11719,13.14586],[77.11938,13.14628],[77.1201,13.14935],[77.11885,13.16208],[77.1265,13.16359],[77.13115,13.16626],[77.13654,13.17236],[77.13853,13.17817],[77.14262,13.17393],[77.14782,13.17399],[77.15549,13.19336],[77.16653,13.19697],[77.16496,13.1892],[77.16879,13.18383],[77.17586,13.18662],[77.18439,13.18662],[77.1978,13.18023],[77.19761,13.18304],[77.20254,13.18296],[77.2075,13.19662],[77.20287,13.19732],[77.20295,13.19461],[77.20095,13.19451],[77.19934,13.1968],[77.20025,13.20316],[77.1951,13.20663],[77.19406,13.2243],[77.18635,13.22518],[77.18269,13.22872],[77.18582,13.23852],[77.19021,13.23784],[77.19245,13.24356],[77.18349,13.25762],[77.18839,13.2764],[77.19116,13.27475],[77.19246,13.26902],[77.19991,13.26825],[77.2046,13.26228],[77.21605,13.26156],[77.21934,13.26295],[77.22214,13.26835],[77.22003,13.27445],[77.22033,13.28551],[77.22901,13.31331],[77.2317,13.31267],[77.23353,13.30962],[77.24023,13.30851],[77.24311,13.3024],[77.24945,13.30171],[77.25266,13.30173],[77.25473,13.30887],[77.26982,13.31115],[77.26963,13.30561],[77.27525,13.29768],[77.28166,13.29728],[77.2812,13.3104],[77.30867,13.31061],[77.31191,13.32208],[77.32295,13.32587],[77.32934,13.3304],[77.3318,13.32824],[77.33852,13.32911],[77.34099,13.33767],[77.34382,13.3397],[77.34457,13.35013],[77.34235,13.35083],[77.34125,13.35711],[77.3457,13.37463],[77.34084,13.37703],[77.34353,13.39137],[77.34234,13.39866],[77.34589,13.41756],[77.35846,13.41485],[77.36287,13.42004],[77.36197,13.43692],[77.35689,13.4377],[77.35491,13.44074],[77.35338,13.44032],[77.35281,13.44405],[77.3484,13.44659],[77.34862,13.45718],[77.35844,13.46306],[77.36612,13.46356],[77.36681,13.46945],[77.3734,13.47004],[77.37021,13.47822],[77.3723,13.48311],[77.3771,13.48333],[77.37807,13.48976],[77.38466,13.49907],[77.38162,13.50235],[77.38086,13.51511],[77.38994,13.51968],[77.39154,13.53252],[77.39047,13.5361],[77.38273,13.53715],[77.38243,13.54321],[77.3812,13.54377],[77.38244,13.57531],[77.37861,13.57849],[77.37421,13.59002],[77.3716,13.58774],[77.36305,13.59018],[77.36378,13.60208],[77.36224,13.60238],[77.3599,13.61236],[77.36213,13.62526],[77.36961,13.6337],[77.3689,13.64159],[77.37565,13.64282],[77.37847,13.64519],[77.37702,13.65005],[77.38333,13.66242],[77.39328,13.66488],[77.39725,13.67345],[77.4037,13.67532],[77.43505,13.67262],[77.43711,13.6843],[77.45533,13.68226],[77.45609,13.69072],[77.45466,13.69104],[77.45459,13.69564],[77.453,13.69601],[77.4525,13.70405],[77.45074,13.70483],[77.45007,13.7109],[77.46166,13.70965],[77.46508,13.71088],[77.46336,13.72292],[77.46464,13.73413],[77.46667,13.73997],[77.46765,13.75317],[77.47055,13.75802],[77.46515,13.75868],[77.46379,13.7715],[77.46043,13.78047],[77.46138,13.78839],[77.45649,13.78872],[77.46087,13.803],[77.46463,13.80318],[77.46423,13.80792],[77.45746,13.80722],[77.45479,13.80985],[77.44533,13.81102],[77.44059,13.80657],[77.43729,13.7972],[77.43575,13.7965],[77.42257,13.79909],[77.42549,13.80322],[77.42827,13.80347],[77.42865,13.80681],[77.41967,13.8096],[77.4185,13.80624],[77.41611,13.80668],[77.42302,13.82257],[77.42737,13.82834],[77.4274,13.8322],[77.43132,13.83665],[77.43252,13.84322],[77.42917,13.8448],[77.42683,13.84112],[77.4197,13.84161],[77.41554,13.83973],[77.39938,13.84105],[77.3819,13.83936],[77.3794,13.84084],[77.38119,13.84729],[77.37689,13.85069],[77.37364,13.85263],[77.36243,13.85425],[77.35732,13.8513],[77.35328,13.84552],[77.34555,13.8411],[77.33684,13.83275],[77.32538,13.83324],[77.32469,13.83989],[77.32307,13.84],[77.32514,13.84538],[77.32165,13.84702],[77.32145,13.85592],[77.31907,13.85722],[77.31646,13.86327],[77.31149,13.86658],[77.31055,13.86288],[77.30358,13.86203],[77.29638,13.85701],[77.29492,13.8574],[77.29016,13.84825],[77.28828,13.84748],[77.28027,13.85105],[77.25669,13.84652],[77.25615,13.85167],[77.25911,13.86314],[77.24636,13.86791],[77.24868,13.87352],[77.24472,13.88327],[77.24778,13.88832],[77.24827,13.90121],[77.24514,13.90301],[77.23647,13.90102],[77.23562,13.90414],[77.23065,13.90333],[77.22989,13.89161],[77.22666,13.88216],[77.22483,13.88292],[77.22401,13.88122],[77.21985,13.86772],[77.21541,13.86791],[77.21703,13.88374],[77.21555,13.88617],[77.21313,13.88619],[77.2102,13.88494],[77.20991,13.87807],[77.20043,13.86304],[77.18139,13.86984],[77.18568,13.87617],[77.18584,13.89233],[77.19084,13.91187],[77.18808,13.91391],[77.18471,13.92519],[77.16992,13.92061],[77.16193,13.90662],[77.16205,13.89906],[77.16876,13.88957],[77.16876,13.88052],[77.17136,13.87111],[77.16858,13.86449],[77.14764,13.86848],[77.13604,13.85652],[77.1282,13.85646],[77.13217,13.8462],[77.15601,13.84435],[77.15368,13.83414],[77.16549,13.83311],[77.16868,13.82962],[77.16772,13.82121],[77.16265,13.81684],[77.15952,13.81686],[77.16279,13.81237],[77.16258,13.80866],[77.15752,13.80603],[77.1621,13.80476],[77.16285,13.79846],[77.16516,13.79447],[77.17559,13.7836],[77.17851,13.78268],[77.17305,13.76201],[77.15111,13.76621],[77.14087,13.76504],[77.13983,13.7611],[77.13684,13.7583],[77.12233,13.7613],[77.11788,13.7645],[77.10596,13.76776],[77.09044,13.76714],[77.09022,13.76236],[77.08547,13.76234],[77.08383,13.75664],[77.08396,13.74577],[77.08563,13.74244],[77.07589,13.74284],[77.06978,13.74522],[77.0647,13.74383],[77.05991,13.74933],[77.0602,13.75283],[77.05749,13.75296],[77.05897,13.75716],[77.05804,13.7603],[77.05184,13.76418],[77.04861,13.77018],[77.04406,13.77084],[77.04337,13.77779],[77.02447,13.77922],[77.02388,13.7679],[77.01735,13.7561],[77.01868,13.74867],[77.01658,13.74586],[77.0165,13.73851],[76.9985,13.74557],[76.99687,13.74775],[76.99839,13.75505],[76.9945,13.75999],[76.9929,13.77075],[76.9852,13.7908],[76.98919,13.79463],[76.99169,13.80267],[76.98974,13.81294],[76.97641,13.81732],[76.97802,13.82687],[76.98289,13.8289],[76.9889,13.83526],[76.99223,13.84901],[76.9968,13.84895],[77.00654,13.85206],[77.01422,13.86031],[77.01319,13.87152],[77.01847,13.87254],[77.01625,13.88441],[77.02032,13.88843],[77.02063,13.89235],[77.02325,13.89593],[77.02303,13.9026],[77.03222,13.90518],[77.04729,13.9066],[77.04422,13.91476],[77.04166,13.93343],[77.03704,13.93695],[77.02437,13.93995],[77.01421,13.95487],[77.00627,13.95646],[76.99377,13.96256],[76.99618,13.97676],[77.00033,13.98942],[76.99949,13.99034],[76.99637,13.99051],[76.98197,14.00163],[76.96539,14.0115],[76.94994,14.01509],[76.94378,14.0233],[76.94347,14.02974],[76.94016,14.0295],[76.93502,14.0328],[76.93113,14.0302],[76.9344,14.04464],[76.93238,14.05392],[76.95186,14.0538],[76.9586,14.05704],[76.97174,14.05802],[76.97256,14.06022]]],[[[77.16105,14.34199],[77.15734,14.3421],[77.15266,14.33914],[77.13921,14.34014],[77.1357,14.33687],[77.137,14.33176],[77.13633,14.32302],[77.13059,14.30684],[77.12538,14.29988],[77.11564,14.29248],[77.11552,14.27424],[77.11019,14.26816],[77.11169,14.26536],[77.11119,14.26158],[77.12048,14.26293],[77.11856,14.25682],[77.11533,14.25453],[77.11832,14.24481],[77.11565,14.23758],[77.11667,14.22638],[77.11486,14.22314],[77.1008,14.21714],[77.08117,14.21415],[77.07589,14.22336],[77.06776,14.2284],[77.0618,14.22946],[77.06007,14.23228],[77.06028,14.2362],[77.05694,14.24067],[77.05773,14.2438],[77.03605,14.24674],[77.03614,14.24487],[77.03054,14.24419],[77.03036,14.24227],[77.00848,14.238],[77.00566,14.23579],[77.00379,14.22956],[76.99929,14.2291],[77.00295,14.22156],[77.00562,14.22099],[77.00641,14.21506],[77.00608,14.20619],[77.0028,14.19796],[77.00922,14.19411],[77.01502,14.19341],[77.02146,14.18879],[77.02384,14.1863],[77.02206,14.17744],[77.02603,14.17479],[77.02041,14.15716],[77.02183,14.15195],[77.0201,14.1309],[77.02586,14.12994],[77.02622,14.12502],[77.02181,14.12325],[77.02406,14.11261],[77.01636,14.10424],[77.01466,14.10039],[77.01912,14.09639],[77.01842,14.09463],[77.0298,14.08817],[77.02888,14.07781],[77.02544,14.06573],[77.03152,14.05646],[77.04571,14.05669],[77.06742,14.05202],[77.07612,14.05327],[77.07532,14.04348],[77.07892,14.04264],[77.09512,14.04244],[77.10237,14.04524],[77.1274,14.04701],[77.13184,14.04392],[77.1364,14.0229],[77.14036,14.01796],[77.14173,14.0132],[77.14107,14.00386],[77.15127,14.00069],[77.15872,14.00204],[77.17283,14.00108],[77.17095,14.012],[77.174,14.01298],[77.20467,14.00825],[77.20997,14.01104],[77.21572,14.01088],[77.21982,14.01357],[77.24535,14.01194],[77.24817,14.01757],[77.25679,14.02238],[77.26059,14.02886],[77.26312,14.02873],[77.27036,14.03448],[77.27732,14.03465],[77.27686,14.03197],[77.27876,14.03241],[77.27931,14.02602],[77.275,14.01128],[77.28188,14.01291],[77.29209,14.02001],[77.29827,14.02161],[77.30142,14.02741],[77.30658,14.032],[77.31081,14.03253],[77.32223,14.02999],[77.32268,14.02301],[77.33686,14.00447],[77.33622,13.99537],[77.34818,13.99447],[77.36109,13.99081],[77.35934,13.98383],[77.35595,13.97908],[77.35213,13.96875],[77.35385,13.96279],[77.34949,13.95814],[77.37129,13.95275],[77.36745,13.94968],[77.35521,13.93076],[77.34784,13.91596],[77.35016,13.91341],[77.35293,13.9139],[77.35445,13.90411],[77.36849,13.90295],[77.38717,13.90625],[77.39788,13.90618],[77.39994,13.89646],[77.39874,13.88813],[77.40546,13.88945],[77.41057,13.89631],[77.42051,13.89933],[77.42283,13.90282],[77.42841,13.90593],[77.42835,13.90908],[77.43227,13.91054],[77.43504,13.91501],[77.4349,13.91967],[77.41588,13.9242],[77.41488,13.93663],[77.41209,13.94556],[77.43072,13.94508],[77.43536,13.94751],[77.43758,13.95551],[77.43531,13.95766],[77.43475,13.96438],[77.43788,13.97552],[77.43402,13.98016],[77.42766,13.97968],[77.42589,13.98611],[77.39569,13.98373],[77.38164,13.97623],[77.37967,13.98984],[77.38765,14.00571],[77.39016,14.0167],[77.38491,14.01603],[77.3323,14.03069],[77.33509,14.0454],[77.3405,14.06019],[77.34593,14.05967],[77.36054,14.06256],[77.36366,14.07301],[77.37361,14.07701],[77.37562,14.07935],[77.38127,14.09784],[77.38618,14.09756],[77.38881,14.09948],[77.39761,14.10955],[77.40092,14.11871],[77.40103,14.12018],[77.39724,14.12318],[77.39736,14.12544],[77.39061,14.12664],[77.3821,14.1235],[77.37566,14.11868],[77.36168,14.11533],[77.35355,14.10969],[77.34978,14.10313],[77.34747,14.10364],[77.35148,14.12037],[77.35137,14.12998],[77.35171,14.1311],[77.36057,14.13083],[77.37894,14.13584],[77.38335,14.14413],[77.38507,14.15326],[77.38804,14.15363],[77.38925,14.15965],[77.39488,14.16077],[77.39474,14.1687],[77.39162,14.17282],[77.39372,14.17425],[77.40785,14.17352],[77.42036,14.17695],[77.42277,14.17644],[77.4226,14.17298],[77.4302,14.17046],[77.44575,14.1717],[77.45682,14.16962],[77.467,14.17164],[77.46809,14.16489],[77.48083,14.16474],[77.48813,14.16167],[77.49961,14.1598],[77.50351,14.15712],[77.51065,14.17305],[77.51434,14.17665],[77.51367,14.17947],[77.5152,14.18294],[77.51703,14.18281],[77.51703,14.18604],[77.50465,14.19398],[77.50133,14.20477],[77.50328,14.21054],[77.49449,14.22424],[77.49592,14.23199],[77.49279,14.23101],[77.49373,14.23301],[77.49237,14.23484],[77.49652,14.23691],[77.50341,14.25977],[77.50221,14.2614],[77.50386,14.26375],[77.49828,14.27885],[77.49275,14.27815],[77.49076,14.2813],[77.48712,14.28172],[77.48312,14.29071],[77.47893,14.29216],[77.46606,14.28309],[77.45965,14.2805],[77.45028,14.28071],[77.45063,14.28279],[77.44813,14.28261],[77.44518,14.29523],[77.44622,14.31747],[77.43806,14.31638],[77.43126,14.31296],[77.4284,14.32864],[77.42308,14.32818],[77.41089,14.33695],[77.39417,14.33659],[77.38909,14.33313],[77.38555,14.3279],[77.37904,14.32272],[77.37692,14.30626],[77.37782,14.30139],[77.3824,14.29901],[77.38506,14.29297],[77.3854,14.28586],[77.38925,14.27856],[77.38736,14.27087],[77.39578,14.26612],[77.40538,14.26669],[77.40694,14.25969],[77.40883,14.25985],[77.40967,14.23192],[77.41148,14.23238],[77.41212,14.22769],[77.41769,14.22584],[77.41939,14.21162],[77.41413,14.20476],[77.4095,14.20554],[77.39199,14.1989],[77.38709,14.20002],[77.38667,14.20352],[77.38322,14.20744],[77.3842,14.22095],[77.37917,14.22648],[77.36637,14.23285],[77.35949,14.23401],[77.36012,14.24531],[77.36383,14.25469],[77.36186,14.26875],[77.36382,14.27583],[77.33906,14.2769],[77.33016,14.27986],[77.31426,14.28051],[77.30534,14.28344],[77.28933,14.2813],[77.28354,14.28274],[77.28289,14.28607],[77.28795,14.29876],[77.28883,14.30547],[77.28854,14.32714],[77.28744,14.32716],[77.28657,14.3401],[77.28484,14.3401],[77.28388,14.33753],[77.27712,14.33754],[77.26931,14.33211],[77.26357,14.3328],[77.25858,14.33092],[77.25828,14.32748],[77.25336,14.32526],[77.25387,14.32223],[77.24734,14.31781],[77.2382,14.31736],[77.22867,14.3212],[77.21347,14.31878],[77.19742,14.32118],[77.18404,14.33247],[77.18104,14.33038],[77.17795,14.33422],[77.17868,14.33548],[77.16932,14.33544],[77.16691,14.34208],[77.16105,14.34199]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"549","area_level":"District","area_name":"Udupi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.68871,13.95574],[74.68458,13.95775],[74.68559,13.95836],[74.68321,13.96496],[74.67476,13.96895],[74.67304,13.97341],[74.66518,13.98215],[74.65535,13.97461],[74.6494,13.96331],[74.64428,13.9575],[74.64442,13.95532],[74.65026,13.94958],[74.65157,13.94593],[74.64784,13.94343],[74.64719,13.94015],[74.63765,13.93766],[74.63402,13.941],[74.63485,13.94361],[74.63064,13.94295],[74.63045,13.94543],[74.62361,13.93611],[74.62039,13.93541],[74.61892,13.9411],[74.60554,13.94066],[74.59965,13.93546],[74.59884,13.93186],[74.59708,13.93166],[74.59569,13.94127],[74.59326,13.93894],[74.59268,13.93416],[74.59014,13.93027],[74.58778,13.93047],[74.58199,13.92524],[74.58679,13.91827],[74.5898,13.90952],[74.59606,13.8831],[74.60183,13.87286],[74.61007,13.865],[74.61003,13.86105],[74.60862,13.86315],[74.60901,13.86013],[74.62581,13.79685],[74.64068,13.71842],[74.64555,13.68196],[74.65177,13.66509],[74.65439,13.66389],[74.66364,13.65194],[74.66625,13.63782],[74.66851,13.64017],[74.66937,13.63479],[74.66729,13.63229],[74.68222,13.54281],[74.68883,13.46427],[74.69543,13.45518],[74.6939,13.45357],[74.69237,13.45631],[74.69118,13.45497],[74.69657,13.40528],[74.69491,13.37591],[74.69711,13.34736],[74.69979,13.34646],[74.70031,13.34442],[74.69506,13.34507],[74.69359,13.34371],[74.69829,13.34256],[74.70753,13.33469],[74.71637,13.31258],[74.71896,13.28627],[74.72687,13.265],[74.72928,13.25275],[74.73179,13.25053],[74.736,13.22652],[74.73932,13.22439],[74.73749,13.2236],[74.74406,13.19371],[74.75169,13.17428],[74.77633,13.07152],[74.77955,13.07237],[74.77731,13.08],[74.78077,13.08927],[74.77961,13.09585],[74.7771,13.09945],[74.77748,13.10271],[74.78249,13.10386],[74.7841,13.10026],[74.79178,13.09653],[74.79825,13.1043],[74.79839,13.10836],[74.79668,13.11115],[74.79551,13.11134],[74.79524,13.10955],[74.79163,13.11236],[74.79208,13.11697],[74.79525,13.1176],[74.80181,13.11478],[74.8066,13.11591],[74.80961,13.11322],[74.81202,13.11526],[74.81457,13.12232],[74.82266,13.12374],[74.82605,13.12955],[74.83248,13.12988],[74.8342,13.12773],[74.83877,13.1288],[74.84153,13.12726],[74.8463,13.12954],[74.84975,13.1263],[74.85981,13.12791],[74.86307,13.12676],[74.86381,13.12218],[74.86825,13.1215],[74.87514,13.10567],[74.8742,13.09931],[74.87825,13.09531],[74.90466,13.10699],[74.91185,13.10805],[74.91203,13.1103],[74.90911,13.11189],[74.91257,13.11246],[74.91325,13.12079],[74.90821,13.12387],[74.91055,13.13291],[74.91608,13.13652],[74.92,13.14296],[74.93331,13.14971],[74.93563,13.14428],[74.93999,13.14555],[74.94273,13.14331],[74.94246,13.1419],[74.94084,13.14238],[74.94111,13.13802],[74.94399,13.13634],[74.93967,13.13432],[74.94017,13.13326],[74.94875,13.12406],[74.94833,13.12288],[74.95332,13.12104],[74.95444,13.12118],[74.95413,13.12325],[74.95977,13.12281],[74.96101,13.12677],[74.96359,13.12536],[74.97486,13.12937],[74.98542,13.14812],[74.9887,13.1523],[74.99153,13.15283],[74.99421,13.15728],[75.00291,13.15234],[75.01095,13.14064],[75.01518,13.13083],[75.02433,13.13866],[75.03186,13.13886],[75.0343,13.14145],[75.03664,13.14165],[75.04287,13.14023],[75.04773,13.13619],[75.05851,13.13153],[75.07123,13.1365],[75.07051,13.14324],[75.07641,13.14781],[75.08363,13.14593],[75.08058,13.15604],[75.08089,13.16179],[75.08689,13.1613],[75.08933,13.16457],[75.09197,13.16249],[75.09747,13.16487],[75.09991,13.16289],[75.09706,13.15595],[75.10368,13.15773],[75.10408,13.15595],[75.10093,13.15406],[75.10368,13.15108],[75.11288,13.15081],[75.1107,13.14751],[75.12067,13.13621],[75.12016,13.13472],[75.11586,13.13348],[75.11512,13.13125],[75.12004,13.13091],[75.12227,13.13308],[75.12852,13.13194],[75.12874,13.13453],[75.1321,13.1328],[75.13642,13.13377],[75.1375,13.13176],[75.14468,13.13134],[75.1436,13.12856],[75.14485,13.1262],[75.15079,13.12486],[75.15915,13.1314],[75.15884,13.13288],[75.16185,13.13195],[75.16767,13.13624],[75.17087,13.14484],[75.17659,13.14718],[75.18035,13.15441],[75.18029,13.15804],[75.19212,13.16355],[75.2058,13.17728],[75.20108,13.18051],[75.19845,13.17958],[75.19528,13.18256],[75.18984,13.18308],[75.18074,13.19503],[75.17703,13.19674],[75.17559,13.19916],[75.17664,13.20183],[75.17356,13.20397],[75.1705,13.20475],[75.16675,13.2028],[75.16599,13.20767],[75.16883,13.21159],[75.16209,13.22903],[75.15805,13.24778],[75.15361,13.25761],[75.1529,13.26431],[75.14384,13.27734],[75.13994,13.28807],[75.13609,13.2898],[75.13125,13.28777],[75.13091,13.28584],[75.12605,13.28662],[75.12092,13.28488],[75.1193,13.28212],[75.11247,13.28247],[75.1122,13.28584],[75.10516,13.29275],[75.10069,13.30107],[75.09603,13.31702],[75.07853,13.34296],[75.08335,13.34417],[75.08884,13.34991],[75.08973,13.36119],[75.09855,13.35691],[75.1021,13.36011],[75.10819,13.35927],[75.11205,13.3564],[75.11456,13.35712],[75.11702,13.36158],[75.1228,13.3652],[75.12768,13.36614],[75.1273,13.37056],[75.12932,13.37747],[75.12709,13.38521],[75.1319,13.39118],[75.13956,13.38677],[75.14308,13.39179],[75.14635,13.39282],[75.14654,13.39561],[75.13989,13.40677],[75.1431,13.40818],[75.14532,13.41828],[75.14948,13.41898],[75.15089,13.42705],[75.15496,13.43027],[75.14874,13.43683],[75.15301,13.43993],[75.15452,13.45313],[75.14413,13.45471],[75.14556,13.4572],[75.14232,13.45778],[75.14073,13.46133],[75.13262,13.4607],[75.12667,13.46214],[75.11577,13.4568],[75.11122,13.46065],[75.11311,13.46656],[75.10396,13.48245],[75.10227,13.48894],[75.09679,13.48644],[75.09203,13.48963],[75.0907,13.49331],[75.08761,13.49442],[75.07987,13.49246],[75.0775,13.49663],[75.07956,13.50462],[75.07684,13.51427],[75.06826,13.52345],[75.06416,13.52389],[75.0618,13.51798],[75.06007,13.51889],[75.05939,13.52105],[75.06265,13.52868],[75.04901,13.53733],[75.04955,13.55404],[75.04545,13.5569],[75.04255,13.55606],[75.04216,13.56148],[75.03499,13.56712],[75.03363,13.57384],[75.03721,13.57697],[75.03779,13.57996],[75.04516,13.5853],[75.05078,13.58329],[75.05588,13.58616],[75.05668,13.58895],[75.05875,13.58933],[75.05998,13.5916],[75.06127,13.60261],[75.05577,13.61047],[75.05196,13.61056],[75.04997,13.608],[75.04394,13.61037],[75.03942,13.61034],[75.03625,13.61319],[75.03647,13.6165],[75.03241,13.61924],[75.02819,13.62712],[75.02335,13.6272],[75.02097,13.6309],[75.01787,13.63136],[75.01542,13.63467],[75.01779,13.64046],[75.01496,13.64431],[75.01339,13.65196],[75.01495,13.65423],[75.01272,13.65777],[75.01571,13.66356],[75.02432,13.66049],[75.029,13.66694],[75.02844,13.67016],[75.01205,13.67674],[75.0131,13.68916],[75.01089,13.68934],[75.01097,13.69104],[75.02075,13.69393],[75.0213,13.6981],[75.01296,13.70204],[75.01123,13.70751],[75.00077,13.71062],[74.99112,13.71004],[74.98866,13.72019],[74.99344,13.72118],[74.99855,13.73835],[74.99524,13.74035],[74.98982,13.73988],[74.98688,13.74332],[74.97606,13.74648],[74.97159,13.75113],[74.96318,13.75139],[74.95968,13.75408],[74.94809,13.75692],[74.94671,13.7601],[74.94416,13.75995],[74.93774,13.76389],[74.93531,13.76815],[74.93532,13.77173],[74.92798,13.7688],[74.93147,13.7781],[74.93135,13.78069],[74.92936,13.78253],[74.93327,13.78821],[74.93099,13.79226],[74.92437,13.79628],[74.92545,13.80335],[74.92364,13.81267],[74.91644,13.82316],[74.91598,13.83386],[74.9122,13.84464],[74.91245,13.8534],[74.90692,13.86024],[74.88985,13.8659],[74.87869,13.86745],[74.87611,13.86419],[74.8763,13.86052],[74.87083,13.85712],[74.86511,13.85719],[74.8577,13.86895],[74.85615,13.8784],[74.84146,13.89368],[74.83985,13.89738],[74.83722,13.89691],[74.83104,13.90289],[74.81962,13.9078],[74.81619,13.90561],[74.80867,13.90573],[74.80066,13.91011],[74.7946,13.9104],[74.79297,13.9057],[74.79146,13.90549],[74.78785,13.91322],[74.77765,13.91514],[74.7634,13.91433],[74.76264,13.91596],[74.75687,13.91225],[74.75497,13.90905],[74.74507,13.91483],[74.74181,13.91481],[74.73397,13.91407],[74.7303,13.91051],[74.72284,13.90718],[74.71174,13.90509],[74.71378,13.91633],[74.70972,13.92101],[74.70774,13.92683],[74.70567,13.92551],[74.69672,13.92775],[74.6905,13.93349],[74.69277,13.93604],[74.69903,13.93806],[74.70058,13.94443],[74.69768,13.95163],[74.69347,13.95476],[74.68871,13.95574]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"55","area_level":"District","area_name":"Tehri Garhwal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.92585,30.87377],[78.92508,30.87816],[78.92053,30.87863],[78.91162,30.87578],[78.90738,30.87204],[78.90333,30.87341],[78.89565,30.87097],[78.89036,30.8748],[78.88246,30.87763],[78.87257,30.87531],[78.86883,30.86828],[78.86823,30.86259],[78.85951,30.8588],[78.84938,30.84737],[78.85028,30.83648],[78.85476,30.83058],[78.85493,30.82673],[78.85949,30.82353],[78.86253,30.816],[78.85405,30.80667],[78.85596,30.7955],[78.85243,30.79035],[78.84958,30.7786],[78.85258,30.77219],[78.85452,30.75187],[78.84787,30.73771],[78.8345,30.73697],[78.82989,30.7319],[78.81164,30.72508],[78.80813,30.719],[78.80491,30.72428],[78.80344,30.72283],[78.78331,30.72262],[78.77413,30.72018],[78.77025,30.72096],[78.75911,30.71788],[78.75651,30.71546],[78.75686,30.71285],[78.7519,30.71042],[78.74005,30.71639],[78.72761,30.7301],[78.71937,30.73369],[78.71409,30.7263],[78.70852,30.72329],[78.70016,30.71552],[78.68294,30.71356],[78.66111,30.70734],[78.6571,30.69591],[78.65854,30.69239],[78.65628,30.68968],[78.63683,30.68449],[78.63072,30.68933],[78.62713,30.69024],[78.62331,30.68857],[78.62088,30.6912],[78.61133,30.6862],[78.60841,30.68626],[78.60089,30.6916],[78.59615,30.69152],[78.58789,30.68727],[78.58522,30.68056],[78.59274,30.67759],[78.59451,30.67409],[78.59997,30.67224],[78.59609,30.64968],[78.59713,30.63068],[78.59457,30.62668],[78.58449,30.62227],[78.58338,30.61761],[78.57324,30.60606],[78.57748,30.60212],[78.5697,30.59773],[78.56444,30.59145],[78.55987,30.58919],[78.55991,30.58492],[78.55759,30.58328],[78.55411,30.57551],[78.54956,30.57347],[78.54767,30.56699],[78.54936,30.56555],[78.54866,30.55874],[78.54393,30.5514],[78.54383,30.54826],[78.54604,30.54625],[78.54703,30.53814],[78.54546,30.53654],[78.54713,30.53322],[78.53891,30.52702],[78.52911,30.53156],[78.5183,30.52754],[78.51555,30.53266],[78.50831,30.53029],[78.5033,30.53153],[78.49668,30.53064],[78.49679,30.53891],[78.49486,30.54082],[78.49604,30.5497],[78.49827,30.55238],[78.49569,30.55721],[78.49604,30.56085],[78.49901,30.56562],[78.49954,30.58079],[78.50431,30.58582],[78.50933,30.5877],[78.50887,30.58956],[78.51361,30.59538],[78.50918,30.59752],[78.50741,30.6023],[78.50195,30.60836],[78.48713,30.62179],[78.48262,30.62113],[78.47913,30.62531],[78.4724,30.62009],[78.46835,30.61389],[78.45615,30.61327],[78.45225,30.61504],[78.44684,30.61405],[78.44661,30.60869],[78.44148,30.60475],[78.4386,30.59434],[78.43931,30.59166],[78.4364,30.59038],[78.43972,30.58581],[78.43626,30.57359],[78.43857,30.56957],[78.44661,30.56734],[78.45073,30.56357],[78.45081,30.54728],[78.45373,30.54252],[78.44968,30.5345],[78.44665,30.53675],[78.4442,30.53511],[78.44314,30.52383],[78.43701,30.523],[78.42899,30.51717],[78.42555,30.51646],[78.42581,30.51092],[78.42328,30.50883],[78.42575,30.50556],[78.42435,30.49517],[78.41493,30.48818],[78.41118,30.47511],[78.41358,30.46845],[78.40452,30.47149],[78.40759,30.48025],[78.40335,30.48477],[78.40479,30.49076],[78.40333,30.49291],[78.39656,30.49345],[78.39664,30.49665],[78.39247,30.49828],[78.39375,30.50608],[78.38179,30.51246],[78.37693,30.51798],[78.36991,30.51764],[78.36687,30.52051],[78.36145,30.52147],[78.35459,30.529],[78.35652,30.53337],[78.34892,30.53366],[78.3426,30.54494],[78.3452,30.54719],[78.34497,30.54918],[78.33849,30.55134],[78.33877,30.56249],[78.33281,30.56328],[78.32772,30.55815],[78.32812,30.55969],[78.32426,30.56039],[78.31796,30.5742],[78.30776,30.5725],[78.30469,30.57153],[78.30851,30.5687],[78.31381,30.56114],[78.30781,30.55612],[78.29378,30.55526],[78.28969,30.55112],[78.28648,30.55256],[78.28496,30.55989],[78.28613,30.56365],[78.29817,30.56236],[78.30181,30.56425],[78.29656,30.56946],[78.29081,30.57016],[78.28863,30.57197],[78.2923,30.58132],[78.30206,30.58687],[78.29924,30.58932],[78.30013,30.59434],[78.29583,30.59466],[78.28802,30.60024],[78.27862,30.61146],[78.26869,30.61373],[78.25903,30.60725],[78.24911,30.6108],[78.24501,30.60796],[78.24108,30.6016],[78.24359,30.59518],[78.2389,30.59227],[78.23528,30.58635],[78.2191,30.58323],[78.20992,30.57868],[78.20524,30.57826],[78.18548,30.58564],[78.17527,30.58532],[78.16469,30.5884],[78.16446,30.60067],[78.17065,30.60472],[78.1624,30.62072],[78.163,30.62661],[78.15385,30.63561],[78.14679,30.63286],[78.13959,30.63226],[78.13055,30.6356],[78.12522,30.64062],[78.12323,30.63791],[78.11859,30.63704],[78.11499,30.63429],[78.10678,30.63356],[78.10077,30.63527],[78.09321,30.63183],[78.08688,30.63413],[78.08258,30.63123],[78.07697,30.6305],[78.07045,30.62489],[78.06495,30.62369],[78.06622,30.61878],[78.07561,30.60757],[78.06279,30.60421],[78.05699,30.60507],[78.05193,30.60276],[78.04243,30.60206],[78.03059,30.61018],[78.01259,30.61651],[78.01329,30.60685],[78.01016,30.59931],[78.01361,30.5959],[78.01436,30.59177],[78.01345,30.59076],[78.01058,30.59253],[78.00919,30.59018],[78.01044,30.58774],[78.00863,30.58413],[78.00946,30.57907],[78.00259,30.57202],[78.00406,30.56575],[77.99979,30.55977],[77.99222,30.55978],[77.99024,30.55846],[77.99051,30.55616],[77.98055,30.55496],[77.9802,30.55385],[77.98462,30.55087],[77.9825,30.54532],[77.98287,30.53923],[77.97483,30.53761],[77.97565,30.52894],[77.98134,30.53083],[77.98619,30.52586],[77.98441,30.52373],[77.97953,30.5257],[77.97633,30.52523],[77.9754,30.52232],[77.97938,30.51652],[77.98689,30.51761],[77.98778,30.51489],[77.98156,30.50871],[77.97872,30.50867],[77.97473,30.51358],[77.96837,30.50931],[77.96543,30.51043],[77.96302,30.51379],[77.95757,30.51418],[77.95403,30.51721],[77.94935,30.51782],[77.94673,30.51602],[77.94738,30.51133],[77.94413,30.51121],[77.94147,30.51328],[77.93615,30.51135],[77.93799,30.50482],[77.94103,30.50127],[77.95876,30.4891],[77.9733,30.48613],[77.97641,30.47595],[77.98042,30.47661],[77.98749,30.46685],[77.99071,30.46904],[77.99623,30.46697],[78.00008,30.46844],[77.99841,30.47125],[77.99995,30.47451],[77.99783,30.48007],[78.00457,30.48049],[78.0086,30.48355],[78.01451,30.48394],[78.01976,30.48127],[78.02305,30.47809],[78.02171,30.47505],[78.03102,30.47315],[78.03235,30.46751],[78.03668,30.46537],[78.03611,30.46918],[78.04024,30.4726],[78.03955,30.48225],[78.05264,30.48101],[78.06047,30.47565],[78.06884,30.47733],[78.0708,30.47605],[78.06999,30.47005],[78.07243,30.4706],[78.07708,30.46792],[78.08194,30.46737],[78.08163,30.47383],[78.08619,30.47458],[78.09,30.47324],[78.09548,30.47467],[78.09659,30.47812],[78.10566,30.47821],[78.10684,30.47124],[78.1152,30.47156],[78.12348,30.46822],[78.13217,30.45958],[78.13948,30.45652],[78.1495,30.45751],[78.15326,30.45623],[78.16016,30.45182],[78.16064,30.44888],[78.16412,30.44594],[78.16897,30.44478],[78.18235,30.44972],[78.19789,30.44681],[78.21428,30.44042],[78.22609,30.43355],[78.22915,30.42667],[78.23094,30.42826],[78.23894,30.42383],[78.23937,30.42076],[78.23463,30.41312],[78.22312,30.40556],[78.19847,30.39862],[78.19164,30.39489],[78.19096,30.39243],[78.18487,30.39027],[78.18472,30.38759],[78.17986,30.38632],[78.17491,30.38225],[78.16962,30.3839],[78.16202,30.38246],[78.15469,30.37448],[78.14974,30.37215],[78.14177,30.36507],[78.13821,30.35692],[78.13909,30.35046],[78.13345,30.3438],[78.13816,30.3368],[78.1403,30.32833],[78.14254,30.32552],[78.15772,30.31947],[78.17019,30.30673],[78.17925,30.30513],[78.18555,30.30146],[78.19452,30.30189],[78.20009,30.29383],[78.20912,30.29323],[78.21291,30.30124],[78.21428,30.30943],[78.22495,30.3064],[78.23699,30.29916],[78.23578,30.29259],[78.23675,30.28753],[78.24168,30.28807],[78.25231,30.28505],[78.25821,30.28549],[78.26306,30.29164],[78.26259,30.29451],[78.26811,30.30207],[78.28392,30.29233],[78.28174,30.29072],[78.28299,30.2877],[78.27996,30.28358],[78.28157,30.27655],[78.27688,30.27176],[78.28698,30.26039],[78.28848,30.25271],[78.29576,30.24948],[78.29885,30.24553],[78.29534,30.23552],[78.29658,30.2334],[78.28286,30.22247],[78.26973,30.22066],[78.2589,30.21053],[78.25601,30.20986],[78.2564,30.20743],[78.25459,30.20488],[78.24865,30.20312],[78.24316,30.19707],[78.2442,30.19438],[78.24278,30.19166],[78.23388,30.18571],[78.23699,30.17476],[78.24214,30.1719],[78.24169,30.1657],[78.26149,30.16106],[78.25704,30.15261],[78.25472,30.13821],[78.27728,30.12928],[78.28277,30.12928],[78.28016,30.12179],[78.28542,30.11889],[78.29571,30.11738],[78.30127,30.11153],[78.30305,30.11478],[78.30496,30.11291],[78.3098,30.11272],[78.30855,30.1162],[78.30991,30.11992],[78.3169,30.1248],[78.3218,30.12582],[78.32889,30.12448],[78.33051,30.1326],[78.33477,30.1352],[78.34256,30.1352],[78.34869,30.12975],[78.35615,30.12682],[78.36544,30.12008],[78.37445,30.11691],[78.3821,30.12161],[78.38891,30.12069],[78.39138,30.12252],[78.39218,30.13046],[78.39026,30.13168],[78.39106,30.13503],[78.40005,30.13765],[78.40457,30.1373],[78.41753,30.13049],[78.42537,30.113],[78.43591,30.11287],[78.43885,30.1112],[78.43397,30.09901],[78.43483,30.08041],[78.44642,30.07388],[78.45051,30.06903],[78.46014,30.06724],[78.46547,30.06445],[78.47704,30.06674],[78.47924,30.0629],[78.47958,30.05563],[78.48742,30.05809],[78.49246,30.07267],[78.49717,30.07545],[78.50099,30.07438],[78.49917,30.06304],[78.50676,30.0563],[78.51131,30.05493],[78.51433,30.05834],[78.51409,30.06618],[78.52268,30.06577],[78.52366,30.06827],[78.52261,30.07098],[78.52483,30.0738],[78.5323,30.07575],[78.55075,30.07017],[78.56311,30.06903],[78.5658,30.06166],[78.57699,30.06288],[78.57945,30.06134],[78.58384,30.05319],[78.58915,30.05284],[78.58891,30.06254],[78.59098,30.06609],[78.59317,30.06678],[78.59872,30.06456],[78.60214,30.06817],[78.58878,30.07253],[78.5824,30.07228],[78.58279,30.07557],[78.59137,30.08408],[78.59208,30.08691],[78.58032,30.09987],[78.57897,30.10369],[78.58093,30.10579],[78.58686,30.1052],[78.5882,30.10779],[78.58856,30.11352],[78.58617,30.11923],[78.58712,30.12198],[78.5975,30.1241],[78.60134,30.12676],[78.59599,30.13114],[78.59754,30.14483],[78.60581,30.14307],[78.60805,30.14859],[78.61475,30.14892],[78.61727,30.15084],[78.62009,30.15623],[78.61897,30.16287],[78.62122,30.16774],[78.62068,30.17841],[78.63253,30.18456],[78.64496,30.19442],[78.64567,30.19665],[78.64316,30.1997],[78.64259,30.20373],[78.64707,30.20745],[78.65789,30.20455],[78.66382,30.20607],[78.66662,30.21091],[78.67014,30.2126],[78.68029,30.21014],[78.67941,30.21743],[78.68376,30.22118],[78.68168,30.22375],[78.68361,30.22637],[78.67986,30.23167],[78.68289,30.23856],[78.68709,30.23856],[78.69244,30.23441],[78.69917,30.23636],[78.70474,30.23132],[78.71344,30.2324],[78.71388,30.23636],[78.71613,30.23686],[78.7189,30.23212],[78.74836,30.21311],[78.75521,30.21755],[78.76258,30.21692],[78.76619,30.22595],[78.77852,30.22548],[78.78734,30.22853],[78.79189,30.22813],[78.79777,30.22113],[78.80671,30.21972],[78.80837,30.22123],[78.809,30.22752],[78.82099,30.22955],[78.81951,30.23753],[78.82666,30.24331],[78.83954,30.23704],[78.8443,30.23638],[78.84656,30.23851],[78.84729,30.24646],[78.85251,30.24634],[78.85794,30.24328],[78.85996,30.24363],[78.87182,30.25156],[78.87513,30.25174],[78.87822,30.26025],[78.8824,30.26005],[78.89215,30.25242],[78.89746,30.25087],[78.90145,30.24263],[78.90995,30.2497],[78.91106,30.25691],[78.92008,30.26134],[78.92017,30.26479],[78.91312,30.26891],[78.89472,30.27106],[78.89345,30.27268],[78.8832,30.2713],[78.87348,30.27556],[78.87162,30.28167],[78.87283,30.28485],[78.85841,30.302],[78.85831,30.30431],[78.86102,30.30812],[78.85781,30.31359],[78.86886,30.32192],[78.86378,30.32818],[78.85493,30.33281],[78.85821,30.34692],[78.84546,30.35587],[78.84017,30.35515],[78.83516,30.3574],[78.83801,30.3599],[78.8388,30.37666],[78.83411,30.384],[78.83515,30.39159],[78.82574,30.39468],[78.81685,30.40083],[78.82397,30.40803],[78.82571,30.41245],[78.82393,30.4137],[78.82562,30.41572],[78.82872,30.41496],[78.83303,30.41718],[78.83723,30.42508],[78.84407,30.42997],[78.84894,30.44465],[78.8474,30.44806],[78.84337,30.45005],[78.85056,30.45621],[78.84877,30.46049],[78.84163,30.46573],[78.84156,30.46867],[78.8372,30.47088],[78.83522,30.47444],[78.82381,30.47845],[78.82572,30.48305],[78.83177,30.48379],[78.83762,30.49087],[78.84525,30.48968],[78.84997,30.4909],[78.85678,30.49641],[78.8664,30.50909],[78.86822,30.51466],[78.86638,30.51682],[78.86778,30.51849],[78.86218,30.52939],[78.86259,30.54191],[78.86039,30.54367],[78.85835,30.55045],[78.863,30.55444],[78.86588,30.56116],[78.86286,30.56677],[78.86928,30.57162],[78.87313,30.57821],[78.87829,30.58133],[78.88615,30.58296],[78.88922,30.58594],[78.89054,30.5957],[78.88627,30.60351],[78.89629,30.61284],[78.90262,30.61606],[78.90338,30.62217],[78.90932,30.62949],[78.90744,30.63362],[78.90817,30.64031],[78.90529,30.65424],[78.90981,30.66314],[78.90883,30.66801],[78.91211,30.67618],[78.91205,30.68782],[78.91075,30.69053],[78.91623,30.69502],[78.91666,30.70109],[78.92375,30.71407],[78.92814,30.71869],[78.94481,30.72159],[78.94805,30.72411],[78.9519,30.73216],[78.96023,30.73481],[78.97133,30.72997],[78.97925,30.73356],[78.99203,30.73166],[78.99519,30.7339],[78.99498,30.73758],[78.99893,30.74353],[79.00302,30.74383],[79.00025,30.74894],[79.01825,30.74972],[79.02096,30.75634],[79.02087,30.76298],[79.02835,30.7675],[79.02354,30.77932],[79.02462,30.78376],[79.02988,30.79194],[79.02856,30.79614],[79.02587,30.79769],[79.03391,30.8028],[79.03532,30.80615],[79.02527,30.81366],[79.01877,30.82167],[79.02058,30.83057],[79.01719,30.84443],[79.00706,30.85234],[79.00302,30.85854],[78.99482,30.8615],[78.97608,30.85336],[78.96964,30.85263],[78.95156,30.85531],[78.94552,30.85365],[78.93923,30.8685],[78.93325,30.87346],[78.92585,30.87377]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"550","area_level":"District","area_name":"Uttara Kannada","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.24167,14.71151],[74.24139,14.71177],[74.24109,14.71192],[74.24085,14.71198],[74.24049,14.7119],[74.2401,14.71175],[74.23955,14.71164],[74.23928,14.71146],[74.23896,14.71136],[74.23863,14.71137],[74.23848,14.71126],[74.2384,14.71102],[74.23765,14.71002],[74.23759,14.70964],[74.23772,14.70927],[74.23814,14.70901],[74.2385,14.70892],[74.23889,14.70875],[74.23961,14.70871],[74.24013,14.70873],[74.24038,14.70897],[74.24051,14.70963],[74.24077,14.70985],[74.24118,14.70996],[74.24149,14.71017],[74.2417,14.7107],[74.2418,14.71116],[74.24167,14.71151]]],[[[74.15677,14.73679],[74.15702,14.73708],[74.15728,14.73751],[74.15754,14.73777],[74.15803,14.73812],[74.15813,14.73838],[74.15808,14.73873],[74.15779,14.7391],[74.15722,14.73934],[74.15671,14.73972],[74.15624,14.74037],[74.15532,14.74122],[74.15424,14.74207],[74.15388,14.74224],[74.15356,14.74228],[74.15339,14.74221],[74.15319,14.74193],[74.15293,14.74123],[74.1524,14.74034],[74.15239,14.74002],[74.15266,14.7398],[74.15353,14.73962],[74.15435,14.73907],[74.155,14.73877],[74.15548,14.73847],[74.15573,14.73814],[74.1558,14.73761],[74.15596,14.73717],[74.15626,14.73686],[74.15661,14.73675],[74.15677,14.73679]]],[[[74.11312,14.75812],[74.11269,14.75857],[74.11213,14.75895],[74.11155,14.75959],[74.11122,14.76013],[74.11116,14.76041],[74.11152,14.76136],[74.11131,14.76168],[74.11091,14.76188],[74.11037,14.76196],[74.10983,14.76186],[74.1093,14.7615],[74.10858,14.76008],[74.10807,14.75963],[74.10786,14.75875],[74.10817,14.75775],[74.10847,14.75752],[74.109,14.75757],[74.10955,14.75744],[74.10989,14.75715],[74.11049,14.75644],[74.1105,14.75613],[74.1097,14.75537],[74.10949,14.75494],[74.10943,14.7545],[74.10954,14.7541],[74.10967,14.75393],[74.11006,14.7539],[74.11048,14.75448],[74.11056,14.75491],[74.11082,14.75524],[74.11138,14.75536],[74.11187,14.75528],[74.11272,14.75474],[74.11312,14.75463],[74.11355,14.75439],[74.11412,14.75428],[74.11469,14.75441],[74.11506,14.7543],[74.11553,14.75428],[74.11574,14.75435],[74.11607,14.75428],[74.11614,14.754],[74.11648,14.75385],[74.11685,14.75383],[74.11719,14.75337],[74.11742,14.75335],[74.11759,14.75347],[74.11757,14.7537],[74.11767,14.75379],[74.11799,14.75375],[74.1183,14.75354],[74.11853,14.75318],[74.11924,14.75282],[74.1195,14.75279],[74.1195,14.75311],[74.11966,14.75334],[74.11969,14.75394],[74.11937,14.75478],[74.11905,14.7552],[74.11842,14.75546],[74.11803,14.75546],[74.11762,14.75575],[74.11718,14.75574],[74.11672,14.75555],[74.11614,14.75567],[74.11485,14.75674],[74.11363,14.75744],[74.11312,14.75812]]],[[[74.08897,14.79371],[74.08906,14.79407],[74.08903,14.79458],[74.08895,14.79478],[74.08904,14.79498],[74.08916,14.79529],[74.08898,14.7955],[74.08725,14.79635],[74.08657,14.79651],[74.08614,14.79649],[74.08599,14.79636],[74.08592,14.79614],[74.08596,14.79593],[74.08639,14.79528],[74.08663,14.79503],[74.08681,14.79488],[74.08704,14.79477],[74.0872,14.79461],[74.08729,14.79447],[74.08727,14.79426],[74.08718,14.79406],[74.08716,14.7939],[74.08717,14.79377],[74.08722,14.79368],[74.08736,14.79356],[74.08754,14.79353],[74.08773,14.79361],[74.08799,14.79359],[74.08813,14.79349],[74.08846,14.79345],[74.08866,14.79346],[74.08878,14.7935],[74.08897,14.79371]]],[[[74.05628,14.81716],[74.05617,14.81725],[74.05596,14.81728],[74.05572,14.81727],[74.05553,14.81716],[74.05523,14.81704],[74.0549,14.81697],[74.05463,14.81697],[74.05432,14.8169],[74.05401,14.81662],[74.05399,14.81634],[74.05402,14.81623],[74.05412,14.81611],[74.05428,14.81601],[74.05446,14.81595],[74.05462,14.81595],[74.05484,14.81606],[74.05501,14.81629],[74.05514,14.81642],[74.05528,14.81647],[74.05547,14.81644],[74.0557,14.8162],[74.05598,14.81608],[74.05628,14.81603],[74.05642,14.81595],[74.05671,14.81552],[74.05713,14.81533],[74.05735,14.8154],[74.05743,14.81552],[74.05733,14.81573],[74.05711,14.81594],[74.05695,14.8162],[74.0569,14.81637],[74.05675,14.81659],[74.05656,14.81674],[74.05637,14.81697],[74.05628,14.81716]]],[[[74.06479,14.81961],[74.06501,14.81975],[74.06545,14.8198],[74.06568,14.8199],[74.06575,14.8201],[74.06565,14.82035],[74.06498,14.82085],[74.06417,14.82134],[74.06392,14.82143],[74.06367,14.82145],[74.06323,14.82136],[74.06308,14.82127],[74.06297,14.82116],[74.06261,14.82113],[74.06229,14.82108],[74.06209,14.82091],[74.06207,14.82075],[74.06211,14.82061],[74.06242,14.82026],[74.06241,14.82011],[74.06228,14.81981],[74.06223,14.81963],[74.06227,14.81952],[74.06266,14.81929],[74.06313,14.81928],[74.06358,14.81943],[74.06387,14.81947],[74.06428,14.8194],[74.06449,14.81946],[74.06479,14.81961]]],[[[74.05905,14.82146],[74.05892,14.82154],[74.05876,14.82175],[74.05861,14.82206],[74.05845,14.8222],[74.05825,14.82223],[74.05806,14.82216],[74.05794,14.82204],[74.05792,14.82184],[74.05802,14.82158],[74.05834,14.82127],[74.05835,14.82119],[74.05814,14.821],[74.05792,14.82059],[74.0579,14.82045],[74.05769,14.82052],[74.05746,14.82066],[74.05721,14.82066],[74.057,14.82058],[74.05676,14.82057],[74.05658,14.82047],[74.05658,14.81979],[74.05672,14.81942],[74.05711,14.81893],[74.05737,14.8188],[74.0576,14.81874],[74.05784,14.81874],[74.05802,14.81886],[74.0581,14.81902],[74.05816,14.8196],[74.05821,14.81964],[74.05845,14.81972],[74.0588,14.81974],[74.05894,14.8196],[74.05912,14.81951],[74.05927,14.81945],[74.05952,14.81948],[74.05965,14.81952],[74.06005,14.8198],[74.06019,14.81981],[74.06048,14.81965],[74.06102,14.81967],[74.0613,14.81978],[74.0615,14.82001],[74.06166,14.82022],[74.06176,14.82051],[74.0618,14.82076],[74.06182,14.82106],[74.0618,14.82132],[74.06166,14.82156],[74.06145,14.82166],[74.06105,14.82171],[74.06049,14.82159],[74.06036,14.82162],[74.06009,14.82176],[74.05988,14.82175],[74.05931,14.82143],[74.05905,14.82146]]],[[[74.09364,14.83582],[74.0938,14.83595],[74.09393,14.8361],[74.09407,14.83629],[74.09415,14.83648],[74.09424,14.8366],[74.0943,14.83663],[74.0947,14.83667],[74.09485,14.83676],[74.09522,14.83708],[74.09557,14.83723],[74.0957,14.83725],[74.09578,14.83731],[74.09585,14.83739],[74.09586,14.83756],[74.09582,14.83783],[74.09568,14.83808],[74.0955,14.83818],[74.09523,14.83827],[74.09512,14.83828],[74.09501,14.83834],[74.09485,14.83846],[74.0947,14.83852],[74.09428,14.83863],[74.09409,14.83873],[74.09389,14.83881],[74.0937,14.83883],[74.09358,14.83879],[74.09345,14.83868],[74.09306,14.8381],[74.09299,14.83791],[74.09287,14.83775],[74.09274,14.83765],[74.09262,14.83724],[74.09254,14.83715],[74.09253,14.8369],[74.09261,14.83676],[74.09283,14.83656],[74.09289,14.83633],[74.09287,14.83615],[74.0929,14.83605],[74.09297,14.83598],[74.09309,14.83588],[74.09328,14.83583],[74.09344,14.83581],[74.09364,14.83582]]],[[[74.10004,14.84466],[74.0997,14.84468],[74.09943,14.84488],[74.09867,14.84521],[74.09838,14.84579],[74.09797,14.84607],[74.09732,14.84639],[74.09709,14.84642],[74.09668,14.84628],[74.09632,14.846],[74.09614,14.84576],[74.09617,14.84558],[74.09639,14.84532],[74.09641,14.84509],[74.09635,14.84489],[74.09638,14.84476],[74.09659,14.84459],[74.09678,14.84429],[74.09665,14.84395],[74.09659,14.84363],[74.0966,14.84325],[74.09676,14.84297],[74.09687,14.84287],[74.09712,14.84278],[74.09737,14.84233],[74.0978,14.84213],[74.09812,14.84207],[74.09869,14.84175],[74.09891,14.84173],[74.09915,14.8418],[74.09949,14.84205],[74.09968,14.84198],[74.09996,14.84174],[74.10009,14.84136],[74.10022,14.84124],[74.10053,14.84116],[74.10074,14.84118],[74.10096,14.84132],[74.10108,14.84151],[74.10085,14.84189],[74.10082,14.84216],[74.10115,14.84248],[74.10122,14.84274],[74.10137,14.84296],[74.1017,14.84311],[74.10187,14.84326],[74.10192,14.84352],[74.1019,14.84369],[74.10163,14.844],[74.10151,14.84419],[74.10142,14.84454],[74.10134,14.84476],[74.10126,14.84483],[74.10103,14.84485],[74.10067,14.84471],[74.10034,14.84465],[74.10004,14.84466]]],[[[74.10782,14.86535],[74.10775,14.86555],[74.10756,14.86571],[74.10703,14.86571],[74.10647,14.86561],[74.10635,14.86551],[74.10628,14.86541],[74.10627,14.86528],[74.1063,14.8651],[74.10642,14.86491],[74.10661,14.86484],[74.10672,14.86486],[74.10677,14.86501],[74.10679,14.86514],[74.10689,14.86516],[74.10705,14.86516],[74.10723,14.86517],[74.10763,14.86513],[74.10775,14.86519],[74.10782,14.86535]]],[[[74.29282,15.52356],[74.29172,15.52496],[74.27815,15.52285],[74.27847,15.51748],[74.2749,15.51306],[74.2603,15.50646],[74.25382,15.50172],[74.25091,15.49159],[74.26398,15.47236],[74.27545,15.44919],[74.27737,15.44049],[74.27506,15.43646],[74.27689,15.43521],[74.26992,15.42604],[74.26878,15.4191],[74.27041,15.41596],[74.27432,15.41358],[74.2783,15.40569],[74.27587,15.39159],[74.28299,15.38294],[74.29871,15.38194],[74.3086,15.37445],[74.3232,15.36768],[74.31626,15.363],[74.31604,15.35997],[74.32184,15.3436],[74.31722,15.33517],[74.31702,15.32912],[74.32443,15.30991],[74.33644,15.29494],[74.32637,15.28374],[74.32057,15.2847],[74.31963,15.28344],[74.30796,15.28333],[74.29433,15.28919],[74.29335,15.28451],[74.28765,15.28389],[74.28179,15.28042],[74.27633,15.28353],[74.27149,15.28113],[74.26103,15.26019],[74.25111,15.25885],[74.25469,15.25407],[74.2522,15.25103],[74.25955,15.24102],[74.28114,15.23626],[74.2867,15.23281],[74.2915,15.23382],[74.30161,15.22434],[74.29986,15.21993],[74.30144,15.21705],[74.30221,15.21801],[74.30452,15.21672],[74.30575,15.2094],[74.31005,15.20629],[74.30862,15.20179],[74.31039,15.19468],[74.31696,15.18626],[74.31738,15.18375],[74.31417,15.18054],[74.31425,15.17752],[74.29567,15.15124],[74.29135,15.14891],[74.28513,15.14903],[74.28358,15.14287],[74.28519,15.13672],[74.28488,15.11391],[74.28288,15.11303],[74.28266,15.10674],[74.27655,15.10538],[74.27265,15.0975],[74.27524,15.09595],[74.27969,15.08808],[74.28073,15.06882],[74.28373,15.06613],[74.28951,15.06482],[74.29025,15.05361],[74.29461,15.04917],[74.29649,15.04121],[74.28824,15.03674],[74.28326,15.03157],[74.28341,15.02353],[74.27245,15.01425],[74.26647,15.00689],[74.26807,15.00201],[74.25361,14.99815],[74.25212,14.99268],[74.2577,14.98823],[74.26432,14.97852],[74.26099,14.97647],[74.2591,14.97006],[74.25527,14.97042],[74.2526,14.95909],[74.24923,14.95904],[74.24755,14.96192],[74.2367,14.96685],[74.23286,14.96412],[74.23175,14.95337],[74.2298,14.9505],[74.22596,14.95046],[74.21755,14.94595],[74.21366,14.94769],[74.21164,14.94354],[74.21263,14.94027],[74.20913,14.93806],[74.20154,14.92572],[74.19166,14.93304],[74.19466,14.93709],[74.19476,14.93994],[74.19126,14.94501],[74.17972,14.9508],[74.17836,14.95367],[74.17946,14.95705],[74.17476,14.95853],[74.17138,14.95719],[74.16361,14.95848],[74.16077,14.95555],[74.15915,14.95585],[74.15833,14.94931],[74.15416,14.94343],[74.15547,14.9422],[74.15426,14.93984],[74.15624,14.93887],[74.15855,14.93023],[74.16258,14.92689],[74.16591,14.91859],[74.16619,14.91655],[74.16212,14.91214],[74.15342,14.91714],[74.14572,14.91895],[74.14015,14.92323],[74.13504,14.92209],[74.12983,14.92547],[74.12423,14.92532],[74.11998,14.9169],[74.11462,14.91836],[74.10962,14.91697],[74.10851,14.91394],[74.1048,14.9129],[74.10163,14.91579],[74.09453,14.91099],[74.09028,14.90341],[74.08819,14.90343],[74.08578,14.9009],[74.08503,14.89984],[74.08741,14.89891],[74.09116,14.89987],[74.09648,14.89745],[74.09994,14.88829],[74.09967,14.88075],[74.10588,14.87424],[74.1104,14.86295],[74.11191,14.84679],[74.11493,14.84168],[74.11587,14.84272],[74.11329,14.84572],[74.12322,14.8412],[74.1251,14.83789],[74.12402,14.83197],[74.12618,14.81693],[74.12426,14.805],[74.12205,14.80426],[74.12055,14.80132],[74.11624,14.80204],[74.11334,14.79679],[74.11125,14.79858],[74.11422,14.8023],[74.11262,14.80508],[74.10615,14.80608],[74.10433,14.80449],[74.10218,14.80702],[74.09992,14.80701],[74.09357,14.80574],[74.09277,14.804],[74.09572,14.799],[74.10028,14.79788],[74.10257,14.79327],[74.10831,14.79373],[74.10951,14.79252],[74.11127,14.78983],[74.11019,14.78502],[74.11521,14.78839],[74.11783,14.78655],[74.12156,14.78022],[74.11881,14.77738],[74.11944,14.77399],[74.12058,14.77554],[74.12491,14.77517],[74.12509,14.77767],[74.12812,14.78055],[74.13205,14.78052],[74.13453,14.77814],[74.13715,14.78018],[74.14238,14.77854],[74.15775,14.75993],[74.15774,14.75793],[74.15339,14.75589],[74.15236,14.75183],[74.15055,14.75105],[74.15211,14.74706],[74.15755,14.74493],[74.15825,14.74975],[74.16321,14.75264],[74.17399,14.75186],[74.17572,14.74971],[74.17716,14.75056],[74.185,14.7444],[74.19307,14.7346],[74.19489,14.73054],[74.19268,14.72662],[74.19965,14.72352],[74.20403,14.71928],[74.20843,14.71764],[74.20276,14.73207],[74.20381,14.73639],[74.20868,14.7378],[74.21038,14.73358],[74.21865,14.73752],[74.22181,14.73611],[74.2229,14.7376],[74.22758,14.73804],[74.22613,14.74772],[74.23424,14.74843],[74.24932,14.74118],[74.25044,14.7362],[74.2628,14.71981],[74.26494,14.71288],[74.26186,14.70943],[74.25675,14.70756],[74.25742,14.70634],[74.26088,14.7071],[74.26351,14.7049],[74.26663,14.70542],[74.27234,14.70009],[74.27105,14.69905],[74.28286,14.6753],[74.28032,14.67113],[74.27732,14.67204],[74.27552,14.67018],[74.27771,14.66953],[74.27564,14.66635],[74.27796,14.66588],[74.27938,14.66212],[74.28178,14.66401],[74.2843,14.66357],[74.27968,14.66012],[74.27868,14.6565],[74.28053,14.65639],[74.28227,14.65335],[74.2805,14.64924],[74.28516,14.6471],[74.28452,14.64338],[74.28644,14.63421],[74.2816,14.62648],[74.2793,14.62561],[74.27137,14.63007],[74.27043,14.62698],[74.27358,14.62748],[74.28132,14.61014],[74.28717,14.60506],[74.293,14.59649],[74.2943,14.58955],[74.31473,14.54572],[74.31413,14.54049],[74.31079,14.53878],[74.3108,14.5367],[74.31165,14.5319],[74.31629,14.53087],[74.31599,14.52657],[74.31151,14.52467],[74.31022,14.52137],[74.31358,14.52171],[74.31653,14.51951],[74.32565,14.51985],[74.32669,14.51602],[74.33708,14.51932],[74.34028,14.51466],[74.34471,14.52135],[74.34858,14.52056],[74.35473,14.52217],[74.35989,14.51092],[74.35542,14.50842],[74.35461,14.5025],[74.3605,14.50107],[74.36378,14.49406],[74.38357,14.43951],[74.38238,14.43645],[74.38418,14.43413],[74.38025,14.43128],[74.38414,14.42955],[74.38487,14.42666],[74.38339,14.42452],[74.38111,14.42439],[74.38603,14.41833],[74.3889,14.41978],[74.3938,14.41859],[74.39767,14.40818],[74.40476,14.3753],[74.40243,14.36883],[74.40496,14.36554],[74.40493,14.35768],[74.4125,14.3294],[74.41295,14.31727],[74.41858,14.30459],[74.44304,14.22988],[74.44166,14.22457],[74.44959,14.21616],[74.44891,14.21257],[74.45061,14.21179],[74.4504,14.20856],[74.45291,14.20717],[74.45296,14.20368],[74.45425,14.20311],[74.45347,14.20028],[74.4577,14.19908],[74.46077,14.20113],[74.4639,14.20053],[74.46893,14.18868],[74.47896,14.1438],[74.47709,14.14019],[74.48001,14.13611],[74.48669,14.10516],[74.48567,14.09447],[74.48826,14.09157],[74.48855,14.0866],[74.49257,14.0782],[74.49995,14.04825],[74.50073,14.02915],[74.50299,14.02688],[74.50136,14.02335],[74.50916,14.00765],[74.509,14.00111],[74.51286,13.99649],[74.51398,13.98686],[74.52841,13.97251],[74.53245,13.96482],[74.53436,13.96463],[74.53474,13.96781],[74.53901,13.96439],[74.54202,13.95729],[74.54728,13.95529],[74.54929,13.94915],[74.55717,13.95134],[74.56132,13.94541],[74.56718,13.9488],[74.57368,13.93836],[74.57823,13.92675],[74.58199,13.92524],[74.58778,13.93047],[74.59014,13.93027],[74.59268,13.93416],[74.59326,13.93894],[74.59569,13.94127],[74.59708,13.93166],[74.59884,13.93186],[74.59965,13.93546],[74.60554,13.94066],[74.61892,13.9411],[74.62039,13.93541],[74.62361,13.93611],[74.63045,13.94543],[74.63064,13.94295],[74.63485,13.94361],[74.63402,13.941],[74.63765,13.93766],[74.6474,13.94038],[74.64784,13.94343],[74.65157,13.94593],[74.65026,13.94958],[74.64442,13.95532],[74.64428,13.9575],[74.6494,13.96331],[74.65535,13.97461],[74.66518,13.98215],[74.66311,13.99389],[74.66962,14.00686],[74.66875,14.00865],[74.67751,14.03478],[74.65521,14.03909],[74.65392,14.04386],[74.65712,14.05302],[74.66084,14.05836],[74.65357,14.07443],[74.63735,14.09459],[74.65566,14.11327],[74.6463,14.11441],[74.643,14.13599],[74.64488,14.14207],[74.62899,14.14423],[74.62522,14.16249],[74.65057,14.17006],[74.6655,14.18441],[74.69054,14.16617],[74.69748,14.17309],[74.70747,14.17],[74.72337,14.15258],[74.74302,14.14902],[74.74791,14.14266],[74.74842,14.15685],[74.72873,14.17489],[74.71871,14.21394],[74.71592,14.23323],[74.72999,14.26382],[74.73509,14.26224],[74.74489,14.25534],[74.75266,14.2473],[74.7574,14.24515],[74.76369,14.2379],[74.77294,14.23936],[74.78114,14.23581],[74.7835,14.23101],[74.79176,14.22735],[74.80083,14.22921],[74.80334,14.23202],[74.80581,14.23077],[74.80738,14.23222],[74.80931,14.23062],[74.81823,14.23231],[74.82223,14.22779],[74.83228,14.23002],[74.83737,14.22712],[74.85338,14.21122],[74.85669,14.21276],[74.85923,14.21876],[74.86629,14.21971],[74.86694,14.22727],[74.8682,14.22715],[74.86839,14.23802],[74.8732,14.24123],[74.88024,14.23459],[74.87528,14.22777],[74.87609,14.2194],[74.87952,14.22105],[74.88,14.21949],[74.87746,14.21799],[74.87764,14.21577],[74.89006,14.21682],[74.89618,14.2206],[74.8952,14.22253],[74.89682,14.22738],[74.90016,14.22968],[74.90349,14.22934],[74.90448,14.23069],[74.90892,14.22774],[74.91285,14.22947],[74.91638,14.22738],[74.91981,14.22749],[74.92321,14.23246],[74.92885,14.2353],[74.92716,14.23683],[74.93039,14.23891],[74.93039,14.24104],[74.93533,14.24312],[74.93584,14.25208],[74.9383,14.25629],[74.93513,14.2584],[74.9342,14.26329],[74.92839,14.2647],[74.92722,14.27657],[74.92387,14.2783],[74.9166,14.27311],[74.91555,14.27616],[74.90999,14.27816],[74.90757,14.28535],[74.90855,14.28709],[74.90692,14.29467],[74.91354,14.29928],[74.9134,14.30395],[74.91792,14.30843],[74.92034,14.31569],[74.92547,14.31953],[74.93028,14.32035],[74.93099,14.31882],[74.93679,14.32234],[74.93921,14.3194],[74.94239,14.31833],[74.94894,14.31947],[74.95178,14.31688],[74.95569,14.31957],[74.95781,14.32337],[74.96163,14.3216],[74.96329,14.31841],[74.96731,14.31716],[74.96814,14.31509],[74.97152,14.31572],[74.97675,14.31968],[74.97322,14.32328],[74.97239,14.32039],[74.96962,14.3257],[74.97294,14.32657],[74.97375,14.33139],[74.97623,14.33156],[74.9741,14.33333],[74.97334,14.33717],[74.97437,14.33751],[74.95909,14.34214],[74.95509,14.34985],[74.95231,14.35166],[74.95028,14.35065],[74.93924,14.35848],[74.94069,14.36765],[74.94594,14.37384],[74.9498,14.37599],[74.95068,14.38226],[74.94823,14.39353],[74.94867,14.39898],[74.94609,14.4018],[74.94076,14.40124],[74.93357,14.40393],[74.91714,14.43149],[74.88077,14.42917],[74.88039,14.43436],[74.87802,14.43548],[74.87457,14.44756],[74.89062,14.46216],[74.8989,14.4641],[74.90877,14.45767],[74.92095,14.45915],[74.91829,14.46644],[74.90301,14.47321],[74.89341,14.47397],[74.88925,14.47932],[74.89084,14.48534],[74.89039,14.49099],[74.89476,14.50108],[74.89463,14.50739],[74.89816,14.50826],[74.90207,14.51517],[74.90092,14.52934],[74.90452,14.53039],[74.9138,14.52881],[74.9268,14.52902],[74.92963,14.52335],[74.93572,14.51869],[74.94175,14.53118],[74.94102,14.53452],[74.94333,14.53266],[74.94863,14.53641],[74.95424,14.5512],[74.9626,14.54946],[74.97007,14.55097],[74.9768,14.54867],[74.97677,14.53313],[74.97968,14.5242],[74.97253,14.52385],[74.97178,14.52076],[74.9731,14.51851],[74.97829,14.51707],[74.97962,14.51385],[74.98222,14.51325],[74.9906,14.5011],[74.9911,14.49339],[74.98449,14.48633],[74.98787,14.481],[74.98738,14.47809],[74.98951,14.47269],[74.99559,14.47779],[75.00548,14.48052],[75.00877,14.48413],[75.00645,14.48745],[75.01857,14.49673],[75.04064,14.50018],[75.0402,14.50653],[75.0418,14.51128],[75.04059,14.5219],[75.03686,14.5294],[75.05235,14.53355],[75.05462,14.53956],[75.0613,14.54358],[75.05474,14.54886],[75.04866,14.54564],[75.04406,14.54603],[75.03967,14.54918],[75.03893,14.55251],[75.03352,14.55876],[75.02428,14.56108],[75.021,14.56947],[75.02086,14.57448],[75.02438,14.57734],[75.02363,14.58058],[75.02666,14.58346],[75.02509,14.59783],[75.02323,14.602],[75.02517,14.60493],[75.02349,14.6066],[75.02552,14.60843],[75.02674,14.6157],[75.0369,14.62965],[75.04018,14.63762],[75.04895,14.64204],[75.05084,14.6495],[75.04502,14.65432],[75.04053,14.66073],[75.03867,14.65862],[75.03523,14.65798],[75.03098,14.66493],[75.03045,14.67234],[75.03596,14.67559],[75.03197,14.69563],[75.03215,14.70792],[75.02468,14.70779],[75.02253,14.71021],[75.01721,14.70991],[75.01513,14.72037],[75.01853,14.72193],[75.01899,14.72372],[75.02212,14.72397],[75.02254,14.72558],[75.02847,14.72578],[75.03038,14.72993],[75.03295,14.72764],[75.03826,14.72788],[75.03781,14.73833],[75.0444,14.7392],[75.04345,14.74283],[75.04714,14.74447],[75.04693,14.7526],[75.04326,14.75577],[75.04021,14.76692],[75.0411,14.77402],[75.05012,14.7735],[75.05052,14.77562],[75.05307,14.77699],[75.05528,14.77584],[75.06294,14.77643],[75.06564,14.7821],[75.06991,14.78297],[75.06675,14.78609],[75.0687,14.78704],[75.06849,14.79842],[75.05581,14.80499],[75.05542,14.81469],[75.06548,14.81044],[75.07487,14.80857],[75.09163,14.81114],[75.09035,14.82021],[75.07383,14.8258],[75.07158,14.8335],[75.06795,14.83708],[75.06784,14.84005],[75.07393,14.85584],[75.07167,14.86778],[75.07439,14.86893],[75.0715,14.8716],[75.07016,14.89008],[75.07141,14.90051],[75.06972,14.90176],[75.06735,14.91868],[75.07777,14.923],[75.08475,14.92145],[75.08225,14.92594],[75.10126,14.92684],[75.10119,14.93162],[75.10292,14.93424],[75.0973,14.94274],[75.09802,14.94717],[75.09447,14.95133],[75.09892,14.95633],[75.08383,14.95643],[75.08134,14.96915],[75.07617,14.97381],[75.06927,15.01517],[75.07714,15.03725],[75.0739,15.04092],[75.07409,15.05241],[75.08204,15.07461],[75.07095,15.07034],[75.05821,15.0723],[75.05528,15.07376],[75.05399,15.08288],[75.04732,15.08174],[75.04375,15.07915],[75.03357,15.07849],[75.03259,15.07457],[75.03045,15.07474],[75.03025,15.07313],[75.02765,15.07382],[75.02595,15.07221],[75.02554,15.07323],[75.02227,15.07025],[75.02009,15.07021],[75.01832,15.07258],[75.01293,15.06828],[75.00916,15.06962],[75.00843,15.07138],[74.99841,15.07007],[74.99403,15.07349],[74.98602,15.07287],[74.98624,15.07121],[74.97931,15.06899],[74.97446,15.07054],[74.96366,15.06938],[74.95761,15.06483],[74.95084,15.06747],[74.94426,15.06417],[74.94062,15.06644],[74.93913,15.05707],[74.94163,15.05615],[74.94056,15.05194],[74.9317,15.05206],[74.92986,15.04934],[74.92807,15.0501],[74.92393,15.04844],[74.92213,15.04514],[74.9187,15.04421],[74.91706,15.03878],[74.9107,15.04114],[74.90814,15.05084],[74.90056,15.04927],[74.89093,15.04476],[74.88795,15.05024],[74.88978,15.05342],[74.88615,15.06341],[74.88719,15.06559],[74.87846,15.07377],[74.88011,15.08475],[74.88383,15.08819],[74.88947,15.08881],[74.89322,15.09357],[74.89198,15.09697],[74.8891,15.0999],[74.88009,15.10006],[74.87414,15.10277],[74.8593,15.10272],[74.8539,15.11107],[74.85125,15.12087],[74.84687,15.12307],[74.8433,15.1219],[74.84075,15.12721],[74.83545,15.13108],[74.83147,15.13183],[74.83119,15.13844],[74.82927,15.13963],[74.83743,15.1439],[74.835,15.15029],[74.83958,15.15253],[74.84191,15.15549],[74.84085,15.15664],[74.84841,15.16291],[74.84864,15.16721],[74.85108,15.17158],[74.86242,15.17812],[74.86274,15.18195],[74.86542,15.18264],[74.86526,15.18697],[74.87338,15.19229],[74.87737,15.19317],[74.87329,15.20475],[74.87533,15.2069],[74.87307,15.21635],[74.87544,15.21681],[74.88732,15.22884],[74.88767,15.23425],[74.91023,15.25103],[74.90822,15.26856],[74.90442,15.28222],[74.89645,15.30167],[74.89356,15.30048],[74.88886,15.30705],[74.88193,15.29876],[74.87368,15.29848],[74.87836,15.31],[74.87748,15.31289],[74.87457,15.31509],[74.8762,15.31665],[74.86071,15.32724],[74.85363,15.34119],[74.84742,15.34049],[74.84736,15.33749],[74.84513,15.33563],[74.83806,15.33647],[74.83584,15.33456],[74.8284,15.34064],[74.82596,15.34457],[74.81914,15.37036],[74.82436,15.37476],[74.8309,15.3728],[74.82096,15.38509],[74.8022,15.37797],[74.79706,15.37714],[74.794,15.37843],[74.78663,15.38474],[74.78238,15.39432],[74.76926,15.40099],[74.76523,15.39961],[74.76558,15.40238],[74.77067,15.40785],[74.76833,15.41123],[74.7689,15.41553],[74.76667,15.41721],[74.75572,15.41132],[74.74136,15.41231],[74.73386,15.40859],[74.72903,15.409],[74.72625,15.41149],[74.71473,15.41096],[74.70653,15.4076],[74.69936,15.41004],[74.68958,15.3979],[74.64932,15.39002],[74.64279,15.38432],[74.6324,15.36696],[74.61392,15.35846],[74.60272,15.36666],[74.59843,15.37188],[74.59726,15.37612],[74.58565,15.38256],[74.5822,15.39023],[74.57623,15.39139],[74.56833,15.40242],[74.55827,15.4065],[74.54469,15.41681],[74.53527,15.41868],[74.51692,15.40232],[74.50278,15.4037],[74.49728,15.40116],[74.49114,15.40078],[74.48261,15.39581],[74.47256,15.39779],[74.47379,15.40246],[74.471,15.40358],[74.4705,15.40941],[74.46454,15.41507],[74.46035,15.41324],[74.45924,15.40598],[74.45646,15.40307],[74.45422,15.40229],[74.45197,15.4061],[74.44585,15.40667],[74.4412,15.40431],[74.4386,15.40505],[74.4372,15.40264],[74.43391,15.4021],[74.43236,15.39871],[74.42637,15.39839],[74.42349,15.42278],[74.42188,15.46359],[74.41955,15.46432],[74.41783,15.46933],[74.41506,15.47022],[74.41327,15.4739],[74.40955,15.47526],[74.40626,15.47332],[74.40439,15.47386],[74.39446,15.48065],[74.38821,15.48136],[74.38672,15.48413],[74.38064,15.48131],[74.37485,15.48075],[74.35968,15.49666],[74.35335,15.50722],[74.34892,15.50949],[74.34248,15.51795],[74.32684,15.517],[74.29282,15.52356]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"551","area_level":"District","area_name":"North Goa","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.68138,15.7296],[73.68116,15.72966],[73.68088,15.72954],[73.68093,15.72935],[73.67847,15.72896],[73.67811,15.72875],[73.67837,15.72802],[73.67834,15.72727],[73.6774,15.7264],[73.67717,15.72651],[73.67695,15.72635],[73.67699,15.72594],[73.67777,15.72576],[73.67929,15.72578],[73.68064,15.72517],[73.68108,15.72464],[73.68098,15.72428],[73.6805,15.72371],[73.68041,15.72312],[73.67936,15.72217],[73.6798,15.72215],[73.68031,15.72193],[73.67993,15.72115],[73.68026,15.72116],[73.68081,15.72184],[73.68279,15.72232],[73.68332,15.72206],[73.68338,15.72116],[73.68317,15.72091],[73.68332,15.7209],[73.68286,15.72076],[73.68303,15.72038],[73.68355,15.7204],[73.68374,15.72063],[73.68436,15.72091],[73.68452,15.72084],[73.68446,15.72047],[73.68475,15.72025],[73.68516,15.72041],[73.68558,15.72085],[73.68621,15.72087],[73.68703,15.72124],[73.68737,15.72279],[73.68786,15.72358],[73.68866,15.72351],[73.68889,15.72268],[73.68952,15.72257],[73.69102,15.72257],[73.69172,15.72177],[73.69283,15.72146],[73.69328,15.72184],[73.69575,15.7217],[73.69602,15.72181],[73.69638,15.72224],[73.69667,15.72279],[73.69667,15.72321],[73.69598,15.7236],[73.6958,15.72414],[73.69521,15.72396],[73.69362,15.72415],[73.6931,15.7264],[73.69296,15.72656],[73.69253,15.72822],[73.69221,15.72815],[73.6908,15.72923],[73.68755,15.72988],[73.68521,15.72981],[73.6815,15.72946],[73.68138,15.7296]]],[[[73.86772,15.78438],[73.86596,15.78556],[73.86481,15.79082],[73.8675,15.79703],[73.85571,15.80102],[73.85277,15.79708],[73.85047,15.78964],[73.84707,15.7858],[73.85267,15.78092],[73.84985,15.77954],[73.84391,15.78113],[73.8408,15.77612],[73.83849,15.76756],[73.82975,15.76433],[73.83083,15.75399],[73.82662,15.74336],[73.81824,15.73947],[73.81258,15.74245],[73.80943,15.74203],[73.80664,15.73768],[73.79723,15.73422],[73.79316,15.73723],[73.78893,15.73484],[73.78754,15.72826],[73.78497,15.72613],[73.77035,15.73031],[73.76517,15.73387],[73.74284,15.73657],[73.73485,15.72952],[73.73185,15.7205],[73.72631,15.71705],[73.72351,15.71727],[73.7246,15.71968],[73.71995,15.72377],[73.7167,15.7244],[73.71047,15.72408],[73.70121,15.72046],[73.69916,15.718],[73.69368,15.71796],[73.69177,15.71998],[73.68948,15.71912],[73.69378,15.70675],[73.6943,15.69952],[73.69775,15.69607],[73.69838,15.69099],[73.70081,15.69045],[73.70264,15.68631],[73.70494,15.67485],[73.71137,15.66316],[73.71511,15.64774],[73.72082,15.635],[73.71985,15.63429],[73.72214,15.63224],[73.72282,15.62675],[73.72394,15.6278],[73.72636,15.62656],[73.7334,15.61395],[73.73602,15.61149],[73.74022,15.61202],[73.74467,15.60569],[73.74124,15.60525],[73.73875,15.60781],[73.73207,15.60695],[73.73415,15.60103],[73.73195,15.59777],[73.73438,15.59252],[73.73222,15.58859],[73.73563,15.5854],[73.7408,15.57061],[73.74185,15.56244],[73.74629,15.55974],[73.7499,15.5626],[73.74923,15.56057],[73.75545,15.54507],[73.76792,15.49914],[73.76732,15.49647],[73.76558,15.49587],[73.76659,15.49281],[73.76861,15.49285],[73.7696,15.48997],[73.77372,15.49044],[73.77569,15.48906],[73.78153,15.47563],[73.78971,15.4638],[73.78781,15.46219],[73.786,15.43727],[73.80956,15.42973],[73.8417,15.4266],[73.86464,15.41673],[73.87506,15.41638],[73.89594,15.40998],[73.90994,15.40983],[73.94811,15.40203],[73.9505,15.39994],[73.95508,15.38868],[73.95755,15.37387],[73.96044,15.36983],[73.96578,15.36739],[73.97778,15.36649],[73.9892,15.3547],[73.99968,15.35114],[74.00575,15.34652],[74.0068,15.34305],[74.00531,15.33468],[74.01296,15.30343],[74.01683,15.3013],[74.02622,15.30079],[74.03937,15.30607],[74.04294,15.29999],[74.04566,15.29822],[74.05449,15.29878],[74.06366,15.29671],[74.07106,15.29141],[74.06953,15.28401],[74.0754,15.2734],[74.08388,15.27653],[74.092,15.26721],[74.10027,15.26829],[74.10659,15.28161],[74.10591,15.28609],[74.09604,15.29464],[74.09342,15.29465],[74.09175,15.29763],[74.08872,15.29869],[74.09129,15.30334],[74.08731,15.30987],[74.08843,15.31603],[74.0854,15.31729],[74.08335,15.32205],[74.08442,15.32647],[74.0915,15.33061],[74.09588,15.33657],[74.09659,15.34387],[74.10572,15.34569],[74.10385,15.34831],[74.09922,15.3501],[74.10076,15.35401],[74.10353,15.35288],[74.10474,15.35386],[74.10163,15.35769],[74.10299,15.36086],[74.10511,15.3617],[74.1051,15.3638],[74.10209,15.36492],[74.10278,15.36807],[74.10131,15.37258],[74.09646,15.37479],[74.09424,15.37299],[74.09542,15.37849],[74.09772,15.37652],[74.0993,15.37746],[74.09487,15.38225],[74.09239,15.38251],[74.09128,15.38069],[74.08864,15.39033],[74.08481,15.38871],[74.08096,15.39444],[74.07908,15.39102],[74.07689,15.39044],[74.07578,15.39503],[74.07786,15.39837],[74.07242,15.40352],[74.07515,15.40833],[74.07206,15.41147],[74.08329,15.41661],[74.08523,15.41914],[74.10427,15.42621],[74.11059,15.41787],[74.11146,15.42677],[74.11905,15.43052],[74.12488,15.43674],[74.13379,15.43358],[74.13768,15.43529],[74.13898,15.43781],[74.14875,15.43742],[74.15175,15.4385],[74.15231,15.44073],[74.15623,15.43862],[74.16101,15.44103],[74.16395,15.44018],[74.1692,15.44213],[74.17113,15.43847],[74.17945,15.43614],[74.18312,15.441],[74.18806,15.44332],[74.18969,15.44593],[74.19019,15.4544],[74.20021,15.46544],[74.22239,15.47425],[74.22815,15.4802],[74.22981,15.48106],[74.23101,15.47976],[74.232,15.48291],[74.24621,15.48734],[74.24804,15.49016],[74.25147,15.49037],[74.25229,15.49934],[74.25382,15.50172],[74.2603,15.50646],[74.27387,15.51225],[74.27847,15.51748],[74.27815,15.52285],[74.2817,15.52613],[74.28265,15.53142],[74.27792,15.54611],[74.2653,15.55837],[74.26174,15.56488],[74.25833,15.56169],[74.24967,15.56765],[74.24519,15.5666],[74.25053,15.57737],[74.24874,15.58038],[74.26025,15.59263],[74.25999,15.60672],[74.2643,15.61551],[74.25859,15.62078],[74.25848,15.6234],[74.25372,15.62674],[74.24826,15.6229],[74.24416,15.62611],[74.25198,15.65431],[74.25044,15.65726],[74.24485,15.6582],[74.24299,15.66244],[74.23817,15.66362],[74.2394,15.66461],[74.23636,15.66858],[74.22979,15.66638],[74.22841,15.66444],[74.2246,15.66626],[74.22378,15.66898],[74.21802,15.66435],[74.21765,15.6623],[74.21515,15.66287],[74.21772,15.65836],[74.22222,15.65685],[74.22216,15.65564],[74.21745,15.65274],[74.20513,15.65103],[74.20175,15.65634],[74.20406,15.66368],[74.18684,15.66745],[74.1861,15.6745],[74.19039,15.67632],[74.18989,15.67911],[74.1891,15.68059],[74.18155,15.68215],[74.17668,15.67987],[74.17208,15.674],[74.16737,15.67201],[74.16558,15.65438],[74.16442,15.6535],[74.15747,15.65468],[74.15435,15.6499],[74.14909,15.65197],[74.14112,15.6511],[74.13554,15.64837],[74.11758,15.65215],[74.11613,15.64918],[74.11411,15.64879],[74.11389,15.64613],[74.10706,15.64645],[74.09753,15.64102],[74.09429,15.64237],[74.07849,15.63176],[74.07011,15.62916],[74.06577,15.62968],[74.06342,15.62645],[74.06182,15.6266],[74.06161,15.62853],[74.0506,15.62487],[74.03116,15.62261],[74.0254,15.60944],[74.0208,15.60609],[74.00884,15.61016],[73.99336,15.61064],[73.99052,15.61223],[73.97905,15.62713],[73.97078,15.62741],[73.96786,15.63058],[73.96739,15.63531],[73.96177,15.64168],[73.9614,15.64934],[73.96782,15.66025],[73.96571,15.66943],[73.96269,15.67326],[73.96376,15.69232],[73.95909,15.69809],[73.95923,15.70006],[73.95294,15.69953],[73.95152,15.69645],[73.94651,15.69781],[73.9437,15.69694],[73.94856,15.70354],[73.94928,15.70865],[73.94717,15.70983],[73.9498,15.7107],[73.94918,15.71156],[73.95233,15.7144],[73.94595,15.7212],[73.94174,15.72919],[73.94087,15.73811],[73.93873,15.74333],[73.9148,15.74544],[73.90698,15.74997],[73.90699,15.74797],[73.89918,15.746],[73.89288,15.74939],[73.8757,15.75128],[73.87288,15.75468],[73.87306,15.76088],[73.87701,15.76442],[73.87506,15.76716],[73.87735,15.76808],[73.88009,15.77432],[73.87787,15.77563],[73.87716,15.77437],[73.87351,15.77709],[73.86985,15.78354],[73.86772,15.78438]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"552","area_level":"District","area_name":"South Goa","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.0863,14.8995],[74.08654,14.89961],[74.0865,14.89965],[74.08608,14.89983],[74.08566,14.89987],[74.08536,14.89984],[74.08511,14.89956],[74.08506,14.89914],[74.08519,14.89878],[74.08528,14.89863],[74.08555,14.89844],[74.0863,14.8995]]],[[[74.25154,15.49077],[74.24804,15.49016],[74.24621,15.48734],[74.232,15.48291],[74.23101,15.47976],[74.22981,15.48106],[74.22815,15.4802],[74.22239,15.47425],[74.20021,15.46544],[74.19019,15.4544],[74.18969,15.44593],[74.18806,15.44332],[74.18312,15.441],[74.17945,15.43614],[74.17113,15.43847],[74.1692,15.44213],[74.16395,15.44018],[74.16101,15.44103],[74.15623,15.43862],[74.15231,15.44073],[74.15175,15.4385],[74.14875,15.43742],[74.13898,15.43781],[74.13768,15.43529],[74.13379,15.43358],[74.12488,15.43674],[74.11905,15.43052],[74.11146,15.42677],[74.11059,15.41787],[74.10427,15.42621],[74.08523,15.41914],[74.08329,15.41661],[74.07206,15.41147],[74.07515,15.40833],[74.07242,15.40352],[74.07786,15.39837],[74.07578,15.39503],[74.07689,15.39044],[74.07908,15.39102],[74.08096,15.39444],[74.08481,15.38871],[74.08864,15.39033],[74.09128,15.38069],[74.09239,15.38251],[74.09487,15.38225],[74.0993,15.37746],[74.09772,15.37652],[74.09542,15.37849],[74.09424,15.37299],[74.09646,15.37479],[74.10131,15.37258],[74.10278,15.36807],[74.10209,15.36492],[74.1051,15.3638],[74.10511,15.3617],[74.10299,15.36086],[74.10163,15.35769],[74.10474,15.35386],[74.10353,15.35288],[74.10076,15.35401],[74.09922,15.3501],[74.10385,15.34831],[74.10572,15.34569],[74.09659,15.34387],[74.09595,15.33675],[74.09359,15.33284],[74.08453,15.32658],[74.08345,15.32326],[74.0854,15.31729],[74.08843,15.31603],[74.08731,15.30987],[74.09129,15.30334],[74.08872,15.29869],[74.09175,15.29763],[74.09342,15.29465],[74.09604,15.29464],[74.10591,15.28609],[74.10659,15.28161],[74.10027,15.26829],[74.09278,15.26717],[74.08388,15.27653],[74.07512,15.27367],[74.06953,15.28401],[74.07106,15.29141],[74.06366,15.29671],[74.05449,15.29878],[74.04566,15.29822],[74.04294,15.29999],[74.03937,15.30607],[74.02622,15.30079],[74.01683,15.3013],[74.01296,15.30343],[74.00531,15.33468],[74.0068,15.34305],[74.00575,15.34652],[73.99968,15.35114],[73.9892,15.3547],[73.97778,15.36649],[73.96578,15.36739],[73.96044,15.36983],[73.95755,15.37387],[73.95508,15.38868],[73.9505,15.39994],[73.94811,15.40203],[73.90994,15.40983],[73.89594,15.40998],[73.87506,15.41638],[73.86464,15.41673],[73.8417,15.4266],[73.80956,15.42973],[73.786,15.43727],[73.79177,15.41747],[73.78969,15.41211],[73.78444,15.41276],[73.78318,15.40953],[73.78946,15.39915],[73.79198,15.39893],[73.79004,15.39675],[73.79059,15.39386],[73.79504,15.39241],[73.80397,15.39373],[73.80716,15.38865],[73.80793,15.3791],[73.81057,15.38176],[73.80782,15.37743],[73.80888,15.37561],[73.81181,15.37582],[73.81653,15.37209],[73.82166,15.37185],[73.82295,15.36966],[73.82857,15.36798],[73.83182,15.36951],[73.83585,15.36599],[73.83755,15.36124],[73.84243,15.35841],[73.85133,15.35899],[73.85379,15.36391],[73.86328,15.36486],[73.86385,15.36803],[73.87017,15.36938],[73.87369,15.36789],[73.88427,15.35305],[73.89449,15.33084],[73.90213,15.30963],[73.92833,15.22856],[73.94918,15.14477],[73.9565,15.1355],[73.95027,15.14028],[73.94649,15.1408],[73.9427,15.13401],[73.93679,15.13216],[73.93636,15.13102],[73.94045,15.12806],[73.94142,15.12554],[73.94132,15.11659],[73.93791,15.11692],[73.93609,15.11028],[73.93381,15.11205],[73.92659,15.10813],[73.91848,15.10621],[73.92282,15.10633],[73.92281,15.10427],[73.92571,15.10387],[73.92767,15.09532],[73.92231,15.08853],[73.9173,15.0875],[73.91629,15.08464],[73.91288,15.08357],[73.91645,15.08415],[73.91788,15.08201],[73.92309,15.08547],[73.92633,15.08477],[73.93167,15.08241],[73.93274,15.07719],[73.93672,15.07698],[73.9422,15.07312],[73.95499,15.07193],[73.95462,15.06919],[73.95745,15.06912],[73.96347,15.06465],[73.96746,15.06462],[73.96726,15.06142],[73.97035,15.05884],[73.97213,15.05108],[73.97505,15.04894],[73.98012,15.0518],[73.98029,15.05468],[73.98328,15.0529],[73.98836,15.05514],[73.98397,15.05291],[73.98074,15.05403],[73.99112,15.03164],[73.99043,15.02877],[73.98627,15.02751],[73.98814,15.02566],[73.98612,15.02442],[73.98842,15.02446],[73.98965,15.02248],[73.98948,15.01892],[73.99386,15.01654],[73.99785,15.0199],[73.99962,15.0174],[74.00185,15.01812],[74.00336,15.01504],[74.00713,15.016],[74.01369,15.009],[74.01755,15.01605],[74.02104,15.01717],[74.02092,15.01419],[74.01863,15.01519],[74.01696,15.01117],[74.02194,15.00992],[74.02648,15.00642],[74.02749,15.00248],[74.02447,15.00141],[74.02957,15.00084],[74.02793,14.99679],[74.03277,14.99831],[74.03545,14.99226],[74.03964,14.99271],[74.04107,14.99538],[74.04002,14.99245],[74.03613,14.99184],[74.0392,14.98395],[74.03536,14.98201],[74.04063,14.9809],[74.05006,14.95726],[74.04774,14.95259],[74.04839,14.9491],[74.04499,14.94857],[74.04566,14.9473],[74.04353,14.94643],[74.04541,14.94455],[74.04435,14.94199],[74.04786,14.93334],[74.04636,14.93196],[74.04718,14.92902],[74.0447,14.92859],[74.04606,14.92349],[74.04279,14.92209],[74.0442,14.9166],[74.04798,14.9141],[74.05709,14.91345],[74.06087,14.90914],[74.0649,14.90826],[74.06709,14.90583],[74.06839,14.90833],[74.07133,14.90611],[74.07538,14.90854],[74.08111,14.90908],[74.08402,14.90506],[74.0841,14.90053],[74.09028,14.90341],[74.09453,14.91099],[74.10163,14.91579],[74.1048,14.9129],[74.10851,14.91394],[74.10962,14.91697],[74.11462,14.91836],[74.11998,14.9169],[74.12423,14.92532],[74.12983,14.92547],[74.13504,14.92209],[74.14015,14.92323],[74.14572,14.91895],[74.15342,14.91714],[74.16212,14.91214],[74.16619,14.91655],[74.16591,14.91859],[74.16258,14.92689],[74.15855,14.93023],[74.15624,14.93887],[74.15426,14.93984],[74.15547,14.9422],[74.15416,14.94343],[74.15833,14.94931],[74.15915,14.95585],[74.16077,14.95555],[74.16361,14.95848],[74.17138,14.95719],[74.17476,14.95853],[74.17946,14.95705],[74.17836,14.95367],[74.17972,14.9508],[74.19126,14.94501],[74.19476,14.93994],[74.19466,14.93709],[74.19166,14.93304],[74.20154,14.92572],[74.20913,14.93806],[74.21263,14.94027],[74.21164,14.94354],[74.21366,14.94769],[74.21755,14.94595],[74.22596,14.95046],[74.2298,14.9505],[74.23175,14.95337],[74.23286,14.96412],[74.2367,14.96685],[74.24755,14.96192],[74.24923,14.95904],[74.2526,14.95909],[74.25527,14.97042],[74.2591,14.97006],[74.26099,14.97647],[74.26432,14.97852],[74.2577,14.98823],[74.25212,14.99268],[74.25361,14.99815],[74.26807,15.00201],[74.26647,15.00689],[74.27245,15.01425],[74.28341,15.02353],[74.28326,15.03157],[74.28824,15.03674],[74.29649,15.04121],[74.29461,15.04917],[74.29025,15.05361],[74.28951,15.06482],[74.28373,15.06613],[74.28073,15.06882],[74.27969,15.08808],[74.27524,15.09595],[74.27265,15.0975],[74.27655,15.10538],[74.28266,15.10674],[74.28288,15.11303],[74.28488,15.11391],[74.28519,15.13672],[74.28358,15.14287],[74.28513,15.14903],[74.29135,15.14891],[74.29567,15.15124],[74.31425,15.17752],[74.31417,15.18054],[74.31738,15.18375],[74.31696,15.18626],[74.31039,15.19468],[74.30862,15.20179],[74.31005,15.20629],[74.30575,15.2094],[74.30452,15.21672],[74.30221,15.21801],[74.30144,15.21705],[74.29986,15.21993],[74.30161,15.22434],[74.2915,15.23382],[74.2867,15.23281],[74.28114,15.23626],[74.25955,15.24102],[74.2522,15.25103],[74.25469,15.25407],[74.25111,15.25885],[74.26103,15.26019],[74.27149,15.28113],[74.27633,15.28353],[74.28179,15.28042],[74.28765,15.28389],[74.29335,15.28451],[74.29433,15.28919],[74.30796,15.28333],[74.31963,15.28344],[74.32057,15.2847],[74.32637,15.28374],[74.33644,15.29494],[74.32443,15.30991],[74.31702,15.32912],[74.31722,15.33517],[74.32184,15.3436],[74.31604,15.35997],[74.31626,15.363],[74.3232,15.36768],[74.3086,15.37445],[74.29871,15.38194],[74.28299,15.38294],[74.27587,15.39159],[74.2783,15.40569],[74.27432,15.41358],[74.27041,15.41596],[74.26878,15.4191],[74.26992,15.42604],[74.27689,15.43521],[74.27506,15.43646],[74.27737,15.44049],[74.27545,15.44919],[74.26398,15.47236],[74.25154,15.49077]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"553","area_level":"District","area_name":"Lakshadweep District","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.0132,8.30322],[73.01323,8.3033],[73.01323,8.30338],[73.01325,8.30351],[73.01316,8.3036],[73.01308,8.30362],[73.01294,8.30358],[73.01285,8.30348],[73.01286,8.30334],[73.01301,8.30322],[73.01304,8.30319],[73.01312,8.30319],[73.0132,8.30322]]],[[[73.05338,8.27454],[73.06521,8.28616],[73.06566,8.28773],[73.06479,8.29251],[73.06484,8.29496],[73.06539,8.30114],[73.06614,8.30399],[73.06925,8.31146],[73.07481,8.32177],[73.07764,8.3255],[73.07416,8.32185],[73.06788,8.31033],[73.06507,8.30319],[73.06414,8.29757],[73.06286,8.29508],[73.05936,8.29078],[73.05502,8.28323],[73.04699,8.27667],[73.04384,8.27474],[73.03953,8.27338],[73.03356,8.2734],[73.02746,8.27203],[73.02093,8.27261],[73.01933,8.27367],[73.01806,8.27557],[73.01853,8.276],[73.02125,8.27329],[73.02151,8.27359],[73.02065,8.27536],[73.01782,8.27723],[73.017,8.27686],[73.01822,8.27141],[73.02006,8.27002],[73.02385,8.26839],[73.03102,8.26627],[73.03525,8.26563],[73.04199,8.2652],[73.04562,8.26586],[73.04785,8.26744],[73.05338,8.27454]]],[[[73.63003,10.06934],[73.63049,10.0694],[73.63085,10.06963],[73.63093,10.06978],[73.63071,10.06999],[73.63031,10.06997],[73.63006,10.06994],[73.62986,10.06988],[73.62959,10.06972],[73.62958,10.0695],[73.62972,10.06931],[73.63003,10.06934]]],[[[73.63242,10.07037],[73.63238,10.07072],[73.63233,10.07099],[73.6322,10.07109],[73.63196,10.07094],[73.6316,10.07053],[73.63154,10.07012],[73.63167,10.06991],[73.63211,10.06991],[73.63242,10.07037]]],[[[73.63367,10.07264],[73.63398,10.07294],[73.63395,10.07332],[73.63386,10.07342],[73.6336,10.07347],[73.63306,10.07345],[73.6328,10.07328],[73.63285,10.07282],[73.63307,10.07251],[73.63367,10.07264]]],[[[73.63016,10.07428],[73.63032,10.07445],[73.63041,10.07462],[73.63046,10.07483],[73.63042,10.07495],[73.63032,10.07497],[73.6302,10.07492],[73.63003,10.07483],[73.62982,10.07463],[73.62975,10.07446],[73.62973,10.07429],[73.62979,10.07417],[73.62986,10.07414],[73.62997,10.07413],[73.63016,10.07428]]],[[[73.62723,10.07484],[73.62726,10.07496],[73.62763,10.07511],[73.62773,10.07527],[73.62751,10.07539],[73.62726,10.07546],[73.62688,10.07536],[73.62651,10.07505],[73.6262,10.07474],[73.62563,10.07425],[73.62535,10.07394],[73.62544,10.07359],[73.62582,10.07322],[73.62635,10.07329],[73.6271,10.07363],[73.62735,10.07403],[73.62763,10.07428],[73.62797,10.07474],[73.62776,10.07493],[73.62735,10.07474],[73.62723,10.07484]]],[[[73.64693,10.07354],[73.64653,10.07763],[73.647,10.08242],[73.64809,10.08611],[73.64942,10.09484],[73.65073,10.09944],[73.65089,10.10155],[73.65061,10.10297],[73.65039,10.10307],[73.65008,10.09984],[73.64936,10.09658],[73.64792,10.09323],[73.64736,10.08954],[73.64505,10.08373],[73.6433,10.0774],[73.64196,10.07498],[73.63966,10.07225],[73.63804,10.07163],[73.63713,10.07166],[73.63482,10.07268],[73.63438,10.07268],[73.6342,10.07237],[73.63663,10.06854],[73.63894,10.06295],[73.63922,10.06172],[73.63872,10.06097],[73.63887,10.05964],[73.64038,10.05833],[73.64128,10.05812],[73.64384,10.05812],[73.64475,10.05824],[73.64534,10.05861],[73.64603,10.05923],[73.64668,10.06045],[73.64715,10.06667],[73.64693,10.07354]]],[[[73.65171,10.10972],[73.65183,10.11001],[73.6518,10.11031],[73.65169,10.11046],[73.65154,10.11062],[73.65131,10.11063],[73.65116,10.11045],[73.65113,10.11017],[73.65126,10.10984],[73.65149,10.10967],[73.65171,10.10972]]],[[[72.28323,10.04221],[72.28361,10.04236],[72.28421,10.04244],[72.28512,10.04321],[72.28565,10.04357],[72.28629,10.04418],[72.28673,10.04509],[72.2872,10.0458],[72.28796,10.0467],[72.28838,10.04787],[72.28856,10.04882],[72.28868,10.04905],[72.2886,10.05083],[72.28897,10.05207],[72.28974,10.05371],[72.28981,10.05428],[72.28951,10.0542],[72.28912,10.05397],[72.28804,10.05094],[72.28705,10.05008],[72.28668,10.04945],[72.28624,10.04899],[72.28552,10.04843],[72.28479,10.04744],[72.28396,10.04589],[72.2834,10.04399],[72.2826,10.04265],[72.28259,10.04246],[72.28269,10.04227],[72.28294,10.04215],[72.28323,10.04221]]],[[[73.65954,10.15531],[73.65932,10.15643],[73.65882,10.15661],[73.65826,10.15652],[73.6575,10.15615],[73.65713,10.15581],[73.65691,10.15497],[73.65707,10.15378],[73.65732,10.15359],[73.6576,10.15378],[73.6575,10.15458],[73.65757,10.15499],[73.6577,10.15499],[73.65854,10.15294],[73.65851,10.15192],[73.65869,10.15098],[73.65913,10.14965],[73.66079,10.14577],[73.66119,10.14443],[73.66157,10.14177],[73.6611,10.13708],[73.66016,10.13376],[73.66001,10.13165],[73.65966,10.13103],[73.65913,10.13063],[73.65919,10.13035],[73.65966,10.13038],[73.66057,10.131],[73.66119,10.13332],[73.66204,10.13553],[73.66263,10.13758],[73.66335,10.14084],[73.66338,10.14226],[73.66217,10.14617],[73.66113,10.14803],[73.66076,10.14909],[73.66038,10.15051],[73.65954,10.15531]]],[[[72.33731,10.10531],[72.33756,10.10603],[72.33756,10.10644],[72.33638,10.1076],[72.33593,10.10751],[72.33597,10.10715],[72.33648,10.10601],[72.33611,10.10476],[72.33524,10.10258],[72.33436,10.10149],[72.33418,10.10094],[72.33444,10.10087],[72.33485,10.10128],[72.33558,10.10217],[72.33627,10.10351],[72.33662,10.10435],[72.33664,10.10433],[72.33731,10.10531]]],[[[72.33159,10.13125],[72.33134,10.132],[72.33111,10.13379],[72.33102,10.13409],[72.33084,10.1343],[72.33042,10.1346],[72.32998,10.13508],[72.32957,10.1359],[72.32928,10.13693],[72.32896,10.13766],[72.3287,10.13813],[72.32817,10.1386],[72.32784,10.13913],[72.32783,10.13983],[72.32768,10.13991],[72.32736,10.13982],[72.32715,10.13965],[72.32688,10.13903],[72.32691,10.13832],[72.3275,10.13594],[72.32761,10.13384],[72.32753,10.13341],[72.32729,10.13281],[72.32712,10.13252],[72.32653,10.13192],[72.32653,10.13118],[72.32662,10.13095],[72.32679,10.13078],[72.3271,10.13061],[72.32773,10.13053],[72.32821,10.13057],[72.32925,10.13089],[72.32964,10.13095],[72.33032,10.13082],[72.33137,10.13],[72.33184,10.1291],[72.33209,10.12903],[72.33247,10.12914],[72.33258,10.12927],[72.3326,10.12944],[72.33246,10.12972],[72.33215,10.12999],[72.33201,10.13035],[72.33194,10.13076],[72.33159,10.13125]]],[[[72.64338,10.57943],[72.64056,10.58046],[72.63986,10.58035],[72.63984,10.57882],[72.63858,10.57472],[72.63761,10.57321],[72.63653,10.57065],[72.63115,10.56184],[72.62595,10.55435],[72.6244,10.55137],[72.62295,10.54956],[72.62251,10.54912],[72.62142,10.5492],[72.61767,10.54761],[72.61581,10.54538],[72.61577,10.54409],[72.61644,10.54328],[72.6176,10.54328],[72.61933,10.5444],[72.62274,10.54805],[72.62354,10.54941],[72.63549,10.55854],[72.63701,10.55934],[72.63933,10.56003],[72.64163,10.5613],[72.64408,10.56175],[72.64589,10.56243],[72.64893,10.56465],[72.64938,10.56555],[72.65063,10.57037],[72.65009,10.57322],[72.64904,10.57564],[72.64632,10.57917],[72.6456,10.57952],[72.64338,10.57943]]],[[[73.66725,10.81865],[73.66211,10.81835],[73.66058,10.81801],[73.65986,10.81747],[73.65881,10.81557],[73.65875,10.81322],[73.65898,10.81208],[73.66043,10.80874],[73.66289,10.80676],[73.66654,10.80574],[73.67092,10.80508],[73.67389,10.80499],[73.67651,10.80529],[73.68341,10.80729],[73.68946,10.81009],[73.69211,10.81103],[73.69902,10.81281],[73.70044,10.814],[73.70092,10.8154],[73.70066,10.81659],[73.69947,10.81738],[73.69861,10.81747],[73.6898,10.81805],[73.68832,10.81798],[73.6859,10.81745],[73.68091,10.81762],[73.67783,10.81822],[73.67707,10.8182],[73.67571,10.81739],[73.67321,10.81799],[73.67046,10.81809],[73.66975,10.81788],[73.66725,10.81865]]],[[[72.168,10.81605],[72.16807,10.81623],[72.16807,10.8163],[72.16799,10.81636],[72.16783,10.81632],[72.16744,10.81607],[72.16721,10.81597],[72.16669,10.81596],[72.16592,10.8158],[72.16512,10.81534],[72.16414,10.81452],[72.16403,10.81423],[72.16411,10.81404],[72.16422,10.81393],[72.1644,10.81383],[72.16465,10.81381],[72.16532,10.81388],[72.16628,10.81387],[72.16664,10.81382],[72.1675,10.81383],[72.16794,10.81388],[72.16814,10.81393],[72.16824,10.81402],[72.16832,10.81413],[72.16826,10.81429],[72.16782,10.81471],[72.16774,10.81483],[72.16766,10.81509],[72.16774,10.8155],[72.168,10.81605]]],[[[72.20355,10.87961],[72.20033,10.87993],[72.19392,10.87242],[72.19247,10.86868],[72.18741,10.85038],[72.18294,10.84202],[72.17834,10.83194],[72.17072,10.82176],[72.16937,10.81928],[72.17031,10.81954],[72.17211,10.82117],[72.17898,10.82992],[72.18255,10.83841],[72.18847,10.84914],[72.19853,10.86439],[72.20209,10.87045],[72.20522,10.87679],[72.20577,10.87866],[72.2054,10.8796],[72.20355,10.87961]]],[[[72.28812,10.94762],[72.28718,10.94825],[72.28694,10.94825],[72.28667,10.948],[72.28639,10.94743],[72.28585,10.94563],[72.2856,10.94376],[72.28515,10.94222],[72.28483,10.9415],[72.28443,10.93982],[72.28413,10.93921],[72.28396,10.93864],[72.28424,10.93775],[72.28494,10.93733],[72.28611,10.93718],[72.28763,10.9368],[72.2888,10.93678],[72.28936,10.93689],[72.29066,10.93736],[72.29138,10.9378],[72.29179,10.93784],[72.292,10.93805],[72.29198,10.93841],[72.29173,10.93889],[72.29136,10.93932],[72.29011,10.94048],[72.2898,10.94115],[72.28914,10.94368],[72.2888,10.94467],[72.28882,10.94535],[72.28908,10.946],[72.28955,10.94664],[72.29012,10.94718],[72.29104,10.94722],[72.29255,10.94707],[72.29275,10.94717],[72.29271,10.94732],[72.29251,10.94745],[72.28989,10.94753],[72.28846,10.94745],[72.28812,10.94762]]],[[[72.32478,10.95141],[72.3261,10.95221],[72.32636,10.95245],[72.32627,10.95262],[72.32604,10.95262],[72.32427,10.9517],[72.32282,10.9514],[72.32045,10.95108],[72.31805,10.95098],[72.31657,10.95085],[72.31631,10.95074],[72.31573,10.95032],[72.31532,10.9499],[72.31493,10.94928],[72.31468,10.94854],[72.31464,10.94719],[72.31451,10.94615],[72.31466,10.94469],[72.31496,10.94463],[72.31553,10.94465],[72.31695,10.94554],[72.31806,10.94609],[72.3198,10.94711],[72.3227,10.94955],[72.32414,10.95095],[72.32478,10.95141]]],[[[72.33244,10.95302],[72.33257,10.9531],[72.33285,10.95364],[72.33284,10.95378],[72.33273,10.95389],[72.33236,10.95394],[72.33207,10.95383],[72.33155,10.95349],[72.3311,10.95315],[72.33088,10.95296],[72.33043,10.95283],[72.32975,10.95279],[72.3296,10.95274],[72.32959,10.95258],[72.32998,10.95194],[72.33002,10.95193],[72.3302,10.95178],[72.33048,10.95168],[72.33071,10.95166],[72.33095,10.95173],[72.33112,10.95195],[72.33134,10.9523],[72.33203,10.95287],[72.33244,10.95302]]],[[[72.33411,10.95625],[72.33403,10.95637],[72.33386,10.95636],[72.33379,10.95626],[72.33354,10.95603],[72.33338,10.95603],[72.33309,10.95606],[72.33279,10.95612],[72.33255,10.95619],[72.33238,10.95612],[72.33225,10.95603],[72.33217,10.95584],[72.33211,10.95558],[72.33225,10.95546],[72.33249,10.95533],[72.33279,10.95528],[72.3329,10.95523],[72.33304,10.95515],[72.33316,10.95497],[72.33318,10.95475],[72.33306,10.95448],[72.33304,10.95428],[72.33313,10.95415],[72.33329,10.95415],[72.33347,10.95429],[72.33368,10.95452],[72.33383,10.95485],[72.3339,10.9552],[72.33395,10.95558],[72.33406,10.95593],[72.33411,10.95625]]],[[[72.33454,10.95747],[72.33472,10.9577],[72.33476,10.95811],[72.33478,10.95859],[72.33466,10.95892],[72.33444,10.95944],[72.33412,10.95972],[72.3337,10.96031],[72.33355,10.96038],[72.3334,10.96035],[72.33329,10.96016],[72.33331,10.95989],[72.33351,10.95948],[72.33359,10.95917],[72.33361,10.95875],[72.33354,10.95785],[72.33361,10.95749],[72.33384,10.9573],[72.33423,10.95731],[72.33454,10.95747]]],[[[72.71951,11.11504],[72.7197,11.11562],[72.72019,11.11614],[72.72394,11.11914],[72.7266,11.1215],[72.72831,11.12355],[72.73047,11.12676],[72.73157,11.12905],[72.73294,11.13272],[72.73374,11.13545],[72.73381,11.13598],[72.73363,11.13654],[72.73328,11.1372],[72.73292,11.13746],[72.73114,11.13785],[72.73031,11.13788],[72.72929,11.13776],[72.72849,11.13739],[72.72593,11.13527],[72.72244,11.13317],[72.72024,11.13151],[72.71865,11.12972],[72.7178,11.12837],[72.71619,11.12488],[72.71583,11.12274],[72.71585,11.12059],[72.71679,11.11754],[72.71796,11.11638],[72.71872,11.11525],[72.71934,11.11489],[72.71951,11.11504]]],[[[72.76133,11.18393],[72.76233,11.18526],[72.76388,11.19228],[72.76887,11.20677],[72.77491,11.21551],[72.77633,11.21849],[72.77975,11.2323],[72.78187,11.23875],[72.78373,11.24415],[72.78926,11.25658],[72.78984,11.26092],[72.78946,11.26149],[72.78667,11.26009],[72.78513,11.25803],[72.77871,11.24369],[72.77296,11.22335],[72.77168,11.22016],[72.77137,11.21797],[72.76678,11.20479],[72.7639,11.19816],[72.76263,11.19317],[72.76254,11.18875],[72.76193,11.1855],[72.76098,11.18397],[72.76133,11.18393]]],[[[73.00764,11.47085],[73.01011,11.47272],[73.01085,11.47357],[73.01108,11.47429],[73.00975,11.47853],[73.00925,11.48181],[73.00918,11.48868],[73.00625,11.49462],[73.00518,11.49627],[73.00403,11.49759],[73.00263,11.49876],[73.00135,11.4994],[72.99994,11.49965],[72.99878,11.49952],[72.99745,11.49873],[72.99741,11.4983],[72.9984,11.4969],[72.99924,11.4953],[72.99993,11.49492],[73.00125,11.49468],[73.00183,11.49405],[73.00298,11.4899],[73.0038,11.485],[73.00458,11.48235],[73.00516,11.47908],[73.00741,11.47383],[73.00745,11.47337],[73.00644,11.47225],[73.0063,11.47132],[73.00677,11.47089],[73.00764,11.47085]]],[[[72.18965,11.60013],[72.18928,11.60072],[72.18847,11.60172],[72.18813,11.60196],[72.1876,11.60227],[72.18583,11.60306],[72.18555,11.60312],[72.18482,11.60302],[72.18457,11.60284],[72.1845,11.60271],[72.18457,11.60255],[72.18522,11.60179],[72.18551,11.60133],[72.18565,11.60068],[72.18573,11.5999],[72.18596,11.59976],[72.18638,11.59972],[72.18811,11.59986],[72.18904,11.59978],[72.18952,11.59981],[72.18968,11.5999],[72.18965,11.60013]]],[[[72.71147,11.68757],[72.71221,11.68865],[72.71215,11.68873],[72.71529,11.6928],[72.71663,11.69578],[72.71663,11.69873],[72.71637,11.7022],[72.71575,11.70498],[72.71328,11.70185],[72.71293,11.70081],[72.71284,11.69968],[72.70967,11.69361],[72.70853,11.68858],[72.708,11.6871],[72.70737,11.68649],[72.7064,11.68586],[72.70552,11.68587],[72.70502,11.68519],[72.70476,11.68423],[72.70497,11.68355],[72.70545,11.68339],[72.708,11.68344],[72.70874,11.68391],[72.70894,11.6842],[72.70911,11.68407],[72.70948,11.68442],[72.7098,11.68522],[72.70993,11.68524],[72.70994,11.68544],[72.71147,11.68757]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"554","area_level":"District","area_name":"Alappuzha","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.3338,9.87681],[76.3106,9.88371],[76.30303,9.89017],[76.29267,9.89058],[76.2952,9.86056],[76.29748,9.85272],[76.29568,9.85106],[76.28568,9.84921],[76.28419,9.8371],[76.27964,9.83114],[76.27946,9.82761],[76.28364,9.81722],[76.28691,9.8187],[76.29092,9.80666],[76.28214,9.80466],[76.2817,9.80078],[76.2841,9.79148],[76.27719,9.78876],[76.28298,9.75403],[76.29166,9.66498],[76.29327,9.66307],[76.29196,9.66254],[76.2931,9.65224],[76.29453,9.6523],[76.29317,9.65128],[76.29454,9.6373],[76.29615,9.62365],[76.29736,9.62285],[76.30119,9.57988],[76.30462,9.55714],[76.30589,9.55729],[76.30474,9.55613],[76.30548,9.5515],[76.31908,9.48523],[76.34158,9.40337],[76.38083,9.31299],[76.38191,9.31395],[76.38373,9.31131],[76.38229,9.31048],[76.38531,9.30295],[76.46635,9.13047],[76.47032,9.13147],[76.47323,9.12996],[76.47328,9.12727],[76.47888,9.1281],[76.48561,9.12609],[76.50649,9.12561],[76.50307,9.13497],[76.50857,9.1367],[76.51606,9.13755],[76.52858,9.13488],[76.54161,9.13508],[76.54118,9.12873],[76.54285,9.12836],[76.54356,9.12567],[76.54642,9.126],[76.55123,9.11072],[76.55788,9.1098],[76.56856,9.1118],[76.57249,9.11644],[76.57629,9.11751],[76.57952,9.1152],[76.5808,9.11694],[76.58479,9.11668],[76.58349,9.11978],[76.58825,9.12277],[76.58879,9.12789],[76.58744,9.12896],[76.59032,9.13121],[76.59873,9.13267],[76.60335,9.13024],[76.61458,9.13101],[76.62375,9.13882],[76.62639,9.13721],[76.63307,9.13828],[76.6367,9.14254],[76.6381,9.14826],[76.64534,9.14653],[76.6488,9.14963],[76.66095,9.14947],[76.67078,9.15256],[76.67424,9.15444],[76.67148,9.16328],[76.67478,9.17004],[76.67766,9.17061],[76.67867,9.1725],[76.68784,9.16903],[76.69069,9.17696],[76.6823,9.18176],[76.67671,9.18286],[76.67555,9.18924],[76.67705,9.19392],[76.67132,9.19533],[76.66821,9.20011],[76.66079,9.20131],[76.65711,9.20482],[76.65175,9.20412],[76.64741,9.20742],[76.64505,9.22383],[76.63927,9.23376],[76.64699,9.23768],[76.64938,9.23614],[76.65398,9.23785],[76.65399,9.24083],[76.65787,9.24397],[76.65858,9.24863],[76.65805,9.25781],[76.65485,9.26048],[76.65592,9.26381],[76.66436,9.26604],[76.66194,9.26922],[76.66705,9.2695],[76.66814,9.27227],[76.67077,9.273],[76.67127,9.27469],[76.66608,9.27384],[76.66604,9.27504],[76.67062,9.27731],[76.67702,9.28323],[76.67762,9.28555],[76.67508,9.28557],[76.67574,9.28936],[76.66427,9.2889],[76.66245,9.28748],[76.65598,9.28829],[76.65584,9.28986],[76.65144,9.28975],[76.65055,9.30452],[76.6517,9.30843],[76.64512,9.30995],[76.64417,9.31539],[76.64139,9.31902],[76.64152,9.32338],[76.63931,9.32602],[76.63537,9.32709],[76.63963,9.32964],[76.64207,9.33326],[76.64037,9.33622],[76.6417,9.34101],[76.62859,9.34258],[76.62791,9.3372],[76.61703,9.34149],[76.61526,9.34093],[76.61327,9.34323],[76.60983,9.34199],[76.60644,9.3451],[76.60316,9.34413],[76.60106,9.34718],[76.59813,9.34625],[76.59476,9.35276],[76.59027,9.35105],[76.5873,9.35191],[76.58526,9.34855],[76.58242,9.34937],[76.58156,9.34734],[76.57924,9.35057],[76.57992,9.35336],[76.57413,9.3539],[76.57242,9.35582],[76.56685,9.35609],[76.56518,9.35316],[76.56312,9.35411],[76.55658,9.35022],[76.55186,9.35211],[76.54969,9.34973],[76.55153,9.34724],[76.55981,9.34341],[76.55623,9.34062],[76.55589,9.3378],[76.55317,9.33521],[76.55159,9.32543],[76.546,9.32542],[76.54031,9.32234],[76.53505,9.3228],[76.53178,9.32964],[76.527,9.32595],[76.5182,9.32731],[76.4978,9.32344],[76.48814,9.32862],[76.47446,9.32813],[76.47336,9.33242],[76.47596,9.33652],[76.47493,9.33784],[76.4796,9.34059],[76.48249,9.34576],[76.48822,9.34754],[76.49568,9.34723],[76.5056,9.35178],[76.50889,9.355],[76.51331,9.35401],[76.51351,9.36251],[76.51575,9.36522],[76.52368,9.36585],[76.5237,9.36783],[76.51429,9.36977],[76.51441,9.37298],[76.51237,9.3733],[76.50926,9.37722],[76.51044,9.38234],[76.5124,9.38247],[76.51201,9.38624],[76.51445,9.39047],[76.51113,9.39193],[76.51329,9.40072],[76.50593,9.40522],[76.50729,9.40762],[76.50598,9.41239],[76.50974,9.42004],[76.50875,9.41951],[76.50549,9.42376],[76.50669,9.42634],[76.5062,9.42907],[76.50451,9.42985],[76.51143,9.43671],[76.50799,9.43854],[76.50282,9.43853],[76.50262,9.44016],[76.49736,9.4405],[76.49499,9.44406],[76.49787,9.44885],[76.49786,9.45416],[76.50566,9.46747],[76.50604,9.47658],[76.50913,9.47816],[76.50687,9.48927],[76.50845,9.48988],[76.50898,9.49874],[76.51076,9.49999],[76.50804,9.50436],[76.49813,9.50373],[76.49539,9.50715],[76.48936,9.5082],[76.48172,9.50869],[76.48032,9.50736],[76.47936,9.5376],[76.46548,9.54216],[76.46611,9.56168],[76.44856,9.55751],[76.43855,9.55421],[76.4384,9.5527],[76.4265,9.54963],[76.42273,9.55585],[76.41527,9.55839],[76.41411,9.56334],[76.40444,9.55946],[76.40465,9.55389],[76.3922,9.5477],[76.39965,9.63981],[76.39651,9.65385],[76.39889,9.67166],[76.40264,9.68592],[76.3757,9.69738],[76.38024,9.72782],[76.3807,9.75144],[76.37176,9.77037],[76.37092,9.77717],[76.36501,9.7923],[76.36731,9.79997],[76.37929,9.81387],[76.38144,9.82103],[76.37769,9.83203],[76.37151,9.83861],[76.36967,9.85153],[76.37192,9.85553],[76.35714,9.88028],[76.35336,9.88397],[76.34509,9.87981],[76.3338,9.87681]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"555","area_level":"District","area_name":"Ernakulam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.58562,10.2981],[76.58177,10.30103],[76.57603,10.30234],[76.56612,10.29316],[76.5734,10.28453],[76.56577,10.28514],[76.55416,10.28287],[76.54444,10.28956],[76.53311,10.28773],[76.5246,10.28432],[76.51675,10.28758],[76.50699,10.28909],[76.49847,10.28765],[76.49424,10.29232],[76.48982,10.29437],[76.48302,10.29203],[76.47828,10.29314],[76.47243,10.29175],[76.45919,10.29659],[76.44773,10.29686],[76.44355,10.29345],[76.43687,10.29435],[76.42971,10.28948],[76.41541,10.29434],[76.41716,10.28881],[76.41163,10.28762],[76.41342,10.28113],[76.40135,10.27597],[76.39703,10.26757],[76.39253,10.2666],[76.39005,10.26404],[76.39138,10.25537],[76.37783,10.25485],[76.37747,10.25],[76.37938,10.24506],[76.37218,10.2411],[76.33929,10.23106],[76.34088,10.23069],[76.34095,10.22629],[76.33751,10.22518],[76.33519,10.21343],[76.33253,10.21274],[76.33124,10.20946],[76.31073,10.20545],[76.31198,10.18242],[76.30191,10.18537],[76.29966,10.18384],[76.29923,10.17999],[76.29644,10.1761],[76.28709,10.17816],[76.28022,10.17469],[76.27403,10.17523],[76.27406,10.17905],[76.27165,10.18118],[76.27072,10.18531],[76.26691,10.18565],[76.26127,10.18987],[76.26186,10.19452],[76.2596,10.19819],[76.26351,10.19841],[76.26366,10.20068],[76.25984,10.20236],[76.25617,10.20121],[76.25428,10.20266],[76.24952,10.20079],[76.24616,10.20188],[76.24343,10.20544],[76.24174,10.20336],[76.23727,10.20445],[76.23362,10.20259],[76.23271,10.20416],[76.21973,10.20702],[76.21159,10.20089],[76.21372,10.19416],[76.20414,10.19466],[76.18523,10.1909],[76.1691,10.18487],[76.16484,10.1798],[76.1669,10.17028],[76.18021,10.13596],[76.20003,10.05892],[76.21263,10.02556],[76.2185,10.00351],[76.2223,10.00001],[76.22291,9.99479],[76.23071,9.97706],[76.23479,9.97527],[76.23811,9.96925],[76.2412,9.96765],[76.23652,9.96463],[76.23799,9.95336],[76.25127,9.9187],[76.26084,9.88117],[76.2772,9.78907],[76.2841,9.79148],[76.2817,9.80078],[76.28214,9.80466],[76.29092,9.80666],[76.28691,9.8187],[76.28364,9.81722],[76.27948,9.82683],[76.27956,9.83056],[76.28403,9.83654],[76.28568,9.84921],[76.29568,9.85106],[76.29748,9.85272],[76.29533,9.85961],[76.29244,9.88418],[76.29267,9.89058],[76.29664,9.89138],[76.30303,9.89017],[76.3106,9.88371],[76.3338,9.87681],[76.34509,9.87981],[76.35336,9.88397],[76.35714,9.88028],[76.36188,9.87082],[76.36553,9.86802],[76.37192,9.85553],[76.36967,9.85153],[76.37239,9.83711],[76.37539,9.83792],[76.38041,9.84303],[76.38842,9.84436],[76.39451,9.83069],[76.40582,9.83038],[76.40819,9.82739],[76.41162,9.82802],[76.4143,9.82234],[76.41921,9.82485],[76.42137,9.82339],[76.4289,9.82522],[76.44609,9.83467],[76.44962,9.84089],[76.45396,9.84142],[76.46133,9.85088],[76.46033,9.847],[76.47375,9.84166],[76.48034,9.84651],[76.48057,9.84352],[76.4829,9.84282],[76.4857,9.84636],[76.4981,9.85144],[76.50237,9.8499],[76.5096,9.85113],[76.51486,9.84875],[76.51436,9.84299],[76.51952,9.83572],[76.51719,9.83324],[76.51986,9.82422],[76.52428,9.82702],[76.52696,9.82511],[76.52897,9.82589],[76.53895,9.82309],[76.53878,9.81336],[76.54473,9.81331],[76.54251,9.80888],[76.54454,9.80086],[76.5471,9.79988],[76.54842,9.80192],[76.55546,9.80241],[76.55903,9.81014],[76.55889,9.81538],[76.56146,9.8178],[76.56093,9.81944],[76.56366,9.81953],[76.56531,9.82442],[76.56697,9.82516],[76.57574,9.82006],[76.58069,9.82243],[76.58203,9.82725],[76.5809,9.83587],[76.58216,9.83696],[76.58004,9.84304],[76.58694,9.84188],[76.58942,9.84492],[76.59159,9.84207],[76.59357,9.84478],[76.59293,9.846],[76.59914,9.84643],[76.60349,9.84529],[76.60494,9.8407],[76.60754,9.84028],[76.60948,9.84187],[76.611,9.83893],[76.6156,9.83797],[76.61546,9.84095],[76.60912,9.84902],[76.61132,9.85397],[76.61559,9.8521],[76.61906,9.85622],[76.62488,9.85717],[76.62886,9.85558],[76.63265,9.85784],[76.63218,9.86195],[76.63452,9.86258],[76.63494,9.86505],[76.63286,9.86543],[76.6322,9.87136],[76.63743,9.87331],[76.63566,9.87881],[76.63614,9.88391],[76.63481,9.88578],[76.63118,9.88645],[76.63116,9.89522],[76.62796,9.90114],[76.6315,9.90515],[76.63057,9.91106],[76.62889,9.91187],[76.63176,9.91591],[76.6343,9.9174],[76.64192,9.91764],[76.64881,9.92151],[76.65448,9.91793],[76.65766,9.92023],[76.66156,9.9164],[76.67321,9.91909],[76.67805,9.91681],[76.68138,9.91757],[76.68108,9.91411],[76.68325,9.91057],[76.69133,9.90726],[76.69636,9.90889],[76.69802,9.91496],[76.7015,9.91665],[76.69872,9.91952],[76.6951,9.91519],[76.69231,9.92162],[76.68316,9.92395],[76.68978,9.92733],[76.69239,9.93232],[76.69768,9.93111],[76.69892,9.92923],[76.70362,9.93884],[76.71016,9.94369],[76.71317,9.94299],[76.71453,9.94622],[76.71143,9.94951],[76.7126,9.95343],[76.71515,9.95449],[76.71675,9.95253],[76.7189,9.95379],[76.71907,9.95151],[76.72368,9.95453],[76.72475,9.95695],[76.71928,9.95969],[76.71564,9.96403],[76.71504,9.97023],[76.71143,9.97305],[76.7117,9.98088],[76.71378,9.98346],[76.71564,9.98333],[76.71633,9.98715],[76.7192,9.98673],[76.72338,9.98148],[76.73085,9.98488],[76.73642,9.98482],[76.74474,9.99071],[76.75523,9.98758],[76.76555,9.98097],[76.76005,9.99147],[76.76504,9.98932],[76.76333,9.99112],[76.76493,9.99318],[76.7691,9.99242],[76.77045,9.99444],[76.7662,9.99723],[76.76888,10.00144],[76.76471,10.01105],[76.76516,10.01586],[76.7668,10.01955],[76.77903,10.0238],[76.77785,10.03062],[76.78095,10.03477],[76.78402,10.03596],[76.79163,10.03303],[76.79431,10.02899],[76.79744,10.02967],[76.80533,10.02682],[76.81052,10.02118],[76.82634,10.01267],[76.83785,10.01171],[76.83681,10.02215],[76.83963,10.02448],[76.83195,10.02549],[76.81722,10.0349],[76.80972,10.03532],[76.80531,10.03983],[76.79636,10.04184],[76.78545,10.04989],[76.78607,10.05189],[76.78227,10.05814],[76.77947,10.05993],[76.77555,10.05973],[76.77468,10.06397],[76.76961,10.06613],[76.78183,10.06733],[76.78235,10.06564],[76.79073,10.06357],[76.79576,10.06559],[76.79979,10.06339],[76.80686,10.06602],[76.80084,10.06066],[76.8036,10.05752],[76.8113,10.05852],[76.80925,10.05938],[76.81165,10.06024],[76.80859,10.06197],[76.80995,10.06279],[76.81787,10.06147],[76.81718,10.06233],[76.81925,10.06278],[76.82532,10.06228],[76.81633,10.069],[76.81731,10.07174],[76.81397,10.08058],[76.82051,10.08649],[76.81999,10.0891],[76.82261,10.09063],[76.83406,10.08667],[76.84492,10.07941],[76.86478,10.07372],[76.86302,10.08097],[76.864,10.09097],[76.87495,10.10422],[76.89147,10.13112],[76.90426,10.14051],[76.90545,10.14383],[76.90245,10.14828],[76.9061,10.15126],[76.90625,10.15484],[76.91248,10.16212],[76.91268,10.16559],[76.91811,10.16811],[76.92113,10.17597],[76.92917,10.17879],[76.94067,10.17145],[76.95188,10.1696],[76.95616,10.16547],[76.96244,10.16398],[76.96654,10.15979],[76.97476,10.16029],[76.9828,10.16582],[76.98654,10.16432],[76.98817,10.16092],[76.99308,10.16315],[76.99766,10.16246],[77.00059,10.1651],[77.00258,10.17052],[77.00538,10.16963],[77.01166,10.17304],[77.01438,10.17264],[77.01618,10.17578],[77.02336,10.17843],[77.02829,10.17238],[77.03646,10.17341],[77.04271,10.17677],[77.05749,10.17817],[77.06152,10.16979],[77.06795,10.1744],[77.07509,10.17336],[77.07697,10.17602],[77.08054,10.17147],[77.08677,10.17699],[77.08913,10.18303],[77.08785,10.18645],[77.08605,10.18457],[77.08354,10.18658],[77.07957,10.19192],[77.08037,10.19297],[77.07542,10.19498],[77.07599,10.197],[77.0701,10.19724],[77.06888,10.19505],[77.06642,10.19601],[77.06552,10.1991],[77.06815,10.20322],[77.06832,10.20671],[77.06625,10.2086],[77.0553,10.21189],[77.0488,10.20584],[77.04326,10.20679],[77.04231,10.20328],[77.03357,10.20466],[77.01992,10.21302],[77.02249,10.21682],[77.01336,10.22267],[77.02215,10.22949],[77.03066,10.22864],[77.04576,10.2338],[77.04835,10.23083],[77.06049,10.23623],[77.06284,10.24259],[77.06282,10.24779],[77.05598,10.25342],[77.05467,10.2573],[77.0506,10.26175],[77.0429,10.25685],[77.04063,10.25266],[77.03152,10.25226],[77.01749,10.24563],[77.01443,10.24579],[77.01113,10.24009],[77.00547,10.2384],[77.00378,10.23464],[77.001,10.23516],[76.99903,10.23037],[76.99332,10.23045],[76.99046,10.22809],[76.99071,10.22568],[76.9845,10.22298],[76.98245,10.22012],[76.98048,10.22379],[76.97347,10.22543],[76.97229,10.22861],[76.96855,10.23077],[76.96543,10.23074],[76.95888,10.23414],[76.9506,10.23247],[76.94754,10.23687],[76.93936,10.2389],[76.92156,10.23218],[76.91264,10.23474],[76.90997,10.23648],[76.90826,10.24085],[76.903,10.2403],[76.90546,10.24792],[76.90455,10.25076],[76.89634,10.25383],[76.8965,10.25806],[76.89178,10.25816],[76.88925,10.25579],[76.88879,10.25757],[76.87786,10.26039],[76.87713,10.26249],[76.87988,10.2667],[76.87893,10.2695],[76.87127,10.27162],[76.86698,10.26936],[76.86561,10.27294],[76.86002,10.27318],[76.84716,10.28102],[76.84272,10.28024],[76.84023,10.28331],[76.83603,10.28371],[76.83314,10.27694],[76.82972,10.27529],[76.82791,10.27624],[76.82622,10.28098],[76.81022,10.28598],[76.80416,10.28517],[76.79817,10.27784],[76.79533,10.2774],[76.79288,10.28023],[76.78748,10.27757],[76.77514,10.27653],[76.77441,10.27122],[76.76845,10.26894],[76.75894,10.26965],[76.75259,10.27511],[76.75204,10.27788],[76.74713,10.27777],[76.73059,10.27061],[76.70616,10.26969],[76.70458,10.26681],[76.69567,10.26393],[76.66921,10.27165],[76.66197,10.27694],[76.66192,10.27997],[76.64586,10.28027],[76.63943,10.27402],[76.63257,10.27268],[76.62129,10.27351],[76.61876,10.28032],[76.60333,10.28023],[76.59004,10.29244],[76.58985,10.29893],[76.58562,10.2981]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"556","area_level":"District","area_name":"Idukki","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.17678,10.35832],[77.16221,10.3489],[77.15128,10.33753],[77.12879,10.32623],[77.12039,10.31796],[77.11024,10.31559],[77.10172,10.31561],[77.0961,10.30898],[77.09136,10.31391],[77.08845,10.30982],[77.07958,10.30301],[77.07261,10.29913],[77.0662,10.2977],[77.063,10.29139],[77.05944,10.29023],[77.05645,10.287],[77.04288,10.28377],[77.0496,10.27808],[77.05268,10.2725],[77.05079,10.26805],[77.0506,10.26175],[77.05467,10.2573],[77.05598,10.25342],[77.06282,10.24779],[77.06284,10.24259],[77.06049,10.23623],[77.04835,10.23083],[77.04576,10.2338],[77.03066,10.22864],[77.02215,10.22949],[77.01336,10.22267],[77.02249,10.21682],[77.01992,10.21302],[77.03357,10.20466],[77.04231,10.20328],[77.04326,10.20679],[77.0488,10.20584],[77.0553,10.21189],[77.06625,10.2086],[77.06832,10.20671],[77.06815,10.20322],[77.06552,10.1991],[77.06642,10.19601],[77.06888,10.19505],[77.0701,10.19724],[77.07599,10.197],[77.07542,10.19498],[77.08037,10.19297],[77.07957,10.19192],[77.08354,10.18658],[77.08605,10.18457],[77.08785,10.18645],[77.08913,10.18303],[77.0851,10.17454],[77.08054,10.17147],[77.07697,10.17602],[77.07509,10.17336],[77.06845,10.17453],[77.06152,10.16979],[77.05749,10.17817],[77.04271,10.17677],[77.03646,10.17341],[77.02829,10.17238],[77.02336,10.17843],[77.01618,10.17578],[77.01438,10.17264],[77.01166,10.17304],[77.00538,10.16963],[77.00258,10.17052],[77.00059,10.1651],[76.99766,10.16246],[76.99308,10.16315],[76.98817,10.16092],[76.98654,10.16432],[76.9828,10.16582],[76.97476,10.16029],[76.96654,10.15979],[76.96244,10.16398],[76.95616,10.16547],[76.95188,10.1696],[76.94067,10.17145],[76.92917,10.17879],[76.92113,10.17597],[76.91811,10.16811],[76.91268,10.16559],[76.91248,10.16212],[76.90625,10.15484],[76.9061,10.15126],[76.90245,10.14828],[76.90545,10.14383],[76.90426,10.14051],[76.89147,10.13112],[76.87495,10.10422],[76.864,10.09097],[76.86302,10.08097],[76.86478,10.07372],[76.84492,10.07941],[76.83406,10.08667],[76.82261,10.09063],[76.81999,10.0891],[76.82051,10.08649],[76.81397,10.08058],[76.81731,10.07174],[76.81633,10.069],[76.82532,10.06228],[76.81925,10.06278],[76.81718,10.06233],[76.81787,10.06147],[76.80995,10.06279],[76.80859,10.06197],[76.81165,10.06024],[76.80925,10.05938],[76.8113,10.05852],[76.8036,10.05752],[76.80084,10.06066],[76.80686,10.06602],[76.79979,10.06339],[76.79576,10.06559],[76.79073,10.06357],[76.78235,10.06564],[76.78183,10.06733],[76.76961,10.06613],[76.77468,10.06397],[76.77555,10.05973],[76.77947,10.05993],[76.78227,10.05814],[76.78607,10.05189],[76.78545,10.04989],[76.79636,10.04184],[76.80531,10.03983],[76.80972,10.03532],[76.81722,10.0349],[76.83195,10.02549],[76.83963,10.02448],[76.83681,10.02215],[76.83785,10.01171],[76.82634,10.01267],[76.81052,10.02118],[76.80533,10.02682],[76.79744,10.02967],[76.79431,10.02899],[76.79163,10.03303],[76.78402,10.03596],[76.78095,10.03477],[76.77785,10.03062],[76.77903,10.0238],[76.7668,10.01955],[76.76516,10.01586],[76.76471,10.01105],[76.76888,10.00144],[76.7662,9.99723],[76.77045,9.99444],[76.7691,9.99242],[76.76493,9.99318],[76.76333,9.99112],[76.76504,9.98932],[76.76005,9.99147],[76.76555,9.98097],[76.75523,9.98758],[76.74474,9.99071],[76.73642,9.98482],[76.73085,9.98488],[76.72338,9.98148],[76.7192,9.98673],[76.71633,9.98715],[76.71564,9.98333],[76.71378,9.98346],[76.7117,9.98088],[76.71143,9.97305],[76.71504,9.97023],[76.71564,9.96403],[76.71928,9.95969],[76.72475,9.95695],[76.72368,9.95453],[76.71907,9.95151],[76.7189,9.95379],[76.71675,9.95253],[76.71515,9.95449],[76.7126,9.95343],[76.71143,9.94951],[76.71453,9.94622],[76.71317,9.94299],[76.71016,9.94369],[76.70362,9.93884],[76.69892,9.92923],[76.69768,9.93111],[76.69239,9.93232],[76.68978,9.92733],[76.68316,9.92395],[76.69231,9.92162],[76.6951,9.91519],[76.69872,9.91952],[76.7015,9.91665],[76.69802,9.91496],[76.69636,9.90889],[76.69133,9.90726],[76.68325,9.91057],[76.68108,9.91411],[76.68138,9.91757],[76.67805,9.91681],[76.67287,9.91909],[76.66156,9.9164],[76.65766,9.92023],[76.65448,9.91793],[76.64881,9.92151],[76.64192,9.91764],[76.6343,9.9174],[76.62946,9.91344],[76.63164,9.90575],[76.62796,9.90114],[76.63116,9.89522],[76.63118,9.88645],[76.63481,9.88578],[76.63614,9.88391],[76.63566,9.87881],[76.63743,9.87331],[76.6322,9.87136],[76.63287,9.86542],[76.63493,9.8651],[76.63452,9.86258],[76.6324,9.86238],[76.63265,9.85784],[76.62886,9.85558],[76.6271,9.85093],[76.62795,9.84889],[76.64622,9.84076],[76.66321,9.83919],[76.66789,9.84388],[76.67473,9.84281],[76.67614,9.83919],[76.6824,9.83917],[76.68491,9.83336],[76.69068,9.83461],[76.6956,9.83379],[76.69904,9.82558],[76.71027,9.82208],[76.7103,9.81984],[76.7257,9.81166],[76.72997,9.81238],[76.74218,9.80368],[76.75053,9.80627],[76.74967,9.81462],[76.75441,9.81763],[76.77004,9.80962],[76.77862,9.80833],[76.80813,9.78962],[76.81471,9.78018],[76.82769,9.77012],[76.82737,9.76391],[76.83898,9.75605],[76.84313,9.75173],[76.84871,9.74042],[76.86048,9.73049],[76.8672,9.73588],[76.86881,9.72874],[76.88922,9.71667],[76.89097,9.70923],[76.89697,9.70093],[76.89744,9.69704],[76.90204,9.68877],[76.90388,9.68327],[76.903,9.6763],[76.91206,9.66989],[76.91282,9.66511],[76.9272,9.65353],[76.92519,9.64958],[76.92225,9.64987],[76.92162,9.64624],[76.91948,9.64722],[76.91831,9.64318],[76.92246,9.63625],[76.93159,9.62813],[76.93487,9.62186],[76.93004,9.61734],[76.93009,9.61445],[76.90967,9.62656],[76.90307,9.63398],[76.89529,9.63378],[76.89093,9.62923],[76.8924,9.6217],[76.88696,9.62046],[76.88711,9.61879],[76.89119,9.61578],[76.88758,9.61019],[76.88926,9.60884],[76.89171,9.61014],[76.88927,9.60654],[76.89217,9.60468],[76.89177,9.59922],[76.89518,9.58657],[76.889,9.58562],[76.88288,9.58148],[76.88591,9.57734],[76.88709,9.56512],[76.88516,9.56129],[76.88836,9.55557],[76.88823,9.55043],[76.89081,9.54598],[76.88766,9.53771],[76.90288,9.53653],[76.9035,9.52918],[76.90224,9.52705],[76.90474,9.52752],[76.90436,9.52514],[76.90595,9.52377],[76.90401,9.52124],[76.91924,9.51112],[76.91852,9.50991],[76.92389,9.50707],[76.92462,9.50482],[76.92786,9.50486],[76.92977,9.50184],[76.9366,9.50405],[76.95006,9.49001],[76.95476,9.49191],[76.95572,9.4969],[76.95893,9.50058],[76.95667,9.50282],[76.96111,9.50545],[76.96081,9.50799],[76.96281,9.50881],[76.96909,9.50454],[76.96967,9.50111],[76.97443,9.50157],[76.97803,9.49804],[76.98406,9.48651],[76.98179,9.48339],[76.98407,9.4801],[76.98463,9.47058],[76.9818,9.46689],[76.97199,9.46727],[76.96891,9.46463],[76.99387,9.44712],[76.99923,9.44635],[77.00101,9.44784],[77.01739,9.44135],[77.01859,9.43073],[77.00839,9.42888],[77.00922,9.42005],[77.01203,9.41849],[77.00947,9.40864],[77.0215,9.40612],[77.02575,9.40918],[77.02872,9.40701],[77.03211,9.40931],[77.03542,9.40938],[77.03754,9.41306],[77.04694,9.41413],[77.0533,9.41807],[77.06117,9.41602],[77.06639,9.41688],[77.0618,9.42665],[77.05853,9.42759],[77.06018,9.43171],[77.05863,9.43567],[77.05994,9.4393],[77.05817,9.44228],[77.05917,9.44566],[77.06852,9.4543],[77.08053,9.45724],[77.09322,9.46231],[77.09537,9.46449],[77.09822,9.46503],[77.09878,9.4627],[77.10075,9.46808],[77.10422,9.46727],[77.10444,9.46917],[77.10838,9.46885],[77.11751,9.4636],[77.13507,9.45865],[77.1425,9.46017],[77.15534,9.47114],[77.1613,9.46914],[77.16641,9.46971],[77.16631,9.46512],[77.16967,9.46532],[77.16856,9.46162],[77.17247,9.46338],[77.17566,9.46811],[77.18199,9.47266],[77.18219,9.46637],[77.18459,9.46246],[77.18238,9.45655],[77.18336,9.45441],[77.18812,9.45617],[77.19117,9.44957],[77.19741,9.45197],[77.20077,9.44954],[77.2032,9.45147],[77.20694,9.4504],[77.20954,9.44806],[77.20751,9.44395],[77.20799,9.44147],[77.21161,9.4439],[77.21543,9.43763],[77.22374,9.43455],[77.22095,9.42611],[77.22236,9.42365],[77.22066,9.42133],[77.22409,9.41955],[77.22884,9.41969],[77.22998,9.41725],[77.22823,9.4109],[77.23165,9.4037],[77.23898,9.39891],[77.24244,9.39091],[77.24585,9.38753],[77.24821,9.37754],[77.24356,9.37344],[77.24105,9.36762],[77.2412,9.36068],[77.23485,9.35023],[77.23793,9.33964],[77.23035,9.33028],[77.23478,9.32751],[77.2351,9.32423],[77.22798,9.31824],[77.22456,9.31166],[77.22609,9.30495],[77.22456,9.29592],[77.22863,9.29748],[77.23528,9.29344],[77.23722,9.28272],[77.23963,9.28532],[77.24306,9.28377],[77.24463,9.29014],[77.24882,9.28978],[77.25783,9.2854],[77.26143,9.28137],[77.27248,9.27926],[77.27731,9.27432],[77.28201,9.27281],[77.28853,9.27417],[77.28788,9.28135],[77.28322,9.29131],[77.28299,9.30133],[77.28849,9.30165],[77.28976,9.30403],[77.29368,9.30476],[77.29954,9.31091],[77.29948,9.31418],[77.30233,9.31853],[77.3018,9.32424],[77.29703,9.32951],[77.30099,9.33012],[77.29997,9.33665],[77.3058,9.33779],[77.31562,9.33486],[77.3201,9.33753],[77.32529,9.33711],[77.32603,9.34655],[77.33579,9.36104],[77.33782,9.36768],[77.33609,9.37223],[77.33664,9.37692],[77.33457,9.37821],[77.33455,9.38122],[77.3366,9.38732],[77.33949,9.38741],[77.3414,9.38981],[77.33977,9.39375],[77.34366,9.40244],[77.3383,9.40826],[77.33649,9.41336],[77.33971,9.42072],[77.3446,9.42442],[77.34857,9.43451],[77.34891,9.44031],[77.35639,9.44757],[77.3603,9.45544],[77.366,9.46008],[77.37289,9.45663],[77.37423,9.45349],[77.3772,9.45278],[77.38093,9.45506],[77.38697,9.45565],[77.39261,9.45935],[77.39147,9.46869],[77.39713,9.47134],[77.40172,9.4769],[77.40198,9.47865],[77.39862,9.48163],[77.39931,9.49657],[77.40298,9.50148],[77.40971,9.50556],[77.4124,9.50898],[77.40831,9.51476],[77.40042,9.51786],[77.40331,9.523],[77.40051,9.52736],[77.39595,9.5233],[77.38518,9.51923],[77.38013,9.52536],[77.37693,9.52483],[77.37334,9.52685],[77.37296,9.52989],[77.36874,9.53478],[77.36556,9.53509],[77.36508,9.55273],[77.36126,9.55794],[77.35291,9.55958],[77.35026,9.56708],[77.35297,9.57286],[77.35814,9.57391],[77.35989,9.57738],[77.3583,9.58393],[77.35497,9.58668],[77.35748,9.59443],[77.36085,9.59784],[77.36239,9.59556],[77.36614,9.59596],[77.36581,9.59974],[77.36277,9.6002],[77.36113,9.60226],[77.35459,9.60407],[77.34548,9.58796],[77.34223,9.58101],[77.3419,9.57646],[77.33949,9.57331],[77.33251,9.57881],[77.32536,9.58003],[77.32562,9.58345],[77.32383,9.58516],[77.32618,9.58863],[77.32453,9.59334],[77.3299,9.59899],[77.32815,9.60015],[77.325,9.59768],[77.32241,9.59829],[77.31782,9.6025],[77.31537,9.60071],[77.30381,9.59874],[77.29456,9.58924],[77.29007,9.58869],[77.29034,9.58477],[77.28048,9.57958],[77.27693,9.57575],[77.27201,9.57645],[77.26971,9.57277],[77.26385,9.57374],[77.26145,9.57683],[77.25833,9.57649],[77.25307,9.58297],[77.24277,9.58522],[77.23713,9.58106],[77.2343,9.58155],[77.22249,9.59278],[77.22218,9.59771],[77.21714,9.60162],[77.21444,9.60071],[77.20984,9.60497],[77.21047,9.61086],[77.20896,9.61344],[77.1982,9.61436],[77.19706,9.61085],[77.19082,9.60922],[77.18868,9.6061],[77.17409,9.61119],[77.1703,9.60967],[77.16586,9.61286],[77.16778,9.61502],[77.16911,9.62397],[77.1746,9.62658],[77.17626,9.62948],[77.17415,9.63287],[77.17405,9.63731],[77.17927,9.64486],[77.17958,9.65554],[77.18115,9.65921],[77.18751,9.66144],[77.18682,9.66641],[77.19411,9.67056],[77.20055,9.686],[77.20672,9.69466],[77.20458,9.70158],[77.20195,9.70389],[77.2053,9.71309],[77.20471,9.71656],[77.2061,9.71757],[77.20356,9.72211],[77.20753,9.72476],[77.21838,9.72608],[77.22067,9.72964],[77.22391,9.73037],[77.22184,9.7374],[77.22268,9.73999],[77.21984,9.74208],[77.22023,9.74504],[77.22514,9.75277],[77.22747,9.76421],[77.2324,9.76857],[77.22499,9.77556],[77.22266,9.78779],[77.23601,9.79006],[77.24016,9.79692],[77.24173,9.79579],[77.24667,9.79789],[77.24509,9.80278],[77.24679,9.808],[77.24115,9.81563],[77.23259,9.81742],[77.23273,9.82149],[77.22501,9.8203],[77.22431,9.822],[77.22178,9.82245],[77.22385,9.82385],[77.22378,9.8287],[77.22655,9.83072],[77.22544,9.8333],[77.22753,9.83809],[77.22294,9.84488],[77.22633,9.84634],[77.22814,9.84914],[77.23718,9.85138],[77.23631,9.8596],[77.23269,9.86154],[77.22614,9.86086],[77.22133,9.86313],[77.21245,9.87688],[77.21527,9.87739],[77.21752,9.88435],[77.22075,9.88448],[77.21809,9.89637],[77.21825,9.90429],[77.22258,9.90596],[77.22439,9.90967],[77.23006,9.91247],[77.23056,9.92139],[77.2317,9.92404],[77.23564,9.92637],[77.23433,9.93058],[77.23623,9.93537],[77.2479,9.94685],[77.24654,9.9514],[77.24958,9.95255],[77.25021,9.95118],[77.25296,9.95345],[77.26101,9.95249],[77.26854,9.96091],[77.27105,9.96243],[77.27184,9.96133],[77.27285,9.96419],[77.27218,9.97015],[77.27087,9.97091],[77.27267,9.97634],[77.26796,9.97991],[77.2644,9.98717],[77.26683,9.99029],[77.26177,9.9911],[77.26091,9.99268],[77.2608,9.99576],[77.26613,10.00189],[77.25319,10.01281],[77.25586,10.01453],[77.25744,10.0193],[77.26159,10.0212],[77.2619,10.02973],[77.2548,10.03667],[77.24439,10.05197],[77.23447,10.05984],[77.23144,10.06627],[77.2235,10.06918],[77.22289,10.07298],[77.21984,10.07716],[77.20398,10.08773],[77.20401,10.09728],[77.20133,10.10621],[77.20462,10.11276],[77.20648,10.11256],[77.20789,10.1177],[77.21085,10.11816],[77.21643,10.11585],[77.22717,10.12119],[77.23038,10.1205],[77.22992,10.12252],[77.23276,10.12396],[77.23205,10.12528],[77.23373,10.12797],[77.23824,10.13008],[77.24765,10.1305],[77.24895,10.12681],[77.25269,10.12445],[77.26778,10.12161],[77.26836,10.12714],[77.27405,10.12949],[77.27477,10.13255],[77.27453,10.13976],[77.2718,10.14199],[77.27414,10.15767],[77.27292,10.16534],[77.2747,10.17527],[77.27627,10.17571],[77.2753,10.18442],[77.27857,10.19421],[77.28296,10.19659],[77.28482,10.20055],[77.28587,10.20436],[77.28312,10.20865],[77.2873,10.20925],[77.28954,10.21456],[77.29337,10.21529],[77.29496,10.2179],[77.28809,10.23186],[77.28422,10.23342],[77.28194,10.23656],[77.27316,10.23501],[77.26926,10.23704],[77.2686,10.23459],[77.26475,10.23522],[77.26455,10.23233],[77.25972,10.23027],[77.25719,10.25939],[77.26293,10.26333],[77.23931,10.29503],[77.23982,10.29853],[77.23676,10.301],[77.23528,10.30765],[77.23141,10.30842],[77.23093,10.31257],[77.22775,10.31542],[77.22762,10.31995],[77.22957,10.32236],[77.22817,10.32727],[77.22921,10.33065],[77.23317,10.33499],[77.23305,10.33765],[77.23637,10.33889],[77.23565,10.35225],[77.22262,10.35366],[77.20939,10.35302],[77.20465,10.35385],[77.20206,10.35763],[77.19813,10.35673],[77.19605,10.35451],[77.17678,10.35832]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"557","area_level":"District","area_name":"Kannur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.47073,12.29975],[75.46954,12.30066],[75.46374,12.2983],[75.4599,12.29404],[75.44573,12.29763],[75.4412,12.2966],[75.43635,12.29845],[75.43302,12.29734],[75.43009,12.29901],[75.42738,12.29781],[75.4266,12.29561],[75.42284,12.2951],[75.4211,12.29171],[75.41444,12.29058],[75.41021,12.29518],[75.40647,12.29363],[75.39741,12.29405],[75.39231,12.29024],[75.39112,12.29127],[75.39148,12.29615],[75.38989,12.29664],[75.38617,12.29297],[75.3873,12.28778],[75.38444,12.28791],[75.38203,12.28536],[75.37638,12.28334],[75.37035,12.28584],[75.36532,12.27781],[75.35942,12.27602],[75.34546,12.26724],[75.3395,12.26917],[75.3292,12.26651],[75.3272,12.27081],[75.31906,12.27428],[75.31311,12.27096],[75.30784,12.27165],[75.29906,12.26978],[75.28712,12.26051],[75.28698,12.25671],[75.29149,12.24352],[75.29093,12.23677],[75.28923,12.23428],[75.27585,12.23174],[75.27229,12.22785],[75.26475,12.22482],[75.26114,12.22527],[75.25821,12.22207],[75.25213,12.21939],[75.25015,12.22071],[75.23763,12.21804],[75.23158,12.22202],[75.22314,12.21366],[75.21975,12.20698],[75.21535,12.20264],[75.20859,12.19909],[75.2039,12.19135],[75.19148,12.19339],[75.17273,12.18988],[75.17969,12.17651],[75.18151,12.17659],[75.18767,12.16602],[75.19108,12.14756],[75.19342,12.14665],[75.194,12.14304],[75.19653,12.14002],[75.19494,12.13857],[75.19519,12.13622],[75.19081,12.13463],[75.18823,12.12996],[75.19382,12.11899],[75.19104,12.11488],[75.19311,12.104],[75.19038,12.09732],[75.18314,12.09556],[75.17865,12.10001],[75.17559,12.1009],[75.1678,12.09128],[75.17509,12.0794],[75.17606,12.07104],[75.18565,12.04654],[75.18393,12.04421],[75.2015,12.00867],[75.20106,12.00609],[75.20458,12.00561],[75.20948,12.01142],[75.21511,12.0102],[75.22105,12.01235],[75.22289,12.01513],[75.22302,12.01929],[75.22911,12.02261],[75.23792,12.0179],[75.25033,12.00819],[75.29485,11.94571],[75.29585,11.94767],[75.30043,11.94787],[75.30144,11.94486],[75.29527,11.94198],[75.29829,11.94098],[75.30797,11.93104],[75.3203,11.9137],[75.32051,11.91129],[75.31842,11.90903],[75.31917,11.90497],[75.32513,11.9047],[75.32397,11.9029],[75.33862,11.88753],[75.35274,11.86942],[75.35568,11.8598],[75.36196,11.85693],[75.3676,11.85125],[75.37145,11.85329],[75.37457,11.85204],[75.37235,11.85602],[75.37478,11.85823],[75.38114,11.85856],[75.38576,11.85634],[75.3948,11.84582],[75.39555,11.84257],[75.40587,11.83552],[75.4233,11.81288],[75.43117,11.80791],[75.43205,11.80952],[75.43605,11.80536],[75.44573,11.78972],[75.44667,11.78202],[75.45386,11.77869],[75.45668,11.77912],[75.45379,11.77662],[75.4537,11.77027],[75.46061,11.76549],[75.46553,11.76718],[75.46809,11.76458],[75.47274,11.76434],[75.47564,11.75937],[75.48295,11.75435],[75.48527,11.74808],[75.49025,11.74487],[75.498,11.73424],[75.50266,11.73557],[75.509,11.73113],[75.51755,11.71593],[75.51511,11.71684],[75.51577,11.71546],[75.51772,11.71451],[75.51778,11.71589],[75.51966,11.71571],[75.52439,11.70803],[75.53004,11.70357],[75.53305,11.7058],[75.53426,11.70901],[75.53732,11.70971],[75.54423,11.70454],[75.54999,11.7047],[75.55354,11.70309],[75.55684,11.69837],[75.56356,11.6943],[75.5619,11.68172],[75.56566,11.68044],[75.56963,11.67515],[75.57913,11.67981],[75.58724,11.68726],[75.59254,11.68855],[75.60032,11.6867],[75.60325,11.68913],[75.60384,11.69148],[75.60167,11.69586],[75.59487,11.69643],[75.59274,11.69796],[75.59319,11.70844],[75.58741,11.71225],[75.59572,11.71334],[75.59913,11.71895],[75.60275,11.71863],[75.60619,11.7226],[75.60756,11.72223],[75.60726,11.71862],[75.61112,11.72542],[75.6158,11.72444],[75.62352,11.73095],[75.62424,11.73259],[75.62267,11.73346],[75.62583,11.73707],[75.62695,11.73638],[75.62682,11.73803],[75.62914,11.73747],[75.62955,11.73882],[75.63545,11.73646],[75.64131,11.74418],[75.64461,11.74356],[75.64628,11.74717],[75.6481,11.74588],[75.64842,11.75003],[75.65071,11.75016],[75.65509,11.75616],[75.6575,11.75512],[75.65932,11.75834],[75.66555,11.75852],[75.66912,11.7704],[75.68356,11.77538],[75.68817,11.7892],[75.69137,11.794],[75.69143,11.7995],[75.6986,11.79955],[75.71236,11.79611],[75.71657,11.79684],[75.72174,11.79374],[75.72663,11.78764],[75.72899,11.78038],[75.73773,11.7815],[75.73666,11.78309],[75.73759,11.78698],[75.7456,11.7868],[75.75008,11.78209],[75.75763,11.78913],[75.7534,11.79231],[75.75295,11.79532],[75.74581,11.79904],[75.74988,11.8039],[75.75733,11.80587],[75.77205,11.80274],[75.77608,11.80368],[75.78079,11.80713],[75.78153,11.81023],[75.79881,11.81937],[75.79774,11.82735],[75.79199,11.83223],[75.78994,11.83588],[75.78994,11.84055],[75.79349,11.84585],[75.80023,11.84522],[75.80451,11.84739],[75.80543,11.85387],[75.80829,11.85646],[75.81699,11.85615],[75.81955,11.85886],[75.82294,11.85349],[75.82868,11.85124],[75.83753,11.85326],[75.84096,11.85597],[75.84507,11.85595],[75.84696,11.85487],[75.84811,11.85094],[75.85398,11.84779],[75.86128,11.84991],[75.87195,11.84891],[75.88246,11.84491],[75.88783,11.84671],[75.89167,11.84258],[75.90946,11.8436],[75.91185,11.84624],[75.91776,11.8446],[75.92134,11.84722],[75.92601,11.84709],[75.9258,11.84327],[75.92728,11.84277],[75.92535,11.84818],[75.92932,11.85781],[75.93135,11.85812],[75.9217,11.86914],[75.91139,11.87491],[75.91909,11.8802],[75.92496,11.88016],[75.92979,11.88199],[75.93635,11.89069],[75.93647,11.90056],[75.93925,11.90325],[75.9369,11.90537],[75.93535,11.91184],[75.92495,11.92003],[75.92624,11.92459],[75.92519,11.92941],[75.92825,11.9345],[75.93602,11.93452],[75.9396,11.941],[75.93741,11.9421],[75.93571,11.94006],[75.93078,11.9397],[75.92719,11.94337],[75.91747,11.94488],[75.91399,11.94692],[75.89873,11.94666],[75.89703,11.94547],[75.88602,11.95203],[75.88068,11.94971],[75.87254,11.9533],[75.87045,11.95258],[75.86643,11.95738],[75.85886,11.95942],[75.85461,11.96411],[75.853,11.97159],[75.85011,11.97474],[75.848,11.97495],[75.84955,11.97804],[75.84691,11.98201],[75.84292,11.98073],[75.83971,11.98267],[75.83704,11.98093],[75.82947,11.98451],[75.82563,11.99187],[75.82523,12.00273],[75.82038,12.00252],[75.82325,12.0098],[75.82286,12.01337],[75.81547,12.02051],[75.80993,12.02271],[75.81102,12.02857],[75.80107,12.03701],[75.79966,12.04738],[75.79396,12.05503],[75.79866,12.05604],[75.79867,12.06327],[75.80383,12.07516],[75.80255,12.07856],[75.78542,12.08426],[75.78036,12.08251],[75.76763,12.08448],[75.76282,12.08325],[75.75348,12.08413],[75.74913,12.08191],[75.74712,12.07819],[75.74358,12.08017],[75.73611,12.07895],[75.72774,12.07255],[75.72485,12.07318],[75.71473,12.07044],[75.71545,12.08166],[75.71769,12.08229],[75.71793,12.08558],[75.71307,12.09048],[75.70213,12.09229],[75.70326,12.10817],[75.69554,12.11049],[75.68718,12.11025],[75.68364,12.10449],[75.67988,12.10273],[75.67687,12.0982],[75.66742,12.09731],[75.66198,12.09918],[75.653,12.10791],[75.65276,12.11005],[75.64908,12.10933],[75.64658,12.1158],[75.64753,12.12192],[75.64408,12.12552],[75.64319,12.13865],[75.64205,12.1398],[75.63826,12.13895],[75.6392,12.14336],[75.63605,12.14917],[75.63133,12.14878],[75.61903,12.15652],[75.61496,12.1556],[75.61125,12.15262],[75.60691,12.15549],[75.60197,12.15364],[75.5959,12.15432],[75.59256,12.14785],[75.59046,12.15249],[75.58375,12.15699],[75.58331,12.15912],[75.5772,12.15775],[75.56978,12.17285],[75.56027,12.17612],[75.55851,12.18207],[75.55497,12.18318],[75.55262,12.19285],[75.54859,12.19263],[75.54625,12.19794],[75.54118,12.19755],[75.5398,12.20273],[75.53649,12.20128],[75.53416,12.20293],[75.53261,12.20145],[75.53194,12.20567],[75.53703,12.20808],[75.53969,12.21681],[75.52691,12.22569],[75.52833,12.23159],[75.52111,12.23613],[75.51861,12.24351],[75.5198,12.24621],[75.51159,12.25306],[75.51178,12.25958],[75.50583,12.26458],[75.5054,12.27074],[75.49387,12.27279],[75.48692,12.28428],[75.48663,12.2886],[75.48101,12.29217],[75.4794,12.29541],[75.47547,12.29596],[75.47073,12.29975]],[[75.53771,11.7628],[75.53862,11.76014],[75.5441,11.7591],[75.54644,11.75627],[75.54472,11.75353],[75.54207,11.73719],[75.54324,11.7344],[75.55562,11.7276],[75.55534,11.72147],[75.5478,11.71543],[75.54578,11.71751],[75.5415,11.71553],[75.5376,11.71607],[75.53653,11.7193],[75.5325,11.71621],[75.53325,11.71391],[75.53737,11.71218],[75.53083,11.71021],[75.531,11.70826],[75.52903,11.70979],[75.53218,11.71393],[75.53156,11.71588],[75.52783,11.71601],[75.52669,11.72663],[75.53082,11.73096],[75.53172,11.73466],[75.53602,11.73355],[75.54011,11.73491],[75.54146,11.73889],[75.54026,11.74847],[75.53744,11.74866],[75.53472,11.7526],[75.53438,11.75638],[75.53123,11.75871],[75.53771,11.7628]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"558","area_level":"District","area_name":"Kasaragod","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.41613,12.50003],[75.41195,12.50201],[75.40806,12.49864],[75.403,12.49774],[75.40008,12.5],[75.39905,12.50352],[75.3946,12.50277],[75.39169,12.49936],[75.38741,12.5019],[75.38223,12.50202],[75.37779,12.4951],[75.36805,12.49121],[75.36864,12.48728],[75.3716,12.4869],[75.3726,12.47703],[75.371,12.4748],[75.36751,12.47533],[75.36082,12.46497],[75.35173,12.46488],[75.34611,12.46298],[75.3366,12.46408],[75.34154,12.46912],[75.3361,12.47701],[75.33742,12.48852],[75.33353,12.49205],[75.33448,12.49549],[75.333,12.49833],[75.32451,12.49673],[75.31503,12.49711],[75.31445,12.50292],[75.30456,12.50408],[75.30321,12.51426],[75.3041,12.52328],[75.29652,12.52319],[75.29554,12.52525],[75.29135,12.52685],[75.28031,12.52531],[75.27864,12.53146],[75.27396,12.5356],[75.27449,12.54022],[75.27056,12.54834],[75.27215,12.55484],[75.27006,12.55845],[75.27289,12.56897],[75.27855,12.5716],[75.28467,12.56957],[75.29054,12.58261],[75.30804,12.57833],[75.31539,12.57254],[75.31869,12.57749],[75.32643,12.58139],[75.328,12.58429],[75.32701,12.59239],[75.31216,12.58972],[75.30189,12.60541],[75.29907,12.6059],[75.29156,12.60195],[75.28958,12.6104],[75.28598,12.61121],[75.2817,12.61644],[75.27635,12.61851],[75.27261,12.61556],[75.26716,12.61466],[75.26513,12.61117],[75.266,12.60719],[75.26126,12.59817],[75.25684,12.59651],[75.25534,12.59138],[75.25178,12.589],[75.2497,12.58457],[75.24158,12.58003],[75.23867,12.58071],[75.23898,12.57802],[75.2371,12.57614],[75.2375,12.56976],[75.22919,12.56853],[75.22393,12.57036],[75.22032,12.5691],[75.21777,12.57636],[75.21262,12.57816],[75.20949,12.59107],[75.20114,12.58773],[75.20173,12.59336],[75.20786,12.59573],[75.20998,12.60023],[75.20775,12.60269],[75.20674,12.60801],[75.20095,12.60961],[75.19926,12.61207],[75.19877,12.61443],[75.20281,12.62759],[75.20174,12.63002],[75.19374,12.63031],[75.18822,12.63314],[75.18555,12.63185],[75.1829,12.6328],[75.16996,12.62227],[75.16417,12.62407],[75.16068,12.62213],[75.15392,12.62497],[75.14444,12.64049],[75.1433,12.63966],[75.13851,12.64344],[75.15081,12.65006],[75.15212,12.65611],[75.16203,12.67196],[75.14988,12.67333],[75.14903,12.67616],[75.152,12.68324],[75.14639,12.68219],[75.14319,12.67839],[75.13982,12.68059],[75.13764,12.67676],[75.13467,12.67805],[75.13251,12.67614],[75.12841,12.67694],[75.12492,12.68148],[75.12312,12.68137],[75.12213,12.67891],[75.11739,12.68128],[75.11146,12.68182],[75.11259,12.68522],[75.11018,12.68845],[75.11062,12.69058],[75.10727,12.69105],[75.10625,12.69681],[75.10022,12.69967],[75.09232,12.69981],[75.08601,12.70403],[75.08095,12.69907],[75.08115,12.69738],[75.08508,12.69567],[75.0831,12.69333],[75.08558,12.69022],[75.0855,12.68247],[75.08744,12.6792],[75.08517,12.67476],[75.07415,12.67225],[75.06858,12.66467],[75.06525,12.66483],[75.05981,12.67177],[75.05752,12.66605],[75.05397,12.67022],[75.04664,12.66757],[75.04257,12.67285],[75.04146,12.67873],[75.043,12.68224],[75.0405,12.68535],[75.04392,12.69264],[75.04855,12.69404],[75.05385,12.69052],[75.05559,12.69346],[75.05023,12.70439],[75.05189,12.7069],[75.0543,12.70713],[75.05389,12.71112],[75.05034,12.71632],[75.05246,12.72008],[75.04792,12.7206],[75.04431,12.72311],[75.04268,12.72077],[75.03905,12.72382],[75.03358,12.72351],[75.02658,12.71931],[75.01864,12.72111],[75.01504,12.71423],[75.00099,12.71639],[75.00096,12.71956],[75.00494,12.72028],[75.0134,12.72795],[75.0,12.73205],[74.99248,12.73989],[74.99047,12.73873],[74.99135,12.73695],[74.99002,12.73608],[74.99039,12.73746],[74.98881,12.73821],[74.98893,12.73629],[74.98724,12.73657],[74.98559,12.7336],[74.98327,12.7372],[74.98545,12.73889],[74.98403,12.73993],[74.98464,12.74308],[74.98768,12.74165],[74.9966,12.75208],[74.99868,12.75699],[75.00433,12.76043],[75.00606,12.76612],[75.00945,12.76751],[75.00621,12.77084],[75.00339,12.77798],[75.00297,12.78438],[75.00509,12.79031],[75.00316,12.79167],[75.00018,12.79022],[75.00243,12.78834],[74.99831,12.78594],[74.99875,12.78908],[74.99602,12.7893],[74.99122,12.79553],[74.98903,12.79546],[74.98741,12.79359],[74.99209,12.78821],[74.98731,12.78296],[74.98514,12.78155],[74.98244,12.78231],[74.98193,12.77963],[74.96836,12.77636],[74.96654,12.77648],[74.96633,12.78079],[74.96441,12.78163],[74.96293,12.77868],[74.95999,12.77889],[74.95819,12.78467],[74.95069,12.78429],[74.94173,12.77998],[74.93293,12.78054],[74.90763,12.76896],[74.89958,12.76258],[74.89303,12.76243],[74.88231,12.75405],[74.87414,12.75494],[74.87224,12.76106],[74.86459,12.76019],[74.88428,12.7082],[74.88792,12.70654],[74.88694,12.70614],[74.91604,12.6418],[74.92819,12.60695],[74.93329,12.60401],[74.93158,12.60295],[74.9546,12.54733],[74.95614,12.54633],[74.97381,12.50039],[74.98184,12.48449],[74.9843,12.48252],[74.98398,12.47987],[74.99036,12.46884],[74.99807,12.45016],[75.00434,12.44058],[75.01444,12.41704],[75.01924,12.41564],[75.03009,12.39235],[75.03339,12.38998],[75.03606,12.39168],[75.03944,12.38992],[75.05806,12.3517],[75.09654,12.26177],[75.11431,12.21337],[75.11893,12.2036],[75.12335,12.20361],[75.1243,12.20231],[75.1219,12.19747],[75.12466,12.18818],[75.1414,12.14886],[75.1586,12.10273],[75.18393,12.04421],[75.18565,12.04654],[75.17586,12.07165],[75.17552,12.07828],[75.1678,12.09128],[75.17559,12.1009],[75.17865,12.10001],[75.18314,12.09556],[75.19038,12.09732],[75.19311,12.104],[75.19104,12.11488],[75.19382,12.11899],[75.18823,12.12996],[75.19081,12.13463],[75.19519,12.13622],[75.19494,12.13857],[75.19653,12.14002],[75.194,12.14304],[75.19342,12.14665],[75.19108,12.14756],[75.18767,12.16602],[75.18151,12.17659],[75.17969,12.17651],[75.17273,12.18988],[75.19148,12.19339],[75.2039,12.19135],[75.20859,12.19909],[75.21535,12.20264],[75.21975,12.20698],[75.22314,12.21366],[75.23158,12.22202],[75.23763,12.21804],[75.25015,12.22071],[75.25213,12.21939],[75.25821,12.22207],[75.26114,12.22527],[75.26475,12.22482],[75.27229,12.22785],[75.27585,12.23174],[75.28923,12.23428],[75.29093,12.23677],[75.29149,12.24352],[75.28698,12.25671],[75.28712,12.26051],[75.29906,12.26978],[75.30784,12.27165],[75.31311,12.27096],[75.31906,12.27428],[75.3272,12.27081],[75.3292,12.26651],[75.3395,12.26917],[75.34546,12.26724],[75.35942,12.27602],[75.36532,12.27781],[75.37035,12.28584],[75.37638,12.28334],[75.38203,12.28536],[75.38444,12.28791],[75.3873,12.28778],[75.38617,12.29297],[75.38898,12.29634],[75.39148,12.29615],[75.39112,12.29127],[75.39231,12.29024],[75.39741,12.29405],[75.40647,12.29363],[75.41021,12.29518],[75.41373,12.29236],[75.41927,12.29513],[75.42515,12.30057],[75.42411,12.30292],[75.42776,12.30405],[75.42829,12.30699],[75.43197,12.3085],[75.43109,12.31059],[75.42716,12.31072],[75.42028,12.31898],[75.41864,12.32917],[75.41619,12.32993],[75.41539,12.34006],[75.4104,12.34719],[75.41168,12.34914],[75.41544,12.34961],[75.41964,12.35694],[75.42187,12.36772],[75.42153,12.37358],[75.41312,12.38029],[75.40553,12.37906],[75.40154,12.38252],[75.4004,12.38074],[75.39857,12.38143],[75.39229,12.38999],[75.38649,12.39237],[75.38394,12.39091],[75.37924,12.39236],[75.37773,12.39842],[75.37261,12.40025],[75.37086,12.40876],[75.36617,12.41183],[75.37149,12.43772],[75.36885,12.44217],[75.37029,12.44887],[75.36579,12.45774],[75.37126,12.45656],[75.37422,12.45973],[75.38187,12.45663],[75.38629,12.45828],[75.39221,12.45512],[75.3934,12.45137],[75.39962,12.45493],[75.40398,12.45494],[75.41332,12.45857],[75.41565,12.46216],[75.41572,12.46598],[75.42326,12.46678],[75.42487,12.46892],[75.42482,12.47426],[75.4203,12.47976],[75.42058,12.48852],[75.41733,12.49337],[75.41866,12.49554],[75.41613,12.50003]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"559","area_level":"District","area_name":"Kollam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.96345,9.15204],[76.93033,9.17379],[76.92818,9.1688],[76.92624,9.15436],[76.92736,9.14629],[76.9264,9.13863],[76.93631,9.13579],[76.94061,9.13861],[76.9489,9.13098],[76.96016,9.12996],[76.94827,9.11724],[76.94385,9.1186],[76.93802,9.11724],[76.92508,9.11873],[76.92385,9.12259],[76.91015,9.12575],[76.90217,9.12542],[76.89816,9.13042],[76.89259,9.12276],[76.88396,9.12195],[76.88473,9.12473],[76.8756,9.13089],[76.86712,9.12078],[76.86598,9.1158],[76.85639,9.11697],[76.85508,9.1143],[76.85187,9.11273],[76.85172,9.10502],[76.84955,9.10234],[76.85191,9.09955],[76.8463,9.0988],[76.84563,9.09479],[76.84211,9.09207],[76.83294,9.09429],[76.82846,9.09388],[76.8277,9.09244],[76.82269,9.09338],[76.81517,9.10368],[76.80927,9.10843],[76.79674,9.1105],[76.79329,9.10908],[76.78663,9.11404],[76.78334,9.1141],[76.78108,9.10954],[76.77666,9.10903],[76.77643,9.10559],[76.77329,9.10432],[76.7735,9.10116],[76.76961,9.10113],[76.76562,9.09452],[76.77045,9.08371],[76.77143,9.0748],[76.76534,9.07488],[76.75934,9.07212],[76.75774,9.07396],[76.75777,9.08589],[76.75422,9.08842],[76.74498,9.08009],[76.73717,9.0863],[76.73548,9.08568],[76.7334,9.08109],[76.72708,9.08416],[76.72269,9.08168],[76.71481,9.08513],[76.71226,9.08431],[76.71021,9.087],[76.70498,9.08671],[76.69023,9.09156],[76.68618,9.08869],[76.68387,9.08091],[76.67867,9.08173],[76.67867,9.07806],[76.67423,9.07906],[76.67172,9.0824],[76.67495,9.08525],[76.67736,9.09195],[76.67222,9.11375],[76.66936,9.11686],[76.66434,9.11414],[76.66109,9.11602],[76.65655,9.11336],[76.65167,9.11687],[76.64738,9.11669],[76.64455,9.12232],[76.63813,9.12228],[76.63307,9.11848],[76.63347,9.12343],[76.63636,9.12917],[76.63529,9.14084],[76.63279,9.13814],[76.62639,9.13721],[76.62375,9.13882],[76.61458,9.13101],[76.60335,9.13024],[76.59873,9.13267],[76.59126,9.13162],[76.58744,9.12896],[76.58879,9.12789],[76.58843,9.12318],[76.58376,9.12046],[76.58479,9.11668],[76.5808,9.11694],[76.57952,9.1152],[76.57487,9.1172],[76.56856,9.1118],[76.55788,9.1098],[76.55123,9.11072],[76.54642,9.126],[76.54356,9.12567],[76.54285,9.12836],[76.54118,9.12873],[76.54161,9.13508],[76.52858,9.13488],[76.51606,9.13755],[76.50857,9.1367],[76.50307,9.13497],[76.50649,9.12561],[76.49824,9.12521],[76.48508,9.12614],[76.47888,9.1281],[76.47328,9.12727],[76.47323,9.12996],[76.47032,9.13147],[76.46635,9.13047],[76.46447,9.13561],[76.46291,9.13419],[76.49913,9.05822],[76.51582,9.01602],[76.5212,8.99865],[76.52681,8.97019],[76.53428,8.95124],[76.53732,8.93768],[76.5355,8.93604],[76.53984,8.9389],[76.54165,8.93803],[76.54039,8.93614],[76.54208,8.93601],[76.54176,8.93388],[76.53538,8.93372],[76.53839,8.93278],[76.53954,8.93013],[76.54022,8.93175],[76.54233,8.91312],[76.54673,8.90391],[76.55586,8.89218],[76.56002,8.8894],[76.56586,8.87966],[76.57093,8.88313],[76.58171,8.88014],[76.59355,8.8735],[76.61012,8.85943],[76.6326,8.83511],[76.64459,8.81965],[76.65062,8.80875],[76.67293,8.78166],[76.67482,8.78215],[76.67775,8.78815],[76.68198,8.77605],[76.68399,8.77655],[76.6849,8.77936],[76.68989,8.77875],[76.6927,8.79157],[76.70105,8.79094],[76.70369,8.79292],[76.70475,8.79135],[76.70966,8.7911],[76.70936,8.79524],[76.71396,8.79635],[76.72091,8.80357],[76.72362,8.8034],[76.72814,8.79994],[76.73854,8.79821],[76.74058,8.79601],[76.75842,8.79542],[76.7605,8.79137],[76.76175,8.79362],[76.76134,8.8003],[76.76882,8.79872],[76.77096,8.79988],[76.7683,8.80396],[76.77188,8.80606],[76.77116,8.8112],[76.77713,8.8097],[76.79263,8.81353],[76.7924,8.81484],[76.78982,8.81485],[76.78887,8.8191],[76.78303,8.81943],[76.78728,8.82266],[76.79133,8.82203],[76.79442,8.82805],[76.78864,8.83502],[76.78514,8.8358],[76.78381,8.83884],[76.78138,8.83995],[76.78177,8.84265],[76.77541,8.84391],[76.78216,8.85249],[76.78072,8.86094],[76.78275,8.86259],[76.78955,8.85349],[76.79313,8.85438],[76.79432,8.85658],[76.80154,8.84875],[76.80693,8.85492],[76.80675,8.85736],[76.81129,8.85492],[76.81481,8.85648],[76.81665,8.85948],[76.82389,8.85118],[76.82382,8.84508],[76.82574,8.84295],[76.82721,8.84251],[76.8293,8.84473],[76.83306,8.84339],[76.84812,8.83452],[76.84585,8.82775],[76.84956,8.82612],[76.84887,8.82486],[76.85185,8.82217],[76.85104,8.81903],[76.85542,8.81599],[76.85712,8.81861],[76.86251,8.81448],[76.87631,8.81016],[76.88278,8.80551],[76.89036,8.81146],[76.89327,8.81007],[76.9001,8.81154],[76.90313,8.8066],[76.90694,8.80487],[76.90737,8.80131],[76.91241,8.79919],[76.92134,8.78649],[76.91511,8.7818],[76.91517,8.77676],[76.92978,8.76621],[76.93357,8.76137],[76.94192,8.76581],[76.94648,8.77119],[76.95039,8.77244],[76.96358,8.7711],[76.97279,8.77537],[76.97483,8.78448],[76.98133,8.78996],[76.9914,8.78789],[76.99613,8.78468],[77.00101,8.7725],[77.00276,8.77133],[77.01511,8.77198],[77.02494,8.77541],[77.01604,8.78869],[77.01538,8.7924],[77.01156,8.79553],[77.00997,8.80226],[77.01114,8.80755],[77.00867,8.81236],[77.01132,8.81597],[77.01527,8.81773],[77.02092,8.81657],[77.02011,8.8284],[77.02498,8.83382],[77.02906,8.83445],[77.0326,8.84281],[77.05016,8.84645],[77.06858,8.84062],[77.08307,8.83979],[77.08829,8.83433],[77.09964,8.82967],[77.10723,8.83035],[77.10785,8.82673],[77.11046,8.82662],[77.11283,8.823],[77.11884,8.82213],[77.12089,8.82023],[77.1275,8.81053],[77.1378,8.80562],[77.14069,8.80654],[77.14568,8.80357],[77.14736,8.80047],[77.15112,8.79915],[77.15165,8.79665],[77.15463,8.79437],[77.156,8.79695],[77.15992,8.7921],[77.16862,8.78845],[77.17506,8.78278],[77.19155,8.77265],[77.19972,8.77179],[77.19967,8.76976],[77.20496,8.76913],[77.20993,8.76534],[77.21871,8.76936],[77.21451,8.77489],[77.21391,8.77944],[77.21999,8.77899],[77.22429,8.78362],[77.22971,8.78459],[77.23129,8.79082],[77.23054,8.79783],[77.23275,8.80164],[77.23198,8.80773],[77.24252,8.80979],[77.24708,8.81484],[77.24714,8.82372],[77.25136,8.82712],[77.25309,8.83226],[77.25759,8.83522],[77.25883,8.83862],[77.26276,8.84199],[77.25848,8.85033],[77.25908,8.85317],[77.26171,8.85261],[77.26152,8.85651],[77.25557,8.86112],[77.25568,8.86315],[77.25864,8.86518],[77.25657,8.87757],[77.25456,8.87959],[77.24499,8.88007],[77.23766,8.88567],[77.2384,8.89212],[77.24024,8.89447],[77.23855,8.89774],[77.22795,8.90359],[77.22123,8.90395],[77.21824,8.91869],[77.21423,8.91733],[77.20998,8.9185],[77.20105,8.92456],[77.19473,8.92412],[77.1928,8.9262],[77.19248,8.92855],[77.19714,8.93543],[77.19389,8.94332],[77.19697,8.95169],[77.19629,8.95458],[77.1915,8.95916],[77.1907,8.96562],[77.18555,8.97018],[77.1782,8.9691],[77.17357,8.99123],[77.16167,8.99504],[77.15615,9.00383],[77.15685,9.0075],[77.15275,9.00719],[77.14935,9.00958],[77.15073,9.01489],[77.14656,9.02182],[77.15387,9.02243],[77.1611,9.02944],[77.16212,9.03323],[77.16039,9.03584],[77.16412,9.03841],[77.16747,9.0453],[77.18232,9.04742],[77.18759,9.04314],[77.19171,9.04353],[77.19746,9.04697],[77.19528,9.04934],[77.1969,9.0568],[77.20551,9.06617],[77.20814,9.07288],[77.20407,9.07165],[77.19016,9.07659],[77.17933,9.07633],[77.17297,9.07923],[77.16987,9.07758],[77.16702,9.07829],[77.16146,9.08226],[77.15992,9.08112],[77.15416,9.08192],[77.15449,9.08736],[77.15143,9.08427],[77.14518,9.08345],[77.14291,9.08536],[77.13124,9.08785],[77.12076,9.09467],[77.11113,9.09319],[77.10693,9.0949],[77.10309,9.09918],[77.09828,9.10029],[77.09725,9.10244],[77.08114,9.10927],[77.07914,9.11321],[77.07099,9.11285],[77.06727,9.11442],[77.06477,9.11938],[77.05764,9.11716],[77.05426,9.12734],[77.05079,9.12738],[77.04668,9.12319],[77.04041,9.12396],[77.02933,9.12923],[77.02651,9.12811],[77.01869,9.13062],[77.01637,9.13644],[77.00949,9.14032],[77.00466,9.1376],[76.99793,9.14016],[76.99415,9.13986],[76.98855,9.1455],[76.96787,9.15207],[76.96345,9.15204]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"56","area_level":"District","area_name":"Udham Singh Nagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.83026,29.36801],[78.82419,29.36638],[78.82215,29.35914],[78.80987,29.33941],[78.7999,29.33458],[78.80286,29.33125],[78.8012,29.32524],[78.80472,29.31925],[78.7982,29.31901],[78.79545,29.31471],[78.79591,29.31177],[78.78955,29.3153],[78.79054,29.31889],[78.7954,29.32501],[78.79309,29.32683],[78.79345,29.32817],[78.79052,29.33059],[78.78679,29.32611],[78.78525,29.32715],[78.77748,29.32573],[78.77333,29.32849],[78.77431,29.33198],[78.76655,29.3374],[78.76081,29.33293],[78.75376,29.33122],[78.75369,29.32732],[78.74955,29.32324],[78.75032,29.31735],[78.74508,29.31794],[78.74068,29.31579],[78.74067,29.32042],[78.73367,29.3219],[78.73577,29.31853],[78.73209,29.31756],[78.73134,29.31352],[78.73518,29.30654],[78.73445,29.30294],[78.72719,29.30551],[78.72299,29.30345],[78.71922,29.30703],[78.71837,29.30342],[78.72675,29.2978],[78.72843,29.29922],[78.73452,29.29957],[78.73614,29.29676],[78.76502,29.27931],[78.77321,29.27113],[78.77019,29.26704],[78.77383,29.26199],[78.78509,29.25365],[78.78815,29.25337],[78.78975,29.25496],[78.79189,29.25227],[78.79042,29.25017],[78.79077,29.2469],[78.79324,29.24453],[78.79841,29.24442],[78.80737,29.23668],[78.82008,29.23214],[78.8199,29.23374],[78.82243,29.23332],[78.82571,29.23611],[78.82787,29.23531],[78.83231,29.23675],[78.83816,29.24255],[78.83818,29.24109],[78.8413,29.23969],[78.83946,29.23679],[78.84337,29.23484],[78.84554,29.23677],[78.84954,29.23271],[78.85107,29.23682],[78.85537,29.23852],[78.85834,29.24184],[78.86217,29.23943],[78.85859,29.23299],[78.86304,29.23209],[78.86326,29.23031],[78.87069,29.22725],[78.87264,29.22759],[78.87261,29.23031],[78.87448,29.23025],[78.87423,29.22678],[78.87648,29.22553],[78.87176,29.22257],[78.87583,29.21902],[78.87947,29.21881],[78.88052,29.217],[78.87812,29.21571],[78.87854,29.21426],[78.88328,29.21131],[78.87828,29.20636],[78.8751,29.20651],[78.87522,29.20517],[78.88104,29.19992],[78.8855,29.20317],[78.89062,29.20118],[78.89128,29.19808],[78.88675,29.19508],[78.89006,29.19221],[78.89428,29.19189],[78.89636,29.19358],[78.89974,29.18588],[78.89457,29.18576],[78.89849,29.18181],[78.90317,29.18091],[78.90347,29.17824],[78.90683,29.18006],[78.90875,29.17856],[78.90167,29.16956],[78.90905,29.16354],[78.90801,29.16069],[78.90909,29.15732],[78.90637,29.15174],[78.91287,29.15438],[78.91545,29.15245],[78.91548,29.14994],[78.91205,29.14742],[78.91105,29.14443],[78.91623,29.14067],[78.91621,29.13773],[78.91876,29.13553],[78.90718,29.12741],[78.90633,29.12501],[78.92702,29.11813],[78.93464,29.12964],[78.94286,29.12617],[78.94375,29.12751],[78.95645,29.11989],[78.96417,29.1305],[78.97287,29.12691],[78.97492,29.13145],[78.97468,29.13595],[78.97755,29.1366],[78.97676,29.13855],[78.98234,29.14305],[78.98984,29.13949],[78.99128,29.13068],[78.99665,29.13012],[79.00424,29.1259],[79.00171,29.12226],[79.0035,29.11921],[79.00625,29.11828],[79.00817,29.11191],[79.01419,29.11662],[79.0267,29.11242],[79.03456,29.1177],[79.04063,29.12767],[79.03175,29.1281],[79.02732,29.13244],[79.01921,29.12934],[79.01692,29.13077],[79.01494,29.13395],[79.02111,29.14583],[79.01782,29.15384],[79.01908,29.15572],[79.02382,29.15555],[79.02978,29.14697],[79.03461,29.14407],[79.0374,29.14482],[79.03595,29.15309],[79.03937,29.15841],[79.03237,29.15913],[79.02912,29.16413],[79.03213,29.16843],[79.03584,29.16939],[79.03944,29.16857],[79.04538,29.16418],[79.0505,29.15693],[79.0537,29.15487],[79.05942,29.15542],[79.07487,29.15164],[79.09057,29.14339],[79.10139,29.1341],[79.1119,29.12792],[79.11946,29.12577],[79.12273,29.12734],[79.12492,29.13306],[79.12687,29.13268],[79.14189,29.12433],[79.14082,29.12226],[79.1434,29.12027],[79.15017,29.11867],[79.1535,29.11518],[79.15127,29.11327],[79.15245,29.10712],[79.15084,29.10341],[79.15318,29.10155],[79.14832,29.09914],[79.15153,29.0954],[79.15002,29.09451],[79.14996,29.09176],[79.14327,29.08668],[79.14342,29.08291],[79.14212,29.08194],[79.14181,29.07763],[79.14422,29.07203],[79.1425,29.06695],[79.14587,29.06457],[79.14513,29.06296],[79.14733,29.06226],[79.14876,29.05845],[79.15332,29.05686],[79.16191,29.04896],[79.168,29.04738],[79.17029,29.04861],[79.17511,29.04625],[79.1718,29.04506],[79.17192,29.04264],[79.16916,29.04238],[79.17085,29.03942],[79.168,29.03826],[79.16884,29.03577],[79.16751,29.0322],[79.1644,29.03222],[79.16497,29.02884],[79.16235,29.02921],[79.1622,29.02409],[79.16589,29.02024],[79.16528,29.01779],[79.16843,29.01942],[79.17582,29.01574],[79.17106,29.01187],[79.18094,29.01288],[79.18267,29.01605],[79.18595,29.01764],[79.19384,29.01559],[79.19089,29.01895],[79.19077,29.02318],[79.19426,29.01972],[79.19741,29.02138],[79.20365,29.02074],[79.21173,29.02756],[79.22203,29.01945],[79.23155,29.01512],[79.24495,29.01008],[79.25102,29.01024],[79.24775,29.00334],[79.25913,28.9924],[79.29233,28.97381],[79.29885,28.9728],[79.30727,28.96647],[79.30747,28.96787],[79.31033,28.96799],[79.31092,28.96999],[79.31268,28.96897],[79.31249,28.97131],[79.30986,28.97172],[79.31265,28.97498],[79.31106,28.97526],[79.3119,28.97706],[79.32146,28.9718],[79.33722,28.97213],[79.35627,28.9677],[79.3647,28.96807],[79.36517,28.97074],[79.36099,28.97193],[79.36309,28.97798],[79.36211,28.98145],[79.36763,28.98664],[79.37236,28.98747],[79.37239,28.9846],[79.37769,28.9757],[79.37714,28.97139],[79.38175,28.9698],[79.3821,28.96224],[79.38631,28.95319],[79.3853,28.95177],[79.39065,28.94739],[79.40281,28.95001],[79.40471,28.94921],[79.40433,28.95041],[79.4063,28.95001],[79.40615,28.95222],[79.40803,28.95193],[79.41583,28.94382],[79.41558,28.94137],[79.41901,28.94003],[79.41889,28.93298],[79.41584,28.92787],[79.42531,28.92296],[79.42795,28.91978],[79.42689,28.91618],[79.42487,28.91675],[79.427,28.91533],[79.42479,28.91545],[79.42692,28.91442],[79.42513,28.91437],[79.42539,28.91324],[79.42764,28.91269],[79.42511,28.91213],[79.42692,28.91128],[79.42428,28.90841],[79.42532,28.90522],[79.4222,28.90134],[79.42466,28.89743],[79.42294,28.89349],[79.42773,28.89298],[79.43099,28.8868],[79.42787,28.87653],[79.42501,28.87366],[79.42557,28.86642],[79.44172,28.86166],[79.44518,28.86383],[79.44584,28.8675],[79.45019,28.86772],[79.44979,28.87079],[79.45164,28.87163],[79.46194,28.86676],[79.46611,28.86777],[79.47057,28.86541],[79.47722,28.86457],[79.47892,28.86728],[79.47873,28.87114],[79.49683,28.87289],[79.50252,28.87055],[79.50992,28.86453],[79.5114,28.86722],[79.52178,28.86474],[79.52351,28.86712],[79.53304,28.86971],[79.53716,28.87694],[79.54166,28.88043],[79.54046,28.88193],[79.54219,28.88453],[79.54595,28.88558],[79.54791,28.89097],[79.54945,28.89008],[79.55494,28.89376],[79.55275,28.8958],[79.55648,28.89926],[79.57062,28.89253],[79.56999,28.88775],[79.57124,28.88646],[79.57755,28.88864],[79.57917,28.88618],[79.57835,28.88349],[79.58427,28.87918],[79.58019,28.87115],[79.58097,28.86616],[79.57349,28.85465],[79.57565,28.85045],[79.58436,28.84627],[79.58751,28.84999],[79.59155,28.8495],[79.5936,28.85204],[79.59712,28.85125],[79.60339,28.85472],[79.6039,28.85683],[79.61331,28.85283],[79.62138,28.86431],[79.62613,28.86662],[79.63092,28.86112],[79.63601,28.86681],[79.64486,28.86343],[79.64745,28.86702],[79.65349,28.86921],[79.65557,28.86841],[79.65605,28.86977],[79.66571,28.86557],[79.66342,28.86194],[79.66744,28.8597],[79.67212,28.85801],[79.67738,28.85927],[79.68189,28.85679],[79.68367,28.85532],[79.68231,28.85347],[79.68316,28.84997],[79.692,28.84788],[79.68996,28.84533],[79.69292,28.84591],[79.70667,28.84101],[79.70752,28.84417],[79.70625,28.84445],[79.70962,28.8511],[79.71855,28.84881],[79.71991,28.84567],[79.72058,28.85027],[79.7234,28.85289],[79.72271,28.85523],[79.72637,28.86097],[79.73652,28.85626],[79.73825,28.85876],[79.74565,28.85992],[79.74907,28.87177],[79.75925,28.87085],[79.76675,28.87493],[79.78344,28.87125],[79.78629,28.87341],[79.78861,28.87269],[79.79509,28.88526],[79.7998,28.88748],[79.8147,28.88369],[79.81383,28.88656],[79.81802,28.88781],[79.8293,28.88445],[79.82839,28.87782],[79.83308,28.87071],[79.83573,28.87143],[79.83538,28.87489],[79.84101,28.87602],[79.84468,28.87503],[79.84667,28.86874],[79.84577,28.86354],[79.8496,28.8593],[79.84505,28.85537],[79.84534,28.85111],[79.84063,28.84768],[79.838,28.84832],[79.83288,28.85532],[79.83074,28.85523],[79.82978,28.85324],[79.83245,28.84584],[79.83634,28.84294],[79.83678,28.83992],[79.83087,28.83778],[79.82727,28.84167],[79.82382,28.83901],[79.8279,28.83695],[79.83131,28.83076],[79.83717,28.83235],[79.83245,28.82354],[79.82915,28.82139],[79.82945,28.81814],[79.82604,28.81493],[79.82429,28.80727],[79.81897,28.80547],[79.8199,28.81216],[79.81645,28.81692],[79.80723,28.80566],[79.80673,28.80318],[79.80876,28.80001],[79.81394,28.79688],[79.81454,28.79889],[79.81281,28.80196],[79.81457,28.80261],[79.81995,28.79611],[79.82289,28.79563],[79.82432,28.79829],[79.82693,28.79497],[79.83081,28.79773],[79.83308,28.79682],[79.83433,28.79859],[79.83832,28.79753],[79.83986,28.80017],[79.83843,28.80122],[79.84033,28.80195],[79.83935,28.80308],[79.84543,28.80483],[79.84547,28.80075],[79.84934,28.79964],[79.85237,28.8019],[79.85059,28.80333],[79.85289,28.80613],[79.85031,28.80601],[79.85166,28.80883],[79.85076,28.81045],[79.84659,28.81044],[79.85294,28.81373],[79.85212,28.81566],[79.84661,28.81744],[79.84785,28.81953],[79.8463,28.82318],[79.84863,28.82515],[79.85407,28.82411],[79.85371,28.82603],[79.85083,28.82693],[79.85102,28.82855],[79.85387,28.82699],[79.85772,28.83064],[79.86142,28.83053],[79.85898,28.83166],[79.86061,28.83304],[79.85888,28.8338],[79.86266,28.83706],[79.86319,28.84022],[79.8647,28.83777],[79.86719,28.83954],[79.87025,28.83845],[79.87166,28.84014],[79.87461,28.83634],[79.87337,28.8363],[79.87435,28.83424],[79.87256,28.83156],[79.87573,28.83311],[79.87847,28.83031],[79.87961,28.83241],[79.87857,28.83356],[79.8834,28.83398],[79.88212,28.83693],[79.88822,28.83656],[79.88905,28.83404],[79.89391,28.83146],[79.89199,28.82561],[79.89404,28.82379],[79.89407,28.8204],[79.91453,28.81848],[79.9107,28.81247],[79.91078,28.8099],[79.91552,28.80427],[79.90554,28.80299],[79.87849,28.81483],[79.87348,28.80939],[79.8696,28.80834],[79.87007,28.80576],[79.87473,28.80236],[79.87226,28.79936],[79.87306,28.79728],[79.8833,28.79454],[79.88426,28.79],[79.89728,28.78623],[79.90136,28.78198],[79.90647,28.78196],[79.90982,28.7854],[79.91781,28.78236],[79.91935,28.78412],[79.91884,28.7865],[79.92378,28.78671],[79.92652,28.79001],[79.93982,28.78772],[79.92852,28.77902],[79.92408,28.77316],[79.92699,28.77097],[79.92734,28.76871],[79.93057,28.76802],[79.93323,28.76428],[79.93258,28.76272],[79.9432,28.75989],[79.94315,28.75798],[79.93872,28.75313],[79.93863,28.75038],[79.94359,28.74862],[79.94648,28.74236],[79.94369,28.73511],[79.94549,28.73058],[79.95416,28.72283],[80.03013,28.74863],[80.05227,28.77828],[80.05545,28.78125],[80.06174,28.78319],[80.05867,28.78839],[80.06488,28.79443],[80.0681,28.80284],[80.05922,28.8168],[80.05179,28.82037],[80.05979,28.82539],[80.06292,28.83467],[80.06536,28.8369],[80.05847,28.91663],[80.07717,28.94682],[80.07435,28.9488],[80.074,28.95344],[80.06995,28.95286],[80.06563,28.95954],[80.06098,28.95946],[80.0594,28.96095],[80.05976,28.96777],[80.05722,28.97005],[80.05562,28.97614],[80.05309,28.97912],[80.05303,28.98264],[80.05074,28.98271],[80.05177,28.98842],[80.05041,28.99207],[80.05498,28.9944],[80.05456,28.99772],[80.05828,29.00438],[80.05199,29.00855],[80.0478,29.02503],[80.0329,29.05188],[80.03125,29.06002],[80.02033,29.07857],[80.01488,29.09302],[80.00716,29.0739],[79.99751,29.06737],[79.98135,29.06484],[79.96596,29.04859],[79.94587,29.04328],[79.9379,29.04422],[79.92589,29.03653],[79.92327,29.0326],[79.9195,29.03051],[79.91528,29.03008],[79.91406,29.0311],[79.91468,29.03313],[79.91234,29.0333],[79.91159,29.02804],[79.90677,29.02532],[79.90632,29.01984],[79.90122,29.01635],[79.90106,29.01178],[79.89704,29.00903],[79.89732,29.00785],[79.90108,29.0085],[79.90288,29.0069],[79.89661,29.0045],[79.89361,29.001],[79.89617,28.9964],[79.89307,28.99454],[79.89599,28.99341],[79.89129,28.99213],[79.88951,28.99372],[79.88677,28.9929],[79.88622,28.996],[79.87951,28.99355],[79.87821,28.98993],[79.88126,28.98566],[79.87784,28.98553],[79.8776,28.98408],[79.88053,28.9833],[79.87805,28.97903],[79.87599,28.97839],[79.87254,28.97917],[79.87016,28.98164],[79.87163,28.98396],[79.8737,28.98354],[79.87327,28.98844],[79.87609,28.99145],[79.8747,28.9914],[79.87551,28.99286],[79.87373,28.99196],[79.86911,28.99596],[79.86443,29.00287],[79.86293,29.00979],[79.85764,29.01294],[79.84979,29.00966],[79.84781,29.00391],[79.84524,29.00475],[79.84638,29.00144],[79.84201,28.99613],[79.8379,28.99464],[79.83951,28.99851],[79.83734,29.0005],[79.83616,28.99777],[79.82941,28.99443],[79.82843,28.99584],[79.82481,28.99487],[79.82744,28.9891],[79.82424,28.99014],[79.81173,28.98483],[79.81263,28.99263],[79.80994,28.99358],[79.80805,28.99019],[79.8066,28.9903],[79.80635,28.99288],[79.79999,28.99947],[79.79324,28.99819],[79.79651,29.01352],[79.80208,29.01622],[79.8064,29.01635],[79.80025,29.02491],[79.79189,29.02289],[79.78938,29.02347],[79.79004,29.02634],[79.78857,29.02712],[79.77339,29.02523],[79.7717,29.02731],[79.77646,29.02766],[79.77715,29.03028],[79.77295,29.03086],[79.76885,29.03545],[79.76419,29.03694],[79.75421,29.03179],[79.74744,29.03206],[79.75048,29.02633],[79.74631,29.02554],[79.72509,29.02679],[79.72015,29.03098],[79.71059,29.03103],[79.69447,29.04477],[79.6929,29.05314],[79.68278,29.06299],[79.67384,29.06951],[79.66482,29.06829],[79.65342,29.07421],[79.65193,29.07739],[79.64872,29.0728],[79.64865,29.0698],[79.64551,29.07025],[79.63871,29.06292],[79.63409,29.06151],[79.63263,29.05467],[79.62752,29.05004],[79.61682,29.05141],[79.57926,29.051],[79.55926,29.05283],[79.41595,29.05144],[79.43563,29.08355],[79.40131,29.1146],[79.39249,29.12736],[79.3836,29.14418],[79.37535,29.15186],[79.3632,29.15619],[79.35205,29.16892],[79.30117,29.21508],[79.27715,29.23956],[79.25946,29.24222],[79.25165,29.24181],[79.22016,29.24796],[79.16286,29.26352],[79.14829,29.27129],[79.13435,29.27526],[79.12003,29.26921],[79.10795,29.25519],[79.09341,29.2594],[79.09594,29.26301],[79.09165,29.26815],[79.09037,29.27499],[79.07593,29.27791],[79.07377,29.27376],[79.06906,29.26992],[79.06439,29.2715],[79.0596,29.26876],[79.05522,29.26191],[79.04946,29.26166],[79.0438,29.2579],[79.04371,29.25562],[79.04177,29.25418],[79.04181,29.25931],[79.03909,29.26271],[79.04049,29.26396],[79.03472,29.26325],[79.03,29.26521],[79.02251,29.2755],[79.02225,29.2821],[79.01858,29.28368],[79.01246,29.28975],[79.0161,29.29447],[79.02953,29.30539],[79.02295,29.30855],[79.02846,29.31349],[79.02675,29.31817],[79.01866,29.32541],[79.01445,29.32262],[79.00823,29.32507],[78.99948,29.31844],[78.99265,29.32346],[78.98814,29.32113],[78.98904,29.31962],[78.98587,29.31651],[78.95639,29.31792],[78.95819,29.32118],[78.95506,29.32447],[78.95344,29.32411],[78.94757,29.32941],[78.93036,29.33556],[78.92884,29.34022],[78.92702,29.34122],[78.91851,29.34143],[78.9132,29.34412],[78.89973,29.34556],[78.89286,29.34554],[78.88622,29.34182],[78.87911,29.35164],[78.87575,29.34677],[78.86968,29.34505],[78.86477,29.34949],[78.86119,29.34904],[78.85837,29.35062],[78.8577,29.34931],[78.85457,29.34964],[78.8541,29.34773],[78.84902,29.34435],[78.84024,29.34597],[78.83576,29.35046],[78.83074,29.35149],[78.82718,29.35462],[78.82834,29.35967],[78.82636,29.36143],[78.8276,29.36377],[78.82586,29.36555],[78.83026,29.36801]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"560","area_level":"District","area_name":"Kottayam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.62795,9.85298],[76.62886,9.85558],[76.62488,9.85717],[76.61906,9.85622],[76.61559,9.8521],[76.61132,9.85397],[76.60912,9.84902],[76.61546,9.84095],[76.6156,9.83797],[76.611,9.83893],[76.60948,9.84187],[76.60754,9.84028],[76.60494,9.8407],[76.60349,9.84529],[76.59914,9.84643],[76.59293,9.846],[76.59357,9.84478],[76.59159,9.84207],[76.58942,9.84492],[76.58694,9.84188],[76.58004,9.84304],[76.58216,9.83696],[76.5809,9.83587],[76.58203,9.82725],[76.58069,9.82243],[76.57574,9.82006],[76.56697,9.82516],[76.56531,9.82442],[76.56366,9.81953],[76.56093,9.81944],[76.56146,9.8178],[76.55889,9.81538],[76.55903,9.81014],[76.55613,9.80296],[76.54842,9.80192],[76.54687,9.79986],[76.54454,9.80086],[76.54264,9.80762],[76.54473,9.81331],[76.53878,9.81336],[76.53895,9.82309],[76.52897,9.82589],[76.52696,9.82511],[76.52428,9.82702],[76.51986,9.82422],[76.51719,9.83324],[76.51952,9.83572],[76.51436,9.84299],[76.51486,9.84875],[76.5096,9.85113],[76.50237,9.8499],[76.4981,9.85144],[76.4857,9.84636],[76.4829,9.84282],[76.48057,9.84352],[76.48034,9.84651],[76.47375,9.84166],[76.46033,9.847],[76.46133,9.85088],[76.45396,9.84142],[76.44962,9.84089],[76.44609,9.83467],[76.4289,9.82522],[76.42137,9.82339],[76.41921,9.82485],[76.4143,9.82234],[76.41162,9.82802],[76.40819,9.82739],[76.40582,9.83038],[76.39451,9.83069],[76.38842,9.84436],[76.38041,9.84303],[76.3728,9.83672],[76.37769,9.83203],[76.38159,9.81841],[76.36731,9.79997],[76.36497,9.7936],[76.36614,9.78728],[76.37092,9.77717],[76.37176,9.77037],[76.3807,9.75144],[76.38024,9.72782],[76.3757,9.69738],[76.40264,9.68592],[76.39889,9.67166],[76.39651,9.65385],[76.39965,9.63981],[76.3922,9.5477],[76.40465,9.55389],[76.40444,9.55946],[76.41411,9.56334],[76.41527,9.55839],[76.42273,9.55585],[76.4265,9.54963],[76.4384,9.5527],[76.43855,9.55421],[76.44856,9.55751],[76.46618,9.56165],[76.46548,9.54216],[76.47936,9.5376],[76.48032,9.50736],[76.48172,9.50869],[76.48936,9.5082],[76.49539,9.50715],[76.49813,9.50373],[76.50804,9.50436],[76.51076,9.49999],[76.50898,9.49874],[76.50845,9.48988],[76.50687,9.48927],[76.50913,9.47816],[76.50604,9.47658],[76.50566,9.46747],[76.49786,9.45416],[76.49787,9.44885],[76.49499,9.44428],[76.49736,9.4405],[76.50262,9.44016],[76.50282,9.43853],[76.50799,9.43854],[76.51143,9.43671],[76.50451,9.42985],[76.5062,9.42907],[76.50669,9.42634],[76.50549,9.42376],[76.50875,9.41951],[76.50974,9.42004],[76.50598,9.41239],[76.50729,9.40778],[76.50654,9.40394],[76.51644,9.40057],[76.51589,9.40756],[76.51749,9.40886],[76.52561,9.40883],[76.52624,9.41262],[76.53075,9.41298],[76.53109,9.4168],[76.53589,9.41717],[76.53752,9.41451],[76.54031,9.42071],[76.54349,9.42093],[76.54344,9.42312],[76.54889,9.42206],[76.55348,9.42503],[76.55528,9.4133],[76.55943,9.41144],[76.56472,9.41083],[76.5791,9.42234],[76.59075,9.41866],[76.59336,9.41288],[76.59673,9.42143],[76.59218,9.42389],[76.59314,9.43602],[76.59062,9.44452],[76.59155,9.44875],[76.5947,9.44707],[76.59768,9.45079],[76.60458,9.45057],[76.60295,9.45778],[76.60992,9.45477],[76.60932,9.46032],[76.61655,9.46136],[76.61994,9.45977],[76.62599,9.46181],[76.6272,9.47179],[76.6316,9.4719],[76.63514,9.46258],[76.641,9.46825],[76.64248,9.47916],[76.64833,9.47834],[76.65103,9.48138],[76.65969,9.48268],[76.66722,9.48253],[76.67457,9.48019],[76.67478,9.48233],[76.67884,9.48151],[76.67991,9.48299],[76.68908,9.47732],[76.6957,9.47831],[76.70015,9.47704],[76.7034,9.46539],[76.70803,9.45789],[76.70825,9.45428],[76.72231,9.46504],[76.73129,9.46642],[76.72983,9.46947],[76.73342,9.47533],[76.73801,9.47633],[76.74384,9.47398],[76.7457,9.47475],[76.74763,9.47341],[76.74669,9.47218],[76.74872,9.46905],[76.7489,9.46293],[76.75072,9.46492],[76.75216,9.463],[76.7504,9.46142],[76.75213,9.45832],[76.75129,9.45513],[76.74862,9.4555],[76.74872,9.45231],[76.7544,9.45391],[76.76162,9.44495],[76.7614,9.44208],[76.76523,9.43669],[76.76687,9.437],[76.76842,9.4415],[76.78293,9.44871],[76.78756,9.44887],[76.78933,9.44675],[76.79273,9.44668],[76.79326,9.44961],[76.79195,9.45102],[76.79415,9.4539],[76.79917,9.45147],[76.80029,9.4588],[76.80333,9.45515],[76.81871,9.4553],[76.82338,9.44578],[76.82625,9.44663],[76.82897,9.45239],[76.83287,9.45238],[76.83535,9.44968],[76.84506,9.44968],[76.84883,9.44552],[76.85283,9.44967],[76.85187,9.45246],[76.85361,9.45392],[76.85176,9.45462],[76.85415,9.45727],[76.85699,9.45367],[76.88243,9.44443],[76.90459,9.43164],[76.90541,9.42914],[76.90979,9.42678],[76.91116,9.42341],[76.91947,9.42587],[76.92313,9.42409],[76.92437,9.42234],[76.9223,9.41706],[76.92451,9.41561],[76.93219,9.41805],[76.93624,9.42131],[76.94731,9.41927],[76.95104,9.42075],[76.9589,9.42047],[76.95976,9.42259],[76.96821,9.4252],[76.97362,9.42234],[76.97609,9.42494],[76.98438,9.42391],[76.98409,9.42682],[76.98136,9.42581],[76.97559,9.42809],[76.97416,9.42653],[76.97204,9.42705],[76.97282,9.43072],[76.96863,9.43117],[76.96666,9.43331],[76.9628,9.4311],[76.96461,9.42905],[76.96231,9.42578],[76.95385,9.43028],[76.95496,9.43381],[76.95378,9.43496],[76.94754,9.43433],[76.9483,9.43113],[76.94577,9.43092],[76.9437,9.42854],[76.9411,9.43285],[76.9448,9.43516],[76.93983,9.44417],[76.95184,9.45032],[76.95537,9.45757],[76.95856,9.45832],[76.95843,9.46144],[76.96315,9.46479],[76.96904,9.46463],[76.97199,9.46727],[76.97479,9.46632],[76.98293,9.46792],[76.98463,9.47058],[76.98463,9.47609],[76.98179,9.48339],[76.98406,9.48651],[76.97803,9.49804],[76.97443,9.50157],[76.96967,9.50111],[76.96909,9.50454],[76.96281,9.50881],[76.96081,9.50799],[76.96111,9.50545],[76.95667,9.50282],[76.95893,9.50058],[76.95572,9.4969],[76.95476,9.49191],[76.95006,9.49001],[76.9366,9.50405],[76.92977,9.50184],[76.92786,9.50486],[76.92462,9.50482],[76.92389,9.50707],[76.91852,9.50991],[76.91924,9.51112],[76.90401,9.52124],[76.90595,9.52377],[76.90436,9.52514],[76.90474,9.52752],[76.90224,9.52705],[76.9035,9.52918],[76.90288,9.53653],[76.88766,9.53771],[76.89081,9.54598],[76.88823,9.55043],[76.88836,9.55557],[76.88516,9.56129],[76.88709,9.56512],[76.88591,9.57734],[76.88288,9.58148],[76.889,9.58562],[76.89518,9.58657],[76.89177,9.59922],[76.89217,9.60468],[76.88927,9.60654],[76.89171,9.61014],[76.88926,9.60884],[76.88758,9.61019],[76.89119,9.61578],[76.88711,9.61879],[76.88696,9.62046],[76.8924,9.6217],[76.89093,9.62923],[76.89529,9.63378],[76.90307,9.63398],[76.90967,9.62656],[76.93009,9.61445],[76.93004,9.61734],[76.93487,9.62186],[76.93159,9.62813],[76.92246,9.63625],[76.91831,9.64318],[76.91948,9.64722],[76.92162,9.64624],[76.92225,9.64987],[76.92519,9.64958],[76.9272,9.65353],[76.91282,9.66511],[76.91206,9.66989],[76.903,9.6763],[76.90388,9.68327],[76.90204,9.68877],[76.89744,9.69704],[76.89697,9.70093],[76.89097,9.70923],[76.88922,9.71667],[76.86881,9.72874],[76.8672,9.73588],[76.86048,9.73049],[76.84871,9.74042],[76.84313,9.75173],[76.83898,9.75605],[76.82737,9.76391],[76.82769,9.77012],[76.81471,9.78018],[76.80813,9.78962],[76.77862,9.80833],[76.77004,9.80962],[76.75441,9.81763],[76.74967,9.81462],[76.75053,9.80627],[76.74218,9.80368],[76.72997,9.81238],[76.7257,9.81166],[76.7103,9.81984],[76.71027,9.82208],[76.69904,9.82558],[76.6956,9.83379],[76.69068,9.83461],[76.68491,9.83336],[76.6824,9.83917],[76.67614,9.83919],[76.67473,9.84281],[76.66789,9.84388],[76.66321,9.83919],[76.64622,9.84076],[76.62795,9.84889],[76.62795,9.85298]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"561","area_level":"District","area_name":"Kozhikode","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.78206,11.79768],[75.77666,11.802],[75.75733,11.80587],[75.75191,11.80458],[75.74581,11.79904],[75.75295,11.79532],[75.7534,11.79231],[75.7573,11.78864],[75.75,11.78206],[75.7456,11.7868],[75.73759,11.78698],[75.73666,11.78309],[75.73773,11.7815],[75.72909,11.78036],[75.72679,11.78741],[75.72301,11.79241],[75.71657,11.79684],[75.71236,11.79611],[75.6986,11.79955],[75.69149,11.79954],[75.69137,11.794],[75.68817,11.7892],[75.68356,11.77538],[75.66912,11.7704],[75.66555,11.75852],[75.65932,11.75834],[75.6575,11.75512],[75.65509,11.75616],[75.65071,11.75016],[75.64842,11.75003],[75.6481,11.74588],[75.64628,11.74717],[75.64461,11.74356],[75.64131,11.74418],[75.63545,11.73646],[75.62955,11.73882],[75.62914,11.73747],[75.62682,11.73803],[75.62695,11.73638],[75.62583,11.73707],[75.62267,11.73346],[75.62424,11.73259],[75.62352,11.73095],[75.6158,11.72444],[75.61112,11.72542],[75.60726,11.71862],[75.60756,11.72223],[75.60619,11.7226],[75.60275,11.71863],[75.59913,11.71895],[75.59572,11.71334],[75.58741,11.71225],[75.59319,11.70844],[75.59226,11.69923],[75.59332,11.69727],[75.60016,11.69661],[75.60283,11.69417],[75.60389,11.69048],[75.60106,11.68705],[75.59254,11.68855],[75.58853,11.68776],[75.57913,11.67981],[75.56999,11.67508],[75.56566,11.68044],[75.5619,11.68172],[75.56356,11.6943],[75.55684,11.69837],[75.55318,11.70338],[75.54423,11.70454],[75.54225,11.70209],[75.54163,11.69601],[75.53623,11.69354],[75.56062,11.64293],[75.58269,11.58527],[75.58979,11.56247],[75.59563,11.55177],[75.59495,11.54968],[75.5991,11.53737],[75.61453,11.49764],[75.61535,11.49472],[75.61406,11.49279],[75.61747,11.48873],[75.61929,11.48058],[75.61785,11.47841],[75.61913,11.48062],[75.61729,11.47944],[75.61764,11.47788],[75.61646,11.47867],[75.61678,11.47641],[75.6209,11.47293],[75.62238,11.47298],[75.62161,11.47473],[75.6264,11.47312],[75.63256,11.46574],[75.63249,11.46271],[75.63419,11.46103],[75.63783,11.46209],[75.63779,11.46485],[75.64412,11.46625],[75.64523,11.4682],[75.65212,11.46652],[75.66014,11.46176],[75.66373,11.46246],[75.67476,11.45209],[75.67489,11.45045],[75.67755,11.44958],[75.67894,11.45109],[75.68161,11.44962],[75.69767,11.42488],[75.71271,11.39316],[75.71529,11.39219],[75.73185,11.35581],[75.73611,11.33959],[75.73224,11.33473],[75.73565,11.33211],[75.73652,11.32472],[75.74132,11.32122],[75.74496,11.32151],[75.74701,11.31837],[75.76413,11.27139],[75.76758,11.25925],[75.76655,11.25854],[75.76811,11.25804],[75.77542,11.23706],[75.78039,11.22835],[75.77913,11.22731],[75.77976,11.22407],[75.79784,11.17729],[75.80084,11.16532],[75.80463,11.1611],[75.80203,11.16004],[75.80391,11.15752],[75.80251,11.15603],[75.80324,11.15505],[75.8059,11.15648],[75.80873,11.15165],[75.81388,11.14899],[75.82562,11.12383],[75.83049,11.12576],[75.83348,11.13172],[75.84612,11.14293],[75.85144,11.14252],[75.85756,11.13817],[75.85751,11.14625],[75.85226,11.15375],[75.85962,11.15859],[75.86079,11.16682],[75.86485,11.16953],[75.86497,11.17141],[75.87053,11.17245],[75.87069,11.16938],[75.87794,11.16627],[75.88181,11.17213],[75.88687,11.17064],[75.88745,11.17347],[75.88591,11.17564],[75.88814,11.1784],[75.88594,11.17916],[75.88489,11.18486],[75.88123,11.18493],[75.88054,11.18269],[75.87589,11.18239],[75.87489,11.18467],[75.87608,11.18509],[75.87202,11.18769],[75.86502,11.18787],[75.85891,11.19421],[75.85708,11.19403],[75.85761,11.19536],[75.86,11.19505],[75.86033,11.1987],[75.8598,11.20042],[75.85557,11.20156],[75.85767,11.2079],[75.8607,11.2046],[75.86972,11.20749],[75.87594,11.21736],[75.87777,11.22314],[75.88879,11.2292],[75.89718,11.22998],[75.90062,11.24254],[75.90523,11.2416],[75.91296,11.23649],[75.9181,11.23635],[75.92704,11.24599],[75.93907,11.24911],[75.95192,11.25003],[75.95798,11.25237],[75.96663,11.26356],[75.97476,11.26916],[75.99546,11.2541],[75.99999,11.25877],[76.00921,11.25975],[76.00977,11.26297],[76.01319,11.26537],[76.01371,11.26801],[76.02391,11.26892],[76.03282,11.26606],[76.03615,11.26798],[76.04515,11.26477],[76.04511,11.26719],[76.04909,11.26737],[76.05172,11.27174],[76.05586,11.27525],[76.05784,11.27496],[76.06117,11.28242],[76.07158,11.28639],[76.07241,11.28858],[76.06946,11.29405],[76.0844,11.30449],[76.08351,11.30744],[76.09198,11.31144],[76.09386,11.31021],[76.1036,11.31123],[76.10697,11.31519],[76.11382,11.31446],[76.11831,11.31934],[76.1191,11.32244],[76.11861,11.32622],[76.11507,11.32985],[76.11755,11.33715],[76.11314,11.33861],[76.11134,11.33746],[76.09874,11.34233],[76.09206,11.35261],[76.0959,11.36318],[76.10209,11.36844],[76.09924,11.37275],[76.0975,11.38262],[76.10007,11.39015],[76.09942,11.39589],[76.1062,11.40227],[76.10544,11.41009],[76.11299,11.41097],[76.11786,11.40846],[76.1217,11.4113],[76.12212,11.41538],[76.12921,11.42144],[76.13108,11.42702],[76.13855,11.42025],[76.14214,11.41978],[76.14321,11.42568],[76.146,11.42934],[76.14001,11.43864],[76.13982,11.44322],[76.14284,11.45163],[76.13563,11.46004],[76.1321,11.46113],[76.13066,11.46453],[76.12573,11.46648],[76.12293,11.47382],[76.11166,11.47613],[76.1058,11.48246],[76.09231,11.4824],[76.08705,11.48735],[76.08755,11.49043],[76.09302,11.49361],[76.08873,11.50609],[76.09052,11.51005],[76.0886,11.51317],[76.08264,11.51477],[76.07838,11.52167],[76.07382,11.52288],[76.07186,11.51931],[76.06764,11.51761],[76.06714,11.51505],[76.06251,11.50991],[76.05701,11.50869],[76.05623,11.50592],[76.04862,11.50374],[76.04523,11.50696],[76.04359,11.50457],[76.03705,11.50298],[76.0357,11.50861],[76.03353,11.51047],[76.0274,11.51336],[76.01835,11.51439],[76.01542,11.51832],[76.00078,11.5261],[75.99576,11.53345],[75.98158,11.53965],[75.973,11.5463],[75.97214,11.54926],[75.96402,11.55757],[75.95781,11.56069],[75.95806,11.56843],[75.95639,11.57328],[75.95735,11.57539],[75.95111,11.58172],[75.94382,11.58191],[75.93941,11.58431],[75.93656,11.59092],[75.92818,11.59054],[75.92531,11.59483],[75.92431,11.59391],[75.9177,11.59586],[75.9144,11.60046],[75.90916,11.60081],[75.90562,11.61214],[75.90179,11.61557],[75.90143,11.61904],[75.89797,11.62288],[75.89983,11.63698],[75.897,11.64277],[75.90341,11.65165],[75.90272,11.65703],[75.90533,11.66154],[75.9029,11.67152],[75.90009,11.67605],[75.90163,11.67841],[75.90528,11.67949],[75.90733,11.68324],[75.91223,11.68481],[75.91521,11.68767],[75.91538,11.69047],[75.9053,11.69489],[75.9002,11.69922],[75.88233,11.69911],[75.87534,11.70433],[75.87267,11.70139],[75.86252,11.70435],[75.85072,11.70297],[75.84536,11.70714],[75.84561,11.71424],[75.83734,11.71911],[75.83215,11.72012],[75.82763,11.72559],[75.82808,11.72706],[75.82425,11.72745],[75.82151,11.73337],[75.81921,11.73406],[75.81426,11.73986],[75.81144,11.74003],[75.81011,11.74292],[75.79083,11.74347],[75.79812,11.74744],[75.7996,11.75002],[75.79911,11.75341],[75.79414,11.75358],[75.78329,11.7607],[75.78387,11.76347],[75.7881,11.76509],[75.7898,11.77215],[75.78698,11.77523],[75.79175,11.77859],[75.79385,11.78486],[75.79352,11.79021],[75.78206,11.79768]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"562","area_level":"District","area_name":"Malappuram","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.23854,11.52654],[76.23394,11.52875],[76.23055,11.52533],[76.22415,11.50968],[76.22117,11.51162],[76.19924,11.50667],[76.19129,11.49845],[76.18938,11.49237],[76.18482,11.48836],[76.18474,11.48463],[76.1817,11.484],[76.18684,11.47896],[76.18584,11.47346],[76.16958,11.46614],[76.1639,11.45824],[76.16106,11.45743],[76.15909,11.45937],[76.15858,11.45709],[76.153,11.453],[76.14791,11.45364],[76.14298,11.45184],[76.13982,11.44322],[76.14001,11.43864],[76.146,11.42934],[76.14321,11.42568],[76.14214,11.41978],[76.13855,11.42025],[76.13108,11.42702],[76.12921,11.42144],[76.12212,11.41538],[76.1217,11.4113],[76.11786,11.40846],[76.11299,11.41097],[76.10544,11.41009],[76.10646,11.403],[76.09942,11.39589],[76.10007,11.39015],[76.09748,11.38293],[76.09924,11.37275],[76.10209,11.36844],[76.0959,11.36318],[76.09206,11.35261],[76.09874,11.34233],[76.11134,11.33746],[76.11314,11.33861],[76.11755,11.33715],[76.11507,11.32985],[76.11861,11.32622],[76.1191,11.32244],[76.11831,11.31934],[76.11382,11.31446],[76.10697,11.31519],[76.1036,11.31123],[76.09386,11.31021],[76.09198,11.31144],[76.08351,11.30744],[76.0844,11.30449],[76.06946,11.29405],[76.07241,11.28858],[76.07158,11.28639],[76.06117,11.28242],[76.05784,11.27496],[76.05586,11.27525],[76.05172,11.27174],[76.04909,11.26737],[76.04511,11.26719],[76.04515,11.26477],[76.03615,11.26798],[76.03282,11.26606],[76.02391,11.26892],[76.01371,11.26801],[76.01319,11.26537],[76.00977,11.26297],[76.00921,11.25975],[75.99999,11.25877],[75.99546,11.2541],[75.97476,11.26916],[75.96663,11.26356],[75.95798,11.25237],[75.95192,11.25003],[75.93907,11.24911],[75.92704,11.24599],[75.9181,11.23635],[75.91296,11.23649],[75.90523,11.2416],[75.90062,11.24254],[75.89718,11.22998],[75.88879,11.2292],[75.87777,11.22314],[75.87594,11.21736],[75.86972,11.20749],[75.8607,11.2046],[75.85767,11.2079],[75.85557,11.20156],[75.8598,11.20042],[75.86033,11.1987],[75.86,11.19505],[75.85761,11.19536],[75.85708,11.19403],[75.85891,11.19421],[75.86502,11.18787],[75.87202,11.18769],[75.87608,11.18509],[75.87489,11.18467],[75.87589,11.18239],[75.88054,11.18269],[75.88123,11.18493],[75.88489,11.18486],[75.88594,11.17916],[75.88814,11.1784],[75.88591,11.17564],[75.88745,11.17347],[75.88687,11.17064],[75.88181,11.17213],[75.87794,11.16627],[75.87069,11.16938],[75.87053,11.17245],[75.86497,11.17141],[75.86485,11.16953],[75.86079,11.16682],[75.85962,11.15859],[75.85226,11.15375],[75.85751,11.14625],[75.85756,11.13817],[75.85144,11.14252],[75.84612,11.14293],[75.83348,11.13172],[75.83151,11.12671],[75.82505,11.12286],[75.82838,11.11914],[75.8467,11.06287],[75.85136,11.03783],[75.86241,11.00141],[75.8628,10.99453],[75.89084,10.87902],[75.9101,10.78613],[75.91119,10.78458],[75.9136,10.7849],[75.91315,10.78083],[75.91736,10.77392],[75.9209,10.76252],[75.95616,10.68536],[75.96352,10.68933],[75.96275,10.69094],[75.96617,10.69202],[75.96704,10.69406],[75.97049,10.69111],[75.97447,10.69354],[75.97537,10.69141],[75.97713,10.69185],[75.97732,10.69587],[75.98027,10.69388],[75.98289,10.68688],[75.98404,10.6874],[75.98307,10.68894],[75.98632,10.69096],[76.00124,10.69427],[76.00732,10.68961],[76.01215,10.69053],[76.01988,10.69734],[76.03427,10.70062],[76.03412,10.70348],[76.03704,10.70741],[76.03983,10.70738],[76.04126,10.70535],[76.04348,10.70714],[76.04441,10.70518],[76.04824,10.70684],[76.04876,10.70458],[76.05155,10.70444],[76.05388,10.71268],[76.06107,10.71974],[76.0593,10.72756],[76.06487,10.72589],[76.06512,10.72406],[76.06701,10.72345],[76.06775,10.72566],[76.06602,10.72597],[76.06559,10.72928],[76.06924,10.73003],[76.06799,10.73125],[76.06948,10.73279],[76.06899,10.73767],[76.06674,10.73847],[76.06382,10.74353],[76.05414,10.73993],[76.05314,10.7413],[76.04888,10.74091],[76.04658,10.74234],[76.04477,10.7469],[76.04674,10.74762],[76.04716,10.7517],[76.03969,10.7558],[76.04098,10.76304],[76.04052,10.76706],[76.03916,10.76733],[76.04268,10.79597],[76.04428,10.79672],[76.04515,10.79508],[76.04915,10.79702],[76.04998,10.80089],[76.0475,10.80139],[76.04592,10.79999],[76.04601,10.80363],[76.04199,10.80496],[76.04023,10.8035],[76.03816,10.80499],[76.03757,10.80739],[76.03488,10.80901],[76.03717,10.81269],[76.03675,10.81581],[76.03276,10.81703],[76.03081,10.82137],[76.02929,10.82046],[76.02722,10.8224],[76.02984,10.82502],[76.02935,10.82675],[76.03396,10.82754],[76.03203,10.83163],[76.03768,10.83815],[76.04165,10.84752],[76.04464,10.84879],[76.05043,10.84732],[76.05971,10.83986],[76.06915,10.83812],[76.08159,10.84017],[76.09038,10.83966],[76.09824,10.84237],[76.10283,10.84735],[76.10348,10.86134],[76.10213,10.86844],[76.10353,10.87176],[76.1121,10.86665],[76.11507,10.88186],[76.13117,10.87884],[76.13077,10.89652],[76.13667,10.89609],[76.14445,10.8897],[76.15078,10.89028],[76.15807,10.90022],[76.15959,10.91036],[76.16993,10.91515],[76.17142,10.91439],[76.17429,10.9058],[76.18291,10.90988],[76.18908,10.90987],[76.18666,10.90111],[76.18837,10.89873],[76.19237,10.89734],[76.2055,10.8981],[76.20716,10.90308],[76.21125,10.90745],[76.21212,10.91261],[76.21584,10.91481],[76.21805,10.90732],[76.22714,10.89521],[76.22963,10.88794],[76.23272,10.8862],[76.24386,10.8876],[76.25176,10.88582],[76.26517,10.9084],[76.26579,10.9127],[76.26875,10.91552],[76.2717,10.91442],[76.279,10.91634],[76.28576,10.91355],[76.29636,10.91993],[76.30552,10.91124],[76.31895,10.91204],[76.32103,10.91088],[76.3208,10.90671],[76.32317,10.90547],[76.32843,10.90437],[76.33603,10.90585],[76.33498,10.91238],[76.33216,10.9138],[76.33224,10.92063],[76.33379,10.92331],[76.32179,10.93348],[76.31993,10.94197],[76.32072,10.95393],[76.32796,10.96463],[76.32559,10.96721],[76.32868,10.97339],[76.32738,10.97522],[76.32787,10.97898],[76.33263,10.98166],[76.33547,10.98111],[76.33709,10.97624],[76.34147,10.9772],[76.34632,10.97528],[76.35421,10.97493],[76.35856,10.97639],[76.36122,10.97323],[76.36338,10.97501],[76.36635,10.98549],[76.36905,10.98896],[76.36788,10.99264],[76.37085,10.99481],[76.37114,10.99722],[76.36493,10.99891],[76.35692,10.99758],[76.35366,10.99986],[76.35233,10.99955],[76.35144,10.99582],[76.34672,10.998],[76.34447,10.99698],[76.34176,10.9992],[76.33465,10.99851],[76.32422,11.00489],[76.32384,11.01229],[76.32643,11.01391],[76.32559,11.01624],[76.32789,11.01981],[76.32807,11.02421],[76.32447,11.02377],[76.3212,11.02707],[76.31938,11.02614],[76.31786,11.02928],[76.31174,11.02962],[76.3068,11.02688],[76.2984,11.02837],[76.29592,11.02467],[76.29205,11.02549],[76.28845,11.0214],[76.28432,11.0243],[76.28704,11.03291],[76.28882,11.03216],[76.28905,11.03347],[76.28534,11.03351],[76.28425,11.03539],[76.28577,11.03526],[76.28852,11.04016],[76.29256,11.04052],[76.29348,11.04517],[76.29577,11.04731],[76.2946,11.05056],[76.30906,11.04667],[76.31058,11.05047],[76.31605,11.05145],[76.31893,11.04939],[76.32052,11.05201],[76.32292,11.04969],[76.33127,11.05472],[76.33009,11.05708],[76.33283,11.05791],[76.33468,11.06271],[76.33356,11.06269],[76.33334,11.06635],[76.33055,11.0691],[76.32938,11.07388],[76.33176,11.07267],[76.33949,11.07773],[76.34412,11.08803],[76.34771,11.08836],[76.35101,11.09235],[76.35775,11.09326],[76.36049,11.09791],[76.36584,11.09723],[76.36894,11.09856],[76.37549,11.097],[76.38222,11.10034],[76.3875,11.09873],[76.38941,11.1033],[76.38542,11.10861],[76.3859,11.11152],[76.39913,11.11367],[76.40853,11.11854],[76.40844,11.13166],[76.41071,11.13931],[76.41349,11.14269],[76.41059,11.14485],[76.41032,11.1487],[76.40609,11.15367],[76.41108,11.16128],[76.41076,11.16464],[76.41368,11.17086],[76.40705,11.17857],[76.40591,11.18352],[76.40229,11.1876],[76.40626,11.19331],[76.40504,11.19768],[76.4065,11.20034],[76.40439,11.20108],[76.40458,11.20567],[76.40305,11.20769],[76.4047,11.20963],[76.40819,11.20838],[76.41374,11.21106],[76.4188,11.20873],[76.42663,11.20875],[76.43067,11.2029],[76.43348,11.20195],[76.43749,11.20434],[76.43936,11.20296],[76.44896,11.20547],[76.45309,11.23937],[76.4663,11.24512],[76.48711,11.25829],[76.52218,11.27134],[76.52626,11.28826],[76.54576,11.30031],[76.53936,11.30462],[76.5373,11.31404],[76.54997,11.33099],[76.54744,11.34547],[76.54786,11.35889],[76.50818,11.35412],[76.51512,11.35969],[76.51775,11.37156],[76.46208,11.38747],[76.41508,11.42263],[76.4187,11.44178],[76.39768,11.43502],[76.37855,11.44919],[76.37257,11.45101],[76.37149,11.45406],[76.3463,11.46415],[76.34223,11.46759],[76.33815,11.46188],[76.33558,11.46161],[76.32547,11.45333],[76.30515,11.46779],[76.29352,11.46568],[76.29047,11.46957],[76.29289,11.47022],[76.29418,11.47289],[76.28444,11.48292],[76.28157,11.47924],[76.27856,11.47922],[76.27562,11.47687],[76.27044,11.47716],[76.26769,11.48053],[76.2646,11.48089],[76.24757,11.46854],[76.24979,11.49832],[76.25229,11.5],[76.24852,11.50647],[76.24816,11.51649],[76.24422,11.51736],[76.24271,11.52112],[76.2384,11.52478],[76.23854,11.52654]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"563","area_level":"District","area_name":"Palakkad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.70709,11.23838],[76.69827,11.2396],[76.68422,11.23374],[76.68531,11.2312],[76.68296,11.23006],[76.68478,11.22773],[76.67824,11.22112],[76.65341,11.21012],[76.62972,11.19417],[76.6009,11.20659],[76.53385,11.19675],[76.51609,11.2043],[76.51048,11.21164],[76.50328,11.21161],[76.47237,11.20875],[76.47347,11.19493],[76.46662,11.19332],[76.45844,11.18768],[76.4519,11.19922],[76.43862,11.19896],[76.43936,11.20296],[76.4382,11.20408],[76.43455,11.20187],[76.43067,11.2029],[76.42848,11.20752],[76.42458,11.20928],[76.4188,11.20873],[76.41374,11.21106],[76.40819,11.20838],[76.4047,11.20963],[76.40305,11.20769],[76.40458,11.20567],[76.40439,11.20108],[76.4065,11.20034],[76.40504,11.19768],[76.40626,11.19331],[76.40229,11.1876],[76.40591,11.18352],[76.40705,11.17857],[76.41368,11.17086],[76.41076,11.16464],[76.41108,11.16128],[76.40609,11.15367],[76.41032,11.1487],[76.41059,11.14485],[76.41349,11.14269],[76.41071,11.13931],[76.40844,11.13166],[76.40853,11.11854],[76.39913,11.11367],[76.3859,11.11152],[76.38542,11.10861],[76.38941,11.1033],[76.3875,11.09873],[76.38222,11.10034],[76.37549,11.097],[76.36894,11.09856],[76.36584,11.09723],[76.36049,11.09791],[76.35775,11.09326],[76.35101,11.09235],[76.34771,11.08836],[76.34412,11.08803],[76.33949,11.07773],[76.33176,11.07267],[76.32938,11.07388],[76.33055,11.0691],[76.33334,11.06635],[76.33356,11.06269],[76.33468,11.06271],[76.33283,11.05791],[76.33009,11.05708],[76.33127,11.05472],[76.32292,11.04969],[76.32052,11.05201],[76.31893,11.04939],[76.31605,11.05145],[76.31058,11.05047],[76.30906,11.04667],[76.2946,11.05056],[76.29577,11.04731],[76.29348,11.04517],[76.29256,11.04052],[76.28852,11.04016],[76.28577,11.03526],[76.28415,11.03518],[76.28534,11.03351],[76.28905,11.03347],[76.28882,11.03216],[76.28704,11.03291],[76.28432,11.0243],[76.28845,11.0214],[76.29205,11.02549],[76.29592,11.02467],[76.2984,11.02837],[76.3068,11.02688],[76.31174,11.02962],[76.31786,11.02928],[76.31938,11.02614],[76.3212,11.02707],[76.32447,11.02377],[76.32807,11.02421],[76.32789,11.01981],[76.32559,11.01624],[76.32643,11.01391],[76.32384,11.01229],[76.32422,11.00489],[76.33465,10.99851],[76.34176,10.9992],[76.34447,10.99698],[76.34672,10.998],[76.35144,10.99582],[76.35233,10.99955],[76.35366,10.99986],[76.35692,10.99758],[76.36493,10.99891],[76.37114,10.99722],[76.37085,10.99481],[76.36788,10.99264],[76.36905,10.98896],[76.36635,10.98549],[76.36338,10.97501],[76.36122,10.97323],[76.35856,10.97639],[76.35421,10.97493],[76.34632,10.97528],[76.34147,10.9772],[76.33709,10.97624],[76.33547,10.98111],[76.33263,10.98166],[76.32787,10.97898],[76.32738,10.97522],[76.32868,10.97339],[76.32559,10.96721],[76.32796,10.96463],[76.32072,10.95393],[76.31993,10.94197],[76.32179,10.93348],[76.33379,10.92331],[76.33224,10.92063],[76.33216,10.9138],[76.33498,10.91238],[76.33603,10.90585],[76.32843,10.90437],[76.32317,10.90547],[76.3208,10.90671],[76.32103,10.91088],[76.31895,10.91204],[76.30552,10.91124],[76.29636,10.91993],[76.28576,10.91355],[76.279,10.91634],[76.2717,10.91442],[76.26875,10.91552],[76.26579,10.9127],[76.26517,10.9084],[76.25176,10.88582],[76.24386,10.8876],[76.23272,10.8862],[76.22963,10.88794],[76.22714,10.89521],[76.21805,10.90732],[76.21584,10.91481],[76.21212,10.91261],[76.21125,10.90745],[76.20716,10.90308],[76.2055,10.8981],[76.19237,10.89734],[76.18837,10.89873],[76.18666,10.90111],[76.18908,10.90987],[76.18291,10.90988],[76.17429,10.9058],[76.17142,10.91439],[76.16927,10.915],[76.15959,10.91036],[76.15807,10.90022],[76.15078,10.89028],[76.14445,10.8897],[76.13667,10.89609],[76.13077,10.89652],[76.13117,10.87884],[76.11583,10.88212],[76.1121,10.86665],[76.10475,10.87162],[76.10303,10.87125],[76.10283,10.84735],[76.10018,10.84349],[76.09038,10.83966],[76.08159,10.84017],[76.06915,10.83812],[76.05971,10.83986],[76.05318,10.84615],[76.04383,10.84859],[76.04003,10.84583],[76.03768,10.83815],[76.03203,10.83163],[76.03396,10.82754],[76.02935,10.82675],[76.02984,10.82502],[76.02722,10.82214],[76.02929,10.82046],[76.03081,10.82137],[76.03276,10.81703],[76.03675,10.81581],[76.03717,10.81269],[76.03488,10.80901],[76.03757,10.80739],[76.03816,10.80499],[76.04023,10.8035],[76.04199,10.80496],[76.04601,10.80363],[76.04592,10.79999],[76.0475,10.80139],[76.04998,10.80089],[76.04915,10.79702],[76.04515,10.79508],[76.04428,10.79672],[76.04268,10.79597],[76.03916,10.76733],[76.04052,10.76706],[76.04098,10.76304],[76.03969,10.7558],[76.04491,10.75368],[76.04747,10.75072],[76.04674,10.74762],[76.04477,10.7469],[76.04658,10.74234],[76.05414,10.73993],[76.06382,10.74353],[76.06674,10.73847],[76.06926,10.7373],[76.06948,10.73279],[76.06799,10.73125],[76.0696,10.72957],[76.07344,10.72977],[76.07549,10.72773],[76.08264,10.72622],[76.08477,10.72804],[76.08998,10.72701],[76.09644,10.72834],[76.09688,10.72614],[76.12263,10.7104],[76.13012,10.71632],[76.13291,10.72236],[76.13608,10.71955],[76.14479,10.71984],[76.15378,10.71162],[76.15438,10.71555],[76.15701,10.71799],[76.15657,10.71585],[76.16273,10.70604],[76.16432,10.70656],[76.16531,10.71136],[76.17176,10.71349],[76.17484,10.72311],[76.17694,10.72402],[76.17908,10.72895],[76.18131,10.72962],[76.18096,10.73423],[76.18962,10.74232],[76.19181,10.75008],[76.2,10.75299],[76.20264,10.75202],[76.20545,10.76855],[76.19503,10.77564],[76.19436,10.77772],[76.19136,10.77689],[76.18817,10.77988],[76.18788,10.78268],[76.19659,10.78241],[76.20348,10.7787],[76.21001,10.77771],[76.21925,10.78218],[76.22382,10.77978],[76.23053,10.77246],[76.2428,10.77324],[76.24663,10.76598],[76.24727,10.76142],[76.24492,10.75434],[76.24518,10.74999],[76.25215,10.74679],[76.26541,10.75298],[76.28111,10.75223],[76.28938,10.75536],[76.32602,10.74531],[76.3399,10.74909],[76.35401,10.74307],[76.358,10.74582],[76.36167,10.7581],[76.3649,10.76305],[76.37411,10.76662],[76.38299,10.76774],[76.38836,10.76509],[76.39382,10.74863],[76.39704,10.74634],[76.4033,10.74649],[76.41349,10.74974],[76.42053,10.74924],[76.43508,10.75132],[76.44312,10.74958],[76.469,10.75242],[76.47316,10.74893],[76.46776,10.74028],[76.47454,10.73837],[76.47949,10.73484],[76.47937,10.73251],[76.46399,10.72108],[76.46551,10.71825],[76.46324,10.71594],[76.46165,10.70819],[76.4569,10.69969],[76.45149,10.70205],[76.44013,10.69653],[76.44775,10.68647],[76.4514,10.6756],[76.45104,10.66582],[76.44872,10.66113],[76.4446,10.66374],[76.44154,10.66323],[76.43578,10.65583],[76.43424,10.65004],[76.42408,10.64935],[76.42464,10.64825],[76.42183,10.64721],[76.42392,10.6438],[76.41992,10.63832],[76.4197,10.63298],[76.41748,10.63038],[76.41896,10.62815],[76.41768,10.62756],[76.41995,10.62636],[76.41923,10.6227],[76.42114,10.62248],[76.4205,10.6291],[76.42553,10.62753],[76.42666,10.61999],[76.4248,10.61963],[76.42699,10.61907],[76.4281,10.61346],[76.42174,10.60603],[76.41331,10.60564],[76.41499,10.59984],[76.41316,10.59453],[76.40477,10.60184],[76.40117,10.596],[76.40848,10.58007],[76.41308,10.57845],[76.42029,10.57875],[76.4206,10.57248],[76.4254,10.5715],[76.42584,10.56625],[76.42909,10.56512],[76.43009,10.56275],[76.42971,10.55851],[76.43492,10.55549],[76.43896,10.55692],[76.43163,10.53728],[76.43308,10.53335],[76.43674,10.53013],[76.43961,10.52999],[76.44128,10.52272],[76.45062,10.52171],[76.45976,10.51075],[76.45923,10.50796],[76.46748,10.50259],[76.46687,10.4987],[76.47166,10.49652],[76.474,10.48709],[76.48046,10.48555],[76.48717,10.48634],[76.4894,10.47929],[76.49218,10.48032],[76.49332,10.47822],[76.5,10.47916],[76.5061,10.47346],[76.51429,10.47247],[76.52311,10.46882],[76.52531,10.46703],[76.52646,10.46294],[76.53212,10.45921],[76.53627,10.44833],[76.55263,10.44602],[76.55739,10.44345],[76.55645,10.43672],[76.55865,10.4341],[76.56738,10.43719],[76.58806,10.4354],[76.59512,10.42566],[76.59526,10.42175],[76.60141,10.41819],[76.60506,10.41078],[76.60378,10.40781],[76.60711,10.40463],[76.60683,10.39943],[76.61006,10.39852],[76.61529,10.39105],[76.61812,10.3903],[76.61894,10.38417],[76.62275,10.3793],[76.62493,10.379],[76.62862,10.38308],[76.63097,10.3811],[76.62878,10.3797],[76.62886,10.37727],[76.63258,10.37646],[76.63653,10.38105],[76.64062,10.38029],[76.64211,10.38221],[76.64562,10.38289],[76.65131,10.38052],[76.65452,10.37678],[76.65772,10.37987],[76.65767,10.38368],[76.66139,10.38562],[76.66854,10.37749],[76.66937,10.37418],[76.67962,10.36759],[76.6834,10.36758],[76.68683,10.36328],[76.69502,10.36181],[76.70311,10.36305],[76.70616,10.37006],[76.71313,10.37286],[76.71779,10.37296],[76.7312,10.36839],[76.74907,10.36617],[76.75498,10.36158],[76.76305,10.36221],[76.76535,10.3586],[76.76271,10.35311],[76.75753,10.34818],[76.75256,10.34756],[76.75389,10.34471],[76.75158,10.33836],[76.75454,10.33621],[76.7602,10.33684],[76.77179,10.33416],[76.77709,10.34201],[76.78751,10.33618],[76.79319,10.33592],[76.79938,10.33796],[76.80451,10.33692],[76.80569,10.34404],[76.8085,10.3465],[76.81198,10.34641],[76.81604,10.34887],[76.82803,10.33729],[76.83346,10.33669],[76.83766,10.33777],[76.83609,10.34044],[76.83631,10.34602],[76.8417,10.35062],[76.84194,10.35359],[76.84601,10.35731],[76.84516,10.36293],[76.84879,10.36823],[76.84389,10.37753],[76.83429,10.38325],[76.8305,10.38966],[76.82366,10.39506],[76.83403,10.40334],[76.8325,10.40568],[76.83358,10.40777],[76.83043,10.4113],[76.82464,10.41012],[76.82253,10.41456],[76.82317,10.41701],[76.81638,10.42352],[76.82833,10.45017],[76.83104,10.50003],[76.8431,10.53729],[76.84205,10.54078],[76.83519,10.5454],[76.83568,10.55787],[76.83914,10.56133],[76.83922,10.56475],[76.8344,10.5703],[76.83357,10.57436],[76.83754,10.58186],[76.83843,10.59599],[76.8374,10.59841],[76.83233,10.59928],[76.82601,10.59613],[76.81731,10.6032],[76.81573,10.60787],[76.81833,10.61115],[76.81631,10.61367],[76.8163,10.61686],[76.81145,10.62001],[76.8101,10.62418],[76.81497,10.62963],[76.81418,10.63586],[76.82113,10.63442],[76.83066,10.63762],[76.83928,10.6343],[76.8462,10.63583],[76.86066,10.63234],[76.86751,10.63325],[76.87346,10.63777],[76.88248,10.63971],[76.88374,10.65],[76.88092,10.65645],[76.88137,10.66126],[76.87814,10.66735],[76.8784,10.67503],[76.87748,10.67673],[76.86958,10.67678],[76.86754,10.67905],[76.86603,10.68531],[76.87084,10.69288],[76.86759,10.69478],[76.88221,10.71734],[76.88635,10.71863],[76.8903,10.71692],[76.89294,10.72146],[76.88864,10.72831],[76.8883,10.73247],[76.89616,10.74533],[76.89631,10.75198],[76.90108,10.75637],[76.90359,10.76111],[76.90258,10.77079],[76.90531,10.77143],[76.90753,10.77799],[76.90721,10.78269],[76.90063,10.80087],[76.90068,10.8073],[76.88899,10.80958],[76.87006,10.80833],[76.86526,10.8129],[76.86396,10.81727],[76.86048,10.81848],[76.85875,10.81667],[76.85258,10.81855],[76.8499,10.81725],[76.84817,10.8188],[76.84508,10.8261],[76.8464,10.82732],[76.84736,10.82633],[76.84855,10.83052],[76.85084,10.82958],[76.85319,10.83292],[76.85378,10.83896],[76.84878,10.84635],[76.84842,10.84939],[76.84168,10.85208],[76.83909,10.85634],[76.83194,10.86013],[76.83076,10.86993],[76.82832,10.87191],[76.81669,10.87274],[76.81434,10.87599],[76.81186,10.87583],[76.81146,10.87788],[76.80813,10.8768],[76.80122,10.88005],[76.7918,10.88111],[76.79092,10.88445],[76.78143,10.89042],[76.77661,10.88917],[76.77438,10.8901],[76.7679,10.88703],[76.76529,10.89118],[76.76125,10.89346],[76.75527,10.8932],[76.75241,10.89506],[76.75,10.89225],[76.74554,10.89268],[76.74079,10.89097],[76.73755,10.89588],[76.73168,10.89765],[76.72345,10.90345],[76.71783,10.90546],[76.7149,10.90861],[76.71264,10.90757],[76.70807,10.9101],[76.69521,10.91023],[76.67675,10.91806],[76.66206,10.92964],[76.65909,10.9305],[76.6558,10.93901],[76.66473,10.94348],[76.66583,10.94742],[76.6636,10.95093],[76.66748,10.95959],[76.66679,10.96833],[76.67389,10.97439],[76.68604,10.9892],[76.68546,10.9938],[76.69416,11.02156],[76.70912,11.03289],[76.71089,11.03872],[76.71542,11.04101],[76.72616,11.04114],[76.73242,11.03844],[76.7376,11.03974],[76.74929,11.03343],[76.7666,11.02909],[76.77365,11.03354],[76.79184,11.03736],[76.79315,11.0434],[76.80086,11.05397],[76.79846,11.05655],[76.79622,11.05585],[76.78779,11.0447],[76.77816,11.04209],[76.76894,11.04343],[76.76203,11.04798],[76.7607,11.05231],[76.75106,11.05541],[76.74613,11.05482],[76.74415,11.05707],[76.74575,11.06002],[76.74257,11.06334],[76.74377,11.06844],[76.74114,11.06973],[76.74104,11.07234],[76.74457,11.07248],[76.74571,11.07564],[76.74798,11.07432],[76.75014,11.07894],[76.75416,11.07779],[76.75453,11.08416],[76.75168,11.09319],[76.74658,11.09251],[76.74376,11.09899],[76.74117,11.09992],[76.73898,11.1043],[76.74077,11.10498],[76.74072,11.10919],[76.7453,11.10848],[76.74742,11.1112],[76.74753,11.12305],[76.74533,11.13019],[76.74705,11.13071],[76.7483,11.13584],[76.74622,11.13771],[76.74245,11.13323],[76.73931,11.13197],[76.7404,11.1337],[76.73503,11.13639],[76.73166,11.13145],[76.72875,11.13045],[76.72871,11.1339],[76.72637,11.13385],[76.72475,11.13855],[76.71742,11.14407],[76.71847,11.14764],[76.71611,11.14915],[76.71003,11.14799],[76.70887,11.14627],[76.71274,11.1427],[76.70661,11.14164],[76.70026,11.14655],[76.70206,11.14757],[76.70091,11.14977],[76.69623,11.15046],[76.69563,11.15549],[76.69298,11.15585],[76.68973,11.15919],[76.68988,11.16215],[76.69226,11.16456],[76.69296,11.17236],[76.69647,11.17531],[76.70077,11.17606],[76.70024,11.18182],[76.70659,11.17936],[76.70937,11.18239],[76.71033,11.18784],[76.71378,11.18836],[76.71843,11.18641],[76.72363,11.19238],[76.72904,11.19104],[76.7282,11.19585],[76.72218,11.20363],[76.72659,11.21037],[76.73177,11.21367],[76.73142,11.21559],[76.72823,11.21854],[76.72582,11.21867],[76.72537,11.22581],[76.72175,11.22492],[76.7149,11.23133],[76.71167,11.23175],[76.70709,11.23838]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"564","area_level":"District","area_name":"Pathanamthitta","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.66497,9.48167],[76.65969,9.48268],[76.65103,9.48138],[76.64833,9.47834],[76.64254,9.47921],[76.641,9.46825],[76.63514,9.46258],[76.6316,9.4719],[76.6272,9.47179],[76.62599,9.46181],[76.61994,9.45977],[76.61655,9.46136],[76.60932,9.46032],[76.60992,9.45477],[76.60295,9.45778],[76.60458,9.45057],[76.59768,9.45079],[76.5947,9.44707],[76.59155,9.44875],[76.59062,9.44452],[76.59314,9.43602],[76.59218,9.42389],[76.59673,9.42143],[76.59336,9.41288],[76.59075,9.41866],[76.5791,9.42234],[76.56472,9.41083],[76.55943,9.41144],[76.55528,9.4133],[76.55348,9.42503],[76.54889,9.42206],[76.54344,9.42312],[76.54349,9.42093],[76.54031,9.42071],[76.53752,9.41451],[76.53589,9.41717],[76.53109,9.4168],[76.53075,9.41298],[76.52624,9.41262],[76.52561,9.40883],[76.516,9.40786],[76.51644,9.40057],[76.51243,9.40016],[76.5111,9.39251],[76.5144,9.39002],[76.50926,9.37722],[76.51237,9.3733],[76.51441,9.37298],[76.51429,9.36977],[76.5237,9.36783],[76.52362,9.3657],[76.51575,9.36522],[76.51351,9.36251],[76.51331,9.35401],[76.50889,9.355],[76.5056,9.35178],[76.49568,9.34723],[76.48822,9.34754],[76.48249,9.34576],[76.4796,9.34059],[76.47493,9.33784],[76.47596,9.33652],[76.47336,9.33242],[76.47446,9.32813],[76.48814,9.32862],[76.4978,9.32344],[76.5182,9.32731],[76.527,9.32595],[76.53178,9.32964],[76.5331,9.32514],[76.53636,9.32217],[76.54072,9.32246],[76.54618,9.32546],[76.55061,9.32474],[76.55355,9.33136],[76.55317,9.33521],[76.55589,9.3378],[76.55623,9.34062],[76.55981,9.34341],[76.55171,9.34707],[76.54969,9.34973],[76.55034,9.35111],[76.55285,9.35238],[76.55584,9.35025],[76.55944,9.35094],[76.56312,9.35411],[76.56518,9.35316],[76.56685,9.35609],[76.57982,9.35344],[76.57924,9.35057],[76.58156,9.34734],[76.58242,9.34937],[76.58526,9.34855],[76.5873,9.35191],[76.59027,9.35105],[76.59501,9.35268],[76.59813,9.34625],[76.60106,9.34718],[76.60316,9.34413],[76.60644,9.3451],[76.60983,9.34199],[76.61327,9.34323],[76.61526,9.34093],[76.61703,9.34149],[76.62791,9.3372],[76.62873,9.34261],[76.64178,9.34094],[76.64037,9.33622],[76.64207,9.33326],[76.63963,9.32964],[76.63537,9.32709],[76.63931,9.32602],[76.64152,9.32338],[76.64139,9.31902],[76.64417,9.31539],[76.64512,9.30995],[76.6517,9.30843],[76.65055,9.30452],[76.65144,9.28975],[76.65584,9.28986],[76.65598,9.28829],[76.66245,9.28748],[76.66427,9.2889],[76.67574,9.28936],[76.67508,9.28557],[76.67762,9.28555],[76.67702,9.28323],[76.67062,9.27731],[76.66604,9.27504],[76.66608,9.27384],[76.67127,9.27469],[76.67077,9.273],[76.66814,9.27227],[76.66705,9.2695],[76.66194,9.26922],[76.66436,9.26604],[76.65592,9.26381],[76.65485,9.26048],[76.65805,9.25781],[76.65858,9.24863],[76.65787,9.24397],[76.65399,9.24083],[76.65398,9.23785],[76.64938,9.23614],[76.64699,9.23768],[76.63927,9.23376],[76.64505,9.22383],[76.64741,9.20742],[76.65175,9.20412],[76.65711,9.20482],[76.66079,9.20131],[76.66821,9.20011],[76.67132,9.19533],[76.67705,9.19392],[76.67555,9.18924],[76.67671,9.18286],[76.6823,9.18176],[76.69069,9.17696],[76.68784,9.16903],[76.67867,9.1725],[76.67766,9.17061],[76.67478,9.17004],[76.67155,9.16426],[76.67424,9.15444],[76.67238,9.15322],[76.66095,9.14947],[76.6488,9.14963],[76.64534,9.14653],[76.6381,9.14826],[76.63529,9.14084],[76.63628,9.12858],[76.63285,9.11904],[76.63899,9.12256],[76.64455,9.12232],[76.64738,9.11669],[76.65167,9.11687],[76.65655,9.11336],[76.66109,9.11602],[76.66434,9.11414],[76.66974,9.11668],[76.67321,9.11111],[76.67447,9.10268],[76.67576,9.10291],[76.67585,9.10121],[76.67447,9.10092],[76.67736,9.09195],[76.67495,9.08525],[76.67172,9.0824],[76.67423,9.07906],[76.67867,9.07806],[76.67867,9.08173],[76.68387,9.08091],[76.68618,9.08869],[76.69023,9.09156],[76.70498,9.08671],[76.71021,9.087],[76.71226,9.08431],[76.71481,9.08513],[76.72269,9.08168],[76.72708,9.08416],[76.7334,9.08109],[76.73548,9.08568],[76.73717,9.0863],[76.74498,9.08009],[76.75029,9.08375],[76.75312,9.08824],[76.75595,9.08825],[76.75777,9.08589],[76.75854,9.0725],[76.76534,9.07488],[76.77094,9.07454],[76.77093,9.08209],[76.76562,9.09452],[76.76961,9.10113],[76.7735,9.10116],[76.77329,9.10432],[76.77643,9.10559],[76.77666,9.10903],[76.78108,9.10954],[76.78334,9.1141],[76.78663,9.11404],[76.79329,9.10908],[76.79674,9.1105],[76.80927,9.10843],[76.81517,9.10368],[76.82269,9.09338],[76.8277,9.09244],[76.82846,9.09388],[76.83294,9.09429],[76.84211,9.09207],[76.84563,9.09479],[76.8463,9.0988],[76.85191,9.09955],[76.84955,9.10234],[76.85172,9.10502],[76.85187,9.11273],[76.85508,9.1143],[76.85639,9.11697],[76.86598,9.1158],[76.86712,9.12078],[76.8756,9.13089],[76.88473,9.12473],[76.88396,9.12195],[76.89259,9.12276],[76.89816,9.13042],[76.90217,9.12542],[76.91015,9.12575],[76.92385,9.12259],[76.92508,9.11873],[76.93802,9.11724],[76.94385,9.1186],[76.94827,9.11724],[76.96016,9.12996],[76.9489,9.13098],[76.94061,9.13861],[76.93631,9.13579],[76.9264,9.13863],[76.92736,9.14629],[76.92624,9.15436],[76.92818,9.1688],[76.93033,9.17379],[76.93947,9.16898],[76.94488,9.16353],[76.95957,9.15356],[76.98855,9.1455],[76.99415,9.13986],[76.99793,9.14016],[77.00466,9.1376],[77.00949,9.14032],[77.01637,9.13644],[77.01869,9.13062],[77.02651,9.12811],[77.02933,9.12923],[77.03679,9.12516],[77.04535,9.12317],[77.05079,9.12738],[77.05426,9.12734],[77.05764,9.11716],[77.06477,9.11938],[77.06727,9.11442],[77.07099,9.11285],[77.07914,9.11321],[77.08114,9.10927],[77.09725,9.10244],[77.0985,9.10015],[77.10309,9.09918],[77.1074,9.09455],[77.11115,9.09319],[77.12076,9.09467],[77.13124,9.08785],[77.14291,9.08536],[77.14518,9.08345],[77.15143,9.08427],[77.15449,9.08736],[77.15433,9.08186],[77.15992,9.08112],[77.16146,9.08226],[77.16371,9.07945],[77.16987,9.07758],[77.17297,9.07923],[77.17933,9.07633],[77.19016,9.07659],[77.20456,9.0716],[77.20887,9.07404],[77.2057,9.08499],[77.20915,9.08996],[77.21241,9.10048],[77.21877,9.10143],[77.22106,9.10594],[77.22646,9.10819],[77.22844,9.11688],[77.23134,9.11743],[77.24215,9.12505],[77.24728,9.1246],[77.25272,9.13919],[77.26065,9.1443],[77.26072,9.14881],[77.26681,9.15246],[77.26532,9.16307],[77.26714,9.17432],[77.26516,9.18126],[77.26388,9.18411],[77.26095,9.18311],[77.25143,9.18864],[77.25641,9.19598],[77.25611,9.19922],[77.26314,9.19826],[77.26636,9.20045],[77.27034,9.2006],[77.27038,9.20503],[77.2755,9.21169],[77.28171,9.21657],[77.28166,9.22072],[77.27575,9.22898],[77.27411,9.23582],[77.27877,9.23941],[77.27955,9.24383],[77.2774,9.24713],[77.28254,9.256],[77.2815,9.26241],[77.28352,9.26728],[77.28201,9.27281],[77.27731,9.27432],[77.27329,9.27885],[77.26143,9.28137],[77.25783,9.2854],[77.24882,9.28978],[77.24463,9.29014],[77.24306,9.28377],[77.23963,9.28532],[77.23722,9.28272],[77.23528,9.29344],[77.22863,9.29748],[77.22456,9.29592],[77.22609,9.30495],[77.22456,9.31166],[77.22798,9.31824],[77.2351,9.32423],[77.23478,9.32751],[77.23035,9.33028],[77.23793,9.33964],[77.23485,9.35023],[77.2412,9.36068],[77.24105,9.36762],[77.24356,9.37344],[77.24821,9.37754],[77.24585,9.38753],[77.24244,9.39091],[77.23898,9.39891],[77.23165,9.4037],[77.22823,9.4109],[77.22998,9.41725],[77.22884,9.41969],[77.22409,9.41955],[77.22066,9.42133],[77.22236,9.42365],[77.22095,9.42611],[77.22374,9.43455],[77.21543,9.43763],[77.21161,9.4439],[77.20799,9.44147],[77.20751,9.44395],[77.20954,9.44806],[77.20694,9.4504],[77.2032,9.45147],[77.20077,9.44954],[77.19741,9.45197],[77.19117,9.44957],[77.18812,9.45617],[77.18336,9.45441],[77.18238,9.45655],[77.18459,9.46246],[77.18219,9.46637],[77.18199,9.47266],[77.17566,9.46811],[77.17247,9.46338],[77.16856,9.46162],[77.16967,9.46532],[77.16631,9.46512],[77.16641,9.46971],[77.1613,9.46914],[77.15534,9.47114],[77.1425,9.46017],[77.13507,9.45865],[77.11751,9.4636],[77.10838,9.46885],[77.10444,9.46917],[77.10422,9.46727],[77.10075,9.46808],[77.09878,9.4627],[77.09822,9.46503],[77.09537,9.46449],[77.09322,9.46231],[77.08053,9.45724],[77.06852,9.4543],[77.05917,9.44566],[77.05817,9.44228],[77.05994,9.4393],[77.05863,9.43567],[77.06018,9.43171],[77.05853,9.42759],[77.0618,9.42665],[77.06639,9.41688],[77.06117,9.41602],[77.0533,9.41807],[77.04694,9.41413],[77.03754,9.41306],[77.03542,9.40938],[77.02817,9.40697],[77.02493,9.40907],[77.0215,9.40612],[77.0093,9.40897],[77.01203,9.41849],[77.00922,9.42005],[77.00839,9.42888],[77.01859,9.43073],[77.01715,9.44164],[77.00101,9.44784],[76.99923,9.44635],[76.99387,9.44712],[76.9681,9.46498],[76.9633,9.46484],[76.95895,9.46196],[76.95856,9.45832],[76.95554,9.45777],[76.95184,9.45032],[76.94013,9.44528],[76.9448,9.43516],[76.94114,9.43174],[76.94428,9.42851],[76.94577,9.43092],[76.9483,9.43113],[76.94754,9.43433],[76.95412,9.43489],[76.95418,9.42994],[76.96295,9.42572],[76.96461,9.42905],[76.9628,9.4311],[76.96709,9.43325],[76.96863,9.43117],[76.97282,9.43072],[76.97204,9.42705],[76.97416,9.42653],[76.97559,9.42809],[76.98136,9.42581],[76.98409,9.42682],[76.98438,9.42391],[76.97609,9.42494],[76.97362,9.42234],[76.96821,9.4252],[76.95976,9.42259],[76.9589,9.42047],[76.95104,9.42075],[76.94731,9.41927],[76.93624,9.42131],[76.93236,9.41813],[76.92514,9.41556],[76.9223,9.41706],[76.92437,9.42234],[76.92313,9.42409],[76.91947,9.42587],[76.91116,9.42341],[76.90979,9.42678],[76.90541,9.42914],[76.90459,9.43164],[76.88243,9.44443],[76.85699,9.45367],[76.85459,9.45718],[76.85316,9.4573],[76.85176,9.45462],[76.85361,9.45392],[76.85187,9.45246],[76.85283,9.44967],[76.84883,9.44552],[76.84506,9.44968],[76.83535,9.44968],[76.83287,9.45238],[76.82897,9.45239],[76.82625,9.44663],[76.82338,9.44578],[76.81871,9.4553],[76.80333,9.45515],[76.80029,9.4588],[76.79917,9.45147],[76.79415,9.4539],[76.79195,9.45102],[76.79326,9.44961],[76.79273,9.44668],[76.78933,9.44675],[76.78756,9.44887],[76.78293,9.44871],[76.76842,9.4415],[76.76687,9.437],[76.76523,9.43669],[76.7614,9.44208],[76.76162,9.44495],[76.7544,9.45391],[76.74872,9.45231],[76.74862,9.4555],[76.75129,9.45513],[76.75213,9.45832],[76.7504,9.46142],[76.75216,9.463],[76.75072,9.46492],[76.7489,9.46293],[76.74872,9.46905],[76.74669,9.47218],[76.74763,9.47341],[76.7457,9.47475],[76.74384,9.47398],[76.73801,9.47633],[76.73342,9.47533],[76.72983,9.46947],[76.73129,9.46642],[76.72231,9.46504],[76.70825,9.45428],[76.70803,9.45789],[76.7034,9.46539],[76.70015,9.47704],[76.6957,9.47831],[76.68908,9.47732],[76.67991,9.48299],[76.67884,9.48151],[76.67478,9.48233],[76.67457,9.48019],[76.66722,9.48253],[76.66497,9.48167]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"565","area_level":"District","area_name":"Thiruvananthapuram","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.78955,8.85349],[76.78472,8.8585],[76.7834,8.86237],[76.78131,8.86176],[76.78216,8.85249],[76.77541,8.84391],[76.78177,8.84265],[76.78138,8.83995],[76.78381,8.83884],[76.78514,8.8358],[76.78864,8.83502],[76.79442,8.82805],[76.79133,8.82203],[76.78728,8.82266],[76.78303,8.81943],[76.78887,8.8191],[76.78982,8.81485],[76.7924,8.81484],[76.79263,8.81353],[76.77713,8.8097],[76.77116,8.8112],[76.77188,8.80606],[76.7683,8.80396],[76.77096,8.79988],[76.76882,8.79872],[76.76134,8.8003],[76.76175,8.79362],[76.7605,8.79137],[76.75842,8.79542],[76.74058,8.79601],[76.73854,8.79821],[76.72814,8.79994],[76.72185,8.80379],[76.71396,8.79635],[76.70936,8.79524],[76.70966,8.7911],[76.70475,8.79135],[76.70369,8.79292],[76.70105,8.79094],[76.6927,8.79157],[76.68989,8.77875],[76.68447,8.77921],[76.68367,8.77632],[76.68174,8.77636],[76.67701,8.78855],[76.67613,8.78401],[76.67293,8.78166],[76.69087,8.75418],[76.6987,8.73795],[76.71485,8.72076],[76.75802,8.66854],[76.89491,8.49669],[76.95492,8.4266],[76.97034,8.40291],[76.97241,8.39647],[76.97222,8.39438],[76.97089,8.39468],[76.97141,8.39158],[76.97507,8.38849],[76.97561,8.38574],[76.97915,8.38411],[76.9791,8.38185],[76.9841,8.37971],[76.98638,8.37549],[76.992,8.37752],[76.99758,8.37406],[77.0074,8.36242],[77.01115,8.35474],[77.01276,8.35576],[77.01653,8.35466],[77.02875,8.34759],[77.05996,8.3205],[77.09598,8.29302],[77.09886,8.29896],[77.10163,8.30091],[77.10176,8.30647],[77.10553,8.30692],[77.11308,8.30424],[77.11664,8.31031],[77.12278,8.30901],[77.12448,8.31207],[77.11899,8.31678],[77.11921,8.32106],[77.12959,8.32196],[77.12919,8.32598],[77.13842,8.32753],[77.13979,8.32987],[77.14526,8.32956],[77.14843,8.33199],[77.1536,8.328],[77.16929,8.33295],[77.16993,8.32549],[77.17216,8.32469],[77.17332,8.31976],[77.18061,8.32352],[77.16975,8.33474],[77.16997,8.33807],[77.16694,8.34275],[77.171,8.34773],[77.17547,8.34986],[77.17429,8.35863],[77.17072,8.3603],[77.16965,8.36347],[77.16754,8.36343],[77.1666,8.36025],[77.16336,8.36177],[77.15949,8.35916],[77.15741,8.35994],[77.1564,8.35673],[77.15302,8.35514],[77.15354,8.36131],[77.15589,8.36339],[77.15694,8.36741],[77.16034,8.3687],[77.16129,8.37398],[77.15996,8.38124],[77.15592,8.38265],[77.15532,8.3811],[77.15199,8.38129],[77.15111,8.38447],[77.15373,8.38774],[77.16095,8.39017],[77.16594,8.38787],[77.16819,8.38387],[77.17052,8.38736],[77.18167,8.39579],[77.18261,8.40475],[77.19752,8.41994],[77.19656,8.42916],[77.20381,8.43526],[77.20292,8.43633],[77.2066,8.4447],[77.2281,8.44725],[77.22901,8.45061],[77.2273,8.45293],[77.22742,8.45848],[77.22093,8.4658],[77.21407,8.46972],[77.21139,8.47888],[77.21174,8.48397],[77.21381,8.48554],[77.21188,8.49207],[77.20413,8.49645],[77.20468,8.49872],[77.20238,8.50119],[77.21041,8.50701],[77.21431,8.51281],[77.22226,8.51244],[77.22966,8.50898],[77.24012,8.49705],[77.24424,8.49756],[77.2463,8.50235],[77.2513,8.50542],[77.25615,8.50518],[77.25738,8.50705],[77.26171,8.50615],[77.26534,8.51196],[77.26692,8.51987],[77.27426,8.53372],[77.27465,8.53763],[77.28385,8.54673],[77.28236,8.55049],[77.2743,8.55964],[77.27504,8.56564],[77.27066,8.57165],[77.26905,8.57889],[77.26649,8.58077],[77.26643,8.58514],[77.26321,8.58883],[77.25864,8.58922],[77.25517,8.59739],[77.25076,8.59873],[77.24524,8.60344],[77.24573,8.61629],[77.24408,8.62182],[77.23465,8.62685],[77.23219,8.63565],[77.22931,8.63742],[77.22885,8.64027],[77.22483,8.63908],[77.22015,8.64493],[77.21427,8.64914],[77.2117,8.65479],[77.21211,8.65719],[77.20778,8.66083],[77.20837,8.66364],[77.20069,8.66908],[77.20726,8.68068],[77.20672,8.6842],[77.19561,8.70213],[77.19503,8.70776],[77.18998,8.71236],[77.18472,8.71347],[77.1843,8.71639],[77.18079,8.71832],[77.18062,8.72106],[77.17677,8.72613],[77.17911,8.73058],[77.17001,8.74179],[77.16977,8.74743],[77.17163,8.75058],[77.17703,8.74544],[77.18267,8.74278],[77.19246,8.74444],[77.19833,8.75343],[77.20014,8.76267],[77.19695,8.76824],[77.19967,8.76976],[77.19972,8.77179],[77.19155,8.77265],[77.17506,8.78278],[77.16862,8.78845],[77.15992,8.7921],[77.15647,8.7967],[77.15503,8.79656],[77.15463,8.79437],[77.14517,8.80394],[77.14069,8.80654],[77.13693,8.80589],[77.1275,8.81053],[77.12089,8.82023],[77.11884,8.82213],[77.11283,8.823],[77.11046,8.82662],[77.10785,8.82673],[77.10723,8.83035],[77.09964,8.82967],[77.08829,8.83433],[77.08307,8.83979],[77.06858,8.84062],[77.05016,8.84645],[77.0326,8.84281],[77.02906,8.83445],[77.02498,8.83382],[77.02011,8.8284],[77.02092,8.81657],[77.01527,8.81773],[77.01132,8.81597],[77.00867,8.81236],[77.01114,8.80755],[77.00997,8.80226],[77.01156,8.79553],[77.01538,8.7924],[77.01604,8.78869],[77.02494,8.77541],[77.01511,8.77198],[77.00276,8.77133],[77.00101,8.7725],[76.99613,8.78468],[76.9914,8.78789],[76.98133,8.78996],[76.97483,8.78448],[76.97279,8.77537],[76.96358,8.7711],[76.95039,8.77244],[76.94648,8.77119],[76.94192,8.76581],[76.93357,8.76137],[76.92978,8.76621],[76.91517,8.77676],[76.91511,8.7818],[76.92134,8.78649],[76.91241,8.79919],[76.90737,8.80131],[76.90694,8.80487],[76.90313,8.8066],[76.9001,8.81154],[76.89327,8.81007],[76.89036,8.81146],[76.88278,8.80551],[76.87631,8.81016],[76.86251,8.81448],[76.85712,8.81861],[76.85542,8.81599],[76.85104,8.81903],[76.85185,8.82217],[76.84887,8.82486],[76.84956,8.82612],[76.84585,8.82775],[76.84812,8.83452],[76.83306,8.84339],[76.8293,8.84473],[76.82721,8.84251],[76.82574,8.84295],[76.82382,8.84508],[76.82389,8.85118],[76.8162,8.85976],[76.81295,8.85531],[76.81016,8.85493],[76.80675,8.85736],[76.80693,8.85492],[76.80204,8.84886],[76.79432,8.85658],[76.79313,8.85438],[76.78955,8.85349]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"566","area_level":"District","area_name":"Thrissur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.19418,10.78293],[76.18788,10.78268],[76.18817,10.77988],[76.19136,10.77689],[76.19436,10.77772],[76.19503,10.77564],[76.20545,10.76855],[76.20264,10.75202],[76.2,10.75299],[76.19181,10.75008],[76.18962,10.74232],[76.18096,10.73423],[76.18131,10.72962],[76.17908,10.72895],[76.17694,10.72402],[76.17484,10.72311],[76.17176,10.71349],[76.16531,10.71136],[76.16415,10.70626],[76.16125,10.7069],[76.15657,10.71585],[76.15693,10.71803],[76.15438,10.71555],[76.15378,10.71162],[76.14479,10.71984],[76.13608,10.71955],[76.13291,10.72236],[76.13012,10.71632],[76.12263,10.7104],[76.09688,10.72614],[76.09644,10.72834],[76.08998,10.72701],[76.08477,10.72804],[76.08264,10.72622],[76.06881,10.73029],[76.06559,10.72928],[76.06602,10.72597],[76.06775,10.72566],[76.06701,10.72345],[76.06512,10.72406],[76.06487,10.72589],[76.0593,10.72756],[76.06107,10.71974],[76.05388,10.71268],[76.05155,10.70444],[76.04876,10.70458],[76.04824,10.70684],[76.04441,10.70518],[76.04348,10.70714],[76.04126,10.70535],[76.03983,10.70738],[76.03704,10.70741],[76.03412,10.70348],[76.03427,10.70062],[76.01988,10.69734],[76.01313,10.69112],[76.00732,10.68961],[76.00124,10.69427],[75.98632,10.69096],[75.98307,10.68894],[75.98404,10.6874],[75.98289,10.68688],[75.98027,10.69388],[75.97828,10.69546],[75.97661,10.69548],[75.97713,10.69185],[75.97571,10.69141],[75.97447,10.69354],[75.97049,10.69111],[75.96704,10.69406],[75.96617,10.69202],[75.96275,10.69094],[75.96352,10.68933],[75.95616,10.68536],[75.98978,10.61313],[76.03186,10.51534],[76.0367,10.50753],[76.03923,10.50854],[76.04001,10.50705],[76.03955,10.50489],[76.06286,10.46191],[76.08169,10.42157],[76.0833,10.42161],[76.08238,10.41967],[76.09801,10.3819],[76.09863,10.38058],[76.10033,10.38147],[76.09922,10.37891],[76.1134,10.34238],[76.13594,10.26096],[76.16151,10.18394],[76.16484,10.1798],[76.1691,10.18487],[76.18523,10.1909],[76.20414,10.19466],[76.21372,10.19416],[76.21159,10.20089],[76.21973,10.20702],[76.23271,10.20416],[76.23362,10.20259],[76.23727,10.20445],[76.24174,10.20336],[76.24343,10.20544],[76.24616,10.20188],[76.24952,10.20079],[76.25428,10.20266],[76.25617,10.20121],[76.25984,10.20236],[76.26366,10.20068],[76.26351,10.19841],[76.2596,10.19819],[76.26186,10.19452],[76.26127,10.18987],[76.26691,10.18565],[76.27072,10.18531],[76.27165,10.18118],[76.27406,10.17905],[76.27403,10.17523],[76.28022,10.17469],[76.28709,10.17816],[76.29644,10.1761],[76.29923,10.17999],[76.29966,10.18384],[76.30191,10.18537],[76.31198,10.18242],[76.31073,10.20545],[76.33124,10.20946],[76.33253,10.21274],[76.33519,10.21343],[76.33751,10.22518],[76.34095,10.22629],[76.34088,10.23069],[76.33929,10.23106],[76.37218,10.2411],[76.37938,10.24506],[76.37747,10.25],[76.37783,10.25485],[76.39138,10.25537],[76.39005,10.26404],[76.39253,10.2666],[76.39703,10.26757],[76.40135,10.27597],[76.41342,10.28113],[76.41163,10.28762],[76.41716,10.28881],[76.41541,10.29434],[76.42971,10.28948],[76.43687,10.29435],[76.44355,10.29345],[76.44773,10.29686],[76.45919,10.29659],[76.47243,10.29175],[76.47828,10.29314],[76.48302,10.29203],[76.48982,10.29437],[76.49424,10.29232],[76.49847,10.28765],[76.50699,10.28909],[76.51675,10.28758],[76.5246,10.28432],[76.53311,10.28773],[76.54444,10.28956],[76.55416,10.28287],[76.56577,10.28514],[76.5734,10.28453],[76.56612,10.29316],[76.57742,10.30248],[76.58562,10.2981],[76.58985,10.29893],[76.59004,10.29244],[76.60333,10.28023],[76.61876,10.28032],[76.62129,10.27351],[76.63257,10.27268],[76.63943,10.27402],[76.64586,10.28027],[76.66192,10.27997],[76.66197,10.27694],[76.66921,10.27165],[76.69567,10.26393],[76.70458,10.26681],[76.70616,10.26969],[76.73059,10.27061],[76.75105,10.27817],[76.75894,10.26965],[76.76845,10.26894],[76.77441,10.27122],[76.77514,10.27653],[76.78748,10.27757],[76.79288,10.28023],[76.79533,10.2774],[76.79728,10.27744],[76.80391,10.28503],[76.80975,10.28606],[76.82622,10.28098],[76.82878,10.27545],[76.83246,10.27609],[76.83603,10.28371],[76.83756,10.28358],[76.84023,10.28331],[76.84272,10.28024],[76.84763,10.28083],[76.86002,10.27318],[76.86561,10.27294],[76.86698,10.26936],[76.87127,10.27162],[76.87615,10.27065],[76.87893,10.2695],[76.87986,10.26712],[76.87713,10.26249],[76.87786,10.26039],[76.88879,10.25757],[76.88925,10.25579],[76.891,10.25791],[76.89557,10.25856],[76.89696,10.25754],[76.89634,10.25383],[76.90121,10.25184],[76.89707,10.26275],[76.89144,10.26306],[76.88409,10.2709],[76.87342,10.27634],[76.87452,10.29428],[76.87314,10.29848],[76.87052,10.29888],[76.86842,10.29607],[76.86435,10.29532],[76.86239,10.29203],[76.85792,10.29364],[76.8551,10.29285],[76.85126,10.2899],[76.85222,10.2851],[76.84872,10.28528],[76.84824,10.28754],[76.84263,10.29003],[76.84221,10.29247],[76.84478,10.2949],[76.8407,10.29968],[76.83732,10.30205],[76.83031,10.30363],[76.8287,10.30787],[76.83297,10.31807],[76.83766,10.33777],[76.82803,10.33729],[76.81604,10.34887],[76.81198,10.34641],[76.8085,10.3465],[76.80569,10.34404],[76.80451,10.33692],[76.79938,10.33796],[76.79319,10.33592],[76.78751,10.33618],[76.77709,10.34201],[76.77179,10.33416],[76.7602,10.33684],[76.75454,10.33621],[76.75158,10.33836],[76.75389,10.34471],[76.75256,10.34756],[76.75753,10.34818],[76.76271,10.35311],[76.76535,10.3586],[76.76305,10.36221],[76.75498,10.36158],[76.74907,10.36617],[76.7312,10.36839],[76.71779,10.37296],[76.71313,10.37286],[76.70616,10.37006],[76.70311,10.36305],[76.69502,10.36181],[76.68683,10.36328],[76.6834,10.36758],[76.67962,10.36759],[76.66937,10.37418],[76.66854,10.37749],[76.66139,10.38562],[76.65767,10.38368],[76.65772,10.37987],[76.65452,10.37678],[76.65131,10.38052],[76.64562,10.38289],[76.64211,10.38221],[76.64062,10.38029],[76.63653,10.38105],[76.63258,10.37646],[76.62886,10.37727],[76.62878,10.3797],[76.63097,10.3811],[76.62862,10.38308],[76.62493,10.379],[76.62275,10.3793],[76.61894,10.38417],[76.61812,10.3903],[76.61529,10.39105],[76.61006,10.39852],[76.60683,10.39943],[76.60711,10.40463],[76.60378,10.40781],[76.60506,10.41078],[76.60141,10.41819],[76.59526,10.42175],[76.59512,10.42566],[76.58806,10.4354],[76.56738,10.43719],[76.55865,10.4341],[76.55645,10.43672],[76.55739,10.44345],[76.55263,10.44602],[76.53627,10.44833],[76.53212,10.45921],[76.52646,10.46294],[76.52531,10.46703],[76.52311,10.46882],[76.51429,10.47247],[76.5061,10.47346],[76.5,10.47916],[76.49332,10.47822],[76.49218,10.48032],[76.4894,10.47929],[76.48717,10.48634],[76.48046,10.48555],[76.474,10.48709],[76.47166,10.49652],[76.46687,10.4987],[76.46748,10.50259],[76.45923,10.50796],[76.45976,10.51075],[76.45062,10.52171],[76.44128,10.52272],[76.43961,10.52999],[76.43674,10.53013],[76.43308,10.53335],[76.43163,10.53728],[76.43896,10.55692],[76.43492,10.55549],[76.42971,10.55851],[76.43009,10.56275],[76.42909,10.56512],[76.42584,10.56625],[76.4254,10.5715],[76.4206,10.57248],[76.42029,10.57875],[76.41308,10.57845],[76.40848,10.58007],[76.40117,10.596],[76.40477,10.60184],[76.41316,10.59453],[76.41499,10.59984],[76.41331,10.60564],[76.42174,10.60603],[76.4281,10.61346],[76.42699,10.61907],[76.4248,10.61963],[76.42666,10.61999],[76.42553,10.62753],[76.4205,10.6291],[76.42114,10.62248],[76.41923,10.6227],[76.41995,10.62636],[76.41768,10.62756],[76.41896,10.62815],[76.41748,10.63038],[76.4197,10.63298],[76.41992,10.63832],[76.42392,10.6438],[76.42183,10.64721],[76.42464,10.64825],[76.42408,10.64935],[76.43424,10.65004],[76.43578,10.65583],[76.44154,10.66323],[76.4446,10.66374],[76.44872,10.66113],[76.45104,10.66582],[76.4514,10.6756],[76.44775,10.68647],[76.44013,10.69653],[76.45149,10.70205],[76.4569,10.69969],[76.46165,10.70819],[76.46324,10.71594],[76.46551,10.71825],[76.46399,10.72108],[76.47937,10.73251],[76.47949,10.73484],[76.47454,10.73837],[76.46776,10.74028],[76.47316,10.74893],[76.46972,10.75189],[76.46731,10.75284],[76.44312,10.74958],[76.43508,10.75132],[76.42053,10.74924],[76.41349,10.74974],[76.4033,10.74649],[76.39704,10.74634],[76.39382,10.74863],[76.38836,10.76509],[76.38299,10.76774],[76.37411,10.76662],[76.3649,10.76305],[76.36167,10.7581],[76.358,10.74582],[76.35401,10.74307],[76.3399,10.74909],[76.32602,10.74531],[76.28938,10.75536],[76.28111,10.75223],[76.26541,10.75298],[76.25215,10.74679],[76.24518,10.74999],[76.24492,10.75434],[76.24727,10.76142],[76.24663,10.76598],[76.2428,10.77324],[76.23053,10.77246],[76.22061,10.78193],[76.20857,10.77774],[76.19418,10.78293]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"567","area_level":"District","area_name":"Wayanad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.11236,11.97861],[76.0898,11.96743],[76.07729,11.96874],[76.0701,11.96708],[76.06742,11.96333],[76.05796,11.95778],[76.05204,11.95161],[76.04482,11.95054],[76.04233,11.94602],[76.03907,11.94509],[76.03372,11.9403],[76.02997,11.94015],[76.02676,11.94308],[76.02238,11.94397],[76.01649,11.9411],[76.01312,11.94172],[76.00738,11.93902],[76.0032,11.93139],[75.99391,11.93227],[75.99042,11.93471],[75.98347,11.93272],[75.97927,11.93476],[75.9764,11.93371],[75.95637,11.9419],[75.93918,11.94082],[75.93602,11.93452],[75.92825,11.9345],[75.92519,11.92941],[75.92624,11.92459],[75.92495,11.92003],[75.93535,11.91184],[75.9369,11.90537],[75.93925,11.90325],[75.93647,11.90056],[75.93635,11.89069],[75.92979,11.88199],[75.92496,11.88016],[75.91909,11.8802],[75.91139,11.87491],[75.9217,11.86914],[75.93135,11.85812],[75.92932,11.85781],[75.92535,11.84818],[75.92728,11.84277],[75.9258,11.84327],[75.92601,11.84709],[75.92134,11.84722],[75.91776,11.8446],[75.91185,11.84624],[75.90946,11.8436],[75.89167,11.84258],[75.88783,11.84671],[75.88246,11.84491],[75.87195,11.84891],[75.86128,11.84991],[75.85398,11.84779],[75.84811,11.85094],[75.84696,11.85487],[75.84507,11.85595],[75.84096,11.85597],[75.83753,11.85326],[75.82868,11.85124],[75.82294,11.85349],[75.81955,11.85886],[75.81699,11.85615],[75.80936,11.85682],[75.80543,11.85387],[75.80451,11.84739],[75.80023,11.84522],[75.79349,11.84585],[75.78994,11.84055],[75.78994,11.83588],[75.79199,11.83223],[75.79774,11.82735],[75.79881,11.81937],[75.78153,11.81023],[75.78079,11.80713],[75.77813,11.80476],[75.77205,11.80274],[75.77666,11.802],[75.79341,11.79068],[75.79385,11.78486],[75.79175,11.77859],[75.78698,11.77523],[75.7898,11.77215],[75.7881,11.76509],[75.78387,11.76347],[75.78329,11.7607],[75.79414,11.75358],[75.79911,11.75341],[75.7996,11.75002],[75.79812,11.74744],[75.79083,11.74347],[75.81011,11.74292],[75.81144,11.74003],[75.81426,11.73986],[75.81921,11.73406],[75.82151,11.73337],[75.82425,11.72745],[75.82808,11.72706],[75.82763,11.72559],[75.83215,11.72012],[75.83734,11.71911],[75.84561,11.71424],[75.84536,11.70714],[75.85072,11.70297],[75.86252,11.70435],[75.87267,11.70139],[75.87534,11.70433],[75.88233,11.69911],[75.9002,11.69922],[75.9053,11.69489],[75.91538,11.69047],[75.91521,11.68767],[75.91223,11.68481],[75.90733,11.68324],[75.90528,11.67949],[75.90163,11.67841],[75.90009,11.67605],[75.9029,11.67152],[75.90533,11.66154],[75.90272,11.65703],[75.90341,11.65165],[75.897,11.64277],[75.89983,11.63698],[75.89797,11.62288],[75.90143,11.61904],[75.90179,11.61557],[75.90562,11.61214],[75.90916,11.60081],[75.9144,11.60046],[75.9177,11.59586],[75.92431,11.59391],[75.92531,11.59483],[75.92818,11.59054],[75.93656,11.59092],[75.93941,11.58431],[75.94382,11.58191],[75.95111,11.58172],[75.95735,11.57539],[75.95639,11.57328],[75.95806,11.56843],[75.95781,11.56069],[75.96402,11.55757],[75.97214,11.54926],[75.973,11.5463],[75.98158,11.53965],[75.99576,11.53345],[76.00078,11.5261],[76.01542,11.51832],[76.01835,11.51439],[76.0274,11.51336],[76.03353,11.51047],[76.0357,11.50861],[76.03705,11.50298],[76.04359,11.50457],[76.04523,11.50696],[76.04862,11.50374],[76.05623,11.50592],[76.05701,11.50869],[76.06251,11.50991],[76.06714,11.51505],[76.06764,11.51761],[76.07186,11.51931],[76.07382,11.52288],[76.07751,11.52226],[76.08304,11.51441],[76.0886,11.51317],[76.09017,11.51142],[76.08873,11.50609],[76.09302,11.49361],[76.08755,11.49043],[76.08705,11.48735],[76.09231,11.4824],[76.1058,11.48246],[76.11166,11.47613],[76.12293,11.47382],[76.12573,11.46648],[76.13066,11.46453],[76.1321,11.46113],[76.13563,11.46004],[76.14284,11.45163],[76.14791,11.45364],[76.153,11.453],[76.15858,11.45709],[76.15909,11.45937],[76.16106,11.45743],[76.1639,11.45824],[76.16958,11.46614],[76.18584,11.47346],[76.18684,11.47896],[76.1817,11.484],[76.18474,11.48463],[76.18482,11.48836],[76.18938,11.49237],[76.19129,11.49845],[76.19924,11.50667],[76.22117,11.51162],[76.22415,11.50968],[76.22798,11.52142],[76.23381,11.5287],[76.23906,11.52625],[76.24056,11.52781],[76.24453,11.5261],[76.25049,11.52757],[76.25151,11.53778],[76.24977,11.53731],[76.24451,11.543],[76.24628,11.54628],[76.24237,11.55049],[76.2444,11.55409],[76.24043,11.5559],[76.23308,11.57077],[76.24375,11.57849],[76.24921,11.58007],[76.25351,11.5854],[76.26115,11.5903],[76.2646,11.59094],[76.26493,11.59389],[76.2743,11.59368],[76.27891,11.60094],[76.28609,11.5902],[76.29594,11.59042],[76.29913,11.58281],[76.30013,11.57446],[76.30238,11.57123],[76.31054,11.57739],[76.31592,11.57659],[76.32121,11.58619],[76.33588,11.59574],[76.33996,11.59313],[76.34125,11.58724],[76.35458,11.58931],[76.3671,11.59833],[76.37798,11.60191],[76.37827,11.60851],[76.38393,11.61205],[76.38329,11.62404],[76.3881,11.62967],[76.40689,11.63428],[76.4262,11.63357],[76.43192,11.63092],[76.43455,11.63576],[76.44343,11.64362],[76.44406,11.64719],[76.44111,11.65132],[76.43637,11.65347],[76.43135,11.6664],[76.42946,11.66624],[76.42803,11.67012],[76.42103,11.67248],[76.41913,11.6709],[76.41593,11.67281],[76.4126,11.68276],[76.41305,11.68598],[76.40844,11.68972],[76.41026,11.691],[76.41083,11.69367],[76.40963,11.69438],[76.41238,11.69502],[76.41178,11.69783],[76.40983,11.69875],[76.41087,11.70005],[76.40888,11.70639],[76.40745,11.70745],[76.40524,11.70586],[76.40346,11.70776],[76.40366,11.71162],[76.4056,11.71119],[76.40853,11.71505],[76.41257,11.71547],[76.41401,11.71125],[76.41606,11.71296],[76.41659,11.71769],[76.42411,11.72029],[76.42744,11.72598],[76.4221,11.73829],[76.41817,11.7426],[76.41288,11.74011],[76.41048,11.74208],[76.41241,11.74368],[76.4123,11.75182],[76.41498,11.7555],[76.41423,11.75885],[76.40521,11.75637],[76.39864,11.75081],[76.3934,11.75503],[76.39129,11.75477],[76.38395,11.7472],[76.37699,11.74454],[76.36846,11.74814],[76.36282,11.74837],[76.3525,11.73828],[76.3502,11.74024],[76.33974,11.739],[76.33484,11.74464],[76.32914,11.74828],[76.3196,11.75048],[76.31686,11.75259],[76.31445,11.75691],[76.31362,11.76357],[76.31071,11.7673],[76.3077,11.78422],[76.30558,11.7859],[76.30117,11.78563],[76.29403,11.79176],[76.29024,11.79283],[76.28488,11.8003],[76.28022,11.81161],[76.27687,11.81237],[76.27369,11.81063],[76.25964,11.80869],[76.25,11.80337],[76.24558,11.80293],[76.22935,11.80531],[76.22372,11.8082],[76.21821,11.81436],[76.21709,11.82157],[76.20989,11.82817],[76.21311,11.84262],[76.21026,11.84422],[76.20747,11.86154],[76.20201,11.86241],[76.19838,11.86655],[76.19039,11.87121],[76.18672,11.87196],[76.17881,11.87017],[76.1735,11.87121],[76.16481,11.86757],[76.15603,11.87014],[76.1494,11.86642],[76.14608,11.867],[76.13229,11.85387],[76.11994,11.85047],[76.11704,11.85485],[76.11785,11.85719],[76.11286,11.85871],[76.1149,11.86683],[76.11176,11.88736],[76.11337,11.89521],[76.11236,11.97861]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"568","area_level":"District","area_name":"Chennai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.33188,13.23544],[80.31768,13.22962],[80.31747,13.22645],[80.31021,13.21608],[80.30335,13.21285],[80.29874,13.21266],[80.29058,13.21854],[80.28467,13.21986],[80.28429,13.22842],[80.28281,13.22993],[80.27531,13.22933],[80.27049,13.22347],[80.27268,13.21806],[80.27044,13.20327],[80.24999,13.20609],[80.24888,13.19865],[80.23855,13.19948],[80.23845,13.20279],[80.23589,13.20386],[80.23624,13.19917],[80.23455,13.19633],[80.22275,13.19976],[80.22216,13.19085],[80.22396,13.18426],[80.21593,13.17226],[80.20184,13.18137],[80.19956,13.18123],[80.19915,13.17545],[80.19467,13.17516],[80.1908,13.16872],[80.19388,13.16437],[80.1924,13.16033],[80.19459,13.15398],[80.1845,13.14756],[80.17848,13.14913],[80.17597,13.14734],[80.17773,13.14243],[80.17713,13.13963],[80.17532,13.13886],[80.17072,13.14091],[80.16966,13.14297],[80.16586,13.13575],[80.16165,13.14051],[80.1581,13.14205],[80.15429,13.14231],[80.14877,13.13933],[80.14578,13.13941],[80.14798,13.13045],[80.14408,13.12501],[80.1402,13.10696],[80.14044,13.09855],[80.14489,13.09432],[80.14417,13.09114],[80.1461,13.08819],[80.15079,13.08725],[80.155,13.08337],[80.16137,13.08114],[80.1634,13.07343],[80.15899,13.05224],[80.16032,13.04488],[80.15796,13.04129],[80.14572,13.03986],[80.14599,13.04429],[80.14951,13.04888],[80.15336,13.04949],[80.14944,13.05077],[80.14932,13.05341],[80.15281,13.05427],[80.15406,13.06286],[80.14849,13.06441],[80.1457,13.05698],[80.14629,13.05404],[80.14234,13.05357],[80.14059,13.04895],[80.13548,13.04834],[80.13439,13.04465],[80.13991,13.04569],[80.13883,13.04143],[80.14147,13.04048],[80.14197,13.0383],[80.14564,13.03748],[80.1465,13.03212],[80.14428,13.03163],[80.14456,13.02433],[80.15024,13.02602],[80.15931,13.02486],[80.16165,13.02316],[80.1625,13.02499],[80.16452,13.02518],[80.16558,13.02192],[80.16748,13.02526],[80.17411,13.02532],[80.17971,13.02244],[80.18341,13.02528],[80.18858,13.02304],[80.19588,13.02956],[80.19596,13.02844],[80.20048,13.02828],[80.19874,13.01614],[80.20941,13.00841],[80.21082,13.0089],[80.20416,12.98305],[80.2057,12.98293],[80.20765,12.98028],[80.20749,12.97728],[80.21625,12.96738],[80.22121,12.96508],[80.22881,12.97256],[80.24366,12.9799],[80.24335,12.98392],[80.25298,12.98033],[80.25302,12.97667],[80.26783,12.97509],[80.27593,13.01263],[80.27805,13.01622],[80.28106,13.03962],[80.28686,13.06458],[80.29381,13.07943],[80.30092,13.09007],[80.30232,13.09002],[80.30467,13.10023],[80.31079,13.10816],[80.30477,13.1012],[80.3038,13.10259],[80.30207,13.09835],[80.30311,13.09466],[80.30077,13.09118],[80.29488,13.093],[80.29691,13.09926],[80.29969,13.099],[80.29974,13.09761],[80.30173,13.09867],[80.29827,13.10181],[80.30148,13.11208],[80.30353,13.10994],[80.30339,13.10606],[80.30497,13.11007],[80.30042,13.12141],[80.30553,13.13039],[80.29983,13.12311],[80.29778,13.12303],[80.29673,13.12464],[80.29915,13.12906],[80.29763,13.13004],[80.29784,13.13271],[80.30108,13.13221],[80.30329,13.12939],[80.30425,13.1306],[80.30272,13.13367],[80.29791,13.13528],[80.31278,13.16745],[80.31234,13.17053],[80.32008,13.19069],[80.32931,13.22472],[80.33343,13.23483],[80.33188,13.23544]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"569","area_level":"District","area_name":"Coimbatore","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.11106,11.40441],[77.11,11.40642],[77.09151,11.40334],[77.09319,11.399],[77.08848,11.39696],[77.09135,11.39356],[77.08118,11.38775],[77.07569,11.39169],[77.07611,11.38941],[77.07047,11.38609],[77.06934,11.39133],[77.07042,11.4025],[77.06427,11.40154],[77.05985,11.40436],[77.04543,11.40253],[77.04556,11.39917],[77.03696,11.39288],[77.03251,11.38481],[77.02628,11.38854],[77.02344,11.38771],[77.02543,11.37334],[77.02041,11.37016],[77.01571,11.37136],[77.01361,11.36876],[76.99221,11.37717],[76.98762,11.38221],[76.98149,11.38305],[76.98018,11.37979],[76.9813,11.37807],[76.97182,11.38611],[76.96608,11.38613],[76.96159,11.38381],[76.95951,11.38079],[76.94811,11.37642],[76.93341,11.37643],[76.92908,11.368],[76.93456,11.3704],[76.93417,11.36814],[76.93749,11.36657],[76.95012,11.3658],[76.93759,11.3635],[76.9377,11.3597],[76.93487,11.35847],[76.93349,11.35939],[76.93265,11.35615],[76.93293,11.36273],[76.92941,11.36028],[76.92531,11.36023],[76.92527,11.35731],[76.92074,11.35899],[76.9207,11.3571],[76.91435,11.35607],[76.91292,11.35267],[76.90635,11.35043],[76.90266,11.35079],[76.90005,11.35792],[76.90257,11.35937],[76.90237,11.36298],[76.90044,11.36142],[76.89289,11.36606],[76.88923,11.36535],[76.89032,11.36123],[76.88613,11.35767],[76.88654,11.35501],[76.88422,11.35169],[76.87885,11.35818],[76.87673,11.35838],[76.87356,11.35186],[76.86787,11.35498],[76.86247,11.35128],[76.86345,11.3479],[76.86928,11.34617],[76.86832,11.34458],[76.8617,11.34745],[76.85921,11.3434],[76.85644,11.34603],[76.85461,11.34527],[76.85411,11.34054],[76.84983,11.34263],[76.84824,11.33484],[76.85491,11.33305],[76.85107,11.32721],[76.86035,11.32458],[76.85886,11.3209],[76.85457,11.31811],[76.85684,11.31395],[76.85957,11.31245],[76.85995,11.3036],[76.854,11.30577],[76.85542,11.30304],[76.85443,11.29606],[76.85083,11.29494],[76.85083,11.29291],[76.84591,11.29267],[76.84273,11.28742],[76.83376,11.29007],[76.82998,11.29327],[76.82811,11.29071],[76.82551,11.29045],[76.82424,11.2928],[76.81781,11.28993],[76.80697,11.29916],[76.79786,11.29549],[76.79633,11.28846],[76.79031,11.27912],[76.78705,11.27921],[76.77967,11.28585],[76.77567,11.28615],[76.76914,11.28956],[76.76516,11.28367],[76.76898,11.28004],[76.76983,11.27671],[76.76894,11.26868],[76.76696,11.26799],[76.76765,11.2641],[76.76393,11.26029],[76.7589,11.25763],[76.75776,11.25846],[76.75597,11.2552],[76.75186,11.2547],[76.75584,11.25258],[76.75492,11.24866],[76.74904,11.24867],[76.74691,11.25238],[76.74303,11.25318],[76.73944,11.24995],[76.73712,11.24463],[76.72976,11.2454],[76.72289,11.25379],[76.71736,11.25706],[76.71148,11.25735],[76.71051,11.26076],[76.70601,11.26336],[76.70192,11.26051],[76.70022,11.25865],[76.70085,11.24566],[76.70696,11.24027],[76.70738,11.23704],[76.7111,11.23219],[76.7149,11.23133],[76.72175,11.22492],[76.72565,11.22552],[76.72582,11.21867],[76.72858,11.21829],[76.73177,11.21367],[76.72659,11.21037],[76.72218,11.20363],[76.7282,11.19585],[76.72904,11.19104],[76.72363,11.19238],[76.71843,11.18641],[76.71378,11.18836],[76.71033,11.18784],[76.70937,11.18239],[76.70659,11.17936],[76.70024,11.18182],[76.70077,11.17606],[76.69647,11.17531],[76.69296,11.17236],[76.69226,11.16456],[76.68988,11.16215],[76.68973,11.15919],[76.69298,11.15585],[76.69563,11.15549],[76.69623,11.15046],[76.70091,11.14977],[76.70206,11.14757],[76.70026,11.14655],[76.70661,11.14164],[76.71274,11.1427],[76.70887,11.14627],[76.71003,11.14799],[76.71611,11.14915],[76.71847,11.14764],[76.71742,11.14407],[76.72475,11.13855],[76.72637,11.13385],[76.72871,11.1339],[76.72875,11.13045],[76.73166,11.13145],[76.73503,11.13639],[76.7404,11.1337],[76.73931,11.13197],[76.74245,11.13323],[76.74622,11.13771],[76.7483,11.13584],[76.74705,11.13071],[76.74533,11.13019],[76.74753,11.12305],[76.74742,11.1112],[76.7453,11.10848],[76.74072,11.10919],[76.74077,11.10498],[76.73898,11.1043],[76.74117,11.09992],[76.74376,11.09899],[76.74658,11.09251],[76.75168,11.09319],[76.75453,11.08416],[76.75416,11.07779],[76.75014,11.07894],[76.74798,11.07432],[76.74571,11.07564],[76.74457,11.07248],[76.74104,11.07234],[76.74114,11.06973],[76.74377,11.06844],[76.74257,11.06334],[76.74575,11.06002],[76.74415,11.05707],[76.74613,11.05482],[76.75106,11.05541],[76.7607,11.05231],[76.76203,11.04798],[76.76894,11.04343],[76.77816,11.04209],[76.78779,11.0447],[76.79622,11.05585],[76.79846,11.05655],[76.80086,11.05397],[76.79315,11.0434],[76.79184,11.03736],[76.77365,11.03354],[76.7666,11.02909],[76.74929,11.03343],[76.7376,11.03974],[76.73242,11.03844],[76.72616,11.04114],[76.71542,11.04101],[76.71089,11.03872],[76.70912,11.03289],[76.69416,11.02156],[76.68546,10.9938],[76.68604,10.9892],[76.67389,10.97439],[76.66679,10.96833],[76.66748,10.95959],[76.6636,10.95093],[76.66583,10.94742],[76.66473,10.94348],[76.6558,10.93901],[76.65909,10.9305],[76.66206,10.92964],[76.67675,10.91806],[76.69521,10.91023],[76.70807,10.9101],[76.71264,10.90757],[76.7149,10.90861],[76.71783,10.90546],[76.72345,10.90345],[76.73168,10.89765],[76.73755,10.89588],[76.74079,10.89097],[76.74554,10.89268],[76.75,10.89225],[76.75241,10.89506],[76.75527,10.8932],[76.76125,10.89346],[76.76529,10.89118],[76.7679,10.88703],[76.77438,10.8901],[76.77661,10.88917],[76.78143,10.89042],[76.79092,10.88445],[76.7918,10.88111],[76.80122,10.88005],[76.80813,10.8768],[76.81146,10.87788],[76.81186,10.87583],[76.81434,10.87599],[76.81669,10.87274],[76.82832,10.87191],[76.83076,10.86993],[76.83194,10.86013],[76.83909,10.85634],[76.84168,10.85208],[76.84842,10.84939],[76.84878,10.84635],[76.85378,10.83896],[76.85319,10.83292],[76.85084,10.82958],[76.84855,10.83052],[76.84736,10.82633],[76.8464,10.82732],[76.84508,10.8261],[76.8499,10.81725],[76.85258,10.81855],[76.85875,10.81667],[76.86048,10.81848],[76.86396,10.81727],[76.86526,10.8129],[76.87006,10.80833],[76.88899,10.80958],[76.90089,10.80715],[76.90063,10.80087],[76.90561,10.7882],[76.90753,10.77799],[76.90531,10.77143],[76.90258,10.77079],[76.90379,10.76218],[76.9025,10.75839],[76.89631,10.75198],[76.89616,10.74533],[76.88846,10.73311],[76.88864,10.72831],[76.89294,10.72146],[76.8903,10.71692],[76.88635,10.71863],[76.88221,10.71734],[76.86759,10.69478],[76.87084,10.69288],[76.86603,10.68531],[76.86735,10.67949],[76.86958,10.67678],[76.87748,10.67673],[76.8784,10.67503],[76.87814,10.66735],[76.88137,10.66126],[76.88092,10.65645],[76.88374,10.65],[76.88248,10.63971],[76.87346,10.63777],[76.86751,10.63325],[76.86066,10.63234],[76.8462,10.63583],[76.83928,10.6343],[76.83066,10.63762],[76.82113,10.63442],[76.81418,10.63586],[76.81497,10.62963],[76.8101,10.62418],[76.81145,10.62001],[76.8163,10.61686],[76.81631,10.61367],[76.81833,10.61115],[76.81573,10.60787],[76.81731,10.6032],[76.82601,10.59613],[76.83233,10.59928],[76.8374,10.59841],[76.83827,10.59667],[76.83754,10.58186],[76.83357,10.57436],[76.8344,10.5703],[76.83922,10.56475],[76.83914,10.56133],[76.83568,10.55787],[76.83519,10.5454],[76.84205,10.54078],[76.8431,10.53729],[76.83104,10.50003],[76.82833,10.45017],[76.81638,10.42352],[76.82317,10.41701],[76.82253,10.41456],[76.82464,10.41012],[76.83043,10.4113],[76.83358,10.40777],[76.8325,10.40568],[76.83403,10.40334],[76.82366,10.39506],[76.8305,10.38966],[76.83429,10.38325],[76.84389,10.37753],[76.84879,10.36823],[76.84516,10.36293],[76.84601,10.35731],[76.84194,10.35359],[76.8417,10.35062],[76.83631,10.34602],[76.83768,10.33628],[76.83297,10.31807],[76.83062,10.31454],[76.83037,10.30956],[76.8287,10.30787],[76.83031,10.30363],[76.83807,10.30173],[76.84465,10.29522],[76.8422,10.2909],[76.84824,10.28754],[76.84872,10.28528],[76.85222,10.2851],[76.85126,10.2899],[76.8551,10.29285],[76.85792,10.29364],[76.86239,10.29203],[76.86435,10.29532],[76.86842,10.29607],[76.87052,10.29888],[76.87314,10.29848],[76.87452,10.29428],[76.87342,10.27634],[76.88409,10.2709],[76.89144,10.26306],[76.89741,10.26244],[76.90142,10.25116],[76.90443,10.25091],[76.90546,10.24792],[76.903,10.2403],[76.90826,10.24085],[76.9116,10.23529],[76.92156,10.23218],[76.93936,10.2389],[76.94754,10.23687],[76.9506,10.23247],[76.95888,10.23414],[76.96543,10.23074],[76.96855,10.23077],[76.97229,10.22861],[76.97347,10.22543],[76.98048,10.22379],[76.98245,10.22012],[76.9845,10.22298],[76.99071,10.22568],[76.99046,10.22809],[76.99332,10.23045],[76.99903,10.23037],[77.001,10.23516],[77.00378,10.23464],[77.00547,10.2384],[77.01113,10.24009],[77.01443,10.24579],[77.01749,10.24563],[77.03152,10.25226],[77.04063,10.25266],[77.0429,10.25685],[77.05108,10.26211],[77.05079,10.26805],[77.05268,10.2725],[77.0496,10.27808],[77.04288,10.28377],[77.05645,10.287],[77.05944,10.29023],[77.063,10.29139],[77.0662,10.2977],[77.07261,10.29913],[77.07958,10.30301],[77.08845,10.30982],[77.09136,10.31392],[77.08866,10.31906],[77.08836,10.32459],[77.0812,10.32197],[77.08421,10.32953],[77.08236,10.33442],[77.07818,10.33736],[77.08455,10.34253],[77.08666,10.3494],[77.08996,10.35087],[77.08844,10.36118],[77.09171,10.36489],[77.08705,10.37744],[77.08106,10.38289],[77.0794,10.38758],[77.07528,10.38832],[77.06051,10.40483],[77.05728,10.40536],[77.0448,10.41483],[77.04488,10.42188],[77.0418,10.42638],[77.04467,10.43051],[77.04808,10.43101],[77.04965,10.43629],[77.0563,10.44474],[77.06437,10.44895],[77.0707,10.45828],[77.0732,10.45949],[77.07212,10.46615],[77.06894,10.46475],[77.06579,10.46572],[77.06636,10.46785],[77.06332,10.46889],[77.05962,10.47357],[77.05855,10.47906],[77.06259,10.48144],[77.06406,10.48741],[77.07407,10.495],[77.07443,10.5021],[77.07827,10.50223],[77.07716,10.50647],[77.07859,10.51486],[77.07635,10.51668],[77.07338,10.51638],[77.07664,10.52999],[77.07271,10.54513],[77.07374,10.54925],[77.07634,10.55117],[77.07703,10.55971],[77.08286,10.56257],[77.0805,10.56622],[77.08059,10.57051],[77.08541,10.57824],[77.09022,10.58119],[77.09056,10.58408],[77.1007,10.58293],[77.1022,10.58599],[77.11382,10.58517],[77.1152,10.58385],[77.12235,10.58511],[77.14395,10.58285],[77.15798,10.58422],[77.16363,10.58732],[77.16633,10.58718],[77.16628,10.59055],[77.17067,10.5997],[77.16932,10.60606],[77.17274,10.60825],[77.17548,10.62673],[77.17866,10.63251],[77.18114,10.64385],[77.17287,10.64384],[77.1523,10.65059],[77.15255,10.65464],[77.14906,10.65559],[77.14512,10.65993],[77.1413,10.67877],[77.14259,10.69573],[77.14103,10.71712],[77.14245,10.71848],[77.13415,10.75013],[77.1371,10.75247],[77.13761,10.75527],[77.14044,10.75523],[77.1409,10.76054],[77.14479,10.76138],[77.14535,10.76544],[77.14894,10.76695],[77.15276,10.76567],[77.1539,10.77178],[77.15695,10.77387],[77.15665,10.77777],[77.16025,10.77923],[77.15957,10.78789],[77.16122,10.79321],[77.16486,10.79295],[77.16596,10.79677],[77.1718,10.80217],[77.17424,10.79731],[77.17663,10.79735],[77.18473,10.7983],[77.19646,10.80272],[77.20399,10.80153],[77.21529,10.80346],[77.21028,10.79093],[77.21439,10.78556],[77.22518,10.78189],[77.23009,10.77741],[77.24333,10.77704],[77.24806,10.77831],[77.25413,10.77639],[77.28387,10.78663],[77.27591,10.79138],[77.2782,10.80274],[77.28585,10.80548],[77.28599,10.80745],[77.29057,10.81161],[77.29835,10.81149],[77.29903,10.8146],[77.29552,10.82691],[77.29153,10.82775],[77.29015,10.83158],[77.29215,10.83509],[77.29052,10.83537],[77.28899,10.83897],[77.2884,10.84809],[77.26675,10.85927],[77.25779,10.86983],[77.256,10.88874],[77.25104,10.90103],[77.24807,10.90465],[77.23993,10.90512],[77.23683,10.90722],[77.22088,10.9009],[77.21099,10.90227],[77.20787,10.90582],[77.2071,10.91083],[77.20344,10.91228],[77.19893,10.92023],[77.18869,10.91845],[77.18628,10.92173],[77.18348,10.92211],[77.18184,10.92057],[77.17366,10.93946],[77.1779,10.94202],[77.17375,10.94596],[77.1697,10.95679],[77.16994,10.96871],[77.15918,10.99071],[77.15378,10.99831],[77.16497,11.00217],[77.16747,11.00461],[77.16747,11.00809],[77.17158,11.00934],[77.17138,11.01143],[77.17402,11.01206],[77.17535,11.01579],[77.17577,11.02436],[77.17797,11.02892],[77.17889,11.03684],[77.1766,11.04722],[77.16609,11.06024],[77.16616,11.0649],[77.16839,11.06734],[77.19519,11.07883],[77.197,11.08258],[77.20535,11.08884],[77.21684,11.0901],[77.23174,11.09991],[77.23411,11.10339],[77.24636,11.1055],[77.25126,11.10967],[77.26403,11.10642],[77.26457,11.11063],[77.25355,11.12173],[77.25137,11.12897],[77.24221,11.13803],[77.23916,11.13774],[77.2357,11.13981],[77.23157,11.12668],[77.22505,11.12496],[77.21352,11.12674],[77.2131,11.13185],[77.21109,11.13297],[77.21249,11.13503],[77.20963,11.13475],[77.20954,11.13658],[77.21225,11.13794],[77.20996,11.1378],[77.20869,11.14057],[77.20672,11.14043],[77.20556,11.13832],[77.20213,11.14343],[77.19581,11.14423],[77.19515,11.14727],[77.19144,11.14751],[77.18958,11.15046],[77.18554,11.14915],[77.18652,11.14432],[77.18394,11.13949],[77.18085,11.13809],[77.17316,11.13818],[77.17307,11.14058],[77.17542,11.14208],[77.17537,11.14479],[77.17663,11.14484],[77.17872,11.14962],[77.17607,11.15248],[77.17649,11.1567],[77.17889,11.16125],[77.18123,11.16063],[77.18231,11.16195],[77.17907,11.1635],[77.17819,11.16246],[77.17345,11.16823],[77.17195,11.1672],[77.17101,11.16842],[77.16098,11.168],[77.15887,11.19739],[77.15391,11.20039],[77.15025,11.20055],[77.14798,11.20394],[77.14627,11.20387],[77.14503,11.20717],[77.14827,11.21447],[77.14647,11.21875],[77.14889,11.21868],[77.14923,11.22301],[77.15371,11.22288],[77.15619,11.23066],[77.15922,11.23149],[77.1595,11.24326],[77.1659,11.24428],[77.16278,11.25211],[77.16495,11.27018],[77.17008,11.28328],[77.16255,11.2835],[77.16244,11.281],[77.15604,11.27927],[77.15621,11.28127],[77.15505,11.28118],[77.15473,11.27841],[77.15344,11.27824],[77.15346,11.27955],[77.15127,11.27894],[77.15062,11.28122],[77.14764,11.2822],[77.14807,11.28599],[77.14384,11.2873],[77.14058,11.27982],[77.13915,11.27973],[77.13875,11.28608],[77.13723,11.28306],[77.13451,11.28296],[77.13097,11.2859],[77.12884,11.28501],[77.12627,11.2874],[77.12331,11.28701],[77.12332,11.28923],[77.11963,11.28982],[77.11844,11.29182],[77.11682,11.29846],[77.11874,11.29898],[77.11896,11.3026],[77.12592,11.30277],[77.12634,11.30798],[77.13083,11.30606],[77.13397,11.30797],[77.13468,11.30621],[77.13734,11.30563],[77.13838,11.30719],[77.14418,11.30488],[77.15057,11.30628],[77.15111,11.31854],[77.14894,11.32494],[77.15186,11.32971],[77.14786,11.33101],[77.14708,11.33622],[77.14173,11.33671],[77.13814,11.33999],[77.13848,11.34178],[77.13622,11.3438],[77.13784,11.34348],[77.13771,11.34579],[77.13568,11.34618],[77.13515,11.34885],[77.13228,11.35125],[77.13223,11.35463],[77.12932,11.35416],[77.13138,11.35767],[77.13015,11.35829],[77.13095,11.36125],[77.13313,11.3632],[77.12952,11.36665],[77.13054,11.37499],[77.12879,11.37554],[77.1284,11.37838],[77.11475,11.37893],[77.11311,11.38094],[77.11106,11.40441]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"57","area_level":"District","area_name":"Uttarkashi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.12256,31.43641],[79.10848,31.43763],[79.09956,31.44332],[79.09,31.44499],[79.07788,31.45268],[79.07046,31.4601],[79.06424,31.46208],[79.06174,31.46135],[79.05592,31.455],[79.05247,31.44694],[79.05085,31.44003],[79.05266,31.4231],[79.05151,31.41979],[79.03503,31.40792],[79.02374,31.39637],[79.01763,31.38556],[79.01192,31.36772],[79.01083,31.35708],[78.98991,31.3453],[78.96698,31.33689],[78.94759,31.31952],[78.94422,31.30793],[78.94166,31.27421],[78.93707,31.26062],[78.93269,31.25294],[78.91207,31.2551],[78.91155,31.25147],[78.9161,31.24859],[78.91942,31.24168],[78.92206,31.22531],[78.92609,31.2231],[78.92605,31.22007],[78.93113,31.21605],[78.94773,31.21677],[78.94868,31.21331],[78.94383,31.20648],[78.94703,31.20279],[78.948,31.19851],[78.95831,31.19037],[78.95753,31.18659],[78.97266,31.17991],[78.9792,31.17902],[78.9808,31.17616],[78.98373,31.17613],[78.98591,31.17383],[78.9905,31.16127],[78.98822,31.15421],[78.99083,31.14816],[78.98758,31.14329],[78.99076,31.13806],[78.9996,31.13469],[79.00366,31.12154],[79.0068,31.11853],[79.00892,31.10992],[79.00216,31.11242],[78.99855,31.10995],[78.99004,31.10852],[78.97299,31.10808],[78.96308,31.10118],[78.95073,31.09798],[78.94512,31.10057],[78.93223,31.10068],[78.92593,31.10944],[78.92057,31.11072],[78.91273,31.10764],[78.91231,31.10208],[78.9086,31.09886],[78.90044,31.09979],[78.89064,31.0969],[78.88543,31.09872],[78.87289,31.10886],[78.86524,31.12001],[78.85352,31.12208],[78.84801,31.12511],[78.84147,31.12971],[78.83814,31.13834],[78.83121,31.1406],[78.82734,31.15262],[78.82296,31.15774],[78.82489,31.16351],[78.81807,31.16778],[78.81304,31.16888],[78.81072,31.17187],[78.81047,31.18026],[78.8143,31.18754],[78.81738,31.18961],[78.81641,31.19437],[78.80991,31.19828],[78.79675,31.19641],[78.77916,31.18889],[78.76518,31.18576],[78.75641,31.18783],[78.72838,31.18965],[78.71833,31.18777],[78.7097,31.1897],[78.70336,31.189],[78.695,31.19217],[78.68677,31.19776],[78.67882,31.19625],[78.6719,31.19688],[78.66735,31.19075],[78.66172,31.18923],[78.65801,31.18504],[78.66001,31.19108],[78.65654,31.19357],[78.65732,31.19573],[78.64907,31.20217],[78.6493,31.21087],[78.64704,31.21472],[78.63655,31.21484],[78.62597,31.21787],[78.62257,31.22407],[78.60934,31.22926],[78.60092,31.2281],[78.59676,31.22512],[78.5895,31.22667],[78.57824,31.22526],[78.57486,31.22122],[78.56807,31.21915],[78.56549,31.21348],[78.55162,31.19991],[78.52652,31.19646],[78.50756,31.19587],[78.48375,31.19894],[78.48427,31.20121],[78.48145,31.20451],[78.4798,31.21378],[78.47286,31.21845],[78.46174,31.23603],[78.45771,31.23778],[78.45571,31.24102],[78.44999,31.24064],[78.44359,31.24435],[78.43658,31.25412],[78.43425,31.25458],[78.43116,31.25275],[78.42591,31.24425],[78.42074,31.24405],[78.4142,31.23961],[78.40695,31.24219],[78.40283,31.24789],[78.40717,31.25621],[78.39772,31.26622],[78.39617,31.27531],[78.38951,31.2742],[78.3863,31.27143],[78.38354,31.28248],[78.37032,31.28633],[78.35197,31.2806],[78.34561,31.28059],[78.33991,31.28267],[78.33187,31.27761],[78.31803,31.27892],[78.31678,31.28153],[78.31116,31.28314],[78.30804,31.27554],[78.31006,31.27409],[78.31045,31.27109],[78.30633,31.25989],[78.30255,31.25902],[78.29642,31.26113],[78.29188,31.25995],[78.28287,31.26621],[78.27996,31.26247],[78.27603,31.26151],[78.2735,31.25589],[78.26908,31.25232],[78.26868,31.24858],[78.26264,31.24519],[78.26047,31.23975],[78.25539,31.23851],[78.24951,31.24004],[78.25071,31.23331],[78.24695,31.23041],[78.24317,31.2293],[78.23709,31.23267],[78.22643,31.23501],[78.22032,31.23394],[78.21626,31.22971],[78.21517,31.222],[78.21244,31.21957],[78.20916,31.22012],[78.19948,31.2172],[78.19566,31.21971],[78.19218,31.22476],[78.18703,31.22705],[78.17976,31.22565],[78.17381,31.22684],[78.16715,31.22465],[78.16023,31.22548],[78.1581,31.2189],[78.15362,31.21822],[78.14842,31.2137],[78.14768,31.21059],[78.13338,31.20833],[78.1286,31.20078],[78.12348,31.20015],[78.10362,31.18538],[78.09714,31.18421],[78.08774,31.18724],[78.06596,31.18717],[78.05121,31.17989],[78.04264,31.1785],[78.04104,31.17292],[78.03384,31.16971],[78.02971,31.16411],[78.03034,31.15097],[78.02062,31.15155],[78.01445,31.15778],[78.00863,31.16082],[78.00082,31.16195],[77.99094,31.16005],[77.98472,31.15695],[77.98059,31.16212],[77.97327,31.16615],[77.96732,31.17337],[77.9589,31.17092],[77.95362,31.16595],[77.95149,31.16131],[77.94316,31.16126],[77.93516,31.15469],[77.92479,31.15043],[77.92152,31.15047],[77.91581,31.15389],[77.90862,31.15406],[77.89874,31.15023],[77.90045,31.1422],[77.89401,31.13396],[77.88905,31.13299],[77.89068,31.12175],[77.88876,31.11921],[77.88241,31.11772],[77.88052,31.11479],[77.87803,31.11503],[77.87845,31.11633],[77.87323,31.11497],[77.86382,31.10851],[77.86047,31.10159],[77.86374,31.09396],[77.85124,31.07337],[77.83806,31.07265],[77.82893,31.05827],[77.82436,31.05545],[77.82205,31.05519],[77.82296,31.05866],[77.81136,31.0591],[77.81679,31.05669],[77.81604,31.04998],[77.82162,31.04671],[77.82137,31.04274],[77.82779,31.03026],[77.83231,31.02818],[77.83435,31.0174],[77.8341,31.01443],[77.83157,31.01221],[77.83387,31.01108],[77.83395,31.00775],[77.8378,31.00506],[77.83842,30.99836],[77.84342,30.99508],[77.83883,30.99006],[77.84074,30.98754],[77.83928,30.98087],[77.84392,30.97899],[77.84369,30.97497],[77.8475,30.9732],[77.85483,30.96434],[77.85408,30.95344],[77.86333,30.95647],[77.86848,30.95099],[77.86785,30.94662],[77.8707,30.94418],[77.88022,30.94883],[77.88433,30.94558],[77.89718,30.95562],[77.89905,30.95543],[77.90018,30.95235],[77.90918,30.95657],[77.91955,30.96598],[77.92413,30.96763],[77.92715,30.97202],[77.93295,30.97156],[77.9391,30.97361],[77.95116,30.97424],[77.95589,30.97634],[77.95906,30.97547],[77.96256,30.97758],[77.96871,30.9776],[77.97442,30.97117],[77.9788,30.96872],[77.98237,30.96948],[77.98397,30.96525],[77.99,30.96335],[77.98649,30.9595],[77.9951,30.95686],[78.00026,30.9517],[78.00048,30.948],[78.01053,30.93801],[78.0134,30.93012],[78.01931,30.92336],[78.02056,30.91865],[78.01488,30.91618],[78.01643,30.90887],[77.99757,30.90608],[77.99345,30.90211],[77.98872,30.90024],[77.97854,30.90002],[77.97765,30.89457],[77.97399,30.88947],[77.98442,30.87922],[77.98203,30.87423],[77.98397,30.86671],[77.98712,30.8595],[77.99144,30.85936],[77.98917,30.85242],[77.99145,30.84091],[77.99825,30.83005],[77.99885,30.82675],[78.00304,30.82232],[78.0118,30.81861],[78.01734,30.81382],[78.01856,30.81075],[78.02313,30.80939],[78.02728,30.80411],[78.02675,30.79569],[78.02329,30.78944],[78.02673,30.78885],[78.03644,30.78242],[78.04129,30.77722],[78.04759,30.7748],[78.05282,30.76899],[78.05411,30.76495],[78.06225,30.76138],[78.06829,30.75203],[78.06877,30.74314],[78.07922,30.74064],[78.07951,30.73504],[78.07767,30.7305],[78.07955,30.72534],[78.08363,30.72204],[78.08368,30.71863],[78.07894,30.70976],[78.07221,30.70665],[78.07379,30.69847],[78.06694,30.68567],[78.06673,30.67491],[78.06263,30.6665],[78.05933,30.66421],[78.04766,30.66141],[78.04404,30.65765],[78.04257,30.65294],[78.03307,30.64521],[78.0291,30.64555],[78.02452,30.65112],[78.02037,30.65306],[78.01599,30.65359],[78.01083,30.65097],[78.0094,30.64595],[78.01406,30.62986],[78.01298,30.62597],[78.00825,30.62421],[78.00826,30.62052],[78.01259,30.61651],[78.02399,30.61325],[78.04134,30.60255],[78.04638,30.60199],[78.05699,30.60507],[78.06279,30.60421],[78.07529,30.6073],[78.06622,30.61878],[78.06495,30.62369],[78.07045,30.62489],[78.07697,30.6305],[78.08258,30.63123],[78.08688,30.63413],[78.09321,30.63183],[78.10077,30.63527],[78.10678,30.63356],[78.11499,30.63429],[78.11859,30.63704],[78.12323,30.63791],[78.12522,30.64062],[78.13055,30.6356],[78.13959,30.63226],[78.14679,30.63286],[78.15385,30.63561],[78.163,30.62661],[78.1624,30.62072],[78.17065,30.60472],[78.16446,30.60067],[78.16469,30.5884],[78.17527,30.58532],[78.18548,30.58564],[78.20524,30.57826],[78.20992,30.57868],[78.2191,30.58323],[78.23528,30.58635],[78.2389,30.59227],[78.24359,30.59518],[78.24108,30.6016],[78.24501,30.60796],[78.24911,30.6108],[78.25903,30.60725],[78.26869,30.61373],[78.27763,30.61189],[78.28887,30.59957],[78.29583,30.59466],[78.30013,30.59434],[78.29924,30.58932],[78.30206,30.58687],[78.2923,30.58132],[78.28863,30.57197],[78.29081,30.57016],[78.29656,30.56946],[78.30181,30.56425],[78.29817,30.56236],[78.28613,30.56365],[78.28496,30.55989],[78.28648,30.55256],[78.28969,30.55112],[78.29378,30.55526],[78.30781,30.55612],[78.31381,30.56114],[78.30851,30.5687],[78.30469,30.57153],[78.30776,30.5725],[78.31796,30.5742],[78.32426,30.56039],[78.32812,30.55969],[78.32772,30.55815],[78.33281,30.56328],[78.33877,30.56249],[78.33849,30.55134],[78.34497,30.54918],[78.3452,30.54719],[78.3426,30.54494],[78.34892,30.53366],[78.35652,30.53337],[78.35459,30.529],[78.36145,30.52147],[78.36687,30.52051],[78.36991,30.51764],[78.37693,30.51798],[78.38179,30.51246],[78.39375,30.50608],[78.39247,30.49828],[78.39664,30.49665],[78.39656,30.49345],[78.40333,30.49291],[78.40479,30.49076],[78.40335,30.48477],[78.40759,30.48025],[78.40452,30.47149],[78.41358,30.46845],[78.41118,30.47511],[78.41493,30.48818],[78.42435,30.49517],[78.42575,30.50556],[78.42328,30.50883],[78.42581,30.51092],[78.42555,30.51646],[78.42899,30.51717],[78.43701,30.523],[78.44314,30.52383],[78.4442,30.53511],[78.44665,30.53675],[78.44968,30.5345],[78.45373,30.54252],[78.45081,30.54728],[78.45073,30.56357],[78.44661,30.56734],[78.43857,30.56957],[78.43626,30.57359],[78.43972,30.58581],[78.4364,30.59038],[78.43931,30.59166],[78.4386,30.59434],[78.44148,30.60475],[78.44661,30.60869],[78.44684,30.61405],[78.45225,30.61504],[78.45615,30.61327],[78.46835,30.61389],[78.4724,30.62009],[78.47913,30.62531],[78.48262,30.62113],[78.48713,30.62179],[78.50195,30.60836],[78.50741,30.6023],[78.50918,30.59752],[78.51361,30.59538],[78.50887,30.58956],[78.50933,30.5877],[78.50431,30.58582],[78.49954,30.58079],[78.49901,30.56562],[78.49604,30.56085],[78.49569,30.55721],[78.49827,30.55238],[78.49604,30.5497],[78.49486,30.54082],[78.49679,30.53891],[78.49668,30.53064],[78.5033,30.53153],[78.50831,30.53029],[78.51555,30.53266],[78.5183,30.52754],[78.52911,30.53156],[78.53891,30.52702],[78.54713,30.53322],[78.54546,30.53654],[78.54703,30.53814],[78.54604,30.54625],[78.54383,30.54826],[78.54393,30.5514],[78.54866,30.55874],[78.54936,30.56555],[78.54767,30.56699],[78.54956,30.57347],[78.55411,30.57551],[78.55759,30.58328],[78.55991,30.58492],[78.55987,30.58919],[78.56444,30.59145],[78.5697,30.59773],[78.57748,30.60212],[78.57324,30.60606],[78.58338,30.61761],[78.58449,30.62227],[78.59457,30.62668],[78.59713,30.63068],[78.59609,30.64968],[78.59997,30.67224],[78.59451,30.67409],[78.59274,30.67759],[78.58522,30.68056],[78.58789,30.68727],[78.59615,30.69152],[78.60089,30.6916],[78.60841,30.68626],[78.61133,30.6862],[78.62088,30.6912],[78.62331,30.68857],[78.62713,30.69024],[78.63072,30.68933],[78.63683,30.68449],[78.65628,30.68968],[78.65854,30.69239],[78.6571,30.69591],[78.66111,30.70734],[78.68294,30.71356],[78.70016,30.71552],[78.70852,30.72329],[78.71409,30.7263],[78.71937,30.73369],[78.72761,30.7301],[78.74005,30.71639],[78.7519,30.71042],[78.75686,30.71285],[78.75651,30.71546],[78.75911,30.71788],[78.77025,30.72096],[78.77413,30.72018],[78.78331,30.72262],[78.80344,30.72283],[78.80491,30.72428],[78.80813,30.719],[78.81164,30.72508],[78.82989,30.7319],[78.8345,30.73697],[78.84787,30.73771],[78.85452,30.75187],[78.85258,30.77219],[78.84958,30.7786],[78.85243,30.79035],[78.85596,30.7955],[78.85405,30.80667],[78.86253,30.816],[78.85949,30.82353],[78.85493,30.82673],[78.85476,30.83058],[78.85028,30.83648],[78.84938,30.84737],[78.85951,30.8588],[78.86823,30.86259],[78.86883,30.86828],[78.87211,30.87507],[78.8819,30.87761],[78.89036,30.8748],[78.89565,30.87097],[78.90333,30.87341],[78.90738,30.87204],[78.91481,30.87732],[78.92508,30.87816],[78.92599,30.87365],[78.93325,30.87346],[78.93923,30.8685],[78.94552,30.85365],[78.95156,30.85531],[78.96964,30.85263],[78.97608,30.85336],[78.99482,30.8615],[79.00302,30.85854],[79.00706,30.85234],[79.01719,30.84443],[79.02058,30.83057],[79.01877,30.82167],[79.02779,30.8114],[79.0352,30.80583],[79.03789,30.80736],[79.04326,30.80671],[79.0553,30.80079],[79.06777,30.79818],[79.07566,30.78813],[79.08045,30.78593],[79.09185,30.77584],[79.11264,30.77245],[79.1175,30.77298],[79.12675,30.76956],[79.12965,30.76655],[79.1323,30.7557],[79.14286,30.74746],[79.14907,30.75168],[79.1579,30.75362],[79.16144,30.75619],[79.1691,30.75581],[79.17436,30.75199],[79.18305,30.75011],[79.19233,30.74189],[79.19733,30.73999],[79.19947,30.73295],[79.20771,30.7376],[79.2219,30.73627],[79.23559,30.7329],[79.24167,30.73267],[79.24472,30.73443],[79.25338,30.72783],[79.25584,30.72276],[79.26138,30.72202],[79.26735,30.72455],[79.27473,30.72425],[79.27988,30.73061],[79.27976,30.73769],[79.28956,30.74985],[79.28016,30.75624],[79.2718,30.7584],[79.2711,30.76085],[79.26107,30.77004],[79.26252,30.77261],[79.25932,30.77957],[79.24991,30.78201],[79.24539,30.78488],[79.24389,30.79236],[79.24052,30.79391],[79.23866,30.79759],[79.2401,30.8033],[79.2361,30.8061],[79.22873,30.80745],[79.22482,30.81107],[79.22626,30.81939],[79.24086,30.8247],[79.23961,30.83316],[79.23664,30.83882],[79.24238,30.8426],[79.25133,30.84332],[79.25132,30.84825],[79.25499,30.85616],[79.255,30.8601],[79.25815,30.86373],[79.25902,30.8693],[79.27029,30.8698],[79.27433,30.87402],[79.28093,30.87658],[79.27184,30.89155],[79.27,30.9069],[79.27273,30.90975],[79.28361,30.91376],[79.2809,30.92331],[79.28446,30.9353],[79.27375,30.94551],[79.26694,30.94607],[79.26351,30.95488],[79.26936,30.9591],[79.28191,30.96181],[79.2853,30.96606],[79.29201,30.96813],[79.30114,30.96811],[79.30284,30.96499],[79.31429,30.95904],[79.32184,30.96089],[79.33038,30.96991],[79.32857,30.97596],[79.32323,30.98363],[79.32622,30.98607],[79.3316,30.9957],[79.32854,30.99919],[79.31319,31.00166],[79.30813,31.00479],[79.30602,31.01105],[79.30666,31.01375],[79.31174,31.01587],[79.32026,31.02427],[79.34284,31.03036],[79.35218,31.03141],[79.36236,31.03678],[79.37545,31.05373],[79.3801,31.05365],[79.38283,31.05536],[79.38396,31.06236],[79.38716,31.06699],[79.39154,31.06952],[79.40128,31.06866],[79.40654,31.07061],[79.41053,31.0754],[79.40773,31.07699],[79.40625,31.08076],[79.40212,31.10214],[79.3988,31.10779],[79.33253,31.12735],[79.31748,31.13672],[79.3127,31.14205],[79.30943,31.14744],[79.3072,31.15778],[79.30096,31.16781],[79.30316,31.19037],[79.2999,31.20573],[79.29262,31.22122],[79.28437,31.23239],[79.28017,31.23496],[79.25707,31.24017],[79.25187,31.24302],[79.25027,31.25824],[79.25239,31.266],[79.26988,31.27858],[79.27186,31.28319],[79.2715,31.28677],[79.26577,31.29321],[79.25184,31.30177],[79.23921,31.31421],[79.23936,31.31794],[79.2465,31.3253],[79.24648,31.33004],[79.225,31.3387],[79.21157,31.34639],[79.19928,31.35653],[79.19221,31.36281],[79.18235,31.38517],[79.17375,31.39547],[79.14357,31.42547],[79.12256,31.43641]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"570","area_level":"District","area_name":"Cuddalore","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.71,11.88921],[79.69961,11.88911],[79.69686,11.88858],[79.69658,11.88667],[79.68468,11.88585],[79.68506,11.88098],[79.68982,11.88084],[79.68938,11.86424],[79.6946,11.85971],[79.69474,11.84442],[79.69972,11.83956],[79.69986,11.83655],[79.70309,11.83191],[79.68525,11.83195],[79.68998,11.82762],[79.69077,11.8204],[79.6875,11.82071],[79.68572,11.81251],[79.68813,11.81224],[79.69057,11.807],[79.68966,11.80214],[79.68393,11.80217],[79.68142,11.79624],[79.67458,11.80354],[79.67481,11.80679],[79.66819,11.8106],[79.66402,11.81014],[79.64735,11.79937],[79.6411,11.7985],[79.63675,11.80046],[79.62432,11.81179],[79.62067,11.82014],[79.61684,11.82475],[79.60381,11.82904],[79.59082,11.84148],[79.57999,11.84363],[79.57304,11.83998],[79.56502,11.83993],[79.55054,11.84655],[79.54274,11.84792],[79.52916,11.85709],[79.50995,11.85759],[79.49871,11.86259],[79.47099,11.87115],[79.45508,11.87149],[79.45342,11.8628],[79.45124,11.86276],[79.45004,11.85404],[79.45233,11.85398],[79.4515,11.84908],[79.46043,11.84682],[79.47223,11.84688],[79.47242,11.84509],[79.4688,11.84356],[79.47108,11.84228],[79.46971,11.84102],[79.47196,11.83916],[79.47164,11.83535],[79.4805,11.83718],[79.48093,11.82837],[79.47701,11.82297],[79.47978,11.81997],[79.48269,11.81185],[79.47899,11.80667],[79.47337,11.80534],[79.47107,11.80003],[79.46831,11.79924],[79.46393,11.80056],[79.46589,11.8022],[79.46642,11.80728],[79.45368,11.81108],[79.44945,11.80821],[79.44352,11.80996],[79.44169,11.80834],[79.43828,11.79521],[79.43935,11.79067],[79.43544,11.78227],[79.43197,11.78302],[79.43064,11.77854],[79.43531,11.77503],[79.43575,11.76781],[79.43878,11.76663],[79.44198,11.76837],[79.44324,11.7652],[79.44627,11.76538],[79.44703,11.76389],[79.45088,11.76457],[79.4505,11.76825],[79.45378,11.76967],[79.46375,11.76725],[79.46031,11.75531],[79.46309,11.75419],[79.46173,11.75028],[79.46279,11.74323],[79.45692,11.73785],[79.44653,11.73526],[79.44255,11.73529],[79.4398,11.73763],[79.43766,11.73373],[79.43132,11.73073],[79.43111,11.73195],[79.42845,11.73116],[79.4291,11.72819],[79.43497,11.72608],[79.43586,11.72394],[79.43706,11.71858],[79.43452,11.70334],[79.43715,11.69176],[79.43963,11.6915],[79.44269,11.6862],[79.4425,11.67116],[79.44428,11.66601],[79.43563,11.66595],[79.43338,11.66394],[79.43165,11.66777],[79.42846,11.66679],[79.41784,11.6679],[79.41839,11.6715],[79.40997,11.67276],[79.39928,11.67737],[79.39523,11.67725],[79.39548,11.68027],[79.38498,11.68086],[79.38162,11.67804],[79.37691,11.67912],[79.37428,11.67512],[79.36155,11.67269],[79.36052,11.66475],[79.36321,11.66259],[79.35984,11.65989],[79.35116,11.65763],[79.34473,11.66025],[79.33231,11.66096],[79.32954,11.65774],[79.32802,11.64921],[79.32641,11.64784],[79.31998,11.648],[79.31851,11.64208],[79.31161,11.6439],[79.30873,11.63266],[79.29635,11.63636],[79.29666,11.64269],[79.29146,11.64727],[79.27957,11.64919],[79.27836,11.64717],[79.2752,11.64712],[79.2734,11.64512],[79.27109,11.64621],[79.27089,11.64373],[79.26317,11.64684],[79.26296,11.64922],[79.24874,11.6524],[79.24865,11.64902],[79.2441,11.64247],[79.24121,11.64176],[79.23561,11.62933],[79.22464,11.63198],[79.2237,11.63552],[79.21889,11.6389],[79.21753,11.638],[79.21582,11.63917],[79.21554,11.63729],[79.21,11.63372],[79.2112,11.63038],[79.20988,11.62589],[79.21261,11.6254],[79.21239,11.62009],[79.20553,11.61634],[79.20383,11.61194],[79.20259,11.61056],[79.20154,11.61158],[79.19498,11.60339],[79.19254,11.59299],[79.19028,11.59354],[79.18369,11.58598],[79.17689,11.59172],[79.15649,11.59824],[79.15023,11.59746],[79.14774,11.58948],[79.14365,11.58769],[79.13576,11.58895],[79.13412,11.59013],[79.13359,11.59393],[79.11647,11.59918],[79.11806,11.60552],[79.11617,11.60536],[79.11633,11.60953],[79.11294,11.61329],[79.10618,11.61489],[79.10287,11.61068],[79.09822,11.61417],[79.09863,11.62115],[79.09135,11.62329],[79.08409,11.63432],[79.07822,11.62959],[79.06748,11.63022],[79.06934,11.62093],[79.06557,11.61133],[79.07697,11.60799],[79.07787,11.59689],[79.07236,11.59921],[79.06815,11.59877],[79.06823,11.59755],[79.06526,11.59685],[79.06467,11.59279],[79.05799,11.58966],[79.05501,11.5864],[79.04919,11.58572],[79.04318,11.58723],[79.04353,11.58923],[79.04811,11.59153],[79.04981,11.59562],[79.04452,11.59669],[79.04176,11.59913],[79.03346,11.59798],[79.02954,11.60178],[79.02385,11.60278],[79.01839,11.60675],[79.01214,11.60266],[79.01435,11.5999],[79.01453,11.59526],[79.01887,11.59287],[79.0154,11.58964],[79.01544,11.58608],[79.01334,11.58341],[79.00806,11.58214],[79.00761,11.57962],[79.0045,11.57735],[79.00441,11.57463],[78.9963,11.57582],[78.99184,11.57071],[78.98103,11.56702],[78.97367,11.56951],[78.97426,11.57456],[78.97,11.57427],[78.96184,11.56983],[78.95612,11.56928],[78.94642,11.57123],[78.93853,11.56959],[78.93691,11.56737],[78.93179,11.56767],[78.93063,11.56582],[78.9238,11.56708],[78.91955,11.5562],[78.92122,11.55384],[78.91809,11.54623],[78.91873,11.54431],[78.91526,11.53853],[78.9149,11.53382],[78.9177,11.533],[78.91748,11.5316],[78.91647,11.52839],[78.91137,11.52332],[78.90494,11.50535],[78.88567,11.50613],[78.87861,11.50985],[78.87763,11.50752],[78.884,11.49783],[78.89007,11.49371],[78.89156,11.48909],[78.90867,11.47592],[78.91157,11.46542],[78.9157,11.46283],[78.92151,11.4537],[78.92475,11.45258],[78.92917,11.44331],[78.94167,11.43198],[78.94827,11.41955],[78.95608,11.41417],[78.96209,11.40546],[78.97218,11.40562],[78.98381,11.40291],[78.99236,11.4071],[78.99699,11.40755],[79.01072,11.39743],[79.03244,11.39357],[79.053,11.40283],[79.07117,11.40039],[79.08314,11.39679],[79.10588,11.40172],[79.12839,11.3942],[79.14247,11.38426],[79.16145,11.38181],[79.17228,11.37471],[79.17664,11.37396],[79.18347,11.37511],[79.18971,11.37932],[79.21083,11.38523],[79.22307,11.3914],[79.23024,11.39201],[79.2354,11.39088],[79.23783,11.38862],[79.23896,11.38321],[79.23818,11.37266],[79.24156,11.36962],[79.24943,11.37284],[79.2555,11.38617],[79.25861,11.38847],[79.26764,11.38571],[79.27293,11.38577],[79.27362,11.38034],[79.29602,11.37999],[79.29,11.4023],[79.29259,11.41233],[79.29793,11.41211],[79.30797,11.41489],[79.31266,11.41635],[79.31274,11.41849],[79.33093,11.41943],[79.34613,11.41582],[79.35319,11.41891],[79.36837,11.4176],[79.37772,11.41127],[79.37737,11.4053],[79.37456,11.40489],[79.37324,11.40078],[79.37329,11.39853],[79.37719,11.39744],[79.38404,11.39712],[79.38543,11.40192],[79.38243,11.40225],[79.38246,11.40032],[79.37962,11.40013],[79.37765,11.4029],[79.37963,11.40395],[79.37981,11.41051],[79.38508,11.40921],[79.38465,11.40658],[79.38758,11.40623],[79.38789,11.40397],[79.39407,11.4017],[79.39402,11.39925],[79.39133,11.399],[79.39055,11.3974],[79.38974,11.39054],[79.38975,11.38795],[79.39198,11.38816],[79.39132,11.37823],[79.39407,11.37717],[79.39029,11.37296],[79.3891,11.36876],[79.38923,11.36694],[79.39362,11.36671],[79.3952,11.35351],[79.3983,11.35304],[79.40034,11.3499],[79.40537,11.35414],[79.40854,11.36486],[79.41297,11.36432],[79.41548,11.36164],[79.4247,11.36036],[79.4258,11.36666],[79.42843,11.35739],[79.43732,11.35729],[79.43658,11.34892],[79.4308,11.34555],[79.4331,11.33991],[79.43554,11.34059],[79.43753,11.3338],[79.44639,11.33353],[79.4466,11.33569],[79.44865,11.33524],[79.45237,11.33208],[79.45195,11.32856],[79.45533,11.3274],[79.45527,11.32588],[79.4581,11.32764],[79.45795,11.32584],[79.4615,11.32321],[79.4608,11.32078],[79.46408,11.32121],[79.46323,11.31833],[79.4709,11.31813],[79.47355,11.31407],[79.48742,11.31683],[79.4983,11.31389],[79.49508,11.30359],[79.4971,11.30306],[79.4975,11.293],[79.50174,11.291],[79.50117,11.27269],[79.5039,11.27241],[79.50525,11.26458],[79.50398,11.25777],[79.49489,11.25851],[79.49517,11.24841],[79.50505,11.23803],[79.50495,11.23275],[79.51021,11.22814],[79.50547,11.22241],[79.50072,11.20522],[79.50182,11.20335],[79.49563,11.19898],[79.4818,11.17763],[79.47235,11.1772],[79.46388,11.17054],[79.46008,11.15937],[79.45582,11.15588],[79.45866,11.15055],[79.47267,11.161],[79.47903,11.16173],[79.49962,11.17552],[79.52672,11.18373],[79.56194,11.20828],[79.57022,11.20933],[79.57778,11.21283],[79.59835,11.21823],[79.60857,11.22931],[79.61154,11.24905],[79.61637,11.25553],[79.6231,11.25518],[79.63362,11.24631],[79.64696,11.24926],[79.64846,11.25192],[79.64912,11.26185],[79.64461,11.27108],[79.64242,11.28364],[79.64563,11.29362],[79.65103,11.29993],[79.65723,11.30392],[79.6759,11.30761],[79.68381,11.31199],[79.72451,11.34584],[79.73468,11.34971],[79.75931,11.35262],[79.75932,11.36264],[79.75692,11.37289],[79.76439,11.38197],[79.77161,11.38141],[79.7813,11.37466],[79.79157,11.37243],[79.80436,11.38323],[79.80692,11.3919],[79.80708,11.40113],[79.81288,11.42269],[79.81071,11.43274],[79.80553,11.448],[79.79768,11.46375],[79.79474,11.4662],[79.79814,11.45878],[79.79633,11.45919],[79.79205,11.46486],[79.7909,11.47068],[79.77707,11.48855],[79.77562,11.49402],[79.77923,11.50149],[79.77864,11.50643],[79.7707,11.51371],[79.77721,11.50615],[79.77807,11.50273],[79.77824,11.50152],[79.77464,11.50095],[79.77427,11.50369],[79.77273,11.50107],[79.76793,11.51068],[79.7677,11.51372],[79.77189,11.50589],[79.77381,11.50458],[79.77405,11.50616],[79.77053,11.50978],[79.7629,11.52953],[79.7596,11.53989],[79.75698,11.55705],[79.75736,11.59527],[79.76065,11.62437],[79.77299,11.6856],[79.78657,11.73366],[79.79586,11.78572],[79.78443,11.78734],[79.78124,11.7843],[79.78049,11.78111],[79.77194,11.78218],[79.77022,11.78342],[79.77066,11.78951],[79.76886,11.78912],[79.76882,11.79073],[79.76591,11.79183],[79.762,11.79079],[79.76096,11.78694],[79.7576,11.78345],[79.7551,11.77523],[79.74978,11.77609],[79.74027,11.78089],[79.7319,11.78076],[79.72618,11.78252],[79.72186,11.78686],[79.71988,11.78495],[79.71236,11.79151],[79.71391,11.7963],[79.71702,11.79755],[79.72282,11.79649],[79.72312,11.80285],[79.7253,11.80315],[79.72452,11.81044],[79.73572,11.80932],[79.73479,11.81685],[79.73301,11.81813],[79.73166,11.8244],[79.73239,11.8334],[79.72945,11.83696],[79.73821,11.83692],[79.73673,11.84421],[79.76443,11.83373],[79.76499,11.82412],[79.77013,11.82259],[79.77304,11.82267],[79.77332,11.82638],[79.77838,11.83171],[79.78649,11.83099],[79.79236,11.82755],[79.7958,11.8285],[79.79507,11.82569],[79.79754,11.82456],[79.8007,11.83064],[79.79868,11.8333],[79.79364,11.83235],[79.79384,11.83355],[79.79814,11.83465],[79.79829,11.8387],[79.80225,11.83389],[79.80706,11.83354],[79.80783,11.83658],[79.80656,11.83708],[79.80616,11.84167],[79.80821,11.84526],[79.80067,11.85527],[79.78228,11.85588],[79.78016,11.84811],[79.77672,11.8452],[79.77588,11.83841],[79.77244,11.83662],[79.76819,11.8388],[79.76548,11.84168],[79.76433,11.84687],[79.76217,11.84839],[79.7632,11.85183],[79.76513,11.85194],[79.76696,11.858],[79.7695,11.85827],[79.77088,11.86133],[79.76928,11.86507],[79.77009,11.87461],[79.76853,11.87593],[79.76453,11.87545],[79.76399,11.87697],[79.75743,11.87607],[79.75868,11.86847],[79.75387,11.86593],[79.7541,11.85106],[79.75189,11.84835],[79.74311,11.84832],[79.7436,11.85857],[79.74195,11.8628],[79.73937,11.8647],[79.73269,11.86562],[79.73259,11.86256],[79.72112,11.8625],[79.7189,11.85329],[79.71343,11.86067],[79.71271,11.86665],[79.70826,11.86909],[79.71,11.88921]],[[79.6994,11.87423],[79.69907,11.86129],[79.696,11.86035],[79.69723,11.87408],[79.6994,11.87423]],[[79.69711,11.82307],[79.702,11.82291],[79.70423,11.81347],[79.69299,11.81374],[79.69459,11.82304],[79.69711,11.82307]]],[[[79.78191,11.90229],[79.7815,11.90276],[79.78079,11.90302],[79.77956,11.90436],[79.77882,11.90465],[79.77539,11.90499],[79.77516,11.90183],[79.77198,11.9019],[79.77201,11.90269],[79.76984,11.90277],[79.76925,11.90174],[79.7692,11.90066],[79.77288,11.90044],[79.77286,11.89901],[79.77208,11.89915],[79.77053,11.89088],[79.77107,11.89006],[79.77085,11.88905],[79.77109,11.8875],[79.77178,11.8864],[79.77202,11.88537],[79.77084,11.88403],[79.77102,11.88344],[79.77201,11.88363],[79.77356,11.88329],[79.77284,11.87522],[79.77345,11.87517],[79.7739,11.87654],[79.7762,11.87822],[79.77895,11.87759],[79.77967,11.87791],[79.77952,11.87651],[79.78003,11.87549],[79.7799,11.87239],[79.77924,11.86879],[79.77859,11.86844],[79.77844,11.86767],[79.77769,11.86672],[79.77769,11.86647],[79.77842,11.86655],[79.77833,11.86316],[79.78068,11.86275],[79.78109,11.86281],[79.78137,11.86335],[79.7823,11.86323],[79.78236,11.86279],[79.78521,11.86283],[79.78673,11.86865],[79.78699,11.87018],[79.78678,11.87146],[79.78721,11.87333],[79.78818,11.87368],[79.78825,11.87492],[79.78921,11.87561],[79.78959,11.87716],[79.79023,11.87731],[79.79029,11.87681],[79.79237,11.87685],[79.79258,11.87785],[79.79181,11.87796],[79.79195,11.87954],[79.79212,11.88033],[79.79323,11.88219],[79.79345,11.88365],[79.79483,11.88521],[79.79467,11.88643],[79.79492,11.88801],[79.79566,11.89145],[79.79675,11.89429],[79.79675,11.89811],[79.79649,11.89989],[79.79395,11.89897],[79.79291,11.898],[79.79057,11.89711],[79.78873,11.89676],[79.78767,11.89684],[79.78533,11.89914],[79.78257,11.90127],[79.78191,11.90229]],[[79.78902,11.89504],[79.78926,11.89584],[79.79099,11.89533],[79.79071,11.89455],[79.78902,11.89504]],[[79.79125,11.88393],[79.79159,11.885],[79.79332,11.88455],[79.79295,11.88348],[79.79125,11.88393]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"571","area_level":"District","area_name":"Dharmapuri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.95003,12.5055],[77.94241,12.51368],[77.92147,12.50416],[77.91314,12.50648],[77.90892,12.51266],[77.90507,12.50562],[77.90036,12.50334],[77.9049,12.50133],[77.89993,12.49965],[77.90522,12.49423],[77.9058,12.48937],[77.92224,12.4907],[77.92462,12.48438],[77.93451,12.46944],[77.93422,12.46753],[77.92844,12.46629],[77.92593,12.46373],[77.9238,12.45606],[77.93043,12.44176],[77.93147,12.4411],[77.93806,12.44497],[77.94034,12.4499],[77.94513,12.44945],[77.94696,12.4475],[77.94671,12.4439],[77.95244,12.44087],[77.9631,12.43028],[77.96599,12.41977],[77.9709,12.4127],[77.97111,12.40979],[77.96821,12.40517],[77.96814,12.40212],[77.97001,12.40185],[77.96783,12.3943],[77.94948,12.37509],[77.95125,12.36725],[77.95052,12.36162],[77.95321,12.35881],[77.95462,12.3513],[77.94983,12.34867],[77.9477,12.34],[77.94853,12.33657],[77.9348,12.33035],[77.9326,12.32698],[77.92675,12.3251],[77.92215,12.32538],[77.91832,12.32807],[77.91188,12.32837],[77.90931,12.32676],[77.89478,12.33352],[77.88176,12.33378],[77.87924,12.33585],[77.86721,12.33024],[77.8684,12.32479],[77.87188,12.32444],[77.87099,12.31713],[77.87501,12.30325],[77.87292,12.2917],[77.87371,12.28829],[77.86994,12.28048],[77.86773,12.26576],[77.86168,12.25448],[77.85378,12.26193],[77.84525,12.26218],[77.83351,12.24649],[77.81452,12.23421],[77.8106,12.22677],[77.80922,12.20047],[77.8035,12.17622],[77.79827,12.1723],[77.79637,12.17296],[77.79477,12.16879],[77.79392,12.1477],[77.79068,12.1481],[77.77684,12.1574],[77.77245,12.17196],[77.76103,12.16932],[77.74672,12.15585],[77.74679,12.14453],[77.74981,12.13846],[77.75721,12.13044],[77.7738,12.12052],[77.77617,12.11732],[77.77639,12.11228],[77.77259,12.10829],[77.76775,12.10664],[77.75569,12.07973],[77.74271,12.07002],[77.72754,12.06204],[77.71489,12.04244],[77.70891,12.03602],[77.69637,12.01577],[77.67474,11.96594],[77.67451,11.9539],[77.67567,11.95201],[77.69133,11.94184],[77.70117,11.94357],[77.70881,11.9414],[77.73675,11.94055],[77.73901,11.9392],[77.74068,11.93132],[77.74548,11.92732],[77.75063,11.92808],[77.75144,11.92357],[77.75787,11.91871],[77.76267,11.90991],[77.77363,11.91156],[77.8019,11.9082],[77.80742,11.90908],[77.83464,11.90156],[77.8398,11.89749],[77.84527,11.89648],[77.84774,11.8943],[77.85138,11.89908],[77.85005,11.9049],[77.85877,11.90843],[77.86121,11.91285],[77.86709,11.91574],[77.87308,11.91113],[77.88322,11.9122],[77.88694,11.90791],[77.89203,11.90887],[77.89546,11.90732],[77.89888,11.90291],[77.90508,11.90029],[77.91095,11.90109],[77.91715,11.89829],[77.92088,11.90088],[77.93044,11.89919],[77.93293,11.90134],[77.93763,11.89959],[77.94162,11.89588],[77.94476,11.89777],[77.94851,11.89494],[77.95067,11.89921],[77.961,11.90092],[77.97035,11.89556],[77.97883,11.89724],[77.97997,11.90296],[77.98421,11.90245],[77.98704,11.906],[77.99486,11.90826],[77.99604,11.91021],[77.99843,11.90975],[77.99834,11.91162],[78.00098,11.91418],[78.00636,11.91443],[78.0113,11.92131],[78.01634,11.91968],[78.01986,11.92094],[78.02261,11.9194],[78.02686,11.92045],[78.02958,11.92505],[78.02991,11.92893],[78.03429,11.93225],[78.0343,11.93454],[78.037,11.93396],[78.03904,11.93634],[78.0409,11.93533],[78.05239,11.93849],[78.07372,11.9376],[78.0769,11.94137],[78.07927,11.94013],[78.08057,11.94435],[78.09023,11.94754],[78.09053,11.95007],[78.095,11.94911],[78.09571,11.95326],[78.0991,11.95359],[78.1006,11.95576],[78.10303,11.95476],[78.10719,11.95581],[78.11805,11.96036],[78.12207,11.95931],[78.12904,11.9645],[78.13519,11.96323],[78.13707,11.96563],[78.14486,11.96825],[78.14706,11.96653],[78.14948,11.96835],[78.15634,11.96652],[78.1582,11.96847],[78.16142,11.9671],[78.16848,11.96742],[78.17906,11.97284],[78.18285,11.97043],[78.19066,11.97362],[78.20702,11.97593],[78.21145,11.97434],[78.21526,11.97681],[78.2219,11.9759],[78.22315,11.97781],[78.22704,11.97891],[78.23487,11.97926],[78.23798,11.97254],[78.24503,11.96819],[78.24511,11.96383],[78.24835,11.95972],[78.24791,11.95656],[78.25328,11.95106],[78.25008,11.93817],[78.24309,11.93054],[78.24245,11.92776],[78.23703,11.92195],[78.23797,11.92125],[78.23439,11.91895],[78.23579,11.91796],[78.24197,11.92666],[78.24839,11.92814],[78.25264,11.93377],[78.2548,11.93219],[78.25589,11.93318],[78.25684,11.93574],[78.25485,11.93732],[78.257,11.94022],[78.27208,11.93911],[78.27276,11.93792],[78.26654,11.92966],[78.26264,11.92744],[78.26299,11.92527],[78.25874,11.91905],[78.25795,11.91236],[78.2619,11.91197],[78.26427,11.91825],[78.27503,11.93144],[78.28058,11.93242],[78.28454,11.92916],[78.29076,11.9321],[78.29366,11.92972],[78.29156,11.92748],[78.28781,11.92464],[78.28022,11.92359],[78.27999,11.91494],[78.26902,11.90025],[78.27289,11.89877],[78.27406,11.90008],[78.28007,11.89957],[78.28428,11.90358],[78.29265,11.90677],[78.29084,11.91243],[78.29158,11.91454],[78.29912,11.91763],[78.30231,11.92275],[78.3099,11.92414],[78.31713,11.93172],[78.31954,11.93238],[78.32117,11.92961],[78.32439,11.93009],[78.32854,11.92731],[78.3315,11.92224],[78.33125,11.91895],[78.32662,11.91462],[78.3227,11.90521],[78.32639,11.89958],[78.32123,11.89409],[78.3163,11.89208],[78.30773,11.88301],[78.30915,11.88119],[78.31935,11.89056],[78.32806,11.89407],[78.33627,11.90048],[78.34001,11.89722],[78.35426,11.91229],[78.35705,11.91359],[78.35894,11.9117],[78.36003,11.90895],[78.35849,11.90169],[78.35313,11.89416],[78.35468,11.89167],[78.36575,11.89184],[78.36809,11.88745],[78.36756,11.88057],[78.3603,11.86742],[78.35379,11.86074],[78.35139,11.84866],[78.34801,11.84849],[78.35153,11.84545],[78.35142,11.84276],[78.34707,11.84044],[78.35071,11.83758],[78.35078,11.83392],[78.34559,11.8242],[78.33904,11.81651],[78.33643,11.80958],[78.32716,11.79548],[78.31287,11.78269],[78.32828,11.77598],[78.34502,11.79349],[78.34821,11.79433],[78.35124,11.79285],[78.37068,11.81642],[78.38057,11.82572],[78.383,11.82947],[78.38249,11.83353],[78.3863,11.83935],[78.38735,11.84632],[78.39316,11.85246],[78.3949,11.85974],[78.40041,11.86327],[78.40328,11.86876],[78.40315,11.87355],[78.41438,11.88014],[78.41979,11.87998],[78.42777,11.87424],[78.43529,11.87387],[78.44148,11.86835],[78.43307,11.86223],[78.43508,11.85467],[78.43858,11.84833],[78.44067,11.83965],[78.45013,11.83168],[78.44909,11.83013],[78.45538,11.82635],[78.45964,11.82714],[78.46882,11.82374],[78.47791,11.81764],[78.49083,11.81771],[78.49882,11.81396],[78.509,11.81382],[78.51196,11.8115],[78.51773,11.81222],[78.52189,11.81533],[78.53503,11.80718],[78.54677,11.80695],[78.5743,11.81942],[78.59584,11.82276],[78.6031,11.83298],[78.60162,11.83656],[78.60992,11.85266],[78.61823,11.85971],[78.61961,11.86337],[78.62533,11.86717],[78.62768,11.87303],[78.63366,11.87418],[78.6362,11.87893],[78.63455,11.88834],[78.6502,11.8845],[78.65506,11.88536],[78.656,11.89141],[78.66083,11.89532],[78.67548,11.89826],[78.67746,11.90094],[78.68988,11.90401],[78.69112,11.89903],[78.69472,11.89446],[78.70824,11.89794],[78.70811,11.90258],[78.71023,11.90334],[78.71132,11.90899],[78.7189,11.91354],[78.72386,11.91967],[78.71871,11.92814],[78.71336,11.93213],[78.71081,11.93176],[78.70442,11.94001],[78.70428,11.94256],[78.70775,11.94636],[78.70828,11.95107],[78.71333,11.95074],[78.70986,11.96662],[78.71168,11.96839],[78.71711,11.98413],[78.71087,11.98626],[78.70289,11.98615],[78.69772,11.99251],[78.70244,12.00008],[78.69999,12.00474],[78.70348,12.01525],[78.70401,12.03006],[78.70962,12.04726],[78.71987,12.06718],[78.72334,12.08202],[78.72284,12.0885],[78.72707,12.09369],[78.72603,12.09518],[78.72753,12.10015],[78.73618,12.11114],[78.73408,12.11335],[78.74522,12.12392],[78.73787,12.13392],[78.72827,12.12743],[78.70551,12.12071],[78.6965,12.11488],[78.69101,12.1151],[78.68411,12.10591],[78.66121,12.10248],[78.66414,12.10815],[78.66444,12.11544],[78.65887,12.11973],[78.65723,12.12502],[78.64875,12.12938],[78.63679,12.12695],[78.63141,12.12785],[78.6303,12.13084],[78.6305,12.13525],[78.63555,12.14647],[78.63972,12.14732],[78.64189,12.1497],[78.6472,12.15992],[78.64731,12.16398],[78.64055,12.16843],[78.63395,12.17609],[78.62107,12.18422],[78.61124,12.18205],[78.60178,12.17447],[78.59664,12.1681],[78.58434,12.16445],[78.58249,12.16234],[78.58006,12.16756],[78.57535,12.19199],[78.57327,12.19372],[78.56638,12.19186],[78.55465,12.18048],[78.54324,12.1791],[78.52098,12.1794],[78.51652,12.17719],[78.51757,12.17191],[78.51383,12.1622],[78.50828,12.15624],[78.50717,12.15182],[78.50849,12.15047],[78.50846,12.14558],[78.50636,12.14294],[78.50204,12.14443],[78.50097,12.14164],[78.49881,12.14193],[78.49727,12.13923],[78.48285,12.14326],[78.4693,12.14911],[78.46528,12.14669],[78.47036,12.16247],[78.46791,12.16661],[78.4719,12.17279],[78.46469,12.17833],[78.44752,12.18532],[78.4464,12.19107],[78.42124,12.18971],[78.41733,12.19243],[78.41699,12.19143],[78.4122,12.19642],[78.40863,12.19652],[78.40515,12.1947],[78.40489,12.19212],[78.39958,12.18787],[78.39525,12.18903],[78.39365,12.186],[78.39094,12.18606],[78.38268,12.19498],[78.37441,12.19526],[78.37599,12.20117],[78.37911,12.2055],[78.38224,12.20656],[78.39195,12.20452],[78.39808,12.21242],[78.40169,12.21331],[78.40002,12.21716],[78.40412,12.22305],[78.4031,12.22395],[78.38444,12.22844],[78.38131,12.22628],[78.37946,12.22704],[78.37823,12.22211],[78.37499,12.22148],[78.37476,12.22492],[78.3698,12.22666],[78.369,12.22475],[78.36364,12.22562],[78.36277,12.22352],[78.35494,12.22612],[78.35408,12.22743],[78.35826,12.23053],[78.3588,12.2352],[78.35398,12.24072],[78.35258,12.24727],[78.34539,12.25129],[78.33428,12.26352],[78.32836,12.26506],[78.32346,12.25911],[78.3169,12.2601],[78.31156,12.26539],[78.30763,12.26594],[78.3022,12.27395],[78.29824,12.27383],[78.28855,12.26848],[78.28245,12.26829],[78.27706,12.26022],[78.26752,12.26345],[78.26168,12.27199],[78.26242,12.27511],[78.2596,12.27874],[78.26249,12.28336],[78.26128,12.28384],[78.26303,12.28918],[78.25911,12.29062],[78.25818,12.29455],[78.25401,12.2949],[78.24942,12.29903],[78.23204,12.30221],[78.23556,12.30714],[78.23423,12.31185],[78.2288,12.31472],[78.22939,12.31744],[78.23673,12.32036],[78.23788,12.32292],[78.24612,12.32813],[78.24538,12.33083],[78.24733,12.33279],[78.2397,12.33409],[78.23898,12.34009],[78.23548,12.34118],[78.23624,12.34789],[78.22711,12.34892],[78.22425,12.3441],[78.21896,12.34132],[78.21598,12.33409],[78.20518,12.32913],[78.2008,12.33579],[78.1948,12.33243],[78.19079,12.33301],[78.1879,12.33573],[78.18482,12.33355],[78.18078,12.33617],[78.1781,12.3343],[78.17358,12.33715],[78.16364,12.3509],[78.16448,12.35916],[78.16673,12.36288],[78.15401,12.36557],[78.14276,12.37073],[78.14201,12.37533],[78.13488,12.38195],[78.13161,12.39484],[78.12778,12.40226],[78.13173,12.40595],[78.13459,12.40638],[78.13529,12.4099],[78.1317,12.41203],[78.1337,12.41618],[78.13735,12.41734],[78.13944,12.42442],[78.1425,12.4242],[78.14248,12.42724],[78.13757,12.43511],[78.13098,12.43778],[78.12737,12.44192],[78.12229,12.44486],[78.11785,12.44381],[78.11463,12.44526],[78.11442,12.44918],[78.1183,12.45059],[78.1171,12.45256],[78.11805,12.4547],[78.1134,12.45611],[78.10834,12.45526],[78.09811,12.44541],[78.08015,12.44886],[78.07738,12.45171],[78.07894,12.45997],[78.07784,12.46355],[78.0684,12.46736],[78.05968,12.46466],[78.05936,12.46763],[78.04912,12.47564],[78.04539,12.47314],[78.0416,12.47347],[78.04124,12.46786],[78.03819,12.46153],[78.02707,12.45966],[78.02353,12.46193],[78.02332,12.46569],[78.02112,12.46629],[78.02394,12.47106],[78.02019,12.47257],[78.02026,12.4756],[78.0184,12.47564],[78.01904,12.47927],[78.01729,12.4793],[78.01691,12.48152],[78.01274,12.48448],[78.01253,12.48764],[78.01471,12.49073],[78.01244,12.49388],[78.01333,12.50082],[78.01184,12.50276],[78.00514,12.50263],[78.00257,12.49984],[77.99843,12.50169],[77.99667,12.50011],[77.99377,12.50043],[77.99215,12.50136],[77.99322,12.50355],[77.99014,12.50904],[77.98795,12.50817],[77.98582,12.50978],[77.98306,12.50715],[77.98105,12.50129],[77.9818,12.49914],[77.97862,12.49694],[77.97424,12.49772],[77.97434,12.49586],[77.97025,12.49649],[77.96832,12.49528],[77.96503,12.48995],[77.96583,12.48618],[77.9589,12.4839],[77.95341,12.48595],[77.95367,12.49206],[77.95004,12.49796],[77.94603,12.49925],[77.94702,12.50128],[77.95352,12.50171],[77.95128,12.50266],[77.95003,12.5055]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"572","area_level":"District","area_name":"Dindigul","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.17521,10.83219],[78.17603,10.83513],[78.17333,10.83497],[78.1732,10.83259],[78.17056,10.83203],[78.16925,10.83409],[78.15857,10.83278],[78.15848,10.82775],[78.15231,10.82644],[78.14988,10.81653],[78.14913,10.80387],[78.14427,10.80433],[78.14077,10.80278],[78.13652,10.8044],[78.13226,10.80241],[78.12839,10.8051],[78.12776,10.80409],[78.10506,10.80503],[78.10482,10.80163],[78.10274,10.80157],[78.10086,10.79654],[78.09864,10.79567],[78.09642,10.78887],[78.09688,10.7803],[78.10006,10.77917],[78.09806,10.76693],[78.09371,10.76709],[78.08333,10.77118],[78.07898,10.77558],[78.06995,10.77572],[78.06723,10.77361],[78.0687,10.77164],[78.06609,10.76763],[78.0645,10.76883],[78.06085,10.76797],[78.05892,10.76665],[78.05914,10.76427],[78.05692,10.76357],[78.05516,10.76578],[78.05755,10.77262],[78.05569,10.77394],[78.04777,10.77348],[78.04874,10.77629],[78.04711,10.77756],[78.04219,10.77752],[78.04056,10.7752],[78.03412,10.77455],[78.0339,10.77994],[78.02781,10.78146],[78.02669,10.77518],[78.02256,10.77656],[78.02463,10.77158],[78.01899,10.77432],[77.99853,10.77448],[77.99493,10.76174],[77.98328,10.75946],[77.93921,10.76841],[77.93822,10.76292],[77.93223,10.75322],[77.9306,10.74358],[77.93131,10.73662],[77.94002,10.73826],[77.94957,10.7427],[77.95793,10.74382],[77.99817,10.74277],[77.99601,10.73781],[77.99868,10.73325],[77.99866,10.72988],[78.01059,10.7311],[78.01196,10.72791],[78.00871,10.72212],[78.01517,10.71964],[78.00913,10.70943],[78.00855,10.69246],[78.00555,10.67546],[78.0008,10.67614],[78.00073,10.6741],[77.99587,10.67372],[77.99264,10.67111],[77.9781,10.67492],[77.97146,10.67412],[77.96985,10.6725],[77.97273,10.65551],[77.97947,10.64336],[77.97778,10.63983],[77.9518,10.64023],[77.95014,10.644],[77.94832,10.64254],[77.94438,10.64419],[77.94366,10.64289],[77.93507,10.64359],[77.93194,10.64675],[77.91397,10.64824],[77.909,10.65704],[77.90306,10.65241],[77.90272,10.64866],[77.89963,10.65036],[77.89844,10.64846],[77.89706,10.64889],[77.89591,10.64551],[77.88858,10.6474],[77.88884,10.64878],[77.88556,10.65029],[77.87642,10.64543],[77.8723,10.63125],[77.8648,10.63484],[77.84702,10.63647],[77.84743,10.63884],[77.84599,10.63901],[77.83068,10.63283],[77.81296,10.64824],[77.81447,10.65003],[77.81412,10.66398],[77.8177,10.67941],[77.8138,10.67746],[77.80994,10.6807],[77.78879,10.68524],[77.78254,10.6845],[77.77319,10.68032],[77.77067,10.681],[77.76583,10.67879],[77.7676,10.67676],[77.76226,10.67198],[77.7584,10.67286],[77.75568,10.67161],[77.75354,10.6679],[77.75466,10.6518],[77.74668,10.64069],[77.74054,10.63543],[77.73425,10.6352],[77.73074,10.63051],[77.72055,10.63123],[77.71963,10.63546],[77.72306,10.64076],[77.7176,10.64238],[77.71411,10.64153],[77.70981,10.65048],[77.69847,10.66243],[77.70232,10.66966],[77.70264,10.67614],[77.70627,10.67784],[77.7087,10.68632],[77.70683,10.69214],[77.70627,10.71597],[77.70203,10.7337],[77.69359,10.73523],[77.68858,10.73474],[77.68997,10.73242],[77.6824,10.72765],[77.67786,10.72659],[77.67709,10.72488],[77.67292,10.72402],[77.67413,10.72016],[77.66957,10.71896],[77.66844,10.71667],[77.6647,10.71627],[77.66048,10.70223],[77.66158,10.69776],[77.65851,10.69249],[77.65923,10.69081],[77.65687,10.68324],[77.65843,10.68289],[77.6557,10.67336],[77.64723,10.67258],[77.64682,10.67108],[77.63679,10.66874],[77.61693,10.67385],[77.59621,10.67591],[77.58601,10.68347],[77.58007,10.67908],[77.58176,10.67721],[77.573,10.66567],[77.57478,10.66338],[77.57147,10.65788],[77.5701,10.65656],[77.56857,10.65746],[77.56428,10.64914],[77.56144,10.6488],[77.5492,10.63897],[77.54862,10.62894],[77.54595,10.62875],[77.54452,10.62592],[77.54485,10.6162],[77.54284,10.60976],[77.5344,10.60854],[77.53233,10.6069],[77.52852,10.60945],[77.51475,10.60559],[77.50826,10.60699],[77.50729,10.61339],[77.51614,10.61295],[77.51413,10.61844],[77.50976,10.62272],[77.51056,10.62662],[77.50674,10.62702],[77.50354,10.63776],[77.50465,10.64256],[77.50103,10.64203],[77.49727,10.64491],[77.49317,10.64468],[77.49257,10.64667],[77.48538,10.64638],[77.48251,10.65],[77.47286,10.64263],[77.47024,10.64445],[77.46572,10.64463],[77.45815,10.64235],[77.45637,10.63827],[77.45296,10.63934],[77.44911,10.63226],[77.44514,10.62965],[77.43264,10.63142],[77.42769,10.62731],[77.41774,10.62556],[77.41548,10.62399],[77.41281,10.61742],[77.40963,10.61875],[77.4048,10.61494],[77.40449,10.613],[77.40168,10.61336],[77.39826,10.60738],[77.39451,10.60529],[77.39708,10.60229],[77.3958,10.60129],[77.39623,10.59789],[77.38866,10.59669],[77.38829,10.59112],[77.38499,10.59136],[77.38524,10.58275],[77.38108,10.57779],[77.37761,10.56107],[77.37078,10.55451],[77.36796,10.54666],[77.36908,10.53926],[77.373,10.52999],[77.37791,10.52926],[77.37802,10.52592],[77.40537,10.52358],[77.40567,10.52212],[77.40457,10.50888],[77.4017,10.49882],[77.39499,10.50007],[77.39258,10.49503],[77.38544,10.49627],[77.37854,10.49392],[77.37667,10.48596],[77.37963,10.48503],[77.382,10.47484],[77.38532,10.47091],[77.38333,10.46919],[77.38517,10.46388],[77.38508,10.44897],[77.37131,10.44935],[77.36845,10.44705],[77.36573,10.44774],[77.35715,10.44485],[77.34451,10.44832],[77.34461,10.45385],[77.34057,10.4528],[77.33559,10.45508],[77.33226,10.45456],[77.32666,10.45291],[77.32295,10.44853],[77.32314,10.44579],[77.32551,10.44439],[77.32341,10.43967],[77.32581,10.43865],[77.3252,10.43633],[77.32688,10.43666],[77.32715,10.43469],[77.31998,10.43396],[77.32292,10.42543],[77.31931,10.41799],[77.32013,10.40672],[77.31673,10.40366],[77.31729,10.39392],[77.31377,10.37205],[77.31548,10.3669],[77.31567,10.35566],[77.32167,10.35406],[77.33664,10.35414],[77.33607,10.34855],[77.32997,10.34114],[77.32984,10.33489],[77.33486,10.33211],[77.32838,10.32529],[77.32654,10.32112],[77.3313,10.31475],[77.3299,10.30963],[77.34204,10.30008],[77.34132,10.2963],[77.34742,10.29013],[77.34819,10.28183],[77.35113,10.27669],[77.35128,10.27333],[77.3481,10.2634],[77.33997,10.26395],[77.32855,10.27105],[77.32507,10.27008],[77.32469,10.26479],[77.31054,10.24633],[77.30412,10.24418],[77.29864,10.25271],[77.29678,10.25269],[77.28809,10.23186],[77.29496,10.2179],[77.29337,10.21529],[77.28954,10.21456],[77.2873,10.20925],[77.28312,10.20865],[77.28587,10.20436],[77.28482,10.20055],[77.28296,10.19659],[77.27857,10.19421],[77.2753,10.18442],[77.27627,10.17571],[77.2747,10.17527],[77.27292,10.16534],[77.27414,10.15767],[77.2718,10.14199],[77.27453,10.13976],[77.27477,10.13255],[77.27405,10.12949],[77.26836,10.12714],[77.26659,10.11934],[77.28304,10.11777],[77.28239,10.12261],[77.28415,10.12538],[77.28681,10.12716],[77.28953,10.12496],[77.29275,10.13108],[77.30248,10.136],[77.31301,10.13539],[77.32372,10.12757],[77.32515,10.12828],[77.32487,10.13274],[77.32929,10.14268],[77.34147,10.13602],[77.35053,10.14292],[77.35442,10.14843],[77.36032,10.15103],[77.36239,10.15075],[77.36788,10.14539],[77.37208,10.13931],[77.37548,10.14287],[77.38467,10.14668],[77.39304,10.15592],[77.39543,10.16279],[77.39836,10.16009],[77.40875,10.15845],[77.41143,10.14502],[77.417,10.14344],[77.42758,10.13608],[77.43186,10.1358],[77.43818,10.13241],[77.44291,10.13308],[77.44478,10.13627],[77.45212,10.13606],[77.457,10.13177],[77.45923,10.13244],[77.46565,10.12877],[77.46445,10.13087],[77.46779,10.13407],[77.46952,10.13972],[77.46804,10.14225],[77.46966,10.14344],[77.47086,10.14187],[77.47239,10.14259],[77.47206,10.14575],[77.47437,10.14534],[77.47584,10.14771],[77.4807,10.14705],[77.48181,10.14859],[77.48102,10.15222],[77.48263,10.15393],[77.48622,10.15174],[77.48775,10.14774],[77.4957,10.1547],[77.50001,10.16097],[77.5118,10.1609],[77.51657,10.1665],[77.51774,10.16603],[77.5276,10.17394],[77.52315,10.17614],[77.52799,10.17862],[77.5368,10.17962],[77.53806,10.18771],[77.53921,10.18812],[77.54044,10.18384],[77.54295,10.18347],[77.54375,10.18169],[77.54623,10.18285],[77.54725,10.18611],[77.54312,10.18787],[77.54468,10.18953],[77.54446,10.19252],[77.5513,10.19183],[77.5473,10.19563],[77.54956,10.19674],[77.54636,10.19873],[77.54818,10.20399],[77.54925,10.20429],[77.54981,10.19992],[77.55566,10.20208],[77.56682,10.19537],[77.56606,10.19427],[77.56883,10.19312],[77.56685,10.19067],[77.56812,10.18869],[77.56719,10.18777],[77.56869,10.18728],[77.5674,10.18266],[77.56975,10.18127],[77.57406,10.18698],[77.5873,10.19298],[77.58905,10.19676],[77.59078,10.19679],[77.59189,10.19131],[77.59832,10.19431],[77.603,10.19996],[77.59615,10.20216],[77.59578,10.20579],[77.60085,10.20833],[77.60041,10.20587],[77.6038,10.20592],[77.60466,10.20893],[77.61007,10.21352],[77.61523,10.21243],[77.6188,10.2142],[77.62061,10.21829],[77.62326,10.21873],[77.62359,10.21373],[77.62557,10.211],[77.62996,10.2103],[77.63205,10.2063],[77.63608,10.2075],[77.64241,10.20304],[77.64397,10.20505],[77.64527,10.20447],[77.64504,10.20244],[77.64971,10.20129],[77.64971,10.19872],[77.65378,10.1985],[77.65289,10.19471],[77.65757,10.19451],[77.65788,10.19208],[77.6601,10.19107],[77.662,10.19312],[77.6637,10.19155],[77.66281,10.18962],[77.66443,10.18878],[77.66755,10.18972],[77.67141,10.19619],[77.68031,10.19854],[77.68149,10.20148],[77.68566,10.20174],[77.69321,10.19691],[77.69794,10.20187],[77.69669,10.20627],[77.70244,10.20775],[77.70249,10.21417],[77.70615,10.21259],[77.70654,10.21586],[77.71003,10.2063],[77.7074,10.20602],[77.70634,10.20131],[77.70426,10.20062],[77.70479,10.19614],[77.70131,10.19629],[77.70127,10.19516],[77.70288,10.1906],[77.70439,10.19022],[77.70528,10.18417],[77.71255,10.1747],[77.71224,10.17001],[77.71584,10.17004],[77.72191,10.16683],[77.72928,10.15907],[77.72739,10.15394],[77.72464,10.1539],[77.72393,10.14617],[77.72427,10.1361],[77.72913,10.13356],[77.72945,10.13138],[77.72888,10.13004],[77.72769,10.13262],[77.72174,10.13403],[77.7157,10.12869],[77.70787,10.1289],[77.70355,10.13412],[77.69725,10.13522],[77.69211,10.14536],[77.6864,10.14555],[77.68217,10.14373],[77.67638,10.14463],[77.6744,10.14047],[77.67548,10.12661],[77.66911,10.12614],[77.66863,10.12237],[77.67606,10.12021],[77.67633,10.11779],[77.6942,10.11109],[77.70254,10.10274],[77.70183,10.09718],[77.69694,10.08667],[77.70854,10.08147],[77.70771,10.06458],[77.71005,10.04987],[77.7126,10.04788],[77.70634,10.03798],[77.70996,10.03289],[77.71167,10.03397],[77.71262,10.02438],[77.71038,10.02032],[77.71723,10.01805],[77.72526,10.02379],[77.72542,10.02671],[77.72843,10.0261],[77.73288,10.02922],[77.7554,10.04862],[77.75998,10.04661],[77.75982,10.05009],[77.76355,10.05591],[77.78055,10.05094],[77.78868,10.05385],[77.80556,10.0676],[77.81285,10.06868],[77.82287,10.06554],[77.83552,10.07405],[77.8428,10.07373],[77.8476,10.07535],[77.86363,10.07424],[77.87484,10.06159],[77.88262,10.06847],[77.88392,10.0746],[77.89101,10.07812],[77.89835,10.07526],[77.90149,10.07115],[77.90432,10.07229],[77.90285,10.07474],[77.90897,10.07581],[77.91298,10.07264],[77.91955,10.07192],[77.92541,10.09101],[77.9325,10.08924],[77.93286,10.08674],[77.94647,10.08363],[77.9467,10.09061],[77.94235,10.08967],[77.93668,10.0925],[77.9349,10.08995],[77.93129,10.09031],[77.92932,10.10096],[77.93385,10.10483],[77.93355,10.11362],[77.94781,10.12301],[77.954,10.12994],[77.95992,10.13116],[77.96221,10.13731],[77.96285,10.13504],[77.96435,10.13624],[77.96607,10.13511],[77.96502,10.13284],[77.9697,10.13325],[77.97271,10.13116],[77.97984,10.13593],[77.98407,10.13661],[77.98603,10.14286],[77.99305,10.15167],[77.99277,10.15481],[77.9967,10.15771],[77.99714,10.16074],[78.00243,10.16292],[78.00869,10.16208],[78.01374,10.16336],[78.01275,10.1707],[78.01754,10.17679],[78.02003,10.18452],[78.05598,10.18484],[78.06319,10.18333],[78.07075,10.1881],[78.07775,10.18445],[78.08193,10.18603],[78.08772,10.1851],[78.09154,10.182],[78.09678,10.19032],[78.10051,10.19034],[78.10364,10.19233],[78.10739,10.1893],[78.12004,10.18937],[78.12417,10.18559],[78.13063,10.1875],[78.1431,10.18237],[78.14612,10.17939],[78.15132,10.17152],[78.1522,10.16316],[78.16122,10.15454],[78.15857,10.14438],[78.16425,10.14113],[78.16539,10.12386],[78.1563,10.10726],[78.16919,10.10216],[78.1707,10.09798],[78.17469,10.09832],[78.16988,10.09679],[78.17016,10.09245],[78.17859,10.09258],[78.18329,10.08911],[78.18857,10.08842],[78.19013,10.08526],[78.20398,10.07935],[78.20061,10.07414],[78.20286,10.06691],[78.21008,10.07093],[78.21041,10.07382],[78.21259,10.07526],[78.21659,10.0746],[78.22282,10.07791],[78.22707,10.07711],[78.23019,10.07913],[78.23215,10.07745],[78.23641,10.07769],[78.2416,10.08075],[78.24409,10.08454],[78.26038,10.08592],[78.26154,10.09191],[78.26331,10.09151],[78.26453,10.09362],[78.26128,10.10243],[78.26589,10.10846],[78.26895,10.107],[78.27236,10.11297],[78.27153,10.11491],[78.27339,10.11482],[78.27436,10.12076],[78.2705,10.12944],[78.27285,10.13062],[78.28083,10.12958],[78.27963,10.13394],[78.28047,10.14223],[78.28211,10.14215],[78.28426,10.14858],[78.28186,10.15723],[78.28144,10.16098],[78.28302,10.16278],[78.28137,10.1669],[78.27532,10.1649],[78.27481,10.16305],[78.27326,10.16445],[78.26966,10.16358],[78.26186,10.15904],[78.26224,10.15748],[78.26688,10.15745],[78.27062,10.15245],[78.26968,10.15132],[78.26445,10.15424],[78.25982,10.15418],[78.25967,10.16145],[78.26093,10.16404],[78.27222,10.17194],[78.27281,10.1811],[78.26895,10.18236],[78.28233,10.19066],[78.28346,10.19432],[78.28981,10.19979],[78.29142,10.20395],[78.30338,10.20858],[78.30385,10.21091],[78.30725,10.21004],[78.30798,10.20803],[78.31347,10.20884],[78.31477,10.21048],[78.3114,10.21299],[78.30958,10.21248],[78.30903,10.21474],[78.32019,10.2141],[78.32869,10.22835],[78.32717,10.23309],[78.32265,10.23894],[78.32175,10.24773],[78.32193,10.2496],[78.32975,10.24851],[78.33197,10.25493],[78.32918,10.25356],[78.32912,10.25605],[78.32775,10.25566],[78.32769,10.26362],[78.33053,10.26853],[78.32949,10.26802],[78.32956,10.27264],[78.32811,10.2713],[78.3271,10.27254],[78.33012,10.27787],[78.32819,10.27676],[78.32736,10.27974],[78.32979,10.28064],[78.32785,10.28302],[78.32546,10.28273],[78.32599,10.28514],[78.32944,10.28584],[78.32883,10.28925],[78.33887,10.28705],[78.33989,10.28875],[78.33528,10.29371],[78.33907,10.2967],[78.33871,10.2983],[78.33466,10.29718],[78.33499,10.29864],[78.33374,10.29843],[78.33191,10.29654],[78.32941,10.29778],[78.33298,10.29886],[78.33702,10.31081],[78.33594,10.31121],[78.33631,10.32104],[78.3378,10.3255],[78.33506,10.32748],[78.33286,10.33231],[78.33096,10.33276],[78.33085,10.33759],[78.32738,10.33922],[78.32399,10.33722],[78.31784,10.34872],[78.30479,10.35217],[78.29986,10.35729],[78.29171,10.36176],[78.28582,10.37004],[78.27934,10.37264],[78.2772,10.38319],[78.28036,10.38903],[78.28763,10.39335],[78.28783,10.40212],[78.30325,10.40741],[78.30682,10.41216],[78.30648,10.42323],[78.31509,10.43946],[78.29548,10.45088],[78.2774,10.45409],[78.25301,10.46238],[78.24637,10.46795],[78.23403,10.47028],[78.22843,10.4667],[78.21887,10.4662],[78.21441,10.47296],[78.20654,10.474],[78.20361,10.48033],[78.1999,10.4815],[78.20013,10.48528],[78.20261,10.48651],[78.19379,10.49538],[78.19173,10.50091],[78.17336,10.50373],[78.17661,10.51743],[78.17932,10.51711],[78.18489,10.5214],[78.18657,10.53034],[78.19011,10.53845],[78.19357,10.53989],[78.20002,10.54669],[78.19044,10.55339],[78.19121,10.55709],[78.18875,10.55913],[78.18467,10.55818],[78.17999,10.55977],[78.17574,10.55548],[78.17004,10.5542],[78.16096,10.56249],[78.15253,10.56451],[78.14873,10.56093],[78.13917,10.56263],[78.13777,10.57037],[78.13271,10.57509],[78.13511,10.57851],[78.13617,10.59678],[78.14486,10.60553],[78.16539,10.61374],[78.16209,10.62082],[78.16026,10.63306],[78.16086,10.64387],[78.16307,10.64885],[78.14554,10.64959],[78.1485,10.66049],[78.14591,10.6669],[78.14507,10.67671],[78.14696,10.68304],[78.14718,10.69295],[78.15309,10.70726],[78.15467,10.72005],[78.15478,10.73033],[78.15164,10.74051],[78.16825,10.77589],[78.16989,10.79898],[78.18606,10.81932],[78.18082,10.82119],[78.18383,10.82135],[78.18499,10.82628],[78.18632,10.82632],[78.18528,10.82731],[78.18695,10.82977],[78.18664,10.83303],[78.18194,10.83279],[78.18259,10.82381],[78.17985,10.82282],[78.17698,10.82277],[78.17521,10.83219]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"573","area_level":"District","area_name":"Erode","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.54898,11.641],[77.54384,11.6444],[77.54069,11.63976],[77.54583,11.63636],[77.54898,11.641]]],[[[77.55832,11.66268],[77.56038,11.66582],[77.56031,11.66624],[77.55794,11.66849],[77.5553,11.66943],[77.5529,11.66632],[77.55233,11.66381],[77.5564,11.66102],[77.55832,11.66268]]],[[[77.55709,11.82041],[77.55561,11.82208],[77.5528,11.82021],[77.55177,11.82151],[77.55051,11.82091],[77.5486,11.81954],[77.549,11.81901],[77.55155,11.81615],[77.55209,11.8162],[77.55588,11.8188],[77.55753,11.81983],[77.55709,11.82041]]],[[[77.01335,11.81316],[77.01294,11.81461],[76.99354,11.80916],[76.9858,11.81187],[76.98215,11.8115],[76.9821,11.80346],[76.98365,11.80168],[76.9802,11.79853],[76.98089,11.79541],[76.97533,11.78925],[76.97273,11.78038],[76.96992,11.77686],[76.96118,11.78162],[76.95602,11.79115],[76.95394,11.79205],[76.94239,11.78802],[76.93209,11.79279],[76.92218,11.79178],[76.908,11.79525],[76.89661,11.77647],[76.89792,11.7706],[76.89625,11.7598],[76.8881,11.7417],[76.88835,11.73364],[76.87421,11.72411],[76.86263,11.71101],[76.86117,11.70722],[76.86371,11.70537],[76.85276,11.69237],[76.84854,11.67969],[76.84403,11.67281],[76.84365,11.6682],[76.84141,11.66595],[76.84184,11.66213],[76.8387,11.66009],[76.83778,11.65621],[76.83501,11.65542],[76.83626,11.65388],[76.83374,11.64896],[76.83793,11.64194],[76.8346,11.63969],[76.83592,11.63751],[76.84419,11.63257],[76.84529,11.63381],[76.84484,11.62815],[76.84291,11.6268],[76.8494,11.62449],[76.84955,11.62107],[76.85211,11.62167],[76.84884,11.61856],[76.85053,11.61596],[76.85601,11.61564],[76.85812,11.61403],[76.85774,11.61016],[76.85567,11.60758],[76.85724,11.60547],[76.85647,11.59928],[76.84693,11.59447],[76.84845,11.5912],[76.84625,11.58558],[76.84672,11.58206],[76.84224,11.58542],[76.84163,11.58182],[76.83753,11.58215],[76.83531,11.5752],[76.83104,11.57422],[76.8304,11.57193],[76.83955,11.5695],[76.83948,11.56631],[76.84864,11.56097],[76.84912,11.55748],[76.86311,11.5441],[76.86657,11.53336],[76.86361,11.52929],[76.86449,11.52191],[76.86628,11.51959],[76.86931,11.51863],[76.87261,11.52326],[76.89548,11.52739],[76.90828,11.52786],[76.90886,11.52564],[76.91436,11.52418],[76.9204,11.52993],[76.92736,11.53329],[76.9264,11.52508],[76.93797,11.52707],[76.93836,11.52348],[76.94271,11.52356],[76.94317,11.52236],[76.93969,11.51896],[76.94401,11.52033],[76.94508,11.51929],[76.94465,11.51798],[76.94136,11.51832],[76.9411,11.5161],[76.93971,11.51671],[76.93982,11.51479],[76.93376,11.50671],[76.93328,11.50351],[76.93904,11.49797],[76.93717,11.49553],[76.93527,11.48216],[76.9476,11.47884],[76.95592,11.47914],[76.96665,11.46966],[76.97089,11.46972],[76.97182,11.46765],[76.98779,11.47667],[76.99105,11.48117],[76.99926,11.47525],[77.00398,11.46447],[77.01221,11.45201],[77.01174,11.44215],[77.00744,11.43442],[77.00009,11.43488],[76.99707,11.44072],[76.98292,11.44036],[76.97975,11.43298],[76.97605,11.41391],[76.9767,11.40711],[76.981,11.4013],[76.97576,11.39574],[76.9704,11.39716],[76.9681,11.39191],[76.95746,11.38106],[76.95951,11.38079],[76.9654,11.38598],[76.97161,11.38619],[76.98084,11.3782],[76.98149,11.38305],[76.98762,11.38221],[76.99221,11.37717],[77.01361,11.36876],[77.01571,11.37136],[77.02041,11.37016],[77.02543,11.37334],[77.02344,11.38771],[77.02628,11.38854],[77.03251,11.38481],[77.03696,11.39288],[77.04556,11.39917],[77.04543,11.40253],[77.05985,11.40436],[77.06427,11.40154],[77.07042,11.4025],[77.06934,11.39133],[77.07047,11.38609],[77.07611,11.38941],[77.07569,11.39169],[77.08118,11.38775],[77.09135,11.39356],[77.08848,11.39696],[77.09319,11.399],[77.09151,11.40334],[77.11027,11.40637],[77.11311,11.38094],[77.11475,11.37893],[77.1284,11.37838],[77.12879,11.37554],[77.13044,11.37533],[77.12952,11.36665],[77.13312,11.36299],[77.13095,11.36125],[77.13015,11.35829],[77.13138,11.35767],[77.12932,11.35416],[77.13223,11.35463],[77.13228,11.35125],[77.13515,11.34885],[77.13568,11.34618],[77.13771,11.34579],[77.13784,11.34348],[77.13622,11.3438],[77.13848,11.34178],[77.13814,11.33999],[77.14173,11.33671],[77.15401,11.33487],[77.1586,11.33269],[77.16768,11.31723],[77.17765,11.31721],[77.1825,11.31384],[77.18305,11.32219],[77.18066,11.32444],[77.17909,11.33066],[77.17607,11.3306],[77.17451,11.33253],[77.17873,11.34206],[77.18801,11.34174],[77.1966,11.33867],[77.19951,11.34363],[77.20042,11.3427],[77.20378,11.34461],[77.20836,11.34438],[77.21084,11.3496],[77.21474,11.34956],[77.21704,11.35132],[77.21761,11.35],[77.21845,11.35224],[77.22839,11.35103],[77.22912,11.35238],[77.23409,11.35204],[77.23477,11.3482],[77.22883,11.34608],[77.22585,11.34162],[77.22336,11.34292],[77.22153,11.34021],[77.22418,11.33921],[77.22434,11.33754],[77.22744,11.33726],[77.22767,11.33581],[77.23188,11.33527],[77.23178,11.33312],[77.23454,11.33111],[77.23469,11.32804],[77.23682,11.32568],[77.23513,11.32498],[77.23705,11.32185],[77.23652,11.31406],[77.22897,11.31524],[77.22646,11.31756],[77.22464,11.31484],[77.21982,11.31246],[77.21935,11.31026],[77.22151,11.31],[77.22124,11.30724],[77.2181,11.30587],[77.20432,11.30994],[77.20182,11.30334],[77.20343,11.29997],[77.21631,11.29785],[77.21913,11.30377],[77.2209,11.30248],[77.23244,11.30534],[77.24153,11.30514],[77.23753,11.3119],[77.24081,11.32071],[77.23833,11.32238],[77.24776,11.32489],[77.24692,11.32824],[77.24898,11.32956],[77.25124,11.32879],[77.24943,11.32619],[77.25239,11.32551],[77.25201,11.32246],[77.2541,11.32051],[77.25091,11.31828],[77.25035,11.31141],[77.25388,11.31077],[77.254,11.3142],[77.25855,11.31325],[77.26043,11.31595],[77.26258,11.31537],[77.26458,11.31889],[77.26698,11.31923],[77.26762,11.3215],[77.26888,11.32098],[77.27009,11.32445],[77.27235,11.32412],[77.27612,11.32987],[77.27923,11.33095],[77.28175,11.33441],[77.28771,11.33319],[77.28683,11.3417],[77.28711,11.34363],[77.28894,11.34375],[77.28877,11.33855],[77.2921,11.33611],[77.29105,11.33272],[77.29302,11.33252],[77.29297,11.33001],[77.29059,11.32818],[77.28818,11.32234],[77.28725,11.31375],[77.28857,11.30195],[77.28632,11.29237],[77.29188,11.28654],[77.3,11.28486],[77.30072,11.28603],[77.31438,11.28197],[77.30771,11.2745],[77.29559,11.27276],[77.30154,11.26939],[77.30323,11.26638],[77.31856,11.2604],[77.31968,11.26132],[77.33145,11.25785],[77.33133,11.25678],[77.33639,11.25708],[77.33504,11.26296],[77.33763,11.26628],[77.34089,11.26719],[77.34226,11.27268],[77.34428,11.27202],[77.34637,11.27695],[77.34475,11.28124],[77.34766,11.28236],[77.34872,11.28592],[77.34527,11.30003],[77.33634,11.30304],[77.33327,11.30686],[77.33455,11.31676],[77.3598,11.31573],[77.36208,11.31824],[77.36608,11.31713],[77.36656,11.329],[77.36318,11.3415],[77.37027,11.34079],[77.37394,11.33844],[77.37861,11.33941],[77.38039,11.33069],[77.38414,11.32943],[77.38676,11.32207],[77.39411,11.3219],[77.39611,11.31857],[77.40269,11.31512],[77.41754,11.31032],[77.42095,11.3105],[77.42481,11.31464],[77.42574,11.31965],[77.43035,11.31728],[77.439,11.30811],[77.44397,11.30567],[77.44388,11.30869],[77.44653,11.30839],[77.44822,11.31145],[77.4501,11.31],[77.44954,11.30607],[77.45454,11.3068],[77.45258,11.30721],[77.45105,11.3125],[77.45261,11.31316],[77.45804,11.3071],[77.45671,11.30536],[77.45916,11.30393],[77.45898,11.30078],[77.46168,11.2992],[77.46022,11.29694],[77.45909,11.29918],[77.4574,11.29922],[77.45635,11.29355],[77.45983,11.29027],[77.45939,11.28613],[77.46092,11.28335],[77.46475,11.28393],[77.46281,11.27896],[77.4673,11.27688],[77.46909,11.27009],[77.46758,11.26459],[77.4632,11.25847],[77.46576,11.25712],[77.46526,11.25228],[77.47012,11.25323],[77.47002,11.24697],[77.47507,11.24334],[77.47508,11.24101],[77.47874,11.23932],[77.48012,11.23653],[77.48615,11.23684],[77.48733,11.23461],[77.48903,11.23513],[77.48895,11.23023],[77.49263,11.23046],[77.49398,11.23217],[77.50023,11.22678],[77.49448,11.22246],[77.49488,11.22112],[77.50199,11.21926],[77.5009,11.21131],[77.49842,11.20966],[77.49904,11.20563],[77.50533,11.20109],[77.50726,11.20187],[77.50702,11.1998],[77.51074,11.19846],[77.51361,11.19981],[77.51421,11.20598],[77.5153,11.20688],[77.51686,11.20563],[77.51628,11.19877],[77.51483,11.19863],[77.51316,11.19288],[77.51353,11.18452],[77.51232,11.18303],[77.4901,11.18161],[77.48794,11.17898],[77.47633,11.18493],[77.47355,11.17877],[77.47363,11.1705],[77.46973,11.16485],[77.473,11.16308],[77.47148,11.15996],[77.47575,11.16],[77.47714,11.16241],[77.47551,11.16269],[77.47592,11.16391],[77.47811,11.16344],[77.47911,11.15955],[77.48514,11.16083],[77.48392,11.15317],[77.48183,11.15161],[77.48412,11.14992],[77.48389,11.14657],[77.48194,11.14568],[77.48133,11.14323],[77.48321,11.14002],[77.48548,11.14023],[77.48528,11.14312],[77.48936,11.14053],[77.4937,11.14062],[77.49453,11.14356],[77.49622,11.14308],[77.49894,11.14656],[77.50082,11.13185],[77.5046,11.12543],[77.50325,11.10691],[77.52414,11.10665],[77.53146,11.10394],[77.53846,11.10802],[77.55193,11.10984],[77.55621,11.10822],[77.56186,11.11203],[77.5668,11.11239],[77.57509,11.11934],[77.58111,11.11934],[77.58423,11.12143],[77.58722,11.12125],[77.59434,11.11274],[77.59871,11.11163],[77.60198,11.11475],[77.60735,11.1167],[77.61355,11.12546],[77.62307,11.1271],[77.62555,11.12517],[77.63894,11.12394],[77.64618,11.11575],[77.65446,11.1162],[77.65667,11.1082],[77.66137,11.10378],[77.67349,11.09962],[77.67941,11.09951],[77.6929,11.09577],[77.69587,11.09639],[77.7027,11.09399],[77.70414,11.09175],[77.70831,11.09055],[77.71336,11.07817],[77.73014,11.07665],[77.73165,11.08252],[77.73522,11.08523],[77.7382,11.08536],[77.74743,11.0776],[77.75173,11.07715],[77.75504,11.07108],[77.77515,11.05832],[77.77707,11.0587],[77.77957,11.06295],[77.78828,11.06463],[77.79389,11.06743],[77.80445,11.06295],[77.80679,11.06417],[77.808,11.06904],[77.81096,11.07114],[77.81783,11.0703],[77.82806,11.06322],[77.82983,11.05853],[77.82917,11.0531],[77.83051,11.0478],[77.83992,11.04451],[77.84399,11.04813],[77.85165,11.0461],[77.85182,11.03806],[77.85429,11.03166],[77.8615,11.03041],[77.86913,11.02343],[77.88108,11.02431],[77.8873,11.0318],[77.90068,11.03459],[77.90496,11.04421],[77.90727,11.04604],[77.91286,11.04702],[77.91731,11.04536],[77.92147,11.04868],[77.93313,11.07016],[77.91604,11.0732],[77.90536,11.073],[77.89535,11.07672],[77.89166,11.07976],[77.88741,11.08823],[77.8864,11.10695],[77.8817,11.12543],[77.88542,11.14977],[77.88434,11.15593],[77.87946,11.16367],[77.86668,11.17362],[77.86312,11.17888],[77.86146,11.18569],[77.86424,11.20238],[77.87083,11.21475],[77.86477,11.24245],[77.85828,11.24954],[77.84085,11.2606],[77.82571,11.26113],[77.8077,11.2676],[77.79167,11.292],[77.78292,11.30142],[77.77241,11.32205],[77.75756,11.33431],[77.75278,11.34472],[77.75082,11.35415],[77.73888,11.36785],[77.73055,11.37005],[77.71749,11.37827],[77.70952,11.39011],[77.70159,11.39692],[77.69507,11.40898],[77.68672,11.41494],[77.68374,11.41946],[77.68345,11.42655],[77.68645,11.44158],[77.6957,11.45972],[77.69914,11.47702],[77.70621,11.48673],[77.71866,11.49834],[77.72098,11.50342],[77.72931,11.50803],[77.73244,11.51166],[77.73262,11.51713],[77.72444,11.53183],[77.72406,11.53666],[77.73184,11.55183],[77.74476,11.56574],[77.7462,11.57065],[77.73653,11.59396],[77.7359,11.60132],[77.74373,11.61608],[77.74922,11.62296],[77.75102,11.63379],[77.76126,11.64822],[77.76202,11.65693],[77.76737,11.66905],[77.76763,11.67719],[77.7725,11.68472],[77.77652,11.6957],[77.77055,11.69706],[77.74891,11.66419],[77.74797,11.65827],[77.74562,11.65461],[77.74078,11.65454],[77.73421,11.65787],[77.72816,11.65465],[77.72422,11.64975],[77.72181,11.65244],[77.71496,11.64929],[77.71817,11.64616],[77.7163,11.64219],[77.70547,11.63443],[77.70003,11.63497],[77.7001,11.63711],[77.69549,11.63965],[77.68945,11.65243],[77.68963,11.66369],[77.69469,11.67437],[77.69822,11.69347],[77.69631,11.6959],[77.69427,11.69415],[77.68989,11.69475],[77.69177,11.70311],[77.69439,11.70363],[77.69513,11.70678],[77.69291,11.70888],[77.69356,11.71322],[77.69096,11.71851],[77.69644,11.72261],[77.69843,11.72914],[77.6973,11.73569],[77.70666,11.75549],[77.70791,11.7661],[77.71194,11.77362],[77.71524,11.77556],[77.72218,11.79508],[77.70983,11.7976],[77.70572,11.7762],[77.69733,11.76061],[77.68626,11.74248],[77.67542,11.73184],[77.67271,11.73284],[77.67169,11.72864],[77.67547,11.72529],[77.6708,11.7207],[77.66329,11.72069],[77.65866,11.71779],[77.65694,11.71235],[77.65084,11.7043],[77.64919,11.70479],[77.64855,11.70336],[77.65008,11.70259],[77.63743,11.67479],[77.63481,11.67473],[77.63393,11.67131],[77.63631,11.67028],[77.63434,11.66396],[77.62501,11.66368],[77.62534,11.67296],[77.61839,11.67618],[77.61612,11.67155],[77.62275,11.66487],[77.61912,11.65689],[77.61066,11.65225],[77.60626,11.65422],[77.60632,11.6593],[77.59847,11.67184],[77.59264,11.6735],[77.59225,11.67946],[77.58869,11.67946],[77.58902,11.68499],[77.57839,11.68529],[77.58181,11.67595],[77.57179,11.66498],[77.57673,11.65247],[77.56743,11.65702],[77.5643,11.66087],[77.55944,11.65111],[77.5601,11.64987],[77.54392,11.62617],[77.53728,11.61923],[77.53549,11.60176],[77.52874,11.5863],[77.52023,11.58699],[77.51283,11.59186],[77.51424,11.58184],[77.51631,11.57934],[77.50397,11.56451],[77.49329,11.55878],[77.49722,11.55608],[77.49623,11.55177],[77.48559,11.54982],[77.44471,11.56137],[77.45063,11.57249],[77.45184,11.58061],[77.44971,11.59543],[77.45862,11.60664],[77.44502,11.61839],[77.44062,11.63354],[77.43849,11.63586],[77.43984,11.63995],[77.43762,11.64505],[77.43876,11.64761],[77.45085,11.65735],[77.45403,11.66608],[77.4397,11.67374],[77.44198,11.68161],[77.43562,11.70277],[77.43712,11.70677],[77.4416,11.70694],[77.43905,11.71051],[77.4431,11.71309],[77.44318,11.71659],[77.43945,11.71864],[77.4385,11.71426],[77.43438,11.71526],[77.43521,11.72305],[77.43369,11.72511],[77.43505,11.7315],[77.42678,11.73312],[77.42323,11.728],[77.41943,11.72883],[77.41882,11.73375],[77.4154,11.73958],[77.41894,11.74678],[77.42536,11.75136],[77.42691,11.7544],[77.42527,11.75829],[77.42724,11.76087],[77.4226,11.76172],[77.42223,11.77238],[77.41366,11.77467],[77.39446,11.78763],[77.38802,11.78847],[77.37026,11.78666],[77.36904,11.78951],[77.36485,11.7904],[77.36042,11.77947],[77.33515,11.77123],[77.3277,11.77535],[77.31267,11.79354],[77.29385,11.809],[77.28798,11.80044],[77.27443,11.803],[77.27342,11.80534],[77.26158,11.81061],[77.24988,11.81301],[77.2496,11.80418],[77.2386,11.79465],[77.21752,11.79533],[77.18924,11.79252],[77.18202,11.78632],[77.14709,11.78191],[77.13808,11.77264],[77.13058,11.7737],[77.12276,11.77245],[77.11565,11.77472],[77.11075,11.77347],[77.11266,11.76558],[77.11134,11.76367],[77.11246,11.75693],[77.10855,11.7526],[77.11138,11.7504],[77.11174,11.74307],[77.11484,11.73893],[77.11419,11.73447],[77.11754,11.73179],[77.11535,11.72817],[77.11739,11.72847],[77.11602,11.72564],[77.11814,11.72611],[77.11771,11.72107],[77.11482,11.72175],[77.10501,11.7328],[77.08022,11.73598],[77.08276,11.73976],[77.07109,11.75131],[77.05643,11.76978],[77.05991,11.77152],[77.06126,11.77592],[77.0671,11.77831],[77.06976,11.78208],[77.06692,11.78798],[77.06294,11.7904],[77.05779,11.78885],[77.05043,11.78962],[77.04647,11.78762],[77.043,11.78199],[77.04006,11.78062],[77.0351,11.76978],[77.02886,11.77467],[77.03549,11.78314],[77.03875,11.79385],[77.03534,11.7939],[77.03267,11.79589],[77.03419,11.79995],[77.03065,11.80201],[77.02988,11.80467],[77.01689,11.81071],[77.01622,11.8069],[77.01401,11.80621],[77.01335,11.81316]],[[76.95217,11.54833],[76.94872,11.55159],[76.9497,11.55446],[76.95163,11.55516],[76.95476,11.55289],[76.95511,11.54879],[76.95364,11.54703],[76.95217,11.54833]],[[76.99987,11.51556],[77.00053,11.51711],[77.00457,11.51702],[77.004,11.51349],[77.00122,11.51358],[76.99987,11.51556]]],[[[77.53213,11.84848],[77.52502,11.84461],[77.52827,11.83973],[77.53384,11.83718],[77.53528,11.82574],[77.53203,11.81475],[77.5266,11.81126],[77.52723,11.79994],[77.52985,11.79519],[77.53259,11.7949],[77.53304,11.79132],[77.53075,11.7784],[77.52702,11.77443],[77.50835,11.76219],[77.49959,11.75074],[77.49515,11.75032],[77.48043,11.73918],[77.47066,11.74134],[77.46689,11.74361],[77.46464,11.74219],[77.44997,11.69693],[77.4534,11.6937],[77.45735,11.678],[77.47167,11.694],[77.472,11.69783],[77.46945,11.70706],[77.47198,11.7181],[77.47641,11.71385],[77.48347,11.72059],[77.49647,11.7406],[77.5068,11.75178],[77.50979,11.75326],[77.52843,11.75134],[77.5285,11.74756],[77.53882,11.73928],[77.54276,11.74141],[77.54442,11.74423],[77.54768,11.74441],[77.54745,11.74845],[77.53993,11.75237],[77.55193,11.76206],[77.555,11.76606],[77.55706,11.7665],[77.56013,11.76231],[77.56328,11.73114],[77.56781,11.72546],[77.56663,11.71858],[77.5716,11.71144],[77.58323,11.72236],[77.57791,11.72523],[77.58707,11.73833],[77.59228,11.74296],[77.59602,11.74978],[77.59441,11.75283],[77.58518,11.758],[77.58671,11.76504],[77.59068,11.77334],[77.59294,11.77053],[77.59616,11.77153],[77.61339,11.76626],[77.62039,11.74226],[77.62077,11.73724],[77.62702,11.72698],[77.63155,11.72923],[77.63386,11.73991],[77.63549,11.73995],[77.63598,11.74148],[77.63381,11.74216],[77.63542,11.75388],[77.62512,11.76673],[77.62091,11.77567],[77.61707,11.77676],[77.61708,11.78567],[77.60604,11.79155],[77.59338,11.78565],[77.57192,11.7855],[77.57348,11.80116],[77.54189,11.80153],[77.54703,11.80444],[77.54954,11.8084],[77.54811,11.81414],[77.54616,11.81472],[77.54743,11.81964],[77.54247,11.82472],[77.54247,11.83091],[77.54409,11.83083],[77.54488,11.83253],[77.54474,11.83713],[77.54264,11.84189],[77.53909,11.84538],[77.53213,11.84848]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"574","area_level":"District","area_name":"Kancheepuram","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.73849,12.43898],[79.73618,12.44191],[79.73609,12.44364],[79.73503,12.44482],[79.73387,12.44727],[79.73346,12.44881],[79.73365,12.45026],[79.73457,12.45138],[79.73452,12.45216],[79.73337,12.45408],[79.72662,12.45071],[79.72065,12.44602],[79.71889,12.44521],[79.71226,12.44338],[79.71248,12.4422],[79.71412,12.44155],[79.71544,12.44134],[79.71604,12.44026],[79.71703,12.43945],[79.72184,12.43811],[79.72216,12.43829],[79.72271,12.43802],[79.72313,12.43734],[79.72382,12.43679],[79.72511,12.43652],[79.73,12.43334],[79.73261,12.4312],[79.73407,12.42969],[79.73627,12.42841],[79.73618,12.43135],[79.73678,12.43271],[79.73839,12.43466],[79.73849,12.43589],[79.73821,12.4378],[79.73849,12.43898]]],[[[80.1959,13.02956],[80.19133,13.02659],[80.18858,13.02304],[80.18341,13.02528],[80.17971,13.02244],[80.17411,13.02532],[80.16748,13.02526],[80.16521,13.02193],[80.16452,13.02518],[80.1625,13.02499],[80.16165,13.02316],[80.15931,13.0237],[80.15931,13.02486],[80.15024,13.02602],[80.14401,13.02358],[80.14517,13.02223],[80.14484,13.017],[80.14722,13.01606],[80.15184,13.01701],[80.15552,13.01408],[80.15819,13.01542],[80.16048,13.01225],[80.16129,13.0105],[80.15971,13.00797],[80.16517,13.00424],[80.16068,12.99798],[80.16745,12.98662],[80.16897,12.98019],[80.17999,12.97909],[80.18169,12.97118],[80.18602,12.96821],[80.19063,12.9701],[80.19588,12.96854],[80.19563,12.96021],[80.20076,12.95886],[80.20229,12.95311],[80.19895,12.95033],[80.19923,12.9473],[80.19823,12.94555],[80.19426,12.9428],[80.19011,12.94192],[80.18794,12.93785],[80.19432,12.93716],[80.19922,12.93336],[80.19815,12.93179],[80.19871,12.92712],[80.2014,12.92388],[80.19883,12.9111],[80.21738,12.91056],[80.21648,12.89021],[80.2135,12.88041],[80.20933,12.87551],[80.20893,12.87285],[80.21288,12.86085],[80.22002,12.85251],[80.23267,12.85215],[80.23638,12.85834],[80.24935,12.85717],[80.25923,12.93353],[80.26783,12.97509],[80.25302,12.97667],[80.25298,12.98033],[80.24335,12.98392],[80.24366,12.9799],[80.22881,12.97256],[80.22121,12.96508],[80.21625,12.96738],[80.20889,12.97566],[80.2091,12.97695],[80.20749,12.97728],[80.20765,12.98028],[80.20646,12.98057],[80.2057,12.98293],[80.20416,12.98305],[80.21082,13.0089],[80.20941,13.00841],[80.19874,13.01614],[80.20048,13.02828],[80.19596,13.02844],[80.1959,13.02956]]],[[[79.99084,13.05381],[79.98654,13.05618],[79.98375,13.05196],[79.98047,13.05201],[79.97703,13.0498],[79.97141,13.05004],[79.96974,13.04845],[79.96883,13.03748],[79.95563,13.03777],[79.94896,13.03268],[79.93623,13.03259],[79.9182,13.03498],[79.91706,13.03642],[79.91779,13.04764],[79.91194,13.04623],[79.90068,13.04946],[79.89709,13.03178],[79.90007,13.03147],[79.90048,13.02991],[79.89905,13.01955],[79.90016,13.01962],[79.90041,13.01698],[79.90628,13.0163],[79.90689,13.01747],[79.91101,13.01463],[79.91138,13.01766],[79.92004,13.0195],[79.92006,13.01428],[79.93095,13.01393],[79.93348,13.0111],[79.94184,13.00857],[79.94226,13.00134],[79.93581,12.99247],[79.93244,12.99258],[79.92859,12.99005],[79.92495,12.99071],[79.91934,12.9969],[79.91261,12.99919],[79.90842,13.0042],[79.90646,13.00372],[79.90018,12.99579],[79.88924,12.99371],[79.88921,12.99223],[79.90065,12.98712],[79.90329,12.9832],[79.91404,12.97892],[79.91187,12.97355],[79.9106,12.97379],[79.91022,12.96593],[79.90353,12.96643],[79.89615,12.95903],[79.89513,12.94865],[79.89072,12.9451],[79.88164,12.94812],[79.87313,12.94684],[79.85827,12.94944],[79.85257,12.94839],[79.85243,12.95199],[79.84854,12.95317],[79.84819,12.95643],[79.84146,12.95876],[79.83236,12.95823],[79.83478,12.96239],[79.83186,12.96388],[79.82125,12.96202],[79.82241,12.96726],[79.82156,12.97829],[79.818,12.98325],[79.81999,12.98793],[79.81483,12.98656],[79.81296,12.99031],[79.82174,12.99284],[79.82335,12.99695],[79.8305,12.99699],[79.82783,13.00991],[79.82452,13.01136],[79.82676,13.01705],[79.82388,13.02006],[79.82655,13.03036],[79.82485,13.03101],[79.82299,13.02811],[79.81809,13.02661],[79.81754,13.02369],[79.81341,13.01997],[79.81076,13.0198],[79.81062,13.01819],[79.80105,13.01495],[79.79667,13.02767],[79.78779,13.02251],[79.78059,13.02253],[79.76866,13.01703],[79.76782,13.01497],[79.74759,13.0029],[79.74528,12.99584],[79.7341,12.98679],[79.72,12.98088],[79.71329,12.98076],[79.71145,12.97849],[79.70103,12.9763],[79.69652,12.97077],[79.67529,12.95643],[79.66489,12.95151],[79.65888,12.95058],[79.66043,12.94486],[79.65942,12.94123],[79.66308,12.93044],[79.64051,12.92291],[79.63764,12.92442],[79.6354,12.9237],[79.6324,12.92006],[79.62886,12.91964],[79.61978,12.91349],[79.6027,12.90726],[79.59625,12.90694],[79.58984,12.90286],[79.57771,12.89979],[79.56827,12.89957],[79.56752,12.89878],[79.56959,12.89701],[79.56627,12.8959],[79.56826,12.8938],[79.56526,12.89133],[79.56414,12.88598],[79.55831,12.88382],[79.55701,12.8849],[79.55672,12.87888],[79.55905,12.87752],[79.5584,12.87295],[79.56401,12.86909],[79.56714,12.85945],[79.56438,12.8558],[79.55626,12.85228],[79.57681,12.84422],[79.58254,12.8397],[79.58537,12.83475],[79.5945,12.83232],[79.59637,12.82889],[79.60316,12.82729],[79.60797,12.82941],[79.62824,12.8212],[79.63832,12.81476],[79.64292,12.80258],[79.64096,12.79401],[79.63586,12.78989],[79.63533,12.78639],[79.64067,12.78612],[79.65019,12.78249],[79.64619,12.77249],[79.65453,12.76417],[79.65947,12.76746],[79.65936,12.77403],[79.65733,12.77469],[79.65951,12.77639],[79.66406,12.77547],[79.67044,12.77775],[79.67063,12.78054],[79.66934,12.78116],[79.67055,12.78765],[79.67326,12.79088],[79.67745,12.7902],[79.68982,12.78331],[79.69695,12.77625],[79.7033,12.77606],[79.70398,12.78013],[79.70749,12.77783],[79.70726,12.76556],[79.70935,12.7587],[79.71269,12.75708],[79.73111,12.75598],[79.7323,12.75208],[79.73711,12.74839],[79.74125,12.74856],[79.74483,12.74386],[79.74411,12.73892],[79.74148,12.73463],[79.72359,12.7317],[79.72173,12.7294],[79.71317,12.72831],[79.71453,12.72426],[79.72634,12.72359],[79.73646,12.71929],[79.7374,12.7055],[79.73605,12.7055],[79.73565,12.70337],[79.74378,12.70287],[79.74369,12.69695],[79.74194,12.69487],[79.7042,12.67575],[79.69418,12.67387],[79.68249,12.66798],[79.67323,12.66625],[79.65947,12.67086],[79.64658,12.67039],[79.64355,12.66474],[79.64311,12.65739],[79.63762,12.65416],[79.63671,12.64468],[79.63118,12.63831],[79.63229,12.6361],[79.63032,12.63102],[79.63688,12.62889],[79.63718,12.6266],[79.64448,12.62676],[79.64544,12.6252],[79.64374,12.61319],[79.64567,12.60308],[79.65409,12.60298],[79.65588,12.59948],[79.65855,12.60093],[79.65935,12.59804],[79.66122,12.59826],[79.66581,12.5934],[79.67243,12.59329],[79.67751,12.59854],[79.68442,12.59852],[79.68836,12.60156],[79.69387,12.59893],[79.6973,12.59447],[79.70109,12.59602],[79.71853,12.59085],[79.72461,12.58739],[79.72493,12.57897],[79.71578,12.58115],[79.71521,12.57858],[79.70662,12.57509],[79.70565,12.56945],[79.71693,12.56808],[79.71922,12.56459],[79.71463,12.54959],[79.72112,12.54747],[79.7288,12.54128],[79.73583,12.53853],[79.74148,12.53283],[79.74393,12.53189],[79.74583,12.53762],[79.74831,12.53668],[79.75065,12.54108],[79.75496,12.54314],[79.75477,12.54803],[79.75228,12.54894],[79.75368,12.56174],[79.76303,12.5565],[79.76369,12.55022],[79.76868,12.55223],[79.77686,12.5519],[79.77627,12.55619],[79.77888,12.55616],[79.78013,12.56048],[79.78791,12.56188],[79.79276,12.56062],[79.7959,12.5682],[79.81929,12.5655],[79.82134,12.56929],[79.82062,12.5789],[79.8171,12.58238],[79.81759,12.58855],[79.81476,12.58751],[79.81128,12.59554],[79.81176,12.59707],[79.81345,12.59694],[79.81528,12.60611],[79.81101,12.61248],[79.81172,12.61594],[79.80807,12.6203],[79.80528,12.62907],[79.8203,12.62271],[79.82052,12.62061],[79.82355,12.62065],[79.82968,12.62349],[79.84067,12.62389],[79.84563,12.63092],[79.84782,12.63148],[79.86306,12.62662],[79.8705,12.62655],[79.87364,12.63102],[79.88298,12.63195],[79.88801,12.63037],[79.88888,12.63206],[79.8919,12.63202],[79.89539,12.63633],[79.89696,12.64163],[79.90914,12.64018],[79.9135,12.63801],[79.91311,12.63612],[79.9245,12.63258],[79.92852,12.63717],[79.92798,12.63992],[79.92485,12.64258],[79.92656,12.6438],[79.92306,12.65097],[79.92357,12.65846],[79.92041,12.67096],[79.92129,12.68017],[79.91699,12.68248],[79.91602,12.69119],[79.91705,12.69624],[79.93225,12.69532],[79.9311,12.70238],[79.94324,12.7027],[79.94688,12.70004],[79.95275,12.6994],[79.95171,12.71084],[79.94221,12.72515],[79.94134,12.73023],[79.92659,12.74578],[79.9185,12.75242],[79.90356,12.75563],[79.88249,12.76701],[79.89103,12.77334],[79.8871,12.77436],[79.88751,12.77678],[79.87707,12.77752],[79.87687,12.78002],[79.90127,12.78446],[79.9059,12.79025],[79.90946,12.79974],[79.9117,12.80004],[79.92518,12.79474],[79.92667,12.79839],[79.93183,12.79102],[79.93262,12.78707],[79.93515,12.78444],[79.93934,12.78341],[79.9409,12.78693],[79.94026,12.79059],[79.956,12.79077],[79.96001,12.79748],[79.96373,12.80939],[79.95835,12.8108],[79.95728,12.81684],[79.95601,12.81723],[79.95684,12.82527],[79.96051,12.8241],[79.96778,12.81404],[79.97835,12.81462],[79.99207,12.80961],[79.99854,12.81239],[80.0061,12.81296],[80.00681,12.80924],[80.00937,12.80943],[80.00851,12.81452],[80.01213,12.817],[80.01732,12.81748],[80.02232,12.82217],[80.03037,12.82263],[80.03191,12.83041],[80.03573,12.83357],[80.04027,12.83428],[80.04016,12.83967],[80.04908,12.8388],[80.05122,12.83989],[80.05367,12.85144],[80.06134,12.86368],[80.05908,12.87283],[80.05523,12.87679],[80.05227,12.88307],[80.05668,12.88905],[80.06015,12.90009],[80.06755,12.91184],[80.06763,12.91437],[80.07059,12.91779],[80.07348,12.91828],[80.084,12.92611],[80.0875,12.93953],[80.09117,12.94679],[80.09984,12.94568],[80.10091,12.95039],[80.10354,12.94938],[80.10417,12.95495],[80.08745,12.96183],[80.08449,12.96161],[80.08567,12.96946],[80.08051,12.97299],[80.07984,12.96951],[80.07255,12.9697],[80.07074,12.96334],[80.06496,12.95831],[80.064,12.96165],[80.06276,12.96173],[80.06142,12.96163],[80.0619,12.95786],[80.05405,12.95834],[80.05107,12.96088],[80.05023,12.9647],[80.04762,12.96475],[80.04692,12.96795],[80.04922,12.97481],[80.05255,12.97904],[80.05291,12.98279],[80.0621,12.98188],[80.06346,12.98457],[80.06416,12.9875],[80.06123,12.99219],[80.06074,13.00129],[80.05723,13.00237],[80.05848,13.00888],[80.0631,13.00846],[80.07314,13.01261],[80.07603,13.01725],[80.07984,13.01622],[80.07105,13.03742],[80.0684,13.03453],[80.06234,13.03452],[80.06038,13.02729],[80.05244,13.02277],[80.04659,13.02318],[80.04533,13.02737],[80.04215,13.02976],[80.04352,13.01921],[80.02788,13.01984],[80.02234,13.02428],[80.02519,13.0386],[80.02216,13.04087],[80.00617,13.04249],[79.99456,13.04674],[79.99174,13.03637],[79.98764,13.03049],[79.97953,13.03313],[79.97421,13.03891],[79.97823,13.04008],[79.97887,13.04916],[79.98314,13.05007],[79.9868,13.0538],[79.99086,13.05157],[79.99084,13.05381]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"575","area_level":"District","area_name":"Kanniyakumari","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.27968,8.57048],[77.2776,8.57347],[77.27345,8.57474],[77.26907,8.57881],[77.27066,8.57165],[77.27504,8.56564],[77.2743,8.55964],[77.28236,8.55049],[77.28385,8.54673],[77.27465,8.53763],[77.27426,8.53372],[77.27099,8.52916],[77.26219,8.50654],[77.2513,8.50542],[77.2463,8.50235],[77.24424,8.49756],[77.24012,8.49705],[77.22966,8.50898],[77.22226,8.51244],[77.21431,8.51281],[77.21041,8.50701],[77.20238,8.50119],[77.20468,8.49872],[77.20413,8.49645],[77.21188,8.49207],[77.21381,8.48554],[77.21174,8.48397],[77.21139,8.47888],[77.21407,8.46972],[77.22093,8.4658],[77.22742,8.45848],[77.2273,8.45293],[77.22901,8.45061],[77.2281,8.44725],[77.2066,8.4447],[77.20292,8.43633],[77.20381,8.43526],[77.19656,8.42916],[77.19752,8.41994],[77.18261,8.40475],[77.18167,8.39579],[77.17052,8.38736],[77.16819,8.38387],[77.16594,8.38787],[77.16095,8.39017],[77.15373,8.38774],[77.15126,8.38494],[77.15199,8.38129],[77.15532,8.3811],[77.15592,8.38265],[77.15996,8.38124],[77.16129,8.37398],[77.16034,8.3687],[77.15694,8.36741],[77.15589,8.36339],[77.15354,8.36131],[77.15302,8.35514],[77.1564,8.35673],[77.15741,8.35994],[77.15949,8.35916],[77.16336,8.36177],[77.1666,8.36025],[77.16754,8.36343],[77.16965,8.36347],[77.17072,8.3603],[77.17429,8.35863],[77.17547,8.34986],[77.171,8.34773],[77.16694,8.34275],[77.16997,8.33807],[77.16975,8.33474],[77.18061,8.32352],[77.17332,8.31976],[77.17216,8.32469],[77.16993,8.32549],[77.16929,8.33295],[77.1536,8.328],[77.14843,8.33199],[77.14526,8.32956],[77.13979,8.32987],[77.13842,8.32753],[77.12919,8.32598],[77.12959,8.32196],[77.11921,8.32106],[77.11899,8.31678],[77.12448,8.31207],[77.12278,8.30901],[77.11664,8.31031],[77.11308,8.30424],[77.10553,8.30692],[77.10176,8.30647],[77.10163,8.30091],[77.09886,8.29896],[77.09607,8.29317],[77.11148,8.2831],[77.12706,8.27001],[77.14941,8.25559],[77.154,8.25021],[77.16767,8.24001],[77.18591,8.21849],[77.21193,8.20461],[77.22381,8.19632],[77.23074,8.18602],[77.23999,8.1768],[77.24781,8.17282],[77.2556,8.17248],[77.26218,8.16971],[77.28732,8.15558],[77.29823,8.14737],[77.30259,8.14185],[77.30139,8.14065],[77.30416,8.13668],[77.30434,8.13227],[77.3158,8.12184],[77.31805,8.12176],[77.319,8.12388],[77.3214,8.124],[77.32233,8.12246],[77.32364,8.12637],[77.33421,8.12594],[77.35209,8.12243],[77.44473,8.09464],[77.48103,8.0891],[77.48641,8.0897],[77.48675,8.08814],[77.49904,8.08528],[77.52801,8.08116],[77.53251,8.0777],[77.53976,8.07893],[77.55133,8.07803],[77.55309,8.08582],[77.55804,8.08992],[77.56433,8.09234],[77.56151,8.09508],[77.55942,8.09499],[77.55821,8.09772],[77.55863,8.10652],[77.55697,8.11103],[77.55876,8.11929],[77.56606,8.12481],[77.56686,8.12723],[77.57711,8.13672],[77.58862,8.14211],[77.58814,8.14714],[77.58176,8.15061],[77.58377,8.15458],[77.57194,8.15185],[77.56271,8.15638],[77.54623,8.15808],[77.54607,8.15925],[77.53983,8.16089],[77.53767,8.16939],[77.53847,8.17417],[77.54318,8.17536],[77.54692,8.17937],[77.5447,8.18342],[77.54166,8.184],[77.54174,8.18525],[77.54479,8.18515],[77.54451,8.18649],[77.54854,8.19],[77.55266,8.18983],[77.55291,8.19175],[77.55231,8.19354],[77.54948,8.19447],[77.54872,8.19314],[77.54553,8.19559],[77.54625,8.20066],[77.55041,8.20261],[77.54976,8.20559],[77.54377,8.20549],[77.54503,8.21349],[77.54411,8.21614],[77.54724,8.21636],[77.54752,8.21854],[77.54988,8.22002],[77.54551,8.22261],[77.54061,8.22147],[77.54079,8.22465],[77.54376,8.22498],[77.54552,8.22726],[77.54446,8.23012],[77.54172,8.23174],[77.5453,8.24024],[77.54651,8.24021],[77.54841,8.24472],[77.56966,8.24342],[77.56977,8.24838],[77.57221,8.24857],[77.57202,8.24407],[77.57672,8.24401],[77.57542,8.24503],[77.5756,8.24862],[77.57387,8.24893],[77.57429,8.25582],[77.57047,8.25586],[77.571,8.25934],[77.56732,8.25871],[77.56348,8.26041],[77.56185,8.26624],[77.56342,8.26626],[77.56355,8.26966],[77.55843,8.26966],[77.56306,8.27559],[77.55366,8.27689],[77.55383,8.27923],[77.5564,8.28084],[77.56198,8.27717],[77.56426,8.27856],[77.55812,8.28364],[77.55716,8.28846],[77.54829,8.29544],[77.542,8.31071],[77.53093,8.31865],[77.53471,8.32437],[77.53235,8.32582],[77.53426,8.33101],[77.53272,8.33531],[77.53995,8.33353],[77.54205,8.33527],[77.5404,8.33551],[77.53956,8.34009],[77.53804,8.34035],[77.53984,8.34583],[77.53811,8.34976],[77.53563,8.35117],[77.53655,8.35328],[77.53373,8.36748],[77.53597,8.37318],[77.54169,8.37881],[77.53145,8.39291],[77.52339,8.39044],[77.52404,8.38696],[77.51976,8.38222],[77.51036,8.384],[77.50732,8.38699],[77.50026,8.38068],[77.49148,8.3791],[77.48932,8.38261],[77.4893,8.3884],[77.4797,8.39564],[77.47731,8.395],[77.47316,8.39741],[77.47172,8.40841],[77.47294,8.4163],[77.46908,8.41527],[77.4616,8.42846],[77.46417,8.43307],[77.46283,8.43553],[77.46364,8.44184],[77.47004,8.45008],[77.47251,8.45118],[77.47226,8.45527],[77.46436,8.46176],[77.46491,8.46453],[77.46775,8.46619],[77.46631,8.46878],[77.45812,8.46762],[77.45241,8.47225],[77.44514,8.47481],[77.44495,8.48528],[77.44953,8.4872],[77.44596,8.49045],[77.447,8.49816],[77.4418,8.50156],[77.43867,8.50716],[77.43325,8.50614],[77.42826,8.5122],[77.4121,8.51707],[77.40323,8.51724],[77.39814,8.52142],[77.38911,8.52404],[77.38143,8.5214],[77.37757,8.52404],[77.37443,8.51806],[77.36675,8.52472],[77.36776,8.52869],[77.36262,8.53189],[77.36316,8.53716],[77.3609,8.54027],[77.35797,8.54046],[77.35783,8.53766],[77.35332,8.53939],[77.34994,8.54274],[77.35166,8.54496],[77.35081,8.54644],[77.34686,8.54469],[77.33714,8.55266],[77.32752,8.55507],[77.3243,8.55844],[77.31968,8.55828],[77.31675,8.56074],[77.31131,8.55932],[77.30161,8.56631],[77.29298,8.56752],[77.28852,8.57029],[77.28709,8.56678],[77.28224,8.57035],[77.27968,8.57048]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"576","area_level":"District","area_name":"Karur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.00592,11.09459],[77.9965,11.0968],[77.99059,11.09619],[77.95193,11.06674],[77.94494,11.06542],[77.93313,11.07016],[77.91976,11.04689],[77.91731,11.04536],[77.91286,11.04702],[77.90727,11.04604],[77.90496,11.04421],[77.90068,11.03459],[77.8873,11.0318],[77.88108,11.02431],[77.86913,11.02343],[77.8615,11.03041],[77.85504,11.03092],[77.85219,11.03604],[77.85165,11.0461],[77.84399,11.04813],[77.83992,11.04451],[77.83051,11.0478],[77.82917,11.0531],[77.82983,11.05853],[77.82806,11.06322],[77.81783,11.0703],[77.81096,11.07114],[77.808,11.06904],[77.80679,11.06417],[77.80445,11.06295],[77.79276,11.06711],[77.78828,11.06463],[77.77957,11.06295],[77.77657,11.05833],[77.77687,11.05493],[77.78182,11.05094],[77.78108,11.04433],[77.78228,11.04406],[77.78236,11.03897],[77.78965,11.03616],[77.79191,11.03309],[77.78921,11.02484],[77.79054,11.02408],[77.7897,11.01879],[77.7859,11.01249],[77.78568,11.00785],[77.7813,10.99844],[77.76189,10.98542],[77.75921,10.97968],[77.75111,10.98143],[77.75021,10.97652],[77.75317,10.96561],[77.76494,10.96498],[77.7685,10.96673],[77.76999,10.96177],[77.76908,10.95646],[77.77038,10.95124],[77.76795,10.95147],[77.76864,10.94618],[77.76656,10.93506],[77.76218,10.92335],[77.76084,10.90158],[77.77167,10.89349],[77.77273,10.87704],[77.77494,10.87125],[77.7772,10.86953],[77.78402,10.87312],[77.78595,10.88462],[77.78891,10.88608],[77.79535,10.87797],[77.79406,10.87221],[77.79641,10.86595],[77.80758,10.85826],[77.82072,10.85772],[77.83004,10.8411],[77.83619,10.83535],[77.83991,10.83494],[77.84549,10.83692],[77.85642,10.84935],[77.85995,10.84691],[77.86135,10.84815],[77.86686,10.8441],[77.87121,10.83974],[77.87343,10.83391],[77.87185,10.83294],[77.8718,10.82434],[77.87208,10.8215],[77.87365,10.82146],[77.87553,10.80802],[77.87415,10.80814],[77.87042,10.80065],[77.87144,10.79539],[77.87477,10.79148],[77.88138,10.78884],[77.88507,10.78905],[77.88984,10.7936],[77.89159,10.79218],[77.89292,10.78152],[77.89203,10.77381],[77.8856,10.77312],[77.87794,10.77606],[77.87295,10.7757],[77.87112,10.77173],[77.85493,10.78388],[77.8359,10.78679],[77.83625,10.79017],[77.82847,10.79158],[77.82785,10.79755],[77.81837,10.79704],[77.79855,10.80575],[77.79364,10.7903],[77.78651,10.78825],[77.77778,10.78963],[77.77109,10.76715],[77.78172,10.76383],[77.78123,10.76125],[77.7834,10.75775],[77.79561,10.7554],[77.79547,10.75332],[77.79702,10.75243],[77.8128,10.75845],[77.82509,10.75324],[77.82704,10.74983],[77.82181,10.73356],[77.82462,10.71508],[77.81639,10.70332],[77.81001,10.69904],[77.80817,10.694],[77.81036,10.68481],[77.80803,10.68077],[77.8138,10.67746],[77.8177,10.67941],[77.81412,10.66398],[77.81447,10.65003],[77.81296,10.64824],[77.81861,10.64454],[77.82925,10.63364],[77.83576,10.6342],[77.84599,10.63901],[77.84743,10.63884],[77.84702,10.63647],[77.8648,10.63484],[77.8723,10.63125],[77.87642,10.64543],[77.88556,10.65029],[77.88884,10.64878],[77.88858,10.6474],[77.89591,10.64551],[77.89706,10.64889],[77.89844,10.64846],[77.89963,10.65036],[77.90272,10.64866],[77.90306,10.65241],[77.90922,10.65705],[77.91397,10.64824],[77.93194,10.64675],[77.93507,10.64359],[77.94366,10.64289],[77.94438,10.64419],[77.94832,10.64254],[77.95014,10.644],[77.9518,10.64023],[77.97778,10.63983],[77.97947,10.64336],[77.97273,10.65551],[77.96985,10.6725],[77.97146,10.67412],[77.9781,10.67492],[77.99264,10.67111],[77.99587,10.67372],[78.00073,10.6741],[78.0008,10.67614],[78.00555,10.67546],[78.00855,10.69246],[78.00913,10.70943],[78.01517,10.71964],[78.00871,10.72212],[78.01196,10.72791],[78.01059,10.7311],[77.99866,10.72988],[77.99868,10.73325],[77.99601,10.73781],[77.99817,10.74277],[77.95793,10.74382],[77.94957,10.7427],[77.94002,10.73826],[77.93131,10.73662],[77.9306,10.74358],[77.93223,10.75322],[77.93822,10.76292],[77.93921,10.76841],[77.98328,10.75946],[77.99493,10.76174],[77.99853,10.77448],[78.01899,10.77432],[78.02463,10.77158],[78.02256,10.77656],[78.02669,10.77518],[78.02781,10.78146],[78.0339,10.77994],[78.03412,10.77455],[78.04056,10.7752],[78.04219,10.77752],[78.04711,10.77756],[78.04874,10.77629],[78.04777,10.77348],[78.05569,10.77394],[78.05755,10.77262],[78.05516,10.76578],[78.05692,10.76357],[78.05914,10.76427],[78.05892,10.76665],[78.06085,10.76797],[78.0645,10.76883],[78.06609,10.76763],[78.0687,10.77164],[78.06723,10.77361],[78.06995,10.77572],[78.07898,10.77558],[78.08333,10.77118],[78.09371,10.76709],[78.09806,10.76693],[78.10006,10.77917],[78.09688,10.7803],[78.09642,10.78887],[78.09864,10.79567],[78.10086,10.79654],[78.10274,10.80157],[78.10482,10.80163],[78.10506,10.80503],[78.12776,10.80409],[78.12839,10.8051],[78.13226,10.80241],[78.13652,10.8044],[78.14077,10.80278],[78.14427,10.80433],[78.14913,10.80387],[78.14988,10.81653],[78.15231,10.82644],[78.15848,10.82775],[78.15857,10.83278],[78.16925,10.83409],[78.17056,10.83203],[78.1732,10.83259],[78.17442,10.83513],[78.17603,10.83513],[78.17549,10.82613],[78.17679,10.82619],[78.17709,10.82272],[78.18259,10.82381],[78.18194,10.83279],[78.18664,10.83303],[78.18695,10.82977],[78.18528,10.82731],[78.18632,10.82632],[78.18499,10.82628],[78.18383,10.82135],[78.18082,10.82119],[78.18606,10.81932],[78.16989,10.79898],[78.16825,10.77589],[78.15164,10.74051],[78.15478,10.73033],[78.15467,10.72005],[78.15309,10.70726],[78.14718,10.69295],[78.14696,10.68304],[78.14507,10.67671],[78.14591,10.6669],[78.1485,10.66049],[78.14554,10.64959],[78.16307,10.64885],[78.16086,10.64387],[78.16026,10.63306],[78.16209,10.62082],[78.16539,10.61374],[78.14486,10.60553],[78.13617,10.59678],[78.13511,10.57851],[78.13271,10.57509],[78.13777,10.57037],[78.13917,10.56263],[78.14873,10.56093],[78.15253,10.56451],[78.16096,10.56249],[78.17004,10.5542],[78.17574,10.55548],[78.18093,10.5598],[78.18467,10.55818],[78.18998,10.55847],[78.19121,10.55709],[78.19044,10.55339],[78.20002,10.54669],[78.20875,10.55012],[78.23074,10.55003],[78.24311,10.55433],[78.25015,10.56923],[78.2566,10.57009],[78.26261,10.57886],[78.2601,10.59578],[78.25579,10.60141],[78.25854,10.60974],[78.26311,10.61508],[78.26579,10.62816],[78.27206,10.67729],[78.27703,10.69644],[78.28378,10.7374],[78.28345,10.74587],[78.28598,10.74656],[78.28628,10.73737],[78.28799,10.73523],[78.29235,10.73527],[78.29276,10.72899],[78.29063,10.72681],[78.28941,10.71413],[78.29253,10.7018],[78.30236,10.70311],[78.31637,10.70165],[78.3205,10.70909],[78.326,10.70837],[78.32794,10.70606],[78.32896,10.70917],[78.33439,10.70964],[78.33455,10.70689],[78.34188,10.70525],[78.34499,10.72151],[78.35817,10.72214],[78.35905,10.72555],[78.37782,10.72597],[78.37433,10.71848],[78.3844,10.71669],[78.3884,10.71085],[78.38792,10.70822],[78.39036,10.70847],[78.39925,10.69629],[78.39684,10.68994],[78.39977,10.6904],[78.40054,10.68138],[78.40384,10.67653],[78.40737,10.6739],[78.4223,10.67113],[78.42646,10.67275],[78.42586,10.67562],[78.42943,10.67642],[78.43362,10.68715],[78.43685,10.68794],[78.43819,10.68995],[78.45118,10.69034],[78.45107,10.68734],[78.45474,10.68805],[78.45612,10.68676],[78.46092,10.68859],[78.46706,10.68819],[78.46829,10.6902],[78.47081,10.69011],[78.47069,10.69563],[78.46742,10.69842],[78.47062,10.70365],[78.47472,10.70391],[78.47962,10.70198],[78.48516,10.70268],[78.48514,10.70087],[78.48972,10.69831],[78.5135,10.69489],[78.51636,10.69999],[78.51693,10.70736],[78.51881,10.70704],[78.52031,10.71061],[78.52947,10.71117],[78.53393,10.71618],[78.54355,10.71954],[78.54452,10.7234],[78.55177,10.72263],[78.55784,10.73117],[78.56539,10.73446],[78.56429,10.73717],[78.56892,10.74746],[78.56701,10.74804],[78.56722,10.7575],[78.5643,10.75609],[78.56224,10.76455],[78.5717,10.77502],[78.56514,10.78249],[78.56066,10.78201],[78.56049,10.77979],[78.55747,10.78084],[78.55734,10.78927],[78.54662,10.79139],[78.5475,10.79436],[78.545,10.7945],[78.54496,10.7961],[78.54679,10.79618],[78.54709,10.8028],[78.55076,10.8037],[78.55464,10.81341],[78.57647,10.80805],[78.58781,10.82857],[78.5853,10.82812],[78.58668,10.83096],[78.58122,10.83091],[78.57293,10.83573],[78.57487,10.84479],[78.57761,10.84466],[78.57911,10.85034],[78.57792,10.8527],[78.57352,10.85676],[78.57007,10.85632],[78.57015,10.85918],[78.56729,10.86141],[78.56303,10.86362],[78.55817,10.86379],[78.5581,10.86939],[78.55061,10.87755],[78.5445,10.87916],[78.53834,10.87842],[78.53203,10.88151],[78.52048,10.88194],[78.5164,10.88404],[78.50463,10.88552],[78.49957,10.88804],[78.4938,10.89413],[78.49229,10.89347],[78.49055,10.89513],[78.48453,10.88567],[78.47721,10.88496],[78.47124,10.88628],[78.47163,10.89815],[78.47817,10.90153],[78.47598,10.90643],[78.48596,10.90333],[78.48937,10.90646],[78.46381,10.91413],[78.46884,10.92126],[78.45274,10.92635],[78.44107,10.93491],[78.42628,10.94886],[78.40118,10.96132],[78.38405,10.96051],[78.38379,10.96235],[78.3773,10.96376],[78.34155,10.9611],[78.33245,10.96305],[78.30301,10.96355],[78.27282,10.96805],[78.25033,10.96881],[78.22708,10.96048],[78.21818,10.95886],[78.20706,10.95853],[78.19872,10.96107],[78.19504,10.9632],[78.19793,10.97042],[78.19705,10.97252],[78.18733,10.97943],[78.18246,10.97887],[78.17084,10.99503],[78.16935,11.00268],[78.16001,11.02238],[78.15188,11.02891],[78.1443,11.03786],[78.13522,11.04221],[78.11902,11.0605],[78.10174,11.0755],[78.07101,11.07902],[78.05477,11.07396],[78.04303,11.08328],[78.02748,11.09057],[78.01142,11.09471],[78.00592,11.09459]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"577","area_level":"District","area_name":"Krishnagiri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.93599,12.88544],[77.93601,12.88724],[77.92932,12.89092],[77.92509,12.89009],[77.92187,12.88474],[77.90876,12.88484],[77.90841,12.87881],[77.89492,12.87857],[77.89034,12.86966],[77.88475,12.87022],[77.88254,12.86856],[77.87727,12.86862],[77.87594,12.8668],[77.85748,12.86948],[77.85095,12.86611],[77.84739,12.86932],[77.84261,12.86869],[77.83601,12.87033],[77.83216,12.86752],[77.83246,12.86204],[77.82579,12.85994],[77.82308,12.85584],[77.81555,12.85579],[77.80792,12.84767],[77.79911,12.85154],[77.79675,12.84478],[77.79489,12.84562],[77.79246,12.84213],[77.7959,12.83453],[77.80988,12.83153],[77.80796,12.82304],[77.8099,12.81553],[77.80216,12.817],[77.79973,12.80522],[77.8034,12.80481],[77.8051,12.7996],[77.80728,12.79939],[77.80854,12.79673],[77.80665,12.79406],[77.80403,12.79423],[77.80221,12.79626],[77.80037,12.79443],[77.79856,12.79512],[77.79292,12.78798],[77.78954,12.78016],[77.77878,12.76776],[77.7845,12.76238],[77.79428,12.75777],[77.79342,12.74944],[77.78356,12.74121],[77.78006,12.74202],[77.76945,12.74029],[77.76333,12.73689],[77.76109,12.72749],[77.77445,12.72421],[77.77032,12.71787],[77.76955,12.71252],[77.76575,12.71374],[77.7647,12.70108],[77.76175,12.69758],[77.75429,12.69734],[77.74068,12.69987],[77.73746,12.69775],[77.73495,12.692],[77.74101,12.68577],[77.74114,12.67498],[77.73916,12.67247],[77.72462,12.67119],[77.72277,12.67965],[77.71159,12.68314],[77.71101,12.66712],[77.70423,12.6614],[77.69219,12.66084],[77.68993,12.65899],[77.67865,12.66039],[77.67714,12.67144],[77.67509,12.67309],[77.67638,12.67947],[77.65991,12.68384],[77.63788,12.67571],[77.62391,12.6739],[77.59887,12.66716],[77.59612,12.65028],[77.59964,12.64269],[77.60073,12.64303],[77.60474,12.63759],[77.60333,12.63532],[77.60623,12.62891],[77.59407,12.62106],[77.59102,12.61524],[77.59142,12.59209],[77.58932,12.59268],[77.5838,12.57588],[77.57934,12.57309],[77.58075,12.56571],[77.58035,12.55159],[77.5864,12.54572],[77.58546,12.5368],[77.5885,12.52662],[77.5872,12.51475],[77.59393,12.51608],[77.60677,12.51413],[77.61242,12.51494],[77.61633,12.50918],[77.61507,12.50416],[77.6024,12.49715],[77.5918,12.48518],[77.58875,12.48563],[77.58368,12.4788],[77.59569,12.4748],[77.5984,12.47618],[77.60742,12.47512],[77.61649,12.48284],[77.62609,12.49631],[77.62948,12.4945],[77.63463,12.4876],[77.6324,12.47912],[77.63314,12.47045],[77.63076,12.47027],[77.62924,12.46677],[77.6306,12.46511],[77.62942,12.46065],[77.62717,12.45845],[77.62915,12.44635],[77.62698,12.44112],[77.62608,12.43076],[77.62909,12.42513],[77.62962,12.41832],[77.62333,12.41226],[77.62058,12.38301],[77.61809,12.3811],[77.61681,12.3682],[77.61302,12.36112],[77.60762,12.36105],[77.60084,12.35843],[77.59869,12.34999],[77.59154,12.34014],[77.57858,12.33567],[77.566,12.30624],[77.55791,12.30573],[77.5579,12.30321],[77.5524,12.29745],[77.55134,12.29121],[77.53284,12.29146],[77.52722,12.27877],[77.51419,12.27538],[77.50838,12.276],[77.49998,12.28257],[77.49674,12.28218],[77.49328,12.27887],[77.4876,12.2805],[77.4851,12.27505],[77.47906,12.27127],[77.47703,12.26446],[77.4782,12.25921],[77.47352,12.25561],[77.47112,12.24351],[77.47849,12.24006],[77.48231,12.2331],[77.48262,12.22944],[77.47225,12.20989],[77.47229,12.20753],[77.47544,12.20559],[77.48645,12.20381],[77.49271,12.19733],[77.51868,12.19448],[77.52815,12.19889],[77.53585,12.19862],[77.54017,12.20238],[77.54626,12.20466],[77.56531,12.19631],[77.56943,12.19974],[77.57386,12.20089],[77.58042,12.1981],[77.59674,12.19927],[77.60503,12.20538],[77.60931,12.20614],[77.61254,12.2059],[77.62096,12.19988],[77.62984,12.20224],[77.63763,12.19669],[77.65608,12.19955],[77.66524,12.19821],[77.69864,12.18513],[77.71135,12.18243],[77.72086,12.18312],[77.73131,12.18007],[77.73427,12.17645],[77.73543,12.16959],[77.74274,12.16288],[77.74672,12.15585],[77.76103,12.16932],[77.77245,12.17196],[77.77684,12.1574],[77.79068,12.1481],[77.79392,12.1477],[77.79477,12.16879],[77.79637,12.17296],[77.79827,12.1723],[77.8035,12.17622],[77.80922,12.20047],[77.8106,12.22677],[77.81452,12.23421],[77.83351,12.24649],[77.84525,12.26218],[77.85378,12.26193],[77.86168,12.25448],[77.86773,12.26576],[77.86994,12.28048],[77.87371,12.28829],[77.87292,12.2917],[77.87501,12.30325],[77.87099,12.31713],[77.87188,12.32444],[77.8684,12.32479],[77.86721,12.33024],[77.87924,12.33585],[77.88176,12.33378],[77.89478,12.33352],[77.90931,12.32676],[77.91188,12.32837],[77.91832,12.32807],[77.92215,12.32538],[77.92675,12.3251],[77.9326,12.32698],[77.9348,12.33035],[77.94853,12.33657],[77.9477,12.34],[77.94983,12.34867],[77.95462,12.3513],[77.95321,12.35881],[77.95052,12.36162],[77.95125,12.36725],[77.94948,12.37509],[77.96783,12.3943],[77.97001,12.40185],[77.96814,12.40212],[77.96821,12.40517],[77.9712,12.41034],[77.97037,12.4142],[77.96599,12.41977],[77.9631,12.43028],[77.95244,12.44087],[77.94671,12.4439],[77.94696,12.4475],[77.94513,12.44945],[77.94034,12.4499],[77.93806,12.44497],[77.93147,12.4411],[77.93043,12.44176],[77.9238,12.45606],[77.92593,12.46373],[77.92844,12.46629],[77.93422,12.46753],[77.93451,12.46944],[77.92462,12.48438],[77.92224,12.4907],[77.9058,12.48937],[77.90522,12.49423],[77.89993,12.49965],[77.9049,12.50133],[77.90036,12.50334],[77.90507,12.50562],[77.90892,12.51266],[77.91314,12.50648],[77.92147,12.50416],[77.94241,12.51368],[77.95128,12.50266],[77.95352,12.50223],[77.94702,12.50128],[77.94603,12.49925],[77.95004,12.49796],[77.95367,12.49206],[77.95341,12.48595],[77.9589,12.4839],[77.96583,12.48618],[77.96503,12.48995],[77.96832,12.49528],[77.97025,12.49649],[77.97434,12.49586],[77.97424,12.49772],[77.97862,12.49694],[77.9818,12.49914],[77.98105,12.50129],[77.98306,12.50715],[77.98582,12.50978],[77.98795,12.50817],[77.99014,12.50904],[77.99322,12.50355],[77.99215,12.50136],[77.99377,12.50043],[77.99667,12.50011],[77.99843,12.50169],[78.00257,12.49984],[78.00514,12.50263],[78.01184,12.50276],[78.01333,12.50082],[78.01244,12.49388],[78.01471,12.49073],[78.01253,12.48764],[78.01274,12.48448],[78.01691,12.48152],[78.01729,12.4793],[78.01904,12.47927],[78.0184,12.47564],[78.02026,12.4756],[78.02019,12.47257],[78.02394,12.47106],[78.02112,12.46629],[78.02332,12.46569],[78.02353,12.46193],[78.02707,12.45966],[78.03819,12.46153],[78.04124,12.46786],[78.0416,12.47347],[78.04539,12.47314],[78.04912,12.47564],[78.05936,12.46763],[78.05968,12.46466],[78.0684,12.46736],[78.07784,12.46355],[78.07894,12.45997],[78.07738,12.45171],[78.08015,12.44886],[78.09811,12.44541],[78.10834,12.45526],[78.1134,12.45611],[78.11805,12.4547],[78.1171,12.45256],[78.1183,12.45059],[78.11442,12.44918],[78.11463,12.44526],[78.11785,12.44381],[78.12229,12.44486],[78.12737,12.44192],[78.13098,12.43778],[78.13757,12.43511],[78.14248,12.42724],[78.1425,12.4242],[78.13944,12.42442],[78.13735,12.41734],[78.1337,12.41618],[78.1317,12.41203],[78.13529,12.4099],[78.13459,12.40638],[78.13173,12.40595],[78.12778,12.40226],[78.13161,12.39484],[78.13488,12.38195],[78.14201,12.37533],[78.14276,12.37073],[78.15401,12.36557],[78.16673,12.36288],[78.16448,12.35916],[78.16364,12.3509],[78.17358,12.33715],[78.1781,12.3343],[78.18078,12.33617],[78.18482,12.33355],[78.1879,12.33573],[78.19079,12.33301],[78.1948,12.33243],[78.2008,12.33579],[78.20518,12.32913],[78.21598,12.33409],[78.21896,12.34132],[78.22425,12.3441],[78.22711,12.34892],[78.23624,12.34789],[78.23548,12.34118],[78.23898,12.34009],[78.2397,12.33409],[78.24733,12.33279],[78.24538,12.33083],[78.24612,12.32813],[78.23788,12.32292],[78.23673,12.32036],[78.22939,12.31744],[78.2288,12.31472],[78.23423,12.31185],[78.23556,12.30714],[78.23204,12.30221],[78.24942,12.29903],[78.25401,12.2949],[78.25818,12.29455],[78.25911,12.29062],[78.26303,12.28918],[78.26128,12.28384],[78.26249,12.28336],[78.2596,12.27874],[78.26242,12.27511],[78.26168,12.27199],[78.26752,12.26345],[78.27706,12.26022],[78.28245,12.26829],[78.28855,12.26848],[78.29824,12.27383],[78.3022,12.27395],[78.30763,12.26594],[78.31156,12.26539],[78.3169,12.2601],[78.32346,12.25911],[78.32836,12.26506],[78.33428,12.26352],[78.34539,12.25129],[78.35258,12.24727],[78.35398,12.24072],[78.3588,12.2352],[78.35826,12.23053],[78.35408,12.22743],[78.35494,12.22612],[78.36277,12.22352],[78.36364,12.22562],[78.369,12.22475],[78.3698,12.22666],[78.37476,12.22492],[78.37499,12.22148],[78.37823,12.22211],[78.37946,12.22704],[78.38131,12.22628],[78.38444,12.22844],[78.4031,12.22395],[78.40412,12.22305],[78.40002,12.21716],[78.40169,12.21331],[78.39808,12.21242],[78.39195,12.20452],[78.38224,12.20656],[78.37911,12.2055],[78.37599,12.20117],[78.37441,12.19526],[78.38268,12.19498],[78.39094,12.18606],[78.39365,12.186],[78.39525,12.18903],[78.39958,12.18787],[78.40489,12.19212],[78.40515,12.1947],[78.40863,12.19652],[78.4122,12.19642],[78.41699,12.19143],[78.41733,12.19243],[78.42124,12.18971],[78.4464,12.19107],[78.44752,12.18532],[78.46469,12.17833],[78.4719,12.17279],[78.46791,12.16661],[78.47036,12.16247],[78.46528,12.14669],[78.4693,12.14911],[78.48285,12.14326],[78.49727,12.13923],[78.49881,12.14193],[78.50097,12.14164],[78.50204,12.14443],[78.50636,12.14294],[78.50846,12.14558],[78.50849,12.15047],[78.50717,12.15182],[78.50828,12.15624],[78.51383,12.1622],[78.51757,12.17191],[78.51652,12.17719],[78.52098,12.1794],[78.54324,12.1791],[78.55465,12.18048],[78.56638,12.19186],[78.5727,12.1937],[78.57535,12.19199],[78.58006,12.16756],[78.58249,12.16234],[78.58434,12.16445],[78.59664,12.1681],[78.60178,12.17447],[78.61234,12.18249],[78.62107,12.18422],[78.63288,12.17662],[78.64067,12.19767],[78.64396,12.19478],[78.64772,12.19428],[78.64843,12.18927],[78.65061,12.1882],[78.65466,12.19637],[78.66968,12.1975],[78.68005,12.20687],[78.68542,12.21421],[78.68865,12.22194],[78.67998,12.22268],[78.6779,12.22819],[78.67307,12.23013],[78.67326,12.23508],[78.66873,12.23844],[78.66538,12.23333],[78.66015,12.23467],[78.65084,12.24022],[78.65321,12.24571],[78.65248,12.25274],[78.64801,12.2584],[78.6352,12.26122],[78.64053,12.26745],[78.6394,12.27048],[78.64109,12.27167],[78.64385,12.28089],[78.64029,12.28156],[78.6376,12.27726],[78.62372,12.26482],[78.61676,12.26756],[78.60976,12.26128],[78.60363,12.26276],[78.60132,12.26723],[78.6042,12.27921],[78.6131,12.29415],[78.60972,12.29756],[78.60945,12.30977],[78.60358,12.31299],[78.5984,12.31323],[78.59276,12.30737],[78.58897,12.30977],[78.58833,12.31277],[78.5912,12.31578],[78.59362,12.32232],[78.59909,12.32327],[78.60459,12.33176],[78.61121,12.33001],[78.61547,12.33754],[78.61395,12.3426],[78.61725,12.34727],[78.61323,12.3495],[78.61204,12.35212],[78.58452,12.36061],[78.58213,12.36619],[78.56962,12.38011],[78.56752,12.389],[78.56446,12.38792],[78.55578,12.39025],[78.54352,12.39791],[78.536,12.39629],[78.52808,12.39909],[78.52568,12.39857],[78.51992,12.40456],[78.51407,12.40715],[78.51258,12.40111],[78.50858,12.39876],[78.50362,12.40256],[78.50187,12.40588],[78.49881,12.40715],[78.4961,12.41212],[78.49535,12.40884],[78.49007,12.40308],[78.49263,12.39977],[78.49015,12.38686],[78.48694,12.38988],[78.46477,12.39186],[78.46313,12.38663],[78.45878,12.38495],[78.44488,12.39183],[78.44102,12.39009],[78.43583,12.39382],[78.44168,12.40798],[78.44613,12.41393],[78.44849,12.41435],[78.45557,12.42849],[78.4523,12.43104],[78.44793,12.44131],[78.44759,12.44425],[78.45018,12.44936],[78.44482,12.45512],[78.4351,12.46084],[78.4313,12.46615],[78.43007,12.4708],[78.42517,12.47461],[78.42445,12.48058],[78.41858,12.48233],[78.41812,12.4855],[78.41554,12.48822],[78.41985,12.50817],[78.41934,12.51375],[78.41305,12.5171],[78.41701,12.52422],[78.41578,12.52428],[78.41451,12.53068],[78.41689,12.53457],[78.41611,12.55021],[78.41817,12.55663],[78.41789,12.56403],[78.42111,12.56538],[78.42131,12.56753],[78.42123,12.57023],[78.41838,12.57227],[78.40982,12.58785],[78.41027,12.59913],[78.40734,12.60231],[78.41046,12.61295],[78.40673,12.61998],[78.41192,12.62759],[78.38947,12.62719],[78.37942,12.62501],[78.37032,12.62765],[78.36286,12.63434],[78.35565,12.63646],[78.35212,12.64158],[78.34359,12.64874],[78.33221,12.64926],[78.33107,12.65303],[78.32581,12.65524],[78.31837,12.66192],[78.30603,12.66627],[78.30099,12.66587],[78.30133,12.66758],[78.29647,12.67104],[78.29559,12.67526],[78.28645,12.68901],[78.27594,12.70215],[78.27109,12.70506],[78.24456,12.70633],[78.23929,12.70101],[78.23771,12.68576],[78.23212,12.6872],[78.21059,12.68608],[78.21235,12.68848],[78.20986,12.69041],[78.20336,12.69313],[78.20101,12.69174],[78.19936,12.69545],[78.20419,12.6959],[78.20994,12.7005],[78.20936,12.70252],[78.20713,12.70221],[78.20772,12.70483],[78.20544,12.70572],[78.20718,12.70817],[78.21217,12.70763],[78.21346,12.71098],[78.21807,12.7088],[78.22712,12.71483],[78.23117,12.71256],[78.24083,12.72952],[78.24088,12.73271],[78.23609,12.7381],[78.23579,12.74585],[78.23214,12.75304],[78.23095,12.76066],[78.22389,12.76588],[78.21286,12.76503],[78.19516,12.77384],[78.19208,12.77428],[78.18896,12.77191],[78.18426,12.77622],[78.18239,12.77425],[78.1774,12.77595],[78.17163,12.77379],[78.16766,12.77008],[78.14515,12.78093],[78.1363,12.78185],[78.13572,12.78309],[78.13424,12.78197],[78.13126,12.7838],[78.12595,12.79168],[78.12499,12.79819],[78.12188,12.79925],[78.12036,12.80171],[78.10936,12.80449],[78.10473,12.80908],[78.09016,12.81736],[78.09017,12.8235],[78.08753,12.82488],[78.08813,12.82787],[78.0862,12.83194],[78.07386,12.83051],[78.07721,12.83885],[78.0712,12.8424],[78.06021,12.84383],[78.05783,12.85211],[78.05259,12.85376],[78.05,12.84878],[78.03073,12.85245],[78.03065,12.85802],[78.02387,12.8565],[78.02407,12.85251],[78.0297,12.84891],[78.02899,12.84519],[78.02433,12.84174],[78.01915,12.84394],[78.0183,12.83105],[78.01466,12.82982],[78.01062,12.83091],[78.00392,12.8256],[78.0058,12.82217],[78.01277,12.81882],[78.01531,12.81379],[78.00975,12.80574],[78.00646,12.80858],[77.99669,12.80787],[77.99562,12.80587],[77.98852,12.80819],[77.98978,12.82155],[77.9868,12.82182],[77.97927,12.82704],[77.98039,12.83506],[77.97405,12.83483],[77.9727,12.83282],[77.96432,12.83284],[77.96257,12.83737],[77.96535,12.84818],[77.963,12.85018],[77.95278,12.85013],[77.95234,12.85712],[77.94365,12.85782],[77.93999,12.85314],[77.94058,12.84525],[77.94661,12.83871],[77.94217,12.83121],[77.94068,12.82334],[77.93434,12.8231],[77.92852,12.82678],[77.92651,12.83028],[77.92056,12.82816],[77.91807,12.83135],[77.91725,12.83885],[77.92424,12.85112],[77.92281,12.85556],[77.93135,12.86181],[77.93559,12.86275],[77.93662,12.86684],[77.94121,12.86822],[77.94163,12.87274],[77.92772,12.87492],[77.92714,12.88152],[77.93463,12.88066],[77.93599,12.88544]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"578","area_level":"District","area_name":"Madurai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.37524,10.3102],[78.37131,10.30763],[78.37289,10.30516],[78.37203,10.30308],[78.3748,10.30027],[78.37149,10.29903],[78.36707,10.30108],[78.36326,10.29371],[78.36114,10.29411],[78.36066,10.29593],[78.35261,10.29708],[78.35023,10.29937],[78.33432,10.30042],[78.32938,10.29843],[78.33191,10.29654],[78.33374,10.29843],[78.33499,10.29864],[78.33466,10.29718],[78.33871,10.2983],[78.33907,10.2967],[78.33528,10.29371],[78.33989,10.28875],[78.33887,10.28705],[78.32883,10.28925],[78.32853,10.28615],[78.32971,10.28625],[78.32599,10.28514],[78.32552,10.28331],[78.32979,10.28064],[78.32736,10.27974],[78.32819,10.27676],[78.33012,10.27787],[78.3271,10.27254],[78.32811,10.2713],[78.32956,10.27264],[78.32949,10.26802],[78.33053,10.26853],[78.32769,10.26362],[78.32775,10.25566],[78.32912,10.25605],[78.32918,10.25356],[78.33197,10.25493],[78.32975,10.24851],[78.32193,10.2496],[78.32158,10.24344],[78.32869,10.22835],[78.32019,10.2141],[78.30903,10.21474],[78.30958,10.21248],[78.3114,10.21299],[78.31477,10.21048],[78.31347,10.20884],[78.30798,10.20803],[78.30725,10.21004],[78.30385,10.21091],[78.30338,10.20858],[78.29142,10.20395],[78.28981,10.19979],[78.28346,10.19432],[78.28233,10.19066],[78.26895,10.18236],[78.27281,10.1811],[78.27222,10.17194],[78.26093,10.16404],[78.25982,10.15418],[78.26445,10.15424],[78.26968,10.15132],[78.27062,10.15245],[78.26688,10.15745],[78.26224,10.15748],[78.26186,10.15904],[78.26966,10.16358],[78.27326,10.16445],[78.27481,10.16305],[78.27532,10.1649],[78.28137,10.1669],[78.28302,10.16278],[78.28144,10.16098],[78.28186,10.15723],[78.28426,10.14858],[78.28211,10.14215],[78.28047,10.14223],[78.27963,10.13394],[78.28083,10.12958],[78.27285,10.13062],[78.2705,10.12944],[78.27436,10.12076],[78.27339,10.11482],[78.27153,10.11491],[78.27236,10.11297],[78.26895,10.107],[78.26589,10.10846],[78.26128,10.10243],[78.26453,10.09362],[78.26331,10.09151],[78.26154,10.09191],[78.26038,10.08592],[78.24409,10.08454],[78.2416,10.08075],[78.23641,10.07769],[78.23215,10.07745],[78.23019,10.07913],[78.22707,10.07711],[78.22282,10.07791],[78.21659,10.0746],[78.21259,10.07526],[78.21041,10.07382],[78.21008,10.07093],[78.20286,10.06691],[78.20061,10.07414],[78.20398,10.07935],[78.19013,10.08526],[78.18857,10.08842],[78.18329,10.08911],[78.17859,10.09258],[78.17016,10.09245],[78.16988,10.09679],[78.17469,10.09832],[78.1707,10.09798],[78.16919,10.10216],[78.1563,10.10726],[78.16539,10.12386],[78.16425,10.14113],[78.15857,10.14438],[78.16122,10.15454],[78.1522,10.16316],[78.15132,10.17152],[78.14612,10.17939],[78.1431,10.18237],[78.13063,10.1875],[78.12417,10.18559],[78.12004,10.18937],[78.10739,10.1893],[78.10364,10.19233],[78.10051,10.19034],[78.09678,10.19032],[78.09154,10.182],[78.08772,10.1851],[78.08193,10.18603],[78.07775,10.18445],[78.07075,10.1881],[78.06319,10.18333],[78.05598,10.18484],[78.02003,10.18452],[78.01754,10.17679],[78.01275,10.1707],[78.01374,10.16336],[78.00869,10.16208],[78.00243,10.16292],[77.99714,10.16074],[77.9967,10.15771],[77.99277,10.15481],[77.99305,10.15167],[77.98603,10.14286],[77.98407,10.13661],[77.97984,10.13593],[77.97271,10.13116],[77.9697,10.13325],[77.96502,10.13284],[77.96607,10.13511],[77.96435,10.13624],[77.96285,10.13504],[77.96221,10.13731],[77.95992,10.13116],[77.954,10.12994],[77.94781,10.12301],[77.93355,10.11362],[77.93385,10.10483],[77.92932,10.10096],[77.93129,10.09031],[77.9349,10.08995],[77.93668,10.0925],[77.94235,10.08967],[77.9467,10.09061],[77.94647,10.08363],[77.93286,10.08674],[77.9325,10.08924],[77.92541,10.09101],[77.91955,10.07192],[77.91298,10.07264],[77.90897,10.07581],[77.90285,10.07474],[77.90432,10.07229],[77.90149,10.07115],[77.89835,10.07526],[77.89101,10.07812],[77.88392,10.0746],[77.88262,10.06847],[77.87484,10.06159],[77.86754,10.07123],[77.86064,10.07513],[77.83552,10.07405],[77.82287,10.06554],[77.81285,10.06868],[77.80556,10.0676],[77.78868,10.05385],[77.78055,10.05094],[77.76355,10.05591],[77.75982,10.05009],[77.75998,10.04661],[77.7554,10.04862],[77.73288,10.02922],[77.72843,10.0261],[77.72542,10.02671],[77.72526,10.02379],[77.71723,10.01805],[77.71038,10.02032],[77.71224,10.02231],[77.71255,10.02586],[77.70894,10.02146],[77.70873,10.01835],[77.70155,10.01399],[77.69792,10.01731],[77.69861,10.00661],[77.69701,10.00055],[77.69676,9.98275],[77.69237,9.96911],[77.6919,9.9681],[77.68186,9.96885],[77.67734,9.96225],[77.6732,9.96181],[77.67905,9.93285],[77.66742,9.91327],[77.65648,9.92065],[77.65412,9.91856],[77.65287,9.91033],[77.64629,9.90278],[77.64804,9.89591],[77.64485,9.88826],[77.63195,9.87127],[77.62094,9.86355],[77.61848,9.85842],[77.61734,9.83895],[77.62017,9.83534],[77.6246,9.83632],[77.62564,9.83505],[77.62375,9.83122],[77.62309,9.82163],[77.61207,9.79915],[77.60607,9.7923],[77.60345,9.79132],[77.59865,9.7766],[77.58801,9.76864],[77.57358,9.75146],[77.56905,9.75051],[77.56631,9.74778],[77.56434,9.74455],[77.56478,9.74145],[77.55932,9.73433],[77.55777,9.72735],[77.55355,9.72197],[77.55404,9.71506],[77.54663,9.70545],[77.54594,9.69579],[77.54418,9.69362],[77.54073,9.69534],[77.53535,9.67504],[77.5282,9.66871],[77.52772,9.66469],[77.52318,9.66031],[77.51991,9.66055],[77.51189,9.65266],[77.50363,9.6502],[77.50627,9.63848],[77.49902,9.63019],[77.4941,9.62149],[77.48638,9.6144],[77.48439,9.60525],[77.47541,9.59736],[77.47014,9.59039],[77.46415,9.57896],[77.4678,9.57468],[77.47358,9.57164],[77.47542,9.56308],[77.4784,9.56353],[77.48848,9.57227],[77.4983,9.57541],[77.49812,9.58827],[77.49984,9.5963],[77.50564,9.59968],[77.51405,9.61082],[77.51699,9.6177],[77.51671,9.62732],[77.51979,9.63267],[77.51944,9.63636],[77.52211,9.6383],[77.5236,9.64273],[77.52695,9.64486],[77.52817,9.65047],[77.53251,9.65428],[77.53599,9.65513],[77.53734,9.65977],[77.54248,9.66005],[77.54394,9.66174],[77.54744,9.65861],[77.54345,9.65052],[77.5433,9.64519],[77.55112,9.64577],[77.55189,9.64437],[77.5583,9.65153],[77.56258,9.65951],[77.57507,9.6645],[77.57612,9.66891],[77.57971,9.66708],[77.58597,9.66685],[77.59015,9.67856],[77.598,9.68596],[77.60194,9.68637],[77.60089,9.69103],[77.60553,9.69512],[77.61222,9.69761],[77.61649,9.69546],[77.61582,9.69857],[77.62876,9.70467],[77.62875,9.70294],[77.63134,9.70371],[77.63086,9.70083],[77.63207,9.70084],[77.63268,9.70337],[77.63327,9.70207],[77.63675,9.70202],[77.644,9.70645],[77.64475,9.70062],[77.64709,9.70076],[77.64518,9.69782],[77.64651,9.69676],[77.64918,9.69867],[77.64964,9.69171],[77.65208,9.6884],[77.6508,9.68323],[77.6557,9.68225],[77.65665,9.67978],[77.65995,9.68146],[77.66842,9.67724],[77.67773,9.68276],[77.67905,9.67839],[77.68122,9.67667],[77.68516,9.68009],[77.6843,9.68406],[77.69407,9.69279],[77.6937,9.69741],[77.698,9.6991],[77.69986,9.69808],[77.69947,9.69217],[77.70189,9.69046],[77.70775,9.69095],[77.71034,9.69457],[77.71006,9.70539],[77.71501,9.69958],[77.72579,9.69275],[77.73398,9.69286],[77.75459,9.68221],[77.76,9.68274],[77.76258,9.67872],[77.76262,9.67546],[77.76456,9.67473],[77.76669,9.67026],[77.76645,9.66493],[77.76954,9.66417],[77.76797,9.66138],[77.76389,9.66056],[77.76583,9.65798],[77.76685,9.65163],[77.7715,9.64775],[77.77261,9.64277],[77.77633,9.64043],[77.79097,9.63911],[77.79472,9.64874],[77.80248,9.64242],[77.80857,9.63985],[77.82193,9.64072],[77.82355,9.63849],[77.82904,9.6363],[77.84185,9.63534],[77.84594,9.65055],[77.84894,9.65037],[77.85529,9.64799],[77.89141,9.64234],[77.8912,9.63977],[77.89424,9.63777],[77.8974,9.62792],[77.90069,9.62647],[77.90247,9.63104],[77.91061,9.63822],[77.9216,9.63786],[77.92316,9.64755],[77.93124,9.64659],[77.93143,9.64809],[77.93443,9.64913],[77.94908,9.64742],[77.94948,9.64578],[77.95155,9.64598],[77.95255,9.64959],[77.96229,9.64618],[77.96456,9.6442],[77.96311,9.63869],[77.96475,9.63714],[77.96399,9.63317],[77.96908,9.63294],[77.97527,9.6296],[77.98058,9.63066],[77.98325,9.63443],[77.98547,9.63351],[77.99096,9.64165],[77.99634,9.64011],[78.00069,9.65035],[78.00658,9.64809],[78.00451,9.64236],[78.01457,9.63946],[78.01677,9.64778],[78.02328,9.65404],[78.02582,9.66053],[78.03072,9.65969],[78.03224,9.66484],[78.03332,9.6646],[78.04055,9.6785],[78.05765,9.674],[78.06149,9.67061],[78.05927,9.66176],[78.07814,9.66085],[78.08185,9.66319],[78.08233,9.66606],[78.08003,9.67653],[78.08518,9.67551],[78.08792,9.67987],[78.08685,9.68139],[78.08784,9.68341],[78.08634,9.68371],[78.08515,9.6871],[78.08197,9.68812],[78.08498,9.69255],[78.0811,9.69577],[78.07629,9.6968],[78.07994,9.70829],[78.07501,9.70976],[78.07385,9.71873],[78.07145,9.71924],[78.07053,9.7229],[78.06802,9.72339],[78.06852,9.72945],[78.0714,9.72976],[78.07264,9.73184],[78.07131,9.73562],[78.06812,9.73875],[78.06142,9.74154],[78.06711,9.75295],[78.07816,9.749],[78.0843,9.75818],[78.09571,9.75477],[78.09868,9.75601],[78.10105,9.75513],[78.1043,9.76823],[78.08873,9.77551],[78.08798,9.77893],[78.09853,9.77939],[78.09932,9.78255],[78.10412,9.78479],[78.10454,9.78643],[78.10701,9.78607],[78.11261,9.78113],[78.11234,9.7791],[78.11774,9.77722],[78.1172,9.77558],[78.12565,9.77114],[78.12526,9.76556],[78.12896,9.7656],[78.13701,9.76174],[78.13935,9.78019],[78.14262,9.78355],[78.14437,9.78349],[78.14554,9.78922],[78.14579,9.79418],[78.14056,9.79533],[78.13894,9.80016],[78.14088,9.80918],[78.1593,9.80463],[78.16306,9.79933],[78.17227,9.79695],[78.17053,9.79468],[78.17099,9.78732],[78.16853,9.7854],[78.16846,9.78253],[78.16161,9.78159],[78.15994,9.77457],[78.17369,9.77633],[78.17391,9.77295],[78.17587,9.7722],[78.17761,9.77401],[78.17943,9.78472],[78.1831,9.79274],[78.18771,9.79488],[78.19345,9.80663],[78.18888,9.81241],[78.18618,9.81354],[78.18816,9.81532],[78.17939,9.82286],[78.17316,9.82522],[78.16907,9.83093],[78.16523,9.82821],[78.15882,9.82935],[78.15173,9.82771],[78.15302,9.82169],[78.14759,9.8187],[78.14232,9.81226],[78.13478,9.81121],[78.13047,9.81423],[78.12784,9.81414],[78.12975,9.81826],[78.13225,9.81965],[78.13252,9.82603],[78.13127,9.8274],[78.13238,9.83322],[78.13082,9.83801],[78.12662,9.8404],[78.12323,9.84902],[78.12501,9.85464],[78.12923,9.85193],[78.13176,9.85639],[78.13351,9.85289],[78.14094,9.85133],[78.14176,9.85372],[78.15084,9.85222],[78.15203,9.85915],[78.15359,9.85918],[78.15068,9.86808],[78.15129,9.87472],[78.15486,9.87306],[78.16099,9.87598],[78.16855,9.87415],[78.18103,9.86779],[78.18294,9.87011],[78.18681,9.86879],[78.18793,9.87162],[78.19791,9.8687],[78.19864,9.87036],[78.20133,9.8707],[78.20249,9.87509],[78.20873,9.87547],[78.21798,9.86892],[78.22516,9.86099],[78.22905,9.86494],[78.23944,9.85986],[78.24868,9.86018],[78.24448,9.85418],[78.23967,9.85069],[78.23922,9.84531],[78.24672,9.83747],[78.254,9.83411],[78.25466,9.8354],[78.25844,9.83416],[78.26095,9.8481],[78.26637,9.8481],[78.26699,9.85622],[78.2602,9.86015],[78.25999,9.86232],[78.25516,9.86394],[78.25027,9.87367],[78.26425,9.86954],[78.27607,9.87146],[78.27609,9.86991],[78.28734,9.87018],[78.29116,9.86344],[78.29454,9.86143],[78.30523,9.86298],[78.30522,9.86426],[78.30961,9.86525],[78.31001,9.87421],[78.31334,9.87504],[78.31225,9.88212],[78.31499,9.88259],[78.31448,9.89019],[78.3136,9.89272],[78.31125,9.89298],[78.31041,9.89937],[78.31244,9.91082],[78.31356,9.91082],[78.31349,9.91975],[78.31711,9.92621],[78.3275,9.92835],[78.32809,9.93094],[78.33394,9.93091],[78.33463,9.93564],[78.33883,9.93869],[78.34523,9.93719],[78.34531,9.93998],[78.34907,9.93677],[78.35212,9.94047],[78.35722,9.93528],[78.36663,9.9335],[78.37035,9.93464],[78.3687,9.94791],[78.37203,9.96234],[78.37445,9.96134],[78.37502,9.95887],[78.3784,9.96052],[78.38118,9.95619],[78.38766,9.95503],[78.38889,9.95223],[78.40977,9.95592],[78.45656,9.9685],[78.4542,9.98048],[78.44767,9.98623],[78.44963,9.99183],[78.45648,9.99215],[78.45524,9.99435],[78.45819,10.00872],[78.45791,10.01137],[78.45529,10.01325],[78.4561,10.01806],[78.45301,10.02123],[78.44913,10.02184],[78.44849,10.02517],[78.44448,10.02441],[78.44439,10.02656],[78.44727,10.02816],[78.44349,10.03434],[78.43071,10.03603],[78.43065,10.041],[78.42888,10.04519],[78.42765,10.04462],[78.42773,10.053],[78.4374,10.0611],[78.45289,10.05893],[78.45471,10.06274],[78.45276,10.06595],[78.45419,10.07016],[78.45702,10.07117],[78.46062,10.06999],[78.46187,10.07161],[78.46284,10.07898],[78.45873,10.08103],[78.45904,10.09493],[78.45636,10.09918],[78.45886,10.10326],[78.47067,10.11029],[78.47357,10.12191],[78.46429,10.12091],[78.46233,10.12414],[78.45812,10.1245],[78.45157,10.11897],[78.4413,10.13103],[78.43478,10.13138],[78.43268,10.1351],[78.43033,10.13361],[78.43148,10.1286],[78.42589,10.12203],[78.42412,10.12519],[78.42534,10.13332],[78.4206,10.1338],[78.41703,10.13187],[78.41567,10.13553],[78.40169,10.13857],[78.41303,10.16066],[78.39877,10.16568],[78.39831,10.16874],[78.39518,10.17019],[78.39462,10.17406],[78.39794,10.18298],[78.4038,10.19156],[78.40596,10.20253],[78.41254,10.21309],[78.40798,10.21628],[78.40941,10.21783],[78.40724,10.22012],[78.40785,10.22323],[78.4049,10.22371],[78.40499,10.22497],[78.40075,10.22719],[78.39961,10.22479],[78.39766,10.22615],[78.39241,10.24163],[78.3951,10.24832],[78.40572,10.25031],[78.4106,10.25711],[78.42508,10.25857],[78.42422,10.27068],[78.42056,10.27116],[78.41756,10.27489],[78.40955,10.27198],[78.40623,10.27567],[78.40281,10.27529],[78.39996,10.27294],[78.39123,10.27318],[78.3867,10.27034],[78.38644,10.27402],[78.38406,10.27394],[78.3856,10.27706],[78.38376,10.28315],[78.3843,10.28974],[78.3813,10.29386],[78.38574,10.2893],[78.38787,10.29161],[78.38634,10.29365],[78.39093,10.29631],[78.39064,10.30224],[78.38007,10.30583],[78.37867,10.31008],[78.37524,10.3102]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"579","area_level":"District","area_name":"Nagapattinam","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.72229,10.92906],[79.71872,10.93153],[79.71572,10.93087],[79.7159,10.92697],[79.71881,10.92503],[79.71554,10.92445],[79.7144,10.91371],[79.70848,10.91902],[79.70502,10.91959],[79.70739,10.9231],[79.70638,10.92582],[79.70315,10.92561],[79.70407,10.92141],[79.70104,10.9207],[79.701,10.91936],[79.69062,10.9203],[79.68905,10.92171],[79.69,10.92534],[79.68874,10.92743],[79.68478,10.92834],[79.68079,10.92798],[79.67894,10.92352],[79.68002,10.92047],[79.67889,10.91538],[79.67168,10.9169],[79.66857,10.91432],[79.6685,10.90911],[79.66643,10.90733],[79.66801,10.90517],[79.66765,10.90102],[79.65634,10.89332],[79.6576,10.88718],[79.65255,10.88615],[79.65215,10.88035],[79.65564,10.87572],[79.65387,10.87442],[79.64623,10.87436],[79.64663,10.87098],[79.65238,10.86717],[79.65096,10.85636],[79.64203,10.85706],[79.64389,10.85339],[79.6491,10.85353],[79.65219,10.85196],[79.65231,10.84825],[79.655,10.84396],[79.65448,10.83608],[79.64818,10.83509],[79.64827,10.82928],[79.65422,10.82908],[79.65284,10.82458],[79.64344,10.82305],[79.64117,10.8262],[79.63128,10.82274],[79.63117,10.81853],[79.63127,10.81542],[79.64252,10.81578],[79.65718,10.80576],[79.65936,10.812],[79.65896,10.81742],[79.67514,10.81879],[79.67919,10.8164],[79.68656,10.81614],[79.68605,10.82973],[79.69596,10.82945],[79.69567,10.83048],[79.69819,10.83073],[79.69836,10.8284],[79.7032,10.8271],[79.70358,10.82439],[79.70728,10.82607],[79.70876,10.82466],[79.7098,10.82909],[79.71234,10.82807],[79.71327,10.82975],[79.72839,10.82833],[79.72808,10.82268],[79.72594,10.8221],[79.72783,10.82008],[79.72776,10.81215],[79.72494,10.81097],[79.72365,10.80763],[79.72548,10.80608],[79.72744,10.80932],[79.73158,10.81002],[79.73189,10.80216],[79.72889,10.79711],[79.72456,10.79752],[79.72399,10.79439],[79.71105,10.78687],[79.70566,10.78586],[79.70599,10.7827],[79.70368,10.7834],[79.7001,10.77345],[79.70131,10.77238],[79.70038,10.76748],[79.6949,10.76285],[79.69746,10.75582],[79.69824,10.74549],[79.68999,10.73794],[79.687,10.73831],[79.68649,10.73471],[79.68337,10.7296],[79.68128,10.72875],[79.68409,10.72342],[79.68708,10.72412],[79.68932,10.72263],[79.68715,10.71588],[79.67784,10.7165],[79.6765,10.71194],[79.67284,10.71086],[79.67137,10.71185],[79.66889,10.70811],[79.66518,10.70862],[79.66429,10.71307],[79.66073,10.71418],[79.66006,10.71178],[79.65577,10.71318],[79.65398,10.70832],[79.65494,10.70747],[79.65233,10.70682],[79.65217,10.70233],[79.65571,10.70076],[79.66032,10.70161],[79.66189,10.69739],[79.66567,10.69746],[79.67051,10.69251],[79.67229,10.69323],[79.67552,10.68925],[79.67786,10.68109],[79.67659,10.67601],[79.67497,10.67587],[79.67497,10.67149],[79.67291,10.67169],[79.67081,10.66949],[79.67184,10.66433],[79.66881,10.66074],[79.6667,10.6504],[79.66037,10.65569],[79.65417,10.65725],[79.65318,10.65283],[79.65009,10.65207],[79.64942,10.64284],[79.65704,10.64054],[79.66326,10.63534],[79.66999,10.63291],[79.66913,10.62951],[79.67363,10.62443],[79.67266,10.6164],[79.66641,10.61734],[79.65893,10.61578],[79.65556,10.6135],[79.65899,10.60396],[79.66737,10.60264],[79.67025,10.59078],[79.66926,10.58515],[79.67211,10.58641],[79.68717,10.58355],[79.68586,10.57883],[79.68115,10.57852],[79.67975,10.57266],[79.66886,10.57552],[79.66073,10.56387],[79.65961,10.55922],[79.67575,10.56163],[79.67829,10.55579],[79.68716,10.55671],[79.68815,10.55137],[79.69976,10.54904],[79.70168,10.54938],[79.70209,10.55158],[79.71035,10.55368],[79.7158,10.54649],[79.71501,10.54173],[79.72673,10.53613],[79.7225,10.53095],[79.71455,10.52555],[79.70737,10.51524],[79.70389,10.51224],[79.70059,10.512],[79.70033,10.50605],[79.69438,10.50531],[79.68961,10.50797],[79.68835,10.51036],[79.68993,10.50334],[79.69865,10.48889],[79.69944,10.48339],[79.67723,10.48068],[79.68002,10.47504],[79.67962,10.47285],[79.68928,10.45513],[79.6902,10.4499],[79.68265,10.44731],[79.67182,10.44731],[79.66816,10.44379],[79.66543,10.44334],[79.66356,10.44026],[79.66019,10.44109],[79.65885,10.44667],[79.63083,10.44554],[79.63242,10.44254],[79.63069,10.42118],[79.63325,10.41573],[79.63025,10.41159],[79.62943,10.40042],[79.62742,10.39617],[79.62849,10.39146],[79.63349,10.38502],[79.63435,10.37888],[79.63714,10.37868],[79.6388,10.34226],[79.6517,10.33305],[79.66962,10.32315],[79.70513,10.2928],[79.72093,10.288],[79.72177,10.28546],[79.71836,10.28161],[79.70878,10.28091],[79.7118,10.27936],[79.73385,10.27612],[79.74061,10.27667],[79.74699,10.27458],[79.74991,10.27479],[79.75247,10.27762],[79.75075,10.27335],[79.76766,10.27181],[79.77783,10.27249],[79.77928,10.27493],[79.77771,10.28408],[79.77456,10.28699],[79.7735,10.29095],[79.77082,10.29136],[79.76789,10.28863],[79.75599,10.29375],[79.75193,10.29759],[79.75105,10.30051],[79.74873,10.30072],[79.74872,10.31438],[79.75122,10.31474],[79.75266,10.3131],[79.76289,10.31302],[79.76222,10.31155],[79.76421,10.3086],[79.76078,10.30995],[79.76071,10.30704],[79.77939,10.29223],[79.78339,10.29606],[79.78312,10.29189],[79.78601,10.28973],[79.78746,10.28129],[79.78351,10.27847],[79.78352,10.27427],[79.77972,10.27256],[79.79969,10.27393],[79.80122,10.27475],[79.80186,10.2785],[79.80213,10.27416],[79.81393,10.27562],[79.81591,10.27765],[79.81006,10.28451],[79.81468,10.28289],[79.81332,10.28874],[79.8192,10.27927],[79.81676,10.27584],[79.85837,10.28192],[79.86848,10.28674],[79.87613,10.29507],[79.87485,10.29945],[79.87703,10.29761],[79.88044,10.30469],[79.8816,10.32172],[79.87434,10.34619],[79.86782,10.38014],[79.86545,10.40134],[79.86682,10.41705],[79.86427,10.45461],[79.86285,10.4574],[79.86405,10.45601],[79.86331,10.4667],[79.86239,10.47133],[79.8585,10.47229],[79.86239,10.4717],[79.86264,10.47301],[79.85785,10.54749],[79.85894,10.55184],[79.85805,10.56779],[79.85684,10.57181],[79.85279,10.57568],[79.85467,10.57639],[79.85636,10.57358],[79.85732,10.57449],[79.85356,10.61674],[79.85334,10.67648],[79.84102,10.6763],[79.85008,10.68037],[79.8533,10.67942],[79.85036,10.76341],[79.85082,10.82113],[79.84912,10.8248],[79.8525,10.82721],[79.83107,10.82738],[79.82809,10.84967],[79.82108,10.84556],[79.81943,10.84914],[79.81376,10.84996],[79.80794,10.85562],[79.80749,10.86544],[79.80966,10.86566],[79.8117,10.85965],[79.81797,10.86345],[79.82491,10.86483],[79.82241,10.87424],[79.81111,10.87557],[79.8113,10.88034],[79.82467,10.88039],[79.82855,10.88209],[79.8277,10.88448],[79.82328,10.88427],[79.81135,10.88844],[79.80711,10.8875],[79.80433,10.89106],[79.80108,10.89009],[79.79979,10.88735],[79.79469,10.88754],[79.79528,10.89085],[79.79036,10.89488],[79.78996,10.89034],[79.78366,10.88848],[79.78211,10.89043],[79.78256,10.89533],[79.79127,10.89596],[79.79386,10.89869],[79.792,10.90024],[79.79136,10.90484],[79.79541,10.90274],[79.78933,10.90844],[79.78213,10.90624],[79.77991,10.90881],[79.77742,10.90895],[79.77707,10.90712],[79.77924,10.90527],[79.7767,10.90541],[79.777,10.89656],[79.76515,10.89628],[79.76529,10.89437],[79.76795,10.89246],[79.75629,10.89176],[79.75586,10.8946],[79.76357,10.89974],[79.76137,10.90175],[79.76175,10.89924],[79.76029,10.90048],[79.75703,10.89647],[79.75789,10.90191],[79.7595,10.90186],[79.75757,10.90786],[79.76305,10.91335],[79.76243,10.91438],[79.75897,10.91661],[79.7544,10.91622],[79.75377,10.91404],[79.74338,10.91483],[79.74512,10.91613],[79.74558,10.91947],[79.74336,10.91758],[79.74211,10.91819],[79.7438,10.91916],[79.74312,10.92504],[79.73881,10.92346],[79.73952,10.92649],[79.73754,10.92584],[79.73837,10.92486],[79.73556,10.92486],[79.736,10.92761],[79.72229,10.92906]],[[79.80716,10.87756],[79.80605,10.87964],[79.80976,10.88042],[79.81003,10.87837],[79.80716,10.87756]]],[[[79.51353,11.04376],[79.51093,11.04208],[79.51267,11.0394],[79.51197,11.03666],[79.51375,11.0301],[79.51178,11.02747],[79.52046,11.02597],[79.53012,11.02681],[79.5322,11.01401],[79.52937,11.01355],[79.52871,11.01542],[79.52461,11.01623],[79.52535,11.01434],[79.52361,11.01416],[79.52313,11.00884],[79.52473,11.00785],[79.53112,11.0109],[79.53511,11.00827],[79.54216,11.00842],[79.54123,11.00375],[79.54522,11.00387],[79.54729,11.00073],[79.52297,10.99715],[79.5254,10.98951],[79.52179,10.98746],[79.51207,10.9882],[79.51201,10.98561],[79.51058,10.98642],[79.50859,10.98397],[79.5131,10.98291],[79.51453,10.98093],[79.51591,10.9698],[79.51913,10.97087],[79.53019,10.96914],[79.52647,10.96311],[79.52728,10.95966],[79.53268,10.961],[79.53246,10.96849],[79.53758,10.96866],[79.54496,10.96555],[79.55625,10.97058],[79.55679,10.97458],[79.56391,10.97516],[79.56381,10.97648],[79.5681,10.97693],[79.56958,10.971],[79.57363,10.97175],[79.57475,10.9706],[79.57771,10.97371],[79.57438,10.9753],[79.57457,10.97849],[79.57712,10.97978],[79.57824,10.98277],[79.57843,10.98172],[79.59074,10.9829],[79.59117,10.97658],[79.59184,10.97812],[79.59544,10.97668],[79.59627,10.97775],[79.59691,10.97407],[79.60402,10.97177],[79.60493,10.97647],[79.6071,10.97438],[79.60837,10.97622],[79.60437,10.97794],[79.60539,10.97817],[79.60424,10.98218],[79.62536,10.98253],[79.62621,10.97908],[79.63273,10.98092],[79.63244,10.98494],[79.63064,10.98671],[79.63273,10.9878],[79.63265,10.98952],[79.63536,10.98942],[79.63536,10.99188],[79.63426,10.99186],[79.63475,10.99335],[79.63185,10.99146],[79.63147,10.99243],[79.63558,10.99519],[79.63392,11.00029],[79.6409,11.00041],[79.64099,11.00799],[79.6515,11.01338],[79.66716,11.01519],[79.67101,11.01726],[79.70031,11.01542],[79.71103,11.00641],[79.71612,11.00878],[79.72,11.00049],[79.72184,11.00104],[79.72111,10.99909],[79.72996,10.99857],[79.73005,10.99594],[79.73176,10.9948],[79.74813,10.99646],[79.7468,11.00258],[79.75584,11.00379],[79.75885,11.00191],[79.76007,10.99902],[79.76215,11.00135],[79.76669,10.99733],[79.77987,10.9986],[79.77894,10.99686],[79.78359,10.99478],[79.78356,10.99668],[79.78608,10.99737],[79.78905,10.9919],[79.78615,10.99079],[79.78641,10.98961],[79.79393,10.98309],[79.79779,10.98249],[79.79947,10.98285],[79.79908,10.9859],[79.80184,10.98809],[79.80407,10.98697],[79.80383,10.9921],[79.80627,10.99295],[79.80325,10.9952],[79.80427,10.99764],[79.80815,10.99988],[79.81317,10.99915],[79.8155,11.00387],[79.82068,10.99816],[79.823,11.00076],[79.82793,10.99814],[79.82899,11.00179],[79.83195,11.00282],[79.84013,11.0016],[79.83944,10.99584],[79.85153,10.99393],[79.85067,10.98739],[79.85195,10.98384],[79.85382,10.98322],[79.85504,11.01284],[79.85703,11.02602],[79.85565,11.04264],[79.85843,11.12927],[79.85662,11.17135],[79.84849,11.23619],[79.83745,11.28952],[79.83429,11.32174],[79.8365,11.33569],[79.8426,11.35074],[79.84095,11.35285],[79.83219,11.35648],[79.83165,11.36115],[79.82185,11.38194],[79.81288,11.42269],[79.80708,11.40113],[79.80692,11.3919],[79.80337,11.3811],[79.79157,11.37243],[79.7813,11.37466],[79.77161,11.38141],[79.76439,11.38197],[79.75692,11.37289],[79.75932,11.36264],[79.75931,11.35262],[79.73468,11.34971],[79.72451,11.34584],[79.68381,11.31199],[79.6759,11.30761],[79.65637,11.30359],[79.65028,11.29928],[79.64563,11.29362],[79.64242,11.28364],[79.64461,11.27108],[79.64912,11.26185],[79.64846,11.25192],[79.64696,11.24926],[79.63362,11.24631],[79.6231,11.25518],[79.61637,11.25553],[79.61154,11.24905],[79.60857,11.22931],[79.60259,11.22139],[79.59618,11.21737],[79.57778,11.21283],[79.57022,11.20933],[79.56194,11.20828],[79.52672,11.18373],[79.53076,11.17782],[79.53385,11.17777],[79.53783,11.18063],[79.53953,11.16257],[79.54241,11.16286],[79.54193,11.16082],[79.55691,11.16289],[79.55779,11.1544],[79.56562,11.15499],[79.56641,11.14917],[79.57278,11.14804],[79.57107,11.14362],[79.56089,11.1355],[79.5613,11.13181],[79.55748,11.13064],[79.55644,11.12852],[79.55533,11.13222],[79.55099,11.13018],[79.55315,11.12944],[79.55331,11.12769],[79.55137,11.12515],[79.54889,11.12636],[79.54849,11.12278],[79.55197,11.12344],[79.54972,11.11992],[79.55015,11.11467],[79.54847,11.1132],[79.54691,11.1162],[79.5436,11.11656],[79.54284,11.1142],[79.54525,11.11284],[79.54141,11.11177],[79.54194,11.10894],[79.53805,11.10954],[79.53913,11.10725],[79.53606,11.10286],[79.53608,11.09857],[79.53833,11.09839],[79.53872,11.09569],[79.54153,11.09531],[79.54166,11.10466],[79.54707,11.1047],[79.54853,11.10131],[79.54154,11.08906],[79.54106,11.08473],[79.54384,11.08699],[79.54977,11.08518],[79.55287,11.08306],[79.55257,11.07782],[79.54549,11.07383],[79.54381,11.07503],[79.53668,11.07043],[79.53697,11.06582],[79.53226,11.06193],[79.53281,11.05944],[79.5311,11.05695],[79.52172,11.05361],[79.51883,11.05016],[79.51864,11.04708],[79.51353,11.04376]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"58","area_level":"District","area_name":"Ambala","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.63833,30.14762],[76.63636,30.14624],[76.6353,30.14664],[76.63249,30.14255],[76.63272,30.14183],[76.63037,30.14203],[76.62353,30.14019],[76.62224,30.13797],[76.62083,30.13731],[76.6162,30.13209],[76.61279,30.12672],[76.60947,30.12471],[76.60864,30.12325],[76.60307,30.1186],[76.59895,30.11209],[76.59551,30.11251],[76.58655,30.11072],[76.58231,30.10791],[76.57951,30.10431],[76.57524,30.10081],[76.57618,30.09544],[76.57675,30.09474],[76.58578,30.08853],[76.58531,30.08687],[76.58561,30.0843],[76.58753,30.0832],[76.58929,30.08312],[76.59085,30.08396],[76.59169,30.08356],[76.59239,30.08402],[76.59839,30.08242],[76.59465,30.07701],[76.59228,30.0756],[76.58915,30.07174],[76.5874,30.07045],[76.58685,30.06915],[76.58885,30.06857],[76.5922,30.06624],[76.59553,30.06966],[76.59671,30.07268],[76.60168,30.07304],[76.60447,30.07449],[76.6153,30.07304],[76.6155,30.07586],[76.61955,30.08175],[76.61953,30.08421],[76.62087,30.08672],[76.6264,30.0903],[76.62958,30.09125],[76.63067,30.0922],[76.63166,30.09168],[76.63444,30.09513],[76.63598,30.09621],[76.64248,30.09871],[76.64338,30.10087],[76.64481,30.10186],[76.64432,30.10493],[76.64333,30.1064],[76.64377,30.10778],[76.63563,30.11158],[76.63936,30.11589],[76.64326,30.12189],[76.64227,30.12275],[76.6453,30.12789],[76.63924,30.13078],[76.6391,30.13462],[76.63657,30.13782],[76.63642,30.1392],[76.63796,30.14114],[76.63751,30.14291],[76.63833,30.14762]]],[[[77.12984,30.55304],[77.12173,30.56294],[77.11378,30.55215],[77.10568,30.5598],[77.10185,30.55611],[77.09779,30.55793],[77.09373,30.55665],[77.08627,30.55726],[77.08292,30.55517],[77.08142,30.55004],[77.07374,30.54098],[77.06883,30.54362],[77.06615,30.54192],[77.06635,30.54313],[77.06284,30.54307],[77.06256,30.54434],[77.054,30.543],[77.05069,30.54927],[77.0424,30.55129],[77.03756,30.55035],[77.03535,30.53681],[77.03742,30.53352],[77.03909,30.53383],[77.04019,30.53037],[77.04579,30.52919],[77.04999,30.52175],[77.04829,30.52222],[77.03971,30.51594],[77.03808,30.51322],[77.03847,30.5093],[77.02948,30.50818],[77.02916,30.50577],[77.02395,30.50336],[77.02029,30.50583],[77.01021,30.50254],[77.01246,30.50001],[77.00991,30.49319],[76.99815,30.48504],[76.99539,30.47969],[76.98978,30.47425],[76.98028,30.48313],[76.97211,30.48617],[76.95845,30.47056],[76.95468,30.47444],[76.9504,30.47535],[76.94641,30.48144],[76.94863,30.48606],[76.93108,30.50132],[76.91893,30.48944],[76.91078,30.49428],[76.90871,30.49188],[76.90362,30.49139],[76.89898,30.48881],[76.89804,30.48376],[76.90838,30.47743],[76.91369,30.47138],[76.91381,30.46767],[76.89955,30.44864],[76.90532,30.44503],[76.90493,30.44325],[76.90274,30.44408],[76.89755,30.4371],[76.90505,30.43407],[76.91229,30.44291],[76.90638,30.43357],[76.91649,30.42623],[76.91237,30.42051],[76.9171,30.41599],[76.91915,30.40924],[76.91805,30.40837],[76.91936,30.40741],[76.91235,30.40063],[76.91972,30.39866],[76.92273,30.40107],[76.93273,30.40167],[76.94146,30.39535],[76.93987,30.38805],[76.9349,30.38188],[76.92272,30.3747],[76.91686,30.36491],[76.90678,30.36139],[76.90271,30.36195],[76.89725,30.3592],[76.89612,30.36269],[76.89029,30.36943],[76.89137,30.37377],[76.89796,30.3821],[76.89507,30.38471],[76.8951,30.38694],[76.88623,30.39404],[76.88335,30.39208],[76.8807,30.3939],[76.88394,30.39768],[76.88213,30.40082],[76.88434,30.40428],[76.88089,30.40612],[76.88336,30.40865],[76.87444,30.40947],[76.8683,30.41394],[76.85613,30.41765],[76.8542,30.4212],[76.85439,30.42548],[76.85002,30.43347],[76.85103,30.43525],[76.84679,30.43808],[76.84374,30.43736],[76.83775,30.43156],[76.83623,30.42961],[76.83824,30.42762],[76.82748,30.41607],[76.82183,30.41268],[76.81647,30.41334],[76.80926,30.41764],[76.80177,30.41367],[76.79514,30.41866],[76.79022,30.41455],[76.78704,30.41621],[76.77433,30.4264],[76.77728,30.43105],[76.78487,30.43535],[76.7811,30.43992],[76.77429,30.44328],[76.76556,30.43249],[76.75793,30.42982],[76.75,30.42983],[76.74105,30.42622],[76.74105,30.42424],[76.73504,30.41908],[76.74011,30.41208],[76.73799,30.40835],[76.72822,30.40036],[76.72515,30.40218],[76.72221,30.399],[76.71455,30.40244],[76.71511,30.39745],[76.71285,30.3902],[76.71864,30.38248],[76.71761,30.38004],[76.71949,30.37877],[76.7296,30.38226],[76.73124,30.37966],[76.71871,30.36658],[76.71991,30.36333],[76.72571,30.36185],[76.73339,30.36883],[76.73524,30.36785],[76.73794,30.37041],[76.74608,30.36719],[76.74929,30.3618],[76.74892,30.35699],[76.75113,30.3553],[76.74985,30.35306],[76.74576,30.351],[76.74552,30.34914],[76.73847,30.34632],[76.73262,30.34832],[76.72737,30.34106],[76.72975,30.33882],[76.72229,30.33324],[76.71639,30.33602],[76.71102,30.3258],[76.70487,30.32588],[76.70005,30.32805],[76.69563,30.32157],[76.69058,30.32631],[76.688,30.32686],[76.68209,30.31979],[76.68558,30.31755],[76.68647,30.31426],[76.67804,30.30583],[76.68079,30.30313],[76.67486,30.29935],[76.66768,30.30284],[76.66543,30.3059],[76.65955,30.29989],[76.65568,30.29839],[76.65002,30.29067],[76.63887,30.28439],[76.63542,30.28959],[76.63216,30.28385],[76.63036,30.27738],[76.63144,30.27609],[76.6256,30.2712],[76.62723,30.26938],[76.62343,30.26455],[76.62053,30.26495],[76.61441,30.2725],[76.61163,30.26953],[76.60973,30.27039],[76.6087,30.2679],[76.60113,30.27032],[76.59292,30.26174],[76.58802,30.26483],[76.58649,30.26854],[76.58382,30.27022],[76.58063,30.2652],[76.57514,30.26188],[76.57193,30.26524],[76.56203,30.26195],[76.55959,30.26484],[76.5566,30.26225],[76.55831,30.24858],[76.56005,30.24519],[76.55362,30.23014],[76.54523,30.23001],[76.54311,30.22839],[76.54567,30.22555],[76.54856,30.22514],[76.56075,30.22892],[76.56377,30.2353],[76.56621,30.23531],[76.56786,30.23809],[76.58269,30.24779],[76.5879,30.25396],[76.59066,30.25341],[76.59155,30.25576],[76.60371,30.25188],[76.6061,30.24691],[76.60293,30.24133],[76.62326,30.23142],[76.62751,30.22719],[76.62332,30.21982],[76.6164,30.21632],[76.61484,30.21353],[76.61553,30.21168],[76.62171,30.20764],[76.63575,30.20683],[76.63932,30.20878],[76.65426,30.20347],[76.65064,30.19314],[76.65705,30.18809],[76.65682,30.18614],[76.65404,30.18397],[76.65406,30.18119],[76.65163,30.17961],[76.6523,30.1781],[76.64824,30.17547],[76.64604,30.17639],[76.64187,30.171],[76.63926,30.17024],[76.63543,30.16998],[76.63828,30.1781],[76.6355,30.18454],[76.6456,30.18807],[76.63944,30.19437],[76.6303,30.19853],[76.61854,30.20055],[76.61419,30.20443],[76.6101,30.19847],[76.61099,30.19634],[76.60731,30.19178],[76.6234,30.18017],[76.62373,30.17503],[76.62893,30.16889],[76.63272,30.16936],[76.63931,30.15263],[76.64374,30.15021],[76.65514,30.15288],[76.66974,30.16837],[76.67148,30.16695],[76.67302,30.16768],[76.68296,30.18019],[76.68541,30.18866],[76.68938,30.19068],[76.69191,30.19004],[76.695,30.1937],[76.71129,30.19149],[76.71712,30.19615],[76.72774,30.19489],[76.73843,30.19786],[76.75409,30.19639],[76.76019,30.19185],[76.76272,30.19175],[76.76422,30.19238],[76.76483,30.19745],[76.76681,30.19941],[76.77278,30.19969],[76.77561,30.20233],[76.7778,30.20222],[76.77701,30.20458],[76.78479,30.21492],[76.78878,30.21337],[76.79619,30.21481],[76.80003,30.21123],[76.80591,30.21373],[76.81186,30.21967],[76.81707,30.21745],[76.81943,30.22046],[76.81687,30.22247],[76.81899,30.22423],[76.82315,30.23479],[76.82535,30.23595],[76.82178,30.24035],[76.81755,30.24212],[76.82246,30.25106],[76.82601,30.25306],[76.83325,30.25177],[76.83751,30.25413],[76.84279,30.2458],[76.85159,30.25463],[76.86441,30.24969],[76.86439,30.24715],[76.86777,30.2436],[76.85859,30.23299],[76.8672,30.22825],[76.87591,30.21984],[76.89021,30.21209],[76.88798,30.20749],[76.88633,30.20946],[76.88296,30.20804],[76.8824,30.19981],[76.88365,30.19883],[76.90346,30.1898],[76.90816,30.19912],[76.91589,30.2055],[76.91978,30.20223],[76.92513,30.20548],[76.93779,30.1978],[76.94831,30.19788],[76.95244,30.19486],[76.9607,30.19318],[76.96023,30.18965],[76.95624,30.18318],[76.94826,30.18255],[76.94608,30.18411],[76.94102,30.17811],[76.93978,30.17219],[76.94063,30.1663],[76.9453,30.16474],[76.95114,30.15934],[76.95743,30.15739],[76.96157,30.15257],[76.96374,30.15801],[76.97561,30.16228],[76.98172,30.16937],[76.99074,30.16788],[77.00177,30.16184],[77.00787,30.16202],[77.01164,30.15648],[77.02041,30.15133],[77.02246,30.14796],[77.03695,30.14362],[77.03589,30.13635],[77.0395,30.13371],[77.05739,30.12418],[77.06265,30.12454],[77.06925,30.13126],[77.06527,30.14238],[77.07116,30.15391],[77.07171,30.16095],[77.06874,30.16432],[77.07085,30.16904],[77.08485,30.16419],[77.08401,30.16334],[77.09811,30.156],[77.09747,30.15852],[77.09963,30.16367],[77.10262,30.16566],[77.11005,30.17871],[77.1065,30.18454],[77.09778,30.1877],[77.09003,30.19361],[77.07675,30.19971],[77.07772,30.20248],[77.07243,30.20607],[77.0776,30.217],[77.08428,30.21679],[77.0933,30.22601],[77.09181,30.22828],[77.10626,30.22498],[77.11369,30.22703],[77.11603,30.23239],[77.12104,30.23219],[77.12681,30.22826],[77.13022,30.23229],[77.14137,30.22568],[77.14105,30.21898],[77.14273,30.21709],[77.15019,30.21399],[77.15649,30.22384],[77.15813,30.22994],[77.16158,30.23407],[77.16326,30.23374],[77.16371,30.23618],[77.15983,30.23964],[77.16079,30.24142],[77.15226,30.24611],[77.14959,30.24645],[77.1449,30.2442],[77.14164,30.24082],[77.13214,30.24673],[77.13382,30.24899],[77.13207,30.25085],[77.13322,30.25423],[77.13931,30.26024],[77.13574,30.26181],[77.13759,30.26487],[77.13318,30.26788],[77.13845,30.28164],[77.14188,30.28616],[77.14574,30.28522],[77.14717,30.28882],[77.16078,30.29574],[77.16565,30.29393],[77.16607,30.2978],[77.16844,30.30113],[77.16834,30.3072],[77.1777,30.3053],[77.18012,30.30752],[77.18322,30.30628],[77.18661,30.30788],[77.18916,30.30729],[77.19213,30.31228],[77.18979,30.31367],[77.19158,30.31696],[77.18619,30.31618],[77.17971,30.32218],[77.18262,30.32858],[77.18189,30.33232],[77.17745,30.33817],[77.17348,30.33891],[77.17108,30.34236],[77.17306,30.35058],[77.17037,30.35666],[77.17084,30.35912],[77.1694,30.35966],[77.16551,30.35364],[77.16179,30.35617],[77.16193,30.36082],[77.17261,30.36887],[77.18092,30.36347],[77.18384,30.3692],[77.18119,30.3716],[77.18134,30.37541],[77.18755,30.38267],[77.18374,30.3847],[77.18687,30.39674],[77.18389,30.40139],[77.17759,30.40444],[77.17412,30.41747],[77.17033,30.42166],[77.17424,30.42508],[77.17435,30.43151],[77.16911,30.44155],[77.17267,30.4412],[77.17356,30.44274],[77.1732,30.44759],[77.17537,30.45078],[77.17366,30.45742],[77.18012,30.45915],[77.17992,30.46184],[77.18355,30.46441],[77.1864,30.47167],[77.19458,30.48053],[77.19755,30.48186],[77.20213,30.47858],[77.20621,30.4885],[77.21247,30.4974],[77.20939,30.50003],[77.20132,30.5153],[77.19681,30.51729],[77.19786,30.5195],[77.19504,30.52257],[77.18722,30.52372],[77.18119,30.52788],[77.17446,30.52921],[77.17258,30.53021],[77.17288,30.53231],[77.17034,30.53337],[77.15232,30.53431],[77.14575,30.53624],[77.13568,30.54302],[77.12984,30.55304]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"580","area_level":"District","area_name":"Namakkal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.44914,11.59697],[78.43905,11.59811],[78.4343,11.59691],[78.42823,11.59278],[78.41814,11.58991],[78.39173,11.58536],[78.38585,11.58647],[78.38287,11.5752],[78.37583,11.57734],[78.3747,11.58208],[78.373,11.58295],[78.37449,11.58854],[78.37114,11.57896],[78.3657,11.57794],[78.36135,11.57116],[78.35649,11.55888],[78.34916,11.55251],[78.34923,11.54911],[78.34351,11.54651],[78.34522,11.54161],[78.34274,11.53871],[78.33835,11.53914],[78.32848,11.53128],[78.32827,11.53496],[78.32634,11.53644],[78.32045,11.53679],[78.31007,11.54119],[78.3105,11.5429],[78.32325,11.54261],[78.324,11.55443],[78.32948,11.55849],[78.31744,11.56355],[78.30727,11.56461],[78.30836,11.56796],[78.30737,11.57097],[78.31032,11.57492],[78.31778,11.57334],[78.31926,11.57849],[78.31187,11.58768],[78.30325,11.58876],[78.28354,11.58054],[78.27193,11.57867],[78.26514,11.57178],[78.26433,11.567],[78.2771,11.5658],[78.26623,11.55984],[78.25948,11.5588],[78.2436,11.55271],[78.2396,11.55747],[78.20736,11.5645],[78.20375,11.56319],[78.20147,11.55309],[78.18328,11.55076],[78.17676,11.54839],[78.17685,11.54595],[78.16681,11.54871],[78.16492,11.5473],[78.16386,11.54292],[78.16122,11.54309],[78.16059,11.53881],[78.14827,11.53748],[78.1483,11.53905],[78.14108,11.54055],[78.13875,11.54403],[78.13294,11.5416],[78.13221,11.53813],[78.12593,11.54191],[78.12355,11.53946],[78.11917,11.5391],[78.11662,11.54503],[78.10996,11.55001],[78.11013,11.5559],[78.10514,11.55748],[78.09776,11.55369],[78.09891,11.55196],[78.09689,11.54774],[78.09034,11.54542],[78.0868,11.54591],[78.08669,11.55288],[78.08313,11.55405],[78.0823,11.54987],[78.07895,11.5468],[78.07668,11.54145],[78.07756,11.53695],[78.07507,11.53223],[78.07563,11.53009],[78.07864,11.52887],[78.0789,11.52397],[78.07599,11.52394],[78.07525,11.52238],[78.07026,11.52272],[78.07088,11.52797],[78.06765,11.52276],[78.06297,11.52302],[78.05875,11.51567],[78.05879,11.5216],[78.05509,11.52221],[78.054,11.51339],[78.04366,11.51508],[78.04632,11.51979],[78.03563,11.52219],[78.0339,11.52546],[78.03466,11.52863],[78.02675,11.53001],[78.02489,11.52682],[78.01661,11.53028],[78.01567,11.52858],[78.01308,11.52874],[78.01224,11.52654],[78.00786,11.52702],[78.00758,11.52489],[78.0041,11.52497],[78.00174,11.52722],[78.00171,11.52524],[77.99409,11.5261],[77.97774,11.53062],[77.97455,11.51794],[77.97181,11.51552],[77.97386,11.51348],[77.97214,11.50856],[77.97699,11.50136],[77.9734,11.491],[77.97261,11.48474],[77.97424,11.47532],[77.97194,11.46825],[77.96717,11.46995],[77.9548,11.46911],[77.94854,11.47399],[77.9468,11.46673],[77.94365,11.46466],[77.9437,11.4625],[77.94114,11.4598],[77.93104,11.4598],[77.92834,11.45811],[77.92557,11.46189],[77.92326,11.46097],[77.9253,11.4586],[77.92413,11.45151],[77.92172,11.45305],[77.91881,11.45215],[77.9157,11.45868],[77.91444,11.45785],[77.91539,11.45483],[77.9113,11.45166],[77.91358,11.45101],[77.91333,11.44445],[77.91002,11.44212],[77.91214,11.43527],[77.90851,11.428],[77.91094,11.42223],[77.90809,11.42285],[77.90776,11.4257],[77.90537,11.42403],[77.903,11.42498],[77.89927,11.41973],[77.89585,11.42148],[77.88997,11.41976],[77.88999,11.42447],[77.88015,11.42348],[77.87667,11.41358],[77.87479,11.41363],[77.87421,11.41619],[77.87006,11.41551],[77.86501,11.4171],[77.86392,11.4183],[77.86583,11.41911],[77.86593,11.4223],[77.86458,11.42368],[77.85746,11.41599],[77.85248,11.41511],[77.85068,11.41787],[77.85204,11.42233],[77.84988,11.42315],[77.84831,11.42074],[77.8472,11.42121],[77.84827,11.4229],[77.84664,11.43025],[77.84892,11.43158],[77.8499,11.43464],[77.84706,11.4344],[77.84706,11.43626],[77.83914,11.44125],[77.83275,11.43917],[77.82002,11.44613],[77.82114,11.44897],[77.83445,11.45703],[77.83425,11.46252],[77.82998,11.46398],[77.83119,11.46895],[77.82286,11.47126],[77.81835,11.46737],[77.81719,11.46723],[77.81784,11.46928],[77.81424,11.47031],[77.81216,11.46829],[77.80822,11.46878],[77.81171,11.46644],[77.81582,11.4674],[77.81433,11.45755],[77.80578,11.45907],[77.80435,11.44857],[77.79785,11.45189],[77.79587,11.44729],[77.78429,11.45081],[77.78697,11.46237],[77.79136,11.4641],[77.79146,11.46559],[77.78857,11.46778],[77.78489,11.47784],[77.77874,11.47874],[77.77274,11.48281],[77.76766,11.48116],[77.76551,11.47771],[77.76532,11.46885],[77.76104,11.45099],[77.75395,11.45175],[77.74208,11.44579],[77.73142,11.44473],[77.71938,11.45332],[77.71485,11.45169],[77.7126,11.44907],[77.70868,11.44917],[77.70958,11.45402],[77.70845,11.4574],[77.71195,11.46381],[77.70917,11.46557],[77.70625,11.46095],[77.69659,11.46443],[77.69465,11.45711],[77.68645,11.44158],[77.68345,11.42655],[77.68374,11.41946],[77.68672,11.41494],[77.69507,11.40898],[77.70159,11.39692],[77.70952,11.39011],[77.71749,11.37827],[77.73055,11.37005],[77.73888,11.36785],[77.75082,11.35415],[77.75278,11.34472],[77.75756,11.33431],[77.77241,11.32205],[77.78292,11.30142],[77.79167,11.292],[77.8077,11.2676],[77.82571,11.26113],[77.84085,11.2606],[77.85828,11.24954],[77.86477,11.24245],[77.87083,11.21475],[77.86424,11.20238],[77.86146,11.18569],[77.86312,11.17888],[77.86668,11.17362],[77.87946,11.16367],[77.88434,11.15593],[77.88542,11.14977],[77.88299,11.13914],[77.88198,11.12247],[77.8864,11.10695],[77.88741,11.08823],[77.89401,11.07737],[77.90536,11.073],[77.91604,11.0732],[77.92866,11.07115],[77.93991,11.06671],[77.94744,11.06556],[77.95601,11.06916],[77.98748,11.09432],[77.99513,11.09688],[78.02748,11.09057],[78.04303,11.08328],[78.05477,11.07396],[78.07101,11.07902],[78.10174,11.0755],[78.11902,11.0605],[78.13522,11.04221],[78.14501,11.03726],[78.15188,11.02891],[78.16001,11.02238],[78.1649,11.01319],[78.17017,11.01273],[78.18012,11.01663],[78.18202,11.02085],[78.18631,11.02005],[78.19478,11.02205],[78.19884,11.02906],[78.19674,11.02965],[78.19727,11.03624],[78.19584,11.03695],[78.19705,11.04406],[78.19663,11.04605],[78.19457,11.04609],[78.19419,11.04459],[78.1882,11.04455],[78.18211,11.04186],[78.17842,11.04381],[78.16385,11.04559],[78.16249,11.0468],[78.16331,11.04909],[78.18326,11.06957],[78.19225,11.06476],[78.19578,11.06461],[78.19679,11.06716],[78.19873,11.06692],[78.20178,11.07548],[78.20471,11.07391],[78.20417,11.07094],[78.21887,11.06693],[78.22158,11.06364],[78.22153,11.05757],[78.22376,11.05694],[78.22366,11.05544],[78.22892,11.05457],[78.23023,11.06117],[78.23541,11.06413],[78.23669,11.06661],[78.23642,11.06899],[78.23384,11.07128],[78.23637,11.07383],[78.23487,11.07853],[78.23295,11.08263],[78.22918,11.08452],[78.22989,11.09485],[78.23868,11.0945],[78.24887,11.09232],[78.25173,11.09018],[78.25072,11.08617],[78.25485,11.08124],[78.2564,11.07496],[78.26033,11.07569],[78.26551,11.0703],[78.26999,11.07094],[78.27206,11.07773],[78.27791,11.07942],[78.29088,11.07718],[78.29692,11.07062],[78.30476,11.06809],[78.32387,11.05792],[78.32841,11.03313],[78.3303,11.03031],[78.33504,11.02909],[78.33472,11.02798],[78.34463,11.02624],[78.34596,11.03041],[78.34912,11.03258],[78.35012,11.04829],[78.3601,11.04665],[78.36335,11.06508],[78.35075,11.06922],[78.34972,11.07542],[78.34429,11.07885],[78.34186,11.08333],[78.33809,11.08352],[78.34181,11.09012],[78.3382,11.09486],[78.32398,11.09724],[78.32728,11.10369],[78.33663,11.10486],[78.34344,11.11216],[78.34753,11.12267],[78.34605,11.13798],[78.36439,11.1379],[78.37229,11.13666],[78.37585,11.13447],[78.37757,11.13796],[78.3806,11.13744],[78.38151,11.14229],[78.37966,11.16497],[78.37688,11.17624],[78.38741,11.17717],[78.38118,11.187],[78.38536,11.18907],[78.39215,11.1895],[78.39985,11.19524],[78.41067,11.19749],[78.41112,11.20398],[78.41419,11.20587],[78.41517,11.20925],[78.42192,11.21167],[78.42276,11.21648],[78.42016,11.22075],[78.4247,11.22582],[78.42937,11.24167],[78.43534,11.25497],[78.43955,11.2589],[78.43955,11.2618],[78.43709,11.26348],[78.4386,11.26554],[78.43813,11.26853],[78.44704,11.27483],[78.45069,11.28432],[78.4504,11.29225],[78.45255,11.298],[78.45665,11.30601],[78.46095,11.30579],[78.46544,11.31334],[78.46247,11.3224],[78.45479,11.32832],[78.45577,11.33219],[78.45188,11.33052],[78.44726,11.3321],[78.44685,11.3448],[78.45744,11.3404],[78.4596,11.34262],[78.4547,11.34929],[78.46461,11.37712],[78.46988,11.38565],[78.4791,11.38789],[78.48691,11.41007],[78.48991,11.41397],[78.48389,11.41417],[78.48209,11.41279],[78.48066,11.40705],[78.47406,11.40428],[78.47122,11.40804],[78.46706,11.40538],[78.45897,11.4037],[78.45664,11.40126],[78.45444,11.40097],[78.45429,11.40227],[78.44739,11.40016],[78.44692,11.39816],[78.43912,11.3949],[78.43785,11.38993],[78.42702,11.38494],[78.43519,11.39648],[78.44155,11.39906],[78.44488,11.40312],[78.44307,11.40873],[78.44855,11.43095],[78.45258,11.43194],[78.458,11.43882],[78.4454,11.43966],[78.44362,11.4511],[78.43785,11.46152],[78.4377,11.46478],[78.43319,11.46284],[78.43174,11.46674],[78.42591,11.47091],[78.42698,11.4742],[78.43281,11.47624],[78.43324,11.48249],[78.43603,11.48586],[78.43502,11.49194],[78.43231,11.49298],[78.43292,11.49539],[78.43421,11.49895],[78.43688,11.49812],[78.43665,11.49514],[78.43994,11.49508],[78.44232,11.49871],[78.44631,11.49874],[78.44576,11.4969],[78.45036,11.49905],[78.45254,11.49809],[78.45773,11.50237],[78.46067,11.4991],[78.46007,11.49633],[78.46181,11.49491],[78.46527,11.49704],[78.46505,11.50549],[78.47341,11.52005],[78.47275,11.52509],[78.47025,11.52928],[78.46163,11.52924],[78.45983,11.53435],[78.46702,11.53628],[78.46654,11.53753],[78.45724,11.53995],[78.45433,11.54235],[78.46063,11.56135],[78.45363,11.56627],[78.44881,11.56548],[78.45167,11.5916],[78.45162,11.59706],[78.44914,11.59697]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"581","area_level":"District","area_name":"Perambalur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.85995,11.52193],[78.85673,11.52348],[78.85075,11.52126],[78.84305,11.52302],[78.83522,11.51465],[78.83386,11.50663],[78.83036,11.50721],[78.82894,11.50901],[78.82209,11.50963],[78.81027,11.50792],[78.80955,11.50496],[78.81143,11.50418],[78.81198,11.49875],[78.81073,11.49853],[78.80869,11.49041],[78.81014,11.48709],[78.80974,11.48194],[78.79844,11.48188],[78.79623,11.46094],[78.79269,11.46024],[78.78952,11.45377],[78.79429,11.45315],[78.79736,11.45156],[78.79828,11.44856],[78.81934,11.43956],[78.81889,11.43215],[78.82279,11.42708],[78.81275,11.41663],[78.8121,11.411],[78.80979,11.40657],[78.80778,11.40473],[78.80611,11.40519],[78.80602,11.40154],[78.80143,11.40221],[78.79884,11.38423],[78.79289,11.38991],[78.78918,11.3865],[78.7814,11.39854],[78.78102,11.40272],[78.77324,11.40829],[78.77129,11.41252],[78.77255,11.41536],[78.7653,11.42172],[78.76238,11.42855],[78.76031,11.42829],[78.75604,11.43712],[78.74323,11.44329],[78.74135,11.44965],[78.70319,11.45699],[78.69967,11.45574],[78.69815,11.45168],[78.68855,11.44315],[78.68835,11.4355],[78.67575,11.42818],[78.65133,11.42242],[78.65078,11.40748],[78.65669,11.40063],[78.65838,11.39399],[78.65882,11.37964],[78.66319,11.37379],[78.67624,11.37869],[78.68911,11.38169],[78.69007,11.38017],[78.68849,11.37716],[78.68099,11.37507],[78.67393,11.36761],[78.6721,11.35998],[78.66802,11.36088],[78.65965,11.35795],[78.65568,11.3511],[78.65712,11.34673],[78.65523,11.34465],[78.65027,11.34412],[78.65011,11.34147],[78.6408,11.33653],[78.63458,11.33603],[78.63425,11.33394],[78.63641,11.33152],[78.63845,11.33157],[78.63973,11.32856],[78.65627,11.33383],[78.6612,11.33144],[78.66001,11.31935],[78.66278,11.32011],[78.66585,11.31727],[78.67536,11.32704],[78.67844,11.32746],[78.68581,11.32298],[78.68687,11.32433],[78.70571,11.32522],[78.71757,11.32337],[78.73313,11.32336],[78.73803,11.31677],[78.73599,11.31013],[78.73887,11.29407],[78.74198,11.29398],[78.74879,11.28946],[78.75121,11.28479],[78.74395,11.28048],[78.73779,11.27444],[78.7287,11.27247],[78.72927,11.26512],[78.72602,11.26378],[78.72607,11.261],[78.71659,11.25844],[78.71307,11.25139],[78.71007,11.24895],[78.71344,11.24001],[78.7097,11.23349],[78.70272,11.22875],[78.70428,11.22733],[78.70884,11.22767],[78.71261,11.21274],[78.70657,11.20822],[78.70556,11.20181],[78.69881,11.19113],[78.68532,11.19575],[78.67591,11.19531],[78.67295,11.1857],[78.66697,11.18108],[78.66322,11.17471],[78.6512,11.16826],[78.65204,11.16361],[78.65476,11.16463],[78.66068,11.16339],[78.67154,11.16637],[78.67582,11.16156],[78.67585,11.15862],[78.67879,11.15433],[78.67808,11.14781],[78.67998,11.14813],[78.6809,11.14543],[78.68097,11.13034],[78.68691,11.12905],[78.68835,11.12279],[78.68705,11.11422],[78.69244,11.10461],[78.69432,11.10396],[78.69542,11.09377],[78.69826,11.09198],[78.70032,11.08446],[78.70104,11.06857],[78.70977,11.06217],[78.71173,11.0556],[78.71765,11.05563],[78.72023,11.07398],[78.74275,11.07548],[78.74549,11.08307],[78.74143,11.08372],[78.73887,11.08668],[78.73658,11.09771],[78.73443,11.09884],[78.73529,11.10555],[78.73753,11.10613],[78.73808,11.10975],[78.74475,11.11102],[78.74881,11.11596],[78.75555,11.11653],[78.75916,11.11934],[78.75967,11.12155],[78.76063,11.12011],[78.77667,11.1169],[78.77677,11.11282],[78.77941,11.11306],[78.77939,11.11492],[78.78726,11.11576],[78.79665,11.11256],[78.80031,11.11438],[78.8031,11.11398],[78.80473,11.1117],[78.81094,11.11174],[78.80602,11.09031],[78.80807,11.08187],[78.80725,11.07893],[78.84003,11.07644],[78.8407,11.0805],[78.84391,11.08356],[78.84434,11.08824],[78.84746,11.09019],[78.85345,11.08864],[78.86213,11.09014],[78.86387,11.08556],[78.87249,11.08424],[78.87167,11.09349],[78.87338,11.09392],[78.87321,11.09672],[78.87672,11.09677],[78.87702,11.09848],[78.87946,11.09812],[78.88038,11.09944],[78.88563,11.09885],[78.88646,11.10174],[78.88927,11.10159],[78.88932,11.09989],[78.89613,11.10006],[78.90354,11.09575],[78.90515,11.09719],[78.91662,11.09616],[78.91752,11.0926],[78.92642,11.08943],[78.92944,11.0936],[78.93819,11.09472],[78.94685,11.09279],[78.95401,11.09476],[78.97396,11.09428],[78.98038,11.09099],[78.98086,11.0889],[78.98416,11.08882],[78.98546,11.08577],[78.98474,11.07885],[78.99833,11.07621],[79.00171,11.06062],[79.00598,11.06029],[79.00645,11.05885],[79.01315,11.06271],[79.01844,11.0629],[79.01825,11.06644],[79.02441,11.06767],[79.02444,11.07313],[79.02576,11.07539],[79.03042,11.07606],[79.03228,11.08388],[79.0488,11.0867],[79.04891,11.08545],[79.05436,11.08497],[79.06124,11.0978],[79.06483,11.10049],[79.06941,11.10889],[79.06609,11.11477],[79.0675,11.11832],[79.06452,11.12196],[79.0654,11.12687],[79.06117,11.12809],[79.05925,11.12555],[79.05714,11.12989],[79.05507,11.12987],[79.0561,11.14053],[79.06057,11.14127],[79.06073,11.15034],[79.05952,11.15227],[79.07075,11.15446],[79.07247,11.15925],[79.07298,11.17018],[79.07103,11.17151],[79.06937,11.17711],[79.07588,11.17831],[79.07841,11.18076],[79.07577,11.18927],[79.06723,11.18886],[79.06797,11.19509],[79.06626,11.19697],[79.06593,11.20436],[79.07313,11.20811],[79.07457,11.20456],[79.08548,11.20477],[79.08913,11.19975],[79.09345,11.19985],[79.09518,11.21672],[79.09891,11.23066],[79.1039,11.22946],[79.1074,11.23219],[79.11117,11.2306],[79.10944,11.24438],[79.12217,11.24873],[79.11998,11.25885],[79.12244,11.25907],[79.12197,11.26411],[79.12054,11.26371],[79.11979,11.26682],[79.11579,11.26811],[79.11523,11.27043],[79.10898,11.27023],[79.10959,11.28287],[79.11303,11.2828],[79.1134,11.28698],[79.11089,11.28755],[79.11102,11.28896],[79.11409,11.29373],[79.11881,11.29333],[79.1301,11.29758],[79.13927,11.29001],[79.13962,11.29574],[79.1427,11.29911],[79.14091,11.30931],[79.12496,11.31076],[79.12887,11.32147],[79.13005,11.33097],[79.13078,11.33239],[79.1471,11.3338],[79.14961,11.33497],[79.15032,11.33973],[79.15746,11.33842],[79.15961,11.34878],[79.15498,11.35593],[79.15064,11.35779],[79.15075,11.36343],[79.15314,11.36683],[79.15811,11.3672],[79.16277,11.36971],[79.16322,11.3753],[79.16637,11.37556],[79.16815,11.37842],[79.16145,11.38181],[79.14247,11.38426],[79.12839,11.3942],[79.10911,11.40102],[79.10155,11.40139],[79.08965,11.39727],[79.08314,11.39679],[79.07117,11.40039],[79.053,11.40283],[79.03244,11.39357],[79.01072,11.39743],[78.99699,11.40755],[78.99236,11.4071],[78.98381,11.40291],[78.97218,11.40562],[78.96074,11.4061],[78.95608,11.41417],[78.94827,11.41955],[78.94167,11.43198],[78.92917,11.44331],[78.92475,11.45258],[78.92151,11.4537],[78.9157,11.46283],[78.91157,11.46542],[78.90867,11.47592],[78.89156,11.48909],[78.89007,11.49371],[78.884,11.49783],[78.87904,11.50649],[78.87262,11.51163],[78.87189,11.51712],[78.86418,11.51867],[78.85995,11.52193]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"582","area_level":"District","area_name":"Pudukkottai","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.57845,10.70313],[78.57717,10.70443],[78.57455,10.7065],[78.57459,10.70898],[78.56942,10.70905],[78.56684,10.70609],[78.5654,10.70484],[78.56204,10.70369],[78.56145,10.70295],[78.56071,10.7026],[78.56016,10.70277],[78.55904,10.70362],[78.55862,10.7033],[78.55801,10.70172],[78.55837,10.698],[78.55886,10.69755],[78.55927,10.69655],[78.56064,10.69574],[78.56469,10.69414],[78.56636,10.68907],[78.56984,10.68454],[78.57071,10.68457],[78.57104,10.68495],[78.57277,10.68568],[78.5739,10.68533],[78.57437,10.68484],[78.57502,10.6848],[78.57693,10.68804],[78.57978,10.69355],[78.58002,10.69992],[78.57919,10.70197],[78.57845,10.70313]]],[[[78.69352,10.73269],[78.68919,10.73464],[78.6879,10.72864],[78.69057,10.72397],[78.69254,10.70815],[78.69546,10.7074],[78.69763,10.70229],[78.6952,10.70116],[78.69593,10.69905],[78.69315,10.69132],[78.68886,10.69014],[78.68832,10.68734],[78.68212,10.68657],[78.68295,10.67106],[78.68033,10.66997],[78.66655,10.67248],[78.66577,10.67146],[78.6667,10.65783],[78.6652,10.65478],[78.65887,10.65404],[78.6525,10.65861],[78.6543,10.66989],[78.65641,10.67195],[78.65614,10.67576],[78.65341,10.67709],[78.65131,10.6814],[78.65561,10.68791],[78.65847,10.70468],[78.64759,10.70364],[78.64109,10.70799],[78.63519,10.70736],[78.6341,10.70563],[78.62607,10.70254],[78.62663,10.70098],[78.62218,10.69012],[78.6238,10.68634],[78.62131,10.6758],[78.61763,10.67688],[78.61605,10.68159],[78.61079,10.6802],[78.60918,10.6811],[78.59305,10.65902],[78.57946,10.66406],[78.57492,10.65981],[78.56556,10.66064],[78.56634,10.66458],[78.56492,10.67117],[78.56845,10.68128],[78.55565,10.68692],[78.55085,10.68638],[78.54613,10.67933],[78.54493,10.67946],[78.54441,10.67523],[78.54202,10.67655],[78.53388,10.67654],[78.53011,10.67131],[78.52649,10.6742],[78.52308,10.6741],[78.52081,10.66905],[78.51783,10.66983],[78.51719,10.66475],[78.52071,10.66282],[78.51803,10.65984],[78.51981,10.65172],[78.52348,10.64701],[78.52911,10.64478],[78.52702,10.62908],[78.51932,10.63042],[78.5066,10.63566],[78.49244,10.63508],[78.4825,10.63841],[78.47797,10.63136],[78.47423,10.63093],[78.47301,10.6278],[78.46916,10.62776],[78.4669,10.61851],[78.45895,10.61681],[78.45955,10.61145],[78.44835,10.60934],[78.44563,10.60738],[78.45025,10.60458],[78.44981,10.60163],[78.45315,10.59821],[78.45273,10.59508],[78.45088,10.59594],[78.45241,10.59212],[78.45964,10.59015],[78.45999,10.58386],[78.45798,10.58289],[78.4584,10.58126],[78.46613,10.57834],[78.46301,10.56168],[78.46534,10.55613],[78.46448,10.55373],[78.46652,10.54567],[78.46386,10.54083],[78.48617,10.53884],[78.48614,10.53403],[78.49131,10.52679],[78.48789,10.52271],[78.48814,10.52037],[78.4895,10.51694],[78.49293,10.51488],[78.49334,10.51003],[78.49796,10.50667],[78.4964,10.49376],[78.49269,10.48883],[78.49607,10.48506],[78.51931,10.48284],[78.5224,10.48539],[78.52736,10.48628],[78.53623,10.49692],[78.53811,10.50292],[78.54047,10.5029],[78.54106,10.50821],[78.53882,10.50847],[78.53942,10.51258],[78.53284,10.51393],[78.53329,10.52233],[78.53692,10.52758],[78.53649,10.53061],[78.54079,10.5304],[78.54016,10.52855],[78.5422,10.52813],[78.54387,10.53003],[78.54469,10.5289],[78.54999,10.51408],[78.56078,10.51364],[78.56458,10.51203],[78.56939,10.51958],[78.57265,10.51849],[78.57398,10.51986],[78.57792,10.51936],[78.58022,10.52234],[78.58183,10.52189],[78.57906,10.50665],[78.57555,10.50264],[78.57628,10.50147],[78.57077,10.48906],[78.57843,10.48497],[78.57811,10.48316],[78.585,10.48114],[78.58477,10.47914],[78.58941,10.47447],[78.58909,10.4643],[78.58707,10.46411],[78.58734,10.4577],[78.58438,10.45542],[78.58328,10.45178],[78.58291,10.44649],[78.58547,10.44334],[78.58507,10.44092],[78.57105,10.44562],[78.56754,10.44266],[78.56509,10.44297],[78.56142,10.43168],[78.56523,10.42972],[78.56459,10.42705],[78.55784,10.4279],[78.55331,10.4266],[78.55161,10.42817],[78.55231,10.43367],[78.54396,10.4348],[78.54238,10.43295],[78.53311,10.43385],[78.52491,10.43702],[78.51907,10.43137],[78.51971,10.42738],[78.51661,10.4176],[78.51802,10.41161],[78.51655,10.40785],[78.52712,10.40283],[78.53114,10.3967],[78.52926,10.3916],[78.53028,10.39053],[78.52827,10.38951],[78.52486,10.37822],[78.51975,10.37542],[78.51571,10.37554],[78.5139,10.37153],[78.50935,10.37231],[78.50729,10.37604],[78.50557,10.3759],[78.50175,10.36736],[78.49787,10.3646],[78.49698,10.35865],[78.49774,10.35211],[78.50478,10.35079],[78.50945,10.34696],[78.51454,10.33543],[78.52011,10.33031],[78.52141,10.32628],[78.5188,10.31859],[78.51952,10.3143],[78.51537,10.3091],[78.51501,10.30351],[78.51891,10.30022],[78.51592,10.29711],[78.51267,10.28574],[78.51703,10.27996],[78.5115,10.27003],[78.51455,10.26765],[78.50744,10.26441],[78.49234,10.26321],[78.47257,10.26987],[78.46345,10.26703],[78.45293,10.26717],[78.45304,10.25886],[78.44775,10.24542],[78.45345,10.24431],[78.45759,10.24057],[78.46456,10.2404],[78.47508,10.24501],[78.48165,10.25463],[78.48326,10.2545],[78.48579,10.25145],[78.48219,10.25015],[78.47929,10.24061],[78.48709,10.23656],[78.48774,10.23441],[78.47845,10.22255],[78.47552,10.22333],[78.47273,10.21986],[78.47511,10.21956],[78.4728,10.20773],[78.46951,10.20425],[78.47052,10.2029],[78.476,10.20278],[78.48377,10.19315],[78.48782,10.19052],[78.49582,10.19174],[78.49911,10.18801],[78.51599,10.19034],[78.51385,10.20057],[78.51436,10.20719],[78.5174,10.2095],[78.51452,10.21668],[78.51615,10.22021],[78.51546,10.22637],[78.51895,10.23664],[78.5239,10.23903],[78.52759,10.23855],[78.52914,10.24096],[78.52998,10.25043],[78.53236,10.25064],[78.53395,10.25441],[78.53823,10.2552],[78.53845,10.25766],[78.54043,10.25756],[78.5406,10.25306],[78.54852,10.2521],[78.55347,10.24949],[78.55509,10.25483],[78.56179,10.25319],[78.56519,10.25795],[78.57063,10.25677],[78.57684,10.26625],[78.57439,10.26731],[78.57412,10.27726],[78.5726,10.27766],[78.57209,10.27458],[78.57099,10.27519],[78.57174,10.28001],[78.56945,10.28107],[78.5739,10.28595],[78.57793,10.28723],[78.59164,10.27906],[78.6096,10.27391],[78.61157,10.27037],[78.62356,10.26996],[78.62905,10.26802],[78.63622,10.26923],[78.64768,10.25858],[78.64775,10.25595],[78.64887,10.25688],[78.65167,10.25428],[78.6483,10.24547],[78.64443,10.2448],[78.64138,10.24104],[78.65061,10.23659],[78.64725,10.22581],[78.65202,10.21965],[78.65852,10.21438],[78.66024,10.21508],[78.6657,10.21212],[78.66959,10.20641],[78.67323,10.2047],[78.67104,10.19521],[78.66869,10.19414],[78.6667,10.18547],[78.66524,10.18537],[78.66421,10.17895],[78.67038,10.17602],[78.66752,10.16991],[78.67047,10.16329],[78.66804,10.15429],[78.66989,10.15487],[78.67007,10.15327],[78.67759,10.14722],[78.68638,10.14588],[78.68874,10.14789],[78.69013,10.1468],[78.69133,10.14775],[78.69386,10.15519],[78.69646,10.15659],[78.70852,10.1756],[78.71584,10.17129],[78.72664,10.16982],[78.7277,10.16135],[78.73732,10.15856],[78.73813,10.1621],[78.7471,10.1643],[78.76043,10.16535],[78.76719,10.16343],[78.7702,10.16721],[78.76953,10.17135],[78.7648,10.17425],[78.76722,10.18062],[78.76517,10.18058],[78.76529,10.19299],[78.76697,10.19646],[78.76873,10.19662],[78.76889,10.19906],[78.77355,10.19896],[78.77672,10.2003],[78.77748,10.20253],[78.77972,10.2036],[78.78206,10.20264],[78.78688,10.20672],[78.79358,10.20624],[78.8024,10.21137],[78.8099,10.213],[78.82323,10.1981],[78.82194,10.18785],[78.81729,10.17207],[78.81362,10.16662],[78.81812,10.16228],[78.81883,10.15925],[78.82955,10.15452],[78.83302,10.14578],[78.83305,10.13924],[78.83675,10.14034],[78.84838,10.13747],[78.84938,10.13249],[78.84789,10.12607],[78.86227,10.12644],[78.86549,10.13574],[78.87237,10.13808],[78.87356,10.14226],[78.87622,10.14349],[78.877,10.14761],[78.88002,10.15133],[78.88114,10.15092],[78.88187,10.15453],[78.88625,10.15122],[78.88682,10.14809],[78.88913,10.14931],[78.89653,10.14725],[78.90177,10.1518],[78.89881,10.15424],[78.90006,10.15667],[78.90855,10.15135],[78.90767,10.14759],[78.91352,10.14461],[78.91023,10.13591],[78.91032,10.13251],[78.91165,10.12983],[78.91344,10.12997],[78.91349,10.12776],[78.92043,10.12311],[78.9281,10.12079],[78.92865,10.11429],[78.93749,10.11564],[78.93808,10.1119],[78.94164,10.11017],[78.94099,10.11434],[78.94456,10.11243],[78.94789,10.10936],[78.94787,10.10557],[78.95004,10.10851],[78.95009,10.11425],[78.95861,10.1141],[78.96088,10.11817],[78.9643,10.11915],[78.96668,10.12763],[78.97186,10.12114],[78.977,10.10951],[78.97703,10.10184],[78.98226,10.10027],[78.98218,10.09507],[78.98698,10.08937],[78.98235,10.08463],[78.97807,10.08655],[78.977,10.08117],[78.97337,10.08181],[78.96712,10.08676],[78.96299,10.09481],[78.96012,10.09527],[78.94982,10.08954],[78.94971,10.08507],[78.94588,10.07889],[78.93423,10.07191],[78.9379,10.06947],[78.93714,10.06601],[78.94043,10.06103],[78.9444,10.05944],[78.94195,10.05384],[78.93934,10.05434],[78.93981,10.05645],[78.93806,10.05748],[78.93647,10.05389],[78.93378,10.05314],[78.93391,10.05068],[78.9312,10.04717],[78.92463,10.04704],[78.92362,10.04273],[78.92788,10.04155],[78.93204,10.03739],[78.93215,10.0342],[78.92973,10.03099],[78.93111,10.02707],[78.93023,10.02176],[78.94137,10.01304],[78.95168,10.00801],[78.96047,10.00617],[78.96142,10.0085],[78.96486,10.00749],[78.97479,9.99964],[78.97245,9.99225],[78.97396,9.99146],[78.98148,9.99036],[78.98815,9.99453],[78.99294,9.99348],[78.99383,9.99593],[78.99754,9.99453],[78.99882,9.98908],[79.00311,9.98721],[79.00738,9.98722],[79.00748,9.98925],[79.00998,9.98986],[79.01392,9.98094],[79.00289,9.97878],[79.00006,9.97137],[78.9966,9.96717],[78.99785,9.965],[79.00229,9.96416],[79.00114,9.95909],[79.00331,9.95621],[78.99662,9.95248],[78.99402,9.95229],[78.99256,9.95386],[78.99074,9.95061],[78.98869,9.95148],[78.98798,9.95023],[78.99106,9.94401],[78.99703,9.93822],[78.99817,9.92944],[79.00198,9.92254],[79.00629,9.91867],[79.00605,9.91426],[79.01093,9.91226],[79.01614,9.90265],[79.02244,9.90267],[79.02623,9.89644],[79.03113,9.89321],[79.03527,9.88565],[79.03722,9.87697],[79.04131,9.87181],[79.0411,9.86478],[79.04298,9.86117],[79.04731,9.85806],[79.05989,9.85848],[79.06495,9.85225],[79.06947,9.84999],[79.07377,9.85304],[79.08147,9.85285],[79.09011,9.85738],[79.10299,9.8552],[79.10621,9.85099],[79.1058,9.85384],[79.10759,9.85176],[79.11206,9.8513],[79.11546,9.84907],[79.11636,9.85139],[79.11018,9.85784],[79.11131,9.85876],[79.11931,9.85278],[79.12083,9.85531],[79.1222,9.8603],[79.11295,9.86023],[79.11678,9.86277],[79.11741,9.87112],[79.11481,9.87343],[79.11745,9.87231],[79.1186,9.87845],[79.11583,9.87955],[79.11774,9.88016],[79.11972,9.87764],[79.12163,9.88008],[79.11858,9.88958],[79.11438,9.88924],[79.11127,9.89284],[79.11465,9.88987],[79.11845,9.89065],[79.12404,9.88356],[79.12594,9.89078],[79.12985,9.89584],[79.12783,9.90242],[79.1255,9.90371],[79.12812,9.90277],[79.13146,9.89707],[79.13465,9.89974],[79.13344,9.90373],[79.1351,9.90037],[79.13968,9.90442],[79.13668,9.90964],[79.13991,9.90468],[79.14701,9.91144],[79.13887,9.92086],[79.14371,9.9187],[79.14527,9.92423],[79.14492,9.91871],[79.15051,9.91964],[79.15338,9.92368],[79.15281,9.92823],[79.1552,9.93152],[79.16893,9.94367],[79.18111,9.95794],[79.19846,9.97329],[79.20526,9.98477],[79.21621,9.99671],[79.21488,10.00005],[79.21658,9.99755],[79.24441,10.02722],[79.26611,10.03923],[79.25568,10.04515],[79.25146,10.04458],[79.25053,10.04212],[79.25106,10.04359],[79.24961,10.04381],[79.25509,10.04543],[79.2483,10.05144],[79.24559,10.05689],[79.2445,10.05723],[79.24478,10.05493],[79.24344,10.05712],[79.23929,10.0578],[79.24526,10.05788],[79.24414,10.06296],[79.23847,10.06252],[79.23821,10.06472],[79.24666,10.06473],[79.25049,10.06757],[79.24807,10.07087],[79.24145,10.07191],[79.23945,10.07013],[79.2371,10.07399],[79.23411,10.07059],[79.23669,10.07334],[79.23417,10.07757],[79.23196,10.07689],[79.23324,10.0787],[79.23204,10.08175],[79.2272,10.0735],[79.2303,10.08295],[79.22758,10.0838],[79.22323,10.08122],[79.2275,10.08442],[79.2304,10.08461],[79.23144,10.08298],[79.22598,10.09929],[79.22893,10.10537],[79.22313,10.10531],[79.22094,10.10928],[79.21907,10.10927],[79.21948,10.11306],[79.22312,10.10601],[79.22846,10.10647],[79.22718,10.10934],[79.22935,10.10746],[79.22727,10.11127],[79.2303,10.11833],[79.22717,10.11912],[79.23067,10.11927],[79.2304,10.12472],[79.23339,10.12711],[79.22789,10.13215],[79.22605,10.13711],[79.21642,10.13579],[79.20651,10.13679],[79.20837,10.13986],[79.21043,10.13974],[79.20921,10.14727],[79.2066,10.14812],[79.20696,10.15136],[79.20388,10.15298],[79.20297,10.15839],[79.19659,10.15686],[79.19635,10.16089],[79.19087,10.1618],[79.17804,10.15825],[79.16397,10.16198],[79.16652,10.15923],[79.16001,10.15681],[79.15143,10.15956],[79.15111,10.16659],[79.15699,10.16926],[79.15711,10.17638],[79.1611,10.17723],[79.16148,10.17988],[79.16026,10.18038],[79.16019,10.18459],[79.15603,10.18348],[79.15621,10.18487],[79.15044,10.1853],[79.15019,10.19391],[79.15257,10.19678],[79.16085,10.19513],[79.17375,10.20341],[79.17421,10.20117],[79.18251,10.19329],[79.18931,10.201],[79.18718,10.20502],[79.1824,10.20742],[79.18226,10.21104],[79.18399,10.21266],[79.18312,10.21461],[79.17828,10.21641],[79.17313,10.21364],[79.16281,10.21803],[79.16165,10.21537],[79.15381,10.2178],[79.15056,10.21621],[79.14643,10.2232],[79.14756,10.22925],[79.14423,10.23634],[79.13666,10.23643],[79.13363,10.23041],[79.11599,10.23388],[79.11759,10.25342],[79.12914,10.25361],[79.13127,10.25636],[79.13018,10.25984],[79.13258,10.26505],[79.12895,10.26759],[79.13123,10.27327],[79.12615,10.27806],[79.12786,10.28185],[79.11865,10.28878],[79.11987,10.29213],[79.12422,10.29529],[79.12638,10.30122],[79.12283,10.30268],[79.12163,10.30572],[79.12257,10.30715],[79.1257,10.30647],[79.13289,10.30912],[79.13481,10.31179],[79.13493,10.31903],[79.13116,10.32549],[79.12552,10.32621],[79.12532,10.32815],[79.11624,10.32711],[79.11442,10.3282],[79.12083,10.33744],[79.13917,10.34176],[79.1464,10.34947],[79.15296,10.35014],[79.15095,10.36342],[79.14566,10.36499],[79.14873,10.37318],[79.1447,10.37689],[79.14418,10.38294],[79.14531,10.38994],[79.1495,10.39288],[79.15269,10.40075],[79.14744,10.41088],[79.14158,10.41388],[79.13436,10.42325],[79.13163,10.42442],[79.12948,10.43333],[79.12548,10.43588],[79.1258,10.43794],[79.13135,10.43636],[79.13746,10.43995],[79.14134,10.44545],[79.14353,10.44567],[79.14167,10.44775],[79.13966,10.44652],[79.1389,10.44822],[79.14042,10.4495],[79.14329,10.44814],[79.1449,10.4497],[79.15117,10.44716],[79.15359,10.4484],[79.15397,10.45177],[79.15639,10.45243],[79.15786,10.44616],[79.15963,10.44901],[79.16477,10.44814],[79.16663,10.45025],[79.16897,10.44817],[79.17606,10.44802],[79.17682,10.45187],[79.17428,10.44865],[79.17221,10.44908],[79.17168,10.45094],[79.16561,10.45291],[79.16654,10.45542],[79.17279,10.45327],[79.17322,10.4587],[79.19069,10.45961],[79.19034,10.46258],[79.19447,10.46291],[79.1947,10.46593],[79.19442,10.46773],[79.19092,10.46847],[79.19028,10.47111],[79.18537,10.46943],[79.18329,10.46982],[79.18301,10.47237],[79.17804,10.47228],[79.179,10.47606],[79.17706,10.4759],[79.1768,10.47762],[79.17435,10.47662],[79.17346,10.47838],[79.17236,10.47651],[79.17496,10.47419],[79.17235,10.47435],[79.17005,10.47858],[79.17191,10.47871],[79.17089,10.48168],[79.16649,10.47592],[79.16466,10.47764],[79.16344,10.47584],[79.1613,10.47612],[79.16007,10.47347],[79.15519,10.47487],[79.15468,10.47644],[79.15184,10.4758],[79.15283,10.47779],[79.15054,10.47819],[79.14916,10.48271],[79.14721,10.48335],[79.14734,10.48586],[79.14472,10.4862],[79.14189,10.48433],[79.14153,10.48616],[79.13513,10.48661],[79.13439,10.48502],[79.12986,10.48786],[79.1303,10.48965],[79.13209,10.48904],[79.13131,10.49247],[79.13289,10.49433],[79.12933,10.49168],[79.1288,10.49539],[79.13052,10.499],[79.13056,10.49727],[79.13917,10.4982],[79.14113,10.50149],[79.14046,10.5123],[79.1419,10.51443],[79.14492,10.51286],[79.14942,10.51923],[79.15488,10.52179],[79.15305,10.52194],[79.15201,10.52408],[79.15058,10.52171],[79.14914,10.52364],[79.14894,10.5283],[79.15165,10.5325],[79.153,10.53248],[79.15268,10.52956],[79.15396,10.53135],[79.15675,10.53021],[79.15815,10.53356],[79.16187,10.53195],[79.16513,10.53285],[79.16521,10.53092],[79.16788,10.53013],[79.1684,10.53372],[79.17063,10.53289],[79.17035,10.5317],[79.17376,10.53234],[79.17432,10.53577],[79.17718,10.53589],[79.17774,10.53825],[79.18463,10.53774],[79.18595,10.54238],[79.18344,10.54798],[79.17882,10.55055],[79.18304,10.55013],[79.18344,10.55676],[79.18754,10.55577],[79.1887,10.55924],[79.19057,10.55948],[79.19134,10.56431],[79.18724,10.56644],[79.1893,10.56699],[79.1901,10.56553],[79.19078,10.57819],[79.18011,10.57452],[79.18174,10.57392],[79.1823,10.57109],[79.1788,10.57128],[79.1774,10.58693],[79.17411,10.58487],[79.16925,10.58468],[79.16938,10.58704],[79.15468,10.58902],[79.15345,10.58771],[79.14279,10.58638],[79.1412,10.58819],[79.14129,10.5996],[79.1434,10.60839],[79.13993,10.61053],[79.13974,10.61421],[79.13572,10.61606],[79.13278,10.62928],[79.12759,10.63618],[79.12622,10.63406],[79.11925,10.63484],[79.1043,10.61521],[79.1008,10.62963],[79.0933,10.63065],[79.09354,10.63199],[79.08919,10.63464],[79.07965,10.63585],[79.07987,10.63724],[79.06999,10.64072],[79.06963,10.6449],[79.06552,10.64911],[79.06635,10.66982],[79.06869,10.67239],[79.06894,10.67738],[79.06297,10.67384],[79.05643,10.67672],[79.05493,10.6796],[79.04604,10.68101],[79.01666,10.68012],[79.01645,10.68236],[79.02065,10.68372],[79.02139,10.68951],[79.01987,10.69583],[79.02114,10.6989],[79.02924,10.70403],[79.02626,10.70614],[79.0105,10.70788],[79.00708,10.71183],[79.00978,10.71946],[79.00504,10.72031],[79.0035,10.72227],[78.99351,10.72168],[78.99183,10.71747],[78.99137,10.70558],[78.9897,10.70563],[78.98955,10.70343],[78.98405,10.69894],[78.98472,10.69679],[78.9833,10.69655],[78.98341,10.68771],[78.98705,10.67915],[78.97447,10.67745],[78.96969,10.67536],[78.9697,10.6701],[78.9717,10.66917],[78.9701,10.66516],[78.9712,10.66225],[78.96393,10.65146],[78.96136,10.65566],[78.9613,10.66179],[78.95819,10.6614],[78.95481,10.66818],[78.94557,10.66913],[78.93757,10.67508],[78.93775,10.67758],[78.93963,10.67866],[78.94251,10.67642],[78.94318,10.67761],[78.94487,10.67677],[78.94504,10.67536],[78.94866,10.67512],[78.94468,10.68065],[78.93346,10.6836],[78.92491,10.67861],[78.91851,10.67075],[78.90819,10.67174],[78.90574,10.68055],[78.90238,10.67997],[78.90225,10.68172],[78.89388,10.68523],[78.89377,10.6942],[78.8887,10.69347],[78.88876,10.69516],[78.88222,10.69528],[78.87346,10.70559],[78.87137,10.69635],[78.8721,10.68813],[78.86478,10.68807],[78.86275,10.6925],[78.84831,10.69193],[78.84843,10.69346],[78.82041,10.69458],[78.82085,10.68706],[78.81766,10.68774],[78.81226,10.67958],[78.81335,10.67819],[78.81265,10.67242],[78.80355,10.67605],[78.80672,10.67782],[78.80495,10.67974],[78.80218,10.67836],[78.79971,10.67986],[78.7985,10.67545],[78.80203,10.67161],[78.79898,10.66846],[78.79949,10.66677],[78.79751,10.66689],[78.79357,10.65285],[78.79066,10.64978],[78.77378,10.65124],[78.77338,10.65378],[78.76532,10.65509],[78.75864,10.65339],[78.75644,10.64773],[78.75777,10.64404],[78.75024,10.64177],[78.74412,10.64338],[78.74331,10.65535],[78.74132,10.65692],[78.74162,10.65972],[78.73581,10.67165],[78.73565,10.67599],[78.7381,10.68281],[78.74376,10.6832],[78.74656,10.68682],[78.74644,10.69781],[78.74258,10.6993],[78.74447,10.70164],[78.74282,10.70742],[78.73594,10.71473],[78.72296,10.71589],[78.71942,10.71735],[78.7178,10.72082],[78.70988,10.72206],[78.71031,10.72629],[78.70825,10.72806],[78.70912,10.73307],[78.69352,10.73269]],[[79.18292,10.56653],[79.18484,10.56728],[79.18431,10.56558],[79.18292,10.56653]],[[79.14378,10.51588],[79.14539,10.51813],[79.14502,10.51575],[79.14378,10.51588]],[[79.13317,10.50718],[79.13486,10.50857],[79.13655,10.5058],[79.13317,10.50718]],[[79.17597,10.46989],[79.17716,10.46971],[79.1758,10.46811],[79.17597,10.46989]],[[79.15255,10.46407],[79.15138,10.46555],[79.15329,10.46522],[79.15255,10.46407]],[[79.15677,10.46785],[79.15631,10.46973],[79.15772,10.46872],[79.15677,10.46785]],[[79.16035,10.45457],[79.15901,10.45597],[79.16073,10.45625],[79.16035,10.45457]],[[79.15215,10.45186],[79.15122,10.45257],[79.15297,10.45294],[79.15215,10.45186]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"583","area_level":"District","area_name":"Ramanathapuram","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.49274,9.08642],[78.49337,9.08669],[78.49398,9.08729],[78.49467,9.08831],[78.49513,9.08879],[78.49556,9.08936],[78.49566,9.08972],[78.49565,9.0902],[78.49555,9.09066],[78.49522,9.09107],[78.49482,9.09135],[78.49436,9.09155],[78.49379,9.0917],[78.49251,9.09194],[78.49221,9.09205],[78.49047,9.0933],[78.49012,9.09349],[78.48994,9.09343],[78.48983,9.09328],[78.48952,9.092],[78.48857,9.09071],[78.48766,9.08974],[78.4872,9.08914],[78.48722,9.08871],[78.4875,9.08824],[78.48812,9.08774],[78.48958,9.08703],[78.49126,9.08646],[78.49207,9.08637],[78.49274,9.08642]]],[[[78.5368,9.10186],[78.53765,9.10213],[78.5384,9.1026],[78.53909,9.10377],[78.53945,9.10457],[78.53958,9.10513],[78.53952,9.10554],[78.5394,9.10584],[78.53913,9.10605],[78.53888,9.10614],[78.53869,9.10617],[78.53857,9.10613],[78.53835,9.105],[78.53819,9.10479],[78.5379,9.10461],[78.53655,9.10409],[78.53601,9.10377],[78.53548,9.1033],[78.53508,9.10277],[78.53503,9.10246],[78.53507,9.10224],[78.5353,9.10206],[78.53564,9.10192],[78.53615,9.10184],[78.5368,9.10186]]],[[[78.58171,9.11097],[78.5808,9.11162],[78.57986,9.11283],[78.57955,9.1129],[78.57934,9.11282],[78.57849,9.11173],[78.57758,9.11015],[78.57654,9.10924],[78.57622,9.10882],[78.57578,9.10812],[78.57525,9.10664],[78.57495,9.10617],[78.57453,9.10571],[78.57311,9.10467],[78.57192,9.10417],[78.57104,9.10353],[78.57071,9.10283],[78.57059,9.10228],[78.57071,9.10155],[78.57095,9.10113],[78.57161,9.10066],[78.57265,9.10051],[78.57452,9.10102],[78.57506,9.10099],[78.57647,9.10052],[78.57709,9.10054],[78.57858,9.10111],[78.57915,9.10121],[78.57975,9.1011],[78.58011,9.10116],[78.58054,9.10136],[78.58093,9.10173],[78.58128,9.1026],[78.58189,9.1035],[78.58356,9.10453],[78.58442,9.10609],[78.58474,9.10638],[78.58736,9.10655],[78.58785,9.10683],[78.58803,9.10721],[78.58788,9.1077],[78.58677,9.10886],[78.58566,9.11114],[78.58535,9.11134],[78.58438,9.11143],[78.58269,9.11085],[78.5822,9.11081],[78.58171,9.11097]]],[[[79.48929,9.11904],[79.48986,9.11979],[79.49128,9.12112],[79.49285,9.12237],[79.49357,9.12274],[79.49576,9.12293],[79.49659,9.12317],[79.49694,9.1236],[79.49698,9.12393],[79.49651,9.12483],[79.49606,9.12529],[79.49558,9.12549],[79.49492,9.12539],[79.49368,9.12459],[79.49306,9.12448],[79.49211,9.1242],[79.49188,9.12403],[79.49107,9.12292],[79.48973,9.12051],[79.48879,9.11937],[79.48879,9.11909],[79.4889,9.11894],[79.48906,9.11894],[79.48929,9.11904]]],[[[79.48889,9.12751],[79.48897,9.12778],[79.48896,9.128],[79.48886,9.12819],[79.48871,9.12825],[79.4883,9.12823],[79.48764,9.12793],[79.48734,9.12772],[79.48719,9.12755],[79.48712,9.12733],[79.48725,9.12711],[79.48755,9.12702],[79.488,9.12725],[79.48823,9.12725],[79.48831,9.12709],[79.48826,9.12665],[79.48831,9.12652],[79.48858,9.1266],[79.48872,9.12692],[79.48889,9.12751]]],[[[79.48191,9.1302],[79.4817,9.13043],[79.4815,9.13055],[79.48106,9.13061],[79.48063,9.13056],[79.47992,9.13008],[79.47973,9.12989],[79.47973,9.1297],[79.48,9.12962],[79.48069,9.12995],[79.48113,9.13006],[79.48137,9.12997],[79.48145,9.12965],[79.48118,9.12889],[79.48118,9.12874],[79.48131,9.12863],[79.48163,9.12869],[79.48194,9.12925],[79.48203,9.12987],[79.48191,9.1302]]],[[[79.4836,9.13352],[79.48354,9.13393],[79.48347,9.13409],[79.48334,9.13424],[79.48309,9.1343],[79.48287,9.1343],[79.48203,9.13367],[79.48156,9.13311],[79.48151,9.13289],[79.48165,9.1327],[79.48197,9.13284],[79.48244,9.13323],[79.4826,9.13339],[79.48277,9.1334],[79.48283,9.13334],[79.48281,9.13316],[79.48219,9.13234],[79.4821,9.132],[79.48228,9.13184],[79.48262,9.13203],[79.48307,9.13245],[79.48347,9.1331],[79.4836,9.13352]]],[[[79.47394,9.13526],[79.47425,9.13594],[79.47425,9.13624],[79.47396,9.13705],[79.47375,9.13779],[79.47361,9.1384],[79.47288,9.13919],[79.47228,9.13976],[79.4718,9.14004],[79.47129,9.1401],[79.47069,9.13999],[79.46981,9.1394],[79.46981,9.13888],[79.46998,9.1387],[79.47097,9.13866],[79.47116,9.1386],[79.47181,9.13788],[79.47231,9.13769],[79.47347,9.13661],[79.47359,9.13616],[79.47344,9.13557],[79.47336,9.13536],[79.47341,9.13514],[79.47354,9.13501],[79.47369,9.13501],[79.47394,9.13526]]],[[[79.46807,9.14062],[79.4681,9.14086],[79.46796,9.14125],[79.46781,9.14185],[79.46774,9.1425],[79.46764,9.14299],[79.46753,9.14323],[79.46741,9.14338],[79.4662,9.14357],[79.46528,9.14346],[79.46512,9.14332],[79.46507,9.14315],[79.46509,9.14294],[79.46609,9.14196],[79.46751,9.14051],[79.46779,9.14039],[79.46807,9.14062]]],[[[79.45435,9.14372],[79.45443,9.144],[79.4545,9.14464],[79.45463,9.14499],[79.45471,9.14532],[79.45441,9.14561],[79.45413,9.14563],[79.45378,9.1455],[79.45378,9.1439],[79.45397,9.14367],[79.45435,9.14372]]],[[[79.45643,9.14704],[79.45623,9.14739],[79.45599,9.14755],[79.45575,9.14763],[79.45555,9.14763],[79.45537,9.14756],[79.45529,9.14741],[79.45506,9.14707],[79.45508,9.14683],[79.45523,9.14674],[79.45561,9.14683],[79.45573,9.14683],[79.45593,9.14672],[79.45618,9.14656],[79.45643,9.1467],[79.45643,9.14704]]],[[[79.45377,9.14858],[79.45328,9.1493],[79.45298,9.14956],[79.45269,9.14972],[79.45235,9.14978],[79.45197,9.14969],[79.45125,9.14938],[79.45046,9.14859],[79.45022,9.14829],[79.45009,9.14795],[79.45025,9.14765],[79.45046,9.14762],[79.45093,9.1479],[79.45138,9.14788],[79.45243,9.14719],[79.45257,9.14652],[79.45266,9.14642],[79.45322,9.14677],[79.45354,9.14691],[79.45412,9.14702],[79.45432,9.14714],[79.45451,9.1474],[79.45446,9.14773],[79.45377,9.14858]]],[[[79.44502,9.15107],[79.44563,9.15161],[79.44579,9.15206],[79.44568,9.15233],[79.44549,9.15273],[79.44562,9.15308],[79.44574,9.15331],[79.4458,9.15349],[79.44572,9.15366],[79.44552,9.15377],[79.44533,9.15377],[79.44511,9.15366],[79.445,9.15338],[79.44454,9.15234],[79.44446,9.15165],[79.44456,9.1512],[79.4447,9.15103],[79.44502,9.15107]]],[[[79.44582,9.15793],[79.44547,9.15821],[79.44506,9.15821],[79.44448,9.15804],[79.44375,9.15737],[79.4435,9.15693],[79.44358,9.15664],[79.44362,9.15648],[79.44375,9.15634],[79.44413,9.15642],[79.44478,9.15728],[79.44498,9.15737],[79.44533,9.15714],[79.44552,9.15685],[79.44559,9.15667],[79.44625,9.15479],[79.447,9.15282],[79.44729,9.15265],[79.44765,9.15279],[79.44782,9.15321],[79.44767,9.15393],[79.44701,9.15545],[79.44664,9.15605],[79.44618,9.15728],[79.44582,9.15793]]],[[[78.73206,9.15442],[78.73199,9.15518],[78.7318,9.15564],[78.7316,9.15584],[78.73135,9.15591],[78.7311,9.15588],[78.73086,9.15577],[78.73052,9.15543],[78.73026,9.15492],[78.72971,9.15422],[78.72945,9.15408],[78.72918,9.15406],[78.72879,9.15409],[78.72837,9.15392],[78.72813,9.15354],[78.72801,9.15321],[78.72803,9.1528],[78.72816,9.15258],[78.72836,9.15241],[78.72874,9.1522],[78.73042,9.15207],[78.73097,9.15212],[78.73119,9.15227],[78.73188,9.15354],[78.73202,9.15398],[78.73206,9.15442]]],[[[78.69545,9.15057],[78.69589,9.15082],[78.69635,9.15131],[78.6968,9.15207],[78.697,9.15259],[78.69702,9.15326],[78.69688,9.15448],[78.69687,9.15516],[78.69675,9.15567],[78.69652,9.15581],[78.6961,9.15583],[78.69552,9.15563],[78.69486,9.15502],[78.69408,9.15354],[78.69384,9.15286],[78.69375,9.15227],[78.69375,9.15175],[78.69387,9.1512],[78.69422,9.15078],[78.69442,9.15065],[78.69466,9.15055],[78.69508,9.15051],[78.69545,9.15057]]],[[[78.75198,9.15539],[78.7523,9.15542],[78.75243,9.15548],[78.75249,9.15554],[78.75253,9.15561],[78.75254,9.1557],[78.75255,9.1562],[78.75254,9.15635],[78.75251,9.15646],[78.75247,9.15656],[78.7524,9.15668],[78.75227,9.15681],[78.75207,9.15695],[78.75197,9.15701],[78.75186,9.15703],[78.75182,9.15702],[78.75133,9.15681],[78.75101,9.15663],[78.75093,9.15657],[78.7509,9.15651],[78.75088,9.15645],[78.75088,9.15636],[78.75091,9.15618],[78.75099,9.15599],[78.7511,9.15581],[78.75126,9.15563],[78.75145,9.15549],[78.7516,9.15543],[78.75179,9.15539],[78.75198,9.15539]]],[[[78.6985,9.15801],[78.69871,9.15811],[78.69888,9.1583],[78.69895,9.15848],[78.69884,9.15869],[78.69861,9.15874],[78.69842,9.15875],[78.69833,9.15871],[78.69807,9.15852],[78.69795,9.15823],[78.69801,9.15811],[78.69809,9.15797],[78.69829,9.15794],[78.6985,9.15801]]],[[[78.82356,9.16604],[78.82367,9.16611],[78.82365,9.16616],[78.82329,9.1662],[78.82261,9.16645],[78.82226,9.16644],[78.82149,9.16618],[78.81956,9.16523],[78.81931,9.16491],[78.81913,9.16436],[78.81908,9.16367],[78.81915,9.16282],[78.81907,9.16253],[78.8189,9.16227],[78.81867,9.16206],[78.81842,9.1619],[78.81803,9.16174],[78.81781,9.16155],[78.81689,9.16052],[78.81692,9.16037],[78.81701,9.16037],[78.81754,9.16066],[78.81849,9.16066],[78.81865,9.1607],[78.81898,9.16117],[78.81938,9.16204],[78.81998,9.16257],[78.82018,9.16288],[78.82097,9.16344],[78.82105,9.16358],[78.82119,9.16432],[78.82181,9.16468],[78.82217,9.16562],[78.82229,9.16581],[78.82241,9.16591],[78.82264,9.16598],[78.82356,9.16604]]],[[[78.82707,9.16733],[78.82727,9.16763],[78.82778,9.16812],[78.82809,9.16854],[78.82887,9.17008],[78.82904,9.17051],[78.82905,9.17091],[78.82886,9.17248],[78.82867,9.17349],[78.82852,9.17369],[78.82836,9.17343],[78.82799,9.17231],[78.82788,9.17182],[78.82717,9.17063],[78.82687,9.16956],[78.82671,9.1694],[78.82593,9.16895],[78.8256,9.16869],[78.82539,9.16845],[78.82506,9.16782],[78.82459,9.16729],[78.82414,9.16688],[78.82396,9.16658],[78.824,9.16637],[78.82414,9.16623],[78.82494,9.16633],[78.82568,9.16631],[78.82612,9.16635],[78.82659,9.16653],[78.82707,9.16733]]],[[[78.91048,9.186],[78.91049,9.18617],[78.91049,9.18631],[78.91041,9.18646],[78.91023,9.18656],[78.91012,9.18657],[78.91009,9.18654],[78.91004,9.18645],[78.91004,9.18631],[78.91006,9.18614],[78.91013,9.18599],[78.9103,9.18593],[78.91048,9.186]]],[[[78.96983,9.18619],[78.96959,9.18624],[78.9694,9.18638],[78.96933,9.18652],[78.96911,9.1874],[78.96903,9.1876],[78.96886,9.18782],[78.96862,9.18796],[78.9684,9.18801],[78.96812,9.18801],[78.96757,9.18792],[78.96719,9.18772],[78.96685,9.18736],[78.96666,9.18699],[78.96661,9.18649],[78.96664,9.18563],[78.96677,9.18435],[78.96684,9.18387],[78.96695,9.18354],[78.96714,9.18319],[78.96741,9.18292],[78.96768,9.18278],[78.96796,9.1828],[78.96824,9.18299],[78.96844,9.18328],[78.96843,9.18347],[78.96764,9.18455],[78.96759,9.18478],[78.96768,9.18507],[78.96809,9.18574],[78.96862,9.18613],[78.96886,9.18618],[78.96907,9.18602],[78.96935,9.1855],[78.96949,9.1849],[78.96966,9.18467],[78.96989,9.1845],[78.97012,9.18444],[78.9704,9.18451],[78.97091,9.18478],[78.97112,9.18497],[78.97116,9.18514],[78.97112,9.18535],[78.97097,9.18566],[78.97079,9.18587],[78.97065,9.18597],[78.97039,9.18608],[78.97008,9.18617],[78.96983,9.18619]]],[[[78.93735,9.18248],[78.93831,9.18307],[78.94033,9.18332],[78.94288,9.18492],[78.94326,9.18551],[78.94316,9.18667],[78.94348,9.18743],[78.94324,9.18783],[78.94272,9.18796],[78.94074,9.18742],[78.9391,9.18512],[78.93638,9.18344],[78.93288,9.18239],[78.93187,9.18256],[78.92813,9.18456],[78.92519,9.18488],[78.92263,9.18437],[78.919,9.18408],[78.91652,9.18296],[78.91479,9.18278],[78.9137,9.18233],[78.91181,9.18255],[78.90884,9.1815],[78.90718,9.18264],[78.90672,9.18444],[78.90625,9.18519],[78.90465,9.18343],[78.90103,9.18271],[78.89938,9.18069],[78.89847,9.18028],[78.89771,9.18025],[78.89726,9.17967],[78.89761,9.17928],[78.89922,9.17898],[78.90029,9.17837],[78.90143,9.17861],[78.90356,9.17846],[78.90463,9.17919],[78.90578,9.17927],[78.90739,9.18018],[78.90957,9.1797],[78.91098,9.18008],[78.91216,9.18001],[78.91477,9.18111],[78.91747,9.18186],[78.91971,9.18294],[78.92354,9.18332],[78.92726,9.18311],[78.9297,9.18183],[78.93078,9.18152],[78.93382,9.1822],[78.93735,9.18248]]],[[[78.70425,9.18408],[78.70428,9.1842],[78.70419,9.18443],[78.70393,9.18478],[78.70308,9.18548],[78.70252,9.18584],[78.70211,9.18606],[78.70195,9.18604],[78.70191,9.18599],[78.70188,9.18589],[78.7019,9.18582],[78.70251,9.1854],[78.70301,9.18502],[78.70361,9.18454],[78.70415,9.18406],[78.70425,9.18408]]],[[[79.0771,9.20222],[79.07586,9.20234],[79.07337,9.20362],[79.07115,9.20517],[79.07062,9.20653],[79.07074,9.20782],[79.07119,9.20925],[79.07099,9.20984],[79.0704,9.21061],[79.0689,9.21054],[79.06792,9.21014],[79.06747,9.20969],[79.0667,9.20761],[79.06403,9.20636],[79.06007,9.20284],[79.05696,9.19919],[79.05677,9.19802],[79.05736,9.19666],[79.05789,9.19621],[79.05893,9.19602],[79.06192,9.19772],[79.06419,9.19994],[79.06556,9.2006],[79.06647,9.20054],[79.0749,9.19799],[79.07941,9.1962],[79.08138,9.19478],[79.08315,9.19291],[79.08439,9.19214],[79.08635,9.19169],[79.08746,9.19196],[79.08869,9.19281],[79.09103,9.19593],[79.09128,9.19671],[79.09102,9.19755],[79.09023,9.19859],[79.08807,9.20033],[79.08761,9.20013],[79.08722,9.19961],[79.08677,9.19857],[79.08618,9.19876],[79.08579,9.19941],[79.08513,9.19986],[79.08357,9.19985],[79.08311,9.20037],[79.08317,9.20095],[79.08382,9.20173],[79.08388,9.20225],[79.08329,9.20277],[79.08198,9.20321],[79.0801,9.20243],[79.0771,9.20222]]],[[[79.1407,9.21328],[79.14083,9.21341],[79.14113,9.21359],[79.14118,9.21364],[79.14139,9.21378],[79.14157,9.21409],[79.14157,9.2142],[79.14153,9.21425],[79.14117,9.21428],[79.14047,9.2142],[79.14011,9.21418],[79.14,9.21414],[79.13992,9.21409],[79.13985,9.21396],[79.13979,9.21366],[79.1397,9.21346],[79.13959,9.21329],[79.13948,9.21322],[79.13943,9.21322],[79.1394,9.21324],[79.13923,9.21365],[79.13917,9.21371],[79.13913,9.21379],[79.13905,9.21382],[79.13899,9.21379],[79.13895,9.21372],[79.13891,9.21361],[79.13887,9.21335],[79.1389,9.21307],[79.13897,9.21281],[79.13919,9.21272],[79.13953,9.21264],[79.13963,9.21264],[79.13987,9.21271],[79.14,9.21273],[79.14056,9.21306],[79.1407,9.21328]]],[[[79.12555,9.21742],[79.12523,9.21748],[79.12434,9.21734],[79.12425,9.2172],[79.12428,9.21712],[79.12525,9.21643],[79.12554,9.21612],[79.12693,9.21508],[79.12698,9.21494],[79.12676,9.21495],[79.12635,9.21524],[79.12598,9.21529],[79.12525,9.21555],[79.12486,9.21581],[79.1244,9.21589],[79.124,9.21586],[79.12231,9.21614],[79.12224,9.21606],[79.12226,9.21574],[79.12252,9.21543],[79.12413,9.21519],[79.12463,9.21496],[79.1253,9.21486],[79.12602,9.21451],[79.12672,9.21436],[79.1281,9.21391],[79.12859,9.21383],[79.1295,9.21379],[79.13059,9.21384],[79.13128,9.21399],[79.13283,9.21453],[79.13311,9.21465],[79.13331,9.21503],[79.13398,9.21557],[79.134,9.21565],[79.13391,9.2157],[79.13363,9.21569],[79.13321,9.21555],[79.1327,9.21519],[79.13188,9.21474],[79.13159,9.21475],[79.13154,9.21479],[79.13159,9.21487],[79.13292,9.21575],[79.13337,9.21587],[79.13402,9.21589],[79.13411,9.21598],[79.13352,9.21615],[79.13299,9.21616],[79.13263,9.21596],[79.13172,9.21509],[79.13146,9.21505],[79.13087,9.21513],[79.1303,9.21499],[79.12969,9.21499],[79.12937,9.21469],[79.12912,9.21458],[79.12869,9.21483],[79.12773,9.21576],[79.12713,9.21585],[79.12707,9.216],[79.12739,9.21602],[79.12831,9.21588],[79.12868,9.21577],[79.12944,9.21533],[79.13019,9.2152],[79.13064,9.21537],[79.13139,9.21532],[79.13168,9.21538],[79.13183,9.21546],[79.13225,9.21595],[79.13261,9.21617],[79.13321,9.21633],[79.13321,9.21645],[79.13174,9.21625],[79.13111,9.21622],[79.12646,9.21736],[79.12606,9.21736],[79.1256,9.21714],[79.12554,9.2172],[79.12555,9.21742]]],[[[79.23573,9.24348],[79.23561,9.24359],[79.23539,9.24365],[79.23439,9.24328],[79.2338,9.24333],[79.23339,9.24347],[79.2329,9.24356],[79.2328,9.24353],[79.23275,9.24345],[79.23275,9.24308],[79.23285,9.24287],[79.23306,9.24262],[79.23429,9.24144],[79.23491,9.24104],[79.23538,9.24045],[79.23559,9.24027],[79.23583,9.2402],[79.23602,9.2402],[79.23727,9.2405],[79.23814,9.24085],[79.23846,9.24103],[79.23863,9.24121],[79.23866,9.2413],[79.23864,9.24146],[79.23854,9.24177],[79.23846,9.24189],[79.23836,9.24195],[79.23823,9.24197],[79.2377,9.24194],[79.2375,9.24196],[79.23718,9.24204],[79.237,9.24213],[79.23645,9.24263],[79.23573,9.24348]]],[[[79.20045,9.25068],[79.19769,9.25264],[79.19523,9.2529],[79.19089,9.25212],[79.18714,9.25062],[79.18194,9.25012],[79.18042,9.24963],[79.17949,9.24862],[79.179,9.24571],[79.17805,9.24273],[79.17906,9.24012],[79.17931,9.2382],[79.17983,9.23747],[79.18185,9.23699],[79.183,9.23587],[79.18604,9.23541],[79.18685,9.235],[79.18989,9.23095],[79.1915,9.23114],[79.1929,9.23188],[79.19395,9.23208],[79.1976,9.23035],[79.19881,9.23018],[79.1998,9.23036],[79.20086,9.23132],[79.20281,9.23388],[79.20249,9.23687],[79.20304,9.23871],[79.20384,9.23972],[79.20696,9.24029],[79.20898,9.24012],[79.21046,9.24069],[79.21286,9.24044],[79.21418,9.24131],[79.21468,9.24324],[79.2152,9.24405],[79.21839,9.24464],[79.21996,9.24581],[79.22225,9.24594],[79.22319,9.24646],[79.22365,9.24715],[79.22335,9.24832],[79.2228,9.24867],[79.22154,9.24885],[79.21957,9.25026],[79.21785,9.25044],[79.21785,9.25023],[79.2198,9.24986],[79.22202,9.24811],[79.22182,9.24759],[79.22088,9.24733],[79.21947,9.24778],[79.21835,9.24774],[79.21227,9.2464],[79.20781,9.24436],[79.20335,9.24171],[79.20227,9.24149],[79.20179,9.24182],[79.20172,9.24221],[79.20245,9.24409],[79.20329,9.24409],[79.20374,9.24439],[79.20426,9.2456],[79.20653,9.24586],[79.20701,9.24673],[79.2088,9.24722],[79.20894,9.24768],[79.20856,9.24849],[79.20867,9.24888],[79.21269,9.24916],[79.21535,9.25037],[79.21714,9.25015],[79.21774,9.25021],[79.21774,9.25042],[79.20894,9.2507],[79.20691,9.25024],[79.20316,9.24853],[79.20208,9.24895],[79.20045,9.25068]]],[[[78.99476,9.94038],[78.99106,9.94401],[78.98912,9.93994],[78.98353,9.94205],[78.96394,9.94285],[78.96381,9.94131],[78.96571,9.94039],[78.96294,9.92387],[78.95612,9.91995],[78.94758,9.91956],[78.94396,9.91685],[78.94053,9.92051],[78.93684,9.92124],[78.93784,9.93133],[78.93554,9.93397],[78.93126,9.93203],[78.92969,9.92596],[78.91599,9.92711],[78.91329,9.91926],[78.90961,9.91726],[78.90385,9.91924],[78.89927,9.91789],[78.89863,9.91416],[78.89321,9.91152],[78.8922,9.9078],[78.89437,9.90685],[78.90159,9.8944],[78.89412,9.88578],[78.89207,9.87901],[78.88347,9.8802],[78.87961,9.88554],[78.87731,9.88627],[78.87399,9.88343],[78.87465,9.87949],[78.87249,9.87553],[78.87621,9.87546],[78.88031,9.87292],[78.87811,9.8713],[78.8728,9.85917],[78.87306,9.85628],[78.86877,9.85337],[78.8695,9.84558],[78.8724,9.84454],[78.86827,9.8386],[78.86824,9.8357],[78.86608,9.83414],[78.86614,9.83126],[78.87349,9.82839],[78.87403,9.82472],[78.87233,9.82123],[78.86993,9.82047],[78.86894,9.81702],[78.86438,9.81382],[78.86411,9.81164],[78.86731,9.80613],[78.87209,9.80293],[78.87127,9.80059],[78.86794,9.80106],[78.86591,9.79799],[78.86648,9.78932],[78.86934,9.78883],[78.87263,9.78533],[78.87934,9.78699],[78.88749,9.78636],[78.88849,9.77982],[78.89327,9.77287],[78.89164,9.77125],[78.89221,9.76826],[78.89497,9.76403],[78.88982,9.75433],[78.88692,9.75373],[78.88599,9.74798],[78.88334,9.74725],[78.88226,9.74457],[78.87365,9.75533],[78.86936,9.75476],[78.8675,9.75921],[78.86451,9.761],[78.86241,9.76006],[78.85822,9.76526],[78.85531,9.76526],[78.85036,9.76119],[78.85388,9.75689],[78.85113,9.74704],[78.84515,9.74298],[78.84134,9.7474],[78.83337,9.75018],[78.82308,9.74976],[78.81664,9.74389],[78.82494,9.73579],[78.82634,9.73179],[78.81533,9.73155],[78.81398,9.7388],[78.8083,9.73939],[78.80554,9.74976],[78.80538,9.75951],[78.81322,9.76269],[78.81886,9.75969],[78.82165,9.76086],[78.82644,9.76945],[78.82467,9.77199],[78.82071,9.77276],[78.82038,9.77478],[78.82857,9.77666],[78.83123,9.78084],[78.8283,9.79295],[78.82227,9.78774],[78.81696,9.78025],[78.81456,9.77981],[78.81222,9.78083],[78.8099,9.78734],[78.80112,9.78868],[78.79906,9.7946],[78.79602,9.79489],[78.80015,9.78388],[78.78972,9.7817],[78.79204,9.77555],[78.78766,9.77152],[78.78037,9.76044],[78.78317,9.76822],[78.78452,9.78276],[78.78218,9.7954],[78.77418,9.78679],[78.75292,9.78036],[78.74628,9.7825],[78.74479,9.78231],[78.74355,9.77906],[78.73737,9.78051],[78.73888,9.77606],[78.74333,9.77164],[78.74431,9.76029],[78.73348,9.75836],[78.73279,9.74903],[78.734,9.74731],[78.74123,9.74649],[78.74285,9.74348],[78.74132,9.73672],[78.74492,9.70762],[78.74738,9.70582],[78.7506,9.70904],[78.75188,9.7158],[78.75516,9.71715],[78.76255,9.71654],[78.77806,9.71955],[78.78047,9.71834],[78.78222,9.71263],[78.78766,9.70754],[78.79219,9.70469],[78.7943,9.70558],[78.79575,9.70347],[78.79524,9.69768],[78.79919,9.69627],[78.79722,9.68508],[78.79471,9.68415],[78.79398,9.67492],[78.79185,9.67238],[78.7954,9.67081],[78.79525,9.66616],[78.78909,9.66231],[78.78948,9.65905],[78.78547,9.65265],[78.79048,9.6492],[78.79075,9.64516],[78.79476,9.64346],[78.7948,9.6374],[78.78761,9.63686],[78.78778,9.63407],[78.79371,9.63214],[78.79467,9.62568],[78.8027,9.6211],[78.80753,9.6262],[78.81241,9.62386],[78.81866,9.62446],[78.81985,9.6203],[78.82237,9.6205],[78.82665,9.61794],[78.82682,9.61432],[78.82127,9.59975],[78.81104,9.60006],[78.80941,9.59827],[78.80566,9.59911],[78.80578,9.59724],[78.79942,9.59814],[78.78787,9.59446],[78.78222,9.59589],[78.78127,9.59081],[78.77386,9.58832],[78.76678,9.59037],[78.76324,9.59314],[78.75383,9.59332],[78.74674,9.5853],[78.74598,9.58886],[78.72728,9.58922],[78.71025,9.59305],[78.701,9.59354],[78.69753,9.59777],[78.68918,9.60111],[78.6886,9.60534],[78.68444,9.60559],[78.68121,9.60225],[78.67895,9.59385],[78.6816,9.59329],[78.68305,9.58862],[78.68446,9.5864],[78.68773,9.58531],[78.68798,9.58291],[78.69349,9.5803],[78.69378,9.57676],[78.6862,9.57034],[78.68379,9.56295],[78.6721,9.55367],[78.65783,9.54652],[78.65423,9.5432],[78.6562,9.53647],[78.66181,9.53612],[78.65863,9.5282],[78.65751,9.52014],[78.65557,9.52005],[78.64297,9.52693],[78.63379,9.52738],[78.62453,9.53436],[78.61683,9.53617],[78.61507,9.53756],[78.61592,9.54008],[78.61436,9.54288],[78.61702,9.54873],[78.61683,9.55809],[78.61137,9.55706],[78.59757,9.56091],[78.59393,9.56423],[78.59026,9.56508],[78.58999,9.57054],[78.58713,9.57234],[78.57579,9.57606],[78.57137,9.56672],[78.56686,9.57082],[78.55765,9.57475],[78.5491,9.57507],[78.54601,9.57673],[78.53071,9.57574],[78.5201,9.57889],[78.50677,9.59317],[78.49425,9.59978],[78.4984,9.60208],[78.50299,9.61093],[78.4963,9.61129],[78.48607,9.6093],[78.48051,9.61369],[78.47712,9.6132],[78.4723,9.62712],[78.46118,9.63645],[78.45844,9.62217],[78.45488,9.61606],[78.44864,9.61893],[78.44696,9.61468],[78.44016,9.61528],[78.43911,9.60925],[78.43269,9.60746],[78.42946,9.60883],[78.42557,9.60035],[78.41689,9.59936],[78.41635,9.59436],[78.41183,9.58786],[78.40257,9.59086],[78.39778,9.59519],[78.39766,9.58475],[78.39485,9.58445],[78.39387,9.58136],[78.38267,9.5798],[78.38172,9.57797],[78.37821,9.57777],[78.36843,9.57048],[78.37357,9.56957],[78.37528,9.56601],[78.37391,9.55875],[78.37651,9.55182],[78.37455,9.54537],[78.37238,9.54318],[78.37633,9.53976],[78.3841,9.53909],[78.38737,9.5361],[78.38226,9.51595],[78.37743,9.51583],[78.37486,9.50743],[78.36728,9.50706],[78.36529,9.51203],[78.35622,9.51014],[78.34732,9.5114],[78.34608,9.506],[78.34239,9.50303],[78.33954,9.49592],[78.32849,9.4952],[78.32701,9.48751],[78.33029,9.48525],[78.32702,9.48375],[78.33077,9.48079],[78.33007,9.47283],[78.33713,9.47262],[78.33861,9.46975],[78.3422,9.46957],[78.34363,9.47264],[78.34685,9.4713],[78.35186,9.4666],[78.35191,9.46098],[78.34714,9.46023],[78.34263,9.46768],[78.33936,9.46846],[78.33127,9.46897],[78.33038,9.46282],[78.32351,9.46442],[78.3194,9.46737],[78.31103,9.46794],[78.3087,9.46048],[78.29938,9.46146],[78.2985,9.4546],[78.30359,9.45322],[78.30539,9.44754],[78.30118,9.44216],[78.27191,9.4485],[78.25731,9.44609],[78.25014,9.44769],[78.24892,9.44626],[78.22824,9.445],[78.21862,9.4474],[78.21504,9.43346],[78.21936,9.43251],[78.22102,9.42991],[78.22015,9.4271],[78.22318,9.42033],[78.22252,9.41012],[78.2373,9.4098],[78.24319,9.40668],[78.24156,9.39858],[78.24182,9.39689],[78.24435,9.39611],[78.24493,9.39201],[78.24234,9.38734],[78.24396,9.38583],[78.24304,9.38106],[78.24756,9.38084],[78.25523,9.37364],[78.25998,9.37643],[78.2632,9.38663],[78.27406,9.38439],[78.27873,9.38503],[78.28021,9.38998],[78.28116,9.38882],[78.28397,9.38865],[78.28398,9.38993],[78.28893,9.38891],[78.29148,9.39102],[78.29622,9.38899],[78.29505,9.38168],[78.29615,9.3816],[78.29665,9.38661],[78.30419,9.38426],[78.30407,9.37687],[78.30813,9.37637],[78.30815,9.37482],[78.30654,9.36946],[78.30093,9.36881],[78.30116,9.36715],[78.30825,9.36502],[78.30577,9.35033],[78.31048,9.34515],[78.30508,9.34236],[78.29538,9.34262],[78.29387,9.33197],[78.29782,9.32597],[78.3048,9.32351],[78.30547,9.32771],[78.30862,9.32791],[78.3114,9.33503],[78.3222,9.33428],[78.32436,9.33239],[78.32915,9.33891],[78.32944,9.34586],[78.33262,9.34582],[78.3331,9.35406],[78.35001,9.35254],[78.35026,9.35399],[78.35297,9.35269],[78.35344,9.3572],[78.35609,9.35789],[78.35995,9.35065],[78.36266,9.34919],[78.36232,9.34262],[78.36342,9.33963],[78.36488,9.33947],[78.36265,9.32997],[78.36068,9.33035],[78.36113,9.32554],[78.35881,9.3205],[78.35684,9.32101],[78.35677,9.31905],[78.35504,9.31918],[78.35333,9.30864],[78.34613,9.30941],[78.34676,9.29787],[78.34099,9.2928],[78.33995,9.28785],[78.33825,9.2872],[78.3359,9.28204],[78.33431,9.28232],[78.33252,9.27947],[78.3297,9.27847],[78.32862,9.27529],[78.3225,9.27738],[78.32294,9.27838],[78.31845,9.2797],[78.31643,9.28217],[78.31394,9.28147],[78.312,9.28309],[78.31208,9.28176],[78.30581,9.28382],[78.30473,9.28123],[78.28972,9.28276],[78.28847,9.28464],[78.28669,9.28466],[78.2867,9.28327],[78.28097,9.28419],[78.27224,9.25627],[78.26935,9.2021],[78.28839,9.20576],[78.29612,9.20508],[78.29082,9.17758],[78.28421,9.16238],[78.28207,9.16245],[78.27669,9.14873],[78.27497,9.14867],[78.27395,9.14149],[78.29563,9.13415],[78.31525,9.13307],[78.32135,9.13098],[78.32073,9.12862],[78.34185,9.12347],[78.3432,9.12081],[78.35033,9.11755],[78.35638,9.11806],[78.35618,9.11538],[78.35815,9.11449],[78.35607,9.10981],[78.3568,9.09861],[78.3654,9.10315],[78.3702,9.09912],[78.37651,9.10027],[78.38353,9.09811],[78.38489,9.09472],[78.40326,9.10807],[78.41529,9.1146],[78.46754,9.12799],[78.48149,9.12795],[78.5039,9.13411],[78.53686,9.1385],[78.56107,9.13651],[78.57825,9.131],[78.58793,9.13935],[78.60539,9.14801],[78.62487,9.15362],[78.65765,9.15812],[78.6507,9.15979],[78.64231,9.16976],[78.64358,9.1792],[78.64934,9.18762],[78.64931,9.18523],[78.6638,9.19362],[78.67887,9.19601],[78.71726,9.18954],[78.71903,9.1921],[78.71602,9.19758],[78.71653,9.20003],[78.72196,9.20562],[78.7326,9.21189],[78.75446,9.2155],[78.76427,9.22138],[78.79434,9.22996],[78.80559,9.23666],[78.82266,9.23936],[78.84982,9.25154],[78.85611,9.25174],[78.8611,9.2554],[78.86774,9.25398],[78.87488,9.25726],[78.8957,9.25154],[78.91615,9.25878],[78.92202,9.26577],[78.92652,9.26771],[78.94899,9.27249],[78.97935,9.27487],[79.01457,9.27072],[79.05215,9.26344],[79.05759,9.26365],[79.06289,9.26154],[79.0892,9.26153],[79.11087,9.2662],[79.12708,9.27194],[79.14031,9.27315],[79.14622,9.27707],[79.15465,9.27609],[79.15275,9.27791],[79.18866,9.28248],[79.2092,9.2824],[79.20499,9.27768],[79.20503,9.27348],[79.20655,9.27307],[79.20578,9.27514],[79.20725,9.27497],[79.21847,9.27076],[79.22152,9.26592],[79.22167,9.25871],[79.21991,9.25731],[79.22962,9.25975],[79.25736,9.25918],[79.2911,9.25018],[79.31087,9.24148],[79.33888,9.2262],[79.41819,9.17603],[79.43364,9.16259],[79.4355,9.15779],[79.43584,9.16417],[79.43093,9.1682],[79.42559,9.1762],[79.41525,9.18512],[79.41644,9.1871],[79.41471,9.18594],[79.38871,9.20839],[79.3736,9.2182],[79.35869,9.23284],[79.33464,9.25208],[79.324,9.26358],[79.31472,9.28119],[79.31599,9.28551],[79.31927,9.28672],[79.32712,9.29534],[79.32714,9.29957],[79.33174,9.3034],[79.33505,9.30933],[79.33279,9.31636],[79.32724,9.32127],[79.31427,9.32734],[79.30992,9.32765],[79.30051,9.32238],[79.29072,9.31987],[79.28151,9.31275],[79.27296,9.30237],[79.27125,9.29628],[79.26593,9.29274],[79.22111,9.29134],[79.21458,9.28467],[79.21119,9.28327],[79.18413,9.28281],[79.17262,9.28473],[79.16078,9.28433],[79.1398,9.29188],[79.13588,9.29095],[79.13223,9.28788],[79.12197,9.29131],[79.10537,9.29099],[79.08616,9.2953],[79.07112,9.29504],[79.03679,9.31518],[79.01433,9.33136],[78.98047,9.36124],[78.93634,9.40828],[78.92363,9.42565],[78.91177,9.44576],[78.9003,9.46879],[78.89799,9.48053],[78.89834,9.4899],[78.90421,9.49681],[78.9098,9.49851],[78.91279,9.49576],[78.91523,9.49903],[78.91322,9.50551],[78.9202,9.52717],[78.91775,9.53769],[78.92014,9.55923],[78.92163,9.56055],[78.92169,9.5663],[78.92541,9.57921],[78.92515,9.585],[78.93419,9.60319],[78.93364,9.60618],[78.94495,9.61866],[78.95429,9.62434],[78.95748,9.63043],[78.95981,9.63093],[78.95819,9.63702],[78.95927,9.64172],[78.96398,9.64056],[78.96606,9.64746],[78.971,9.6557],[78.97434,9.6761],[78.98036,9.68956],[78.98948,9.69922],[78.99027,9.70365],[79.00019,9.71486],[78.99855,9.71655],[78.99912,9.71842],[79.00041,9.71439],[79.00404,9.71812],[79.00323,9.72533],[79.00475,9.7187],[79.00791,9.72476],[79.015,9.73149],[79.01549,9.74032],[79.01315,9.74484],[79.01597,9.74039],[79.01591,9.73232],[79.02071,9.74141],[79.02621,9.74767],[79.02496,9.75139],[79.02238,9.75282],[79.02535,9.75179],[79.02689,9.74827],[79.03182,9.7548],[79.02987,9.76146],[79.03231,9.7553],[79.04123,9.76625],[79.05862,9.77245],[79.0612,9.7809],[79.07066,9.79427],[79.07696,9.79971],[79.07582,9.81221],[79.0767,9.81358],[79.07736,9.80004],[79.07848,9.79998],[79.08267,9.81555],[79.0939,9.82936],[79.08496,9.83465],[79.08966,9.83408],[79.09425,9.83004],[79.09871,9.83384],[79.09497,9.83822],[79.09922,9.83425],[79.10482,9.83794],[79.09882,9.84332],[79.10026,9.84425],[79.10531,9.83891],[79.10868,9.84226],[79.10913,9.84819],[79.10299,9.8552],[79.08848,9.85716],[79.08229,9.8531],[79.07377,9.85304],[79.06947,9.84999],[79.06495,9.85225],[79.05989,9.85848],[79.04858,9.85789],[79.04515,9.85921],[79.04151,9.86339],[79.04131,9.87181],[79.03722,9.87697],[79.03527,9.88565],[79.03113,9.89321],[79.02623,9.89644],[79.02244,9.90267],[79.01614,9.90265],[79.01093,9.91226],[79.00605,9.91426],[79.00629,9.91867],[78.99882,9.92781],[78.99755,9.93664],[78.99476,9.94038]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"584","area_level":"District","area_name":"Salem","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.23487,11.97926],[78.22704,11.97891],[78.22315,11.97781],[78.2219,11.9759],[78.21526,11.97681],[78.21145,11.97434],[78.20702,11.97593],[78.19066,11.97362],[78.18285,11.97043],[78.17906,11.97284],[78.16848,11.96742],[78.16142,11.9671],[78.1582,11.96847],[78.15634,11.96652],[78.14948,11.96835],[78.14706,11.96653],[78.14486,11.96825],[78.13707,11.96563],[78.13519,11.96323],[78.12904,11.9645],[78.12207,11.95931],[78.11805,11.96036],[78.10719,11.95581],[78.10303,11.95476],[78.1006,11.95576],[78.0991,11.95359],[78.09571,11.95326],[78.095,11.94911],[78.09053,11.95007],[78.09023,11.94754],[78.08057,11.94435],[78.07927,11.94013],[78.0769,11.94137],[78.07372,11.9376],[78.05239,11.93849],[78.0409,11.93533],[78.03904,11.93634],[78.037,11.93396],[78.0343,11.93454],[78.03429,11.93225],[78.02991,11.92893],[78.02958,11.92505],[78.02686,11.92045],[78.02261,11.9194],[78.01986,11.92094],[78.01634,11.91968],[78.0113,11.92131],[78.00636,11.91443],[78.00098,11.91418],[77.99834,11.91162],[77.99843,11.90975],[77.99604,11.91021],[77.99486,11.90826],[77.98704,11.906],[77.98421,11.90245],[77.97997,11.90296],[77.97883,11.89724],[77.97035,11.89556],[77.961,11.90092],[77.95067,11.89921],[77.94851,11.89494],[77.94476,11.89777],[77.94162,11.89588],[77.93763,11.89959],[77.93293,11.90134],[77.93044,11.89919],[77.92088,11.90088],[77.91715,11.89829],[77.91095,11.90109],[77.90508,11.90029],[77.89888,11.90291],[77.89546,11.90732],[77.89203,11.90887],[77.88694,11.90791],[77.88322,11.9122],[77.87308,11.91113],[77.86709,11.91574],[77.86121,11.91285],[77.85877,11.90843],[77.85005,11.9049],[77.85138,11.89908],[77.84774,11.8943],[77.84527,11.89648],[77.8398,11.89749],[77.83464,11.90156],[77.80742,11.90908],[77.8019,11.9082],[77.77363,11.91156],[77.76267,11.90991],[77.75787,11.91871],[77.75144,11.92357],[77.75063,11.92808],[77.74548,11.92732],[77.74068,11.93132],[77.73901,11.9392],[77.73675,11.94055],[77.70881,11.9414],[77.70117,11.94357],[77.69133,11.94184],[77.67714,11.95187],[77.6726,11.95155],[77.66907,11.94907],[77.65738,11.94983],[77.65619,11.95346],[77.65353,11.95467],[77.64997,11.9543],[77.64722,11.95049],[77.64232,11.95002],[77.63944,11.94805],[77.62886,11.94637],[77.624,11.94731],[77.61253,11.94241],[77.60695,11.94202],[77.60345,11.93766],[77.59358,11.94022],[77.58839,11.93934],[77.58596,11.93687],[77.57531,11.93648],[77.56107,11.94192],[77.54252,11.93816],[77.53798,11.93239],[77.52824,11.93378],[77.51834,11.93822],[77.51231,11.93781],[77.50492,11.94113],[77.50041,11.93998],[77.4948,11.94385],[77.49287,11.94126],[77.49189,11.92119],[77.48861,11.91234],[77.49089,11.91068],[77.49059,11.90849],[77.48307,11.89957],[77.4862,11.88741],[77.48409,11.88801],[77.48064,11.89341],[77.47722,11.89046],[77.47416,11.89439],[77.47478,11.898],[77.47352,11.89918],[77.46163,11.89998],[77.46398,11.89403],[77.46223,11.88796],[77.46314,11.88437],[77.46048,11.8812],[77.46586,11.8742],[77.46284,11.8648],[77.45994,11.86345],[77.46305,11.85885],[77.46141,11.85369],[77.46624,11.85002],[77.4664,11.84631],[77.46334,11.8416],[77.46036,11.83184],[77.45662,11.82803],[77.45226,11.81394],[77.45285,11.80803],[77.4498,11.80056],[77.4498,11.79601],[77.44662,11.79031],[77.4405,11.78883],[77.4396,11.78561],[77.44167,11.78269],[77.43381,11.77814],[77.42805,11.76701],[77.42894,11.76263],[77.42542,11.7591],[77.4266,11.75325],[77.42066,11.74888],[77.41539,11.74014],[77.41882,11.73375],[77.41943,11.72883],[77.42323,11.728],[77.42678,11.73312],[77.43505,11.7315],[77.43369,11.72511],[77.43521,11.72305],[77.43438,11.71526],[77.4385,11.71426],[77.43945,11.71864],[77.44318,11.71659],[77.4431,11.71309],[77.43905,11.71051],[77.4416,11.70694],[77.43712,11.70677],[77.43562,11.70277],[77.44198,11.68161],[77.4397,11.67374],[77.45403,11.66608],[77.45085,11.65735],[77.43876,11.64761],[77.43762,11.64505],[77.43984,11.63995],[77.43849,11.63586],[77.44062,11.63354],[77.44502,11.61839],[77.45862,11.60664],[77.44971,11.59543],[77.45184,11.58061],[77.45063,11.57249],[77.44471,11.56137],[77.48559,11.54982],[77.49623,11.55177],[77.49722,11.55608],[77.49329,11.55878],[77.50397,11.56451],[77.51631,11.57934],[77.51424,11.58184],[77.51225,11.59135],[77.51415,11.59164],[77.52023,11.58699],[77.52874,11.5863],[77.53549,11.60176],[77.53728,11.61923],[77.54392,11.62617],[77.5601,11.64987],[77.55944,11.65111],[77.5643,11.66087],[77.56743,11.65702],[77.57673,11.65247],[77.57179,11.66498],[77.58181,11.67595],[77.57839,11.68529],[77.58902,11.68499],[77.58869,11.67946],[77.59225,11.67946],[77.59264,11.6735],[77.59847,11.67184],[77.60632,11.6593],[77.60626,11.65422],[77.61066,11.65225],[77.61912,11.65689],[77.62275,11.66487],[77.61612,11.67155],[77.61839,11.67618],[77.62534,11.67296],[77.62501,11.66368],[77.63434,11.66396],[77.63631,11.67028],[77.63393,11.67131],[77.63481,11.67473],[77.63743,11.67479],[77.65008,11.70259],[77.64855,11.70336],[77.64919,11.70479],[77.65084,11.7043],[77.65694,11.71235],[77.65866,11.71779],[77.66329,11.72069],[77.6708,11.7207],[77.67547,11.72529],[77.67169,11.72864],[77.67271,11.73284],[77.67542,11.73184],[77.68626,11.74248],[77.70572,11.7762],[77.70983,11.7976],[77.71446,11.79714],[77.72218,11.79508],[77.72154,11.79142],[77.71524,11.77556],[77.71194,11.77362],[77.70791,11.7661],[77.70666,11.75549],[77.6973,11.73569],[77.69843,11.72914],[77.69644,11.72261],[77.69096,11.71851],[77.69356,11.71322],[77.69291,11.70888],[77.69513,11.70678],[77.69439,11.70363],[77.69177,11.70311],[77.68989,11.69475],[77.69427,11.69415],[77.69631,11.6959],[77.69822,11.69347],[77.69469,11.67437],[77.68963,11.66369],[77.68945,11.65243],[77.69549,11.63965],[77.7001,11.63711],[77.70003,11.63497],[77.70547,11.63443],[77.7163,11.64219],[77.71817,11.64616],[77.71496,11.64929],[77.72181,11.65244],[77.72422,11.64975],[77.72816,11.65465],[77.73421,11.65787],[77.74078,11.65454],[77.74562,11.65461],[77.74797,11.65827],[77.74891,11.66419],[77.77055,11.69706],[77.77652,11.6957],[77.7725,11.68472],[77.76763,11.67719],[77.76737,11.66905],[77.76202,11.65693],[77.76126,11.64822],[77.75102,11.63379],[77.74922,11.62296],[77.74373,11.61608],[77.7359,11.60132],[77.73653,11.59396],[77.7462,11.57065],[77.74476,11.56574],[77.73184,11.55183],[77.72406,11.53666],[77.72444,11.53183],[77.73262,11.51713],[77.73244,11.51166],[77.72931,11.50803],[77.72098,11.50342],[77.71866,11.49834],[77.70252,11.48251],[77.6976,11.47327],[77.69659,11.46443],[77.70625,11.46095],[77.70917,11.46557],[77.71195,11.46381],[77.70845,11.4574],[77.70958,11.45402],[77.70868,11.44917],[77.7126,11.44907],[77.71485,11.45169],[77.72082,11.45313],[77.732,11.44469],[77.7438,11.44622],[77.75395,11.45175],[77.76104,11.45099],[77.76532,11.46885],[77.76551,11.47771],[77.76766,11.48116],[77.77405,11.48253],[77.77874,11.47874],[77.78489,11.47784],[77.78857,11.46778],[77.79146,11.46559],[77.79136,11.4641],[77.78697,11.46237],[77.78429,11.45081],[77.79618,11.44727],[77.79785,11.45189],[77.79908,11.45179],[77.80408,11.44844],[77.80578,11.45907],[77.81458,11.45834],[77.81582,11.4674],[77.81171,11.46644],[77.80822,11.46878],[77.81216,11.46829],[77.81424,11.47031],[77.81629,11.47],[77.81784,11.46928],[77.81719,11.46723],[77.8201,11.46796],[77.82286,11.47126],[77.82977,11.46987],[77.83119,11.46895],[77.82998,11.46398],[77.83425,11.46252],[77.83445,11.45703],[77.82114,11.44897],[77.82002,11.44613],[77.83275,11.43917],[77.83914,11.44125],[77.84706,11.43626],[77.84706,11.4344],[77.8499,11.43464],[77.84892,11.43158],[77.84664,11.43025],[77.84827,11.4229],[77.8472,11.42121],[77.84831,11.42074],[77.84988,11.42315],[77.85204,11.42233],[77.85068,11.41787],[77.85248,11.41511],[77.85746,11.41599],[77.86458,11.42368],[77.86593,11.4223],[77.86583,11.41911],[77.86392,11.4183],[77.86501,11.4171],[77.87006,11.41551],[77.87421,11.41619],[77.87479,11.41363],[77.87667,11.41358],[77.88015,11.42348],[77.88999,11.42447],[77.88997,11.41976],[77.89585,11.42148],[77.89927,11.41973],[77.903,11.42498],[77.90537,11.42403],[77.90776,11.4257],[77.90809,11.42285],[77.91094,11.42223],[77.90851,11.428],[77.91214,11.43527],[77.91002,11.44212],[77.91333,11.44445],[77.91358,11.45101],[77.9113,11.45166],[77.91539,11.45483],[77.91444,11.45785],[77.9157,11.45868],[77.91881,11.45215],[77.92172,11.45305],[77.92413,11.45151],[77.9253,11.4586],[77.92326,11.46097],[77.92557,11.46189],[77.92834,11.45811],[77.93104,11.4598],[77.94114,11.4598],[77.9437,11.4625],[77.94365,11.46466],[77.9468,11.46673],[77.94854,11.47399],[77.9548,11.46911],[77.96717,11.46995],[77.97194,11.46825],[77.97424,11.47532],[77.97261,11.48474],[77.9734,11.491],[77.97699,11.50136],[77.97214,11.50856],[77.97386,11.51348],[77.97181,11.51552],[77.97455,11.51794],[77.97774,11.53062],[77.99409,11.5261],[78.00171,11.52524],[78.00174,11.52722],[78.0041,11.52497],[78.00758,11.52489],[78.00786,11.52702],[78.01224,11.52654],[78.01308,11.52874],[78.01567,11.52858],[78.01661,11.53028],[78.02489,11.52682],[78.02675,11.53001],[78.03466,11.52863],[78.0339,11.52546],[78.03563,11.52219],[78.04632,11.51979],[78.04366,11.51508],[78.054,11.51339],[78.05509,11.52221],[78.05879,11.5216],[78.05875,11.51567],[78.06297,11.52302],[78.06765,11.52276],[78.07088,11.52797],[78.07026,11.52272],[78.07525,11.52238],[78.07599,11.52394],[78.0789,11.52397],[78.07864,11.52887],[78.07563,11.53009],[78.07507,11.53223],[78.07756,11.53695],[78.07668,11.54145],[78.07895,11.5468],[78.0823,11.54987],[78.08313,11.55405],[78.08669,11.55288],[78.0868,11.54591],[78.09034,11.54542],[78.09689,11.54774],[78.09891,11.55196],[78.09776,11.55369],[78.10514,11.55748],[78.11013,11.5559],[78.10996,11.55001],[78.11662,11.54503],[78.11917,11.5391],[78.12355,11.53946],[78.12593,11.54191],[78.13221,11.53813],[78.13294,11.5416],[78.13875,11.54403],[78.14108,11.54055],[78.1483,11.53905],[78.14827,11.53748],[78.16059,11.53881],[78.16122,11.54309],[78.16386,11.54292],[78.16492,11.5473],[78.16681,11.54871],[78.17685,11.54595],[78.17676,11.54839],[78.18328,11.55076],[78.20147,11.55309],[78.20375,11.56319],[78.20736,11.5645],[78.2396,11.55747],[78.2436,11.55271],[78.25948,11.5588],[78.26623,11.55984],[78.2771,11.5658],[78.26433,11.567],[78.26514,11.57178],[78.27193,11.57867],[78.28354,11.58054],[78.30325,11.58876],[78.31187,11.58768],[78.31926,11.57849],[78.31778,11.57334],[78.31032,11.57492],[78.30737,11.57097],[78.30836,11.56796],[78.30727,11.56461],[78.31744,11.56355],[78.32948,11.55849],[78.324,11.55443],[78.32325,11.54261],[78.3105,11.5429],[78.31007,11.54119],[78.32045,11.53679],[78.32634,11.53644],[78.32827,11.53496],[78.32848,11.53128],[78.33835,11.53914],[78.34274,11.53871],[78.34522,11.54161],[78.34351,11.54651],[78.34923,11.54911],[78.34916,11.55251],[78.35649,11.55888],[78.36135,11.57116],[78.3657,11.57794],[78.37114,11.57896],[78.37449,11.58854],[78.373,11.58295],[78.3747,11.58208],[78.37583,11.57734],[78.38287,11.5752],[78.38585,11.58647],[78.39173,11.58536],[78.41814,11.58991],[78.43119,11.59395],[78.4343,11.59691],[78.44036,11.59805],[78.45162,11.59706],[78.44881,11.56548],[78.45363,11.56627],[78.46063,11.56135],[78.45433,11.54235],[78.45724,11.53995],[78.46654,11.53753],[78.46702,11.53628],[78.45983,11.53435],[78.46163,11.52924],[78.47025,11.52928],[78.47275,11.52509],[78.47341,11.52005],[78.46505,11.50549],[78.46527,11.49704],[78.46181,11.49491],[78.46007,11.49633],[78.46067,11.4991],[78.45773,11.50237],[78.45254,11.49809],[78.45036,11.49905],[78.44576,11.4969],[78.44631,11.49874],[78.44232,11.49871],[78.43994,11.49508],[78.43665,11.49514],[78.43688,11.49812],[78.43421,11.49895],[78.43292,11.49539],[78.43231,11.49298],[78.43502,11.49194],[78.43603,11.48586],[78.43324,11.48249],[78.43281,11.47624],[78.42698,11.4742],[78.42591,11.47091],[78.43174,11.46674],[78.43319,11.46284],[78.4377,11.46478],[78.43785,11.46152],[78.44362,11.4511],[78.4454,11.43966],[78.458,11.43882],[78.45258,11.43194],[78.44855,11.43095],[78.44307,11.40873],[78.44488,11.40312],[78.44155,11.39906],[78.43519,11.39648],[78.42702,11.38494],[78.43785,11.38993],[78.43912,11.3949],[78.44692,11.39816],[78.44739,11.40016],[78.45429,11.40227],[78.45444,11.40097],[78.45664,11.40126],[78.45897,11.4037],[78.46706,11.40538],[78.47122,11.40804],[78.47406,11.40428],[78.48066,11.40705],[78.48296,11.4136],[78.48981,11.41414],[78.48622,11.40742],[78.49628,11.40889],[78.5098,11.39679],[78.50622,11.38329],[78.5034,11.38232],[78.50347,11.3805],[78.51531,11.38448],[78.52008,11.37639],[78.52341,11.37394],[78.52348,11.37067],[78.53526,11.36789],[78.54242,11.36946],[78.55344,11.35865],[78.55495,11.35163],[78.55243,11.34905],[78.5521,11.34605],[78.55478,11.33853],[78.55562,11.32828],[78.5522,11.32519],[78.55292,11.32005],[78.56126,11.31636],[78.57529,11.31574],[78.57963,11.31886],[78.5793,11.32453],[78.58365,11.32979],[78.58945,11.32623],[78.59313,11.32687],[78.60452,11.33877],[78.62187,11.33646],[78.64207,11.34276],[78.64314,11.34828],[78.64986,11.35433],[78.65564,11.36617],[78.66319,11.37379],[78.65882,11.37964],[78.65838,11.39399],[78.65669,11.40063],[78.65078,11.40748],[78.65133,11.42242],[78.67575,11.42818],[78.68835,11.4355],[78.68855,11.44315],[78.69815,11.45168],[78.69967,11.45574],[78.70824,11.457],[78.74135,11.44965],[78.74323,11.44329],[78.75604,11.43712],[78.76031,11.42829],[78.76238,11.42855],[78.7653,11.42172],[78.77255,11.41536],[78.77129,11.41252],[78.77324,11.40829],[78.78102,11.40272],[78.7814,11.39854],[78.78918,11.3865],[78.79289,11.38991],[78.79884,11.38423],[78.80143,11.40221],[78.80602,11.40154],[78.80611,11.40519],[78.80778,11.40473],[78.80979,11.40657],[78.8121,11.411],[78.81275,11.41663],[78.82279,11.42708],[78.81889,11.43215],[78.81934,11.43956],[78.79828,11.44856],[78.79736,11.45156],[78.79429,11.45315],[78.78952,11.45377],[78.79045,11.4572],[78.79269,11.46024],[78.79623,11.46094],[78.79844,11.48188],[78.80974,11.48194],[78.81014,11.48709],[78.80869,11.49041],[78.81073,11.49853],[78.81198,11.49875],[78.81143,11.50418],[78.80955,11.50496],[78.81027,11.50792],[78.82209,11.50963],[78.82894,11.50901],[78.83036,11.50721],[78.83386,11.50663],[78.83522,11.51465],[78.84305,11.52302],[78.83447,11.53117],[78.83472,11.54],[78.82921,11.54388],[78.81798,11.54191],[78.81466,11.54472],[78.81617,11.56171],[78.81824,11.56233],[78.82306,11.57026],[78.82596,11.571],[78.82933,11.57815],[78.82426,11.57919],[78.82166,11.58578],[78.81731,11.58591],[78.81763,11.59087],[78.80171,11.59582],[78.79562,11.59586],[78.79434,11.59949],[78.7862,11.59975],[78.78312,11.6041],[78.77878,11.60405],[78.77534,11.60597],[78.77674,11.61336],[78.78202,11.61459],[78.78643,11.61349],[78.78917,11.61911],[78.78984,11.62888],[78.78757,11.6305],[78.78797,11.63339],[78.78634,11.63342],[78.78625,11.6413],[78.78108,11.6371],[78.77358,11.63661],[78.78395,11.6466],[78.79088,11.64954],[78.79386,11.65208],[78.79329,11.65323],[78.79752,11.65539],[78.79704,11.65863],[78.80377,11.65935],[78.80649,11.66134],[78.8045,11.66618],[78.80422,11.67628],[78.80532,11.67687],[78.80409,11.68592],[78.80608,11.68646],[78.80119,11.69023],[78.79135,11.69341],[78.78065,11.70334],[78.76508,11.69707],[78.7605,11.69741],[78.75381,11.69397],[78.73776,11.69296],[78.72496,11.68902],[78.71795,11.6832],[78.71252,11.68576],[78.70959,11.69016],[78.70497,11.68919],[78.70043,11.69162],[78.69519,11.69003],[78.68242,11.68211],[78.67787,11.67184],[78.67813,11.66763],[78.68242,11.66876],[78.68296,11.66719],[78.6785,11.66499],[78.68021,11.64455],[78.67863,11.64332],[78.65907,11.64794],[78.66002,11.66163],[78.65002,11.66253],[78.64587,11.66044],[78.65016,11.67215],[78.65267,11.71527],[78.63791,11.72124],[78.63907,11.741],[78.64337,11.75607],[78.64202,11.76085],[78.64317,11.76834],[78.66225,11.77987],[78.66344,11.78281],[78.66222,11.79089],[78.66529,11.79665],[78.67916,11.80201],[78.68518,11.80103],[78.69225,11.80388],[78.69011,11.81624],[78.69364,11.83001],[78.6952,11.85123],[78.67761,11.85833],[78.65858,11.8568],[78.65845,11.86126],[78.65529,11.8652],[78.64979,11.86636],[78.63555,11.86499],[78.62772,11.86699],[78.62682,11.86922],[78.61961,11.86337],[78.61823,11.85971],[78.60846,11.85052],[78.60162,11.83656],[78.6031,11.83298],[78.59584,11.82276],[78.5743,11.81942],[78.55534,11.80979],[78.54677,11.80695],[78.5394,11.8066],[78.53503,11.80718],[78.52189,11.81533],[78.51773,11.81222],[78.51196,11.8115],[78.509,11.81382],[78.49882,11.81396],[78.49083,11.81771],[78.47791,11.81764],[78.46882,11.82374],[78.45964,11.82714],[78.45538,11.82635],[78.44909,11.83013],[78.45013,11.83168],[78.44067,11.83965],[78.43858,11.84833],[78.43508,11.85467],[78.43307,11.86223],[78.44148,11.86835],[78.43529,11.87387],[78.42777,11.87424],[78.41979,11.87998],[78.41438,11.88014],[78.40315,11.87355],[78.40328,11.86876],[78.40041,11.86327],[78.3949,11.85974],[78.39316,11.85246],[78.38735,11.84632],[78.3863,11.83935],[78.38249,11.83353],[78.383,11.82947],[78.38057,11.82572],[78.37068,11.81642],[78.35124,11.79285],[78.34821,11.79433],[78.34502,11.79349],[78.32828,11.77598],[78.31287,11.78269],[78.32716,11.79548],[78.33643,11.80958],[78.33904,11.81651],[78.34559,11.8242],[78.35078,11.83392],[78.35071,11.83758],[78.34707,11.84044],[78.35142,11.84276],[78.35153,11.84545],[78.34801,11.84849],[78.35139,11.84866],[78.35379,11.86074],[78.3603,11.86742],[78.36756,11.88057],[78.36809,11.88745],[78.36575,11.89184],[78.35468,11.89167],[78.35313,11.89416],[78.35849,11.90169],[78.36003,11.90895],[78.35894,11.9117],[78.35705,11.91359],[78.35426,11.91229],[78.34001,11.89722],[78.33627,11.90048],[78.32806,11.89407],[78.31935,11.89056],[78.30915,11.88119],[78.30773,11.88301],[78.3163,11.89208],[78.32123,11.89409],[78.32639,11.89958],[78.3227,11.90521],[78.32662,11.91462],[78.33125,11.91895],[78.3315,11.92224],[78.32854,11.92731],[78.32439,11.93009],[78.32117,11.92961],[78.31954,11.93238],[78.31713,11.93172],[78.3099,11.92414],[78.30231,11.92275],[78.29912,11.91763],[78.29158,11.91454],[78.29084,11.91243],[78.29265,11.90677],[78.28428,11.90358],[78.28007,11.89957],[78.27406,11.90008],[78.27289,11.89877],[78.26902,11.90025],[78.27999,11.91494],[78.28022,11.92359],[78.28781,11.92464],[78.29156,11.92748],[78.29366,11.92972],[78.29076,11.9321],[78.28454,11.92916],[78.28058,11.93242],[78.27503,11.93144],[78.26427,11.91825],[78.2619,11.91197],[78.25795,11.91236],[78.25874,11.91905],[78.26299,11.92527],[78.26264,11.92744],[78.26654,11.92966],[78.27276,11.93792],[78.27208,11.93911],[78.257,11.94022],[78.25485,11.93732],[78.25684,11.93574],[78.25589,11.93318],[78.2548,11.93219],[78.25264,11.93377],[78.24839,11.92814],[78.24197,11.92666],[78.23579,11.91796],[78.23439,11.91895],[78.23797,11.92125],[78.23703,11.92195],[78.24245,11.92776],[78.24309,11.93054],[78.25008,11.93817],[78.25328,11.95106],[78.24791,11.95656],[78.24835,11.95972],[78.24511,11.96383],[78.24503,11.96819],[78.23798,11.97254],[78.23487,11.97926]],[[77.53034,11.84794],[77.53213,11.84848],[77.53909,11.84538],[77.54474,11.83713],[77.54488,11.83253],[77.54247,11.83091],[77.54247,11.82472],[77.54743,11.81964],[77.54616,11.81472],[77.54811,11.81414],[77.54954,11.8084],[77.54703,11.80444],[77.54189,11.80153],[77.57348,11.80116],[77.57192,11.7855],[77.59338,11.78565],[77.60604,11.79155],[77.61708,11.78567],[77.61707,11.77676],[77.62091,11.77567],[77.62512,11.76673],[77.63542,11.75388],[77.63381,11.74216],[77.63598,11.74148],[77.63386,11.73991],[77.63155,11.72923],[77.62702,11.72698],[77.62077,11.73724],[77.61339,11.76626],[77.59616,11.77153],[77.59294,11.77053],[77.59068,11.77334],[77.58518,11.758],[77.59441,11.75283],[77.59602,11.74978],[77.59228,11.74296],[77.58707,11.73833],[77.57791,11.72523],[77.58323,11.72236],[77.5716,11.71144],[77.56663,11.71858],[77.56781,11.72546],[77.56328,11.73114],[77.56013,11.76231],[77.55706,11.7665],[77.53993,11.75237],[77.54745,11.74845],[77.54768,11.74441],[77.54442,11.74423],[77.54276,11.74141],[77.53882,11.73928],[77.5285,11.74756],[77.52843,11.75134],[77.50979,11.75326],[77.49647,11.7406],[77.48347,11.72059],[77.47641,11.71385],[77.47198,11.7181],[77.46945,11.70706],[77.47167,11.694],[77.45735,11.678],[77.4534,11.6937],[77.44997,11.69693],[77.46464,11.74219],[77.46689,11.74361],[77.48043,11.73918],[77.49515,11.75032],[77.49959,11.75074],[77.50835,11.76219],[77.52702,11.77443],[77.53075,11.7784],[77.53304,11.79132],[77.53259,11.7949],[77.52985,11.79519],[77.52723,11.79994],[77.5266,11.81126],[77.53203,11.81475],[77.53528,11.82574],[77.53384,11.83718],[77.52827,11.83973],[77.52502,11.84461],[77.53034,11.84794]],[[77.55524,11.8218],[77.55753,11.81983],[77.55209,11.8162],[77.5486,11.81954],[77.55524,11.8218]],[[77.55233,11.66381],[77.5553,11.66943],[77.56031,11.66624],[77.5564,11.66102],[77.55233,11.66381]],[[77.54069,11.63976],[77.54384,11.6444],[77.54898,11.641],[77.54583,11.63636],[77.54069,11.63976]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"585","area_level":"District","area_name":"Sivaganga","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.47289,10.40108],[78.46197,10.40816],[78.44993,10.40988],[78.44631,10.40811],[78.44022,10.4006],[78.4386,10.38367],[78.43984,10.38048],[78.44806,10.37858],[78.44894,10.37491],[78.44566,10.37123],[78.44283,10.37043],[78.44345,10.36855],[78.43663,10.36273],[78.4148,10.36314],[78.41022,10.36178],[78.40869,10.35784],[78.40265,10.3574],[78.39975,10.35437],[78.39216,10.3543],[78.39187,10.35083],[78.39383,10.34909],[78.40455,10.34546],[78.40426,10.3436],[78.4031,10.34012],[78.4012,10.34031],[78.40098,10.33586],[78.39652,10.32391],[78.39387,10.32422],[78.39203,10.31782],[78.3886,10.3149],[78.3843,10.31478],[78.38093,10.31047],[78.37867,10.31008],[78.38007,10.30583],[78.39064,10.30224],[78.39093,10.29631],[78.38634,10.29365],[78.38787,10.29161],[78.38574,10.2893],[78.3813,10.29386],[78.3843,10.28974],[78.38376,10.28315],[78.3856,10.27706],[78.38406,10.27394],[78.38644,10.27402],[78.3867,10.27034],[78.39123,10.27318],[78.39996,10.27294],[78.40281,10.27529],[78.40623,10.27567],[78.40955,10.27198],[78.41756,10.27489],[78.42056,10.27116],[78.42422,10.27068],[78.42508,10.25857],[78.4106,10.25711],[78.40572,10.25031],[78.3951,10.24832],[78.39241,10.24163],[78.39766,10.22615],[78.39961,10.22479],[78.40075,10.22719],[78.40499,10.22497],[78.4049,10.22371],[78.40785,10.22323],[78.40724,10.22012],[78.40941,10.21783],[78.40798,10.21628],[78.41254,10.21309],[78.40596,10.20253],[78.4038,10.19156],[78.39794,10.18298],[78.39462,10.17406],[78.39518,10.17019],[78.39831,10.16874],[78.39877,10.16568],[78.41303,10.16066],[78.40169,10.13857],[78.41567,10.13553],[78.41703,10.13187],[78.4206,10.1338],[78.42534,10.13332],[78.42412,10.12519],[78.42589,10.12203],[78.43148,10.1286],[78.43033,10.13361],[78.43268,10.1351],[78.43478,10.13138],[78.4413,10.13103],[78.45157,10.11897],[78.45812,10.1245],[78.46233,10.12414],[78.46429,10.12091],[78.47357,10.12191],[78.47067,10.11029],[78.45886,10.10326],[78.45636,10.09918],[78.45904,10.09493],[78.45873,10.08103],[78.46284,10.07898],[78.46187,10.07161],[78.46062,10.06999],[78.45702,10.07117],[78.45419,10.07016],[78.45276,10.06595],[78.45471,10.06274],[78.45289,10.05893],[78.4374,10.0611],[78.42773,10.053],[78.42765,10.04462],[78.42888,10.04519],[78.43065,10.041],[78.43071,10.03603],[78.44349,10.03434],[78.44727,10.02816],[78.44439,10.02656],[78.44448,10.02441],[78.44849,10.02517],[78.44913,10.02184],[78.45301,10.02123],[78.4561,10.01806],[78.45529,10.01325],[78.45791,10.01137],[78.45819,10.00872],[78.45524,9.99435],[78.45648,9.99215],[78.44963,9.99183],[78.44767,9.98623],[78.4542,9.98048],[78.45656,9.9685],[78.40977,9.95592],[78.38889,9.95223],[78.38766,9.95503],[78.38118,9.95619],[78.3784,9.96052],[78.37502,9.95887],[78.37445,9.96134],[78.37203,9.96234],[78.3687,9.94791],[78.37035,9.93464],[78.36663,9.9335],[78.35722,9.93528],[78.35212,9.94047],[78.34907,9.93677],[78.34531,9.93998],[78.34523,9.93719],[78.33883,9.93869],[78.33463,9.93564],[78.33394,9.93091],[78.32809,9.93094],[78.3275,9.92835],[78.31711,9.92621],[78.31349,9.91975],[78.31356,9.91082],[78.31244,9.91082],[78.31041,9.89937],[78.31125,9.89298],[78.3136,9.89272],[78.31448,9.89019],[78.31499,9.88259],[78.31225,9.88212],[78.31334,9.87504],[78.31001,9.87421],[78.30961,9.86525],[78.30522,9.86426],[78.30523,9.86298],[78.29454,9.86143],[78.29116,9.86344],[78.28734,9.87018],[78.27609,9.86991],[78.27607,9.87146],[78.26425,9.86954],[78.25027,9.87367],[78.25516,9.86394],[78.25999,9.86232],[78.2602,9.86015],[78.26699,9.85622],[78.26637,9.8481],[78.26095,9.8481],[78.25844,9.83416],[78.25466,9.8354],[78.254,9.83411],[78.24672,9.83747],[78.23922,9.84531],[78.23967,9.85069],[78.24448,9.85418],[78.24868,9.86018],[78.23944,9.85986],[78.22905,9.86494],[78.22516,9.86099],[78.21798,9.86892],[78.20873,9.87547],[78.20249,9.87509],[78.20133,9.8707],[78.19864,9.87036],[78.19791,9.8687],[78.18793,9.87162],[78.18681,9.86879],[78.18294,9.87011],[78.18103,9.86779],[78.16855,9.87415],[78.16099,9.87598],[78.15486,9.87306],[78.15129,9.87472],[78.15068,9.86808],[78.15359,9.85918],[78.15203,9.85915],[78.15084,9.85222],[78.14176,9.85372],[78.14094,9.85133],[78.13351,9.85289],[78.13176,9.85639],[78.12923,9.85193],[78.12501,9.85464],[78.12323,9.84902],[78.12662,9.8404],[78.13082,9.83801],[78.13238,9.83322],[78.13127,9.8274],[78.13252,9.82603],[78.13225,9.81965],[78.12975,9.81826],[78.12784,9.81414],[78.13047,9.81423],[78.13478,9.81121],[78.14232,9.81226],[78.14759,9.8187],[78.15302,9.82169],[78.15173,9.82771],[78.15882,9.82935],[78.16523,9.82821],[78.16907,9.83093],[78.17316,9.82522],[78.17939,9.82286],[78.18816,9.81532],[78.18618,9.81354],[78.18888,9.81241],[78.19345,9.80663],[78.18771,9.79488],[78.1831,9.79274],[78.17943,9.78472],[78.17761,9.77401],[78.17543,9.7721],[78.17391,9.77295],[78.17369,9.77633],[78.15994,9.77457],[78.16161,9.78159],[78.16846,9.78253],[78.16853,9.7854],[78.17099,9.78732],[78.17053,9.79468],[78.17227,9.79695],[78.16306,9.79933],[78.1593,9.80463],[78.14088,9.80918],[78.13894,9.80016],[78.14056,9.79533],[78.14579,9.79418],[78.14554,9.78922],[78.14437,9.78349],[78.14013,9.78152],[78.13842,9.77705],[78.1364,9.75727],[78.13391,9.74809],[78.1409,9.74396],[78.14605,9.74291],[78.14743,9.75003],[78.16301,9.75753],[78.16459,9.75151],[78.16359,9.74983],[78.17221,9.74813],[78.17489,9.75347],[78.17295,9.75727],[78.17329,9.76016],[78.17445,9.75702],[78.18302,9.75681],[78.19648,9.76759],[78.20429,9.76359],[78.20818,9.78147],[78.21023,9.78253],[78.21206,9.77948],[78.21408,9.77981],[78.21527,9.77765],[78.21851,9.77659],[78.21885,9.77374],[78.22217,9.77197],[78.22887,9.76399],[78.23346,9.76276],[78.23782,9.75737],[78.25749,9.75147],[78.26983,9.74278],[78.27689,9.7406],[78.2762,9.73276],[78.28058,9.73243],[78.28013,9.7299],[78.27748,9.72663],[78.27195,9.72912],[78.27234,9.72252],[78.27702,9.72055],[78.27613,9.71619],[78.27837,9.71483],[78.27745,9.70734],[78.27458,9.70641],[78.27431,9.70262],[78.27491,9.6999],[78.27782,9.69833],[78.27785,9.69608],[78.27718,9.69433],[78.27139,9.69372],[78.27124,9.69181],[78.27347,9.68621],[78.2833,9.68157],[78.28691,9.67588],[78.29166,9.67464],[78.29128,9.67695],[78.30037,9.67713],[78.30229,9.67897],[78.301,9.68231],[78.30277,9.68702],[78.29583,9.69096],[78.29551,9.69346],[78.29918,9.69867],[78.29991,9.70364],[78.30217,9.70276],[78.30525,9.70565],[78.30834,9.71416],[78.31257,9.71999],[78.31174,9.72266],[78.32151,9.73191],[78.32271,9.74261],[78.32483,9.74266],[78.32823,9.72556],[78.32226,9.71415],[78.32101,9.70717],[78.32704,9.69349],[78.3353,9.68898],[78.33761,9.68452],[78.34278,9.68091],[78.34169,9.67958],[78.34224,9.67226],[78.33598,9.66845],[78.33926,9.65811],[78.34456,9.65701],[78.34974,9.66601],[78.35189,9.66163],[78.35101,9.65652],[78.35434,9.6577],[78.35606,9.65155],[78.36077,9.65055],[78.36354,9.6541],[78.37618,9.65707],[78.38974,9.65286],[78.39391,9.64588],[78.38967,9.63144],[78.39408,9.62801],[78.39404,9.61875],[78.39898,9.61576],[78.40005,9.6119],[78.40598,9.61239],[78.40754,9.61918],[78.40901,9.61957],[78.4126,9.61754],[78.41301,9.61181],[78.41645,9.60886],[78.42339,9.60815],[78.42324,9.6138],[78.42617,9.61719],[78.42946,9.60883],[78.43269,9.60746],[78.43911,9.60925],[78.44016,9.61528],[78.44696,9.61468],[78.44864,9.61893],[78.45255,9.61623],[78.45574,9.61688],[78.45844,9.62217],[78.46148,9.63645],[78.4723,9.62712],[78.47712,9.6132],[78.48051,9.61369],[78.48607,9.6093],[78.4963,9.61129],[78.50299,9.61093],[78.4984,9.60208],[78.49425,9.59978],[78.50677,9.59317],[78.5201,9.57889],[78.53071,9.57574],[78.54601,9.57673],[78.5491,9.57507],[78.55765,9.57475],[78.56686,9.57082],[78.57137,9.56672],[78.57579,9.57606],[78.58713,9.57234],[78.58999,9.57054],[78.59026,9.56508],[78.59393,9.56423],[78.59757,9.56091],[78.61137,9.55706],[78.61683,9.55809],[78.61702,9.54873],[78.61436,9.54288],[78.61592,9.54008],[78.61507,9.53756],[78.61683,9.53617],[78.62453,9.53436],[78.63379,9.52738],[78.64297,9.52693],[78.65751,9.52014],[78.65863,9.5282],[78.66181,9.53612],[78.6562,9.53647],[78.65423,9.5432],[78.65783,9.54652],[78.6721,9.55367],[78.68379,9.56295],[78.6862,9.57034],[78.69378,9.57676],[78.69349,9.5803],[78.68798,9.58291],[78.68773,9.58531],[78.68446,9.5864],[78.68305,9.58862],[78.6816,9.59329],[78.67895,9.59385],[78.68121,9.60225],[78.68444,9.60559],[78.6886,9.60534],[78.68918,9.60111],[78.69753,9.59777],[78.701,9.59354],[78.71025,9.59305],[78.72728,9.58922],[78.74598,9.58886],[78.74674,9.5853],[78.75383,9.59332],[78.76324,9.59314],[78.76678,9.59037],[78.77386,9.58832],[78.78127,9.59081],[78.78222,9.59589],[78.78787,9.59446],[78.79942,9.59814],[78.80578,9.59724],[78.80566,9.59911],[78.80941,9.59827],[78.81104,9.60006],[78.82127,9.59975],[78.82682,9.61432],[78.82665,9.61794],[78.82237,9.6205],[78.81985,9.6203],[78.81866,9.62446],[78.81241,9.62386],[78.80743,9.6262],[78.8027,9.6211],[78.79467,9.62568],[78.79371,9.63214],[78.78778,9.63407],[78.78761,9.63686],[78.7948,9.6374],[78.79476,9.64346],[78.79075,9.64516],[78.79048,9.6492],[78.78547,9.65265],[78.78948,9.65905],[78.78909,9.66231],[78.79525,9.66616],[78.7954,9.67081],[78.79185,9.67238],[78.79398,9.67492],[78.79471,9.68415],[78.79722,9.68508],[78.79919,9.69627],[78.79524,9.69768],[78.79575,9.70347],[78.7943,9.70558],[78.79219,9.70469],[78.78766,9.70754],[78.78222,9.71263],[78.78047,9.71834],[78.77806,9.71955],[78.76255,9.71654],[78.75516,9.71715],[78.75188,9.7158],[78.7506,9.70904],[78.74738,9.70582],[78.74492,9.70762],[78.74132,9.73672],[78.74285,9.74348],[78.74123,9.74649],[78.734,9.74731],[78.73279,9.74903],[78.73348,9.75836],[78.74431,9.76029],[78.74333,9.77164],[78.73888,9.77606],[78.73756,9.78081],[78.74355,9.77906],[78.74479,9.78231],[78.74628,9.7825],[78.75292,9.78036],[78.77418,9.78679],[78.78218,9.7954],[78.78452,9.78276],[78.78317,9.76822],[78.78037,9.76044],[78.78766,9.77152],[78.79204,9.77555],[78.78972,9.7817],[78.80015,9.78388],[78.79602,9.79489],[78.79906,9.7946],[78.80112,9.78868],[78.8099,9.78734],[78.81222,9.78083],[78.81456,9.77981],[78.81696,9.78025],[78.82227,9.78774],[78.8283,9.79295],[78.83123,9.78084],[78.82857,9.77666],[78.82038,9.77478],[78.82071,9.77276],[78.82467,9.77199],[78.82644,9.76945],[78.82165,9.76086],[78.81886,9.75969],[78.81322,9.76269],[78.80538,9.75951],[78.80554,9.74976],[78.8083,9.73939],[78.81398,9.7388],[78.81533,9.73155],[78.82634,9.73179],[78.82494,9.73579],[78.81664,9.74389],[78.82308,9.74976],[78.83337,9.75018],[78.84134,9.7474],[78.84515,9.74298],[78.85113,9.74704],[78.85388,9.75689],[78.85036,9.76119],[78.85531,9.76526],[78.85822,9.76526],[78.86241,9.76006],[78.86451,9.761],[78.8675,9.75921],[78.86936,9.75476],[78.87365,9.75533],[78.88226,9.74457],[78.88334,9.74725],[78.88599,9.74798],[78.88692,9.75373],[78.88982,9.75433],[78.89497,9.76403],[78.89221,9.76826],[78.89164,9.77125],[78.89327,9.77287],[78.88849,9.77982],[78.88749,9.78636],[78.87934,9.78699],[78.87263,9.78533],[78.86934,9.78883],[78.86648,9.78932],[78.86591,9.79799],[78.86794,9.80106],[78.87127,9.80059],[78.87209,9.80293],[78.86731,9.80613],[78.86411,9.81164],[78.86438,9.81382],[78.86894,9.81702],[78.86993,9.82047],[78.87233,9.82123],[78.87403,9.82472],[78.87349,9.82839],[78.86614,9.83126],[78.86608,9.83414],[78.86824,9.8357],[78.86827,9.8386],[78.8724,9.84454],[78.8695,9.84558],[78.86877,9.85337],[78.87306,9.85628],[78.8728,9.85917],[78.87811,9.8713],[78.88031,9.87292],[78.87621,9.87546],[78.87249,9.87553],[78.87465,9.87949],[78.87399,9.88343],[78.87731,9.88627],[78.87961,9.88554],[78.88347,9.8802],[78.89207,9.87901],[78.89412,9.88578],[78.90159,9.8944],[78.89437,9.90685],[78.8922,9.9078],[78.89321,9.91152],[78.89863,9.91416],[78.89927,9.91789],[78.90385,9.91924],[78.90961,9.91726],[78.91329,9.91926],[78.91599,9.92711],[78.92969,9.92596],[78.93126,9.93203],[78.93554,9.93397],[78.93784,9.93133],[78.93684,9.92124],[78.94053,9.92051],[78.94396,9.91685],[78.94758,9.91956],[78.95612,9.91995],[78.96294,9.92387],[78.96571,9.94039],[78.96381,9.94131],[78.96394,9.94285],[78.98353,9.94205],[78.98969,9.94014],[78.99106,9.94401],[78.98798,9.95023],[78.98869,9.95148],[78.99074,9.95061],[78.99256,9.95386],[78.99402,9.95229],[78.99662,9.95248],[79.00331,9.95621],[79.00114,9.95909],[79.00229,9.96416],[78.99639,9.96602],[79.00289,9.97878],[79.01379,9.98172],[79.0097,9.99017],[79.00748,9.98925],[79.00738,9.98722],[79.00311,9.98721],[78.99882,9.98908],[78.99754,9.99453],[78.99383,9.99593],[78.99294,9.99348],[78.98815,9.99453],[78.98148,9.99036],[78.97396,9.99146],[78.97245,9.99225],[78.97479,9.99964],[78.96486,10.00749],[78.96142,10.0085],[78.96047,10.00617],[78.95168,10.00801],[78.94137,10.01304],[78.93023,10.02176],[78.93111,10.02707],[78.92973,10.03099],[78.93215,10.0342],[78.93204,10.03739],[78.92788,10.04155],[78.92362,10.04273],[78.92463,10.04704],[78.9312,10.04717],[78.93391,10.05068],[78.93378,10.05314],[78.93647,10.05389],[78.93806,10.05748],[78.93981,10.05645],[78.93934,10.05434],[78.94195,10.05384],[78.9444,10.05944],[78.94043,10.06103],[78.93714,10.06601],[78.9379,10.06947],[78.93423,10.07191],[78.94588,10.07889],[78.94971,10.08507],[78.94982,10.08954],[78.96012,10.09527],[78.96299,10.09481],[78.96712,10.08676],[78.97337,10.08181],[78.977,10.08117],[78.97807,10.08655],[78.98235,10.08463],[78.98698,10.08937],[78.98218,10.09507],[78.98226,10.10027],[78.97703,10.10184],[78.977,10.10951],[78.97186,10.12114],[78.96769,10.12665],[78.96628,10.12719],[78.9643,10.11915],[78.96088,10.11817],[78.95861,10.1141],[78.95009,10.11425],[78.95004,10.10851],[78.94787,10.10557],[78.94789,10.10936],[78.94456,10.11243],[78.94099,10.11434],[78.94164,10.11017],[78.93808,10.1119],[78.93749,10.11564],[78.92865,10.11429],[78.9281,10.12079],[78.92043,10.12311],[78.91349,10.12776],[78.91344,10.12997],[78.91165,10.12983],[78.91032,10.13251],[78.91023,10.13591],[78.91352,10.14461],[78.90767,10.14759],[78.90855,10.15135],[78.90006,10.15667],[78.89881,10.15424],[78.90177,10.1518],[78.89653,10.14725],[78.88913,10.14931],[78.88682,10.14809],[78.88625,10.15122],[78.88187,10.15453],[78.88114,10.15092],[78.88002,10.15133],[78.877,10.14761],[78.87622,10.14349],[78.87356,10.14226],[78.87237,10.13808],[78.86549,10.13574],[78.86227,10.12644],[78.84789,10.12607],[78.84938,10.13249],[78.84838,10.13747],[78.83675,10.14034],[78.83305,10.13924],[78.83302,10.14578],[78.82955,10.15452],[78.81883,10.15925],[78.81812,10.16228],[78.81362,10.16662],[78.81729,10.17207],[78.82194,10.18785],[78.82323,10.1981],[78.8099,10.213],[78.8024,10.21137],[78.79358,10.20624],[78.78688,10.20672],[78.78206,10.20264],[78.77972,10.2036],[78.77748,10.20253],[78.77672,10.2003],[78.77355,10.19896],[78.76889,10.19906],[78.76873,10.19662],[78.76697,10.19646],[78.76529,10.19299],[78.76517,10.18058],[78.76722,10.18062],[78.7648,10.17425],[78.76953,10.17135],[78.7702,10.16721],[78.76719,10.16343],[78.76043,10.16535],[78.7471,10.1643],[78.73813,10.1621],[78.73732,10.15856],[78.7277,10.16135],[78.72664,10.16982],[78.71584,10.17129],[78.70852,10.1756],[78.69646,10.15659],[78.69386,10.15519],[78.69133,10.14775],[78.69013,10.1468],[78.68874,10.14789],[78.68638,10.14588],[78.67831,10.14697],[78.67007,10.15327],[78.66989,10.15487],[78.66804,10.15429],[78.67047,10.16329],[78.66752,10.16991],[78.67038,10.17602],[78.66421,10.17895],[78.66524,10.18537],[78.6667,10.18547],[78.66869,10.19414],[78.67104,10.19521],[78.67323,10.2047],[78.66959,10.20641],[78.6657,10.21212],[78.66024,10.21508],[78.65852,10.21438],[78.65202,10.21965],[78.64725,10.22581],[78.65061,10.23659],[78.64138,10.24104],[78.64443,10.2448],[78.6483,10.24547],[78.65167,10.25428],[78.64887,10.25688],[78.64775,10.25595],[78.64768,10.25858],[78.63622,10.26923],[78.62905,10.26802],[78.62356,10.26996],[78.61157,10.27037],[78.6096,10.27391],[78.59164,10.27906],[78.57793,10.28723],[78.5739,10.28595],[78.56945,10.28107],[78.57174,10.28001],[78.57099,10.27519],[78.57209,10.27458],[78.5726,10.27766],[78.57412,10.27726],[78.57439,10.26731],[78.57684,10.26625],[78.57063,10.25677],[78.56519,10.25795],[78.56179,10.25319],[78.55509,10.25483],[78.55347,10.24949],[78.54852,10.2521],[78.5406,10.25306],[78.54043,10.25756],[78.53845,10.25766],[78.53823,10.2552],[78.53395,10.25441],[78.53236,10.25064],[78.52998,10.25043],[78.52914,10.24096],[78.52759,10.23855],[78.5239,10.23903],[78.51895,10.23664],[78.51546,10.22637],[78.51615,10.22021],[78.51452,10.21668],[78.5174,10.2095],[78.51436,10.20719],[78.51385,10.20057],[78.51615,10.19047],[78.50936,10.18843],[78.49911,10.18801],[78.49582,10.19174],[78.48782,10.19052],[78.48377,10.19315],[78.476,10.20278],[78.47052,10.2029],[78.46951,10.20425],[78.47275,10.20754],[78.47511,10.21956],[78.47273,10.21986],[78.47552,10.22333],[78.47845,10.22255],[78.48774,10.23441],[78.48709,10.23656],[78.47929,10.24061],[78.47893,10.24281],[78.48219,10.25015],[78.48575,10.25207],[78.48233,10.25512],[78.4727,10.24344],[78.46456,10.2404],[78.45759,10.24057],[78.45345,10.24431],[78.44775,10.24542],[78.45304,10.25886],[78.45275,10.26704],[78.46345,10.26703],[78.47257,10.26987],[78.49234,10.26321],[78.50744,10.26441],[78.51455,10.26765],[78.5115,10.27003],[78.51703,10.27996],[78.51267,10.28574],[78.51592,10.29711],[78.51891,10.30022],[78.51501,10.30351],[78.51537,10.3091],[78.51952,10.3143],[78.5188,10.31859],[78.52141,10.32628],[78.52011,10.33031],[78.51454,10.33543],[78.50945,10.34696],[78.50478,10.35079],[78.49774,10.35211],[78.49762,10.36406],[78.50175,10.36736],[78.50677,10.37795],[78.50774,10.38897],[78.49202,10.38796],[78.48957,10.39028],[78.49036,10.39583],[78.47289,10.40108]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"586","area_level":"District","area_name":"Thanjavur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.15306,10.45198],[79.15323,10.4522],[79.15317,10.45239],[79.15297,10.45294],[79.15122,10.45257],[79.15128,10.45222],[79.15163,10.45199],[79.15215,10.45186],[79.15266,10.45181],[79.15306,10.45198]]],[[[79.14789,10.45296],[79.14817,10.45304],[79.1484,10.45322],[79.14848,10.45367],[79.1484,10.45422],[79.14816,10.45436],[79.14775,10.45438],[79.14748,10.45425],[79.14739,10.45409],[79.14734,10.45394],[79.14731,10.4535],[79.14732,10.45331],[79.14742,10.45306],[79.14757,10.45295],[79.14789,10.45296]]],[[[79.16337,10.45494],[79.16333,10.45557],[79.1632,10.45584],[79.16291,10.45588],[79.16279,10.45591],[79.16264,10.45566],[79.1624,10.45492],[79.16245,10.45461],[79.16273,10.45449],[79.16321,10.45448],[79.16337,10.45494]]],[[[79.16126,10.45419],[79.16114,10.45466],[79.16078,10.45509],[79.16062,10.45525],[79.16053,10.45542],[79.16068,10.45559],[79.16077,10.45587],[79.16073,10.45625],[79.16044,10.45641],[79.16023,10.45644],[79.16002,10.4563],[79.15978,10.45604],[79.1594,10.45599],[79.15901,10.45597],[79.15889,10.45573],[79.15886,10.45551],[79.15897,10.45522],[79.15912,10.45503],[79.15946,10.45492],[79.15999,10.45485],[79.16026,10.45477],[79.16035,10.45457],[79.16048,10.45396],[79.16076,10.45391],[79.16111,10.45391],[79.16126,10.45419]]],[[[79.15341,10.45875],[79.15343,10.45898],[79.15272,10.45933],[79.15184,10.45984],[79.15141,10.4591],[79.15302,10.45798],[79.15341,10.45875]]],[[[79.16789,10.46308],[79.16808,10.46359],[79.168,10.46438],[79.16716,10.46388],[79.16661,10.46319],[79.16769,10.46257],[79.16789,10.46308]]],[[[79.17436,10.46415],[79.17437,10.46483],[79.1743,10.465],[79.17387,10.46509],[79.17332,10.46494],[79.17329,10.46347],[79.17434,10.46347],[79.17436,10.46415]]],[[[79.17141,10.46451],[79.17186,10.46451],[79.1718,10.46523],[79.17099,10.4653],[79.17097,10.4645],[79.17141,10.46451]]],[[[79.15255,10.46407],[79.15313,10.46433],[79.15329,10.46522],[79.15223,10.46568],[79.15138,10.46555],[79.1516,10.46395],[79.15255,10.46407]]],[[[79.15598,10.46529],[79.15629,10.46642],[79.15576,10.46689],[79.15526,10.46686],[79.15484,10.46599],[79.15476,10.46552],[79.15535,10.46513],[79.15598,10.46529]]],[[[79.17605,10.46706],[79.17588,10.46766],[79.1749,10.46776],[79.17451,10.46684],[79.17552,10.46632],[79.17605,10.46706]]],[[[79.18016,10.46717],[79.18031,10.46801],[79.17922,10.4685],[79.17862,10.46792],[79.17889,10.46714],[79.1795,10.46674],[79.18016,10.46717]]],[[[79.15743,10.46817],[79.15772,10.46872],[79.15758,10.46919],[79.15631,10.46973],[79.15589,10.46921],[79.15587,10.46855],[79.15677,10.46785],[79.15743,10.46817]]],[[[79.17606,10.46816],[79.17633,10.46822],[79.17679,10.46853],[79.177,10.46895],[79.17716,10.46971],[79.17667,10.46997],[79.17597,10.46989],[79.17531,10.46944],[79.17527,10.46858],[79.1758,10.46811],[79.17606,10.46816]]],[[[79.15897,10.47256],[79.15802,10.47308],[79.15736,10.47263],[79.15763,10.47179],[79.15853,10.47161],[79.15897,10.47256]]],[[[79.13925,10.50575],[79.13925,10.50662],[79.13817,10.50662],[79.13809,10.5057],[79.13887,10.5055],[79.13925,10.50575]]],[[[79.13486,10.50857],[79.1337,10.508],[79.13317,10.50718],[79.13388,10.50708],[79.13474,10.5074],[79.13509,10.50675],[79.13562,10.50677],[79.13564,10.5059],[79.13655,10.5058],[79.1366,10.50708],[79.13537,10.50725],[79.13486,10.50857]]],[[[79.14539,10.51813],[79.14465,10.51832],[79.14378,10.51588],[79.14502,10.51575],[79.14539,10.51813]]],[[[79.14893,10.5245],[79.14826,10.52472],[79.14792,10.52395],[79.14882,10.52383],[79.14893,10.5245]]],[[[79.14512,10.52652],[79.14489,10.52614],[79.14557,10.52577],[79.14575,10.52544],[79.14577,10.52514],[79.14635,10.52517],[79.14663,10.52607],[79.14613,10.52654],[79.14582,10.52634],[79.14512,10.52652]]],[[[79.14918,10.52876],[79.1487,10.52986],[79.14777,10.52902],[79.14867,10.52834],[79.14918,10.52876]]],[[[79.17141,10.54269],[79.16967,10.54244],[79.16967,10.54186],[79.17138,10.54171],[79.17141,10.54269]]],[[[79.18474,10.56641],[79.18484,10.56728],[79.18317,10.56748],[79.18292,10.56653],[79.18431,10.56558],[79.18474,10.56641]]],[[[79.53606,11.10136],[79.53695,11.10525],[79.53913,11.10725],[79.53805,11.10954],[79.54194,11.10894],[79.54141,11.11177],[79.54549,11.11329],[79.54284,11.1142],[79.5436,11.11656],[79.54691,11.1162],[79.54847,11.1132],[79.55015,11.11467],[79.54972,11.11992],[79.55197,11.12344],[79.54849,11.12278],[79.54889,11.12636],[79.55137,11.12515],[79.55331,11.12769],[79.55315,11.12944],[79.55099,11.13018],[79.55533,11.13222],[79.55644,11.12852],[79.55748,11.13064],[79.5613,11.13181],[79.56089,11.1355],[79.57107,11.14362],[79.57278,11.14804],[79.56641,11.14917],[79.56562,11.15499],[79.55779,11.1544],[79.55691,11.16289],[79.54193,11.16082],[79.54241,11.16286],[79.53953,11.16257],[79.53783,11.18063],[79.53385,11.17777],[79.53076,11.17782],[79.52672,11.18373],[79.50068,11.17595],[79.47903,11.16173],[79.47267,11.161],[79.44794,11.14073],[79.44466,11.13452],[79.43111,11.12146],[79.42454,11.10636],[79.42274,11.09752],[79.41741,11.09207],[79.41344,11.08199],[79.39892,11.06694],[79.37181,11.05372],[79.36554,11.05277],[79.35803,11.04925],[79.35001,11.04321],[79.34333,11.04065],[79.33337,11.03025],[79.31183,11.0176],[79.30881,11.02087],[79.30325,11.01718],[79.29102,11.01442],[79.28054,11.00383],[79.28019,11.00086],[79.27332,10.99708],[79.27467,10.9933],[79.26889,10.98645],[79.23966,10.96472],[79.2222,10.94645],[79.213,10.94126],[79.20495,10.94022],[79.2029,10.94901],[79.18922,10.94645],[79.18388,10.9437],[79.18261,10.94099],[79.17863,10.93969],[79.15699,10.94222],[79.14129,10.94032],[79.12395,10.93061],[79.10992,10.92495],[79.0852,10.92702],[79.07474,10.92065],[79.06852,10.91203],[79.06325,10.89808],[79.0551,10.89061],[79.04996,10.88826],[79.03253,10.88657],[79.02327,10.89012],[78.99915,10.89485],[78.99133,10.89171],[78.98341,10.89173],[78.96628,10.88719],[78.96097,10.89237],[78.96199,10.8944],[78.96019,10.89464],[78.94021,10.88618],[78.93971,10.88768],[78.93769,10.88113],[78.94063,10.87846],[78.92337,10.86611],[78.89598,10.85952],[78.88374,10.85361],[78.8578,10.84646],[78.84915,10.84181],[78.83228,10.8404],[78.83085,10.83907],[78.82953,10.84008],[78.81612,10.83542],[78.80332,10.8384],[78.77648,10.8331],[78.77577,10.82699],[78.78173,10.82652],[78.78699,10.82875],[78.79706,10.82385],[78.80362,10.82566],[78.82085,10.82281],[78.82567,10.8248],[78.86877,10.82558],[78.86786,10.81547],[78.86165,10.81193],[78.86046,10.80319],[78.86564,10.80016],[78.86472,10.79322],[78.86698,10.79236],[78.86716,10.78495],[78.87073,10.78464],[78.88027,10.78853],[78.88096,10.77745],[78.87454,10.77301],[78.87327,10.7616],[78.86843,10.76071],[78.86894,10.74408],[78.86697,10.73526],[78.86498,10.7354],[78.8645,10.73283],[78.86518,10.72084],[78.86842,10.71131],[78.88222,10.69528],[78.88876,10.69516],[78.8887,10.69347],[78.89377,10.6942],[78.89388,10.68523],[78.90225,10.68172],[78.90238,10.67997],[78.90574,10.68055],[78.90819,10.67174],[78.91851,10.67075],[78.9267,10.68009],[78.93346,10.6836],[78.93982,10.68261],[78.94536,10.68011],[78.94874,10.67536],[78.94504,10.67536],[78.94487,10.67677],[78.94318,10.67761],[78.94251,10.67642],[78.93963,10.67866],[78.93775,10.67758],[78.93757,10.67508],[78.94557,10.66913],[78.95481,10.66818],[78.95819,10.6614],[78.9613,10.66179],[78.96136,10.65566],[78.96393,10.65146],[78.9712,10.66225],[78.9701,10.66516],[78.9717,10.66917],[78.9697,10.6701],[78.96969,10.67536],[78.97447,10.67745],[78.98705,10.67915],[78.98341,10.68771],[78.9833,10.69655],[78.98472,10.69679],[78.98405,10.69894],[78.98955,10.70343],[78.9897,10.70563],[78.99137,10.70558],[78.99183,10.71747],[78.99351,10.72168],[79.0035,10.72227],[79.00504,10.72031],[79.00978,10.71946],[79.00708,10.71183],[79.0105,10.70788],[79.02626,10.70614],[79.02924,10.70403],[79.02114,10.6989],[79.01987,10.69583],[79.02139,10.68951],[79.02065,10.68372],[79.01645,10.68236],[79.01666,10.68012],[79.04604,10.68101],[79.05493,10.6796],[79.05643,10.67672],[79.06297,10.67384],[79.06894,10.67738],[79.06869,10.67239],[79.06635,10.66982],[79.06552,10.64911],[79.06963,10.6449],[79.06999,10.64072],[79.07987,10.63724],[79.07965,10.63585],[79.08919,10.63464],[79.09354,10.63199],[79.0933,10.63065],[79.1008,10.62963],[79.1043,10.61521],[79.11925,10.63484],[79.12622,10.63406],[79.12759,10.63618],[79.13278,10.62928],[79.13572,10.61606],[79.13974,10.61421],[79.13993,10.61053],[79.1434,10.60839],[79.14129,10.5996],[79.1412,10.58819],[79.14279,10.58638],[79.15345,10.58771],[79.15468,10.58902],[79.16938,10.58704],[79.16925,10.58468],[79.17411,10.58487],[79.1774,10.58693],[79.1788,10.57128],[79.1823,10.57109],[79.18174,10.57392],[79.18011,10.57452],[79.19078,10.57819],[79.1901,10.56553],[79.1893,10.56699],[79.18724,10.56644],[79.19134,10.56431],[79.19057,10.55948],[79.1887,10.55924],[79.18754,10.55577],[79.18344,10.55676],[79.18304,10.55013],[79.17882,10.55055],[79.18344,10.54798],[79.18595,10.54238],[79.18463,10.53774],[79.17774,10.53825],[79.17718,10.53589],[79.17432,10.53577],[79.17376,10.53234],[79.17035,10.5317],[79.17063,10.53289],[79.1684,10.53372],[79.16788,10.53013],[79.16521,10.53092],[79.16513,10.53285],[79.16187,10.53195],[79.15815,10.53356],[79.15675,10.53021],[79.15396,10.53135],[79.15268,10.52956],[79.153,10.53248],[79.15165,10.5325],[79.14894,10.5283],[79.14914,10.52364],[79.15058,10.52171],[79.15201,10.52408],[79.15305,10.52194],[79.15488,10.52179],[79.14942,10.51923],[79.14492,10.51286],[79.1419,10.51443],[79.14046,10.5123],[79.14113,10.50149],[79.13917,10.4982],[79.13056,10.49727],[79.13052,10.499],[79.1288,10.49539],[79.12933,10.49168],[79.13289,10.49433],[79.13131,10.49247],[79.13209,10.48904],[79.1303,10.48965],[79.12986,10.48786],[79.13439,10.48502],[79.13513,10.48661],[79.14153,10.48616],[79.14189,10.48433],[79.14472,10.4862],[79.14734,10.48586],[79.14721,10.48335],[79.14916,10.48271],[79.15054,10.47819],[79.15283,10.47779],[79.15184,10.4758],[79.15468,10.47644],[79.15519,10.47487],[79.16007,10.47347],[79.1613,10.47612],[79.16344,10.47584],[79.16466,10.47764],[79.16649,10.47592],[79.17089,10.48168],[79.17191,10.47871],[79.17005,10.47858],[79.17235,10.47435],[79.17496,10.47419],[79.17236,10.47651],[79.17346,10.47838],[79.17435,10.47662],[79.1768,10.47762],[79.17706,10.4759],[79.179,10.47606],[79.17804,10.47228],[79.18301,10.47237],[79.18329,10.46982],[79.18537,10.46943],[79.19028,10.47111],[79.19092,10.46847],[79.19442,10.46773],[79.1947,10.46593],[79.19447,10.46291],[79.19034,10.46258],[79.19069,10.45961],[79.17322,10.4587],[79.17279,10.45327],[79.16654,10.45542],[79.16561,10.45291],[79.17168,10.45094],[79.17221,10.44908],[79.17428,10.44865],[79.17682,10.45187],[79.17606,10.44802],[79.16897,10.44817],[79.16663,10.45025],[79.16477,10.44814],[79.15963,10.44901],[79.15786,10.44616],[79.15639,10.45243],[79.15397,10.45177],[79.15359,10.4484],[79.15117,10.44716],[79.1449,10.4497],[79.14329,10.44814],[79.14042,10.4495],[79.1389,10.44822],[79.13966,10.44652],[79.14167,10.44775],[79.14353,10.44567],[79.14134,10.44545],[79.13746,10.43995],[79.13135,10.43636],[79.1258,10.43794],[79.12548,10.43588],[79.12948,10.43333],[79.13163,10.42442],[79.13436,10.42325],[79.14158,10.41388],[79.14744,10.41088],[79.15269,10.40075],[79.1495,10.39288],[79.14531,10.38994],[79.14418,10.38294],[79.1447,10.37689],[79.14873,10.37318],[79.14566,10.36499],[79.15095,10.36342],[79.15296,10.35014],[79.1464,10.34947],[79.13917,10.34176],[79.12083,10.33744],[79.11442,10.3282],[79.11624,10.32711],[79.12532,10.32815],[79.12552,10.32621],[79.13116,10.32549],[79.13493,10.31903],[79.13481,10.31179],[79.13289,10.30912],[79.1219,10.30629],[79.12283,10.30268],[79.12638,10.30122],[79.12422,10.29529],[79.1186,10.29029],[79.11926,10.28804],[79.12786,10.28185],[79.12615,10.27806],[79.13123,10.27327],[79.12895,10.26759],[79.13258,10.26505],[79.13018,10.25984],[79.13127,10.25636],[79.12914,10.25361],[79.12548,10.25257],[79.11759,10.25342],[79.11596,10.23428],[79.11695,10.23284],[79.13363,10.23041],[79.13666,10.23643],[79.14423,10.23634],[79.14756,10.22925],[79.14643,10.2232],[79.15056,10.21621],[79.15381,10.2178],[79.16165,10.21537],[79.16281,10.21803],[79.17313,10.21364],[79.17828,10.21641],[79.18312,10.21461],[79.18399,10.21266],[79.18226,10.21104],[79.1824,10.20742],[79.18718,10.20502],[79.18931,10.201],[79.18251,10.19329],[79.17421,10.20117],[79.17375,10.20341],[79.16085,10.19513],[79.15257,10.19678],[79.15019,10.19391],[79.15044,10.1853],[79.15621,10.18487],[79.15603,10.18348],[79.16019,10.18459],[79.16026,10.18038],[79.16148,10.17988],[79.1611,10.17723],[79.15711,10.17638],[79.15699,10.16926],[79.15111,10.16659],[79.15143,10.15956],[79.16001,10.15681],[79.16652,10.15923],[79.16397,10.16198],[79.17855,10.15824],[79.19087,10.1618],[79.19635,10.16089],[79.19659,10.15686],[79.20297,10.15839],[79.20388,10.15298],[79.20696,10.15136],[79.2066,10.14812],[79.20921,10.14727],[79.21043,10.13974],[79.20837,10.13986],[79.2066,10.13673],[79.21642,10.13579],[79.22605,10.13711],[79.22567,10.14583],[79.22749,10.1514],[79.23915,10.16081],[79.23611,10.1716],[79.23901,10.1758],[79.24154,10.18487],[79.24708,10.19191],[79.25178,10.19467],[79.25682,10.19559],[79.25735,10.19699],[79.25998,10.19372],[79.2638,10.19727],[79.26382,10.19995],[79.26508,10.19743],[79.26977,10.20648],[79.27869,10.21545],[79.27727,10.22329],[79.27592,10.22248],[79.27135,10.22479],[79.26699,10.22891],[79.27007,10.23583],[79.28468,10.25149],[79.29846,10.2633],[79.31555,10.27365],[79.32926,10.28436],[79.33823,10.28751],[79.3528,10.28891],[79.36034,10.29123],[79.37322,10.30794],[79.37916,10.31348],[79.38807,10.31752],[79.3959,10.31864],[79.40321,10.3172],[79.43202,10.31764],[79.49876,10.31483],[79.49876,10.34889],[79.50253,10.34915],[79.50515,10.35669],[79.50482,10.36633],[79.50098,10.36918],[79.49536,10.36836],[79.49225,10.36982],[79.48565,10.38056],[79.48265,10.37697],[79.47584,10.37386],[79.4755,10.37204],[79.47237,10.37375],[79.46755,10.3731],[79.4674,10.37808],[79.47,10.38311],[79.46734,10.38402],[79.46476,10.38851],[79.46103,10.3884],[79.46144,10.3926],[79.4723,10.39513],[79.47718,10.39352],[79.47601,10.40013],[79.4738,10.40653],[79.46969,10.40756],[79.46159,10.40662],[79.4625,10.41011],[79.46487,10.41085],[79.46515,10.41597],[79.4592,10.41875],[79.45633,10.4269],[79.45111,10.42966],[79.45236,10.43308],[79.45467,10.43403],[79.46174,10.43286],[79.46377,10.43473],[79.47226,10.43398],[79.47305,10.43532],[79.4761,10.44973],[79.46965,10.46176],[79.47193,10.46448],[79.47931,10.46345],[79.4823,10.4759],[79.48309,10.4896],[79.47655,10.49341],[79.47166,10.49286],[79.47079,10.4912],[79.46798,10.49271],[79.46174,10.48744],[79.45538,10.48858],[79.45289,10.49076],[79.45357,10.49226],[79.46089,10.50306],[79.46469,10.50578],[79.46908,10.50517],[79.46916,10.51135],[79.45775,10.51376],[79.45684,10.51967],[79.4519,10.5202],[79.45075,10.52177],[79.44715,10.52111],[79.44462,10.522],[79.44502,10.52361],[79.44075,10.52265],[79.4391,10.52356],[79.43756,10.53069],[79.42315,10.53536],[79.42337,10.54161],[79.42811,10.54355],[79.4285,10.54569],[79.43305,10.5447],[79.43507,10.54663],[79.43731,10.54601],[79.43739,10.54775],[79.44243,10.54836],[79.44421,10.55087],[79.45206,10.55105],[79.45251,10.55951],[79.44024,10.55773],[79.43928,10.55888],[79.43543,10.55704],[79.42592,10.55786],[79.42356,10.54993],[79.42071,10.54911],[79.41487,10.55207],[79.41118,10.55095],[79.40505,10.55211],[79.40034,10.55381],[79.39854,10.55891],[79.4016,10.57254],[79.39884,10.57525],[79.39999,10.57738],[79.39665,10.58017],[79.3834,10.58211],[79.37868,10.57956],[79.36111,10.57873],[79.35795,10.58157],[79.35186,10.58308],[79.34681,10.59247],[79.34674,10.59565],[79.34899,10.59775],[79.34855,10.60684],[79.35376,10.60672],[79.35422,10.61079],[79.3521,10.61121],[79.35201,10.61526],[79.35055,10.61515],[79.34956,10.61761],[79.34813,10.62694],[79.35427,10.63171],[79.35742,10.64586],[79.35427,10.64858],[79.34977,10.6483],[79.3488,10.65244],[79.34222,10.65592],[79.3429,10.6584],[79.3179,10.66078],[79.31672,10.67199],[79.32006,10.68487],[79.31309,10.70201],[79.30695,10.71023],[79.30839,10.7209],[79.30432,10.73504],[79.30161,10.73954],[79.30807,10.74614],[79.31201,10.74684],[79.31467,10.74509],[79.31305,10.74038],[79.31658,10.74058],[79.32039,10.73725],[79.32737,10.73965],[79.33218,10.73832],[79.34149,10.73949],[79.34908,10.74333],[79.34905,10.74459],[79.34527,10.74447],[79.34503,10.7457],[79.34907,10.74653],[79.35014,10.75016],[79.35374,10.74787],[79.36113,10.75224],[79.36023,10.75811],[79.36142,10.76505],[79.35984,10.76436],[79.35956,10.76638],[79.35645,10.76679],[79.3454,10.76622],[79.34395,10.77557],[79.34512,10.78076],[79.34999,10.78576],[79.35127,10.79113],[79.34808,10.79276],[79.34852,10.79567],[79.35669,10.79396],[79.37016,10.79628],[79.37306,10.80185],[79.37662,10.80399],[79.36978,10.80917],[79.35831,10.80657],[79.35292,10.81126],[79.34499,10.81145],[79.34354,10.81269],[79.33933,10.81067],[79.33566,10.81366],[79.33205,10.81374],[79.32878,10.80983],[79.32637,10.81037],[79.32363,10.81202],[79.32585,10.81741],[79.31426,10.82289],[79.30608,10.82388],[79.30178,10.82855],[79.30185,10.8308],[79.29848,10.83572],[79.29241,10.83556],[79.2894,10.83296],[79.28903,10.83472],[79.29216,10.83852],[79.2919,10.84223],[79.2948,10.84276],[79.2946,10.85181],[79.29271,10.85353],[79.29259,10.8569],[79.29516,10.85703],[79.29532,10.86418],[79.29021,10.86409],[79.28865,10.87155],[79.27876,10.87111],[79.2736,10.87294],[79.27406,10.87682],[79.2726,10.87882],[79.27402,10.88045],[79.27262,10.88183],[79.27537,10.88402],[79.27148,10.88416],[79.2679,10.88808],[79.27118,10.89279],[79.26908,10.89478],[79.27235,10.89781],[79.26824,10.90533],[79.26997,10.9072],[79.27835,10.90664],[79.27866,10.90254],[79.29571,10.9035],[79.29532,10.90808],[79.28667,10.90717],[79.28688,10.91789],[79.27539,10.92307],[79.27531,10.92625],[79.28155,10.92719],[79.28213,10.9299],[79.28503,10.92997],[79.28539,10.93384],[79.28868,10.93541],[79.28698,10.9374],[79.29186,10.93802],[79.29522,10.93478],[79.30095,10.93582],[79.30322,10.93218],[79.30937,10.92801],[79.31624,10.92814],[79.32404,10.92474],[79.32798,10.92501],[79.32782,10.92262],[79.33226,10.92057],[79.32658,10.91856],[79.32893,10.9182],[79.32888,10.91633],[79.33442,10.91267],[79.33693,10.91381],[79.34815,10.91071],[79.34855,10.9087],[79.35198,10.90777],[79.35872,10.89988],[79.36824,10.89917],[79.37019,10.89452],[79.37705,10.89323],[79.3901,10.89612],[79.40506,10.8931],[79.40749,10.8917],[79.40943,10.88763],[79.41867,10.8843],[79.42273,10.88122],[79.4268,10.88109],[79.42843,10.87886],[79.43369,10.87808],[79.43871,10.87323],[79.4464,10.87201],[79.45616,10.86375],[79.45815,10.86323],[79.4589,10.86585],[79.46628,10.86472],[79.46476,10.86904],[79.47201,10.86989],[79.47199,10.87228],[79.47409,10.87142],[79.47604,10.87256],[79.47778,10.86726],[79.48574,10.86917],[79.48504,10.87632],[79.48646,10.87728],[79.48395,10.87904],[79.48672,10.88142],[79.48609,10.88308],[79.4881,10.88351],[79.48827,10.88938],[79.49308,10.88873],[79.49638,10.89009],[79.50238,10.8947],[79.50722,10.896],[79.50778,10.89877],[79.50677,10.90413],[79.49874,10.90379],[79.49267,10.90572],[79.49164,10.90742],[79.49361,10.90899],[79.49353,10.91645],[79.48448,10.91884],[79.4843,10.92092],[79.49874,10.93184],[79.49977,10.94022],[79.50123,10.94165],[79.50767,10.94051],[79.51436,10.94188],[79.51576,10.94697],[79.51888,10.94657],[79.5197,10.95027],[79.51982,10.9553],[79.51588,10.95633],[79.51527,10.97868],[79.5131,10.98291],[79.50859,10.98397],[79.51058,10.98642],[79.51201,10.98561],[79.51207,10.9882],[79.52179,10.98746],[79.5254,10.98951],[79.52297,10.99715],[79.54729,11.00073],[79.54522,11.00387],[79.54123,11.00375],[79.54216,11.00842],[79.53511,11.00827],[79.53112,11.0109],[79.52473,11.00785],[79.52313,11.00884],[79.52361,11.01416],[79.52535,11.01434],[79.52461,11.01623],[79.52871,11.01542],[79.52937,11.01355],[79.5322,11.01401],[79.53012,11.02681],[79.52046,11.02597],[79.51167,11.0279],[79.51343,11.02818],[79.51375,11.0301],[79.51197,11.03666],[79.51267,11.0394],[79.51093,11.04208],[79.51864,11.04708],[79.51883,11.05016],[79.52172,11.05361],[79.5311,11.05695],[79.53281,11.05944],[79.53226,11.06193],[79.53697,11.06582],[79.53668,11.07043],[79.54381,11.07503],[79.54549,11.07383],[79.55257,11.07782],[79.55287,11.08306],[79.54977,11.08518],[79.54384,11.08699],[79.54106,11.08473],[79.54154,11.08906],[79.54853,11.10131],[79.54707,11.1047],[79.54166,11.10466],[79.54153,11.09531],[79.53872,11.09569],[79.53833,11.09839],[79.53608,11.09857],[79.53606,11.10136]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"587","area_level":"District","area_name":"The Nilgiris","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.004,11.51436],[77.00427,11.51539],[77.00457,11.51702],[77.00053,11.51711],[76.99973,11.51588],[76.99987,11.51556],[77.00122,11.51358],[77.00193,11.51363],[77.004,11.51349],[77.004,11.51436]]],[[[76.95511,11.54879],[76.95471,11.55149],[76.95476,11.55289],[76.95372,11.55363],[76.95313,11.55433],[76.95163,11.55516],[76.95121,11.55496],[76.9497,11.55446],[76.94907,11.55342],[76.94872,11.55159],[76.95141,11.55029],[76.95217,11.54833],[76.95364,11.54703],[76.95511,11.54879]]],[[[76.52053,11.70014],[76.51111,11.70498],[76.50459,11.69913],[76.50152,11.69916],[76.4936,11.69298],[76.48843,11.69135],[76.48168,11.69252],[76.48262,11.68611],[76.47443,11.68122],[76.45821,11.66433],[76.45514,11.66578],[76.45035,11.66416],[76.44913,11.6656],[76.44349,11.66359],[76.44041,11.66581],[76.43533,11.6647],[76.43339,11.6668],[76.43136,11.66636],[76.43637,11.65347],[76.44111,11.65132],[76.44406,11.64719],[76.44343,11.64362],[76.43455,11.63576],[76.43248,11.63129],[76.43006,11.63079],[76.4262,11.63357],[76.40689,11.63428],[76.3881,11.62967],[76.38329,11.62404],[76.38393,11.61205],[76.37827,11.60851],[76.37798,11.60191],[76.3671,11.59833],[76.35458,11.58931],[76.3404,11.5872],[76.33996,11.59313],[76.33588,11.59574],[76.32121,11.58619],[76.31592,11.57659],[76.31054,11.57739],[76.30238,11.57123],[76.30013,11.57446],[76.29913,11.58281],[76.29594,11.59042],[76.28609,11.5902],[76.27891,11.60094],[76.2743,11.59368],[76.26493,11.59389],[76.2646,11.59094],[76.26115,11.5903],[76.25351,11.5854],[76.24921,11.58007],[76.24375,11.57849],[76.23308,11.57077],[76.24043,11.5559],[76.2444,11.55409],[76.24237,11.55049],[76.24628,11.54628],[76.24451,11.543],[76.24977,11.53731],[76.25151,11.53778],[76.25049,11.52757],[76.24453,11.5261],[76.24056,11.52781],[76.23848,11.52627],[76.24422,11.51736],[76.24816,11.51649],[76.24852,11.50647],[76.25229,11.5],[76.24979,11.49832],[76.24757,11.46854],[76.2646,11.48089],[76.26769,11.48053],[76.27044,11.47716],[76.27562,11.47687],[76.27856,11.47922],[76.28157,11.47924],[76.28444,11.48292],[76.29418,11.47289],[76.29289,11.47022],[76.29047,11.46957],[76.29352,11.46568],[76.30515,11.46779],[76.32547,11.45333],[76.33558,11.46161],[76.33815,11.46188],[76.34223,11.46759],[76.3463,11.46415],[76.37149,11.45406],[76.37257,11.45101],[76.37855,11.44919],[76.39768,11.43502],[76.4187,11.44178],[76.41508,11.42263],[76.46208,11.38747],[76.51775,11.37156],[76.51512,11.35969],[76.50818,11.35412],[76.54786,11.35889],[76.54744,11.34547],[76.54997,11.33099],[76.5373,11.31404],[76.53936,11.30462],[76.54576,11.30031],[76.52626,11.28826],[76.52218,11.27134],[76.48711,11.25829],[76.4663,11.24512],[76.45309,11.23937],[76.44896,11.20547],[76.43936,11.20296],[76.43862,11.19896],[76.4519,11.19922],[76.45844,11.18768],[76.46662,11.19332],[76.47347,11.19493],[76.47237,11.20875],[76.50328,11.21161],[76.51048,11.21164],[76.51609,11.2043],[76.53385,11.19675],[76.6009,11.20659],[76.62972,11.19417],[76.65341,11.21012],[76.67824,11.22112],[76.68478,11.22773],[76.68296,11.23006],[76.68531,11.2312],[76.68422,11.23374],[76.69827,11.2396],[76.7071,11.23838],[76.70696,11.24027],[76.70085,11.24566],[76.70134,11.24917],[76.69988,11.25197],[76.70022,11.25865],[76.70566,11.26334],[76.71051,11.26076],[76.71148,11.25735],[76.71736,11.25706],[76.72289,11.25379],[76.72976,11.2454],[76.73712,11.24463],[76.73944,11.24995],[76.74303,11.25318],[76.74691,11.25238],[76.74904,11.24867],[76.75492,11.24866],[76.75584,11.25258],[76.75186,11.2547],[76.75597,11.2552],[76.75776,11.25846],[76.7589,11.25763],[76.76393,11.26029],[76.76765,11.2641],[76.76696,11.26799],[76.76894,11.26868],[76.76983,11.27671],[76.76898,11.28004],[76.76516,11.28367],[76.76914,11.28956],[76.77567,11.28615],[76.77967,11.28585],[76.78705,11.27921],[76.79031,11.27912],[76.79633,11.28846],[76.79786,11.29549],[76.80697,11.29916],[76.81781,11.28993],[76.82424,11.2928],[76.82551,11.29045],[76.82811,11.29071],[76.82998,11.29327],[76.83376,11.29007],[76.84273,11.28742],[76.84591,11.29267],[76.85083,11.29291],[76.85083,11.29494],[76.85443,11.29606],[76.85542,11.30304],[76.854,11.30577],[76.85995,11.3036],[76.85957,11.31245],[76.85684,11.31395],[76.85457,11.31811],[76.85886,11.3209],[76.86035,11.32458],[76.85107,11.32721],[76.85491,11.33305],[76.84824,11.33484],[76.84983,11.34263],[76.85411,11.34054],[76.85461,11.34527],[76.85644,11.34603],[76.85921,11.3434],[76.8617,11.34745],[76.86832,11.34458],[76.86928,11.34617],[76.86345,11.3479],[76.86247,11.35128],[76.86787,11.35498],[76.87356,11.35186],[76.87673,11.35838],[76.87885,11.35818],[76.88422,11.35169],[76.88654,11.35501],[76.88613,11.35767],[76.89032,11.36123],[76.88843,11.36469],[76.88981,11.36549],[76.89289,11.36606],[76.90044,11.36142],[76.90237,11.36298],[76.90257,11.35937],[76.90005,11.35792],[76.90217,11.35403],[76.90149,11.35121],[76.90635,11.35043],[76.91292,11.35267],[76.91467,11.35624],[76.91884,11.35626],[76.92181,11.35912],[76.92527,11.35731],[76.92531,11.36023],[76.92941,11.36028],[76.93293,11.36273],[76.93265,11.35615],[76.93349,11.35939],[76.93487,11.35847],[76.9377,11.3597],[76.93759,11.3635],[76.95012,11.3658],[76.93749,11.36657],[76.93417,11.36814],[76.93543,11.3703],[76.92843,11.3687],[76.93341,11.37643],[76.94811,11.37642],[76.95555,11.37945],[76.9681,11.39191],[76.9704,11.39716],[76.97576,11.39574],[76.981,11.4013],[76.9767,11.40711],[76.97605,11.41391],[76.97975,11.43298],[76.98292,11.44036],[76.99771,11.44056],[76.99846,11.4363],[77.00067,11.43467],[77.00744,11.43442],[77.01013,11.43843],[77.01192,11.44297],[77.01221,11.45201],[77.00398,11.46447],[76.99926,11.47525],[76.99261,11.4804],[76.99105,11.48117],[76.98779,11.47667],[76.97182,11.46765],[76.97089,11.46972],[76.96665,11.46966],[76.95592,11.47914],[76.9476,11.47884],[76.93527,11.48216],[76.93717,11.49553],[76.93904,11.49797],[76.93328,11.50351],[76.93376,11.50671],[76.93982,11.51479],[76.93971,11.51671],[76.9411,11.5161],[76.94136,11.51832],[76.94465,11.51798],[76.94508,11.51929],[76.94401,11.52033],[76.93969,11.51896],[76.94317,11.52236],[76.94271,11.52356],[76.93836,11.52348],[76.93797,11.52707],[76.9264,11.52508],[76.92736,11.53329],[76.9204,11.52993],[76.91436,11.52418],[76.90886,11.52564],[76.90828,11.52786],[76.89548,11.52739],[76.87261,11.52326],[76.86931,11.51863],[76.86628,11.51959],[76.86449,11.52191],[76.86361,11.52929],[76.86657,11.53336],[76.86311,11.5441],[76.84912,11.55748],[76.84864,11.56097],[76.83948,11.56631],[76.83955,11.5695],[76.8304,11.57193],[76.83104,11.57422],[76.83531,11.5752],[76.83753,11.58215],[76.84163,11.58182],[76.84224,11.58542],[76.84672,11.58206],[76.84797,11.59273],[76.8446,11.59615],[76.83893,11.59715],[76.83173,11.60108],[76.82523,11.60729],[76.82284,11.60808],[76.81757,11.60472],[76.80924,11.60838],[76.79635,11.60841],[76.79153,11.61274],[76.77476,11.61234],[76.77019,11.61569],[76.76482,11.61413],[76.75692,11.61844],[76.74707,11.61378],[76.73684,11.61531],[76.72183,11.61439],[76.70271,11.61584],[76.68459,11.61396],[76.67147,11.61591],[76.6502,11.61345],[76.63046,11.61379],[76.61398,11.60755],[76.61065,11.61085],[76.59761,11.61064],[76.59647,11.61625],[76.59229,11.61866],[76.58379,11.61376],[76.57908,11.61573],[76.57675,11.6145],[76.57521,11.61919],[76.56966,11.61806],[76.56266,11.62291],[76.55995,11.62247],[76.56142,11.63268],[76.55958,11.63317],[76.55873,11.63851],[76.55391,11.64571],[76.5544,11.65557],[76.55006,11.6611],[76.54931,11.66498],[76.5514,11.67188],[76.55056,11.67419],[76.53884,11.68949],[76.52053,11.70014]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"588","area_level":"District","area_name":"Theni","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.62249,10.21871],[77.61523,10.21243],[77.61007,10.21352],[77.60466,10.20893],[77.6038,10.20592],[77.60041,10.20587],[77.60085,10.20833],[77.59578,10.20579],[77.59615,10.20216],[77.603,10.19996],[77.59832,10.19431],[77.59189,10.19131],[77.59078,10.19679],[77.58905,10.19676],[77.5873,10.19298],[77.57406,10.18698],[77.56975,10.18127],[77.5674,10.18266],[77.56869,10.18728],[77.56719,10.18777],[77.56812,10.18869],[77.56685,10.19067],[77.56883,10.19312],[77.56606,10.19427],[77.56682,10.19537],[77.55566,10.20208],[77.54981,10.19992],[77.54925,10.20429],[77.54818,10.20399],[77.54636,10.19873],[77.54956,10.19674],[77.5473,10.19563],[77.5513,10.19183],[77.54446,10.19252],[77.54468,10.18953],[77.54312,10.18787],[77.54725,10.18611],[77.54623,10.18285],[77.54375,10.18169],[77.54295,10.18347],[77.54044,10.18384],[77.53921,10.18812],[77.53806,10.18771],[77.5368,10.17962],[77.52799,10.17862],[77.52315,10.17614],[77.5276,10.17394],[77.51774,10.16603],[77.51657,10.1665],[77.5118,10.1609],[77.50001,10.16097],[77.4957,10.1547],[77.48775,10.14774],[77.48622,10.15174],[77.48263,10.15393],[77.48102,10.15222],[77.48181,10.14859],[77.4807,10.14705],[77.47584,10.14771],[77.47437,10.14534],[77.47206,10.14575],[77.47239,10.14259],[77.47086,10.14187],[77.46966,10.14344],[77.46804,10.14225],[77.46952,10.13972],[77.46779,10.13407],[77.46445,10.13087],[77.46565,10.12877],[77.45923,10.13244],[77.457,10.13177],[77.45212,10.13606],[77.44478,10.13627],[77.44291,10.13308],[77.43818,10.13241],[77.43186,10.1358],[77.42758,10.13608],[77.417,10.14344],[77.41143,10.14502],[77.40875,10.15845],[77.39836,10.16009],[77.39543,10.16279],[77.39304,10.15592],[77.38467,10.14668],[77.37548,10.14287],[77.37208,10.13931],[77.36788,10.14539],[77.36239,10.15075],[77.36032,10.15103],[77.35442,10.14843],[77.35053,10.14292],[77.34147,10.13602],[77.32929,10.14268],[77.32487,10.13274],[77.32515,10.12828],[77.32372,10.12757],[77.31301,10.13539],[77.30248,10.136],[77.29275,10.13108],[77.28953,10.12496],[77.28681,10.12716],[77.28415,10.12538],[77.28239,10.12261],[77.28304,10.11777],[77.26659,10.11934],[77.26658,10.12169],[77.25269,10.12445],[77.24895,10.12681],[77.24803,10.13026],[77.2446,10.13095],[77.23433,10.12845],[77.23205,10.12528],[77.23276,10.12396],[77.22992,10.12252],[77.23038,10.1205],[77.22717,10.12119],[77.21643,10.11585],[77.21085,10.11816],[77.20789,10.1177],[77.20648,10.11256],[77.20462,10.11276],[77.20133,10.10621],[77.20401,10.09728],[77.20328,10.08881],[77.21984,10.07716],[77.22289,10.07298],[77.2235,10.06918],[77.23144,10.06627],[77.23447,10.05984],[77.24439,10.05197],[77.2548,10.03667],[77.2619,10.02973],[77.26159,10.0212],[77.25744,10.0193],[77.25586,10.01453],[77.25319,10.01281],[77.26613,10.00189],[77.2608,9.99576],[77.26091,9.99268],[77.26177,9.9911],[77.26683,9.99029],[77.2644,9.98717],[77.26796,9.97991],[77.27267,9.97634],[77.27087,9.97091],[77.27218,9.97015],[77.27285,9.96419],[77.27184,9.96133],[77.27105,9.96243],[77.26854,9.96091],[77.26101,9.95249],[77.25296,9.95345],[77.25021,9.95118],[77.24958,9.95255],[77.24654,9.9514],[77.2479,9.94685],[77.23623,9.93537],[77.23433,9.93058],[77.23564,9.92637],[77.2317,9.92404],[77.23056,9.92139],[77.23006,9.91247],[77.22439,9.90967],[77.22258,9.90596],[77.21825,9.90429],[77.21809,9.89637],[77.22075,9.88448],[77.21752,9.88435],[77.21527,9.87739],[77.21245,9.87688],[77.22133,9.86313],[77.22614,9.86086],[77.23269,9.86154],[77.23631,9.8596],[77.23718,9.85138],[77.22814,9.84914],[77.22633,9.84634],[77.22294,9.84488],[77.22753,9.83809],[77.22544,9.8333],[77.22655,9.83072],[77.22378,9.8287],[77.22385,9.82385],[77.22178,9.82245],[77.22431,9.822],[77.22501,9.8203],[77.23273,9.82149],[77.23259,9.81742],[77.24115,9.81563],[77.24679,9.808],[77.24509,9.80278],[77.24667,9.79789],[77.24173,9.79579],[77.24016,9.79692],[77.23601,9.79006],[77.22266,9.78779],[77.22499,9.77556],[77.2324,9.76857],[77.22747,9.76421],[77.22514,9.75277],[77.22023,9.74504],[77.21984,9.74208],[77.22268,9.73999],[77.22184,9.7374],[77.22391,9.73037],[77.22067,9.72964],[77.21838,9.72608],[77.20753,9.72476],[77.20346,9.72191],[77.20571,9.72021],[77.2061,9.71757],[77.20471,9.71656],[77.2053,9.71309],[77.20195,9.70389],[77.20458,9.70158],[77.20672,9.69466],[77.20055,9.686],[77.19411,9.67056],[77.18703,9.66665],[77.18751,9.66144],[77.18324,9.66069],[77.17999,9.65687],[77.17927,9.64486],[77.17405,9.63731],[77.17415,9.63287],[77.17626,9.62948],[77.1746,9.62658],[77.16911,9.62397],[77.16778,9.61502],[77.16573,9.61393],[77.1672,9.61171],[77.1703,9.60967],[77.17348,9.61121],[77.17702,9.61055],[77.18868,9.6061],[77.19082,9.60922],[77.19706,9.61085],[77.1982,9.61436],[77.20896,9.61344],[77.21047,9.61086],[77.20984,9.60497],[77.21444,9.60071],[77.21714,9.60162],[77.22218,9.59771],[77.22249,9.59278],[77.2343,9.58155],[77.23713,9.58106],[77.24277,9.58522],[77.25307,9.58297],[77.25833,9.57649],[77.26145,9.57683],[77.26385,9.57374],[77.26971,9.57277],[77.27201,9.57645],[77.27693,9.57575],[77.28048,9.57958],[77.29034,9.58477],[77.29007,9.58869],[77.29456,9.58924],[77.30381,9.59874],[77.31537,9.60071],[77.31782,9.6025],[77.32241,9.59829],[77.325,9.59768],[77.32815,9.60015],[77.3299,9.59899],[77.32453,9.59334],[77.32618,9.58863],[77.32383,9.58516],[77.32562,9.58345],[77.32536,9.58003],[77.33251,9.57881],[77.33949,9.57331],[77.3419,9.57646],[77.34223,9.58101],[77.34548,9.58796],[77.35459,9.60407],[77.36113,9.60226],[77.36277,9.6002],[77.36581,9.59974],[77.36614,9.59596],[77.36239,9.59556],[77.36085,9.59784],[77.35748,9.59443],[77.35497,9.58668],[77.3583,9.58393],[77.35989,9.57738],[77.35814,9.57391],[77.35297,9.57286],[77.35026,9.56708],[77.35291,9.55958],[77.36126,9.55794],[77.36508,9.55273],[77.36562,9.535],[77.36874,9.53478],[77.37296,9.52989],[77.37334,9.52685],[77.37693,9.52483],[77.38013,9.52536],[77.38518,9.51923],[77.39595,9.5233],[77.40051,9.52736],[77.40247,9.52506],[77.41089,9.53184],[77.41413,9.53661],[77.42249,9.53959],[77.42787,9.54652],[77.44107,9.54668],[77.44457,9.54336],[77.44813,9.54547],[77.45589,9.54159],[77.46291,9.54618],[77.47307,9.5485],[77.47729,9.55219],[77.47358,9.57164],[77.4678,9.57468],[77.46433,9.57983],[77.4741,9.59592],[77.48546,9.60687],[77.48638,9.6144],[77.4941,9.62149],[77.49902,9.63019],[77.50627,9.63848],[77.50363,9.6502],[77.51189,9.65266],[77.51991,9.66055],[77.52318,9.66031],[77.52772,9.66469],[77.5282,9.66871],[77.53535,9.67504],[77.54073,9.69534],[77.54418,9.69362],[77.54594,9.69579],[77.54663,9.70545],[77.55404,9.71506],[77.55355,9.72197],[77.55777,9.72735],[77.55932,9.73433],[77.56478,9.74145],[77.56434,9.74455],[77.56631,9.74778],[77.56905,9.75051],[77.57358,9.75146],[77.58801,9.76864],[77.59865,9.7766],[77.60345,9.79132],[77.60607,9.7923],[77.61207,9.79915],[77.62309,9.82163],[77.62375,9.83122],[77.62564,9.83505],[77.6246,9.83632],[77.61944,9.83574],[77.61704,9.84039],[77.61871,9.84616],[77.61767,9.85429],[77.62001,9.86217],[77.63195,9.87127],[77.64485,9.88826],[77.64804,9.89591],[77.64629,9.90278],[77.65287,9.91033],[77.65412,9.91856],[77.65648,9.92065],[77.66742,9.91327],[77.66861,9.91433],[77.67905,9.93285],[77.6732,9.96181],[77.67734,9.96225],[77.68186,9.96885],[77.6919,9.9681],[77.69676,9.98275],[77.69701,10.00055],[77.69861,10.00661],[77.69792,10.01731],[77.70155,10.01399],[77.70873,10.01835],[77.70894,10.02146],[77.71255,10.02586],[77.71167,10.03397],[77.70996,10.03289],[77.70631,10.03822],[77.7126,10.04788],[77.71005,10.04987],[77.70771,10.06458],[77.7089,10.08024],[77.70819,10.0823],[77.69694,10.08667],[77.70183,10.09718],[77.70254,10.10274],[77.6942,10.11109],[77.67633,10.11779],[77.67606,10.12021],[77.66863,10.12237],[77.66911,10.12614],[77.67548,10.12661],[77.6744,10.14047],[77.67638,10.14463],[77.68217,10.14373],[77.6864,10.14555],[77.69211,10.14536],[77.69725,10.13522],[77.70355,10.13412],[77.70787,10.1289],[77.7157,10.12869],[77.72174,10.13403],[77.72769,10.13262],[77.72888,10.13004],[77.72945,10.13138],[77.72913,10.13356],[77.72427,10.1361],[77.72393,10.14617],[77.72464,10.1539],[77.72739,10.15394],[77.72928,10.15907],[77.72191,10.16683],[77.71584,10.17004],[77.71224,10.17001],[77.71255,10.1747],[77.70528,10.18417],[77.70439,10.19022],[77.70288,10.1906],[77.70127,10.19516],[77.70131,10.19629],[77.70479,10.19614],[77.70426,10.20062],[77.70634,10.20131],[77.7074,10.20602],[77.71003,10.2063],[77.70654,10.21586],[77.70615,10.21259],[77.70249,10.21417],[77.70244,10.20775],[77.69669,10.20627],[77.69794,10.20187],[77.69321,10.19691],[77.68566,10.20174],[77.68149,10.20148],[77.68031,10.19854],[77.67141,10.19619],[77.66755,10.18972],[77.66443,10.18878],[77.66281,10.18962],[77.6637,10.19155],[77.662,10.19312],[77.6601,10.19107],[77.65788,10.19208],[77.65757,10.19451],[77.65289,10.19471],[77.65378,10.1985],[77.64971,10.19872],[77.64971,10.20129],[77.64504,10.20244],[77.64527,10.20447],[77.64397,10.20505],[77.64241,10.20304],[77.63608,10.2075],[77.63205,10.2063],[77.63032,10.21004],[77.62571,10.21093],[77.62395,10.2129],[77.62249,10.21871]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"589","area_level":"District","area_name":"Thiruvallur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.84781,13.32432],[79.84765,13.32435],[79.84752,13.32448],[79.84727,13.32527],[79.84567,13.32758],[79.84508,13.32653],[79.84432,13.32557],[79.84324,13.32498],[79.84291,13.32465],[79.84273,13.32415],[79.84265,13.32324],[79.84268,13.32258],[79.84283,13.32217],[79.84295,13.32195],[79.84316,13.32177],[79.84337,13.32167],[79.84373,13.32163],[79.84407,13.32171],[79.84437,13.32188],[79.8446,13.32209],[79.84477,13.32243],[79.84492,13.32294],[79.84537,13.32311],[79.84561,13.32302],[79.84579,13.3229],[79.846,13.32264],[79.84626,13.32247],[79.84642,13.32246],[79.84667,13.32252],[79.84684,13.32261],[79.84688,13.32282],[79.84658,13.32338],[79.84659,13.32347],[79.8468,13.32368],[79.84698,13.32375],[79.84726,13.32374],[79.84819,13.323],[79.84903,13.32302],[79.84977,13.32318],[79.84992,13.32332],[79.85001,13.32352],[79.85004,13.32399],[79.84965,13.3246],[79.84935,13.32479],[79.84914,13.32481],[79.84807,13.32429],[79.84781,13.32432]]],[[[80.30364,13.47313],[80.29293,13.49599],[80.28121,13.53351],[80.26875,13.56463],[80.26405,13.56264],[80.25111,13.50277],[80.24181,13.47065],[80.24097,13.47331],[80.2352,13.474],[80.22589,13.48507],[80.21383,13.4861],[80.2146,13.49027],[80.2106,13.49048],[80.20995,13.48628],[80.18653,13.49065],[80.17712,13.49117],[80.16304,13.48823],[80.15384,13.49089],[80.14514,13.49142],[80.14553,13.49949],[80.13921,13.50427],[80.13171,13.50144],[80.12674,13.50463],[80.11884,13.50369],[80.11277,13.50595],[80.11151,13.49328],[80.10821,13.48892],[80.10516,13.49335],[80.10093,13.48985],[80.10306,13.48695],[80.07819,13.48881],[80.07714,13.5268],[80.08284,13.5328],[80.08864,13.5354],[80.08126,13.54975],[80.0684,13.54461],[80.06275,13.54536],[80.05693,13.53664],[80.04304,13.53745],[80.0398,13.53901],[80.02844,13.53882],[80.0239,13.54604],[80.02177,13.54495],[80.01689,13.54718],[79.9986,13.54272],[80.00052,13.52568],[80.00799,13.52581],[80.01765,13.52956],[80.01952,13.51925],[80.02719,13.5137],[80.03552,13.51831],[80.04842,13.51225],[80.04662,13.49368],[80.03,13.49819],[80.0159,13.49795],[80.01444,13.49612],[80.01584,13.48903],[80.01352,13.48519],[80.00762,13.48135],[80.00749,13.47864],[79.98408,13.47958],[79.9824,13.47046],[79.97242,13.46909],[79.97111,13.44026],[79.97287,13.43972],[79.97334,13.42967],[79.97073,13.4273],[79.96579,13.42657],[79.96197,13.42338],[79.95749,13.42356],[79.95665,13.42219],[79.95507,13.42238],[79.95572,13.42521],[79.95255,13.42584],[79.94948,13.42375],[79.94818,13.42503],[79.93961,13.42503],[79.94184,13.41672],[79.93457,13.41645],[79.93774,13.41489],[79.93839,13.4128],[79.94221,13.4128],[79.94138,13.41015],[79.9457,13.40773],[79.94128,13.40061],[79.94436,13.39687],[79.95623,13.39714],[79.96145,13.3956],[79.96275,13.39136],[79.95805,13.37918],[79.9539,13.37712],[79.94999,13.37981],[79.94822,13.38324],[79.94766,13.38173],[79.94505,13.38178],[79.94919,13.37767],[79.94947,13.37548],[79.94542,13.36822],[79.94565,13.36374],[79.9422,13.36356],[79.9429,13.36127],[79.94099,13.36128],[79.93801,13.35552],[79.93591,13.35644],[79.93512,13.35411],[79.93377,13.35448],[79.93311,13.35192],[79.9313,13.35151],[79.92921,13.35562],[79.92529,13.35836],[79.91597,13.35987],[79.91681,13.35808],[79.91336,13.35224],[79.9149,13.35156],[79.91485,13.34814],[79.91038,13.34727],[79.90516,13.34353],[79.90381,13.34043],[79.8835,13.33286],[79.8829,13.32332],[79.88085,13.32478],[79.87763,13.32428],[79.86807,13.33107],[79.86281,13.31692],[79.85355,13.32071],[79.85326,13.31596],[79.84805,13.3166],[79.83609,13.31422],[79.82919,13.31751],[79.81736,13.31855],[79.8089,13.31725],[79.80788,13.31413],[79.8036,13.31098],[79.80476,13.30744],[79.80164,13.3005],[79.79173,13.29352],[79.78559,13.29666],[79.78023,13.30615],[79.7752,13.30598],[79.77042,13.30922],[79.76814,13.31392],[79.76027,13.3182],[79.76186,13.31264],[79.76121,13.30707],[79.76028,13.30161],[79.75675,13.29529],[79.75242,13.29166],[79.74423,13.28859],[79.73924,13.29135],[79.73404,13.28902],[79.73065,13.28287],[79.73281,13.28214],[79.73504,13.27594],[79.74025,13.27376],[79.74172,13.27095],[79.74808,13.27099],[79.75164,13.26537],[79.76119,13.25752],[79.7816,13.25159],[79.78721,13.24518],[79.79473,13.2421],[79.79449,13.22632],[79.79325,13.22641],[79.79309,13.2293],[79.78478,13.2279],[79.78115,13.22339],[79.77796,13.22359],[79.77548,13.21531],[79.77292,13.21546],[79.77394,13.21916],[79.76977,13.21771],[79.76884,13.21931],[79.76756,13.21806],[79.76425,13.21911],[79.76096,13.21526],[79.75984,13.20744],[79.75499,13.20648],[79.75008,13.20799],[79.751,13.21642],[79.74797,13.22167],[79.74247,13.22526],[79.74277,13.22829],[79.73908,13.2295],[79.73732,13.23653],[79.73264,13.23688],[79.73281,13.23327],[79.73028,13.23253],[79.7314,13.22245],[79.72588,13.22166],[79.72165,13.22346],[79.71839,13.21652],[79.71641,13.21642],[79.71196,13.21777],[79.71186,13.21927],[79.70794,13.22151],[79.70271,13.2224],[79.70224,13.22415],[79.7061,13.2342],[79.71407,13.23573],[79.71124,13.2425],[79.71255,13.24467],[79.70897,13.24808],[79.70912,13.25104],[79.70327,13.2511],[79.70098,13.25303],[79.69825,13.25099],[79.69634,13.24325],[79.69307,13.24329],[79.69594,13.23856],[79.69268,13.24065],[79.68914,13.23983],[79.68427,13.24443],[79.68024,13.25276],[79.67829,13.26165],[79.68026,13.26224],[79.68057,13.26456],[79.68771,13.2667],[79.68951,13.26374],[79.68913,13.26094],[79.69112,13.26098],[79.69172,13.26355],[79.6933,13.26309],[79.69575,13.26728],[79.69426,13.2705],[79.69082,13.26768],[79.68881,13.27087],[79.69367,13.27348],[79.69393,13.2798],[79.69046,13.28033],[79.68943,13.28303],[79.68319,13.28819],[79.68126,13.28799],[79.68261,13.29582],[79.67814,13.29741],[79.67425,13.28177],[79.67134,13.28012],[79.66857,13.28114],[79.66539,13.27872],[79.66471,13.28194],[79.66664,13.28598],[79.66387,13.28977],[79.65891,13.28669],[79.65783,13.28385],[79.65458,13.28563],[79.65179,13.29183],[79.64248,13.29015],[79.64127,13.27559],[79.63948,13.277],[79.63834,13.28744],[79.63805,13.28425],[79.63326,13.28238],[79.63436,13.27743],[79.63155,13.27719],[79.63406,13.27157],[79.63204,13.2713],[79.63164,13.2697],[79.62768,13.27015],[79.61955,13.27956],[79.61412,13.2827],[79.60609,13.27955],[79.60869,13.28749],[79.60579,13.2882],[79.59606,13.28485],[79.59489,13.27605],[79.59266,13.27506],[79.5946,13.27174],[79.59384,13.26641],[79.59131,13.26143],[79.58257,13.25734],[79.57927,13.25779],[79.57349,13.25936],[79.55841,13.27272],[79.54002,13.27236],[79.5346,13.2754],[79.53366,13.27908],[79.53515,13.28509],[79.53878,13.28785],[79.54123,13.29244],[79.5371,13.29443],[79.53826,13.2959],[79.53508,13.29802],[79.53486,13.30137],[79.54217,13.31024],[79.54411,13.31678],[79.53936,13.32188],[79.54185,13.3273],[79.53731,13.33865],[79.53557,13.33819],[79.52594,13.34439],[79.52179,13.34181],[79.51108,13.34197],[79.51008,13.33417],[79.49738,13.33204],[79.49971,13.34779],[79.48049,13.34],[79.47457,13.34109],[79.47281,13.33924],[79.46544,13.33873],[79.46407,13.34172],[79.45626,13.33857],[79.45311,13.33988],[79.44766,13.34632],[79.43543,13.35171],[79.43573,13.34814],[79.43259,13.34539],[79.43167,13.33671],[79.42099,13.33629],[79.41472,13.33003],[79.41291,13.32993],[79.41254,13.33295],[79.40536,13.33504],[79.40248,13.33023],[79.39836,13.3302],[79.39876,13.32167],[79.4019,13.32148],[79.40202,13.31735],[79.39783,13.31736],[79.39576,13.31572],[79.39347,13.3176],[79.38781,13.31805],[79.38349,13.31326],[79.38189,13.30749],[79.38866,13.30978],[79.38984,13.29743],[79.39412,13.29993],[79.40217,13.29971],[79.4053,13.29757],[79.41577,13.29958],[79.41958,13.29523],[79.41841,13.29352],[79.41883,13.28975],[79.42004,13.28955],[79.43054,13.30025],[79.44542,13.30125],[79.44631,13.29162],[79.43576,13.29128],[79.43472,13.28907],[79.43373,13.27499],[79.41759,13.27177],[79.41396,13.26641],[79.41142,13.26465],[79.40842,13.26527],[79.40847,13.26391],[79.41308,13.26295],[79.41617,13.26041],[79.41686,13.25168],[79.42264,13.25132],[79.42214,13.2494],[79.41704,13.24585],[79.41966,13.24572],[79.4185,13.24296],[79.42143,13.24213],[79.42459,13.24334],[79.42769,13.24155],[79.43243,13.24326],[79.43768,13.24289],[79.43813,13.24003],[79.43138,13.23828],[79.43149,13.23607],[79.43979,13.23586],[79.43507,13.23223],[79.42987,13.23121],[79.43087,13.22985],[79.44,13.2306],[79.43882,13.23436],[79.44149,13.23799],[79.45329,13.23849],[79.4538,13.21694],[79.44853,13.21569],[79.43971,13.21764],[79.43947,13.21968],[79.43738,13.21955],[79.43622,13.21274],[79.44119,13.20827],[79.44385,13.20778],[79.43956,13.20589],[79.43566,13.19721],[79.43238,13.19697],[79.43315,13.19252],[79.43729,13.19106],[79.43843,13.18818],[79.4262,13.19049],[79.42146,13.1906],[79.42114,13.18908],[79.41017,13.19051],[79.40919,13.19404],[79.40084,13.19166],[79.39906,13.18781],[79.3962,13.18868],[79.3958,13.19182],[79.39202,13.19238],[79.38739,13.1891],[79.37403,13.18926],[79.37281,13.18772],[79.37814,13.18471],[79.38561,13.18305],[79.38773,13.17753],[79.38228,13.17962],[79.37555,13.1777],[79.3727,13.17884],[79.36952,13.17291],[79.37924,13.17151],[79.3806,13.16896],[79.38004,13.16293],[79.37011,13.16281],[79.36342,13.16595],[79.35612,13.16458],[79.35746,13.15594],[79.35996,13.15197],[79.36114,13.13864],[79.36339,13.13897],[79.36552,13.13393],[79.36516,13.13067],[79.36175,13.12875],[79.3605,13.12354],[79.3581,13.12172],[79.3494,13.12026],[79.34765,13.1218],[79.34511,13.12127],[79.34514,13.12913],[79.34356,13.13102],[79.34464,13.13667],[79.34131,13.13682],[79.33962,13.13045],[79.32902,13.13052],[79.32677,13.12608],[79.31867,13.12347],[79.32424,13.11854],[79.3213,13.11702],[79.31192,13.11657],[79.31903,13.11333],[79.31615,13.11163],[79.30991,13.11201],[79.30931,13.10781],[79.30719,13.10552],[79.30169,13.10778],[79.29815,13.10696],[79.29431,13.1096],[79.29584,13.11237],[79.30154,13.11366],[79.29877,13.11571],[79.29926,13.11866],[79.31246,13.12614],[79.3044,13.12662],[79.28874,13.12199],[79.28567,13.12376],[79.28402,13.12277],[79.28877,13.10937],[79.29881,13.09183],[79.29954,13.08884],[79.29763,13.08791],[79.29874,13.08675],[79.3035,13.08343],[79.32473,13.07768],[79.33012,13.07295],[79.33495,13.06055],[79.34674,13.06336],[79.3515,13.06249],[79.3553,13.06682],[79.3793,13.07547],[79.37951,13.08012],[79.40151,13.08105],[79.4012,13.08003],[79.41362,13.08538],[79.41675,13.08463],[79.41523,13.08968],[79.41896,13.0951],[79.42263,13.09688],[79.42291,13.09992],[79.42032,13.09975],[79.42034,13.10381],[79.41583,13.10475],[79.40415,13.09976],[79.40401,13.10235],[79.40161,13.10421],[79.40412,13.1153],[79.41046,13.1164],[79.41331,13.11875],[79.41431,13.12439],[79.4115,13.13672],[79.41535,13.13813],[79.41878,13.14996],[79.42993,13.13825],[79.43406,13.13649],[79.43443,13.1318],[79.43861,13.12506],[79.44664,13.12637],[79.44768,13.12853],[79.45176,13.12858],[79.45352,13.12648],[79.4517,13.12112],[79.4321,13.11844],[79.42898,13.1165],[79.4332,13.11596],[79.43411,13.11149],[79.43855,13.11164],[79.43867,13.11387],[79.44366,13.11401],[79.44625,13.10335],[79.44868,13.10313],[79.45063,13.09894],[79.45094,13.09325],[79.46242,13.0954],[79.46454,13.10735],[79.47529,13.10767],[79.47419,13.12712],[79.47519,13.13039],[79.48171,13.12816],[79.48309,13.13118],[79.4814,13.13769],[79.48269,13.13992],[79.49726,13.1386],[79.49698,13.13587],[79.50031,13.1361],[79.50296,13.13868],[79.50577,13.1373],[79.51582,13.14156],[79.51729,13.14378],[79.52265,13.14419],[79.52251,13.13922],[79.52523,13.14007],[79.53258,13.13648],[79.54135,13.13762],[79.55308,13.1349],[79.55306,13.13751],[79.55952,13.13629],[79.56846,13.1375],[79.56973,13.13238],[79.56848,13.12889],[79.57044,13.12832],[79.57091,13.12189],[79.57954,13.12101],[79.59694,13.12315],[79.59929,13.13168],[79.59577,13.1399],[79.59321,13.14055],[79.58897,13.14727],[79.60316,13.14751],[79.61554,13.14461],[79.628,13.14504],[79.63458,13.14764],[79.63675,13.15154],[79.63371,13.15507],[79.63373,13.15735],[79.63226,13.15742],[79.63288,13.16158],[79.63095,13.16584],[79.63202,13.16956],[79.6301,13.17287],[79.63506,13.1718],[79.64091,13.17686],[79.64102,13.17864],[79.64495,13.17906],[79.64604,13.18668],[79.64561,13.19153],[79.64435,13.19164],[79.64813,13.1995],[79.65606,13.20554],[79.65587,13.20897],[79.65401,13.21055],[79.66121,13.21042],[79.66272,13.2061],[79.67151,13.20379],[79.6716,13.18805],[79.67014,13.18325],[79.68418,13.18717],[79.69204,13.19185],[79.70076,13.19165],[79.70079,13.18119],[79.69182,13.17724],[79.69247,13.16432],[79.69385,13.164],[79.69486,13.15904],[79.7015,13.15879],[79.70208,13.16186],[79.70624,13.16329],[79.71282,13.16247],[79.71948,13.16508],[79.73654,13.16694],[79.73641,13.16382],[79.73875,13.16064],[79.73733,13.14643],[79.739,13.14343],[79.73632,13.12764],[79.73744,13.12088],[79.73518,13.12008],[79.73605,13.11788],[79.73138,13.11482],[79.72661,13.11824],[79.72409,13.11667],[79.72208,13.10762],[79.71904,13.10685],[79.71891,13.10491],[79.71487,13.10627],[79.71353,13.10858],[79.70223,13.1108],[79.70478,13.10099],[79.70369,13.10068],[79.70167,13.1043],[79.70147,13.09942],[79.70744,13.09994],[79.70855,13.0976],[79.72278,13.09939],[79.72713,13.09643],[79.73427,13.09672],[79.73633,13.09512],[79.73553,13.08686],[79.74164,13.07601],[79.73812,13.06553],[79.72577,13.06796],[79.7258,13.06272],[79.72387,13.0627],[79.72445,13.0595],[79.71852,13.05843],[79.71861,13.05373],[79.72996,13.05449],[79.73054,13.05655],[79.73722,13.06101],[79.74262,13.05703],[79.7426,13.05539],[79.74585,13.05591],[79.74771,13.04958],[79.75141,13.05197],[79.7621,13.05179],[79.76997,13.06009],[79.77589,13.06282],[79.77888,13.06059],[79.77909,13.05367],[79.78168,13.05329],[79.78885,13.05657],[79.79005,13.05356],[79.79159,13.05375],[79.79201,13.046],[79.79023,13.04563],[79.78951,13.04287],[79.78643,13.04024],[79.78698,13.02891],[79.78989,13.02457],[79.79667,13.02767],[79.80105,13.01495],[79.81062,13.01819],[79.81076,13.0198],[79.81341,13.01997],[79.81754,13.02369],[79.81809,13.02661],[79.82299,13.02811],[79.82485,13.03101],[79.82655,13.03036],[79.82388,13.02006],[79.82676,13.01705],[79.82452,13.01136],[79.82783,13.00991],[79.8305,12.99699],[79.82335,12.99695],[79.82174,12.99284],[79.81296,12.99031],[79.81483,12.98656],[79.81999,12.98793],[79.818,12.98325],[79.82156,12.97829],[79.82241,12.96726],[79.82125,12.96202],[79.83186,12.96388],[79.83478,12.96239],[79.83236,12.95823],[79.84146,12.95876],[79.84819,12.95643],[79.84854,12.95317],[79.85243,12.95199],[79.85257,12.94839],[79.85827,12.94944],[79.87313,12.94684],[79.88164,12.94812],[79.89072,12.9451],[79.89513,12.94865],[79.89615,12.95903],[79.90353,12.96643],[79.91022,12.96593],[79.9106,12.97379],[79.91187,12.97355],[79.91404,12.97892],[79.90329,12.9832],[79.90065,12.98712],[79.88921,12.99223],[79.88924,12.99371],[79.90018,12.99579],[79.90646,13.00372],[79.90842,13.0042],[79.91261,12.99919],[79.91934,12.9969],[79.92495,12.99071],[79.92859,12.99005],[79.93244,12.99258],[79.93581,12.99247],[79.94226,13.00134],[79.94184,13.00857],[79.93348,13.0111],[79.93095,13.01393],[79.92006,13.01428],[79.92004,13.0195],[79.91138,13.01766],[79.91101,13.01463],[79.90689,13.01747],[79.90628,13.0163],[79.90041,13.01698],[79.90016,13.01962],[79.89905,13.01955],[79.90048,13.02991],[79.90007,13.03147],[79.89709,13.03178],[79.90068,13.04946],[79.91194,13.04623],[79.91779,13.04764],[79.91706,13.03642],[79.9182,13.03498],[79.93623,13.03259],[79.94896,13.03268],[79.95563,13.03777],[79.96883,13.03748],[79.96987,13.04901],[79.98375,13.05196],[79.98654,13.05618],[79.9916,13.0534],[79.99086,13.05157],[79.9868,13.0538],[79.98314,13.05007],[79.97887,13.04916],[79.97823,13.04008],[79.97421,13.03891],[79.98191,13.0317],[79.98743,13.03034],[79.98846,13.03142],[79.99174,13.03637],[79.99456,13.04674],[80.00617,13.04249],[80.02378,13.04035],[80.0252,13.03763],[80.02246,13.0239],[80.02788,13.01984],[80.04272,13.01904],[80.04398,13.02029],[80.04201,13.0297],[80.04533,13.02737],[80.04659,13.02318],[80.05244,13.02277],[80.06038,13.02729],[80.06234,13.03452],[80.0684,13.03453],[80.07105,13.03742],[80.08002,13.01612],[80.0822,13.01917],[80.08377,13.02845],[80.08283,13.03618],[80.08086,13.039],[80.08179,13.04104],[80.08859,13.04111],[80.09951,13.03494],[80.10186,13.03907],[80.10874,13.04177],[80.11646,13.03988],[80.11841,13.0355],[80.12223,13.03337],[80.12794,13.0342],[80.12939,13.04514],[80.13439,13.04465],[80.13548,13.04834],[80.14059,13.04895],[80.14234,13.05357],[80.14629,13.05404],[80.1457,13.05698],[80.14849,13.06441],[80.15406,13.06286],[80.15281,13.05427],[80.14932,13.05341],[80.14944,13.05077],[80.15336,13.04949],[80.14951,13.04888],[80.14599,13.04429],[80.14572,13.03986],[80.15796,13.04129],[80.16032,13.04488],[80.15899,13.05224],[80.1634,13.07343],[80.16137,13.08114],[80.155,13.08337],[80.15079,13.08725],[80.1461,13.08819],[80.14417,13.09114],[80.14489,13.09432],[80.14044,13.09855],[80.1402,13.10696],[80.14408,13.12501],[80.14798,13.13045],[80.14578,13.13941],[80.14877,13.13933],[80.15429,13.14231],[80.1581,13.14205],[80.16165,13.14051],[80.16586,13.13575],[80.16966,13.14297],[80.17072,13.14091],[80.17532,13.13886],[80.17713,13.13963],[80.17773,13.14243],[80.17597,13.14734],[80.17848,13.14913],[80.1845,13.14756],[80.19459,13.15398],[80.1924,13.16033],[80.19388,13.16437],[80.1908,13.16872],[80.19467,13.17516],[80.19915,13.17545],[80.19956,13.18123],[80.20184,13.18137],[80.21593,13.17226],[80.22396,13.18426],[80.22216,13.19085],[80.22275,13.19976],[80.23455,13.19633],[80.23624,13.19917],[80.23589,13.20386],[80.23845,13.20279],[80.23855,13.19948],[80.24888,13.19865],[80.24999,13.20609],[80.27044,13.20327],[80.27268,13.21806],[80.27049,13.22347],[80.27531,13.22933],[80.28281,13.22993],[80.28429,13.22842],[80.28467,13.21986],[80.29058,13.21854],[80.29874,13.21266],[80.30335,13.21285],[80.31021,13.21608],[80.31747,13.22645],[80.31768,13.22962],[80.33188,13.23544],[80.33423,13.23792],[80.33824,13.26201],[80.34527,13.27989],[80.34655,13.31327],[80.34415,13.33247],[80.33975,13.35949],[80.32959,13.40381],[80.32602,13.44168],[80.31709,13.45696],[80.30642,13.46771],[80.30364,13.47313]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"59","area_level":"District","area_name":"Bhiwani","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.01183,29.06029],[76.0,29.06727],[75.99036,29.077],[75.98379,29.08134],[75.97592,29.06719],[75.96798,29.06293],[75.96895,29.06024],[75.96779,29.05817],[75.97343,29.04304],[75.97459,29.03197],[75.97838,29.03087],[75.97723,29.01386],[75.97935,28.99535],[75.95903,29.0],[75.9559,29.0042],[75.95017,29.00462],[75.94748,29.0089],[75.92232,29.02305],[75.912,29.02152],[75.90519,29.01772],[75.89733,29.00365],[75.89838,28.99745],[75.896,28.98639],[75.88578,28.9882],[75.88402,28.98144],[75.87792,28.97098],[75.87046,28.96707],[75.86289,28.95943],[75.85316,28.95261],[75.85868,28.9394],[75.85858,28.93518],[75.84758,28.92095],[75.83735,28.91261],[75.83173,28.91158],[75.81384,28.91562],[75.81129,28.91912],[75.79929,28.92587],[75.79175,28.92519],[75.77785,28.9181],[75.77756,28.91213],[75.76977,28.89868],[75.75154,28.90529],[75.72816,28.90518],[75.71425,28.90318],[75.69112,28.9072],[75.68034,28.91224],[75.67852,28.91585],[75.67397,28.91929],[75.67146,28.92819],[75.66745,28.9296],[75.6624,28.93805],[75.65872,28.93977],[75.65364,28.93641],[75.64791,28.93766],[75.64619,28.94589],[75.64339,28.94656],[75.64416,28.94858],[75.64073,28.94917],[75.6392,28.95374],[75.63792,28.9539],[75.6403,28.95668],[75.63929,28.96152],[75.63615,28.96274],[75.63605,28.96887],[75.63155,28.97043],[75.62971,28.97314],[75.63061,28.97784],[75.62818,28.97624],[75.61769,28.98483],[75.59979,28.9899],[75.59435,28.98909],[75.59089,28.98478],[75.58638,28.98267],[75.58292,28.98318],[75.58259,28.98595],[75.57986,28.98419],[75.5792,28.98167],[75.56495,28.9805],[75.54813,28.96638],[75.52504,28.97004],[75.52116,28.96287],[75.51475,28.96073],[75.51214,28.95692],[75.51273,28.95528],[75.51003,28.95388],[75.51046,28.95046],[75.50835,28.94831],[75.51187,28.94369],[75.51156,28.94206],[75.50874,28.94224],[75.50569,28.93591],[75.50047,28.93593],[75.50084,28.93393],[75.49413,28.93467],[75.49333,28.93627],[75.49073,28.93441],[75.4765,28.93376],[75.47354,28.92426],[75.4743,28.92106],[75.48492,28.90865],[75.48398,28.90753],[75.48728,28.90795],[75.48633,28.9066],[75.48757,28.90317],[75.48981,28.90105],[75.49295,28.90114],[75.49425,28.89739],[75.4966,28.89616],[75.49861,28.87044],[75.49697,28.85697],[75.49847,28.84896],[75.5,28.84728],[75.50202,28.85093],[75.50529,28.85127],[75.50506,28.84435],[75.50767,28.84281],[75.50783,28.83922],[75.51074,28.83828],[75.51532,28.83983],[75.51555,28.83423],[75.52025,28.83399],[75.519,28.82627],[75.52011,28.82218],[75.51855,28.81706],[75.51937,28.81274],[75.51625,28.81242],[75.51182,28.80414],[75.50891,28.80272],[75.50868,28.79564],[75.51068,28.79567],[75.51127,28.79364],[75.50845,28.79131],[75.50609,28.79236],[75.50796,28.78873],[75.50466,28.78769],[75.50326,28.78253],[75.50854,28.78043],[75.51067,28.7811],[75.51405,28.77318],[75.51697,28.77468],[75.51796,28.77308],[75.51655,28.77038],[75.52206,28.7679],[75.52301,28.76608],[75.52147,28.76337],[75.52313,28.76364],[75.52212,28.76101],[75.52404,28.76098],[75.52389,28.75716],[75.52863,28.75217],[75.52914,28.74864],[75.5361,28.74517],[75.53046,28.73825],[75.54002,28.72448],[75.53991,28.72134],[75.53745,28.71801],[75.53993,28.69672],[75.53891,28.69478],[75.54502,28.6831],[75.54121,28.66049],[75.54509,28.65943],[75.54425,28.65415],[75.5498,28.64104],[75.55486,28.64384],[75.56073,28.63592],[75.56152,28.61321],[75.58627,28.61319],[75.58769,28.60799],[75.5911,28.60558],[75.62171,28.60207],[75.62406,28.59564],[75.62322,28.58901],[75.62575,28.57569],[75.62572,28.5658],[75.6317,28.5539],[75.63348,28.54444],[75.63948,28.54416],[75.64524,28.53937],[75.65372,28.53654],[75.6658,28.53599],[75.66845,28.53306],[75.671,28.52534],[75.67093,28.51712],[75.6774,28.51526],[75.68419,28.51097],[75.69022,28.50053],[75.69926,28.4954],[75.70198,28.49177],[75.70795,28.49371],[75.71859,28.49023],[75.72556,28.4895],[75.72902,28.4907],[75.73124,28.486],[75.73947,28.48476],[75.73843,28.47746],[75.73568,28.47594],[75.73567,28.46884],[75.76698,28.4613],[75.78055,28.45689],[75.78349,28.45537],[75.78386,28.45334],[75.78829,28.45355],[75.79213,28.44459],[75.78852,28.43356],[75.78083,28.43289],[75.77977,28.42751],[75.77663,28.42472],[75.76971,28.42277],[75.76672,28.41423],[75.77003,28.41264],[75.77204,28.4074],[75.77632,28.40418],[75.77679,28.40037],[75.78857,28.40415],[75.7886,28.4012],[75.79457,28.39961],[75.79948,28.40377],[75.79957,28.40715],[75.80694,28.40913],[75.80602,28.40585],[75.80982,28.40583],[75.81544,28.40762],[75.81535,28.40964],[75.81867,28.40991],[75.81985,28.40686],[75.82286,28.40562],[75.82216,28.40298],[75.83285,28.40535],[75.83741,28.40209],[75.83745,28.39737],[75.83908,28.39479],[75.84428,28.39461],[75.845,28.39168],[75.85407,28.39174],[75.85475,28.38982],[75.86401,28.389],[75.86395,28.38522],[75.87555,28.38723],[75.89013,28.38305],[75.89308,28.38969],[75.89637,28.39007],[75.89685,28.399],[75.90057,28.39933],[75.89869,28.40763],[75.90189,28.40787],[75.90363,28.41076],[75.89768,28.41568],[75.90053,28.42264],[75.89734,28.42438],[75.90331,28.4268],[75.90436,28.4294],[75.90317,28.43369],[75.90967,28.43745],[75.90826,28.44247],[75.91092,28.45436],[75.90972,28.45789],[75.90414,28.46216],[75.899,28.47046],[75.8898,28.47448],[75.88348,28.47107],[75.88023,28.47194],[75.87839,28.46869],[75.87096,28.46949],[75.87118,28.47686],[75.8689,28.4782],[75.85803,28.47736],[75.84525,28.47321],[75.84623,28.4817],[75.84444,28.48795],[75.84511,28.4946],[75.84692,28.49571],[75.85191,28.49493],[75.85267,28.49932],[75.84416,28.50213],[75.83603,28.50237],[75.82155,28.51047],[75.81594,28.51198],[75.82301,28.51658],[75.82492,28.5292],[75.82299,28.53888],[75.83246,28.55652],[75.85005,28.56667],[75.84622,28.57227],[75.84785,28.57767],[75.84761,28.58749],[75.86373,28.59352],[75.86694,28.59668],[75.88076,28.60028],[75.88316,28.60403],[75.88899,28.60583],[75.8909,28.60831],[75.89933,28.60971],[75.90761,28.61073],[75.92082,28.6064],[75.93331,28.60727],[75.94271,28.60352],[75.95636,28.6045],[75.96425,28.60816],[75.96438,28.61075],[75.97464,28.61564],[75.98548,28.61683],[75.99572,28.62247],[76.00351,28.62423],[76.00609,28.62754],[76.00597,28.63205],[76.01611,28.63877],[76.01943,28.63845],[76.04364,28.64501],[76.04363,28.64972],[76.04783,28.6545],[76.05568,28.65729],[76.05559,28.65928],[76.06296,28.6627],[76.06787,28.66342],[76.06873,28.66625],[76.07277,28.66765],[76.08272,28.66601],[76.08303,28.66789],[76.08575,28.66761],[76.0826,28.65952],[76.10553,28.65471],[76.10395,28.65602],[76.10295,28.66432],[76.09845,28.66836],[76.10104,28.67351],[76.0975,28.67512],[76.09903,28.67802],[76.09692,28.67852],[76.09734,28.68086],[76.10133,28.67962],[76.10277,28.67416],[76.11199,28.67354],[76.11449,28.67576],[76.12122,28.67421],[76.1221,28.66911],[76.12698,28.66509],[76.12356,28.65874],[76.12274,28.65131],[76.1328,28.64847],[76.13538,28.65706],[76.1355,28.66582],[76.12893,28.67458],[76.12704,28.68023],[76.12423,28.68163],[76.13377,28.68728],[76.14554,28.68694],[76.14983,28.68523],[76.15229,28.68292],[76.16943,28.67636],[76.17763,28.66829],[76.17824,28.67073],[76.18297,28.67114],[76.19048,28.68283],[76.20395,28.68013],[76.20288,28.67587],[76.23276,28.6773],[76.23335,28.68845],[76.23093,28.69602],[76.24323,28.69979],[76.24422,28.70571],[76.24221,28.71463],[76.23817,28.72271],[76.24965,28.72616],[76.25278,28.73795],[76.25544,28.74118],[76.26438,28.73552],[76.27211,28.74243],[76.2757,28.75507],[76.27394,28.75673],[76.27579,28.75776],[76.27427,28.75837],[76.27457,28.76171],[76.27777,28.77951],[76.28802,28.7784],[76.29226,28.78509],[76.2923,28.80738],[76.2999,28.80995],[76.30727,28.8089],[76.31349,28.81411],[76.33365,28.81353],[76.33629,28.8191],[76.34152,28.82457],[76.34413,28.83127],[76.34295,28.83209],[76.34425,28.83207],[76.34696,28.83778],[76.34403,28.84442],[76.34464,28.84951],[76.34609,28.84981],[76.35276,28.86284],[76.36535,28.87895],[76.36072,28.8805],[76.35824,28.88638],[76.35223,28.89114],[76.35102,28.89319],[76.35265,28.89529],[76.32592,28.89685],[76.31006,28.90092],[76.30892,28.89866],[76.30699,28.89838],[76.30438,28.90132],[76.27793,28.90826],[76.27753,28.90589],[76.27087,28.90331],[76.25593,28.90514],[76.25419,28.90361],[76.24372,28.90938],[76.23584,28.91137],[76.23648,28.92262],[76.24393,28.94143],[76.22306,28.9503],[76.22244,28.95336],[76.21238,28.95512],[76.21453,28.96271],[76.21407,28.97325],[76.22434,28.98255],[76.22872,28.98969],[76.21668,28.99477],[76.20962,28.99999],[76.20908,29.00266],[76.20143,29.0071],[76.20257,29.01173],[76.1964,29.01911],[76.198,29.01925],[76.20285,29.02795],[76.20669,29.02976],[76.20102,29.03507],[76.20081,29.04147],[76.19051,29.05137],[76.16661,29.0507],[76.15039,29.04411],[76.13718,29.04542],[76.13157,29.03512],[76.09815,29.04718],[76.09766,29.04592],[76.08766,29.04489],[76.0812,29.04186],[76.07776,29.03788],[76.07558,29.03329],[76.07498,29.02292],[76.06848,29.02277],[76.05233,29.02993],[76.04561,29.03722],[76.04358,29.0454],[76.04369,29.05787],[76.0453,29.06222],[76.04413,29.06593],[76.03896,29.06127],[76.02776,29.06444],[76.02217,29.06189],[76.01183,29.06029]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"590","area_level":"District","area_name":"Thiruvarur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.76894,10.90096],[79.76908,10.90176],[79.7683,10.90159],[79.76719,10.90119],[79.76688,10.90059],[79.76616,10.90061],[79.76606,10.89947],[79.76657,10.89936],[79.76664,10.89863],[79.76782,10.89871],[79.7679,10.89985],[79.76693,10.89997],[79.76695,10.9002],[79.76796,10.90017],[79.76935,10.89997],[79.76955,10.90075],[79.77027,10.90074],[79.77043,10.90139],[79.76949,10.90152],[79.7693,10.9009],[79.76894,10.90096]]],[[[79.76406,10.90731],[79.7651,10.90892],[79.76471,10.91035],[79.76495,10.91129],[79.76406,10.91222],[79.76373,10.90949],[79.76277,10.90902],[79.76247,10.90623],[79.76303,10.90681],[79.76327,10.90519],[79.7637,10.90513],[79.76368,10.90465],[79.76505,10.9046],[79.76508,10.90415],[79.76286,10.90386],[79.76288,10.90343],[79.7623,10.90341],[79.76218,10.90152],[79.76351,10.90158],[79.76361,10.9026],[79.76416,10.9026],[79.76425,10.90347],[79.76524,10.90354],[79.76535,10.90219],[79.76398,10.90209],[79.76398,10.90146],[79.76442,10.90146],[79.7647,10.90177],[79.76561,10.90168],[79.76602,10.90096],[79.76709,10.90156],[79.76789,10.90177],[79.76761,10.9028],[79.7672,10.90268],[79.76709,10.903],[79.7674,10.90332],[79.76709,10.90389],[79.76637,10.90343],[79.76596,10.9043],[79.76604,10.90531],[79.76449,10.9054],[79.76449,10.90586],[79.7639,10.90594],[79.76387,10.90658],[79.76406,10.90731]]],[[[79.67101,11.01726],[79.66716,11.01519],[79.6515,11.01338],[79.64686,11.01168],[79.64651,11.00977],[79.64337,11.00982],[79.64038,11.00715],[79.64049,10.99997],[79.63392,11.00029],[79.63558,10.99519],[79.63152,10.99196],[79.63475,10.99335],[79.63536,10.98942],[79.63265,10.98952],[79.63273,10.9878],[79.63064,10.98671],[79.63244,10.98494],[79.63273,10.98092],[79.62621,10.97908],[79.62536,10.98253],[79.60424,10.98218],[79.60539,10.97817],[79.60437,10.97794],[79.60837,10.97622],[79.6071,10.97438],[79.60493,10.97647],[79.60402,10.97177],[79.59691,10.97407],[79.59627,10.97775],[79.59544,10.97668],[79.59184,10.97812],[79.59117,10.97658],[79.59074,10.9829],[79.58549,10.98324],[79.57746,10.98259],[79.57712,10.97978],[79.57457,10.97849],[79.57438,10.9753],[79.57771,10.97371],[79.57475,10.9706],[79.57363,10.97175],[79.56958,10.971],[79.5681,10.97693],[79.56381,10.97648],[79.56391,10.97516],[79.55679,10.97458],[79.55625,10.97058],[79.54496,10.96555],[79.53758,10.96866],[79.53246,10.96849],[79.53268,10.961],[79.52846,10.95956],[79.52647,10.96311],[79.53019,10.96914],[79.51913,10.97087],[79.51591,10.9698],[79.51588,10.95633],[79.51982,10.9553],[79.51888,10.94657],[79.51576,10.94697],[79.51436,10.94188],[79.50767,10.94051],[79.50123,10.94165],[79.49977,10.94022],[79.49874,10.93184],[79.4843,10.92092],[79.48448,10.91884],[79.49353,10.91645],[79.49361,10.90899],[79.49164,10.90742],[79.49267,10.90572],[79.49874,10.90379],[79.50677,10.90413],[79.50778,10.89877],[79.50722,10.896],[79.50238,10.8947],[79.49638,10.89009],[79.49308,10.88873],[79.48827,10.88938],[79.4881,10.88351],[79.48609,10.88308],[79.48672,10.88142],[79.48395,10.87904],[79.48646,10.87728],[79.48504,10.87632],[79.48574,10.86917],[79.47778,10.86726],[79.47604,10.87256],[79.47409,10.87142],[79.47199,10.87228],[79.47201,10.86989],[79.46476,10.86904],[79.46628,10.86472],[79.4589,10.86585],[79.45815,10.86323],[79.45616,10.86375],[79.4464,10.87201],[79.43871,10.87323],[79.43369,10.87808],[79.42843,10.87886],[79.4268,10.88109],[79.42273,10.88122],[79.41867,10.8843],[79.40943,10.88763],[79.40749,10.8917],[79.40506,10.8931],[79.3901,10.89612],[79.37705,10.89323],[79.37019,10.89452],[79.36824,10.89917],[79.35872,10.89988],[79.35198,10.90777],[79.34855,10.9087],[79.34815,10.91071],[79.33693,10.91381],[79.33442,10.91267],[79.32888,10.91633],[79.32893,10.9182],[79.32658,10.91856],[79.33226,10.92057],[79.32782,10.92262],[79.32798,10.92501],[79.32404,10.92474],[79.31624,10.92814],[79.30937,10.92801],[79.30322,10.93218],[79.30095,10.93582],[79.29522,10.93478],[79.29186,10.93802],[79.28698,10.9374],[79.28868,10.93541],[79.28539,10.93384],[79.28503,10.92997],[79.28213,10.9299],[79.28155,10.92719],[79.27531,10.92625],[79.27539,10.92307],[79.28688,10.91789],[79.28667,10.90717],[79.29532,10.90808],[79.29571,10.9035],[79.27866,10.90254],[79.27835,10.90664],[79.26997,10.9072],[79.26828,10.90474],[79.27235,10.89781],[79.26908,10.89478],[79.27118,10.89279],[79.2679,10.88808],[79.27148,10.88416],[79.27537,10.88402],[79.27262,10.88183],[79.27402,10.88045],[79.2726,10.87882],[79.27406,10.87682],[79.2736,10.87294],[79.27876,10.87111],[79.28865,10.87155],[79.29021,10.86409],[79.29532,10.86418],[79.29516,10.85703],[79.29259,10.8569],[79.29271,10.85353],[79.2946,10.85181],[79.2948,10.84276],[79.2919,10.84223],[79.29216,10.83852],[79.28903,10.83472],[79.2894,10.83296],[79.29241,10.83556],[79.29848,10.83572],[79.30185,10.8308],[79.30178,10.82855],[79.30608,10.82388],[79.31426,10.82289],[79.32585,10.81741],[79.32363,10.81202],[79.32637,10.81037],[79.32878,10.80983],[79.33205,10.81374],[79.33566,10.81366],[79.33933,10.81067],[79.34354,10.81269],[79.34499,10.81145],[79.35292,10.81126],[79.35831,10.80657],[79.36978,10.80917],[79.37662,10.80399],[79.37306,10.80185],[79.37016,10.79628],[79.35669,10.79396],[79.34852,10.79567],[79.34808,10.79276],[79.35127,10.79113],[79.34999,10.78576],[79.34512,10.78076],[79.34395,10.77557],[79.3454,10.76622],[79.35645,10.76679],[79.35956,10.76638],[79.35984,10.76436],[79.36142,10.76505],[79.36023,10.75811],[79.36113,10.75224],[79.35374,10.74787],[79.35014,10.75016],[79.34907,10.74653],[79.34503,10.7457],[79.34527,10.74447],[79.34905,10.74459],[79.34908,10.74333],[79.34149,10.73949],[79.33218,10.73832],[79.32737,10.73965],[79.32039,10.73725],[79.31658,10.74058],[79.31305,10.74038],[79.31467,10.74509],[79.31201,10.74684],[79.30807,10.74614],[79.30161,10.73954],[79.30432,10.73504],[79.30839,10.7209],[79.30695,10.71023],[79.31309,10.70201],[79.32006,10.68487],[79.31672,10.67199],[79.3179,10.66078],[79.3429,10.6584],[79.34222,10.65592],[79.3488,10.65244],[79.34977,10.6483],[79.35427,10.64858],[79.35742,10.64586],[79.35427,10.63171],[79.34813,10.62694],[79.34956,10.61761],[79.35055,10.61515],[79.35201,10.61526],[79.3521,10.61121],[79.35422,10.61079],[79.35376,10.60672],[79.34855,10.60684],[79.34899,10.59775],[79.34674,10.59565],[79.34681,10.59247],[79.35186,10.58308],[79.35795,10.58157],[79.36111,10.57873],[79.37868,10.57956],[79.3834,10.58211],[79.39665,10.58017],[79.39999,10.57738],[79.39884,10.57525],[79.4016,10.57254],[79.39854,10.55891],[79.40034,10.55381],[79.40505,10.55211],[79.41118,10.55095],[79.41487,10.55207],[79.42071,10.54911],[79.42356,10.54993],[79.42592,10.55786],[79.43543,10.55704],[79.43928,10.55888],[79.44024,10.55773],[79.45251,10.55951],[79.45206,10.55105],[79.44421,10.55087],[79.44243,10.54836],[79.43739,10.54775],[79.43731,10.54601],[79.43507,10.54663],[79.43305,10.5447],[79.4285,10.54569],[79.42811,10.54355],[79.42337,10.54161],[79.42315,10.53536],[79.43756,10.53069],[79.4391,10.52356],[79.44075,10.52265],[79.44502,10.52361],[79.44462,10.522],[79.44715,10.52111],[79.45075,10.52177],[79.4519,10.5202],[79.45684,10.51967],[79.45775,10.51376],[79.46916,10.51135],[79.46908,10.50517],[79.46469,10.50578],[79.46089,10.50306],[79.45357,10.49226],[79.45289,10.49076],[79.45538,10.48858],[79.46174,10.48744],[79.46798,10.49271],[79.47079,10.4912],[79.47166,10.49286],[79.47655,10.49341],[79.48309,10.4896],[79.4823,10.4759],[79.47931,10.46345],[79.47193,10.46448],[79.46965,10.46176],[79.4761,10.44973],[79.47305,10.43532],[79.47226,10.43398],[79.46377,10.43473],[79.46174,10.43286],[79.45467,10.43403],[79.45236,10.43308],[79.45111,10.42966],[79.45633,10.4269],[79.4592,10.41875],[79.46515,10.41597],[79.46487,10.41085],[79.4625,10.41011],[79.46159,10.40662],[79.46969,10.40756],[79.4738,10.40653],[79.47601,10.40013],[79.47718,10.39352],[79.4723,10.39513],[79.46144,10.3926],[79.46103,10.3884],[79.46476,10.38851],[79.46734,10.38402],[79.47,10.38311],[79.4674,10.37808],[79.46755,10.3731],[79.47237,10.37375],[79.4755,10.37204],[79.47584,10.37386],[79.48265,10.37697],[79.48565,10.38056],[79.49225,10.36982],[79.49536,10.36836],[79.50098,10.36918],[79.50482,10.36633],[79.50515,10.35669],[79.50253,10.34915],[79.49876,10.34889],[79.49876,10.31483],[79.51395,10.31328],[79.5336,10.32246],[79.54413,10.32489],[79.54922,10.31781],[79.53207,10.31148],[79.53042,10.3102],[79.53167,10.30843],[79.59553,10.30244],[79.64336,10.29426],[79.65538,10.28989],[79.67269,10.28917],[79.70414,10.28161],[79.71506,10.28081],[79.72119,10.28415],[79.72093,10.288],[79.70513,10.2928],[79.66962,10.32315],[79.6517,10.33305],[79.6388,10.34226],[79.63714,10.37868],[79.63435,10.37888],[79.63349,10.38502],[79.62849,10.39146],[79.62742,10.39617],[79.62943,10.40042],[79.63025,10.41159],[79.63325,10.41573],[79.63069,10.42118],[79.63242,10.44254],[79.63083,10.44554],[79.65885,10.44667],[79.66019,10.44109],[79.66356,10.44026],[79.66543,10.44334],[79.66816,10.44379],[79.67182,10.44731],[79.68265,10.44731],[79.6902,10.4499],[79.68928,10.45513],[79.67962,10.47285],[79.68002,10.47504],[79.67723,10.48068],[79.69944,10.48339],[79.69865,10.48889],[79.68993,10.50334],[79.68835,10.51036],[79.68961,10.50797],[79.69438,10.50531],[79.70033,10.50605],[79.70059,10.512],[79.70389,10.51224],[79.70737,10.51524],[79.71455,10.52555],[79.7225,10.53095],[79.72673,10.53613],[79.71501,10.54173],[79.7158,10.54649],[79.71035,10.55368],[79.70209,10.55158],[79.70168,10.54938],[79.69976,10.54904],[79.68815,10.55137],[79.68716,10.55671],[79.67829,10.55579],[79.67575,10.56163],[79.65961,10.55922],[79.66073,10.56387],[79.66886,10.57552],[79.67975,10.57266],[79.68115,10.57852],[79.68586,10.57883],[79.68717,10.58355],[79.67211,10.58641],[79.66926,10.58515],[79.67025,10.59078],[79.66737,10.60264],[79.65899,10.60396],[79.65556,10.6135],[79.65893,10.61578],[79.66641,10.61734],[79.67266,10.6164],[79.67363,10.62443],[79.66913,10.62951],[79.66999,10.63291],[79.66326,10.63534],[79.65704,10.64054],[79.64942,10.64284],[79.65009,10.65207],[79.65318,10.65283],[79.65417,10.65725],[79.66037,10.65569],[79.6667,10.6504],[79.66881,10.66074],[79.67184,10.66433],[79.67081,10.66949],[79.67291,10.67169],[79.67497,10.67149],[79.67497,10.67587],[79.67659,10.67601],[79.67782,10.68041],[79.67552,10.68925],[79.67229,10.69323],[79.67051,10.69251],[79.66567,10.69746],[79.66189,10.69739],[79.66032,10.70161],[79.65571,10.70076],[79.65217,10.70233],[79.65233,10.70682],[79.65494,10.70747],[79.65398,10.70832],[79.65525,10.71294],[79.66006,10.71178],[79.66073,10.71418],[79.66429,10.71307],[79.66518,10.70862],[79.66889,10.70811],[79.67137,10.71185],[79.67284,10.71086],[79.6765,10.71194],[79.67784,10.7165],[79.68715,10.71588],[79.68932,10.72263],[79.68708,10.72412],[79.68409,10.72342],[79.68128,10.72875],[79.68337,10.7296],[79.68649,10.73471],[79.687,10.73831],[79.68999,10.73794],[79.69824,10.74549],[79.69746,10.75582],[79.6949,10.76285],[79.70038,10.76748],[79.70131,10.77238],[79.7001,10.77345],[79.70368,10.7834],[79.70599,10.7827],[79.70566,10.78586],[79.71105,10.78687],[79.72399,10.79439],[79.72456,10.79752],[79.72889,10.79711],[79.73189,10.80216],[79.73171,10.80988],[79.72781,10.80956],[79.72548,10.80608],[79.72365,10.80763],[79.72494,10.81097],[79.72776,10.81215],[79.72783,10.82008],[79.72594,10.8221],[79.72808,10.82268],[79.72763,10.8292],[79.71327,10.82975],[79.71234,10.82807],[79.70996,10.82918],[79.70876,10.82466],[79.70728,10.82607],[79.70358,10.82439],[79.7032,10.8271],[79.69836,10.8284],[79.69819,10.83073],[79.69567,10.83048],[79.69596,10.82945],[79.68605,10.82973],[79.68656,10.81614],[79.67919,10.8164],[79.67514,10.81879],[79.65896,10.81742],[79.65936,10.812],[79.65718,10.80576],[79.64252,10.81578],[79.63127,10.81542],[79.63128,10.82274],[79.64171,10.82625],[79.64344,10.82305],[79.65284,10.82458],[79.65422,10.82908],[79.64827,10.82928],[79.64818,10.83509],[79.65448,10.83608],[79.655,10.84396],[79.65231,10.84825],[79.65219,10.85196],[79.6491,10.85353],[79.64389,10.85339],[79.64203,10.85706],[79.65096,10.85636],[79.65238,10.86717],[79.64663,10.87098],[79.64623,10.87436],[79.65387,10.87442],[79.65564,10.87572],[79.65215,10.88035],[79.65255,10.88615],[79.6576,10.88718],[79.65634,10.89332],[79.66765,10.90102],[79.66801,10.90517],[79.66643,10.90733],[79.6685,10.90911],[79.66857,10.91432],[79.67168,10.9169],[79.67889,10.91538],[79.68002,10.92047],[79.67894,10.92352],[79.68079,10.92798],[79.68478,10.92834],[79.68874,10.92743],[79.69,10.92534],[79.68905,10.92171],[79.69062,10.9203],[79.701,10.91936],[79.70104,10.9207],[79.70407,10.92141],[79.70315,10.92561],[79.70638,10.92582],[79.70739,10.9231],[79.70502,10.91959],[79.70848,10.91902],[79.7144,10.91371],[79.71554,10.92445],[79.71881,10.92503],[79.7159,10.92697],[79.71572,10.93087],[79.71872,10.93153],[79.72409,10.92913],[79.7259,10.93429],[79.72723,10.93527],[79.72959,10.93415],[79.72949,10.93657],[79.7233,10.93518],[79.72743,10.93794],[79.72529,10.9384],[79.72549,10.94118],[79.72407,10.94134],[79.72575,10.94332],[79.73088,10.94441],[79.73218,10.94781],[79.73718,10.94906],[79.7367,10.95743],[79.73358,10.95724],[79.73269,10.95143],[79.72085,10.95187],[79.71974,10.95445],[79.72146,10.95417],[79.72151,10.9557],[79.71919,10.95718],[79.72048,10.95798],[79.72103,10.96505],[79.71969,10.96851],[79.7312,10.97052],[79.73528,10.96941],[79.73553,10.9675],[79.73896,10.96729],[79.74011,10.96435],[79.74185,10.96643],[79.74477,10.96621],[79.74645,10.96488],[79.7461,10.95629],[79.74938,10.95846],[79.75576,10.95841],[79.75887,10.96059],[79.76404,10.96024],[79.7617,10.965],[79.7628,10.96653],[79.76058,10.96809],[79.75945,10.97219],[79.75478,10.97188],[79.75479,10.97517],[79.75284,10.97689],[79.75559,10.97797],[79.75571,10.97951],[79.75845,10.9798],[79.75856,10.98349],[79.7529,10.98287],[79.75261,10.98802],[79.74737,10.9883],[79.74813,10.99646],[79.73176,10.9948],[79.73005,10.99594],[79.72996,10.99857],[79.72111,10.99909],[79.72184,11.00104],[79.72,11.00049],[79.71612,11.00878],[79.71103,11.00641],[79.70031,11.01542],[79.67101,11.01726]],[[79.72192,10.93518],[79.72045,10.93724],[79.72247,10.93827],[79.72192,10.93518]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"591","area_level":"District","area_name":"Tiruchirappalli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.50347,11.3805],[78.5034,11.38232],[78.50622,11.38329],[78.5098,11.39679],[78.49628,11.40889],[78.48622,11.40742],[78.4791,11.38789],[78.46988,11.38565],[78.46461,11.37712],[78.45557,11.35322],[78.4547,11.34929],[78.4596,11.34262],[78.45744,11.3404],[78.44685,11.3448],[78.44726,11.3321],[78.45188,11.33052],[78.45577,11.33219],[78.45479,11.32832],[78.46247,11.3224],[78.46503,11.31169],[78.46095,11.30579],[78.45665,11.30601],[78.45255,11.298],[78.4504,11.29225],[78.45069,11.28432],[78.44704,11.27483],[78.43813,11.26853],[78.4386,11.26554],[78.43709,11.26348],[78.43955,11.2618],[78.43955,11.2589],[78.43534,11.25497],[78.42937,11.24167],[78.4247,11.22582],[78.42016,11.22075],[78.42276,11.21648],[78.42192,11.21167],[78.41517,11.20925],[78.41419,11.20587],[78.41112,11.20398],[78.41067,11.19749],[78.39985,11.19524],[78.39215,11.1895],[78.38536,11.18907],[78.38118,11.187],[78.38741,11.17717],[78.37688,11.17624],[78.37966,11.16497],[78.38151,11.14229],[78.3806,11.13744],[78.37757,11.13796],[78.37585,11.13447],[78.37229,11.13666],[78.36439,11.1379],[78.34605,11.13798],[78.34753,11.12267],[78.34344,11.11216],[78.33663,11.10486],[78.32728,11.10369],[78.32398,11.09724],[78.3382,11.09486],[78.34181,11.09012],[78.33809,11.08352],[78.34186,11.08333],[78.34429,11.07885],[78.34972,11.07542],[78.35075,11.06922],[78.36335,11.06508],[78.3601,11.04665],[78.35012,11.04829],[78.34912,11.03258],[78.34596,11.03041],[78.34463,11.02624],[78.33472,11.02798],[78.33504,11.02909],[78.3303,11.03031],[78.32841,11.03313],[78.32387,11.05792],[78.30476,11.06809],[78.29692,11.07062],[78.29088,11.07718],[78.27791,11.07942],[78.27206,11.07773],[78.26999,11.07094],[78.26551,11.0703],[78.26033,11.07569],[78.2564,11.07496],[78.25485,11.08124],[78.25072,11.08617],[78.25173,11.09018],[78.24887,11.09232],[78.23868,11.0945],[78.22989,11.09485],[78.22918,11.08452],[78.23295,11.08263],[78.23487,11.07853],[78.23637,11.07383],[78.23384,11.07128],[78.23642,11.06899],[78.23669,11.06661],[78.23541,11.06413],[78.23023,11.06117],[78.22892,11.05457],[78.22366,11.05544],[78.22376,11.05694],[78.22153,11.05757],[78.22158,11.06364],[78.21887,11.06693],[78.20417,11.07094],[78.20471,11.07391],[78.20178,11.07548],[78.19873,11.06692],[78.19679,11.06716],[78.19578,11.06461],[78.19225,11.06476],[78.18342,11.06961],[78.18176,11.0685],[78.16249,11.0468],[78.16748,11.04435],[78.17842,11.04381],[78.18211,11.04186],[78.19663,11.04605],[78.19674,11.02965],[78.19884,11.02906],[78.19478,11.02205],[78.18631,11.02005],[78.18202,11.02085],[78.18012,11.01663],[78.17288,11.01296],[78.1649,11.01319],[78.17084,10.99503],[78.18246,10.97887],[78.18733,10.97943],[78.19787,10.97127],[78.19504,10.9632],[78.1979,10.96145],[78.20706,10.95853],[78.21818,10.95886],[78.22708,10.96048],[78.25033,10.96881],[78.27282,10.96805],[78.30301,10.96355],[78.33245,10.96305],[78.34155,10.9611],[78.3773,10.96376],[78.38379,10.96235],[78.38405,10.96051],[78.40118,10.96132],[78.42628,10.94886],[78.44107,10.93491],[78.45274,10.92635],[78.46884,10.92126],[78.46381,10.91413],[78.48937,10.90646],[78.48596,10.90333],[78.47598,10.90643],[78.47817,10.90153],[78.47163,10.89815],[78.47124,10.88628],[78.47721,10.88496],[78.48453,10.88567],[78.49055,10.89513],[78.49229,10.89347],[78.4938,10.89413],[78.49957,10.88804],[78.50463,10.88552],[78.5164,10.88404],[78.52048,10.88194],[78.53203,10.88151],[78.53834,10.87842],[78.5445,10.87916],[78.55061,10.87755],[78.5581,10.86939],[78.55817,10.86379],[78.56303,10.86362],[78.56729,10.86141],[78.57015,10.85918],[78.57007,10.85632],[78.57352,10.85676],[78.57792,10.8527],[78.57911,10.85034],[78.57761,10.84466],[78.57487,10.84479],[78.57293,10.83573],[78.58122,10.83091],[78.58668,10.83096],[78.5853,10.82812],[78.58781,10.82857],[78.57647,10.80805],[78.55464,10.81341],[78.55076,10.8037],[78.54709,10.8028],[78.54679,10.79618],[78.54496,10.7961],[78.545,10.7945],[78.5475,10.79436],[78.54662,10.79139],[78.55734,10.78927],[78.55747,10.78084],[78.56049,10.77979],[78.56066,10.78201],[78.56514,10.78249],[78.5717,10.77502],[78.56224,10.76455],[78.5643,10.75609],[78.56722,10.7575],[78.56701,10.74804],[78.56892,10.74746],[78.56429,10.73717],[78.56539,10.73446],[78.55784,10.73117],[78.55177,10.72263],[78.54452,10.7234],[78.54355,10.71954],[78.53393,10.71618],[78.52947,10.71117],[78.52031,10.71061],[78.51881,10.70704],[78.51693,10.70736],[78.51636,10.69999],[78.5135,10.69489],[78.48972,10.69831],[78.48514,10.70087],[78.48516,10.70268],[78.47962,10.70198],[78.47472,10.70391],[78.47062,10.70365],[78.46742,10.69842],[78.47069,10.69563],[78.47081,10.69011],[78.46829,10.6902],[78.46787,10.68849],[78.46007,10.68847],[78.45612,10.68676],[78.45474,10.68805],[78.45107,10.68734],[78.45118,10.69034],[78.43819,10.68995],[78.43685,10.68794],[78.43362,10.68715],[78.42943,10.67642],[78.42608,10.67594],[78.42646,10.67275],[78.425,10.67181],[78.42132,10.67118],[78.40737,10.6739],[78.40054,10.68138],[78.39977,10.6904],[78.39684,10.68994],[78.39925,10.69629],[78.39036,10.70847],[78.38792,10.70822],[78.3884,10.71085],[78.3844,10.71669],[78.37433,10.71848],[78.37782,10.72597],[78.35905,10.72555],[78.35817,10.72214],[78.34499,10.72151],[78.34188,10.70525],[78.33455,10.70689],[78.33439,10.70964],[78.32896,10.70917],[78.32794,10.70606],[78.326,10.70837],[78.3205,10.70909],[78.31637,10.70165],[78.30236,10.70311],[78.29253,10.7018],[78.28941,10.71413],[78.29063,10.72681],[78.29276,10.72899],[78.29235,10.73527],[78.28799,10.73523],[78.28628,10.73737],[78.28598,10.74656],[78.28345,10.74587],[78.28378,10.7374],[78.27703,10.69644],[78.27206,10.67729],[78.26579,10.62816],[78.26311,10.61508],[78.25854,10.60974],[78.25579,10.60141],[78.2601,10.59578],[78.26261,10.57886],[78.2566,10.57009],[78.25015,10.56923],[78.24311,10.55433],[78.23074,10.55003],[78.20875,10.55012],[78.20002,10.54669],[78.19357,10.53989],[78.19011,10.53845],[78.18657,10.53034],[78.18489,10.5214],[78.17932,10.51711],[78.17661,10.51743],[78.17336,10.50373],[78.19173,10.50091],[78.19379,10.49538],[78.20261,10.48651],[78.20013,10.48528],[78.1999,10.4815],[78.20361,10.48033],[78.20654,10.474],[78.21441,10.47296],[78.21758,10.46669],[78.22396,10.4657],[78.23128,10.46758],[78.23403,10.47028],[78.24637,10.46795],[78.25301,10.46238],[78.2774,10.45409],[78.29548,10.45088],[78.31509,10.43946],[78.30648,10.42323],[78.30682,10.41216],[78.30325,10.40741],[78.28783,10.40212],[78.28763,10.39335],[78.27914,10.38759],[78.2772,10.38319],[78.27934,10.37264],[78.28582,10.37004],[78.29171,10.36176],[78.29986,10.35729],[78.30479,10.35217],[78.31784,10.34872],[78.32399,10.33722],[78.32738,10.33922],[78.33085,10.33759],[78.33096,10.33276],[78.33286,10.33231],[78.33506,10.32748],[78.3378,10.3255],[78.33631,10.32104],[78.33594,10.31121],[78.33702,10.31081],[78.33325,10.30037],[78.35023,10.29937],[78.35261,10.29708],[78.36066,10.29593],[78.36114,10.29411],[78.36326,10.29371],[78.36707,10.30108],[78.37149,10.29903],[78.3748,10.30027],[78.37203,10.30308],[78.37185,10.30862],[78.37439,10.30875],[78.37453,10.31032],[78.38093,10.31047],[78.3843,10.31478],[78.39041,10.31593],[78.39387,10.32422],[78.39652,10.32391],[78.40098,10.33586],[78.4012,10.34031],[78.4031,10.34012],[78.40474,10.34524],[78.39383,10.34909],[78.39187,10.35083],[78.39216,10.3543],[78.39975,10.35437],[78.40265,10.3574],[78.40869,10.35784],[78.41022,10.36178],[78.4148,10.36314],[78.43663,10.36273],[78.44345,10.36855],[78.44283,10.37043],[78.44566,10.37123],[78.44894,10.37491],[78.44806,10.37858],[78.43984,10.38048],[78.4386,10.38367],[78.44022,10.4006],[78.4475,10.40899],[78.44993,10.40988],[78.46281,10.40794],[78.47015,10.40182],[78.49036,10.39583],[78.48957,10.39028],[78.49202,10.38796],[78.50774,10.38897],[78.50557,10.3759],[78.50729,10.37604],[78.50935,10.37231],[78.5139,10.37153],[78.51571,10.37554],[78.51975,10.37542],[78.52486,10.37822],[78.52827,10.38951],[78.53028,10.39053],[78.52926,10.3916],[78.53114,10.3967],[78.52712,10.40283],[78.51655,10.40785],[78.51802,10.41161],[78.51661,10.4176],[78.51971,10.42738],[78.51907,10.43137],[78.52314,10.43658],[78.52702,10.43671],[78.53311,10.43385],[78.54238,10.43295],[78.54396,10.4348],[78.55231,10.43367],[78.55161,10.42817],[78.55331,10.4266],[78.55784,10.4279],[78.56248,10.42678],[78.56567,10.42814],[78.56142,10.43168],[78.56509,10.44297],[78.56754,10.44266],[78.57105,10.44562],[78.58507,10.44092],[78.58547,10.44334],[78.58291,10.44649],[78.58328,10.45178],[78.58438,10.45542],[78.58734,10.4577],[78.58707,10.46411],[78.58909,10.4643],[78.58941,10.47447],[78.58477,10.47914],[78.585,10.48114],[78.57811,10.48316],[78.57843,10.48497],[78.57077,10.48906],[78.57628,10.50147],[78.57555,10.50264],[78.57906,10.50665],[78.58183,10.52189],[78.58022,10.52234],[78.57792,10.51936],[78.57398,10.51986],[78.57265,10.51849],[78.56939,10.51958],[78.56458,10.51203],[78.56078,10.51364],[78.54999,10.51408],[78.54387,10.53003],[78.5422,10.52813],[78.54016,10.52855],[78.54079,10.5304],[78.53649,10.53061],[78.53692,10.52758],[78.53329,10.52233],[78.53284,10.51393],[78.53942,10.51258],[78.53882,10.50847],[78.54106,10.50821],[78.54094,10.50502],[78.54047,10.5029],[78.53811,10.50292],[78.53623,10.49692],[78.52736,10.48628],[78.5224,10.48539],[78.51931,10.48284],[78.49607,10.48506],[78.49269,10.48883],[78.4964,10.49376],[78.49796,10.50667],[78.49334,10.51003],[78.49293,10.51488],[78.4895,10.51694],[78.48814,10.52037],[78.48789,10.52271],[78.49131,10.52679],[78.48614,10.53403],[78.48617,10.53884],[78.46386,10.54083],[78.46652,10.54567],[78.46448,10.55373],[78.46534,10.55613],[78.46301,10.56168],[78.46613,10.57834],[78.4584,10.58126],[78.45798,10.58289],[78.45999,10.58386],[78.45964,10.59015],[78.4523,10.59226],[78.45088,10.59594],[78.45273,10.59508],[78.45315,10.59821],[78.44981,10.60163],[78.45025,10.60458],[78.44563,10.60738],[78.44684,10.60853],[78.45955,10.61145],[78.45895,10.61681],[78.4669,10.61851],[78.46916,10.62776],[78.47301,10.6278],[78.47423,10.63093],[78.47797,10.63136],[78.4825,10.63841],[78.49244,10.63508],[78.5066,10.63566],[78.51932,10.63042],[78.52702,10.62908],[78.52911,10.64478],[78.52348,10.64701],[78.51981,10.65172],[78.51803,10.65984],[78.52071,10.66282],[78.51719,10.66475],[78.51783,10.66983],[78.52081,10.66905],[78.52308,10.6741],[78.52649,10.6742],[78.53011,10.67131],[78.53388,10.67654],[78.54202,10.67655],[78.54441,10.67523],[78.54493,10.67946],[78.54613,10.67933],[78.55085,10.68638],[78.55565,10.68692],[78.56845,10.68128],[78.56492,10.67117],[78.56634,10.66458],[78.56556,10.66064],[78.57492,10.65981],[78.57946,10.66406],[78.59305,10.65902],[78.60918,10.6811],[78.61079,10.6802],[78.61605,10.68159],[78.61763,10.67688],[78.62131,10.6758],[78.6238,10.68634],[78.62218,10.69012],[78.62663,10.70098],[78.62607,10.70254],[78.6341,10.70563],[78.63519,10.70736],[78.64109,10.70799],[78.64759,10.70364],[78.65847,10.70468],[78.65561,10.68791],[78.65131,10.6814],[78.65341,10.67709],[78.65614,10.67576],[78.65641,10.67195],[78.6543,10.66989],[78.6525,10.65861],[78.65887,10.65404],[78.6652,10.65478],[78.6667,10.65783],[78.66577,10.67146],[78.66655,10.67248],[78.68033,10.66997],[78.68295,10.67106],[78.68212,10.68657],[78.68832,10.68734],[78.68886,10.69014],[78.69315,10.69132],[78.69593,10.69905],[78.6952,10.70116],[78.69763,10.70229],[78.69546,10.7074],[78.69254,10.70815],[78.69057,10.72397],[78.6879,10.72864],[78.68919,10.73464],[78.69701,10.73227],[78.70912,10.73307],[78.70825,10.72806],[78.71031,10.72629],[78.70988,10.72206],[78.7178,10.72082],[78.71942,10.71735],[78.72296,10.71589],[78.73594,10.71473],[78.74282,10.70742],[78.74447,10.70164],[78.74258,10.6993],[78.74644,10.69781],[78.74656,10.68682],[78.74376,10.6832],[78.7381,10.68281],[78.73565,10.67599],[78.73581,10.67165],[78.74162,10.65972],[78.74132,10.65692],[78.74331,10.65535],[78.74412,10.64338],[78.74883,10.64199],[78.75777,10.64404],[78.75644,10.64773],[78.75864,10.65339],[78.76532,10.65509],[78.77338,10.65378],[78.77378,10.65124],[78.79066,10.64978],[78.79357,10.65285],[78.79751,10.66689],[78.79949,10.66677],[78.79898,10.66846],[78.80203,10.67161],[78.7985,10.67545],[78.79971,10.67986],[78.80218,10.67836],[78.80495,10.67974],[78.80672,10.67782],[78.80355,10.67605],[78.81265,10.67242],[78.81335,10.67819],[78.81226,10.67958],[78.81766,10.68774],[78.82085,10.68706],[78.82041,10.69458],[78.84843,10.69346],[78.84831,10.69193],[78.86275,10.6925],[78.86478,10.68807],[78.8721,10.68813],[78.87137,10.69635],[78.87346,10.70559],[78.86842,10.71131],[78.86518,10.72084],[78.8645,10.73283],[78.86498,10.7354],[78.86697,10.73526],[78.86894,10.74408],[78.86843,10.76071],[78.87327,10.7616],[78.87454,10.77301],[78.88096,10.77745],[78.88027,10.78853],[78.87073,10.78464],[78.86716,10.78495],[78.86698,10.79236],[78.86472,10.79322],[78.86564,10.80016],[78.86046,10.80319],[78.86165,10.81193],[78.86786,10.81547],[78.86877,10.82558],[78.82567,10.8248],[78.82085,10.82281],[78.80362,10.82566],[78.79706,10.82385],[78.78699,10.82875],[78.78173,10.82652],[78.77577,10.82699],[78.77648,10.8331],[78.80332,10.8384],[78.81612,10.83542],[78.82953,10.84008],[78.83085,10.83907],[78.83228,10.8404],[78.85098,10.84229],[78.8578,10.84646],[78.88374,10.85361],[78.89598,10.85952],[78.92337,10.86611],[78.94063,10.87846],[78.93769,10.88113],[78.93971,10.88768],[78.94021,10.88618],[78.96019,10.89464],[78.96199,10.8944],[78.96097,10.89237],[78.96628,10.88719],[78.98341,10.89173],[78.99133,10.89171],[78.99753,10.89479],[79.00571,10.8936],[79.00681,10.89937],[79.00195,10.92215],[78.99033,10.92842],[78.98613,10.9276],[78.9827,10.92167],[78.98025,10.93883],[78.97756,10.94357],[78.97204,10.94837],[78.9609,10.94978],[78.95029,10.95552],[78.94732,10.96247],[78.9468,10.97657],[78.95339,10.97307],[78.97296,10.97171],[78.97561,10.96902],[78.98743,10.9668],[78.98352,10.97086],[78.98226,10.97553],[78.98962,10.97849],[78.99186,11.0014],[78.99408,11.00061],[79.00601,11.00845],[79.01232,11.01009],[79.00805,11.03298],[79.01005,11.03434],[79.00997,11.04086],[79.00838,11.04207],[79.00598,11.06029],[79.00171,11.06062],[78.99833,11.07621],[78.98474,11.07885],[78.98546,11.08577],[78.98416,11.08882],[78.98086,11.0889],[78.98038,11.09099],[78.97396,11.09428],[78.95401,11.09476],[78.94685,11.09279],[78.93933,11.09481],[78.92944,11.0936],[78.92642,11.08943],[78.91752,11.0926],[78.91662,11.09616],[78.90515,11.09719],[78.90354,11.09575],[78.89613,11.10006],[78.88932,11.09989],[78.88927,11.10159],[78.88646,11.10174],[78.88563,11.09885],[78.88038,11.09944],[78.87946,11.09812],[78.87702,11.09848],[78.87672,11.09677],[78.87321,11.09672],[78.87338,11.09392],[78.87167,11.09349],[78.87249,11.08424],[78.86387,11.08556],[78.86213,11.09014],[78.85345,11.08864],[78.84746,11.09019],[78.84434,11.08824],[78.84391,11.08356],[78.8407,11.0805],[78.84003,11.07644],[78.80725,11.07893],[78.80807,11.08187],[78.80602,11.09031],[78.81094,11.11174],[78.80473,11.1117],[78.8031,11.11398],[78.80031,11.11438],[78.79665,11.11256],[78.78726,11.11576],[78.77939,11.11492],[78.77941,11.11306],[78.77677,11.11282],[78.77667,11.1169],[78.76063,11.12011],[78.75967,11.12155],[78.75916,11.11934],[78.75555,11.11653],[78.74881,11.11596],[78.74475,11.11102],[78.73808,11.10975],[78.73753,11.10613],[78.73529,11.10555],[78.73443,11.09884],[78.73658,11.09771],[78.73887,11.08668],[78.74143,11.08372],[78.74549,11.08307],[78.74275,11.07548],[78.72023,11.07398],[78.71765,11.05563],[78.71052,11.05645],[78.70977,11.06217],[78.70104,11.06857],[78.70032,11.08446],[78.69826,11.09198],[78.69542,11.09377],[78.69432,11.10396],[78.69244,11.10461],[78.68705,11.11422],[78.68835,11.12279],[78.68691,11.12905],[78.68097,11.13034],[78.6809,11.14543],[78.67998,11.14813],[78.67808,11.14781],[78.67879,11.15433],[78.67585,11.15862],[78.67582,11.16156],[78.67154,11.16637],[78.66068,11.16339],[78.65476,11.16463],[78.65204,11.16361],[78.6512,11.16826],[78.66322,11.17471],[78.66697,11.18108],[78.67295,11.1857],[78.67591,11.19531],[78.68532,11.19575],[78.69881,11.19113],[78.70556,11.20181],[78.70657,11.20822],[78.71261,11.21274],[78.70884,11.22767],[78.70428,11.22733],[78.70272,11.22875],[78.7097,11.23349],[78.71344,11.24001],[78.71007,11.24895],[78.71307,11.25139],[78.71659,11.25844],[78.72607,11.261],[78.72602,11.26378],[78.72927,11.26512],[78.7287,11.27247],[78.73779,11.27444],[78.74395,11.28048],[78.75121,11.28479],[78.74879,11.28946],[78.74198,11.29398],[78.73887,11.29407],[78.73599,11.31013],[78.73803,11.31677],[78.73313,11.32336],[78.71757,11.32337],[78.70571,11.32522],[78.68687,11.32433],[78.68581,11.32298],[78.67844,11.32746],[78.67536,11.32704],[78.66585,11.31727],[78.66278,11.32011],[78.66001,11.31935],[78.6612,11.33144],[78.65627,11.33383],[78.63973,11.32856],[78.63845,11.33157],[78.63641,11.33152],[78.63425,11.33394],[78.63458,11.33603],[78.6408,11.33653],[78.65011,11.34147],[78.65027,11.34412],[78.65523,11.34465],[78.65712,11.34673],[78.65568,11.3511],[78.65965,11.35795],[78.66802,11.36088],[78.6721,11.35998],[78.67393,11.36761],[78.68099,11.37507],[78.68849,11.37716],[78.69007,11.38017],[78.68911,11.38169],[78.66319,11.37379],[78.65564,11.36617],[78.64986,11.35433],[78.64314,11.34828],[78.64126,11.34208],[78.62187,11.33646],[78.60452,11.33877],[78.59313,11.32687],[78.58945,11.32623],[78.58365,11.32979],[78.5793,11.32453],[78.57963,11.31886],[78.57529,11.31574],[78.57155,11.31525],[78.55644,11.31745],[78.55292,11.32005],[78.5522,11.32519],[78.55562,11.32828],[78.55478,11.33853],[78.5521,11.34605],[78.55243,11.34905],[78.55495,11.35163],[78.55344,11.35865],[78.54242,11.36946],[78.53526,11.36789],[78.52348,11.37067],[78.52341,11.37394],[78.52008,11.37639],[78.51531,11.38448],[78.50347,11.3805]],[[78.56854,10.70804],[78.57459,10.70898],[78.57455,10.7065],[78.58002,10.69992],[78.57978,10.69355],[78.57502,10.6848],[78.56984,10.68454],[78.56469,10.69414],[78.55837,10.698],[78.55862,10.7033],[78.56145,10.70295],[78.56854,10.70804]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"592","area_level":"District","area_name":"Tirunelveli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.64978,8.95642],[77.63446,8.95519],[77.63366,8.95246],[77.63054,8.95186],[77.6297,8.94687],[77.62167,8.94924],[77.62146,8.94256],[77.61834,8.93409],[77.61641,8.93463],[77.61624,8.93697],[77.61434,8.93615],[77.61411,8.94237],[77.59751,8.94284],[77.59674,8.94519],[77.59323,8.94473],[77.59178,8.94103],[77.59183,8.92786],[77.59369,8.92254],[77.59293,8.91074],[77.58203,8.90693],[77.56772,8.90851],[77.56124,8.91084],[77.56533,8.90704],[77.57084,8.90517],[77.56456,8.89528],[77.57092,8.88979],[77.56863,8.88946],[77.56765,8.88718],[77.56467,8.88717],[77.56673,8.88409],[77.56371,8.88188],[77.56376,8.87789],[77.57253,8.88189],[77.57551,8.87938],[77.57725,8.8732],[77.58244,8.87639],[77.58986,8.87538],[77.59435,8.86813],[77.59312,8.86236],[77.59072,8.8601],[77.58531,8.82663],[77.58283,8.8264],[77.57542,8.81728],[77.57457,8.81307],[77.56998,8.81137],[77.56942,8.80448],[77.56634,8.79973],[77.56864,8.79586],[77.56824,8.79365],[77.57041,8.79211],[77.56837,8.78871],[77.56494,8.78971],[77.56366,8.7875],[77.55632,8.78926],[77.55378,8.78527],[77.55143,8.78725],[77.54135,8.78815],[77.53767,8.79002],[77.53065,8.78543],[77.52958,8.78793],[77.52617,8.78772],[77.52221,8.78173],[77.52014,8.78178],[77.5189,8.78222],[77.51959,8.78764],[77.51532,8.78866],[77.51347,8.79199],[77.51871,8.7946],[77.51997,8.80123],[77.51365,8.80289],[77.51101,8.8088],[77.50789,8.80894],[77.50655,8.80616],[77.51116,8.79712],[77.50967,8.79536],[77.50636,8.79511],[77.49902,8.80131],[77.49796,8.7991],[77.4902,8.79694],[77.49036,8.79898],[77.48626,8.80124],[77.48665,8.80598],[77.48114,8.80593],[77.48013,8.80411],[77.47592,8.80672],[77.47615,8.81049],[77.46284,8.81393],[77.4619,8.81173],[77.46368,8.81096],[77.464,8.80857],[77.46197,8.8039],[77.46377,8.80146],[77.46172,8.79655],[77.46282,8.79006],[77.46151,8.7881],[77.45833,8.78949],[77.4559,8.78627],[77.46133,8.77789],[77.4615,8.77286],[77.45749,8.76604],[77.45039,8.76661],[77.45011,8.76387],[77.44185,8.7678],[77.43717,8.7735],[77.42036,8.78722],[77.41439,8.8112],[77.41593,8.81389],[77.41249,8.82316],[77.41501,8.8256],[77.41028,8.82973],[77.40663,8.82854],[77.4046,8.83024],[77.40355,8.82838],[77.40094,8.82814],[77.40189,8.83361],[77.4068,8.83337],[77.40742,8.83834],[77.40385,8.8409],[77.40447,8.84213],[77.40077,8.84223],[77.39674,8.84721],[77.39592,8.84632],[77.39152,8.84952],[77.38441,8.84828],[77.38268,8.86236],[77.38557,8.86605],[77.3865,8.87144],[77.38264,8.86998],[77.37328,8.87027],[77.36339,8.87315],[77.35702,8.87302],[77.34136,8.87133],[77.34168,8.86801],[77.33517,8.87422],[77.33139,8.87556],[77.31864,8.8755],[77.31315,8.8725],[77.29489,8.88238],[77.2915,8.88172],[77.28924,8.87893],[77.28062,8.87904],[77.27328,8.87609],[77.26165,8.88136],[77.25607,8.87882],[77.25864,8.86518],[77.25549,8.86242],[77.25637,8.85965],[77.26152,8.85651],[77.26171,8.85261],[77.25908,8.85317],[77.25848,8.85033],[77.26276,8.84199],[77.25883,8.83862],[77.25759,8.83522],[77.25309,8.83226],[77.25136,8.82712],[77.24714,8.82372],[77.24708,8.81484],[77.24252,8.80979],[77.23198,8.80773],[77.23275,8.80164],[77.23054,8.79783],[77.23129,8.79082],[77.22971,8.78459],[77.22429,8.78362],[77.21999,8.77899],[77.21471,8.77973],[77.21307,8.77862],[77.21843,8.77099],[77.21795,8.76824],[77.2093,8.76535],[77.20496,8.76913],[77.19733,8.7689],[77.19984,8.76079],[77.19752,8.75093],[77.19246,8.74444],[77.18267,8.74278],[77.17703,8.74544],[77.17163,8.75058],[77.16977,8.74743],[77.17001,8.74179],[77.17911,8.73058],[77.17677,8.72613],[77.18062,8.72106],[77.18079,8.71832],[77.1843,8.71639],[77.18472,8.71347],[77.18998,8.71236],[77.19503,8.70776],[77.19561,8.70213],[77.20672,8.6842],[77.20726,8.68068],[77.20069,8.66908],[77.20837,8.66364],[77.20778,8.66083],[77.21211,8.65719],[77.2117,8.65479],[77.21427,8.64914],[77.22015,8.64493],[77.22483,8.63908],[77.22885,8.64027],[77.22931,8.63742],[77.23219,8.63565],[77.23465,8.62685],[77.24408,8.62182],[77.24573,8.61629],[77.24524,8.60344],[77.25076,8.59873],[77.25517,8.59739],[77.25864,8.58922],[77.2636,8.58862],[77.26699,8.58392],[77.26772,8.57924],[77.26981,8.57936],[77.27345,8.57474],[77.27693,8.57395],[77.27968,8.57048],[77.28224,8.57035],[77.28709,8.56678],[77.28852,8.57029],[77.29298,8.56752],[77.30161,8.56631],[77.31131,8.55932],[77.31675,8.56074],[77.31968,8.55828],[77.3243,8.55844],[77.32752,8.55507],[77.33714,8.55266],[77.34686,8.54469],[77.35081,8.54644],[77.35166,8.54496],[77.34994,8.54274],[77.35332,8.53939],[77.35783,8.53766],[77.35797,8.54046],[77.3609,8.54027],[77.36316,8.53716],[77.36262,8.53189],[77.36776,8.52869],[77.36675,8.52472],[77.37443,8.51806],[77.37757,8.52404],[77.38143,8.5214],[77.38911,8.52404],[77.39814,8.52142],[77.40323,8.51724],[77.4121,8.51707],[77.42826,8.5122],[77.43325,8.50614],[77.43867,8.50716],[77.4418,8.50156],[77.447,8.49816],[77.44596,8.49045],[77.44953,8.4872],[77.44495,8.48528],[77.44514,8.47481],[77.45241,8.47225],[77.45812,8.46762],[77.46631,8.46878],[77.46775,8.46619],[77.46491,8.46453],[77.46436,8.46176],[77.47226,8.45527],[77.47251,8.45118],[77.47004,8.45008],[77.46364,8.44184],[77.46283,8.43553],[77.46417,8.43307],[77.4616,8.42846],[77.46908,8.41527],[77.47294,8.4163],[77.47172,8.40841],[77.47316,8.39741],[77.47731,8.395],[77.4797,8.39564],[77.4893,8.3884],[77.48932,8.38261],[77.49148,8.3791],[77.50026,8.38068],[77.50732,8.38699],[77.51036,8.384],[77.51976,8.38222],[77.52404,8.38696],[77.52339,8.39044],[77.53145,8.39291],[77.53798,8.38536],[77.54169,8.37881],[77.53597,8.37318],[77.53373,8.36748],[77.53655,8.35328],[77.53563,8.35117],[77.53811,8.34976],[77.53984,8.34583],[77.53804,8.34035],[77.53956,8.34009],[77.5404,8.33551],[77.54205,8.33527],[77.53995,8.33353],[77.53272,8.33531],[77.53426,8.33101],[77.53235,8.32582],[77.53471,8.32437],[77.53093,8.31865],[77.542,8.31071],[77.54829,8.29544],[77.55716,8.28846],[77.55812,8.28364],[77.56426,8.27856],[77.56198,8.27717],[77.5564,8.28084],[77.55383,8.27923],[77.55366,8.27689],[77.56306,8.27559],[77.55843,8.26966],[77.56355,8.26966],[77.56342,8.26626],[77.56185,8.26624],[77.56348,8.26041],[77.56732,8.25871],[77.571,8.25934],[77.57047,8.25586],[77.57429,8.25582],[77.57387,8.24893],[77.5756,8.24862],[77.57542,8.24503],[77.57673,8.24425],[77.57202,8.24407],[77.57221,8.24857],[77.56977,8.24838],[77.56966,8.24342],[77.54841,8.24472],[77.54651,8.24021],[77.5453,8.24024],[77.54172,8.23174],[77.54446,8.23012],[77.54552,8.22726],[77.54376,8.22498],[77.54079,8.22465],[77.54061,8.22147],[77.54551,8.22261],[77.54988,8.22002],[77.54752,8.21854],[77.54724,8.21636],[77.54411,8.21614],[77.54503,8.21349],[77.54377,8.20549],[77.54976,8.20559],[77.55041,8.20261],[77.54625,8.20066],[77.54553,8.19559],[77.54872,8.19314],[77.54948,8.19447],[77.55231,8.19354],[77.55291,8.19175],[77.55266,8.18983],[77.54854,8.19],[77.54451,8.18649],[77.54479,8.18515],[77.54174,8.18525],[77.54166,8.184],[77.5447,8.18342],[77.54692,8.17937],[77.54318,8.17536],[77.53847,8.17417],[77.53767,8.16939],[77.53983,8.16089],[77.54607,8.15925],[77.54623,8.15808],[77.56271,8.15638],[77.57194,8.15185],[77.58377,8.15458],[77.58176,8.15061],[77.58814,8.14714],[77.58862,8.14211],[77.61956,8.15237],[77.64922,8.15932],[77.67425,8.15997],[77.71409,8.16645],[77.72076,8.16872],[77.72348,8.17134],[77.74561,8.17737],[77.75493,8.18352],[77.75566,8.18623],[77.75966,8.18939],[77.76611,8.19332],[77.775,8.19593],[77.78131,8.20104],[77.78413,8.20727],[77.78374,8.21197],[77.78196,8.21436],[77.78377,8.22164],[77.79592,8.23171],[77.80292,8.24017],[77.8181,8.24655],[77.8497,8.25604],[77.88814,8.2733],[77.89974,8.28488],[77.92742,8.29822],[77.95269,8.31389],[77.95455,8.32031],[77.97175,8.33326],[77.97065,8.33497],[77.97361,8.33797],[77.97012,8.34076],[77.9681,8.33879],[77.96923,8.33556],[77.96696,8.33378],[77.96018,8.33531],[77.94248,8.33346],[77.9328,8.32951],[77.9258,8.33091],[77.91786,8.32657],[77.91268,8.32602],[77.91217,8.32171],[77.90146,8.32115],[77.90059,8.32503],[77.89456,8.32407],[77.89416,8.32193],[77.8927,8.32206],[77.88996,8.32422],[77.88882,8.33341],[77.88667,8.3334],[77.88815,8.33471],[77.88946,8.34207],[77.88702,8.34215],[77.88696,8.34406],[77.88361,8.34409],[77.88363,8.34659],[77.87379,8.34525],[77.87363,8.35028],[77.87226,8.35024],[77.87211,8.34796],[77.86835,8.34772],[77.86784,8.34557],[77.86965,8.34568],[77.86957,8.3438],[77.8669,8.34359],[77.86543,8.34086],[77.85873,8.34052],[77.86037,8.3563],[77.8514,8.3562],[77.85106,8.35404],[77.84669,8.35442],[77.84666,8.35593],[77.84998,8.3558],[77.84981,8.35886],[77.84685,8.35837],[77.84799,8.36171],[77.84621,8.36189],[77.8465,8.36316],[77.84128,8.36308],[77.8419,8.36644],[77.85325,8.36697],[77.85486,8.37569],[77.83839,8.38043],[77.83763,8.37868],[77.83503,8.37827],[77.83559,8.38231],[77.84275,8.38203],[77.84368,8.38654],[77.85712,8.38476],[77.85986,8.3963],[77.85973,8.39892],[77.85695,8.40184],[77.85159,8.40268],[77.85335,8.415],[77.8478,8.42219],[77.84814,8.42376],[77.838,8.42624],[77.83627,8.43077],[77.8321,8.43232],[77.83588,8.44229],[77.83855,8.44422],[77.84048,8.45138],[77.83263,8.45338],[77.8329,8.457],[77.83681,8.4663],[77.84041,8.46612],[77.84361,8.47121],[77.83828,8.47281],[77.83939,8.48435],[77.83458,8.48524],[77.82675,8.48993],[77.83034,8.50022],[77.82595,8.50278],[77.82754,8.5113],[77.82581,8.51549],[77.82259,8.51793],[77.81385,8.51961],[77.81399,8.52818],[77.80727,8.53172],[77.80822,8.53539],[77.81804,8.53407],[77.81908,8.54058],[77.82029,8.54055],[77.8204,8.55159],[77.81323,8.55339],[77.81559,8.56315],[77.81136,8.56481],[77.81213,8.57036],[77.80771,8.57161],[77.80278,8.56727],[77.79702,8.56543],[77.79891,8.57298],[77.80313,8.57612],[77.78108,8.58347],[77.78682,8.6207],[77.7895,8.62237],[77.79158,8.62169],[77.79273,8.61467],[77.80565,8.61191],[77.80775,8.62134],[77.81184,8.62096],[77.81558,8.63065],[77.81893,8.63105],[77.81912,8.65025],[77.80611,8.64728],[77.80917,8.65084],[77.80853,8.6583],[77.81128,8.65831],[77.81211,8.66274],[77.81614,8.66478],[77.81663,8.67221],[77.82432,8.67482],[77.82428,8.68184],[77.81247,8.68082],[77.8103,8.68329],[77.81769,8.6991],[77.81857,8.70666],[77.82082,8.71069],[77.82113,8.72002],[77.82732,8.73049],[77.82809,8.7344],[77.82598,8.7429],[77.8181,8.75718],[77.82051,8.75742],[77.8208,8.76564],[77.81808,8.77594],[77.82107,8.77849],[77.82844,8.77765],[77.82902,8.78017],[77.83584,8.78089],[77.84603,8.78879],[77.84531,8.79463],[77.84664,8.79864],[77.85112,8.79867],[77.85166,8.80214],[77.84803,8.80936],[77.84334,8.81641],[77.83941,8.81697],[77.83422,8.82349],[77.83133,8.83343],[77.8258,8.83396],[77.81821,8.83757],[77.81987,8.84632],[77.81758,8.84674],[77.81749,8.85314],[77.81532,8.85837],[77.81322,8.85863],[77.81321,8.86082],[77.81019,8.86243],[77.80772,8.86649],[77.81285,8.87034],[77.81217,8.87195],[77.80991,8.87107],[77.80535,8.87729],[77.80134,8.87957],[77.79462,8.88156],[77.79157,8.88048],[77.79026,8.88282],[77.78608,8.88335],[77.76984,8.8824],[77.76196,8.88683],[77.7607,8.89078],[77.76433,8.91191],[77.76325,8.91198],[77.76394,8.91755],[77.7627,8.92012],[77.76025,8.92058],[77.76137,8.92549],[77.75999,8.92762],[77.74748,8.92923],[77.74731,8.93293],[77.74512,8.93305],[77.74499,8.93168],[77.73722,8.93161],[77.73635,8.9239],[77.72484,8.926],[77.69724,8.92659],[77.69483,8.91881],[77.68479,8.91899],[77.67909,8.92463],[77.67406,8.92484],[77.66555,8.93126],[77.65692,8.93433],[77.65623,8.94268],[77.65396,8.94573],[77.6547,8.95647],[77.64978,8.95642]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"593","area_level":"District","area_name":"Tiruvannamalai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.47527,12.87353],[79.47256,12.87427],[79.47181,12.86652],[79.47417,12.86544],[79.4718,12.86533],[79.47129,12.86189],[79.46962,12.86172],[79.47441,12.85883],[79.47289,12.85131],[79.46189,12.84929],[79.4602,12.84316],[79.457,12.8442],[79.45709,12.83494],[79.45905,12.83481],[79.46078,12.82943],[79.45736,12.81047],[79.47715,12.80713],[79.47646,12.79953],[79.47346,12.79988],[79.47258,12.79817],[79.4623,12.79853],[79.4598,12.78336],[79.46568,12.77696],[79.46683,12.77136],[79.46916,12.77079],[79.4664,12.76472],[79.46753,12.75665],[79.46241,12.75723],[79.45857,12.75359],[79.45429,12.7455],[79.45339,12.74026],[79.45555,12.73852],[79.45557,12.73606],[79.45937,12.73725],[79.46692,12.73217],[79.46965,12.73249],[79.47004,12.73387],[79.47533,12.7314],[79.47495,12.72811],[79.47241,12.72803],[79.47099,12.72407],[79.46262,12.71696],[79.46672,12.71152],[79.46546,12.70054],[79.45499,12.6991],[79.45625,12.69278],[79.45911,12.68994],[79.45901,12.68685],[79.45648,12.68759],[79.45513,12.68464],[79.45387,12.68518],[79.453,12.68321],[79.45474,12.68176],[79.45432,12.679],[79.45098,12.67118],[79.43568,12.66615],[79.4268,12.6581],[79.40991,12.65609],[79.40518,12.64578],[79.38292,12.62827],[79.36933,12.63223],[79.36371,12.63801],[79.35786,12.63971],[79.35182,12.64637],[79.35672,12.6488],[79.35838,12.65191],[79.36244,12.65175],[79.36057,12.66707],[79.35337,12.66824],[79.35627,12.6723],[79.36791,12.67712],[79.37001,12.68058],[79.38276,12.68281],[79.38719,12.68525],[79.38831,12.68785],[79.39495,12.68983],[79.39252,12.69265],[79.39278,12.69617],[79.38776,12.69649],[79.3864,12.70068],[79.3835,12.70038],[79.38152,12.70328],[79.38256,12.7059],[79.38007,12.70777],[79.38103,12.71107],[79.39238,12.71392],[79.39547,12.72938],[79.39471,12.7275],[79.39052,12.7262],[79.39043,12.72747],[79.38762,12.72814],[79.38718,12.73222],[79.37978,12.73347],[79.37993,12.72619],[79.37834,12.72614],[79.37645,12.72174],[79.37322,12.72253],[79.36546,12.7195],[79.36686,12.71418],[79.36112,12.71799],[79.35564,12.71895],[79.35366,12.71103],[79.35554,12.71004],[79.35552,12.70555],[79.35752,12.70431],[79.3564,12.70418],[79.35626,12.69842],[79.35774,12.6968],[79.34812,12.69525],[79.34778,12.69391],[79.34513,12.69489],[79.34402,12.69769],[79.33894,12.70123],[79.33986,12.7041],[79.34579,12.70768],[79.34781,12.713],[79.34515,12.71523],[79.34492,12.72776],[79.34339,12.73154],[79.33024,12.73522],[79.33047,12.73714],[79.32733,12.7382],[79.3276,12.73994],[79.32287,12.74014],[79.32302,12.74158],[79.31094,12.74267],[79.30998,12.74526],[79.29599,12.74723],[79.2947,12.75129],[79.28949,12.75287],[79.28363,12.76338],[79.28829,12.77548],[79.28781,12.77915],[79.27785,12.78438],[79.27929,12.78692],[79.2746,12.78973],[79.26205,12.79412],[79.26111,12.79981],[79.26423,12.80526],[79.26011,12.80713],[79.2588,12.81415],[79.26176,12.81871],[79.25561,12.82143],[79.25559,12.82268],[79.25025,12.8239],[79.24907,12.81807],[79.25071,12.81685],[79.25034,12.81253],[79.25416,12.8118],[79.25232,12.80812],[79.24845,12.80665],[79.24394,12.80955],[79.24361,12.80793],[79.24021,12.8086],[79.23904,12.80583],[79.2393,12.80166],[79.24048,12.8013],[79.23813,12.79765],[79.22959,12.79537],[79.22364,12.7908],[79.21937,12.79236],[79.20868,12.78473],[79.21006,12.77252],[79.21314,12.7684],[79.21207,12.76684],[79.2139,12.7608],[79.20617,12.74591],[79.20724,12.74178],[79.19736,12.74796],[79.18906,12.74828],[79.18788,12.74603],[79.17726,12.74371],[79.17589,12.7446],[79.1759,12.74256],[79.174,12.7415],[79.17228,12.7448],[79.17337,12.74846],[79.17125,12.74879],[79.17307,12.75255],[79.17107,12.75543],[79.17171,12.7605],[79.16866,12.76105],[79.16909,12.76435],[79.16297,12.76637],[79.16113,12.7729],[79.15888,12.76975],[79.16121,12.7613],[79.15954,12.75891],[79.16064,12.75556],[79.15922,12.75277],[79.15691,12.75418],[79.1499,12.75326],[79.14228,12.75981],[79.13719,12.75962],[79.13204,12.7624],[79.1249,12.7603],[79.11964,12.76061],[79.11897,12.75905],[79.10634,12.76011],[79.08976,12.75852],[79.08871,12.75549],[79.08532,12.75521],[79.08186,12.74961],[79.078,12.74906],[79.07697,12.75146],[79.07407,12.75233],[79.07347,12.7559],[79.07108,12.74954],[79.06522,12.74662],[79.05979,12.73843],[79.05899,12.73649],[79.06066,12.73624],[79.06466,12.73869],[79.05695,12.73034],[79.05814,12.72079],[79.05707,12.71805],[79.05112,12.71866],[79.04267,12.71151],[79.03349,12.69889],[79.02981,12.6892],[79.0275,12.6879],[79.02394,12.68905],[79.02712,12.68243],[79.02656,12.67977],[79.02324,12.67361],[79.0213,12.67447],[79.01651,12.66985],[79.01684,12.66697],[79.01318,12.66615],[79.01216,12.65727],[79.0086,12.65811],[79.02384,12.69261],[79.0067,12.70246],[79.00122,12.7011],[78.9954,12.70602],[78.99265,12.70289],[78.99402,12.69714],[78.98693,12.69702],[78.98813,12.69276],[78.98408,12.68387],[78.97903,12.6801],[78.98106,12.6737],[78.97633,12.66807],[78.97148,12.66686],[78.97047,12.66764],[78.9715,12.67138],[78.94793,12.67986],[78.94994,12.6864],[78.94672,12.68433],[78.94334,12.68524],[78.94499,12.68269],[78.94422,12.6806],[78.92756,12.67588],[78.91186,12.6873],[78.90725,12.68741],[78.90352,12.68184],[78.89727,12.67914],[78.89881,12.68813],[78.89627,12.68994],[78.89199,12.67698],[78.88196,12.65628],[78.87619,12.65383],[78.86577,12.63166],[78.85831,12.63336],[78.85718,12.62468],[78.85559,12.62193],[78.85295,12.6212],[78.85191,12.61463],[78.84791,12.6111],[78.84921,12.60844],[78.83944,12.58918],[78.82786,12.55803],[78.82406,12.55379],[78.8256,12.55058],[78.82432,12.54535],[78.81776,12.5324],[78.81771,12.52928],[78.79944,12.50134],[78.79823,12.49728],[78.79377,12.49657],[78.78982,12.49985],[78.7856,12.49367],[78.78209,12.48435],[78.77937,12.48368],[78.7774,12.48623],[78.77471,12.48533],[78.77588,12.48357],[78.77551,12.47218],[78.77969,12.46555],[78.77797,12.4652],[78.77755,12.4598],[78.77503,12.45862],[78.7725,12.46085],[78.75856,12.44274],[78.76414,12.4423],[78.76881,12.43745],[78.76871,12.42248],[78.76456,12.41852],[78.76179,12.40448],[78.75098,12.38527],[78.74291,12.3779],[78.73733,12.37641],[78.73202,12.37728],[78.7315,12.37444],[78.72918,12.37384],[78.72868,12.35911],[78.72501,12.3539],[78.72504,12.34808],[78.71267,12.31869],[78.71001,12.30413],[78.7035,12.29604],[78.69394,12.29406],[78.68759,12.28093],[78.68576,12.2832],[78.67911,12.27646],[78.67705,12.27288],[78.67844,12.2718],[78.66661,12.26569],[78.65607,12.26256],[78.65191,12.25899],[78.64803,12.25838],[78.65293,12.25117],[78.65316,12.24539],[78.65084,12.24022],[78.66015,12.23467],[78.66538,12.23333],[78.66873,12.23844],[78.67326,12.23508],[78.67307,12.23013],[78.6779,12.22819],[78.67998,12.22268],[78.68865,12.22194],[78.68542,12.21421],[78.68005,12.20687],[78.66968,12.1975],[78.655,12.19659],[78.65318,12.19118],[78.65,12.18818],[78.64843,12.18927],[78.64772,12.19428],[78.64396,12.19478],[78.64067,12.19767],[78.63283,12.17679],[78.64786,12.16216],[78.64159,12.14926],[78.63536,12.14608],[78.63046,12.13511],[78.63135,12.12786],[78.63679,12.12695],[78.64875,12.12938],[78.65723,12.12502],[78.65887,12.11973],[78.66444,12.11544],[78.66414,12.10815],[78.66121,12.10248],[78.68411,12.10591],[78.69101,12.1151],[78.6965,12.11488],[78.70551,12.12071],[78.72827,12.12743],[78.73764,12.13392],[78.74522,12.12392],[78.73408,12.11335],[78.73618,12.11114],[78.7271,12.09937],[78.72603,12.09518],[78.72707,12.09369],[78.72273,12.08812],[78.72334,12.08202],[78.71987,12.06718],[78.70962,12.04726],[78.70401,12.03006],[78.70348,12.01525],[78.69999,12.00474],[78.70244,12.00008],[78.69772,11.99251],[78.70271,11.9863],[78.71087,11.98626],[78.71711,11.98413],[78.71807,11.98749],[78.73649,11.98797],[78.73477,11.99124],[78.74312,11.99539],[78.75751,12.01161],[78.77139,12.00673],[78.78029,12.00769],[78.79429,12.01255],[78.80432,12.01961],[78.81678,12.00942],[78.83463,12.00705],[78.83832,12.00967],[78.84317,12.00908],[78.86487,12.01672],[78.8737,12.02641],[78.87994,12.02679],[78.88394,12.02327],[78.89241,12.0228],[78.89704,12.01761],[78.90112,12.01693],[78.90316,12.01815],[78.91416,12.01451],[78.92803,12.02889],[78.93377,12.03984],[78.94018,12.04205],[78.94092,12.04376],[78.93943,12.04349],[78.94299,12.04683],[78.94374,12.05021],[78.94154,12.05057],[78.94286,12.05261],[78.94832,12.05711],[78.95337,12.06483],[78.95972,12.06875],[78.96445,12.06451],[78.97537,12.06671],[78.98101,12.06556],[78.98631,12.06201],[78.98847,12.05507],[78.99099,12.06319],[78.99505,12.06763],[79.00869,12.06682],[79.01703,12.06461],[79.0209,12.06653],[79.0315,12.06442],[79.03118,12.06222],[79.02355,12.05898],[79.0209,12.05539],[79.02237,12.05433],[79.02286,12.05006],[79.02517,12.04985],[79.02579,12.04638],[79.02928,12.04756],[79.04271,12.04101],[79.04355,12.03801],[79.05249,12.03653],[79.06049,12.05221],[79.06775,12.0504],[79.06877,12.05251],[79.06476,12.05919],[79.06106,12.06063],[79.06304,12.06987],[79.07181,12.0707],[79.07492,12.06961],[79.07882,12.07124],[79.08646,12.08108],[79.09198,12.07726],[79.09848,12.06893],[79.09848,12.06609],[79.0929,12.05543],[79.09204,12.048],[79.08797,12.04243],[79.08088,12.04463],[79.08055,12.04709],[79.07687,12.04424],[79.08114,12.03894],[79.07891,12.0315],[79.0866,12.02937],[79.08673,12.0306],[79.0904,12.02976],[79.09113,12.03118],[79.09455,12.03002],[79.09599,12.02485],[79.09954,12.02465],[79.09933,12.02307],[79.10709,12.0198],[79.11254,12.02646],[79.11957,12.02103],[79.12543,12.01877],[79.13643,12.02608],[79.14001,12.03873],[79.14749,12.04412],[79.15863,12.03556],[79.16073,12.03587],[79.16547,12.03188],[79.17263,12.03048],[79.17511,12.03245],[79.17621,12.04744],[79.18435,12.04795],[79.18456,12.04909],[79.19014,12.04821],[79.19098,12.05127],[79.19646,12.0569],[79.1991,12.06846],[79.20073,12.06989],[79.20626,12.06927],[79.20923,12.07067],[79.21255,12.06859],[79.21555,12.06382],[79.23224,12.06091],[79.23362,12.05916],[79.23997,12.07034],[79.23791,12.07656],[79.24271,12.08043],[79.24873,12.07788],[79.25177,12.07875],[79.25288,12.08103],[79.25718,12.07987],[79.26867,12.09448],[79.2713,12.10358],[79.27608,12.10407],[79.2788,12.10675],[79.27858,12.12336],[79.27369,12.12778],[79.26981,12.12877],[79.26491,12.12725],[79.25879,12.13066],[79.25896,12.13491],[79.25239,12.13672],[79.25418,12.13791],[79.24974,12.14007],[79.2502,12.1416],[79.24824,12.14113],[79.24513,12.14316],[79.24579,12.14582],[79.24242,12.147],[79.24275,12.14921],[79.23681,12.15004],[79.238,12.15338],[79.21062,12.16609],[79.21046,12.171],[79.21422,12.18409],[79.21328,12.18706],[79.20994,12.18722],[79.2128,12.19228],[79.21087,12.19399],[79.21435,12.19512],[79.21593,12.19826],[79.21892,12.19782],[79.22232,12.19387],[79.22083,12.18602],[79.22271,12.18503],[79.22232,12.18379],[79.22601,12.18258],[79.2266,12.18386],[79.23457,12.18408],[79.23455,12.18736],[79.23228,12.18851],[79.23111,12.19231],[79.23313,12.1978],[79.22823,12.20106],[79.22862,12.20336],[79.22315,12.20384],[79.22121,12.2054],[79.22101,12.20799],[79.21608,12.20869],[79.21573,12.21231],[79.21807,12.21251],[79.21918,12.21544],[79.23294,12.21167],[79.23594,12.21219],[79.23674,12.21788],[79.22744,12.21792],[79.22511,12.22202],[79.23473,12.2275],[79.23648,12.22942],[79.23697,12.23374],[79.24379,12.23569],[79.24841,12.24099],[79.24239,12.24387],[79.24026,12.25387],[79.24317,12.25661],[79.24127,12.26352],[79.24384,12.26468],[79.24505,12.27399],[79.24843,12.27533],[79.25632,12.27461],[79.25864,12.27849],[79.26103,12.27681],[79.26776,12.28869],[79.27197,12.29151],[79.28014,12.29184],[79.27749,12.30099],[79.2738,12.30547],[79.2774,12.30687],[79.28124,12.3056],[79.28517,12.30641],[79.28789,12.30925],[79.28694,12.31391],[79.28933,12.31793],[79.28579,12.32046],[79.27379,12.31931],[79.26406,12.32315],[79.26055,12.32132],[79.25186,12.32319],[79.24781,12.32027],[79.2465,12.3164],[79.23414,12.31575],[79.23382,12.31822],[79.23199,12.31911],[79.23461,12.32987],[79.22109,12.33255],[79.22134,12.33403],[79.21707,12.33481],[79.21892,12.33779],[79.21687,12.33957],[79.20777,12.34187],[79.20455,12.34035],[79.19816,12.34297],[79.20485,12.34578],[79.2113,12.34421],[79.21294,12.34643],[79.21596,12.34634],[79.2214,12.34966],[79.22657,12.34538],[79.227,12.34254],[79.23455,12.34295],[79.23915,12.34653],[79.23707,12.35303],[79.23406,12.35382],[79.232,12.35902],[79.23272,12.36186],[79.22469,12.3677],[79.2274,12.37273],[79.23706,12.36849],[79.23817,12.37091],[79.24124,12.37127],[79.24556,12.37489],[79.24851,12.38299],[79.2454,12.39367],[79.24271,12.39716],[79.23891,12.39954],[79.22722,12.40193],[79.22659,12.41128],[79.23014,12.42164],[79.23034,12.42805],[79.23455,12.43742],[79.2324,12.44112],[79.23006,12.44109],[79.23136,12.44279],[79.23993,12.44287],[79.24341,12.44518],[79.25238,12.44732],[79.26949,12.44774],[79.30897,12.43868],[79.31014,12.44157],[79.31585,12.44325],[79.31942,12.44911],[79.32526,12.45078],[79.33862,12.44463],[79.3471,12.44295],[79.35143,12.44499],[79.35651,12.44406],[79.36184,12.43973],[79.36748,12.44393],[79.37461,12.44123],[79.38248,12.44233],[79.39543,12.43623],[79.40162,12.43571],[79.40055,12.43097],[79.40166,12.42813],[79.40812,12.41858],[79.41037,12.41757],[79.40821,12.41128],[79.41125,12.40677],[79.41526,12.40651],[79.4181,12.41067],[79.42061,12.41085],[79.42363,12.40836],[79.4252,12.40222],[79.42837,12.40092],[79.43306,12.40996],[79.43805,12.408],[79.43813,12.40016],[79.4362,12.39402],[79.43977,12.38908],[79.44186,12.39425],[79.44823,12.39579],[79.44919,12.39344],[79.44753,12.38977],[79.4478,12.38268],[79.45114,12.37421],[79.46114,12.37387],[79.46557,12.3721],[79.47287,12.36496],[79.48444,12.3696],[79.48589,12.37462],[79.49326,12.37028],[79.49073,12.36706],[79.49034,12.35985],[79.4883,12.35869],[79.48886,12.34939],[79.49611,12.34513],[79.50219,12.34552],[79.50384,12.34791],[79.50697,12.34596],[79.51049,12.34843],[79.51117,12.35415],[79.51793,12.35327],[79.52162,12.36196],[79.52954,12.37007],[79.53861,12.36869],[79.54646,12.36352],[79.5535,12.36553],[79.55892,12.36437],[79.56509,12.36218],[79.57082,12.35649],[79.5726,12.35848],[79.57498,12.35839],[79.57701,12.35375],[79.59822,12.34821],[79.59726,12.35124],[79.59974,12.35598],[79.60259,12.37174],[79.60575,12.37792],[79.60815,12.37805],[79.61686,12.37732],[79.61784,12.37507],[79.62099,12.37445],[79.6204,12.37157],[79.62339,12.36793],[79.6235,12.36483],[79.61896,12.35402],[79.62171,12.34949],[79.62614,12.34888],[79.63684,12.34259],[79.64039,12.34468],[79.64712,12.35887],[79.65557,12.36148],[79.65689,12.36413],[79.66367,12.36806],[79.66757,12.377],[79.66009,12.37897],[79.6642,12.38768],[79.66946,12.39381],[79.67352,12.3934],[79.67935,12.3967],[79.68244,12.39674],[79.68747,12.39992],[79.68886,12.40337],[79.69776,12.40225],[79.69877,12.41033],[79.69121,12.41374],[79.69154,12.42094],[79.70732,12.41513],[79.70864,12.42787],[79.70541,12.4297],[79.70586,12.43139],[79.71149,12.43261],[79.71672,12.43158],[79.71783,12.43925],[79.71226,12.44338],[79.72065,12.44602],[79.73337,12.45408],[79.73812,12.45416],[79.73988,12.45653],[79.74946,12.45674],[79.7441,12.47251],[79.74729,12.48414],[79.74126,12.48501],[79.73995,12.48883],[79.73436,12.49002],[79.7274,12.49444],[79.72203,12.49401],[79.72072,12.50051],[79.7325,12.49851],[79.74464,12.50327],[79.74975,12.50285],[79.7497,12.50733],[79.75173,12.50737],[79.75295,12.51047],[79.75579,12.51194],[79.75615,12.51496],[79.75281,12.51942],[79.75383,12.52413],[79.74866,12.5236],[79.74466,12.53129],[79.73583,12.53853],[79.7288,12.54128],[79.72112,12.54747],[79.71463,12.54959],[79.71922,12.56459],[79.71693,12.56808],[79.70565,12.56945],[79.70662,12.57509],[79.71521,12.57858],[79.71578,12.58115],[79.72493,12.57897],[79.72461,12.58739],[79.71853,12.59085],[79.70109,12.59602],[79.6973,12.59447],[79.69387,12.59893],[79.68836,12.60156],[79.68442,12.59852],[79.67751,12.59854],[79.67243,12.59329],[79.66581,12.5934],[79.66122,12.59826],[79.65935,12.59804],[79.65855,12.60093],[79.65588,12.59948],[79.65409,12.60298],[79.64567,12.60308],[79.64374,12.61319],[79.64544,12.6252],[79.64448,12.62676],[79.63718,12.6266],[79.63688,12.62889],[79.63032,12.63102],[79.63229,12.6361],[79.63118,12.63831],[79.63671,12.64468],[79.63762,12.65416],[79.64311,12.65739],[79.64355,12.66474],[79.64658,12.67039],[79.65947,12.67086],[79.67323,12.66625],[79.68249,12.66798],[79.69418,12.67387],[79.7042,12.67575],[79.74194,12.69487],[79.74369,12.69695],[79.74378,12.70287],[79.73565,12.70337],[79.73605,12.7055],[79.7374,12.7055],[79.73646,12.71929],[79.72634,12.72359],[79.71453,12.72426],[79.71317,12.72831],[79.72173,12.7294],[79.72359,12.7317],[79.74148,12.73463],[79.74411,12.73892],[79.74483,12.74386],[79.74125,12.74856],[79.73711,12.74839],[79.7323,12.75208],[79.73111,12.75598],[79.71269,12.75708],[79.70935,12.7587],[79.70726,12.76556],[79.70749,12.77783],[79.70398,12.78013],[79.7033,12.77606],[79.69695,12.77625],[79.68982,12.78331],[79.67745,12.7902],[79.67326,12.79088],[79.67055,12.78765],[79.66934,12.78116],[79.67063,12.78054],[79.67044,12.77775],[79.66406,12.77547],[79.65951,12.77639],[79.65733,12.77469],[79.65936,12.77403],[79.65947,12.76746],[79.65453,12.76417],[79.64619,12.77249],[79.65019,12.78249],[79.64067,12.78612],[79.63533,12.78639],[79.63586,12.78989],[79.64096,12.79401],[79.64292,12.80258],[79.63917,12.81362],[79.63506,12.81727],[79.60797,12.82941],[79.60316,12.82729],[79.59637,12.82889],[79.5945,12.83232],[79.58537,12.83475],[79.57925,12.84278],[79.56451,12.85012],[79.55626,12.85228],[79.55962,12.85355],[79.54476,12.85906],[79.53918,12.86293],[79.53096,12.86225],[79.5119,12.8566],[79.50672,12.85918],[79.50063,12.87201],[79.49868,12.86855],[79.48984,12.87214],[79.48991,12.87432],[79.47993,12.87268],[79.47527,12.87353]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"594","area_level":"District","area_name":"Thoothukkudi","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.21,8.83922],[78.20954,8.83979],[78.20864,8.84022],[78.20698,8.84182],[78.20662,8.84206],[78.20584,8.84222],[78.20546,8.84209],[78.20525,8.84178],[78.20522,8.8413],[78.20586,8.84057],[78.2068,8.83999],[78.20875,8.83928],[78.20937,8.83836],[78.2103,8.83595],[78.21049,8.83503],[78.21094,8.83421],[78.21192,8.83377],[78.21327,8.83227],[78.21516,8.83183],[78.21615,8.83192],[78.21639,8.83212],[78.21636,8.83333],[78.21651,8.83352],[78.2172,8.83372],[78.21813,8.83364],[78.21883,8.83368],[78.21922,8.8339],[78.21932,8.83417],[78.21921,8.83461],[78.21882,8.83513],[78.21803,8.83684],[78.21744,8.83745],[78.21708,8.83801],[78.21653,8.84082],[78.21622,8.84147],[78.21579,8.84201],[78.21537,8.84215],[78.21286,8.84147],[78.21129,8.84148],[78.21091,8.84139],[78.21063,8.84115],[78.21042,8.84069],[78.21019,8.83925],[78.21009,8.83914],[78.21,8.83922]]],[[[78.22342,8.87278],[78.22299,8.87289],[78.2227,8.87291],[78.22257,8.87291],[78.2222,8.87279],[78.22194,8.8726],[78.22176,8.87217],[78.22181,8.87204],[78.22191,8.872],[78.22212,8.87205],[78.22233,8.87221],[78.2226,8.87231],[78.22286,8.87222],[78.22346,8.87128],[78.22428,8.87035],[78.22458,8.86962],[78.22493,8.86786],[78.22551,8.86681],[78.22592,8.86635],[78.2261,8.8664],[78.2261,8.86689],[78.2257,8.86771],[78.22548,8.86835],[78.22558,8.86854],[78.22574,8.86855],[78.2259,8.86849],[78.22629,8.86773],[78.22642,8.86722],[78.22643,8.86657],[78.22659,8.8663],[78.22666,8.86626],[78.22678,8.86632],[78.22714,8.86681],[78.22755,8.86757],[78.22785,8.8684],[78.22782,8.86933],[78.22767,8.87018],[78.2274,8.87082],[78.22709,8.87119],[78.22519,8.87189],[78.22438,8.87226],[78.22342,8.87278]]],[[[78.27373,8.94396],[78.27371,8.9443],[78.27362,8.94448],[78.27329,8.94456],[78.27309,8.94448],[78.27297,8.94425],[78.27298,8.94378],[78.27291,8.9435],[78.27265,8.9433],[78.27247,8.94329],[78.27201,8.9436],[78.27179,8.94367],[78.27162,8.94355],[78.27148,8.94325],[78.27103,8.94248],[78.27087,8.94235],[78.27069,8.94235],[78.27064,8.94244],[78.27063,8.94253],[78.27069,8.94281],[78.27107,8.94339],[78.27112,8.94353],[78.271,8.94358],[78.27086,8.94356],[78.27062,8.94345],[78.27023,8.94317],[78.26979,8.94247],[78.26946,8.94186],[78.26912,8.94043],[78.26905,8.93989],[78.26924,8.93955],[78.26955,8.93914],[78.2699,8.93903],[78.27044,8.93911],[78.27086,8.93929],[78.27131,8.93961],[78.27205,8.94052],[78.27334,8.94249],[78.27358,8.94329],[78.27373,8.94396]]],[[[78.25309,8.95206],[78.25353,8.95225],[78.25436,8.95275],[78.25506,8.95352],[78.2553,8.95411],[78.25522,8.95457],[78.25504,8.95514],[78.25483,8.95548],[78.25438,8.95582],[78.25318,8.95632],[78.25207,8.95642],[78.25189,8.95639],[78.25166,8.95627],[78.2515,8.95598],[78.25156,8.95572],[78.25174,8.95563],[78.25191,8.95562],[78.25202,8.95555],[78.25201,8.9554],[78.25195,8.95524],[78.25183,8.95509],[78.25139,8.95473],[78.25101,8.95421],[78.25073,8.95367],[78.25054,8.9531],[78.25057,8.95285],[78.25067,8.95267],[78.25096,8.95247],[78.25152,8.95222],[78.25226,8.95198],[78.25309,8.95206]]],[[[78.24778,9.29689],[78.22717,9.29694],[78.21793,9.29993],[78.21156,9.30528],[78.21123,9.31747],[78.20933,9.32079],[78.20881,9.32721],[78.18902,9.33175],[78.18904,9.33288],[78.18354,9.33464],[78.18398,9.33675],[78.17475,9.33872],[78.17561,9.34095],[78.17126,9.34228],[78.17242,9.34577],[78.17016,9.34717],[78.16908,9.35139],[78.16777,9.35132],[78.16832,9.3545],[78.16671,9.35455],[78.16581,9.35899],[78.16697,9.35856],[78.16839,9.3689],[78.14891,9.37197],[78.14788,9.36942],[78.14388,9.37055],[78.14176,9.36894],[78.1381,9.37027],[78.13695,9.36617],[78.13417,9.36771],[78.1333,9.36515],[78.08132,9.36084],[78.08028,9.35783],[78.07569,9.35876],[78.07279,9.36324],[78.06897,9.36061],[78.05696,9.36255],[78.05244,9.35827],[78.05002,9.34508],[78.04491,9.34497],[78.04226,9.33721],[78.03779,9.33673],[78.03724,9.33483],[78.03395,9.33371],[78.03389,9.33156],[78.03592,9.3298],[78.03598,9.32339],[78.04034,9.32328],[78.04099,9.31718],[78.04825,9.31397],[78.04979,9.30657],[78.0106,9.30829],[78.0073,9.30362],[78.01117,9.2942],[78.00844,9.27379],[77.99149,9.27056],[77.98771,9.26822],[77.98698,9.2598],[77.98446,9.25678],[77.98391,9.2515],[77.96684,9.25234],[77.95683,9.2486],[77.95521,9.23925],[77.95594,9.23659],[77.95753,9.23636],[77.95614,9.23057],[77.94781,9.2306],[77.94747,9.22402],[77.94481,9.21997],[77.93211,9.22286],[77.92995,9.21553],[77.92328,9.20864],[77.92258,9.2054],[77.91606,9.20084],[77.90919,9.20006],[77.90888,9.20257],[77.88683,9.20453],[77.88245,9.20793],[77.87823,9.20788],[77.87827,9.22124],[77.87598,9.22124],[77.87487,9.22642],[77.87763,9.22915],[77.88598,9.23031],[77.88636,9.2326],[77.88114,9.234],[77.88021,9.24518],[77.86551,9.24546],[77.85847,9.24775],[77.85587,9.24775],[77.85545,9.24551],[77.85281,9.2446],[77.84166,9.24398],[77.83876,9.24582],[77.83847,9.24333],[77.82573,9.24268],[77.8151,9.24328],[77.81497,9.24522],[77.8075,9.24521],[77.80583,9.24621],[77.80674,9.25227],[77.80249,9.25503],[77.79645,9.25619],[77.79666,9.27301],[77.7735,9.27644],[77.77417,9.26929],[77.78233,9.26359],[77.78791,9.26271],[77.78764,9.25737],[77.78966,9.25785],[77.78966,9.25151],[77.7831,9.24926],[77.78145,9.23907],[77.78009,9.23972],[77.78001,9.23773],[77.77744,9.23769],[77.77758,9.23625],[77.7748,9.23541],[77.77027,9.23589],[77.76923,9.24198],[77.76614,9.24211],[77.76367,9.24876],[77.76116,9.24883],[77.75847,9.2666],[77.7532,9.26815],[77.74611,9.26782],[77.74352,9.26417],[77.73851,9.2639],[77.73769,9.25973],[77.73968,9.25962],[77.74051,9.25353],[77.74207,9.25305],[77.74197,9.23206],[77.74422,9.22969],[77.74475,9.22602],[77.74228,9.21942],[77.7345,9.22108],[77.73287,9.21988],[77.7322,9.21757],[77.73437,9.21657],[77.7345,9.19631],[77.72767,9.19268],[77.72729,9.18987],[77.70584,9.18839],[77.70587,9.1694],[77.70464,9.16562],[77.70103,9.16519],[77.69772,9.1627],[77.69583,9.1633],[77.69411,9.16045],[77.69011,9.15888],[77.69069,9.15104],[77.69345,9.14462],[77.69474,9.14269],[77.69633,9.14302],[77.696,9.14168],[77.70048,9.14018],[77.70052,9.13808],[77.69598,9.13527],[77.69653,9.13392],[77.68832,9.13281],[77.68754,9.13407],[77.68279,9.13408],[77.68293,9.13765],[77.67411,9.13806],[77.67494,9.13322],[77.67319,9.12617],[77.67482,9.12667],[77.67485,9.12447],[77.67626,9.12435],[77.67652,9.11036],[77.67787,9.11039],[77.6778,9.10874],[77.68,9.10894],[77.67992,9.10582],[77.68622,9.10513],[77.68629,9.10226],[77.69303,9.10255],[77.69329,9.10127],[77.69583,9.103],[77.70479,9.10255],[77.71037,9.1051],[77.71249,9.10388],[77.72002,9.1047],[77.71975,9.10696],[77.7216,9.10698],[77.72171,9.10849],[77.7226,9.10633],[77.72588,9.10754],[77.72583,9.10595],[77.73998,9.10678],[77.74176,9.09731],[77.74162,9.0854],[77.74486,9.07986],[77.74164,9.07526],[77.73794,9.07553],[77.73916,9.07297],[77.71263,9.07269],[77.70807,9.07322],[77.70724,9.07563],[77.70423,9.07343],[77.70361,9.06539],[77.70175,9.06305],[77.70626,9.05946],[77.71363,9.04556],[77.7123,9.04553],[77.71256,9.04328],[77.70841,9.04136],[77.70843,9.03776],[77.70712,9.04103],[77.70223,9.04027],[77.70241,9.03517],[77.69766,9.0352],[77.69628,9.03243],[77.69395,9.03197],[77.69763,9.0246],[77.69668,9.02033],[77.69552,9.0175],[77.69345,9.01744],[77.69321,9.01474],[77.68826,9.01466],[77.68912,8.99975],[77.70484,9.00213],[77.72201,9.00254],[77.72685,8.99666],[77.72698,8.99096],[77.72933,8.98959],[77.72923,8.98306],[77.72448,8.98202],[77.72437,8.97911],[77.72166,8.97876],[77.71988,8.96662],[77.70304,8.96886],[77.70332,8.97235],[77.69933,8.97529],[77.70006,8.97687],[77.69419,8.98074],[77.6937,8.98984],[77.69076,8.99124],[77.69057,8.99395],[77.68616,8.99465],[77.68054,8.99031],[77.67599,8.98931],[77.67643,8.97997],[77.67811,8.97182],[77.68085,8.97096],[77.68098,8.96415],[77.68242,8.96422],[77.68444,8.95992],[77.69028,8.95774],[77.6913,8.95503],[77.69193,8.93624],[77.69511,8.92743],[77.70268,8.92579],[77.72694,8.92585],[77.73635,8.9239],[77.73722,8.93161],[77.74499,8.93168],[77.74512,8.93305],[77.74731,8.93293],[77.74748,8.92923],[77.75999,8.92762],[77.76137,8.92549],[77.76025,8.92058],[77.7627,8.92012],[77.76394,8.91755],[77.76325,8.91198],[77.76433,8.91191],[77.7607,8.89078],[77.76196,8.88683],[77.76984,8.8824],[77.78608,8.88335],[77.79026,8.88282],[77.79157,8.88048],[77.79462,8.88156],[77.80134,8.87957],[77.80535,8.87729],[77.80991,8.87107],[77.81217,8.87195],[77.81285,8.87034],[77.80772,8.86649],[77.81019,8.86243],[77.81321,8.86082],[77.81322,8.85863],[77.81532,8.85837],[77.81749,8.85314],[77.81758,8.84674],[77.81987,8.84632],[77.81821,8.83757],[77.8258,8.83396],[77.83133,8.83343],[77.83422,8.82349],[77.83941,8.81697],[77.84334,8.81641],[77.85166,8.80214],[77.85112,8.79867],[77.84664,8.79864],[77.84531,8.79463],[77.8467,8.79015],[77.8439,8.78669],[77.83584,8.78089],[77.82902,8.78017],[77.82844,8.77765],[77.82107,8.77849],[77.81808,8.77594],[77.8208,8.76564],[77.82051,8.75742],[77.8181,8.75718],[77.82598,8.7429],[77.82809,8.7344],[77.82732,8.73049],[77.82113,8.72002],[77.82082,8.71069],[77.81857,8.70666],[77.81769,8.6991],[77.8103,8.68329],[77.81247,8.68082],[77.82428,8.68184],[77.82432,8.67482],[77.81663,8.67221],[77.81614,8.66478],[77.81211,8.66274],[77.81128,8.65831],[77.80853,8.6583],[77.80917,8.65084],[77.80611,8.64728],[77.81912,8.65025],[77.81893,8.63105],[77.81558,8.63065],[77.81184,8.62096],[77.80775,8.62134],[77.80565,8.61191],[77.79273,8.61467],[77.79158,8.62169],[77.7895,8.62237],[77.78682,8.6207],[77.78108,8.58347],[77.80313,8.57612],[77.79891,8.57298],[77.79702,8.56543],[77.80278,8.56727],[77.80771,8.57161],[77.81213,8.57036],[77.81136,8.56481],[77.81559,8.56315],[77.81323,8.55339],[77.8204,8.55159],[77.82029,8.54055],[77.81908,8.54058],[77.81804,8.53407],[77.80822,8.53539],[77.80727,8.53172],[77.81399,8.52818],[77.81385,8.51961],[77.82259,8.51793],[77.82581,8.51549],[77.82754,8.5113],[77.82595,8.50278],[77.83034,8.50022],[77.82675,8.48993],[77.83458,8.48524],[77.83939,8.48435],[77.83828,8.47281],[77.84361,8.47121],[77.84041,8.46612],[77.83681,8.4663],[77.8329,8.457],[77.83263,8.45338],[77.84048,8.45138],[77.83855,8.44422],[77.83588,8.44229],[77.8321,8.43232],[77.83627,8.43077],[77.838,8.42624],[77.84814,8.42376],[77.8478,8.42219],[77.85335,8.415],[77.85159,8.40268],[77.85695,8.40184],[77.85973,8.39892],[77.85986,8.3963],[77.85712,8.38476],[77.84368,8.38654],[77.84275,8.38203],[77.83559,8.38231],[77.83503,8.37827],[77.83763,8.37868],[77.83839,8.38043],[77.85486,8.37569],[77.85325,8.36697],[77.8419,8.36644],[77.84128,8.36308],[77.8465,8.36316],[77.84621,8.36189],[77.84799,8.36171],[77.84685,8.35837],[77.84981,8.35886],[77.84998,8.3558],[77.84666,8.35593],[77.84669,8.35442],[77.85106,8.35404],[77.8514,8.3562],[77.86037,8.3563],[77.85873,8.34052],[77.86543,8.34086],[77.8669,8.34359],[77.86957,8.3438],[77.86965,8.34568],[77.86784,8.34557],[77.86835,8.34772],[77.87211,8.34796],[77.87226,8.35024],[77.87363,8.35028],[77.87379,8.34525],[77.88363,8.34659],[77.88361,8.34409],[77.88696,8.34406],[77.88702,8.34215],[77.88946,8.34207],[77.88815,8.33471],[77.88667,8.3334],[77.88882,8.33341],[77.88996,8.32422],[77.8927,8.32206],[77.89416,8.32193],[77.89456,8.32407],[77.90059,8.32503],[77.90146,8.32115],[77.91217,8.32171],[77.91268,8.32602],[77.91786,8.32657],[77.9258,8.33091],[77.9328,8.32951],[77.94248,8.33346],[77.96018,8.33531],[77.96696,8.33378],[77.96923,8.33556],[77.9681,8.33879],[77.97012,8.34076],[77.97361,8.33797],[77.97065,8.33497],[77.97175,8.33326],[78.01428,8.35471],[78.06748,8.37336],[78.06078,8.37469],[78.0569,8.37941],[78.05692,8.39085],[78.06071,8.40064],[78.06389,8.41799],[78.09641,8.46031],[78.11627,8.47977],[78.13059,8.49691],[78.12608,8.50121],[78.1219,8.5157],[78.12506,8.54033],[78.13207,8.55421],[78.13191,8.56043],[78.13797,8.58596],[78.12729,8.61504],[78.12728,8.63846],[78.12915,8.65579],[78.13144,8.66291],[78.12564,8.66509],[78.12871,8.66787],[78.12921,8.67296],[78.13179,8.676],[78.13205,8.68183],[78.1364,8.69411],[78.15406,8.71222],[78.15535,8.72522],[78.16299,8.74135],[78.16599,8.74398],[78.1811,8.75034],[78.18777,8.75007],[78.19158,8.74792],[78.19287,8.75124],[78.1962,8.7532],[78.1954,8.75727],[78.19749,8.75944],[78.19684,8.76094],[78.19825,8.76108],[78.19814,8.77202],[78.19998,8.77256],[78.19852,8.77406],[78.19913,8.78748],[78.19746,8.78882],[78.19248,8.78681],[78.19409,8.78642],[78.19546,8.77492],[78.19712,8.77403],[78.19657,8.77884],[78.1986,8.7759],[78.1955,8.77063],[78.1967,8.77091],[78.19656,8.76927],[78.19531,8.76982],[78.19626,8.76898],[78.19494,8.76911],[78.19509,8.76701],[78.18959,8.76381],[78.18706,8.76414],[78.18246,8.76604],[78.18133,8.76846],[78.179,8.76668],[78.17747,8.76876],[78.16968,8.77044],[78.16859,8.77147],[78.17016,8.77466],[78.16888,8.77668],[78.16455,8.77756],[78.16279,8.77953],[78.16181,8.77774],[78.16003,8.78432],[78.16153,8.787],[78.16389,8.78389],[78.1611,8.79187],[78.16246,8.79241],[78.16186,8.79764],[78.16156,8.79287],[78.16014,8.79689],[78.15808,8.79696],[78.15967,8.80416],[78.16349,8.80238],[78.16124,8.80513],[78.16303,8.80924],[78.16658,8.81174],[78.16378,8.81234],[78.16326,8.81563],[78.16802,8.82586],[78.16546,8.82834],[78.16477,8.83278],[78.1667,8.84239],[78.16579,8.86573],[78.16693,8.87289],[78.17164,8.88587],[78.1762,8.89138],[78.17998,8.89269],[78.18002,8.90611],[78.18664,8.92359],[78.1984,8.94345],[78.20667,8.95241],[78.21504,8.96604],[78.23982,8.98466],[78.27234,9.00438],[78.29417,9.02071],[78.35569,9.06803],[78.37543,9.08762],[78.38489,9.09472],[78.38353,9.09811],[78.37651,9.10027],[78.3702,9.09912],[78.3654,9.10315],[78.3568,9.09861],[78.35607,9.10981],[78.35815,9.11449],[78.35618,9.11538],[78.35638,9.11806],[78.35033,9.11755],[78.3432,9.12081],[78.34185,9.12347],[78.32073,9.12862],[78.32135,9.13098],[78.31525,9.13307],[78.29563,9.13415],[78.27395,9.14149],[78.27497,9.14867],[78.27669,9.14873],[78.28207,9.16245],[78.28421,9.16238],[78.29082,9.17758],[78.29612,9.20508],[78.28839,9.20576],[78.26935,9.2021],[78.27224,9.25627],[78.27887,9.2756],[78.2811,9.28494],[78.28054,9.28994],[78.27614,9.28988],[78.27629,9.29146],[78.26243,9.29496],[78.24778,9.29689]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"595","area_level":"District","area_name":"Vellore","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.5221,12.72453],[78.52202,12.72474],[78.52204,12.72738],[78.52178,12.72865],[78.52192,12.73201],[78.5214,12.7335],[78.52121,12.73538],[78.52092,12.73613],[78.51917,12.73628],[78.5193,12.73563],[78.51933,12.73353],[78.51908,12.72945],[78.51897,12.72926],[78.51855,12.72633],[78.51821,12.72508],[78.51803,12.72477],[78.51752,12.72452],[78.51669,12.72437],[78.51494,12.72513],[78.51392,12.72527],[78.51378,12.72556],[78.5117,12.72673],[78.5104,12.72488],[78.50927,12.72423],[78.51082,12.72273],[78.511,12.72212],[78.5112,12.72187],[78.51304,12.72119],[78.51338,12.72096],[78.51391,12.72011],[78.51501,12.71973],[78.51669,12.71866],[78.51735,12.72003],[78.51801,12.72006],[78.52024,12.71868],[78.5205,12.71809],[78.52282,12.71915],[78.52271,12.71921],[78.52262,12.72016],[78.52261,12.72297],[78.5221,12.72453]]],[[[79.24207,13.16252],[79.24269,13.171],[79.23564,13.17123],[79.23209,13.16791],[79.22969,13.16199],[79.22561,13.15886],[79.22732,13.15562],[79.21811,13.15536],[79.21811,13.15685],[79.21469,13.15696],[79.21145,13.15181],[79.21003,13.14846],[79.21599,13.14781],[79.21922,13.14562],[79.22197,13.14624],[79.22315,13.14356],[79.22829,13.13998],[79.23287,13.13937],[79.22937,13.13158],[79.23038,13.12637],[79.23841,13.11855],[79.23427,13.11466],[79.23443,13.10523],[79.22461,13.1008],[79.21277,13.09244],[79.20964,13.09272],[79.20086,13.08883],[79.19829,13.08134],[79.1931,13.08229],[79.19069,13.08873],[79.18855,13.0879],[79.18766,13.08346],[79.18066,13.08424],[79.18137,13.0799],[79.18324,13.08193],[79.18533,13.07967],[79.18565,13.07522],[79.18401,13.07273],[79.1908,13.07335],[79.19212,13.06743],[79.18809,13.06566],[79.18732,13.06066],[79.18007,13.06431],[79.1783,13.05919],[79.18474,13.0568],[79.19134,13.05856],[79.1921,13.05615],[79.17966,13.0545],[79.18044,13.04885],[79.18271,13.04732],[79.19189,13.04835],[79.193,13.0467],[79.1885,13.04195],[79.18483,13.02985],[79.1822,13.03187],[79.18112,13.02974],[79.17642,13.02885],[79.17583,13.0271],[79.17186,13.02728],[79.17109,13.02398],[79.16831,13.02426],[79.16312,13.02027],[79.14831,13.02466],[79.13734,13.03481],[79.12754,13.03557],[79.11448,13.03927],[79.10747,13.03828],[79.09831,13.02606],[79.09114,13.02607],[79.08682,13.02801],[79.08091,13.02573],[79.07394,13.03285],[79.06287,13.04064],[79.06452,13.05006],[79.0634,13.05311],[79.03869,13.06114],[79.03628,13.06546],[79.03695,13.07059],[79.0346,13.06998],[79.03156,13.07203],[79.02974,13.07098],[79.02869,13.07262],[79.02438,13.07187],[79.02299,13.07379],[79.01656,13.07455],[79.01533,13.07694],[79.0095,13.07723],[79.00817,13.08071],[79.00369,13.08321],[79.00392,13.0846],[78.995,13.08661],[78.98252,13.08641],[78.9723,13.08381],[78.97019,13.07965],[78.97144,13.077],[78.97028,13.07471],[78.96879,13.07786],[78.96213,13.07873],[78.96073,13.07612],[78.95545,13.07584],[78.94958,13.08017],[78.94919,13.08399],[78.94148,13.07852],[78.9275,13.08183],[78.92394,13.08081],[78.92174,13.06609],[78.91949,13.06486],[78.91657,13.06731],[78.9126,13.06593],[78.90368,13.04771],[78.90612,13.04512],[78.91751,13.04362],[78.92175,13.04701],[78.92916,13.04576],[78.93374,13.03926],[78.94081,13.03641],[78.93711,13.03043],[78.93575,13.03479],[78.93155,13.03469],[78.92912,13.03649],[78.91563,13.03356],[78.89164,13.03306],[78.89129,13.06881],[78.88895,13.07336],[78.89219,13.08976],[78.89569,13.09512],[78.89121,13.09715],[78.88142,13.09818],[78.8751,13.09682],[78.8698,13.08952],[78.87097,13.08188],[78.86111,13.08366],[78.84204,13.07861],[78.8208,13.08776],[78.81314,13.08914],[78.79763,13.07485],[78.7943,13.06658],[78.75178,13.05494],[78.74029,13.064],[78.71452,13.06868],[78.70527,13.01524],[78.65621,13.03117],[78.65552,13.01525],[78.65208,13.01359],[78.64513,13.00623],[78.63462,13.0008],[78.63001,12.9945],[78.6209,12.99124],[78.64002,12.97098],[78.64717,12.96624],[78.63824,12.96408],[78.64612,12.94589],[78.65701,12.93211],[78.65226,12.9291],[78.63344,12.93175],[78.63345,12.92611],[78.62686,12.90732],[78.62286,12.90425],[78.61669,12.88858],[78.61309,12.86794],[78.60156,12.8508],[78.6029,12.84474],[78.6447,12.86336],[78.65395,12.86532],[78.6868,12.86072],[78.71199,12.85875],[78.71207,12.8598],[78.71676,12.85698],[78.71462,12.85289],[78.71628,12.85018],[78.72013,12.8517],[78.71701,12.85906],[78.72008,12.86013],[78.71869,12.8647],[78.73041,12.86565],[78.73302,12.85071],[78.73455,12.85048],[78.73407,12.84803],[78.73622,12.84728],[78.73736,12.84248],[78.73414,12.83044],[78.74528,12.82425],[78.74469,12.82326],[78.7476,12.82155],[78.74917,12.81771],[78.75156,12.82133],[78.75549,12.8228],[78.75927,12.82681],[78.77322,12.83359],[78.77592,12.83977],[78.78258,12.84729],[78.79409,12.8486],[78.7996,12.85288],[78.81089,12.8541],[78.82415,12.86019],[78.83928,12.86947],[78.8453,12.87725],[78.86241,12.88342],[78.87595,12.89139],[78.88742,12.89376],[78.89627,12.90351],[78.89598,12.90515],[78.89992,12.90729],[78.90779,12.90999],[78.91789,12.91067],[78.91327,12.90242],[78.91313,12.89473],[78.90604,12.88892],[78.90596,12.88612],[78.90961,12.88585],[78.90907,12.88243],[78.91077,12.88279],[78.90817,12.87554],[78.90177,12.87085],[78.90057,12.86159],[78.90493,12.86219],[78.90438,12.85829],[78.90542,12.85831],[78.90337,12.85474],[78.90505,12.85374],[78.90369,12.84918],[78.90057,12.84937],[78.90197,12.8522],[78.89971,12.85331],[78.89973,12.85685],[78.89432,12.85661],[78.89094,12.85414],[78.88959,12.85688],[78.87781,12.85584],[78.87621,12.85337],[78.8768,12.8498],[78.88008,12.85025],[78.88096,12.84903],[78.87702,12.84585],[78.87752,12.84164],[78.88147,12.84035],[78.89305,12.84248],[78.89646,12.8374],[78.89828,12.83763],[78.89755,12.8342],[78.89128,12.83143],[78.88097,12.83207],[78.87813,12.83259],[78.87491,12.83599],[78.86499,12.82625],[78.86534,12.81859],[78.86905,12.82086],[78.87426,12.82016],[78.8777,12.81819],[78.87747,12.8155],[78.88421,12.81238],[78.88469,12.81052],[78.87952,12.80303],[78.87681,12.79236],[78.87808,12.79045],[78.87254,12.78834],[78.87526,12.78242],[78.87287,12.77976],[78.87181,12.77442],[78.86854,12.77567],[78.86105,12.77498],[78.86105,12.7726],[78.85061,12.76307],[78.85084,12.75921],[78.84891,12.75649],[78.84722,12.73734],[78.85365,12.72037],[78.85368,12.71661],[78.84644,12.70397],[78.84488,12.69675],[78.85009,12.68997],[78.85389,12.68764],[78.85642,12.68271],[78.84148,12.67842],[78.83993,12.66481],[78.83578,12.65803],[78.80865,12.63621],[78.81424,12.63883],[78.83765,12.64344],[78.84495,12.64162],[78.85831,12.63336],[78.86577,12.63166],[78.87619,12.65383],[78.88196,12.65628],[78.89199,12.67698],[78.89627,12.68994],[78.89881,12.68813],[78.89727,12.67914],[78.90352,12.68184],[78.90725,12.68741],[78.91186,12.6873],[78.92756,12.67588],[78.94422,12.6806],[78.94499,12.68269],[78.94334,12.68524],[78.94672,12.68433],[78.94994,12.6864],[78.94801,12.68322],[78.94793,12.67986],[78.9496,12.67865],[78.9715,12.67138],[78.97047,12.66764],[78.97148,12.66686],[78.97633,12.66807],[78.98113,12.67388],[78.97903,12.6801],[78.98408,12.68387],[78.98808,12.69263],[78.98693,12.69702],[78.99402,12.69714],[78.99265,12.70289],[78.99529,12.70602],[79.00122,12.7011],[79.0067,12.70246],[79.02384,12.69261],[79.0086,12.65811],[79.01216,12.65727],[79.01318,12.66615],[79.01684,12.66697],[79.01651,12.66985],[79.0213,12.67447],[79.02324,12.67361],[79.02656,12.67977],[79.02712,12.68243],[79.02394,12.68905],[79.0275,12.6879],[79.02981,12.6892],[79.03349,12.69889],[79.04267,12.71151],[79.05112,12.71866],[79.05707,12.71805],[79.05814,12.72079],[79.05695,12.73034],[79.06466,12.73869],[79.06066,12.73624],[79.05899,12.73649],[79.05979,12.73843],[79.06522,12.74662],[79.07108,12.74954],[79.07347,12.7559],[79.07407,12.75233],[79.07697,12.75146],[79.078,12.74906],[79.08186,12.74961],[79.08532,12.75521],[79.08871,12.75549],[79.08976,12.75852],[79.10634,12.76011],[79.11897,12.75905],[79.11964,12.76061],[79.1249,12.7603],[79.13204,12.7624],[79.13719,12.75962],[79.14228,12.75981],[79.1499,12.75326],[79.15691,12.75418],[79.15922,12.75277],[79.16064,12.75556],[79.15954,12.75891],[79.16121,12.7613],[79.15888,12.76975],[79.16113,12.7729],[79.16297,12.76637],[79.16909,12.76435],[79.16866,12.76105],[79.17171,12.7605],[79.17107,12.75543],[79.17307,12.75255],[79.17125,12.74879],[79.17337,12.74846],[79.17228,12.7448],[79.174,12.7415],[79.1759,12.74256],[79.17589,12.7446],[79.17726,12.74371],[79.18788,12.74603],[79.18906,12.74828],[79.19736,12.74796],[79.20759,12.74194],[79.20617,12.74591],[79.2139,12.7608],[79.21207,12.76684],[79.21314,12.7684],[79.21006,12.77252],[79.20868,12.78473],[79.20462,12.7888],[79.198,12.79009],[79.19773,12.79202],[79.19549,12.79246],[79.19571,12.7976],[79.19404,12.80287],[79.19147,12.80423],[79.19084,12.80992],[79.1782,12.82003],[79.17789,12.82504],[79.18192,12.83485],[79.18401,12.86072],[79.1889,12.86504],[79.1919,12.87365],[79.19403,12.87524],[79.19159,12.88371],[79.1926,12.88835],[79.19551,12.89438],[79.19775,12.89385],[79.19963,12.88915],[79.2109,12.89521],[79.20583,12.90485],[79.19879,12.90485],[79.19133,12.90807],[79.18625,12.91781],[79.18814,12.92596],[79.19438,12.93353],[79.20307,12.93764],[79.21001,12.93851],[79.21552,12.94655],[79.21673,12.95495],[79.22326,12.95643],[79.23321,12.95703],[79.25179,12.95179],[79.26084,12.94373],[79.26216,12.94614],[79.26785,12.94014],[79.26877,12.94653],[79.26364,12.94714],[79.26916,12.95667],[79.2701,12.96659],[79.26598,12.98742],[79.26823,12.98762],[79.26954,12.9976],[79.2781,13.00733],[79.28483,13.03772],[79.29207,13.04279],[79.29454,13.04719],[79.29055,13.05765],[79.27245,13.08702],[79.29338,13.10141],[79.28877,13.10937],[79.28402,13.12277],[79.28246,13.14252],[79.27987,13.14861],[79.28055,13.15256],[79.27736,13.15622],[79.26975,13.15375],[79.2674,13.14967],[79.26209,13.14904],[79.26167,13.15187],[79.26027,13.15214],[79.26037,13.15956],[79.25327,13.16026],[79.25208,13.1556],[79.2547,13.14919],[79.25409,13.14613],[79.24527,13.13828],[79.24018,13.14437],[79.24244,13.14795],[79.24496,13.14882],[79.24339,13.15115],[79.24208,13.14963],[79.24421,13.15274],[79.24312,13.15858],[79.24111,13.15961],[79.24097,13.16242],[79.24207,13.16252]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"596","area_level":"District","area_name":"Viluppuram","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.33862,12.44463],[79.32526,12.45078],[79.31942,12.44911],[79.31585,12.44325],[79.31014,12.44157],[79.30897,12.43868],[79.26949,12.44774],[79.2509,12.44709],[79.23993,12.44287],[79.23176,12.44296],[79.23004,12.44156],[79.2324,12.44112],[79.23455,12.43742],[79.23034,12.42805],[79.23014,12.42164],[79.22659,12.41128],[79.22722,12.40193],[79.23891,12.39954],[79.24271,12.39716],[79.2454,12.39367],[79.24851,12.38299],[79.24556,12.37489],[79.24124,12.37127],[79.23817,12.37091],[79.23706,12.36849],[79.2274,12.37273],[79.22469,12.3677],[79.23272,12.36186],[79.232,12.35902],[79.23406,12.35382],[79.23707,12.35303],[79.23915,12.34653],[79.23455,12.34295],[79.227,12.34254],[79.22657,12.34538],[79.2214,12.34966],[79.21596,12.34634],[79.21294,12.34643],[79.2113,12.34421],[79.20485,12.34578],[79.19816,12.34297],[79.20455,12.34035],[79.20777,12.34187],[79.21687,12.33957],[79.21892,12.33779],[79.21707,12.33481],[79.22134,12.33403],[79.22109,12.33255],[79.23461,12.32987],[79.23199,12.31911],[79.23382,12.31822],[79.23414,12.31575],[79.2465,12.3164],[79.24781,12.32027],[79.25186,12.32319],[79.26055,12.32132],[79.26406,12.32315],[79.27379,12.31931],[79.28579,12.32046],[79.28933,12.31793],[79.28694,12.31391],[79.28789,12.30925],[79.28517,12.30641],[79.28124,12.3056],[79.2774,12.30687],[79.2738,12.30547],[79.27749,12.30099],[79.28014,12.29184],[79.27197,12.29151],[79.26776,12.28869],[79.26103,12.27681],[79.25864,12.27849],[79.25632,12.27461],[79.24843,12.27533],[79.24505,12.27399],[79.24384,12.26468],[79.24127,12.26352],[79.24317,12.25661],[79.24026,12.25387],[79.24239,12.24387],[79.24841,12.24099],[79.24379,12.23569],[79.23697,12.23374],[79.23648,12.22942],[79.23473,12.2275],[79.22511,12.22202],[79.22744,12.21792],[79.23674,12.21788],[79.23594,12.21219],[79.23294,12.21167],[79.21918,12.21544],[79.21807,12.21251],[79.21573,12.21231],[79.21608,12.20869],[79.22101,12.20799],[79.22121,12.2054],[79.22315,12.20384],[79.22862,12.20336],[79.22823,12.20106],[79.23313,12.1978],[79.23111,12.19231],[79.23228,12.18851],[79.23455,12.18736],[79.23457,12.18408],[79.2266,12.18386],[79.22601,12.18258],[79.22232,12.18379],[79.22271,12.18503],[79.22083,12.18602],[79.22232,12.19387],[79.21892,12.19782],[79.2151,12.19766],[79.21435,12.19512],[79.21087,12.19399],[79.2128,12.19228],[79.20994,12.18722],[79.21328,12.18706],[79.21422,12.18409],[79.21046,12.171],[79.21062,12.16609],[79.238,12.15338],[79.23681,12.15004],[79.24275,12.14921],[79.24242,12.147],[79.24579,12.14582],[79.24513,12.14316],[79.24824,12.14113],[79.2502,12.1416],[79.24974,12.14007],[79.25418,12.13791],[79.25239,12.13672],[79.25896,12.13491],[79.25879,12.13066],[79.26491,12.12725],[79.26981,12.12877],[79.27667,12.12605],[79.27858,12.12336],[79.27922,12.10788],[79.27608,12.10407],[79.2713,12.10358],[79.26867,12.09448],[79.25718,12.07987],[79.25288,12.08103],[79.25177,12.07875],[79.24873,12.07788],[79.24271,12.08043],[79.23791,12.07656],[79.23997,12.07034],[79.23362,12.05916],[79.23224,12.06091],[79.21555,12.06382],[79.21255,12.06859],[79.20923,12.07067],[79.20626,12.06927],[79.20073,12.06989],[79.1991,12.06846],[79.19646,12.0569],[79.19098,12.05127],[79.19014,12.04821],[79.18456,12.04909],[79.18435,12.04795],[79.17621,12.04744],[79.17511,12.03245],[79.17263,12.03048],[79.16994,12.01941],[79.17062,12.01031],[79.16735,12.00584],[79.16829,12.0035],[79.17077,12.00254],[79.16841,11.9922],[79.17118,11.98886],[79.18638,11.98576],[79.1847,11.97275],[79.20897,11.97463],[79.21225,11.97283],[79.21349,11.97874],[79.21746,11.97739],[79.21998,11.97337],[79.22045,11.97672],[79.21843,11.9793],[79.21446,11.98095],[79.21111,11.98024],[79.21157,11.98669],[79.21517,11.98551],[79.21765,11.98752],[79.22014,11.98739],[79.22054,11.98876],[79.21763,11.98947],[79.2179,11.99059],[79.22413,11.98912],[79.22325,11.99278],[79.22709,11.99329],[79.22772,11.99913],[79.23072,11.99858],[79.23238,12.00051],[79.23701,11.9987],[79.23917,11.99378],[79.23577,11.98835],[79.23407,11.97908],[79.22944,11.97266],[79.23619,11.96577],[79.24304,11.96365],[79.24207,11.96061],[79.23838,11.96237],[79.23695,11.95967],[79.23397,11.95936],[79.23285,11.95405],[79.2372,11.95214],[79.24838,11.95111],[79.24844,11.95744],[79.25084,11.95888],[79.25128,11.9625],[79.25488,11.96328],[79.25657,11.96547],[79.26558,11.95819],[79.26094,11.95631],[79.26104,11.95152],[79.26417,11.94957],[79.26767,11.94785],[79.26961,11.94884],[79.27404,11.94763],[79.27355,11.9448],[79.27941,11.94263],[79.28452,11.94173],[79.28566,11.94559],[79.29265,11.94413],[79.3036,11.93624],[79.30813,11.92619],[79.30664,11.92352],[79.30813,11.92039],[79.31458,11.92026],[79.31545,11.92259],[79.32157,11.92094],[79.32662,11.92424],[79.33074,11.92268],[79.34875,11.92601],[79.364,11.91806],[79.3749,11.91953],[79.41457,11.8989],[79.43088,11.88073],[79.44098,11.87278],[79.46791,11.87178],[79.49185,11.86492],[79.50995,11.85759],[79.52916,11.85709],[79.54274,11.84792],[79.55054,11.84655],[79.56502,11.83993],[79.57304,11.83998],[79.57999,11.84363],[79.59082,11.84148],[79.60381,11.82904],[79.61684,11.82475],[79.62067,11.82014],[79.62432,11.81179],[79.63462,11.80197],[79.6411,11.7985],[79.64978,11.80051],[79.665,11.81048],[79.67003,11.81013],[79.67481,11.80679],[79.67593,11.8143],[79.68572,11.81251],[79.6875,11.82071],[79.69077,11.8204],[79.69081,11.82212],[79.68959,11.82848],[79.68563,11.83246],[79.70309,11.83191],[79.69986,11.83655],[79.69972,11.83956],[79.69474,11.84442],[79.6946,11.85971],[79.68938,11.86424],[79.68982,11.88084],[79.674,11.8807],[79.67385,11.89161],[79.68282,11.89197],[79.68263,11.88878],[79.68684,11.88889],[79.68716,11.89454],[79.69539,11.89479],[79.69574,11.90241],[79.69762,11.90243],[79.6979,11.90473],[79.69776,11.9076],[79.6956,11.90789],[79.6962,11.91917],[79.71866,11.91904],[79.71795,11.91336],[79.7066,11.91362],[79.70661,11.90519],[79.70895,11.90431],[79.70854,11.90158],[79.70606,11.89936],[79.70528,11.89392],[79.70943,11.893],[79.71119,11.89071],[79.71689,11.89279],[79.71883,11.89043],[79.72373,11.88861],[79.72499,11.88929],[79.72282,11.89172],[79.72888,11.89021],[79.7305,11.89173],[79.73131,11.90321],[79.7407,11.90544],[79.73221,11.91371],[79.72552,11.92316],[79.71753,11.92899],[79.72089,11.9449],[79.70968,11.94996],[79.70792,11.94666],[79.70795,11.94193],[79.71122,11.93307],[79.70662,11.93517],[79.70429,11.94017],[79.69731,11.94175],[79.69576,11.9477],[79.69166,11.95132],[79.69569,11.96392],[79.69797,11.96049],[79.70368,11.96547],[79.7026,11.96702],[79.71021,11.96578],[79.71082,11.96728],[79.71503,11.96764],[79.71602,11.97106],[79.70927,11.97581],[79.71242,11.98655],[79.7159,11.98484],[79.72057,11.99274],[79.73343,11.99326],[79.73479,11.99747],[79.7375,11.99848],[79.73768,12.00095],[79.74132,12.00122],[79.74152,12.00394],[79.74373,12.00364],[79.7465,12.00768],[79.76237,12.00269],[79.76207,11.99312],[79.76042,11.9892],[79.75552,11.98829],[79.75191,11.98427],[79.74812,11.98475],[79.74195,11.97767],[79.73199,11.98148],[79.72958,11.98468],[79.73041,11.98594],[79.72648,11.98576],[79.7235,11.97705],[79.72452,11.97123],[79.74453,11.96496],[79.7487,11.94399],[79.75027,11.91991],[79.75628,11.92039],[79.75508,11.92601],[79.75726,11.92817],[79.7622,11.92854],[79.75994,11.9436],[79.77153,11.94389],[79.77677,11.9537],[79.77947,11.95356],[79.78085,11.95653],[79.78348,11.95626],[79.78472,11.95986],[79.79173,11.95938],[79.80507,11.95326],[79.80648,11.96802],[79.8126,11.97789],[79.8163,11.97903],[79.8185,11.97789],[79.82235,11.96577],[79.82885,11.95833],[79.84064,11.95579],[79.8568,12.00605],[79.8409,12.01281],[79.84397,12.02419],[79.84443,12.0361],[79.84977,12.05131],[79.8685,12.04517],[79.87365,12.04203],[79.87898,12.05449],[79.89671,12.08346],[80.00864,12.2548],[80.00402,12.25411],[80.00378,12.25678],[79.99247,12.25374],[79.9877,12.25114],[79.98319,12.24107],[79.9731,12.23336],[79.96967,12.2368],[79.964,12.23315],[79.95986,12.23419],[79.95532,12.22883],[79.94421,12.24226],[79.92136,12.25005],[79.92062,12.24666],[79.92451,12.23159],[79.91426,12.23552],[79.90874,12.23041],[79.90031,12.22956],[79.89537,12.23334],[79.88499,12.23596],[79.88129,12.24018],[79.87344,12.24287],[79.86764,12.24891],[79.86243,12.26194],[79.84923,12.27625],[79.84729,12.2757],[79.84653,12.2775],[79.84119,12.2798],[79.84417,12.28019],[79.84129,12.2852],[79.84163,12.28776],[79.83804,12.29356],[79.83218,12.29894],[79.82742,12.31292],[79.8214,12.31426],[79.81985,12.31182],[79.8143,12.32054],[79.8082,12.32477],[79.80951,12.32624],[79.80401,12.32654],[79.80277,12.32797],[79.80024,12.3313],[79.79923,12.3374],[79.78826,12.336],[79.77882,12.33899],[79.76352,12.32962],[79.76044,12.32966],[79.759,12.32537],[79.75432,12.32726],[79.7503,12.32484],[79.73612,12.32921],[79.72191,12.33118],[79.71597,12.33548],[79.70621,12.33463],[79.70008,12.3333],[79.69745,12.32493],[79.68555,12.32377],[79.68276,12.31605],[79.6737,12.31639],[79.66063,12.3231],[79.66047,12.32718],[79.65767,12.32965],[79.65653,12.32815],[79.65324,12.32986],[79.64908,12.34087],[79.64565,12.34345],[79.64039,12.34468],[79.63684,12.34259],[79.62614,12.34888],[79.62171,12.34949],[79.61892,12.35437],[79.6235,12.36483],[79.62339,12.36793],[79.6204,12.37157],[79.62099,12.37445],[79.61784,12.37507],[79.61686,12.37732],[79.60815,12.37805],[79.60575,12.37792],[79.60259,12.37174],[79.59974,12.35598],[79.59726,12.35124],[79.59822,12.34821],[79.57701,12.35375],[79.57498,12.35839],[79.5726,12.35848],[79.57082,12.35649],[79.56509,12.36218],[79.55892,12.36437],[79.5535,12.36553],[79.54646,12.36352],[79.53861,12.36869],[79.52954,12.37007],[79.52162,12.36196],[79.51793,12.35327],[79.51117,12.35415],[79.51049,12.34843],[79.50697,12.34596],[79.50384,12.34791],[79.50219,12.34552],[79.49665,12.34493],[79.48886,12.34939],[79.4883,12.35869],[79.49034,12.35985],[79.49073,12.36706],[79.49326,12.37028],[79.48589,12.37462],[79.48444,12.3696],[79.47287,12.36496],[79.46557,12.3721],[79.46114,12.37387],[79.45114,12.37421],[79.4478,12.38268],[79.44753,12.38977],[79.44919,12.39344],[79.44823,12.39579],[79.44186,12.39425],[79.4407,12.38964],[79.43913,12.38909],[79.43617,12.39436],[79.43841,12.40732],[79.43306,12.40996],[79.42837,12.40092],[79.4252,12.40222],[79.42363,12.40836],[79.42061,12.41085],[79.4181,12.41067],[79.41526,12.40651],[79.41125,12.40677],[79.40821,12.41128],[79.41037,12.41757],[79.40812,12.41858],[79.40166,12.42813],[79.40055,12.43097],[79.40162,12.43571],[79.39543,12.43623],[79.38248,12.44233],[79.37461,12.44123],[79.36748,12.44393],[79.36184,12.43973],[79.35651,12.44406],[79.35143,12.44499],[79.3471,12.44295],[79.33862,12.44463]],[[79.69147,12.03329],[79.69153,12.03467],[79.69396,12.03481],[79.69521,12.03313],[79.70359,12.03142],[79.70441,12.02704],[79.7016,12.01383],[79.70305,12.00815],[79.71513,12.00025],[79.71538,11.99825],[79.71756,11.99782],[79.71802,11.99295],[79.71961,11.99222],[79.71786,11.9923],[79.71799,11.99042],[79.71464,11.99068],[79.7056,11.99461],[79.70232,11.99418],[79.70144,11.99188],[79.69472,11.99199],[79.69356,11.98997],[79.68547,11.99164],[79.68093,11.98341],[79.67803,11.98625],[79.6739,11.9951],[79.66252,11.98952],[79.65702,11.99139],[79.65762,12.00516],[79.65977,12.01062],[79.66163,12.0123],[79.67132,12.01006],[79.67548,12.02137],[79.68342,12.02161],[79.68507,12.0264],[79.68977,12.02785],[79.69147,12.03329]],[[79.79461,12.01683],[79.78911,12.01823],[79.78998,12.02333],[79.7888,12.02638],[79.80434,12.02586],[79.80567,12.02449],[79.80505,12.021],[79.80186,12.01707],[79.79461,12.01683]],[[79.63838,11.98618],[79.63644,11.97785],[79.64032,11.97627],[79.64131,11.97053],[79.64852,11.96759],[79.64731,11.95343],[79.64223,11.95399],[79.64265,11.9421],[79.64721,11.94459],[79.65202,11.94357],[79.65289,11.94823],[79.65748,11.94805],[79.65654,11.94702],[79.65865,11.94461],[79.65862,11.94197],[79.66041,11.94155],[79.66067,11.93716],[79.66426,11.93698],[79.66418,11.93834],[79.66933,11.93751],[79.6707,11.93158],[79.66887,11.91827],[79.66267,11.91819],[79.66258,11.91645],[79.66103,11.91631],[79.66267,11.9131],[79.65605,11.91293],[79.65588,11.9079],[79.64111,11.90778],[79.64071,11.9022],[79.63209,11.90126],[79.62532,11.90303],[79.62796,11.92059],[79.61849,11.92606],[79.61886,11.94332],[79.62475,11.94313],[79.6284,11.94514],[79.62876,11.9596],[79.6266,11.96427],[79.62749,11.96815],[79.61861,11.96995],[79.62457,11.97601],[79.62437,11.98179],[79.62085,11.98238],[79.62082,11.98394],[79.61797,11.98498],[79.61718,11.98955],[79.62361,11.98932],[79.62445,11.99208],[79.62632,12.00036],[79.61968,12.00042],[79.61929,12.00483],[79.62071,12.01353],[79.62583,12.01539],[79.62905,12.0188],[79.6251,12.03129],[79.62817,12.03226],[79.63526,12.02942],[79.6375,12.02654],[79.63983,12.02783],[79.64471,12.02706],[79.651,12.02181],[79.64779,12.01875],[79.64531,12.00471],[79.64389,12.00517],[79.64231,11.99923],[79.63645,11.99809],[79.63617,11.9958],[79.64148,11.99163],[79.63838,11.98618]],[[79.6784,11.97183],[79.68651,11.97325],[79.68785,11.9696],[79.68389,11.96041],[79.68341,11.95522],[79.68466,11.95335],[79.67322,11.94787],[79.6641,11.95086],[79.65878,11.95007],[79.65823,11.95251],[79.65464,11.95349],[79.65281,11.95786],[79.65379,11.96067],[79.66002,11.95839],[79.66052,11.96258],[79.66198,11.96277],[79.6622,11.96917],[79.67667,11.96811],[79.6784,11.97183]],[[79.61711,11.88341],[79.62122,11.8906],[79.62496,11.8908],[79.62491,11.88925],[79.62978,11.88868],[79.62989,11.88129],[79.6345,11.88104],[79.6347,11.88876],[79.64116,11.88663],[79.64052,11.88059],[79.64839,11.88045],[79.64858,11.87053],[79.65775,11.87009],[79.65928,11.86773],[79.66273,11.86725],[79.66342,11.86125],[79.66165,11.86118],[79.65789,11.85266],[79.64713,11.85016],[79.62634,11.85467],[79.62846,11.8698],[79.61915,11.87019],[79.61951,11.86269],[79.61223,11.86263],[79.61066,11.86002],[79.602,11.85786],[79.60315,11.86875],[79.60007,11.87584],[79.59941,11.88301],[79.60459,11.88135],[79.60815,11.87686],[79.61711,11.88341]],[[79.64732,11.84422],[79.66178,11.83942],[79.65946,11.8294],[79.6634,11.82529],[79.67131,11.82365],[79.67129,11.81488],[79.66519,11.815],[79.66342,11.81306],[79.65965,11.81287],[79.64634,11.81624],[79.64708,11.81968],[79.64095,11.82337],[79.64324,11.82608],[79.64732,11.84422]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"597","area_level":"District","area_name":"Virudhunagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.24778,9.29689],[78.26243,9.29496],[78.27629,9.29146],[78.27614,9.28988],[78.28054,9.28994],[78.28097,9.28419],[78.2867,9.28327],[78.28669,9.28466],[78.28847,9.28464],[78.28972,9.28276],[78.30473,9.28123],[78.30581,9.28382],[78.31208,9.28176],[78.312,9.28309],[78.31394,9.28147],[78.31643,9.28217],[78.31845,9.2797],[78.32294,9.27838],[78.3225,9.27738],[78.32862,9.27529],[78.3297,9.27847],[78.33252,9.27947],[78.33431,9.28232],[78.3359,9.28204],[78.33825,9.2872],[78.33995,9.28785],[78.34099,9.2928],[78.34676,9.29787],[78.34613,9.30941],[78.35333,9.30864],[78.35504,9.31918],[78.35677,9.31905],[78.35684,9.32101],[78.35881,9.3205],[78.36113,9.32554],[78.36068,9.33035],[78.36265,9.32997],[78.36488,9.33947],[78.36342,9.33963],[78.36232,9.34262],[78.36266,9.34919],[78.35995,9.35065],[78.35609,9.35789],[78.35344,9.3572],[78.35297,9.35269],[78.35026,9.35399],[78.35001,9.35254],[78.3331,9.35406],[78.33262,9.34582],[78.32944,9.34586],[78.32915,9.33891],[78.32436,9.33239],[78.3222,9.33428],[78.3114,9.33503],[78.30862,9.32791],[78.30547,9.32771],[78.3048,9.32351],[78.29782,9.32597],[78.29387,9.33197],[78.29538,9.34262],[78.30508,9.34236],[78.31048,9.34515],[78.30577,9.35033],[78.30825,9.36502],[78.30116,9.36715],[78.30093,9.36881],[78.30654,9.36946],[78.30815,9.37482],[78.30813,9.37637],[78.30407,9.37687],[78.30419,9.38426],[78.29665,9.38661],[78.29615,9.3816],[78.29505,9.38168],[78.29622,9.38899],[78.29148,9.39102],[78.28893,9.38891],[78.28398,9.38993],[78.28397,9.38865],[78.28116,9.38882],[78.28021,9.38998],[78.27873,9.38503],[78.27406,9.38439],[78.2632,9.38663],[78.25998,9.37643],[78.25523,9.37364],[78.24756,9.38084],[78.24304,9.38106],[78.24396,9.38583],[78.24234,9.38734],[78.24493,9.39201],[78.24435,9.39611],[78.24182,9.39689],[78.24156,9.39858],[78.24319,9.40668],[78.2373,9.4098],[78.22252,9.41012],[78.22318,9.42033],[78.22015,9.4271],[78.22102,9.42991],[78.21936,9.43251],[78.21504,9.43346],[78.21862,9.4474],[78.22824,9.445],[78.24892,9.44626],[78.25014,9.44769],[78.25731,9.44609],[78.27191,9.4485],[78.30118,9.44216],[78.30539,9.44754],[78.30359,9.45322],[78.2985,9.4546],[78.29938,9.46146],[78.3087,9.46048],[78.31103,9.46794],[78.3194,9.46737],[78.32351,9.46442],[78.33038,9.46282],[78.33127,9.46897],[78.33936,9.46846],[78.34263,9.46768],[78.34714,9.46023],[78.35191,9.46098],[78.35186,9.4666],[78.34685,9.4713],[78.34363,9.47264],[78.3422,9.46957],[78.33861,9.46975],[78.33713,9.47262],[78.33007,9.47283],[78.33077,9.48079],[78.32702,9.48375],[78.33029,9.48525],[78.32701,9.48751],[78.32849,9.4952],[78.33954,9.49592],[78.34239,9.50303],[78.34608,9.506],[78.34732,9.5114],[78.35622,9.51014],[78.36529,9.51203],[78.36728,9.50706],[78.3757,9.508],[78.37743,9.51583],[78.38226,9.51595],[78.38737,9.5361],[78.3841,9.53909],[78.37633,9.53976],[78.37238,9.54318],[78.37455,9.54537],[78.37651,9.55182],[78.37391,9.55875],[78.37528,9.56601],[78.37357,9.56957],[78.36843,9.57048],[78.37821,9.57777],[78.38172,9.57797],[78.38267,9.5798],[78.39387,9.58136],[78.39485,9.58445],[78.39766,9.58475],[78.39778,9.59519],[78.40257,9.59086],[78.4122,9.58804],[78.41635,9.59436],[78.41689,9.59936],[78.42557,9.60035],[78.42946,9.60883],[78.42617,9.61719],[78.42324,9.6138],[78.42339,9.60815],[78.41533,9.60929],[78.41238,9.61338],[78.4126,9.61754],[78.40901,9.61957],[78.40754,9.61918],[78.40598,9.61239],[78.3999,9.61203],[78.39898,9.61576],[78.39404,9.61875],[78.39408,9.62801],[78.38967,9.63144],[78.39391,9.64588],[78.38846,9.65361],[78.37618,9.65707],[78.36354,9.6541],[78.36077,9.65055],[78.35606,9.65155],[78.35434,9.6577],[78.35101,9.65652],[78.35189,9.66163],[78.34974,9.66601],[78.34456,9.65701],[78.33926,9.65811],[78.33598,9.66845],[78.34224,9.67226],[78.34169,9.67958],[78.34278,9.68091],[78.33761,9.68452],[78.3353,9.68898],[78.32704,9.69349],[78.32101,9.70717],[78.32226,9.71415],[78.32823,9.72556],[78.32483,9.74266],[78.32271,9.74261],[78.32151,9.73191],[78.31174,9.72266],[78.31257,9.71999],[78.30834,9.71416],[78.30525,9.70565],[78.30217,9.70276],[78.29991,9.70364],[78.29918,9.69867],[78.29551,9.69346],[78.29583,9.69096],[78.30277,9.68702],[78.301,9.68231],[78.30193,9.67833],[78.29128,9.67695],[78.29192,9.67466],[78.28691,9.67588],[78.2833,9.68157],[78.27347,9.68621],[78.27124,9.69181],[78.27139,9.69372],[78.27718,9.69433],[78.27785,9.69608],[78.27782,9.69833],[78.27491,9.6999],[78.27431,9.70262],[78.27458,9.70641],[78.27745,9.70734],[78.27837,9.71483],[78.27613,9.71619],[78.27702,9.72055],[78.27234,9.72252],[78.27195,9.72912],[78.27748,9.72663],[78.28013,9.7299],[78.28058,9.73243],[78.2762,9.73276],[78.27689,9.7406],[78.26983,9.74278],[78.25749,9.75147],[78.23782,9.75737],[78.23346,9.76276],[78.22887,9.76399],[78.22217,9.77197],[78.21885,9.77374],[78.21851,9.77659],[78.21527,9.77765],[78.21408,9.77981],[78.21206,9.77948],[78.21023,9.78253],[78.20818,9.78147],[78.20429,9.76359],[78.19648,9.76759],[78.18302,9.75681],[78.17445,9.75702],[78.17329,9.76016],[78.17295,9.75727],[78.17489,9.75347],[78.17221,9.74813],[78.16359,9.74983],[78.16459,9.75151],[78.16301,9.75753],[78.14743,9.75003],[78.14605,9.74291],[78.1409,9.74396],[78.13391,9.74809],[78.13701,9.76174],[78.12896,9.7656],[78.12526,9.76556],[78.12565,9.77114],[78.1172,9.77558],[78.11774,9.77722],[78.11234,9.7791],[78.11261,9.78113],[78.10701,9.78607],[78.10454,9.78643],[78.10412,9.78479],[78.09989,9.78314],[78.09853,9.77939],[78.08863,9.77977],[78.08873,9.77551],[78.1043,9.76823],[78.10105,9.75513],[78.09868,9.75601],[78.09571,9.75477],[78.0843,9.75818],[78.07816,9.749],[78.06711,9.75295],[78.06142,9.74154],[78.06812,9.73875],[78.07131,9.73562],[78.07264,9.73184],[78.0714,9.72976],[78.06852,9.72945],[78.06802,9.72339],[78.07053,9.7229],[78.07145,9.71924],[78.07385,9.71873],[78.07501,9.70976],[78.07994,9.70829],[78.07629,9.6968],[78.0811,9.69577],[78.08498,9.69255],[78.08197,9.68812],[78.08515,9.6871],[78.08634,9.68371],[78.08784,9.68341],[78.08685,9.68139],[78.08792,9.67987],[78.08518,9.67551],[78.08003,9.67653],[78.08234,9.6684],[78.08185,9.66319],[78.07618,9.66047],[78.06987,9.66197],[78.05927,9.66176],[78.06149,9.67061],[78.05765,9.674],[78.04055,9.6785],[78.03332,9.6646],[78.03224,9.66484],[78.03072,9.65969],[78.02582,9.66053],[78.02328,9.65404],[78.01677,9.64778],[78.01457,9.63946],[78.00451,9.64236],[78.00658,9.64809],[78.00069,9.65035],[77.99634,9.64011],[77.99096,9.64165],[77.98547,9.63351],[77.98325,9.63443],[77.98058,9.63066],[77.97527,9.6296],[77.96908,9.63294],[77.96399,9.63317],[77.96475,9.63714],[77.96311,9.63869],[77.96456,9.6442],[77.95255,9.64959],[77.95155,9.64598],[77.94948,9.64578],[77.94908,9.64742],[77.94015,9.64922],[77.93308,9.64875],[77.93124,9.64659],[77.92316,9.64755],[77.9216,9.63786],[77.91061,9.63822],[77.90247,9.63104],[77.90069,9.62647],[77.8974,9.62792],[77.89424,9.63777],[77.8912,9.63977],[77.89141,9.64234],[77.85529,9.64799],[77.84894,9.65037],[77.84594,9.65055],[77.84185,9.63534],[77.82904,9.6363],[77.82355,9.63849],[77.82193,9.64072],[77.80857,9.63985],[77.80248,9.64242],[77.79472,9.64874],[77.79097,9.63911],[77.77633,9.64043],[77.77261,9.64277],[77.7715,9.64775],[77.76685,9.65163],[77.76583,9.65798],[77.76389,9.66056],[77.76797,9.66138],[77.76954,9.66417],[77.76645,9.66493],[77.76669,9.67026],[77.76456,9.67473],[77.76262,9.67546],[77.76258,9.67872],[77.76,9.68274],[77.75459,9.68221],[77.73398,9.69286],[77.72579,9.69275],[77.71501,9.69958],[77.70994,9.70542],[77.71034,9.69457],[77.70775,9.69095],[77.70189,9.69046],[77.69947,9.69217],[77.69986,9.69808],[77.698,9.6991],[77.6937,9.69741],[77.69407,9.69279],[77.6843,9.68406],[77.68516,9.68009],[77.68122,9.67667],[77.67905,9.67839],[77.67773,9.68276],[77.66842,9.67724],[77.65995,9.68146],[77.65693,9.67964],[77.6557,9.68225],[77.6509,9.68312],[77.65208,9.6884],[77.64964,9.69171],[77.64918,9.69867],[77.64651,9.69676],[77.64518,9.69782],[77.64709,9.70076],[77.64475,9.70062],[77.644,9.70645],[77.63675,9.70202],[77.63327,9.70207],[77.63268,9.70337],[77.63207,9.70084],[77.63086,9.70083],[77.63134,9.70371],[77.62875,9.70294],[77.62876,9.70467],[77.61582,9.69857],[77.61649,9.69546],[77.61222,9.69761],[77.60823,9.69657],[77.60089,9.69103],[77.60194,9.68637],[77.598,9.68596],[77.59015,9.67856],[77.58597,9.66685],[77.57971,9.66708],[77.57612,9.66891],[77.57507,9.6645],[77.56258,9.65951],[77.5583,9.65153],[77.55189,9.64437],[77.55112,9.64577],[77.5433,9.64519],[77.54345,9.65052],[77.54744,9.65861],[77.54394,9.66174],[77.54248,9.66005],[77.53734,9.65977],[77.53583,9.65492],[77.53251,9.65428],[77.52817,9.65047],[77.52695,9.64486],[77.5236,9.64273],[77.52211,9.6383],[77.51936,9.63616],[77.51979,9.63267],[77.51671,9.62732],[77.51699,9.6177],[77.51405,9.61082],[77.50564,9.59968],[77.49984,9.5963],[77.49812,9.58827],[77.4983,9.57541],[77.48848,9.57227],[77.4784,9.56353],[77.47542,9.56308],[77.47538,9.55739],[77.4773,9.55587],[77.47761,9.55287],[77.47498,9.54997],[77.46291,9.54618],[77.45589,9.54159],[77.44813,9.54547],[77.44457,9.54336],[77.44107,9.54668],[77.42787,9.54652],[77.42249,9.53959],[77.41413,9.53661],[77.41089,9.53184],[77.40348,9.52638],[77.4032,9.52176],[77.40042,9.51786],[77.40831,9.51476],[77.4124,9.50898],[77.40971,9.50556],[77.40298,9.50148],[77.39931,9.49657],[77.39862,9.48163],[77.40198,9.47865],[77.40172,9.4769],[77.39713,9.47134],[77.39147,9.46869],[77.39261,9.45935],[77.38697,9.45565],[77.38093,9.45506],[77.3772,9.45278],[77.37423,9.45349],[77.37289,9.45663],[77.366,9.46008],[77.362,9.45724],[77.35639,9.44757],[77.34941,9.44118],[77.34857,9.43451],[77.3446,9.42442],[77.33937,9.42014],[77.35028,9.41269],[77.36438,9.40915],[77.36925,9.4062],[77.37222,9.40212],[77.37896,9.40186],[77.3823,9.39699],[77.38691,9.39533],[77.38908,9.39224],[77.39716,9.39619],[77.39944,9.39487],[77.40313,9.39613],[77.40314,9.39441],[77.40598,9.39352],[77.40883,9.39433],[77.41092,9.39758],[77.4148,9.3972],[77.41557,9.39873],[77.41975,9.39927],[77.42328,9.39374],[77.42603,9.39491],[77.43399,9.39088],[77.43797,9.38185],[77.4479,9.37511],[77.45051,9.36994],[77.44708,9.36583],[77.4385,9.3681],[77.4371,9.3621],[77.44336,9.36201],[77.4414,9.35427],[77.448,9.35343],[77.45286,9.35059],[77.45765,9.35148],[77.46668,9.34892],[77.4666,9.34669],[77.46804,9.34666],[77.46294,9.34589],[77.45905,9.33627],[77.45882,9.33392],[77.46478,9.32914],[77.47151,9.32839],[77.47473,9.34075],[77.48696,9.33705],[77.48771,9.33889],[77.49583,9.33846],[77.49703,9.33379],[77.50661,9.33193],[77.51822,9.33412],[77.51967,9.33591],[77.52213,9.33496],[77.52758,9.34895],[77.51907,9.35675],[77.52018,9.35934],[77.52709,9.35805],[77.52702,9.35978],[77.52932,9.36035],[77.52879,9.36616],[77.53086,9.37591],[77.5547,9.37028],[77.54975,9.36665],[77.54983,9.36317],[77.5559,9.35916],[77.56037,9.35346],[77.57486,9.35413],[77.57302,9.34303],[77.58231,9.34487],[77.58664,9.34804],[77.58957,9.34757],[77.58945,9.34448],[77.59146,9.34388],[77.59096,9.31538],[77.58781,9.31393],[77.58563,9.30862],[77.60415,9.30697],[77.60339,9.30115],[77.61344,9.30098],[77.61369,9.29963],[77.61653,9.29945],[77.61649,9.29749],[77.62486,9.29553],[77.62489,9.29283],[77.62925,9.29392],[77.64137,9.29258],[77.64481,9.29086],[77.64474,9.28875],[77.65321,9.28804],[77.65325,9.28391],[77.65571,9.28336],[77.66048,9.28489],[77.66093,9.28697],[77.67686,9.28744],[77.68239,9.28618],[77.684,9.28863],[77.7121,9.29142],[77.71215,9.2873],[77.71728,9.28755],[77.71772,9.2832],[77.72117,9.28303],[77.72194,9.28011],[77.72887,9.28214],[77.73918,9.28055],[77.73932,9.27514],[77.74153,9.27499],[77.7416,9.26436],[77.74352,9.26417],[77.74611,9.26782],[77.7532,9.26815],[77.75847,9.2666],[77.76116,9.24883],[77.76367,9.24876],[77.76614,9.24211],[77.76923,9.24198],[77.77027,9.23589],[77.7748,9.23541],[77.77758,9.23625],[77.77744,9.23769],[77.78001,9.23773],[77.78009,9.23972],[77.78145,9.23907],[77.7831,9.24926],[77.78966,9.25151],[77.78966,9.25785],[77.78764,9.25737],[77.78791,9.26271],[77.78233,9.26359],[77.77417,9.26929],[77.7735,9.27644],[77.79666,9.27301],[77.79645,9.25619],[77.80249,9.25503],[77.80674,9.25227],[77.80583,9.24621],[77.8075,9.24521],[77.81497,9.24522],[77.8151,9.24328],[77.82573,9.24268],[77.83847,9.24333],[77.83876,9.24582],[77.84166,9.24398],[77.85281,9.2446],[77.85545,9.24551],[77.85587,9.24775],[77.85847,9.24775],[77.86551,9.24546],[77.88021,9.24518],[77.88114,9.234],[77.88636,9.2326],[77.88598,9.23031],[77.87763,9.22915],[77.87487,9.22642],[77.87598,9.22124],[77.87827,9.22124],[77.87823,9.20788],[77.88245,9.20793],[77.88683,9.20453],[77.90888,9.20257],[77.90919,9.20006],[77.91963,9.20237],[77.92258,9.2054],[77.92328,9.20864],[77.92995,9.21553],[77.93211,9.22286],[77.94481,9.21997],[77.94747,9.22402],[77.94781,9.2306],[77.95571,9.23012],[77.95753,9.23636],[77.95594,9.23659],[77.95521,9.23925],[77.95683,9.2486],[77.96684,9.25234],[77.98391,9.2515],[77.98446,9.25678],[77.98698,9.2598],[77.98771,9.26822],[77.99149,9.27056],[78.00844,9.27379],[78.01117,9.2942],[78.0073,9.30362],[78.0106,9.30829],[78.04979,9.30657],[78.04825,9.31397],[78.04099,9.31718],[78.04034,9.32328],[78.03598,9.32339],[78.03592,9.3298],[78.03389,9.33156],[78.03395,9.33371],[78.03724,9.33483],[78.03779,9.33673],[78.04226,9.33721],[78.04491,9.34497],[78.05002,9.34508],[78.05244,9.35827],[78.05696,9.36255],[78.06897,9.36061],[78.07279,9.36324],[78.07569,9.35876],[78.08028,9.35783],[78.08132,9.36084],[78.1333,9.36515],[78.13417,9.36771],[78.13695,9.36617],[78.1381,9.37027],[78.14176,9.36894],[78.14388,9.37055],[78.14788,9.36942],[78.14891,9.37197],[78.16839,9.3689],[78.16697,9.35856],[78.16581,9.35899],[78.16671,9.35455],[78.16832,9.3545],[78.16777,9.35132],[78.16908,9.35139],[78.17016,9.34717],[78.17242,9.34577],[78.17126,9.34228],[78.17561,9.34095],[78.17475,9.33872],[78.18398,9.33675],[78.18354,9.33464],[78.18904,9.33288],[78.18902,9.33175],[78.20881,9.32721],[78.20933,9.32079],[78.21123,9.31747],[78.21156,9.30528],[78.21793,9.29993],[78.22717,9.29694],[78.24778,9.29689]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"598","area_level":"District","area_name":"Karaikal","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.80913,10.87788],[79.80961,10.87799],[79.81003,10.87837],[79.81027,10.87954],[79.80976,10.88042],[79.80918,10.88061],[79.80748,10.88064],[79.80682,10.88036],[79.80605,10.87964],[79.80596,10.87906],[79.80695,10.87761],[79.80738,10.8775],[79.80913,10.87788]]],[[[79.73967,10.91984],[79.73984,10.92005],[79.73986,10.92062],[79.73981,10.92097],[79.7397,10.92132],[79.73954,10.92144],[79.7394,10.92145],[79.73917,10.92141],[79.73903,10.92119],[79.73907,10.92089],[79.73912,10.92067],[79.73894,10.92047],[79.73887,10.92036],[79.73883,10.9201],[79.7389,10.91988],[79.73919,10.91974],[79.73967,10.91984]]],[[[79.7223,10.93522],[79.72227,10.9362],[79.72293,10.93623],[79.72299,10.937],[79.72291,10.93714],[79.72256,10.9375],[79.72247,10.93827],[79.72193,10.93823],[79.72177,10.93724],[79.72045,10.93724],[79.72049,10.93623],[79.72189,10.93615],[79.72192,10.93518],[79.7223,10.93518],[79.7223,10.93522]]],[[[79.7197,10.95485],[79.71974,10.95595],[79.71838,10.95591],[79.71834,10.95483],[79.7197,10.95485]]],[[[79.75681,11.00262],[79.75584,11.00379],[79.75392,11.00254],[79.7468,11.00258],[79.74859,10.9979],[79.74842,10.99007],[79.74737,10.9883],[79.75261,10.98802],[79.7529,10.98287],[79.75856,10.98349],[79.75845,10.9798],[79.75571,10.97951],[79.75559,10.97797],[79.75269,10.97775],[79.75284,10.97689],[79.75479,10.97517],[79.75478,10.97188],[79.75674,10.97291],[79.75945,10.97219],[79.76058,10.96809],[79.7628,10.96653],[79.76229,10.96547],[79.76175,10.96637],[79.7617,10.965],[79.76396,10.95976],[79.75887,10.96059],[79.75576,10.95841],[79.74938,10.95846],[79.7461,10.95629],[79.74549,10.96272],[79.74645,10.96488],[79.74477,10.96621],[79.74185,10.96643],[79.74011,10.96435],[79.73896,10.96729],[79.73553,10.9675],[79.73528,10.96941],[79.73191,10.96931],[79.7312,10.97052],[79.73012,10.96949],[79.72604,10.96887],[79.72366,10.96976],[79.72201,10.96824],[79.72176,10.96917],[79.71969,10.96851],[79.72103,10.96505],[79.72048,10.95798],[79.71919,10.95718],[79.72151,10.9557],[79.72146,10.95417],[79.71974,10.95445],[79.71998,10.9526],[79.72474,10.95122],[79.72754,10.95212],[79.72995,10.95089],[79.73269,10.95143],[79.73255,10.95513],[79.73376,10.95479],[79.73358,10.95724],[79.73482,10.95693],[79.73479,10.95772],[79.7367,10.95743],[79.73662,10.95305],[79.73756,10.95258],[79.73718,10.94906],[79.73218,10.94781],[79.73088,10.94441],[79.7275,10.94403],[79.72435,10.94198],[79.72459,10.94086],[79.72549,10.94118],[79.72529,10.9384],[79.72743,10.93794],[79.72338,10.93618],[79.7233,10.93518],[79.725,10.93634],[79.72685,10.93557],[79.72684,10.9365],[79.7296,10.93629],[79.72959,10.93415],[79.72723,10.93527],[79.7259,10.93429],[79.7247,10.92972],[79.73027,10.9285],[79.73042,10.92749],[79.73321,10.92842],[79.736,10.92761],[79.73556,10.92486],[79.73837,10.92486],[79.73754,10.92584],[79.73952,10.92649],[79.73881,10.92346],[79.73978,10.9247],[79.74312,10.92504],[79.7438,10.91916],[79.74211,10.91819],[79.74336,10.91758],[79.74558,10.91947],[79.74512,10.91613],[79.74351,10.91607],[79.74338,10.91483],[79.75377,10.91404],[79.7544,10.91622],[79.75897,10.91661],[79.76243,10.91438],[79.76305,10.91335],[79.76097,10.91239],[79.75757,10.90786],[79.7595,10.90186],[79.75927,10.90093],[79.75789,10.90191],[79.75703,10.89647],[79.758,10.89837],[79.75983,10.89853],[79.76029,10.90048],[79.76175,10.89924],[79.76251,10.90043],[79.76095,10.90065],[79.76137,10.90175],[79.76357,10.89974],[79.76229,10.8992],[79.76238,10.89799],[79.75867,10.89721],[79.75781,10.89478],[79.75586,10.8946],[79.75629,10.89176],[79.75787,10.89147],[79.75836,10.89275],[79.76795,10.89246],[79.76785,10.89355],[79.76529,10.89437],[79.76515,10.89628],[79.777,10.89656],[79.7767,10.90541],[79.77924,10.90527],[79.77707,10.90712],[79.77742,10.90895],[79.77991,10.90881],[79.78213,10.90624],[79.78933,10.90844],[79.79541,10.90274],[79.7947,10.90211],[79.79136,10.90484],[79.792,10.90024],[79.79386,10.89869],[79.79245,10.8984],[79.79127,10.89596],[79.78953,10.89674],[79.78785,10.89551],[79.78256,10.89533],[79.78211,10.89043],[79.78366,10.88848],[79.78996,10.89034],[79.79036,10.89488],[79.79528,10.89085],[79.79469,10.88754],[79.79979,10.88735],[79.80108,10.89009],[79.80433,10.89106],[79.80711,10.8875],[79.81135,10.88844],[79.82328,10.88427],[79.82631,10.88478],[79.82858,10.88378],[79.82855,10.88209],[79.82467,10.88039],[79.82101,10.88136],[79.81931,10.87996],[79.8113,10.88034],[79.81111,10.87557],[79.82241,10.87424],[79.82332,10.87005],[79.82481,10.86903],[79.82491,10.86483],[79.81797,10.86345],[79.8117,10.85965],[79.80966,10.86566],[79.80749,10.86544],[79.80794,10.85562],[79.81376,10.84996],[79.81943,10.84914],[79.81926,10.84738],[79.82108,10.84556],[79.82527,10.84694],[79.82809,10.84967],[79.83107,10.82738],[79.85074,10.82783],[79.85095,10.84997],[79.84984,10.85822],[79.85165,10.87629],[79.85053,10.88557],[79.85218,10.90504],[79.85382,10.98322],[79.85195,10.98384],[79.85067,10.98739],[79.85153,10.99393],[79.83944,10.99584],[79.84013,11.0016],[79.83195,11.00282],[79.82899,11.00179],[79.82793,10.99814],[79.82579,10.99831],[79.823,11.00076],[79.82068,10.99816],[79.8155,11.00387],[79.81412,11.00312],[79.81489,11.00147],[79.81317,10.99915],[79.80815,10.99988],[79.80427,10.99764],[79.80325,10.9952],[79.80627,10.99295],[79.80571,10.99189],[79.80511,10.9928],[79.80383,10.9921],[79.80468,10.99097],[79.80407,10.98697],[79.80298,10.98842],[79.80184,10.98809],[79.79908,10.9859],[79.79947,10.98285],[79.79779,10.98249],[79.79393,10.98309],[79.78641,10.98961],[79.78615,10.99079],[79.78904,10.99124],[79.78655,10.99724],[79.78356,10.99668],[79.78359,10.99478],[79.77894,10.99686],[79.77987,10.9986],[79.76669,10.99733],[79.76327,10.9991],[79.76215,11.00135],[79.76007,10.99902],[79.75885,11.00191],[79.75681,11.00262]],[[79.76277,10.90902],[79.76406,10.91222],[79.76495,10.91129],[79.7639,10.90594],[79.76604,10.90531],[79.76789,10.90177],[79.76398,10.90146],[79.76535,10.90219],[79.76524,10.90354],[79.76218,10.90152],[79.7623,10.90341],[79.76508,10.90415],[79.76368,10.90465],[79.76303,10.90681],[79.76247,10.90623],[79.76277,10.90902]],[[79.76719,10.90119],[79.77043,10.90139],[79.76935,10.89997],[79.76695,10.9002],[79.76782,10.89871],[79.76664,10.89863],[79.76616,10.90061],[79.76719,10.90119]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"6","area_level":"District","area_name":"Kargil","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.4332,34.74724],[76.44824,34.75183],[76.43481,34.75011],[76.42805,34.74779],[76.42011,34.74242],[76.4098,34.74173],[76.38489,34.73501],[76.36003,34.73349],[76.33607,34.71923],[76.31606,34.71537],[76.30667,34.71096],[76.30318,34.70764],[76.28692,34.70826],[76.27635,34.70663],[76.24691,34.68835],[76.23031,34.68243],[76.22363,34.68249],[76.21455,34.68578],[76.20588,34.69428],[76.19678,34.6967],[76.18407,34.69247],[76.16576,34.68945],[76.14785,34.6902],[76.1193,34.68408],[76.09976,34.68749],[76.08192,34.69433],[76.04826,34.69985],[76.03469,34.7051],[76.00087,34.72745],[75.9848,34.73629],[75.97215,34.73669],[75.94873,34.71687],[75.94378,34.68352],[75.92357,34.63309],[75.90552,34.60321],[75.88882,34.5613],[75.87856,34.55153],[75.86223,34.54396],[75.84864,34.54412],[75.84018,34.53961],[75.83664,34.53363],[75.8302,34.52767],[75.80815,34.52662],[75.79497,34.51398],[75.77814,34.51265],[75.75535,34.51476],[75.5576,34.5139],[75.53549,34.50295],[75.50985,34.48337],[75.49875,34.46949],[75.48997,34.45463],[75.48224,34.42152],[75.45253,34.39281],[75.38333,34.36704],[75.38571,34.36614],[75.38051,34.3583],[75.38476,34.35402],[75.38577,34.34989],[75.37596,34.34227],[75.38398,34.33672],[75.38467,34.32824],[75.39605,34.31672],[75.39027,34.31103],[75.38892,34.30548],[75.39284,34.29708],[75.40458,34.28387],[75.41089,34.28469],[75.41922,34.28189],[75.42263,34.2839],[75.42612,34.28219],[75.43087,34.28357],[75.43737,34.28248],[75.43949,34.27949],[75.44424,34.28033],[75.45362,34.28592],[75.45918,34.27942],[75.47011,34.27939],[75.47485,34.27759],[75.48217,34.27165],[75.48295,34.26904],[75.48105,34.2624],[75.48379,34.2587],[75.48238,34.25506],[75.48858,34.24662],[75.4959,34.24097],[75.49696,34.23764],[75.49536,34.2324],[75.5029,34.23435],[75.51459,34.22671],[75.52313,34.229],[75.52973,34.22683],[75.53427,34.22366],[75.53824,34.22308],[75.55533,34.21141],[75.57026,34.21137],[75.57993,34.21397],[75.59336,34.19769],[75.6046,34.19519],[75.62179,34.20179],[75.62607,34.20131],[75.63701,34.20979],[75.64812,34.212],[75.6549,34.20796],[75.65739,34.20294],[75.66242,34.19913],[75.67075,34.19803],[75.68054,34.20096],[75.68979,34.19609],[75.69072,34.19527],[75.6873,34.18694],[75.68805,34.18486],[75.68411,34.17802],[75.68278,34.17059],[75.68448,34.16678],[75.68005,34.16246],[75.67814,34.15378],[75.67016,34.14998],[75.66795,34.14429],[75.67361,34.14516],[75.68235,34.14404],[75.68571,34.14216],[75.68229,34.13556],[75.68316,34.13243],[75.69125,34.12761],[75.68563,34.12091],[75.68736,34.11605],[75.69684,34.11343],[75.70774,34.10724],[75.7188,34.10325],[75.72148,34.0944],[75.7251,34.08966],[75.73337,34.08411],[75.73475,34.07895],[75.74254,34.07326],[75.73703,34.05891],[75.74148,34.05616],[75.75,34.05485],[75.75517,34.05674],[75.76852,34.05492],[75.76769,34.04381],[75.76919,34.04128],[75.7797,34.03762],[75.78671,34.0312],[75.79694,34.03045],[75.79754,34.02598],[75.79984,34.02298],[75.81429,34.01451],[75.81827,34.00751],[75.82783,34.00626],[75.8358,34.00714],[75.84306,34.00478],[75.84371,34.00324],[75.84161,33.99957],[75.83024,33.9924],[75.8256,33.97781],[75.81963,33.97221],[75.82212,33.96558],[75.83065,33.95874],[75.84046,33.95409],[75.84436,33.95418],[75.85249,33.96225],[75.87356,33.96205],[75.88821,33.96864],[75.8932,33.96909],[75.89856,33.96744],[75.90854,33.96888],[75.91745,33.96295],[75.94286,33.96046],[75.9496,33.95589],[75.9587,33.95685],[75.96654,33.95452],[75.96883,33.96016],[75.97271,33.96252],[75.9782,33.97219],[75.99053,33.97239],[76.00542,33.97674],[76.01219,33.97439],[76.01795,33.97507],[76.02436,33.98212],[76.02654,33.97163],[76.04292,33.95255],[76.04826,33.94036],[76.04947,33.93386],[76.04898,33.93149],[76.04137,33.92529],[76.03389,33.92417],[76.03257,33.91966],[76.03804,33.91887],[76.04776,33.91242],[76.07008,33.90887],[76.08258,33.90348],[76.09191,33.90243],[76.0969,33.90041],[76.10024,33.89626],[76.10725,33.89185],[76.1179,33.88872],[76.12296,33.88905],[76.12501,33.88528],[76.13668,33.8786],[76.13847,33.87242],[76.13754,33.87008],[76.14255,33.86646],[76.14951,33.85362],[76.14908,33.85015],[76.1554,33.84725],[76.15425,33.8406],[76.15998,33.83692],[76.15687,33.82999],[76.16264,33.8212],[76.16598,33.81935],[76.16324,33.81741],[76.15975,33.80847],[76.16138,33.80185],[76.16725,33.79782],[76.18474,33.80015],[76.19867,33.78723],[76.20036,33.77564],[76.2108,33.77119],[76.21258,33.76118],[76.21885,33.75873],[76.23611,33.75987],[76.24708,33.75853],[76.24786,33.75456],[76.25002,33.75246],[76.26021,33.75],[76.26547,33.74638],[76.26726,33.74038],[76.26578,33.73378],[76.27117,33.73075],[76.26741,33.72468],[76.26713,33.71709],[76.26324,33.71209],[76.26618,33.70694],[76.26311,33.70305],[76.26569,33.69743],[76.26472,33.68942],[76.2696,33.6851],[76.26621,33.67953],[76.2705,33.67559],[76.27352,33.66935],[76.28465,33.66184],[76.28005,33.65469],[76.27412,33.65232],[76.27048,33.64331],[76.26556,33.64351],[76.25304,33.63808],[76.24891,33.63864],[76.22937,33.62983],[76.22778,33.62563],[76.23281,33.62316],[76.23723,33.61759],[76.24096,33.60959],[76.24034,33.60485],[76.23865,33.60244],[76.23071,33.60304],[76.22422,33.60031],[76.22412,33.59684],[76.22792,33.5941],[76.2314,33.58695],[76.22522,33.57728],[76.21787,33.57366],[76.20648,33.57328],[76.20544,33.5692],[76.20549,33.56771],[76.20914,33.56646],[76.21977,33.55532],[76.22503,33.54759],[76.23192,33.54519],[76.24123,33.54831],[76.24574,33.54554],[76.25965,33.56502],[76.27787,33.56752],[76.30234,33.56736],[76.30978,33.57146],[76.31014,33.57861],[76.30182,33.58976],[76.2996,33.59824],[76.30098,33.60213],[76.30768,33.60963],[76.31744,33.60718],[76.32218,33.60227],[76.3295,33.60427],[76.33624,33.61051],[76.34692,33.60494],[76.35865,33.60369],[76.36004,33.59454],[76.36646,33.58575],[76.38073,33.57695],[76.37475,33.56588],[76.37928,33.55821],[76.37992,33.55292],[76.41024,33.54313],[76.4152,33.53908],[76.4264,33.53728],[76.43508,33.54167],[76.43996,33.54742],[76.44395,33.56055],[76.44735,33.56429],[76.45072,33.5625],[76.45783,33.55428],[76.4624,33.55162],[76.46467,33.54523],[76.45849,33.53852],[76.45916,33.53389],[76.46995,33.52768],[76.47908,33.52683],[76.49188,33.51691],[76.49927,33.51742],[76.50205,33.51598],[76.5067,33.50998],[76.5078,33.49957],[76.51442,33.49514],[76.52291,33.49338],[76.52784,33.48349],[76.53477,33.48219],[76.54091,33.47068],[76.54548,33.46873],[76.54964,33.46405],[76.55409,33.46411],[76.55764,33.46203],[76.56342,33.46252],[76.56949,33.46617],[76.57654,33.45298],[76.57706,33.44335],[76.57999,33.43831],[76.57795,33.42956],[76.58185,33.42579],[76.59341,33.42576],[76.60021,33.43143],[76.60576,33.43167],[76.61088,33.4349],[76.61327,33.43893],[76.61645,33.43992],[76.62051,33.43956],[76.62896,33.43489],[76.62955,33.4239],[76.63698,33.41553],[76.63612,33.41144],[76.63212,33.40919],[76.63841,33.40343],[76.63647,33.40184],[76.641,33.39098],[76.65148,33.38342],[76.65198,33.37044],[76.65839,33.36469],[76.65864,33.35757],[76.67242,33.34916],[76.67102,33.34185],[76.67388,33.33927],[76.68238,33.33677],[76.69647,33.32781],[76.70537,33.32807],[76.71208,33.33108],[76.71775,33.32897],[76.72588,33.31516],[76.72524,33.31134],[76.72855,33.30822],[76.72865,33.30394],[76.73211,33.29933],[76.72982,33.29676],[76.72847,33.29104],[76.72986,33.28871],[76.72773,33.28348],[76.73271,33.28151],[76.7325,33.27554],[76.73848,33.26868],[76.73705,33.2611],[76.75238,33.24959],[76.75648,33.24846],[76.76767,33.24831],[76.77743,33.25377],[76.78484,33.25346],[76.793,33.25636],[76.79915,33.25624],[76.80344,33.25295],[76.80684,33.24498],[76.82006,33.23584],[76.8224,33.23678],[76.82352,33.24333],[76.83071,33.24919],[76.84317,33.24674],[76.84461,33.24227],[76.84052,33.23959],[76.83769,33.23403],[76.83185,33.22911],[76.82771,33.22257],[76.82839,33.21856],[76.82561,33.21569],[76.83176,33.21233],[76.83131,33.20995],[76.83406,33.20859],[76.83446,33.20485],[76.8293,33.20325],[76.82364,33.19762],[76.81739,33.19414],[76.82238,33.18507],[76.81884,33.17989],[76.81354,33.17724],[76.81319,33.171],[76.81737,33.16673],[76.8167,33.16034],[76.82312,33.15037],[76.82964,33.14659],[76.83005,33.14284],[76.83481,33.14065],[76.83881,33.14122],[76.84397,33.13778],[76.84299,33.13033],[76.84891,33.12871],[76.85291,33.12569],[76.84923,33.12043],[76.85507,33.11438],[76.86243,33.11272],[76.87051,33.11336],[76.87724,33.11884],[76.8851,33.12138],[76.89152,33.11412],[76.89327,33.10992],[76.89255,33.10591],[76.89749,33.10085],[76.89771,33.09869],[76.90871,33.09457],[76.90996,33.08962],[76.90569,33.08504],[76.9052,33.07952],[76.91089,33.07601],[76.91421,33.06338],[76.92546,33.04742],[76.92577,33.03827],[76.92869,33.03166],[76.93299,33.02817],[76.94097,33.02832],[76.9507,33.01818],[76.95966,33.01534],[76.96145,33.01129],[76.9606,33.00914],[76.96373,33.00517],[76.96812,33.00418],[76.97135,33.00028],[76.98082,33.0],[76.98901,33.00262],[76.99231,33.00179],[76.9959,32.99757],[77.00949,32.98866],[77.02387,32.99132],[77.03163,32.98971],[77.03894,32.99765],[77.04739,32.99862],[77.05704,32.9916],[77.07119,32.98441],[77.08016,32.98301],[77.08266,32.97844],[77.08185,32.97528],[77.08652,32.97241],[77.09684,32.9715],[77.11076,32.97514],[77.11161,32.97914],[77.11602,32.98467],[77.13372,32.98007],[77.14217,32.98149],[77.14678,32.97851],[77.15052,32.97817],[77.14912,32.96848],[77.14736,32.9657],[77.14922,32.96058],[77.14873,32.95616],[77.16113,32.95266],[77.16194,32.95064],[77.15947,32.93825],[77.16454,32.93648],[77.16171,32.93171],[77.16389,32.91823],[77.15988,32.91304],[77.15574,32.91158],[77.17044,32.91067],[77.17393,32.91333],[77.1785,32.92313],[77.18797,32.92874],[77.19287,32.92344],[77.19341,32.9164],[77.20292,32.90655],[77.21913,32.90407],[77.23367,32.89444],[77.24299,32.89216],[77.23997,32.88439],[77.23726,32.88335],[77.23759,32.88018],[77.24426,32.87267],[77.25,32.87236],[77.25331,32.86934],[77.25524,32.86602],[77.25427,32.86394],[77.26269,32.86409],[77.26629,32.86883],[77.27809,32.87846],[77.28568,32.87913],[77.29574,32.88558],[77.29878,32.88321],[77.3038,32.8828],[77.31832,32.8944],[77.31468,32.89915],[77.31415,32.90392],[77.31052,32.9076],[77.3077,32.92268],[77.30271,32.92626],[77.30082,32.92966],[77.30171,32.93808],[77.29631,32.94155],[77.2943,32.94692],[77.28939,32.95123],[77.28679,32.95672],[77.28748,32.96327],[77.28522,32.9727],[77.28709,32.97792],[77.27933,32.98321],[77.27958,32.99059],[77.27648,32.99469],[77.27669,32.99853],[77.27975,33.00138],[77.28314,33.00881],[77.28435,33.01966],[77.29027,33.02701],[77.28908,33.03176],[77.29156,33.03895],[77.29613,33.03491],[77.30523,33.03753],[77.30944,33.03492],[77.31374,33.03476],[77.31688,33.03761],[77.31569,33.0454],[77.32427,33.0424],[77.32817,33.04479],[77.33009,33.04836],[77.33579,33.05],[77.33794,33.06864],[77.33499,33.07363],[77.33907,33.08732],[77.35213,33.08523],[77.35724,33.08166],[77.36356,33.08035],[77.38017,33.08573],[77.39459,33.08197],[77.40793,33.08648],[77.41562,33.10119],[77.41326,33.11354],[77.41436,33.11953],[77.41123,33.12743],[77.41384,33.1339],[77.41767,33.13623],[77.41335,33.14214],[77.40925,33.14428],[77.40984,33.14999],[77.40692,33.15609],[77.40971,33.15989],[77.4102,33.16476],[77.40252,33.17206],[77.40695,33.17926],[77.41198,33.18239],[77.41299,33.189],[77.41637,33.19195],[77.41865,33.1985],[77.43444,33.20508],[77.45376,33.20625],[77.46239,33.20155],[77.46859,33.20117],[77.47482,33.19438],[77.4834,33.19384],[77.49045,33.1846],[77.51736,33.17366],[77.52425,33.16363],[77.53786,33.1582],[77.53547,33.17194],[77.53747,33.1755],[77.53746,33.18095],[77.53299,33.18495],[77.53133,33.18927],[77.52466,33.19457],[77.52287,33.20151],[77.52387,33.20668],[77.52063,33.21991],[77.50989,33.22532],[77.50518,33.23059],[77.50072,33.23999],[77.49242,33.24639],[77.49547,33.25334],[77.49363,33.25957],[77.48647,33.26846],[77.48285,33.26872],[77.47589,33.27623],[77.48095,33.28082],[77.48725,33.29107],[77.49923,33.3012],[77.4993,33.30416],[77.49464,33.31022],[77.4946,33.31359],[77.50158,33.3171],[77.50763,33.32403],[77.51543,33.32575],[77.53445,33.32459],[77.53993,33.32975],[77.54466,33.32968],[77.56093,33.33578],[77.56024,33.34226],[77.55489,33.348],[77.55796,33.35163],[77.55754,33.35355],[77.54739,33.35991],[77.53879,33.35916],[77.53516,33.35693],[77.53228,33.36031],[77.52574,33.35894],[77.52495,33.36511],[77.51379,33.36835],[77.51271,33.37479],[77.51657,33.3787],[77.51536,33.38624],[77.5202,33.39238],[77.51972,33.39819],[77.52228,33.4075],[77.51664,33.41175],[77.50845,33.41257],[77.50297,33.41568],[77.49571,33.41381],[77.48823,33.41533],[77.47997,33.4204],[77.47182,33.43275],[77.46668,33.44493],[77.4633,33.44733],[77.45922,33.45926],[77.45445,33.46363],[77.44887,33.48013],[77.44259,33.49376],[77.43999,33.49525],[77.41155,33.49421],[77.40216,33.49216],[77.39711,33.49304],[77.39614,33.48883],[77.39375,33.4874],[77.3862,33.48615],[77.38194,33.48337],[77.3765,33.48256],[77.37251,33.47948],[77.36108,33.47666],[77.34383,33.48475],[77.34207,33.48867],[77.33715,33.49307],[77.32237,33.48946],[77.3171,33.49086],[77.30861,33.48558],[77.29849,33.48784],[77.2937,33.49673],[77.2822,33.50148],[77.28425,33.50911],[77.28144,33.5095],[77.27667,33.51341],[77.27257,33.51964],[77.26458,33.52138],[77.25584,33.52922],[77.25653,33.53254],[77.25518,33.5338],[77.25459,33.54202],[77.24098,33.55995],[77.24234,33.56618],[77.23843,33.58611],[77.23307,33.59076],[77.2382,33.59843],[77.23802,33.60222],[77.22467,33.61504],[77.20805,33.62236],[77.20756,33.62958],[77.21014,33.63351],[77.20684,33.63963],[77.19457,33.64273],[77.1926,33.6452],[77.18354,33.64948],[77.18076,33.6568],[77.17563,33.66288],[77.16882,33.6616],[77.16313,33.66423],[77.14924,33.67972],[77.12915,33.68538],[77.12014,33.68039],[77.1204,33.6765],[77.1102,33.67612],[77.10694,33.67317],[77.10047,33.67202],[77.07342,33.69233],[77.07226,33.69884],[77.06556,33.7009],[77.06088,33.70553],[77.05369,33.709],[77.04763,33.7067],[77.04507,33.70806],[77.03188,33.70841],[77.01918,33.7044],[76.99774,33.71805],[76.99241,33.71982],[76.99043,33.72298],[76.98664,33.72263],[76.98539,33.72414],[76.97211,33.71798],[76.96571,33.71151],[76.95911,33.71337],[76.95124,33.71262],[76.94957,33.71548],[76.94452,33.71779],[76.94068,33.71639],[76.93624,33.72257],[76.92652,33.72699],[76.92229,33.73497],[76.90105,33.74192],[76.90955,33.75],[76.91371,33.75882],[76.90806,33.76362],[76.90855,33.76883],[76.9023,33.77048],[76.90119,33.77416],[76.89279,33.77586],[76.8895,33.78104],[76.88593,33.7772],[76.8736,33.77269],[76.85963,33.77431],[76.8563,33.77768],[76.84362,33.78301],[76.84048,33.78751],[76.83251,33.79047],[76.8286,33.79379],[76.79498,33.7954],[76.78935,33.79949],[76.77871,33.80366],[76.7776,33.80744],[76.77567,33.80804],[76.76665,33.80486],[76.75544,33.80527],[76.72876,33.79578],[76.71815,33.80153],[76.71685,33.80755],[76.70876,33.81637],[76.70651,33.82325],[76.70166,33.82415],[76.69685,33.82845],[76.69138,33.82942],[76.68153,33.83675],[76.67203,33.84091],[76.66971,33.84516],[76.66341,33.84963],[76.65908,33.85875],[76.65441,33.86166],[76.64744,33.8634],[76.64018,33.86001],[76.6234,33.85587],[76.60668,33.84046],[76.60059,33.82981],[76.59484,33.82712],[76.58504,33.82868],[76.57521,33.82589],[76.56767,33.82638],[76.56634,33.8288],[76.56763,33.83421],[76.56367,33.83919],[76.55454,33.8424],[76.5278,33.84652],[76.52496,33.85174],[76.52549,33.85739],[76.51858,33.86078],[76.51659,33.86345],[76.5178,33.86591],[76.52904,33.87107],[76.53044,33.87837],[76.52422,33.88628],[76.50985,33.88931],[76.51924,33.90038],[76.52445,33.90407],[76.52537,33.91326],[76.52817,33.91338],[76.53437,33.91743],[76.53609,33.92338],[76.54048,33.9254],[76.54182,33.92783],[76.54153,33.93076],[76.53157,33.94015],[76.53392,33.94512],[76.53394,33.95114],[76.53723,33.9536],[76.52783,33.9609],[76.5253,33.96734],[76.52606,33.969],[76.53083,33.9702],[76.53092,33.98053],[76.53762,33.98165],[76.54184,33.98573],[76.54114,33.99739],[76.54685,33.99664],[76.54929,33.99416],[76.55218,33.99607],[76.55347,33.99955],[76.55269,34.00398],[76.55544,34.00633],[76.56223,34.00703],[76.56941,34.00217],[76.57231,34.0031],[76.57526,34.00762],[76.5791,34.00621],[76.58273,34.00847],[76.58397,34.0103],[76.58256,34.01257],[76.58319,34.01488],[76.58861,34.0204],[76.58567,34.02418],[76.58521,34.03658],[76.58009,34.04371],[76.5793,34.0473],[76.59023,34.05092],[76.58983,34.05791],[76.59119,34.05885],[76.61023,34.06675],[76.61651,34.06501],[76.62456,34.0593],[76.62881,34.06037],[76.6321,34.06381],[76.63557,34.06125],[76.64082,34.0605],[76.65459,34.06434],[76.6603,34.06367],[76.66948,34.068],[76.67235,34.07723],[76.68231,34.07599],[76.68503,34.07726],[76.68447,34.07957],[76.68725,34.08197],[76.68817,34.08501],[76.68093,34.08799],[76.6806,34.09204],[76.67281,34.10461],[76.67068,34.11491],[76.67352,34.11858],[76.67172,34.12146],[76.67302,34.12302],[76.67162,34.12887],[76.66858,34.13722],[76.66079,34.14775],[76.66708,34.15388],[76.66869,34.16752],[76.68157,34.18045],[76.68061,34.18422],[76.6819,34.19578],[76.67484,34.20871],[76.6753,34.21126],[76.67202,34.21461],[76.67078,34.22259],[76.67788,34.23328],[76.67483,34.23983],[76.69035,34.242],[76.69521,34.24682],[76.70092,34.25802],[76.70125,34.2621],[76.69916,34.2668],[76.70017,34.2709],[76.69752,34.27384],[76.69843,34.276],[76.69673,34.27875],[76.69951,34.28772],[76.70298,34.29173],[76.70071,34.29479],[76.70352,34.29962],[76.702,34.3071],[76.7066,34.31186],[76.70945,34.31823],[76.72235,34.32721],[76.70637,34.33722],[76.69161,34.34286],[76.68365,34.34787],[76.67909,34.35435],[76.6626,34.36287],[76.65698,34.36921],[76.64295,34.37172],[76.62468,34.37938],[76.61664,34.38585],[76.61826,34.38897],[76.60345,34.40303],[76.6026,34.40547],[76.60474,34.40756],[76.61925,34.41851],[76.6279,34.43705],[76.63705,34.44108],[76.64663,34.44905],[76.6578,34.47138],[76.65835,34.48179],[76.6524,34.48853],[76.6418,34.48878],[76.6393,34.49881],[76.62227,34.50584],[76.62215,34.50777],[76.62595,34.51005],[76.62469,34.51236],[76.62682,34.51462],[76.62583,34.52243],[76.62236,34.52952],[76.62247,34.53505],[76.61853,34.54154],[76.6054,34.55025],[76.60252,34.55672],[76.5986,34.56024],[76.5762,34.55821],[76.57182,34.56028],[76.56123,34.57038],[76.53046,34.57385],[76.52838,34.57876],[76.52909,34.58597],[76.52547,34.59425],[76.51683,34.60026],[76.5113,34.60043],[76.50157,34.60643],[76.49112,34.61832],[76.47587,34.62267],[76.47011,34.62592],[76.47284,34.63373],[76.46439,34.64354],[76.4596,34.6464],[76.4567,34.65254],[76.44891,34.65832],[76.44794,34.66623],[76.4498,34.66955],[76.44553,34.67539],[76.44505,34.68565],[76.43375,34.70533],[76.4281,34.70989],[76.4246,34.71687],[76.42023,34.72089],[76.42092,34.73091],[76.4194,34.73741],[76.42895,34.74566],[76.4332,34.74724]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"60","area_level":"District","area_name":"Faridabad","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.16826,28.2933],[77.16402,28.29362],[77.16402,28.29252],[77.16423,28.29193],[77.1653,28.29075],[77.16532,28.29049],[77.16515,28.29009],[77.16399,28.28858],[77.16347,28.28771],[77.16439,28.28695],[77.16397,28.28641],[77.164,28.28614],[77.1655,28.2851],[77.16509,28.2842],[77.16507,28.28406],[77.16523,28.28398],[77.16516,28.28359],[77.16863,28.28096],[77.16879,28.28117],[77.16845,28.28186],[77.16907,28.28207],[77.16959,28.28205],[77.16974,28.28225],[77.17111,28.28144],[77.17289,28.28068],[77.17646,28.27881],[77.17762,28.28013],[77.17748,28.28044],[77.17861,28.28267],[77.17844,28.28319],[77.17796,28.28371],[77.1798,28.28551],[77.17937,28.28601],[77.17935,28.28637],[77.1785,28.2871],[77.17866,28.28769],[77.1771,28.28847],[77.17617,28.28929],[77.17294,28.29144],[77.1731,28.29167],[77.17105,28.29358],[77.16954,28.29332],[77.16826,28.2933]]],[[[77.35433,28.49905],[77.34774,28.50419],[77.34761,28.51046],[77.34511,28.51323],[77.33611,28.50519],[77.32683,28.49011],[77.31837,28.48737],[77.3141,28.48361],[77.30653,28.48939],[77.30079,28.48985],[77.3006,28.49417],[77.29027,28.49654],[77.27653,28.49328],[77.27206,28.4908],[77.26945,28.48664],[77.2433,28.47882],[77.23559,28.47112],[77.23292,28.45791],[77.23441,28.45472],[77.24251,28.45615],[77.24656,28.45271],[77.2492,28.44518],[77.24883,28.43292],[77.25264,28.43291],[77.2493,28.42418],[77.23841,28.42083],[77.22852,28.41391],[77.21661,28.40973],[77.21601,28.41146],[77.19053,28.40721],[77.18437,28.41043],[77.17448,28.40467],[77.16991,28.39457],[77.16091,28.39414],[77.15329,28.38911],[77.15085,28.38009],[77.15356,28.37947],[77.14925,28.36394],[77.15178,28.36163],[77.15116,28.34013],[77.15613,28.31771],[77.16244,28.31508],[77.16202,28.31268],[77.16666,28.31087],[77.16618,28.30831],[77.18285,28.30267],[77.20082,28.28941],[77.20817,28.29891],[77.22375,28.28759],[77.22832,28.28955],[77.24187,28.27934],[77.23723,28.27006],[77.24611,28.26257],[77.25524,28.25814],[77.25708,28.26053],[77.25606,28.26743],[77.25715,28.27235],[77.27,28.26898],[77.27324,28.26663],[77.27969,28.26967],[77.28609,28.26511],[77.30096,28.26238],[77.30845,28.25522],[77.31302,28.25939],[77.32237,28.26017],[77.32737,28.25684],[77.33173,28.25009],[77.34144,28.24507],[77.34219,28.24121],[77.34432,28.24001],[77.34492,28.23505],[77.35532,28.23601],[77.36486,28.23245],[77.36792,28.23692],[77.37287,28.23578],[77.37519,28.22646],[77.3798,28.22136],[77.4055,28.21115],[77.40827,28.21431],[77.41407,28.20694],[77.4118,28.203],[77.4158,28.20043],[77.41982,28.20529],[77.42372,28.20719],[77.42492,28.20591],[77.43423,28.21388],[77.44241,28.20975],[77.44212,28.20751],[77.45611,28.20522],[77.45991,28.21039],[77.46638,28.20852],[77.471,28.21552],[77.47858,28.21429],[77.47784,28.21758],[77.48342,28.21851],[77.48484,28.22135],[77.4884,28.21775],[77.49024,28.21902],[77.48912,28.22218],[77.49373,28.22818],[77.49824,28.23073],[77.4936,28.23585],[77.49355,28.24449],[77.49495,28.24692],[77.498,28.24804],[77.49269,28.25198],[77.49079,28.27133],[77.49414,28.27483],[77.49467,28.27276],[77.49877,28.27841],[77.50343,28.28007],[77.50029,28.28152],[77.50173,28.28386],[77.4985,28.2856],[77.50294,28.28908],[77.50707,28.30569],[77.48571,28.32163],[77.48486,28.32569],[77.48195,28.32506],[77.47174,28.32811],[77.47318,28.33255],[77.47121,28.33482],[77.47818,28.33934],[77.49015,28.34345],[77.4963,28.34914],[77.5052,28.36264],[77.50005,28.36564],[77.50482,28.36999],[77.50279,28.36992],[77.49122,28.38515],[77.48281,28.38782],[77.47344,28.39697],[77.47567,28.39957],[77.48021,28.39873],[77.4813,28.40489],[77.48377,28.40809],[77.47763,28.41906],[77.46355,28.41515],[77.46115,28.41767],[77.4625,28.42436],[77.45161,28.42474],[77.45225,28.42688],[77.44126,28.42873],[77.44212,28.43083],[77.43552,28.43095],[77.43921,28.43504],[77.43597,28.43771],[77.43826,28.43868],[77.43343,28.45492],[77.41901,28.45223],[77.40006,28.45564],[77.40809,28.46717],[77.40578,28.46577],[77.39194,28.47203],[77.38734,28.468],[77.38047,28.47027],[77.37818,28.47252],[77.37835,28.47454],[77.37474,28.47648],[77.37006,28.4857],[77.37174,28.49844],[77.36777,28.50025],[77.36269,28.49883],[77.3581,28.50185],[77.35433,28.49905]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"600","area_level":"District","area_name":"Puducherry","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.67992,11.81443],[79.67941,11.81458],[79.67593,11.8143],[79.67468,11.80586],[79.67458,11.80354],[79.67575,11.80226],[79.67742,11.7997],[79.67845,11.79842],[79.68005,11.79705],[79.68142,11.79624],[79.68393,11.80217],[79.68563,11.80176],[79.68571,11.80252],[79.68966,11.80214],[79.69057,11.807],[79.69062,11.80857],[79.68945,11.80907],[79.68862,11.81066],[79.68813,11.81224],[79.6853,11.81257],[79.68313,11.81311],[79.67992,11.81443]]],[[[79.69922,11.82304],[79.69459,11.82304],[79.69435,11.81871],[79.69393,11.81682],[79.69299,11.81374],[79.69556,11.81369],[79.69805,11.81378],[79.69918,11.81365],[79.70172,11.81365],[79.70423,11.81347],[79.70413,11.81394],[79.70386,11.81453],[79.70289,11.81577],[79.70275,11.8162],[79.70258,11.8172],[79.70228,11.82098],[79.702,11.82291],[79.70039,11.82293],[79.69922,11.82304]]],[[[79.73772,11.84296],[79.73743,11.84431],[79.73673,11.84421],[79.73821,11.83692],[79.72945,11.83696],[79.73239,11.8334],[79.73166,11.8244],[79.73275,11.8238],[79.73301,11.81813],[79.73479,11.81685],[79.73429,11.81434],[79.73467,11.8131],[79.73592,11.81248],[79.73572,11.80932],[79.7298,11.80926],[79.72987,11.81003],[79.72452,11.81044],[79.72424,11.80751],[79.72553,11.80585],[79.7253,11.80315],[79.72312,11.80285],[79.72262,11.79962],[79.72352,11.79906],[79.72282,11.79649],[79.71702,11.79755],[79.71676,11.79646],[79.71391,11.7963],[79.71236,11.79151],[79.71292,11.79083],[79.71988,11.78495],[79.72186,11.78686],[79.7247,11.7834],[79.72618,11.78252],[79.7319,11.78076],[79.74027,11.78089],[79.74978,11.77609],[79.7551,11.77523],[79.75596,11.77535],[79.7576,11.78345],[79.7584,11.7838],[79.75836,11.78494],[79.75999,11.78702],[79.76096,11.78694],[79.762,11.79079],[79.76315,11.79056],[79.76591,11.79183],[79.76882,11.79073],[79.76886,11.78912],[79.77066,11.78951],[79.77109,11.78814],[79.77038,11.78714],[79.77022,11.78342],[79.77194,11.78218],[79.77478,11.7819],[79.77499,11.78246],[79.77867,11.78113],[79.78049,11.78111],[79.78124,11.7843],[79.78308,11.78495],[79.78443,11.78734],[79.79586,11.78572],[79.79852,11.802],[79.80494,11.82751],[79.80706,11.83349],[79.80225,11.83389],[79.80139,11.83467],[79.80043,11.83766],[79.79829,11.8387],[79.79768,11.83786],[79.79814,11.83465],[79.79384,11.83355],[79.79364,11.83235],[79.79601,11.83324],[79.79868,11.8333],[79.8007,11.83064],[79.80053,11.82903],[79.7984,11.82755],[79.79836,11.82573],[79.79754,11.82456],[79.796,11.8247],[79.79507,11.82569],[79.79625,11.82692],[79.7958,11.8285],[79.79236,11.82755],[79.78739,11.82935],[79.78649,11.83099],[79.78022,11.83184],[79.77838,11.83171],[79.77623,11.82866],[79.77471,11.82864],[79.77438,11.82694],[79.77332,11.82638],[79.77304,11.82267],[79.77114,11.82266],[79.77105,11.82327],[79.77004,11.82344],[79.77013,11.82259],[79.76782,11.8227],[79.76775,11.82334],[79.76499,11.82412],[79.76533,11.83189],[79.76443,11.83373],[79.75571,11.83687],[79.7557,11.83754],[79.75077,11.83863],[79.74868,11.84069],[79.73964,11.84237],[79.73892,11.84365],[79.73772,11.84296]]],[[[79.65295,11.84265],[79.65155,11.84383],[79.64732,11.84422],[79.64719,11.84226],[79.64596,11.84231],[79.64535,11.83906],[79.64578,11.83896],[79.64594,11.83567],[79.64579,11.83502],[79.64461,11.83365],[79.64324,11.82608],[79.64257,11.82578],[79.64189,11.8248],[79.64104,11.82441],[79.64105,11.82279],[79.64434,11.82221],[79.64452,11.82122],[79.64518,11.82098],[79.64501,11.82021],[79.64708,11.81968],[79.64628,11.81637],[79.64786,11.81601],[79.64798,11.81543],[79.65036,11.81521],[79.65272,11.81444],[79.65791,11.81384],[79.65965,11.81287],[79.66066,11.81367],[79.66342,11.81306],[79.66519,11.815],[79.67129,11.81488],[79.67131,11.82365],[79.66595,11.82453],[79.6634,11.82529],[79.66245,11.82581],[79.65946,11.8294],[79.65949,11.83003],[79.66063,11.83263],[79.66189,11.83755],[79.66178,11.83942],[79.65455,11.84186],[79.65295,11.84265]]],[[[79.69984,11.87392],[79.69974,11.87427],[79.69948,11.8743],[79.69903,11.87378],[79.69876,11.87365],[79.69723,11.87408],[79.69712,11.87171],[79.696,11.86035],[79.69907,11.86129],[79.69949,11.86762],[79.69941,11.86912],[79.69984,11.87392]]],[[[79.79332,11.88455],[79.79159,11.885],[79.79125,11.88393],[79.79295,11.88348],[79.79332,11.88455]]],[[[79.63411,11.88106],[79.62989,11.88129],[79.62978,11.88868],[79.62491,11.88925],[79.62496,11.8908],[79.62122,11.8906],[79.61892,11.88637],[79.61847,11.88615],[79.61819,11.88459],[79.61762,11.88435],[79.61711,11.88341],[79.6119,11.87898],[79.60815,11.87686],[79.60741,11.87844],[79.60459,11.88135],[79.60168,11.88267],[79.59941,11.88301],[79.60007,11.87584],[79.60056,11.87568],[79.60138,11.87115],[79.6027,11.87174],[79.60315,11.86875],[79.602,11.85786],[79.60448,11.85873],[79.60564,11.85872],[79.60764,11.8601],[79.61066,11.86002],[79.61021,11.86067],[79.61251,11.86169],[79.61223,11.86263],[79.61406,11.86274],[79.61408,11.86303],[79.61951,11.86269],[79.61973,11.86812],[79.61915,11.87019],[79.62431,11.86948],[79.62846,11.8698],[79.62857,11.86532],[79.62727,11.86482],[79.62692,11.8575],[79.62634,11.85467],[79.62868,11.85389],[79.63615,11.85292],[79.64713,11.85074],[79.64713,11.85016],[79.65284,11.8505],[79.65378,11.85099],[79.65384,11.85174],[79.65685,11.85207],[79.65692,11.85251],[79.65789,11.85266],[79.65869,11.85486],[79.66126,11.8593],[79.66175,11.85935],[79.66165,11.86118],[79.66342,11.86125],[79.66335,11.86545],[79.66276,11.86551],[79.66273,11.86725],[79.65928,11.86773],[79.65923,11.86863],[79.65781,11.8687],[79.65775,11.87009],[79.64858,11.87053],[79.64839,11.88045],[79.64052,11.88059],[79.64116,11.88663],[79.6357,11.88814],[79.6347,11.88876],[79.6345,11.88104],[79.63411,11.88106]]],[[[79.79099,11.89533],[79.78926,11.89584],[79.78902,11.89504],[79.79071,11.89455],[79.79099,11.89533]]],[[[79.68767,11.96911],[79.68785,11.9696],[79.68651,11.97325],[79.68035,11.97286],[79.68019,11.97188],[79.6784,11.97183],[79.67776,11.96886],[79.67678,11.96886],[79.67667,11.96811],[79.67509,11.96832],[79.67483,11.96791],[79.67277,11.96778],[79.66959,11.96856],[79.66756,11.96823],[79.6622,11.96917],[79.66266,11.96682],[79.66198,11.96277],[79.66193,11.96255],[79.66052,11.96258],[79.66002,11.95839],[79.65918,11.9583],[79.65721,11.95861],[79.65612,11.95918],[79.6542,11.9595],[79.65435,11.96052],[79.65379,11.96067],[79.65281,11.95786],[79.65464,11.95349],[79.65542,11.95308],[79.65685,11.95283],[79.65735,11.95248],[79.65823,11.95251],[79.65828,11.9512],[79.6587,11.95106],[79.65878,11.95007],[79.66015,11.95003],[79.66033,11.95028],[79.66123,11.95023],[79.66127,11.9505],[79.6637,11.9509],[79.66465,11.95074],[79.6668,11.94983],[79.67071,11.94935],[79.67093,11.94889],[79.67184,11.94849],[79.67194,11.94812],[79.67322,11.94787],[79.67373,11.9484],[79.67658,11.94845],[79.67669,11.94956],[79.67834,11.95003],[79.68015,11.95172],[79.6828,11.95236],[79.68276,11.95305],[79.68466,11.95335],[79.68462,11.95376],[79.68396,11.95373],[79.68383,11.95435],[79.68352,11.95448],[79.68341,11.95522],[79.68344,11.95632],[79.68381,11.95681],[79.68432,11.96014],[79.68389,11.96041],[79.68464,11.96263],[79.68767,11.96911]]],[[[79.74685,12.00755],[79.74373,12.00364],[79.74152,12.00394],[79.74132,12.00122],[79.73768,12.00095],[79.7375,11.99848],[79.73479,11.99747],[79.73343,11.99326],[79.72057,11.99274],[79.7159,11.98484],[79.71451,11.98497],[79.71465,11.98639],[79.71242,11.98655],[79.70927,11.97581],[79.71602,11.97106],[79.71503,11.96764],[79.71082,11.96728],[79.71021,11.96578],[79.7026,11.96702],[79.70368,11.96547],[79.69797,11.96049],[79.69569,11.96392],[79.69166,11.95132],[79.69576,11.9477],[79.69731,11.94175],[79.70429,11.94017],[79.70653,11.93727],[79.70662,11.93517],[79.71122,11.93307],[79.70795,11.94193],[79.70792,11.94666],[79.70968,11.94996],[79.72089,11.9449],[79.71753,11.92899],[79.72552,11.92316],[79.73221,11.91371],[79.7407,11.90544],[79.73131,11.90321],[79.7305,11.89173],[79.72888,11.89021],[79.72282,11.89172],[79.72331,11.88992],[79.72499,11.88929],[79.72373,11.88861],[79.72097,11.8905],[79.71883,11.89043],[79.71689,11.89279],[79.71119,11.89071],[79.70943,11.893],[79.70528,11.89392],[79.70606,11.89936],[79.70854,11.90158],[79.70895,11.90431],[79.70661,11.90519],[79.7066,11.91362],[79.71795,11.91336],[79.71866,11.91904],[79.6962,11.91917],[79.6956,11.90789],[79.69776,11.9076],[79.6979,11.90473],[79.69762,11.90243],[79.69574,11.90241],[79.69539,11.89479],[79.68716,11.89454],[79.68684,11.88889],[79.68263,11.88878],[79.68282,11.89197],[79.67385,11.89161],[79.674,11.8807],[79.68506,11.88098],[79.68561,11.88488],[79.68468,11.88585],[79.68654,11.88647],[79.69658,11.88667],[79.69686,11.88858],[79.69961,11.88911],[79.70982,11.88929],[79.71072,11.88759],[79.70945,11.88497],[79.70826,11.86909],[79.71271,11.86665],[79.71343,11.86067],[79.71775,11.85414],[79.71975,11.85311],[79.71946,11.85675],[79.72112,11.8625],[79.73259,11.86256],[79.73269,11.86562],[79.7397,11.86464],[79.74195,11.8628],[79.7436,11.85857],[79.74405,11.85292],[79.74246,11.85159],[79.74311,11.84832],[79.74868,11.84908],[79.7504,11.84793],[79.75393,11.85012],[79.75387,11.86593],[79.75549,11.86785],[79.75868,11.86847],[79.75743,11.87607],[79.76399,11.87697],[79.76453,11.87545],[79.76853,11.87593],[79.77009,11.87461],[79.76928,11.86507],[79.77088,11.86133],[79.7695,11.85827],[79.76696,11.858],[79.76513,11.85194],[79.7632,11.85183],[79.76217,11.84839],[79.76433,11.84687],[79.76616,11.84055],[79.77244,11.83662],[79.77588,11.83841],[79.77672,11.8452],[79.78016,11.84811],[79.78173,11.85577],[79.80067,11.85527],[79.8027,11.85401],[79.8031,11.85073],[79.80513,11.84935],[79.80529,11.84766],[79.80774,11.84673],[79.80821,11.84526],[79.80614,11.84044],[79.80656,11.83708],[79.80782,11.83658],[79.81552,11.86043],[79.82269,11.87648],[79.825,11.89065],[79.8343,11.92403],[79.84064,11.95579],[79.83281,11.95652],[79.82885,11.95833],[79.82487,11.96152],[79.82235,11.96577],[79.8185,11.97789],[79.8163,11.97903],[79.8126,11.97789],[79.80981,11.97522],[79.80648,11.96802],[79.80507,11.95326],[79.80334,11.95314],[79.79173,11.95938],[79.78472,11.95986],[79.78348,11.95626],[79.78085,11.95653],[79.77947,11.95356],[79.77677,11.9537],[79.7751,11.94973],[79.7732,11.94908],[79.77153,11.94389],[79.75994,11.9436],[79.7607,11.93202],[79.76099,11.9307],[79.76218,11.93082],[79.7622,11.92854],[79.75726,11.92817],[79.75644,11.92604],[79.75508,11.92601],[79.75512,11.92441],[79.7564,11.92426],[79.75628,11.92039],[79.75027,11.91991],[79.75112,11.92169],[79.74932,11.92216],[79.7487,11.94399],[79.74453,11.96496],[79.72963,11.97067],[79.72452,11.97123],[79.7235,11.97705],[79.72648,11.98576],[79.73041,11.98594],[79.72958,11.98468],[79.73199,11.98148],[79.73569,11.97912],[79.74195,11.97767],[79.74812,11.98475],[79.75191,11.98427],[79.75552,11.98829],[79.76042,11.9892],[79.76207,11.99312],[79.76237,12.00269],[79.74685,12.00755]],[[79.77539,11.90499],[79.77992,11.90413],[79.78767,11.89684],[79.7965,11.89989],[79.79675,11.89429],[79.79483,11.88521],[79.79212,11.88033],[79.79237,11.87685],[79.78959,11.87716],[79.78721,11.87333],[79.78521,11.86283],[79.77833,11.86316],[79.77769,11.86672],[79.7799,11.87239],[79.77967,11.87791],[79.7762,11.87822],[79.77284,11.87522],[79.77356,11.88329],[79.77102,11.88344],[79.77202,11.88537],[79.77053,11.89088],[79.77288,11.90044],[79.7692,11.90066],[79.76925,11.90174],[79.76984,11.90277],[79.77516,11.90183],[79.77539,11.90499]]],[[[79.7924,12.02582],[79.79016,12.02629],[79.78907,12.02645],[79.7888,12.02638],[79.7888,12.02574],[79.78963,12.02425],[79.78998,12.02333],[79.78998,12.02291],[79.78958,12.02092],[79.78953,12.01998],[79.78911,12.01823],[79.79065,12.01775],[79.79262,12.01738],[79.79352,12.01698],[79.79461,12.01683],[79.79494,12.01683],[79.7952,12.01736],[79.7956,12.01749],[79.79618,12.0168],[79.79691,12.0167],[79.80186,12.01707],[79.80202,12.01723],[79.80194,12.01777],[79.80213,12.01861],[79.80252,12.01914],[79.80362,12.01972],[79.80505,12.021],[79.80521,12.02166],[79.80524,12.02237],[79.805,12.02323],[79.80577,12.0242],[79.80567,12.02449],[79.80434,12.02586],[79.80125,12.02596],[79.79821,12.02548],[79.79727,12.02556],[79.79698,12.0257],[79.79586,12.02574],[79.79254,12.02535],[79.7924,12.02582]]],[[[79.62817,12.03226],[79.62553,12.03217],[79.6251,12.03129],[79.62576,12.02853],[79.62725,12.02685],[79.6268,12.02376],[79.6282,12.02335],[79.62804,12.02098],[79.62905,12.0188],[79.62583,12.01539],[79.62071,12.01353],[79.62082,12.01115],[79.61929,12.00483],[79.61968,12.00042],[79.62632,12.00036],[79.62445,11.99208],[79.62361,11.98932],[79.61718,11.98955],[79.61797,11.98498],[79.61977,11.98486],[79.61978,11.98397],[79.62082,11.98394],[79.62085,11.98238],[79.62437,11.98179],[79.62376,11.97857],[79.62457,11.97601],[79.61872,11.97099],[79.61861,11.96995],[79.62245,11.96994],[79.62251,11.96929],[79.62749,11.96815],[79.6266,11.96427],[79.62876,11.9596],[79.6284,11.94514],[79.62475,11.94313],[79.61886,11.94332],[79.61795,11.93604],[79.61851,11.93608],[79.61825,11.93213],[79.61888,11.93028],[79.61849,11.92606],[79.62703,11.92178],[79.62838,11.91948],[79.62532,11.90303],[79.63209,11.90126],[79.63651,11.90142],[79.64071,11.9022],[79.64111,11.90778],[79.65588,11.9079],[79.65605,11.91293],[79.66267,11.9131],[79.6627,11.91517],[79.6611,11.91518],[79.66103,11.91631],[79.66258,11.91645],[79.66267,11.91819],[79.66887,11.91827],[79.669,11.92602],[79.6707,11.93158],[79.66982,11.93162],[79.66977,11.93272],[79.67035,11.93272],[79.66974,11.93499],[79.67035,11.935],[79.6696,11.93553],[79.66933,11.93751],[79.66418,11.93834],[79.66426,11.93698],[79.66067,11.93716],[79.66041,11.94155],[79.65862,11.94197],[79.65865,11.94461],[79.65753,11.94508],[79.65654,11.94702],[79.65748,11.94805],[79.65289,11.94823],[79.65202,11.94357],[79.64721,11.94459],[79.64477,11.94381],[79.64265,11.9421],[79.64251,11.9473],[79.64185,11.94846],[79.64223,11.95399],[79.64731,11.95343],[79.64688,11.95662],[79.64769,11.95843],[79.64761,11.96431],[79.64852,11.96759],[79.64131,11.97053],[79.64032,11.97627],[79.63644,11.97785],[79.6379,11.98487],[79.63917,11.98821],[79.63997,11.98832],[79.64039,11.99103],[79.64148,11.99163],[79.63807,11.99354],[79.63602,11.99604],[79.63645,11.99809],[79.64105,11.99821],[79.64231,11.99923],[79.64389,12.00517],[79.64531,12.00471],[79.64629,12.0105],[79.64593,12.0119],[79.64692,12.01557],[79.64784,12.01581],[79.64733,12.01691],[79.64779,12.01875],[79.651,12.02181],[79.64471,12.02706],[79.63983,12.02783],[79.6375,12.02654],[79.63643,12.02817],[79.63492,12.02839],[79.63526,12.02942],[79.63358,12.02905],[79.63338,12.03024],[79.62817,12.03226]]],[[[79.69701,12.0326],[79.69521,12.03313],[79.69503,12.03393],[79.69379,12.03414],[79.69396,12.03481],[79.69153,12.03467],[79.69147,12.03329],[79.68977,12.02785],[79.68793,12.02785],[79.68755,12.02694],[79.68648,12.02696],[79.68623,12.02626],[79.68507,12.0264],[79.68342,12.02161],[79.6826,12.02177],[79.68146,12.02094],[79.67548,12.02137],[79.67304,12.01703],[79.67324,12.01571],[79.67156,12.01235],[79.67132,12.01006],[79.66163,12.0123],[79.6605,12.0114],[79.65977,12.01062],[79.65989,12.00979],[79.65947,12.00978],[79.65943,12.00814],[79.65799,12.00633],[79.65762,12.00516],[79.65807,12.00441],[79.65796,12.00168],[79.65844,12.00141],[79.65696,11.994],[79.65702,11.99139],[79.66056,11.99028],[79.66086,11.98921],[79.66252,11.98952],[79.66406,11.99043],[79.6673,11.99096],[79.67073,11.99321],[79.67192,11.9947],[79.6739,11.9951],[79.67426,11.99294],[79.67803,11.98625],[79.68093,11.98341],[79.68145,11.98557],[79.68194,11.98568],[79.68318,11.98779],[79.68327,11.98913],[79.68439,11.98974],[79.68547,11.99164],[79.68949,11.99009],[79.69356,11.98997],[79.69402,11.99109],[79.6946,11.99106],[79.69472,11.99199],[79.70144,11.99188],[79.70165,11.99344],[79.70219,11.99342],[79.70232,11.99418],[79.70549,11.99395],[79.7056,11.99461],[79.71464,11.99068],[79.71799,11.99042],[79.7182,11.99157],[79.71771,11.9917],[79.71786,11.9923],[79.71961,11.99222],[79.71967,11.99291],[79.71802,11.99295],[79.71844,11.99519],[79.71746,11.99602],[79.71756,11.99782],[79.71538,11.99825],[79.71513,12.00025],[79.71254,12.0014],[79.71161,12.00237],[79.71141,12.00355],[79.70823,12.0042],[79.70747,12.00597],[79.70645,12.00608],[79.70651,12.00675],[79.70436,12.00746],[79.70428,12.00807],[79.70305,12.00815],[79.70317,12.00962],[79.70251,12.00984],[79.70268,12.01295],[79.7016,12.01383],[79.70275,12.01942],[79.70334,12.01944],[79.70441,12.02704],[79.70423,12.02954],[79.70359,12.03142],[79.7025,12.03211],[79.69769,12.03308],[79.69741,12.03247],[79.69701,12.0326]]],[[[79.85713,12.00677],[79.86404,12.02172],[79.87176,12.03742],[79.87365,12.04203],[79.87241,12.04315],[79.8685,12.04517],[79.84977,12.05131],[79.84777,12.04446],[79.84611,12.04103],[79.84443,12.0361],[79.8439,12.03052],[79.84397,12.02419],[79.84282,12.02217],[79.8414,12.01711],[79.8409,12.01281],[79.84375,12.0114],[79.84988,12.00927],[79.8568,12.00605],[79.85713,12.00677]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"602","area_level":"District","area_name":"South Andamans","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[92.51836,10.90084],[92.50918,10.89924],[92.50709,10.89729],[92.50583,10.89907],[92.50296,10.89772],[92.50737,10.89295],[92.50614,10.89011],[92.50871,10.88212],[92.51196,10.88335],[92.51497,10.8879],[92.51581,10.88658],[92.51105,10.8806],[92.51788,10.87741],[92.5171,10.87503],[92.51703,10.87747],[92.51297,10.8789],[92.51349,10.87559],[92.51045,10.86986],[92.50289,10.87325],[92.49798,10.87119],[92.5012,10.86734],[92.50051,10.86375],[92.50798,10.86282],[92.50034,10.86315],[92.50045,10.86754],[92.49586,10.87071],[92.49375,10.86948],[92.49061,10.85964],[92.48784,10.85964],[92.48593,10.86179],[92.4802,10.86048],[92.47682,10.86181],[92.48287,10.86089],[92.48614,10.86215],[92.48775,10.86012],[92.49014,10.85997],[92.49322,10.86836],[92.49145,10.87147],[92.49356,10.8701],[92.50242,10.8738],[92.50935,10.87084],[92.51104,10.87181],[92.51108,10.87875],[92.50765,10.88106],[92.50656,10.88003],[92.50214,10.88199],[92.50687,10.88083],[92.50423,10.89348],[92.49653,10.89705],[92.48738,10.88975],[92.48618,10.88297],[92.48162,10.88259],[92.48209,10.8769],[92.47929,10.87306],[92.47089,10.87356],[92.4692,10.86917],[92.46351,10.86624],[92.46084,10.8688],[92.45451,10.86686],[92.45334,10.86435],[92.45415,10.861],[92.45849,10.85813],[92.46025,10.85394],[92.45729,10.84174],[92.4541,10.84007],[92.45026,10.84226],[92.44625,10.8411],[92.44556,10.83744],[92.44215,10.83447],[92.44084,10.83049],[92.43331,10.82406],[92.42549,10.82681],[92.42606,10.81719],[92.41689,10.79572],[92.40431,10.78443],[92.40084,10.78359],[92.39676,10.78698],[92.39563,10.78631],[92.39722,10.78351],[92.39566,10.77485],[92.40409,10.7759],[92.40839,10.77883],[92.4106,10.77829],[92.40843,10.77843],[92.40416,10.77536],[92.39562,10.77395],[92.39412,10.77628],[92.39492,10.77801],[92.39391,10.77772],[92.39339,10.77522],[92.39687,10.76314],[92.40259,10.76904],[92.41038,10.76437],[92.41403,10.77157],[92.41933,10.77258],[92.41413,10.77099],[92.4092,10.76318],[92.40876,10.75872],[92.41029,10.75761],[92.41204,10.76061],[92.41408,10.76059],[92.41573,10.76307],[92.41664,10.76202],[92.41206,10.76012],[92.41051,10.75728],[92.40683,10.75858],[92.40841,10.7553],[92.40609,10.75825],[92.40867,10.75965],[92.40838,10.76399],[92.40348,10.76836],[92.39595,10.76049],[92.39511,10.75565],[92.39819,10.75452],[92.39937,10.75161],[92.39592,10.74927],[92.398,10.74851],[92.39909,10.74419],[92.39764,10.74813],[92.39521,10.74895],[92.39891,10.75162],[92.39448,10.75571],[92.3955,10.76134],[92.3924,10.77521],[92.39299,10.77818],[92.39608,10.78089],[92.39503,10.78559],[92.39327,10.78611],[92.39075,10.78306],[92.38653,10.78543],[92.38639,10.79394],[92.38368,10.79553],[92.37307,10.78274],[92.37177,10.77389],[92.37773,10.77027],[92.38055,10.76323],[92.37761,10.75418],[92.38035,10.73029],[92.38328,10.72269],[92.37889,10.70829],[92.38106,10.69757],[92.37977,10.69725],[92.38147,10.69064],[92.38105,10.68432],[92.38366,10.67649],[92.38136,10.67028],[92.38834,10.66775],[92.39347,10.66869],[92.40112,10.65949],[92.41401,10.6347],[92.41912,10.61579],[92.4185,10.61284],[92.41213,10.60707],[92.40983,10.58442],[92.40459,10.57807],[92.39939,10.57575],[92.39772,10.57214],[92.39842,10.56856],[92.39377,10.56573],[92.3914,10.55936],[92.39111,10.55773],[92.39384,10.55601],[92.39078,10.55457],[92.38209,10.54398],[92.38144,10.53842],[92.38341,10.53708],[92.38452,10.53329],[92.38765,10.53153],[92.39549,10.5298],[92.40259,10.53067],[92.41354,10.53815],[92.4202,10.54847],[92.43505,10.54891],[92.45852,10.53902],[92.47089,10.52581],[92.47685,10.52077],[92.4785,10.52137],[92.48153,10.51747],[92.48844,10.51538],[92.49343,10.51652],[92.49353,10.51437],[92.50005,10.51131],[92.51326,10.51084],[92.52396,10.51454],[92.52629,10.51747],[92.53058,10.51642],[92.53294,10.51855],[92.53645,10.5258],[92.5341,10.52908],[92.53916,10.53578],[92.54287,10.53816],[92.54648,10.55307],[92.55362,10.557],[92.56989,10.57879],[92.56964,10.58376],[92.56495,10.58825],[92.55837,10.58899],[92.55281,10.59246],[92.54232,10.59478],[92.54003,10.60426],[92.54139,10.61646],[92.53989,10.61752],[92.53852,10.61491],[92.54069,10.62216],[92.54161,10.61725],[92.5457,10.62717],[92.5537,10.64004],[92.56951,10.65371],[92.57765,10.65314],[92.58107,10.65927],[92.58235,10.65803],[92.57903,10.66002],[92.57701,10.66658],[92.57732,10.67357],[92.58271,10.67855],[92.58026,10.68081],[92.58331,10.67897],[92.58849,10.68015],[92.59407,10.67658],[92.5981,10.67918],[92.59834,10.69176],[92.59715,10.69362],[92.59953,10.69917],[92.59938,10.70577],[92.59064,10.71909],[92.5889,10.73382],[92.58336,10.74418],[92.58678,10.77046],[92.58614,10.77169],[92.58316,10.7704],[92.58244,10.77136],[92.58737,10.77375],[92.58715,10.78811],[92.58492,10.79216],[92.57746,10.79855],[92.57594,10.80537],[92.57124,10.81056],[92.56892,10.81083],[92.5617,10.80452],[92.56153,10.80284],[92.56467,10.79673],[92.57132,10.79584],[92.57922,10.78544],[92.57248,10.79169],[92.57102,10.79538],[92.56378,10.7954],[92.56176,10.79696],[92.56084,10.79628],[92.56269,10.79369],[92.56052,10.79575],[92.56158,10.79735],[92.56412,10.7961],[92.56142,10.80142],[92.55994,10.79991],[92.5611,10.79881],[92.55959,10.79917],[92.56051,10.80106],[92.55876,10.80917],[92.55267,10.80813],[92.55266,10.80366],[92.5516,10.80352],[92.55236,10.80531],[92.54855,10.80963],[92.55086,10.80697],[92.55285,10.80879],[92.5585,10.80979],[92.56116,10.80539],[92.56743,10.81027],[92.56366,10.81611],[92.5591,10.8155],[92.56385,10.81858],[92.56356,10.82337],[92.56598,10.82948],[92.55925,10.8459],[92.55917,10.85121],[92.56223,10.85756],[92.56248,10.86217],[92.55774,10.86884],[92.55044,10.87416],[92.54257,10.88393],[92.53377,10.88997],[92.53304,10.88703],[92.52934,10.88469],[92.53166,10.88269],[92.53274,10.87707],[92.5348,10.87616],[92.53187,10.87237],[92.5325,10.87122],[92.53019,10.87113],[92.5299,10.86887],[92.53151,10.86717],[92.53685,10.86734],[92.53963,10.86497],[92.54078,10.86753],[92.54146,10.86556],[92.53906,10.86382],[92.54255,10.85989],[92.54088,10.85893],[92.54206,10.86042],[92.53722,10.86627],[92.52954,10.86708],[92.52815,10.87067],[92.53142,10.87627],[92.52881,10.87887],[92.52807,10.88491],[92.53219,10.88729],[92.53288,10.89086],[92.51836,10.90084]]],[[[92.62268,10.92579],[92.62258,10.92588],[92.6223,10.92572],[92.62211,10.9255],[92.62187,10.92561],[92.62136,10.9255],[92.62074,10.92509],[92.62076,10.92469],[92.62123,10.92428],[92.62186,10.9241],[92.6221,10.9236],[92.62231,10.92344],[92.62293,10.92343],[92.62297,10.92316],[92.62327,10.92324],[92.6236,10.92314],[92.6234,10.92267],[92.62339,10.9224],[92.62342,10.92234],[92.6238,10.9222],[92.6242,10.9224],[92.62454,10.92329],[92.62389,10.92409],[92.62341,10.92515],[92.62268,10.92579]]],[[[92.61759,10.93359],[92.60848,10.93961],[92.60767,10.93974],[92.60561,10.93918],[92.60393,10.93799],[92.60325,10.93736],[92.60264,10.93703],[92.60201,10.93628],[92.60253,10.93528],[92.60339,10.93443],[92.60367,10.93387],[92.60431,10.93361],[92.60458,10.93424],[92.60471,10.93388],[92.6055,10.93294],[92.60504,10.93302],[92.60476,10.93284],[92.60533,10.93142],[92.60634,10.9302],[92.60876,10.92802],[92.60977,10.92722],[92.61147,10.92642],[92.61195,10.92644],[92.61234,10.92662],[92.61263,10.92631],[92.61348,10.92597],[92.6139,10.92649],[92.61553,10.92617],[92.61597,10.92632],[92.61625,10.92705],[92.61667,10.92691],[92.61698,10.92711],[92.61784,10.92681],[92.61912,10.92684],[92.61972,10.92739],[92.62029,10.92677],[92.62053,10.92671],[92.62095,10.92684],[92.62134,10.9272],[92.6216,10.92768],[92.62155,10.9282],[92.62133,10.92856],[92.62093,10.92875],[92.62085,10.9292],[92.62061,10.92951],[92.62047,10.93072],[92.61975,10.93112],[92.61957,10.93108],[92.61909,10.93205],[92.61759,10.93359]]],[[[92.60355,10.94131],[92.60234,10.94162],[92.60161,10.9416],[92.60125,10.94142],[92.60107,10.94112],[92.6011,10.9411],[92.60163,10.9411],[92.60169,10.94093],[92.60195,10.9409],[92.60206,10.94066],[92.60247,10.94068],[92.60278,10.94066],[92.6036,10.94021],[92.60391,10.94029],[92.60418,10.94003],[92.60455,10.93985],[92.60441,10.93964],[92.60467,10.93933],[92.6051,10.93969],[92.60581,10.93992],[92.60605,10.94018],[92.60619,10.94062],[92.60544,10.94084],[92.60505,10.94086],[92.60484,10.94076],[92.60462,10.94091],[92.60455,10.94122],[92.60425,10.94099],[92.60355,10.94131]]],[[[92.60839,10.94209],[92.60844,10.94219],[92.60843,10.94252],[92.60797,10.94262],[92.60761,10.94256],[92.60721,10.9422],[92.60734,10.94194],[92.60748,10.94182],[92.60781,10.94176],[92.60839,10.94209]]],[[[92.60672,10.94283],[92.60653,10.94291],[92.60652,10.94315],[92.6065,10.94313],[92.60591,10.94318],[92.6058,10.94284],[92.60607,10.94232],[92.60622,10.94232],[92.60637,10.94245],[92.60652,10.94234],[92.60661,10.94232],[92.60672,10.94283]]],[[[92.59855,10.94137],[92.59898,10.94151],[92.59932,10.94184],[92.59932,10.94202],[92.59892,10.9425],[92.59816,10.94313],[92.59772,10.94358],[92.59753,10.94411],[92.59745,10.94472],[92.59732,10.94492],[92.59628,10.94504],[92.59619,10.94496],[92.59598,10.94421],[92.5964,10.94379],[92.59683,10.94341],[92.59717,10.94273],[92.59755,10.94247],[92.59748,10.94205],[92.59785,10.94198],[92.59828,10.94166],[92.59845,10.94132],[92.59855,10.94137]]],[[[92.60343,10.94636],[92.60319,10.9459],[92.60325,10.9455],[92.6036,10.94531],[92.60441,10.94506],[92.60526,10.94485],[92.60562,10.94514],[92.60561,10.9456],[92.60526,10.94541],[92.60506,10.94578],[92.60475,10.94599],[92.60343,10.94636]]],[[[92.60055,10.95093],[92.60076,10.95155],[92.60021,10.95171],[92.6001,10.95153],[92.59977,10.95149],[92.59973,10.95136],[92.60007,10.95095],[92.60055,10.95093]]],[[[92.21924,10.98577],[92.2187,10.98605],[92.21781,10.98608],[92.21622,10.98563],[92.21493,10.98497],[92.21419,10.98415],[92.21323,10.98345],[92.20998,10.98181],[92.20865,10.98057],[92.20819,10.97983],[92.20907,10.97765],[92.20994,10.97646],[92.21089,10.97481],[92.21335,10.9728],[92.21502,10.97226],[92.21655,10.97242],[92.21901,10.97387],[92.21938,10.97387],[92.22071,10.97436],[92.22092,10.97497],[92.2223,10.97637],[92.22387,10.97724],[92.22467,10.9781],[92.22542,10.98032],[92.22619,10.98435],[92.22568,10.98482],[92.22334,10.98453],[92.22137,10.98523],[92.21934,10.98564],[92.21924,10.98577]]],[[[92.66776,10.98466],[92.66814,10.98473],[92.66822,10.98515],[92.66809,10.9856],[92.66828,10.98592],[92.66869,10.98841],[92.66831,10.98948],[92.66777,10.99044],[92.66716,10.99116],[92.66749,10.99147],[92.66654,10.99269],[92.66572,10.99298],[92.66285,10.99324],[92.66106,10.99308],[92.65972,10.9925],[92.65817,10.9908],[92.65754,10.98956],[92.65721,10.98838],[92.65703,10.98693],[92.65732,10.98426],[92.65772,10.98305],[92.65772,10.98261],[92.65873,10.98134],[92.65953,10.98079],[92.66013,10.98052],[92.66095,10.98056],[92.66237,10.98091],[92.66496,10.98304],[92.6651,10.98335],[92.66515,10.9833],[92.66665,10.98425],[92.66669,10.98452],[92.66691,10.98424],[92.66776,10.98466]]],[[[92.73153,11.14937],[92.73132,11.14952],[92.73098,11.14933],[92.73038,11.14935],[92.72995,11.14963],[92.72945,11.14956],[92.72901,11.14921],[92.72869,11.14954],[92.72824,11.1494],[92.72839,11.14915],[92.72778,11.14905],[92.72789,11.14877],[92.72773,11.14865],[92.72773,11.14845],[92.72742,11.14858],[92.72739,11.14812],[92.7273,11.14798],[92.72735,11.14788],[92.72705,11.14785],[92.72679,11.14816],[92.72646,11.14805],[92.72639,11.14769],[92.72609,11.14775],[92.72553,11.14829],[92.72527,11.14836],[92.72505,11.14826],[92.72422,11.14831],[92.72416,11.14798],[92.72436,11.1478],[92.72434,11.14762],[92.72358,11.14613],[92.72342,11.14533],[92.72329,11.14512],[92.72329,11.14488],[92.72347,11.1447],[92.72388,11.14459],[92.72301,11.14435],[92.72268,11.14471],[92.72252,11.14469],[92.7225,11.14447],[92.72195,11.14429],[92.72173,11.14412],[92.72182,11.14385],[92.72155,11.14357],[92.72132,11.14243],[92.72147,11.14204],[92.72132,11.14171],[92.72168,11.14141],[92.72173,11.14116],[92.72191,11.14107],[92.72203,11.14074],[92.72232,11.14067],[92.72241,11.14044],[92.72289,11.14035],[92.72321,11.14055],[92.72326,11.14079],[92.72365,11.14092],[92.72372,11.14115],[92.72403,11.14128],[92.72397,11.14149],[92.72368,11.14147],[92.72463,11.14202],[92.72483,11.14235],[92.72477,11.14267],[92.7249,11.1428],[92.72468,11.14392],[92.72447,11.14388],[92.7243,11.14362],[92.72404,11.14366],[92.72439,11.14426],[92.72499,11.1445],[92.72479,11.14399],[92.72479,11.14371],[92.72497,11.14346],[92.72542,11.14337],[92.72625,11.14373],[92.72641,11.14371],[92.7264,11.14335],[92.72704,11.14312],[92.72704,11.14269],[92.7275,11.1428],[92.72835,11.14218],[92.72879,11.14201],[92.72865,11.14176],[92.72925,11.1415],[92.7296,11.14171],[92.73037,11.14179],[92.73059,11.14238],[92.73093,11.14246],[92.73097,11.14292],[92.73161,11.14367],[92.73163,11.14386],[92.73191,11.14409],[92.73199,11.14437],[92.73225,11.14453],[92.73229,11.14447],[92.73277,11.14459],[92.73319,11.14453],[92.73359,11.1449],[92.73369,11.1452],[92.73353,11.14531],[92.73359,11.1458],[92.73341,11.14601],[92.73339,11.14638],[92.7336,11.14669],[92.73331,11.1471],[92.73326,11.14743],[92.73302,11.14772],[92.73239,11.14815],[92.732,11.14854],[92.73175,11.14893],[92.73175,11.1491],[92.73148,11.14917],[92.73153,11.14937]]],[[[92.67618,11.18442],[92.67613,11.18467],[92.67595,11.18476],[92.67568,11.18541],[92.67588,11.18585],[92.67614,11.18613],[92.67631,11.18709],[92.67612,11.1887],[92.67588,11.1893],[92.67562,11.1897],[92.67484,11.19023],[92.67432,11.19033],[92.67394,11.19023],[92.6735,11.18995],[92.67237,11.188],[92.67181,11.18656],[92.67171,11.18593],[92.67188,11.18546],[92.67233,11.18479],[92.67269,11.18444],[92.67305,11.18354],[92.67333,11.18309],[92.67423,11.18072],[92.6749,11.17932],[92.6742,11.17845],[92.67419,11.17813],[92.67489,11.17742],[92.6752,11.17733],[92.67524,11.17712],[92.67549,11.17691],[92.67573,11.17693],[92.67586,11.17679],[92.67623,11.17699],[92.6767,11.17691],[92.67675,11.17725],[92.67664,11.17734],[92.67687,11.17765],[92.67682,11.17776],[92.67694,11.17806],[92.6771,11.17812],[92.67728,11.17845],[92.67819,11.17903],[92.6785,11.17963],[92.67869,11.17983],[92.67927,11.17987],[92.67967,11.18012],[92.68004,11.18072],[92.68008,11.18121],[92.67999,11.18173],[92.67918,11.18261],[92.67785,11.18315],[92.67728,11.18313],[92.67702,11.18327],[92.67676,11.18323],[92.67653,11.18342],[92.67655,11.18353],[92.67606,11.18384],[92.67579,11.1836],[92.67567,11.1838],[92.6757,11.18416],[92.67622,11.18409],[92.67618,11.18442]]],[[[92.67248,11.1949],[92.6726,11.19509],[92.67257,11.19532],[92.67242,11.19548],[92.67229,11.19554],[92.67208,11.19548],[92.67202,11.1954],[92.67191,11.19515],[92.67199,11.19497],[92.67222,11.19486],[92.67248,11.1949]]],[[[92.70507,11.27772],[92.70518,11.27885],[92.7057,11.27988],[92.70615,11.28643],[92.70526,11.2878],[92.70535,11.28982],[92.70511,11.29012],[92.70471,11.29024],[92.70272,11.28952],[92.70219,11.28884],[92.70093,11.28848],[92.69954,11.28726],[92.6959,11.28554],[92.69458,11.28524],[92.69381,11.28458],[92.69344,11.28304],[92.69261,11.28203],[92.69201,11.28054],[92.6932,11.27521],[92.69266,11.27427],[92.69236,11.27054],[92.69469,11.26588],[92.69472,11.26464],[92.69387,11.26392],[92.6938,11.26298],[92.6944,11.25982],[92.69277,11.25825],[92.69248,11.25759],[92.69236,11.25797],[92.69184,11.25797],[92.69091,11.25717],[92.69029,11.25414],[92.68969,11.2528],[92.68881,11.25174],[92.68878,11.25143],[92.68962,11.25106],[92.68776,11.24802],[92.68629,11.24684],[92.68641,11.24661],[92.68614,11.24632],[92.68666,11.24616],[92.68697,11.24665],[92.68754,11.24618],[92.6874,11.24585],[92.68671,11.24594],[92.68635,11.24566],[92.68635,11.24398],[92.68593,11.24345],[92.68633,11.24323],[92.68649,11.24259],[92.68623,11.2418],[92.68708,11.24174],[92.68744,11.24238],[92.68827,11.2427],[92.68958,11.24264],[92.68997,11.24303],[92.69036,11.24253],[92.69064,11.24279],[92.69123,11.24241],[92.69162,11.24278],[92.6924,11.2453],[92.69407,11.24851],[92.69474,11.2492],[92.69484,11.25001],[92.69355,11.25001],[92.69329,11.25141],[92.69383,11.25298],[92.69442,11.2536],[92.69503,11.25302],[92.69572,11.25312],[92.69613,11.25382],[92.69675,11.25402],[92.69693,11.25462],[92.69725,11.25463],[92.69782,11.25555],[92.69823,11.25546],[92.69821,11.25581],[92.69733,11.25561],[92.69882,11.25778],[92.70153,11.25984],[92.70241,11.26142],[92.70328,11.26151],[92.70365,11.26184],[92.70478,11.26379],[92.70516,11.26612],[92.70433,11.26964],[92.70489,11.27266],[92.70539,11.27388],[92.70497,11.27471],[92.70507,11.27772]]],[[[92.7223,11.33303],[92.72103,11.33347],[92.72026,11.33314],[92.71996,11.3327],[92.72022,11.33259],[92.71984,11.33234],[92.7193,11.33207],[92.71907,11.33229],[92.71852,11.33213],[92.71776,11.3313],[92.71805,11.33089],[92.71747,11.33026],[92.71721,11.3303],[92.71662,11.32953],[92.71638,11.32851],[92.71714,11.32644],[92.71646,11.32519],[92.71644,11.32414],[92.71618,11.32358],[92.71556,11.32311],[92.71488,11.32291],[92.71401,11.32196],[92.71297,11.32151],[92.71266,11.32077],[92.71352,11.31763],[92.713,11.31623],[92.71323,11.31578],[92.71277,11.31562],[92.71204,11.31447],[92.71085,11.31321],[92.70666,11.31021],[92.70467,11.30973],[92.70343,11.31012],[92.70211,11.3112],[92.70056,11.31187],[92.69981,11.31149],[92.69941,11.312],[92.69865,11.3119],[92.69694,11.31106],[92.69551,11.30984],[92.69703,11.30829],[92.69817,11.30802],[92.70302,11.30539],[92.7045,11.30335],[92.70609,11.30169],[92.70678,11.29964],[92.70771,11.29948],[92.71175,11.30269],[92.71184,11.30293],[92.71137,11.30282],[92.71122,11.30344],[92.7116,11.30353],[92.7122,11.30762],[92.71282,11.30806],[92.71419,11.3081],[92.71473,11.3086],[92.71579,11.31228],[92.71569,11.31331],[92.71595,11.31459],[92.71667,11.31557],[92.7173,11.31586],[92.71918,11.3149],[92.72006,11.31481],[92.72135,11.31551],[92.72231,11.31666],[92.72288,11.31942],[92.72234,11.31988],[92.72214,11.32096],[92.72241,11.32113],[92.72247,11.32161],[92.72151,11.32342],[92.72174,11.3253],[92.72327,11.33053],[92.72287,11.33211],[92.7223,11.33303]]],[[[92.54744,11.39069],[92.54775,11.39112],[92.54789,11.39184],[92.54802,11.39192],[92.54804,11.39254],[92.54816,11.3928],[92.55085,11.39588],[92.551,11.39652],[92.55093,11.39729],[92.55061,11.39813],[92.54996,11.39864],[92.54795,11.39901],[92.54649,11.39872],[92.54305,11.39843],[92.54193,11.39818],[92.54112,11.39751],[92.54044,11.39674],[92.53995,11.39587],[92.53976,11.39507],[92.53992,11.39345],[92.54025,11.39328],[92.54027,11.39269],[92.54059,11.39256],[92.54064,11.39195],[92.54106,11.39159],[92.54093,11.39121],[92.54164,11.3912],[92.54186,11.39076],[92.54189,11.39044],[92.54242,11.39064],[92.54253,11.39019],[92.54296,11.39031],[92.5432,11.38994],[92.54353,11.39025],[92.54379,11.39001],[92.54423,11.39036],[92.54429,11.38985],[92.54467,11.38993],[92.54487,11.38976],[92.54528,11.39022],[92.54545,11.39019],[92.54575,11.38982],[92.54591,11.39004],[92.54635,11.39004],[92.54691,11.39053],[92.54744,11.39069]]],[[[92.56266,11.39681],[92.56278,11.39711],[92.56275,11.39745],[92.56235,11.3977],[92.56232,11.39805],[92.56215,11.39826],[92.56194,11.39825],[92.56188,11.39794],[92.56193,11.39756],[92.5621,11.39696],[92.56199,11.39674],[92.56168,11.39708],[92.56075,11.39744],[92.55805,11.39682],[92.5572,11.39677],[92.55684,11.39657],[92.55622,11.39524],[92.55588,11.39508],[92.55573,11.39519],[92.55583,11.39569],[92.55629,11.3958],[92.55646,11.39633],[92.55641,11.3968],[92.55468,11.39705],[92.55442,11.39644],[92.55407,11.39644],[92.55394,11.39627],[92.55394,11.3959],[92.55347,11.39557],[92.55342,11.3952],[92.55316,11.39505],[92.55313,11.39463],[92.55328,11.39442],[92.5532,11.39414],[92.55275,11.39359],[92.55227,11.39324],[92.5517,11.39294],[92.55152,11.39256],[92.55165,11.3921],[92.55187,11.39192],[92.55247,11.39201],[92.55257,11.3916],[92.55279,11.39135],[92.55333,11.3913],[92.5534,11.39106],[92.55366,11.39081],[92.55394,11.3908],[92.55409,11.3909],[92.55428,11.39121],[92.5547,11.39115],[92.55483,11.39106],[92.55447,11.39095],[92.55447,11.39074],[92.55465,11.3906],[92.55515,11.39091],[92.55526,11.39071],[92.55512,11.39057],[92.55517,11.3904],[92.55535,11.39039],[92.55546,11.39049],[92.55557,11.39048],[92.55565,11.39034],[92.55565,11.39],[92.5558,11.38999],[92.55605,11.3902],[92.55659,11.39011],[92.55735,11.39031],[92.558,11.39065],[92.55839,11.39071],[92.55867,11.39092],[92.55904,11.39099],[92.55978,11.39178],[92.56102,11.39198],[92.56173,11.39289],[92.56178,11.39345],[92.56246,11.3935],[92.56291,11.394],[92.56334,11.3947],[92.5633,11.39549],[92.56291,11.39581],[92.56291,11.39647],[92.56261,11.39664],[92.56266,11.39681]]],[[[92.24042,11.51613],[92.24029,11.51625],[92.24008,11.5163],[92.23978,11.51633],[92.23938,11.51618],[92.23931,11.51604],[92.23917,11.51607],[92.23897,11.5159],[92.23891,11.51574],[92.23899,11.51561],[92.23915,11.51545],[92.23945,11.51538],[92.23985,11.51535],[92.24056,11.51535],[92.24071,11.5154],[92.24085,11.5155],[92.24088,11.51563],[92.24086,11.51579],[92.24076,11.51597],[92.24065,11.5161],[92.24044,11.51606],[92.24042,11.51613]]],[[[92.25724,11.51526],[92.25716,11.51504],[92.25663,11.51508],[92.25633,11.51514],[92.25628,11.51494],[92.25596,11.51491],[92.25589,11.51509],[92.2556,11.51492],[92.25549,11.51507],[92.2554,11.51506],[92.25521,11.51492],[92.25511,11.51453],[92.25472,11.51413],[92.25505,11.5141],[92.25512,11.51392],[92.25529,11.51396],[92.25564,11.51417],[92.25581,11.51416],[92.25582,11.51394],[92.25624,11.51418],[92.25645,11.51415],[92.25728,11.51442],[92.25743,11.51442],[92.25746,11.51429],[92.25759,11.51424],[92.25785,11.51443],[92.25791,11.51427],[92.25829,11.51439],[92.25832,11.51419],[92.25872,11.51444],[92.25913,11.51433],[92.25918,11.51439],[92.25908,11.51457],[92.25911,11.51492],[92.25907,11.51496],[92.25872,11.51491],[92.25846,11.51505],[92.25834,11.51487],[92.25817,11.51496],[92.25793,11.51519],[92.25772,11.51509],[92.25749,11.5151],[92.25724,11.51526]]],[[[92.23981,11.51715],[92.23996,11.51736],[92.23984,11.51759],[92.23971,11.51768],[92.23956,11.51775],[92.23933,11.51765],[92.23925,11.51743],[92.23931,11.51725],[92.23958,11.51713],[92.23981,11.51715]]],[[[92.27028,11.52007],[92.26995,11.51989],[92.26967,11.51948],[92.26943,11.51923],[92.26905,11.51936],[92.26917,11.51879],[92.26898,11.51873],[92.26889,11.51857],[92.2687,11.51857],[92.26865,11.51815],[92.26837,11.51827],[92.26816,11.51818],[92.26734,11.51763],[92.26693,11.51744],[92.26649,11.51693],[92.26653,11.5166],[92.26686,11.51619],[92.26753,11.51656],[92.26824,11.5163],[92.26861,11.51604],[92.26917,11.51619],[92.26969,11.51561],[92.27002,11.51575],[92.27073,11.51615],[92.27095,11.51615],[92.27137,11.51645],[92.27148,11.51675],[92.27189,11.51675],[92.272,11.51708],[92.27214,11.51729],[92.27203,11.51748],[92.27241,11.51777],[92.27198,11.518],[92.27185,11.51826],[92.27157,11.51822],[92.27153,11.51857],[92.27133,11.5186],[92.27129,11.51886],[92.27107,11.51879],[92.27105,11.51893],[92.27114,11.51914],[92.2707,11.51929],[92.2707,11.51965],[92.27045,11.51967],[92.27028,11.52007]]],[[[92.20772,11.53236],[92.20787,11.53245],[92.20738,11.53261],[92.20717,11.53281],[92.20691,11.53327],[92.20663,11.53316],[92.2067,11.53306],[92.20684,11.53294],[92.20672,11.53285],[92.20686,11.53265],[92.20701,11.53256],[92.20704,11.5325],[92.20701,11.53239],[92.20704,11.53223],[92.20713,11.53226],[92.20723,11.53235],[92.20744,11.53229],[92.20757,11.53229],[92.20772,11.53236]]],[[[92.20594,11.53381],[92.20602,11.53388],[92.20582,11.53416],[92.20536,11.53438],[92.2052,11.53441],[92.20501,11.53438],[92.20498,11.53426],[92.20529,11.53407],[92.2053,11.53386],[92.2056,11.53382],[92.20594,11.53381]]],[[[92.20719,11.53547],[92.20734,11.53551],[92.20739,11.53564],[92.20733,11.53574],[92.20712,11.5359],[92.20694,11.53586],[92.20674,11.53571],[92.2068,11.53554],[92.20699,11.53547],[92.20719,11.53547]]],[[[92.56086,11.51387],[92.56088,11.51436],[92.56076,11.51458],[92.56051,11.51456],[92.56051,11.51409],[92.56076,11.51382],[92.56086,11.51387]]],[[[92.61259,11.50638],[92.61284,11.50799],[92.613,11.50827],[92.61337,11.5088],[92.61427,11.50939],[92.61487,11.50993],[92.61511,11.51027],[92.61518,11.51087],[92.61503,11.51107],[92.61421,11.51116],[92.61275,11.51088],[92.61208,11.5106],[92.61168,11.51024],[92.61087,11.50983],[92.60933,11.50878],[92.60913,11.50848],[92.60885,11.50752],[92.60859,11.50709],[92.60846,11.5065],[92.6084,11.50701],[92.60804,11.50717],[92.60711,11.50712],[92.60639,11.50698],[92.60576,11.5066],[92.60435,11.5055],[92.60364,11.50482],[92.60306,11.50349],[92.60307,11.50312],[92.60357,11.50234],[92.60437,11.50223],[92.60521,11.50227],[92.60571,11.50252],[92.60672,11.50323],[92.60741,11.50403],[92.60814,11.50465],[92.60838,11.50471],[92.60857,11.50459],[92.60863,11.50443],[92.60845,11.50292],[92.60851,11.50253],[92.6088,11.50221],[92.60964,11.50237],[92.61012,11.50293],[92.61013,11.50337],[92.61038,11.50356],[92.61059,11.50416],[92.61141,11.50487],[92.61173,11.505],[92.61216,11.50543],[92.61237,11.50578],[92.61259,11.50638]]],[[[92.64364,11.51337],[92.64386,11.51342],[92.64462,11.51425],[92.64472,11.51444],[92.64477,11.51468],[92.64478,11.51485],[92.64467,11.51504],[92.64454,11.51512],[92.64432,11.51516],[92.64412,11.51511],[92.64379,11.5149],[92.64359,11.51473],[92.64324,11.51432],[92.64318,11.51407],[92.64315,11.51406],[92.64313,11.51364],[92.64314,11.51351],[92.64323,11.5134],[92.64341,11.51337],[92.64364,11.51337]]],[[[92.63621,11.51591],[92.6355,11.51738],[92.63432,11.5158],[92.63099,11.51452],[92.63167,11.51293],[92.62896,11.50874],[92.62028,11.5],[92.61407,11.48435],[92.61066,11.47231],[92.61234,11.47018],[92.60947,11.45793],[92.61413,11.45011],[92.61404,11.4486],[92.61952,11.44311],[92.61926,11.4406],[92.62152,11.44111],[92.62289,11.44017],[92.62165,11.43499],[92.61871,11.43338],[92.61974,11.43249],[92.61933,11.43013],[92.62111,11.43],[92.6214,11.42779],[92.62323,11.42601],[92.6235,11.41849],[92.62214,11.41206],[92.62299,11.40855],[92.62179,11.40445],[92.61405,11.401],[92.60625,11.40204],[92.60244,11.40075],[92.59878,11.40141],[92.59663,11.40021],[92.58774,11.40151],[92.58573,11.39999],[92.58993,11.38915],[92.59118,11.3792],[92.58865,11.37467],[92.58011,11.37087],[92.5796,11.36744],[92.58524,11.35894],[92.58537,11.35546],[92.58751,11.35251],[92.59113,11.34837],[92.59447,11.34696],[92.59601,11.34754],[92.59567,11.34606],[92.59765,11.34502],[92.609,11.3457],[92.61865,11.34881],[92.62178,11.34601],[92.62599,11.34921],[92.63417,11.34784],[92.63817,11.34608],[92.63984,11.34891],[92.64678,11.35445],[92.64744,11.35612],[92.65198,11.35704],[92.6587,11.35567],[92.66374,11.35279],[92.66493,11.3543],[92.66444,11.35646],[92.66544,11.35885],[92.66745,11.36131],[92.67226,11.36288],[92.67378,11.3617],[92.67794,11.36251],[92.67952,11.36526],[92.68195,11.36515],[92.68457,11.36636],[92.68652,11.36891],[92.68853,11.36872],[92.69066,11.37453],[92.69082,11.37662],[92.68883,11.38036],[92.69009,11.38497],[92.69219,11.38615],[92.69225,11.38726],[92.6884,11.38733],[92.68781,11.39117],[92.68643,11.39105],[92.68512,11.39257],[92.67974,11.3917],[92.67717,11.39292],[92.6748,11.39977],[92.67113,11.40001],[92.66939,11.39658],[92.66266,11.39544],[92.66146,11.39753],[92.66242,11.40129],[92.66178,11.40242],[92.66336,11.40268],[92.66252,11.40472],[92.65811,11.40685],[92.65283,11.40739],[92.6479,11.40492],[92.64708,11.40126],[92.6479,11.39695],[92.64538,11.39626],[92.64379,11.3942],[92.64128,11.39647],[92.64205,11.39738],[92.64164,11.40219],[92.64396,11.40308],[92.64431,11.40436],[92.64378,11.40669],[92.64113,11.40957],[92.63924,11.40325],[92.63696,11.40054],[92.63693,11.40183],[92.63372,11.40372],[92.63545,11.40614],[92.63656,11.41174],[92.63518,11.41453],[92.63626,11.41688],[92.63879,11.41585],[92.6417,11.41055],[92.64587,11.41367],[92.65016,11.4094],[92.65336,11.40973],[92.65687,11.41237],[92.661,11.41193],[92.67102,11.41549],[92.67403,11.41999],[92.67178,11.42615],[92.67705,11.42647],[92.67843,11.42755],[92.68054,11.42456],[92.6826,11.42613],[92.68318,11.42681],[92.6817,11.42748],[92.68028,11.43022],[92.68438,11.43219],[92.68459,11.43607],[92.68382,11.43601],[92.68393,11.43989],[92.68291,11.43982],[92.68356,11.44274],[92.68017,11.44631],[92.68151,11.44804],[92.68004,11.45028],[92.68013,11.45223],[92.67915,11.45224],[92.67947,11.4557],[92.67693,11.4606],[92.6746,11.46218],[92.67731,11.47092],[92.6713,11.47837],[92.67244,11.48501],[92.67383,11.48741],[92.67231,11.48903],[92.67426,11.4904],[92.66985,11.48904],[92.66614,11.49169],[92.66184,11.49102],[92.66136,11.49295],[92.65775,11.49592],[92.65477,11.49419],[92.65437,11.49664],[92.65033,11.49782],[92.6505,11.49656],[92.64885,11.49767],[92.64839,11.49965],[92.64443,11.50001],[92.6451,11.51159],[92.64388,11.51206],[92.64105,11.50963],[92.63827,11.51057],[92.6375,11.50952],[92.63879,11.51193],[92.63641,11.51379],[92.63621,11.51591]]],[[[92.58825,11.53045],[92.58661,11.53084],[92.58666,11.53036],[92.5881,11.53016],[92.58825,11.53045]]],[[[92.6163,11.52801],[92.61626,11.52841],[92.61527,11.52845],[92.61531,11.52821],[92.61581,11.52772],[92.6163,11.52801]]],[[[92.59339,11.53109],[92.59344,11.53192],[92.59322,11.53214],[92.59208,11.53187],[92.59119,11.53116],[92.58956,11.53163],[92.58951,11.53077],[92.58985,11.5305],[92.59161,11.52989],[92.59228,11.53006],[92.59339,11.53109]]],[[[92.6159,11.53146],[92.61611,11.53175],[92.61586,11.53199],[92.61496,11.53204],[92.61477,11.53175],[92.61521,11.53131],[92.6159,11.53146]]],[[[92.6308,11.53303],[92.63081,11.53335],[92.63079,11.53356],[92.63069,11.53361],[92.63054,11.53356],[92.63045,11.53342],[92.63047,11.53322],[92.63047,11.53294],[92.63058,11.53287],[92.6308,11.53303]]],[[[92.55546,11.54001],[92.55546,11.5404],[92.55517,11.5404],[92.55496,11.54006],[92.55457,11.53953],[92.55492,11.53928],[92.55546,11.54001]]],[[[92.55874,11.54106],[92.55849,11.54148],[92.5583,11.54148],[92.55814,11.54124],[92.55709,11.54114],[92.55576,11.54021],[92.55511,11.53912],[92.55418,11.53884],[92.5529,11.53958],[92.55313,11.53963],[92.55324,11.54006],[92.55363,11.5404],[92.55299,11.54089],[92.55225,11.54036],[92.55204,11.53943],[92.55281,11.53957],[92.55196,11.53926],[92.55055,11.53796],[92.55018,11.53721],[92.55006,11.53633],[92.55028,11.53576],[92.55061,11.53565],[92.55051,11.53362],[92.55096,11.53347],[92.55116,11.53313],[92.5514,11.53064],[92.55122,11.52885],[92.552,11.53024],[92.55255,11.53005],[92.55362,11.52787],[92.55505,11.5255],[92.55588,11.52354],[92.55611,11.52347],[92.55596,11.52337],[92.55591,11.52278],[92.55621,11.52259],[92.55666,11.523],[92.55725,11.52211],[92.55843,11.52093],[92.55909,11.52064],[92.5593,11.52028],[92.55936,11.5194],[92.56014,11.51673],[92.56042,11.51643],[92.5609,11.51618],[92.56131,11.51617],[92.56297,11.51662],[92.56544,11.51663],[92.56596,11.51709],[92.5665,11.51701],[92.56726,11.51791],[92.56856,11.52322],[92.56843,11.52407],[92.56864,11.52695],[92.56841,11.52703],[92.56837,11.52746],[92.56849,11.52971],[92.56833,11.53017],[92.56811,11.53017],[92.56781,11.52854],[92.56756,11.5283],[92.56722,11.52836],[92.566,11.52921],[92.56471,11.52973],[92.56304,11.53012],[92.56135,11.53127],[92.56011,11.53282],[92.55988,11.53348],[92.55986,11.53631],[92.55928,11.53964],[92.55872,11.54063],[92.55885,11.54071],[92.55874,11.54106]]],[[[92.60107,11.53762],[92.60069,11.53787],[92.59981,11.53818],[92.59908,11.53802],[92.59869,11.53782],[92.5985,11.53752],[92.59829,11.5367],[92.59761,11.53552],[92.59669,11.53313],[92.59667,11.53203],[92.59645,11.53119],[92.59636,11.53016],[92.59659,11.52887],[92.59772,11.52725],[92.5993,11.52529],[92.60005,11.52403],[92.60048,11.52264],[92.60131,11.52133],[92.60393,11.51897],[92.60491,11.51875],[92.60591,11.51878],[92.60666,11.51927],[92.60714,11.51984],[92.60737,11.52103],[92.60721,11.5219],[92.60691,11.52242],[92.60588,11.52304],[92.60594,11.52356],[92.60559,11.52658],[92.60541,11.53272],[92.60524,11.53333],[92.60324,11.53551],[92.60278,11.53692],[92.60221,11.53731],[92.60224,11.53695],[92.6021,11.53773],[92.60162,11.5377],[92.60139,11.5373],[92.60107,11.53762]]],[[[92.58313,11.53478],[92.58281,11.53504],[92.58306,11.53504],[92.58331,11.53538],[92.58339,11.5357],[92.58383,11.53591],[92.58461,11.53825],[92.58495,11.53955],[92.58471,11.53985],[92.58489,11.54001],[92.58499,11.54002],[92.58517,11.54034],[92.58523,11.54071],[92.58523,11.54088],[92.58491,11.54126],[92.58476,11.54129],[92.58455,11.54143],[92.58432,11.54181],[92.58328,11.54193],[92.58246,11.54068],[92.58211,11.53956],[92.58239,11.53815],[92.58206,11.53673],[92.58194,11.53536],[92.58236,11.53455],[92.58273,11.53431],[92.58313,11.53478]]],[[[92.19704,11.5774],[92.19711,11.57761],[92.19709,11.57789],[92.19701,11.57813],[92.19695,11.57823],[92.19676,11.57833],[92.19653,11.57828],[92.1964,11.578],[92.19648,11.57759],[92.19663,11.5773],[92.19686,11.57727],[92.19704,11.5774]]],[[[92.26871,11.57308],[92.26842,11.57278],[92.26842,11.57223],[92.26815,11.5722],[92.26815,11.5719],[92.26795,11.57174],[92.26815,11.57135],[92.26835,11.57118],[92.26862,11.57171],[92.26891,11.57184],[92.26914,11.57226],[92.26914,11.57292],[92.26885,11.57255],[92.26871,11.57308]]],[[[92.19678,11.58089],[92.19682,11.58097],[92.19704,11.58104],[92.19692,11.5814],[92.19691,11.58158],[92.19685,11.58171],[92.19685,11.58181],[92.19697,11.58192],[92.19718,11.58198],[92.19694,11.58223],[92.19682,11.58246],[92.19678,11.58258],[92.19681,11.5828],[92.19672,11.58303],[92.19656,11.58326],[92.19625,11.58295],[92.19614,11.58268],[92.19619,11.58258],[92.19629,11.58246],[92.19614,11.58236],[92.19595,11.58219],[92.19589,11.58209],[92.19617,11.58201],[92.19635,11.58184],[92.1965,11.58139],[92.19647,11.58119],[92.19622,11.581],[92.19617,11.58087],[92.19629,11.58073],[92.19672,11.58068],[92.19678,11.58089]]],[[[92.54369,11.55389],[92.54341,11.55442],[92.54273,11.55477],[92.54225,11.55514],[92.54153,11.5558],[92.54139,11.5554],[92.54111,11.55494],[92.54024,11.55469],[92.54033,11.55425],[92.5405,11.55389],[92.5408,11.55369],[92.54122,11.55366],[92.54202,11.55391],[92.54247,11.55391],[92.54289,11.55376],[92.54329,11.55373],[92.54369,11.55389]]],[[[92.6278,11.54253],[92.62814,11.54325],[92.62839,11.54419],[92.6282,11.54479],[92.62824,11.54573],[92.62849,11.54704],[92.62854,11.54783],[92.62845,11.54848],[92.62816,11.54881],[92.62772,11.54897],[92.62729,11.54897],[92.62692,11.54881],[92.62612,11.54724],[92.62652,11.54714],[92.62659,11.54596],[92.62606,11.54477],[92.62577,11.54368],[92.62635,11.54244],[92.62717,11.5422],[92.6278,11.54253]]],[[[92.54141,11.55779],[92.54066,11.55845],[92.54027,11.55858],[92.53991,11.55847],[92.53962,11.5583],[92.53951,11.55791],[92.5398,11.55788],[92.54006,11.55768],[92.54029,11.55741],[92.54036,11.55705],[92.53935,11.5558],[92.53864,11.55536],[92.5384,11.55511],[92.53872,11.55467],[92.53897,11.55445],[92.53938,11.5543],[92.53974,11.55488],[92.54031,11.55551],[92.54128,11.55646],[92.542,11.55668],[92.54269,11.55682],[92.54381,11.55673],[92.54415,11.5568],[92.54414,11.55718],[92.54393,11.55784],[92.54353,11.55806],[92.54305,11.55802],[92.54221,11.55765],[92.54185,11.55758],[92.54141,11.55779]]],[[[92.19889,11.58793],[92.19914,11.58816],[92.19897,11.58823],[92.19871,11.58829],[92.19847,11.58823],[92.19805,11.5882],[92.19803,11.58797],[92.19804,11.58784],[92.19785,11.58785],[92.19748,11.5879],[92.19738,11.58769],[92.19719,11.58744],[92.19716,11.58734],[92.1976,11.58715],[92.19754,11.58702],[92.19731,11.58685],[92.19713,11.58637],[92.19742,11.58637],[92.19726,11.58612],[92.19698,11.586],[92.19698,11.58574],[92.19679,11.58519],[92.19663,11.58457],[92.19658,11.58427],[92.19697,11.58406],[92.19723,11.58424],[92.19735,11.58497],[92.19757,11.58537],[92.19781,11.58612],[92.19792,11.58654],[92.19795,11.58689],[92.19811,11.58704],[92.19848,11.58705],[92.19863,11.58751],[92.19876,11.58776],[92.19889,11.58793]]],[[[92.56216,11.5573],[92.56238,11.55757],[92.56221,11.55772],[92.56208,11.55767],[92.56208,11.5573],[92.56216,11.5573]]],[[[92.20041,11.59085],[92.2,11.59066],[92.19965,11.59018],[92.19959,11.58979],[92.19929,11.58963],[92.19923,11.58934],[92.19904,11.58928],[92.19882,11.58913],[92.19906,11.58877],[92.19922,11.58861],[92.19947,11.58888],[92.19984,11.58915],[92.19997,11.58906],[92.19995,11.58893],[92.19984,11.58876],[92.2002,11.58873],[92.20045,11.58857],[92.20066,11.5886],[92.20073,11.58847],[92.20085,11.58841],[92.20104,11.58838],[92.20145,11.58842],[92.2017,11.58847],[92.20198,11.58857],[92.20218,11.58902],[92.20222,11.58926],[92.20223,11.58947],[92.20218,11.58976],[92.20188,11.59008],[92.20125,11.59048],[92.20103,11.59062],[92.20085,11.59067],[92.20057,11.59069],[92.20041,11.59085]]],[[[92.5631,11.55979],[92.5633,11.56013],[92.56303,11.56013],[92.56273,11.55984],[92.56285,11.5596],[92.5631,11.55979]]],[[[92.56738,11.55936],[92.56733,11.55969],[92.56711,11.55997],[92.56669,11.55977],[92.56666,11.55923],[92.56738,11.55936]]],[[[92.57035,11.5595],[92.57057,11.55982],[92.57057,11.56013],[92.5702,11.56011],[92.56998,11.55984],[92.57005,11.5595],[92.57035,11.5595]]],[[[92.57431,11.56016],[92.57429,11.56065],[92.57394,11.56053],[92.57354,11.55984],[92.57337,11.55938],[92.57354,11.55923],[92.57431,11.56016]]],[[[92.63184,11.55736],[92.63169,11.55775],[92.63139,11.5578],[92.63112,11.55758],[92.63097,11.55699],[92.63085,11.55634],[92.6311,11.55607],[92.63129,11.55614],[92.63166,11.55675],[92.63184,11.55736]]],[[[92.26477,11.58987],[92.26461,11.58968],[92.26425,11.58971],[92.26428,11.58916],[92.26498,11.58888],[92.2653,11.58881],[92.26535,11.58871],[92.26543,11.58865],[92.26592,11.58876],[92.2661,11.58883],[92.2655,11.58912],[92.26517,11.58961],[92.26477,11.58987]]],[[[92.22281,11.59338],[92.22274,11.59356],[92.22254,11.59377],[92.22222,11.59393],[92.22198,11.59409],[92.22176,11.59444],[92.22115,11.59415],[92.22072,11.59392],[92.2204,11.59379],[92.22013,11.59358],[92.22018,11.59343],[92.22048,11.59332],[92.2212,11.59332],[92.22202,11.593],[92.22218,11.59281],[92.22237,11.59262],[92.22253,11.59287],[92.22268,11.59302],[92.22276,11.59318],[92.22281,11.59338]]],[[[92.61412,11.5564],[92.61384,11.55718],[92.61384,11.55869],[92.61342,11.55967],[92.61147,11.56111],[92.6111,11.56114],[92.61065,11.56089],[92.60954,11.55927],[92.60936,11.55601],[92.60868,11.55403],[92.60842,11.55375],[92.60729,11.55364],[92.6053,11.55383],[92.60395,11.55288],[92.60284,11.55298],[92.60261,11.55399],[92.60158,11.55479],[92.6013,11.55468],[92.60121,11.55311],[92.60192,11.55152],[92.60223,11.55126],[92.60273,11.55127],[92.60376,11.54919],[92.60472,11.54824],[92.60536,11.54722],[92.60536,11.54544],[92.60504,11.54584],[92.60482,11.54581],[92.60461,11.54537],[92.60481,11.54325],[92.60517,11.54247],[92.60543,11.54122],[92.60579,11.54109],[92.60631,11.53787],[92.6069,11.53681],[92.60719,11.53581],[92.60849,11.53454],[92.60921,11.53207],[92.60964,11.53141],[92.60995,11.53152],[92.61002,11.53194],[92.61052,11.53222],[92.61116,11.53298],[92.61495,11.53512],[92.61488,11.53523],[92.61529,11.53499],[92.61581,11.5357],[92.61638,11.536],[92.61668,11.53736],[92.61682,11.54097],[92.61703,11.54153],[92.61758,11.54222],[92.61825,11.54481],[92.61832,11.54528],[92.61794,11.54618],[92.61784,11.54743],[92.61815,11.54926],[92.61936,11.55221],[92.61917,11.55462],[92.61929,11.55665],[92.6188,11.55719],[92.61863,11.55804],[92.61798,11.55922],[92.6176,11.55985],[92.61734,11.55996],[92.6171,11.55991],[92.61679,11.55944],[92.61693,11.55796],[92.61665,11.55737],[92.61507,11.55612],[92.61435,11.55615],[92.61412,11.5564]]],[[[92.22011,11.59452],[92.21966,11.59551],[92.21729,11.59441],[92.21531,11.59467],[92.21386,11.59559],[92.21197,11.59561],[92.21159,11.59488],[92.21227,11.59431],[92.21404,11.59416],[92.21179,11.58983],[92.20888,11.58815],[92.20581,11.58767],[92.20355,11.588],[92.20283,11.58744],[92.2097,11.57794],[92.2114,11.57261],[92.20834,11.56688],[92.20704,11.5625],[92.20515,11.5605],[92.20504,11.55829],[92.20417,11.55617],[92.20458,11.55125],[92.20396,11.55027],[92.20465,11.54686],[92.20736,11.54203],[92.20707,11.54136],[92.208,11.53988],[92.20954,11.53441],[92.21184,11.53162],[92.21035,11.53081],[92.21143,11.52918],[92.21285,11.52855],[92.21358,11.52898],[92.21378,11.52979],[92.21329,11.53027],[92.21409,11.53017],[92.21343,11.52786],[92.21426,11.52777],[92.21415,11.52734],[92.21595,11.52571],[92.21699,11.52615],[92.21545,11.52914],[92.21663,11.52923],[92.21706,11.52874],[92.22007,11.52971],[92.2331,11.52466],[92.23682,11.52546],[92.24036,11.52476],[92.24322,11.52571],[92.2481,11.52527],[92.25167,11.5238],[92.25859,11.51745],[92.26012,11.51725],[92.26129,11.51814],[92.26049,11.51857],[92.26172,11.51976],[92.2642,11.52076],[92.26555,11.52258],[92.26865,11.52242],[92.26926,11.52347],[92.26926,11.5246],[92.26881,11.5247],[92.27028,11.53009],[92.273,11.5353],[92.27247,11.54141],[92.2701,11.54733],[92.27026,11.54822],[92.26801,11.54931],[92.26829,11.55181],[92.26721,11.55592],[92.26669,11.56169],[92.26832,11.5667],[92.26719,11.56719],[92.26653,11.57072],[92.26916,11.57763],[92.26873,11.57965],[92.26928,11.58137],[92.26931,11.58521],[92.26845,11.58645],[92.26313,11.58946],[92.26136,11.59124],[92.24927,11.59265],[92.24686,11.59206],[92.23934,11.59354],[92.23201,11.59285],[92.22988,11.5896],[92.22712,11.58835],[92.22289,11.59008],[92.22063,11.59172],[92.21898,11.59369],[92.22011,11.59452]]],[[[92.22877,11.59397],[92.2291,11.59426],[92.22945,11.59453],[92.2296,11.59479],[92.22964,11.59512],[92.22951,11.59541],[92.22949,11.59557],[92.22945,11.5957],[92.22895,11.59553],[92.22845,11.59528],[92.22825,11.59503],[92.22803,11.59468],[92.22803,11.59406],[92.22833,11.59383],[92.22877,11.59397]]],[[[92.60864,11.55621],[92.60882,11.55673],[92.60876,11.55746],[92.60832,11.55952],[92.60799,11.56059],[92.60758,11.56181],[92.60711,11.56268],[92.60681,11.56277],[92.60668,11.56308],[92.60654,11.56323],[92.60643,11.56327],[92.60623,11.56304],[92.60612,11.56258],[92.60593,11.56207],[92.6057,11.56207],[92.60537,11.56196],[92.60487,11.56097],[92.60485,11.56056],[92.60549,11.5599],[92.6057,11.55955],[92.60626,11.55879],[92.60658,11.55801],[92.607,11.55725],[92.60732,11.55653],[92.60767,11.55607],[92.60799,11.55583],[92.60864,11.55621]]],[[[92.52956,11.56876],[92.52991,11.56913],[92.53019,11.57002],[92.53019,11.57069],[92.53009,11.57101],[92.52972,11.57107],[92.52915,11.57098],[92.52892,11.57077],[92.52909,11.56887],[92.5293,11.56875],[92.52956,11.56876]]],[[[92.5653,11.56723],[92.56534,11.56746],[92.56505,11.56769],[92.56521,11.56774],[92.56563,11.5682],[92.56595,11.56847],[92.56618,11.56891],[92.56628,11.56927],[92.56642,11.56945],[92.56681,11.56983],[92.56692,11.5701],[92.56685,11.57029],[92.56666,11.57045],[92.56606,11.57085],[92.56554,11.57078],[92.56502,11.57063],[92.56456,11.57033],[92.56407,11.56981],[92.56391,11.56949],[92.56411,11.56875],[92.56411,11.56858],[92.56362,11.56853],[92.56358,11.56812],[92.56408,11.5676],[92.56485,11.56711],[92.5653,11.56723]]],[[[92.57443,11.56231],[92.57475,11.56276],[92.57491,11.56334],[92.57512,11.56471],[92.5754,11.56562],[92.57629,11.56757],[92.57662,11.56897],[92.57674,11.57044],[92.5766,11.57086],[92.57636,11.57106],[92.57601,11.57095],[92.57549,11.57063],[92.57484,11.56945],[92.57468,11.56872],[92.57442,11.56822],[92.57369,11.56753],[92.57302,11.56715],[92.57272,11.56675],[92.57233,11.56592],[92.57182,11.56443],[92.57166,11.56358],[92.5717,11.56267],[92.57235,11.56234],[92.573,11.56227],[92.5733,11.56192],[92.57364,11.56184],[92.57407,11.56199],[92.57443,11.56231]]],[[[92.56975,11.57262],[92.56963,11.57326],[92.56936,11.57357],[92.56897,11.57326],[92.56876,11.57304],[92.56881,11.5726],[92.56975,11.57262]]],[[[92.52834,11.57763],[92.5279,11.57797],[92.52741,11.57844],[92.52706,11.57891],[92.5264,11.58014],[92.52608,11.58012],[92.52586,11.57989],[92.52588,11.57959],[92.52655,11.57846],[92.52715,11.57768],[92.52836,11.57646],[92.52868,11.57707],[92.52895,11.57728],[92.52919,11.57727],[92.52955,11.57732],[92.52981,11.57742],[92.52959,11.57757],[92.52931,11.57767],[92.52905,11.57765],[92.52863,11.57758],[92.52834,11.57763]]],[[[92.56978,11.57858],[92.56961,11.57858],[92.56948,11.5785],[92.56941,11.57823],[92.56946,11.57809],[92.57,11.57792],[92.57015,11.57836],[92.5698,11.57836],[92.56978,11.57858]]],[[[92.56899,11.57938],[92.56899,11.57958],[92.56819,11.57965],[92.56822,11.57943],[92.56899,11.57938]]],[[[92.59304,11.57456],[92.59265,11.57616],[92.59297,11.5766],[92.5926,11.57765],[92.59215,11.57802],[92.59148,11.578],[92.58889,11.57514],[92.58842,11.57419],[92.5885,11.57367],[92.58875,11.57389],[92.58856,11.57329],[92.58792,11.57287],[92.58683,11.57053],[92.5867,11.56968],[92.58708,11.56574],[92.58867,11.56235],[92.58881,11.56145],[92.58875,11.56116],[92.588,11.56085],[92.58729,11.5594],[92.58715,11.55823],[92.58753,11.55625],[92.5866,11.55499],[92.58653,11.55391],[92.58611,11.55327],[92.58462,11.55271],[92.58372,11.5519],[92.58281,11.54904],[92.58303,11.54802],[92.58372,11.54733],[92.58425,11.54736],[92.58477,11.54662],[92.58624,11.54271],[92.5857,11.5414],[92.58763,11.54047],[92.58819,11.53959],[92.58788,11.53659],[92.5872,11.53632],[92.58682,11.53481],[92.58688,11.53408],[92.58757,11.5337],[92.58699,11.53319],[92.58779,11.5326],[92.58835,11.53331],[92.58806,11.53385],[92.58765,11.5337],[92.58786,11.53412],[92.59046,11.5359],[92.5912,11.53684],[92.59258,11.53458],[92.59374,11.53428],[92.59406,11.53321],[92.59501,11.53335],[92.59505,11.53611],[92.5956,11.53911],[92.59541,11.53998],[92.59605,11.54212],[92.59606,11.54383],[92.59665,11.54602],[92.59646,11.54751],[92.59694,11.54909],[92.59608,11.55054],[92.59625,11.55152],[92.59601,11.55292],[92.597,11.55472],[92.59681,11.557],[92.59594,11.55929],[92.59545,11.56175],[92.59543,11.56439],[92.5952,11.56511],[92.59474,11.56557],[92.59351,11.56555],[92.59312,11.56527],[92.59247,11.56593],[92.59199,11.56762],[92.59249,11.56808],[92.59293,11.56803],[92.59332,11.5685],[92.59407,11.56988],[92.59374,11.57149],[92.59448,11.57196],[92.59341,11.57277],[92.59304,11.57456]]],[[[92.57746,11.58236],[92.57769,11.58244],[92.57846,11.58296],[92.57869,11.58336],[92.57872,11.58429],[92.57851,11.58468],[92.57812,11.58497],[92.5785,11.58533],[92.57849,11.58566],[92.5783,11.5863],[92.57811,11.58662],[92.57775,11.58735],[92.57742,11.58764],[92.57717,11.58759],[92.5767,11.5871],[92.57662,11.58677],[92.57625,11.58627],[92.57618,11.58594],[92.57627,11.58496],[92.57652,11.58477],[92.57643,11.58451],[92.5765,11.58445],[92.57629,11.58422],[92.57635,11.58358],[92.5765,11.58289],[92.57654,11.58287],[92.57678,11.58255],[92.57701,11.58242],[92.5772,11.58236],[92.57746,11.58236]]],[[[92.59996,11.5865],[92.59996,11.58674],[92.59991,11.58697],[92.59975,11.58723],[92.59931,11.58761],[92.59908,11.58757],[92.59899,11.5873],[92.59899,11.58705],[92.59934,11.58658],[92.59951,11.58645],[92.59972,11.58641],[92.59996,11.5865]]],[[[92.61132,11.58821],[92.61053,11.5887],[92.61024,11.5887],[92.60938,11.58828],[92.60818,11.5883],[92.60604,11.58785],[92.60551,11.58771],[92.60393,11.58676],[92.60238,11.58614],[92.60147,11.58605],[92.60092,11.58567],[92.60077,11.58465],[92.60104,11.58378],[92.60082,11.58311],[92.6008,11.58197],[92.59981,11.57937],[92.59993,11.57718],[92.5996,11.5768],[92.59883,11.5749],[92.59922,11.56906],[92.5997,11.5689],[92.59985,11.56801],[92.60015,11.56747],[92.60044,11.56771],[92.60079,11.56755],[92.60354,11.56913],[92.60371,11.57115],[92.60461,11.57102],[92.60504,11.57026],[92.60585,11.57052],[92.60736,11.5706],[92.60692,11.56992],[92.60697,11.56957],[92.60887,11.56836],[92.60909,11.56738],[92.60974,11.56723],[92.60986,11.56604],[92.61051,11.56574],[92.61097,11.56478],[92.6114,11.56436],[92.61172,11.56423],[92.61283,11.56441],[92.61303,11.56431],[92.61395,11.56304],[92.61434,11.56424],[92.61464,11.56442],[92.61554,11.56582],[92.61584,11.56806],[92.61665,11.56933],[92.61798,11.57246],[92.61822,11.57653],[92.61801,11.57738],[92.61728,11.5789],[92.61702,11.58233],[92.61651,11.58305],[92.61509,11.58373],[92.61509,11.58449],[92.61471,11.58538],[92.61393,11.58609],[92.61256,11.58698],[92.61132,11.58821]]],[[[92.59286,11.59041],[92.59268,11.59039],[92.5925,11.59029],[92.59232,11.59003],[92.59234,11.58974],[92.59264,11.58944],[92.59304,11.58924],[92.59344,11.58918],[92.59432,11.58895],[92.59453,11.58914],[92.59443,11.5895],[92.59422,11.58979],[92.59387,11.59012],[92.59355,11.59033],[92.59299,11.59036],[92.59286,11.59041]]],[[[92.55244,11.59383],[92.55267,11.59404],[92.55267,11.59439],[92.55259,11.59475],[92.55237,11.59499],[92.55201,11.59515],[92.55168,11.59536],[92.55143,11.59539],[92.55126,11.59533],[92.55119,11.59507],[92.55122,11.59481],[92.55129,11.59444],[92.55147,11.5941],[92.5517,11.59389],[92.55216,11.59378],[92.55244,11.59383]]],[[[92.54017,11.60503],[92.53849,11.60693],[92.53576,11.60832],[92.53244,11.60267],[92.532,11.59986],[92.53051,11.59825],[92.52975,11.59893],[92.52946,11.59881],[92.52797,11.5963],[92.5282,11.59431],[92.5278,11.59258],[92.52968,11.59313],[92.53097,11.59239],[92.52943,11.59166],[92.53023,11.59063],[92.52851,11.59088],[92.5273,11.58887],[92.52798,11.58808],[92.5284,11.58644],[92.52914,11.58631],[92.5293,11.58665],[92.52866,11.5876],[92.52919,11.5879],[92.53022,11.58631],[92.53136,11.586],[92.53208,11.58503],[92.53146,11.58381],[92.53202,11.58259],[92.53206,11.5809],[92.53191,11.58036],[92.53165,11.58046],[92.5303,11.58183],[92.53114,11.58017],[92.53034,11.57964],[92.52859,11.58259],[92.52593,11.58412],[92.52556,11.58413],[92.52553,11.58376],[92.52616,11.58281],[92.52587,11.58184],[92.52701,11.58123],[92.52862,11.57841],[92.53033,11.57873],[92.53083,11.57637],[92.5331,11.57604],[92.53173,11.57549],[92.52914,11.57312],[92.52859,11.57172],[92.52912,11.57158],[92.52984,11.57244],[92.52975,11.57157],[92.53088,11.57225],[92.53116,11.57106],[92.53273,11.57006],[92.53369,11.56893],[92.53424,11.56794],[92.53441,11.5661],[92.53399,11.56637],[92.53308,11.5657],[92.53405,11.56413],[92.53359,11.56318],[92.53276,11.56289],[92.53253,11.56378],[92.5319,11.56426],[92.53126,11.56401],[92.52966,11.56207],[92.52794,11.56161],[92.52864,11.56062],[92.52735,11.55931],[92.52728,11.55585],[92.52624,11.55647],[92.52612,11.55618],[92.52683,11.5537],[92.52823,11.55381],[92.52892,11.55472],[92.52972,11.55452],[92.53137,11.55635],[92.53338,11.55757],[92.53581,11.55837],[92.53729,11.55784],[92.53851,11.55825],[92.53888,11.55866],[92.53727,11.55878],[92.53673,11.55925],[92.53667,11.56064],[92.53745,11.56146],[92.53858,11.56127],[92.5401,11.56227],[92.54165,11.56218],[92.54428,11.56128],[92.54523,11.5593],[92.54519,11.55816],[92.54606,11.55859],[92.54637,11.5577],[92.54707,11.55719],[92.54834,11.55771],[92.54949,11.55909],[92.5501,11.55883],[92.55023,11.55767],[92.55059,11.55732],[92.55294,11.55736],[92.55411,11.55797],[92.55476,11.55961],[92.55474,11.56174],[92.55617,11.56304],[92.55674,11.56515],[92.5592,11.56714],[92.55974,11.56865],[92.56172,11.56928],[92.56142,11.57143],[92.56307,11.57222],[92.56413,11.57198],[92.56575,11.57371],[92.56455,11.57583],[92.56254,11.57765],[92.5624,11.57988],[92.56153,11.58104],[92.56172,11.58306],[92.56243,11.5851],[92.56645,11.58696],[92.56732,11.58561],[92.56885,11.58473],[92.56955,11.58647],[92.57158,11.58779],[92.57093,11.58867],[92.57029,11.59255],[92.56959,11.5935],[92.56823,11.59379],[92.56622,11.59317],[92.56507,11.59391],[92.56401,11.59526],[92.5617,11.59634],[92.55826,11.5936],[92.5534,11.59405],[92.55302,11.59367],[92.55274,11.59189],[92.55081,11.59312],[92.54935,11.59354],[92.54394,11.59141],[92.54358,11.59223],[92.54468,11.59201],[92.54689,11.59271],[92.54859,11.59449],[92.54859,11.5955],[92.54926,11.59673],[92.54908,11.60104],[92.54715,11.6039],[92.54565,11.60518],[92.54178,11.60652],[92.54122,11.60626],[92.54072,11.60505],[92.54017,11.60503]]],[[[92.68631,11.62969],[92.68684,11.62999],[92.68715,11.6304],[92.6874,11.63093],[92.68748,11.63135],[92.68737,11.6315],[92.68723,11.63158],[92.68711,11.63152],[92.6869,11.63136],[92.68632,11.63108],[92.68619,11.63091],[92.68615,11.6307],[92.68625,11.63038],[92.68619,11.63005],[92.68617,11.63005],[92.68613,11.62986],[92.68621,11.62969],[92.68631,11.62969]]],[[[92.68781,11.63414],[92.68783,11.63426],[92.68767,11.63469],[92.68773,11.63481],[92.68787,11.63486],[92.6881,11.63506],[92.68858,11.63517],[92.68866,11.63522],[92.6887,11.63541],[92.68815,11.63606],[92.68804,11.6368],[92.68796,11.63695],[92.68767,11.63721],[92.68756,11.63738],[92.6875,11.63822],[92.6874,11.63841],[92.68671,11.63902],[92.68671,11.63919],[92.68683,11.6394],[92.68706,11.63963],[92.68716,11.63989],[92.68702,11.64018],[92.68675,11.64044],[92.68644,11.6405],[92.68614,11.64049],[92.68588,11.64039],[92.68575,11.64016],[92.68569,11.63988],[92.6859,11.63938],[92.6858,11.63917],[92.68569,11.63875],[92.68569,11.63851],[92.68598,11.63795],[92.68604,11.63776],[92.68598,11.63731],[92.68604,11.63714],[92.68628,11.63685],[92.68633,11.63663],[92.68619,11.63642],[92.68588,11.63625],[92.68538,11.63617],[92.68532,11.63588],[92.68563,11.63565],[92.68565,11.63541],[92.68553,11.63469],[92.68557,11.63454],[92.68577,11.63437],[92.68604,11.63399],[92.68627,11.63395],[92.68661,11.63416],[92.68675,11.63418],[92.6875,11.63401],[92.68781,11.63414]]],[[[92.7551,11.63641],[92.7553,11.6367],[92.75508,11.63707],[92.7548,11.63723],[92.75448,11.63719],[92.75431,11.63683],[92.75434,11.63661],[92.75469,11.63636],[92.7551,11.63641]]],[[[92.75396,11.63708],[92.75439,11.63729],[92.75461,11.63765],[92.75452,11.6381],[92.75427,11.63849],[92.7539,11.63832],[92.75328,11.63811],[92.75306,11.63782],[92.75323,11.63729],[92.75357,11.637],[92.75396,11.63708]]],[[[92.69747,11.66393],[92.69715,11.66402],[92.69686,11.66402],[92.69592,11.66347],[92.69556,11.66335],[92.69488,11.66327],[92.6941,11.66231],[92.6938,11.66208],[92.69262,11.6615],[92.69242,11.66135],[92.69221,11.66109],[92.69221,11.66069],[92.69262,11.66022],[92.69354,11.65947],[92.6938,11.65947],[92.6943,11.65973],[92.69451,11.65973],[92.6955,11.65938],[92.6958,11.65932],[92.69583,11.65927],[92.69609,11.65927],[92.69668,11.65938],[92.69733,11.65936],[92.69765,11.65944],[92.69771,11.6595],[92.6982,11.6596],[92.69854,11.65955],[92.69905,11.65931],[92.69951,11.65917],[92.69987,11.65924],[92.70012,11.65957],[92.70017,11.6599],[92.70003,11.66031],[92.69982,11.66144],[92.69997,11.66179],[92.70038,11.6624],[92.7005,11.66245],[92.70053,11.6626],[92.70059,11.66263],[92.70056,11.663],[92.69991,11.66341],[92.69968,11.6635],[92.69886,11.66367],[92.69842,11.66368],[92.69747,11.66393]]],[[[92.76262,11.67287],[92.76306,11.67441],[92.76315,11.67536],[92.76343,11.67606],[92.7646,11.6772],[92.76436,11.67783],[92.76489,11.67844],[92.76515,11.67916],[92.76534,11.68034],[92.76499,11.68111],[92.76491,11.68211],[92.76457,11.68216],[92.76416,11.68154],[92.76366,11.6812],[92.76206,11.67897],[92.76138,11.67838],[92.76002,11.67806],[92.75812,11.67819],[92.75884,11.67668],[92.7591,11.67642],[92.75939,11.67631],[92.75925,11.67606],[92.75981,11.67495],[92.75981,11.67466],[92.75962,11.67434],[92.75962,11.67405],[92.75989,11.67324],[92.76022,11.67297],[92.75937,11.67323],[92.75904,11.67266],[92.75917,11.67212],[92.75939,11.67193],[92.75941,11.67138],[92.75953,11.67089],[92.75937,11.67043],[92.75954,11.67021],[92.75954,11.66961],[92.76039,11.66872],[92.76188,11.67103],[92.76183,11.67139],[92.76242,11.67221],[92.76262,11.67287]]],[[[92.72232,11.68875],[92.72166,11.68875],[92.72129,11.6886],[92.7212,11.68832],[92.72114,11.68775],[92.72157,11.68722],[92.72212,11.68671],[92.72298,11.68614],[92.72355,11.68591],[92.72401,11.68611],[92.72445,11.6871],[92.72505,11.6871],[92.72502,11.68801],[92.72447,11.68818],[92.72353,11.68835],[92.72312,11.68852],[92.72315,11.68849],[92.72232,11.68875]]],[[[92.58676,11.70139],[92.58659,11.70131],[92.58656,11.70131],[92.58591,11.70079],[92.58579,11.70067],[92.58571,11.70045],[92.5858,11.69995],[92.58594,11.69983],[92.58618,11.69983],[92.58641,11.69989],[92.58676,11.70006],[92.58676,11.70056],[92.58679,11.70085],[92.58697,11.70133],[92.58685,11.70134],[92.58676,11.70139]]],[[[92.58508,11.70392],[92.5852,11.70403],[92.58533,11.70432],[92.58536,11.70471],[92.58528,11.70494],[92.58519,11.70502],[92.58509,11.70504],[92.585,11.70497],[92.58491,11.70476],[92.58481,11.70435],[92.58485,11.70406],[92.58492,11.70391],[92.58508,11.70392]]],[[[92.58302,11.70817],[92.58296,11.70832],[92.58289,11.70841],[92.58281,11.70844],[92.58274,11.70844],[92.58268,11.70839],[92.58265,11.70829],[92.58266,11.708],[92.58266,11.708],[92.58274,11.70778],[92.5828,11.7077],[92.58291,11.70768],[92.58299,11.70776],[92.58304,11.70794],[92.58302,11.70817]]],[[[93.08508,11.7831],[93.08637,11.78479],[93.08646,11.78585],[93.08616,11.78638],[93.08632,11.78718],[93.08601,11.78822],[93.08514,11.78915],[93.08395,11.78986],[93.08156,11.78971],[93.07995,11.78887],[93.07845,11.78771],[93.07852,11.78742],[93.07823,11.78701],[93.07764,11.78653],[93.07761,11.78634],[93.0778,11.78599],[93.07802,11.78593],[93.07705,11.78378],[93.07651,11.78398],[93.07623,11.78351],[93.07588,11.78252],[93.07599,11.78109],[93.07627,11.78054],[93.07638,11.78013],[93.07711,11.77968],[93.07745,11.77911],[93.07846,11.77855],[93.07923,11.77831],[93.07971,11.778],[93.0805,11.77796],[93.08122,11.77818],[93.08206,11.77857],[93.08281,11.77919],[93.08322,11.78006],[93.08443,11.78175],[93.08508,11.7831]]],[[[93.07241,11.83365],[93.07233,11.83398],[93.07231,11.83421],[93.07225,11.83434],[93.07206,11.83432],[93.07166,11.83387],[93.07163,11.83366],[93.07186,11.83358],[93.07227,11.83349],[93.07241,11.83365]]],[[[93.072,11.83763],[93.07172,11.83808],[93.07144,11.8388],[93.07121,11.83915],[93.07088,11.83903],[93.07105,11.83847],[93.07165,11.83751],[93.07188,11.83747],[93.072,11.83763]]],[[[93.01223,11.85164],[93.01163,11.85189],[93.01067,11.85138],[93.01033,11.85018],[93.01061,11.8473],[93.00917,11.84526],[93.00913,11.84438],[93.01033,11.84195],[93.01036,11.83836],[93.00994,11.83699],[93.01245,11.83336],[93.01197,11.83237],[93.01352,11.82946],[93.01377,11.82827],[93.01507,11.82856],[93.01752,11.82724],[93.01843,11.82741],[93.02295,11.82595],[93.02826,11.82092],[93.03052,11.81963],[93.03083,11.81985],[93.03423,11.81762],[93.03458,11.8155],[93.03544,11.8136],[93.03758,11.81264],[93.03918,11.81305],[93.04035,11.81227],[93.04045,11.81153],[93.04115,11.81129],[93.04127,11.81043],[93.04231,11.80987],[93.04426,11.8095],[93.04557,11.80972],[93.04715,11.8108],[93.04968,11.81095],[93.05493,11.81248],[93.05829,11.81443],[93.05894,11.81427],[93.06205,11.81753],[93.06203,11.81901],[93.06256,11.81924],[93.06356,11.82148],[93.0667,11.82524],[93.06655,11.82599],[93.06792,11.82709],[93.06918,11.8304],[93.0699,11.8308],[93.07153,11.83411],[93.07179,11.83619],[93.07029,11.83974],[93.07024,11.84105],[93.06953,11.84156],[93.06903,11.84267],[93.06461,11.84378],[93.06241,11.84531],[93.06015,11.84527],[93.05864,11.84606],[93.05307,11.84584],[93.04731,11.84448],[93.04254,11.84402],[93.04204,11.84436],[93.03998,11.84369],[93.03952,11.84394],[93.03795,11.84278],[93.03728,11.8404],[93.03598,11.8406],[93.03549,11.84135],[93.03434,11.84136],[93.03295,11.84006],[93.03243,11.83865],[93.03122,11.83739],[93.03068,11.83764],[93.03049,11.83856],[93.03133,11.8407],[93.0304,11.84153],[93.02786,11.84253],[93.0224,11.84348],[93.02097,11.84492],[93.01965,11.84492],[93.01777,11.84572],[93.01613,11.84754],[93.0153,11.84973],[93.01319,11.8505],[93.01313,11.85098],[93.01223,11.85164]]],[[[92.60349,11.92917],[92.60371,11.92952],[92.6042,11.93159],[92.60445,11.93304],[92.60483,11.93468],[92.6048,11.93531],[92.60422,11.93575],[92.60333,11.93605],[92.60234,11.93583],[92.60161,11.93536],[92.60171,11.93493],[92.60214,11.93473],[92.60255,11.93446],[92.60283,11.93391],[92.6026,11.93331],[92.60263,11.93259],[92.60331,11.93192],[92.60316,11.93089],[92.60306,11.92929],[92.60331,11.92897],[92.60349,11.92917]]],[[[92.72225,11.95133],[92.72332,11.952],[92.72366,11.95231],[92.72437,11.95302],[92.72453,11.95328],[92.7247,11.95376],[92.72466,11.95397],[92.72417,11.95428],[92.72363,11.95445],[92.72313,11.95458],[92.72284,11.95445],[92.72241,11.95363],[92.72233,11.95259],[92.72176,11.95226],[92.7216,11.95165],[92.72192,11.95127],[92.72225,11.95133]]],[[[92.60593,11.96623],[92.60553,11.96659],[92.60521,11.96676],[92.60461,11.96656],[92.60453,11.96634],[92.60421,11.9658],[92.60411,11.96535],[92.60443,11.96411],[92.60443,11.96381],[92.60429,11.96362],[92.60433,11.963],[92.60449,11.96263],[92.60479,11.96227],[92.60507,11.96182],[92.60523,11.96142],[92.60529,11.96067],[92.60583,11.9602],[92.60645,11.95955],[92.60665,11.95953],[92.60702,11.95967],[92.60711,11.9603],[92.6073,11.96054],[92.60782,11.96061],[92.6085,11.96099],[92.60862,11.96121],[92.6078,11.96578],[92.60748,11.96629],[92.60697,11.96641],[92.60639,11.96633],[92.60623,11.96611],[92.60599,11.96613],[92.60593,11.96623]]],[[[92.72816,11.94655],[92.72785,11.94705],[92.7283,11.94861],[92.728,11.94894],[92.72787,11.94925],[92.72802,11.94985],[92.72853,11.95073],[92.72898,11.95114],[92.72848,11.95264],[92.72977,11.95312],[92.73002,11.95344],[92.73046,11.95359],[92.73118,11.95433],[92.73185,11.9555],[92.73238,11.95751],[92.73246,11.95864],[92.7323,11.95964],[92.73216,11.95993],[92.73123,11.95922],[92.72924,11.95823],[92.72651,11.95715],[92.72568,11.95656],[92.72539,11.95591],[92.72519,11.95506],[92.7256,11.95342],[92.7254,11.95267],[92.72485,11.95177],[92.72412,11.95103],[92.7239,11.95052],[92.72415,11.94921],[92.7233,11.94757],[92.72315,11.94681],[92.72343,11.94571],[92.72352,11.94474],[92.72419,11.94398],[92.72411,11.94335],[92.7245,11.94281],[92.72452,11.94168],[92.72504,11.94158],[92.72622,11.9424],[92.72689,11.94251],[92.72794,11.94327],[92.72818,11.94322],[92.72873,11.94371],[92.72987,11.94382],[92.73082,11.94465],[92.73092,11.94507],[92.73077,11.94565],[92.7304,11.946],[92.72998,11.94614],[92.7286,11.94616],[92.72816,11.94655]]],[[[92.59646,11.97683],[92.59524,11.97831],[92.59454,11.9786],[92.59215,11.97836],[92.59093,11.97737],[92.58965,11.97697],[92.58684,11.97735],[92.58634,11.97529],[92.58635,11.97461],[92.58676,11.97461],[92.58681,11.97426],[92.58645,11.9717],[92.58703,11.96941],[92.58657,11.9677],[92.58679,11.96669],[92.58848,11.96575],[92.5915,11.96623],[92.59143,11.96511],[92.59345,11.9639],[92.59327,11.96368],[92.5877,11.96374],[92.58611,11.96222],[92.58563,11.96134],[92.58666,11.96012],[92.58686,11.96022],[92.58645,11.9613],[92.58698,11.9614],[92.58812,11.96276],[92.59039,11.95985],[92.59007,11.9592],[92.59111,11.95843],[92.59211,11.9598],[92.59249,11.9597],[92.59243,11.95903],[92.59125,11.95784],[92.59229,11.95674],[92.59161,11.9559],[92.58985,11.95521],[92.58957,11.95473],[92.59041,11.95372],[92.59073,11.95365],[92.59123,11.95457],[92.59193,11.95505],[92.59492,11.95301],[92.59628,11.95335],[92.59723,11.95309],[92.5953,11.9525],[92.59222,11.95396],[92.59165,11.95285],[92.59218,11.9516],[92.59137,11.95163],[92.59129,11.9506],[92.59061,11.95115],[92.59017,11.9509],[92.59059,11.95023],[92.59115,11.95],[92.59033,11.94923],[92.59021,11.94822],[92.59147,11.94802],[92.59246,11.94868],[92.59312,11.9483],[92.59308,11.94637],[92.59408,11.94558],[92.59475,11.94334],[92.5944,11.93995],[92.59358,11.9385],[92.5935,11.93763],[92.594,11.93611],[92.59358,11.93502],[92.59412,11.93332],[92.5939,11.93219],[92.59417,11.93078],[92.59386,11.92987],[92.59423,11.92879],[92.59426,11.92609],[92.59455,11.92588],[92.59559,11.92795],[92.59635,11.92846],[92.59659,11.92833],[92.59651,11.92744],[92.59699,11.92592],[92.59747,11.92497],[92.59789,11.92497],[92.59916,11.92743],[92.59986,11.92764],[92.60022,11.92962],[92.59996,11.93031],[92.60084,11.9315],[92.60057,11.93316],[92.60154,11.93618],[92.60246,11.93695],[92.6042,11.93658],[92.60537,11.93698],[92.6062,11.93795],[92.60663,11.93977],[92.60709,11.94017],[92.60814,11.94007],[92.60806,11.94323],[92.60738,11.94423],[92.60562,11.94528],[92.60595,11.94747],[92.60581,11.94996],[92.60609,11.95094],[92.60596,11.95133],[92.60447,11.95251],[92.60356,11.956],[92.60345,11.95807],[92.6038,11.95861],[92.60333,11.96033],[92.60239,11.96201],[92.60264,11.96318],[92.60189,11.96414],[92.60257,11.96519],[92.60258,11.96688],[92.60406,11.96988],[92.6042,11.97157],[92.60356,11.9736],[92.60356,11.97478],[92.60308,11.9758],[92.60221,11.97649],[92.60091,11.97551],[92.59732,11.97577],[92.59646,11.97683]]],[[[92.74224,11.96522],[92.74337,11.96583],[92.74414,11.96677],[92.74354,11.96754],[92.74327,11.96768],[92.74257,11.96766],[92.74203,11.96736],[92.7407,11.96582],[92.74041,11.96523],[92.74078,11.96503],[92.74224,11.96522]]],[[[92.58303,11.98249],[92.58253,11.98297],[92.58231,11.98292],[92.5818,11.98237],[92.58157,11.98225],[92.58133,11.98274],[92.58094,11.98173],[92.5808,11.981],[92.58109,11.98086],[92.58117,11.98042],[92.5811,11.98027],[92.58029,11.98005],[92.58021,11.97916],[92.57981,11.97726],[92.58027,11.97766],[92.58074,11.97753],[92.58117,11.97711],[92.58166,11.97714],[92.58218,11.97691],[92.583,11.97697],[92.58381,11.97679],[92.58428,11.97656],[92.58407,11.97693],[92.58389,11.97743],[92.58389,11.97811],[92.58373,11.97867],[92.58344,11.97927],[92.58326,11.98001],[92.5831,11.98137],[92.58303,11.98249]]],[[[92.99517,11.94581],[92.99549,11.94586],[92.99561,11.9462],[92.99566,11.94662],[92.99555,11.94683],[92.99521,11.94683],[92.99483,11.94666],[92.99462,11.9463],[92.9945,11.9459],[92.99465,11.94581],[92.99517,11.94581]]],[[[92.60039,11.98173],[92.60044,11.98207],[92.60042,11.98225],[92.60037,11.98238],[92.60014,11.98252],[92.59992,11.98235],[92.5999,11.98198],[92.6,11.98169],[92.60022,11.98165],[92.60039,11.98173]]],[[[92.76606,11.96774],[92.7655,11.96818],[92.7644,11.96846],[92.76248,11.96804],[92.76021,11.96843],[92.75892,11.96828],[92.75773,11.96845],[92.75699,11.96808],[92.75487,11.968],[92.7526,11.9688],[92.75062,11.96864],[92.74915,11.96908],[92.74841,11.96896],[92.74815,11.96861],[92.74818,11.96755],[92.74824,11.96691],[92.74897,11.96519],[92.74883,11.9638],[92.74827,11.96329],[92.74723,11.96316],[92.74553,11.96194],[92.74494,11.96178],[92.74339,11.96268],[92.74217,11.96286],[92.73977,11.9615],[92.73877,11.962],[92.73824,11.96169],[92.73661,11.95894],[92.73582,11.95597],[92.73574,11.95486],[92.73477,11.95335],[92.73492,11.95182],[92.73537,11.95119],[92.7357,11.95108],[92.73791,11.95218],[92.73975,11.95138],[92.74097,11.94995],[92.741,11.94842],[92.74173,11.94682],[92.74296,11.94618],[92.74418,11.94494],[92.74508,11.94535],[92.74643,11.9455],[92.74724,11.94599],[92.74845,11.94522],[92.74886,11.94459],[92.75214,11.94552],[92.75642,11.94428],[92.7582,11.9447],[92.76024,11.94645],[92.76057,11.94708],[92.76119,11.94737],[92.76216,11.94892],[92.7652,11.95186],[92.76587,11.95211],[92.76797,11.9516],[92.76952,11.95174],[92.77002,11.95203],[92.77038,11.95265],[92.77007,11.95424],[92.76856,11.9551],[92.76792,11.95571],[92.76605,11.96059],[92.76591,11.96211],[92.7674,11.96561],[92.76667,11.96711],[92.76606,11.96774]]],[[[92.74146,11.99663],[92.74062,11.99728],[92.73852,11.99728],[92.73758,11.99663],[92.73749,11.99676],[92.73644,11.99455],[92.73653,11.99298],[92.73605,11.99132],[92.73609,11.99053],[92.73628,11.99007],[92.73751,11.98923],[92.73747,11.98849],[92.73673,11.98776],[92.73654,11.98688],[92.73526,11.98438],[92.73495,11.98409],[92.73319,11.98426],[92.73209,11.98301],[92.73201,11.98265],[92.73288,11.98166],[92.73211,11.97933],[92.73212,11.97885],[92.73254,11.9786],[92.73292,11.97787],[92.7336,11.97748],[92.73365,11.97723],[92.73468,11.97692],[92.73546,11.97722],[92.73596,11.97711],[92.73624,11.97727],[92.73766,11.97912],[92.74046,11.98048],[92.74177,11.98191],[92.74274,11.98251],[92.74325,11.98321],[92.74362,11.98339],[92.74422,11.98329],[92.74471,11.98273],[92.74464,11.98042],[92.74545,11.97843],[92.74574,11.97845],[92.74624,11.97805],[92.74724,11.97809],[92.74724,11.97792],[92.7492,11.97684],[92.75,11.97691],[92.75,11.97838],[92.75132,11.97857],[92.75163,11.97918],[92.75292,11.98071],[92.75335,11.98086],[92.75425,11.98062],[92.75507,11.98065],[92.75738,11.98246],[92.75795,11.98269],[92.76063,11.98295],[92.76079,11.98317],[92.76058,11.98365],[92.75939,11.98382],[92.75777,11.98457],[92.75679,11.98544],[92.75681,11.98629],[92.75808,11.98783],[92.75875,11.98908],[92.7584,11.99156],[92.75777,11.99236],[92.75696,11.99291],[92.75635,11.99293],[92.75517,11.99248],[92.75416,11.99235],[92.75388,11.99248],[92.75301,11.99363],[92.75176,11.99369],[92.75165,11.99336],[92.75098,11.99338],[92.75078,11.99309],[92.75005,11.99316],[92.74837,11.99251],[92.748,11.99231],[92.74802,11.9921],[92.74723,11.99173],[92.74683,11.99102],[92.74409,11.99007],[92.74386,11.98971],[92.74394,11.98885],[92.74246,11.98886],[92.74209,11.98822],[92.74165,11.9883],[92.7415,11.9892],[92.74196,11.99112],[92.74146,11.99663]]],[[[92.77198,12.01893],[92.77167,12.019],[92.77152,12.01913],[92.77142,12.01914],[92.77122,12.01911],[92.77113,12.01904],[92.77109,12.01896],[92.77112,12.01877],[92.77103,12.01877],[92.77101,12.01864],[92.77119,12.01856],[92.7712,12.01802],[92.77138,12.01802],[92.77137,12.01778],[92.77123,12.01775],[92.77126,12.01766],[92.77134,12.01767],[92.77133,12.01759],[92.77122,12.01755],[92.77116,12.01764],[92.77105,12.01751],[92.77083,12.01758],[92.77064,12.0175],[92.77043,12.01751],[92.77042,12.01743],[92.77047,12.01736],[92.77015,12.01721],[92.77002,12.01707],[92.76991,12.0168],[92.76987,12.01668],[92.76993,12.01647],[92.76983,12.0164],[92.76989,12.01633],[92.76994,12.01635],[92.76987,12.01568],[92.76995,12.01556],[92.76987,12.01547],[92.76989,12.01538],[92.77004,12.01535],[92.76984,12.01508],[92.76981,12.01485],[92.76988,12.01475],[92.76981,12.01461],[92.76987,12.01455],[92.77002,12.01455],[92.7699,12.01426],[92.7699,12.0139],[92.76982,12.01383],[92.76986,12.01373],[92.76999,12.01378],[92.77002,12.01373],[92.77001,12.0135],[92.76991,12.01323],[92.76991,12.01306],[92.77,12.01274],[92.76993,12.01265],[92.76997,12.01259],[92.77014,12.01264],[92.77021,12.01247],[92.77027,12.01241],[92.77035,12.01242],[92.77073,12.0127],[92.771,12.01274],[92.771,12.01285],[92.77155,12.01273],[92.77178,12.01281],[92.77178,12.01269],[92.77183,12.01267],[92.77193,12.01271],[92.77197,12.01282],[92.7724,12.01266],[92.77257,12.0125],[92.77282,12.01244],[92.77283,12.01225],[92.77303,12.01233],[92.77365,12.01196],[92.77388,12.01199],[92.77404,12.01207],[92.77412,12.012],[92.77421,12.01205],[92.77419,12.01219],[92.77436,12.01228],[92.7744,12.01236],[92.7745,12.01233],[92.77455,12.01238],[92.77458,12.01246],[92.77452,12.01247],[92.77451,12.0126],[92.77458,12.01273],[92.77455,12.01302],[92.77463,12.01337],[92.77482,12.0135],[92.77472,12.01361],[92.77514,12.01399],[92.77521,12.01426],[92.77531,12.01435],[92.7752,12.01444],[92.77522,12.01449],[92.77591,12.01506],[92.77603,12.01533],[92.7762,12.01539],[92.77618,12.01555],[92.77637,12.01583],[92.77643,12.01618],[92.77639,12.01627],[92.77623,12.01635],[92.77625,12.01647],[92.77606,12.01645],[92.77598,12.01667],[92.77568,12.01693],[92.7756,12.01721],[92.7754,12.01726],[92.77539,12.01737],[92.77531,12.01741],[92.77519,12.01741],[92.77517,12.01755],[92.77493,12.01803],[92.77472,12.01811],[92.7747,12.01824],[92.77456,12.0182],[92.77437,12.01834],[92.7743,12.01855],[92.77419,12.01846],[92.77395,12.01863],[92.7734,12.01873],[92.77321,12.01866],[92.77312,12.01868],[92.77309,12.01875],[92.773,12.01872],[92.77299,12.01864],[92.77272,12.01873],[92.77259,12.01887],[92.77227,12.01892],[92.77225,12.019],[92.77214,12.01897],[92.77215,12.0189],[92.77198,12.01893]]],[[[92.97159,12.03543],[92.9718,12.03557],[92.97201,12.0358],[92.97215,12.03608],[92.97218,12.03627],[92.97213,12.03642],[92.97204,12.03656],[92.97191,12.03663],[92.97175,12.03665],[92.97155,12.03658],[92.97141,12.03643],[92.97119,12.03605],[92.97116,12.03596],[92.97116,12.03576],[92.97123,12.03552],[92.97131,12.0354],[92.97142,12.03538],[92.97159,12.03543]]],[[[92.99006,12.03762],[92.99,12.03769],[92.98996,12.03777],[92.98984,12.03781],[92.98961,12.038],[92.98951,12.03785],[92.98945,12.03771],[92.98934,12.03765],[92.98908,12.03786],[92.98893,12.0376],[92.98879,12.03758],[92.98877,12.03729],[92.98891,12.03725],[92.98903,12.03729],[92.98922,12.0371],[92.98938,12.03725],[92.98957,12.03703],[92.98965,12.03689],[92.98984,12.03712],[92.98985,12.03728],[92.99,12.0374],[92.99016,12.03743],[92.99022,12.03746],[92.99006,12.03762]]],[[[92.97735,12.04227],[92.97732,12.04234],[92.97727,12.04237],[92.97727,12.04243],[92.97721,12.04243],[92.97715,12.04236],[92.97716,12.04231],[92.97727,12.04223],[92.97735,12.04227]]],[[[92.97437,12.04281],[92.97443,12.04286],[92.97433,12.04292],[92.97425,12.04286],[92.97432,12.0428],[92.97437,12.04281]]],[[[92.9763,12.04267],[92.97624,12.04275],[92.97618,12.04276],[92.97614,12.04271],[92.97625,12.04261],[92.9763,12.04267]]],[[[92.97589,12.04277],[92.97591,12.04282],[92.97588,12.04288],[92.97581,12.04292],[92.9757,12.04289],[92.9757,12.04283],[92.97583,12.04276],[92.97589,12.04277]]],[[[92.97862,12.04315],[92.97868,12.04318],[92.97872,12.04326],[92.97872,12.04331],[92.97867,12.0433],[92.97862,12.04323],[92.97851,12.04319],[92.97853,12.04314],[92.97862,12.04315]]],[[[92.97806,12.04283],[92.97805,12.04292],[92.97811,12.04297],[92.97807,12.04303],[92.97806,12.0431],[92.97798,12.04327],[92.9779,12.04337],[92.97781,12.04342],[92.97774,12.04341],[92.97766,12.04335],[92.9776,12.04333],[92.97751,12.04329],[92.97741,12.04327],[92.97732,12.04324],[92.97732,12.04318],[92.97733,12.04313],[92.97708,12.04291],[92.97711,12.04286],[92.97721,12.04283],[92.97728,12.04282],[92.97729,12.04275],[92.97742,12.0426],[92.97753,12.04256],[92.97758,12.04259],[92.97766,12.04254],[92.97772,12.04248],[92.97785,12.04261],[92.97801,12.04274],[92.97806,12.04283]]],[[[92.97893,12.04365],[92.97891,12.04373],[92.97886,12.04377],[92.9788,12.04373],[92.97882,12.04366],[92.97886,12.0436],[92.97893,12.04365]]],[[[92.9786,12.0437],[92.9786,12.04377],[92.97851,12.04381],[92.97842,12.04386],[92.97827,12.04369],[92.97817,12.04373],[92.97805,12.04354],[92.97799,12.04342],[92.97813,12.04328],[92.97815,12.04316],[92.97822,12.04314],[92.97835,12.04308],[92.97834,12.04327],[92.97848,12.04339],[92.97856,12.04341],[92.97864,12.04352],[92.9786,12.04365],[92.9786,12.0437]]],[[[92.74665,12.05487],[92.74442,12.05621],[92.74375,12.05701],[92.74287,12.06072],[92.74118,12.06298],[92.73793,12.06557],[92.73628,12.06601],[92.73547,12.06551],[92.73516,12.06465],[92.73789,12.06108],[92.73907,12.05649],[92.73693,12.05393],[92.73576,12.05437],[92.73391,12.05607],[92.73351,12.05697],[92.73325,12.0604],[92.73117,12.0594],[92.72761,12.05876],[92.72693,12.05831],[92.72612,12.05703],[92.72579,12.05515],[92.72749,12.05487],[92.72808,12.05411],[92.72847,12.04883],[92.72981,12.04668],[92.73021,12.04428],[92.73027,12.04083],[92.73074,12.0391],[92.73015,12.03788],[92.72884,12.03793],[92.7293,12.0369],[92.73022,12.03741],[92.73335,12.0362],[92.7338,12.03531],[92.7334,12.03435],[92.73361,12.03409],[92.73599,12.03532],[92.73705,12.03526],[92.73923,12.03305],[92.73963,12.03372],[92.73852,12.03697],[92.73843,12.03839],[92.73721,12.03928],[92.73671,12.0413],[92.73688,12.04154],[92.73809,12.04042],[92.73951,12.04109],[92.73964,12.04143],[92.73896,12.0422],[92.74062,12.0415],[92.74042,12.04076],[92.73918,12.03979],[92.73909,12.03926],[92.74004,12.03816],[92.74144,12.03767],[92.74132,12.0355],[92.74206,12.03408],[92.74307,12.03358],[92.74489,12.0334],[92.74608,12.03603],[92.74725,12.03676],[92.74816,12.03549],[92.74782,12.03443],[92.74723,12.03402],[92.74712,12.03438],[92.74633,12.03335],[92.74609,12.03111],[92.74568,12.03086],[92.74509,12.02732],[92.74559,12.02564],[92.74642,12.02505],[92.74724,12.0251],[92.74723,12.02599],[92.74752,12.02562],[92.74812,12.02586],[92.74832,12.02661],[92.74874,12.02673],[92.74919,12.0265],[92.7493,12.0255],[92.75,12.0254],[92.74999,12.02704],[92.74952,12.02735],[92.74998,12.0286],[92.74942,12.03016],[92.75,12.03046],[92.75021,12.03208],[92.75183,12.03402],[92.7528,12.03216],[92.75138,12.02941],[92.75172,12.02757],[92.7526,12.02591],[92.75382,12.02492],[92.75457,12.0264],[92.75539,12.0268],[92.75664,12.02541],[92.75554,12.02302],[92.7559,12.0219],[92.75769,12.02133],[92.75842,12.02079],[92.75859,12.02008],[92.76057,12.01932],[92.76161,12.01941],[92.76375,12.0212],[92.7649,12.02106],[92.76501,12.02173],[92.76572,12.02242],[92.76505,12.02284],[92.76498,12.02411],[92.76655,12.02544],[92.76894,12.02483],[92.77105,12.02341],[92.77169,12.02348],[92.77276,12.02255],[92.77348,12.02241],[92.77467,12.02364],[92.77559,12.02344],[92.77558,12.02401],[92.7773,12.02449],[92.77769,12.02413],[92.77837,12.02571],[92.77818,12.02662],[92.7777,12.02738],[92.77632,12.02805],[92.77635,12.02926],[92.77557,12.02992],[92.77602,12.03131],[92.77503,12.03215],[92.77452,12.03214],[92.77479,12.03386],[92.77643,12.03491],[92.7769,12.03655],[92.77753,12.0373],[92.7765,12.03852],[92.77685,12.03883],[92.77796,12.03868],[92.77645,12.03992],[92.7765,12.04061],[92.7755,12.04049],[92.77645,12.04118],[92.77616,12.04193],[92.77643,12.04205],[92.77739,12.04061],[92.77787,12.04055],[92.77805,12.03989],[92.77845,12.03999],[92.77872,12.03923],[92.77874,12.04076],[92.78012,12.04228],[92.78154,12.04299],[92.78224,12.04425],[92.78228,12.04519],[92.78165,12.04657],[92.78219,12.04854],[92.78117,12.04859],[92.78077,12.04809],[92.77938,12.0483],[92.77904,12.04929],[92.77768,12.05023],[92.77661,12.0497],[92.7758,12.05016],[92.77579,12.04965],[92.77482,12.04957],[92.77397,12.04778],[92.77164,12.04608],[92.77093,12.04603],[92.76928,12.04703],[92.76712,12.04602],[92.7662,12.04597],[92.76398,12.04721],[92.76418,12.04787],[92.76595,12.04951],[92.76447,12.05142],[92.76364,12.0516],[92.76201,12.05105],[92.76057,12.05003],[92.75963,12.05056],[92.76075,12.05402],[92.76017,12.05463],[92.75786,12.05512],[92.75596,12.05405],[92.75468,12.05421],[92.75233,12.05379],[92.75017,12.05419],[92.75,12.05528],[92.74844,12.0544],[92.74805,12.05523],[92.74725,12.05472],[92.74665,12.05487]]],[[[92.97883,12.04398],[92.97885,12.04403],[92.97881,12.04411],[92.97878,12.04422],[92.97875,12.04428],[92.97869,12.04429],[92.97862,12.04403],[92.97871,12.04395],[92.97883,12.04398]]],[[[92.96401,12.05009],[92.96154,12.04474],[92.96176,12.0389],[92.96011,12.03124],[92.95583,12.02396],[92.95064,12.01814],[92.94942,12.0138],[92.94563,12.00999],[92.9436,12.01023],[92.93893,12.00714],[92.9283,12.00592],[92.92295,11.99844],[92.92557,11.99427],[92.92941,11.99123],[92.93052,11.9856],[92.93231,11.98367],[92.93594,11.98303],[92.9393,11.98549],[92.94006,11.98366],[92.94579,11.98464],[92.95844,11.98095],[92.9629,11.96856],[92.96449,11.96818],[92.96519,11.96117],[92.97052,11.94903],[92.97509,11.94555],[92.98656,11.94329],[92.98812,11.94645],[92.99373,11.94776],[92.99724,11.94723],[92.99934,11.95025],[92.99722,11.95438],[93.0,11.95992],[92.99763,11.95385],[93.00084,11.94839],[93.00357,11.95328],[93.00636,11.95554],[93.00821,11.95537],[93.00679,11.95792],[93.00473,11.95766],[93.00441,11.9594],[93.00497,11.95793],[93.00694,11.95822],[93.0084,11.95511],[93.0064,11.95521],[93.00373,11.9529],[93.0016,11.94751],[93.00468,11.94834],[93.00815,11.94587],[93.00997,11.94663],[93.00865,11.94523],[93.00892,11.94367],[93.01002,11.94299],[93.0129,11.94413],[93.01494,11.94215],[93.01538,11.93827],[93.01474,11.94176],[93.01281,11.94381],[93.00941,11.94272],[93.00818,11.9455],[93.00428,11.94795],[93.00183,11.94658],[92.99647,11.94605],[92.99569,11.94374],[92.99055,11.94384],[92.99174,11.93794],[92.99307,11.93633],[92.99201,11.93568],[92.99233,11.93452],[92.99751,11.93089],[93.00228,11.92984],[93.00424,11.92806],[93.00655,11.92329],[93.00965,11.91998],[93.01248,11.91275],[93.01531,11.9104],[93.02381,11.88758],[93.02544,11.88578],[93.02779,11.88388],[93.03483,11.88155],[93.03796,11.8815],[93.04313,11.88424],[93.0441,11.88372],[93.05145,11.89248],[93.05367,11.89709],[93.05409,11.90279],[93.05189,11.90653],[93.05067,11.90625],[93.05171,11.90793],[93.05111,11.90948],[93.04879,11.91],[93.05057,11.91268],[93.05037,11.91541],[93.04657,11.91646],[93.04956,11.9215],[93.04861,11.92375],[93.04739,11.92407],[93.04852,11.92526],[93.04629,11.93087],[93.04379,11.93192],[93.04533,11.93447],[93.04016,11.94279],[93.03905,11.94893],[93.03335,11.94974],[93.03161,11.94847],[93.03007,11.94885],[93.03023,11.95092],[93.02779,11.95192],[93.02836,11.95424],[93.026,11.95965],[93.02732,11.96194],[93.02728,11.96481],[93.02508,11.969],[93.02701,11.96998],[93.02833,11.97478],[93.02454,11.97466],[93.0224,11.97277],[93.02053,11.97441],[93.0167,11.98017],[93.01682,11.9834],[93.01228,11.99076],[93.01438,11.9917],[93.01236,11.99215],[93.01531,11.99518],[93.01508,11.9975],[93.01235,11.99659],[93.01066,11.99465],[93.00994,11.99624],[93.01303,11.99863],[93.00867,11.99881],[93.0071,12.00299],[93.00678,12.00632],[93.00797,12.0084],[93.01161,12.00508],[93.01283,12.00524],[93.01403,12.00866],[93.01254,12.00886],[93.01296,12.01088],[93.01684,12.0122],[93.01678,12.014],[93.01561,12.01434],[93.01692,12.01518],[93.01402,12.01653],[93.01645,12.02101],[93.01355,12.02188],[93.01269,12.02358],[93.01449,12.02447],[93.01478,12.0273],[93.01395,12.028],[93.01086,12.02709],[93.01012,12.03135],[93.00772,12.02992],[93.00666,12.03213],[93.00572,12.03158],[93.00424,12.03295],[93.00433,12.0344],[93.00101,12.03209],[92.99973,12.03544],[92.99865,12.03452],[92.99272,12.03766],[92.98798,12.03707],[92.98237,12.04283],[92.9791,12.04164],[92.97296,12.04316],[92.97202,12.03921],[92.97433,12.03688],[92.97313,12.03733],[92.97377,12.03615],[92.97198,12.03461],[92.97371,12.03178],[92.97706,12.02914],[92.97854,12.03043],[92.98135,12.02902],[92.98005,12.02729],[92.98271,12.02726],[92.98168,12.02449],[92.98347,12.02603],[92.98188,12.02413],[92.98327,12.02292],[92.98257,12.0226],[92.98109,12.02521],[92.9826,12.02705],[92.97981,12.02713],[92.98111,12.02882],[92.97836,12.02997],[92.97597,12.02777],[92.97742,12.02538],[92.97545,12.02338],[92.97732,12.01874],[92.97486,12.01664],[92.97627,12.01794],[92.97724,12.01693],[92.97607,12.01767],[92.97482,12.01625],[92.97568,12.0184],[92.97708,12.01873],[92.97507,12.02337],[92.97716,12.02545],[92.97549,12.02717],[92.97645,12.02903],[92.97097,12.03493],[92.96975,12.03449],[92.96841,12.03133],[92.96551,12.04122],[92.96508,12.04888],[92.96401,12.05009]]],[[[92.74151,12.06908],[92.74133,12.0696],[92.74155,12.07064],[92.74343,12.07171],[92.74333,12.0721],[92.74154,12.07333],[92.74082,12.07353],[92.7405,12.07289],[92.74086,12.07233],[92.74092,12.07176],[92.74066,12.07111],[92.73876,12.06952],[92.738,12.06922],[92.73696,12.06935],[92.73657,12.06913],[92.73695,12.06833],[92.7371,12.06731],[92.73679,12.06646],[92.7392,12.06528],[92.74128,12.06362],[92.74309,12.06128],[92.74371,12.06021],[92.74391,12.05926],[92.74386,12.0581],[92.74426,12.05685],[92.74555,12.05576],[92.74724,12.0553],[92.74962,12.05623],[92.75,12.05598],[92.75,12.05634],[92.75032,12.05616],[92.75328,12.05754],[92.75401,12.05814],[92.75484,12.05993],[92.75585,12.0608],[92.75651,12.06177],[92.75669,12.0625],[92.75673,12.06421],[92.75583,12.06605],[92.75518,12.06676],[92.75407,12.06762],[92.75381,12.06714],[92.75365,12.06717],[92.75373,12.06801],[92.75,12.07036],[92.75,12.07011],[92.74827,12.07092],[92.74721,12.07056],[92.74623,12.07074],[92.74401,12.07147],[92.74206,12.07049],[92.74177,12.07008],[92.74185,12.06931],[92.74255,12.06832],[92.74334,12.06775],[92.74369,12.06782],[92.7442,12.06766],[92.74472,12.06718],[92.745,12.06719],[92.74523,12.06681],[92.74426,12.06692],[92.74374,12.06738],[92.7427,12.06759],[92.74151,12.06908]]],[[[92.96889,12.0659],[92.96885,12.06602],[92.96874,12.06609],[92.96866,12.06605],[92.96872,12.06588],[92.9686,12.06581],[92.96846,12.06585],[92.96829,12.06585],[92.96798,12.0659],[92.96786,12.06582],[92.9672,12.06513],[92.96716,12.065],[92.96717,12.06471],[92.96713,12.06447],[92.96715,12.06422],[92.9672,12.06405],[92.96737,12.06378],[92.96754,12.06366],[92.96752,12.06361],[92.96744,12.06355],[92.96754,12.06341],[92.96764,12.06345],[92.96787,12.06286],[92.96802,12.06276],[92.96806,12.06258],[92.96814,12.06253],[92.96841,12.06251],[92.9686,12.06266],[92.96865,12.0628],[92.96882,12.06276],[92.96893,12.06277],[92.96915,12.06286],[92.96929,12.06285],[92.96934,12.06294],[92.96948,12.06294],[92.96947,12.06299],[92.96974,12.06298],[92.96989,12.06308],[92.96994,12.0633],[92.97007,12.06326],[92.97041,12.06322],[92.97059,12.06328],[92.97068,12.0634],[92.97072,12.06354],[92.97071,12.06365],[92.97059,12.06373],[92.97027,12.06379],[92.97022,12.06385],[92.97035,12.06405],[92.97036,12.06415],[92.97025,12.06433],[92.97034,12.0644],[92.97037,12.06449],[92.97032,12.06467],[92.97014,12.06483],[92.97008,12.06499],[92.97009,12.06531],[92.97004,12.06545],[92.96992,12.06546],[92.96993,12.0654],[92.96971,12.06539],[92.96958,12.06549],[92.96936,12.06577],[92.96924,12.06582],[92.96912,12.06581],[92.96889,12.0659]]],[[[92.96473,12.06653],[92.96471,12.0666],[92.96455,12.06657],[92.96453,12.06651],[92.96409,12.06655],[92.96395,12.06654],[92.96387,12.06662],[92.96361,12.06652],[92.96366,12.06638],[92.96333,12.0664],[92.96316,12.06636],[92.96297,12.0662],[92.96291,12.06624],[92.96258,12.06631],[92.96233,12.06645],[92.96225,12.06644],[92.9622,12.06628],[92.96201,12.06642],[92.96183,12.06643],[92.96156,12.06633],[92.96152,12.06627],[92.96164,12.06608],[92.96181,12.06589],[92.96199,12.06579],[92.9622,12.06572],[92.96228,12.06577],[92.96236,12.06576],[92.9624,12.06562],[92.96251,12.06545],[92.96265,12.06531],[92.96279,12.06525],[92.96281,12.06512],[92.96288,12.06506],[92.9629,12.06513],[92.96298,12.0651],[92.96301,12.065],[92.96306,12.06506],[92.96343,12.06481],[92.96366,12.06473],[92.96377,12.06471],[92.96394,12.06479],[92.96401,12.06465],[92.96414,12.06462],[92.9641,12.06488],[92.96441,12.06466],[92.9646,12.06464],[92.96472,12.06469],[92.9649,12.06493],[92.9652,12.06494],[92.96529,12.065],[92.96538,12.06509],[92.9654,12.06525],[92.96547,12.06528],[92.96596,12.06525],[92.96603,12.06528],[92.96608,12.06533],[92.96609,12.06539],[92.96599,12.06553],[92.96561,12.06582],[92.96562,12.06598],[92.96558,12.06607],[92.96541,12.06621],[92.965,12.06645],[92.96492,12.06648],[92.96479,12.06647],[92.96473,12.06653]]],[[[93.01217,12.06528],[93.01254,12.0661],[93.01251,12.0664],[93.01267,12.06668],[93.01249,12.06702],[93.01217,12.06744],[93.01096,12.06851],[93.01031,12.06859],[93.00947,12.06801],[93.00929,12.06727],[93.00922,12.0665],[93.00954,12.0661],[93.01013,12.06597],[93.01034,12.06568],[93.01073,12.06548],[93.01122,12.06506],[93.01162,12.06508],[93.01186,12.06501],[93.01217,12.06528]]],[[[93.00854,12.07082],[93.00832,12.07055],[93.00824,12.07014],[93.00851,12.06995],[93.0088,12.06955],[93.00896,12.06939],[93.00908,12.06947],[93.00914,12.06939],[93.00949,12.0693],[93.0096,12.06942],[93.00981,12.06944],[93.00979,12.06978],[93.00997,12.0699],[93.00965,12.07036],[93.00941,12.07053],[93.00919,12.07075],[93.00876,12.07075],[93.00854,12.07082]]],[[[93.00743,12.07239],[93.00712,12.07224],[93.00689,12.07226],[93.00678,12.07218],[93.00658,12.07156],[93.0067,12.07133],[93.00649,12.07114],[93.00602,12.07123],[93.00603,12.07149],[93.00592,12.07167],[93.006,12.07195],[93.00575,12.07215],[93.00552,12.07213],[93.00533,12.07228],[93.00486,12.07207],[93.00451,12.07168],[93.00432,12.07124],[93.00431,12.07091],[93.00415,12.07064],[93.0042,12.07021],[93.00415,12.06996],[93.00446,12.06949],[93.00459,12.06921],[93.00472,12.06917],[93.0049,12.06895],[93.00524,12.06882],[93.00555,12.06862],[93.0058,12.06863],[93.00599,12.06875],[93.00645,12.06862],[93.00666,12.06873],[93.00664,12.06905],[93.00686,12.06901],[93.00703,12.0692],[93.00727,12.06967],[93.0072,12.06999],[93.00719,12.07019],[93.00673,12.0707],[93.00657,12.07075],[93.00661,12.07105],[93.0067,12.07113],[93.00718,12.07084],[93.00748,12.07089],[93.00758,12.07078],[93.00795,12.07081],[93.0082,12.07099],[93.00824,12.07122],[93.0082,12.07139],[93.00807,12.07144],[93.0081,12.07165],[93.0081,12.07201],[93.00796,12.07225],[93.00782,12.07227],[93.00761,12.07223],[93.00743,12.07239]]],[[[93.05253,12.07335],[93.05232,12.07316],[93.05258,12.07282],[93.05303,12.07252],[93.05335,12.07241],[93.05354,12.07252],[93.05345,12.07291],[93.05307,12.07321],[93.05272,12.07323],[93.05253,12.07335]]],[[[93.05439,12.07363],[93.05459,12.07381],[93.05404,12.07406],[93.05376,12.0739],[93.05368,12.07358],[93.05441,12.07328],[93.05439,12.07363]]],[[[93.07719,12.07692],[93.07707,12.07692],[93.07676,12.07684],[93.07666,12.07674],[93.0767,12.07648],[93.07698,12.07627],[93.07708,12.07647],[93.07731,12.07638],[93.07728,12.07667],[93.07718,12.07674],[93.07719,12.07692]]],[[[93.07854,12.07714],[93.07841,12.07706],[93.07831,12.07694],[93.07829,12.07681],[93.07843,12.07671],[93.07837,12.07653],[93.0786,12.07656],[93.07872,12.07646],[93.07887,12.07666],[93.07905,12.07659],[93.07901,12.07688],[93.07891,12.07691],[93.07894,12.0771],[93.0786,12.07705],[93.07854,12.07714]]],[[[93.08021,12.07687],[93.08036,12.07699],[93.08012,12.07729],[93.07962,12.07722],[93.07952,12.07719],[93.07946,12.07683],[93.07959,12.07675],[93.07958,12.07666],[93.07995,12.07647],[93.08003,12.07654],[93.08004,12.0767],[93.08022,12.07665],[93.08021,12.07687]]],[[[93.08231,12.07883],[93.08225,12.07867],[93.08228,12.07838],[93.08237,12.07827],[93.08257,12.07822],[93.08283,12.07827],[93.08291,12.07843],[93.0829,12.0787],[93.08284,12.07887],[93.0827,12.0789],[93.08248,12.07891],[93.08231,12.07883]]],[[[92.9568,12.09191],[92.95652,12.09222],[92.9564,12.09218],[92.95635,12.09213],[92.95629,12.09201],[92.95616,12.09169],[92.95588,12.09139],[92.95584,12.09133],[92.95582,12.09119],[92.95583,12.09113],[92.95595,12.09092],[92.95599,12.09073],[92.95605,12.09059],[92.95623,12.09058],[92.95624,12.09051],[92.95631,12.09044],[92.95648,12.09051],[92.95659,12.09035],[92.95664,12.09022],[92.95665,12.09002],[92.95672,12.08989],[92.9568,12.08983],[92.95688,12.08981],[92.95695,12.08981],[92.95703,12.08986],[92.95711,12.09012],[92.95725,12.09008],[92.95729,12.09018],[92.95719,12.09029],[92.95718,12.09039],[92.95727,12.09067],[92.95746,12.09095],[92.95757,12.09106],[92.9576,12.09118],[92.95755,12.09133],[92.95757,12.09156],[92.95749,12.09168],[92.95742,12.09176],[92.9573,12.0918],[92.95719,12.0918],[92.95713,12.09171],[92.95696,12.09185],[92.95693,12.09175],[92.9568,12.09191]]],[[[92.73939,12.11051],[92.74018,12.11096],[92.74051,12.11124],[92.74071,12.11154],[92.74079,12.11172],[92.74082,12.11191],[92.74076,12.1129],[92.74069,12.11299],[92.74051,12.11312],[92.74,12.11291],[92.73973,12.11267],[92.73941,12.11227],[92.73921,12.1118],[92.73873,12.11092],[92.73868,12.11068],[92.7387,12.11056],[92.7388,12.11044],[92.73898,12.11039],[92.73939,12.11051]]],[[[93.03434,12.10264],[93.03423,12.10369],[93.03407,12.10419],[93.03385,12.10476],[93.03366,12.10503],[93.03319,12.10495],[93.03311,12.10455],[93.0334,12.10419],[93.03362,12.10363],[93.03387,12.1029],[93.03429,12.10264],[93.03434,12.10264]]],[[[92.98997,12.10979],[92.98402,12.10942],[92.9804,12.1066],[92.97556,12.10624],[92.97563,12.10576],[92.97467,12.10597],[92.97412,12.10495],[92.97292,12.10453],[92.97211,12.10481],[92.97172,12.10384],[92.97066,12.10494],[92.97053,12.10457],[92.9698,12.10533],[92.96917,12.10508],[92.96872,12.10631],[92.96933,12.10598],[92.96888,12.10671],[92.96712,12.10809],[92.96691,12.10788],[92.9656,12.10999],[92.96335,12.10863],[92.96156,12.10947],[92.96014,12.10923],[92.95917,12.10854],[92.95789,12.10855],[92.95783,12.10747],[92.95843,12.10656],[92.95829,12.10516],[92.95876,12.10429],[92.95851,12.10326],[92.9595,12.10194],[92.95923,12.09992],[92.95982,12.09954],[92.95954,12.09843],[92.96009,12.09724],[92.95967,12.09637],[92.95875,12.09774],[92.95791,12.09652],[92.95902,12.09276],[92.95858,12.0922],[92.95893,12.09156],[92.95819,12.08956],[92.95754,12.08898],[92.95751,12.08718],[92.95986,12.08725],[92.96071,12.08771],[92.95985,12.08916],[92.96104,12.09101],[92.96116,12.0929],[92.96181,12.09334],[92.96308,12.09366],[92.96326,12.09165],[92.96404,12.09148],[92.96321,12.09],[92.96344,12.08884],[92.96305,12.08827],[92.96316,12.08756],[92.9637,12.08738],[92.96422,12.08835],[92.96372,12.08865],[92.96442,12.08916],[92.96553,12.08914],[92.96832,12.09085],[92.96867,12.09274],[92.96966,12.093],[92.96981,12.09366],[92.96975,12.09287],[92.96876,12.09255],[92.96874,12.08879],[92.96964,12.0872],[92.97177,12.08659],[92.97091,12.08635],[92.96824,12.08684],[92.96519,12.08539],[92.96337,12.08564],[92.96254,12.08522],[92.96262,12.0846],[92.96134,12.08418],[92.9606,12.08322],[92.95904,12.08346],[92.9579,12.0831],[92.95635,12.08132],[92.95671,12.08132],[92.95676,12.08025],[92.95752,12.07929],[92.95749,12.07866],[92.95662,12.0779],[92.95713,12.07743],[92.9575,12.07761],[92.95749,12.07666],[92.95852,12.07631],[92.95849,12.07556],[92.95644,12.07307],[92.95748,12.0718],[92.95717,12.06994],[92.95914,12.06889],[92.9605,12.06924],[92.96095,12.06784],[92.96163,12.06729],[92.96257,12.06722],[92.9637,12.06791],[92.96477,12.06734],[92.96563,12.06774],[92.96803,12.0668],[92.96835,12.06712],[92.96886,12.06666],[92.97115,12.06814],[92.97113,12.06765],[92.97035,12.06715],[92.97054,12.06516],[92.97188,12.06437],[92.972,12.06493],[92.97353,12.06577],[92.97492,12.06722],[92.97291,12.06485],[92.97345,12.06401],[92.97273,12.06447],[92.97306,12.06397],[92.97175,12.06305],[92.97124,12.05956],[92.97061,12.0592],[92.97122,12.05731],[92.97206,12.05641],[92.97286,12.05626],[92.97274,12.05706],[92.97205,12.05763],[92.97398,12.06044],[92.97501,12.05935],[92.97574,12.05722],[92.97671,12.05664],[92.97847,12.05445],[92.97859,12.05314],[92.9777,12.05192],[92.97874,12.05073],[92.97976,12.05013],[92.98138,12.05068],[92.98271,12.04946],[92.98342,12.04957],[92.98544,12.04803],[92.98593,12.04684],[92.98679,12.04679],[92.99037,12.04405],[92.99414,12.04368],[92.99639,12.04439],[92.99894,12.04751],[92.99876,12.04799],[92.99944,12.04806],[93.0004,12.04905],[93.0011,12.05066],[93.00121,12.05407],[93.00063,12.05477],[93.00086,12.05513],[92.99985,12.0561],[92.99973,12.05834],[93.00266,12.05955],[93.00207,12.0613],[93.00081,12.06254],[92.99884,12.06392],[92.99725,12.06425],[92.99725,12.0653],[92.99839,12.06523],[92.99943,12.06588],[93.00018,12.06753],[92.99992,12.07006],[92.99921,12.07115],[92.99832,12.07158],[92.99814,12.07331],[92.99868,12.07339],[92.99935,12.07256],[93.0002,12.07289],[93.00069,12.07417],[93.00053,12.07535],[93.0,12.07621],[93.0,12.07512],[92.99799,12.0773],[92.9959,12.0767],[92.99449,12.0784],[92.99352,12.07877],[92.99467,12.0786],[92.99604,12.07699],[92.99829,12.07762],[92.99748,12.07874],[92.99741,12.08033],[92.99602,12.08125],[92.99509,12.08133],[92.99554,12.08162],[92.99779,12.0807],[92.99785,12.07863],[92.99938,12.07849],[92.99967,12.08052],[92.99933,12.08374],[92.99976,12.08539],[92.9976,12.08699],[92.99788,12.08724],[93.00004,12.08592],[93.00139,12.08956],[93.0007,12.09049],[93.00026,12.0903],[92.99874,12.09102],[92.99865,12.09158],[92.9993,12.09248],[92.99776,12.09329],[92.99806,12.09458],[92.99849,12.09458],[92.99821,12.09326],[92.99949,12.09251],[92.99888,12.09145],[92.99906,12.09099],[93.00123,12.09057],[93.00204,12.09312],[93.00294,12.09394],[93.00324,12.09777],[93.00491,12.09897],[93.00503,12.10064],[93.00486,12.10281],[93.00416,12.10401],[93.00071,12.1054],[92.99902,12.10581],[92.99722,12.10538],[92.99529,12.10672],[92.99159,12.10724],[92.98997,12.10979]]],[[[93.0,12.10902],[93.0,12.10882],[92.99946,12.1085],[92.99918,12.10847],[92.99865,12.10873],[92.99841,12.1086],[92.99812,12.10789],[92.99868,12.10775],[92.99914,12.10734],[93.00029,12.10706],[93.00143,12.1069],[93.00269,12.10654],[93.0033,12.10648],[93.0043,12.10605],[93.00481,12.10611],[93.00493,12.10646],[93.00501,12.10732],[93.00481,12.10757],[93.00384,12.10754],[93.00276,12.10776],[93.00206,12.10829],[93.00131,12.10874],[93.0007,12.10882],[93.0,12.10882],[93.0,12.10902]]],[[[92.97755,12.10915],[92.97769,12.10927],[92.97773,12.10937],[92.97774,12.1095],[92.97774,12.10996],[92.97778,12.11059],[92.97775,12.11074],[92.9777,12.11086],[92.97733,12.11156],[92.97713,12.11187],[92.97684,12.1121],[92.97655,12.11219],[92.97631,12.11219],[92.9761,12.11213],[92.97587,12.11195],[92.97581,12.11188],[92.9758,12.11182],[92.97585,12.11162],[92.97586,12.11141],[92.97579,12.1111],[92.97577,12.11075],[92.97582,12.1105],[92.97589,12.11026],[92.97599,12.11003],[92.97615,12.1098],[92.97635,12.10962],[92.97659,12.10944],[92.97683,12.1093],[92.97697,12.10923],[92.97733,12.10915],[92.97746,12.10913],[92.97755,12.10915]]],[[[92.9921,12.10951],[92.99221,12.10956],[92.99236,12.10969],[92.99253,12.10988],[92.99265,12.11018],[92.9927,12.11042],[92.99272,12.11058],[92.99267,12.11075],[92.99259,12.11095],[92.99231,12.11134],[92.99208,12.11151],[92.99184,12.11156],[92.9916,12.11154],[92.9914,12.11148],[92.99124,12.11138],[92.99112,12.11127],[92.99104,12.11118],[92.9909,12.11096],[92.99082,12.1107],[92.99084,12.11043],[92.9909,12.1102],[92.991,12.11001],[92.99133,12.10975],[92.99175,12.1095],[92.99189,12.10946],[92.9921,12.10951]]],[[[92.97328,12.11617],[92.97322,12.11618],[92.97315,12.11634],[92.97295,12.11646],[92.97258,12.11654],[92.97237,12.11645],[92.97225,12.11642],[92.97208,12.11635],[92.97205,12.1163],[92.97205,12.11619],[92.97209,12.11612],[92.97213,12.11608],[92.97208,12.11604],[92.97201,12.11601],[92.97196,12.11597],[92.97194,12.11588],[92.97195,12.11581],[92.972,12.11575],[92.9721,12.11569],[92.97223,12.1156],[92.97228,12.11553],[92.97231,12.11544],[92.97242,12.11539],[92.97263,12.11537],[92.97277,12.11537],[92.97288,12.11533],[92.97295,12.11531],[92.97307,12.11534],[92.97316,12.11543],[92.97323,12.11556],[92.97329,12.11563],[92.97345,12.11572],[92.97355,12.11574],[92.97357,12.11584],[92.97356,12.11593],[92.97347,12.11598],[92.97351,12.11606],[92.97348,12.11614],[92.97339,12.1162],[92.97333,12.11617],[92.97328,12.11617]]],[[[92.94746,12.11654],[92.94709,12.11754],[92.9466,12.11812],[92.94635,12.11901],[92.94568,12.11988],[92.94546,12.1194],[92.9457,12.11863],[92.94557,12.11828],[92.94596,12.11721],[92.94568,12.11683],[92.94589,12.11673],[92.94578,12.11642],[92.94609,12.11558],[92.94669,12.11496],[92.94663,12.11409],[92.9477,12.1117],[92.94798,12.11005],[92.94755,12.10598],[92.94702,12.10329],[92.94675,12.09904],[92.94715,12.0927],[92.94801,12.08518],[92.9491,12.08488],[92.94898,12.08442],[92.94979,12.08284],[92.94955,12.08268],[92.95,12.08156],[92.9498,12.08145],[92.9498,12.08112],[92.95008,12.08109],[92.94986,12.08093],[92.94983,12.07966],[92.95013,12.07924],[92.95073,12.07977],[92.95068,12.08061],[92.95131,12.08134],[92.951,12.08192],[92.95126,12.08227],[92.9511,12.08267],[92.9513,12.08274],[92.95158,12.084],[92.95115,12.08479],[92.95137,12.08515],[92.95188,12.08505],[92.95201,12.08548],[92.95147,12.08692],[92.95114,12.08712],[92.95105,12.08769],[92.95061,12.08823],[92.95066,12.08894],[92.95088,12.08904],[92.95068,12.08993],[92.95095,12.09051],[92.95083,12.09098],[92.95118,12.09161],[92.95198,12.09221],[92.95217,12.09295],[92.95309,12.09331],[92.95305,12.09348],[92.95397,12.09352],[92.9539,12.09366],[92.9547,12.09394],[92.95534,12.09536],[92.95626,12.09611],[92.95612,12.09629],[92.95687,12.09747],[92.95678,12.09777],[92.95712,12.09828],[92.95707,12.09906],[92.9573,12.09923],[92.95703,12.09938],[92.95688,12.10002],[92.95667,12.10232],[92.95618,12.10296],[92.95612,12.10357],[92.95634,12.1038],[92.95589,12.10362],[92.95568,12.10464],[92.95544,12.10472],[92.95546,12.10525],[92.95498,12.10588],[92.95477,12.10731],[92.95444,12.10729],[92.95414,12.10798],[92.95404,12.1085],[92.95431,12.10854],[92.95384,12.10877],[92.95394,12.11054],[92.95364,12.11039],[92.95237,12.11173],[92.95273,12.11233],[92.95355,12.11279],[92.95377,12.11314],[92.95235,12.11311],[92.95244,12.11288],[92.95161,12.11259],[92.95126,12.11354],[92.95058,12.11442],[92.94941,12.11507],[92.94886,12.11576],[92.94828,12.11567],[92.94746,12.11654]]],[[[92.96043,12.11812],[92.96011,12.11866],[92.95995,12.11873],[92.95975,12.1192],[92.95946,12.11929],[92.95937,12.1192],[92.95935,12.11913],[92.95951,12.11885],[92.95957,12.11865],[92.95948,12.11788],[92.95958,12.11763],[92.95973,12.1174],[92.95981,12.11709],[92.9599,12.11694],[92.96003,12.11687],[92.9602,12.11698],[92.96022,12.11646],[92.96031,12.11629],[92.9607,12.11595],[92.96085,12.1157],[92.96094,12.11543],[92.96106,12.11526],[92.96119,12.11514],[92.96131,12.11513],[92.96144,12.11526],[92.96159,12.11494],[92.96208,12.11455],[92.96227,12.11412],[92.96242,12.11399],[92.96259,12.11397],[92.96265,12.11402],[92.96296,12.11463],[92.96342,12.11509],[92.96347,12.1153],[92.96343,12.11552],[92.96329,12.11566],[92.96309,12.11599],[92.96295,12.11634],[92.96283,12.1168],[92.96253,12.11703],[92.96236,12.11735],[92.9621,12.11755],[92.96171,12.11803],[92.96149,12.1181],[92.96125,12.11803],[92.96098,12.11807],[92.96058,12.11802],[92.96043,12.11812]]],[[[92.96084,12.11938],[92.96095,12.11943],[92.96101,12.11947],[92.96104,12.11958],[92.96103,12.11968],[92.96098,12.1198],[92.96089,12.1199],[92.96084,12.12013],[92.96079,12.12026],[92.9606,12.12049],[92.96051,12.12064],[92.9604,12.12075],[92.96034,12.12079],[92.96028,12.12077],[92.96017,12.12064],[92.96009,12.12048],[92.96007,12.12037],[92.96007,12.12026],[92.96011,12.12017],[92.96034,12.12],[92.96046,12.11991],[92.96054,12.11984],[92.96058,12.11976],[92.9606,12.11965],[92.96066,12.11947],[92.96071,12.11942],[92.96078,12.11938],[92.96084,12.11938]]],[[[92.95665,12.12748],[92.95645,12.12739],[92.95636,12.12747],[92.95616,12.12725],[92.95631,12.12713],[92.95624,12.12704],[92.95627,12.12679],[92.9561,12.12655],[92.95616,12.12647],[92.95605,12.12636],[92.95593,12.1261],[92.95616,12.12602],[92.95593,12.12573],[92.95613,12.12559],[92.95596,12.12529],[92.95607,12.12516],[92.95603,12.12505],[92.95611,12.12494],[92.95602,12.12486],[92.95608,12.12461],[92.95604,12.12449],[92.95621,12.12437],[92.95616,12.12423],[92.95621,12.12396],[92.95635,12.12374],[92.95639,12.12353],[92.95639,12.12331],[92.95665,12.12338],[92.95674,12.12328],[92.95692,12.12348],[92.95692,12.12361],[92.95705,12.12378],[92.95706,12.12387],[92.95732,12.12404],[92.95711,12.12418],[92.95733,12.12434],[92.95717,12.12445],[92.95728,12.12454],[92.95718,12.12467],[92.95737,12.12496],[92.9574,12.12514],[92.95767,12.12551],[92.95772,12.12569],[92.95785,12.12584],[92.95824,12.12592],[92.95805,12.12613],[92.95779,12.1266],[92.95753,12.12666],[92.95761,12.12681],[92.9574,12.12698],[92.9571,12.12718],[92.95673,12.12735],[92.95665,12.12748]]],[[[92.95609,12.13131],[92.95605,12.13119],[92.95586,12.13127],[92.95577,12.13105],[92.95562,12.13104],[92.95558,12.13084],[92.95539,12.13068],[92.95555,12.13059],[92.95547,12.13041],[92.95569,12.13035],[92.95578,12.1302],[92.95597,12.13036],[92.95609,12.1302],[92.95619,12.1303],[92.95628,12.13013],[92.95642,12.13027],[92.95657,12.13015],[92.95668,12.1303],[92.95686,12.13031],[92.95695,12.1302],[92.95706,12.13034],[92.95719,12.13025],[92.95742,12.13051],[92.95754,12.13053],[92.95755,12.13062],[92.95753,12.13078],[92.95743,12.13098],[92.95737,12.13104],[92.95718,12.13108],[92.95701,12.13117],[92.95687,12.13114],[92.95675,12.13124],[92.9566,12.13119],[92.95657,12.13126],[92.95649,12.13124],[92.9563,12.13126],[92.95609,12.13131]]],[[[93.00525,12.1481],[93.0053,12.14893],[93.00549,12.14899],[93.00571,12.14915],[93.0059,12.14932],[93.00595,12.14953],[93.00574,12.14972],[93.0052,12.14979],[93.00496,12.14993],[93.0044,12.15018],[93.00417,12.15],[93.00413,12.14967],[93.00461,12.14929],[93.00507,12.14916],[93.00503,12.14899],[93.00454,12.14836],[93.0047,12.14808],[93.005,12.14794],[93.00525,12.1481]]],[[[92.98779,12.15049],[92.98784,12.15051],[92.9879,12.15055],[92.988,12.15067],[92.98809,12.15081],[92.98811,12.15096],[92.9881,12.15106],[92.98804,12.15117],[92.98795,12.15128],[92.98791,12.15141],[92.98788,12.15188],[92.98782,12.15194],[92.98769,12.15196],[92.9876,12.15189],[92.98747,12.15172],[92.98741,12.15154],[92.98738,12.15128],[92.98739,12.15092],[92.98748,12.15072],[92.98755,12.15059],[92.98764,12.15052],[92.98773,12.15049],[92.98779,12.15049]]],[[[93.00592,12.15276],[93.00564,12.15263],[93.00573,12.15236],[93.00597,12.15226],[93.0065,12.15223],[93.00663,12.15211],[93.00672,12.15193],[93.00677,12.15089],[93.00692,12.15069],[93.00714,12.15058],[93.00739,12.15056],[93.00759,12.15066],[93.00772,12.15087],[93.00776,12.1511],[93.00772,12.15172],[93.00741,12.15205],[93.00728,12.15228],[93.00732,12.1525],[93.007,12.15262],[93.00674,12.15268],[93.00592,12.15276]]],[[[92.9844,12.15426],[92.98456,12.1543],[92.98482,12.15448],[92.98503,12.15472],[92.98526,12.15494],[92.98569,12.15594],[92.9858,12.15614],[92.98584,12.15636],[92.98581,12.15652],[92.98574,12.15666],[92.98559,12.15684],[92.98541,12.15692],[92.98524,12.15689],[92.98501,12.15674],[92.98479,12.15648],[92.98458,12.15619],[92.98408,12.15593],[92.98395,12.15584],[92.98386,12.15575],[92.98376,12.15541],[92.98373,12.15514],[92.98378,12.15484],[92.98387,12.15451],[92.98396,12.15438],[92.98407,12.15429],[92.98425,12.15422],[92.9844,12.15426]]],[[[93.01362,12.15696],[93.01346,12.15718],[93.01305,12.15689],[93.01318,12.15664],[93.01273,12.15621],[93.0125,12.15633],[93.01224,12.15616],[93.01226,12.15565],[93.01249,12.15532],[93.01241,12.15517],[93.0129,12.15449],[93.01335,12.15414],[93.01384,12.15428],[93.01405,12.15449],[93.01405,12.1552],[93.01382,12.15555],[93.01386,12.15583],[93.01427,12.15625],[93.01435,12.15659],[93.01418,12.15691],[93.01399,12.15696],[93.01386,12.15692],[93.01362,12.15696]]],[[[92.99075,12.1584],[92.99055,12.16003],[92.98935,12.16021],[92.98814,12.15881],[92.98849,12.15812],[92.98801,12.15818],[92.98741,12.15753],[92.98611,12.15712],[92.98679,12.15616],[92.98663,12.15292],[92.98704,12.15244],[92.98809,12.15317],[92.9884,12.15293],[92.98849,12.15035],[92.98785,12.14679],[92.98755,12.14655],[92.98653,12.14805],[92.98512,12.14844],[92.98542,12.14881],[92.98734,12.14886],[92.9873,12.1492],[92.98655,12.14948],[92.9865,12.15009],[92.98437,12.14913],[92.98399,12.14933],[92.98635,12.15069],[92.98682,12.15188],[92.98513,12.15163],[92.98466,12.15349],[92.98386,12.15388],[92.98293,12.15066],[92.98192,12.15029],[92.98169,12.15155],[92.982,12.15224],[92.98118,12.15266],[92.98199,12.15402],[92.9817,12.15418],[92.98039,12.15339],[92.98005,12.15458],[92.97941,12.15431],[92.98005,12.15333],[92.97965,12.15272],[92.98013,12.15167],[92.97974,12.1494],[92.97891,12.14938],[92.97888,12.15038],[92.97779,12.1498],[92.97759,12.15023],[92.97732,12.15011],[92.9768,12.14879],[92.97722,12.14734],[92.97588,12.14571],[92.9764,12.14523],[92.97658,12.14428],[92.97592,12.14394],[92.9763,12.14455],[92.97561,12.14597],[92.97689,12.1475],[92.97615,12.14952],[92.97767,12.15187],[92.97697,12.15197],[92.97566,12.15025],[92.97517,12.15022],[92.9754,12.15149],[92.97493,12.15196],[92.97446,12.15164],[92.97407,12.15026],[92.97325,12.14992],[92.97205,12.15027],[92.97199,12.15002],[92.97139,12.15104],[92.97001,12.15098],[92.9692,12.15141],[92.96886,12.15121],[92.96692,12.15164],[92.96482,12.15104],[92.96482,12.15034],[92.96313,12.15153],[92.96152,12.15176],[92.9566,12.14996],[92.95478,12.14817],[92.95382,12.14594],[92.95405,12.13966],[92.95496,12.13804],[92.95507,12.1369],[92.95425,12.13574],[92.95617,12.13343],[92.9562,12.13299],[92.95788,12.13212],[92.95794,12.13119],[92.95824,12.13111],[92.95887,12.12843],[92.95939,12.12765],[92.95832,12.12754],[92.95812,12.12721],[92.95878,12.12629],[92.95981,12.12577],[92.95969,12.12514],[92.9602,12.12443],[92.95999,12.12359],[92.95883,12.12339],[92.95882,12.12297],[92.95996,12.1227],[92.96065,12.12368],[92.96129,12.12197],[92.9619,12.12175],[92.96277,12.12019],[92.96508,12.11802],[92.9684,12.11694],[92.97174,12.11774],[92.97258,12.11744],[92.97333,12.11777],[92.97488,12.1198],[92.97475,12.11912],[92.97351,12.11772],[92.97513,12.11673],[92.9764,12.11691],[92.97797,12.11827],[92.97667,12.11645],[92.97543,12.11577],[92.97499,12.11501],[92.97498,12.11389],[92.97615,12.11299],[92.97842,12.11288],[92.97911,12.1118],[92.97989,12.11136],[92.98169,12.11131],[92.98374,12.11216],[92.98566,12.11245],[92.98924,12.11227],[92.99243,12.11381],[92.99366,12.11275],[92.99486,12.1131],[92.99632,12.11214],[92.99735,12.11228],[92.99722,12.11176],[92.99934,12.11352],[92.99807,12.11136],[92.99972,12.1109],[93.00097,12.11097],[93.00168,12.1112],[93.00257,12.11215],[93.00314,12.11687],[93.00281,12.11791],[93.00213,12.11855],[93.00066,12.118],[92.99835,12.11589],[92.99722,12.11366],[92.99823,12.11613],[93.00101,12.11887],[93.00103,12.12193],[92.99905,12.12332],[92.99721,12.12784],[92.99653,12.12807],[92.99612,12.12905],[92.99495,12.13019],[92.99419,12.13259],[92.99473,12.13393],[92.99317,12.13612],[92.99387,12.13721],[92.99393,12.13879],[92.99291,12.13948],[92.99562,12.14093],[92.99511,12.1415],[92.99505,12.14238],[92.99554,12.14281],[92.99548,12.14451],[92.99497,12.145],[92.99499,12.14587],[92.99741,12.14554],[92.99784,12.14595],[92.99601,12.14689],[92.99721,12.14784],[92.99721,12.14823],[92.99651,12.14818],[92.99586,12.14874],[92.99552,12.15273],[92.99471,12.15624],[92.9941,12.15617],[92.99347,12.15519],[92.99424,12.15296],[92.99436,12.15081],[92.99396,12.14704],[92.99344,12.14536],[92.9929,12.14514],[92.99342,12.14689],[92.99328,12.14889],[92.99277,12.14835],[92.9925,12.14587],[92.9921,12.14537],[92.99185,12.14562],[92.99164,12.14864],[92.99251,12.14993],[92.99244,12.1507],[92.99101,12.14983],[92.99059,12.14828],[92.99024,12.14869],[92.99037,12.1497],[92.98975,12.14928],[92.9895,12.14949],[92.98975,12.15033],[92.98941,12.15166],[92.99115,12.15064],[92.99218,12.15152],[92.99179,12.15218],[92.9906,12.15185],[92.99034,12.15227],[92.9905,12.1531],[92.99194,12.15388],[92.99171,12.15562],[92.99086,12.15549],[92.98982,12.1537],[92.98934,12.1535],[92.98819,12.15603],[92.98957,12.15761],[92.98929,12.15839],[92.98991,12.15813],[92.98943,12.15657],[92.99075,12.1584]]],[[[93.01304,12.1576],[93.01322,12.15777],[93.01322,12.158],[93.01316,12.15827],[93.0128,12.15866],[93.01252,12.15876],[93.01217,12.15874],[93.012,12.15841],[93.01217,12.15792],[93.01245,12.15765],[93.01276,12.15758],[93.01304,12.1576]]],[[[93.12495,12.1521],[93.12473,12.15236],[93.1244,12.1524],[93.12418,12.15306],[93.12333,12.15297],[93.12327,12.15257],[93.12284,12.15222],[93.12284,12.1525],[93.12221,12.15239],[93.11982,12.15159],[93.11972,12.15134],[93.12017,12.15113],[93.12034,12.15131],[93.12066,12.15118],[93.12082,12.15135],[93.12112,12.15127],[93.12144,12.15151],[93.12161,12.15137],[93.12091,12.15102],[93.11958,12.15097],[93.11877,12.15075],[93.11863,12.15107],[93.11823,12.15084],[93.11766,12.15082],[93.1177,12.15062],[93.11726,12.15045],[93.11709,12.15009],[93.1164,12.15005],[93.11526,12.14948],[93.11479,12.14871],[93.11483,12.14716],[93.11379,12.14705],[93.11325,12.14626],[93.11285,12.1461],[93.11276,12.14572],[93.1125,12.14556],[93.11203,12.14561],[93.11177,12.14626],[93.11135,12.1467],[93.1111,12.14667],[93.11055,12.14579],[93.1094,12.14579],[93.10856,12.14495],[93.10851,12.14332],[93.10835,12.14293],[93.10865,12.14218],[93.10821,12.14029],[93.10844,12.13876],[93.1087,12.13846],[93.1099,12.13835],[93.11056,12.1379],[93.11045,12.1352],[93.1099,12.13449],[93.10962,12.13331],[93.10983,12.1323],[93.11152,12.12978],[93.11242,12.12925],[93.11433,12.12902],[93.11463,12.12875],[93.11503,12.12884],[93.11516,12.12924],[93.11668,12.12909],[93.11716,12.12933],[93.11766,12.12994],[93.11791,12.13066],[93.11828,12.13185],[93.11819,12.13253],[93.11846,12.13282],[93.11881,12.13293],[93.11905,12.13375],[93.11966,12.13381],[93.11963,12.13408],[93.11992,12.13403],[93.11988,12.13432],[93.12012,12.1345],[93.11976,12.13472],[93.11948,12.13451],[93.11953,12.13439],[93.11916,12.13438],[93.12108,12.13629],[93.12118,12.13681],[93.12188,12.13687],[93.12183,12.13709],[93.12215,12.13717],[93.12195,12.13749],[93.12207,12.1376],[93.1218,12.1378],[93.12124,12.13708],[93.1214,12.13756],[93.12085,12.13786],[93.12171,12.13879],[93.12208,12.13783],[93.12243,12.13795],[93.12288,12.13838],[93.12337,12.13952],[93.12345,12.14097],[93.12332,12.1414],[93.12301,12.14164],[93.12223,12.14098],[93.1223,12.14087],[93.12201,12.14106],[93.1219,12.14122],[93.12206,12.14139],[93.12181,12.14184],[93.12186,12.14271],[93.12158,12.14326],[93.12169,12.14349],[93.12135,12.14382],[93.12206,12.14452],[93.12239,12.14448],[93.12252,12.14466],[93.12245,12.14498],[93.12263,12.14489],[93.12303,12.14535],[93.12319,12.14622],[93.12345,12.14652],[93.12406,12.1465],[93.12396,12.14734],[93.12366,12.14763],[93.12341,12.14703],[93.12366,12.14875],[93.12361,12.15012],[93.12372,12.15069],[93.12393,12.15005],[93.12442,12.15016],[93.12447,12.15085],[93.12398,12.15112],[93.1248,12.15145],[93.12495,12.1521]]],[[[93.01533,12.16394],[93.0155,12.16402],[93.01562,12.16415],[93.01571,12.16431],[93.01575,12.16441],[93.01576,12.16458],[93.01572,12.1647],[93.01569,12.16477],[93.0156,12.16483],[93.01553,12.16485],[93.01544,12.16485],[93.01533,12.16482],[93.01522,12.16477],[93.01511,12.16471],[93.01504,12.16466],[93.01499,12.16459],[93.01495,12.16447],[93.01491,12.16422],[93.01493,12.16413],[93.01505,12.164],[93.01516,12.16395],[93.01533,12.16394]]],[[[93.02843,12.16659],[93.02756,12.16786],[93.02421,12.16793],[93.02389,12.16695],[93.0196,12.16764],[93.02107,12.1665],[93.02285,12.16655],[93.0225,12.16446],[93.02127,12.163],[93.01745,12.16287],[93.01849,12.16223],[93.01843,12.16068],[93.02,12.16075],[93.02028,12.15985],[93.01868,12.15815],[93.01704,12.16105],[93.01504,12.15811],[93.01623,12.15557],[93.01465,12.15414],[93.01147,12.15366],[93.01113,12.15513],[93.01044,12.15412],[93.0086,12.15653],[93.00727,12.15623],[93.00924,12.15465],[93.01018,12.15228],[93.0081,12.1532],[93.00848,12.15103],[93.00784,12.14966],[93.00556,12.14751],[93.00394,12.14776],[93.00396,12.14689],[93.00308,12.14652],[93.00351,12.14572],[93.00239,12.14491],[93.00327,12.14328],[93.00477,12.14482],[93.00452,12.14565],[93.00543,12.14606],[93.0047,12.14279],[93.00348,12.14097],[93.0025,12.14285],[93.00149,12.14233],[93.00186,12.13834],[93.00033,12.13479],[93.00176,12.1255],[93.0003,12.12714],[93.00072,12.12817],[93.00007,12.1293],[93.0008,12.1306],[93.0,12.13161],[93.00044,12.13641],[92.99968,12.13724],[92.99968,12.14028],[92.99898,12.14033],[92.99869,12.13893],[92.99722,12.1385],[92.99609,12.1393],[92.99817,12.13709],[92.9956,12.13683],[92.99722,12.1363],[92.99765,12.13436],[92.99542,12.13412],[92.99663,12.13213],[92.99535,12.13167],[92.99728,12.12943],[92.99987,12.12409],[93.00261,12.12117],[93.00221,12.11966],[93.00379,12.11748],[93.00281,12.11202],[92.99956,12.10976],[93.00595,12.10808],[93.00578,12.10687],[93.00654,12.10689],[93.00611,12.10575],[93.00719,12.10499],[93.0074,12.0985],[93.00565,12.09268],[93.00591,12.08793],[93.00458,12.0829],[93.00507,12.07676],[93.01044,12.07021],[93.01282,12.06932],[93.01668,12.06943],[93.01645,12.0668],[93.01716,12.06605],[93.01919,12.06865],[93.02037,12.06905],[93.02196,12.06847],[93.02077,12.06658],[93.02114,12.06573],[93.02324,12.06572],[93.02523,12.06751],[93.02532,12.06396],[93.0274,12.0624],[93.02817,12.06513],[93.02894,12.06457],[93.02983,12.06151],[93.03133,12.06023],[93.03076,12.05846],[93.03467,12.05371],[93.03671,12.04713],[93.03857,12.04389],[93.03986,12.0425],[93.04344,12.04264],[93.04611,12.04318],[93.04806,12.04464],[93.05119,12.04933],[93.05181,12.05268],[93.0532,12.05378],[93.05295,12.05525],[93.0536,12.05583],[93.05304,12.05794],[93.05527,12.06172],[93.05454,12.0698],[93.0538,12.07036],[93.05204,12.06939],[93.05147,12.07091],[93.05329,12.07056],[93.0541,12.07113],[93.05375,12.07201],[93.05064,12.07226],[93.05056,12.07471],[93.05106,12.07558],[93.053,12.07399],[93.05382,12.0742],[93.054,12.07658],[93.05249,12.08079],[93.0511,12.08134],[93.05066,12.08241],[93.04928,12.08266],[93.04708,12.08585],[93.0445,12.08738],[93.03739,12.0964],[93.03581,12.09687],[93.03561,12.0991],[93.03382,12.09962],[93.03441,12.1006],[93.03313,12.10205],[93.0332,12.10353],[93.03216,12.10531],[93.03349,12.10545],[93.03171,12.11076],[93.03167,12.11584],[93.03279,12.12086],[93.03545,12.12383],[93.03545,12.12586],[93.03177,12.1276],[93.03047,12.13013],[93.02908,12.13618],[93.02374,12.14147],[93.02402,12.14205],[93.02605,12.14149],[93.02778,12.14299],[93.02601,12.14805],[93.02705,12.15115],[93.0264,12.15296],[93.02689,12.15672],[93.02869,12.16272],[93.02792,12.16502],[93.02843,12.16659]]],[[[92.69627,12.23893],[92.69315,12.23901],[92.68767,12.23499],[92.68753,12.22919],[92.68554,12.22759],[92.68361,12.22097],[92.68614,12.21382],[92.68319,12.20617],[92.6824,12.21253],[92.6796,12.21375],[92.67825,12.21203],[92.67736,12.19687],[92.68175,12.19396],[92.68103,12.19176],[92.67994,12.19454],[92.67797,12.19513],[92.67579,12.18704],[92.67434,12.19916],[92.67614,12.20381],[92.67663,12.21539],[92.67395,12.21779],[92.66846,12.20543],[92.66438,12.20233],[92.65663,12.18076],[92.65285,12.18109],[92.66434,12.2162],[92.66705,12.21863],[92.66412,12.22185],[92.66039,12.21494],[92.65033,12.18784],[92.64454,12.1786],[92.63936,12.15453],[92.63355,12.1407],[92.63048,12.12278],[92.63452,12.12032],[92.62965,12.11956],[92.63094,12.11624],[92.62861,12.11621],[92.62719,12.11424],[92.62205,12.10139],[92.61871,12.06829],[92.6194,12.06327],[92.62492,12.05946],[92.6217,12.05167],[92.62207,12.04852],[92.62549,12.0469],[92.62816,12.043],[92.62397,12.03989],[92.62038,12.03972],[92.62181,12.03644],[92.62036,12.03152],[92.62411,12.02812],[92.62098,12.02486],[92.61725,12.02403],[92.61585,12.01205],[92.61181,11.9999],[92.61323,11.99476],[92.61554,11.99293],[92.61228,11.9918],[92.61104,11.98753],[92.61076,11.96008],[92.60792,11.95794],[92.60563,11.95915],[92.60495,11.95821],[92.60673,11.95437],[92.60846,11.9554],[92.60704,11.94892],[92.61037,11.94378],[92.60762,11.9298],[92.59948,11.9231],[92.59777,11.91832],[92.59356,11.92121],[92.59263,11.91849],[92.59409,11.90628],[92.59489,11.90476],[92.59685,11.90569],[92.59867,11.9045],[92.59997,11.90631],[92.59837,11.90622],[92.59813,11.9078],[92.59962,11.90964],[92.59711,11.91083],[92.59952,11.91215],[92.60128,11.90991],[92.60784,11.91458],[92.60901,11.92433],[92.61249,11.92558],[92.61323,11.92439],[92.61586,11.92852],[92.61517,11.9376],[92.61624,11.92883],[92.61319,11.92403],[92.61234,11.92525],[92.60901,11.92394],[92.60797,11.92061],[92.61659,11.92126],[92.62035,11.93108],[92.61816,11.92348],[92.61978,11.92183],[92.61751,11.92319],[92.61696,11.92121],[92.60981,11.92002],[92.60819,11.91414],[92.60629,11.91353],[92.609,11.91183],[92.61068,11.91462],[92.60961,11.90896],[92.60843,11.90967],[92.60769,11.90774],[92.60941,11.90472],[92.60831,11.8953],[92.60922,11.88636],[92.60627,11.88119],[92.60446,11.88169],[92.60315,11.88865],[92.6003,11.87891],[92.60137,11.87518],[92.60553,11.8795],[92.60345,11.87763],[92.59965,11.86731],[92.60367,11.86408],[92.6075,11.86718],[92.60317,11.86322],[92.60474,11.85964],[92.61165,11.85527],[92.60508,11.8586],[92.60696,11.85655],[92.60527,11.8525],[92.60891,11.85019],[92.61026,11.84731],[92.60478,11.85286],[92.60656,11.85671],[92.60271,11.85806],[92.59886,11.86724],[92.60081,11.87329],[92.59924,11.87931],[92.60097,11.88564],[92.59973,11.88951],[92.60051,11.89824],[92.5968,11.90058],[92.59822,11.89763],[92.59734,11.89636],[92.59282,11.90204],[92.59158,11.88368],[92.58767,11.88124],[92.58687,11.87649],[92.58717,11.88124],[92.59092,11.88346],[92.59136,11.8864],[92.58634,11.88639],[92.58309,11.87806],[92.58585,11.87622],[92.58419,11.87429],[92.58546,11.87627],[92.58287,11.87701],[92.58584,11.88403],[92.5837,11.89283],[92.58433,11.89744],[92.58656,11.89879],[92.58527,11.90033],[92.58416,11.89874],[92.58478,11.90457],[92.58251,11.90301],[92.58124,11.9058],[92.58472,11.9084],[92.5853,11.9121],[92.58183,11.91328],[92.58259,11.91838],[92.58106,11.91952],[92.57956,11.91754],[92.57435,11.91792],[92.57747,11.91746],[92.58088,11.92142],[92.58054,11.93137],[92.5794,11.93],[92.57779,11.93091],[92.57496,11.92877],[92.57181,11.92893],[92.57271,11.93158],[92.57108,11.9311],[92.57159,11.9343],[92.57045,11.93322],[92.57009,11.93476],[92.57153,11.93493],[92.57212,11.93855],[92.56937,11.94071],[92.5706,11.94173],[92.56919,11.95051],[92.56407,11.95081],[92.56241,11.94798],[92.56606,11.94628],[92.56778,11.94097],[92.56486,11.94501],[92.56143,11.94675],[92.55705,11.93795],[92.55102,11.93292],[92.55165,11.93003],[92.54987,11.92983],[92.54952,11.92789],[92.54637,11.93123],[92.54341,11.93214],[92.54026,11.93102],[92.54031,11.92859],[92.54392,11.92613],[92.53948,11.92319],[92.53864,11.91936],[92.54086,11.91762],[92.53602,11.91932],[92.53275,11.91312],[92.53423,11.90593],[92.53855,11.9035],[92.53413,11.90445],[92.53493,11.90033],[92.53223,11.90364],[92.53138,11.89952],[92.53073,11.90235],[92.52971,11.90306],[92.5291,11.90154],[92.52574,11.90404],[92.52244,11.90233],[92.52024,11.89862],[92.52147,11.89241],[92.5187,11.8931],[92.51775,11.89098],[92.51872,11.88735],[92.52071,11.88627],[92.519,11.88356],[92.52236,11.88007],[92.5246,11.88138],[92.52257,11.87834],[92.52241,11.87447],[92.52756,11.87249],[92.52632,11.8715],[92.52372,11.87345],[92.5241,11.87147],[92.52008,11.87665],[92.51754,11.87678],[92.51398,11.87241],[92.51248,11.86793],[92.51366,11.86735],[92.51167,11.86693],[92.51161,11.86435],[92.51396,11.86177],[92.51829,11.86109],[92.52039,11.85622],[92.51925,11.85619],[92.51827,11.86053],[92.51648,11.86107],[92.5154,11.86069],[92.51631,11.85938],[92.51468,11.86084],[92.51208,11.86025],[92.51066,11.85684],[92.50817,11.85632],[92.50821,11.85442],[92.51028,11.8538],[92.50688,11.84947],[92.5075,11.8415],[92.50982,11.8446],[92.512,11.84383],[92.51294,11.84121],[92.51672,11.84169],[92.52013,11.83967],[92.51941,11.83738],[92.51966,11.83906],[92.51645,11.84084],[92.50703,11.83522],[92.50658,11.82889],[92.50924,11.82881],[92.5069,11.82829],[92.50567,11.82452],[92.50807,11.82403],[92.50611,11.82341],[92.50993,11.8112],[92.51239,11.81538],[92.51458,11.81558],[92.51215,11.81227],[92.51455,11.80704],[92.51855,11.80665],[92.52056,11.81058],[92.52382,11.80737],[92.52623,11.81088],[92.52647,11.819],[92.52804,11.8217],[92.52724,11.82572],[92.52989,11.82902],[92.52912,11.83023],[92.53103,11.83387],[92.53279,11.83364],[92.53765,11.8403],[92.54237,11.83669],[92.54353,11.83315],[92.54176,11.83115],[92.54298,11.82873],[92.54609,11.83598],[92.5441,11.84161],[92.54502,11.84334],[92.54674,11.82944],[92.53901,11.8236],[92.53584,11.81317],[92.53141,11.80746],[92.53199,11.80581],[92.53331,11.80693],[92.53507,11.80283],[92.5384,11.80722],[92.53757,11.80358],[92.53923,11.80109],[92.54148,11.80667],[92.54537,11.80675],[92.54857,11.80891],[92.54845,11.81029],[92.54956,11.80975],[92.54275,11.80545],[92.54284,11.80135],[92.53853,11.79918],[92.5365,11.80166],[92.53523,11.79812],[92.53427,11.80141],[92.53237,11.7998],[92.53289,11.796],[92.52941,11.795],[92.53218,11.79024],[92.53765,11.79268],[92.5393,11.79032],[92.53943,11.78531],[92.54072,11.78554],[92.54054,11.78912],[92.54337,11.78833],[92.54205,11.79284],[92.54697,11.80106],[92.54958,11.80223],[92.55034,11.78099],[92.54907,11.77935],[92.55145,11.77775],[92.55022,11.77469],[92.55172,11.77215],[92.55604,11.77085],[92.55865,11.77265],[92.55063,11.76372],[92.55165,11.76076],[92.55017,11.75859],[92.5516,11.74981],[92.55061,11.74543],[92.55259,11.74124],[92.54981,11.73746],[92.55011,11.73024],[92.55211,11.72559],[92.55016,11.71951],[92.55339,11.7145],[92.55198,11.71217],[92.55447,11.71082],[92.55338,11.7076],[92.55611,11.7063],[92.55828,11.69892],[92.55805,11.6923],[92.56449,11.69132],[92.56837,11.69687],[92.57099,11.69681],[92.5743,11.71548],[92.58133,11.71618],[92.58492,11.71341],[92.58186,11.71738],[92.58524,11.71497],[92.58687,11.72704],[92.58913,11.72934],[92.59129,11.73828],[92.59101,11.73287],[92.58719,11.72575],[92.58666,11.71666],[92.59387,11.70957],[92.5983,11.71003],[92.60378,11.70702],[92.59765,11.70958],[92.58968,11.70791],[92.59249,11.70775],[92.59225,11.70262],[92.59574,11.69762],[92.59513,11.69427],[92.59897,11.69021],[92.59747,11.68597],[92.59797,11.68093],[92.59611,11.67949],[92.59446,11.67316],[92.59121,11.67241],[92.5902,11.66803],[92.59064,11.66601],[92.59348,11.66578],[92.59746,11.65665],[92.59944,11.65717],[92.59706,11.65231],[92.5977,11.64909],[92.60713,11.63963],[92.60809,11.63238],[92.60899,11.63427],[92.61229,11.63513],[92.6202,11.63297],[92.62611,11.62802],[92.63041,11.6283],[92.63203,11.64015],[92.6295,11.64964],[92.63039,11.65188],[92.63249,11.64956],[92.63436,11.6502],[92.63711,11.64581],[92.63395,11.64014],[92.63406,11.63309],[92.636,11.63221],[92.63747,11.63405],[92.6376,11.63194],[92.63905,11.63161],[92.6382,11.63637],[92.64145,11.63964],[92.6447,11.63527],[92.64307,11.6247],[92.64081,11.62051],[92.63491,11.61547],[92.62923,11.61708],[92.6291,11.62595],[92.62701,11.62644],[92.62387,11.61783],[92.62179,11.61872],[92.62179,11.62089],[92.62046,11.61913],[92.61704,11.62159],[92.60857,11.62104],[92.60845,11.61579],[92.60533,11.61026],[92.60184,11.60865],[92.60279,11.60399],[92.6074,11.60086],[92.60445,11.59319],[92.60839,11.5933],[92.61369,11.58753],[92.61706,11.58645],[92.61879,11.58259],[92.61939,11.57184],[92.61648,11.56344],[92.62017,11.56125],[92.62687,11.57141],[92.63114,11.5744],[92.6324,11.58079],[92.63713,11.57744],[92.63694,11.57506],[92.64625,11.5724],[92.64129,11.55953],[92.64845,11.54977],[92.64776,11.54644],[92.6428,11.54009],[92.6452,11.52253],[92.64942,11.51796],[92.65803,11.51272],[92.6675,11.50183],[92.6785,11.50431],[92.68223,11.50676],[92.67957,11.50933],[92.68174,11.50903],[92.68376,11.51131],[92.68692,11.50651],[92.6899,11.50619],[92.69248,11.50376],[92.69691,11.50578],[92.69531,11.49919],[92.69686,11.49606],[92.69921,11.4966],[92.69872,11.4945],[92.70379,11.49344],[92.70759,11.48946],[92.70533,11.485],[92.71023,11.47738],[92.7108,11.48756],[92.71558,11.4944],[92.71609,11.50293],[92.71896,11.50381],[92.71842,11.50572],[92.72231,11.51097],[92.72198,11.5132],[92.72664,11.51683],[92.72291,11.53027],[92.726,11.5366],[92.73109,11.54227],[92.73059,11.54592],[92.73393,11.55285],[92.73344,11.5562],[92.73103,11.55548],[92.72967,11.5582],[92.73331,11.56087],[92.73302,11.56472],[92.73623,11.56397],[92.73899,11.5678],[92.73975,11.57454],[92.73717,11.57944],[92.73907,11.57755],[92.74142,11.57876],[92.74368,11.58985],[92.74194,11.58997],[92.74134,11.59352],[92.74878,11.60198],[92.7492,11.60703],[92.75428,11.61416],[92.75108,11.62015],[92.75231,11.62109],[92.75114,11.62415],[92.75136,11.62756],[92.75261,11.62746],[92.75185,11.63269],[92.74829,11.63748],[92.74827,11.64003],[92.74015,11.64098],[92.73919,11.63853],[92.73772,11.63872],[92.73914,11.63917],[92.73903,11.64149],[92.74644,11.6405],[92.74707,11.64399],[92.75152,11.64373],[92.75485,11.6464],[92.75673,11.65115],[92.7552,11.65322],[92.75685,11.65582],[92.753,11.65802],[92.75599,11.66505],[92.75205,11.66842],[92.74724,11.66844],[92.74893,11.67418],[92.74723,11.67666],[92.7428,11.67598],[92.73541,11.6778],[92.73495,11.6732],[92.73185,11.67199],[92.72985,11.67405],[92.73084,11.68143],[92.72682,11.6813],[92.72282,11.68375],[92.71438,11.67844],[92.7141,11.67592],[92.7177,11.66984],[92.71602,11.66424],[92.72066,11.66184],[92.72747,11.66095],[92.72821,11.65822],[92.7189,11.65302],[92.70921,11.65238],[92.7084,11.65115],[92.71131,11.64438],[92.71014,11.64331],[92.70599,11.64379],[92.70499,11.64864],[92.7005,11.65446],[92.69407,11.65287],[92.69512,11.64947],[92.69887,11.64813],[92.69895,11.64237],[92.70176,11.63913],[92.69957,11.64082],[92.6971,11.63807],[92.69324,11.63889],[92.69171,11.63353],[92.694,11.62898],[92.69371,11.62478],[92.69615,11.61735],[92.70163,11.61773],[92.69615,11.61676],[92.69624,11.61488],[92.6928,11.6111],[92.69698,11.60749],[92.69504,11.60664],[92.69256,11.60866],[92.69064,11.60693],[92.69106,11.60459],[92.68987,11.6061],[92.6864,11.60299],[92.6845,11.60317],[92.68696,11.60589],[92.68771,11.61136],[92.68974,11.613],[92.69203,11.61153],[92.69426,11.61502],[92.68929,11.61451],[92.69495,11.61643],[92.69065,11.62743],[92.68842,11.6285],[92.68779,11.62743],[92.69219,11.62269],[92.69093,11.62061],[92.68802,11.62292],[92.68882,11.6174],[92.68437,11.62011],[92.6826,11.6196],[92.67936,11.61521],[92.6795,11.61319],[92.67295,11.60737],[92.67203,11.6092],[92.67353,11.60773],[92.67609,11.61196],[92.67927,11.61329],[92.68174,11.61934],[92.68489,11.62025],[92.68837,11.61814],[92.6872,11.62331],[92.68852,11.62422],[92.6912,11.62247],[92.68658,11.62822],[92.68498,11.62878],[92.68412,11.62613],[92.68405,11.63329],[92.68113,11.63808],[92.68019,11.63564],[92.68355,11.63421],[92.68284,11.63062],[92.68062,11.62768],[92.68122,11.63271],[92.67929,11.63514],[92.67892,11.62951],[92.67649,11.62858],[92.67369,11.62399],[92.66712,11.63662],[92.66809,11.64082],[92.66439,11.64674],[92.66512,11.65258],[92.66014,11.65223],[92.66669,11.65481],[92.68264,11.65072],[92.68449,11.65374],[92.68331,11.65487],[92.68562,11.65595],[92.68313,11.65927],[92.68543,11.66298],[92.69125,11.66442],[92.69159,11.66811],[92.69773,11.66554],[92.69892,11.66686],[92.70212,11.6666],[92.70772,11.67051],[92.70743,11.67218],[92.70262,11.67216],[92.69984,11.67521],[92.70346,11.68232],[92.7009,11.6919],[92.70148,11.69596],[92.70568,11.70006],[92.69452,11.69951],[92.69207,11.69796],[92.69238,11.69563],[92.69123,11.69575],[92.69176,11.69753],[92.69015,11.69737],[92.6886,11.69264],[92.68627,11.69221],[92.68962,11.69518],[92.68919,11.69722],[92.68491,11.699],[92.68795,11.70715],[92.68468,11.70892],[92.68438,11.71214],[92.6818,11.71304],[92.68222,11.7141],[92.68529,11.71272],[92.6852,11.70921],[92.68903,11.70726],[92.68673,11.70245],[92.68997,11.69774],[92.6962,11.70205],[92.69132,11.7115],[92.69412,11.71741],[92.69645,11.71888],[92.6919,11.71107],[92.69732,11.70222],[92.70379,11.70246],[92.70056,11.70596],[92.70088,11.70868],[92.69619,11.71131],[92.69603,11.71258],[92.70047,11.71051],[92.70687,11.70309],[92.7066,11.69927],[92.71095,11.69325],[92.71386,11.69777],[92.71362,11.70431],[92.71655,11.70542],[92.71847,11.70432],[92.72085,11.69727],[92.72598,11.69765],[92.72741,11.69418],[92.72847,11.6979],[92.73003,11.69853],[92.73775,11.69003],[92.74472,11.69044],[92.74463,11.70142],[92.74202,11.70798],[92.74341,11.71154],[92.74631,11.71107],[92.75,11.7038],[92.75352,11.70004],[92.75445,11.70065],[92.75687,11.70712],[92.75681,11.71126],[92.75408,11.71708],[92.75604,11.7198],[92.75515,11.72514],[92.75784,11.7285],[92.75823,11.73685],[92.76109,11.73958],[92.76052,11.74537],[92.76446,11.75074],[92.76365,11.76764],[92.76766,11.7728],[92.76592,11.77934],[92.77021,11.78562],[92.76855,11.79928],[92.77009,11.80043],[92.76964,11.80271],[92.77382,11.81247],[92.77497,11.82479],[92.77716,11.82771],[92.77539,11.83433],[92.77987,11.844],[92.77952,11.84964],[92.78083,11.85127],[92.78326,11.85058],[92.78481,11.85402],[92.78472,11.85654],[92.78251,11.85742],[92.78626,11.87258],[92.78474,11.87487],[92.78598,11.87714],[92.78512,11.88184],[92.78998,11.88545],[92.78496,11.88539],[92.77914,11.89163],[92.78005,11.89641],[92.78654,11.89971],[92.78764,11.90188],[92.78302,11.90474],[92.78788,11.91953],[92.78621,11.92304],[92.78713,11.92605],[92.78394,11.92751],[92.78182,11.93089],[92.78276,11.93374],[92.78468,11.93457],[92.78299,11.93692],[92.77902,11.93654],[92.77064,11.93955],[92.77008,11.93836],[92.76966,11.94017],[92.7659,11.93884],[92.76311,11.94081],[92.75995,11.93602],[92.75796,11.93704],[92.75,11.93125],[92.75,11.93656],[92.74853,11.93353],[92.74333,11.93119],[92.74087,11.92544],[92.74216,11.92009],[92.74421,11.92072],[92.74463,11.91936],[92.74371,11.92051],[92.74197,11.91961],[92.74075,11.92267],[92.73577,11.91634],[92.73135,11.90475],[92.7301,11.89874],[92.73546,11.89838],[92.73567,11.8965],[92.73709,11.89757],[92.73556,11.89616],[92.73489,11.89813],[92.72997,11.89737],[92.73095,11.89308],[92.72987,11.88107],[92.73175,11.88007],[92.73421,11.88324],[92.73602,11.8841],[92.73675,11.88301],[92.73452,11.88298],[92.73195,11.87905],[92.73038,11.87919],[92.7316,11.87508],[92.73293,11.87513],[92.73153,11.87464],[92.73096,11.8763],[92.72962,11.87192],[92.72846,11.86101],[92.73025,11.85757],[92.72965,11.85478],[92.72559,11.84928],[92.72389,11.84156],[92.71828,11.83185],[92.71774,11.82627],[92.71102,11.81885],[92.71031,11.81614],[92.71217,11.81238],[92.71007,11.81599],[92.70513,11.8132],[92.70513,11.81167],[92.70053,11.81198],[92.70082,11.80957],[92.70212,11.81062],[92.70362,11.80938],[92.69961,11.80963],[92.70425,11.80196],[92.70547,11.80227],[92.70516,11.80494],[92.70517,11.80105],[92.70828,11.79974],[92.7058,11.79269],[92.70803,11.79952],[92.70502,11.80005],[92.70199,11.80523],[92.70062,11.8049],[92.69891,11.80751],[92.69934,11.81127],[92.6975,11.81251],[92.68904,11.80516],[92.68416,11.80451],[92.68223,11.80252],[92.67707,11.78308],[92.67773,11.77755],[92.67626,11.77908],[92.67653,11.78317],[92.67389,11.78432],[92.67238,11.78277],[92.67412,11.78491],[92.67677,11.78356],[92.67781,11.79185],[92.67595,11.79189],[92.67454,11.79803],[92.67002,11.79804],[92.67454,11.79856],[92.67637,11.79189],[92.6775,11.79197],[92.68074,11.80389],[92.6821,11.8055],[92.68879,11.80664],[92.69232,11.81098],[92.69192,11.81367],[92.68818,11.81438],[92.68589,11.81294],[92.68717,11.81448],[92.67447,11.8209],[92.66404,11.81938],[92.6664,11.8225],[92.66252,11.82231],[92.65924,11.8261],[92.66055,11.82858],[92.65454,11.83332],[92.65553,11.83493],[92.65542,11.83264],[92.66073,11.82883],[92.65952,11.82616],[92.6628,11.82258],[92.66698,11.82311],[92.66461,11.81972],[92.67438,11.82143],[92.6899,11.81616],[92.6952,11.81291],[92.69507,11.81556],[92.69156,11.81769],[92.6957,11.82122],[92.69417,11.82266],[92.69616,11.82112],[92.69745,11.8226],[92.69918,11.82667],[92.69761,11.8273],[92.69783,11.83003],[92.69819,11.82707],[92.69996,11.82963],[92.70076,11.8287],[92.69724,11.82099],[92.69218,11.81834],[92.6928,11.81726],[92.70132,11.81421],[92.70969,11.82039],[92.71407,11.82893],[92.71379,11.83584],[92.71568,11.83327],[92.72032,11.84797],[92.72206,11.84929],[92.72526,11.86248],[92.7225,11.87714],[92.71558,11.8725],[92.71366,11.86877],[92.70931,11.86906],[92.71146,11.86734],[92.71049,11.863],[92.70787,11.86216],[92.70638,11.86444],[92.7084,11.86262],[92.71036,11.86329],[92.71112,11.86692],[92.70867,11.86815],[92.71033,11.8705],[92.70981,11.87283],[92.71234,11.86888],[92.71846,11.87689],[92.7209,11.87743],[92.72099,11.87961],[92.72222,11.87893],[92.72421,11.89118],[92.72022,11.89081],[92.71696,11.88831],[92.71367,11.88906],[92.71734,11.88881],[92.71981,11.89099],[92.71348,11.89342],[92.71276,11.89764],[92.71024,11.89583],[92.70707,11.90042],[92.70569,11.89911],[92.7039,11.90076],[92.70557,11.89946],[92.70716,11.90087],[92.70987,11.89652],[92.71335,11.89787],[92.71368,11.89437],[92.71819,11.8921],[92.72158,11.89235],[92.72507,11.89726],[92.72362,11.90277],[92.71802,11.90086],[92.71662,11.90231],[92.71805,11.9017],[92.72249,11.90483],[92.72407,11.90917],[92.72218,11.91823],[92.72395,11.92486],[92.72301,11.93144],[92.71932,11.93499],[92.71602,11.93457],[92.71337,11.92437],[92.71412,11.92192],[92.71097,11.92595],[92.71343,11.92519],[92.71378,11.9314],[92.71276,11.93419],[92.71049,11.93308],[92.7143,11.93769],[92.71717,11.93883],[92.71523,11.9459],[92.71736,11.94914],[92.71427,11.95189],[92.71282,11.95099],[92.71235,11.95399],[92.71451,11.95204],[92.71794,11.95826],[92.71634,11.96336],[92.71708,11.96598],[92.71523,11.96715],[92.7176,11.96623],[92.71729,11.96336],[92.7188,11.96267],[92.71957,11.96443],[92.72135,11.96283],[92.72417,11.96496],[92.72361,11.96736],[92.728,11.97016],[92.73059,11.96851],[92.73157,11.97107],[92.72877,11.97627],[92.72336,11.97469],[92.72243,11.97626],[92.72395,11.97817],[92.72188,11.98112],[92.72575,11.98236],[92.7284,11.99268],[92.73007,11.99388],[92.72518,11.99197],[92.72282,11.99371],[92.72289,11.98804],[92.72189,11.99308],[92.72574,11.99243],[92.7305,11.99971],[92.73162,11.99833],[92.74024,11.99766],[92.74357,11.9943],[92.74495,11.99682],[92.74395,11.99973],[92.74647,11.99631],[92.75,11.99675],[92.75,11.99546],[92.75278,11.9966],[92.75994,11.99465],[92.76394,11.98656],[92.76684,11.98983],[92.76576,11.99388],[92.77044,11.9977],[92.77041,11.99955],[92.76587,12.00378],[92.76622,12.01214],[92.7577,12.0088],[92.75564,12.00314],[92.75147,12.00321],[92.75059,12.01274],[92.75191,12.01516],[92.74925,12.01913],[92.74724,12.01693],[92.74217,12.01679],[92.73834,12.01073],[92.73687,12.01405],[92.73435,12.01545],[92.73333,12.01307],[92.73259,12.01438],[92.73847,12.01633],[92.73923,12.01886],[92.73132,12.01834],[92.73173,12.02314],[92.7285,12.02417],[92.72737,12.02307],[92.72577,12.02497],[92.72741,12.02253],[92.72514,12.02326],[92.72602,12.02543],[92.72731,12.02372],[92.73857,12.02426],[92.74001,12.02861],[92.73196,12.03022],[92.73575,12.03097],[92.73658,12.03402],[92.73328,12.03355],[92.73308,12.03571],[92.73061,12.03674],[92.72807,12.03549],[92.72839,12.03819],[92.73022,12.03919],[92.72734,12.05433],[92.72573,12.05446],[92.72545,12.04885],[92.72111,12.05159],[92.7196,12.04851],[92.71609,12.04982],[92.71535,12.04501],[92.71377,12.04438],[92.71295,12.03924],[92.71029,12.03542],[92.71044,12.03104],[92.70958,12.03392],[92.71247,12.03918],[92.71331,12.04473],[92.71501,12.04572],[92.71505,12.05168],[92.71335,12.05153],[92.71317,12.04793],[92.71099,12.05016],[92.70921,12.0455],[92.70732,12.04653],[92.70625,12.04406],[92.70074,12.04008],[92.69882,12.04203],[92.69681,12.04021],[92.6966,12.0425],[92.69729,12.04067],[92.69869,12.04247],[92.70067,12.04072],[92.70612,12.04461],[92.70714,12.04711],[92.70931,12.04639],[92.71097,12.05073],[92.71336,12.04902],[92.71244,12.05152],[92.71381,12.05278],[92.71813,12.04939],[92.72063,12.05251],[92.72507,12.04965],[92.7253,12.05739],[92.72746,12.05953],[92.73317,12.06138],[92.73614,12.05497],[92.73816,12.05723],[92.7336,12.06534],[92.73576,12.06698],[92.73599,12.07043],[92.73816,12.07014],[92.73968,12.07195],[92.73693,12.07807],[92.73245,12.0716],[92.73289,12.06838],[92.72962,12.07456],[92.72513,12.07335],[92.72436,12.07206],[92.72768,12.07047],[92.72608,12.07032],[92.72462,12.06474],[92.72276,12.0644],[92.7245,12.0653],[92.72555,12.0709],[92.72725,12.07055],[92.72405,12.07157],[92.72408,12.07288],[92.72815,12.07545],[92.7324,12.07232],[92.73612,12.07878],[92.73455,12.08326],[92.73176,12.08031],[92.73425,12.08367],[92.73396,12.08536],[92.73182,12.08518],[92.73396,12.08592],[92.73411,12.09609],[92.73008,12.09741],[92.73082,12.09473],[92.72541,12.0959],[92.73031,12.09536],[92.729,12.09762],[92.73318,12.09618],[92.73407,12.09729],[92.73575,12.10981],[92.74292,12.12015],[92.74347,12.12734],[92.75191,12.14814],[92.7534,12.15851],[92.75656,12.16316],[92.75498,12.16596],[92.7567,12.17567],[92.75092,12.18061],[92.74751,12.17727],[92.74393,12.1799],[92.7359,12.18213],[92.72825,12.1808],[92.72223,12.17732],[92.71937,12.17972],[92.71031,12.16067],[92.70933,12.16132],[92.71147,12.16771],[92.70857,12.16295],[92.70736,12.15807],[92.70979,12.15371],[92.70924,12.14781],[92.70874,12.15385],[92.70627,12.15826],[92.71192,12.17138],[92.7122,12.1755],[92.70851,12.17056],[92.70655,12.17065],[92.70235,12.16333],[92.7042,12.17884],[92.70904,12.18866],[92.70539,12.18847],[92.70424,12.19025],[92.70378,12.18764],[92.70103,12.18695],[92.70356,12.18848],[92.7036,12.19096],[92.70572,12.189],[92.71186,12.1897],[92.70663,12.19628],[92.70367,12.1928],[92.70829,12.20317],[92.70892,12.21616],[92.70747,12.21744],[92.70631,12.2165],[92.70708,12.22035],[92.70537,12.2212],[92.70526,12.2279],[92.70312,12.23215],[92.70017,12.23329],[92.69873,12.23805],[92.69627,12.23893]],[[92.7208,11.58561],[92.72337,11.58721],[92.72314,11.58993],[92.72516,11.59234],[92.72574,11.60397],[92.73015,11.60173],[92.72789,11.59689],[92.73147,11.59681],[92.73217,11.59458],[92.7353,11.59576],[92.73976,11.59139],[92.73731,11.58968],[92.7352,11.57086],[92.72985,11.56904],[92.73078,11.56741],[92.72957,11.56646],[92.72285,11.56732],[92.72123,11.56944],[92.72149,11.57404],[92.71659,11.57668],[92.71472,11.58438],[92.7208,11.58561]]],[[[93.08231,12.07883],[93.08734,12.08203],[93.08832,12.08497],[93.08877,12.08818],[93.08524,12.09163],[93.08558,12.09264],[93.08619,12.09319],[93.08918,12.08948],[93.09078,12.08901],[93.09329,12.09075],[93.09535,12.091],[93.09708,12.09281],[93.09797,12.09737],[93.09711,12.10187],[93.09852,12.11162],[93.09785,12.11338],[93.09894,12.11941],[93.09842,12.12063],[93.10159,12.12877],[93.10132,12.12964],[93.09715,12.13024],[93.09299,12.12881],[93.09645,12.13048],[93.10069,12.1304],[93.10097,12.13338],[93.09894,12.13878],[93.09658,12.1389],[93.09425,12.1363],[93.09256,12.13216],[93.09025,12.12922],[93.0926,12.12723],[93.09139,12.12398],[93.08928,12.12473],[93.08453,12.11934],[93.0866,12.12271],[93.08856,12.12411],[93.08848,12.12592],[93.08998,12.12682],[93.08721,12.12975],[93.08986,12.13419],[93.09224,12.13631],[93.09382,12.1414],[93.09501,12.14139],[93.09591,12.14261],[93.09731,12.14247],[93.09515,12.15362],[93.09363,12.15447],[93.09072,12.15323],[93.08906,12.15404],[93.088,12.15362],[93.08604,12.15628],[93.08656,12.15832],[93.08741,12.15841],[93.0873,12.16276],[93.09092,12.1698],[93.09043,12.17053],[93.09113,12.17101],[93.0921,12.17828],[93.09191,12.18188],[93.09047,12.18448],[93.08972,12.18383],[93.09028,12.1822],[93.08899,12.1833],[93.0851,12.17971],[93.08306,12.18069],[93.08152,12.1801],[93.0806,12.18173],[93.07816,12.18061],[93.07865,12.17969],[93.07626,12.17973],[93.07634,12.18035],[93.07804,12.17985],[93.07797,12.18078],[93.08034,12.18201],[93.08134,12.18171],[93.08149,12.18028],[93.08272,12.18092],[93.08538,12.1801],[93.08713,12.18327],[93.08888,12.18374],[93.08959,12.18563],[93.08709,12.18932],[93.0882,12.19155],[93.08793,12.19514],[93.08266,12.19974],[93.07966,12.19885],[93.0778,12.20105],[93.07983,12.20131],[93.07966,12.20206],[93.07753,12.2013],[93.07851,12.20242],[93.07708,12.20228],[93.07623,12.20314],[93.07427,12.20118],[93.0736,12.20186],[93.07173,12.20161],[93.07348,12.20224],[93.0743,12.20162],[93.07668,12.20405],[93.07709,12.20321],[93.07851,12.20373],[93.07831,12.20946],[93.06913,12.21223],[93.06861,12.21127],[93.06659,12.21172],[93.06519,12.21053],[93.06125,12.20188],[93.05459,12.19145],[93.04477,12.1652],[93.042,12.16091],[93.0421,12.15934],[93.0373,12.14461],[93.03762,12.14095],[93.03618,12.13856],[93.03638,12.13603],[93.03527,12.13209],[93.03705,12.12965],[93.03809,12.12619],[93.03927,12.12572],[93.03986,12.12636],[93.03951,12.12575],[93.04031,12.12478],[93.04262,12.1262],[93.04402,12.12522],[93.04674,12.11839],[93.04934,12.11867],[93.05252,12.12193],[93.05088,12.12294],[93.05525,12.12243],[93.05744,12.12054],[93.06009,12.12132],[93.0616,12.12304],[93.06442,12.12351],[93.06587,12.12124],[93.06689,12.12191],[93.06845,12.12148],[93.06878,12.1205],[93.06786,12.11939],[93.06797,12.12142],[93.06611,12.12089],[93.06419,12.1228],[93.06319,12.12284],[93.0624,12.11915],[93.06084,12.11915],[93.06111,12.11759],[93.0606,12.11935],[93.06204,12.11951],[93.06249,12.12278],[93.05815,12.12019],[93.05495,12.12176],[93.05336,12.12167],[93.05103,12.11748],[93.04799,12.11536],[93.04839,12.11179],[93.0568,12.09708],[93.06206,12.09338],[93.06368,12.09095],[93.06836,12.08801],[93.06921,12.086],[93.07031,12.08587],[93.07017,12.0851],[93.07193,12.08326],[93.07296,12.0802],[93.07382,12.07995],[93.07375,12.07877],[93.07728,12.07687],[93.08108,12.07751],[93.08231,12.07883]]],[[[93.01997,12.22324],[93.02037,12.22344],[93.02057,12.22375],[93.02074,12.22419],[93.0207,12.22443],[93.02057,12.22476],[93.02031,12.22509],[93.02006,12.22527],[93.0199,12.22526],[93.01932,12.22508],[93.01901,12.22494],[93.01882,12.2247],[93.0187,12.22438],[93.01871,12.22372],[93.01876,12.2234],[93.01897,12.22331],[93.01926,12.22329],[93.01964,12.22318],[93.01997,12.22324]]],[[[93.10434,12.26401],[93.10106,12.26383],[93.09946,12.26292],[93.09674,12.25775],[93.09629,12.25442],[93.09539,12.25153],[93.0954,12.25],[93.09381,12.25],[93.09334,12.25066],[93.09248,12.25083],[93.09171,12.25045],[93.09115,12.24908],[93.09169,12.24781],[93.09332,12.24698],[93.09398,12.24596],[93.0927,12.2454],[93.0924,12.24379],[93.091,12.24225],[93.08988,12.24354],[93.08852,12.24349],[93.08798,12.24221],[93.08943,12.24107],[93.08691,12.23994],[93.08548,12.23839],[93.08357,12.23945],[93.08309,12.24036],[93.08379,12.24125],[93.08411,12.24263],[93.08469,12.24237],[93.08528,12.24528],[93.08585,12.24555],[93.08562,12.24577],[93.08619,12.24685],[93.08693,12.25506],[93.08655,12.25704],[93.08505,12.25852],[93.0823,12.26248],[93.08062,12.26382],[93.07525,12.26317],[93.07413,12.26235],[93.07253,12.26226],[93.06995,12.26008],[93.06788,12.25578],[93.06514,12.25177],[93.06487,12.23797],[93.06219,12.23468],[93.06181,12.23345],[93.06204,12.22897],[93.06328,12.22728],[93.06631,12.2266],[93.07036,12.22492],[93.07203,12.22471],[93.07542,12.22292],[93.08103,12.21862],[93.0824,12.21711],[93.0838,12.21674],[93.08438,12.21735],[93.08408,12.21971],[93.085,12.21942],[93.08536,12.21968],[93.08574,12.22129],[93.08497,12.22259],[93.08244,12.22398],[93.08252,12.22457],[93.08355,12.22392],[93.08489,12.22445],[93.08463,12.22512],[93.08503,12.22527],[93.08562,12.22445],[93.08567,12.22538],[93.08607,12.22559],[93.0864,12.22525],[93.086,12.22472],[93.08762,12.22485],[93.08715,12.22415],[93.08794,12.22366],[93.0885,12.22467],[93.08844,12.2255],[93.08639,12.22853],[93.08649,12.22964],[93.08764,12.23003],[93.08825,12.23172],[93.09411,12.23643],[93.09532,12.23697],[93.09674,12.23662],[93.09713,12.23831],[93.09783,12.23881],[93.09696,12.23647],[93.09567,12.23674],[93.09391,12.23596],[93.09145,12.23401],[93.09081,12.23305],[93.08883,12.23179],[93.08808,12.23024],[93.08673,12.2293],[93.08683,12.2285],[93.08876,12.22597],[93.08908,12.22389],[93.08963,12.22303],[93.09006,12.22289],[93.08953,12.22391],[93.08996,12.22488],[93.09128,12.22308],[93.09105,12.22117],[93.089,12.21981],[93.08879,12.21903],[93.08728,12.21829],[93.08678,12.21488],[93.08719,12.21354],[93.08989,12.21093],[93.09336,12.20816],[93.09487,12.20818],[93.09551,12.20699],[93.0954,12.20608],[93.09618,12.20382],[93.09887,12.20078],[93.10012,12.20042],[93.10176,12.20122],[93.1026,12.20262],[93.10432,12.21043],[93.1051,12.21857],[93.1044,12.22465],[93.10347,12.22656],[93.10386,12.22745],[93.10383,12.22949],[93.10254,12.2308],[93.10211,12.23198],[93.10065,12.23258],[93.10216,12.23301],[93.1038,12.23279],[93.10534,12.23488],[93.10546,12.23637],[93.10697,12.23931],[93.10689,12.24223],[93.10724,12.2424],[93.10744,12.24514],[93.10681,12.25],[93.10715,12.25614],[93.10654,12.26226],[93.10546,12.26391],[93.10434,12.26401]]],[[[93.02897,12.27794],[93.02911,12.27823],[93.02914,12.27904],[93.02896,12.2797],[93.02876,12.27995],[93.02801,12.28018],[93.02711,12.28018],[93.02639,12.28007],[93.02617,12.27996],[93.02603,12.27975],[93.02601,12.2795],[93.02564,12.27922],[93.02541,12.27887],[93.02474,12.27826],[93.02455,12.27847],[93.02424,12.27866],[93.024,12.27861],[93.02384,12.27848],[93.02366,12.27849],[93.02332,12.27837],[93.02321,12.27826],[93.02312,12.278],[93.02276,12.27786],[93.02225,12.27753],[93.02186,12.27705],[93.02172,12.27674],[93.0214,12.27654],[93.0207,12.27568],[93.02046,12.2751],[93.02038,12.27471],[93.02045,12.2746],[93.02088,12.27441],[93.02113,12.27421],[93.02147,12.27419],[93.02315,12.2738],[93.02415,12.27336],[93.02444,12.27329],[93.02485,12.2733],[93.02532,12.27344],[93.02591,12.27371],[93.02781,12.2752],[93.02866,12.27683],[93.02838,12.27737],[93.02839,12.27758],[93.02874,12.27774],[93.02897,12.27794]]],[[[93.07065,12.31505],[93.07207,12.31509],[93.07241,12.31519],[93.07259,12.31533],[93.07265,12.31557],[93.07325,12.31632],[93.07327,12.31673],[93.07241,12.31784],[93.07217,12.31801],[93.07175,12.31867],[93.07124,12.31907],[93.07134,12.31908],[93.07141,12.3192],[93.0706,12.31965],[93.06991,12.31965],[93.06925,12.3195],[93.06831,12.31948],[93.06753,12.31927],[93.06673,12.3189],[93.06595,12.31882],[93.06527,12.31817],[93.06433,12.31777],[93.06298,12.31702],[93.06222,12.31676],[93.06162,12.31617],[93.06138,12.31581],[93.06125,12.31528],[93.06128,12.315],[93.06137,12.31489],[93.06191,12.31478],[93.06222,12.3148],[93.06272,12.31511],[93.06324,12.31492],[93.06371,12.315],[93.06422,12.3149],[93.06466,12.3149],[93.06523,12.31495],[93.06551,12.31508],[93.06559,12.31519],[93.06698,12.31527],[93.06702,12.31514],[93.06724,12.31505],[93.06765,12.31514],[93.06882,12.3149],[93.06959,12.31505],[93.07024,12.31499],[93.07065,12.31505]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"603","area_level":"District","area_name":"Nicobars","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[93.95032,6.93412],[93.95057,6.93423],[93.95062,6.93441],[93.95069,6.93459],[93.95062,6.93491],[93.9505,6.93524],[93.95034,6.93551],[93.9501,6.93579],[93.94968,6.93586],[93.94948,6.93581],[93.94936,6.93564],[93.94931,6.93541],[93.94931,6.93502],[93.94956,6.9346],[93.94997,6.93423],[93.95018,6.93409],[93.95032,6.93412]]],[[[93.70099,7.228],[93.70042,7.2291],[93.69983,7.2312],[93.69916,7.23176],[93.69871,7.23188],[93.69835,7.23183],[93.69838,7.2315],[93.69851,7.23148],[93.69815,7.23013],[93.69713,7.22917],[93.69641,7.22817],[93.69583,7.2282],[93.69556,7.22772],[93.69561,7.2272],[93.69576,7.22704],[93.69638,7.22716],[93.69617,7.22702],[93.697,7.22546],[93.69748,7.22542],[93.69764,7.22465],[93.69756,7.22389],[93.69812,7.22247],[93.69782,7.22196],[93.69809,7.22112],[93.69786,7.22095],[93.69806,7.22017],[93.69839,7.21991],[93.69879,7.22006],[93.69932,7.2195],[93.69935,7.21914],[93.69918,7.21879],[93.69926,7.21849],[93.69906,7.21821],[93.6995,7.21713],[93.69971,7.21677],[93.6999,7.21675],[93.70044,7.21687],[93.70037,7.21703],[93.70114,7.21609],[93.70084,7.21576],[93.70048,7.21387],[93.69995,7.21289],[93.70003,7.2124],[93.70132,7.20935],[93.70091,7.20936],[93.70059,7.20906],[93.70121,7.2085],[93.70269,7.20806],[93.70357,7.20798],[93.70505,7.20813],[93.70754,7.20685],[93.70805,7.20732],[93.70827,7.2079],[93.70863,7.21024],[93.70928,7.21187],[93.70996,7.21268],[93.71034,7.21341],[93.70999,7.21357],[93.71037,7.21354],[93.71025,7.21404],[93.70983,7.2148],[93.70954,7.21507],[93.70934,7.21488],[93.70934,7.21514],[93.70566,7.2195],[93.70564,7.22012],[93.70513,7.22142],[93.70435,7.22207],[93.70311,7.22269],[93.70292,7.22295],[93.70258,7.22526],[93.70105,7.22699],[93.70099,7.228]]],[[[93.83742,7.24045],[93.83739,7.24467],[93.83487,7.24028],[93.82674,7.24267],[93.82636,7.24006],[93.82292,7.24016],[93.81975,7.23785],[93.81652,7.23911],[93.8088,7.23825],[93.80309,7.23389],[93.79969,7.23337],[93.79623,7.23543],[93.79394,7.22849],[93.79734,7.22774],[93.79738,7.22366],[93.79332,7.22149],[93.7955,7.21745],[93.79394,7.21405],[93.79206,7.21531],[93.79059,7.21354],[93.79207,7.20826],[93.78861,7.21064],[93.78806,7.21315],[93.78245,7.21569],[93.77682,7.21386],[93.77327,7.21591],[93.76577,7.21365],[93.76624,7.21131],[93.76903,7.21099],[93.76904,7.20896],[93.76612,7.21094],[93.76188,7.20839],[93.75407,7.21108],[93.75529,7.21517],[93.74929,7.21592],[93.74327,7.21303],[93.73998,7.20873],[93.74511,7.20116],[93.74363,7.1995],[93.74032,7.20136],[93.738,7.20032],[93.73922,7.19395],[93.73761,7.20022],[93.73983,7.20177],[93.74336,7.20116],[93.74096,7.20623],[93.73431,7.20215],[93.72216,7.18901],[93.70807,7.1891],[93.70543,7.193],[93.70121,7.19394],[93.69358,7.19379],[93.6927,7.19208],[93.69118,7.19319],[93.68943,7.19049],[93.68196,7.1946],[93.67963,7.19233],[93.67633,7.19304],[93.672,7.18675],[93.67256,7.18496],[93.67092,7.18511],[93.66084,7.17742],[93.66348,7.1739],[93.66229,7.1684],[93.66366,7.16057],[93.66514,7.1585],[93.6673,7.15945],[93.66898,7.15797],[93.66534,7.15825],[93.66695,7.15113],[93.66499,7.14199],[93.66276,7.13895],[93.65695,7.14095],[93.65417,7.13186],[93.64462,7.13093],[93.64318,7.12728],[93.64365,7.11803],[93.6484,7.11067],[93.65333,7.1115],[93.65733,7.11814],[93.66358,7.11511],[93.66481,7.11116],[93.66727,7.11261],[93.66583,7.11078],[93.66177,7.11058],[93.66199,7.10944],[93.65865,7.11058],[93.65434,7.10913],[93.658,7.1088],[93.65454,7.10542],[93.65591,7.10389],[93.64796,7.10526],[93.64557,7.10393],[93.64439,7.10069],[93.64525,7.09706],[93.64675,7.09654],[93.64469,7.09371],[93.6465,7.09064],[93.6497,7.09024],[93.64822,7.0874],[93.64923,7.08563],[93.65169,7.08435],[93.65686,7.08573],[93.66029,7.0816],[93.66012,7.07873],[93.65437,7.07474],[93.65243,7.06714],[93.65371,7.06564],[93.66006,7.06549],[93.65798,7.05915],[93.65832,7.05051],[93.65641,7.05031],[93.65602,7.04674],[93.65694,7.04165],[93.66415,7.0369],[93.66481,7.03424],[93.66368,7.03159],[93.66043,7.03161],[93.65984,7.02711],[93.66205,7.02362],[93.66452,7.02517],[93.66697,7.02257],[93.65959,7.01866],[93.6634,7.01766],[93.66227,7.01578],[93.66325,7.01284],[93.65653,7.00972],[93.65503,7.00549],[93.65913,7.00209],[93.66604,7.00222],[93.66899,7.00436],[93.66766,7.0076],[93.67091,7.01213],[93.67035,7.01574],[93.67603,7.01749],[93.68359,7.01575],[93.69288,7.00988],[93.70179,7.011],[93.70282,7.01194],[93.70121,7.01525],[93.69792,7.01865],[93.7003,7.0246],[93.69534,7.02291],[93.70008,7.02536],[93.70072,7.02314],[93.69818,7.01853],[93.70322,7.01184],[93.69868,7.00973],[93.6931,7.00964],[93.69802,7.00272],[93.69846,6.99887],[93.69484,6.99508],[93.69599,6.992],[93.70025,6.99024],[93.70736,6.99378],[93.71494,6.99006],[93.71758,6.99146],[93.71719,6.99435],[93.70961,6.99694],[93.7175,6.99499],[93.7181,6.99188],[93.72012,6.99147],[93.72485,6.98314],[93.72804,6.98167],[93.73113,6.97583],[93.73307,6.97503],[93.73645,6.97684],[93.73293,6.97874],[93.73534,6.98991],[93.73849,6.98967],[93.73584,6.9914],[93.73767,6.99412],[93.73341,6.99355],[93.73285,6.99577],[93.73424,6.9987],[93.73678,6.99821],[93.73764,7.0],[93.73734,6.99787],[93.73484,6.99855],[93.73311,6.99552],[93.73347,6.99391],[93.73815,6.99425],[93.73858,6.99272],[93.73607,6.99219],[93.73895,6.9898],[93.7357,6.98991],[93.73322,6.97882],[93.73695,6.97692],[93.73382,6.97505],[93.7312,6.9754],[93.72833,6.981],[93.72509,6.98219],[93.71981,6.99084],[93.71561,6.98955],[93.72522,6.97734],[93.72242,6.96967],[93.72422,6.96607],[93.72722,6.96607],[93.72635,6.9588],[93.72989,6.95738],[93.733,6.96099],[93.73529,6.96098],[93.73509,6.96272],[93.73726,6.96271],[93.74101,6.95626],[93.73757,6.95124],[93.74141,6.94945],[93.74287,6.94529],[93.7388,6.94136],[93.74325,6.93816],[93.74252,6.93637],[93.73924,6.9356],[93.74152,6.93381],[93.7419,6.93052],[93.73273,6.92974],[93.73071,6.92586],[93.73171,6.92188],[93.73755,6.91193],[93.7442,6.90496],[93.74812,6.90741],[93.75067,6.91192],[93.75437,6.91332],[93.75697,6.91147],[93.75387,6.90693],[93.75667,6.90201],[93.7596,6.90046],[93.75754,6.89883],[93.75741,6.8955],[93.76679,6.89004],[93.76832,6.88672],[93.77047,6.88786],[93.76927,6.88512],[93.76509,6.88676],[93.76366,6.88446],[93.76708,6.8811],[93.77063,6.88192],[93.77686,6.88048],[93.76244,6.8766],[93.76253,6.87361],[93.76542,6.87228],[93.76724,6.86824],[93.76481,6.86617],[93.76298,6.8674],[93.76263,6.86289],[93.7688,6.85974],[93.77037,6.85597],[93.7754,6.85164],[93.7795,6.85305],[93.78228,6.85187],[93.77871,6.85091],[93.77656,6.8431],[93.78561,6.8469],[93.78019,6.84047],[93.78112,6.83827],[93.77784,6.83709],[93.77776,6.83223],[93.78059,6.82647],[93.78475,6.82489],[93.79069,6.81951],[93.78988,6.81658],[93.79549,6.80951],[93.79993,6.80756],[93.80328,6.81292],[93.80662,6.81451],[93.80987,6.81197],[93.80225,6.80495],[93.80294,6.80004],[93.80135,6.79592],[93.80596,6.79352],[93.80651,6.79144],[93.80166,6.78886],[93.80036,6.78566],[93.8036,6.78072],[93.80817,6.77786],[93.80452,6.77402],[93.80159,6.77333],[93.79915,6.76619],[93.80154,6.76076],[93.8049,6.7613],[93.80748,6.7573],[93.80861,6.75826],[93.82248,6.75278],[93.82646,6.75473],[93.82909,6.75359],[93.83145,6.75466],[93.83475,6.76945],[93.84198,6.7785],[93.84447,6.79086],[93.84188,6.79957],[93.84501,6.80126],[93.84529,6.80335],[93.84381,6.80766],[93.8467,6.81441],[93.85175,6.81669],[93.8547,6.82093],[93.85466,6.82785],[93.85147,6.8299],[93.85029,6.83299],[93.84671,6.8307],[93.84792,6.83208],[93.84721,6.83496],[93.84843,6.83204],[93.85054,6.83332],[93.85525,6.8262],[93.85494,6.81999],[93.85163,6.81569],[93.84723,6.81402],[93.84702,6.81134],[93.85708,6.81453],[93.86241,6.81353],[93.87435,6.80134],[93.87425,6.79542],[93.87599,6.79323],[93.88232,6.79429],[93.88405,6.79684],[93.88465,6.80378],[93.88846,6.80175],[93.89232,6.80339],[93.89584,6.81231],[93.89772,6.81346],[93.8985,6.81664],[93.89639,6.81981],[93.89811,6.81854],[93.90029,6.82088],[93.90529,6.83485],[93.90239,6.83959],[93.89488,6.84176],[93.88902,6.84779],[93.88999,6.85754],[93.88833,6.86042],[93.8885,6.86473],[93.88932,6.86714],[93.89523,6.87078],[93.89655,6.87522],[93.8943,6.88357],[93.89502,6.88828],[93.89143,6.89132],[93.89446,6.89498],[93.89467,6.89811],[93.89147,6.9012],[93.89581,6.90578],[93.90286,6.90328],[93.90968,6.91064],[93.90981,6.9216],[93.90563,6.92251],[93.90376,6.92729],[93.90624,6.93072],[93.91464,6.92987],[93.91294,6.93568],[93.91499,6.93686],[93.91341,6.9438],[93.91538,6.94728],[93.9198,6.94841],[93.92406,6.95368],[93.93325,6.94796],[93.93936,6.9502],[93.94135,6.95434],[93.93991,6.95888],[93.93094,6.9628],[93.92895,6.97097],[93.92461,6.97205],[93.92572,6.98179],[93.92341,6.98697],[93.91911,6.9887],[93.91481,6.99312],[93.91035,6.99283],[93.90988,6.99932],[93.91363,7.00609],[93.91871,7.00961],[93.92343,7.00951],[93.92872,6.99771],[93.93333,6.99425],[93.93411,6.99169],[93.93196,6.98946],[93.93344,6.98887],[93.9414,6.99275],[93.94357,6.99543],[93.94463,7.0014],[93.94276,7.00933],[93.93671,7.00991],[93.93433,7.01167],[93.93006,7.02204],[93.92434,7.02859],[93.91615,7.02371],[93.91244,7.02514],[93.91301,7.03161],[93.91029,7.03468],[93.91093,7.03724],[93.90826,7.03931],[93.91286,7.04494],[93.91329,7.04896],[93.90953,7.05361],[93.90723,7.06051],[93.90304,7.06461],[93.90382,7.06979],[93.89872,7.07965],[93.90176,7.0815],[93.89925,7.08294],[93.8986,7.0802],[93.89469,7.08207],[93.88972,7.08144],[93.88104,7.08969],[93.88108,7.09927],[93.87786,7.10449],[93.87757,7.10874],[93.88116,7.1135],[93.88277,7.12788],[93.88054,7.13079],[93.87606,7.13215],[93.87498,7.13898],[93.87681,7.14354],[93.87545,7.15143],[93.87653,7.15548],[93.87263,7.16561],[93.87449,7.16869],[93.86948,7.17272],[93.86865,7.17561],[93.86861,7.17947],[93.87185,7.18586],[93.87147,7.19146],[93.86854,7.19505],[93.87009,7.19853],[93.86995,7.20471],[93.86506,7.20504],[93.86371,7.20967],[93.85901,7.21358],[93.85947,7.21546],[93.8569,7.21837],[93.85208,7.21695],[93.84793,7.21784],[93.84122,7.21563],[93.83708,7.21808],[93.83259,7.22747],[93.83288,7.23093],[93.83796,7.23366],[93.83742,7.24045]]],[[[93.79666,7.2447],[93.79695,7.24493],[93.79949,7.24552],[93.79956,7.24585],[93.79895,7.24639],[93.7981,7.24686],[93.79768,7.24696],[93.79745,7.24716],[93.79738,7.24755],[93.79791,7.2483],[93.79803,7.24865],[93.79785,7.24883],[93.79757,7.24887],[93.79732,7.24877],[93.79684,7.24831],[93.79513,7.24754],[93.79354,7.24671],[93.79294,7.24632],[93.79257,7.24615],[93.79192,7.246],[93.79024,7.24524],[93.78824,7.24401],[93.78761,7.24353],[93.78745,7.24315],[93.7876,7.24272],[93.78778,7.2425],[93.78978,7.2412],[93.79049,7.241],[93.79117,7.2412],[93.79151,7.24143],[93.79246,7.24255],[93.79279,7.24276],[93.79406,7.24294],[93.79435,7.24324],[93.79471,7.24451],[93.79497,7.24467],[93.79563,7.24436],[93.79611,7.24432],[93.79633,7.24435],[93.79666,7.2447]]],[[[93.83497,7.28728],[93.83594,7.28791],[93.83704,7.28912],[93.83781,7.29006],[93.83806,7.2905],[93.83815,7.29094],[93.83804,7.29136],[93.83788,7.29156],[93.83769,7.29164],[93.83742,7.29161],[93.83682,7.2913],[93.83593,7.29061],[93.83528,7.29065],[93.83499,7.29063],[93.83439,7.29037],[93.83397,7.29039],[93.83348,7.29024],[93.83333,7.29003],[93.83327,7.28954],[93.83337,7.2892],[93.83349,7.28852],[93.83369,7.28809],[93.83387,7.28741],[93.83412,7.28713],[93.83497,7.28728]]],[[[93.62007,7.33083],[93.61957,7.33123],[93.61907,7.33142],[93.61846,7.33147],[93.6179,7.33142],[93.61748,7.3313],[93.61714,7.33104],[93.61692,7.33062],[93.61698,7.33046],[93.61811,7.32968],[93.61826,7.32945],[93.61834,7.32916],[93.61831,7.32902],[93.61799,7.32868],[93.61807,7.32834],[93.61785,7.32737],[93.61765,7.32679],[93.61765,7.32642],[93.61773,7.32622],[93.61786,7.32607],[93.61811,7.32599],[93.61891,7.32586],[93.61912,7.32567],[93.6192,7.32552],[93.61925,7.32528],[93.61947,7.32518],[93.61976,7.32518],[93.62005,7.32526],[93.62027,7.32543],[93.62078,7.32599],[93.62146,7.32623],[93.62194,7.32646],[93.62228,7.32675],[93.62295,7.32785],[93.62298,7.32815],[93.62275,7.32844],[93.62228,7.32861],[93.62211,7.32877],[93.62195,7.32911],[93.62196,7.32995],[93.62162,7.33043],[93.62143,7.33061],[93.62114,7.33071],[93.62057,7.33064],[93.62007,7.33083]]],[[[93.68376,7.39995],[93.68379,7.40054],[93.68238,7.40404],[93.68194,7.40462],[93.68161,7.40602],[93.68133,7.40635],[93.67987,7.40718],[93.67992,7.4074],[93.68058,7.4081],[93.68081,7.40868],[93.68055,7.41108],[93.68041,7.4116],[93.67938,7.4121],[93.67779,7.41245],[93.67546,7.41251],[93.67492,7.41242],[93.67423,7.41214],[93.67286,7.41125],[93.67121,7.41036],[93.67037,7.40941],[93.66981,7.40785],[93.66977,7.40681],[93.67001,7.40519],[93.67178,7.40013],[93.67261,7.39882],[93.67375,7.39761],[93.67443,7.39722],[93.6752,7.39708],[93.67595,7.39743],[93.6763,7.39771],[93.6773,7.39775],[93.67781,7.39791],[93.68116,7.39988],[93.68181,7.39995],[93.68313,7.39951],[93.68358,7.3997],[93.68376,7.39995]]],[[[93.75641,7.40555],[93.75595,7.40587],[93.75542,7.40583],[93.75497,7.40558],[93.75432,7.40583],[93.75341,7.4053],[93.7533,7.40477],[93.75344,7.40428],[93.7541,7.40395],[93.75403,7.40377],[93.75294,7.40318],[93.75285,7.40343],[93.7524,7.40332],[93.75203,7.4029],[93.75155,7.40216],[93.75037,7.40114],[93.7502,7.40061],[93.75034,7.40008],[93.75028,7.39965],[93.75035,7.39942],[93.75025,7.39852],[93.75061,7.39822],[93.75227,7.39732],[93.75319,7.39701],[93.75377,7.39662],[93.75442,7.3965],[93.75506,7.39621],[93.75528,7.39621],[93.75546,7.39631],[93.75582,7.39631],[93.75615,7.39611],[93.7569,7.39604],[93.75744,7.39648],[93.75858,7.39683],[93.75906,7.39705],[93.75928,7.39725],[93.75931,7.39745],[93.75968,7.39758],[93.75951,7.39811],[93.75957,7.39896],[93.75996,7.39987],[93.75996,7.40075],[93.75974,7.40135],[93.75935,7.4014],[93.75914,7.40185],[93.7585,7.40234],[93.75847,7.40273],[93.75796,7.40336],[93.75753,7.40375],[93.75686,7.40396],[93.75635,7.40396],[93.75629,7.40417],[93.75652,7.40442],[93.75655,7.40505],[93.75641,7.40555]]],[[[93.69947,7.44738],[93.69439,7.44728],[93.69181,7.44436],[93.69432,7.43964],[93.69354,7.4311],[93.69622,7.42636],[93.69522,7.42218],[93.6964,7.41966],[93.69219,7.41402],[93.69325,7.4072],[93.69207,7.40732],[93.68988,7.40422],[93.69156,7.40066],[93.69801,7.39901],[93.70062,7.40017],[93.70282,7.39635],[93.7018,7.39364],[93.69583,7.3957],[93.6865,7.39668],[93.67435,7.39091],[93.67029,7.39115],[93.66733,7.38497],[93.66821,7.37897],[93.66175,7.37506],[93.65931,7.37673],[93.65824,7.37591],[93.66221,7.36977],[93.65978,7.36791],[93.65842,7.36842],[93.65631,7.36596],[93.65406,7.36596],[93.65964,7.37209],[93.65745,7.37511],[93.65915,7.37719],[93.65683,7.38031],[93.6576,7.38338],[93.65492,7.38518],[93.65195,7.38556],[93.64839,7.38369],[93.64487,7.37832],[93.64478,7.37554],[93.63784,7.37077],[93.62826,7.37665],[93.62275,7.37648],[93.61944,7.37426],[93.61777,7.36208],[93.61833,7.35446],[93.62025,7.34896],[93.61977,7.33891],[93.62411,7.33327],[93.62332,7.3228],[93.61907,7.32075],[93.61703,7.31707],[93.61259,7.31362],[93.61048,7.3143],[93.60813,7.31313],[93.60709,7.31051],[93.60818,7.30799],[93.61287,7.307],[93.61482,7.30484],[93.62198,7.28737],[93.62039,7.28288],[93.61712,7.2804],[93.61819,7.27792],[93.62069,7.27856],[93.62179,7.27689],[93.61665,7.27039],[93.61683,7.26582],[93.62425,7.2607],[93.62656,7.25754],[93.62631,7.2533],[93.62807,7.25],[93.63101,7.24902],[93.63201,7.24625],[93.63581,7.24281],[93.64365,7.24488],[93.65208,7.2556],[93.65463,7.25529],[93.65762,7.25801],[93.66098,7.26948],[93.66482,7.27718],[93.66725,7.27901],[93.66645,7.28223],[93.66741,7.2852],[93.67228,7.28804],[93.67487,7.29186],[93.68746,7.29611],[93.69452,7.30203],[93.69535,7.30538],[93.70372,7.30753],[93.70673,7.30664],[93.7136,7.31137],[93.71776,7.32368],[93.72149,7.32535],[93.72415,7.33051],[93.72609,7.34137],[93.72956,7.34745],[93.73745,7.35416],[93.73712,7.35842],[93.74383,7.36145],[93.74349,7.36477],[93.74559,7.36992],[93.74408,7.37672],[93.73992,7.38006],[93.73633,7.38603],[93.73295,7.38452],[93.73291,7.38689],[93.72974,7.38812],[93.72611,7.39218],[93.72246,7.39289],[93.72219,7.39501],[93.71451,7.39812],[93.7097,7.40507],[93.71133,7.41845],[93.70876,7.43119],[93.70688,7.43574],[93.70452,7.43612],[93.70129,7.44663],[93.69947,7.44738]]],[[[93.63133,7.47161],[93.63138,7.47166],[93.63138,7.47175],[93.63131,7.47198],[93.63123,7.47213],[93.63109,7.47224],[93.63091,7.47247],[93.63085,7.47264],[93.63079,7.47268],[93.63071,7.47269],[93.63066,7.47267],[93.63057,7.47264],[93.6305,7.47256],[93.63048,7.47243],[93.6305,7.47232],[93.63066,7.47204],[93.63104,7.47175],[93.63126,7.4716],[93.63133,7.47161]]],[[[93.63715,7.47841],[93.63561,7.47883],[93.63473,7.47868],[93.63437,7.47852],[93.63282,7.47718],[93.63252,7.47682],[93.6324,7.4766],[93.63235,7.47506],[93.63236,7.4749],[93.63255,7.47456],[93.63262,7.47407],[93.63258,7.47371],[93.63237,7.4732],[93.63227,7.47258],[93.63235,7.47243],[93.63257,7.47229],[93.6331,7.47239],[93.63319,7.47254],[93.63379,7.47299],[93.63426,7.47315],[93.63439,7.47312],[93.63514,7.47288],[93.6358,7.47225],[93.63599,7.47215],[93.63642,7.47212],[93.63697,7.47183],[93.63783,7.47172],[93.63892,7.47177],[93.63962,7.47162],[93.64016,7.47125],[93.64088,7.47103],[93.64119,7.47125],[93.6415,7.47238],[93.64158,7.47295],[93.64155,7.4749],[93.64124,7.47607],[93.64,7.47757],[93.63908,7.47823],[93.63878,7.47834],[93.6378,7.47829],[93.63715,7.47841]]],[[[93.62326,7.47939],[93.62336,7.47989],[93.62342,7.48069],[93.62328,7.48151],[93.62292,7.48209],[93.62243,7.48252],[93.6218,7.48288],[93.62086,7.48324],[93.6198,7.48346],[93.61897,7.48342],[93.61866,7.48321],[93.61846,7.48293],[93.61845,7.48245],[93.61924,7.48143],[93.61949,7.48098],[93.61962,7.48063],[93.61962,7.48],[93.61991,7.47961],[93.62015,7.47936],[93.62053,7.47906],[93.62103,7.47878],[93.62124,7.47878],[93.6215,7.47863],[93.62157,7.4783],[93.62177,7.47787],[93.62218,7.47761],[93.62252,7.47758],[93.62271,7.47764],[93.62304,7.47849],[93.62326,7.47939]]],[[[93.53064,7.52649],[93.52854,7.52748],[93.5262,7.52902],[93.52546,7.52933],[93.52423,7.52952],[93.52273,7.52959],[93.52143,7.52932],[93.52025,7.52847],[93.51968,7.5278],[93.51962,7.52727],[93.51982,7.52661],[93.52074,7.52549],[93.52093,7.52496],[93.52091,7.52376],[93.52146,7.5217],[93.5218,7.52148],[93.52175,7.52105],[93.52197,7.52093],[93.52229,7.52105],[93.52333,7.52073],[93.52469,7.52022],[93.52508,7.51987],[93.52533,7.51908],[93.52575,7.51837],[93.52583,7.51782],[93.5258,7.51764],[93.52495,7.51688],[93.52482,7.51662],[93.52485,7.51621],[93.52555,7.51497],[93.52587,7.51463],[93.52622,7.51458],[93.52733,7.515],[93.52802,7.515],[93.52919,7.51357],[93.53025,7.51361],[93.53092,7.51379],[93.53193,7.51423],[93.53249,7.51469],[93.53327,7.51589],[93.53373,7.51635],[93.53403,7.51693],[93.53465,7.51903],[93.53443,7.52028],[93.53489,7.52163],[93.53473,7.52223],[93.53478,7.52315],[93.53439,7.52452],[93.53387,7.52535],[93.533,7.52604],[93.53238,7.5263],[93.53117,7.52635],[93.53064,7.52649]]],[[[93.4418,7.87635],[93.44198,7.87642],[93.44214,7.87654],[93.44224,7.87667],[93.44216,7.87683],[93.44202,7.877],[93.44195,7.87712],[93.44195,7.87733],[93.44193,7.87741],[93.44185,7.87752],[93.4416,7.87757],[93.44137,7.8775],[93.44123,7.87728],[93.4412,7.87699],[93.44124,7.87672],[93.44139,7.87651],[93.44159,7.87637],[93.4418,7.87635]]],[[[93.38663,7.88985],[93.38723,7.89023],[93.38749,7.89054],[93.38774,7.89105],[93.38782,7.89143],[93.38774,7.89168],[93.38755,7.89189],[93.38725,7.89201],[93.38696,7.89202],[93.38681,7.89198],[93.38648,7.89162],[93.38636,7.89146],[93.38629,7.89131],[93.38621,7.8907],[93.38617,7.89008],[93.38622,7.88992],[93.38639,7.88982],[93.38663,7.88985]]],[[[93.38951,7.89054],[93.38995,7.8909],[93.39016,7.89125],[93.3903,7.89177],[93.39039,7.89289],[93.39053,7.8936],[93.39048,7.89403],[93.39024,7.895],[93.39019,7.89533],[93.39023,7.89565],[93.39042,7.89601],[93.39097,7.89648],[93.39084,7.89687],[93.39055,7.89739],[93.3901,7.89949],[93.38995,7.89983],[93.38974,7.90008],[93.38946,7.90024],[93.38914,7.90034],[93.38857,7.90017],[93.38794,7.90011],[93.38775,7.9],[93.38741,7.89951],[93.38732,7.89914],[93.38742,7.89807],[93.38758,7.89717],[93.38755,7.89675],[93.38739,7.89634],[93.38705,7.89592],[93.38708,7.89573],[93.388,7.89463],[93.38874,7.89315],[93.38927,7.89254],[93.38894,7.89219],[93.38883,7.89199],[93.38884,7.89164],[93.38907,7.89079],[93.38926,7.89055],[93.38951,7.89054]]],[[[93.39439,7.90212],[93.39452,7.9025],[93.39452,7.90268],[93.39429,7.90268],[93.39389,7.90249],[93.39353,7.90226],[93.39316,7.90194],[93.39285,7.90177],[93.39207,7.90184],[93.39157,7.90207],[93.39122,7.90205],[93.39073,7.90192],[93.39037,7.90174],[93.39071,7.9017],[93.39115,7.90155],[93.39134,7.90137],[93.39142,7.90116],[93.39131,7.90092],[93.39092,7.90047],[93.39091,7.90019],[93.39108,7.89953],[93.39151,7.89925],[93.39191,7.89919],[93.39232,7.89925],[93.39254,7.89943],[93.39277,7.89979],[93.393,7.9004],[93.39316,7.90069],[93.39342,7.9009],[93.39407,7.90165],[93.39439,7.90212]]],[[[93.39682,7.90178],[93.39601,7.90259],[93.39575,7.90271],[93.39536,7.90271],[93.39515,7.90252],[93.395,7.9021],[93.39537,7.9006],[93.39547,7.89998],[93.39542,7.89974],[93.39528,7.89944],[93.39507,7.89917],[93.39502,7.89888],[93.39507,7.89863],[93.39516,7.89856],[93.39539,7.89851],[93.39575,7.89864],[93.39609,7.89885],[93.39632,7.89895],[93.39659,7.89893],[93.39697,7.89874],[93.39763,7.89827],[93.3979,7.89825],[93.39872,7.89849],[93.39913,7.89896],[93.39955,7.89959],[93.39977,7.90005],[93.39991,7.90074],[93.39988,7.90089],[93.3997,7.9011],[93.39965,7.90134],[93.39974,7.90192],[93.39959,7.90212],[93.3994,7.90228],[93.39918,7.90226],[93.39841,7.90171],[93.39795,7.90156],[93.39753,7.90153],[93.39682,7.90178]]],[[[93.32672,7.93022],[93.32673,7.93042],[93.32664,7.93065],[93.32656,7.93077],[93.32623,7.93098],[93.32575,7.93113],[93.32416,7.93136],[93.32306,7.93193],[93.32295,7.93184],[93.32279,7.93178],[93.32261,7.93157],[93.32254,7.93113],[93.32277,7.93093],[93.32286,7.93061],[93.32343,7.93019],[93.32373,7.93031],[93.32402,7.93036],[93.32437,7.93034],[93.32524,7.9299],[93.32611,7.9298],[93.32634,7.92992],[93.32654,7.92997],[93.32672,7.93022]]],[[[93.33828,7.93728],[93.33897,7.93809],[93.33951,7.9389],[93.34016,7.94023],[93.3402,7.94044],[93.34015,7.94093],[93.33997,7.94151],[93.33969,7.94195],[93.33929,7.9424],[93.339,7.94269],[93.33883,7.94274],[93.33867,7.94268],[93.33729,7.94187],[93.33612,7.94107],[93.33556,7.94044],[93.33504,7.93965],[93.3349,7.93931],[93.33479,7.93871],[93.33481,7.93856],[93.33493,7.93832],[93.33515,7.93812],[93.33563,7.93782],[93.3363,7.93768],[93.33709,7.93737],[93.33814,7.93715],[93.33828,7.93728]]],[[[93.47735,8.00909],[93.47747,8.00934],[93.47711,8.0098],[93.477,8.00991],[93.47688,8.00992],[93.47671,8.00979],[93.47661,8.00962],[93.47659,8.00943],[93.47662,8.00923],[93.47676,8.00903],[93.47714,8.00898],[93.47735,8.00909]]],[[[93.47917,8.00969],[93.47911,8.01007],[93.47911,8.01023],[93.4787,8.01074],[93.4784,8.01102],[93.47815,8.01115],[93.47806,8.01115],[93.47785,8.01103],[93.4776,8.01054],[93.47744,8.01008],[93.47743,8.00977],[93.47777,8.00961],[93.47814,8.00958],[93.47829,8.00952],[93.47838,8.00932],[93.47868,8.00927],[93.47897,8.00933],[93.47917,8.00969]]],[[[93.36945,8.02353],[93.36127,8.02137],[93.35622,8.01409],[93.35411,8.01414],[93.35397,8.01263],[93.35008,8.01024],[93.34864,8.01213],[93.34657,8.00915],[93.34446,8.00969],[93.3432,8.01328],[93.33929,8.01745],[93.33333,8.01207],[93.32801,8.01327],[93.32284,8.01064],[93.31998,8.00738],[93.31945,8.00581],[93.32024,8.00572],[93.31655,8.00176],[93.31228,7.99107],[93.31179,7.98637],[93.3139,7.9787],[93.31293,7.97462],[93.31025,7.97223],[93.30625,7.97135],[93.30522,7.96782],[93.30061,7.96148],[93.30291,7.94946],[93.30592,7.94436],[93.30797,7.94339],[93.30946,7.93984],[93.30775,7.93783],[93.30787,7.93386],[93.30963,7.93344],[93.3097,7.9312],[93.31302,7.92709],[93.32195,7.92293],[93.32448,7.92519],[93.32108,7.92935],[93.3228,7.92996],[93.32216,7.93102],[93.32359,7.93586],[93.32725,7.93663],[93.33179,7.93418],[93.33144,7.93149],[93.32818,7.93074],[93.32988,7.92765],[93.33528,7.93451],[93.33786,7.93523],[93.33797,7.93623],[93.33413,7.93809],[93.33202,7.93714],[93.33317,7.93872],[93.33149,7.93829],[93.33855,7.9461],[93.33398,7.94892],[93.32999,7.94681],[93.33189,7.94951],[93.33415,7.9496],[93.33933,7.94612],[93.34183,7.94686],[93.33998,7.94382],[93.34294,7.94337],[93.34282,7.9416],[93.34131,7.94068],[93.33888,7.93376],[93.33577,7.933],[93.33435,7.93085],[93.3356,7.92747],[93.34085,7.9324],[93.34115,7.93017],[93.33548,7.9245],[93.32947,7.92576],[93.32681,7.92346],[93.33291,7.91539],[93.33103,7.91397],[93.3339,7.91133],[93.33211,7.90999],[93.33473,7.90915],[93.33499,7.90014],[93.33645,7.89898],[93.33774,7.89983],[93.34085,7.89346],[93.346,7.88973],[93.35528,7.88624],[93.36149,7.88638],[93.36191,7.88181],[93.36584,7.88006],[93.36796,7.87767],[93.37109,7.87935],[93.37303,7.87899],[93.37474,7.88107],[93.37631,7.88022],[93.37966,7.88125],[93.38094,7.88285],[93.38057,7.88552],[93.38546,7.88742],[93.38592,7.88878],[93.38461,7.88935],[93.38732,7.89303],[93.38718,7.89517],[93.38552,7.89627],[93.3881,7.90158],[93.39519,7.90324],[93.39847,7.90222],[93.40594,7.90638],[93.40736,7.90656],[93.40742,7.90525],[93.40862,7.90675],[93.41198,7.90693],[93.41622,7.9063],[93.43202,7.89887],[93.43744,7.89197],[93.44148,7.88432],[93.44111,7.88197],[93.44322,7.87506],[93.45446,7.87244],[93.45995,7.8798],[93.46025,7.88222],[93.46447,7.88642],[93.46199,7.88721],[93.46242,7.88929],[93.46621,7.8911],[93.46489,7.89225],[93.46461,7.89728],[93.46131,7.90305],[93.458,7.91337],[93.45713,7.92742],[93.45366,7.93337],[93.45327,7.93628],[93.45116,7.93825],[93.4519,7.93929],[93.43934,7.94789],[93.43129,7.95598],[93.42682,7.95657],[93.42513,7.95885],[93.42302,7.9665],[93.42091,7.96861],[93.41535,7.96577],[93.41398,7.96167],[93.40907,7.96057],[93.40362,7.96156],[93.40081,7.96709],[93.40159,7.96911],[93.403,7.96932],[93.40165,7.97022],[93.39977,7.96848],[93.39386,7.97439],[93.39335,7.97813],[93.39641,7.98218],[93.39226,7.99336],[93.39679,8.00461],[93.39837,8.00648],[93.40063,8.00691],[93.40137,8.00878],[93.3982,8.01248],[93.39252,8.01475],[93.38965,8.01796],[93.38203,8.01898],[93.38084,8.02046],[93.37812,8.01945],[93.36945,8.02353]]],[[[93.47579,8.01306],[93.47584,8.01319],[93.4757,8.01393],[93.47558,8.01435],[93.4752,8.01459],[93.47509,8.01449],[93.47506,8.01443],[93.47499,8.01439],[93.47479,8.01433],[93.47473,8.01404],[93.47496,8.01352],[93.47519,8.01318],[93.47545,8.01303],[93.4757,8.01292],[93.47579,8.01306]]],[[[93.47499,8.0149],[93.47498,8.01516],[93.47506,8.01546],[93.47507,8.01575],[93.47483,8.01589],[93.47467,8.01588],[93.47448,8.01577],[93.47442,8.01572],[93.47431,8.01557],[93.47429,8.01527],[93.47434,8.0151],[93.47446,8.01504],[93.47452,8.01487],[93.47458,8.0148],[93.47499,8.0149]]],[[[93.47523,8.0164],[93.47553,8.01688],[93.47561,8.01698],[93.47557,8.01723],[93.47535,8.01727],[93.47524,8.01727],[93.47493,8.0172],[93.47483,8.01704],[93.47483,8.01676],[93.47497,8.01645],[93.47509,8.01634],[93.47523,8.0164]]],[[[93.54084,8.02845],[93.53632,8.02825],[93.53489,8.02908],[93.53409,8.02629],[93.53543,8.02346],[93.53886,8.02126],[93.53825,8.01836],[93.5411,8.00972],[93.54018,8.00654],[93.54195,8.00255],[93.5417,8.00141],[93.54276,8.00141],[93.54185,7.99819],[93.54215,7.99551],[93.54377,7.99136],[93.54329,7.99112],[93.54271,7.99188],[93.54236,7.99428],[93.541,7.99659],[93.5381,7.99871],[93.53858,8.00099],[93.53802,8.0025],[93.53197,8.00839],[93.5325,8.01068],[93.53094,8.01362],[93.53248,8.01519],[93.53245,8.016],[93.5306,8.01781],[93.52981,8.01754],[93.52789,8.01891],[93.52634,8.01763],[93.52628,8.02211],[93.52516,8.02474],[93.52208,8.02618],[93.51878,8.02516],[93.51956,8.02264],[93.51849,8.02198],[93.51793,8.02044],[93.52019,8.01602],[93.52049,8.01021],[93.52132,8.00754],[93.52023,8.00661],[93.51706,8.00602],[93.51668,8.00501],[93.51736,8.00386],[93.51673,8.00273],[93.51522,8.00331],[93.51625,8.0014],[93.51593,8.00068],[93.5125,7.99944],[93.5119,7.99775],[93.51022,7.99686],[93.51093,7.99563],[93.50978,7.9941],[93.50522,7.99585],[93.50556,7.9995],[93.50142,7.99951],[93.50094,7.99875],[93.50133,7.99773],[93.49964,7.9983],[93.49919,7.99668],[93.4969,7.99867],[93.49454,7.9961],[93.49472,7.99324],[93.49703,7.98942],[93.49671,7.98664],[93.49789,7.98389],[93.5,7.98284],[93.5,7.98432],[93.50142,7.98338],[93.5013,7.98222],[93.50219,7.98279],[93.50396,7.98102],[93.50492,7.98115],[93.50797,7.97783],[93.50738,7.97755],[93.50763,7.97592],[93.51131,7.97373],[93.51202,7.9718],[93.51337,7.97187],[93.51359,7.97044],[93.51473,7.97123],[93.51454,7.97192],[93.51591,7.97163],[93.51472,7.97001],[93.5153,7.96914],[93.51811,7.9687],[93.52322,7.96536],[93.52587,7.96456],[93.52659,7.96609],[93.52998,7.96696],[93.53139,7.96936],[93.53001,7.96641],[93.52736,7.96576],[93.52723,7.96445],[93.52649,7.96437],[93.52862,7.96149],[93.52842,7.95933],[93.53209,7.95632],[93.53429,7.95617],[93.53893,7.95247],[93.54297,7.95089],[93.54405,7.94997],[93.54436,7.9478],[93.54826,7.9457],[93.55339,7.9405],[93.55409,7.93773],[93.55617,7.93737],[93.55828,7.93568],[93.55904,7.93548],[93.55907,7.93604],[93.56021,7.93484],[93.56011,7.9341],[93.56227,7.93372],[93.56247,7.93219],[93.56271,7.93344],[93.56376,7.93125],[93.56373,7.93224],[93.56766,7.93092],[93.56912,7.92993],[93.56942,7.92827],[93.5698,7.93014],[93.56736,7.93242],[93.56785,7.93496],[93.56942,7.93586],[93.56934,7.93735],[93.5714,7.93985],[93.57184,7.94146],[93.57046,7.9433],[93.5717,7.94612],[93.57214,7.95303],[93.57035,7.95517],[93.57096,7.95867],[93.57219,7.95983],[93.57171,7.96077],[93.57244,7.96332],[93.57225,7.96473],[93.57088,7.96428],[93.56992,7.96556],[93.57122,7.97019],[93.57223,7.96979],[93.57358,7.97244],[93.57296,7.97442],[93.57151,7.97538],[93.57174,7.97755],[93.57048,7.97862],[93.57073,7.98147],[93.57321,7.98531],[93.57179,7.98912],[93.57262,7.99031],[93.57225,7.992],[93.57331,7.99423],[93.57192,7.99538],[93.5703,7.99477],[93.56918,7.99999],[93.56997,8.0],[93.56763,8.00104],[93.56556,8.00532],[93.5626,8.00881],[93.56114,8.01361],[93.55995,8.01472],[93.55929,8.01482],[93.55897,8.01409],[93.55898,8.01514],[93.55675,8.01717],[93.55647,8.02134],[93.55363,8.02634],[93.55274,8.02631],[93.55314,8.02558],[93.5526,8.02481],[93.55079,8.0252],[93.55071,8.02621],[93.54879,8.02571],[93.54412,8.02804],[93.54084,8.02845]]],[[[93.47433,8.03481],[93.47462,8.03505],[93.4747,8.0352],[93.47475,8.03543],[93.4747,8.0357],[93.47449,8.03588],[93.47419,8.03607],[93.47391,8.03605],[93.4736,8.03591],[93.47346,8.03568],[93.47345,8.03544],[93.47348,8.03519],[93.47358,8.03494],[93.47379,8.03479],[93.47408,8.03476],[93.47433,8.03481]]],[[[93.49508,8.04863],[93.49476,8.04865],[93.4943,8.04862],[93.49393,8.04866],[93.49364,8.04868],[93.49349,8.04862],[93.49325,8.04838],[93.4932,8.04817],[93.49334,8.04776],[93.49339,8.04727],[93.49349,8.04704],[93.49366,8.04686],[93.49385,8.04679],[93.49403,8.04684],[93.49417,8.047],[93.49435,8.04735],[93.49459,8.0477],[93.49514,8.04809],[93.49532,8.04835],[93.49524,8.04851],[93.49508,8.04863]]],[[[93.51401,8.0644],[93.51411,8.06452],[93.51413,8.06463],[93.51412,8.06474],[93.51409,8.06484],[93.51404,8.06492],[93.51392,8.06496],[93.51377,8.06493],[93.51371,8.06487],[93.51366,8.06475],[93.51364,8.06455],[93.51368,8.06446],[93.51374,8.06439],[93.51381,8.06434],[93.51388,8.06432],[93.51401,8.0644]]],[[[93.51478,8.0689],[93.51485,8.06893],[93.51492,8.06899],[93.51493,8.06908],[93.51487,8.06927],[93.5148,8.06936],[93.51473,8.06943],[93.51469,8.06945],[93.51453,8.06948],[93.51446,8.06941],[93.51444,8.06936],[93.51444,8.06926],[93.51444,8.06917],[93.51447,8.06909],[93.51454,8.06901],[93.51461,8.06895],[93.51469,8.06891],[93.51478,8.0689]]],[[[93.51361,8.07471],[93.51386,8.07477],[93.51411,8.0749],[93.5142,8.07506],[93.51421,8.07516],[93.51419,8.0753],[93.51414,8.0754],[93.51403,8.07555],[93.51379,8.07566],[93.51349,8.07556],[93.51326,8.07541],[93.51313,8.07522],[93.51313,8.07506],[93.51316,8.07492],[93.51325,8.0748],[93.51337,8.07471],[93.51361,8.07471]]],[[[93.57595,8.11916],[93.57227,8.12651],[93.57052,8.12749],[93.56687,8.1275],[93.56242,8.12585],[93.55843,8.12319],[93.55339,8.12106],[93.55287,8.12008],[93.55345,8.11813],[93.55767,8.11226],[93.55867,8.11],[93.56087,8.10805],[93.56234,8.10875],[93.5654,8.11175],[93.5656,8.11272],[93.56474,8.11453],[93.56468,8.1166],[93.56767,8.11958],[93.56759,8.11852],[93.56503,8.11642],[93.56627,8.11156],[93.56459,8.10999],[93.56471,8.10858],[93.56316,8.10452],[93.56326,8.10312],[93.56002,8.09718],[93.56146,8.09421],[93.56149,8.09354],[93.56101,8.09359],[93.56076,8.09299],[93.56144,8.09164],[93.56229,8.09129],[93.56237,8.09188],[93.56147,8.09281],[93.56181,8.09312],[93.56377,8.09111],[93.56588,8.08769],[93.56994,8.08377],[93.57176,8.08273],[93.57195,8.08194],[93.57079,8.08016],[93.57217,8.07939],[93.57207,8.07621],[93.57265,8.07505],[93.57523,8.07413],[93.57756,8.07435],[93.57793,8.07524],[93.57821,8.07424],[93.57508,8.07379],[93.57151,8.07417],[93.5725,8.06989],[93.57487,8.06897],[93.5761,8.06753],[93.57411,8.06911],[93.57204,8.06983],[93.57002,8.07509],[93.56828,8.07563],[93.56484,8.07429],[93.56421,8.07363],[93.56259,8.06748],[93.56457,8.06152],[93.56771,8.05922],[93.56846,8.05727],[93.57107,8.05497],[93.57143,8.05342],[93.57389,8.04993],[93.57535,8.0497],[93.57716,8.04776],[93.5789,8.04705],[93.57807,8.04603],[93.57991,8.0428],[93.58118,8.04197],[93.58197,8.0391],[93.58305,8.0387],[93.58444,8.03922],[93.58476,8.03807],[93.58566,8.0387],[93.58544,8.0404],[93.58885,8.04227],[93.59087,8.04409],[93.59155,8.04986],[93.59135,8.05137],[93.59034,8.05184],[93.59032,8.05418],[93.5878,8.05976],[93.58577,8.06303],[93.58272,8.06621],[93.58191,8.06825],[93.58145,8.07373],[93.5832,8.0782],[93.581,8.08478],[93.58171,8.09004],[93.58157,8.0935],[93.5828,8.09431],[93.58291,8.09533],[93.58167,8.09607],[93.58057,8.09567],[93.57963,8.0946],[93.57951,8.09283],[93.57828,8.09205],[93.57832,8.09161],[93.57762,8.09173],[93.57797,8.09085],[93.57597,8.08994],[93.57569,8.09027],[93.57691,8.09114],[93.57544,8.09135],[93.57604,8.09169],[93.57597,8.09221],[93.57711,8.09181],[93.57722,8.09216],[93.57463,8.09314],[93.57395,8.0944],[93.57701,8.09323],[93.5775,8.09371],[93.57892,8.09292],[93.57932,8.0938],[93.57907,8.09472],[93.5805,8.09602],[93.58023,8.09739],[93.57986,8.09784],[93.57839,8.09726],[93.57711,8.09549],[93.5756,8.09498],[93.57572,8.09573],[93.5744,8.09568],[93.57261,8.09668],[93.57539,8.09676],[93.57415,8.09773],[93.5754,8.0979],[93.57537,8.09844],[93.57265,8.09962],[93.57513,8.09934],[93.57499,8.10015],[93.57358,8.10123],[93.57489,8.10095],[93.57472,8.10243],[93.57558,8.1009],[93.57553,8.0995],[93.57636,8.10017],[93.57632,8.09855],[93.57692,8.09844],[93.57655,8.09762],[93.57743,8.09691],[93.57991,8.09815],[93.58096,8.09643],[93.58312,8.0964],[93.58195,8.09825],[93.58148,8.10205],[93.57986,8.10771],[93.57952,8.10989],[93.58019,8.11022],[93.57893,8.11232],[93.57877,8.1138],[93.57659,8.11685],[93.57595,8.11916]]],[[[93.19396,8.18634],[93.19405,8.18643],[93.19407,8.18655],[93.19402,8.18663],[93.19393,8.18665],[93.19381,8.18663],[93.19374,8.18656],[93.19373,8.18648],[93.19373,8.18639],[93.19378,8.18631],[93.19387,8.1863],[93.19396,8.18634]]],[[[93.18827,8.19022],[93.18836,8.19028],[93.18837,8.19041],[93.18828,8.19061],[93.18809,8.1907],[93.18792,8.19069],[93.18784,8.19059],[93.18783,8.19049],[93.18794,8.19034],[93.1881,8.19022],[93.18827,8.19022]]],[[[93.19731,8.19024],[93.19741,8.19031],[93.19744,8.19042],[93.19741,8.1905],[93.19733,8.19056],[93.1972,8.19056],[93.1971,8.19049],[93.19707,8.19044],[93.19707,8.19036],[93.19711,8.19028],[93.19719,8.19023],[93.19731,8.19024]]],[[[93.17557,8.19372],[93.17557,8.1938],[93.17549,8.194],[93.17533,8.19415],[93.17513,8.19422],[93.17496,8.19421],[93.17487,8.19412],[93.1749,8.19394],[93.17522,8.19373],[93.17532,8.19369],[93.17551,8.19364],[93.17557,8.19372]]],[[[93.18632,8.19359],[93.18652,8.19372],[93.18657,8.19384],[93.18646,8.19402],[93.18634,8.19412],[93.18625,8.19416],[93.18617,8.19413],[93.18612,8.19405],[93.18603,8.19387],[93.18605,8.19369],[93.18619,8.19359],[93.18632,8.19359]]],[[[93.18823,8.19499],[93.18826,8.19512],[93.18825,8.19524],[93.18813,8.19538],[93.18802,8.19547],[93.18792,8.19547],[93.18779,8.19538],[93.18776,8.19528],[93.18782,8.19515],[93.18798,8.19501],[93.18814,8.19495],[93.18823,8.19499]]],[[[93.21134,8.1968],[93.21146,8.19697],[93.21146,8.19709],[93.21134,8.19716],[93.21117,8.19713],[93.21106,8.19704],[93.21103,8.1969],[93.21107,8.1968],[93.21117,8.19674],[93.21134,8.1968]]],[[[93.12698,8.216],[93.12711,8.21614],[93.12718,8.21629],[93.12708,8.21637],[93.12698,8.21639],[93.1268,8.21635],[93.12663,8.21635],[93.12653,8.21631],[93.12651,8.21619],[93.12649,8.21608],[93.12651,8.21603],[93.12656,8.21599],[93.12677,8.21595],[93.12698,8.216]]],[[[93.11743,8.21878],[93.11762,8.2189],[93.11767,8.21901],[93.11766,8.21912],[93.11757,8.21918],[93.11746,8.21919],[93.11735,8.21912],[93.1172,8.21897],[93.11717,8.21893],[93.11716,8.21887],[93.11724,8.2188],[93.11732,8.21876],[93.11743,8.21878]]],[[[93.11724,8.22],[93.11734,8.22006],[93.11735,8.22018],[93.11731,8.22029],[93.11726,8.22036],[93.11718,8.22037],[93.11709,8.22035],[93.11703,8.22027],[93.11705,8.22016],[93.11712,8.22006],[93.11718,8.22001],[93.11724,8.22]]],[[[93.22683,8.22468],[93.22675,8.22478],[93.22665,8.22486],[93.22657,8.22487],[93.22625,8.22461],[93.22622,8.2245],[93.22625,8.22438],[93.22632,8.22431],[93.22646,8.2243],[93.22658,8.22431],[93.22668,8.22427],[93.22675,8.22427],[93.22695,8.22431],[93.22706,8.22432],[93.22723,8.22444],[93.2273,8.22455],[93.22726,8.22471],[93.22719,8.22475],[93.22711,8.22471],[93.22696,8.22464],[93.22683,8.22468]]],[[[93.2344,8.2239],[93.23444,8.22394],[93.23442,8.22401],[93.23424,8.22417],[93.23419,8.22428],[93.23415,8.22433],[93.23407,8.22435],[93.23399,8.22433],[93.23383,8.22421],[93.23378,8.22412],[93.23377,8.22407],[93.23382,8.22399],[93.23394,8.22391],[93.23428,8.22387],[93.2344,8.2239]]],[[[93.2423,8.23278],[93.24236,8.23286],[93.24238,8.23296],[93.24234,8.23303],[93.24225,8.23305],[93.24217,8.23303],[93.24213,8.23295],[93.24211,8.23289],[93.24212,8.23282],[93.24215,8.23276],[93.24219,8.23275],[93.2423,8.23278]]],[[[93.24193,8.23371],[93.24198,8.23375],[93.24202,8.2338],[93.24199,8.23386],[93.24193,8.2339],[93.24183,8.23392],[93.2418,8.23388],[93.24178,8.23382],[93.2418,8.23377],[93.24185,8.23371],[93.24193,8.23371]]],[[[93.24213,8.23412],[93.24215,8.23416],[93.24214,8.23423],[93.24209,8.23428],[93.24204,8.23428],[93.24201,8.23426],[93.24198,8.23419],[93.242,8.23414],[93.24203,8.2341],[93.24207,8.23409],[93.24213,8.23412]]],[[[93.51331,8.23506],[93.51081,8.23517],[93.50932,8.23352],[93.51174,8.23116],[93.51454,8.23106],[93.51408,8.22974],[93.51008,8.23287],[93.5063,8.23232],[93.50508,8.23088],[93.4993,8.23045],[93.49714,8.22817],[93.48725,8.22499],[93.48193,8.22118],[93.48105,8.21634],[93.48244,8.20934],[93.47997,8.20496],[93.48068,8.20007],[93.47829,8.19745],[93.48081,8.19788],[93.48371,8.20056],[93.48672,8.19905],[93.49017,8.20295],[93.48675,8.19852],[93.48282,8.20001],[93.48191,8.19787],[93.47401,8.19557],[93.47004,8.1908],[93.46962,8.18544],[93.46949,8.19029],[93.46573,8.18437],[93.45668,8.18143],[93.44643,8.18096],[93.44241,8.17913],[93.43747,8.17038],[93.44053,8.16647],[93.44177,8.16113],[93.44592,8.15664],[93.44528,8.15072],[93.44816,8.15177],[93.4477,8.15328],[93.44991,8.15315],[93.44596,8.15019],[93.44658,8.14397],[93.44871,8.14271],[93.45178,8.14474],[93.45409,8.14412],[93.45455,8.14185],[93.45638,8.14071],[93.4486,8.13544],[93.4482,8.13355],[93.45101,8.11971],[93.45416,8.11908],[93.45511,8.12077],[93.45525,8.11953],[93.45812,8.11945],[93.4538,8.11636],[93.45736,8.11119],[93.45575,8.1121],[93.45405,8.11084],[93.45878,8.10211],[93.46893,8.09033],[93.47097,8.09667],[93.47198,8.09663],[93.48412,8.08826],[93.48786,8.09507],[93.48624,8.09286],[93.48784,8.09076],[93.48629,8.09087],[93.48391,8.08764],[93.47868,8.09167],[93.47704,8.08928],[93.47284,8.08713],[93.46972,8.08861],[93.47393,8.07913],[93.47518,8.07216],[93.47438,8.06825],[93.47567,8.06361],[93.47473,8.06005],[93.47575,8.0529],[93.47809,8.05363],[93.48049,8.05082],[93.48298,8.05238],[93.4852,8.06076],[93.48184,8.06297],[93.48192,8.06438],[93.48415,8.06434],[93.48619,8.06774],[93.48771,8.06551],[93.48934,8.06587],[93.49217,8.07018],[93.49523,8.07],[93.49708,8.07421],[93.5025,8.07538],[93.5018,8.07715],[93.50422,8.07969],[93.50296,8.08209],[93.50458,8.08566],[93.5094,8.08311],[93.5118,8.08567],[93.51401,8.08494],[93.51436,8.07966],[93.52116,8.08038],[93.51442,8.07506],[93.51579,8.06822],[93.51719,8.07037],[93.52163,8.06976],[93.5222,8.06856],[93.52086,8.06906],[93.52045,8.06535],[93.51765,8.06366],[93.51414,8.06412],[93.51494,8.05833],[93.51668,8.05642],[93.51569,8.05325],[93.51141,8.05226],[93.50852,8.04769],[93.50385,8.05003],[93.50531,8.05927],[93.50185,8.06901],[93.50028,8.06841],[93.49892,8.06504],[93.49937,8.05771],[93.49668,8.05904],[93.49656,8.05746],[93.49378,8.05752],[93.49372,8.05601],[93.49637,8.0556],[93.5,8.05218],[93.5,8.04972],[93.49834,8.05071],[93.49699,8.04558],[93.49911,8.03805],[93.49376,8.04603],[93.49255,8.04466],[93.49279,8.04157],[93.49014,8.04017],[93.48894,8.04235],[93.48388,8.04413],[93.48053,8.04727],[93.47663,8.04727],[93.47585,8.0461],[93.47724,8.04295],[93.47727,8.03791],[93.47609,8.03698],[93.477,8.03295],[93.47532,8.0316],[93.47697,8.02924],[93.47613,8.01843],[93.47746,8.01783],[93.47696,8.01606],[93.47962,8.00988],[93.47925,8.00672],[93.48107,8.00482],[93.48036,8.00286],[93.48323,8.00069],[93.48722,8.00139],[93.48814,7.9988],[93.49109,7.99845],[93.49226,7.99999],[93.49156,8.00142],[93.49273,8.00195],[93.49542,8.00013],[93.4962,8.00387],[93.49788,8.00435],[93.49731,8.00953],[93.49992,8.01154],[93.49912,8.01364],[93.49755,8.0139],[93.49781,8.01703],[93.50025,8.01573],[93.50172,8.01858],[93.50074,8.02176],[93.4964,8.0249],[93.49638,8.02993],[93.49845,8.03592],[93.50828,8.0364],[93.51079,8.03935],[93.51195,8.03573],[93.51445,8.03348],[93.51828,8.03837],[93.51807,8.04657],[93.52126,8.05059],[93.52726,8.0484],[93.52656,8.04626],[93.52852,8.04555],[93.5307,8.04007],[93.53943,8.03554],[93.5408,8.03614],[93.53965,8.04368],[93.53504,8.0501],[93.53631,8.05148],[93.53828,8.05042],[93.53843,8.05794],[93.53981,8.05819],[93.53913,8.05972],[93.54034,8.06019],[93.54316,8.06773],[93.54113,8.08114],[93.53826,8.08583],[93.53776,8.08999],[93.53,8.09215],[93.52667,8.09609],[93.52268,8.0983],[93.52111,8.10181],[93.52137,8.10684],[93.51916,8.10821],[93.51808,8.1146],[93.51487,8.11813],[93.51587,8.11978],[93.51468,8.12335],[93.51089,8.12625],[93.50899,8.1312],[93.50792,8.13057],[93.5064,8.13231],[93.50842,8.13172],[93.50704,8.13363],[93.50551,8.13529],[93.50448,8.13449],[93.505,8.13638],[93.50306,8.13893],[93.49279,8.14617],[93.4947,8.1475],[93.49316,8.14981],[93.49747,8.15113],[93.49831,8.15772],[93.50089,8.15764],[93.50225,8.159],[93.50286,8.16355],[93.5,8.16475],[93.50162,8.1702],[93.50868,8.17412],[93.50413,8.176],[93.50907,8.17442],[93.51054,8.17525],[93.51123,8.17332],[93.51301,8.17305],[93.52279,8.18468],[93.52278,8.18587],[93.52053,8.186],[93.52554,8.18711],[93.52612,8.18427],[93.52383,8.18088],[93.51767,8.17756],[93.51876,8.17661],[93.52526,8.17806],[93.52707,8.18016],[93.52902,8.18716],[93.52796,8.1928],[93.52979,8.19223],[93.53234,8.19404],[93.53653,8.2024],[93.53666,8.22417],[93.53463,8.229],[93.52707,8.23009],[93.52571,8.23174],[93.51642,8.23324],[93.51331,8.23506]]],[[[93.22662,8.26571],[93.22435,8.26583],[93.219,8.26419],[93.2158,8.26253],[93.21512,8.26154],[93.2142,8.26122],[93.21274,8.25964],[93.2126,8.25913],[93.21189,8.25882],[93.21126,8.25768],[93.21137,8.25664],[93.21066,8.2553],[93.21082,8.25443],[93.21032,8.25368],[93.21038,8.25276],[93.20969,8.2514],[93.21061,8.25069],[93.21019,8.24867],[93.21035,8.24681],[93.21216,8.24242],[93.21347,8.24074],[93.21407,8.23936],[93.21769,8.2355],[93.22035,8.23317],[93.22274,8.23227],[93.22427,8.23084],[93.22432,8.22884],[93.22624,8.22699],[93.2266,8.22573],[93.22756,8.22485],[93.22743,8.22421],[93.2295,8.2218],[93.22993,8.22215],[93.23004,8.22324],[93.23053,8.22383],[93.23023,8.22421],[93.23049,8.22451],[93.23234,8.22436],[93.23492,8.22508],[93.23535,8.22453],[93.23566,8.22507],[93.23635,8.22542],[93.23897,8.2258],[93.23916,8.2264],[93.24003,8.22641],[93.24063,8.22682],[93.24122,8.22939],[93.24087,8.22972],[93.2406,8.23095],[93.24059,8.23146],[93.24093,8.2318],[93.24029,8.23275],[93.24031,8.23357],[93.2407,8.23507],[93.24115,8.23564],[93.24087,8.2363],[93.24038,8.23652],[93.23993,8.2376],[93.23951,8.23768],[93.23927,8.23841],[93.24003,8.23963],[93.24006,8.24016],[93.23919,8.24027],[93.24001,8.24205],[93.23986,8.24271],[93.23865,8.24347],[93.23833,8.24446],[93.23869,8.24474],[93.23856,8.24512],[93.23808,8.24497],[93.23756,8.24584],[93.23771,8.24619],[93.23672,8.2498],[93.23509,8.25055],[93.23423,8.25357],[93.23313,8.25515],[93.23299,8.25647],[93.23231,8.25736],[93.23148,8.2596],[93.23074,8.25915],[93.2307,8.26084],[93.23011,8.26114],[93.23012,8.26218],[93.22894,8.26391],[93.22852,8.26508],[93.22662,8.26571]]],[[[93.2267,8.26671],[93.22675,8.26683],[93.22673,8.26694],[93.22663,8.267],[93.2265,8.26693],[93.22642,8.2668],[93.22651,8.26665],[93.22665,8.26663],[93.2267,8.26671]]],[[[93.11723,8.35651],[93.1156,8.3566],[93.11596,8.35566],[93.11487,8.3548],[93.11467,8.35553],[93.11324,8.35477],[93.11295,8.35585],[93.11344,8.3538],[93.11213,8.3522],[93.10933,8.35031],[93.10795,8.35094],[93.10702,8.35009],[93.10725,8.3509],[93.10664,8.3497],[93.10623,8.35058],[93.10326,8.34762],[93.09798,8.3492],[93.09855,8.34988],[93.09655,8.35003],[93.09629,8.35119],[93.09511,8.3501],[93.09495,8.34738],[93.09114,8.34709],[93.09154,8.34609],[93.08941,8.34242],[93.08742,8.3414],[93.08606,8.34196],[93.08698,8.34123],[93.08493,8.3408],[93.08371,8.33527],[93.08477,8.33155],[93.08419,8.32521],[93.07534,8.30701],[93.0733,8.29546],[93.07382,8.2906],[93.07508,8.28963],[93.0738,8.284],[93.07584,8.27346],[93.08732,8.25618],[93.08825,8.25522],[93.09012,8.25543],[93.08967,8.25333],[93.09099,8.25138],[93.08979,8.24879],[93.09134,8.24608],[93.09261,8.24634],[93.09362,8.24263],[93.1006,8.23662],[93.10218,8.23403],[93.10573,8.23379],[93.10633,8.2281],[93.10956,8.22682],[93.11162,8.22364],[93.11715,8.22211],[93.12002,8.2199],[93.12458,8.21921],[93.12697,8.2169],[93.13965,8.21082],[93.14348,8.20704],[93.14728,8.2061],[93.15184,8.20222],[93.15735,8.20104],[93.16446,8.20109],[93.16827,8.19928],[93.16902,8.1979],[93.17088,8.19789],[93.17818,8.19413],[93.1799,8.19531],[93.1856,8.19472],[93.1909,8.19612],[93.19242,8.1974],[93.19408,8.20207],[93.19583,8.21309],[93.19548,8.21519],[93.19283,8.2186],[93.18707,8.2214],[93.18598,8.2245],[93.18348,8.22639],[93.17092,8.23077],[93.16357,8.23562],[93.16152,8.23568],[93.15172,8.24105],[93.14899,8.24155],[93.12868,8.26087],[93.11972,8.2728],[93.11732,8.27903],[93.11732,8.283],[93.12373,8.29901],[93.12406,8.3159],[93.12905,8.32546],[93.13067,8.32654],[93.13179,8.33026],[93.13093,8.33831],[93.13183,8.34113],[93.13304,8.34176],[93.13351,8.34654],[93.13281,8.34626],[93.13246,8.34913],[93.13128,8.34795],[93.13087,8.34887],[93.12902,8.34821],[93.12543,8.34974],[93.12211,8.34828],[93.12096,8.34931],[93.12142,8.35099],[93.12076,8.35057],[93.1186,8.35254],[93.11854,8.3554],[93.11723,8.35651]]],[[[93.04971,8.44245],[93.0497,8.44271],[93.04958,8.44275],[93.04948,8.44262],[93.04942,8.44246],[93.04951,8.44236],[93.04971,8.44245]]],[[[93.04984,8.44302],[93.04982,8.44316],[93.04957,8.44321],[93.04945,8.44303],[93.0496,8.44297],[93.04984,8.44302]]],[[[93.05036,8.44378],[93.05022,8.44389],[93.05014,8.44367],[93.05013,8.44361],[93.05012,8.44364],[93.05015,8.44334],[93.05039,8.44341],[93.05036,8.44378]]],[[[93.04998,8.44453],[93.05006,8.44461],[93.05005,8.4447],[93.04991,8.44485],[93.04984,8.44485],[93.04972,8.44483],[93.04968,8.44473],[93.04972,8.44458],[93.0498,8.44451],[93.04998,8.44453]]],[[[93.05027,8.44473],[93.05033,8.44496],[93.05023,8.44511],[93.05009,8.44511],[93.04994,8.44497],[93.04989,8.44488],[93.04999,8.44477],[93.0501,8.44469],[93.05027,8.44473]]],[[[93.04981,8.44505],[93.04985,8.44512],[93.04983,8.44527],[93.04975,8.44535],[93.04966,8.44534],[93.04965,8.44523],[93.04968,8.44505],[93.04981,8.44505]]],[[[93.04976,8.44556],[93.04972,8.44572],[93.04962,8.44579],[93.04954,8.44576],[93.04952,8.44565],[93.04958,8.44549],[93.04969,8.44546],[93.04976,8.44556]]],[[[93.62565,8.39404],[93.62575,8.39408],[93.62589,8.39419],[93.62595,8.39426],[93.62599,8.39432],[93.62599,8.39441],[93.62598,8.39446],[93.62594,8.39449],[93.62588,8.39453],[93.62578,8.39454],[93.62567,8.3945],[93.62548,8.39428],[93.62542,8.39421],[93.62542,8.39416],[93.62544,8.39411],[93.62546,8.39406],[93.62552,8.39404],[93.62565,8.39404]]],[[[93.62734,8.39473],[93.62747,8.3948],[93.62753,8.39488],[93.62756,8.39493],[93.62754,8.39499],[93.62751,8.39502],[93.62741,8.39504],[93.62736,8.39503],[93.62731,8.39501],[93.62722,8.39493],[93.62719,8.39485],[93.62719,8.39478],[93.62723,8.39474],[93.62728,8.39472],[93.62734,8.39473]]],[[[93.62722,8.39512],[93.62728,8.39515],[93.62728,8.39519],[93.62728,8.39525],[93.62726,8.39531],[93.62723,8.39533],[93.6272,8.39534],[93.62716,8.39535],[93.62712,8.39535],[93.6271,8.39532],[93.62708,8.39526],[93.62714,8.39513],[93.62718,8.39512],[93.62722,8.39512]]],[[[93.6321,8.39478],[93.63199,8.39483],[93.63192,8.39489],[93.63189,8.39496],[93.63176,8.39514],[93.63169,8.39521],[93.63166,8.39522],[93.63156,8.39523],[93.63142,8.39518],[93.63135,8.39514],[93.63128,8.39506],[93.63123,8.39498],[93.63122,8.39492],[93.63121,8.39479],[93.63125,8.3947],[93.63132,8.39462],[93.63144,8.39453],[93.63159,8.3945],[93.63205,8.39449],[93.63236,8.39433],[93.63247,8.39425],[93.6327,8.3941],[93.63283,8.39408],[93.63295,8.39409],[93.63302,8.39414],[93.63308,8.39427],[93.63301,8.39433],[93.63281,8.39441],[93.63267,8.39452],[93.6326,8.39463],[93.63251,8.39473],[93.63226,8.39475],[93.6321,8.39478]]],[[[93.62614,8.39553],[93.62618,8.39554],[93.62623,8.39558],[93.62625,8.39573],[93.62625,8.39586],[93.62623,8.39592],[93.62619,8.39596],[93.62616,8.39596],[93.62612,8.39596],[93.62606,8.39593],[93.62604,8.39588],[93.62603,8.39582],[93.62602,8.39577],[93.62602,8.39563],[93.62605,8.39554],[93.62608,8.39553],[93.62614,8.39553]]],[[[93.6434,8.39454],[93.64318,8.39516],[93.64292,8.39532],[93.64259,8.39535],[93.64204,8.39524],[93.64105,8.39474],[93.64015,8.39465],[93.6397,8.39478],[93.63927,8.39522],[93.63905,8.39512],[93.63898,8.395],[93.63875,8.39501],[93.63831,8.39473],[93.63808,8.39469],[93.63763,8.3949],[93.63723,8.39478],[93.63694,8.39479],[93.63624,8.39516],[93.63599,8.39474],[93.63542,8.39478],[93.635,8.39497],[93.63467,8.3954],[93.63455,8.39546],[93.63442,8.39538],[93.63433,8.39498],[93.63388,8.39478],[93.6338,8.39455],[93.6342,8.39418],[93.63439,8.3938],[93.6346,8.39387],[93.63475,8.39416],[93.63491,8.39412],[93.63508,8.39395],[93.63523,8.39424],[93.63565,8.39415],[93.63585,8.39433],[93.63597,8.39428],[93.63641,8.39386],[93.63625,8.39351],[93.63638,8.39307],[93.63619,8.39298],[93.63642,8.3925],[93.63678,8.39215],[93.637,8.39171],[93.63731,8.39148],[93.63744,8.39125],[93.63785,8.39088],[93.63855,8.39099],[93.6389,8.39119],[93.63911,8.39121],[93.63922,8.39136],[93.63951,8.39121],[93.63971,8.39123],[93.63977,8.39109],[93.64022,8.39102],[93.64033,8.3911],[93.64037,8.39096],[93.64049,8.39097],[93.64074,8.39116],[93.64091,8.39105],[93.64127,8.39108],[93.64149,8.39093],[93.64159,8.3907],[93.64157,8.39007],[93.64208,8.38991],[93.64233,8.39034],[93.64251,8.39042],[93.64284,8.3904],[93.64296,8.39023],[93.64286,8.38995],[93.64303,8.38977],[93.64307,8.38956],[93.6433,8.38946],[93.64357,8.38921],[93.64375,8.38946],[93.644,8.38935],[93.64414,8.3894],[93.64435,8.39001],[93.64476,8.39048],[93.64521,8.39035],[93.64539,8.39069],[93.64552,8.39076],[93.64598,8.39058],[93.6464,8.39086],[93.64642,8.39106],[93.64614,8.39122],[93.64535,8.39126],[93.64482,8.39182],[93.64421,8.39218],[93.64401,8.39259],[93.64389,8.3927],[93.64406,8.39298],[93.6434,8.39454]]],[[[93.6248,8.39794],[93.62466,8.39794],[93.62458,8.3979],[93.62456,8.39784],[93.62456,8.39776],[93.62457,8.39765],[93.62463,8.39748],[93.62464,8.39737],[93.62462,8.39697],[93.62463,8.39683],[93.62466,8.39672],[93.62472,8.39662],[93.62479,8.39656],[93.62486,8.39653],[93.62496,8.39655],[93.62506,8.39663],[93.6251,8.39667],[93.62515,8.39672],[93.62521,8.39673],[93.62539,8.39676],[93.62546,8.39681],[93.62554,8.39696],[93.62555,8.39705],[93.62555,8.39715],[93.62548,8.39724],[93.62544,8.39733],[93.62538,8.39738],[93.62535,8.39746],[93.62531,8.39778],[93.62524,8.39786],[93.62514,8.3979],[93.62486,8.39791],[93.6248,8.39794]]],[[[93.62324,8.39791],[93.62328,8.39794],[93.6233,8.39797],[93.6233,8.39803],[93.6233,8.3981],[93.62327,8.39816],[93.62324,8.39818],[93.6232,8.39819],[93.62315,8.39818],[93.62312,8.39816],[93.6231,8.39812],[93.6231,8.39809],[93.62315,8.39794],[93.62319,8.39791],[93.62324,8.39791]]],[[[93.62311,8.39836],[93.62316,8.39839],[93.62318,8.39851],[93.62318,8.39857],[93.62317,8.39861],[93.62316,8.39863],[93.62313,8.39865],[93.62309,8.39865],[93.62303,8.39864],[93.62299,8.39861],[93.62297,8.39855],[93.62298,8.39842],[93.62302,8.39837],[93.62305,8.39836],[93.62311,8.39836]]],[[[93.62435,8.39703],[93.6244,8.39709],[93.6244,8.39746],[93.62443,8.39769],[93.62445,8.39778],[93.62444,8.39786],[93.62439,8.39795],[93.6243,8.398],[93.62422,8.39811],[93.62413,8.39836],[93.62407,8.39846],[93.62406,8.39855],[93.624,8.39859],[93.62394,8.3986],[93.62388,8.39859],[93.62382,8.39851],[93.6238,8.39836],[93.62379,8.39813],[93.62372,8.39796],[93.6237,8.39787],[93.62371,8.39778],[93.62372,8.39769],[93.62379,8.39761],[93.62384,8.39751],[93.62393,8.39745],[93.62407,8.39734],[93.62412,8.39725],[93.62417,8.3971],[93.62421,8.39705],[93.62428,8.39703],[93.62435,8.39703]]],[[[93.62348,8.39837],[93.62353,8.3984],[93.62358,8.39851],[93.62358,8.39862],[93.62356,8.39867],[93.62352,8.39869],[93.62347,8.3987],[93.62343,8.39869],[93.6234,8.39866],[93.62337,8.39862],[93.62334,8.39856],[93.62334,8.3985],[93.62335,8.39844],[93.62338,8.3984],[93.62342,8.39837],[93.62348,8.39837]]],[[[93.62328,8.39885],[93.62332,8.3989],[93.62332,8.39896],[93.62331,8.399],[93.62329,8.39904],[93.62325,8.39906],[93.62317,8.39907],[93.62313,8.39905],[93.6231,8.39903],[93.62309,8.39898],[93.62309,8.39895],[93.62312,8.3989],[93.62315,8.39886],[93.62322,8.39885],[93.62328,8.39885]]],[[[93.62341,8.39918],[93.62342,8.3992],[93.62343,8.39925],[93.62342,8.3993],[93.6234,8.39934],[93.62337,8.39936],[93.62331,8.39939],[93.62328,8.39939],[93.62326,8.39939],[93.62321,8.39939],[93.62318,8.39936],[93.62318,8.39932],[93.62318,8.39927],[93.62321,8.39923],[93.62325,8.39919],[93.62333,8.39916],[93.62341,8.39918]]],[[[93.62262,8.40029],[93.62267,8.40031],[93.6227,8.40036],[93.6227,8.4004],[93.62267,8.40044],[93.62262,8.40048],[93.62259,8.4005],[93.62247,8.4005],[93.62241,8.40049],[93.62237,8.40045],[93.62236,8.40041],[93.62237,8.40034],[93.62244,8.4003],[93.62256,8.40029],[93.62262,8.40029]]],[[[93.62307,8.40014],[93.62312,8.40018],[93.62315,8.40024],[93.62315,8.40034],[93.62315,8.4004],[93.62315,8.40048],[93.6231,8.40054],[93.62304,8.40055],[93.62298,8.40054],[93.62293,8.4005],[93.62289,8.40045],[93.62288,8.40035],[93.6229,8.40027],[93.62292,8.4002],[93.62296,8.40016],[93.623,8.40013],[93.62307,8.40014]]],[[[93.62281,8.40064],[93.62285,8.40067],[93.62286,8.40072],[93.62287,8.40078],[93.62286,8.40083],[93.62284,8.40088],[93.6228,8.40092],[93.62277,8.40097],[93.62274,8.40099],[93.6227,8.401],[93.62266,8.40098],[93.62265,8.40093],[93.62264,8.40087],[93.62264,8.40081],[93.62266,8.40076],[93.6227,8.4007],[93.62274,8.40068],[93.62278,8.40064],[93.62281,8.40064]]],[[[93.62229,8.40092],[93.62232,8.40097],[93.62234,8.40102],[93.62234,8.40107],[93.62233,8.40111],[93.6223,8.40115],[93.62225,8.40116],[93.6222,8.40115],[93.62216,8.40111],[93.62213,8.40107],[93.62212,8.40102],[93.62213,8.40097],[93.62217,8.40092],[93.62222,8.40088],[93.62229,8.40092]]],[[[93.62254,8.40182],[93.6226,8.40184],[93.62265,8.40188],[93.62267,8.40193],[93.62266,8.40198],[93.62266,8.40203],[93.62262,8.40206],[93.62257,8.40207],[93.62251,8.40208],[93.62246,8.40208],[93.62241,8.40206],[93.62238,8.40202],[93.62235,8.40197],[93.62235,8.40192],[93.62238,8.40187],[93.62239,8.40184],[93.62246,8.40182],[93.62254,8.40182]]],[[[93.04442,8.46417],[93.04258,8.46617],[93.04156,8.4669],[93.04057,8.46838],[93.03972,8.46893],[93.0357,8.47279],[93.03417,8.47338],[93.03267,8.47273],[93.03063,8.47114],[93.02887,8.46796],[93.02901,8.46753],[93.02532,8.45959],[93.02548,8.45899],[93.0249,8.45694],[93.02454,8.45225],[93.02535,8.45089],[93.02588,8.44868],[93.02655,8.44739],[93.02854,8.4452],[93.03341,8.44158],[93.03648,8.44128],[93.0382,8.44005],[93.04209,8.43962],[93.04466,8.44004],[93.04473,8.44028],[93.04504,8.4401],[93.046,8.44015],[93.04713,8.44029],[93.04734,8.44062],[93.04773,8.44051],[93.04833,8.44166],[93.04917,8.44238],[93.04969,8.44362],[93.04952,8.44552],[93.04857,8.44619],[93.04737,8.44656],[93.04768,8.4467],[93.0474,8.44717],[93.04753,8.44747],[93.04698,8.44776],[93.04692,8.44883],[93.04666,8.44905],[93.04647,8.44997],[93.04676,8.45355],[93.04793,8.45697],[93.04778,8.46003],[93.0465,8.46247],[93.04653,8.46313],[93.04558,8.46368],[93.04513,8.46358],[93.04442,8.46417]]],[[[93.61388,8.41776],[93.61396,8.41783],[93.61407,8.41797],[93.61419,8.41818],[93.61426,8.41837],[93.61426,8.41846],[93.61423,8.41854],[93.6142,8.41861],[93.61389,8.41876],[93.61367,8.41888],[93.6136,8.41891],[93.61353,8.41893],[93.61345,8.41891],[93.61343,8.41886],[93.61343,8.41882],[93.61347,8.41874],[93.61347,8.41873],[93.61358,8.41857],[93.61367,8.41838],[93.61361,8.41818],[93.61359,8.4181],[93.61359,8.41802],[93.61361,8.41791],[93.61365,8.41783],[93.61369,8.41779],[93.61378,8.41775],[93.61388,8.41776]]],[[[93.61324,8.41949],[93.61329,8.41954],[93.61331,8.41962],[93.6133,8.4197],[93.61321,8.41979],[93.61314,8.41994],[93.61311,8.42003],[93.613,8.42003],[93.6129,8.41995],[93.61287,8.41984],[93.61288,8.41972],[93.6129,8.41964],[93.61295,8.41958],[93.61305,8.41951],[93.61314,8.41949],[93.61324,8.41949]]],[[[93.61309,8.42063],[93.61295,8.42071],[93.61277,8.42084],[93.61267,8.42097],[93.6126,8.42102],[93.61249,8.42103],[93.61242,8.42099],[93.61241,8.42094],[93.61241,8.42085],[93.61247,8.42076],[93.61267,8.42043],[93.6127,8.42032],[93.61275,8.42024],[93.6128,8.42021],[93.61285,8.42021],[93.61299,8.42033],[93.61305,8.42038],[93.61315,8.42043],[93.61323,8.42048],[93.61326,8.42054],[93.61326,8.42057],[93.61323,8.42061],[93.61309,8.42063]]],[[[93.6137,8.42072],[93.61377,8.42079],[93.61378,8.42087],[93.61376,8.42096],[93.6137,8.42102],[93.61363,8.42106],[93.61358,8.42107],[93.61354,8.42106],[93.61348,8.42103],[93.61345,8.42095],[93.61345,8.42087],[93.61346,8.42082],[93.61356,8.42074],[93.61362,8.42071],[93.6137,8.42072]]],[[[93.61261,8.42266],[93.61268,8.42272],[93.61271,8.42281],[93.61271,8.4229],[93.6127,8.42297],[93.61264,8.42302],[93.61257,8.42302],[93.61251,8.42299],[93.61246,8.42293],[93.61242,8.42286],[93.61246,8.42276],[93.61249,8.42266],[93.61255,8.42264],[93.61261,8.42266]]],[[[93.60647,8.43228],[93.60654,8.43232],[93.60657,8.43237],[93.60657,8.43243],[93.60655,8.43248],[93.60652,8.43253],[93.60645,8.43256],[93.60637,8.43258],[93.60629,8.43258],[93.60621,8.43255],[93.60617,8.4325],[93.60617,8.43246],[93.60617,8.4324],[93.60625,8.43232],[93.60634,8.43228],[93.60647,8.43228]]],[[[93.60746,8.43602],[93.60749,8.43606],[93.60749,8.43613],[93.60745,8.4362],[93.60737,8.43624],[93.60719,8.43632],[93.60708,8.43633],[93.6069,8.43633],[93.60677,8.43633],[93.60664,8.43629],[93.60654,8.43625],[93.60645,8.43619],[93.60642,8.43611],[93.6064,8.43604],[93.60645,8.4359],[93.60648,8.43588],[93.60657,8.43588],[93.60669,8.4359],[93.60679,8.43595],[93.60692,8.43599],[93.60704,8.43601],[93.60716,8.436],[93.60726,8.43598],[93.60738,8.43598],[93.60746,8.43602]]],[[[93.60769,8.45767],[93.60756,8.45772],[93.60729,8.45772],[93.60714,8.4577],[93.60686,8.45771],[93.60672,8.45773],[93.60629,8.45785],[93.60605,8.4578],[93.60596,8.45776],[93.60586,8.45768],[93.6058,8.45759],[93.60579,8.4575],[93.6058,8.45741],[93.60583,8.45739],[93.60591,8.45739],[93.60603,8.45745],[93.60621,8.45745],[93.60627,8.45744],[93.60641,8.45735],[93.60662,8.45704],[93.60672,8.45693],[93.6068,8.45687],[93.60687,8.45679],[93.607,8.45671],[93.60714,8.45672],[93.60721,8.45676],[93.60723,8.45683],[93.60725,8.45703],[93.6073,8.45712],[93.6074,8.4572],[93.60779,8.45723],[93.60785,8.45725],[93.6079,8.45731],[93.6079,8.45743],[93.60786,8.4575],[93.60769,8.45767]]],[[[93.61076,8.45922],[93.61102,8.45927],[93.61111,8.45929],[93.61122,8.45931],[93.61139,8.45937],[93.6114,8.45946],[93.61135,8.4596],[93.61122,8.45971],[93.61108,8.45974],[93.61094,8.45972],[93.61055,8.45953],[93.61045,8.45945],[93.6104,8.45936],[93.61041,8.45928],[93.61055,8.45921],[93.61076,8.45922]]],[[[93.62568,8.47024],[93.62581,8.47029],[93.62593,8.47038],[93.62597,8.47049],[93.62597,8.47058],[93.62593,8.47069],[93.62583,8.47078],[93.62561,8.47089],[93.62545,8.47102],[93.62536,8.4711],[93.62527,8.47116],[93.62519,8.47118],[93.6251,8.47118],[93.625,8.47113],[93.62496,8.47106],[93.62498,8.47095],[93.62507,8.47085],[93.62525,8.47072],[93.62534,8.47048],[93.62541,8.47033],[93.62547,8.47027],[93.62555,8.47023],[93.62568,8.47024]]],[[[93.60355,8.48718],[93.60344,8.48721],[93.60336,8.48727],[93.6033,8.48735],[93.60327,8.48748],[93.6032,8.48752],[93.60313,8.48752],[93.60309,8.48748],[93.60306,8.48741],[93.60306,8.48726],[93.60303,8.48718],[93.60298,8.48709],[93.60271,8.48685],[93.60261,8.48682],[93.60255,8.48677],[93.6025,8.48673],[93.60247,8.48664],[93.60248,8.48653],[93.60258,8.48648],[93.60263,8.48643],[93.60266,8.48627],[93.60269,8.4862],[93.60273,8.48618],[93.60284,8.48617],[93.60299,8.48623],[93.60312,8.48634],[93.60319,8.48644],[93.60322,8.48653],[93.60329,8.48661],[93.60337,8.48665],[93.60342,8.48667],[93.60354,8.48668],[93.60382,8.48668],[93.60391,8.48671],[93.60396,8.48677],[93.60397,8.48685],[93.60396,8.48704],[93.60386,8.48714],[93.60383,8.48715],[93.60363,8.48716],[93.60355,8.48718]]],[[[93.62928,8.48702],[93.62932,8.48711],[93.62931,8.4872],[93.62924,8.48726],[93.62916,8.48729],[93.62907,8.48739],[93.62903,8.48751],[93.62897,8.48771],[93.6288,8.48769],[93.62873,8.48764],[93.62876,8.48755],[93.6288,8.48739],[93.62885,8.48728],[93.62895,8.48724],[93.629,8.48715],[93.62905,8.48701],[93.62917,8.48697],[93.62928,8.48702]]],[[[93.62852,8.48793],[93.6287,8.48792],[93.62866,8.48809],[93.6285,8.48817],[93.62835,8.48814],[93.62831,8.4881],[93.62835,8.488],[93.62845,8.48793],[93.62852,8.48793]]],[[[93.60578,8.49828],[93.60593,8.49842],[93.60598,8.49846],[93.60605,8.49848],[93.60611,8.49852],[93.60614,8.49858],[93.60615,8.49861],[93.60614,8.49867],[93.60611,8.49871],[93.60607,8.49875],[93.60601,8.49877],[93.60594,8.49877],[93.60587,8.49875],[93.60567,8.49854],[93.60558,8.49849],[93.60556,8.49842],[93.60556,8.49837],[93.60559,8.49828],[93.60565,8.49825],[93.60578,8.49828]]],[[[93.61411,8.50205],[93.61399,8.50207],[93.6139,8.50198],[93.61386,8.50183],[93.61393,8.50167],[93.61412,8.50158],[93.61437,8.50157],[93.6145,8.50161],[93.61454,8.50173],[93.61454,8.50187],[93.61449,8.50199],[93.61437,8.50201],[93.61425,8.50195],[93.61411,8.50205]]],[[[93.61441,8.50243],[93.61446,8.50243],[93.61452,8.50246],[93.61466,8.50251],[93.6147,8.50254],[93.61474,8.50258],[93.61476,8.50261],[93.61476,8.50265],[93.61474,8.50267],[93.6147,8.5027],[93.61461,8.50272],[93.61435,8.50273],[93.61426,8.50272],[93.61421,8.50268],[93.6142,8.50264],[93.61421,8.50258],[93.61424,8.50252],[93.61436,8.50243],[93.61441,8.50243]]],[[[93.62439,8.50296],[93.62443,8.50297],[93.62446,8.503],[93.62447,8.50303],[93.62448,8.50306],[93.62448,8.5031],[93.62447,8.50314],[93.62445,8.50316],[93.62442,8.50317],[93.62439,8.50316],[93.62436,8.50313],[93.62433,8.50309],[93.62432,8.50306],[93.6243,8.50304],[93.62429,8.50301],[93.6243,8.50298],[93.62432,8.50296],[93.62435,8.50296],[93.62439,8.50296]]],[[[93.62419,8.50325],[93.62419,8.50331],[93.62417,8.50334],[93.62415,8.50335],[93.62413,8.50337],[93.62408,8.50338],[93.62403,8.50337],[93.62401,8.50334],[93.62399,8.50331],[93.624,8.50326],[93.62402,8.50322],[93.62404,8.50319],[93.62407,8.50317],[93.6241,8.50314],[93.62413,8.50313],[93.62416,8.50313],[93.62417,8.50314],[93.62418,8.50316],[93.62417,8.50319],[93.62418,8.50323],[93.62418,8.50322],[93.62419,8.50325]]],[[[93.61454,8.50437],[93.61458,8.50439],[93.61459,8.50444],[93.61457,8.50452],[93.61455,8.50458],[93.61452,8.5046],[93.61447,8.50461],[93.61443,8.50458],[93.61441,8.50452],[93.61443,8.50447],[93.61446,8.5044],[93.61451,8.50437],[93.61454,8.50437]]],[[[93.61497,8.50464],[93.61501,8.50468],[93.61502,8.50472],[93.615,8.50479],[93.61497,8.50485],[93.61491,8.50492],[93.61484,8.50496],[93.61477,8.50498],[93.61474,8.50498],[93.61469,8.50496],[93.61466,8.50492],[93.61465,8.50486],[93.61467,8.50481],[93.6147,8.50475],[93.61474,8.50471],[93.61479,8.50467],[93.61484,8.50465],[93.6149,8.50463],[93.61497,8.50464]]],[[[93.61439,8.50482],[93.61444,8.50486],[93.61447,8.50489],[93.61447,8.5049],[93.61447,8.50494],[93.61446,8.50497],[93.61444,8.50501],[93.61442,8.50502],[93.61436,8.50508],[93.61434,8.5051],[93.61431,8.50511],[93.61429,8.50512],[93.61426,8.50511],[93.61426,8.50509],[93.61424,8.50508],[93.61423,8.50505],[93.61421,8.50503],[93.61421,8.505],[93.61421,8.50499],[93.61421,8.50497],[93.61422,8.50495],[93.61427,8.50491],[93.61429,8.50489],[93.6143,8.50488],[93.61431,8.50483],[93.61433,8.50482],[93.61436,8.50481],[93.61439,8.50482]]],[[[93.61462,8.50526],[93.61467,8.50533],[93.61465,8.50543],[93.61463,8.50557],[93.61459,8.50565],[93.6145,8.50565],[93.6144,8.5056],[93.61434,8.50551],[93.61434,8.50543],[93.61441,8.50534],[93.61448,8.50528],[93.61457,8.50524],[93.61462,8.50526]]],[[[93.61406,8.50548],[93.61409,8.5055],[93.61412,8.50551],[93.61415,8.50554],[93.61416,8.50558],[93.61416,8.50563],[93.61416,8.50566],[93.61414,8.5057],[93.61411,8.50572],[93.6141,8.50574],[93.61408,8.50575],[93.61405,8.50577],[93.61401,8.50579],[93.61398,8.50579],[93.61394,8.50579],[93.61391,8.50576],[93.6139,8.50573],[93.6139,8.5057],[93.61389,8.50567],[93.61389,8.50563],[93.6139,8.5056],[93.61391,8.50556],[93.61393,8.50553],[93.61394,8.50551],[93.61396,8.5055],[93.61399,8.50549],[93.61402,8.50548],[93.61406,8.50548]]],[[[93.6231,8.50494],[93.62304,8.50501],[93.62298,8.50506],[93.6229,8.50509],[93.62284,8.50508],[93.62282,8.50504],[93.62282,8.50501],[93.62283,8.50495],[93.62288,8.50489],[93.62293,8.50484],[93.62298,8.50481],[93.62305,8.50479],[93.62309,8.50478],[93.62313,8.5048],[93.62314,8.50483],[93.62314,8.50486],[93.62313,8.50486],[93.6231,8.50494]]],[[[93.62215,8.5079],[93.62212,8.50792],[93.62205,8.50793],[93.62194,8.50791],[93.62189,8.50789],[93.62185,8.50786],[93.62183,8.50782],[93.62184,8.50778],[93.62188,8.50774],[93.62194,8.50771],[93.622,8.50771],[93.62207,8.50773],[93.62212,8.50778],[93.62214,8.50781],[93.62215,8.50786],[93.62214,8.50786],[93.62215,8.5079]]],[[[93.60826,8.52239],[93.60832,8.52239],[93.60837,8.52242],[93.6084,8.52245],[93.60841,8.52248],[93.6084,8.52252],[93.60838,8.52257],[93.60829,8.52264],[93.6082,8.52268],[93.60815,8.52271],[93.60811,8.52274],[93.60807,8.52283],[93.60805,8.52285],[93.60803,8.52287],[93.608,8.52288],[93.60797,8.52287],[93.60794,8.52286],[93.60791,8.52283],[93.60789,8.5228],[93.60787,8.52276],[93.60786,8.52271],[93.60787,8.52267],[93.60789,8.52263],[93.60792,8.52259],[93.60804,8.52248],[93.6081,8.52244],[93.60815,8.52241],[93.60821,8.52239],[93.60826,8.52239]]],[[[93.60998,8.52297],[93.61001,8.52302],[93.61002,8.52315],[93.61,8.52322],[93.60999,8.5233],[93.60995,8.52335],[93.60988,8.52337],[93.60981,8.52334],[93.60977,8.52326],[93.60977,8.52315],[93.60979,8.52307],[93.60982,8.523],[93.60989,8.52296],[93.60998,8.52297]]],[[[93.61089,8.52628],[93.61093,8.5263],[93.61095,8.52636],[93.61095,8.52643],[93.6109,8.52652],[93.61082,8.52661],[93.61072,8.52677],[93.61069,8.52682],[93.61066,8.52685],[93.61063,8.52686],[93.61059,8.52685],[93.61058,8.52683],[93.61057,8.52678],[93.61059,8.52673],[93.61062,8.52668],[93.61066,8.52664],[93.61067,8.52661],[93.61068,8.52654],[93.61069,8.52647],[93.61073,8.52638],[93.61077,8.52631],[93.61081,8.52628],[93.61084,8.52627],[93.61089,8.52628]]],[[[93.60893,8.52803],[93.60889,8.52805],[93.60884,8.52806],[93.6088,8.52806],[93.60877,8.52806],[93.60874,8.52804],[93.60872,8.52802],[93.60872,8.52799],[93.60874,8.52795],[93.60882,8.52788],[93.60887,8.52787],[93.60898,8.52785],[93.60907,8.52784],[93.60911,8.52784],[93.60914,8.52785],[93.60917,8.52788],[93.6092,8.5279],[93.60921,8.52792],[93.60922,8.52794],[93.60922,8.52796],[93.60921,8.52798],[93.60919,8.528],[93.60915,8.52802],[93.6091,8.52803],[93.609,8.52803],[93.60896,8.52802],[93.60893,8.52803]]],[[[93.61966,8.5275],[93.6197,8.52757],[93.61971,8.52763],[93.61969,8.52768],[93.61965,8.52769],[93.61959,8.52768],[93.61951,8.52765],[93.61945,8.52757],[93.61941,8.52749],[93.61939,8.52742],[93.61939,8.52734],[93.61942,8.5273],[93.61945,8.52727],[93.61951,8.52727],[93.61955,8.5273],[93.61959,8.52734],[93.61962,8.52742],[93.61962,8.52741],[93.61966,8.5275]]],[[[93.61548,8.52945],[93.61545,8.52949],[93.61539,8.52955],[93.61532,8.52958],[93.61522,8.52956],[93.61513,8.5295],[93.61512,8.52945],[93.61512,8.52936],[93.61519,8.52929],[93.61528,8.52926],[93.61535,8.52925],[93.61541,8.52926],[93.61546,8.52928],[93.61549,8.52931],[93.61549,8.52938],[93.61549,8.52937],[93.61548,8.52945]]],[[[93.61371,8.53041],[93.61379,8.53043],[93.61383,8.53048],[93.61388,8.53056],[93.61389,8.53065],[93.61386,8.5307],[93.61381,8.53074],[93.61373,8.53077],[93.61369,8.53077],[93.61361,8.53072],[93.61357,8.53066],[93.61356,8.53057],[93.61357,8.53052],[93.6136,8.53046],[93.61364,8.53041],[93.61372,8.5304],[93.61371,8.53041]]],[[[93.613,8.53267],[93.61306,8.53269],[93.61311,8.53274],[93.61314,8.53279],[93.61314,8.53285],[93.61313,8.5329],[93.6131,8.53293],[93.61301,8.53294],[93.61295,8.53292],[93.6129,8.53289],[93.61286,8.53278],[93.61285,8.53278],[93.61286,8.53272],[93.61289,8.53269],[93.61294,8.53268],[93.613,8.53267]]],[[[93.61215,8.53674],[93.61219,8.53676],[93.61223,8.53683],[93.61224,8.5369],[93.61224,8.53696],[93.61222,8.53701],[93.61219,8.53711],[93.61218,8.53719],[93.61216,8.53723],[93.61212,8.53726],[93.61205,8.53728],[93.61199,8.53726],[93.61196,8.53722],[93.61196,8.53717],[93.61198,8.53712],[93.61201,8.53707],[93.61204,8.53694],[93.61205,8.53688],[93.61207,8.53678],[93.6121,8.53674],[93.61215,8.53674]]],[[[93.60247,8.53861],[93.60251,8.53865],[93.60255,8.53869],[93.60257,8.53875],[93.60259,8.53881],[93.60261,8.53887],[93.60266,8.5389],[93.6027,8.53892],[93.60279,8.53892],[93.60284,8.53892],[93.6029,8.53894],[93.60294,8.53898],[93.60295,8.53903],[93.60294,8.53909],[93.6029,8.53914],[93.60285,8.53917],[93.60266,8.53924],[93.60262,8.53926],[93.60257,8.5393],[93.60251,8.53932],[93.60238,8.53934],[93.60233,8.53931],[93.60229,8.53927],[93.60227,8.53923],[93.60226,8.53917],[93.60226,8.53911],[93.60229,8.53907],[93.60234,8.53903],[93.60236,8.53897],[93.60236,8.53892],[93.60234,8.53886],[93.60233,8.53876],[93.60233,8.5387],[93.60236,8.53865],[93.60239,8.53863],[93.60243,8.53861],[93.60247,8.53861]]],[[[93.61258,8.53844],[93.61257,8.53851],[93.61255,8.53863],[93.61254,8.5387],[93.61251,8.53873],[93.61247,8.53875],[93.61241,8.53875],[93.61236,8.53874],[93.61231,8.53871],[93.61229,8.53866],[93.6123,8.5386],[93.61241,8.53841],[93.61241,8.53842],[93.61244,8.53837],[93.61248,8.53832],[93.61251,8.53831],[93.61256,8.53831],[93.61258,8.53832],[93.61259,8.53835],[93.61259,8.5384],[93.61258,8.53844]]],[[[93.60054,8.54963],[93.60058,8.54965],[93.60061,8.54969],[93.60063,8.54972],[93.60063,8.54981],[93.60061,8.54989],[93.60058,8.54992],[93.60054,8.54994],[93.6005,8.54995],[93.60044,8.54995],[93.60041,8.54993],[93.60037,8.5499],[93.60035,8.54987],[93.60034,8.54983],[93.60033,8.54979],[93.60032,8.54975],[93.60033,8.54971],[93.60036,8.54968],[93.6004,8.54965],[93.60044,8.54963],[93.60049,8.54962],[93.60054,8.54963]]],[[[93.61013,8.54935],[93.61018,8.54939],[93.61023,8.54945],[93.61028,8.54948],[93.61043,8.54951],[93.61047,8.54956],[93.61049,8.54963],[93.61049,8.5497],[93.61045,8.54974],[93.61038,8.54978],[93.6103,8.54984],[93.61021,8.54995],[93.61015,8.55001],[93.61005,8.55003],[93.60998,8.54998],[93.60991,8.5499],[93.6099,8.54976],[93.6099,8.54965],[93.60993,8.54955],[93.60995,8.54942],[93.61001,8.54935],[93.61008,8.54933],[93.61013,8.54935]]],[[[93.60938,8.55053],[93.60945,8.55061],[93.60952,8.55069],[93.60954,8.55077],[93.60956,8.55082],[93.60954,8.55089],[93.60948,8.55097],[93.60945,8.55101],[93.60941,8.55107],[93.60938,8.55111],[93.60934,8.55115],[93.60931,8.55114],[93.60927,8.55111],[93.60924,8.55103],[93.60925,8.55089],[93.60924,8.55081],[93.60919,8.55069],[93.60919,8.55064],[93.60919,8.55059],[93.60921,8.55055],[93.60926,8.55052],[93.60932,8.55051],[93.60938,8.55053]]],[[[93.5999,8.55791],[93.59993,8.55793],[93.59991,8.55799],[93.59989,8.55804],[93.59985,8.55805],[93.59979,8.55805],[93.59976,8.55803],[93.59978,8.55796],[93.59983,8.55791],[93.59986,8.5579],[93.5999,8.55791]]],[[[93.59998,8.5582],[93.60002,8.55822],[93.60003,8.55827],[93.59991,8.5584],[93.59984,8.55845],[93.5998,8.55847],[93.59973,8.55845],[93.59967,8.55839],[93.59967,8.55833],[93.59972,8.55827],[93.59981,8.55822],[93.59989,8.5582],[93.59998,8.5582]]],[[[93.60007,8.55853],[93.60008,8.55857],[93.60005,8.55861],[93.60001,8.55865],[93.59996,8.55866],[93.59991,8.55864],[93.59991,8.5586],[93.59993,8.55856],[93.60004,8.5585],[93.60007,8.55853]]],[[[93.59953,8.55844],[93.59955,8.55846],[93.59957,8.55847],[93.59958,8.55849],[93.59959,8.55851],[93.59959,8.55854],[93.59959,8.55865],[93.59959,8.55867],[93.59957,8.5587],[93.59956,8.55871],[93.59954,8.55873],[93.59951,8.55873],[93.59949,8.55872],[93.59947,8.55871],[93.59946,8.55869],[93.59945,8.55867],[93.59943,8.55862],[93.59943,8.5586],[93.59942,8.55857],[93.59942,8.55854],[93.59943,8.5585],[93.59945,8.55847],[93.59946,8.55845],[93.5995,8.55844],[93.59953,8.55844]]],[[[93.61114,8.55811],[93.6112,8.55821],[93.61122,8.55833],[93.61118,8.55838],[93.61112,8.55838],[93.611,8.5583],[93.61092,8.55815],[93.61094,8.55807],[93.61098,8.55804],[93.61105,8.55806],[93.61105,8.55805],[93.61114,8.55811]]],[[[93.61036,8.55831],[93.61039,8.55834],[93.61042,8.55839],[93.61045,8.55843],[93.61045,8.55848],[93.61045,8.55855],[93.61044,8.55861],[93.61042,8.55865],[93.61039,8.55869],[93.61034,8.55871],[93.61026,8.55871],[93.61022,8.55867],[93.61019,8.55864],[93.61019,8.55851],[93.61022,8.55843],[93.61023,8.55839],[93.61026,8.55834],[93.61028,8.55831],[93.61032,8.5583],[93.61036,8.55831]]],[[[93.61099,8.55835],[93.61103,8.55839],[93.61106,8.55843],[93.61108,8.55847],[93.61109,8.55853],[93.61108,8.5586],[93.61107,8.55865],[93.61106,8.5587],[93.61103,8.55874],[93.61098,8.55876],[93.6109,8.55876],[93.61085,8.55872],[93.61083,8.55868],[93.61083,8.55855],[93.61086,8.55848],[93.61087,8.55844],[93.61089,8.55839],[93.61092,8.55835],[93.61096,8.55835],[93.61099,8.55835]]],[[[93.60075,8.56148],[93.60082,8.5615],[93.60084,8.56152],[93.60086,8.56154],[93.60087,8.56157],[93.60087,8.56158],[93.60085,8.56165],[93.60086,8.56169],[93.60086,8.56171],[93.60085,8.56172],[93.60082,8.56172],[93.6008,8.5617],[93.60077,8.56168],[93.60072,8.56162],[93.6007,8.5616],[93.60068,8.56158],[93.60065,8.56155],[93.60063,8.56153],[93.60063,8.56151],[93.60064,8.5615],[93.60067,8.56148],[93.60072,8.56148],[93.60075,8.56148]]],[[[93.6006,8.56165],[93.60062,8.56167],[93.60063,8.56168],[93.60063,8.56172],[93.6006,8.56181],[93.60059,8.56183],[93.60059,8.56186],[93.60056,8.5619],[93.60054,8.56192],[93.60052,8.56193],[93.6005,8.56194],[93.60048,8.56194],[93.60046,8.56194],[93.60044,8.56192],[93.60043,8.56189],[93.60043,8.56185],[93.60044,8.56183],[93.60045,8.56181],[93.60049,8.56173],[93.6005,8.56171],[93.60054,8.56167],[93.60056,8.56166],[93.60058,8.56165],[93.6006,8.56165]]],[[[93.61083,8.56084],[93.61082,8.56089],[93.61079,8.56094],[93.61073,8.56098],[93.61065,8.56098],[93.61059,8.56093],[93.61057,8.56087],[93.61057,8.56079],[93.61059,8.56072],[93.61064,8.56067],[93.6107,8.56065],[93.61076,8.56066],[93.61079,8.56067],[93.61081,8.5607],[93.61083,8.56075],[93.61082,8.56075],[93.61083,8.56084]]],[[[93.60126,8.56312],[93.60136,8.56324],[93.60142,8.56334],[93.60145,8.56341],[93.60143,8.56345],[93.60137,8.56346],[93.60122,8.56345],[93.6011,8.56339],[93.601,8.56329],[93.60101,8.56321],[93.60105,8.56314],[93.60113,8.56307],[93.60126,8.56312]]],[[[93.60069,8.56378],[93.60054,8.56396],[93.6005,8.564],[93.60047,8.564],[93.60044,8.564],[93.60039,8.56397],[93.60037,8.56394],[93.60037,8.56391],[93.6004,8.56386],[93.60043,8.56382],[93.60047,8.56371],[93.60048,8.56367],[93.60045,8.56357],[93.6004,8.56349],[93.60036,8.56341],[93.60037,8.56338],[93.60041,8.5633],[93.60049,8.56327],[93.60058,8.56327],[93.60061,8.56328],[93.60073,8.56342],[93.60077,8.56343],[93.60083,8.56343],[93.60091,8.56345],[93.60094,8.56347],[93.60099,8.56352],[93.60099,8.56356],[93.60099,8.56362],[93.60098,8.56366],[93.60098,8.5637],[93.60096,8.56373],[93.60093,8.56376],[93.60088,8.56378],[93.60079,8.56377],[93.60071,8.56377],[93.60069,8.56378]]],[[[93.60319,8.56336],[93.60319,8.56346],[93.60308,8.5637],[93.60297,8.56386],[93.60287,8.56402],[93.60277,8.56409],[93.6027,8.56392],[93.60277,8.56385],[93.60291,8.56374],[93.60296,8.56365],[93.60296,8.56347],[93.603,8.56334],[93.60319,8.56336]]],[[[93.60305,8.56465],[93.60307,8.56469],[93.60308,8.56474],[93.60305,8.56481],[93.60298,8.56486],[93.6029,8.56487],[93.60283,8.56486],[93.60279,8.56482],[93.60278,8.56476],[93.60284,8.5647],[93.60292,8.56467],[93.603,8.56465],[93.60305,8.56465]]],[[[93.61054,8.56387],[93.61054,8.56393],[93.61052,8.56402],[93.61047,8.56418],[93.61042,8.56423],[93.61037,8.56427],[93.6103,8.56429],[93.61022,8.56427],[93.61017,8.56424],[93.61016,8.56419],[93.61015,8.56414],[93.61017,8.56409],[93.61022,8.56404],[93.61031,8.564],[93.61032,8.56397],[93.61032,8.56392],[93.61032,8.56381],[93.61034,8.56374],[93.61036,8.56372],[93.61042,8.56368],[93.61046,8.56368],[93.61051,8.56373],[93.61052,8.56379],[93.61052,8.56379],[93.61054,8.56387]]],[[[93.6033,8.56542],[93.60335,8.56545],[93.60338,8.5655],[93.60337,8.56556],[93.60334,8.56562],[93.60328,8.56567],[93.60326,8.56571],[93.60323,8.56584],[93.60315,8.56587],[93.60308,8.56585],[93.60305,8.56575],[93.60305,8.56569],[93.60311,8.56561],[93.60318,8.56545],[93.60324,8.56542],[93.6033,8.56542]]],[[[93.61118,8.56614],[93.61117,8.5662],[93.61115,8.56625],[93.61111,8.56628],[93.61105,8.56627],[93.611,8.56622],[93.61097,8.56614],[93.611,8.56608],[93.61103,8.56603],[93.61108,8.56601],[93.61112,8.56601],[93.61114,8.56604],[93.61117,8.56608],[93.61116,8.56608],[93.61118,8.56614]]],[[[93.60345,8.56679],[93.60349,8.56684],[93.60352,8.56692],[93.6035,8.56697],[93.60346,8.56702],[93.60338,8.56703],[93.60328,8.56701],[93.60321,8.56696],[93.60317,8.56689],[93.6032,8.56682],[93.6033,8.56677],[93.60342,8.56675],[93.60345,8.56679]]],[[[93.60299,8.56709],[93.60303,8.56713],[93.60303,8.56722],[93.60299,8.56731],[93.60289,8.56734],[93.6028,8.56732],[93.60278,8.56724],[93.60287,8.56712],[93.60294,8.5671],[93.60299,8.56709]]],[[[93.6073,8.56995],[93.60734,8.57005],[93.60734,8.5701],[93.60732,8.57016],[93.60729,8.5702],[93.60727,8.57023],[93.60724,8.57024],[93.60722,8.57024],[93.60716,8.57022],[93.60714,8.57017],[93.60713,8.57011],[93.60714,8.57005],[93.60716,8.56999],[93.60721,8.56995],[93.60726,8.56993],[93.6073,8.56995]]],[[[93.60759,8.57025],[93.60765,8.57027],[93.60768,8.57029],[93.60768,8.57034],[93.60768,8.57038],[93.60767,8.5704],[93.60763,8.57044],[93.60758,8.57047],[93.60755,8.5705],[93.6075,8.57051],[93.60745,8.57051],[93.60741,8.57047],[93.60739,8.57043],[93.60739,8.57038],[93.60742,8.57033],[93.60747,8.57028],[93.60753,8.57026],[93.60759,8.57025]]],[[[93.60762,8.57072],[93.60763,8.57072],[93.60772,8.57078],[93.60775,8.57084],[93.60774,8.57089],[93.60772,8.57092],[93.60766,8.57094],[93.60759,8.57094],[93.60754,8.57093],[93.6075,8.57088],[93.6075,8.57078],[93.60754,8.57072],[93.60757,8.57071],[93.60762,8.57072]]],[[[93.60719,8.57321],[93.60721,8.57323],[93.60722,8.5733],[93.60721,8.57337],[93.60718,8.57344],[93.60714,8.57349],[93.60707,8.57352],[93.60701,8.5735],[93.60696,8.57346],[93.60695,8.57341],[93.60695,8.57336],[93.60698,8.5733],[93.60708,8.57322],[93.60708,8.57321],[93.60711,8.5732],[93.60714,8.57319],[93.60719,8.57321]]],[[[93.60261,8.574],[93.60263,8.57403],[93.60263,8.57408],[93.60262,8.57412],[93.60258,8.57415],[93.60252,8.57418],[93.60246,8.57418],[93.6024,8.57416],[93.60236,8.57412],[93.60231,8.57406],[93.60228,8.57399],[93.60229,8.574],[93.60226,8.57394],[93.60226,8.5739],[93.60228,8.57387],[93.60233,8.57386],[93.60239,8.57388],[93.60256,8.57396],[93.60261,8.574]]],[[[93.60653,8.57369],[93.60657,8.57372],[93.60659,8.57375],[93.6066,8.57378],[93.60659,8.57382],[93.60657,8.57387],[93.60654,8.57391],[93.60649,8.57394],[93.60645,8.57394],[93.60639,8.5739],[93.60637,8.57385],[93.60637,8.5738],[93.6064,8.57375],[93.60644,8.57372],[93.60644,8.57372],[93.60648,8.57369],[93.60653,8.57369]]],[[[93.60201,8.5741],[93.60209,8.57412],[93.60212,8.57416],[93.60212,8.57423],[93.60207,8.57428],[93.60203,8.57435],[93.60194,8.57439],[93.60181,8.57439],[93.60175,8.57434],[93.60174,8.57427],[93.60178,8.57421],[93.60184,8.57415],[93.60192,8.5741],[93.60201,8.5741]]],[[[93.60306,8.57473],[93.60304,8.57475],[93.60299,8.57477],[93.60293,8.57477],[93.60287,8.57473],[93.60288,8.57473],[93.60284,8.57468],[93.60283,8.57465],[93.60284,8.57458],[93.60289,8.57455],[93.60295,8.57453],[93.60301,8.57457],[93.60304,8.57461],[93.60307,8.57467],[93.60306,8.57473]]],[[[93.60581,8.57446],[93.60577,8.57452],[93.60571,8.57453],[93.60565,8.57451],[93.6056,8.57445],[93.60561,8.57445],[93.60558,8.57441],[93.60558,8.57437],[93.6056,8.57432],[93.60563,8.57429],[93.60569,8.57428],[93.60575,8.57429],[93.60579,8.57434],[93.60581,8.5744],[93.60581,8.57446]]],[[[93.60561,8.57475],[93.60559,8.57477],[93.60555,8.5748],[93.60549,8.5748],[93.60542,8.57475],[93.60543,8.57476],[93.60539,8.57471],[93.60538,8.57467],[93.6054,8.57461],[93.60545,8.57457],[93.6055,8.57456],[93.60556,8.57459],[93.6056,8.57463],[93.60562,8.5747],[93.60561,8.57475]]],[[[93.60294,8.57504],[93.60297,8.57506],[93.60297,8.5751],[93.60294,8.57513],[93.6029,8.57517],[93.60286,8.57519],[93.60282,8.57519],[93.60279,8.57515],[93.60279,8.5751],[93.6028,8.57507],[93.60282,8.57506],[93.60286,8.57503],[93.6029,8.57503],[93.60294,8.57504]]],[[[93.60522,8.575],[93.60525,8.57502],[93.60525,8.57505],[93.60522,8.57509],[93.60518,8.57513],[93.60514,8.57515],[93.60511,8.57515],[93.60507,8.57511],[93.60507,8.57506],[93.60508,8.57503],[93.6051,8.57502],[93.60514,8.57499],[93.60518,8.57499],[93.60522,8.575]]],[[[93.60288,8.57542],[93.60289,8.57543],[93.6029,8.57545],[93.6029,8.57553],[93.60288,8.57555],[93.60284,8.57557],[93.60282,8.57556],[93.60279,8.57552],[93.60279,8.57548],[93.6028,8.57544],[93.60283,8.57542],[93.60286,8.57541],[93.60288,8.57542]]],[[[93.60281,8.57617],[93.60283,8.57621],[93.60282,8.57628],[93.60274,8.57639],[93.60272,8.57643],[93.60271,8.57645],[93.60268,8.57645],[93.60264,8.57638],[93.60264,8.57632],[93.60267,8.57625],[93.60271,8.57619],[93.60276,8.57616],[93.60281,8.57617]]],[[[93.60265,8.57645],[93.60267,8.57649],[93.60266,8.57656],[93.60262,8.57661],[93.6026,8.57666],[93.60254,8.57673],[93.60252,8.57673],[93.60249,8.57666],[93.60248,8.5766],[93.6025,8.57653],[93.60254,8.57647],[93.60259,8.57644],[93.60265,8.57645]]],[[[93.60592,8.57372],[93.60282,8.57723],[93.60307,8.57435],[93.60131,8.57302],[93.6033,8.5691],[93.60267,8.56795],[93.6045,8.566],[93.60335,8.56527],[93.60337,8.56341],[93.6014,8.56244],[93.60104,8.56137],[93.60169,8.56048],[93.60045,8.55838],[93.60146,8.55612],[93.60004,8.55379],[93.60183,8.55023],[93.60208,8.5478],[93.60021,8.54497],[93.60281,8.54228],[93.60334,8.53938],[93.60653,8.53849],[93.60778,8.53607],[93.60689,8.53468],[93.60711,8.5332],[93.60932,8.52961],[93.60875,8.52851],[93.61079,8.52871],[93.61105,8.52705],[93.61207,8.52632],[93.61197,8.52439],[93.61024,8.52248],[93.61357,8.51924],[93.61424,8.514],[93.61545,8.51188],[93.615,8.50133],[93.61636,8.50068],[93.61392,8.49859],[93.615,8.49615],[93.61645,8.49502],[93.61598,8.49401],[93.61685,8.49177],[93.61868,8.4906],[93.61921,8.48661],[93.61801,8.48499],[93.61689,8.48564],[93.61434,8.48287],[93.6115,8.48304],[93.60944,8.48147],[93.60956,8.47954],[93.61075,8.47792],[93.60986,8.47514],[93.61199,8.47421],[93.61227,8.47471],[93.6128,8.47359],[93.61241,8.47107],[93.61131,8.47117],[93.61249,8.46952],[93.61192,8.46886],[93.61325,8.46647],[93.61377,8.46233],[93.61033,8.45761],[93.60806,8.45675],[93.61064,8.45353],[93.61052,8.45147],[93.60921,8.45116],[93.61035,8.45059],[93.61019,8.44655],[93.60844,8.44619],[93.60692,8.4446],[93.60746,8.44364],[93.60895,8.44343],[93.60989,8.44115],[93.61007,8.43845],[93.60945,8.43692],[93.60861,8.4375],[93.60833,8.43596],[93.61006,8.43388],[93.61202,8.42641],[93.61141,8.42398],[93.61301,8.42323],[93.61471,8.42498],[93.61772,8.43394],[93.61774,8.43789],[93.6162,8.44132],[93.6163,8.44202],[93.61757,8.44216],[93.61256,8.44954],[93.61459,8.45508],[93.61538,8.45512],[93.61515,8.45673],[93.61578,8.45662],[93.61565,8.46398],[93.61719,8.46808],[93.62117,8.47088],[93.62643,8.47145],[93.62898,8.46666],[93.63142,8.46611],[93.63235,8.46772],[93.63022,8.47444],[93.63083,8.4754],[93.63033,8.47904],[93.6291,8.4808],[93.63009,8.48432],[93.62813,8.48832],[93.62821,8.49192],[93.62656,8.49222],[93.62547,8.49436],[93.62573,8.49661],[93.62724,8.49853],[93.62147,8.50762],[93.62239,8.50964],[93.62596,8.51043],[93.62748,8.51261],[93.62693,8.51461],[93.62548,8.51548],[93.62444,8.51721],[93.62477,8.51803],[93.62293,8.52017],[93.62322,8.52152],[93.62454,8.52202],[93.62441,8.52308],[93.62554,8.52369],[93.62424,8.52549],[93.62201,8.52503],[93.62079,8.52655],[93.61897,8.52647],[93.61889,8.52745],[93.6147,8.52863],[93.61242,8.53173],[93.61266,8.53251],[93.61167,8.53254],[93.61271,8.53558],[93.61157,8.53749],[93.61212,8.53858],[93.61047,8.53997],[93.61127,8.54116],[93.61101,8.54264],[93.60921,8.54318],[93.60977,8.54542],[93.60873,8.5462],[93.60867,8.54755],[93.60993,8.54905],[93.60838,8.55202],[93.61017,8.55775],[93.61017,8.56589],[93.60898,8.56623],[93.60899,8.56864],[93.60724,8.5689],[93.60742,8.57279],[93.60592,8.57372]]],[[[93.59851,8.58287],[93.59851,8.58298],[93.59846,8.58307],[93.5984,8.58314],[93.59827,8.58321],[93.59817,8.58321],[93.59781,8.58311],[93.59776,8.58304],[93.59755,8.58293],[93.59726,8.58286],[93.59709,8.58289],[93.59672,8.58307],[93.59663,8.58309],[93.59652,8.58305],[93.59651,8.583],[93.59653,8.58265],[93.59639,8.58262],[93.59632,8.58264],[93.59627,8.58263],[93.59619,8.5826],[93.59617,8.58255],[93.59622,8.58236],[93.59662,8.58157],[93.59706,8.58109],[93.59738,8.58078],[93.59761,8.58049],[93.5977,8.58013],[93.59776,8.58003],[93.5978,8.57999],[93.59788,8.57996],[93.59808,8.57995],[93.59821,8.58],[93.59825,8.58004],[93.59826,8.58041],[93.59834,8.58055],[93.59838,8.5808],[93.59837,8.58099],[93.59841,8.58115],[93.59856,8.58148],[93.59855,8.5817],[93.59849,8.58178],[93.59847,8.58224],[93.59851,8.58287]]],[[[92.78603,9.245],[92.785,9.24716],[92.77803,9.25274],[92.77523,9.25821],[92.77143,9.25882],[92.77088,9.25744],[92.77222,9.25229],[92.77572,9.24575],[92.77333,9.24056],[92.77131,9.24021],[92.77209,9.24125],[92.76997,9.24054],[92.76957,9.23811],[92.77267,9.2376],[92.77246,9.23338],[92.77101,9.23056],[92.76816,9.22852],[92.76767,9.22573],[92.76865,9.22189],[92.76358,9.21739],[92.76372,9.21583],[92.76295,9.21582],[92.76324,9.21725],[92.75756,9.21641],[92.755,9.21797],[92.74661,9.21662],[92.74579,9.21409],[92.74414,9.21387],[92.7395,9.21838],[92.73314,9.21695],[92.72931,9.22035],[92.72496,9.22138],[92.72172,9.2206],[92.71775,9.21456],[92.7166,9.20921],[92.71751,9.19878],[92.71614,9.19637],[92.71628,9.18991],[92.71783,9.18438],[92.71749,9.17255],[92.71562,9.16702],[92.71444,9.1544],[92.71541,9.15331],[92.71563,9.14785],[92.71897,9.14233],[92.72211,9.13964],[92.72316,9.13551],[92.72169,9.13394],[92.72732,9.1249],[92.74061,9.12446],[92.75302,9.12798],[92.75569,9.12588],[92.75978,9.12529],[92.76554,9.12712],[92.76699,9.12885],[92.76699,9.12742],[92.76808,9.12766],[92.77584,9.12155],[92.78484,9.11872],[92.79569,9.1209],[92.79907,9.12059],[92.80073,9.12121],[92.80227,9.12335],[92.80389,9.12322],[92.8062,9.12491],[92.80707,9.12389],[92.81069,9.12703],[92.81074,9.1281],[92.81151,9.12748],[92.81195,9.12947],[92.81059,9.12845],[92.80973,9.13125],[92.81201,9.13255],[92.81409,9.13555],[92.81924,9.13755],[92.82558,9.13699],[92.8273,9.13884],[92.82628,9.1524],[92.83,9.16179],[92.83056,9.16817],[92.82987,9.17196],[92.82782,9.17342],[92.82675,9.17793],[92.82338,9.18062],[92.8245,9.18973],[92.81767,9.21199],[92.81138,9.22117],[92.798,9.23272],[92.78983,9.24268],[92.78603,9.245]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"604","area_level":"District","area_name":"Nuh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.97809,28.33153],[76.97745,28.33564],[76.97591,28.33166],[76.97246,28.33104],[76.97036,28.32659],[76.9599,28.32778],[76.95802,28.32339],[76.95429,28.32298],[76.95452,28.32033],[76.95154,28.31841],[76.95279,28.31682],[76.95082,28.31409],[76.9488,28.31821],[76.94779,28.31666],[76.94451,28.31875],[76.93956,28.31687],[76.93671,28.31946],[76.93517,28.31888],[76.93196,28.32472],[76.9154,28.30015],[76.91093,28.3017],[76.90944,28.2994],[76.90464,28.30239],[76.90336,28.30081],[76.90599,28.29566],[76.90389,28.29176],[76.9102,28.28712],[76.91712,28.27833],[76.91342,28.26538],[76.91227,28.26367],[76.9069,28.26428],[76.89728,28.25338],[76.89278,28.25347],[76.87527,28.26393],[76.86982,28.25557],[76.86739,28.2561],[76.86544,28.24793],[76.85775,28.2356],[76.85878,28.22884],[76.85294,28.22071],[76.85761,28.2212],[76.8749,28.21777],[76.87274,28.21505],[76.87306,28.21102],[76.871,28.20659],[76.87271,28.2058],[76.87836,28.20712],[76.88887,28.2032],[76.89088,28.20496],[76.90677,28.20031],[76.90618,28.1973],[76.90205,28.19898],[76.89864,28.19335],[76.89226,28.19323],[76.89252,28.18359],[76.90245,28.18111],[76.9015,28.17866],[76.90702,28.17295],[76.90654,28.17189],[76.91973,28.1669],[76.93199,28.15305],[76.95095,28.14988],[76.94816,28.14221],[76.95792,28.14222],[76.97055,28.13843],[76.96195,28.11127],[76.96142,28.09958],[76.95795,28.08751],[76.95791,28.07745],[76.95457,28.07313],[76.95384,28.0626],[76.94839,28.05795],[76.9396,28.04298],[76.93635,28.01206],[76.93061,27.99335],[76.93285,27.98902],[76.93351,27.98161],[76.93794,27.98282],[76.93366,27.97129],[76.9333,27.9617],[76.93074,27.9533],[76.93154,27.92235],[76.95162,27.91803],[76.9496,27.90927],[76.95057,27.89564],[76.94163,27.89708],[76.93766,27.89622],[76.93746,27.87809],[76.94129,27.86418],[76.94148,27.8555],[76.943,27.85357],[76.94232,27.84262],[76.9357,27.82881],[76.91502,27.83454],[76.91358,27.8317],[76.90999,27.8149],[76.91404,27.80811],[76.91861,27.80744],[76.919,27.80414],[76.91363,27.80101],[76.91152,27.79609],[76.91334,27.78859],[76.90904,27.78691],[76.90617,27.78778],[76.90761,27.78235],[76.9064,27.77889],[76.90228,27.77534],[76.90215,27.77136],[76.90365,27.76933],[76.90084,27.76466],[76.90055,27.74737],[76.90169,27.74397],[76.89986,27.73671],[76.89698,27.73812],[76.89255,27.73233],[76.89241,27.72567],[76.89436,27.72435],[76.89452,27.71783],[76.89878,27.71647],[76.90478,27.71734],[76.91423,27.71319],[76.91904,27.7098],[76.92103,27.70309],[76.92473,27.69992],[76.92061,27.69571],[76.91642,27.69813],[76.90863,27.69368],[76.89514,27.70115],[76.88988,27.70075],[76.89033,27.69571],[76.90623,27.68629],[76.89859,27.67754],[76.91089,27.66802],[76.90671,27.66169],[76.91206,27.65797],[76.91083,27.65467],[76.91557,27.65227],[76.92692,27.66126],[76.93223,27.65881],[76.93336,27.65603],[76.93822,27.66647],[76.94377,27.67372],[76.95313,27.66804],[76.95486,27.66469],[76.95876,27.66243],[76.96267,27.66199],[76.96613,27.65839],[76.97937,27.6536],[76.98206,27.67612],[76.98861,27.69299],[76.9872,27.69515],[76.99039,27.7095],[77.0001,27.73697],[77.01152,27.73108],[77.01982,27.74577],[77.02509,27.7439],[77.0261,27.74638],[77.03394,27.74522],[77.03647,27.74861],[77.04507,27.74328],[77.04452,27.7419],[77.04685,27.73972],[77.04614,27.7373],[77.05032,27.73504],[77.04874,27.73153],[77.05963,27.72648],[77.06543,27.7314],[77.07281,27.73115],[77.07724,27.73551],[77.08566,27.73809],[77.08248,27.74588],[77.07819,27.7512],[77.0802,27.75725],[77.07635,27.76632],[77.07456,27.76701],[77.07209,27.76446],[77.06962,27.76747],[77.05955,27.76091],[77.05585,27.76342],[77.05758,27.77001],[77.05614,27.7712],[77.03577,27.78153],[77.0344,27.77811],[77.02658,27.77924],[77.03871,27.81012],[77.04057,27.81257],[77.04438,27.81216],[77.04583,27.81496],[77.04272,27.81828],[77.0448,27.82098],[77.0538,27.81694],[77.05556,27.81792],[77.06386,27.81126],[77.07462,27.81356],[77.08167,27.80625],[77.0808,27.80408],[77.10848,27.78548],[77.1131,27.78642],[77.12285,27.79262],[77.13452,27.78604],[77.1318,27.77807],[77.13522,27.77509],[77.14358,27.78559],[77.15651,27.78453],[77.15753,27.78562],[77.16081,27.79258],[77.16155,27.80329],[77.15659,27.80959],[77.15732,27.81348],[77.15997,27.81665],[77.16723,27.81295],[77.17985,27.81715],[77.18944,27.80902],[77.1847,27.8025],[77.18242,27.80203],[77.17893,27.80438],[77.17357,27.79441],[77.1691,27.7909],[77.17702,27.78547],[77.1778,27.7871],[77.1833,27.78678],[77.19045,27.79434],[77.19268,27.79412],[77.19857,27.79882],[77.19146,27.80683],[77.19265,27.80817],[77.19135,27.80908],[77.19784,27.81586],[77.20207,27.82376],[77.20338,27.82344],[77.20671,27.81377],[77.21333,27.80765],[77.21065,27.8011],[77.22238,27.79588],[77.22658,27.79858],[77.2326,27.7965],[77.23837,27.79182],[77.23491,27.78929],[77.23389,27.78596],[77.24174,27.78354],[77.24812,27.79119],[77.25237,27.79069],[77.2613,27.80019],[77.26876,27.81494],[77.28372,27.80105],[77.29015,27.81044],[77.29857,27.81519],[77.29648,27.82522],[77.30356,27.82553],[77.30648,27.82752],[77.31081,27.82577],[77.3125,27.82799],[77.3207,27.82534],[77.33643,27.83423],[77.33293,27.83497],[77.33199,27.83746],[77.33516,27.842],[77.33516,27.84742],[77.32184,27.85766],[77.32378,27.86032],[77.32453,27.87191],[77.31154,27.88433],[77.29663,27.89157],[77.29107,27.88943],[77.28712,27.88583],[77.2841,27.89163],[77.26381,27.89803],[77.25583,27.89131],[77.25437,27.88174],[77.24975,27.88209],[77.24989,27.8905],[77.2443,27.89475],[77.23429,27.89617],[77.23492,27.89925],[77.22967,27.90241],[77.22629,27.91246],[77.22181,27.91798],[77.22168,27.92501],[77.20889,27.93267],[77.20659,27.93819],[77.18738,27.9506],[77.17983,27.94938],[77.18356,27.94163],[77.18166,27.94028],[77.17294,27.94364],[77.17577,27.9469],[77.17054,27.95114],[77.1674,27.95139],[77.16604,27.94907],[77.16459,27.95137],[77.15827,27.94757],[77.15587,27.95281],[77.15633,27.95718],[77.151,27.95846],[77.14444,27.96292],[77.14321,27.96957],[77.14458,27.96925],[77.14995,27.97509],[77.15207,27.97995],[77.14809,27.98889],[77.15208,27.99463],[77.14756,27.99909],[77.13527,28.00028],[77.13772,28.00593],[77.14585,28.01419],[77.14665,28.02003],[77.14936,28.02338],[77.14931,28.02697],[77.14554,28.02915],[77.14567,28.03677],[77.14046,28.03695],[77.14206,28.04048],[77.13924,28.04156],[77.148,28.0555],[77.14709,28.05833],[77.14059,28.06272],[77.13941,28.06649],[77.14126,28.0699],[77.13335,28.07242],[77.13518,28.08516],[77.1432,28.10002],[77.13802,28.10607],[77.13318,28.10664],[77.12928,28.11175],[77.12063,28.11463],[77.12659,28.12547],[77.13396,28.12889],[77.13566,28.13318],[77.14429,28.14211],[77.14469,28.14735],[77.15409,28.15966],[77.16632,28.169],[77.16837,28.17259],[77.16514,28.17469],[77.16475,28.17924],[77.17263,28.18945],[77.18675,28.18379],[77.19249,28.18374],[77.1985,28.19634],[77.18943,28.20506],[77.18975,28.20777],[77.19169,28.20873],[77.18865,28.21078],[77.18636,28.20866],[77.1827,28.20993],[77.17185,28.199],[77.16734,28.20314],[77.16538,28.21019],[77.16222,28.21291],[77.15298,28.21715],[77.14914,28.21669],[77.13888,28.22515],[77.13443,28.22636],[77.13117,28.2254],[77.12063,28.21797],[77.11683,28.21995],[77.11497,28.2188],[77.10599,28.22343],[77.1067,28.22527],[77.10299,28.2275],[77.10171,28.22599],[77.0997,28.22671],[77.09639,28.22064],[77.09409,28.21991],[77.09306,28.22269],[77.08678,28.22479],[77.08162,28.22993],[77.07652,28.22482],[77.07194,28.21434],[77.06562,28.21772],[77.06462,28.21616],[77.062,28.21675],[77.06099,28.21974],[77.05474,28.22306],[77.05769,28.22907],[77.05851,28.24042],[77.05636,28.24401],[77.03367,28.24533],[77.0314,28.24764],[77.02318,28.24725],[77.02099,28.24872],[77.01988,28.27695],[77.01774,28.28331],[77.0129,28.28908],[77.00993,28.30365],[77.01081,28.30549],[77.00353,28.31103],[77.00313,28.31508],[77.00016,28.31907],[76.99999,28.3266],[76.99307,28.32832],[76.98707,28.32655],[76.98506,28.32828],[76.98607,28.33073],[76.98439,28.33181],[76.97905,28.32992],[76.97809,28.33153]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"605","area_level":"District","area_name":"Barnala","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.47457,30.60249],[75.4643,30.60579],[75.46412,30.59927],[75.46109,30.59831],[75.45403,30.601],[75.44495,30.59174],[75.44219,30.59403],[75.43692,30.59067],[75.43405,30.59305],[75.43094,30.58388],[75.42188,30.58523],[75.41451,30.58328],[75.40913,30.5839],[75.40518,30.57542],[75.40664,30.5672],[75.404,30.56673],[75.40926,30.56184],[75.40884,30.5587],[75.41602,30.55675],[75.41961,30.55345],[75.41952,30.54867],[75.4137,30.54362],[75.40953,30.53565],[75.40018,30.52826],[75.38935,30.52731],[75.38609,30.5246],[75.37548,30.52162],[75.37443,30.51841],[75.37211,30.51778],[75.37089,30.5186],[75.36848,30.51706],[75.3673,30.51933],[75.36109,30.51529],[75.36044,30.51283],[75.35555,30.51647],[75.34695,30.51677],[75.34479,30.51467],[75.33457,30.52084],[75.33375,30.52599],[75.32997,30.5259],[75.33198,30.52807],[75.33092,30.5332],[75.32259,30.53814],[75.32034,30.53583],[75.31275,30.53549],[75.31176,30.5284],[75.30795,30.52646],[75.30428,30.52742],[75.30165,30.52246],[75.29302,30.51593],[75.29409,30.51162],[75.28811,30.50882],[75.28533,30.51026],[75.28287,30.50796],[75.2777,30.49125],[75.25965,30.47306],[75.25365,30.46375],[75.25822,30.45992],[75.26773,30.44524],[75.26197,30.44388],[75.26324,30.44085],[75.26225,30.4397],[75.265,30.43641],[75.28306,30.44179],[75.2904,30.42858],[75.29979,30.42443],[75.3054,30.41801],[75.29927,30.4078],[75.30238,30.40281],[75.30052,30.39759],[75.30338,30.39663],[75.30481,30.38772],[75.30684,30.38708],[75.30552,30.37884],[75.31298,30.38068],[75.32187,30.37582],[75.32642,30.37906],[75.33154,30.37725],[75.33346,30.37799],[75.33234,30.37046],[75.32711,30.36289],[75.32713,30.35775],[75.32494,30.35626],[75.32612,30.35469],[75.32463,30.3508],[75.32728,30.35148],[75.33266,30.34901],[75.33964,30.34298],[75.34435,30.34408],[75.34521,30.33713],[75.34393,30.3343],[75.33274,30.33264],[75.32399,30.33624],[75.32063,30.33541],[75.31476,30.33236],[75.31387,30.32712],[75.3187,30.32451],[75.3218,30.3167],[75.3191,30.31054],[75.32057,30.30864],[75.31845,30.30851],[75.31758,30.30501],[75.31853,30.30273],[75.32235,30.30246],[75.32375,30.30466],[75.32747,30.30478],[75.32778,30.30628],[75.32924,30.3051],[75.33417,30.3064],[75.34648,30.3002],[75.33971,30.29246],[75.34196,30.28546],[75.34617,30.28499],[75.34898,30.28277],[75.35505,30.28706],[75.36159,30.2847],[75.36393,30.2823],[75.3613,30.2677],[75.36468,30.26371],[75.3684,30.26353],[75.37131,30.26117],[75.36497,30.25788],[75.36793,30.2549],[75.36869,30.2475],[75.36622,30.24498],[75.36361,30.24484],[75.36381,30.24109],[75.37619,30.2372],[75.37707,30.22827],[75.375,30.21999],[75.36992,30.21408],[75.37258,30.21211],[75.37113,30.20988],[75.36242,30.20811],[75.3599,30.20566],[75.36567,30.20313],[75.36666,30.20542],[75.37008,30.20534],[75.37105,30.2024],[75.36929,30.20125],[75.36954,30.19896],[75.37399,30.19803],[75.3805,30.20425],[75.38643,30.2061],[75.38795,30.20932],[75.39028,30.2085],[75.39184,30.2098],[75.39349,30.20662],[75.39704,30.20677],[75.39356,30.20433],[75.39452,30.20213],[75.39266,30.20201],[75.39343,30.20039],[75.3956,30.20034],[75.40026,30.19472],[75.40616,30.1934],[75.41626,30.1863],[75.41823,30.1876],[75.42117,30.18638],[75.42714,30.18704],[75.4387,30.19152],[75.4394,30.19049],[75.45093,30.19123],[75.46181,30.19506],[75.48256,30.17897],[75.48181,30.17472],[75.48725,30.17448],[75.48725,30.17124],[75.48921,30.17038],[75.48888,30.16539],[75.4918,30.16351],[75.49186,30.16133],[75.48936,30.16043],[75.49212,30.15793],[75.49154,30.15494],[75.49439,30.15173],[75.50544,30.14588],[75.50723,30.14338],[75.5176,30.14337],[75.52293,30.13964],[75.5288,30.14115],[75.53408,30.14661],[75.53818,30.14223],[75.54883,30.13762],[75.55629,30.14333],[75.55787,30.14652],[75.56147,30.14764],[75.56445,30.14792],[75.57129,30.14409],[75.57706,30.144],[75.57833,30.14897],[75.57443,30.15152],[75.57604,30.15603],[75.5618,30.17028],[75.56268,30.17174],[75.55953,30.17645],[75.55562,30.17719],[75.55897,30.18181],[75.55635,30.18332],[75.55982,30.18704],[75.55648,30.19009],[75.55695,30.19304],[75.55534,30.19423],[75.55864,30.19833],[75.55806,30.20187],[75.56836,30.20244],[75.57249,30.20534],[75.57093,30.20697],[75.58067,30.21268],[75.58051,30.21567],[75.58524,30.21589],[75.58504,30.21946],[75.58019,30.22391],[75.58344,30.22789],[75.58696,30.22753],[75.58626,30.22657],[75.59228,30.22237],[75.6132,30.2171],[75.61834,30.21814],[75.61909,30.22081],[75.6316,30.22881],[75.6339,30.2284],[75.64245,30.2318],[75.64877,30.23809],[75.6702,30.2363],[75.67535,30.23692],[75.67532,30.23809],[75.68101,30.23999],[75.69173,30.23014],[75.6887,30.2371],[75.6872,30.23688],[75.68797,30.23997],[75.69169,30.23941],[75.69011,30.24071],[75.69251,30.24326],[75.69787,30.24189],[75.69701,30.24414],[75.69912,30.24565],[75.70044,30.25307],[75.70447,30.25255],[75.71201,30.25547],[75.71876,30.26019],[75.72093,30.26495],[75.71901,30.26771],[75.72069,30.27149],[75.72391,30.2742],[75.72904,30.27237],[75.73115,30.2751],[75.71631,30.28327],[75.70583,30.28496],[75.70488,30.28303],[75.69007,30.28414],[75.67891,30.28667],[75.67008,30.2909],[75.66507,30.29525],[75.66017,30.30551],[75.65551,30.31005],[75.65821,30.31646],[75.65002,30.33098],[75.65399,30.33722],[75.65626,30.3379],[75.66284,30.33448],[75.66755,30.33473],[75.68191,30.34573],[75.68028,30.34753],[75.68396,30.35143],[75.67697,30.35665],[75.67599,30.36388],[75.67749,30.36944],[75.67536,30.37234],[75.67756,30.37567],[75.67729,30.37891],[75.67365,30.3809],[75.67326,30.38263],[75.66884,30.38389],[75.66592,30.38791],[75.66705,30.39397],[75.66446,30.39841],[75.67038,30.40306],[75.66473,30.41054],[75.66995,30.4201],[75.66702,30.42123],[75.66592,30.42444],[75.66064,30.42849],[75.65533,30.42836],[75.65237,30.43544],[75.64932,30.43604],[75.64973,30.43807],[75.64638,30.44069],[75.65363,30.44805],[75.65829,30.44408],[75.6646,30.44788],[75.67277,30.45887],[75.67295,30.47064],[75.67536,30.4725],[75.66784,30.47405],[75.66479,30.47321],[75.66331,30.47701],[75.65802,30.48081],[75.65738,30.48494],[75.66042,30.49124],[75.65875,30.49565],[75.6619,30.49767],[75.67099,30.49903],[75.68027,30.51041],[75.67704,30.52114],[75.66527,30.52445],[75.66414,30.52855],[75.65845,30.52976],[75.65224,30.54304],[75.65902,30.55068],[75.66527,30.55268],[75.66538,30.55483],[75.65901,30.56265],[75.67139,30.57102],[75.67598,30.57969],[75.67623,30.58356],[75.68504,30.59047],[75.67702,30.59759],[75.66959,30.59432],[75.65277,30.59099],[75.63801,30.59432],[75.62679,30.60086],[75.60949,30.5949],[75.60947,30.59372],[75.60384,30.59415],[75.58958,30.58315],[75.5856,30.57528],[75.57988,30.57355],[75.57893,30.56961],[75.56586,30.57203],[75.55367,30.57993],[75.54884,30.58027],[75.54096,30.57843],[75.53703,30.56728],[75.53228,30.56773],[75.52835,30.57095],[75.52678,30.57922],[75.52895,30.58505],[75.52254,30.58528],[75.51868,30.58719],[75.51312,30.58409],[75.50992,30.58027],[75.50964,30.57602],[75.50668,30.57238],[75.50495,30.57413],[75.49912,30.57462],[75.48751,30.58274],[75.49668,30.5974],[75.49005,30.59844],[75.48417,30.602],[75.47676,30.60128],[75.47457,30.60249]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"606","area_level":"District","area_name":"Khunti","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.1646,23.27972],[85.16414,23.28156],[85.15874,23.28476],[85.15295,23.28479],[85.15116,23.27986],[85.1543,23.27953],[85.15487,23.2733],[85.15025,23.26933],[85.1431,23.26789],[85.14143,23.26043],[85.14226,23.25358],[85.13472,23.25726],[85.12744,23.25505],[85.12351,23.2486],[85.11742,23.25091],[85.10249,23.24865],[85.09946,23.24694],[85.10058,23.24478],[85.09789,23.24168],[85.09235,23.24076],[85.08906,23.24239],[85.09082,23.23757],[85.08447,23.23648],[85.0881,23.23471],[85.08645,23.2314],[85.08239,23.23086],[85.07595,23.22476],[85.06781,23.22176],[85.06578,23.21611],[85.05804,23.20646],[85.05756,23.20344],[85.05389,23.19869],[85.04935,23.19703],[85.04507,23.19084],[85.04672,23.18535],[85.04278,23.18515],[85.04129,23.17986],[85.04353,23.17133],[85.05034,23.16979],[85.05863,23.16024],[85.05749,23.15695],[85.05924,23.15125],[85.05412,23.15009],[85.05299,23.14369],[85.04937,23.14466],[85.04829,23.14008],[85.04941,23.13643],[85.05643,23.12907],[85.05489,23.11927],[85.04564,23.11485],[85.03623,23.11784],[85.03102,23.11716],[85.03115,23.11515],[85.02672,23.11527],[85.02629,23.11286],[85.03013,23.10669],[85.0353,23.10339],[85.03254,23.09866],[85.03545,23.09319],[85.0346,23.09016],[85.03093,23.08812],[85.02687,23.08887],[85.02545,23.08477],[85.02004,23.08772],[85.00772,23.08588],[85.00554,23.08151],[85.00277,23.07969],[84.99825,23.07961],[84.99455,23.0762],[84.99642,23.06935],[84.99287,23.0552],[84.99654,23.05132],[84.99541,23.04651],[84.99046,23.04413],[84.99035,23.03614],[84.98301,23.03661],[84.98189,23.02617],[84.97949,23.0221],[84.97576,23.02121],[84.97367,23.02407],[84.96591,23.02392],[84.9624,23.0158],[84.96511,23.01193],[84.9611,23.01068],[84.95289,23.0122],[84.94674,23.00692],[84.94565,23.00221],[84.94035,22.99723],[84.94175,22.98255],[84.94723,22.96647],[84.95556,22.96484],[84.96415,22.97103],[84.96836,22.96965],[84.97341,22.97023],[84.98513,22.96627],[84.98978,22.96249],[84.99227,22.9573],[84.99947,22.95608],[85.00628,22.94715],[85.01218,22.94526],[85.01591,22.93433],[85.01383,22.9254],[85.01054,22.92392],[85.00382,22.92421],[84.99851,22.92632],[84.98845,22.92438],[84.98742,22.92242],[84.98901,22.91938],[84.9853,22.91779],[84.98302,22.90399],[84.98147,22.90412],[84.98145,22.89989],[84.97988,22.89869],[84.98985,22.89721],[84.98897,22.89559],[84.99041,22.89169],[84.9877,22.88744],[84.98555,22.87436],[84.9877,22.85858],[84.99299,22.85678],[84.99557,22.85245],[84.99468,22.84933],[84.99884,22.8441],[84.99869,22.83783],[85.00508,22.82223],[85.0037,22.82007],[85.00642,22.81829],[85.00767,22.81255],[85.00707,22.80224],[84.98564,22.80196],[84.98261,22.80453],[84.98032,22.78592],[84.98261,22.78452],[84.99346,22.78641],[84.99676,22.78472],[85.00184,22.78751],[85.00564,22.78721],[85.00589,22.78094],[85.0102,22.76984],[85.0214,22.7655],[85.02278,22.76046],[85.02762,22.75584],[85.04925,22.75332],[85.05239,22.74585],[85.05857,22.73837],[85.05733,22.72926],[85.05304,22.72118],[85.05396,22.70929],[85.0415,22.68106],[85.04642,22.67425],[85.06096,22.66812],[85.05948,22.6576],[85.05437,22.65216],[85.05436,22.6459],[85.04955,22.63829],[85.04999,22.63478],[85.05694,22.62289],[85.05388,22.61148],[85.0701,22.60528],[85.07095,22.6008],[85.06847,22.59524],[85.06882,22.58944],[85.07184,22.57919],[85.07755,22.57336],[85.08903,22.57569],[85.08877,22.58304],[85.09497,22.59696],[85.09392,22.60296],[85.0904,22.60799],[85.08439,22.61295],[85.07601,22.61581],[85.07561,22.61845],[85.08383,22.62871],[85.09125,22.63388],[85.09687,22.65155],[85.1003,22.65505],[85.10168,22.65404],[85.1124,22.65931],[85.11504,22.66366],[85.11978,22.6752],[85.1193,22.68361],[85.12249,22.68859],[85.12229,22.6989],[85.11994,22.70986],[85.13331,22.72103],[85.12848,22.72469],[85.131,22.72906],[85.12897,22.73819],[85.14353,22.73992],[85.14785,22.74701],[85.1369,22.75421],[85.14081,22.76462],[85.14004,22.77785],[85.14148,22.78696],[85.14917,22.80919],[85.16021,22.82258],[85.15799,22.82735],[85.15888,22.83294],[85.17024,22.83539],[85.17471,22.83346],[85.18508,22.82448],[85.19329,22.82667],[85.19646,22.82439],[85.19647,22.82179],[85.1899,22.81484],[85.19368,22.81379],[85.19754,22.81836],[85.19903,22.81751],[85.19878,22.81459],[85.20075,22.81432],[85.20189,22.81726],[85.20438,22.81729],[85.20608,22.8204],[85.20828,22.82074],[85.20809,22.82371],[85.21333,22.82354],[85.21398,22.82677],[85.21726,22.82449],[85.22086,22.83176],[85.22551,22.83679],[85.23002,22.83685],[85.23266,22.84061],[85.23457,22.83754],[85.24206,22.83396],[85.2494,22.8347],[85.24893,22.83749],[85.25237,22.84463],[85.25669,22.84725],[85.2589,22.84624],[85.25915,22.84379],[85.26414,22.84567],[85.26435,22.84961],[85.26624,22.85045],[85.26436,22.85136],[85.2639,22.85421],[85.26628,22.85364],[85.26797,22.85624],[85.26569,22.85793],[85.27105,22.86198],[85.27506,22.86078],[85.27475,22.86323],[85.27939,22.86556],[85.28098,22.8704],[85.28395,22.86835],[85.28585,22.87079],[85.28814,22.86954],[85.28829,22.87307],[85.2915,22.8726],[85.29889,22.87585],[85.30483,22.87494],[85.30782,22.87766],[85.307,22.88064],[85.30914,22.88314],[85.31216,22.88121],[85.31658,22.88218],[85.31797,22.87755],[85.3394,22.88641],[85.34143,22.88097],[85.35502,22.8809],[85.35802,22.87676],[85.35895,22.87109],[85.37205,22.86338],[85.3779,22.86251],[85.387,22.86756],[85.39212,22.85743],[85.38821,22.84961],[85.38864,22.84217],[85.39538,22.84558],[85.40579,22.84806],[85.41361,22.83899],[85.41788,22.83872],[85.41969,22.8402],[85.41968,22.83201],[85.43113,22.83751],[85.43424,22.83718],[85.43705,22.83282],[85.44248,22.83053],[85.44024,22.82399],[85.44135,22.82108],[85.44645,22.82056],[85.45073,22.8233],[85.45071,22.81237],[85.45443,22.8016],[85.4717,22.79928],[85.47916,22.80558],[85.49124,22.80408],[85.49839,22.80007],[85.5036,22.80016],[85.5129,22.8069],[85.51702,22.80697],[85.51647,22.81114],[85.51806,22.8135],[85.51628,22.81864],[85.51461,22.81945],[85.51324,22.82719],[85.51564,22.83081],[85.51985,22.82882],[85.52168,22.8424],[85.52936,22.84659],[85.52924,22.84953],[85.53188,22.85232],[85.52934,22.86386],[85.53232,22.86522],[85.53336,22.86839],[85.53581,22.86583],[85.54091,22.86502],[85.54312,22.87132],[85.55799,22.88012],[85.55891,22.86397],[85.56081,22.86082],[85.5626,22.85986],[85.56702,22.86297],[85.57503,22.86277],[85.58213,22.86652],[85.58722,22.8809],[85.59466,22.8858],[85.60221,22.89382],[85.59034,22.89702],[85.58315,22.8949],[85.58057,22.90711],[85.57239,22.91065],[85.56439,22.91924],[85.56035,22.92227],[85.55742,22.92225],[85.55494,22.92579],[85.5506,22.92361],[85.54926,22.93035],[85.56211,22.93713],[85.56608,22.94335],[85.56464,22.95139],[85.57311,22.94985],[85.57964,22.95202],[85.58256,22.9469],[85.58708,22.94581],[85.5856,22.95161],[85.59209,22.95324],[85.59244,22.95635],[85.59041,22.95878],[85.59186,22.96258],[85.60378,22.9632],[85.6007,22.98829],[85.59883,22.99346],[85.59545,22.99624],[85.59579,22.99955],[85.59959,22.9992],[85.60113,23.00102],[85.60367,22.99582],[85.60608,22.99509],[85.60801,22.99636],[85.60976,22.99284],[85.61534,22.99201],[85.62141,22.99447],[85.62651,22.9935],[85.62987,22.99081],[85.64234,22.9949],[85.65577,23.00456],[85.6487,23.00585],[85.64699,23.00991],[85.64441,23.00986],[85.64002,23.01695],[85.64106,23.0232],[85.64431,23.0261],[85.63966,23.02394],[85.63038,23.02806],[85.63428,23.02857],[85.63471,23.03377],[85.63278,23.03427],[85.63033,23.03013],[85.63071,23.0333],[85.62874,23.03021],[85.62652,23.03048],[85.62678,23.0372],[85.62236,23.04125],[85.62319,23.04331],[85.62607,23.04309],[85.62609,23.04447],[85.62208,23.05054],[85.62668,23.05258],[85.62987,23.05172],[85.63154,23.05435],[85.63867,23.05579],[85.62763,23.06962],[85.61664,23.06962],[85.61178,23.06447],[85.59948,23.06247],[85.59185,23.0644],[85.58376,23.0618],[85.58083,23.06399],[85.58771,23.07149],[85.59842,23.07736],[85.60711,23.08049],[85.61506,23.08012],[85.61852,23.08152],[85.62207,23.09366],[85.61827,23.10263],[85.61362,23.10764],[85.61513,23.1149],[85.60176,23.11936],[85.59294,23.11543],[85.5847,23.12065],[85.584,23.11894],[85.57993,23.11968],[85.5791,23.11352],[85.57618,23.112],[85.57356,23.11284],[85.57141,23.11653],[85.56559,23.11505],[85.56115,23.11959],[85.55663,23.11865],[85.55547,23.11702],[85.54458,23.11831],[85.5423,23.11713],[85.53626,23.12079],[85.52975,23.11964],[85.52007,23.12159],[85.50726,23.12074],[85.48384,23.12372],[85.47356,23.12877],[85.47545,23.133],[85.47366,23.13525],[85.47419,23.13879],[85.46734,23.1426],[85.46784,23.14649],[85.465,23.14913],[85.46595,23.16184],[85.46055,23.16344],[85.46051,23.17029],[85.46618,23.17505],[85.46632,23.18044],[85.45569,23.17702],[85.44317,23.17912],[85.43764,23.17441],[85.43359,23.17616],[85.42252,23.17241],[85.41689,23.17278],[85.41091,23.17675],[85.40251,23.17811],[85.40353,23.18562],[85.40143,23.19015],[85.39217,23.19025],[85.38522,23.19336],[85.37651,23.18385],[85.3719,23.18582],[85.35696,23.18412],[85.3552,23.19229],[85.34788,23.1939],[85.34783,23.19638],[85.34526,23.19912],[85.34531,23.20445],[85.33832,23.2075],[85.3359,23.2068],[85.33583,23.20495],[85.33923,23.20025],[85.33758,23.19292],[85.33898,23.18762],[85.33187,23.18622],[85.32691,23.17707],[85.32594,23.17838],[85.3228,23.17747],[85.32176,23.18233],[85.31933,23.18336],[85.32049,23.18691],[85.29803,23.19236],[85.29526,23.1997],[85.28751,23.20423],[85.28947,23.20974],[85.28785,23.21378],[85.28944,23.2164],[85.28282,23.21809],[85.28284,23.22634],[85.27348,23.22549],[85.2703,23.2225],[85.27058,23.21856],[85.25201,23.21653],[85.25078,23.21328],[85.25262,23.20531],[85.24556,23.19843],[85.23128,23.19832],[85.22648,23.20169],[85.22544,23.20567],[85.22198,23.20798],[85.23215,23.21552],[85.23598,23.21674],[85.23837,23.22784],[85.23259,23.22824],[85.22649,23.23105],[85.22595,23.23579],[85.22886,23.24003],[85.22779,23.2416],[85.23116,23.2448],[85.2301,23.24968],[85.22679,23.25365],[85.22822,23.26688],[85.22023,23.26604],[85.20745,23.27079],[85.2037,23.26293],[85.19317,23.26411],[85.18717,23.26785],[85.17778,23.26806],[85.17675,23.27182],[85.17318,23.27569],[85.16497,23.27489],[85.1646,23.27972]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"607","area_level":"District","area_name":"Ramgarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[85.63991,23.96183],[85.63007,23.9617],[85.6273,23.96019],[85.61705,23.96208],[85.60895,23.95777],[85.60972,23.95644],[85.60659,23.94788],[85.60733,23.94473],[85.60464,23.94041],[85.60742,23.93871],[85.60776,23.93674],[85.60259,23.93437],[85.5949,23.93371],[85.58455,23.9177],[85.57655,23.91817],[85.576,23.91269],[85.57898,23.90964],[85.57472,23.90858],[85.57112,23.90126],[85.56509,23.89629],[85.57317,23.89352],[85.56718,23.88453],[85.57383,23.88],[85.57393,23.87834],[85.56921,23.87223],[85.56899,23.86944],[85.57063,23.86809],[85.56313,23.85803],[85.56388,23.85252],[85.56247,23.84742],[85.55723,23.84797],[85.55504,23.84502],[85.54673,23.85148],[85.53942,23.85377],[85.53008,23.84936],[85.5239,23.85216],[85.51842,23.8522],[85.51673,23.85032],[85.51733,23.84545],[85.51524,23.84163],[85.5075,23.83818],[85.50135,23.8406],[85.48918,23.83849],[85.48592,23.82611],[85.48476,23.82551],[85.48319,23.82863],[85.48034,23.82965],[85.47804,23.82673],[85.47334,23.82509],[85.47095,23.82088],[85.46742,23.82165],[85.46489,23.81717],[85.4595,23.81455],[85.45682,23.81099],[85.45257,23.81056],[85.44726,23.80161],[85.44395,23.80136],[85.43378,23.79458],[85.4269,23.79375],[85.42824,23.78702],[85.43079,23.78678],[85.43078,23.78055],[85.43247,23.7773],[85.46016,23.77187],[85.46754,23.76848],[85.47066,23.76508],[85.47036,23.7635],[85.46103,23.7574],[85.46135,23.75449],[85.45918,23.75015],[85.46427,23.74347],[85.46096,23.74058],[85.45649,23.74138],[85.45551,23.74018],[85.45613,23.72734],[85.44866,23.72162],[85.44141,23.72184],[85.44086,23.71568],[85.44225,23.71038],[85.44049,23.70876],[85.42779,23.70854],[85.42845,23.69065],[85.42731,23.68654],[85.42469,23.68396],[85.42922,23.676],[85.44715,23.66279],[85.44682,23.65783],[85.44479,23.65698],[85.44589,23.6548],[85.43237,23.6562],[85.42834,23.65395],[85.4036,23.65253],[85.39909,23.656],[85.39966,23.66009],[85.39768,23.66525],[85.39012,23.65884],[85.38558,23.65998],[85.38403,23.66285],[85.38624,23.66799],[85.38536,23.67078],[85.37741,23.67394],[85.36108,23.67347],[85.34583,23.69106],[85.33764,23.69582],[85.33969,23.70182],[85.33687,23.70384],[85.33491,23.70376],[85.3256,23.69531],[85.30666,23.68341],[85.30178,23.68923],[85.2983,23.69029],[85.29253,23.68998],[85.28524,23.68661],[85.27617,23.69274],[85.2623,23.69658],[85.25007,23.70966],[85.24322,23.71193],[85.24036,23.70896],[85.24069,23.70327],[85.23592,23.698],[85.23622,23.68302],[85.22651,23.67735],[85.22722,23.67588],[85.22446,23.67476],[85.22505,23.67227],[85.22274,23.67117],[85.22351,23.66844],[85.22164,23.66412],[85.22364,23.6592],[85.22136,23.65768],[85.22363,23.65447],[85.21471,23.65469],[85.20712,23.64533],[85.20332,23.63631],[85.20561,23.63134],[85.20553,23.62686],[85.21031,23.62076],[85.22457,23.61946],[85.23072,23.61678],[85.23664,23.61859],[85.24591,23.60256],[85.2429,23.59851],[85.24317,23.59341],[85.25185,23.59222],[85.25525,23.58998],[85.26143,23.58983],[85.26531,23.58619],[85.26783,23.57822],[85.27397,23.58075],[85.27887,23.58036],[85.279,23.57781],[85.32356,23.56961],[85.33704,23.55941],[85.35017,23.56231],[85.36179,23.56129],[85.36578,23.56255],[85.36775,23.55981],[85.37077,23.55966],[85.37734,23.55528],[85.3819,23.55574],[85.38273,23.55236],[85.38559,23.54981],[85.38982,23.55969],[85.39267,23.56232],[85.39675,23.55459],[85.39995,23.5567],[85.40885,23.55604],[85.41673,23.56076],[85.42167,23.55999],[85.4257,23.55463],[85.43466,23.55385],[85.44677,23.54856],[85.45212,23.54936],[85.47137,23.55808],[85.47247,23.56165],[85.47086,23.5692],[85.47348,23.57161],[85.48827,23.56328],[85.48969,23.56083],[85.48694,23.5586],[85.48481,23.56006],[85.48212,23.55396],[85.49232,23.5456],[85.49855,23.54365],[85.50014,23.54468],[85.5126,23.54354],[85.51497,23.5457],[85.51276,23.54941],[85.51468,23.55787],[85.5121,23.56293],[85.50491,23.5701],[85.5115,23.57333],[85.51499,23.57754],[85.52206,23.57934],[85.52525,23.57555],[85.52501,23.57226],[85.52988,23.56176],[85.52156,23.55026],[85.51925,23.54188],[85.53042,23.53432],[85.53232,23.53509],[85.53408,23.54091],[85.53808,23.54029],[85.54211,23.54388],[85.54881,23.54229],[85.55746,23.53446],[85.56012,23.52808],[85.5722,23.51455],[85.59034,23.50398],[85.58868,23.49975],[85.59162,23.49455],[85.60722,23.48984],[85.60433,23.48569],[85.60789,23.48178],[85.62189,23.47657],[85.63231,23.46949],[85.65041,23.4659],[85.65782,23.46723],[85.66133,23.46263],[85.67129,23.45961],[85.6718,23.45381],[85.67528,23.45099],[85.69968,23.44729],[85.71036,23.44759],[85.71722,23.44369],[85.72037,23.44414],[85.72516,23.45092],[85.73058,23.4551],[85.73294,23.4541],[85.73483,23.44957],[85.73651,23.44967],[85.74208,23.45243],[85.74752,23.45773],[85.7567,23.46183],[85.76447,23.46234],[85.77266,23.46015],[85.77786,23.4612],[85.78341,23.45575],[85.7936,23.45675],[85.7961,23.45471],[85.79604,23.4506],[85.7982,23.44981],[85.80275,23.45148],[85.80601,23.45665],[85.81597,23.45692],[85.8244,23.45397],[85.82964,23.449],[85.8295,23.44021],[85.8408,23.43059],[85.84315,23.42273],[85.84603,23.42234],[85.85009,23.42442],[85.84774,23.42861],[85.84857,23.43025],[85.85915,23.42622],[85.86094,23.43046],[85.8646,23.43121],[85.86193,23.44238],[85.8649,23.4547],[85.86363,23.45861],[85.86573,23.45991],[85.86249,23.46152],[85.868,23.46545],[85.87,23.47495],[85.87364,23.47673],[85.87546,23.47985],[85.88474,23.48188],[85.88802,23.48459],[85.88798,23.48686],[85.88335,23.4902],[85.88507,23.4919],[85.8844,23.49323],[85.87598,23.50016],[85.87272,23.50557],[85.86734,23.50729],[85.8675,23.51119],[85.85943,23.5175],[85.85185,23.51277],[85.84546,23.51307],[85.8397,23.51517],[85.83552,23.52054],[85.84169,23.53479],[85.82785,23.54056],[85.82128,23.55013],[85.82749,23.55463],[85.8363,23.55686],[85.84073,23.56237],[85.83992,23.56492],[85.83341,23.57312],[85.82493,23.57312],[85.82165,23.57628],[85.81332,23.57668],[85.80808,23.60046],[85.80454,23.60761],[85.80586,23.61037],[85.80506,23.61264],[85.79897,23.61561],[85.79958,23.62057],[85.79659,23.62191],[85.79363,23.61957],[85.79403,23.62797],[85.79067,23.62745],[85.78947,23.62865],[85.79457,23.63713],[85.78717,23.6387],[85.78444,23.64212],[85.7829,23.64785],[85.77494,23.64808],[85.76912,23.65336],[85.77153,23.65845],[85.77068,23.67398],[85.76804,23.68069],[85.76235,23.68574],[85.76068,23.68607],[85.75862,23.68336],[85.7584,23.67461],[85.7552,23.66688],[85.75538,23.66256],[85.74817,23.66025],[85.74324,23.65468],[85.73871,23.65309],[85.72822,23.65415],[85.72257,23.64136],[85.71327,23.63257],[85.71049,23.63258],[85.70551,23.63676],[85.70011,23.64623],[85.69088,23.64148],[85.68376,23.64744],[85.67873,23.64687],[85.67714,23.6438],[85.6783,23.63614],[85.6713,23.63644],[85.66943,23.63102],[85.66321,23.62918],[85.66484,23.62236],[85.65317,23.60832],[85.63202,23.61795],[85.62552,23.62873],[85.62045,23.63209],[85.61553,23.6325],[85.61483,23.67436],[85.61716,23.69395],[85.60983,23.7001],[85.6108,23.70723],[85.61764,23.71055],[85.62217,23.72224],[85.62177,23.74134],[85.61597,23.74126],[85.61561,23.76525],[85.61771,23.76781],[85.62923,23.76769],[85.63248,23.77363],[85.63196,23.77616],[85.63829,23.78062],[85.64093,23.78569],[85.64602,23.78663],[85.64816,23.79002],[85.6525,23.79213],[85.65025,23.79463],[85.65154,23.79804],[85.64994,23.80567],[85.65071,23.8095],[85.65518,23.81342],[85.6518,23.82252],[85.64256,23.82152],[85.63558,23.80288],[85.6304,23.80293],[85.62966,23.80156],[85.6287,23.80261],[85.62421,23.796],[85.61435,23.79766],[85.61182,23.80018],[85.61251,23.80409],[85.6001,23.81073],[85.5967,23.81933],[85.60006,23.82704],[85.59991,23.83155],[85.59564,23.84121],[85.59202,23.84515],[85.59174,23.84997],[85.58834,23.85011],[85.58371,23.85328],[85.59119,23.86122],[85.59321,23.86558],[85.60308,23.86865],[85.60724,23.8676],[85.61365,23.8694],[85.61791,23.87407],[85.61991,23.88043],[85.61547,23.88547],[85.61589,23.88744],[85.61215,23.88755],[85.61135,23.89321],[85.6136,23.8983],[85.61234,23.90166],[85.61618,23.90761],[85.62425,23.91287],[85.62441,23.91529],[85.62687,23.91491],[85.62776,23.9178],[85.63169,23.91832],[85.63759,23.92311],[85.64627,23.92569],[85.64747,23.92949],[85.66003,23.93471],[85.65849,23.93755],[85.65425,23.93919],[85.6524,23.94467],[85.64735,23.94614],[85.64583,23.95516],[85.64065,23.95934],[85.63991,23.96183]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"608","area_level":"District","area_name":"S.A.S Nagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.7393,30.93419],[76.73978,30.93618],[76.73658,30.93837],[76.73143,30.93388],[76.71734,30.92875],[76.70002,30.93181],[76.69805,30.92858],[76.68936,30.92346],[76.68634,30.91759],[76.67987,30.91435],[76.66315,30.915],[76.65859,30.91065],[76.65239,30.90898],[76.64424,30.90406],[76.63948,30.9037],[76.63788,30.90511],[76.63659,30.9025],[76.62778,30.90151],[76.62477,30.89577],[76.62071,30.8966],[76.61139,30.89133],[76.60676,30.8905],[76.60921,30.88301],[76.59954,30.87885],[76.5971,30.8735],[76.59731,30.86885],[76.60326,30.85817],[76.5913,30.85372],[76.59042,30.85119],[76.5862,30.8595],[76.57468,30.85819],[76.5733,30.85941],[76.5729,30.86613],[76.57831,30.86581],[76.57811,30.86921],[76.56667,30.86685],[76.56977,30.85133],[76.58207,30.85909],[76.58195,30.85528],[76.58398,30.85172],[76.55286,30.83811],[76.55645,30.82975],[76.55954,30.83067],[76.56124,30.82816],[76.56489,30.8184],[76.55946,30.81486],[76.56283,30.81168],[76.56366,30.80819],[76.56025,30.8052],[76.56203,30.7999],[76.55575,30.7964],[76.55866,30.78575],[76.55286,30.78268],[76.54949,30.78318],[76.54067,30.78022],[76.53593,30.7749],[76.53332,30.76661],[76.52207,30.75704],[76.53183,30.74093],[76.52153,30.73305],[76.52927,30.72447],[76.53137,30.72454],[76.5315,30.71879],[76.53475,30.70979],[76.5467,30.71234],[76.55218,30.70765],[76.55596,30.7014],[76.55409,30.6989],[76.55407,30.69044],[76.56227,30.68899],[76.56611,30.68628],[76.5711,30.67549],[76.56978,30.67416],[76.57076,30.67149],[76.57605,30.66526],[76.5875,30.66716],[76.59066,30.66327],[76.59524,30.66141],[76.59364,30.65744],[76.59846,30.65213],[76.60344,30.65506],[76.61991,30.64187],[76.62588,30.64489],[76.62915,30.63809],[76.63017,30.62338],[76.63333,30.61893],[76.64136,30.62747],[76.65048,30.62711],[76.65233,30.62573],[76.65831,30.61052],[76.66265,30.61268],[76.66577,30.61095],[76.6634,30.60751],[76.6632,30.60149],[76.66473,30.59696],[76.66846,30.59326],[76.66094,30.58701],[76.66294,30.58315],[76.66874,30.58446],[76.68473,30.59383],[76.68937,30.59361],[76.68361,30.57909],[76.68468,30.57566],[76.6859,30.57285],[76.69003,30.57082],[76.6985,30.57076],[76.7001,30.5741],[76.70394,30.5736],[76.70548,30.57487],[76.70337,30.58702],[76.71064,30.58526],[76.71877,30.58983],[76.72182,30.58601],[76.7206,30.58209],[76.72542,30.57884],[76.73195,30.57071],[76.7387,30.57421],[76.73968,30.5813],[76.74446,30.58732],[76.7468,30.58781],[76.7474,30.59127],[76.7486,30.59033],[76.75143,30.5964],[76.75721,30.59694],[76.76364,30.60595],[76.77311,30.61037],[76.77731,30.60899],[76.78415,30.60229],[76.78565,30.60334],[76.78311,30.60009],[76.78804,30.59728],[76.78664,30.59521],[76.77972,30.59273],[76.77251,30.58311],[76.77661,30.57623],[76.77561,30.57416],[76.7679,30.56829],[76.76583,30.56338],[76.76196,30.55945],[76.76916,30.55186],[76.76565,30.55063],[76.75921,30.55774],[76.75262,30.55567],[76.7507,30.55233],[76.75287,30.55016],[76.75114,30.54691],[76.75405,30.54327],[76.75098,30.54059],[76.75103,30.53691],[76.75422,30.53305],[76.76072,30.53368],[76.76587,30.53068],[76.76386,30.52779],[76.76841,30.52464],[76.77646,30.52085],[76.78261,30.52116],[76.78702,30.51888],[76.78003,30.51036],[76.77526,30.50736],[76.77204,30.50748],[76.7691,30.50351],[76.76998,30.50077],[76.76771,30.49594],[76.76933,30.48571],[76.76543,30.47539],[76.76047,30.47437],[76.75738,30.47161],[76.75644,30.47274],[76.75305,30.46976],[76.75211,30.46032],[76.75597,30.45788],[76.75404,30.45618],[76.75528,30.4521],[76.75848,30.45112],[76.75557,30.44516],[76.75236,30.44317],[76.74752,30.44459],[76.74636,30.44313],[76.74648,30.44071],[76.74863,30.43904],[76.74816,30.42882],[76.75793,30.42982],[76.76556,30.43249],[76.77429,30.44328],[76.7811,30.43992],[76.78487,30.43535],[76.77728,30.43105],[76.77433,30.4264],[76.78704,30.41621],[76.79022,30.41455],[76.79514,30.41866],[76.80177,30.41367],[76.80926,30.41764],[76.81647,30.41334],[76.82183,30.41268],[76.82748,30.41607],[76.83824,30.42762],[76.83623,30.42961],[76.83775,30.43156],[76.84374,30.43736],[76.84679,30.43808],[76.85103,30.43525],[76.85002,30.43347],[76.85439,30.42548],[76.8542,30.4212],[76.85613,30.41765],[76.8683,30.41394],[76.87444,30.40947],[76.88336,30.40865],[76.88089,30.40612],[76.88434,30.40428],[76.88213,30.40082],[76.88394,30.39768],[76.8807,30.3939],[76.88335,30.39208],[76.88623,30.39404],[76.8951,30.38694],[76.89507,30.38471],[76.89796,30.3821],[76.89137,30.37377],[76.89029,30.36943],[76.89826,30.35882],[76.90271,30.36195],[76.90678,30.36139],[76.91686,30.36491],[76.92262,30.3746],[76.93667,30.38366],[76.93987,30.38805],[76.94139,30.39357],[76.94146,30.39535],[76.93273,30.40167],[76.92273,30.40107],[76.91972,30.39866],[76.91235,30.40063],[76.91936,30.40741],[76.91805,30.40837],[76.91915,30.40924],[76.9171,30.41599],[76.91237,30.42051],[76.91649,30.42623],[76.90638,30.43357],[76.91229,30.44291],[76.90505,30.43407],[76.89755,30.4371],[76.90274,30.44408],[76.90487,30.44323],[76.90537,30.44493],[76.89956,30.44865],[76.91381,30.46767],[76.91218,30.47376],[76.89804,30.48376],[76.89896,30.48879],[76.90362,30.49139],[76.90871,30.49188],[76.91078,30.49428],[76.91893,30.48944],[76.93117,30.50036],[76.92859,30.50755],[76.92924,30.51709],[76.93202,30.52219],[76.92149,30.52619],[76.9156,30.52571],[76.91224,30.53038],[76.91249,30.53395],[76.90622,30.53712],[76.90215,30.53644],[76.89607,30.53812],[76.88816,30.54589],[76.8865,30.54983],[76.88718,30.55103],[76.89395,30.54864],[76.90494,30.54295],[76.91616,30.55366],[76.91754,30.55911],[76.91533,30.56192],[76.90897,30.56469],[76.91772,30.57601],[76.91494,30.5784],[76.91514,30.58218],[76.9198,30.58516],[76.90966,30.59188],[76.92022,30.59323],[76.92717,30.60361],[76.92234,30.60559],[76.92601,30.61006],[76.9199,30.61176],[76.916,30.60989],[76.91352,30.61141],[76.91184,30.61303],[76.9133,30.61397],[76.91307,30.61686],[76.91008,30.62615],[76.90278,30.62437],[76.89972,30.62814],[76.89555,30.62892],[76.89281,30.63104],[76.89595,30.63305],[76.89646,30.63583],[76.88512,30.64528],[76.87758,30.64415],[76.8748,30.64085],[76.87122,30.64212],[76.87426,30.67391],[76.87645,30.68051],[76.86831,30.67346],[76.85922,30.661],[76.84986,30.65684],[76.84882,30.65787],[76.84686,30.65666],[76.84496,30.65902],[76.84469,30.66239],[76.84809,30.66591],[76.84579,30.66864],[76.83257,30.66312],[76.8313,30.6654],[76.83204,30.67095],[76.83002,30.67586],[76.83129,30.67903],[76.82745,30.68213],[76.82105,30.67768],[76.82092,30.67489],[76.8165,30.67138],[76.80746,30.667],[76.80259,30.66649],[76.80047,30.6702],[76.79672,30.66751],[76.78995,30.6756],[76.78145,30.67427],[76.77687,30.67035],[76.76431,30.68636],[76.75276,30.68449],[76.75026,30.68831],[76.74777,30.68754],[76.74717,30.6955],[76.73932,30.69286],[76.73962,30.69806],[76.7379,30.69981],[76.73936,30.70033],[76.7391,30.70575],[76.73003,30.70683],[76.72909,30.71177],[76.73137,30.71258],[76.72855,30.71578],[76.73121,30.71741],[76.7311,30.72356],[76.72127,30.72997],[76.71419,30.74093],[76.70747,30.73945],[76.70518,30.74292],[76.70664,30.74465],[76.7059,30.7474],[76.70794,30.74973],[76.70533,30.75602],[76.71076,30.76098],[76.71392,30.76309],[76.7207,30.76316],[76.72568,30.76642],[76.73135,30.76489],[76.74375,30.76985],[76.7455,30.77227],[76.74331,30.77592],[76.75234,30.78025],[76.75171,30.78424],[76.75924,30.78819],[76.76172,30.79147],[76.77151,30.79521],[76.77556,30.79051],[76.78278,30.78917],[76.7873,30.77895],[76.77959,30.77769],[76.78348,30.77057],[76.79047,30.77071],[76.79169,30.76871],[76.79834,30.77111],[76.80213,30.77557],[76.80917,30.77936],[76.81352,30.78017],[76.81544,30.77801],[76.81865,30.77791],[76.81812,30.77544],[76.81957,30.77365],[76.81812,30.77129],[76.80537,30.76497],[76.81561,30.75271],[76.81768,30.75409],[76.82011,30.76085],[76.82421,30.76096],[76.82635,30.7633],[76.83745,30.75415],[76.84015,30.75889],[76.83897,30.7659],[76.84028,30.77062],[76.84257,30.7715],[76.84178,30.77446],[76.85437,30.78726],[76.8507,30.7911],[76.85268,30.79349],[76.85699,30.79475],[76.85417,30.79919],[76.84688,30.80368],[76.84533,30.80719],[76.84884,30.81414],[76.84815,30.82868],[76.84584,30.83156],[76.8467,30.83391],[76.84344,30.83596],[76.83742,30.8361],[76.82982,30.83907],[76.82614,30.84076],[76.82297,30.84477],[76.814,30.84299],[76.81316,30.84818],[76.81467,30.85244],[76.80472,30.86059],[76.80179,30.86584],[76.79074,30.87031],[76.78413,30.87826],[76.77771,30.89555],[76.77665,30.9053],[76.77126,30.90769],[76.77222,30.91006],[76.76666,30.91709],[76.76633,30.92107],[76.76019,30.92293],[76.75985,30.92633],[76.75652,30.92815],[76.7485,30.92673],[76.74696,30.93014],[76.7393,30.93419]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"609","area_level":"District","area_name":"Tarn Taran","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.79849,31.56344],[74.79838,31.56889],[74.79393,31.57081],[74.79094,31.56931],[74.78495,31.56199],[74.77958,31.56583],[74.77946,31.56421],[74.77428,31.56213],[74.77329,31.55948],[74.77035,31.56147],[74.75645,31.56315],[74.75293,31.56573],[74.7509,31.56051],[74.75482,31.56011],[74.75393,31.55829],[74.74727,31.55892],[74.73788,31.56512],[74.7282,31.56266],[74.72697,31.55857],[74.72295,31.55676],[74.7228,31.55462],[74.71981,31.55407],[74.71739,31.55048],[74.71512,31.5528],[74.71209,31.5505],[74.71118,31.54382],[74.70695,31.53935],[74.70269,31.54134],[74.69833,31.53901],[74.69674,31.54298],[74.68941,31.54758],[74.67996,31.55016],[74.679,31.54846],[74.67517,31.54763],[74.67488,31.54182],[74.67269,31.5397],[74.67058,31.54032],[74.66957,31.53259],[74.66497,31.53286],[74.6613,31.53684],[74.64926,31.54039],[74.62646,31.52509],[74.62844,31.51589],[74.62408,31.51165],[74.6181,31.51041],[74.61627,31.50247],[74.61401,31.49929],[74.61088,31.499],[74.61304,31.49622],[74.61441,31.48922],[74.61864,31.48512],[74.6223,31.4851],[74.62244,31.48191],[74.62383,31.48334],[74.62583,31.48283],[74.62518,31.48596],[74.63223,31.48665],[74.63648,31.48476],[74.63143,31.48148],[74.62929,31.48385],[74.62755,31.4769],[74.6361,31.47759],[74.63845,31.47289],[74.64767,31.4656],[74.65214,31.4573],[74.65314,31.4545],[74.65128,31.45199],[74.64222,31.44964],[74.6386,31.44438],[74.64302,31.43675],[74.65461,31.42601],[74.65191,31.42642],[74.64843,31.42393],[74.6426,31.41606],[74.63361,31.41872],[74.63138,31.42547],[74.62926,31.42585],[74.62744,31.42937],[74.62243,31.43012],[74.61926,31.42002],[74.60893,31.42366],[74.60713,31.42053],[74.60141,31.41986],[74.60261,31.41576],[74.59662,31.41623],[74.59417,31.4078],[74.59058,31.401],[74.58725,31.39812],[74.58464,31.38042],[74.57817,31.37614],[74.57829,31.37488],[74.57227,31.37351],[74.57161,31.37154],[74.56754,31.37195],[74.5518,31.36464],[74.55006,31.35869],[74.55295,31.35605],[74.54875,31.34439],[74.54593,31.34076],[74.54886,31.33483],[74.54359,31.33507],[74.53737,31.33074],[74.53742,31.32676],[74.53386,31.32491],[74.53436,31.32196],[74.53781,31.31946],[74.5339,31.31603],[74.53534,31.31504],[74.53483,31.31347],[74.52916,31.31405],[74.52633,31.31197],[74.53415,31.30508],[74.54065,31.30596],[74.54203,31.30377],[74.53765,31.30095],[74.5312,31.28434],[74.52652,31.2768],[74.52119,31.27208],[74.5206,31.26892],[74.52392,31.26128],[74.53205,31.25234],[74.53273,31.24969],[74.52816,31.24004],[74.51918,31.2336],[74.51971,31.23185],[74.51701,31.22792],[74.5245,31.2203],[74.52362,31.21799],[74.52596,31.21177],[74.52374,31.20811],[74.52513,31.20369],[74.52152,31.20258],[74.52158,31.19678],[74.52011,31.19441],[74.52156,31.19051],[74.51952,31.18385],[74.51076,31.18116],[74.51007,31.17373],[74.51311,31.16411],[74.51099,31.15806],[74.51389,31.15595],[74.51318,31.15359],[74.51523,31.15213],[74.51379,31.13934],[74.51036,31.1319],[74.52473,31.12915],[74.54343,31.121],[74.54836,31.12193],[74.54772,31.11451],[74.54973,31.11267],[74.55041,31.08939],[74.55349,31.08519],[74.56048,31.08261],[74.57127,31.08142],[74.57382,31.08576],[74.58881,31.08782],[74.58659,31.09119],[74.58909,31.09248],[74.59084,31.09246],[74.5915,31.08879],[74.60081,31.088],[74.59944,31.09306],[74.6043,31.09322],[74.60436,31.09511],[74.60736,31.09492],[74.61067,31.0993],[74.61004,31.11173],[74.60551,31.11436],[74.59649,31.12758],[74.60305,31.1336],[74.60996,31.13373],[74.61833,31.13132],[74.62188,31.13309],[74.62652,31.13107],[74.63088,31.13271],[74.63229,31.13132],[74.63101,31.12822],[74.63236,31.1215],[74.63623,31.11826],[74.64034,31.11972],[74.64842,31.12807],[74.65915,31.13396],[74.66695,31.12432],[74.67319,31.12358],[74.6891,31.12802],[74.68978,31.11829],[74.69808,31.11241],[74.69725,31.1026],[74.70134,31.09726],[74.70236,31.09172],[74.69726,31.08475],[74.69064,31.08149],[74.69593,31.07416],[74.70786,31.07199],[74.70994,31.08074],[74.71554,31.08527],[74.72072,31.10157],[74.72887,31.10386],[74.74152,31.10387],[74.74279,31.11603],[74.74171,31.11858],[74.75158,31.11554],[74.75544,31.11624],[74.76294,31.12013],[74.7609,31.12231],[74.76573,31.12548],[74.7759,31.1293],[74.78919,31.13001],[74.79226,31.12534],[74.79563,31.12418],[74.80064,31.11496],[74.80393,31.12029],[74.79948,31.12805],[74.80665,31.13978],[74.80989,31.13708],[74.80955,31.13455],[74.81448,31.13777],[74.82514,31.13405],[74.84413,31.13247],[74.88259,31.15161],[74.88549,31.15555],[74.89672,31.14986],[74.90186,31.1493],[74.90302,31.15421],[74.91316,31.15756],[74.91803,31.16215],[74.92229,31.1616],[74.93634,31.15509],[74.94732,31.15259],[74.96487,31.15355],[74.98356,31.15972],[74.98608,31.15888],[75.00434,31.17407],[75.00951,31.17418],[75.01641,31.17989],[75.03846,31.18999],[75.04691,31.19],[75.05242,31.1984],[75.05062,31.20179],[75.05976,31.21062],[75.06135,31.22522],[75.05752,31.22606],[75.05935,31.2309],[75.06948,31.24044],[75.07907,31.24585],[75.08098,31.24977],[75.07931,31.26464],[75.08226,31.26753],[75.07934,31.26883],[75.0822,31.27367],[75.1039,31.27966],[75.09341,31.28385],[75.10307,31.30221],[75.10961,31.3109],[75.10678,31.3168],[75.11828,31.32029],[75.13459,31.31049],[75.14782,31.32007],[75.14834,31.33322],[75.14605,31.33673],[75.16439,31.35675],[75.16504,31.36153],[75.15729,31.36176],[75.15605,31.36514],[75.16331,31.38292],[75.16833,31.37908],[75.18152,31.39605],[75.17855,31.39885],[75.18785,31.40754],[75.18993,31.40605],[75.19431,31.40795],[75.18645,31.41466],[75.1871,31.42473],[75.19171,31.43314],[75.1997,31.43604],[75.21007,31.43508],[75.2141,31.42189],[75.2245,31.42188],[75.23071,31.44875],[75.23503,31.4593],[75.24326,31.45518],[75.25218,31.4694],[75.26464,31.47868],[75.26692,31.4802],[75.27988,31.48169],[75.26399,31.49503],[75.26049,31.49676],[75.25826,31.4953],[75.25615,31.49597],[75.25485,31.49962],[75.25053,31.50243],[75.24064,31.49819],[75.23344,31.49887],[75.22983,31.49628],[75.22828,31.49129],[75.21963,31.49221],[75.20984,31.49802],[75.20795,31.49713],[75.20089,31.50442],[75.19512,31.50073],[75.18418,31.50726],[75.18932,31.51479],[75.18786,31.51821],[75.19126,31.52047],[75.17893,31.52928],[75.16792,31.52462],[75.16791,31.51687],[75.16559,31.51635],[75.16262,31.51204],[75.15519,31.50802],[75.14679,31.50617],[75.13859,31.50867],[75.13035,31.50328],[75.12462,31.49519],[75.12191,31.49632],[75.12205,31.49937],[75.1162,31.50578],[75.11528,31.51],[75.11019,31.51193],[75.10844,31.52373],[75.08333,31.52081],[75.07052,31.52873],[75.06658,31.52497],[75.04779,31.51709],[75.04542,31.51817],[75.0416,31.5252],[75.03932,31.52369],[75.03588,31.52711],[75.02997,31.52672],[75.03217,31.53114],[75.03138,31.53243],[75.0267,31.5269],[75.02191,31.52686],[75.01816,31.52349],[75.00982,31.52573],[75.00664,31.52465],[75.00493,31.52251],[75.00598,31.52063],[75.00056,31.51475],[75.00029,31.51155],[74.99687,31.51152],[74.99612,31.5071],[74.99356,31.50431],[74.9911,31.50513],[74.99031,31.50706],[74.99175,31.50789],[74.98699,31.51664],[74.99027,31.5195],[74.98828,31.521],[74.9867,31.5197],[74.98502,31.52265],[74.98378,31.52244],[74.98491,31.52395],[74.98408,31.52631],[74.98202,31.52675],[74.97291,31.51828],[74.9772,31.51673],[74.97727,31.51268],[74.97371,31.51139],[74.96506,31.51406],[74.96083,31.50822],[74.9634,31.50688],[74.95746,31.49722],[74.95263,31.49668],[74.94838,31.50265],[74.93826,31.50936],[74.94076,31.51076],[74.94077,31.52117],[74.93741,31.52348],[74.9168,31.5276],[74.90134,31.52373],[74.89705,31.52992],[74.89826,31.53715],[74.89724,31.54778],[74.89903,31.55276],[74.88909,31.55441],[74.87944,31.54509],[74.87799,31.53773],[74.87225,31.53692],[74.86716,31.53856],[74.86546,31.53598],[74.85596,31.53471],[74.84822,31.5308],[74.84464,31.53098],[74.84036,31.53551],[74.83068,31.53895],[74.823,31.53662],[74.81713,31.54437],[74.81949,31.5533],[74.81725,31.55411],[74.81896,31.55652],[74.81325,31.55975],[74.81108,31.55816],[74.81161,31.55681],[74.80889,31.55658],[74.79849,31.56344]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"61","area_level":"District","area_name":"Fatehabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.8004,29.80726],[75.78879,29.8111],[75.78707,29.81606],[75.78297,29.8208],[75.77883,29.82234],[75.75617,29.805],[75.75063,29.8076],[75.74689,29.80732],[75.73782,29.81404],[75.7326,29.81252],[75.72068,29.81354],[75.72097,29.80992],[75.71807,29.80865],[75.71798,29.803],[75.71417,29.80185],[75.7146,29.79598],[75.71275,29.79264],[75.71665,29.78872],[75.71013,29.78041],[75.70981,29.77798],[75.71238,29.77406],[75.71031,29.7706],[75.70739,29.76928],[75.70467,29.76362],[75.70575,29.75968],[75.70925,29.75653],[75.70645,29.7532],[75.70315,29.75228],[75.69136,29.75592],[75.68267,29.76694],[75.68171,29.77227],[75.67717,29.77658],[75.66808,29.7774],[75.66408,29.77521],[75.66098,29.77683],[75.65598,29.77376],[75.65011,29.77569],[75.64246,29.77509],[75.64026,29.7725],[75.63778,29.77389],[75.63518,29.77229],[75.63449,29.75528],[75.62745,29.74836],[75.62057,29.74674],[75.61676,29.74408],[75.60688,29.74893],[75.60527,29.75195],[75.60096,29.74946],[75.58899,29.74688],[75.5801,29.73909],[75.57214,29.74335],[75.56975,29.75679],[75.56212,29.77022],[75.54489,29.77079],[75.5407,29.77358],[75.53796,29.77333],[75.5327,29.77062],[75.52866,29.76316],[75.52492,29.76185],[75.52304,29.7584],[75.52196,29.75983],[75.52327,29.76915],[75.51892,29.77557],[75.50277,29.77788],[75.49729,29.78439],[75.49217,29.78577],[75.48555,29.79152],[75.4796,29.79278],[75.46162,29.80773],[75.45519,29.8057],[75.45288,29.80184],[75.45818,29.79475],[75.45605,29.79047],[75.45586,29.78428],[75.45398,29.782],[75.45121,29.78144],[75.44739,29.78377],[75.43776,29.77969],[75.4278,29.77094],[75.42172,29.77301],[75.42142,29.77508],[75.41938,29.77021],[75.41396,29.76999],[75.40562,29.75944],[75.40478,29.73899],[75.40133,29.7402],[75.39645,29.73946],[75.39548,29.73356],[75.39136,29.73279],[75.38831,29.7302],[75.38816,29.72798],[75.39347,29.72198],[75.39075,29.71903],[75.39114,29.71698],[75.38925,29.71613],[75.39227,29.71329],[75.38402,29.7122],[75.38023,29.71421],[75.37865,29.71287],[75.37636,29.71408],[75.373,29.71326],[75.36988,29.71086],[75.37082,29.70446],[75.36465,29.70392],[75.35908,29.7055],[75.35792,29.70439],[75.35861,29.69975],[75.35145,29.69606],[75.34573,29.696],[75.34892,29.68628],[75.35369,29.67959],[75.35426,29.67489],[75.35984,29.66813],[75.36017,29.6626],[75.3581,29.66075],[75.34866,29.66658],[75.34106,29.67525],[75.33322,29.67309],[75.33187,29.66318],[75.32226,29.65161],[75.32102,29.64726],[75.32349,29.64247],[75.31902,29.63395],[75.31613,29.63023],[75.31117,29.62949],[75.3073,29.62477],[75.29581,29.62512],[75.29492,29.61571],[75.2896,29.60856],[75.29377,29.60526],[75.30346,29.60258],[75.30564,29.59567],[75.31402,29.58925],[75.31658,29.59038],[75.31994,29.58741],[75.3113,29.58014],[75.30948,29.56083],[75.30299,29.55967],[75.30096,29.55622],[75.30383,29.54977],[75.30283,29.54186],[75.29691,29.53808],[75.29487,29.53378],[75.29608,29.52987],[75.30226,29.52417],[75.29567,29.52358],[75.28916,29.51851],[75.27798,29.51504],[75.27397,29.50924],[75.28035,29.5],[75.28769,29.49369],[75.28108,29.47986],[75.28098,29.47365],[75.29209,29.45264],[75.30206,29.44225],[75.30112,29.43925],[75.28546,29.42278],[75.26601,29.42261],[75.24073,29.41836],[75.23509,29.41873],[75.23351,29.41154],[75.22,29.39764],[75.22767,29.37975],[75.24326,29.37633],[75.26359,29.3598],[75.26516,29.3457],[75.25776,29.34],[75.2562,29.33694],[75.23557,29.33571],[75.2334,29.33194],[75.22993,29.33073],[75.22985,29.32865],[75.22831,29.32892],[75.22829,29.32728],[75.22547,29.32562],[75.23543,29.3101],[75.24107,29.29717],[75.23738,29.27802],[75.234,29.26865],[75.24519,29.25018],[75.2557,29.25181],[75.28377,29.24979],[75.28497,29.26909],[75.28741,29.27332],[75.29742,29.27182],[75.30579,29.2746],[75.31618,29.28178],[75.32205,29.28949],[75.33504,29.28688],[75.34064,29.28077],[75.34709,29.28291],[75.34802,29.29227],[75.3505,29.29742],[75.35359,29.29963],[75.35494,29.30764],[75.35784,29.3099],[75.38147,29.31265],[75.39851,29.31775],[75.39848,29.33674],[75.40051,29.34173],[75.41579,29.34612],[75.42361,29.35536],[75.42741,29.36333],[75.42783,29.36865],[75.43888,29.36978],[75.44081,29.36467],[75.44732,29.35791],[75.44969,29.35321],[75.4738,29.35882],[75.46937,29.36173],[75.46745,29.36571],[75.47134,29.37658],[75.48196,29.38973],[75.49078,29.39318],[75.51656,29.39805],[75.52451,29.37076],[75.52973,29.36265],[75.55988,29.36074],[75.5601,29.35683],[75.57236,29.35976],[75.58051,29.35828],[75.58403,29.35454],[75.58377,29.34601],[75.58554,29.34021],[75.59042,29.33686],[75.60061,29.33797],[75.60499,29.3445],[75.60461,29.35344],[75.59925,29.35897],[75.5955,29.36056],[75.60257,29.36938],[75.60928,29.37168],[75.61542,29.37143],[75.61656,29.38446],[75.61414,29.38768],[75.61609,29.40322],[75.62011,29.40327],[75.62157,29.40787],[75.62393,29.40714],[75.62403,29.40941],[75.63088,29.41671],[75.63651,29.41643],[75.63854,29.4146],[75.64628,29.42053],[75.66034,29.42498],[75.69436,29.42564],[75.70137,29.42438],[75.7105,29.43038],[75.71668,29.42899],[75.71951,29.42501],[75.73069,29.41735],[75.72417,29.40501],[75.7381,29.39644],[75.75404,29.40499],[75.75684,29.40873],[75.76846,29.41505],[75.77161,29.415],[75.781,29.43746],[75.77233,29.44719],[75.75583,29.47686],[75.75183,29.48028],[75.75487,29.49462],[75.76185,29.50657],[75.78132,29.51214],[75.78784,29.51813],[75.79878,29.51544],[75.80188,29.52101],[75.80542,29.52145],[75.81636,29.51814],[75.82432,29.51136],[75.8342,29.50849],[75.83976,29.50982],[75.84795,29.52035],[75.85456,29.52588],[75.85506,29.53631],[75.85227,29.53924],[75.85363,29.54484],[75.85818,29.55034],[75.87207,29.55577],[75.87244,29.54517],[75.87669,29.53779],[75.89427,29.53635],[75.89698,29.54569],[75.89571,29.54671],[75.89713,29.54689],[75.89419,29.55348],[75.89453,29.5578],[75.91639,29.55405],[75.92296,29.5628],[75.92662,29.57608],[75.93482,29.58024],[75.94034,29.5797],[75.94195,29.57605],[75.94642,29.57528],[75.94927,29.57043],[75.95322,29.5697],[75.96409,29.56251],[75.96012,29.57581],[75.96049,29.58198],[75.96239,29.58572],[75.96142,29.59144],[75.95675,29.59381],[75.94871,29.59383],[75.95261,29.60068],[75.95168,29.60627],[75.95525,29.61202],[75.95735,29.61286],[75.95492,29.61385],[75.95711,29.621],[75.95667,29.62697],[75.94684,29.63865],[75.94703,29.64142],[75.94135,29.6415],[75.94871,29.65502],[75.9486,29.66053],[75.95141,29.67021],[75.94292,29.68187],[75.93651,29.68177],[75.93359,29.68464],[75.94002,29.69236],[75.94475,29.70301],[75.94746,29.71911],[75.94734,29.72938],[75.94113,29.73154],[75.93869,29.73066],[75.92239,29.73766],[75.91944,29.74133],[75.91497,29.74302],[75.91461,29.74796],[75.90631,29.75333],[75.9027,29.75162],[75.90448,29.74892],[75.9008,29.74888],[75.89884,29.74624],[75.88595,29.74538],[75.88238,29.751],[75.87025,29.7493],[75.86925,29.75197],[75.87036,29.75754],[75.86674,29.76653],[75.85971,29.768],[75.85832,29.7708],[75.85141,29.7727],[75.85356,29.77638],[75.85291,29.77804],[75.84583,29.78227],[75.84368,29.78983],[75.84049,29.78865],[75.83701,29.79425],[75.83799,29.7971],[75.83493,29.8088],[75.83776,29.81302],[75.83484,29.81446],[75.8303,29.81178],[75.82585,29.81451],[75.82243,29.80779],[75.81583,29.80416],[75.81149,29.80553],[75.80498,29.80484],[75.8004,29.80726]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"610","area_level":"District","area_name":"Ariyalur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.32269,11.41922],[79.31274,11.41849],[79.31266,11.41635],[79.29974,11.41241],[79.29259,11.41233],[79.29,11.4023],[79.29602,11.37999],[79.27362,11.38034],[79.27293,11.38577],[79.26764,11.38571],[79.25861,11.38847],[79.2555,11.38617],[79.24943,11.37284],[79.24156,11.36962],[79.23818,11.37266],[79.23896,11.38321],[79.23783,11.38862],[79.23335,11.39152],[79.22603,11.39205],[79.21083,11.38523],[79.18971,11.37932],[79.18062,11.37437],[79.17228,11.37471],[79.16815,11.37842],[79.16637,11.37556],[79.16322,11.3753],[79.16277,11.36971],[79.15811,11.3672],[79.15314,11.36683],[79.15075,11.36343],[79.15064,11.35779],[79.15498,11.35593],[79.15961,11.34878],[79.15746,11.33842],[79.15032,11.33973],[79.14961,11.33497],[79.1471,11.3338],[79.13078,11.33239],[79.12496,11.31076],[79.14091,11.30931],[79.1427,11.29911],[79.13962,11.29574],[79.13927,11.29001],[79.1301,11.29758],[79.11881,11.29333],[79.11409,11.29373],[79.11089,11.28755],[79.1134,11.28698],[79.11303,11.2828],[79.10959,11.28287],[79.10931,11.28048],[79.10898,11.27023],[79.11523,11.27043],[79.11579,11.26811],[79.11979,11.26682],[79.12054,11.26371],[79.12197,11.26411],[79.12244,11.25907],[79.11998,11.25885],[79.12217,11.24873],[79.10944,11.24438],[79.11117,11.2306],[79.1074,11.23219],[79.1039,11.22946],[79.09891,11.23066],[79.09518,11.21672],[79.09345,11.19985],[79.08913,11.19975],[79.08548,11.20477],[79.07457,11.20456],[79.07313,11.20811],[79.06593,11.20436],[79.06626,11.19697],[79.06797,11.19509],[79.06723,11.18886],[79.07577,11.18927],[79.07841,11.18076],[79.07588,11.17831],[79.06937,11.17711],[79.07103,11.17151],[79.07298,11.17018],[79.07247,11.15925],[79.07075,11.15446],[79.05952,11.15227],[79.06073,11.15034],[79.06057,11.14127],[79.0561,11.14053],[79.05507,11.12987],[79.05714,11.12989],[79.05925,11.12555],[79.06117,11.12809],[79.0654,11.12687],[79.06452,11.12196],[79.0675,11.11832],[79.06609,11.11477],[79.06941,11.10889],[79.06483,11.10049],[79.06124,11.0978],[79.05436,11.08497],[79.04891,11.08545],[79.0488,11.0867],[79.03228,11.08388],[79.03042,11.07606],[79.02576,11.07539],[79.02444,11.07313],[79.02441,11.06767],[79.01825,11.06644],[79.01844,11.0629],[79.01315,11.06271],[79.00645,11.05885],[79.00838,11.04207],[79.00997,11.04086],[79.01005,11.03434],[79.00805,11.03298],[79.01232,11.01009],[79.00601,11.00845],[78.99408,11.00061],[78.99186,11.0014],[78.98962,10.97849],[78.98226,10.97553],[78.98352,10.97086],[78.98743,10.9668],[78.97561,10.96902],[78.97296,10.97171],[78.95339,10.97307],[78.9468,10.97657],[78.94621,10.97498],[78.94742,10.96178],[78.95029,10.95552],[78.9609,10.94978],[78.97204,10.94837],[78.9778,10.94323],[78.98025,10.93883],[78.9827,10.92167],[78.98613,10.9276],[78.99033,10.92842],[79.00195,10.92215],[79.00694,10.90128],[79.00571,10.8936],[79.02327,10.89012],[79.03253,10.88657],[79.048,10.88777],[79.0551,10.89061],[79.06325,10.89808],[79.07161,10.91696],[79.07617,10.92208],[79.08416,10.92672],[79.09581,10.92696],[79.10992,10.92495],[79.14358,10.9407],[79.15699,10.94222],[79.17863,10.93969],[79.18261,10.94099],[79.18388,10.9437],[79.18922,10.94645],[79.2029,10.94901],[79.20477,10.94048],[79.20828,10.94025],[79.21171,10.94069],[79.2222,10.94645],[79.23966,10.96472],[79.26889,10.98645],[79.27467,10.9933],[79.27332,10.99708],[79.28019,11.00086],[79.28054,11.00383],[79.29102,11.01442],[79.30325,11.01718],[79.30881,11.02087],[79.31183,11.0176],[79.33337,11.03025],[79.34333,11.04065],[79.35001,11.04321],[79.35803,11.04925],[79.36554,11.05277],[79.37181,11.05372],[79.39892,11.06694],[79.41344,11.08199],[79.41741,11.09207],[79.42274,11.09752],[79.42454,11.10636],[79.43111,11.12146],[79.44466,11.13452],[79.44794,11.14073],[79.45866,11.15055],[79.45582,11.15588],[79.46008,11.15937],[79.46388,11.17054],[79.47235,11.1772],[79.4818,11.17763],[79.49563,11.19898],[79.50182,11.20335],[79.50072,11.20522],[79.50547,11.22241],[79.51021,11.22814],[79.50495,11.23275],[79.50505,11.23803],[79.49517,11.24841],[79.49489,11.25851],[79.50398,11.25777],[79.50525,11.26458],[79.5039,11.27241],[79.50117,11.27269],[79.50174,11.291],[79.4975,11.293],[79.4971,11.30306],[79.49508,11.30359],[79.4983,11.31389],[79.48742,11.31683],[79.47355,11.31407],[79.4709,11.31813],[79.46323,11.31833],[79.46408,11.32121],[79.4608,11.32078],[79.4615,11.32321],[79.45795,11.32584],[79.4581,11.32764],[79.45527,11.32588],[79.45533,11.3274],[79.45195,11.32856],[79.45237,11.33208],[79.44865,11.33524],[79.4466,11.33569],[79.44639,11.33353],[79.43753,11.3338],[79.43554,11.34059],[79.4331,11.33991],[79.4308,11.34555],[79.43658,11.34892],[79.43732,11.35729],[79.42843,11.35739],[79.4258,11.36666],[79.4247,11.36036],[79.41548,11.36164],[79.41297,11.36432],[79.40854,11.36486],[79.40537,11.35414],[79.40034,11.3499],[79.3983,11.35304],[79.3952,11.35351],[79.39362,11.36671],[79.38923,11.36694],[79.3891,11.36876],[79.39029,11.37296],[79.39407,11.37717],[79.39132,11.37823],[79.39198,11.38816],[79.38975,11.38795],[79.38974,11.39054],[79.39055,11.3974],[79.39133,11.399],[79.39402,11.39925],[79.39407,11.4017],[79.38789,11.40397],[79.38758,11.40623],[79.38465,11.40658],[79.38508,11.40921],[79.37981,11.41051],[79.37963,11.40395],[79.37765,11.4029],[79.37962,11.40013],[79.38246,11.40032],[79.38243,11.40225],[79.38543,11.40192],[79.38404,11.39712],[79.37527,11.39774],[79.37329,11.39853],[79.37363,11.40296],[79.37478,11.40505],[79.37737,11.4053],[79.37772,11.41127],[79.36998,11.41699],[79.35319,11.41891],[79.34613,11.41582],[79.33267,11.41928],[79.32269,11.41922]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"611","area_level":"District","area_name":"Arwal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[84.7185,25.29711],[84.7186,25.29929],[84.70838,25.30495],[84.70204,25.31498],[84.68784,25.30893],[84.67922,25.30368],[84.67119,25.29617],[84.65797,25.27372],[84.65126,25.25899],[84.64015,25.24558],[84.6371,25.24623],[84.6356,25.24506],[84.63714,25.24374],[84.62918,25.23774],[84.61835,25.2325],[84.58935,25.22266],[84.57124,25.21906],[84.55566,25.21166],[84.53328,25.21043],[84.52089,25.20722],[84.48413,25.18352],[84.46571,25.16483],[84.4452,25.129],[84.4713,25.11535],[84.46144,25.10711],[84.45792,25.10168],[84.46345,25.09901],[84.46454,25.09578],[84.47262,25.08928],[84.47363,25.09277],[84.47621,25.09551],[84.4787,25.09461],[84.48053,25.09818],[84.48415,25.0972],[84.48633,25.09918],[84.49105,25.09637],[84.49596,25.1021],[84.49782,25.10174],[84.50131,25.10498],[84.50675,25.10475],[84.50806,25.10751],[84.52108,25.10735],[84.52683,25.10523],[84.54014,25.10461],[84.54689,25.11083],[84.5499,25.11182],[84.55329,25.11052],[84.55643,25.11534],[84.56367,25.11488],[84.56477,25.11697],[84.57054,25.11541],[84.56806,25.10534],[84.58544,25.10239],[84.59398,25.10273],[84.59008,25.08399],[84.58282,25.08272],[84.58144,25.07354],[84.58315,25.07307],[84.5888,25.07417],[84.58902,25.07753],[84.59622,25.07762],[84.5998,25.07962],[84.60005,25.08762],[84.60261,25.08895],[84.60359,25.09505],[84.61296,25.09322],[84.6123,25.10328],[84.62006,25.10411],[84.62623,25.10262],[84.62513,25.09425],[84.62794,25.09398],[84.62586,25.08345],[84.6271,25.07949],[84.63898,25.08868],[84.6417,25.09382],[84.64926,25.09912],[84.65254,25.10438],[84.67536,25.09305],[84.68187,25.10094],[84.68434,25.10028],[84.69979,25.08961],[84.71417,25.08492],[84.71033,25.07949],[84.71771,25.07791],[84.71878,25.08009],[84.72352,25.07917],[84.72346,25.07616],[84.72891,25.07499],[84.72844,25.07035],[84.73608,25.06904],[84.73402,25.05525],[84.74792,25.05453],[84.75196,25.0529],[84.7569,25.05378],[84.76911,25.04762],[84.77118,25.05101],[84.77634,25.05216],[84.77755,25.05881],[84.78003,25.06447],[84.78241,25.06611],[84.79339,25.06623],[84.79393,25.06398],[84.79825,25.06323],[84.80497,25.07006],[84.81089,25.06981],[84.81189,25.07225],[84.82392,25.06964],[84.82478,25.06538],[84.83237,25.06654],[84.83443,25.06043],[84.84354,25.06034],[84.84508,25.06357],[84.85625,25.06198],[84.85655,25.06634],[84.85416,25.0675],[84.85383,25.06939],[84.85489,25.07621],[84.85574,25.07847],[84.8604,25.07983],[84.86262,25.08493],[84.86453,25.08499],[84.86483,25.09055],[84.86039,25.09219],[84.86501,25.09949],[84.86356,25.10152],[84.85043,25.1039],[84.85004,25.11097],[84.85224,25.11352],[84.85311,25.11855],[84.84805,25.11725],[84.84676,25.11552],[84.84658,25.122],[84.84347,25.12271],[84.84167,25.12745],[84.84382,25.13083],[84.84417,25.13538],[84.83795,25.1367],[84.83805,25.13985],[84.83659,25.14084],[84.82998,25.14144],[84.82985,25.15689],[84.83057,25.1587],[84.83682,25.16162],[84.83688,25.16386],[84.83417,25.16403],[84.83435,25.16535],[84.83737,25.16582],[84.83843,25.17304],[84.84126,25.17541],[84.83869,25.18066],[84.83353,25.18293],[84.83343,25.19115],[84.8355,25.19726],[84.83186,25.19781],[84.83216,25.20094],[84.83648,25.20319],[84.83917,25.21154],[84.84042,25.21376],[84.84237,25.21345],[84.84391,25.21773],[84.8597,25.22473],[84.85948,25.22798],[84.85641,25.22874],[84.85641,25.23014],[84.84667,25.23128],[84.84743,25.23516],[84.84126,25.23628],[84.8374,25.23439],[84.83571,25.23021],[84.8288,25.23],[84.82584,25.22583],[84.82053,25.22539],[84.81345,25.22114],[84.81181,25.21696],[84.80693,25.21665],[84.80522,25.22],[84.79205,25.22381],[84.78779,25.22229],[84.77454,25.22487],[84.76707,25.21991],[84.75521,25.22079],[84.75411,25.21622],[84.74879,25.21569],[84.74877,25.21382],[84.7432,25.21422],[84.74243,25.21116],[84.73743,25.20791],[84.73447,25.20326],[84.72615,25.20532],[84.729,25.21286],[84.722,25.21518],[84.72975,25.22277],[84.74114,25.22396],[84.74274,25.22628],[84.74946,25.22969],[84.75,25.23682],[84.7577,25.23846],[84.75861,25.2353],[84.76217,25.23353],[84.76312,25.2305],[84.77371,25.23064],[84.77554,25.23683],[84.78588,25.23749],[84.7879,25.23893],[84.79074,25.25134],[84.79033,25.25558],[84.78641,25.25687],[84.78588,25.2588],[84.78062,25.25896],[84.77621,25.25565],[84.77297,25.25779],[84.76619,25.257],[84.76453,25.26393],[84.75392,25.26341],[84.75394,25.26474],[84.75039,25.26481],[84.75072,25.26704],[84.7478,25.26748],[84.74692,25.26988],[84.74245,25.26878],[84.73785,25.26308],[84.73718,25.25359],[84.72507,25.25633],[84.72364,25.25759],[84.72428,25.26079],[84.72188,25.26252],[84.71244,25.26214],[84.70916,25.25983],[84.70545,25.26145],[84.70241,25.259],[84.7043,25.25782],[84.70328,25.25613],[84.69743,25.25498],[84.68693,25.2599],[84.68761,25.26432],[84.6922,25.2725],[84.69885,25.27102],[84.70668,25.27298],[84.70798,25.2824],[84.72667,25.28608],[84.72605,25.29697],[84.7185,25.29711]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"612","area_level":"District","area_name":"Chirang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.64641,26.77683],[90.63444,26.79381],[90.58455,26.80374],[90.54661,26.81664],[90.41748,26.90453],[90.35663,26.90066],[90.35027,26.88913],[90.34779,26.87529],[90.3363,26.86873],[90.33631,26.84511],[90.33944,26.82584],[90.34508,26.80574],[90.3494,26.80029],[90.35211,26.79245],[90.35528,26.77179],[90.36385,26.75886],[90.36888,26.73315],[90.37503,26.72384],[90.37698,26.71758],[90.37633,26.70192],[90.374,26.69577],[90.36766,26.68952],[90.35679,26.65733],[90.35074,26.65083],[90.34686,26.64144],[90.3477,26.63901],[90.3572,26.63134],[90.35508,26.6216],[90.35769,26.61664],[90.35393,26.60977],[90.35622,26.60266],[90.36237,26.599],[90.3615,26.59584],[90.35862,26.59414],[90.3631,26.58936],[90.36632,26.5821],[90.36403,26.57808],[90.35912,26.57677],[90.35495,26.56994],[90.36079,26.56788],[90.36256,26.55262],[90.37131,26.54437],[90.37841,26.54432],[90.38251,26.54157],[90.38507,26.54298],[90.38869,26.54198],[90.38768,26.53524],[90.38084,26.5344],[90.38217,26.52891],[90.38593,26.52347],[90.39134,26.52121],[90.39146,26.51453],[90.40145,26.51333],[90.40358,26.51176],[90.3978,26.5118],[90.39701,26.5079],[90.39321,26.50315],[90.40002,26.4988],[90.39977,26.49513],[90.39749,26.49285],[90.39137,26.49319],[90.38622,26.48523],[90.38965,26.4803],[90.38915,26.47715],[90.40503,26.47526],[90.40231,26.47182],[90.40316,26.46412],[90.39983,26.44551],[90.40513,26.44201],[90.4194,26.44872],[90.41725,26.43663],[90.42253,26.43705],[90.43122,26.43472],[90.42749,26.43014],[90.42962,26.42511],[90.42572,26.41529],[90.43063,26.41633],[90.43301,26.41311],[90.4408,26.41784],[90.44524,26.41784],[90.44007,26.42405],[90.44666,26.42499],[90.44545,26.42875],[90.44247,26.42863],[90.44211,26.43027],[90.44465,26.43346],[90.44472,26.43874],[90.44195,26.44109],[90.43424,26.44202],[90.43355,26.44892],[90.43157,26.4525],[90.43717,26.46106],[90.44713,26.45276],[90.45977,26.453],[90.46317,26.46468],[90.47707,26.46262],[90.47653,26.45463],[90.46397,26.45282],[90.46144,26.45072],[90.4562,26.43267],[90.46318,26.43094],[90.46321,26.42571],[90.45938,26.41919],[90.46003,26.41072],[90.47172,26.40609],[90.46795,26.39883],[90.47006,26.39562],[90.474,26.39429],[90.47386,26.3895],[90.47659,26.3856],[90.48083,26.3895],[90.47846,26.39076],[90.48097,26.39586],[90.48137,26.40184],[90.47824,26.40927],[90.48087,26.42059],[90.48522,26.41792],[90.4928,26.41929],[90.49578,26.4239],[90.49691,26.43008],[90.50411,26.42626],[90.50348,26.42966],[90.50802,26.44707],[90.50974,26.4489],[90.50568,26.45546],[90.49819,26.45947],[90.50432,26.46772],[90.50332,26.47172],[90.51211,26.49719],[90.50967,26.49906],[90.51009,26.50051],[90.51422,26.50259],[90.51774,26.50818],[90.51958,26.50924],[90.52268,26.50818],[90.53061,26.50339],[90.54033,26.50166],[90.54736,26.49781],[90.56253,26.49843],[90.57096,26.49678],[90.57521,26.49893],[90.58123,26.49628],[90.58495,26.492],[90.58732,26.49277],[90.58989,26.48984],[90.597,26.49345],[90.59964,26.49068],[90.60182,26.4914],[90.60229,26.4974],[90.6043,26.49815],[90.5904,26.50447],[90.58889,26.5116],[90.59448,26.51258],[90.59725,26.51036],[90.59843,26.51462],[90.60111,26.51635],[90.61099,26.51526],[90.62355,26.50777],[90.62241,26.49851],[90.61999,26.49564],[90.62078,26.49359],[90.62877,26.49664],[90.6497,26.5007],[90.68228,26.49907],[90.67819,26.48943],[90.68562,26.4818],[90.70559,26.48313],[90.71313,26.48204],[90.71698,26.47921],[90.71321,26.47054],[90.71614,26.45755],[90.7101,26.4516],[90.71626,26.44555],[90.72818,26.44633],[90.73568,26.44185],[90.73961,26.44302],[90.74158,26.4448],[90.73872,26.44657],[90.74262,26.45477],[90.74473,26.46562],[90.73101,26.47183],[90.73264,26.47772],[90.73102,26.4829],[90.73472,26.48591],[90.74702,26.48855],[90.75178,26.48713],[90.75642,26.48339],[90.76106,26.48291],[90.76405,26.48429],[90.76779,26.48737],[90.77741,26.50484],[90.77607,26.50793],[90.76412,26.50617],[90.76074,26.50755],[90.75759,26.5124],[90.7591,26.51773],[90.77157,26.5216],[90.77534,26.5309],[90.78516,26.52925],[90.78701,26.52759],[90.78753,26.51756],[90.80099,26.52235],[90.80886,26.52116],[90.83717,26.52353],[90.84319,26.53212],[90.85155,26.52733],[90.85379,26.52911],[90.85195,26.53018],[90.85504,26.53291],[90.85323,26.5356],[90.85014,26.53603],[90.8475,26.53421],[90.84186,26.53799],[90.83784,26.53725],[90.83185,26.53921],[90.83113,26.54256],[90.82832,26.5436],[90.82825,26.55515],[90.82673,26.55932],[90.81896,26.56306],[90.81744,26.56776],[90.8216,26.57051],[90.8253,26.57596],[90.83504,26.57173],[90.84685,26.57225],[90.84761,26.57767],[90.8531,26.58292],[90.85046,26.5835],[90.85643,26.59878],[90.86801,26.59978],[90.87363,26.60898],[90.87572,26.61734],[90.89319,26.62532],[90.90095,26.63544],[90.90171,26.64446],[90.90041,26.64786],[90.90274,26.65664],[90.89929,26.6642],[90.89504,26.66443],[90.89547,26.67309],[90.90142,26.68097],[90.89866,26.68603],[90.89885,26.68884],[90.90199,26.6929],[90.90753,26.69556],[90.91621,26.71196],[90.9133,26.72003],[90.91474,26.72897],[90.92043,26.73587],[90.92261,26.74141],[90.928,26.74489],[90.93859,26.7681],[90.94369,26.77569],[90.94812,26.77918],[90.95707,26.78168],[90.9565,26.78777],[90.81643,26.77598],[90.74236,26.77483],[90.71728,26.76827],[90.69326,26.77064],[90.67598,26.78409],[90.64641,26.77683]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"613","area_level":"District","area_name":"Peren","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.92789,25.62061],[93.92448,25.6201],[93.9223,25.61657],[93.91761,25.61731],[93.91572,25.61427],[93.90642,25.62936],[93.89663,25.63736],[93.89205,25.65019],[93.88898,25.65271],[93.88725,25.65782],[93.88093,25.66236],[93.87238,25.67547],[93.86038,25.68589],[93.85365,25.68631],[93.84001,25.69281],[93.83634,25.70157],[93.82097,25.71739],[93.81655,25.71231],[93.81824,25.71078],[93.81649,25.70307],[93.80975,25.70222],[93.80639,25.69991],[93.80533,25.69651],[93.80044,25.69422],[93.80059,25.69103],[93.79797,25.68844],[93.79776,25.68272],[93.79398,25.68212],[93.79216,25.673],[93.78698,25.68479],[93.77763,25.69195],[93.77488,25.69741],[93.76914,25.70335],[93.76073,25.70815],[93.75495,25.70838],[93.74442,25.71367],[93.74338,25.72105],[93.74657,25.72518],[93.74263,25.72734],[93.74258,25.72998],[93.73398,25.73131],[93.73639,25.73473],[93.7367,25.73933],[93.73072,25.74339],[93.73168,25.74421],[93.72898,25.74681],[93.72995,25.75068],[93.72692,25.75163],[93.73183,25.75522],[93.73079,25.75813],[93.71906,25.75538],[93.71966,25.75916],[93.71673,25.76416],[93.71103,25.76419],[93.70361,25.76902],[93.7009,25.76697],[93.69118,25.76626],[93.68501,25.77047],[93.68202,25.76113],[93.68776,25.75773],[93.6876,25.75494],[93.68951,25.75509],[93.68759,25.75067],[93.69069,25.74566],[93.68832,25.74141],[93.69008,25.72974],[93.68833,25.72417],[93.68897,25.72046],[93.69263,25.71862],[93.69197,25.71448],[93.68899,25.70954],[93.68535,25.70718],[93.68619,25.70258],[93.67948,25.69477],[93.67004,25.69467],[93.66855,25.69629],[93.66027,25.69092],[93.65545,25.69018],[93.65342,25.68568],[93.65059,25.68492],[93.64841,25.68671],[93.64742,25.68447],[93.64954,25.68401],[93.65118,25.68108],[93.64657,25.6791],[93.6495,25.67703],[93.64328,25.66975],[93.64086,25.66896],[93.64136,25.66753],[93.63594,25.66064],[93.63234,25.66199],[93.62212,25.66018],[93.62081,25.6579],[93.61454,25.65606],[93.61332,25.6543],[93.6051,25.65353],[93.60144,25.65067],[93.59172,25.6534],[93.58731,25.65719],[93.58997,25.66235],[93.58962,25.66551],[93.59166,25.66631],[93.59111,25.66914],[93.58771,25.66965],[93.58431,25.66775],[93.58173,25.66856],[93.58116,25.67101],[93.58984,25.67642],[93.58883,25.68218],[93.59191,25.68551],[93.58799,25.69292],[93.58333,25.6924],[93.57744,25.69433],[93.57861,25.69823],[93.5777,25.69968],[93.57542,25.69841],[93.57336,25.70485],[93.5744,25.71471],[93.57003,25.70839],[93.56302,25.70763],[93.55949,25.71076],[93.55236,25.71147],[93.54735,25.71705],[93.54319,25.71909],[93.54319,25.71464],[93.54801,25.7114],[93.54192,25.70459],[93.54117,25.69884],[93.53629,25.7018],[93.53207,25.69698],[93.53123,25.69257],[93.52747,25.69119],[93.5236,25.6926],[93.52396,25.69592],[93.52249,25.69757],[93.52048,25.69161],[93.51265,25.68459],[93.51372,25.68282],[93.51754,25.68229],[93.51835,25.67943],[93.51409,25.67707],[93.51114,25.67209],[93.50744,25.67251],[93.5098,25.66847],[93.5066,25.66788],[93.50551,25.66642],[93.50646,25.66415],[93.49998,25.66072],[93.49655,25.65453],[93.49122,25.6532],[93.48802,25.65431],[93.4868,25.65312],[93.48777,25.65139],[93.48521,25.64833],[93.48144,25.65123],[93.48294,25.64546],[93.48174,25.6445],[93.47675,25.64777],[93.47383,25.64401],[93.47149,25.6454],[93.4688,25.64433],[93.47204,25.64239],[93.46417,25.64462],[93.46046,25.64062],[93.45731,25.64114],[93.45573,25.63869],[93.4606,25.63678],[93.4609,25.63231],[93.45509,25.63385],[93.44959,25.63953],[93.44948,25.63561],[93.44666,25.6346],[93.44437,25.63961],[93.44216,25.63817],[93.44162,25.63468],[93.43736,25.63481],[93.43726,25.63166],[93.43457,25.63119],[93.43366,25.62943],[93.43043,25.62947],[93.42738,25.63253],[93.42491,25.6303],[93.42455,25.62547],[93.41997,25.6247],[93.42226,25.62043],[93.42161,25.61824],[93.41835,25.61764],[93.41373,25.62099],[93.41436,25.61805],[93.41048,25.61654],[93.41101,25.61359],[93.40783,25.61441],[93.40626,25.6114],[93.40152,25.61109],[93.40127,25.60577],[93.40287,25.60216],[93.39947,25.59907],[93.39878,25.59603],[93.39695,25.59703],[93.3947,25.59445],[93.39403,25.59607],[93.39243,25.5959],[93.38929,25.5911],[93.3856,25.59277],[93.38695,25.58997],[93.38575,25.58705],[93.38341,25.58792],[93.38206,25.58396],[93.37835,25.5826],[93.38159,25.58197],[93.37983,25.57658],[93.3743,25.57709],[93.37539,25.57308],[93.36951,25.57042],[93.36554,25.56518],[93.36245,25.566],[93.36159,25.56387],[93.36406,25.5612],[93.35847,25.55726],[93.35872,25.55463],[93.35644,25.55619],[93.35461,25.55552],[93.35216,25.55999],[93.34328,25.56004],[93.33798,25.55687],[93.33575,25.55398],[93.33708,25.55283],[93.33261,25.54838],[93.32924,25.54879],[93.32673,25.54531],[93.33036,25.54368],[93.33049,25.54203],[93.33299,25.54236],[93.33378,25.53959],[93.33639,25.53873],[93.33531,25.53422],[93.34036,25.53284],[93.34057,25.53495],[93.34508,25.53419],[93.34833,25.52994],[93.35012,25.53225],[93.34997,25.52868],[93.35266,25.5283],[93.35509,25.52478],[93.35769,25.51527],[93.35686,25.5137],[93.36158,25.51234],[93.36213,25.50671],[93.364,25.50653],[93.36433,25.50376],[93.3692,25.50353],[93.36734,25.49946],[93.37667,25.49753],[93.37738,25.49298],[93.38551,25.49039],[93.38386,25.48794],[93.38655,25.48726],[93.38463,25.4851],[93.38672,25.48296],[93.39142,25.48216],[93.3891,25.47843],[93.38661,25.47778],[93.3892,25.47638],[93.38898,25.47254],[93.38446,25.46916],[93.38682,25.46883],[93.38691,25.46611],[93.39041,25.46444],[93.38834,25.46349],[93.39034,25.46038],[93.39166,25.46178],[93.394,25.45844],[93.3973,25.46026],[93.40064,25.45636],[93.40247,25.45078],[93.40872,25.44829],[93.41041,25.44987],[93.41555,25.44498],[93.41995,25.44496],[93.42561,25.44832],[93.43639,25.44818],[93.43855,25.44551],[93.43753,25.44304],[93.43952,25.44101],[93.44333,25.4411],[93.45029,25.43565],[93.45543,25.4344],[93.45819,25.43098],[93.45833,25.42592],[93.46232,25.41785],[93.45933,25.40837],[93.45966,25.40323],[93.4632,25.39559],[93.47299,25.38599],[93.47361,25.37928],[93.47177,25.37589],[93.47253,25.37428],[93.46501,25.36067],[93.4638,25.35964],[93.45875,25.36068],[93.45158,25.35395],[93.45196,25.34703],[93.44843,25.34064],[93.45205,25.33596],[93.45651,25.33538],[93.45542,25.33214],[93.45667,25.32986],[93.45343,25.32146],[93.46663,25.31182],[93.47056,25.30505],[93.47156,25.29629],[93.46899,25.28204],[93.47314,25.27563],[93.48393,25.2725],[93.49127,25.27528],[93.50073,25.27231],[93.50714,25.27213],[93.5005,25.24992],[93.50147,25.24065],[93.51272,25.24127],[93.5169,25.24528],[93.52564,25.24484],[93.5375,25.24183],[93.55098,25.24696],[93.55937,25.243],[93.57105,25.22393],[93.57441,25.22206],[93.57786,25.22237],[93.58647,25.21629],[93.58815,25.21025],[93.59101,25.20746],[93.58918,25.20025],[93.59327,25.20062],[93.59717,25.1987],[93.60043,25.20063],[93.60415,25.19836],[93.60872,25.20249],[93.6173,25.2212],[93.62506,25.23203],[93.62803,25.23918],[93.63425,25.24666],[93.63927,25.25626],[93.63973,25.26213],[93.64606,25.26535],[93.6478,25.27526],[93.66179,25.29465],[93.66093,25.30046],[93.66229,25.3045],[93.66912,25.30772],[93.67015,25.31348],[93.66829,25.32492],[93.68012,25.32582],[93.68331,25.3274],[93.68766,25.34361],[93.68899,25.35778],[93.70779,25.35424],[93.71424,25.35774],[93.71519,25.3665],[93.7193,25.37171],[93.73598,25.38052],[93.73752,25.38554],[93.73628,25.39129],[93.74288,25.40181],[93.76062,25.4142],[93.77726,25.42076],[93.77672,25.42553],[93.7843,25.43191],[93.7864,25.43941],[93.78994,25.44468],[93.79863,25.45642],[93.80521,25.46159],[93.81011,25.48073],[93.80031,25.49505],[93.79353,25.50042],[93.78475,25.50255],[93.76969,25.49392],[93.76566,25.49286],[93.7621,25.496],[93.76061,25.5116],[93.76564,25.51382],[93.76451,25.5214],[93.76733,25.53213],[93.76699,25.53639],[93.77583,25.53414],[93.80416,25.54056],[93.81223,25.54148],[93.81602,25.5404],[93.81965,25.54417],[93.82136,25.55201],[93.82956,25.55241],[93.82978,25.55736],[93.8328,25.55905],[93.8585,25.55346],[93.87461,25.55788],[93.88819,25.5643],[93.91331,25.56254],[93.91553,25.55985],[93.92631,25.56119],[93.93968,25.5592],[93.95353,25.55248],[93.96135,25.55229],[93.96877,25.55688],[93.97398,25.56186],[93.9764,25.56656],[93.9667,25.56845],[93.96573,25.57386],[93.96894,25.58303],[93.9686,25.58728],[93.97906,25.5962],[93.97362,25.59975],[93.96602,25.59936],[93.95944,25.59299],[93.95501,25.59206],[93.94787,25.59646],[93.94422,25.59679],[93.93625,25.60341],[93.93271,25.61333],[93.92865,25.61659],[93.92789,25.62061]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"614","area_level":"District","area_name":"Kiphire","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.69442,26.03214],[94.69189,26.03587],[94.68708,26.03806],[94.67991,26.03372],[94.67804,26.02888],[94.6734,26.02639],[94.66804,26.01853],[94.66779,26.01479],[94.66421,26.0114],[94.66389,26.00813],[94.65595,26.00349],[94.6567,26.00148],[94.65249,25.99646],[94.65135,25.99233],[94.6434,25.98662],[94.64185,25.98156],[94.63316,25.97083],[94.63065,25.96474],[94.62793,25.96348],[94.62534,25.95676],[94.62165,25.95368],[94.61488,25.94146],[94.60969,25.93821],[94.61092,25.93599],[94.60866,25.93466],[94.60848,25.93275],[94.60366,25.93138],[94.60226,25.92756],[94.5994,25.9259],[94.59895,25.92288],[94.59591,25.92112],[94.59376,25.9141],[94.58706,25.91027],[94.58638,25.90596],[94.58321,25.90442],[94.57431,25.89441],[94.57197,25.89449],[94.56982,25.88967],[94.57625,25.88356],[94.59206,25.87906],[94.59588,25.87537],[94.60206,25.86231],[94.60238,25.85815],[94.61023,25.84414],[94.61072,25.83418],[94.60285,25.82624],[94.61028,25.81799],[94.61549,25.81574],[94.62358,25.81803],[94.62822,25.81559],[94.64086,25.81751],[94.65418,25.81488],[94.6628,25.80894],[94.68497,25.80041],[94.69573,25.79229],[94.70153,25.78391],[94.70639,25.77031],[94.71617,25.75566],[94.71369,25.74122],[94.7157,25.73877],[94.71749,25.72804],[94.71886,25.72753],[94.71915,25.72516],[94.71678,25.72196],[94.727,25.72524],[94.7231,25.72664],[94.72712,25.73071],[94.72156,25.73318],[94.721,25.7348],[94.7232,25.7373],[94.72042,25.73947],[94.72706,25.74426],[94.7244,25.74553],[94.72509,25.7481],[94.7305,25.75041],[94.72874,25.75333],[94.72981,25.75503],[94.73353,25.75533],[94.73314,25.7602],[94.73844,25.76488],[94.74186,25.76548],[94.74016,25.77013],[94.74701,25.77202],[94.74558,25.77671],[94.74859,25.77594],[94.75,25.77902],[94.75408,25.77997],[94.75544,25.78231],[94.75999,25.77847],[94.79025,25.77745],[94.79635,25.77495],[94.79842,25.77211],[94.80358,25.77063],[94.80964,25.76505],[94.81697,25.76468],[94.8204,25.76284],[94.83568,25.74319],[94.84078,25.74072],[94.84681,25.72908],[94.85455,25.72433],[94.8566,25.71741],[94.8551,25.70909],[94.85864,25.70282],[94.85797,25.69657],[94.85685,25.69137],[94.85429,25.68829],[94.85357,25.68062],[94.84831,25.66531],[94.84851,25.65754],[94.84609,25.65012],[94.85088,25.63332],[94.84915,25.62495],[94.85387,25.61837],[94.85138,25.61077],[94.85365,25.60863],[94.86621,25.60876],[94.86934,25.60168],[94.88163,25.58509],[94.88226,25.59175],[94.89247,25.59738],[94.89812,25.59634],[94.90077,25.59738],[94.90193,25.59945],[94.90958,25.60265],[94.91509,25.60768],[94.91632,25.62141],[94.9219,25.63495],[94.9212,25.63987],[94.92284,25.64542],[94.92533,25.65012],[94.93238,25.65714],[94.93598,25.66761],[94.95005,25.67361],[94.95213,25.67838],[94.96135,25.68506],[94.97064,25.68913],[94.97304,25.69408],[94.98868,25.70655],[94.99192,25.71952],[94.99723,25.72498],[95.00806,25.73091],[95.01518,25.73241],[95.0231,25.73174],[95.02809,25.7378],[95.03722,25.73952],[95.04052,25.74184],[95.04513,25.75523],[95.04906,25.75966],[95.04403,25.77374],[95.04663,25.77894],[95.04612,25.78451],[95.05001,25.79291],[95.04972,25.80088],[95.04668,25.80175],[95.03331,25.81424],[95.03323,25.82363],[95.02946,25.83308],[95.03039,25.83837],[95.02306,25.84478],[95.01786,25.86067],[95.00919,25.86661],[95.01158,25.876],[95.00571,25.87697],[94.99979,25.88538],[94.99598,25.88386],[94.99299,25.88018],[94.9822,25.87569],[94.97386,25.88072],[94.96986,25.89744],[94.96332,25.90314],[94.95144,25.90099],[94.94336,25.90733],[94.93593,25.91651],[94.93392,25.92499],[94.93848,25.9371],[94.93474,25.94112],[94.93041,25.94243],[94.92554,25.94927],[94.9217,25.94736],[94.92102,25.94451],[94.91135,25.94286],[94.9071,25.94438],[94.88561,25.94167],[94.88205,25.94494],[94.87405,25.94368],[94.87051,25.94567],[94.86067,25.93948],[94.84903,25.9354],[94.84586,25.93022],[94.84297,25.93011],[94.84339,25.93305],[94.8456,25.93439],[94.84667,25.93875],[94.84567,25.93995],[94.8507,25.93945],[94.85213,25.94571],[94.85801,25.95184],[94.85649,25.95429],[94.86134,25.95981],[94.86065,25.96464],[94.86993,25.97952],[94.86591,25.98358],[94.85501,25.98221],[94.84805,25.98303],[94.83446,25.99036],[94.81961,25.98951],[94.80887,25.99399],[94.80061,25.99272],[94.79504,25.99588],[94.78712,25.99406],[94.78019,26.00254],[94.77861,26.01142],[94.77024,26.01515],[94.76845,26.01769],[94.75859,26.02358],[94.74882,26.02287],[94.74414,26.02558],[94.73786,26.02083],[94.73311,26.01959],[94.72724,26.02264],[94.723,26.02151],[94.71861,26.02562],[94.71266,26.02542],[94.69442,26.03214]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"615","area_level":"District","area_name":"Longleng","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.88592,26.611],[94.88308,26.61591],[94.87995,26.612],[94.87437,26.60906],[94.87167,26.60977],[94.87025,26.61366],[94.86797,26.61161],[94.86038,26.614],[94.85524,26.6102],[94.85257,26.61399],[94.84765,26.61259],[94.84076,26.61478],[94.83908,26.61733],[94.83071,26.62244],[94.82224,26.62236],[94.81923,26.62451],[94.81475,26.62232],[94.81296,26.62441],[94.80681,26.62586],[94.80366,26.63043],[94.79303,26.63088],[94.7867,26.6338],[94.78831,26.63729],[94.78638,26.64257],[94.78799,26.64903],[94.78752,26.65503],[94.7795,26.65873],[94.78622,26.66785],[94.78111,26.67314],[94.78746,26.67799],[94.7901,26.68843],[94.78035,26.69475],[94.77997,26.69842],[94.78317,26.69964],[94.78814,26.69868],[94.79187,26.69481],[94.79833,26.6933],[94.80489,26.68924],[94.8065,26.69124],[94.80551,26.69751],[94.8125,26.69511],[94.81491,26.69584],[94.82566,26.71207],[94.83418,26.71835],[94.82626,26.72432],[94.82564,26.73122],[94.81581,26.74357],[94.80838,26.74444],[94.80727,26.74732],[94.80437,26.74915],[94.80273,26.75526],[94.79803,26.76091],[94.80456,26.76411],[94.80495,26.76781],[94.80124,26.7687],[94.79839,26.76511],[94.79363,26.76847],[94.79518,26.77065],[94.80677,26.7745],[94.81454,26.77452],[94.81616,26.7784],[94.81534,26.78407],[94.81125,26.78359],[94.80884,26.7852],[94.81328,26.79232],[94.81044,26.79235],[94.80349,26.79612],[94.79323,26.79495],[94.78899,26.79599],[94.77566,26.78976],[94.77143,26.78981],[94.7674,26.78534],[94.7668,26.77756],[94.76059,26.77541],[94.75833,26.76601],[94.75182,26.76619],[94.74835,26.7727],[94.74018,26.77598],[94.74068,26.77184],[94.73588,26.75969],[94.73625,26.74969],[94.73886,26.74584],[94.74874,26.74137],[94.75666,26.7296],[94.75211,26.72836],[94.74884,26.73151],[94.74343,26.73142],[94.74973,26.7115],[94.74751,26.70415],[94.74896,26.70268],[94.74892,26.69812],[94.72375,26.69848],[94.72765,26.69539],[94.72634,26.69263],[94.71852,26.68624],[94.71855,26.68082],[94.70698,26.67526],[94.70223,26.66845],[94.69093,26.6608],[94.68965,26.66055],[94.68838,26.66293],[94.68559,26.6622],[94.68489,26.66033],[94.68316,26.66079],[94.68273,26.65933],[94.68178,26.66028],[94.68136,26.65855],[94.67935,26.6584],[94.67979,26.65712],[94.67591,26.65403],[94.67107,26.65389],[94.67045,26.65134],[94.66693,26.64829],[94.67768,26.64824],[94.68381,26.64406],[94.68613,26.63973],[94.70416,26.63941],[94.70665,26.63821],[94.72154,26.62237],[94.72178,26.61939],[94.71816,26.61548],[94.72007,26.61021],[94.72914,26.60738],[94.73081,26.60532],[94.73008,26.60199],[94.73312,26.60096],[94.73119,26.59581],[94.73297,26.59468],[94.73353,26.59052],[94.73049,26.58904],[94.72773,26.58504],[94.72911,26.58265],[94.72478,26.58273],[94.72628,26.57998],[94.72499,26.57582],[94.72714,26.57358],[94.72585,26.56565],[94.71913,26.56229],[94.71359,26.5563],[94.7138,26.55268],[94.70321,26.53837],[94.6967,26.5368],[94.69438,26.53057],[94.68609,26.52354],[94.68658,26.51891],[94.68494,26.51619],[94.6897,26.51165],[94.6943,26.49735],[94.69378,26.48673],[94.68826,26.47943],[94.6905,26.47702],[94.69049,26.47393],[94.69915,26.46732],[94.6989,26.46376],[94.70205,26.46238],[94.70162,26.45941],[94.70535,26.45845],[94.70791,26.45396],[94.7073,26.45175],[94.70368,26.45172],[94.70477,26.44754],[94.71067,26.44556],[94.70816,26.44217],[94.71157,26.43729],[94.70717,26.4378],[94.70569,26.43454],[94.70091,26.43073],[94.70319,26.43067],[94.70348,26.42826],[94.7081,26.43302],[94.7165,26.43705],[94.7321,26.43501],[94.73508,26.43381],[94.74076,26.42574],[94.74783,26.42505],[94.75543,26.41507],[94.76698,26.41622],[94.77467,26.41891],[94.78185,26.42261],[94.78342,26.42793],[94.78463,26.42648],[94.78892,26.42675],[94.79398,26.42421],[94.79967,26.4163],[94.80848,26.41148],[94.81313,26.40529],[94.8131,26.4009],[94.81802,26.39948],[94.81911,26.39521],[94.83157,26.38586],[94.843,26.38039],[94.8473,26.37443],[94.84738,26.37198],[94.854,26.37328],[94.86604,26.37956],[94.87128,26.37835],[94.87333,26.37974],[94.88125,26.37953],[94.88249,26.38127],[94.89191,26.37392],[94.90434,26.37277],[94.9106,26.37696],[94.90773,26.38072],[94.91313,26.38209],[94.91602,26.38457],[94.9099,26.39367],[94.9145,26.40023],[94.90473,26.40289],[94.90418,26.40715],[94.90627,26.41035],[94.9015,26.41332],[94.90138,26.41765],[94.89565,26.41863],[94.89659,26.42391],[94.89261,26.42394],[94.89527,26.42926],[94.90051,26.42992],[94.8982,26.43375],[94.90154,26.43758],[94.8979,26.44026],[94.902,26.44222],[94.90262,26.44461],[94.89851,26.44658],[94.90223,26.44982],[94.90213,26.45427],[94.90581,26.45465],[94.9034,26.45723],[94.90263,26.46432],[94.89662,26.46946],[94.89684,26.4729],[94.89408,26.47358],[94.8933,26.47663],[94.88919,26.47613],[94.89658,26.48195],[94.89598,26.48616],[94.89117,26.48634],[94.89367,26.49168],[94.89158,26.49272],[94.893,26.49517],[94.89044,26.49777],[94.89062,26.50236],[94.89255,26.50383],[94.89285,26.49919],[94.8942,26.49878],[94.89762,26.50543],[94.89131,26.50938],[94.89264,26.51159],[94.8908,26.51406],[94.89263,26.51707],[94.8917,26.52186],[94.8941,26.52664],[94.894,26.53268],[94.89121,26.53353],[94.89025,26.53776],[94.89124,26.54462],[94.88699,26.54826],[94.88669,26.55131],[94.88242,26.55385],[94.88554,26.55644],[94.88709,26.55198],[94.88962,26.55126],[94.89385,26.56021],[94.88804,26.55953],[94.88665,26.56275],[94.88257,26.5639],[94.88724,26.5661],[94.88327,26.57276],[94.88049,26.57331],[94.87945,26.57728],[94.88131,26.57942],[94.88059,26.58352],[94.8855,26.58447],[94.88795,26.58869],[94.89334,26.58949],[94.89003,26.59227],[94.88589,26.58949],[94.88441,26.59001],[94.88401,26.59558],[94.88695,26.59554],[94.88902,26.5978],[94.89141,26.59718],[94.89395,26.6005],[94.88968,26.60373],[94.89376,26.60283],[94.89481,26.60398],[94.89039,26.60634],[94.88775,26.60509],[94.88523,26.60595],[94.88401,26.60772],[94.88592,26.611]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"616","area_level":"District","area_name":"Baksa","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[90.93771,26.53883],[90.93624,26.54014],[90.93609,26.542],[90.93732,26.54348],[90.94023,26.54605],[90.94114,26.54649],[90.93609,26.54573],[90.93159,26.54092],[90.93009,26.53799],[90.92983,26.53497],[90.93195,26.53066],[90.93636,26.52654],[90.93016,26.52647],[90.91827,26.52799],[90.91537,26.52749],[90.91467,26.52461],[90.91514,26.52273],[90.91921,26.52138],[90.91949,26.52001],[90.91949,26.51824],[90.91851,26.51695],[90.91654,26.51555],[90.91773,26.51446],[90.9197,26.51447],[90.92118,26.51507],[90.93032,26.51572],[90.93125,26.51466],[90.93187,26.51309],[90.93534,26.51259],[90.93858,26.51276],[90.93902,26.51474],[90.94075,26.51554],[90.94278,26.51526],[90.94718,26.51232],[90.95029,26.5126],[90.95656,26.51152],[90.95827,26.51211],[90.96031,26.51467],[90.9622,26.51461],[90.96397,26.51491],[90.96504,26.51547],[90.96504,26.5164],[90.9633,26.5173],[90.95722,26.51631],[90.95494,26.51647],[90.95336,26.51921],[90.95346,26.52034],[90.95422,26.52185],[90.95641,26.52347],[90.95789,26.52415],[90.95845,26.52511],[90.95852,26.52596],[90.95728,26.52858],[90.95706,26.53051],[90.9555,26.53176],[90.95226,26.5317],[90.95026,26.53234],[90.94876,26.53415],[90.94752,26.53722],[90.94737,26.53908],[90.94547,26.53992],[90.94286,26.53805],[90.94092,26.53761],[90.93771,26.53883]]],[[[91.44836,26.81077],[91.40765,26.8396],[91.37601,26.79523],[91.33725,26.78086],[91.29663,26.78697],[91.27709,26.80031],[91.23689,26.812],[91.19213,26.81342],[91.14585,26.81087],[91.09756,26.82199],[91.05406,26.78099],[90.99187,26.79064],[90.95928,26.78448],[90.95349,26.77966],[90.94651,26.77846],[90.9402,26.77123],[90.928,26.74489],[90.92261,26.74141],[90.92043,26.73587],[90.91423,26.72792],[90.9133,26.72003],[90.91621,26.71196],[90.90753,26.69556],[90.90199,26.6929],[90.89885,26.68884],[90.89866,26.68603],[90.90142,26.68097],[90.89547,26.67309],[90.89504,26.66443],[90.89929,26.6642],[90.90241,26.65799],[90.90252,26.65363],[90.90041,26.64786],[90.90171,26.64446],[90.90095,26.63544],[90.89439,26.62735],[90.89596,26.60259],[90.90094,26.59924],[90.89958,26.59772],[90.88429,26.59393],[90.88637,26.59086],[90.88483,26.58739],[90.88006,26.58298],[90.87554,26.58361],[90.86994,26.57976],[90.86957,26.57694],[90.87283,26.57568],[90.87135,26.57293],[90.87481,26.57076],[90.8773,26.55809],[90.8834,26.55431],[90.89124,26.55206],[90.89571,26.55605],[90.90192,26.56893],[90.9013,26.57175],[90.91287,26.57861],[90.92569,26.57567],[90.92098,26.56725],[90.92114,26.55957],[90.92543,26.55536],[90.93285,26.55516],[90.9349,26.58414],[90.94851,26.58418],[90.94871,26.58236],[90.95249,26.58365],[90.96345,26.58318],[90.96532,26.58475],[90.96318,26.59107],[90.96333,26.59857],[90.96655,26.59943],[90.96582,26.59642],[90.96792,26.59039],[90.98903,26.59057],[90.99083,26.60099],[90.99485,26.60085],[90.99436,26.59469],[90.99626,26.59002],[90.99679,26.58139],[90.99464,26.57855],[90.99597,26.57139],[90.98521,26.57547],[90.98571,26.55444],[90.98119,26.55457],[90.98223,26.54071],[90.97726,26.54103],[90.97668,26.53979],[90.9756,26.52595],[90.97687,26.49958],[90.97601,26.49812],[90.96934,26.49734],[90.96893,26.49082],[90.96227,26.49231],[90.95991,26.49041],[90.95065,26.49044],[90.95104,26.48421],[90.94748,26.48537],[90.94711,26.47985],[90.94245,26.47719],[90.93293,26.47776],[90.93612,26.47118],[90.94931,26.4729],[90.95297,26.47097],[90.9551,26.46394],[90.95045,26.46054],[90.94548,26.46176],[90.94654,26.45971],[90.95204,26.45712],[90.95527,26.46166],[90.97292,26.46116],[90.97241,26.45638],[90.96207,26.45779],[90.96108,26.44433],[90.96223,26.43975],[90.97541,26.44023],[90.97552,26.43661],[90.9698,26.43066],[90.96979,26.4288],[90.97806,26.42828],[90.98243,26.43091],[90.98197,26.41621],[90.99351,26.41813],[91.00354,26.42201],[90.99828,26.42935],[90.99687,26.43527],[91.00977,26.43506],[91.00989,26.44036],[91.01419,26.44569],[91.00535,26.44875],[91.00652,26.45591],[91.001,26.46164],[91.00232,26.46305],[91.00116,26.46682],[90.99651,26.46996],[91.00037,26.49084],[90.99838,26.49983],[90.99416,26.50485],[90.99536,26.51137],[90.99797,26.51472],[90.99664,26.51794],[90.99103,26.51812],[90.99095,26.52399],[90.9932,26.52516],[90.99863,26.52456],[91.00058,26.53008],[91.00531,26.53158],[91.02782,26.53071],[91.03849,26.52825],[91.05199,26.52941],[91.05646,26.52765],[91.05397,26.52336],[91.05896,26.51615],[91.07187,26.51623],[91.07329,26.53348],[91.08152,26.53346],[91.07979,26.54711],[91.08073,26.55627],[91.09585,26.56239],[91.10981,26.56119],[91.10823,26.56359],[91.10889,26.56651],[91.1055,26.5656],[91.10462,26.56752],[91.10978,26.57133],[91.11824,26.57276],[91.12175,26.58268],[91.11328,26.58396],[91.1179,26.59213],[91.12557,26.59356],[91.12556,26.59728],[91.12358,26.59961],[91.12631,26.60469],[91.12829,26.6058],[91.12903,26.60472],[91.1284,26.59921],[91.13103,26.59762],[91.14226,26.60092],[91.13873,26.60141],[91.14311,26.60387],[91.13908,26.60775],[91.1412,26.60859],[91.13971,26.6104],[91.14052,26.61159],[91.12276,26.6118],[91.12286,26.61615],[91.1172,26.61951],[91.11628,26.63212],[91.10502,26.63243],[91.09777,26.62899],[91.09498,26.63918],[91.09621,26.63981],[91.09946,26.63753],[91.11254,26.63762],[91.11269,26.65147],[91.09521,26.65233],[91.09731,26.66539],[91.10225,26.66158],[91.12732,26.65881],[91.12745,26.65012],[91.13942,26.65059],[91.1406,26.66146],[91.145,26.66311],[91.15762,26.65151],[91.15748,26.64981],[91.15618,26.65092],[91.15486,26.64956],[91.15561,26.64545],[91.15298,26.64583],[91.1506,26.64308],[91.15131,26.6389],[91.1609,26.63856],[91.16175,26.63015],[91.16843,26.62763],[91.18629,26.62775],[91.18501,26.62497],[91.17651,26.62287],[91.17666,26.62157],[91.1867,26.622],[91.18201,26.61566],[91.18097,26.6077],[91.18438,26.60442],[91.19851,26.60392],[91.19772,26.62301],[91.20993,26.62193],[91.21466,26.61992],[91.21639,26.62208],[91.21905,26.61951],[91.22621,26.62397],[91.23014,26.62358],[91.2314,26.61992],[91.22885,26.61663],[91.23021,26.6147],[91.23336,26.6168],[91.24848,26.61943],[91.24935,26.61487],[91.24745,26.60782],[91.23952,26.60839],[91.239,26.60995],[91.23338,26.60756],[91.23461,26.60337],[91.23394,26.59691],[91.23764,26.5931],[91.23653,26.58683],[91.23787,26.58541],[91.23649,26.58318],[91.23786,26.58214],[91.23634,26.58149],[91.23845,26.57851],[91.23743,26.57726],[91.24317,26.57527],[91.24596,26.57885],[91.25074,26.57832],[91.25171,26.58698],[91.26904,26.58441],[91.26729,26.57495],[91.25852,26.57699],[91.25837,26.5706],[91.26576,26.56701],[91.27548,26.56625],[91.27636,26.56926],[91.28915,26.5677],[91.28999,26.56439],[91.28427,26.56553],[91.28011,26.55755],[91.2758,26.5568],[91.27639,26.55482],[91.27447,26.55452],[91.27143,26.55047],[91.26769,26.55286],[91.26754,26.55104],[91.27066,26.54773],[91.2664,26.54925],[91.26573,26.54461],[91.26218,26.54554],[91.26081,26.54318],[91.258,26.5431],[91.25893,26.53942],[91.25731,26.5391],[91.25708,26.54152],[91.25551,26.54218],[91.25112,26.53757],[91.24787,26.53843],[91.2486,26.5291],[91.24383,26.52388],[91.2486,26.5242],[91.25898,26.52039],[91.26368,26.52157],[91.26262,26.52508],[91.26623,26.53499],[91.27256,26.53453],[91.27524,26.54121],[91.29374,26.54686],[91.29678,26.54626],[91.30273,26.53717],[91.30493,26.5364],[91.30427,26.53459],[91.30677,26.53054],[91.31077,26.52865],[91.31118,26.52489],[91.306,26.52303],[91.31039,26.52105],[91.31143,26.51692],[91.28938,26.51538],[91.29013,26.511],[91.28414,26.50264],[91.29192,26.50315],[91.30161,26.50145],[91.30229,26.50009],[91.30213,26.49761],[91.29826,26.4966],[91.29595,26.49416],[91.29455,26.48823],[91.29675,26.48495],[91.31054,26.48531],[91.31257,26.49015],[91.32793,26.49046],[91.33201,26.49435],[91.33419,26.50017],[91.3414,26.49977],[91.34385,26.5082],[91.34774,26.50782],[91.34919,26.5099],[91.35528,26.51078],[91.35236,26.50547],[91.35401,26.50048],[91.35574,26.49959],[91.35732,26.50124],[91.36142,26.50096],[91.36323,26.51129],[91.35456,26.51111],[91.35265,26.524],[91.38669,26.52653],[91.42231,26.53439],[91.4292,26.53469],[91.45978,26.54271],[91.45885,26.54662],[91.45565,26.54869],[91.42883,26.54934],[91.43135,26.55168],[91.42698,26.5519],[91.42592,26.55332],[91.43111,26.5563],[91.43145,26.56002],[91.43429,26.56343],[91.4676,26.56261],[91.47063,26.5647],[91.47116,26.5688],[91.474,26.57123],[91.47579,26.57094],[91.49125,26.56114],[91.4916,26.55442],[91.49465,26.55388],[91.4943,26.53386],[91.50635,26.53245],[91.51202,26.53349],[91.51042,26.53519],[91.51143,26.53682],[91.51673,26.53701],[91.51489,26.54025],[91.51859,26.54416],[91.52046,26.54484],[91.52346,26.54319],[91.52503,26.54473],[91.52673,26.54887],[91.52534,26.55242],[91.53044,26.55367],[91.52826,26.55873],[91.54938,26.56309],[91.57735,26.5723],[91.58322,26.56852],[91.57931,26.56304],[91.58372,26.56299],[91.58475,26.5559],[91.58443,26.55475],[91.57404,26.55539],[91.57708,26.55293],[91.57645,26.55121],[91.57911,26.54981],[91.58014,26.53964],[91.57806,26.52895],[91.58049,26.52923],[91.58052,26.53099],[91.58867,26.52678],[91.58812,26.51757],[91.58955,26.51451],[91.59912,26.51673],[91.59876,26.51314],[91.59994,26.51279],[91.61956,26.51278],[91.61809,26.50594],[91.62006,26.50445],[91.61383,26.50309],[91.61548,26.50039],[91.61182,26.49491],[91.61864,26.4939],[91.61474,26.48913],[91.61623,26.48569],[91.61656,26.48925],[91.62043,26.48876],[91.62533,26.49347],[91.62852,26.49347],[91.62756,26.49061],[91.62311,26.48863],[91.62465,26.48683],[91.62885,26.48743],[91.62929,26.48618],[91.62629,26.48356],[91.62285,26.48444],[91.62038,26.47967],[91.62119,26.47665],[91.62318,26.47573],[91.62549,26.48012],[91.62819,26.48087],[91.62579,26.47447],[91.62655,26.47089],[91.62454,26.47086],[91.62103,26.47453],[91.61797,26.46877],[91.61885,26.46758],[91.62122,26.46947],[91.62428,26.46474],[91.62922,26.46488],[91.62456,26.46029],[91.62428,26.45681],[91.6266,26.45622],[91.62902,26.46096],[91.63003,26.45989],[91.62905,26.45518],[91.63209,26.4511],[91.62559,26.4495],[91.62417,26.44814],[91.62504,26.44724],[91.63003,26.44632],[91.63573,26.44986],[91.67667,26.44846],[91.67595,26.45458],[91.68564,26.45503],[91.68903,26.46379],[91.70986,26.47334],[91.7098,26.47895],[91.71035,26.47701],[91.7201,26.47699],[91.71636,26.48232],[91.71933,26.48827],[91.71869,26.49183],[91.72628,26.49596],[91.72483,26.50308],[91.73772,26.50183],[91.73376,26.49749],[91.73443,26.49644],[91.74788,26.49662],[91.75421,26.49447],[91.75127,26.48818],[91.75279,26.48664],[91.75152,26.48535],[91.75221,26.48162],[91.7605,26.48248],[91.7629,26.48007],[91.77983,26.48178],[91.77908,26.47964],[91.78782,26.47536],[91.79651,26.47531],[91.79976,26.47712],[91.79977,26.48449],[91.80151,26.48582],[91.80161,26.48987],[91.79908,26.49176],[91.78729,26.4923],[91.78069,26.4964],[91.78189,26.49822],[91.78725,26.49804],[91.78389,26.50177],[91.78215,26.51003],[91.77947,26.51313],[91.77775,26.51284],[91.78525,26.51898],[91.77576,26.52282],[91.77759,26.52495],[91.78208,26.52449],[91.78421,26.52748],[91.78379,26.52977],[91.77688,26.52652],[91.77551,26.52875],[91.78045,26.53455],[91.78415,26.53383],[91.78534,26.53565],[91.78101,26.53853],[91.77834,26.5435],[91.78023,26.54935],[91.77353,26.55105],[91.77202,26.55379],[91.7727,26.55901],[91.76719,26.56199],[91.76406,26.56577],[91.76649,26.5734],[91.76478,26.57295],[91.75956,26.57766],[91.75193,26.57764],[91.7491,26.58056],[91.74976,26.58287],[91.75221,26.58406],[91.76004,26.58554],[91.76256,26.59369],[91.75996,26.5951],[91.75675,26.59338],[91.75358,26.58789],[91.75038,26.58695],[91.74461,26.59024],[91.74322,26.59319],[91.74454,26.59649],[91.75095,26.60078],[91.75157,26.60499],[91.74929,26.60681],[91.74138,26.60149],[91.73738,26.60419],[91.73752,26.60647],[91.74178,26.60796],[91.74431,26.61234],[91.74032,26.61358],[91.73947,26.61759],[91.74315,26.61985],[91.74361,26.62461],[91.74637,26.62692],[91.74482,26.6288],[91.73701,26.62763],[91.73307,26.63025],[91.73609,26.63259],[91.74017,26.63273],[91.74125,26.63128],[91.74765,26.63211],[91.75026,26.63624],[91.74663,26.63837],[91.74245,26.63653],[91.73897,26.63811],[91.73889,26.6405],[91.7488,26.64663],[91.74689,26.64964],[91.73968,26.64815],[91.73922,26.64921],[91.74173,26.64944],[91.74022,26.65039],[91.74168,26.65167],[91.73917,26.65457],[91.73292,26.6561],[91.73531,26.66003],[91.73311,26.66172],[91.7356,26.67015],[91.74149,26.66985],[91.74321,26.67216],[91.74039,26.67348],[91.7426,26.67396],[91.74055,26.67612],[91.74264,26.67578],[91.74546,26.688],[91.73769,26.69339],[91.73765,26.69582],[91.7425,26.70077],[91.73308,26.71493],[91.73505,26.72725],[91.73318,26.73128],[91.7308,26.73191],[91.73102,26.73553],[91.72318,26.74462],[91.72245,26.74981],[91.71691,26.75586],[91.71251,26.7741],[91.71309,26.78564],[91.70429,26.8128],[91.6898,26.80645],[91.62552,26.82087],[91.59242,26.80519],[91.49511,26.79121],[91.46395,26.80235],[91.44836,26.81077]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"617","area_level":"District","area_name":"Udalguri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.34721,26.89809],[92.34961,26.91185],[92.35292,26.91501],[92.35759,26.92588],[92.3648,26.93212],[92.36319,26.93454],[92.30266,26.92264],[92.30296,26.90714],[92.27609,26.902],[92.25519,26.90961],[92.23802,26.90579],[92.1948,26.88996],[92.16986,26.89165],[92.12002,26.88898],[92.11438,26.89358],[92.10192,26.88106],[92.10265,26.86717],[92.0782,26.85554],[92.05672,26.84738],[92.01713,26.85001],[91.9835,26.85819],[91.97047,26.87066],[91.96421,26.88253],[91.9436,26.89499],[91.89174,26.91906],[91.88494,26.91667],[91.85911,26.91334],[91.82415,26.86404],[91.72062,26.81174],[91.70429,26.8128],[91.71309,26.78564],[91.71251,26.7741],[91.71691,26.75586],[91.72245,26.74981],[91.72318,26.74462],[91.73102,26.73553],[91.7308,26.73191],[91.73318,26.73128],[91.73505,26.72725],[91.73308,26.71493],[91.7425,26.70077],[91.73765,26.69582],[91.73769,26.69339],[91.74546,26.688],[91.74264,26.67578],[91.74055,26.67612],[91.7426,26.67396],[91.74039,26.67348],[91.74321,26.67216],[91.74149,26.66985],[91.7356,26.67015],[91.73308,26.66088],[91.73528,26.65978],[91.73278,26.65644],[91.74016,26.65396],[91.74171,26.65158],[91.74024,26.65022],[91.74178,26.64956],[91.73922,26.64921],[91.73968,26.64815],[91.74689,26.64964],[91.7488,26.64663],[91.73889,26.6405],[91.73897,26.63811],[91.74245,26.63653],[91.74663,26.63837],[91.75026,26.63624],[91.74765,26.63211],[91.74125,26.63128],[91.74017,26.63273],[91.73609,26.63259],[91.73307,26.63025],[91.73701,26.62763],[91.74482,26.6288],[91.74637,26.62692],[91.74361,26.62461],[91.74315,26.61985],[91.73947,26.61759],[91.74032,26.61358],[91.74431,26.61234],[91.74178,26.60796],[91.73768,26.60666],[91.73717,26.605],[91.73817,26.60266],[91.74105,26.60147],[91.74929,26.60681],[91.75157,26.60499],[91.75095,26.60078],[91.74454,26.59649],[91.74322,26.59319],[91.74461,26.59024],[91.75038,26.58695],[91.75358,26.58789],[91.75675,26.59338],[91.75996,26.5951],[91.76256,26.59369],[91.76004,26.58554],[91.75238,26.58413],[91.74894,26.58126],[91.75193,26.57764],[91.75956,26.57766],[91.76478,26.57295],[91.76649,26.5734],[91.76406,26.56577],[91.76719,26.56199],[91.7727,26.55901],[91.77202,26.55379],[91.77353,26.55105],[91.78023,26.54935],[91.77834,26.5435],[91.78101,26.53853],[91.78534,26.53565],[91.78415,26.53383],[91.78045,26.53455],[91.77551,26.52875],[91.77688,26.52652],[91.78379,26.52977],[91.78421,26.52748],[91.78208,26.52449],[91.77759,26.52495],[91.77576,26.52282],[91.78525,26.51898],[91.78364,26.51665],[91.77855,26.51478],[91.77781,26.51274],[91.78811,26.51208],[91.78854,26.51041],[91.79428,26.51249],[91.79704,26.51119],[91.79974,26.51289],[91.79966,26.50586],[91.81714,26.50548],[91.81907,26.50666],[91.81813,26.51185],[91.82668,26.51512],[91.83316,26.51531],[91.83262,26.52558],[91.83124,26.52555],[91.82715,26.5369],[91.82751,26.54498],[91.8241,26.54633],[91.81199,26.53967],[91.80974,26.54398],[91.81285,26.54383],[91.81092,26.55347],[91.81117,26.55775],[91.8129,26.55703],[91.81292,26.55941],[91.82234,26.56138],[91.82858,26.56053],[91.82993,26.55818],[91.83132,26.57124],[91.82081,26.57209],[91.82284,26.5774],[91.82634,26.57923],[91.82586,26.58212],[91.82891,26.58299],[91.82918,26.58605],[91.83733,26.58621],[91.83745,26.58073],[91.83572,26.57728],[91.83777,26.57459],[91.84775,26.57436],[91.84989,26.57304],[91.84882,26.57091],[91.84987,26.56792],[91.84668,26.56694],[91.85026,26.56594],[91.84832,26.56316],[91.85002,26.55792],[91.85549,26.55228],[91.85541,26.54896],[91.85287,26.54864],[91.85401,26.53839],[91.85968,26.53903],[91.86465,26.53752],[91.86612,26.534],[91.8699,26.53186],[91.87898,26.53387],[91.87978,26.53776],[91.88427,26.53852],[91.88874,26.55093],[91.89351,26.55313],[91.89245,26.56183],[91.89662,26.56963],[91.90913,26.56758],[91.92189,26.56765],[91.92194,26.55768],[91.92519,26.55764],[91.92376,26.54707],[91.92781,26.54517],[91.92585,26.54168],[91.92782,26.53733],[91.95175,26.54437],[91.95167,26.54246],[91.95387,26.54158],[91.96499,26.53989],[91.96685,26.54094],[91.96643,26.54272],[91.96052,26.54557],[91.95878,26.55178],[91.96444,26.55221],[91.96466,26.5554],[91.97007,26.5561],[91.97248,26.55621],[91.97501,26.55191],[91.9801,26.55651],[91.98224,26.5518],[91.9855,26.54937],[91.98475,26.55466],[91.99021,26.5551],[91.99458,26.53997],[91.99995,26.53595],[92.00495,26.5346],[92.0131,26.53654],[92.00905,26.54166],[92.00354,26.54208],[92.00354,26.54353],[92.00725,26.54431],[92.01196,26.54144],[92.02457,26.54088],[92.02817,26.54223],[92.02715,26.53055],[92.02085,26.52979],[92.01875,26.52764],[92.01937,26.52191],[92.02235,26.52049],[92.02257,26.52437],[92.0263,26.52649],[92.02934,26.52578],[92.0293,26.52262],[92.03306,26.52523],[92.03443,26.52438],[92.03477,26.52044],[92.03134,26.51379],[92.02637,26.51135],[92.02504,26.50892],[92.02752,26.50692],[92.04082,26.51003],[92.04017,26.50002],[92.04355,26.49517],[92.03806,26.49437],[92.03838,26.48577],[92.04148,26.48442],[92.04204,26.4806],[92.05049,26.47546],[92.05137,26.47863],[92.04968,26.48106],[92.05335,26.48544],[92.05309,26.48897],[92.05862,26.48819],[92.06101,26.49774],[92.06126,26.49999],[92.05602,26.50014],[92.05779,26.50564],[92.05661,26.50913],[92.06842,26.51009],[92.0684,26.54513],[92.07009,26.54651],[92.07399,26.54316],[92.08169,26.54238],[92.086,26.54318],[92.09425,26.54944],[92.09142,26.55234],[92.09264,26.55413],[92.09796,26.55491],[92.10188,26.55198],[92.10704,26.55218],[92.10836,26.55545],[92.10177,26.56125],[92.10796,26.56748],[92.10863,26.57036],[92.10129,26.57635],[92.10065,26.57937],[92.08901,26.57494],[92.08662,26.57595],[92.07944,26.58935],[92.06243,26.58735],[92.06057,26.57565],[92.06241,26.57477],[92.05827,26.5608],[92.05827,26.55098],[92.0568,26.54691],[92.05446,26.54413],[92.04735,26.54844],[92.04126,26.54838],[92.04183,26.55056],[92.03,26.55],[92.0311,26.54752],[92.02842,26.5459],[92.02566,26.55434],[92.01687,26.55347],[92.00938,26.55515],[92.00866,26.55785],[92.00582,26.55963],[92.00637,26.56404],[92.00388,26.56613],[92.00421,26.56987],[92.00196,26.57148],[92.0094,26.57376],[92.01202,26.57614],[92.01407,26.57534],[92.01444,26.57806],[92.00951,26.5899],[92.02151,26.58826],[92.03314,26.59272],[92.03268,26.59611],[92.03664,26.60059],[92.03364,26.60236],[92.03332,26.60538],[92.02935,26.6052],[92.02545,26.6095],[92.03857,26.60914],[92.03964,26.61229],[92.03721,26.62046],[92.04566,26.62056],[92.0464,26.62449],[92.05628,26.62303],[92.07035,26.62456],[92.07166,26.63436],[92.06933,26.63664],[92.07108,26.63806],[92.06899,26.64012],[92.0712,26.64174],[92.0697,26.64386],[92.07269,26.64695],[92.10268,26.64773],[92.10948,26.64182],[92.12148,26.64373],[92.12404,26.64704],[92.12377,26.64917],[92.11908,26.65075],[92.11854,26.65266],[92.14677,26.65932],[92.15872,26.66607],[92.1812,26.67027],[92.18293,26.65954],[92.18131,26.65585],[92.17659,26.65308],[92.17684,26.65148],[92.18429,26.64482],[92.18679,26.64604],[92.18982,26.65176],[92.19592,26.64578],[92.19982,26.65162],[92.20205,26.65135],[92.20521,26.64419],[92.20504,26.64071],[92.20202,26.63881],[92.19443,26.63927],[92.19367,26.63499],[92.19836,26.63499],[92.20541,26.63168],[92.20644,26.63022],[92.20432,26.62785],[92.20719,26.62524],[92.22027,26.62823],[92.22534,26.61738],[92.22413,26.60989],[92.22885,26.60985],[92.23454,26.59701],[92.22702,26.5939],[92.22648,26.57651],[92.23381,26.5683],[92.2266,26.5645],[92.2247,26.55364],[92.23051,26.54879],[92.24183,26.55844],[92.24389,26.56293],[92.25437,26.56072],[92.25768,26.56404],[92.25819,26.56673],[92.26465,26.57066],[92.26173,26.57238],[92.255,26.57175],[92.25262,26.5739],[92.24888,26.57948],[92.24855,26.58561],[92.24511,26.58678],[92.24398,26.58957],[92.24814,26.60051],[92.24313,26.60086],[92.24219,26.60326],[92.24669,26.60645],[92.24749,26.6102],[92.27313,26.6163],[92.27051,26.62691],[92.27319,26.63358],[92.27263,26.64645],[92.27108,26.6491],[92.27455,26.65052],[92.27579,26.65756],[92.28576,26.65531],[92.28957,26.65099],[92.29479,26.63399],[92.29415,26.62206],[92.29765,26.62099],[92.30349,26.62328],[92.31423,26.62412],[92.31391,26.61914],[92.30617,26.61313],[92.31186,26.6072],[92.31623,26.60614],[92.31978,26.60718],[92.32101,26.60849],[92.32066,26.61344],[92.32817,26.61172],[92.32892,26.61329],[92.32647,26.61931],[92.33083,26.62347],[92.33477,26.62204],[92.33511,26.61749],[92.33158,26.60927],[92.33175,26.60639],[92.33806,26.60189],[92.34271,26.60092],[92.34423,26.59784],[92.34101,26.59636],[92.32533,26.59678],[92.32446,26.59171],[92.32719,26.58744],[92.34598,26.58163],[92.35752,26.58855],[92.36151,26.58628],[92.36054,26.58239],[92.36245,26.58285],[92.36466,26.58888],[92.36413,26.59487],[92.35698,26.59803],[92.35371,26.6025],[92.35738,26.61189],[92.37577,26.61367],[92.37574,26.6294],[92.39531,26.62707],[92.40178,26.63586],[92.40029,26.64207],[92.39006,26.64185],[92.38827,26.6487],[92.37993,26.64283],[92.37863,26.64735],[92.37574,26.64851],[92.36881,26.64739],[92.36302,26.64321],[92.36261,26.65113],[92.36478,26.65633],[92.36297,26.66078],[92.36652,26.67498],[92.36402,26.69821],[92.35071,26.6986],[92.34923,26.6911],[92.3456,26.69349],[92.34445,26.69281],[92.34613,26.6901],[92.35293,26.68684],[92.35041,26.68209],[92.3488,26.6642],[92.33144,26.66278],[92.33282,26.67237],[92.33525,26.67436],[92.33473,26.67921],[92.33643,26.68176],[92.33315,26.68427],[92.33333,26.6864],[92.33878,26.69101],[92.33237,26.69449],[92.33487,26.70092],[92.34412,26.70167],[92.34627,26.70482],[92.34453,26.70669],[92.33867,26.70778],[92.3387,26.7095],[92.34316,26.7133],[92.33505,26.71234],[92.33468,26.71406],[92.33822,26.71748],[92.33177,26.72194],[92.33225,26.7234],[92.33988,26.72371],[92.34187,26.726],[92.34187,26.72925],[92.33991,26.72968],[92.33678,26.72673],[92.33191,26.7252],[92.33133,26.72719],[92.33734,26.73317],[92.33273,26.73685],[92.32347,26.73917],[92.33413,26.74216],[92.33055,26.74547],[92.32986,26.75334],[92.32799,26.75695],[92.33383,26.76135],[92.3364,26.76589],[92.335,26.76681],[92.33167,26.76488],[92.32864,26.77169],[92.33741,26.77013],[92.34027,26.77128],[92.33474,26.77501],[92.33602,26.77801],[92.33421,26.78284],[92.33882,26.78686],[92.33185,26.78971],[92.33451,26.79369],[92.33139,26.79692],[92.331,26.80038],[92.32751,26.80309],[92.32925,26.80649],[92.33457,26.80829],[92.3349,26.8104],[92.33304,26.81169],[92.33013,26.8105],[92.32785,26.81268],[92.33409,26.81525],[92.33088,26.81993],[92.33623,26.82254],[92.33427,26.82505],[92.33575,26.82868],[92.33274,26.82974],[92.33134,26.83287],[92.33319,26.83542],[92.33308,26.84248],[92.33547,26.8458],[92.33979,26.84694],[92.33985,26.85105],[92.34286,26.85184],[92.34114,26.85664],[92.3437,26.85831],[92.34508,26.86203],[92.34275,26.86465],[92.34414,26.86742],[92.3427,26.87138],[92.34403,26.8731],[92.34264,26.88266],[92.3463,26.89038],[92.34721,26.89809]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"618","area_level":"District","area_name":"Kamrup Metro","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.97672,26.25259],[91.97604,26.25774],[91.97915,26.26752],[91.97813,26.27492],[91.97358,26.26976],[91.96003,26.25984],[91.95372,26.25706],[91.95267,26.2541],[91.94528,26.25101],[91.93384,26.24322],[91.92929,26.24231],[91.92405,26.24785],[91.91903,26.24644],[91.91228,26.2403],[91.90853,26.23102],[91.90206,26.22662],[91.89982,26.22713],[91.88605,26.22181],[91.88634,26.21939],[91.88288,26.21739],[91.87262,26.21711],[91.86968,26.22109],[91.85914,26.21714],[91.8399,26.21528],[91.82075,26.20761],[91.81754,26.20746],[91.81594,26.20914],[91.80075,26.20581],[91.79187,26.20588],[91.78463,26.20218],[91.77092,26.19848],[91.74894,26.20904],[91.74561,26.20561],[91.72378,26.19652],[91.7223,26.19444],[91.72388,26.18775],[91.71942,26.18491],[91.69913,26.18171],[91.68927,26.18245],[91.68417,26.18133],[91.68356,26.17967],[91.65741,26.18247],[91.64824,26.16513],[91.6215,26.16133],[91.60434,26.15472],[91.57911,26.15248],[91.56474,26.1493],[91.5616,26.1409],[91.56082,26.13319],[91.56213,26.12739],[91.56134,26.12168],[91.56507,26.11669],[91.56411,26.10432],[91.5731,26.10272],[91.57341,26.09575],[91.5864,26.09236],[91.58715,26.09028],[91.58477,26.08539],[91.5794,26.08356],[91.57988,26.075],[91.57692,26.07157],[91.57152,26.07096],[91.5715,26.06682],[91.56799,26.0601],[91.57848,26.05906],[91.5794,26.06824],[91.58466,26.06716],[91.58647,26.05774],[91.58873,26.05722],[91.59825,26.0609],[91.60009,26.06731],[91.60016,26.07561],[91.6107,26.07597],[91.61093,26.07221],[91.61466,26.07122],[91.62926,26.07472],[91.62678,26.07174],[91.62753,26.07003],[91.63421,26.06979],[91.68735,26.04615],[91.72305,26.03496],[91.72535,26.04618],[91.7337,26.0492],[91.73298,26.05088],[91.73519,26.05132],[91.73471,26.05363],[91.7369,26.05625],[91.73349,26.05623],[91.73072,26.05758],[91.73106,26.05893],[91.74291,26.06303],[91.74315,26.0653],[91.75554,26.06793],[91.75707,26.07036],[91.76273,26.07235],[91.763,26.07461],[91.77728,26.08935],[91.78332,26.08809],[91.78586,26.08401],[91.79136,26.08523],[91.80035,26.10004],[91.80292,26.09526],[91.80562,26.09912],[91.80904,26.09779],[91.81014,26.10329],[91.81702,26.11115],[91.82023,26.11255],[91.82023,26.11641],[91.8254,26.11941],[91.83085,26.11844],[91.83736,26.11224],[91.84828,26.10807],[91.85101,26.1084],[91.86072,26.10289],[91.86393,26.10263],[91.86576,26.10042],[91.87364,26.10063],[91.87917,26.09798],[91.87964,26.09604],[91.87687,26.09165],[91.87845,26.08978],[91.87661,26.07667],[91.87265,26.06791],[91.87028,26.05451],[91.87192,26.05096],[91.8673,26.04202],[91.87095,26.04271],[91.87202,26.04462],[91.87475,26.04302],[91.8731,26.03881],[91.8762,26.03641],[91.87517,26.03511],[91.87916,26.03437],[91.87893,26.03115],[91.88304,26.0261],[91.8858,26.02804],[91.88874,26.02787],[91.89783,26.0234],[91.9023,26.02237],[91.90518,26.02387],[91.90851,26.02097],[91.91469,26.0205],[91.91299,26.01471],[91.91479,26.01399],[91.90975,26.01267],[91.91332,26.0094],[91.90976,26.00877],[91.91059,26.00737],[91.91417,26.0072],[91.91229,26.00484],[91.9153,25.99839],[91.92027,25.99776],[91.92528,25.99961],[91.92827,26.00236],[91.93128,26.01241],[91.93397,26.01027],[91.94718,26.01317],[91.9478,26.01529],[91.95137,26.01466],[91.96191,26.01892],[91.96195,26.02026],[91.97317,26.02211],[91.97897,26.02748],[91.98357,26.0258],[91.98617,26.02898],[91.98546,26.03103],[91.98906,26.03853],[91.99476,26.03849],[91.99922,26.03579],[92.00411,26.03557],[92.00622,26.03855],[92.01044,26.03665],[92.01327,26.03844],[92.0165,26.03705],[92.01845,26.03919],[92.02404,26.03781],[92.03062,26.03958],[92.0344,26.03892],[92.03633,26.03621],[92.04069,26.03651],[92.04814,26.03277],[92.05143,26.03279],[92.05796,26.03482],[92.06679,26.03508],[92.07791,26.04229],[92.09729,26.04922],[92.1088,26.05068],[92.1199,26.04596],[92.1214,26.04388],[92.12821,26.04568],[92.13262,26.04424],[92.13421,26.05245],[92.13754,26.05504],[92.14339,26.05604],[92.14514,26.05972],[92.15268,26.06714],[92.15471,26.06715],[92.16915,26.07755],[92.17614,26.07795],[92.16817,26.09205],[92.17111,26.10131],[92.16874,26.1118],[92.16346,26.1218],[92.16206,26.145],[92.16608,26.15416],[92.16698,26.16399],[92.16431,26.16253],[92.16219,26.16323],[92.15717,26.17001],[92.15468,26.17088],[92.15256,26.16917],[92.15142,26.16214],[92.1497,26.16153],[92.13228,26.17215],[92.12969,26.18059],[92.10661,26.17211],[92.08982,26.17644],[92.07996,26.17734],[92.09334,26.1854],[92.09366,26.18867],[92.08978,26.18981],[92.08515,26.18595],[92.08176,26.18517],[92.07905,26.18719],[92.07872,26.19292],[92.07635,26.19568],[92.07,26.19712],[92.06305,26.19512],[92.06014,26.19645],[92.05161,26.20765],[92.05123,26.20991],[92.05588,26.21698],[92.05549,26.22058],[92.05139,26.22113],[92.04556,26.22566],[92.03722,26.22573],[92.03071,26.23185],[92.02801,26.23253],[92.02151,26.2332],[92.02012,26.23022],[92.01361,26.22802],[92.00853,26.2315],[92.01245,26.23899],[92.01036,26.24288],[92.00314,26.23748],[91.99726,26.23691],[91.98002,26.23926],[91.972,26.24832],[91.97663,26.25059],[91.97672,26.25259]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"619","area_level":"District","area_name":"Palwal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.26057,28.27167],[77.25713,28.27234],[77.25606,28.26743],[77.25708,28.26053],[77.25563,28.25814],[77.24611,28.26257],[77.23723,28.27006],[77.23212,28.26945],[77.22039,28.26301],[77.21382,28.26167],[77.2135,28.25704],[77.2098,28.24956],[77.20523,28.2511],[77.19568,28.24495],[77.19685,28.243],[77.19146,28.23481],[77.20178,28.22893],[77.19787,28.22245],[77.20448,28.21881],[77.2023,28.21608],[77.2033,28.21231],[77.18941,28.20698],[77.19386,28.19954],[77.1985,28.19634],[77.19249,28.18374],[77.18675,28.18379],[77.17263,28.18945],[77.16475,28.17924],[77.16514,28.17469],[77.16837,28.17259],[77.16632,28.169],[77.15409,28.15966],[77.14469,28.14735],[77.14429,28.14211],[77.13566,28.13318],[77.13396,28.12889],[77.12659,28.12547],[77.12107,28.11601],[77.12146,28.11384],[77.12928,28.11175],[77.13318,28.10664],[77.13802,28.10607],[77.1432,28.10002],[77.13518,28.08516],[77.13335,28.07242],[77.14126,28.0699],[77.13941,28.06649],[77.14059,28.06272],[77.14709,28.05833],[77.148,28.0555],[77.13924,28.04156],[77.14206,28.04048],[77.14046,28.03695],[77.14567,28.03677],[77.14554,28.02915],[77.14931,28.02697],[77.14936,28.02338],[77.14665,28.02003],[77.14585,28.01419],[77.13772,28.00593],[77.13527,28.00028],[77.14756,27.99909],[77.15208,27.99463],[77.14809,27.98889],[77.15207,27.97995],[77.14995,27.97509],[77.14458,27.96925],[77.14321,27.96957],[77.14444,27.96292],[77.151,27.95846],[77.15633,27.95718],[77.15587,27.95281],[77.15827,27.94757],[77.16459,27.95137],[77.16604,27.94907],[77.1674,27.95139],[77.17054,27.95114],[77.17577,27.9469],[77.17294,27.94364],[77.18166,27.94028],[77.18356,27.94163],[77.17983,27.94938],[77.18738,27.9506],[77.20659,27.93819],[77.20889,27.93267],[77.22168,27.92501],[77.22181,27.91798],[77.22629,27.91246],[77.22967,27.90241],[77.23492,27.89925],[77.23429,27.89617],[77.2443,27.89475],[77.24989,27.8905],[77.24975,27.88209],[77.25437,27.88174],[77.25583,27.89131],[77.26381,27.89803],[77.2841,27.89163],[77.28712,27.88583],[77.29107,27.88943],[77.29663,27.89157],[77.31154,27.88433],[77.32453,27.87191],[77.32378,27.86032],[77.32184,27.85766],[77.33516,27.84742],[77.34888,27.85572],[77.36089,27.85077],[77.36525,27.85379],[77.37704,27.85707],[77.37702,27.85886],[77.38998,27.85731],[77.39703,27.85335],[77.41043,27.85176],[77.42102,27.85404],[77.42233,27.85779],[77.41175,27.86639],[77.41282,27.86978],[77.40932,27.87417],[77.41039,27.87981],[77.41607,27.88379],[77.41877,27.88945],[77.42829,27.89092],[77.45004,27.87116],[77.45765,27.87449],[77.47327,27.88452],[77.47876,27.89445],[77.4795,27.89786],[77.47805,27.89851],[77.4807,27.90789],[77.47884,27.91088],[77.48049,27.91503],[77.47709,27.91633],[77.47965,27.92166],[77.47568,27.92474],[77.4775,27.92828],[77.4759,27.92771],[77.47528,27.92925],[77.49224,27.93847],[77.50147,27.92526],[77.50749,27.92562],[77.51676,27.93306],[77.52583,27.92726],[77.52608,27.92538],[77.5293,27.92526],[77.53661,27.93398],[77.53695,27.93797],[77.54499,27.9533],[77.54608,27.95793],[77.54423,27.96221],[77.51872,27.96213],[77.51697,27.97115],[77.51885,27.97421],[77.52119,27.97651],[77.52946,27.97607],[77.53777,27.97902],[77.5412,27.98182],[77.54243,27.98909],[77.52425,28.0],[77.52403,28.00674],[77.52133,28.01414],[77.50839,28.02277],[77.50821,28.02524],[77.51193,28.02775],[77.51276,28.03189],[77.48841,28.0367],[77.48364,28.04045],[77.48534,28.04464],[77.49306,28.04683],[77.4986,28.05225],[77.50124,28.05852],[77.49979,28.06331],[77.47825,28.08039],[77.47426,28.08744],[77.47873,28.09161],[77.47885,28.09545],[77.48182,28.09966],[77.48262,28.10719],[77.48981,28.10556],[77.49068,28.09716],[77.49218,28.0951],[77.49938,28.09461],[77.50054,28.09702],[77.4979,28.10446],[77.49847,28.10892],[77.5018,28.11477],[77.50938,28.11989],[77.51236,28.12484],[77.51236,28.12714],[77.50908,28.13021],[77.49377,28.13285],[77.49136,28.13654],[77.49219,28.13869],[77.50242,28.14322],[77.50424,28.14543],[77.50469,28.14973],[77.50049,28.1548],[77.5021,28.16118],[77.5112,28.16685],[77.51575,28.1634],[77.52228,28.1612],[77.53696,28.16563],[77.5459,28.17194],[77.54964,28.17975],[77.54795,28.18711],[77.54515,28.19088],[77.5376,28.19035],[77.53062,28.18586],[77.51748,28.19314],[77.51337,28.19183],[77.50853,28.18643],[77.50655,28.18168],[77.50119,28.18167],[77.49839,28.18453],[77.49962,28.19502],[77.49696,28.20535],[77.50206,28.20959],[77.50588,28.20952],[77.51748,28.20459],[77.52196,28.19659],[77.52403,28.19568],[77.53026,28.19861],[77.53466,28.20369],[77.53525,28.21026],[77.53289,28.21442],[77.52143,28.22021],[77.52128,28.22444],[77.52583,28.229],[77.54675,28.23799],[77.54947,28.24001],[77.54976,28.24424],[77.54461,28.24873],[77.53874,28.2486],[77.53235,28.24495],[77.52471,28.24572],[77.522,28.24227],[77.51877,28.24253],[77.51325,28.24721],[77.50819,28.24681],[77.50955,28.24961],[77.50145,28.25244],[77.49922,28.25],[77.49915,28.24738],[77.49603,28.2475],[77.49355,28.24449],[77.4936,28.23585],[77.4982,28.23007],[77.49373,28.22818],[77.48912,28.22218],[77.48932,28.2182],[77.48747,28.2182],[77.48621,28.22132],[77.48484,28.22135],[77.48342,28.21851],[77.47784,28.21758],[77.47858,28.21429],[77.471,28.21552],[77.46638,28.20852],[77.45991,28.21039],[77.45611,28.20522],[77.44212,28.20751],[77.44241,28.20975],[77.43423,28.21388],[77.42492,28.20591],[77.42372,28.20719],[77.41982,28.20529],[77.4158,28.20043],[77.4118,28.203],[77.41407,28.20694],[77.40827,28.21431],[77.4055,28.21115],[77.3798,28.22136],[77.37519,28.22646],[77.37287,28.23578],[77.36792,28.23692],[77.36486,28.23245],[77.35532,28.23601],[77.34492,28.23505],[77.34432,28.24001],[77.34219,28.24121],[77.34144,28.24507],[77.33173,28.25009],[77.32737,28.25684],[77.32237,28.26017],[77.31302,28.25939],[77.30845,28.25522],[77.30096,28.26238],[77.28609,28.26511],[77.27955,28.26971],[77.27324,28.26663],[77.26057,28.27167]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"62","area_level":"District","area_name":"Gurugram","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.00884,28.54034],[77.00665,28.54141],[77.00478,28.54016],[77.00023,28.53209],[77.01455,28.52395],[77.01711,28.52083],[77.01022,28.51435],[76.99656,28.51975],[76.99519,28.51672],[76.99039,28.5135],[76.98276,28.51712],[76.9781,28.52132],[76.95602,28.50614],[76.94879,28.50403],[76.94166,28.50454],[76.93349,28.5097],[76.92734,28.51051],[76.92079,28.50698],[76.9144,28.51167],[76.90793,28.51381],[76.90302,28.50893],[76.89862,28.50874],[76.89223,28.50083],[76.88544,28.50114],[76.87626,28.49806],[76.86124,28.50142],[76.8498,28.50196],[76.84618,28.50009],[76.82392,28.50467],[76.82447,28.49902],[76.81828,28.48936],[76.81349,28.4857],[76.81397,28.47992],[76.81068,28.47501],[76.80511,28.47568],[76.80029,28.47041],[76.79574,28.47165],[76.79195,28.46587],[76.76887,28.47916],[76.75853,28.46081],[76.74933,28.46263],[76.73403,28.47217],[76.73528,28.47951],[76.72606,28.4867],[76.71783,28.4919],[76.71325,28.49077],[76.70967,28.49357],[76.70428,28.4927],[76.70537,28.47939],[76.7075,28.47544],[76.70844,28.46743],[76.70567,28.45928],[76.71156,28.45706],[76.7109,28.446],[76.71341,28.4405],[76.71709,28.43777],[76.70784,28.41649],[76.7064,28.40817],[76.70725,28.40134],[76.71406,28.39474],[76.71618,28.39545],[76.7268,28.39048],[76.72896,28.38815],[76.72852,28.38516],[76.73107,28.38322],[76.72981,28.38202],[76.73336,28.3802],[76.73465,28.37628],[76.73206,28.37111],[76.73256,28.36856],[76.72907,28.36512],[76.72837,28.3612],[76.72511,28.35765],[76.71883,28.35622],[76.71369,28.35627],[76.70487,28.35959],[76.70168,28.35868],[76.69641,28.36092],[76.69486,28.36254],[76.69663,28.36691],[76.68033,28.37721],[76.66903,28.37923],[76.66315,28.37049],[76.66398,28.36953],[76.65713,28.35481],[76.66176,28.34911],[76.65988,28.34208],[76.66466,28.34045],[76.65705,28.33039],[76.65031,28.30769],[76.66641,28.30309],[76.66946,28.30947],[76.6709,28.30965],[76.67293,28.31706],[76.67919,28.31685],[76.68549,28.31383],[76.6818,28.30146],[76.68335,28.29965],[76.68066,28.2946],[76.68296,28.29343],[76.67874,28.28854],[76.67666,28.27795],[76.67323,28.27012],[76.67794,28.26861],[76.67724,28.26447],[76.68352,28.26134],[76.6881,28.26589],[76.69908,28.25866],[76.71106,28.26482],[76.73668,28.25283],[76.75347,28.24848],[76.76929,28.23996],[76.77044,28.23156],[76.7805,28.22388],[76.79397,28.24439],[76.79657,28.25621],[76.80198,28.25361],[76.80492,28.25661],[76.81098,28.25424],[76.80763,28.24683],[76.81189,28.24412],[76.81018,28.2422],[76.8122,28.24081],[76.8158,28.24502],[76.81826,28.24377],[76.8233,28.24534],[76.84312,28.23861],[76.84701,28.23987],[76.85748,28.23459],[76.86092,28.24236],[76.86544,28.24793],[76.86739,28.2561],[76.86982,28.25557],[76.87527,28.26393],[76.89396,28.25332],[76.89851,28.25415],[76.9069,28.26428],[76.91227,28.26367],[76.91712,28.27833],[76.9102,28.28712],[76.90389,28.29176],[76.90599,28.29566],[76.90336,28.30081],[76.90464,28.30239],[76.90944,28.2994],[76.91093,28.3017],[76.9154,28.30015],[76.93196,28.32472],[76.93517,28.31888],[76.93671,28.31946],[76.93956,28.31687],[76.94451,28.31875],[76.94779,28.31666],[76.9488,28.31821],[76.95003,28.31413],[76.95138,28.31419],[76.95279,28.31682],[76.95154,28.31841],[76.95452,28.32033],[76.95429,28.32298],[76.95802,28.32339],[76.95963,28.32761],[76.97036,28.32659],[76.97203,28.33055],[76.97591,28.33166],[76.97768,28.33566],[76.97868,28.33005],[76.98439,28.33181],[76.98607,28.33073],[76.98506,28.32828],[76.9864,28.32676],[76.98946,28.3264],[76.99307,28.32832],[76.99999,28.3266],[77.00016,28.31907],[77.00313,28.31508],[77.00353,28.31103],[77.01081,28.30549],[77.00993,28.30365],[77.0129,28.28908],[77.01774,28.28331],[77.02004,28.27621],[77.02129,28.2482],[77.0314,28.24764],[77.03367,28.24533],[77.05636,28.24401],[77.05851,28.24042],[77.05769,28.22907],[77.05474,28.22306],[77.06099,28.21974],[77.062,28.21675],[77.06462,28.21616],[77.06562,28.21772],[77.07194,28.21434],[77.07652,28.22482],[77.08162,28.22993],[77.08678,28.22479],[77.09306,28.22269],[77.09409,28.21991],[77.09639,28.22064],[77.0997,28.22671],[77.10171,28.22599],[77.10299,28.2275],[77.1067,28.22527],[77.10599,28.22343],[77.11497,28.2188],[77.11683,28.21995],[77.12063,28.21797],[77.12897,28.2245],[77.13443,28.22636],[77.14035,28.2244],[77.14914,28.21669],[77.15298,28.21715],[77.16222,28.21291],[77.16538,28.21019],[77.16734,28.20314],[77.17185,28.199],[77.1827,28.20993],[77.18636,28.20866],[77.18865,28.21078],[77.19387,28.20859],[77.2033,28.21231],[77.2023,28.21608],[77.20448,28.21881],[77.19787,28.22245],[77.20178,28.22893],[77.19146,28.23481],[77.19685,28.243],[77.19568,28.24495],[77.20523,28.2511],[77.2098,28.24956],[77.2135,28.25704],[77.21382,28.26167],[77.22039,28.26301],[77.23212,28.26945],[77.23723,28.27006],[77.24187,28.27934],[77.22832,28.28955],[77.22375,28.28759],[77.20817,28.29891],[77.20082,28.28941],[77.18285,28.30267],[77.16618,28.30831],[77.16666,28.31087],[77.16202,28.31268],[77.16244,28.31508],[77.15613,28.31771],[77.15116,28.34013],[77.15178,28.36163],[77.14925,28.36394],[77.15356,28.37947],[77.15086,28.38038],[77.15372,28.38982],[77.16091,28.39414],[77.16991,28.39457],[77.17445,28.40439],[77.16484,28.41495],[77.16593,28.42569],[77.14831,28.4374],[77.14108,28.4367],[77.13233,28.43914],[77.12363,28.44546],[77.12185,28.45851],[77.11078,28.47131],[77.11297,28.47123],[77.11469,28.48097],[77.12073,28.49594],[77.11697,28.49636],[77.09747,28.50543],[77.09592,28.50652],[77.09853,28.51104],[77.08042,28.51795],[77.0718,28.52019],[77.06682,28.51201],[77.06001,28.51237],[77.04624,28.5167],[77.04851,28.52074],[77.043,28.52472],[77.03176,28.53157],[77.02404,28.53309],[77.01544,28.53974],[77.00884,28.54034]],[[77.16684,28.28238],[77.16347,28.28771],[77.16532,28.29049],[77.16402,28.29362],[77.17105,28.29358],[77.1798,28.28551],[77.17646,28.27881],[77.16684,28.28238]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"620","area_level":"District","area_name":"Kishtwar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.65149,34.21061],[75.64812,34.212],[75.64118,34.2097],[75.63805,34.21027],[75.62607,34.20131],[75.62179,34.20179],[75.6046,34.19519],[75.59336,34.19769],[75.58668,34.18411],[75.58634,34.17968],[75.58813,34.17548],[75.57643,34.16982],[75.57564,34.16267],[75.57233,34.1567],[75.55299,34.15599],[75.54897,34.15241],[75.54689,34.14176],[75.53942,34.13539],[75.54068,34.13151],[75.53917,34.12623],[75.53291,34.1187],[75.53648,34.11384],[75.53732,34.10913],[75.53311,34.10362],[75.52951,34.10184],[75.52721,34.09527],[75.53013,34.09325],[75.52945,34.09027],[75.53162,34.08481],[75.52966,34.08023],[75.53232,34.07321],[75.53176,34.06218],[75.52778,34.05771],[75.52687,34.0536],[75.52081,34.05047],[75.51995,34.04848],[75.52163,34.0463],[75.51521,34.04188],[75.50474,34.03868],[75.50022,34.0401],[75.49724,34.03913],[75.49529,34.04054],[75.49474,34.04361],[75.48795,34.04483],[75.48284,34.04359],[75.47954,34.03853],[75.46488,34.04314],[75.46046,34.04189],[75.46063,34.03742],[75.45671,34.03633],[75.44946,34.04151],[75.44665,34.03993],[75.44704,34.03452],[75.44161,34.0314],[75.44301,34.02757],[75.43315,34.01969],[75.43386,34.01493],[75.43661,34.01238],[75.43828,34.00254],[75.43334,33.99708],[75.43435,33.99422],[75.42919,33.99],[75.42964,33.98471],[75.4192,33.98045],[75.41471,33.9804],[75.41403,33.97776],[75.40547,33.97105],[75.40323,33.96718],[75.39513,33.96412],[75.39394,33.96219],[75.39504,33.95142],[75.39399,33.94892],[75.39628,33.94037],[75.38921,33.93744],[75.39065,33.93472],[75.39527,33.93329],[75.39725,33.9305],[75.39496,33.92184],[75.39209,33.91967],[75.39109,33.91607],[75.3954,33.91232],[75.39281,33.9082],[75.39359,33.90282],[75.39869,33.89809],[75.3981,33.8957],[75.40127,33.895],[75.40361,33.8917],[75.41013,33.89286],[75.41171,33.88774],[75.41399,33.88617],[75.41525,33.87408],[75.4194,33.86458],[75.42846,33.85216],[75.42652,33.8457],[75.43182,33.83962],[75.43562,33.8389],[75.437,33.83621],[75.43552,33.83146],[75.44313,33.82913],[75.44211,33.82457],[75.44322,33.82084],[75.45495,33.81466],[75.45545,33.81089],[75.4513,33.80827],[75.45844,33.80254],[75.46067,33.79454],[75.46998,33.79146],[75.48177,33.78486],[75.48132,33.78056],[75.47691,33.77601],[75.46854,33.77274],[75.46528,33.76681],[75.46967,33.76414],[75.46353,33.75709],[75.47122,33.7555],[75.47767,33.75092],[75.47606,33.74824],[75.48226,33.74722],[75.49515,33.73914],[75.50553,33.7256],[75.51087,33.72299],[75.51207,33.71965],[75.52098,33.71535],[75.51024,33.70313],[75.50137,33.69961],[75.5,33.69632],[75.50056,33.69105],[75.50912,33.68169],[75.50612,33.67472],[75.50824,33.66197],[75.51151,33.65741],[75.5167,33.6544],[75.50462,33.64782],[75.50557,33.64135],[75.5,33.63627],[75.5,33.62891],[75.50375,33.6296],[75.50803,33.63316],[75.51052,33.63133],[75.50766,33.62064],[75.50985,33.61899],[75.51804,33.62381],[75.5225,33.62439],[75.52204,33.61628],[75.5262,33.61477],[75.53283,33.60723],[75.53463,33.60118],[75.52389,33.58715],[75.51878,33.587],[75.50975,33.58124],[75.50852,33.5751],[75.50636,33.57317],[75.50548,33.56917],[75.50806,33.56221],[75.50274,33.54991],[75.50678,33.54493],[75.51394,33.54167],[75.51124,33.53904],[75.5103,33.52884],[75.50481,33.52718],[75.49859,33.52896],[75.48649,33.52287],[75.48248,33.51229],[75.46694,33.49958],[75.46897,33.48484],[75.47116,33.48325],[75.47484,33.47505],[75.48115,33.47082],[75.48214,33.45905],[75.48967,33.45297],[75.48716,33.44431],[75.47961,33.4381],[75.48385,33.43444],[75.48353,33.43081],[75.47706,33.42482],[75.47413,33.4191],[75.47913,33.41361],[75.48189,33.40733],[75.49162,33.40456],[75.49705,33.39869],[75.50633,33.39845],[75.51711,33.3943],[75.53044,33.37691],[75.53948,33.37216],[75.54082,33.36636],[75.53961,33.35634],[75.5417,33.3506],[75.55138,33.34012],[75.55821,33.33845],[75.56468,33.33471],[75.56521,33.32502],[75.56657,33.32303],[75.57293,33.31785],[75.58064,33.31434],[75.5891,33.29934],[75.58974,33.2935],[75.59674,33.28801],[75.59525,33.27956],[75.59775,33.27485],[75.61022,33.27197],[75.62021,33.2643],[75.62843,33.26059],[75.63388,33.25995],[75.63441,33.25794],[75.64805,33.25009],[75.66017,33.25769],[75.66658,33.25539],[75.67466,33.25812],[75.68379,33.25398],[75.69224,33.2541],[75.69566,33.24958],[75.70714,33.24014],[75.71055,33.23909],[75.71492,33.23397],[75.71876,33.22729],[75.71836,33.21877],[75.73742,33.20446],[75.75111,33.19938],[75.76143,33.19753],[75.76261,33.19364],[75.76993,33.1902],[75.77488,33.1836],[75.78754,33.17482],[75.80623,33.17143],[75.79698,33.15616],[75.79781,33.14745],[75.80019,33.14332],[75.80633,33.14611],[75.81081,33.14607],[75.81139,33.14928],[75.81435,33.14886],[75.81936,33.15188],[75.83202,33.14877],[75.83575,33.1451],[75.83867,33.13829],[75.85271,33.13286],[75.85689,33.12493],[75.85512,33.12077],[75.87276,33.12255],[75.88515,33.1167],[75.89449,33.11772],[75.89736,33.11943],[75.8989,33.123],[75.90014,33.13441],[75.91598,33.13721],[75.91963,33.13089],[75.92656,33.12565],[75.92894,33.1192],[75.92669,33.11779],[75.92893,33.11412],[75.93621,33.11413],[75.94018,33.118],[75.94661,33.11922],[75.94949,33.12486],[75.96064,33.13034],[75.96869,33.12637],[75.96446,33.12343],[75.96642,33.11923],[75.97099,33.11928],[75.97847,33.12316],[75.98423,33.12181],[75.99087,33.11587],[75.99038,33.11373],[75.99287,33.10859],[75.99929,33.1026],[76.00622,33.10441],[76.01839,33.10195],[76.02707,33.10397],[76.03196,33.10344],[76.03932,33.10446],[76.04631,33.10807],[76.05614,33.10652],[76.06837,33.11496],[76.07659,33.11851],[76.08283,33.11869],[76.10993,33.12619],[76.11659,33.14473],[76.11661,33.15073],[76.12012,33.15763],[76.1179,33.16603],[76.11857,33.17575],[76.13049,33.17321],[76.13785,33.16664],[76.1505,33.16636],[76.15891,33.16115],[76.1655,33.15003],[76.17171,33.14896],[76.17866,33.12651],[76.17609,33.12344],[76.17769,33.11992],[76.1881,33.11202],[76.19892,33.11009],[76.20058,33.09802],[76.20216,33.09572],[76.21793,33.08501],[76.22425,33.09023],[76.22808,33.09107],[76.23212,33.08305],[76.23165,33.07218],[76.23505,33.066],[76.23539,33.05624],[76.23109,33.04341],[76.23171,33.04029],[76.2221,33.02298],[76.23081,33.02099],[76.24277,33.02082],[76.24623,33.02728],[76.25535,33.03405],[76.26148,33.03602],[76.26663,33.0351],[76.27205,33.03647],[76.27467,33.03977],[76.27632,33.05105],[76.2897,33.0568],[76.29056,33.0629],[76.28929,33.06794],[76.28366,33.07191],[76.28282,33.07684],[76.28305,33.08636],[76.28848,33.09872],[76.28595,33.10239],[76.30029,33.11235],[76.30522,33.11962],[76.31341,33.12267],[76.31486,33.12505],[76.3263,33.12734],[76.345,33.14364],[76.3621,33.1532],[76.36846,33.15346],[76.37661,33.16533],[76.39089,33.17385],[76.39785,33.18212],[76.4011,33.18289],[76.4039,33.18579],[76.41416,33.18505],[76.42033,33.18766],[76.42826,33.18197],[76.43571,33.18029],[76.44483,33.18147],[76.45437,33.17944],[76.46639,33.18241],[76.47278,33.17976],[76.48064,33.17887],[76.50175,33.18988],[76.50931,33.19584],[76.52288,33.19588],[76.53686,33.20012],[76.54719,33.19855],[76.56165,33.20954],[76.57266,33.20633],[76.58337,33.20662],[76.59112,33.20486],[76.59589,33.20591],[76.59923,33.20307],[76.59718,33.19572],[76.59863,33.19027],[76.60134,33.18861],[76.60626,33.19043],[76.61107,33.18734],[76.61257,33.17338],[76.62338,33.16691],[76.63941,33.16166],[76.64444,33.16187],[76.64837,33.164],[76.655,33.16375],[76.66461,33.17128],[76.67166,33.17066],[76.6859,33.17352],[76.69963,33.17317],[76.70726,33.17687],[76.70932,33.1807],[76.71997,33.18168],[76.72895,33.1767],[76.74682,33.17841],[76.74676,33.18308],[76.75018,33.18806],[76.75009,33.19149],[76.75781,33.19539],[76.76624,33.20789],[76.76659,33.21084],[76.77095,33.21304],[76.77161,33.21856],[76.77584,33.22049],[76.77932,33.23573],[76.77883,33.23951],[76.77312,33.24215],[76.77094,33.24932],[76.75431,33.24868],[76.73705,33.2611],[76.73848,33.26868],[76.7325,33.27554],[76.73271,33.28151],[76.72773,33.28348],[76.72986,33.28871],[76.72847,33.29104],[76.72982,33.29676],[76.73211,33.29933],[76.72865,33.30394],[76.72855,33.30822],[76.72524,33.31134],[76.72588,33.31516],[76.71775,33.32897],[76.71208,33.33108],[76.70408,33.32781],[76.69596,33.32796],[76.68238,33.33677],[76.67388,33.33927],[76.67096,33.34202],[76.67242,33.34916],[76.65929,33.3567],[76.65839,33.36469],[76.65198,33.37044],[76.65148,33.38342],[76.641,33.39098],[76.63647,33.40184],[76.63841,33.40343],[76.63212,33.40919],[76.63612,33.41144],[76.63698,33.41553],[76.62955,33.4239],[76.62896,33.43489],[76.62051,33.43956],[76.61645,33.43992],[76.61327,33.43893],[76.61088,33.4349],[76.60576,33.43167],[76.60021,33.43143],[76.59341,33.42576],[76.58185,33.42579],[76.57795,33.42956],[76.57999,33.43831],[76.57706,33.44335],[76.57654,33.45298],[76.56949,33.46617],[76.56342,33.46252],[76.55764,33.46203],[76.55409,33.46411],[76.54964,33.46405],[76.54548,33.46873],[76.54091,33.47068],[76.53477,33.48219],[76.52784,33.48349],[76.52291,33.49338],[76.51442,33.49514],[76.5078,33.49957],[76.5067,33.50998],[76.50205,33.51598],[76.49927,33.51742],[76.49188,33.51691],[76.47908,33.52683],[76.46995,33.52768],[76.45916,33.53389],[76.45849,33.53852],[76.46467,33.54523],[76.4624,33.55162],[76.45783,33.55428],[76.45072,33.5625],[76.44685,33.56401],[76.44309,33.55908],[76.43996,33.54742],[76.43588,33.54219],[76.4264,33.53728],[76.4152,33.53908],[76.41024,33.54313],[76.3848,33.55227],[76.38028,33.55253],[76.37928,33.55821],[76.37475,33.56588],[76.38072,33.57696],[76.36646,33.58575],[76.36004,33.59454],[76.35927,33.60327],[76.35539,33.60486],[76.34692,33.60494],[76.33625,33.61051],[76.33095,33.60514],[76.32316,33.60227],[76.31567,33.608],[76.30651,33.60955],[76.2996,33.59824],[76.30182,33.58976],[76.30952,33.58006],[76.31032,33.57366],[76.30978,33.57146],[76.30612,33.57051],[76.30302,33.56755],[76.27787,33.56752],[76.25965,33.56502],[76.24574,33.54554],[76.24123,33.54831],[76.23192,33.54519],[76.22503,33.54759],[76.21977,33.55532],[76.20914,33.56646],[76.20549,33.56771],[76.20544,33.5692],[76.20648,33.57328],[76.21787,33.57366],[76.22522,33.57728],[76.2314,33.58695],[76.22792,33.5941],[76.22412,33.59684],[76.22422,33.60031],[76.23071,33.60304],[76.23865,33.60244],[76.24034,33.60485],[76.24096,33.60959],[76.23723,33.61759],[76.23281,33.62316],[76.22778,33.62563],[76.22937,33.62983],[76.24891,33.63864],[76.25304,33.63808],[76.26556,33.64351],[76.27048,33.64331],[76.27412,33.65232],[76.28005,33.65469],[76.28465,33.66184],[76.27352,33.66935],[76.2705,33.67559],[76.26621,33.67953],[76.2696,33.6851],[76.26472,33.68942],[76.26569,33.69743],[76.26311,33.70305],[76.26618,33.70694],[76.26324,33.71209],[76.26713,33.71709],[76.26741,33.72468],[76.27117,33.73075],[76.26578,33.73378],[76.26726,33.74038],[76.26524,33.74688],[76.26021,33.75],[76.25097,33.75183],[76.24786,33.75456],[76.24708,33.75853],[76.23611,33.75987],[76.21885,33.75873],[76.21258,33.76118],[76.2108,33.77119],[76.20036,33.77564],[76.19867,33.78723],[76.18474,33.80015],[76.16725,33.79782],[76.16138,33.80185],[76.15975,33.80847],[76.16324,33.81741],[76.16598,33.81935],[76.16264,33.8212],[76.15687,33.82999],[76.15998,33.83692],[76.15425,33.8406],[76.1554,33.84725],[76.14908,33.85015],[76.14951,33.85362],[76.14255,33.86646],[76.13754,33.87008],[76.13847,33.87242],[76.13668,33.8786],[76.12501,33.88528],[76.12296,33.88905],[76.1179,33.88872],[76.10725,33.89185],[76.10024,33.89626],[76.0969,33.90041],[76.09191,33.90243],[76.08258,33.90348],[76.07008,33.90887],[76.04776,33.91242],[76.03804,33.91887],[76.03257,33.91966],[76.03389,33.92417],[76.04137,33.92529],[76.04898,33.93149],[76.04947,33.93386],[76.04826,33.94036],[76.04292,33.95255],[76.02654,33.97163],[76.02436,33.98212],[76.01795,33.97507],[76.01219,33.97439],[76.00542,33.97674],[75.99053,33.97239],[75.9782,33.97219],[75.97271,33.96252],[75.96883,33.96016],[75.96654,33.95452],[75.9587,33.95685],[75.9496,33.95589],[75.94286,33.96046],[75.91745,33.96295],[75.90854,33.96888],[75.89856,33.96744],[75.8932,33.96909],[75.88821,33.96864],[75.87356,33.96205],[75.85249,33.96225],[75.84436,33.95418],[75.84046,33.95409],[75.83065,33.95874],[75.82212,33.96558],[75.81963,33.97221],[75.8256,33.97781],[75.83024,33.9924],[75.84161,33.99957],[75.84371,34.00324],[75.84306,34.00478],[75.8358,34.00714],[75.82783,34.00626],[75.81827,34.00751],[75.81429,34.01451],[75.79984,34.02298],[75.79754,34.02598],[75.79694,34.03045],[75.78671,34.0312],[75.7797,34.03762],[75.76919,34.04128],[75.76769,34.04381],[75.76852,34.05492],[75.75517,34.05674],[75.75,34.05485],[75.74148,34.05616],[75.73703,34.05891],[75.74254,34.07326],[75.73475,34.07895],[75.73337,34.08411],[75.7251,34.08966],[75.72148,34.0944],[75.7188,34.10325],[75.70774,34.10724],[75.69684,34.11343],[75.68736,34.11605],[75.68563,34.12091],[75.69125,34.12761],[75.68316,34.13243],[75.68229,34.13556],[75.68571,34.14216],[75.68235,34.14404],[75.67361,34.14516],[75.66795,34.14429],[75.67016,34.14998],[75.67814,34.15378],[75.68005,34.16246],[75.68448,34.16678],[75.68278,34.17059],[75.68411,34.17802],[75.68805,34.18486],[75.6873,34.18694],[75.69072,34.19527],[75.68529,34.19956],[75.68054,34.20096],[75.67075,34.19803],[75.66242,34.19913],[75.65739,34.20294],[75.65646,34.20632],[75.65149,34.21061]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"621","area_level":"District","area_name":"Ramban","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.16639,33.52485],[75.15426,33.52322],[75.14009,33.51411],[75.13303,33.514],[75.1219,33.50333],[75.11415,33.49802],[75.10986,33.49703],[75.10312,33.49757],[75.09464,33.50211],[75.08186,33.49446],[75.07507,33.49687],[75.05838,33.499],[75.05128,33.50333],[75.04431,33.50302],[75.0365,33.50498],[75.02713,33.50205],[75.02386,33.50403],[75.0179,33.49752],[75.01485,33.48515],[75.01639,33.47925],[75.02181,33.47191],[75.02208,33.46081],[75.02438,33.45542],[75.03101,33.45173],[75.03625,33.44231],[75.03286,33.43866],[75.02966,33.4386],[75.02613,33.43314],[75.02259,33.43209],[75.01203,33.42132],[75.01033,33.4176],[75.0137,33.40802],[75.01897,33.40412],[75.02027,33.40128],[75.02449,33.39987],[75.02626,33.39623],[75.03098,33.39425],[75.03431,33.38553],[75.04397,33.37635],[75.04406,33.37232],[75.04559,33.37071],[75.04264,33.36809],[75.0195,33.35797],[75.00832,33.3467],[74.99369,33.33723],[74.98647,33.3263],[74.97431,33.32372],[74.96988,33.31815],[74.96544,33.30997],[74.96398,33.30313],[74.95797,33.29381],[74.96434,33.28348],[74.9735,33.26301],[74.96539,33.25766],[74.96767,33.25118],[74.97095,33.24859],[74.97228,33.23853],[74.96356,33.23255],[74.96321,33.22911],[74.97194,33.22356],[74.98596,33.22178],[74.99531,33.21725],[75.00164,33.21714],[75.0213,33.21024],[75.04489,33.19734],[75.05856,33.1945],[75.07525,33.19602],[75.08414,33.19474],[75.10354,33.18303],[75.12158,33.17858],[75.13752,33.16513],[75.1506,33.1505],[75.15319,33.14425],[75.15643,33.14133],[75.1687,33.14623],[75.19264,33.14985],[75.20225,33.14924],[75.21016,33.14673],[75.21856,33.14313],[75.22333,33.13864],[75.23461,33.11747],[75.24524,33.10318],[75.25694,33.10032],[75.26824,33.09434],[75.30015,33.09454],[75.30887,33.09236],[75.3281,33.08598],[75.33495,33.07864],[75.34125,33.07782],[75.34238,33.07346],[75.34423,33.07217],[75.36698,33.06658],[75.36941,33.06857],[75.37086,33.07289],[75.36893,33.08309],[75.3696,33.09825],[75.36549,33.11099],[75.36397,33.12166],[75.3556,33.14675],[75.3481,33.15322],[75.33704,33.15758],[75.33454,33.16165],[75.33988,33.17552],[75.34844,33.1877],[75.35264,33.1911],[75.37261,33.19897],[75.38222,33.20741],[75.38675,33.21359],[75.3879,33.22426],[75.39123,33.23427],[75.39059,33.23754],[75.38753,33.24352],[75.38034,33.25047],[75.37711,33.25591],[75.37481,33.27374],[75.38178,33.29503],[75.39326,33.34629],[75.39384,33.35297],[75.39119,33.36269],[75.38857,33.36598],[75.38106,33.36472],[75.37727,33.36736],[75.37573,33.37802],[75.36572,33.38128],[75.35747,33.38113],[75.35429,33.38346],[75.34938,33.3841],[75.33775,33.39325],[75.33056,33.39623],[75.32906,33.40524],[75.31557,33.41435],[75.30818,33.42376],[75.29024,33.43538],[75.27975,33.45143],[75.25971,33.46927],[75.24792,33.47527],[75.24256,33.48559],[75.23523,33.48893],[75.23079,33.4939],[75.23118,33.49587],[75.22276,33.50207],[75.21753,33.50271],[75.20925,33.50828],[75.2056,33.50908],[75.19875,33.5166],[75.18622,33.51722],[75.17547,33.52433],[75.16639,33.52485]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"622","area_level":"District","area_name":"Kulgam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.07127,33.83709],[75.06706,33.84032],[75.06687,33.8356],[75.06034,33.83458],[75.05914,33.83282],[75.06536,33.81795],[75.05999,33.81808],[75.05303,33.8125],[75.05542,33.81027],[75.05519,33.80675],[75.05114,33.79947],[75.04025,33.79831],[75.03029,33.79448],[75.02891,33.79019],[75.03007,33.77769],[75.03832,33.77319],[75.03742,33.77083],[75.03173,33.76928],[75.03038,33.75979],[75.01914,33.74097],[75.01468,33.73935],[75.01025,33.74864],[74.99937,33.75272],[74.99513,33.74797],[74.99565,33.74604],[75.0022,33.74571],[75.00021,33.74201],[74.99581,33.74171],[74.98771,33.7448],[74.9806,33.74535],[74.97784,33.74486],[74.97369,33.73909],[74.96012,33.74179],[74.95797,33.74364],[74.95244,33.74128],[74.95199,33.7391],[74.95707,33.73364],[74.9556,33.72945],[74.95834,33.71565],[74.9602,33.71498],[74.96177,33.71066],[74.96097,33.70809],[74.96232,33.70398],[74.96784,33.69592],[74.9665,33.69315],[74.9628,33.69667],[74.96071,33.69626],[74.96002,33.68527],[74.96836,33.68474],[74.95719,33.68025],[74.94998,33.67473],[74.94255,33.67167],[74.94001,33.66901],[74.93932,33.66094],[74.93765,33.65946],[74.93469,33.6619],[74.93257,33.66974],[74.93023,33.67097],[74.92243,33.67145],[74.91574,33.66879],[74.90912,33.66835],[74.91621,33.6576],[74.91201,33.6544],[74.90405,33.65341],[74.90586,33.64753],[74.90005,33.64588],[74.88282,33.62965],[74.87331,33.62697],[74.87093,33.62791],[74.8493,33.64318],[74.83501,33.65536],[74.83001,33.65755],[74.80346,33.65417],[74.79484,33.65491],[74.79201,33.65832],[74.78921,33.65858],[74.78095,33.64746],[74.77728,33.6539],[74.7778,33.66199],[74.77641,33.66583],[74.77912,33.67141],[74.78648,33.66884],[74.78601,33.67502],[74.78919,33.67693],[74.78917,33.6792],[74.78705,33.68097],[74.77922,33.68122],[74.7486,33.67063],[74.73996,33.67034],[74.73753,33.66827],[74.72902,33.67437],[74.72786,33.67846],[74.72926,33.68258],[74.73555,33.68216],[74.73071,33.68775],[74.72782,33.68763],[74.72653,33.68978],[74.72268,33.68942],[74.71246,33.69702],[74.70098,33.69532],[74.69892,33.69754],[74.69446,33.69689],[74.68994,33.69993],[74.68535,33.69995],[74.68125,33.70391],[74.67299,33.70123],[74.66586,33.69345],[74.65538,33.69381],[74.64756,33.69083],[74.6311,33.69326],[74.6254,33.69647],[74.6103,33.69539],[74.60806,33.69351],[74.60813,33.68772],[74.60228,33.68214],[74.59788,33.68304],[74.59533,33.68569],[74.58307,33.689],[74.57842,33.68829],[74.56645,33.69161],[74.56025,33.69027],[74.55827,33.68596],[74.54351,33.68021],[74.54358,33.67363],[74.53928,33.6663],[74.53175,33.66011],[74.53314,33.65736],[74.53096,33.65433],[74.52943,33.64329],[74.51972,33.64134],[74.51951,33.6287],[74.52218,33.62523],[74.52511,33.62487],[74.52733,33.61681],[74.5203,33.60953],[74.52068,33.60552],[74.51529,33.60243],[74.51377,33.59967],[74.51575,33.59104],[74.52045,33.58618],[74.5211,33.58267],[74.52425,33.57887],[74.5219,33.57345],[74.52791,33.56707],[74.51801,33.55997],[74.51598,33.55362],[74.51971,33.55041],[74.52549,33.54951],[74.5291,33.54679],[74.53316,33.53229],[74.53778,33.52787],[74.54571,33.52833],[74.54755,33.53066],[74.5479,33.52912],[74.55553,33.52756],[74.55641,33.52463],[74.56547,33.52395],[74.56799,33.51797],[74.57108,33.51759],[74.57578,33.51416],[74.57382,33.51172],[74.57434,33.50737],[74.57014,33.5046],[74.57066,33.50323],[74.57449,33.50756],[74.58819,33.50945],[74.58996,33.50281],[74.60386,33.50132],[74.60695,33.49598],[74.61422,33.49893],[74.61873,33.49721],[74.62782,33.4978],[74.63123,33.50164],[74.63991,33.50201],[74.64201,33.50337],[74.64225,33.50894],[74.64553,33.5099],[74.64975,33.51501],[74.65251,33.509],[74.65632,33.50563],[74.6706,33.50621],[74.67992,33.50492],[74.68262,33.50831],[74.6838,33.51439],[74.68898,33.51613],[74.69374,33.52098],[74.70415,33.52576],[74.70934,33.52595],[74.71974,33.51746],[74.73033,33.51374],[74.73463,33.50648],[74.73978,33.50588],[74.75873,33.49072],[74.77114,33.48769],[74.78017,33.49028],[74.78843,33.48788],[74.79556,33.48018],[74.78893,33.47369],[74.79603,33.46792],[74.81377,33.47081],[74.82567,33.46792],[74.83137,33.46808],[74.83681,33.47425],[74.83857,33.4788],[74.84277,33.47637],[74.85078,33.47648],[74.85837,33.47457],[74.86292,33.47809],[74.86453,33.48421],[74.87004,33.48428],[74.87337,33.48602],[74.8807,33.48322],[74.89243,33.48269],[74.89718,33.4844],[74.89863,33.48775],[74.90219,33.48905],[74.90294,33.49163],[74.90534,33.49301],[74.91165,33.4921],[74.91684,33.49902],[74.92153,33.49916],[74.94059,33.49316],[74.94914,33.49798],[74.9525,33.49787],[74.95266,33.50976],[74.95459,33.51335],[74.96384,33.51359],[74.96591,33.51498],[74.99243,33.51347],[74.99367,33.50896],[75.00458,33.50549],[75.00831,33.51058],[75.01439,33.5122],[75.02713,33.50205],[75.0344,33.50493],[75.05128,33.50333],[75.05838,33.499],[75.07507,33.49687],[75.08186,33.49446],[75.09464,33.50211],[75.10596,33.49689],[75.11415,33.49802],[75.1219,33.50333],[75.13113,33.51305],[75.14009,33.51411],[75.15166,33.52233],[75.15711,33.52379],[75.14129,33.52534],[75.14309,33.5293],[75.14184,33.53565],[75.14606,33.54556],[75.15113,33.55106],[75.15199,33.55727],[75.16009,33.5648],[75.16056,33.57006],[75.17,33.57964],[75.16951,33.5906],[75.17504,33.59015],[75.17503,33.59148],[75.16606,33.59665],[75.16126,33.58878],[75.1571,33.59014],[75.1526,33.58875],[75.14909,33.59249],[75.13467,33.58967],[75.14074,33.60249],[75.14041,33.60624],[75.13876,33.61005],[75.13082,33.61429],[75.12649,33.62035],[75.12901,33.62319],[75.13601,33.62451],[75.13571,33.62826],[75.13053,33.63592],[75.12489,33.63383],[75.12004,33.64914],[75.13751,33.65417],[75.1278,33.66013],[75.12074,33.67032],[75.12059,33.6729],[75.1017,33.67296],[75.10773,33.68561],[75.10297,33.68362],[75.09941,33.68417],[75.09822,33.6883],[75.10346,33.69595],[75.10702,33.70526],[75.11652,33.70113],[75.12026,33.70128],[75.12593,33.7058],[75.12364,33.70826],[75.12569,33.71425],[75.12895,33.71402],[75.12948,33.71519],[75.12989,33.71652],[75.12356,33.71727],[75.12361,33.72059],[75.11799,33.72164],[75.11598,33.72026],[75.11374,33.72671],[75.1117,33.72821],[75.11375,33.73014],[75.11963,33.73124],[75.12063,33.73635],[75.12756,33.73518],[75.12268,33.7406],[75.12137,33.74878],[75.12185,33.76499],[75.11745,33.77778],[75.1148,33.77563],[75.11295,33.77089],[75.1033,33.772],[75.10345,33.78267],[75.10147,33.7901],[75.10783,33.80172],[75.10612,33.80686],[75.10083,33.81112],[75.0925,33.81344],[75.07127,33.83709]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"623","area_level":"District","area_name":"Bandipora","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.2085,34.64563],[75.20948,34.64767],[75.21818,34.6516],[75.20446,34.6535],[75.20791,34.66542],[75.23207,34.69082],[75.25827,34.69757],[75.2543,34.72169],[75.26256,34.73168],[75.26357,34.74458],[75.25093,34.74986],[75.25625,34.77389],[75.23966,34.80183],[75.22324,34.81752],[75.19062,34.83493],[75.17257,34.84267],[75.15809,34.84548],[75.14423,34.85028],[75.14197,34.87495],[75.1013,34.9191],[75.07164,34.9192],[75.06412,34.90524],[75.06362,34.87081],[75.06528,34.85749],[75.06403,34.84711],[75.05712,34.84234],[75.04376,34.84336],[75.0311,34.84843],[75.01634,34.84825],[74.95674,34.80813],[74.95063,34.80174],[74.92982,34.78697],[74.9186,34.78511],[74.90731,34.79253],[74.90145,34.80165],[74.89857,34.80972],[74.88707,34.82228],[74.87215,34.83019],[74.86104,34.82833],[74.85322,34.8311],[74.83969,34.84074],[74.82325,34.83736],[74.81329,34.84362],[74.80757,34.85048],[74.79846,34.85207],[74.78785,34.85246],[74.77694,34.84077],[74.76276,34.84408],[74.75017,34.84499],[74.74026,34.84836],[74.73948,34.85411],[74.72944,34.86325],[74.71669,34.86649],[74.71145,34.88092],[74.70167,34.88303],[74.69822,34.88072],[74.68415,34.8788],[74.66409,34.9004],[74.66253,34.90677],[74.6464,34.90364],[74.63434,34.90986],[74.62008,34.92063],[74.60423,34.9248],[74.59653,34.9218],[74.59032,34.91584],[74.57701,34.91392],[74.57284,34.90043],[74.57137,34.8886],[74.56788,34.88314],[74.55485,34.87897],[74.53908,34.86592],[74.52359,34.86422],[74.50908,34.87183],[74.50143,34.8717],[74.4902,34.86566],[74.46228,34.86267],[74.45631,34.86068],[74.44644,34.85312],[74.43403,34.84652],[74.42993,34.82239],[74.42525,34.81735],[74.4182,34.8148],[74.41352,34.80985],[74.34688,34.79617],[74.33019,34.79113],[74.33502,34.78776],[74.35228,34.78524],[74.37763,34.79079],[74.39658,34.78428],[74.41169,34.78861],[74.41672,34.78861],[74.42737,34.78463],[74.43769,34.78366],[74.45628,34.78895],[74.48181,34.78254],[74.49976,34.78826],[74.5202,34.78305],[74.53143,34.78382],[74.56821,34.77768],[74.58168,34.77248],[74.5918,34.76529],[74.59812,34.7563],[74.6061,34.73777],[74.59094,34.71127],[74.5695,34.69225],[74.56667,34.68773],[74.56295,34.674],[74.56519,34.65402],[74.56386,34.64036],[74.55894,34.62996],[74.54736,34.62424],[74.54749,34.60453],[74.54165,34.59021],[74.53316,34.58273],[74.53179,34.57489],[74.52897,34.57154],[74.52174,34.55271],[74.52149,34.54955],[74.53137,34.53808],[74.53408,34.52942],[74.53234,34.51899],[74.53485,34.51214],[74.52083,34.50199],[74.51781,34.48422],[74.48512,34.46248],[74.47721,34.43736],[74.47945,34.43264],[74.4913,34.41938],[74.49828,34.41527],[74.50545,34.4079],[74.50978,34.40023],[74.51089,34.39401],[74.50873,34.39333],[74.50926,34.38792],[74.51186,34.38604],[74.51215,34.38264],[74.51488,34.3799],[74.51536,34.374],[74.51754,34.36953],[74.52219,34.3672],[74.52391,34.36141],[74.53196,34.35627],[74.52657,34.33328],[74.52135,34.32949],[74.51888,34.32172],[74.52091,34.31192],[74.52069,34.30331],[74.51583,34.29338],[74.51046,34.28822],[74.51767,34.28991],[74.52523,34.29581],[74.52654,34.28764],[74.52922,34.28557],[74.53112,34.28039],[74.5268,34.26512],[74.52933,34.26377],[74.53213,34.2569],[74.53965,34.24742],[74.53863,34.24375],[74.54715,34.23839],[74.55465,34.22997],[74.57954,34.22466],[74.58039,34.21557],[74.57873,34.20075],[74.57507,34.19019],[74.57242,34.18738],[74.58421,34.18497],[74.5987,34.1771],[74.60995,34.17532],[74.62119,34.17505],[74.63558,34.17938],[74.63713,34.1736],[74.63653,34.16068],[74.63859,34.15952],[74.64181,34.15935],[74.65291,34.16438],[74.67648,34.1687],[74.67955,34.17158],[74.68167,34.1779],[74.67558,34.18442],[74.66578,34.20034],[74.6634,34.20715],[74.65324,34.21329],[74.65102,34.21716],[74.65264,34.22558],[74.65179,34.23349],[74.65903,34.2398],[74.65772,34.24449],[74.66184,34.24657],[74.67044,34.24492],[74.68016,34.24884],[74.68023,34.25],[74.65297,34.25],[74.6553,34.26306],[74.64895,34.26267],[74.64841,34.26992],[74.6632,34.29859],[74.67241,34.29831],[74.68521,34.29344],[74.71206,34.2952],[74.75045,34.31578],[74.76704,34.31415],[74.76926,34.32348],[74.77396,34.32332],[74.77648,34.3289],[74.78626,34.33315],[74.78706,34.3397],[74.78914,34.34189],[74.80698,34.34404],[74.81362,34.34302],[74.8402,34.34666],[74.84902,34.35081],[74.85174,34.35863],[74.86233,34.36138],[74.86699,34.36928],[74.87302,34.36809],[74.89241,34.37533],[74.89832,34.38338],[74.89953,34.38958],[74.9055,34.3929],[74.90895,34.39993],[74.90891,34.40123],[74.89706,34.4047],[74.89206,34.41219],[74.89045,34.4299],[74.89154,34.43426],[74.89926,34.4427],[74.89996,34.44868],[74.91471,34.45611],[74.9257,34.45606],[74.92969,34.45806],[74.93103,34.4614],[74.93749,34.46147],[74.94015,34.46405],[74.95018,34.46056],[74.9504,34.45264],[74.95838,34.44908],[74.96098,34.44553],[74.98828,34.44493],[74.99913,34.44171],[75.00799,34.44376],[75.00827,34.44049],[75.01717,34.43919],[75.01847,34.43823],[75.01791,34.42983],[75.02293,34.42114],[75.03275,34.41511],[75.0442,34.41409],[75.04843,34.41019],[75.05565,34.40944],[75.06722,34.40407],[75.0728,34.39824],[75.07004,34.39461],[75.0715,34.39201],[75.07449,34.39095],[75.07598,34.38741],[75.07981,34.38549],[75.08522,34.37914],[75.08764,34.37864],[75.09052,34.37457],[75.09943,34.37079],[75.10391,34.37263],[75.10792,34.36896],[75.11291,34.36872],[75.11284,34.3647],[75.11939,34.36259],[75.12177,34.35765],[75.12825,34.35104],[75.13148,34.3502],[75.13804,34.35172],[75.1393,34.34927],[75.14361,34.34865],[75.14775,34.34491],[75.1606,34.34847],[75.16488,34.35295],[75.17251,34.35156],[75.17607,34.35274],[75.18398,34.35682],[75.18702,34.36044],[75.19197,34.35936],[75.19836,34.36718],[75.19568,34.37423],[75.20016,34.37782],[75.20049,34.38013],[75.19824,34.38343],[75.19977,34.3854],[75.21165,34.38535],[75.22187,34.3769],[75.23257,34.37383],[75.23554,34.37],[75.24702,34.37471],[75.25906,34.37618],[75.26362,34.37519],[75.26498,34.37105],[75.27277,34.3629],[75.28793,34.36306],[75.29107,34.36121],[75.29508,34.36424],[75.30128,34.3653],[75.30707,34.36407],[75.31169,34.36647],[75.31609,34.36572],[75.31999,34.35886],[75.33066,34.3574],[75.33489,34.36176],[75.33546,34.36846],[75.33878,34.3744],[75.35006,34.37811],[75.35418,34.38468],[75.36209,34.38715],[75.36697,34.39103],[75.3666,34.39774],[75.36913,34.40048],[75.37277,34.41086],[75.36512,34.41848],[75.35738,34.418],[75.3538,34.42456],[75.3351,34.42927],[75.3342,34.43324],[75.3297,34.43623],[75.32754,34.43977],[75.33317,34.44295],[75.33291,34.44709],[75.33049,34.4503],[75.3326,34.45193],[75.33723,34.45167],[75.34016,34.46056],[75.34905,34.46346],[75.35324,34.46879],[75.34965,34.4753],[75.35024,34.48014],[75.34459,34.48505],[75.34292,34.48944],[75.34733,34.49556],[75.34738,34.5027],[75.35293,34.51759],[75.3572,34.52129],[75.36612,34.52145],[75.36418,34.52899],[75.36557,34.5381],[75.36111,34.54017],[75.36176,34.54209],[75.35562,34.54687],[75.35267,34.55315],[75.34416,34.56303],[75.3379,34.56474],[75.33366,34.56801],[75.32853,34.56879],[75.3199,34.56484],[75.31504,34.56965],[75.31181,34.57686],[75.30636,34.57875],[75.29956,34.58694],[75.28971,34.58917],[75.28637,34.59543],[75.27799,34.59439],[75.26912,34.59792],[75.26553,34.60226],[75.25337,34.60413],[75.25326,34.6075],[75.25834,34.61459],[75.25664,34.62151],[75.25407,34.62828],[75.2415,34.63778],[75.23288,34.63616],[75.22993,34.63303],[75.22533,34.63463],[75.22062,34.63383],[75.21272,34.63812],[75.20807,34.63868],[75.20603,34.64378],[75.2085,34.64563]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"624","area_level":"District","area_name":"Samba","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.05587,32.74207],[75.04809,32.74144],[75.04683,32.73394],[75.04409,32.73195],[75.04481,32.73095],[75.04272,32.72815],[75.04203,32.7303],[75.0346,32.7341],[75.0265,32.73093],[75.02052,32.73503],[75.01535,32.73412],[75.01413,32.73162],[75.01078,32.73233],[75.00977,32.72296],[74.99908,32.72127],[74.99793,32.71711],[74.99535,32.71693],[74.98885,32.70977],[74.97945,32.71272],[74.96598,32.71154],[74.96699,32.70857],[74.96594,32.70356],[74.96161,32.70188],[74.95635,32.69655],[74.95764,32.68924],[74.95485,32.68472],[74.94769,32.67964],[74.92779,32.67201],[74.92689,32.67095],[74.92952,32.66861],[74.91234,32.65961],[74.90847,32.65549],[74.89577,32.65252],[74.8954,32.64161],[74.89672,32.63904],[74.89088,32.63484],[74.89277,32.63193],[74.88949,32.62982],[74.88869,32.62677],[74.88445,32.62616],[74.88741,32.62377],[74.88466,32.62027],[74.86937,32.62097],[74.87573,32.61476],[74.88728,32.60822],[74.89208,32.61232],[74.89592,32.61846],[74.90417,32.62267],[74.90923,32.62767],[74.92394,32.61703],[74.92763,32.61237],[74.91887,32.60562],[74.92075,32.60231],[74.92514,32.60284],[74.92906,32.59507],[74.93805,32.59078],[74.94702,32.59701],[74.95064,32.59372],[74.93902,32.58566],[74.94339,32.58705],[74.94485,32.58655],[74.94538,32.58329],[74.9476,32.58302],[74.94817,32.57208],[74.94684,32.56833],[74.94171,32.56761],[74.93548,32.56429],[74.92796,32.55142],[74.91528,32.54766],[74.90893,32.55069],[74.90158,32.5505],[74.90234,32.54567],[74.90539,32.54302],[74.90536,32.53767],[74.90884,32.53465],[74.90832,32.53299],[74.90083,32.52574],[74.89254,32.53246],[74.88426,32.52572],[74.88394,32.51926],[74.88705,32.51719],[74.88522,32.51591],[74.89162,32.5107],[74.87799,32.49275],[74.88354,32.49087],[74.88389,32.48875],[74.87835,32.47843],[74.87925,32.47672],[74.90079,32.46738],[74.9066,32.47294],[74.90831,32.47232],[74.91742,32.46427],[74.92151,32.46501],[74.931,32.47124],[74.93794,32.4713],[74.9362,32.46753],[74.94163,32.46285],[74.94704,32.44842],[74.94865,32.44781],[74.95266,32.4475],[74.96071,32.4553],[74.97129,32.45954],[74.98324,32.45089],[74.98652,32.45044],[74.98874,32.45242],[74.99187,32.45146],[74.99927,32.45745],[75.00329,32.45723],[75.0119,32.46412],[75.0193,32.46616],[75.01975,32.46789],[75.01656,32.47079],[75.01682,32.47946],[75.02802,32.49709],[75.04164,32.48711],[75.04535,32.48831],[75.05477,32.48164],[75.06782,32.47774],[75.06959,32.47791],[75.06994,32.47973],[75.08403,32.472],[75.08554,32.46876],[75.08713,32.4706],[75.09075,32.46926],[75.09268,32.47011],[75.09898,32.47774],[75.10666,32.47406],[75.10874,32.46762],[75.10777,32.46057],[75.11927,32.45422],[75.1186,32.44434],[75.12445,32.43462],[75.1284,32.43352],[75.13323,32.4278],[75.13301,32.42641],[75.12725,32.42551],[75.12663,32.42028],[75.12753,32.41725],[75.13166,32.41447],[75.13142,32.40886],[75.14111,32.41235],[75.15266,32.42108],[75.16012,32.41864],[75.16386,32.42264],[75.17825,32.42155],[75.18033,32.42424],[75.18709,32.42605],[75.18977,32.42581],[75.19355,32.42138],[75.19885,32.4216],[75.19844,32.42627],[75.20108,32.43027],[75.19867,32.43318],[75.19907,32.44174],[75.19512,32.44368],[75.20556,32.44692],[75.20472,32.44899],[75.20706,32.45556],[75.21348,32.4545],[75.21698,32.45643],[75.21516,32.4603],[75.21955,32.46161],[75.22578,32.46078],[75.22659,32.46508],[75.21747,32.48119],[75.22185,32.48994],[75.22538,32.49138],[75.22992,32.49887],[75.23594,32.49765],[75.23758,32.4997],[75.23872,32.50246],[75.23319,32.5048],[75.23787,32.51239],[75.23831,32.51746],[75.24086,32.51932],[75.24493,32.5277],[75.2494,32.53116],[75.25078,32.53474],[75.25661,32.53856],[75.25724,32.543],[75.26085,32.54302],[75.26443,32.54615],[75.26924,32.54742],[75.27022,32.55055],[75.27207,32.55134],[75.27079,32.5529],[75.27677,32.55647],[75.27881,32.56032],[75.28181,32.56214],[75.28061,32.5693],[75.28344,32.56971],[75.28709,32.57403],[75.29421,32.57367],[75.29429,32.57859],[75.3174,32.57325],[75.32342,32.57758],[75.32487,32.5806],[75.33695,32.57913],[75.33946,32.58064],[75.34428,32.58753],[75.34485,32.59047],[75.34248,32.59263],[75.34553,32.59398],[75.34318,32.60052],[75.34435,32.60276],[75.32042,32.62429],[75.30228,32.62705],[75.29677,32.63067],[75.28947,32.63148],[75.2843,32.63956],[75.28444,32.64357],[75.27963,32.64569],[75.27896,32.64812],[75.2704,32.65102],[75.26062,32.65021],[75.25669,32.65161],[75.25209,32.65587],[75.24906,32.65563],[75.2462,32.65502],[75.24623,32.64721],[75.2384,32.64509],[75.23882,32.64256],[75.23,32.64435],[75.2231,32.63979],[75.20747,32.64476],[75.20861,32.64723],[75.20785,32.65266],[75.19825,32.65246],[75.20292,32.65583],[75.20203,32.6591],[75.21038,32.65895],[75.20439,32.66313],[75.20502,32.66666],[75.20182,32.67662],[75.20747,32.68326],[75.20456,32.68543],[75.20189,32.68488],[75.19976,32.68912],[75.19348,32.68878],[75.18812,32.69114],[75.18578,32.69568],[75.18217,32.69953],[75.17832,32.70101],[75.17638,32.70499],[75.16609,32.71159],[75.16336,32.71008],[75.15862,32.71096],[75.15729,32.71198],[75.15788,32.71574],[75.15117,32.72039],[75.15098,32.72379],[75.14692,32.72644],[75.14322,32.72299],[75.13635,32.72523],[75.13328,32.72038],[75.12567,32.71569],[75.11867,32.7172],[75.12418,32.71201],[75.12259,32.70748],[75.11766,32.71084],[75.11409,32.70956],[75.11142,32.71043],[75.10514,32.71552],[75.09938,32.71781],[75.09378,32.71613],[75.09037,32.72263],[75.08507,32.72769],[75.08617,32.73015],[75.08161,32.73459],[75.07779,32.73178],[75.06823,32.73729],[75.06616,32.73697],[75.06301,32.73989],[75.05587,32.74207]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"625","area_level":"District","area_name":"Shopian","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.86329,33.81505],[74.85656,33.81615],[74.85017,33.82147],[74.8439,33.81809],[74.84684,33.81233],[74.84541,33.80829],[74.82745,33.78673],[74.82426,33.78522],[74.82106,33.7893],[74.81809,33.78947],[74.81456,33.79436],[74.80894,33.79807],[74.7983,33.79987],[74.77772,33.79122],[74.77383,33.79499],[74.76915,33.79552],[74.76548,33.79829],[74.7613,33.80695],[74.75848,33.80863],[74.74522,33.80754],[74.73949,33.80504],[74.73684,33.80144],[74.73152,33.80138],[74.71325,33.79419],[74.71164,33.79676],[74.71617,33.80475],[74.7101,33.80417],[74.69211,33.80865],[74.68818,33.80631],[74.68617,33.80139],[74.67731,33.79438],[74.65748,33.78246],[74.64922,33.77313],[74.64446,33.76452],[74.62448,33.74959],[74.62587,33.73982],[74.61071,33.73563],[74.60158,33.72491],[74.58086,33.71898],[74.5771,33.71047],[74.57027,33.70209],[74.56645,33.69161],[74.57842,33.68829],[74.58307,33.689],[74.59533,33.68569],[74.59788,33.68304],[74.60228,33.68214],[74.60813,33.68772],[74.60806,33.69351],[74.6103,33.69539],[74.6254,33.69647],[74.6311,33.69326],[74.64756,33.69083],[74.65538,33.69381],[74.66586,33.69345],[74.67299,33.70123],[74.68125,33.70391],[74.68535,33.69995],[74.68994,33.69993],[74.69446,33.69689],[74.69892,33.69754],[74.70098,33.69532],[74.71246,33.69702],[74.72268,33.68942],[74.72653,33.68978],[74.72782,33.68763],[74.73071,33.68775],[74.73555,33.68216],[74.72926,33.68258],[74.72786,33.67846],[74.72902,33.67437],[74.73753,33.66827],[74.73996,33.67034],[74.7486,33.67063],[74.77922,33.68122],[74.78705,33.68097],[74.78917,33.6792],[74.78919,33.67693],[74.78601,33.67502],[74.78648,33.66884],[74.77912,33.67141],[74.77641,33.66583],[74.7778,33.66199],[74.77728,33.6539],[74.78095,33.64746],[74.78921,33.65858],[74.79201,33.65832],[74.79484,33.65491],[74.80346,33.65417],[74.83001,33.65755],[74.83501,33.65536],[74.8493,33.64318],[74.87093,33.62791],[74.87331,33.62697],[74.88282,33.62965],[74.90005,33.64588],[74.90586,33.64753],[74.90405,33.65341],[74.91201,33.6544],[74.91621,33.6576],[74.90912,33.66835],[74.91574,33.66879],[74.92243,33.67145],[74.93023,33.67097],[74.93257,33.66974],[74.93469,33.6619],[74.93765,33.65946],[74.93932,33.66094],[74.94001,33.66901],[74.94255,33.67167],[74.94998,33.67473],[74.95719,33.68025],[74.96836,33.68474],[74.96002,33.68527],[74.96071,33.69626],[74.9628,33.69667],[74.9665,33.69315],[74.96784,33.69592],[74.96232,33.70398],[74.96097,33.70809],[74.96177,33.71066],[74.9602,33.71498],[74.95834,33.71565],[74.9556,33.72945],[74.95707,33.73364],[74.95199,33.7391],[74.95344,33.74243],[74.95797,33.74364],[74.96012,33.74179],[74.97251,33.73892],[74.97588,33.74075],[74.97784,33.74486],[74.9806,33.74535],[74.98771,33.7448],[74.99581,33.74171],[75.00021,33.74201],[75.0022,33.74571],[74.99565,33.74604],[74.99513,33.74797],[74.99937,33.75272],[75.01025,33.74864],[75.01468,33.73935],[75.01827,33.74035],[75.02479,33.7485],[75.02621,33.75413],[75.03038,33.75979],[75.03173,33.76928],[75.03742,33.77083],[75.03832,33.77319],[75.03007,33.77769],[75.02891,33.79019],[75.03029,33.79448],[75.04025,33.79831],[75.05053,33.79898],[75.05519,33.80675],[75.05542,33.81027],[75.05303,33.8125],[75.04842,33.81159],[75.05143,33.81381],[75.04982,33.81497],[75.04524,33.81249],[75.04024,33.81571],[75.03921,33.81439],[75.04217,33.81224],[75.0415,33.81076],[75.03479,33.81144],[75.02757,33.80864],[75.02317,33.81064],[75.01144,33.80927],[75.00069,33.81175],[75.0,33.80518],[75.00308,33.80099],[74.99616,33.79925],[74.98033,33.80944],[74.96609,33.79506],[74.94055,33.79141],[74.93494,33.79573],[74.93584,33.80284],[74.92701,33.80113],[74.92708,33.80369],[74.93405,33.80951],[74.92809,33.80951],[74.92596,33.81097],[74.92628,33.81417],[74.92154,33.8139],[74.91016,33.80596],[74.90652,33.80711],[74.90434,33.81026],[74.89995,33.8088],[74.89135,33.8023],[74.89284,33.79924],[74.89045,33.79661],[74.88619,33.79816],[74.87977,33.791],[74.87796,33.791],[74.87423,33.79589],[74.86224,33.79507],[74.85707,33.79849],[74.85717,33.80097],[74.86395,33.80647],[74.87751,33.81364],[74.87649,33.81737],[74.86329,33.81505]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"626","area_level":"District","area_name":"Ganderbal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.94767,34.46192],[74.94015,34.46405],[74.93749,34.46147],[74.93103,34.4614],[74.92969,34.45806],[74.9257,34.45606],[74.91471,34.45611],[74.8996,34.44837],[74.89926,34.4427],[74.89058,34.43163],[74.89137,34.41437],[74.89706,34.4047],[74.90891,34.40123],[74.90895,34.39993],[74.9055,34.3929],[74.89953,34.38958],[74.89832,34.38338],[74.89241,34.37533],[74.87302,34.36809],[74.86699,34.36928],[74.86233,34.36138],[74.85174,34.35863],[74.84902,34.35081],[74.8402,34.34666],[74.81362,34.34302],[74.80698,34.34404],[74.78914,34.34189],[74.78706,34.3397],[74.78626,34.33315],[74.77648,34.3289],[74.77396,34.32332],[74.76926,34.32348],[74.76704,34.31415],[74.75045,34.31578],[74.71206,34.2952],[74.68521,34.29344],[74.67241,34.29831],[74.6632,34.29859],[74.64841,34.26992],[74.64895,34.26267],[74.6553,34.26306],[74.65297,34.25],[74.68023,34.25],[74.67871,34.24747],[74.67044,34.24492],[74.66184,34.24657],[74.65857,34.24524],[74.65768,34.24387],[74.65903,34.2398],[74.65179,34.23349],[74.65264,34.22558],[74.65127,34.21611],[74.65324,34.21329],[74.6634,34.20715],[74.66578,34.20034],[74.67558,34.18442],[74.68402,34.18386],[74.69316,34.18561],[74.70973,34.17626],[74.72379,34.16557],[74.73479,34.16569],[74.74365,34.16065],[74.75103,34.16061],[74.7654,34.17422],[74.77103,34.17583],[74.79519,34.17553],[74.79903,34.17428],[74.80414,34.16356],[74.81759,34.16289],[74.81758,34.16632],[74.80946,34.17578],[74.80711,34.18286],[74.81755,34.18322],[74.82522,34.17526],[74.85168,34.17894],[74.85539,34.18226],[74.85768,34.19957],[74.86656,34.20512],[74.87065,34.20594],[74.87361,34.21222],[74.87666,34.20724],[74.8813,34.20874],[74.88152,34.20631],[74.88412,34.2038],[74.87823,34.20311],[74.87496,34.20056],[74.87602,34.19763],[74.8746,34.19511],[74.87815,34.19023],[74.88457,34.19038],[74.89094,34.19323],[74.89638,34.19121],[74.90526,34.19336],[74.90917,34.19899],[74.91155,34.19778],[74.91438,34.19907],[74.91587,34.20267],[74.91742,34.19961],[74.92049,34.20043],[74.92025,34.20411],[74.92293,34.20587],[74.92645,34.2035],[74.92625,34.19919],[74.92343,34.197],[74.92204,34.1928],[74.92046,34.19084],[74.91652,34.19005],[74.92034,34.18499],[74.92783,34.18402],[74.9248,34.18239],[74.92374,34.17894],[74.92021,34.17802],[74.91706,34.17913],[74.91039,34.17566],[74.91188,34.17354],[74.92373,34.17341],[74.92324,34.16835],[74.92593,34.16107],[74.93211,34.16192],[74.93372,34.15777],[74.93058,34.15371],[74.92659,34.15265],[74.92402,34.15553],[74.91816,34.15348],[74.91654,34.15704],[74.90502,34.15782],[74.9007,34.15221],[74.88806,34.14732],[74.88813,34.13961],[74.89266,34.13596],[74.89252,34.13201],[74.8894,34.13073],[74.8891,34.12912],[74.89497,34.12161],[74.89109,34.11926],[74.89353,34.11867],[74.89798,34.1061],[74.90181,34.104],[74.90294,34.09872],[74.90756,34.09773],[74.91189,34.09321],[74.91031,34.0921],[74.9003,34.09509],[74.89592,34.09302],[74.89186,34.09512],[74.88863,34.09487],[74.88828,34.09021],[74.89041,34.08662],[74.88793,34.08195],[74.88333,34.07958],[74.8784,34.08376],[74.87093,34.08264],[74.86763,34.07995],[74.86737,34.07372],[74.86196,34.07437],[74.86003,34.07152],[74.86958,34.05423],[74.8669,34.05227],[74.86715,34.0501],[74.87165,34.04886],[74.87543,34.04481],[74.88398,34.04332],[74.88817,34.04427],[74.89077,34.04768],[74.89435,34.04917],[74.89641,34.04887],[74.89786,34.04603],[74.91629,34.05095],[74.92293,34.05465],[74.91903,34.06102],[74.91669,34.06212],[74.92153,34.06093],[74.92739,34.06249],[74.92987,34.06534],[74.9305,34.06916],[74.93196,34.06913],[74.93274,34.06593],[74.93576,34.06576],[74.94103,34.06946],[74.9445,34.07652],[74.94644,34.0752],[74.94788,34.0784],[74.94947,34.07879],[74.94989,34.07427],[74.95488,34.07448],[74.95783,34.0722],[74.96316,34.07702],[74.9717,34.07667],[74.97282,34.08033],[74.97975,34.08168],[74.98193,34.0862],[74.97836,34.09056],[74.97632,34.09806],[74.98282,34.09679],[74.99087,34.09113],[74.99138,34.08573],[74.99555,34.08192],[75.0,34.08285],[75.00174,34.08171],[75.00136,34.07946],[74.983,34.07127],[74.97704,34.06498],[74.97702,34.05731],[74.97505,34.05446],[74.97908,34.05231],[74.97304,34.0523],[74.97885,34.04764],[74.98381,34.04621],[74.99243,34.0498],[74.99279,34.05863],[74.99733,34.06298],[75.00193,34.06445],[75.00556,34.07188],[75.01089,34.07688],[75.01531,34.08496],[75.02718,34.08565],[75.03503,34.08365],[75.03739,34.08697],[75.03799,34.09566],[75.04517,34.09473],[75.04859,34.09917],[75.05723,34.1031],[75.06059,34.10964],[75.069,34.10469],[75.08153,34.1011],[75.09449,34.10139],[75.10112,34.09696],[75.1097,34.0984],[75.11419,34.08906],[75.12541,34.09373],[75.1422,34.09523],[75.13852,34.10453],[75.13875,34.10791],[75.14254,34.1184],[75.14618,34.12197],[75.13792,34.13305],[75.13666,34.13974],[75.11367,34.15066],[75.10372,34.15136],[75.09662,34.15435],[75.10582,34.15913],[75.10329,34.16963],[75.10886,34.17068],[75.12693,34.16831],[75.12849,34.16924],[75.13316,34.1741],[75.13722,34.18331],[75.1254,34.19559],[75.13312,34.19998],[75.14592,34.20021],[75.15359,34.20697],[75.15962,34.20352],[75.17037,34.20332],[75.18186,34.19507],[75.18846,34.19635],[75.19291,34.20199],[75.19212,34.21252],[75.20372,34.22017],[75.2041,34.2251],[75.20687,34.2295],[75.21519,34.22859],[75.2232,34.23426],[75.23508,34.23386],[75.24309,34.24257],[75.24911,34.24279],[75.25965,34.2469],[75.26101,34.25244],[75.26317,34.25463],[75.276,34.24863],[75.28159,34.24832],[75.28297,34.25],[75.28768,34.24603],[75.28775,34.24181],[75.29271,34.23689],[75.31482,34.23312],[75.31797,34.23038],[75.31771,34.22767],[75.32402,34.22308],[75.32834,34.22234],[75.33065,34.22002],[75.33112,34.21633],[75.33386,34.21454],[75.34742,34.21377],[75.35185,34.21217],[75.36391,34.21293],[75.37839,34.20593],[75.39143,34.21307],[75.404,34.21761],[75.40408,34.22895],[75.41082,34.23788],[75.41492,34.2341],[75.42508,34.23108],[75.43254,34.22677],[75.44247,34.21778],[75.45152,34.21267],[75.45691,34.21058],[75.46056,34.21129],[75.46666,34.20849],[75.46965,34.216],[75.47493,34.22009],[75.49137,34.22472],[75.49365,34.2267],[75.49673,34.23926],[75.48858,34.24662],[75.48238,34.25506],[75.48379,34.2587],[75.48105,34.2624],[75.48295,34.26904],[75.48217,34.27165],[75.47485,34.27759],[75.47011,34.27939],[75.45918,34.27942],[75.45362,34.28592],[75.44424,34.28033],[75.43949,34.27949],[75.43737,34.28248],[75.43087,34.28357],[75.42612,34.28219],[75.42263,34.2839],[75.41922,34.28189],[75.41089,34.28469],[75.40458,34.28387],[75.39284,34.29708],[75.38892,34.30548],[75.38933,34.30952],[75.39605,34.31672],[75.38467,34.32824],[75.38398,34.33672],[75.37602,34.34195],[75.3859,34.35036],[75.38476,34.35402],[75.38051,34.3583],[75.38571,34.36614],[75.37338,34.3715],[75.37676,34.37567],[75.37878,34.38206],[75.37714,34.38714],[75.36697,34.39103],[75.36209,34.38715],[75.35489,34.38518],[75.35006,34.37811],[75.33878,34.3744],[75.33546,34.36846],[75.33489,34.36176],[75.33037,34.35723],[75.31999,34.35886],[75.31609,34.36572],[75.31169,34.36647],[75.30707,34.36407],[75.30128,34.3653],[75.29508,34.36424],[75.29107,34.36121],[75.28793,34.36306],[75.27277,34.3629],[75.26498,34.37105],[75.26362,34.37519],[75.25906,34.37618],[75.24702,34.37471],[75.23554,34.37],[75.23257,34.37383],[75.22187,34.3769],[75.21165,34.38535],[75.19977,34.3854],[75.19824,34.38343],[75.20049,34.38013],[75.20016,34.37782],[75.19568,34.37423],[75.19836,34.36718],[75.19197,34.35936],[75.18702,34.36044],[75.18398,34.35682],[75.17607,34.35274],[75.17251,34.35156],[75.16488,34.35295],[75.1606,34.34847],[75.14815,34.34483],[75.14361,34.34865],[75.1393,34.34927],[75.13804,34.35172],[75.13148,34.3502],[75.12825,34.35104],[75.12177,34.35765],[75.11939,34.36259],[75.11284,34.3647],[75.11291,34.36872],[75.10792,34.36896],[75.10391,34.37263],[75.09943,34.37079],[75.09052,34.37457],[75.08764,34.37864],[75.08522,34.37914],[75.07981,34.38549],[75.07598,34.38741],[75.07449,34.39095],[75.0715,34.39201],[75.07004,34.39461],[75.0728,34.39824],[75.06722,34.40407],[75.05565,34.40944],[75.04843,34.41019],[75.0442,34.41409],[75.03275,34.41511],[75.02293,34.42114],[75.01777,34.43028],[75.01788,34.43877],[75.00827,34.44049],[75.00799,34.44376],[74.99913,34.44171],[74.98828,34.44493],[74.96098,34.44553],[74.95838,34.44908],[74.9504,34.45264],[74.95018,34.46056],[74.94767,34.46192]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"627","area_level":"District","area_name":"Reasi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.70968,33.52554],[74.70415,33.52576],[74.69374,33.52098],[74.68898,33.51613],[74.6838,33.51439],[74.68262,33.50831],[74.67992,33.50492],[74.6706,33.50621],[74.65632,33.50563],[74.65251,33.509],[74.64975,33.51501],[74.64553,33.5099],[74.64225,33.50894],[74.64149,33.50297],[74.63123,33.50164],[74.62708,33.49796],[74.63017,33.49025],[74.63563,33.48651],[74.63577,33.48004],[74.63029,33.47788],[74.62905,33.47564],[74.62989,33.46817],[74.62758,33.46604],[74.62208,33.46688],[74.61963,33.46383],[74.60314,33.46581],[74.60218,33.45994],[74.61113,33.4507],[74.6191,33.44915],[74.61785,33.44569],[74.61947,33.44236],[74.62507,33.44353],[74.64595,33.4384],[74.65642,33.44115],[74.66184,33.43531],[74.66539,33.43525],[74.66838,33.43227],[74.66829,33.42494],[74.67249,33.41968],[74.67212,33.41425],[74.66623,33.405],[74.66547,33.40049],[74.66691,33.39438],[74.6744,33.39528],[74.67372,33.3926],[74.67013,33.38985],[74.67191,33.38469],[74.67105,33.38195],[74.67418,33.37935],[74.67525,33.37386],[74.67887,33.37118],[74.67681,33.36835],[74.6863,33.3612],[74.67401,33.35435],[74.67097,33.35044],[74.66618,33.35044],[74.66138,33.35322],[74.6581,33.35168],[74.64971,33.35206],[74.6483,33.34046],[74.65394,33.33642],[74.64808,33.32669],[74.65071,33.32206],[74.67026,33.30262],[74.66967,33.29512],[74.65815,33.28904],[74.65278,33.27687],[74.65248,33.27256],[74.67159,33.26395],[74.67636,33.26009],[74.67858,33.25419],[74.68449,33.25319],[74.69252,33.24812],[74.69175,33.237],[74.68936,33.23345],[74.689,33.21827],[74.68292,33.20696],[74.68311,33.20189],[74.68788,33.19631],[74.68195,33.19479],[74.67294,33.1964],[74.66433,33.19241],[74.66195,33.1852],[74.65578,33.18631],[74.65439,33.19488],[74.64406,33.19656],[74.63352,33.20197],[74.62811,33.20231],[74.62796,33.20396],[74.62214,33.2051],[74.61891,33.20228],[74.61142,33.20079],[74.6095,33.19362],[74.6081,33.19333],[74.60608,33.19546],[74.6031,33.19317],[74.60015,33.19834],[74.59633,33.20024],[74.5912,33.19973],[74.58292,33.20303],[74.57945,33.20179],[74.5683,33.20236],[74.56942,33.19883],[74.57377,33.19546],[74.573,33.19287],[74.57091,33.19436],[74.56134,33.19514],[74.55239,33.19059],[74.54823,33.19006],[74.54747,33.17979],[74.5384,33.18697],[74.5375,33.19316],[74.53158,33.19262],[74.52207,33.1871],[74.52131,33.18037],[74.52459,33.17555],[74.53922,33.17109],[74.54505,33.16487],[74.55302,33.16419],[74.55732,33.16659],[74.56152,33.16593],[74.56862,33.16221],[74.57212,33.15714],[74.58121,33.15367],[74.60238,33.15741],[74.60481,33.15402],[74.6074,33.15532],[74.61056,33.15391],[74.61189,33.15078],[74.62653,33.14689],[74.63019,33.14265],[74.62995,33.1395],[74.6242,33.1318],[74.61765,33.13123],[74.61578,33.12753],[74.61783,33.12332],[74.62223,33.11962],[74.62248,33.10968],[74.6281,33.10802],[74.6276,33.10559],[74.63068,33.1095],[74.63416,33.1087],[74.63055,33.10522],[74.62375,33.10464],[74.62306,33.10205],[74.63543,33.09373],[74.62821,33.09004],[74.62443,33.0921],[74.60427,33.09075],[74.59893,33.08179],[74.59912,33.07255],[74.59271,33.06907],[74.56289,33.06838],[74.56294,33.06048],[74.56498,33.05652],[74.56165,33.05317],[74.55767,33.05322],[74.55742,33.05153],[74.56097,33.04986],[74.56363,33.05063],[74.56393,33.04866],[74.56612,33.04864],[74.56634,33.04193],[74.57238,33.03],[74.57669,33.03371],[74.59521,33.03635],[74.60765,33.04013],[74.61367,33.03994],[74.63196,33.0489],[74.63901,33.05031],[74.64502,33.0494],[74.65843,33.0544],[74.66257,33.05144],[74.67525,33.05459],[74.67675,33.05712],[74.67667,33.06248],[74.67894,33.06138],[74.68154,33.06232],[74.68193,33.05948],[74.68564,33.05862],[74.68681,33.05471],[74.69511,33.05627],[74.69945,33.06099],[74.70311,33.05705],[74.70934,33.05898],[74.70858,33.05321],[74.71065,33.05195],[74.71854,33.05451],[74.72831,33.05325],[74.73119,33.05537],[74.72994,33.06038],[74.73783,33.06126],[74.74812,33.05878],[74.74917,33.05314],[74.75233,33.05156],[74.76863,33.05171],[74.77129,33.04936],[74.77073,33.0473],[74.77769,33.04189],[74.77677,33.03754],[74.77972,33.038],[74.79325,33.03433],[74.79265,33.02972],[74.80983,33.00741],[74.81394,33.00486],[74.81628,32.99965],[74.82334,32.99291],[74.82474,32.98692],[74.82797,32.98629],[74.83428,32.98034],[74.83735,32.98072],[74.83961,32.978],[74.84727,32.97725],[74.8502,32.97047],[74.85066,32.9577],[74.85404,32.95223],[74.85362,32.94626],[74.85157,32.94283],[74.85877,32.94665],[74.86292,32.94701],[74.86885,32.951],[74.87276,32.95057],[74.87445,32.95704],[74.87842,32.95952],[74.88214,32.95577],[74.88889,32.95453],[74.89127,32.94509],[74.89407,32.9404],[74.8935,32.92795],[74.89584,32.92423],[74.89768,32.92273],[74.90165,32.92477],[74.91059,32.9236],[74.91095,32.92014],[74.91843,32.9108],[74.91953,32.90527],[74.92342,32.89817],[74.93612,32.88724],[74.95164,32.89267],[74.94928,32.89918],[74.95353,32.89926],[74.96113,32.89613],[74.961,32.89887],[74.96401,32.90139],[74.9614,32.90544],[74.96141,32.91101],[74.95918,32.91096],[74.95273,32.92031],[74.95401,32.92232],[74.95402,32.9319],[74.96316,32.93186],[74.96211,32.933],[74.9629,32.94013],[74.96057,32.94433],[74.96162,32.94604],[74.95953,32.95132],[74.95981,32.95881],[74.95796,32.96047],[74.96157,32.96729],[74.96932,32.97263],[74.97669,32.97318],[74.98098,32.97581],[74.98795,32.9757],[74.99514,32.99374],[74.99527,32.99763],[74.99243,33.00174],[74.9958,33.00566],[74.99866,33.01479],[74.99678,33.01789],[74.9848,33.02677],[74.97622,33.02545],[74.97537,33.03],[74.96762,33.0296],[74.96449,33.03099],[74.96283,33.0393],[74.96511,33.04172],[74.9771,33.04813],[74.98879,33.05112],[74.99039,33.05723],[74.99877,33.06242],[74.98106,33.0739],[74.96963,33.07307],[74.97088,33.07789],[74.98799,33.09626],[75.00068,33.10272],[75.02196,33.10998],[75.03239,33.11736],[75.04032,33.12554],[75.04825,33.12997],[75.05939,33.12785],[75.06479,33.12839],[75.06892,33.12947],[75.07353,33.13322],[75.07705,33.14043],[75.07474,33.14146],[75.06932,33.13854],[75.06882,33.14213],[75.07189,33.14446],[75.06672,33.14649],[75.06564,33.14996],[75.06334,33.14755],[75.06128,33.14832],[75.06204,33.15109],[75.06019,33.1548],[75.06506,33.15593],[75.06936,33.1616],[75.07806,33.16465],[75.07628,33.17212],[75.08553,33.17659],[75.08886,33.18234],[75.09584,33.18814],[75.08834,33.19305],[75.07994,33.19555],[75.05856,33.1945],[75.04489,33.19734],[75.0213,33.21024],[75.00164,33.21714],[74.99531,33.21725],[74.98596,33.22178],[74.97194,33.22356],[74.96321,33.22911],[74.96356,33.23255],[74.97228,33.23853],[74.97095,33.24859],[74.96767,33.25118],[74.96539,33.25766],[74.9735,33.26301],[74.96434,33.28348],[74.95797,33.29381],[74.96398,33.30313],[74.96544,33.30997],[74.96988,33.31815],[74.97431,33.32372],[74.98647,33.3263],[74.99369,33.33723],[75.00832,33.3467],[75.0195,33.35797],[75.04264,33.36809],[75.04559,33.37071],[75.04406,33.37232],[75.04397,33.37635],[75.03431,33.38553],[75.03098,33.39425],[75.02626,33.39623],[75.02449,33.39987],[75.02027,33.40128],[75.01897,33.40412],[75.0137,33.40802],[75.01033,33.4176],[75.01203,33.42132],[75.02259,33.43209],[75.02613,33.43314],[75.02966,33.4386],[75.03286,33.43866],[75.03625,33.44231],[75.03101,33.45173],[75.02351,33.45657],[75.02172,33.46251],[75.02181,33.47191],[75.01639,33.47925],[75.01485,33.48515],[75.0179,33.49752],[75.02386,33.50403],[75.01439,33.5122],[75.00831,33.51058],[75.00458,33.50549],[74.99367,33.50896],[74.99243,33.51347],[74.96771,33.51509],[74.96384,33.51359],[74.95818,33.51405],[74.95459,33.51335],[74.95266,33.50976],[74.9525,33.49787],[74.94914,33.49798],[74.94059,33.49316],[74.92153,33.49916],[74.91684,33.49902],[74.91165,33.4921],[74.90534,33.49301],[74.90294,33.49163],[74.90219,33.48905],[74.89863,33.48775],[74.89718,33.4844],[74.89243,33.48269],[74.8807,33.48322],[74.87337,33.48602],[74.87004,33.48428],[74.86453,33.48421],[74.86292,33.47809],[74.85837,33.47457],[74.85078,33.47648],[74.84277,33.47637],[74.83857,33.4788],[74.83681,33.47425],[74.83137,33.46808],[74.82567,33.46792],[74.81377,33.47081],[74.79603,33.46792],[74.78893,33.47369],[74.79556,33.48018],[74.78843,33.48788],[74.78017,33.49028],[74.77114,33.48769],[74.75873,33.49072],[74.73978,33.50588],[74.73463,33.50648],[74.73033,33.51374],[74.71974,33.51746],[74.70968,33.52554]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"628","area_level":"District","area_name":"Anjaw","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[96.83502,28.36079],[96.79733,28.36244],[96.77692,28.36481],[96.77029,28.36703],[96.76154,28.3746],[96.75882,28.38358],[96.7568,28.39993],[96.74085,28.41381],[96.72726,28.42208],[96.70428,28.42696],[96.68179,28.43563],[96.65816,28.45272],[96.64114,28.45779],[96.62176,28.45483],[96.5869,28.45567],[96.57075,28.45232],[96.52689,28.42318],[96.50538,28.41098],[96.49346,28.41055],[96.4713,28.41583],[96.45713,28.41382],[96.43429,28.38731],[96.42769,28.37565],[96.4246,28.36382],[96.42362,28.35119],[96.41738,28.34094],[96.39548,28.33592],[96.39212,28.33869],[96.38827,28.34723],[96.37191,28.36165],[96.36793,28.34533],[96.37018,28.33576],[96.37499,28.32668],[96.37464,28.3208],[96.37942,28.3116],[96.38121,28.30239],[96.38465,28.29888],[96.37997,28.29119],[96.38184,28.28767],[96.38015,28.28367],[96.38061,28.27499],[96.3727,28.26986],[96.36845,28.25443],[96.37671,28.24575],[96.37995,28.23911],[96.38838,28.23548],[96.39215,28.22545],[96.39214,28.22003],[96.39532,28.21579],[96.39435,28.2035],[96.40067,28.19339],[96.41246,28.18131],[96.41616,28.17956],[96.41801,28.16883],[96.4155,28.1655],[96.40126,28.16063],[96.38947,28.15263],[96.38902,28.14888],[96.39175,28.13956],[96.38758,28.13302],[96.3888,28.1267],[96.36769,28.11937],[96.36961,28.11366],[96.36679,28.10789],[96.36717,28.09882],[96.36249,28.09326],[96.3667,28.08967],[96.37365,28.07937],[96.37846,28.06819],[96.37823,28.06537],[96.38218,28.06065],[96.38608,28.05158],[96.38625,28.04754],[96.38373,28.03873],[96.38485,28.03445],[96.37717,28.02552],[96.37685,28.00749],[96.37604,28.00591],[96.36277,28.00065],[96.37143,27.99746],[96.37627,27.99201],[96.37959,27.99057],[96.389,27.99032],[96.39274,27.98779],[96.39344,27.98461],[96.39098,27.98079],[96.39158,27.97879],[96.39717,27.97622],[96.39923,27.97177],[96.40796,27.96731],[96.40953,27.95514],[96.41717,27.94288],[96.41446,27.93576],[96.42092,27.93063],[96.42072,27.92701],[96.42769,27.91656],[96.43945,27.91837],[96.44244,27.91542],[96.44561,27.9149],[96.44902,27.90959],[96.45394,27.90969],[96.46551,27.90312],[96.47098,27.90555],[96.4735,27.90525],[96.47515,27.90296],[96.47964,27.90459],[96.48633,27.90294],[96.49337,27.90353],[96.49626,27.90535],[96.5036,27.9043],[96.51533,27.89898],[96.5179,27.8954],[96.52797,27.90009],[96.53555,27.89897],[96.54683,27.9014],[96.55232,27.91385],[96.55954,27.91219],[96.58213,27.9207],[96.58838,27.91542],[96.58826,27.91191],[96.59863,27.90916],[96.60312,27.90362],[96.60846,27.90086],[96.61052,27.89618],[96.61651,27.89335],[96.61814,27.88214],[96.63508,27.88004],[96.65223,27.86998],[96.66242,27.86653],[96.6727,27.85027],[96.67913,27.84757],[96.6811,27.82984],[96.69412,27.82709],[96.7053,27.82724],[96.71054,27.8244],[96.71341,27.81529],[96.71011,27.81204],[96.71303,27.80187],[96.71218,27.79996],[96.71661,27.79313],[96.71463,27.78897],[96.7191,27.78423],[96.70145,27.77681],[96.70859,27.77121],[96.71051,27.7657],[96.70935,27.76226],[96.70443,27.75743],[96.70192,27.75073],[96.69632,27.74486],[96.70023,27.74069],[96.70068,27.73443],[96.71138,27.72263],[96.7125,27.71592],[96.71122,27.71247],[96.71645,27.70412],[96.7118,27.69862],[96.71054,27.69383],[96.71135,27.68877],[96.70689,27.68237],[96.70827,27.67492],[96.70559,27.6701],[96.69916,27.66392],[96.70558,27.65067],[96.71041,27.64845],[96.72696,27.64731],[96.73257,27.64156],[96.74666,27.6326],[96.7565,27.62127],[96.76838,27.61614],[96.77333,27.62349],[96.77399,27.63111],[96.77939,27.64059],[96.7827,27.64247],[96.79142,27.6399],[96.80241,27.6325],[96.80738,27.63146],[96.81291,27.63315],[96.82595,27.63272],[96.83001,27.62878],[96.84887,27.624],[96.85591,27.62946],[96.86135,27.63092],[96.88316,27.62396],[96.8963,27.61537],[96.90016,27.61466],[96.90711,27.61643],[96.91676,27.62507],[96.94172,27.66074],[96.98306,27.66428],[96.99788,27.69181],[97.03616,27.74239],[97.04261,27.74662],[97.05604,27.74191],[97.06443,27.74725],[97.06952,27.74701],[97.07724,27.74113],[97.08488,27.73861],[97.09078,27.73832],[97.09385,27.74009],[97.09883,27.74679],[97.10246,27.75786],[97.10184,27.76531],[97.104,27.76975],[97.11343,27.77432],[97.11909,27.78338],[97.13254,27.78775],[97.14569,27.80458],[97.16463,27.81059],[97.16956,27.81633],[97.17313,27.82621],[97.18413,27.83429],[97.18847,27.84365],[97.2196,27.86366],[97.23303,27.87616],[97.24902,27.8993],[97.25791,27.90364],[97.27116,27.90442],[97.309,27.91499],[97.31323,27.91382],[97.31581,27.90341],[97.32531,27.89599],[97.33925,27.89075],[97.35708,27.87885],[97.36835,27.87829],[97.37359,27.88018],[97.37978,27.8971],[97.37732,27.91349],[97.38074,27.92481],[97.37641,27.93292],[97.37719,27.94102],[97.38241,27.95104],[97.37393,27.96176],[97.37298,27.96803],[97.39129,27.98888],[97.3926,28.00102],[97.41012,28.00517],[97.41251,28.00887],[97.4129,28.01484],[97.40996,28.01953],[97.40442,28.02148],[97.40382,28.02463],[97.39735,28.02902],[97.38714,28.02953],[97.37568,28.04016],[97.37532,28.04711],[97.38012,28.05477],[97.38095,28.05927],[97.37748,28.05993],[97.36076,28.05574],[97.32578,28.0527],[97.31747,28.0579],[97.31136,28.06777],[97.31043,28.07452],[97.31564,28.08431],[97.3226,28.0921],[97.3306,28.09911],[97.34226,28.10428],[97.34724,28.11049],[97.34614,28.11437],[97.32975,28.12835],[97.32439,28.13746],[97.32444,28.14249],[97.3279,28.15021],[97.34482,28.16157],[97.35658,28.17247],[97.3598,28.18499],[97.36385,28.18909],[97.37759,28.18864],[97.40281,28.18187],[97.40104,28.19225],[97.38956,28.20694],[97.37837,28.21779],[97.3366,28.23638],[97.31544,28.24772],[97.29526,28.26188],[97.28494,28.26526],[97.27205,28.26661],[97.25175,28.26594],[97.23946,28.26822],[97.23036,28.27393],[97.22671,28.28463],[97.20933,28.28763],[97.18368,28.28362],[97.1711,28.28567],[97.1645,28.29245],[97.15483,28.31086],[97.14046,28.32758],[97.12778,28.3368],[97.10569,28.34696],[97.08131,28.35052],[97.07531,28.34961],[97.06484,28.34198],[97.04789,28.33897],[97.02677,28.3206],[97.01182,28.31031],[96.99685,28.30408],[96.98761,28.30333],[96.97879,28.31403],[96.96323,28.32026],[96.95318,28.32839],[96.93655,28.33515],[96.92584,28.33685],[96.91381,28.35703],[96.90399,28.36921],[96.88967,28.37849],[96.86357,28.37157],[96.85118,28.3633],[96.83502,28.36079]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"629","area_level":"District","area_name":"Pratapgarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.59663,24.51202],[74.59013,24.51276],[74.58394,24.51085],[74.58113,24.49869],[74.56701,24.49195],[74.56443,24.48905],[74.56529,24.46504],[74.55692,24.42768],[74.53324,24.42334],[74.51844,24.42245],[74.51738,24.40939],[74.51558,24.40918],[74.52069,24.39239],[74.52373,24.39042],[74.52178,24.38305],[74.52355,24.3753],[74.53232,24.35875],[74.53145,24.35381],[74.52531,24.34696],[74.52493,24.34128],[74.5267,24.33296],[74.53225,24.32737],[74.53421,24.32017],[74.53272,24.31349],[74.52475,24.31202],[74.52305,24.31037],[74.52513,24.29442],[74.5281,24.28578],[74.52461,24.28456],[74.51825,24.28619],[74.51795,24.2798],[74.51152,24.27221],[74.51008,24.26782],[74.5,24.2624],[74.49531,24.25719],[74.48883,24.23474],[74.48512,24.23302],[74.48487,24.22628],[74.47814,24.22592],[74.47692,24.21889],[74.47214,24.22068],[74.46836,24.2177],[74.45835,24.21952],[74.45502,24.22402],[74.45327,24.23249],[74.44618,24.23791],[74.44133,24.23899],[74.43866,24.24691],[74.43607,24.24799],[74.43228,24.25306],[74.43054,24.25276],[74.432,24.25562],[74.43097,24.25709],[74.424,24.25197],[74.40536,24.24974],[74.38311,24.2417],[74.37331,24.23204],[74.37391,24.22244],[74.3789,24.21491],[74.38875,24.2079],[74.39748,24.19754],[74.393,24.18862],[74.37926,24.17145],[74.37322,24.16991],[74.36918,24.1712],[74.35684,24.16674],[74.34886,24.16937],[74.33703,24.17739],[74.33105,24.17943],[74.32652,24.18685],[74.30049,24.19635],[74.30462,24.19188],[74.29363,24.19231],[74.28252,24.19773],[74.27494,24.19551],[74.26377,24.20049],[74.26342,24.20261],[74.24952,24.20489],[74.23922,24.20295],[74.2399,24.20664],[74.22717,24.19881],[74.21932,24.19932],[74.19962,24.21675],[74.18771,24.21859],[74.17049,24.21693],[74.18602,24.20087],[74.192,24.20274],[74.19447,24.20836],[74.19676,24.20829],[74.19865,24.2075],[74.19802,24.20193],[74.204,24.20063],[74.21032,24.19553],[74.21636,24.19475],[74.21769,24.18903],[74.22342,24.18097],[74.22457,24.1746],[74.22846,24.16981],[74.22763,24.16666],[74.23299,24.16029],[74.23531,24.15482],[74.25266,24.14889],[74.25873,24.14369],[74.26179,24.12709],[74.26404,24.1241],[74.25644,24.11696],[74.25327,24.12072],[74.25193,24.11778],[74.24765,24.11834],[74.24459,24.1134],[74.23549,24.10571],[74.23057,24.10555],[74.2238,24.09847],[74.22457,24.09396],[74.23312,24.07995],[74.23494,24.07067],[74.24534,24.05935],[74.25467,24.05849],[74.26418,24.04318],[74.26973,24.02286],[74.2627,24.01313],[74.26043,23.99909],[74.25669,23.99107],[74.25106,23.98558],[74.24154,23.98006],[74.24472,23.97206],[74.27169,23.95036],[74.27447,23.95555],[74.28134,23.95743],[74.29483,23.9536],[74.29793,23.95642],[74.30038,23.96257],[74.30456,23.95826],[74.30903,23.94741],[74.31362,23.94555],[74.31733,23.94142],[74.33249,23.93939],[74.33799,23.93488],[74.34872,23.93422],[74.35304,23.93573],[74.35637,23.93318],[74.36368,23.93607],[74.36503,23.93251],[74.37238,23.92483],[74.38085,23.90524],[74.39419,23.90238],[74.40213,23.90244],[74.41326,23.90914],[74.42827,23.90498],[74.43292,23.9052],[74.43582,23.90672],[74.44247,23.9159],[74.44743,23.92003],[74.47247,23.92508],[74.47803,23.9247],[74.48364,23.92089],[74.49253,23.8968],[74.50468,23.88975],[74.51954,23.884],[74.52312,23.88048],[74.5247,23.86804],[74.52194,23.85896],[74.51487,23.84749],[74.51411,23.8395],[74.51751,23.83315],[74.52256,23.82975],[74.54151,23.82843],[74.54212,23.81911],[74.54394,23.81519],[74.54262,23.80597],[74.55457,23.80486],[74.55422,23.79288],[74.55613,23.78674],[74.55602,23.78057],[74.55192,23.76424],[74.55168,23.75698],[74.55674,23.74044],[74.5548,23.73638],[74.55009,23.73528],[74.53276,23.73616],[74.52604,23.73065],[74.53348,23.70686],[74.52951,23.69086],[74.53309,23.67389],[74.53093,23.66722],[74.51675,23.64569],[74.5155,23.6401],[74.51779,23.63493],[74.52721,23.63257],[74.53936,23.63402],[74.54386,23.63215],[74.54874,23.64094],[74.55826,23.64078],[74.5668,23.63813],[74.57518,23.63962],[74.58381,23.63891],[74.58629,23.64178],[74.59127,23.64261],[74.60121,23.64107],[74.60597,23.64499],[74.60894,23.65411],[74.61403,23.65543],[74.6184,23.65477],[74.6241,23.65134],[74.62415,23.64808],[74.63449,23.64356],[74.64335,23.64477],[74.64476,23.64593],[74.64689,23.65885],[74.64851,23.65543],[74.65198,23.65615],[74.65216,23.65841],[74.64935,23.66145],[74.65325,23.67653],[74.65673,23.67686],[74.66074,23.67398],[74.66469,23.67453],[74.66589,23.66835],[74.67461,23.66442],[74.67689,23.65901],[74.69083,23.65823],[74.69068,23.65252],[74.69727,23.63801],[74.70336,23.63008],[74.71268,23.62298],[74.71714,23.61743],[74.72386,23.61439],[74.7343,23.61778],[74.74394,23.61294],[74.76381,23.59765],[74.77054,23.58688],[74.76919,23.58134],[74.76236,23.57177],[74.77112,23.55094],[74.77092,23.54239],[74.79411,23.55088],[74.79901,23.5381],[74.8033,23.53308],[74.80648,23.53813],[74.81032,23.54082],[74.81807,23.54237],[74.82212,23.54085],[74.82923,23.55055],[74.84029,23.54988],[74.84698,23.552],[74.84663,23.55406],[74.84878,23.5544],[74.84846,23.55607],[74.85089,23.55876],[74.85012,23.56068],[74.85252,23.56415],[74.85351,23.57099],[74.85691,23.57393],[74.86827,23.57417],[74.87137,23.57827],[74.87336,23.5769],[74.87331,23.58159],[74.8709,23.58552],[74.86991,23.59193],[74.87985,23.59522],[74.88208,23.60618],[74.88468,23.60663],[74.88506,23.6081],[74.89361,23.6095],[74.89776,23.6161],[74.90165,23.61758],[74.90087,23.61863],[74.90363,23.62314],[74.90294,23.6251],[74.90679,23.62446],[74.91003,23.62222],[74.91107,23.61916],[74.91499,23.61811],[74.92444,23.61999],[74.92746,23.6219],[74.92735,23.62525],[74.93654,23.62877],[74.9361,23.63958],[74.92841,23.64155],[74.92401,23.65065],[74.92429,23.65721],[74.92168,23.66649],[74.91754,23.66941],[74.90801,23.6711],[74.9071,23.67458],[74.90384,23.67474],[74.9042,23.68014],[74.89946,23.6822],[74.89959,23.68402],[74.91772,23.69065],[74.92159,23.69465],[74.9183,23.70563],[74.92014,23.71107],[74.92023,23.71918],[74.92445,23.7184],[74.92658,23.72021],[74.92526,23.7234],[74.92798,23.72406],[74.92862,23.72801],[74.93638,23.72958],[74.9351,23.73284],[74.93177,23.73434],[74.92996,23.7401],[74.93032,23.74956],[74.92633,23.7517],[74.92452,23.75639],[74.93425,23.75792],[74.9404,23.76474],[74.93882,23.77013],[74.93531,23.77329],[74.93199,23.7842],[74.92848,23.78789],[74.92434,23.79662],[74.90371,23.79431],[74.90389,23.79849],[74.90676,23.80444],[74.90638,23.81583],[74.90854,23.82293],[74.91159,23.82614],[74.9089,23.83572],[74.91384,23.84168],[74.9124,23.84595],[74.90601,23.84807],[74.90367,23.85274],[74.90404,23.86925],[74.90262,23.87295],[74.90819,23.88162],[74.91049,23.90629],[74.91292,23.91107],[74.9209,23.91909],[74.92121,23.92413],[74.91621,23.92989],[74.91651,23.93175],[74.92824,23.9394],[74.92907,23.95444],[74.93075,23.95699],[74.9472,23.9626],[74.95914,23.97216],[74.96272,23.97874],[74.9625,23.98918],[74.96469,23.99583],[74.96315,23.99807],[74.96339,24.0022],[74.96482,24.00594],[74.97226,24.01326],[74.97647,24.02063],[74.9823,24.02541],[74.97895,24.03125],[74.97817,24.03666],[74.97657,24.03605],[74.97382,24.03979],[74.97144,24.03854],[74.9692,24.04038],[74.96057,24.03884],[74.96006,24.04603],[74.95535,24.04696],[74.95531,24.0486],[74.94579,24.0495],[74.93934,24.05392],[74.9382,24.06308],[74.94068,24.06992],[74.93239,24.07429],[74.92747,24.07439],[74.9209,24.07754],[74.92088,24.08024],[74.91874,24.08099],[74.92066,24.08685],[74.9177,24.09093],[74.91817,24.09806],[74.9152,24.10262],[74.90847,24.10462],[74.90352,24.1093],[74.90824,24.12124],[74.90124,24.12604],[74.90207,24.13899],[74.8954,24.15306],[74.89611,24.15795],[74.89064,24.16262],[74.88974,24.16545],[74.8865,24.16572],[74.88473,24.16994],[74.8821,24.17028],[74.88171,24.1731],[74.87975,24.17361],[74.8845,24.18224],[74.89053,24.18772],[74.89447,24.19019],[74.89903,24.19067],[74.90235,24.19723],[74.907,24.20066],[74.91034,24.21011],[74.90577,24.21305],[74.89802,24.21434],[74.8971,24.22729],[74.88714,24.22969],[74.87792,24.23782],[74.86758,24.24309],[74.85178,24.23674],[74.83926,24.23727],[74.83332,24.23986],[74.82328,24.23982],[74.81082,24.24418],[74.79504,24.24316],[74.78687,24.23975],[74.77483,24.23871],[74.76222,24.24118],[74.75874,24.24328],[74.75432,24.24217],[74.75435,24.24455],[74.74711,24.25347],[74.74918,24.25841],[74.76728,24.27407],[74.77461,24.27805],[74.77515,24.28242],[74.78132,24.28917],[74.78075,24.30599],[74.78366,24.31451],[74.78314,24.31935],[74.77886,24.32386],[74.78118,24.33834],[74.79089,24.34486],[74.79406,24.35126],[74.80199,24.35855],[74.80107,24.36437],[74.80842,24.37655],[74.80726,24.38083],[74.81096,24.38254],[74.81731,24.37949],[74.82259,24.37959],[74.82492,24.38826],[74.82519,24.40002],[74.83024,24.40152],[74.83498,24.40649],[74.83977,24.40814],[74.8474,24.4204],[74.8551,24.42414],[74.85379,24.43628],[74.85523,24.4409],[74.85387,24.44453],[74.85141,24.4456],[74.84713,24.44244],[74.84136,24.44101],[74.83393,24.44318],[74.83188,24.4421],[74.83228,24.43836],[74.83009,24.43514],[74.81375,24.43674],[74.81899,24.45269],[74.82176,24.45311],[74.81535,24.46847],[74.80618,24.4671],[74.78694,24.47224],[74.77714,24.4605],[74.76942,24.46321],[74.76566,24.46677],[74.75012,24.4667],[74.74815,24.46992],[74.74609,24.46978],[74.74432,24.47372],[74.7317,24.4808],[74.72795,24.48908],[74.72036,24.48916],[74.70225,24.48583],[74.69663,24.48203],[74.69077,24.48201],[74.68528,24.48807],[74.67577,24.49293],[74.65622,24.49286],[74.65204,24.4922],[74.65007,24.4901],[74.64582,24.49844],[74.63999,24.49782],[74.64241,24.48612],[74.63312,24.48215],[74.62883,24.47837],[74.62884,24.47551],[74.62243,24.48304],[74.62367,24.48638],[74.62181,24.49374],[74.62307,24.50044],[74.61963,24.50525],[74.61014,24.50862],[74.60819,24.51269],[74.60341,24.51042],[74.59663,24.51202]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"63","area_level":"District","area_name":"Hisar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.94347,29.57496],[75.93959,29.58002],[75.93482,29.58024],[75.92812,29.57756],[75.92447,29.57176],[75.92296,29.5628],[75.91639,29.55405],[75.89453,29.5578],[75.89419,29.55348],[75.89713,29.54689],[75.89571,29.54671],[75.89698,29.54569],[75.89427,29.53635],[75.87669,29.53779],[75.87244,29.54517],[75.87207,29.55577],[75.85872,29.55072],[75.85363,29.54484],[75.85227,29.53924],[75.85506,29.53631],[75.85456,29.52588],[75.84795,29.52035],[75.83976,29.50982],[75.8342,29.50849],[75.82432,29.51136],[75.81636,29.51814],[75.80542,29.52145],[75.80188,29.52101],[75.79878,29.51544],[75.78784,29.51813],[75.78132,29.51214],[75.76185,29.50657],[75.75487,29.49462],[75.75183,29.48028],[75.75583,29.47686],[75.77233,29.44719],[75.781,29.43746],[75.77161,29.415],[75.76846,29.41505],[75.75684,29.40873],[75.75404,29.40499],[75.7381,29.39644],[75.72417,29.40501],[75.73069,29.41735],[75.71951,29.42501],[75.71668,29.42899],[75.7105,29.43038],[75.70137,29.42438],[75.69436,29.42564],[75.66034,29.42498],[75.64628,29.42053],[75.63854,29.4146],[75.63651,29.41643],[75.63088,29.41671],[75.62403,29.40941],[75.62393,29.40714],[75.62157,29.40787],[75.62011,29.40327],[75.61609,29.40322],[75.61414,29.38768],[75.61656,29.38446],[75.61542,29.37143],[75.60928,29.37168],[75.60257,29.36938],[75.5955,29.36056],[75.59925,29.35897],[75.60461,29.35344],[75.60499,29.3445],[75.60061,29.33797],[75.59042,29.33686],[75.58764,29.33765],[75.58474,29.342],[75.58438,29.35329],[75.58212,29.35734],[75.57236,29.35976],[75.5601,29.35683],[75.55988,29.36074],[75.52973,29.36265],[75.52451,29.37076],[75.51656,29.39805],[75.49806,29.39502],[75.48279,29.39017],[75.47596,29.38371],[75.46741,29.36661],[75.46937,29.36173],[75.4738,29.35882],[75.44969,29.35321],[75.44732,29.35791],[75.44081,29.36467],[75.43888,29.36978],[75.42783,29.36865],[75.42741,29.36333],[75.42361,29.35536],[75.41579,29.34612],[75.40051,29.34173],[75.39848,29.33674],[75.39851,29.31775],[75.38147,29.31265],[75.35784,29.3099],[75.35532,29.30811],[75.35359,29.29963],[75.3505,29.29742],[75.34802,29.29227],[75.34709,29.28291],[75.34064,29.28077],[75.34032,29.27347],[75.33865,29.27345],[75.34004,29.26634],[75.33991,29.26346],[75.33846,29.26347],[75.33963,29.25977],[75.33843,29.25886],[75.3396,29.25686],[75.33874,29.25197],[75.33565,29.24796],[75.33585,29.24427],[75.33431,29.24415],[75.33389,29.24116],[75.32812,29.23531],[75.33116,29.23195],[75.34198,29.22959],[75.34984,29.22377],[75.35589,29.22301],[75.36129,29.22941],[75.36085,29.23944],[75.36235,29.24443],[75.3753,29.25535],[75.37729,29.25471],[75.37802,29.25683],[75.38518,29.25802],[75.38861,29.26124],[75.39266,29.26135],[75.40547,29.26054],[75.40607,29.25701],[75.40719,29.2583],[75.4107,29.25548],[75.41199,29.24275],[75.40868,29.24189],[75.40776,29.236],[75.40878,29.23506],[75.40526,29.23151],[75.40498,29.22818],[75.40208,29.2271],[75.4023,29.22243],[75.39801,29.22349],[75.39682,29.21754],[75.40293,29.21324],[75.40858,29.21331],[75.40737,29.21107],[75.41102,29.20746],[75.41228,29.19682],[75.41132,29.19392],[75.41179,29.19114],[75.41407,29.18939],[75.41294,29.18772],[75.41438,29.18431],[75.4127,29.18159],[75.40945,29.18021],[75.40588,29.17289],[75.40677,29.16975],[75.39526,29.16775],[75.38125,29.16895],[75.38137,29.15278],[75.3797,29.1508],[75.37874,29.14223],[75.37437,29.14278],[75.37338,29.14127],[75.37117,29.14157],[75.37118,29.14],[75.37501,29.13521],[75.38439,29.12947],[75.40216,29.1279],[75.40578,29.1198],[75.39387,29.11007],[75.39211,29.10199],[75.3938,29.0982],[75.39693,29.09758],[75.39574,29.09321],[75.39285,29.09285],[75.39099,29.08538],[75.39262,29.08477],[75.3927,29.07845],[75.39421,29.07824],[75.39469,29.07596],[75.39126,29.06273],[75.4106,29.06223],[75.43145,29.05631],[75.44182,29.05754],[75.44386,29.05223],[75.44217,29.05096],[75.4432,29.04804],[75.44622,29.04857],[75.44672,29.04554],[75.45193,29.03917],[75.45045,29.03539],[75.44713,29.03516],[75.44787,29.03044],[75.44632,29.03],[75.44495,29.02438],[75.44295,29.02309],[75.44295,29.02092],[75.44569,29.01797],[75.44572,29.00832],[75.45991,29.01437],[75.4629,29.01247],[75.47261,29.01431],[75.48659,29.012],[75.49776,29.01277],[75.51558,29.00826],[75.522,29.00375],[75.52039,29.00365],[75.52077,29.0],[75.52337,28.99102],[75.52685,28.98532],[75.52726,28.97045],[75.54813,28.96638],[75.56495,28.9805],[75.5792,28.98167],[75.57986,28.98419],[75.58259,28.98595],[75.58292,28.98318],[75.58638,28.98267],[75.59675,28.9899],[75.61323,28.9866],[75.62024,28.98358],[75.62818,28.97624],[75.63061,28.97784],[75.62971,28.97314],[75.63155,28.97043],[75.63605,28.96887],[75.63615,28.96274],[75.63929,28.96152],[75.6403,28.95668],[75.63792,28.9539],[75.6392,28.95374],[75.64073,28.94917],[75.64416,28.94858],[75.64339,28.94656],[75.64619,28.94589],[75.64791,28.93766],[75.65364,28.93641],[75.65872,28.93977],[75.6624,28.93805],[75.66745,28.9296],[75.67176,28.92773],[75.67397,28.91929],[75.68241,28.91094],[75.6952,28.90587],[75.71425,28.90318],[75.72816,28.90518],[75.75154,28.90529],[75.76888,28.89862],[75.77134,28.89955],[75.77756,28.91213],[75.77785,28.9181],[75.79175,28.92519],[75.79975,28.92575],[75.81129,28.91912],[75.81384,28.91562],[75.83208,28.91154],[75.8378,28.91287],[75.84758,28.92095],[75.85895,28.9366],[75.85316,28.95261],[75.86289,28.95943],[75.87046,28.96707],[75.87792,28.97098],[75.88402,28.98144],[75.88578,28.9882],[75.89573,28.98601],[75.89838,28.99745],[75.89733,29.00365],[75.90453,29.01715],[75.91078,29.02114],[75.92232,29.02305],[75.94748,29.0089],[75.95017,29.00462],[75.9559,29.0042],[75.95903,29.0],[75.97935,28.99535],[75.97723,29.01386],[75.97838,29.03087],[75.97459,29.03197],[75.97343,29.04304],[75.96779,29.05817],[75.96895,29.06024],[75.96798,29.06293],[75.97592,29.06719],[75.98379,29.08134],[75.99036,29.077],[76.0,29.06727],[76.01183,29.06029],[76.02217,29.06189],[76.02776,29.06444],[76.03896,29.06127],[76.04413,29.06593],[76.0453,29.06222],[76.04369,29.05787],[76.04358,29.0454],[76.04503,29.03829],[76.05233,29.02993],[76.0648,29.02351],[76.07498,29.02292],[76.07558,29.03329],[76.07776,29.03788],[76.0812,29.04186],[76.08766,29.04489],[76.09766,29.04592],[76.09815,29.04718],[76.13157,29.03512],[76.13718,29.04542],[76.15039,29.04411],[76.16661,29.0507],[76.19025,29.05141],[76.20081,29.04147],[76.20102,29.03507],[76.20669,29.02976],[76.20285,29.02795],[76.198,29.01925],[76.1964,29.01911],[76.20257,29.01173],[76.20154,29.00692],[76.20908,29.00266],[76.20962,28.99999],[76.21707,28.99454],[76.22947,28.98931],[76.23548,28.99757],[76.23534,29.0],[76.24662,29.00468],[76.24517,29.01137],[76.25088,29.02497],[76.24383,29.03713],[76.24317,29.04219],[76.23944,29.04643],[76.23959,29.0523],[76.24475,29.06097],[76.25315,29.05989],[76.25628,29.0639],[76.25825,29.06299],[76.26565,29.06498],[76.27115,29.06504],[76.27184,29.06357],[76.27503,29.06335],[76.27848,29.06596],[76.28317,29.06424],[76.28602,29.06931],[76.29228,29.07343],[76.29898,29.08508],[76.30139,29.08597],[76.30188,29.09564],[76.31515,29.10935],[76.31809,29.11706],[76.31021,29.12034],[76.3052,29.1268],[76.30573,29.14264],[76.30317,29.14484],[76.29847,29.15548],[76.29543,29.17749],[76.30013,29.17734],[76.29828,29.18285],[76.30014,29.18813],[76.29282,29.19253],[76.28996,29.19944],[76.28052,29.20873],[76.2742,29.20721],[76.26898,29.20899],[76.25912,29.20733],[76.24798,29.21259],[76.23689,29.21357],[76.22496,29.21913],[76.22328,29.22326],[76.22807,29.23883],[76.21155,29.24797],[76.21465,29.25332],[76.21357,29.25621],[76.20621,29.25935],[76.20282,29.26354],[76.20711,29.26518],[76.20214,29.27023],[76.19813,29.27776],[76.1867,29.28608],[76.18831,29.2918],[76.19567,29.29889],[76.19847,29.30558],[76.20931,29.31932],[76.20397,29.32318],[76.20182,29.32684],[76.19137,29.33102],[76.1778,29.34063],[76.19813,29.3601],[76.20666,29.36454],[76.20699,29.37139],[76.20547,29.37382],[76.20654,29.38113],[76.20304,29.3859],[76.20313,29.39585],[76.19907,29.39757],[76.19876,29.4025],[76.19156,29.41006],[76.18409,29.41313],[76.16694,29.41352],[76.16139,29.4185],[76.15726,29.42002],[76.15326,29.41853],[76.15304,29.41429],[76.1429,29.40931],[76.14176,29.40542],[76.13581,29.40002],[76.1318,29.3901],[76.12651,29.39342],[76.11777,29.40363],[76.11219,29.4064],[76.10709,29.40708],[76.0992,29.40404],[76.0936,29.40375],[76.08435,29.41125],[76.0812,29.42292],[76.08242,29.42475],[76.08028,29.42961],[76.08288,29.43658],[76.08008,29.43855],[76.08071,29.44013],[76.07674,29.44146],[76.0511,29.43988],[76.04472,29.43233],[76.0398,29.43064],[76.036,29.42711],[76.02957,29.42734],[76.02732,29.42263],[76.02457,29.42372],[76.02312,29.42614],[76.01993,29.42735],[76.01937,29.4375],[76.01189,29.4425],[76.00591,29.44232],[76.00571,29.44496],[75.99604,29.44713],[75.99876,29.46072],[76.00452,29.46251],[76.01378,29.48068],[76.00566,29.48656],[75.98816,29.48883],[75.98154,29.49199],[75.97553,29.49198],[75.96064,29.49719],[75.95737,29.4973],[75.94978,29.49408],[75.93301,29.49908],[75.93422,29.5062],[75.93828,29.51283],[75.94946,29.51736],[75.96012,29.53793],[75.95937,29.54204],[75.96353,29.55278],[75.96318,29.56272],[75.95322,29.5697],[75.94927,29.57043],[75.94642,29.57528],[75.94347,29.57496]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"630","area_level":"District","area_name":"Chikkaballapura","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.97564,13.95872],[77.96743,13.96016],[77.96422,13.95556],[77.96195,13.95497],[77.95886,13.93883],[77.95707,13.93651],[77.95451,13.93854],[77.9462,13.93534],[77.93713,13.91866],[77.92677,13.90533],[77.91542,13.90785],[77.9054,13.91644],[77.89968,13.91659],[77.89582,13.92036],[77.89535,13.92563],[77.89891,13.93064],[77.89569,13.94104],[77.86861,13.93601],[77.85485,13.93818],[77.83882,13.93589],[77.8308,13.94039],[77.82659,13.94472],[77.81484,13.93193],[77.81349,13.91462],[77.81703,13.90831],[77.81618,13.90298],[77.81999,13.89978],[77.82682,13.89921],[77.83196,13.89567],[77.83554,13.88097],[77.82813,13.87654],[77.82733,13.87444],[77.83707,13.86974],[77.83023,13.86558],[77.82225,13.86474],[77.82019,13.86321],[77.81485,13.85778],[77.81203,13.84898],[77.80808,13.85059],[77.79301,13.84894],[77.78227,13.84408],[77.7822,13.83894],[77.78426,13.83439],[77.78909,13.83047],[77.78876,13.82316],[77.78153,13.81829],[77.76351,13.81722],[77.74793,13.81039],[77.74514,13.81013],[77.74072,13.81242],[77.73158,13.80757],[77.72929,13.80221],[77.71931,13.80027],[77.72228,13.79394],[77.72194,13.79],[77.71951,13.78809],[77.71868,13.7841],[77.71974,13.775],[77.72222,13.76885],[77.71999,13.7651],[77.7201,13.75597],[77.71736,13.74107],[77.71514,13.74376],[77.70846,13.74102],[77.70329,13.76979],[77.69518,13.7707],[77.67962,13.76218],[77.67172,13.76048],[77.67761,13.76669],[77.67987,13.77233],[77.68146,13.7796],[77.68008,13.78678],[77.66984,13.78391],[77.66135,13.78538],[77.65129,13.78407],[77.64599,13.77876],[77.62107,13.76844],[77.6175,13.76193],[77.61884,13.75496],[77.62521,13.75298],[77.62964,13.7542],[77.64223,13.7468],[77.64143,13.74195],[77.63697,13.73941],[77.63359,13.73958],[77.62772,13.7346],[77.62443,13.73523],[77.61361,13.75192],[77.59997,13.75076],[77.59602,13.74819],[77.58685,13.73349],[77.58055,13.73508],[77.57712,13.73831],[77.57168,13.7382],[77.56485,13.72618],[77.56093,13.72234],[77.5589,13.72353],[77.55375,13.73654],[77.54929,13.74064],[77.5493,13.74887],[77.54744,13.7529],[77.54086,13.75595],[77.52536,13.75324],[77.52195,13.74456],[77.5271,13.74152],[77.53664,13.7306],[77.53437,13.707],[77.52834,13.69301],[77.52505,13.69101],[77.52126,13.69213],[77.51963,13.69627],[77.51237,13.69725],[77.51451,13.70502],[77.51417,13.71321],[77.48504,13.71478],[77.48652,13.7041],[77.48827,13.70415],[77.48789,13.69977],[77.49122,13.69519],[77.49211,13.68981],[77.48783,13.68917],[77.48788,13.68666],[77.47424,13.68611],[77.4545,13.68191],[77.43711,13.6843],[77.43505,13.67262],[77.4037,13.67532],[77.39725,13.67345],[77.39328,13.66488],[77.38333,13.66242],[77.37702,13.65005],[77.37847,13.64519],[77.37565,13.64282],[77.3689,13.64159],[77.36961,13.6337],[77.36213,13.62526],[77.36018,13.61569],[77.36224,13.60238],[77.36378,13.60208],[77.36305,13.59018],[77.3716,13.58774],[77.37421,13.59002],[77.37861,13.57849],[77.38244,13.57531],[77.38062,13.55056],[77.38273,13.53715],[77.39047,13.5361],[77.39141,13.53414],[77.38994,13.51968],[77.38086,13.51511],[77.38261,13.50032],[77.39863,13.49288],[77.40796,13.49679],[77.41553,13.49201],[77.41559,13.48607],[77.42162,13.48558],[77.42483,13.48156],[77.42286,13.47193],[77.4344,13.46874],[77.43302,13.46398],[77.4401,13.46163],[77.44607,13.46162],[77.45031,13.46434],[77.4548,13.46428],[77.45457,13.46861],[77.45814,13.46911],[77.46134,13.46287],[77.47147,13.46936],[77.47662,13.46641],[77.48326,13.46789],[77.4886,13.46093],[77.49348,13.45889],[77.5047,13.4578],[77.50671,13.45662],[77.50492,13.45378],[77.50411,13.44549],[77.51594,13.44388],[77.51685,13.43939],[77.52248,13.43153],[77.53455,13.43075],[77.53708,13.43648],[77.54599,13.43773],[77.54844,13.43587],[77.55036,13.43424],[77.55147,13.41964],[77.55904,13.41863],[77.56431,13.42044],[77.58423,13.42157],[77.58958,13.42074],[77.59137,13.41883],[77.59347,13.42125],[77.59146,13.42153],[77.5891,13.42922],[77.58979,13.43625],[77.59957,13.43614],[77.59996,13.43921],[77.60307,13.4413],[77.60574,13.43552],[77.60745,13.42524],[77.61545,13.42108],[77.614,13.41852],[77.60669,13.41451],[77.60589,13.41647],[77.59921,13.41514],[77.59875,13.41062],[77.60042,13.4099],[77.59986,13.4049],[77.60158,13.40405],[77.60238,13.39821],[77.6046,13.39785],[77.60657,13.39978],[77.60745,13.40719],[77.61201,13.40367],[77.61911,13.40236],[77.61276,13.38713],[77.62092,13.38468],[77.6222,13.38226],[77.62094,13.37536],[77.62831,13.37763],[77.63391,13.37592],[77.63651,13.38667],[77.63793,13.38541],[77.63846,13.3938],[77.64784,13.39183],[77.65326,13.39842],[77.65756,13.39782],[77.65773,13.39306],[77.65196,13.38704],[77.65957,13.38347],[77.66196,13.37746],[77.65705,13.37271],[77.65594,13.35823],[77.66706,13.35071],[77.66706,13.34799],[77.67994,13.34488],[77.68216,13.351],[77.68429,13.35187],[77.6879,13.34989],[77.69627,13.33833],[77.69989,13.33737],[77.70344,13.34425],[77.70313,13.34606],[77.69939,13.34828],[77.69866,13.35898],[77.71021,13.36324],[77.70901,13.36452],[77.71096,13.36623],[77.71675,13.36563],[77.71755,13.35349],[77.71639,13.35178],[77.72855,13.35169],[77.72924,13.36035],[77.72632,13.36163],[77.72649,13.36332],[77.73009,13.36087],[77.73726,13.3604],[77.74389,13.35375],[77.74514,13.35533],[77.74279,13.36025],[77.74406,13.36112],[77.75062,13.35929],[77.75188,13.36275],[77.75414,13.3638],[77.77195,13.35603],[77.77472,13.35305],[77.78898,13.35177],[77.79094,13.35052],[77.79111,13.34567],[77.79638,13.34067],[77.80357,13.338],[77.81025,13.33834],[77.81023,13.3344],[77.82103,13.3286],[77.82717,13.32701],[77.82262,13.31881],[77.81849,13.31538],[77.81728,13.31018],[77.81334,13.31095],[77.81378,13.31258],[77.81242,13.31301],[77.81018,13.31007],[77.81444,13.30943],[77.81444,13.30425],[77.82763,13.30549],[77.82955,13.29067],[77.82259,13.29076],[77.82217,13.29695],[77.81589,13.29756],[77.8157,13.28761],[77.81146,13.27758],[77.81139,13.26784],[77.8088,13.26148],[77.82097,13.25817],[77.8185,13.25356],[77.81541,13.25348],[77.81088,13.24617],[77.80909,13.24685],[77.80756,13.24313],[77.81441,13.23951],[77.81705,13.24706],[77.82133,13.25262],[77.85077,13.24106],[77.84779,13.22107],[77.85002,13.2195],[77.85829,13.22037],[77.858,13.22847],[77.86364,13.24112],[77.87079,13.23425],[77.8766,13.23431],[77.87848,13.23934],[77.87411,13.24393],[77.88007,13.25045],[77.88859,13.25079],[77.89079,13.25756],[77.90341,13.25483],[77.90537,13.25267],[77.90446,13.25048],[77.90565,13.25056],[77.9047,13.24511],[77.90219,13.24208],[77.89967,13.24174],[77.89092,13.23453],[77.91158,13.23134],[77.91385,13.23194],[77.91412,13.23974],[77.92577,13.23976],[77.92901,13.23823],[77.93495,13.24606],[77.9345,13.24915],[77.93775,13.25123],[77.9414,13.25847],[77.93821,13.26403],[77.93822,13.26795],[77.94147,13.26756],[77.94154,13.26895],[77.94478,13.26931],[77.94629,13.27125],[77.95618,13.26969],[77.95948,13.2722],[77.95941,13.27599],[77.9567,13.27708],[77.95774,13.28192],[77.96123,13.28424],[77.96894,13.28238],[77.97493,13.28555],[77.98455,13.28607],[77.98519,13.29917],[77.98963,13.30434],[77.99884,13.30506],[78.01128,13.30145],[78.01171,13.29066],[78.01367,13.28997],[78.01552,13.2829],[78.02991,13.28371],[78.04691,13.27829],[78.05211,13.29341],[78.05596,13.29433],[78.05906,13.29277],[78.06058,13.299],[78.07564,13.30241],[78.07726,13.30094],[78.08678,13.30219],[78.08987,13.30392],[78.09197,13.31023],[78.09274,13.30847],[78.09711,13.30815],[78.10246,13.30369],[78.1075,13.30429],[78.11742,13.29846],[78.12166,13.29273],[78.12666,13.29191],[78.12747,13.29026],[78.13382,13.28764],[78.13639,13.29681],[78.13647,13.30434],[78.13055,13.30734],[78.12319,13.30842],[78.12175,13.3155],[78.11486,13.31777],[78.10897,13.32326],[78.13084,13.32843],[78.13159,13.33227],[78.13407,13.33122],[78.13084,13.34603],[78.13186,13.35246],[78.15034,13.35062],[78.15009,13.35794],[78.14936,13.36103],[78.14556,13.3614],[78.14796,13.36749],[78.14565,13.37377],[78.14263,13.37587],[78.1288,13.37342],[78.12239,13.3752],[78.12461,13.386],[78.12833,13.38671],[78.1298,13.3939],[78.13573,13.40525],[78.14734,13.40959],[78.15265,13.4096],[78.16082,13.41528],[78.16893,13.41357],[78.18255,13.42063],[78.18285,13.43342],[78.18629,13.43472],[78.18469,13.43519],[78.18551,13.43893],[78.18864,13.44248],[78.19433,13.43844],[78.19341,13.4471],[78.20154,13.44992],[78.20586,13.4588],[78.20605,13.46473],[78.21039,13.47104],[78.20811,13.47811],[78.20306,13.48078],[78.20069,13.4841],[78.19816,13.51259],[78.1924,13.51204],[78.18777,13.51359],[78.19041,13.5207],[78.19909,13.52089],[78.20278,13.52334],[78.20365,13.52777],[78.20145,13.53318],[78.20115,13.54131],[78.19377,13.54855],[78.20134,13.56389],[78.19619,13.56626],[78.19297,13.56485],[78.18961,13.57521],[78.19026,13.59014],[78.19901,13.59924],[78.20333,13.60651],[78.20377,13.61828],[78.20232,13.61943],[78.2042,13.62842],[78.17505,13.63061],[78.16822,13.63285],[78.16907,13.65394],[78.16758,13.65583],[78.15613,13.65862],[78.14709,13.65669],[78.13112,13.65936],[78.12366,13.65573],[78.11429,13.65736],[78.10847,13.65311],[78.10225,13.65106],[78.09895,13.6428],[78.08711,13.64307],[78.0869,13.65117],[78.08974,13.6591],[78.07855,13.66727],[78.07701,13.67335],[78.06572,13.67614],[78.06731,13.6797],[78.07124,13.68238],[78.07359,13.68773],[78.07089,13.68846],[78.06961,13.6908],[78.06908,13.69781],[78.07087,13.69844],[78.08014,13.69664],[78.08588,13.69219],[78.0921,13.69256],[78.09242,13.69117],[78.11322,13.69274],[78.11471,13.70342],[78.1208,13.71562],[78.11585,13.72253],[78.11101,13.7258],[78.10433,13.73654],[78.09832,13.73779],[78.09152,13.74228],[78.09988,13.75846],[78.1138,13.76343],[78.11919,13.77251],[78.12216,13.78132],[78.1264,13.78638],[78.12269,13.79878],[78.11375,13.80747],[78.11479,13.81199],[78.1254,13.83161],[78.1222,13.83895],[78.12363,13.84535],[78.11654,13.85187],[78.11681,13.85883],[78.11478,13.86289],[78.10185,13.8617],[78.094,13.86481],[78.08994,13.8647],[78.08191,13.86124],[78.08261,13.86429],[78.08054,13.86754],[78.079,13.88116],[78.0643,13.88664],[78.06183,13.88842],[78.06225,13.8908],[78.06065,13.89196],[78.04887,13.89609],[78.05083,13.87599],[78.05011,13.87186],[78.04625,13.86635],[78.04619,13.86213],[78.04133,13.86027],[78.03185,13.86425],[78.02123,13.86383],[78.01672,13.86496],[78.01158,13.87194],[78.00048,13.87293],[77.99832,13.86908],[77.99206,13.86882],[77.98951,13.8626],[77.98885,13.85377],[77.98722,13.85407],[77.98298,13.84727],[77.9761,13.82949],[77.96054,13.82945],[77.95298,13.82735],[77.95242,13.82908],[77.95614,13.83122],[77.95625,13.83593],[77.95368,13.83856],[77.9548,13.84224],[77.95416,13.85516],[77.94906,13.8707],[77.94908,13.88645],[77.95213,13.88983],[77.98431,13.89719],[77.98662,13.903],[77.9831,13.90487],[77.98376,13.91576],[77.98025,13.92786],[77.98753,13.9555],[77.97564,13.95872]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"631","area_level":"District","area_name":"Bengaluru South","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.16606,13.19558],[77.16653,13.19697],[77.15528,13.19314],[77.14782,13.17399],[77.14262,13.17393],[77.13853,13.17817],[77.13654,13.17236],[77.13115,13.16626],[77.1265,13.16359],[77.11885,13.16208],[77.1201,13.14935],[77.11938,13.14628],[77.11719,13.14586],[77.11551,13.14256],[77.11513,13.14038],[77.1183,13.1369],[77.11612,13.13003],[77.10788,13.13327],[77.10775,13.1367],[77.10916,13.13731],[77.10811,13.14263],[77.10542,13.14457],[77.09593,13.14582],[77.09201,13.13564],[77.08514,13.13643],[77.08018,13.13367],[77.0797,13.13116],[77.07192,13.13085],[77.07032,13.12085],[77.07197,13.11206],[77.07699,13.1033],[77.08079,13.09026],[77.07924,13.07916],[77.07584,13.07226],[77.07294,13.06861],[77.06822,13.06798],[77.06806,13.06651],[77.07335,13.06661],[77.07332,13.0608],[77.07709,13.06097],[77.07738,13.05814],[77.07377,13.05457],[77.06978,13.04019],[77.08221,13.03846],[77.09437,13.02666],[77.10858,13.02158],[77.11126,13.01832],[77.11826,13.01464],[77.11687,13.00985],[77.10265,13.0062],[77.10139,13.00086],[77.0981,12.99934],[77.10551,12.99266],[77.10658,12.9965],[77.12948,12.99555],[77.12963,12.99869],[77.12434,13.00384],[77.12451,13.00624],[77.13164,13.00707],[77.13437,13.00535],[77.1381,12.99885],[77.13569,12.99568],[77.14484,12.98765],[77.14184,12.98372],[77.13277,12.98639],[77.1317,12.98277],[77.13314,12.98144],[77.13044,12.98062],[77.12984,12.97789],[77.13227,12.97297],[77.14285,12.96449],[77.1524,12.96149],[77.15735,12.95816],[77.15799,12.94985],[77.15653,12.94255],[77.16258,12.93611],[77.16542,12.92905],[77.15813,12.9134],[77.13989,12.9182],[77.13634,12.9014],[77.13263,12.89802],[77.12478,12.90213],[77.12448,12.89905],[77.11763,12.89886],[77.11163,12.89458],[77.10699,12.89441],[77.10919,12.89067],[77.1187,12.88404],[77.12319,12.88796],[77.13144,12.88814],[77.13087,12.87799],[77.13422,12.87728],[77.13115,12.85921],[77.13603,12.86015],[77.13456,12.85599],[77.13722,12.85301],[77.14457,12.85169],[77.14596,12.84949],[77.14915,12.84863],[77.14818,12.84586],[77.14936,12.84452],[77.14759,12.84099],[77.1481,12.83722],[77.15041,12.83466],[77.14941,12.83044],[77.15317,12.83087],[77.15883,12.82742],[77.14752,12.81978],[77.14193,12.82027],[77.13917,12.81004],[77.15091,12.79195],[77.15022,12.78704],[77.14522,12.7816],[77.13667,12.78373],[77.1255,12.77419],[77.12255,12.77362],[77.11042,12.77756],[77.10753,12.78026],[77.0975,12.77626],[77.09157,12.76084],[77.09261,12.75267],[77.08724,12.75277],[77.08455,12.75753],[77.08013,12.75908],[77.07911,12.74876],[77.08376,12.74122],[77.0801,12.73367],[77.08139,12.73141],[77.07925,12.72207],[77.07772,12.72156],[77.07659,12.71305],[77.0726,12.70235],[77.07333,12.68661],[77.07375,12.68506],[77.07569,12.68489],[77.07368,12.68069],[77.08029,12.67623],[77.09752,12.67551],[77.09922,12.67332],[77.10037,12.63049],[77.1032,12.63048],[77.10466,12.62766],[77.11672,12.62871],[77.11676,12.6273],[77.11903,12.62725],[77.12236,12.62365],[77.1225,12.61949],[77.11104,12.61617],[77.1081,12.60842],[77.10998,12.59668],[77.1142,12.59646],[77.11694,12.58197],[77.12346,12.57362],[77.12848,12.56995],[77.1278,12.55335],[77.12005,12.55561],[77.11448,12.55332],[77.11454,12.54301],[77.12065,12.54114],[77.12529,12.53541],[77.12729,12.5318],[77.12504,12.52328],[77.1317,12.51865],[77.12991,12.50955],[77.13062,12.4977],[77.12396,12.48407],[77.12538,12.48024],[77.13304,12.4792],[77.13482,12.47086],[77.13978,12.46446],[77.14719,12.46204],[77.15069,12.46474],[77.15777,12.4755],[77.16476,12.47503],[77.16812,12.48527],[77.17585,12.48257],[77.17578,12.4803],[77.17819,12.47932],[77.19299,12.48192],[77.19484,12.48372],[77.19783,12.48325],[77.20016,12.49054],[77.20591,12.49056],[77.2058,12.48519],[77.21327,12.48507],[77.21655,12.49224],[77.22224,12.49154],[77.22396,12.49548],[77.22409,12.50258],[77.23781,12.4999],[77.2386,12.4894],[77.23596,12.48633],[77.2258,12.48948],[77.22546,12.47443],[77.22721,12.4795],[77.22962,12.47978],[77.22979,12.48367],[77.23517,12.48342],[77.23619,12.47],[77.24341,12.47002],[77.24517,12.46796],[77.25422,12.47032],[77.25761,12.4635],[77.26432,12.46162],[77.26915,12.4648],[77.27479,12.43963],[77.27004,12.43398],[77.27333,12.42955],[77.28521,12.42868],[77.28598,12.42084],[77.28179,12.42081],[77.28407,12.40919],[77.28172,12.40924],[77.28181,12.4072],[77.28435,12.40676],[77.28593,12.39307],[77.30158,12.39083],[77.31337,12.39237],[77.33057,12.36213],[77.3338,12.35418],[77.32603,12.33027],[77.32269,12.31274],[77.3253,12.30795],[77.32836,12.30621],[77.34139,12.28267],[77.34889,12.27891],[77.36548,12.28388],[77.38872,12.27939],[77.40348,12.27943],[77.40911,12.28142],[77.41823,12.28885],[77.42264,12.28954],[77.4314,12.28655],[77.43777,12.27925],[77.44704,12.26226],[77.44832,12.25001],[77.45377,12.24756],[77.46031,12.24887],[77.46611,12.24372],[77.47112,12.24351],[77.47352,12.25561],[77.4782,12.25921],[77.47703,12.26446],[77.47906,12.27127],[77.4851,12.27505],[77.4876,12.2805],[77.49328,12.27887],[77.49674,12.28218],[77.49998,12.28257],[77.50838,12.276],[77.51402,12.27538],[77.52712,12.27871],[77.53284,12.29146],[77.55134,12.29121],[77.5524,12.29745],[77.5579,12.30321],[77.55791,12.30573],[77.566,12.30624],[77.57858,12.33567],[77.59154,12.34014],[77.59869,12.34999],[77.60091,12.3585],[77.6145,12.3625],[77.61685,12.36838],[77.61809,12.3811],[77.62058,12.38301],[77.62333,12.41226],[77.62962,12.41832],[77.62909,12.42513],[77.62608,12.43076],[77.62698,12.44112],[77.62915,12.44635],[77.62717,12.45845],[77.62942,12.46065],[77.6306,12.46511],[77.62924,12.46677],[77.63076,12.47027],[77.63314,12.47045],[77.6324,12.47912],[77.63443,12.48817],[77.62948,12.4945],[77.62609,12.49631],[77.61649,12.48284],[77.60742,12.47512],[77.5984,12.47618],[77.59569,12.4748],[77.58368,12.4788],[77.58875,12.48563],[77.5918,12.48518],[77.6024,12.49715],[77.61507,12.50416],[77.61633,12.50918],[77.61242,12.51494],[77.60677,12.51413],[77.59393,12.51608],[77.5872,12.51475],[77.5885,12.52662],[77.58546,12.5368],[77.5864,12.54572],[77.58035,12.55159],[77.58075,12.56571],[77.57934,12.57309],[77.5838,12.57588],[77.58932,12.59268],[77.59142,12.59209],[77.59102,12.61524],[77.59264,12.61935],[77.60602,12.628],[77.60333,12.63532],[77.60474,12.63759],[77.60073,12.64303],[77.59964,12.64269],[77.59612,12.65028],[77.59726,12.65744],[77.59517,12.66723],[77.59936,12.6727],[77.60554,12.69222],[77.61318,12.69925],[77.61544,12.70917],[77.59414,12.72208],[77.57933,12.70864],[77.56743,12.70109],[77.56511,12.70261],[77.55937,12.71465],[77.55591,12.73084],[77.55579,12.73274],[77.56473,12.7325],[77.56893,12.72979],[77.57024,12.73192],[77.56764,12.73447],[77.56868,12.73836],[77.57539,12.7513],[77.59473,12.7523],[77.59799,12.75898],[77.59746,12.76593],[77.5921,12.77739],[77.59206,12.78043],[77.58042,12.78723],[77.57083,12.77803],[77.57161,12.7649],[77.56972,12.76065],[77.56547,12.75895],[77.55895,12.76646],[77.55561,12.77933],[77.55545,12.78142],[77.56147,12.784],[77.56279,12.78711],[77.55471,12.78856],[77.55693,12.7991],[77.5486,12.80047],[77.54307,12.79744],[77.54315,12.7942],[77.54881,12.78598],[77.54404,12.77598],[77.55232,12.77218],[77.54632,12.77006],[77.54071,12.75016],[77.53431,12.75596],[77.53222,12.75185],[77.53264,12.74856],[77.52414,12.7387],[77.52127,12.73241],[77.51853,12.73673],[77.52088,12.74435],[77.51381,12.75022],[77.51012,12.73816],[77.50529,12.73522],[77.50492,12.73238],[77.50324,12.73659],[77.49891,12.73932],[77.48613,12.74279],[77.48357,12.74896],[77.47355,12.75692],[77.47635,12.76227],[77.47401,12.76445],[77.47772,12.78151],[77.4693,12.79506],[77.47105,12.79959],[77.47629,12.79677],[77.48469,12.80077],[77.48209,12.80085],[77.47897,12.80465],[77.48004,12.80863],[77.47469,12.81073],[77.47049,12.80953],[77.46839,12.81102],[77.46588,12.80861],[77.45955,12.81448],[77.45158,12.81805],[77.44936,12.81781],[77.44657,12.8148],[77.44623,12.80999],[77.44444,12.81001],[77.44359,12.80823],[77.43987,12.81119],[77.43604,12.81035],[77.43401,12.8167],[77.43546,12.82071],[77.43344,12.82333],[77.43138,12.82176],[77.41959,12.82626],[77.42225,12.83437],[77.42512,12.83778],[77.42964,12.83957],[77.43455,12.83917],[77.43379,12.84433],[77.43786,12.85018],[77.42664,12.85031],[77.4289,12.85666],[77.41839,12.86952],[77.42922,12.87059],[77.42989,12.87539],[77.42122,12.87168],[77.41579,12.8717],[77.41579,12.87521],[77.41039,12.87659],[77.40389,12.87388],[77.40216,12.86993],[77.40266,12.86541],[77.3974,12.86833],[77.39003,12.86051],[77.38521,12.85903],[77.38538,12.85706],[77.37988,12.85762],[77.37941,12.85488],[77.36976,12.85761],[77.3656,12.87161],[77.3463,12.8701],[77.34488,12.87645],[77.335,12.87839],[77.33542,12.8843],[77.33324,12.88792],[77.34339,12.88799],[77.33655,12.91215],[77.33932,12.92362],[77.33643,12.9284],[77.33554,12.93798],[77.33948,12.94408],[77.33298,12.95014],[77.33008,12.96292],[77.32561,12.97133],[77.32873,12.97764],[77.32193,13.00787],[77.32282,13.00911],[77.32783,13.00887],[77.32545,13.02291],[77.32996,13.02607],[77.32966,13.03914],[77.33113,13.04291],[77.32839,13.05021],[77.32577,13.04972],[77.32388,13.04702],[77.32005,13.04853],[77.31105,13.04632],[77.30872,13.06518],[77.30928,13.08324],[77.31434,13.10614],[77.30272,13.11088],[77.29649,13.10912],[77.29283,13.1101],[77.29195,13.12117],[77.28679,13.12169],[77.28475,13.13435],[77.27913,13.13377],[77.2793,13.12599],[77.27783,13.1254],[77.27647,13.11945],[77.26841,13.11885],[77.26543,13.12758],[77.26708,13.14266],[77.27092,13.14315],[77.27394,13.13979],[77.27504,13.15258],[77.26972,13.15245],[77.26619,13.1506],[77.25529,13.15255],[77.24893,13.1519],[77.24163,13.14636],[77.23159,13.14734],[77.23043,13.14461],[77.22842,13.14655],[77.2175,13.14487],[77.21321,13.1516],[77.21628,13.16161],[77.21335,13.16855],[77.2074,13.17358],[77.20755,13.17884],[77.20359,13.18448],[77.20254,13.18296],[77.19761,13.18304],[77.1978,13.18023],[77.18439,13.18662],[77.17586,13.18662],[77.16879,13.18383],[77.16496,13.1892],[77.16606,13.19558]],[[77.07957,13.06969],[77.08111,13.07394],[77.08353,13.07298],[77.08296,13.07076],[77.07957,13.06969]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"632","area_level":"District","area_name":"North And Middle Andaman","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[92.79855,12.07663],[92.79847,12.07657],[92.7986,12.07642],[92.79849,12.07628],[92.79832,12.07625],[92.79845,12.07609],[92.79837,12.07597],[92.79852,12.0759],[92.79857,12.07574],[92.79838,12.07569],[92.79859,12.07551],[92.79859,12.0753],[92.79862,12.07515],[92.7987,12.07526],[92.79878,12.07526],[92.79892,12.07512],[92.79908,12.07505],[92.79896,12.07532],[92.79911,12.07532],[92.79925,12.07525],[92.79934,12.07526],[92.79928,12.07538],[92.79928,12.0755],[92.79937,12.07551],[92.79925,12.07571],[92.79923,12.07584],[92.79936,12.07584],[92.79938,12.07597],[92.79919,12.07605],[92.79922,12.07632],[92.79907,12.07624],[92.79894,12.0764],[92.7989,12.07634],[92.79884,12.0764],[92.79886,12.07651],[92.79868,12.07652],[92.79855,12.07663]]],[[[92.78567,12.07355],[92.78577,12.07375],[92.78589,12.07415],[92.78614,12.07444],[92.78615,12.07471],[92.78627,12.0747],[92.78642,12.07485],[92.7865,12.07522],[92.78671,12.07557],[92.78696,12.07632],[92.78712,12.07656],[92.78719,12.07676],[92.78733,12.07697],[92.78744,12.07746],[92.78746,12.07769],[92.78735,12.07785],[92.78724,12.07787],[92.78702,12.07782],[92.78688,12.0777],[92.78683,12.07758],[92.78683,12.07749],[92.7864,12.07683],[92.78639,12.07664],[92.78645,12.07632],[92.78635,12.07609],[92.78606,12.07575],[92.78596,12.07558],[92.78597,12.0754],[92.7859,12.07512],[92.78572,12.07491],[92.78545,12.0747],[92.78539,12.07438],[92.78535,12.07431],[92.78489,12.07395],[92.78484,12.07387],[92.78481,12.07353],[92.78474,12.07342],[92.78459,12.07324],[92.78431,12.07312],[92.7842,12.073],[92.78413,12.07278],[92.78414,12.07263],[92.78458,12.07256],[92.78464,12.07251],[92.78477,12.07253],[92.78492,12.07264],[92.78505,12.07291],[92.78521,12.07306],[92.78532,12.07324],[92.78536,12.07353],[92.78549,12.07346],[92.78567,12.07355]]],[[[92.792,12.07873],[92.79197,12.0789],[92.7919,12.07888],[92.79191,12.0787],[92.792,12.07873]]],[[[92.79114,12.07902],[92.7912,12.07911],[92.7912,12.07918],[92.79114,12.07919],[92.79105,12.07908],[92.79107,12.07899],[92.79114,12.07902]]],[[[92.79177,12.07879],[92.79175,12.07889],[92.79171,12.07908],[92.79167,12.07916],[92.79159,12.07913],[92.79159,12.07906],[92.79168,12.07873],[92.79177,12.07879]]],[[[92.79983,12.08923],[92.79998,12.08975],[92.79952,12.09014],[92.79928,12.09018],[92.79886,12.0897],[92.79902,12.08923],[92.79983,12.08923]]],[[[92.75411,12.14272],[92.75432,12.14335],[92.75496,12.14465],[92.75529,12.1453],[92.75565,12.14578],[92.75602,12.14597],[92.75652,12.14602],[92.75741,12.14599],[92.75764,12.14604],[92.75772,12.14613],[92.75769,12.14643],[92.75758,12.14658],[92.75658,12.14705],[92.75632,12.14734],[92.75629,12.14775],[92.75685,12.14869],[92.75683,12.14887],[92.7567,12.14898],[92.75626,12.14908],[92.7559,12.14908],[92.75521,12.14851],[92.75487,12.14816],[92.7545,12.14771],[92.75438,12.14749],[92.75428,12.14724],[92.75428,12.14691],[92.75441,12.14658],[92.75461,12.14625],[92.75464,12.14607],[92.75461,12.14561],[92.75432,12.14488],[92.75413,12.1443],[92.75368,12.14334],[92.75365,12.14315],[92.75371,12.14295],[92.75391,12.1427],[92.75402,12.14266],[92.75411,12.14272]]],[[[92.85137,12.14122],[92.85149,12.14131],[92.85154,12.14145],[92.85148,12.14162],[92.85138,12.14164],[92.85115,12.14151],[92.85114,12.14134],[92.8512,12.14123],[92.85137,12.14122]]],[[[92.85184,12.14164],[92.85201,12.14175],[92.85206,12.1419],[92.85203,12.14201],[92.85186,12.14208],[92.85171,12.14203],[92.85154,12.14197],[92.85145,12.1418],[92.85154,12.1417],[92.85167,12.14162],[92.85184,12.14164]]],[[[92.76017,12.17172],[92.76005,12.17219],[92.75988,12.17248],[92.75975,12.17258],[92.75963,12.17262],[92.75949,12.17262],[92.75938,12.17255],[92.75927,12.17225],[92.75936,12.17171],[92.75936,12.17147],[92.75925,12.17134],[92.75914,12.17129],[92.75884,12.17136],[92.75874,12.17135],[92.75864,12.17124],[92.75859,12.17102],[92.75864,12.17074],[92.75877,12.17051],[92.75898,12.16978],[92.75906,12.16966],[92.75918,12.16962],[92.75933,12.1697],[92.75953,12.16995],[92.75989,12.17047],[92.76001,12.17077],[92.76012,12.17115],[92.76017,12.17172]]],[[[92.75897,12.1798],[92.75831,12.18026],[92.75808,12.18051],[92.75768,12.18113],[92.75742,12.18126],[92.75715,12.18127],[92.75653,12.18104],[92.75562,12.18097],[92.75555,12.18085],[92.75556,12.17993],[92.75567,12.17967],[92.75583,12.17954],[92.75633,12.17958],[92.75659,12.17951],[92.75692,12.17914],[92.75722,12.17896],[92.7577,12.17889],[92.75837,12.17892],[92.75869,12.17867],[92.75874,12.17846],[92.75869,12.17747],[92.75883,12.17598],[92.75868,12.17554],[92.75816,12.17462],[92.75818,12.1741],[92.75842,12.17388],[92.7587,12.17377],[92.75901,12.17383],[92.75926,12.17403],[92.75957,12.17445],[92.75969,12.17453],[92.75994,12.17452],[92.76005,12.17447],[92.7603,12.1738],[92.76076,12.17347],[92.76098,12.17357],[92.76121,12.17381],[92.7616,12.1746],[92.76152,12.17478],[92.76136,12.17491],[92.76077,12.17498],[92.76063,12.17509],[92.76056,12.1753],[92.76045,12.17661],[92.76098,12.17726],[92.76127,12.17786],[92.76102,12.17887],[92.76129,12.17933],[92.7613,12.17981],[92.76115,12.17996],[92.76089,12.18003],[92.76038,12.17984],[92.75987,12.17976],[92.75956,12.17973],[92.75897,12.1798]]],[[[92.72904,12.18437],[92.72978,12.18494],[92.72993,12.1854],[92.72987,12.18614],[92.73017,12.18713],[92.73034,12.18796],[92.73028,12.18856],[92.72999,12.18899],[92.72938,12.18933],[92.72868,12.18913],[92.72835,12.18878],[92.7265,12.18727],[92.72529,12.18668],[92.72448,12.1858],[92.72431,12.18503],[92.72437,12.18469],[92.72473,12.18428],[92.72514,12.18406],[92.72597,12.18418],[92.72685,12.18443],[92.72742,12.18433],[92.72827,12.18395],[92.72904,12.18437]]],[[[92.86595,12.18211],[92.86601,12.18221],[92.86602,12.1824],[92.86592,12.18258],[92.86577,12.18276],[92.86548,12.18283],[92.86541,12.18297],[92.86527,12.18307],[92.86514,12.18306],[92.86499,12.18295],[92.8649,12.18276],[92.86488,12.18256],[92.86488,12.18243],[92.8649,12.18229],[92.86496,12.18218],[92.86507,12.18208],[92.86517,12.182],[92.86526,12.18196],[92.86535,12.18194],[92.8654,12.18196],[92.86546,12.18201],[92.86548,12.18211],[92.86566,12.18204],[92.86582,12.18202],[92.86595,12.18211]]],[[[92.84808,12.19565],[92.84818,12.19582],[92.84819,12.19614],[92.84812,12.19651],[92.848,12.19683],[92.84783,12.19691],[92.8476,12.19693],[92.84745,12.19683],[92.84734,12.19671],[92.84721,12.19637],[92.84731,12.19609],[92.84753,12.1958],[92.8478,12.19558],[92.84802,12.19555],[92.84808,12.19565]]],[[[92.87111,12.22887],[92.87101,12.2289],[92.87089,12.22889],[92.87077,12.22887],[92.87061,12.22876],[92.87046,12.22862],[92.87039,12.22847],[92.87037,12.22834],[92.87039,12.22827],[92.87048,12.22819],[92.87055,12.22808],[92.87062,12.22807],[92.87065,12.22799],[92.87074,12.22784],[92.87081,12.22777],[92.87092,12.2277],[92.87113,12.22765],[92.87127,12.22764],[92.8714,12.22769],[92.87152,12.22779],[92.87156,12.22795],[92.87152,12.22834],[92.87147,12.22856],[92.87136,12.22873],[92.8713,12.22872],[92.87111,12.22887]]],[[[92.73483,12.23959],[92.73229,12.24067],[92.7302,12.24252],[92.72926,12.24259],[92.72685,12.24019],[92.72604,12.23987],[92.72512,12.24033],[92.72396,12.23967],[92.7236,12.23855],[92.72406,12.23662],[92.72387,12.23532],[92.72286,12.23455],[92.72154,12.23441],[92.72086,12.23323],[92.72116,12.23115],[92.7206,12.22958],[92.72075,12.22813],[92.7221,12.22331],[92.7239,12.22129],[92.72252,12.21866],[92.72177,12.21818],[92.72148,12.21589],[92.7218,12.21535],[92.72149,12.21365],[92.72268,12.21048],[92.72252,12.20908],[92.72336,12.20728],[92.72253,12.20588],[92.72132,12.20518],[92.72156,12.20324],[92.72275,12.2021],[92.72201,12.19848],[92.72082,12.19733],[92.72081,12.19371],[92.72172,12.19231],[92.7216,12.1903],[92.72247,12.18833],[92.72399,12.18816],[92.72667,12.18996],[92.72916,12.19291],[92.7273,12.1948],[92.72851,12.19768],[92.72767,12.1948],[92.73021,12.19271],[92.73072,12.19178],[92.73117,12.18993],[92.73046,12.18931],[92.73119,12.18816],[92.73091,12.18759],[92.73262,12.18452],[92.73392,12.18465],[92.73549,12.18389],[92.73722,12.18375],[92.73932,12.18414],[92.74088,12.18343],[92.74231,12.18346],[92.74326,12.18226],[92.74555,12.18135],[92.74632,12.18011],[92.74724,12.18056],[92.74845,12.18304],[92.75,12.18415],[92.75,12.18308],[92.75085,12.18324],[92.75199,12.18212],[92.75417,12.18311],[92.75798,12.18285],[92.7601,12.18187],[92.76196,12.18237],[92.76296,12.18177],[92.76462,12.18411],[92.76654,12.18839],[92.76611,12.18991],[92.76469,12.1915],[92.76506,12.19392],[92.76705,12.19808],[92.76757,12.20063],[92.76723,12.20167],[92.76556,12.2033],[92.76197,12.20922],[92.76159,12.21317],[92.76224,12.22084],[92.76159,12.22407],[92.76186,12.22953],[92.76127,12.23001],[92.76033,12.22938],[92.75949,12.2294],[92.75744,12.23038],[92.75614,12.2297],[92.75538,12.22742],[92.7549,12.2281],[92.75513,12.22925],[92.75393,12.23066],[92.75242,12.23033],[92.75133,12.22928],[92.75054,12.22913],[92.74796,12.23063],[92.74601,12.23022],[92.74478,12.22782],[92.74411,12.22787],[92.74389,12.23031],[92.74245,12.23169],[92.74217,12.23341],[92.74045,12.23394],[92.73953,12.23613],[92.73891,12.23619],[92.73843,12.23553],[92.73751,12.22962],[92.73684,12.22816],[92.73843,12.22578],[92.74169,12.22358],[92.74296,12.22358],[92.74398,12.22294],[92.74421,12.2201],[92.74256,12.21428],[92.74403,12.21136],[92.74274,12.20485],[92.74236,12.20476],[92.74225,12.20614],[92.74323,12.21035],[92.7417,12.21406],[92.74288,12.2198],[92.74229,12.22046],[92.74138,12.22066],[92.7392,12.22302],[92.73841,12.22321],[92.73743,12.22283],[92.73597,12.22075],[92.73412,12.22062],[92.73455,12.21873],[92.7332,12.21442],[92.73335,12.2132],[92.73233,12.20969],[92.72954,12.21442],[92.73021,12.21578],[92.73062,12.21929],[92.73012,12.22183],[92.72901,12.22234],[92.72894,12.22275],[92.72968,12.22377],[92.72921,12.22464],[92.72968,12.22761],[92.72941,12.22812],[92.73095,12.22943],[92.72992,12.23153],[92.73147,12.23469],[92.73335,12.2359],[92.73328,12.23714],[92.73505,12.2389],[92.73483,12.23959]]],[[[92.93434,12.22591],[92.9341,12.22601],[92.93311,12.22555],[92.93304,12.22509],[92.92923,12.22419],[92.92757,12.22311],[92.92769,12.2228],[92.92654,12.22247],[92.92604,12.22211],[92.92598,12.22065],[92.92568,12.21966],[92.92395,12.21642],[92.92346,12.21289],[92.92422,12.20855],[92.92427,12.20735],[92.92489,12.20556],[92.92523,12.2052],[92.92582,12.20533],[92.9259,12.20569],[92.92559,12.20632],[92.92652,12.20613],[92.92979,12.20453],[92.93085,12.20365],[92.93177,12.20323],[92.93137,12.20279],[92.93192,12.19871],[92.93167,12.19589],[92.93232,12.19544],[92.93263,12.19564],[92.93271,12.19626],[92.93318,12.19681],[92.9334,12.19743],[92.93385,12.19771],[92.93445,12.1989],[92.93538,12.20158],[92.93555,12.20247],[92.93533,12.20477],[92.93579,12.20673],[92.93513,12.20969],[92.93524,12.21002],[92.9362,12.21095],[92.9368,12.21074],[92.93835,12.2115],[92.93915,12.21225],[92.93987,12.21337],[92.9407,12.21596],[92.94014,12.22059],[92.93962,12.22254],[92.9386,12.22394],[92.9376,12.22481],[92.93517,12.22566],[92.93465,12.22558],[92.93434,12.22591]]],[[[92.69831,12.24355],[92.69826,12.24502],[92.69848,12.24631],[92.6983,12.24718],[92.69836,12.24794],[92.69826,12.24812],[92.69795,12.2484],[92.69771,12.24874],[92.69731,12.24919],[92.69665,12.25014],[92.69657,12.25019],[92.69639,12.25012],[92.69611,12.24988],[92.69573,12.24939],[92.69543,12.24881],[92.69482,12.24724],[92.69475,12.24679],[92.69483,12.24646],[92.69506,12.24609],[92.69536,12.2458],[92.69628,12.24525],[92.69696,12.24473],[92.6974,12.24428],[92.69786,12.24369],[92.69803,12.24353],[92.6982,12.24348],[92.69831,12.24355]]],[[[92.88133,12.23918],[92.88176,12.23929],[92.88205,12.23974],[92.88215,12.24001],[92.88225,12.24063],[92.88225,12.24133],[92.88212,12.24155],[92.8817,12.24171],[92.88133,12.24154],[92.88094,12.24093],[92.88059,12.23976],[92.88069,12.23939],[92.88096,12.2392],[92.88133,12.23918]]],[[[92.72288,12.25449],[92.7231,12.25489],[92.72382,12.25564],[92.724,12.25597],[92.724,12.25611],[92.72377,12.2563],[92.72303,12.25668],[92.72253,12.25674],[92.72197,12.25665],[92.72141,12.25635],[92.7209,12.25564],[92.72112,12.25536],[92.7217,12.25477],[92.72246,12.25437],[92.72281,12.25402],[92.72343,12.254],[92.72361,12.25427],[92.72343,12.25442],[92.72294,12.25435],[92.72288,12.25449]]],[[[92.7168,12.25622],[92.71687,12.25627],[92.71694,12.25641],[92.71706,12.25671],[92.71708,12.2569],[92.71707,12.2571],[92.71686,12.25768],[92.71663,12.25802],[92.71661,12.25819],[92.71662,12.25835],[92.71686,12.25885],[92.71687,12.25892],[92.71685,12.25898],[92.71677,12.25903],[92.7167,12.25901],[92.71652,12.25881],[92.71644,12.25875],[92.71634,12.25871],[92.71608,12.25871],[92.71593,12.25863],[92.71579,12.25859],[92.7157,12.2585],[92.71569,12.25834],[92.71571,12.25823],[92.71599,12.2577],[92.71624,12.25694],[92.71664,12.25633],[92.71674,12.25622],[92.7168,12.25622]]],[[[92.91199,12.24362],[92.91209,12.24391],[92.91217,12.24448],[92.91217,12.24514],[92.91207,12.24545],[92.91177,12.24562],[92.91146,12.24563],[92.91118,12.24548],[92.91095,12.24527],[92.91093,12.24501],[92.91098,12.24455],[92.91108,12.24408],[92.91116,12.24381],[92.91133,12.24368],[92.91167,12.2435],[92.91199,12.24362]]],[[[92.86582,12.25003],[92.86522,12.25051],[92.86477,12.25068],[92.86422,12.25056],[92.86362,12.25028],[92.86217,12.24881],[92.86157,12.24799],[92.86089,12.24612],[92.86085,12.24558],[92.86096,12.24484],[92.86087,12.2438],[92.86091,12.243],[92.86118,12.24188],[92.86226,12.23882],[92.86299,12.23775],[92.86371,12.237],[92.86445,12.23636],[92.86505,12.23603],[92.86548,12.23605],[92.86583,12.23618],[92.86614,12.23657],[92.86646,12.23965],[92.86678,12.24035],[92.86686,12.24075],[92.86645,12.24218],[92.86668,12.24284],[92.86696,12.24327],[92.8671,12.24401],[92.86777,12.24483],[92.86773,12.24559],[92.86782,12.24593],[92.86877,12.24844],[92.86876,12.2487],[92.86858,12.24893],[92.86774,12.24958],[92.86695,12.24977],[92.86639,12.24979],[92.86582,12.25003]]],[[[92.88023,12.24576],[92.88041,12.2458],[92.88058,12.24599],[92.88077,12.2468],[92.88091,12.24751],[92.88094,12.24801],[92.88092,12.2486],[92.88077,12.24892],[92.88062,12.24896],[92.87954,12.24984],[92.87931,12.24995],[92.87922,12.24994],[92.87914,12.24988],[92.87911,12.2498],[92.87903,12.24934],[92.87894,12.2491],[92.87869,12.2491],[92.87849,12.24896],[92.87838,12.24892],[92.87844,12.2485],[92.87879,12.2478],[92.87909,12.24708],[92.87931,12.24632],[92.87953,12.24587],[92.87989,12.24578],[92.88023,12.24576]]],[[[92.91149,12.24716],[92.91168,12.24731],[92.91183,12.24766],[92.91178,12.24799],[92.91164,12.24824],[92.9116,12.24845],[92.91164,12.24873],[92.91158,12.24903],[92.91129,12.24931],[92.91072,12.2494],[92.9104,12.24937],[92.91025,12.24928],[92.91021,12.24913],[92.91017,12.24884],[92.91021,12.24846],[92.91031,12.24793],[92.91057,12.24748],[92.91078,12.24722],[92.91114,12.2471],[92.91149,12.24716]]],[[[92.90649,12.24867],[92.90715,12.24878],[92.90754,12.24892],[92.90779,12.24917],[92.90787,12.24938],[92.90783,12.24969],[92.90771,12.25003],[92.90717,12.2506],[92.90684,12.25084],[92.90665,12.25083],[92.90646,12.25067],[92.90622,12.25031],[92.90593,12.24982],[92.90576,12.24931],[92.90575,12.24905],[92.90585,12.24889],[92.90607,12.24869],[92.90649,12.24867]]],[[[92.91136,12.24979],[92.9115,12.2498],[92.91175,12.25003],[92.91175,12.25009],[92.91182,12.25037],[92.91171,12.25104],[92.91166,12.25126],[92.91144,12.25137],[92.9113,12.25135],[92.9111,12.25119],[92.9108,12.25078],[92.91072,12.25029],[92.91072,12.25003],[92.9108,12.24994],[92.91099,12.24978],[92.91136,12.24979]]],[[[92.9073,12.25263],[92.90716,12.25267],[92.90704,12.25276],[92.90689,12.25278],[92.90646,12.2528],[92.90626,12.25277],[92.90616,12.25268],[92.90611,12.25214],[92.90609,12.25186],[92.90626,12.25139],[92.90619,12.25128],[92.90625,12.25118],[92.90659,12.25111],[92.90721,12.25111],[92.90761,12.25106],[92.90785,12.25117],[92.90794,12.25142],[92.90817,12.25169],[92.90831,12.25187],[92.90834,12.25194],[92.90835,12.25211],[92.90828,12.2526],[92.90818,12.25266],[92.90809,12.25266],[92.90788,12.2526],[92.90775,12.25258],[92.90749,12.25266],[92.90737,12.25262],[92.9073,12.25263]]],[[[92.90491,12.25413],[92.90496,12.25414],[92.90516,12.2542],[92.90518,12.25438],[92.90522,12.25457],[92.90519,12.25465],[92.90508,12.25472],[92.90493,12.25475],[92.90477,12.25463],[92.9047,12.25445],[92.9047,12.25424],[92.90478,12.25412],[92.90491,12.25413]]],[[[92.90615,12.25309],[92.90649,12.25325],[92.90705,12.25341],[92.90745,12.2536],[92.90774,12.2538],[92.90799,12.2541],[92.9081,12.25445],[92.90856,12.25488],[92.90858,12.25496],[92.90865,12.25512],[92.90859,12.25528],[92.90848,12.25532],[92.90833,12.25529],[92.90819,12.25521],[92.90805,12.25506],[92.90774,12.2547],[92.90764,12.25465],[92.90748,12.25465],[92.90729,12.25461],[92.90703,12.2545],[92.9066,12.25453],[92.90635,12.25441],[92.90616,12.25426],[92.90592,12.25419],[92.9058,12.25407],[92.90572,12.2539],[92.90542,12.25363],[92.90539,12.25338],[92.90549,12.25333],[92.90566,12.25329],[92.90575,12.25316],[92.90597,12.25303],[92.90615,12.25309]]],[[[92.91807,12.25383],[92.91833,12.25383],[92.91853,12.25398],[92.91866,12.25419],[92.9188,12.25438],[92.91883,12.25461],[92.91874,12.25484],[92.91861,12.25509],[92.91835,12.2552],[92.91812,12.25519],[92.91787,12.25507],[92.91766,12.25492],[92.91752,12.25475],[92.91752,12.25449],[92.91759,12.25422],[92.91768,12.25398],[92.9178,12.25382],[92.91807,12.25383]]],[[[92.90026,12.25758],[92.90054,12.25761],[92.9007,12.25773],[92.90083,12.25802],[92.90082,12.25819],[92.90072,12.25823],[92.90061,12.2582],[92.90028,12.25799],[92.89997,12.25788],[92.89984,12.2578],[92.89982,12.25759],[92.9001,12.25755],[92.90026,12.25758]]],[[[92.91813,12.25592],[92.9183,12.25595],[92.91858,12.25606],[92.91905,12.25631],[92.91914,12.25653],[92.91914,12.2568],[92.91884,12.25686],[92.9186,12.25687],[92.9181,12.25683],[92.91792,12.25671],[92.91777,12.25659],[92.91771,12.25647],[92.91773,12.25628],[92.91773,12.25604],[92.91776,12.25593],[92.91789,12.25591],[92.91813,12.25592]]],[[[92.91981,12.2545],[92.92004,12.25462],[92.92028,12.25506],[92.92047,12.25559],[92.92051,12.25646],[92.92043,12.25667],[92.9203,12.25684],[92.92019,12.25675],[92.92004,12.25674],[92.91995,12.25668],[92.9199,12.25659],[92.9197,12.25651],[92.91942,12.25595],[92.91923,12.25548],[92.91918,12.25522],[92.91921,12.25497],[92.91921,12.25472],[92.91933,12.25451],[92.91952,12.25442],[92.91981,12.2545]]],[[[92.90854,12.25689],[92.90841,12.2572],[92.9083,12.25728],[92.90828,12.25759],[92.90814,12.25775],[92.90813,12.25794],[92.9081,12.25803],[92.90799,12.25813],[92.90793,12.25828],[92.90783,12.25833],[92.90768,12.25827],[92.90745,12.25807],[92.90713,12.2577],[92.90686,12.25723],[92.90683,12.257],[92.9069,12.25682],[92.90684,12.25658],[92.9069,12.25627],[92.907,12.25624],[92.90706,12.25624],[92.90712,12.2563],[92.90717,12.25642],[92.90729,12.25654],[92.90753,12.25662],[92.90771,12.2568],[92.90781,12.25684],[92.90806,12.25665],[92.90828,12.25658],[92.90851,12.25658],[92.90858,12.25668],[92.90854,12.25689]]],[[[92.91327,12.26049],[92.91374,12.26051],[92.91415,12.26057],[92.91434,12.26056],[92.91442,12.26067],[92.91443,12.26102],[92.91446,12.26135],[92.91437,12.26155],[92.91415,12.26189],[92.9141,12.262],[92.91394,12.26203],[92.91366,12.26231],[92.91334,12.26245],[92.91308,12.26253],[92.9128,12.26249],[92.91262,12.26235],[92.91257,12.26213],[92.91253,12.26186],[92.91291,12.26093],[92.91317,12.26049],[92.91327,12.26049]]],[[[92.91663,12.26111],[92.91689,12.26122],[92.91709,12.26132],[92.91734,12.26142],[92.91727,12.2617],[92.91716,12.26196],[92.91701,12.26219],[92.91685,12.26226],[92.91638,12.26235],[92.91612,12.26224],[92.91592,12.26207],[92.91578,12.2619],[92.91567,12.26145],[92.91615,12.26115],[92.91642,12.26111],[92.91663,12.26111]]],[[[92.9152,12.26272],[92.91544,12.2628],[92.91563,12.26296],[92.91587,12.26313],[92.91579,12.26334],[92.91567,12.26354],[92.9155,12.26377],[92.91523,12.26385],[92.91497,12.2639],[92.91473,12.26397],[92.91449,12.26388],[92.91432,12.26371],[92.91423,12.26347],[92.91411,12.26321],[92.91427,12.26303],[92.91468,12.26279],[92.91495,12.26269],[92.9152,12.26272]]],[[[92.90067,12.26408],[92.90061,12.26486],[92.89998,12.26564],[92.89914,12.26416],[92.89788,12.26558],[92.89651,12.26451],[92.8958,12.26319],[92.8957,12.25945],[92.89521,12.25789],[92.89325,12.25609],[92.89206,12.25241],[92.89066,12.2523],[92.88972,12.25285],[92.88712,12.25266],[92.88618,12.25102],[92.88425,12.24897],[92.88465,12.24569],[92.88384,12.24221],[92.88449,12.24126],[92.88442,12.23943],[92.88488,12.23895],[92.88465,12.23857],[92.88395,12.23902],[92.88371,12.23832],[92.88299,12.23853],[92.88231,12.23762],[92.88139,12.23861],[92.88087,12.23833],[92.88045,12.23724],[92.88014,12.2385],[92.87956,12.23784],[92.87912,12.23825],[92.87884,12.24611],[92.87802,12.24832],[92.87732,12.24896],[92.87607,12.24874],[92.87392,12.24925],[92.87391,12.24896],[92.87262,12.24863],[92.86969,12.24484],[92.86885,12.23964],[92.86895,12.23744],[92.87033,12.23364],[92.87386,12.22873],[92.87347,12.22554],[92.87389,12.22197],[92.87464,12.21813],[92.87596,12.21477],[92.87703,12.20982],[92.87749,12.20931],[92.87934,12.20892],[92.881,12.20973],[92.88184,12.21092],[92.8821,12.21249],[92.88198,12.21737],[92.8851,12.21729],[92.88621,12.21805],[92.88691,12.21957],[92.8867,12.22158],[92.88531,12.22329],[92.88334,12.22392],[92.88099,12.22338],[92.88045,12.22356],[92.88163,12.22473],[92.8848,12.22506],[92.88645,12.22688],[92.88797,12.2278],[92.88926,12.22965],[92.89104,12.23132],[92.89313,12.23117],[92.89563,12.22719],[92.90024,12.22617],[92.90166,12.22554],[92.90293,12.22432],[92.90237,12.22839],[92.90271,12.22872],[92.90346,12.22716],[92.90378,12.22796],[92.90354,12.22922],[92.90481,12.22843],[92.90463,12.22716],[92.90351,12.22516],[92.90417,12.22511],[92.90618,12.22806],[92.90641,12.22982],[92.90696,12.23088],[92.90791,12.23106],[92.90961,12.22957],[92.9103,12.22841],[92.91,12.22806],[92.90808,12.22944],[92.90963,12.22469],[92.90966,12.22238],[92.91,12.2223],[92.91067,12.22319],[92.91091,12.22276],[92.91008,12.22113],[92.91061,12.22071],[92.91133,12.22094],[92.91135,12.22193],[92.91224,12.2237],[92.9125,12.22174],[92.91196,12.22047],[92.9128,12.2202],[92.91351,12.22109],[92.91357,12.22371],[92.91279,12.22703],[92.91367,12.23046],[92.9137,12.23215],[92.91131,12.23766],[92.90931,12.2401],[92.90901,12.24106],[92.90939,12.24222],[92.90914,12.24327],[92.90741,12.24568],[92.90556,12.24721],[92.90487,12.24718],[92.90446,12.24761],[92.90423,12.24825],[92.90485,12.24911],[92.9046,12.25145],[92.90515,12.25202],[92.90414,12.25304],[92.90242,12.2535],[92.90168,12.25492],[92.90083,12.25476],[92.90078,12.25542],[92.9013,12.25534],[92.90154,12.25609],[92.90132,12.25685],[92.89986,12.25675],[92.89807,12.25736],[92.89769,12.25701],[92.89779,12.25628],[92.89719,12.25621],[92.89715,12.25725],[92.89897,12.25773],[92.89766,12.25867],[92.89848,12.25902],[92.8998,12.25824],[92.90075,12.25905],[92.90105,12.26093],[92.90067,12.26408]]],[[[92.74862,12.28788],[92.74827,12.28852],[92.74748,12.28866],[92.74615,12.28814],[92.74543,12.28753],[92.7449,12.28619],[92.74406,12.28488],[92.7434,12.28293],[92.74283,12.28223],[92.74211,12.28245],[92.74167,12.2822],[92.74138,12.27968],[92.74097,12.27905],[92.74021,12.27895],[92.73979,12.27924],[92.74018,12.28196],[92.74008,12.28248],[92.73961,12.28311],[92.73899,12.2827],[92.73864,12.28164],[92.73861,12.27987],[92.73873,12.27844],[92.73924,12.2768],[92.73876,12.27529],[92.73893,12.27496],[92.7382,12.27468],[92.738,12.27529],[92.73735,12.2757],[92.73692,12.27572],[92.73627,12.27436],[92.73609,12.27326],[92.73427,12.27013],[92.73439,12.26961],[92.73471,12.26939],[92.73574,12.26963],[92.7372,12.27191],[92.73732,12.27271],[92.73806,12.27434],[92.73909,12.27469],[92.73914,12.27384],[92.73889,12.27009],[92.73823,12.26894],[92.73772,12.26591],[92.73723,12.26518],[92.73617,12.26476],[92.73573,12.26409],[92.7355,12.26288],[92.73586,12.26085],[92.73464,12.25919],[92.7345,12.25864],[92.73441,12.25688],[92.73388,12.25482],[92.73376,12.25158],[92.73379,12.25],[92.73461,12.24999],[92.7344,12.24913],[92.73458,12.24813],[92.73497,12.24821],[92.73556,12.24899],[92.73657,12.24948],[92.73707,12.25001],[92.73507,12.25001],[92.7347,12.2514],[92.73674,12.25271],[92.73888,12.25369],[92.7403,12.25403],[92.74109,12.25459],[92.74172,12.25547],[92.74193,12.25819],[92.74287,12.25992],[92.74333,12.26324],[92.74361,12.26383],[92.74432,12.26447],[92.74552,12.2681],[92.74487,12.27017],[92.74632,12.27606],[92.7471,12.28068],[92.74826,12.28206],[92.74871,12.28367],[92.7487,12.28546],[92.74934,12.28669],[92.74942,12.28736],[92.74914,12.28775],[92.74862,12.28788]]],[[[92.73521,12.28134],[92.73573,12.28206],[92.73584,12.28247],[92.73585,12.28333],[92.73614,12.28421],[92.73634,12.28633],[92.73683,12.28867],[92.73703,12.28921],[92.73727,12.29099],[92.73722,12.29208],[92.737,12.2925],[92.7366,12.29277],[92.73631,12.29268],[92.73611,12.29247],[92.73505,12.29057],[92.73479,12.28963],[92.73435,12.28746],[92.73447,12.28674],[92.73475,12.2858],[92.735,12.2844],[92.73475,12.28307],[92.73463,12.28191],[92.73468,12.2816],[92.73489,12.28132],[92.73521,12.28134]]],[[[92.75131,12.29119],[92.75135,12.29125],[92.75135,12.29134],[92.75131,12.29144],[92.75134,12.29156],[92.75133,12.29165],[92.75126,12.29172],[92.7512,12.29169],[92.75116,12.29165],[92.75107,12.29163],[92.75103,12.29163],[92.75095,12.29161],[92.75086,12.29156],[92.7508,12.29154],[92.75077,12.29145],[92.75075,12.29133],[92.75072,12.29128],[92.75065,12.29123],[92.75062,12.2911],[92.75053,12.29104],[92.75051,12.29099],[92.75055,12.2909],[92.75064,12.29084],[92.75069,12.29076],[92.75076,12.29075],[92.75077,12.29069],[92.75092,12.29063],[92.75102,12.29069],[92.75102,12.29075],[92.75118,12.2909],[92.75121,12.29097],[92.75137,12.29094],[92.75143,12.29098],[92.75143,12.29104],[92.75136,12.2911],[92.75131,12.2911],[92.75131,12.29119]]],[[[92.88914,12.27742],[92.88906,12.27763],[92.88851,12.27796],[92.88824,12.27844],[92.88835,12.27952],[92.88851,12.27992],[92.88854,12.28021],[92.8884,12.28051],[92.88813,12.28072],[92.88794,12.28064],[92.88777,12.28046],[92.88758,12.28008],[92.88758,12.2797],[92.88723,12.2793],[92.88702,12.2785],[92.88619,12.27831],[92.88562,12.27771],[92.88537,12.27779],[92.88499,12.27766],[92.8843,12.27715],[92.88417,12.27671],[92.88401,12.27653],[92.88387,12.27588],[92.8839,12.27527],[92.88406,12.27476],[92.8839,12.27449],[92.88398,12.27422],[92.88486,12.27354],[92.88515,12.27341],[92.88537,12.27344],[92.88578,12.27309],[92.88701,12.27264],[92.8886,12.2722],[92.88901,12.2725],[92.88939,12.27234],[92.88972,12.27234],[92.88982,12.27247],[92.88972,12.27374],[92.88952,12.27409],[92.88952,12.27465],[92.88936,12.27519],[92.88911,12.27562],[92.88895,12.27613],[92.88903,12.2771],[92.8892,12.27726],[92.88914,12.27742]]],[[[92.7516,12.29265],[92.75173,12.29276],[92.75185,12.29283],[92.75224,12.29292],[92.75258,12.29311],[92.75268,12.2932],[92.75283,12.29341],[92.75305,12.29376],[92.75313,12.29392],[92.75316,12.29411],[92.75307,12.2942],[92.75297,12.29426],[92.7528,12.29434],[92.75262,12.29436],[92.7523,12.29433],[92.75219,12.29423],[92.75211,12.29416],[92.75196,12.29397],[92.75185,12.29378],[92.7517,12.2937],[92.7516,12.29359],[92.75154,12.29348],[92.75151,12.29336],[92.75142,12.29319],[92.75139,12.29297],[92.7514,12.2928],[92.75142,12.2927],[92.75151,12.29261],[92.7516,12.29265]]],[[[92.76642,12.27237],[92.76645,12.27301],[92.76624,12.27378],[92.76682,12.27485],[92.7664,12.27898],[92.7666,12.28097],[92.76723,12.28382],[92.76725,12.28537],[92.76687,12.2861],[92.76626,12.28666],[92.76501,12.28707],[92.76431,12.28783],[92.76383,12.28868],[92.76386,12.28962],[92.76408,12.29021],[92.76526,12.29238],[92.76508,12.29289],[92.76264,12.294],[92.76218,12.29409],[92.76125,12.29391],[92.7605,12.29354],[92.76001,12.29297],[92.75948,12.29112],[92.75752,12.28757],[92.7562,12.28656],[92.75631,12.28511],[92.75603,12.28455],[92.75469,12.28388],[92.75392,12.28327],[92.75369,12.28197],[92.75298,12.28116],[92.75285,12.27923],[92.75228,12.27832],[92.75221,12.27787],[92.75277,12.27694],[92.75309,12.27589],[92.75408,12.2752],[92.75494,12.27414],[92.75541,12.27271],[92.75577,12.27249],[92.75701,12.27263],[92.75733,12.27239],[92.75778,12.27042],[92.75829,12.26937],[92.7588,12.26914],[92.75923,12.26923],[92.75959,12.26947],[92.76073,12.27111],[92.76112,12.27137],[92.76141,12.2713],[92.7614,12.27042],[92.76179,12.2686],[92.76174,12.26785],[92.76387,12.26517],[92.76426,12.2656],[92.76497,12.26872],[92.76615,12.27121],[92.76642,12.27237]]],[[[92.71044,12.29706],[92.70919,12.29745],[92.70556,12.29971],[92.70432,12.29996],[92.70332,12.29929],[92.70303,12.29396],[92.7016,12.29153],[92.70131,12.28989],[92.70145,12.28654],[92.70251,12.28304],[92.70209,12.27868],[92.70085,12.27636],[92.69925,12.27559],[92.69873,12.27473],[92.69979,12.27344],[92.70244,12.27195],[92.69974,12.26798],[92.69995,12.265],[92.70228,12.25777],[92.7022,12.25575],[92.70272,12.25283],[92.70283,12.24584],[92.7025,12.24495],[92.70281,12.24326],[92.70358,12.24223],[92.70536,12.24183],[92.7063,12.24091],[92.70733,12.23873],[92.70746,12.23607],[92.7083,12.23321],[92.70922,12.23039],[92.70993,12.22966],[92.71122,12.2348],[92.71133,12.23797],[92.71083,12.24026],[92.71163,12.24271],[92.7114,12.24466],[92.71195,12.24669],[92.71189,12.24823],[92.71378,12.25001],[92.71251,12.25001],[92.71256,12.25116],[92.71287,12.25232],[92.71446,12.25484],[92.7143,12.25605],[92.71498,12.25774],[92.71425,12.25928],[92.71437,12.26089],[92.71494,12.26174],[92.71736,12.26163],[92.71804,12.26385],[92.71757,12.26453],[92.71583,12.26454],[92.71546,12.26581],[92.71609,12.26767],[92.71739,12.26956],[92.71758,12.27288],[92.7185,12.27425],[92.71825,12.27604],[92.72009,12.27991],[92.7201,12.28059],[92.71888,12.28181],[92.71878,12.28319],[92.71963,12.28412],[92.72113,12.28451],[92.72102,12.28947],[92.72231,12.29011],[92.72308,12.29102],[92.72238,12.29244],[92.72273,12.29475],[92.72232,12.29595],[92.72092,12.29596],[92.71878,12.29518],[92.71726,12.29673],[92.71537,12.29596],[92.71313,12.29687],[92.71044,12.29706]]],[[[92.76842,12.28863],[92.76885,12.28955],[92.76942,12.29049],[92.77009,12.29199],[92.77107,12.29357],[92.77099,12.29381],[92.77068,12.29406],[92.77028,12.29479],[92.77008,12.295],[92.76988,12.29509],[92.76953,12.29509],[92.76886,12.29451],[92.7684,12.29329],[92.76793,12.29274],[92.7676,12.29191],[92.76711,12.2912],[92.76662,12.29071],[92.76608,12.29001],[92.76595,12.28957],[92.76594,12.28932],[92.76615,12.289],[92.76638,12.28885],[92.76754,12.2885],[92.76827,12.28846],[92.76842,12.28863]]],[[[92.76404,12.29664],[92.76437,12.29673],[92.76486,12.29714],[92.76496,12.2973],[92.76509,12.29763],[92.76511,12.29848],[92.76516,12.29881],[92.76512,12.29913],[92.76502,12.29928],[92.76498,12.2994],[92.76491,12.29947],[92.7648,12.29949],[92.76459,12.2995],[92.76448,12.29927],[92.76423,12.299],[92.76395,12.29875],[92.76352,12.29845],[92.76301,12.29796],[92.76273,12.29746],[92.76272,12.29717],[92.76296,12.29682],[92.76309,12.29673],[92.76348,12.2966],[92.76371,12.29657],[92.76404,12.29664]]],[[[92.8841,12.29035],[92.88159,12.29076],[92.88055,12.29076],[92.8797,12.29027],[92.87955,12.28928],[92.87977,12.28892],[92.8789,12.28848],[92.87854,12.28802],[92.87809,12.28809],[92.87772,12.28793],[92.87755,12.28793],[92.87781,12.28816],[92.87825,12.2889],[92.87859,12.28993],[92.8785,12.29021],[92.87834,12.29023],[92.87809,12.29003],[92.8771,12.28877],[92.87714,12.2881],[92.8773,12.28788],[92.87732,12.28767],[92.87712,12.28762],[92.87698,12.28746],[92.87702,12.28698],[92.8769,12.28646],[92.87707,12.28574],[92.87688,12.28491],[92.87688,12.28433],[92.8769,12.28403],[92.87747,12.28448],[92.87801,12.28434],[92.87844,12.28407],[92.87872,12.28378],[92.87901,12.28324],[92.88022,12.28222],[92.88076,12.28165],[92.88136,12.28032],[92.88163,12.28027],[92.88173,12.28039],[92.88141,12.28084],[92.88122,12.28161],[92.88128,12.28208],[92.88149,12.28236],[92.88196,12.28245],[92.8826,12.28217],[92.88339,12.28149],[92.88357,12.28145],[92.88365,12.28153],[92.88381,12.28069],[92.88369,12.28034],[92.88403,12.28002],[92.88452,12.27976],[92.88473,12.27994],[92.88537,12.28106],[92.8854,12.28154],[92.88592,12.28289],[92.88781,12.28465],[92.88791,12.28567],[92.88781,12.28641],[92.88752,12.28659],[92.88693,12.28768],[92.8862,12.28845],[92.88545,12.28906],[92.88527,12.28949],[92.88516,12.29011],[92.88501,12.29028],[92.8841,12.29035]]],[[[92.89122,12.29811],[92.89118,12.2982],[92.89107,12.29825],[92.89063,12.29814],[92.89039,12.29799],[92.89018,12.29777],[92.88993,12.29768],[92.88968,12.29753],[92.88957,12.29734],[92.88934,12.29718],[92.88899,12.29707],[92.88878,12.29685],[92.88854,12.29672],[92.88838,12.29658],[92.88828,12.29624],[92.88793,12.29597],[92.88789,12.29581],[92.88779,12.29562],[92.88757,12.29538],[92.88743,12.2949],[92.88708,12.29453],[92.88692,12.29398],[92.88692,12.29382],[92.88722,12.29346],[92.88777,12.29332],[92.88797,12.29312],[92.88818,12.29305],[92.8889,12.29306],[92.88947,12.29311],[92.88965,12.29317],[92.8899,12.29336],[92.89016,12.29333],[92.89065,12.29343],[92.89091,12.29368],[92.89125,12.29456],[92.89122,12.29486],[92.89124,12.29509],[92.89137,12.2957],[92.89134,12.29619],[92.89157,12.29648],[92.89166,12.29669],[92.89161,12.2975],[92.89156,12.29769],[92.89148,12.29785],[92.89137,12.29795],[92.89126,12.29795],[92.89122,12.29811]]],[[[92.88174,12.29715],[92.88149,12.29724],[92.88138,12.29736],[92.8812,12.29788],[92.88141,12.29823],[92.88199,12.29856],[92.88218,12.2988],[92.8822,12.29901],[92.88204,12.29966],[92.88186,12.29988],[92.88169,12.30023],[92.88134,12.30051],[92.88049,12.30082],[92.88005,12.30072],[92.87989,12.30058],[92.87924,12.30044],[92.87899,12.30029],[92.87845,12.29975],[92.87829,12.29888],[92.87801,12.2981],[92.87751,12.29756],[92.87675,12.29688],[92.87612,12.29561],[92.87599,12.29521],[92.87603,12.29479],[92.87636,12.29417],[92.87657,12.2941],[92.87716,12.29409],[92.87752,12.2943],[92.87794,12.294],[92.87827,12.29392],[92.87845,12.29397],[92.87919,12.29454],[92.87935,12.29459],[92.8794,12.29469],[92.87974,12.29482],[92.88023,12.29526],[92.88046,12.29537],[92.88107,12.29547],[92.88133,12.29541],[92.88153,12.29543],[92.88185,12.29533],[92.88204,12.29535],[92.88281,12.29576],[92.88383,12.29607],[92.88402,12.29615],[92.8844,12.29646],[92.88458,12.29672],[92.88473,12.29701],[92.88463,12.29721],[92.88435,12.29725],[92.88394,12.29711],[92.88318,12.29702],[92.8827,12.29712],[92.88231,12.29704],[92.88174,12.29715]]],[[[92.81047,12.31295],[92.8017,12.31135],[92.80077,12.30825],[92.795,12.30359],[92.79097,12.30404],[92.78946,12.30803],[92.78462,12.31068],[92.77692,12.30971],[92.77078,12.31301],[92.76858,12.30888],[92.76695,12.2972],[92.76998,12.29651],[92.77189,12.30198],[92.77538,12.30119],[92.77723,12.29543],[92.77413,12.29503],[92.77383,12.29351],[92.77846,12.29112],[92.7789,12.28842],[92.78169,12.28661],[92.77969,12.28315],[92.78384,12.28106],[92.7844,12.27919],[92.78587,12.28069],[92.78768,12.28024],[92.78433,12.27899],[92.78389,12.28068],[92.77886,12.28328],[92.77778,12.2766],[92.77969,12.27398],[92.778,12.27246],[92.77953,12.27414],[92.7774,12.27668],[92.77807,12.27784],[92.77682,12.27886],[92.7748,12.27569],[92.77401,12.28028],[92.7709,12.27238],[92.76596,12.26819],[92.76324,12.26248],[92.75864,12.26772],[92.75645,12.26507],[92.75642,12.26926],[92.75099,12.27477],[92.74939,12.27409],[92.74723,12.26667],[92.74824,12.26248],[92.74114,12.24538],[92.74176,12.24415],[92.74382,12.2455],[92.7472,12.24377],[92.74643,12.23512],[92.75,12.23243],[92.75725,12.23435],[92.75994,12.23715],[92.75887,12.23321],[92.76199,12.2326],[92.76595,12.24326],[92.76942,12.24291],[92.76848,12.24622],[92.76981,12.24303],[92.76624,12.24298],[92.76479,12.23705],[92.77081,12.24157],[92.76897,12.23958],[92.76818,12.23417],[92.76988,12.23087],[92.76787,12.22863],[92.76687,12.22369],[92.76862,12.22158],[92.76645,12.22242],[92.76362,12.21253],[92.76398,12.20901],[92.76878,12.20127],[92.76556,12.19271],[92.7675,12.18967],[92.76657,12.1851],[92.76426,12.18183],[92.76443,12.17647],[92.76073,12.16839],[92.76068,12.16496],[92.76346,12.16524],[92.75855,12.15939],[92.75806,12.15628],[92.75904,12.15645],[92.75667,12.15149],[92.75825,12.14567],[92.75233,12.13909],[92.74584,12.12419],[92.7441,12.11319],[92.73777,12.09754],[92.73877,12.08131],[92.74106,12.08274],[92.74305,12.08054],[92.74087,12.08202],[92.73923,12.07969],[92.74232,12.0757],[92.74721,12.07413],[92.74894,12.07631],[92.75062,12.07446],[92.75318,12.07599],[92.75415,12.08035],[92.75402,12.07677],[92.75238,12.07504],[92.75404,12.07585],[92.75531,12.0796],[92.75784,12.0815],[92.75938,12.08675],[92.75777,12.09094],[92.75895,12.09319],[92.76049,12.09307],[92.76,12.09543],[92.76357,12.09679],[92.7623,12.09742],[92.76315,12.09891],[92.76184,12.09884],[92.76234,12.10079],[92.76336,12.09962],[92.76258,12.09741],[92.76378,12.09662],[92.76033,12.09535],[92.76068,12.0929],[92.75882,12.09157],[92.76171,12.0918],[92.76126,12.09028],[92.76338,12.09015],[92.76482,12.09491],[92.76376,12.09014],[92.75906,12.09107],[92.76036,12.08907],[92.75817,12.08139],[92.75205,12.0744],[92.75796,12.07502],[92.75968,12.07811],[92.75746,12.07096],[92.76345,12.06322],[92.76744,12.06754],[92.77107,12.0676],[92.77328,12.07089],[92.77194,12.07264],[92.77813,12.07396],[92.78104,12.08003],[92.78516,12.0783],[92.78795,12.07877],[92.78819,12.08041],[92.79206,12.07897],[92.79121,12.08699],[92.79549,12.0863],[92.79521,12.09037],[92.79684,12.09249],[92.80079,12.09354],[92.79936,12.09578],[92.78748,12.1008],[92.78363,12.10603],[92.78733,12.10341],[92.79309,12.10528],[92.79235,12.10392],[92.79354,12.10354],[92.7979,12.10701],[92.79705,12.11135],[92.79953,12.11411],[92.7976,12.1115],[92.79816,12.10831],[92.80344,12.10405],[92.80887,12.10293],[92.81153,12.10695],[92.81442,12.10511],[92.81811,12.11318],[92.81723,12.11494],[92.8136,12.11538],[92.8124,12.11886],[92.80739,12.12427],[92.80287,12.12629],[92.80306,12.13068],[92.80149,12.13199],[92.81133,12.12721],[92.81455,12.12732],[92.81642,12.12461],[92.81818,12.12756],[92.81533,12.13855],[92.81879,12.13802],[92.82175,12.14073],[92.8221,12.14243],[92.82018,12.14237],[92.81874,12.14529],[92.82116,12.14985],[92.82478,12.15125],[92.82693,12.15614],[92.82004,12.15909],[92.81723,12.16312],[92.81147,12.16028],[92.80713,12.15994],[92.80706,12.16176],[92.80233,12.16428],[92.80214,12.16594],[92.80384,12.16525],[92.80369,12.16755],[92.80108,12.16838],[92.80109,12.17059],[92.80461,12.16822],[92.80342,12.16944],[92.80677,12.17116],[92.80375,12.16932],[92.8053,12.16848],[92.80393,12.16761],[92.80389,12.16458],[92.80206,12.16533],[92.80332,12.16333],[92.80765,12.16186],[92.80757,12.16007],[92.81723,12.16372],[92.82077,12.15976],[92.82237,12.16095],[92.8214,12.16484],[92.82402,12.16606],[92.82354,12.16868],[92.82077,12.17085],[92.82239,12.17814],[92.82298,12.17572],[92.82117,12.17089],[92.82421,12.16893],[92.82446,12.16642],[92.82728,12.16346],[92.82962,12.16656],[92.83514,12.16692],[92.83666,12.16563],[92.83634,12.16213],[92.8387,12.15985],[92.84386,12.15955],[92.84411,12.15788],[92.84585,12.15767],[92.84466,12.15115],[92.84275,12.14892],[92.84446,12.14745],[92.84587,12.14773],[92.85484,12.16179],[92.85444,12.16495],[92.85002,12.16504],[92.85047,12.16804],[92.85452,12.17064],[92.85217,12.17748],[92.85486,12.18066],[92.85162,12.1843],[92.85538,12.18429],[92.8566,12.18643],[92.85429,12.18738],[92.85523,12.18885],[92.85414,12.19103],[92.85215,12.19184],[92.84734,12.18929],[92.84584,12.19012],[92.84376,12.18624],[92.84002,12.18526],[92.84343,12.18647],[92.84715,12.19384],[92.847,12.19633],[92.84468,12.19771],[92.84472,12.20081],[92.84288,12.20145],[92.83936,12.19951],[92.83653,12.20204],[92.82677,12.203],[92.82869,12.20874],[92.833,12.2064],[92.83452,12.21108],[92.83166,12.21288],[92.8328,12.21453],[92.84027,12.21245],[92.83994,12.21415],[92.83607,12.21433],[92.84047,12.21909],[92.83837,12.21671],[92.83617,12.21907],[92.8345,12.218],[92.83343,12.22006],[92.83185,12.21887],[92.82925,12.2196],[92.82733,12.22251],[92.82355,12.22472],[92.82154,12.22409],[92.82037,12.22679],[92.81829,12.22739],[92.81897,12.23031],[92.81703,12.23245],[92.81005,12.23346],[92.80572,12.23076],[92.80262,12.23264],[92.80592,12.23107],[92.81114,12.23408],[92.81282,12.23276],[92.81739,12.23296],[92.81938,12.23019],[92.8187,12.2275],[92.82073,12.227],[92.82187,12.22436],[92.82393,12.225],[92.82416,12.22368],[92.8273,12.22292],[92.82928,12.21984],[92.83184,12.21902],[92.83339,12.22034],[92.83462,12.21822],[92.83622,12.21927],[92.83848,12.21697],[92.84059,12.21939],[92.84006,12.21708],[92.83641,12.21434],[92.83982,12.21445],[92.84053,12.21233],[92.83318,12.21438],[92.83206,12.21291],[92.83491,12.21146],[92.83324,12.20589],[92.82908,12.20848],[92.82756,12.203],[92.83647,12.20254],[92.83997,12.19993],[92.8446,12.2019],[92.84576,12.19768],[92.85316,12.20433],[92.85589,12.20085],[92.86207,12.20088],[92.86135,12.19752],[92.8654,12.19679],[92.8674,12.19344],[92.87188,12.1947],[92.87456,12.1923],[92.88031,12.19344],[92.88286,12.19768],[92.88166,12.20317],[92.87674,12.20282],[92.8736,12.20433],[92.87329,12.20887],[92.87089,12.21252],[92.86864,12.20886],[92.86754,12.20985],[92.8688,12.21096],[92.86727,12.21179],[92.8645,12.20879],[92.8672,12.21195],[92.86897,12.211],[92.86824,12.20927],[92.87049,12.21275],[92.87358,12.21229],[92.8715,12.22546],[92.86817,12.22843],[92.86749,12.22686],[92.86644,12.23136],[92.86742,12.23205],[92.86347,12.2319],[92.86696,12.23232],[92.86149,12.2367],[92.86082,12.24072],[92.85787,12.2445],[92.85948,12.2483],[92.85842,12.24911],[92.8648,12.25226],[92.86901,12.25169],[92.86648,12.25488],[92.86776,12.25732],[92.86673,12.25634],[92.86277,12.26023],[92.86102,12.25968],[92.86216,12.26143],[92.8614,12.25967],[92.86549,12.26094],[92.86332,12.26135],[92.86421,12.26241],[92.86277,12.26327],[92.86158,12.26252],[92.86196,12.26357],[92.86566,12.26111],[92.8632,12.26049],[92.86425,12.25831],[92.86812,12.25726],[92.86696,12.25499],[92.86963,12.25097],[92.87525,12.25061],[92.88141,12.25507],[92.88246,12.25758],[92.88661,12.25874],[92.88836,12.25654],[92.88953,12.26134],[92.88563,12.26161],[92.88604,12.26472],[92.88986,12.26326],[92.89126,12.26644],[92.88991,12.26937],[92.88664,12.26844],[92.88681,12.27079],[92.88509,12.27047],[92.8838,12.26961],[92.88457,12.26575],[92.88312,12.26225],[92.88206,12.26253],[92.8815,12.27395],[92.87845,12.27728],[92.87913,12.28164],[92.88048,12.2812],[92.87765,12.28408],[92.87632,12.28212],[92.87477,12.28308],[92.8741,12.28109],[92.87223,12.28086],[92.87438,12.2817],[92.87435,12.28324],[92.8762,12.28245],[92.8768,12.28712],[92.87309,12.28763],[92.87228,12.29199],[92.86962,12.28989],[92.86786,12.29029],[92.86774,12.29239],[92.87029,12.29472],[92.86652,12.29319],[92.8658,12.28743],[92.86344,12.28678],[92.86573,12.288],[92.866,12.29317],[92.87152,12.29539],[92.86971,12.29902],[92.87214,12.30017],[92.87223,12.30171],[92.86845,12.30092],[92.86757,12.30241],[92.86553,12.30111],[92.8601,12.30399],[92.85777,12.30298],[92.8575,12.30457],[92.85524,12.30517],[92.85247,12.3036],[92.85438,12.29963],[92.85232,12.30329],[92.849,12.30205],[92.84836,12.29955],[92.85024,12.29465],[92.85338,12.29212],[92.85224,12.2856],[92.85473,12.28839],[92.8544,12.28455],[92.85614,12.28378],[92.85375,12.28122],[92.85601,12.28353],[92.85418,12.28451],[92.85485,12.28792],[92.85225,12.28534],[92.85101,12.28755],[92.85164,12.28375],[92.85035,12.28335],[92.85316,12.29182],[92.84984,12.29424],[92.847,12.30366],[92.84271,12.30426],[92.84443,12.30083],[92.84326,12.29941],[92.84515,12.29751],[92.84402,12.29629],[92.84477,12.29768],[92.84257,12.29972],[92.84063,12.29744],[92.84394,12.30075],[92.84262,12.30339],[92.83642,12.30319],[92.83407,12.29978],[92.83519,12.29727],[92.83288,12.29655],[92.83356,12.29481],[92.83242,12.29544],[92.83125,12.29362],[92.83212,12.29202],[92.83102,12.29387],[92.83467,12.29766],[92.83273,12.30076],[92.82894,12.29932],[92.8238,12.30533],[92.81047,12.31295]]],[[[92.93349,12.31101],[92.93337,12.31138],[92.93255,12.30989],[92.92934,12.30727],[92.92805,12.3043],[92.92874,12.30267],[92.92797,12.29994],[92.92852,12.29888],[92.92773,12.29836],[92.92793,12.29745],[92.92742,12.29639],[92.92884,12.29508],[92.92887,12.29421],[92.92849,12.29307],[92.92721,12.29341],[92.92704,12.29269],[92.92724,12.29114],[92.92815,12.29046],[92.92897,12.29068],[92.92976,12.28857],[92.92924,12.28329],[92.92869,12.28255],[92.92785,12.28265],[92.9282,12.28293],[92.92777,12.28377],[92.92688,12.28201],[92.92735,12.28118],[92.92693,12.28011],[92.92787,12.27898],[92.92754,12.27809],[92.92746,12.27897],[92.92612,12.28087],[92.92456,12.2805],[92.92331,12.28378],[92.92227,12.28455],[92.92274,12.28713],[92.92182,12.28803],[92.92054,12.28792],[92.92016,12.28713],[92.92113,12.28457],[92.91917,12.28222],[92.91779,12.28244],[92.91844,12.28356],[92.918,12.28695],[92.91917,12.29061],[92.9187,12.2914],[92.91811,12.29145],[92.91763,12.28984],[92.91677,12.28946],[92.91566,12.28978],[92.91444,12.29094],[92.91539,12.29259],[92.91333,12.29119],[92.91427,12.29354],[92.91337,12.29633],[92.91379,12.29753],[92.91336,12.29908],[92.91399,12.30116],[92.91394,12.30323],[92.91339,12.3041],[92.91271,12.30343],[92.91183,12.2995],[92.91053,12.29889],[92.91104,12.29781],[92.90993,12.29473],[92.9091,12.29389],[92.90624,12.29269],[92.90305,12.29314],[92.90205,12.29264],[92.90091,12.28824],[92.90124,12.28216],[92.9003,12.28111],[92.90193,12.27897],[92.90377,12.27954],[92.90413,12.27911],[92.90339,12.27717],[92.90073,12.2757],[92.89974,12.27418],[92.89952,12.27278],[92.90037,12.27122],[92.90225,12.27068],[92.90416,12.27141],[92.90487,12.27224],[92.90544,12.27464],[92.90662,12.27537],[92.90812,12.27454],[92.90746,12.27395],[92.90807,12.27344],[92.91154,12.27313],[92.91245,12.27382],[92.9136,12.27364],[92.91012,12.27193],[92.90656,12.27239],[92.90439,12.27042],[92.90488,12.26947],[92.90679,12.26869],[92.90839,12.2687],[92.91016,12.26981],[92.91118,12.26944],[92.91161,12.26852],[92.91061,12.26648],[92.91043,12.26466],[92.91148,12.26297],[92.91326,12.26553],[92.91323,12.26634],[92.91603,12.26848],[92.91629,12.26819],[92.91443,12.2644],[92.91662,12.26375],[92.91987,12.26914],[92.92024,12.26503],[92.92187,12.25885],[92.919,12.25139],[92.91789,12.24659],[92.91751,12.23842],[92.91875,12.2337],[92.9201,12.23133],[92.92215,12.22928],[92.92284,12.22951],[92.92466,12.23177],[92.9292,12.2386],[92.92934,12.24516],[92.93017,12.24885],[92.92906,12.24976],[92.92583,12.24977],[92.92649,12.25249],[92.92762,12.2531],[92.92787,12.25456],[92.9305,12.25815],[92.93142,12.26024],[92.93612,12.26219],[92.93682,12.26602],[92.93862,12.26786],[92.93823,12.27021],[92.94012,12.2712],[92.94142,12.27379],[92.94302,12.2748],[92.94303,12.27897],[92.93927,12.28387],[92.9364,12.28563],[92.93396,12.28936],[92.93462,12.29262],[92.93677,12.29498],[92.93704,12.2977],[92.93593,12.30447],[92.93444,12.30683],[92.93441,12.30827],[92.93375,12.30898],[92.93423,12.30928],[92.93374,12.3112],[92.93349,12.31101]]],[[[92.85791,12.33483],[92.85726,12.33586],[92.85728,12.3372],[92.85751,12.33798],[92.85845,12.33842],[92.85853,12.33869],[92.85755,12.34002],[92.85688,12.33992],[92.85663,12.33924],[92.85672,12.33618],[92.85613,12.33428],[92.85645,12.33328],[92.85539,12.33268],[92.85504,12.33205],[92.85604,12.33058],[92.85845,12.3298],[92.85838,12.32936],[92.85719,12.32831],[92.85773,12.32686],[92.85832,12.32627],[92.85852,12.32537],[92.85948,12.32529],[92.85999,12.32428],[92.86111,12.32373],[92.86089,12.32285],[92.85986,12.32247],[92.86048,12.32137],[92.86028,12.32011],[92.86066,12.32005],[92.86087,12.32085],[92.86165,12.32088],[92.86122,12.32144],[92.8614,12.32174],[92.86184,12.32113],[92.86175,12.32066],[92.86107,12.32062],[92.86052,12.31978],[92.86059,12.31907],[92.85885,12.31813],[92.85669,12.31816],[92.85597,12.31774],[92.85588,12.31606],[92.85617,12.31465],[92.85823,12.31406],[92.86041,12.31434],[92.86255,12.31301],[92.86376,12.31387],[92.86418,12.31594],[92.8656,12.31595],[92.86572,12.31515],[92.86629,12.31461],[92.86696,12.31454],[92.86695,12.31414],[92.86746,12.31375],[92.86901,12.31459],[92.86896,12.31584],[92.86958,12.31734],[92.87107,12.31825],[92.87167,12.31831],[92.8744,12.3177],[92.8737,12.31688],[92.87368,12.31626],[92.87549,12.31537],[92.87595,12.31463],[92.87559,12.31418],[92.87662,12.31353],[92.87715,12.31283],[92.87777,12.31287],[92.87843,12.31362],[92.87814,12.31428],[92.87953,12.31522],[92.87887,12.31642],[92.87945,12.3172],[92.87958,12.318],[92.88139,12.31972],[92.88219,12.31953],[92.8838,12.32059],[92.88528,12.3228],[92.88589,12.32259],[92.88737,12.32072],[92.88893,12.3198],[92.88966,12.31755],[92.8904,12.31695],[92.89068,12.31712],[92.89035,12.31829],[92.89126,12.31908],[92.89304,12.31845],[92.8937,12.31789],[92.89405,12.31796],[92.89498,12.31727],[92.89566,12.31797],[92.89544,12.31884],[92.89583,12.31921],[92.89563,12.31968],[92.89618,12.31987],[92.89605,12.32017],[92.8966,12.32053],[92.89663,12.32101],[92.89703,12.32124],[92.89684,12.32152],[92.89735,12.32181],[92.89764,12.32261],[92.89819,12.32279],[92.89887,12.32214],[92.89924,12.32308],[92.90008,12.3235],[92.89871,12.32446],[92.8982,12.32563],[92.8978,12.32562],[92.89741,12.326],[92.89758,12.32629],[92.89734,12.32666],[92.89594,12.32703],[92.89515,12.32698],[92.89356,12.32578],[92.89049,12.32483],[92.88863,12.32494],[92.8871,12.32588],[92.88587,12.32727],[92.88611,12.32814],[92.88782,12.32892],[92.88776,12.3305],[92.88643,12.33153],[92.88523,12.33196],[92.88308,12.33175],[92.87742,12.33055],[92.87363,12.329],[92.87136,12.32915],[92.87094,12.32869],[92.87094,12.32925],[92.86933,12.3301],[92.86861,12.32907],[92.86858,12.32949],[92.86901,12.33019],[92.86887,12.33052],[92.86499,12.33294],[92.86434,12.33225],[92.8649,12.33143],[92.86487,12.33075],[92.86445,12.33079],[92.86332,12.33183],[92.86314,12.33167],[92.86359,12.33086],[92.86316,12.33063],[92.86338,12.33088],[92.86289,12.3318],[92.8632,12.33207],[92.86475,12.33098],[92.86411,12.33236],[92.86483,12.33316],[92.86438,12.33368],[92.86368,12.33303],[92.86312,12.3331],[92.86279,12.33417],[92.86247,12.33439],[92.86097,12.33343],[92.86226,12.33457],[92.86294,12.33437],[92.86329,12.33319],[92.86378,12.33332],[92.86426,12.33398],[92.86402,12.33472],[92.86213,12.33607],[92.86133,12.33628],[92.8606,12.33545],[92.85942,12.33476],[92.85791,12.33483]]],[[[92.90596,12.33784],[92.90623,12.33846],[92.90625,12.33872],[92.90612,12.33912],[92.90608,12.33973],[92.90596,12.34008],[92.90563,12.3405],[92.90508,12.34098],[92.90473,12.34117],[92.90435,12.34119],[92.90392,12.34111],[92.90362,12.34089],[92.90354,12.34063],[92.90362,12.34022],[92.90362,12.34002],[92.90371,12.33961],[92.90426,12.33808],[92.9045,12.33782],[92.90514,12.33777],[92.90523,12.3375],[92.90563,12.33729],[92.90592,12.33731],[92.90602,12.33742],[92.90612,12.33762],[92.90596,12.33784]]],[[[92.91264,12.3395],[92.91267,12.33995],[92.91222,12.34061],[92.91232,12.34081],[92.9129,12.34097],[92.9145,12.34268],[92.91482,12.34327],[92.91506,12.34428],[92.91626,12.34636],[92.91774,12.34805],[92.91816,12.34902],[92.9182,12.34954],[92.91848,12.34978],[92.919,12.35079],[92.91883,12.35103],[92.91907,12.35117],[92.91897,12.35165],[92.91755,12.35422],[92.91668,12.35508],[92.91471,12.35612],[92.91393,12.35637],[92.91323,12.35637],[92.91259,12.35605],[92.9114,12.35453],[92.91055,12.35377],[92.90897,12.35117],[92.90826,12.34843],[92.90826,12.34743],[92.90854,12.34659],[92.90826,12.34625],[92.90826,12.34573],[92.90861,12.34514],[92.90823,12.34462],[92.90786,12.3436],[92.90793,12.34284],[92.90759,12.34276],[92.90753,12.34242],[92.90774,12.34221],[92.90674,12.34167],[92.90756,12.34142],[92.90792,12.34103],[92.90765,12.34083],[92.90836,12.33956],[92.90878,12.33916],[92.90963,12.3378],[92.91004,12.338],[92.91042,12.33771],[92.91088,12.33935],[92.911,12.33955],[92.91138,12.3393],[92.91095,12.3366],[92.91128,12.33627],[92.9113,12.33585],[92.91103,12.3354],[92.91085,12.3355],[92.91057,12.33523],[92.91039,12.33545],[92.90987,12.33423],[92.90993,12.33336],[92.91033,12.33222],[92.91112,12.33163],[92.91153,12.33155],[92.91174,12.33175],[92.91197,12.33175],[92.91241,12.33259],[92.91262,12.33233],[92.91248,12.33172],[92.91265,12.33066],[92.91299,12.33091],[92.91311,12.33121],[92.91292,12.33148],[92.91309,12.33171],[92.91312,12.33216],[92.91281,12.33278],[92.91273,12.33365],[92.91232,12.33441],[92.91235,12.3346],[92.91214,12.3348],[92.91232,12.33551],[92.91267,12.33569],[92.91232,12.33607],[92.9119,12.33617],[92.91193,12.33769],[92.91264,12.3395]]],[[[93.85312,12.30022],[93.85278,12.30083],[93.85201,12.30138],[93.85099,12.30202],[93.85032,12.30208],[93.84988,12.30152],[93.84988,12.3009],[93.84916,12.29936],[93.84873,12.29885],[93.84834,12.29874],[93.84737,12.29911],[93.84616,12.2988],[93.84526,12.2974],[93.84414,12.29668],[93.84367,12.29549],[93.84274,12.2953],[93.84231,12.29485],[93.84162,12.29488],[93.84088,12.29546],[93.84026,12.29538],[93.84014,12.29454],[93.84045,12.29344],[93.83995,12.29294],[93.83999,12.29267],[93.84018,12.29233],[93.84146,12.29169],[93.84181,12.29077],[93.84173,12.2891],[93.8415,12.28887],[93.84022,12.28887],[93.837,12.28631],[93.83693,12.28582],[93.83716,12.28539],[93.83826,12.28469],[93.83819,12.28374],[93.83613,12.28205],[93.83547,12.27977],[93.83405,12.27816],[93.83443,12.27709],[93.83519,12.27682],[93.83571,12.27617],[93.83601,12.27501],[93.83684,12.27363],[93.83805,12.2742],[93.83978,12.27347],[93.84137,12.27075],[93.84294,12.27071],[93.84389,12.26966],[93.84536,12.26917],[93.8511,12.26895],[93.85313,12.26978],[93.85781,12.27077],[93.8609,12.27197],[93.86162,12.27204],[93.86256,12.27152],[93.86339,12.27156],[93.86487,12.27265],[93.86617,12.27404],[93.867,12.27538],[93.86721,12.27896],[93.86642,12.28061],[93.86765,12.28167],[93.86777,12.28225],[93.86843,12.28311],[93.86853,12.28523],[93.868,12.28603],[93.86711,12.28618],[93.86717,12.28699],[93.86564,12.28822],[93.86569,12.29036],[93.8651,12.29167],[93.86465,12.29418],[93.8628,12.29509],[93.86133,12.29664],[93.86088,12.29671],[93.8603,12.2984],[93.85958,12.29896],[93.85845,12.29926],[93.85774,12.30069],[93.85598,12.30048],[93.85499,12.30113],[93.8545,12.3011],[93.85369,12.30022],[93.85312,12.30022]]],[[[92.89715,12.39612],[92.89717,12.39653],[92.89713,12.39676],[92.89699,12.39683],[92.89678,12.39677],[92.8967,12.39664],[92.89639,12.39645],[92.89625,12.3963],[92.89622,12.39612],[92.89596,12.39629],[92.89553,12.39618],[92.89508,12.39636],[92.89491,12.39621],[92.89465,12.39622],[92.89444,12.39595],[92.89452,12.39582],[92.89448,12.39571],[92.89436,12.39568],[92.89453,12.3954],[92.89445,12.39527],[92.89465,12.39511],[92.89457,12.39504],[92.89457,12.39493],[92.89452,12.3949],[92.89464,12.39485],[92.89465,12.39475],[92.89459,12.39465],[92.89461,12.39451],[92.89436,12.39431],[92.89464,12.39402],[92.89462,12.39373],[92.89495,12.39349],[92.89516,12.39311],[92.89571,12.39274],[92.89573,12.39268],[92.89592,12.39247],[92.8962,12.39243],[92.89659,12.39201],[92.89676,12.39208],[92.89688,12.39232],[92.89697,12.39238],[92.89697,12.39256],[92.89709,12.39273],[92.89713,12.39295],[92.89705,12.39305],[92.89702,12.39324],[92.89726,12.39331],[92.89718,12.39359],[92.89719,12.39381],[92.89729,12.39393],[92.89715,12.3942],[92.8972,12.3943],[92.8972,12.39472],[92.89732,12.39491],[92.89724,12.39521],[92.89712,12.39543],[92.89715,12.39612]]],[[[92.86497,12.40857],[92.86483,12.40865],[92.86472,12.40859],[92.86459,12.40861],[92.86452,12.4086],[92.86446,12.4086],[92.86423,12.40848],[92.86413,12.40854],[92.86407,12.40848],[92.86408,12.40838],[92.86401,12.40831],[92.86394,12.40827],[92.86393,12.40821],[92.86393,12.40794],[92.86409,12.40788],[92.86411,12.40779],[92.86426,12.40772],[92.86431,12.40774],[92.86442,12.40773],[92.86452,12.40768],[92.86461,12.40771],[92.86467,12.40775],[92.86477,12.40772],[92.86509,12.40794],[92.86513,12.40799],[92.86521,12.40807],[92.86522,12.40817],[92.86518,12.40822],[92.86519,12.40831],[92.86512,12.40834],[92.86507,12.40853],[92.86497,12.40857]]],[[[92.88753,12.40807],[92.88699,12.40844],[92.88532,12.40729],[92.88396,12.40502],[92.88364,12.40346],[92.88417,12.40123],[92.884,12.40016],[92.88249,12.39884],[92.88097,12.39838],[92.87904,12.39864],[92.87543,12.40038],[92.87339,12.40372],[92.87317,12.40576],[92.87271,12.40607],[92.87222,12.40576],[92.87202,12.40612],[92.87114,12.40566],[92.87059,12.40576],[92.86999,12.40508],[92.8699,12.40421],[92.86919,12.40376],[92.86733,12.40348],[92.86581,12.40368],[92.86546,12.40212],[92.86578,12.40144],[92.86518,12.4022],[92.86544,12.40333],[92.86403,12.40394],[92.86258,12.40517],[92.86235,12.40574],[92.86124,12.40579],[92.85867,12.40691],[92.85435,12.40935],[92.85101,12.40855],[92.84732,12.40723],[92.84549,12.40606],[92.84421,12.40373],[92.84305,12.40272],[92.8427,12.40111],[92.84315,12.40013],[92.84391,12.3953],[92.84462,12.39491],[92.84731,12.39494],[92.84869,12.39429],[92.84858,12.394],[92.84893,12.3941],[92.8512,12.39233],[92.85363,12.38946],[92.85491,12.38886],[92.85656,12.38954],[92.86018,12.38924],[92.86052,12.39148],[92.86092,12.39198],[92.86041,12.38992],[92.86087,12.38862],[92.86052,12.38861],[92.86034,12.38909],[92.86003,12.38858],[92.8603,12.38676],[92.8601,12.38557],[92.85949,12.38472],[92.85906,12.38498],[92.85846,12.38465],[92.85857,12.38414],[92.85897,12.38389],[92.85989,12.38164],[92.8606,12.38076],[92.86442,12.37928],[92.8669,12.37748],[92.8677,12.37767],[92.86843,12.38028],[92.87202,12.38476],[92.87294,12.38488],[92.87493,12.3838],[92.87549,12.3831],[92.87735,12.38255],[92.87777,12.38211],[92.87777,12.38409],[92.87861,12.38466],[92.87945,12.38424],[92.88096,12.38249],[92.88153,12.38114],[92.88102,12.38045],[92.88136,12.37861],[92.88079,12.37733],[92.88049,12.37504],[92.88137,12.37388],[92.88226,12.3737],[92.88425,12.37516],[92.88482,12.37639],[92.8846,12.37689],[92.88513,12.37839],[92.88502,12.37912],[92.88533,12.37933],[92.88542,12.38137],[92.88542,12.38166],[92.88381,12.38276],[92.88343,12.38359],[92.88339,12.38574],[92.8826,12.38849],[92.88649,12.3913],[92.88965,12.39242],[92.89065,12.39422],[92.89227,12.39554],[92.89343,12.39736],[92.89328,12.39799],[92.89363,12.39923],[92.89463,12.40014],[92.89278,12.40073],[92.8914,12.4017],[92.89102,12.40233],[92.89143,12.40388],[92.89392,12.4063],[92.89427,12.40702],[92.894,12.40732],[92.88753,12.40807]]],[[[92.87534,12.40849],[92.87655,12.40857],[92.8774,12.40882],[92.87825,12.4092],[92.87931,12.40983],[92.88059,12.41069],[92.88043,12.41096],[92.87978,12.41094],[92.87765,12.41054],[92.87623,12.41017],[92.87384,12.40917],[92.87376,12.4089],[92.87391,12.40865],[92.87485,12.4085],[92.87534,12.40849]]],[[[92.88846,12.41304],[92.88841,12.41305],[92.88831,12.4129],[92.88823,12.41281],[92.88835,12.41275],[92.88843,12.41268],[92.88849,12.41271],[92.88854,12.41285],[92.88865,12.41289],[92.88866,12.41297],[92.88853,12.41295],[92.88846,12.41304]]],[[[92.89885,12.40908],[92.8988,12.40944],[92.89875,12.40952],[92.89865,12.4096],[92.89862,12.41026],[92.89869,12.41094],[92.89861,12.41145],[92.89851,12.41193],[92.89814,12.41219],[92.89787,12.41228],[92.89752,12.41219],[92.89712,12.41197],[92.89684,12.41177],[92.8966,12.41115],[92.89646,12.41063],[92.89657,12.41011],[92.89679,12.40955],[92.89683,12.40936],[92.89682,12.4093],[92.8969,12.40919],[92.89696,12.4092],[92.89695,12.40912],[92.89704,12.40897],[92.89707,12.40872],[92.8971,12.40863],[92.89707,12.40833],[92.89734,12.40823],[92.89749,12.40821],[92.89778,12.40806],[92.89777,12.40832],[92.89811,12.40816],[92.89826,12.40821],[92.89841,12.40819],[92.89844,12.40814],[92.8986,12.40808],[92.8987,12.40814],[92.89881,12.4084],[92.89885,12.40908]]],[[[92.88883,12.41427],[92.88858,12.41433],[92.88829,12.4145],[92.888,12.41414],[92.88795,12.41368],[92.88805,12.4134],[92.88828,12.41323],[92.88851,12.41319],[92.88864,12.41323],[92.88874,12.41333],[92.88877,12.41352],[92.88883,12.41366],[92.8891,12.41366],[92.88933,12.41391],[92.88944,12.41405],[92.88933,12.4142],[92.88928,12.41417],[92.88914,12.41402],[92.88912,12.41409],[92.88904,12.41426],[92.88898,12.41424],[92.88887,12.41416],[92.88883,12.41427]]],[[[92.90214,12.4133],[92.90205,12.41337],[92.90199,12.41326],[92.90183,12.41328],[92.90176,12.41313],[92.90162,12.41304],[92.90159,12.4129],[92.90154,12.41277],[92.90148,12.41268],[92.90145,12.41259],[92.90137,12.4125],[92.90134,12.41232],[92.90139,12.41219],[92.90134,12.41207],[92.90142,12.41199],[92.90153,12.41189],[92.9017,12.41194],[92.90191,12.41194],[92.90195,12.41201],[92.90201,12.41209],[92.90209,12.41215],[92.90215,12.41233],[92.90221,12.41236],[92.90224,12.41246],[92.90235,12.41251],[92.90241,12.41252],[92.90239,12.41272],[92.90249,12.4128],[92.90249,12.41296],[92.90254,12.41311],[92.90249,12.4132],[92.90231,12.41329],[92.90219,12.41321],[92.90214,12.4133]]],[[[92.88819,12.41477],[92.88804,12.41471],[92.88794,12.41476],[92.88787,12.41471],[92.88791,12.41457],[92.88795,12.41452],[92.88797,12.41442],[92.88818,12.41446],[92.88821,12.41457],[92.88822,12.41467],[92.88819,12.41477]]],[[[92.8621,12.41258],[92.86244,12.41257],[92.86254,12.41275],[92.86492,12.41278],[92.86565,12.41291],[92.86789,12.41378],[92.86838,12.41415],[92.86868,12.41484],[92.86835,12.41568],[92.86821,12.41654],[92.86816,12.41755],[92.86832,12.41867],[92.86796,12.41986],[92.86784,12.42013],[92.86762,12.42036],[92.86723,12.42058],[92.86563,12.42105],[92.86492,12.42121],[92.86464,12.4212],[92.8642,12.42094],[92.86302,12.41992],[92.86262,12.4197],[92.85932,12.41808],[92.85864,12.41789],[92.85828,12.41761],[92.85787,12.41709],[92.85769,12.41668],[92.85786,12.41581],[92.85801,12.41566],[92.85801,12.41545],[92.85823,12.4151],[92.85831,12.41475],[92.85999,12.41341],[92.86069,12.41298],[92.86161,12.41261],[92.8621,12.41258]]],[[[92.83246,12.42692],[92.83077,12.42692],[92.82948,12.42643],[92.82901,12.42601],[92.82857,12.42402],[92.82864,12.42274],[92.8296,12.42088],[92.83056,12.42041],[92.83254,12.41863],[92.83313,12.41831],[92.83405,12.41707],[92.8354,12.41673],[92.83594,12.41629],[92.83687,12.41603],[92.83767,12.41536],[92.83797,12.41455],[92.83769,12.41272],[92.83785,12.41204],[92.83828,12.41131],[92.83892,12.41132],[92.83949,12.41158],[92.84083,12.41405],[92.84276,12.4152],[92.84394,12.41398],[92.84777,12.41111],[92.8488,12.41093],[92.85035,12.41035],[92.85171,12.40958],[92.85203,12.40963],[92.85213,12.40992],[92.85259,12.41017],[92.85307,12.40992],[92.8534,12.41022],[92.85364,12.41083],[92.85328,12.41179],[92.85341,12.41208],[92.85427,12.41267],[92.85569,12.41324],[92.85827,12.41314],[92.85843,12.41331],[92.85515,12.41449],[92.85033,12.41779],[92.84722,12.41762],[92.84611,12.4178],[92.84499,12.41909],[92.84306,12.42042],[92.84264,12.42042],[92.84259,12.42012],[92.84288,12.41894],[92.84329,12.41826],[92.84285,12.41736],[92.84259,12.41586],[92.84199,12.41601],[92.84261,12.41789],[92.84206,12.42057],[92.84168,12.42112],[92.84003,12.4228],[92.83959,12.4223],[92.83956,12.42198],[92.84016,12.42037],[92.83989,12.42025],[92.83923,12.42171],[92.839,12.42112],[92.83911,12.42039],[92.8389,12.42037],[92.83871,12.42134],[92.83972,12.42312],[92.83729,12.42492],[92.83679,12.42445],[92.83611,12.42292],[92.83619,12.422],[92.83582,12.42249],[92.83582,12.42281],[92.83645,12.42438],[92.83699,12.42511],[92.83524,12.42605],[92.83246,12.42692]]],[[[92.903,12.42154],[92.90306,12.4218],[92.90331,12.42233],[92.90342,12.42304],[92.90338,12.42329],[92.90303,12.42377],[92.90158,12.42541],[92.90083,12.42612],[92.90062,12.4262],[92.90038,12.42623],[92.89964,12.4262],[92.89926,12.42608],[92.89888,12.42587],[92.8986,12.42563],[92.89851,12.42549],[92.89867,12.42499],[92.89876,12.42452],[92.89876,12.42421],[92.89855,12.42382],[92.8986,12.42361],[92.89829,12.42338],[92.8982,12.42322],[92.89821,12.42205],[92.89823,12.42177],[92.8983,12.42165],[92.89844,12.42154],[92.89891,12.42167],[92.89901,12.42153],[92.89917,12.42157],[92.89929,12.42154],[92.90003,12.4211],[92.90052,12.42097],[92.90131,12.42055],[92.90159,12.42047],[92.90216,12.42044],[92.90248,12.42053],[92.90281,12.42085],[92.90297,12.42125],[92.903,12.42154]]],[[[92.95618,12.43462],[92.95592,12.43546],[92.95738,12.43733],[92.95746,12.43774],[92.95705,12.43755],[92.95302,12.43442],[92.95131,12.43176],[92.95132,12.43082],[92.95219,12.43009],[92.95015,12.42962],[92.94869,12.42988],[92.94754,12.42896],[92.94775,12.42627],[92.94653,12.42321],[92.94644,12.42154],[92.94648,12.41843],[92.94734,12.41558],[92.94643,12.41611],[92.94636,12.41702],[92.94423,12.42014],[92.94005,12.42185],[92.93973,12.42253],[92.94052,12.42375],[92.93842,12.42316],[92.93711,12.42177],[92.935,12.4215],[92.93467,12.42069],[92.93358,12.42055],[92.93086,12.41835],[92.93108,12.41794],[92.93029,12.41718],[92.92985,12.41517],[92.9287,12.41376],[92.92645,12.40619],[92.92485,12.40408],[92.92484,12.40188],[92.92422,12.40083],[92.92451,12.39934],[92.92413,12.3984],[92.92454,12.39816],[92.92402,12.3974],[92.92361,12.39042],[92.92536,12.39061],[92.92786,12.3882],[92.92787,12.38613],[92.92774,12.38795],[92.92631,12.38872],[92.92669,12.3865],[92.9257,12.38685],[92.92528,12.38647],[92.92324,12.38258],[92.92295,12.38274],[92.92147,12.38106],[92.91792,12.37618],[92.91717,12.37138],[92.91755,12.37025],[92.91733,12.36931],[92.91699,12.3694],[92.91735,12.36924],[92.91703,12.36789],[92.91738,12.36654],[92.91613,12.36358],[92.91673,12.3628],[92.9209,12.3639],[92.92343,12.36307],[92.92559,12.36295],[92.92619,12.36203],[92.92867,12.36101],[92.93019,12.35677],[92.93234,12.35959],[92.93417,12.36447],[92.93606,12.37152],[92.93707,12.37311],[92.93693,12.37465],[92.9376,12.37784],[92.94229,12.38171],[92.94333,12.38391],[92.94348,12.38639],[92.94251,12.38818],[92.94316,12.39134],[92.94306,12.39367],[92.9438,12.39607],[92.94323,12.39817],[92.94402,12.40195],[92.94468,12.40235],[92.94454,12.4034],[92.94543,12.40531],[92.94801,12.40673],[92.95044,12.40712],[92.95137,12.40679],[92.9533,12.41312],[92.95686,12.41604],[92.95612,12.41629],[92.95696,12.41666],[92.9572,12.41621],[92.95844,12.41717],[92.95892,12.41809],[92.9586,12.4193],[92.95941,12.41959],[92.95962,12.42118],[92.96001,12.42005],[92.96073,12.42121],[92.96094,12.42285],[92.96054,12.42379],[92.95896,12.42491],[92.95724,12.4241],[92.95763,12.42352],[92.95684,12.42369],[92.95637,12.42486],[92.95684,12.42514],[92.95708,12.42665],[92.955,12.42804],[92.95513,12.42947],[92.95463,12.42974],[92.95494,12.43063],[92.95579,12.43026],[92.95851,12.43106],[92.95676,12.43244],[92.95734,12.43461],[92.95618,12.43462]]],[[[92.68347,12.55408],[92.68316,12.55426],[92.68294,12.55524],[92.68348,12.55573],[92.68337,12.5563],[92.68265,12.55674],[92.68149,12.55674],[92.68136,12.5555],[92.68022,12.55538],[92.67661,12.55149],[92.67273,12.54561],[92.67181,12.54355],[92.66866,12.54003],[92.66726,12.53766],[92.6643,12.53547],[92.6618,12.53288],[92.66245,12.53052],[92.66385,12.52809],[92.66388,12.52656],[92.66576,12.52563],[92.66676,12.523],[92.66975,12.51996],[92.67018,12.51882],[92.67033,12.51635],[92.67127,12.51428],[92.67416,12.50984],[92.67632,12.50756],[92.67714,12.50606],[92.67814,12.50556],[92.67922,12.50565],[92.68026,12.50674],[92.68157,12.51029],[92.68301,12.5129],[92.68313,12.51473],[92.68416,12.51689],[92.68264,12.51928],[92.68242,12.52113],[92.68126,12.52298],[92.68133,12.52479],[92.68276,12.52643],[92.68263,12.52748],[92.68205,12.52852],[92.68219,12.53],[92.68157,12.53151],[92.68389,12.53387],[92.68329,12.53598],[92.68373,12.53607],[92.68532,12.53525],[92.68633,12.53666],[92.68626,12.53769],[92.68536,12.53932],[92.68544,12.54117],[92.68462,12.54215],[92.68697,12.54551],[92.68703,12.54594],[92.6864,12.54697],[92.68656,12.54797],[92.68742,12.5487],[92.68807,12.55006],[92.68701,12.55068],[92.68687,12.55184],[92.68507,12.55223],[92.6852,12.55296],[92.68629,12.55345],[92.68636,12.55378],[92.6843,12.55441],[92.68347,12.55408]]],[[[92.70099,12.63761],[92.70086,12.63775],[92.7007,12.63777],[92.7004,12.63805],[92.70026,12.63812],[92.70016,12.63822],[92.70002,12.63823],[92.69996,12.63817],[92.69991,12.63804],[92.69967,12.63802],[92.6996,12.63794],[92.69928,12.63747],[92.69921,12.63732],[92.69919,12.63714],[92.6993,12.63695],[92.69937,12.63691],[92.69953,12.6369],[92.69964,12.63698],[92.6997,12.63689],[92.69978,12.63688],[92.69983,12.63694],[92.69988,12.63708],[92.69992,12.63709],[92.69997,12.63714],[92.70003,12.63724],[92.70011,12.63709],[92.70044,12.63696],[92.70057,12.63705],[92.70058,12.63716],[92.70071,12.63703],[92.7009,12.63691],[92.70099,12.63688],[92.7011,12.63693],[92.70116,12.63698],[92.7012,12.63705],[92.70126,12.637],[92.70128,12.63694],[92.70135,12.63686],[92.70139,12.63676],[92.7015,12.63667],[92.70158,12.63664],[92.70147,12.63647],[92.70146,12.63642],[92.70156,12.63626],[92.70171,12.63618],[92.70192,12.63611],[92.7022,12.63618],[92.70227,12.63629],[92.70232,12.63641],[92.70238,12.63647],[92.70238,12.63672],[92.70248,12.63689],[92.70248,12.63696],[92.70244,12.63705],[92.70233,12.63713],[92.70239,12.63734],[92.70232,12.63752],[92.7023,12.63766],[92.70218,12.6377],[92.70193,12.6376],[92.70188,12.63754],[92.70168,12.63758],[92.70157,12.63757],[92.70151,12.6375],[92.70136,12.63753],[92.70126,12.63752],[92.70115,12.63747],[92.70099,12.63761]]],[[[92.70276,12.64006],[92.70276,12.6403],[92.70216,12.64117],[92.70205,12.64125],[92.70183,12.64128],[92.70153,12.64119],[92.70112,12.64094],[92.70067,12.64047],[92.70023,12.63992],[92.70018,12.63978],[92.70015,12.63986],[92.7,12.63983],[92.69984,12.63974],[92.69972,12.63974],[92.69971,12.63988],[92.69961,12.63983],[92.69939,12.6396],[92.69923,12.63958],[92.6992,12.63942],[92.69888,12.63918],[92.69888,12.63895],[92.69898,12.63894],[92.69908,12.6388],[92.6992,12.63889],[92.69926,12.63891],[92.69937,12.63879],[92.69964,12.63903],[92.69974,12.63888],[92.6998,12.63894],[92.69987,12.63913],[92.70001,12.63915],[92.70002,12.6393],[92.70007,12.63939],[92.70013,12.63942],[92.70013,12.63924],[92.70026,12.63871],[92.7007,12.63825],[92.70173,12.63799],[92.70218,12.63814],[92.70241,12.63837],[92.70267,12.63934],[92.70276,12.64006]]],[[[92.70037,12.64036],[92.70045,12.64043],[92.70047,12.64055],[92.70057,12.64077],[92.70064,12.6409],[92.70089,12.64106],[92.70103,12.64141],[92.70099,12.64146],[92.70088,12.64146],[92.7007,12.64134],[92.70054,12.64121],[92.70037,12.64093],[92.70016,12.64069],[92.70019,12.64041],[92.70028,12.64034],[92.70037,12.64036]]],[[[92.7025,12.64367],[92.70237,12.64372],[92.70234,12.64346],[92.7022,12.64347],[92.70209,12.64322],[92.70202,12.64317],[92.70194,12.64315],[92.70192,12.64304],[92.70186,12.64286],[92.70152,12.64268],[92.70147,12.64258],[92.70118,12.64242],[92.70123,12.64225],[92.70094,12.64175],[92.70128,12.64175],[92.7014,12.64152],[92.70147,12.64162],[92.7015,12.64183],[92.7016,12.64175],[92.70163,12.64171],[92.70171,12.64179],[92.70182,12.6417],[92.70191,12.64183],[92.70197,12.64184],[92.7021,12.64178],[92.70235,12.6416],[92.70244,12.64165],[92.7025,12.64154],[92.70258,12.6415],[92.70261,12.64135],[92.70284,12.64116],[92.70279,12.64149],[92.70274,12.64161],[92.70264,12.64174],[92.70272,12.64195],[92.70288,12.64209],[92.70264,12.64231],[92.70271,12.64242],[92.70272,12.64266],[92.70279,12.64268],[92.7026,12.64286],[92.70271,12.64299],[92.70275,12.64311],[92.7026,12.64321],[92.70251,12.64316],[92.7025,12.64367]]],[[[92.72686,12.65537],[92.72686,12.65547],[92.72637,12.65553],[92.72632,12.65518],[92.72649,12.65518],[92.72662,12.65523],[92.72672,12.65517],[92.72687,12.65515],[92.72692,12.65507],[92.72693,12.65495],[92.72703,12.6549],[92.72719,12.65454],[92.72718,12.65446],[92.72706,12.65435],[92.727,12.65425],[92.72755,12.65418],[92.72773,12.65417],[92.72788,12.65426],[92.72797,12.65421],[92.72805,12.65409],[92.72817,12.65397],[92.72805,12.65394],[92.72809,12.65355],[92.72822,12.6536],[92.72844,12.65345],[92.72881,12.65341],[92.7289,12.65308],[92.72917,12.65306],[92.72923,12.65298],[92.72948,12.65293],[92.72956,12.65296],[92.7296,12.65304],[92.72975,12.65305],[92.72988,12.6531],[92.72993,12.65301],[92.72999,12.65302],[92.73014,12.65312],[92.73003,12.65327],[92.72993,12.65333],[92.72966,12.65324],[92.72962,12.6533],[92.72959,12.65347],[92.72941,12.65351],[92.7293,12.65337],[92.72921,12.65341],[92.72924,12.65361],[92.72897,12.65363],[92.72883,12.65368],[92.72875,12.65384],[92.72869,12.6539],[92.72853,12.6539],[92.72847,12.65404],[92.72831,12.65412],[92.72831,12.65435],[92.72826,12.65442],[92.72803,12.65456],[92.72791,12.65451],[92.7278,12.65463],[92.72774,12.65465],[92.72768,12.65459],[92.72763,12.65462],[92.7276,12.65475],[92.72752,12.65473],[92.7274,12.65474],[92.72735,12.6548],[92.72735,12.655],[92.7273,12.65502],[92.72716,12.65497],[92.72705,12.65523],[92.72699,12.65526],[92.72688,12.65525],[92.72686,12.65537]]],[[[92.72546,12.65617],[92.72536,12.65641],[92.72514,12.65604],[92.72514,12.65594],[92.72496,12.65585],[92.72494,12.65565],[92.72486,12.65564],[92.72483,12.65546],[92.72474,12.65543],[92.7247,12.65535],[92.72465,12.65532],[92.72465,12.65519],[92.72458,12.65513],[92.72451,12.6552],[92.72444,12.65523],[92.72433,12.65518],[92.72418,12.65522],[92.72413,12.65519],[92.72404,12.65504],[92.72415,12.6549],[92.72418,12.65466],[92.72431,12.65466],[92.7244,12.6545],[92.72433,12.65431],[92.72446,12.65418],[92.72443,12.65407],[92.72428,12.65393],[92.72436,12.65381],[92.72447,12.65383],[92.72442,12.65373],[92.72448,12.65359],[92.72436,12.65345],[92.72444,12.65335],[92.72456,12.65328],[92.72467,12.65292],[92.72494,12.65275],[92.72511,12.65301],[92.72502,12.6532],[92.72505,12.65344],[92.7249,12.65344],[92.72508,12.65373],[92.72544,12.65404],[92.72574,12.65422],[92.72583,12.65412],[92.72599,12.65425],[92.72616,12.65425],[92.72635,12.65422],[92.72648,12.65431],[92.72657,12.65446],[92.72671,12.6545],[92.72691,12.65447],[92.72699,12.65459],[92.72694,12.65465],[92.7268,12.65475],[92.72656,12.6547],[92.72651,12.65486],[92.72646,12.65491],[92.72635,12.65493],[92.72622,12.65511],[92.7261,12.65521],[92.72604,12.65511],[92.72595,12.65514],[92.7259,12.65539],[92.72582,12.65544],[92.72582,12.65555],[92.72572,12.6556],[92.72572,12.65571],[92.72566,12.65574],[92.72564,12.65593],[92.7256,12.65603],[92.72554,12.65604],[92.72546,12.65617]]],[[[92.78086,12.64614],[92.78149,12.64667],[92.7818,12.64761],[92.78143,12.64941],[92.78149,12.65056],[92.78129,12.65269],[92.78124,12.65561],[92.78099,12.65584],[92.78065,12.6557],[92.78055,12.65517],[92.78072,12.65346],[92.7805,12.65285],[92.77942,12.64856],[92.77946,12.64705],[92.77996,12.64648],[92.78058,12.64614],[92.78086,12.64614]]],[[[92.71457,12.68858],[92.71473,12.68878],[92.71485,12.68908],[92.71485,12.68928],[92.71478,12.68937],[92.71469,12.68958],[92.71443,12.68986],[92.71414,12.69003],[92.71397,12.6901],[92.71365,12.69009],[92.71344,12.6898],[92.71333,12.68945],[92.71342,12.68909],[92.71356,12.68892],[92.71363,12.6888],[92.71389,12.68856],[92.71423,12.68849],[92.71457,12.68858]]],[[[92.72261,12.69204],[92.72269,12.69215],[92.72273,12.69226],[92.72273,12.69241],[92.72274,12.69253],[92.72273,12.69259],[92.72268,12.69263],[92.72255,12.69268],[92.72245,12.69273],[92.72239,12.69274],[92.72228,12.6926],[92.72213,12.69248],[92.72213,12.69242],[92.72217,12.69228],[92.72219,12.6921],[92.72234,12.69199],[92.72253,12.69193],[92.72261,12.69204]]],[[[92.7742,12.67358],[92.7747,12.67383],[92.77538,12.67449],[92.77633,12.67612],[92.77813,12.68011],[92.77905,12.68157],[92.7797,12.68328],[92.78003,12.68455],[92.78118,12.68661],[92.78183,12.68733],[92.78208,12.68785],[92.78199,12.68824],[92.78157,12.68827],[92.78085,12.68764],[92.77885,12.68309],[92.77703,12.68025],[92.77544,12.67733],[92.77468,12.67609],[92.77358,12.67499],[92.77285,12.67441],[92.7726,12.67397],[92.77285,12.67366],[92.7733,12.6735],[92.77375,12.67342],[92.7742,12.67358]]],[[[92.73194,12.70306],[92.73206,12.70341],[92.73194,12.70377],[92.73143,12.70434],[92.73105,12.70463],[92.73075,12.70481],[92.73067,12.70491],[92.73069,12.70547],[92.73058,12.70556],[92.73048,12.70582],[92.73036,12.70583],[92.73027,12.70579],[92.73011,12.70564],[92.73002,12.70534],[92.73001,12.7051],[92.73009,12.705],[92.73005,12.70467],[92.72991,12.70443],[92.72972,12.70368],[92.72985,12.70356],[92.72966,12.70316],[92.72965,12.70298],[92.72945,12.7028],[92.72938,12.7026],[92.72955,12.70218],[92.72966,12.70177],[92.72979,12.70155],[92.73002,12.70161],[92.73016,12.70171],[92.73024,12.70187],[92.73015,12.70208],[92.73037,12.70235],[92.73039,12.70254],[92.73109,12.70287],[92.7317,12.70291],[92.73194,12.70306]]],[[[92.78295,12.71733],[92.78281,12.71806],[92.78247,12.71872],[92.78213,12.71807],[92.78147,12.71746],[92.78067,12.7172],[92.77857,12.71805],[92.77755,12.71822],[92.777,12.71791],[92.77684,12.71698],[92.77729,12.71578],[92.77934,12.71306],[92.78078,12.7118],[92.78099,12.71155],[92.78116,12.71173],[92.78342,12.71266],[92.78389,12.71339],[92.78389,12.71371],[92.78322,12.71428],[92.78217,12.71501],[92.782,12.71536],[92.78205,12.71563],[92.78241,12.71607],[92.78282,12.71642],[92.78299,12.71695],[92.78295,12.71733]]],[[[92.78135,12.71804],[92.78178,12.71839],[92.78197,12.71869],[92.78191,12.71903],[92.78157,12.71905],[92.78127,12.71903],[92.78106,12.71902],[92.78076,12.71874],[92.78065,12.71847],[92.78068,12.71817],[92.781,12.71797],[92.78135,12.71804]]],[[[92.7377,12.7335],[92.73763,12.73364],[92.73768,12.734],[92.73767,12.73407],[92.73758,12.73412],[92.73751,12.7341],[92.73742,12.73384],[92.73734,12.73339],[92.73734,12.73323],[92.73741,12.73309],[92.73756,12.73304],[92.73771,12.73293],[92.7379,12.73274],[92.73803,12.73263],[92.73818,12.73259],[92.73834,12.73259],[92.73845,12.73263],[92.73847,12.7327],[92.73847,12.73288],[92.73839,12.73297],[92.7381,12.73305],[92.73803,12.73312],[92.73801,12.73333],[92.73797,12.73344],[92.73781,12.73344],[92.7377,12.7335]]],[[[92.7242,12.73605],[92.72363,12.7364],[92.72212,12.73767],[92.72197,12.73763],[92.72194,12.7371],[92.72173,12.73654],[92.72174,12.73619],[92.72212,12.73561],[92.7228,12.73504],[92.72288,12.73454],[92.72313,12.73411],[92.7236,12.73358],[92.72448,12.7329],[92.72452,12.73273],[92.72432,12.73219],[92.72436,12.73179],[92.72476,12.7309],[92.72493,12.73093],[92.72529,12.7302],[92.72534,12.72986],[92.72574,12.72906],[92.72572,12.72852],[92.72577,12.72825],[92.72635,12.72796],[92.72629,12.72766],[92.72633,12.72731],[92.72642,12.72721],[92.72664,12.72722],[92.7267,12.72683],[92.72686,12.72671],[92.72692,12.72678],[92.72697,12.72658],[92.72733,12.7266],[92.72741,12.72682],[92.72753,12.72682],[92.72759,12.72694],[92.72765,12.72723],[92.72764,12.72781],[92.72788,12.72821],[92.72788,12.72837],[92.72764,12.7285],[92.72793,12.72884],[92.72811,12.72874],[92.72828,12.72876],[92.72868,12.72914],[92.72901,12.72988],[92.72895,12.73061],[92.72854,12.73159],[92.72814,12.73228],[92.72732,12.73324],[92.72717,12.73352],[92.72706,12.7341],[92.72664,12.73466],[92.72656,12.73498],[92.72658,12.73546],[92.72622,12.7363],[92.72584,12.73648],[92.72562,12.73645],[92.72475,12.73608],[92.7245,12.73602],[92.7242,12.73605]]],[[[92.72609,12.75172],[92.72617,12.75172],[92.72631,12.75194],[92.72629,12.75216],[92.72606,12.75292],[92.72604,12.75303],[92.72604,12.75331],[92.72602,12.75361],[92.72592,12.75379],[92.72559,12.75388],[92.72525,12.75388],[92.72512,12.75378],[92.72502,12.75373],[92.72469,12.75342],[92.72467,12.75319],[92.72468,12.75308],[92.72474,12.75286],[92.72479,12.75276],[92.72504,12.75249],[92.72528,12.7522],[92.72554,12.75198],[92.72576,12.7518],[92.726,12.75172],[92.72609,12.75172]]],[[[92.96851,12.74042],[92.96872,12.74053],[92.96882,12.74058],[92.96882,12.7407],[92.96871,12.74078],[92.96869,12.74083],[92.96867,12.74091],[92.96895,12.74125],[92.96889,12.74139],[92.96842,12.74156],[92.96834,12.74148],[92.96829,12.74111],[92.96819,12.7409],[92.96819,12.7407],[92.96832,12.74049],[92.96838,12.74045],[92.9684,12.7404],[92.96851,12.74042]]],[[[92.96781,12.74297],[92.9676,12.74301],[92.96754,12.7432],[92.96746,12.74327],[92.96726,12.74322],[92.96712,12.74313],[92.96716,12.74301],[92.96723,12.74286],[92.96728,12.74275],[92.96739,12.74268],[92.96741,12.74278],[92.96747,12.74282],[92.96756,12.74284],[92.96776,12.74283],[92.96776,12.74276],[92.96766,12.74269],[92.96756,12.74268],[92.9675,12.7426],[92.96766,12.74249],[92.96772,12.7424],[92.96777,12.74214],[92.96791,12.74216],[92.96803,12.74214],[92.96825,12.74214],[92.96825,12.7421],[92.96821,12.74185],[92.96812,12.7418],[92.96818,12.74178],[92.96833,12.74184],[92.96833,12.7419],[92.96833,12.74199],[92.96845,12.74202],[92.96845,12.74213],[92.96834,12.74221],[92.9683,12.74244],[92.96824,12.74252],[92.96813,12.74252],[92.96807,12.74257],[92.96806,12.74271],[92.96797,12.74274],[92.96781,12.74297]]],[[[92.65476,12.76953],[92.65506,12.76988],[92.65547,12.77077],[92.65582,12.77218],[92.65597,12.77296],[92.65629,12.77403],[92.65609,12.77455],[92.65603,12.77478],[92.6557,12.77487],[92.65479,12.77443],[92.65453,12.77426],[92.65397,12.7734],[92.65365,12.77253],[92.65348,12.77141],[92.65359,12.77063],[92.65374,12.77005],[92.654,12.76962],[92.65435,12.76948],[92.65476,12.76953]]],[[[92.71674,12.77369],[92.71719,12.7739],[92.71751,12.77414],[92.7176,12.77433],[92.71758,12.77452],[92.71679,12.7748],[92.71661,12.77483],[92.71632,12.7748],[92.7161,12.77467],[92.71597,12.7745],[92.71588,12.77427],[92.71594,12.774],[92.71609,12.77383],[92.71635,12.77366],[92.71674,12.77369]]],[[[92.71651,12.77523],[92.71683,12.77539],[92.71708,12.77559],[92.71711,12.77569],[92.71692,12.77608],[92.71689,12.7766],[92.71686,12.77679],[92.71657,12.77692],[92.71574,12.77704],[92.71536,12.77707],[92.71527,12.77704],[92.71477,12.77703],[92.71471,12.77673],[92.71481,12.77613],[92.71506,12.7758],[92.71526,12.77546],[92.71562,12.77522],[92.71607,12.77514],[92.71651,12.77523]]],[[[92.9603,12.75592],[92.96026,12.75559],[92.9604,12.75551],[92.9604,12.75535],[92.96048,12.75526],[92.96059,12.75537],[92.96071,12.75525],[92.96077,12.75529],[92.96074,12.75554],[92.96066,12.75568],[92.9606,12.75589],[92.96047,12.75578],[92.9603,12.75592]]],[[[92.95492,12.75774],[92.95461,12.75768],[92.95444,12.75778],[92.95434,12.75768],[92.95417,12.75767],[92.95407,12.75764],[92.95411,12.75744],[92.95431,12.75744],[92.9546,12.75726],[92.95464,12.75746],[92.95488,12.75716],[92.95504,12.75717],[92.95517,12.75708],[92.95525,12.7573],[92.95549,12.75702],[92.95566,12.75683],[92.9558,12.75672],[92.95598,12.75665],[92.9561,12.75681],[92.95604,12.75711],[92.95604,12.75724],[92.956,12.75736],[92.95585,12.75733],[92.95578,12.75748],[92.95557,12.75745],[92.95552,12.75761],[92.95511,12.7576],[92.95511,12.75767],[92.95498,12.75761],[92.95492,12.75774]]],[[[92.9589,12.75753],[92.95857,12.7575],[92.95846,12.75753],[92.9585,12.75747],[92.95859,12.75721],[92.95855,12.75711],[92.95847,12.75707],[92.95837,12.75709],[92.95851,12.75688],[92.95865,12.75693],[92.95874,12.75673],[92.95879,12.75671],[92.95892,12.75677],[92.95902,12.75677],[92.9591,12.7566],[92.95926,12.7566],[92.95944,12.75638],[92.95963,12.75654],[92.95972,12.75631],[92.95993,12.75642],[92.95981,12.75659],[92.95977,12.75666],[92.95987,12.75681],[92.95977,12.75687],[92.95968,12.75696],[92.9595,12.75697],[92.95944,12.75707],[92.95922,12.75709],[92.95913,12.75721],[92.95898,12.75717],[92.95885,12.75723],[92.95881,12.75732],[92.95888,12.7574],[92.9589,12.75753]]],[[[92.71527,12.7831],[92.71566,12.78313],[92.71585,12.78336],[92.71592,12.78369],[92.71592,12.78386],[92.71572,12.78404],[92.71554,12.78407],[92.71513,12.78384],[92.71494,12.78366],[92.71486,12.78328],[92.71493,12.78311],[92.71527,12.7831]]],[[[92.72086,12.77881],[92.7204,12.78061],[92.72,12.78142],[92.71926,12.78445],[92.71849,12.78596],[92.71689,12.78804],[92.71657,12.78819],[92.71606,12.78783],[92.71568,12.78709],[92.71625,12.78585],[92.71662,12.78292],[92.71604,12.78209],[92.71433,12.78135],[92.71426,12.7804],[92.71391,12.77913],[92.71425,12.7786],[92.7171,12.77859],[92.7177,12.77872],[92.71829,12.77866],[92.71857,12.77843],[92.71878,12.778],[92.71879,12.77744],[92.71863,12.77699],[92.71796,12.77646],[92.7178,12.77574],[92.71777,12.77419],[92.71681,12.77306],[92.71665,12.77254],[92.71672,12.7722],[92.71756,12.77071],[92.71796,12.76959],[92.71915,12.76804],[92.72086,12.76516],[92.72067,12.76495],[92.7211,12.76467],[92.7212,12.76478],[92.72166,12.76393],[92.72276,12.7627],[92.72348,12.76218],[92.724,12.76207],[92.72425,12.76231],[92.72423,12.76281],[92.72353,12.76508],[92.72339,12.76673],[92.72347,12.76742],[92.72276,12.76937],[92.72257,12.77113],[92.72155,12.77349],[92.72162,12.77427],[92.72119,12.7753],[92.72098,12.77639],[92.72106,12.77703],[92.72086,12.77881]]],[[[92.94067,12.76983],[92.94038,12.76975],[92.94023,12.76974],[92.94014,12.76959],[92.93994,12.76959],[92.93988,12.76946],[92.9397,12.76954],[92.93958,12.76944],[92.93931,12.7694],[92.93934,12.76931],[92.93943,12.76918],[92.93929,12.76904],[92.93964,12.7688],[92.9398,12.76875],[92.93987,12.7687],[92.94048,12.76908],[92.94094,12.76932],[92.94104,12.76927],[92.94122,12.76947],[92.94104,12.76958],[92.94097,12.76965],[92.94079,12.76965],[92.94067,12.76983]]],[[[92.71718,12.78972],[92.71735,12.78975],[92.71749,12.78985],[92.71751,12.79018],[92.71724,12.79055],[92.71705,12.79068],[92.71695,12.79073],[92.71661,12.7907],[92.71651,12.79054],[92.71651,12.79039],[92.71652,12.79028],[92.71663,12.79007],[92.71686,12.78984],[92.71713,12.78972],[92.71718,12.78972]]],[[[92.94665,12.77121],[92.94651,12.77101],[92.9463,12.7712],[92.94621,12.77109],[92.94607,12.7712],[92.94601,12.7711],[92.94584,12.77112],[92.94564,12.77109],[92.94552,12.77103],[92.94536,12.77115],[92.94529,12.771],[92.94513,12.77107],[92.94502,12.77095],[92.94486,12.77097],[92.94474,12.77114],[92.94463,12.77093],[92.94453,12.77086],[92.94452,12.77069],[92.9444,12.77068],[92.94428,12.77085],[92.94417,12.77063],[92.94396,12.77071],[92.94381,12.77047],[92.94369,12.77053],[92.94357,12.7703],[92.94346,12.77038],[92.94333,12.77024],[92.94322,12.77024],[92.94308,12.7701],[92.94304,12.76998],[92.94321,12.76997],[92.9432,12.7699],[92.94299,12.76967],[92.94336,12.7697],[92.94402,12.76991],[92.94436,12.77006],[92.94453,12.77021],[92.94465,12.77023],[92.94486,12.77021],[92.9451,12.77027],[92.94524,12.77043],[92.94557,12.77025],[92.94567,12.77041],[92.94575,12.77047],[92.94596,12.77046],[92.94602,12.77055],[92.94609,12.77061],[92.94618,12.77059],[92.94629,12.77044],[92.94659,12.77052],[92.9467,12.77052],[92.94681,12.77077],[92.94702,12.77097],[92.947,12.77102],[92.9468,12.77101],[92.94678,12.77094],[92.94665,12.77121]]],[[[92.71763,12.79449],[92.71751,12.79457],[92.71711,12.79493],[92.71685,12.79524],[92.71659,12.79526],[92.71642,12.79505],[92.71664,12.79447],[92.71685,12.79413],[92.7171,12.7938],[92.71731,12.79361],[92.71738,12.79265],[92.71756,12.79213],[92.71786,12.79157],[92.71824,12.79124],[92.71858,12.79104],[92.71886,12.79109],[92.71899,12.79118],[92.71906,12.79135],[92.71898,12.7916],[92.71884,12.79176],[92.71881,12.79203],[92.71901,12.7924],[92.71903,12.79275],[92.71887,12.79311],[92.7186,12.79398],[92.71814,12.79437],[92.71782,12.79439],[92.71763,12.79449]]],[[[92.72056,12.79516],[92.72073,12.79522],[92.72093,12.79524],[92.7211,12.79524],[92.72144,12.79536],[92.72184,12.79559],[92.72235,12.79604],[92.72251,12.79634],[92.72251,12.79657],[92.72234,12.79677],[92.72213,12.79674],[92.72175,12.79653],[92.72082,12.79618],[92.72053,12.79602],[92.72034,12.7959],[92.7202,12.79571],[92.7202,12.79544],[92.72028,12.79528],[92.72035,12.7952],[92.72048,12.79513],[92.72056,12.79516]]],[[[92.71461,12.79487],[92.71485,12.79498],[92.71508,12.7952],[92.71518,12.79547],[92.7152,12.79571],[92.71519,12.79595],[92.71532,12.79609],[92.71542,12.79614],[92.71542,12.79638],[92.71537,12.7966],[92.71536,12.79686],[92.7154,12.79707],[92.71535,12.79738],[92.7152,12.7975],[92.71506,12.79755],[92.71491,12.79752],[92.71461,12.79727],[92.71441,12.7969],[92.71426,12.7965],[92.71424,12.79617],[92.71418,12.79557],[92.71419,12.79536],[92.71427,12.79489],[92.7144,12.79483],[92.71461,12.79487]]],[[[92.71576,12.79833],[92.71599,12.79838],[92.71633,12.79868],[92.7164,12.79894],[92.71615,12.79988],[92.71599,12.80071],[92.71564,12.80108],[92.71544,12.80116],[92.71533,12.80119],[92.71521,12.80116],[92.71489,12.8007],[92.71481,12.80027],[92.71479,12.79965],[92.71481,12.79919],[92.71492,12.79882],[92.71497,12.79873],[92.71524,12.79848],[92.71564,12.79831],[92.71576,12.79833]]],[[[92.71624,12.80194],[92.71631,12.80281],[92.71637,12.80326],[92.71643,12.80359],[92.71657,12.80393],[92.71659,12.80413],[92.71658,12.80424],[92.7165,12.80445],[92.71642,12.80459],[92.71628,12.8047],[92.71619,12.80476],[92.71596,12.8048],[92.71583,12.80474],[92.7154,12.80421],[92.71516,12.80372],[92.71507,12.80307],[92.71528,12.80242],[92.7155,12.80216],[92.71558,12.80208],[92.7159,12.80191],[92.71614,12.80188],[92.71624,12.80194]]],[[[92.70751,12.83005],[92.70631,12.82882],[92.70621,12.8248],[92.70548,12.8236],[92.70594,12.82283],[92.70573,12.82078],[92.70642,12.82069],[92.70547,12.81993],[92.70589,12.81893],[92.70518,12.81862],[92.70577,12.81837],[92.7034,12.81548],[92.70207,12.8158],[92.7003,12.81382],[92.7009,12.81093],[92.69946,12.81052],[92.70002,12.80932],[92.69876,12.80805],[92.69915,12.80541],[92.69866,12.8051],[92.6986,12.80601],[92.69722,12.80527],[92.6987,12.80336],[92.69841,12.80222],[92.69746,12.80106],[92.69648,12.80215],[92.69407,12.80095],[92.6937,12.79764],[92.69472,12.7936],[92.69705,12.79087],[92.69659,12.79027],[92.69751,12.78956],[92.69835,12.78541],[92.70052,12.78457],[92.70414,12.78115],[92.70788,12.77461],[92.70848,12.77208],[92.70767,12.76718],[92.70958,12.76266],[92.70982,12.75711],[92.71063,12.75431],[92.71078,12.74613],[92.71186,12.74216],[92.71214,12.73766],[92.7119,12.73646],[92.71136,12.73692],[92.71102,12.73525],[92.71007,12.73468],[92.70962,12.7329],[92.70814,12.73313],[92.70613,12.73093],[92.7064,12.73042],[92.7077,12.73095],[92.70809,12.73056],[92.70887,12.72792],[92.70914,12.72918],[92.71052,12.72879],[92.70959,12.72563],[92.71016,12.72517],[92.70942,12.72384],[92.71104,12.72254],[92.71104,12.7207],[92.71192,12.72047],[92.71504,12.72148],[92.71656,12.71917],[92.71721,12.71953],[92.71839,12.72253],[92.71872,12.72617],[92.71809,12.72947],[92.71571,12.73051],[92.71719,12.7312],[92.71704,12.73192],[92.71852,12.73204],[92.71676,12.73346],[92.71607,12.73495],[92.71689,12.73624],[92.71637,12.73691],[92.71728,12.73786],[92.71706,12.73954],[92.71764,12.74076],[92.71723,12.74378],[92.71807,12.74614],[92.71837,12.75255],[92.71731,12.75634],[92.71787,12.75623],[92.72012,12.75077],[92.72065,12.74542],[92.72194,12.74266],[92.72295,12.74304],[92.72349,12.74586],[92.72459,12.74697],[92.7248,12.74835],[92.72388,12.75141],[92.72377,12.75472],[92.72177,12.76015],[92.71648,12.76953],[92.71194,12.77496],[92.71125,12.77719],[92.7111,12.77901],[92.71296,12.78823],[92.71158,12.79743],[92.71153,12.81818],[92.71401,12.82821],[92.71316,12.82943],[92.71128,12.82955],[92.70949,12.82861],[92.70851,12.8299],[92.70751,12.83005]]],[[[92.72437,12.83218],[92.72486,12.83259],[92.72586,12.83364],[92.72603,12.83407],[92.72613,12.83475],[92.72637,12.83533],[92.72646,12.83565],[92.72659,12.83591],[92.72678,12.83684],[92.72677,12.83812],[92.72669,12.83869],[92.72651,12.83884],[92.72616,12.83873],[92.72572,12.83832],[92.72528,12.83758],[92.72513,12.83711],[92.72504,12.83651],[92.7248,12.83615],[92.72458,12.83594],[92.72425,12.8358],[92.72407,12.83559],[92.72402,12.83525],[92.72406,12.83473],[92.7239,12.83442],[92.72382,12.83409],[92.72376,12.83255],[92.72379,12.8323],[92.72387,12.83211],[92.72402,12.832],[92.72437,12.83218]]],[[[92.73127,12.85681],[92.731,12.85704],[92.73067,12.85704],[92.73045,12.85691],[92.73039,12.85678],[92.72997,12.85672],[92.72974,12.85686],[92.72934,12.85681],[92.72873,12.85646],[92.7285,12.85611],[92.72833,12.85578],[92.72838,12.85548],[92.72857,12.85504],[92.72879,12.85478],[92.72917,12.85475],[92.72947,12.85482],[92.73005,12.85531],[92.73002,12.85539],[92.73009,12.85538],[92.73023,12.85543],[92.73073,12.85588],[92.73099,12.85594],[92.7311,12.85604],[92.73114,12.85621],[92.73126,12.85632],[92.73128,12.85655],[92.73127,12.85681]]],[[[92.76318,12.85137],[92.76296,12.85194],[92.76127,12.85433],[92.76109,12.85492],[92.76098,12.85678],[92.76062,12.85781],[92.76031,12.85948],[92.75998,12.85978],[92.75944,12.85956],[92.75838,12.85845],[92.75818,12.85794],[92.75823,12.85674],[92.75808,12.85616],[92.75831,12.85563],[92.75806,12.85433],[92.75761,12.85345],[92.75756,12.85283],[92.75778,12.85222],[92.75753,12.85121],[92.75764,12.85091],[92.75837,12.85026],[92.75849,12.84985],[92.75843,12.84937],[92.75796,12.84881],[92.7571,12.84698],[92.75689,12.84564],[92.75724,12.84512],[92.75824,12.8443],[92.75891,12.84399],[92.76006,12.84385],[92.76149,12.84277],[92.76238,12.8413],[92.76254,12.8408],[92.76247,12.83998],[92.76364,12.8388],[92.76445,12.83747],[92.76495,12.83634],[92.76513,12.83611],[92.76539,12.83607],[92.76567,12.83637],[92.76582,12.83728],[92.76538,12.84084],[92.7655,12.84545],[92.76506,12.84756],[92.76563,12.84942],[92.76535,12.84996],[92.76414,12.85121],[92.76318,12.85137]]],[[[92.72627,12.86541],[92.72609,12.86575],[92.72525,12.86592],[92.72329,12.86413],[92.72282,12.86403],[92.72196,12.86435],[92.72137,12.86504],[92.72101,12.86614],[92.72067,12.86616],[92.72044,12.86527],[92.71989,12.86532],[92.71938,12.86503],[92.71936,12.8638],[92.71858,12.86338],[92.71779,12.86236],[92.71807,12.86224],[92.71852,12.8624],[92.7188,12.86217],[92.71941,12.86234],[92.71922,12.86125],[92.7195,12.86033],[92.72184,12.86032],[92.72314,12.86001],[92.72327,12.85965],[92.72158,12.86008],[92.71939,12.85994],[92.71896,12.85943],[92.71903,12.8588],[92.71883,12.85878],[92.71827,12.8594],[92.71694,12.85964],[92.71662,12.85925],[92.7166,12.85828],[92.71539,12.85614],[92.71542,12.85552],[92.71485,12.85534],[92.71399,12.85547],[92.71378,12.85571],[92.71354,12.85557],[92.71352,12.85521],[92.71426,12.85415],[92.71509,12.85443],[92.71524,12.85329],[92.71461,12.85222],[92.71328,12.85134],[92.71297,12.85059],[92.71233,12.84997],[92.71187,12.84872],[92.71143,12.84831],[92.71145,12.84503],[92.71206,12.84327],[92.71174,12.84307],[92.71152,12.84388],[92.71026,12.84436],[92.70809,12.83998],[92.70703,12.8372],[92.70727,12.83601],[92.70863,12.83349],[92.70953,12.83344],[92.71113,12.83438],[92.71143,12.83431],[92.71122,12.83371],[92.71138,12.83301],[92.71109,12.83236],[92.71131,12.83208],[92.71221,12.83201],[92.7138,12.83269],[92.71556,12.83311],[92.71619,12.83362],[92.71793,12.83581],[92.71798,12.83609],[92.71771,12.83645],[92.71824,12.83711],[92.71889,12.83905],[92.71936,12.83984],[92.71997,12.84032],[92.72004,12.84117],[92.71975,12.84153],[92.72042,12.84221],[92.72012,12.84277],[92.72064,12.84339],[92.72075,12.84407],[92.72147,12.84518],[92.72196,12.84677],[92.72277,12.84747],[92.7229,12.84813],[92.72367,12.84916],[92.72374,12.84997],[92.72486,12.85196],[92.72427,12.85344],[92.72602,12.85601],[92.72611,12.85762],[92.72681,12.8587],[92.72792,12.85965],[92.72792,12.8602],[92.72904,12.86175],[92.72869,12.86297],[92.72869,12.86384],[92.72824,12.86378],[92.72717,12.86522],[92.72644,12.8652],[92.72627,12.86541]]],[[[92.77995,12.85756],[92.78,12.85984],[92.7797,12.86167],[92.77863,12.86319],[92.77781,12.86378],[92.77675,12.86395],[92.77532,12.86255],[92.7733,12.86104],[92.77301,12.86014],[92.77318,12.85855],[92.77356,12.858],[92.7741,12.85796],[92.77359,12.85778],[92.7732,12.85803],[92.77282,12.8589],[92.77276,12.86213],[92.77003,12.86353],[92.76803,12.86208],[92.76994,12.85853],[92.76862,12.85529],[92.7684,12.85393],[92.76791,12.85302],[92.76789,12.85211],[92.76838,12.84971],[92.76985,12.8467],[92.77162,12.84454],[92.77341,12.84392],[92.77404,12.8431],[92.77453,12.84179],[92.77448,12.83857],[92.77302,12.83519],[92.77278,12.83324],[92.77397,12.83047],[92.77453,12.82972],[92.77575,12.82879],[92.77906,12.82712],[92.78023,12.82561],[92.78364,12.82465],[92.78421,12.82481],[92.78444,12.82514],[92.78438,12.82983],[92.78507,12.83257],[92.78243,12.83616],[92.78209,12.83742],[92.78079,12.84007],[92.78084,12.84144],[92.78038,12.84366],[92.78058,12.84499],[92.78042,12.84744],[92.77979,12.85122],[92.77995,12.85756]]],[[[92.76529,12.86988],[92.76547,12.87051],[92.76543,12.87239],[92.76525,12.87284],[92.76503,12.87296],[92.76486,12.87291],[92.764,12.87227],[92.76346,12.87127],[92.76322,12.87036],[92.76296,12.87004],[92.76274,12.86995],[92.76194,12.87025],[92.7614,12.86999],[92.76091,12.86962],[92.7604,12.86891],[92.76025,12.86834],[92.76033,12.86739],[92.76159,12.86643],[92.76182,12.86596],[92.76196,12.86484],[92.76162,12.8642],[92.7619,12.8635],[92.76203,12.86223],[92.7617,12.85953],[92.76193,12.85885],[92.76202,12.85726],[92.7626,12.85554],[92.7628,12.85547],[92.76329,12.85556],[92.76534,12.85527],[92.7658,12.8566],[92.76582,12.858],[92.76564,12.8616],[92.76435,12.86327],[92.76408,12.86387],[92.76447,12.86549],[92.76445,12.86639],[92.76422,12.86705],[92.76428,12.86748],[92.76414,12.86848],[92.76446,12.86901],[92.76529,12.86988]]],[[[92.75736,12.87874],[92.75721,12.8789],[92.75689,12.87911],[92.75671,12.87918],[92.75663,12.87919],[92.75647,12.87906],[92.75638,12.87889],[92.75628,12.87884],[92.75623,12.87879],[92.75613,12.87887],[92.75592,12.87882],[92.75589,12.87862],[92.75602,12.87805],[92.75607,12.87762],[92.75614,12.87739],[92.7561,12.87718],[92.75594,12.877],[92.75594,12.87675],[92.75585,12.87651],[92.75586,12.87633],[92.75595,12.8762],[92.75618,12.87611],[92.75639,12.87606],[92.7565,12.8761],[92.75676,12.87625],[92.75686,12.87617],[92.75726,12.87597],[92.75743,12.87595],[92.75771,12.87598],[92.7581,12.87626],[92.75836,12.8766],[92.7586,12.8767],[92.75885,12.87686],[92.759,12.877],[92.75918,12.87731],[92.75968,12.87787],[92.75968,12.878],[92.75965,12.87808],[92.75953,12.87817],[92.75938,12.87822],[92.75925,12.8782],[92.75907,12.87809],[92.75864,12.87795],[92.75837,12.87797],[92.75811,12.8781],[92.75779,12.87831],[92.75756,12.87851],[92.75736,12.87874]]],[[[92.83103,12.88532],[92.83109,12.88532],[92.83116,12.88535],[92.83119,12.88543],[92.83114,12.8856],[92.83103,12.88573],[92.83089,12.88578],[92.83065,12.88579],[92.83055,12.88577],[92.83047,12.88572],[92.83046,12.88568],[92.83048,12.88559],[92.83057,12.88548],[92.83074,12.88537],[92.83086,12.88534],[92.83103,12.88532]]],[[[92.83181,12.88526],[92.83201,12.88546],[92.83217,12.88567],[92.83197,12.88581],[92.83142,12.88571],[92.83127,12.88555],[92.83127,12.88534],[92.83141,12.88521],[92.83181,12.88526]]],[[[92.83393,12.88642],[92.83408,12.88643],[92.83424,12.88654],[92.83456,12.88669],[92.83475,12.88681],[92.83497,12.88696],[92.83531,12.88736],[92.83547,12.88754],[92.83543,12.88767],[92.83532,12.88775],[92.83524,12.88778],[92.83501,12.88773],[92.83488,12.88766],[92.83437,12.88719],[92.83416,12.88708],[92.83393,12.88692],[92.83369,12.88666],[92.83369,12.8866],[92.8337,12.88649],[92.83381,12.88642],[92.83393,12.88642]]],[[[92.78828,12.89323],[92.78782,12.89332],[92.78659,12.8933],[92.78611,12.89345],[92.7856,12.89343],[92.78528,12.89332],[92.78455,12.89336],[92.78359,12.89327],[92.78295,12.89301],[92.78161,12.89226],[92.78145,12.89207],[92.78114,12.89064],[92.78123,12.88937],[92.7815,12.88847],[92.78218,12.88732],[92.7822,12.88715],[92.78215,12.88701],[92.78163,12.8865],[92.7811,12.88637],[92.78089,12.88623],[92.78078,12.88601],[92.78078,12.8858],[92.78107,12.88503],[92.7817,12.88392],[92.78205,12.88358],[92.78322,12.88282],[92.78396,12.88249],[92.78445,12.88239],[92.78594,12.88311],[92.78704,12.88312],[92.78788,12.88299],[92.78841,12.88339],[92.78948,12.88521],[92.78952,12.88653],[92.78942,12.88739],[92.78991,12.88935],[92.79024,12.89019],[92.79078,12.89074],[92.79114,12.89094],[92.79138,12.89118],[92.79142,12.89136],[92.79135,12.89147],[92.79094,12.89154],[92.79054,12.89182],[92.78955,12.89269],[92.78828,12.89323]]],[[[92.89176,12.89757],[92.89212,12.89765],[92.89247,12.89776],[92.89263,12.89804],[92.89272,12.8983],[92.89273,12.89886],[92.8927,12.89925],[92.89259,12.89952],[92.89239,12.89966],[92.89192,12.89977],[92.89162,12.89979],[92.89121,12.89977],[92.89102,12.89966],[92.89091,12.89954],[92.89079,12.89927],[92.89077,12.8992],[92.89078,12.89851],[92.89097,12.89785],[92.89118,12.89768],[92.89141,12.89757],[92.89176,12.89757]]],[[[92.7543,12.91328],[92.75428,12.91349],[92.75465,12.91412],[92.75446,12.91437],[92.75422,12.91432],[92.75382,12.91387],[92.75378,12.91331],[92.7533,12.9137],[92.75317,12.91365],[92.75307,12.91328],[92.7533,12.91231],[92.75378,12.91141],[92.75336,12.91096],[92.75326,12.91024],[92.75338,12.90987],[92.75322,12.90956],[92.75338,12.90892],[92.75299,12.90806],[92.75307,12.9075],[92.75287,12.90609],[92.7533,12.90438],[92.75289,12.90191],[92.75244,12.901],[92.75276,12.90075],[92.75291,12.90027],[92.75315,12.90027],[92.75353,12.90099],[92.75407,12.90151],[92.75466,12.8999],[92.75444,12.89822],[92.75286,12.89639],[92.75277,12.89599],[92.75281,12.89524],[92.75324,12.89424],[92.75326,12.89358],[92.75219,12.89232],[92.7521,12.89243],[92.75239,12.89326],[92.75237,12.89385],[92.75155,12.89434],[92.75117,12.89588],[92.75069,12.89658],[92.74955,12.89724],[92.74907,12.89714],[92.74842,12.89652],[92.74805,12.8946],[92.74836,12.89261],[92.74874,12.89126],[92.74934,12.89079],[92.75,12.89078],[92.75035,12.89048],[92.7506,12.89091],[92.75137,12.89104],[92.75214,12.89205],[92.75225,12.89],[92.75238,12.88972],[92.75267,12.88959],[92.75329,12.88973],[92.75384,12.89009],[92.75546,12.89264],[92.75586,12.89482],[92.75584,12.89564],[92.75623,12.89722],[92.7563,12.9008],[92.75699,12.90639],[92.75673,12.90737],[92.75685,12.90824],[92.75665,12.90857],[92.75544,12.90948],[92.75545,12.91047],[92.75535,12.91067],[92.75488,12.91067],[92.75475,12.91154],[92.75447,12.91212],[92.75452,12.91253],[92.75489,12.91325],[92.7543,12.91328]]],[[[92.8795,12.90576],[92.87943,12.90581],[92.8793,12.9058],[92.87921,12.90575],[92.87926,12.90547],[92.87939,12.90496],[92.87941,12.90441],[92.87936,12.90402],[92.87918,12.90371],[92.87882,12.90289],[92.8786,12.90256],[92.87854,12.90238],[92.87855,12.90229],[92.87873,12.90222],[92.87892,12.90224],[92.87914,12.90233],[92.87925,12.90249],[92.87942,12.90261],[92.87954,12.90273],[92.87967,12.90292],[92.87981,12.90298],[92.88004,12.90302],[92.88021,12.90315],[92.88028,12.90335],[92.88044,12.90358],[92.88039,12.90367],[92.88041,12.90376],[92.88047,12.90382],[92.8804,12.90387],[92.88036,12.90398],[92.88033,12.9043],[92.88036,12.90446],[92.88025,12.90461],[92.88016,12.90483],[92.88008,12.90492],[92.88006,12.90503],[92.88008,12.90518],[92.88005,12.90528],[92.87996,12.9054],[92.87993,12.90551],[92.87986,12.90563],[92.87977,12.90572],[92.87961,12.90572],[92.8795,12.90576]]],[[[92.79313,12.91235],[92.79204,12.91443],[92.79207,12.91467],[92.79244,12.91482],[92.79213,12.91535],[92.79213,12.91644],[92.79187,12.91692],[92.791,12.91727],[92.79032,12.91712],[92.78893,12.91605],[92.7886,12.91543],[92.78922,12.91381],[92.78907,12.91273],[92.78888,12.91256],[92.78763,12.91273],[92.78687,12.91234],[92.78632,12.91254],[92.78517,12.91194],[92.7819,12.9115],[92.78053,12.91066],[92.77991,12.91052],[92.77678,12.91163],[92.77546,12.91229],[92.77376,12.91198],[92.77343,12.91163],[92.77361,12.91062],[92.77346,12.91003],[92.77436,12.90892],[92.77452,12.90819],[92.77354,12.90661],[92.77351,12.90628],[92.7747,12.90446],[92.7753,12.90435],[92.77586,12.90374],[92.77971,12.902],[92.78205,12.90254],[92.78504,12.90513],[92.78626,12.90593],[92.78706,12.90596],[92.78759,12.90567],[92.78884,12.9044],[92.78907,12.90324],[92.78874,12.90145],[92.78789,12.90104],[92.78712,12.89979],[92.7862,12.89878],[92.78624,12.89851],[92.78651,12.89824],[92.7878,12.89797],[92.79029,12.89767],[92.7918,12.89671],[92.79115,12.89684],[92.79012,12.8975],[92.78873,12.89749],[92.78487,12.89834],[92.78428,12.89787],[92.78349,12.89795],[92.78205,12.89726],[92.78182,12.89668],[92.78194,12.89555],[92.78381,12.89463],[92.78557,12.89421],[92.78797,12.89408],[92.79199,12.89223],[92.79651,12.89427],[92.79749,12.89448],[92.79842,12.89626],[92.79896,12.89682],[92.80045,12.89773],[92.79943,12.89803],[92.79911,12.89833],[92.79814,12.89938],[92.7968,12.90141],[92.79597,12.90585],[92.79587,12.90917],[92.79463,12.91054],[92.79361,12.91048],[92.79399,12.91102],[92.79313,12.91235]]],[[[92.87953,12.90741],[92.87961,12.90749],[92.87949,12.90852],[92.87931,12.90962],[92.8792,12.90995],[92.87927,12.91011],[92.87922,12.91042],[92.87929,12.9106],[92.8793,12.91079],[92.87926,12.91087],[92.87936,12.91113],[92.87939,12.91138],[92.87945,12.91157],[92.87946,12.91205],[92.87941,12.91228],[92.8791,12.91277],[92.8788,12.91292],[92.87866,12.91292],[92.87849,12.91284],[92.87843,12.91272],[92.8784,12.91254],[92.87842,12.91219],[92.87826,12.91158],[92.87809,12.91123],[92.87786,12.911],[92.87762,12.91083],[92.87742,12.91075],[92.87739,12.91035],[92.87758,12.91016],[92.87782,12.91],[92.87815,12.90993],[92.8784,12.90982],[92.87861,12.90969],[92.87872,12.90953],[92.87882,12.90926],[92.8789,12.90872],[92.87888,12.90815],[92.87903,12.90774],[92.87929,12.90744],[92.87942,12.90738],[92.87953,12.90741]]],[[[92.86439,12.91266],[92.86448,12.91281],[92.86449,12.91304],[92.86446,12.91325],[92.86437,12.91361],[92.86417,12.91413],[92.86396,12.91443],[92.86373,12.91466],[92.86334,12.91491],[92.86313,12.91494],[92.86295,12.91494],[92.86277,12.91485],[92.86262,12.91475],[92.86241,12.91449],[92.86238,12.91438],[92.8624,12.91397],[92.86256,12.91382],[92.86278,12.9137],[92.86338,12.91328],[92.86401,12.91268],[92.8642,12.91259],[92.86439,12.91266]]],[[[92.67328,12.93292],[92.67348,12.93303],[92.67351,12.93312],[92.67354,12.93325],[92.67354,12.93333],[92.67344,12.93339],[92.67324,12.93341],[92.67305,12.9333],[92.67296,12.93319],[92.67292,12.93309],[92.67292,12.93302],[92.67295,12.93293],[92.67302,12.9329],[92.67328,12.93292]]],[[[92.67226,12.9328],[92.67232,12.93286],[92.67252,12.93311],[92.67255,12.93323],[92.67257,12.93332],[92.67255,12.93339],[92.67252,12.9334],[92.6725,12.93342],[92.6725,12.93346],[92.67252,12.9335],[92.67256,12.93352],[92.6726,12.93355],[92.67249,12.93367],[92.67233,12.93365],[92.6722,12.93355],[92.67214,12.93345],[92.67209,12.93335],[92.67206,12.93322],[92.67205,12.9331],[92.67202,12.93292],[92.67204,12.93284],[92.67206,12.93279],[92.67215,12.93277],[92.67226,12.9328]]],[[[92.76606,12.92367],[92.76588,12.9245],[92.76563,12.92507],[92.76542,12.92573],[92.7653,12.92602],[92.76518,12.92609],[92.76506,12.92601],[92.76468,12.92532],[92.76457,12.9247],[92.76438,12.9244],[92.76397,12.92401],[92.76383,12.92376],[92.76365,12.92371],[92.76336,12.92378],[92.76259,12.92343],[92.76251,12.92312],[92.76208,12.92288],[92.76201,12.92254],[92.76168,12.92244],[92.76133,12.92225],[92.76124,12.92212],[92.76125,12.92185],[92.76153,12.92126],[92.76154,12.92054],[92.76191,12.91963],[92.76206,12.91956],[92.76229,12.9196],[92.76252,12.9194],[92.7629,12.91869],[92.76332,12.91821],[92.76339,12.91805],[92.76385,12.91774],[92.76408,12.91789],[92.76448,12.91835],[92.76508,12.91917],[92.76521,12.91961],[92.76603,12.92044],[92.76636,12.92089],[92.76648,12.92148],[92.7665,12.92242],[92.76606,12.92367]]],[[[92.77398,12.93222],[92.77335,12.93234],[92.77217,12.93219],[92.77158,12.93245],[92.77116,12.93255],[92.77075,12.93252],[92.77049,12.93219],[92.77037,12.93181],[92.77008,12.93158],[92.77029,12.9311],[92.77017,12.92994],[92.76999,12.92969],[92.76962,12.92961],[92.76932,12.92892],[92.76883,12.92876],[92.76872,12.9286],[92.76882,12.92823],[92.76876,12.92782],[92.76891,12.92771],[92.76944,12.92768],[92.76973,12.92757],[92.77008,12.92714],[92.77036,12.92625],[92.77084,12.92584],[92.77033,12.92578],[92.77006,12.92543],[92.76986,12.92533],[92.76911,12.92529],[92.76869,12.92497],[92.76864,12.92447],[92.76888,12.92371],[92.76874,12.92278],[92.76931,12.92162],[92.77012,12.91954],[92.77093,12.91861],[92.77123,12.91805],[92.77153,12.91774],[92.77183,12.91759],[92.77223,12.91761],[92.77226,12.91861],[92.77241,12.91898],[92.77288,12.91966],[92.77307,12.92019],[92.77361,12.92079],[92.77381,12.9212],[92.77403,12.92242],[92.774,12.92353],[92.77499,12.92594],[92.77515,12.9269],[92.77521,12.92814],[92.77493,12.92974],[92.77496,12.93045],[92.77398,12.93222]]],[[[92.93475,12.91992],[92.93472,12.91997],[92.93431,12.91976],[92.93417,12.91996],[92.93391,12.91976],[92.93372,12.91992],[92.93353,12.91955],[92.93333,12.91968],[92.93324,12.91949],[92.93304,12.91956],[92.93301,12.91927],[92.9329,12.91921],[92.93278,12.91926],[92.93275,12.91904],[92.93248,12.91913],[92.9323,12.91912],[92.93214,12.91936],[92.93179,12.91951],[92.93099,12.91923],[92.93053,12.91886],[92.93019,12.9183],[92.93012,12.91782],[92.93022,12.91744],[92.93001,12.91746],[92.92993,12.91767],[92.92977,12.91748],[92.92952,12.91749],[92.92952,12.91731],[92.92928,12.91724],[92.92925,12.91709],[92.92906,12.91695],[92.9293,12.91676],[92.9294,12.91684],[92.92956,12.91672],[92.92966,12.91677],[92.92982,12.91666],[92.92995,12.91679],[92.9302,12.91689],[92.93015,12.91703],[92.93023,12.91722],[92.93108,12.91653],[92.93222,12.91586],[92.93262,12.91524],[92.93257,12.91452],[92.93233,12.91446],[92.93225,12.91434],[92.93235,12.91414],[92.93219,12.91395],[92.93221,12.9137],[92.93199,12.91341],[92.93197,12.91319],[92.93226,12.91302],[92.93228,12.91278],[92.9325,12.91262],[92.93255,12.91229],[92.93268,12.91219],[92.9327,12.91196],[92.93284,12.91187],[92.93291,12.91172],[92.9331,12.91175],[92.93323,12.91157],[92.93339,12.91157],[92.93347,12.91147],[92.93384,12.91177],[92.93407,12.91165],[92.93436,12.91183],[92.93454,12.91181],[92.93468,12.912],[92.93483,12.91199],[92.93495,12.91206],[92.935,12.9119],[92.93559,12.91233],[92.93562,12.91261],[92.93574,12.91271],[92.93576,12.91292],[92.93601,12.91295],[92.936,12.91321],[92.93625,12.91327],[92.9364,12.91361],[92.93664,12.91367],[92.93666,12.91393],[92.93692,12.91411],[92.93687,12.9144],[92.93703,12.91457],[92.93726,12.91454],[92.93739,12.91479],[92.93723,12.91496],[92.93731,12.91515],[92.93724,12.91547],[92.93732,12.91564],[92.93727,12.91593],[92.9374,12.91611],[92.93738,12.91636],[92.9375,12.91655],[92.93742,12.91675],[92.93759,12.91701],[92.93754,12.91713],[92.93758,12.91729],[92.93779,12.91737],[92.93767,12.91766],[92.93772,12.91791],[92.93755,12.91809],[92.93715,12.91809],[92.93702,12.91843],[92.93676,12.91863],[92.9365,12.91871],[92.93643,12.9189],[92.93623,12.919],[92.93635,12.91915],[92.93608,12.91925],[92.93602,12.91947],[92.93579,12.91943],[92.93546,12.91969],[92.93531,12.91953],[92.93506,12.91976],[92.93488,12.91971],[92.93475,12.91992]]],[[[92.76161,12.93645],[92.76148,12.93658],[92.76125,12.93664],[92.76112,12.93627],[92.7608,12.93656],[92.76063,12.93662],[92.76029,12.93657],[92.76016,12.93651],[92.75968,12.93593],[92.75913,12.9354],[92.75908,12.93516],[92.75915,12.93478],[92.75987,12.93398],[92.76028,12.93335],[92.76021,12.9331],[92.75979,12.93265],[92.75975,12.93252],[92.76016,12.93189],[92.76021,12.93167],[92.76009,12.93159],[92.75991,12.93159],[92.75939,12.93189],[92.75925,12.9319],[92.75921,12.93156],[92.75931,12.93116],[92.7598,12.93007],[92.76004,12.92831],[92.76035,12.92752],[92.76076,12.92686],[92.76108,12.9265],[92.76109,12.92588],[92.76138,12.92579],[92.76162,12.92608],[92.76169,12.92632],[92.76186,12.92638],[92.76227,12.92599],[92.76211,12.92565],[92.76229,12.92551],[92.76248,12.92548],[92.76333,12.9258],[92.76377,12.92625],[92.76393,12.92694],[92.76446,12.92818],[92.76536,12.92813],[92.76561,12.92804],[92.76574,12.92821],[92.76558,12.92962],[92.76554,12.93067],[92.76535,12.93178],[92.76508,12.93283],[92.76409,12.93498],[92.76399,12.93513],[92.76375,12.93516],[92.76369,12.93496],[92.76378,12.93465],[92.7637,12.93453],[92.76301,12.93474],[92.76278,12.93493],[92.76248,12.93585],[92.76232,12.93589],[92.76203,12.93562],[92.76161,12.93645]]],[[[92.89749,12.92681],[92.89609,12.92617],[92.89449,12.91856],[92.89241,12.91566],[92.8963,12.91001],[92.89627,12.90496],[92.90036,12.90388],[92.90011,12.90284],[92.89618,12.90426],[92.8952,12.89796],[92.89108,12.89521],[92.88527,12.89341],[92.8776,12.89522],[92.87131,12.89237],[92.8702,12.88903],[92.87442,12.88547],[92.87432,12.88234],[92.87308,12.88082],[92.86539,12.88062],[92.86031,12.87807],[92.86249,12.87828],[92.8617,12.87144],[92.86461,12.86882],[92.8619,12.86859],[92.86243,12.86359],[92.86166,12.86858],[92.86444,12.86854],[92.86151,12.87117],[92.8622,12.87825],[92.85475,12.87757],[92.85285,12.87298],[92.84976,12.87314],[92.84717,12.86918],[92.85189,12.86634],[92.84887,12.86289],[92.84547,12.86199],[92.85078,12.85376],[92.84892,12.8512],[92.85007,12.845],[92.84822,12.84487],[92.84778,12.84742],[92.84604,12.84569],[92.84186,12.84619],[92.83823,12.84417],[92.84192,12.83962],[92.84053,12.83646],[92.83777,12.83531],[92.83705,12.83668],[92.83541,12.83473],[92.8318,12.8364],[92.83096,12.83467],[92.83346,12.82862],[92.83013,12.8285],[92.83044,12.82978],[92.82757,12.832],[92.82618,12.83089],[92.82728,12.82662],[92.82538,12.82559],[92.82682,12.82427],[92.82366,12.82321],[92.82902,12.81923],[92.82944,12.81721],[92.82724,12.81615],[92.82697,12.81397],[92.82841,12.81006],[92.8267,12.81403],[92.82886,12.81889],[92.82344,12.8231],[92.82658,12.8244],[92.82513,12.82568],[92.82702,12.82666],[92.82594,12.83099],[92.82765,12.83223],[92.83309,12.82881],[92.8307,12.83469],[92.83167,12.83689],[92.8355,12.83503],[92.83675,12.837],[92.83792,12.83565],[92.84074,12.83732],[92.84154,12.84063],[92.83922,12.84135],[92.83979,12.84254],[92.83618,12.84512],[92.83625,12.84711],[92.83819,12.84445],[92.84138,12.84638],[92.84554,12.84596],[92.8475,12.84773],[92.84956,12.8451],[92.84871,12.8517],[92.85034,12.85387],[92.84705,12.857],[92.84506,12.86222],[92.85108,12.86632],[92.84814,12.86707],[92.84671,12.86933],[92.84971,12.87399],[92.85268,12.87354],[92.85388,12.87711],[92.84451,12.87483],[92.84256,12.8685],[92.83838,12.86418],[92.83974,12.86139],[92.83807,12.86408],[92.83882,12.86571],[92.83635,12.86586],[92.84046,12.8659],[92.83965,12.87128],[92.83845,12.86911],[92.83886,12.87152],[92.84069,12.86982],[92.83989,12.86812],[92.84145,12.86805],[92.8444,12.87513],[92.8477,12.87607],[92.84227,12.87522],[92.8396,12.87668],[92.84207,12.88588],[92.84196,12.89079],[92.84069,12.89161],[92.83413,12.88568],[92.82975,12.88462],[92.82627,12.8874],[92.82285,12.89594],[92.80884,12.89749],[92.8067,12.88843],[92.80608,12.88932],[92.8078,12.89005],[92.80694,12.89348],[92.80844,12.89309],[92.80804,12.89719],[92.80208,12.89709],[92.79079,12.88994],[92.79136,12.88416],[92.79619,12.88446],[92.79679,12.88061],[92.79563,12.88425],[92.79202,12.88061],[92.79309,12.87687],[92.79186,12.87547],[92.79549,12.87],[92.79189,12.86966],[92.79204,12.86463],[92.79656,12.86507],[92.80026,12.86278],[92.8002,12.86077],[92.8044,12.86107],[92.80017,12.86057],[92.80022,12.86255],[92.79665,12.86483],[92.79276,12.86368],[92.7951,12.86281],[92.79559,12.86045],[92.79918,12.8593],[92.79794,12.85758],[92.80022,12.85699],[92.79993,12.85422],[92.80184,12.85171],[92.79952,12.85043],[92.80041,12.84846],[92.79938,12.85045],[92.80163,12.85168],[92.79966,12.85418],[92.80002,12.85685],[92.79778,12.85709],[92.79877,12.85946],[92.79541,12.8602],[92.79418,12.86286],[92.7884,12.86149],[92.78858,12.85577],[92.79035,12.85581],[92.78972,12.84985],[92.79157,12.85041],[92.79064,12.84892],[92.79175,12.84921],[92.79301,12.84451],[92.79171,12.849],[92.79036,12.84895],[92.79136,12.85028],[92.78955,12.8497],[92.79007,12.85604],[92.78814,12.85563],[92.78725,12.86124],[92.7832,12.86189],[92.7818,12.85998],[92.78117,12.84117],[92.78567,12.83292],[92.78482,12.82466],[92.78056,12.82385],[92.78207,12.80918],[92.78756,12.81462],[92.78921,12.82886],[92.78771,12.81529],[92.78969,12.81553],[92.79196,12.81171],[92.79383,12.81379],[92.80063,12.81283],[92.79791,12.80812],[92.80024,12.80456],[92.79756,12.80553],[92.79906,12.80646],[92.79754,12.80819],[92.79973,12.81343],[92.79612,12.81222],[92.79386,12.81338],[92.7907,12.80759],[92.79255,12.80503],[92.79236,12.79956],[92.79516,12.79908],[92.79301,12.79545],[92.79467,12.79367],[92.79302,12.79488],[92.79245,12.79342],[92.79379,12.79769],[92.79179,12.79734],[92.79494,12.79865],[92.79202,12.79964],[92.79222,12.805],[92.79034,12.8075],[92.7922,12.80968],[92.78983,12.81471],[92.78164,12.80816],[92.78042,12.80505],[92.78037,12.79799],[92.78417,12.78867],[92.78711,12.78651],[92.7835,12.78162],[92.78378,12.77568],[92.78746,12.7792],[92.79086,12.77418],[92.79338,12.77436],[92.79076,12.77393],[92.78749,12.77895],[92.78623,12.77845],[92.78719,12.77677],[92.78499,12.77716],[92.78377,12.77535],[92.78504,12.76708],[92.78383,12.76215],[92.7849,12.76737],[92.78266,12.77091],[92.78265,12.76761],[92.77936,12.76198],[92.7826,12.76778],[92.78231,12.77093],[92.78421,12.77133],[92.7833,12.77546],[92.78127,12.77404],[92.78038,12.77631],[92.7832,12.77572],[92.78296,12.78184],[92.78659,12.78615],[92.7835,12.78845],[92.77943,12.7991],[92.78077,12.80954],[92.77931,12.82412],[92.7721,12.83172],[92.7727,12.84256],[92.76635,12.84842],[92.76595,12.83619],[92.76224,12.83915],[92.76247,12.83528],[92.76492,12.83363],[92.76267,12.82886],[92.76423,12.82707],[92.76384,12.82373],[92.76549,12.82277],[92.76446,12.82102],[92.76554,12.81884],[92.76336,12.8251],[92.76121,12.82638],[92.761,12.82425],[92.75536,12.82323],[92.75511,12.81958],[92.75357,12.81919],[92.75414,12.81769],[92.75344,12.81894],[92.75556,12.82368],[92.76074,12.82455],[92.76085,12.8266],[92.76342,12.82595],[92.76207,12.82876],[92.76426,12.83327],[92.76191,12.83525],[92.76144,12.84211],[92.75661,12.8449],[92.7561,12.84679],[92.75253,12.84805],[92.75359,12.8455],[92.75052,12.84537],[92.74853,12.84347],[92.74676,12.8407],[92.74753,12.8368],[92.7455,12.84283],[92.74296,12.83904],[92.74258,12.82066],[92.74032,12.83648],[92.73912,12.83702],[92.73695,12.82821],[92.73814,12.81184],[92.73535,12.80985],[92.73774,12.80439],[92.73531,12.80725],[92.73533,12.82034],[92.73311,12.82295],[92.73074,12.83599],[92.72883,12.83508],[92.72607,12.82827],[92.72371,12.82852],[92.72207,12.82523],[92.72059,12.81534],[92.72216,12.80991],[92.72074,12.81077],[92.71961,12.80626],[92.72047,12.797],[92.72946,12.79937],[92.73121,12.80171],[92.72961,12.7992],[92.73204,12.79784],[92.73214,12.79453],[92.73746,12.7943],[92.73767,12.79572],[92.73866,12.79473],[92.73703,12.79558],[92.7376,12.79427],[92.73616,12.79336],[92.73904,12.79092],[92.73656,12.79299],[92.73558,12.79221],[92.73528,12.78725],[92.73713,12.78412],[92.73561,12.78487],[92.73525,12.78336],[92.73773,12.77916],[92.73509,12.78297],[92.73521,12.785],[92.73694,12.78415],[92.73561,12.78862],[92.73434,12.78767],[92.73274,12.78931],[92.73519,12.79001],[92.73352,12.79248],[92.73571,12.79364],[92.73211,12.79335],[92.7312,12.79752],[92.72783,12.79918],[92.72477,12.79784],[92.72,12.79029],[92.7248,12.76822],[92.73118,12.7536],[92.72941,12.75055],[92.72968,12.74389],[92.73365,12.73869],[92.73718,12.73864],[92.73744,12.73682],[92.73894,12.73962],[92.74044,12.73905],[92.739,12.73936],[92.73748,12.73656],[92.73961,12.73279],[92.73956,12.72632],[92.74584,12.72282],[92.73942,12.721],[92.73871,12.71756],[92.7397,12.71813],[92.74033,12.71534],[92.73863,12.715],[92.73793,12.71006],[92.73988,12.70207],[92.74258,12.70151],[92.74154,12.70233],[92.74367,12.70404],[92.7436,12.70651],[92.74381,12.7038],[92.74187,12.70233],[92.74413,12.70192],[92.74472,12.69917],[92.74378,12.70186],[92.73691,12.699],[92.73445,12.69968],[92.73105,12.6961],[92.73276,12.69873],[92.72965,12.69869],[92.72642,12.69409],[92.72622,12.69059],[92.73064,12.6907],[92.73482,12.68427],[92.73196,12.6726],[92.73229,12.67418],[92.73585,12.67166],[92.73592,12.67292],[92.7363,12.67162],[92.73806,12.67286],[92.73857,12.67141],[92.74035,12.67297],[92.74305,12.67023],[92.74329,12.6718],[92.74359,12.67077],[92.75,12.67502],[92.762,12.67126],[92.76939,12.6731],[92.77627,12.68486],[92.78302,12.69241],[92.78467,12.708],[92.77725,12.71353],[92.77578,12.71838],[92.78155,12.72009],[92.77883,12.72845],[92.78181,12.73369],[92.77698,12.73478],[92.77287,12.72813],[92.76958,12.72938],[92.76812,12.72607],[92.76929,12.72249],[92.76773,12.72144],[92.76787,12.72351],[92.7616,12.72281],[92.76791,12.72381],[92.76753,12.72177],[92.76876,12.72232],[92.7678,12.726],[92.76912,12.72949],[92.77233,12.72874],[92.77641,12.7352],[92.78067,12.73482],[92.77769,12.73784],[92.78088,12.73599],[92.78125,12.74038],[92.78258,12.73288],[92.77951,12.72804],[92.78314,12.725],[92.7869,12.72678],[92.7897,12.72547],[92.78097,12.72537],[92.78441,12.71288],[92.78195,12.71077],[92.78629,12.70888],[92.7871,12.70278],[92.7862,12.69125],[92.78088,12.67918],[92.77908,12.67102],[92.78183,12.66667],[92.78195,12.6616],[92.78421,12.66025],[92.78127,12.65933],[92.78388,12.65531],[92.78206,12.65468],[92.78273,12.64697],[92.78105,12.64481],[92.77992,12.63093],[92.78599,12.62452],[92.78307,12.61748],[92.78299,12.60645],[92.78049,12.602],[92.78001,12.5941],[92.77742,12.59032],[92.77893,12.57998],[92.77645,12.59047],[92.77983,12.59495],[92.7841,12.62552],[92.77882,12.62964],[92.77888,12.63713],[92.77741,12.6384],[92.77566,12.63074],[92.76953,12.62825],[92.76619,12.63161],[92.76187,12.62442],[92.76523,12.63206],[92.76981,12.6291],[92.7751,12.63136],[92.77628,12.63394],[92.77545,12.63783],[92.77839,12.6412],[92.7783,12.66016],[92.7765,12.66693],[92.77315,12.67039],[92.76943,12.66812],[92.76418,12.66781],[92.7563,12.66925],[92.75231,12.67195],[92.75067,12.66632],[92.74304,12.66769],[92.74061,12.66118],[92.73694,12.65771],[92.73283,12.65711],[92.73156,12.653],[92.7348,12.63903],[92.72852,12.63604],[92.7318,12.63278],[92.73735,12.632],[92.73577,12.62594],[92.73994,12.62273],[92.74077,12.61998],[92.74766,12.62046],[92.74086,12.6197],[92.74003,12.62237],[92.73492,12.62725],[92.7333,12.62407],[92.73477,12.62752],[92.73556,12.62617],[92.73679,12.63192],[92.73165,12.63256],[92.72748,12.63616],[92.72391,12.62629],[92.72047,12.62611],[92.72329,12.6229],[92.72371,12.62015],[92.72115,12.61886],[92.72366,12.61728],[92.72244,12.61536],[92.72338,12.61733],[92.71993,12.61841],[92.72161,12.62278],[92.72022,12.62617],[92.72153,12.62761],[92.71992,12.63641],[92.71825,12.63783],[92.71824,12.64433],[92.71325,12.64235],[92.71483,12.63962],[92.71384,12.63238],[92.71032,12.62577],[92.71126,12.62675],[92.71221,12.62273],[92.70259,12.60479],[92.70188,12.61287],[92.69321,12.60647],[92.68887,12.60892],[92.6858,12.61432],[92.68398,12.60905],[92.68548,12.60201],[92.69317,12.60225],[92.69379,12.60081],[92.70045,12.60022],[92.70223,12.60116],[92.70286,12.59768],[92.70737,12.59401],[92.70352,12.58994],[92.70406,12.58636],[92.70667,12.58572],[92.70437,12.57912],[92.70821,12.57595],[92.70384,12.56557],[92.70804,12.55672],[92.69808,12.54107],[92.69847,12.53537],[92.69961,12.53557],[92.69902,12.52839],[92.69305,12.51559],[92.69347,12.50821],[92.69629,12.51224],[92.69939,12.51162],[92.69944,12.50036],[92.70169,12.50072],[92.70495,12.50572],[92.7036,12.50175],[92.70224,12.50002],[92.69915,12.50002],[92.69846,12.49698],[92.70112,12.49645],[92.70371,12.49889],[92.70357,12.49444],[92.70596,12.49464],[92.70694,12.49279],[92.70586,12.49054],[92.70201,12.49104],[92.69954,12.46984],[92.69489,12.47037],[92.69594,12.4647],[92.69878,12.4664],[92.70019,12.46495],[92.70123,12.46125],[92.69937,12.45662],[92.70266,12.45834],[92.7045,12.45222],[92.70338,12.44959],[92.70005,12.44768],[92.70041,12.43652],[92.69803,12.42977],[92.69488,12.429],[92.69868,12.40855],[92.69513,12.40041],[92.69767,12.37851],[92.69865,12.37723],[92.70246,12.3789],[92.70277,12.3771],[92.70053,12.37597],[92.70454,12.37069],[92.70359,12.36923],[92.70011,12.36992],[92.69817,12.36733],[92.70041,12.3588],[92.6991,12.33861],[92.70027,12.33309],[92.69904,12.32828],[92.70152,12.32733],[92.70399,12.33199],[92.70709,12.32957],[92.70901,12.32997],[92.70667,12.32365],[92.70741,12.31676],[92.71042,12.31022],[92.71249,12.31277],[92.71494,12.31209],[92.71901,12.30371],[92.71786,12.30162],[92.71948,12.30034],[92.72353,12.30257],[92.73156,12.30204],[92.7356,12.31295],[92.73876,12.31497],[92.73898,12.31957],[92.74334,12.32779],[92.74119,12.32947],[92.74155,12.33358],[92.73775,12.33423],[92.7384,12.33598],[92.73806,12.33369],[92.73955,12.33472],[92.74178,12.33372],[92.74168,12.32927],[92.74154,12.33126],[92.74451,12.33369],[92.74397,12.33712],[92.74631,12.3407],[92.74711,12.34928],[92.74316,12.35337],[92.74622,12.35276],[92.7497,12.35641],[92.74831,12.35991],[92.74442,12.35813],[92.74261,12.35946],[92.74357,12.36213],[92.74652,12.36179],[92.74918,12.36562],[92.74669,12.36117],[92.7442,12.36223],[92.74293,12.35931],[92.74854,12.36016],[92.74987,12.3559],[92.74645,12.35239],[92.74372,12.35344],[92.74745,12.34981],[92.74774,12.34442],[92.74445,12.33696],[92.74504,12.33363],[92.74186,12.33085],[92.7436,12.32653],[92.73941,12.31851],[92.73956,12.315],[92.73608,12.31214],[92.73413,12.30243],[92.73534,12.30067],[92.74244,12.30167],[92.74309,12.30438],[92.74217,12.30093],[92.74461,12.29934],[92.74857,12.30348],[92.75014,12.29865],[92.75281,12.29609],[92.75734,12.29856],[92.75683,12.30385],[92.75996,12.30672],[92.76315,12.31425],[92.76416,12.31259],[92.7649,12.32213],[92.76482,12.31359],[92.76245,12.30499],[92.76358,12.30171],[92.76519,12.3035],[92.76829,12.31457],[92.77078,12.3178],[92.76903,12.32201],[92.76913,12.32675],[92.77175,12.32721],[92.7693,12.33025],[92.77193,12.33229],[92.77043,12.33376],[92.77211,12.33214],[92.76952,12.33031],[92.77198,12.32735],[92.76921,12.32648],[92.76949,12.32068],[92.77506,12.31744],[92.77642,12.3231],[92.78001,12.32316],[92.77676,12.32299],[92.77521,12.31959],[92.77663,12.31882],[92.77227,12.31677],[92.77561,12.31608],[92.77757,12.31799],[92.77928,12.31683],[92.77904,12.3185],[92.78228,12.31897],[92.7748,12.31564],[92.77867,12.31307],[92.78406,12.3138],[92.79065,12.31166],[92.79242,12.31388],[92.79091,12.31141],[92.79438,12.30628],[92.80183,12.31324],[92.80981,12.31565],[92.83145,12.30268],[92.83701,12.30646],[92.8338,12.30855],[92.83732,12.30663],[92.84746,12.30828],[92.85222,12.31351],[92.85559,12.31427],[92.85553,12.31802],[92.85377,12.31776],[92.85679,12.31853],[92.85489,12.31949],[92.86012,12.31916],[92.85919,12.32244],[92.86055,12.32349],[92.85676,12.32821],[92.85136,12.32596],[92.84837,12.32808],[92.84744,12.3258],[92.84543,12.32667],[92.84553,12.32886],[92.84282,12.32646],[92.84157,12.32798],[92.84293,12.3294],[92.84116,12.33122],[92.83936,12.33092],[92.83918,12.33252],[92.83186,12.33554],[92.8431,12.33004],[92.84255,12.3268],[92.84547,12.32926],[92.84564,12.32706],[92.84742,12.32613],[92.84838,12.32833],[92.84965,12.32692],[92.85117,12.32801],[92.85152,12.32632],[92.85421,12.32684],[92.85806,12.32947],[92.85472,12.33234],[92.85681,12.34029],[92.85899,12.33863],[92.85775,12.33554],[92.85945,12.33534],[92.85963,12.34192],[92.85663,12.34496],[92.85537,12.34272],[92.85319,12.34285],[92.85465,12.34203],[92.85379,12.34073],[92.85452,12.34201],[92.84789,12.34348],[92.85503,12.34284],[92.85706,12.34521],[92.85987,12.34211],[92.85997,12.33628],[92.86421,12.33626],[92.86507,12.33913],[92.86373,12.33579],[92.86571,12.33339],[92.86819,12.33613],[92.86598,12.33316],[92.86939,12.33126],[92.87037,12.3333],[92.86957,12.3311],[92.87144,12.32997],[92.87618,12.33129],[92.87604,12.33246],[92.87643,12.33144],[92.88302,12.3332],[92.87736,12.33328],[92.87382,12.33703],[92.87326,12.33517],[92.87365,12.33724],[92.87769,12.3336],[92.87721,12.33507],[92.87992,12.33473],[92.87996,12.34205],[92.87839,12.34394],[92.87953,12.34485],[92.8833,12.34247],[92.88554,12.34366],[92.89118,12.33897],[92.89429,12.33397],[92.89897,12.33376],[92.89489,12.33665],[92.89558,12.33877],[92.89193,12.34211],[92.88919,12.34769],[92.88993,12.35],[92.88593,12.35117],[92.88527,12.35531],[92.88333,12.35703],[92.88122,12.35653],[92.87798,12.35966],[92.8763,12.35535],[92.87229,12.35372],[92.86978,12.35746],[92.86804,12.35752],[92.8701,12.35943],[92.86943,12.362],[92.86027,12.36105],[92.85552,12.36708],[92.8535,12.36526],[92.85143,12.36725],[92.85107,12.36527],[92.84653,12.36525],[92.84628,12.36217],[92.8481,12.36078],[92.84603,12.36217],[92.84679,12.36373],[92.84461,12.36317],[92.84577,12.36429],[92.84374,12.36493],[92.84592,12.36453],[92.84539,12.36311],[92.84626,12.36545],[92.84976,12.36574],[92.85082,12.36762],[92.85343,12.36569],[92.85449,12.36757],[92.8585,12.36761],[92.86106,12.36944],[92.85608,12.37299],[92.85172,12.37957],[92.85062,12.3854],[92.84629,12.38515],[92.84423,12.38266],[92.84625,12.38108],[92.84408,12.37944],[92.84456,12.38121],[92.84611,12.38113],[92.84398,12.38253],[92.84601,12.38374],[92.8466,12.38896],[92.84233,12.3918],[92.84486,12.38772],[92.84268,12.39086],[92.84008,12.39058],[92.8395,12.38918],[92.84212,12.38694],[92.84142,12.38537],[92.83871,12.38353],[92.83755,12.38885],[92.83566,12.3838],[92.82995,12.38296],[92.82839,12.38104],[92.83019,12.37832],[92.82754,12.37861],[92.82308,12.37422],[92.82486,12.37629],[92.82124,12.37994],[92.82011,12.37917],[92.82136,12.38006],[92.82506,12.37639],[92.8276,12.37881],[92.83005,12.37846],[92.82813,12.38138],[92.83273,12.38343],[92.8324,12.38573],[92.83534,12.38414],[92.83754,12.38938],[92.83902,12.38753],[92.83884,12.38394],[92.84088,12.38533],[92.84143,12.38689],[92.83893,12.38981],[92.84155,12.39139],[92.83451,12.39462],[92.83543,12.39164],[92.8343,12.39365],[92.83179,12.39346],[92.83114,12.39095],[92.83072,12.39266],[92.82945,12.39191],[92.8307,12.39285],[92.83116,12.39117],[92.83143,12.39366],[92.83387,12.3933],[92.83428,12.39495],[92.83859,12.39425],[92.83764,12.39722],[92.83214,12.3984],[92.83241,12.40063],[92.82766,12.39425],[92.827,12.39531],[92.82476,12.39344],[92.82382,12.39577],[92.82197,12.39589],[92.82204,12.39093],[92.81967,12.38908],[92.82195,12.39115],[92.82189,12.39615],[92.82354,12.39633],[92.82502,12.39367],[92.82869,12.396],[92.82734,12.39797],[92.82515,12.39713],[92.827,12.39837],[92.82906,12.39683],[92.82636,12.40173],[92.82702,12.39958],[92.82542,12.39889],[92.82429,12.3998],[92.82589,12.40005],[92.82165,12.40229],[92.82594,12.40024],[92.8245,12.39959],[92.82557,12.39916],[92.82686,12.39985],[92.82636,12.40211],[92.82883,12.3979],[92.83252,12.40182],[92.83412,12.39814],[92.83743,12.39863],[92.83699,12.40069],[92.83873,12.39958],[92.83998,12.40394],[92.83689,12.40442],[92.83695,12.40634],[92.83749,12.40397],[92.84009,12.40518],[92.8384,12.40863],[92.82875,12.41034],[92.82388,12.40834],[92.82437,12.41179],[92.82305,12.4132],[92.8233,12.41023],[92.81664,12.40982],[92.81761,12.41405],[92.81571,12.41638],[92.81551,12.41322],[92.81039,12.40986],[92.8042,12.41127],[92.80517,12.41001],[92.8036,12.40448],[92.80153,12.40577],[92.79913,12.4008],[92.80134,12.40591],[92.80331,12.40456],[92.80416,12.41174],[92.80692,12.41027],[92.81109,12.41067],[92.81287,12.41199],[92.81373,12.41597],[92.81293,12.41219],[92.81542,12.41387],[92.81575,12.41699],[92.81813,12.41506],[92.81743,12.4106],[92.82309,12.41095],[92.82264,12.41403],[92.82452,12.41305],[92.82536,12.40951],[92.83063,12.41242],[92.82939,12.41154],[92.83033,12.40981],[92.83394,12.41048],[92.83142,12.41818],[92.8276,12.41525],[92.82606,12.41608],[92.82821,12.41592],[92.83022,12.41874],[92.82949,12.41971],[92.8249,12.41877],[92.82472,12.42075],[92.82111,12.42258],[92.82069,12.42555],[92.81533,12.42491],[92.81727,12.42208],[92.81497,12.4249],[92.82091,12.42595],[92.82163,12.42268],[92.8267,12.41915],[92.82647,12.4222],[92.82728,12.4201],[92.82856,12.42087],[92.82797,12.4248],[92.82963,12.42826],[92.82429,12.4306],[92.82384,12.42878],[92.82399,12.43069],[92.82174,12.43171],[92.80959,12.43371],[92.805,12.43876],[92.79461,12.43612],[92.79307,12.43761],[92.7924,12.43584],[92.79039,12.43694],[92.78879,12.43559],[92.78921,12.43669],[92.78724,12.43709],[92.7894,12.43677],[92.78905,12.43573],[92.79039,12.4371],[92.79265,12.43626],[92.79357,12.44626],[92.79018,12.44987],[92.78982,12.44696],[92.78731,12.44672],[92.79002,12.4478],[92.78904,12.45338],[92.79448,12.45407],[92.79238,12.4547],[92.7937,12.45818],[92.79158,12.46009],[92.79106,12.45567],[92.79141,12.4603],[92.79401,12.45823],[92.79269,12.45495],[92.79496,12.45391],[92.78914,12.45259],[92.79345,12.44745],[92.79541,12.44956],[92.79742,12.45393],[92.79569,12.4603],[92.7982,12.46407],[92.79187,12.46868],[92.78648,12.4666],[92.78159,12.46936],[92.78212,12.4679],[92.77919,12.46519],[92.78056,12.46458],[92.77972,12.46238],[92.77868,12.46388],[92.77752,12.46293],[92.77842,12.46015],[92.77732,12.46291],[92.77863,12.46418],[92.77967,12.4627],[92.77905,12.46515],[92.78176,12.4684],[92.77871,12.46976],[92.77373,12.46883],[92.77187,12.47104],[92.77497,12.46899],[92.78254,12.46958],[92.78673,12.46702],[92.79097,12.4691],[92.78542,12.47468],[92.78685,12.47796],[92.78908,12.47723],[92.78824,12.48003],[92.79049,12.48129],[92.7898,12.48342],[92.78661,12.4839],[92.79,12.48358],[92.79073,12.48078],[92.78892,12.47941],[92.78954,12.47711],[92.7869,12.47751],[92.78576,12.47471],[92.79954,12.46466],[92.79711,12.46082],[92.79903,12.45511],[92.7951,12.44489],[92.79585,12.43788],[92.80416,12.44108],[92.80923,12.43623],[92.81949,12.43496],[92.81957,12.43675],[92.81599,12.43551],[92.81022,12.44268],[92.81633,12.44481],[92.81257,12.44582],[92.81149,12.44877],[92.81366,12.45015],[92.81609,12.44713],[92.8178,12.44919],[92.81775,12.45157],[92.81563,12.45068],[92.81525,12.45472],[92.816,12.45072],[92.81766,12.45199],[92.81821,12.44905],[92.81612,12.4468],[92.81307,12.44985],[92.81211,12.44832],[92.81284,12.44635],[92.8168,12.44466],[92.81076,12.44286],[92.81633,12.43657],[92.82015,12.43706],[92.8215,12.43408],[92.83551,12.43071],[92.84091,12.4372],[92.83654,12.4363],[92.83518,12.43874],[92.83242,12.43835],[92.83334,12.44093],[92.82886,12.44199],[92.83373,12.44098],[92.83345,12.43858],[92.83517,12.43942],[92.8343,12.44169],[92.836,12.44361],[92.8346,12.44172],[92.83548,12.4393],[92.83799,12.43921],[92.83606,12.4411],[92.83826,12.43921],[92.83644,12.43869],[92.83658,12.43733],[92.8417,12.43745],[92.83706,12.43076],[92.84566,12.42347],[92.85127,12.42438],[92.8509,12.42869],[92.8493,12.42782],[92.8508,12.42903],[92.85289,12.42388],[92.85627,12.42292],[92.85936,12.42424],[92.85709,12.42772],[92.85627,12.43418],[92.85955,12.43683],[92.85663,12.4344],[92.85836,12.42655],[92.86431,12.42636],[92.86761,12.42251],[92.8709,12.42134],[92.87351,12.41771],[92.87403,12.41342],[92.87757,12.41908],[92.88216,12.42077],[92.88476,12.42452],[92.88339,12.4283],[92.88234,12.42713],[92.88338,12.42848],[92.88393,12.42717],[92.88331,12.43082],[92.88479,12.43126],[92.88402,12.42762],[92.88577,12.42673],[92.8852,12.42549],[92.88865,12.42633],[92.88529,12.42522],[92.88565,12.42205],[92.89234,12.41889],[92.89501,12.41543],[92.89716,12.41594],[92.89941,12.41719],[92.89617,12.4203],[92.89501,12.41973],[92.89586,12.42086],[92.89409,12.42181],[92.89394,12.42515],[92.89178,12.42471],[92.89349,12.42579],[92.88606,12.43485],[92.88373,12.43642],[92.87803,12.43172],[92.87479,12.43129],[92.87258,12.43386],[92.87472,12.43157],[92.87807,12.43195],[92.88338,12.43653],[92.8774,12.44063],[92.87629,12.43814],[92.87699,12.44075],[92.87505,12.44267],[92.87215,12.4401],[92.8632,12.44672],[92.86274,12.44529],[92.86036,12.44971],[92.84866,12.45806],[92.84429,12.46528],[92.84019,12.46563],[92.84083,12.46463],[92.83939,12.46446],[92.84314,12.46788],[92.83855,12.47095],[92.83823,12.4744],[92.84021,12.47574],[92.83723,12.47581],[92.8348,12.48016],[92.83208,12.48061],[92.83431,12.47555],[92.83019,12.47169],[92.83278,12.46951],[92.83127,12.4723],[92.83235,12.47269],[92.83326,12.46948],[92.83031,12.47056],[92.83063,12.47454],[92.82908,12.47162],[92.82557,12.47305],[92.8256,12.47199],[92.82556,12.47329],[92.82873,12.47168],[92.82945,12.47471],[92.83357,12.47539],[92.83157,12.48013],[92.83342,12.48152],[92.83655,12.47938],[92.83763,12.47608],[92.84084,12.47639],[92.83866,12.47362],[92.84051,12.47139],[92.84239,12.47931],[92.83487,12.4858],[92.83398,12.48847],[92.82447,12.48217],[92.82227,12.48475],[92.8158,12.48681],[92.81634,12.48782],[92.8163,12.48657],[92.82261,12.48531],[92.82462,12.48289],[92.83287,12.48926],[92.83559,12.48659],[92.83687,12.49125],[92.82253,12.50002],[92.83759,12.49334],[92.83471,12.49616],[92.83506,12.50142],[92.83714,12.50126],[92.83894,12.49747],[92.8437,12.49833],[92.84574,12.5028],[92.85046,12.50247],[92.85251,12.50574],[92.85073,12.50688],[92.85131,12.50881],[92.85515,12.50976],[92.85657,12.50791],[92.85451,12.50969],[92.85118,12.50786],[92.85292,12.50557],[92.85114,12.50213],[92.84595,12.50249],[92.84507,12.49866],[92.84218,12.49711],[92.83817,12.49738],[92.83692,12.50098],[92.83549,12.50064],[92.83542,12.49643],[92.83835,12.49159],[92.83742,12.48541],[92.84326,12.48034],[92.84319,12.47077],[92.85369,12.45731],[92.85481,12.46126],[92.85209,12.46584],[92.85349,12.47092],[92.85524,12.47119],[92.85263,12.46779],[92.85388,12.46253],[92.85696,12.46463],[92.86035,12.45867],[92.86319,12.45841],[92.85922,12.46173],[92.86236,12.46526],[92.85954,12.46516],[92.85884,12.46665],[92.85959,12.46538],[92.86282,12.46568],[92.85985,12.46177],[92.86386,12.45821],[92.85883,12.45863],[92.85571,12.46394],[92.85545,12.45705],[92.86878,12.44616],[92.87047,12.4474],[92.8674,12.45428],[92.87112,12.45525],[92.87183,12.45747],[92.869,12.45694],[92.87199,12.45806],[92.87139,12.45488],[92.86803,12.45399],[92.87117,12.44815],[92.87557,12.4466],[92.88102,12.45033],[92.8757,12.45287],[92.87607,12.45603],[92.87578,12.45321],[92.87779,12.45191],[92.88261,12.45247],[92.88527,12.45595],[92.88384,12.45777],[92.8805,12.45594],[92.87804,12.45806],[92.88123,12.46442],[92.87861,12.46725],[92.88159,12.46861],[92.88023,12.471],[92.87991,12.46822],[92.87848,12.46919],[92.8797,12.46828],[92.88041,12.47133],[92.88185,12.46873],[92.87892,12.46691],[92.88156,12.46521],[92.88314,12.46653],[92.87869,12.45806],[92.88133,12.45676],[92.88379,12.45853],[92.88622,12.45648],[92.88334,12.45103],[92.87701,12.44509],[92.88361,12.44246],[92.88511,12.44361],[92.88431,12.44528],[92.88604,12.44401],[92.88821,12.44712],[92.88555,12.44685],[92.88571,12.44937],[92.88612,12.44688],[92.89057,12.44904],[92.89501,12.44851],[92.89628,12.4501],[92.89569,12.45434],[92.89276,12.45359],[92.89066,12.45771],[92.88498,12.46028],[92.88884,12.46375],[92.8855,12.45983],[92.89056,12.45821],[92.89269,12.45402],[92.89586,12.45497],[92.89645,12.452],[92.89837,12.45244],[92.89896,12.45109],[92.89678,12.4516],[92.89566,12.44786],[92.88992,12.44787],[92.88445,12.44176],[92.8907,12.43684],[92.89438,12.43845],[92.8948,12.43598],[92.89704,12.43849],[92.89485,12.43582],[92.89454,12.43828],[92.89097,12.43656],[92.89474,12.4307],[92.90803,12.42097],[92.9082,12.41544],[92.90544,12.4077],[92.91078,12.40539],[92.91529,12.40695],[92.91506,12.41184],[92.92009,12.42611],[92.9185,12.42863],[92.92288,12.43465],[92.9218,12.43692],[92.91782,12.43701],[92.91919,12.44068],[92.91325,12.44076],[92.91359,12.44345],[92.91099,12.44439],[92.90793,12.44269],[92.90904,12.43799],[92.90819,12.44389],[92.91482,12.44442],[92.91191,12.44605],[92.91452,12.44792],[92.91425,12.45029],[92.91336,12.4488],[92.91239,12.45057],[92.9134,12.44904],[92.91441,12.45045],[92.91471,12.44786],[92.91236,12.44599],[92.91707,12.44261],[92.91953,12.44422],[92.92213,12.44234],[92.92743,12.44525],[92.93053,12.44925],[92.93344,12.44767],[92.93794,12.44807],[92.94074,12.45022],[92.94301,12.45511],[92.94464,12.45127],[92.94909,12.45671],[92.94536,12.45626],[92.94681,12.45945],[92.94323,12.46079],[92.94507,12.46007],[92.94695,12.46141],[92.94947,12.45795],[92.94759,12.46174],[92.94517,12.46216],[92.94772,12.46289],[92.95105,12.45949],[92.94871,12.4638],[92.95603,12.46634],[92.95784,12.47271],[92.95599,12.47514],[92.94991,12.4762],[92.94449,12.47241],[92.94216,12.46713],[92.93893,12.46911],[92.93376,12.46581],[92.92156,12.46484],[92.91911,12.46964],[92.91945,12.47275],[92.91547,12.473],[92.91673,12.47642],[92.91487,12.47765],[92.91181,12.47104],[92.90717,12.46924],[92.90852,12.46846],[92.90779,12.46722],[92.90825,12.46857],[92.9057,12.47065],[92.90881,12.46981],[92.91134,12.47113],[92.91388,12.47581],[92.91237,12.47833],[92.90828,12.47516],[92.90665,12.47741],[92.90828,12.47537],[92.91203,12.4787],[92.91311,12.47698],[92.91516,12.47811],[92.91913,12.47611],[92.91825,12.4786],[92.92053,12.47998],[92.91993,12.48324],[92.91824,12.48347],[92.91792,12.4813],[92.91688,12.48352],[92.914,12.48366],[92.91371,12.48654],[92.9126,12.48622],[92.91086,12.48933],[92.91429,12.50003],[92.91124,12.48926],[92.91387,12.48685],[92.9142,12.48419],[92.91693,12.48405],[92.91782,12.48167],[92.9182,12.48373],[92.92031,12.48328],[92.92088,12.47988],[92.91841,12.47817],[92.91971,12.47616],[92.91735,12.47677],[92.91617,12.47376],[92.92027,12.47289],[92.91944,12.47093],[92.92178,12.46571],[92.93262,12.4675],[92.9343,12.47009],[92.92977,12.47643],[92.92614,12.47674],[92.93142,12.47783],[92.92968,12.47713],[92.92924,12.47934],[92.93183,12.48133],[92.93074,12.4837],[92.93262,12.48472],[92.93115,12.48723],[92.92902,12.48648],[92.92653,12.48847],[92.92893,12.48923],[92.92721,12.49038],[92.92921,12.48916],[92.92681,12.4886],[92.92919,12.4867],[92.93119,12.48763],[92.93284,12.48524],[92.93172,12.48359],[92.93262,12.4819],[92.93637,12.48143],[92.94062,12.48513],[92.94223,12.49261],[92.94518,12.49498],[92.94402,12.49792],[92.9459,12.49966],[92.95281,12.49378],[92.95076,12.49211],[92.95079,12.48963],[92.95455,12.49143],[92.95626,12.48707],[92.96007,12.48567],[92.96411,12.48723],[92.96491,12.4888],[92.96325,12.48944],[92.96313,12.49233],[92.96883,12.49666],[92.9649,12.5045],[92.96685,12.5102],[92.96568,12.51318],[92.97102,12.51732],[92.96976,12.51944],[92.97438,12.52977],[92.97343,12.53595],[92.97542,12.54301],[92.96918,12.56263],[92.96496,12.56761],[92.96378,12.5746],[92.96132,12.57602],[92.96107,12.585],[92.95597,12.59275],[92.95492,12.60394],[92.95641,12.61429],[92.9588,12.61961],[92.94796,12.62754],[92.94623,12.62484],[92.94348,12.6239],[92.94751,12.62856],[92.9456,12.6299],[92.93709,12.62204],[92.9391,12.61601],[92.93622,12.61857],[92.93526,12.61762],[92.93768,12.61562],[92.92973,12.61692],[92.93438,12.61754],[92.93721,12.62377],[92.94554,12.63135],[92.95414,12.62428],[92.9567,12.62421],[92.95682,12.64029],[92.95926,12.65169],[92.96249,12.65845],[92.96092,12.66902],[92.96525,12.67702],[92.9653,12.68152],[92.96303,12.68559],[92.96547,12.69438],[92.96252,12.6953],[92.96212,12.69714],[92.96481,12.70244],[92.96386,12.7044],[92.97077,12.71297],[92.97347,12.71221],[92.97756,12.70781],[92.98005,12.7094],[92.97674,12.71912],[92.97338,12.72126],[92.9675,12.72051],[92.96444,12.72581],[92.96373,12.73014],[92.96855,12.73978],[92.96163,12.74731],[92.96171,12.75437],[92.95171,12.75711],[92.94823,12.76221],[92.94988,12.77007],[92.94825,12.77094],[92.93894,12.76753],[92.93322,12.77374],[92.92642,12.77439],[92.9334,12.77424],[92.93431,12.78347],[92.93726,12.78299],[92.94145,12.79029],[92.94869,12.7932],[92.94895,12.79613],[92.95112,12.79521],[92.94872,12.79682],[92.94971,12.79857],[92.94867,12.7996],[92.95449,12.80643],[92.9524,12.80864],[92.95071,12.81488],[92.94629,12.81792],[92.94518,12.82111],[92.94667,12.82341],[92.9438,12.82601],[92.94492,12.83269],[92.9476,12.83452],[92.94847,12.83595],[92.94692,12.83557],[92.94704,12.83692],[92.94863,12.8367],[92.94911,12.83819],[92.94356,12.83823],[92.94126,12.83552],[92.93932,12.83681],[92.93733,12.83579],[92.93567,12.83952],[92.93088,12.83835],[92.9319,12.83691],[92.9297,12.83618],[92.93131,12.83501],[92.9278,12.83258],[92.92948,12.83165],[92.92429,12.82954],[92.92555,12.82706],[92.92283,12.82611],[92.92285,12.82208],[92.92573,12.81735],[92.92779,12.81619],[92.92927,12.81776],[92.93058,12.81632],[92.92688,12.81338],[92.92799,12.80925],[92.92442,12.80108],[92.92765,12.80911],[92.92622,12.81305],[92.92976,12.81654],[92.92748,12.81576],[92.92544,12.81724],[92.92264,12.82195],[92.92256,12.82608],[92.92505,12.82733],[92.92413,12.82996],[92.92901,12.83163],[92.92743,12.8327],[92.93092,12.83512],[92.92937,12.83622],[92.93154,12.8369],[92.93041,12.8384],[92.9356,12.8398],[92.93738,12.83624],[92.94026,12.83758],[92.93949,12.84821],[92.94116,12.85599],[92.93781,12.85844],[92.93467,12.85616],[92.93257,12.85811],[92.92638,12.85814],[92.92714,12.8622],[92.92919,12.85884],[92.9284,12.86168],[92.9302,12.86302],[92.93112,12.86761],[92.93044,12.87162],[92.92803,12.87191],[92.92798,12.87398],[92.93043,12.87643],[92.92727,12.87845],[92.92801,12.88271],[92.92463,12.8879],[92.92499,12.88563],[92.92178,12.88558],[92.91893,12.89006],[92.91741,12.88615],[92.91345,12.88905],[92.91248,12.88641],[92.91009,12.88543],[92.90712,12.88537],[92.90589,12.88702],[92.9075,12.89235],[92.91252,12.89978],[92.91,12.89851],[92.90986,12.90361],[92.91948,12.90877],[92.92228,12.91205],[92.92232,12.91539],[92.91647,12.91114],[92.91036,12.90998],[92.90723,12.91244],[92.91261,12.91325],[92.91359,12.91657],[92.91232,12.91934],[92.90717,12.91538],[92.89896,12.91806],[92.89813,12.9144],[92.90078,12.91266],[92.90036,12.91153],[92.89739,12.91411],[92.899,12.91935],[92.90214,12.92008],[92.89749,12.92681]]],[[[92.67727,12.94653],[92.67746,12.94673],[92.67758,12.9469],[92.67757,12.94718],[92.67739,12.94737],[92.67719,12.94753],[92.677,12.94764],[92.67683,12.9476],[92.6766,12.94748],[92.67656,12.94743],[92.67656,12.94724],[92.67663,12.9471],[92.67676,12.94706],[92.67684,12.94691],[92.67678,12.94677],[92.67676,12.94664],[92.6768,12.94653],[92.67701,12.94645],[92.67727,12.94653]]],[[[92.67056,12.94951],[92.67048,12.94957],[92.67026,12.94978],[92.67009,12.9499],[92.67001,12.94993],[92.66987,12.94994],[92.66966,12.9499],[92.66956,12.94983],[92.66949,12.94975],[92.66953,12.94963],[92.66971,12.94934],[92.66972,12.94918],[92.66969,12.94913],[92.6695,12.94907],[92.66944,12.94901],[92.66941,12.94892],[92.66943,12.94874],[92.6695,12.94868],[92.66965,12.94867],[92.66982,12.94872],[92.66986,12.94866],[92.66989,12.94851],[92.66994,12.94844],[92.67,12.94842],[92.67008,12.94842],[92.67037,12.94856],[92.6705,12.94865],[92.67068,12.94869],[92.67074,12.94869],[92.67084,12.9486],[92.67085,12.94841],[92.67091,12.94827],[92.67072,12.94829],[92.67028,12.94813],[92.6701,12.94801],[92.67006,12.94792],[92.67006,12.9478],[92.67011,12.94778],[92.67025,12.94777],[92.67044,12.94782],[92.67058,12.9479],[92.67071,12.94794],[92.67101,12.94817],[92.67099,12.94828],[92.67131,12.94847],[92.67144,12.94849],[92.67152,12.94848],[92.67161,12.94841],[92.67182,12.94835],[92.67198,12.94839],[92.67203,12.94851],[92.67203,12.94867],[92.672,12.94886],[92.67198,12.94891],[92.67198,12.94906],[92.67223,12.94938],[92.67224,12.94953],[92.67217,12.9496],[92.6719,12.94975],[92.67172,12.94978],[92.67139,12.94976],[92.67108,12.94969],[92.6708,12.94954],[92.67069,12.9495],[92.67056,12.94951]]],[[[92.67558,12.94908],[92.67555,12.94935],[92.67543,12.94951],[92.67534,12.94959],[92.67515,12.94971],[92.67494,12.94976],[92.67461,12.94976],[92.67349,12.94959],[92.67274,12.94937],[92.67254,12.94929],[92.67238,12.94917],[92.67225,12.94902],[92.67217,12.94885],[92.67223,12.94869],[92.67238,12.94852],[92.67257,12.94843],[92.67281,12.94843],[92.67312,12.94865],[92.67321,12.94878],[92.6737,12.94879],[92.67425,12.94888],[92.67441,12.94893],[92.67456,12.94893],[92.67465,12.94896],[92.67472,12.94896],[92.67477,12.94883],[92.6747,12.94836],[92.67486,12.94836],[92.67515,12.94855],[92.67544,12.94888],[92.67558,12.94908]]],[[[92.66729,12.9513],[92.66708,12.95131],[92.6669,12.95129],[92.66674,12.95129],[92.66643,12.95117],[92.66627,12.95105],[92.66621,12.95095],[92.6662,12.95072],[92.66625,12.95063],[92.66635,12.95056],[92.66628,12.95046],[92.66627,12.95041],[92.66627,12.95029],[92.66629,12.95022],[92.66643,12.95011],[92.66678,12.95003],[92.66704,12.95006],[92.6672,12.95003],[92.66733,12.94994],[92.66744,12.9498],[92.66766,12.94972],[92.66784,12.94976],[92.66808,12.94975],[92.66816,12.94967],[92.6683,12.94944],[92.66842,12.94946],[92.66851,12.94954],[92.66859,12.94969],[92.66863,12.94983],[92.66863,12.94999],[92.66862,12.95015],[92.6686,12.95021],[92.66847,12.95038],[92.66833,12.95064],[92.66833,12.95073],[92.66836,12.95081],[92.66838,12.951],[92.66836,12.95105],[92.66826,12.95115],[92.66813,12.95119],[92.66769,12.95102],[92.66759,12.95107],[92.6674,12.95123],[92.66737,12.95128],[92.66729,12.9513]]],[[[92.6676,12.95222],[92.66737,12.95223],[92.6672,12.95218],[92.66712,12.95213],[92.66702,12.95204],[92.66699,12.95198],[92.66699,12.95191],[92.667,12.95182],[92.66704,12.95178],[92.66715,12.95177],[92.66729,12.95177],[92.66737,12.95174],[92.66746,12.95167],[92.66759,12.95156],[92.66773,12.95147],[92.66779,12.95147],[92.66786,12.95143],[92.66796,12.95143],[92.66808,12.95145],[92.66816,12.95149],[92.66822,12.95164],[92.66822,12.95172],[92.66817,12.95182],[92.66807,12.95195],[92.66792,12.95205],[92.66768,12.95218],[92.6676,12.95222]]],[[[92.67085,12.95182],[92.67039,12.95237],[92.67024,12.95233],[92.67018,12.95219],[92.67023,12.95188],[92.67015,12.95175],[92.67007,12.95177],[92.66969,12.95191],[92.66955,12.95191],[92.66942,12.95187],[92.66932,12.95179],[92.66923,12.95166],[92.66904,12.95144],[92.66892,12.95096],[92.66891,12.95062],[92.66893,12.95047],[92.66914,12.95022],[92.66925,12.95016],[92.6694,12.95014],[92.66958,12.95017],[92.66983,12.95025],[92.66996,12.95026],[92.67066,12.95007],[92.67092,12.95011],[92.67093,12.95021],[92.67091,12.95031],[92.67069,12.95067],[92.67056,12.95103],[92.67055,12.95123],[92.67061,12.9513],[92.67075,12.95132],[92.67088,12.95122],[92.67095,12.95148],[92.67093,12.95166],[92.67085,12.95182]]],[[[92.89042,12.93276],[92.89035,12.93277],[92.8902,12.93285],[92.89014,12.93282],[92.8899,12.9326],[92.88981,12.93263],[92.88978,12.93276],[92.88968,12.93269],[92.88953,12.93271],[92.88951,12.93288],[92.88914,12.93261],[92.88907,12.93231],[92.88897,12.93215],[92.88916,12.932],[92.88919,12.93172],[92.88939,12.93179],[92.88962,12.93144],[92.88977,12.93152],[92.8899,12.93146],[92.88994,12.93162],[92.89007,12.93165],[92.89015,12.93143],[92.89034,12.93162],[92.89043,12.93153],[92.89057,12.93162],[92.89067,12.93156],[92.89081,12.93174],[92.89109,12.93174],[92.89112,12.93191],[92.89124,12.93185],[92.89132,12.93187],[92.89139,12.93201],[92.89161,12.93203],[92.89166,12.93224],[92.89179,12.93236],[92.89181,12.93243],[92.89164,12.93244],[92.89159,12.93261],[92.89149,12.93262],[92.89142,12.9326],[92.89137,12.93269],[92.89132,12.93269],[92.89115,12.93261],[92.89109,12.93272],[92.89099,12.93267],[92.89086,12.93275],[92.89074,12.93271],[92.89067,12.9327],[92.89065,12.9328],[92.8905,12.93275],[92.89042,12.93276]]],[[[92.66937,12.95222],[92.6696,12.95226],[92.66971,12.95237],[92.66985,12.95256],[92.66993,12.95268],[92.66998,12.9528],[92.66997,12.95288],[92.66991,12.95299],[92.66981,12.95307],[92.66961,12.95317],[92.66948,12.95321],[92.66935,12.95317],[92.66924,12.9531],[92.66913,12.95307],[92.66907,12.95303],[92.66898,12.95293],[92.6689,12.95281],[92.66885,12.95266],[92.66887,12.95249],[92.6689,12.9524],[92.66894,12.95233],[92.66899,12.95228],[92.66905,12.95227],[92.66917,12.95223],[92.66937,12.95222]]],[[[92.87482,12.93489],[92.87574,12.93567],[92.87599,12.93619],[92.87573,12.9367],[92.87482,12.93683],[92.87408,12.9364],[92.87424,12.93507],[92.87382,12.93474],[92.8727,12.93499],[92.87017,12.93384],[92.86705,12.9332],[92.86491,12.9333],[92.86309,12.9337],[92.86203,12.93416],[92.8611,12.9341],[92.85974,12.9336],[92.85848,12.93199],[92.85767,12.93008],[92.85753,12.92881],[92.85768,12.92606],[92.85826,12.92493],[92.86038,12.92251],[92.86128,12.92091],[92.86186,12.919],[92.86268,12.91805],[92.86463,12.91698],[92.86587,12.91746],[92.86829,12.91711],[92.87036,12.91632],[92.87139,12.91583],[92.87164,12.91541],[92.87208,12.91536],[92.87224,12.91546],[92.87225,12.91622],[92.87295,12.91704],[92.87319,12.91779],[92.87307,12.91815],[92.8734,12.91833],[92.87412,12.92138],[92.8741,12.92257],[92.87349,12.92401],[92.87401,12.92463],[92.87511,12.9248],[92.87681,12.92374],[92.87927,12.91997],[92.87955,12.91982],[92.88006,12.92003],[92.88004,12.92084],[92.88075,12.92245],[92.88144,12.92238],[92.88192,12.92195],[92.88199,12.92147],[92.88251,12.9212],[92.88289,12.92156],[92.88325,12.92159],[92.8843,12.9228],[92.88467,12.92285],[92.88519,12.92346],[92.88553,12.92355],[92.88565,12.92426],[92.88537,12.92509],[92.8849,12.92567],[92.88493,12.92595],[92.88456,12.92604],[92.88458,12.9264],[92.88402,12.92695],[92.88423,12.92738],[92.88405,12.92758],[92.8847,12.92821],[92.88509,12.92829],[92.88567,12.92776],[92.88608,12.92768],[92.88611,12.9275],[92.88729,12.92756],[92.88765,12.92827],[92.88747,12.92882],[92.88756,12.9292],[92.88578,12.92989],[92.88548,12.93033],[92.88492,12.93061],[92.88346,12.93043],[92.88293,12.93089],[92.88318,12.93188],[92.88295,12.93204],[92.88265,12.93192],[92.8828,12.93133],[92.88219,12.93069],[92.88178,12.9306],[92.8799,12.93114],[92.87937,12.93152],[92.87978,12.93255],[92.87971,12.93291],[92.87883,12.93285],[92.87773,12.93199],[92.87681,12.93195],[92.87598,12.93309],[92.8763,12.93455],[92.87626,12.9352],[92.87574,12.93506],[92.87505,12.93438],[92.87487,12.93436],[92.87482,12.93489]]],[[[92.66926,12.95401],[92.669,12.95458],[92.6689,12.95505],[92.6688,12.95533],[92.66878,12.95544],[92.66882,12.95585],[92.66878,12.95602],[92.66866,12.95603],[92.6685,12.95573],[92.66821,12.95547],[92.66806,12.95529],[92.66803,12.95521],[92.66805,12.95514],[92.6682,12.95498],[92.66824,12.95487],[92.66821,12.95474],[92.66815,12.95463],[92.66795,12.9546],[92.66785,12.95455],[92.66758,12.95438],[92.66736,12.95402],[92.66727,12.95402],[92.66711,12.9542],[92.66701,12.95419],[92.66685,12.95402],[92.66674,12.95382],[92.6667,12.95357],[92.66671,12.95326],[92.66673,12.95315],[92.6668,12.95311],[92.66696,12.95309],[92.6671,12.95318],[92.66727,12.95339],[92.66736,12.95343],[92.6675,12.95345],[92.66764,12.95339],[92.66762,12.95318],[92.66767,12.95312],[92.66773,12.95312],[92.66799,12.95338],[92.66836,12.95356],[92.66848,12.95357],[92.66858,12.95352],[92.66858,12.9534],[92.66815,12.95306],[92.66808,12.95299],[92.66797,12.95279],[92.66796,12.9527],[92.66799,12.95265],[92.66817,12.95256],[92.66829,12.95256],[92.66844,12.95264],[92.66863,12.95279],[92.66885,12.95305],[92.66902,12.95317],[92.66924,12.9534],[92.6693,12.95354],[92.66932,12.95374],[92.66926,12.95401]]],[[[92.89052,12.93846],[92.89026,12.93842],[92.89,12.93846],[92.88968,12.93841],[92.88955,12.93853],[92.88911,12.93828],[92.88858,12.93778],[92.88779,12.93672],[92.88779,12.93584],[92.88786,12.9348],[92.888,12.93454],[92.8879,12.93406],[92.88783,12.93387],[92.88769,12.93365],[92.8874,12.93335],[92.88741,12.93313],[92.88754,12.93305],[92.88794,12.93303],[92.8883,12.93321],[92.88836,12.93313],[92.88865,12.9332],[92.88896,12.93354],[92.88914,12.93333],[92.88932,12.93342],[92.88941,12.93348],[92.88943,12.9336],[92.88968,12.9337],[92.88975,12.9339],[92.88992,12.9339],[92.88983,12.93409],[92.89,12.93429],[92.88997,12.93447],[92.89,12.93462],[92.89007,12.93471],[92.89015,12.93472],[92.89025,12.93492],[92.8904,12.93494],[92.89048,12.93505],[92.89077,12.93522],[92.89093,12.93538],[92.89114,12.93549],[92.89129,12.93562],[92.89145,12.93565],[92.89157,12.93589],[92.89187,12.9359],[92.89297,12.93653],[92.89319,12.93654],[92.89328,12.93646],[92.89332,12.93684],[92.89341,12.9369],[92.89341,12.93695],[92.8934,12.93705],[92.89329,12.93706],[92.8934,12.93727],[92.89316,12.93733],[92.89327,12.93752],[92.89309,12.93745],[92.89283,12.93747],[92.89279,12.93762],[92.89264,12.93761],[92.89262,12.93772],[92.89244,12.9377],[92.89223,12.93791],[92.89191,12.9379],[92.89169,12.93803],[92.8916,12.93769],[92.89155,12.93773],[92.89153,12.93808],[92.89114,12.93834],[92.8908,12.93836],[92.89061,12.93832],[92.89052,12.93846]]],[[[92.90038,12.94017],[92.90024,12.9402],[92.89997,12.94033],[92.8998,12.94037],[92.89959,12.94045],[92.89933,12.94051],[92.89911,12.94071],[92.89898,12.94089],[92.89883,12.94108],[92.89873,12.94131],[92.89861,12.9415],[92.89854,12.94154],[92.8984,12.94154],[92.89847,12.9413],[92.89858,12.94126],[92.89854,12.94112],[92.89862,12.94105],[92.89875,12.94096],[92.89875,12.94083],[92.89883,12.94073],[92.899,12.94061],[92.899,12.94056],[92.89909,12.94036],[92.89927,12.94036],[92.8993,12.94046],[92.8994,12.94044],[92.89944,12.94028],[92.89952,12.9403],[92.89965,12.94028],[92.8997,12.9402],[92.89986,12.94026],[92.89997,12.94016],[92.90012,12.9401],[92.90038,12.94017]]],[[[92.90038,12.94017],[92.90026,12.93995],[92.9003,12.93987],[92.90039,12.93985],[92.90025,12.93966],[92.90038,12.93964],[92.9004,12.93941],[92.9005,12.93941],[92.9005,12.93931],[92.90058,12.93931],[92.90062,12.93916],[92.90068,12.93909],[92.90078,12.9391],[92.9008,12.93896],[92.90093,12.93892],[92.90096,12.93883],[92.90094,12.93876],[92.90113,12.93883],[92.90119,12.93861],[92.90137,12.93866],[92.90141,12.93859],[92.9014,12.93852],[92.90154,12.93855],[92.90147,12.93845],[92.9017,12.93832],[92.9016,12.93817],[92.90181,12.93806],[92.90201,12.93774],[92.90225,12.93766],[92.9024,12.93748],[92.90249,12.93759],[92.90263,12.93744],[92.90281,12.93737],[92.90285,12.93754],[92.90291,12.93762],[92.90302,12.93761],[92.90301,12.93769],[92.90288,12.93788],[92.90297,12.93807],[92.9029,12.93816],[92.90294,12.93833],[92.90286,12.93843],[92.90279,12.93846],[92.9029,12.93869],[92.90276,12.93882],[92.90274,12.93898],[92.90244,12.93924],[92.9026,12.93941],[92.90251,12.93959],[92.90269,12.93978],[92.90234,12.93997],[92.9023,12.94014],[92.90231,12.94051],[92.90217,12.94039],[92.90203,12.94045],[92.9021,12.94061],[92.902,12.94069],[92.90174,12.94063],[92.90156,12.94049],[92.90106,12.94113],[92.90067,12.94156],[92.90053,12.94167],[92.90039,12.94175],[92.89992,12.9419],[92.89974,12.94192],[92.89943,12.9419],[92.89899,12.94176],[92.89887,12.94169],[92.89881,12.94158],[92.89885,12.94138],[92.8989,12.94132],[92.89967,12.94094],[92.90022,12.94039],[92.90038,12.94017]]],[[[92.90068,12.94226],[92.90051,12.94232],[92.90043,12.94232],[92.90014,12.94232],[92.90006,12.94228],[92.89997,12.94232],[92.89975,12.94232],[92.89965,12.94235],[92.89929,12.94236],[92.8992,12.94242],[92.89912,12.94237],[92.89907,12.9423],[92.8991,12.9422],[92.89925,12.94214],[92.89963,12.94214],[92.90016,12.94209],[92.90061,12.94202],[92.90093,12.94187],[92.90122,12.94168],[92.90138,12.94154],[92.90156,12.94122],[92.90166,12.94098],[92.90169,12.94075],[92.90182,12.94078],[92.90193,12.94078],[92.90193,12.94086],[92.90157,12.94154],[92.90159,12.94162],[92.90147,12.94176],[92.90146,12.94183],[92.90134,12.94193],[92.90128,12.94195],[92.9012,12.94194],[92.90113,12.94205],[92.90096,12.94216],[92.90086,12.94216],[92.90076,12.94221],[92.90068,12.94226]]],[[[92.89887,12.94231],[92.89877,12.94234],[92.89873,12.94242],[92.89857,12.94257],[92.89854,12.94244],[92.89851,12.94237],[92.89842,12.94235],[92.89832,12.94241],[92.89822,12.94236],[92.89828,12.94222],[92.8982,12.94207],[92.89821,12.94195],[92.89825,12.94182],[92.89838,12.94161],[92.8985,12.94161],[92.89863,12.94165],[92.89865,12.94172],[92.89869,12.94184],[92.89879,12.94194],[92.89888,12.94201],[92.89906,12.94213],[92.89899,12.94225],[92.89887,12.94231]]],[[[92.87878,12.96118],[92.87878,12.96159],[92.87886,12.96196],[92.87856,12.96228],[92.87812,12.96272],[92.87771,12.9627],[92.87752,12.96249],[92.87755,12.96228],[92.87784,12.96153],[92.8781,12.96122],[92.87866,12.96091],[92.87878,12.96118]]],[[[92.88278,12.96588],[92.88276,12.966],[92.88272,12.9661],[92.88264,12.96619],[92.88251,12.96627],[92.88241,12.96637],[92.88226,12.96645],[92.88212,12.96652],[92.88196,12.96655],[92.88189,12.96659],[92.8817,12.96656],[92.8816,12.96648],[92.88155,12.96625],[92.88155,12.96596],[92.88162,12.96585],[92.88161,12.96575],[92.8817,12.96579],[92.88175,12.9658],[92.88189,12.96557],[92.88197,12.96549],[92.88218,12.96556],[92.88233,12.96541],[92.88244,12.96539],[92.88255,12.96543],[92.88256,12.96554],[92.88265,12.96554],[92.88275,12.96562],[92.88278,12.9657],[92.88278,12.96588]]],[[[92.69482,12.99135],[92.69279,12.99225],[92.68763,12.9902],[92.68693,12.98744],[92.6823,12.98496],[92.68185,12.98228],[92.6809,12.98251],[92.68019,12.9793],[92.67862,12.9783],[92.67902,12.97618],[92.66971,12.96611],[92.67029,12.96374],[92.66806,12.9572],[92.66896,12.95757],[92.6716,12.95017],[92.67607,12.94989],[92.67713,12.9478],[92.67823,12.94926],[92.67949,12.94854],[92.67753,12.94815],[92.67901,12.94656],[92.67756,12.94295],[92.67893,12.94313],[92.679,12.94219],[92.67621,12.94019],[92.67553,12.93386],[92.6735,12.93445],[92.67428,12.93351],[92.6718,12.93074],[92.67366,12.92923],[92.67196,12.92838],[92.6694,12.92301],[92.66841,12.91849],[92.66959,12.91019],[92.66883,12.90587],[92.66474,12.90247],[92.6666,12.89648],[92.66418,12.89361],[92.6657,12.8894],[92.66346,12.88224],[92.65297,12.86757],[92.64964,12.86659],[92.65008,12.85994],[92.64861,12.86185],[92.64686,12.86201],[92.64965,12.8536],[92.64993,12.84583],[92.65415,12.83453],[92.65978,12.82664],[92.6597,12.81818],[92.66392,12.81268],[92.66553,12.80789],[92.66391,12.79858],[92.66234,12.79624],[92.66086,12.79595],[92.65918,12.79748],[92.6577,12.79532],[92.66351,12.79342],[92.66339,12.7917],[92.66662,12.79108],[92.66534,12.78402],[92.66728,12.78259],[92.66869,12.78352],[92.67301,12.80079],[92.67528,12.80492],[92.67461,12.80731],[92.67711,12.80949],[92.68201,12.80873],[92.68301,12.81198],[92.68351,12.81059],[92.68606,12.81037],[92.68529,12.81255],[92.68743,12.8141],[92.68691,12.81671],[92.68805,12.81697],[92.68614,12.82096],[92.68606,12.8224],[92.68735,12.82301],[92.68551,12.8244],[92.68684,12.82625],[92.68361,12.82978],[92.681,12.82887],[92.67459,12.82264],[92.6766,12.82612],[92.67673,12.82984],[92.6737,12.83196],[92.67606,12.83107],[92.67813,12.83198],[92.67108,12.83762],[92.67229,12.83805],[92.67325,12.83614],[92.67516,12.83608],[92.67478,12.83816],[92.67658,12.83717],[92.67861,12.83913],[92.68283,12.83603],[92.69125,12.83503],[92.6996,12.84023],[92.70293,12.845],[92.70304,12.84693],[92.70145,12.84829],[92.70277,12.85304],[92.70406,12.85281],[92.7082,12.85604],[92.71386,12.86322],[92.71376,12.8668],[92.71871,12.87484],[92.7187,12.8766],[92.71712,12.87801],[92.71274,12.87786],[92.71167,12.88237],[92.70885,12.8833],[92.70576,12.88237],[92.70441,12.88015],[92.70581,12.87959],[92.70413,12.877],[92.70289,12.87796],[92.70237,12.87672],[92.7016,12.87732],[92.70306,12.87819],[92.70402,12.87724],[92.70384,12.88004],[92.70732,12.88393],[92.7128,12.88345],[92.7156,12.88052],[92.71821,12.88132],[92.72066,12.8896],[92.7216,12.89814],[92.71971,12.89927],[92.7217,12.90097],[92.72201,12.90355],[92.7195,12.91067],[92.71972,12.91493],[92.71874,12.9155],[92.71976,12.91998],[92.71807,12.92189],[92.71404,12.92282],[92.72051,12.92497],[92.71972,12.93376],[92.72117,12.93773],[92.72146,12.94457],[92.71933,12.9475],[92.71745,12.94346],[92.71411,12.94275],[92.70978,12.94604],[92.7136,12.94347],[92.71691,12.95054],[92.71667,12.95483],[92.71838,12.95663],[92.71738,12.9564],[92.71913,12.96183],[92.71925,12.98097],[92.71679,12.98315],[92.71233,12.98255],[92.71328,12.98027],[92.70901,12.97997],[92.71052,12.97883],[92.70995,12.97809],[92.7089,12.98005],[92.71286,12.98039],[92.71172,12.98241],[92.71369,12.98359],[92.71342,12.98442],[92.71168,12.98315],[92.70863,12.98676],[92.70995,12.98814],[92.70763,12.98869],[92.70695,12.98781],[92.70526,12.98999],[92.70001,12.98788],[92.69482,12.99135]]],[[[92.88652,12.97895],[92.88658,12.97897],[92.88661,12.97903],[92.88672,12.97907],[92.88679,12.97912],[92.88699,12.97917],[92.88705,12.97922],[92.88704,12.97927],[92.88698,12.9793],[92.88695,12.97938],[92.88706,12.97951],[92.8871,12.97964],[92.88709,12.97973],[92.88702,12.9798],[92.88704,12.97989],[92.88704,12.98016],[92.88696,12.98024],[92.88694,12.98028],[92.88682,12.98037],[92.88668,12.9804],[92.88638,12.98038],[92.88622,12.98028],[92.88603,12.98014],[92.88584,12.9799],[92.88584,12.97971],[92.88584,12.97962],[92.88595,12.97938],[92.88605,12.97928],[92.88611,12.97914],[92.88627,12.97904],[92.88639,12.97903],[92.88647,12.97894],[92.88652,12.97895]]],[[[92.88843,12.98141],[92.88837,12.98144],[92.88832,12.98142],[92.88831,12.98136],[92.88828,12.98131],[92.88819,12.98122],[92.88811,12.98111],[92.8881,12.98092],[92.88814,12.98087],[92.88836,12.98087],[92.88841,12.98082],[92.88844,12.98076],[92.88852,12.98072],[92.88861,12.98072],[92.88871,12.98081],[92.88883,12.98088],[92.88885,12.98095],[92.88885,12.98112],[92.88882,12.98122],[92.88876,12.98124],[92.88869,12.98134],[92.88862,12.98139],[92.88855,12.98142],[92.88848,12.9814],[92.88843,12.98141]]],[[[92.89359,12.98416],[92.89335,12.98422],[92.89325,12.98413],[92.89313,12.98407],[92.89305,12.98399],[92.89301,12.98386],[92.89299,12.98367],[92.89295,12.9835],[92.89276,12.98325],[92.89279,12.98313],[92.89287,12.98309],[92.89301,12.98311],[92.89313,12.98316],[92.89322,12.98309],[92.89331,12.98309],[92.89341,12.98312],[92.89361,12.98343],[92.8937,12.98352],[92.89372,12.98357],[92.89373,12.98362],[92.8938,12.98368],[92.89387,12.98376],[92.89394,12.98392],[92.89393,12.98398],[92.89389,12.9841],[92.89381,12.98412],[92.89366,12.98412],[92.89359,12.98416]]],[[[92.97747,12.9862],[92.9777,12.98631],[92.97784,12.98643],[92.97801,12.98661],[92.97814,12.98697],[92.97821,12.98725],[92.97817,12.98751],[92.97808,12.98765],[92.97792,12.98772],[92.97768,12.98773],[92.97747,12.98764],[92.97727,12.98759],[92.97698,12.98732],[92.97672,12.98687],[92.97681,12.98664],[92.9769,12.9865],[92.97703,12.98632],[92.97723,12.98618],[92.97747,12.9862]]],[[[92.83126,13.00003],[92.8325,13.00138],[92.83274,13.0016],[92.83293,13.00182],[92.83308,13.00205],[92.83305,13.00227],[92.83289,13.00259],[92.83261,13.00273],[92.83251,13.00279],[92.83232,13.00278],[92.8321,13.00266],[92.83152,13.00244],[92.83114,13.00199],[92.83086,13.00138],[92.83081,13.00075],[92.83091,13.0002],[92.83096,13.00009],[92.83106,13.00003],[92.83126,13.00003]]],[[[92.97328,12.99409],[92.97352,12.9942],[92.97329,12.99432],[92.97335,12.99449],[92.97318,12.99442],[92.97288,12.99442],[92.97285,12.99416],[92.97305,12.99412],[92.97327,12.99393],[92.97328,12.99409]]],[[[92.7847,13.01363],[92.7846,13.0136],[92.7845,13.01358],[92.78446,13.0135],[92.7845,13.01341],[92.78457,13.01338],[92.78456,13.0133],[92.78448,13.01324],[92.78447,13.01314],[92.78463,13.01318],[92.78468,13.0132],[92.78474,13.01322],[92.78477,13.01328],[92.78478,13.01335],[92.78481,13.01341],[92.7848,13.01351],[92.78468,13.01348],[92.7847,13.01363]]],[[[92.97052,12.99929],[92.9704,12.99956],[92.97031,12.9996],[92.97022,12.99952],[92.97017,12.99941],[92.97023,12.99923],[92.97031,12.99913],[92.97046,12.9991],[92.97052,12.99929]]],[[[93.00736,12.99919],[93.00611,12.9992],[93.00566,12.99866],[93.00337,12.99797],[93.00379,12.99759],[93.00327,12.99722],[93.00276,12.99758],[93.00052,12.99744],[92.99725,12.99419],[92.99284,12.99193],[92.98841,12.99385],[92.9856,12.99459],[92.98444,12.99445],[92.98414,12.99294],[92.98507,12.99075],[92.98467,12.99056],[92.98508,12.9904],[92.98543,12.98846],[92.98662,12.9873],[92.98711,12.98557],[92.98423,12.98478],[92.98385,12.98241],[92.9829,12.98159],[92.98063,12.98128],[92.97869,12.98023],[92.9787,12.97619],[92.97459,12.97439],[92.972,12.97025],[92.96837,12.97177],[92.96978,12.97511],[92.96923,12.9761],[92.9657,12.97716],[92.96507,12.97804],[92.96575,12.9792],[92.96739,12.98031],[92.96804,12.9797],[92.96989,12.98029],[92.97099,12.98139],[92.97097,12.98247],[92.96964,12.98308],[92.9672,12.98558],[92.96499,12.98658],[92.96417,12.98846],[92.96341,12.98853],[92.96402,12.98912],[92.96344,12.99032],[92.96038,12.99056],[92.95869,12.99019],[92.95783,12.98949],[92.95607,12.98402],[92.95363,12.98278],[92.95112,12.98023],[92.95203,12.97804],[92.95311,12.97735],[92.95372,12.97554],[92.95821,12.97419],[92.95905,12.97344],[92.959,12.97285],[92.95671,12.9713],[92.95681,12.97066],[92.95989,12.97062],[92.96103,12.9703],[92.96145,12.96953],[92.9605,12.96861],[92.95924,12.96844],[92.95985,12.96713],[92.95977,12.96552],[92.95872,12.96523],[92.95716,12.96608],[92.95587,12.96806],[92.95342,12.96856],[92.95258,12.96816],[92.9522,12.96546],[92.95244,12.96347],[92.95296,12.96345],[92.95221,12.96298],[92.95284,12.96239],[92.95357,12.95846],[92.95426,12.95821],[92.95382,12.95834],[92.95371,12.95792],[92.95407,12.95723],[92.95471,12.95746],[92.957,12.95551],[92.96053,12.95406],[92.9687,12.95369],[92.96968,12.95243],[92.96701,12.95027],[92.97192,12.94779],[92.97259,12.94639],[92.97179,12.94563],[92.97005,12.94605],[92.9665,12.94804],[92.96081,12.94993],[92.95865,12.94966],[92.9573,12.94896],[92.95335,12.94484],[92.95153,12.94173],[92.95129,12.94201],[92.95027,12.94107],[92.95019,12.94002],[92.95091,12.93993],[92.95228,12.93819],[92.95221,12.93529],[92.95296,12.93475],[92.95335,12.93499],[92.9532,12.93428],[92.95553,12.93688],[92.9567,12.93971],[92.95884,12.94141],[92.96096,12.94206],[92.96805,12.94248],[92.97021,12.94117],[92.96873,12.93703],[92.96935,12.93471],[92.9698,12.93486],[92.97053,12.93421],[92.97099,12.9345],[92.97114,12.93408],[92.97141,12.93438],[92.97225,12.93354],[92.97514,12.9331],[92.97605,12.93239],[92.97665,12.93169],[92.97769,12.92799],[92.97864,12.92804],[92.9777,12.92925],[92.97822,12.93015],[92.9797,12.93037],[92.98018,12.93097],[92.97982,12.9312],[92.98074,12.93099],[92.98162,12.93159],[92.98141,12.93192],[92.98207,12.93203],[92.98319,12.93545],[92.98319,12.93749],[92.9819,12.93997],[92.98203,12.94074],[92.9814,12.94135],[92.9816,12.94181],[92.98113,12.94219],[92.98127,12.9429],[92.98087,12.94309],[92.97972,12.94729],[92.98291,12.9506],[92.98503,12.95178],[92.98821,12.95477],[92.98785,12.95628],[92.98669,12.95792],[92.98508,12.95903],[92.98131,12.96325],[92.98139,12.9679],[92.98221,12.96869],[92.98505,12.96983],[92.98504,12.97045],[92.98706,12.97251],[92.98868,12.97528],[92.99171,12.97808],[92.99222,12.97894],[92.99248,12.98374],[92.99424,12.98525],[92.99619,12.98586],[93.00052,12.98845],[93.00254,12.99082],[93.00283,12.99044],[93.00391,12.99135],[93.00388,12.99231],[93.00433,12.99179],[93.00526,12.99229],[93.00611,12.99362],[93.00609,12.995],[93.00736,12.9959],[93.00743,12.9976],[93.008,12.99864],[93.00736,12.99919]]],[[[92.98859,13.00151],[92.98858,13.00161],[92.98821,13.00165],[92.98771,13.00152],[92.9877,13.00141],[92.98668,13.00141],[92.98635,13.00119],[92.98601,13.00105],[92.98582,13.00078],[92.98573,13.0],[92.9858,12.99991],[92.98548,12.99971],[92.98525,12.99907],[92.98521,12.99863],[92.98567,12.99789],[92.98612,12.9977],[92.98649,12.99771],[92.98674,12.99783],[92.98679,12.9978],[92.98686,12.99781],[92.98725,12.99795],[92.98743,12.99797],[92.98765,12.9981],[92.98782,12.99831],[92.98802,12.99829],[92.98821,12.99838],[92.98844,12.99874],[92.98864,12.99893],[92.9887,12.99909],[92.9887,12.9992],[92.98864,12.99939],[92.98857,12.99944],[92.98842,12.99947],[92.9882,12.99946],[92.98839,12.99975],[92.98826,13.0],[92.9884,13.00024],[92.98862,13.00044],[92.98891,13.00045],[92.9893,13.00054],[92.98943,13.00075],[92.98931,13.00106],[92.98903,13.00141],[92.98857,13.00141],[92.98859,13.00151]]],[[[92.94928,13.0186],[92.94938,13.01879],[92.94939,13.01902],[92.94924,13.02],[92.94939,13.02151],[92.9493,13.02236],[92.94904,13.02346],[92.94838,13.02468],[92.94749,13.02541],[92.94697,13.02569],[92.94616,13.02592],[92.94533,13.02598],[92.9449,13.02596],[92.94419,13.02556],[92.94403,13.02531],[92.94407,13.02498],[92.94429,13.02472],[92.94491,13.02439],[92.94562,13.02417],[92.94606,13.02376],[92.94647,13.02247],[92.9469,13.02174],[92.94756,13.02022],[92.94796,13.01949],[92.9487,13.01879],[92.94911,13.01854],[92.94928,13.0186]]],[[[92.92984,13.02535],[92.92876,13.02654],[92.92743,13.02704],[92.92348,13.0315],[92.92199,13.03171],[92.92069,13.03131],[92.91855,13.02829],[92.91787,13.02538],[92.9141,13.01941],[92.91423,13.01901],[92.91337,13.01722],[92.91379,13.01602],[92.91338,13.01556],[92.91319,13.01286],[92.91347,13.01098],[92.91676,13.0056],[92.91976,13.00002],[92.92127,12.99989],[92.92387,12.99886],[92.92888,12.99768],[92.93113,12.99813],[92.9314,12.99876],[92.92974,13.00002],[92.931,13.00002],[92.93429,12.99734],[92.93387,12.99707],[92.93402,12.99583],[92.93488,12.99457],[92.93521,12.99452],[92.93531,12.99483],[92.93558,12.99449],[92.93569,12.99479],[92.93611,12.99435],[92.93624,12.99453],[92.93668,12.99439],[92.93689,12.99474],[92.93707,12.99448],[92.9372,12.99479],[92.93739,12.99462],[92.93787,12.99507],[92.938,12.99482],[92.93989,12.99533],[92.94083,12.99498],[92.94055,12.99439],[92.94086,12.99462],[92.94099,12.9943],[92.94147,12.99448],[92.9416,12.99417],[92.942,12.99482],[92.94209,12.9946],[92.94261,12.99496],[92.94274,12.99478],[92.94288,12.99512],[92.9433,12.99531],[92.94342,12.99508],[92.94354,12.99536],[92.94383,12.99515],[92.94383,12.9954],[92.9441,12.99539],[92.94402,12.99568],[92.94433,12.99558],[92.94444,12.99636],[92.94518,12.99673],[92.94516,12.99707],[92.94546,12.99703],[92.94623,12.99874],[92.94386,13.00105],[92.94384,13.00184],[92.94325,13.00251],[92.94253,13.00249],[92.94136,13.00307],[92.94076,13.00474],[92.94089,13.00664],[92.93945,13.00916],[92.93949,13.00974],[92.93914,13.01024],[92.93916,13.0108],[92.93992,13.01132],[92.93972,13.01168],[92.93928,13.01174],[92.9394,13.01205],[92.94027,13.01306],[92.94055,13.01286],[92.9412,13.01331],[92.94058,13.01402],[92.94143,13.01492],[92.94227,13.01647],[92.94257,13.01787],[92.94234,13.01925],[92.94126,13.02063],[92.93976,13.02046],[92.93811,13.02157],[92.93802,13.02235],[92.93943,13.02326],[92.93975,13.02377],[92.93965,13.02511],[92.93903,13.02588],[92.93489,13.02706],[92.93363,13.02675],[92.93083,13.02537],[92.92984,13.02535]]],[[[92.78552,13.05522],[92.78553,13.05533],[92.78557,13.05539],[92.78564,13.0554],[92.78565,13.05545],[92.78562,13.05554],[92.7855,13.05568],[92.78543,13.05564],[92.78532,13.05543],[92.78528,13.05533],[92.78528,13.05526],[92.78538,13.05521],[92.78552,13.05522]]],[[[92.78809,13.06079],[92.78808,13.06092],[92.78796,13.06091],[92.78793,13.06084],[92.78792,13.06079],[92.78786,13.06076],[92.78776,13.06078],[92.78773,13.06067],[92.78768,13.06062],[92.78753,13.06062],[92.78748,13.06056],[92.78748,13.06051],[92.78752,13.06045],[92.7876,13.06045],[92.78772,13.0604],[92.78775,13.06033],[92.78782,13.06025],[92.78796,13.06042],[92.78814,13.06046],[92.78816,13.06061],[92.78809,13.06079]]],[[[92.93194,13.04866],[92.93215,13.04875],[92.93228,13.04892],[92.93307,13.05106],[92.93312,13.05131],[92.93311,13.0515],[92.93306,13.0517],[92.93279,13.05215],[92.93211,13.05371],[92.93183,13.05408],[92.9314,13.05443],[92.9312,13.05447],[92.93102,13.05442],[92.93091,13.05434],[92.93037,13.05327],[92.93025,13.052],[92.93023,13.05116],[92.93029,13.05073],[92.93039,13.0505],[92.93055,13.05038],[92.93078,13.05015],[92.93095,13.04988],[92.93139,13.04895],[92.93155,13.04876],[92.93175,13.04867],[92.93194,13.04866]]],[[[92.79493,13.07527],[92.79503,13.07533],[92.7951,13.07549],[92.79512,13.07565],[92.79511,13.07575],[92.79504,13.07586],[92.79506,13.07602],[92.7951,13.07608],[92.79523,13.07618],[92.79535,13.07638],[92.79529,13.07652],[92.7951,13.07665],[92.79501,13.07677],[92.79496,13.07697],[92.7949,13.07697],[92.79484,13.07693],[92.79478,13.07685],[92.79468,13.07679],[92.79466,13.07673],[92.79473,13.07666],[92.79477,13.0766],[92.79477,13.07655],[92.79472,13.07649],[92.79458,13.07605],[92.79454,13.07597],[92.79451,13.07588],[92.79453,13.07581],[92.79458,13.07577],[92.79462,13.07571],[92.7946,13.07564],[92.79454,13.07549],[92.79459,13.07541],[92.7947,13.0753],[92.79483,13.07523],[92.79489,13.07522],[92.79493,13.07527]]],[[[92.9169,13.06003],[92.91606,13.06257],[92.91577,13.06321],[92.91475,13.06488],[92.91389,13.06669],[92.91345,13.06722],[92.91325,13.06735],[92.91307,13.0673],[92.91287,13.06716],[92.91276,13.06678],[92.91262,13.06443],[92.9124,13.06311],[92.91202,13.06182],[92.91197,13.06114],[92.91203,13.061],[92.91315,13.06018],[92.91328,13.05993],[92.91315,13.05961],[92.91217,13.05899],[92.91199,13.05855],[92.91205,13.05816],[92.91269,13.05749],[92.91306,13.05729],[92.91563,13.05641],[92.91637,13.05601],[92.91728,13.05547],[92.91845,13.05427],[92.91879,13.05422],[92.91893,13.05443],[92.91888,13.05467],[92.91803,13.05769],[92.91783,13.05872],[92.91753,13.05952],[92.91721,13.05983],[92.91698,13.0599],[92.9169,13.06003]]],[[[92.91414,13.06725],[92.91428,13.06737],[92.91437,13.06755],[92.91445,13.06773],[92.91448,13.06797],[92.91435,13.0684],[92.9141,13.06879],[92.91382,13.06899],[92.91358,13.06904],[92.91326,13.06902],[92.91318,13.069],[92.91295,13.06883],[92.91291,13.06876],[92.91294,13.06839],[92.91308,13.06817],[92.91327,13.06793],[92.91347,13.06774],[92.91357,13.06753],[92.91374,13.0673],[92.91383,13.06725],[92.91399,13.0672],[92.91414,13.06725]]],[[[92.91182,13.07415],[92.91178,13.07429],[92.9117,13.07439],[92.91163,13.07444],[92.91164,13.0745],[92.91164,13.07459],[92.91152,13.07487],[92.91135,13.07518],[92.91105,13.07565],[92.91098,13.07584],[92.91079,13.07608],[92.91038,13.07631],[92.91009,13.07641],[92.90983,13.07644],[92.90961,13.07639],[92.90949,13.07629],[92.90943,13.07618],[92.90943,13.0761],[92.90943,13.07562],[92.90946,13.07549],[92.90967,13.07526],[92.90986,13.075],[92.91091,13.07408],[92.91106,13.07402],[92.91111,13.07402],[92.91162,13.07379],[92.91175,13.07376],[92.91182,13.07382],[92.91184,13.07394],[92.91182,13.07415]]],[[[92.72762,13.08991],[92.72787,13.09],[92.72797,13.09007],[92.72834,13.09059],[92.72887,13.09119],[92.72905,13.09118],[92.72911,13.09149],[92.72942,13.09174],[92.72965,13.0922],[92.7297,13.09252],[92.73102,13.09383],[92.73122,13.09427],[92.7313,13.09464],[92.73156,13.09499],[92.73164,13.09521],[92.73158,13.09552],[92.73136,13.09578],[92.73069,13.09601],[92.72998,13.09606],[92.7294,13.09569],[92.72909,13.09538],[92.72883,13.09468],[92.72868,13.09461],[92.72813,13.09389],[92.72784,13.09341],[92.72752,13.09267],[92.72713,13.09135],[92.72699,13.09042],[92.72699,13.09009],[92.7271,13.08991],[92.72738,13.08986],[92.72762,13.08991]]],[[[92.71939,13.09869],[92.71865,13.09911],[92.71794,13.09918],[92.71602,13.09871],[92.71536,13.09888],[92.71482,13.09819],[92.71141,13.09652],[92.70755,13.09635],[92.70429,13.09569],[92.70322,13.09611],[92.7014,13.09807],[92.69973,13.09925],[92.69849,13.09922],[92.69761,13.09892],[92.69512,13.09722],[92.69446,13.0961],[92.69425,13.0951],[92.6939,13.09109],[92.69688,13.08014],[92.69691,13.07702],[92.69729,13.07618],[92.69729,13.07473],[92.69758,13.07337],[92.69781,13.07269],[92.69931,13.07045],[92.70065,13.06982],[92.7034,13.06952],[92.70451,13.06969],[92.70601,13.07086],[92.70603,13.07231],[92.70307,13.07775],[92.70297,13.07887],[92.70323,13.08026],[92.7067,13.08473],[92.70811,13.08746],[92.71145,13.09102],[92.71297,13.0918],[92.7177,13.09338],[92.71931,13.09456],[92.72011,13.0956],[92.72041,13.09698],[92.71993,13.09813],[92.71939,13.09869]]],[[[92.79319,13.09291],[92.79314,13.09294],[92.79309,13.09301],[92.79302,13.09322],[92.79297,13.09331],[92.79288,13.09339],[92.79268,13.09313],[92.79266,13.09306],[92.79265,13.09274],[92.79267,13.09266],[92.79273,13.09267],[92.79281,13.0927],[92.7929,13.09276],[92.79303,13.09281],[92.79314,13.09279],[92.79321,13.09269],[92.79325,13.09256],[92.79328,13.09249],[92.79333,13.0925],[92.79339,13.09253],[92.79345,13.09258],[92.79351,13.09264],[92.79359,13.09273],[92.7936,13.09285],[92.7935,13.09287],[92.79332,13.09288],[92.79319,13.09291]]],[[[92.79303,13.09404],[92.7929,13.09413],[92.79279,13.09412],[92.79278,13.09393],[92.79287,13.09379],[92.79289,13.09371],[92.79293,13.09364],[92.79307,13.09383],[92.79316,13.09384],[92.7933,13.09388],[92.79326,13.09404],[92.79319,13.09408],[92.79311,13.09403],[92.79303,13.09404]]],[[[92.84033,13.14292],[92.84046,13.14297],[92.84055,13.14302],[92.84065,13.14311],[92.84076,13.14335],[92.84078,13.14349],[92.84078,13.1436],[92.84073,13.14376],[92.84068,13.14387],[92.84058,13.14395],[92.84045,13.14394],[92.84034,13.1439],[92.84011,13.1437],[92.84005,13.14361],[92.84002,13.14347],[92.84,13.1433],[92.84,13.1431],[92.84004,13.143],[92.8402,13.14293],[92.84033,13.14292]]],[[[92.80864,13.14807],[92.80868,13.1482],[92.80862,13.14829],[92.80862,13.14845],[92.80864,13.1485],[92.8087,13.14857],[92.8087,13.14866],[92.80861,13.14881],[92.80868,13.14892],[92.80869,13.14897],[92.80865,13.14913],[92.80871,13.14928],[92.80867,13.14937],[92.80867,13.14945],[92.80869,13.14959],[92.80864,13.14967],[92.80861,13.1498],[92.80857,13.1499],[92.80826,13.1497],[92.80806,13.14953],[92.8079,13.14946],[92.80778,13.14933],[92.80779,13.14927],[92.8079,13.14913],[92.80796,13.14902],[92.80795,13.14891],[92.80792,13.1487],[92.80787,13.14865],[92.80775,13.14857],[92.80773,13.14849],[92.80775,13.14835],[92.80775,13.14826],[92.80769,13.14815],[92.80768,13.14808],[92.80777,13.14803],[92.80795,13.14808],[92.80801,13.14802],[92.80814,13.14794],[92.80839,13.14804],[92.80854,13.14794],[92.80858,13.14798],[92.80864,13.14807]]],[[[92.80439,13.15364],[92.80432,13.15377],[92.80425,13.15376],[92.8042,13.15372],[92.80418,13.15364],[92.80412,13.15361],[92.804,13.15362],[92.80385,13.15368],[92.80383,13.15362],[92.80373,13.1534],[92.80353,13.15337],[92.80344,13.1533],[92.80339,13.15319],[92.80336,13.153],[92.80339,13.15294],[92.8035,13.15286],[92.8035,13.15273],[92.80356,13.15262],[92.80363,13.15264],[92.8037,13.15263],[92.80375,13.15257],[92.80374,13.15244],[92.80374,13.15239],[92.8038,13.15237],[92.80398,13.15237],[92.80403,13.15234],[92.80404,13.15226],[92.8042,13.1522],[92.8043,13.15219],[92.80435,13.1522],[92.80444,13.15226],[92.80449,13.15232],[92.80454,13.15249],[92.80475,13.15251],[92.80475,13.15259],[92.80474,13.15265],[92.80475,13.15276],[92.80479,13.15283],[92.8048,13.15291],[92.80479,13.15307],[92.80477,13.15313],[92.80469,13.1532],[92.80466,13.15326],[92.80461,13.15347],[92.80457,13.15352],[92.80444,13.15357],[92.80439,13.15364]]],[[[92.8096,13.16293],[92.80976,13.16296],[92.80976,13.16304],[92.80977,13.16317],[92.8098,13.16326],[92.80976,13.16335],[92.80969,13.16346],[92.80975,13.16351],[92.80978,13.1636],[92.80965,13.16374],[92.80964,13.16394],[92.80955,13.164],[92.80949,13.16391],[92.80945,13.1638],[92.80939,13.16378],[92.80939,13.16368],[92.80947,13.16353],[92.80932,13.16342],[92.80933,13.16336],[92.80938,13.16327],[92.80935,13.16321],[92.80928,13.16313],[92.80941,13.16302],[92.80945,13.16296],[92.8095,13.16285],[92.8096,13.16293]]],[[[92.81008,13.16712],[92.80999,13.16716],[92.8099,13.16728],[92.80984,13.16732],[92.8096,13.1674],[92.80954,13.1674],[92.80944,13.16733],[92.80933,13.16716],[92.80923,13.16713],[92.80922,13.16701],[92.80927,13.16696],[92.80939,13.16696],[92.80948,13.16691],[92.80952,13.16684],[92.80953,13.16676],[92.80965,13.16675],[92.80977,13.16683],[92.80986,13.1668],[92.81007,13.16671],[92.81023,13.16662],[92.81029,13.16651],[92.81043,13.16645],[92.81046,13.1665],[92.81046,13.1666],[92.81044,13.1667],[92.81029,13.16706],[92.81021,13.16708],[92.81016,13.16709],[92.81008,13.16712]]],[[[92.80957,13.16919],[92.80949,13.16923],[92.8094,13.16919],[92.80914,13.16905],[92.80918,13.16897],[92.80925,13.16895],[92.80932,13.16895],[92.80939,13.16892],[92.80945,13.16888],[92.8097,13.16874],[92.8097,13.16868],[92.80973,13.1686],[92.8099,13.16853],[92.81,13.16852],[92.81015,13.16858],[92.81027,13.1686],[92.81032,13.16856],[92.81042,13.16856],[92.81049,13.1686],[92.81056,13.16867],[92.81061,13.16873],[92.81059,13.16882],[92.8105,13.16892],[92.81038,13.16898],[92.8102,13.16901],[92.81004,13.16906],[92.8099,13.16919],[92.80966,13.16917],[92.80957,13.16919]]],[[[92.79425,13.16755],[92.7949,13.16758],[92.79548,13.16772],[92.79635,13.168],[92.79647,13.16884],[92.79632,13.16991],[92.7961,13.17073],[92.79524,13.17127],[92.79426,13.17142],[92.79314,13.1714],[92.79237,13.1706],[92.79246,13.16935],[92.79294,13.16852],[92.79323,13.16811],[92.79311,13.16795],[92.79312,13.16785],[92.79324,13.16767],[92.79365,13.16757],[92.79425,13.16755]]],[[[92.79225,13.17158],[92.79221,13.17169],[92.79213,13.17174],[92.79203,13.17154],[92.79195,13.17152],[92.79185,13.17156],[92.7918,13.17157],[92.79174,13.17147],[92.79174,13.17138],[92.79167,13.17132],[92.79154,13.17128],[92.79159,13.17122],[92.79174,13.17116],[92.79182,13.17111],[92.79186,13.17105],[92.79187,13.17091],[92.79204,13.17091],[92.79217,13.17085],[92.79224,13.17092],[92.79228,13.17101],[92.79242,13.17111],[92.79254,13.17119],[92.79258,13.17124],[92.79246,13.17129],[92.79236,13.17144],[92.79225,13.17158]]],[[[92.82537,13.20903],[92.82515,13.20878],[92.82505,13.20882],[92.82495,13.20898],[92.82488,13.20882],[92.82477,13.20873],[92.82468,13.20873],[92.82459,13.20899],[92.82448,13.20882],[92.82435,13.20875],[92.82425,13.20876],[92.82421,13.2087],[92.82409,13.20869],[92.82393,13.20855],[92.82376,13.20861],[92.82366,13.20841],[92.82357,13.20844],[92.82354,13.20857],[92.82327,13.20827],[92.82316,13.20841],[92.82296,13.20805],[92.82273,13.2082],[92.82268,13.20785],[92.82246,13.20783],[92.82261,13.20763],[92.82238,13.20727],[92.82255,13.20723],[92.82249,13.20694],[92.82267,13.20694],[92.82281,13.20697],[92.82292,13.20695],[92.82299,13.20675],[92.8231,13.20685],[92.82322,13.2068],[92.82331,13.20703],[92.82358,13.20708],[92.82353,13.20733],[92.82381,13.20743],[92.82387,13.20763],[92.82417,13.20777],[92.82438,13.20776],[92.82481,13.20808],[92.82484,13.2082],[92.82505,13.20807],[92.82517,13.20824],[92.82534,13.20821],[92.82541,13.2084],[92.82565,13.20839],[92.82579,13.2087],[92.82601,13.20872],[92.82588,13.20894],[92.82558,13.20895],[92.82537,13.20903]]],[[[92.82728,13.20942],[92.82718,13.20957],[92.82716,13.20971],[92.82733,13.20985],[92.82709,13.21005],[92.82709,13.21019],[92.82732,13.21041],[92.82709,13.21045],[92.82705,13.21062],[92.82697,13.21073],[92.82694,13.21083],[92.82671,13.21107],[92.82662,13.21124],[92.82645,13.2114],[92.82629,13.21146],[92.82615,13.21144],[92.82603,13.21138],[92.82592,13.21135],[92.82577,13.21134],[92.82553,13.21129],[92.82559,13.21119],[92.82561,13.21104],[92.82553,13.21101],[92.82547,13.21089],[92.8255,13.21069],[92.82551,13.21055],[92.82546,13.21049],[92.82548,13.21039],[92.82572,13.21008],[92.82572,13.20992],[92.82569,13.20977],[92.82594,13.20972],[92.82598,13.20951],[92.82621,13.20949],[92.8262,13.20921],[92.82644,13.20924],[92.8266,13.20894],[92.82691,13.20909],[92.82697,13.20917],[92.82716,13.20926],[92.82728,13.20942]]],[[[92.82853,13.21047],[92.82859,13.21066],[92.82866,13.21077],[92.82868,13.21088],[92.82844,13.2109],[92.82844,13.21097],[92.82851,13.2111],[92.82825,13.2111],[92.82821,13.21115],[92.82826,13.21133],[92.82823,13.21139],[92.82803,13.21138],[92.82793,13.21144],[92.82782,13.21163],[92.82771,13.21165],[92.82771,13.21158],[92.82768,13.21143],[92.82761,13.21133],[92.82743,13.21129],[92.82731,13.21121],[92.82755,13.21107],[92.82761,13.21101],[92.82764,13.21094],[92.82764,13.21082],[92.82761,13.21069],[92.82794,13.21065],[92.82791,13.2105],[92.82783,13.21033],[92.82812,13.21041],[92.82828,13.21048],[92.8284,13.2105],[92.82853,13.21047]]],[[[93.05942,13.22379],[93.05873,13.22622],[93.05851,13.22662],[93.05833,13.22678],[93.05832,13.22701],[93.05795,13.22723],[93.05741,13.22741],[93.05682,13.22733],[93.05624,13.22691],[93.05581,13.22642],[93.05557,13.22578],[93.05571,13.22494],[93.05608,13.22427],[93.05677,13.22382],[93.05706,13.22299],[93.05738,13.2227],[93.05779,13.22191],[93.0585,13.22122],[93.06005,13.22021],[93.06037,13.21985],[93.06074,13.21975],[93.06104,13.21985],[93.0613,13.22021],[93.06132,13.22068],[93.06114,13.2211],[93.06088,13.22145],[93.05999,13.22213],[93.05961,13.22252],[93.05964,13.22266],[93.05942,13.22379]]],[[[93.06054,13.22482],[93.06081,13.22507],[93.06104,13.22551],[93.061,13.22618],[93.06102,13.22722],[93.06096,13.22769],[93.06073,13.22794],[93.06022,13.2282],[93.05971,13.22833],[93.05925,13.22811],[93.05904,13.22755],[93.0591,13.22705],[93.05949,13.22606],[93.05999,13.22505],[93.06011,13.22487],[93.06028,13.22479],[93.06054,13.22482]]],[[[92.83909,13.2486],[92.83926,13.2487],[92.83938,13.24887],[92.83934,13.24904],[92.83918,13.24916],[92.83899,13.24915],[92.83881,13.24907],[92.83869,13.2489],[92.83875,13.24873],[92.83887,13.24863],[92.83895,13.2486],[92.83909,13.2486]]],[[[93.04923,13.26369],[93.04913,13.26371],[93.04868,13.26365],[93.04857,13.26369],[93.04843,13.26377],[93.04826,13.26375],[93.04823,13.26359],[93.0483,13.26339],[93.04824,13.26332],[93.04796,13.26334],[93.04786,13.26328],[93.04786,13.26319],[93.0482,13.26294],[93.04814,13.2628],[93.04819,13.26272],[93.04835,13.26272],[93.04835,13.26258],[93.04863,13.26222],[93.04874,13.26214],[93.0488,13.26219],[93.04888,13.2623],[93.04889,13.26238],[93.04923,13.26241],[93.04922,13.26274],[93.04934,13.2628],[93.04946,13.26278],[93.04953,13.2629],[93.04943,13.26301],[93.04937,13.26325],[93.04931,13.26328],[93.04925,13.26335],[93.04929,13.26356],[93.04923,13.26369]]],[[[92.8001,13.28552],[92.8002,13.28558],[92.80029,13.28572],[92.80033,13.28603],[92.80023,13.28623],[92.80019,13.28633],[92.8002,13.28645],[92.80026,13.28665],[92.80025,13.28677],[92.80009,13.2869],[92.79989,13.28673],[92.79981,13.28665],[92.79978,13.28644],[92.79983,13.28627],[92.79984,13.28619],[92.79977,13.28596],[92.79976,13.28578],[92.79978,13.28568],[92.79991,13.28554],[92.80001,13.28552],[92.8001,13.28552]]],[[[92.81583,13.28808],[92.81563,13.28819],[92.81504,13.28813],[92.81463,13.28827],[92.81451,13.28827],[92.81439,13.28819],[92.81431,13.28799],[92.81409,13.28801],[92.81375,13.28787],[92.81367,13.28747],[92.81335,13.2875],[92.81321,13.28745],[92.81308,13.28731],[92.81307,13.28714],[92.81321,13.28688],[92.8136,13.28639],[92.81368,13.28603],[92.81382,13.28583],[92.81432,13.28562],[92.81466,13.28562],[92.8149,13.28518],[92.81512,13.28466],[92.81538,13.2845],[92.81556,13.28367],[92.81573,13.28346],[92.81603,13.28329],[92.81599,13.28254],[92.81605,13.28239],[92.81617,13.28228],[92.81642,13.28227],[92.81645,13.282],[92.81654,13.28179],[92.81676,13.28162],[92.81697,13.28171],[92.81729,13.28227],[92.8174,13.28236],[92.81776,13.28234],[92.81796,13.28252],[92.81796,13.28302],[92.81789,13.28363],[92.81812,13.28401],[92.8183,13.28461],[92.81886,13.28542],[92.81898,13.28535],[92.8192,13.28538],[92.8192,13.28571],[92.81918,13.28583],[92.81889,13.28609],[92.81873,13.28596],[92.81848,13.28602],[92.8184,13.28617],[92.81833,13.2867],[92.81821,13.28691],[92.81807,13.28691],[92.81783,13.28676],[92.81774,13.28674],[92.81761,13.28709],[92.81759,13.28734],[92.8174,13.28755],[92.81722,13.28764],[92.81706,13.2876],[92.81691,13.2875],[92.81679,13.2875],[92.81657,13.2878],[92.81645,13.28789],[92.81604,13.28793],[92.81583,13.28808]]],[[[93.0679,13.26663],[93.06798,13.26676],[93.06802,13.26682],[93.06802,13.26693],[93.06801,13.26701],[93.06799,13.26715],[93.06794,13.26717],[93.06784,13.26716],[93.06768,13.26708],[93.06757,13.26694],[93.06757,13.2668],[93.06758,13.26662],[93.06773,13.26658],[93.0679,13.26663]]],[[[93.0684,13.2672],[93.06847,13.26728],[93.06848,13.26739],[93.06846,13.26752],[93.06839,13.26759],[93.06823,13.26755],[93.06806,13.26747],[93.06802,13.26733],[93.06804,13.26721],[93.06809,13.26718],[93.06823,13.26716],[93.0684,13.2672]]],[[[93.06819,13.26776],[93.06826,13.26784],[93.06827,13.26796],[93.06825,13.26808],[93.06818,13.26815],[93.06802,13.26811],[93.06785,13.26803],[93.06781,13.26789],[93.06783,13.26777],[93.06788,13.26774],[93.06802,13.26772],[93.06819,13.26776]]],[[[93.06842,13.2686],[93.0685,13.26866],[93.0685,13.26889],[93.06842,13.269],[93.06833,13.26903],[93.06826,13.26897],[93.06818,13.26878],[93.06824,13.26864],[93.06834,13.2686],[93.06842,13.2686]]],[[[93.07089,13.27263],[93.07095,13.27264],[93.07098,13.27272],[93.071,13.27283],[93.07094,13.27291],[93.07087,13.27294],[93.07077,13.2729],[93.07072,13.27284],[93.07072,13.27273],[93.07076,13.27264],[93.07082,13.27263],[93.07089,13.27263]]],[[[93.0704,13.27285],[93.07051,13.2729],[93.07054,13.273],[93.07054,13.27308],[93.07041,13.27315],[93.07029,13.27306],[93.07027,13.27295],[93.07028,13.27287],[93.07033,13.27285],[93.0704,13.27285]]],[[[93.07004,13.27304],[93.07013,13.27312],[93.07013,13.27321],[93.07011,13.2733],[93.07006,13.27335],[93.06991,13.27336],[93.06982,13.27324],[93.06982,13.27307],[93.06987,13.27301],[93.06994,13.27299],[93.07004,13.27304]]],[[[93.07109,13.27314],[93.07112,13.27328],[93.07112,13.27344],[93.07114,13.27355],[93.07108,13.27362],[93.07095,13.27355],[93.07091,13.27341],[93.07091,13.27325],[93.07093,13.27314],[93.07109,13.27314]]],[[[93.07066,13.27349],[93.07069,13.27356],[93.07069,13.27373],[93.07056,13.2738],[93.07047,13.27371],[93.07047,13.27362],[93.0705,13.27349],[93.07066,13.27349]]],[[[93.07171,13.27366],[93.07178,13.27375],[93.07179,13.27386],[93.07177,13.27399],[93.0717,13.27406],[93.07154,13.27402],[93.07137,13.27393],[93.07134,13.27379],[93.07135,13.27368],[93.0714,13.27364],[93.07154,13.27363],[93.07171,13.27366]]],[[[93.07021,13.27372],[93.07032,13.27377],[93.07041,13.27384],[93.07043,13.27397],[93.07044,13.27409],[93.07039,13.27419],[93.07031,13.27424],[93.07024,13.27421],[93.07012,13.27415],[93.07008,13.27402],[93.07007,13.27389],[93.07008,13.2738],[93.07009,13.27373],[93.07021,13.27372]]],[[[93.07111,13.27391],[93.07118,13.27397],[93.07118,13.2742],[93.0711,13.27432],[93.07101,13.27434],[93.07094,13.27428],[93.07086,13.27409],[93.07092,13.27395],[93.07102,13.27391],[93.07111,13.27391]]],[[[93.0707,13.27454],[93.07078,13.27467],[93.07083,13.27473],[93.07083,13.27484],[93.07082,13.27492],[93.07079,13.27506],[93.07074,13.27508],[93.07065,13.27507],[93.07049,13.27499],[93.07037,13.27485],[93.07037,13.27471],[93.07039,13.27453],[93.07053,13.27449],[93.0707,13.27454]]],[[[93.03295,13.27973],[93.03304,13.28013],[93.03287,13.2804],[93.03258,13.28068],[93.0322,13.28083],[93.03173,13.28075],[93.0314,13.2806],[93.03125,13.28045],[93.03152,13.28019],[93.03165,13.27979],[93.03207,13.27953],[93.03263,13.27943],[93.03295,13.27973]]],[[[93.01495,13.28543],[93.01492,13.28556],[93.01464,13.2858],[93.01422,13.28588],[93.01383,13.28584],[93.01355,13.2856],[93.01344,13.28538],[93.01339,13.28512],[93.01341,13.2848],[93.01355,13.28464],[93.01369,13.28461],[93.01364,13.28437],[93.01369,13.2841],[93.01379,13.2839],[93.01393,13.28378],[93.01403,13.28361],[93.01448,13.28363],[93.01435,13.28336],[93.01449,13.28325],[93.01473,13.28315],[93.01535,13.28306],[93.01562,13.28331],[93.01553,13.28356],[93.01522,13.28383],[93.01563,13.28399],[93.0159,13.28407],[93.01617,13.28435],[93.0164,13.28441],[93.01652,13.28479],[93.01651,13.28502],[93.01596,13.28531],[93.01561,13.28531],[93.01501,13.28519],[93.01495,13.28543]]],[[[93.02123,13.29434],[93.02133,13.29439],[93.02139,13.29451],[93.0214,13.2946],[93.02139,13.29467],[93.02133,13.29474],[93.02105,13.29469],[93.021,13.2946],[93.02097,13.29454],[93.02096,13.29444],[93.02103,13.29436],[93.02114,13.29434],[93.02123,13.29434]]],[[[93.02169,13.29501],[93.02183,13.2951],[93.02191,13.29522],[93.0219,13.29531],[93.02177,13.29535],[93.02169,13.29535],[93.02145,13.29522],[93.02139,13.2951],[93.02142,13.29502],[93.02155,13.29497],[93.02169,13.29501]]],[[[92.98472,13.29847],[92.98493,13.29899],[92.98509,13.29946],[92.9851,13.29969],[92.98512,13.2997],[92.98511,13.29979],[92.98512,13.29987],[92.9851,13.30001],[92.98396,13.29979],[92.98332,13.29952],[92.98314,13.29937],[92.98312,13.29929],[92.9831,13.29926],[92.98301,13.29901],[92.98309,13.29849],[92.9835,13.29835],[92.98365,13.29833],[92.98377,13.29826],[92.98401,13.29817],[92.98472,13.29847]]],[[[93.04901,13.29499],[93.0491,13.29529],[93.04892,13.29546],[93.04915,13.29562],[93.04928,13.29587],[93.04918,13.29611],[93.049,13.29594],[93.04878,13.29562],[93.04851,13.29553],[93.04853,13.2951],[93.04836,13.2951],[93.04799,13.29505],[93.04764,13.29508],[93.04718,13.29556],[93.04673,13.29533],[93.04654,13.29544],[93.0456,13.29504],[93.04516,13.29464],[93.04481,13.29442],[93.04469,13.29417],[93.04487,13.29387],[93.04574,13.29383],[93.04586,13.29396],[93.04601,13.29342],[93.04641,13.29322],[93.04708,13.2934],[93.04743,13.29345],[93.04789,13.29329],[93.04852,13.29322],[93.0491,13.29371],[93.04938,13.29363],[93.04962,13.2938],[93.04971,13.29421],[93.04971,13.29436],[93.04941,13.2944],[93.0487,13.29386],[93.04817,13.2943],[93.04842,13.29454],[93.04866,13.29491],[93.04901,13.29499]]],[[[93.08012,13.29486],[93.08028,13.29489],[93.08032,13.29504],[93.08023,13.29511],[93.08016,13.29513],[93.07994,13.29513],[93.07974,13.29498],[93.0798,13.29486],[93.07994,13.29485],[93.08012,13.29486]]],[[[93.07571,13.29539],[93.07586,13.29546],[93.07587,13.29563],[93.07586,13.2957],[93.07577,13.29581],[93.07568,13.29576],[93.07558,13.29576],[93.07558,13.29555],[93.07561,13.29539],[93.07571,13.29539]]],[[[93.07605,13.29613],[93.07607,13.29587],[93.07607,13.29557],[93.0762,13.29556],[93.0763,13.29563],[93.07645,13.29583],[93.07636,13.29601],[93.07624,13.2961],[93.07605,13.29613]]],[[[93.07746,13.29566],[93.0776,13.29574],[93.0776,13.29594],[93.07752,13.29602],[93.07739,13.29601],[93.0773,13.29588],[93.0773,13.29575],[93.07736,13.29566],[93.07746,13.29566]]],[[[93.078,13.29567],[93.07819,13.29567],[93.07822,13.29581],[93.07819,13.29593],[93.07807,13.29604],[93.07788,13.29601],[93.07783,13.29589],[93.07783,13.29581],[93.07786,13.29569],[93.07792,13.29566],[93.078,13.29567]]],[[[93.07684,13.29578],[93.0769,13.29581],[93.07696,13.29588],[93.07696,13.29608],[93.07684,13.29616],[93.0767,13.29607],[93.07668,13.29593],[93.07668,13.29582],[93.07676,13.29578],[93.07684,13.29578]]],[[[93.07605,13.29613],[93.07595,13.29623],[93.07587,13.29627],[93.07574,13.2962],[93.07565,13.29604],[93.07567,13.29593],[93.07575,13.29589],[93.07589,13.29589],[93.07601,13.29593],[93.07605,13.29613]]],[[[93.07863,13.29603],[93.07863,13.29617],[93.07856,13.29631],[93.07849,13.29634],[93.07838,13.29612],[93.07843,13.29603],[93.07851,13.29597],[93.07863,13.29603]]],[[[93.07624,13.29627],[93.07624,13.29637],[93.07611,13.29658],[93.07593,13.29654],[93.07593,13.29635],[93.07605,13.29624],[93.07624,13.29627]]],[[[93.07755,13.29614],[93.07762,13.29614],[93.0777,13.29621],[93.0777,13.29635],[93.07764,13.29649],[93.07743,13.29642],[93.07743,13.29621],[93.07746,13.29614],[93.07755,13.29614]]],[[[93.07872,13.29652],[93.07878,13.29658],[93.07878,13.29667],[93.07877,13.29678],[93.07862,13.29687],[93.0785,13.29673],[93.0785,13.29658],[93.07856,13.29654],[93.07865,13.29652],[93.07872,13.29652]]],[[[93.08201,13.2971],[93.08212,13.29725],[93.08213,13.29739],[93.08205,13.29746],[93.08193,13.29752],[93.08179,13.29746],[93.08176,13.29738],[93.08176,13.29717],[93.08178,13.29707],[93.08187,13.29704],[93.08201,13.2971]]],[[[93.08,13.29749],[93.08004,13.29767],[93.08003,13.29778],[93.08,13.29786],[93.07993,13.29793],[93.07979,13.29778],[93.0797,13.29766],[93.0797,13.29753],[93.07976,13.29745],[93.07989,13.29742],[93.08,13.29749]]],[[[93.08103,13.29854],[93.08098,13.2986],[93.08092,13.29861],[93.08076,13.29855],[93.08073,13.29841],[93.08069,13.29847],[93.08056,13.29839],[93.08054,13.29826],[93.08054,13.29815],[93.08065,13.29809],[93.08079,13.29809],[93.0809,13.29826],[93.08081,13.29836],[93.08081,13.29841],[93.08088,13.29841],[93.08102,13.29839],[93.08103,13.29854]]],[[[93.08137,13.29857],[93.08144,13.29868],[93.08144,13.29879],[93.08146,13.29892],[93.0812,13.29889],[93.08112,13.29873],[93.08112,13.29861],[93.08126,13.29857],[93.08137,13.29857]]],[[[93.0821,13.29969],[93.08211,13.29982],[93.08212,13.29991],[93.0821,13.29996],[93.08201,13.30001],[93.08191,13.29995],[93.08191,13.29964],[93.08198,13.29963],[93.0821,13.29969]]],[[[93.08255,13.29991],[93.08259,13.29998],[93.08259,13.30009],[93.08252,13.30018],[93.08238,13.30024],[93.08233,13.30024],[93.08227,13.30008],[93.08231,13.29991],[93.08246,13.29988],[93.08255,13.29991]]],[[[93.08304,13.30015],[93.083,13.3003],[93.0829,13.30033],[93.08283,13.30033],[93.08282,13.30026],[93.08283,13.30015],[93.08292,13.30011],[93.08304,13.30015]]],[[[93.02186,13.31504],[93.02187,13.31515],[93.02181,13.31523],[93.0217,13.31534],[93.0216,13.31533],[93.02157,13.31528],[93.02153,13.31519],[93.02156,13.31503],[93.02171,13.31497],[93.02186,13.31504]]],[[[93.02232,13.31564],[93.02237,13.31575],[93.02237,13.31586],[93.02228,13.31596],[93.02218,13.31599],[93.0221,13.31594],[93.02207,13.31586],[93.02208,13.31574],[93.02221,13.31564],[93.02232,13.31564]]],[[[93.02209,13.31626],[93.02219,13.31636],[93.0222,13.31644],[93.02217,13.31656],[93.02206,13.3166],[93.02198,13.31653],[93.0219,13.31649],[93.02188,13.31636],[93.022,13.31622],[93.02209,13.31626]]],[[[93.02142,13.31815],[93.02155,13.31819],[93.02152,13.31841],[93.02133,13.31846],[93.02123,13.31828],[93.02127,13.31815],[93.02142,13.31815]]],[[[93.005,13.3065],[93.0048,13.30694],[93.00536,13.30786],[93.00524,13.30927],[93.00538,13.31053],[93.00699,13.31329],[93.00768,13.31483],[93.00804,13.31629],[93.00803,13.31747],[93.00856,13.32002],[93.00829,13.32071],[93.00783,13.32089],[93.0069,13.32064],[93.00488,13.31939],[93.00257,13.31725],[93.00245,13.3159],[93.00147,13.31382],[93.0,13.31298],[92.99914,13.31128],[92.9968,13.30787],[92.99544,13.30473],[92.99517,13.3029],[92.99468,13.30103],[92.99391,13.29992],[92.99391,13.29948],[92.99434,13.29848],[92.99487,13.29759],[92.99523,13.2974],[92.99592,13.29826],[92.99645,13.29982],[92.99696,13.30018],[92.99795,13.30051],[93.00022,13.3002],[93.00045,13.30048],[93.00055,13.30114],[93.0004,13.30183],[93.00047,13.30304],[93.00117,13.30379],[93.00242,13.30435],[93.00371,13.30375],[93.00529,13.30357],[93.00759,13.30374],[93.01081,13.30285],[93.01115,13.30253],[93.01091,13.30156],[93.01142,13.30114],[93.01283,13.30287],[93.01293,13.3034],[93.01246,13.30601],[93.0118,13.30725],[93.01125,13.30793],[93.00984,13.30922],[93.00865,13.30988],[93.00777,13.31005],[93.007,13.30984],[93.0065,13.30941],[93.00604,13.3087],[93.00564,13.3076],[93.00555,13.30626],[93.0053,13.30624],[93.005,13.3065]]],[[[93.00547,13.32279],[93.00504,13.32296],[93.00354,13.32311],[93.00298,13.32291],[93.00247,13.32301],[93.00146,13.32291],[93.00089,13.32263],[93.0,13.32277],[92.99961,13.32274],[92.99721,13.32215],[92.99676,13.32182],[92.99668,13.32186],[92.99657,13.3218],[92.99537,13.32091],[92.99432,13.31969],[92.99425,13.31933],[92.99434,13.31895],[92.99585,13.31771],[92.99719,13.31696],[92.99776,13.31682],[92.99832,13.31654],[92.99934,13.31624],[93.00022,13.31624],[93.0012,13.31725],[93.00162,13.3178],[93.00237,13.31932],[93.00309,13.32],[93.00517,13.3212],[93.00564,13.32164],[93.006,13.32213],[93.00595,13.32234],[93.00573,13.3226],[93.00547,13.32279]]],[[[93.0228,13.32884],[93.02139,13.32929],[93.02023,13.32943],[93.01862,13.32918],[93.01796,13.32918],[93.0175,13.32938],[93.0169,13.32923],[93.01612,13.32791],[93.01592,13.32678],[93.01557,13.32642],[93.01549,13.32585],[93.0156,13.32475],[93.01526,13.32368],[93.01515,13.32171],[93.01524,13.31959],[93.01484,13.31707],[93.01444,13.31701],[93.01453,13.31381],[93.01408,13.31164],[93.01436,13.31103],[93.01434,13.31041],[93.01385,13.30872],[93.01405,13.30813],[93.01658,13.3081],[93.01768,13.30783],[93.01863,13.30706],[93.02062,13.30453],[93.021,13.30436],[93.02108,13.30394],[93.02128,13.30394],[93.021,13.30364],[93.02093,13.30301],[93.0212,13.3016],[93.02159,13.30163],[93.02207,13.30194],[93.02232,13.30249],[93.0222,13.30277],[93.023,13.30598],[93.02314,13.30758],[93.02275,13.30863],[93.02253,13.30886],[93.02253,13.30919],[93.02151,13.31003],[93.0218,13.31118],[93.02069,13.31182],[93.02032,13.31247],[93.02072,13.31556],[93.02012,13.31598],[93.0198,13.31646],[93.01985,13.3167],[93.02056,13.31728],[93.02029,13.32147],[93.02054,13.32267],[93.02073,13.32305],[93.02114,13.32322],[93.0214,13.32385],[93.02138,13.32433],[93.02164,13.32447],[93.02132,13.32519],[93.0214,13.32543],[93.02187,13.32635],[93.02243,13.32611],[93.02293,13.32629],[93.02336,13.32611],[93.02388,13.32614],[93.02402,13.32645],[93.02431,13.32653],[93.02431,13.32683],[93.02453,13.32712],[93.02427,13.32818],[93.02379,13.32816],[93.02365,13.32838],[93.0228,13.32884]]],[[[92.9691,13.3392],[92.96887,13.33928],[92.96864,13.33905],[92.96846,13.33878],[92.96839,13.33842],[92.96821,13.33805],[92.96798,13.33806],[92.96844,13.33891],[92.96843,13.33904],[92.96823,13.33918],[92.96717,13.33895],[92.96635,13.33868],[92.96579,13.33825],[92.9654,13.33787],[92.96477,13.33697],[92.96449,13.3361],[92.96447,13.33584],[92.96401,13.33556],[92.96392,13.33542],[92.9639,13.33518],[92.96396,13.33507],[92.96441,13.33498],[92.96464,13.33496],[92.96476,13.335],[92.9652,13.33532],[92.96525,13.33469],[92.96509,13.33477],[92.96496,13.33459],[92.96504,13.33399],[92.96515,13.33375],[92.96547,13.33337],[92.96609,13.33281],[92.96661,13.33264],[92.96677,13.3327],[92.96685,13.33255],[92.96702,13.33246],[92.96715,13.33249],[92.96751,13.33298],[92.96769,13.3334],[92.96768,13.33414],[92.96735,13.33478],[92.96731,13.33514],[92.96746,13.3357],[92.96786,13.33634],[92.96821,13.33665],[92.96845,13.33703],[92.96898,13.33747],[92.96909,13.33773],[92.96903,13.33802],[92.96914,13.3381],[92.96924,13.33829],[92.96956,13.33859],[92.96967,13.33897],[92.96969,13.33914],[92.96964,13.3392],[92.96932,13.33911],[92.9691,13.3392]]],[[[93.00894,13.33726],[93.00835,13.33757],[93.00803,13.33741],[93.00803,13.33723],[93.00828,13.33728],[93.00836,13.33711],[93.00812,13.33698],[93.00806,13.33702],[93.00779,13.3371],[93.00737,13.33705],[93.00702,13.33682],[93.0066,13.33639],[93.00634,13.33593],[93.00632,13.33573],[93.00642,13.33557],[93.00659,13.33551],[93.00661,13.33508],[93.00714,13.33517],[93.00784,13.33555],[93.00829,13.33575],[93.00885,13.33655],[93.00894,13.33726]]],[[[93.01341,13.33699],[93.01378,13.33705],[93.01404,13.33717],[93.01431,13.33736],[93.01459,13.3378],[93.01499,13.33821],[93.01532,13.33874],[93.01537,13.33903],[93.01508,13.3393],[93.01447,13.33919],[93.01423,13.33919],[93.01371,13.33908],[93.01322,13.33886],[93.01294,13.33859],[93.01267,13.33808],[93.01258,13.33763],[93.0126,13.33758],[93.01241,13.33749],[93.01249,13.33713],[93.01285,13.33689],[93.01341,13.33699]]],[[[93.01977,13.34514],[93.01938,13.34558],[93.01888,13.34516],[93.01916,13.34502],[93.01923,13.34492],[93.01857,13.34524],[93.01816,13.34562],[93.01787,13.34564],[93.01756,13.34553],[93.01716,13.34513],[93.01662,13.34472],[93.01578,13.34325],[93.0156,13.3426],[93.01578,13.34155],[93.01642,13.33952],[93.01634,13.33904],[93.01604,13.33898],[93.01576,13.33874],[93.01573,13.3384],[93.01592,13.3381],[93.01644,13.33777],[93.01693,13.33795],[93.01727,13.33815],[93.01764,13.33803],[93.01766,13.3378],[93.01725,13.33707],[93.01719,13.33676],[93.01743,13.33667],[93.01846,13.3372],[93.01906,13.33771],[93.01956,13.33752],[93.02014,13.33811],[93.02025,13.33874],[93.02005,13.33909],[93.01975,13.3392],[93.01915,13.33898],[93.0192,13.33888],[93.01882,13.33914],[93.01853,13.33958],[93.01844,13.34009],[93.01847,13.34034],[93.01909,13.34051],[93.01929,13.3408],[93.01934,13.34144],[93.0195,13.34216],[93.02001,13.34284],[93.02026,13.34338],[93.02037,13.34425],[93.02023,13.34465],[93.01977,13.34514]]],[[[93.0364,13.33966],[93.0369,13.34004],[93.03744,13.34084],[93.03779,13.34172],[93.03835,13.34281],[93.03857,13.34337],[93.0386,13.34372],[93.03829,13.34426],[93.03809,13.34448],[93.0376,13.34461],[93.03735,13.3446],[93.03612,13.34391],[93.03531,13.34279],[93.03526,13.34192],[93.03545,13.34076],[93.03611,13.33963],[93.0364,13.33966]]],[[[92.82962,13.36832],[92.82979,13.36849],[92.82984,13.36867],[92.82982,13.36894],[92.82976,13.36908],[92.82949,13.36932],[92.82924,13.36937],[92.82914,13.36932],[92.82899,13.36915],[92.82888,13.3689],[92.82891,13.36862],[92.82904,13.36837],[92.8292,13.36826],[92.82938,13.36823],[92.82962,13.36832]]],[[[93.03612,13.36058],[93.03639,13.36083],[93.03628,13.3611],[93.03614,13.36133],[93.03563,13.36165],[93.03515,13.36154],[93.03497,13.36148],[93.03497,13.36117],[93.03528,13.36092],[93.0357,13.3606],[93.03612,13.36058]]],[[[93.03849,13.36365],[93.03962,13.36476],[93.04033,13.36652],[93.04049,13.36776],[93.0403,13.36809],[93.0402,13.36815],[93.03907,13.36729],[93.03785,13.36646],[93.03669,13.36543],[93.03613,13.36414],[93.03648,13.36331],[93.03698,13.36302],[93.03771,13.36292],[93.03849,13.36365]]],[[[93.08087,13.3662],[93.08094,13.36629],[93.08097,13.36636],[93.08093,13.36642],[93.08082,13.36642],[93.08072,13.36638],[93.08064,13.36631],[93.08064,13.36624],[93.08067,13.36616],[93.08076,13.36615],[93.08087,13.3662]]],[[[93.07545,13.36606],[93.07549,13.36615],[93.07609,13.36615],[93.07609,13.36662],[93.07552,13.36715],[93.07496,13.36706],[93.07449,13.36687],[93.07398,13.36675],[93.07397,13.36656],[93.07352,13.36618],[93.07343,13.36627],[93.07301,13.36636],[93.07247,13.36583],[93.07211,13.36557],[93.07225,13.36513],[93.07281,13.36462],[93.07328,13.3643],[93.07368,13.36405],[93.07409,13.36389],[93.07436,13.36408],[93.07435,13.36449],[93.07524,13.36384],[93.07522,13.36335],[93.07537,13.36298],[93.07625,13.3625],[93.07659,13.36257],[93.07695,13.36284],[93.07729,13.36322],[93.07743,13.36351],[93.07734,13.36383],[93.07695,13.36475],[93.07627,13.36493],[93.07599,13.36472],[93.07515,13.36556],[93.0758,13.36544],[93.07566,13.36583],[93.07545,13.36606]]],[[[93.0813,13.36638],[93.08137,13.36642],[93.0814,13.36649],[93.08138,13.36657],[93.08134,13.36664],[93.08122,13.36659],[93.08113,13.36655],[93.08108,13.36647],[93.08108,13.3664],[93.08118,13.36636],[93.0813,13.36638]]],[[[93.08084,13.36666],[93.08088,13.36671],[93.08089,13.3668],[93.08083,13.36689],[93.08074,13.36691],[93.08064,13.36686],[93.08062,13.36678],[93.08064,13.36666],[93.08071,13.36662],[93.08084,13.36666]]],[[[93.08225,13.36727],[93.08232,13.36738],[93.08232,13.36747],[93.08223,13.36751],[93.08215,13.36751],[93.08207,13.36747],[93.08201,13.36743],[93.082,13.3673],[93.08213,13.36723],[93.08225,13.36727]]],[[[93.08131,13.36695],[93.08162,13.36695],[93.08181,13.36741],[93.0821,13.36757],[93.08264,13.36821],[93.08287,13.36859],[93.08293,13.36923],[93.08246,13.36942],[93.08214,13.36969],[93.08196,13.36998],[93.0817,13.37027],[93.08122,13.37021],[93.08038,13.36977],[93.08031,13.36915],[93.07986,13.36893],[93.07948,13.36867],[93.07931,13.3685],[93.07922,13.36827],[93.07926,13.36808],[93.07946,13.36775],[93.07974,13.36747],[93.0806,13.3672],[93.08067,13.36698],[93.081,13.36697],[93.081,13.36683],[93.08106,13.36677],[93.08118,13.36677],[93.08127,13.36681],[93.08131,13.36687],[93.08131,13.36695]]],[[[93.03592,13.3738],[93.03632,13.37424],[93.03602,13.37463],[93.03531,13.37463],[93.03468,13.3746],[93.03482,13.37401],[93.03547,13.37359],[93.03592,13.3738]]],[[[93.0473,13.37357],[93.0449,13.37515],[93.04455,13.37517],[93.04439,13.37499],[93.04328,13.37435],[93.04128,13.37365],[93.03948,13.37345],[93.03761,13.37363],[93.03658,13.37401],[93.03648,13.37264],[93.03621,13.37135],[93.03634,13.37062],[93.03679,13.37008],[93.03811,13.36957],[93.03877,13.36944],[93.03964,13.36944],[93.04036,13.36907],[93.04078,13.36752],[93.04038,13.36582],[93.04038,13.36538],[93.04078,13.36533],[93.04144,13.36567],[93.04424,13.36639],[93.04534,13.36698],[93.04616,13.36835],[93.04641,13.36829],[93.04722,13.36898],[93.04748,13.36939],[93.04745,13.37001],[93.04708,13.37045],[93.04687,13.37109],[93.04714,13.372],[93.0473,13.37357]]],[[[93.04461,13.37547],[93.04473,13.37552],[93.04482,13.37562],[93.04487,13.37585],[93.04485,13.37618],[93.04472,13.37648],[93.04454,13.37657],[93.04438,13.37657],[93.04417,13.37641],[93.0441,13.37623],[93.04408,13.37611],[93.04417,13.37591],[93.04442,13.3755],[93.04451,13.37548],[93.04461,13.37547]]],[[[93.0778,13.37642],[93.07791,13.37644],[93.07798,13.37652],[93.07799,13.37665],[93.07793,13.37677],[93.07778,13.37682],[93.07768,13.37677],[93.07762,13.37671],[93.07761,13.3766],[93.07761,13.37652],[93.07768,13.37642],[93.0778,13.37642]]],[[[93.08001,13.37664],[93.08006,13.3767],[93.08005,13.37691],[93.08006,13.37701],[93.07993,13.37706],[93.07978,13.37701],[93.07973,13.37695],[93.07971,13.37687],[93.0797,13.37677],[93.07974,13.37666],[93.07991,13.37661],[93.08001,13.37664]]],[[[93.07724,13.37714],[93.07731,13.3772],[93.07732,13.37731],[93.07718,13.37739],[93.07709,13.3774],[93.07701,13.37737],[93.077,13.37723],[93.07706,13.37713],[93.07714,13.3771],[93.07724,13.37714]]],[[[93.07775,13.37719],[93.07784,13.37728],[93.07784,13.37737],[93.07779,13.37744],[93.07769,13.37748],[93.07758,13.37746],[93.07752,13.37737],[93.07753,13.37729],[93.07755,13.37721],[93.07763,13.37717],[93.07775,13.37719]]],[[[93.07962,13.37739],[93.07947,13.3775],[93.07902,13.37775],[93.07868,13.37742],[93.07837,13.37749],[93.07822,13.37744],[93.07811,13.37738],[93.07803,13.37723],[93.07809,13.37703],[93.07854,13.37639],[93.07872,13.37622],[93.07922,13.3761],[93.07963,13.37618],[93.07976,13.37631],[93.07978,13.37647],[93.07958,13.37675],[93.07932,13.37699],[93.07924,13.37709],[93.07933,13.37706],[93.07945,13.37706],[93.07962,13.37718],[93.07962,13.37739]]],[[[93.06002,13.36911],[93.05948,13.37061],[93.05978,13.37248],[93.05637,13.37989],[93.05656,13.38097],[93.05376,13.38307],[93.05213,13.38177],[93.04965,13.37752],[93.04901,13.37451],[93.04785,13.3736],[93.04729,13.37122],[93.04769,13.36926],[93.04587,13.36732],[93.04597,13.36686],[93.04748,13.36758],[93.04732,13.36644],[93.0483,13.36647],[93.04962,13.36522],[93.04806,13.36587],[93.04682,13.36572],[93.04677,13.36654],[93.0456,13.36672],[93.03993,13.36468],[93.03893,13.36277],[93.0407,13.36231],[93.0417,13.36496],[93.04247,13.36528],[93.04302,13.36225],[93.04405,13.36137],[93.04379,13.36109],[93.04249,13.36256],[93.04242,13.36496],[93.04178,13.36458],[93.04088,13.36192],[93.03843,13.36189],[93.03864,13.36055],[93.0401,13.35926],[93.04125,13.35988],[93.04139,13.36083],[93.04207,13.36111],[93.0445,13.35974],[93.04358,13.35933],[93.04239,13.36062],[93.04168,13.36072],[93.04176,13.35967],[93.04092,13.35897],[93.04403,13.3523],[93.04477,13.34744],[93.04424,13.34531],[93.04465,13.34535],[93.03979,13.3394],[93.04078,13.3374],[93.04029,13.33751],[93.03951,13.33019],[93.03875,13.32914],[93.03915,13.32831],[93.0378,13.32603],[93.03841,13.32222],[93.04054,13.32111],[93.04396,13.32092],[93.04576,13.32148],[93.04842,13.32302],[93.05129,13.32722],[93.05233,13.32708],[93.05355,13.32853],[93.05652,13.32977],[93.05847,13.32889],[93.05978,13.32744],[93.06084,13.32323],[93.05988,13.32014],[93.05977,13.3168],[93.06039,13.31359],[93.06244,13.30907],[93.06187,13.30612],[93.06332,13.30392],[93.06439,13.30353],[93.06612,13.30586],[93.06759,13.30625],[93.06908,13.3034],[93.0711,13.30234],[93.06893,13.30059],[93.06878,13.2998],[93.06962,13.29831],[93.07075,13.29754],[93.07411,13.29756],[93.07649,13.29635],[93.07806,13.29629],[93.07792,13.29664],[93.07934,13.29702],[93.08063,13.30052],[93.0805,13.30214],[93.07909,13.30317],[93.07867,13.3044],[93.07688,13.30544],[93.07655,13.30671],[93.07536,13.30725],[93.07395,13.30624],[93.07245,13.30382],[93.07102,13.3046],[93.06921,13.30669],[93.06997,13.30972],[93.07089,13.31081],[93.0701,13.31275],[93.07133,13.31477],[93.07205,13.31817],[93.07148,13.32266],[93.07257,13.32488],[93.07211,13.32507],[93.07252,13.3257],[93.07409,13.32614],[93.07478,13.329],[93.07625,13.33005],[93.07685,13.33029],[93.07881,13.32926],[93.07926,13.33026],[93.07903,13.33139],[93.07964,13.33157],[93.08017,13.33024],[93.083,13.33044],[93.08971,13.33366],[93.0901,13.33606],[93.089,13.33971],[93.08806,13.34604],[93.08726,13.34689],[93.08307,13.34425],[93.08137,13.34396],[93.07985,13.34477],[93.07785,13.3439],[93.07757,13.34465],[93.07973,13.34759],[93.07873,13.34954],[93.07524,13.34858],[93.07443,13.34725],[93.07073,13.3491],[93.06772,13.35321],[93.06366,13.36087],[93.0629,13.36134],[93.06248,13.36103],[93.06156,13.36232],[93.06124,13.36327],[93.06183,13.36328],[93.06193,13.36405],[93.06142,13.36826],[93.06002,13.36911]]],[[[93.0625,13.38672],[93.06256,13.38707],[93.06217,13.38724],[93.06168,13.387],[93.06136,13.3867],[93.06152,13.38642],[93.06204,13.38656],[93.062,13.38649],[93.06186,13.38645],[93.06167,13.38632],[93.06147,13.38606],[93.06123,13.38558],[93.06082,13.38583],[93.0601,13.38588],[93.05978,13.38577],[93.05941,13.38555],[93.05964,13.38512],[93.06009,13.38454],[93.06031,13.38451],[93.0606,13.38412],[93.06062,13.38388],[93.06012,13.38387],[93.06009,13.3831],[93.0603,13.38274],[93.06081,13.38249],[93.06173,13.38281],[93.06271,13.38384],[93.06319,13.38453],[93.06353,13.38473],[93.06433,13.3844],[93.06469,13.38464],[93.06495,13.38487],[93.06548,13.38491],[93.06632,13.38532],[93.06675,13.38559],[93.0669,13.38594],[93.06642,13.38677],[93.06569,13.38687],[93.06521,13.38661],[93.06462,13.38609],[93.06421,13.38606],[93.06395,13.38644],[93.06333,13.38648],[93.0625,13.38672]]],[[[93.08324,13.39621],[93.0833,13.3963],[93.08328,13.39648],[93.08322,13.39658],[93.08311,13.39661],[93.08303,13.39659],[93.08293,13.3964],[93.08299,13.39623],[93.08309,13.39615],[93.08324,13.39621]]],[[[93.08273,13.39674],[93.08282,13.39702],[93.08284,13.39731],[93.08277,13.39749],[93.08261,13.39756],[93.08254,13.39776],[93.0826,13.39795],[93.08225,13.39835],[93.08209,13.39836],[93.08194,13.39828],[93.08181,13.39804],[93.08157,13.3978],[93.08144,13.39762],[93.08153,13.39734],[93.08154,13.39703],[93.08181,13.39678],[93.08194,13.39679],[93.08164,13.39656],[93.0817,13.39642],[93.08183,13.39626],[93.08219,13.39612],[93.08261,13.39608],[93.08275,13.39614],[93.08273,13.39674]]],[[[92.84679,13.41926],[92.84691,13.41934],[92.84701,13.41946],[92.84717,13.41958],[92.84723,13.41967],[92.84723,13.41974],[92.84708,13.41996],[92.84709,13.42016],[92.84695,13.42031],[92.84685,13.42038],[92.84678,13.42038],[92.84671,13.42038],[92.84662,13.42032],[92.84643,13.42018],[92.84606,13.41975],[92.84604,13.41969],[92.84604,13.41957],[92.84613,13.41946],[92.84619,13.41942],[92.84636,13.41936],[92.84649,13.41927],[92.84661,13.41924],[92.84679,13.41926]]],[[[92.86243,13.42105],[92.86288,13.42133],[92.86292,13.42151],[92.86298,13.4216],[92.86269,13.42187],[92.86212,13.42218],[92.86228,13.42242],[92.86227,13.42256],[92.8618,13.42257],[92.8617,13.42251],[92.86154,13.42245],[92.86144,13.42238],[92.86144,13.42233],[92.86149,13.42222],[92.86156,13.42217],[92.86163,13.42203],[92.86125,13.42166],[92.86118,13.42137],[92.86118,13.42125],[92.86145,13.4211],[92.86171,13.4208],[92.86188,13.42074],[92.86203,13.42078],[92.86216,13.42075],[92.86243,13.42105]]],[[[92.81537,13.42041],[92.81507,13.42127],[92.81589,13.42288],[92.81592,13.42327],[92.81568,13.42488],[92.81459,13.42676],[92.81379,13.42754],[92.81336,13.42859],[92.81319,13.4303],[92.81294,13.43087],[92.81202,13.43177],[92.81166,13.43207],[92.81079,13.43203],[92.81051,13.43184],[92.8087,13.43047],[92.80801,13.43019],[92.80754,13.42963],[92.80707,13.42858],[92.80646,13.4281],[92.80642,13.42663],[92.80568,13.42455],[92.80519,13.42221],[92.80518,13.42133],[92.80573,13.41944],[92.80612,13.41864],[92.80646,13.41839],[92.8075,13.41866],[92.80831,13.42052],[92.80855,13.42074],[92.80906,13.42081],[92.80928,13.42061],[92.80925,13.41899],[92.80972,13.41782],[92.80971,13.41718],[92.81013,13.41666],[92.81098,13.41472],[92.81061,13.41286],[92.80998,13.41184],[92.80984,13.41109],[92.80888,13.40901],[92.8083,13.40833],[92.80795,13.40733],[92.80744,13.40689],[92.80735,13.40649],[92.80622,13.40558],[92.80575,13.40449],[92.8055,13.40202],[92.80767,13.40054],[92.80945,13.39996],[92.8111,13.39984],[92.8126,13.40051],[92.81429,13.40082],[92.81509,13.40123],[92.81592,13.40194],[92.81654,13.40331],[92.81729,13.40364],[92.81758,13.40399],[92.81752,13.40457],[92.81729,13.40484],[92.81778,13.40673],[92.8184,13.4076],[92.81805,13.40886],[92.81802,13.40984],[92.81818,13.41016],[92.81803,13.41064],[92.8186,13.41155],[92.81863,13.41259],[92.81841,13.4132],[92.81787,13.41362],[92.81769,13.41462],[92.81773,13.41503],[92.81856,13.41598],[92.81868,13.41652],[92.81811,13.41717],[92.81566,13.41805],[92.81598,13.41828],[92.81595,13.41866],[92.81565,13.41901],[92.81537,13.42041]]],[[[93.09487,13.42026],[93.09553,13.42105],[93.09568,13.42151],[93.09534,13.42167],[93.09575,13.42257],[93.09572,13.4232],[93.09499,13.4232],[93.09421,13.4229],[93.09351,13.4229],[93.09291,13.42269],[93.09207,13.42266],[93.09096,13.42211],[93.08933,13.42105],[93.08912,13.42068],[93.08896,13.42065],[93.08903,13.41999],[93.08876,13.41987],[93.08778,13.41865],[93.08759,13.41803],[93.08598,13.41643],[93.0858,13.4161],[93.08614,13.41422],[93.08566,13.4136],[93.0859,13.41326],[93.0857,13.41329],[93.08581,13.41256],[93.08561,13.41193],[93.08581,13.41172],[93.08589,13.41136],[93.08614,13.41109],[93.08625,13.41008],[93.0867,13.4097],[93.08685,13.41003],[93.0875,13.40921],[93.0888,13.40805],[93.08934,13.40731],[93.09021,13.40678],[93.09083,13.40711],[93.09088,13.40772],[93.09147,13.40877],[93.09172,13.4098],[93.09142,13.41138],[93.09085,13.41174],[93.09066,13.41174],[93.09075,13.41231],[93.09217,13.41574],[93.09287,13.41642],[93.0934,13.41721],[93.09361,13.41773],[93.09343,13.41837],[93.0936,13.41837],[93.09393,13.4186],[93.09397,13.41899],[93.09382,13.4193],[93.09356,13.41974],[93.09326,13.41992],[93.09393,13.41971],[93.09487,13.42026]]],[[[92.84338,13.43821],[92.84309,13.4383],[92.84308,13.43852],[92.84357,13.44006],[92.8441,13.44336],[92.84406,13.446],[92.84266,13.44911],[92.8417,13.45038],[92.84119,13.45047],[92.83988,13.44972],[92.83785,13.44724],[92.83661,13.44628],[92.83442,13.44144],[92.83362,13.44064],[92.83204,13.4396],[92.83206,13.43926],[92.83157,13.43913],[92.83113,13.43933],[92.82821,13.43946],[92.82656,13.4391],[92.82509,13.4397],[92.82418,13.43963],[92.82344,13.43842],[92.82266,13.43811],[92.82175,13.43732],[92.82064,13.4358],[92.81991,13.43525],[92.81952,13.43212],[92.81902,13.43136],[92.81925,13.43098],[92.81835,13.42983],[92.81866,13.42927],[92.81851,13.42864],[92.81873,13.4283],[92.81834,13.42745],[92.81826,13.42659],[92.81877,13.42546],[92.81894,13.42422],[92.81959,13.42358],[92.81988,13.42222],[92.82028,13.42205],[92.8204,13.42162],[92.82069,13.42145],[92.82081,13.42062],[92.8213,13.4205],[92.8225,13.41959],[92.82314,13.41971],[92.82365,13.41953],[92.82417,13.4198],[92.82505,13.41957],[92.82574,13.41978],[92.82648,13.4194],[92.82764,13.4193],[92.82892,13.41863],[92.83098,13.41838],[92.83226,13.41875],[92.83316,13.41937],[92.83413,13.41932],[92.83556,13.42013],[92.83738,13.41998],[92.83869,13.42074],[92.83959,13.42188],[92.83977,13.42281],[92.84034,13.423],[92.84048,13.42344],[92.84135,13.42437],[92.8415,13.42512],[92.8422,13.42536],[92.84306,13.42633],[92.84314,13.42667],[92.84288,13.4269],[92.84306,13.42741],[92.84405,13.42819],[92.8446,13.42826],[92.84499,13.42887],[92.84527,13.43031],[92.84579,13.43053],[92.84606,13.43094],[92.84385,13.43423],[92.84388,13.43514],[92.84366,13.43568],[92.84385,13.43693],[92.84338,13.43821]]],[[[93.07218,13.43228],[93.07172,13.43201],[93.07151,13.43207],[93.07124,13.43192],[93.07087,13.43141],[93.06973,13.43058],[93.0696,13.42999],[93.06925,13.42936],[93.06877,13.42887],[93.06863,13.42844],[93.06755,13.42704],[93.06718,13.42686],[93.06739,13.42652],[93.06701,13.42601],[93.06666,13.42513],[93.06602,13.42443],[93.06614,13.4233],[93.06588,13.42309],[93.06572,13.42313],[93.06553,13.42264],[93.0656,13.42072],[93.06605,13.41943],[93.06602,13.41852],[93.06618,13.41806],[93.06666,13.41804],[93.0669,13.41789],[93.06738,13.41669],[93.06689,13.41596],[93.06691,13.41506],[93.06718,13.41451],[93.06755,13.41471],[93.0677,13.41455],[93.06748,13.41452],[93.06797,13.41319],[93.06853,13.41278],[93.06963,13.41258],[93.0706,13.41287],[93.07134,13.41334],[93.07108,13.41528],[93.07054,13.4179],[93.07022,13.41825],[93.07009,13.41882],[93.07011,13.41932],[93.0705,13.42087],[93.07051,13.42171],[93.07024,13.42269],[93.07024,13.42354],[93.07072,13.42514],[93.07102,13.4255],[93.07118,13.42614],[93.07116,13.42696],[93.07172,13.42846],[93.07229,13.43083],[93.07266,13.43141],[93.07257,13.43189],[93.07218,13.43228]]],[[[93.0741,13.43213],[93.07421,13.43233],[93.07428,13.43248],[93.07441,13.43253],[93.07437,13.43285],[93.07425,13.43314],[93.07409,13.43341],[93.07342,13.43337],[93.07324,13.43323],[93.07312,13.43298],[93.07304,13.43279],[93.07307,13.43248],[93.07333,13.43208],[93.07365,13.43195],[93.0741,13.43213]]],[[[93.07756,13.43318],[93.07769,13.43333],[93.07777,13.43359],[93.07735,13.43375],[93.07695,13.43379],[93.07616,13.43385],[93.07585,13.43375],[93.07575,13.43331],[93.07604,13.43313],[93.07601,13.43307],[93.07605,13.4329],[93.07615,13.43283],[93.07621,13.43269],[93.07604,13.43254],[93.07611,13.43218],[93.07649,13.43196],[93.07703,13.43215],[93.07729,13.43236],[93.07749,13.43269],[93.07732,13.43286],[93.0772,13.43286],[93.0773,13.43309],[93.07738,13.43308],[93.07756,13.43318]]],[[[93.08684,13.43107],[93.08704,13.43128],[93.08738,13.43174],[93.08755,13.4321],[93.08755,13.4325],[93.08752,13.43278],[93.08742,13.43292],[93.08715,13.43311],[93.0869,13.433],[93.08667,13.43269],[93.08659,13.43237],[93.08671,13.43165],[93.08654,13.43144],[93.08652,13.43117],[93.08666,13.43107],[93.08684,13.43107]]],[[[92.86945,13.45359],[92.86962,13.45362],[92.86974,13.45375],[92.86981,13.45389],[92.86984,13.45406],[92.8698,13.45417],[92.86975,13.45422],[92.86956,13.45418],[92.86942,13.45403],[92.86931,13.45382],[92.86932,13.45372],[92.8694,13.4536],[92.86945,13.45359]]],[[[93.09726,13.43879],[93.09664,13.43841],[93.09651,13.43824],[93.09574,13.43808],[93.09563,13.43788],[93.09548,13.43779],[93.09546,13.4376],[93.09488,13.43745],[93.09468,13.43723],[93.09459,13.43694],[93.09433,13.43689],[93.09431,13.4365],[93.09469,13.4364],[93.09474,13.43616],[93.09491,13.43608],[93.09481,13.43583],[93.09459,13.43581],[93.09442,13.43562],[93.09418,13.43555],[93.09419,13.43463],[93.09428,13.43425],[93.09445,13.43394],[93.09479,13.4341],[93.09482,13.43422],[93.09495,13.43394],[93.0954,13.4336],[93.09563,13.43332],[93.0958,13.43292],[93.09579,13.43141],[93.09598,13.43115],[93.09635,13.43109],[93.09732,13.4305],[93.09815,13.43027],[93.09971,13.43003],[93.10039,13.42968],[93.10109,13.42959],[93.10126,13.42915],[93.10161,13.42896],[93.1024,13.42893],[93.10268,13.42914],[93.10312,13.42894],[93.10357,13.42888],[93.10442,13.42911],[93.1048,13.4295],[93.10477,13.42985],[93.10507,13.43017],[93.10485,13.43033],[93.10484,13.43046],[93.10505,13.43065],[93.10508,13.43082],[93.10484,13.4311],[93.10475,13.43142],[93.10457,13.43167],[93.10462,13.43217],[93.1045,13.43294],[93.10423,13.43304],[93.10416,13.43374],[93.10421,13.4345],[93.10447,13.4345],[93.10456,13.43472],[93.10426,13.43525],[93.10433,13.43565],[93.10419,13.43575],[93.10307,13.43578],[93.10301,13.43591],[93.10238,13.43591],[93.10183,13.43611],[93.10054,13.43638],[93.10017,13.43624],[93.09992,13.43604],[93.09944,13.4359],[93.0984,13.43596],[93.09802,13.43619],[93.09787,13.4364],[93.09805,13.43654],[93.0979,13.43667],[93.09814,13.43678],[93.09795,13.43743],[93.0981,13.43751],[93.09816,13.43855],[93.09783,13.43857],[93.09768,13.43873],[93.09745,13.43865],[93.09726,13.43879]]],[[[92.8633,13.46079],[92.86375,13.46087],[92.86413,13.46087],[92.86429,13.4609],[92.86449,13.46105],[92.86495,13.46155],[92.86517,13.46167],[92.86538,13.46166],[92.86558,13.4617],[92.86593,13.46186],[92.86647,13.46239],[92.86691,13.46266],[92.86721,13.46315],[92.86724,13.46332],[92.86703,13.46374],[92.8672,13.46407],[92.8672,13.4642],[92.86713,13.46428],[92.86695,13.46436],[92.8666,13.46431],[92.86619,13.46419],[92.86564,13.46412],[92.86536,13.46399],[92.86506,13.46393],[92.86464,13.46366],[92.86437,13.46341],[92.86416,13.46308],[92.8638,13.46269],[92.86338,13.46246],[92.86318,13.46222],[92.86315,13.46211],[92.86317,13.46198],[92.86325,13.46183],[92.86342,13.46167],[92.86342,13.46162],[92.86336,13.4615],[92.86308,13.46117],[92.86298,13.46099],[92.86307,13.46082],[92.86321,13.46078],[92.8633,13.46079]]],[[[92.87375,13.51355],[92.87343,13.51415],[92.873,13.51377],[92.8728,13.51338],[92.87206,13.51316],[92.87039,13.51425],[92.8693,13.51439],[92.86884,13.51434],[92.86735,13.51277],[92.86715,13.51195],[92.86609,13.51077],[92.86494,13.50782],[92.86462,13.50639],[92.86486,13.50555],[92.86474,13.50473],[92.86511,13.50313],[92.86574,13.5028],[92.86741,13.50235],[92.86907,13.50167],[92.87102,13.50159],[92.87251,13.50176],[92.87329,13.50339],[92.87332,13.50493],[92.8737,13.50523],[92.87385,13.50571],[92.87388,13.50704],[92.87367,13.50746],[92.87326,13.50785],[92.87291,13.50868],[92.87296,13.50889],[92.87288,13.50938],[92.87288,13.50958],[92.8732,13.50959],[92.87398,13.51105],[92.8736,13.51184],[92.87401,13.5124],[92.87403,13.51273],[92.87375,13.51355]]],[[[92.90599,13.52148],[92.90594,13.52153],[92.9059,13.52163],[92.9057,13.52156],[92.90561,13.52132],[92.90547,13.5213],[92.90544,13.52122],[92.90533,13.52114],[92.90535,13.52091],[92.90525,13.52102],[92.90523,13.52108],[92.90504,13.52106],[92.90498,13.52088],[92.90488,13.52064],[92.90502,13.5204],[92.90518,13.52045],[92.90505,13.52025],[92.90511,13.51997],[92.90548,13.52006],[92.90552,13.52023],[92.90559,13.52001],[92.90579,13.5199],[92.90598,13.52005],[92.90638,13.52006],[92.90666,13.5203],[92.90659,13.52056],[92.90646,13.52063],[92.90657,13.52087],[92.9065,13.52092],[92.90645,13.52099],[92.9065,13.52112],[92.90639,13.5212],[92.90647,13.52129],[92.90654,13.52131],[92.90649,13.52145],[92.90628,13.52148],[92.90624,13.52141],[92.90608,13.5214],[92.90599,13.52148]]],[[[92.98466,13.53003],[92.98455,13.52999],[92.98455,13.52994],[92.98451,13.52989],[92.98441,13.52993],[92.98411,13.52982],[92.98413,13.52975],[92.98411,13.52971],[92.98406,13.52969],[92.98409,13.52946],[92.98413,13.52935],[92.98418,13.52932],[92.98419,13.52927],[92.98417,13.52922],[92.98412,13.5292],[92.98413,13.52913],[92.98427,13.52899],[92.98426,13.52875],[92.98456,13.5284],[92.98492,13.52869],[92.98491,13.52895],[92.98498,13.5292],[92.98521,13.52937],[92.98503,13.52963],[92.9849,13.52974],[92.9848,13.52977],[92.98479,13.52982],[92.98481,13.52986],[92.98466,13.53003]]],[[[92.87498,13.54085],[92.87447,13.54091],[92.87417,13.54113],[92.87386,13.54125],[92.87372,13.54127],[92.87359,13.54119],[92.87364,13.54093],[92.87373,13.54071],[92.87375,13.54046],[92.8734,13.53967],[92.87328,13.53924],[92.87321,13.53887],[92.87327,13.5383],[92.87344,13.53735],[92.87353,13.53714],[92.87369,13.53703],[92.8742,13.53719],[92.87451,13.53722],[92.87471,13.53711],[92.87474,13.53697],[92.87464,13.53661],[92.87495,13.5364],[92.87494,13.53617],[92.87488,13.53603],[92.87515,13.53589],[92.87509,13.53549],[92.87541,13.53529],[92.8757,13.53528],[92.87622,13.53552],[92.87638,13.53582],[92.87678,13.53637],[92.87692,13.53674],[92.8768,13.53705],[92.87688,13.53714],[92.87735,13.53741],[92.87764,13.53782],[92.87772,13.53821],[92.87764,13.53857],[92.87739,13.53887],[92.87637,13.53972],[92.87664,13.53976],[92.87685,13.53989],[92.87692,13.54006],[92.87684,13.54027],[92.87656,13.54045],[92.87603,13.54063],[92.87525,13.54068],[92.87498,13.54085]]],[[[92.90853,13.53835],[92.90715,13.53818],[92.90694,13.53801],[92.90676,13.53761],[92.90645,13.53759],[92.90623,13.53737],[92.90532,13.53724],[92.90473,13.53724],[92.90412,13.53691],[92.90369,13.53585],[92.90306,13.53515],[92.90284,13.5345],[92.90283,13.53303],[92.90318,13.53248],[92.9028,13.53157],[92.90338,13.53087],[92.90376,13.53028],[92.90452,13.52939],[92.90575,13.52921],[92.9063,13.52928],[92.90704,13.53022],[92.90753,13.53061],[92.90815,13.53017],[92.90857,13.53029],[92.90865,13.53107],[92.9106,13.53267],[92.9112,13.53298],[92.91133,13.53326],[92.91159,13.53328],[92.91198,13.53385],[92.91212,13.53424],[92.91206,13.53535],[92.91219,13.53691],[92.91183,13.53748],[92.91071,13.53809],[92.91016,13.53803],[92.90997,13.5375],[92.90853,13.53835]]],[[[92.97883,13.53553],[92.97873,13.53573],[92.97862,13.53581],[92.97841,13.53622],[92.97849,13.53643],[92.97827,13.53664],[92.97805,13.53671],[92.97778,13.53664],[92.97766,13.53655],[92.97759,13.53645],[92.97762,13.53629],[92.9778,13.536],[92.9778,13.53572],[92.97793,13.53552],[92.97822,13.53555],[92.97836,13.53541],[92.97836,13.53535],[92.97864,13.53535],[92.97883,13.53553]]],[[[92.91479,13.54127],[92.91528,13.54131],[92.91577,13.54164],[92.91626,13.54204],[92.91645,13.54236],[92.91652,13.54283],[92.91631,13.54337],[92.91613,13.54369],[92.91542,13.54402],[92.91483,13.54417],[92.91439,13.5442],[92.91366,13.54388],[92.91325,13.5434],[92.91299,13.5428],[92.91303,13.54223],[92.91335,13.54161],[92.91378,13.54122],[92.91479,13.54127]]],[[[92.98639,13.53413],[92.9865,13.53507],[92.98643,13.53606],[92.98625,13.53654],[92.98562,13.53734],[92.98415,13.53801],[92.98315,13.53822],[92.98272,13.53818],[92.98249,13.53771],[92.98254,13.53723],[92.98226,13.53666],[92.98179,13.53604],[92.98206,13.53584],[92.98213,13.53558],[92.98201,13.53514],[92.98169,13.53513],[92.98139,13.53463],[92.98153,13.53422],[92.98198,13.53385],[92.98249,13.53364],[92.98288,13.53364],[92.98321,13.53348],[92.98265,13.53285],[92.98177,13.53252],[92.98057,13.53305],[92.97993,13.53389],[92.97947,13.53469],[92.97894,13.53496],[92.97852,13.53496],[92.97818,13.53457],[92.97829,13.53404],[92.97863,13.53313],[92.97911,13.53229],[92.97952,13.53197],[92.97962,13.53167],[92.97919,13.53164],[92.97887,13.5313],[92.97843,13.53115],[92.97839,13.53076],[92.97876,13.53036],[92.98022,13.53068],[92.98066,13.53056],[92.98239,13.5296],[92.98383,13.52895],[92.98394,13.5295],[92.98382,13.5298],[92.98419,13.53004],[92.98434,13.53029],[92.98471,13.53009],[92.98519,13.52972],[92.98543,13.52973],[92.98565,13.53026],[92.98616,13.53217],[92.98639,13.53413]]],[[[93.05723,13.5668],[93.05706,13.56688],[93.05681,13.56732],[93.05606,13.56725],[93.0558,13.56685],[93.05558,13.56695],[93.05534,13.56692],[93.05522,13.56698],[93.05475,13.5668],[93.05392,13.56673],[93.0527,13.56654],[93.05214,13.56638],[93.05117,13.56595],[93.05076,13.56547],[93.05056,13.5651],[93.05041,13.56399],[93.05053,13.56316],[93.05067,13.56271],[93.05109,13.56188],[93.05131,13.56164],[93.05188,13.56078],[93.05223,13.56002],[93.05223,13.55984],[93.05239,13.55977],[93.05288,13.55891],[93.05299,13.55891],[93.05332,13.55946],[93.05315,13.55966],[93.05314,13.55979],[93.05397,13.56084],[93.05519,13.56185],[93.05564,13.56213],[93.05591,13.56269],[93.05588,13.5633],[93.056,13.56363],[93.05588,13.56399],[93.05635,13.56544],[93.05643,13.56597],[93.05631,13.56623],[93.05607,13.56623],[93.05629,13.56631],[93.05657,13.56619],[93.05701,13.56628],[93.05723,13.5668]]],[[[93.00043,13.57251],[93.0,13.57268],[92.99974,13.57171],[92.99897,13.57093],[92.99847,13.57095],[92.99822,13.57068],[92.99824,13.57021],[92.99952,13.56894],[92.99977,13.56872],[93.0,13.56861],[93.0002,13.56864],[93.00027,13.5686],[93.0006,13.56865],[93.00082,13.56883],[93.00103,13.56911],[93.00107,13.56943],[93.00231,13.5707],[93.00233,13.57084],[93.00229,13.57111],[93.00187,13.57152],[93.00136,13.57179],[93.00118,13.57199],[93.00112,13.57224],[93.001,13.57233],[93.00081,13.57234],[93.00043,13.57251]]],[[[92.82853,13.21047],[92.82684,13.20796],[92.82373,13.20707],[92.82261,13.20451],[92.8191,13.20773],[92.81607,13.20446],[92.81495,13.20004],[92.81626,13.19715],[92.81813,13.20264],[92.82149,13.20299],[92.81957,13.20062],[92.8195,13.19688],[92.81778,13.1981],[92.81659,13.19585],[92.81773,13.194],[92.82018,13.19509],[92.82178,13.19309],[92.82084,13.18613],[92.81649,13.18541],[92.81604,13.18348],[92.81859,13.18185],[92.81913,13.18323],[92.82321,13.18287],[92.82212,13.18118],[92.82382,13.1794],[92.82492,13.1814],[92.8237,13.18283],[92.82646,13.18271],[92.82898,13.17845],[92.8346,13.17529],[92.8352,13.16574],[92.83909,13.16536],[92.83748,13.1622],[92.84279,13.16179],[92.84381,13.16313],[92.84451,13.16123],[92.84829,13.16293],[92.84918,13.16112],[92.84834,13.16278],[92.84441,13.16087],[92.84402,13.16289],[92.8433,13.16152],[92.83716,13.16199],[92.83839,13.1654],[92.83513,13.16487],[92.83399,13.17062],[92.82996,13.17145],[92.82636,13.17502],[92.82513,13.17109],[92.82779,13.16765],[92.82703,13.1634],[92.82448,13.16119],[92.81934,13.16213],[92.81803,13.16352],[92.82421,13.16196],[92.82647,13.16367],[92.82726,13.16731],[92.8233,13.17435],[92.8194,13.17237],[92.81416,13.17473],[92.81297,13.17262],[92.81502,13.1721],[92.81501,13.16974],[92.81094,13.16846],[92.81172,13.15799],[92.80793,13.15379],[92.8093,13.15187],[92.81633,13.14974],[92.81759,13.15013],[92.81704,13.15185],[92.82041,13.14506],[92.82656,13.1505],[92.83071,13.15103],[92.83262,13.14957],[92.8331,13.14425],[92.83811,13.14863],[92.83711,13.14531],[92.84191,13.14681],[92.84355,13.14174],[92.84538,13.14138],[92.84702,13.14321],[92.84657,13.14822],[92.84843,13.15022],[92.84681,13.14821],[92.84671,13.13856],[92.8419,13.13935],[92.83872,13.13484],[92.84337,13.13559],[92.84094,13.1257],[92.84335,13.12414],[92.84326,13.12202],[92.84631,13.12198],[92.84722,13.11815],[92.84634,13.1214],[92.84327,13.12171],[92.84065,13.12541],[92.84101,13.1279],[92.83945,13.12556],[92.83914,13.12717],[92.83399,13.13039],[92.83616,13.12426],[92.83371,13.1262],[92.83324,13.12336],[92.82967,13.12524],[92.83075,13.1277],[92.82893,13.13224],[92.82513,13.12856],[92.8257,13.1311],[92.82307,13.1348],[92.81857,13.13314],[92.81832,13.12793],[92.80848,13.12728],[92.81389,13.11773],[92.81408,13.11393],[92.8176,13.11366],[92.81804,13.11631],[92.81916,13.11518],[92.82361,13.11598],[92.8239,13.1137],[92.82936,13.10892],[92.82504,13.11265],[92.8214,13.11176],[92.8196,13.10627],[92.82129,13.10259],[92.8188,13.10253],[92.82184,13.09614],[92.82058,13.09121],[92.81904,13.09717],[92.81556,13.10026],[92.81378,13.09895],[92.81301,13.10306],[92.80558,13.10092],[92.80653,13.09243],[92.80466,13.08727],[92.80897,13.08353],[92.80629,13.08017],[92.81117,13.08101],[92.81051,13.07763],[92.81308,13.07607],[92.81351,13.07273],[92.81704,13.07597],[92.81864,13.0751],[92.81718,13.0756],[92.81412,13.07231],[92.81125,13.07676],[92.80825,13.07189],[92.80906,13.07591],[92.80453,13.07483],[92.80098,13.08146],[92.79765,13.08148],[92.79683,13.08272],[92.7987,13.08251],[92.80152,13.08566],[92.80082,13.09135],[92.79428,13.09053],[92.79284,13.09198],[92.79629,13.08133],[92.79539,13.07669],[92.79655,13.07608],[92.79518,13.07604],[92.79663,13.07511],[92.79676,13.06799],[92.79576,13.06415],[92.79339,13.06299],[92.79171,13.05335],[92.79923,13.04339],[92.79604,13.04718],[92.79241,13.04769],[92.79602,13.0389],[92.79166,13.03779],[92.79192,13.03292],[92.79458,13.03015],[92.78796,13.01955],[92.79183,13.01268],[92.79507,13.01282],[92.79742,13.01022],[92.80022,13.00986],[92.80167,13.01236],[92.80489,13.01264],[92.80411,13.00837],[92.80537,13.00639],[92.80772,13.00905],[92.81134,13.01008],[92.81431,13.00685],[92.81581,13.01208],[92.8174,13.01188],[92.81737,13.01557],[92.81479,13.01625],[92.81316,13.02161],[92.81135,13.02042],[92.81277,13.02185],[92.81505,13.01669],[92.81763,13.01593],[92.81818,13.01232],[92.82048,13.01215],[92.82308,13.01306],[92.82603,13.01767],[92.8292,13.01608],[92.83163,13.02045],[92.83391,13.02094],[92.83503,13.01905],[92.83502,13.02191],[92.83714,13.02307],[92.83537,13.02191],[92.83531,13.01874],[92.83401,13.02053],[92.83211,13.02009],[92.82929,13.01524],[92.82596,13.01675],[92.82281,13.0074],[92.82479,13.00359],[92.82962,13.00193],[92.82955,12.9995],[92.83311,13.00472],[92.83166,12.99856],[92.83585,12.99497],[92.83693,12.99715],[92.83799,12.99408],[92.8405,12.99438],[92.83985,12.9932],[92.84198,12.99138],[92.83964,12.99305],[92.84025,12.99427],[92.83772,12.99401],[92.8369,12.99684],[92.83563,12.99456],[92.83413,12.99687],[92.829,12.99924],[92.8283,13.00229],[92.82644,13.00263],[92.82606,12.99906],[92.82466,12.99848],[92.82618,13.00233],[92.82286,13.00651],[92.81959,13.00544],[92.81833,13.00065],[92.81547,12.99877],[92.80702,12.99901],[92.80763,12.99571],[92.80587,12.99496],[92.81079,12.99445],[92.81253,12.99176],[92.81663,12.99078],[92.81818,12.98595],[92.82168,12.98266],[92.8205,12.98027],[92.8217,12.98048],[92.82204,12.97711],[92.82148,12.98047],[92.81969,12.97912],[92.82145,12.98271],[92.81537,12.98708],[92.81158,12.98313],[92.81112,12.97251],[92.81077,12.98422],[92.80451,12.98336],[92.80215,12.98512],[92.79954,12.99188],[92.79411,12.98744],[92.79247,12.98017],[92.79715,12.97262],[92.79558,12.96763],[92.7969,12.96352],[92.79144,12.9695],[92.78998,12.96093],[92.79223,12.95733],[92.79057,12.95355],[92.79104,12.95184],[92.79535,12.94956],[92.80096,12.95217],[92.79837,12.9506],[92.79989,12.94866],[92.79909,12.94701],[92.80034,12.94729],[92.7978,12.94321],[92.8023,12.93841],[92.8003,12.93813],[92.79951,12.93421],[92.79821,12.93886],[92.79802,12.93638],[92.79229,12.93101],[92.79228,12.9281],[92.79441,12.9259],[92.79315,12.92354],[92.79501,12.91885],[92.79395,12.91389],[92.79725,12.91114],[92.80212,12.89885],[92.80438,12.90012],[92.80428,12.90635],[92.80609,12.90795],[92.80838,12.90616],[92.80975,12.90919],[92.80817,12.90589],[92.80605,12.90758],[92.80466,12.90627],[92.80457,12.90042],[92.82385,12.89696],[92.82651,12.893],[92.82775,12.89375],[92.82708,12.89823],[92.82864,12.89936],[92.82736,12.89816],[92.82793,12.89368],[92.82647,12.89258],[92.82878,12.88684],[92.83837,12.89276],[92.8426,12.89219],[92.84354,12.88761],[92.84132,12.8822],[92.84121,12.877],[92.87272,12.88352],[92.86946,12.88689],[92.86861,12.89046],[92.87032,12.89647],[92.87504,12.9019],[92.87494,12.90817],[92.87037,12.90969],[92.8642,12.90284],[92.8604,12.90311],[92.85859,12.90532],[92.8577,12.91331],[92.84968,12.91097],[92.84477,12.91263],[92.84978,12.91118],[92.85884,12.91789],[92.85595,12.92635],[92.85576,12.93368],[92.85233,12.93407],[92.84916,12.93195],[92.85037,12.93017],[92.8461,12.92951],[92.84448,12.9303],[92.84523,12.93199],[92.84436,12.93125],[92.84261,12.93341],[92.84537,12.93219],[92.84568,12.92982],[92.8504,12.93047],[92.84881,12.93183],[92.8503,12.93284],[92.84793,12.93466],[92.84912,12.93934],[92.84809,12.93489],[92.84997,12.93326],[92.8561,12.93519],[92.85224,12.94367],[92.85013,12.94452],[92.84878,12.94246],[92.84548,12.94404],[92.84917,12.94304],[92.8492,12.95055],[92.84742,12.95141],[92.84807,12.94743],[92.84233,12.94615],[92.84293,12.94288],[92.84001,12.94991],[92.84118,12.94787],[92.84484,12.94894],[92.84503,12.95348],[92.84418,12.95189],[92.84186,12.9527],[92.84409,12.95443],[92.8434,12.95679],[92.84439,12.95435],[92.84214,12.95255],[92.84386,12.95225],[92.84484,12.95382],[92.84597,12.95111],[92.84501,12.94854],[92.84235,12.94845],[92.84203,12.94714],[92.84797,12.94815],[92.84702,12.95173],[92.84821,12.95417],[92.85055,12.95469],[92.84735,12.95547],[92.85032,12.95791],[92.84808,12.95984],[92.85128,12.96102],[92.84853,12.95987],[92.85057,12.95774],[92.84778,12.95573],[92.85421,12.95472],[92.84841,12.9537],[92.84995,12.95038],[92.84942,12.94557],[92.85391,12.94357],[92.85517,12.94459],[92.85412,12.94739],[92.85533,12.94456],[92.85366,12.94019],[92.85803,12.93512],[92.87045,12.9353],[92.87619,12.94485],[92.87263,12.94919],[92.87253,12.95377],[92.87651,12.95996],[92.87327,12.964],[92.88029,12.9685],[92.87771,12.97346],[92.87961,12.97386],[92.8821,12.97804],[92.8821,12.98085],[92.88029,12.98005],[92.8802,12.98169],[92.88606,12.98597],[92.88656,12.9913],[92.88443,12.993],[92.88618,12.99889],[92.88308,13.00042],[92.88301,13.00225],[92.88487,13.00331],[92.88301,13.00544],[92.88501,13.00339],[92.88327,13.00055],[92.88645,12.99893],[92.88538,12.99409],[92.8884,12.99688],[92.89028,12.99673],[92.88773,13.00003],[92.88605,13.00728],[92.8906,12.99702],[92.885,12.99288],[92.88765,12.99131],[92.8862,12.98246],[92.89028,12.98932],[92.89621,12.99531],[92.89859,12.99386],[92.8956,12.98595],[92.89949,12.9845],[92.90139,12.98594],[92.90613,12.98357],[92.9046,12.97986],[92.90726,12.97774],[92.90493,12.97681],[92.90403,12.97386],[92.90534,12.96617],[92.90899,12.96287],[92.90701,12.96057],[92.90675,12.95401],[92.90769,12.94901],[92.91046,12.94531],[92.91404,12.94802],[92.91388,12.95035],[92.91261,12.94683],[92.91054,12.94662],[92.9123,12.94736],[92.91546,12.95459],[92.91485,12.9504],[92.91626,12.95485],[92.9198,12.95806],[92.92733,12.95674],[92.93176,12.96309],[92.93072,12.96562],[92.92993,12.96236],[92.92844,12.96659],[92.9331,12.96672],[92.93249,12.96517],[92.9347,12.96451],[92.93924,12.96828],[92.93863,12.97237],[92.93728,12.96838],[92.93419,12.96617],[92.93731,12.97023],[92.93624,12.97369],[92.93784,12.97417],[92.93862,12.97901],[92.93648,12.98286],[92.93128,12.98259],[92.9308,12.98432],[92.93322,12.98559],[92.93303,12.99129],[92.93142,12.99076],[92.93305,12.98941],[92.92789,12.99094],[92.91839,12.98728],[92.91687,12.98953],[92.91783,12.99117],[92.91474,12.99366],[92.91516,12.99886],[92.91281,13.00483],[92.91057,13.00575],[92.90142,13.00201],[92.901,13.00625],[92.89719,13.00797],[92.89919,13.00946],[92.89658,13.00925],[92.89631,13.01087],[92.89427,13.01111],[92.89981,13.00968],[92.89775,13.00806],[92.9015,13.00637],[92.90159,13.00244],[92.90243,13.00759],[92.90416,13.0067],[92.90457,13.00347],[92.91047,13.00752],[92.90606,13.015],[92.90093,13.01392],[92.90599,13.01647],[92.90444,13.02135],[92.90173,13.02188],[92.89534,13.01808],[92.89635,13.02008],[92.89855,13.01988],[92.9022,13.02274],[92.90825,13.0194],[92.91481,13.0325],[92.92111,13.03969],[92.92124,13.04426],[92.9153,13.05492],[92.91229,13.05668],[92.8971,13.05815],[92.88966,13.05068],[92.88914,13.04703],[92.88651,13.0439],[92.88144,13.04837],[92.87472,13.04837],[92.87518,13.04532],[92.87348,13.04639],[92.87258,13.04352],[92.87335,13.04677],[92.87501,13.04547],[92.87408,13.04851],[92.8792,13.0489],[92.876,13.05364],[92.87006,13.0548],[92.86679,13.05253],[92.86994,13.05132],[92.86829,13.04931],[92.8693,13.04691],[92.86356,13.04365],[92.86895,13.04697],[92.8678,13.04932],[92.86962,13.05109],[92.86634,13.0525],[92.87111,13.05556],[92.8636,13.05901],[92.86303,13.06143],[92.8655,13.06444],[92.86028,13.0656],[92.85459,13.06296],[92.84993,13.06333],[92.84887,13.05923],[92.85082,13.05521],[92.84592,13.0548],[92.84359,13.05089],[92.84555,13.05444],[92.84339,13.0573],[92.84436,13.06044],[92.84167,13.06001],[92.84434,13.06095],[92.84447,13.05626],[92.84944,13.05485],[92.84839,13.0595],[92.84959,13.06387],[92.85481,13.06364],[92.85961,13.06642],[92.85773,13.07052],[92.84793,13.0733],[92.84629,13.07514],[92.84826,13.07686],[92.84656,13.07502],[92.8478,13.07369],[92.85805,13.07136],[92.85867,13.07502],[92.85363,13.07772],[92.85803,13.0799],[92.8541,13.07765],[92.85899,13.0752],[92.85863,13.07044],[92.86041,13.06663],[92.86654,13.06455],[92.86416,13.05968],[92.87605,13.05497],[92.88578,13.04536],[92.88909,13.05217],[92.89506,13.05866],[92.91011,13.06132],[92.91214,13.06679],[92.91177,13.07112],[92.90842,13.07661],[92.89983,13.08129],[92.89831,13.09345],[92.88557,13.0923],[92.88572,13.09585],[92.89123,13.10116],[92.88897,13.1071],[92.88681,13.10791],[92.88396,13.10625],[92.88171,13.10777],[92.88088,13.10489],[92.87688,13.10207],[92.8732,13.10346],[92.87667,13.10239],[92.87668,13.10371],[92.88032,13.10519],[92.88149,13.1084],[92.88388,13.10664],[92.88876,13.10793],[92.88847,13.11392],[92.88213,13.12312],[92.88303,13.12802],[92.87822,13.13147],[92.87635,13.135],[92.87809,13.13798],[92.87455,13.13642],[92.87322,13.13745],[92.87583,13.13763],[92.87342,13.14012],[92.87668,13.14189],[92.87299,13.14908],[92.87577,13.1483],[92.87717,13.14991],[92.8758,13.14759],[92.87325,13.14866],[92.87737,13.14118],[92.87392,13.13953],[92.87834,13.13849],[92.87693,13.13509],[92.88386,13.12807],[92.8829,13.1232],[92.88751,13.11794],[92.89229,13.10331],[92.89242,13.10076],[92.88812,13.09676],[92.88711,13.09334],[92.89245,13.09593],[92.89886,13.09551],[92.90054,13.09222],[92.90087,13.08187],[92.90401,13.07947],[92.90817,13.07948],[92.91009,13.08145],[92.91223,13.07998],[92.91016,13.08108],[92.90853,13.07924],[92.91356,13.07465],[92.91283,13.07156],[92.91713,13.06571],[92.91958,13.05623],[92.92259,13.05349],[92.92708,13.05574],[92.92459,13.06484],[92.92852,13.06846],[92.92848,13.07241],[92.92897,13.06843],[92.9251,13.06428],[92.9274,13.05596],[92.93315,13.05807],[92.93455,13.0606],[92.93579,13.07735],[92.93377,13.08923],[92.93621,13.09207],[92.9356,13.09357],[92.93849,13.09199],[92.93964,13.09387],[92.93817,13.1064],[92.93685,13.10828],[92.93768,13.10519],[92.93589,13.10458],[92.93359,13.10929],[92.93627,13.10481],[92.93717,13.10832],[92.93921,13.10415],[92.94183,13.11117],[92.94212,13.11779],[92.94365,13.12228],[92.9457,13.12372],[92.94131,13.13215],[92.94166,13.13375],[92.94405,13.134],[92.93927,13.13998],[92.94008,13.14109],[92.94292,13.13989],[92.94185,13.14247],[92.94048,13.14214],[92.93997,13.14559],[92.94122,13.14552],[92.9408,13.14254],[92.94329,13.13975],[92.93975,13.14013],[92.94445,13.13391],[92.94164,13.13224],[92.94614,13.12351],[92.9426,13.11738],[92.94084,13.10519],[92.94318,13.10446],[92.94167,13.10209],[92.94398,13.10355],[92.94185,13.10181],[92.94278,13.10436],[92.94039,13.10406],[92.94077,13.09459],[92.93935,13.08867],[92.94559,13.08966],[92.93989,13.08808],[92.93895,13.09106],[92.9349,13.08928],[92.93665,13.08391],[92.93883,13.08264],[92.93669,13.08364],[92.93792,13.07791],[92.94159,13.07898],[92.93813,13.07726],[92.93729,13.06545],[92.9399,13.06324],[92.94612,13.06707],[92.94647,13.06931],[92.94955,13.06769],[92.9504,13.07005],[92.95598,13.07282],[92.95398,13.07254],[92.9529,13.07019],[92.95601,13.06916],[92.95673,13.06564],[92.95577,13.06434],[92.95581,13.0689],[92.95257,13.06999],[92.95075,13.0699],[92.94987,13.06744],[92.94663,13.06882],[92.94656,13.06661],[92.9386,13.06072],[92.93814,13.05886],[92.93928,13.05656],[92.94344,13.05467],[92.94522,13.05579],[92.94429,13.05451],[92.94541,13.05298],[92.94847,13.0515],[92.94753,13.05055],[92.94817,13.05182],[92.94302,13.05407],[92.9356,13.05283],[92.93314,13.04805],[92.9332,13.04224],[92.93474,13.03787],[92.93905,13.03388],[92.94962,13.02834],[92.95295,13.01873],[92.95964,13.01423],[92.96367,13.01496],[92.9707,13.01147],[92.97415,13.01308],[92.97443,13.01592],[92.96866,13.01814],[92.9694,13.02171],[92.96592,13.0275],[92.96731,13.02993],[92.96989,13.0281],[92.97924,13.02638],[92.98196,13.02425],[92.9866,13.02543],[92.99862,13.02418],[92.99794,13.02602],[92.99165,13.02761],[92.99123,13.03144],[92.99394,13.03481],[92.99383,13.0314],[93.0,13.03151],[93.00098,13.02813],[93.00344,13.02816],[93.0091,13.03514],[93.01089,13.04],[93.00979,13.04269],[93.01371,13.04402],[93.01293,13.04871],[93.01994,13.04955],[93.02319,13.05783],[93.02989,13.0672],[93.02574,13.07418],[93.02931,13.08055],[93.03258,13.0801],[93.03433,13.08142],[93.03529,13.08982],[93.03351,13.09264],[93.03462,13.09897],[93.03276,13.10262],[93.03159,13.11447],[93.03323,13.12176],[93.03016,13.12736],[93.03696,13.14055],[93.03355,13.16294],[93.03703,13.17158],[93.03175,13.17858],[93.03516,13.18692],[93.03613,13.19501],[93.04546,13.21057],[93.04234,13.22215],[93.04377,13.2227],[93.04553,13.21895],[93.04723,13.22421],[93.05336,13.22601],[93.05416,13.23077],[93.05683,13.23291],[93.05588,13.24165],[93.05793,13.24936],[93.05582,13.25527],[93.06022,13.26304],[93.06352,13.26324],[93.0658,13.27378],[93.04719,13.26129],[93.04402,13.25835],[93.04371,13.25427],[93.04364,13.25813],[93.04664,13.2606],[93.04441,13.26293],[93.04585,13.26501],[93.04237,13.26589],[93.03974,13.26977],[93.04663,13.27865],[93.04572,13.28275],[93.04205,13.27978],[93.03885,13.28146],[93.03608,13.27868],[93.03313,13.2797],[93.03355,13.27761],[93.02535,13.28257],[93.01835,13.27795],[93.016,13.27888],[93.01353,13.27651],[93.01109,13.27682],[93.00941,13.28184],[93.01614,13.28959],[93.01544,13.29209],[93.01155,13.29402],[93.01202,13.29559],[93.01763,13.29365],[93.02103,13.29487],[93.02101,13.29677],[93.02001,13.29831],[93.01754,13.29645],[93.01669,13.29823],[93.014,13.29791],[93.0096,13.30061],[93.00548,13.29656],[93.0075,13.29193],[93.00513,13.29719],[93.01023,13.30226],[93.00253,13.30391],[93.00068,13.30219],[93.00084,13.29873],[92.99789,13.30023],[92.99504,13.29712],[92.99336,13.2994],[92.98636,13.29916],[92.9972,13.29019],[92.99972,13.28555],[92.99881,13.2822],[93.0,13.28085],[92.99792,13.28209],[92.99894,13.28495],[92.99505,13.28286],[92.9944,13.27977],[92.99459,13.28337],[92.99643,13.28313],[92.99872,13.28601],[92.99251,13.29211],[92.98657,13.29064],[92.99078,13.28816],[92.9886,13.28621],[92.99035,13.28841],[92.98636,13.28957],[92.98271,13.28583],[92.98347,13.28303],[92.98134,13.28295],[92.98106,13.28125],[92.97996,13.28077],[92.97802,13.28335],[92.97723,13.28177],[92.97386,13.28191],[92.9737,13.2836],[92.97677,13.28218],[92.97836,13.28381],[92.98063,13.28153],[92.98115,13.28341],[92.98316,13.28329],[92.98167,13.28829],[92.98429,13.28721],[92.98616,13.2915],[92.99055,13.29191],[92.9827,13.29923],[92.98681,13.30114],[92.99367,13.30137],[92.99697,13.31489],[92.99089,13.31568],[92.98916,13.3175],[92.98836,13.31637],[92.99111,13.31389],[92.98864,13.31146],[92.99227,13.30991],[92.98876,13.31087],[92.98819,13.31219],[92.99073,13.31448],[92.98805,13.31583],[92.9875,13.31812],[92.98474,13.31787],[92.98476,13.32064],[92.98013,13.32153],[92.97727,13.32479],[92.96921,13.32423],[92.96461,13.32834],[92.95933,13.32789],[92.95901,13.32544],[92.96179,13.32332],[92.9607,13.32031],[92.95827,13.32248],[92.95263,13.31955],[92.94939,13.32084],[92.94843,13.31738],[92.94947,13.32119],[92.95264,13.32007],[92.96118,13.32308],[92.95754,13.3265],[92.95558,13.32531],[92.95191,13.32694],[92.95569,13.32577],[92.95932,13.32908],[92.95789,13.3304],[92.95978,13.3314],[92.95517,13.33691],[92.95559,13.3394],[92.95816,13.33905],[92.95537,13.3438],[92.94996,13.34482],[92.94959,13.34151],[92.94928,13.34474],[92.95064,13.34528],[92.94947,13.3491],[92.9454,13.35102],[92.94936,13.35006],[92.95082,13.34586],[92.95462,13.34428],[92.96002,13.34666],[92.95891,13.3486],[92.96104,13.3483],[92.96211,13.35482],[92.95743,13.36022],[92.95382,13.35863],[92.95387,13.36057],[92.95082,13.36153],[92.95429,13.3609],[92.95404,13.35909],[92.9575,13.36069],[92.96098,13.35677],[92.9653,13.36008],[92.97304,13.35934],[92.96925,13.35891],[92.9679,13.35701],[92.9702,13.35294],[92.96905,13.35017],[92.97095,13.34682],[92.9758,13.35132],[92.97495,13.34264],[92.97791,13.33976],[92.97998,13.33205],[92.98416,13.32802],[92.98807,13.32963],[92.98716,13.33391],[92.98858,13.34164],[92.99919,13.35049],[93.00021,13.34922],[93.00454,13.3522],[93.01075,13.35265],[93.01527,13.34868],[93.01879,13.34943],[93.02379,13.34774],[93.026,13.34437],[93.02883,13.34586],[93.03144,13.3439],[93.03401,13.34916],[93.04116,13.35154],[93.04112,13.3552],[93.03634,13.36017],[93.03153,13.35996],[93.03113,13.35856],[93.02887,13.3604],[93.02712,13.35807],[93.02438,13.35759],[93.02903,13.36083],[93.03296,13.3606],[93.03573,13.36544],[93.04005,13.36823],[93.0363,13.36982],[93.03433,13.3744],[93.02433,13.37212],[93.01683,13.37512],[93.01438,13.37128],[93.01736,13.36994],[93.01413,13.37074],[93.01641,13.37535],[93.00885,13.37935],[93.00824,13.38329],[93.0039,13.38614],[93.00318,13.3896],[92.99688,13.38466],[93.00014,13.38343],[93.00014,13.38188],[92.99383,13.37984],[92.99491,13.37634],[92.99226,13.38029],[92.99237,13.37832],[92.98873,13.37678],[92.98875,13.37889],[92.98311,13.37729],[92.97963,13.37992],[92.98529,13.37776],[92.98679,13.37858],[92.9859,13.38001],[92.98907,13.3791],[92.98875,13.37732],[92.99192,13.37871],[92.99114,13.38087],[92.99992,13.38224],[92.99678,13.38376],[92.99641,13.38757],[92.99715,13.38558],[92.99966,13.38667],[93.00373,13.39163],[93.00027,13.39266],[92.99921,13.39595],[93.00047,13.39289],[93.00365,13.39239],[93.00383,13.38729],[93.00875,13.38356],[93.00992,13.37912],[93.01288,13.3773],[93.02497,13.37322],[93.02471,13.37489],[93.02626,13.37396],[93.02751,13.37652],[93.02671,13.37362],[93.03289,13.37589],[93.03788,13.37541],[93.0367,13.37768],[93.03848,13.3796],[93.03579,13.37878],[93.03606,13.38142],[93.03411,13.38146],[93.03548,13.38189],[93.03618,13.37904],[93.03884,13.37983],[93.03712,13.37731],[93.0399,13.37524],[93.04353,13.37763],[93.04136,13.38025],[93.04192,13.38196],[93.04189,13.37999],[93.04704,13.37461],[93.04803,13.37874],[93.04568,13.37724],[93.0495,13.38112],[93.05112,13.3898],[93.05352,13.38941],[93.05553,13.39206],[93.05975,13.39122],[93.06039,13.39284],[93.06361,13.39024],[93.06337,13.39224],[93.06518,13.39141],[93.06419,13.39431],[93.0685,13.39663],[93.06946,13.40785],[93.06479,13.40631],[93.06139,13.40199],[93.06004,13.40268],[93.05956,13.39844],[93.0584,13.39902],[93.06192,13.41795],[93.06106,13.42147],[93.05776,13.42024],[93.05458,13.41214],[93.04633,13.40456],[93.04445,13.40612],[93.04525,13.40945],[93.04148,13.41443],[93.04041,13.41356],[93.03949,13.41587],[93.03606,13.41704],[93.03612,13.42075],[93.03918,13.4237],[93.03904,13.42791],[93.03259,13.42521],[93.03018,13.4283],[93.01525,13.43194],[93.01303,13.43067],[93.01442,13.43237],[93.01312,13.43394],[93.00798,13.4332],[93.00527,13.43152],[93.00751,13.42669],[93.01319,13.42519],[93.0134,13.42219],[93.01031,13.42233],[93.01033,13.42054],[93.00751,13.41821],[93.0099,13.4227],[93.0123,13.42272],[93.013,13.42486],[93.00768,13.42523],[93.00544,13.43095],[93.00056,13.43247],[93.00006,13.43582],[92.99241,13.4327],[92.99039,13.42712],[92.98909,13.42741],[92.99024,13.42818],[92.98882,13.43046],[92.99088,13.42986],[92.99168,13.43204],[92.99022,13.43584],[92.99212,13.43737],[92.99079,13.43808],[92.99274,13.4374],[92.991,13.43574],[92.99155,13.43409],[92.9938,13.43349],[92.99702,13.43559],[92.99652,13.44106],[92.99735,13.43639],[93.00071,13.43615],[93.00177,13.4326],[93.00525,13.43236],[93.01186,13.43512],[93.0154,13.43379],[93.01637,13.43538],[93.01327,13.43843],[93.00787,13.43765],[93.01271,13.43888],[93.01286,13.44373],[93.01277,13.44043],[93.01661,13.43618],[93.01654,13.43215],[93.01844,13.43164],[93.02598,13.43406],[93.03152,13.4326],[93.03426,13.43579],[93.0329,13.43793],[93.0352,13.43752],[93.0366,13.44129],[93.034,13.44225],[93.03351,13.44454],[93.03637,13.44447],[93.03647,13.44757],[93.03561,13.44866],[93.03352,13.4447],[93.035,13.44904],[93.03346,13.45122],[93.03465,13.45232],[93.0299,13.46108],[93.02746,13.46184],[93.02564,13.46064],[93.017,13.46326],[93.01447,13.4546],[93.01156,13.45329],[93.01045,13.45678],[93.01144,13.45881],[93.00781,13.45906],[93.00872,13.46149],[93.00562,13.46179],[93.00511,13.46328],[93.00946,13.4613],[93.00806,13.45937],[93.01202,13.45881],[93.0108,13.45691],[93.01192,13.45361],[93.0144,13.45532],[93.01862,13.4663],[93.02288,13.46808],[93.03099,13.4646],[93.03372,13.46586],[93.035,13.47203],[93.03383,13.47468],[93.03781,13.48028],[93.03398,13.48481],[93.03624,13.48408],[93.03916,13.48634],[93.04057,13.4923],[93.03969,13.49771],[93.04317,13.50491],[93.04232,13.51016],[93.04352,13.51473],[93.04214,13.51905],[93.04447,13.5254],[93.04421,13.52971],[93.04085,13.53532],[93.04053,13.54212],[93.02733,13.5794],[93.02518,13.57978],[93.01423,13.57223],[93.01383,13.56901],[93.01644,13.56873],[93.01633,13.5675],[93.01388,13.56634],[93.01352,13.56839],[93.01185,13.5667],[93.0118,13.56065],[93.01323,13.55965],[93.01052,13.54866],[93.00696,13.55499],[93.00832,13.55913],[93.00368,13.56626],[92.99716,13.56783],[92.98924,13.57507],[92.98585,13.5738],[92.98209,13.56944],[92.98225,13.56545],[92.98545,13.5666],[92.98231,13.56146],[92.98367,13.55673],[92.97918,13.55518],[92.97886,13.54975],[92.98297,13.54468],[92.98299,13.53958],[92.98503,13.53978],[92.98727,13.53707],[92.99033,13.53735],[92.98957,13.53885],[92.99103,13.53906],[92.9898,13.5387],[92.99051,13.53711],[92.98733,13.53642],[92.98576,13.52894],[92.98827,13.52815],[92.987,13.52354],[92.99102,13.52325],[92.99474,13.52015],[92.99549,13.5248],[93.0,13.52391],[92.99576,13.52442],[92.99541,13.5199],[92.99273,13.52156],[92.99057,13.51788],[92.989,13.51913],[92.98785,13.51775],[92.98884,13.5195],[92.99071,13.51838],[92.99201,13.52202],[92.98621,13.52302],[92.98703,13.52769],[92.97964,13.52698],[92.98066,13.52994],[92.9782,13.52923],[92.97154,13.54401],[92.96521,13.54998],[92.96307,13.54924],[92.96335,13.54704],[92.95855,13.54286],[92.95599,13.54547],[92.94972,13.54471],[92.94771,13.54278],[92.94771,13.53926],[92.94557,13.53778],[92.94124,13.53778],[92.93567,13.54176],[92.92433,13.53991],[92.92247,13.53775],[92.92046,13.5393],[92.91808,13.53867],[92.91355,13.5351],[92.91138,13.52742],[92.91444,13.52043],[92.91694,13.52105],[92.91771,13.52322],[92.92101,13.52097],[92.91909,13.52366],[92.92425,13.52113],[92.93026,13.52407],[92.93082,13.52587],[92.92996,13.52334],[92.93265,13.52078],[92.93803,13.53159],[92.93732,13.5264],[92.93945,13.52507],[92.94179,13.52618],[92.94078,13.52309],[92.94361,13.5234],[92.94408,13.52001],[92.94517,13.52008],[92.94387,13.51976],[92.94325,13.52316],[92.94046,13.522],[92.94133,13.52584],[92.93943,13.52467],[92.93612,13.52718],[92.93291,13.52025],[92.92867,13.52334],[92.92615,13.52162],[92.92716,13.51468],[92.92151,13.51351],[92.91952,13.51658],[92.91739,13.51709],[92.91326,13.51236],[92.91241,13.50839],[92.9144,13.50619],[92.91862,13.50995],[92.92225,13.50937],[92.92412,13.50503],[92.92399,13.5015],[92.92272,13.50136],[92.92722,13.49931],[92.92972,13.49602],[92.9348,13.50002],[92.9304,13.4952],[92.92748,13.4977],[92.9294,13.49137],[92.92674,13.48254],[92.92818,13.48148],[92.9318,13.48238],[92.93282,13.48102],[92.92762,13.47513],[92.92828,13.47406],[92.93106,13.47489],[92.93222,13.47186],[92.93006,13.47117],[92.92634,13.47325],[92.92211,13.47146],[92.92275,13.46716],[92.91957,13.46832],[92.92133,13.46344],[92.91891,13.45999],[92.91902,13.45663],[92.92074,13.45746],[92.92037,13.45502],[92.92028,13.45735],[92.91837,13.4565],[92.9185,13.46111],[92.92016,13.46281],[92.91557,13.46347],[92.92079,13.46305],[92.9187,13.46788],[92.92254,13.4682],[92.92106,13.47235],[92.92711,13.47402],[92.92698,13.47612],[92.93182,13.48074],[92.92469,13.48079],[92.92832,13.49154],[92.9249,13.49892],[92.91575,13.50068],[92.91234,13.49842],[92.9044,13.4983],[92.90186,13.49629],[92.90064,13.49344],[92.90311,13.49112],[92.90127,13.4873],[92.90219,13.48498],[92.89795,13.47715],[92.89325,13.47746],[92.89436,13.47263],[92.89726,13.4711],[92.89531,13.46962],[92.89866,13.46739],[92.89822,13.46515],[92.8984,13.46722],[92.8949,13.46989],[92.8964,13.47141],[92.89553,13.47216],[92.89103,13.46911],[92.88787,13.46903],[92.89108,13.46961],[92.89404,13.4724],[92.89312,13.47675],[92.89106,13.47852],[92.8862,13.47928],[92.87537,13.47645],[92.875,13.47207],[92.87371,13.47155],[92.86887,13.474],[92.87026,13.46956],[92.86952,13.46299],[92.87422,13.45964],[92.87099,13.4579],[92.87308,13.45624],[92.87092,13.45412],[92.87083,13.44513],[92.87738,13.44237],[92.87836,13.44335],[92.88024,13.43956],[92.87919,13.43575],[92.884,13.43151],[92.88715,13.43276],[92.88971,13.42788],[92.88984,13.42372],[92.89293,13.42575],[92.89779,13.42606],[92.89748,13.42783],[92.89899,13.42876],[92.89858,13.42616],[92.89001,13.42306],[92.88668,13.43197],[92.88313,13.43125],[92.87868,13.4357],[92.87321,13.43636],[92.87147,13.43333],[92.87745,13.43374],[92.87744,13.4315],[92.88113,13.43087],[92.8799,13.42885],[92.87333,13.42731],[92.87245,13.42483],[92.86828,13.42467],[92.86687,13.42226],[92.8679,13.41607],[92.87216,13.41472],[92.87362,13.41223],[92.8745,13.40207],[92.87964,13.39727],[92.8829,13.39622],[92.88577,13.39974],[92.88212,13.40427],[92.88446,13.407],[92.88675,13.40584],[92.88658,13.40171],[92.89219,13.40297],[92.89602,13.40126],[92.89185,13.40437],[92.89359,13.40797],[92.89578,13.40835],[92.89476,13.40974],[92.89679,13.41261],[92.89517,13.40966],[92.8963,13.40817],[92.8938,13.40743],[92.89226,13.40404],[92.8954,13.40312],[92.89679,13.40096],[92.89722,13.40317],[92.89943,13.4028],[92.89716,13.40276],[92.89804,13.40161],[92.89661,13.39929],[92.8932,13.39674],[92.88984,13.39979],[92.88788,13.39956],[92.88691,13.39793],[92.88897,13.39485],[92.89313,13.39593],[92.89526,13.39215],[92.89901,13.39111],[92.89873,13.38914],[92.90325,13.39072],[92.90396,13.39434],[92.90289,13.38764],[92.90725,13.38267],[92.91034,13.38482],[92.91191,13.38287],[92.91497,13.38254],[92.9214,13.39021],[92.92477,13.39021],[92.91804,13.38605],[92.91598,13.38241],[92.91194,13.38243],[92.91003,13.38433],[92.90598,13.38238],[92.90234,13.38753],[92.90291,13.38994],[92.89848,13.38854],[92.89863,13.39104],[92.89495,13.39174],[92.89389,13.39478],[92.89214,13.3956],[92.88908,13.3942],[92.88576,13.39804],[92.87985,13.39127],[92.88117,13.389],[92.8817,13.3922],[92.88352,13.39215],[92.8828,13.39029],[92.88452,13.38885],[92.88235,13.38351],[92.88481,13.38305],[92.88604,13.38494],[92.88766,13.38385],[92.88516,13.38284],[92.88457,13.38038],[92.88601,13.37867],[92.88334,13.3762],[92.8874,13.37361],[92.8855,13.37121],[92.88827,13.37141],[92.88735,13.36882],[92.88552,13.36905],[92.8857,13.36722],[92.88502,13.36939],[92.88802,13.37042],[92.88512,13.37081],[92.88702,13.37307],[92.88587,13.37483],[92.88292,13.37515],[92.88553,13.37915],[92.88441,13.38323],[92.882,13.38325],[92.88396,13.38874],[92.88243,13.39],[92.88312,13.39222],[92.88159,13.38864],[92.87917,13.39111],[92.88271,13.39508],[92.87893,13.39613],[92.87299,13.40239],[92.87278,13.40878],[92.87048,13.41399],[92.86225,13.41435],[92.86134,13.41265],[92.86331,13.4118],[92.85988,13.40943],[92.85369,13.4093],[92.85132,13.40995],[92.85061,13.41587],[92.84859,13.41835],[92.84754,13.41745],[92.85016,13.41219],[92.8451,13.41228],[92.84206,13.40965],[92.84175,13.40695],[92.84589,13.40369],[92.84124,13.40574],[92.83886,13.40119],[92.83729,13.39212],[92.84001,13.39057],[92.84042,13.38845],[92.84431,13.39255],[92.84331,13.38809],[92.84443,13.38696],[92.85037,13.38991],[92.85084,13.38591],[92.85811,13.38521],[92.86263,13.39064],[92.86238,13.40129],[92.86358,13.38982],[92.85887,13.38394],[92.86576,13.38798],[92.86705,13.39077],[92.86974,13.39068],[92.86745,13.39049],[92.86709,13.38852],[92.85736,13.38044],[92.85284,13.37955],[92.85067,13.37626],[92.85016,13.37279],[92.85198,13.37007],[92.84975,13.36703],[92.85168,13.36379],[92.8485,13.36304],[92.85101,13.35941],[92.85436,13.35918],[92.84999,13.35937],[92.84788,13.36346],[92.85122,13.36433],[92.8493,13.36631],[92.85139,13.37045],[92.84935,13.37781],[92.84715,13.37645],[92.84434,13.37888],[92.84005,13.37858],[92.8364,13.37523],[92.83333,13.37475],[92.83356,13.37327],[92.83585,13.37285],[92.83605,13.36953],[92.83217,13.3704],[92.83002,13.36909],[92.83124,13.3657],[92.8327,13.36549],[92.83154,13.36409],[92.83367,13.36261],[92.83143,13.36088],[92.83302,13.35589],[92.82985,13.35508],[92.82772,13.35029],[92.82885,13.34925],[92.83129,13.35039],[92.83076,13.3477],[92.83339,13.34684],[92.8286,13.34211],[92.83311,13.33829],[92.82552,13.33392],[92.82696,13.33265],[92.82406,13.33053],[92.82296,13.32358],[92.82531,13.3216],[92.82563,13.31629],[92.82767,13.31608],[92.82559,13.31358],[92.82231,13.31782],[92.82046,13.31085],[92.82493,13.30399],[92.82709,13.30624],[92.82993,13.30338],[92.83357,13.30365],[92.83497,13.30693],[92.83888,13.30745],[92.83442,13.30536],[92.83555,13.30367],[92.83986,13.30452],[92.84082,13.3012],[92.83346,13.29591],[92.83459,13.29163],[92.83804,13.28815],[92.83207,13.28712],[92.82809,13.29071],[92.82327,13.28965],[92.82086,13.28369],[92.8214,13.2806],[92.81939,13.27905],[92.82205,13.27391],[92.81358,13.27549],[92.8111,13.27083],[92.81414,13.26815],[92.81768,13.26996],[92.81957,13.2683],[92.82034,13.27068],[92.82425,13.27024],[92.827,13.26646],[92.83271,13.26828],[92.83667,13.26316],[92.83775,13.25902],[92.83854,13.26117],[92.84505,13.26058],[92.84913,13.26232],[92.85061,13.2653],[92.84946,13.26323],[92.85769,13.25259],[92.85665,13.25425],[92.8592,13.25687],[92.86158,13.25384],[92.862,13.25556],[92.86435,13.25443],[92.86465,13.25628],[92.86884,13.25501],[92.86717,13.25679],[92.8704,13.25831],[92.86787,13.25648],[92.86885,13.2546],[92.86499,13.25584],[92.86362,13.25374],[92.86203,13.25497],[92.86239,13.25294],[92.85945,13.2565],[92.85718,13.25442],[92.85802,13.25226],[92.85467,13.25406],[92.85513,13.25059],[92.85411,13.25431],[92.85515,13.25587],[92.85186,13.25698],[92.85017,13.26217],[92.8513,13.2516],[92.84753,13.24335],[92.84164,13.24347],[92.83902,13.2459],[92.8425,13.24082],[92.85152,13.23966],[92.85484,13.23396],[92.85181,13.22815],[92.85587,13.22389],[92.85602,13.21964],[92.85094,13.21344],[92.85444,13.21321],[92.84858,13.21241],[92.84894,13.20839],[92.85461,13.20969],[92.85857,13.20673],[92.86212,13.2066],[92.85858,13.20072],[92.86381,13.19608],[92.85785,13.19601],[92.85573,13.19054],[92.85792,13.18821],[92.85878,13.19243],[92.86051,13.19203],[92.86143,13.18503],[92.86312,13.18483],[92.86091,13.18552],[92.86043,13.19174],[92.85928,13.19211],[92.85828,13.18767],[92.85538,13.19074],[92.85717,13.19622],[92.86293,13.19647],[92.85822,13.20077],[92.86124,13.20638],[92.85848,13.20613],[92.85419,13.20905],[92.84832,13.20808],[92.84781,13.21273],[92.85519,13.21947],[92.85224,13.22186],[92.85514,13.22017],[92.85522,13.22289],[92.85096,13.22786],[92.8536,13.23392],[92.85042,13.23863],[92.8397,13.23918],[92.84105,13.24089],[92.83668,13.24393],[92.83315,13.24144],[92.83198,13.24332],[92.83046,13.24305],[92.82551,13.23717],[92.82682,13.23394],[92.82473,13.22297],[92.82935,13.22483],[92.82248,13.21671],[92.82347,13.21548],[92.82373,13.21651],[92.832,13.21544],[92.82853,13.21047]]],[[[94.26511,13.46335],[94.26427,13.46371],[94.26357,13.46436],[94.26258,13.46615],[94.26213,13.46647],[94.26151,13.46644],[94.25988,13.4658],[94.25878,13.46473],[94.25856,13.46395],[94.25828,13.46376],[94.25702,13.46374],[94.25632,13.46442],[94.25485,13.46468],[94.25321,13.46591],[94.25249,13.46605],[94.25241,13.46555],[94.25273,13.46454],[94.25127,13.46178],[94.24991,13.46026],[94.24757,13.4598],[94.24617,13.45705],[94.24313,13.45223],[94.24197,13.44915],[94.24101,13.44825],[94.23991,13.4481],[94.23945,13.44775],[94.23911,13.44672],[94.23948,13.44622],[94.23936,13.44379],[94.23979,13.44042],[94.24018,13.44011],[94.24116,13.44021],[94.2423,13.43913],[94.24328,13.43557],[94.24444,13.43411],[94.24472,13.43339],[94.2453,13.43286],[94.24672,13.43247],[94.24696,13.43309],[94.24722,13.43309],[94.24804,13.43246],[94.24923,13.43225],[94.25255,13.43287],[94.25293,13.43255],[94.25318,13.43139],[94.25339,13.43195],[94.25334,13.43302],[94.25392,13.43405],[94.25439,13.43418],[94.25605,13.43616],[94.25697,13.43654],[94.25743,13.4373],[94.25878,13.43694],[94.26106,13.43832],[94.26322,13.44079],[94.26495,13.44342],[94.26551,13.44536],[94.26527,13.44683],[94.26552,13.44946],[94.26642,13.4513],[94.26676,13.45419],[94.26622,13.45517],[94.26457,13.45706],[94.26444,13.45776],[94.26547,13.46066],[94.26627,13.46231],[94.26726,13.46331],[94.2674,13.46391],[94.26713,13.46405],[94.26562,13.46322],[94.26511,13.46335]]],[[[92.90178,13.6039],[92.90158,13.60416],[92.9011,13.60423],[92.90023,13.60382],[92.89876,13.60394],[92.89854,13.60332],[92.89807,13.60335],[92.89774,13.60307],[92.89526,13.60334],[92.89394,13.60313],[92.89248,13.60257],[92.89192,13.60274],[92.89135,13.6025],[92.89104,13.60199],[92.88782,13.59922],[92.88539,13.59761],[92.88472,13.59648],[92.88453,13.59553],[92.88398,13.59509],[92.88228,13.59186],[92.88265,13.59129],[92.88215,13.59065],[92.88211,13.58965],[92.88156,13.58884],[92.88135,13.58827],[92.88142,13.58767],[92.88076,13.58628],[92.88059,13.58502],[92.88077,13.58481],[92.88008,13.58258],[92.88022,13.58006],[92.87981,13.57797],[92.88006,13.57753],[92.88277,13.57509],[92.88333,13.57421],[92.8842,13.57374],[92.88585,13.57365],[92.88709,13.57388],[92.88871,13.5747],[92.88961,13.57557],[92.8918,13.58211],[92.89382,13.58556],[92.89485,13.5861],[92.89549,13.58758],[92.89624,13.58802],[92.89668,13.5879],[92.89743,13.58827],[92.89844,13.58888],[92.8988,13.58984],[92.90033,13.59048],[92.90046,13.59081],[92.89991,13.59196],[92.89996,13.59253],[92.90053,13.59261],[92.90099,13.59302],[92.90098,13.59329],[92.90071,13.59337],[92.90148,13.59366],[92.90227,13.59433],[92.90294,13.59447],[92.90327,13.59488],[92.90361,13.59451],[92.90393,13.59447],[92.90518,13.59821],[92.90453,13.59827],[92.90393,13.59874],[92.90352,13.59986],[92.90371,13.59998],[92.90386,13.60075],[92.90365,13.60153],[92.9032,13.60233],[92.90178,13.6039]]],[[[93.01501,13.63136],[93.01514,13.63159],[93.01502,13.63175],[93.01491,13.63205],[93.0148,13.63227],[93.01462,13.63207],[93.01474,13.63192],[93.01461,13.63178],[93.01441,13.63162],[93.01445,13.63146],[93.01437,13.63136],[93.01424,13.63125],[93.01425,13.63104],[93.01418,13.63075],[93.01449,13.63077],[93.01471,13.63057],[93.0148,13.63037],[93.01466,13.63024],[93.01447,13.63014],[93.01434,13.63037],[93.01409,13.63044],[93.01406,13.63031],[93.01442,13.63004],[93.01442,13.62992],[93.01481,13.62973],[93.01473,13.62958],[93.01455,13.62949],[93.0144,13.62933],[93.01472,13.62934],[93.0152,13.62977],[93.01523,13.63024],[93.01501,13.63136]]],[[[93.01403,13.63363],[93.01374,13.63368],[93.01372,13.63377],[93.01378,13.63394],[93.01363,13.63434],[93.0137,13.63453],[93.01387,13.63481],[93.01392,13.63502],[93.01348,13.63517],[93.01354,13.63487],[93.0133,13.63464],[93.01328,13.63442],[93.0129,13.63445],[93.01287,13.63438],[93.01318,13.63405],[93.01324,13.63375],[93.013,13.63358],[93.01298,13.6333],[93.01283,13.63309],[93.01317,13.63292],[93.0136,13.63318],[93.0136,13.6334],[93.01369,13.63338],[93.01378,13.63321],[93.0141,13.63306],[93.01403,13.63363]]],[[[93.01045,13.63867],[93.01041,13.63881],[93.01037,13.63885],[93.01008,13.63885],[93.01023,13.63861],[93.01035,13.63849],[93.01045,13.63867]]],[[[93.03507,13.64126],[93.03525,13.6416],[93.03527,13.64242],[93.03523,13.64304],[93.03498,13.64353],[93.03484,13.64365],[93.03456,13.64349],[93.03457,13.64317],[93.03445,13.64274],[93.03435,13.64255],[93.03429,13.64237],[93.03424,13.64205],[93.03433,13.64183],[93.03442,13.64151],[93.03463,13.64127],[93.03507,13.64126]]],[[[93.03442,13.64497],[93.03467,13.64518],[93.03461,13.64556],[93.03442,13.6459],[93.03463,13.64634],[93.03474,13.64687],[93.03427,13.64682],[93.03396,13.6465],[93.03364,13.64637],[93.03353,13.64603],[93.03349,13.64563],[93.03332,13.64545],[93.03338,13.64511],[93.03375,13.64492],[93.03442,13.64497]]],[[[93.06393,13.65494],[93.06226,13.65576],[93.06159,13.65583],[93.05521,13.65477],[93.05347,13.65355],[93.05261,13.65369],[93.05148,13.65229],[93.05111,13.65114],[93.05138,13.65072],[93.05089,13.6491],[93.04998,13.64804],[93.04935,13.64665],[93.04903,13.64641],[93.0488,13.64679],[93.04898,13.64811],[93.04863,13.64863],[93.04748,13.64908],[93.04625,13.64853],[93.04514,13.64737],[93.04482,13.64571],[93.04502,13.64461],[93.04554,13.64398],[93.04559,13.64329],[93.04522,13.64228],[93.04541,13.64174],[93.04447,13.64094],[93.04405,13.64089],[93.04381,13.64274],[93.04298,13.64296],[93.04269,13.64269],[93.04212,13.64012],[93.04093,13.63845],[93.04107,13.63704],[93.04175,13.63551],[93.04122,13.63483],[93.04116,13.63418],[93.04157,13.63127],[93.04188,13.63085],[93.04247,13.63068],[93.04163,13.62968],[93.04181,13.62759],[93.04257,13.62692],[93.04298,13.62716],[93.04398,13.62593],[93.04402,13.62434],[93.04441,13.6244],[93.04394,13.62246],[93.04399,13.62172],[93.04436,13.62097],[93.04539,13.62057],[93.04613,13.61984],[93.04728,13.62071],[93.0474,13.62114],[93.04761,13.6202],[93.04827,13.62013],[93.04878,13.62063],[93.04901,13.62168],[93.04838,13.62186],[93.04919,13.62544],[93.05001,13.62611],[93.05086,13.62769],[93.05197,13.63075],[93.05304,13.63274],[93.05312,13.6335],[93.05467,13.63624],[93.0546,13.63739],[93.05515,13.6389],[93.0551,13.64011],[93.05555,13.64085],[93.05513,13.64267],[93.05742,13.6445],[93.05987,13.64474],[93.06235,13.64575],[93.06434,13.64733],[93.06508,13.64851],[93.06652,13.64971],[93.06701,13.65061],[93.06759,13.65029],[93.06825,13.65071],[93.06824,13.65134],[93.06764,13.65123],[93.06783,13.65219],[93.06762,13.65271],[93.06573,13.65468],[93.06515,13.65458],[93.06446,13.65505],[93.0642,13.65469],[93.06429,13.65429],[93.0639,13.65429],[93.06393,13.65494]]],[[[93.03027,13.66275],[93.0302,13.66344],[93.02975,13.66361],[93.02976,13.66334],[93.03018,13.66269],[93.03027,13.66275]]],[[[93.10833,13.65575],[93.10835,13.656],[93.10854,13.65628],[93.10833,13.65651],[93.10804,13.65651],[93.10802,13.65623],[93.10794,13.65603],[93.10799,13.65578],[93.10833,13.65575]]],[[[93.10631,13.65752],[93.10634,13.65783],[93.10623,13.6581],[93.10592,13.65823],[93.10569,13.65803],[93.10574,13.65773],[93.10584,13.6576],[93.10592,13.65752],[93.10631,13.65752]]],[[[93.11081,13.6574],[93.11074,13.6576],[93.11068,13.65778],[93.1105,13.65796],[93.11035,13.65783],[93.11035,13.65745],[93.11045,13.6573],[93.11066,13.65722],[93.11081,13.6574]]],[[[93.10768,13.66082],[93.10784,13.66097],[93.10786,13.6612],[93.10773,13.6614],[93.10735,13.66165],[93.10717,13.6615],[93.10717,13.66132],[93.10719,13.66112],[93.10732,13.66074],[93.10768,13.66082]]],[[[93.01549,13.67696],[93.0107,13.67692],[93.00978,13.67632],[93.01079,13.67519],[93.01031,13.67486],[93.01051,13.67441],[93.00704,13.67534],[93.00586,13.6749],[93.00372,13.67317],[93.00436,13.6726],[93.00445,13.67131],[93.00543,13.67046],[93.00512,13.66958],[93.00606,13.66835],[93.00471,13.6661],[93.00595,13.66508],[93.0082,13.66445],[93.00951,13.66326],[93.01001,13.66505],[93.01106,13.66543],[93.01168,13.66506],[93.01048,13.66491],[93.00988,13.66397],[93.00996,13.66297],[93.00956,13.66275],[93.00769,13.66415],[93.00608,13.66432],[93.00425,13.66603],[93.00403,13.66864],[93.00499,13.67007],[93.00403,13.67172],[93.00362,13.67075],[93.00299,13.67091],[93.00282,13.67266],[92.99989,13.67189],[92.99806,13.67078],[92.99756,13.67118],[92.99721,13.67048],[92.99563,13.67042],[92.99414,13.66979],[92.99352,13.66999],[92.99155,13.66866],[92.98923,13.66899],[92.98839,13.66793],[92.98689,13.66777],[92.98711,13.66854],[92.98355,13.66816],[92.98324,13.6673],[92.98231,13.66719],[92.98211,13.6666],[92.98169,13.66655],[92.98146,13.66718],[92.97967,13.66661],[92.97901,13.66587],[92.97913,13.66534],[92.97797,13.66549],[92.9774,13.66435],[92.9766,13.66428],[92.97428,13.66152],[92.97433,13.66048],[92.97537,13.66202],[92.97667,13.66184],[92.97658,13.66102],[92.97526,13.65952],[92.97558,13.65831],[92.97357,13.65898],[92.97494,13.65751],[92.97396,13.65647],[92.97407,13.65559],[92.97233,13.65553],[92.97149,13.65408],[92.97132,13.64966],[92.97167,13.64735],[92.9736,13.64391],[92.97511,13.64255],[92.97576,13.64304],[92.97616,13.64441],[92.97619,13.64652],[92.97705,13.6481],[92.97719,13.65001],[92.97862,13.65068],[92.97865,13.64866],[92.97932,13.64787],[92.98022,13.648],[92.9815,13.64937],[92.9815,13.64724],[92.97996,13.64721],[92.98063,13.64697],[92.98167,13.64524],[92.98113,13.64183],[92.98258,13.64074],[92.98408,13.6405],[92.98644,13.64063],[92.98672,13.64027],[92.9883,13.64111],[92.98857,13.64212],[92.98804,13.64332],[92.98812,13.64527],[92.98928,13.64476],[92.98955,13.6451],[92.99024,13.64489],[92.98999,13.64378],[92.99047,13.64334],[92.99038,13.64275],[92.99149,13.64196],[92.9929,13.64189],[92.99342,13.64275],[92.99429,13.64262],[92.99581,13.64403],[92.99614,13.64531],[92.99536,13.64591],[92.99598,13.64646],[92.99721,13.64601],[92.99769,13.64636],[92.99767,13.64726],[92.99819,13.64723],[92.99857,13.64606],[92.99961,13.64698],[93.0,13.64686],[93.00022,13.64576],[93.00091,13.64641],[93.00093,13.6483],[93.00136,13.64855],[93.0022,13.6475],[93.00273,13.64573],[93.00421,13.64652],[93.00572,13.6466],[93.00595,13.64517],[93.00739,13.64606],[93.00884,13.64467],[93.00914,13.64497],[93.00958,13.6428],[93.01336,13.64334],[93.01355,13.6408],[93.01231,13.63957],[93.0121,13.63859],[93.01296,13.63781],[93.01421,13.63762],[93.01286,13.63697],[93.0129,13.6361],[93.01477,13.63595],[93.01589,13.63462],[93.01596,13.63287],[93.01558,13.63241],[93.01614,13.62869],[93.01707,13.62963],[93.01743,13.62869],[93.01706,13.62736],[93.01758,13.62711],[93.01909,13.62758],[93.02007,13.62671],[93.02028,13.62579],[93.01697,13.62312],[93.0181,13.62204],[93.01843,13.6225],[93.01975,13.62212],[93.02061,13.62405],[93.02241,13.62425],[93.0228,13.62352],[93.02482,13.62501],[93.02776,13.62494],[93.02856,13.62544],[93.02873,13.62666],[93.02953,13.62789],[93.03032,13.6285],[93.03105,13.62848],[93.03132,13.62991],[93.03257,13.63122],[93.03247,13.63206],[93.03186,13.63228],[93.03189,13.63333],[93.03227,13.63326],[93.03197,13.63475],[93.03119,13.63568],[93.03074,13.63538],[93.02897,13.63746],[93.02936,13.63792],[93.02853,13.6403],[93.02807,13.6445],[93.02636,13.64709],[93.0257,13.6492],[93.02559,13.65001],[93.02606,13.6506],[93.02554,13.65119],[93.02583,13.65174],[93.0251,13.65435],[93.02509,13.65641],[93.02467,13.65688],[93.02558,13.66068],[93.02477,13.66222],[93.02519,13.66338],[93.02405,13.66578],[93.0243,13.66616],[93.02316,13.66694],[93.02435,13.66675],[93.02559,13.66768],[93.02543,13.66813],[93.02306,13.66876],[93.02174,13.66971],[93.02226,13.67006],[93.02201,13.66971],[93.02263,13.66954],[93.02469,13.67003],[93.02608,13.67082],[93.02628,13.67177],[93.0251,13.6729],[93.02437,13.67291],[93.02455,13.67356],[93.02299,13.67509],[93.02017,13.67625],[93.01988,13.67383],[93.01877,13.6759],[93.01728,13.6767],[93.01549,13.67696]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"633","area_level":"District","area_name":"Kasganj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.6457,28.01746],[78.63587,28.01863],[78.62807,28.02795],[78.62358,28.02471],[78.61716,28.01602],[78.60977,28.01937],[78.6026,28.01485],[78.59759,28.01511],[78.59389,28.01178],[78.59528,28.00759],[78.59422,28.00003],[78.59658,27.99796],[78.59142,27.99429],[78.59504,27.98487],[78.59817,27.98423],[78.59966,27.98129],[78.5937,27.97657],[78.59199,27.97335],[78.58744,27.97176],[78.58061,27.96322],[78.58579,27.95908],[78.58585,27.95725],[78.56677,27.9425],[78.57349,27.93645],[78.54946,27.90944],[78.5383,27.90803],[78.53333,27.91089],[78.531,27.90939],[78.52837,27.90601],[78.53463,27.89895],[78.51923,27.89453],[78.51302,27.88572],[78.51441,27.88373],[78.51109,27.88096],[78.51185,27.87904],[78.507,27.87479],[78.50767,27.87266],[78.50612,27.87199],[78.50831,27.86895],[78.50696,27.86686],[78.49973,27.85941],[78.49469,27.85959],[78.49178,27.85741],[78.49312,27.85373],[78.49882,27.85252],[78.51401,27.84189],[78.50691,27.83213],[78.50941,27.82961],[78.51442,27.82904],[78.51359,27.82672],[78.51605,27.82512],[78.51284,27.82418],[78.51365,27.82072],[78.51594,27.81915],[78.5151,27.8153],[78.51754,27.81571],[78.51879,27.81386],[78.51036,27.80209],[78.50255,27.79926],[78.49042,27.80221],[78.48568,27.80634],[78.47437,27.81014],[78.47093,27.80078],[78.47323,27.79896],[78.47564,27.79288],[78.48097,27.79003],[78.47712,27.78344],[78.47845,27.78119],[78.47658,27.7752],[78.48066,27.77275],[78.4811,27.77034],[78.4725,27.7643],[78.47273,27.76178],[78.47799,27.75967],[78.48543,27.75304],[78.48822,27.75414],[78.49177,27.74978],[78.49658,27.74809],[78.50371,27.74165],[78.50726,27.74271],[78.51207,27.74045],[78.52713,27.75277],[78.53367,27.75335],[78.53815,27.76011],[78.53289,27.76684],[78.52748,27.76997],[78.53132,27.7744],[78.54286,27.78349],[78.54745,27.78126],[78.55208,27.78618],[78.55967,27.77937],[78.56083,27.77487],[78.56667,27.768],[78.5714,27.7706],[78.57645,27.76796],[78.57953,27.77128],[78.58515,27.768],[78.5874,27.76941],[78.59217,27.76803],[78.59713,27.77226],[78.59971,27.77125],[78.6036,27.76795],[78.60272,27.76621],[78.60499,27.76275],[78.60171,27.7607],[78.60414,27.75769],[78.6021,27.75522],[78.61214,27.74674],[78.61177,27.74397],[78.61826,27.74545],[78.62932,27.74128],[78.63319,27.74271],[78.63574,27.74111],[78.63944,27.7428],[78.64302,27.74222],[78.6526,27.75014],[78.6613,27.74669],[78.66355,27.7399],[78.67116,27.73425],[78.67891,27.73747],[78.68338,27.74265],[78.6851,27.74124],[78.68755,27.74181],[78.68851,27.73853],[78.69132,27.73668],[78.68705,27.73335],[78.68647,27.72932],[78.69666,27.71427],[78.69325,27.71317],[78.69393,27.70948],[78.69183,27.70728],[78.69623,27.70102],[78.69474,27.69789],[78.69499,27.6909],[78.69718,27.68947],[78.69552,27.68815],[78.69567,27.68536],[78.70047,27.68562],[78.69997,27.6834],[78.70233,27.68211],[78.70229,27.68023],[78.70057,27.6795],[78.70315,27.67539],[78.70815,27.67134],[78.71109,27.67038],[78.71327,27.67186],[78.71405,27.6679],[78.71829,27.67194],[78.7206,27.67192],[78.71912,27.66758],[78.72303,27.66851],[78.72323,27.66577],[78.7253,27.666],[78.7244,27.66412],[78.72776,27.66302],[78.72539,27.65973],[78.73305,27.65308],[78.73485,27.64705],[78.73818,27.64629],[78.73711,27.64224],[78.74048,27.64472],[78.74118,27.64351],[78.74127,27.63403],[78.7432,27.63401],[78.74335,27.63717],[78.74551,27.63751],[78.74875,27.63636],[78.7516,27.63245],[78.76099,27.63097],[78.77164,27.63364],[78.77485,27.63621],[78.77477,27.63293],[78.77726,27.63229],[78.77586,27.63006],[78.78141,27.63228],[78.77984,27.62914],[78.78108,27.62667],[78.7887,27.62766],[78.78896,27.62146],[78.79329,27.62246],[78.79776,27.61716],[78.7995,27.61244],[78.80434,27.60993],[78.80257,27.6079],[78.80465,27.60642],[78.80645,27.6082],[78.80704,27.60556],[78.81091,27.60297],[78.81123,27.60547],[78.82006,27.60419],[78.82093,27.60598],[78.8261,27.60787],[78.82838,27.60209],[78.82776,27.60593],[78.83104,27.60619],[78.84091,27.60154],[78.83895,27.59909],[78.8421,27.59768],[78.8447,27.59804],[78.84491,27.59984],[78.8471,27.60074],[78.8499,27.59958],[78.84915,27.59773],[78.85897,27.59514],[78.85991,27.58778],[78.85797,27.58411],[78.85478,27.58259],[78.85445,27.57846],[78.85811,27.58026],[78.85951,27.57873],[78.86439,27.57815],[78.86682,27.58038],[78.87203,27.58136],[78.87007,27.58763],[78.87323,27.59215],[78.88214,27.58801],[78.8865,27.58765],[78.88916,27.5856],[78.88988,27.58252],[78.89498,27.57887],[78.89379,27.57719],[78.89136,27.57827],[78.89031,27.57434],[78.8931,27.57151],[78.89515,27.57217],[78.89692,27.56857],[78.89385,27.56768],[78.89049,27.56386],[78.89039,27.56213],[78.89367,27.56164],[78.89248,27.55825],[78.88458,27.55855],[78.8865,27.55643],[78.88686,27.55213],[78.89097,27.55074],[78.90286,27.54948],[78.90984,27.55741],[78.91723,27.56187],[78.92077,27.56296],[78.92871,27.55981],[78.94051,27.56919],[78.94832,27.57195],[78.95178,27.57482],[78.95857,27.56237],[78.96811,27.56789],[78.96662,27.5735],[78.96872,27.57307],[78.97233,27.58172],[78.97558,27.58441],[78.96983,27.58901],[78.98214,27.59834],[78.98281,27.60045],[78.9787,27.60264],[78.97971,27.60572],[78.97558,27.61156],[78.97115,27.61558],[78.97031,27.61332],[78.96715,27.61501],[78.97153,27.6224],[78.97458,27.63554],[78.98021,27.63381],[78.99529,27.6473],[79.00021,27.64422],[78.99743,27.64076],[79.00024,27.63723],[78.99818,27.6339],[79.00606,27.62539],[79.00546,27.6195],[79.01377,27.61617],[79.01684,27.61267],[79.01566,27.60992],[79.02268,27.60634],[79.02331,27.60302],[79.02867,27.59839],[79.03025,27.5948],[79.0286,27.59398],[79.03419,27.5885],[79.03145,27.584],[79.04824,27.57616],[79.05079,27.57688],[79.0542,27.57472],[79.05386,27.57082],[79.05565,27.56964],[79.05759,27.57064],[79.0615,27.56787],[79.06378,27.56845],[79.07592,27.55795],[79.07837,27.56119],[79.09298,27.55894],[79.09569,27.56156],[79.09938,27.55969],[79.1068,27.56366],[79.10796,27.56108],[79.11393,27.56223],[79.125,27.5592],[79.13639,27.56447],[79.14285,27.5619],[79.14846,27.56739],[79.15129,27.56766],[79.15423,27.5757],[79.15901,27.57822],[79.16194,27.56762],[79.16553,27.56837],[79.16523,27.57501],[79.1801,27.56512],[79.18553,27.57016],[79.1921,27.56294],[79.19939,27.5646],[79.20277,27.56352],[79.21486,27.57834],[79.21087,27.57859],[79.20351,27.58252],[79.19914,27.57912],[79.175,27.58032],[79.17027,27.58439],[79.17691,27.59572],[79.1835,27.59955],[79.18611,27.60475],[79.18125,27.61723],[79.1772,27.61391],[79.17188,27.61542],[79.16593,27.61449],[79.15461,27.62471],[79.14164,27.62684],[79.13715,27.63041],[79.13317,27.62984],[79.12838,27.63479],[79.13737,27.64238],[79.13227,27.65485],[79.13513,27.66062],[79.13303,27.66174],[79.13539,27.66782],[79.12994,27.67903],[79.1227,27.67919],[79.12021,27.68261],[79.1205,27.68455],[79.13008,27.69089],[79.13285,27.69981],[79.13616,27.70447],[79.14767,27.70188],[79.15123,27.69907],[79.1573,27.70495],[79.15821,27.7024],[79.16503,27.707],[79.17067,27.70469],[79.18143,27.71533],[79.19607,27.75018],[79.18817,27.76034],[79.18703,27.76473],[79.17544,27.7705],[79.17043,27.77106],[79.17424,27.77563],[79.16996,27.77685],[79.16536,27.78246],[79.16394,27.7969],[79.14177,27.81419],[79.13375,27.81406],[79.14734,27.82912],[79.14283,27.83152],[79.14342,27.83276],[79.13859,27.83821],[79.13661,27.83702],[79.12865,27.84096],[79.12058,27.84773],[79.1151,27.84436],[79.11007,27.83824],[79.09709,27.82991],[79.08935,27.83465],[79.07329,27.83907],[79.07275,27.84188],[79.06994,27.84383],[79.06284,27.8411],[79.06508,27.83731],[79.05848,27.83439],[79.03263,27.83717],[79.02098,27.84207],[79.01092,27.83847],[79.0109,27.84102],[79.00086,27.83782],[79.00952,27.85112],[79.01268,27.85186],[79.01603,27.8564],[79.00392,27.86142],[78.98419,27.87417],[78.97146,27.86481],[78.96374,27.84718],[78.95021,27.85312],[78.93539,27.845],[78.92929,27.8502],[78.91751,27.85005],[78.92054,27.85309],[78.91837,27.85332],[78.91873,27.85788],[78.91692,27.8596],[78.91978,27.8625],[78.92041,27.87511],[78.91029,27.88397],[78.88761,27.91597],[78.86878,27.90974],[78.86227,27.91231],[78.85485,27.91694],[78.84634,27.92851],[78.82135,27.93976],[78.81475,27.95201],[78.80302,27.95557],[78.79887,27.95095],[78.78773,27.95335],[78.78697,27.95173],[78.77747,27.95534],[78.77759,27.95889],[78.77561,27.96083],[78.76571,27.96309],[78.75737,27.94854],[78.74948,27.95709],[78.74538,27.95772],[78.74162,27.95558],[78.73477,27.96251],[78.73123,27.96044],[78.72229,27.96363],[78.71743,27.9694],[78.71788,27.97359],[78.7165,27.97573],[78.71161,27.97666],[78.70513,27.98451],[78.7036,27.99326],[78.69458,27.99784],[78.67018,28.00012],[78.66017,28.00275],[78.65347,28.0079],[78.65901,28.0106],[78.65988,28.01319],[78.66605,28.01596],[78.6534,28.01444],[78.65535,28.01241],[78.6505,28.01231],[78.6522,28.01382],[78.6457,28.01746]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"634","area_level":"District","area_name":"Tiruppur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.2341,11.35127],[77.23157,11.35257],[77.22879,11.35232],[77.22858,11.35103],[77.21812,11.35218],[77.21761,11.35],[77.21704,11.35132],[77.21474,11.34956],[77.21064,11.34948],[77.20836,11.34438],[77.19894,11.34331],[77.1966,11.33867],[77.18801,11.34174],[77.17873,11.34206],[77.17451,11.33253],[77.17607,11.3306],[77.17909,11.33066],[77.18066,11.32444],[77.18305,11.32219],[77.1825,11.31384],[77.17765,11.31721],[77.16768,11.31723],[77.15904,11.33229],[77.14708,11.33622],[77.14786,11.33101],[77.15186,11.32971],[77.14894,11.32494],[77.15111,11.31854],[77.15057,11.30628],[77.14418,11.30488],[77.13838,11.30719],[77.13734,11.30563],[77.13468,11.30621],[77.13397,11.30797],[77.13083,11.30606],[77.12634,11.30798],[77.12592,11.30277],[77.11896,11.3026],[77.11874,11.29898],[77.11682,11.29846],[77.11712,11.29462],[77.11963,11.28982],[77.12332,11.28923],[77.12331,11.28701],[77.12627,11.2874],[77.12718,11.28533],[77.13097,11.2859],[77.13451,11.28296],[77.13723,11.28306],[77.13875,11.28608],[77.13915,11.27973],[77.14058,11.27982],[77.14384,11.2873],[77.14807,11.28599],[77.14764,11.2822],[77.15062,11.28122],[77.15127,11.27894],[77.15346,11.27955],[77.15344,11.27824],[77.15473,11.27841],[77.15505,11.28118],[77.15621,11.28127],[77.15604,11.27927],[77.16244,11.281],[77.16255,11.2835],[77.17008,11.28328],[77.16495,11.27018],[77.16278,11.25211],[77.1659,11.24428],[77.1595,11.24326],[77.15922,11.23149],[77.15619,11.23066],[77.15371,11.22288],[77.14923,11.22301],[77.14889,11.21868],[77.14647,11.21875],[77.14827,11.21447],[77.14503,11.20717],[77.14627,11.20387],[77.14798,11.20394],[77.15025,11.20055],[77.15391,11.20039],[77.15887,11.19739],[77.16098,11.168],[77.17101,11.16842],[77.17195,11.1672],[77.17345,11.16823],[77.17819,11.16246],[77.17907,11.1635],[77.18231,11.16195],[77.18123,11.16063],[77.17889,11.16125],[77.17649,11.1567],[77.17607,11.15248],[77.17872,11.14962],[77.17663,11.14484],[77.17537,11.14479],[77.17542,11.14208],[77.17307,11.14058],[77.17316,11.13818],[77.18085,11.13809],[77.18394,11.13949],[77.18652,11.14432],[77.18554,11.14915],[77.18958,11.15046],[77.19144,11.14751],[77.19515,11.14727],[77.19581,11.14423],[77.20213,11.14343],[77.20556,11.13832],[77.20672,11.14043],[77.20869,11.14057],[77.20996,11.1378],[77.21225,11.13794],[77.20954,11.13658],[77.20963,11.13475],[77.21249,11.13503],[77.21109,11.13297],[77.2131,11.13185],[77.21352,11.12674],[77.22505,11.12496],[77.23157,11.12668],[77.2357,11.13981],[77.23916,11.13774],[77.24221,11.13803],[77.25137,11.12897],[77.25355,11.12173],[77.26457,11.11063],[77.26403,11.10642],[77.25126,11.10967],[77.24636,11.1055],[77.23411,11.10339],[77.23174,11.09991],[77.21684,11.0901],[77.20535,11.08884],[77.197,11.08258],[77.19519,11.07883],[77.18008,11.07311],[77.16616,11.0649],[77.16609,11.06024],[77.17715,11.04589],[77.17896,11.0358],[77.17797,11.02892],[77.17577,11.02436],[77.17402,11.01206],[77.17138,11.01143],[77.17158,11.00934],[77.16747,11.00809],[77.16747,11.00461],[77.16497,11.00217],[77.15378,10.99831],[77.15918,10.99071],[77.16994,10.96871],[77.1697,10.95679],[77.17375,10.94596],[77.1779,10.94202],[77.17366,10.93946],[77.18184,10.92057],[77.18348,10.92211],[77.18628,10.92173],[77.18869,10.91845],[77.19893,10.92023],[77.20344,10.91228],[77.2071,10.91083],[77.20787,10.90582],[77.21099,10.90227],[77.22088,10.9009],[77.23683,10.90722],[77.23993,10.90512],[77.24807,10.90465],[77.25104,10.90103],[77.256,10.88874],[77.25779,10.86983],[77.26675,10.85927],[77.2884,10.84809],[77.28899,10.83897],[77.29052,10.83537],[77.29215,10.83509],[77.29015,10.83158],[77.29153,10.82775],[77.29552,10.82691],[77.29903,10.8146],[77.29835,10.81149],[77.29057,10.81161],[77.28599,10.80745],[77.28585,10.80548],[77.2782,10.80274],[77.27591,10.79138],[77.28387,10.78663],[77.25413,10.77639],[77.24806,10.77831],[77.24333,10.77704],[77.23009,10.77741],[77.22518,10.78189],[77.21439,10.78556],[77.21028,10.79093],[77.21529,10.80346],[77.20399,10.80153],[77.19646,10.80272],[77.18473,10.7983],[77.17663,10.79735],[77.17424,10.79731],[77.1718,10.80217],[77.16596,10.79677],[77.16486,10.79295],[77.16122,10.79321],[77.15957,10.78789],[77.16025,10.77923],[77.15665,10.77777],[77.15695,10.77387],[77.1539,10.77178],[77.15276,10.76567],[77.14894,10.76695],[77.14535,10.76544],[77.14479,10.76138],[77.1409,10.76054],[77.14044,10.75523],[77.13761,10.75527],[77.1371,10.75247],[77.13415,10.75013],[77.14245,10.71848],[77.14103,10.71712],[77.14259,10.69573],[77.1413,10.67877],[77.14512,10.65993],[77.14906,10.65559],[77.15255,10.65464],[77.1523,10.65059],[77.17287,10.64384],[77.18114,10.64385],[77.17866,10.63251],[77.17548,10.62673],[77.17274,10.60825],[77.16932,10.60606],[77.17067,10.5997],[77.16628,10.59055],[77.16633,10.58718],[77.16363,10.58732],[77.15798,10.58422],[77.14395,10.58285],[77.12235,10.58511],[77.1152,10.58385],[77.11382,10.58517],[77.1022,10.58599],[77.1007,10.58293],[77.09056,10.58408],[77.09022,10.58119],[77.08541,10.57824],[77.08059,10.57051],[77.0805,10.56622],[77.08286,10.56257],[77.07703,10.55971],[77.07634,10.55117],[77.07374,10.54925],[77.07271,10.54513],[77.07664,10.52999],[77.07338,10.51638],[77.07635,10.51668],[77.07859,10.51486],[77.07716,10.50647],[77.07827,10.50223],[77.07443,10.5021],[77.07407,10.495],[77.06406,10.48741],[77.06259,10.48144],[77.05855,10.47906],[77.05962,10.47357],[77.06332,10.46889],[77.06636,10.46785],[77.06579,10.46572],[77.06894,10.46475],[77.07212,10.46615],[77.0732,10.45949],[77.0707,10.45828],[77.06437,10.44895],[77.0563,10.44474],[77.04965,10.43629],[77.04808,10.43101],[77.04467,10.43051],[77.0418,10.42638],[77.04488,10.42188],[77.0448,10.41483],[77.05728,10.40536],[77.06051,10.40483],[77.07528,10.38832],[77.0794,10.38758],[77.08106,10.38289],[77.08705,10.37744],[77.09171,10.36489],[77.08844,10.36118],[77.08996,10.35087],[77.08666,10.3494],[77.08455,10.34253],[77.07818,10.33736],[77.08236,10.33442],[77.08421,10.32953],[77.0812,10.32197],[77.08836,10.32459],[77.08866,10.31906],[77.092,10.31237],[77.09553,10.309],[77.10172,10.31561],[77.11024,10.31559],[77.12039,10.31796],[77.12879,10.32623],[77.15128,10.33753],[77.16221,10.3489],[77.17662,10.35844],[77.19605,10.35451],[77.19813,10.35673],[77.20206,10.35763],[77.20465,10.35385],[77.20939,10.35302],[77.22262,10.35366],[77.23565,10.35225],[77.23637,10.33889],[77.23305,10.33765],[77.23317,10.33499],[77.22921,10.33065],[77.22817,10.32727],[77.22957,10.32236],[77.22762,10.31995],[77.22775,10.31542],[77.23093,10.31257],[77.23141,10.30842],[77.23528,10.30765],[77.23676,10.301],[77.23982,10.29853],[77.23931,10.29503],[77.26293,10.26333],[77.25719,10.25939],[77.25972,10.23027],[77.26455,10.23233],[77.26475,10.23522],[77.2686,10.23459],[77.26926,10.23704],[77.27316,10.23501],[77.27772,10.23516],[77.27808,10.23648],[77.28016,10.23564],[77.28089,10.23685],[77.28809,10.23186],[77.29678,10.25269],[77.29864,10.25271],[77.30412,10.24418],[77.31054,10.24633],[77.32469,10.26479],[77.32536,10.27019],[77.32855,10.27105],[77.33997,10.26395],[77.3481,10.2634],[77.35137,10.27404],[77.34819,10.28183],[77.34742,10.29013],[77.34132,10.2963],[77.34204,10.30008],[77.3299,10.30963],[77.3313,10.31475],[77.32654,10.32112],[77.32838,10.32529],[77.33486,10.33211],[77.32984,10.33489],[77.32997,10.34114],[77.33607,10.34855],[77.33664,10.35414],[77.32167,10.35406],[77.31567,10.35566],[77.31548,10.3669],[77.31377,10.37205],[77.31729,10.39392],[77.31673,10.40366],[77.32013,10.40672],[77.31931,10.41799],[77.32292,10.42543],[77.31998,10.43396],[77.32715,10.43469],[77.32688,10.43666],[77.3252,10.43633],[77.32581,10.43865],[77.32341,10.43967],[77.32551,10.44439],[77.32314,10.44579],[77.32295,10.44853],[77.32666,10.45291],[77.33226,10.45456],[77.33559,10.45508],[77.34057,10.4528],[77.34461,10.45385],[77.34451,10.44832],[77.35715,10.44485],[77.36573,10.44774],[77.36845,10.44705],[77.37131,10.44935],[77.38508,10.44897],[77.38517,10.46388],[77.38333,10.46919],[77.38532,10.47091],[77.382,10.47484],[77.37963,10.48503],[77.37667,10.48596],[77.37854,10.49392],[77.38544,10.49627],[77.39258,10.49503],[77.39499,10.50007],[77.4017,10.49882],[77.40457,10.50888],[77.40567,10.52212],[77.40537,10.52358],[77.37802,10.52592],[77.37791,10.52926],[77.373,10.52999],[77.36908,10.53926],[77.36796,10.54666],[77.37078,10.55451],[77.37761,10.56107],[77.38108,10.57779],[77.38524,10.58275],[77.38499,10.59136],[77.38829,10.59112],[77.38866,10.59669],[77.39623,10.59789],[77.3958,10.60129],[77.39708,10.60229],[77.39451,10.60529],[77.39826,10.60738],[77.40168,10.61336],[77.40449,10.613],[77.4048,10.61494],[77.40963,10.61875],[77.41281,10.61742],[77.41548,10.62399],[77.41774,10.62556],[77.42769,10.62731],[77.43264,10.63142],[77.44514,10.62965],[77.44911,10.63226],[77.45296,10.63934],[77.45637,10.63827],[77.45815,10.64235],[77.46572,10.64463],[77.47024,10.64445],[77.47286,10.64263],[77.48251,10.65],[77.48538,10.64638],[77.49257,10.64667],[77.49317,10.64468],[77.49727,10.64491],[77.50103,10.64203],[77.50465,10.64256],[77.50354,10.63776],[77.50674,10.62702],[77.51056,10.62662],[77.50976,10.62272],[77.51413,10.61844],[77.51614,10.61295],[77.50729,10.61339],[77.50826,10.60699],[77.51475,10.60559],[77.52852,10.60945],[77.53233,10.6069],[77.5344,10.60854],[77.54284,10.60976],[77.54485,10.6162],[77.54452,10.62592],[77.54595,10.62875],[77.54862,10.62894],[77.5492,10.63897],[77.56144,10.6488],[77.56428,10.64914],[77.56857,10.65746],[77.5701,10.65656],[77.57147,10.65788],[77.57478,10.66338],[77.573,10.66567],[77.58176,10.67721],[77.58007,10.67908],[77.58601,10.68347],[77.59621,10.67591],[77.61693,10.67385],[77.63679,10.66874],[77.64682,10.67108],[77.64723,10.67258],[77.6557,10.67336],[77.65843,10.68289],[77.65687,10.68324],[77.65923,10.69081],[77.65851,10.69249],[77.66158,10.69776],[77.66048,10.70223],[77.6647,10.71627],[77.66844,10.71667],[77.66957,10.71896],[77.67413,10.72016],[77.67292,10.72402],[77.67709,10.72488],[77.67786,10.72659],[77.6824,10.72765],[77.68997,10.73242],[77.68858,10.73474],[77.69359,10.73523],[77.70203,10.7337],[77.70627,10.71597],[77.70683,10.69214],[77.7087,10.68632],[77.70627,10.67784],[77.70264,10.67614],[77.70232,10.66966],[77.69847,10.66243],[77.70981,10.65048],[77.71411,10.64153],[77.7176,10.64238],[77.72306,10.64076],[77.71963,10.63546],[77.72055,10.63123],[77.73029,10.63036],[77.73425,10.6352],[77.74342,10.63694],[77.753,10.6489],[77.75466,10.6518],[77.75355,10.66802],[77.756,10.67179],[77.7584,10.67286],[77.76104,10.67132],[77.76532,10.67429],[77.7676,10.67676],[77.76619,10.67907],[77.78879,10.68524],[77.80803,10.68077],[77.81036,10.68481],[77.80817,10.694],[77.81001,10.69904],[77.81639,10.70332],[77.82462,10.71508],[77.82181,10.73356],[77.82683,10.74718],[77.82576,10.75269],[77.8128,10.75845],[77.79702,10.75243],[77.79547,10.75332],[77.79561,10.7554],[77.7834,10.75775],[77.78123,10.76125],[77.78172,10.76383],[77.77109,10.76715],[77.77796,10.78984],[77.78651,10.78825],[77.79364,10.7903],[77.79855,10.80575],[77.81837,10.79704],[77.82785,10.79755],[77.82847,10.79158],[77.83625,10.79017],[77.8359,10.78679],[77.85493,10.78388],[77.87112,10.77173],[77.87295,10.7757],[77.87794,10.77606],[77.8856,10.77312],[77.89203,10.77381],[77.89299,10.7805],[77.89141,10.79255],[77.88984,10.7936],[77.88507,10.78905],[77.88138,10.78884],[77.87477,10.79148],[77.87144,10.79539],[77.87042,10.80065],[77.87415,10.80814],[77.87553,10.80802],[77.87365,10.82146],[77.87208,10.8215],[77.8718,10.82434],[77.87185,10.83294],[77.87343,10.83391],[77.87121,10.83974],[77.86686,10.8441],[77.86135,10.84815],[77.85995,10.84691],[77.85642,10.84935],[77.84549,10.83692],[77.83991,10.83494],[77.83619,10.83535],[77.83004,10.8411],[77.82072,10.85772],[77.80758,10.85826],[77.79641,10.86595],[77.79406,10.87221],[77.79535,10.87797],[77.78891,10.88608],[77.78595,10.88462],[77.78402,10.87312],[77.7772,10.86953],[77.77494,10.87125],[77.77273,10.87704],[77.77167,10.89349],[77.76084,10.90158],[77.76218,10.92335],[77.76656,10.93506],[77.76864,10.94618],[77.76795,10.95147],[77.77038,10.95124],[77.76908,10.95646],[77.76999,10.96177],[77.7685,10.96673],[77.76494,10.96498],[77.75317,10.96561],[77.75021,10.97652],[77.75111,10.98143],[77.75921,10.97968],[77.76189,10.98542],[77.7813,10.99844],[77.78568,11.00785],[77.7859,11.01249],[77.7897,11.01879],[77.79054,11.02408],[77.78921,11.02484],[77.79191,11.03309],[77.78965,11.03616],[77.78236,11.03897],[77.78228,11.04406],[77.78108,11.04433],[77.78182,11.05094],[77.77687,11.05493],[77.77657,11.05833],[77.76759,11.06226],[77.75504,11.07108],[77.75173,11.07715],[77.74743,11.0776],[77.73717,11.08571],[77.73165,11.08252],[77.73014,11.07665],[77.71336,11.07817],[77.71153,11.0851],[77.70702,11.09154],[77.70414,11.09175],[77.7027,11.09399],[77.6969,11.09617],[77.67349,11.09962],[77.66137,11.10378],[77.65667,11.1082],[77.65446,11.1162],[77.64618,11.11575],[77.63991,11.12338],[77.63239,11.12548],[77.62632,11.12504],[77.62116,11.1272],[77.61355,11.12546],[77.60735,11.1167],[77.60198,11.11475],[77.59871,11.11163],[77.59434,11.11274],[77.58722,11.12125],[77.58423,11.12143],[77.58111,11.11934],[77.57509,11.11934],[77.5668,11.11239],[77.56186,11.11203],[77.55621,11.10822],[77.55193,11.10984],[77.53846,11.10802],[77.53146,11.10394],[77.52414,11.10665],[77.50325,11.10691],[77.5046,11.12543],[77.50082,11.13185],[77.49894,11.14656],[77.49622,11.14308],[77.49453,11.14356],[77.4937,11.14062],[77.48936,11.14053],[77.48528,11.14312],[77.48548,11.14023],[77.48321,11.14002],[77.48133,11.14323],[77.48194,11.14568],[77.48389,11.14657],[77.48412,11.14992],[77.48183,11.15161],[77.48392,11.15317],[77.48514,11.16083],[77.47911,11.15955],[77.47811,11.16344],[77.47592,11.16391],[77.47551,11.16269],[77.47714,11.16241],[77.47575,11.16],[77.47148,11.15996],[77.473,11.16308],[77.46973,11.16485],[77.47363,11.1705],[77.47355,11.17877],[77.47633,11.18493],[77.48794,11.17898],[77.4901,11.18161],[77.51232,11.18303],[77.51353,11.18452],[77.51316,11.19288],[77.51483,11.19863],[77.51628,11.19877],[77.51686,11.20563],[77.5153,11.20688],[77.51421,11.20598],[77.51361,11.19981],[77.51074,11.19846],[77.50702,11.1998],[77.50726,11.20187],[77.50533,11.20109],[77.49904,11.20563],[77.49842,11.20966],[77.5009,11.21131],[77.50199,11.21926],[77.49488,11.22112],[77.49448,11.22246],[77.50023,11.22678],[77.49398,11.23217],[77.49263,11.23046],[77.48895,11.23023],[77.48903,11.23513],[77.48733,11.23461],[77.48615,11.23684],[77.48012,11.23653],[77.47874,11.23932],[77.47508,11.24101],[77.47507,11.24334],[77.47002,11.24697],[77.47012,11.25323],[77.46526,11.25228],[77.46576,11.25712],[77.4632,11.25847],[77.46758,11.26459],[77.46909,11.27009],[77.4673,11.27688],[77.46281,11.27896],[77.46475,11.28393],[77.46092,11.28335],[77.45939,11.28613],[77.45983,11.29027],[77.45635,11.29355],[77.4574,11.29922],[77.45909,11.29918],[77.46022,11.29694],[77.46168,11.2992],[77.45898,11.30078],[77.45916,11.30393],[77.45671,11.30536],[77.45804,11.3071],[77.45261,11.31316],[77.45105,11.3125],[77.45258,11.30721],[77.45454,11.3068],[77.44954,11.30607],[77.4501,11.31],[77.44822,11.31145],[77.44653,11.30839],[77.44388,11.30869],[77.44397,11.30567],[77.439,11.30811],[77.43035,11.31728],[77.42574,11.31965],[77.42316,11.31212],[77.41754,11.31032],[77.40128,11.31567],[77.39611,11.31857],[77.39411,11.3219],[77.38676,11.32207],[77.38414,11.32943],[77.38039,11.33069],[77.37861,11.33941],[77.37394,11.33844],[77.37027,11.34079],[77.36318,11.3415],[77.36656,11.329],[77.36608,11.31713],[77.36208,11.31824],[77.3598,11.31573],[77.33455,11.31676],[77.33378,11.31507],[77.33327,11.30686],[77.33634,11.30304],[77.34527,11.30003],[77.34872,11.28592],[77.34766,11.28236],[77.34475,11.28124],[77.34637,11.27695],[77.34428,11.27202],[77.34226,11.27268],[77.34089,11.26719],[77.33763,11.26628],[77.33504,11.26296],[77.33639,11.25708],[77.33133,11.25678],[77.33145,11.25785],[77.31968,11.26132],[77.31856,11.2604],[77.30323,11.26638],[77.30154,11.26939],[77.29559,11.27276],[77.30771,11.2745],[77.31438,11.28197],[77.30072,11.28603],[77.3,11.28486],[77.29188,11.28654],[77.28632,11.29237],[77.28857,11.30195],[77.28725,11.31375],[77.28818,11.32234],[77.29059,11.32818],[77.29297,11.33001],[77.29302,11.33252],[77.29105,11.33272],[77.2921,11.33611],[77.28877,11.33855],[77.28894,11.34375],[77.28711,11.34363],[77.28683,11.3417],[77.28771,11.33319],[77.28175,11.33441],[77.27923,11.33095],[77.27612,11.32987],[77.27235,11.32412],[77.27009,11.32445],[77.26888,11.32098],[77.26762,11.3215],[77.26698,11.31923],[77.26458,11.31889],[77.26258,11.31537],[77.26043,11.31595],[77.25855,11.31325],[77.254,11.3142],[77.25388,11.31077],[77.25035,11.31141],[77.25091,11.31828],[77.2541,11.32051],[77.25201,11.32246],[77.25239,11.32551],[77.24943,11.32619],[77.25124,11.32879],[77.24898,11.32956],[77.24692,11.32824],[77.24776,11.32489],[77.23833,11.32238],[77.24081,11.32071],[77.23753,11.3119],[77.24153,11.30514],[77.23244,11.30534],[77.2209,11.30248],[77.21913,11.30377],[77.21631,11.29785],[77.20343,11.29997],[77.20182,11.30334],[77.20432,11.30994],[77.2181,11.30587],[77.22124,11.30724],[77.22151,11.31],[77.21935,11.31026],[77.21982,11.31246],[77.22464,11.31484],[77.22646,11.31756],[77.22897,11.31524],[77.23652,11.31406],[77.23705,11.32185],[77.23513,11.32498],[77.23682,11.32568],[77.23469,11.32804],[77.23454,11.33111],[77.23178,11.33312],[77.23188,11.33527],[77.22767,11.33581],[77.22744,11.33726],[77.22434,11.33754],[77.22418,11.33921],[77.22153,11.34021],[77.22336,11.34292],[77.22585,11.34162],[77.22883,11.34608],[77.23477,11.3482],[77.2341,11.35127]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"635","area_level":"District","area_name":"Yadgir","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.07126,16.94513],[77.07258,16.95272],[77.06325,16.95374],[77.06567,16.94933],[77.06289,16.94536],[77.06067,16.94443],[77.05836,16.94658],[77.05693,16.93936],[77.05233,16.93788],[77.04672,16.93236],[77.04446,16.92618],[77.0411,16.92303],[77.03087,16.92524],[77.02345,16.92484],[77.01953,16.92744],[77.02001,16.91578],[77.0176,16.89862],[77.02782,16.89505],[77.02799,16.89355],[77.03385,16.89333],[77.03388,16.88381],[77.04024,16.88319],[77.04094,16.88073],[77.04277,16.88073],[77.04139,16.86997],[77.03022,16.86909],[77.03028,16.86761],[77.01969,16.86744],[77.00696,16.85785],[77.00078,16.85978],[76.97987,16.86143],[76.97838,16.85462],[76.98323,16.83988],[76.99515,16.83731],[76.99406,16.83308],[76.99286,16.83299],[76.99062,16.81222],[76.98082,16.80975],[76.95748,16.8217],[76.9512,16.82768],[76.94437,16.83107],[76.92669,16.83045],[76.92248,16.82654],[76.91953,16.81788],[76.91543,16.81595],[76.91073,16.81659],[76.90674,16.82194],[76.90372,16.83038],[76.90167,16.85468],[76.90558,16.85857],[76.91438,16.86071],[76.92063,16.87001],[76.9157,16.8718],[76.91347,16.87543],[76.90627,16.87591],[76.90677,16.87723],[76.90152,16.8782],[76.90146,16.89256],[76.89306,16.89503],[76.8705,16.89588],[76.87021,16.89261],[76.85683,16.8912],[76.85458,16.87883],[76.85293,16.87672],[76.84949,16.87649],[76.84316,16.87055],[76.84132,16.86645],[76.83813,16.86856],[76.83387,16.86768],[76.83098,16.86912],[76.82883,16.87302],[76.81638,16.8737],[76.81315,16.85855],[76.81122,16.85867],[76.81071,16.85618],[76.80479,16.85026],[76.80198,16.84918],[76.79106,16.84998],[76.78891,16.83729],[76.75993,16.84413],[76.75999,16.84141],[76.7634,16.84054],[76.75867,16.83576],[76.75806,16.82896],[76.75426,16.82337],[76.75462,16.82035],[76.74807,16.82027],[76.74471,16.81585],[76.74514,16.77886],[76.74755,16.75538],[76.74372,16.75097],[76.73483,16.75129],[76.72888,16.75388],[76.72904,16.77233],[76.73643,16.77354],[76.7349,16.77874],[76.72781,16.78077],[76.72475,16.78474],[76.7194,16.77793],[76.70923,16.78055],[76.70938,16.79249],[76.70448,16.79179],[76.70204,16.79298],[76.70206,16.78946],[76.69948,16.79064],[76.69761,16.78645],[76.67936,16.78472],[76.67554,16.76516],[76.66079,16.76701],[76.65315,16.755],[76.65271,16.75097],[76.65475,16.73769],[76.65779,16.73199],[76.65873,16.72508],[76.64404,16.73335],[76.63543,16.73507],[76.63547,16.7458],[76.623,16.74249],[76.62355,16.76553],[76.60375,16.76718],[76.5822,16.76566],[76.58047,16.75844],[76.56952,16.75341],[76.55355,16.75311],[76.55286,16.75121],[76.54844,16.75111],[76.54724,16.7479],[76.5164,16.75107],[76.51021,16.74476],[76.50641,16.74443],[76.50331,16.74117],[76.50212,16.73375],[76.5029,16.72298],[76.48133,16.71216],[76.47369,16.71052],[76.4608,16.71114],[76.46195,16.7083],[76.45827,16.70867],[76.45214,16.71414],[76.44111,16.70871],[76.4381,16.70339],[76.43105,16.70091],[76.42898,16.69727],[76.42534,16.69551],[76.42651,16.68604],[76.42114,16.67859],[76.42022,16.67262],[76.41772,16.67137],[76.4063,16.65661],[76.40345,16.64867],[76.40335,16.63928],[76.40494,16.62519],[76.40906,16.61892],[76.40986,16.61272],[76.41503,16.60544],[76.41556,16.59881],[76.41327,16.59021],[76.4158,16.59019],[76.42129,16.57397],[76.42286,16.57334],[76.42245,16.5687],[76.42398,16.56807],[76.42157,16.55874],[76.42278,16.55085],[76.43399,16.51884],[76.43278,16.50478],[76.42983,16.4986],[76.43245,16.45051],[76.43478,16.4359],[76.40307,16.43292],[76.40303,16.43453],[76.39029,16.43804],[76.38524,16.4256],[76.35753,16.42224],[76.35455,16.42214],[76.35052,16.42683],[76.33212,16.42696],[76.3305,16.42524],[76.33289,16.42285],[76.33352,16.41638],[76.33055,16.40963],[76.33209,16.40718],[76.33865,16.4059],[76.33604,16.40156],[76.33464,16.39335],[76.33191,16.39117],[76.32576,16.39596],[76.32092,16.39633],[76.31699,16.39419],[76.3147,16.39682],[76.31193,16.39562],[76.31046,16.3967],[76.30544,16.38288],[76.30477,16.37709],[76.30828,16.37016],[76.30973,16.36127],[76.31141,16.36148],[76.31316,16.35671],[76.31423,16.34539],[76.30567,16.34587],[76.30352,16.34034],[76.29218,16.33465],[76.29157,16.3324],[76.29235,16.32541],[76.29496,16.32437],[76.29515,16.32034],[76.30283,16.31897],[76.29803,16.29874],[76.29964,16.28323],[76.3127,16.28669],[76.32013,16.28696],[76.32017,16.28208],[76.33836,16.27943],[76.34176,16.27847],[76.34136,16.27744],[76.34778,16.27768],[76.34794,16.25785],[76.34612,16.24968],[76.35276,16.23543],[76.34906,16.23017],[76.34953,16.22192],[76.34739,16.21572],[76.33364,16.19887],[76.33148,16.19404],[76.33451,16.1938],[76.3514,16.20054],[76.35573,16.20628],[76.36131,16.2073],[76.36871,16.21797],[76.37469,16.21956],[76.37749,16.22296],[76.38602,16.22534],[76.38727,16.22755],[76.39552,16.23172],[76.39766,16.23655],[76.4065,16.23928],[76.41577,16.2455],[76.41914,16.24905],[76.41451,16.25052],[76.41664,16.25299],[76.42861,16.26021],[76.43674,16.26309],[76.44412,16.27028],[76.45451,16.27535],[76.45974,16.27972],[76.46722,16.28201],[76.47379,16.2895],[76.48211,16.2943],[76.49222,16.29853],[76.50843,16.29907],[76.51781,16.30223],[76.54081,16.31485],[76.55263,16.31935],[76.56097,16.32667],[76.56816,16.32988],[76.58327,16.33142],[76.5901,16.33874],[76.59986,16.34122],[76.61125,16.34161],[76.63226,16.35606],[76.65024,16.36097],[76.65215,16.36418],[76.65389,16.36361],[76.66593,16.37355],[76.68701,16.38261],[76.70159,16.39226],[76.73406,16.40651],[76.74427,16.40956],[76.75044,16.42044],[76.76079,16.42864],[76.78549,16.41776],[76.82886,16.42577],[76.84101,16.43044],[76.84826,16.43487],[76.85445,16.44129],[76.86193,16.45473],[76.86471,16.45683],[76.8659,16.46683],[76.86455,16.4758],[76.86276,16.47859],[76.86322,16.48257],[76.87073,16.48974],[76.88225,16.49238],[76.90632,16.48476],[76.91183,16.48489],[76.93052,16.49578],[76.9412,16.49962],[76.95646,16.50319],[76.97133,16.50375],[76.9734,16.50565],[76.97656,16.51665],[76.96965,16.53441],[76.96805,16.54458],[76.97059,16.55419],[76.97407,16.55898],[76.97844,16.56092],[76.98522,16.56205],[76.99431,16.56019],[77.00741,16.55003],[77.0101,16.54276],[77.00537,16.52192],[77.0053,16.51556],[77.01322,16.49958],[77.02558,16.5016],[77.04397,16.5183],[77.0536,16.52087],[77.05764,16.51978],[77.06873,16.50757],[77.08696,16.49898],[77.09215,16.49345],[77.09766,16.49373],[77.10328,16.48898],[77.1228,16.48166],[77.14301,16.47993],[77.15606,16.47265],[77.16411,16.46016],[77.16507,16.45092],[77.1622,16.44526],[77.17334,16.43258],[77.20419,16.42574],[77.20763,16.42382],[77.24149,16.41802],[77.24788,16.4156],[77.26199,16.40477],[77.26735,16.4037],[77.28821,16.4087],[77.27628,16.42444],[77.26895,16.43046],[77.26207,16.45184],[77.24441,16.46331],[77.23576,16.47274],[77.23977,16.47625],[77.24719,16.47769],[77.25073,16.47493],[77.26604,16.4725],[77.294,16.47667],[77.29932,16.48791],[77.29871,16.49616],[77.3203,16.49222],[77.32357,16.48684],[77.32956,16.48591],[77.34309,16.48793],[77.34439,16.48694],[77.34637,16.49037],[77.35143,16.49106],[77.3547,16.48878],[77.36901,16.48867],[77.37007,16.50458],[77.37272,16.50966],[77.3791,16.51455],[77.39058,16.51607],[77.39583,16.52008],[77.40221,16.52152],[77.41689,16.5173],[77.41912,16.52238],[77.41902,16.54892],[77.41045,16.549],[77.40376,16.55119],[77.40418,16.55418],[77.39996,16.55573],[77.3975,16.56476],[77.39262,16.56399],[77.39287,16.56997],[77.40001,16.56752],[77.40359,16.57181],[77.40565,16.57186],[77.41178,16.57086],[77.41537,16.56752],[77.42149,16.56824],[77.4279,16.57289],[77.43085,16.57887],[77.43971,16.58715],[77.46222,16.58548],[77.46483,16.59242],[77.46212,16.59721],[77.46391,16.59921],[77.4673,16.59854],[77.4678,16.60976],[77.45819,16.61071],[77.45365,16.61675],[77.45616,16.62299],[77.46392,16.62824],[77.46438,16.6325],[77.46825,16.63595],[77.47086,16.64375],[77.47611,16.65011],[77.47291,16.6528],[77.4624,16.65427],[77.46143,16.65112],[77.45702,16.64968],[77.45649,16.64681],[77.44436,16.63913],[77.44158,16.6411],[77.43434,16.64138],[77.43434,16.64336],[77.4386,16.64533],[77.42972,16.6562],[77.41901,16.65844],[77.41886,16.66857],[77.42817,16.6682],[77.43455,16.67098],[77.44255,16.66985],[77.44423,16.67569],[77.44658,16.67607],[77.44772,16.67931],[77.4639,16.6763],[77.46996,16.68773],[77.46989,16.7056],[77.47139,16.7062],[77.47116,16.71178],[77.47405,16.71656],[77.46381,16.71917],[77.46296,16.71797],[77.46133,16.719],[77.45779,16.71594],[77.45216,16.7196],[77.44718,16.72073],[77.44613,16.71649],[77.44198,16.71703],[77.44123,16.71312],[77.43846,16.71168],[77.4328,16.7173],[77.42767,16.71663],[77.42602,16.72114],[77.42607,16.72287],[77.43097,16.72312],[77.43036,16.72637],[77.42832,16.7266],[77.42696,16.72891],[77.4298,16.7348],[77.4333,16.73669],[77.44315,16.76251],[77.43788,16.77471],[77.43772,16.78337],[77.4395,16.78913],[77.44107,16.78622],[77.46719,16.78045],[77.4745,16.78124],[77.4765,16.78837],[77.47339,16.78921],[77.47469,16.7931],[77.47426,16.80232],[77.4657,16.80592],[77.46646,16.80832],[77.46244,16.81374],[77.46324,16.82221],[77.45708,16.83018],[77.45948,16.83285],[77.46406,16.85059],[77.46001,16.87468],[77.46036,16.88475],[77.44665,16.8861],[77.42504,16.88513],[77.41112,16.87469],[77.40327,16.88415],[77.40143,16.8832],[77.40178,16.89669],[77.4056,16.89881],[77.40646,16.90188],[77.40408,16.90204],[77.40514,16.89972],[77.40264,16.8998],[77.40086,16.90224],[77.40187,16.90306],[77.39575,16.90332],[77.3936,16.89981],[77.39394,16.89743],[77.3917,16.8969],[77.38943,16.89117],[77.38796,16.89223],[77.38906,16.89638],[77.38466,16.89848],[77.38404,16.89413],[77.38211,16.8958],[77.37655,16.8946],[77.37666,16.89792],[77.3729,16.89914],[77.37139,16.89766],[77.36578,16.90459],[77.36065,16.90528],[77.35509,16.90862],[77.35162,16.908],[77.35083,16.91057],[77.34836,16.91201],[77.34172,16.93418],[77.33962,16.93057],[77.33601,16.92986],[77.31867,16.93644],[77.31706,16.93218],[77.31282,16.93061],[77.31137,16.92741],[77.31075,16.92911],[77.29497,16.9324],[77.28948,16.93723],[77.28906,16.93351],[77.27776,16.93263],[77.27385,16.93027],[77.26302,16.92825],[77.25504,16.9323],[77.2462,16.9329],[77.24484,16.94037],[77.24192,16.9431],[77.23267,16.93905],[77.23164,16.94282],[77.22649,16.94142],[77.21137,16.94492],[77.20813,16.94041],[77.20847,16.93764],[77.20479,16.93804],[77.19938,16.93379],[77.19924,16.93051],[77.19608,16.92675],[77.18402,16.94245],[77.16564,16.93892],[77.16152,16.9308],[77.16021,16.91557],[77.13834,16.91495],[77.12557,16.91795],[77.11915,16.91254],[77.11836,16.90994],[77.11307,16.90688],[77.10877,16.90527],[77.1007,16.90524],[77.09307,16.90659],[77.08786,16.92208],[77.08714,16.92629],[77.0886,16.92924],[77.08517,16.93492],[77.08614,16.93683],[77.0839,16.93621],[77.0789,16.94193],[77.07581,16.9427],[77.07358,16.93981],[77.07144,16.93969],[77.07126,16.94513]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"636","area_level":"District","area_name":"Bijapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.59609,19.34215],[80.58994,19.3523],[80.59084,19.3577],[80.58822,19.37026],[80.5918,19.37591],[80.58096,19.39789],[80.57508,19.40248],[80.56066,19.39784],[80.55448,19.39062],[80.54417,19.38388],[80.53843,19.37779],[80.52033,19.34777],[80.50681,19.34242],[80.49574,19.34323],[80.48834,19.34177],[80.48149,19.33699],[80.47705,19.32992],[80.47035,19.31175],[80.46303,19.30092],[80.45736,19.28834],[80.45473,19.27499],[80.44603,19.26417],[80.42987,19.25408],[80.39847,19.2474],[80.39359,19.24501],[80.38631,19.233],[80.38391,19.21591],[80.38511,19.21151],[80.3918,19.20263],[80.39435,19.19637],[80.39472,19.19063],[80.39314,19.18662],[80.38524,19.17905],[80.34789,19.16012],[80.34778,19.15236],[80.34068,19.14621],[80.33308,19.14552],[80.32743,19.13511],[80.33,19.13272],[80.33123,19.12795],[80.33068,19.12049],[80.33621,19.11185],[80.33962,19.10011],[80.32792,19.09505],[80.33114,19.08135],[80.32892,19.07591],[80.32967,19.07011],[80.31996,19.06588],[80.30726,19.05585],[80.30028,19.05239],[80.29651,19.04772],[80.29866,19.04024],[80.30296,19.03471],[80.30506,19.02686],[80.30269,19.02156],[80.29218,19.00983],[80.27382,18.99444],[80.27393,18.96651],[80.26939,18.95017],[80.26917,18.94427],[80.27473,18.93135],[80.29979,18.91112],[80.3155,18.88949],[80.32619,18.8809],[80.33524,18.86865],[80.35056,18.84467],[80.35346,18.8341],[80.35359,18.82221],[80.35035,18.81484],[80.3418,18.8124],[80.323,18.79897],[80.31401,18.79993],[80.30599,18.79794],[80.29994,18.79445],[80.29149,18.78347],[80.28845,18.77738],[80.28837,18.77378],[80.278,18.76732],[80.27394,18.76551],[80.26217,18.7701],[80.25618,18.76984],[80.2477,18.7642],[80.24512,18.76086],[80.24475,18.75661],[80.25974,18.74232],[80.27004,18.72561],[80.28361,18.71751],[80.28649,18.71143],[80.30072,18.69214],[80.30643,18.68137],[80.31867,18.64215],[80.32749,18.63538],[80.33102,18.62821],[80.3342,18.61338],[80.3463,18.59528],[80.34978,18.59379],[80.35563,18.59464],[80.36215,18.59915],[80.36295,18.60323],[80.36616,18.60706],[80.37516,18.61066],[80.37827,18.60891],[80.38845,18.59666],[80.39415,18.60061],[80.39585,18.60493],[80.40914,18.60979],[80.42,18.6104],[80.42241,18.61512],[80.42762,18.61288],[80.43039,18.61646],[80.45612,18.62936],[80.46554,18.62394],[80.47752,18.62584],[80.47917,18.62873],[80.48826,18.63109],[80.5016,18.62157],[80.51466,18.61933],[80.51883,18.61431],[80.51929,18.60865],[80.52813,18.60266],[80.53074,18.59894],[80.53525,18.59074],[80.53451,18.58835],[80.54228,18.58691],[80.55643,18.57974],[80.56749,18.57125],[80.57141,18.56468],[80.59096,18.5579],[80.59991,18.55304],[80.61064,18.54237],[80.6185,18.52767],[80.62276,18.52856],[80.63109,18.5219],[80.63757,18.52253],[80.64094,18.51151],[80.63685,18.50702],[80.63721,18.50435],[80.6513,18.4859],[80.65531,18.47586],[80.67334,18.46656],[80.67873,18.46077],[80.6861,18.45826],[80.68806,18.44736],[80.69576,18.44457],[80.70172,18.44459],[80.70531,18.43986],[80.69824,18.43756],[80.6962,18.42473],[80.69895,18.42143],[80.71827,18.40973],[80.72083,18.41104],[80.72286,18.41518],[80.73487,18.41284],[80.73217,18.40122],[80.71968,18.3908],[80.72276,18.38456],[80.7294,18.37884],[80.73023,18.37592],[80.7269,18.36913],[80.7315,18.35491],[80.74214,18.3411],[80.74765,18.32996],[80.74872,18.30892],[80.75772,18.30191],[80.75874,18.2993],[80.75683,18.29506],[80.75949,18.28987],[80.76186,18.28823],[80.76914,18.28763],[80.77548,18.2782],[80.78063,18.26605],[80.78983,18.26412],[80.79415,18.25963],[80.79424,18.25248],[80.79265,18.24945],[80.77678,18.24285],[80.7372,18.22209],[80.73682,18.17733],[80.74497,18.17033],[80.77544,18.16674],[80.79911,18.16817],[80.81326,18.18019],[80.81747,18.18911],[80.82407,18.19104],[80.8226,18.22411],[80.82359,18.23608],[80.83672,18.23892],[80.84343,18.23244],[80.86052,18.23199],[80.86594,18.23013],[80.87261,18.21058],[80.87097,18.20479],[80.86391,18.20265],[80.85521,18.20416],[80.85291,18.202],[80.85854,18.18645],[80.85708,18.17442],[80.8604,18.16139],[80.86016,18.14786],[80.86545,18.14145],[80.86667,18.13692],[80.89108,18.13598],[80.91417,18.14117],[80.9399,18.15543],[80.94164,18.15662],[80.94236,18.16038],[80.95162,18.16366],[80.95766,18.17355],[80.97903,18.17541],[80.9788,18.16511],[81.00899,18.16958],[81.00825,18.16133],[81.01837,18.1615],[81.02614,18.15654],[81.03368,18.15634],[81.03475,18.16193],[81.05173,18.17018],[81.05996,18.17116],[81.06563,18.18192],[81.07389,18.1881],[81.07616,18.19231],[81.06872,18.19764],[81.06786,18.20802],[81.06817,18.21691],[81.07387,18.22175],[81.07363,18.23151],[81.06603,18.23511],[81.06404,18.23869],[81.06659,18.24031],[81.06076,18.24953],[81.04451,18.25517],[81.05205,18.26711],[81.05276,18.27316],[81.05743,18.2809],[81.05705,18.29255],[81.06514,18.29603],[81.06243,18.30369],[81.05669,18.30717],[81.05984,18.31185],[81.05936,18.31355],[81.054,18.3192],[81.04805,18.32232],[81.04783,18.32936],[81.04478,18.33044],[81.04296,18.33852],[81.04045,18.34171],[81.02918,18.34142],[81.02449,18.33763],[81.02105,18.33912],[81.01558,18.33884],[81.00362,18.34538],[80.9984,18.34577],[80.99446,18.34834],[80.98844,18.34671],[80.98046,18.34769],[80.96926,18.35673],[80.95846,18.36881],[80.95389,18.36791],[80.95228,18.36556],[80.94992,18.36651],[80.94513,18.36174],[80.93596,18.36153],[80.9321,18.36521],[80.93323,18.36656],[80.93179,18.3715],[80.93026,18.37172],[80.92993,18.37378],[80.92696,18.37363],[80.92627,18.37676],[80.92282,18.37901],[80.9176,18.37746],[80.91149,18.37815],[80.92341,18.39297],[80.93139,18.39286],[80.93604,18.39741],[80.93828,18.40287],[80.94355,18.39893],[80.94479,18.40053],[80.94695,18.40013],[80.94824,18.40287],[80.95142,18.40176],[80.9553,18.40472],[80.95629,18.40889],[80.95975,18.40922],[80.96105,18.41546],[80.96484,18.41714],[80.96685,18.41597],[80.97121,18.41894],[80.97702,18.41911],[80.99994,18.44114],[81.0042,18.44971],[81.01905,18.46579],[81.0221,18.46594],[81.02075,18.47641],[81.02207,18.48693],[81.03319,18.49684],[81.02532,18.5205],[81.03016,18.53118],[81.03366,18.53419],[81.04913,18.53254],[81.05465,18.53453],[81.05918,18.53874],[81.06676,18.5414],[81.07544,18.54837],[81.08718,18.54884],[81.15743,18.53144],[81.17081,18.5421],[81.16935,18.5476],[81.16544,18.55249],[81.18277,18.54107],[81.19577,18.55026],[81.19596,18.55205],[81.19278,18.5558],[81.1949,18.55742],[81.19936,18.58789],[81.19722,18.59356],[81.19345,18.59603],[81.18385,18.59555],[81.17629,18.59406],[81.17473,18.59166],[81.17155,18.59197],[81.16631,18.58859],[81.15934,18.57968],[81.14644,18.5686],[81.15231,18.5893],[81.15038,18.59267],[81.15107,18.59696],[81.14896,18.60001],[81.1511,18.60016],[81.15144,18.60305],[81.15723,18.60503],[81.1627,18.61065],[81.16315,18.61416],[81.16074,18.61584],[81.16394,18.61873],[81.16369,18.62501],[81.16181,18.62676],[81.16229,18.63142],[81.16406,18.63494],[81.16906,18.6352],[81.17883,18.65209],[81.17219,18.65714],[81.17007,18.66204],[81.16322,18.66617],[81.16064,18.68013],[81.16055,18.69083],[81.17637,18.7092],[81.18935,18.73116],[81.19088,18.73614],[81.19587,18.73956],[81.19799,18.74814],[81.19837,18.77182],[81.19576,18.78],[81.19508,18.79134],[81.19234,18.7976],[81.18961,18.80005],[81.18797,18.81648],[81.19709,18.82554],[81.20394,18.83631],[81.20553,18.84163],[81.20472,18.85182],[81.21049,18.86037],[81.21393,18.86888],[81.21446,18.89835],[81.2168,18.90246],[81.22108,18.90433],[81.2251,18.91017],[81.22376,18.91767],[81.22103,18.92186],[81.21228,18.91796],[81.20319,18.92114],[81.19429,18.91598],[81.18634,18.91405],[81.17052,18.9198],[81.17047,18.92895],[81.17295,18.93286],[81.187,18.93655],[81.1914,18.93553],[81.20063,18.93843],[81.219,18.93168],[81.21615,18.94325],[81.21697,18.95266],[81.22427,18.95991],[81.23293,18.96415],[81.23649,18.96785],[81.23023,18.97063],[81.22965,18.973],[81.21838,18.98101],[81.21447,18.98062],[81.20466,18.9861],[81.20347,18.99706],[81.2046,18.99957],[81.20742,19.00066],[81.20643,19.00221],[81.20793,19.00545],[81.21308,19.01099],[81.22288,19.01485],[81.22073,19.01955],[81.21242,19.01821],[81.21154,19.01941],[81.21188,19.02475],[81.21441,19.02756],[81.2113,19.03111],[81.2197,19.04015],[81.22578,19.05069],[81.2195,19.06159],[81.21798,19.07373],[81.212,19.08075],[81.20895,19.09168],[81.21224,19.09985],[81.21154,19.11409],[81.20913,19.12437],[81.27557,19.13413],[81.29515,19.17256],[81.28348,19.1847],[81.28716,19.2166],[81.29196,19.21755],[81.31222,19.19499],[81.31063,19.19274],[81.31149,19.18759],[81.30515,19.18861],[81.29983,19.19354],[81.29663,19.18584],[81.30208,19.16778],[81.31459,19.16159],[81.3156,19.15481],[81.31811,19.15128],[81.32904,19.14904],[81.34096,19.14291],[81.34879,19.15329],[81.3583,19.16049],[81.3635,19.16994],[81.37085,19.17829],[81.38459,19.16901],[81.38853,19.17212],[81.40323,19.1756],[81.41738,19.17377],[81.42686,19.16362],[81.46315,19.13675],[81.46358,19.13925],[81.46919,19.14434],[81.49065,19.13814],[81.49967,19.13903],[81.50061,19.14018],[81.49521,19.14507],[81.49073,19.15612],[81.49395,19.1617],[81.49654,19.16211],[81.49761,19.16451],[81.49742,19.17853],[81.50041,19.18409],[81.4989,19.19053],[81.50212,19.20388],[81.47682,19.21358],[81.47077,19.21216],[81.46499,19.20851],[81.45397,19.19196],[81.45047,19.18899],[81.44073,19.18775],[81.41902,19.19453],[81.4012,19.19158],[81.39863,19.19551],[81.40029,19.19933],[81.39461,19.20252],[81.39307,19.2077],[81.3873,19.20979],[81.38313,19.20915],[81.36944,19.21615],[81.3665,19.22022],[81.36308,19.22018],[81.34393,19.23137],[81.34925,19.22932],[81.3516,19.23016],[81.35483,19.23554],[81.35394,19.24711],[81.36319,19.25015],[81.36682,19.25504],[81.35929,19.26398],[81.3608,19.27202],[81.35653,19.28135],[81.35684,19.2928],[81.3581,19.29485],[81.3633,19.29593],[81.36826,19.29941],[81.37563,19.29949],[81.37797,19.30214],[81.37745,19.30618],[81.37254,19.31248],[81.36356,19.31595],[81.36225,19.32084],[81.35813,19.32332],[81.35393,19.32086],[81.34851,19.32127],[81.34267,19.31889],[81.33709,19.32598],[81.32938,19.3258],[81.3189,19.33315],[81.31665,19.3307],[81.30953,19.33488],[81.30275,19.33425],[81.29748,19.33631],[81.28575,19.33504],[81.28202,19.33162],[81.27414,19.32932],[81.27163,19.32348],[81.26438,19.32545],[81.26246,19.32336],[81.25956,19.32322],[81.25598,19.32676],[81.25397,19.32647],[81.25329,19.3244],[81.24895,19.3243],[81.24764,19.32197],[81.24559,19.32279],[81.24308,19.32156],[81.24108,19.32391],[81.23779,19.32294],[81.23667,19.32057],[81.23153,19.32082],[81.23133,19.3135],[81.22339,19.28883],[81.19451,19.28839],[81.19035,19.27712],[81.18379,19.27384],[81.17626,19.27252],[81.17445,19.27346],[81.1711,19.27122],[81.16769,19.27134],[81.16525,19.27328],[81.16123,19.28253],[81.16106,19.29535],[81.15389,19.29877],[81.15211,19.29698],[81.14116,19.29891],[81.14147,19.27781],[81.14616,19.25956],[81.14238,19.26014],[81.1416,19.25751],[81.13807,19.25622],[81.12926,19.25648],[81.12763,19.25925],[81.11908,19.26173],[81.11575,19.26428],[81.11282,19.27279],[81.10955,19.27528],[81.10473,19.27478],[81.09705,19.27734],[81.0896,19.27517],[81.08455,19.26941],[81.08065,19.2704],[81.07981,19.27368],[81.07728,19.27516],[81.07381,19.27407],[81.07006,19.26965],[81.07173,19.25941],[81.07045,19.25675],[81.07518,19.23813],[81.07893,19.23631],[81.07642,19.23306],[81.07191,19.23143],[81.06641,19.2318],[81.06249,19.22784],[81.05027,19.22783],[81.04313,19.22958],[81.03554,19.22855],[81.0351,19.23145],[81.03288,19.2319],[81.03273,19.23511],[81.02458,19.23941],[81.01694,19.2327],[81.01262,19.23488],[81.0043,19.23556],[80.99956,19.23244],[80.99304,19.23384],[80.96438,19.23403],[80.95522,19.23627],[80.95075,19.25155],[80.95677,19.29183],[80.95231,19.31039],[80.94092,19.32136],[80.92722,19.33125],[80.8532,19.36422],[80.84608,19.35525],[80.83036,19.34818],[80.81007,19.33621],[80.80609,19.32751],[80.79883,19.32662],[80.79567,19.3234],[80.79022,19.3236],[80.77421,19.31358],[80.76861,19.30362],[80.76304,19.29719],[80.75974,19.29584],[80.75914,19.29103],[80.75096,19.28776],[80.74313,19.28902],[80.74229,19.28708],[80.73832,19.28546],[80.72656,19.28718],[80.72169,19.28466],[80.7172,19.28494],[80.71232,19.28186],[80.70417,19.28309],[80.70185,19.2821],[80.69931,19.28474],[80.6957,19.28433],[80.6897,19.28698],[80.68865,19.29517],[80.69315,19.31555],[80.6869,19.32576],[80.68267,19.32933],[80.67313,19.33001],[80.65405,19.32281],[80.64836,19.31572],[80.64699,19.31649],[80.63649,19.31333],[80.63151,19.30717],[80.62329,19.30572],[80.61498,19.30983],[80.61254,19.30952],[80.60789,19.31823],[80.60766,19.32613],[80.59609,19.34215]],[[81.10688,18.99836],[81.10523,19.00242],[81.10747,19.01112],[81.11271,19.01838],[81.11825,19.01471],[81.13946,19.0069],[81.14602,19.00091],[81.15175,19.00118],[81.15121,18.99755],[81.15581,18.99888],[81.16175,18.99687],[81.16263,18.99568],[81.15937,18.99449],[81.15955,18.99084],[81.16317,18.97524],[81.1653,18.9724],[81.16476,18.96972],[81.16739,18.97004],[81.16921,18.96617],[81.16619,18.95975],[81.1682,18.95684],[81.16308,18.95319],[81.15928,18.95305],[81.14872,18.95845],[81.12789,18.96108],[81.12783,18.96525],[81.12129,18.9747],[81.1201,18.97938],[81.11685,18.9825],[81.11793,18.98409],[81.11603,18.98714],[81.11702,18.99099],[81.11462,18.99429],[81.1107,18.99452],[81.11048,18.99623],[81.10688,18.99836]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"637","area_level":"District","area_name":"Narayanpur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.47939,19.72418],[81.47947,19.7271],[81.47678,19.728],[81.47208,19.72734],[81.47214,19.72597],[81.47141,19.72507],[81.46905,19.72428],[81.46721,19.72404],[81.46458,19.72419],[81.46374,19.72183],[81.46081,19.71683],[81.46002,19.71128],[81.45831,19.70421],[81.45709,19.70432],[81.45476,19.70108],[81.46384,19.69696],[81.46654,19.69635],[81.4695,19.6947],[81.47248,19.69353],[81.47706,19.69037],[81.48257,19.6891],[81.48528,19.68807],[81.48558,19.68948],[81.4849,19.69393],[81.48668,19.69574],[81.48786,19.69798],[81.48736,19.70116],[81.48745,19.70236],[81.4862,19.70425],[81.48324,19.70696],[81.48249,19.71054],[81.47986,19.71416],[81.47883,19.71958],[81.47939,19.72418]]],[[[80.91973,19.89247],[80.91843,19.90356],[80.91027,19.91815],[80.88838,19.93855],[80.8647,19.94097],[80.84286,19.94733],[80.82901,19.92305],[80.81942,19.91229],[80.80925,19.90731],[80.79157,19.89512],[80.76552,19.89088],[80.75921,19.87564],[80.75197,19.86975],[80.75186,19.86107],[80.75059,19.85523],[80.74842,19.85304],[80.73591,19.85636],[80.72266,19.84829],[80.72143,19.8461],[80.72454,19.83593],[80.71886,19.831],[80.72327,19.82822],[80.72707,19.8204],[80.7475,19.81621],[80.75292,19.82092],[80.76172,19.82427],[80.75937,19.82692],[80.76156,19.83314],[80.76794,19.83798],[80.77147,19.84307],[80.77532,19.84458],[80.77746,19.84812],[80.77697,19.84375],[80.7813,19.83412],[80.78918,19.82928],[80.8028,19.82999],[80.80929,19.82663],[80.81187,19.82014],[80.80999,19.81735],[80.81188,19.81237],[80.81063,19.81083],[80.79771,19.80942],[80.79675,19.80685],[80.78664,19.80022],[80.78323,19.79159],[80.77781,19.78965],[80.76495,19.79226],[80.75748,19.79129],[80.75783,19.79554],[80.7668,19.80943],[80.76587,19.81125],[80.75762,19.81026],[80.74842,19.80516],[80.74464,19.8077],[80.73634,19.79649],[80.72806,19.79115],[80.72377,19.79011],[80.72245,19.79124],[80.7184,19.78927],[80.71342,19.78562],[80.71063,19.77948],[80.70505,19.77646],[80.70551,19.77056],[80.7026,19.76562],[80.70431,19.76475],[80.70326,19.7609],[80.70668,19.75829],[80.70555,19.75327],[80.7124,19.73734],[80.71613,19.71126],[80.7123,19.71113],[80.71185,19.70793],[80.70983,19.70637],[80.69997,19.71092],[80.69115,19.70295],[80.68173,19.70622],[80.67091,19.70215],[80.67288,19.69895],[80.67425,19.68441],[80.66734,19.65771],[80.66637,19.63799],[80.66262,19.62248],[80.66533,19.61188],[80.67027,19.60932],[80.68847,19.61317],[80.70567,19.61398],[80.71465,19.6167],[80.73034,19.61018],[80.73308,19.6063],[80.74085,19.60623],[80.74588,19.60154],[80.75752,19.59667],[80.76,19.59165],[80.76532,19.59039],[80.76943,19.58667],[80.76703,19.57491],[80.77511,19.56251],[80.78113,19.56375],[80.78944,19.56042],[80.797,19.56248],[80.80633,19.56896],[80.81079,19.5689],[80.81615,19.5712],[80.82396,19.56672],[80.83478,19.56674],[80.83946,19.55941],[80.84065,19.55425],[80.8394,19.54921],[80.8437,19.53845],[80.84967,19.5345],[80.8499,19.52891],[80.85621,19.523],[80.86448,19.52004],[80.86851,19.52177],[80.87314,19.5187],[80.88369,19.52617],[80.8912,19.52051],[80.89496,19.51962],[80.89471,19.50962],[80.89321,19.50727],[80.89428,19.50369],[80.89294,19.5023],[80.89502,19.50079],[80.89768,19.48045],[80.89488,19.46964],[80.88877,19.46052],[80.87537,19.44598],[80.86437,19.44403],[80.85674,19.44604],[80.85345,19.44475],[80.85049,19.44669],[80.84759,19.44539],[80.84242,19.44691],[80.83013,19.44319],[80.82795,19.44014],[80.82306,19.43985],[80.81253,19.43276],[80.79585,19.43226],[80.7956,19.43055],[80.79932,19.42272],[80.80429,19.41946],[80.80447,19.41195],[80.81276,19.40533],[80.81665,19.39715],[80.81706,19.38478],[80.81938,19.38203],[80.82839,19.38008],[80.84185,19.37191],[80.84905,19.36974],[80.85285,19.3639],[80.92722,19.33125],[80.94092,19.32136],[80.95231,19.31039],[80.95677,19.29183],[80.95075,19.25155],[80.95522,19.23627],[80.96438,19.23403],[80.99304,19.23384],[80.99956,19.23244],[81.0043,19.23556],[81.01262,19.23488],[81.01694,19.2327],[81.02458,19.23941],[81.03273,19.23511],[81.03288,19.2319],[81.0351,19.23145],[81.03554,19.22855],[81.04313,19.22958],[81.05027,19.22783],[81.06249,19.22784],[81.06641,19.2318],[81.07191,19.23143],[81.07642,19.23306],[81.07893,19.23631],[81.07554,19.23765],[81.07325,19.24388],[81.06974,19.26649],[81.07041,19.27014],[81.07665,19.27522],[81.07981,19.27368],[81.08065,19.2704],[81.08455,19.26941],[81.0896,19.27517],[81.09705,19.27734],[81.10473,19.27478],[81.10955,19.27528],[81.11282,19.27279],[81.11575,19.26428],[81.11908,19.26173],[81.12796,19.25907],[81.12926,19.25648],[81.13807,19.25622],[81.1416,19.25751],[81.14238,19.26014],[81.14616,19.25956],[81.14147,19.27781],[81.14116,19.29891],[81.15211,19.29698],[81.15389,19.29877],[81.16106,19.29535],[81.16123,19.28253],[81.16525,19.27328],[81.17043,19.27107],[81.17445,19.27346],[81.17626,19.27252],[81.18508,19.27415],[81.19035,19.27712],[81.19451,19.28839],[81.22339,19.28883],[81.23133,19.3135],[81.23133,19.3207],[81.23667,19.32057],[81.23779,19.32294],[81.24108,19.32391],[81.24308,19.32156],[81.24559,19.32279],[81.24736,19.32192],[81.24895,19.3243],[81.25329,19.3244],[81.25397,19.32647],[81.25598,19.32676],[81.25956,19.32322],[81.26246,19.32336],[81.26438,19.32545],[81.27163,19.32348],[81.2743,19.32943],[81.28202,19.33162],[81.28575,19.33504],[81.29748,19.33631],[81.30275,19.33425],[81.30953,19.33488],[81.31665,19.3307],[81.31874,19.33321],[81.32938,19.3258],[81.33745,19.32579],[81.34287,19.31887],[81.34851,19.32127],[81.35393,19.32086],[81.35813,19.32332],[81.35598,19.32668],[81.35922,19.33108],[81.36185,19.3304],[81.36398,19.33261],[81.36932,19.33307],[81.36979,19.33055],[81.37523,19.32944],[81.37943,19.33099],[81.38329,19.32953],[81.38413,19.33472],[81.38622,19.33609],[81.39604,19.33557],[81.39868,19.33403],[81.39336,19.34895],[81.39016,19.36418],[81.38224,19.3623],[81.37844,19.36299],[81.36538,19.37451],[81.36829,19.37733],[81.37001,19.38256],[81.3776,19.38724],[81.3756,19.39616],[81.3766,19.40294],[81.37304,19.40565],[81.37253,19.40947],[81.38103,19.41468],[81.3878,19.41468],[81.39196,19.40892],[81.3891,19.4008],[81.38982,19.39648],[81.38757,19.39195],[81.38855,19.38204],[81.39624,19.37583],[81.40072,19.37467],[81.40518,19.36677],[81.41566,19.36368],[81.42003,19.36586],[81.42811,19.36596],[81.43304,19.37354],[81.44492,19.37429],[81.44924,19.37663],[81.46098,19.37596],[81.46134,19.37309],[81.46353,19.37179],[81.46683,19.37537],[81.46917,19.3745],[81.47156,19.37717],[81.47186,19.38899],[81.46716,19.39387],[81.4719,19.40186],[81.46993,19.40251],[81.46726,19.41017],[81.46506,19.42334],[81.46767,19.43052],[81.46483,19.436],[81.46791,19.45138],[81.47599,19.47224],[81.44314,19.47447],[81.42676,19.48035],[81.4244,19.48248],[81.42154,19.49371],[81.42651,19.50085],[81.44763,19.51221],[81.44911,19.5159],[81.44903,19.52868],[81.44294,19.52801],[81.43973,19.53573],[81.44388,19.55231],[81.44691,19.55482],[81.44845,19.55876],[81.46113,19.569],[81.45663,19.58162],[81.46249,19.59387],[81.46249,19.59866],[81.45856,19.60538],[81.46423,19.61596],[81.46414,19.61896],[81.46058,19.62496],[81.4551,19.6276],[81.45485,19.63702],[81.46365,19.639],[81.47363,19.64653],[81.48897,19.64416],[81.49162,19.64723],[81.49057,19.64841],[81.50909,19.65151],[81.51674,19.66308],[81.49833,19.66045],[81.47692,19.6642],[81.47443,19.66766],[81.47625,19.6717],[81.46841,19.67287],[81.46614,19.67157],[81.46008,19.67558],[81.45146,19.67619],[81.44652,19.67933],[81.44691,19.68734],[81.45138,19.70297],[81.43747,19.71002],[81.43688,19.71404],[81.43073,19.71848],[81.41928,19.72265],[81.41014,19.72346],[81.39879,19.72796],[81.38298,19.72428],[81.37385,19.72954],[81.37077,19.74271],[81.3821,19.7548],[81.38066,19.76146],[81.37696,19.7675],[81.379,19.77158],[81.37338,19.77673],[81.37331,19.77908],[81.36276,19.779],[81.35987,19.77825],[81.35839,19.77466],[81.35564,19.77451],[81.31757,19.77772],[81.30895,19.77903],[81.28883,19.78838],[81.27073,19.76723],[81.24968,19.76663],[81.22566,19.78699],[81.21668,19.79805],[81.18358,19.81045],[81.17978,19.8106],[81.17762,19.80837],[81.17356,19.79793],[81.17073,19.78149],[81.16874,19.78175],[81.15892,19.76454],[81.15774,19.75474],[81.15972,19.7496],[81.18136,19.72759],[81.19183,19.72946],[81.20512,19.71676],[81.18662,19.70338],[81.08525,19.7063],[81.05888,19.74679],[81.05862,19.75081],[81.05066,19.75615],[81.04597,19.75733],[81.0406,19.76201],[81.03179,19.76166],[81.02523,19.76456],[81.01814,19.77636],[81.01425,19.80631],[81.00907,19.81287],[81.00546,19.81519],[80.99011,19.817],[80.98171,19.81484],[80.97655,19.81533],[80.9724,19.8128],[80.96667,19.81464],[80.96033,19.82045],[80.95773,19.82674],[80.95213,19.8278],[80.94956,19.8306],[80.94525,19.83679],[80.94372,19.85834],[80.93764,19.87394],[80.91973,19.89247]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"638","area_level":"District","area_name":"Singrauli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.45024,24.6746],[82.45373,24.68453],[82.45303,24.68854],[82.44051,24.69963],[82.43544,24.70206],[82.42766,24.70214],[82.4155,24.69226],[82.41577,24.68949],[82.4062,24.68112],[82.40868,24.67933],[82.40677,24.67698],[82.41389,24.67017],[82.4115,24.66531],[82.41202,24.6597],[82.41594,24.65631],[82.41625,24.65271],[82.41845,24.65172],[82.41612,24.64526],[82.41776,24.64127],[82.40968,24.63542],[82.409,24.62524],[82.41321,24.62031],[82.41327,24.61647],[82.41081,24.61374],[82.42202,24.59962],[82.42008,24.59481],[82.41715,24.59435],[82.41611,24.5912],[82.4114,24.59454],[82.40414,24.59632],[82.40197,24.59136],[82.36477,24.5972],[82.35559,24.60423],[82.34963,24.6151],[82.34718,24.61663],[82.34433,24.61553],[82.33864,24.62036],[82.33706,24.61895],[82.33617,24.62],[82.32961,24.61843],[82.32197,24.61246],[82.31964,24.6062],[82.31543,24.60782],[82.30011,24.60707],[82.29963,24.60322],[82.31263,24.58682],[82.31709,24.58709],[82.3198,24.59093],[82.32607,24.58132],[82.33793,24.58271],[82.34014,24.58149],[82.34335,24.57758],[82.34568,24.56809],[82.35777,24.56715],[82.36757,24.55856],[82.37936,24.55999],[82.37463,24.55309],[82.37423,24.54926],[82.37109,24.54406],[82.36069,24.53873],[82.35911,24.53467],[82.34398,24.5189],[82.33835,24.50956],[82.32836,24.50691],[82.32182,24.49937],[82.31428,24.49676],[82.30258,24.50243],[82.28958,24.50185],[82.28597,24.49904],[82.28382,24.49306],[82.27789,24.48649],[82.27688,24.48042],[82.27009,24.47892],[82.26293,24.48068],[82.25913,24.47811],[82.25592,24.46597],[82.2482,24.46325],[82.24163,24.46797],[82.23943,24.46781],[82.23736,24.45617],[82.23769,24.44726],[82.23334,24.43969],[82.21783,24.43744],[82.21806,24.44164],[82.20848,24.44193],[82.20213,24.43985],[82.19898,24.43527],[82.19228,24.43388],[82.18893,24.43537],[82.18399,24.43374],[82.17354,24.43481],[82.1709,24.43338],[82.17202,24.4304],[82.18926,24.42357],[82.18812,24.42092],[82.18977,24.41667],[82.19788,24.41135],[82.2013,24.40416],[82.20558,24.39992],[82.20252,24.39057],[82.19541,24.38468],[82.18145,24.38183],[82.16802,24.38283],[82.15639,24.38912],[82.15055,24.38806],[82.15005,24.38554],[82.15691,24.37837],[82.16559,24.36104],[82.16574,24.35807],[82.16356,24.35638],[82.16026,24.35644],[82.15295,24.36054],[82.13878,24.35642],[82.13122,24.36131],[82.11644,24.35843],[82.11129,24.35162],[82.1069,24.33799],[82.10837,24.33426],[82.11643,24.3268],[82.11706,24.32124],[82.11317,24.31836],[82.09945,24.31521],[82.09113,24.30927],[82.06671,24.30099],[82.0599,24.30747],[82.05549,24.30887],[82.0342,24.30416],[82.03237,24.29939],[82.04229,24.28832],[82.04129,24.2811],[82.03217,24.26903],[82.02039,24.2614],[82.01354,24.2503],[82.00088,24.23527],[81.98546,24.23149],[81.97881,24.23169],[81.97383,24.23787],[81.96649,24.24006],[81.96153,24.25469],[81.95526,24.25506],[81.95276,24.24866],[81.95665,24.2374],[81.95575,24.2329],[81.95017,24.23063],[81.94359,24.23733],[81.93942,24.23687],[81.93583,24.21749],[81.93065,24.21378],[81.91916,24.21509],[81.9118,24.19401],[81.90901,24.19133],[81.8993,24.18804],[81.89658,24.18516],[81.89542,24.18042],[81.89806,24.1657],[81.89299,24.16235],[81.89018,24.14494],[81.87813,24.12923],[81.87887,24.12402],[81.88244,24.12062],[81.90385,24.11631],[81.90705,24.11408],[81.90907,24.09859],[81.90671,24.08842],[81.90875,24.0831],[81.92832,24.07434],[81.93971,24.07126],[81.95305,24.06253],[81.9543,24.0521],[81.96333,24.04203],[81.95742,24.02333],[81.96898,24.01324],[81.98045,24.01242],[81.99329,24.02009],[82.001,24.01242],[82.00414,24.01154],[82.01399,24.02376],[82.01667,24.03021],[82.01867,24.03069],[82.02407,24.02789],[82.04054,24.0081],[82.05004,24.00273],[82.07651,24.00372],[82.08063,24.01714],[82.08553,24.01817],[82.0886,24.01388],[82.08924,24.00363],[82.09077,24.0005],[82.08939,23.99994],[82.08969,23.99198],[82.09227,23.98873],[82.09505,23.98772],[82.09962,23.9888],[82.10777,23.99504],[82.12196,23.99618],[82.12821,23.99381],[82.14655,23.97719],[82.15343,23.97381],[82.15877,23.9741],[82.16538,23.98004],[82.1665,23.98386],[82.16541,23.99333],[82.16872,24.00068],[82.17347,23.99849],[82.17981,23.98615],[82.18813,23.98198],[82.19834,23.98021],[82.20487,23.98712],[82.21474,23.9875],[82.2159,23.9794],[82.21387,23.97468],[82.21404,23.96297],[82.21217,23.95933],[82.20225,23.95225],[82.20129,23.94971],[82.20326,23.94655],[82.21118,23.94357],[82.21055,23.93064],[82.2128,23.92584],[82.21751,23.92323],[82.22622,23.92312],[82.23389,23.91791],[82.23402,23.91046],[82.22464,23.90503],[82.22289,23.90039],[82.22673,23.89536],[82.2387,23.89389],[82.24051,23.88938],[82.23521,23.88191],[82.2224,23.87509],[82.21666,23.86657],[82.21557,23.85964],[82.20954,23.85274],[82.20963,23.85081],[82.21186,23.85193],[82.21532,23.84102],[82.21197,23.83585],[82.20811,23.83493],[82.20586,23.82874],[82.20753,23.8261],[82.22551,23.82008],[82.22704,23.80829],[82.23181,23.80531],[82.23728,23.80532],[82.24331,23.80852],[82.25013,23.81568],[82.26061,23.82124],[82.27211,23.81708],[82.28164,23.81698],[82.29181,23.80982],[82.29877,23.807],[82.30483,23.80739],[82.30578,23.81172],[82.31152,23.8102],[82.3175,23.81176],[82.33086,23.80616],[82.33466,23.80255],[82.33947,23.80862],[82.35265,23.80353],[82.36352,23.80803],[82.36405,23.80994],[82.36924,23.80905],[82.37697,23.81104],[82.39062,23.8052],[82.39287,23.80324],[82.3932,23.79994],[82.42326,23.80459],[82.43431,23.805],[82.43574,23.80262],[82.4379,23.80374],[82.44065,23.80279],[82.44691,23.80455],[82.45378,23.81155],[82.46926,23.81106],[82.47906,23.80595],[82.47919,23.80246],[82.48418,23.80035],[82.48893,23.78995],[82.4974,23.7849],[82.51097,23.78602],[82.52446,23.78374],[82.53549,23.7908],[82.53813,23.79425],[82.54181,23.79149],[82.55147,23.79064],[82.54844,23.80855],[82.5388,23.81637],[82.53834,23.8202],[82.53355,23.82023],[82.53307,23.82215],[82.54749,23.82255],[82.54674,23.82619],[82.55425,23.8262],[82.56322,23.82285],[82.56476,23.82074],[82.56937,23.8203],[82.5732,23.82406],[82.57776,23.82423],[82.57922,23.82241],[82.58181,23.82301],[82.58361,23.82071],[82.58862,23.82144],[82.59995,23.82653],[82.60224,23.8303],[82.60756,23.83329],[82.62954,23.83879],[82.63534,23.83771],[82.63917,23.84165],[82.63674,23.84448],[82.63814,23.84798],[82.64244,23.84694],[82.64714,23.84872],[82.64718,23.85369],[82.6451,23.85511],[82.64721,23.85597],[82.64683,23.85914],[82.64958,23.86025],[82.65287,23.85879],[82.65058,23.85685],[82.65157,23.85548],[82.66079,23.85545],[82.66022,23.86284],[82.66448,23.86255],[82.66845,23.87179],[82.65123,23.88676],[82.65106,23.88948],[82.66159,23.90764],[82.67115,23.90579],[82.67466,23.90674],[82.67638,23.90925],[82.68058,23.90715],[82.6834,23.90929],[82.68888,23.9098],[82.69342,23.9202],[82.69803,23.91992],[82.70351,23.92449],[82.71085,23.92368],[82.715,23.92139],[82.75238,23.91979],[82.75526,23.92171],[82.75609,23.92503],[82.75446,23.93419],[82.76201,23.93383],[82.77034,23.93699],[82.77662,23.93667],[82.78107,23.93836],[82.79837,23.95081],[82.80074,23.9608],[82.81261,23.95987],[82.80783,23.96555],[82.80224,23.9793],[82.80538,23.98012],[82.80533,23.98288],[82.8085,23.98606],[82.80561,23.98992],[82.80458,23.99595],[82.80629,23.99776],[82.80418,24.00352],[82.79989,24.00341],[82.78879,24.00828],[82.78436,24.00464],[82.77564,24.00645],[82.769,24.00568],[82.7507,24.01198],[82.74917,24.02356],[82.74718,24.02727],[82.75558,24.0333],[82.76737,24.04856],[82.77054,24.05632],[82.77402,24.0763],[82.7676,24.07589],[82.76565,24.07083],[82.76305,24.06991],[82.76021,24.07258],[82.75968,24.07773],[82.75343,24.07731],[82.75001,24.07084],[82.74749,24.07103],[82.74475,24.07497],[82.74023,24.07723],[82.73897,24.07576],[82.73314,24.08045],[82.72856,24.07814],[82.71642,24.07772],[82.7139,24.07625],[82.71422,24.07971],[82.71029,24.08101],[82.70987,24.08505],[82.71182,24.08927],[82.70488,24.09487],[82.70776,24.09616],[82.70252,24.09899],[82.69585,24.10004],[82.69262,24.10481],[82.69132,24.10524],[82.69127,24.10337],[82.68706,24.10829],[82.68295,24.10936],[82.6834,24.11184],[82.68022,24.11259],[82.68063,24.11485],[82.67806,24.11479],[82.67715,24.11999],[82.67039,24.11999],[82.66524,24.12449],[82.6643,24.12916],[82.66813,24.13473],[82.66682,24.13693],[82.67052,24.13666],[82.67413,24.14097],[82.6707,24.14712],[82.6773,24.15246],[82.68288,24.15459],[82.69302,24.14873],[82.6949,24.14329],[82.69971,24.13924],[82.70429,24.1393],[82.71051,24.13622],[82.72808,24.13514],[82.7293,24.14796],[82.73585,24.15387],[82.74444,24.16548],[82.7396,24.2001],[82.73481,24.21778],[82.73648,24.22295],[82.75,24.22637],[82.75901,24.23635],[82.75949,24.24117],[82.7555,24.25584],[82.75616,24.26142],[82.7622,24.26958],[82.76989,24.28984],[82.77322,24.30736],[82.76595,24.31361],[82.76604,24.31593],[82.76844,24.31677],[82.76894,24.32403],[82.7715,24.32816],[82.7671,24.33029],[82.76993,24.33301],[82.76838,24.3392],[82.76932,24.34187],[82.77364,24.34342],[82.76925,24.34664],[82.76796,24.35285],[82.76442,24.35454],[82.76688,24.35816],[82.76557,24.35994],[82.76741,24.36085],[82.76514,24.36522],[82.76873,24.36633],[82.76938,24.3707],[82.7643,24.37017],[82.7636,24.37264],[82.76511,24.37537],[82.76021,24.37735],[82.76037,24.37368],[82.75462,24.37375],[82.75591,24.36963],[82.74414,24.37047],[82.73982,24.36736],[82.73195,24.36947],[82.72878,24.36795],[82.72825,24.36899],[82.72384,24.36818],[82.72299,24.37117],[82.71878,24.37402],[82.71947,24.37796],[82.71321,24.38024],[82.72341,24.41679],[82.73921,24.42764],[82.73921,24.43237],[82.73587,24.4311],[82.73439,24.43238],[82.73263,24.43084],[82.73489,24.43545],[82.73089,24.43758],[82.73412,24.44667],[82.73311,24.45024],[82.73111,24.45147],[82.7314,24.45404],[82.7348,24.45678],[82.73636,24.46165],[82.73472,24.47044],[82.73098,24.47089],[82.72989,24.47265],[82.73423,24.47553],[82.73373,24.47857],[82.74012,24.48202],[82.73998,24.48735],[82.74325,24.49177],[82.74356,24.49535],[82.74362,24.49896],[82.73592,24.50174],[82.72927,24.50905],[82.72432,24.50957],[82.72063,24.51403],[82.72312,24.51831],[82.72128,24.52346],[82.72348,24.52547],[82.72094,24.5295],[82.72949,24.53114],[82.73103,24.53508],[82.72804,24.5399],[82.72116,24.54567],[82.71955,24.54944],[82.72065,24.55168],[82.71918,24.55247],[82.72201,24.55529],[82.74237,24.54692],[82.7431,24.55182],[82.74755,24.54978],[82.75164,24.54991],[82.75248,24.54662],[82.74908,24.54331],[82.7526,24.54369],[82.75153,24.53772],[82.75552,24.53745],[82.79131,24.54356],[82.80755,24.54899],[82.80494,24.55607],[82.80564,24.56978],[82.80125,24.57686],[82.80308,24.57912],[82.80272,24.5826],[82.80122,24.583],[82.80318,24.58758],[82.80303,24.59768],[82.7916,24.59818],[82.78017,24.59462],[82.76546,24.59577],[82.76989,24.59897],[82.77007,24.6037],[82.77955,24.61394],[82.7754,24.61466],[82.77562,24.62047],[82.77227,24.62193],[82.77193,24.6349],[82.7743,24.64177],[82.76208,24.64259],[82.75352,24.64091],[82.75309,24.63695],[82.74633,24.64208],[82.74106,24.64161],[82.73229,24.64428],[82.72813,24.63535],[82.72284,24.6384],[82.71817,24.63467],[82.7168,24.63709],[82.71796,24.64255],[82.70942,24.63907],[82.7067,24.63627],[82.6982,24.6462],[82.69875,24.66253],[82.70179,24.67166],[82.70089,24.67602],[82.68657,24.68579],[82.67615,24.69071],[82.67085,24.69703],[82.65747,24.69511],[82.6366,24.68235],[82.60718,24.67554],[82.59304,24.66878],[82.57984,24.65929],[82.54045,24.64792],[82.52978,24.65253],[82.52295,24.67627],[82.51741,24.67344],[82.51074,24.67527],[82.50506,24.67164],[82.49395,24.67093],[82.48924,24.67137],[82.48353,24.67701],[82.47983,24.67834],[82.46864,24.67562],[82.46832,24.67398],[82.45672,24.67319],[82.45024,24.6746]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"639","area_level":"District","area_name":"Alirajpur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.17214,22.41875],[74.16758,22.41673],[74.16398,22.41567],[74.16292,22.4157],[74.16149,22.41414],[74.16068,22.41363],[74.15918,22.41448],[74.15811,22.41428],[74.15722,22.41342],[74.15712,22.41233],[74.15737,22.41164],[74.15958,22.40959],[74.16351,22.40668],[74.16483,22.40614],[74.16504,22.40587],[74.16497,22.40358],[74.16588,22.39992],[74.16504,22.398],[74.16515,22.39725],[74.16622,22.39649],[74.1674,22.39636],[74.16773,22.39615],[74.1696,22.39389],[74.17033,22.39396],[74.17092,22.3936],[74.17412,22.391],[74.17581,22.39031],[74.17686,22.38967],[74.17889,22.38795],[74.17916,22.38799],[74.17955,22.38874],[74.17925,22.39103],[74.17986,22.39241],[74.17962,22.39306],[74.17951,22.39527],[74.17966,22.39684],[74.17948,22.39732],[74.17861,22.39741],[74.17754,22.39786],[74.17673,22.39865],[74.17556,22.40094],[74.17545,22.40156],[74.17569,22.40372],[74.17633,22.40488],[74.17637,22.40554],[74.17616,22.40609],[74.17498,22.40715],[74.17475,22.40814],[74.17475,22.41009],[74.17552,22.41382],[74.17523,22.41806],[74.17476,22.41831],[74.17395,22.41827],[74.17321,22.41871],[74.17214,22.41875]]],[[[74.28776,22.63996],[74.27737,22.646],[74.27182,22.63916],[74.26615,22.63835],[74.26667,22.64211],[74.26326,22.64378],[74.25882,22.63685],[74.25358,22.63466],[74.25512,22.62349],[74.2534,22.62148],[74.2496,22.61969],[74.24351,22.62051],[74.24066,22.61187],[74.23137,22.6118],[74.23112,22.60794],[74.22543,22.59604],[74.22183,22.58357],[74.21125,22.57486],[74.21003,22.56426],[74.2046,22.56581],[74.20369,22.56873],[74.20048,22.56573],[74.19359,22.56882],[74.18578,22.56582],[74.1833,22.56649],[74.1901,22.55947],[74.18951,22.5536],[74.18031,22.54818],[74.17069,22.54715],[74.16009,22.53588],[74.15607,22.53488],[74.15212,22.53038],[74.15242,22.52006],[74.14775,22.51388],[74.14064,22.51765],[74.12803,22.51727],[74.12258,22.52165],[74.10248,22.53103],[74.09462,22.53993],[74.08408,22.54475],[74.07464,22.5514],[74.05656,22.55007],[74.04149,22.54225],[74.03789,22.53451],[74.03678,22.52581],[74.03902,22.52151],[74.03851,22.51584],[74.02938,22.50795],[74.03253,22.49133],[74.0367,22.48694],[74.0408,22.48655],[74.0438,22.49658],[74.04642,22.4992],[74.05017,22.50011],[74.05271,22.50411],[74.05298,22.50893],[74.07196,22.50821],[74.07742,22.50606],[74.08252,22.50678],[74.08253,22.49571],[74.08619,22.49158],[74.0852,22.48799],[74.08754,22.48222],[74.08601,22.47681],[74.08217,22.48444],[74.07885,22.48527],[74.07646,22.48358],[74.07353,22.47765],[74.076,22.46941],[74.07533,22.4643],[74.08566,22.46991],[74.09064,22.46634],[74.09544,22.46818],[74.10415,22.46453],[74.1034,22.45574],[74.10156,22.45555],[74.1004,22.45146],[74.09697,22.45027],[74.09841,22.44872],[74.09975,22.43804],[74.10132,22.43527],[74.10341,22.43727],[74.10445,22.43627],[74.10491,22.42951],[74.10684,22.42971],[74.1093,22.42638],[74.11667,22.42445],[74.11911,22.41876],[74.12474,22.41733],[74.12775,22.42204],[74.12773,22.42643],[74.12629,22.42667],[74.12796,22.42691],[74.1282,22.43522],[74.13016,22.43504],[74.12903,22.43606],[74.1311,22.43777],[74.13056,22.43958],[74.13395,22.44592],[74.13585,22.44717],[74.14276,22.44687],[74.14921,22.45566],[74.15526,22.4541],[74.15254,22.44306],[74.15553,22.43633],[74.16045,22.43121],[74.16528,22.43021],[74.16975,22.43183],[74.1695,22.43926],[74.18413,22.44154],[74.18534,22.45096],[74.18058,22.45464],[74.17993,22.46222],[74.18227,22.46775],[74.18706,22.4721],[74.1879,22.47551],[74.1934,22.47548],[74.19898,22.47297],[74.20323,22.46704],[74.20246,22.45638],[74.20422,22.45142],[74.20162,22.43451],[74.21338,22.43151],[74.21524,22.4413],[74.22159,22.43776],[74.22623,22.43762],[74.2274,22.43892],[74.23628,22.4352],[74.25279,22.43295],[74.2532,22.43096],[74.26248,22.4236],[74.26261,22.41816],[74.27059,22.41315],[74.26746,22.40555],[74.29118,22.39401],[74.28906,22.39229],[74.27941,22.3948],[74.27483,22.3921],[74.2707,22.39269],[74.25674,22.39965],[74.25429,22.38583],[74.25103,22.38262],[74.24276,22.38242],[74.24329,22.37605],[74.22371,22.37994],[74.22236,22.37505],[74.22495,22.36875],[74.22214,22.36463],[74.22451,22.36051],[74.22388,22.35637],[74.21057,22.36069],[74.20783,22.36466],[74.20404,22.36671],[74.20277,22.34852],[74.19793,22.34265],[74.19614,22.34319],[74.1943,22.3484],[74.1922,22.34633],[74.19283,22.3324],[74.19033,22.32026],[74.16457,22.3243],[74.1562,22.32726],[74.15408,22.3296],[74.1506,22.32684],[74.14448,22.32819],[74.14214,22.32712],[74.13411,22.3326],[74.12786,22.33274],[74.12531,22.33742],[74.12739,22.3415],[74.12512,22.3561],[74.12123,22.35767],[74.11776,22.35616],[74.11367,22.35715],[74.11209,22.36688],[74.10507,22.37182],[74.09567,22.37111],[74.09207,22.36085],[74.088,22.3598],[74.07671,22.36187],[74.06768,22.3596],[74.06483,22.3533],[74.06665,22.35],[74.06964,22.34885],[74.0722,22.34348],[74.07157,22.33599],[74.06458,22.33186],[74.0631,22.32709],[74.06144,22.31168],[74.06305,22.30707],[74.06219,22.3044],[74.05958,22.3037],[74.05906,22.30577],[74.05376,22.30375],[74.05432,22.29748],[74.05238,22.29409],[74.05597,22.28992],[74.05465,22.28333],[74.05621,22.27851],[74.06777,22.26541],[74.07448,22.26564],[74.07504,22.24756],[74.08388,22.24694],[74.08718,22.24279],[74.0839,22.23925],[74.07404,22.23819],[74.06933,22.23272],[74.07224,22.21906],[74.09204,22.2205],[74.09633,22.21996],[74.09721,22.21835],[74.10621,22.22025],[74.11105,22.2181],[74.11273,22.21404],[74.11708,22.21612],[74.12233,22.2124],[74.1222,22.21043],[74.11738,22.20647],[74.12165,22.19474],[74.11813,22.18535],[74.11883,22.18298],[74.1208,22.18224],[74.12022,22.179],[74.12265,22.17206],[74.12144,22.1674],[74.12486,22.16413],[74.13178,22.1631],[74.13386,22.16054],[74.13145,22.15897],[74.13017,22.1547],[74.13055,22.14443],[74.1269,22.1431],[74.12456,22.13608],[74.12278,22.13568],[74.12335,22.12761],[74.12833,22.12449],[74.12885,22.12104],[74.12446,22.09791],[74.12627,22.0984],[74.12849,22.09465],[74.15256,22.10601],[74.15371,22.1004],[74.15694,22.09962],[74.16285,22.1018],[74.16929,22.1006],[74.16714,22.09735],[74.16936,22.09694],[74.17034,22.09181],[74.17594,22.08969],[74.17865,22.08548],[74.16472,22.08285],[74.16395,22.07344],[74.15862,22.06971],[74.16104,22.06024],[74.16008,22.05882],[74.15444,22.05894],[74.15502,22.05781],[74.13629,22.05293],[74.13141,22.04783],[74.13144,22.04622],[74.13899,22.0434],[74.14015,22.04032],[74.12272,22.03554],[74.12123,22.03219],[74.11535,22.02978],[74.11566,22.02548],[74.11398,22.02427],[74.09466,22.01873],[74.09205,22.01369],[74.09638,22.00989],[74.09968,22.00142],[74.09991,22.0],[74.09693,21.99927],[74.1128,21.99945],[74.11491,21.9979],[74.11843,21.99893],[74.12044,21.9957],[74.12731,21.99557],[74.14022,21.99048],[74.14374,21.99085],[74.1455,21.98774],[74.14966,21.98738],[74.15071,21.98627],[74.14869,21.98363],[74.14869,21.97872],[74.14989,21.97517],[74.14754,21.97415],[74.14421,21.9754],[74.14035,21.97271],[74.14178,21.9702],[74.13984,21.96764],[74.1413,21.96384],[74.14276,21.96362],[74.14335,21.96124],[74.1458,21.96207],[74.14755,21.96072],[74.14301,21.9584],[74.14207,21.95537],[74.14462,21.9529],[74.15552,21.9515],[74.16397,21.94713],[74.17002,21.94298],[74.17904,21.93142],[74.19308,21.92597],[74.24153,21.93025],[74.26248,21.93402],[74.28118,21.93311],[74.28577,21.93551],[74.28952,21.93997],[74.29242,21.94681],[74.29471,21.95948],[74.30089,21.96713],[74.31237,21.97353],[74.33871,21.97376],[74.3507,21.97812],[74.36085,21.99031],[74.37582,22.00059],[74.38409,22.01725],[74.38926,22.02123],[74.4202,22.02612],[74.47657,22.04206],[74.50223,22.04458],[74.49916,22.05302],[74.49492,22.05508],[74.49255,22.07106],[74.49777,22.07166],[74.49974,22.07362],[74.50079,22.07831],[74.50404,22.07949],[74.50387,22.08383],[74.50839,22.08461],[74.50941,22.08779],[74.51561,22.08941],[74.51505,22.10017],[74.50736,22.09906],[74.49916,22.10019],[74.47563,22.09645],[74.47579,22.10055],[74.47105,22.11355],[74.49916,22.11289],[74.54063,22.11748],[74.5403,22.12341],[74.53541,22.1228],[74.53029,22.12885],[74.52651,22.1464],[74.50902,22.14987],[74.50219,22.15659],[74.49752,22.16669],[74.49635,22.17947],[74.49916,22.18206],[74.50952,22.18296],[74.50968,22.18632],[74.50757,22.18992],[74.51553,22.19858],[74.51558,22.2026],[74.52167,22.20545],[74.51171,22.21699],[74.51207,22.22021],[74.52105,22.2266],[74.5267,22.23639],[74.54263,22.23695],[74.54705,22.23138],[74.55154,22.22163],[74.55676,22.21968],[74.56229,22.22386],[74.55952,22.24301],[74.56404,22.24597],[74.57519,22.24234],[74.59026,22.24325],[74.59037,22.25057],[74.59532,22.25336],[74.60223,22.25441],[74.60377,22.2562],[74.60214,22.25985],[74.5963,22.2632],[74.59914,22.26813],[74.60777,22.27041],[74.61418,22.26826],[74.61874,22.27071],[74.63493,22.26988],[74.64896,22.2742],[74.65265,22.28032],[74.65359,22.28586],[74.65824,22.28901],[74.66144,22.28825],[74.66186,22.29968],[74.65996,22.30395],[74.65799,22.30451],[74.63954,22.30275],[74.63596,22.30601],[74.6379,22.30983],[74.63253,22.31053],[74.6332,22.3161],[74.63175,22.31933],[74.62289,22.32868],[74.62162,22.34625],[74.63234,22.35308],[74.63038,22.35887],[74.63131,22.36598],[74.64825,22.36961],[74.66087,22.3679],[74.66452,22.36933],[74.66868,22.36698],[74.673,22.36707],[74.67196,22.36297],[74.67312,22.36176],[74.67719,22.36395],[74.67838,22.36078],[74.68163,22.36095],[74.68339,22.36467],[74.69189,22.36809],[74.69114,22.37473],[74.69405,22.37984],[74.69214,22.38022],[74.68989,22.38367],[74.69198,22.3871],[74.69165,22.39318],[74.69447,22.39409],[74.69689,22.39767],[74.68868,22.40286],[74.69126,22.40655],[74.69115,22.40954],[74.68848,22.41248],[74.69002,22.41586],[74.69384,22.41708],[74.69665,22.42316],[74.69924,22.42506],[74.71227,22.42488],[74.71449,22.42318],[74.72108,22.4292],[74.72094,22.43312],[74.72381,22.43902],[74.7348,22.43751],[74.74248,22.43441],[74.74767,22.43728],[74.74651,22.44194],[74.73916,22.44559],[74.73639,22.45285],[74.72623,22.45581],[74.72188,22.4587],[74.7173,22.45838],[74.71284,22.46197],[74.71237,22.47219],[74.70509,22.47816],[74.70978,22.48376],[74.70905,22.48824],[74.71341,22.49896],[74.72114,22.49724],[74.72535,22.50189],[74.72127,22.50445],[74.71998,22.51314],[74.72122,22.51505],[74.71593,22.51825],[74.71511,22.52338],[74.71263,22.52667],[74.71649,22.53235],[74.7187,22.53308],[74.7199,22.53815],[74.72742,22.54661],[74.72832,22.55284],[74.7412,22.55891],[74.74033,22.56356],[74.72633,22.57145],[74.72938,22.57626],[74.72716,22.58045],[74.72896,22.58148],[74.72808,22.58422],[74.73082,22.59167],[74.72069,22.58468],[74.71241,22.58624],[74.7045,22.58313],[74.69501,22.58644],[74.68973,22.58429],[74.68383,22.59125],[74.67566,22.59709],[74.67439,22.6013],[74.65745,22.60318],[74.65571,22.59532],[74.65641,22.5872],[74.65212,22.57319],[74.6485,22.5683],[74.6321,22.56482],[74.63208,22.55473],[74.62019,22.55613],[74.61982,22.5581],[74.61127,22.55629],[74.60818,22.55815],[74.60549,22.55629],[74.59765,22.53686],[74.59033,22.54201],[74.57804,22.54581],[74.57921,22.54853],[74.57612,22.55193],[74.56944,22.55536],[74.56724,22.56043],[74.565,22.56108],[74.56326,22.56076],[74.55569,22.55178],[74.54886,22.5502],[74.54602,22.554],[74.54743,22.55443],[74.54438,22.55916],[74.54546,22.5602],[74.54145,22.55985],[74.53967,22.5624],[74.53968,22.56743],[74.53147,22.56987],[74.52916,22.57675],[74.52454,22.58102],[74.52153,22.58274],[74.51333,22.5801],[74.50714,22.58296],[74.50419,22.58197],[74.49969,22.57575],[74.49055,22.57528],[74.48809,22.57653],[74.48584,22.56016],[74.47484,22.55913],[74.47167,22.55184],[74.47197,22.54629],[74.47415,22.54257],[74.47179,22.5399],[74.47006,22.52954],[74.46489,22.52966],[74.45244,22.53684],[74.44998,22.54175],[74.44735,22.54334],[74.43665,22.54341],[74.43546,22.55305],[74.43211,22.5538],[74.42866,22.56515],[74.43638,22.57257],[74.43765,22.57977],[74.44201,22.58272],[74.4333,22.58439],[74.42794,22.58767],[74.4278,22.58981],[74.42171,22.59403],[74.41792,22.60145],[74.41063,22.60628],[74.40796,22.61398],[74.40242,22.61528],[74.39162,22.61255],[74.38789,22.62187],[74.37971,22.62798],[74.38055,22.63015],[74.37866,22.6346],[74.37451,22.63594],[74.35909,22.63399],[74.3376,22.64029],[74.33212,22.63872],[74.32935,22.64173],[74.32278,22.6407],[74.32372,22.63595],[74.3148,22.63387],[74.31287,22.63627],[74.29321,22.63791],[74.28776,22.63996]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"64","area_level":"District","area_name":"Jhajjar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.66888,28.80487],[76.66959,28.81317],[76.65565,28.81832],[76.65233,28.83053],[76.64541,28.83915],[76.6434,28.83956],[76.63225,28.83131],[76.63176,28.82506],[76.63275,28.8209],[76.64533,28.80849],[76.64524,28.80415],[76.63992,28.80388],[76.63279,28.79348],[76.62677,28.78925],[76.61507,28.78932],[76.60419,28.79222],[76.60389,28.78864],[76.59539,28.78139],[76.59636,28.77118],[76.59446,28.75355],[76.5877,28.74316],[76.5775,28.73391],[76.56442,28.7404],[76.53024,28.75072],[76.52312,28.7375],[76.50305,28.74297],[76.49318,28.73682],[76.49072,28.73907],[76.47095,28.7412],[76.44533,28.73612],[76.44018,28.72892],[76.43112,28.72717],[76.42525,28.72242],[76.42009,28.72429],[76.41534,28.72349],[76.41454,28.71882],[76.41736,28.71402],[76.42,28.70288],[76.40341,28.67828],[76.40112,28.66643],[76.43725,28.66525],[76.44974,28.65945],[76.45065,28.65484],[76.44784,28.64461],[76.43803,28.64116],[76.43994,28.63789],[76.44715,28.63518],[76.45707,28.6236],[76.45776,28.62086],[76.4615,28.61956],[76.46092,28.61835],[76.46572,28.61541],[76.46557,28.61386],[76.45404,28.60428],[76.45148,28.60539],[76.44826,28.59834],[76.4357,28.60221],[76.43282,28.59946],[76.42855,28.59127],[76.42673,28.58305],[76.42651,28.5707],[76.4212,28.55115],[76.41256,28.55113],[76.40988,28.54894],[76.40402,28.55167],[76.40175,28.57762],[76.40392,28.58676],[76.40142,28.59534],[76.39361,28.59891],[76.37314,28.59974],[76.36016,28.60708],[76.35855,28.61675],[76.35697,28.61666],[76.34586,28.60211],[76.34268,28.58008],[76.33417,28.58238],[76.3348,28.57294],[76.34005,28.56894],[76.34217,28.56089],[76.33915,28.54343],[76.33568,28.53803],[76.3322,28.51009],[76.32719,28.49588],[76.32408,28.4929],[76.32015,28.49221],[76.31051,28.49856],[76.30318,28.49975],[76.29132,28.4985],[76.28275,28.47803],[76.28539,28.47389],[76.29308,28.46876],[76.31462,28.46989],[76.31426,28.46557],[76.31832,28.46177],[76.3205,28.4676],[76.32541,28.46722],[76.33835,28.4642],[76.34345,28.45974],[76.36462,28.45505],[76.36671,28.45514],[76.36711,28.46277],[76.37031,28.4708],[76.39579,28.46852],[76.39878,28.47287],[76.41922,28.46345],[76.42568,28.46241],[76.44071,28.45612],[76.43703,28.45223],[76.43606,28.43991],[76.44527,28.43779],[76.44002,28.42479],[76.44433,28.42169],[76.45461,28.41801],[76.45894,28.42583],[76.48493,28.42764],[76.4901,28.43259],[76.498,28.42906],[76.49984,28.42911],[76.5005,28.4309],[76.50658,28.42878],[76.50928,28.41664],[76.53553,28.40675],[76.55267,28.40751],[76.56062,28.40462],[76.5704,28.41455],[76.58371,28.43695],[76.59805,28.43416],[76.61115,28.42766],[76.61421,28.42982],[76.62562,28.42608],[76.63269,28.42167],[76.63637,28.4164],[76.63396,28.41453],[76.64196,28.41069],[76.64232,28.40605],[76.65003,28.40353],[76.64955,28.40252],[76.65991,28.39282],[76.66343,28.38735],[76.66281,28.38271],[76.66595,28.37995],[76.68033,28.37721],[76.68957,28.37214],[76.69663,28.36691],[76.69486,28.36254],[76.69641,28.36092],[76.71369,28.35627],[76.72511,28.35765],[76.7296,28.36328],[76.72896,28.36491],[76.73082,28.36785],[76.73256,28.36856],[76.73206,28.37111],[76.73465,28.37628],[76.73336,28.3802],[76.72981,28.38202],[76.73107,28.38322],[76.72852,28.38516],[76.72896,28.38815],[76.7268,28.39048],[76.71618,28.39545],[76.71406,28.39474],[76.70725,28.40134],[76.7064,28.40817],[76.70784,28.41649],[76.71709,28.43777],[76.71341,28.4405],[76.7109,28.446],[76.71156,28.45706],[76.70567,28.45928],[76.70844,28.46743],[76.7075,28.47544],[76.70537,28.47939],[76.70428,28.4927],[76.70967,28.49357],[76.71325,28.49077],[76.71783,28.4919],[76.73528,28.47951],[76.73403,28.47217],[76.74933,28.46263],[76.75853,28.46081],[76.76887,28.47916],[76.79195,28.46587],[76.79574,28.47165],[76.80029,28.47041],[76.80511,28.47568],[76.81068,28.47501],[76.81397,28.47992],[76.81349,28.4857],[76.81828,28.48936],[76.82447,28.49902],[76.82392,28.50467],[76.84618,28.50009],[76.8498,28.50196],[76.86124,28.50142],[76.87496,28.49804],[76.88493,28.5004],[76.88569,28.50245],[76.88041,28.5062],[76.88713,28.52057],[76.87703,28.5244],[76.87458,28.52701],[76.87321,28.53275],[76.86738,28.53555],[76.86472,28.5435],[76.84527,28.5505],[76.84241,28.5563],[76.84069,28.57166],[76.83889,28.57328],[76.83953,28.58279],[76.84611,28.5848],[76.86431,28.586],[76.86788,28.59063],[76.87176,28.60286],[76.87734,28.60883],[76.8824,28.62279],[76.88833,28.63196],[76.89327,28.63169],[76.90647,28.6238],[76.91429,28.63235],[76.91978,28.63163],[76.92746,28.62356],[76.93526,28.61881],[76.94299,28.628],[76.94446,28.63329],[76.9365,28.63783],[76.92496,28.65015],[76.93534,28.66786],[76.94885,28.67019],[76.95241,28.66961],[76.9538,28.66772],[76.95803,28.68463],[76.96783,28.69963],[76.9482,28.71299],[76.9594,28.72925],[76.96006,28.73274],[76.95593,28.73823],[76.95828,28.74323],[76.9445,28.75399],[76.94651,28.7588],[76.95557,28.76778],[76.94981,28.77706],[76.95007,28.78326],[76.95385,28.79091],[76.94586,28.79805],[76.92318,28.801],[76.91211,28.7935],[76.90033,28.79534],[76.89817,28.79732],[76.89649,28.79519],[76.88997,28.79917],[76.8875,28.80456],[76.88704,28.81262],[76.884,28.81656],[76.86963,28.82375],[76.86325,28.81583],[76.85472,28.81357],[76.85006,28.80762],[76.83413,28.81039],[76.82037,28.79116],[76.81904,28.78376],[76.80775,28.7742],[76.78601,28.74844],[76.77959,28.74304],[76.7644,28.75114],[76.76727,28.75565],[76.76754,28.76265],[76.76401,28.7661],[76.75705,28.76935],[76.75,28.76732],[76.74055,28.75676],[76.73598,28.7589],[76.72203,28.76023],[76.71552,28.75878],[76.71427,28.75713],[76.71542,28.75303],[76.70907,28.73617],[76.69923,28.73572],[76.68689,28.74347],[76.69047,28.75158],[76.6929,28.76354],[76.70622,28.76607],[76.70831,28.76868],[76.71022,28.77825],[76.70893,28.78713],[76.69337,28.78893],[76.6706,28.79607],[76.66888,28.80487]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"640","area_level":"District","area_name":"Amethi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.58321,26.65383],[81.57536,26.66173],[81.56777,26.66612],[81.55971,26.66387],[81.56814,26.65266],[81.56434,26.64788],[81.55925,26.64531],[81.55863,26.64335],[81.56435,26.63887],[81.56077,26.62686],[81.55593,26.62802],[81.55474,26.62699],[81.55475,26.62373],[81.55657,26.62325],[81.55584,26.62226],[81.55899,26.61917],[81.55618,26.61669],[81.55821,26.61657],[81.55746,26.61529],[81.55981,26.61604],[81.56091,26.61399],[81.56428,26.61716],[81.56858,26.61726],[81.57222,26.61619],[81.57455,26.6128],[81.57203,26.60738],[81.56565,26.6021],[81.56562,26.59983],[81.56749,26.59927],[81.5661,26.59156],[81.56407,26.59175],[81.56273,26.58863],[81.55339,26.59052],[81.54442,26.57657],[81.54604,26.57409],[81.55383,26.57179],[81.55176,26.56272],[81.54296,26.55432],[81.54289,26.55017],[81.53552,26.54386],[81.53747,26.543],[81.53955,26.53825],[81.54412,26.53498],[81.54699,26.52637],[81.5411,26.52533],[81.52769,26.53261],[81.52065,26.53083],[81.51547,26.53176],[81.51033,26.52811],[81.50734,26.53157],[81.50971,26.53581],[81.51572,26.53567],[81.5165,26.53833],[81.51292,26.54197],[81.51411,26.54267],[81.51394,26.54987],[81.51202,26.55103],[81.49498,26.54985],[81.49187,26.5434],[81.48647,26.54331],[81.48519,26.54806],[81.48129,26.55164],[81.4804,26.55607],[81.47594,26.55729],[81.47502,26.55465],[81.47373,26.55489],[81.47356,26.56075],[81.46956,26.56265],[81.46778,26.56833],[81.4571,26.57486],[81.4454,26.56861],[81.44685,26.56641],[81.44605,26.56401],[81.43846,26.56697],[81.4317,26.56024],[81.4265,26.56482],[81.42289,26.56596],[81.41784,26.56665],[81.41603,26.56379],[81.40711,26.57225],[81.40093,26.57034],[81.39812,26.57469],[81.39139,26.57563],[81.39097,26.58518],[81.38175,26.58988],[81.37449,26.5803],[81.36918,26.57667],[81.36963,26.5717],[81.35842,26.55358],[81.3515,26.546],[81.3457,26.54595],[81.34426,26.54305],[81.34403,26.53906],[81.34524,26.53889],[81.34416,26.53506],[81.35076,26.52979],[81.35452,26.52945],[81.36083,26.52549],[81.36382,26.51127],[81.3669,26.50794],[81.36075,26.50028],[81.36206,26.49748],[81.36819,26.49445],[81.37452,26.48883],[81.37423,26.48363],[81.37747,26.47904],[81.37665,26.47099],[81.37355,26.46734],[81.36996,26.46587],[81.37487,26.46329],[81.37496,26.45969],[81.37951,26.45658],[81.37882,26.4537],[81.37222,26.44956],[81.36834,26.44918],[81.36674,26.4462],[81.36378,26.44628],[81.36353,26.44472],[81.37568,26.44201],[81.37771,26.4392],[81.38804,26.43521],[81.39073,26.43198],[81.39394,26.43089],[81.39538,26.42139],[81.39944,26.41823],[81.39648,26.41285],[81.3911,26.40851],[81.38993,26.40424],[81.3877,26.40458],[81.38362,26.39379],[81.38423,26.39154],[81.3829,26.39099],[81.38787,26.38493],[81.39032,26.37894],[81.3879,26.37298],[81.38378,26.37077],[81.38312,26.36724],[81.38687,26.36059],[81.38591,26.35791],[81.39437,26.35103],[81.39162,26.34454],[81.39458,26.34319],[81.38863,26.33564],[81.38638,26.33812],[81.37711,26.34189],[81.37026,26.34088],[81.36685,26.33759],[81.37269,26.32862],[81.37633,26.33023],[81.38666,26.32959],[81.39098,26.32778],[81.39461,26.32393],[81.398,26.32405],[81.4067,26.32066],[81.40897,26.31816],[81.40848,26.31483],[81.40424,26.30848],[81.40424,26.30495],[81.40015,26.30358],[81.39914,26.30031],[81.39151,26.2917],[81.38241,26.29421],[81.37794,26.29062],[81.37882,26.28613],[81.37458,26.28356],[81.36518,26.28807],[81.36311,26.28642],[81.36414,26.28445],[81.3623,26.28203],[81.35797,26.2792],[81.35541,26.2691],[81.36197,26.26272],[81.36148,26.25554],[81.35573,26.25042],[81.35205,26.24999],[81.34864,26.24425],[81.35036,26.24108],[81.3505,26.23199],[81.35352,26.22784],[81.36049,26.22914],[81.36277,26.22727],[81.3693,26.22754],[81.37387,26.22477],[81.38207,26.22792],[81.38374,26.23037],[81.39476,26.22716],[81.41231,26.2305],[81.41434,26.23555],[81.42134,26.23106],[81.42045,26.22041],[81.42332,26.21782],[81.42922,26.21669],[81.43068,26.21235],[81.43376,26.21206],[81.44196,26.21395],[81.44332,26.2164],[81.44756,26.21842],[81.44268,26.22384],[81.45148,26.2241],[81.45377,26.22278],[81.46604,26.22572],[81.46851,26.23289],[81.47013,26.23359],[81.47498,26.22986],[81.48297,26.22863],[81.48516,26.22387],[81.49318,26.2224],[81.49823,26.2186],[81.50405,26.22262],[81.51632,26.22043],[81.51448,26.2237],[81.51252,26.2241],[81.51479,26.22811],[81.51709,26.22615],[81.51568,26.22234],[81.5193,26.22088],[81.52364,26.22225],[81.52367,26.22463],[81.53136,26.23056],[81.53039,26.23509],[81.53242,26.23653],[81.53176,26.23773],[81.53664,26.23724],[81.53969,26.2411],[81.54018,26.24722],[81.54144,26.24591],[81.54818,26.24925],[81.55249,26.24637],[81.55506,26.24727],[81.55776,26.24556],[81.55578,26.24111],[81.55649,26.23845],[81.5599,26.23676],[81.56244,26.2423],[81.5653,26.24184],[81.56531,26.24835],[81.56766,26.24929],[81.57303,26.24736],[81.5752,26.24871],[81.5825,26.24733],[81.58731,26.24979],[81.59203,26.24478],[81.58969,26.24263],[81.59108,26.24088],[81.59119,26.23415],[81.5889,26.23031],[81.58991,26.2258],[81.59372,26.22056],[81.5964,26.21987],[81.59875,26.22251],[81.61137,26.22002],[81.61247,26.21802],[81.61313,26.20946],[81.61581,26.20391],[81.60967,26.19236],[81.60984,26.18868],[81.61511,26.18621],[81.61625,26.18252],[81.63111,26.17142],[81.63344,26.16562],[81.63233,26.16269],[81.63352,26.16242],[81.63324,26.15985],[81.6427,26.15538],[81.65303,26.14378],[81.64661,26.13457],[81.64837,26.13315],[81.64848,26.12925],[81.65482,26.12473],[81.66006,26.11714],[81.66822,26.11613],[81.67473,26.12025],[81.68258,26.11489],[81.68309,26.10883],[81.67776,26.09798],[81.68518,26.09493],[81.68262,26.08585],[81.687,26.0762],[81.70015,26.06812],[81.70307,26.06773],[81.70609,26.07068],[81.71641,26.06597],[81.71811,26.06727],[81.71821,26.07555],[81.71385,26.08298],[81.72114,26.09117],[81.72453,26.09383],[81.72708,26.09388],[81.72662,26.09247],[81.73377,26.08832],[81.74393,26.08494],[81.744,26.08232],[81.75318,26.07775],[81.75886,26.07043],[81.76901,26.06735],[81.77046,26.06085],[81.76578,26.05229],[81.77203,26.04663],[81.76989,26.04131],[81.77552,26.03791],[81.77551,26.03339],[81.78424,26.02813],[81.78784,26.02898],[81.79362,26.027],[81.79961,26.03236],[81.80085,26.03807],[81.80012,26.04482],[81.80287,26.04728],[81.8138,26.0444],[81.82218,26.03817],[81.82832,26.03747],[81.83424,26.04144],[81.83674,26.03989],[81.84393,26.04069],[81.84947,26.04515],[81.85928,26.04693],[81.87045,26.0617],[81.86978,26.06568],[81.86682,26.06956],[81.8678,26.07265],[81.87205,26.0754],[81.87812,26.0757],[81.88491,26.08151],[81.89454,26.07511],[81.89837,26.07054],[81.89702,26.06815],[81.90103,26.06705],[81.90281,26.06899],[81.90889,26.06632],[81.90873,26.06087],[81.91194,26.05604],[81.92814,26.05461],[81.93005,26.05177],[81.93611,26.05504],[81.93492,26.05825],[81.93152,26.05798],[81.93286,26.05994],[81.93122,26.06159],[81.93457,26.06315],[81.93393,26.06539],[81.9362,26.0654],[81.93382,26.0675],[81.9381,26.07164],[81.93684,26.07513],[81.93976,26.07542],[81.96192,26.06603],[81.96221,26.07121],[81.95907,26.07192],[81.95861,26.07387],[81.9654,26.07845],[81.97325,26.07586],[81.97554,26.07744],[81.98126,26.07443],[81.98246,26.07223],[81.97999,26.07066],[81.98346,26.06621],[81.98202,26.06345],[81.9873,26.06066],[81.9896,26.06278],[81.99643,26.06291],[81.99998,26.06673],[82.00708,26.06704],[82.02554,26.0635],[82.03044,26.06462],[82.04896,26.05759],[82.04811,26.06399],[82.0496,26.06792],[82.05719,26.07303],[82.06333,26.07417],[82.06301,26.07894],[82.07048,26.09126],[82.06383,26.09742],[82.05488,26.09965],[82.0451,26.10718],[82.0474,26.11109],[82.04353,26.11803],[82.04378,26.12148],[82.05043,26.13117],[82.04949,26.13279],[82.05376,26.13248],[82.05442,26.1356],[82.05165,26.13651],[82.05286,26.13908],[82.04942,26.1496],[82.0429,26.15465],[82.03809,26.15632],[82.02707,26.15647],[82.02272,26.1584],[82.02445,26.16778],[82.02305,26.17281],[82.02024,26.17453],[82.00456,26.17867],[81.99812,26.18301],[81.98935,26.18473],[81.98784,26.18761],[81.97502,26.198],[81.97247,26.20309],[81.97303,26.20617],[81.96981,26.21641],[81.96557,26.22029],[81.96174,26.2209],[81.95801,26.21768],[81.95407,26.21859],[81.95421,26.21564],[81.95191,26.21269],[81.94976,26.21236],[81.94635,26.21415],[81.94138,26.22412],[81.9252,26.22367],[81.92352,26.22638],[81.92496,26.22777],[81.91785,26.23188],[81.91656,26.23572],[81.91389,26.2358],[81.91273,26.23809],[81.90764,26.23974],[81.90978,26.24122],[81.90595,26.2454],[81.90598,26.25338],[81.90972,26.25538],[81.90679,26.25507],[81.90455,26.25714],[81.90548,26.25985],[81.90229,26.25922],[81.89904,26.26287],[81.89597,26.26279],[81.8939,26.2646],[81.88814,26.26341],[81.88749,26.26548],[81.88322,26.26709],[81.88241,26.27044],[81.88136,26.26974],[81.8799,26.27241],[81.87863,26.27141],[81.87511,26.27336],[81.87566,26.28206],[81.87369,26.28397],[81.86861,26.28544],[81.85873,26.28227],[81.85206,26.2841],[81.8513,26.28912],[81.84651,26.29175],[81.84716,26.297],[81.84037,26.31315],[81.84055,26.3185],[81.83862,26.32075],[81.83676,26.32019],[81.83455,26.32268],[81.8239,26.32379],[81.81961,26.3267],[81.81666,26.32607],[81.8087,26.33189],[81.81075,26.33648],[81.81785,26.33736],[81.82083,26.34003],[81.82725,26.33803],[81.83201,26.33436],[81.83599,26.33653],[81.84057,26.33443],[81.84432,26.34064],[81.84687,26.339],[81.84802,26.34361],[81.85064,26.3456],[81.85713,26.34542],[81.86165,26.34885],[81.86812,26.36033],[81.87046,26.35879],[81.87143,26.36481],[81.86978,26.36663],[81.87177,26.36861],[81.86858,26.37657],[81.87131,26.38013],[81.87403,26.37972],[81.87743,26.38158],[81.88189,26.38837],[81.87887,26.39324],[81.8777,26.40012],[81.86909,26.40603],[81.87017,26.41053],[81.866,26.41128],[81.85248,26.40904],[81.85027,26.40051],[81.84742,26.39977],[81.84513,26.4075],[81.84019,26.40975],[81.84697,26.41863],[81.8461,26.42481],[81.83351,26.42381],[81.82167,26.42532],[81.8189,26.43316],[81.80447,26.4383],[81.80191,26.44071],[81.8051,26.44515],[81.80362,26.44643],[81.80504,26.44929],[81.80359,26.4506],[81.80415,26.4526],[81.80124,26.45453],[81.79921,26.45366],[81.7974,26.45562],[81.79318,26.4536],[81.78976,26.45567],[81.78971,26.45845],[81.78736,26.46151],[81.78903,26.46702],[81.78058,26.4695],[81.77698,26.4647],[81.77333,26.4631],[81.76874,26.46404],[81.7629,26.46849],[81.76135,26.47411],[81.76335,26.4772],[81.76353,26.48566],[81.76583,26.48684],[81.7447,26.49203],[81.75364,26.50029],[81.76235,26.50363],[81.7599,26.50685],[81.76232,26.51006],[81.75639,26.51377],[81.74565,26.50665],[81.73781,26.5086],[81.73337,26.51579],[81.73665,26.51991],[81.73416,26.52266],[81.73668,26.53016],[81.73563,26.5353],[81.7251,26.53274],[81.72573,26.52801],[81.72383,26.52566],[81.71961,26.52767],[81.71573,26.52637],[81.71594,26.52219],[81.72054,26.52097],[81.71953,26.51871],[81.70793,26.52228],[81.68941,26.52336],[81.67494,26.52818],[81.67437,26.53278],[81.68039,26.54344],[81.68384,26.54437],[81.69163,26.53967],[81.69833,26.54398],[81.69786,26.5516],[81.70114,26.56545],[81.69975,26.57563],[81.70381,26.58279],[81.70171,26.58968],[81.69849,26.59113],[81.68031,26.58945],[81.67198,26.58423],[81.66714,26.58573],[81.66252,26.59038],[81.65631,26.58512],[81.64933,26.58377],[81.64769,26.58573],[81.65053,26.59805],[81.64886,26.6087],[81.65542,26.60992],[81.66913,26.60103],[81.67328,26.60038],[81.67625,26.60257],[81.67599,26.60701],[81.66747,26.61491],[81.66322,26.62587],[81.65304,26.62778],[81.64585,26.63738],[81.64164,26.6396],[81.63648,26.63745],[81.62724,26.63976],[81.6266,26.63793],[81.62412,26.63738],[81.62386,26.63549],[81.62746,26.63512],[81.62593,26.63077],[81.61496,26.6286],[81.6058,26.64571],[81.6005,26.65117],[81.58321,26.65383]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"641","area_level":"District","area_name":"Tapi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.15826,21.56897],[74.15514,21.56725],[74.15396,21.55682],[74.13894,21.55503],[74.13696,21.54686],[74.13612,21.54929],[74.1298,21.55118],[74.12011,21.55139],[74.12026,21.55589],[74.11894,21.55628],[74.11556,21.5533],[74.11665,21.55084],[74.11319,21.54878],[74.10995,21.55624],[74.10446,21.55643],[74.09731,21.55525],[74.09645,21.55124],[74.08698,21.55157],[74.08504,21.55535],[74.07922,21.55442],[74.08158,21.54875],[74.07319,21.54792],[74.06697,21.55028],[74.0599,21.5503],[74.05403,21.55791],[74.05378,21.54751],[74.05118,21.54668],[74.04935,21.54823],[74.04881,21.54469],[74.04694,21.54468],[74.04748,21.54738],[74.04454,21.54816],[74.04361,21.54248],[74.03644,21.54557],[74.03831,21.54579],[74.03746,21.55063],[74.03501,21.55034],[74.03498,21.54553],[74.03091,21.54515],[74.02044,21.54996],[74.0103,21.5492],[74.00584,21.55276],[74.00345,21.5453],[74.00032,21.54565],[74.00233,21.54155],[73.99742,21.53901],[73.99581,21.53871],[73.99633,21.5402],[73.99319,21.5433],[73.98281,21.54073],[73.98108,21.54361],[73.97419,21.54328],[73.97493,21.53424],[73.98127,21.52781],[73.98286,21.52056],[73.98098,21.51637],[73.97672,21.51555],[73.97842,21.51147],[73.97465,21.5096],[73.98055,21.49538],[73.97686,21.49514],[73.97825,21.48995],[73.97277,21.48875],[73.97525,21.48401],[73.98167,21.48421],[73.9821,21.48128],[73.98583,21.48242],[73.98921,21.48136],[73.98374,21.47367],[73.97139,21.46166],[73.9639,21.45922],[73.94511,21.46049],[73.9263,21.45078],[73.91747,21.44927],[73.90863,21.44895],[73.89191,21.45331],[73.88182,21.45086],[73.83762,21.42386],[73.8347,21.42023],[73.83403,21.4123],[73.81861,21.40124],[73.80253,21.4116],[73.79404,21.4107],[73.78205,21.41319],[73.7768,21.41113],[73.76317,21.40968],[73.74308,21.41099],[73.73055,21.40884],[73.70985,21.40385],[73.70965,21.39968],[73.68462,21.39322],[73.67817,21.38724],[73.66515,21.38264],[73.65231,21.3808],[73.64435,21.38243],[73.62714,21.37962],[73.62346,21.37757],[73.61895,21.37834],[73.61566,21.37623],[73.61328,21.37845],[73.60874,21.37583],[73.60986,21.37216],[73.60885,21.37044],[73.60196,21.37121],[73.59749,21.36806],[73.5938,21.37065],[73.58973,21.36573],[73.58507,21.36838],[73.58086,21.36702],[73.57978,21.36953],[73.56623,21.36485],[73.55962,21.36497],[73.55711,21.36786],[73.54547,21.36367],[73.53944,21.36643],[73.53864,21.36915],[73.53476,21.36873],[73.53054,21.36494],[73.5256,21.3649],[73.52499,21.35643],[73.52712,21.35221],[73.52479,21.35025],[73.52053,21.35354],[73.51388,21.35358],[73.51178,21.35738],[73.50971,21.36821],[73.51005,21.37874],[73.49344,21.38131],[73.45476,21.38394],[73.45368,21.37697],[73.4494,21.37192],[73.43874,21.34533],[73.43793,21.33596],[73.44016,21.32611],[73.43472,21.31572],[73.43227,21.31394],[73.43949,21.31542],[73.44299,21.30889],[73.44748,21.30757],[73.44571,21.30283],[73.44891,21.28835],[73.44833,21.27745],[73.4453,21.27649],[73.44221,21.26783],[73.4269,21.27559],[73.41242,21.27807],[73.39757,21.2766],[73.37817,21.27033],[73.36499,21.26897],[73.36419,21.26483],[73.36799,21.26187],[73.37103,21.24937],[73.37699,21.2411],[73.37734,21.23885],[73.37545,21.23868],[73.37507,21.2253],[73.36461,21.2196],[73.36353,21.21652],[73.35734,21.21701],[73.34583,21.21452],[73.34271,21.21703],[73.34259,21.21911],[73.33411,21.21685],[73.33416,21.21456],[73.30813,21.20154],[73.30831,21.19978],[73.29965,21.19662],[73.2886,21.19658],[73.28311,21.18433],[73.28535,21.18107],[73.28666,21.17254],[73.28551,21.16447],[73.28377,21.16265],[73.28481,21.15648],[73.27066,21.14745],[73.26937,21.13891],[73.27111,21.1381],[73.26926,21.13166],[73.26034,21.1327],[73.25819,21.12471],[73.25387,21.12209],[73.24714,21.1286],[73.23426,21.12896],[73.23106,21.12996],[73.2296,21.13364],[73.22332,21.13387],[73.22626,21.12903],[73.22715,21.11741],[73.24709,21.11457],[73.2471,21.11209],[73.25027,21.1079],[73.25308,21.09285],[73.24725,21.09208],[73.247,21.08855],[73.22759,21.09218],[73.22662,21.09057],[73.22406,21.09115],[73.22495,21.08789],[73.22317,21.07918],[73.21571,21.08097],[73.21425,21.07685],[73.21199,21.07808],[73.20868,21.07671],[73.20373,21.07817],[73.203,21.07661],[73.19847,21.07761],[73.19814,21.07514],[73.20062,21.07175],[73.19989,21.05826],[73.20166,21.05749],[73.20338,21.05208],[73.20977,21.05148],[73.21229,21.03872],[73.20534,21.03048],[73.20126,21.028],[73.20111,21.02648],[73.20529,21.02355],[73.2039,21.02206],[73.20444,21.01917],[73.20734,21.0146],[73.21377,21.01105],[73.22629,21.00976],[73.24054,20.99138],[73.23654,20.9814],[73.22516,20.97612],[73.22194,20.96772],[73.21484,20.96231],[73.21201,20.96181],[73.21225,20.95985],[73.20976,20.95754],[73.21376,20.95528],[73.22822,20.95261],[73.23,20.95072],[73.23674,20.95227],[73.24389,20.94833],[73.25114,20.94912],[73.25527,20.94758],[73.25916,20.94359],[73.25866,20.92756],[73.26076,20.92452],[73.26019,20.92253],[73.26402,20.92232],[73.26808,20.92498],[73.2727,20.92532],[73.27257,20.92657],[73.27432,20.92582],[73.27581,20.92857],[73.2842,20.92934],[73.28845,20.9324],[73.28813,20.93027],[73.29066,20.92908],[73.29296,20.92498],[73.2946,20.91826],[73.30337,20.91238],[73.30745,20.9128],[73.30812,20.90776],[73.31558,20.90233],[73.31785,20.8922],[73.3167,20.87993],[73.31945,20.87719],[73.32316,20.86872],[73.3328,20.86712],[73.33277,20.85982],[73.34205,20.86275],[73.34972,20.85973],[73.3514,20.85631],[73.34971,20.85091],[73.35044,20.84863],[73.36581,20.84143],[73.36857,20.83853],[73.36721,20.83258],[73.37431,20.83126],[73.38054,20.82429],[73.38811,20.82245],[73.39218,20.82764],[73.39624,20.82738],[73.40366,20.82248],[73.4212,20.81858],[73.42848,20.81457],[73.43623,20.81273],[73.44232,20.80863],[73.45346,20.80897],[73.45729,20.81179],[73.46051,20.8171],[73.4646,20.81583],[73.47242,20.8189],[73.47918,20.81757],[73.48326,20.81498],[73.49148,20.81553],[73.49605,20.81921],[73.49606,20.82437],[73.49965,20.82874],[73.49805,20.83561],[73.49892,20.83926],[73.50485,20.84373],[73.50267,20.84957],[73.50281,20.85595],[73.49928,20.85985],[73.49175,20.86167],[73.49224,20.86783],[73.49655,20.87026],[73.49923,20.87755],[73.48814,20.89129],[73.49214,20.90015],[73.48907,20.90992],[73.48961,20.9145],[73.4962,20.92155],[73.51104,20.92608],[73.5124,20.93539],[73.52288,20.93532],[73.52764,20.93314],[73.53012,20.93439],[73.53027,20.9392],[73.51976,20.94707],[73.53218,20.94848],[73.53266,20.94747],[73.53743,20.95129],[73.53578,20.95917],[73.53981,20.96964],[73.54245,20.97056],[73.54416,20.97411],[73.54688,21.00663],[73.5543,21.00978],[73.55535,21.0135],[73.55763,21.01487],[73.56115,21.0145],[73.56369,21.0109],[73.56695,21.00999],[73.57279,21.01302],[73.57726,21.00966],[73.57689,21.00833],[73.58089,21.00843],[73.58092,21.00633],[73.59113,20.9996],[73.59195,20.99181],[73.58713,20.97216],[73.585,20.97011],[73.59026,20.96267],[73.59584,20.95893],[73.59581,20.9624],[73.60061,20.97456],[73.60276,20.97661],[73.60933,20.97789],[73.61335,20.98139],[73.61072,20.99258],[73.62027,20.99088],[73.62961,20.97827],[73.63783,20.97533],[73.64474,20.97943],[73.64617,20.98371],[73.64481,20.98796],[73.64567,20.99053],[73.64878,20.99154],[73.65047,20.99043],[73.65212,20.99186],[73.65244,20.99808],[73.65076,21.00067],[73.65199,21.00252],[73.655,21.00604],[73.66019,21.00767],[73.66754,21.00609],[73.67128,21.00114],[73.67652,21.00108],[73.67852,21.00326],[73.68701,21.00566],[73.69296,21.00079],[73.69602,21.00284],[73.70242,21.0035],[73.70533,21.00635],[73.71202,21.00441],[73.71362,21.0063],[73.71768,21.00656],[73.72531,21.00129],[73.72884,21.00607],[73.73655,21.00294],[73.74075,21.00374],[73.7409,21.0023],[73.74493,21.0048],[73.75267,21.00614],[73.75572,21.00238],[73.75573,20.99952],[73.76158,20.9999],[73.76527,20.99319],[73.77077,20.9947],[73.77161,20.99066],[73.77489,20.98758],[73.7821,20.98806],[73.79214,20.98277],[73.79731,20.95867],[73.81213,20.95578],[73.81463,20.94897],[73.81849,20.94806],[73.82029,20.94771],[73.82032,20.95312],[73.8216,20.95372],[73.86698,20.94413],[73.86758,20.94248],[73.87145,20.94224],[73.8703,20.93973],[73.87408,20.9386],[73.87365,20.93675],[73.87772,20.93151],[73.87589,20.92781],[73.88114,20.92994],[73.88569,20.92962],[73.8882,20.93359],[73.89231,20.95571],[73.89901,20.9603],[73.90798,20.95974],[73.90846,20.96692],[73.90332,20.97219],[73.9013,20.9823],[73.89641,20.98202],[73.89239,20.97947],[73.87148,20.98572],[73.86902,20.98526],[73.86632,20.9899],[73.862,20.99039],[73.846,21.00001],[73.8436,20.98765],[73.82751,20.98855],[73.8194,20.99515],[73.80773,20.99597],[73.80503,20.99758],[73.80666,21.00642],[73.80226,21.0242],[73.78682,21.02011],[73.7787,21.01972],[73.76754,21.0117],[73.76199,21.01086],[73.76793,21.02198],[73.76921,21.02746],[73.76826,21.03099],[73.764,21.0323],[73.76164,21.03828],[73.75355,21.03618],[73.74777,21.04077],[73.7381,21.04139],[73.73429,21.05497],[73.73667,21.06394],[73.73438,21.07101],[73.73714,21.08004],[73.72993,21.08243],[73.73302,21.09825],[73.74376,21.11518],[73.73198,21.10443],[73.72968,21.09987],[73.70549,21.10843],[73.70305,21.11233],[73.70315,21.11865],[73.68895,21.10079],[73.6772,21.10856],[73.6519,21.1076],[73.64638,21.12125],[73.63103,21.12328],[73.61846,21.11846],[73.61191,21.13808],[73.61763,21.1427],[73.60513,21.14401],[73.60077,21.15022],[73.59879,21.15663],[73.57852,21.15048],[73.57688,21.15667],[73.58328,21.16101],[73.57764,21.16792],[73.57742,21.17075],[73.58101,21.16945],[73.59385,21.17439],[73.5996,21.1817],[73.60645,21.17876],[73.60579,21.17008],[73.60779,21.15898],[73.61472,21.15578],[73.62927,21.15492],[73.62994,21.14883],[73.62743,21.14335],[73.63464,21.14088],[73.64336,21.13957],[73.65753,21.14585],[73.66494,21.1473],[73.66424,21.15327],[73.66749,21.15463],[73.67271,21.15443],[73.68164,21.15124],[73.70178,21.15369],[73.70134,21.14631],[73.70659,21.14462],[73.71074,21.14543],[73.71305,21.14247],[73.71897,21.13976],[73.71849,21.14157],[73.72102,21.14204],[73.73181,21.14097],[73.73321,21.14235],[73.7332,21.14832],[73.73742,21.15022],[73.73712,21.15325],[73.73408,21.15798],[73.72852,21.16194],[73.72975,21.16538],[73.74009,21.17112],[73.74019,21.16761],[73.75757,21.16743],[73.77231,21.16464],[73.7736,21.16866],[73.78135,21.1711],[73.7847,21.18399],[73.79356,21.18175],[73.8027,21.17492],[73.81576,21.17396],[73.81987,21.18673],[73.82298,21.18514],[73.8259,21.18715],[73.82605,21.20013],[73.81543,21.19735],[73.81296,21.20573],[73.81074,21.20762],[73.81181,21.23123],[73.82846,21.23998],[73.82749,21.25217],[73.82238,21.2611],[73.82287,21.27086],[73.82507,21.27136],[73.82654,21.26772],[73.84971,21.27472],[73.8597,21.27151],[73.86338,21.27266],[73.87961,21.26596],[73.89743,21.27225],[73.9021,21.27757],[73.90873,21.27867],[73.91897,21.28555],[73.92224,21.28964],[73.93242,21.29072],[73.94217,21.29927],[73.94235,21.32563],[73.94585,21.34357],[73.94918,21.35116],[73.94475,21.38112],[73.94408,21.39997],[73.93893,21.40502],[73.94692,21.40493],[73.95179,21.39527],[73.95947,21.39543],[73.95952,21.39695],[73.97045,21.39782],[73.97803,21.40734],[73.97692,21.41193],[73.98222,21.4079],[73.98698,21.41124],[74.00254,21.41746],[74.00293,21.41947],[74.00087,21.42084],[74.00262,21.42141],[74.00829,21.42287],[74.00895,21.41954],[74.01506,21.42128],[74.0234,21.41779],[74.04462,21.41919],[74.04827,21.4234],[74.0491,21.42831],[74.04768,21.43527],[74.04965,21.44021],[74.0457,21.44618],[74.04994,21.4529],[74.0532,21.45469],[74.053,21.45627],[74.05715,21.45939],[74.05967,21.4594],[74.06143,21.46197],[74.06293,21.47455],[74.06955,21.47229],[74.07276,21.46877],[74.07418,21.46563],[74.07297,21.46379],[74.07495,21.46379],[74.07393,21.46127],[74.07544,21.4598],[74.0723,21.45703],[74.09459,21.45573],[74.10071,21.44763],[74.1165,21.45241],[74.11716,21.46208],[74.12053,21.46343],[74.11996,21.46538],[74.12518,21.46665],[74.13373,21.46586],[74.13584,21.45612],[74.1483,21.458],[74.14766,21.46141],[74.15524,21.46295],[74.15881,21.46649],[74.15805,21.46755],[74.16122,21.4689],[74.17297,21.46852],[74.1735,21.46637],[74.18232,21.46925],[74.18349,21.46125],[74.18641,21.46112],[74.18773,21.45819],[74.19531,21.46053],[74.19612,21.4583],[74.19782,21.45875],[74.19716,21.46098],[74.20928,21.46219],[74.20891,21.46704],[74.21416,21.48168],[74.23435,21.48229],[74.23571,21.46777],[74.24742,21.46886],[74.25356,21.46774],[74.25592,21.47678],[74.27732,21.47937],[74.27734,21.48251],[74.30414,21.48811],[74.30389,21.49945],[74.32079,21.4985],[74.3226,21.51748],[74.32148,21.52957],[74.32525,21.53229],[74.32554,21.53607],[74.33084,21.53553],[74.33122,21.5395],[74.32793,21.53944],[74.32834,21.54278],[74.33233,21.54348],[74.33116,21.55242],[74.32518,21.55139],[74.32261,21.54911],[74.32156,21.55231],[74.31475,21.55117],[74.30324,21.55223],[74.30382,21.56547],[74.29885,21.56798],[74.29553,21.56907],[74.2956,21.56708],[74.2846,21.56643],[74.28453,21.5651],[74.27672,21.56225],[74.27853,21.5536],[74.26906,21.55293],[74.26641,21.54259],[74.26332,21.54261],[74.26333,21.5399],[74.23622,21.5397],[74.23631,21.5484],[74.23458,21.5484],[74.23494,21.55088],[74.23104,21.55095],[74.23197,21.55361],[74.22901,21.55446],[74.22757,21.54879],[74.22042,21.5469],[74.21585,21.54109],[74.20845,21.53677],[74.20291,21.53641],[74.20008,21.53284],[74.19584,21.53206],[74.19554,21.53748],[74.19321,21.53761],[74.19338,21.53938],[74.18822,21.54072],[74.18761,21.5428],[74.18272,21.54232],[74.18252,21.54545],[74.1751,21.55643],[74.17648,21.55762],[74.17586,21.569],[74.15826,21.56897]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"642","area_level":"District","area_name":"Sukma","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.38737,18.5101],[81.38761,18.51095],[81.38827,18.5112],[81.38862,18.51153],[81.38854,18.51177],[81.38685,18.51267],[81.3834,18.51563],[81.38106,18.51666],[81.38024,18.51919],[81.38035,18.52098],[81.38023,18.52338],[81.37775,18.52485],[81.3774,18.52607],[81.3767,18.52609],[81.37608,18.5255],[81.37456,18.52545],[81.37404,18.52503],[81.37229,18.52245],[81.37066,18.52067],[81.37054,18.52029],[81.37062,18.51962],[81.37012,18.51933],[81.36906,18.51743],[81.36869,18.51724],[81.36673,18.51704],[81.36623,18.5167],[81.36593,18.51618],[81.36565,18.51392],[81.36772,18.51001],[81.37057,18.50615],[81.37119,18.50599],[81.37435,18.50638],[81.37749,18.50574],[81.37769,18.50616],[81.37851,18.50623],[81.37885,18.50682],[81.37915,18.50697],[81.37967,18.50703],[81.38077,18.50759],[81.38273,18.50793],[81.38387,18.50889],[81.38421,18.50861],[81.38472,18.50905],[81.38508,18.50911],[81.38538,18.50974],[81.38699,18.50967],[81.38737,18.5101]]],[[[81.62845,18.73476],[81.61965,18.74677],[81.61399,18.75069],[81.61084,18.74867],[81.60178,18.73635],[81.59782,18.73421],[81.58249,18.73941],[81.56888,18.73979],[81.57221,18.72523],[81.56975,18.71291],[81.55987,18.70713],[81.55477,18.69352],[81.54812,18.69678],[81.54564,18.69481],[81.54235,18.67403],[81.55633,18.65793],[81.55358,18.65422],[81.55355,18.64538],[81.54516,18.64235],[81.54232,18.63278],[81.54564,18.63069],[81.54512,18.62096],[81.54644,18.61517],[81.54831,18.61253],[81.56697,18.60475],[81.57687,18.60381],[81.57982,18.60003],[81.57806,18.5897],[81.57093,18.57593],[81.55658,18.55969],[81.55374,18.56035],[81.55109,18.56708],[81.5484,18.56947],[81.54004,18.56786],[81.55246,18.58341],[81.54866,18.59522],[81.54354,18.60363],[81.54352,18.6065],[81.52907,18.60351],[81.52173,18.60441],[81.49946,18.61415],[81.49772,18.622],[81.4884,18.6239],[81.48183,18.62338],[81.45857,18.61505],[81.44669,18.60661],[81.44333,18.5986],[81.44665,18.59099],[81.44587,18.58075],[81.4422,18.5817],[81.43997,18.58423],[81.44101,18.58854],[81.43432,18.59274],[81.42615,18.58757],[81.41832,18.57736],[81.41613,18.57286],[81.41916,18.57031],[81.42376,18.55528],[81.4377,18.55374],[81.44148,18.5405],[81.43168,18.53528],[81.41417,18.51412],[81.41845,18.51266],[81.42613,18.51422],[81.42797,18.50898],[81.43094,18.50606],[81.43659,18.50321],[81.44086,18.50584],[81.44315,18.49805],[81.43279,18.49289],[81.43135,18.48637],[81.42342,18.47982],[81.41763,18.47974],[81.40981,18.48432],[81.40067,18.48509],[81.39973,18.48867],[81.39416,18.49362],[81.38676,18.49374],[81.38352,18.49043],[81.37721,18.48858],[81.37759,18.48596],[81.37574,18.48306],[81.38136,18.47897],[81.38402,18.47893],[81.3831,18.46634],[81.36966,18.43182],[81.37018,18.42981],[81.37351,18.42789],[81.38011,18.42669],[81.38582,18.42254],[81.39351,18.42081],[81.41818,18.426],[81.42221,18.42541],[81.42944,18.42114],[81.43391,18.41409],[81.42806,18.40198],[81.41634,18.39837],[81.40979,18.39263],[81.40613,18.39841],[81.40235,18.40078],[81.3703,18.41722],[81.35897,18.41833],[81.35719,18.415],[81.35432,18.41381],[81.33353,18.41775],[81.32835,18.42702],[81.32973,18.43241],[81.32757,18.439],[81.31978,18.43686],[81.30852,18.43885],[81.30556,18.43699],[81.30073,18.44709],[81.30163,18.45391],[81.29975,18.45654],[81.29134,18.46292],[81.28774,18.45717],[81.28118,18.46716],[81.26852,18.46865],[81.27481,18.47302],[81.27527,18.47519],[81.26865,18.47817],[81.25847,18.47907],[81.25892,18.49554],[81.25749,18.50558],[81.25113,18.51367],[81.25165,18.51792],[81.25553,18.52377],[81.25255,18.52465],[81.2471,18.52291],[81.24161,18.52464],[81.23187,18.52489],[81.22251,18.52781],[81.21987,18.51507],[81.21852,18.51494],[81.17885,18.54445],[81.16544,18.55249],[81.16935,18.5476],[81.17081,18.5421],[81.15743,18.53144],[81.08718,18.54884],[81.07544,18.54837],[81.06676,18.5414],[81.05918,18.53874],[81.05465,18.53453],[81.04913,18.53254],[81.03366,18.53419],[81.03016,18.53118],[81.02532,18.5205],[81.03319,18.49684],[81.02207,18.48693],[81.02075,18.47641],[81.0221,18.46594],[81.01905,18.46579],[81.0042,18.44971],[80.99994,18.44114],[80.97702,18.41911],[80.97121,18.41894],[80.96685,18.41597],[80.96484,18.41714],[80.96105,18.41546],[80.95975,18.40922],[80.95629,18.40889],[80.9553,18.40472],[80.95142,18.40176],[80.94824,18.40287],[80.94695,18.40013],[80.94479,18.40053],[80.94355,18.39893],[80.93828,18.40287],[80.93604,18.39741],[80.93139,18.39286],[80.92341,18.39297],[80.91277,18.38023],[80.91211,18.37727],[80.92282,18.37901],[80.9274,18.37568],[80.92696,18.37363],[80.93023,18.37359],[80.93314,18.36731],[80.9321,18.36521],[80.9357,18.36159],[80.94513,18.36174],[80.94992,18.36651],[80.95228,18.36556],[80.95389,18.36791],[80.95846,18.36881],[80.96926,18.35673],[80.98046,18.34769],[80.98844,18.34671],[80.99446,18.34834],[80.9984,18.34577],[81.00362,18.34538],[81.01558,18.33884],[81.02105,18.33912],[81.02449,18.33763],[81.02918,18.34142],[81.04045,18.34171],[81.04296,18.33852],[81.04478,18.33044],[81.04783,18.32936],[81.04805,18.32232],[81.054,18.3192],[81.05901,18.31405],[81.05984,18.31185],[81.05686,18.3067],[81.06243,18.30369],[81.06521,18.29741],[81.06465,18.29541],[81.05705,18.29255],[81.05743,18.2809],[81.05276,18.27316],[81.05205,18.26711],[81.04451,18.25517],[81.06076,18.24953],[81.06659,18.24031],[81.06404,18.23869],[81.06603,18.23511],[81.07365,18.23148],[81.07387,18.22175],[81.06817,18.21691],[81.06786,18.20802],[81.06855,18.19801],[81.07616,18.19231],[81.07542,18.19078],[81.06563,18.18192],[81.05996,18.17116],[81.05173,18.17018],[81.03475,18.16193],[81.03368,18.15634],[81.02614,18.15654],[81.01837,18.1615],[81.00825,18.16133],[81.00899,18.16958],[80.9788,18.16511],[80.97874,18.1508],[80.95551,18.12906],[80.95178,18.09012],[80.94926,18.08286],[80.95344,18.07863],[80.96733,18.0517],[80.96976,18.04385],[80.96426,18.03814],[80.96954,18.03175],[80.97326,18.02364],[80.97987,18.00196],[80.98784,17.94445],[80.99834,17.91679],[80.99934,17.90329],[80.99417,17.8809],[80.99655,17.87175],[80.99645,17.84907],[81.00323,17.83062],[81.00346,17.81952],[81.00822,17.79937],[81.01767,17.79138],[81.03176,17.78847],[81.03898,17.78415],[81.04662,17.78231],[81.07326,17.78645],[81.08583,17.79948],[81.09046,17.80241],[81.09397,17.80927],[81.09766,17.81237],[81.11179,17.82088],[81.12792,17.827],[81.14213,17.84146],[81.15728,17.85043],[81.16613,17.8576],[81.17065,17.85476],[81.19931,17.84693],[81.21561,17.83451],[81.2393,17.82602],[81.24838,17.81666],[81.26626,17.80952],[81.30497,17.80866],[81.32612,17.81395],[81.3456,17.8103],[81.34845,17.81233],[81.35411,17.81229],[81.35878,17.80948],[81.37731,17.80446],[81.38544,17.79844],[81.38656,17.79487],[81.39257,17.79416],[81.39309,17.80808],[81.3885,17.82761],[81.40326,17.84943],[81.40382,17.85301],[81.39427,17.86928],[81.39548,17.88321],[81.39927,17.89192],[81.40329,17.89579],[81.40834,17.89596],[81.4167,17.89282],[81.42145,17.88838],[81.43534,17.88082],[81.44463,17.88575],[81.44811,17.88974],[81.4475,17.89849],[81.45282,17.90756],[81.45337,17.91463],[81.44992,17.92403],[81.44911,17.93193],[81.45291,17.93637],[81.45984,17.95295],[81.47211,17.9605],[81.47609,17.96934],[81.48295,17.97682],[81.47762,17.98841],[81.48028,17.99779],[81.47991,18.00439],[81.48312,18.02705],[81.48015,18.03369],[81.48041,18.05074],[81.48264,18.05567],[81.49069,18.06284],[81.4966,18.07095],[81.49963,18.07985],[81.51286,18.09869],[81.51509,18.12276],[81.51289,18.13575],[81.51382,18.14054],[81.51832,18.14816],[81.52413,18.15081],[81.52582,18.1534],[81.526,18.16042],[81.52373,18.16589],[81.51776,18.17546],[81.50992,18.17949],[81.507,18.1862],[81.50941,18.19457],[81.51326,18.20054],[81.51552,18.21324],[81.51983,18.21766],[81.51992,18.22199],[81.52426,18.22751],[81.52593,18.23355],[81.53045,18.24028],[81.52766,18.25094],[81.52464,18.25586],[81.52524,18.25771],[81.53527,18.26838],[81.54128,18.27006],[81.55084,18.2693],[81.56433,18.2752],[81.57346,18.28264],[81.58551,18.29643],[81.5929,18.30071],[81.5976,18.30891],[81.60054,18.30969],[81.61653,18.30735],[81.62811,18.31384],[81.63965,18.31794],[81.64452,18.31818],[81.65132,18.32153],[81.66223,18.32123],[81.66217,18.32498],[81.65192,18.33254],[81.64966,18.3369],[81.65087,18.34062],[81.65914,18.34656],[81.75006,18.35275],[81.76887,18.41709],[81.79502,18.44072],[81.85621,18.4914],[81.85783,18.49477],[81.85611,18.50092],[81.85699,18.50743],[81.86825,18.52492],[81.87968,18.52524],[81.88927,18.53816],[81.8979,18.53509],[81.90901,18.53807],[81.90587,18.54516],[81.90141,18.54861],[81.90862,18.553],[81.90566,18.56116],[81.90592,18.56455],[81.91036,18.56577],[81.91167,18.57122],[81.91557,18.57281],[81.91777,18.5708],[81.92084,18.57269],[81.92678,18.56673],[81.92971,18.56613],[81.9381,18.5666],[81.94508,18.57014],[81.95078,18.57034],[81.95051,18.57485],[81.95331,18.57671],[81.95291,18.58282],[81.95607,18.58393],[81.95984,18.58948],[81.96342,18.59003],[81.96303,18.59479],[81.95098,18.60095],[81.94221,18.60171],[81.93521,18.60709],[81.93515,18.61265],[81.93074,18.61814],[81.92064,18.62342],[81.90848,18.62856],[81.89459,18.62954],[81.89521,18.63282],[81.89887,18.63523],[81.89405,18.64228],[81.89823,18.65419],[81.89501,18.65445],[81.8935,18.65709],[81.90051,18.66066],[81.87401,18.65736],[81.8695,18.65535],[81.86593,18.65076],[81.84506,18.64511],[81.84067,18.64102],[81.8314,18.62614],[81.80819,18.61459],[81.79015,18.60802],[81.77049,18.5941],[81.75907,18.59302],[81.74612,18.59437],[81.7069,18.61384],[81.66014,18.60755],[81.65203,18.61325],[81.65509,18.65424],[81.67193,18.64919],[81.67338,18.65225],[81.6725,18.65941],[81.65687,18.65999],[81.66379,18.69709],[81.62365,18.70877],[81.62939,18.72608],[81.62845,18.73476]]],[[[81.92587,18.77405],[81.9205,18.77463],[81.91047,18.75955],[81.89763,18.7579],[81.89249,18.754],[81.87909,18.75783],[81.8788,18.75932],[81.87236,18.76372],[81.86997,18.75966],[81.86764,18.7467],[81.84928,18.7357],[81.83942,18.73945],[81.82615,18.74219],[81.82218,18.74455],[81.81135,18.74007],[81.80463,18.73915],[81.79077,18.75089],[81.78195,18.75474],[81.77246,18.75631],[81.77282,18.74597],[81.76716,18.74048],[81.75689,18.73852],[81.75478,18.72557],[81.74831,18.71272],[81.72943,18.69844],[81.73624,18.69588],[81.74831,18.69433],[81.76809,18.68114],[81.77472,18.66801],[81.77908,18.6522],[81.78326,18.64754],[81.79017,18.64443],[81.80399,18.64302],[81.81109,18.63987],[81.81507,18.64193],[81.82412,18.65775],[81.83067,18.66468],[81.83956,18.6694],[81.84257,18.67479],[81.85435,18.67512],[81.85225,18.68006],[81.85298,18.68457],[81.84933,18.6886],[81.84501,18.69059],[81.85829,18.69695],[81.87366,18.70132],[81.88133,18.70669],[81.89284,18.71848],[81.89972,18.72217],[81.91943,18.7038],[81.90757,18.68831],[81.90858,18.67212],[81.915,18.66361],[81.91003,18.66111],[81.90151,18.66071],[81.91526,18.6513],[81.92173,18.64291],[81.93637,18.6448],[81.94303,18.64317],[81.94894,18.64371],[81.95316,18.65404],[81.95279,18.65954],[81.95508,18.66422],[81.9616,18.67028],[81.96519,18.67076],[81.96915,18.67339],[81.96075,18.68863],[81.96294,18.68898],[81.96804,18.69637],[81.96408,18.70023],[81.95903,18.70927],[81.94299,18.71887],[81.94434,18.72596],[81.94199,18.72865],[81.94161,18.7326],[81.95648,18.75297],[81.95487,18.76163],[81.9496,18.76574],[81.94885,18.76916],[81.94684,18.77084],[81.93632,18.77356],[81.92587,18.77405]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"643","area_level":"District","area_name":"Kondagaon","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.61129,20.16483],[81.61001,20.16798],[81.59498,20.17983],[81.59378,20.18416],[81.58929,20.18796],[81.58476,20.19552],[81.55418,20.19124],[81.5504,20.18977],[81.54664,20.18398],[81.53034,20.17619],[81.52306,20.1701],[81.51713,20.16747],[81.5005,20.16465],[81.4971,20.16193],[81.49387,20.16444],[81.48355,20.16287],[81.46025,20.15465],[81.45526,20.1486],[81.45092,20.14668],[81.44617,20.14681],[81.43304,20.15365],[81.41942,20.15713],[81.41904,20.14897],[81.41186,20.1397],[81.40827,20.12825],[81.4013,20.11666],[81.40314,20.10646],[81.40055,20.10009],[81.40422,20.09421],[81.40509,20.08088],[81.40108,20.07251],[81.39767,20.07208],[81.39542,20.06993],[81.38776,20.05598],[81.38835,20.04854],[81.37597,20.04851],[81.36794,20.04667],[81.35905,20.04766],[81.35575,20.03575],[81.34803,20.03882],[81.33319,20.03682],[81.3116,20.02531],[81.31092,20.02213],[81.29165,20.0214],[81.29448,20.01229],[81.29189,20.01009],[81.30201,20.0008],[81.30113,19.98854],[81.30313,19.97824],[81.30191,19.97598],[81.30914,19.97508],[81.31217,19.97199],[81.33063,19.96488],[81.32946,19.95934],[81.33154,19.94841],[81.32649,19.93893],[81.34405,19.93098],[81.34909,19.92188],[81.34887,19.91315],[81.36297,19.91352],[81.3747,19.90797],[81.38505,19.89638],[81.39745,19.89083],[81.40582,19.88068],[81.40243,19.86767],[81.39672,19.86765],[81.38825,19.86495],[81.37999,19.85966],[81.38034,19.85641],[81.37731,19.85361],[81.37994,19.84762],[81.39608,19.83612],[81.39039,19.82733],[81.37877,19.81508],[81.37017,19.79757],[81.37799,19.78569],[81.37306,19.77761],[81.379,19.77158],[81.37696,19.7675],[81.38066,19.76146],[81.3821,19.7548],[81.37077,19.74271],[81.37352,19.73002],[81.38298,19.72428],[81.39879,19.72796],[81.41014,19.72346],[81.41928,19.72265],[81.43073,19.71848],[81.43688,19.71404],[81.43747,19.71002],[81.45138,19.70297],[81.44691,19.68734],[81.44652,19.67933],[81.45146,19.67619],[81.46008,19.67558],[81.46614,19.67157],[81.46841,19.67287],[81.47625,19.6717],[81.47443,19.66766],[81.47692,19.6642],[81.49833,19.66045],[81.51674,19.66308],[81.50909,19.65151],[81.49057,19.64841],[81.49162,19.64723],[81.48897,19.64416],[81.47363,19.64653],[81.46365,19.639],[81.45485,19.63702],[81.4551,19.6276],[81.46058,19.62496],[81.46414,19.61896],[81.46423,19.61596],[81.45856,19.60538],[81.46249,19.59866],[81.46249,19.59387],[81.45663,19.58162],[81.46113,19.569],[81.44845,19.55876],[81.44691,19.55482],[81.44388,19.55231],[81.43973,19.53573],[81.44294,19.52801],[81.44903,19.52868],[81.44911,19.5159],[81.44763,19.51221],[81.42651,19.50085],[81.42154,19.49371],[81.4244,19.48248],[81.42676,19.48035],[81.44314,19.47447],[81.47599,19.47224],[81.46791,19.45138],[81.46483,19.436],[81.46767,19.43052],[81.46506,19.42334],[81.46726,19.41017],[81.46993,19.40251],[81.4719,19.40186],[81.46716,19.39387],[81.47171,19.38962],[81.47156,19.37717],[81.46917,19.3745],[81.46683,19.37537],[81.46353,19.37179],[81.46134,19.37309],[81.46098,19.37596],[81.45737,19.37654],[81.44924,19.37663],[81.44039,19.37385],[81.43657,19.37458],[81.43304,19.37354],[81.42811,19.36596],[81.42003,19.36586],[81.41629,19.36373],[81.40518,19.36677],[81.40072,19.37467],[81.39624,19.37583],[81.38816,19.38312],[81.38757,19.39195],[81.38982,19.39648],[81.3891,19.4008],[81.39157,19.41006],[81.3878,19.41468],[81.37985,19.41424],[81.37585,19.41035],[81.37253,19.40947],[81.37304,19.40565],[81.3766,19.40294],[81.3756,19.39616],[81.3776,19.38724],[81.37001,19.38256],[81.36829,19.37733],[81.36538,19.37451],[81.37844,19.36299],[81.38224,19.3623],[81.39016,19.36418],[81.39336,19.34895],[81.39868,19.33403],[81.39604,19.33557],[81.38622,19.33609],[81.38413,19.33472],[81.38329,19.32953],[81.37943,19.33099],[81.37523,19.32944],[81.36979,19.33055],[81.36932,19.33307],[81.36398,19.33261],[81.36185,19.3304],[81.35922,19.33108],[81.35587,19.32613],[81.36225,19.32084],[81.36356,19.31595],[81.3708,19.31276],[81.37405,19.31399],[81.37751,19.31971],[81.38354,19.32052],[81.39307,19.31151],[81.40479,19.30752],[81.41216,19.30225],[81.42821,19.29666],[81.43245,19.28492],[81.44599,19.28138],[81.4528,19.27166],[81.46334,19.26704],[81.47415,19.25893],[81.479,19.25327],[81.47504,19.24682],[81.47783,19.24401],[81.48556,19.24099],[81.4862,19.23764],[81.48887,19.23517],[81.4999,19.23543],[81.503,19.2334],[81.50657,19.22707],[81.51071,19.22595],[81.52135,19.22601],[81.53674,19.22266],[81.53765,19.23257],[81.54217,19.24603],[81.54225,19.25769],[81.56182,19.27064],[81.56889,19.28306],[81.58312,19.28179],[81.58598,19.27816],[81.59275,19.27524],[81.60831,19.27308],[81.60923,19.26069],[81.61509,19.24971],[81.61172,19.245],[81.61441,19.23539],[81.62018,19.22794],[81.63252,19.23336],[81.6381,19.2376],[81.64018,19.24145],[81.65709,19.24837],[81.67405,19.24956],[81.67567,19.26491],[81.6637,19.26622],[81.65678,19.26505],[81.64907,19.26766],[81.64033,19.28008],[81.62788,19.28993],[81.63112,19.31333],[81.62954,19.31962],[81.63545,19.33062],[81.63379,19.34286],[81.64247,19.35104],[81.65427,19.3485],[81.66366,19.35299],[81.6667,19.36578],[81.69041,19.36534],[81.70329,19.3583],[81.71066,19.36907],[81.72156,19.37624],[81.7285,19.37726],[81.7416,19.37028],[81.75051,19.3579],[81.75488,19.35583],[81.7638,19.35309],[81.77729,19.35689],[81.78985,19.35534],[81.79426,19.35268],[81.79679,19.36275],[81.8028,19.37629],[81.80046,19.39595],[81.81067,19.40747],[81.80127,19.40859],[81.79762,19.41197],[81.79182,19.43087],[81.7926,19.44641],[81.79149,19.45332],[81.79683,19.46002],[81.8081,19.46902],[81.81093,19.47685],[81.81268,19.49219],[81.82429,19.51058],[81.83561,19.50085],[81.84747,19.48579],[81.85011,19.48072],[81.85042,19.47345],[81.85721,19.47366],[81.85517,19.48719],[81.8572,19.49317],[81.85607,19.50559],[81.85738,19.51271],[81.84862,19.517],[81.84706,19.51992],[81.84551,19.53677],[81.84676,19.54244],[81.85905,19.55237],[81.89829,19.54992],[81.90064,19.53007],[81.90699,19.52812],[81.92695,19.52842],[81.93644,19.53247],[81.94753,19.5404],[81.95192,19.54116],[81.96961,19.54037],[81.98149,19.53788],[81.99867,19.52949],[82.00022,19.51524],[81.99634,19.5061],[81.99668,19.49779],[81.99327,19.492],[81.99965,19.49033],[82.00951,19.49462],[82.01441,19.49307],[82.01736,19.49706],[82.02246,19.49866],[82.03156,19.51104],[82.03185,19.51453],[82.03432,19.51485],[82.03652,19.52004],[82.03729,19.52825],[82.03988,19.53018],[82.04326,19.52986],[82.04647,19.53397],[82.04772,19.53345],[82.04749,19.53965],[82.05069,19.54911],[82.04551,19.56053],[82.04949,19.56841],[82.04814,19.56874],[82.04828,19.57179],[82.04987,19.57384],[82.04875,19.57827],[82.04465,19.58178],[82.04337,19.589],[82.04048,19.59164],[82.03988,19.59764],[82.04627,19.60728],[82.05066,19.60808],[82.05061,19.61677],[82.05571,19.6231],[82.0561,19.62596],[82.05902,19.62818],[82.05646,19.63312],[82.05701,19.63951],[82.05473,19.6405],[82.05192,19.64657],[82.05351,19.6528],[82.05551,19.65446],[82.05194,19.66095],[82.05362,19.66539],[82.05532,19.66566],[82.05187,19.68047],[82.0491,19.68493],[82.04459,19.70053],[82.0445,19.70463],[82.04475,19.70888],[82.05102,19.71909],[82.04924,19.72872],[82.05094,19.73642],[82.0504,19.74581],[82.05564,19.74998],[82.05598,19.75297],[82.06361,19.75902],[82.06047,19.76663],[82.06623,19.78315],[82.06555,19.79066],[82.06239,19.79254],[82.06022,19.79637],[82.05636,19.79485],[82.0564,19.79302],[82.05298,19.79229],[82.04868,19.79696],[82.03105,19.79781],[82.00989,19.80422],[82.00368,19.80257],[81.99537,19.79682],[81.99191,19.79959],[81.98595,19.80109],[81.98656,19.80428],[81.96537,19.8369],[81.96813,19.85989],[81.94106,19.87288],[81.89968,19.8872],[81.86965,19.90254],[81.85316,19.91848],[81.85181,19.92315],[81.8568,19.94754],[81.84502,19.95184],[81.84528,19.95953],[81.85536,19.97228],[81.86057,20.00351],[81.86654,20.01105],[81.86503,20.0267],[81.86882,20.03191],[81.86943,20.04126],[81.87597,20.05204],[81.86924,20.05512],[81.87146,20.05879],[81.86796,20.08854],[81.86614,20.09114],[81.85772,20.09602],[81.85436,20.10252],[81.84543,20.11281],[81.847,20.13433],[81.84532,20.1588],[81.84619,20.16429],[81.84061,20.16632],[81.82963,20.16728],[81.8257,20.16943],[81.82091,20.16929],[81.81421,20.1673],[81.80018,20.15925],[81.77544,20.15678],[81.76713,20.1568],[81.75874,20.16263],[81.74674,20.16355],[81.73774,20.15868],[81.72976,20.15767],[81.72737,20.15269],[81.72437,20.15034],[81.72381,20.14262],[81.71894,20.13954],[81.70888,20.13833],[81.69952,20.13338],[81.67965,20.12983],[81.64221,20.1422],[81.63222,20.14716],[81.6238,20.15202],[81.6202,20.15595],[81.61218,20.15814],[81.61129,20.16483]],[[81.47208,19.72734],[81.47947,19.7271],[81.47986,19.71416],[81.48324,19.70696],[81.48745,19.70236],[81.48786,19.69798],[81.4849,19.69393],[81.48528,19.68807],[81.47706,19.69037],[81.45476,19.70108],[81.45831,19.70421],[81.46081,19.71683],[81.46458,19.72419],[81.47141,19.72507],[81.47208,19.72734]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"644","area_level":"District","area_name":"Balodabazar-Bhatapara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.102,21.85341],[82.07914,21.86368],[82.07141,21.86894],[82.06522,21.87056],[82.05151,21.88179],[82.04537,21.88376],[82.037,21.88329],[82.03319,21.8815],[82.0305,21.87801],[82.02848,21.87323],[82.02838,21.86419],[82.02184,21.85794],[82.00556,21.85429],[81.97503,21.85242],[81.95293,21.8442],[81.95116,21.8421],[81.95187,21.83382],[81.94593,21.82055],[81.9115,21.79522],[81.8979,21.78076],[81.87139,21.77032],[81.85857,21.76848],[81.84821,21.75909],[81.84238,21.75793],[81.82905,21.76067],[81.82208,21.75929],[81.8152,21.76054],[81.80471,21.77245],[81.79569,21.76999],[81.78405,21.76278],[81.78107,21.7633],[81.77285,21.76942],[81.7711,21.76914],[81.76798,21.76709],[81.76078,21.75702],[81.74424,21.74877],[81.74035,21.74962],[81.73884,21.76097],[81.73497,21.76512],[81.73034,21.76483],[81.71995,21.76071],[81.70837,21.76273],[81.70128,21.76169],[81.69742,21.75682],[81.69767,21.74827],[81.71227,21.73301],[81.71878,21.71719],[81.7265,21.70822],[81.72231,21.69535],[81.72281,21.68729],[81.70952,21.67875],[81.68157,21.67449],[81.67307,21.66888],[81.67277,21.66407],[81.67094,21.66186],[81.6634,21.66318],[81.65951,21.66146],[81.6574,21.65529],[81.66366,21.64552],[81.69351,21.62454],[81.6982,21.61162],[81.6948,21.60151],[81.69727,21.60099],[81.69518,21.59872],[81.69483,21.59229],[81.70077,21.59137],[81.70251,21.58914],[81.70408,21.59014],[81.70483,21.58907],[81.70633,21.59088],[81.71452,21.59056],[81.72113,21.58929],[81.72295,21.5873],[81.73306,21.5848],[81.73744,21.58194],[81.73924,21.58431],[81.749,21.58429],[81.75151,21.58301],[81.75356,21.58794],[81.74807,21.58815],[81.74765,21.5928],[81.74382,21.59487],[81.74189,21.60109],[81.74313,21.60559],[81.7475,21.60584],[81.74805,21.61329],[81.75604,21.61336],[81.77006,21.6086],[81.77879,21.62226],[81.78155,21.62258],[81.78544,21.62614],[81.78753,21.6245],[81.78819,21.62115],[81.78683,21.61195],[81.78443,21.60778],[81.78766,21.60079],[81.79373,21.59651],[81.80885,21.59986],[81.81713,21.59841],[81.83081,21.59905],[81.84464,21.5955],[81.84314,21.59821],[81.84524,21.60347],[81.85032,21.60354],[81.85111,21.60757],[81.85807,21.60932],[81.86379,21.60678],[81.86432,21.60472],[81.86177,21.5941],[81.88046,21.58411],[81.88223,21.57859],[81.88879,21.57517],[81.89466,21.57757],[81.90071,21.59975],[81.91048,21.59612],[81.92065,21.59451],[81.92227,21.59247],[81.92247,21.5842],[81.92747,21.58784],[81.93154,21.57672],[81.9362,21.57131],[81.93007,21.56382],[81.92753,21.56311],[81.92782,21.55965],[81.92474,21.55738],[81.92423,21.55408],[81.92406,21.55093],[81.92849,21.54574],[81.92799,21.53878],[81.92929,21.53616],[81.93301,21.53413],[81.93165,21.53059],[81.93501,21.5254],[81.93195,21.51488],[81.92973,21.51363],[81.92625,21.50468],[81.93015,21.49232],[81.93319,21.4914],[81.93432,21.48838],[81.93933,21.48844],[81.94231,21.48645],[81.9522,21.48853],[81.95222,21.47836],[81.9539,21.4724],[81.96068,21.47409],[81.96724,21.4719],[81.97356,21.47218],[81.97865,21.47605],[81.99016,21.47387],[81.99529,21.47014],[81.99343,21.46272],[81.99429,21.45998],[82.00859,21.45763],[82.0199,21.44846],[82.02322,21.45036],[82.02292,21.45299],[82.02629,21.45585],[82.03394,21.45557],[82.03635,21.45367],[82.03532,21.45121],[82.0388,21.44652],[82.05137,21.43988],[82.05431,21.43655],[82.06943,21.43366],[82.07883,21.4355],[82.08462,21.43055],[82.08837,21.42961],[82.09669,21.41829],[82.09993,21.4182],[82.10601,21.41469],[82.10741,21.41176],[82.11803,21.4125],[82.12094,21.40547],[82.11746,21.4005],[82.11578,21.38848],[82.11745,21.38251],[82.12459,21.38056],[82.1254,21.36743],[82.12849,21.3657],[82.13719,21.36621],[82.14414,21.35902],[82.14587,21.35879],[82.14634,21.36202],[82.15621,21.36971],[82.16065,21.37602],[82.1648,21.37639],[82.17018,21.38178],[82.18242,21.37849],[82.18908,21.38209],[82.19347,21.37921],[82.22895,21.42329],[82.23313,21.43396],[82.24305,21.43482],[82.25235,21.43233],[82.24628,21.42695],[82.24548,21.41897],[82.25402,21.41648],[82.25542,21.41337],[82.26133,21.41304],[82.2641,21.40742],[82.27232,21.40537],[82.27491,21.40122],[82.27666,21.39222],[82.27504,21.38545],[82.25659,21.38304],[82.24905,21.37028],[82.24334,21.36484],[82.24488,21.36047],[82.25059,21.3587],[82.25615,21.35336],[82.25551,21.34904],[82.25221,21.34502],[82.25528,21.33992],[82.25539,21.32917],[82.25208,21.31774],[82.24296,21.31546],[82.26169,21.30899],[82.26434,21.30171],[82.27733,21.30106],[82.27576,21.28644],[82.27807,21.27743],[82.27686,21.27253],[82.29746,21.26895],[82.29903,21.28119],[82.30999,21.28084],[82.31151,21.28906],[82.31421,21.29248],[82.32173,21.29123],[82.32504,21.29265],[82.33041,21.28502],[82.33709,21.28301],[82.3379,21.28138],[82.3433,21.28602],[82.34822,21.28408],[82.35212,21.27528],[82.3441,21.27272],[82.34326,21.27],[82.34546,21.26669],[82.34503,21.26369],[82.35093,21.26644],[82.35858,21.26648],[82.36071,21.27655],[82.3621,21.27662],[82.37744,21.27352],[82.37876,21.26507],[82.38983,21.2623],[82.39217,21.26796],[82.39208,21.28305],[82.39548,21.29081],[82.39568,21.29591],[82.40723,21.30422],[82.41926,21.31044],[82.42321,21.30882],[82.42886,21.31027],[82.43742,21.30869],[82.44602,21.30315],[82.4463,21.29949],[82.4439,21.29512],[82.43835,21.29214],[82.4364,21.2892],[82.44018,21.28248],[82.44398,21.2811],[82.44517,21.27787],[82.44954,21.27593],[82.45625,21.27875],[82.45571,21.29447],[82.47547,21.29718],[82.46554,21.30533],[82.46443,21.30877],[82.45991,21.30753],[82.46093,21.31326],[82.46462,21.31228],[82.46443,21.32131],[82.4658,21.32398],[82.46993,21.32333],[82.47187,21.32786],[82.47417,21.3255],[82.47933,21.32633],[82.48127,21.32135],[82.49204,21.31603],[82.51315,21.31655],[82.51715,21.31807],[82.52104,21.32298],[82.52743,21.32479],[82.52993,21.33159],[82.53817,21.3238],[82.54099,21.32317],[82.54271,21.31834],[82.54738,21.3209],[82.55155,21.31907],[82.55718,21.32112],[82.56371,21.31586],[82.57198,21.32276],[82.57819,21.32575],[82.58091,21.33119],[82.58627,21.33016],[82.59131,21.33717],[82.59705,21.33965],[82.60036,21.33748],[82.60666,21.33712],[82.61034,21.33929],[82.61469,21.33886],[82.61721,21.34253],[82.62855,21.33532],[82.63198,21.33669],[82.6329,21.34172],[82.64454,21.34206],[82.64625,21.34418],[82.65186,21.34609],[82.65556,21.33686],[82.65117,21.33107],[82.66902,21.32848],[82.68506,21.33079],[82.69592,21.32992],[82.69928,21.34044],[82.7005,21.35125],[82.69934,21.35597],[82.70283,21.37339],[82.70139,21.38061],[82.69774,21.38729],[82.7001,21.39746],[82.6998,21.41141],[82.69769,21.41811],[82.69822,21.44741],[82.69271,21.46293],[82.69082,21.48497],[82.70166,21.4858],[82.71153,21.49006],[82.72563,21.49132],[82.73722,21.49492],[82.75215,21.51165],[82.75745,21.51244],[82.76106,21.51745],[82.77209,21.52415],[82.77348,21.52135],[82.78395,21.51309],[82.78991,21.51025],[82.79437,21.50874],[82.80199,21.51097],[82.81485,21.50939],[82.82531,21.5045],[82.82842,21.50734],[82.82919,21.51503],[82.82469,21.52155],[82.82074,21.53144],[82.8235,21.53184],[82.82826,21.52866],[82.83329,21.53298],[82.83564,21.54112],[82.84836,21.5435],[82.87075,21.55444],[82.87334,21.5526],[82.8751,21.55652],[82.88109,21.55488],[82.89204,21.5423],[82.89356,21.53819],[82.89694,21.53575],[82.89865,21.52907],[82.90361,21.52273],[82.90725,21.51105],[82.91649,21.49497],[82.92166,21.48982],[82.924,21.49204],[82.92924,21.49313],[82.93178,21.49214],[82.93189,21.49472],[82.93441,21.49582],[82.93299,21.50052],[82.93531,21.50033],[82.93255,21.50526],[82.93124,21.50509],[82.93238,21.5073],[82.92981,21.50845],[82.93348,21.51124],[82.93243,21.51552],[82.92771,21.51859],[82.93013,21.52489],[82.93192,21.52486],[82.93071,21.52716],[82.9297,21.52622],[82.92812,21.52732],[82.93037,21.52954],[82.92679,21.53287],[82.92858,21.53581],[82.92764,21.53669],[82.92956,21.5371],[82.9261,21.53987],[82.92797,21.54027],[82.92841,21.54212],[82.92668,21.54293],[82.92778,21.54511],[82.92308,21.54829],[82.92507,21.54906],[82.92577,21.55669],[82.92727,21.55627],[82.92565,21.55937],[82.92824,21.56243],[82.93044,21.56241],[82.93321,21.56708],[82.93449,21.5665],[82.94205,21.57124],[82.94268,21.57475],[82.94462,21.57429],[82.94534,21.57958],[82.94276,21.58038],[82.94239,21.58206],[82.9432,21.58345],[82.94429,21.58223],[82.94505,21.58652],[82.94875,21.59044],[82.95358,21.59239],[82.95148,21.59809],[82.95477,21.60091],[82.95413,21.60416],[82.96184,21.60257],[82.95841,21.60573],[82.96486,21.61126],[82.96781,21.6185],[82.97453,21.62335],[82.97277,21.63106],[82.97505,21.63629],[82.98352,21.64123],[82.98506,21.64416],[82.98585,21.64848],[82.98422,21.65484],[82.98181,21.6579],[82.98279,21.66546],[82.98246,21.66653],[82.9782,21.6661],[82.97623,21.67838],[82.97147,21.69074],[82.96871,21.69296],[82.95917,21.68997],[82.95039,21.6919],[82.95054,21.71167],[82.94889,21.72422],[82.93998,21.7235],[82.90946,21.70342],[82.89401,21.69545],[82.87143,21.69313],[82.85225,21.70012],[82.83439,21.70919],[82.80092,21.72149],[82.79034,21.72389],[82.75584,21.72198],[82.69549,21.7276],[82.6842,21.72454],[82.67515,21.71656],[82.66168,21.7095],[82.6546,21.71127],[82.63443,21.72734],[82.62429,21.72899],[82.61887,21.72758],[82.60115,21.71501],[82.59396,21.71352],[82.58202,21.71547],[82.57016,21.72134],[82.55578,21.73338],[82.54315,21.73696],[82.50061,21.7339],[82.48662,21.72825],[82.47125,21.7271],[82.45693,21.74101],[82.44735,21.74521],[82.44135,21.74352],[82.42882,21.7291],[82.41407,21.71959],[82.39212,21.71241],[82.37658,21.71146],[82.31591,21.71614],[82.30612,21.7214],[82.29862,21.72989],[82.29388,21.74686],[82.28881,21.75276],[82.24823,21.75378],[82.22425,21.75663],[82.2033,21.7603],[82.19462,21.76532],[82.18958,21.77323],[82.18171,21.79778],[82.18165,21.8029],[82.18469,21.81008],[82.18687,21.82524],[82.18409,21.83731],[82.17907,21.84346],[82.16952,21.84405],[82.15861,21.84721],[82.14988,21.84131],[82.14538,21.84091],[82.13144,21.833],[82.12451,21.83156],[82.11898,21.83439],[82.102,21.85341]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"645","area_level":"District","area_name":"Gariyaband","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.99526,21.07657],[81.98818,21.08334],[81.9801,21.07448],[81.97065,21.05886],[81.95352,21.03637],[81.92331,21.01761],[81.91516,21.00728],[81.88968,20.98871],[81.87789,20.97672],[81.87322,20.96459],[81.87331,20.93998],[81.87641,20.93167],[81.87647,20.9199],[81.88016,20.91103],[81.8897,20.90419],[81.89245,20.89826],[81.88803,20.88151],[81.88831,20.87734],[81.89115,20.86739],[81.89962,20.85468],[81.90405,20.83493],[81.90844,20.82839],[81.91991,20.81938],[81.92436,20.81305],[81.92451,20.80939],[81.92243,20.8057],[81.91108,20.79452],[81.90925,20.78661],[81.92156,20.77131],[81.92422,20.76341],[81.92284,20.75141],[81.92588,20.74712],[81.93818,20.73823],[81.95584,20.73497],[81.97494,20.7281],[81.98148,20.72392],[81.98458,20.71962],[81.98158,20.70734],[81.98299,20.70176],[81.99321,20.69246],[81.99827,20.68386],[82.00351,20.67905],[82.00933,20.67692],[82.01244,20.67319],[82.01212,20.66955],[82.0064,20.66439],[82.00156,20.65169],[81.99808,20.64831],[81.99457,20.63524],[82.00862,20.59353],[82.01791,20.57601],[82.01775,20.55902],[82.02144,20.54381],[82.02101,20.52735],[82.02281,20.52458],[82.03511,20.51876],[82.04086,20.50309],[82.04773,20.50074],[82.04863,20.4892],[82.05621,20.47625],[82.05186,20.46307],[82.05693,20.45162],[82.06331,20.44604],[82.06154,20.43728],[82.06441,20.43402],[82.07164,20.432],[82.07451,20.42917],[82.07584,20.42132],[82.08529,20.41043],[82.08406,20.40463],[82.08517,20.39837],[82.0814,20.3954],[82.08037,20.39134],[82.08192,20.38562],[82.08525,20.38245],[82.08549,20.37888],[82.0808,20.36871],[82.08086,20.36533],[82.08551,20.357],[82.08857,20.3455],[82.08826,20.33679],[82.08551,20.32993],[82.09565,20.32259],[82.10538,20.30344],[82.10861,20.29074],[82.11589,20.28752],[82.13175,20.28868],[82.14515,20.28722],[82.15684,20.27724],[82.15561,20.26959],[82.16041,20.26522],[82.16655,20.26045],[82.17372,20.26056],[82.18022,20.25701],[82.17395,20.25181],[82.1637,20.23913],[82.1622,20.23583],[82.16451,20.23048],[82.16079,20.2295],[82.15452,20.22322],[82.1503,20.22288],[82.14835,20.21907],[82.14467,20.20582],[82.13899,20.19721],[82.13341,20.18286],[82.13347,20.17856],[82.13542,20.17512],[82.13242,20.16692],[82.13405,20.16292],[82.13193,20.15772],[82.13737,20.14886],[82.12925,20.14146],[82.11446,20.13476],[82.11388,20.11619],[82.10611,20.10602],[82.09259,20.10072],[82.07708,20.10291],[82.0699,20.10609],[82.06359,20.10521],[82.0448,20.09627],[82.03546,20.09929],[82.03633,20.096],[82.03132,20.07602],[82.02777,20.07238],[82.02249,20.06209],[82.02161,20.05391],[82.01768,20.04898],[82.02272,20.03215],[82.02155,20.02371],[82.03256,20.01572],[82.04,20.0226],[82.03734,20.02795],[82.03804,20.03012],[82.04121,20.03096],[82.04297,20.03491],[82.04815,20.03482],[82.04782,20.03672],[82.0564,20.04174],[82.05909,20.04498],[82.05901,20.04775],[82.06219,20.04922],[82.06065,20.05113],[82.06296,20.05204],[82.06354,20.05453],[82.07047,20.05695],[82.08543,20.05072],[82.08459,20.04605],[82.0864,20.04524],[82.08946,20.03906],[82.10228,20.04004],[82.10213,20.03629],[82.10383,20.03569],[82.1032,20.03107],[82.10547,20.0306],[82.10695,20.02725],[82.11018,20.02752],[82.11652,20.02116],[82.12679,20.0148],[82.12849,20.0142],[82.13633,20.01893],[82.13981,20.01873],[82.15347,20.00756],[82.16058,20.00912],[82.17123,20.00551],[82.17125,20.00078],[82.17369,19.99996],[82.17478,19.99675],[82.17691,19.99731],[82.18033,19.99114],[82.18347,19.98959],[82.18519,19.9873],[82.18425,19.98419],[82.1931,19.9871],[82.2101,19.98625],[82.21671,19.99706],[82.22929,19.99982],[82.23712,20.00333],[82.2462,19.99535],[82.25001,19.98906],[82.25625,19.98345],[82.26917,19.97526],[82.27487,19.96304],[82.27581,19.94859],[82.30159,19.90271],[82.30312,19.88939],[82.32634,19.86161],[82.3307,19.84485],[82.34395,19.83509],[82.34889,19.83657],[82.35985,19.84699],[82.36142,19.85075],[82.36446,19.85101],[82.36463,19.85469],[82.36041,19.85731],[82.36085,19.8628],[82.3752,19.85964],[82.38365,19.86988],[82.38295,19.87386],[82.39248,19.88205],[82.39487,19.88802],[82.40178,19.88994],[82.40524,19.89426],[82.41196,19.89851],[82.41858,19.89985],[82.41802,19.90407],[82.4262,19.90546],[82.43006,19.90401],[82.43335,19.90556],[82.43711,19.90494],[82.44599,19.91019],[82.45217,19.90871],[82.46422,19.90085],[82.47228,19.90158],[82.4729,19.90703],[82.48417,19.90791],[82.49161,19.90345],[82.49734,19.90413],[82.5049,19.89972],[82.50287,19.89447],[82.50547,19.88986],[82.5118,19.88813],[82.51912,19.89097],[82.5233,19.88308],[82.53142,19.87824],[82.53491,19.88689],[82.54214,19.88348],[82.54839,19.8757],[82.55596,19.88066],[82.56104,19.87433],[82.57302,19.87755],[82.58289,19.86942],[82.59713,19.87269],[82.60343,19.86699],[82.60256,19.86305],[82.6002,19.86019],[82.59628,19.85883],[82.59687,19.8552],[82.59041,19.85245],[82.59062,19.84892],[82.58772,19.84868],[82.58863,19.84338],[82.5839,19.84358],[82.57974,19.84011],[82.57579,19.83339],[82.57604,19.82892],[82.5794,19.83032],[82.57777,19.82498],[82.57914,19.82354],[82.57853,19.81801],[82.5762,19.81474],[82.57858,19.81108],[82.57599,19.80822],[82.58469,19.80235],[82.5827,19.795],[82.58449,19.78825],[82.58177,19.78321],[82.58359,19.78164],[82.58348,19.7788],[82.59489,19.77529],[82.59529,19.77847],[82.60215,19.78112],[82.60378,19.78812],[82.62713,19.79366],[82.63282,19.80119],[82.63663,19.81293],[82.64175,19.81454],[82.6476,19.81954],[82.65216,19.83217],[82.66592,19.83039],[82.67802,19.83212],[82.69671,19.83061],[82.70555,19.83302],[82.7114,19.84],[82.71293,19.84481],[82.7114,19.85063],[82.71816,19.85359],[82.71979,19.85685],[82.71959,19.86743],[82.72173,19.87292],[82.72458,19.87554],[82.71405,19.87781],[82.71355,19.88344],[82.70741,19.90204],[82.70909,19.9056],[82.70737,19.91299],[82.71276,19.91852],[82.71118,19.92545],[82.71307,19.93846],[82.72049,19.94829],[82.71552,19.95363],[82.71461,19.95877],[82.71752,19.96555],[82.71814,19.98914],[82.71575,19.99227],[82.71545,19.99593],[82.70727,19.99905],[82.69958,19.99757],[82.69267,20.0],[82.67012,20.00108],[82.65198,20.00589],[82.64271,20.00366],[82.64298,20.00641],[82.64151,20.00671],[82.6333,20.00487],[82.62114,19.9923],[82.60502,19.99014],[82.59573,19.99157],[82.59034,19.99373],[82.58328,20.00318],[82.57734,20.00672],[82.55011,20.01777],[82.53445,20.01785],[82.53318,20.0153],[82.50911,20.01816],[82.49373,20.02437],[82.47857,20.03817],[82.47001,20.03591],[82.46067,20.0419],[82.45753,20.03997],[82.44801,20.04066],[82.44052,20.04318],[82.43003,20.04961],[82.41682,20.05215],[82.40954,20.05179],[82.39829,20.05818],[82.39839,20.06269],[82.39583,20.06897],[82.40149,20.08102],[82.39976,20.0898],[82.40143,20.09607],[82.39818,20.10169],[82.39767,20.12377],[82.39423,20.12992],[82.39315,20.13761],[82.3858,20.14644],[82.3872,20.14905],[82.39415,20.15263],[82.39374,20.15704],[82.39001,20.1637],[82.39491,20.17012],[82.40471,20.17598],[82.40453,20.17787],[82.40754,20.18123],[82.41158,20.18149],[82.41408,20.18986],[82.41347,20.19935],[82.42062,20.20492],[82.42048,20.21308],[82.42247,20.22082],[82.41507,20.22681],[82.41063,20.24265],[82.41123,20.24538],[82.42233,20.24797],[82.41778,20.25232],[82.41601,20.25728],[82.41139,20.26011],[82.41234,20.26704],[82.41596,20.27205],[82.42503,20.27522],[82.43287,20.28181],[82.43557,20.28548],[82.43781,20.29441],[82.42998,20.30099],[82.43077,20.31402],[82.42104,20.32411],[82.41737,20.32425],[82.41295,20.328],[82.40887,20.32778],[82.40916,20.33253],[82.40151,20.33758],[82.40038,20.34158],[82.40627,20.35299],[82.40505,20.35804],[82.40915,20.36293],[82.4112,20.37129],[82.41805,20.38211],[82.41769,20.38772],[82.42117,20.39285],[82.41661,20.40765],[82.43201,20.41664],[82.42966,20.42787],[82.43786,20.43439],[82.43398,20.44567],[82.42573,20.44533],[82.42706,20.46906],[82.41763,20.48174],[82.4158,20.48151],[82.41079,20.46813],[82.40798,20.46733],[82.40855,20.46324],[82.40427,20.46005],[82.40191,20.46193],[82.39798,20.46192],[82.39606,20.45957],[82.39478,20.46229],[82.39764,20.46484],[82.39784,20.47295],[82.39608,20.47766],[82.39203,20.47869],[82.39374,20.4825],[82.39316,20.48643],[82.3906,20.48619],[82.39109,20.49243],[82.38834,20.49536],[82.38953,20.49801],[82.388,20.51073],[82.3897,20.5176],[82.37825,20.52203],[82.36806,20.52386],[82.35765,20.52933],[82.34861,20.54667],[82.3357,20.5551],[82.33223,20.56191],[82.33488,20.5646],[82.33337,20.56855],[82.34335,20.57152],[82.34836,20.5764],[82.35064,20.58127],[82.34679,20.5906],[82.34408,20.59289],[82.34374,20.59577],[82.3457,20.59656],[82.34485,20.59848],[82.34713,20.60254],[82.35256,20.60298],[82.3559,20.60925],[82.35865,20.60848],[82.36226,20.60991],[82.36292,20.61412],[82.36543,20.61588],[82.36452,20.62218],[82.37095,20.62599],[82.3765,20.63241],[82.37467,20.63907],[82.36848,20.64923],[82.36997,20.65556],[82.36875,20.65959],[82.37382,20.6674],[82.36705,20.68019],[82.36145,20.68195],[82.355,20.69319],[82.35041,20.70634],[82.35076,20.71728],[82.35401,20.71966],[82.34556,20.73159],[82.35355,20.73592],[82.34169,20.76805],[82.34364,20.77095],[82.34386,20.79223],[82.34611,20.79763],[82.34202,20.80472],[82.34317,20.80893],[82.34112,20.81249],[82.34102,20.82083],[82.33934,20.82577],[82.34157,20.83283],[82.33953,20.84684],[82.34446,20.85637],[82.34597,20.87291],[82.33616,20.8704],[82.33673,20.87766],[82.32584,20.87994],[82.31823,20.87873],[82.31278,20.88062],[82.29738,20.90152],[82.28744,20.90313],[82.27494,20.91025],[82.27017,20.92542],[82.27187,20.93549],[82.26559,20.94531],[82.26023,20.94103],[82.24946,20.93974],[82.24584,20.94144],[82.24279,20.9473],[82.23661,20.94723],[82.2282,20.9521],[82.22383,20.95205],[82.22074,20.95024],[82.22441,20.94549],[82.22621,20.93875],[82.21971,20.93467],[82.21367,20.93886],[82.20949,20.93925],[82.20674,20.94257],[82.19847,20.93916],[82.19028,20.94968],[82.18637,20.96691],[82.18233,20.9665],[82.17669,20.96844],[82.17184,20.97457],[82.17386,20.98436],[82.17142,20.9977],[82.16695,21.00307],[82.167,21.00793],[82.16212,21.01611],[82.14756,21.01636],[82.13974,21.01879],[82.12739,21.01602],[82.10823,21.026],[82.09291,21.02574],[82.08184,21.0323],[82.0782,21.03907],[82.06712,21.04506],[82.06113,21.06158],[82.05801,21.06252],[82.05161,21.05979],[82.04045,21.05906],[82.02833,21.05592],[82.02177,21.05834],[82.01426,21.06391],[82.00724,21.0743],[82.00278,21.07619],[81.99526,21.07657]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"646","area_level":"District","area_name":"Balod","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.15897,21.0759],[81.15915,21.07857],[81.15318,21.07552],[81.15071,21.07786],[81.14418,21.07091],[81.14453,21.06754],[81.14791,21.06341],[81.14826,21.06052],[81.15116,21.05897],[81.15117,21.05692],[81.14806,21.0547],[81.14642,21.0506],[81.13975,21.04737],[81.14038,21.03965],[81.13365,21.0316],[81.13682,21.03122],[81.13786,21.02862],[81.13501,21.02876],[81.13615,21.02654],[81.13148,21.02175],[81.13257,21.02025],[81.12991,21.01686],[81.12785,21.01834],[81.12669,21.01671],[81.12223,21.01713],[81.12823,21.0157],[81.12263,21.01054],[81.12078,21.01092],[81.12214,21.0078],[81.12049,21.00452],[81.11876,21.00688],[81.11676,21.00359],[81.11484,21.00407],[81.11437,21.00678],[81.11111,21.0033],[81.10671,21.00304],[81.10013,21.00522],[81.09395,21.00168],[81.09012,20.99622],[81.07488,20.9993],[81.07147,20.99456],[81.06143,20.99416],[81.06107,20.99274],[81.05449,20.99496],[81.03746,20.99563],[81.03583,20.99705],[81.02451,20.99267],[81.02028,20.99368],[81.01909,20.99675],[81.01352,20.99834],[81.01275,21.00003],[81.00383,20.99986],[80.99767,21.00391],[80.99045,21.00285],[80.9877,21.00556],[80.98898,21.00661],[80.98758,21.0078],[80.98546,21.00636],[80.9723,21.00737],[80.97321,21.00393],[80.97204,21.00359],[80.9535,21.00318],[80.95263,20.99815],[80.95381,20.99645],[80.95269,20.99576],[80.95466,20.99405],[80.95476,20.98833],[80.95662,20.98718],[80.95585,20.98306],[80.95379,20.98118],[80.95373,20.9824],[80.95077,20.9824],[80.94522,20.98087],[80.9449,20.97766],[80.9434,20.97853],[80.9391,20.97707],[80.94532,20.97189],[80.9534,20.96951],[80.94926,20.96847],[80.94919,20.96588],[80.94659,20.96397],[80.94422,20.95266],[80.94213,20.95246],[80.94181,20.94677],[80.94335,20.94464],[80.95613,20.95128],[80.963,20.94971],[80.96059,20.94045],[80.96304,20.93636],[80.96288,20.92689],[80.96729,20.92396],[80.96619,20.92057],[80.96464,20.92016],[80.96564,20.90779],[80.96795,20.90628],[80.97046,20.90035],[80.98162,20.89894],[80.98274,20.89758],[80.98201,20.89008],[80.99518,20.88332],[80.99465,20.8789],[80.99001,20.87712],[80.98231,20.86425],[80.96909,20.8573],[80.96445,20.85803],[80.95632,20.85562],[80.9494,20.84308],[80.95444,20.83773],[80.95814,20.83716],[80.9619,20.8395],[80.96545,20.83577],[80.96574,20.82973],[80.96918,20.82461],[80.97523,20.82886],[80.98039,20.81862],[80.9785,20.81096],[80.97404,20.81208],[80.97018,20.8106],[80.96756,20.81799],[80.96087,20.82422],[80.95665,20.82339],[80.95621,20.81963],[80.95976,20.82044],[80.95955,20.81799],[80.95761,20.81519],[80.94822,20.81183],[80.94638,20.80702],[80.94802,20.80397],[80.93978,20.79808],[80.93572,20.77994],[80.93128,20.7808],[80.93216,20.77689],[80.92945,20.77702],[80.92516,20.77206],[80.92624,20.7767],[80.92156,20.78248],[80.91112,20.78295],[80.90944,20.77874],[80.90415,20.78516],[80.90062,20.78623],[80.90015,20.79228],[80.90701,20.79234],[80.90531,20.80197],[80.90054,20.80208],[80.90033,20.80809],[80.89589,20.80681],[80.89068,20.79961],[80.88791,20.79855],[80.886,20.79854],[80.88586,20.80131],[80.88348,20.80369],[80.87209,20.79615],[80.87038,20.78653],[80.86573,20.78467],[80.86128,20.78011],[80.84193,20.76945],[80.82327,20.76464],[80.82424,20.76175],[80.82212,20.76025],[80.81809,20.76068],[80.81707,20.75605],[80.82096,20.75046],[80.8195,20.74503],[80.81492,20.73945],[80.81492,20.73587],[80.80937,20.73302],[80.80971,20.7314],[80.81157,20.73125],[80.80985,20.72744],[80.80321,20.72221],[80.80357,20.71718],[80.80572,20.71467],[80.8101,20.71315],[80.80718,20.70926],[80.8121,20.70759],[80.81389,20.70158],[80.81185,20.69882],[80.81352,20.69796],[80.81465,20.69094],[80.81658,20.68872],[80.82759,20.68389],[80.83462,20.68619],[80.85901,20.68939],[80.86043,20.68835],[80.85386,20.67649],[80.85496,20.67106],[80.86262,20.6653],[80.87268,20.66706],[80.88201,20.65571],[80.88988,20.6555],[80.89537,20.66302],[80.89702,20.65965],[80.89976,20.66015],[80.90415,20.66133],[80.90956,20.66573],[80.91176,20.64841],[80.91858,20.64827],[80.92506,20.65891],[80.9275,20.66751],[80.93899,20.66415],[80.9494,20.66872],[80.95361,20.66523],[80.96178,20.66415],[80.95712,20.65565],[80.9559,20.64688],[80.95303,20.64316],[80.95321,20.63981],[80.95835,20.63395],[80.95831,20.63037],[80.96382,20.62902],[80.96376,20.63006],[80.96795,20.63013],[80.97113,20.62295],[80.97632,20.62262],[80.97557,20.61933],[80.97883,20.61311],[80.98389,20.61075],[80.99175,20.61155],[80.98999,20.60982],[80.99241,20.60545],[80.99922,20.6025],[81.00145,20.5993],[81.00658,20.5983],[81.00406,20.59276],[81.00357,20.5845],[81.00663,20.5773],[81.00655,20.57381],[80.99446,20.56409],[80.98858,20.56759],[80.98888,20.56271],[80.98519,20.55846],[80.98467,20.55148],[80.98972,20.5439],[80.97516,20.54154],[80.96837,20.54239],[80.96579,20.54055],[80.95419,20.54081],[80.95553,20.52813],[80.95808,20.52479],[80.96082,20.50721],[80.96757,20.51052],[80.97671,20.50827],[80.97932,20.50741],[80.97975,20.50183],[80.98333,20.50074],[80.98461,20.48688],[80.98146,20.48163],[80.98467,20.47195],[80.98896,20.46709],[80.99188,20.45929],[80.99983,20.45119],[81.0137,20.44708],[81.02395,20.44165],[81.03373,20.42742],[81.05266,20.4204],[81.07713,20.41858],[81.09092,20.41235],[81.09559,20.40697],[81.10447,20.40431],[81.10862,20.39891],[81.11305,20.39879],[81.13087,20.38986],[81.1492,20.37698],[81.16915,20.39623],[81.17312,20.40614],[81.1766,20.4062],[81.18862,20.41165],[81.19673,20.41153],[81.20254,20.41597],[81.2219,20.41869],[81.22663,20.42468],[81.22621,20.4328],[81.22711,20.43136],[81.23366,20.43029],[81.23602,20.43653],[81.23491,20.44359],[81.23727,20.44499],[81.24381,20.44018],[81.25437,20.44733],[81.252,20.4539],[81.24912,20.45601],[81.25102,20.46027],[81.25776,20.46651],[81.2595,20.47305],[81.2634,20.47677],[81.26386,20.48076],[81.26344,20.48379],[81.26065,20.48371],[81.25907,20.48538],[81.26057,20.48927],[81.25749,20.49737],[81.25305,20.4988],[81.26136,20.50699],[81.27471,20.51475],[81.28214,20.51683],[81.29112,20.51644],[81.3025,20.52912],[81.3051,20.53028],[81.3068,20.54258],[81.31067,20.54916],[81.32432,20.5628],[81.33577,20.55852],[81.33912,20.55373],[81.3495,20.55625],[81.35739,20.55518],[81.36498,20.54808],[81.36825,20.54165],[81.37568,20.53706],[81.38659,20.53339],[81.39368,20.54581],[81.41058,20.55459],[81.42368,20.55257],[81.42819,20.5624],[81.44536,20.5675],[81.45511,20.56692],[81.45299,20.57564],[81.44727,20.58528],[81.44944,20.58656],[81.45689,20.58814],[81.46425,20.58446],[81.4705,20.58826],[81.46944,20.59072],[81.47499,20.59104],[81.48102,20.58877],[81.48877,20.58221],[81.4953,20.58783],[81.51571,20.58943],[81.5119,20.59596],[81.51036,20.59275],[81.50841,20.59219],[81.49801,20.59349],[81.49282,20.59714],[81.49224,20.59147],[81.49048,20.59133],[81.4714,20.59502],[81.47301,20.59937],[81.48107,20.60161],[81.49072,20.60252],[81.49144,20.59998],[81.49165,20.60195],[81.51289,20.6135],[81.51379,20.62336],[81.51085,20.62371],[81.50912,20.62059],[81.50002,20.61784],[81.49962,20.61222],[81.49734,20.61068],[81.49141,20.61712],[81.49187,20.61871],[81.48943,20.62226],[81.49161,20.62456],[81.48855,20.62705],[81.49108,20.63325],[81.50049,20.6365],[81.50097,20.6439],[81.49694,20.65192],[81.49239,20.65487],[81.49447,20.66206],[81.50278,20.6623],[81.50275,20.66346],[81.50557,20.66394],[81.51045,20.66319],[81.51302,20.67825],[81.51134,20.68562],[81.50988,20.68576],[81.50818,20.68978],[81.50913,20.69339],[81.51224,20.69576],[81.51205,20.699],[81.5146,20.7006],[81.5161,20.71375],[81.50211,20.71894],[81.4992,20.71828],[81.49955,20.71702],[81.49472,20.7136],[81.491,20.71423],[81.48685,20.72098],[81.48461,20.72119],[81.48404,20.72564],[81.47818,20.72731],[81.48288,20.73965],[81.48769,20.74546],[81.48454,20.74924],[81.48597,20.75185],[81.48475,20.75307],[81.48789,20.75867],[81.4859,20.76452],[81.48348,20.76438],[81.48156,20.76809],[81.47922,20.7683],[81.47856,20.77606],[81.49424,20.78207],[81.49489,20.78997],[81.50171,20.79225],[81.50472,20.79742],[81.51078,20.79811],[81.51477,20.81156],[81.51325,20.81535],[81.51605,20.82014],[81.51703,20.82776],[81.51538,20.82953],[81.49937,20.83024],[81.49731,20.83323],[81.4933,20.8334],[81.49296,20.83866],[81.49484,20.84216],[81.4978,20.84185],[81.49827,20.84702],[81.49016,20.8499],[81.48908,20.85196],[81.48428,20.85165],[81.4783,20.85606],[81.47532,20.8563],[81.47335,20.86035],[81.474,20.86833],[81.47208,20.87067],[81.45997,20.86887],[81.4602,20.86573],[81.46537,20.86227],[81.46418,20.85766],[81.46645,20.8542],[81.45847,20.85521],[81.45142,20.8491],[81.44731,20.85438],[81.44211,20.85158],[81.43507,20.85133],[81.42906,20.8558],[81.42516,20.85178],[81.42306,20.85268],[81.4205,20.84991],[81.41649,20.84939],[81.41587,20.85252],[81.40728,20.85423],[81.40746,20.85616],[81.40447,20.85925],[81.39765,20.85872],[81.38803,20.86858],[81.39137,20.88079],[81.39361,20.87935],[81.39622,20.88018],[81.39961,20.87697],[81.39822,20.88392],[81.41302,20.89002],[81.41421,20.89903],[81.4091,20.89956],[81.40813,20.91319],[81.40678,20.91322],[81.40664,20.91771],[81.40526,20.91888],[81.40633,20.92681],[81.40516,20.93136],[81.40994,20.93412],[81.40995,20.93607],[81.40609,20.93556],[81.40485,20.9401],[81.41499,20.94695],[81.41508,20.94856],[81.4171,20.94866],[81.41697,20.95044],[81.42158,20.9504],[81.428,20.9634],[81.4254,20.96376],[81.42547,20.96675],[81.42062,20.96767],[81.42076,20.96933],[81.41017,20.97231],[81.4087,20.97717],[81.40345,20.98273],[81.42083,20.98753],[81.42007,21.00635],[81.4121,21.00556],[81.40752,21.00879],[81.4037,21.00872],[81.40024,21.0157],[81.39407,21.01586],[81.39499,21.01935],[81.39422,21.02124],[81.39248,21.02117],[81.39225,21.025],[81.38923,21.02777],[81.39148,21.03873],[81.38917,21.04317],[81.39022,21.05599],[81.38378,21.05682],[81.37168,21.05439],[81.36974,21.04382],[81.37212,21.04405],[81.3687,21.03923],[81.36558,21.038],[81.36068,21.03927],[81.35794,21.03676],[81.35368,21.03713],[81.35126,21.04043],[81.34825,21.04154],[81.33989,21.0375],[81.32904,21.03656],[81.30782,21.04105],[81.30439,21.04051],[81.30198,21.04426],[81.30119,21.0622],[81.29023,21.05592],[81.28377,21.04894],[81.2723,21.04929],[81.2733,21.04062],[81.27072,21.03701],[81.26514,21.04146],[81.24039,21.0421],[81.23945,21.04537],[81.2351,21.0468],[81.22426,21.0469],[81.2194,21.02846],[81.2087,21.02816],[81.20673,21.03674],[81.19176,21.03935],[81.19632,21.05763],[81.19249,21.0588],[81.1914,21.07158],[81.17957,21.07109],[81.17759,21.0693],[81.15868,21.0697],[81.15897,21.0759]],[[81.45329,20.6193],[81.45908,20.6257],[81.4625,20.62081],[81.46208,20.61623],[81.46009,20.6121],[81.45602,20.61031],[81.45556,20.60853],[81.45111,20.6073],[81.44927,20.60432],[81.44922,20.58964],[81.44454,20.58824],[81.44556,20.59152],[81.44302,20.59483],[81.44386,20.60203],[81.44649,20.60393],[81.44787,20.61208],[81.45126,20.61145],[81.45237,20.61376],[81.44959,20.61407],[81.4498,20.61543],[81.4544,20.61756],[81.45329,20.6193]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"647","area_level":"District","area_name":"Mungeli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.73333,22.6687],[81.72642,22.67408],[81.72432,22.67098],[81.72464,22.66498],[81.72272,22.65706],[81.71395,22.64865],[81.69889,22.64476],[81.68877,22.64847],[81.68465,22.64782],[81.67576,22.63912],[81.67205,22.63256],[81.66904,22.63196],[81.66244,22.62681],[81.6609,22.61929],[81.65274,22.61856],[81.64921,22.61599],[81.64725,22.61326],[81.64571,22.60487],[81.64803,22.5977],[81.64649,22.59341],[81.64943,22.58895],[81.64498,22.58686],[81.64548,22.58444],[81.64896,22.58496],[81.64971,22.58145],[81.65184,22.58085],[81.65783,22.58444],[81.65517,22.57881],[81.65556,22.57582],[81.65618,22.57229],[81.65993,22.56946],[81.65346,22.56302],[81.64929,22.56328],[81.64277,22.55971],[81.63874,22.5611],[81.63625,22.56005],[81.63519,22.56528],[81.62903,22.56336],[81.62404,22.55588],[81.62869,22.54442],[81.62194,22.53802],[81.61542,22.53692],[81.61321,22.53867],[81.60499,22.53461],[81.59998,22.53526],[81.59634,22.53653],[81.59183,22.54522],[81.58623,22.54392],[81.56955,22.55073],[81.56283,22.5475],[81.56275,22.54236],[81.56303,22.53396],[81.57003,22.53227],[81.56253,22.53344],[81.55895,22.53079],[81.55296,22.53105],[81.54608,22.52758],[81.54098,22.53304],[81.53267,22.53853],[81.52223,22.53901],[81.52134,22.5366],[81.52344,22.53217],[81.51824,22.5198],[81.51049,22.52196],[81.50931,22.52606],[81.49696,22.51975],[81.49553,22.51426],[81.49744,22.51164],[81.49442,22.50501],[81.48868,22.50179],[81.48631,22.49376],[81.48701,22.49024],[81.48471,22.48783],[81.47843,22.49226],[81.46994,22.48383],[81.47569,22.45576],[81.49132,22.44783],[81.49196,22.4413],[81.48634,22.43787],[81.48697,22.43418],[81.48484,22.43076],[81.48818,22.42275],[81.49363,22.42045],[81.50164,22.39997],[81.51225,22.39907],[81.51646,22.39445],[81.51701,22.39155],[81.51223,22.38117],[81.51394,22.38],[81.51695,22.38164],[81.52362,22.37802],[81.52438,22.3735],[81.52884,22.37063],[81.53487,22.35758],[81.53656,22.35724],[81.53507,22.35586],[81.53757,22.35551],[81.53685,22.35334],[81.53913,22.35407],[81.53878,22.3522],[81.54054,22.35292],[81.54141,22.35176],[81.54323,22.35273],[81.54445,22.34871],[81.54683,22.34861],[81.5499,22.34498],[81.55462,22.34534],[81.55606,22.33989],[81.54106,22.31512],[81.52687,22.31154],[81.52431,22.31041],[81.52583,22.30946],[81.52387,22.30794],[81.52883,22.30508],[81.53137,22.29329],[81.53887,22.28516],[81.53738,22.28291],[81.53351,22.28359],[81.53396,22.27809],[81.53146,22.27439],[81.53611,22.27633],[81.53819,22.273],[81.54539,22.27271],[81.55175,22.26691],[81.55119,22.26056],[81.54894,22.25919],[81.55149,22.25723],[81.55197,22.25427],[81.54918,22.2466],[81.55236,22.24105],[81.54839,22.23683],[81.5482,22.23112],[81.54574,22.23142],[81.54499,22.2343],[81.54314,22.23317],[81.5365,22.21915],[81.53662,22.21428],[81.53314,22.21271],[81.53704,22.20884],[81.5386,22.20322],[81.53535,22.20079],[81.53289,22.19334],[81.53244,22.18605],[81.52743,22.16838],[81.52886,22.16176],[81.52544,22.15615],[81.5179,22.1565],[81.51567,22.15413],[81.51364,22.13252],[81.51522,22.12033],[81.51386,22.11082],[81.51638,22.10193],[81.51738,22.08625],[81.52099,22.08417],[81.5183,22.0818],[81.5107,22.06322],[81.50835,22.05619],[81.51112,22.05262],[81.50825,22.0503],[81.5056,22.04174],[81.50472,22.03261],[81.51106,22.03186],[81.51191,22.01936],[81.50098,22.00341],[81.50752,22.00289],[81.51174,21.99859],[81.52033,22.00676],[81.52686,22.00389],[81.52829,22.00537],[81.53278,22.00425],[81.53341,22.00611],[81.53173,22.00544],[81.53292,22.00669],[81.54015,22.00698],[81.54752,22.00517],[81.54962,22.00285],[81.55736,22.00177],[81.55921,21.99795],[81.55784,21.99524],[81.56722,21.9945],[81.57214,21.99653],[81.57379,21.99429],[81.57343,21.98967],[81.57648,21.98846],[81.5772,21.9834],[81.57986,21.98202],[81.58419,21.98816],[81.5898,21.9879],[81.59162,21.99319],[81.5888,21.99791],[81.58983,22.00266],[81.5884,22.00324],[81.58903,22.00653],[81.59133,22.00671],[81.59128,22.01077],[81.58616,22.01599],[81.58329,22.01464],[81.57348,22.01657],[81.5734,22.02035],[81.57734,22.02425],[81.58398,22.02408],[81.58487,22.01819],[81.58873,22.01771],[81.59001,22.01928],[81.59612,22.01692],[81.59671,22.01807],[81.6037,22.01742],[81.60719,22.01675],[81.60604,22.01511],[81.61113,22.01347],[81.60916,22.00962],[81.61172,22.00827],[81.61096,22.00422],[81.61688,22.00202],[81.61572,21.98837],[81.62367,21.98768],[81.62668,21.98573],[81.63257,21.98839],[81.63294,21.99106],[81.64022,21.98901],[81.64775,21.9924],[81.64773,21.99061],[81.65514,21.98906],[81.65528,21.98778],[81.65746,21.98812],[81.65969,21.98555],[81.66326,21.98463],[81.66316,21.98121],[81.65876,21.97795],[81.65786,21.96887],[81.66779,21.96265],[81.6832,21.95883],[81.68626,21.95986],[81.68647,21.96225],[81.70562,21.95971],[81.70677,21.95887],[81.70585,21.95238],[81.71524,21.9535],[81.71568,21.95196],[81.72109,21.9507],[81.72164,21.94643],[81.7276,21.94365],[81.72923,21.94366],[81.72971,21.94693],[81.7394,21.9465],[81.74231,21.94941],[81.74463,21.94909],[81.7528,21.95994],[81.75549,21.95858],[81.75599,21.95386],[81.76308,21.94735],[81.77116,21.94953],[81.77296,21.95402],[81.78678,21.9501],[81.7863,21.9466],[81.79664,21.94816],[81.80016,21.94732],[81.79625,21.93645],[81.79587,21.92911],[81.80347,21.92488],[81.80343,21.92288],[81.82014,21.91892],[81.82461,21.91328],[81.82293,21.89989],[81.81872,21.89767],[81.81641,21.88376],[81.82062,21.88202],[81.82084,21.88014],[81.8313,21.87876],[81.83351,21.87995],[81.83598,21.87834],[81.84166,21.88066],[81.84213,21.88628],[81.83789,21.89266],[81.853,21.89742],[81.85875,21.89744],[81.85768,21.88899],[81.86069,21.88824],[81.86143,21.88393],[81.86961,21.88211],[81.87509,21.88614],[81.8755,21.89138],[81.88583,21.89285],[81.88857,21.88925],[81.90072,21.8834],[81.898,21.88022],[81.89484,21.86985],[81.89635,21.86751],[81.89875,21.86894],[81.9007,21.86794],[81.89945,21.85203],[81.89431,21.84019],[81.92154,21.83329],[81.92318,21.82432],[81.93711,21.81391],[81.94859,21.82425],[81.95217,21.83548],[81.95116,21.8421],[81.95293,21.8442],[81.97503,21.85242],[82.00556,21.85429],[82.02184,21.85794],[82.02838,21.86419],[82.02848,21.87323],[82.0305,21.87801],[82.03319,21.8815],[82.037,21.88329],[82.0284,21.89552],[82.02783,21.90052],[82.02458,21.90501],[82.02415,21.90958],[82.02195,21.91293],[82.01724,21.91522],[82.00902,21.91478],[82.00288,21.91658],[82.00129,21.92842],[81.99093,21.93869],[81.99256,21.94252],[81.99194,21.94678],[81.99718,21.95022],[82.00143,21.95811],[82.00953,21.96258],[82.01218,21.96608],[82.0116,21.96986],[82.00816,21.97451],[82.00868,21.98095],[82.00219,21.985],[82.00088,21.99197],[81.99249,21.99325],[81.98844,21.99104],[81.98538,21.99169],[81.98189,21.99885],[81.97326,22.00499],[81.97075,22.0049],[81.96404,21.99962],[81.95456,22.00342],[81.95349,22.00538],[81.95457,22.00729],[81.96302,22.00729],[81.96422,22.01075],[81.96201,22.01483],[81.95257,22.01628],[81.95032,22.01871],[81.95049,22.02187],[81.95624,22.03229],[81.95039,22.03761],[81.95124,22.04696],[81.94747,22.0509],[81.9436,22.0472],[81.9412,22.04741],[81.94241,22.05305],[81.94029,22.05659],[81.93681,22.05831],[81.9341,22.05551],[81.93179,22.05585],[81.93172,22.05872],[81.93425,22.06301],[81.9322,22.06686],[81.92917,22.06766],[81.92882,22.06362],[81.92338,22.06427],[81.92468,22.0698],[81.923,22.07281],[81.91846,22.07529],[81.91359,22.07473],[81.90763,22.07949],[81.90783,22.08302],[81.91266,22.08541],[81.90859,22.08781],[81.90557,22.09361],[81.90262,22.09577],[81.90579,22.10094],[81.90364,22.10695],[81.89679,22.10626],[81.89501,22.09919],[81.8904,22.10072],[81.89001,22.10355],[81.89263,22.10899],[81.88532,22.1144],[81.87862,22.12607],[81.87633,22.12566],[81.87108,22.1205],[81.86859,22.12105],[81.86652,22.13133],[81.86412,22.13387],[81.85947,22.1334],[81.85805,22.14188],[81.85381,22.14994],[81.8459,22.15237],[81.83735,22.16356],[81.831,22.16567],[81.82837,22.16996],[81.8224,22.17353],[81.82185,22.17821],[81.81552,22.18482],[81.81593,22.19217],[81.81303,22.19783],[81.81529,22.20298],[81.80976,22.20661],[81.81028,22.21254],[81.80395,22.2189],[81.80286,22.22205],[81.7991,22.22104],[81.79524,22.22305],[81.78898,22.22262],[81.78696,22.22468],[81.78324,22.22357],[81.77981,22.22618],[81.77344,22.2258],[81.77126,22.23386],[81.76573,22.23535],[81.76661,22.24164],[81.7643,22.24249],[81.76171,22.23999],[81.75991,22.24023],[81.75548,22.24879],[81.74947,22.24698],[81.74301,22.24992],[81.73895,22.24857],[81.7375,22.25078],[81.73235,22.24917],[81.73104,22.25062],[81.73401,22.254],[81.7307,22.26342],[81.73272,22.26438],[81.7337,22.26941],[81.74209,22.26789],[81.74276,22.27386],[81.73909,22.27832],[81.74374,22.31256],[81.74952,22.30731],[81.75673,22.30353],[81.75733,22.29775],[81.76041,22.2951],[81.75951,22.29314],[81.76388,22.29035],[81.76705,22.2918],[81.76749,22.30236],[81.77449,22.30705],[81.77696,22.30632],[81.78046,22.30121],[81.78793,22.29556],[81.78435,22.29275],[81.78168,22.29339],[81.78536,22.2873],[81.80489,22.28812],[81.80619,22.28402],[81.81501,22.29095],[81.82428,22.29309],[81.82288,22.28461],[81.8124,22.27767],[81.82288,22.26994],[81.82562,22.28091],[81.8334,22.28295],[81.83506,22.28688],[81.84122,22.28875],[81.85792,22.2889],[81.86255,22.29106],[81.86153,22.2934],[81.85171,22.29561],[81.85294,22.30629],[81.8566,22.31033],[81.86343,22.31212],[81.86648,22.3179],[81.87326,22.32176],[81.88252,22.31972],[81.88427,22.31722],[81.88735,22.31787],[81.88761,22.31647],[81.89027,22.31593],[81.89718,22.30463],[81.90404,22.31096],[81.9138,22.31169],[81.91533,22.29294],[81.92466,22.29224],[81.92926,22.2942],[81.92673,22.29624],[81.92747,22.30129],[81.93894,22.3091],[81.93584,22.311],[81.93397,22.31015],[81.92972,22.31529],[81.93061,22.32558],[81.93445,22.32385],[81.93523,22.33879],[81.92944,22.34102],[81.92711,22.34483],[81.92807,22.3515],[81.9248,22.35444],[81.92614,22.35491],[81.92513,22.35953],[81.93078,22.3616],[81.94287,22.35599],[81.95072,22.34785],[81.95481,22.346],[81.9543,22.34183],[81.95604,22.34075],[81.95863,22.34103],[81.95947,22.34559],[81.96452,22.35103],[81.963,22.35243],[81.96382,22.35472],[81.97037,22.35475],[81.9764,22.35997],[81.97197,22.36633],[81.96606,22.36855],[81.965,22.37088],[81.96653,22.37223],[81.96617,22.37473],[81.96019,22.37914],[81.95855,22.38777],[81.9527,22.39301],[81.95172,22.39829],[81.94728,22.4046],[81.93514,22.41075],[81.92477,22.41224],[81.92191,22.42183],[81.91569,22.42655],[81.91494,22.43221],[81.90923,22.4388],[81.90545,22.43951],[81.90161,22.44262],[81.90085,22.449],[81.903,22.44892],[81.90321,22.4502],[81.89805,22.45532],[81.91096,22.46172],[81.9078,22.46697],[81.90479,22.4678],[81.90397,22.47205],[81.90538,22.47469],[81.9022,22.48146],[81.87649,22.48751],[81.8654,22.49341],[81.859,22.50255],[81.8474,22.50436],[81.84066,22.50809],[81.83202,22.5338],[81.83669,22.54345],[81.83479,22.55973],[81.83218,22.56415],[81.83691,22.57054],[81.82811,22.57047],[81.82811,22.57705],[81.82598,22.57762],[81.82458,22.57434],[81.81344,22.57424],[81.80946,22.57035],[81.80268,22.5698],[81.80046,22.56328],[81.79899,22.56291],[81.79259,22.56922],[81.79555,22.57176],[81.79008,22.57297],[81.79255,22.5806],[81.78633,22.58127],[81.78823,22.58845],[81.78317,22.58833],[81.78536,22.59417],[81.78857,22.59698],[81.78304,22.59833],[81.77809,22.59485],[81.7745,22.59567],[81.77237,22.59433],[81.7665,22.59661],[81.75524,22.59184],[81.75392,22.59382],[81.74685,22.59135],[81.74674,22.59353],[81.75027,22.5972],[81.75061,22.60694],[81.74089,22.60709],[81.74075,22.61258],[81.7372,22.61235],[81.73879,22.61562],[81.73485,22.61894],[81.73513,22.62538],[81.7331,22.63198],[81.72827,22.63425],[81.73271,22.64323],[81.73168,22.64625],[81.73497,22.64822],[81.73674,22.655],[81.73594,22.66246],[81.73333,22.6687]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"648","area_level":"District","area_name":"Surajpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.69453,23.90971],[82.69312,23.91894],[82.68888,23.9098],[82.6834,23.90929],[82.68058,23.90715],[82.67638,23.90925],[82.67466,23.90674],[82.67115,23.90579],[82.66203,23.90783],[82.6576,23.90254],[82.65122,23.89008],[82.65123,23.88676],[82.66845,23.87179],[82.66448,23.86255],[82.66022,23.86284],[82.66156,23.85693],[82.65997,23.85478],[82.65157,23.85548],[82.65058,23.85685],[82.65287,23.85879],[82.64958,23.86025],[82.64683,23.85914],[82.64721,23.85597],[82.6451,23.85511],[82.64718,23.85369],[82.64714,23.84872],[82.64244,23.84694],[82.63814,23.84798],[82.63674,23.84448],[82.63917,23.84165],[82.63534,23.83771],[82.62954,23.83879],[82.60756,23.83329],[82.60224,23.8303],[82.59995,23.82653],[82.58862,23.82144],[82.58361,23.82071],[82.58181,23.82301],[82.57922,23.82241],[82.57776,23.82423],[82.5732,23.82406],[82.56937,23.8203],[82.56476,23.82074],[82.56322,23.82285],[82.55425,23.8262],[82.54674,23.82619],[82.54749,23.82255],[82.53307,23.82215],[82.53355,23.82023],[82.53834,23.8202],[82.5388,23.81637],[82.54844,23.80855],[82.55147,23.79064],[82.54181,23.79149],[82.53813,23.79425],[82.53549,23.7908],[82.52446,23.78374],[82.51097,23.78602],[82.50634,23.78478],[82.49799,23.78562],[82.49893,23.77558],[82.49765,23.76781],[82.49923,23.76344],[82.50294,23.75996],[82.50878,23.76088],[82.51484,23.75618],[82.5217,23.75858],[82.52982,23.75819],[82.53764,23.76167],[82.54052,23.75787],[82.54572,23.7567],[82.54585,23.75458],[82.54881,23.75389],[82.55176,23.74854],[82.55085,23.74354],[82.55244,23.74261],[82.55339,23.7373],[82.56189,23.73371],[82.56614,23.73382],[82.56593,23.72558],[82.57133,23.71972],[82.57544,23.71992],[82.58074,23.70777],[82.5851,23.70581],[82.58712,23.69886],[82.59576,23.69262],[82.59821,23.68126],[82.60142,23.67537],[82.60105,23.66551],[82.60319,23.66169],[82.59231,23.64944],[82.59356,23.64681],[82.59106,23.64392],[82.58064,23.63962],[82.57816,23.6308],[82.5744,23.62641],[82.57516,23.61802],[82.5796,23.6129],[82.57657,23.60768],[82.57851,23.60392],[82.57792,23.59014],[82.57608,23.5861],[82.57811,23.58044],[82.58348,23.57703],[82.57826,23.57415],[82.57981,23.57155],[82.57842,23.57024],[82.5826,23.56337],[82.58523,23.55278],[82.58016,23.54655],[82.58204,23.54176],[82.5923,23.53062],[82.60366,23.52516],[82.60513,23.52024],[82.61395,23.51278],[82.62154,23.51364],[82.6287,23.50965],[82.63188,23.50483],[82.64177,23.50056],[82.64433,23.48858],[82.64339,23.48428],[82.65025,23.47828],[82.64997,23.47614],[82.64681,23.47413],[82.65208,23.46933],[82.65037,23.4657],[82.65383,23.45843],[82.65247,23.45414],[82.65462,23.44293],[82.65305,23.43809],[82.6565,23.41903],[82.65108,23.40681],[82.64931,23.39181],[82.65013,23.38496],[82.65528,23.38198],[82.66444,23.38199],[82.66744,23.3757],[82.67111,23.37497],[82.67574,23.37023],[82.69673,23.36968],[82.71493,23.36075],[82.71821,23.36113],[82.72284,23.36478],[82.72725,23.36494],[82.74111,23.35981],[82.74835,23.35482],[82.75051,23.35096],[82.75024,23.34657],[82.75658,23.33435],[82.75195,23.32061],[82.75501,23.31813],[82.75684,23.30264],[82.75593,23.29962],[82.74909,23.29793],[82.74658,23.29554],[82.74463,23.28486],[82.746,23.27667],[82.74359,23.27369],[82.74529,23.27061],[82.74438,23.26847],[82.75209,23.26608],[82.75585,23.26799],[82.7583,23.26324],[82.76203,23.2635],[82.76719,23.25992],[82.77073,23.26118],[82.77215,23.25843],[82.76428,23.25461],[82.76286,23.25724],[82.75533,23.25674],[82.74464,23.25129],[82.73872,23.25224],[82.73583,23.24823],[82.73355,23.25024],[82.72921,23.24964],[82.72717,23.24666],[82.7236,23.24569],[82.71469,23.24609],[82.70872,23.24367],[82.69662,23.2445],[82.69116,23.23526],[82.68842,23.22622],[82.6813,23.21762],[82.67349,23.21539],[82.66415,23.20655],[82.64906,23.15695],[82.64337,23.15561],[82.64336,23.14994],[82.64131,23.14973],[82.64031,23.14622],[82.63777,23.14527],[82.63653,23.14092],[82.62137,23.14231],[82.61706,23.14461],[82.61394,23.14206],[82.61267,23.14404],[82.60943,23.14474],[82.59497,23.13342],[82.5821,23.13137],[82.5768,23.12772],[82.57812,23.11908],[82.58043,23.11671],[82.58319,23.10539],[82.58668,23.09869],[82.58371,23.08379],[82.5743,23.08456],[82.56898,23.07532],[82.57292,23.07109],[82.58646,23.06217],[82.58583,23.05935],[82.58,23.0584],[82.57766,23.0513],[82.58484,23.05022],[82.58722,23.04792],[82.59007,23.03977],[82.5952,23.03608],[82.59489,23.02274],[82.59729,23.02208],[82.60071,23.02486],[82.60544,23.02519],[82.60572,23.01956],[82.59655,22.99915],[82.58969,22.99726],[82.58373,22.99801],[82.58159,22.99638],[82.58193,22.99074],[82.58682,22.98182],[82.58567,22.97788],[82.57792,22.97012],[82.57317,22.96113],[82.56876,22.96312],[82.56424,22.96252],[82.55854,22.95838],[82.55945,22.95569],[82.57278,22.94869],[82.572,22.94184],[82.57598,22.93661],[82.57259,22.92785],[82.57484,22.92195],[82.57301,22.91472],[82.57994,22.90906],[82.58937,22.90767],[82.59304,22.89815],[82.59218,22.89548],[82.58937,22.89424],[82.57935,22.89778],[82.57393,22.89706],[82.57712,22.89064],[82.5764,22.8867],[82.57113,22.87737],[82.56799,22.86713],[82.56346,22.86495],[82.55865,22.86606],[82.55636,22.86264],[82.55638,22.84824],[82.56268,22.84201],[82.57105,22.82964],[82.57825,22.83172],[82.5984,22.83257],[82.60541,22.82696],[82.61052,22.82736],[82.61667,22.82351],[82.63452,22.8185],[82.63893,22.81136],[82.65044,22.80897],[82.65967,22.80989],[82.66686,22.81541],[82.67346,22.81664],[82.68055,22.82431],[82.68463,22.82566],[82.69468,22.83321],[82.71272,22.83379],[82.72817,22.82355],[82.73592,22.81312],[82.74847,22.8055],[82.75741,22.79547],[82.76389,22.80324],[82.76465,22.81024],[82.7598,22.81625],[82.76314,22.8202],[82.76224,22.82423],[82.76485,22.83246],[82.7558,22.84356],[82.76912,22.85497],[82.77237,22.86334],[82.76714,22.8746],[82.76872,22.87517],[82.77763,22.86841],[82.78026,22.87025],[82.78843,22.87034],[82.79536,22.88605],[82.7954,22.89166],[82.78843,22.90986],[82.79361,22.9235],[82.79277,22.93267],[82.7986,22.9421],[82.80638,22.94177],[82.80809,22.94385],[82.822,22.94069],[82.82745,22.95698],[82.83598,22.9653],[82.85243,22.98755],[82.85365,22.99311],[82.85217,23.00194],[82.83377,23.00311],[82.83055,23.00794],[82.83097,23.01529],[82.85096,23.01714],[82.86084,23.02291],[82.87329,23.02219],[82.88065,23.02647],[82.88355,23.03032],[82.88502,23.02729],[82.89085,23.03004],[82.89903,23.0257],[82.89942,23.02834],[82.89791,23.0303],[82.9005,23.03271],[82.89816,23.03432],[82.89887,23.03661],[82.92038,23.04168],[82.92454,23.04725],[82.92588,23.07732],[82.91989,23.08144],[82.90562,23.07851],[82.90283,23.07019],[82.89525,23.07142],[82.89472,23.06833],[82.88395,23.07024],[82.87974,23.06868],[82.87014,23.07059],[82.85184,23.06672],[82.85265,23.07886],[82.85156,23.08393],[82.85546,23.09336],[82.8624,23.10259],[82.8638,23.1092],[82.89559,23.10927],[82.91368,23.11672],[82.923,23.11554],[82.92222,23.11079],[82.93019,23.10623],[82.93359,23.09818],[82.93834,23.09696],[82.94133,23.08855],[82.95004,23.09578],[82.95663,23.09578],[82.95946,23.08767],[82.96617,23.08425],[82.96301,23.07467],[82.96544,23.07131],[82.97381,23.06763],[82.98315,23.07295],[82.99888,23.07106],[83.00305,23.08022],[83.01219,23.09361],[83.01649,23.0937],[83.01996,23.09754],[83.02899,23.09797],[83.03165,23.0999],[83.0342,23.1043],[83.03105,23.10793],[83.02742,23.12657],[83.08116,23.12715],[83.08778,23.12913],[83.1008,23.12897],[83.1089,23.13774],[83.11624,23.13762],[83.12341,23.13485],[83.12456,23.12822],[83.12367,23.12256],[83.12815,23.10864],[83.14001,23.10659],[83.15177,23.10893],[83.15354,23.11082],[83.15672,23.12786],[83.15435,23.13479],[83.16018,23.13513],[83.16009,23.14992],[83.15122,23.15492],[83.14916,23.15838],[83.15938,23.16582],[83.13569,23.17421],[83.13297,23.1771],[83.13783,23.21421],[83.1434,23.21597],[83.15157,23.21396],[83.16181,23.2146],[83.17102,23.21778],[83.1733,23.21125],[83.18491,23.21384],[83.19243,23.20477],[83.19736,23.20907],[83.20131,23.20869],[83.2088,23.21401],[83.21514,23.22233],[83.2173,23.22286],[83.22036,23.21867],[83.22371,23.21798],[83.24304,23.21998],[83.24351,23.22495],[83.24668,23.23122],[83.24722,23.23619],[83.23382,23.23396],[83.22057,23.24196],[83.21462,23.243],[83.21049,23.24622],[83.20846,23.24569],[83.20812,23.24942],[83.20581,23.2521],[83.20768,23.255],[83.20693,23.26069],[83.20386,23.26193],[83.198,23.26994],[83.20227,23.26893],[83.20627,23.26506],[83.20677,23.26721],[83.20985,23.26767],[83.21451,23.30001],[83.2119,23.30426],[83.20852,23.31736],[83.20603,23.32134],[83.20328,23.32187],[83.20516,23.325],[83.20312,23.34524],[83.20468,23.3474],[83.20522,23.35582],[83.20893,23.35951],[83.20689,23.36564],[83.2075,23.3777],[83.21644,23.38923],[83.22993,23.39468],[83.23191,23.40341],[83.2407,23.40518],[83.24809,23.39756],[83.25449,23.39534],[83.26001,23.39113],[83.26486,23.38914],[83.26913,23.39164],[83.27765,23.38942],[83.30133,23.37696],[83.30427,23.3826],[83.30432,23.38865],[83.30679,23.38926],[83.31357,23.38383],[83.31951,23.37589],[83.32676,23.37416],[83.3328,23.38177],[83.33507,23.38781],[83.33103,23.39237],[83.33158,23.39755],[83.32337,23.39764],[83.31504,23.39496],[83.31245,23.39914],[83.30637,23.40161],[83.30496,23.40747],[83.30667,23.42054],[83.30446,23.42945],[83.34196,23.42407],[83.34699,23.41112],[83.3501,23.41065],[83.36453,23.40907],[83.36737,23.42034],[83.3617,23.4223],[83.36149,23.44622],[83.35538,23.4546],[83.34888,23.46983],[83.32796,23.4735],[83.31063,23.46813],[83.30846,23.48017],[83.30519,23.48594],[83.30249,23.48713],[83.30438,23.49164],[83.3024,23.49539],[83.30552,23.49985],[83.30497,23.50381],[83.31175,23.50033],[83.32243,23.49795],[83.33415,23.50057],[83.33937,23.50725],[83.34238,23.51518],[83.34158,23.51689],[83.33287,23.51695],[83.3331,23.52371],[83.32589,23.52206],[83.32075,23.51878],[83.30919,23.52084],[83.30965,23.51531],[83.30609,23.51483],[83.30347,23.51149],[83.29556,23.51816],[83.28167,23.51578],[83.27737,23.51676],[83.26635,23.5153],[83.26312,23.51666],[83.23882,23.51546],[83.23715,23.54168],[83.24807,23.54332],[83.25125,23.54714],[83.26917,23.55101],[83.27356,23.55624],[83.27852,23.56763],[83.27912,23.57736],[83.27278,23.58078],[83.25455,23.58071],[83.2515,23.57526],[83.23981,23.57795],[83.22722,23.57815],[83.22328,23.57502],[83.22681,23.57117],[83.22882,23.56182],[83.21568,23.56163],[83.20923,23.55592],[83.20098,23.55672],[83.19919,23.5723],[83.20963,23.58292],[83.2106,23.58643],[83.20874,23.59226],[83.20022,23.59525],[83.20997,23.6053],[83.21191,23.60924],[83.20921,23.61224],[83.20197,23.61201],[83.2023,23.61939],[83.20977,23.65407],[83.20807,23.65803],[83.20155,23.66092],[83.20236,23.68332],[83.19773,23.68536],[83.2042,23.68693],[83.20633,23.69171],[83.20559,23.69403],[83.21025,23.69931],[83.21048,23.70791],[83.2127,23.71032],[83.20617,23.72281],[83.19626,23.72242],[83.18309,23.7101],[83.17431,23.70917],[83.16361,23.70251],[83.15821,23.70299],[83.15104,23.70969],[83.13243,23.70955],[83.11325,23.72166],[83.1075,23.72305],[83.10321,23.7289],[83.09295,23.72914],[83.08163,23.75052],[83.06852,23.75473],[83.06447,23.76979],[83.07355,23.78242],[83.06444,23.78505],[83.05196,23.78013],[83.03557,23.77889],[83.0307,23.78361],[83.03016,23.79078],[83.02677,23.79916],[83.01315,23.80335],[83.01001,23.8032],[83.00738,23.794],[82.99903,23.79171],[83.00089,23.77896],[82.99812,23.77389],[82.99451,23.77128],[82.99414,23.76768],[82.96771,23.77055],[82.96424,23.76754],[82.95847,23.76871],[82.94745,23.76685],[82.9317,23.76743],[82.91985,23.77291],[82.91722,23.77648],[82.90873,23.7738],[82.90269,23.78104],[82.90248,23.7849],[82.90738,23.79025],[82.91329,23.79006],[82.91849,23.79373],[82.9202,23.79896],[82.91589,23.80135],[82.90138,23.79671],[82.89121,23.79564],[82.8882,23.79577],[82.8852,23.79892],[82.87404,23.79718],[82.86295,23.79817],[82.85984,23.79493],[82.861,23.78205],[82.85195,23.76826],[82.84497,23.76716],[82.84169,23.77108],[82.84491,23.77449],[82.84569,23.77872],[82.83639,23.78015],[82.83493,23.78421],[82.8363,23.78983],[82.82963,23.79119],[82.83379,23.79823],[82.82899,23.80098],[82.82347,23.80965],[82.81712,23.80981],[82.8172,23.81586],[82.80124,23.81791],[82.80068,23.81109],[82.79811,23.81434],[82.78493,23.81507],[82.78185,23.81777],[82.78083,23.82421],[82.78282,23.83204],[82.78264,23.84135],[82.77826,23.8566],[82.77335,23.86698],[82.77136,23.87703],[82.74311,23.88117],[82.73786,23.88976],[82.73455,23.89182],[82.70485,23.891],[82.69325,23.90385],[82.69453,23.90971]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"649","area_level":"District","area_name":"Balrampur-Ramanujganj","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[83.32935,24.10133],[83.32145,24.10602],[83.31475,24.09097],[83.3056,24.07964],[83.29946,24.07893],[83.29473,24.07171],[83.2874,24.05511],[83.28211,24.04973],[83.284,24.03953],[83.28345,24.03242],[83.27911,24.01827],[83.27275,24.01817],[83.26363,24.00924],[83.25976,24.00947],[83.25768,24.01311],[83.25188,24.01491],[83.24259,24.01159],[83.24114,24.0053],[83.24243,23.99718],[83.23366,23.99607],[83.23143,23.99398],[83.2305,23.98877],[83.22361,23.98665],[83.22333,23.98421],[83.22691,23.97788],[83.21967,23.97294],[83.21861,23.96898],[83.22282,23.9622],[83.22313,23.95815],[83.21994,23.95271],[83.22003,23.94885],[83.21552,23.94551],[83.21599,23.9379],[83.21193,23.93574],[83.20846,23.93057],[83.20382,23.92868],[83.20794,23.92424],[83.20792,23.92139],[83.19843,23.91406],[83.19464,23.91433],[83.19317,23.91693],[83.18976,23.91735],[83.18803,23.91452],[83.18129,23.9151],[83.17827,23.91216],[83.17467,23.9123],[83.17119,23.90777],[83.16367,23.90877],[83.15948,23.90738],[83.15422,23.90404],[83.15277,23.89947],[83.15384,23.89673],[83.14822,23.89329],[83.14759,23.88898],[83.14148,23.88492],[83.12568,23.88279],[83.11167,23.87906],[83.09775,23.87324],[83.08189,23.87046],[83.07505,23.87012],[83.07115,23.87421],[83.06213,23.87394],[83.05248,23.87953],[83.01871,23.87947],[83.00125,23.87679],[83.00163,23.87364],[82.99722,23.87259],[82.98284,23.87416],[82.97458,23.87163],[82.94788,23.87142],[82.93662,23.87707],[82.93065,23.88946],[82.92722,23.89229],[82.9117,23.8975],[82.90516,23.89789],[82.88471,23.90884],[82.87725,23.91779],[82.86522,23.9264],[82.86111,23.93893],[82.85828,23.93926],[82.85335,23.94547],[82.84865,23.94535],[82.84112,23.95066],[82.83699,23.9568],[82.82672,23.9623],[82.81261,23.95987],[82.801,23.96096],[82.79837,23.95081],[82.79002,23.946],[82.78589,23.94089],[82.77662,23.93667],[82.77034,23.93699],[82.76201,23.93383],[82.75446,23.93419],[82.75609,23.92503],[82.75526,23.92171],[82.75238,23.91979],[82.715,23.92139],[82.71085,23.92368],[82.70351,23.92449],[82.69803,23.91992],[82.69342,23.9202],[82.69476,23.9132],[82.69271,23.90539],[82.69413,23.90241],[82.70485,23.891],[82.73455,23.89182],[82.73786,23.88976],[82.74311,23.88117],[82.77136,23.87703],[82.77335,23.86698],[82.77826,23.8566],[82.78264,23.84135],[82.78282,23.83204],[82.78083,23.82421],[82.78185,23.81777],[82.78493,23.81507],[82.79811,23.81434],[82.80068,23.81109],[82.80124,23.81791],[82.8172,23.81586],[82.81712,23.80981],[82.82347,23.80965],[82.82899,23.80098],[82.83379,23.79823],[82.82963,23.79119],[82.8363,23.78983],[82.83493,23.78421],[82.83639,23.78015],[82.84569,23.77872],[82.84491,23.77449],[82.84169,23.77108],[82.84497,23.76716],[82.85195,23.76826],[82.861,23.78205],[82.85984,23.79493],[82.86295,23.79817],[82.87404,23.79718],[82.8852,23.79892],[82.8882,23.79577],[82.89121,23.79564],[82.90138,23.79671],[82.91589,23.80135],[82.9202,23.79896],[82.91849,23.79373],[82.91329,23.79006],[82.90738,23.79025],[82.90248,23.7849],[82.90269,23.78104],[82.90873,23.7738],[82.91722,23.77648],[82.91985,23.77291],[82.9317,23.76743],[82.94745,23.76685],[82.95847,23.76871],[82.96424,23.76754],[82.96771,23.77055],[82.99414,23.76768],[82.99451,23.77128],[82.99812,23.77389],[83.00089,23.77896],[82.99903,23.79171],[83.00738,23.794],[83.01001,23.8032],[83.01315,23.80335],[83.02677,23.79916],[83.03016,23.79078],[83.0307,23.78361],[83.03557,23.77889],[83.05196,23.78013],[83.06444,23.78505],[83.07355,23.78242],[83.06447,23.76979],[83.06852,23.75473],[83.08163,23.75052],[83.09295,23.72914],[83.10321,23.7289],[83.1075,23.72305],[83.11325,23.72166],[83.13243,23.70955],[83.15104,23.70969],[83.15821,23.70299],[83.16361,23.70251],[83.17431,23.70917],[83.18309,23.7101],[83.19626,23.72242],[83.20617,23.72281],[83.2127,23.71032],[83.21048,23.70791],[83.21025,23.69931],[83.20559,23.69403],[83.20633,23.69171],[83.2042,23.68693],[83.19773,23.68536],[83.20236,23.68332],[83.20155,23.66092],[83.20807,23.65803],[83.20977,23.65407],[83.2023,23.61939],[83.20197,23.61201],[83.20921,23.61224],[83.21191,23.60924],[83.20997,23.6053],[83.20022,23.59525],[83.20874,23.59226],[83.2106,23.58643],[83.20963,23.58292],[83.19919,23.5723],[83.20098,23.55672],[83.20923,23.55592],[83.21568,23.56163],[83.22882,23.56182],[83.22681,23.57117],[83.22328,23.57502],[83.22722,23.57815],[83.23981,23.57795],[83.2515,23.57526],[83.25455,23.58071],[83.27278,23.58078],[83.27912,23.57736],[83.27852,23.56763],[83.27356,23.55624],[83.26917,23.55101],[83.25125,23.54714],[83.24807,23.54332],[83.23715,23.54168],[83.23882,23.51546],[83.26312,23.51666],[83.26635,23.5153],[83.27737,23.51676],[83.28167,23.51578],[83.29556,23.51816],[83.30347,23.51149],[83.30609,23.51483],[83.30965,23.51531],[83.30919,23.52084],[83.32075,23.51878],[83.32589,23.52206],[83.3331,23.52371],[83.33287,23.51695],[83.34158,23.51689],[83.34238,23.51518],[83.33937,23.50725],[83.33415,23.50057],[83.32243,23.49795],[83.31175,23.50033],[83.30497,23.50381],[83.30552,23.49985],[83.3024,23.49539],[83.30438,23.49164],[83.30249,23.48713],[83.30519,23.48594],[83.30846,23.48017],[83.31063,23.46813],[83.32796,23.4735],[83.34888,23.46983],[83.35538,23.4546],[83.36149,23.44622],[83.3617,23.4223],[83.36737,23.42034],[83.36453,23.40907],[83.3501,23.41065],[83.34699,23.41112],[83.34196,23.42407],[83.30446,23.42945],[83.30667,23.42054],[83.30496,23.40747],[83.30637,23.40161],[83.31245,23.39914],[83.31504,23.39496],[83.32337,23.39764],[83.33158,23.39755],[83.33103,23.39237],[83.33507,23.38781],[83.3328,23.38177],[83.32676,23.37416],[83.31951,23.37589],[83.31357,23.38383],[83.30679,23.38926],[83.30432,23.38865],[83.30427,23.3826],[83.30133,23.37696],[83.27765,23.38942],[83.26913,23.39164],[83.26486,23.38914],[83.26001,23.39113],[83.25449,23.39534],[83.24809,23.39756],[83.24119,23.40515],[83.23191,23.40341],[83.22993,23.39468],[83.21644,23.38923],[83.20704,23.37694],[83.20689,23.36564],[83.20893,23.35951],[83.20522,23.35582],[83.20468,23.3474],[83.20312,23.34524],[83.20516,23.325],[83.20328,23.32187],[83.20603,23.32134],[83.20852,23.31736],[83.2119,23.30426],[83.21451,23.30001],[83.20985,23.26767],[83.20677,23.26721],[83.20627,23.26506],[83.20227,23.26893],[83.198,23.26994],[83.20386,23.26193],[83.20693,23.26069],[83.20768,23.255],[83.20581,23.2521],[83.20812,23.24942],[83.20846,23.24569],[83.21049,23.24622],[83.21462,23.243],[83.22057,23.24196],[83.23382,23.23396],[83.24722,23.23619],[83.26408,23.23356],[83.27768,23.21527],[83.28728,23.21432],[83.29485,23.20771],[83.31211,23.19718],[83.3205,23.18632],[83.32972,23.17947],[83.33874,23.18026],[83.34807,23.17803],[83.35207,23.17323],[83.35408,23.17282],[83.36034,23.18557],[83.35737,23.19216],[83.36136,23.1989],[83.35938,23.20073],[83.36307,23.20568],[83.36146,23.20877],[83.3656,23.209],[83.36812,23.2153],[83.36695,23.2164],[83.35464,23.21339],[83.35314,23.22018],[83.36537,23.22629],[83.36772,23.2294],[83.37201,23.22954],[83.36996,23.23682],[83.37075,23.23962],[83.37739,23.23957],[83.38518,23.24815],[83.38372,23.25003],[83.37742,23.25259],[83.37314,23.25249],[83.36529,23.257],[83.3649,23.26175],[83.36861,23.26451],[83.39193,23.27015],[83.4261,23.2544],[83.44221,23.25867],[83.45686,23.25377],[83.46528,23.25723],[83.47708,23.25831],[83.47974,23.24864],[83.49253,23.24577],[83.51001,23.24715],[83.52129,23.24443],[83.51662,23.23474],[83.52671,23.23221],[83.52885,23.22714],[83.53424,23.22171],[83.52898,23.22133],[83.52742,23.21635],[83.53141,23.20716],[83.53148,23.20134],[83.54574,23.20481],[83.54586,23.19721],[83.5442,23.19376],[83.54503,23.1875],[83.55436,23.17504],[83.56464,23.1762],[83.56933,23.17488],[83.57086,23.17802],[83.57064,23.18396],[83.56801,23.1878],[83.57528,23.1943],[83.60285,23.19105],[83.60644,23.19349],[83.60754,23.19822],[83.61833,23.2168],[83.62665,23.22188],[83.63441,23.2194],[83.63644,23.22178],[83.6533,23.22925],[83.67265,23.23157],[83.68928,23.22506],[83.70075,23.22506],[83.70196,23.22307],[83.70109,23.21779],[83.69951,23.21643],[83.70088,23.21517],[83.69852,23.21259],[83.70291,23.21068],[83.71271,23.21006],[83.72316,23.21414],[83.72075,23.21743],[83.71986,23.22422],[83.7265,23.23364],[83.73703,23.23612],[83.74367,23.24227],[83.74803,23.24356],[83.75862,23.23676],[83.76257,23.23592],[83.76196,23.23216],[83.76646,23.23205],[83.76698,23.2287],[83.77065,23.22811],[83.77423,23.22497],[83.77981,23.22535],[83.78216,23.2271],[83.78978,23.25165],[83.81161,23.24285],[83.82299,23.24452],[83.82663,23.24321],[83.83765,23.23568],[83.84433,23.22856],[83.85409,23.22748],[83.85856,23.22042],[83.86546,23.21458],[83.87833,23.21208],[83.88303,23.20505],[83.88366,23.19031],[83.88511,23.18831],[83.90017,23.18335],[83.90666,23.18491],[83.91471,23.17426],[83.92042,23.17395],[83.92662,23.16791],[83.92852,23.15594],[83.92609,23.15062],[83.9351,23.15129],[83.94418,23.15418],[83.94399,23.1655],[83.95971,23.17312],[83.96752,23.17233],[83.9677,23.17465],[83.96329,23.17692],[83.96259,23.17946],[83.96296,23.18419],[83.96758,23.19056],[83.97441,23.19081],[83.98621,23.19547],[83.99343,23.19177],[83.99847,23.19247],[83.99935,23.18573],[84.00711,23.18649],[84.00971,23.18521],[84.01816,23.18976],[84.02174,23.18784],[84.02464,23.18241],[84.03134,23.17866],[84.03829,23.17109],[84.04294,23.18265],[84.05653,23.19317],[84.05843,23.19994],[84.0622,23.20261],[84.06317,23.20565],[84.05576,23.22028],[84.05908,23.23599],[84.05383,23.24375],[84.05373,23.2473],[84.05985,23.26879],[84.0646,23.27472],[84.06248,23.28843],[84.06812,23.29378],[84.06219,23.30766],[84.07428,23.32917],[84.07482,23.33312],[84.06872,23.33824],[84.06658,23.34405],[84.06016,23.3502],[84.05433,23.3524],[84.05205,23.35928],[84.0535,23.36482],[84.05236,23.36726],[84.04822,23.3697],[84.05084,23.37477],[84.03642,23.37852],[84.02386,23.3765],[84.0163,23.36961],[84.01189,23.35447],[84.0048,23.35401],[84.0026,23.35735],[83.98028,23.36459],[83.98026,23.36811],[83.97075,23.37914],[83.96882,23.38341],[83.96994,23.38383],[83.96795,23.38541],[83.96914,23.38667],[83.967,23.38758],[83.96848,23.38919],[83.9675,23.39101],[83.96889,23.39082],[83.9688,23.39349],[83.97284,23.39989],[83.97148,23.40088],[83.97215,23.40267],[83.97509,23.40313],[83.97719,23.41087],[83.98016,23.41266],[83.97814,23.41415],[83.9809,23.41929],[83.98048,23.42152],[83.98576,23.42583],[83.9837,23.42627],[83.98364,23.42853],[83.98616,23.43057],[83.98332,23.43139],[83.98531,23.43504],[83.97869,23.44737],[83.97483,23.45124],[83.97394,23.45985],[83.98482,23.46571],[83.98891,23.47874],[83.99852,23.48678],[84.00113,23.4937],[84.00078,23.49693],[84.00736,23.49768],[84.01465,23.5035],[84.01516,23.509],[84.01858,23.5174],[84.01747,23.52261],[84.02159,23.52767],[84.02084,23.53097],[84.02806,23.5456],[84.02654,23.55295],[84.02438,23.55556],[84.02644,23.55677],[84.02954,23.5664],[84.02805,23.57777],[84.02977,23.58576],[84.02815,23.59371],[84.03006,23.6],[84.02851,23.60233],[84.02086,23.60442],[84.01673,23.60842],[84.01109,23.62061],[84.00771,23.6223],[84.0087,23.62785],[84.01393,23.63021],[84.01659,23.63438],[83.99714,23.63448],[83.98736,23.63229],[83.98065,23.63365],[83.97951,23.62872],[83.98045,23.62489],[83.9755,23.62571],[83.97349,23.62401],[83.97275,23.62592],[83.96935,23.62669],[83.96134,23.62518],[83.94775,23.6267],[83.94252,23.62599],[83.93191,23.62041],[83.93056,23.61826],[83.93065,23.61124],[83.93382,23.60736],[83.93299,23.60075],[83.93912,23.59031],[83.93803,23.58425],[83.9398,23.57086],[83.93769,23.56899],[83.91879,23.57636],[83.90857,23.57625],[83.90017,23.58015],[83.89939,23.58241],[83.89445,23.58265],[83.88806,23.57876],[83.85305,23.58705],[83.84468,23.58665],[83.8386,23.58939],[83.82587,23.59071],[83.81537,23.5962],[83.81205,23.58895],[83.80722,23.58747],[83.80542,23.58882],[83.80438,23.59537],[83.80064,23.60202],[83.79452,23.6051],[83.78987,23.60456],[83.77532,23.60895],[83.77248,23.6109],[83.77637,23.61759],[83.77514,23.62194],[83.77235,23.62378],[83.75945,23.62601],[83.75192,23.63867],[83.75321,23.64339],[83.76058,23.6479],[83.76112,23.65146],[83.74623,23.66299],[83.73885,23.66677],[83.72286,23.68586],[83.72302,23.68876],[83.73212,23.695],[83.73507,23.70031],[83.74212,23.70383],[83.74607,23.71949],[83.73948,23.73432],[83.73774,23.76049],[83.73411,23.7647],[83.72431,23.76872],[83.72159,23.77149],[83.72262,23.78658],[83.71266,23.80068],[83.70514,23.80387],[83.70439,23.80661],[83.70764,23.81741],[83.70535,23.82076],[83.70259,23.82297],[83.69149,23.82642],[83.68873,23.82558],[83.68528,23.82033],[83.68282,23.81938],[83.67869,23.82168],[83.67434,23.82717],[83.66449,23.82766],[83.66335,23.83119],[83.66849,23.83666],[83.66656,23.84428],[83.65949,23.84926],[83.65464,23.8499],[83.64338,23.84693],[83.61809,23.85549],[83.61029,23.85397],[83.5897,23.86331],[83.58242,23.86351],[83.57466,23.86121],[83.57119,23.86214],[83.56894,23.86618],[83.56949,23.86908],[83.58353,23.87778],[83.58603,23.88261],[83.58576,23.8864],[83.57633,23.89291],[83.57043,23.89445],[83.55915,23.8929],[83.55344,23.89807],[83.54692,23.9143],[83.54924,23.93102],[83.54739,23.93754],[83.53536,23.95246],[83.52649,23.9605],[83.5226,23.97033],[83.5153,23.98069],[83.51549,23.98999],[83.5138,23.99635],[83.52293,24.00636],[83.5239,24.01138],[83.51617,24.02245],[83.51572,24.02716],[83.50826,24.03116],[83.49975,24.03256],[83.49353,24.03631],[83.47781,24.04119],[83.45289,24.04199],[83.44487,24.05282],[83.43777,24.05817],[83.43773,24.07622],[83.43225,24.08598],[83.42671,24.08648],[83.42122,24.08272],[83.40664,24.08044],[83.40111,24.09203],[83.38829,24.09996],[83.36424,24.10329],[83.34775,24.09629],[83.32935,24.10133]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"65","area_level":"District","area_name":"Jind","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.20214,29.84311],[76.19782,29.84476],[76.18487,29.82272],[76.17374,29.81791],[76.16449,29.81761],[76.15326,29.82003],[76.14549,29.81908],[76.14162,29.81546],[76.14173,29.81083],[76.13323,29.80445],[76.12395,29.79091],[76.11967,29.79228],[76.12001,29.80087],[76.11585,29.80231],[76.10509,29.81183],[76.09808,29.81061],[76.08953,29.80113],[76.085,29.80073],[76.08296,29.78796],[76.08472,29.78452],[76.08265,29.78116],[76.07678,29.77488],[76.07255,29.77858],[76.0671,29.77397],[76.06024,29.76464],[76.05682,29.76536],[76.0544,29.75772],[76.04949,29.75186],[76.04963,29.7481],[76.04385,29.74268],[76.03629,29.74372],[76.0318,29.7468],[76.03068,29.75472],[76.02678,29.75626],[76.02509,29.75473],[76.02406,29.74898],[76.01938,29.74767],[76.01677,29.743],[76.00711,29.74074],[75.99897,29.74102],[75.9949,29.73926],[75.98889,29.73393],[75.98442,29.72711],[75.97535,29.72864],[75.97346,29.7304],[75.96757,29.72941],[75.95485,29.73193],[75.95073,29.73193],[75.94734,29.72938],[75.94746,29.71911],[75.94475,29.70301],[75.94002,29.69236],[75.93359,29.68464],[75.93651,29.68177],[75.94292,29.68187],[75.95141,29.67021],[75.9486,29.66053],[75.94871,29.65502],[75.94135,29.6415],[75.94703,29.64142],[75.94684,29.63865],[75.95667,29.62697],[75.95711,29.621],[75.95492,29.61385],[75.95735,29.61286],[75.95525,29.61202],[75.95168,29.60627],[75.95261,29.60068],[75.94871,29.59383],[75.95675,29.59381],[75.96142,29.59144],[75.96239,29.58572],[75.96049,29.58198],[75.96012,29.57581],[75.96089,29.57016],[75.96427,29.56359],[75.96303,29.56127],[75.96353,29.55278],[75.95937,29.54204],[75.96041,29.53892],[75.95592,29.52899],[75.94946,29.51736],[75.94266,29.51562],[75.93694,29.51118],[75.93386,29.50517],[75.93301,29.49908],[75.94978,29.49408],[75.95737,29.4973],[75.96064,29.49719],[75.97553,29.49198],[75.98154,29.49199],[75.98816,29.48883],[76.00566,29.48656],[76.01378,29.48068],[76.00452,29.46251],[75.99876,29.46072],[75.99604,29.44713],[76.00076,29.44693],[76.00571,29.44496],[76.00591,29.44232],[76.01189,29.4425],[76.0166,29.43973],[76.01967,29.43681],[76.01993,29.42735],[76.02732,29.42263],[76.02957,29.42734],[76.036,29.42711],[76.0398,29.43064],[76.04472,29.43233],[76.0511,29.43988],[76.07726,29.44137],[76.08071,29.44013],[76.08008,29.43855],[76.08288,29.43658],[76.08028,29.42961],[76.08242,29.42475],[76.08111,29.42358],[76.08207,29.4193],[76.08599,29.4092],[76.09428,29.40363],[76.10752,29.40713],[76.11347,29.40592],[76.11777,29.40363],[76.12651,29.39342],[76.1318,29.3901],[76.13581,29.40002],[76.14176,29.40542],[76.1429,29.40931],[76.15304,29.41429],[76.15326,29.41853],[76.15552,29.41965],[76.16139,29.4185],[76.16694,29.41352],[76.18409,29.41313],[76.19156,29.41006],[76.19876,29.4025],[76.19907,29.39757],[76.20313,29.39585],[76.20304,29.3859],[76.20654,29.38113],[76.20547,29.37382],[76.20699,29.37139],[76.20666,29.36454],[76.19813,29.3601],[76.1778,29.34063],[76.19137,29.33102],[76.20182,29.32684],[76.20397,29.32318],[76.20931,29.31932],[76.19847,29.30558],[76.19567,29.29889],[76.18831,29.2918],[76.1867,29.28608],[76.19813,29.27776],[76.20214,29.27023],[76.20711,29.26518],[76.20282,29.26354],[76.20621,29.25935],[76.21357,29.25621],[76.21465,29.25332],[76.21155,29.24797],[76.22807,29.23883],[76.22328,29.22326],[76.22496,29.21913],[76.23689,29.21357],[76.24798,29.21259],[76.25912,29.20733],[76.26898,29.20899],[76.2742,29.20721],[76.28052,29.20873],[76.28996,29.19944],[76.29282,29.19253],[76.30014,29.18813],[76.29828,29.18285],[76.30013,29.17734],[76.29543,29.17749],[76.29847,29.15548],[76.30317,29.14484],[76.30573,29.14264],[76.3052,29.1268],[76.31021,29.12034],[76.3181,29.11632],[76.31515,29.10935],[76.30188,29.09564],[76.30139,29.08597],[76.31385,29.08328],[76.32164,29.08738],[76.33738,29.08281],[76.35011,29.08322],[76.35842,29.07629],[76.37948,29.06564],[76.38888,29.06902],[76.3988,29.07556],[76.40282,29.07567],[76.42512,29.06538],[76.43168,29.05992],[76.44361,29.05541],[76.44738,29.06138],[76.4546,29.06084],[76.46171,29.06591],[76.46924,29.08279],[76.47318,29.0831],[76.48028,29.09952],[76.48115,29.10707],[76.48569,29.11567],[76.48653,29.12995],[76.48939,29.13684],[76.5,29.15204],[76.50531,29.1558],[76.51089,29.15598],[76.5122,29.16318],[76.49563,29.17813],[76.49568,29.18474],[76.49337,29.18949],[76.49334,29.19609],[76.49062,29.2067],[76.47798,29.22224],[76.47671,29.23548],[76.47453,29.23799],[76.4834,29.24258],[76.48839,29.2396],[76.51211,29.23229],[76.52561,29.23162],[76.52395,29.22542],[76.52481,29.22123],[76.53406,29.21397],[76.54307,29.20974],[76.55067,29.21039],[76.55982,29.20872],[76.56843,29.22666],[76.56256,29.23617],[76.56419,29.23931],[76.56178,29.2457],[76.55421,29.25667],[76.56164,29.27123],[76.56093,29.28091],[76.58258,29.28529],[76.59742,29.28022],[76.60507,29.28843],[76.61078,29.28917],[76.62087,29.28472],[76.63425,29.27484],[76.64612,29.27353],[76.64861,29.26953],[76.65364,29.2663],[76.66603,29.26398],[76.67289,29.26579],[76.67894,29.2648],[76.68212,29.2695],[76.68246,29.27411],[76.67692,29.2805],[76.67194,29.27868],[76.65475,29.28356],[76.64421,29.28833],[76.6367,29.29747],[76.64176,29.30531],[76.63191,29.3146],[76.63716,29.32098],[76.64111,29.33046],[76.64597,29.3326],[76.64828,29.33831],[76.64777,29.36109],[76.64943,29.36666],[76.6512,29.36904],[76.66217,29.37087],[76.67174,29.37559],[76.68562,29.37677],[76.68772,29.37908],[76.68703,29.38163],[76.69,29.38365],[76.71059,29.38187],[76.71766,29.38662],[76.73457,29.38812],[76.73508,29.39428],[76.74052,29.40669],[76.73276,29.40978],[76.73105,29.41247],[76.74191,29.42887],[76.74101,29.43199],[76.74578,29.43343],[76.74711,29.43685],[76.75001,29.43771],[76.74783,29.44374],[76.75471,29.45811],[76.76245,29.46576],[76.75491,29.46536],[76.7483,29.47095],[76.74567,29.47772],[76.73444,29.48111],[76.71758,29.48232],[76.71498,29.47777],[76.70943,29.47443],[76.69189,29.47622],[76.68684,29.47747],[76.6807,29.48278],[76.6773,29.48214],[76.66571,29.48557],[76.66188,29.48891],[76.65476,29.49122],[76.64914,29.48821],[76.6422,29.47434],[76.63311,29.46933],[76.60778,29.48069],[76.60469,29.47879],[76.60506,29.47533],[76.59502,29.47559],[76.58423,29.46467],[76.57368,29.46632],[76.56982,29.46229],[76.55644,29.46153],[76.53728,29.4576],[76.53213,29.45309],[76.53001,29.44448],[76.52486,29.43731],[76.52284,29.43153],[76.51787,29.43225],[76.51057,29.43045],[76.5,29.42538],[76.49884,29.42716],[76.48355,29.43368],[76.48142,29.43219],[76.4812,29.42861],[76.47458,29.41648],[76.4694,29.41767],[76.4637,29.42424],[76.46289,29.42747],[76.47101,29.43671],[76.47095,29.44548],[76.47821,29.46026],[76.48157,29.47665],[76.48378,29.47801],[76.48403,29.48053],[76.49592,29.47892],[76.50613,29.4864],[76.50281,29.48695],[76.5036,29.49309],[76.5003,29.50132],[76.49813,29.50278],[76.49644,29.51448],[76.49252,29.52139],[76.48731,29.52642],[76.48885,29.53091],[76.48604,29.53656],[76.4858,29.54177],[76.46031,29.5488],[76.4538,29.54696],[76.45204,29.53694],[76.44761,29.53132],[76.43685,29.52917],[76.4359,29.5373],[76.43018,29.54504],[76.41403,29.54075],[76.41637,29.53651],[76.41557,29.53435],[76.40517,29.53048],[76.39533,29.53155],[76.38165,29.52733],[76.37442,29.52722],[76.36318,29.53404],[76.36024,29.53929],[76.3613,29.54647],[76.35471,29.55291],[76.34907,29.55541],[76.3513,29.5619],[76.35859,29.56877],[76.351,29.57993],[76.3453,29.5827],[76.34207,29.57939],[76.32845,29.57977],[76.31618,29.58602],[76.30966,29.58491],[76.29782,29.58989],[76.29453,29.58235],[76.29068,29.57806],[76.29637,29.56441],[76.30105,29.55745],[76.29385,29.55167],[76.28136,29.54687],[76.2773,29.54699],[76.27108,29.55004],[76.26618,29.55753],[76.26844,29.57242],[76.2653,29.57447],[76.26596,29.57669],[76.26115,29.58082],[76.25985,29.58473],[76.25,29.58511],[76.24874,29.58795],[76.24244,29.5888],[76.23845,29.59339],[76.24176,29.59623],[76.24219,29.60146],[76.24047,29.60418],[76.24071,29.60925],[76.23462,29.61823],[76.23265,29.6197],[76.22438,29.61988],[76.22203,29.62216],[76.21804,29.62281],[76.21713,29.6257],[76.21268,29.62968],[76.19411,29.64068],[76.19896,29.64754],[76.20221,29.6647],[76.19374,29.67293],[76.19212,29.67959],[76.18387,29.6835],[76.16964,29.68584],[76.16843,29.6888],[76.16866,29.6927],[76.17308,29.69991],[76.17478,29.70756],[76.18366,29.71975],[76.1808,29.72702],[76.18213,29.73341],[76.17967,29.73695],[76.18435,29.7388],[76.19477,29.74696],[76.19767,29.74714],[76.19891,29.75616],[76.20308,29.75762],[76.19625,29.7639],[76.20137,29.76629],[76.20648,29.77421],[76.20847,29.77381],[76.21007,29.78087],[76.20687,29.78771],[76.21718,29.79515],[76.2154,29.79804],[76.21819,29.80278],[76.21699,29.8055],[76.22003,29.81106],[76.21461,29.81322],[76.21883,29.81842],[76.20916,29.82387],[76.21229,29.83678],[76.2153,29.84079],[76.21122,29.84316],[76.20214,29.84311]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"650","area_level":"District","area_name":"Bemetara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[81.48755,22.01737],[81.48524,22.01888],[81.48295,22.01672],[81.48089,22.01796],[81.47801,22.0152],[81.47239,22.01504],[81.46975,22.01221],[81.47076,22.00898],[81.47377,22.00796],[81.4746,22.00494],[81.47664,22.00377],[81.47649,22.00048],[81.47981,21.99949],[81.47812,21.99602],[81.48282,21.99774],[81.48587,21.99661],[81.4836,21.99419],[81.47926,21.9935],[81.46764,21.97884],[81.47118,21.97512],[81.47374,21.97502],[81.47337,21.97192],[81.47699,21.97175],[81.47902,21.96986],[81.47763,21.96409],[81.47407,21.96408],[81.47144,21.96073],[81.46636,21.96101],[81.46545,21.95795],[81.45929,21.95728],[81.45809,21.95466],[81.45112,21.95053],[81.4518,21.94739],[81.45409,21.94682],[81.4542,21.94397],[81.45136,21.94289],[81.45024,21.93694],[81.45305,21.93691],[81.45684,21.93301],[81.46257,21.93176],[81.4547,21.93017],[81.45196,21.92671],[81.4517,21.9209],[81.45484,21.91386],[81.45272,21.91433],[81.44985,21.91164],[81.44542,21.91249],[81.44576,21.91021],[81.43887,21.90775],[81.44991,21.90256],[81.44458,21.90025],[81.4383,21.9004],[81.43721,21.89825],[81.4309,21.90066],[81.42881,21.89847],[81.42574,21.89915],[81.42324,21.90169],[81.42258,21.90583],[81.41995,21.9062],[81.42162,21.91012],[81.42003,21.91407],[81.41592,21.91551],[81.41231,21.91273],[81.41087,21.90933],[81.40814,21.89495],[81.4097,21.89241],[81.40765,21.8882],[81.40114,21.88966],[81.3983,21.88494],[81.39545,21.88531],[81.39158,21.88203],[81.39,21.87626],[81.39066,21.87137],[81.39412,21.86606],[81.39482,21.86151],[81.39263,21.85968],[81.39397,21.85712],[81.3954,21.85717],[81.39509,21.85528],[81.39764,21.85423],[81.39784,21.85207],[81.40044,21.85172],[81.40138,21.84653],[81.39828,21.84351],[81.40206,21.842],[81.39937,21.83076],[81.39548,21.82988],[81.37746,21.83512],[81.37457,21.8349],[81.37395,21.83196],[81.36378,21.83163],[81.36151,21.8328],[81.36097,21.83579],[81.35492,21.83588],[81.3535,21.83815],[81.34289,21.84089],[81.34326,21.84304],[81.33585,21.84508],[81.33236,21.84912],[81.32719,21.83857],[81.31994,21.83125],[81.32261,21.82344],[81.32088,21.81992],[81.32279,21.81684],[81.32633,21.81608],[81.3287,21.81337],[81.33147,21.80462],[81.33096,21.80231],[81.32637,21.80314],[81.32659,21.80061],[81.32998,21.79869],[81.32951,21.79484],[81.33169,21.79269],[81.32916,21.78737],[81.3346,21.78639],[81.33537,21.77939],[81.33745,21.77929],[81.33596,21.77636],[81.33695,21.77353],[81.34382,21.77393],[81.34322,21.76802],[81.34062,21.76775],[81.34089,21.77],[81.33927,21.76861],[81.33735,21.76929],[81.3354,21.76663],[81.32619,21.7668],[81.31961,21.76061],[81.30987,21.76271],[81.31025,21.75777],[81.30582,21.76348],[81.30091,21.76352],[81.30208,21.7647],[81.30105,21.76643],[81.2946,21.76923],[81.28946,21.76599],[81.2874,21.76112],[81.27985,21.76317],[81.27768,21.76241],[81.27606,21.75875],[81.26991,21.75791],[81.26952,21.75583],[81.26256,21.7562],[81.26177,21.75043],[81.25677,21.74906],[81.25471,21.74637],[81.24625,21.74823],[81.24385,21.75162],[81.23396,21.75302],[81.22613,21.75688],[81.22296,21.7559],[81.22557,21.73971],[81.22333,21.73513],[81.22452,21.73206],[81.22349,21.72777],[81.22596,21.72511],[81.22525,21.72197],[81.22969,21.7221],[81.2304,21.71984],[81.23297,21.72082],[81.23211,21.71071],[81.21787,21.70469],[81.215,21.70534],[81.21077,21.71101],[81.20704,21.71224],[81.2037,21.71071],[81.20348,21.71252],[81.19712,21.70873],[81.19664,21.70364],[81.19255,21.70496],[81.19177,21.70858],[81.18571,21.71144],[81.18643,21.70934],[81.18339,21.70528],[81.17303,21.70621],[81.17181,21.705],[81.17353,21.70231],[81.17225,21.69524],[81.17636,21.69234],[81.17445,21.6888],[81.17638,21.6848],[81.17275,21.68253],[81.17657,21.67811],[81.17553,21.67507],[81.1766,21.67179],[81.18045,21.67141],[81.17972,21.66735],[81.18256,21.66728],[81.18092,21.66323],[81.18097,21.65633],[81.18231,21.65615],[81.17903,21.65286],[81.18019,21.65136],[81.17785,21.6452],[81.18689,21.63892],[81.18825,21.6355],[81.19361,21.63568],[81.19442,21.63448],[81.19204,21.63357],[81.19225,21.63047],[81.19079,21.62942],[81.18195,21.6299],[81.18045,21.62463],[81.1751,21.62326],[81.17682,21.6177],[81.17886,21.61692],[81.17823,21.61541],[81.18051,21.61497],[81.17631,21.60144],[81.1778,21.60045],[81.17688,21.5972],[81.17074,21.59763],[81.16557,21.59128],[81.15766,21.59007],[81.15095,21.58017],[81.15035,21.57492],[81.14716,21.57278],[81.14559,21.56453],[81.14217,21.55768],[81.13987,21.55857],[81.13882,21.5542],[81.14019,21.55383],[81.14044,21.54938],[81.14404,21.54821],[81.14688,21.55058],[81.1514,21.55033],[81.15751,21.54625],[81.15489,21.53802],[81.15606,21.53423],[81.15961,21.5324],[81.15944,21.53],[81.16352,21.52643],[81.16749,21.52614],[81.16781,21.52431],[81.17031,21.52362],[81.179,21.5253],[81.17794,21.52368],[81.19372,21.51829],[81.20082,21.51754],[81.20158,21.52038],[81.20379,21.52017],[81.20543,21.51393],[81.20989,21.50704],[81.22082,21.50567],[81.2223,21.50715],[81.22345,21.51155],[81.22227,21.51797],[81.21921,21.52177],[81.21955,21.53339],[81.22771,21.53306],[81.23126,21.5308],[81.24176,21.53055],[81.24351,21.52824],[81.24482,21.52837],[81.24756,21.53455],[81.24974,21.53419],[81.25076,21.53742],[81.25852,21.53483],[81.27138,21.53395],[81.27297,21.53109],[81.27246,21.52642],[81.27471,21.52611],[81.27516,21.52446],[81.27438,21.5136],[81.30131,21.51273],[81.30816,21.51478],[81.3068,21.52078],[81.31383,21.53742],[81.31701,21.53533],[81.32839,21.53277],[81.33082,21.54114],[81.33811,21.53961],[81.34072,21.53709],[81.34384,21.53801],[81.34408,21.53988],[81.34502,21.53824],[81.34863,21.53978],[81.35158,21.5378],[81.35381,21.53846],[81.35241,21.53973],[81.35531,21.54453],[81.36125,21.54359],[81.3598,21.53636],[81.36308,21.53296],[81.37506,21.5288],[81.37604,21.51577],[81.38628,21.5238],[81.4072,21.51919],[81.41009,21.52038],[81.42655,21.51765],[81.44262,21.51788],[81.44164,21.51568],[81.44842,21.51768],[81.46394,21.51128],[81.47003,21.50749],[81.46446,21.49542],[81.44672,21.49941],[81.44529,21.49188],[81.44182,21.48706],[81.44317,21.48414],[81.44847,21.483],[81.46957,21.47163],[81.45785,21.45771],[81.44978,21.45147],[81.45195,21.44389],[81.45071,21.43159],[81.45197,21.42748],[81.44925,21.42697],[81.44642,21.42077],[81.44104,21.41929],[81.43852,21.40785],[81.44943,21.40572],[81.45599,21.40909],[81.46866,21.40873],[81.47072,21.41558],[81.46855,21.41775],[81.46976,21.41844],[81.46831,21.42119],[81.47995,21.42234],[81.4818,21.4204],[81.49032,21.41975],[81.49642,21.41617],[81.49832,21.41264],[81.50194,21.41123],[81.50183,21.40483],[81.49631,21.40035],[81.49487,21.39717],[81.49244,21.39751],[81.49105,21.39958],[81.4835,21.39831],[81.48197,21.38936],[81.47868,21.38407],[81.4899,21.38368],[81.49183,21.3747],[81.49716,21.37455],[81.49948,21.37196],[81.49914,21.3617],[81.49815,21.35797],[81.49518,21.35628],[81.49607,21.35374],[81.50948,21.34999],[81.52403,21.34903],[81.52429,21.34709],[81.5354,21.34766],[81.53864,21.34085],[81.5414,21.3402],[81.54906,21.33447],[81.54803,21.33318],[81.55105,21.33205],[81.55887,21.33566],[81.57329,21.33439],[81.58072,21.33191],[81.5969,21.34364],[81.59207,21.35688],[81.60872,21.36296],[81.61102,21.36536],[81.61247,21.37248],[81.6085,21.37828],[81.60782,21.3822],[81.61012,21.38732],[81.61414,21.3894],[81.62105,21.38668],[81.62541,21.3882],[81.62948,21.39591],[81.63818,21.40272],[81.63929,21.40568],[81.63826,21.40904],[81.63143,21.41433],[81.63066,21.41753],[81.6325,21.42693],[81.62848,21.43413],[81.63212,21.44569],[81.62682,21.45169],[81.62264,21.46569],[81.62399,21.46958],[81.63088,21.47445],[81.62753,21.4849],[81.63066,21.4963],[81.62803,21.50803],[81.63314,21.51427],[81.64458,21.52177],[81.64306,21.54543],[81.6459,21.54773],[81.66484,21.54673],[81.6673,21.54804],[81.66901,21.55096],[81.66649,21.56794],[81.68071,21.57437],[81.69783,21.60844],[81.69742,21.61644],[81.69351,21.62454],[81.66192,21.64719],[81.6574,21.65529],[81.65787,21.65929],[81.66206,21.66302],[81.67094,21.66186],[81.67277,21.66407],[81.67307,21.66888],[81.68271,21.675],[81.70952,21.67875],[81.72171,21.68562],[81.72305,21.68814],[81.72231,21.69535],[81.7265,21.70822],[81.71878,21.71719],[81.71227,21.73301],[81.69767,21.74827],[81.69791,21.7582],[81.70057,21.76133],[81.70425,21.76249],[81.71995,21.76071],[81.73443,21.76527],[81.73884,21.76097],[81.74035,21.74962],[81.74424,21.74877],[81.76078,21.75702],[81.76834,21.76743],[81.7664,21.76892],[81.76595,21.77306],[81.75564,21.77941],[81.75469,21.79584],[81.74919,21.80027],[81.74829,21.80366],[81.74585,21.80317],[81.74629,21.79546],[81.74255,21.7932],[81.73578,21.79665],[81.73171,21.80152],[81.72827,21.80138],[81.71748,21.80812],[81.7167,21.81237],[81.7148,21.81379],[81.70421,21.81545],[81.69615,21.80954],[81.68912,21.815],[81.67852,21.81609],[81.67505,21.81377],[81.66708,21.81771],[81.65342,21.81565],[81.63475,21.82319],[81.62772,21.83152],[81.62136,21.83281],[81.61518,21.83027],[81.60861,21.83056],[81.59883,21.8346],[81.5901,21.83522],[81.57872,21.84601],[81.58138,21.85239],[81.56857,21.86072],[81.56296,21.8676],[81.5615,21.87228],[81.56383,21.87548],[81.56036,21.87656],[81.55624,21.87357],[81.55322,21.87524],[81.55575,21.8781],[81.55494,21.88051],[81.55816,21.88423],[81.54857,21.88809],[81.54915,21.89168],[81.55383,21.89332],[81.55421,21.89817],[81.55212,21.89623],[81.54013,21.89481],[81.53565,21.89803],[81.53478,21.90668],[81.53307,21.90895],[81.53049,21.90853],[81.52844,21.91443],[81.52843,21.92142],[81.52179,21.92603],[81.51809,21.92271],[81.51076,21.92474],[81.50855,21.91971],[81.50753,21.92074],[81.506,21.91858],[81.50464,21.91909],[81.50385,21.92689],[81.50818,21.93708],[81.51421,21.93786],[81.51566,21.94],[81.52072,21.9395],[81.52122,21.94422],[81.52409,21.94525],[81.52545,21.94307],[81.5287,21.9431],[81.5289,21.94011],[81.53124,21.93986],[81.53135,21.9383],[81.53381,21.9382],[81.536,21.94059],[81.53738,21.93866],[81.53779,21.94212],[81.54042,21.94019],[81.5441,21.94441],[81.54963,21.94429],[81.55024,21.9489],[81.54138,21.95152],[81.54158,21.95417],[81.53845,21.95251],[81.53847,21.95657],[81.53352,21.96031],[81.53335,21.97229],[81.53651,21.97622],[81.53805,21.97474],[81.54361,21.97877],[81.5435,21.98086],[81.54784,21.98117],[81.55042,21.98471],[81.55377,21.98452],[81.55543,21.9892],[81.5521,21.98856],[81.55205,21.99404],[81.54907,21.9964],[81.54948,21.99968],[81.55283,22.00262],[81.54015,22.00698],[81.53292,22.00669],[81.53173,22.00544],[81.53341,22.00611],[81.53278,22.00425],[81.52829,22.00537],[81.52686,22.00389],[81.52033,22.00676],[81.51174,21.99859],[81.50752,22.00289],[81.50098,22.00341],[81.50282,22.01298],[81.49997,22.01376],[81.49831,22.01194],[81.48755,22.01737]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"651","area_level":"District","area_name":"Fazilka","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.29631,30.69105],[74.29113,30.69244],[74.28993,30.68984],[74.29211,30.68847],[74.29203,30.68343],[74.28783,30.68134],[74.28771,30.67727],[74.29241,30.67586],[74.29636,30.67051],[74.29237,30.6656],[74.29271,30.66386],[74.28959,30.66534],[74.28664,30.67265],[74.28419,30.67453],[74.2751,30.67247],[74.27468,30.66889],[74.26994,30.66722],[74.26655,30.67221],[74.25807,30.6783],[74.25588,30.67091],[74.25311,30.66815],[74.24921,30.66768],[74.24451,30.67225],[74.24148,30.67229],[74.23848,30.67573],[74.21319,30.68872],[74.20748,30.6788],[74.19797,30.67079],[74.19681,30.6682],[74.19332,30.66517],[74.18182,30.66151],[74.1774,30.6552],[74.16937,30.64873],[74.16336,30.64842],[74.15954,30.64172],[74.15608,30.64076],[74.15323,30.63505],[74.14911,30.63166],[74.1377,30.62748],[74.12736,30.6348],[74.12861,30.63232],[74.12686,30.62414],[74.12129,30.6226],[74.11807,30.60791],[74.10511,30.61927],[74.09604,30.61161],[74.10195,30.6111],[74.10227,30.60963],[74.1015,30.60333],[74.09531,30.60121],[74.09872,30.59059],[74.09657,30.58724],[74.10213,30.57923],[74.07342,30.55468],[74.07999,30.54847],[74.09095,30.54942],[74.07986,30.53161],[74.07228,30.52291],[74.05895,30.51846],[74.05341,30.52361],[74.05001,30.53716],[74.04778,30.53958],[74.03922,30.54262],[74.03796,30.53161],[74.03101,30.52693],[74.02384,30.52607],[74.01203,30.53359],[74.01108,30.5211],[74.01999,30.51417],[73.99269,30.51426],[73.98199,30.50402],[73.97594,30.49412],[73.96366,30.48485],[73.96962,30.4783],[73.96971,30.47528],[73.96413,30.45648],[73.95013,30.46008],[73.94688,30.4639],[73.94753,30.46828],[73.94583,30.46827],[73.94772,30.4839],[73.93445,30.49028],[73.93104,30.4762],[73.93174,30.4672],[73.92775,30.4659],[73.93754,30.45223],[73.9373,30.44507],[73.92626,30.43893],[73.93684,30.43645],[73.94884,30.43694],[73.9601,30.44087],[73.96802,30.44015],[73.97185,30.44411],[73.97379,30.44382],[73.96628,30.43258],[73.9647,30.42456],[73.94865,30.41675],[73.93671,30.40216],[73.92221,30.39809],[73.91957,30.39563],[73.91414,30.38271],[73.90079,30.3731],[73.88405,30.367],[73.87978,30.35972],[73.90265,30.34908],[73.91451,30.33495],[73.93087,30.32007],[73.93997,30.30054],[73.95977,30.27018],[73.96394,30.25722],[73.96423,30.24838],[73.97433,30.18911],[73.97284,30.17742],[73.96833,30.16867],[73.96814,30.14484],[73.97082,30.12541],[73.97565,30.12099],[73.96763,30.11929],[73.95217,30.10434],[73.94952,30.09614],[73.92989,30.06875],[73.90405,30.05012],[73.89362,30.02189],[73.88653,30.01249],[73.88622,29.99603],[73.89539,29.98221],[73.89512,29.97408],[74.10168,29.9671],[74.44819,29.94718],[74.43205,29.96755],[74.42203,29.99786],[74.45963,30.00636],[74.46291,30.00912],[74.4611,30.01416],[74.45137,30.02984],[74.42412,30.02607],[74.41231,30.02646],[74.40807,30.02824],[74.41367,30.02904],[74.41411,30.03577],[74.39269,30.05664],[74.39558,30.05818],[74.38785,30.06709],[74.38715,30.07048],[74.38887,30.07456],[74.36561,30.08737],[74.37307,30.1039],[74.37183,30.10783],[74.38188,30.11173],[74.38669,30.11175],[74.39634,30.10852],[74.40819,30.09573],[74.41286,30.09755],[74.40065,30.1112],[74.39998,30.11675],[74.39441,30.11899],[74.38128,30.13081],[74.37416,30.14641],[74.37472,30.15351],[74.35946,30.15519],[74.3357,30.16378],[74.34807,30.19214],[74.34481,30.19926],[74.35292,30.21434],[74.35796,30.24068],[74.32354,30.24493],[74.30805,30.24146],[74.28624,30.23332],[74.27383,30.24185],[74.26365,30.2465],[74.26305,30.24902],[74.26452,30.25373],[74.27148,30.26408],[74.28305,30.27476],[74.29759,30.26516],[74.29721,30.27419],[74.30588,30.3021],[74.30306,30.30835],[74.31206,30.31954],[74.32542,30.32931],[74.32268,30.33073],[74.32195,30.33313],[74.31894,30.35375],[74.31644,30.35681],[74.30989,30.36002],[74.30766,30.37012],[74.31445,30.38675],[74.3165,30.38908],[74.34181,30.38585],[74.35335,30.38213],[74.35764,30.38973],[74.3584,30.39595],[74.35738,30.40259],[74.3509,30.4054],[74.33562,30.40822],[74.31981,30.4089],[74.29288,30.41396],[74.2792,30.4199],[74.2583,30.42267],[74.24429,30.42771],[74.27118,30.42776],[74.27436,30.43112],[74.27832,30.43031],[74.29057,30.43616],[74.30653,30.44624],[74.32761,30.44535],[74.34385,30.46354],[74.3465,30.47118],[74.3462,30.48438],[74.35395,30.48113],[74.3626,30.48031],[74.37638,30.48546],[74.37877,30.49574],[74.38368,30.49995],[74.3772,30.50973],[74.37302,30.5125],[74.38808,30.5251],[74.39486,30.52807],[74.39882,30.5268],[74.4011,30.53534],[74.3916,30.54119],[74.39029,30.54486],[74.38822,30.54596],[74.37502,30.54867],[74.37981,30.55748],[74.37611,30.55872],[74.37491,30.5678],[74.368,30.57941],[74.36828,30.58381],[74.36681,30.58492],[74.36878,30.58839],[74.36382,30.59209],[74.36207,30.59584],[74.34883,30.5995],[74.34137,30.60354],[74.34996,30.62307],[74.35499,30.6285],[74.35572,30.63317],[74.35716,30.63308],[74.35671,30.63982],[74.34584,30.6465],[74.35027,30.65112],[74.35198,30.65111],[74.35484,30.66045],[74.3524,30.66774],[74.34797,30.66448],[74.33965,30.67174],[74.33495,30.66979],[74.32916,30.66992],[74.32868,30.67208],[74.33157,30.67256],[74.33088,30.67446],[74.32391,30.67257],[74.31989,30.6749],[74.31534,30.67514],[74.31128,30.67997],[74.3062,30.67873],[74.30497,30.68358],[74.30136,30.68836],[74.30413,30.69215],[74.30053,30.69206],[74.30004,30.69046],[74.29631,30.69105]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"652","area_level":"District","area_name":"Khowai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.66591,24.23303],[91.66419,24.23214],[91.66421,24.22909],[91.66279,24.23011],[91.65744,24.2274],[91.65698,24.22453],[91.65093,24.21838],[91.64977,24.22047],[91.64775,24.21849],[91.64892,24.21719],[91.64721,24.2152],[91.65241,24.20943],[91.65115,24.20882],[91.65265,24.20356],[91.65453,24.20252],[91.65311,24.20169],[91.65413,24.19845],[91.65276,24.19819],[91.65259,24.19593],[91.6591,24.19537],[91.65756,24.19318],[91.66013,24.18954],[91.65747,24.18474],[91.65896,24.18306],[91.65687,24.18054],[91.65775,24.17955],[91.65629,24.17615],[91.64676,24.17862],[91.64424,24.1706],[91.64661,24.15663],[91.63445,24.13806],[91.63852,24.1296],[91.6412,24.11308],[91.63955,24.1085],[91.63678,24.10654],[91.63842,24.1044],[91.63709,24.10214],[91.6352,24.10105],[91.63422,24.1022],[91.63179,24.09984],[91.62925,24.10147],[91.62701,24.09883],[91.62579,24.09928],[91.62492,24.09657],[91.62268,24.0972],[91.62148,24.09521],[91.61982,24.09668],[91.61706,24.09429],[91.61579,24.09544],[91.61141,24.09169],[91.6038,24.09408],[91.60474,24.09579],[91.6029,24.09534],[91.60262,24.09662],[91.60038,24.09529],[91.59925,24.09712],[91.59738,24.09586],[91.59454,24.09653],[91.59538,24.09329],[91.59129,24.09261],[91.59306,24.0892],[91.59845,24.08664],[91.5985,24.08448],[91.59391,24.08265],[91.59189,24.0783],[91.59241,24.0756],[91.58741,24.07488],[91.58607,24.0726],[91.58234,24.07339],[91.57445,24.07998],[91.57297,24.07908],[91.5729,24.07473],[91.55733,24.07683],[91.5453,24.0742],[91.54425,24.07594],[91.50865,24.08641],[91.49766,24.08728],[91.49248,24.09088],[91.49502,24.09552],[91.49177,24.0971],[91.48742,24.09525],[91.48489,24.09643],[91.47973,24.09353],[91.48066,24.07971],[91.47308,24.07611],[91.47775,24.07027],[91.4778,24.06695],[91.48084,24.06472],[91.48065,24.06183],[91.48911,24.05396],[91.48617,24.05104],[91.48755,24.04535],[91.48658,24.04215],[91.48848,24.04062],[91.48709,24.03887],[91.48847,24.03232],[91.49264,24.02585],[91.4916,24.02601],[91.49025,24.02066],[91.49232,24.01923],[91.49146,24.01742],[91.49408,24.01615],[91.49622,24.00786],[91.49435,24.00421],[91.49649,24.00196],[91.49431,23.99895],[91.49953,23.99373],[91.502,23.99465],[91.50467,23.99034],[91.50392,23.98896],[91.50858,23.98695],[91.50618,23.9779],[91.51247,23.97126],[91.5159,23.96349],[91.51804,23.96236],[91.51945,23.94749],[91.52537,23.94269],[91.52691,23.93916],[91.52565,23.93496],[91.52729,23.93341],[91.53256,23.93323],[91.53133,23.93008],[91.53591,23.9299],[91.53113,23.92543],[91.53076,23.92348],[91.53265,23.92206],[91.52717,23.91244],[91.52762,23.90973],[91.53506,23.90758],[91.54442,23.90857],[91.54483,23.90558],[91.55385,23.91231],[91.55579,23.90064],[91.55822,23.90002],[91.55661,23.89654],[91.55726,23.88837],[91.55409,23.88764],[91.55442,23.88023],[91.56036,23.87599],[91.56446,23.86983],[91.56366,23.86246],[91.56219,23.86184],[91.56398,23.85541],[91.56101,23.84664],[91.56226,23.8441],[91.55915,23.83734],[91.56285,23.83233],[91.55946,23.82517],[91.56241,23.82424],[91.56533,23.81973],[91.5629,23.81536],[91.56465,23.81215],[91.56464,23.80581],[91.56649,23.80357],[91.56595,23.79534],[91.5675,23.79376],[91.56611,23.79196],[91.56738,23.79084],[91.56883,23.77676],[91.57251,23.76274],[91.5766,23.75971],[91.58108,23.76133],[91.58191,23.76368],[91.58442,23.75944],[91.58875,23.75725],[91.5917,23.75912],[91.59557,23.75881],[91.60056,23.762],[91.59885,23.76291],[91.60123,23.76423],[91.60992,23.76457],[91.61738,23.76814],[91.61949,23.76848],[91.62283,23.76608],[91.63114,23.76825],[91.63299,23.76484],[91.6359,23.76759],[91.63842,23.76823],[91.64036,23.76537],[91.64689,23.76867],[91.64733,23.7653],[91.64905,23.76429],[91.64964,23.7655],[91.6568,23.76308],[91.65923,23.76483],[91.66029,23.76325],[91.66867,23.76247],[91.66956,23.76404],[91.67016,23.76304],[91.67327,23.76459],[91.68081,23.76254],[91.68169,23.76045],[91.69087,23.75986],[91.69281,23.75775],[91.6988,23.76099],[91.70572,23.76063],[91.70692,23.76387],[91.70857,23.76376],[91.71233,23.76807],[91.7172,23.76895],[91.7173,23.75976],[91.72232,23.75813],[91.72122,23.75583],[91.72271,23.75073],[91.72708,23.74615],[91.73132,23.74699],[91.73284,23.74198],[91.73784,23.74111],[91.73996,23.73723],[91.73955,23.73202],[91.74393,23.72941],[91.74332,23.71417],[91.74012,23.7143],[91.73939,23.7108],[91.73127,23.70842],[91.72993,23.70131],[91.73199,23.69834],[91.73672,23.69717],[91.73758,23.69496],[91.74183,23.69251],[91.74156,23.68533],[91.74569,23.68435],[91.74588,23.67708],[91.74926,23.6751],[91.75287,23.67727],[91.76264,23.68871],[91.763,23.69464],[91.76039,23.70154],[91.76301,23.70919],[91.76335,23.72422],[91.77188,23.7235],[91.77399,23.72505],[91.77265,23.73229],[91.77921,23.74353],[91.78337,23.74775],[91.78276,23.75006],[91.78482,23.75513],[91.79386,23.75607],[91.80313,23.75346],[91.80225,23.7599],[91.80461,23.77598],[91.80215,23.78382],[91.80697,23.80619],[91.8057,23.80839],[91.80702,23.81266],[91.80525,23.81521],[91.80787,23.81776],[91.80861,23.82497],[91.80462,23.82752],[91.8037,23.84393],[91.80233,23.84504],[91.80424,23.84594],[91.80399,23.84883],[91.80681,23.84908],[91.80549,23.85103],[91.80711,23.86053],[91.80647,23.86821],[91.80247,23.87102],[91.80034,23.87787],[91.79731,23.87978],[91.7958,23.88858],[91.78971,23.89215],[91.78963,23.90221],[91.79794,23.90561],[91.79474,23.91119],[91.79512,23.91445],[91.79364,23.91449],[91.78968,23.90948],[91.78869,23.9156],[91.78421,23.91762],[91.78312,23.92152],[91.77841,23.91909],[91.775,23.91946],[91.77389,23.92202],[91.76523,23.92114],[91.76449,23.93073],[91.76868,23.93421],[91.76421,23.94305],[91.76664,23.9485],[91.76502,23.95326],[91.76139,23.95503],[91.75701,23.96137],[91.75917,23.9715],[91.76141,23.9738],[91.75789,23.9779],[91.75798,23.98493],[91.75493,23.98701],[91.75659,23.99725],[91.75445,24.00062],[91.75609,24.01735],[91.7595,24.02507],[91.75731,24.02826],[91.75861,24.03008],[91.75775,24.0328],[91.75496,24.03289],[91.75469,24.03511],[91.75545,24.04195],[91.75832,24.04504],[91.75697,24.05059],[91.75787,24.05826],[91.75558,24.06265],[91.75959,24.06602],[91.75973,24.06817],[91.7571,24.06897],[91.75697,24.07629],[91.75256,24.08124],[91.75728,24.0859],[91.75819,24.0913],[91.75981,24.09201],[91.75776,24.09599],[91.75779,24.10392],[91.75577,24.10574],[91.75709,24.10924],[91.75652,24.11558],[91.75413,24.11687],[91.75714,24.119],[91.7574,24.12564],[91.75934,24.13029],[91.75616,24.13471],[91.75955,24.13682],[91.76053,24.14068],[91.75172,24.14261],[91.7463,24.14114],[91.7448,24.14305],[91.74361,24.14105],[91.74129,24.14281],[91.73952,24.14149],[91.7367,24.14586],[91.73428,24.14365],[91.73244,24.14572],[91.73107,24.14359],[91.72842,24.14324],[91.72675,24.14654],[91.72332,24.14835],[91.72176,24.15248],[91.71679,24.15199],[91.71441,24.15378],[91.7061,24.15428],[91.70641,24.15775],[91.70335,24.16354],[91.69742,24.16365],[91.69496,24.15953],[91.68828,24.16209],[91.68882,24.16417],[91.68444,24.16616],[91.68194,24.17219],[91.68257,24.17414],[91.68018,24.17561],[91.68142,24.17662],[91.68002,24.17663],[91.68117,24.17765],[91.67992,24.17902],[91.68085,24.18397],[91.67887,24.18753],[91.6806,24.18905],[91.67961,24.19347],[91.67731,24.19428],[91.67798,24.19675],[91.6757,24.19775],[91.6767,24.20061],[91.67394,24.2011],[91.67478,24.20205],[91.67276,24.20239],[91.6734,24.20368],[91.67163,24.20443],[91.66968,24.209],[91.66698,24.21052],[91.66789,24.21655],[91.66597,24.2171],[91.66725,24.2183],[91.66804,24.23102],[91.66591,24.23303]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"653","area_level":"District","area_name":"Sepahijala","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.56828,23.78232],[91.56825,23.78509],[91.56601,23.78709],[91.55772,23.78233],[91.55206,23.78557],[91.55188,23.78056],[91.54849,23.77961],[91.54139,23.76862],[91.5366,23.76852],[91.52648,23.76212],[91.5204,23.76207],[91.52081,23.75633],[91.51814,23.75585],[91.51688,23.75065],[91.50823,23.75164],[91.50099,23.7471],[91.49719,23.74732],[91.4933,23.7411],[91.48636,23.7427],[91.48139,23.74575],[91.4764,23.74113],[91.46645,23.74547],[91.45585,23.74615],[91.44934,23.74382],[91.44298,23.745],[91.43978,23.74715],[91.43559,23.76148],[91.43247,23.76452],[91.40961,23.76609],[91.40093,23.76386],[91.39653,23.76619],[91.39228,23.76625],[91.38433,23.77159],[91.37972,23.7692],[91.3872,23.7644],[91.38784,23.74779],[91.38659,23.74519],[91.37437,23.74513],[91.36666,23.7405],[91.36029,23.74047],[91.33156,23.75836],[91.32382,23.75916],[91.31973,23.75789],[91.31658,23.75285],[91.31755,23.74112],[91.31657,23.72687],[91.31497,23.72586],[91.30581,23.72921],[91.30225,23.73468],[91.29316,23.7389],[91.28861,23.73833],[91.28388,23.72685],[91.26983,23.72912],[91.26843,23.73243],[91.26553,23.73411],[91.24999,23.73004],[91.24768,23.73631],[91.2438,23.73901],[91.23925,23.73878],[91.23359,23.73215],[91.23074,23.73471],[91.23092,23.73631],[91.2215,23.74309],[91.21903,23.73643],[91.21776,23.73987],[91.21196,23.74461],[91.21037,23.74916],[91.19663,23.75109],[91.18621,23.75067],[91.183,23.74883],[91.16764,23.74964],[91.15884,23.74165],[91.15708,23.74202],[91.15643,23.73978],[91.15808,23.73926],[91.1492,23.71153],[91.15161,23.70545],[91.15424,23.68839],[91.19382,23.6899],[91.19552,23.69214],[91.20367,23.6854],[91.20853,23.6864],[91.20328,23.68011],[91.20499,23.67975],[91.20238,23.66289],[91.20368,23.65827],[91.20148,23.65597],[91.20501,23.65499],[91.20513,23.65389],[91.2025,23.65391],[91.20459,23.6504],[91.19969,23.64969],[91.19942,23.64658],[91.19073,23.64695],[91.19295,23.65443],[91.18506,23.65664],[91.18286,23.65966],[91.18194,23.65638],[91.17777,23.65854],[91.17651,23.65764],[91.17604,23.65959],[91.17383,23.65635],[91.17039,23.65754],[91.16646,23.66348],[91.16125,23.66385],[91.16152,23.66707],[91.1563,23.67072],[91.16137,23.65431],[91.1587,23.64136],[91.16101,23.63123],[91.15871,23.62893],[91.15814,23.62178],[91.16103,23.61393],[91.15968,23.61129],[91.16375,23.60104],[91.16217,23.59868],[91.1625,23.59504],[91.16875,23.59259],[91.17713,23.5932],[91.17809,23.59175],[91.17527,23.58551],[91.1873,23.57753],[91.18727,23.57314],[91.19515,23.56248],[91.19445,23.54718],[91.19903,23.54733],[91.20199,23.55006],[91.20534,23.54526],[91.20747,23.54536],[91.21047,23.54654],[91.20976,23.54852],[91.21295,23.55041],[91.21301,23.54511],[91.20816,23.54304],[91.20076,23.52002],[91.20784,23.51205],[91.2236,23.51402],[91.21798,23.4995],[91.22346,23.49731],[91.23557,23.50179],[91.23444,23.49614],[91.23723,23.49512],[91.23638,23.48899],[91.24934,23.49017],[91.25224,23.48101],[91.25082,23.46433],[91.25341,23.4614],[91.2535,23.45801],[91.25155,23.45364],[91.25578,23.44736],[91.25646,23.44155],[91.27065,23.4298],[91.26343,23.42372],[91.27644,23.4147],[91.27975,23.3766],[91.28515,23.37701],[91.28854,23.37538],[91.29214,23.37811],[91.29433,23.37468],[91.29375,23.37125],[91.28424,23.37108],[91.28616,23.36309],[91.2949,23.36119],[91.29107,23.35066],[91.30108,23.35159],[91.3149,23.36093],[91.32009,23.36009],[91.31801,23.35297],[91.31261,23.35391],[91.31105,23.35266],[91.31079,23.34238],[91.30512,23.34339],[91.29617,23.34089],[91.28985,23.31852],[91.29624,23.3134],[91.30953,23.31385],[91.31315,23.30634],[91.31496,23.29661],[91.30714,23.29972],[91.30022,23.29245],[91.30234,23.28634],[91.31667,23.28188],[91.31579,23.27945],[91.32065,23.28005],[91.32705,23.2765],[91.34093,23.27908],[91.34725,23.28249],[91.35337,23.28881],[91.35655,23.28975],[91.35598,23.29301],[91.36083,23.29569],[91.36286,23.29887],[91.36533,23.29858],[91.37079,23.30276],[91.36981,23.3074],[91.3752,23.31301],[91.37568,23.31987],[91.37799,23.32059],[91.37845,23.32426],[91.38068,23.3257],[91.38757,23.32529],[91.38647,23.33096],[91.38951,23.3335],[91.39147,23.33826],[91.39062,23.34054],[91.39227,23.34157],[91.38938,23.34364],[91.39103,23.34452],[91.38908,23.34668],[91.39093,23.34864],[91.38813,23.35146],[91.38916,23.35329],[91.3877,23.35563],[91.3938,23.36077],[91.39859,23.35841],[91.40216,23.36288],[91.40502,23.36365],[91.40521,23.36837],[91.41022,23.36707],[91.41301,23.3716],[91.4202,23.37378],[91.42276,23.38173],[91.41911,23.38344],[91.41874,23.38983],[91.41584,23.38871],[91.40872,23.38974],[91.40448,23.39562],[91.40074,23.39572],[91.38516,23.40337],[91.38405,23.41186],[91.3854,23.41519],[91.38355,23.4203],[91.38783,23.42373],[91.3856,23.42608],[91.38897,23.43344],[91.38017,23.43694],[91.37872,23.43939],[91.37946,23.44131],[91.37687,23.4444],[91.37889,23.44838],[91.37812,23.45165],[91.37973,23.45391],[91.37954,23.46303],[91.38114,23.46777],[91.38426,23.47004],[91.38646,23.47454],[91.39211,23.47709],[91.39238,23.47872],[91.38257,23.48635],[91.38514,23.49348],[91.38318,23.49689],[91.38631,23.50046],[91.38222,23.5022],[91.38001,23.50794],[91.38211,23.51146],[91.37975,23.5115],[91.37526,23.51775],[91.3881,23.52575],[91.40079,23.52344],[91.40094,23.52848],[91.40224,23.52928],[91.39747,23.5317],[91.39548,23.53668],[91.39907,23.54065],[91.39686,23.54809],[91.39841,23.54829],[91.39812,23.55104],[91.39454,23.55396],[91.39523,23.55911],[91.39851,23.56201],[91.39951,23.57781],[91.39766,23.58477],[91.40317,23.58759],[91.41073,23.59447],[91.41453,23.59552],[91.41729,23.60039],[91.42459,23.60248],[91.42957,23.60862],[91.43286,23.60894],[91.43303,23.61225],[91.44034,23.62189],[91.43722,23.6231],[91.43732,23.62483],[91.448,23.6321],[91.44872,23.63879],[91.45356,23.64252],[91.4595,23.64408],[91.46273,23.66259],[91.46641,23.66242],[91.472,23.66485],[91.47392,23.66748],[91.47666,23.66807],[91.47974,23.67292],[91.48229,23.673],[91.48781,23.67711],[91.48571,23.67256],[91.48712,23.66943],[91.49486,23.67107],[91.49585,23.66496],[91.50277,23.66268],[91.50355,23.65894],[91.50614,23.65759],[91.50814,23.65307],[91.50565,23.6515],[91.50532,23.64841],[91.50821,23.64835],[91.50851,23.64616],[91.5108,23.64543],[91.51372,23.64808],[91.51321,23.64922],[91.51637,23.65043],[91.51541,23.65196],[91.52075,23.6549],[91.5214,23.65755],[91.51982,23.65801],[91.52557,23.65828],[91.52609,23.66202],[91.52339,23.66241],[91.52335,23.66575],[91.52616,23.66761],[91.524,23.66808],[91.5234,23.66988],[91.5275,23.67333],[91.52631,23.67587],[91.52744,23.67969],[91.54042,23.68329],[91.54115,23.68679],[91.54383,23.68829],[91.5417,23.69024],[91.54222,23.692],[91.53886,23.69444],[91.53935,23.69626],[91.53426,23.70149],[91.53475,23.7035],[91.52907,23.70646],[91.53314,23.71108],[91.53855,23.71129],[91.53578,23.71655],[91.53821,23.72187],[91.53718,23.72667],[91.54248,23.72708],[91.54452,23.72527],[91.55864,23.72781],[91.56139,23.73346],[91.56467,23.73617],[91.56825,23.73596],[91.56838,23.73848],[91.57269,23.74065],[91.57501,23.74479],[91.57426,23.7497],[91.57651,23.75278],[91.5724,23.75948],[91.56828,23.78232]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"654","area_level":"District","area_name":"Gomati","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.71724,23.76858],[91.71233,23.76807],[91.70857,23.76376],[91.70692,23.76387],[91.70572,23.76063],[91.6988,23.76099],[91.69281,23.75775],[91.69087,23.75986],[91.68169,23.76045],[91.68081,23.76254],[91.67327,23.76459],[91.67016,23.76304],[91.66956,23.76404],[91.66867,23.76247],[91.66029,23.76325],[91.65923,23.76483],[91.6568,23.76308],[91.64964,23.7655],[91.64905,23.76429],[91.64733,23.7653],[91.64689,23.76867],[91.64036,23.76537],[91.63842,23.76823],[91.6359,23.76759],[91.63299,23.76484],[91.63114,23.76825],[91.62283,23.76608],[91.61949,23.76848],[91.61738,23.76814],[91.60992,23.76457],[91.60123,23.76423],[91.59885,23.76291],[91.60056,23.762],[91.59557,23.75881],[91.5917,23.75912],[91.58875,23.75725],[91.58442,23.75944],[91.58191,23.76368],[91.58108,23.76133],[91.5766,23.75971],[91.57282,23.76288],[91.5724,23.75948],[91.57648,23.75229],[91.57426,23.7497],[91.57546,23.74668],[91.57436,23.743],[91.56876,23.73895],[91.56835,23.73605],[91.56467,23.73617],[91.56259,23.73458],[91.55864,23.72781],[91.54452,23.72527],[91.54248,23.72708],[91.5371,23.72653],[91.53821,23.72187],[91.53578,23.71655],[91.53855,23.71129],[91.53314,23.71108],[91.52907,23.70646],[91.53475,23.7035],[91.53426,23.70149],[91.53935,23.69626],[91.53886,23.69444],[91.54222,23.692],[91.5417,23.69024],[91.54383,23.68829],[91.54115,23.68679],[91.54042,23.68329],[91.52744,23.67969],[91.52631,23.67587],[91.5275,23.67333],[91.5234,23.66988],[91.524,23.66808],[91.52616,23.66761],[91.52335,23.66575],[91.52339,23.66241],[91.52609,23.66202],[91.52557,23.65828],[91.51982,23.65801],[91.5214,23.65755],[91.52075,23.6549],[91.51541,23.65196],[91.51637,23.65043],[91.51321,23.64922],[91.51372,23.64808],[91.5108,23.64543],[91.50851,23.64616],[91.50821,23.64835],[91.50537,23.64819],[91.50565,23.6515],[91.50811,23.65343],[91.50647,23.65442],[91.50614,23.65759],[91.50345,23.6591],[91.50309,23.66242],[91.49623,23.66455],[91.49432,23.67135],[91.49005,23.66924],[91.48635,23.67029],[91.48571,23.67256],[91.48781,23.67711],[91.48229,23.673],[91.47974,23.67292],[91.47666,23.66807],[91.47392,23.66748],[91.472,23.66485],[91.46641,23.66242],[91.46273,23.66259],[91.4595,23.64408],[91.45356,23.64252],[91.44872,23.63879],[91.448,23.6321],[91.43732,23.62483],[91.43722,23.6231],[91.44034,23.62189],[91.43303,23.61225],[91.43286,23.60894],[91.42957,23.60862],[91.42459,23.60248],[91.41729,23.60039],[91.41453,23.59552],[91.41073,23.59447],[91.40317,23.58759],[91.39766,23.58477],[91.39951,23.57781],[91.39851,23.56201],[91.39523,23.55911],[91.39454,23.55396],[91.39812,23.55104],[91.39841,23.54829],[91.39686,23.54809],[91.39907,23.54065],[91.39548,23.53668],[91.39747,23.5317],[91.40224,23.52928],[91.40094,23.52848],[91.40079,23.52344],[91.3881,23.52575],[91.37526,23.51775],[91.37975,23.5115],[91.38211,23.51146],[91.38001,23.50794],[91.38222,23.5022],[91.38631,23.50046],[91.38318,23.49689],[91.38514,23.49348],[91.38257,23.48635],[91.39238,23.47872],[91.39211,23.47709],[91.38646,23.47454],[91.38426,23.47004],[91.38114,23.46777],[91.37954,23.46303],[91.37973,23.45391],[91.37812,23.45165],[91.37889,23.44838],[91.37687,23.4444],[91.37946,23.44131],[91.37872,23.43939],[91.38017,23.43694],[91.38897,23.43344],[91.3856,23.42608],[91.38783,23.42373],[91.38355,23.4203],[91.3854,23.41519],[91.38405,23.41186],[91.38516,23.40337],[91.40074,23.39572],[91.40448,23.39562],[91.40872,23.38974],[91.41584,23.38871],[91.41874,23.38983],[91.41911,23.38344],[91.42276,23.38173],[91.4204,23.37433],[91.42319,23.37339],[91.42573,23.37003],[91.43082,23.37075],[91.43546,23.36639],[91.44096,23.36749],[91.44247,23.36537],[91.45065,23.36954],[91.45191,23.37369],[91.46045,23.37742],[91.4593,23.3799],[91.46147,23.3898],[91.4703,23.39031],[91.4691,23.39341],[91.47031,23.39542],[91.46807,23.3989],[91.47032,23.40174],[91.46788,23.40301],[91.46893,23.4055],[91.47786,23.4043],[91.48188,23.40504],[91.48466,23.40766],[91.48739,23.40663],[91.48788,23.40793],[91.48968,23.40609],[91.5033,23.40746],[91.50608,23.40909],[91.50718,23.40819],[91.51686,23.41559],[91.52135,23.41611],[91.52226,23.41442],[91.53077,23.42011],[91.53794,23.41934],[91.54822,23.42258],[91.55206,23.42191],[91.5567,23.42532],[91.56359,23.42548],[91.56528,23.42256],[91.57174,23.42384],[91.57445,23.41898],[91.57739,23.41953],[91.57602,23.41757],[91.57822,23.41494],[91.57682,23.41302],[91.57941,23.41007],[91.57853,23.40627],[91.58593,23.40456],[91.5888,23.3998],[91.59237,23.39826],[91.59853,23.40593],[91.60431,23.40981],[91.61182,23.40929],[91.61735,23.4192],[91.6195,23.41913],[91.62547,23.42532],[91.62849,23.42453],[91.63239,23.41649],[91.63091,23.41287],[91.63186,23.41049],[91.63002,23.41063],[91.62826,23.40803],[91.63152,23.40576],[91.63214,23.39261],[91.63614,23.39121],[91.64098,23.39336],[91.64303,23.38957],[91.64324,23.38137],[91.64497,23.37942],[91.64539,23.36953],[91.65076,23.36582],[91.65199,23.35907],[91.65398,23.35983],[91.65449,23.35871],[91.65559,23.36045],[91.65887,23.36096],[91.66672,23.36701],[91.67474,23.36681],[91.67805,23.37217],[91.68248,23.36972],[91.68737,23.37038],[91.68861,23.37421],[91.69453,23.36898],[91.69707,23.36906],[91.69763,23.36599],[91.7015,23.36488],[91.70183,23.36116],[91.70402,23.35979],[91.70086,23.35697],[91.69728,23.34674],[91.69885,23.34591],[91.70268,23.3474],[91.70405,23.34621],[91.70456,23.34401],[91.70269,23.34195],[91.70912,23.33687],[91.7105,23.33185],[91.71515,23.33186],[91.715,23.32955],[91.71821,23.32796],[91.71806,23.32609],[91.72142,23.32587],[91.7201,23.32313],[91.7212,23.32147],[91.72331,23.32198],[91.72812,23.31957],[91.72753,23.32415],[91.72893,23.32535],[91.73046,23.32347],[91.73238,23.32409],[91.73359,23.32189],[91.7329,23.31889],[91.73477,23.31835],[91.7356,23.31496],[91.73283,23.31463],[91.73214,23.3074],[91.72905,23.30808],[91.72838,23.30696],[91.72816,23.30357],[91.72984,23.30238],[91.72731,23.29497],[91.72999,23.28562],[91.72844,23.2815],[91.73948,23.2705],[91.73785,23.26746],[91.74104,23.26316],[91.74117,23.25681],[91.74538,23.25075],[91.74353,23.24854],[91.74654,23.24735],[91.74457,23.24577],[91.74287,23.23912],[91.7493,23.23636],[91.74788,23.23444],[91.74858,23.23102],[91.75144,23.22936],[91.75257,23.22469],[91.75623,23.2212],[91.75208,23.21565],[91.75611,23.21041],[91.7576,23.20105],[91.76007,23.19881],[91.75921,23.1935],[91.75722,23.1928],[91.75186,23.19556],[91.74327,23.19571],[91.7415,23.19765],[91.72873,23.19788],[91.72576,23.19463],[91.71764,23.1919],[91.71619,23.18963],[91.71928,23.18851],[91.71975,23.18603],[91.7247,23.18434],[91.72239,23.18074],[91.72465,23.16791],[91.72121,23.16531],[91.72256,23.16329],[91.72477,23.16361],[91.72367,23.16159],[91.725,23.1603],[91.72307,23.1585],[91.72483,23.159],[91.72511,23.1571],[91.72701,23.15726],[91.72808,23.15285],[91.72706,23.15158],[91.73133,23.14134],[91.73267,23.14027],[91.73738,23.14291],[91.74095,23.14078],[91.7492,23.144],[91.75888,23.13749],[91.76283,23.13859],[91.76452,23.1365],[91.76694,23.1371],[91.77105,23.1319],[91.77373,23.13211],[91.77231,23.12971],[91.775,23.12758],[91.77256,23.12268],[91.77546,23.12219],[91.77556,23.11998],[91.78016,23.11717],[91.78194,23.12021],[91.78376,23.12011],[91.78067,23.12807],[91.78461,23.1288],[91.78607,23.12319],[91.7893,23.11929],[91.78938,23.11589],[91.79172,23.11291],[91.79423,23.11335],[91.79673,23.11004],[91.7956,23.10852],[91.79838,23.10719],[91.80156,23.09607],[91.80679,23.09618],[91.80973,23.08997],[91.81383,23.08705],[91.82004,23.08381],[91.82446,23.08368],[91.82278,23.08659],[91.82793,23.08868],[91.82937,23.09147],[91.83139,23.08979],[91.83348,23.09099],[91.83309,23.09257],[91.83581,23.09332],[91.82505,23.09892],[91.82093,23.09972],[91.82068,23.09737],[91.81346,23.0992],[91.81761,23.10201],[91.8178,23.10845],[91.81631,23.10997],[91.81809,23.11204],[91.81562,23.11904],[91.81294,23.11913],[91.81089,23.12165],[91.81262,23.12265],[91.81153,23.12506],[91.81389,23.12881],[91.81233,23.1307],[91.81481,23.13145],[91.81477,23.13332],[91.81161,23.13418],[91.81116,23.13691],[91.81044,23.13369],[91.8081,23.1355],[91.80924,23.13643],[91.80816,23.13904],[91.81108,23.14462],[91.81308,23.14371],[91.81424,23.14524],[91.81013,23.15019],[91.81061,23.15349],[91.80608,23.15733],[91.80695,23.16241],[91.81011,23.16498],[91.80486,23.16809],[91.80575,23.17216],[91.80699,23.17184],[91.80511,23.17416],[91.80674,23.17521],[91.8042,23.17447],[91.80319,23.17683],[91.80628,23.1791],[91.80094,23.18388],[91.79747,23.18406],[91.79674,23.1866],[91.79467,23.18658],[91.79823,23.18935],[91.79887,23.19361],[91.78887,23.20444],[91.78857,23.20776],[91.79167,23.20762],[91.79262,23.20925],[91.79118,23.20939],[91.79163,23.21235],[91.7879,23.21511],[91.7884,23.21675],[91.79192,23.21814],[91.79022,23.22125],[91.79123,23.22558],[91.78984,23.22509],[91.7911,23.22673],[91.78775,23.22755],[91.78835,23.22875],[91.78419,23.23254],[91.78422,23.23883],[91.7854,23.23899],[91.78362,23.24327],[91.7806,23.24332],[91.78134,23.24148],[91.77972,23.23929],[91.77619,23.24317],[91.78046,23.24697],[91.77851,23.25174],[91.77981,23.25371],[91.77818,23.25643],[91.77702,23.25501],[91.77497,23.25669],[91.77691,23.25731],[91.77756,23.25993],[91.77538,23.26195],[91.7768,23.26341],[91.77709,23.26923],[91.77196,23.27006],[91.76901,23.27319],[91.76763,23.27273],[91.76854,23.27161],[91.76508,23.27246],[91.76603,23.27336],[91.76345,23.2744],[91.764,23.27642],[91.76136,23.27705],[91.76262,23.2813],[91.76108,23.28108],[91.75983,23.28349],[91.76218,23.2849],[91.76061,23.28668],[91.76202,23.28965],[91.7606,23.29127],[91.76286,23.29222],[91.76353,23.29457],[91.762,23.29992],[91.76242,23.30296],[91.76521,23.30499],[91.76435,23.30926],[91.76657,23.30917],[91.76999,23.31236],[91.77144,23.31155],[91.77338,23.31587],[91.77933,23.31746],[91.78328,23.32443],[91.79125,23.32608],[91.79341,23.3298],[91.79967,23.33291],[91.8053,23.33278],[91.80825,23.33704],[91.80679,23.33979],[91.80967,23.342],[91.80943,23.34395],[91.81315,23.34584],[91.81533,23.34382],[91.81807,23.34643],[91.81733,23.34756],[91.81927,23.35108],[91.82514,23.35234],[91.8256,23.36311],[91.82701,23.36477],[91.82892,23.36605],[91.83045,23.36403],[91.83236,23.36967],[91.83757,23.37062],[91.83619,23.38644],[91.84186,23.38839],[91.8407,23.39887],[91.84314,23.39928],[91.84159,23.40908],[91.83888,23.41361],[91.84012,23.41579],[91.83881,23.42222],[91.84327,23.42439],[91.84139,23.42836],[91.83829,23.42836],[91.84006,23.43241],[91.83759,23.43408],[91.83503,23.44197],[91.82879,23.44274],[91.8283,23.44624],[91.83185,23.45042],[91.82935,23.45177],[91.8262,23.46158],[91.82715,23.46291],[91.82485,23.46717],[91.81343,23.46871],[91.81285,23.473],[91.81045,23.47465],[91.81126,23.47629],[91.80834,23.47674],[91.80884,23.47926],[91.80568,23.47914],[91.80678,23.48277],[91.80459,23.48467],[91.80147,23.48417],[91.79788,23.48931],[91.80076,23.49266],[91.79817,23.49747],[91.80081,23.49878],[91.8017,23.50381],[91.79863,23.50612],[91.80433,23.5124],[91.80103,23.51863],[91.80776,23.52614],[91.80477,23.53155],[91.80547,23.53274],[91.80344,23.53267],[91.80371,23.53457],[91.80088,23.53656],[91.79466,23.53074],[91.79505,23.53477],[91.79274,23.53303],[91.79088,23.5344],[91.78787,23.53302],[91.78684,23.53647],[91.78846,23.53809],[91.78633,23.53667],[91.78504,23.53837],[91.78825,23.53985],[91.78783,23.54264],[91.78656,23.54214],[91.78084,23.55036],[91.7824,23.55398],[91.77963,23.55532],[91.78096,23.55725],[91.77824,23.5594],[91.77925,23.56424],[91.77128,23.56759],[91.77052,23.56555],[91.76525,23.56681],[91.7629,23.56873],[91.76239,23.5716],[91.76006,23.57005],[91.75477,23.57111],[91.75248,23.57486],[91.75364,23.57661],[91.75689,23.57711],[91.75791,23.58449],[91.75996,23.58708],[91.76202,23.5869],[91.76172,23.59202],[91.76599,23.5973],[91.76918,23.59845],[91.77133,23.60559],[91.76998,23.61144],[91.76707,23.61578],[91.76955,23.62256],[91.76501,23.62423],[91.766,23.62869],[91.76849,23.62995],[91.77057,23.6285],[91.77572,23.63217],[91.77255,23.63453],[91.77418,23.63859],[91.7723,23.63819],[91.77322,23.63962],[91.77173,23.64355],[91.76716,23.64487],[91.76601,23.64369],[91.76117,23.64399],[91.75708,23.64868],[91.75506,23.64837],[91.7557,23.65036],[91.75259,23.65144],[91.75331,23.65451],[91.75163,23.65702],[91.75367,23.66217],[91.75206,23.6635],[91.75024,23.67182],[91.75216,23.67669],[91.74832,23.67513],[91.74588,23.67708],[91.74569,23.68435],[91.74249,23.68472],[91.74123,23.68644],[91.74183,23.69251],[91.73758,23.69496],[91.73672,23.69717],[91.73199,23.69834],[91.72993,23.70131],[91.73127,23.70842],[91.73939,23.7108],[91.74012,23.7143],[91.74332,23.71417],[91.74393,23.72941],[91.73955,23.73202],[91.73996,23.73723],[91.73784,23.74111],[91.73284,23.74198],[91.73132,23.74699],[91.72708,23.74615],[91.72271,23.75073],[91.72122,23.75583],[91.72232,23.75813],[91.7173,23.75976],[91.71724,23.76858]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"655","area_level":"District","area_name":"Unakoti","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.99751,24.39232],[91.99665,24.39371],[91.99477,24.39214],[91.99623,24.3906],[91.99501,24.38808],[91.98962,24.39015],[91.99197,24.38917],[91.99209,24.38758],[91.98833,24.38402],[91.98833,24.37908],[91.98579,24.37689],[91.98355,24.37723],[91.98171,24.38101],[91.97199,24.38475],[91.96692,24.37977],[91.96767,24.37868],[91.97226,24.37953],[91.97273,24.37702],[91.96999,24.37474],[91.97384,24.37069],[91.97753,24.37273],[91.97897,24.36958],[91.97829,24.36673],[91.98465,24.36086],[91.9819,24.35902],[91.97964,24.36046],[91.97812,24.35739],[91.986,24.34989],[91.98929,24.34362],[91.99213,24.34337],[91.9931,24.33984],[91.9972,24.33681],[91.99832,24.33174],[91.99501,24.33143],[91.99595,24.32205],[91.99038,24.32393],[91.98558,24.32221],[91.98227,24.32388],[91.98061,24.32835],[91.97714,24.32742],[91.973,24.33389],[91.97105,24.34295],[91.96589,24.34683],[91.969,24.35015],[91.96433,24.35031],[91.9568,24.35663],[91.95016,24.35085],[91.9463,24.35067],[91.9461,24.34836],[91.94338,24.34891],[91.94133,24.34255],[91.93846,24.34323],[91.93491,24.33969],[91.93228,24.34124],[91.92402,24.33592],[91.92193,24.3356],[91.91999,24.33746],[91.94082,24.26809],[91.91139,24.16813],[91.91527,24.16657],[91.9114,24.16402],[91.91395,24.16228],[91.91255,24.1608],[91.91421,24.15941],[91.91305,24.1556],[91.91421,24.15516],[91.9128,24.15451],[91.91454,24.15361],[91.91139,24.15358],[91.91101,24.15212],[91.91306,24.15149],[91.9097,24.15061],[91.91129,24.14901],[91.91021,24.1463],[91.9061,24.1448],[91.90575,24.1386],[91.9027,24.1378],[91.91111,24.13067],[91.91837,24.11543],[91.9192,24.12113],[91.9212,24.12002],[91.9275,24.11298],[91.93018,24.11252],[91.9301,24.10941],[91.93478,24.10396],[91.94053,24.10259],[91.95071,24.09563],[91.95726,24.09379],[91.95983,24.09075],[91.96289,24.09019],[91.96314,24.08717],[91.97096,24.08632],[91.97249,24.08023],[91.96979,24.07747],[91.97029,24.06979],[91.97434,24.06939],[91.973,24.0699],[91.97385,24.07354],[91.97749,24.0712],[91.97803,24.07532],[91.98089,24.07367],[91.98971,24.08099],[91.99703,24.08216],[92.00027,24.07955],[91.99878,24.08779],[92.00109,24.09061],[92.01007,24.09038],[92.01161,24.09156],[92.01059,24.10075],[92.01187,24.10806],[92.01855,24.10853],[92.02779,24.10334],[92.03729,24.10475],[92.04191,24.10145],[92.0509,24.10852],[92.06091,24.10852],[92.0663,24.1064],[92.08047,24.10495],[92.07718,24.10148],[92.07493,24.10148],[92.07509,24.09629],[92.07194,24.09521],[92.07433,24.07435],[92.07188,24.069],[92.0729,24.04305],[92.0792,24.03696],[92.07319,24.03255],[92.07279,24.02753],[92.07754,24.02516],[92.0813,24.01823],[92.08847,24.01657],[92.09109,24.01945],[92.09476,24.01293],[92.09699,24.01304],[92.09819,24.01004],[92.10171,24.01183],[92.10281,24.01034],[92.10597,24.01065],[92.10733,24.01575],[92.11326,24.01875],[92.11274,24.02292],[92.11676,24.02008],[92.12439,24.02699],[92.11978,24.03055],[92.11376,24.03081],[92.11239,24.03476],[92.11246,24.0373],[92.11501,24.03952],[92.11098,24.04915],[92.11595,24.05414],[92.11554,24.05603],[92.11146,24.05861],[92.11282,24.07204],[92.11447,24.07256],[92.11921,24.06692],[92.12369,24.07037],[92.12638,24.07029],[92.12714,24.06878],[92.13375,24.06892],[92.13626,24.07465],[92.1416,24.07511],[92.14358,24.07772],[92.14375,24.08626],[92.14572,24.08651],[92.15042,24.08279],[92.15512,24.09268],[92.15804,24.09139],[92.16359,24.09593],[92.16531,24.1019],[92.16891,24.10479],[92.16674,24.10959],[92.16306,24.11171],[92.15934,24.1171],[92.15505,24.11794],[92.15315,24.11589],[92.14606,24.11757],[92.14558,24.1198],[92.15021,24.11836],[92.15834,24.12635],[92.16153,24.12691],[92.16353,24.12915],[92.16368,24.13253],[92.16634,24.13327],[92.16568,24.1343],[92.16994,24.1359],[92.17121,24.13441],[92.17599,24.13529],[92.17718,24.13756],[92.18309,24.14002],[92.18762,24.14666],[92.19168,24.14672],[92.19398,24.15079],[92.19646,24.15018],[92.1999,24.15951],[92.19904,24.1658],[92.20271,24.16756],[92.20336,24.16992],[92.20188,24.17495],[92.20341,24.18073],[92.20231,24.19021],[92.19699,24.191],[92.18935,24.1887],[92.18253,24.19394],[92.182,24.19985],[92.17927,24.19859],[92.17631,24.2017],[92.17175,24.20101],[92.16965,24.20585],[92.17084,24.21221],[92.16795,24.21352],[92.16651,24.22195],[92.16745,24.22687],[92.16215,24.23042],[92.15997,24.23007],[92.15997,24.22817],[92.15249,24.22601],[92.1535,24.23183],[92.15164,24.23758],[92.14314,24.23843],[92.13687,24.24332],[92.13072,24.24539],[92.128,24.25184],[92.12324,24.25583],[92.12339,24.26049],[92.12609,24.26643],[92.12283,24.27141],[92.11286,24.2703],[92.10832,24.27108],[92.10725,24.27382],[92.10445,24.27134],[92.09519,24.27366],[92.09329,24.27257],[92.08614,24.27377],[92.08093,24.27586],[92.08045,24.29212],[92.08192,24.30118],[92.08375,24.30379],[92.077,24.3078],[92.07617,24.31174],[92.07261,24.31413],[92.07461,24.31985],[92.0736,24.32879],[92.0761,24.34546],[92.07503,24.34985],[92.07808,24.36724],[92.07599,24.37511],[92.04943,24.37541],[92.04881,24.37758],[92.04403,24.37487],[92.0431,24.37749],[92.03846,24.37702],[92.03583,24.38011],[92.03355,24.37864],[92.02686,24.37964],[92.02479,24.3835],[92.02154,24.38332],[92.02362,24.38563],[92.02007,24.38654],[92.00731,24.38143],[92.00445,24.3836],[92.00556,24.38563],[92.00458,24.38751],[91.99751,24.39232]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"656","area_level":"District","area_name":"North Garo Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.50626,25.98673],[90.48866,26.00339],[90.47613,26.00959],[90.44374,25.99597],[90.43747,25.99172],[90.43328,25.99132],[90.43022,25.98895],[90.42382,25.989],[90.42561,25.98086],[90.42219,25.97772],[90.42158,25.97427],[90.42327,25.97332],[90.42072,25.97068],[90.4214,25.96898],[90.41842,25.96734],[90.42,25.96426],[90.41774,25.96419],[90.41772,25.96257],[90.41343,25.96287],[90.41068,25.95995],[90.4124,25.95741],[90.41038,25.95414],[90.41352,25.95206],[90.41088,25.94834],[90.41283,25.94701],[90.41282,25.94488],[90.41067,25.94402],[90.41339,25.94197],[90.41274,25.93752],[90.40687,25.93465],[90.40625,25.93177],[90.40808,25.92808],[90.40413,25.92578],[90.40204,25.92649],[90.40011,25.92449],[90.39844,25.91727],[90.39435,25.90985],[90.39395,25.90247],[90.39102,25.90004],[90.39089,25.89546],[90.38842,25.89086],[90.38701,25.86777],[90.38563,25.86729],[90.38763,25.86478],[90.38686,25.86196],[90.38903,25.85878],[90.38884,25.85234],[90.39105,25.84461],[90.38969,25.8419],[90.35219,25.83501],[90.34612,25.82761],[90.34631,25.82238],[90.35242,25.81741],[90.36202,25.81426],[90.38377,25.81156],[90.4048,25.78489],[90.41539,25.76714],[90.41394,25.76313],[90.41055,25.76147],[90.41192,25.75988],[90.40897,25.7575],[90.40851,25.75136],[90.40288,25.74656],[90.40137,25.7412],[90.39664,25.74008],[90.39809,25.73731],[90.40506,25.73286],[90.41662,25.72925],[90.42097,25.72449],[90.42083,25.72215],[90.42318,25.72166],[90.42335,25.71885],[90.41942,25.71744],[90.41847,25.71529],[90.41977,25.7088],[90.43313,25.69984],[90.43731,25.69909],[90.43946,25.69534],[90.44526,25.69517],[90.4464,25.69813],[90.45035,25.69579],[90.45465,25.69702],[90.45719,25.69287],[90.45528,25.68923],[90.45727,25.68249],[90.46618,25.6827],[90.47196,25.67984],[90.47631,25.68151],[90.47839,25.67762],[90.48185,25.67592],[90.48473,25.67878],[90.48843,25.67727],[90.4864,25.68415],[90.48906,25.68933],[90.48811,25.69471],[90.49022,25.6959],[90.49176,25.6999],[90.48709,25.70837],[90.49361,25.71554],[90.49538,25.71439],[90.49904,25.71579],[90.50141,25.71272],[90.50804,25.72726],[90.5114,25.72963],[90.51189,25.73313],[90.52318,25.75032],[90.52539,25.75657],[90.53121,25.76156],[90.53332,25.76922],[90.53688,25.77144],[90.54073,25.77716],[90.54712,25.77929],[90.54503,25.77272],[90.54969,25.76893],[90.55165,25.77074],[90.55681,25.76999],[90.56392,25.77948],[90.57636,25.75055],[90.57929,25.74941],[90.5801,25.74689],[90.5863,25.74545],[90.58635,25.74032],[90.59715,25.73981],[90.59898,25.74077],[90.59721,25.74337],[90.59826,25.75026],[90.60224,25.75172],[90.60944,25.75131],[90.61308,25.75341],[90.62441,25.75401],[90.62798,25.76162],[90.63519,25.76432],[90.63647,25.77226],[90.64038,25.7793],[90.64733,25.77852],[90.65526,25.77478],[90.66013,25.78125],[90.66537,25.77646],[90.66853,25.77714],[90.67783,25.77439],[90.68013,25.77918],[90.67982,25.78236],[90.68389,25.78222],[90.6866,25.78987],[90.68407,25.79594],[90.68517,25.80144],[90.68902,25.80347],[90.70482,25.82477],[90.73565,25.80902],[90.79061,25.80756],[90.79874,25.80871],[90.79961,25.80727],[90.79734,25.80703],[90.79686,25.80439],[90.79888,25.80108],[90.80102,25.80376],[90.80288,25.80227],[90.80518,25.80496],[90.80555,25.80083],[90.80668,25.80062],[90.80599,25.796],[90.80776,25.79562],[90.81029,25.79044],[90.80932,25.78566],[90.81053,25.78567],[90.8112,25.77955],[90.81333,25.77916],[90.81407,25.77651],[90.81288,25.77408],[90.81413,25.77056],[90.81359,25.764],[90.854,25.75666],[90.85735,25.74409],[90.84681,25.73528],[90.84003,25.73474],[90.83844,25.7328],[90.84401,25.73004],[90.84404,25.72543],[90.84904,25.72476],[90.85269,25.71775],[90.88479,25.71893],[90.89032,25.72626],[90.89416,25.73581],[90.90219,25.74524],[90.90472,25.7468],[90.90603,25.74542],[90.91035,25.74649],[90.9212,25.75505],[90.92226,25.75813],[90.92475,25.7586],[90.92555,25.76081],[90.93043,25.76163],[90.93146,25.76458],[90.93426,25.76361],[90.93882,25.76984],[90.95088,25.7724],[90.95737,25.77818],[90.96586,25.78141],[90.97016,25.79401],[90.98386,25.80515],[90.99435,25.8173],[91.00226,25.82384],[91.0014,25.8251],[91.00693,25.83249],[91.00798,25.83796],[91.01024,25.83733],[91.01221,25.84178],[91.01148,25.84591],[91.01531,25.8484],[91.01402,25.85687],[91.02812,25.86987],[91.03055,25.8858],[91.02522,25.88878],[91.01791,25.88456],[91.0106,25.88417],[91.00103,25.88582],[91.00066,25.88794],[90.97605,25.88967],[90.96886,25.88522],[90.96598,25.88844],[90.969,25.90375],[90.96662,25.91406],[90.95704,25.93496],[90.94614,25.94101],[90.94547,25.94487],[90.94743,25.94809],[90.93999,25.9473],[90.93386,25.93977],[90.92392,25.94287],[90.92194,25.94134],[90.91949,25.94445],[90.91734,25.94441],[90.91481,25.93589],[90.91557,25.93075],[90.91424,25.92571],[90.91543,25.9204],[90.91951,25.91522],[90.91684,25.91406],[90.90617,25.92502],[90.90529,25.9289],[90.89442,25.93118],[90.89745,25.93748],[90.89003,25.93807],[90.88966,25.94318],[90.88581,25.94492],[90.88453,25.95031],[90.88049,25.95049],[90.88108,25.94283],[90.87669,25.94942],[90.87169,25.94763],[90.87483,25.94255],[90.84847,25.94438],[90.84436,25.94597],[90.84234,25.94212],[90.83904,25.94131],[90.83547,25.93661],[90.83619,25.94842],[90.83291,25.94586],[90.8259,25.94869],[90.82441,25.9454],[90.81927,25.95032],[90.8162,25.94893],[90.80905,25.95244],[90.80788,25.95097],[90.80915,25.94741],[90.79638,25.94052],[90.78449,25.92513],[90.78532,25.92429],[90.78338,25.92177],[90.78117,25.91127],[90.77805,25.9112],[90.7781,25.90861],[90.76638,25.90764],[90.75668,25.91099],[90.75679,25.91343],[90.76067,25.91567],[90.76052,25.92188],[90.75107,25.91827],[90.74714,25.91554],[90.74531,25.91177],[90.74245,25.91239],[90.73898,25.91616],[90.74779,25.91886],[90.74696,25.92481],[90.75415,25.92943],[90.75463,25.93344],[90.75279,25.93427],[90.75139,25.9323],[90.75009,25.93301],[90.74672,25.92809],[90.7404,25.93939],[90.74776,25.9483],[90.74569,25.9519],[90.7481,25.95672],[90.74442,25.95506],[90.74282,25.95799],[90.73776,25.9557],[90.73833,25.95271],[90.73247,25.9521],[90.72447,25.94678],[90.71994,25.94879],[90.71901,25.95454],[90.71759,25.95494],[90.71385,25.95167],[90.70765,25.95208],[90.68833,25.94891],[90.67265,25.93464],[90.63164,25.91983],[90.62619,25.91335],[90.62613,25.90974],[90.63067,25.9095],[90.6308,25.90628],[90.62494,25.89826],[90.62187,25.89784],[90.6136,25.89932],[90.60627,25.91662],[90.61231,25.92566],[90.62312,25.93506],[90.62412,25.93918],[90.6049,25.94709],[90.59967,25.95513],[90.59069,25.95606],[90.58787,25.95807],[90.58382,25.956],[90.57977,25.95127],[90.57706,25.94451],[90.57673,25.93675],[90.55242,25.92275],[90.54888,25.9214],[90.5438,25.92359],[90.54448,25.92055],[90.54838,25.9192],[90.55006,25.91684],[90.54912,25.91543],[90.53814,25.91375],[90.53749,25.9112],[90.52642,25.90484],[90.52139,25.89848],[90.51363,25.89627],[90.50855,25.9015],[90.518,25.91568],[90.52069,25.92597],[90.53416,25.93896],[90.535,25.94959],[90.5318,25.95601],[90.52046,25.97052],[90.50964,25.98049],[90.50626,25.98673]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"657","area_level":"District","area_name":"East Jaintia Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.53918,25.09891],[92.5231,25.12597],[92.52265,25.13303],[92.52067,25.13648],[92.52162,25.13903],[92.52344,25.13894],[92.5249,25.13519],[92.53836,25.13349],[92.55536,25.12695],[92.56061,25.13032],[92.56818,25.12824],[92.57661,25.13099],[92.5832,25.12811],[92.58808,25.12878],[92.59282,25.12589],[92.59501,25.1222],[92.6089,25.12262],[92.61632,25.1158],[92.62143,25.11503],[92.62888,25.12618],[92.62729,25.13095],[92.62831,25.1381],[92.63868,25.14773],[92.65209,25.1523],[92.65576,25.15495],[92.65802,25.15884],[92.65843,25.17195],[92.66348,25.17667],[92.66796,25.17408],[92.66863,25.17656],[92.67724,25.18254],[92.68338,25.17954],[92.6939,25.17924],[92.70262,25.18838],[92.70924,25.19007],[92.71614,25.19578],[92.73722,25.20054],[92.74287,25.20665],[92.7468,25.20651],[92.75484,25.20183],[92.76281,25.20159],[92.76747,25.20349],[92.77621,25.19961],[92.78192,25.20325],[92.78605,25.20935],[92.79503,25.20975],[92.80209,25.21513],[92.80152,25.22024],[92.78911,25.22468],[92.78203,25.23016],[92.77167,25.22998],[92.77016,25.23733],[92.76189,25.24653],[92.76263,25.24927],[92.76646,25.25214],[92.77118,25.25099],[92.77497,25.252],[92.77775,25.25818],[92.7692,25.26559],[92.76862,25.26812],[92.77665,25.27003],[92.77974,25.27353],[92.78749,25.27409],[92.7925,25.28256],[92.7873,25.29003],[92.78723,25.29621],[92.78343,25.29944],[92.78143,25.30445],[92.78154,25.30769],[92.78693,25.31437],[92.7818,25.33318],[92.76991,25.33821],[92.76373,25.33358],[92.76107,25.33352],[92.75593,25.33864],[92.7546,25.34238],[92.7499,25.3441],[92.74995,25.34994],[92.74641,25.35833],[92.73955,25.36131],[92.73879,25.36695],[92.73236,25.36892],[92.73326,25.37272],[92.73802,25.37933],[92.72375,25.37882],[92.71794,25.37263],[92.70988,25.38451],[92.70176,25.38448],[92.69828,25.38632],[92.69283,25.39767],[92.68815,25.40208],[92.67778,25.40702],[92.67353,25.41402],[92.66752,25.41483],[92.66353,25.4065],[92.66164,25.40635],[92.65641,25.41154],[92.6519,25.41924],[92.65146,25.42584],[92.65442,25.4326],[92.65362,25.43352],[92.64708,25.42824],[92.63956,25.41757],[92.63672,25.42141],[92.63584,25.42732],[92.62565,25.43492],[92.62525,25.43114],[92.62838,25.42388],[92.62764,25.42197],[92.62461,25.42092],[92.61858,25.423],[92.6151,25.42111],[92.61126,25.41517],[92.60663,25.41323],[92.6045,25.4209],[92.60698,25.42763],[92.60307,25.43513],[92.60461,25.4476],[92.59761,25.45067],[92.60045,25.46475],[92.59564,25.4702],[92.59034,25.47013],[92.58411,25.4656],[92.58259,25.47107],[92.58036,25.47208],[92.57446,25.46626],[92.56645,25.46343],[92.5679,25.45632],[92.56218,25.4552],[92.54816,25.45992],[92.54499,25.45733],[92.54327,25.45066],[92.53666,25.45292],[92.53651,25.45745],[92.53253,25.46315],[92.52877,25.46195],[92.52374,25.46444],[92.51389,25.46605],[92.50758,25.46272],[92.50736,25.46071],[92.5049,25.45949],[92.50201,25.4421],[92.49872,25.44435],[92.48723,25.44292],[92.47806,25.44478],[92.4766,25.44274],[92.46236,25.43906],[92.448,25.44191],[92.43044,25.43739],[92.41981,25.43786],[92.41761,25.43595],[92.35091,25.43676],[92.29035,25.45323],[92.26049,25.44982],[92.26257,25.4456],[92.25964,25.43995],[92.26232,25.43789],[92.26433,25.42573],[92.2564,25.41644],[92.25993,25.4105],[92.25995,25.40649],[92.25507,25.40537],[92.2516,25.39217],[92.24636,25.38772],[92.24457,25.38115],[92.23431,25.37927],[92.22878,25.3727],[92.22467,25.37411],[92.2206,25.37141],[92.20688,25.36799],[92.20385,25.36532],[92.19971,25.36586],[92.19698,25.36361],[92.1911,25.36333],[92.18693,25.3587],[92.18346,25.35886],[92.17423,25.35414],[92.17251,25.34852],[92.17364,25.34628],[92.17132,25.34136],[92.17178,25.33586],[92.17773,25.33272],[92.17606,25.32958],[92.17701,25.32606],[92.18301,25.31601],[92.18597,25.31393],[92.18722,25.30897],[92.19044,25.30852],[92.19302,25.30555],[92.18962,25.29974],[92.19942,25.29175],[92.19863,25.28666],[92.20142,25.28362],[92.1975,25.2745],[92.19808,25.26645],[92.20162,25.25832],[92.20024,25.25383],[92.20527,25.24601],[92.20436,25.23365],[92.20647,25.22756],[92.20931,25.22733],[92.21455,25.23],[92.22643,25.22194],[92.22879,25.21702],[92.22842,25.21239],[92.23601,25.21139],[92.23193,25.20371],[92.23709,25.19876],[92.23856,25.18968],[92.2309,25.1849],[92.23381,25.17614],[92.22578,25.16864],[92.22531,25.15389],[92.22168,25.15371],[92.21522,25.15855],[92.20817,25.15763],[92.20814,25.15314],[92.21208,25.15042],[92.21277,25.14778],[92.21193,25.14428],[92.20685,25.14173],[92.20684,25.1314],[92.20342,25.12871],[92.1952,25.13019],[92.19363,25.12634],[92.21301,25.12096],[92.21847,25.11782],[92.2197,25.11515],[92.2004,25.11998],[92.20052,25.11729],[92.19617,25.10803],[92.20276,25.10637],[92.20699,25.10867],[92.21386,25.10698],[92.22324,25.10314],[92.22307,25.0982],[92.22755,25.09371],[92.23136,25.09689],[92.25531,25.08525],[92.26676,25.08321],[92.27106,25.08076],[92.27565,25.08088],[92.2784,25.07766],[92.28157,25.07934],[92.28378,25.07654],[92.28747,25.07745],[92.2996,25.07168],[92.30505,25.07048],[92.30651,25.07196],[92.30587,25.0705],[92.31063,25.06902],[92.31411,25.07195],[92.31915,25.06989],[92.31896,25.07424],[92.32178,25.07818],[92.33491,25.07845],[92.33838,25.07571],[92.34855,25.07349],[92.34898,25.06091],[92.33818,25.05152],[92.3392,25.05046],[92.3424,25.05422],[92.33931,25.05035],[92.34148,25.04853],[92.34605,25.04905],[92.34743,25.04767],[92.35005,25.0495],[92.35095,25.04836],[92.35429,25.04944],[92.35441,25.04778],[92.35671,25.04744],[92.3566,25.05001],[92.35811,25.05012],[92.35844,25.04721],[92.36076,25.04672],[92.36298,25.04989],[92.3684,25.04621],[92.36906,25.04371],[92.36779,25.04239],[92.36971,25.04088],[92.37087,25.04271],[92.37486,25.04359],[92.37395,25.04254],[92.37691,25.0428],[92.37945,25.03952],[92.38107,25.03974],[92.38063,25.04141],[92.38127,25.03916],[92.38262,25.04047],[92.38327,25.03849],[92.38383,25.04236],[92.3882,25.03972],[92.3928,25.03978],[92.39908,25.03278],[92.4005,25.03408],[92.40229,25.03182],[92.40513,25.03263],[92.41255,25.02873],[92.41698,25.03029],[92.42149,25.0278],[92.42374,25.03002],[92.42925,25.02915],[92.43223,25.03513],[92.43819,25.03465],[92.43828,25.04387],[92.44253,25.04524],[92.44731,25.04333],[92.44907,25.04057],[92.45277,25.04075],[92.45981,25.03704],[92.46429,25.03744],[92.46298,25.03958],[92.46429,25.04362],[92.46238,25.04813],[92.46051,25.04873],[92.45705,25.04667],[92.45698,25.05407],[92.46023,25.05729],[92.46366,25.05494],[92.46357,25.05808],[92.46535,25.05867],[92.46843,25.06589],[92.47203,25.06725],[92.47202,25.07463],[92.47062,25.0764],[92.47535,25.07777],[92.47411,25.08197],[92.47758,25.08255],[92.47716,25.08501],[92.47941,25.08661],[92.47731,25.09078],[92.47743,25.10019],[92.48097,25.10858],[92.49102,25.10769],[92.49696,25.10951],[92.50892,25.10422],[92.51995,25.10594],[92.52782,25.104],[92.53052,25.10031],[92.53396,25.09898],[92.53918,25.09891]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"658","area_level":"District","area_name":"South West Khasi Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[91.33837,25.17352],[91.35153,25.17582],[91.35375,25.17126],[91.3599,25.17704],[91.36309,25.17814],[91.36452,25.17792],[91.36778,25.17122],[91.37513,25.16822],[91.38819,25.17024],[91.37981,25.17674],[91.36304,25.20521],[91.35381,25.22907],[91.35439,25.23408],[91.36511,25.23464],[91.3711,25.2427],[91.3755,25.24372],[91.38547,25.23949],[91.38741,25.24584],[91.39456,25.25131],[91.40265,25.26358],[91.41223,25.26493],[91.42281,25.26186],[91.4383,25.27293],[91.45012,25.27199],[91.46215,25.26852],[91.46744,25.27116],[91.47232,25.26941],[91.47368,25.26545],[91.47888,25.26336],[91.48449,25.2649],[91.48897,25.27887],[91.49588,25.28329],[91.52232,25.27862],[91.52755,25.28009],[91.53258,25.27639],[91.54367,25.27941],[91.54789,25.28688],[91.55248,25.30464],[91.54906,25.31221],[91.55233,25.32036],[91.54842,25.32631],[91.54978,25.33017],[91.54613,25.33389],[91.53949,25.33523],[91.52943,25.3428],[91.52506,25.34432],[91.52438,25.34887],[91.52515,25.35393],[91.52969,25.35633],[91.53913,25.37379],[91.53757,25.37925],[91.54076,25.38917],[91.54077,25.40092],[91.54667,25.41322],[91.54649,25.41932],[91.54879,25.42314],[91.55595,25.42884],[91.55617,25.43157],[91.55599,25.42997],[91.55144,25.42907],[91.5429,25.43073],[91.54373,25.43456],[91.54111,25.43763],[91.54218,25.43954],[91.53999,25.44036],[91.52367,25.43551],[91.51688,25.43005],[91.51391,25.43215],[91.51541,25.43306],[91.51643,25.43795],[91.51521,25.4411],[91.497,25.44025],[91.48983,25.43846],[91.48424,25.43952],[91.48126,25.43827],[91.47249,25.43944],[91.47078,25.43844],[91.46264,25.43992],[91.46094,25.44212],[91.44828,25.44083],[91.44339,25.44615],[91.44058,25.44479],[91.43854,25.44914],[91.42938,25.44686],[91.42822,25.44856],[91.41994,25.44912],[91.41297,25.44387],[91.40849,25.44287],[91.37921,25.44261],[91.37243,25.44525],[91.34187,25.43782],[91.33413,25.43749],[91.33156,25.44026],[91.32641,25.43283],[91.32198,25.43411],[91.31568,25.43009],[91.30682,25.43018],[91.31136,25.42358],[91.30969,25.42111],[91.29781,25.41797],[91.28832,25.41319],[91.29092,25.40767],[91.29002,25.40536],[91.29174,25.40374],[91.28954,25.40321],[91.28931,25.39986],[91.28526,25.40028],[91.28516,25.39819],[91.28127,25.39719],[91.27494,25.39802],[91.27206,25.39687],[91.26833,25.40432],[91.25368,25.41912],[91.25067,25.42569],[91.24383,25.43219],[91.23148,25.4505],[91.23061,25.44525],[91.22367,25.44323],[91.22374,25.44126],[91.2267,25.44111],[91.2284,25.43855],[91.22729,25.43533],[91.22373,25.43349],[91.21747,25.43388],[91.21745,25.43841],[91.21471,25.44318],[91.20917,25.44691],[91.20058,25.44256],[91.19734,25.445],[91.18916,25.44329],[91.18867,25.43862],[91.18239,25.43291],[91.17863,25.43462],[91.18131,25.44301],[91.1796,25.44654],[91.17532,25.45132],[91.17111,25.45127],[91.14873,25.43722],[91.144,25.43654],[91.14136,25.43419],[91.13035,25.43013],[91.12697,25.42695],[91.11457,25.42308],[91.11252,25.42036],[91.11024,25.41254],[91.11729,25.40469],[91.12051,25.40469],[91.11848,25.40103],[91.12074,25.39553],[91.12408,25.39329],[91.13054,25.39326],[91.14125,25.38752],[91.14215,25.37702],[91.13786,25.37667],[91.13651,25.37233],[91.12791,25.3726],[91.12464,25.36758],[91.11699,25.36194],[91.10802,25.36024],[91.10402,25.35664],[91.10277,25.35219],[91.0975,25.34871],[91.09644,25.34518],[91.09863,25.33903],[91.09535,25.33193],[91.09894,25.32553],[91.0992,25.32027],[91.10421,25.31324],[91.10073,25.31041],[91.09258,25.30654],[91.0869,25.30708],[91.06981,25.32621],[91.05936,25.33079],[91.05528,25.33036],[91.04948,25.32458],[91.04475,25.3233],[91.03845,25.32236],[91.034,25.32421],[91.02613,25.3235],[91.01828,25.33135],[91.02098,25.33849],[91.01554,25.33926],[91.01271,25.34141],[91.00972,25.3545],[90.99456,25.36579],[90.99134,25.36112],[90.99429,25.35526],[90.99303,25.34871],[90.98624,25.34298],[90.97861,25.34394],[90.97706,25.34001],[90.98399,25.33453],[90.98203,25.33181],[90.9833,25.3281],[90.98247,25.32362],[90.97774,25.32091],[90.97196,25.31977],[90.96978,25.32408],[90.95994,25.32841],[90.95381,25.32867],[90.94749,25.33503],[90.94557,25.33477],[90.94116,25.32922],[90.93935,25.32375],[90.93623,25.32197],[90.936,25.33269],[90.92888,25.33501],[90.92649,25.33071],[90.92206,25.32789],[90.91002,25.32942],[90.90661,25.32806],[90.90263,25.3182],[90.89662,25.31367],[90.89166,25.31362],[90.88834,25.31839],[90.88346,25.31986],[90.8754,25.31819],[90.86048,25.29651],[90.85709,25.29407],[90.87624,25.29253],[90.90059,25.2967],[90.91452,25.28577],[90.91948,25.27494],[90.92564,25.26707],[90.93667,25.26235],[90.94534,25.26077],[90.95194,25.2562],[90.95881,25.24652],[90.95947,25.23457],[90.95748,25.23087],[90.95287,25.22813],[90.95333,25.22233],[90.94982,25.21841],[90.94982,25.21468],[90.95558,25.21201],[90.95931,25.20385],[90.9686,25.20114],[90.97151,25.19151],[90.96977,25.17323],[90.9731,25.17507],[90.97733,25.17401],[90.98499,25.17505],[91.00213,25.18133],[91.00611,25.18026],[91.00944,25.1832],[91.01878,25.18382],[91.01911,25.18697],[91.03041,25.18511],[91.03839,25.18626],[91.03955,25.18852],[91.04161,25.18764],[91.04997,25.18973],[91.05515,25.19243],[91.06788,25.19153],[91.07188,25.19336],[91.06964,25.19841],[91.12525,25.194],[91.13966,25.19638],[91.15609,25.19621],[91.16032,25.19778],[91.16484,25.19585],[91.19468,25.20182],[91.22327,25.19901],[91.22449,25.20016],[91.23042,25.19689],[91.23326,25.1991],[91.23638,25.19903],[91.23678,25.19696],[91.24734,25.19776],[91.25163,25.19517],[91.25151,25.19912],[91.25979,25.20102],[91.26027,25.2051],[91.26801,25.20724],[91.27618,25.19905],[91.29223,25.19332],[91.28868,25.19012],[91.28657,25.18535],[91.28844,25.18649],[91.29248,25.1838],[91.30013,25.18424],[91.30446,25.1826],[91.31778,25.18367],[91.32432,25.18073],[91.32683,25.17625],[91.33197,25.1774],[91.33837,25.17352]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"659","area_level":"District","area_name":"Sambhal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.61318,28.80977],[78.61185,28.81038],[78.60839,28.80636],[78.60331,28.8095],[78.59422,28.80184],[78.58807,28.80567],[78.58641,28.80436],[78.58504,28.80569],[78.5771,28.79979],[78.5732,28.80195],[78.5672,28.79594],[78.56014,28.80034],[78.55522,28.79434],[78.55123,28.79326],[78.54925,28.79479],[78.54807,28.79057],[78.54936,28.7899],[78.54719,28.7841],[78.53635,28.78909],[78.53208,28.78519],[78.52508,28.78739],[78.5191,28.78038],[78.50696,28.78766],[78.50683,28.78303],[78.50076,28.77617],[78.4928,28.78265],[78.49153,28.78018],[78.49106,28.78271],[78.4896,28.78246],[78.48311,28.78837],[78.47636,28.78184],[78.47477,28.77932],[78.47569,28.77767],[78.47065,28.7767],[78.46329,28.77859],[78.46021,28.77728],[78.45926,28.77921],[78.4522,28.78228],[78.44578,28.79181],[78.43623,28.77952],[78.42896,28.784],[78.42981,28.78628],[78.42227,28.79077],[78.41649,28.78518],[78.41416,28.78479],[78.41236,28.78636],[78.40734,28.78211],[78.40633,28.78069],[78.4092,28.77735],[78.40934,28.77361],[78.4211,28.76581],[78.41979,28.75743],[78.42207,28.75409],[78.41904,28.75198],[78.41771,28.75319],[78.41032,28.74733],[78.41414,28.74344],[78.40913,28.73796],[78.40984,28.73387],[78.41764,28.72923],[78.41275,28.72039],[78.41694,28.71694],[78.41434,28.71536],[78.418,28.70952],[78.4168,28.70821],[78.41776,28.707],[78.41316,28.70154],[78.41697,28.698],[78.4067,28.68953],[78.415,28.68768],[78.42233,28.68198],[78.41944,28.6748],[78.4241,28.67111],[78.41993,28.66139],[78.41841,28.6607],[78.41513,28.66426],[78.40567,28.65651],[78.39988,28.64905],[78.40461,28.64639],[78.40913,28.63744],[78.41007,28.61886],[78.41204,28.61702],[78.41205,28.61375],[78.41664,28.61347],[78.41929,28.61609],[78.43303,28.60766],[78.42486,28.5969],[78.43917,28.58854],[78.43909,28.58577],[78.4282,28.57702],[78.42952,28.57384],[78.42737,28.56651],[78.42916,28.56569],[78.42799,28.56406],[78.42975,28.56211],[78.42239,28.55346],[78.42306,28.55183],[78.42816,28.55045],[78.43485,28.54137],[78.42494,28.53214],[78.42178,28.53161],[78.41717,28.52208],[78.41375,28.51914],[78.4275,28.50772],[78.42499,28.50578],[78.4198,28.49442],[78.42408,28.48812],[78.42464,28.48112],[78.41614,28.47078],[78.41141,28.46232],[78.40887,28.46733],[78.40551,28.4702],[78.40385,28.46939],[78.40446,28.47128],[78.40159,28.47205],[78.40168,28.47374],[78.39657,28.47283],[78.39103,28.47559],[78.38479,28.46951],[78.38108,28.47176],[78.37242,28.46973],[78.36506,28.45999],[78.34829,28.44958],[78.34753,28.44647],[78.33773,28.43664],[78.31816,28.43319],[78.30956,28.43981],[78.30457,28.43834],[78.31008,28.42668],[78.31201,28.41725],[78.30733,28.40656],[78.30312,28.40376],[78.29905,28.39683],[78.28525,28.3932],[78.27959,28.38955],[78.27661,28.38079],[78.27194,28.37444],[78.2657,28.3802],[78.26059,28.37889],[78.25867,28.37655],[78.25989,28.36703],[78.2695,28.35746],[78.28373,28.34714],[78.28747,28.33241],[78.30088,28.31928],[78.30581,28.29596],[78.31241,28.28866],[78.31279,28.28459],[78.3088,28.28127],[78.31298,28.27431],[78.32084,28.26971],[78.34641,28.27176],[78.35495,28.26933],[78.35889,28.25914],[78.36754,28.25419],[78.36541,28.25092],[78.36624,28.23927],[78.36875,28.23496],[78.37673,28.22519],[78.38264,28.22247],[78.38222,28.21883],[78.39592,28.21113],[78.39971,28.19854],[78.39647,28.19093],[78.39842,28.18504],[78.41192,28.17233],[78.41877,28.16952],[78.43097,28.16768],[78.43484,28.16521],[78.43527,28.15992],[78.4418,28.15707],[78.44627,28.15247],[78.456,28.15236],[78.45936,28.14964],[78.46154,28.14573],[78.46217,28.13082],[78.4662,28.12775],[78.46648,28.12309],[78.47748,28.11306],[78.47945,28.11358],[78.4843,28.10786],[78.49026,28.10895],[78.49077,28.1054],[78.51556,28.08619],[78.50713,28.07879],[78.5224,28.06743],[78.51974,28.06354],[78.51968,28.05941],[78.52104,28.05636],[78.52488,28.05571],[78.53132,28.05022],[78.53094,28.04388],[78.53799,28.04578],[78.54005,28.04916],[78.54613,28.05088],[78.55718,28.06443],[78.56515,28.06174],[78.57117,28.06193],[78.57363,28.06377],[78.58026,28.06318],[78.58317,28.07115],[78.58831,28.07583],[78.59131,28.08462],[78.58911,28.08636],[78.59073,28.09002],[78.58569,28.09207],[78.58561,28.09535],[78.583,28.09781],[78.58161,28.0968],[78.57197,28.09899],[78.57224,28.10228],[78.57949,28.10299],[78.57978,28.10755],[78.58908,28.11575],[78.58176,28.1231],[78.59386,28.13309],[78.58318,28.14023],[78.57667,28.13609],[78.57441,28.13893],[78.57466,28.14258],[78.57804,28.1478],[78.58597,28.14662],[78.58723,28.15413],[78.59291,28.16088],[78.60144,28.15938],[78.61107,28.166],[78.61193,28.16916],[78.6103,28.17278],[78.60557,28.17073],[78.60204,28.17107],[78.60412,28.17443],[78.59689,28.17632],[78.59836,28.17994],[78.5944,28.17917],[78.59188,28.18451],[78.59972,28.19542],[78.60163,28.19674],[78.60669,28.19573],[78.60988,28.19853],[78.61166,28.20337],[78.61709,28.20543],[78.61703,28.20894],[78.63238,28.21581],[78.63651,28.22157],[78.6308,28.22777],[78.6311,28.23018],[78.63555,28.23364],[78.63253,28.2441],[78.63605,28.25142],[78.64061,28.25457],[78.64161,28.25847],[78.6392,28.26081],[78.65137,28.26972],[78.64683,28.27608],[78.64788,28.27687],[78.64612,28.27871],[78.64802,28.28033],[78.64392,28.28399],[78.64488,28.28503],[78.64282,28.28757],[78.64355,28.29022],[78.64941,28.29515],[78.65208,28.29496],[78.65722,28.29892],[78.65606,28.30034],[78.65738,28.30117],[78.65539,28.30287],[78.66233,28.30873],[78.65251,28.31803],[78.66535,28.32931],[78.66432,28.33379],[78.66824,28.33688],[78.67603,28.33589],[78.67746,28.3343],[78.68009,28.33519],[78.68174,28.33917],[78.6928,28.3481],[78.69891,28.35763],[78.69813,28.36022],[78.71126,28.36833],[78.71554,28.36547],[78.71726,28.36771],[78.71966,28.36741],[78.72099,28.36479],[78.72644,28.37113],[78.72973,28.36989],[78.72873,28.37085],[78.73367,28.37563],[78.74121,28.36729],[78.74417,28.37236],[78.74695,28.37208],[78.752,28.36818],[78.75908,28.37181],[78.76148,28.37418],[78.76032,28.37638],[78.76938,28.38662],[78.75967,28.39506],[78.7618,28.39931],[78.76685,28.40248],[78.76681,28.40496],[78.7711,28.40158],[78.77298,28.40259],[78.78134,28.39842],[78.78336,28.39914],[78.78668,28.39477],[78.79423,28.39791],[78.79436,28.40152],[78.79749,28.40197],[78.79303,28.40643],[78.79301,28.40941],[78.80472,28.4202],[78.80089,28.43074],[78.81222,28.44456],[78.82302,28.43863],[78.82551,28.43884],[78.83433,28.44678],[78.8394,28.44476],[78.84976,28.45291],[78.85266,28.44818],[78.85807,28.44695],[78.85935,28.44865],[78.85876,28.45558],[78.86062,28.45574],[78.86458,28.4609],[78.86602,28.46063],[78.86591,28.46523],[78.86902,28.466],[78.87564,28.46414],[78.87884,28.46959],[78.88283,28.47225],[78.88945,28.46798],[78.89406,28.46256],[78.89787,28.46183],[78.90632,28.47101],[78.91124,28.46699],[78.90978,28.46512],[78.91267,28.46206],[78.91666,28.46451],[78.92081,28.46266],[78.92465,28.45851],[78.93502,28.46352],[78.94146,28.45989],[78.93936,28.46457],[78.9352,28.46844],[78.94194,28.47856],[78.94089,28.48203],[78.9423,28.48229],[78.94387,28.488],[78.94572,28.48786],[78.9491,28.49244],[78.94944,28.50013],[78.95182,28.50178],[78.95398,28.50034],[78.95529,28.50137],[78.95943,28.50829],[78.95145,28.5174],[78.95274,28.51855],[78.94363,28.52716],[78.94565,28.52868],[78.94438,28.52937],[78.94695,28.53045],[78.94417,28.53573],[78.94846,28.53688],[78.95442,28.53576],[78.95644,28.5375],[78.95775,28.54225],[78.95594,28.5437],[78.95888,28.5499],[78.95583,28.55123],[78.95644,28.55514],[78.94932,28.5584],[78.93678,28.56856],[78.93783,28.56649],[78.93621,28.56212],[78.92051,28.57169],[78.92128,28.57043],[78.91846,28.56762],[78.91894,28.56551],[78.92372,28.56273],[78.91661,28.55704],[78.91844,28.55489],[78.91743,28.55348],[78.91188,28.55283],[78.90592,28.54637],[78.89778,28.5477],[78.90136,28.55209],[78.90084,28.55499],[78.90309,28.55781],[78.89605,28.56415],[78.89143,28.56284],[78.88658,28.5536],[78.88788,28.55029],[78.88419,28.5453],[78.87777,28.54101],[78.87305,28.54427],[78.87777,28.54899],[78.87674,28.54964],[78.87783,28.55154],[78.86957,28.55636],[78.86462,28.55666],[78.85971,28.54846],[78.86145,28.54471],[78.86586,28.54259],[78.8594,28.53459],[78.85256,28.53718],[78.84988,28.53895],[78.85075,28.54026],[78.84516,28.54184],[78.8389,28.53988],[78.83433,28.54312],[78.82789,28.53556],[78.8226,28.53531],[78.81929,28.53195],[78.8209,28.52827],[78.81979,28.52513],[78.81716,28.52582],[78.81305,28.52227],[78.80841,28.52466],[78.80816,28.52688],[78.80977,28.52809],[78.80812,28.53034],[78.80631,28.53023],[78.80644,28.53288],[78.80482,28.53261],[78.80567,28.53365],[78.80355,28.5336],[78.80339,28.53529],[78.80278,28.53358],[78.80165,28.53432],[78.80311,28.53625],[78.79902,28.53923],[78.80008,28.54299],[78.79864,28.54256],[78.79771,28.54545],[78.79578,28.54468],[78.79498,28.54712],[78.78473,28.53822],[78.77889,28.54256],[78.77777,28.54124],[78.77637,28.54263],[78.77096,28.53841],[78.77336,28.5357],[78.76813,28.52787],[78.75779,28.52819],[78.73722,28.5093],[78.73226,28.50999],[78.72656,28.50243],[78.72439,28.50133],[78.723,28.50239],[78.71945,28.499],[78.71467,28.49923],[78.71427,28.49557],[78.70953,28.49109],[78.70675,28.49326],[78.71108,28.49657],[78.71016,28.4976],[78.71271,28.50014],[78.69832,28.51246],[78.69975,28.51362],[78.69864,28.51533],[78.68647,28.52087],[78.67645,28.52195],[78.67343,28.52354],[78.67494,28.52575],[78.66857,28.5297],[78.67123,28.53362],[78.67574,28.5311],[78.67918,28.5382],[78.67366,28.54206],[78.67438,28.54355],[78.67292,28.54564],[78.67716,28.54938],[78.6821,28.54707],[78.68364,28.55112],[78.6871,28.55408],[78.68858,28.55324],[78.69499,28.56027],[78.69024,28.56492],[78.69228,28.56896],[78.69584,28.5713],[78.69371,28.57383],[78.69701,28.57962],[78.70054,28.58085],[78.70495,28.57929],[78.71322,28.57198],[78.71578,28.57401],[78.71314,28.57658],[78.71618,28.58026],[78.71434,28.58208],[78.71113,28.58227],[78.70992,28.58541],[78.71151,28.58792],[78.71089,28.58977],[78.71746,28.59783],[78.70808,28.60776],[78.70626,28.60666],[78.70036,28.61158],[78.69448,28.61081],[78.69006,28.6124],[78.68898,28.61431],[78.69648,28.62643],[78.69425,28.62949],[78.69564,28.63437],[78.69236,28.64234],[78.68734,28.64555],[78.68285,28.64122],[78.67022,28.64414],[78.66304,28.65285],[78.66508,28.65615],[78.66128,28.65624],[78.6491,28.66291],[78.65237,28.67038],[78.65003,28.6712],[78.64918,28.66863],[78.64544,28.66928],[78.64405,28.66755],[78.6429,28.66871],[78.64634,28.67432],[78.64743,28.6797],[78.65265,28.6842],[78.6547,28.68345],[78.66268,28.69535],[78.65974,28.69657],[78.65921,28.69839],[78.66146,28.7022],[78.65856,28.70294],[78.66242,28.70881],[78.65994,28.71064],[78.66221,28.71505],[78.65932,28.71912],[78.66561,28.72708],[78.6602,28.7315],[78.66675,28.74072],[78.66755,28.74403],[78.66472,28.74597],[78.66684,28.74849],[78.67179,28.74843],[78.67394,28.74997],[78.67785,28.74732],[78.68063,28.75109],[78.67903,28.75258],[78.6803,28.75417],[78.67712,28.75639],[78.6815,28.76205],[78.68115,28.76389],[78.67302,28.76861],[78.67505,28.77098],[78.67206,28.77271],[78.67291,28.77339],[78.66436,28.78005],[78.66528,28.78076],[78.6548,28.78772],[78.65612,28.78968],[78.65474,28.79153],[78.65557,28.79305],[78.65161,28.79468],[78.65303,28.79681],[78.64403,28.80665],[78.63496,28.80066],[78.62476,28.80878],[78.62225,28.80582],[78.61728,28.80932],[78.61318,28.80977]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"66","area_level":"District","area_name":"Kaithal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.42274,30.19224],[76.40641,30.19034],[76.40362,30.18666],[76.40298,30.18211],[76.39636,30.17958],[76.38718,30.17059],[76.39349,30.16694],[76.3914,30.16432],[76.39503,30.15797],[76.40178,30.15379],[76.41009,30.14504],[76.40684,30.14491],[76.4009,30.13889],[76.39765,30.14017],[76.39111,30.1348],[76.39598,30.12612],[76.39486,30.12198],[76.39845,30.12057],[76.40006,30.11667],[76.38888,30.11323],[76.36791,30.1176],[76.3622,30.12012],[76.36076,30.12255],[76.36695,30.12418],[76.36132,30.12973],[76.35929,30.13974],[76.35306,30.14301],[76.35049,30.14683],[76.34749,30.1453],[76.34688,30.14277],[76.33781,30.14327],[76.33395,30.14199],[76.33351,30.13817],[76.34206,30.12634],[76.35217,30.12178],[76.36023,30.12017],[76.35443,30.11687],[76.34615,30.10618],[76.34626,30.10388],[76.34473,30.10477],[76.34415,30.10082],[76.33991,30.0987],[76.33119,30.09966],[76.32176,30.09506],[76.3193,30.09577],[76.31955,30.09707],[76.30757,30.10872],[76.2966,30.1144],[76.29063,30.10774],[76.28534,30.10618],[76.27855,30.11027],[76.27518,30.11459],[76.26778,30.11442],[76.25369,30.12157],[76.25311,30.12308],[76.25548,30.12372],[76.25565,30.12605],[76.24694,30.13054],[76.24401,30.12819],[76.24227,30.12938],[76.24322,30.13239],[76.23252,30.13975],[76.23438,30.14493],[76.22688,30.14454],[76.22434,30.14696],[76.21901,30.1477],[76.21649,30.15023],[76.21629,30.15293],[76.21469,30.1532],[76.2146,30.15617],[76.20767,30.15699],[76.20773,30.14427],[76.21519,30.13959],[76.21516,30.13489],[76.22428,30.12708],[76.21593,30.12374],[76.20804,30.13402],[76.20474,30.13307],[76.20244,30.13605],[76.19695,30.13246],[76.19638,30.12345],[76.21107,30.12056],[76.21709,30.12281],[76.22028,30.11527],[76.21629,30.1128],[76.21677,30.11001],[76.2238,30.11162],[76.22982,30.10669],[76.2344,30.105],[76.23634,30.10657],[76.23832,30.10561],[76.23689,30.10387],[76.24211,30.10051],[76.24893,30.10383],[76.25173,30.1075],[76.25318,30.10608],[76.25165,30.10444],[76.25249,30.10264],[76.2653,30.09878],[76.26015,30.08741],[76.25354,30.0894],[76.24967,30.08691],[76.24827,30.08482],[76.24929,30.08231],[76.24784,30.08106],[76.2467,30.08213],[76.23672,30.0679],[76.22623,30.05866],[76.22832,30.05285],[76.22181,30.04807],[76.22241,30.03669],[76.22003,30.03411],[76.21396,30.03172],[76.21317,30.0221],[76.23199,30.01521],[76.22556,30.00769],[76.21599,30.00706],[76.20926,30.00406],[76.21148,29.99545],[76.20653,29.99345],[76.21074,29.98815],[76.20806,29.98605],[76.20241,29.98932],[76.20184,29.98475],[76.20592,29.98037],[76.20477,29.97691],[76.20573,29.9743],[76.19809,29.96826],[76.20108,29.96724],[76.2053,29.96158],[76.21274,29.94709],[76.21312,29.94509],[76.21018,29.93961],[76.20352,29.94425],[76.19114,29.94882],[76.18376,29.9483],[76.17818,29.94207],[76.17814,29.93337],[76.17252,29.92882],[76.17197,29.92627],[76.17549,29.92383],[76.17918,29.92264],[76.1814,29.92362],[76.18528,29.92049],[76.18781,29.92063],[76.1893,29.90867],[76.18566,29.89244],[76.18633,29.89083],[76.18974,29.8904],[76.19346,29.88562],[76.19984,29.88841],[76.19943,29.88451],[76.20114,29.88382],[76.20977,29.88589],[76.20868,29.88738],[76.21084,29.89131],[76.21295,29.88704],[76.2174,29.88404],[76.2213,29.88336],[76.22232,29.88495],[76.22626,29.88379],[76.22682,29.88634],[76.2294,29.88563],[76.23829,29.87869],[76.24162,29.87854],[76.24704,29.87508],[76.24387,29.86893],[76.24382,29.85241],[76.23816,29.85199],[76.23246,29.8537],[76.23047,29.85148],[76.22725,29.85177],[76.22062,29.8467],[76.22055,29.83784],[76.2153,29.84079],[76.21229,29.83678],[76.20916,29.82387],[76.21827,29.81945],[76.21871,29.81793],[76.21461,29.81322],[76.22003,29.81106],[76.21699,29.8055],[76.21819,29.80278],[76.2154,29.79804],[76.21718,29.79515],[76.20687,29.78771],[76.21007,29.78087],[76.20847,29.77381],[76.20648,29.77421],[76.20137,29.76629],[76.19625,29.7639],[76.20308,29.75762],[76.19891,29.75616],[76.19767,29.74714],[76.19477,29.74696],[76.18435,29.7388],[76.17967,29.73695],[76.18213,29.73341],[76.1808,29.72702],[76.18366,29.71975],[76.17478,29.70756],[76.17361,29.70121],[76.16866,29.6927],[76.16835,29.68939],[76.16964,29.68584],[76.18387,29.6835],[76.19212,29.67959],[76.19374,29.67293],[76.20221,29.6647],[76.19896,29.64754],[76.19411,29.64068],[76.21268,29.62968],[76.21713,29.6257],[76.21804,29.62281],[76.22203,29.62216],[76.22438,29.61988],[76.23265,29.6197],[76.23462,29.61823],[76.24071,29.60925],[76.24047,29.60418],[76.24219,29.60146],[76.24176,29.59623],[76.23845,29.59339],[76.24244,29.5888],[76.24874,29.58795],[76.25,29.58511],[76.25985,29.58473],[76.26115,29.58082],[76.26613,29.57645],[76.2653,29.57447],[76.26843,29.57255],[76.26618,29.55753],[76.27013,29.55085],[76.2743,29.5483],[76.28199,29.54707],[76.29385,29.55167],[76.30105,29.55745],[76.29637,29.56441],[76.29068,29.57806],[76.29453,29.58235],[76.29782,29.58989],[76.30966,29.58491],[76.31618,29.58602],[76.32845,29.57977],[76.34207,29.57939],[76.3453,29.5827],[76.351,29.57993],[76.35859,29.56877],[76.3513,29.5619],[76.34907,29.55541],[76.35471,29.55291],[76.36027,29.54801],[76.36162,29.54493],[76.36024,29.53929],[76.36162,29.53591],[76.37333,29.52755],[76.38165,29.52733],[76.39533,29.53155],[76.40517,29.53048],[76.41557,29.53435],[76.41637,29.53651],[76.41403,29.54075],[76.43018,29.54504],[76.4359,29.5373],[76.43685,29.52917],[76.44761,29.53132],[76.45204,29.53694],[76.4538,29.54696],[76.46256,29.54886],[76.4858,29.54177],[76.48604,29.53656],[76.48885,29.53091],[76.48731,29.52642],[76.49519,29.51645],[76.50552,29.51441],[76.50581,29.52419],[76.51152,29.52456],[76.50936,29.52813],[76.51101,29.53173],[76.52168,29.53331],[76.52608,29.53666],[76.5237,29.54163],[76.52341,29.54946],[76.53014,29.57032],[76.53572,29.57131],[76.54408,29.57584],[76.544,29.57743],[76.54682,29.57929],[76.5499,29.59049],[76.54715,29.59269],[76.54651,29.59604],[76.53904,29.6007],[76.53745,29.60427],[76.52673,29.61002],[76.52193,29.6147],[76.52842,29.61538],[76.53995,29.61356],[76.54623,29.62068],[76.55382,29.62303],[76.55731,29.62538],[76.55818,29.62809],[76.56358,29.62997],[76.57739,29.62562],[76.58375,29.62858],[76.58939,29.62704],[76.60331,29.62787],[76.60574,29.63186],[76.61572,29.63596],[76.61737,29.644],[76.62157,29.64321],[76.63818,29.649],[76.63997,29.65292],[76.64276,29.65443],[76.64249,29.65851],[76.64464,29.66297],[76.65621,29.6713],[76.65877,29.67004],[76.67273,29.66993],[76.68343,29.67758],[76.69393,29.66959],[76.70116,29.66702],[76.70325,29.66767],[76.70444,29.67501],[76.70845,29.67992],[76.7125,29.69501],[76.70491,29.69526],[76.69271,29.70106],[76.68809,29.70089],[76.67525,29.7078],[76.66818,29.70905],[76.67101,29.71367],[76.67893,29.71828],[76.68564,29.72461],[76.69511,29.7273],[76.69413,29.74574],[76.69744,29.75135],[76.68983,29.75346],[76.68599,29.76277],[76.68315,29.76462],[76.68351,29.76861],[76.70023,29.78392],[76.69859,29.78604],[76.6983,29.79585],[76.70396,29.80172],[76.7142,29.8071],[76.717,29.8132],[76.71026,29.81727],[76.70943,29.82121],[76.70447,29.82564],[76.69402,29.82533],[76.68777,29.82698],[76.6862,29.83005],[76.68876,29.83467],[76.68887,29.84369],[76.69425,29.85402],[76.68768,29.85982],[76.67447,29.86398],[76.67567,29.86564],[76.68001,29.86681],[76.68339,29.86559],[76.68486,29.86728],[76.69414,29.89051],[76.6949,29.89944],[76.6887,29.90312],[76.68522,29.90854],[76.68965,29.9179],[76.68475,29.92108],[76.67812,29.91817],[76.67065,29.91867],[76.66729,29.91608],[76.65506,29.9148],[76.64785,29.91116],[76.64179,29.91244],[76.62956,29.91924],[76.61894,29.9218],[76.61539,29.91772],[76.60624,29.91282],[76.59382,29.91411],[76.59363,29.91653],[76.5875,29.92017],[76.57804,29.91517],[76.57205,29.909],[76.55957,29.91752],[76.55158,29.90758],[76.54753,29.90708],[76.54566,29.90343],[76.53691,29.89983],[76.53072,29.90167],[76.53825,29.91251],[76.54082,29.92048],[76.53508,29.9253],[76.53109,29.92619],[76.5186,29.91956],[76.5154,29.90134],[76.51154,29.89734],[76.50175,29.90479],[76.49427,29.90558],[76.49118,29.90377],[76.48152,29.90578],[76.46588,29.91292],[76.47177,29.91941],[76.47902,29.93276],[76.48313,29.93661],[76.48416,29.93927],[76.48151,29.94586],[76.48123,29.95261],[76.48662,29.95597],[76.48426,29.95963],[76.47626,29.96513],[76.4761,29.96893],[76.471,29.97038],[76.46737,29.97348],[76.46384,29.97205],[76.45663,29.96388],[76.44277,29.97188],[76.43915,29.97233],[76.43347,29.98669],[76.43266,29.99532],[76.43316,30.00036],[76.44259,30.00713],[76.43925,30.01473],[76.42842,30.01763],[76.42661,30.02451],[76.42171,30.03068],[76.42292,30.0352],[76.42938,30.04213],[76.42967,30.04587],[76.4383,30.05075],[76.44458,30.06715],[76.45279,30.0781],[76.45418,30.08286],[76.46481,30.09327],[76.46795,30.09878],[76.46255,30.10102],[76.45712,30.11014],[76.45633,30.11543],[76.45998,30.12944],[76.45801,30.1302],[76.45803,30.13183],[76.45557,30.13042],[76.45088,30.13216],[76.4439,30.13046],[76.44053,30.13142],[76.43749,30.13623],[76.4377,30.14222],[76.43977,30.14367],[76.42878,30.15012],[76.43349,30.15584],[76.43652,30.15595],[76.44058,30.16584],[76.43492,30.17549],[76.43039,30.17797],[76.43382,30.18071],[76.43433,30.18311],[76.42274,30.19224]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"660","area_level":"District","area_name":"Shamli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.22142,29.69728],[77.2186,29.69258],[77.21469,29.6897],[77.20941,29.68701],[77.20347,29.68657],[77.20171,29.68042],[77.19111,29.68355],[77.18747,29.6828],[77.17385,29.68559],[77.16015,29.69216],[77.15868,29.68802],[77.14965,29.68837],[77.14734,29.68322],[77.14223,29.67997],[77.14339,29.6749],[77.14631,29.67174],[77.1378,29.66591],[77.14101,29.65497],[77.13985,29.65256],[77.1324,29.64725],[77.13152,29.64184],[77.12818,29.63923],[77.1188,29.63551],[77.11478,29.63828],[77.1062,29.63233],[77.1047,29.62312],[77.10169,29.62152],[77.10158,29.61983],[77.10378,29.61405],[77.10862,29.61344],[77.11302,29.61063],[77.10863,29.60091],[77.10953,29.59743],[77.10202,29.59413],[77.09515,29.59539],[77.08813,29.59406],[77.08418,29.59092],[77.08395,29.58724],[77.0862,29.58439],[77.09008,29.5847],[77.09579,29.58245],[77.09923,29.57914],[77.09971,29.57657],[77.10501,29.5722],[77.12098,29.56647],[77.12079,29.56372],[77.12684,29.55945],[77.12626,29.55618],[77.12191,29.55201],[77.10835,29.54783],[77.10358,29.53902],[77.10218,29.53882],[77.10248,29.53234],[77.09754,29.52735],[77.0962,29.5206],[77.10122,29.51491],[77.10356,29.50726],[77.11301,29.5066],[77.12118,29.49821],[77.1215,29.49536],[77.12924,29.49027],[77.13331,29.48306],[77.13072,29.47591],[77.12268,29.46889],[77.12363,29.45445],[77.13393,29.44751],[77.14452,29.44531],[77.14762,29.43929],[77.14842,29.43408],[77.14516,29.42764],[77.13312,29.41877],[77.13184,29.41298],[77.13425,29.40477],[77.13325,29.40084],[77.13569,29.39971],[77.13666,29.39677],[77.1426,29.39073],[77.14737,29.38785],[77.1509,29.38716],[77.15103,29.38994],[77.15347,29.39067],[77.15741,29.38731],[77.14257,29.37747],[77.12703,29.37576],[77.1233,29.37034],[77.12345,29.36724],[77.12896,29.35703],[77.12445,29.35143],[77.12953,29.34258],[77.13528,29.3399],[77.15174,29.34111],[77.16048,29.33559],[77.16085,29.33015],[77.15711,29.32594],[77.15648,29.31929],[77.16031,29.31581],[77.16063,29.31227],[77.15828,29.30288],[77.15272,29.29815],[77.15901,29.29436],[77.18176,29.29003],[77.18661,29.28519],[77.18455,29.28069],[77.20331,29.27438],[77.20556,29.27615],[77.22872,29.27951],[77.23626,29.28233],[77.24791,29.27965],[77.24973,29.28095],[77.25145,29.27058],[77.2558,29.27076],[77.26731,29.26487],[77.27701,29.26663],[77.27788,29.26827],[77.27794,29.27557],[77.27869,29.27789],[77.28068,29.27842],[77.28347,29.28633],[77.27817,29.29176],[77.28122,29.2962],[77.28359,29.29469],[77.28638,29.29777],[77.29105,29.29538],[77.29855,29.3046],[77.30317,29.305],[77.30483,29.31129],[77.30338,29.31214],[77.30539,29.31556],[77.30729,29.31447],[77.3079,29.31567],[77.3073,29.3193],[77.31116,29.329],[77.31007,29.32959],[77.31411,29.33793],[77.30853,29.34112],[77.30865,29.34424],[77.3121,29.347],[77.31596,29.34637],[77.32246,29.342],[77.32484,29.33808],[77.33108,29.33703],[77.33518,29.33914],[77.33761,29.33531],[77.34239,29.33327],[77.35516,29.34014],[77.3592,29.34703],[77.36237,29.34638],[77.36349,29.3476],[77.36997,29.34447],[77.37565,29.35309],[77.3799,29.3644],[77.38246,29.36303],[77.38438,29.3656],[77.38692,29.36437],[77.39075,29.36686],[77.3982,29.36684],[77.41048,29.37877],[77.41515,29.37983],[77.41857,29.3861],[77.42577,29.39156],[77.42749,29.39635],[77.43275,29.40227],[77.43464,29.40876],[77.43494,29.41772],[77.43639,29.42042],[77.43612,29.42369],[77.43462,29.42427],[77.44516,29.43461],[77.45656,29.44084],[77.46401,29.45167],[77.45327,29.45634],[77.44131,29.46564],[77.44176,29.47027],[77.44491,29.47267],[77.44265,29.47729],[77.45005,29.48589],[77.4509,29.49071],[77.45604,29.49575],[77.45516,29.49783],[77.45655,29.50112],[77.46534,29.50338],[77.46938,29.5087],[77.4688,29.51384],[77.45169,29.52219],[77.46094,29.53188],[77.45949,29.53454],[77.46277,29.53902],[77.46968,29.53672],[77.47634,29.53867],[77.47586,29.54114],[77.48019,29.54822],[77.4775,29.54977],[77.47664,29.55462],[77.47819,29.56254],[77.49386,29.56494],[77.49665,29.56959],[77.48161,29.57915],[77.48312,29.58181],[77.48722,29.58156],[77.49426,29.58868],[77.49531,29.591],[77.49327,29.59205],[77.49453,29.59499],[77.49755,29.59907],[77.50233,29.60134],[77.49167,29.60841],[77.49193,29.611],[77.48829,29.61332],[77.49276,29.61872],[77.48284,29.62129],[77.48493,29.62834],[77.48389,29.63],[77.48576,29.63299],[77.48373,29.63507],[77.48666,29.63847],[77.4859,29.64581],[77.48119,29.64916],[77.48494,29.65644],[77.47898,29.65907],[77.47352,29.65705],[77.47179,29.66013],[77.46975,29.65733],[77.46664,29.65705],[77.46682,29.65861],[77.45911,29.66814],[77.45081,29.67364],[77.43963,29.66978],[77.43783,29.66282],[77.43888,29.66235],[77.43319,29.652],[77.43376,29.64922],[77.43212,29.64687],[77.42728,29.65185],[77.41456,29.65947],[77.4067,29.65285],[77.4007,29.65611],[77.39842,29.6539],[77.39627,29.65398],[77.38943,29.6467],[77.3845,29.64639],[77.37583,29.65143],[77.36538,29.65452],[77.36043,29.65083],[77.35695,29.65359],[77.35381,29.64661],[77.34509,29.65228],[77.3368,29.6435],[77.32764,29.65248],[77.30769,29.65936],[77.3035,29.66346],[77.30402,29.66483],[77.30131,29.66625],[77.30241,29.66907],[77.29757,29.67186],[77.29002,29.67082],[77.28496,29.67501],[77.28153,29.67267],[77.2794,29.66968],[77.28122,29.66851],[77.27937,29.66642],[77.27823,29.66699],[77.27783,29.66502],[77.27343,29.6648],[77.26485,29.67227],[77.25807,29.67478],[77.25349,29.67296],[77.24695,29.67982],[77.23108,29.6885],[77.22629,29.6947],[77.22142,29.69728]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"661","area_level":"District","area_name":"Hapur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.05232,28.88322],[78.03827,28.88268],[78.0312,28.87831],[78.02749,28.88008],[78.01792,28.8705],[78.01395,28.87292],[78.01134,28.87073],[78.01025,28.86639],[78.00248,28.86091],[78.00183,28.8583],[78.00374,28.85354],[78.00238,28.85141],[77.99395,28.85115],[77.98566,28.85829],[77.98079,28.8551],[77.97456,28.85643],[77.96191,28.84088],[77.95425,28.84309],[77.95212,28.84203],[77.9481,28.84676],[77.93314,28.8338],[77.92556,28.8401],[77.92984,28.84458],[77.92705,28.84715],[77.92802,28.8488],[77.92506,28.85136],[77.92575,28.85286],[77.91378,28.86062],[77.90724,28.86125],[77.89848,28.8665],[77.89188,28.86778],[77.8845,28.85732],[77.88201,28.85674],[77.87441,28.86055],[77.87513,28.86134],[77.87155,28.8641],[77.87081,28.86294],[77.86795,28.86439],[77.86201,28.85511],[77.86318,28.85387],[77.86239,28.85086],[77.86432,28.84878],[77.85851,28.84525],[77.85381,28.83237],[77.86239,28.82776],[77.85953,28.82382],[77.86413,28.82031],[77.86219,28.81502],[77.86392,28.81375],[77.86256,28.80953],[77.86433,28.80734],[77.86274,28.8054],[77.8626,28.8011],[77.86473,28.79804],[77.86295,28.79573],[77.85962,28.79372],[77.85574,28.79726],[77.85749,28.79864],[77.85369,28.79869],[77.85172,28.801],[77.84871,28.80081],[77.84819,28.80241],[77.84634,28.80153],[77.8363,28.80453],[77.82956,28.80005],[77.82379,28.80335],[77.82081,28.79898],[77.81281,28.79251],[77.80501,28.79354],[77.79773,28.78558],[77.78739,28.79021],[77.77634,28.77804],[77.78088,28.76986],[77.77357,28.7629],[77.76364,28.76154],[77.75316,28.75095],[77.75327,28.74766],[77.75046,28.74774],[77.74094,28.75302],[77.7355,28.74661],[77.72706,28.74073],[77.72702,28.73804],[77.72045,28.73668],[77.71564,28.74097],[77.70593,28.74444],[77.70332,28.74684],[77.69917,28.74322],[77.68709,28.74342],[77.68222,28.73793],[77.68327,28.73464],[77.68214,28.73245],[77.68386,28.72908],[77.68223,28.72411],[77.67827,28.72688],[77.67705,28.72549],[77.67572,28.72671],[77.67022,28.72269],[77.6615,28.73217],[77.65605,28.73433],[77.64998,28.73385],[77.64792,28.72996],[77.6465,28.73008],[77.64087,28.7239],[77.63845,28.72539],[77.63728,28.72836],[77.63867,28.7293],[77.6371,28.73049],[77.63267,28.72648],[77.62578,28.73121],[77.62541,28.73371],[77.6228,28.73563],[77.62224,28.73303],[77.61783,28.73157],[77.61319,28.73256],[77.60992,28.72891],[77.6078,28.72969],[77.60582,28.72748],[77.6163,28.72184],[77.61394,28.71773],[77.61516,28.716],[77.605,28.71206],[77.6033,28.7095],[77.60076,28.7097],[77.59586,28.70623],[77.59019,28.69844],[77.58427,28.70185],[77.56998,28.70204],[77.56521,28.69739],[77.56355,28.69276],[77.56449,28.69152],[77.56142,28.68714],[77.54599,28.68477],[77.547,28.68208],[77.54437,28.67807],[77.54706,28.67466],[77.54621,28.67001],[77.54728,28.66939],[77.54579,28.66675],[77.56355,28.65976],[77.56379,28.65616],[77.56621,28.65294],[77.56058,28.64759],[77.55729,28.63844],[77.54692,28.62799],[77.56187,28.61893],[77.56731,28.62608],[77.5759,28.63228],[77.57585,28.63418],[77.5783,28.63299],[77.57936,28.63443],[77.58302,28.63259],[77.5879,28.64052],[77.59408,28.64076],[77.60498,28.63566],[77.60606,28.63712],[77.6091,28.63479],[77.61306,28.63805],[77.62411,28.62726],[77.61468,28.61965],[77.6305,28.60871],[77.6325,28.60403],[77.63958,28.59877],[77.63932,28.59729],[77.64376,28.59537],[77.64529,28.59671],[77.64762,28.5949],[77.6494,28.59647],[77.6529,28.59388],[77.65572,28.59504],[77.65883,28.59408],[77.66846,28.58134],[77.67753,28.57399],[77.67533,28.57133],[77.67843,28.5644],[77.67716,28.5636],[77.68505,28.55605],[77.69649,28.55727],[77.70456,28.55564],[77.71222,28.55707],[77.71983,28.54954],[77.73406,28.56077],[77.74786,28.55892],[77.74824,28.56315],[77.75219,28.56669],[77.75068,28.57043],[77.75418,28.5741],[77.75258,28.57489],[77.75365,28.57613],[77.75269,28.58068],[77.75516,28.58311],[77.75755,28.5827],[77.7583,28.58452],[77.76091,28.58282],[77.76451,28.58897],[77.77763,28.58651],[77.78593,28.59457],[77.78478,28.59506],[77.78787,28.59916],[77.78719,28.60196],[77.78951,28.6068],[77.79468,28.61189],[77.79594,28.61718],[77.79801,28.61615],[77.80443,28.62407],[77.81509,28.62825],[77.81736,28.62597],[77.82142,28.62889],[77.82793,28.62868],[77.83414,28.63415],[77.83832,28.6328],[77.84829,28.64245],[77.84808,28.64573],[77.85509,28.65509],[77.8655,28.64817],[77.86732,28.64438],[77.87221,28.64633],[77.87475,28.64262],[77.89198,28.63574],[77.89472,28.63332],[77.90181,28.63374],[77.90173,28.63816],[77.89961,28.64047],[77.91125,28.65111],[77.90836,28.65413],[77.90408,28.654],[77.9003,28.65691],[77.89916,28.6614],[77.90038,28.66529],[77.90479,28.66957],[77.91043,28.66726],[77.91509,28.67089],[77.91141,28.67372],[77.92169,28.68568],[77.93076,28.70086],[77.94021,28.70529],[77.94867,28.70225],[77.95193,28.70334],[77.96292,28.71536],[77.96705,28.71428],[77.97089,28.71096],[77.97244,28.71241],[77.97557,28.70837],[77.97822,28.70875],[77.9866,28.69831],[77.98982,28.70092],[77.99949,28.70091],[78.0032,28.69842],[78.00896,28.69956],[78.01257,28.69514],[78.01312,28.69173],[78.01142,28.68916],[78.01838,28.68333],[78.0207,28.68601],[78.03233,28.67945],[78.03689,28.6789],[78.0519,28.67216],[78.05403,28.67306],[78.06814,28.6664],[78.07467,28.67536],[78.07948,28.67404],[78.08393,28.67182],[78.08751,28.66771],[78.08668,28.66586],[78.09014,28.66295],[78.08706,28.65671],[78.08902,28.65478],[78.10376,28.64727],[78.11989,28.64412],[78.13017,28.63533],[78.13495,28.64207],[78.14083,28.64599],[78.14766,28.64248],[78.15169,28.64548],[78.1676,28.63495],[78.17248,28.62913],[78.17535,28.63085],[78.18205,28.62946],[78.18429,28.62733],[78.21058,28.62684],[78.21218,28.63815],[78.2111,28.654],[78.20071,28.65733],[78.19827,28.66011],[78.19837,28.66354],[78.20152,28.66542],[78.20201,28.67093],[78.19969,28.68098],[78.19428,28.68255],[78.19097,28.68651],[78.1884,28.69168],[78.18913,28.70065],[78.18121,28.71038],[78.17072,28.71191],[78.16689,28.71479],[78.16332,28.72081],[78.16848,28.72246],[78.1693,28.73177],[78.1677,28.73426],[78.17107,28.7405],[78.16543,28.74067],[78.16684,28.74541],[78.16287,28.75255],[78.15004,28.75584],[78.13857,28.76621],[78.13792,28.76921],[78.13938,28.77253],[78.13586,28.77316],[78.13228,28.78154],[78.13474,28.78608],[78.13337,28.78927],[78.13034,28.79068],[78.13108,28.79565],[78.12767,28.80248],[78.12705,28.80733],[78.13146,28.81593],[78.1402,28.81804],[78.14268,28.82114],[78.14168,28.82701],[78.14427,28.83336],[78.14394,28.83791],[78.14268,28.84178],[78.13108,28.84758],[78.12877,28.85397],[78.12588,28.85422],[78.11625,28.86557],[78.1208,28.8784],[78.09799,28.87787],[78.09356,28.87518],[78.09282,28.87224],[78.08958,28.87452],[78.07933,28.87494],[78.07745,28.87659],[78.0714,28.8757],[78.06319,28.87774],[78.05232,28.88322]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"662","area_level":"District","area_name":"Pathankot","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.84365,32.50341],[75.83903,32.51026],[75.83579,32.51156],[75.83225,32.51072],[75.83425,32.50767],[75.83376,32.50373],[75.82616,32.50388],[75.82632,32.49999],[75.82202,32.4935],[75.8136,32.48845],[75.80051,32.48513],[75.77694,32.46512],[75.76273,32.45999],[75.75934,32.46052],[75.74902,32.45408],[75.74151,32.45515],[75.72979,32.4532],[75.72884,32.44767],[75.72661,32.44481],[75.7287,32.43911],[75.73434,32.43912],[75.73714,32.43498],[75.74247,32.43363],[75.7438,32.4316],[75.73815,32.42981],[75.72989,32.4329],[75.72775,32.43168],[75.7275,32.4294],[75.73199,32.42499],[75.73187,32.42256],[75.72269,32.40938],[75.72276,32.4056],[75.71496,32.40796],[75.71134,32.41156],[75.70128,32.39944],[75.68725,32.39025],[75.67981,32.38997],[75.67549,32.39386],[75.6731,32.39392],[75.64652,32.38742],[75.63457,32.37991],[75.61193,32.37686],[75.59531,32.37704],[75.55978,32.35698],[75.55777,32.35384],[75.55033,32.34875],[75.53929,32.33522],[75.53766,32.3259],[75.54284,32.3216],[75.54189,32.31559],[75.54331,32.3092],[75.54221,32.30381],[75.53953,32.30022],[75.53933,32.29217],[75.53683,32.28311],[75.53224,32.27783],[75.52604,32.27749],[75.52618,32.27601],[75.52092,32.27724],[75.52102,32.2793],[75.51866,32.27971],[75.51839,32.28165],[75.50919,32.28399],[75.50393,32.29132],[75.50548,32.29669],[75.51329,32.30711],[75.51153,32.30859],[75.50447,32.31269],[75.50332,32.31103],[75.48639,32.31663],[75.48192,32.32029],[75.48566,32.32364],[75.48151,32.33517],[75.48447,32.33758],[75.48614,32.33657],[75.48807,32.33963],[75.49494,32.34113],[75.4891,32.34556],[75.48649,32.34473],[75.48633,32.34197],[75.47894,32.33849],[75.47505,32.33814],[75.47504,32.33993],[75.46913,32.33863],[75.47187,32.33286],[75.46597,32.32917],[75.46965,32.32779],[75.46778,32.3246],[75.4621,32.32706],[75.44951,32.32382],[75.44813,32.32604],[75.44496,32.32121],[75.44049,32.31802],[75.43161,32.31666],[75.42999,32.315],[75.41843,32.32004],[75.41051,32.32862],[75.40662,32.32889],[75.40369,32.32688],[75.40219,32.33005],[75.39939,32.33002],[75.39448,32.32693],[75.38029,32.33399],[75.37654,32.33431],[75.37453,32.33732],[75.37068,32.33424],[75.36312,32.33294],[75.36199,32.3341],[75.36348,32.33612],[75.36087,32.33492],[75.35537,32.3367],[75.35574,32.3383],[75.34928,32.34526],[75.34159,32.34575],[75.34072,32.33765],[75.33894,32.33564],[75.3359,32.33694],[75.33543,32.33016],[75.33148,32.32672],[75.33771,32.32184],[75.33661,32.31661],[75.33275,32.31603],[75.33007,32.31256],[75.33499,32.3109],[75.32404,32.30251],[75.3205,32.29739],[75.35024,32.28986],[75.34371,32.27855],[75.37148,32.27961],[75.37788,32.27354],[75.37858,32.27031],[75.38186,32.26895],[75.38069,32.26603],[75.37434,32.26589],[75.37084,32.25756],[75.3705,32.24246],[75.37419,32.24143],[75.37184,32.22494],[75.3686,32.22623],[75.36584,32.22392],[75.36547,32.21994],[75.35739,32.21806],[75.34213,32.21703],[75.33671,32.21955],[75.33138,32.21958],[75.32699,32.2139],[75.3379,32.2065],[75.34743,32.20627],[75.35785,32.19664],[75.36665,32.19235],[75.37742,32.19079],[75.37848,32.18341],[75.3822,32.18314],[75.38645,32.18719],[75.39196,32.18909],[75.40008,32.19006],[75.40161,32.18759],[75.40334,32.18782],[75.40301,32.17799],[75.41314,32.17702],[75.41204,32.17157],[75.4151,32.1701],[75.41625,32.16571],[75.42016,32.16378],[75.42431,32.16456],[75.42972,32.16889],[75.44234,32.16681],[75.44124,32.16284],[75.43436,32.16445],[75.43374,32.16065],[75.43772,32.15904],[75.4376,32.15744],[75.4343,32.15742],[75.4354,32.15502],[75.43442,32.14899],[75.43665,32.14872],[75.4405,32.15288],[75.44736,32.15047],[75.44841,32.15306],[75.45206,32.15275],[75.45198,32.15102],[75.45691,32.15225],[75.45784,32.15699],[75.46364,32.15481],[75.4682,32.15761],[75.47491,32.15704],[75.47596,32.15963],[75.48097,32.1598],[75.48322,32.15683],[75.48121,32.15408],[75.48225,32.1534],[75.48689,32.15169],[75.48945,32.1533],[75.49696,32.15312],[75.49908,32.14881],[75.5017,32.14928],[75.50585,32.14524],[75.50884,32.14543],[75.51135,32.14907],[75.54341,32.14555],[75.54285,32.1405],[75.54852,32.14024],[75.55196,32.13807],[75.55261,32.13312],[75.55594,32.13259],[75.55773,32.13516],[75.57684,32.13748],[75.58725,32.14102],[75.5868,32.13273],[75.58886,32.12899],[75.58877,32.11897],[75.58589,32.11832],[75.5826,32.10707],[75.58549,32.10478],[75.59429,32.11146],[75.5976,32.09525],[75.60076,32.09309],[75.60972,32.09336],[75.61901,32.09678],[75.62646,32.1074],[75.62727,32.11733],[75.6257,32.11874],[75.66002,32.13665],[75.67268,32.15922],[75.66346,32.16218],[75.66369,32.16429],[75.66615,32.16474],[75.66702,32.17839],[75.65831,32.17817],[75.65901,32.18278],[75.65669,32.18289],[75.65936,32.18371],[75.65988,32.18781],[75.66312,32.18958],[75.66192,32.19291],[75.65789,32.19382],[75.65534,32.19677],[75.64537,32.19248],[75.63772,32.1925],[75.63752,32.18704],[75.63304,32.18687],[75.63157,32.1896],[75.62377,32.19004],[75.62744,32.20684],[75.62583,32.20983],[75.6263,32.21602],[75.63261,32.21716],[75.63665,32.21984],[75.63732,32.22272],[75.63561,32.23167],[75.62226,32.23387],[75.61805,32.23581],[75.61846,32.23757],[75.63205,32.24405],[75.63671,32.24995],[75.64087,32.25222],[75.65809,32.25113],[75.7132,32.27218],[75.74667,32.27722],[75.77232,32.28936],[75.78172,32.31011],[75.80157,32.32836],[75.81483,32.33018],[75.81295,32.33506],[75.80751,32.34071],[75.81121,32.34849],[75.82749,32.35023],[75.83445,32.35728],[75.84381,32.35531],[75.8455,32.35907],[75.84477,32.36486],[75.85241,32.37949],[75.8565,32.38487],[75.86474,32.38879],[75.8736,32.39568],[75.88671,32.3962],[75.8939,32.3933],[75.90208,32.3941],[75.90494,32.39598],[75.90798,32.39334],[75.91452,32.39552],[75.91772,32.39483],[75.92003,32.39681],[75.92363,32.39123],[75.92873,32.39461],[75.93309,32.39158],[75.93651,32.39742],[75.93799,32.39754],[75.93115,32.39942],[75.93028,32.40223],[75.92159,32.41023],[75.91669,32.42001],[75.91994,32.42305],[75.92018,32.43009],[75.90555,32.43766],[75.90573,32.44088],[75.90103,32.44893],[75.90277,32.45233],[75.88591,32.46363],[75.88079,32.46417],[75.8764,32.47034],[75.8664,32.4771],[75.86359,32.48112],[75.8567,32.4845],[75.84415,32.49966],[75.84365,32.50341]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"663","area_level":"District","area_name":"South West Garo Hills","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[89.96649,25.30362],[89.98062,25.31704],[89.97908,25.31717],[89.97721,25.3205],[89.98034,25.3246],[90.00437,25.32804],[90.00999,25.33094],[90.00987,25.33686],[90.01661,25.33969],[90.01432,25.34129],[90.0162,25.34525],[90.01509,25.3476],[90.01872,25.35073],[90.05549,25.35506],[90.10667,25.36605],[90.10794,25.36762],[90.14682,25.3761],[90.15146,25.37984],[90.15262,25.3858],[90.15574,25.389],[90.15407,25.39352],[90.15158,25.39621],[90.14871,25.39572],[90.14767,25.39821],[90.14663,25.40456],[90.14924,25.40727],[90.14831,25.40907],[90.15033,25.40886],[90.14961,25.41078],[90.15107,25.41036],[90.14945,25.41452],[90.151,25.41723],[90.14679,25.42086],[90.15219,25.42714],[90.1529,25.43167],[90.15772,25.43872],[90.15496,25.44114],[90.15206,25.44036],[90.15215,25.44291],[90.15466,25.44555],[90.15344,25.44774],[90.15877,25.45808],[90.15963,25.46882],[90.16405,25.4756],[90.16291,25.48044],[90.16007,25.48205],[90.1602,25.48491],[90.15119,25.4878],[90.15746,25.49053],[90.1597,25.50056],[90.15952,25.50807],[90.16135,25.51124],[90.16111,25.5146],[90.15758,25.51846],[90.15978,25.52103],[90.1585,25.52283],[90.15999,25.52359],[90.16039,25.53117],[90.16202,25.53039],[90.16216,25.53364],[90.1614,25.53463],[90.16089,25.53315],[90.15814,25.53352],[90.1561,25.53511],[90.1597,25.53672],[90.15752,25.5389],[90.1593,25.53946],[90.15892,25.54078],[90.16234,25.53812],[90.16331,25.53963],[90.16223,25.54461],[90.1603,25.545],[90.16042,25.54841],[90.15562,25.54991],[90.1528,25.54606],[90.14812,25.54487],[90.14735,25.54853],[90.14115,25.55373],[90.13707,25.54523],[90.13905,25.53727],[90.13572,25.53976],[90.1304,25.5374],[90.12662,25.5391],[90.1252,25.537],[90.13016,25.5345],[90.12571,25.53437],[90.12097,25.53148],[90.11789,25.54782],[90.12491,25.55756],[90.12162,25.5637],[90.118,25.56495],[90.11407,25.56096],[90.10575,25.56127],[90.0947,25.57263],[90.09348,25.57907],[90.08422,25.58657],[90.05818,25.59844],[90.02887,25.6054],[90.02458,25.60396],[90.0193,25.6045],[90.01843,25.60139],[90.01089,25.6004],[90.01112,25.59669],[90.003,25.58542],[89.99556,25.58624],[89.98771,25.59155],[89.9828,25.59094],[89.97854,25.58696],[89.97542,25.57611],[89.97216,25.57349],[89.9605,25.57445],[89.9538,25.57079],[89.94106,25.56826],[89.93687,25.5644],[89.91225,25.56317],[89.90959,25.56045],[89.90747,25.56135],[89.90157,25.55894],[89.89865,25.56051],[89.89533,25.55728],[89.89051,25.55504],[89.8853,25.55499],[89.8777,25.54972],[89.87495,25.54373],[89.87883,25.5377],[89.86808,25.52987],[89.86794,25.52424],[89.86883,25.52149],[89.87149,25.52192],[89.87174,25.51853],[89.87347,25.51945],[89.87335,25.51689],[89.87734,25.51962],[89.87995,25.518],[89.88349,25.51911],[89.8807,25.51674],[89.88411,25.51424],[89.88594,25.50792],[89.87287,25.50742],[89.87681,25.5008],[89.87669,25.4955],[89.87228,25.48594],[89.87169,25.47735],[89.86543,25.47169],[89.85149,25.46549],[89.84301,25.45646],[89.83272,25.43875],[89.82543,25.41335],[89.82707,25.40154],[89.81959,25.38038],[89.82125,25.37424],[89.82144,25.35552],[89.8233,25.34823],[89.8268,25.34676],[89.83211,25.33243],[89.83831,25.32342],[89.8414,25.31479],[89.84161,25.30815],[89.83727,25.30532],[89.83769,25.30236],[89.83118,25.29603],[89.84478,25.29242],[89.84857,25.28938],[89.85397,25.28942],[89.85931,25.28602],[89.8632,25.2879],[89.8766,25.28533],[89.88519,25.28798],[89.88695,25.29164],[89.89009,25.29196],[89.89263,25.29808],[89.89537,25.29919],[89.89923,25.30465],[89.907,25.30773],[89.91455,25.30703],[89.92353,25.30428],[89.9271,25.30133],[89.93903,25.29904],[89.94392,25.30436],[89.94567,25.30286],[89.94695,25.29472],[89.94924,25.29271],[89.9545,25.301],[89.96396,25.30188],[89.96649,25.30362]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"664","area_level":"District","area_name":"Alipurduar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[89.38976,26.84189],[89.38364,26.85908],[89.37898,26.86218],[89.32681,26.84323],[89.32312,26.85112],[89.3185,26.85132],[89.31213,26.84589],[89.29535,26.8396],[89.28109,26.83096],[89.27855,26.82657],[89.27308,26.82737],[89.2642,26.81813],[89.2624,26.81378],[89.23936,26.81869],[89.22898,26.81828],[89.19351,26.81078],[89.1763,26.81914],[89.13448,26.80764],[89.12409,26.82199],[89.11537,26.82421],[89.10252,26.842],[89.10004,26.84188],[89.0979,26.83344],[89.09206,26.8307],[89.09172,26.82597],[89.09268,26.8194],[89.09994,26.81778],[89.09817,26.81362],[89.09817,26.80738],[89.09175,26.79934],[89.09219,26.79019],[89.09057,26.78601],[89.0809,26.77581],[89.07849,26.76688],[89.07442,26.76037],[89.07927,26.75005],[89.08164,26.74817],[89.07531,26.74134],[89.07671,26.74134],[89.07841,26.732],[89.08,26.73246],[89.08214,26.72911],[89.07995,26.72754],[89.07942,26.72926],[89.07705,26.72877],[89.07575,26.73043],[89.07462,26.72322],[89.07049,26.7172],[89.06901,26.6991],[89.06516,26.69252],[89.06699,26.69128],[89.06393,26.68919],[89.06541,26.68529],[89.06188,26.68157],[89.06172,26.67485],[89.06418,26.67143],[89.05851,26.66186],[89.0545,26.65912],[89.04964,26.64844],[89.04793,26.64806],[89.04861,26.64449],[89.04634,26.64259],[89.04716,26.63991],[89.04499,26.63646],[89.05015,26.62576],[89.04759,26.62363],[89.05215,26.62436],[89.05361,26.62132],[89.04969,26.61937],[89.05261,26.61617],[89.05358,26.6119],[89.04999,26.6095],[89.05549,26.60948],[89.06041,26.61167],[89.06162,26.60472],[89.06437,26.60393],[89.06709,26.59721],[89.07208,26.5981],[89.07461,26.59589],[89.07257,26.59303],[89.07474,26.59321],[89.07866,26.59746],[89.08031,26.59647],[89.08076,26.59245],[89.0829,26.59235],[89.08546,26.59655],[89.08708,26.59579],[89.08662,26.59236],[89.08799,26.59168],[89.09164,26.59663],[89.09404,26.59195],[89.1001,26.5915],[89.10259,26.59325],[89.10513,26.59205],[89.10528,26.59025],[89.10269,26.58838],[89.10308,26.58523],[89.10729,26.5917],[89.10943,26.59109],[89.10489,26.58222],[89.10529,26.57655],[89.10156,26.57544],[89.10396,26.56844],[89.09946,26.56835],[89.09884,26.56622],[89.10179,26.56183],[89.10418,26.5618],[89.1072,26.56434],[89.11111,26.56056],[89.11069,26.5587],[89.10561,26.55808],[89.10415,26.55638],[89.10525,26.55355],[89.10833,26.55268],[89.11312,26.54777],[89.11244,26.5452],[89.11442,26.54206],[89.11008,26.54156],[89.10872,26.53867],[89.10979,26.53658],[89.11532,26.53443],[89.11684,26.53585],[89.11688,26.54004],[89.1182,26.54037],[89.11879,26.53342],[89.1239,26.52892],[89.12125,26.52563],[89.12209,26.52321],[89.1325,26.51924],[89.14694,26.51845],[89.15209,26.51676],[89.18053,26.50102],[89.18361,26.50097],[89.19141,26.50567],[89.19155,26.51007],[89.23137,26.5019],[89.24038,26.49629],[89.24469,26.49122],[89.26487,26.49017],[89.28004,26.48613],[89.28434,26.48793],[89.2938,26.48794],[89.29907,26.48642],[89.30476,26.48167],[89.30748,26.48179],[89.31013,26.48497],[89.31896,26.48528],[89.32576,26.49484],[89.33887,26.48777],[89.34359,26.48686],[89.35689,26.49655],[89.36657,26.48931],[89.37821,26.47631],[89.37858,26.47418],[89.38213,26.47368],[89.38314,26.47067],[89.38817,26.46592],[89.39435,26.46431],[89.40156,26.4647],[89.41199,26.47157],[89.41965,26.47082],[89.42101,26.46887],[89.43147,26.46794],[89.43336,26.4697],[89.43912,26.46934],[89.44188,26.47085],[89.44375,26.47593],[89.44903,26.47445],[89.44969,26.47653],[89.45239,26.47685],[89.45497,26.49063],[89.47136,26.48866],[89.47916,26.48625],[89.48314,26.48267],[89.48388,26.48522],[89.48509,26.48347],[89.48666,26.48498],[89.48611,26.48344],[89.48924,26.48332],[89.49135,26.4804],[89.4955,26.48113],[89.49527,26.47881],[89.49244,26.47862],[89.49537,26.47586],[89.49473,26.47277],[89.49847,26.47182],[89.49974,26.4731],[89.49882,26.47462],[89.50138,26.47333],[89.50231,26.47436],[89.50322,26.47237],[89.50551,26.4724],[89.50235,26.47073],[89.50496,26.46854],[89.5108,26.47387],[89.51259,26.47664],[89.51179,26.47762],[89.51391,26.47636],[89.51411,26.4742],[89.52063,26.47155],[89.52276,26.47237],[89.52492,26.47644],[89.52762,26.47649],[89.52991,26.47107],[89.53258,26.47061],[89.53613,26.47259],[89.53753,26.46995],[89.53477,26.46297],[89.54206,26.45979],[89.53718,26.45378],[89.5445,26.45093],[89.53826,26.44675],[89.53832,26.44489],[89.54648,26.44624],[89.54933,26.44479],[89.5485,26.43998],[89.55248,26.43854],[89.55223,26.43156],[89.55602,26.43184],[89.55883,26.42977],[89.557,26.42597],[89.55026,26.42674],[89.55728,26.42108],[89.55571,26.41878],[89.54973,26.41879],[89.54908,26.41647],[89.54965,26.41508],[89.55843,26.41452],[89.55834,26.41256],[89.55513,26.4101],[89.56453,26.4103],[89.57185,26.41832],[89.56937,26.41941],[89.57212,26.42037],[89.56893,26.42086],[89.57086,26.4228],[89.56675,26.42332],[89.56586,26.42176],[89.56437,26.42286],[89.56543,26.42504],[89.56366,26.42794],[89.56766,26.42781],[89.5732,26.42505],[89.58401,26.42984],[89.60522,26.40617],[89.61885,26.39533],[89.62075,26.39738],[89.61973,26.39988],[89.62472,26.39986],[89.62479,26.40137],[89.62337,26.4009],[89.62788,26.40808],[89.62279,26.41644],[89.62427,26.41985],[89.62689,26.42017],[89.62858,26.41632],[89.63707,26.41793],[89.6376,26.4164],[89.63753,26.41878],[89.64759,26.41941],[89.64834,26.42136],[89.65002,26.41839],[89.65105,26.42142],[89.64923,26.42295],[89.65433,26.42297],[89.66146,26.43096],[89.6577,26.43171],[89.66064,26.43684],[89.66277,26.43402],[89.6655,26.43648],[89.67776,26.43485],[89.67843,26.43354],[89.67593,26.42958],[89.68203,26.42851],[89.68754,26.42948],[89.68916,26.42697],[89.69331,26.42679],[89.69251,26.42237],[89.69923,26.42132],[89.71087,26.42729],[89.71112,26.43449],[89.71852,26.43378],[89.7243,26.43558],[89.72779,26.44422],[89.73343,26.4425],[89.7388,26.4455],[89.7423,26.4395],[89.74716,26.43867],[89.7481,26.44772],[89.74501,26.45596],[89.74833,26.45667],[89.74879,26.46325],[89.77274,26.4652],[89.78502,26.46186],[89.82776,26.45939],[89.83099,26.46272],[89.83156,26.46745],[89.82961,26.46748],[89.8293,26.46923],[89.82451,26.46846],[89.82582,26.47086],[89.84716,26.46935],[89.84929,26.4705],[89.85807,26.46461],[89.86413,26.46422],[89.86191,26.45474],[89.85813,26.45623],[89.85292,26.45546],[89.85078,26.44791],[89.85403,26.44751],[89.8539,26.44449],[89.8298,26.44772],[89.83349,26.44126],[89.83137,26.43827],[89.82506,26.44062],[89.82281,26.43138],[89.83678,26.43106],[89.83659,26.42874],[89.83569,26.43065],[89.83278,26.42818],[89.82957,26.42235],[89.8302,26.4178],[89.83189,26.41592],[89.83458,26.41661],[89.83525,26.41202],[89.85748,26.41198],[89.85671,26.41494],[89.84976,26.42046],[89.84916,26.42279],[89.85587,26.42492],[89.85772,26.42993],[89.85568,26.4326],[89.8587,26.43556],[89.85856,26.43957],[89.86266,26.44292],[89.8642,26.44676],[89.87203,26.45139],[89.87043,26.4567],[89.87296,26.46264],[89.87055,26.46726],[89.86482,26.46912],[89.86159,26.48188],[89.86237,26.48355],[89.85633,26.4854],[89.85414,26.48817],[89.85436,26.4934],[89.85884,26.49991],[89.85683,26.50076],[89.85676,26.5066],[89.85878,26.51261],[89.85604,26.51478],[89.8561,26.51843],[89.86294,26.53003],[89.86586,26.53228],[89.86318,26.54164],[89.86899,26.55387],[89.86736,26.56948],[89.86449,26.57324],[89.86599,26.57677],[89.87116,26.57907],[89.87292,26.5783],[89.8826,26.58339],[89.87377,26.59134],[89.87953,26.6093],[89.87842,26.61553],[89.86415,26.61573],[89.85825,26.62338],[89.85916,26.62956],[89.86713,26.63494],[89.87693,26.64851],[89.87046,26.65533],[89.87013,26.65783],[89.87419,26.66672],[89.87235,26.67248],[89.87458,26.68362],[89.86333,26.70085],[89.81235,26.71063],[89.80659,26.71059],[89.77137,26.701],[89.76667,26.70411],[89.7616,26.71414],[89.75484,26.71749],[89.75516,26.72188],[89.75804,26.72457],[89.75868,26.72883],[89.7528,26.73531],[89.74884,26.73365],[89.74473,26.72882],[89.73918,26.72935],[89.73215,26.72472],[89.73119,26.72561],[89.72408,26.72229],[89.71846,26.72735],[89.71791,26.72976],[89.7077,26.73118],[89.70028,26.73734],[89.6899,26.73307],[89.67685,26.73968],[89.67176,26.73981],[89.66975,26.73874],[89.66943,26.73175],[89.65787,26.71865],[89.64995,26.71734],[89.648,26.72054],[89.63969,26.72237],[89.63513,26.72501],[89.6311,26.71883],[89.62943,26.71952],[89.6274,26.71755],[89.62378,26.71845],[89.62311,26.72345],[89.61845,26.72658],[89.61745,26.72931],[89.62188,26.73492],[89.62242,26.73895],[89.6334,26.74562],[89.64352,26.74854],[89.64572,26.75276],[89.64389,26.76034],[89.64765,26.76167],[89.65017,26.76666],[89.65327,26.76688],[89.64987,26.77674],[89.6467,26.77802],[89.64685,26.77689],[89.64396,26.77698],[89.64073,26.78149],[89.63476,26.78138],[89.63182,26.78306],[89.62092,26.77751],[89.61894,26.7818],[89.61396,26.78605],[89.60003,26.78727],[89.59391,26.7921],[89.58747,26.79195],[89.58088,26.79538],[89.5659,26.79935],[89.56549,26.80308],[89.56208,26.80609],[89.56017,26.81286],[89.55096,26.8121],[89.54828,26.80925],[89.5433,26.81227],[89.53901,26.81215],[89.53387,26.81473],[89.52671,26.81253],[89.5244,26.81424],[89.52561,26.81491],[89.51843,26.81233],[89.51222,26.81432],[89.50094,26.80547],[89.49463,26.80317],[89.48601,26.80296],[89.48249,26.80457],[89.48121,26.80174],[89.46953,26.80269],[89.46104,26.80608],[89.45007,26.81799],[89.44897,26.8264],[89.45035,26.83081],[89.4391,26.84056],[89.42285,26.83604],[89.41382,26.84034],[89.38976,26.84189]],[[89.65493,26.43994],[89.65465,26.44187],[89.65567,26.44054],[89.65831,26.44094],[89.65734,26.43912],[89.65493,26.43994]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"665","area_level":"District","area_name":"Palghar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.87443,20.22639],[72.8705,20.22832],[72.85874,20.22474],[72.86118,20.20761],[72.83903,20.20913],[72.83568,20.20507],[72.83607,20.20341],[72.83345,20.20247],[72.83089,20.19677],[72.83695,20.18846],[72.83255,20.18984],[72.8297,20.18805],[72.82526,20.18899],[72.81604,20.18444],[72.818,20.1826],[72.82009,20.17542],[72.81963,20.16477],[72.81645,20.16034],[72.81632,20.15669],[72.82237,20.15498],[72.82447,20.14202],[72.81888,20.14467],[72.81516,20.14469],[72.81069,20.15159],[72.80605,20.15311],[72.80585,20.15447],[72.80016,20.1501],[72.79927,20.15156],[72.79723,20.14967],[72.78862,20.14932],[72.78527,20.14512],[72.78743,20.14394],[72.78758,20.13872],[72.79221,20.13282],[72.79411,20.12334],[72.78531,20.12699],[72.78199,20.12999],[72.77481,20.13215],[72.77346,20.13062],[72.7683,20.13159],[72.76269,20.12982],[72.76057,20.13122],[72.74931,20.13137],[72.74174,20.13459],[72.73767,20.13434],[72.73714,20.12721],[72.74407,20.12413],[72.74659,20.11614],[72.74501,20.11469],[72.74493,20.1177],[72.74309,20.11616],[72.73877,20.11768],[72.73594,20.10663],[72.72906,20.09315],[72.72746,20.08521],[72.72572,20.08404],[72.72601,20.0799],[72.71047,20.07819],[72.70788,20.07003],[72.7151,20.03712],[72.71521,20.02897],[72.71276,20.02249],[72.71768,20.01413],[72.72106,19.9964],[72.72142,19.98894],[72.71664,19.97318],[72.72198,19.97062],[72.72124,19.96898],[72.71519,19.9705],[72.7132,19.96769],[72.70559,19.96658],[72.70083,19.96171],[72.68945,19.95736],[72.68156,19.94224],[72.67506,19.93769],[72.66422,19.93349],[72.66437,19.92971],[72.66868,19.92796],[72.67391,19.92216],[72.67591,19.92378],[72.6788,19.92074],[72.67668,19.91925],[72.67806,19.91703],[72.67675,19.91643],[72.6747,19.90339],[72.67864,19.90032],[72.68062,19.90064],[72.67937,19.89648],[72.68203,19.88952],[72.67906,19.86981],[72.68027,19.8649],[72.67373,19.86443],[72.67157,19.86659],[72.65549,19.86191],[72.65091,19.86492],[72.65049,19.87],[72.64806,19.87005],[72.64593,19.86445],[72.64551,19.85707],[72.64716,19.84737],[72.64516,19.84451],[72.64199,19.84398],[72.64383,19.84149],[72.64322,19.8401],[72.6463,19.83873],[72.64782,19.83323],[72.6514,19.83163],[72.64962,19.82957],[72.65294,19.82652],[72.65128,19.82325],[72.65353,19.82085],[72.65116,19.81691],[72.65398,19.81094],[72.65783,19.8111],[72.65693,19.80835],[72.66768,19.80132],[72.66866,19.80456],[72.6657,19.81387],[72.67132,19.81364],[72.67759,19.80519],[72.68285,19.79349],[72.68458,19.76847],[72.68294,19.76054],[72.68209,19.75971],[72.67587,19.76503],[72.67185,19.76148],[72.67792,19.75007],[72.67408,19.74161],[72.67532,19.72688],[72.67257,19.72255],[72.67552,19.71571],[72.68046,19.71377],[72.68435,19.71457],[72.68519,19.71762],[72.69004,19.71696],[72.69239,19.71946],[72.69707,19.71924],[72.70263,19.71369],[72.70814,19.70381],[72.70771,19.69307],[72.70497,19.68848],[72.70385,19.68817],[72.70374,19.6908],[72.701,19.68484],[72.70281,19.67059],[72.69913,19.66148],[72.70571,19.64957],[72.70733,19.63833],[72.71071,19.63926],[72.719,19.62999],[72.71792,19.62635],[72.7112,19.62593],[72.7103,19.62271],[72.7183,19.62055],[72.72288,19.61758],[72.72477,19.61263],[72.72302,19.61108],[72.72487,19.6111],[72.72534,19.60957],[72.72222,19.60246],[72.71973,19.60301],[72.71823,19.59776],[72.71399,19.59688],[72.70891,19.59876],[72.71146,19.59291],[72.7118,19.58515],[72.71472,19.58161],[72.71012,19.57168],[72.7127,19.56721],[72.71759,19.56457],[72.71553,19.56055],[72.71697,19.55715],[72.71343,19.55392],[72.71598,19.55202],[72.71109,19.54078],[72.71481,19.53654],[72.72013,19.53728],[72.72183,19.53333],[72.72102,19.52456],[72.72238,19.5234],[72.71606,19.51996],[72.72035,19.51171],[72.71973,19.50077],[72.74413,19.49938],[72.74772,19.49654],[72.74729,19.49216],[72.74955,19.48927],[72.74871,19.47065],[72.74345,19.46383],[72.74314,19.45838],[72.74817,19.44783],[72.75363,19.43005],[72.75766,19.39763],[72.75993,19.39271],[72.7541,19.38456],[72.75256,19.37875],[72.74444,19.37882],[72.74789,19.37024],[72.75123,19.37026],[72.75684,19.36399],[72.75946,19.36933],[72.7661,19.36584],[72.76844,19.36333],[72.76568,19.36164],[72.79278,19.33375],[72.80019,19.32385],[72.80638,19.32372],[72.81184,19.32782],[72.82046,19.32906],[72.8271,19.33572],[72.82995,19.33462],[72.83085,19.32852],[72.86029,19.32616],[72.87161,19.32202],[72.87541,19.31588],[72.89519,19.29446],[72.90224,19.28969],[72.92238,19.29009],[72.93232,19.28719],[72.93714,19.28933],[72.94314,19.2971],[72.95521,19.30033],[72.95399,19.30479],[72.94493,19.31288],[72.9419,19.33224],[72.94356,19.34595],[72.94742,19.35389],[72.94927,19.37927],[72.95696,19.38302],[72.95908,19.38165],[72.9622,19.38559],[72.9592,19.39417],[72.9599,19.39877],[72.97447,19.39735],[72.97697,19.39868],[72.97749,19.40823],[72.98102,19.41374],[72.9821,19.41218],[72.987,19.41212],[72.99053,19.41799],[73.00296,19.42623],[73.00498,19.43337],[73.02045,19.44685],[73.01743,19.44776],[73.01141,19.45512],[73.00167,19.4601],[72.99393,19.46676],[72.99307,19.47108],[72.99548,19.47881],[72.99308,19.48482],[72.98846,19.48985],[72.99994,19.49594],[73.00358,19.50363],[73.01076,19.50261],[73.01435,19.50739],[73.01715,19.50701],[73.0228,19.49441],[73.02807,19.49288],[73.0275,19.49117],[73.03125,19.49209],[73.03628,19.49729],[73.04385,19.4929],[73.04812,19.49317],[73.05274,19.48223],[73.05709,19.47898],[73.07262,19.47918],[73.07722,19.48409],[73.08425,19.48487],[73.08812,19.48881],[73.09632,19.49078],[73.10046,19.49562],[73.10361,19.49619],[73.1086,19.49405],[73.11214,19.4963],[73.11851,19.496],[73.12331,19.49904],[73.13311,19.50117],[73.12957,19.51089],[73.13338,19.51668],[73.14049,19.51903],[73.16328,19.52026],[73.16801,19.52247],[73.17239,19.52614],[73.17942,19.53784],[73.18635,19.54086],[73.18979,19.54629],[73.19742,19.55073],[73.19798,19.55347],[73.2079,19.5565],[73.21106,19.56239],[73.20406,19.56972],[73.20433,19.5791],[73.19833,19.5902],[73.19452,19.59419],[73.19448,19.60002],[73.19662,19.59896],[73.19902,19.6006],[73.22361,19.6044],[73.22706,19.6031],[73.22993,19.61429],[73.23403,19.61657],[73.2373,19.6158],[73.23695,19.61283],[73.23871,19.61193],[73.24731,19.61028],[73.24966,19.62054],[73.25284,19.62583],[73.25731,19.62856],[73.25611,19.6318],[73.25923,19.62943],[73.27225,19.62769],[73.27684,19.62431],[73.28084,19.62422],[73.28366,19.62627],[73.27945,19.63947],[73.27479,19.64578],[73.26747,19.6519],[73.27243,19.65448],[73.27302,19.65976],[73.27104,19.66715],[73.27383,19.66648],[73.2754,19.66848],[73.27985,19.6791],[73.27924,19.68386],[73.28374,19.69109],[73.28871,19.69324],[73.29933,19.68828],[73.30136,19.68946],[73.30111,19.68736],[73.31084,19.67361],[73.3134,19.67486],[73.31933,19.67355],[73.33081,19.69514],[73.34904,19.69525],[73.35883,19.68688],[73.36753,19.6868],[73.36831,19.69047],[73.37475,19.68839],[73.37999,19.68939],[73.38106,19.69066],[73.37988,19.69826],[73.38256,19.70008],[73.38409,19.69623],[73.38627,19.6955],[73.39653,19.70004],[73.39972,19.69937],[73.40397,19.7011],[73.41485,19.69744],[73.41335,19.70785],[73.41465,19.70873],[73.41811,19.70589],[73.41993,19.70756],[73.4239,19.70707],[73.42985,19.70214],[73.43202,19.7035],[73.43342,19.71076],[73.43921,19.70864],[73.44599,19.71719],[73.45509,19.71441],[73.45704,19.71855],[73.45659,19.72351],[73.4645,19.71822],[73.47545,19.72372],[73.47567,19.73148],[73.48268,19.72579],[73.48536,19.72562],[73.48501,19.72897],[73.49479,19.72985],[73.49757,19.73317],[73.5028,19.73258],[73.50336,19.73376],[73.49931,19.73709],[73.50164,19.73912],[73.50001,19.74301],[73.50344,19.7458],[73.5038,19.7479],[73.49802,19.76068],[73.49595,19.76202],[73.48976,19.76319],[73.48405,19.76039],[73.47836,19.75988],[73.46939,19.7614],[73.46072,19.76526],[73.45031,19.76619],[73.44762,19.7688],[73.44249,19.78645],[73.44381,19.8048],[73.43929,19.80723],[73.4424,19.81498],[73.44187,19.82734],[73.44051,19.82688],[73.42944,19.83351],[73.42253,19.83177],[73.42052,19.8348],[73.4179,19.84883],[73.41988,19.85006],[73.4149,19.85998],[73.41762,19.86768],[73.424,19.87146],[73.43626,19.87242],[73.43133,19.88298],[73.4322,19.89018],[73.42824,19.89359],[73.42573,19.89956],[73.42672,19.90595],[73.4225,19.91378],[73.42271,19.91665],[73.43003,19.92053],[73.43925,19.93465],[73.44102,19.94226],[73.4398,19.95593],[73.44283,19.95417],[73.44921,19.95369],[73.45611,19.95936],[73.44899,19.96663],[73.45168,19.98185],[73.45077,19.98479],[73.44099,19.98074],[73.432,19.98211],[73.42644,19.98592],[73.41604,19.99946],[73.41751,20.00312],[73.41503,20.01217],[73.41194,20.01179],[73.40783,20.01406],[73.40639,20.01702],[73.39695,20.01682],[73.39199,20.0141],[73.37993,20.02086],[73.36606,20.01933],[73.36251,20.02245],[73.36422,20.02919],[73.36346,20.03367],[73.35784,20.03649],[73.35765,20.03991],[73.35207,20.03983],[73.34598,20.03611],[73.34296,20.03975],[73.33209,20.04561],[73.33072,20.04436],[73.33109,20.04174],[73.32928,20.04191],[73.31373,20.0491],[73.31121,20.05599],[73.30677,20.05548],[73.30656,20.05662],[73.30873,20.05942],[73.30832,20.07289],[73.30903,20.07695],[73.3124,20.08131],[73.31319,20.09144],[73.29348,20.09806],[73.27111,20.09533],[73.26881,20.10872],[73.26701,20.11057],[73.25491,20.1113],[73.25266,20.11269],[73.24772,20.12266],[73.24878,20.12309],[73.24507,20.12784],[73.23495,20.12592],[73.22929,20.12263],[73.22426,20.12438],[73.22678,20.13358],[73.22488,20.1402],[73.21793,20.13665],[73.21701,20.12861],[73.21247,20.12155],[73.20843,20.12006],[73.2139,20.11899],[73.20952,20.085],[73.20475,20.07996],[73.19816,20.07785],[73.19691,20.07594],[73.18853,20.0781],[73.18925,20.07325],[73.18615,20.05917],[73.1921,20.05471],[73.19092,20.04959],[73.18332,20.05028],[73.17798,20.04703],[73.17663,20.05195],[73.17071,20.05204],[73.16776,20.05577],[73.16513,20.05524],[73.1635,20.06055],[73.15644,20.06352],[73.15716,20.06587],[73.15579,20.06588],[73.15447,20.07042],[73.15185,20.07256],[73.15464,20.07576],[73.14919,20.079],[73.14869,20.07485],[73.14669,20.07386],[73.14309,20.07643],[73.14247,20.0803],[73.13707,20.07913],[73.13639,20.08637],[73.13336,20.08618],[73.13071,20.08175],[73.1255,20.0835],[73.1241,20.07797],[73.11905,20.07866],[73.11893,20.07509],[73.11434,20.07624],[73.11192,20.07427],[73.11198,20.07117],[73.10846,20.0753],[73.10606,20.07417],[73.10604,20.08754],[73.10226,20.09124],[73.08355,20.09117],[73.08096,20.09233],[73.08059,20.09495],[73.06817,20.09679],[73.06369,20.09959],[73.05519,20.09987],[73.05199,20.0847],[73.05106,20.06465],[73.04317,20.06519],[73.03831,20.068],[73.03048,20.07966],[73.02336,20.08472],[73.02183,20.09],[73.0137,20.09648],[73.01043,20.10578],[73.00074,20.1123],[72.99961,20.12302],[73.01262,20.12894],[73.01094,20.1346],[73.00891,20.13393],[73.005,20.13588],[73.00329,20.14034],[72.9975,20.14276],[72.99423,20.13744],[72.99535,20.13231],[72.99182,20.1177],[72.9796,20.11569],[72.97736,20.11278],[72.9705,20.11561],[72.96852,20.12366],[72.96358,20.12604],[72.96127,20.13067],[72.96158,20.1371],[72.9744,20.16025],[72.97372,20.17383],[72.97688,20.17865],[72.97676,20.1809],[72.97514,20.18166],[72.96893,20.18342],[72.96303,20.18221],[72.96194,20.18346],[72.95985,20.20122],[72.96198,20.21005],[72.94951,20.21585],[72.94144,20.21701],[72.93445,20.21595],[72.92228,20.22083],[72.92123,20.22271],[72.90808,20.22342],[72.90177,20.22505],[72.89942,20.22784],[72.89306,20.22584],[72.88961,20.22024],[72.87912,20.22691],[72.87443,20.22639]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"666","area_level":"District","area_name":"Longding","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.36397,27.1022],[95.36865,27.10709],[95.36676,27.10799],[95.35476,27.10391],[95.32927,27.08766],[95.31681,27.08281],[95.30004,27.07005],[95.29183,27.06649],[95.27632,27.05219],[95.27524,27.04997],[95.27768,27.04832],[95.27585,27.04408],[95.27713,27.04238],[95.27158,27.04118],[95.26339,27.03507],[95.26007,27.03555],[95.25844,27.03382],[95.25899,27.03027],[95.25657,27.03041],[95.24644,27.0238],[95.24384,27.02606],[95.23947,27.03639],[95.23302,27.03748],[95.23223,27.04275],[95.22933,27.04152],[95.23108,27.03909],[95.23032,27.0357],[95.22687,27.03443],[95.22353,27.03606],[95.21919,27.03195],[95.2154,27.03016],[95.21386,27.03096],[95.21069,27.02854],[95.20948,27.0304],[95.21062,27.03097],[95.20752,27.03045],[95.20723,27.03234],[95.20527,27.03241],[95.20466,27.03771],[95.20322,27.03588],[95.19666,27.03699],[95.19618,27.03184],[95.19479,27.0312],[95.19321,27.03172],[95.19355,27.03574],[95.19252,27.03521],[95.19452,27.01027],[95.19696,27.00079],[95.19668,26.9939],[95.19313,26.99237],[95.19204,26.98453],[95.19726,26.98008],[95.20459,26.97921],[95.20677,26.97713],[95.20204,26.97668],[95.20337,26.97333],[95.20558,26.96957],[95.21184,26.96484],[95.20355,26.95706],[95.21019,26.95324],[95.20602,26.95112],[95.21117,26.93137],[95.21378,26.9286],[95.22228,26.92882],[95.22603,26.92501],[95.23064,26.91495],[95.23063,26.9131],[95.22863,26.91224],[95.23076,26.90398],[95.22797,26.89267],[95.23048,26.88515],[95.22656,26.87997],[95.21448,26.8812],[95.20949,26.87995],[95.208,26.87607],[95.20307,26.87222],[95.18114,26.8592],[95.1824,26.854],[95.19221,26.84394],[95.19392,26.84371],[95.19432,26.84585],[95.20083,26.84325],[95.20519,26.84502],[95.20299,26.84058],[95.1971,26.83719],[95.19562,26.83424],[95.20337,26.80594],[95.21162,26.79259],[95.21805,26.78772],[95.23146,26.78344],[95.2367,26.78331],[95.23816,26.78106],[95.24135,26.78145],[95.22809,26.77184],[95.2296,26.76606],[95.22048,26.75586],[95.21651,26.75396],[95.21566,26.74969],[95.21776,26.74564],[95.21736,26.74155],[95.21324,26.73543],[95.21252,26.72943],[95.22454,26.71792],[95.22598,26.71093],[95.23241,26.70624],[95.22998,26.69112],[95.23224,26.68223],[95.23321,26.68109],[95.23474,26.68257],[95.24917,26.68371],[95.25706,26.67623],[95.25888,26.67188],[95.25693,26.66788],[95.25657,26.66145],[95.25952,26.65532],[95.27433,26.65863],[95.2816,26.65589],[95.2839,26.65684],[95.29191,26.6525],[95.30396,26.65101],[95.31361,26.6627],[95.31709,26.66472],[95.32639,26.6645],[95.32731,26.66862],[95.33478,26.67203],[95.33579,26.67448],[95.34671,26.67535],[95.35143,26.67201],[95.35574,26.67266],[95.36054,26.67104],[95.36681,26.67552],[95.37382,26.68414],[95.39477,26.68529],[95.40113,26.6893],[95.40301,26.69497],[95.40924,26.69573],[95.41185,26.69405],[95.41753,26.6942],[95.42908,26.70085],[95.43138,26.7007],[95.43206,26.71628],[95.4462,26.72685],[95.45294,26.73383],[95.45909,26.74388],[95.46714,26.74468],[95.4739,26.74117],[95.48276,26.74705],[95.48199,26.74999],[95.48421,26.75714],[95.48987,26.7635],[95.49226,26.77269],[95.49533,26.77543],[95.49589,26.77877],[95.50502,26.79254],[95.50396,26.79496],[95.50565,26.79964],[95.49647,26.81784],[95.50482,26.87669],[95.47184,26.8679],[95.44043,26.86718],[95.41402,26.88574],[95.40658,26.88574],[95.37907,26.91269],[95.37669,26.92506],[95.36812,26.93553],[95.37717,27.00882],[95.37574,27.01786],[95.36021,27.03267],[95.36979,27.03951],[95.38883,27.04475],[95.38511,27.06436],[95.38702,27.08434],[95.37528,27.09314],[95.37039,27.09408],[95.37154,27.09993],[95.3703,27.1016],[95.36397,27.1022]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"667","area_level":"District","area_name":"Agar-Malwa","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.19902,24.30754],[76.19477,24.31186],[76.18992,24.32342],[76.18552,24.32928],[76.17963,24.31687],[76.17415,24.31268],[76.17411,24.30721],[76.17015,24.30606],[76.16556,24.30789],[76.16461,24.30659],[76.16587,24.29981],[76.16888,24.29707],[76.1647,24.29461],[76.16533,24.29223],[76.16255,24.28473],[76.15968,24.2827],[76.14932,24.28478],[76.14329,24.2829],[76.14054,24.27463],[76.13672,24.27081],[76.14139,24.26718],[76.13905,24.25625],[76.14312,24.25574],[76.14843,24.23203],[76.14473,24.22254],[76.1378,24.21802],[76.13227,24.20856],[76.11755,24.19465],[76.11551,24.18372],[76.11535,24.17987],[76.11664,24.18015],[76.11364,24.16623],[76.11406,24.16292],[76.1213,24.16301],[76.12471,24.15832],[76.12496,24.15107],[76.12244,24.1377],[76.12679,24.13249],[76.13114,24.11549],[76.12064,24.10821],[76.12679,24.08873],[76.12179,24.0847],[76.11804,24.08712],[76.11457,24.08474],[76.10666,24.08429],[76.10492,24.08744],[76.10062,24.08711],[76.09635,24.08341],[76.0927,24.08253],[76.08927,24.07704],[76.08451,24.07694],[76.07584,24.07084],[76.07275,24.07666],[76.06758,24.07072],[76.06325,24.06827],[76.05767,24.06754],[76.05465,24.06526],[76.04896,24.06667],[76.04543,24.06451],[76.04267,24.06602],[76.03996,24.06316],[76.03681,24.0629],[76.0346,24.05845],[76.03169,24.05787],[76.03056,24.05154],[76.02817,24.05174],[76.02223,24.04724],[76.02202,24.04119],[76.01941,24.03742],[76.0213,24.03419],[76.01067,24.02504],[76.0,24.02089],[75.99702,24.01769],[75.97064,24.02036],[75.96346,24.01871],[75.96222,24.01469],[75.96719,23.99987],[75.96744,23.99123],[75.97243,23.98847],[75.97596,23.98221],[75.98485,23.97403],[75.98391,23.96742],[75.98676,23.95885],[75.98388,23.95027],[75.98761,23.94174],[75.97996,23.93591],[75.98223,23.93104],[75.98136,23.92897],[75.97453,23.92902],[75.96781,23.92416],[75.96038,23.92325],[75.95531,23.92084],[75.95137,23.91553],[75.95303,23.91172],[75.94917,23.9126],[75.94466,23.90896],[75.94389,23.90298],[75.94108,23.90176],[75.94132,23.89946],[75.93944,23.89947],[75.93751,23.89669],[75.93199,23.89622],[75.92858,23.8991],[75.92714,23.89774],[75.9238,23.89847],[75.92178,23.89613],[75.90486,23.88916],[75.89484,23.8894],[75.8871,23.87911],[75.87642,23.88002],[75.87652,23.88524],[75.87479,23.88537],[75.87063,23.89042],[75.85302,23.88748],[75.84878,23.88415],[75.84478,23.88395],[75.84476,23.87619],[75.84056,23.87458],[75.83914,23.87862],[75.83508,23.87684],[75.83547,23.87818],[75.83365,23.87795],[75.83265,23.87992],[75.82087,23.87331],[75.81736,23.86786],[75.803,23.86545],[75.799,23.86856],[75.79385,23.86701],[75.79201,23.85845],[75.78506,23.85282],[75.78329,23.84923],[75.78125,23.84873],[75.77345,23.84814],[75.76454,23.85174],[75.7617,23.86576],[75.76454,23.87555],[75.7527,23.88735],[75.74,23.889],[75.73949,23.89216],[75.73523,23.89811],[75.72711,23.89328],[75.7193,23.89706],[75.71547,23.89305],[75.71028,23.89551],[75.70805,23.8994],[75.7059,23.89888],[75.70427,23.88876],[75.70548,23.88265],[75.70219,23.88173],[75.70157,23.87283],[75.70349,23.87249],[75.70523,23.86858],[75.70894,23.86923],[75.71085,23.86241],[75.72759,23.85872],[75.73522,23.86199],[75.73641,23.85625],[75.73131,23.85313],[75.72565,23.84183],[75.71895,23.84067],[75.72227,23.83536],[75.72404,23.82376],[75.72647,23.82021],[75.72098,23.81875],[75.72159,23.81179],[75.71256,23.81315],[75.7073,23.81123],[75.70621,23.81331],[75.69799,23.81337],[75.69277,23.81645],[75.69012,23.81325],[75.70184,23.78639],[75.69964,23.78034],[75.6965,23.77974],[75.69294,23.77603],[75.69012,23.76785],[75.68971,23.76216],[75.68672,23.75594],[75.68997,23.74747],[75.69627,23.74626],[75.71107,23.74816],[75.71302,23.75635],[75.72863,23.75749],[75.73413,23.75316],[75.7332,23.74616],[75.74547,23.73957],[75.75438,23.7229],[75.76133,23.72494],[75.76611,23.72339],[75.78588,23.72298],[75.79178,23.70842],[75.80523,23.70803],[75.82293,23.69719],[75.8293,23.69837],[75.82506,23.70961],[75.82507,23.71416],[75.8291,23.72417],[75.82875,23.73143],[75.83244,23.73167],[75.83617,23.72954],[75.83725,23.73071],[75.84341,23.73047],[75.84526,23.7328],[75.84978,23.71761],[75.85161,23.71413],[75.85353,23.71385],[75.84245,23.69456],[75.84686,23.68778],[75.83732,23.68309],[75.8336,23.67764],[75.82902,23.67734],[75.82145,23.67251],[75.8166,23.67163],[75.81198,23.66015],[75.81308,23.65527],[75.81728,23.65494],[75.82804,23.64366],[75.82877,23.6324],[75.83521,23.62538],[75.83319,23.61772],[75.83792,23.61212],[75.84114,23.60281],[75.83796,23.59422],[75.83974,23.58975],[75.83721,23.58881],[75.84588,23.58257],[75.84835,23.5745],[75.85638,23.56749],[75.86576,23.56632],[75.87822,23.56153],[75.878,23.55891],[75.88112,23.55827],[75.89462,23.5603],[75.89763,23.56721],[75.90555,23.56739],[75.90933,23.57032],[75.91028,23.56902],[75.91258,23.57012],[75.92114,23.56655],[75.92767,23.55427],[75.94554,23.55269],[75.95406,23.55306],[75.95269,23.56306],[75.95454,23.56803],[75.9789,23.5639],[75.99228,23.57237],[75.9997,23.57351],[76.00493,23.57018],[76.0086,23.56525],[76.0079,23.56155],[76.0049,23.55836],[76.00612,23.55801],[76.02575,23.55749],[76.02694,23.56684],[76.05213,23.56515],[76.06721,23.55838],[76.08602,23.56835],[76.08923,23.57182],[76.09583,23.57316],[76.10493,23.56614],[76.10628,23.55234],[76.10896,23.5445],[76.11659,23.5413],[76.1214,23.54791],[76.13202,23.55251],[76.13412,23.56048],[76.14694,23.56997],[76.16527,23.57152],[76.17065,23.57778],[76.17171,23.57642],[76.17456,23.57722],[76.173,23.5803],[76.17577,23.58554],[76.17923,23.58227],[76.1825,23.57533],[76.18918,23.57223],[76.20057,23.57054],[76.20076,23.56764],[76.22927,23.56663],[76.22969,23.56964],[76.23745,23.5697],[76.23702,23.578],[76.23413,23.58511],[76.23058,23.6048],[76.22449,23.61334],[76.22178,23.62178],[76.22353,23.63878],[76.22204,23.65922],[76.21733,23.66526],[76.21546,23.67335],[76.20562,23.69271],[76.20448,23.70201],[76.20685,23.70897],[76.24612,23.70752],[76.27616,23.71096],[76.28792,23.69792],[76.301,23.7051],[76.33261,23.70494],[76.33479,23.71825],[76.33863,23.72201],[76.35248,23.71778],[76.35311,23.70791],[76.36763,23.70843],[76.37244,23.70626],[76.39443,23.71517],[76.4032,23.71377],[76.40449,23.71553],[76.40575,23.71348],[76.40806,23.71495],[76.40827,23.71797],[76.40263,23.72308],[76.40046,23.72933],[76.40185,23.73727],[76.39672,23.75143],[76.39875,23.75824],[76.39654,23.76565],[76.39339,23.76719],[76.38388,23.76636],[76.38028,23.7676],[76.37433,23.77603],[76.3771,23.79406],[76.38241,23.80255],[76.38172,23.81015],[76.37718,23.8137],[76.36449,23.81322],[76.35672,23.81898],[76.35423,23.831],[76.35684,23.84266],[76.35633,23.84918],[76.35331,23.85423],[76.34896,23.85761],[76.32852,23.86424],[76.32697,23.86872],[76.32793,23.88439],[76.32647,23.88795],[76.30205,23.89498],[76.29853,23.89779],[76.29704,23.90615],[76.29968,23.91145],[76.30419,23.91535],[76.31191,23.91865],[76.31438,23.9231],[76.30887,23.93893],[76.30232,23.94624],[76.30316,23.96097],[76.29979,23.96492],[76.29275,23.96544],[76.25557,23.98119],[76.26033,24.00044],[76.25674,24.01798],[76.2585,24.03295],[76.25639,24.03848],[76.24798,24.04293],[76.23573,24.04463],[76.22679,24.04445],[76.2246,24.04058],[76.21805,24.04119],[76.20363,24.03808],[76.19893,24.05527],[76.19927,24.05939],[76.19019,24.07448],[76.18956,24.08333],[76.19188,24.09078],[76.20059,24.0898],[76.2089,24.09149],[76.20911,24.08799],[76.21192,24.08561],[76.22753,24.08674],[76.21823,24.10355],[76.22264,24.11549],[76.233,24.12281],[76.23658,24.12882],[76.23793,24.13478],[76.23641,24.14204],[76.23291,24.14654],[76.23007,24.14775],[76.21986,24.14507],[76.21628,24.14713],[76.21497,24.1503],[76.21414,24.16228],[76.21653,24.17833],[76.21155,24.19909],[76.21255,24.20994],[76.21164,24.21219],[76.2047,24.21725],[76.20333,24.22052],[76.20647,24.22841],[76.20295,24.24476],[76.20214,24.26883],[76.20093,24.27107],[76.19459,24.27319],[76.19729,24.28796],[76.20468,24.29944],[76.20351,24.30423],[76.19902,24.30754]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"668","area_level":"District","area_name":"Chhotaudepur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.02087,22.57182],[74.01755,22.57406],[74.0153,22.55942],[74.00578,22.55688],[73.99359,22.55596],[73.98687,22.552],[73.98577,22.54973],[73.97442,22.54525],[73.97081,22.54218],[73.96976,22.53852],[73.96503,22.53603],[73.95981,22.53681],[73.95216,22.53489],[73.93626,22.53844],[73.9262,22.53014],[73.9245,22.5205],[73.9105,22.51253],[73.90839,22.50918],[73.90506,22.50719],[73.89058,22.50845],[73.88034,22.50292],[73.87014,22.50466],[73.84903,22.51285],[73.84468,22.51689],[73.84358,22.52132],[73.83789,22.5299],[73.83873,22.53329],[73.83288,22.53395],[73.82625,22.53989],[73.8097,22.54883],[73.79408,22.54743],[73.7858,22.54844],[73.78417,22.54654],[73.77286,22.54831],[73.76409,22.54554],[73.76224,22.54723],[73.75555,22.54726],[73.74984,22.54217],[73.74827,22.5386],[73.74106,22.53666],[73.72877,22.51544],[73.73033,22.50616],[73.73227,22.50483],[73.73237,22.4919],[73.72529,22.47694],[73.72444,22.46212],[73.72288,22.46014],[73.72636,22.45406],[73.7326,22.45589],[73.7365,22.45492],[73.73467,22.4471],[73.74073,22.43865],[73.73766,22.42812],[73.73087,22.42098],[73.72966,22.41431],[73.73924,22.39524],[73.73508,22.38855],[73.74479,22.38666],[73.76953,22.38915],[73.76989,22.38351],[73.76466,22.37107],[73.76254,22.36827],[73.75743,22.36619],[73.75565,22.35935],[73.7564,22.35692],[73.7529,22.35488],[73.75266,22.34762],[73.74952,22.3439],[73.74745,22.3469],[73.73752,22.34354],[73.73318,22.33867],[73.72583,22.33746],[73.72956,22.33142],[73.72704,22.3266],[73.72686,22.31916],[73.72346,22.31616],[73.72636,22.30857],[73.72907,22.30863],[73.73157,22.30399],[73.72805,22.30015],[73.72728,22.29634],[73.72916,22.29029],[73.73181,22.29076],[73.73084,22.28806],[73.72605,22.29281],[73.72331,22.28881],[73.7167,22.29002],[73.71362,22.30319],[73.7087,22.30372],[73.70727,22.30173],[73.70149,22.30141],[73.70023,22.29919],[73.69892,22.29976],[73.69723,22.28652],[73.65352,22.28821],[73.65047,22.29607],[73.64814,22.29641],[73.64533,22.29988],[73.64372,22.29922],[73.64206,22.30154],[73.63445,22.30269],[73.6289,22.31283],[73.63943,22.31571],[73.641,22.3145],[73.64565,22.31511],[73.64426,22.3164],[73.64849,22.32325],[73.65065,22.3242],[73.65242,22.33231],[73.65525,22.33658],[73.66473,22.33856],[73.67385,22.33743],[73.67769,22.33953],[73.68947,22.33738],[73.69405,22.33925],[73.68924,22.34617],[73.70364,22.34872],[73.70515,22.35852],[73.69994,22.36087],[73.69138,22.36911],[73.68348,22.37218],[73.68237,22.3746],[73.67123,22.37575],[73.64384,22.38711],[73.63951,22.38613],[73.62983,22.38974],[73.62994,22.38606],[73.63355,22.37818],[73.62595,22.37267],[73.61641,22.36081],[73.61854,22.35272],[73.61544,22.34684],[73.61261,22.3475],[73.61235,22.33821],[73.62562,22.33788],[73.62925,22.33128],[73.62084,22.32612],[73.61658,22.32436],[73.58169,22.32631],[73.57603,22.32812],[73.54418,22.33118],[73.54522,22.31926],[73.54735,22.31447],[73.54614,22.30708],[73.54395,22.30699],[73.54153,22.29766],[73.54219,22.29473],[73.54487,22.29451],[73.54724,22.28881],[73.54915,22.28815],[73.54812,22.28675],[73.54214,22.28877],[73.53963,22.2868],[73.54012,22.27908],[73.54419,22.27864],[73.54507,22.27533],[73.54626,22.27534],[73.5453,22.27316],[73.54402,22.27386],[73.54342,22.27005],[73.53673,22.26869],[73.5312,22.2628],[73.52947,22.26378],[73.52459,22.26144],[73.52554,22.2603],[73.52359,22.25082],[73.52113,22.24815],[73.50837,22.24905],[73.50218,22.24334],[73.49809,22.23562],[73.49161,22.23593],[73.49165,22.2246],[73.48637,22.22468],[73.48086,22.21901],[73.48548,22.21299],[73.48647,22.20773],[73.49244,22.20441],[73.50161,22.20428],[73.50528,22.19945],[73.50396,22.18901],[73.4954,22.17758],[73.49635,22.1669],[73.49896,22.16303],[73.49786,22.16203],[73.49924,22.15955],[73.50092,22.15989],[73.50324,22.15774],[73.50443,22.15257],[73.50626,22.15412],[73.5084,22.15233],[73.50676,22.15116],[73.50602,22.14475],[73.50903,22.14507],[73.51157,22.14331],[73.51543,22.14482],[73.51598,22.14302],[73.51781,22.14567],[73.51893,22.14481],[73.51619,22.14167],[73.51092,22.13976],[73.50699,22.13436],[73.50667,22.12259],[73.50095,22.11243],[73.49751,22.10962],[73.48202,22.10583],[73.47722,22.09952],[73.47615,22.08679],[73.47899,22.0807],[73.48416,22.07728],[73.48654,22.07055],[73.48933,22.07173],[73.48915,22.07812],[73.4921,22.07908],[73.49276,22.07743],[73.49704,22.07667],[73.50166,22.07853],[73.5041,22.08303],[73.50837,22.08405],[73.51002,22.08898],[73.51415,22.09215],[73.51998,22.09157],[73.52415,22.09341],[73.54034,22.09132],[73.5391,22.08232],[73.53264,22.07451],[73.53241,22.07146],[73.53958,22.06685],[73.54238,22.06669],[73.54219,22.06181],[73.52914,22.06197],[73.53215,22.05875],[73.53089,22.05065],[73.53444,22.04853],[73.54486,22.04756],[73.55715,22.05341],[73.56317,22.05455],[73.56286,22.0615],[73.56807,22.05921],[73.57233,22.05252],[73.57615,22.05364],[73.58233,22.0649],[73.5894,22.06586],[73.59771,22.07207],[73.60288,22.0711],[73.60907,22.07791],[73.6091,22.08209],[73.61457,22.07907],[73.61476,22.07028],[73.62036,22.07318],[73.625,22.07276],[73.63082,22.07953],[73.63035,22.06689],[73.63802,22.06768],[73.64497,22.07332],[73.64847,22.07205],[73.65209,22.0604],[73.65729,22.06201],[73.65934,22.05596],[73.65751,22.05444],[73.65886,22.05045],[73.66071,22.05112],[73.66191,22.04821],[73.66054,22.0431],[73.66565,22.04335],[73.66668,22.04678],[73.67359,22.04871],[73.67752,22.05381],[73.6822,22.05319],[73.68451,22.05122],[73.68359,22.04317],[73.67601,22.04313],[73.67446,22.02628],[73.67198,22.02683],[73.66997,22.01481],[73.67809,22.00956],[73.67973,22.00105],[73.68275,22.00969],[73.68692,22.01262],[73.69011,22.01143],[73.69109,22.00098],[73.68793,21.99908],[73.68921,21.99633],[73.68683,21.99596],[73.689,21.99202],[73.68752,21.9894],[73.68969,21.98883],[73.68883,21.98726],[73.69608,21.98829],[73.69324,21.9929],[73.69879,21.99342],[73.69846,21.99902],[73.70181,22.00175],[73.70085,22.00591],[73.70805,22.00971],[73.70877,22.00136],[73.70627,21.99731],[73.70713,21.99417],[73.7027,21.99265],[73.70459,21.97685],[73.71064,21.97983],[73.71469,21.97944],[73.71535,21.98162],[73.72892,21.98153],[73.7312,21.97854],[73.7341,21.97934],[73.73677,21.9775],[73.74517,21.96457],[73.74824,21.96254],[73.7579,21.96293],[73.77074,21.96768],[73.77355,21.96148],[73.78104,21.95992],[73.7793,21.95826],[73.7795,21.95364],[73.77746,21.95271],[73.77873,21.93996],[73.78324,21.93823],[73.78631,21.93481],[73.78815,21.93512],[73.79003,21.93118],[73.79369,21.93251],[73.79558,21.93517],[73.79581,21.94321],[73.79921,21.9484],[73.80094,21.94489],[73.80349,21.94472],[73.80372,21.94153],[73.80819,21.94018],[73.8009,21.93788],[73.80051,21.92939],[73.80387,21.92945],[73.82011,21.93587],[73.82295,21.94034],[73.84135,21.94613],[73.84709,21.95046],[73.85497,21.95262],[73.8559,21.94733],[73.86045,21.94357],[73.85986,21.93474],[73.86541,21.92943],[73.86815,21.92432],[73.87176,21.92306],[73.87507,21.92502],[73.88709,21.92497],[73.88931,21.92619],[73.90848,21.90683],[73.90766,21.90315],[73.9108,21.89831],[73.93116,21.88916],[73.93769,21.87353],[73.94051,21.87091],[73.96875,21.8859],[74.02886,21.91214],[74.03122,21.91406],[74.03123,21.91609],[74.04789,21.925],[74.08405,21.93373],[74.1059,21.94323],[74.12822,21.94978],[74.13609,21.95018],[74.13938,21.94547],[74.14626,21.94644],[74.14685,21.95289],[74.14417,21.95313],[74.14188,21.95574],[74.14301,21.9584],[74.14755,21.96072],[74.1458,21.96207],[74.14335,21.96124],[74.14276,21.96362],[74.1413,21.96384],[74.13984,21.96764],[74.14178,21.9702],[74.14034,21.97267],[74.14421,21.9754],[74.14754,21.97415],[74.14989,21.97517],[74.14865,21.98343],[74.15059,21.98659],[74.14796,21.98848],[74.1455,21.98774],[74.14374,21.99085],[74.14022,21.99048],[74.12722,21.99559],[74.12044,21.9957],[74.11843,21.99893],[74.11491,21.9979],[74.1128,21.99945],[74.09944,21.9995],[74.09801,21.99831],[74.09677,22.0],[74.09991,22.0],[74.09968,22.00142],[74.09638,22.00989],[74.09214,22.01483],[74.095,22.01898],[74.11428,22.02444],[74.11566,22.02548],[74.11535,22.02978],[74.12123,22.03219],[74.12155,22.03467],[74.12366,22.03609],[74.14015,22.04032],[74.13899,22.0434],[74.13144,22.04622],[74.13141,22.04783],[74.13629,22.05293],[74.15502,22.05781],[74.15444,22.05894],[74.16008,22.05882],[74.16104,22.06024],[74.15862,22.06971],[74.16395,22.07344],[74.16472,22.08285],[74.17865,22.08548],[74.17594,22.08969],[74.17034,22.09181],[74.16936,22.09694],[74.16714,22.09735],[74.16929,22.1006],[74.16285,22.1018],[74.15694,22.09962],[74.15371,22.1004],[74.15256,22.10601],[74.12849,22.09465],[74.12627,22.0984],[74.12446,22.09791],[74.12885,22.12104],[74.12833,22.12449],[74.12335,22.12761],[74.12278,22.13568],[74.12456,22.13608],[74.1269,22.1431],[74.13055,22.14443],[74.13017,22.1547],[74.13145,22.15897],[74.13386,22.16054],[74.13178,22.1631],[74.12486,22.16413],[74.12144,22.1674],[74.12265,22.17206],[74.12022,22.179],[74.1208,22.18224],[74.11883,22.18298],[74.11813,22.18535],[74.12165,22.19474],[74.11738,22.20647],[74.1222,22.21043],[74.12233,22.2124],[74.11708,22.21612],[74.11273,22.21404],[74.11105,22.2181],[74.10621,22.22025],[74.09721,22.21835],[74.09633,22.21996],[74.09204,22.2205],[74.07217,22.21916],[74.06933,22.23272],[74.07404,22.23819],[74.0839,22.23925],[74.08718,22.24279],[74.08388,22.24694],[74.07504,22.24756],[74.07448,22.26564],[74.06777,22.26541],[74.06592,22.26889],[74.0588,22.27462],[74.05472,22.28284],[74.05597,22.28992],[74.05238,22.29409],[74.05432,22.29748],[74.05376,22.30375],[74.05906,22.30577],[74.05958,22.3037],[74.06244,22.30492],[74.06144,22.31168],[74.06458,22.33186],[74.07157,22.33599],[74.0722,22.34348],[74.06956,22.34895],[74.06647,22.35019],[74.06477,22.35461],[74.067,22.35634],[74.06789,22.3599],[74.07078,22.36129],[74.08261,22.36171],[74.088,22.3598],[74.09207,22.36085],[74.09567,22.37111],[74.10507,22.37182],[74.11209,22.36688],[74.11367,22.35715],[74.11776,22.35616],[74.12123,22.35767],[74.12512,22.3561],[74.12739,22.3415],[74.12531,22.33742],[74.12786,22.33274],[74.13411,22.3326],[74.14214,22.32712],[74.14448,22.32819],[74.1506,22.32684],[74.15408,22.3296],[74.1562,22.32726],[74.16457,22.3243],[74.19033,22.32026],[74.19283,22.3324],[74.1922,22.34633],[74.19343,22.34891],[74.19828,22.34412],[74.20277,22.34852],[74.20404,22.36671],[74.20783,22.36466],[74.21057,22.36069],[74.22388,22.35637],[74.22451,22.36051],[74.22214,22.36463],[74.22495,22.36875],[74.22236,22.37505],[74.22371,22.37994],[74.24329,22.37605],[74.24276,22.38242],[74.25103,22.38262],[74.25429,22.38583],[74.25674,22.39965],[74.2707,22.39269],[74.27483,22.3921],[74.27941,22.3948],[74.28906,22.39229],[74.29118,22.39401],[74.26746,22.40555],[74.27059,22.41315],[74.26261,22.41816],[74.26248,22.4236],[74.2532,22.43096],[74.25279,22.43295],[74.23628,22.4352],[74.2274,22.43892],[74.22623,22.43762],[74.22159,22.43776],[74.21524,22.4413],[74.21338,22.43151],[74.20162,22.43451],[74.20422,22.45142],[74.20246,22.45638],[74.20323,22.46704],[74.19898,22.47297],[74.1934,22.47548],[74.1879,22.47551],[74.18706,22.4721],[74.18227,22.46775],[74.17993,22.46222],[74.18058,22.45464],[74.18534,22.45096],[74.18413,22.44154],[74.1695,22.43926],[74.16975,22.43183],[74.16528,22.43021],[74.16045,22.43121],[74.15553,22.43633],[74.15254,22.44306],[74.15526,22.4541],[74.14921,22.45566],[74.14276,22.44687],[74.13585,22.44717],[74.13395,22.44592],[74.13056,22.43958],[74.1311,22.43777],[74.12903,22.43606],[74.13016,22.43504],[74.1282,22.43522],[74.12796,22.42691],[74.12629,22.42667],[74.12773,22.42643],[74.12775,22.42204],[74.12474,22.41733],[74.11911,22.41876],[74.11667,22.42445],[74.1093,22.42638],[74.10684,22.42971],[74.10491,22.42951],[74.10445,22.43627],[74.10341,22.43727],[74.10132,22.43527],[74.09975,22.43804],[74.09841,22.44872],[74.09697,22.45027],[74.1004,22.45146],[74.10156,22.45555],[74.1034,22.45574],[74.10415,22.46453],[74.09544,22.46818],[74.09064,22.46634],[74.08566,22.46991],[74.07533,22.4643],[74.076,22.46941],[74.07353,22.47765],[74.07646,22.48358],[74.07885,22.48527],[74.08217,22.48444],[74.08601,22.47681],[74.08754,22.48222],[74.0852,22.48799],[74.08619,22.49158],[74.08253,22.49571],[74.08252,22.50678],[74.07742,22.50606],[74.07196,22.50821],[74.05437,22.50956],[74.04972,22.49951],[74.04642,22.4992],[74.0438,22.49658],[74.0408,22.48655],[74.0367,22.48694],[74.03339,22.4899],[74.02938,22.50795],[74.03851,22.51584],[74.03902,22.52151],[74.03678,22.52581],[74.03789,22.53451],[74.04114,22.54179],[74.0542,22.54928],[74.06114,22.54984],[74.05557,22.56254],[74.04598,22.56531],[74.03934,22.57042],[74.02608,22.57036],[74.02087,22.57182]],[[74.1657,22.41612],[74.17214,22.41875],[74.17523,22.41806],[74.17545,22.40156],[74.17966,22.39684],[74.17916,22.38799],[74.16515,22.39725],[74.16504,22.40587],[74.15737,22.41164],[74.15811,22.41428],[74.16068,22.41363],[74.1657,22.41612]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"669","area_level":"District","area_name":"Mahisagar","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.42581,23.27918],[73.42972,23.28043],[73.43554,23.28263],[73.43539,23.28307],[73.43569,23.28351],[73.43532,23.28474],[73.43534,23.28605],[73.43489,23.28803],[73.4325,23.28735],[73.43087,23.28674],[73.42847,23.28599],[73.42517,23.28509],[73.42387,23.28484],[73.42259,23.28449],[73.4227,23.28429],[73.42352,23.28066],[73.42425,23.27849],[73.42581,23.27918]]],[[[73.69373,23.45726],[73.69129,23.45827],[73.68523,23.45359],[73.67391,23.45411],[73.66169,23.44876],[73.64746,23.43645],[73.64619,23.44142],[73.63602,23.44906],[73.62721,23.44857],[73.62765,23.4474],[73.62188,23.44124],[73.62042,23.43277],[73.62246,23.42887],[73.62873,23.42607],[73.63194,23.4215],[73.62894,23.41686],[73.63022,23.41365],[73.62568,23.40789],[73.62427,23.40268],[73.62244,23.40212],[73.62324,23.40069],[73.61539,23.39688],[73.61556,23.39445],[73.6123,23.39187],[73.61186,23.38915],[73.59388,23.38338],[73.59468,23.37953],[73.58748,23.37181],[73.58622,23.3651],[73.57588,23.35795],[73.57024,23.34862],[73.56396,23.34612],[73.56399,23.33635],[73.55791,23.32759],[73.5573,23.31748],[73.55416,23.31422],[73.54489,23.31194],[73.54023,23.30829],[73.53422,23.29198],[73.52717,23.28616],[73.51587,23.28142],[73.50442,23.28114],[73.49783,23.27758],[73.48649,23.27521],[73.47505,23.26855],[73.47399,23.27292],[73.47607,23.27661],[73.47603,23.28036],[73.47291,23.28848],[73.46219,23.28711],[73.44357,23.27752],[73.43696,23.27686],[73.42749,23.26963],[73.42151,23.26892],[73.40878,23.26219],[73.3923,23.25115],[73.38518,23.24495],[73.38574,23.24391],[73.37644,23.2388],[73.37415,23.23629],[73.38512,23.22089],[73.37461,23.21576],[73.35528,23.21042],[73.35146,23.20301],[73.34184,23.20035],[73.34491,23.1963],[73.34559,23.19015],[73.34738,23.18894],[73.34431,23.18669],[73.345,23.18441],[73.34227,23.18158],[73.34527,23.18067],[73.3505,23.18364],[73.35557,23.17686],[73.36065,23.17687],[73.37461,23.17147],[73.37546,23.16887],[73.37057,23.16721],[73.36915,23.1507],[73.3701,23.14348],[73.37382,23.14058],[73.3725,23.13705],[73.36391,23.13133],[73.35585,23.13851],[73.34728,23.13574],[73.33866,23.1306],[73.33593,23.12769],[73.33654,23.12203],[73.34002,23.11652],[73.34115,23.11065],[73.33943,23.1077],[73.34213,23.10381],[73.34074,23.1007],[73.3306,23.0987],[73.33004,23.09405],[73.32637,23.09201],[73.32603,23.08207],[73.30721,23.08588],[73.29892,23.08392],[73.29114,23.07604],[73.28297,23.06361],[73.27682,23.05879],[73.27327,23.05856],[73.27564,23.04966],[73.25763,23.04101],[73.25769,23.03941],[73.25501,23.04032],[73.24446,23.03748],[73.24608,23.03471],[73.24627,23.0276],[73.24215,23.01788],[73.25303,23.00671],[73.26476,23.00051],[73.26772,22.99101],[73.27023,22.98861],[73.27168,22.9811],[73.27583,22.97776],[73.27157,22.97416],[73.25351,22.96849],[73.25098,22.96405],[73.25729,22.9543],[73.25941,22.94766],[73.25999,22.94053],[73.25781,22.93098],[73.26174,22.92616],[73.26377,22.9277],[73.26443,22.92624],[73.26526,22.92847],[73.27329,22.92991],[73.27679,22.93399],[73.27979,22.93498],[73.28792,22.93452],[73.28898,22.93593],[73.30274,22.93236],[73.30432,22.93684],[73.31251,22.94225],[73.31344,22.93973],[73.32093,22.93804],[73.32164,22.93619],[73.32581,22.93483],[73.33023,22.93071],[73.3301,22.92768],[73.33629,22.9257],[73.34788,22.92618],[73.3501,22.92413],[73.35915,22.93138],[73.36364,22.93752],[73.37183,22.93965],[73.38203,22.95023],[73.38548,22.9577],[73.39344,22.95143],[73.40433,22.95512],[73.40492,22.95184],[73.41067,22.95508],[73.4123,22.94924],[73.41677,22.94267],[73.41935,22.94036],[73.42382,22.94303],[73.44554,22.96362],[73.44914,22.96958],[73.44858,22.97722],[73.43744,22.99435],[73.43519,23.00367],[73.43478,23.02564],[73.43689,23.03269],[73.44415,23.03197],[73.44598,23.03042],[73.44555,23.02871],[73.44978,23.02261],[73.44789,23.01608],[73.45234,23.01445],[73.45578,23.00295],[73.47142,23.00072],[73.473,22.98833],[73.47827,22.98695],[73.47603,22.98285],[73.48123,22.98607],[73.48498,22.99429],[73.49521,22.99517],[73.50297,22.99484],[73.50272,22.98808],[73.50517,22.98935],[73.50834,22.98815],[73.50962,22.98343],[73.51462,22.98352],[73.51764,22.986],[73.52064,22.98219],[73.52414,22.98118],[73.52447,22.98619],[73.52839,22.98594],[73.53312,22.98794],[73.53531,22.99381],[73.54013,22.9911],[73.5621,22.98552],[73.5843,22.98721],[73.58742,22.99129],[73.59475,22.99217],[73.59418,22.9951],[73.60819,23.00646],[73.61299,23.01481],[73.61831,23.01725],[73.61939,23.02458],[73.63148,23.01167],[73.63584,23.01354],[73.6363,23.01746],[73.64322,23.01512],[73.65068,23.01674],[73.65642,23.02038],[73.65605,23.02168],[73.65,23.01967],[73.64105,23.02028],[73.63565,23.0257],[73.63179,23.02627],[73.62955,23.0304],[73.62875,23.03984],[73.63444,23.04574],[73.63532,23.04999],[73.64014,23.05336],[73.64197,23.05864],[73.65186,23.06492],[73.65506,23.07449],[73.65865,23.07789],[73.66413,23.09586],[73.67032,23.09846],[73.67336,23.1044],[73.67774,23.09849],[73.68156,23.09627],[73.68199,23.09218],[73.6915,23.09388],[73.69179,23.09092],[73.6971,23.08848],[73.70283,23.08236],[73.71061,23.07216],[73.71193,23.06738],[73.71034,23.06396],[73.71673,23.05369],[73.68465,23.03769],[73.67916,23.03746],[73.6772,23.03496],[73.66989,23.03311],[73.67112,23.03074],[73.6676,23.02083],[73.6739,23.01925],[73.6853,23.0241],[73.69043,23.02392],[73.69658,23.02762],[73.7026,23.02146],[73.71633,23.02355],[73.71931,23.03617],[73.72377,23.03636],[73.7323,23.0331],[73.73263,23.02535],[73.73649,23.01316],[73.74131,23.0117],[73.74346,23.01444],[73.74635,23.01492],[73.74926,23.02095],[73.75562,23.02533],[73.75775,23.03871],[73.76435,23.03833],[73.7688,23.0441],[73.76613,23.0521],[73.7675,23.0555],[73.74875,23.06],[73.74579,23.06424],[73.7447,23.06932],[73.7563,23.07484],[73.76026,23.07289],[73.76757,23.07289],[73.77384,23.07558],[73.77921,23.08361],[73.79102,23.08912],[73.7953,23.09493],[73.80123,23.09818],[73.8033,23.10646],[73.80905,23.10899],[73.81475,23.10394],[73.81375,23.10116],[73.8221,23.09946],[73.82992,23.09284],[73.84242,23.08686],[73.84374,23.08505],[73.84203,23.08298],[73.84638,23.07929],[73.84478,23.07773],[73.85261,23.06673],[73.86027,23.06026],[73.88118,23.05723],[73.88514,23.05243],[73.9003,23.04918],[73.90365,23.04958],[73.90805,23.05276],[73.90525,23.0685],[73.90666,23.08109],[73.91152,23.08445],[73.91771,23.09199],[73.92858,23.09354],[73.93045,23.09734],[73.93433,23.09656],[73.94223,23.09834],[73.94515,23.10132],[73.94606,23.11074],[73.95338,23.10867],[73.95901,23.11401],[73.96207,23.11285],[73.96462,23.11117],[73.96374,23.11056],[73.96574,23.10845],[73.96636,23.10405],[73.96819,23.10355],[73.9686,23.10011],[73.98241,23.09852],[73.98844,23.09189],[73.99827,23.08567],[74.00174,23.08633],[74.00298,23.08902],[74.01293,23.08779],[74.01732,23.09201],[74.01913,23.0918],[74.01954,23.09354],[74.01207,23.10203],[74.01309,23.10375],[74.00493,23.10867],[74.00491,23.11575],[74.00359,23.11742],[73.99811,23.11487],[73.99388,23.11572],[73.9821,23.11885],[73.97553,23.1241],[73.97578,23.13243],[73.97821,23.1371],[73.9814,23.13963],[73.99507,23.13613],[73.9954,23.14526],[73.99213,23.14777],[73.99101,23.15588],[73.99225,23.16038],[73.99039,23.16019],[73.98535,23.16577],[73.97977,23.16658],[73.97534,23.17297],[73.97372,23.17216],[73.97187,23.18002],[73.97228,23.18315],[73.97517,23.18466],[73.97285,23.18877],[73.98357,23.19108],[73.98385,23.19284],[73.98061,23.19322],[73.98,23.19989],[73.9839,23.20234],[73.98348,23.20444],[73.98566,23.20796],[73.98207,23.21161],[73.98143,23.20887],[73.97953,23.20787],[73.96772,23.20688],[73.96512,23.217],[73.9663,23.22322],[73.96472,23.22478],[73.97023,23.2251],[73.97207,23.22307],[73.98537,23.21854],[73.98979,23.22094],[73.99269,23.22792],[73.9909,23.23099],[73.99036,23.24017],[73.9932,23.24333],[73.99426,23.24848],[73.99157,23.25005],[73.98938,23.25687],[73.98326,23.26153],[73.98795,23.28157],[73.99721,23.28915],[73.9948,23.29425],[73.99022,23.29653],[73.98995,23.29841],[73.9861,23.3014],[73.98468,23.31008],[73.98767,23.31965],[73.99621,23.32888],[73.9978,23.33573],[73.98758,23.33576],[73.98097,23.33867],[73.97915,23.35901],[73.98041,23.36238],[73.97706,23.36485],[73.97493,23.3722],[73.96681,23.3749],[73.96176,23.37244],[73.95986,23.37771],[73.9575,23.37954],[73.95227,23.37518],[73.93801,23.36794],[73.93697,23.36058],[73.93941,23.34441],[73.93566,23.33973],[73.91858,23.33547],[73.90094,23.33597],[73.89193,23.33411],[73.8896,23.33637],[73.89266,23.34828],[73.89078,23.34889],[73.89131,23.35048],[73.88979,23.35091],[73.88723,23.35728],[73.88034,23.3585],[73.87433,23.36367],[73.87408,23.37073],[73.87246,23.37247],[73.87374,23.37515],[73.87248,23.37587],[73.87376,23.37686],[73.87297,23.37945],[73.87191,23.37726],[73.86776,23.37805],[73.86921,23.38191],[73.86636,23.38126],[73.86585,23.38422],[73.86178,23.38363],[73.86084,23.38567],[73.86338,23.38725],[73.86361,23.38949],[73.85927,23.39214],[73.85817,23.39624],[73.85004,23.40198],[73.84932,23.40548],[73.84556,23.40752],[73.84566,23.41045],[73.84087,23.41335],[73.83963,23.41882],[73.83509,23.42044],[73.83413,23.42362],[73.83023,23.42623],[73.83313,23.43582],[73.8318,23.44045],[73.82868,23.44383],[73.82871,23.44769],[73.8186,23.43846],[73.80344,23.43777],[73.79447,23.43112],[73.78628,23.43023],[73.77898,23.4313],[73.77657,23.43779],[73.77229,23.43782],[73.77056,23.44807],[73.76723,23.45312],[73.75573,23.45432],[73.75645,23.45018],[73.74988,23.44074],[73.73658,23.42981],[73.735,23.42549],[73.72875,23.42321],[73.72081,23.41013],[73.71371,23.41381],[73.71451,23.41673],[73.71122,23.42187],[73.70808,23.42232],[73.71045,23.42536],[73.70799,23.43116],[73.71165,23.43392],[73.71164,23.4355],[73.70511,23.4382],[73.70686,23.44564],[73.70427,23.45144],[73.69814,23.45632],[73.69373,23.45726]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"67","area_level":"District","area_name":"Karnal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.11882,29.99219],[77.11738,29.99344],[77.11231,29.99031],[77.11142,29.98432],[77.11455,29.98397],[77.11344,29.9807],[77.1157,29.97882],[77.11519,29.97546],[77.11358,29.97507],[77.11456,29.97093],[77.11193,29.96912],[77.10455,29.96837],[77.10261,29.96439],[77.10425,29.96038],[77.10005,29.958],[77.09605,29.95059],[77.08692,29.94975],[77.08481,29.95195],[77.08087,29.94817],[77.07436,29.95094],[77.06475,29.95212],[77.05896,29.94617],[77.053,29.94639],[77.04798,29.95275],[77.03328,29.95525],[77.02197,29.94712],[77.0152,29.94925],[77.00915,29.95294],[77.00633,29.95663],[77.00371,29.95167],[76.99981,29.94985],[76.99869,29.9521],[76.99526,29.95315],[76.99266,29.95153],[76.98814,29.95733],[76.98505,29.95607],[76.98277,29.95876],[76.98147,29.95714],[76.98423,29.95574],[76.98336,29.95331],[76.97881,29.95152],[76.97099,29.94478],[76.9651,29.94296],[76.96591,29.93952],[76.96169,29.93819],[76.95711,29.93926],[76.95677,29.93643],[76.95317,29.93629],[76.95254,29.93277],[76.94914,29.93177],[76.95021,29.92853],[76.95265,29.9282],[76.95196,29.92636],[76.9541,29.92389],[76.95313,29.92236],[76.95696,29.91896],[76.9576,29.9153],[76.95561,29.91392],[76.94996,29.91374],[76.93931,29.91864],[76.93685,29.92264],[76.9311,29.92592],[76.9291,29.92534],[76.93027,29.92162],[76.92796,29.91741],[76.92089,29.91435],[76.91246,29.91493],[76.90154,29.92073],[76.90009,29.91986],[76.89867,29.91851],[76.8966,29.90459],[76.89719,29.89972],[76.89018,29.89681],[76.88095,29.8805],[76.87151,29.87947],[76.86529,29.88119],[76.85772,29.87737],[76.84942,29.88074],[76.84698,29.8839],[76.83967,29.88729],[76.83753,29.8936],[76.83873,29.89432],[76.83343,29.90207],[76.82901,29.89465],[76.82271,29.89414],[76.81954,29.89585],[76.8206,29.89939],[76.81482,29.90179],[76.80981,29.90194],[76.80712,29.89933],[76.80764,29.89533],[76.80303,29.894],[76.80245,29.88811],[76.80634,29.88625],[76.80329,29.88231],[76.79413,29.87927],[76.79345,29.87635],[76.78759,29.87692],[76.7816,29.87343],[76.77264,29.87751],[76.76631,29.87621],[76.75505,29.86683],[76.74186,29.87143],[76.73228,29.87171],[76.73002,29.87693],[76.72471,29.88107],[76.71252,29.8831],[76.70614,29.88844],[76.70362,29.89381],[76.6949,29.89944],[76.69331,29.8864],[76.68843,29.87877],[76.68564,29.86849],[76.68339,29.86559],[76.68001,29.86681],[76.67447,29.86398],[76.68768,29.85982],[76.69425,29.85402],[76.68887,29.84369],[76.68876,29.83467],[76.6862,29.83005],[76.68777,29.82698],[76.69402,29.82533],[76.70447,29.82564],[76.70943,29.82121],[76.71026,29.81727],[76.717,29.8132],[76.7142,29.8071],[76.70396,29.80172],[76.6983,29.79585],[76.69859,29.78604],[76.70023,29.78392],[76.68351,29.76861],[76.68315,29.76462],[76.68599,29.76277],[76.68983,29.75346],[76.69744,29.75135],[76.69413,29.74574],[76.69511,29.7273],[76.68564,29.72461],[76.67893,29.71828],[76.67101,29.71367],[76.66818,29.70905],[76.67525,29.7078],[76.68809,29.70089],[76.69271,29.70106],[76.70491,29.69526],[76.7125,29.69501],[76.70845,29.67992],[76.70444,29.67501],[76.70325,29.66767],[76.70116,29.66702],[76.69393,29.66959],[76.68343,29.67758],[76.67273,29.66993],[76.65877,29.67004],[76.65621,29.6713],[76.64464,29.66297],[76.64249,29.65851],[76.64276,29.65443],[76.63997,29.65292],[76.63818,29.649],[76.62157,29.64321],[76.61737,29.644],[76.61572,29.63596],[76.60574,29.63186],[76.60331,29.62787],[76.58939,29.62704],[76.58375,29.62858],[76.57739,29.62562],[76.56358,29.62997],[76.55818,29.62809],[76.55731,29.62538],[76.55382,29.62303],[76.54623,29.62068],[76.53995,29.61356],[76.52842,29.61538],[76.52193,29.6147],[76.52673,29.61002],[76.53712,29.60455],[76.54255,29.59762],[76.54651,29.59604],[76.54715,29.59269],[76.5499,29.59076],[76.54725,29.58051],[76.54342,29.57528],[76.53439,29.57081],[76.53014,29.57032],[76.52341,29.54946],[76.5237,29.54163],[76.52608,29.53666],[76.52168,29.53331],[76.51101,29.53173],[76.50936,29.52813],[76.51152,29.52456],[76.50581,29.52419],[76.50552,29.51441],[76.49532,29.51641],[76.49813,29.50278],[76.5003,29.50132],[76.5036,29.49309],[76.50281,29.48695],[76.50613,29.4864],[76.49592,29.47892],[76.48403,29.48053],[76.48378,29.47801],[76.48157,29.47665],[76.47821,29.46026],[76.47095,29.44548],[76.47101,29.43671],[76.46293,29.42779],[76.4637,29.42424],[76.46699,29.42024],[76.4694,29.41767],[76.47458,29.41648],[76.4812,29.42861],[76.48142,29.43219],[76.48355,29.43368],[76.49884,29.42716],[76.5,29.42538],[76.51057,29.43045],[76.51787,29.43225],[76.52284,29.43153],[76.53484,29.45646],[76.55644,29.46153],[76.56982,29.46229],[76.57368,29.46632],[76.58423,29.46467],[76.59502,29.47559],[76.60506,29.47533],[76.60469,29.47879],[76.60778,29.48069],[76.63311,29.46933],[76.6422,29.47434],[76.64914,29.48821],[76.65476,29.49122],[76.66188,29.48891],[76.66571,29.48557],[76.6773,29.48214],[76.6807,29.48278],[76.68783,29.4769],[76.70943,29.47443],[76.71498,29.47777],[76.71758,29.48232],[76.72119,29.48255],[76.73444,29.48111],[76.74567,29.47772],[76.7483,29.47095],[76.75561,29.46519],[76.7654,29.46624],[76.77548,29.47434],[76.78479,29.46723],[76.79053,29.46577],[76.79519,29.46667],[76.79548,29.4719],[76.80083,29.48027],[76.81058,29.48965],[76.81872,29.50737],[76.81806,29.51413],[76.82885,29.51207],[76.83779,29.50286],[76.84446,29.5008],[76.84815,29.49544],[76.85584,29.49],[76.86159,29.48832],[76.86926,29.4917],[76.87417,29.48998],[76.87545,29.49158],[76.8826,29.49309],[76.88617,29.49619],[76.88758,29.5],[76.88657,29.50882],[76.888,29.5117],[76.88555,29.51548],[76.87775,29.51985],[76.88281,29.53397],[76.88775,29.53114],[76.88323,29.5288],[76.88541,29.52573],[76.89925,29.52465],[76.90002,29.52187],[76.90597,29.51873],[76.915,29.5185],[76.91464,29.5132],[76.91194,29.50978],[76.90858,29.50974],[76.90277,29.50681],[76.90305,29.49597],[76.90118,29.49578],[76.89818,29.48923],[76.90108,29.48723],[76.89951,29.48592],[76.89953,29.48273],[76.90435,29.4804],[76.9045,29.48211],[76.90838,29.48044],[76.90723,29.47812],[76.91164,29.47617],[76.9161,29.48275],[76.92792,29.48248],[76.93382,29.47833],[76.93659,29.48093],[76.94265,29.48124],[76.94993,29.47858],[76.96151,29.48353],[76.96546,29.48377],[76.97122,29.48047],[76.97256,29.47789],[76.97837,29.47938],[76.98171,29.47539],[76.98493,29.47671],[77.0,29.46672],[77.01399,29.46403],[77.01794,29.46397],[77.02181,29.46889],[77.0456,29.46935],[77.05531,29.46726],[77.05865,29.46957],[77.07308,29.47256],[77.07809,29.46868],[77.07995,29.46031],[77.08733,29.45796],[77.09757,29.46381],[77.11131,29.46642],[77.12031,29.47225],[77.13199,29.48494],[77.12924,29.49027],[77.1215,29.49536],[77.12118,29.49821],[77.11301,29.5066],[77.10356,29.50726],[77.10122,29.51491],[77.09701,29.51836],[77.09623,29.52235],[77.09754,29.52735],[77.10248,29.53234],[77.10218,29.53882],[77.10358,29.53902],[77.10835,29.54783],[77.12191,29.55201],[77.12626,29.55618],[77.12684,29.55945],[77.12079,29.56372],[77.12098,29.56647],[77.10501,29.5722],[77.09971,29.57657],[77.09923,29.57914],[77.09579,29.58245],[77.08546,29.5848],[77.08418,29.59092],[77.0898,29.59459],[77.09515,29.59539],[77.10054,29.59391],[77.10953,29.59743],[77.10863,29.60091],[77.11302,29.61063],[77.10862,29.61344],[77.10378,29.61405],[77.10158,29.61983],[77.10169,29.62152],[77.1047,29.62312],[77.1062,29.63233],[77.11478,29.63828],[77.1188,29.63551],[77.13152,29.64184],[77.1324,29.64725],[77.13716,29.64942],[77.14101,29.65497],[77.13806,29.66663],[77.14257,29.66835],[77.14655,29.67223],[77.14339,29.6749],[77.14245,29.68045],[77.14734,29.68322],[77.15111,29.69045],[77.15655,29.693],[77.15483,29.69591],[77.1556,29.6993],[77.14941,29.7057],[77.14953,29.70949],[77.14574,29.71097],[77.14501,29.71366],[77.13975,29.7147],[77.13779,29.71755],[77.13423,29.71843],[77.13289,29.72239],[77.13361,29.72847],[77.13907,29.73227],[77.13906,29.73821],[77.13685,29.73962],[77.1355,29.74408],[77.12719,29.7473],[77.12246,29.75124],[77.11998,29.7554],[77.11981,29.76008],[77.12221,29.76708],[77.12531,29.7695],[77.13891,29.76962],[77.14662,29.77183],[77.14745,29.77884],[77.15137,29.7882],[77.15962,29.79253],[77.16389,29.7914],[77.1726,29.80164],[77.17367,29.80505],[77.17249,29.80776],[77.17955,29.81343],[77.17825,29.8458],[77.18323,29.85453],[77.18694,29.85783],[77.18946,29.85847],[77.19314,29.85675],[77.19734,29.85874],[77.19911,29.86287],[77.20135,29.86419],[77.20203,29.8689],[77.20013,29.88949],[77.19363,29.89075],[77.18832,29.89407],[77.18631,29.89813],[77.18576,29.90753],[77.19047,29.9135],[77.19936,29.91423],[77.20163,29.917],[77.21119,29.91866],[77.21602,29.92202],[77.21912,29.92605],[77.22105,29.93288],[77.22538,29.93385],[77.22931,29.93962],[77.20902,29.93509],[77.20455,29.93715],[77.20115,29.93663],[77.1975,29.93895],[77.19581,29.93775],[77.18196,29.94658],[77.18581,29.94889],[77.18924,29.95474],[77.18299,29.95754],[77.18418,29.96088],[77.17991,29.96522],[77.17301,29.96667],[77.17102,29.96986],[77.16354,29.96702],[77.1542,29.97012],[77.13866,29.96324],[77.13398,29.9642],[77.13146,29.9659],[77.13442,29.96939],[77.13572,29.97425],[77.13439,29.97909],[77.12748,29.98634],[77.12509,29.98652],[77.11882,29.99219]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"670","area_level":"District","area_name":"South East","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.25738,28.60641],[77.25607,28.60867],[77.25039,28.60765],[77.24554,28.60551],[77.24259,28.60818],[77.23315,28.6025],[77.23337,28.59509],[77.23551,28.5921],[77.21209,28.58937],[77.21222,28.58807],[77.20823,28.58758],[77.2043,28.58762],[77.20071,28.59153],[77.2003,28.58956],[77.20214,28.58081],[77.21017,28.58017],[77.20605,28.56571],[77.20588,28.56208],[77.20912,28.55903],[77.21166,28.56323],[77.2157,28.56631],[77.2181,28.56416],[77.21782,28.56305],[77.21924,28.56238],[77.22016,28.56351],[77.22288,28.56129],[77.22387,28.55475],[77.23154,28.55324],[77.23119,28.54904],[77.23415,28.54725],[77.23508,28.53421],[77.24606,28.52765],[77.24383,28.52085],[77.24499,28.51431],[77.24186,28.50561],[77.24282,28.49881],[77.24925,28.49078],[77.24962,28.4834],[77.24806,28.48065],[77.26945,28.48664],[77.27206,28.4908],[77.27653,28.49328],[77.28814,28.49629],[77.29531,28.49594],[77.3006,28.49417],[77.30079,28.48985],[77.30653,28.48939],[77.3141,28.48361],[77.31837,28.48737],[77.32683,28.49011],[77.3353,28.50222],[77.33611,28.50519],[77.34544,28.51325],[77.34737,28.52055],[77.33834,28.52283],[77.33455,28.525],[77.33017,28.53228],[77.32472,28.53492],[77.3209,28.5409],[77.31412,28.54455],[77.30379,28.55243],[77.29997,28.55976],[77.30145,28.56086],[77.30123,28.5627],[77.29709,28.56597],[77.29848,28.57122],[77.29215,28.5774],[77.29185,28.58029],[77.2896,28.58362],[77.28493,28.58678],[77.27811,28.58513],[77.27836,28.58801],[77.28081,28.58968],[77.27922,28.59859],[77.27391,28.60199],[77.26539,28.59577],[77.26729,28.59204],[77.2652,28.59166],[77.25738,28.60641]],[[77.2343,28.55526],[77.23086,28.55636],[77.23113,28.55907],[77.23745,28.55767],[77.24668,28.55896],[77.24585,28.55643],[77.24685,28.55352],[77.2343,28.55526]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"672","area_level":"District","area_name":"Arvalli","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.15844,23.49721],[73.15853,23.49763],[73.15823,23.49825],[73.15659,23.49865],[73.15599,23.49933],[73.15458,23.49879],[73.15434,23.49866],[73.15435,23.49846],[73.15445,23.49817],[73.15416,23.49755],[73.15321,23.49686],[73.15213,23.49582],[73.15204,23.49576],[73.15362,23.49561],[73.1538,23.49685],[73.15426,23.49685],[73.15528,23.49647],[73.15643,23.49593],[73.15718,23.4963],[73.15731,23.49622],[73.15779,23.49676],[73.15782,23.49697],[73.15844,23.49721]]],[[[73.35855,23.90977],[73.35731,23.91035],[73.34305,23.90026],[73.3422,23.89604],[73.34399,23.88722],[73.34218,23.88362],[73.3252,23.88884],[73.32109,23.8841],[73.31263,23.88101],[73.31135,23.88522],[73.30645,23.89034],[73.29863,23.89013],[73.29137,23.88619],[73.28677,23.87467],[73.28704,23.87201],[73.29824,23.86629],[73.30094,23.86367],[73.30025,23.86217],[73.30525,23.85914],[73.2991,23.84987],[73.29921,23.84547],[73.29646,23.83891],[73.29243,23.84004],[73.28879,23.8329],[73.28356,23.83311],[73.27751,23.83618],[73.27341,23.83934],[73.27233,23.84368],[73.26769,23.84804],[73.25754,23.85245],[73.24971,23.85817],[73.24163,23.87664],[73.24214,23.88666],[73.23841,23.88738],[73.23441,23.8851],[73.22696,23.88602],[73.22271,23.88343],[73.22617,23.87144],[73.22501,23.86622],[73.2263,23.8619],[73.22451,23.85913],[73.22539,23.85632],[73.22083,23.84815],[73.21627,23.84421],[73.21205,23.83591],[73.2039,23.82868],[73.20252,23.82371],[73.19789,23.82468],[73.19298,23.82229],[73.17917,23.82149],[73.16896,23.80967],[73.17733,23.80706],[73.1773,23.80432],[73.17525,23.80315],[73.18192,23.79985],[73.18232,23.7982],[73.18014,23.79216],[73.18993,23.79386],[73.19425,23.79166],[73.19289,23.78676],[73.18597,23.78074],[73.18442,23.77718],[73.17168,23.77815],[73.17034,23.77637],[73.16534,23.76583],[73.16461,23.75967],[73.16266,23.75931],[73.16022,23.74701],[73.15526,23.73605],[73.17388,23.73527],[73.175,23.7315],[73.17273,23.72922],[73.17232,23.7213],[73.17471,23.72317],[73.17631,23.7282],[73.19044,23.72589],[73.19025,23.72134],[73.19161,23.71984],[73.18847,23.71569],[73.19045,23.70913],[73.18908,23.7064],[73.18994,23.70123],[73.19296,23.70113],[73.19492,23.69549],[73.20953,23.68781],[73.21233,23.68431],[73.23047,23.69152],[73.23711,23.68499],[73.23696,23.67838],[73.23353,23.66718],[73.2425,23.66342],[73.24558,23.66368],[73.255,23.65848],[73.24963,23.64986],[73.24095,23.64674],[73.23836,23.64373],[73.24444,23.63213],[73.25,23.62935],[73.24489,23.62332],[73.24377,23.62491],[73.24458,23.63064],[73.24213,23.63332],[73.22935,23.63356],[73.22575,23.62819],[73.22661,23.61697],[73.2176,23.61197],[73.20884,23.61247],[73.20685,23.60089],[73.20384,23.59632],[73.20459,23.59211],[73.20696,23.58964],[73.20252,23.58284],[73.20169,23.57799],[73.19842,23.57983],[73.19301,23.57494],[73.19404,23.57017],[73.19618,23.56852],[73.19503,23.56531],[73.19317,23.56474],[73.19376,23.56042],[73.19677,23.55652],[73.19608,23.55442],[73.17913,23.55397],[73.17827,23.55049],[73.17217,23.55103],[73.16961,23.54806],[73.16132,23.54524],[73.16205,23.54313],[73.15976,23.53987],[73.16014,23.53792],[73.16333,23.53648],[73.16255,23.53426],[73.16631,23.5298],[73.16588,23.52655],[73.16834,23.52375],[73.17044,23.52442],[73.17245,23.52266],[73.16864,23.52128],[73.17137,23.51687],[73.17003,23.51692],[73.16647,23.50381],[73.16784,23.50016],[73.16297,23.49573],[73.15628,23.4821],[73.15538,23.4759],[73.1502,23.48083],[73.14859,23.47926],[73.13845,23.48164],[73.1305,23.47931],[73.12987,23.47257],[73.12531,23.47207],[73.12349,23.46819],[73.12028,23.46642],[73.12116,23.46344],[73.12499,23.4632],[73.12229,23.46314],[73.12273,23.46091],[73.12026,23.46131],[73.11697,23.45338],[73.12695,23.44153],[73.12303,23.43489],[73.12264,23.41668],[73.1296,23.42063],[73.13185,23.41902],[73.14068,23.42288],[73.14261,23.42036],[73.14126,23.41782],[73.14347,23.41752],[73.14403,23.41421],[73.1373,23.41126],[73.13591,23.4148],[73.12481,23.41442],[73.12484,23.41075],[73.13529,23.39595],[73.13101,23.37907],[73.12034,23.37397],[73.12036,23.3722],[73.1146,23.37131],[73.11107,23.37207],[73.10542,23.37645],[73.09218,23.37567],[73.09289,23.3842],[73.07508,23.37595],[73.07324,23.37292],[73.0874,23.36743],[73.08716,23.36394],[73.08948,23.36283],[73.08586,23.35789],[73.09298,23.35762],[73.097,23.35164],[73.10292,23.34853],[73.10055,23.34551],[73.10157,23.34113],[73.09996,23.33522],[73.1033,23.32462],[73.09815,23.31827],[73.09204,23.31501],[73.08636,23.31482],[73.08641,23.30935],[73.08057,23.3012],[73.07842,23.29291],[73.08056,23.28821],[73.08912,23.27998],[73.08816,23.27738],[73.09106,23.27529],[73.09048,23.2742],[73.08242,23.27074],[73.08147,23.26607],[73.07893,23.26372],[73.07261,23.26231],[73.06679,23.25795],[73.05419,23.26482],[73.05502,23.26765],[73.05058,23.27152],[73.05082,23.27301],[73.05446,23.27387],[73.05586,23.27579],[73.05364,23.28526],[73.04821,23.28228],[73.03913,23.28073],[73.03724,23.27872],[73.03259,23.27863],[73.02708,23.27552],[73.0227,23.27504],[73.02225,23.27642],[73.02046,23.27573],[73.01701,23.2783],[73.01545,23.27787],[72.99991,23.27026],[72.98971,23.25077],[72.98621,23.22804],[72.98145,23.22245],[72.98293,23.20906],[72.98477,23.20819],[72.98308,23.20716],[72.98364,23.2054],[72.98183,23.20546],[72.9817,23.20242],[72.98623,23.20062],[72.98037,23.19076],[72.97754,23.17838],[72.97834,23.17701],[72.98206,23.17695],[72.98221,23.17466],[72.98444,23.17486],[72.98315,23.17153],[72.981,23.17235],[72.97904,23.16971],[72.97355,23.16816],[72.97119,23.16356],[72.97566,23.15987],[72.9804,23.15938],[73.01091,23.16175],[73.01891,23.15988],[73.01976,23.16955],[73.0218,23.16935],[73.02312,23.16576],[73.02583,23.1652],[73.03222,23.16819],[73.03412,23.16498],[73.03346,23.1623],[73.03798,23.16158],[73.0445,23.16538],[73.06367,23.15897],[73.06979,23.15966],[73.07189,23.1651],[73.07516,23.16725],[73.08246,23.17076],[73.08634,23.16829],[73.09348,23.16842],[73.11511,23.18339],[73.11451,23.18497],[73.12068,23.18656],[73.12458,23.19674],[73.13189,23.20186],[73.13389,23.20572],[73.14589,23.19633],[73.15302,23.19225],[73.15549,23.19294],[73.15806,23.17318],[73.15258,23.17129],[73.15281,23.17004],[73.15075,23.16963],[73.15102,23.16716],[73.15345,23.16529],[73.16098,23.14935],[73.16689,23.14549],[73.16751,23.14241],[73.17152,23.13922],[73.17011,23.13574],[73.171,23.13454],[73.17603,23.13919],[73.17671,23.13782],[73.18267,23.14135],[73.18096,23.14354],[73.18378,23.14644],[73.18832,23.14643],[73.18737,23.14841],[73.18867,23.15006],[73.19024,23.1503],[73.1921,23.14495],[73.19527,23.14644],[73.1954,23.14503],[73.19741,23.14567],[73.19964,23.14375],[73.20034,23.14621],[73.20248,23.14576],[73.20371,23.14388],[73.20122,23.12526],[73.20585,23.11008],[73.20907,23.1076],[73.21762,23.10539],[73.22514,23.10553],[73.22498,23.10132],[73.22684,23.10131],[73.23189,23.0889],[73.229,23.08433],[73.23196,23.08622],[73.23705,23.08643],[73.24096,23.07061],[73.27354,23.05843],[73.27682,23.05879],[73.28297,23.06361],[73.29114,23.07604],[73.29892,23.08392],[73.30721,23.08588],[73.32603,23.08207],[73.32637,23.09201],[73.33004,23.09405],[73.3306,23.0987],[73.34074,23.1007],[73.34213,23.10381],[73.33943,23.1077],[73.34115,23.11065],[73.34002,23.11652],[73.33654,23.12203],[73.33593,23.12769],[73.33866,23.1306],[73.34728,23.13574],[73.35585,23.13851],[73.36391,23.13133],[73.37338,23.13857],[73.37382,23.14058],[73.3701,23.14348],[73.36915,23.1507],[73.37057,23.16721],[73.37546,23.16887],[73.37461,23.17147],[73.36065,23.17687],[73.35557,23.17686],[73.3505,23.18364],[73.34527,23.18067],[73.34227,23.18158],[73.345,23.18441],[73.34431,23.18669],[73.34738,23.18894],[73.34535,23.19084],[73.34488,23.19638],[73.34173,23.20009],[73.35146,23.20301],[73.35528,23.21042],[73.37461,23.21576],[73.38512,23.22089],[73.37415,23.23629],[73.37831,23.24069],[73.38574,23.24391],[73.38518,23.24495],[73.3923,23.25115],[73.41466,23.26573],[73.42151,23.26892],[73.42749,23.26963],[73.43696,23.27686],[73.44357,23.27752],[73.46219,23.28711],[73.47295,23.28847],[73.47603,23.28036],[73.47607,23.27661],[73.47399,23.27292],[73.47505,23.26855],[73.48649,23.27521],[73.49783,23.27758],[73.50442,23.28114],[73.51587,23.28142],[73.52486,23.28512],[73.53422,23.29198],[73.54023,23.30829],[73.54489,23.31194],[73.55416,23.31422],[73.5573,23.31748],[73.55791,23.32759],[73.56399,23.33635],[73.56396,23.34612],[73.57024,23.34862],[73.57588,23.35795],[73.58622,23.3651],[73.58748,23.37181],[73.59468,23.37953],[73.59388,23.38338],[73.61186,23.38915],[73.6123,23.39187],[73.61556,23.39445],[73.61539,23.39688],[73.62324,23.40069],[73.62244,23.40212],[73.62427,23.40268],[73.62568,23.40789],[73.63022,23.41365],[73.62894,23.41686],[73.6319,23.4213],[73.6313,23.42327],[73.62246,23.42887],[73.6203,23.43677],[73.62188,23.44124],[73.62765,23.4474],[73.6269,23.45024],[73.63432,23.46238],[73.63321,23.46922],[73.64033,23.48272],[73.63917,23.48708],[73.64072,23.49641],[73.64533,23.49769],[73.64962,23.49647],[73.65636,23.50746],[73.65532,23.5124],[73.65052,23.51855],[73.63307,23.52869],[73.63514,23.53836],[73.63311,23.55509],[73.63662,23.5646],[73.64058,23.56802],[73.64719,23.56606],[73.64968,23.5681],[73.64416,23.57226],[73.64761,23.57462],[73.64336,23.59437],[73.64503,23.59678],[73.64485,23.60411],[73.64898,23.60837],[73.65566,23.62129],[73.64067,23.62821],[73.62678,23.64187],[73.62072,23.64574],[73.61548,23.65212],[73.59818,23.65389],[73.57902,23.65261],[73.57266,23.65377],[73.56855,23.6529],[73.54647,23.62599],[73.53301,23.61955],[73.53118,23.61418],[73.52487,23.61184],[73.52308,23.6069],[73.50639,23.61903],[73.50346,23.61832],[73.5027,23.6228],[73.50379,23.62443],[73.49377,23.63234],[73.50573,23.63884],[73.50877,23.64439],[73.50582,23.64701],[73.49943,23.64682],[73.49951,23.64873],[73.49661,23.64916],[73.50388,23.65672],[73.50841,23.69549],[73.50518,23.69881],[73.50739,23.70304],[73.49066,23.7069],[73.48141,23.7042],[73.47352,23.70523],[73.47142,23.71973],[73.46037,23.72731],[73.45674,23.73352],[73.45011,23.73336],[73.44921,23.73481],[73.44668,23.7444],[73.44869,23.7511],[73.44773,23.75287],[73.43658,23.75696],[73.43189,23.75652],[73.43063,23.75804],[73.43115,23.76125],[73.42702,23.76009],[73.42433,23.76164],[73.41928,23.76951],[73.41641,23.77032],[73.41839,23.77626],[73.41289,23.7794],[73.40858,23.77917],[73.40025,23.78506],[73.39919,23.78312],[73.39446,23.78293],[73.38624,23.77666],[73.38253,23.76805],[73.37027,23.76547],[73.37152,23.77049],[73.36724,23.77437],[73.36656,23.77704],[73.36377,23.77815],[73.36333,23.78223],[73.35606,23.78502],[73.35184,23.7914],[73.35773,23.79429],[73.36756,23.81324],[73.36811,23.8226],[73.36638,23.82218],[73.36508,23.82418],[73.36855,23.83188],[73.36739,23.83998],[73.35783,23.84661],[73.35384,23.85285],[73.35607,23.85457],[73.35572,23.85923],[73.35813,23.86194],[73.36112,23.8727],[73.36878,23.87963],[73.37101,23.89114],[73.37771,23.89615],[73.37863,23.90453],[73.37665,23.90624],[73.36529,23.90515],[73.36417,23.9094],[73.35855,23.90977]],[[73.42352,23.28066],[73.42259,23.28449],[73.43489,23.28803],[73.43554,23.28263],[73.42425,23.27849],[73.42352,23.28066]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"673","area_level":"District","area_name":"Morbi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[71.1172,23.21252],[71.11134,23.21692],[71.10928,23.22229],[71.10796,23.21746],[71.09815,23.2113],[71.08484,23.19668],[71.08843,23.19312],[71.08142,23.1939],[71.06618,23.182],[71.06549,23.17719],[71.05884,23.17323],[71.04151,23.16774],[71.02996,23.16749],[71.00665,23.17648],[71.00137,23.17421],[71.00892,23.17173],[71.00151,23.16923],[70.99506,23.16878],[70.99205,23.17098],[70.98382,23.1717],[70.98522,23.16687],[70.9807,23.1597],[70.97283,23.16026],[70.97074,23.15834],[70.96891,23.1596],[70.96868,23.1575],[70.96492,23.15508],[70.96273,23.15804],[70.96463,23.16118],[70.96476,23.16543],[70.96011,23.16737],[70.96436,23.17143],[70.96435,23.17438],[70.95414,23.17076],[70.95105,23.16715],[70.95156,23.15445],[70.95273,23.15037],[70.95539,23.15056],[70.96008,23.1449],[70.9535,23.14633],[70.95351,23.14471],[70.95656,23.1419],[70.9644,23.14252],[70.96594,23.13943],[70.96976,23.13895],[70.96135,23.13686],[70.95332,23.14173],[70.95868,23.13587],[70.9544,23.13616],[70.95439,23.13382],[70.95188,23.13466],[70.94998,23.13149],[70.94644,23.13249],[70.94791,23.13578],[70.94598,23.14013],[70.93998,23.14158],[70.93251,23.13723],[70.93018,23.13785],[70.93962,23.14396],[70.94049,23.14658],[70.94481,23.15016],[70.94324,23.15686],[70.93718,23.16212],[70.92634,23.16142],[70.91438,23.16405],[70.89349,23.16226],[70.89057,23.15803],[70.89067,23.15179],[70.89232,23.14939],[70.88978,23.14589],[70.89013,23.14063],[70.893,23.13942],[70.90015,23.14358],[70.90084,23.13719],[70.90509,23.13507],[70.89746,23.13149],[70.89513,23.13319],[70.89027,23.13136],[70.88993,23.1341],[70.88745,23.1357],[70.88102,23.13506],[70.8815,23.12449],[70.8757,23.12167],[70.87402,23.12247],[70.87332,23.12614],[70.87669,23.13139],[70.87487,23.13755],[70.86405,23.1398],[70.84901,23.1483],[70.83468,23.15124],[70.82973,23.15774],[70.82579,23.15331],[70.82728,23.14969],[70.83025,23.14752],[70.84807,23.142],[70.85639,23.13433],[70.85822,23.12971],[70.85703,23.12536],[70.84852,23.1201],[70.84777,23.11696],[70.84226,23.11724],[70.84243,23.10912],[70.84083,23.10889],[70.83801,23.11326],[70.83576,23.11187],[70.83537,23.10372],[70.83844,23.09198],[70.83676,23.09174],[70.83167,23.09635],[70.83367,23.08835],[70.82796,23.07972],[70.82588,23.08118],[70.8252,23.09214],[70.8219,23.09478],[70.82365,23.09842],[70.8295,23.10021],[70.82975,23.10537],[70.82315,23.11037],[70.82777,23.11193],[70.82698,23.11414],[70.82935,23.11512],[70.82801,23.1165],[70.82956,23.11865],[70.82863,23.1217],[70.83359,23.12171],[70.82966,23.12599],[70.83394,23.12646],[70.83448,23.12841],[70.82717,23.13392],[70.82187,23.13269],[70.81531,23.13685],[70.81575,23.1383],[70.8205,23.13942],[70.82021,23.14139],[70.81713,23.14166],[70.81667,23.14819],[70.813,23.14801],[70.8173,23.15416],[70.81503,23.15504],[70.81857,23.1586],[70.81607,23.16457],[70.81228,23.1605],[70.80936,23.16459],[70.80768,23.16095],[70.80284,23.15906],[70.79625,23.15929],[70.79544,23.15345],[70.78718,23.15069],[70.78523,23.15211],[70.78528,23.15571],[70.79379,23.16168],[70.79098,23.16581],[70.78777,23.16599],[70.78414,23.1591],[70.78238,23.15837],[70.77601,23.16266],[70.77267,23.16286],[70.77386,23.16804],[70.76457,23.16604],[70.76563,23.16436],[70.75996,23.16045],[70.76587,23.15351],[70.76544,23.14538],[70.76096,23.14461],[70.75664,23.14169],[70.74837,23.1462],[70.69367,23.12014],[70.66309,23.09728],[70.65826,23.09567],[70.63855,23.08117],[70.63139,23.06939],[70.62933,23.06247],[70.62215,23.06029],[70.60969,23.06359],[70.59712,23.06094],[70.59373,23.05498],[70.60026,23.0423],[70.60216,23.03425],[70.58753,23.03057],[70.57938,23.03518],[70.57221,23.03714],[70.5617,23.029],[70.54722,22.99687],[70.54166,22.95958],[70.53785,22.96475],[70.52725,22.96348],[70.52314,22.96467],[70.5124,22.96014],[70.49066,22.96686],[70.47921,22.97486],[70.4752,22.97471],[70.46259,22.966],[70.44561,22.9665],[70.43984,22.96835],[70.43266,22.96706],[70.43925,22.96402],[70.45781,22.949],[70.46874,22.94438],[70.4803,22.9371],[70.49231,22.93417],[70.50885,22.93711],[70.51386,22.93651],[70.51945,22.93501],[70.52028,22.93215],[70.52581,22.93173],[70.53965,22.9255],[70.53243,22.90809],[70.53049,22.90824],[70.53013,22.91234],[70.52233,22.91476],[70.51309,22.90581],[70.49999,22.89811],[70.49109,22.88989],[70.49436,22.88006],[70.4855,22.88155],[70.48187,22.8713],[70.47717,22.86723],[70.47966,22.86185],[70.47793,22.86056],[70.48773,22.85737],[70.49929,22.84334],[70.51391,22.84899],[70.51982,22.84397],[70.51396,22.83644],[70.51099,22.82605],[70.51044,22.81804],[70.51389,22.81809],[70.51699,22.81231],[70.52314,22.81344],[70.52329,22.81134],[70.52942,22.81373],[70.53247,22.80867],[70.53837,22.812],[70.53946,22.80994],[70.54228,22.81034],[70.54169,22.80673],[70.54408,22.80493],[70.55297,22.80771],[70.55201,22.79315],[70.54884,22.79473],[70.54721,22.79206],[70.55165,22.79176],[70.5506,22.79073],[70.55157,22.7897],[70.55737,22.79068],[70.55978,22.7767],[70.56156,22.77269],[70.56455,22.7714],[70.56821,22.76198],[70.5633,22.74516],[70.56641,22.73672],[70.56568,22.73169],[70.56736,22.72779],[70.57128,22.72986],[70.57277,22.72704],[70.57715,22.72759],[70.57947,22.72173],[70.5922,22.724],[70.60068,22.72826],[70.60223,22.71914],[70.6125,22.69445],[70.61019,22.68969],[70.61579,22.6725],[70.616,22.66075],[70.61406,22.65838],[70.61607,22.65081],[70.60829,22.64033],[70.58457,22.63439],[70.57478,22.63388],[70.57193,22.61384],[70.5649,22.60288],[70.56975,22.60167],[70.58154,22.60299],[70.58197,22.60991],[70.58468,22.61332],[70.58798,22.60911],[70.59275,22.60693],[70.60385,22.60554],[70.60303,22.6001],[70.60589,22.59133],[70.6016,22.58973],[70.6051,22.58355],[70.61015,22.58619],[70.61994,22.58177],[70.62847,22.58088],[70.63121,22.57921],[70.63186,22.57579],[70.63431,22.57591],[70.64075,22.58046],[70.64004,22.56626],[70.63556,22.55831],[70.62835,22.55684],[70.63143,22.55319],[70.62602,22.5492],[70.6238,22.54365],[70.62379,22.53546],[70.61923,22.53256],[70.62275,22.52571],[70.62519,22.51023],[70.64411,22.51648],[70.6456,22.51246],[70.64142,22.51182],[70.64335,22.51119],[70.64288,22.50747],[70.64758,22.5069],[70.64753,22.50412],[70.65175,22.50343],[70.6515,22.50121],[70.65539,22.50069],[70.65911,22.50277],[70.65494,22.49136],[70.65643,22.48982],[70.66033,22.49194],[70.66225,22.48384],[70.66429,22.48146],[70.66679,22.48151],[70.66734,22.47947],[70.66664,22.47314],[70.66152,22.47358],[70.65858,22.47553],[70.65693,22.47445],[70.68008,22.46103],[70.682,22.45817],[70.68333,22.44916],[70.68762,22.45131],[70.68583,22.45433],[70.69027,22.45733],[70.68968,22.4589],[70.69241,22.46284],[70.69158,22.46439],[70.69444,22.4648],[70.69802,22.46896],[70.6964,22.47636],[70.69049,22.47921],[70.68995,22.48136],[70.68594,22.48087],[70.6863,22.48321],[70.70474,22.48508],[70.70401,22.47093],[70.7081,22.47002],[70.70937,22.4674],[70.71141,22.46808],[70.71667,22.46564],[70.71988,22.46232],[70.72789,22.46227],[70.73101,22.463],[70.73286,22.47452],[70.73937,22.48006],[70.74613,22.48268],[70.74704,22.48455],[70.75443,22.48343],[70.7549,22.49196],[70.77006,22.49866],[70.78158,22.50128],[70.78485,22.49843],[70.78295,22.49224],[70.78934,22.48473],[70.79217,22.48428],[70.7947,22.47985],[70.79706,22.48057],[70.80026,22.4745],[70.81225,22.47698],[70.81436,22.48288],[70.8146,22.47723],[70.81746,22.4766],[70.82254,22.47178],[70.82182,22.47028],[70.82959,22.46941],[70.83606,22.47109],[70.84329,22.46441],[70.84828,22.46423],[70.84821,22.4601],[70.87191,22.45959],[70.87385,22.4542],[70.87985,22.45483],[70.88033,22.45235],[70.89149,22.44292],[70.90494,22.44475],[70.91555,22.44041],[70.92011,22.4423],[70.92175,22.43892],[70.92827,22.44106],[70.93396,22.43714],[70.93618,22.42746],[70.9388,22.42607],[70.94142,22.42488],[70.94885,22.42874],[70.95357,22.4245],[70.96373,22.42257],[70.98081,22.4149],[70.99981,22.4264],[71.01945,22.43503],[71.02046,22.4378],[71.02266,22.4377],[71.02406,22.44028],[71.02704,22.44143],[71.03075,22.44009],[71.03951,22.44079],[71.04123,22.43878],[71.04495,22.43911],[71.04964,22.43447],[71.0526,22.43486],[71.0536,22.43809],[71.05807,22.43734],[71.06463,22.42776],[71.07224,22.42305],[71.07475,22.41699],[71.07636,22.40458],[71.08448,22.40171],[71.08722,22.39725],[71.09444,22.3994],[71.09849,22.4046],[71.09766,22.41673],[71.09929,22.42415],[71.10085,22.42539],[71.10052,22.43243],[71.10531,22.43594],[71.12624,22.43773],[71.11911,22.44536],[71.11732,22.45134],[71.13106,22.46091],[71.12948,22.46771],[71.13025,22.48088],[71.13801,22.4814],[71.1455,22.47807],[71.15734,22.47948],[71.16417,22.48398],[71.16297,22.48869],[71.16508,22.49335],[71.16388,22.50449],[71.14419,22.52482],[71.13429,22.54587],[71.11583,22.5476],[71.10867,22.53472],[71.10744,22.5279],[71.10051,22.51219],[71.09413,22.51344],[71.09167,22.51847],[71.08576,22.5209],[71.08475,22.52401],[71.07959,22.52478],[71.07041,22.52984],[71.06769,22.5345],[71.06168,22.53746],[71.06619,22.54233],[71.0727,22.54362],[71.0704,22.54968],[71.07575,22.55693],[71.09441,22.56336],[71.10221,22.58318],[71.09972,22.58578],[71.09477,22.58715],[71.09322,22.58987],[71.09337,22.60616],[71.09707,22.60297],[71.1027,22.60267],[71.09908,22.60807],[71.09665,22.61852],[71.10194,22.63089],[71.10446,22.6316],[71.10993,22.64237],[71.12015,22.63616],[71.12935,22.63499],[71.12679,22.64336],[71.12802,22.65258],[71.13733,22.65758],[71.14018,22.66104],[71.13995,22.66316],[71.14356,22.66331],[71.15795,22.6793],[71.16028,22.67806],[71.16256,22.68392],[71.16385,22.70255],[71.14794,22.7126],[71.14615,22.72043],[71.12583,22.7426],[71.12288,22.75684],[71.12558,22.76068],[71.13301,22.76196],[71.12916,22.76814],[71.12489,22.78439],[71.12619,22.79179],[71.12506,22.79791],[71.11773,22.80151],[71.11357,22.8085],[71.10423,22.814],[71.09945,22.82318],[71.10586,22.82491],[71.12418,22.82433],[71.14507,22.82746],[71.14025,22.83948],[71.13904,22.86235],[71.16136,22.86165],[71.16233,22.85699],[71.17309,22.84161],[71.17862,22.83681],[71.18367,22.82593],[71.18765,22.82669],[71.18643,22.82929],[71.18898,22.83022],[71.1898,22.82696],[71.20714,22.83051],[71.20886,22.82695],[71.21496,22.82535],[71.21485,22.82375],[71.22745,22.82234],[71.23994,22.82593],[71.24405,22.83233],[71.2544,22.83685],[71.25432,22.84019],[71.24913,22.84975],[71.24517,22.86277],[71.25519,22.86636],[71.26242,22.87233],[71.26328,22.88482],[71.26605,22.88537],[71.26559,22.89428],[71.27056,22.90586],[71.28421,22.91051],[71.29223,22.91907],[71.28978,22.934],[71.29398,22.93386],[71.29773,22.9413],[71.29975,22.94191],[71.2981,22.94495],[71.29968,22.94448],[71.30065,22.94727],[71.3028,22.94782],[71.30008,22.95904],[71.2936,22.97392],[71.30032,22.97989],[71.3165,22.98726],[71.31386,22.99945],[71.31473,23.01402],[71.29548,23.01853],[71.29405,23.03042],[71.29815,23.04467],[71.30226,23.04486],[71.30165,23.04851],[71.29763,23.04935],[71.29134,23.06461],[71.29185,23.06801],[71.29759,23.07506],[71.30612,23.07512],[71.30696,23.08253],[71.31157,23.08184],[71.32606,23.08508],[71.33129,23.08671],[71.33663,23.09196],[71.33998,23.09227],[71.34185,23.09628],[71.34746,23.09842],[71.34389,23.10338],[71.34548,23.10573],[71.34273,23.11518],[71.35428,23.11735],[71.35903,23.11919],[71.35961,23.12089],[71.35498,23.12669],[71.35325,23.1335],[71.34886,23.13593],[71.34558,23.13589],[71.33531,23.13344],[71.33728,23.12613],[71.32736,23.12516],[71.30666,23.11411],[71.28771,23.11785],[71.27617,23.11835],[71.27489,23.12712],[71.26987,23.13801],[71.271,23.14358],[71.26937,23.15591],[71.25,23.1528],[71.24658,23.14798],[71.24732,23.15183],[71.24553,23.15282],[71.24504,23.15003],[71.24442,23.15208],[71.24325,23.15037],[71.24257,23.15199],[71.24109,23.15096],[71.24041,23.15584],[71.23899,23.15506],[71.2384,23.15048],[71.23576,23.15108],[71.23692,23.14893],[71.23349,23.14923],[71.2375,23.1481],[71.23555,23.1463],[71.23623,23.14328],[71.23459,23.14157],[71.23333,23.14118],[71.23265,23.14323],[71.22669,23.14348],[71.22215,23.14699],[71.21889,23.14275],[71.20839,23.13798],[71.20982,23.13973],[71.20877,23.14129],[71.21504,23.14339],[71.21615,23.1473],[71.22431,23.159],[71.22362,23.16169],[71.21672,23.16438],[71.21308,23.17053],[71.21172,23.17722],[71.21087,23.17634],[71.20645,23.18265],[71.20023,23.18314],[71.19606,23.18612],[71.18725,23.18689],[71.18376,23.18191],[71.18276,23.18582],[71.18144,23.18709],[71.17822,23.18587],[71.17633,23.18914],[71.1679,23.18324],[71.16615,23.17885],[71.16331,23.17734],[71.16141,23.18642],[71.15782,23.19032],[71.15876,23.19191],[71.15696,23.1923],[71.15585,23.19743],[71.15143,23.20284],[71.14873,23.2025],[71.14736,23.19918],[71.14498,23.20153],[71.1462,23.20319],[71.13036,23.21002],[71.12656,23.21007],[71.12682,23.20812],[71.12253,23.20564],[71.12448,23.20979],[71.12068,23.21047],[71.12005,23.2131],[71.1172,23.21252]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"674","area_level":"District","area_name":"Devbhumi Dwarka","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[69.33941,22.38597],[69.33719,22.38642],[69.33632,22.38684],[69.33513,22.38662],[69.33492,22.38585],[69.33435,22.38506],[69.33367,22.38458],[69.33295,22.38468],[69.33187,22.38432],[69.33181,22.38331],[69.33001,22.38228],[69.32893,22.3821],[69.32845,22.38259],[69.32776,22.38289],[69.32476,22.38241],[69.32336,22.38129],[69.32377,22.38081],[69.32389,22.38028],[69.32504,22.37874],[69.32835,22.37508],[69.32905,22.37469],[69.33013,22.37453],[69.33082,22.37478],[69.33137,22.37455],[69.33203,22.37385],[69.3327,22.37282],[69.33333,22.37411],[69.33398,22.37637],[69.33707,22.37779],[69.33806,22.37936],[69.33982,22.38039],[69.33916,22.38314],[69.33976,22.3844],[69.33941,22.38597]]],[[[69.62893,22.45885],[69.62516,22.4587],[69.6212,22.45734],[69.62091,22.45679],[69.61665,22.45442],[69.61609,22.45296],[69.6143,22.45197],[69.60327,22.44866],[69.59792,22.44617],[69.59549,22.44445],[69.5908,22.4397],[69.58991,22.43732],[69.58993,22.43565],[69.59154,22.43227],[69.59035,22.43072],[69.59522,22.42631],[69.5964,22.42444],[69.60223,22.42165],[69.60681,22.41717],[69.6365,22.40572],[69.63817,22.40741],[69.63878,22.40919],[69.64163,22.41273],[69.64247,22.415],[69.64604,22.41704],[69.64849,22.42041],[69.6554,22.42385],[69.65683,22.42538],[69.65681,22.42694],[69.6541,22.43025],[69.6512,22.43044],[69.65049,22.43124],[69.64786,22.43676],[69.6473,22.43961],[69.64745,22.44171],[69.6462,22.44455],[69.64112,22.44902],[69.63926,22.4497],[69.63562,22.45241],[69.62893,22.45885]]],[[[69.13752,22.47622],[69.13695,22.47669],[69.1332,22.47651],[69.13098,22.47563],[69.12683,22.47498],[69.11869,22.4708],[69.11777,22.47077],[69.1137,22.46814],[69.1082,22.46618],[69.10414,22.46533],[69.09397,22.46091],[69.09276,22.45793],[69.09322,22.45578],[69.09439,22.45378],[69.09462,22.45007],[69.09329,22.44934],[69.09298,22.44856],[69.09313,22.44806],[69.09388,22.4479],[69.09417,22.44684],[69.09303,22.44673],[69.09439,22.44584],[69.0957,22.44576],[69.09649,22.44425],[69.0964,22.44344],[69.09598,22.44336],[69.09556,22.44401],[69.09559,22.44329],[69.09517,22.44309],[69.0963,22.44273],[69.09646,22.44117],[69.09563,22.43994],[69.09282,22.43955],[69.09147,22.4382],[69.09091,22.43826],[69.09087,22.43576],[69.08973,22.43398],[69.0868,22.43286],[69.08567,22.43197],[69.0863,22.43055],[69.08545,22.42775],[69.0857,22.42706],[69.08456,22.42545],[69.08408,22.42293],[69.08445,22.42216],[69.08556,22.42159],[69.08579,22.42096],[69.08726,22.42137],[69.08837,22.42237],[69.08934,22.4257],[69.09025,22.42716],[69.09276,22.42945],[69.09527,22.43105],[69.09876,22.43126],[69.09897,22.43219],[69.10042,22.43301],[69.10363,22.4328],[69.10751,22.43688],[69.10834,22.43697],[69.10695,22.44013],[69.10654,22.44443],[69.10764,22.44841],[69.10878,22.4487],[69.1078,22.45028],[69.10778,22.45131],[69.10895,22.45127],[69.10982,22.45268],[69.10928,22.45261],[69.10934,22.45389],[69.10869,22.45423],[69.10864,22.4557],[69.10822,22.45585],[69.10731,22.45925],[69.10779,22.46046],[69.11056,22.46327],[69.11165,22.46424],[69.11401,22.46522],[69.11542,22.46679],[69.11663,22.46658],[69.12283,22.46806],[69.12785,22.46536],[69.12881,22.46568],[69.13065,22.46544],[69.13179,22.46649],[69.13242,22.46645],[69.13544,22.46484],[69.1385,22.46239],[69.13992,22.46376],[69.14206,22.46307],[69.14292,22.46066],[69.14157,22.4548],[69.14273,22.45195],[69.14372,22.4507],[69.14474,22.45045],[69.14379,22.45237],[69.14274,22.45723],[69.14297,22.45825],[69.14627,22.46248],[69.14702,22.46588],[69.15016,22.46831],[69.15024,22.46884],[69.14868,22.47051],[69.14787,22.47214],[69.14801,22.47328],[69.14158,22.47676],[69.13752,22.47622]]],[[[69.06957,22.47842],[69.06812,22.48138],[69.06152,22.47178],[69.05513,22.46644],[69.02926,22.45374],[69.00631,22.43959],[69.00088,22.43007],[68.99173,22.41863],[68.98448,22.41344],[68.97839,22.40398],[68.9809,22.40224],[68.98954,22.40458],[68.99562,22.40483],[68.99693,22.40362],[68.99666,22.40497],[68.99951,22.40648],[69.0,22.4041],[68.99637,22.4016],[68.99208,22.4027],[68.98177,22.4016],[68.97732,22.40374],[68.96814,22.38896],[68.96516,22.37819],[68.95738,22.36827],[68.95819,22.35155],[68.95449,22.34589],[68.95614,22.3387],[68.95402,22.33461],[68.95037,22.332],[68.94232,22.33214],[68.93576,22.31183],[68.93998,22.2945],[68.95181,22.27172],[68.95176,22.26071],[68.95423,22.25695],[68.95364,22.24521],[68.95837,22.24055],[68.95822,22.2381],[68.96174,22.23833],[68.96475,22.23465],[68.97019,22.23819],[68.97376,22.23654],[68.97219,22.23517],[68.97281,22.23255],[68.97079,22.23692],[68.96586,22.23408],[68.9812,22.2123],[69.01815,22.17226],[69.05469,22.12947],[69.0919,22.0952],[69.10962,22.07101],[69.18667,21.98886],[69.19236,21.9834],[69.19715,21.98139],[69.21655,21.95751],[69.22413,21.95213],[69.23855,21.93587],[69.2442,21.93356],[69.28366,21.89364],[69.29126,21.88946],[69.31595,21.86834],[69.3169,21.86779],[69.31828,21.87208],[69.31972,21.87127],[69.3174,21.86661],[69.32977,21.85546],[69.35396,21.83789],[69.36481,21.83456],[69.37128,21.83018],[69.37482,21.83428],[69.37573,21.84206],[69.38075,21.84943],[69.38443,21.86193],[69.38378,21.86989],[69.38566,21.87812],[69.38909,21.87941],[69.38911,21.88238],[69.39233,21.88563],[69.39515,21.88572],[69.3984,21.88889],[69.39824,21.8923],[69.40283,21.894],[69.42232,21.87947],[69.43043,21.87939],[69.44764,21.85303],[69.46071,21.85255],[69.48725,21.85477],[69.48878,21.85687],[69.48334,21.87536],[69.48594,21.87562],[69.48671,21.89689],[69.5,21.89502],[69.50445,21.90407],[69.50684,21.90098],[69.51804,21.89999],[69.52787,21.89303],[69.53082,21.89259],[69.53534,21.89485],[69.53837,21.89704],[69.53603,21.90096],[69.538,21.91215],[69.54074,21.91659],[69.54108,21.92493],[69.54817,21.93499],[69.55399,21.93871],[69.5714,21.94672],[69.60757,21.94689],[69.6115,21.94826],[69.61823,21.94193],[69.62099,21.94253],[69.62299,21.92949],[69.62707,21.92089],[69.63622,21.91957],[69.65446,21.92386],[69.65755,21.92543],[69.64987,21.95576],[69.66758,21.95917],[69.68528,21.95924],[69.68495,21.96481],[69.68827,21.9794],[69.71987,21.97395],[69.72294,21.95591],[69.72674,21.95528],[69.7224,21.94184],[69.72522,21.94081],[69.72487,21.93788],[69.72018,21.93744],[69.72021,21.93515],[69.70698,21.9348],[69.70763,21.92567],[69.70104,21.92254],[69.69629,21.91696],[69.68808,21.91246],[69.68196,21.92793],[69.66656,21.92568],[69.67117,21.91193],[69.67224,21.90373],[69.6642,21.90132],[69.6672,21.88742],[69.66194,21.88158],[69.65607,21.86975],[69.63385,21.87558],[69.63091,21.86727],[69.61505,21.87006],[69.61408,21.86499],[69.6089,21.86435],[69.60947,21.86217],[69.6078,21.86183],[69.60998,21.85463],[69.60862,21.83123],[69.61343,21.83096],[69.61232,21.80854],[69.61536,21.809],[69.6163,21.80329],[69.62608,21.8053],[69.62639,21.80395],[69.63193,21.80479],[69.63316,21.81668],[69.63022,21.82962],[69.63319,21.82965],[69.63917,21.83761],[69.64643,21.83953],[69.65643,21.83825],[69.66473,21.81238],[69.67521,21.81333],[69.67351,21.81713],[69.67387,21.82247],[69.68464,21.82291],[69.68987,21.81897],[69.69056,21.81113],[69.69731,21.80966],[69.70057,21.79642],[69.71085,21.79925],[69.71125,21.79389],[69.71244,21.79379],[69.71892,21.79784],[69.72676,21.80778],[69.72657,21.82173],[69.73243,21.82527],[69.73849,21.83424],[69.74742,21.83137],[69.76236,21.82222],[69.77527,21.82262],[69.77665,21.82445],[69.79157,21.82712],[69.80176,21.82655],[69.81499,21.8243],[69.82196,21.8209],[69.8337,21.81824],[69.83507,21.81456],[69.83907,21.81498],[69.83894,21.81848],[69.84243,21.82005],[69.85295,21.82185],[69.85546,21.82028],[69.85581,21.82227],[69.86206,21.82268],[69.8669,21.82775],[69.86702,21.82602],[69.86969,21.82637],[69.86937,21.82819],[69.87414,21.83012],[69.87426,21.83326],[69.88183,21.83276],[69.88504,21.83532],[69.88483,21.83306],[69.88666,21.83323],[69.88731,21.83092],[69.88925,21.83323],[69.89405,21.83259],[69.8969,21.83521],[69.89781,21.8384],[69.89643,21.84088],[69.90966,21.84096],[69.91099,21.84818],[69.91524,21.8511],[69.9113,21.86348],[69.91189,21.86904],[69.91466,21.87042],[69.91169,21.87488],[69.91169,21.87756],[69.91507,21.87791],[69.91599,21.88312],[69.92199,21.88496],[69.93602,21.89329],[69.93599,21.89458],[69.92588,21.89513],[69.9245,21.89921],[69.91905,21.89987],[69.92114,21.90213],[69.92067,21.9059],[69.91908,21.90576],[69.92177,21.91372],[69.91906,21.91681],[69.92035,21.91698],[69.91993,21.92004],[69.91819,21.92141],[69.91999,21.92692],[69.91783,21.92599],[69.91524,21.92783],[69.91563,21.93219],[69.91919,21.93399],[69.91728,21.94006],[69.92159,21.94189],[69.92448,21.93736],[69.92478,21.93885],[69.92815,21.93941],[69.92583,21.94456],[69.92712,21.94617],[69.92947,21.94532],[69.93022,21.94695],[69.92673,21.95239],[69.93065,21.95351],[69.92935,21.95557],[69.9336,21.96085],[69.92307,21.96663],[69.91581,21.96447],[69.90291,21.96535],[69.90224,21.96966],[69.89927,21.97394],[69.89562,21.97828],[69.89116,21.97994],[69.89047,21.98917],[69.88662,21.99288],[69.88689,21.99465],[69.87553,22.00061],[69.87587,22.0047],[69.87467,22.00531],[69.87688,22.01064],[69.8705,22.01126],[69.86822,22.01691],[69.86577,22.01772],[69.85817,22.01643],[69.85618,22.01751],[69.85477,22.01567],[69.85348,22.01979],[69.85547,22.02274],[69.86,22.02256],[69.85817,22.02495],[69.86372,22.02508],[69.86298,22.02679],[69.86723,22.03055],[69.86715,22.0369],[69.8705,22.03809],[69.87008,22.04111],[69.86875,22.04313],[69.86684,22.0426],[69.8656,22.04622],[69.86282,22.04315],[69.85733,22.04407],[69.85905,22.05335],[69.85678,22.06101],[69.85926,22.06175],[69.85783,22.0712],[69.85464,22.07151],[69.85402,22.06893],[69.85241,22.07204],[69.8489,22.0715],[69.84722,22.06952],[69.83721,22.06911],[69.82505,22.07749],[69.81932,22.07868],[69.81085,22.07553],[69.80694,22.07194],[69.80584,22.08068],[69.8109,22.08404],[69.81066,22.08633],[69.81591,22.09486],[69.81069,22.09866],[69.81135,22.10307],[69.81574,22.10618],[69.8151,22.1127],[69.81679,22.1143],[69.81472,22.11639],[69.81537,22.11778],[69.81607,22.11583],[69.81738,22.11668],[69.81787,22.12096],[69.82101,22.11879],[69.8211,22.11596],[69.82244,22.11648],[69.82277,22.12069],[69.81216,22.1279],[69.80966,22.13173],[69.81316,22.15052],[69.81179,22.17276],[69.81295,22.17635],[69.80785,22.18431],[69.80409,22.18584],[69.80264,22.18931],[69.8067,22.19299],[69.81005,22.20345],[69.80874,22.20325],[69.80871,22.20693],[69.80575,22.2065],[69.79977,22.21338],[69.79977,22.21555],[69.796,22.21485],[69.79328,22.21792],[69.79066,22.21765],[69.79131,22.22092],[69.78273,22.21889],[69.76954,22.22006],[69.7644,22.23003],[69.76232,22.22995],[69.76036,22.23597],[69.75545,22.23732],[69.75403,22.2434],[69.75589,22.24539],[69.76176,22.24573],[69.75987,22.2477],[69.76184,22.24833],[69.76169,22.25146],[69.75805,22.25205],[69.75829,22.25462],[69.75326,22.25787],[69.75107,22.26799],[69.74859,22.27078],[69.74818,22.2768],[69.74709,22.27662],[69.73264,22.30811],[69.75391,22.32031],[69.74902,22.33395],[69.74486,22.33385],[69.74007,22.34054],[69.73812,22.35237],[69.73933,22.35531],[69.7371,22.35621],[69.73606,22.36353],[69.73777,22.36405],[69.7362,22.36802],[69.72745,22.36904],[69.72535,22.3868],[69.7255,22.38816],[69.72903,22.38768],[69.72589,22.3947],[69.72859,22.39639],[69.73734,22.39578],[69.73761,22.39785],[69.73915,22.39789],[69.7371,22.4011],[69.73473,22.40166],[69.7369,22.40265],[69.73415,22.40602],[69.74234,22.40699],[69.74474,22.41297],[69.75085,22.41189],[69.7547,22.41837],[69.75562,22.42486],[69.75472,22.43016],[69.74604,22.42805],[69.73962,22.43217],[69.74514,22.4316],[69.74766,22.43313],[69.743,22.44191],[69.7409,22.44132],[69.74013,22.44312],[69.73723,22.44345],[69.73283,22.44283],[69.73479,22.44451],[69.74023,22.44456],[69.74184,22.44672],[69.73538,22.448],[69.73548,22.4498],[69.74141,22.44844],[69.74354,22.45118],[69.74045,22.45325],[69.74366,22.45262],[69.74367,22.45894],[69.74076,22.46174],[69.74024,22.46527],[69.73446,22.47021],[69.7363,22.47694],[69.73301,22.48238],[69.73651,22.4846],[69.73069,22.48455],[69.71815,22.47594],[69.71327,22.47505],[69.71231,22.47102],[69.70431,22.46515],[69.69656,22.45366],[69.69462,22.44269],[69.69896,22.43621],[69.7054,22.43372],[69.70019,22.42341],[69.69912,22.41452],[69.69559,22.4129],[69.70063,22.41151],[69.70173,22.40683],[69.69974,22.40003],[69.70216,22.39869],[69.70055,22.39625],[69.69423,22.39503],[69.67788,22.39727],[69.67349,22.39433],[69.66974,22.3972],[69.66983,22.39492],[69.66688,22.39311],[69.66091,22.39624],[69.66324,22.3933],[69.66354,22.38832],[69.66137,22.38769],[69.65925,22.37945],[69.65594,22.37559],[69.65569,22.37049],[69.65779,22.36622],[69.65537,22.35957],[69.64921,22.35722],[69.63545,22.35818],[69.62316,22.36487],[69.62113,22.37183],[69.62122,22.36761],[69.61681,22.36851],[69.61522,22.36466],[69.61893,22.35785],[69.61644,22.35318],[69.61838,22.35136],[69.61598,22.34764],[69.61735,22.34542],[69.61361,22.34493],[69.61312,22.34954],[69.6094,22.35255],[69.60725,22.34683],[69.60346,22.34574],[69.60028,22.34739],[69.59766,22.34616],[69.5914,22.35966],[69.58881,22.36199],[69.58564,22.35984],[69.58296,22.36114],[69.57958,22.36736],[69.57437,22.36748],[69.56975,22.36331],[69.56934,22.3593],[69.56706,22.35656],[69.56459,22.35522],[69.56132,22.35584],[69.56231,22.3602],[69.5601,22.36368],[69.56025,22.36716],[69.55952,22.36621],[69.55749,22.36876],[69.54789,22.37254],[69.54345,22.37697],[69.54044,22.37721],[69.53761,22.37595],[69.53732,22.37274],[69.53478,22.37088],[69.53302,22.37218],[69.52799,22.37198],[69.52325,22.36979],[69.51587,22.37306],[69.49948,22.36633],[69.49026,22.3527],[69.48891,22.34656],[69.49028,22.33744],[69.4829,22.33391],[69.47819,22.33428],[69.47126,22.33232],[69.47012,22.33043],[69.46518,22.32856],[69.46068,22.32854],[69.45585,22.33218],[69.4434,22.33031],[69.44262,22.32858],[69.4408,22.32888],[69.43593,22.32174],[69.43356,22.32023],[69.43101,22.32089],[69.42319,22.31601],[69.39203,22.31595],[69.38116,22.31879],[69.37898,22.32099],[69.37607,22.31918],[69.36343,22.31714],[69.35673,22.31963],[69.3528,22.32389],[69.35403,22.3258],[69.35175,22.32685],[69.34178,22.32496],[69.33703,22.32803],[69.33273,22.32783],[69.33128,22.32548],[69.33239,22.32204],[69.33594,22.32264],[69.34007,22.31303],[69.33605,22.30507],[69.33055,22.30212],[69.33146,22.30131],[69.32787,22.30354],[69.32424,22.30284],[69.32553,22.30013],[69.32243,22.29256],[69.31691,22.28953],[69.31438,22.28982],[69.31248,22.28705],[69.29823,22.28784],[69.29542,22.2841],[69.2928,22.28679],[69.29563,22.28108],[69.29381,22.27709],[69.27986,22.26989],[69.28015,22.25932],[69.28383,22.25458],[69.27995,22.25935],[69.27951,22.26994],[69.25282,22.26644],[69.25,22.26458],[69.24981,22.26116],[69.24486,22.25905],[69.24462,22.25629],[69.24297,22.25854],[69.24052,22.25837],[69.2395,22.25678],[69.24074,22.25533],[69.236,22.25034],[69.2336,22.24992],[69.23509,22.24086],[69.23363,22.23511],[69.23431,22.23132],[69.2366,22.22966],[69.23759,22.22271],[69.22184,22.21646],[69.22031,22.21463],[69.22226,22.21195],[69.21282,22.21035],[69.2115,22.21946],[69.19519,22.22533],[69.19434,22.23398],[69.1903,22.24364],[69.18464,22.2402],[69.19007,22.23485],[69.18169,22.2325],[69.17915,22.22814],[69.18046,22.22372],[69.17853,22.21284],[69.17656,22.21498],[69.16911,22.21524],[69.16756,22.21245],[69.16922,22.20824],[69.16716,22.20399],[69.16122,22.20231],[69.15697,22.19547],[69.14816,22.19502],[69.1364,22.19555],[69.13467,22.20222],[69.13943,22.21098],[69.13379,22.22264],[69.13951,22.22543],[69.14836,22.23638],[69.15394,22.24873],[69.15031,22.25125],[69.14848,22.25756],[69.15592,22.26279],[69.15573,22.26711],[69.15406,22.26695],[69.15458,22.26946],[69.15736,22.2724],[69.16073,22.28425],[69.15844,22.28657],[69.16045,22.29591],[69.15756,22.29862],[69.15722,22.3026],[69.16007,22.30164],[69.16064,22.30656],[69.1568,22.31599],[69.16497,22.32334],[69.16926,22.33349],[69.16789,22.33877],[69.16943,22.34255],[69.16689,22.34464],[69.16409,22.34353],[69.16478,22.34658],[69.16336,22.34861],[69.17,22.35037],[69.17252,22.34958],[69.17286,22.34759],[69.17539,22.34788],[69.17329,22.35145],[69.1774,22.35615],[69.1718,22.35519],[69.17093,22.35269],[69.16907,22.35416],[69.17039,22.35471],[69.17121,22.35985],[69.17364,22.36046],[69.17262,22.36301],[69.1761,22.36514],[69.17704,22.36743],[69.17536,22.36775],[69.17885,22.36909],[69.18025,22.36778],[69.18093,22.37066],[69.179,22.37213],[69.17693,22.36966],[69.17373,22.37078],[69.17246,22.36893],[69.16948,22.36868],[69.17065,22.37186],[69.16797,22.37066],[69.16787,22.37325],[69.17222,22.37322],[69.17273,22.37503],[69.17423,22.37454],[69.17332,22.37725],[69.18156,22.37938],[69.18436,22.3844],[69.18504,22.38334],[69.19016,22.38672],[69.18855,22.38744],[69.18972,22.38868],[69.19276,22.38666],[69.19753,22.38783],[69.19683,22.39098],[69.1998,22.39072],[69.19707,22.39462],[69.20092,22.40136],[69.19694,22.40185],[69.19784,22.40058],[69.19529,22.39958],[69.19568,22.40093],[69.19266,22.4011],[69.19681,22.40318],[69.19184,22.403],[69.19042,22.40036],[69.18768,22.40252],[69.18904,22.40641],[69.19046,22.40689],[69.19129,22.40507],[69.18988,22.40862],[69.19177,22.41004],[69.19663,22.40372],[69.191,22.41396],[69.19188,22.41115],[69.18978,22.41046],[69.18742,22.41329],[69.18952,22.41599],[69.19133,22.4156],[69.19483,22.42185],[69.18251,22.42083],[69.17583,22.42296],[69.17334,22.42069],[69.17605,22.42259],[69.18247,22.41961],[69.17996,22.41822],[69.17755,22.41349],[69.17548,22.41561],[69.17483,22.41398],[69.17236,22.41367],[69.17119,22.40942],[69.16796,22.41077],[69.16885,22.40748],[69.16439,22.4064],[69.16336,22.40419],[69.1569,22.4056],[69.1571,22.40805],[69.16032,22.4109],[69.15629,22.40867],[69.16305,22.41196],[69.16037,22.41212],[69.15625,22.41038],[69.15111,22.40471],[69.15146,22.39976],[69.14917,22.40029],[69.14733,22.39778],[69.14505,22.39781],[69.14376,22.39917],[69.14652,22.40001],[69.14543,22.40126],[69.14201,22.40048],[69.14296,22.39845],[69.14159,22.39806],[69.1385,22.4016],[69.13607,22.39832],[69.13317,22.39746],[69.13306,22.39543],[69.1303,22.39509],[69.13234,22.39294],[69.13015,22.39234],[69.12912,22.39006],[69.13088,22.3886],[69.1294,22.38835],[69.12985,22.38532],[69.12761,22.38362],[69.12738,22.37874],[69.12117,22.37564],[69.12827,22.38662],[69.12798,22.39511],[69.11138,22.40649],[69.11049,22.40994],[69.09959,22.40824],[69.09831,22.40391],[69.10215,22.40238],[69.10337,22.39893],[69.09745,22.39348],[69.094,22.39445],[69.08793,22.3923],[69.086,22.39338],[69.08401,22.38925],[69.08185,22.3882],[69.07815,22.38791],[69.07777,22.38925],[69.07079,22.38793],[69.07009,22.3853],[69.06924,22.38774],[69.06496,22.38934],[69.06083,22.38333],[69.06197,22.38755],[69.05762,22.38744],[69.06272,22.39092],[69.0559,22.39311],[69.05489,22.3918],[69.05648,22.39082],[69.05332,22.38861],[69.0527,22.39069],[69.05512,22.394],[69.05383,22.39688],[69.05119,22.39612],[69.04901,22.39789],[69.04668,22.3945],[69.04555,22.39539],[69.04505,22.39239],[69.04335,22.39336],[69.04353,22.39061],[69.04235,22.39356],[69.04059,22.39218],[69.03968,22.39387],[69.04003,22.38856],[69.03955,22.39119],[69.03787,22.38983],[69.03836,22.3923],[69.03549,22.39027],[69.03397,22.39397],[69.03935,22.39973],[69.03744,22.4026],[69.03974,22.40399],[69.03914,22.40905],[69.04163,22.41096],[69.03998,22.41092],[69.04062,22.41371],[69.04682,22.4232],[69.04437,22.4267],[69.04458,22.43033],[69.04121,22.43209],[69.04358,22.43697],[69.03804,22.44285],[69.03947,22.44571],[69.0469,22.44798],[69.05215,22.44525],[69.04784,22.44264],[69.0459,22.44382],[69.04615,22.44065],[69.04957,22.43768],[69.06598,22.45303],[69.07124,22.45263],[69.07434,22.45439],[69.07641,22.46548],[69.08361,22.47498],[69.07847,22.4798],[69.06957,22.47842]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"675","area_level":"District","area_name":"Gir Somnath","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[70.58555,21.16028],[70.57687,21.16955],[70.56628,21.16445],[70.56424,21.1548],[70.54922,21.15406],[70.55178,21.13437],[70.52584,21.1346],[70.51882,21.14128],[70.50237,21.14134],[70.50058,21.12903],[70.50082,21.1053],[70.50679,21.09327],[70.50196,21.09485],[70.48398,21.0938],[70.48316,21.09691],[70.47703,21.09875],[70.46877,21.09789],[70.46393,21.09342],[70.45696,21.0915],[70.45054,21.09253],[70.4479,21.09107],[70.44744,21.07969],[70.44956,21.07774],[70.45217,21.07902],[70.45397,21.07636],[70.45033,21.06287],[70.45573,21.05819],[70.45585,21.05452],[70.46363,21.05414],[70.46201,21.05014],[70.44671,21.03605],[70.44141,21.03908],[70.43545,21.03718],[70.43609,21.04372],[70.43275,21.04631],[70.43225,21.04871],[70.42156,21.04118],[70.42186,21.04492],[70.41073,21.04805],[70.4084,21.05165],[70.40627,21.05173],[70.40697,21.05448],[70.40075,21.05337],[70.39972,21.04976],[70.40078,21.04677],[70.39406,21.03745],[70.39537,21.02519],[70.39299,21.01879],[70.38881,21.01532],[70.37888,21.01503],[70.37383,21.0083],[70.36618,21.00885],[70.36272,21.01078],[70.36226,21.01267],[70.36754,21.01316],[70.37046,21.01794],[70.36827,21.0182],[70.36572,21.02176],[70.36598,21.02428],[70.36446,21.02265],[70.36308,21.02444],[70.35951,21.0233],[70.36046,21.02672],[70.35746,21.02751],[70.35555,21.02597],[70.35837,21.03148],[70.35084,21.03434],[70.34864,21.03386],[70.34287,21.02713],[70.33995,21.0276],[70.33792,21.02587],[70.32842,21.01471],[70.31663,21.01428],[70.30308,21.00622],[70.29353,21.01955],[70.27698,21.01378],[70.27673,21.01762],[70.27506,21.01807],[70.27231,21.01393],[70.25577,21.00727],[70.24621,20.99589],[70.23799,20.99233],[70.25683,20.97323],[70.27742,20.95966],[70.29399,20.94617],[70.30809,20.93883],[70.3228,20.92604],[70.33883,20.91748],[70.34622,20.91542],[70.35751,20.9045],[70.36425,20.90037],[70.37008,20.89974],[70.37335,20.89648],[70.36976,20.90083],[70.37123,20.90056],[70.37065,20.90206],[70.37364,20.90345],[70.37362,20.90208],[70.37509,20.90296],[70.37815,20.90009],[70.38545,20.8974],[70.3865,20.89524],[70.39574,20.89151],[70.41369,20.87547],[70.42475,20.86224],[70.43125,20.86058],[70.43772,20.8529],[70.4427,20.85349],[70.44708,20.85043],[70.44742,20.84841],[70.45222,20.84808],[70.46834,20.83903],[70.47394,20.8397],[70.48022,20.83552],[70.48572,20.83521],[70.48763,20.82988],[70.49018,20.82783],[70.5,20.82256],[70.5084,20.82098],[70.5114,20.81738],[70.51615,20.81677],[70.51967,20.81452],[70.51972,20.81266],[70.52299,20.81254],[70.52344,20.81055],[70.52677,20.81091],[70.53454,20.80738],[70.53714,20.80383],[70.54127,20.80322],[70.54199,20.80183],[70.54823,20.80432],[70.55183,20.80342],[70.56231,20.79245],[70.57039,20.79238],[70.57471,20.79072],[70.58567,20.78159],[70.59082,20.78119],[70.59983,20.77744],[70.60949,20.77642],[70.61188,20.77431],[70.61092,20.77252],[70.61216,20.77111],[70.62113,20.77064],[70.62793,20.76608],[70.6346,20.76456],[70.6336,20.76648],[70.63487,20.76708],[70.64287,20.76293],[70.64583,20.76344],[70.64603,20.76104],[70.64915,20.76126],[70.65727,20.75567],[70.66289,20.75776],[70.66301,20.76097],[70.66682,20.76097],[70.66849,20.76017],[70.66817,20.75877],[70.67447,20.75655],[70.68526,20.74809],[70.69462,20.74405],[70.70385,20.7366],[70.70743,20.73628],[70.71404,20.73163],[70.71543,20.73244],[70.72152,20.7297],[70.72464,20.72682],[70.72967,20.72697],[70.73355,20.72253],[70.73797,20.72173],[70.74234,20.71854],[70.74961,20.71758],[70.75609,20.72197],[70.76622,20.72024],[70.77261,20.71589],[70.7885,20.71099],[70.80285,20.70035],[70.80755,20.70028],[70.82158,20.69345],[70.82179,20.69136],[70.82813,20.69011],[70.83083,20.69145],[70.83899,20.6901],[70.83487,20.69705],[70.83275,20.69743],[70.83862,20.70355],[70.84414,20.70647],[70.85901,20.70611],[70.86739,20.70355],[70.87301,20.70448],[70.87422,20.70641],[70.87139,20.70711],[70.87079,20.70887],[70.87213,20.71835],[70.87807,20.72854],[70.88405,20.73144],[70.89387,20.73239],[70.91011,20.73684],[70.91586,20.74203],[70.91949,20.7431],[70.92429,20.74066],[70.9266,20.73706],[70.93172,20.73689],[70.93851,20.73243],[70.96041,20.73672],[70.96435,20.72961],[70.97402,20.72787],[70.98128,20.72269],[70.98448,20.73225],[70.99307,20.73578],[70.99949,20.74223],[71.00231,20.74182],[71.00807,20.73694],[71.01544,20.73814],[71.02896,20.7371],[71.04307,20.73442],[71.04482,20.73196],[71.04383,20.73106],[71.05061,20.73042],[71.06058,20.73606],[71.06461,20.73343],[71.06689,20.73567],[71.07182,20.73459],[71.07896,20.73676],[71.08105,20.73871],[71.08141,20.74043],[71.07969,20.74181],[71.08109,20.74259],[71.07301,20.74332],[71.07477,20.7435],[71.07414,20.74505],[71.07649,20.74354],[71.07903,20.75067],[71.08651,20.75555],[71.11165,20.75732],[71.11744,20.75424],[71.12025,20.75554],[71.12336,20.75465],[71.12797,20.75774],[71.13497,20.75616],[71.14585,20.7578],[71.14639,20.77134],[71.15096,20.77156],[71.15615,20.77771],[71.1607,20.7799],[71.18458,20.78398],[71.20354,20.78956],[71.20302,20.79135],[71.20833,20.79374],[71.20723,20.79498],[71.20404,20.79431],[71.20276,20.79665],[71.20383,20.79883],[71.20804,20.80365],[71.2119,20.80454],[71.21561,20.81082],[71.22357,20.8159],[71.22357,20.81782],[71.22068,20.82012],[71.22131,20.82702],[71.21515,20.83173],[71.21207,20.84032],[71.21372,20.84235],[71.21245,20.84509],[71.2149,20.85038],[71.20813,20.86186],[71.20481,20.8738],[71.18855,20.87337],[71.18543,20.87881],[71.17957,20.88039],[71.17654,20.88759],[71.18223,20.89266],[71.19094,20.89574],[71.19326,20.9021],[71.1776,20.91903],[71.18444,20.92607],[71.18969,20.92281],[71.1963,20.92466],[71.19677,20.92317],[71.20044,20.92433],[71.20157,20.92667],[71.20543,20.92701],[71.20568,20.93108],[71.20974,20.93564],[71.21806,20.95602],[71.21981,20.95712],[71.19357,20.97894],[71.18923,20.97545],[71.18752,20.9679],[71.17841,20.96471],[71.17335,20.96699],[71.16896,20.96017],[71.16513,20.962],[71.16145,20.95963],[71.15534,20.95962],[71.15149,20.95663],[71.15154,20.95462],[71.14516,20.95519],[71.14743,20.95183],[71.13623,20.95025],[71.13704,20.95421],[71.13191,20.96009],[71.12455,20.9622],[71.12144,20.96604],[71.12357,20.96939],[71.12315,20.97595],[71.12589,20.981],[71.12521,20.98514],[71.12977,20.98917],[71.13143,20.98843],[71.13282,20.98979],[71.1294,20.9933],[71.13038,21.00226],[71.12675,21.00317],[71.12501,21.00898],[71.11443,21.01115],[71.10705,21.01587],[71.08918,21.01698],[71.09141,21.01961],[71.09065,21.02586],[71.08494,21.0279],[71.08578,21.03212],[71.09038,21.03625],[71.07934,21.04014],[71.07692,21.03507],[71.07559,21.02462],[71.07369,21.02086],[71.06834,21.01797],[71.06834,21.00858],[71.0735,21.00106],[71.07193,20.9877],[71.06674,20.98917],[71.0663,20.98709],[71.06347,20.98983],[71.05243,20.99143],[71.04593,20.98802],[71.04486,20.98378],[71.04596,20.98172],[71.04896,20.98092],[71.04176,20.97472],[71.04299,20.97265],[71.0361,20.96965],[71.03699,20.96576],[71.02349,20.96841],[71.02087,20.96258],[71.01553,20.9598],[71.01411,20.95681],[71.008,20.95834],[71.0,20.95599],[71.00089,20.95038],[71.00274,20.95036],[71.00157,20.94846],[70.99543,20.94734],[70.99259,20.94912],[70.98887,20.9485],[70.99096,20.96195],[70.98498,20.9654],[70.98143,20.96456],[70.97857,20.96945],[70.98363,20.9818],[70.97901,20.98444],[70.96761,20.98634],[70.96644,20.99083],[70.9619,20.99523],[70.95853,20.99424],[70.95728,20.99577],[70.95319,20.99283],[70.93418,20.98828],[70.93076,20.98031],[70.93129,20.97686],[70.92177,20.97335],[70.9177,20.97437],[70.90967,20.96958],[70.9076,20.96687],[70.90702,20.96239],[70.91021,20.95933],[70.90998,20.95714],[70.90213,20.95952],[70.90241,20.96364],[70.90056,20.96255],[70.90099,20.96014],[70.89922,20.95795],[70.89298,20.96325],[70.87196,20.93285],[70.86192,20.95745],[70.86092,20.96699],[70.86753,20.96588],[70.87368,20.96745],[70.86081,20.97419],[70.8591,20.9791],[70.86149,20.97886],[70.86101,20.98094],[70.85744,20.97954],[70.85646,20.97061],[70.83902,20.97176],[70.84031,20.97704],[70.83644,20.98332],[70.83806,20.98395],[70.83775,20.98906],[70.84094,20.99174],[70.84084,20.99408],[70.83759,20.99434],[70.83348,20.98804],[70.818,20.99637],[70.81532,20.99693],[70.81211,20.99474],[70.80252,20.99941],[70.80482,20.99648],[70.80338,20.99465],[70.78693,20.99224],[70.78252,20.99008],[70.78228,20.99205],[70.77685,20.99573],[70.78031,21.00227],[70.7772,21.00124],[70.76868,21.00367],[70.76569,21.0026],[70.76727,20.99995],[70.76605,20.99804],[70.76823,20.99687],[70.76723,20.99589],[70.76304,20.99718],[70.76433,20.98854],[70.76291,20.9847],[70.76116,20.98682],[70.75938,20.9865],[70.75911,20.98256],[70.75692,20.98028],[70.75153,20.97749],[70.74856,20.97822],[70.74421,20.97626],[70.74919,20.96786],[70.75433,20.9646],[70.75332,20.96351],[70.74633,20.96806],[70.73606,20.97722],[70.72663,20.99478],[70.71806,20.99437],[70.71826,20.99845],[70.71551,20.99863],[70.71252,21.00739],[70.70789,21.00945],[70.70797,21.01132],[70.71426,21.01097],[70.71538,21.01862],[70.71367,21.02296],[70.72064,21.03399],[70.72455,21.03708],[70.72557,21.04141],[70.72263,21.04488],[70.72393,21.05404],[70.72269,21.06132],[70.71547,21.05961],[70.70861,21.05236],[70.71183,21.06196],[70.70921,21.06389],[70.70694,21.07254],[70.70205,21.07649],[70.69944,21.08241],[70.6938,21.0823],[70.69436,21.08094],[70.69197,21.08044],[70.69405,21.07788],[70.68308,21.07565],[70.67557,21.07626],[70.66936,21.0745],[70.66554,21.0768],[70.66588,21.07878],[70.67003,21.07818],[70.67169,21.08077],[70.67309,21.08896],[70.67033,21.09096],[70.671,21.09464],[70.66069,21.09923],[70.66599,21.10435],[70.66504,21.10598],[70.66632,21.11129],[70.65521,21.11891],[70.64988,21.12067],[70.6493,21.11393],[70.6425,21.10786],[70.64069,21.10746],[70.64021,21.1113],[70.63799,21.11109],[70.63759,21.10904],[70.63195,21.10777],[70.62631,21.11193],[70.62151,21.11004],[70.62162,21.11403],[70.61879,21.11618],[70.61653,21.12172],[70.62016,21.12601],[70.62005,21.12969],[70.62269,21.13555],[70.61826,21.13777],[70.61748,21.1433],[70.61377,21.14628],[70.61647,21.14793],[70.61478,21.14969],[70.61616,21.15303],[70.61331,21.15356],[70.60825,21.15103],[70.59966,21.15628],[70.59743,21.15372],[70.59774,21.15142],[70.59524,21.14975],[70.59009,21.15014],[70.59155,21.15496],[70.58873,21.15575],[70.58784,21.16056],[70.58555,21.16028]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"676","area_level":"District","area_name":"Botad","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[71.70487,21.90121],[71.70319,21.90139],[71.7022,21.90027],[71.70195,21.89868],[71.70299,21.89348],[71.70131,21.89328],[71.70134,21.88466],[71.69705,21.88459],[71.69708,21.88339],[71.69763,21.88356],[71.69745,21.88225],[71.69684,21.88267],[71.69623,21.88193],[71.69291,21.88213],[71.69294,21.87855],[71.69323,21.87797],[71.69477,21.87679],[71.6954,21.87558],[71.69409,21.87374],[71.69487,21.87239],[71.69461,21.87139],[71.69519,21.87092],[71.69587,21.86959],[71.69608,21.86796],[71.69718,21.86705],[71.69676,21.86583],[71.69695,21.86477],[71.69772,21.8632],[71.71001,21.86483],[71.71744,21.86624],[71.72778,21.86764],[71.72786,21.88008],[71.7253,21.89057],[71.72242,21.89528],[71.72058,21.89906],[71.71108,21.90158],[71.70487,21.90121]]],[[[71.85333,22.04932],[71.85351,22.04973],[71.85362,22.05017],[71.85381,22.05054],[71.85392,22.051],[71.85222,22.05075],[71.85236,22.05028],[71.85239,22.04982],[71.85246,22.04939],[71.8524,22.04894],[71.8524,22.04861],[71.85297,22.04863],[71.85333,22.04932]]],[[[71.67131,22.38649],[71.64972,22.40248],[71.64111,22.38704],[71.6357,22.38054],[71.62633,22.38297],[71.62618,22.35445],[71.62986,22.34401],[71.61221,22.33924],[71.60176,22.33992],[71.60266,22.34581],[71.60151,22.35137],[71.59212,22.35461],[71.59224,22.34751],[71.5824,22.34737],[71.58275,22.34148],[71.58861,22.3399],[71.58854,22.33325],[71.58308,22.32307],[71.57939,22.32024],[71.56912,22.32261],[71.56507,22.34203],[71.55703,22.34089],[71.53914,22.34475],[71.53323,22.34414],[71.52951,22.34266],[71.51623,22.3271],[71.51023,22.32304],[71.50473,22.31283],[71.4954,22.30401],[71.48935,22.3007],[71.47807,22.29962],[71.45786,22.29199],[71.44585,22.28939],[71.4468,22.27548],[71.44332,22.27333],[71.44343,22.27068],[71.43746,22.2613],[71.44266,22.26015],[71.44299,22.25833],[71.45162,22.25185],[71.45512,22.25511],[71.46067,22.25596],[71.46407,22.246],[71.4602,22.23526],[71.46163,22.23046],[71.43491,22.2192],[71.437,22.20879],[71.43347,22.20815],[71.43499,22.20585],[71.44913,22.21071],[71.45046,22.2031],[71.47195,22.19361],[71.47766,22.1856],[71.4859,22.18699],[71.48516,22.16793],[71.47631,22.14593],[71.47638,22.13867],[71.49403,22.13547],[71.50918,22.11186],[71.50459,22.10987],[71.50006,22.10329],[71.50271,22.08375],[71.50207,22.07446],[71.49859,22.07494],[71.49832,22.06683],[71.50054,22.06665],[71.50047,22.05412],[71.48807,22.05529],[71.49051,22.04872],[71.48868,22.04642],[71.4781,22.04223],[71.4775,22.03949],[71.47298,22.03744],[71.46145,22.0358],[71.45917,22.03214],[71.461,22.0287],[71.45861,22.01971],[71.46143,22.01394],[71.46482,22.01272],[71.4664,22.00659],[71.46222,22.00364],[71.46257,22.00216],[71.45549,22.00202],[71.44862,21.99833],[71.44512,22.00059],[71.44125,22.00061],[71.44002,21.99861],[71.43752,21.99944],[71.43488,21.99739],[71.42617,21.99669],[71.42317,21.99048],[71.41762,21.99025],[71.39257,21.98062],[71.39071,21.97078],[71.39317,21.96691],[71.39354,21.96229],[71.3984,21.95456],[71.40511,21.94906],[71.40935,21.95022],[71.41405,21.94595],[71.4188,21.94491],[71.44242,21.95281],[71.44797,21.95152],[71.45065,21.94717],[71.45013,21.94257],[71.45188,21.9408],[71.45546,21.94194],[71.45922,21.93989],[71.4582,21.93758],[71.46159,21.93156],[71.46372,21.93158],[71.46707,21.92821],[71.46219,21.91257],[71.45979,21.90951],[71.46046,21.89642],[71.45377,21.89878],[71.44798,21.90783],[71.43971,21.90824],[71.43404,21.90608],[71.42468,21.91143],[71.41774,21.90429],[71.41804,21.89598],[71.42385,21.89099],[71.42289,21.88676],[71.41702,21.88685],[71.4163,21.88287],[71.41765,21.88242],[71.41668,21.87656],[71.41799,21.87606],[71.4184,21.87829],[71.42331,21.87752],[71.42452,21.87875],[71.42192,21.87937],[71.42382,21.88578],[71.42605,21.8852],[71.42572,21.87802],[71.43817,21.87645],[71.44,21.87129],[71.44319,21.87126],[71.44523,21.8751],[71.44864,21.87522],[71.44945,21.87079],[71.45352,21.87086],[71.45467,21.86616],[71.44948,21.86498],[71.44774,21.8518],[71.4594,21.84575],[71.45773,21.83954],[71.45935,21.83909],[71.45855,21.83147],[71.45582,21.82937],[71.45549,21.82629],[71.4703,21.80008],[71.48911,21.80409],[71.48924,21.80561],[71.49474,21.80502],[71.49471,21.80306],[71.49953,21.80333],[71.5071,21.79331],[71.51037,21.79338],[71.51048,21.78663],[71.51623,21.7798],[71.5345,21.77689],[71.53976,21.7744],[71.54324,21.77019],[71.54457,21.76173],[71.55447,21.74734],[71.56627,21.74095],[71.57502,21.74188],[71.57597,21.738],[71.58633,21.7393],[71.5872,21.73679],[71.59708,21.73218],[71.60184,21.72682],[71.59986,21.72182],[71.59736,21.72048],[71.59887,21.71286],[71.59614,21.71161],[71.59538,21.70663],[71.5896,21.70647],[71.59319,21.69887],[71.59251,21.69721],[71.60561,21.69107],[71.61199,21.69278],[71.61395,21.69104],[71.61581,21.6916],[71.6157,21.69415],[71.62195,21.70218],[71.6391,21.70308],[71.63924,21.70753],[71.6334,21.72112],[71.63435,21.72347],[71.63079,21.72645],[71.63098,21.72901],[71.62006,21.72917],[71.6171,21.73105],[71.61267,21.73768],[71.61194,21.74485],[71.6186,21.74732],[71.61854,21.75163],[71.62004,21.7522],[71.62562,21.75348],[71.63246,21.7526],[71.63024,21.76076],[71.63543,21.76895],[71.63499,21.77531],[71.63312,21.77451],[71.62609,21.77714],[71.6126,21.77694],[71.60984,21.77942],[71.59882,21.78145],[71.59895,21.79673],[71.60012,21.79701],[71.6017,21.81239],[71.60464,21.81244],[71.60606,21.81661],[71.61746,21.81892],[71.61889,21.82168],[71.6171,21.83379],[71.64111,21.83349],[71.64386,21.83716],[71.64674,21.83703],[71.64836,21.84069],[71.65322,21.84093],[71.6537,21.84364],[71.66446,21.84646],[71.66445,21.84974],[71.66624,21.85001],[71.66624,21.85498],[71.66374,21.85956],[71.66355,21.86574],[71.67164,21.86595],[71.67498,21.86886],[71.68385,21.8704],[71.68154,21.89255],[71.68529,21.89672],[71.68512,21.89898],[71.69011,21.90188],[71.69047,21.90944],[71.6879,21.91022],[71.68623,21.91562],[71.67996,21.92212],[71.67537,21.93104],[71.67597,21.94383],[71.68122,21.94319],[71.68933,21.94571],[71.69104,21.94347],[71.6942,21.95121],[71.70021,21.9526],[71.70847,21.96984],[71.71339,21.97289],[71.71127,21.9806],[71.71622,21.98612],[71.72162,21.98883],[71.72387,21.99444],[71.73214,21.99576],[71.73562,21.99825],[71.73495,22.01049],[71.74063,22.01],[71.74068,22.01121],[71.75603,22.01305],[71.75632,22.01168],[71.75871,22.0117],[71.76044,22.0064],[71.76637,22.00701],[71.77686,22.01173],[71.78201,22.00787],[71.78894,22.00772],[71.79325,22.00941],[71.79384,22.02188],[71.80502,22.02229],[71.81687,22.01822],[71.82968,22.01802],[71.8297,22.01427],[71.84181,22.01409],[71.86214,22.00949],[71.86755,22.00957],[71.86833,22.01641],[71.87065,22.01634],[71.87343,22.02334],[71.87819,22.02397],[71.87425,22.02772],[71.87219,22.03555],[71.86798,22.03675],[71.86705,22.04546],[71.86404,22.04465],[71.86159,22.04937],[71.85923,22.04962],[71.85709,22.05276],[71.85554,22.04808],[71.8526,22.0482],[71.85031,22.04541],[71.84098,22.04975],[71.84057,22.05397],[71.83122,22.05326],[71.82923,22.05727],[71.83161,22.06235],[71.83972,22.06666],[71.84017,22.06027],[71.84741,22.06169],[71.86334,22.05773],[71.86239,22.06271],[71.8644,22.06285],[71.8683,22.07026],[71.86988,22.06981],[71.87357,22.08137],[71.88296,22.08091],[71.88572,22.08424],[71.89186,22.08535],[71.89322,22.1051],[71.90454,22.1038],[71.90434,22.10581],[71.91002,22.10555],[71.9104,22.1071],[71.91583,22.10862],[71.92103,22.13032],[71.93091,22.12508],[71.93294,22.12619],[71.9565,22.12043],[71.96323,22.11639],[72.02082,22.10451],[72.03211,22.12121],[72.0388,22.14095],[72.03727,22.14099],[72.04137,22.14824],[72.03399,22.18011],[72.01822,22.19478],[72.02618,22.2114],[72.03119,22.24474],[72.01391,22.24143],[72.00882,22.24627],[71.99664,22.25074],[71.97919,22.25132],[71.97798,22.25007],[71.97044,22.25263],[71.94336,22.25297],[71.94115,22.25522],[71.9383,22.2546],[71.93351,22.26767],[71.93411,22.27113],[71.92713,22.27127],[71.91374,22.25845],[71.9083,22.25524],[71.90424,22.25904],[71.89768,22.25822],[71.89761,22.25578],[71.88793,22.25328],[71.88031,22.25392],[71.87863,22.26194],[71.87289,22.26272],[71.87074,22.26632],[71.86904,22.26596],[71.87005,22.26757],[71.86909,22.27317],[71.8659,22.28189],[71.85492,22.28537],[71.85447,22.29009],[71.85205,22.29055],[71.8536,22.29683],[71.85581,22.29677],[71.85917,22.30773],[71.85751,22.30819],[71.85911,22.30947],[71.85814,22.31247],[71.85655,22.31189],[71.85767,22.31675],[71.85247,22.31689],[71.85019,22.31425],[71.84756,22.31495],[71.84866,22.3189],[71.84056,22.32182],[71.84134,22.32448],[71.84003,22.32615],[71.84695,22.35761],[71.83172,22.36079],[71.83563,22.38036],[71.83693,22.39641],[71.8297,22.39473],[71.81478,22.39524],[71.79956,22.39259],[71.79632,22.39625],[71.78913,22.38917],[71.793,22.36383],[71.76367,22.36274],[71.75724,22.36122],[71.74128,22.36375],[71.73547,22.38252],[71.72088,22.38231],[71.71149,22.39928],[71.6917,22.39236],[71.6908,22.3895],[71.68436,22.39062],[71.67398,22.38448],[71.67131,22.38649]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"677","area_level":"District","area_name":"Kra Daadi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.55841,27.60343],[93.56385,27.60258],[93.56813,27.59936],[93.58396,27.60603],[93.58652,27.60856],[93.59865,27.61148],[93.60097,27.61562],[93.6065,27.61782],[93.6125,27.62822],[93.6204,27.6282],[93.62295,27.63228],[93.64496,27.64622],[93.65779,27.64738],[93.6616,27.64639],[93.67183,27.66019],[93.6766,27.66286],[93.67696,27.66604],[93.68089,27.66864],[93.70605,27.66916],[93.71378,27.67898],[93.71457,27.68134],[93.70849,27.68946],[93.70702,27.69393],[93.70074,27.69797],[93.70059,27.70324],[93.70172,27.71208],[93.7049,27.72086],[93.70429,27.72788],[93.71783,27.74067],[93.71958,27.75451],[93.69933,27.7583],[93.68608,27.75514],[93.68933,27.76001],[93.68569,27.76733],[93.67347,27.77822],[93.66978,27.7801],[93.66498,27.77982],[93.65421,27.79527],[93.6577,27.79753],[93.65749,27.80512],[93.65977,27.80756],[93.65984,27.81092],[93.67481,27.82095],[93.67482,27.82671],[93.68045,27.82816],[93.68135,27.8316],[93.68554,27.83524],[93.68371,27.84154],[93.6837,27.85211],[93.67965,27.86269],[93.69046,27.8976],[93.68764,27.91044],[93.68444,27.91643],[93.68848,27.9236],[93.68897,27.92919],[93.69503,27.93226],[93.69665,27.93833],[93.70131,27.93513],[93.71596,27.93472],[93.72217,27.93071],[93.72659,27.921],[93.72994,27.90043],[93.74113,27.89713],[93.75927,27.90098],[93.76119,27.90007],[93.77143,27.90592],[93.77186,27.90859],[93.77682,27.9127],[93.78156,27.91055],[93.78493,27.91129],[93.80412,27.93095],[93.80834,27.93065],[93.8124,27.92799],[93.82426,27.92916],[93.83429,27.93433],[93.83979,27.93487],[93.84262,27.93287],[93.85358,27.93582],[93.87181,27.93666],[93.87378,27.93771],[93.87621,27.94315],[93.88481,27.94663],[93.88622,27.94505],[93.88855,27.94529],[93.89302,27.94791],[93.89569,27.95336],[93.907,27.96186],[93.9082,27.96689],[93.91342,27.97199],[93.93333,27.97774],[93.94465,27.98654],[93.94622,27.98976],[93.94609,27.99374],[93.93986,28.00268],[93.9273,28.00804],[93.92066,28.00542],[93.91835,28.00629],[93.91732,28.0114],[93.91963,28.01489],[93.91924,28.01729],[93.91306,28.03027],[93.90736,28.03328],[93.90182,28.03898],[93.89873,28.03959],[93.89548,28.04448],[93.89258,28.045],[93.88875,28.04182],[93.88547,28.04243],[93.88535,28.04505],[93.87528,28.05345],[93.87734,28.06497],[93.87646,28.06724],[93.88515,28.0821],[93.88431,28.09112],[93.89121,28.10323],[93.88423,28.10759],[93.87508,28.11745],[93.87793,28.13668],[93.87509,28.13908],[93.8719,28.15392],[93.86516,28.15894],[93.86029,28.1671],[93.84519,28.17379],[93.85035,28.19161],[93.85,28.20954],[93.83854,28.21911],[93.84237,28.23937],[93.84168,28.24194],[93.83764,28.24473],[93.83326,28.24425],[93.83045,28.24626],[93.80975,28.24702],[93.77323,28.26009],[93.76959,28.26523],[93.76926,28.27458],[93.7663,28.27867],[93.76031,28.28154],[93.75354,28.27972],[93.74424,28.28794],[93.73511,28.28558],[93.72638,28.27452],[93.72328,28.2675],[93.71766,28.26136],[93.71125,28.25734],[93.70828,28.25049],[93.70072,28.24131],[93.69559,28.23977],[93.68874,28.235],[93.67859,28.23207],[93.67254,28.22672],[93.6672,28.2248],[93.66627,28.2198],[93.65879,28.21272],[93.65619,28.20464],[93.65073,28.19739],[93.64881,28.20274],[93.65044,28.20813],[93.64134,28.21927],[93.64213,28.2241],[93.63409,28.23145],[93.63506,28.238],[93.63097,28.24346],[93.6299,28.26251],[93.6201,28.26645],[93.61396,28.27252],[93.59281,28.27113],[93.57156,28.25588],[93.56441,28.26202],[93.55696,28.26046],[93.5425,28.2678],[93.50958,28.27198],[93.49914,28.27658],[93.49186,28.2769],[93.47979,28.28139],[93.47617,28.28109],[93.46872,28.27371],[93.45305,28.27186],[93.44779,28.28203],[93.4469,28.20047],[93.46022,28.11291],[93.48592,28.10339],[93.50591,28.07674],[93.50591,28.06921],[93.54755,28.06556],[93.57015,28.05723],[93.588,27.97752],[93.61851,27.95359],[93.58467,27.90566],[93.6018,27.90756],[93.6018,27.88091],[93.59228,27.83332],[93.57991,27.81238],[93.56373,27.79525],[93.5485,27.78573],[93.50948,27.7429],[93.53232,27.72197],[93.53756,27.6739],[93.51469,27.65021],[93.54314,27.62175],[93.55841,27.60343]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"678","area_level":"District","area_name":"Namsai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[96.31168,27.5698],[96.28549,27.59511],[96.29204,27.62782],[96.27003,27.65162],[96.27003,27.68672],[96.26086,27.71943],[96.27514,27.77951],[96.27336,27.78784],[96.20792,27.87747],[96.04891,27.85024],[96.02322,27.85024],[95.89758,27.79028],[95.82905,27.75316],[95.80478,27.73603],[95.7743,27.73094],[95.76557,27.72639],[95.75848,27.72694],[95.75237,27.72383],[95.7537,27.71874],[95.76536,27.71466],[95.76251,27.71316],[95.76418,27.71113],[95.7629,27.70902],[95.76803,27.70209],[95.76455,27.6997],[95.76573,27.69757],[95.76378,27.69376],[95.76539,27.69077],[95.76715,27.69049],[95.76759,27.6873],[95.77331,27.6849],[95.77723,27.68755],[95.78293,27.68721],[95.783,27.68464],[95.78513,27.68514],[95.78616,27.68175],[95.79046,27.68014],[95.77906,27.67728],[95.77514,27.67432],[95.77197,27.66409],[95.77297,27.66204],[95.77043,27.65794],[95.77432,27.6508],[95.78622,27.64632],[95.78784,27.64396],[95.79015,27.64476],[95.79578,27.64173],[95.79603,27.63786],[95.79443,27.63887],[95.7883,27.63484],[95.7895,27.62631],[95.77925,27.62548],[95.77847,27.61887],[95.7806,27.61623],[95.78514,27.61561],[95.79028,27.61184],[95.78949,27.60345],[95.79253,27.59794],[95.80557,27.60095],[95.81411,27.59951],[95.81774,27.59701],[95.81838,27.59516],[95.8138,27.58898],[95.81192,27.58322],[95.81434,27.57425],[95.82344,27.57448],[95.83335,27.56002],[95.8363,27.55926],[95.84127,27.56205],[95.8529,27.55279],[95.86093,27.54305],[95.86263,27.54537],[95.8703,27.54528],[95.87371,27.547],[95.99869,27.55957],[96.00191,27.55666],[96.02318,27.57119],[96.04108,27.58663],[96.04754,27.58833],[96.05345,27.59291],[96.05639,27.60015],[96.06153,27.60634],[96.12579,27.61957],[96.12777,27.61643],[96.13321,27.61513],[96.13488,27.61179],[96.13045,27.60934],[96.13277,27.60639],[96.1402,27.60708],[96.16086,27.60107],[96.16709,27.59698],[96.17001,27.59792],[96.17156,27.5947],[96.18175,27.59011],[96.19244,27.5883],[96.19687,27.58308],[96.19984,27.58402],[96.20347,27.58062],[96.2081,27.57973],[96.20972,27.57733],[96.21585,27.57721],[96.22483,27.56817],[96.2313,27.56651],[96.23733,27.56719],[96.24269,27.56357],[96.26429,27.5633],[96.26848,27.55784],[96.27602,27.55899],[96.28282,27.55608],[96.28898,27.55544],[96.2957,27.55834],[96.31168,27.5698]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"679","area_level":"District","area_name":"Siang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.52536,28.81153],[94.51533,28.82084],[94.51707,28.83652],[94.48,28.85837],[94.39566,28.93212],[94.3785,28.89204],[94.38267,28.87835],[94.39456,28.85396],[94.41241,28.83731],[94.42371,28.81292],[94.4362,28.80994],[94.44275,28.77723],[94.43382,28.76414],[94.43412,28.75477],[94.44362,28.74621],[94.45885,28.71861],[94.47693,28.70529],[94.48455,28.69101],[94.48074,28.66531],[94.46752,28.62586],[94.45038,28.61551],[94.4572,28.5913],[94.48101,28.60023],[94.51337,28.59642],[94.53621,28.58881],[94.54193,28.57739],[94.53812,28.5336],[94.54383,28.51267],[94.56001,28.49649],[94.56096,28.48982],[94.54288,28.48126],[94.54485,28.46872],[94.51183,28.46638],[94.5004,28.46067],[94.49683,28.41285],[94.48544,28.39575],[94.48934,28.37537],[94.50647,28.34824],[94.5286,28.33183],[94.55501,28.33183],[94.56144,28.32683],[94.58,28.28257],[94.59642,28.27686],[94.61355,28.25759],[94.6164,28.23094],[94.60498,28.20238],[94.6164,28.18335],[94.61486,28.1498],[94.63008,28.15456],[94.64151,28.16598],[94.66054,28.2069],[94.691,28.21642],[94.72717,28.22213],[94.77476,28.18692],[94.80045,28.18597],[94.83662,28.21928],[94.87131,28.2168],[94.86871,28.20845],[94.87545,28.20531],[94.89946,28.17803],[94.89825,28.17376],[94.89945,28.16373],[94.89832,28.15521],[94.89654,28.15333],[94.89806,28.1478],[94.90354,28.14491],[94.90524,28.13952],[94.9109,28.13662],[94.91246,28.13222],[94.918,28.12705],[94.9279,28.12697],[94.92816,28.1251],[94.93398,28.12161],[94.94338,28.12074],[94.94382,28.1163],[94.93307,28.10513],[94.92834,28.09453],[94.92877,28.09268],[94.91819,28.09301],[94.91445,28.09144],[94.91385,28.08682],[94.91015,28.08451],[94.90833,28.08057],[94.90305,28.07844],[94.90374,28.07242],[94.90829,28.06717],[94.9214,28.05978],[94.92432,28.05325],[94.9294,28.05044],[94.96223,28.04134],[95.03456,28.03314],[95.06737,28.02345],[95.11509,28.02419],[95.17697,28.04806],[95.21724,28.05626],[95.22395,28.04806],[95.24035,28.04731],[95.28882,28.09056],[95.28807,28.10323],[95.29553,28.12113],[95.25079,28.15021],[95.23051,28.15489],[95.22391,28.15214],[95.19238,28.16456],[95.18505,28.1736],[95.1801,28.17572],[95.17951,28.17891],[95.16712,28.18756],[95.16797,28.20157],[95.1629,28.20998],[95.16286,28.21594],[95.15186,28.21585],[95.14715,28.22034],[95.13846,28.22377],[95.12028,28.22541],[95.11719,28.23341],[95.10961,28.24454],[95.10766,28.2505],[95.10928,28.25361],[95.10466,28.26148],[95.09623,28.27004],[95.09414,28.27966],[95.10305,28.28673],[95.10139,28.29154],[95.09705,28.29454],[95.09616,28.29894],[95.10202,28.30798],[95.10524,28.3098],[95.10403,28.31176],[95.1053,28.32042],[95.10305,28.32781],[95.09128,28.32874],[95.08631,28.33072],[95.07932,28.33806],[95.07374,28.33971],[95.06151,28.35532],[95.06974,28.36307],[95.06894,28.3718],[95.07187,28.37666],[95.07733,28.39512],[95.07531,28.40338],[95.06684,28.40944],[95.06572,28.41337],[95.07011,28.41836],[95.07893,28.42218],[95.08854,28.43237],[95.09049,28.44137],[95.08992,28.44783],[95.09379,28.45266],[95.10196,28.45758],[95.09957,28.46634],[95.09296,28.47614],[95.09464,28.48126],[95.10007,28.48862],[95.10072,28.49748],[95.09663,28.50162],[95.08354,28.50532],[95.08005,28.50813],[95.0774,28.51528],[95.07983,28.52271],[95.07843,28.52888],[95.06932,28.52894],[95.06529,28.53042],[95.06484,28.53279],[95.06109,28.53229],[95.05452,28.53433],[95.05159,28.53224],[95.0479,28.52578],[95.03759,28.52336],[95.03318,28.52454],[95.02312,28.52107],[95.01501,28.52193],[95.01724,28.52363],[95.0184,28.53129],[95.01668,28.54435],[95.01217,28.55108],[95.0011,28.55179],[94.99194,28.5629],[94.98383,28.56452],[94.97919,28.56241],[94.9762,28.55666],[94.96518,28.5582],[94.9575,28.56628],[94.9562,28.57202],[94.94992,28.57497],[94.95003,28.57952],[94.9437,28.5818],[94.93094,28.57989],[94.92706,28.57524],[94.92542,28.56812],[94.91764,28.56252],[94.90144,28.56265],[94.88336,28.55505],[94.87473,28.54734],[94.86362,28.55463],[94.86211,28.56136],[94.84884,28.5659],[94.84358,28.57046],[94.84142,28.57452],[94.82654,28.57662],[94.81224,28.57243],[94.80404,28.57293],[94.78899,28.55705],[94.77849,28.5538],[94.77066,28.54855],[94.76593,28.54859],[94.78075,28.55658],[94.76016,28.55993],[94.74666,28.58792],[94.74452,28.61085],[94.74781,28.66514],[94.74558,28.68634],[94.69671,28.72831],[94.63395,28.76663],[94.63333,28.78417],[94.62017,28.79377],[94.60785,28.797],[94.59228,28.79177],[94.56161,28.81025],[94.52536,28.81153]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"68","area_level":"District","area_name":"Kurukshetra","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.85869,30.25136],[76.85078,30.25463],[76.84279,30.2458],[76.83751,30.25413],[76.83325,30.25177],[76.82601,30.25306],[76.82282,30.25143],[76.81755,30.24212],[76.82178,30.24035],[76.82535,30.23595],[76.82315,30.23479],[76.81899,30.22423],[76.81687,30.22247],[76.81943,30.22046],[76.81754,30.21786],[76.81186,30.21967],[76.80591,30.21373],[76.80003,30.21123],[76.79619,30.21481],[76.78878,30.21337],[76.78479,30.21492],[76.77701,30.20458],[76.7778,30.20222],[76.77561,30.20233],[76.77278,30.19969],[76.76681,30.19941],[76.76344,30.1919],[76.76019,30.19185],[76.75409,30.19639],[76.73644,30.1979],[76.73455,30.19609],[76.72774,30.19489],[76.71712,30.19615],[76.71129,30.19149],[76.695,30.1937],[76.69191,30.19004],[76.68938,30.19068],[76.68541,30.18866],[76.68296,30.18019],[76.67302,30.16768],[76.67148,30.16695],[76.66974,30.16837],[76.65514,30.15288],[76.63833,30.14762],[76.63657,30.13782],[76.6391,30.13462],[76.63924,30.13078],[76.6453,30.12789],[76.64227,30.12275],[76.64326,30.12189],[76.63563,30.11158],[76.64377,30.10778],[76.64481,30.10186],[76.64248,30.09871],[76.63598,30.09621],[76.63166,30.09168],[76.62087,30.08672],[76.6153,30.07304],[76.60447,30.07449],[76.59671,30.07268],[76.5922,30.06624],[76.58685,30.06915],[76.59839,30.08242],[76.58561,30.0843],[76.58578,30.08853],[76.57675,30.09474],[76.57524,30.1008],[76.56055,30.09338],[76.55638,30.08251],[76.55,30.07885],[76.54565,30.07932],[76.54596,30.0764],[76.54376,30.07427],[76.53528,30.0731],[76.52685,30.07696],[76.52248,30.07411],[76.50828,30.07031],[76.50871,30.07895],[76.51037,30.08231],[76.50208,30.09192],[76.49798,30.09449],[76.46795,30.09878],[76.46481,30.09327],[76.45418,30.08286],[76.45279,30.0781],[76.44458,30.06715],[76.4383,30.05075],[76.42967,30.04587],[76.42938,30.04213],[76.42292,30.0352],[76.42171,30.03068],[76.42661,30.02451],[76.42842,30.01763],[76.43925,30.01473],[76.44259,30.00713],[76.43316,30.00036],[76.43266,29.99532],[76.43347,29.98669],[76.43915,29.97233],[76.44277,29.97188],[76.45663,29.96388],[76.46384,29.97205],[76.46737,29.97348],[76.471,29.97038],[76.4761,29.96893],[76.47626,29.96513],[76.48426,29.95963],[76.48662,29.95597],[76.48123,29.95261],[76.48151,29.94586],[76.48416,29.93927],[76.48313,29.93661],[76.47902,29.93276],[76.47177,29.91941],[76.46588,29.91292],[76.48152,29.90578],[76.49118,29.90377],[76.49427,29.90558],[76.50175,29.90479],[76.51154,29.89734],[76.5154,29.90134],[76.5186,29.91956],[76.53109,29.92619],[76.53508,29.9253],[76.54082,29.92048],[76.53825,29.91251],[76.53072,29.90167],[76.53691,29.89983],[76.54566,29.90343],[76.54753,29.90708],[76.55158,29.90758],[76.55957,29.91752],[76.57205,29.909],[76.57804,29.91517],[76.5875,29.92017],[76.59363,29.91653],[76.59382,29.91411],[76.60624,29.91282],[76.61539,29.91772],[76.61894,29.9218],[76.62956,29.91924],[76.64179,29.91244],[76.64785,29.91116],[76.65506,29.9148],[76.66729,29.91608],[76.67065,29.91867],[76.67812,29.91817],[76.68475,29.92108],[76.68965,29.9179],[76.68522,29.90854],[76.68796,29.90408],[76.70362,29.89381],[76.70614,29.88844],[76.71252,29.8831],[76.72429,29.88133],[76.73002,29.87693],[76.73228,29.87171],[76.74186,29.87143],[76.75505,29.86683],[76.76631,29.87621],[76.77264,29.87751],[76.7816,29.87343],[76.78759,29.87692],[76.79345,29.87635],[76.79413,29.87927],[76.80329,29.88231],[76.80634,29.88625],[76.80245,29.88811],[76.80303,29.894],[76.80764,29.89533],[76.80712,29.89933],[76.80981,29.90194],[76.81482,29.90179],[76.8206,29.89939],[76.81954,29.89585],[76.82271,29.89414],[76.82901,29.89465],[76.83343,29.90207],[76.83873,29.89432],[76.83753,29.8936],[76.83967,29.88729],[76.84698,29.8839],[76.84942,29.88074],[76.85772,29.87737],[76.86529,29.88119],[76.87151,29.87947],[76.88095,29.8805],[76.89018,29.89681],[76.89719,29.89972],[76.8966,29.90459],[76.89867,29.91851],[76.90009,29.91986],[76.90154,29.92073],[76.91246,29.91493],[76.92089,29.91435],[76.92796,29.91741],[76.93027,29.92162],[76.9291,29.92534],[76.9311,29.92592],[76.93685,29.92264],[76.93931,29.91864],[76.94996,29.91374],[76.95561,29.91392],[76.9576,29.9153],[76.95696,29.91896],[76.95313,29.92236],[76.9541,29.92389],[76.95196,29.92636],[76.95265,29.9282],[76.95021,29.92853],[76.94914,29.93177],[76.95254,29.93277],[76.95317,29.93629],[76.95677,29.93643],[76.95711,29.93926],[76.96169,29.93819],[76.96591,29.93952],[76.9651,29.94296],[76.97099,29.94478],[76.97881,29.95152],[76.98336,29.95331],[76.98423,29.95574],[76.98147,29.95714],[76.98277,29.95876],[76.98505,29.95607],[76.98814,29.95733],[76.99266,29.95153],[76.99526,29.95315],[76.99869,29.9521],[76.99981,29.94985],[77.00371,29.95167],[77.00633,29.95663],[77.00915,29.95294],[77.0152,29.94925],[77.02197,29.94712],[77.03328,29.95525],[77.04798,29.95275],[77.053,29.94639],[77.05896,29.94617],[77.06475,29.95212],[77.07436,29.95094],[77.08087,29.94817],[77.08332,29.9517],[77.08692,29.94975],[77.0967,29.95115],[77.09955,29.9574],[77.10425,29.96038],[77.10261,29.96439],[77.10455,29.96837],[77.11193,29.96912],[77.11456,29.97093],[77.11358,29.97507],[77.11519,29.97546],[77.1157,29.97882],[77.11344,29.9807],[77.11455,29.98397],[77.11142,29.98432],[77.11231,29.99031],[77.1224,29.99547],[77.12278,29.99748],[77.11952,29.9994],[77.11855,30.00304],[77.11636,30.00209],[77.11447,30.00485],[77.1108,30.00543],[77.10848,30.00805],[77.1088,30.01056],[77.10115,30.01746],[77.10083,30.02014],[77.1055,30.02733],[77.10509,30.03014],[77.09444,30.03726],[77.09822,30.04135],[77.08658,30.05076],[77.08848,30.05728],[77.08161,30.06453],[77.07961,30.06389],[77.08066,30.0711],[77.07799,30.07093],[77.07844,30.06836],[77.07603,30.06632],[77.07412,30.07057],[77.0719,30.06966],[77.06831,30.07269],[77.07008,30.088],[77.06788,30.09245],[77.06858,30.09668],[77.07296,30.09952],[77.0783,30.09956],[77.08671,30.10227],[77.08601,30.10734],[77.09122,30.11187],[77.08534,30.11347],[77.08209,30.11777],[77.07676,30.11964],[77.07068,30.12627],[77.07151,30.12989],[77.06925,30.13126],[77.06265,30.12454],[77.05976,30.12363],[77.04882,30.12781],[77.03589,30.13635],[77.03695,30.14362],[77.02246,30.14796],[77.02041,30.15133],[77.01164,30.15648],[77.00787,30.16202],[77.00177,30.16184],[76.99074,30.16788],[76.98172,30.16937],[76.97561,30.16228],[76.96374,30.15801],[76.96157,30.15257],[76.95743,30.15739],[76.95114,30.15934],[76.9453,30.16474],[76.94063,30.1663],[76.93978,30.17219],[76.94093,30.17797],[76.94545,30.18357],[76.95624,30.18318],[76.96023,30.18965],[76.9607,30.19318],[76.95244,30.19486],[76.94831,30.19788],[76.93779,30.1978],[76.92513,30.20548],[76.91978,30.20223],[76.91589,30.2055],[76.90816,30.19912],[76.90346,30.1898],[76.88365,30.19883],[76.8824,30.19981],[76.88296,30.20804],[76.88633,30.20946],[76.88798,30.20749],[76.89021,30.21209],[76.87591,30.21984],[76.8672,30.22825],[76.85859,30.23299],[76.86777,30.2436],[76.86439,30.24715],[76.86441,30.24969],[76.85869,30.25136]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"680","area_level":"District","area_name":"Nirmal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.96219,19.33521],[77.95367,19.33952],[77.94248,19.34244],[77.93824,19.33411],[77.93198,19.33467],[77.92801,19.33221],[77.92331,19.32578],[77.9176,19.32328],[77.91155,19.31626],[77.89432,19.32047],[77.89003,19.3133],[77.87818,19.30928],[77.87283,19.30531],[77.86346,19.3042],[77.8664,19.29172],[77.86495,19.28813],[77.86558,19.28382],[77.88436,19.27893],[77.89419,19.27981],[77.90346,19.27796],[77.90756,19.26823],[77.90285,19.25646],[77.89092,19.25928],[77.89001,19.26089],[77.87502,19.25884],[77.8746,19.25364],[77.87141,19.25502],[77.86947,19.24817],[77.87002,19.24418],[77.8669,19.23994],[77.86814,19.23674],[77.86612,19.23261],[77.86601,19.2264],[77.85819,19.21418],[77.85481,19.20277],[77.85123,19.19975],[77.85149,19.1961],[77.84772,19.1896],[77.85401,19.18749],[77.86049,19.18035],[77.85593,19.17711],[77.85671,19.17075],[77.85453,19.1702],[77.85265,19.16682],[77.85253,19.15468],[77.84322,19.14158],[77.83795,19.13765],[77.83566,19.13808],[77.83406,19.13431],[77.83688,19.13401],[77.84156,19.11811],[77.84766,19.116],[77.84837,19.11013],[77.84621,19.10131],[77.85108,19.09203],[77.8504,19.08856],[77.84858,19.0865],[77.8423,19.08801],[77.83127,19.08608],[77.82953,19.08707],[77.82641,19.09664],[77.82358,19.09773],[77.81814,19.10498],[77.80993,19.10473],[77.80453,19.10056],[77.80312,19.09617],[77.80458,19.0918],[77.80281,19.07976],[77.80167,19.07618],[77.79786,19.07516],[77.7968,19.07259],[77.8001,19.06684],[77.7986,19.06145],[77.80035,19.05112],[77.79331,19.05257],[77.7891,19.05567],[77.77523,19.05602],[77.76481,19.06266],[77.76495,19.04714],[77.7619,19.03618],[77.762,19.03185],[77.76515,19.02495],[77.76992,19.02241],[77.77034,19.00996],[77.77224,19.00363],[77.77535,19.00063],[77.7715,18.97916],[77.78763,18.97265],[77.78967,18.97458],[77.79114,18.98282],[77.80522,18.98186],[77.82176,18.97851],[77.81621,18.95752],[77.81984,18.95444],[77.81622,18.94728],[77.81925,18.94586],[77.83245,18.94163],[77.83562,18.94725],[77.84194,18.94987],[77.85859,18.94911],[77.85146,18.92641],[77.84791,18.9269],[77.84325,18.90869],[77.85794,18.90235],[77.87317,18.90393],[77.87394,18.90767],[77.88538,18.9042],[77.88481,18.9003],[77.89158,18.88141],[77.90391,18.88125],[77.90323,18.86663],[77.91243,18.86507],[77.91415,18.86137],[77.92514,18.86069],[77.93006,18.85873],[77.92935,18.85359],[77.93745,18.85159],[77.93478,18.84514],[77.9489,18.84329],[77.95664,18.85359],[77.95938,18.8602],[77.96825,18.87049],[77.98802,18.87967],[78.01397,18.88438],[78.01782,18.88367],[78.02795,18.87653],[78.03288,18.87579],[78.03747,18.87716],[78.0392,18.88225],[78.03689,18.88804],[78.041,18.89806],[78.04177,18.91476],[78.04735,18.9276],[78.04645,18.9355],[78.05233,18.93999],[78.05766,18.94214],[78.07671,18.93987],[78.08994,18.94016],[78.09644,18.94425],[78.10466,18.95443],[78.11319,18.96131],[78.11817,18.96274],[78.12215,18.96097],[78.13267,18.96106],[78.14965,18.96738],[78.16114,18.98032],[78.16114,18.98809],[78.1643,18.99066],[78.16447,18.99481],[78.16722,18.99763],[78.1783,18.99976],[78.18941,18.99717],[78.19871,18.99911],[78.20499,19.0025],[78.22803,19.00835],[78.23869,19.01594],[78.24866,19.01474],[78.25761,19.00607],[78.26475,19.00217],[78.27874,18.99006],[78.28103,18.98368],[78.27609,18.97331],[78.27772,18.96865],[78.27708,18.95303],[78.2788,18.94652],[78.28514,18.94256],[78.29327,18.94403],[78.314,18.95151],[78.32128,18.96043],[78.33945,18.96829],[78.34598,18.97366],[78.35489,18.98453],[78.36415,18.98951],[78.37112,18.99603],[78.40999,19.00384],[78.41712,18.99948],[78.42629,18.97697],[78.44055,18.9666],[78.45248,18.96405],[78.45684,18.95548],[78.46543,18.95834],[78.47269,18.95709],[78.47722,18.95802],[78.48231,18.96194],[78.48623,18.96973],[78.49079,18.97284],[78.5082,18.97229],[78.51622,18.96532],[78.52424,18.9522],[78.5282,18.94868],[78.53553,18.94599],[78.54673,18.94567],[78.54888,18.94713],[78.55143,18.954],[78.55424,18.9731],[78.55686,18.97809],[78.56659,18.98812],[78.58845,19.00536],[78.60639,18.9855],[78.63603,18.97786],[78.66018,19.0008],[78.65995,19.00476],[78.6655,19.01465],[78.68635,19.03001],[78.70049,19.03576],[78.74019,19.01688],[78.75659,19.01114],[78.76225,19.01126],[78.76724,19.01522],[78.77014,19.01432],[78.76833,19.02123],[78.77078,19.02973],[78.7788,19.03768],[78.79883,19.04825],[78.82109,19.04893],[78.82871,19.06135],[78.83555,19.06845],[78.84483,19.07029],[78.862,19.05908],[78.86641,19.05908],[78.86941,19.0561],[78.87385,19.05585],[78.90288,19.03373],[78.91387,19.03069],[78.91759,19.03418],[78.92481,19.04836],[78.93138,19.0571],[78.93577,19.06147],[78.9399,19.06303],[78.94745,19.07268],[78.94075,19.08069],[78.94178,19.09385],[78.93847,19.10019],[78.94121,19.1085],[78.93069,19.11845],[78.92374,19.11391],[78.91353,19.11632],[78.91704,19.11044],[78.92074,19.10907],[78.92111,19.10635],[78.91205,19.10423],[78.90285,19.09377],[78.88919,19.10349],[78.88026,19.11326],[78.88257,19.12185],[78.88804,19.13124],[78.88233,19.1534],[78.88306,19.15546],[78.88017,19.15905],[78.87747,19.15896],[78.87758,19.1602],[78.90259,19.17783],[78.91098,19.18173],[78.91989,19.18235],[78.92125,19.18378],[78.91797,19.1889],[78.91791,19.20144],[78.92751,19.20864],[78.93048,19.21374],[78.93373,19.21422],[78.93714,19.22315],[78.93608,19.22844],[78.95436,19.25065],[78.94868,19.25416],[78.9417,19.25221],[78.93476,19.26026],[78.92829,19.26514],[78.91635,19.27057],[78.89394,19.29011],[78.89299,19.28124],[78.88806,19.27736],[78.8881,19.27514],[78.88548,19.27273],[78.87506,19.27697],[78.8688,19.28247],[78.85383,19.27813],[78.84782,19.27174],[78.84666,19.26771],[78.84883,19.26268],[78.84474,19.26007],[78.84485,19.25651],[78.84323,19.2547],[78.82966,19.25267],[78.81967,19.24674],[78.81836,19.23539],[78.81509,19.23137],[78.81213,19.22151],[78.80532,19.21708],[78.80199,19.21666],[78.80054,19.21384],[78.7901,19.24047],[78.78614,19.24068],[78.78421,19.24586],[78.78049,19.24933],[78.77591,19.25063],[78.76791,19.25655],[78.75884,19.27816],[78.73649,19.28596],[78.71994,19.29649],[78.72252,19.3264],[78.69048,19.31653],[78.67525,19.31649],[78.65103,19.30009],[78.62111,19.27408],[78.61786,19.27019],[78.61538,19.26104],[78.61024,19.26513],[78.60111,19.27683],[78.5877,19.28802],[78.58448,19.28934],[78.57031,19.28646],[78.54733,19.26199],[78.52566,19.25498],[78.52183,19.25063],[78.51787,19.24545],[78.51904,19.22618],[78.50943,19.21475],[78.49863,19.21859],[78.48371,19.22666],[78.45664,19.22682],[78.45829,19.22252],[78.45491,19.20616],[78.45656,19.19541],[78.44969,19.1839],[78.44934,19.18006],[78.4484,19.17886],[78.43616,19.18451],[78.43373,19.17616],[78.43094,19.17269],[78.42104,19.17585],[78.41459,19.1724],[78.40635,19.17382],[78.4042,19.17547],[78.4044,19.17819],[78.4017,19.17994],[78.39821,19.17999],[78.39425,19.17659],[78.38846,19.17582],[78.38354,19.17961],[78.36932,19.18228],[78.36419,19.18799],[78.36566,19.19174],[78.36297,19.19986],[78.36013,19.20034],[78.35687,19.1978],[78.35437,19.19848],[78.35112,19.20485],[78.34718,19.20723],[78.3416,19.20562],[78.33812,19.20777],[78.33007,19.20689],[78.32435,19.21268],[78.31843,19.21468],[78.31335,19.22132],[78.30996,19.22306],[78.30808,19.22952],[78.30925,19.23147],[78.30712,19.23471],[78.30393,19.23573],[78.30525,19.24133],[78.30097,19.24645],[78.29939,19.25938],[78.29276,19.26378],[78.27544,19.2659],[78.27375,19.26745],[78.27031,19.28175],[78.26153,19.28876],[78.24847,19.29033],[78.2421,19.30173],[78.23024,19.30887],[78.22091,19.31061],[78.21813,19.31249],[78.20753,19.30714],[78.20393,19.30689],[78.19736,19.30903],[78.19608,19.31548],[78.19324,19.31714],[78.1937,19.31447],[78.18311,19.28518],[78.17667,19.27855],[78.17817,19.27251],[78.17671,19.26294],[78.17964,19.25886],[78.17798,19.25391],[78.18177,19.24762],[78.17702,19.24216],[78.17532,19.23758],[78.16495,19.23455],[78.1584,19.23578],[78.15099,19.2295],[78.14455,19.2294],[78.13709,19.23439],[78.13428,19.23889],[78.11704,19.24864],[78.11522,19.24883],[78.11317,19.24442],[78.09531,19.24374],[78.08915,19.23937],[78.08235,19.24322],[78.08323,19.24868],[78.0791,19.25483],[78.0723,19.24925],[78.06442,19.24777],[78.05568,19.23712],[78.04161,19.24343],[78.03594,19.25063],[78.04184,19.26166],[78.04251,19.2706],[78.01482,19.27904],[78.01424,19.28596],[78.01596,19.28757],[78.0135,19.29472],[77.99868,19.2998],[77.99467,19.30539],[77.98496,19.30975],[77.97763,19.32271],[77.97411,19.32262],[77.96682,19.32666],[77.96219,19.33521]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"681","area_level":"District","area_name":"Jagitial","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.97239,19.07634],[78.96335,19.0777],[78.95121,19.07615],[78.9399,19.06303],[78.93577,19.06147],[78.93138,19.0571],[78.92481,19.04836],[78.91759,19.03418],[78.91387,19.03069],[78.90288,19.03373],[78.87385,19.05585],[78.86941,19.0561],[78.86641,19.05908],[78.862,19.05908],[78.84483,19.07029],[78.83555,19.06845],[78.82871,19.06135],[78.82109,19.04893],[78.79883,19.04825],[78.7788,19.03768],[78.77078,19.02973],[78.76833,19.02123],[78.77014,19.01432],[78.76724,19.01522],[78.76225,19.01126],[78.75659,19.01114],[78.74019,19.01688],[78.70049,19.03576],[78.68635,19.03001],[78.6655,19.01465],[78.65995,19.00476],[78.66018,19.0008],[78.63603,18.97786],[78.60639,18.9855],[78.58845,19.00536],[78.56659,18.98812],[78.5562,18.97714],[78.55396,18.97182],[78.55149,18.9542],[78.54824,18.9463],[78.53697,18.94581],[78.53651,18.94227],[78.52802,18.94272],[78.52588,18.93877],[78.5259,18.93225],[78.52798,18.93015],[78.52674,18.92873],[78.52494,18.92974],[78.52098,18.92293],[78.51916,18.90443],[78.51794,18.90332],[78.51893,18.90069],[78.51412,18.89231],[78.51981,18.88923],[78.52634,18.88945],[78.53607,18.88429],[78.5417,18.86326],[78.54115,18.86083],[78.54331,18.85962],[78.53737,18.84423],[78.54008,18.84574],[78.54144,18.83947],[78.54828,18.83455],[78.54814,18.83066],[78.54166,18.81531],[78.55092,18.81348],[78.54896,18.80895],[78.5543,18.80093],[78.55247,18.79108],[78.55925,18.78543],[78.56351,18.77882],[78.55431,18.76509],[78.55746,18.75602],[78.55156,18.75066],[78.55271,18.74253],[78.55828,18.74003],[78.57117,18.73826],[78.58163,18.72283],[78.59059,18.72542],[78.61288,18.72803],[78.61471,18.72998],[78.62864,18.72782],[78.63718,18.72333],[78.64096,18.71535],[78.64081,18.70185],[78.63161,18.67749],[78.63366,18.6726],[78.6379,18.67224],[78.65278,18.63867],[78.66429,18.63354],[78.66989,18.62332],[78.68337,18.63185],[78.68456,18.63436],[78.69005,18.63286],[78.69667,18.64184],[78.70612,18.64107],[78.71535,18.63747],[78.72193,18.63221],[78.7235,18.63293],[78.73422,18.62984],[78.74535,18.62984],[78.74865,18.63135],[78.75447,18.63049],[78.75468,18.6267],[78.76055,18.61888],[78.79156,18.62083],[78.80059,18.61219],[78.8124,18.60464],[78.81523,18.60575],[78.82458,18.60467],[78.83292,18.59556],[78.85075,18.58833],[78.85518,18.58736],[78.86278,18.59254],[78.87368,18.58675],[78.88613,18.59663],[78.89331,18.59707],[78.9015,18.57773],[78.89724,18.56477],[78.89897,18.56288],[78.89712,18.55933],[78.90039,18.55787],[78.89994,18.5546],[78.90283,18.54999],[78.90446,18.55117],[78.91253,18.57231],[78.9163,18.57534],[78.92422,18.57013],[78.92661,18.56598],[78.92881,18.56618],[78.93062,18.57169],[78.93915,18.58379],[78.95373,18.5802],[78.95327,18.57913],[78.95709,18.57671],[78.96772,18.57746],[78.97575,18.57467],[78.9832,18.56854],[78.9894,18.57388],[78.98874,18.57746],[78.98299,18.5835],[78.98,18.59198],[78.98097,18.59586],[78.97503,18.59587],[78.97099,18.60564],[78.96772,18.60899],[78.97705,18.62816],[78.9798,18.63992],[78.98181,18.64205],[78.9808,18.6434],[78.98841,18.64995],[78.98635,18.6559],[78.98196,18.6612],[78.98794,18.67143],[78.99248,18.67493],[78.99865,18.67291],[79.00429,18.67831],[79.01119,18.67623],[79.01751,18.66152],[79.01793,18.65413],[79.02256,18.6546],[79.02754,18.65143],[79.03626,18.65111],[79.03593,18.64463],[79.04978,18.6472],[79.05261,18.65562],[79.0573,18.65904],[79.06007,18.66608],[79.06208,18.66555],[79.06287,18.6611],[79.06499,18.65909],[79.06463,18.65376],[79.07724,18.65173],[79.08555,18.64595],[79.08917,18.64683],[79.09189,18.65079],[79.09516,18.65178],[79.09724,18.64842],[79.10052,18.64863],[79.10401,18.65043],[79.1068,18.65777],[79.1067,18.66375],[79.1104,18.66309],[79.1125,18.65845],[79.11594,18.65923],[79.11534,18.66424],[79.11836,18.66303],[79.12524,18.68214],[79.12387,18.69074],[79.11222,18.71034],[79.11552,18.70707],[79.12152,18.71095],[79.12172,18.70941],[79.12893,18.71109],[79.13009,18.7089],[79.13447,18.71334],[79.14064,18.72484],[79.15029,18.72564],[79.16293,18.75566],[79.18797,18.7521],[79.20978,18.75241],[79.21505,18.75121],[79.2176,18.74896],[79.22799,18.74896],[79.23629,18.75494],[79.24601,18.75982],[79.25021,18.7597],[79.25333,18.76361],[79.25715,18.76466],[79.26187,18.76251],[79.26473,18.75781],[79.27225,18.75229],[79.27827,18.75108],[79.27552,18.74684],[79.28155,18.74319],[79.29483,18.74476],[79.28987,18.76339],[79.29134,18.7773],[79.29669,18.78053],[79.30744,18.81519],[79.28293,18.82209],[79.27132,18.82804],[79.26326,18.83533],[79.24903,18.85301],[79.23431,18.86052],[79.1885,18.86652],[79.18207,18.86852],[79.17876,18.87133],[79.17348,18.88081],[79.15237,18.90412],[79.13047,18.92159],[79.10675,18.94682],[79.10305,18.95769],[79.10414,18.96803],[79.09222,18.98912],[79.08955,19.00073],[79.09057,19.01023],[79.08548,19.02319],[79.07525,19.04076],[79.06593,19.04954],[79.04925,19.05871],[79.04682,19.05816],[79.03704,19.06282],[79.02284,19.07533],[79.01865,19.07525],[79.01693,19.0727],[79.00957,19.07223],[79.00048,19.07442],[78.98807,19.07186],[78.97239,19.07634]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"682","area_level":"District","area_name":"Peddapalli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.40513,18.85628],[79.39,18.85654],[79.38109,18.85483],[79.37365,18.85125],[79.35922,18.82591],[79.35085,18.81868],[79.33497,18.81477],[79.30744,18.81519],[79.29669,18.78053],[79.29134,18.7773],[79.28987,18.76339],[79.29483,18.74476],[79.28155,18.74319],[79.27552,18.74684],[79.27827,18.75108],[79.27225,18.75229],[79.26473,18.75781],[79.26187,18.76251],[79.25715,18.76466],[79.25333,18.76361],[79.25021,18.7597],[79.24601,18.75982],[79.23629,18.75494],[79.22799,18.74896],[79.2176,18.74896],[79.21505,18.75121],[79.20978,18.75241],[79.18797,18.7521],[79.16293,18.75566],[79.15029,18.72564],[79.14064,18.72484],[79.13447,18.71334],[79.13009,18.7089],[79.12893,18.71109],[79.12172,18.70941],[79.12152,18.71095],[79.11552,18.70707],[79.11222,18.71034],[79.12387,18.69074],[79.1255,18.68357],[79.11836,18.66303],[79.11534,18.66424],[79.11771,18.65163],[79.11109,18.64507],[79.11285,18.62969],[79.11102,18.62214],[79.11516,18.62057],[79.12214,18.62646],[79.12718,18.62837],[79.13785,18.6247],[79.14358,18.62673],[79.14467,18.62971],[79.14774,18.62805],[79.15665,18.63869],[79.16099,18.64701],[79.1678,18.64751],[79.17098,18.64986],[79.17154,18.65428],[79.1758,18.6547],[79.17926,18.64477],[79.18262,18.62537],[79.18195,18.61976],[79.18485,18.61069],[79.20443,18.59525],[79.20528,18.57785],[79.2212,18.56981],[79.22999,18.56734],[79.22782,18.5466],[79.22563,18.54487],[79.2205,18.54548],[79.21551,18.53473],[79.22132,18.52794],[79.21975,18.52386],[79.21835,18.5245],[79.2155,18.51599],[79.21988,18.50848],[79.21565,18.49193],[79.22034,18.48578],[79.22063,18.47807],[79.22546,18.46997],[79.22886,18.45686],[79.23557,18.45065],[79.23659,18.44757],[79.24863,18.45334],[79.28208,18.48016],[79.29273,18.48253],[79.30629,18.48046],[79.33329,18.46751],[79.37278,18.43535],[79.4187,18.42006],[79.44387,18.40815],[79.46011,18.39295],[79.47456,18.38601],[79.48543,18.38597],[79.50665,18.39916],[79.52161,18.39707],[79.53372,18.39991],[79.54687,18.4077],[79.54898,18.41104],[79.56706,18.42388],[79.58734,18.44467],[79.59047,18.44996],[79.58786,18.46189],[79.59103,18.46198],[79.5968,18.47262],[79.60257,18.47452],[79.60635,18.46736],[79.61205,18.46363],[79.62289,18.48644],[79.63284,18.4785],[79.64218,18.47555],[79.65373,18.47606],[79.66986,18.48024],[79.67723,18.4903],[79.69064,18.50403],[79.69573,18.50698],[79.69622,18.5108],[79.70573,18.5207],[79.70847,18.52851],[79.70705,18.53361],[79.70903,18.53716],[79.70791,18.53915],[79.71048,18.54363],[79.70817,18.54806],[79.71204,18.56082],[79.71953,18.56628],[79.72481,18.57356],[79.73651,18.57404],[79.7413,18.57039],[79.74855,18.57095],[79.75305,18.57353],[79.78433,18.56867],[79.79227,18.57305],[79.79283,18.57978],[79.79127,18.58562],[79.8022,18.60695],[79.80151,18.61074],[79.80417,18.62129],[79.80829,18.62575],[79.81008,18.63108],[79.81362,18.63336],[79.83079,18.65586],[79.83165,18.66789],[79.8305,18.67306],[79.83242,18.67564],[79.83055,18.6805],[79.82186,18.68809],[79.82164,18.69184],[79.81445,18.69525],[79.81123,18.70338],[79.80721,18.7049],[79.7981,18.69658],[79.79361,18.69469],[79.78654,18.69845],[79.76868,18.69638],[79.75903,18.68648],[79.74854,18.68241],[79.73312,18.68226],[79.71434,18.68545],[79.70845,18.6835],[79.70048,18.678],[79.69791,18.67262],[79.68747,18.67047],[79.67962,18.67282],[79.66326,18.69025],[79.65154,18.71537],[79.64469,18.71704],[79.64088,18.72149],[79.63713,18.7233],[79.63289,18.72962],[79.6239,18.73242],[79.6182,18.73894],[79.61181,18.73925],[79.6034,18.74629],[79.59484,18.74915],[79.56155,18.77091],[79.54516,18.77767],[79.53268,18.78587],[79.51178,18.78464],[79.50765,18.78611],[79.49808,18.79228],[79.49028,18.80571],[79.48054,18.8175],[79.46291,18.8261],[79.44236,18.84269],[79.42774,18.85075],[79.40513,18.85628]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"683","area_level":"District","area_name":"Rajanna Sircilla","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.71861,18.63371],[78.71535,18.63747],[78.70612,18.64107],[78.69667,18.64184],[78.69005,18.63286],[78.68456,18.63436],[78.68337,18.63185],[78.66989,18.62332],[78.65411,18.59633],[78.65111,18.59482],[78.64396,18.59651],[78.62211,18.58992],[78.61515,18.59104],[78.59987,18.57389],[78.59909,18.55479],[78.5972,18.55065],[78.58755,18.54922],[78.57496,18.55034],[78.56363,18.55489],[78.55964,18.55236],[78.56429,18.55247],[78.57,18.54664],[78.56948,18.54383],[78.5535,18.53071],[78.54954,18.52248],[78.55312,18.51378],[78.55175,18.50405],[78.54653,18.50374],[78.53945,18.49617],[78.53148,18.47872],[78.53007,18.46818],[78.53162,18.46343],[78.54309,18.4599],[78.54451,18.45803],[78.55407,18.43083],[78.55179,18.42697],[78.54147,18.42002],[78.54191,18.41242],[78.54748,18.4049],[78.56498,18.39052],[78.56294,18.38548],[78.54139,18.38898],[78.53154,18.38754],[78.53021,18.3798],[78.5354,18.37009],[78.53336,18.36053],[78.54389,18.35109],[78.54624,18.34534],[78.54452,18.34297],[78.54955,18.33641],[78.53726,18.31782],[78.53819,18.30902],[78.54123,18.30006],[78.53395,18.29113],[78.52863,18.29176],[78.52393,18.28811],[78.52375,18.28188],[78.52121,18.27871],[78.5319,18.2715],[78.54033,18.27319],[78.5433,18.27028],[78.54191,18.26752],[78.54371,18.26462],[78.55278,18.25886],[78.55353,18.25102],[78.55954,18.23604],[78.56758,18.22256],[78.57484,18.22342],[78.5847,18.23863],[78.58857,18.24867],[78.6161,18.24796],[78.61733,18.24962],[78.62767,18.24652],[78.63212,18.25468],[78.64017,18.2567],[78.64554,18.25512],[78.64535,18.25303],[78.65997,18.24611],[78.65976,18.24402],[78.66313,18.24422],[78.66335,18.24104],[78.67014,18.24161],[78.67634,18.23544],[78.68503,18.23299],[78.69004,18.22986],[78.7004,18.2314],[78.70266,18.23477],[78.71148,18.23426],[78.71827,18.23191],[78.72712,18.22679],[78.72735,18.22102],[78.72336,18.21551],[78.73546,18.2147],[78.74275,18.21628],[78.74998,18.22121],[78.75315,18.22892],[78.75925,18.23578],[78.76156,18.24098],[78.761,18.24516],[78.76292,18.25073],[78.76911,18.26274],[78.77585,18.26123],[78.79273,18.25365],[78.8282,18.25321],[78.83168,18.24966],[78.83541,18.25005],[78.84576,18.24695],[78.85575,18.23467],[78.86899,18.24034],[78.88115,18.24177],[78.89008,18.2391],[78.89139,18.24475],[78.91453,18.25561],[78.93339,18.2559],[78.94361,18.25215],[78.9445,18.25367],[78.95429,18.25338],[78.95732,18.25214],[78.95764,18.24981],[78.95036,18.23748],[78.95452,18.20756],[78.96409,18.20732],[78.96425,18.20973],[78.96948,18.21093],[78.97358,18.21831],[78.98053,18.22173],[78.99557,18.24123],[78.99615,18.24588],[78.98957,18.25202],[78.99077,18.25588],[78.98804,18.25802],[78.99078,18.2627],[78.98744,18.26592],[78.98684,18.27782],[78.9897,18.28622],[78.98739,18.29063],[78.99143,18.30133],[79.00376,18.30416],[79.00542,18.30702],[79.01492,18.31114],[79.01925,18.31545],[79.01884,18.31982],[79.02129,18.32337],[79.02042,18.33069],[79.01523,18.3326],[79.01221,18.33628],[79.01402,18.34214],[79.01135,18.3456],[79.01652,18.35274],[79.01803,18.358],[79.02474,18.36624],[79.02268,18.37194],[79.01934,18.37542],[79.00869,18.37827],[79.00864,18.38033],[79.0063,18.38086],[79.00619,18.38834],[79.01632,18.39393],[79.01808,18.39954],[78.99709,18.39987],[78.99101,18.40941],[78.9886,18.41545],[78.98937,18.41741],[78.9782,18.42023],[78.97414,18.42736],[78.9783,18.44198],[78.99147,18.44092],[78.99117,18.44797],[78.988,18.45456],[78.98744,18.46204],[78.97082,18.45474],[78.95758,18.45262],[78.94798,18.44382],[78.93845,18.45716],[78.93571,18.46426],[78.92304,18.47454],[78.92296,18.47883],[78.9279,18.49049],[78.94682,18.49952],[78.95404,18.513],[78.95473,18.52395],[78.96074,18.53624],[78.9592,18.54271],[78.95637,18.54381],[78.95618,18.54821],[78.95291,18.55252],[78.949,18.55392],[78.95602,18.5695],[78.95709,18.57671],[78.95327,18.57913],[78.95373,18.5802],[78.93879,18.58367],[78.93062,18.57169],[78.92881,18.56618],[78.92661,18.56598],[78.92422,18.57013],[78.9163,18.57534],[78.91077,18.57011],[78.90466,18.55164],[78.90283,18.54999],[78.89994,18.5546],[78.90039,18.55787],[78.89712,18.55933],[78.89897,18.56288],[78.89724,18.56477],[78.9015,18.57773],[78.89331,18.59707],[78.88613,18.59663],[78.87368,18.58675],[78.86278,18.59254],[78.85518,18.58736],[78.84209,18.59096],[78.83396,18.59495],[78.82458,18.60467],[78.81523,18.60575],[78.8124,18.60464],[78.80059,18.61219],[78.79156,18.62083],[78.76055,18.61888],[78.75468,18.6267],[78.75447,18.63049],[78.74865,18.63135],[78.74535,18.62984],[78.73422,18.62984],[78.71861,18.63371]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"684","area_level":"District","area_name":"Mancherial","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.54156,19.26479],[79.53747,19.25943],[79.53095,19.25731],[79.53208,19.25328],[79.52498,19.25388],[79.52408,19.2513],[79.53203,19.24931],[79.53056,19.23276],[79.53456,19.22848],[79.53433,19.2257],[79.54161,19.22324],[79.54563,19.21491],[79.54905,19.21274],[79.54775,19.20226],[79.54404,19.2014],[79.5399,19.20314],[79.53658,19.20029],[79.53042,19.20403],[79.52391,19.20312],[79.50666,19.20729],[79.50224,19.20255],[79.48066,19.20139],[79.47579,19.1985],[79.4791,19.19411],[79.47048,19.18754],[79.47797,19.18349],[79.47228,19.17452],[79.46587,19.17719],[79.46229,19.17162],[79.43801,19.1797],[79.41959,19.19608],[79.40792,19.20107],[79.38901,19.20712],[79.36941,19.20699],[79.34974,19.21853],[79.3403,19.2212],[79.33937,19.21098],[79.34375,19.21188],[79.35092,19.21063],[79.35095,19.19243],[79.34673,19.18799],[79.34334,19.17927],[79.34342,19.17726],[79.34828,19.17724],[79.33457,19.16885],[79.31739,19.16331],[79.31739,19.16119],[79.32294,19.1555],[79.32172,19.15478],[79.32548,19.14947],[79.32626,19.14521],[79.31711,19.12591],[79.31603,19.09241],[79.30386,19.09514],[79.27687,19.11669],[79.2738,19.08182],[79.27373,19.05994],[79.26214,19.04448],[79.26719,19.03372],[79.25337,19.03023],[79.2443,19.02986],[79.23561,19.03258],[79.22606,19.03314],[79.22337,19.04069],[79.22372,19.04933],[79.213,19.06126],[79.20305,19.06668],[79.20125,19.07046],[79.19871,19.07191],[79.19824,19.07852],[79.19561,19.08239],[79.15274,19.09105],[79.15056,19.09264],[79.1408,19.10413],[79.14108,19.11143],[79.13514,19.11138],[79.13651,19.12842],[79.12451,19.13687],[79.12054,19.14812],[79.11551,19.15051],[79.10667,19.16206],[79.10462,19.16956],[79.09278,19.17871],[79.08598,19.18025],[79.08338,19.17877],[79.07884,19.18327],[79.06997,19.1873],[79.05776,19.20863],[79.01579,19.21384],[79.0077,19.21672],[78.99859,19.22036],[78.99807,19.23109],[78.9944,19.23453],[78.99092,19.23586],[78.98474,19.23504],[78.97876,19.22994],[78.97542,19.23205],[78.97132,19.23194],[78.96799,19.23393],[78.96637,19.24477],[78.95322,19.24974],[78.93608,19.22844],[78.93714,19.22315],[78.93373,19.21422],[78.93048,19.21374],[78.92751,19.20864],[78.91791,19.20144],[78.91797,19.1889],[78.92125,19.18378],[78.91989,19.18235],[78.91098,19.18173],[78.90259,19.17783],[78.87758,19.1602],[78.87747,19.15896],[78.88017,19.15905],[78.88306,19.15546],[78.88233,19.1534],[78.88804,19.13124],[78.88257,19.12185],[78.88026,19.11326],[78.88919,19.10349],[78.90285,19.09377],[78.91205,19.10423],[78.92111,19.10635],[78.92074,19.10907],[78.91704,19.11044],[78.91353,19.11632],[78.92374,19.11391],[78.93069,19.11845],[78.94121,19.1085],[78.93847,19.10019],[78.94178,19.09385],[78.94075,19.08069],[78.94745,19.07268],[78.95321,19.07711],[78.95692,19.07618],[78.96335,19.0777],[78.97455,19.07621],[78.97918,19.07361],[78.98807,19.07186],[79.00048,19.07442],[79.00957,19.07223],[79.01693,19.0727],[79.01819,19.075],[79.02192,19.07555],[79.03704,19.06282],[79.04682,19.05816],[79.04925,19.05871],[79.06593,19.04954],[79.07525,19.04076],[79.08548,19.02319],[79.09057,19.01023],[79.08955,19.00073],[79.09222,18.98912],[79.10414,18.96803],[79.10305,18.95769],[79.10675,18.94682],[79.13047,18.92159],[79.15237,18.90412],[79.17348,18.88081],[79.17771,18.87243],[79.18207,18.86852],[79.1885,18.86652],[79.23431,18.86052],[79.24903,18.85301],[79.26326,18.83533],[79.27132,18.82804],[79.28293,18.82209],[79.30747,18.81518],[79.33497,18.81477],[79.353,18.81963],[79.35922,18.82591],[79.37269,18.85013],[79.38109,18.85483],[79.39501,18.85706],[79.4204,18.85342],[79.44002,18.84416],[79.46291,18.8261],[79.48054,18.8175],[79.50047,18.79019],[79.51118,18.7847],[79.53268,18.78587],[79.54516,18.77767],[79.56155,18.77091],[79.59484,18.74915],[79.6034,18.74629],[79.61181,18.73925],[79.6182,18.73894],[79.6239,18.73242],[79.63289,18.72962],[79.63713,18.7233],[79.64088,18.72149],[79.64469,18.71704],[79.65154,18.71537],[79.66326,18.69025],[79.66777,18.68414],[79.67175,18.68259],[79.67913,18.67307],[79.68652,18.67052],[79.69285,18.67078],[79.6983,18.67286],[79.70048,18.678],[79.70845,18.6835],[79.71434,18.68545],[79.73312,18.68226],[79.74854,18.68241],[79.75903,18.68648],[79.76928,18.69658],[79.78589,18.69847],[79.79318,18.6947],[79.79762,18.69629],[79.80714,18.70461],[79.80803,18.70846],[79.81408,18.7175],[79.82436,18.7242],[79.82583,18.73513],[79.82018,18.74251],[79.8165,18.75122],[79.81784,18.75783],[79.82815,18.77036],[79.84167,18.78084],[79.84549,18.7882],[79.84729,18.79633],[79.8462,18.79991],[79.83,18.81814],[79.82487,18.8281],[79.82566,18.85446],[79.82796,18.86042],[79.83397,18.8681],[79.84082,18.87196],[79.85123,18.8677],[79.8578,18.85875],[79.86262,18.8429],[79.86668,18.83593],[79.87784,18.82866],[79.88737,18.82633],[79.90224,18.83008],[79.91395,18.82609],[79.91782,18.83255],[79.92364,18.83768],[79.9467,18.84948],[79.95851,18.85942],[79.96114,18.86424],[79.96126,18.87546],[79.95361,18.9045],[79.95742,18.92279],[79.95705,18.94288],[79.94162,18.99209],[79.94233,19.01249],[79.93809,19.04106],[79.93153,19.04833],[79.92242,19.04988],[79.90756,19.04481],[79.90017,19.0404],[79.87704,19.0388],[79.87175,19.04054],[79.86859,19.04424],[79.86636,19.05247],[79.86363,19.06652],[79.86319,19.07909],[79.85836,19.09585],[79.85941,19.10862],[79.86395,19.11542],[79.87375,19.12405],[79.91746,19.14683],[79.93103,19.15553],[79.92399,19.16518],[79.90952,19.16124],[79.90351,19.16363],[79.89487,19.1624],[79.8845,19.16426],[79.87433,19.17325],[79.8548,19.17308],[79.85219,19.17284],[79.85094,19.1683],[79.83865,19.16871],[79.83348,19.15834],[79.82031,19.15713],[79.81421,19.15106],[79.79922,19.15163],[79.78356,19.16217],[79.78178,19.16951],[79.78714,19.17585],[79.78726,19.18394],[79.77918,19.186],[79.7725,19.19001],[79.76211,19.18994],[79.76037,19.18937],[79.75933,19.18245],[79.75155,19.18216],[79.74376,19.18572],[79.73212,19.18682],[79.72304,19.19723],[79.71959,19.19783],[79.71688,19.19788],[79.71282,19.19462],[79.7115,19.18845],[79.70876,19.18912],[79.70721,19.19366],[79.70447,19.1938],[79.69745,19.18407],[79.69313,19.18401],[79.69095,19.18195],[79.68135,19.17966],[79.674,19.18726],[79.67626,19.19098],[79.6761,19.199],[79.65909,19.19946],[79.65391,19.20133],[79.65414,19.20482],[79.66372,19.20871],[79.66555,19.21353],[79.65635,19.21731],[79.64811,19.2166],[79.64655,19.21501],[79.64091,19.2194],[79.6342,19.21928],[79.62553,19.22655],[79.62241,19.23187],[79.62165,19.24251],[79.58453,19.23707],[79.57967,19.23425],[79.55551,19.23907],[79.55247,19.24208],[79.55258,19.24428],[79.5599,19.252],[79.56057,19.25836],[79.54968,19.26409],[79.54472,19.26223],[79.54156,19.26479]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"685","area_level":"District","area_name":"Kamareddy","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.65059,18.5463],[77.65207,18.55179],[77.64771,18.55299],[77.64791,18.55493],[77.64172,18.55533],[77.63962,18.55494],[77.634,18.54392],[77.62763,18.54812],[77.62925,18.55368],[77.62647,18.55189],[77.61519,18.55085],[77.61604,18.54897],[77.61319,18.5491],[77.6125,18.54448],[77.61056,18.54454],[77.61007,18.54988],[77.59637,18.54894],[77.5953,18.53554],[77.59206,18.53232],[77.59069,18.52667],[77.59657,18.5302],[77.60044,18.5273],[77.59883,18.52421],[77.60028,18.5223],[77.59707,18.51588],[77.58775,18.51286],[77.58591,18.504],[77.59429,18.49791],[77.5944,18.4962],[77.60471,18.49637],[77.60368,18.49294],[77.60623,18.4892],[77.60361,18.48368],[77.60313,18.47685],[77.59428,18.47691],[77.59225,18.48472],[77.57637,18.48678],[77.57286,18.46981],[77.56107,18.47026],[77.56024,18.46862],[77.54856,18.46858],[77.55076,18.46041],[77.56404,18.46102],[77.5836,18.45621],[77.583,18.44994],[77.5861,18.4494],[77.5853,18.44679],[77.5743,18.4418],[77.56907,18.44287],[77.56829,18.43947],[77.56418,18.4373],[77.5602,18.43728],[77.54471,18.44413],[77.53745,18.44499],[77.52773,18.4427],[77.52817,18.42891],[77.53731,18.42628],[77.5369,18.42425],[77.55667,18.41924],[77.55268,18.40169],[77.5516,18.3889],[77.54592,18.38869],[77.54319,18.38609],[77.5386,18.38588],[77.53561,18.38075],[77.52547,18.37271],[77.52405,18.3642],[77.52021,18.35718],[77.52234,18.34647],[77.52572,18.34212],[77.53159,18.33866],[77.55802,18.33142],[77.56387,18.3223],[77.57048,18.31811],[77.5714,18.30883],[77.55326,18.29809],[77.5514,18.29191],[77.56212,18.28481],[77.56762,18.28785],[77.57021,18.29253],[77.57285,18.29322],[77.57616,18.28873],[77.58185,18.28538],[77.60542,18.28135],[77.60059,18.27546],[77.61994,18.2745],[77.62543,18.2839],[77.64059,18.28599],[77.66513,18.28358],[77.68626,18.26651],[77.68758,18.26024],[77.70683,18.26098],[77.71164,18.25802],[77.71964,18.26029],[77.72885,18.25336],[77.73024,18.24545],[77.72806,18.23336],[77.73637,18.23492],[77.7378,18.22408],[77.74079,18.22573],[77.74339,18.22438],[77.74205,18.20526],[77.75848,18.20504],[77.76009,18.19913],[77.76801,18.19153],[77.76958,18.18813],[77.77119,18.18972],[77.77666,18.19046],[77.77695,18.19601],[77.77982,18.19983],[77.78645,18.19643],[77.78761,18.1987],[77.79656,18.20469],[77.80675,18.19985],[77.81097,18.19572],[77.82112,18.19645],[77.82697,18.19396],[77.8287,18.19488],[77.82931,18.20032],[77.83997,18.20378],[77.8488,18.20174],[77.85381,18.20754],[77.86501,18.20219],[77.86309,18.19985],[77.86388,18.19743],[77.86244,18.19435],[77.86865,18.18916],[77.88228,18.18669],[77.88949,18.18996],[77.89836,18.18947],[77.90203,18.19285],[77.90369,18.19236],[77.90084,18.18321],[77.90022,18.17309],[77.90341,18.16814],[77.89589,18.16157],[77.89466,18.15658],[77.9042,18.15242],[77.90245,18.14461],[77.90586,18.14421],[77.90996,18.14724],[77.91459,18.14109],[77.916,18.14366],[77.91439,18.14841],[77.916,18.14855],[77.91858,18.1452],[77.92091,18.14841],[77.92304,18.14733],[77.92523,18.14936],[77.9228,18.15093],[77.92047,18.15029],[77.92141,18.15295],[77.92793,18.15573],[77.93103,18.15343],[77.93118,18.14912],[77.93555,18.14899],[77.92915,18.14485],[77.9323,18.14213],[77.93047,18.14024],[77.92744,18.13939],[77.92486,18.14177],[77.91908,18.13643],[77.92024,18.1336],[77.92357,18.13356],[77.9252,18.13128],[77.92349,18.12789],[77.92028,18.12849],[77.91731,18.12488],[77.90898,18.12412],[77.91039,18.12245],[77.90913,18.12],[77.91418,18.11983],[77.91314,18.11582],[77.91622,18.11605],[77.91862,18.11327],[77.92015,18.11561],[77.9226,18.11345],[77.92481,18.1164],[77.92938,18.11601],[77.92685,18.10415],[77.92153,18.10348],[77.918,18.10637],[77.9141,18.10091],[77.91262,18.1025],[77.90883,18.10148],[77.90925,18.10283],[77.90564,18.10598],[77.9054,18.10084],[77.908,18.09987],[77.90549,18.09992],[77.90659,18.09836],[77.90549,18.0978],[77.90133,18.09997],[77.89878,18.09929],[77.9011,18.09907],[77.90188,18.0973],[77.8988,18.09394],[77.89517,18.09337],[77.8957,18.09127],[77.90274,18.09725],[77.9066,18.0973],[77.91102,18.09994],[77.9259,18.09748],[77.92982,18.09835],[77.93466,18.10407],[77.93683,18.11002],[77.93969,18.11172],[77.97566,18.11496],[77.98872,18.11086],[77.9951,18.10696],[77.99868,18.09476],[77.99867,18.08386],[78.00075,18.08128],[78.00185,18.08722],[78.00434,18.0877],[78.00904,18.08439],[78.00912,18.08096],[78.01098,18.08111],[78.01308,18.07542],[78.01427,18.07584],[78.01408,18.07842],[78.01588,18.07954],[78.00905,18.08863],[78.01217,18.09015],[78.01789,18.08655],[78.01987,18.08178],[78.02741,18.08164],[78.02937,18.08386],[78.03274,18.07659],[78.02863,18.07377],[78.03039,18.07073],[78.03274,18.07041],[78.03167,18.06882],[78.03409,18.06816],[78.03444,18.06433],[78.03742,18.06945],[78.04215,18.06557],[78.04508,18.0681],[78.04291,18.06916],[78.04045,18.07524],[78.04403,18.07785],[78.04404,18.07971],[78.04681,18.07988],[78.05057,18.07374],[78.05235,18.07361],[78.05361,18.07901],[78.05544,18.07932],[78.05988,18.0751],[78.05951,18.07178],[78.06408,18.07189],[78.06759,18.07015],[78.06607,18.06847],[78.0689,18.06534],[78.06891,18.06216],[78.07157,18.05987],[78.07429,18.0658],[78.07312,18.07022],[78.07431,18.07218],[78.07669,18.07209],[78.07888,18.0688],[78.08355,18.06733],[78.08535,18.07226],[78.08971,18.06834],[78.09388,18.06838],[78.09716,18.07049],[78.0989,18.07399],[78.10113,18.09045],[78.10634,18.09346],[78.11111,18.09258],[78.11496,18.08906],[78.11516,18.07646],[78.1169,18.07266],[78.12472,18.06999],[78.13442,18.07143],[78.13841,18.06877],[78.14314,18.06831],[78.1541,18.08571],[78.1603,18.08641],[78.17421,18.09307],[78.17962,18.09752],[78.17689,18.11829],[78.1804,18.12408],[78.17981,18.13501],[78.17704,18.13847],[78.17523,18.14561],[78.16929,18.15295],[78.17073,18.15664],[78.16885,18.16732],[78.17868,18.19505],[78.18061,18.20454],[78.18775,18.20676],[78.195,18.20693],[78.20652,18.21751],[78.21526,18.21229],[78.21738,18.20762],[78.22178,18.1826],[78.21639,18.17548],[78.22751,18.17533],[78.2295,18.17064],[78.23792,18.16197],[78.24157,18.15856],[78.24866,18.15541],[78.25695,18.13958],[78.27779,18.14314],[78.29015,18.15861],[78.2977,18.1619],[78.31381,18.17904],[78.31269,18.20235],[78.33247,18.1962],[78.3373,18.18875],[78.33614,18.18289],[78.33784,18.18009],[78.35781,18.17183],[78.36538,18.15476],[78.36616,18.15092],[78.36318,18.14677],[78.3744,18.14462],[78.37578,18.14158],[78.37508,18.13505],[78.38453,18.12345],[78.38966,18.12879],[78.39661,18.12902],[78.40005,18.13097],[78.40763,18.12926],[78.41187,18.13067],[78.42137,18.14123],[78.42255,18.15185],[78.42477,18.15636],[78.42709,18.15652],[78.4331,18.16291],[78.441,18.15594],[78.44573,18.14497],[78.44629,18.14057],[78.44155,18.13008],[78.45819,18.12063],[78.4718,18.12756],[78.47983,18.12605],[78.48476,18.13037],[78.49152,18.13253],[78.49153,18.13565],[78.4833,18.14165],[78.48378,18.14832],[78.49147,18.15554],[78.50221,18.17543],[78.51209,18.17035],[78.51584,18.1664],[78.51999,18.17288],[78.5219,18.18238],[78.52706,18.18556],[78.53234,18.18448],[78.53709,18.18666],[78.54016,18.18267],[78.54268,18.18304],[78.54449,18.1798],[78.54772,18.18118],[78.54997,18.17859],[78.55799,18.17639],[78.56522,18.17567],[78.56897,18.18015],[78.56939,18.19597],[78.56633,18.20271],[78.56119,18.20711],[78.56757,18.22319],[78.55954,18.23604],[78.55353,18.25102],[78.55335,18.25805],[78.54371,18.26462],[78.54191,18.26752],[78.5433,18.27028],[78.54033,18.27319],[78.5319,18.2715],[78.52121,18.27871],[78.52375,18.28188],[78.52393,18.28811],[78.52863,18.29176],[78.53395,18.29113],[78.54123,18.30006],[78.53819,18.30902],[78.53726,18.31782],[78.54955,18.33641],[78.54452,18.34297],[78.54624,18.34534],[78.54389,18.35109],[78.53336,18.36053],[78.5354,18.37009],[78.53021,18.3798],[78.53154,18.38754],[78.54139,18.38898],[78.56294,18.38548],[78.56498,18.39052],[78.54748,18.4049],[78.54191,18.41242],[78.54147,18.42002],[78.55179,18.42697],[78.55407,18.43083],[78.54736,18.45277],[78.54339,18.45974],[78.53301,18.46283],[78.53018,18.46549],[78.52496,18.46337],[78.52099,18.46444],[78.52132,18.46148],[78.51818,18.45641],[78.50617,18.45147],[78.49863,18.44557],[78.49208,18.43777],[78.47715,18.44057],[78.4692,18.44608],[78.46537,18.45239],[78.46431,18.46041],[78.46075,18.46538],[78.45224,18.47226],[78.45466,18.47738],[78.45386,18.4812],[78.45258,18.4827],[78.44512,18.48328],[78.44228,18.4779],[78.42463,18.47498],[78.40653,18.48257],[78.3988,18.48201],[78.39242,18.46619],[78.38258,18.45372],[78.36314,18.45443],[78.35443,18.45919],[78.35038,18.45742],[78.34573,18.46292],[78.33451,18.46361],[78.32944,18.46688],[78.3166,18.46518],[78.3139,18.4598],[78.30764,18.45624],[78.30727,18.45398],[78.29777,18.45591],[78.28099,18.45369],[78.27527,18.458],[78.2749,18.45425],[78.27119,18.45333],[78.26966,18.45062],[78.26828,18.45296],[78.25976,18.45268],[78.25453,18.45822],[78.25737,18.46072],[78.25365,18.46662],[78.25527,18.46676],[78.25476,18.47196],[78.25812,18.47587],[78.24997,18.48641],[78.24255,18.48635],[78.23642,18.49212],[78.22488,18.49084],[78.21688,18.49896],[78.21244,18.49836],[78.20226,18.50129],[78.2005,18.50522],[78.19287,18.5038],[78.19217,18.50873],[78.18596,18.50719],[78.17576,18.50092],[78.17279,18.49775],[78.16645,18.48389],[78.15959,18.47726],[78.1349,18.4823],[78.13335,18.48463],[78.12127,18.48822],[78.11806,18.49268],[78.10592,18.49156],[78.10695,18.4978],[78.10354,18.50417],[78.09123,18.50865],[78.08483,18.50909],[78.07625,18.51455],[78.06976,18.51117],[78.06987,18.50834],[78.06216,18.51381],[78.03948,18.51776],[78.03417,18.50893],[78.03942,18.50065],[78.03616,18.49892],[78.03639,18.49393],[78.04136,18.48938],[78.03822,18.48733],[78.03755,18.48297],[78.03644,18.47279],[78.03784,18.46489],[78.02214,18.43615],[77.97486,18.44628],[77.98152,18.45923],[77.97494,18.47049],[77.97085,18.47428],[77.95294,18.48202],[77.94992,18.48722],[77.93754,18.49146],[77.90767,18.49317],[77.90005,18.49184],[77.89522,18.49478],[77.88929,18.49243],[77.88515,18.49525],[77.88132,18.50174],[77.8647,18.50797],[77.85371,18.50329],[77.83744,18.50649],[77.83035,18.50447],[77.82156,18.50474],[77.81964,18.50231],[77.80006,18.50104],[77.78946,18.49707],[77.78368,18.50399],[77.77836,18.50561],[77.77397,18.50496],[77.77302,18.50287],[77.75669,18.50249],[77.76069,18.51214],[77.76147,18.52561],[77.75771,18.53032],[77.75684,18.53611],[77.74857,18.54263],[77.7385,18.55679],[77.72325,18.55333],[77.71097,18.5563],[77.70156,18.55517],[77.68833,18.54495],[77.68069,18.54525],[77.6646,18.5358],[77.66166,18.53186],[77.65586,18.5309],[77.65135,18.53226],[77.6459,18.53884],[77.64922,18.54119],[77.65059,18.5463]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"686","area_level":"District","area_name":"Hanumakonda","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.58245,18.23693],[79.57809,18.24286],[79.58209,18.25656],[79.55189,18.26782],[79.54872,18.25264],[79.55026,18.24777],[79.54046,18.23789],[79.53467,18.2352],[79.51951,18.24122],[79.49788,18.23466],[79.49152,18.2294],[79.48627,18.23124],[79.48236,18.22915],[79.48131,18.23183],[79.47384,18.22995],[79.47326,18.21972],[79.46807,18.21022],[79.46539,18.20071],[79.47352,18.19563],[79.46812,18.1929],[79.46663,18.18947],[79.46105,18.18734],[79.46288,18.18048],[79.46148,18.17727],[79.46202,18.16441],[79.44721,18.16364],[79.44749,18.1589],[79.43767,18.15926],[79.43117,18.15683],[79.42767,18.15725],[79.42448,18.16563],[79.41918,18.16919],[79.41318,18.16489],[79.39906,18.1662],[79.39762,18.16276],[79.40092,18.16108],[79.39692,18.14804],[79.3863,18.15158],[79.37937,18.1567],[79.3656,18.13977],[79.35387,18.13991],[79.3463,18.14679],[79.32734,18.14815],[79.31736,18.13988],[79.31392,18.13415],[79.29996,18.12956],[79.29385,18.12591],[79.29054,18.12095],[79.29317,18.10279],[79.29088,18.0893],[79.28317,18.07097],[79.27978,18.06763],[79.28182,18.06573],[79.26618,18.03953],[79.25756,18.04231],[79.24622,18.05075],[79.23372,18.05101],[79.22727,18.05409],[79.2258,18.0517],[79.22125,18.03491],[79.22577,18.02311],[79.22422,18.02165],[79.22553,18.01265],[79.23285,17.99449],[79.22865,17.98775],[79.23535,17.98578],[79.26335,17.98363],[79.27106,17.9786],[79.26751,17.95268],[79.27328,17.95465],[79.28619,17.95311],[79.28708,17.95155],[79.29905,17.9503],[79.30442,17.94753],[79.30779,17.94919],[79.32409,17.9438],[79.33605,17.93844],[79.34277,17.92116],[79.352,17.92387],[79.35361,17.92076],[79.36868,17.90987],[79.37219,17.91004],[79.38881,17.90089],[79.39038,17.90051],[79.39439,17.90804],[79.39736,17.90279],[79.39988,17.90283],[79.40427,17.89847],[79.41168,17.89953],[79.41481,17.89702],[79.41792,17.8979],[79.42012,17.89596],[79.43736,17.91321],[79.44774,17.90919],[79.44911,17.90485],[79.44764,17.89632],[79.44994,17.88479],[79.44909,17.87896],[79.46408,17.87285],[79.46401,17.8752],[79.47798,17.8928],[79.48319,17.8915],[79.48748,17.88769],[79.48854,17.88958],[79.48683,17.89043],[79.4887,17.891],[79.49429,17.90015],[79.5028,17.89655],[79.50601,17.89858],[79.50982,17.89734],[79.52372,17.88617],[79.52931,17.88641],[79.5303,17.88262],[79.54626,17.88942],[79.55616,17.88833],[79.55601,17.89106],[79.56661,17.91258],[79.58743,17.89786],[79.60783,17.89741],[79.6083,17.90819],[79.61417,17.90837],[79.61909,17.91791],[79.61943,17.92517],[79.62553,17.92563],[79.627,17.94062],[79.63163,17.95336],[79.63005,17.95975],[79.63115,17.96695],[79.62206,17.97308],[79.62322,17.97732],[79.62502,17.97719],[79.63109,17.98229],[79.64034,17.98546],[79.64306,18.00088],[79.63661,18.00303],[79.63698,18.00568],[79.63123,18.00749],[79.63139,18.00976],[79.63617,18.0118],[79.64597,18.00932],[79.65189,18.01138],[79.65922,18.02372],[79.67056,18.02336],[79.67166,18.02711],[79.666,18.03281],[79.66662,18.03389],[79.65099,18.04224],[79.64605,18.03892],[79.64266,18.04287],[79.64187,18.03818],[79.62084,18.03971],[79.62217,18.04617],[79.62075,18.05246],[79.62331,18.06813],[79.61772,18.06866],[79.6204,18.07342],[79.61238,18.09237],[79.60326,18.09634],[79.6052,18.10706],[79.60495,18.11701],[79.61416,18.11517],[79.62198,18.11672],[79.6239,18.11867],[79.62698,18.11882],[79.62732,18.12459],[79.62198,18.13737],[79.61324,18.13754],[79.60126,18.14146],[79.60476,18.17315],[79.60978,18.17634],[79.60787,18.18499],[79.61085,18.18401],[79.6127,18.18848],[79.59698,18.1982],[79.59803,18.2149],[79.59171,18.21957],[79.59084,18.2262],[79.58245,18.23693]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"687","area_level":"District","area_name":"Jayashankar Bhupalapally","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.85928,18.85514],[79.85123,18.8677],[79.84082,18.87196],[79.8331,18.86726],[79.82796,18.86042],[79.82566,18.85446],[79.82533,18.82642],[79.8352,18.81135],[79.8462,18.79991],[79.84708,18.7946],[79.84167,18.78084],[79.82815,18.77036],[79.81784,18.75783],[79.8165,18.75122],[79.82018,18.74251],[79.82583,18.73513],[79.82449,18.7248],[79.81408,18.7175],[79.80721,18.7049],[79.81123,18.70338],[79.81445,18.69525],[79.82164,18.69184],[79.82186,18.68809],[79.83055,18.6805],[79.83242,18.67564],[79.8305,18.67306],[79.83165,18.66789],[79.83079,18.65586],[79.81362,18.63336],[79.81008,18.63108],[79.80829,18.62575],[79.80417,18.62129],[79.80151,18.61074],[79.8022,18.60695],[79.79127,18.58562],[79.79251,18.57349],[79.78433,18.56867],[79.75305,18.57353],[79.74855,18.57095],[79.7413,18.57039],[79.73651,18.57404],[79.72481,18.57356],[79.71953,18.56628],[79.71204,18.56082],[79.70817,18.54806],[79.71048,18.54363],[79.70791,18.53915],[79.70903,18.53716],[79.70705,18.53361],[79.70847,18.52851],[79.70573,18.5207],[79.69622,18.5108],[79.69573,18.50698],[79.69064,18.50403],[79.67723,18.4903],[79.66986,18.48024],[79.65373,18.47606],[79.64218,18.47555],[79.63284,18.4785],[79.62289,18.48644],[79.61205,18.46363],[79.60635,18.46736],[79.60257,18.47452],[79.5968,18.47262],[79.59103,18.46198],[79.58786,18.46189],[79.59047,18.45032],[79.58802,18.44562],[79.56706,18.42388],[79.57095,18.42023],[79.56878,18.41598],[79.58048,18.41327],[79.57826,18.409],[79.5758,18.39089],[79.57941,18.39092],[79.5804,18.38806],[79.5756,18.37805],[79.57479,18.36923],[79.57681,18.36682],[79.57546,18.35911],[79.57776,18.35675],[79.57671,18.3538],[79.5795,18.34874],[79.57461,18.33108],[79.57617,18.32883],[79.57541,18.31893],[79.57392,18.31703],[79.57652,18.30917],[79.57253,18.30764],[79.56695,18.3099],[79.56503,18.30924],[79.55977,18.30001],[79.56286,18.29815],[79.56091,18.29583],[79.56101,18.28723],[79.56669,18.28362],[79.5674,18.27987],[79.56719,18.27493],[79.56309,18.26283],[79.57187,18.26138],[79.58209,18.25656],[79.58591,18.25966],[79.59739,18.26278],[79.60668,18.25918],[79.60999,18.26222],[79.62042,18.2624],[79.62155,18.26816],[79.62333,18.26804],[79.6274,18.27301],[79.62832,18.28165],[79.63294,18.28526],[79.63722,18.28125],[79.63505,18.27651],[79.65251,18.25247],[79.6707,18.25532],[79.69707,18.27773],[79.70439,18.27158],[79.70167,18.26705],[79.7002,18.25793],[79.69597,18.25457],[79.69532,18.25092],[79.70552,18.24655],[79.7108,18.24093],[79.71486,18.2335],[79.71406,18.22772],[79.7167,18.22091],[79.72289,18.21977],[79.72248,18.20946],[79.73582,18.205],[79.73614,18.20284],[79.72821,18.19861],[79.7228,18.20056],[79.72222,18.19771],[79.724,18.19444],[79.73384,18.19003],[79.73475,18.18663],[79.74005,18.18112],[79.74254,18.18052],[79.7438,18.17747],[79.74733,18.17866],[79.75372,18.17427],[79.76335,18.18217],[79.78131,18.1908],[79.78754,18.19637],[79.79604,18.19825],[79.80073,18.19473],[79.80032,18.19054],[79.80369,18.18237],[79.80304,18.17731],[79.80908,18.16197],[79.80922,18.15671],[79.81746,18.14466],[79.81827,18.14063],[79.82781,18.13657],[79.83418,18.13754],[79.84095,18.13469],[79.842,18.13245],[79.85869,18.15023],[79.8443,18.15822],[79.83635,18.18639],[79.86308,18.20286],[79.84446,18.21281],[79.84416,18.21436],[79.84323,18.22206],[79.85414,18.24021],[79.85742,18.25091],[79.85342,18.25963],[79.85671,18.25843],[79.86483,18.26004],[79.87229,18.27737],[79.88148,18.28311],[79.88768,18.28336],[79.88921,18.28529],[79.88261,18.29473],[79.88203,18.29925],[79.89285,18.30692],[79.89557,18.3124],[79.89294,18.31705],[79.8959,18.31855],[79.91664,18.31815],[79.93161,18.31585],[79.94455,18.31839],[79.9539,18.3395],[79.94922,18.34461],[79.93915,18.34638],[79.92542,18.35162],[79.90963,18.37099],[79.90304,18.36995],[79.8996,18.37109],[79.89746,18.38081],[79.89528,18.38279],[79.8959,18.38876],[79.89234,18.39278],[79.89094,18.39928],[79.90787,18.39934],[79.9223,18.40615],[79.93953,18.39636],[79.99017,18.38648],[80.04232,18.4043],[80.05728,18.4016],[80.07422,18.38832],[80.07889,18.39127],[80.07728,18.39633],[80.08095,18.42113],[80.09858,18.4317],[80.12363,18.42589],[80.15081,18.41394],[80.14563,18.38293],[80.14246,18.37949],[80.14451,18.37469],[80.17261,18.34939],[80.21671,18.38949],[80.21752,18.40602],[80.22312,18.41921],[80.2244,18.42729],[80.22951,18.55326],[80.26774,18.58984],[80.30282,18.58884],[80.344,18.59831],[80.3342,18.61338],[80.33102,18.62821],[80.32749,18.63538],[80.31867,18.64215],[80.30602,18.6825],[80.28417,18.7168],[80.27995,18.72074],[80.27149,18.7233],[80.26614,18.72055],[80.26501,18.7175],[80.25223,18.70681],[80.23864,18.70573],[80.23366,18.70241],[80.22968,18.70186],[80.22628,18.7056],[80.21933,18.70792],[80.21277,18.70572],[80.20043,18.69256],[80.19937,18.68321],[80.19657,18.6808],[80.19047,18.68046],[80.1787,18.68327],[80.17416,18.68818],[80.16862,18.69971],[80.15771,18.70098],[80.14846,18.69309],[80.14002,18.693],[80.12856,18.68743],[80.12323,18.68076],[80.1161,18.68106],[80.09904,18.69448],[80.08851,18.70728],[80.08207,18.70725],[80.07459,18.71052],[80.06926,18.71957],[80.06462,18.72326],[80.05694,18.72332],[80.0528,18.72506],[80.04141,18.74299],[80.03868,18.75297],[80.03455,18.75499],[80.02498,18.75494],[80.01854,18.77038],[80.00099,18.77607],[79.99809,18.77592],[79.99583,18.77082],[79.99305,18.76993],[79.96415,18.77382],[79.95915,18.7773],[79.94949,18.78915],[79.929,18.80263],[79.92219,18.80884],[79.91394,18.82624],[79.90224,18.83008],[79.88624,18.82648],[79.87784,18.82866],[79.86885,18.83375],[79.86262,18.8429],[79.85928,18.85514]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"688","area_level":"District","area_name":"Mahabubabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.03138,18.11549],[80.01807,18.11703],[79.99189,18.10754],[79.98123,18.0606],[79.98487,18.05376],[79.98079,18.0391],[79.97935,18.02025],[79.98824,18.00481],[79.99395,18.00091],[79.98636,17.99165],[79.98388,17.97094],[79.98802,17.96943],[79.98585,17.96164],[79.98569,17.95367],[79.98091,17.94906],[79.97673,17.95238],[79.97925,17.94668],[79.98352,17.94195],[79.98584,17.93539],[79.98562,17.93119],[79.98939,17.92731],[79.99059,17.92007],[79.99424,17.91701],[79.99346,17.91228],[79.98874,17.90484],[79.99097,17.89637],[79.99424,17.89084],[79.99179,17.88668],[79.99117,17.88141],[79.98891,17.88161],[79.98856,17.87966],[79.98467,17.87704],[79.98127,17.87668],[79.98286,17.87355],[79.97538,17.8614],[79.96088,17.86428],[79.95275,17.86074],[79.95156,17.84411],[79.94721,17.83568],[79.94282,17.83943],[79.93868,17.84061],[79.9344,17.83409],[79.93472,17.82636],[79.93093,17.81871],[79.91777,17.8094],[79.91538,17.79885],[79.90995,17.80418],[79.91097,17.80472],[79.90894,17.81255],[79.91069,17.81343],[79.89489,17.81373],[79.89128,17.80987],[79.8865,17.8091],[79.88744,17.81153],[79.87557,17.80845],[79.88262,17.79071],[79.88344,17.77936],[79.89499,17.7686],[79.90035,17.76672],[79.90373,17.76168],[79.90213,17.75096],[79.90367,17.74685],[79.89895,17.74124],[79.89338,17.7301],[79.87875,17.73695],[79.87331,17.74169],[79.86923,17.74236],[79.87209,17.73926],[79.86429,17.73521],[79.86689,17.73044],[79.86134,17.72806],[79.86131,17.7231],[79.86353,17.7227],[79.86358,17.71956],[79.84461,17.71871],[79.8215,17.71337],[79.81897,17.70901],[79.82442,17.69516],[79.82218,17.69534],[79.81901,17.69931],[79.80542,17.70025],[79.79105,17.70877],[79.78384,17.70591],[79.78187,17.70308],[79.77886,17.70316],[79.77129,17.69719],[79.77145,17.6891],[79.76777,17.68668],[79.7596,17.69057],[79.75325,17.69083],[79.74984,17.68791],[79.74155,17.68894],[79.72284,17.69589],[79.72441,17.69913],[79.72154,17.70084],[79.71544,17.69784],[79.71672,17.6951],[79.71364,17.68945],[79.71413,17.68384],[79.70523,17.68223],[79.69137,17.68653],[79.68052,17.66117],[79.68253,17.65471],[79.68006,17.65419],[79.67688,17.65059],[79.66143,17.64952],[79.65786,17.64373],[79.65351,17.62796],[79.63549,17.62339],[79.62148,17.62419],[79.61641,17.62184],[79.61387,17.63616],[79.5777,17.62848],[79.57833,17.61522],[79.58449,17.60937],[79.58558,17.6014],[79.5909,17.59431],[79.59035,17.59021],[79.58603,17.583],[79.5793,17.57619],[79.58604,17.57096],[79.59109,17.5637],[79.59242,17.55736],[79.60031,17.552],[79.60009,17.55015],[79.6026,17.54795],[79.59968,17.54201],[79.59417,17.53789],[79.59196,17.53008],[79.58968,17.52891],[79.59511,17.52724],[79.59916,17.51608],[79.59923,17.51174],[79.60283,17.50775],[79.60364,17.49874],[79.60961,17.49656],[79.6128,17.49992],[79.61628,17.49876],[79.62077,17.50028],[79.62639,17.49647],[79.62959,17.49066],[79.63914,17.48631],[79.6502,17.49307],[79.65544,17.49401],[79.6591,17.48435],[79.65648,17.47079],[79.69025,17.45463],[79.69737,17.45465],[79.69706,17.45597],[79.69987,17.45613],[79.70027,17.44782],[79.70474,17.44469],[79.70693,17.44701],[79.71013,17.44552],[79.71835,17.43419],[79.72956,17.42835],[79.73763,17.43033],[79.74363,17.4291],[79.75201,17.43983],[79.75433,17.43796],[79.762,17.42986],[79.761,17.4259],[79.76222,17.40783],[79.76726,17.40585],[79.77246,17.39935],[79.77554,17.40302],[79.79313,17.39694],[79.79698,17.39349],[79.79143,17.38394],[79.78768,17.3842],[79.78117,17.38109],[79.77765,17.36899],[79.79613,17.35399],[79.79278,17.33639],[79.79463,17.33044],[79.7928,17.32601],[79.80373,17.32431],[79.80622,17.3264],[79.81109,17.32674],[79.81511,17.33134],[79.83146,17.33594],[79.84352,17.3292],[79.84985,17.33463],[79.87543,17.33055],[79.87544,17.33649],[79.87916,17.34314],[79.87887,17.35354],[79.88234,17.35716],[79.89134,17.35329],[79.89584,17.35647],[79.89729,17.36713],[79.89936,17.37207],[79.90249,17.37326],[79.90311,17.37587],[79.93015,17.3725],[79.93058,17.36636],[79.93699,17.37471],[79.94035,17.38216],[79.93661,17.39507],[79.95652,17.3959],[79.96477,17.39839],[79.96893,17.39984],[79.9697,17.40655],[79.97977,17.40602],[79.9915,17.39937],[79.9934,17.38631],[79.99247,17.36406],[80.01522,17.35979],[80.02796,17.35476],[80.03657,17.35489],[80.04662,17.35232],[80.05232,17.34661],[80.05728,17.34649],[80.06857,17.35312],[80.07396,17.35096],[80.07494,17.35278],[80.0729,17.3568],[80.07663,17.36427],[80.08582,17.36714],[80.10044,17.35799],[80.10845,17.35867],[80.11266,17.36702],[80.11146,17.37039],[80.11267,17.37347],[80.11636,17.37009],[80.11702,17.37586],[80.11809,17.37826],[80.12017,17.37872],[80.12038,17.38267],[80.12378,17.38251],[80.1283,17.37954],[80.12993,17.38825],[80.14373,17.39387],[80.16074,17.37682],[80.16214,17.38961],[80.16027,17.40317],[80.16634,17.40761],[80.16249,17.42048],[80.17011,17.43853],[80.18091,17.43922],[80.19166,17.44295],[80.20317,17.44204],[80.19823,17.46383],[80.19525,17.47082],[80.19581,17.47603],[80.20024,17.48682],[80.20409,17.47453],[80.20864,17.47433],[80.20986,17.47097],[80.21656,17.47527],[80.22099,17.49205],[80.22486,17.49633],[80.22771,17.50455],[80.22639,17.50737],[80.22881,17.52254],[80.22827,17.53056],[80.20494,17.54556],[80.20151,17.55738],[80.21788,17.58995],[80.22321,17.60622],[80.21364,17.60973],[80.20978,17.61367],[80.20663,17.62468],[80.20681,17.65271],[80.20871,17.65502],[80.21389,17.65582],[80.21783,17.66011],[80.22118,17.66092],[80.23027,17.66038],[80.23074,17.65723],[80.23672,17.6553],[80.2379,17.67175],[80.24189,17.6847],[80.24106,17.69218],[80.24769,17.70413],[80.24725,17.70937],[80.24506,17.7133],[80.24785,17.71903],[80.24481,17.72197],[80.24692,17.72595],[80.24849,17.7382],[80.2499,17.7427],[80.25258,17.74281],[80.25943,17.75012],[80.25671,17.76006],[80.258,17.77753],[80.25243,17.77981],[80.25398,17.78887],[80.25584,17.79093],[80.25307,17.79873],[80.25401,17.80346],[80.24785,17.82441],[80.25783,17.83626],[80.26311,17.84579],[80.26631,17.85326],[80.26595,17.86128],[80.27268,17.87029],[80.27275,17.87675],[80.27697,17.88128],[80.2778,17.90686],[80.26995,17.91543],[80.26765,17.92593],[80.27026,17.94543],[80.26847,17.95052],[80.27502,17.96636],[80.29432,17.96448],[80.30968,17.97529],[80.31131,17.98308],[80.31503,17.98828],[80.31618,17.99597],[80.30457,18.00005],[80.29447,18.00046],[80.28548,17.99789],[80.28117,17.99827],[80.25883,18.01589],[80.24755,18.02938],[80.2375,18.03712],[80.18578,18.06254],[80.17223,18.07562],[80.16416,18.08071],[80.14948,18.08379],[80.14489,18.09485],[80.11318,18.08278],[80.10073,18.08195],[80.08908,18.07332],[80.07939,18.07051],[80.07625,18.0745],[80.05459,18.0854],[80.03619,18.11542],[80.03138,18.11549]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"689","area_level":"District","area_name":"Jangoan","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.19232,18.00163],[79.18424,17.99387],[79.17429,17.994],[79.1629,17.99113],[79.15347,17.99198],[79.139,17.97806],[79.14379,17.96591],[79.13147,17.94678],[79.12608,17.94502],[79.12135,17.94124],[79.11514,17.92948],[79.10595,17.92159],[79.10224,17.91433],[79.1133,17.90604],[79.12429,17.90222],[79.11169,17.89897],[79.1033,17.88569],[79.09214,17.87317],[79.0804,17.8734],[79.07274,17.87536],[79.07162,17.87369],[79.06496,17.87359],[79.05469,17.86922],[79.04835,17.86087],[79.04376,17.86087],[79.03915,17.8723],[79.02017,17.8761],[79.01092,17.86443],[79.0031,17.85835],[79.00027,17.84806],[79.0011,17.84584],[78.99865,17.8448],[78.99247,17.84929],[78.98761,17.85795],[78.98187,17.85854],[78.97371,17.86217],[78.97137,17.86809],[78.96806,17.86867],[78.9622,17.86577],[78.95784,17.86686],[78.9501,17.87174],[78.94559,17.87943],[78.93684,17.87623],[78.93291,17.87801],[78.92986,17.87758],[78.92106,17.87314],[78.92029,17.86645],[78.91798,17.86379],[78.91672,17.85773],[78.91738,17.84876],[78.92217,17.83653],[78.9122,17.8426],[78.90565,17.84457],[78.90129,17.84391],[78.89889,17.83989],[78.88871,17.84162],[78.8824,17.83467],[78.87748,17.83373],[78.87833,17.82619],[78.86763,17.82513],[78.86668,17.80943],[78.87123,17.80763],[78.88072,17.80954],[78.89171,17.8056],[78.89965,17.80484],[78.90078,17.80807],[78.90714,17.81254],[78.92127,17.80237],[78.93783,17.79807],[78.94848,17.78822],[78.95747,17.7883],[78.96055,17.79193],[78.97609,17.7946],[78.97979,17.7982],[78.99094,17.79359],[78.99066,17.79077],[78.9939,17.78942],[78.9919,17.78557],[79.00133,17.77082],[78.99751,17.7618],[78.99569,17.75095],[79.00399,17.74213],[79.00472,17.73686],[79.00882,17.73478],[79.00818,17.73328],[79.02234,17.71857],[79.02499,17.71285],[79.03334,17.70795],[79.03747,17.70952],[79.04011,17.71415],[79.04044,17.72045],[79.0461,17.726],[79.06884,17.71919],[79.08271,17.71061],[79.08392,17.70694],[79.08957,17.7015],[79.08938,17.69554],[79.09127,17.69095],[79.09435,17.68619],[79.09795,17.68416],[79.09811,17.67892],[79.09969,17.67749],[79.11913,17.66886],[79.1233,17.66833],[79.12677,17.67313],[79.13054,17.6717],[79.12952,17.65794],[79.13477,17.64281],[79.14042,17.63858],[79.14416,17.62819],[79.15766,17.62195],[79.15726,17.61867],[79.15373,17.61363],[79.15204,17.59847],[79.15371,17.59363],[79.15123,17.58733],[79.15667,17.58546],[79.16766,17.57543],[79.16629,17.56919],[79.14937,17.55739],[79.13614,17.5445],[79.13619,17.53283],[79.13991,17.52426],[79.15743,17.52405],[79.16782,17.51959],[79.16776,17.51514],[79.17664,17.51021],[79.18895,17.50882],[79.19127,17.51074],[79.19812,17.51209],[79.2052,17.51023],[79.21421,17.49995],[79.2298,17.49687],[79.23792,17.48928],[79.24491,17.47863],[79.25512,17.47139],[79.25713,17.47091],[79.26159,17.47827],[79.2631,17.49048],[79.26738,17.49341],[79.26827,17.49667],[79.27472,17.49764],[79.29375,17.48647],[79.28606,17.47463],[79.28515,17.4692],[79.29165,17.46948],[79.30569,17.46177],[79.31453,17.45427],[79.32811,17.45081],[79.34071,17.45636],[79.34382,17.46633],[79.35595,17.47612],[79.35927,17.48225],[79.36607,17.48603],[79.36898,17.4914],[79.36297,17.50073],[79.373,17.50304],[79.37886,17.51116],[79.38371,17.51168],[79.40207,17.50216],[79.41253,17.49858],[79.42456,17.50248],[79.42933,17.51152],[79.43019,17.51664],[79.45337,17.51175],[79.4724,17.51456],[79.4851,17.51011],[79.50086,17.49622],[79.51679,17.49416],[79.52181,17.49476],[79.52464,17.49902],[79.52334,17.50556],[79.52608,17.51239],[79.53072,17.51788],[79.54046,17.5242],[79.54155,17.52696],[79.55136,17.51512],[79.55388,17.50824],[79.56597,17.49731],[79.57002,17.5019],[79.57603,17.50356],[79.58417,17.50297],[79.59168,17.499],[79.59612,17.49941],[79.59723,17.50129],[79.58989,17.5202],[79.59173,17.52238],[79.58962,17.52403],[79.58968,17.52891],[79.59196,17.53008],[79.59417,17.53789],[79.59968,17.54201],[79.6026,17.54795],[79.60009,17.55015],[79.60031,17.552],[79.59242,17.55736],[79.59109,17.5637],[79.58604,17.57096],[79.5793,17.57619],[79.58603,17.583],[79.59035,17.59021],[79.5909,17.59431],[79.58558,17.6014],[79.58449,17.60937],[79.57868,17.61451],[79.57784,17.62037],[79.57231,17.61781],[79.56222,17.61917],[79.54583,17.63008],[79.54047,17.63789],[79.53645,17.63027],[79.52446,17.63311],[79.52222,17.66136],[79.50354,17.66109],[79.48982,17.6629],[79.49111,17.66588],[79.48132,17.67484],[79.48973,17.69001],[79.49059,17.69618],[79.49022,17.69823],[79.481,17.70531],[79.48688,17.71149],[79.49501,17.71551],[79.49894,17.71664],[79.50229,17.71541],[79.50419,17.72419],[79.49534,17.73833],[79.49082,17.74179],[79.481,17.74524],[79.48644,17.75265],[79.49048,17.75447],[79.50534,17.74862],[79.51087,17.76686],[79.51459,17.77409],[79.51493,17.79258],[79.51344,17.80442],[79.51527,17.81596],[79.51213,17.82279],[79.51402,17.82741],[79.52092,17.82953],[79.52498,17.83264],[79.5247,17.85222],[79.52734,17.85786],[79.52607,17.8647],[79.52867,17.86848],[79.53046,17.8789],[79.52931,17.88641],[79.52372,17.88617],[79.50982,17.89734],[79.50601,17.89858],[79.5028,17.89655],[79.49429,17.90015],[79.4887,17.891],[79.48683,17.89043],[79.48854,17.88958],[79.48748,17.88769],[79.48319,17.8915],[79.47798,17.8928],[79.46401,17.8752],[79.46408,17.87285],[79.45842,17.87442],[79.44909,17.87896],[79.44994,17.88479],[79.44764,17.89632],[79.44911,17.90485],[79.44774,17.90919],[79.43736,17.91321],[79.42012,17.89596],[79.41792,17.8979],[79.41481,17.89702],[79.41168,17.89953],[79.40427,17.89847],[79.39988,17.90283],[79.39736,17.90279],[79.39439,17.90804],[79.39038,17.90051],[79.38881,17.90089],[79.37219,17.91004],[79.36868,17.90987],[79.35361,17.92076],[79.352,17.92387],[79.34277,17.92116],[79.33605,17.93844],[79.32409,17.9438],[79.30779,17.94919],[79.30442,17.94753],[79.29905,17.9503],[79.28708,17.95155],[79.28619,17.95311],[79.27328,17.95465],[79.26751,17.95268],[79.27106,17.9786],[79.26335,17.98363],[79.23199,17.98633],[79.22865,17.98775],[79.23285,17.99448],[79.193,17.99967],[79.19232,18.00163]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"69","area_level":"District","area_name":"Mahendragarh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.24467,28.44778],[76.24474,28.45916],[76.23354,28.46596],[76.21799,28.4685],[76.21464,28.46026],[76.21187,28.44308],[76.18898,28.44325],[76.18333,28.42962],[76.16615,28.43147],[76.16574,28.44107],[76.16375,28.44128],[76.1628,28.44937],[76.15856,28.45081],[76.16148,28.45737],[76.15969,28.45789],[76.15952,28.46221],[76.15285,28.46323],[76.14889,28.45157],[76.14259,28.45297],[76.14155,28.45115],[76.13014,28.45425],[76.11644,28.4531],[76.10772,28.4475],[76.1052,28.4388],[76.0932,28.42815],[76.08912,28.41903],[76.09031,28.41249],[76.08726,28.40947],[76.08862,28.40611],[76.08195,28.39768],[76.08213,28.39281],[76.05943,28.38986],[76.05469,28.39065],[76.05501,28.39178],[76.04253,28.39172],[76.02765,28.38747],[76.02732,28.38607],[76.01752,28.38607],[76.01813,28.39384],[76.01478,28.39635],[76.01843,28.40902],[76.00999,28.40864],[76.01433,28.43256],[76.01306,28.4326],[76.01348,28.43397],[75.98936,28.44067],[75.98952,28.44227],[75.98441,28.44322],[75.9833,28.44496],[75.96912,28.44265],[75.95341,28.43591],[75.94473,28.43692],[75.92784,28.43574],[75.90354,28.43174],[75.90376,28.42732],[75.89734,28.42438],[75.90053,28.42264],[75.89768,28.41568],[75.90363,28.41076],[75.90189,28.40787],[75.89892,28.40834],[75.90057,28.39933],[75.89632,28.39811],[75.89655,28.38984],[75.89518,28.38762],[75.89761,28.38382],[75.8993,28.38396],[75.89844,28.38033],[75.90021,28.37806],[75.90062,28.37179],[75.90483,28.37327],[75.9084,28.37258],[75.90853,28.37092],[75.91824,28.372],[75.91669,28.36739],[75.92238,28.36642],[75.92355,28.36335],[75.92713,28.3629],[75.92738,28.3598],[75.92955,28.35914],[75.93009,28.34901],[75.92854,28.34312],[75.932,28.3429],[75.93297,28.3366],[75.9385,28.33734],[75.94806,28.33417],[75.95502,28.33377],[75.95517,28.33113],[75.95231,28.33101],[75.95225,28.32921],[75.95679,28.32675],[75.95784,28.31383],[75.97246,28.31858],[75.97342,28.31491],[75.97805,28.30933],[75.97793,28.30187],[75.98178,28.29953],[75.98621,28.29312],[76.00299,28.28404],[76.02633,28.27503],[76.02261,28.27035],[76.02264,28.26735],[76.01508,28.25253],[76.01474,28.25016],[76.01609,28.25019],[76.01296,28.24604],[76.01318,28.24405],[76.01653,28.24119],[76.01611,28.23695],[76.02781,28.23265],[76.02777,28.23136],[76.03721,28.22575],[76.03783,28.22271],[76.056,28.22028],[76.05573,28.21261],[76.05241,28.20402],[76.04744,28.20278],[76.04734,28.19814],[76.05094,28.19807],[76.05149,28.19629],[76.07192,28.19434],[76.07212,28.19018],[76.07437,28.19013],[76.07399,28.17359],[76.07634,28.17334],[76.07618,28.16855],[76.09386,28.1527],[76.09589,28.14867],[76.095,28.14141],[76.09294,28.14003],[76.08788,28.13998],[76.08441,28.13693],[76.07301,28.13762],[76.06537,28.14153],[76.06966,28.15578],[76.07069,28.16515],[76.06025,28.16691],[76.04225,28.16548],[76.03179,28.16786],[76.03001,28.16409],[76.02612,28.16465],[76.01685,28.15009],[76.00749,28.15315],[76.00405,28.14772],[76.00453,28.14426],[76.00302,28.14318],[76.00061,28.13321],[76.00435,28.13199],[75.99899,28.12277],[75.98819,28.12504],[75.97667,28.12475],[75.96739,28.11382],[75.9617,28.11479],[75.94632,28.10793],[75.9386,28.08794],[75.94986,28.08612],[75.96463,28.08047],[75.97228,28.08327],[75.98343,28.08135],[75.98289,28.07665],[75.98869,28.069],[75.98833,28.0663],[75.98265,28.05741],[75.9793,28.05793],[75.97484,28.05099],[75.98662,28.04649],[75.99287,28.04633],[75.99473,28.0522],[75.99882,28.05714],[76.00766,28.05893],[76.00988,28.06763],[76.01682,28.07466],[76.02324,28.08599],[76.03537,28.08052],[76.03874,28.07822],[76.03727,28.07598],[76.0408,28.07406],[76.03882,28.06933],[76.03371,28.06334],[76.02959,28.06144],[76.02536,28.05424],[76.00828,28.05839],[76.00776,28.05571],[76.01713,28.0527],[76.01867,28.04201],[76.01639,28.03051],[75.99774,28.033],[75.99601,28.03828],[75.99462,28.03852],[75.99352,28.0352],[75.98967,28.03582],[75.98906,28.03361],[75.98348,28.03139],[75.97695,28.03137],[75.97273,28.02364],[75.97112,28.01608],[75.99521,28.00879],[75.99554,28.00689],[75.98993,27.99469],[75.98689,27.99759],[75.97761,28.0002],[75.96672,28.00003],[75.965,27.99632],[75.9658,27.98361],[75.96878,27.98094],[75.98594,27.97862],[75.98989,27.98233],[75.99994,27.97758],[75.99817,27.97529],[75.99456,27.97541],[75.98864,27.96821],[75.98196,27.96533],[75.97783,27.95438],[75.98305,27.95098],[75.97272,27.93267],[75.96816,27.93193],[75.96603,27.93498],[75.95791,27.93591],[75.95795,27.93804],[75.95168,27.94773],[75.93907,27.9406],[75.93236,27.93014],[75.93963,27.92279],[75.93939,27.92109],[75.93697,27.92187],[75.93447,27.91863],[75.93707,27.91777],[75.93828,27.91408],[75.96807,27.91437],[75.9748,27.91179],[75.97317,27.90209],[75.98749,27.90416],[75.97925,27.89555],[75.97531,27.89366],[75.98442,27.88259],[75.97763,27.87379],[75.97936,27.86545],[75.97249,27.8606],[75.97137,27.85197],[75.98703,27.84167],[75.99857,27.83821],[76.00429,27.83458],[76.00955,27.84152],[76.02729,27.83852],[76.03022,27.84005],[76.03625,27.8374],[76.04023,27.83894],[76.04087,27.84128],[76.04855,27.83509],[76.06064,27.84828],[76.07489,27.84382],[76.07929,27.84575],[76.08567,27.84471],[76.08575,27.85276],[76.08784,27.86066],[76.09809,27.85686],[76.10587,27.8561],[76.11441,27.85088],[76.1156,27.85207],[76.12333,27.85102],[76.12779,27.84372],[76.1354,27.83929],[76.13227,27.82448],[76.15364,27.81975],[76.15308,27.81537],[76.16053,27.81394],[76.16937,27.80795],[76.17215,27.80515],[76.17214,27.79965],[76.17496,27.79807],[76.18265,27.79862],[76.19226,27.80926],[76.1996,27.82156],[76.20779,27.81866],[76.20754,27.81704],[76.20934,27.81634],[76.21733,27.81681],[76.22518,27.83326],[76.20885,27.84001],[76.21216,27.84644],[76.19381,27.85951],[76.19437,27.87738],[76.20028,27.87824],[76.20209,27.88732],[76.20146,27.89254],[76.18609,27.89899],[76.16821,27.90338],[76.16868,27.91528],[76.17395,27.92982],[76.17705,27.92973],[76.18241,27.95193],[76.17993,27.95287],[76.18066,27.95713],[76.18245,27.96201],[76.18401,27.96181],[76.18664,27.96548],[76.16345,27.97342],[76.16597,27.97691],[76.16693,27.98299],[76.15747,27.98738],[76.1601,27.99764],[76.16211,28.00143],[76.16955,28.00742],[76.17689,28.02155],[76.18539,28.02029],[76.19687,28.01548],[76.20334,28.02803],[76.2148,28.02658],[76.2167,28.03548],[76.20372,28.03775],[76.20181,28.02935],[76.19604,28.03039],[76.18954,28.03445],[76.18878,28.03661],[76.17794,28.0456],[76.17978,28.05427],[76.18879,28.05321],[76.1895,28.05645],[76.19918,28.05571],[76.20113,28.05842],[76.20959,28.05587],[76.20861,28.05227],[76.21934,28.04921],[76.22115,28.05022],[76.2281,28.0484],[76.23072,28.05114],[76.23804,28.04972],[76.24293,28.06436],[76.25552,28.06777],[76.26096,28.06753],[76.28385,28.05698],[76.28418,28.0515],[76.29356,28.0492],[76.29117,28.03457],[76.29216,28.02586],[76.31321,28.0189],[76.31357,28.01708],[76.31895,28.01553],[76.32076,28.01598],[76.32298,28.02153],[76.32877,28.01878],[76.34063,28.02863],[76.34855,28.043],[76.3566,28.06749],[76.35514,28.06811],[76.35567,28.07073],[76.34349,28.0702],[76.34394,28.07142],[76.33302,28.07684],[76.33422,28.07992],[76.32888,28.08768],[76.32323,28.09053],[76.31876,28.08881],[76.30144,28.09787],[76.30927,28.10819],[76.31864,28.10768],[76.33659,28.10261],[76.34646,28.11256],[76.35044,28.1142],[76.35986,28.12492],[76.33315,28.13356],[76.33348,28.13624],[76.33063,28.13704],[76.33182,28.13928],[76.3299,28.14275],[76.32097,28.14856],[76.31523,28.15037],[76.3111,28.14555],[76.29758,28.14912],[76.29787,28.15212],[76.30336,28.15483],[76.30456,28.15932],[76.30163,28.15857],[76.30143,28.16005],[76.28328,28.16395],[76.28069,28.16578],[76.28243,28.17127],[76.28958,28.17027],[76.29227,28.17922],[76.30523,28.17588],[76.30739,28.17906],[76.31162,28.17806],[76.31224,28.18526],[76.3091,28.18712],[76.3099,28.19093],[76.30368,28.19326],[76.30525,28.20349],[76.314,28.20305],[76.31514,28.20486],[76.32072,28.20633],[76.32737,28.22394],[76.3407,28.22272],[76.34169,28.22427],[76.34852,28.24891],[76.34649,28.25415],[76.34912,28.25617],[76.3504,28.2606],[76.34753,28.26296],[76.3472,28.26535],[76.34233,28.26687],[76.3431,28.27296],[76.34627,28.27285],[76.35161,28.28069],[76.35262,28.28569],[76.35179,28.29017],[76.34931,28.29242],[76.34944,28.29564],[76.34732,28.2963],[76.3466,28.30648],[76.35063,28.31118],[76.35565,28.31017],[76.35806,28.32079],[76.36755,28.32273],[76.36801,28.33496],[76.35675,28.34351],[76.35736,28.3562],[76.35499,28.36562],[76.35095,28.36698],[76.3356,28.36447],[76.33444,28.36273],[76.32871,28.36414],[76.32788,28.37177],[76.30591,28.37615],[76.29763,28.38275],[76.2984,28.38687],[76.29709,28.39175],[76.29825,28.39183],[76.29912,28.39797],[76.30188,28.40151],[76.28916,28.40261],[76.28014,28.40563],[76.28494,28.4168],[76.28808,28.42935],[76.28492,28.43156],[76.28286,28.43079],[76.27407,28.43433],[76.2661,28.43532],[76.26581,28.43739],[76.25909,28.43825],[76.25531,28.43796],[76.25422,28.43589],[76.24991,28.43649],[76.24443,28.44168],[76.24467,28.44778]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"690","area_level":"District","area_name":"Bhadradri Kothagudem","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.84041,18.2356],[80.83672,18.23892],[80.82359,18.23608],[80.8226,18.22411],[80.82407,18.19104],[80.81747,18.18911],[80.81326,18.18019],[80.79911,18.16817],[80.77544,18.16674],[80.75419,18.16871],[80.752,18.1491],[80.75297,18.14016],[80.74874,18.12942],[80.74868,18.10159],[80.75308,18.09122],[80.75499,18.07376],[80.75307,18.07703],[80.74718,18.07937],[80.74463,18.08229],[80.73111,18.10217],[80.72267,18.11137],[80.71455,18.12655],[80.70425,18.13588],[80.69404,18.16151],[80.69204,18.16354],[80.68613,18.1634],[80.6816,18.16553],[80.67889,18.17463],[80.67336,18.18249],[80.65989,18.16141],[80.65536,18.15842],[80.6553,18.15381],[80.65014,18.15727],[80.64702,18.15645],[80.65714,18.14372],[80.65484,18.13488],[80.65124,18.13574],[80.65021,18.13439],[80.64236,18.13751],[80.63819,18.13625],[80.63226,18.14236],[80.62338,18.1293],[80.63104,18.12594],[80.64312,18.12538],[80.63508,18.10943],[80.61947,18.11278],[80.61644,18.1184],[80.61434,18.11474],[80.61562,18.10465],[80.60892,18.09364],[80.60781,18.08832],[80.60488,18.08622],[80.60032,18.07798],[80.59236,18.07167],[80.59175,18.06905],[80.58565,18.06236],[80.58277,18.0638],[80.57689,18.06178],[80.57391,18.05474],[80.56583,18.05093],[80.5596,18.05567],[80.5585,18.05888],[80.5489,18.05851],[80.54373,18.05395],[80.5379,18.05515],[80.53585,18.05564],[80.53477,18.06087],[80.52724,18.06467],[80.52495,18.05959],[80.51714,18.05789],[80.514,18.05183],[80.50594,18.05418],[80.50469,18.05155],[80.4994,18.05067],[80.49643,18.051],[80.48233,18.05978],[80.47447,18.06024],[80.47197,18.05832],[80.46969,18.06122],[80.45953,18.06286],[80.45919,18.06135],[80.45571,18.06023],[80.44537,18.06699],[80.44318,18.06459],[80.43661,18.06249],[80.43605,18.0605],[80.43251,18.06167],[80.43127,18.06004],[80.39192,18.08166],[80.34649,18.03662],[80.34122,18.01438],[80.33123,18.00825],[80.32201,17.99866],[80.31617,17.99596],[80.31503,17.98828],[80.31131,17.98308],[80.30968,17.97529],[80.29432,17.96448],[80.27502,17.96636],[80.26847,17.95052],[80.27026,17.94543],[80.26758,17.92852],[80.26995,17.91543],[80.2778,17.90686],[80.27697,17.88128],[80.27275,17.87675],[80.27268,17.87029],[80.26595,17.86128],[80.26631,17.85326],[80.26311,17.84579],[80.25783,17.83626],[80.24785,17.82441],[80.25401,17.80346],[80.25307,17.79873],[80.25584,17.79093],[80.25398,17.78887],[80.25243,17.77981],[80.258,17.77753],[80.25671,17.76006],[80.25943,17.75012],[80.25258,17.74281],[80.2499,17.7427],[80.24849,17.7382],[80.24692,17.72595],[80.24481,17.72197],[80.24785,17.71903],[80.24506,17.7133],[80.24725,17.70937],[80.24769,17.70413],[80.24106,17.69218],[80.24189,17.6847],[80.2379,17.67175],[80.23672,17.6553],[80.23074,17.65723],[80.23027,17.66038],[80.22118,17.66092],[80.21783,17.66011],[80.21389,17.65582],[80.20871,17.65502],[80.20681,17.65271],[80.20663,17.62468],[80.20978,17.61367],[80.21364,17.60973],[80.22321,17.60622],[80.21788,17.58995],[80.2019,17.5581],[80.21863,17.55593],[80.23022,17.55237],[80.23374,17.56628],[80.23795,17.55923],[80.24801,17.56186],[80.28077,17.54259],[80.29233,17.55584],[80.28251,17.56335],[80.28598,17.57309],[80.30494,17.56983],[80.31735,17.56548],[80.32395,17.5609],[80.33966,17.56313],[80.34614,17.56783],[80.36848,17.56784],[80.35597,17.53124],[80.34357,17.53508],[80.33967,17.52262],[80.34038,17.51889],[80.34778,17.50933],[80.34649,17.48516],[80.36047,17.48638],[80.35968,17.49699],[80.36102,17.50098],[80.37681,17.50868],[80.39681,17.52821],[80.40067,17.52788],[80.40201,17.52101],[80.4058,17.51346],[80.41592,17.51011],[80.42399,17.50449],[80.42364,17.50098],[80.43132,17.49732],[80.41135,17.46988],[80.40156,17.4606],[80.40257,17.45237],[80.40007,17.44697],[80.39071,17.43281],[80.37589,17.41689],[80.38377,17.41475],[80.4062,17.42106],[80.41166,17.41759],[80.42968,17.41112],[80.43409,17.41257],[80.4381,17.41809],[80.43822,17.42385],[80.44673,17.4409],[80.45021,17.44445],[80.45051,17.44794],[80.46958,17.45705],[80.476,17.45571],[80.48907,17.46844],[80.49154,17.47261],[80.50588,17.47859],[80.5136,17.47169],[80.51793,17.47181],[80.53102,17.47829],[80.53771,17.47616],[80.54161,17.47662],[80.55305,17.47263],[80.5568,17.46813],[80.55925,17.45978],[80.56161,17.4572],[80.56481,17.45669],[80.56855,17.45953],[80.57281,17.45909],[80.5709,17.45112],[80.57522,17.44581],[80.57897,17.44375],[80.58702,17.44493],[80.5879,17.44111],[80.58509,17.43211],[80.59256,17.42445],[80.56642,17.41732],[80.56715,17.38804],[80.5646,17.38007],[80.55531,17.36805],[80.55629,17.34109],[80.56938,17.35379],[80.58212,17.35699],[80.59225,17.38216],[80.59606,17.38373],[80.5977,17.38237],[80.60478,17.38324],[80.61947,17.37141],[80.61887,17.36611],[80.60943,17.35629],[80.61291,17.35441],[80.61727,17.34881],[80.61416,17.3458],[80.61485,17.34288],[80.62538,17.33677],[80.62852,17.33874],[80.6292,17.34302],[80.63293,17.34611],[80.63052,17.35844],[80.63192,17.36183],[80.63436,17.36283],[80.64607,17.36018],[80.6449,17.35554],[80.64623,17.35357],[80.64579,17.34633],[80.66034,17.34329],[80.65989,17.33968],[80.66634,17.34072],[80.67547,17.33978],[80.67975,17.33781],[80.68284,17.33199],[80.68366,17.31911],[80.68751,17.31095],[80.68736,17.30863],[80.68189,17.30689],[80.68294,17.29674],[80.68722,17.29122],[80.6925,17.28887],[80.69673,17.28898],[80.70883,17.29992],[80.72242,17.30528],[80.72566,17.30542],[80.73274,17.30166],[80.73658,17.29744],[80.74846,17.2913],[80.75002,17.30066],[80.76101,17.31389],[80.77539,17.30821],[80.77735,17.31543],[80.77623,17.32862],[80.77871,17.33732],[80.80373,17.33843],[80.8128,17.33708],[80.81928,17.35126],[80.83166,17.36314],[80.84514,17.36726],[80.85921,17.36505],[80.86223,17.34821],[80.86528,17.34494],[80.86773,17.33503],[80.86759,17.3297],[80.87199,17.32301],[80.86889,17.2832],[80.87619,17.26473],[80.87298,17.26303],[80.86977,17.25713],[80.86633,17.24621],[80.86526,17.23577],[80.86798,17.2334],[80.87456,17.23354],[80.87792,17.23085],[80.91097,17.21976],[80.94128,17.21929],[80.96029,17.20407],[80.97629,17.20027],[80.99436,17.19132],[80.99845,17.19046],[81.00862,17.19186],[81.01543,17.1944],[81.03127,17.19033],[81.03687,17.19248],[81.04357,17.20233],[81.0495,17.20707],[81.05559,17.21956],[81.05461,17.22487],[81.07961,17.21528],[81.09037,17.2196],[81.10943,17.22347],[81.1276,17.22431],[81.15947,17.2308],[81.17398,17.23034],[81.17301,17.23203],[81.17502,17.23697],[81.18609,17.24849],[81.18759,17.25465],[81.18394,17.25835],[81.17818,17.26904],[81.17957,17.27837],[81.17666,17.28767],[81.18137,17.30445],[81.19041,17.32481],[81.21031,17.32605],[81.22205,17.32149],[81.23357,17.32036],[81.23913,17.32084],[81.23913,17.32349],[81.24463,17.32309],[81.24567,17.32579],[81.26825,17.32003],[81.27403,17.31719],[81.27889,17.32372],[81.28927,17.32871],[81.3053,17.34591],[81.31199,17.36069],[81.31631,17.36448],[81.31647,17.369],[81.32264,17.37455],[81.3211,17.38797],[81.31757,17.40075],[81.31339,17.40811],[81.31002,17.40977],[81.26854,17.41826],[81.25974,17.42222],[81.24551,17.43303],[81.24269,17.43206],[81.23633,17.43558],[81.22143,17.43944],[81.21905,17.44228],[81.21176,17.44174],[81.20526,17.44959],[81.2023,17.44066],[81.2027,17.43395],[81.1933,17.43563],[81.18298,17.44025],[81.17233,17.44904],[81.17555,17.46364],[81.14825,17.46365],[81.15968,17.48437],[81.14215,17.48859],[81.14487,17.49508],[81.14051,17.50466],[81.13848,17.51624],[81.12728,17.52642],[81.1245,17.52706],[81.11746,17.52207],[81.10111,17.5056],[81.09756,17.50426],[81.09135,17.50565],[81.08007,17.51505],[81.04721,17.51951],[81.0199,17.52003],[81.01483,17.52213],[81.01368,17.53662],[81.00843,17.547],[81.00281,17.55061],[80.9984,17.56468],[80.9888,17.57242],[80.98283,17.58274],[80.97673,17.58719],[80.96931,17.59838],[80.97552,17.61914],[80.98411,17.62621],[80.99592,17.62908],[81.00704,17.62171],[81.00955,17.64365],[81.00356,17.64979],[80.99209,17.65346],[80.98006,17.65261],[80.96237,17.64572],[80.95236,17.63703],[80.9381,17.63258],[80.89704,17.64064],[80.88274,17.64591],[80.87813,17.65067],[80.87607,17.66022],[80.8764,17.66838],[80.89079,17.68976],[80.89475,17.70291],[80.89099,17.71368],[80.89076,17.72188],[80.88555,17.73568],[80.90237,17.7462],[80.913,17.74592],[80.91458,17.74653],[80.91273,17.74948],[80.91444,17.75046],[80.915,17.74836],[80.91757,17.74811],[80.91946,17.7562],[80.92338,17.75729],[80.92785,17.76178],[80.94631,17.76019],[80.95562,17.77291],[80.95532,17.77462],[80.96343,17.77739],[80.96587,17.77978],[80.97217,17.77796],[80.97342,17.78012],[80.97688,17.77632],[80.98423,17.75566],[80.99132,17.74992],[81.01592,17.74503],[81.02763,17.74813],[81.04056,17.74761],[81.04416,17.74042],[81.05051,17.73401],[81.05817,17.73309],[81.06983,17.74071],[81.08258,17.7531],[81.09565,17.7622],[81.10426,17.77201],[81.10388,17.7732],[81.096,17.77449],[81.08978,17.79104],[81.08559,17.79802],[81.07326,17.78645],[81.04662,17.78231],[81.03898,17.78415],[81.03176,17.78847],[81.01767,17.79138],[81.00822,17.79937],[81.00346,17.81952],[81.00323,17.83062],[80.99645,17.84907],[80.99655,17.87175],[80.99417,17.8809],[80.99934,17.90329],[80.99834,17.91679],[80.98784,17.94445],[80.9792,18.00445],[80.97273,18.02483],[80.96954,18.03175],[80.96426,18.03814],[80.96976,18.04385],[80.96905,18.04643],[80.96244,18.06298],[80.95344,18.07863],[80.94926,18.08286],[80.95178,18.09012],[80.95551,18.12906],[80.97874,18.1508],[80.97903,18.17541],[80.95766,18.17355],[80.95162,18.16366],[80.94236,18.16038],[80.94164,18.15662],[80.9399,18.15543],[80.91417,18.14117],[80.89108,18.13598],[80.86667,18.13692],[80.86545,18.14145],[80.86016,18.14786],[80.8604,18.16139],[80.85708,18.17442],[80.85854,18.18645],[80.85291,18.202],[80.85521,18.20416],[80.86391,18.20265],[80.87097,18.20479],[80.87261,18.21058],[80.86594,18.23013],[80.86052,18.23199],[80.84343,18.23244],[80.84041,18.2356]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"691","area_level":"District","area_name":"Sangareddy","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.64918,18.28438],[77.6416,18.28607],[77.62563,18.28401],[77.61994,18.2745],[77.60036,18.27562],[77.59399,18.26443],[77.59119,18.26241],[77.58454,18.26172],[77.58199,18.25963],[77.57378,18.24499],[77.57178,18.244],[77.57301,18.23944],[77.58052,18.23217],[77.57988,18.22816],[77.58185,18.22697],[77.58149,18.22486],[77.58531,18.21982],[77.58058,18.21385],[77.57482,18.20163],[77.57215,18.20351],[77.5653,18.20398],[77.56348,18.19535],[77.57069,18.19217],[77.57472,18.1741],[77.57716,18.17249],[77.58131,18.16232],[77.58422,18.15923],[77.5924,18.15544],[77.59684,18.15595],[77.59451,18.13137],[77.59916,18.12099],[77.60155,18.1059],[77.59695,18.08677],[77.58551,18.08184],[77.58358,18.08246],[77.57592,18.07806],[77.56943,18.07824],[77.56592,18.07667],[77.55971,18.07188],[77.55742,18.06373],[77.54834,18.06521],[77.54764,18.05613],[77.54961,18.05439],[77.54948,18.05124],[77.55183,18.0507],[77.55379,18.03582],[77.56061,18.03622],[77.58059,18.03158],[77.58325,18.02826],[77.58489,18.01679],[77.58859,18.01216],[77.59586,18.01285],[77.60164,18.01984],[77.60593,18.02023],[77.60794,18.01796],[77.60747,18.00985],[77.61966,18.00649],[77.62779,17.99679],[77.63875,17.99645],[77.64891,17.99888],[77.65204,17.99389],[77.64821,17.98026],[77.65578,17.96828],[77.64951,17.95907],[77.64948,17.95002],[77.6409,17.95411],[77.64062,17.95189],[77.63721,17.95232],[77.63513,17.95925],[77.63329,17.96037],[77.63301,17.96738],[77.62454,17.9596],[77.63289,17.9558],[77.63251,17.94667],[77.62294,17.94552],[77.61868,17.93949],[77.622,17.92957],[77.61904,17.90406],[77.60518,17.90781],[77.59999,17.90414],[77.58606,17.90784],[77.585,17.90193],[77.58599,17.89384],[77.59583,17.88136],[77.60037,17.8806],[77.59908,17.87309],[77.59449,17.87233],[77.58342,17.87704],[77.58059,17.87345],[77.5764,17.87542],[77.57346,17.86919],[77.57,17.86765],[77.56932,17.85156],[77.56484,17.85119],[77.56744,17.84542],[77.56068,17.83865],[77.55403,17.82007],[77.54891,17.81938],[77.5467,17.82848],[77.53238,17.82911],[77.52822,17.8279],[77.52903,17.81293],[77.52294,17.81141],[77.51494,17.80545],[77.509,17.78778],[77.50656,17.78595],[77.51233,17.78213],[77.51751,17.78249],[77.52211,17.78055],[77.52636,17.78163],[77.527,17.7799],[77.52867,17.78066],[77.53439,17.77763],[77.53751,17.77993],[77.54054,17.77777],[77.54026,17.77438],[77.54606,17.77166],[77.54823,17.76706],[77.55486,17.76397],[77.55983,17.76342],[77.56628,17.76675],[77.56915,17.76649],[77.56727,17.7596],[77.56853,17.74891],[77.56439,17.74786],[77.56094,17.74281],[77.55801,17.74139],[77.5567,17.73738],[77.54861,17.73577],[77.54623,17.73282],[77.54596,17.72684],[77.54219,17.72894],[77.53328,17.72768],[77.53133,17.72867],[77.52859,17.72517],[77.52201,17.72603],[77.51824,17.72358],[77.51655,17.72016],[77.51165,17.72092],[77.50914,17.71629],[77.49705,17.71551],[77.49227,17.70813],[77.48601,17.70793],[77.48489,17.70914],[77.48415,17.7056],[77.46748,17.70298],[77.45887,17.69862],[77.45782,17.6963],[77.45243,17.6947],[77.45216,17.69114],[77.45504,17.68893],[77.4537,17.68649],[77.45349,17.67711],[77.45482,17.67448],[77.44893,17.65943],[77.44822,17.65112],[77.45001,17.65058],[77.44972,17.64396],[77.45223,17.64],[77.45208,17.63642],[77.45589,17.63418],[77.45575,17.63249],[77.45115,17.62321],[77.44873,17.60934],[77.44476,17.60941],[77.44614,17.59647],[77.44329,17.59169],[77.44498,17.58625],[77.44312,17.58396],[77.45562,17.58233],[77.45858,17.57997],[77.46181,17.58075],[77.47082,17.57186],[77.47623,17.57061],[77.47805,17.5668],[77.49407,17.56836],[77.49618,17.55961],[77.50043,17.55619],[77.50003,17.54672],[77.5069,17.54228],[77.51544,17.55242],[77.51649,17.55915],[77.52838,17.57537],[77.53744,17.57544],[77.54512,17.56439],[77.55056,17.55173],[77.55424,17.55385],[77.56085,17.55257],[77.56737,17.55636],[77.5881,17.56],[77.58907,17.5647],[77.5938,17.56451],[77.59723,17.55373],[77.59558,17.54487],[77.5969,17.5343],[77.60301,17.53584],[77.60738,17.53225],[77.61206,17.53476],[77.61936,17.52887],[77.62097,17.5304],[77.62339,17.52563],[77.62796,17.52363],[77.637,17.52571],[77.64527,17.52238],[77.66201,17.52282],[77.66654,17.51713],[77.66864,17.51161],[77.67545,17.50862],[77.67749,17.50998],[77.68342,17.50818],[77.68753,17.51165],[77.68736,17.51936],[77.69054,17.52628],[77.69491,17.52791],[77.70069,17.52729],[77.70144,17.52526],[77.70357,17.52616],[77.70577,17.52437],[77.70944,17.52577],[77.71009,17.52797],[77.74366,17.54929],[77.74664,17.5489],[77.76131,17.55799],[77.76019,17.57278],[77.76148,17.57917],[77.76504,17.58437],[77.76991,17.58409],[77.77416,17.601],[77.76741,17.61263],[77.76178,17.61327],[77.76044,17.61544],[77.74956,17.61352],[77.74986,17.61766],[77.74565,17.61771],[77.7464,17.62407],[77.75227,17.62352],[77.76232,17.62769],[77.76441,17.62629],[77.77623,17.62682],[77.78191,17.6307],[77.78351,17.63872],[77.79022,17.63772],[77.79427,17.62799],[77.79979,17.62495],[77.79915,17.62659],[77.80383,17.62781],[77.81589,17.62649],[77.82291,17.63202],[77.8259,17.62887],[77.83558,17.62512],[77.84316,17.61888],[77.84919,17.61863],[77.85154,17.61689],[77.85591,17.61293],[77.85535,17.60998],[77.85281,17.60843],[77.86176,17.61304],[77.86297,17.61689],[77.86741,17.61957],[77.86615,17.61653],[77.86747,17.6108],[77.87492,17.603],[77.87014,17.59985],[77.8687,17.59679],[77.8711,17.59403],[77.87275,17.58257],[77.88611,17.5801],[77.89728,17.58214],[77.91294,17.57624],[77.92938,17.5722],[77.93236,17.56723],[77.93651,17.56753],[77.93379,17.56076],[77.93593,17.55497],[77.94018,17.55091],[77.93895,17.54191],[77.93666,17.5389],[77.96298,17.5339],[77.96793,17.53006],[77.97417,17.51849],[77.97283,17.51361],[77.96597,17.5047],[77.96761,17.49161],[77.96459,17.4845],[77.98082,17.48385],[77.98492,17.49457],[77.98821,17.49897],[77.98764,17.50251],[77.99101,17.50691],[77.99523,17.50068],[78.00777,17.49608],[78.0005,17.48291],[78.00425,17.4751],[78.01994,17.46948],[78.02259,17.46499],[78.03104,17.46826],[78.03064,17.47128],[78.04044,17.47122],[78.03946,17.46665],[78.04085,17.45782],[78.04542,17.45802],[78.04769,17.45129],[78.06292,17.44871],[78.06303,17.45097],[78.07021,17.45578],[78.06674,17.45962],[78.06448,17.45801],[78.0595,17.46074],[78.05608,17.46897],[78.05303,17.46965],[78.05341,17.47547],[78.05228,17.47443],[78.04998,17.47589],[78.05158,17.47883],[78.05766,17.47978],[78.06378,17.49002],[78.07124,17.49589],[78.07111,17.50036],[78.06565,17.50072],[78.06559,17.502],[78.05869,17.50443],[78.05808,17.50887],[78.0668,17.50756],[78.07155,17.51373],[78.07103,17.5184],[78.08211,17.51642],[78.08311,17.50525],[78.08067,17.50173],[78.08161,17.49746],[78.08377,17.49736],[78.08379,17.49125],[78.08975,17.49109],[78.09574,17.48873],[78.10542,17.49021],[78.10855,17.4885],[78.11111,17.47969],[78.11355,17.47972],[78.11603,17.48322],[78.12197,17.48512],[78.14529,17.4841],[78.14508,17.46784],[78.16435,17.46279],[78.16629,17.46433],[78.17016,17.46357],[78.1751,17.46918],[78.18608,17.4726],[78.18971,17.47569],[78.19158,17.47815],[78.19014,17.48117],[78.19147,17.48693],[78.21381,17.48605],[78.21396,17.47222],[78.21707,17.46702],[78.21867,17.45741],[78.21785,17.4385],[78.231,17.42943],[78.24229,17.42798],[78.26595,17.42836],[78.27011,17.42953],[78.2756,17.43477],[78.28814,17.43126],[78.28995,17.44189],[78.294,17.45234],[78.3018,17.46082],[78.30019,17.47578],[78.29802,17.47959],[78.298,17.49095],[78.30921,17.49019],[78.31765,17.49463],[78.31448,17.50298],[78.30813,17.50743],[78.30746,17.51005],[78.31248,17.51074],[78.31289,17.50898],[78.33771,17.50636],[78.33698,17.50372],[78.34335,17.51756],[78.35136,17.52863],[78.34853,17.53523],[78.35553,17.54069],[78.36143,17.54969],[78.35913,17.55408],[78.35993,17.55673],[78.35813,17.55693],[78.35512,17.56199],[78.35922,17.56326],[78.363,17.56808],[78.37086,17.56759],[78.37338,17.56645],[78.37365,17.56334],[78.37723,17.56314],[78.38096,17.57063],[78.38218,17.58807],[78.38462,17.59159],[78.3837,17.59552],[78.38893,17.5943],[78.3898,17.59883],[78.38689,17.60665],[78.37141,17.61476],[78.37777,17.61482],[78.39057,17.62136],[78.39208,17.62568],[78.38698,17.63781],[78.38119,17.64238],[78.38461,17.64851],[78.3882,17.66102],[78.3953,17.67592],[78.40064,17.67497],[78.40039,17.67366],[78.4099,17.66985],[78.42115,17.67156],[78.42748,17.67963],[78.43058,17.68645],[78.43712,17.69343],[78.4457,17.69816],[78.44489,17.70031],[78.45003,17.71105],[78.44441,17.71682],[78.44036,17.72669],[78.41637,17.73277],[78.40255,17.71622],[78.40246,17.70984],[78.39628,17.69917],[78.388,17.69925],[78.37501,17.70592],[78.3738,17.70993],[78.37167,17.70901],[78.3724,17.72635],[78.3703,17.72785],[78.3651,17.72789],[78.36097,17.73144],[78.36295,17.73204],[78.35981,17.73529],[78.36174,17.73765],[78.36079,17.73953],[78.35183,17.74132],[78.35176,17.74373],[78.33812,17.74121],[78.31808,17.74354],[78.31792,17.73982],[78.31288,17.7392],[78.31805,17.72283],[78.32067,17.72121],[78.32378,17.72486],[78.32389,17.71673],[78.31972,17.71607],[78.31982,17.71111],[78.32217,17.70428],[78.32522,17.70345],[78.31978,17.68008],[78.32497,17.67683],[78.32509,17.67377],[78.31962,17.66338],[78.30551,17.66743],[78.31095,17.67709],[78.30524,17.6791],[78.3047,17.67768],[78.30177,17.67815],[78.29741,17.68049],[78.29017,17.67735],[78.28504,17.6857],[78.28159,17.68723],[78.27952,17.68654],[78.27595,17.6889],[78.27373,17.6867],[78.26826,17.6891],[78.26508,17.68724],[78.26453,17.68955],[78.2606,17.68966],[78.25662,17.69303],[78.2483,17.69058],[78.2314,17.69147],[78.22995,17.69848],[78.23175,17.70014],[78.22938,17.70203],[78.2381,17.70297],[78.23803,17.70512],[78.22632,17.71469],[78.2352,17.72391],[78.23687,17.72825],[78.2337,17.73108],[78.23495,17.73529],[78.21811,17.73202],[78.21778,17.7388],[78.21523,17.74153],[78.20143,17.73577],[78.19913,17.74608],[78.20426,17.75499],[78.20441,17.7651],[78.19815,17.76274],[78.19612,17.76366],[78.19561,17.77317],[78.19924,17.78045],[78.20386,17.80272],[78.19605,17.80519],[78.1932,17.79783],[78.17349,17.78851],[78.16589,17.78981],[78.16328,17.7977],[78.16635,17.81388],[78.18071,17.82129],[78.18762,17.83059],[78.17551,17.82815],[78.17466,17.8226],[78.16063,17.81527],[78.14924,17.80589],[78.14779,17.80911],[78.1505,17.81607],[78.15094,17.83244],[78.14847,17.83617],[78.13907,17.8317],[78.13555,17.8176],[78.13146,17.81138],[78.122,17.80709],[78.11906,17.80371],[78.12003,17.80064],[78.11394,17.80273],[78.11075,17.80825],[78.10036,17.81309],[78.09733,17.81803],[78.09782,17.82416],[78.09374,17.83257],[78.09679,17.84455],[78.0944,17.8606],[78.09007,17.86402],[78.07476,17.86735],[78.07337,17.86919],[78.07257,17.87738],[78.07512,17.88235],[78.07426,17.88532],[78.07586,17.89742],[78.0791,17.90525],[78.07187,17.91959],[78.06356,17.92464],[78.05919,17.92222],[78.06177,17.92046],[78.06018,17.91715],[78.05493,17.91592],[78.05313,17.91805],[78.0463,17.91392],[78.04592,17.91085],[78.04859,17.90402],[78.04654,17.89751],[78.04742,17.89265],[78.03998,17.88702],[78.03465,17.8785],[78.01728,17.88922],[78.01411,17.88954],[77.99868,17.88751],[77.99585,17.88401],[77.97224,17.88219],[77.97519,17.86691],[77.9706,17.85396],[77.96574,17.85325],[77.95573,17.85609],[77.95612,17.8523],[77.95403,17.85161],[77.95262,17.84189],[77.93679,17.84225],[77.93166,17.84383],[77.92244,17.84959],[77.91968,17.8572],[77.91793,17.85508],[77.91273,17.85716],[77.90554,17.84711],[77.89474,17.84701],[77.89544,17.86944],[77.89341,17.87562],[77.89043,17.87549],[77.88756,17.87932],[77.8864,17.88862],[77.87797,17.88875],[77.87925,17.89596],[77.87073,17.89837],[77.86605,17.89778],[77.86744,17.90006],[77.86574,17.90355],[77.86067,17.907],[77.85415,17.90756],[77.85616,17.90965],[77.85549,17.9111],[77.85126,17.91111],[77.85503,17.91796],[77.86272,17.91665],[77.88005,17.91847],[77.88396,17.9107],[77.89829,17.91061],[77.90253,17.91974],[77.89967,17.93625],[77.90296,17.93758],[77.9063,17.94522],[77.90668,17.95899],[77.8958,17.96367],[77.89061,17.96429],[77.89113,17.9742],[77.88797,17.98472],[77.89199,17.99234],[77.9029,17.99746],[77.90493,18.00069],[77.89921,18.00374],[77.89129,18.00496],[77.87136,18.00178],[77.87179,18.00496],[77.86944,18.01191],[77.87088,18.01709],[77.86578,18.02229],[77.85789,18.04232],[77.85266,18.05087],[77.85134,18.073],[77.87563,18.07446],[77.88823,18.07059],[77.89543,18.08735],[77.89517,18.09337],[77.8988,18.09394],[77.90188,18.0973],[77.9011,18.09907],[77.89878,18.09929],[77.90133,18.09997],[77.90549,18.0978],[77.90659,18.09836],[77.90549,18.09992],[77.908,18.09987],[77.9054,18.10084],[77.90517,18.10578],[77.90925,18.10283],[77.90883,18.10148],[77.91262,18.1025],[77.9141,18.10091],[77.918,18.10637],[77.92153,18.10348],[77.92685,18.10415],[77.92938,18.11601],[77.92481,18.1164],[77.9226,18.11345],[77.92015,18.11561],[77.91862,18.11327],[77.91622,18.11605],[77.91314,18.11582],[77.91418,18.11983],[77.90913,18.12],[77.91039,18.12245],[77.90898,18.12412],[77.91731,18.12488],[77.92028,18.12849],[77.92349,18.12789],[77.9252,18.13128],[77.92357,18.13356],[77.92024,18.1336],[77.91908,18.13643],[77.92486,18.14177],[77.92744,18.13939],[77.93047,18.14024],[77.9323,18.14213],[77.92915,18.14485],[77.93548,18.14923],[77.93118,18.14912],[77.93103,18.15343],[77.92793,18.15573],[77.92141,18.15295],[77.92047,18.15029],[77.9228,18.15093],[77.92523,18.14936],[77.92304,18.14733],[77.92091,18.14841],[77.91858,18.1452],[77.916,18.14855],[77.91439,18.14841],[77.916,18.14366],[77.91459,18.14109],[77.90996,18.14724],[77.90586,18.14421],[77.90268,18.14435],[77.9042,18.15242],[77.89466,18.15658],[77.89589,18.16157],[77.90341,18.16814],[77.90022,18.17309],[77.90084,18.18321],[77.90369,18.19236],[77.90203,18.19285],[77.89836,18.18947],[77.88949,18.18996],[77.88228,18.18669],[77.86865,18.18916],[77.86244,18.19435],[77.86388,18.19743],[77.86309,18.19985],[77.86501,18.20219],[77.8542,18.20745],[77.8488,18.20174],[77.83997,18.20378],[77.82931,18.20032],[77.8287,18.19488],[77.82697,18.19396],[77.82112,18.19645],[77.81097,18.19572],[77.80675,18.19985],[77.79656,18.20469],[77.78761,18.1987],[77.78645,18.19643],[77.77982,18.19983],[77.77695,18.19601],[77.77666,18.19046],[77.77119,18.18972],[77.76958,18.18813],[77.76801,18.19153],[77.76009,18.19913],[77.75848,18.20504],[77.74205,18.20526],[77.74339,18.22438],[77.74079,18.22573],[77.7378,18.22408],[77.73637,18.23492],[77.72806,18.23336],[77.73024,18.24545],[77.72885,18.25336],[77.71964,18.26029],[77.71164,18.25802],[77.70683,18.26098],[77.68758,18.26024],[77.68626,18.26651],[77.66513,18.28358],[77.64918,18.28438]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"692","area_level":"District","area_name":"Siddipet","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.07368,18.42466],[79.06488,18.42296],[79.05305,18.4171],[79.03643,18.40322],[79.03071,18.40104],[79.01808,18.39954],[79.01632,18.39393],[79.00921,18.39103],[79.0059,18.38781],[79.0063,18.38086],[79.00864,18.38033],[79.00869,18.37827],[79.01934,18.37542],[79.02268,18.37194],[79.02474,18.36624],[79.01803,18.358],[79.01652,18.35274],[79.01135,18.3456],[79.01402,18.34214],[79.01221,18.33628],[79.01523,18.3326],[79.01995,18.33143],[79.02129,18.32337],[79.01884,18.31982],[79.01925,18.31545],[79.01492,18.31114],[79.00542,18.30702],[79.00376,18.30416],[79.00207,18.30479],[79.00078,18.30282],[78.99384,18.30277],[78.99101,18.30085],[78.98717,18.28954],[78.9897,18.28622],[78.98684,18.27782],[78.98683,18.27272],[78.98744,18.26592],[78.99078,18.2627],[78.98804,18.25802],[78.99077,18.25588],[78.98957,18.25202],[78.99615,18.24588],[78.99557,18.24123],[78.98053,18.22173],[78.97358,18.21831],[78.96948,18.21093],[78.96425,18.20973],[78.96409,18.20732],[78.95452,18.20756],[78.95036,18.23748],[78.95764,18.24981],[78.95732,18.25214],[78.95429,18.25338],[78.9445,18.25367],[78.94361,18.25215],[78.93339,18.2559],[78.91453,18.25561],[78.89139,18.24475],[78.89008,18.2391],[78.88115,18.24177],[78.86899,18.24034],[78.85575,18.23467],[78.84576,18.24695],[78.83541,18.25005],[78.83168,18.24966],[78.8282,18.25321],[78.79273,18.25365],[78.77585,18.26123],[78.76911,18.26274],[78.76292,18.25073],[78.761,18.24516],[78.76156,18.24098],[78.75925,18.23578],[78.75315,18.22892],[78.74998,18.22121],[78.74275,18.21628],[78.73546,18.2147],[78.72336,18.21551],[78.72735,18.22102],[78.72712,18.22679],[78.71827,18.23191],[78.71148,18.23426],[78.70266,18.23477],[78.7004,18.2314],[78.69004,18.22986],[78.68503,18.23299],[78.67634,18.23544],[78.67014,18.24161],[78.66335,18.24104],[78.66313,18.24422],[78.65976,18.24402],[78.65997,18.24611],[78.64535,18.25303],[78.64554,18.25512],[78.64017,18.2567],[78.63212,18.25468],[78.62767,18.24652],[78.61733,18.24962],[78.6161,18.24796],[78.58857,18.24867],[78.5847,18.23863],[78.57484,18.22342],[78.56758,18.22256],[78.56119,18.20711],[78.56633,18.20271],[78.56939,18.19597],[78.56881,18.18492],[78.57387,18.18133],[78.58085,18.17276],[78.58093,18.1632],[78.56669,18.16208],[78.56934,18.15729],[78.55324,18.14349],[78.55062,18.12316],[78.54532,18.11644],[78.54777,18.11209],[78.55831,18.1094],[78.57532,18.1098],[78.57952,18.10615],[78.57634,18.09329],[78.57209,18.09047],[78.56906,18.07893],[78.57212,18.06987],[78.56567,18.06016],[78.55864,18.06093],[78.55329,18.05676],[78.56027,18.04515],[78.58637,18.03008],[78.58782,18.02276],[78.5842,18.01354],[78.58335,18.0061],[78.56161,18.003],[78.5618,17.99923],[78.55729,17.99277],[78.54226,17.97958],[78.54205,17.97299],[78.53585,17.96952],[78.53593,17.96423],[78.53182,17.94999],[78.53874,17.94535],[78.54172,17.94123],[78.53822,17.93263],[78.53103,17.92969],[78.52968,17.92488],[78.53096,17.92342],[78.53596,17.92298],[78.54591,17.91498],[78.54325,17.91452],[78.54339,17.91088],[78.54001,17.90984],[78.54077,17.9072],[78.53521,17.90731],[78.53363,17.90462],[78.53486,17.90288],[78.52425,17.89646],[78.53412,17.89189],[78.53735,17.88763],[78.55194,17.88933],[78.55838,17.89296],[78.56653,17.90324],[78.56991,17.90495],[78.57341,17.901],[78.57774,17.88239],[78.56099,17.87699],[78.56102,17.87028],[78.53913,17.86038],[78.53964,17.85372],[78.54279,17.8461],[78.5422,17.84308],[78.54001,17.83637],[78.53034,17.83274],[78.5292,17.81941],[78.52658,17.81253],[78.5202,17.80676],[78.52027,17.79999],[78.51511,17.78567],[78.51082,17.7553],[78.51299,17.75199],[78.52655,17.75067],[78.5246,17.74578],[78.52558,17.74379],[78.52187,17.73913],[78.52548,17.7286],[78.51445,17.72597],[78.50615,17.71931],[78.5072,17.71432],[78.5042,17.70373],[78.50451,17.69449],[78.49916,17.68569],[78.50882,17.68369],[78.51372,17.69489],[78.5189,17.70199],[78.52149,17.69617],[78.53589,17.69639],[78.55458,17.68823],[78.55351,17.68658],[78.56158,17.68387],[78.57395,17.68489],[78.57186,17.69011],[78.57515,17.69545],[78.58188,17.69708],[78.59263,17.69674],[78.59547,17.6955],[78.59569,17.69372],[78.60006,17.69299],[78.60002,17.68868],[78.61395,17.67982],[78.61689,17.67216],[78.62333,17.67227],[78.63407,17.66895],[78.65015,17.6764],[78.65907,17.69722],[78.66638,17.6954],[78.66945,17.69819],[78.68584,17.69316],[78.68523,17.68825],[78.70517,17.68623],[78.70842,17.68416],[78.71798,17.66938],[78.72962,17.66785],[78.73801,17.67295],[78.74523,17.68358],[78.76803,17.68654],[78.77664,17.69166],[78.78511,17.70106],[78.78847,17.7018],[78.78423,17.70548],[78.78381,17.70939],[78.78191,17.71118],[78.80036,17.70919],[78.80938,17.70285],[78.81544,17.7021],[78.81558,17.72236],[78.82331,17.72969],[78.82142,17.73019],[78.82072,17.7328],[78.82237,17.73522],[78.8216,17.73939],[78.82734,17.73945],[78.84128,17.75246],[78.85807,17.74823],[78.85972,17.75082],[78.86967,17.78494],[78.86839,17.78572],[78.86918,17.7937],[78.86666,17.80813],[78.8681,17.80836],[78.86591,17.81095],[78.86809,17.81629],[78.86763,17.82513],[78.87833,17.82619],[78.87748,17.83373],[78.8824,17.83467],[78.88871,17.84162],[78.89889,17.83989],[78.90129,17.84391],[78.90565,17.84457],[78.9122,17.8426],[78.92217,17.83653],[78.91646,17.85459],[78.92106,17.87314],[78.93153,17.878],[78.93684,17.87623],[78.94559,17.87943],[78.9501,17.87174],[78.95784,17.86686],[78.9622,17.86577],[78.96806,17.86867],[78.97137,17.86809],[78.97283,17.86341],[78.97553,17.86093],[78.98761,17.85795],[78.99247,17.84929],[78.99865,17.8448],[79.0011,17.84584],[79.00027,17.84806],[79.0031,17.85835],[79.01092,17.86443],[79.02017,17.8761],[79.03915,17.8723],[79.04376,17.86087],[79.04835,17.86087],[79.05469,17.86922],[79.06496,17.87359],[79.07162,17.87369],[79.07274,17.87536],[79.0804,17.8734],[79.09214,17.87317],[79.1033,17.88569],[79.11169,17.89897],[79.12429,17.90222],[79.1133,17.90604],[79.10224,17.91433],[79.10595,17.92159],[79.11514,17.92948],[79.12135,17.94124],[79.12608,17.94502],[79.13147,17.94678],[79.14379,17.96591],[79.139,17.97806],[79.15347,17.99198],[79.1629,17.99113],[79.17429,17.994],[79.18424,17.99387],[79.19232,18.00163],[79.193,17.99967],[79.23285,17.99448],[79.22553,18.01265],[79.22422,18.02165],[79.22577,18.02311],[79.22125,18.03491],[79.2258,18.0517],[79.22727,18.05409],[79.23372,18.05101],[79.24622,18.05075],[79.25756,18.04231],[79.26618,18.03953],[79.28182,18.06573],[79.27978,18.06763],[79.28317,18.07097],[79.29088,18.0893],[79.29317,18.10279],[79.2906,18.12122],[79.29385,18.12591],[79.30121,18.12999],[79.29638,18.13738],[79.29084,18.14235],[79.29067,18.1509],[79.28742,18.15355],[79.25089,18.15417],[79.25047,18.16311],[79.2443,18.16922],[79.24219,18.1772],[79.24448,18.18399],[79.22906,18.18143],[79.22347,18.17778],[79.21063,18.17491],[79.21226,18.16163],[79.19252,18.16387],[79.18784,18.17022],[79.16248,18.15719],[79.16016,18.16647],[79.14586,18.17099],[79.1462,18.18342],[79.14093,18.18787],[79.14023,18.19639],[79.13786,18.20066],[79.13716,18.20627],[79.12847,18.21462],[79.12325,18.217],[79.12054,18.21488],[79.11337,18.21495],[79.10817,18.22136],[79.10849,18.23726],[79.11716,18.24263],[79.12328,18.24314],[79.12034,18.25536],[79.13004,18.26132],[79.13369,18.27125],[79.12739,18.27543],[79.11979,18.27702],[79.11801,18.28714],[79.11472,18.29039],[79.11736,18.30225],[79.11917,18.30421],[79.11473,18.3044],[79.10899,18.30838],[79.11027,18.31603],[79.10187,18.32045],[79.10693,18.33095],[79.10523,18.33261],[79.10689,18.33738],[79.11692,18.3388],[79.13029,18.34879],[79.13618,18.34713],[79.15296,18.35222],[79.15753,18.35505],[79.15354,18.37802],[79.12781,18.38515],[79.12662,18.3966],[79.11962,18.39655],[79.10897,18.40363],[79.09336,18.40693],[79.08551,18.41235],[79.07994,18.42297],[79.07368,18.42466]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"693","area_level":"District","area_name":"Wanaparthy","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.0609,16.62494],[78.05785,16.62621],[78.05595,16.62312],[78.03805,16.62566],[78.03099,16.62173],[78.02544,16.61619],[78.01218,16.61694],[78.00834,16.61538],[78.00005,16.60702],[77.99995,16.60245],[77.99803,16.60044],[78.00035,16.59436],[77.98891,16.5923],[77.99308,16.58642],[77.99673,16.58432],[78.00408,16.56808],[77.99778,16.55768],[77.99784,16.55415],[78.01388,16.54521],[78.02009,16.53309],[78.01863,16.52841],[78.0072,16.53217],[77.99792,16.53101],[77.99328,16.51945],[77.99476,16.5159],[77.99227,16.51559],[77.98985,16.51816],[77.98489,16.51381],[77.98683,16.51122],[77.98475,16.50857],[77.985,16.50511],[77.98244,16.5025],[77.96812,16.50387],[77.96764,16.50051],[77.94123,16.50035],[77.93485,16.49265],[77.93098,16.48196],[77.9211,16.48389],[77.91866,16.48808],[77.92323,16.49276],[77.92167,16.49941],[77.92876,16.50642],[77.9303,16.51828],[77.93394,16.5191],[77.93404,16.52168],[77.92426,16.52068],[77.89789,16.52806],[77.8942,16.52576],[77.8901,16.51612],[77.8973,16.5024],[77.89331,16.49596],[77.89107,16.4748],[77.89721,16.4686],[77.90689,16.46353],[77.91867,16.46515],[77.92154,16.46177],[77.92394,16.45153],[77.91639,16.44238],[77.90269,16.44442],[77.9005,16.44967],[77.89589,16.45113],[77.86381,16.44655],[77.86346,16.4364],[77.87004,16.42131],[77.865,16.39951],[77.86538,16.38901],[77.86275,16.38448],[77.86266,16.37181],[77.85502,16.37189],[77.84007,16.39502],[77.8318,16.39711],[77.81713,16.39144],[77.80217,16.39758],[77.79683,16.40564],[77.79133,16.40921],[77.79073,16.41251],[77.79341,16.42186],[77.76822,16.42266],[77.75422,16.42127],[77.75556,16.41456],[77.75878,16.40925],[77.76184,16.39392],[77.74916,16.38794],[77.74871,16.39106],[77.74486,16.37679],[77.73381,16.36971],[77.7394,16.36693],[77.73933,16.3655],[77.71825,16.36744],[77.71615,16.35764],[77.71561,16.33432],[77.72873,16.33167],[77.73849,16.32444],[77.77492,16.30681],[77.79208,16.29481],[77.80368,16.28872],[77.8406,16.26162],[77.84317,16.25798],[77.85682,16.25073],[77.86613,16.24205],[77.87592,16.23707],[77.89371,16.22312],[77.90795,16.21617],[77.92089,16.20522],[77.93184,16.19281],[77.93229,16.17766],[77.9311,16.17479],[77.9356,16.1636],[77.93954,16.16037],[77.94239,16.15325],[77.94096,16.1377],[77.94357,16.12557],[77.94658,16.11924],[77.96146,16.10823],[77.97382,16.09516],[77.98177,16.09095],[77.99386,16.08732],[78.01254,16.07113],[78.0143,16.06737],[78.02928,16.0598],[78.04358,16.04075],[78.04652,16.03258],[78.05077,16.02857],[78.072,16.01311],[78.11353,16.00198],[78.12741,16.00241],[78.12844,16.00146],[78.12728,16.00022],[78.13607,15.99624],[78.14215,15.98747],[78.14381,15.97211],[78.14659,15.96232],[78.1518,15.95369],[78.15973,15.94824],[78.19438,15.94371],[78.22145,15.94387],[78.22978,15.94694],[78.24038,15.95497],[78.25123,15.97508],[78.25212,15.98068],[78.25982,15.99556],[78.25551,16.01285],[78.25855,16.02323],[78.23982,16.0285],[78.25114,16.04489],[78.24288,16.04912],[78.2399,16.05305],[78.23123,16.05578],[78.22864,16.05959],[78.23028,16.07049],[78.23361,16.07871],[78.23265,16.08268],[78.23508,16.08966],[78.23689,16.10595],[78.22412,16.13466],[78.21494,16.13739],[78.22645,16.16304],[78.22718,16.17459],[78.20918,16.18],[78.21089,16.18293],[78.21119,16.20075],[78.20212,16.20424],[78.19666,16.2086],[78.20083,16.21437],[78.19987,16.22184],[78.19247,16.22775],[78.20005,16.23554],[78.19926,16.24828],[78.20126,16.25072],[78.19885,16.2597],[78.16422,16.26705],[78.16186,16.27959],[78.16274,16.29623],[78.16849,16.30829],[78.17991,16.31133],[78.18876,16.31654],[78.18978,16.32186],[78.20795,16.31986],[78.2095,16.3185],[78.2133,16.32144],[78.21782,16.31982],[78.22191,16.30637],[78.22117,16.30361],[78.22771,16.30193],[78.23478,16.29696],[78.24377,16.29581],[78.24866,16.29084],[78.25431,16.28816],[78.25639,16.28944],[78.25523,16.29735],[78.25962,16.30276],[78.25838,16.30599],[78.25911,16.31304],[78.26368,16.33282],[78.29281,16.32601],[78.29092,16.33198],[78.29727,16.33383],[78.30148,16.34758],[78.30348,16.35011],[78.30861,16.34841],[78.31495,16.3693],[78.31452,16.38074],[78.30965,16.38835],[78.29661,16.39271],[78.28826,16.40024],[78.28148,16.39985],[78.27751,16.40348],[78.27399,16.39947],[78.26453,16.40071],[78.25815,16.40788],[78.2468,16.4155],[78.23317,16.41838],[78.22221,16.41235],[78.20139,16.40921],[78.20167,16.41672],[78.1985,16.43271],[78.20086,16.4393],[78.20077,16.44719],[78.19585,16.44637],[78.19252,16.45035],[78.17603,16.44953],[78.14784,16.45611],[78.13009,16.46643],[78.13124,16.46966],[78.12493,16.4717],[78.12397,16.47445],[78.09989,16.48723],[78.10367,16.49533],[78.10307,16.49904],[78.11112,16.53755],[78.11231,16.54079],[78.12262,16.55221],[78.123,16.56347],[78.11962,16.56315],[78.11854,16.57316],[78.11616,16.57301],[78.12517,16.59145],[78.11894,16.59196],[78.11607,16.59778],[78.1016,16.59796],[78.07679,16.60877],[78.07018,16.61449],[78.06904,16.62452],[78.0609,16.62494]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"694","area_level":"District","area_name":"Nagarkurnool","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.65679,16.7772],[78.68308,16.78881],[78.68255,16.81144],[78.67619,16.82404],[78.66668,16.83241],[78.66528,16.8233],[78.66719,16.81464],[78.6673,16.80388],[78.63295,16.77646],[78.62353,16.78182],[78.61595,16.78392],[78.61587,16.79417],[78.59079,16.79612],[78.58719,16.79931],[78.58416,16.79949],[78.58171,16.80295],[78.57056,16.80612],[78.56652,16.81244],[78.56671,16.81463],[78.56038,16.81812],[78.5505,16.81823],[78.54737,16.82017],[78.54334,16.81922],[78.53684,16.82146],[78.52962,16.8165],[78.52626,16.8159],[78.51914,16.82074],[78.51403,16.82174],[78.48269,16.82098],[78.48029,16.8172],[78.47856,16.81718],[78.47337,16.80064],[78.47342,16.78723],[78.47158,16.77758],[78.47433,16.77783],[78.48814,16.76813],[78.49372,16.75938],[78.48699,16.75103],[78.4652,16.75216],[78.46586,16.73456],[78.46437,16.73068],[78.44722,16.71517],[78.44284,16.70774],[78.43033,16.70559],[78.42731,16.68815],[78.42431,16.68004],[78.40491,16.67393],[78.40374,16.66544],[78.40481,16.65547],[78.39927,16.65636],[78.39687,16.65879],[78.3902,16.66114],[78.38294,16.65972],[78.3785,16.66063],[78.36872,16.6563],[78.36616,16.64472],[78.34287,16.65827],[78.3338,16.65562],[78.32913,16.65592],[78.32194,16.66832],[78.31906,16.67698],[78.31971,16.67971],[78.31698,16.68453],[78.30783,16.68869],[78.29823,16.6901],[78.29547,16.69678],[78.28201,16.70559],[78.26713,16.70954],[78.26374,16.71273],[78.26307,16.71708],[78.25947,16.72168],[78.23504,16.74204],[78.23378,16.73896],[78.22977,16.74126],[78.22356,16.74131],[78.22279,16.73668],[78.21346,16.72237],[78.21157,16.71068],[78.21019,16.71102],[78.20814,16.70724],[78.19827,16.701],[78.18814,16.70436],[78.18244,16.70369],[78.18128,16.71379],[78.18315,16.73083],[78.16296,16.72887],[78.1575,16.71395],[78.15806,16.71001],[78.15538,16.70074],[78.14459,16.68786],[78.14446,16.68236],[78.14232,16.68145],[78.14188,16.67532],[78.14029,16.67457],[78.14006,16.66081],[78.15078,16.64766],[78.14088,16.63511],[78.13024,16.62575],[78.12954,16.61362],[78.12563,16.59995],[78.12615,16.59352],[78.11616,16.57301],[78.11854,16.57316],[78.11962,16.56315],[78.123,16.56347],[78.12262,16.55221],[78.11231,16.54079],[78.11112,16.53755],[78.10307,16.49904],[78.10367,16.49533],[78.09989,16.48723],[78.12397,16.47445],[78.12493,16.4717],[78.13124,16.46966],[78.13009,16.46643],[78.14784,16.45611],[78.17603,16.44953],[78.19252,16.45035],[78.19585,16.44637],[78.20077,16.44719],[78.20086,16.4393],[78.1985,16.43271],[78.20167,16.41672],[78.20139,16.40921],[78.22221,16.41235],[78.23317,16.41838],[78.2468,16.4155],[78.25815,16.40788],[78.26453,16.40071],[78.27399,16.39947],[78.27751,16.40348],[78.28148,16.39985],[78.28874,16.39999],[78.29661,16.39271],[78.30965,16.38835],[78.31481,16.37923],[78.31473,16.36809],[78.30861,16.34841],[78.30348,16.35011],[78.30148,16.34758],[78.29727,16.33383],[78.29092,16.33198],[78.29281,16.32601],[78.26368,16.33282],[78.25911,16.31304],[78.25838,16.30599],[78.25962,16.30276],[78.25523,16.29735],[78.25639,16.28944],[78.25431,16.28816],[78.24866,16.29084],[78.24377,16.29581],[78.23478,16.29696],[78.22771,16.30193],[78.22117,16.30361],[78.22191,16.30637],[78.21782,16.31982],[78.2133,16.32144],[78.2095,16.3185],[78.20795,16.31986],[78.18978,16.32186],[78.18876,16.31654],[78.17991,16.31133],[78.16849,16.30829],[78.16274,16.29623],[78.16186,16.27959],[78.16422,16.26705],[78.19885,16.2597],[78.20126,16.25072],[78.19926,16.24828],[78.20005,16.23554],[78.19247,16.22775],[78.19987,16.22184],[78.20083,16.21437],[78.19666,16.2086],[78.20212,16.20424],[78.21119,16.20075],[78.21089,16.18293],[78.20918,16.18],[78.22718,16.17459],[78.22645,16.16304],[78.21494,16.13739],[78.22412,16.13466],[78.23689,16.10595],[78.23508,16.08966],[78.23265,16.08268],[78.23361,16.07871],[78.23028,16.07049],[78.22864,16.05959],[78.23123,16.05578],[78.2399,16.05305],[78.24288,16.04912],[78.25114,16.04489],[78.24112,16.03166],[78.23982,16.0285],[78.24185,16.02692],[78.25855,16.02323],[78.26244,16.02671],[78.27003,16.02678],[78.28405,16.02144],[78.29791,16.01203],[78.30399,16.01073],[78.31226,16.01151],[78.32193,16.01711],[78.32208,16.02868],[78.32656,16.03674],[78.34773,16.04747],[78.36197,16.0458],[78.36542,16.04678],[78.38439,16.0646],[78.39669,16.06574],[78.40276,16.07296],[78.41006,16.07507],[78.42867,16.07318],[78.43451,16.0712],[78.44265,16.07428],[78.47662,16.06808],[78.49865,16.05997],[78.52292,16.05369],[78.54205,16.04417],[78.55176,16.0428],[78.55763,16.04497],[78.58694,16.06344],[78.59239,16.0691],[78.59625,16.07797],[78.60163,16.08393],[78.60996,16.08713],[78.62098,16.08805],[78.63243,16.0865],[78.65022,16.07881],[78.65042,16.07199],[78.66814,16.0545],[78.67262,16.04587],[78.68119,16.03479],[78.69937,16.02715],[78.72357,16.02012],[78.7355,16.00815],[78.74091,16.00866],[78.751,16.01573],[78.76719,16.0166],[78.79071,16.02357],[78.79606,16.0284],[78.80121,16.03776],[78.8194,16.0483],[78.82765,16.06082],[78.83706,16.07037],[78.84171,16.0826],[78.84262,16.09017],[78.83925,16.11355],[78.83304,16.13732],[78.83284,16.14195],[78.83467,16.14516],[78.8547,16.14881],[78.86679,16.14645],[78.87288,16.14326],[78.87651,16.13553],[78.87939,16.11761],[78.88698,16.09848],[78.88922,16.08479],[78.8956,16.08558],[78.90611,16.09483],[78.92044,16.102],[78.92203,16.10431],[78.92162,16.12282],[78.92438,16.13084],[78.92428,16.13578],[78.9225,16.14003],[78.91469,16.14932],[78.91054,16.16407],[78.90434,16.17556],[78.90489,16.18288],[78.91106,16.18843],[78.92018,16.19196],[78.92699,16.19663],[78.93762,16.2012],[78.94896,16.20354],[78.96027,16.20907],[78.96774,16.21112],[78.98572,16.21071],[79.00951,16.24021],[79.02918,16.24174],[79.04802,16.23867],[79.05858,16.23519],[79.07211,16.22707],[79.08411,16.23012],[79.09443,16.22429],[79.10158,16.22282],[79.10864,16.22848],[79.11972,16.23194],[79.12377,16.23102],[79.146,16.21397],[79.15875,16.2092],[79.17019,16.2099],[79.20628,16.22091],[79.21537,16.22617],[79.21946,16.23175],[79.22342,16.24665],[79.22459,16.27119],[79.23048,16.28311],[79.23104,16.31433],[79.23393,16.32283],[79.23381,16.3358],[79.21433,16.34935],[79.21059,16.35617],[79.20356,16.36241],[79.19467,16.35895],[79.19086,16.35985],[79.18111,16.36737],[79.17185,16.36796],[79.16631,16.37304],[79.16598,16.37689],[79.16417,16.37874],[79.15479,16.38104],[79.15291,16.38491],[79.15328,16.39688],[79.15169,16.39974],[79.14297,16.3986],[79.13507,16.40386],[79.12246,16.40629],[79.11656,16.4111],[79.10987,16.42078],[79.09154,16.42158],[79.08374,16.42819],[79.07306,16.44235],[79.0589,16.44698],[79.0463,16.4587],[79.02898,16.46547],[79.02201,16.47218],[79.00519,16.48025],[78.98588,16.49335],[78.9676,16.49743],[78.93929,16.51034],[78.92253,16.52336],[78.91831,16.53452],[78.91214,16.53989],[78.9104,16.5511],[78.89652,16.54966],[78.88766,16.54657],[78.88357,16.54728],[78.86994,16.54357],[78.8656,16.54432],[78.85566,16.55088],[78.83599,16.54366],[78.81227,16.52378],[78.80917,16.51851],[78.80068,16.51396],[78.79421,16.51599],[78.78913,16.51516],[78.77469,16.5301],[78.76527,16.53333],[78.72429,16.53953],[78.69513,16.53622],[78.68389,16.53733],[78.68159,16.5363],[78.6798,16.53127],[78.67752,16.53115],[78.6755,16.53312],[78.6723,16.52942],[78.66928,16.53607],[78.66376,16.54116],[78.66188,16.54622],[78.67115,16.55234],[78.67945,16.55485],[78.67988,16.55222],[78.69071,16.56105],[78.70138,16.56458],[78.71623,16.58193],[78.70704,16.5951],[78.70399,16.60546],[78.69806,16.61275],[78.70006,16.61525],[78.6985,16.61884],[78.69197,16.62062],[78.69176,16.62254],[78.6799,16.62405],[78.67761,16.63569],[78.66736,16.65177],[78.69336,16.65136],[78.70781,16.64934],[78.71348,16.6505],[78.70726,16.6661],[78.71009,16.6783],[78.71759,16.68446],[78.72559,16.68842],[78.74084,16.70669],[78.75555,16.70614],[78.75955,16.73063],[78.75762,16.73718],[78.75726,16.74759],[78.75443,16.7514],[78.73358,16.75813],[78.72635,16.75576],[78.72601,16.75261],[78.72133,16.75186],[78.71561,16.75182],[78.70989,16.75587],[78.703,16.75785],[78.69605,16.75431],[78.69617,16.76551],[78.6922,16.76479],[78.68376,16.76793],[78.67785,16.76738],[78.6769,16.76525],[78.67235,16.76284],[78.66455,16.76043],[78.65929,16.767],[78.6522,16.7679],[78.6506,16.77246],[78.65679,16.7772]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"695","area_level":"District","area_name":"Jogulamba Gadwal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.64365,16.36347],[77.62774,16.35883],[77.60187,16.34338],[77.59612,16.34291],[77.59524,16.33963],[77.58843,16.33415],[77.59083,16.32928],[77.59,16.3255],[77.59441,16.32077],[77.59562,16.31682],[77.59202,16.30217],[77.59337,16.29744],[77.59772,16.29281],[77.582,16.29134],[77.56888,16.3036],[77.56321,16.30164],[77.54508,16.29171],[77.54082,16.28546],[77.5369,16.2668],[77.53282,16.27168],[77.52933,16.2728],[77.5296,16.27548],[77.52187,16.27803],[77.51386,16.27784],[77.51043,16.27459],[77.50481,16.2758],[77.50514,16.2676],[77.5024,16.26306],[77.49008,16.25523],[77.49298,16.24408],[77.49234,16.2293],[77.49506,16.22712],[77.50356,16.23094],[77.51317,16.23085],[77.51566,16.22779],[77.51499,16.22196],[77.51215,16.22092],[77.50279,16.22366],[77.50115,16.22172],[77.49818,16.20956],[77.49949,16.19856],[77.49132,16.18453],[77.48615,16.16298],[77.49068,16.15958],[77.4916,16.13502],[77.48979,16.11962],[77.50022,16.12059],[77.50231,16.11717],[77.51081,16.11227],[77.51328,16.10802],[77.50875,16.10919],[77.50093,16.10619],[77.49366,16.08634],[77.50688,16.07964],[77.50261,16.05881],[77.49944,16.06102],[77.49651,16.05504],[77.49946,16.05372],[77.49681,16.04712],[77.49787,16.04409],[77.49535,16.0417],[77.494,16.03699],[77.49558,16.03098],[77.49803,16.02998],[77.49745,16.02867],[77.50225,16.02247],[77.50267,16.01871],[77.50434,16.01821],[77.50441,16.01133],[77.51405,16.00808],[77.50955,15.9804],[77.51109,15.97937],[77.51066,15.97516],[77.5164,15.96736],[77.51981,15.96691],[77.51344,15.92679],[77.53246,15.92409],[77.54898,15.91912],[77.58081,15.91848],[77.59331,15.91192],[77.59845,15.91241],[77.61139,15.91793],[77.62505,15.90904],[77.63647,15.89606],[77.6592,15.8855],[77.69275,15.88331],[77.71273,15.89452],[77.7241,15.89581],[77.73133,15.8937],[77.73881,15.88803],[77.74405,15.8861],[77.76079,15.88462],[77.76687,15.88614],[77.77723,15.88077],[77.78236,15.87617],[77.79292,15.87648],[77.80352,15.87413],[77.81983,15.87783],[77.83873,15.88509],[77.84597,15.88212],[77.85851,15.88371],[77.86232,15.88636],[77.87005,15.89724],[77.87822,15.90522],[77.88798,15.90608],[77.93696,15.8835],[77.94905,15.88476],[77.97533,15.88334],[77.99696,15.86632],[78.00886,15.86175],[78.0088,15.86478],[78.01503,15.87599],[78.02551,15.90236],[78.031,15.90296],[78.03189,15.90735],[78.04494,15.90414],[78.04682,15.8749],[78.05621,15.87465],[78.05583,15.86633],[78.07152,15.86175],[78.07136,15.85037],[78.07511,15.84718],[78.08488,15.84506],[78.08355,15.84092],[78.09879,15.83601],[78.11123,15.83836],[78.12332,15.83671],[78.13011,15.83809],[78.134,15.83626],[78.13428,15.84402],[78.13007,15.8507],[78.13554,15.8547],[78.15877,15.85376],[78.16679,15.85463],[78.17534,15.85808],[78.17667,15.87676],[78.18661,15.88481],[78.18993,15.89227],[78.17944,15.90193],[78.18443,15.90982],[78.20451,15.91798],[78.23214,15.92399],[78.25162,15.93522],[78.25362,15.94254],[78.25208,15.95383],[78.25333,15.96633],[78.25123,15.97508],[78.24038,15.95497],[78.22978,15.94694],[78.22145,15.94387],[78.20571,15.94314],[78.1836,15.9446],[78.16159,15.94758],[78.15406,15.95157],[78.14659,15.96232],[78.14381,15.97211],[78.14215,15.98747],[78.13607,15.99624],[78.12728,16.00022],[78.12844,16.00146],[78.12741,16.00241],[78.11353,16.00198],[78.08823,16.00797],[78.06944,16.01432],[78.04652,16.03258],[78.04358,16.04075],[78.02928,16.0598],[78.0143,16.06737],[78.01254,16.07113],[77.99386,16.08732],[77.98177,16.09095],[77.97382,16.09516],[77.96146,16.10823],[77.94709,16.11862],[77.94357,16.12557],[77.94096,16.1377],[77.94239,16.15325],[77.93954,16.16037],[77.9356,16.1636],[77.9311,16.17479],[77.93229,16.17766],[77.93171,16.19316],[77.91234,16.21274],[77.90155,16.22035],[77.89371,16.22312],[77.87592,16.23707],[77.86613,16.24205],[77.85682,16.25073],[77.84317,16.25798],[77.8406,16.26162],[77.83251,16.26638],[77.81233,16.28295],[77.77492,16.30681],[77.73849,16.32444],[77.72873,16.33167],[77.70492,16.33641],[77.70024,16.34051],[77.6924,16.34308],[77.68564,16.34767],[77.68484,16.35164],[77.67538,16.36172],[77.66638,16.36396],[77.65973,16.36053],[77.65602,16.36034],[77.64365,16.36347]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"696","area_level":"District","area_name":"Suryapet","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.60349,17.49937],[79.60283,17.50775],[79.59923,17.51174],[79.59916,17.51608],[79.59511,17.52724],[79.58968,17.52891],[79.58962,17.52403],[79.59173,17.52238],[79.58989,17.5202],[79.59723,17.50129],[79.59459,17.49912],[79.59168,17.499],[79.58346,17.50317],[79.57603,17.50356],[79.57002,17.5019],[79.56597,17.49731],[79.55388,17.50824],[79.55136,17.51512],[79.54155,17.52696],[79.54046,17.5242],[79.53072,17.51788],[79.52608,17.51239],[79.52334,17.50556],[79.52464,17.49902],[79.52181,17.49476],[79.50086,17.49622],[79.4851,17.51011],[79.4724,17.51456],[79.45337,17.51175],[79.43019,17.51664],[79.42933,17.51152],[79.42456,17.50248],[79.41253,17.49858],[79.40207,17.50216],[79.3833,17.51172],[79.37886,17.51116],[79.373,17.50304],[79.36297,17.50073],[79.36898,17.4914],[79.36619,17.48627],[79.37312,17.48203],[79.37739,17.47315],[79.39106,17.46539],[79.40676,17.4517],[79.42072,17.43133],[79.42472,17.4156],[79.42268,17.41176],[79.41608,17.40647],[79.41239,17.39909],[79.42183,17.37619],[79.44196,17.36382],[79.45097,17.35183],[79.4537,17.34501],[79.46362,17.33985],[79.47507,17.33038],[79.4843,17.31272],[79.48644,17.2945],[79.49719,17.26235],[79.49308,17.25719],[79.49565,17.25069],[79.49397,17.23337],[79.50231,17.23103],[79.51974,17.23329],[79.5243,17.21298],[79.52537,17.18616],[79.53868,17.16412],[79.55154,17.1533],[79.56174,17.14182],[79.56916,17.12001],[79.58288,17.10125],[79.59211,17.08355],[79.59394,17.07491],[79.59284,17.05964],[79.60116,17.04468],[79.59832,17.03128],[79.59901,17.02642],[79.60331,17.01358],[79.60547,16.99971],[79.6098,16.99555],[79.61559,16.98432],[79.61661,16.96985],[79.61469,16.96159],[79.61414,16.93967],[79.61682,16.92358],[79.62233,16.91251],[79.62651,16.90701],[79.63381,16.9013],[79.64178,16.88768],[79.64584,16.86613],[79.66305,16.85025],[79.66795,16.84136],[79.66833,16.82867],[79.66585,16.81468],[79.66647,16.80309],[79.67351,16.77965],[79.67415,16.76361],[79.67345,16.75606],[79.67051,16.75072],[79.66886,16.74274],[79.66806,16.73334],[79.67446,16.72407],[79.68868,16.72259],[79.69983,16.71845],[79.67915,16.6934],[79.68552,16.69456],[79.71389,16.68924],[79.72289,16.69028],[79.72932,16.69551],[79.74461,16.71908],[79.77277,16.73057],[79.78408,16.73054],[79.78857,16.72898],[79.79311,16.72483],[79.79887,16.71068],[79.8112,16.69568],[79.81726,16.69187],[79.82109,16.69151],[79.82816,16.69378],[79.85106,16.70584],[79.85885,16.70465],[79.87836,16.69668],[79.88594,16.68609],[79.89038,16.66011],[79.89372,16.65011],[79.90889,16.63458],[79.91569,16.63251],[79.93235,16.63131],[79.94975,16.6359],[79.96477,16.64495],[79.97735,16.66228],[79.99741,16.70209],[80.00758,16.70884],[80.02215,16.71033],[80.03054,16.71478],[80.03664,16.72766],[80.05511,16.74504],[80.05386,16.76543],[80.06645,16.78641],[80.0706,16.80169],[80.0708,16.81324],[80.07325,16.81719],[80.07106,16.81809],[80.07079,16.8213],[80.0595,16.82519],[80.04818,16.83323],[80.0464,16.83868],[80.04684,16.85334],[80.02901,16.85202],[80.01704,16.85423],[80.00395,16.86179],[80.00363,16.8639],[79.99876,16.86521],[80.00156,16.86769],[80.00508,16.87645],[80.00458,16.88105],[80.01242,16.89268],[80.01738,16.91497],[80.02456,16.91506],[80.02706,16.91754],[80.03145,16.91688],[80.03751,16.91856],[80.03955,16.91707],[80.04455,16.92926],[80.0504,16.93598],[80.0519,16.9421],[80.04822,16.94943],[80.05245,16.95987],[80.05743,16.96404],[80.05553,16.97276],[80.06119,16.98726],[80.05643,16.99533],[80.05759,16.99709],[80.05615,16.99894],[80.05994,17.00065],[80.062,17.00935],[80.05096,17.01108],[80.04967,17.01358],[80.0458,17.01441],[80.04633,17.01697],[80.03928,17.02087],[80.03929,17.02298],[80.03687,17.02416],[80.04035,17.03881],[80.03977,17.05118],[80.03597,17.05384],[80.0303,17.05293],[80.02729,17.0544],[80.01568,17.06612],[80.00596,17.06801],[79.99545,17.07698],[79.9857,17.09623],[79.9698,17.11191],[79.96206,17.1244],[79.951,17.1295],[79.94619,17.13499],[79.93189,17.12742],[79.91839,17.12946],[79.91252,17.14865],[79.89893,17.15529],[79.88867,17.17173],[79.88105,17.17363],[79.87656,17.19359],[79.88195,17.19815],[79.88624,17.20911],[79.90187,17.21155],[79.89574,17.2309],[79.89732,17.23648],[79.8997,17.23576],[79.90223,17.24634],[79.90023,17.24629],[79.90068,17.25385],[79.88953,17.25937],[79.89005,17.25632],[79.88698,17.2593],[79.88139,17.25909],[79.87483,17.26302],[79.87282,17.266],[79.86812,17.26228],[79.84041,17.27926],[79.8382,17.27968],[79.83606,17.27419],[79.83444,17.27472],[79.83278,17.2713],[79.83046,17.27021],[79.81774,17.28198],[79.81879,17.28996],[79.80169,17.31235],[79.80354,17.32513],[79.7928,17.32601],[79.79463,17.33044],[79.79278,17.33639],[79.79613,17.35399],[79.77765,17.36899],[79.78117,17.38109],[79.78768,17.3842],[79.79143,17.38394],[79.79685,17.39368],[79.79313,17.39694],[79.77554,17.40302],[79.77246,17.39935],[79.76726,17.40585],[79.76222,17.40783],[79.761,17.4259],[79.762,17.42986],[79.75201,17.43983],[79.74363,17.4291],[79.73763,17.43033],[79.72956,17.42835],[79.71835,17.43419],[79.71013,17.44552],[79.70693,17.44701],[79.70474,17.44469],[79.70027,17.44782],[79.69987,17.45613],[79.69706,17.45597],[79.69737,17.45465],[79.69025,17.45463],[79.65648,17.47079],[79.6591,17.48435],[79.65544,17.49401],[79.6502,17.49307],[79.63914,17.48631],[79.62959,17.49066],[79.62639,17.49647],[79.62077,17.50028],[79.61628,17.49876],[79.6128,17.49992],[79.60961,17.49656],[79.60349,17.49937]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"697","area_level":"District","area_name":"Yadadri Bhuvanagiri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.9169,17.80556],[78.90714,17.81254],[78.90078,17.80807],[78.89965,17.80484],[78.89171,17.8056],[78.88072,17.80954],[78.87123,17.80763],[78.86667,17.80821],[78.86918,17.7937],[78.86839,17.78572],[78.86967,17.78494],[78.86192,17.75669],[78.85807,17.74823],[78.84128,17.75246],[78.82734,17.73945],[78.8216,17.73939],[78.82237,17.73522],[78.82072,17.7328],[78.82142,17.73019],[78.82331,17.72969],[78.81558,17.72236],[78.81544,17.7021],[78.80938,17.70285],[78.80036,17.70919],[78.78191,17.71118],[78.78381,17.70939],[78.78423,17.70548],[78.78847,17.7018],[78.78511,17.70106],[78.77664,17.69166],[78.76803,17.68654],[78.74523,17.68358],[78.73801,17.67295],[78.72962,17.66785],[78.72378,17.6681],[78.71826,17.65712],[78.7113,17.65205],[78.70993,17.64414],[78.71123,17.63997],[78.70332,17.63755],[78.69625,17.63737],[78.70095,17.63155],[78.68526,17.62175],[78.68541,17.61985],[78.69021,17.62007],[78.69825,17.61223],[78.70186,17.61142],[78.69975,17.60765],[78.69782,17.60859],[78.69771,17.60584],[78.69094,17.60136],[78.68657,17.595],[78.69307,17.59222],[78.69133,17.58445],[78.67651,17.5759],[78.688,17.56535],[78.68906,17.56226],[78.70562,17.55759],[78.69495,17.55128],[78.69795,17.54163],[78.70095,17.53979],[78.70053,17.53516],[78.71236,17.52065],[78.7122,17.51245],[78.70742,17.50541],[78.70893,17.50198],[78.7065,17.48481],[78.7096,17.48456],[78.70915,17.47627],[78.71692,17.46824],[78.71951,17.47165],[78.74756,17.47029],[78.75142,17.47141],[78.75701,17.46191],[78.76067,17.46028],[78.7585,17.45384],[78.75198,17.4438],[78.75111,17.43829],[78.75267,17.43415],[78.75887,17.4303],[78.75944,17.42683],[78.75597,17.41751],[78.75476,17.40472],[78.74905,17.40124],[78.74243,17.40087],[78.73909,17.396],[78.73711,17.39036],[78.73728,17.38066],[78.7301,17.35919],[78.73235,17.35409],[78.73075,17.35231],[78.71604,17.35888],[78.70775,17.35232],[78.70708,17.34638],[78.71384,17.33918],[78.7141,17.33403],[78.72127,17.33239],[78.72132,17.33103],[78.7195,17.33097],[78.72003,17.32845],[78.73111,17.32639],[78.73906,17.32709],[78.74057,17.32932],[78.74504,17.33082],[78.7532,17.32924],[78.76222,17.30345],[78.75194,17.30211],[78.74612,17.29639],[78.74123,17.29746],[78.74106,17.29575],[78.74503,17.28758],[78.74994,17.28502],[78.75248,17.28138],[78.75494,17.26777],[78.75326,17.26089],[78.75759,17.25936],[78.75964,17.25636],[78.7696,17.25008],[78.77653,17.24806],[78.77797,17.24574],[78.78708,17.24473],[78.78958,17.24221],[78.79086,17.24412],[78.79763,17.24361],[78.80656,17.24044],[78.81271,17.23381],[78.81923,17.23224],[78.82032,17.2283],[78.81657,17.22535],[78.81621,17.2121],[78.80705,17.20783],[78.80248,17.20775],[78.7979,17.20276],[78.75921,17.21397],[78.7719,17.19483],[78.7726,17.18889],[78.7809,17.18633],[78.78221,17.17874],[78.78926,17.16484],[78.78504,17.15909],[78.77756,17.16218],[78.77365,17.15532],[78.77453,17.15298],[78.77782,17.14801],[78.78003,17.14764],[78.78063,17.14363],[78.7854,17.1373],[78.78849,17.13648],[78.78863,17.13762],[78.83349,17.11254],[78.83336,17.10345],[78.81914,17.10899],[78.81536,17.0962],[78.82814,17.09204],[78.83944,17.07476],[78.86753,17.06431],[78.87947,17.05748],[78.8803,17.04712],[78.89073,17.0436],[78.89196,17.04361],[78.89471,17.0497],[78.89444,17.05983],[78.89771,17.06541],[78.9005,17.06506],[78.9031,17.07231],[78.90101,17.0738],[78.90206,17.07883],[78.91133,17.09012],[78.9149,17.0907],[78.92829,17.08131],[78.93073,17.0844],[78.93076,17.09204],[78.93842,17.10653],[78.94824,17.11019],[78.95218,17.12263],[78.94725,17.12605],[78.95143,17.13191],[78.95265,17.13144],[78.9538,17.13335],[78.97219,17.127],[78.99266,17.15533],[78.98921,17.16008],[78.9779,17.16843],[78.9794,17.17377],[78.97059,17.17939],[78.97232,17.18378],[78.96055,17.19077],[78.96287,17.19539],[78.9611,17.19785],[78.95715,17.19883],[78.97372,17.21476],[78.9715,17.2163],[78.9746,17.23251],[78.97912,17.24371],[78.97888,17.24879],[78.98274,17.24731],[78.98649,17.25071],[78.98291,17.25468],[78.98061,17.2642],[78.98275,17.27552],[78.98082,17.27657],[78.98181,17.27956],[78.99777,17.27849],[78.99768,17.27162],[79.00815,17.27305],[79.03627,17.26877],[79.04183,17.26657],[79.05532,17.25711],[79.06403,17.2579],[79.07342,17.25381],[79.08225,17.25247],[79.08874,17.24712],[79.10341,17.24269],[79.10477,17.24897],[79.10831,17.2548],[79.1105,17.26553],[79.11696,17.27768],[79.12096,17.27627],[79.13772,17.27674],[79.13816,17.28002],[79.14197,17.28182],[79.15561,17.2811],[79.14972,17.27145],[79.15529,17.26466],[79.1546,17.26331],[79.15711,17.26192],[79.1567,17.25952],[79.15804,17.25901],[79.15836,17.26066],[79.16327,17.2565],[79.1703,17.25465],[79.17568,17.25522],[79.17521,17.25146],[79.17793,17.25173],[79.17887,17.25643],[79.18178,17.25936],[79.18415,17.2733],[79.20501,17.26209],[79.20473,17.26887],[79.21587,17.28875],[79.21913,17.30422],[79.21936,17.31382],[79.22389,17.31442],[79.22893,17.31792],[79.24809,17.31543],[79.25185,17.32499],[79.24934,17.33109],[79.2507,17.3588],[79.2571,17.36016],[79.27604,17.35985],[79.29533,17.3568],[79.32549,17.36016],[79.34342,17.35603],[79.3659,17.3449],[79.37381,17.3436],[79.40211,17.34851],[79.42472,17.34544],[79.44651,17.34655],[79.4537,17.34501],[79.45097,17.35183],[79.44196,17.36382],[79.42183,17.37619],[79.4145,17.39152],[79.41288,17.40159],[79.41736,17.4079],[79.42268,17.41176],[79.42486,17.41632],[79.42287,17.42589],[79.41917,17.43412],[79.40676,17.4517],[79.39106,17.46539],[79.37739,17.47315],[79.37312,17.48203],[79.36776,17.48553],[79.36619,17.48627],[79.35927,17.48225],[79.35595,17.47612],[79.34382,17.46633],[79.34071,17.45636],[79.32811,17.45081],[79.31453,17.45427],[79.30569,17.46177],[79.29165,17.46948],[79.28515,17.4692],[79.28606,17.47463],[79.29375,17.48647],[79.27472,17.49764],[79.26827,17.49667],[79.26738,17.49341],[79.2631,17.49048],[79.26231,17.48057],[79.25713,17.47091],[79.24491,17.47863],[79.23792,17.48928],[79.2298,17.49687],[79.21421,17.49995],[79.2052,17.51023],[79.19812,17.51209],[79.19127,17.51074],[79.18895,17.50882],[79.17664,17.51021],[79.16776,17.51514],[79.16782,17.51959],[79.15743,17.52405],[79.13991,17.52426],[79.13619,17.53283],[79.13614,17.5445],[79.14937,17.55739],[79.16629,17.56919],[79.16766,17.57543],[79.15667,17.58546],[79.15123,17.58733],[79.15371,17.59363],[79.15204,17.59847],[79.15373,17.61363],[79.15726,17.61867],[79.15766,17.62195],[79.14416,17.62819],[79.14042,17.63858],[79.13477,17.64281],[79.12952,17.65794],[79.13016,17.67219],[79.12677,17.67313],[79.1233,17.66833],[79.11913,17.66886],[79.09969,17.67749],[79.09811,17.67892],[79.09795,17.68416],[79.09435,17.68619],[79.09127,17.69095],[79.08938,17.69554],[79.08957,17.7015],[79.08392,17.70694],[79.08271,17.71061],[79.06884,17.71919],[79.0461,17.726],[79.04044,17.72045],[79.04011,17.71415],[79.03747,17.70952],[79.03334,17.70795],[79.02499,17.71285],[79.02234,17.71857],[79.00818,17.73328],[79.00882,17.73478],[79.00472,17.73686],[79.00399,17.74213],[78.99569,17.75095],[78.99751,17.7618],[79.00133,17.77082],[78.9919,17.78557],[78.9939,17.78942],[78.99066,17.79077],[78.9906,17.7938],[78.97979,17.7982],[78.97609,17.7946],[78.96055,17.79193],[78.95747,17.7883],[78.94848,17.78822],[78.93783,17.79807],[78.92127,17.80237],[78.9169,17.80556]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"698","area_level":"District","area_name":"Vikarabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.7962,17.62659],[77.79143,17.63258],[77.79022,17.63772],[77.78351,17.63872],[77.78191,17.6307],[77.77623,17.62682],[77.76441,17.62629],[77.76232,17.62769],[77.75227,17.62352],[77.7464,17.62407],[77.74565,17.61771],[77.74986,17.61766],[77.74956,17.61352],[77.76044,17.61544],[77.76178,17.61327],[77.76741,17.61263],[77.77416,17.601],[77.76991,17.58409],[77.76504,17.58437],[77.76148,17.57917],[77.76019,17.57278],[77.76131,17.55799],[77.74664,17.5489],[77.74366,17.54929],[77.71009,17.52797],[77.70944,17.52577],[77.70577,17.52437],[77.70357,17.52616],[77.70144,17.52526],[77.70069,17.52729],[77.69491,17.52791],[77.69054,17.52628],[77.68757,17.52029],[77.68697,17.51218],[77.6888,17.51094],[77.69252,17.49893],[77.68801,17.48943],[77.68963,17.48281],[77.68861,17.47534],[77.67663,17.47838],[77.67053,17.47789],[77.65736,17.48092],[77.65544,17.48308],[77.65232,17.48273],[77.65333,17.49389],[77.65713,17.50658],[77.64788,17.49608],[77.64766,17.48717],[77.64479,17.47757],[77.64051,17.47646],[77.63824,17.47352],[77.61523,17.47289],[77.613,17.46683],[77.61427,17.44595],[77.60292,17.44415],[77.58424,17.4545],[77.57619,17.45617],[77.57586,17.43071],[77.56151,17.43761],[77.55269,17.43705],[77.5373,17.44375],[77.513,17.43087],[77.51417,17.41418],[77.52983,17.40818],[77.53607,17.40798],[77.53784,17.40609],[77.53723,17.40225],[77.52429,17.388],[77.52613,17.382],[77.53324,17.38011],[77.5298,17.37071],[77.5241,17.36417],[77.50263,17.35707],[77.4882,17.35873],[77.48382,17.355],[77.47443,17.36151],[77.47653,17.36371],[77.476,17.36841],[77.4791,17.37072],[77.45361,17.37399],[77.45106,17.35938],[77.45168,17.35268],[77.45487,17.35178],[77.45706,17.34741],[77.45601,17.33124],[77.45245,17.32747],[77.45219,17.31755],[77.44884,17.30962],[77.44765,17.3075],[77.4456,17.30774],[77.44298,17.30122],[77.44051,17.3013],[77.43793,17.29192],[77.45488,17.28724],[77.45854,17.279],[77.45356,17.2761],[77.45081,17.27053],[77.444,17.27055],[77.43578,17.26018],[77.42633,17.25646],[77.42254,17.25076],[77.42042,17.23762],[77.41145,17.23767],[77.41039,17.24041],[77.40827,17.24121],[77.40495,17.23653],[77.38019,17.22253],[77.38296,17.21798],[77.38876,17.21532],[77.40198,17.21412],[77.40375,17.20989],[77.39839,17.21031],[77.39641,17.20753],[77.39389,17.1944],[77.38174,17.19765],[77.37227,17.19556],[77.37396,17.19455],[77.37335,17.19087],[77.36946,17.18632],[77.3719,17.18113],[77.37001,17.17579],[77.3662,17.17221],[77.36677,17.1693],[77.36245,17.16383],[77.36372,17.15878],[77.36682,17.15898],[77.3669,17.15441],[77.37823,17.15257],[77.37775,17.14009],[77.38454,17.14003],[77.40382,17.13292],[77.40666,17.12451],[77.436,17.11498],[77.43849,17.11685],[77.4458,17.11796],[77.44955,17.11502],[77.45428,17.11485],[77.45563,17.11145],[77.45919,17.1091],[77.46362,17.11],[77.46469,17.10776],[77.46285,17.09408],[77.46725,17.08633],[77.47656,17.07943],[77.48098,17.07923],[77.48194,17.07585],[77.47898,17.07263],[77.47993,17.0688],[77.48345,17.05891],[77.48984,17.05054],[77.48766,17.04953],[77.48811,17.04717],[77.49665,17.04272],[77.49495,17.02709],[77.50253,17.0141],[77.5022,17.00937],[77.49783,17.00933],[77.49187,17.00366],[77.48656,17.00321],[77.47952,16.99602],[77.48275,16.98723],[77.48192,16.97204],[77.4783,16.96837],[77.47215,16.95714],[77.46595,16.95893],[77.46621,16.9541],[77.52307,16.9483],[77.52398,16.94692],[77.51582,16.93781],[77.51582,16.93342],[77.52492,16.92551],[77.53212,16.93112],[77.53773,16.93029],[77.54003,16.92332],[77.5454,16.91718],[77.54658,16.90942],[77.55367,16.90293],[77.55765,16.90223],[77.56592,16.91154],[77.56835,16.90758],[77.57885,16.90579],[77.58004,16.90954],[77.58387,16.91252],[77.59649,16.91434],[77.59503,16.92855],[77.59323,16.93066],[77.60285,16.93601],[77.60364,16.94664],[77.60946,16.94949],[77.61528,16.94909],[77.62307,16.95293],[77.62267,16.96888],[77.62498,16.97478],[77.62342,16.97746],[77.62398,16.98436],[77.64412,16.99033],[77.64683,16.99351],[77.64485,16.99514],[77.65323,17.00313],[77.6542,17.00544],[77.65307,17.00695],[77.64801,17.00805],[77.64257,17.00494],[77.64127,17.00598],[77.63792,17.00243],[77.63257,17.00109],[77.63064,17.00214],[77.64154,17.01916],[77.65185,17.01784],[77.65939,17.03206],[77.66706,17.03454],[77.67227,17.03098],[77.67339,17.02818],[77.6765,17.02788],[77.68727,17.02063],[77.69224,17.02411],[77.70413,17.02652],[77.70585,17.0302],[77.71164,17.03279],[77.71459,17.04023],[77.72755,17.03845],[77.73402,17.03366],[77.73109,17.02888],[77.74014,17.02966],[77.75181,17.02407],[77.76579,17.02178],[77.76089,17.01391],[77.76024,17.00223],[77.76674,17.003],[77.77966,17.0018],[77.78703,16.99913],[77.79838,16.99891],[77.79884,16.99257],[77.81344,16.99458],[77.82511,16.98689],[77.8343,16.98767],[77.82462,16.95656],[77.82577,16.95325],[77.83346,16.94867],[77.83715,16.94911],[77.84163,16.96079],[77.84425,16.95997],[77.84904,16.95058],[77.85465,16.94913],[77.86095,16.95033],[77.86721,16.95517],[77.87041,16.9676],[77.87834,16.96794],[77.88417,16.95789],[77.88046,16.95124],[77.87782,16.94077],[77.86955,16.92746],[77.87734,16.92863],[77.88973,16.92462],[77.90325,16.9262],[77.91464,16.92102],[77.92142,16.91401],[77.93178,16.90678],[77.93631,16.88849],[77.94276,16.88236],[77.94818,16.87181],[77.95481,16.86828],[77.95945,16.86294],[77.96694,16.85014],[77.97743,16.84682],[77.98704,16.85953],[77.99037,16.87061],[77.98324,16.87264],[77.97846,16.87654],[77.98018,16.87968],[77.98152,16.89324],[77.98798,16.89881],[77.99235,16.89986],[77.99963,16.89893],[78.00862,16.90247],[78.01117,16.90915],[78.00892,16.92824],[78.00722,16.93389],[78.00455,16.93591],[78.00841,16.94386],[78.01215,16.94329],[78.01131,16.94761],[78.0108,16.94964],[77.99869,16.95239],[77.99405,16.94921],[77.98775,16.95298],[77.9857,16.96039],[77.9952,16.96372],[77.99885,16.97482],[77.99882,16.9826],[77.99477,16.98766],[77.98371,16.99614],[77.97804,17.00432],[77.97827,17.01008],[77.96839,17.01263],[77.96773,17.01397],[77.95357,17.0144],[77.94828,17.01684],[77.95074,17.02033],[77.94392,17.02135],[77.93842,17.02705],[77.93494,17.02803],[77.93064,17.03962],[77.93222,17.04797],[77.92274,17.0518],[77.92287,17.06339],[77.92417,17.066],[77.94209,17.07533],[77.94902,17.07555],[77.94919,17.08069],[77.93816,17.08189],[77.93383,17.08533],[77.95421,17.09554],[77.95415,17.09921],[77.97183,17.10074],[77.97527,17.0995],[77.98228,17.10174],[77.98361,17.10391],[77.99001,17.10334],[77.99227,17.10953],[77.99103,17.11172],[77.9929,17.11379],[77.99337,17.12239],[77.99152,17.12245],[77.99167,17.12822],[77.99869,17.13355],[78.00398,17.14744],[78.01133,17.14763],[78.01605,17.16548],[78.0235,17.16795],[78.03195,17.16835],[78.04115,17.1664],[78.04422,17.16861],[78.04288,17.17949],[78.04527,17.18777],[78.04085,17.18841],[78.04386,17.19405],[78.04693,17.20835],[78.05475,17.21438],[78.06405,17.21104],[78.06612,17.22359],[78.06952,17.23065],[78.05097,17.23541],[78.05081,17.24359],[78.05736,17.24804],[78.05947,17.25124],[78.04851,17.26597],[78.04691,17.2723],[78.04338,17.27501],[78.04722,17.29521],[78.03152,17.30303],[78.0325,17.30862],[78.01476,17.31188],[78.01289,17.31969],[78.00948,17.32013],[78.00777,17.32723],[78.0053,17.32798],[78.00669,17.33706],[78.00558,17.33787],[78.00809,17.34159],[78.01256,17.34432],[78.01715,17.34419],[78.02079,17.35523],[78.0214,17.36283],[78.02295,17.36394],[78.02201,17.37005],[78.02514,17.37002],[78.02794,17.3756],[78.03285,17.37889],[78.03593,17.39057],[78.04707,17.40114],[78.05123,17.41192],[78.06953,17.40971],[78.07136,17.41152],[78.07228,17.43753],[78.06292,17.44871],[78.04769,17.45129],[78.04542,17.45802],[78.04085,17.45782],[78.03946,17.46665],[78.04044,17.47122],[78.03064,17.47128],[78.03104,17.46826],[78.02259,17.46499],[78.01994,17.46948],[78.00425,17.4751],[78.0005,17.48291],[78.00777,17.49608],[77.99523,17.50068],[77.99101,17.50691],[77.98764,17.50251],[77.98821,17.49897],[77.98492,17.49457],[77.98082,17.48385],[77.96459,17.4845],[77.96761,17.49161],[77.96597,17.5047],[77.97283,17.51361],[77.97424,17.51781],[77.96793,17.53006],[77.96235,17.5341],[77.93666,17.5389],[77.93895,17.54191],[77.94018,17.55091],[77.93593,17.55497],[77.93379,17.56076],[77.93651,17.56753],[77.93236,17.56723],[77.92938,17.5722],[77.91294,17.57624],[77.89728,17.58214],[77.88611,17.5801],[77.87275,17.58257],[77.8711,17.59403],[77.8687,17.59679],[77.87014,17.59985],[77.87492,17.603],[77.86747,17.6108],[77.86615,17.61653],[77.86741,17.61957],[77.86297,17.61689],[77.86176,17.61304],[77.85281,17.60843],[77.85535,17.60998],[77.85591,17.61293],[77.85154,17.61689],[77.84919,17.61863],[77.84316,17.61888],[77.83558,17.62512],[77.8259,17.62887],[77.82291,17.63202],[77.8155,17.62637],[77.80383,17.62781],[77.79915,17.62659],[77.79979,17.62495],[77.7962,17.62659]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"699","area_level":"District","area_name":"Kumuram Bheem Asifabad","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.28423,19.59553],[79.27195,19.59944],[79.2511,19.61587],[79.24356,19.61669],[79.23864,19.60617],[79.24441,19.59487],[79.25312,19.59329],[79.25103,19.5775],[79.24622,19.56752],[79.23712,19.55714],[79.24002,19.53524],[79.23373,19.52001],[79.22116,19.52099],[79.21403,19.51119],[79.20746,19.50613],[79.20738,19.49763],[79.20385,19.49408],[79.20685,19.48582],[79.21075,19.48174],[79.21577,19.48094],[79.22319,19.47235],[79.22359,19.46907],[79.21568,19.46464],[79.20821,19.46497],[79.19087,19.4589],[79.18007,19.46188],[79.16783,19.47236],[79.16135,19.48826],[79.15755,19.48929],[79.14299,19.50053],[79.13861,19.50048],[79.13566,19.50615],[79.13311,19.50783],[79.12093,19.512],[79.11434,19.51976],[79.10539,19.52238],[79.09986,19.53102],[79.09627,19.53266],[79.0769,19.5324],[79.06769,19.53566],[79.06534,19.53963],[79.04601,19.54833],[79.03945,19.5476],[79.02402,19.54178],[79.00687,19.54202],[78.99803,19.54008],[78.99775,19.54907],[78.98125,19.56084],[78.97985,19.55766],[78.9768,19.55694],[78.97422,19.54938],[78.9521,19.54886],[78.94044,19.55187],[78.9354,19.54995],[78.9367,19.54513],[78.95025,19.53326],[78.94214,19.51381],[78.94893,19.51017],[78.94907,19.50134],[78.95223,19.5038],[78.95545,19.50206],[78.95878,19.50288],[78.97757,19.49235],[78.97593,19.49008],[78.96053,19.47798],[78.95763,19.47349],[78.92682,19.46208],[78.92109,19.46312],[78.9146,19.47342],[78.90381,19.47416],[78.89327,19.45472],[78.8872,19.45034],[78.8845,19.44546],[78.8654,19.4445],[78.86206,19.44526],[78.85994,19.44795],[78.853,19.44725],[78.84134,19.43394],[78.8445,19.42256],[78.8294,19.4094],[78.8297,19.40688],[78.82178,19.39702],[78.82086,19.38778],[78.81953,19.38666],[78.81198,19.38846],[78.80898,19.38324],[78.81144,19.38035],[78.8211,19.37894],[78.82477,19.37459],[78.82865,19.37503],[78.84063,19.37056],[78.84605,19.37097],[78.85414,19.36853],[78.85836,19.32405],[78.84985,19.29465],[78.85468,19.27882],[78.8688,19.28247],[78.87506,19.27697],[78.88548,19.27273],[78.8881,19.27514],[78.88806,19.27736],[78.89299,19.28124],[78.89394,19.29011],[78.91635,19.27057],[78.92829,19.26514],[78.93476,19.26026],[78.9417,19.25221],[78.95065,19.25372],[78.95436,19.25065],[78.95322,19.24974],[78.96637,19.24477],[78.96799,19.23393],[78.97132,19.23194],[78.97542,19.23205],[78.97876,19.22994],[78.9842,19.23488],[78.99092,19.23586],[78.99773,19.23179],[78.99859,19.22036],[79.01579,19.21384],[79.05776,19.20863],[79.06997,19.1873],[79.07884,19.18327],[79.08338,19.17877],[79.08598,19.18025],[79.09278,19.17871],[79.10462,19.16956],[79.10667,19.16206],[79.11551,19.15051],[79.12054,19.14812],[79.12451,19.13687],[79.13651,19.12842],[79.13514,19.11138],[79.14108,19.11143],[79.1408,19.10413],[79.14871,19.09445],[79.15274,19.09105],[79.19561,19.08239],[79.19824,19.07852],[79.19871,19.07191],[79.20125,19.07046],[79.20305,19.06668],[79.213,19.06126],[79.22372,19.04933],[79.22337,19.04069],[79.22606,19.03314],[79.24857,19.02947],[79.26719,19.03372],[79.26214,19.04448],[79.27373,19.05994],[79.2738,19.08182],[79.27687,19.11669],[79.30386,19.09514],[79.31603,19.09241],[79.31711,19.12591],[79.32626,19.14521],[79.32548,19.14947],[79.32172,19.15478],[79.32294,19.1555],[79.31739,19.16119],[79.31739,19.16331],[79.33457,19.16885],[79.34828,19.17724],[79.34342,19.17726],[79.34334,19.17927],[79.34673,19.18799],[79.35095,19.19243],[79.35092,19.21063],[79.34375,19.21188],[79.33937,19.21098],[79.3403,19.2212],[79.34974,19.21853],[79.36941,19.20699],[79.38901,19.20712],[79.40792,19.20107],[79.41959,19.19608],[79.43801,19.1797],[79.46229,19.17162],[79.46587,19.17719],[79.47228,19.17452],[79.47797,19.18349],[79.47048,19.18754],[79.4791,19.19411],[79.47579,19.1985],[79.48066,19.20139],[79.50224,19.20255],[79.50666,19.20729],[79.52391,19.20312],[79.53042,19.20403],[79.53658,19.20029],[79.5399,19.20314],[79.54404,19.2014],[79.54775,19.20226],[79.54905,19.21274],[79.54563,19.21491],[79.54161,19.22324],[79.53433,19.2257],[79.53456,19.22848],[79.53056,19.23276],[79.53203,19.24931],[79.52408,19.2513],[79.52498,19.25388],[79.53208,19.25328],[79.53095,19.25731],[79.53747,19.25943],[79.5406,19.2648],[79.54472,19.26223],[79.54968,19.26409],[79.56057,19.25836],[79.5599,19.252],[79.55258,19.24428],[79.55247,19.24208],[79.55551,19.23907],[79.57967,19.23425],[79.58453,19.23707],[79.62165,19.24251],[79.62241,19.23187],[79.62553,19.22655],[79.6342,19.21928],[79.64091,19.2194],[79.64655,19.21501],[79.64811,19.2166],[79.65635,19.21731],[79.66555,19.21353],[79.66372,19.20871],[79.65414,19.20482],[79.65391,19.20133],[79.65909,19.19946],[79.6761,19.199],[79.67626,19.19098],[79.674,19.18726],[79.68135,19.17966],[79.69095,19.18195],[79.69313,19.18401],[79.69745,19.18407],[79.70447,19.1938],[79.70721,19.19366],[79.70876,19.18912],[79.7115,19.18845],[79.71259,19.19427],[79.71688,19.19788],[79.72304,19.19723],[79.73212,19.18682],[79.74376,19.18572],[79.75155,19.18216],[79.75933,19.18245],[79.76083,19.18978],[79.7725,19.19001],[79.77918,19.186],[79.78726,19.18394],[79.78714,19.17585],[79.78178,19.16951],[79.78381,19.1616],[79.79922,19.15163],[79.8031,19.1513],[79.81421,19.15106],[79.82031,19.15713],[79.83348,19.15834],[79.83865,19.16871],[79.85094,19.1683],[79.85288,19.17296],[79.87433,19.17325],[79.8845,19.16426],[79.89487,19.1624],[79.90351,19.16363],[79.90952,19.16124],[79.92399,19.16518],[79.93103,19.15553],[79.94501,19.16767],[79.9465,19.17425],[79.94528,19.17914],[79.92545,19.21064],[79.92451,19.22572],[79.93085,19.2508],[79.93636,19.26413],[79.95057,19.28904],[79.95482,19.29376],[79.96227,19.29735],[79.9662,19.30415],[79.96557,19.31307],[79.95887,19.33419],[79.96797,19.35663],[79.97023,19.37103],[79.96953,19.37469],[79.97142,19.37681],[79.97183,19.38156],[79.97404,19.3855],[79.97967,19.38866],[79.97698,19.39495],[79.97794,19.40036],[79.9747,19.40436],[79.97446,19.41185],[79.96792,19.42321],[79.95425,19.43856],[79.94761,19.44968],[79.94822,19.4606],[79.94482,19.46981],[79.93241,19.47654],[79.9145,19.49604],[79.90196,19.5009],[79.88085,19.50357],[79.87095,19.50906],[79.86458,19.51051],[79.85532,19.52103],[79.84817,19.52653],[79.84564,19.5328],[79.83287,19.53855],[79.82842,19.54341],[79.81633,19.57403],[79.79858,19.58197],[79.78086,19.59823],[79.76123,19.60548],[79.74308,19.60863],[79.73525,19.60496],[79.71798,19.58945],[79.709,19.58448],[79.68895,19.58387],[79.67758,19.58008],[79.65829,19.57971],[79.62943,19.57397],[79.62311,19.56957],[79.61414,19.55968],[79.61166,19.54752],[79.60604,19.53283],[79.60297,19.51455],[79.60046,19.50951],[79.59486,19.50695],[79.58404,19.50913],[79.569,19.51827],[79.55293,19.52417],[79.54839,19.53162],[79.54506,19.55133],[79.54169,19.55458],[79.53746,19.55407],[79.52922,19.55105],[79.51861,19.54311],[79.52081,19.53489],[79.51859,19.52018],[79.51483,19.51944],[79.50226,19.51164],[79.50076,19.50739],[79.49839,19.50569],[79.48263,19.50628],[79.47142,19.50019],[79.46896,19.50957],[79.45676,19.51913],[79.45327,19.5201],[79.44605,19.52692],[79.44221,19.52798],[79.43333,19.53726],[79.42256,19.53804],[79.423,19.53016],[79.42047,19.52976],[79.40532,19.53567],[79.40171,19.53845],[79.39621,19.54806],[79.39175,19.55287],[79.38732,19.55471],[79.38568,19.55833],[79.3768,19.55888],[79.37275,19.56099],[79.36947,19.5727],[79.36708,19.57294],[79.36573,19.57633],[79.35739,19.57758],[79.33481,19.57479],[79.32618,19.57743],[79.31844,19.57672],[79.31854,19.5677],[79.31393,19.56642],[79.30985,19.57151],[79.31026,19.57796],[79.30684,19.59656],[79.28423,19.59553]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"7","area_level":"District","area_name":"Kathua","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.77166,32.88977],[75.76295,32.88953],[75.75572,32.88586],[75.75218,32.88149],[75.7395,32.87624],[75.72212,32.87621],[75.71359,32.87951],[75.69333,32.87805],[75.69177,32.86635],[75.6896,32.86464],[75.68278,32.86414],[75.68548,32.8503],[75.69204,32.84696],[75.69524,32.83885],[75.69008,32.83302],[75.68913,32.829],[75.68695,32.82814],[75.68235,32.82161],[75.69043,32.81596],[75.6875,32.8087],[75.69074,32.80467],[75.69056,32.79638],[75.68198,32.78928],[75.67183,32.78806],[75.66884,32.77928],[75.6615,32.77757],[75.65615,32.77317],[75.64938,32.77472],[75.64572,32.77214],[75.63401,32.77118],[75.61998,32.7736],[75.61628,32.7758],[75.61189,32.77136],[75.59989,32.76857],[75.59742,32.7651],[75.58626,32.76074],[75.58799,32.75706],[75.58631,32.75335],[75.58782,32.75176],[75.58375,32.74984],[75.58429,32.74554],[75.58292,32.74431],[75.574,32.75666],[75.56391,32.75943],[75.55909,32.75772],[75.55585,32.76595],[75.55272,32.76781],[75.55218,32.77331],[75.53036,32.77162],[75.52425,32.77036],[75.52027,32.76771],[75.51676,32.77049],[75.50334,32.76577],[75.49568,32.76674],[75.49072,32.75651],[75.4899,32.74077],[75.4827,32.73291],[75.48197,32.72606],[75.48347,32.72258],[75.48354,32.71411],[75.47646,32.71046],[75.47668,32.70691],[75.48127,32.69792],[75.48036,32.69503],[75.47438,32.69032],[75.47781,32.685],[75.47379,32.67797],[75.46628,32.67337],[75.46518,32.66884],[75.46327,32.66739],[75.45707,32.66516],[75.4552,32.66805],[75.45118,32.66777],[75.4445,32.67453],[75.4412,32.67356],[75.43889,32.67057],[75.43561,32.67299],[75.43304,32.67235],[75.43176,32.66988],[75.42978,32.66959],[75.42881,32.66302],[75.42021,32.67443],[75.41931,32.68097],[75.41496,32.68176],[75.41189,32.68155],[75.40813,32.67592],[75.40484,32.67654],[75.40624,32.6738],[75.39881,32.67443],[75.39378,32.66994],[75.38789,32.67374],[75.3865,32.67992],[75.38241,32.68574],[75.3806,32.69493],[75.37574,32.70007],[75.37147,32.69245],[75.3794,32.67987],[75.37741,32.67748],[75.37716,32.67311],[75.37459,32.67213],[75.37197,32.67862],[75.36537,32.67817],[75.37538,32.66879],[75.37105,32.66876],[75.36565,32.66205],[75.36233,32.66166],[75.36125,32.65957],[75.35841,32.66098],[75.35724,32.66666],[75.35907,32.67029],[75.35771,32.67077],[75.35359,32.66433],[75.34989,32.66362],[75.34614,32.65924],[75.34591,32.66663],[75.3324,32.66614],[75.33141,32.66389],[75.32696,32.66334],[75.32414,32.66058],[75.31832,32.65917],[75.31634,32.6564],[75.31135,32.65526],[75.30898,32.65168],[75.30438,32.65385],[75.30038,32.65379],[75.29529,32.64878],[75.28983,32.64779],[75.28706,32.64361],[75.28444,32.64357],[75.2843,32.63956],[75.28947,32.63148],[75.29677,32.63067],[75.30228,32.62705],[75.32042,32.62429],[75.34326,32.60408],[75.34553,32.59398],[75.34251,32.59315],[75.34485,32.59047],[75.344,32.58631],[75.33695,32.57913],[75.32487,32.5806],[75.32342,32.57758],[75.3174,32.57325],[75.29429,32.57859],[75.29421,32.57367],[75.28709,32.57403],[75.28344,32.56971],[75.28061,32.5693],[75.28181,32.56214],[75.27881,32.56032],[75.27677,32.55647],[75.27079,32.5529],[75.27207,32.55134],[75.27022,32.55055],[75.26924,32.54742],[75.26443,32.54615],[75.26085,32.54302],[75.25724,32.543],[75.25661,32.53856],[75.25078,32.53474],[75.23831,32.51746],[75.23787,32.51239],[75.23319,32.5048],[75.23872,32.50246],[75.23758,32.4997],[75.23594,32.49765],[75.22992,32.49887],[75.22538,32.49138],[75.22185,32.48994],[75.21747,32.48119],[75.22659,32.46508],[75.22578,32.46078],[75.21955,32.46161],[75.21516,32.4603],[75.21698,32.45643],[75.21348,32.4545],[75.20706,32.45556],[75.20472,32.44899],[75.20556,32.44692],[75.19512,32.44368],[75.19907,32.44174],[75.19867,32.43318],[75.20108,32.43027],[75.19844,32.42627],[75.2004,32.41379],[75.19749,32.40983],[75.19245,32.41012],[75.19241,32.40187],[75.20756,32.39469],[75.21187,32.40067],[75.21502,32.40128],[75.22098,32.39821],[75.22294,32.39424],[75.22739,32.39179],[75.22862,32.39286],[75.23082,32.39194],[75.23553,32.38746],[75.24155,32.38518],[75.24482,32.38473],[75.24757,32.38808],[75.25204,32.38958],[75.25594,32.38927],[75.25718,32.38797],[75.25536,32.37684],[75.2571,32.37656],[75.25813,32.37141],[75.26011,32.37033],[75.26503,32.37242],[75.26786,32.37155],[75.2729,32.37512],[75.27538,32.37506],[75.28975,32.36984],[75.28735,32.36068],[75.2883,32.35448],[75.29887,32.35352],[75.29965,32.34645],[75.30216,32.34428],[75.31134,32.3427],[75.32267,32.34353],[75.32683,32.33495],[75.32777,32.32612],[75.33223,32.32668],[75.33543,32.33016],[75.3359,32.33694],[75.33894,32.33564],[75.34072,32.33765],[75.3412,32.34548],[75.34928,32.34526],[75.35574,32.3383],[75.35537,32.3367],[75.36087,32.33492],[75.36348,32.33612],[75.36199,32.3341],[75.36312,32.33294],[75.37068,32.33424],[75.37453,32.33732],[75.37654,32.33431],[75.38029,32.33399],[75.39448,32.32693],[75.39939,32.33002],[75.40219,32.33005],[75.40369,32.32688],[75.40662,32.32889],[75.41051,32.32862],[75.41843,32.32004],[75.43074,32.31506],[75.43161,32.31666],[75.44049,32.31802],[75.44496,32.32121],[75.44813,32.32604],[75.44951,32.32382],[75.4621,32.32706],[75.46778,32.3246],[75.46965,32.32779],[75.46597,32.32917],[75.47187,32.33286],[75.46913,32.33863],[75.47504,32.33993],[75.47505,32.33814],[75.47894,32.33849],[75.48633,32.34197],[75.48649,32.34473],[75.4891,32.34556],[75.49494,32.34113],[75.48807,32.33963],[75.48614,32.33657],[75.48447,32.33758],[75.48151,32.33517],[75.48566,32.32364],[75.48192,32.32029],[75.48639,32.31663],[75.49902,32.31234],[75.50332,32.31103],[75.50447,32.31269],[75.51329,32.30711],[75.50548,32.29669],[75.50393,32.29132],[75.50919,32.28399],[75.51839,32.28165],[75.51866,32.27971],[75.52102,32.2793],[75.52092,32.27724],[75.52618,32.27601],[75.52604,32.27749],[75.53224,32.27783],[75.53683,32.28311],[75.53933,32.29217],[75.53953,32.30022],[75.54221,32.30381],[75.54353,32.31227],[75.54189,32.31559],[75.54284,32.3216],[75.53766,32.3259],[75.53929,32.33522],[75.55033,32.34875],[75.55777,32.35384],[75.55978,32.35698],[75.59531,32.37704],[75.61193,32.37686],[75.63457,32.37991],[75.64652,32.38742],[75.6731,32.39392],[75.67549,32.39386],[75.67981,32.38997],[75.68725,32.39025],[75.70128,32.39944],[75.71134,32.41156],[75.71496,32.40796],[75.72276,32.4056],[75.72269,32.40938],[75.73187,32.42256],[75.73199,32.42499],[75.7275,32.4294],[75.72775,32.43168],[75.72989,32.4329],[75.73815,32.42981],[75.7438,32.4316],[75.74247,32.43363],[75.73714,32.43498],[75.73434,32.43912],[75.7287,32.43911],[75.72661,32.44481],[75.72884,32.44767],[75.72926,32.45267],[75.74151,32.45515],[75.74902,32.45408],[75.75934,32.46052],[75.76273,32.45999],[75.77439,32.46383],[75.80051,32.48513],[75.8136,32.48845],[75.81994,32.49181],[75.8244,32.49593],[75.82632,32.49999],[75.82616,32.50388],[75.83376,32.50373],[75.83408,32.50823],[75.83041,32.51373],[75.83882,32.5137],[75.83669,32.51847],[75.83826,32.52232],[75.85383,32.5277],[75.85564,32.53004],[75.8549,32.5369],[75.87351,32.55003],[75.87333,32.55413],[75.86614,32.56246],[75.86974,32.5661],[75.87771,32.56915],[75.87993,32.57799],[75.87822,32.58598],[75.88404,32.58982],[75.89273,32.58896],[75.89947,32.59246],[75.90524,32.60082],[75.90591,32.60759],[75.91636,32.61443],[75.91858,32.62172],[75.9155,32.62771],[75.91913,32.62969],[75.91863,32.63311],[75.9242,32.63675],[75.92708,32.63155],[75.93044,32.63113],[75.929,32.6383],[75.93381,32.64265],[75.93415,32.64476],[75.933,32.6472],[75.92341,32.64274],[75.92031,32.64289],[75.9188,32.64456],[75.91503,32.6436],[75.91499,32.6531],[75.90626,32.65814],[75.89784,32.65432],[75.89311,32.64861],[75.88677,32.6504],[75.88583,32.65218],[75.89218,32.6588],[75.89307,32.6664],[75.89754,32.66978],[75.89693,32.6721],[75.89883,32.67319],[75.89723,32.67747],[75.89719,32.68552],[75.90046,32.69353],[75.89738,32.69754],[75.90483,32.70889],[75.90695,32.71607],[75.91829,32.72715],[75.91833,32.73482],[75.92297,32.74355],[75.92175,32.74717],[75.90478,32.76478],[75.89795,32.76917],[75.8965,32.77492],[75.88582,32.78225],[75.88421,32.80193],[75.87909,32.81121],[75.86504,32.81338],[75.86563,32.8203],[75.85266,32.83438],[75.84819,32.83648],[75.84608,32.83507],[75.84244,32.83769],[75.84047,32.84343],[75.82988,32.84503],[75.82636,32.85001],[75.81862,32.85273],[75.81693,32.85879],[75.81083,32.86033],[75.80947,32.86931],[75.80598,32.8768],[75.79398,32.88637],[75.78716,32.89005],[75.77166,32.88977]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"70","area_level":"District","area_name":"Panchkula","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.84459,30.88926],[76.84104,30.89166],[76.83404,30.9045],[76.82998,30.90714],[76.82646,30.91313],[76.8293,30.91662],[76.82606,30.92065],[76.82739,30.92122],[76.82515,30.92635],[76.8224,30.92854],[76.81114,30.92401],[76.79816,30.91524],[76.78683,30.91334],[76.77609,30.90597],[76.77771,30.89555],[76.78413,30.87826],[76.79074,30.87031],[76.80179,30.86584],[76.80472,30.86059],[76.81467,30.85244],[76.81316,30.84818],[76.814,30.84299],[76.82297,30.84477],[76.82614,30.84076],[76.82982,30.83907],[76.83742,30.8361],[76.84344,30.83596],[76.8467,30.83391],[76.84584,30.83156],[76.84815,30.82868],[76.84884,30.81414],[76.84533,30.80719],[76.84688,30.80368],[76.85417,30.79919],[76.85699,30.79475],[76.85268,30.79349],[76.8507,30.7911],[76.85437,30.78726],[76.84178,30.77446],[76.84257,30.7715],[76.84028,30.77062],[76.83897,30.7659],[76.84015,30.75889],[76.83745,30.75415],[76.83902,30.7512],[76.83384,30.74983],[76.83475,30.74217],[76.83686,30.74266],[76.8315,30.73951],[76.83716,30.73345],[76.84184,30.73272],[76.84319,30.73111],[76.84742,30.73141],[76.84822,30.7303],[76.84639,30.72968],[76.8494,30.72339],[76.84607,30.72229],[76.84357,30.71921],[76.84503,30.71719],[76.84945,30.71827],[76.84677,30.71689],[76.84835,30.71446],[76.84413,30.7082],[76.83555,30.70358],[76.83528,30.70155],[76.8286,30.69465],[76.83022,30.69345],[76.82738,30.69197],[76.82755,30.6898],[76.82516,30.68825],[76.82621,30.68668],[76.82762,30.68767],[76.83189,30.68323],[76.82914,30.68093],[76.83129,30.67903],[76.83002,30.67586],[76.83219,30.66974],[76.83134,30.66517],[76.83257,30.66312],[76.84579,30.66864],[76.84809,30.66591],[76.84469,30.66239],[76.84496,30.65902],[76.84686,30.65666],[76.85119,30.65819],[76.85302,30.6572],[76.86201,30.66359],[76.86831,30.67346],[76.87645,30.68051],[76.87426,30.67391],[76.87122,30.64212],[76.8748,30.64085],[76.87758,30.64415],[76.88512,30.64528],[76.89646,30.63583],[76.89595,30.63305],[76.89281,30.63104],[76.89655,30.62833],[76.89972,30.62814],[76.90278,30.62437],[76.90977,30.62642],[76.91307,30.61686],[76.9133,30.61397],[76.91186,30.613],[76.916,30.60989],[76.9199,30.61176],[76.92601,30.61006],[76.92234,30.60559],[76.92717,30.60361],[76.92022,30.59323],[76.90966,30.59188],[76.9198,30.58516],[76.91514,30.58218],[76.91494,30.5784],[76.91772,30.57601],[76.90897,30.56469],[76.91533,30.56192],[76.91754,30.55911],[76.91606,30.55352],[76.90494,30.54295],[76.88754,30.55094],[76.88691,30.54788],[76.89639,30.53794],[76.90215,30.53644],[76.90622,30.53712],[76.91249,30.53395],[76.91224,30.53038],[76.9156,30.52571],[76.92149,30.52619],[76.93202,30.52219],[76.92924,30.51709],[76.92859,30.50755],[76.93108,30.50132],[76.94863,30.48606],[76.94641,30.48144],[76.9504,30.47535],[76.95468,30.47444],[76.95845,30.47056],[76.97211,30.48617],[76.98028,30.48313],[76.98978,30.47425],[76.99539,30.47969],[76.99815,30.48504],[77.00991,30.49319],[77.01246,30.50001],[77.01021,30.50254],[77.02029,30.50583],[77.02395,30.50336],[77.02916,30.50577],[77.02948,30.50818],[77.03847,30.5093],[77.03808,30.51322],[77.03971,30.51594],[77.04829,30.52222],[77.04999,30.52175],[77.04579,30.52919],[77.04019,30.53037],[77.03909,30.53383],[77.03742,30.53352],[77.03535,30.53681],[77.03756,30.55035],[77.0424,30.55129],[77.05069,30.54927],[77.054,30.543],[77.06256,30.54434],[77.06284,30.54307],[77.06635,30.54313],[77.06615,30.54192],[77.06883,30.54362],[77.07374,30.54098],[77.08142,30.55004],[77.08292,30.55517],[77.085,30.55696],[77.09779,30.55793],[77.10185,30.55611],[77.10568,30.5598],[77.11378,30.55215],[77.12195,30.56359],[77.13428,30.56955],[77.13829,30.56894],[77.13765,30.57162],[77.14018,30.57808],[77.14821,30.57675],[77.15317,30.58336],[77.15764,30.58399],[77.16111,30.58661],[77.15941,30.58887],[77.16557,30.5916],[77.16427,30.59437],[77.17377,30.60055],[77.1708,30.60437],[77.1727,30.61114],[77.17058,30.61365],[77.17255,30.61954],[77.1714,30.62755],[77.17334,30.63332],[77.17691,30.63697],[77.16771,30.64237],[77.16476,30.65126],[77.16304,30.65084],[77.16281,30.65468],[77.16822,30.66408],[77.16853,30.66954],[77.16658,30.67485],[77.16046,30.68186],[77.16719,30.6839],[77.16121,30.69093],[77.15483,30.6926],[77.14788,30.69947],[77.14219,30.69946],[77.13761,30.70618],[77.12885,30.71075],[77.12796,30.7161],[77.12439,30.72177],[77.12034,30.71878],[77.11373,30.71819],[77.11348,30.72079],[77.11146,30.72143],[77.11536,30.72482],[77.1141,30.72857],[77.10951,30.72918],[77.10126,30.734],[77.09353,30.74233],[77.07802,30.74401],[77.06806,30.74094],[77.06258,30.74568],[77.05547,30.74543],[77.04719,30.75295],[77.04838,30.74923],[77.04479,30.75164],[77.04162,30.7502],[77.04562,30.74133],[77.0335,30.74029],[77.03309,30.73864],[77.027,30.73687],[77.01751,30.74342],[77.01775,30.74828],[77.02109,30.74888],[77.02038,30.75245],[77.01624,30.75033],[77.01893,30.75469],[77.01861,30.76554],[77.01469,30.76786],[77.01042,30.76703],[77.00794,30.76919],[77.00127,30.77044],[77.00587,30.77411],[77.00897,30.77355],[77.01425,30.77566],[77.01859,30.7803],[77.01823,30.78277],[77.0169,30.7801],[77.01548,30.78088],[77.0166,30.78572],[77.01786,30.78603],[77.01241,30.78803],[77.01513,30.79309],[77.01196,30.80014],[77.01252,30.80919],[77.01069,30.8097],[77.00278,30.80564],[77.00016,30.81073],[76.99724,30.81219],[76.98659,30.81399],[76.98452,30.81226],[76.97758,30.81235],[76.97817,30.81691],[76.97391,30.81854],[76.97046,30.82465],[76.96512,30.82556],[76.96209,30.82362],[76.96208,30.82139],[76.96007,30.82731],[76.95189,30.81756],[76.9508,30.81383],[76.94891,30.81407],[76.94861,30.8167],[76.94594,30.81842],[76.94264,30.81743],[76.94895,30.82443],[76.944,30.83766],[76.95125,30.85052],[76.94862,30.85337],[76.94383,30.85294],[76.94303,30.85997],[76.93546,30.86969],[76.93838,30.87106],[76.9364,30.87457],[76.93311,30.87444],[76.92839,30.87142],[76.92658,30.87257],[76.93107,30.87316],[76.93015,30.87624],[76.93615,30.87777],[76.93647,30.88464],[76.93096,30.88774],[76.92839,30.89145],[76.92482,30.88991],[76.92746,30.88596],[76.92566,30.88481],[76.92139,30.88505],[76.92055,30.88725],[76.91795,30.88758],[76.91687,30.90077],[76.90953,30.897],[76.90862,30.89416],[76.89909,30.8927],[76.89495,30.89042],[76.89535,30.88698],[76.88733,30.88553],[76.8853,30.88296],[76.87595,30.8809],[76.87837,30.87574],[76.86958,30.87312],[76.86719,30.87604],[76.863,30.87762],[76.8604,30.88367],[76.85606,30.88424],[76.85109,30.88995],[76.84459,30.88926]],[[76.91979,30.88384],[76.92203,30.88261],[76.92424,30.87645],[76.92235,30.88047],[76.91741,30.88346],[76.91769,30.88646],[76.91979,30.88384]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"700","area_level":"District","area_name":"Medchal Malkajgiri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.47213,17.69127],[78.45981,17.69779],[78.45794,17.70522],[78.44859,17.70793],[78.44489,17.70031],[78.4457,17.69816],[78.43712,17.69343],[78.43058,17.68645],[78.42748,17.67963],[78.42115,17.67156],[78.4099,17.66985],[78.40039,17.67366],[78.40064,17.67497],[78.3953,17.67592],[78.38119,17.64238],[78.38698,17.63781],[78.39208,17.62568],[78.39057,17.62136],[78.37777,17.61482],[78.37141,17.61476],[78.38689,17.60665],[78.38968,17.5996],[78.38893,17.5943],[78.3837,17.59552],[78.38462,17.59159],[78.38218,17.58807],[78.38096,17.57063],[78.37676,17.56252],[78.37365,17.56334],[78.37338,17.56645],[78.37086,17.56759],[78.363,17.56808],[78.35922,17.56326],[78.35512,17.56199],[78.35813,17.55693],[78.35993,17.55673],[78.35913,17.55408],[78.36143,17.54969],[78.35553,17.54069],[78.34853,17.53523],[78.35136,17.52863],[78.34764,17.52247],[78.35547,17.51988],[78.37148,17.5191],[78.37495,17.51131],[78.38214,17.50877],[78.37967,17.50071],[78.37461,17.49574],[78.3734,17.47799],[78.38194,17.47176],[78.38816,17.46228],[78.39313,17.45956],[78.39482,17.44823],[78.40399,17.44783],[78.40486,17.44467],[78.4089,17.44151],[78.41447,17.44588],[78.42781,17.44427],[78.43207,17.45105],[78.44624,17.45107],[78.45401,17.44463],[78.45757,17.44783],[78.46041,17.44646],[78.46371,17.44907],[78.46365,17.47265],[78.47184,17.47745],[78.47713,17.48261],[78.48007,17.4827],[78.48276,17.47593],[78.47951,17.4714],[78.47646,17.47057],[78.47591,17.46344],[78.48544,17.45626],[78.49389,17.45899],[78.49716,17.46764],[78.50044,17.46667],[78.50471,17.46852],[78.50387,17.4709],[78.49803,17.47457],[78.49766,17.47957],[78.50031,17.48302],[78.50782,17.47999],[78.52232,17.48235],[78.52285,17.47584],[78.51765,17.47364],[78.52021,17.46835],[78.51865,17.4623],[78.52061,17.4579],[78.51779,17.44072],[78.53137,17.43699],[78.54385,17.44319],[78.54549,17.4406],[78.54738,17.44121],[78.54898,17.43759],[78.54586,17.43337],[78.54517,17.42905],[78.53683,17.42204],[78.53023,17.42528],[78.52637,17.422],[78.52779,17.41999],[78.527,17.41275],[78.53336,17.41122],[78.53508,17.40524],[78.53478,17.40395],[78.52317,17.40616],[78.52221,17.40257],[78.52312,17.40175],[78.52532,17.40368],[78.52779,17.40133],[78.52676,17.38055],[78.53033,17.37691],[78.52789,17.37413],[78.53258,17.3692],[78.53699,17.37217],[78.54988,17.37251],[78.55626,17.36587],[78.55685,17.36122],[78.57136,17.3609],[78.58157,17.36372],[78.57569,17.36871],[78.57428,17.36775],[78.57437,17.37239],[78.57211,17.37796],[78.57167,17.38263],[78.57848,17.38401],[78.57893,17.38954],[78.59094,17.38749],[78.61341,17.38711],[78.63529,17.38314],[78.64769,17.38546],[78.65172,17.38465],[78.65888,17.37877],[78.66217,17.37829],[78.67241,17.38276],[78.67428,17.38604],[78.67375,17.39422],[78.67526,17.39843],[78.68108,17.40331],[78.68677,17.40495],[78.69256,17.40345],[78.69854,17.39514],[78.70198,17.39393],[78.70529,17.39466],[78.71319,17.4007],[78.71874,17.40011],[78.72295,17.3959],[78.72853,17.38541],[78.73754,17.38604],[78.73755,17.39237],[78.74088,17.3998],[78.74905,17.40124],[78.75476,17.40472],[78.75597,17.41751],[78.75944,17.42683],[78.75887,17.4303],[78.75267,17.43415],[78.75111,17.43829],[78.75198,17.4438],[78.7585,17.45384],[78.76067,17.46028],[78.75701,17.46191],[78.75142,17.47141],[78.74756,17.47029],[78.71951,17.47165],[78.71692,17.46824],[78.70915,17.47627],[78.7096,17.48456],[78.7065,17.48481],[78.70893,17.50198],[78.70742,17.50541],[78.7122,17.51245],[78.71236,17.52065],[78.70053,17.53516],[78.70095,17.53979],[78.69795,17.54163],[78.69495,17.55128],[78.70562,17.55759],[78.68906,17.56226],[78.688,17.56535],[78.67651,17.5759],[78.69133,17.58445],[78.69307,17.59222],[78.68657,17.595],[78.69094,17.60136],[78.69771,17.60584],[78.69782,17.60859],[78.69975,17.60765],[78.70186,17.61142],[78.69825,17.61223],[78.69021,17.62007],[78.68541,17.61985],[78.68526,17.62175],[78.70095,17.63155],[78.69625,17.63737],[78.70332,17.63755],[78.71123,17.63997],[78.70993,17.64414],[78.7113,17.65205],[78.71826,17.65712],[78.72378,17.6681],[78.71798,17.66938],[78.70842,17.68416],[78.70517,17.68623],[78.68523,17.68825],[78.68584,17.69316],[78.66945,17.69819],[78.66638,17.6954],[78.65907,17.69722],[78.65015,17.6764],[78.63407,17.66895],[78.62333,17.67227],[78.61689,17.67216],[78.61395,17.67982],[78.60002,17.68868],[78.60006,17.69299],[78.59569,17.69372],[78.59547,17.6955],[78.59263,17.69674],[78.58188,17.69708],[78.57515,17.69545],[78.57186,17.69011],[78.57395,17.68489],[78.56398,17.68374],[78.55351,17.68658],[78.55458,17.68823],[78.53589,17.69639],[78.52149,17.69617],[78.5189,17.70199],[78.51372,17.69489],[78.50882,17.68369],[78.5017,17.68593],[78.49643,17.68548],[78.49365,17.68816],[78.4943,17.69485],[78.47997,17.69406],[78.47213,17.69127]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"701","area_level":"District","area_name":"Charkhi Dadri","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.32302,28.81427],[76.31349,28.81411],[76.30727,28.8089],[76.2999,28.80995],[76.2923,28.80738],[76.29226,28.78509],[76.28802,28.7784],[76.27777,28.77951],[76.27457,28.76171],[76.27427,28.75837],[76.27579,28.75776],[76.27394,28.75673],[76.2757,28.75507],[76.27211,28.74243],[76.26438,28.73552],[76.25544,28.74118],[76.25278,28.73795],[76.24965,28.72616],[76.23817,28.72271],[76.24221,28.71463],[76.24422,28.70571],[76.24323,28.69979],[76.23093,28.69602],[76.23335,28.68845],[76.23276,28.6773],[76.20288,28.67587],[76.20395,28.68013],[76.19048,28.68283],[76.18297,28.67114],[76.17824,28.67073],[76.17763,28.66829],[76.16943,28.67636],[76.15229,28.68292],[76.14983,28.68523],[76.14554,28.68694],[76.13377,28.68728],[76.12423,28.68163],[76.12704,28.68023],[76.12893,28.67458],[76.1355,28.66582],[76.13538,28.65706],[76.1328,28.64847],[76.12274,28.65131],[76.12356,28.65874],[76.12698,28.66509],[76.1221,28.66911],[76.12122,28.67421],[76.11449,28.67576],[76.11199,28.67354],[76.10277,28.67416],[76.10133,28.67962],[76.09734,28.68086],[76.09692,28.67852],[76.09903,28.67802],[76.0975,28.67512],[76.10104,28.67351],[76.09845,28.66836],[76.10295,28.66432],[76.10395,28.65602],[76.10553,28.65471],[76.0826,28.65952],[76.08575,28.66761],[76.08303,28.66789],[76.08272,28.66601],[76.07277,28.66765],[76.06873,28.66625],[76.06787,28.66342],[76.06296,28.6627],[76.05559,28.65928],[76.05568,28.65729],[76.04783,28.6545],[76.04363,28.64972],[76.04364,28.64501],[76.01943,28.63845],[76.01611,28.63877],[76.00597,28.63205],[76.00609,28.62754],[76.00351,28.62423],[75.99572,28.62247],[75.98548,28.61683],[75.97464,28.61564],[75.96438,28.61075],[75.96425,28.60816],[75.95636,28.6045],[75.94271,28.60352],[75.93331,28.60727],[75.92082,28.6064],[75.90761,28.61073],[75.8909,28.60831],[75.88899,28.60583],[75.88316,28.60403],[75.88076,28.60028],[75.86694,28.59668],[75.86373,28.59352],[75.84717,28.58693],[75.84785,28.57767],[75.84622,28.57227],[75.85005,28.56667],[75.83246,28.55652],[75.82299,28.53888],[75.82492,28.5292],[75.82301,28.51658],[75.81594,28.51198],[75.82155,28.51047],[75.83603,28.50237],[75.84416,28.50213],[75.85267,28.49932],[75.85191,28.49493],[75.84692,28.49571],[75.84511,28.4946],[75.84444,28.48795],[75.84623,28.4817],[75.84525,28.47321],[75.85803,28.47736],[75.8689,28.4782],[75.87118,28.47686],[75.87105,28.46944],[75.87839,28.46869],[75.88023,28.47194],[75.88348,28.47107],[75.88796,28.47245],[75.88918,28.47456],[75.899,28.47046],[75.90414,28.46216],[75.90972,28.45789],[75.91092,28.45436],[75.90827,28.44308],[75.90967,28.43745],[75.90398,28.4347],[75.90314,28.43179],[75.92784,28.43574],[75.94473,28.43692],[75.95341,28.43591],[75.96912,28.44265],[75.9833,28.44496],[75.98441,28.44322],[75.98952,28.44227],[75.98936,28.44067],[76.01348,28.43397],[76.01306,28.4326],[76.01433,28.43256],[76.00999,28.40864],[76.01843,28.40902],[76.01478,28.39635],[76.01813,28.39384],[76.01672,28.38792],[76.01908,28.38562],[76.02732,28.38607],[76.02765,28.38747],[76.04253,28.39172],[76.05501,28.39178],[76.05469,28.39065],[76.05943,28.38986],[76.08213,28.39281],[76.08195,28.39768],[76.08862,28.40611],[76.08726,28.40947],[76.09031,28.41249],[76.08912,28.41903],[76.09036,28.42293],[76.0932,28.42815],[76.09824,28.43129],[76.10544,28.43913],[76.10772,28.4475],[76.11875,28.45354],[76.13014,28.45425],[76.14155,28.45115],[76.14259,28.45297],[76.14889,28.45157],[76.15328,28.46341],[76.15952,28.46221],[76.15969,28.45789],[76.16148,28.45737],[76.15856,28.45081],[76.1628,28.44937],[76.16375,28.44128],[76.16574,28.44107],[76.16615,28.43147],[76.18333,28.42962],[76.18898,28.44325],[76.21187,28.44308],[76.21464,28.46026],[76.21799,28.4685],[76.23354,28.46596],[76.24474,28.45916],[76.24443,28.44168],[76.24733,28.43782],[76.25422,28.43589],[76.25531,28.43796],[76.26581,28.43739],[76.2661,28.43532],[76.28415,28.43092],[76.2906,28.43992],[76.29008,28.44651],[76.28865,28.44687],[76.29066,28.45391],[76.28963,28.45843],[76.29308,28.46876],[76.28688,28.47253],[76.28275,28.47803],[76.28569,28.48723],[76.29132,28.4985],[76.30318,28.49975],[76.31051,28.49856],[76.32015,28.49221],[76.32408,28.4929],[76.32719,28.49588],[76.3322,28.51009],[76.33568,28.53803],[76.33915,28.54343],[76.34217,28.56089],[76.34005,28.56894],[76.3348,28.57294],[76.33417,28.58238],[76.34268,28.58008],[76.34586,28.60211],[76.35697,28.61666],[76.35855,28.61675],[76.36016,28.60708],[76.37314,28.59974],[76.39361,28.59891],[76.40142,28.59534],[76.40392,28.58676],[76.40175,28.57762],[76.40402,28.55167],[76.40988,28.54894],[76.41256,28.55113],[76.4212,28.55115],[76.42651,28.5707],[76.42673,28.58305],[76.42855,28.59127],[76.43282,28.59946],[76.4357,28.60221],[76.44826,28.59834],[76.45148,28.60539],[76.45404,28.60428],[76.46572,28.6143],[76.46092,28.61835],[76.4615,28.61956],[76.45776,28.62086],[76.45707,28.6236],[76.44715,28.63518],[76.43994,28.63789],[76.43803,28.64116],[76.44784,28.64461],[76.45065,28.65484],[76.44974,28.65945],[76.43725,28.66525],[76.40112,28.66643],[76.40212,28.67496],[76.40621,28.68257],[76.39744,28.68679],[76.38029,28.70183],[76.38053,28.71479],[76.38718,28.72137],[76.3916,28.72969],[76.39984,28.73426],[76.40609,28.75619],[76.39916,28.76266],[76.3869,28.7703],[76.38564,28.78274],[76.37504,28.78432],[76.36651,28.7882],[76.35916,28.79545],[76.35833,28.79726],[76.35964,28.79952],[76.33986,28.80454],[76.33474,28.80809],[76.33354,28.81359],[76.32302,28.81427]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"702","area_level":"District","area_name":"Kalimpong","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[88.59461,27.18781],[88.59223,27.19126],[88.59025,27.19033],[88.58879,27.18636],[88.58594,27.19039],[88.58333,27.1876],[88.58104,27.18881],[88.56721,27.18477],[88.55828,27.18561],[88.55197,27.1831],[88.54298,27.18318],[88.53963,27.17738],[88.53507,27.17889],[88.53096,27.17217],[88.52716,27.17368],[88.52106,27.17345],[88.52758,27.16651],[88.53136,27.16514],[88.52764,27.1574],[88.53346,27.15496],[88.53235,27.15006],[88.51927,27.14752],[88.51769,27.14323],[88.51324,27.14075],[88.5112,27.13724],[88.50593,27.13661],[88.49967,27.13091],[88.49774,27.12382],[88.48748,27.12592],[88.48509,27.12092],[88.47778,27.12282],[88.47541,27.12171],[88.46787,27.11395],[88.46645,27.10274],[88.46197,27.09838],[88.45958,27.09058],[88.45053,27.08389],[88.43926,27.08241],[88.43295,27.07926],[88.42789,27.06719],[88.42683,27.06606],[88.42046,27.06903],[88.42151,27.06531],[88.41708,27.06096],[88.41533,27.04475],[88.41808,27.04182],[88.41943,27.03235],[88.41498,27.02439],[88.42191,27.01524],[88.42329,27.0086],[88.41468,27.0096],[88.39148,26.9879],[88.40825,26.98124],[88.41218,26.98463],[88.41871,26.98277],[88.4207,26.97733],[88.41829,26.97037],[88.41938,26.96467],[88.41736,26.96225],[88.42298,26.95723],[88.42884,26.95793],[88.43667,26.96184],[88.43985,26.95978],[88.4417,26.94997],[88.445,26.94535],[88.44201,26.93817],[88.45222,26.93588],[88.45612,26.9286],[88.45626,26.92461],[88.46312,26.92007],[88.46432,26.91551],[88.47385,26.91315],[88.47076,26.90935],[88.4742,26.89776],[88.47565,26.87983],[88.49608,26.87307],[88.50983,26.8655],[88.54263,26.87521],[88.54587,26.88064],[88.55568,26.8803],[88.56079,26.88232],[88.57325,26.89199],[88.58879,26.88757],[88.59239,26.88795],[88.59608,26.88491],[88.60805,26.8817],[88.60699,26.88625],[88.60796,26.89154],[88.61246,26.89194],[88.61533,26.89748],[88.61927,26.89961],[88.62023,26.90227],[88.61884,26.90353],[88.62112,26.90558],[88.63616,26.90667],[88.63896,26.9229],[88.63731,26.93016],[88.63901,26.93432],[88.64786,26.9423],[88.65002,26.95013],[88.65665,26.96141],[88.65544,26.96444],[88.66036,26.96877],[88.66256,26.96289],[88.67302,26.94797],[88.66451,26.93359],[88.66363,26.9275],[88.686,26.9268],[88.7596,26.92599],[88.75648,26.96367],[88.76145,26.96873],[88.76911,26.96836],[88.77533,26.97481],[88.7845,26.97637],[88.7935,26.99125],[88.80016,26.9904],[88.81132,26.99189],[88.81905,26.98843],[88.8217,26.98871],[88.82408,26.98437],[88.83105,26.98454],[88.83863,26.97804],[88.84155,26.97884],[88.84434,26.9753],[88.84808,26.97439],[88.85205,26.96947],[88.85288,26.96561],[88.87281,26.9645],[88.87249,26.97486],[88.87441,26.98543],[88.87028,26.99575],[88.8719,26.99745],[88.87358,27.00966],[88.8754,27.01233],[88.87613,27.02747],[88.87821,27.03457],[88.88103,27.03771],[88.87686,27.04199],[88.87636,27.04504],[88.87911,27.04899],[88.87873,27.0594],[88.88117,27.062],[88.87987,27.06612],[88.87503,27.0704],[88.87699,27.07362],[88.87423,27.0786],[88.87404,27.08659],[88.87564,27.08964],[88.87385,27.09241],[88.87339,27.09844],[88.8711,27.10138],[88.87088,27.10788],[88.86771,27.11244],[88.86661,27.11036],[88.85125,27.10803],[88.84693,27.11229],[88.84248,27.11115],[88.84279,27.11412],[88.83986,27.11636],[88.83364,27.11562],[88.82615,27.12172],[88.81966,27.12213],[88.8117,27.12687],[88.80406,27.13883],[88.80203,27.1395],[88.79235,27.13547],[88.77374,27.13527],[88.76421,27.1402],[88.75465,27.14119],[88.74624,27.14417],[88.73862,27.1354],[88.72896,27.13627],[88.71781,27.14331],[88.71614,27.15977],[88.71248,27.16248],[88.71012,27.16684],[88.70516,27.16908],[88.70173,27.17387],[88.69153,27.17839],[88.68451,27.17989],[88.67801,27.17838],[88.67102,27.173],[88.66284,27.16168],[88.66026,27.16055],[88.65335,27.16193],[88.65145,27.16485],[88.64681,27.16616],[88.63978,27.16484],[88.63551,27.16668],[88.63424,27.17259],[88.62671,27.17755],[88.62597,27.18037],[88.62277,27.17945],[88.62228,27.18245],[88.62006,27.18194],[88.61894,27.18335],[88.6128,27.18194],[88.60371,27.18623],[88.60137,27.18576],[88.59795,27.18981],[88.59461,27.18781]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"703","area_level":"District","area_name":"Jhargram","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.6196,22.79797],[86.61194,22.79877],[86.59807,22.79621],[86.60335,22.78939],[86.60161,22.78024],[86.5941,22.76856],[86.59396,22.76399],[86.59227,22.7637],[86.59288,22.76236],[86.58671,22.75325],[86.58112,22.74824],[86.55801,22.71111],[86.57224,22.69926],[86.58527,22.69108],[86.60253,22.68732],[86.60849,22.68399],[86.61163,22.67991],[86.62066,22.67768],[86.62644,22.67221],[86.62845,22.66747],[86.63604,22.66497],[86.64164,22.65893],[86.64191,22.65502],[86.63863,22.65078],[86.63902,22.62531],[86.63538,22.61831],[86.63411,22.61039],[86.6386,22.60947],[86.63813,22.60122],[86.63943,22.59782],[86.64448,22.59449],[86.65703,22.5908],[86.65363,22.58181],[86.65952,22.57504],[86.67926,22.57446],[86.68465,22.57833],[86.7092,22.58236],[86.73149,22.57691],[86.7585,22.57788],[86.76686,22.57502],[86.76774,22.56698],[86.77193,22.56464],[86.77157,22.56106],[86.76644,22.55774],[86.77484,22.54905],[86.78418,22.55029],[86.78929,22.549],[86.79026,22.54122],[86.78737,22.53817],[86.78896,22.53409],[86.78685,22.52685],[86.79292,22.52498],[86.79494,22.51398],[86.79319,22.51399],[86.79266,22.51132],[86.79651,22.50958],[86.79769,22.5064],[86.80083,22.5055],[86.80239,22.50304],[86.8008,22.50074],[86.79524,22.49938],[86.79378,22.49646],[86.8016,22.48883],[86.79537,22.48042],[86.79117,22.47743],[86.78429,22.48124],[86.76902,22.48009],[86.76609,22.48193],[86.74987,22.48295],[86.74728,22.47478],[86.75106,22.46543],[86.75101,22.45671],[86.76317,22.44838],[86.75903,22.44581],[86.76187,22.4317],[86.76453,22.42726],[86.78582,22.42435],[86.79389,22.42166],[86.80707,22.42126],[86.83129,22.411],[86.84635,22.39908],[86.84563,22.39152],[86.84088,22.38319],[86.84264,22.37221],[86.83229,22.34851],[86.8311,22.33476],[86.83211,22.32723],[86.83974,22.31893],[86.85012,22.31564],[86.86537,22.3081],[86.87224,22.30712],[86.87583,22.3015],[86.88779,22.29746],[86.88933,22.27376],[86.88753,22.27387],[86.88836,22.26137],[86.88632,22.25724],[86.88502,22.25855],[86.8835,22.25716],[86.88006,22.25926],[86.87644,22.25911],[86.87597,22.26065],[86.87322,22.25909],[86.87186,22.26006],[86.86626,22.25892],[86.86525,22.26096],[86.86343,22.25878],[86.85893,22.25798],[86.85109,22.26521],[86.84942,22.26334],[86.84655,22.26404],[86.84271,22.26163],[86.83784,22.26565],[86.83093,22.26322],[86.82396,22.26676],[86.81825,22.25372],[86.8167,22.25455],[86.81494,22.26706],[86.81359,22.26739],[86.80916,22.25025],[86.81059,22.24987],[86.80906,22.24664],[86.8072,22.24723],[86.80399,22.24358],[86.79995,22.24461],[86.79801,22.24702],[86.80111,22.2652],[86.79226,22.2663],[86.7957,22.24874],[86.79486,22.24317],[86.79925,22.23788],[86.80348,22.24322],[86.81202,22.24123],[86.80241,22.21755],[86.79187,22.22183],[86.79014,22.21874],[86.78904,22.21925],[86.78474,22.21505],[86.77907,22.21692],[86.77819,22.21849],[86.78447,22.2306],[86.79321,22.2242],[86.79491,22.22779],[86.78858,22.23166],[86.78919,22.23573],[86.77768,22.23659],[86.77434,22.23221],[86.77737,22.22552],[86.77641,22.21786],[86.77114,22.22035],[86.76253,22.21355],[86.75422,22.21144],[86.74978,22.21169],[86.74404,22.21598],[86.73081,22.21543],[86.72496,22.21802],[86.71889,22.19905],[86.72122,22.18939],[86.71637,22.18632],[86.71605,22.18172],[86.7193,22.17304],[86.71921,22.16704],[86.71789,22.1658],[86.71971,22.14728],[86.7277,22.14718],[86.73588,22.14943],[86.76499,22.14951],[86.77964,22.15365],[86.78664,22.1538],[86.78841,22.15777],[86.79385,22.15748],[86.80201,22.15071],[86.80374,22.13871],[86.80229,22.13282],[86.79941,22.13037],[86.80142,22.12924],[86.80479,22.13033],[86.80997,22.12741],[86.80641,22.11971],[86.81892,22.11664],[86.82462,22.11892],[86.83465,22.10426],[86.83374,22.0987],[86.84363,22.09631],[86.84662,22.10046],[86.84917,22.1],[86.85015,22.10378],[86.86022,22.10233],[86.86413,22.09935],[86.87114,22.09964],[86.90585,22.09193],[86.93429,22.09048],[86.94732,22.0858],[86.95796,22.08855],[86.96471,22.08574],[86.96782,22.08013],[86.97103,22.07834],[86.97175,22.07239],[86.99314,22.05525],[86.99776,22.05403],[87.00588,22.04872],[87.0144,22.04768],[87.01906,22.04178],[87.0267,22.03709],[87.02234,22.01949],[87.0274,22.00266],[87.031,21.99705],[87.03035,21.98534],[87.02123,21.97267],[87.01284,21.9496],[87.00943,21.94789],[87.00583,21.93753],[87.00463,21.92572],[87.00145,21.92456],[87.00356,21.92049],[86.99972,21.91325],[87.00468,21.91013],[87.00938,21.89978],[87.02293,21.89231],[87.02557,21.88689],[87.0251,21.88109],[87.02748,21.87974],[87.02608,21.87568],[87.03011,21.87448],[87.03346,21.87014],[87.06131,21.86587],[87.07396,21.86724],[87.07929,21.86595],[87.08426,21.86812],[87.09793,21.86692],[87.09519,21.88062],[87.09885,21.89072],[87.09462,21.89829],[87.09057,21.90107],[87.0971,21.91394],[87.10235,21.91506],[87.10692,21.92232],[87.11282,21.92244],[87.11405,21.92432],[87.12464,21.92601],[87.14155,21.92402],[87.15281,21.93322],[87.1614,21.93492],[87.16328,21.9389],[87.1611,21.94398],[87.16262,21.94891],[87.16066,21.95227],[87.16479,21.9609],[87.16233,21.96168],[87.1636,21.96701],[87.16199,21.96761],[87.1682,21.97128],[87.17041,21.97994],[87.17763,21.96964],[87.19806,21.95924],[87.20309,21.9629],[87.20868,21.96208],[87.2106,21.96436],[87.21409,21.96357],[87.21666,21.96034],[87.22279,21.95871],[87.22411,21.95685],[87.22579,21.95756],[87.22605,21.96325],[87.23154,21.97073],[87.23175,21.98046],[87.2183,21.98577],[87.21578,21.99683],[87.21661,22.00188],[87.21501,22.00462],[87.21288,22.00502],[87.20931,22.01762],[87.19811,22.03601],[87.19666,22.03676],[87.19132,22.03422],[87.19399,22.03938],[87.1784,22.0534],[87.17223,22.05664],[87.1638,22.07301],[87.15507,22.08588],[87.14263,22.08549],[87.13504,22.0892],[87.14463,22.10586],[87.14036,22.113],[87.1427,22.12006],[87.1375,22.12547],[87.15328,22.13665],[87.15271,22.13861],[87.15,22.13931],[87.15291,22.14457],[87.15714,22.146],[87.16028,22.14987],[87.16602,22.14625],[87.17176,22.13951],[87.17902,22.13832],[87.18216,22.14488],[87.18232,22.149],[87.17985,22.15256],[87.16802,22.15247],[87.16874,22.16109],[87.17103,22.1658],[87.16893,22.17365],[87.17382,22.17926],[87.17371,22.18179],[87.17031,22.1864],[87.17068,22.19118],[87.17858,22.18625],[87.17919,22.1908],[87.18292,22.19554],[87.17716,22.20515],[87.1724,22.20839],[87.17485,22.21364],[87.17253,22.21825],[87.17654,22.23628],[87.18617,22.23497],[87.18937,22.23935],[87.19134,22.23967],[87.19415,22.23399],[87.19983,22.23272],[87.20405,22.2374],[87.20715,22.23805],[87.21634,22.23279],[87.21522,22.23112],[87.21609,22.2288],[87.22211,22.22761],[87.22452,22.23026],[87.22644,22.22972],[87.22547,22.23599],[87.22777,22.24094],[87.22758,22.24896],[87.22182,22.25629],[87.21802,22.26686],[87.21126,22.27169],[87.2027,22.27295],[87.192,22.282],[87.20354,22.2964],[87.20618,22.30465],[87.19757,22.30489],[87.19238,22.31205],[87.18887,22.31384],[87.18934,22.31702],[87.17383,22.32148],[87.17547,22.32522],[87.16548,22.32966],[87.16252,22.3272],[87.15621,22.33018],[87.15776,22.33712],[87.15678,22.34202],[87.16653,22.33886],[87.16836,22.3449],[87.18032,22.3652],[87.18128,22.3696],[87.18928,22.3765],[87.19887,22.3749],[87.20007,22.37722],[87.20417,22.37619],[87.20509,22.37824],[87.20903,22.37831],[87.21383,22.38246],[87.21995,22.38062],[87.223,22.3848],[87.22883,22.38683],[87.23698,22.38715],[87.24315,22.39056],[87.24489,22.3927],[87.2437,22.39569],[87.24572,22.39946],[87.2487,22.39975],[87.25153,22.39777],[87.25336,22.40007],[87.25594,22.39917],[87.25834,22.40271],[87.25522,22.40589],[87.25102,22.40719],[87.25351,22.41291],[87.24554,22.4163],[87.24348,22.4154],[87.24172,22.41036],[87.23861,22.40887],[87.23242,22.41052],[87.23173,22.41241],[87.20803,22.41074],[87.19011,22.39698],[87.18548,22.39544],[87.17305,22.39568],[87.16275,22.40881],[87.16634,22.41906],[87.16263,22.42531],[87.14954,22.42043],[87.12667,22.4245],[87.11633,22.4282],[87.10886,22.42845],[87.10339,22.43166],[87.10814,22.43652],[87.11506,22.43986],[87.11935,22.44608],[87.11666,22.44834],[87.11892,22.45223],[87.11747,22.45751],[87.11158,22.46348],[87.09983,22.46609],[87.09083,22.46539],[87.08558,22.46772],[87.08331,22.47074],[87.0826,22.47503],[87.09135,22.48727],[87.09168,22.49391],[87.08841,22.49953],[87.08822,22.50548],[87.08883,22.50852],[87.09292,22.51104],[87.09342,22.51888],[87.10715,22.53509],[87.11191,22.53606],[87.11451,22.54021],[87.11355,22.54523],[87.10657,22.55094],[87.10578,22.55804],[87.10156,22.56413],[87.10267,22.57341],[87.1001,22.57462],[87.09235,22.58472],[87.09283,22.58923],[87.09613,22.59553],[87.10079,22.60068],[87.102,22.60893],[87.08889,22.63392],[87.09012,22.63859],[87.09676,22.64888],[87.09664,22.66298],[87.10094,22.66311],[87.10256,22.66582],[87.11576,22.67178],[87.12354,22.68371],[87.11966,22.6866],[87.11649,22.69332],[87.10165,22.69446],[87.0988,22.69623],[87.09963,22.69925],[87.09556,22.70034],[87.09359,22.70269],[87.09407,22.70658],[87.09076,22.70729],[87.0893,22.71633],[87.09038,22.71919],[87.08157,22.72143],[87.07152,22.73026],[87.06643,22.73077],[87.05324,22.72843],[87.03715,22.71898],[87.03876,22.71373],[87.03669,22.7096],[87.03264,22.70964],[87.03122,22.70204],[87.02153,22.70171],[87.02125,22.69769],[87.01588,22.69284],[87.01914,22.68392],[87.01776,22.6685],[87.0217,22.66791],[87.02015,22.66523],[87.02147,22.66323],[87.01689,22.65631],[87.01721,22.6528],[87.0153,22.64864],[87.01354,22.6506],[87.01171,22.64966],[87.00811,22.65091],[87.00618,22.64884],[87.00161,22.65433],[87.00157,22.65829],[86.99911,22.65754],[86.99432,22.66073],[86.98509,22.67176],[86.98257,22.67086],[86.97266,22.67323],[86.97074,22.67012],[86.96675,22.66997],[86.96462,22.67156],[86.96442,22.67596],[86.96295,22.67646],[86.95782,22.66695],[86.94926,22.67001],[86.94852,22.66914],[86.94854,22.65826],[86.9461,22.65068],[86.94959,22.64838],[86.94873,22.64679],[86.95136,22.64159],[86.95373,22.64071],[86.95365,22.63721],[86.94991,22.63714],[86.94593,22.63377],[86.94281,22.63524],[86.93777,22.6333],[86.93607,22.6345],[86.92597,22.62791],[86.92398,22.62816],[86.92194,22.63131],[86.91792,22.62642],[86.91245,22.63548],[86.90475,22.6355],[86.90495,22.64061],[86.90326,22.64029],[86.90351,22.64229],[86.90031,22.6433],[86.89546,22.65152],[86.89135,22.65308],[86.8905,22.65527],[86.88812,22.65489],[86.8712,22.66331],[86.86166,22.66615],[86.85523,22.67133],[86.84981,22.68096],[86.84588,22.68489],[86.8399,22.68437],[86.83871,22.68747],[86.8353,22.68783],[86.81544,22.69921],[86.80412,22.70906],[86.79152,22.70983],[86.78757,22.71165],[86.78322,22.71557],[86.77294,22.71965],[86.77352,22.72253],[86.76906,22.72812],[86.75719,22.73227],[86.74965,22.73731],[86.74309,22.73745],[86.73237,22.74309],[86.71837,22.74456],[86.70278,22.75778],[86.69582,22.76838],[86.67672,22.76785],[86.67111,22.77049],[86.65998,22.78699],[86.6429,22.79413],[86.62961,22.79746],[86.6196,22.79797]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"704","area_level":"District","area_name":"Paschim Bardhaman","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[86.9162,23.88186],[86.90277,23.8812],[86.89592,23.87829],[86.88024,23.86232],[86.88092,23.86037],[86.88701,23.85644],[86.88635,23.84569],[86.88936,23.8393],[86.89282,23.83728],[86.89457,23.82635],[86.8903,23.8205],[86.88602,23.8212],[86.88646,23.82565],[86.88094,23.82901],[86.87952,23.83526],[86.87997,23.84528],[86.87422,23.84731],[86.86363,23.84446],[86.86265,23.84201],[86.86377,23.84057],[86.86127,23.83505],[86.85502,23.83056],[86.8529,23.82495],[86.84804,23.82365],[86.83879,23.82459],[86.84003,23.82248],[86.83695,23.81954],[86.82654,23.81394],[86.82045,23.81555],[86.81973,23.81772],[86.81641,23.81688],[86.81387,23.81932],[86.81379,23.82475],[86.81603,23.82517],[86.81478,23.82994],[86.81026,23.83529],[86.80572,23.83733],[86.7994,23.83224],[86.80053,23.83002],[86.80389,23.82968],[86.80748,23.82281],[86.81009,23.82141],[86.80336,23.8013],[86.80507,23.79889],[86.80908,23.79805],[86.81932,23.78593],[86.81984,23.78825],[86.82021,23.78393],[86.82585,23.77668],[86.82837,23.7602],[86.82794,23.7527],[86.82609,23.74921],[86.81229,23.74476],[86.80796,23.72946],[86.8082,23.72239],[86.79929,23.7037],[86.80061,23.69939],[86.82637,23.6848],[86.84775,23.68321],[86.85799,23.67475],[86.85812,23.6698],[86.86398,23.66169],[86.87786,23.65645],[86.88794,23.65566],[86.89421,23.65217],[86.90236,23.63814],[86.9122,23.63053],[86.92033,23.62933],[86.95723,23.63315],[86.97184,23.62699],[86.99547,23.63354],[87.00133,23.63159],[87.01336,23.63252],[87.01982,23.6296],[87.03373,23.61802],[87.05293,23.61468],[87.05963,23.61203],[87.07135,23.60172],[87.08871,23.59663],[87.09473,23.59327],[87.09745,23.58982],[87.12185,23.5764],[87.14808,23.57314],[87.15585,23.56835],[87.16594,23.56552],[87.1848,23.56681],[87.1985,23.55996],[87.21039,23.55752],[87.21674,23.55029],[87.24212,23.52878],[87.24883,23.51901],[87.26764,23.50948],[87.27472,23.50065],[87.29391,23.49006],[87.30285,23.48261],[87.34377,23.46493],[87.35385,23.45805],[87.36059,23.4507],[87.37751,23.44013],[87.41126,23.42716],[87.41953,23.42004],[87.4278,23.41693],[87.4417,23.40865],[87.4683,23.38319],[87.47384,23.37561],[87.47748,23.37428],[87.48886,23.36137],[87.49115,23.35622],[87.49921,23.34856],[87.52397,23.33704],[87.53669,23.32288],[87.54295,23.31813],[87.545,23.32181],[87.54729,23.32228],[87.54478,23.32307],[87.54584,23.3244],[87.54269,23.32926],[87.54401,23.33375],[87.53993,23.33765],[87.54076,23.3408],[87.53542,23.34236],[87.53505,23.34377],[87.54142,23.34399],[87.54228,23.34536],[87.54106,23.34643],[87.5494,23.35076],[87.55052,23.35455],[87.55538,23.3536],[87.55835,23.35703],[87.55897,23.36079],[87.56426,23.36102],[87.56774,23.3654],[87.56822,23.36977],[87.56591,23.37143],[87.5656,23.37763],[87.56932,23.3816],[87.56967,23.3873],[87.57644,23.40397],[87.5717,23.40395],[87.56789,23.40749],[87.57031,23.42086],[87.57176,23.42208],[87.57038,23.42348],[87.56974,23.43183],[87.56705,23.43526],[87.56598,23.44726],[87.56316,23.44696],[87.56293,23.44982],[87.56038,23.45195],[87.55951,23.4578],[87.5585,23.4532],[87.55568,23.45275],[87.55071,23.44874],[87.54608,23.44813],[87.54215,23.44977],[87.53801,23.45555],[87.54049,23.45627],[87.53911,23.46794],[87.54078,23.46811],[87.54448,23.46371],[87.54327,23.47205],[87.54637,23.47754],[87.53662,23.47502],[87.53328,23.47777],[87.53114,23.48292],[87.5319,23.48454],[87.53543,23.48453],[87.53482,23.48658],[87.5393,23.48709],[87.53812,23.48995],[87.54036,23.49081],[87.5402,23.49383],[87.55133,23.4945],[87.55194,23.49704],[87.55359,23.49664],[87.55295,23.49349],[87.55712,23.49357],[87.56477,23.50515],[87.5702,23.50654],[87.5697,23.51002],[87.57618,23.51774],[87.5747,23.52311],[87.57665,23.52697],[87.57816,23.52692],[87.57678,23.52854],[87.57766,23.53098],[87.57393,23.53071],[87.57047,23.52821],[87.56648,23.53047],[87.5631,23.52703],[87.55095,23.52979],[87.54688,23.5267],[87.54308,23.52682],[87.54055,23.52412],[87.53523,23.52715],[87.52464,23.5239],[87.51378,23.528],[87.51207,23.52633],[87.51433,23.52524],[87.5107,23.52356],[87.50885,23.5258],[87.49799,23.52754],[87.49301,23.52573],[87.48958,23.52723],[87.48312,23.52376],[87.4791,23.52811],[87.4802,23.53249],[87.47517,23.5328],[87.47788,23.53339],[87.4795,23.53571],[87.47822,23.54269],[87.48497,23.53757],[87.48807,23.53877],[87.4919,23.5378],[87.49091,23.54807],[87.48746,23.55301],[87.49066,23.55362],[87.49433,23.55886],[87.49752,23.55984],[87.50452,23.57276],[87.51189,23.57874],[87.51102,23.57959],[87.51505,23.58162],[87.51945,23.58878],[87.52464,23.58713],[87.52851,23.5898],[87.5326,23.59893],[87.53279,23.60653],[87.53479,23.60975],[87.53101,23.61879],[87.52635,23.62072],[87.51459,23.61836],[87.51264,23.61646],[87.5103,23.60658],[87.50664,23.60281],[87.5023,23.60103],[87.49871,23.60084],[87.48637,23.60883],[87.47364,23.61278],[87.46749,23.61338],[87.4558,23.61152],[87.44596,23.61364],[87.44188,23.61627],[87.43332,23.63207],[87.4254,23.64067],[87.42389,23.64502],[87.41757,23.64746],[87.40997,23.65763],[87.40958,23.66153],[87.41735,23.67764],[87.41461,23.68484],[87.38786,23.69914],[87.36706,23.70227],[87.36368,23.70541],[87.36034,23.71447],[87.3552,23.71984],[87.3411,23.72273],[87.33095,23.71742],[87.31249,23.72288],[87.29312,23.72223],[87.27912,23.72885],[87.27066,23.74547],[87.26841,23.7482],[87.264,23.74942],[87.25532,23.74872],[87.24965,23.74638],[87.24756,23.7437],[87.24268,23.7446],[87.22577,23.74016],[87.22078,23.741],[87.21788,23.74497],[87.21417,23.74602],[87.20981,23.74995],[87.19151,23.74879],[87.18539,23.75177],[87.1768,23.75173],[87.17015,23.74801],[87.16596,23.74768],[87.16388,23.75031],[87.15514,23.74873],[87.15095,23.75206],[87.13847,23.75674],[87.13013,23.76344],[87.12011,23.76857],[87.11535,23.77371],[87.10104,23.79654],[87.09097,23.80619],[87.05733,23.82098],[87.03797,23.83921],[87.02423,23.84447],[87.011,23.8526],[86.98596,23.8596],[86.97324,23.86877],[86.96829,23.86748],[86.96566,23.86476],[86.96375,23.85357],[86.96148,23.84915],[86.95628,23.84686],[86.94599,23.84658],[86.93572,23.85184],[86.93316,23.85631],[86.93248,23.86866],[86.9162,23.88186]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"705","area_level":"District","area_name":"Biswanath","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.69825,26.99369],[93.67567,26.97459],[93.66012,26.96696],[93.61473,26.9603],[93.58667,26.95047],[93.55966,26.95271],[93.54915,26.95001],[93.54494,26.95123],[93.54101,26.94897],[93.52477,26.94853],[93.50728,26.94394],[93.4891,26.93618],[93.48626,26.94228],[93.47473,26.93932],[93.47065,26.9366],[93.46249,26.93788],[93.44877,26.95078],[93.38049,26.95922],[93.3241,26.96008],[93.24682,26.95125],[93.20095,26.94322],[93.17256,26.93599],[93.10737,26.92576],[93.08823,26.91439],[93.06272,26.92227],[93.02186,26.91342],[92.98286,26.93552],[92.97807,26.92982],[92.96867,26.92442],[92.95926,26.9147],[92.95762,26.90923],[92.95141,26.90607],[92.93966,26.89377],[92.91909,26.88516],[92.9161,26.88187],[92.90617,26.88101],[92.9035,26.87876],[92.95927,26.87706],[92.95512,26.86911],[92.95701,26.85624],[92.94603,26.84977],[92.94784,26.84371],[92.94619,26.83735],[92.94865,26.83038],[92.95148,26.82756],[92.94784,26.82535],[92.94022,26.82678],[92.93922,26.82234],[92.94699,26.82078],[92.94281,26.80598],[92.9489,26.80394],[92.95107,26.80078],[92.95693,26.79935],[92.95784,26.79429],[92.96626,26.79844],[92.96436,26.79274],[92.97277,26.79171],[92.97394,26.78734],[92.97035,26.78519],[92.97274,26.78426],[92.97409,26.78074],[92.97218,26.77527],[92.97302,26.76934],[92.96684,26.76413],[92.96619,26.76147],[92.9682,26.76023],[92.97494,26.76225],[92.97814,26.75465],[92.97623,26.75275],[92.96933,26.75347],[92.96615,26.74475],[92.96895,26.73792],[92.97687,26.74106],[92.98003,26.73987],[92.97826,26.73334],[92.98219,26.73097],[92.98247,26.72914],[92.97699,26.72528],[92.98292,26.71298],[92.97909,26.70768],[92.9688,26.70457],[92.96857,26.70279],[92.97193,26.70171],[92.97191,26.70029],[92.96594,26.69902],[92.96025,26.69389],[92.95991,26.69034],[92.96357,26.69028],[92.96548,26.68754],[92.9638,26.68701],[92.9681,26.67475],[92.96683,26.65873],[92.96915,26.6586],[92.96968,26.65538],[92.94888,26.65045],[92.95735,26.64827],[92.9637,26.64409],[92.97068,26.64596],[92.97404,26.61826],[92.97907,26.6181],[92.98474,26.61442],[92.99308,26.61369],[92.9967,26.61092],[92.99519,26.60646],[92.99608,26.60415],[93.00017,26.60193],[93.01377,26.59771],[93.02537,26.59696],[93.03351,26.59818],[93.05544,26.59502],[93.07112,26.59792],[93.09496,26.57768],[93.10175,26.57679],[93.11903,26.58018],[93.14638,26.59226],[93.16025,26.60147],[93.16302,26.60787],[93.16755,26.61204],[93.21979,26.63105],[93.22458,26.6408],[93.22655,26.66057],[93.24168,26.68386],[93.25067,26.68732],[93.26149,26.68317],[93.27387,26.68532],[93.28572,26.68897],[93.28477,26.69086],[93.29068,26.69747],[93.3105,26.70112],[93.32138,26.7076],[93.3309,26.70883],[93.33644,26.71522],[93.34072,26.7258],[93.34517,26.7317],[93.37207,26.74586],[93.39065,26.74849],[93.39633,26.75072],[93.41701,26.74839],[93.44119,26.74848],[93.45963,26.75516],[93.47597,26.75705],[93.49248,26.75428],[93.50411,26.75708],[93.53009,26.74672],[93.53767,26.75055],[93.54306,26.74281],[93.55681,26.73685],[93.56124,26.73286],[93.56157,26.73183],[93.55792,26.73153],[93.55791,26.72743],[93.5598,26.72529],[93.57486,26.71932],[93.5897,26.71927],[93.60095,26.71505],[93.65091,26.70621],[93.66206,26.71242],[93.66724,26.71328],[93.67051,26.71208],[93.66283,26.73228],[93.64917,26.75765],[93.64868,26.78815],[93.65905,26.79275],[93.67032,26.801],[93.67531,26.79748],[93.68934,26.7976],[93.70499,26.8097],[93.70828,26.8145],[93.71237,26.81611],[93.73233,26.81116],[93.73824,26.80431],[93.7438,26.80166],[93.75095,26.80367],[93.75571,26.81014],[93.7601,26.82191],[93.75845,26.8307],[93.76321,26.83994],[93.77476,26.84793],[93.77391,26.85059],[93.77802,26.85136],[93.77803,26.85502],[93.78457,26.85802],[93.78788,26.85721],[93.78949,26.86097],[93.78604,26.86206],[93.78764,26.8639],[93.78501,26.86406],[93.78666,26.86559],[93.78047,26.87353],[93.78042,26.88598],[93.7773,26.88391],[93.77511,26.88889],[93.76127,26.88999],[93.75812,26.89225],[93.75291,26.89145],[93.74906,26.89559],[93.74604,26.89526],[93.73952,26.89862],[93.73921,26.90098],[93.74257,26.90402],[93.73927,26.90939],[93.74232,26.91104],[93.7418,26.9125],[93.74903,26.91406],[93.74597,26.93649],[93.74192,26.94023],[93.74357,26.943],[93.74415,26.95789],[93.73893,26.96246],[93.73655,26.96759],[93.72873,26.97069],[93.72362,26.96991],[93.72117,26.97422],[93.72159,26.97637],[93.71832,26.97813],[93.71879,26.98067],[93.71559,26.97919],[93.71413,26.9809],[93.7112,26.98044],[93.71084,26.98365],[93.70842,26.9836],[93.70883,26.98543],[93.70102,26.98939],[93.6992,26.98893],[93.69895,26.99109],[93.70087,26.99168],[93.69825,26.99369]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"706","area_level":"District","area_name":"Majuli","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.58532,27.13929],[94.59304,27.1457],[94.57221,27.17424],[94.56119,27.18387],[94.55852,27.1769],[94.55605,27.17459],[94.54243,27.17224],[94.5255,27.16156],[94.52423,27.15807],[94.53108,27.15313],[94.53317,27.14788],[94.5289,27.14395],[94.5106,27.14231],[94.50886,27.13714],[94.50997,27.12569],[94.507,27.12166],[94.49485,27.1223],[94.49016,27.12806],[94.48772,27.13422],[94.47942,27.13899],[94.47498,27.13436],[94.47301,27.12224],[94.46791,27.11383],[94.46018,27.11207],[94.4521,27.11727],[94.43831,27.11972],[94.43399,27.11911],[94.42659,27.11451],[94.42414,27.09836],[94.422,27.09485],[94.41862,27.09307],[94.41444,27.09284],[94.4027,27.0972],[94.39309,27.09875],[94.38462,27.09631],[94.36964,27.09885],[94.36062,27.09567],[94.35022,27.08602],[94.33939,27.08209],[94.33546,27.08296],[94.32642,27.08889],[94.3227,27.088],[94.31843,27.08362],[94.31563,27.07285],[94.3121,27.07122],[94.30639,27.0734],[94.29817,27.08704],[94.27874,27.09512],[94.27297,27.09532],[94.25469,27.08836],[94.23432,27.07178],[94.22634,27.05562],[94.22511,27.04479],[94.22186,27.03625],[94.2244,27.03587],[94.22375,27.03199],[94.21633,27.02918],[94.20414,27.02873],[94.20114,27.02956],[94.19575,27.03505],[94.18747,27.0354],[94.18692,27.02877],[94.19188,27.01161],[94.18889,27.00458],[94.18367,27.00023],[94.17157,27.00173],[94.16891,27.0004],[94.15814,27.0003],[94.15234,26.99457],[94.1339,26.98834],[94.13791,26.97741],[94.13432,26.96914],[94.12002,26.97076],[94.10271,26.96992],[94.08634,26.96047],[94.07998,26.95998],[94.07513,26.9613],[94.07332,26.96339],[94.06776,26.97676],[94.06021,26.98301],[94.04427,26.9779],[94.04083,26.97573],[94.03851,26.96882],[94.03396,26.96252],[94.02653,26.95908],[94.02436,26.95654],[94.02464,26.94724],[94.02691,26.93851],[94.02456,26.93282],[94.02282,26.93201],[94.00912,26.93056],[94.00649,26.93637],[94.00097,26.94162],[93.99662,26.94238],[93.98469,26.92893],[93.97366,26.92269],[93.96905,26.92317],[93.96137,26.92716],[93.93396,26.93104],[93.92613,26.93036],[93.92245,26.92829],[93.91718,26.92284],[93.91897,26.91171],[93.91655,26.90748],[93.91073,26.90187],[93.89168,26.89229],[93.8905,26.8851],[93.89681,26.87183],[93.89443,26.87052],[93.89181,26.86547],[93.88488,26.86247],[93.88119,26.85778],[93.8541,26.85735],[93.84324,26.85094],[93.83513,26.85106],[93.82385,26.82529],[93.80013,26.8219],[93.78723,26.83066],[93.78036,26.83688],[93.77879,26.84071],[93.76991,26.84487],[93.76321,26.83994],[93.75868,26.83202],[93.7601,26.82191],[93.75571,26.81014],[93.75095,26.80367],[93.7438,26.80166],[93.73824,26.80431],[93.73233,26.81116],[93.71501,26.816],[93.71022,26.81559],[93.69607,26.80185],[93.68934,26.7976],[93.67531,26.79748],[93.67032,26.801],[93.65905,26.79275],[93.64868,26.78815],[93.64893,26.77459],[93.67435,26.77151],[93.69136,26.77418],[93.70806,26.77246],[93.74781,26.77488],[93.76901,26.77273],[93.78438,26.77876],[93.8016,26.79239],[93.80971,26.79215],[93.82118,26.7873],[93.84965,26.762],[93.87271,26.75159],[93.88284,26.74923],[93.88497,26.74829],[93.88502,26.74644],[93.89136,26.74395],[93.89423,26.74789],[93.88925,26.7639],[93.89178,26.76517],[93.90148,26.75073],[93.94442,26.75554],[93.9566,26.76034],[93.96318,26.77294],[93.97128,26.77645],[93.97357,26.78035],[93.97937,26.78166],[93.98748,26.78667],[93.97326,26.79624],[93.97895,26.80814],[94.02768,26.80428],[94.05195,26.80681],[94.06611,26.81384],[94.07081,26.81795],[94.08349,26.82009],[94.08935,26.81955],[94.08341,26.82172],[94.08924,26.82775],[94.09887,26.82781],[94.11294,26.84057],[94.13302,26.84869],[94.15192,26.84787],[94.16781,26.8554],[94.18454,26.85544],[94.19066,26.85804],[94.19941,26.86463],[94.2142,26.86624],[94.22874,26.87161],[94.23447,26.86498],[94.24439,26.86752],[94.25549,26.86651],[94.27126,26.86898],[94.28479,26.87345],[94.29206,26.87228],[94.30032,26.87761],[94.3201,26.87966],[94.332,26.88277],[94.34879,26.89623],[94.36148,26.90978],[94.37593,26.92083],[94.38363,26.93807],[94.3966,26.95284],[94.39529,26.95493],[94.39786,26.95917],[94.42958,26.97433],[94.44321,26.98743],[94.45257,26.99065],[94.46018,26.99544],[94.46632,27.01881],[94.47534,27.0311],[94.50167,27.03998],[94.51276,27.04823],[94.53286,27.06978],[94.54287,27.07544],[94.54766,27.0818],[94.55295,27.09663],[94.56268,27.10476],[94.57291,27.11751],[94.57878,27.12692],[94.58118,27.13498],[94.58532,27.13929]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"707","area_level":"District","area_name":"South Salmara Mancachar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[90.06834,25.98599],[90.06079,25.98947],[90.05949,25.99249],[90.05785,25.98908],[90.05124,25.98713],[90.04707,25.98696],[90.04702,25.98813],[90.03455,25.98572],[90.02713,25.97584],[90.02538,25.97662],[90.01621,25.96196],[89.99908,25.95566],[89.98577,25.95696],[89.98282,25.97014],[89.97258,25.97604],[89.9585,25.96304],[89.958,25.95436],[89.95641,25.9524],[89.94771,25.95156],[89.94514,25.94996],[89.94317,25.943],[89.94354,25.93504],[89.94916,25.92672],[89.94892,25.925],[89.93923,25.92575],[89.93728,25.92465],[89.93421,25.92146],[89.93359,25.91144],[89.93029,25.90631],[89.91828,25.9068],[89.91608,25.90447],[89.9037,25.90301],[89.89783,25.90033],[89.89282,25.89604],[89.88889,25.89569],[89.88313,25.8843],[89.8764,25.87905],[89.87216,25.87981],[89.86723,25.88321],[89.85044,25.87959],[89.84327,25.8827],[89.83877,25.87607],[89.83257,25.87061],[89.83568,25.85996],[89.83384,25.85406],[89.83528,25.84073],[89.82723,25.83294],[89.81654,25.8143],[89.82662,25.80997],[89.82997,25.80063],[89.82937,25.79701],[89.83119,25.79126],[89.83395,25.78836],[89.83398,25.78295],[89.83842,25.77562],[89.84135,25.75899],[89.83649,25.75095],[89.82696,25.74036],[89.82688,25.73291],[89.83471,25.71607],[89.83787,25.71478],[89.84926,25.71512],[89.85053,25.71296],[89.85193,25.70664],[89.84669,25.69562],[89.85171,25.68697],[89.85853,25.67974],[89.86355,25.66555],[89.86681,25.66277],[89.87109,25.66255],[89.88034,25.6352],[89.88251,25.6172],[89.8788,25.60154],[89.87329,25.58761],[89.87565,25.58123],[89.87215,25.57317],[89.87318,25.57017],[89.87039,25.56808],[89.86729,25.56219],[89.86604,25.54619],[89.86301,25.5432],[89.85127,25.53863],[89.86013,25.51682],[89.86964,25.51091],[89.86679,25.50793],[89.85803,25.50652],[89.85564,25.50353],[89.85391,25.50424],[89.8552,25.49746],[89.84931,25.4928],[89.8505,25.48573],[89.84929,25.47392],[89.85225,25.47243],[89.85225,25.46588],[89.86543,25.47169],[89.87169,25.47735],[89.87228,25.48594],[89.87669,25.4955],[89.87681,25.5008],[89.87287,25.50742],[89.88594,25.50792],[89.88411,25.51424],[89.8807,25.51674],[89.88349,25.51911],[89.87995,25.518],[89.87734,25.51962],[89.87335,25.51689],[89.87347,25.51945],[89.87174,25.51853],[89.87149,25.52192],[89.86883,25.52149],[89.86794,25.52424],[89.86808,25.52987],[89.87883,25.5377],[89.87495,25.54373],[89.87836,25.55033],[89.8853,25.55499],[89.89247,25.55583],[89.89865,25.56051],[89.90157,25.55894],[89.90747,25.56135],[89.90959,25.56045],[89.91225,25.56317],[89.93687,25.5644],[89.94106,25.56826],[89.9538,25.57079],[89.9605,25.57445],[89.97216,25.57349],[89.97542,25.57611],[89.97854,25.58696],[89.9835,25.59125],[89.98771,25.59155],[89.99556,25.58624],[90.003,25.58542],[90.01112,25.59669],[90.01098,25.60156],[90.01685,25.60187],[90.01742,25.60502],[90.02025,25.60749],[90.0176,25.60788],[90.01859,25.61133],[90.01639,25.6098],[90.00984,25.61549],[90.00925,25.61919],[90.00421,25.62024],[90.00697,25.62332],[90.00412,25.62674],[89.99882,25.6224],[89.99519,25.62465],[89.99175,25.62408],[89.98318,25.62679],[89.98335,25.63055],[89.97916,25.63878],[89.96485,25.6468],[89.96293,25.64948],[89.95045,25.6556],[89.94674,25.66187],[89.94715,25.66615],[89.94544,25.66788],[89.94744,25.67103],[89.94292,25.67223],[89.94442,25.67926],[89.93752,25.68587],[89.93627,25.68975],[89.92358,25.69449],[89.91871,25.70515],[89.91348,25.70856],[89.90278,25.72506],[89.89962,25.72596],[89.8985,25.72982],[89.89569,25.73155],[89.89363,25.7397],[89.89474,25.74497],[89.89888,25.74709],[89.92428,25.73834],[89.92816,25.73904],[89.93728,25.74512],[89.93774,25.74822],[89.93523,25.75449],[89.94205,25.75584],[89.95478,25.76718],[89.95761,25.77539],[89.95536,25.77776],[89.95935,25.77993],[89.95439,25.78797],[89.95528,25.79653],[89.95843,25.80128],[89.95452,25.80391],[89.95584,25.81119],[89.94854,25.81509],[89.95106,25.82106],[89.9483,25.82352],[89.94826,25.82547],[89.95768,25.82911],[89.9587,25.82593],[89.95403,25.82504],[89.95416,25.82127],[89.962,25.82019],[89.96765,25.82252],[89.9637,25.82823],[89.96397,25.83306],[89.96587,25.83243],[89.96791,25.82777],[89.97109,25.82637],[89.9778,25.82793],[89.97793,25.83222],[89.98145,25.83551],[89.99126,25.83496],[90.00359,25.83924],[90.004,25.8413],[89.99894,25.84279],[90.0007,25.8462],[90.00782,25.84517],[90.01575,25.85073],[90.01745,25.85307],[90.01703,25.85622],[90.01912,25.85592],[90.02233,25.86014],[90.02382,25.86722],[90.01949,25.87315],[90.01428,25.87188],[90.00563,25.87847],[90.01107,25.88461],[90.01386,25.88494],[90.01937,25.89208],[90.02551,25.89572],[90.03389,25.8944],[90.03419,25.89172],[90.04239,25.88762],[90.04344,25.89209],[90.04138,25.89407],[90.04644,25.89591],[90.04767,25.89982],[90.05544,25.90057],[90.05652,25.9032],[90.05549,25.9058],[90.06233,25.91028],[90.06055,25.91346],[90.06705,25.91299],[90.07098,25.91853],[90.07297,25.91818],[90.07535,25.91486],[90.08138,25.91755],[90.07963,25.92712],[90.08675,25.94005],[90.08307,25.94758],[90.08301,25.95251],[90.09395,25.95769],[90.09877,25.96194],[90.09551,25.9662],[90.09685,25.96802],[90.0867,25.96047],[90.08623,25.96281],[90.08162,25.96734],[90.07394,25.96906],[90.07636,25.97785],[90.07093,25.98043],[90.0719,25.98266],[90.06834,25.98599]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"708","area_level":"District","area_name":"Charaideo","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.28722,27.19736],[95.28272,27.19729],[95.28614,27.19316],[95.28061,27.19426],[95.27865,27.1887],[95.27612,27.19007],[95.27285,27.1884],[95.26797,27.19368],[95.26486,27.19076],[95.26677,27.18777],[95.26584,27.18664],[95.25889,27.19209],[95.25766,27.1842],[95.25449,27.19324],[95.24999,27.19121],[95.24549,27.19199],[95.24417,27.18921],[95.23702,27.18983],[95.2416,27.18328],[95.23769,27.17983],[95.23284,27.18093],[95.23212,27.17829],[95.2384,27.17214],[95.23838,27.17026],[95.2357,27.16972],[95.23189,27.17284],[95.2277,27.17346],[95.22515,27.16759],[95.21974,27.1652],[95.21597,27.16761],[95.21917,27.16937],[95.21895,27.17062],[95.21107,27.17435],[95.20962,27.16955],[95.21039,27.16863],[95.21382,27.17036],[95.21277,27.16608],[95.20873,27.16251],[95.19805,27.16346],[95.19878,27.15888],[95.19487,27.15527],[95.18921,27.15745],[95.19393,27.15904],[95.19405,27.16033],[95.18917,27.15968],[95.18349,27.16316],[95.18192,27.15589],[95.18623,27.15191],[95.1788,27.15005],[95.17651,27.14496],[95.17975,27.14199],[95.17276,27.13833],[95.1722,27.14136],[95.17436,27.14528],[95.17306,27.14682],[95.16891,27.14343],[95.16981,27.1373],[95.16462,27.13631],[95.1634,27.13216],[95.15967,27.1347],[95.16404,27.12919],[95.16291,27.12817],[95.15815,27.12887],[95.15488,27.13657],[95.15063,27.1317],[95.1512,27.1286],[95.15417,27.12545],[95.15277,27.12426],[95.1485,27.13052],[95.14797,27.13508],[95.14558,27.13726],[95.13454,27.13866],[95.13198,27.1338],[95.13048,27.13907],[95.12679,27.13669],[95.12385,27.13035],[95.12013,27.13093],[95.11776,27.13579],[95.11619,27.13617],[95.11431,27.13235],[95.11605,27.12796],[95.11497,27.12726],[95.11226,27.1306],[95.11267,27.13645],[95.10793,27.13587],[95.10079,27.13831],[95.09973,27.13315],[95.07308,27.13647],[95.0651,27.13573],[95.064,27.13772],[95.06134,27.13687],[95.04884,27.15548],[95.03698,27.15348],[95.03189,27.14741],[95.01639,27.1499],[94.9965,27.14653],[94.97741,27.14864],[94.98351,27.15708],[94.97908,27.16423],[94.98022,27.16834],[94.9844,27.16861],[94.97906,27.1825],[94.97575,27.18301],[94.97605,27.19342],[94.97353,27.20117],[94.97214,27.21753],[94.9678,27.22708],[94.96601,27.22614],[94.95377,27.21774],[94.90315,27.173],[94.88943,27.16034],[94.8747,27.14367],[94.83757,27.09902],[94.83756,27.09342],[94.8329,27.07757],[94.8263,27.06297],[94.82483,27.05353],[94.82775,27.04217],[94.82864,27.02923],[94.8261,27.01988],[94.82983,27.0165],[94.8347,27.01785],[94.83841,27.02658],[94.84026,27.02607],[94.83859,27.02015],[94.84127,27.01763],[94.84755,27.02688],[94.85844,27.03039],[94.86688,27.02942],[94.8671,27.03525],[94.86985,27.03836],[94.88074,27.03462],[94.88443,27.04435],[94.88984,27.04688],[94.89455,27.04539],[94.8938,27.03875],[94.90642,27.03683],[94.90842,27.03302],[94.9078,27.03061],[94.89524,27.02314],[94.88033,27.01867],[94.85444,27.00798],[94.8312,26.99012],[94.82651,26.98402],[94.81365,26.95953],[94.8007,26.94561],[94.79048,26.9229],[94.81965,26.92456],[94.84802,26.92936],[94.85997,26.94088],[94.88962,26.95656],[94.93228,26.98366],[94.93954,26.98067],[94.93983,26.97565],[94.93691,26.97264],[94.94036,26.96845],[94.9418,26.95958],[94.93249,26.95646],[94.92396,26.94877],[94.9252,26.94149],[94.93085,26.9369],[94.93085,26.93256],[94.94026,26.93356],[94.94186,26.93531],[94.95324,26.93761],[94.9555,26.9401],[94.9575,26.93748],[94.96152,26.93677],[94.96777,26.92295],[94.9765,26.92128],[94.98231,26.91311],[94.9898,26.9141],[94.99129,26.92081],[95.00025,26.91951],[95.00415,26.92089],[95.01676,26.92106],[95.03413,26.9356],[95.04408,26.93874],[95.04969,26.93876],[95.06425,26.94708],[95.08096,26.9501],[95.08806,26.95318],[95.10608,26.96549],[95.10792,26.97594],[95.11196,26.98066],[95.12421,26.98544],[95.1388,26.99485],[95.14476,26.99585],[95.15018,26.99924],[95.18237,27.02544],[95.19306,27.03593],[95.19424,27.03413],[95.19321,27.03172],[95.19479,27.0312],[95.19618,27.03184],[95.19666,27.03699],[95.20322,27.03588],[95.20466,27.03771],[95.20527,27.03241],[95.20723,27.03234],[95.20752,27.03045],[95.21062,27.03097],[95.20948,27.0304],[95.21069,27.02854],[95.21386,27.03096],[95.2154,27.03016],[95.21919,27.03195],[95.22353,27.03606],[95.22687,27.03443],[95.23032,27.0357],[95.23108,27.03909],[95.22933,27.04152],[95.23177,27.04281],[95.23353,27.04049],[95.23302,27.03748],[95.23947,27.03639],[95.24384,27.02606],[95.24644,27.0238],[95.25657,27.03041],[95.25899,27.03027],[95.25844,27.03382],[95.26007,27.03555],[95.26339,27.03507],[95.27158,27.04118],[95.27713,27.04238],[95.27585,27.04408],[95.27768,27.04832],[95.27524,27.04997],[95.27632,27.05219],[95.29183,27.06649],[95.30004,27.07005],[95.31681,27.08281],[95.32927,27.08766],[95.35476,27.10391],[95.3649,27.10818],[95.3684,27.10721],[95.37199,27.11273],[95.36994,27.11505],[95.36496,27.1158],[95.36342,27.12565],[95.36143,27.1277],[95.36548,27.13124],[95.36717,27.13737],[95.36532,27.14525],[95.35899,27.15469],[95.35922,27.16507],[95.35138,27.17181],[95.34729,27.1728],[95.34403,27.18211],[95.33292,27.18739],[95.3252,27.18819],[95.3163,27.18692],[95.31395,27.18373],[95.30814,27.18999],[95.30228,27.19067],[95.30312,27.19526],[95.29126,27.19533],[95.28722,27.19736]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"709","area_level":"District","area_name":"Hojai","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.88715,26.20546],[92.88146,26.20798],[92.88082,26.20625],[92.87335,26.20623],[92.85921,26.20167],[92.84983,26.20131],[92.84375,26.2049],[92.82723,26.20407],[92.81864,26.20582],[92.80326,26.20342],[92.79606,26.19938],[92.7858,26.1967],[92.78337,26.19881],[92.77629,26.19963],[92.77613,26.19565],[92.78079,26.1919],[92.77844,26.18696],[92.76438,26.18649],[92.75423,26.17869],[92.75456,26.17592],[92.76016,26.17159],[92.7617,26.15716],[92.75753,26.15338],[92.75177,26.1423],[92.74409,26.14221],[92.73542,26.14596],[92.72729,26.14665],[92.72253,26.15094],[92.71404,26.1446],[92.70586,26.14229],[92.70252,26.12989],[92.7038,26.12524],[92.71722,26.12283],[92.73207,26.11539],[92.73142,26.10782],[92.72302,26.10091],[92.72733,26.10001],[92.73636,26.1042],[92.74117,26.10104],[92.74064,26.09416],[92.72988,26.08957],[92.73035,26.08818],[92.73616,26.08804],[92.73921,26.08579],[92.73258,26.07631],[92.73238,26.07139],[92.73525,26.06993],[92.74355,26.07501],[92.75059,26.07566],[92.75777,26.06372],[92.75747,26.05916],[92.75358,26.05651],[92.75501,26.05308],[92.75424,26.0499],[92.74567,26.03995],[92.74681,26.03796],[92.75176,26.03891],[92.75562,26.03786],[92.76503,26.02922],[92.76502,26.02722],[92.7579,26.02108],[92.7587,26.01463],[92.76097,26.01363],[92.76611,26.01691],[92.77259,26.01765],[92.77962,26.01428],[92.78256,26.01018],[92.78233,26.00708],[92.77973,26.00545],[92.76265,26.00699],[92.75709,26.00271],[92.75786,25.99996],[92.76129,25.99858],[92.77533,26.00037],[92.77908,25.99606],[92.77749,25.99381],[92.76502,25.99526],[92.75926,25.99127],[92.76052,25.98733],[92.76584,25.99173],[92.76888,25.99128],[92.77052,25.98923],[92.76216,25.98431],[92.76209,25.98224],[92.76665,25.98005],[92.76955,25.97581],[92.76849,25.97282],[92.76195,25.96673],[92.76274,25.9605],[92.77562,25.94836],[92.77907,25.94964],[92.78387,25.95613],[92.79423,25.96461],[92.7981,25.96427],[92.80629,25.95785],[92.80729,25.95496],[92.80628,25.95332],[92.79749,25.95826],[92.79366,25.95639],[92.79299,25.95338],[92.79551,25.94419],[92.79005,25.9382],[92.79144,25.93507],[92.79749,25.92984],[92.79891,25.92097],[92.80178,25.91774],[92.80444,25.91793],[92.81018,25.92271],[92.81501,25.92431],[92.8223,25.92276],[92.83075,25.9144],[92.83427,25.91358],[92.85034,25.92481],[92.85498,25.92433],[92.85656,25.9199],[92.84839,25.91088],[92.84763,25.9041],[92.85775,25.88463],[92.86572,25.87804],[92.86509,25.87177],[92.86808,25.86838],[92.87824,25.867],[92.8849,25.86911],[92.88919,25.86507],[92.98232,25.87547],[92.99691,25.85147],[93.01317,25.83971],[93.02893,25.81221],[93.05095,25.79061],[93.0754,25.78291],[93.07359,25.77899],[93.07029,25.77874],[93.06751,25.77649],[93.06368,25.77677],[93.06615,25.7758],[93.0645,25.77463],[93.0666,25.77288],[93.06603,25.7712],[93.06794,25.77069],[93.06812,25.76745],[93.07231,25.76712],[93.07361,25.76941],[93.07526,25.76623],[93.08058,25.76861],[93.08047,25.77109],[93.08307,25.76862],[93.0857,25.77114],[93.08666,25.76951],[93.09112,25.77195],[93.09045,25.76949],[93.09503,25.76983],[93.096,25.77616],[93.09845,25.77715],[93.09882,25.77388],[93.10497,25.77377],[93.10485,25.76982],[93.10921,25.76949],[93.11039,25.76552],[93.11462,25.76677],[93.1185,25.76072],[93.12504,25.76305],[93.12644,25.76107],[93.12954,25.76097],[93.12578,25.74874],[93.13783,25.74468],[93.14134,25.74139],[93.14178,25.73677],[93.14582,25.7389],[93.14491,25.73679],[93.14856,25.73406],[93.14265,25.71857],[93.14838,25.72071],[93.15314,25.72054],[93.15853,25.72373],[93.17051,25.71838],[93.18242,25.72897],[93.22651,25.72684],[93.23106,25.75881],[93.22747,25.76202],[93.22855,25.76346],[93.22713,25.76551],[93.23293,25.76612],[93.24282,25.77531],[93.24695,25.78289],[93.24782,25.78796],[93.24515,25.7952],[93.24787,25.79767],[93.24593,25.79969],[93.24728,25.80908],[93.24069,25.80736],[93.23995,25.80944],[93.2438,25.81558],[93.24503,25.82192],[93.24381,25.83102],[93.23796,25.8411],[93.23796,25.84369],[93.24087,25.84639],[93.23924,25.85112],[93.23163,25.85232],[93.22204,25.85994],[93.20689,25.88066],[93.19691,25.89806],[93.18808,25.89969],[93.18303,25.90336],[93.18343,25.91421],[93.18207,25.92003],[93.17935,25.92143],[93.17943,25.92873],[93.17671,25.93267],[93.17797,25.93412],[93.1751,25.94047],[93.1765,25.94306],[93.17298,25.94461],[93.17186,25.9471],[93.17353,25.95252],[93.16753,25.95646],[93.16138,25.95757],[93.1586,25.96167],[93.15934,25.96457],[93.15729,25.96788],[93.15933,25.97103],[93.15767,25.97491],[93.15863,25.97742],[93.15405,25.98555],[93.15825,25.99538],[93.15327,25.99504],[93.14981,25.99711],[93.14821,26.00223],[93.14094,26.00979],[93.14048,26.0147],[93.13776,26.01856],[93.1327,26.02149],[93.12655,26.0219],[93.12749,26.02472],[93.12533,26.02614],[93.1272,26.03111],[93.11304,26.0346],[93.11002,26.03698],[93.10637,26.03491],[93.10003,26.03518],[93.0934,26.03313],[93.10842,26.07823],[93.10573,26.07733],[93.10408,26.07345],[93.10007,26.07696],[93.09754,26.07549],[93.09441,26.07709],[93.0926,26.07485],[93.08838,26.07443],[93.09074,26.07612],[93.0905,26.07819],[93.08482,26.07572],[93.08502,26.08305],[93.081,26.08109],[93.08157,26.07838],[93.07593,26.08045],[93.07684,26.08205],[93.07529,26.08489],[93.07319,26.08334],[93.07245,26.08537],[93.07215,26.08083],[93.06803,26.08258],[93.06859,26.07803],[93.06535,26.08256],[93.06157,26.08256],[93.05949,26.07971],[93.0593,26.08525],[93.05636,26.0852],[93.05588,26.08826],[93.05082,26.08456],[93.04969,26.08724],[93.04715,26.08814],[93.0453,26.08617],[93.03995,26.08747],[93.03722,26.09139],[93.03846,26.09646],[93.03674,26.09839],[93.03735,26.10067],[93.03506,26.10206],[93.03684,26.10568],[93.03589,26.10859],[93.0331,26.10582],[93.03056,26.10764],[93.0255,26.1073],[93.02165,26.11042],[93.0218,26.11306],[93.01609,26.11268],[93.015,26.11456],[93.01264,26.11263],[93.00709,26.11489],[93.00584,26.11731],[93.00235,26.11753],[92.99788,26.12234],[92.9786,26.12723],[92.97761,26.12928],[92.97364,26.13076],[92.97192,26.12834],[92.96648,26.12913],[92.96355,26.13129],[92.96315,26.13408],[92.96082,26.13336],[92.95938,26.13764],[92.95461,26.14076],[92.95251,26.13868],[92.94647,26.13962],[92.94601,26.13767],[92.94281,26.13714],[92.93929,26.13744],[92.93874,26.13887],[92.93404,26.13663],[92.9339,26.13869],[92.93121,26.1393],[92.9329,26.13997],[92.93142,26.14318],[92.92898,26.14512],[92.93241,26.14521],[92.93141,26.14797],[92.93537,26.1487],[92.93093,26.14931],[92.93124,26.15129],[92.93605,26.15036],[92.94243,26.15382],[92.94286,26.1563],[92.94371,26.15518],[92.94616,26.15718],[92.9486,26.16092],[92.94697,26.16285],[92.94954,26.16279],[92.95041,26.16549],[92.95251,26.16575],[92.95389,26.17184],[92.95603,26.17434],[92.95266,26.19024],[92.94775,26.1911],[92.94286,26.19783],[92.94388,26.19999],[92.93941,26.20257],[92.92932,26.20048],[92.92649,26.20265],[92.90744,26.20207],[92.88715,26.20546]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"71","area_level":"District","area_name":"Panipat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.88899,29.52461],[76.88378,29.52685],[76.88341,29.52906],[76.88775,29.53114],[76.88281,29.53397],[76.87775,29.51985],[76.88555,29.51548],[76.88794,29.51236],[76.88657,29.50882],[76.88758,29.5],[76.88617,29.49619],[76.8826,29.49309],[76.87545,29.49158],[76.87417,29.48998],[76.87049,29.49182],[76.86159,29.48832],[76.85584,29.49],[76.84815,29.49544],[76.84446,29.5008],[76.83779,29.50286],[76.82885,29.51207],[76.81806,29.51413],[76.81872,29.50737],[76.81058,29.48965],[76.80083,29.48027],[76.79548,29.4719],[76.79519,29.46667],[76.79053,29.46577],[76.78479,29.46723],[76.77548,29.47434],[76.7654,29.46624],[76.76288,29.4662],[76.75471,29.45811],[76.74741,29.44225],[76.75015,29.43798],[76.74711,29.43685],[76.74578,29.43343],[76.74101,29.43199],[76.74191,29.42887],[76.73105,29.41247],[76.73276,29.40978],[76.74052,29.40669],[76.73508,29.39428],[76.73457,29.38812],[76.71766,29.38662],[76.71059,29.38187],[76.69186,29.38408],[76.68703,29.38163],[76.68772,29.37908],[76.68562,29.37677],[76.67174,29.37559],[76.66217,29.37087],[76.6512,29.36904],[76.64777,29.36109],[76.64828,29.33831],[76.64597,29.3326],[76.64111,29.33046],[76.63716,29.32098],[76.63191,29.3146],[76.64176,29.30531],[76.6367,29.29747],[76.64421,29.28833],[76.65475,29.28356],[76.67194,29.27868],[76.67692,29.2805],[76.68246,29.27411],[76.68212,29.2695],[76.70883,29.26102],[76.71372,29.25817],[76.71404,29.25126],[76.71549,29.25082],[76.72519,29.25284],[76.7278,29.25684],[76.73364,29.25522],[76.75304,29.26265],[76.76963,29.27984],[76.77947,29.282],[76.78213,29.27738],[76.79628,29.27245],[76.79806,29.25797],[76.79311,29.25075],[76.79683,29.24868],[76.79547,29.24634],[76.801,29.23917],[76.80231,29.22761],[76.81126,29.22182],[76.8111,29.21757],[76.81778,29.21623],[76.82382,29.21165],[76.84169,29.20555],[76.85483,29.2058],[76.86099,29.19816],[76.87544,29.19186],[76.88591,29.19484],[76.88968,29.19924],[76.88963,29.2064],[76.89435,29.21034],[76.90338,29.21231],[76.90505,29.21455],[76.90937,29.21404],[76.91813,29.21932],[76.92782,29.21346],[76.93091,29.21421],[76.93891,29.20864],[76.94805,29.20888],[76.95965,29.20508],[76.96741,29.197],[76.96399,29.19363],[76.98224,29.1884],[76.98699,29.18791],[76.99158,29.19023],[76.99869,29.18529],[77.0011,29.18762],[77.00695,29.18896],[77.00744,29.18575],[77.01803,29.18538],[77.02886,29.17761],[77.05027,29.1844],[77.05265,29.18148],[77.05132,29.17914],[77.0528,29.17864],[77.05199,29.1763],[77.05989,29.17279],[77.06136,29.1758],[77.07274,29.17526],[77.07859,29.17969],[77.08749,29.17522],[77.09173,29.16774],[77.09735,29.16177],[77.11433,29.16959],[77.1433,29.1669],[77.14728,29.17959],[77.14376,29.18313],[77.14018,29.19213],[77.14329,29.19434],[77.14239,29.20333],[77.13918,29.20733],[77.13433,29.21001],[77.13141,29.21749],[77.13349,29.22347],[77.14785,29.2304],[77.15,29.23276],[77.14875,29.23961],[77.14978,29.25],[77.14539,29.25756],[77.13995,29.26139],[77.13895,29.26784],[77.14386,29.27663],[77.14502,29.2833],[77.14948,29.2881],[77.15066,29.29471],[77.15828,29.30288],[77.16055,29.3134],[77.16031,29.31581],[77.15664,29.31868],[77.15653,29.32279],[77.16115,29.33236],[77.15976,29.33678],[77.15174,29.34111],[77.14206,29.33977],[77.13127,29.34126],[77.12445,29.35143],[77.12896,29.35703],[77.12345,29.36724],[77.1233,29.37034],[77.12703,29.37576],[77.14257,29.37747],[77.15741,29.38731],[77.15347,29.39067],[77.15103,29.38994],[77.1509,29.38716],[77.14737,29.38785],[77.1426,29.39073],[77.13666,29.39677],[77.13569,29.39971],[77.13325,29.40084],[77.13425,29.40477],[77.13184,29.41298],[77.13312,29.41877],[77.14436,29.42653],[77.14842,29.43408],[77.14452,29.44531],[77.13393,29.44751],[77.12321,29.45537],[77.12268,29.46889],[77.13217,29.47819],[77.13338,29.48262],[77.13224,29.48468],[77.11682,29.46943],[77.10939,29.46564],[77.09757,29.46381],[77.08733,29.45796],[77.07995,29.46031],[77.07809,29.46868],[77.07308,29.47256],[77.05865,29.46957],[77.05531,29.46726],[77.0456,29.46935],[77.02181,29.46889],[77.01794,29.46397],[77.01399,29.46403],[77.0,29.46672],[76.98493,29.47671],[76.98171,29.47539],[76.97837,29.47938],[76.97256,29.47789],[76.97122,29.48047],[76.96546,29.48377],[76.96151,29.48353],[76.94993,29.47858],[76.94265,29.48124],[76.93659,29.48093],[76.93382,29.47833],[76.92792,29.48248],[76.9161,29.48275],[76.91164,29.47617],[76.90723,29.47812],[76.90838,29.48044],[76.9045,29.48211],[76.90435,29.4804],[76.89953,29.48273],[76.89951,29.48592],[76.90108,29.48723],[76.89818,29.48923],[76.90118,29.49578],[76.90305,29.49597],[76.90277,29.50681],[76.90858,29.50974],[76.91194,29.50978],[76.91464,29.5132],[76.915,29.5185],[76.90597,29.51873],[76.90002,29.52187],[76.89925,29.52465],[76.88899,29.52461]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"710","area_level":"District","area_name":"West Karbi Anglong","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[92.52271,26.15157],[92.52229,26.15516],[92.51931,26.15476],[92.51995,26.1514],[92.50794,26.14121],[92.50126,26.14892],[92.48663,26.14941],[92.48643,26.14491],[92.48238,26.13916],[92.47886,26.12896],[92.46816,26.11799],[92.45936,26.11766],[92.45388,26.11562],[92.44942,26.10008],[92.44402,26.0982],[92.44144,26.0956],[92.42736,26.0988],[92.42514,26.10713],[92.41313,26.11559],[92.41126,26.11179],[92.40727,26.11376],[92.3954,26.11362],[92.3842,26.10037],[92.37954,26.0913],[92.36289,26.07758],[92.36271,26.08203],[92.35986,26.08506],[92.35963,26.09161],[92.35449,26.0848],[92.34802,26.08526],[92.33885,26.07968],[92.32986,26.07681],[92.32341,26.08633],[92.31446,26.0848],[92.31228,26.08217],[92.30353,26.08631],[92.30039,26.08238],[92.30031,26.07761],[92.29653,26.08252],[92.2938,26.08222],[92.29034,26.07824],[92.28661,26.0776],[92.28284,26.06984],[92.27103,26.06433],[92.26949,26.06057],[92.26456,26.05837],[92.26357,26.05431],[92.26814,26.05143],[92.27003,26.04745],[92.26901,26.04282],[92.26108,26.04164],[92.26508,26.0361],[92.26347,26.03313],[92.25681,26.0287],[92.25329,26.029],[92.24858,26.02338],[92.24373,26.02152],[92.24286,26.02039],[92.24452,26.01819],[92.23504,26.01223],[92.23387,26.00912],[92.22775,26.00856],[92.2248,26.00599],[92.22032,26.00569],[92.21911,26.00389],[92.2119,26.00455],[92.20915,25.99792],[92.20385,26.00122],[92.20101,25.99516],[92.19754,25.99456],[92.19631,25.99085],[92.19855,25.98822],[92.18846,25.98455],[92.18139,25.98533],[92.17949,25.97844],[92.17554,25.97461],[92.16932,25.97338],[92.16421,25.97028],[92.16213,25.96656],[92.16152,25.96025],[92.16405,25.95781],[92.1573,25.95263],[92.1571,25.94919],[92.15244,25.94432],[92.15252,25.93959],[92.16015,25.93532],[92.15922,25.93322],[92.16093,25.92815],[92.15448,25.91121],[92.16242,25.91116],[92.17555,25.90737],[92.17757,25.90885],[92.17656,25.91042],[92.18173,25.91126],[92.18608,25.91663],[92.18947,25.91457],[92.19453,25.91846],[92.19633,25.91575],[92.19404,25.91167],[92.20105,25.90845],[92.20228,25.90633],[92.20443,25.90914],[92.21727,25.9115],[92.22556,25.90917],[92.22281,25.90639],[92.22085,25.90026],[92.2157,25.89995],[92.21498,25.8953],[92.19901,25.88899],[92.18755,25.8772],[92.18363,25.87688],[92.17724,25.87275],[92.1762,25.8682],[92.1801,25.85823],[92.17759,25.8581],[92.1775,25.8515],[92.17261,25.8499],[92.17301,25.84718],[92.16981,25.83886],[92.16623,25.83529],[92.16202,25.83554],[92.16417,25.83301],[92.16081,25.83061],[92.16235,25.82724],[92.16128,25.82059],[92.16023,25.81979],[92.15695,25.82158],[92.15575,25.81889],[92.1511,25.81664],[92.15258,25.81178],[92.1487,25.80594],[92.14996,25.79489],[92.14636,25.78412],[92.15266,25.778],[92.14782,25.77295],[92.15092,25.76655],[92.15025,25.76361],[92.15543,25.7574],[92.15556,25.75112],[92.16282,25.74387],[92.16271,25.74086],[92.16191,25.73663],[92.15445,25.72501],[92.14817,25.72527],[92.14425,25.71681],[92.14773,25.70946],[92.15083,25.70778],[92.15241,25.70861],[92.15478,25.70621],[92.15465,25.69788],[92.15684,25.69582],[92.15598,25.69167],[92.16053,25.68412],[92.1596,25.67624],[92.15615,25.67218],[92.1607,25.66884],[92.16596,25.66634],[92.1702,25.66713],[92.17343,25.67414],[92.17748,25.67431],[92.17997,25.67807],[92.1883,25.68441],[92.19707,25.68675],[92.20081,25.69227],[92.20809,25.69557],[92.20986,25.69917],[92.21685,25.70481],[92.22113,25.71327],[92.22503,25.71609],[92.23168,25.71594],[92.23286,25.70886],[92.23445,25.70758],[92.23876,25.7106],[92.24734,25.71314],[92.25114,25.71082],[92.25485,25.7126],[92.26437,25.70909],[92.27128,25.71126],[92.27715,25.71547],[92.29301,25.71645],[92.29715,25.71998],[92.30213,25.72086],[92.31134,25.72789],[92.31695,25.72242],[92.32416,25.72472],[92.33351,25.72412],[92.34583,25.72918],[92.35324,25.73975],[92.36093,25.73665],[92.36427,25.73735],[92.36894,25.74729],[92.37376,25.75041],[92.37869,25.74839],[92.38432,25.75446],[92.38543,25.75051],[92.38205,25.74632],[92.38178,25.74204],[92.38784,25.74415],[92.39766,25.74045],[92.40662,25.7446],[92.40803,25.74349],[92.40718,25.74187],[92.41432,25.74146],[92.41458,25.73996],[92.40912,25.73375],[92.41165,25.73003],[92.42205,25.7299],[92.43118,25.73218],[92.43294,25.72696],[92.44429,25.7197],[92.4477,25.70901],[92.44399,25.70736],[92.44036,25.70824],[92.43789,25.7058],[92.44065,25.6916],[92.45031,25.68529],[92.45532,25.68492],[92.46327,25.68101],[92.46797,25.67552],[92.47033,25.67515],[92.4972,25.62439],[92.50609,25.6214],[92.50563,25.61631],[92.50948,25.61559],[92.51507,25.61834],[92.51643,25.61506],[92.53338,25.61495],[92.53585,25.61315],[92.53886,25.61358],[92.53922,25.61158],[92.55417,25.6148],[92.5541,25.61303],[92.55673,25.61141],[92.55548,25.60178],[92.55217,25.60254],[92.55439,25.59957],[92.55332,25.59739],[92.55659,25.59648],[92.55467,25.59533],[92.55432,25.5883],[92.55494,25.58457],[92.55877,25.58012],[92.55622,25.57665],[92.55673,25.57096],[92.57249,25.55735],[92.57542,25.55851],[92.58236,25.55763],[92.58407,25.55045],[92.58996,25.5526],[92.59482,25.55159],[92.59998,25.55504],[92.60246,25.56222],[92.62205,25.56515],[92.63017,25.57167],[92.63545,25.5827],[92.64171,25.58851],[92.64898,25.59209],[92.65338,25.59061],[92.65865,25.57813],[92.65867,25.57345],[92.66504,25.57263],[92.68268,25.57668],[92.68287,25.57926],[92.67871,25.5808],[92.67992,25.58501],[92.68434,25.59031],[92.69667,25.59937],[92.71298,25.59882],[92.71531,25.59026],[92.72005,25.58859],[92.73903,25.59325],[92.74805,25.59868],[92.7505,25.6025],[92.74968,25.60918],[92.75437,25.61508],[92.75796,25.61611],[92.76405,25.61438],[92.7687,25.61807],[92.76818,25.61988],[92.76248,25.62154],[92.75854,25.62564],[92.75864,25.62918],[92.76625,25.63236],[92.77159,25.63967],[92.77568,25.64099],[92.77952,25.64568],[92.78284,25.64618],[92.78882,25.65739],[92.78911,25.66128],[92.77431,25.67246],[92.77642,25.67799],[92.79872,25.68978],[92.80161,25.69818],[92.81377,25.70235],[92.81475,25.70913],[92.81773,25.71125],[92.82172,25.71908],[92.82062,25.74114],[92.82943,25.74237],[92.84311,25.7511],[92.8681,25.75334],[92.88362,25.75655],[92.92279,25.77228],[92.92693,25.7766],[92.9282,25.79307],[92.93271,25.79965],[92.93227,25.80255],[92.92855,25.80688],[92.94429,25.80323],[92.94884,25.80864],[92.95571,25.8084],[92.96222,25.81708],[92.96587,25.81791],[92.9673,25.81528],[92.95867,25.80811],[92.95675,25.80287],[92.96002,25.79768],[92.96997,25.79106],[92.96743,25.78179],[92.97353,25.78442],[92.98064,25.79054],[92.98206,25.78907],[92.9797,25.78123],[92.9836,25.78023],[92.98581,25.78224],[92.98766,25.8004],[92.98699,25.80307],[92.9832,25.80472],[92.98096,25.80868],[92.98584,25.81312],[92.99003,25.82245],[92.99553,25.82515],[93.00602,25.82673],[93.0067,25.82484],[92.99821,25.80798],[92.99941,25.79359],[93.00325,25.78651],[93.01161,25.78959],[93.0166,25.8001],[93.01864,25.80129],[93.02508,25.79425],[93.03509,25.79543],[93.05291,25.78464],[93.05207,25.77871],[93.05519,25.78104],[93.05846,25.78101],[93.05915,25.77929],[93.05648,25.77898],[93.05582,25.77733],[93.05826,25.77537],[93.05764,25.77239],[93.06422,25.77728],[93.06751,25.77649],[93.07377,25.77919],[93.0754,25.78291],[93.05095,25.79061],[93.02819,25.81298],[93.01317,25.83971],[92.99691,25.85147],[92.98232,25.87547],[92.88919,25.86507],[92.8849,25.86911],[92.87824,25.867],[92.86808,25.86838],[92.86509,25.87177],[92.86572,25.87804],[92.85775,25.88463],[92.84763,25.9041],[92.84839,25.91088],[92.85656,25.9199],[92.85417,25.92495],[92.85034,25.92481],[92.83427,25.91358],[92.83075,25.9144],[92.8223,25.92276],[92.81778,25.92394],[92.81232,25.92374],[92.80444,25.91793],[92.80059,25.91854],[92.79749,25.92984],[92.79144,25.93507],[92.79005,25.9382],[92.79551,25.94419],[92.79299,25.95338],[92.79462,25.95746],[92.7991,25.95783],[92.80573,25.95327],[92.80714,25.95416],[92.80697,25.95673],[92.79868,25.96393],[92.79423,25.96461],[92.78387,25.95613],[92.77907,25.94964],[92.77562,25.94836],[92.76274,25.9605],[92.76195,25.96673],[92.76849,25.97282],[92.76955,25.97581],[92.76665,25.98005],[92.76209,25.98224],[92.76216,25.98431],[92.77052,25.98923],[92.76888,25.99128],[92.76584,25.99173],[92.76052,25.98733],[92.75926,25.99127],[92.76502,25.99526],[92.77749,25.99381],[92.77908,25.99606],[92.77533,26.00037],[92.76129,25.99858],[92.75786,25.99996],[92.75709,26.00271],[92.76265,26.00699],[92.77973,26.00545],[92.78233,26.00708],[92.78263,26.00993],[92.77962,26.01428],[92.77259,26.01765],[92.76611,26.01691],[92.76097,26.01363],[92.75897,26.01426],[92.7579,26.02108],[92.7652,26.02884],[92.75562,26.03786],[92.74607,26.03884],[92.74573,26.04081],[92.7482,26.04429],[92.75424,26.0499],[92.75491,26.0539],[92.75315,26.05693],[92.74306,26.06149],[92.71736,26.0583],[92.71628,26.05466],[92.71399,26.05353],[92.70887,26.04524],[92.71201,26.0402],[92.71049,26.03978],[92.7113,26.03835],[92.71007,26.03702],[92.71226,26.03777],[92.71332,26.03612],[92.71682,26.03619],[92.71509,26.0328],[92.7165,26.02977],[92.71136,26.02598],[92.71485,26.02289],[92.71246,26.02171],[92.71331,26.01806],[92.71078,26.01933],[92.71103,26.01776],[92.70963,26.01759],[92.70807,26.02028],[92.70616,26.01947],[92.70378,26.02187],[92.69888,26.01994],[92.69493,26.02281],[92.694,26.02073],[92.69225,26.02275],[92.69008,26.02129],[92.6887,26.02408],[92.68664,26.02448],[92.68734,26.02614],[92.68367,26.02771],[92.67889,26.02424],[92.6782,26.02715],[92.67282,26.02492],[92.67065,26.02875],[92.66688,26.02838],[92.66551,26.02376],[92.65441,26.0196],[92.65622,26.01688],[92.65461,26.01319],[92.65737,26.00791],[92.65553,26.00025],[92.64385,25.99994],[92.63886,25.99766],[92.63615,25.99895],[92.63715,25.99612],[92.63389,25.99431],[92.63295,25.98962],[92.62067,25.98418],[92.61554,25.98415],[92.61132,25.97762],[92.60641,25.97857],[92.60049,25.9759],[92.59593,25.97809],[92.58874,25.96401],[92.57551,25.96639],[92.56561,25.96168],[92.56026,25.96511],[92.55125,25.96604],[92.54599,25.97156],[92.5592,25.99355],[92.56715,26.00191],[92.56623,26.01073],[92.571,26.01443],[92.59379,26.02148],[92.59444,26.02361],[92.59321,26.0231],[92.59074,26.0276],[92.58151,26.02935],[92.5795,26.03328],[92.58323,26.04325],[92.5842,26.05294],[92.58887,26.06262],[92.59602,26.07093],[92.59569,26.08076],[92.57461,26.09485],[92.57702,26.10776],[92.57352,26.11463],[92.57054,26.11668],[92.54768,26.11075],[92.53639,26.09646],[92.53318,26.0961],[92.53051,26.09942],[92.53069,26.1014],[92.52658,26.09855],[92.52246,26.10232],[92.51966,26.10243],[92.5193,26.1126],[92.51763,26.11602],[92.5289,26.15088],[92.526,26.15315],[92.52271,26.15157]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"711","area_level":"District","area_name":"Kakching","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.89852,24.55756],[93.88704,24.55376],[93.87276,24.55263],[93.86693,24.53862],[93.86674,24.52058],[93.86814,24.51801],[93.87102,24.51929],[93.87386,24.518],[93.87375,24.50774],[93.87804,24.50645],[93.87656,24.50136],[93.87225,24.49883],[93.87934,24.49246],[93.88075,24.48866],[93.87207,24.47482],[93.8706,24.46978],[93.86198,24.46102],[93.85339,24.4573],[93.85623,24.45477],[93.85622,24.45225],[93.85334,24.44975],[93.8533,24.44221],[93.85043,24.43972],[93.84754,24.43346],[93.84326,24.43348],[93.83752,24.42849],[93.83749,24.42347],[93.846,24.41211],[93.84028,24.4109],[93.83884,24.40839],[93.84024,24.40336],[93.84451,24.39957],[93.8459,24.39579],[93.84584,24.38325],[93.84867,24.37946],[93.8458,24.37572],[93.84716,24.36317],[93.85143,24.36189],[93.85141,24.35813],[93.84855,24.35564],[93.84853,24.35063],[93.85711,24.3556],[93.85995,24.35182],[93.85134,24.34185],[93.86131,24.33433],[93.85844,24.33059],[93.85843,24.32438],[93.85272,24.32687],[93.85414,24.31817],[93.85127,24.31195],[93.86274,24.31078],[93.86705,24.30834],[93.86708,24.30344],[93.87714,24.28618],[93.88283,24.28361],[93.88419,24.27852],[93.87972,24.26574],[93.88223,24.23649],[93.88942,24.23904],[93.89525,24.2467],[93.90822,24.24939],[93.90837,24.2621],[93.91409,24.25963],[93.9184,24.26215],[93.91983,24.27085],[93.91694,24.27824],[93.91835,24.28068],[93.92405,24.27941],[93.93677,24.29029],[93.93678,24.29524],[93.92968,24.30898],[93.92119,24.32151],[93.91266,24.32906],[93.90841,24.33781],[93.9099,24.35031],[93.91571,24.36907],[93.92289,24.3753],[93.92581,24.3866],[93.93443,24.39414],[93.94441,24.39288],[93.94303,24.40047],[93.9445,24.40428],[93.94881,24.40813],[93.95453,24.4082],[93.96023,24.40569],[93.96455,24.40963],[93.9632,24.41878],[93.9705,24.42994],[93.97503,24.4474],[93.96939,24.46338],[93.96803,24.48508],[93.97665,24.48776],[93.98093,24.48261],[93.9824,24.46825],[93.99672,24.46367],[94.0001,24.46054],[93.99991,24.44627],[94.00203,24.44146],[94.01899,24.44436],[94.03517,24.45537],[94.04773,24.47033],[94.03351,24.50167],[93.98835,24.51316],[93.97688,24.518],[93.96687,24.53267],[93.96259,24.5351],[93.95687,24.53508],[93.94545,24.53888],[93.89852,24.55756]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"712","area_level":"District","area_name":"Kangpokpi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.96348,25.33604],[93.96816,25.3576],[93.9746,25.37507],[93.97593,25.38705],[93.97369,25.39366],[93.97001,25.39801],[93.92061,25.39031],[93.91985,25.38655],[93.91356,25.38548],[93.90562,25.37719],[93.90441,25.36902],[93.90065,25.36611],[93.89919,25.35753],[93.88892,25.34964],[93.89039,25.34539],[93.88985,25.33963],[93.88647,25.33766],[93.88642,25.33454],[93.89278,25.33556],[93.896,25.33304],[93.90565,25.33023],[93.91774,25.3288],[93.92777,25.3143],[93.93351,25.31226],[93.93753,25.30209],[93.94413,25.29258],[93.94659,25.29052],[93.95528,25.29011],[93.95227,25.28687],[93.9277,25.27303],[93.92292,25.27168],[93.90221,25.27172],[93.88449,25.25964],[93.88463,25.25722],[93.86554,25.24404],[93.85217,25.22882],[93.82724,25.2214],[93.81559,25.20705],[93.81507,25.19985],[93.80253,25.18508],[93.7985,25.18535],[93.79713,25.17584],[93.7941,25.17542],[93.79337,25.1727],[93.79502,25.17001],[93.79197,25.16677],[93.7885,25.16657],[93.78021,25.15857],[93.77929,25.15552],[93.77572,25.15353],[93.77435,25.15041],[93.78074,25.12594],[93.7905,25.11656],[93.79502,25.10652],[93.79664,25.09922],[93.79605,25.08333],[93.79802,25.08093],[93.79736,25.07741],[93.80091,25.06103],[93.81095,25.0455],[93.81097,25.04176],[93.81702,25.02873],[93.81781,25.02396],[93.81648,25.01733],[93.81365,25.01628],[93.80134,25.01855],[93.79659,25.01691],[93.79242,25.01268],[93.79038,25.00743],[93.79194,24.99857],[93.79738,24.99222],[93.79285,24.98843],[93.79806,24.98457],[93.79866,24.97817],[93.79766,24.97049],[93.79108,24.96286],[93.78372,24.96161],[93.77755,24.9578],[93.7702,24.95782],[93.76703,24.95401],[93.74473,24.94143],[93.72281,24.93394],[93.70249,24.91137],[93.70696,24.89753],[93.70707,24.8925],[93.71148,24.88621],[93.71729,24.88242],[93.72024,24.87738],[93.72746,24.87234],[93.72754,24.86354],[93.73331,24.85473],[93.72476,24.84849],[93.71763,24.83469],[93.7205,24.82966],[93.7205,24.8259],[93.71335,24.82089],[93.70477,24.81966],[93.70191,24.82093],[93.69905,24.81465],[93.6919,24.81468],[93.68618,24.80966],[93.68474,24.8059],[93.67902,24.80341],[93.67616,24.79964],[93.67043,24.7984],[93.66191,24.79331],[93.68394,24.70757],[93.6971,24.61219],[93.71423,24.60466],[93.7185,24.59962],[93.72134,24.59208],[93.73718,24.62219],[93.74874,24.64856],[93.74594,24.66365],[93.74887,24.68249],[93.75318,24.68624],[93.76176,24.68497],[93.76609,24.69249],[93.76612,24.69878],[93.769,24.70631],[93.76908,24.72642],[93.77341,24.73144],[93.77056,24.73521],[93.77057,24.73773],[93.77762,24.73978],[93.77908,24.74734],[93.7906,24.76619],[93.78774,24.76998],[93.79206,24.775],[93.78349,24.79266],[93.78063,24.80526],[93.78493,24.80902],[93.78495,24.8191],[93.80788,24.83668],[93.80642,24.85431],[93.80928,24.85684],[93.80496,24.86438],[93.80782,24.86942],[93.81498,24.87194],[93.81925,24.88704],[93.82498,24.89082],[93.83228,24.92232],[93.84106,24.9299],[93.84147,24.94379],[93.84473,24.9514],[93.86281,24.95654],[93.86917,24.97562],[93.8851,25.00087],[93.88873,25.01008],[93.88999,25.0185],[93.89774,25.03149],[93.90761,25.04087],[93.91487,25.04529],[93.91855,25.05586],[93.97223,25.0755],[93.97921,25.07358],[93.98319,25.07032],[93.98459,25.06463],[93.98138,25.05557],[93.95478,25.02722],[93.93124,25.015],[93.91177,25.0008],[93.91042,24.98437],[93.9034,24.97553],[93.90755,24.97422],[93.90859,24.97166],[93.91435,24.97284],[93.91671,24.97024],[93.90784,24.96657],[93.90466,24.96407],[93.90255,24.95899],[93.89509,24.95651],[93.89033,24.95273],[93.88642,24.94132],[93.89312,24.9337],[93.9042,24.92731],[93.90668,24.94498],[93.92686,24.96607],[93.92921,24.96342],[93.9334,24.96574],[93.9303,24.96082],[93.92294,24.95478],[93.92248,24.92334],[93.91956,24.92085],[93.91936,24.91453],[93.91505,24.91204],[93.91634,24.90698],[93.91063,24.90074],[93.92479,24.90438],[93.93048,24.90309],[93.9333,24.89427],[93.93907,24.89676],[93.94342,24.89677],[93.95078,24.90179],[93.94494,24.90305],[93.94497,24.90431],[93.95826,24.91294],[93.95975,24.91658],[93.94657,24.91184],[93.94524,24.91684],[93.95981,24.9238],[93.96124,24.92961],[93.9527,24.93009],[93.94989,24.93262],[93.95135,24.9385],[93.96117,24.93649],[93.96673,24.93701],[93.96824,24.93245],[93.9739,24.93083],[93.97414,24.92193],[93.97851,24.91715],[93.98411,24.92256],[93.98264,24.92373],[93.98211,24.9341],[93.97774,24.93759],[93.97755,24.94053],[93.96374,24.94625],[93.96232,24.94989],[93.95283,24.95142],[93.9569,24.95439],[93.95295,24.96116],[93.96089,24.956],[93.96353,24.95779],[93.96751,24.95672],[93.97018,24.95474],[93.97166,24.94991],[93.97574,24.94774],[93.99084,24.94333],[93.99141,24.95114],[93.99686,24.95611],[94.00401,24.95177],[94.01215,24.95118],[94.01499,24.95492],[94.01642,24.97284],[94.02072,24.99271],[94.01936,24.9976],[93.99673,25.00053],[94.00335,25.00347],[94.01331,25.00381],[94.0172,25.00684],[94.01797,25.01858],[94.01259,25.03255],[94.01676,25.04181],[94.02041,25.04596],[94.03047,25.0503],[94.02457,25.03475],[94.02909,25.02681],[94.02918,25.02049],[94.03184,25.01774],[94.04034,25.01915],[94.04554,25.01261],[94.04303,25.01127],[94.03817,25.01367],[94.03648,25.01079],[94.03074,25.01089],[94.02868,25.00383],[94.03386,25.00281],[94.04009,25.00423],[94.04701,24.99686],[94.03763,24.99523],[94.03241,24.98856],[94.03215,24.98647],[94.04131,24.98757],[94.04337,24.98207],[94.03574,24.9808],[94.0313,24.97283],[94.03082,24.96676],[94.04508,24.97342],[94.04373,24.95781],[94.0462,24.9556],[94.05786,24.9543],[94.06144,24.95152],[94.05875,24.94837],[94.05101,24.94463],[94.05021,24.94272],[94.05546,24.94099],[94.06516,24.94095],[94.0572,24.90149],[94.05896,24.8876],[94.06183,24.88297],[94.06694,24.88004],[94.07611,24.88097],[94.09183,24.88989],[94.0958,24.90385],[94.10991,24.90594],[94.11744,24.91678],[94.12592,24.9226],[94.12599,24.93664],[94.12908,24.93904],[94.13369,24.93819],[94.13616,24.92535],[94.14174,24.91873],[94.12425,24.90037],[94.11942,24.88576],[94.11106,24.87665],[94.10733,24.85346],[94.09694,24.85239],[94.0928,24.85021],[94.09647,24.83102],[94.08455,24.80683],[94.07491,24.75269],[94.07146,24.75143],[94.07243,24.74688],[94.07069,24.74283],[94.06618,24.74236],[94.06684,24.73902],[94.06262,24.74104],[94.06168,24.73877],[94.06402,24.73668],[94.06139,24.73473],[94.06123,24.7315],[94.06501,24.72936],[94.05981,24.72807],[94.0566,24.71879],[94.06601,24.72117],[94.06583,24.7188],[94.06202,24.71668],[94.06396,24.7163],[94.06349,24.71289],[94.0606,24.71146],[94.06314,24.70844],[94.05816,24.70312],[94.05951,24.69235],[94.06406,24.69506],[94.06674,24.70571],[94.07488,24.70749],[94.07903,24.6989],[94.08393,24.69315],[94.09123,24.69251],[94.10196,24.699],[94.10861,24.70054],[94.11802,24.70846],[94.11988,24.71697],[94.12616,24.72363],[94.12851,24.71017],[94.13212,24.70721],[94.12762,24.70536],[94.1257,24.70233],[94.12775,24.69884],[94.1238,24.69758],[94.12088,24.70077],[94.11623,24.70024],[94.11438,24.6967],[94.12776,24.69285],[94.12855,24.68928],[94.12303,24.68331],[94.11826,24.68169],[94.11968,24.67918],[94.116,24.67705],[94.1117,24.67947],[94.1065,24.67726],[94.09817,24.66942],[94.11179,24.65011],[94.10853,24.64954],[94.11181,24.63787],[94.11576,24.63199],[94.12237,24.62562],[94.1297,24.6215],[94.14799,24.61856],[94.155,24.62021],[94.16074,24.62363],[94.17116,24.63513],[94.17394,24.63574],[94.20022,24.62668],[94.19719,24.65487],[94.18888,24.66152],[94.18243,24.67136],[94.18775,24.68458],[94.18781,24.71348],[94.18547,24.72038],[94.17344,24.73516],[94.17905,24.74493],[94.18047,24.75233],[94.17729,24.75639],[94.18152,24.76088],[94.18077,24.76618],[94.17417,24.77665],[94.16584,24.78392],[94.15964,24.79773],[94.13934,24.80044],[94.13432,24.80475],[94.13844,24.80736],[94.13937,24.81123],[94.14492,24.81916],[94.1439,24.82925],[94.14703,24.82964],[94.14929,24.82754],[94.15071,24.82976],[94.14902,24.8325],[94.15127,24.83392],[94.15064,24.83599],[94.14656,24.83952],[94.14962,24.84088],[94.14969,24.84273],[94.14411,24.84826],[94.14489,24.85364],[94.14045,24.85969],[94.14446,24.86182],[94.14666,24.87201],[94.1438,24.87249],[94.14684,24.87576],[94.15082,24.87489],[94.15222,24.88427],[94.15843,24.88601],[94.15983,24.88782],[94.15985,24.89637],[94.16214,24.90044],[94.15988,24.90341],[94.16292,24.91298],[94.16158,24.91586],[94.16226,24.91742],[94.1678,24.9183],[94.16964,24.92145],[94.16902,24.93899],[94.17271,24.9391],[94.17295,24.94127],[94.16671,24.94502],[94.16316,24.95398],[94.16106,24.96532],[94.15085,24.99159],[94.14568,25.00097],[94.1494,25.02379],[94.1464,25.03546],[94.13792,25.04885],[94.12605,25.0533],[94.12408,25.06049],[94.11755,25.06963],[94.11885,25.07654],[94.12137,25.07944],[94.12053,25.08623],[94.12177,25.09136],[94.12754,25.10083],[94.12846,25.11258],[94.13167,25.11381],[94.13266,25.11814],[94.14557,25.12637],[94.14827,25.13352],[94.15319,25.13297],[94.15489,25.1366],[94.15868,25.13408],[94.16208,25.13629],[94.15942,25.14007],[94.16011,25.14377],[94.16421,25.14171],[94.16735,25.14811],[94.17112,25.15246],[94.17402,25.15304],[94.17306,25.15908],[94.17747,25.16129],[94.18139,25.16102],[94.17948,25.16717],[94.18167,25.16835],[94.17994,25.17367],[94.17494,25.18092],[94.17046,25.18408],[94.15218,25.18807],[94.13968,25.18965],[94.13238,25.18871],[94.117,25.18496],[94.09676,25.17716],[94.08957,25.17677],[94.07666,25.1827],[94.06761,25.18396],[94.06047,25.18746],[94.04333,25.18967],[94.03342,25.19387],[94.01204,25.19461],[94.0036,25.19752],[93.99934,25.20131],[93.99673,25.20769],[94.01048,25.24843],[94.01116,25.26236],[94.00126,25.26771],[93.99673,25.27452],[93.98351,25.27479],[93.97492,25.28245],[93.96612,25.30141],[93.96348,25.33604]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"713","area_level":"District","area_name":"Jiribam","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.22917,24.8552],[93.22344,24.85771],[93.21163,24.85885],[93.20979,24.85591],[93.20704,24.85593],[93.20356,24.85088],[93.19955,24.85515],[93.19483,24.85385],[93.19812,24.85301],[93.20126,24.84854],[93.20155,24.84206],[93.19997,24.84152],[93.19543,24.84433],[93.19231,24.84276],[93.19175,24.84002],[93.19611,24.83669],[93.19969,24.83948],[93.2006,24.83795],[93.19779,24.83416],[93.19327,24.83557],[93.19161,24.8344],[93.19165,24.83299],[93.19591,24.83091],[93.19006,24.81864],[93.19695,24.81136],[93.19112,24.80395],[93.17995,24.80307],[93.17935,24.79721],[93.17615,24.79385],[93.17359,24.796],[93.17357,24.80123],[93.17069,24.80185],[93.16109,24.79623],[93.15987,24.79338],[93.15424,24.78871],[93.14899,24.78746],[93.15117,24.79468],[93.14626,24.79744],[93.14175,24.79728],[93.1411,24.80126],[93.13471,24.80813],[93.13857,24.80999],[93.13483,24.81058],[93.13176,24.80521],[93.12703,24.80876],[93.11886,24.80766],[93.1179,24.80925],[93.12194,24.81662],[93.12137,24.81922],[93.10943,24.81148],[93.1114,24.80058],[93.10798,24.79487],[93.10839,24.79184],[93.10481,24.79128],[93.10611,24.78844],[93.1043,24.78631],[93.10522,24.78111],[93.10052,24.77942],[93.10028,24.7736],[93.10361,24.7672],[93.10238,24.75922],[93.09825,24.75437],[93.10112,24.74958],[93.09833,24.74675],[93.09988,24.74317],[93.1016,24.74277],[93.10272,24.74685],[93.10776,24.74144],[93.0971,24.73195],[93.09589,24.72421],[93.09065,24.72508],[93.09037,24.72139],[93.09325,24.71891],[93.09079,24.71818],[93.0901,24.71432],[93.08662,24.70953],[93.08292,24.70867],[93.07738,24.71296],[93.07355,24.70781],[93.08184,24.70216],[93.09126,24.68803],[93.09229,24.68548],[93.09011,24.67717],[93.10191,24.6807],[93.10415,24.67416],[93.09647,24.66426],[93.09537,24.65283],[93.08625,24.65273],[93.08319,24.64981],[93.08763,24.63699],[93.08728,24.62967],[93.08521,24.62817],[93.07872,24.62885],[93.07568,24.62454],[93.07714,24.62008],[93.08421,24.6136],[93.07394,24.60561],[93.07119,24.59994],[93.08027,24.59011],[93.09044,24.59241],[93.10064,24.58826],[93.10427,24.5845],[93.10308,24.58077],[93.11337,24.56974],[93.12605,24.56219],[93.15295,24.55965],[93.16291,24.55587],[93.18784,24.551],[93.19498,24.55981],[93.19355,24.56483],[93.19069,24.56735],[93.19354,24.57112],[93.20212,24.5661],[93.20785,24.56736],[93.20213,24.57238],[93.20498,24.57489],[93.20069,24.5774],[93.19925,24.58872],[93.20926,24.5837],[93.21355,24.58748],[93.2164,24.60004],[93.21355,24.60633],[93.21497,24.61638],[93.20781,24.62266],[93.20924,24.62643],[93.21783,24.62644],[93.22069,24.63273],[93.22069,24.63776],[93.2121,24.64529],[93.21209,24.65157],[93.20779,24.65911],[93.20779,24.66288],[93.21065,24.6654],[93.21495,24.66289],[93.21781,24.66415],[93.2178,24.67169],[93.20349,24.66791],[93.20634,24.68551],[93.21493,24.69808],[93.2135,24.69683],[93.20491,24.69933],[93.20347,24.7031],[93.18916,24.7056],[93.1777,24.70558],[93.16194,24.70933],[93.14476,24.70931],[93.1419,24.71182],[93.14619,24.72565],[93.15475,24.74325],[93.16905,24.76213],[93.1762,24.78351],[93.18623,24.78477],[93.18623,24.78226],[93.1891,24.7785],[93.19626,24.77725],[93.20199,24.77977],[93.21344,24.79109],[93.2206,24.79486],[93.22204,24.80618],[93.23921,24.84138],[93.24208,24.85144],[93.24065,24.85396],[93.22917,24.8552]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"714","area_level":"District","area_name":"Noney","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.40404,24.82508],[93.3983,24.82382],[93.39686,24.8213],[93.3983,24.82131],[93.39686,24.81879],[93.3983,24.81502],[93.39542,24.80874],[93.3897,24.81503],[93.3854,24.81628],[93.3854,24.81503],[93.37824,24.8188],[93.36964,24.82005],[93.36246,24.8188],[93.3596,24.81629],[93.35816,24.80498],[93.35529,24.79743],[93.35958,24.7924],[93.35241,24.78235],[93.35099,24.77606],[93.35527,24.77103],[93.3567,24.76601],[93.35527,24.7635],[93.3481,24.75973],[93.3395,24.75847],[93.33235,24.76601],[93.32519,24.7635],[93.33377,24.74967],[93.32374,24.74087],[93.31801,24.73333],[93.31945,24.72956],[93.33233,24.72705],[93.33663,24.72454],[93.33376,24.71951],[93.32374,24.71322],[93.31084,24.69939],[93.30082,24.70568],[93.2951,24.70567],[93.29653,24.68556],[93.29367,24.67928],[93.28221,24.66922],[93.27363,24.6667],[93.25645,24.66921],[93.23354,24.67799],[93.22925,24.68049],[93.22639,24.68552],[93.22639,24.69684],[93.22494,24.70186],[93.22208,24.70437],[93.21635,24.70688],[93.21062,24.70687],[93.20347,24.7031],[93.20491,24.69933],[93.2135,24.69683],[93.21493,24.69808],[93.20634,24.68551],[93.20349,24.66791],[93.2178,24.67169],[93.21781,24.66415],[93.21495,24.66289],[93.21065,24.6654],[93.20779,24.66288],[93.20779,24.65911],[93.21209,24.65157],[93.2121,24.64529],[93.22069,24.63776],[93.22069,24.63273],[93.21783,24.62644],[93.20924,24.62643],[93.20781,24.62266],[93.21497,24.61638],[93.21355,24.60633],[93.2164,24.60004],[93.21213,24.58496],[93.20926,24.5837],[93.19925,24.58872],[93.20069,24.5774],[93.20498,24.57489],[93.20213,24.57238],[93.20785,24.56736],[93.20212,24.5661],[93.19354,24.57112],[93.19069,24.56735],[93.19355,24.56483],[93.19498,24.55981],[93.18784,24.551],[93.18069,24.54596],[93.17499,24.53214],[93.16928,24.52836],[93.17213,24.52083],[93.17072,24.51579],[93.175,24.5158],[93.18072,24.51329],[93.18215,24.52209],[93.19072,24.52084],[93.19501,24.51456],[93.2036,24.51332],[93.21075,24.49824],[93.21933,24.49448],[93.23218,24.51082],[93.24361,24.51335],[93.25077,24.50833],[93.26363,24.50959],[93.26363,24.51713],[93.26648,24.5209],[93.25791,24.52341],[93.26506,24.53599],[93.27077,24.54102],[93.26791,24.54478],[93.27363,24.5473],[93.28221,24.55987],[93.27793,24.56364],[93.28508,24.56615],[93.30509,24.56239],[93.32369,24.56617],[93.3337,24.56617],[93.33799,24.57246],[93.34514,24.57497],[93.38661,24.56491],[93.39234,24.57496],[93.39805,24.57245],[93.40377,24.56365],[93.40948,24.55987],[93.42663,24.55484],[93.4452,24.53849],[93.45093,24.54477],[93.4624,24.56738],[93.46813,24.56989],[93.47528,24.56988],[93.48099,24.56611],[93.48954,24.55102],[93.49527,24.55604],[93.49813,24.55478],[93.50958,24.56482],[93.52959,24.556],[93.53388,24.55725],[93.53391,24.56856],[93.53677,24.57107],[93.53965,24.57861],[93.54394,24.57735],[93.54681,24.58112],[93.55539,24.5811],[93.55683,24.58487],[93.56829,24.59113],[93.57256,24.58484],[93.58397,24.57477],[93.58682,24.56848],[93.59254,24.56596],[93.5954,24.56973],[93.60398,24.57097],[93.60829,24.57599],[93.6126,24.58226],[93.6198,24.6011],[93.62268,24.60361],[93.63126,24.60485],[93.64696,24.59099],[93.64982,24.59476],[93.65128,24.6023],[93.65845,24.60731],[93.67704,24.60475],[93.68564,24.60976],[93.6971,24.61219],[93.68394,24.70757],[93.66191,24.79331],[93.62895,24.79339],[93.61895,24.80346],[93.60755,24.82736],[93.57317,24.83245],[93.56886,24.82994],[93.5674,24.8224],[93.5717,24.82114],[93.5674,24.81863],[93.57026,24.81486],[93.56739,24.81361],[93.5631,24.81612],[93.55448,24.81111],[93.55735,24.80984],[93.55591,24.80859],[93.55161,24.80734],[93.54446,24.81112],[93.53586,24.81113],[93.53157,24.81491],[93.52727,24.81491],[93.52441,24.81744],[93.51438,24.82121],[93.50292,24.82374],[93.5015,24.82752],[93.50293,24.83002],[93.49865,24.83758],[93.50296,24.84259],[93.49867,24.84511],[93.47715,24.84011],[93.45423,24.84641],[93.44419,24.84516],[93.43558,24.83763],[93.40404,24.82508]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"715","area_level":"District","area_name":"Pherzawl","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.38946,24.55862],[93.38661,24.56491],[93.34514,24.57497],[93.33799,24.57246],[93.3337,24.56617],[93.32369,24.56617],[93.30509,24.56239],[93.28508,24.56615],[93.27793,24.56364],[93.28221,24.55987],[93.27363,24.5473],[93.26791,24.54478],[93.27077,24.54102],[93.26506,24.53599],[93.25791,24.52341],[93.26648,24.5209],[93.26363,24.51713],[93.26363,24.50959],[93.25077,24.50833],[93.24361,24.51335],[93.23218,24.51082],[93.21933,24.49448],[93.21075,24.49824],[93.2036,24.51332],[93.19501,24.51456],[93.19072,24.52084],[93.18215,24.52209],[93.18072,24.51329],[93.175,24.5158],[93.17072,24.51579],[93.17213,24.52083],[93.16928,24.52836],[93.17499,24.53214],[93.18069,24.54596],[93.18784,24.551],[93.16291,24.55587],[93.15295,24.55965],[93.12605,24.56219],[93.11337,24.56974],[93.10292,24.58103],[93.09321,24.5815],[93.08916,24.57337],[93.08372,24.57102],[93.07616,24.575],[93.06216,24.57624],[93.05886,24.57484],[93.05877,24.57188],[93.06917,24.56188],[93.07081,24.55805],[93.06462,24.54679],[93.0617,24.54731],[93.06052,24.55358],[93.05701,24.55441],[93.04999,24.54421],[93.04719,24.52857],[93.05055,24.5232],[93.05013,24.51943],[93.04131,24.51557],[93.03874,24.51287],[93.03721,24.50939],[93.04273,24.50635],[93.04277,24.50479],[93.03256,24.4953],[93.04024,24.48631],[93.04637,24.47357],[93.04556,24.46328],[93.04366,24.46177],[93.03811,24.46193],[93.03572,24.45976],[93.03642,24.44222],[93.03292,24.42875],[93.03728,24.42362],[93.04265,24.42055],[93.04256,24.41491],[93.04164,24.41301],[93.03521,24.40959],[93.02344,24.40675],[93.01617,24.40871],[93.01507,24.41553],[93.01195,24.41672],[93.00885,24.41168],[93.00598,24.41065],[93.00578,24.40931],[93.00747,24.40973],[93.00675,24.40775],[93.004,24.40706],[92.99831,24.39976],[93.02035,24.38785],[93.01309,24.37735],[93.01811,24.37161],[93.01531,24.35625],[93.01755,24.34422],[93.03932,24.34074],[93.03116,24.31577],[93.01415,24.29056],[93.00701,24.2855],[93.00415,24.27791],[93.00984,24.26909],[93.00266,24.26022],[93.00261,24.25139],[93.0139,24.23378],[93.02245,24.23002],[93.01528,24.22626],[93.01527,24.2225],[93.01954,24.21497],[93.01812,24.20746],[93.01385,24.20497],[93.01246,24.19745],[93.00822,24.19495],[92.99889,24.19497],[92.99894,24.19176],[93.00673,24.17965],[92.99915,24.1715],[93.00127,24.15806],[92.98892,24.15066],[92.98696,24.14781],[92.9887,24.13786],[92.98522,24.12927],[92.9819,24.12637],[92.96943,24.1214],[92.9722,24.11235],[92.9922,24.1142],[93.00544,24.10739],[93.00987,24.10197],[93.01724,24.09887],[93.02305,24.10105],[93.03044,24.09664],[93.03342,24.09257],[93.04939,24.08805],[93.06087,24.09161],[93.07516,24.10027],[93.08515,24.08133],[93.09795,24.07126],[93.09651,24.05365],[93.09936,24.04989],[93.09509,24.04611],[93.09651,24.04234],[93.10646,24.04739],[93.10788,24.05242],[93.11498,24.0537],[93.1164,24.05747],[93.12494,24.06128],[93.13064,24.0701],[93.13065,24.07639],[93.13777,24.08395],[93.14347,24.08524],[93.15401,24.08095],[93.15686,24.07468],[93.16539,24.07217],[93.16251,24.05834],[93.16534,24.05206],[93.17101,24.0508],[93.18947,24.05333],[93.19372,24.04956],[93.21217,24.04706],[93.2207,24.07095],[93.21787,24.07849],[93.21929,24.081],[93.22214,24.08351],[93.23207,24.081],[93.23776,24.08352],[93.24345,24.08227],[93.25911,24.06971],[93.25911,24.06469],[93.26199,24.05715],[93.2577,24.05463],[93.24775,24.03075],[93.25207,24.02574],[93.25064,24.02071],[93.26929,24.0308],[93.27212,24.03708],[93.28071,24.04338],[93.28353,24.0484],[93.29359,24.04841],[93.30785,24.05093],[93.3258,24.05035],[93.32796,24.05347],[93.33212,24.05313],[93.33611,24.06018],[93.33852,24.06155],[93.33812,24.06323],[93.33604,24.0634],[93.33716,24.06754],[93.33322,24.07013],[93.33445,24.07431],[93.3309,24.07299],[93.32828,24.07738],[93.32855,24.08115],[93.33038,24.08084],[93.33127,24.08242],[93.33085,24.08536],[93.33725,24.0908],[93.34453,24.09174],[93.34675,24.09009],[93.34716,24.08757],[93.35115,24.09081],[93.35381,24.09053],[93.34966,24.09518],[93.3468,24.09445],[93.34523,24.09705],[93.34287,24.09723],[93.34194,24.10197],[93.34513,24.10369],[93.34703,24.10292],[93.34809,24.10476],[93.34996,24.102],[93.34844,24.10124],[93.35078,24.10019],[93.34829,24.09889],[93.35449,24.09889],[93.35451,24.09604],[93.35939,24.09394],[93.35809,24.09104],[93.36484,24.09198],[93.37178,24.11248],[93.37601,24.1175],[93.3831,24.12127],[93.39163,24.13257],[93.3903,24.15771],[93.39175,24.16651],[93.40472,24.19919],[93.41616,24.20547],[93.41614,24.20045],[93.41899,24.19793],[93.43191,24.22054],[93.4362,24.22306],[93.43765,24.23312],[93.4434,24.24569],[93.46193,24.26199],[93.45909,24.26827],[93.4648,24.26827],[93.47052,24.27706],[93.4691,24.27958],[93.47482,24.28963],[93.47196,24.29214],[93.47768,24.29591],[93.47626,24.29717],[93.47911,24.30094],[93.4777,24.30974],[93.48199,24.31099],[93.48199,24.3135],[93.48486,24.31727],[93.48486,24.32229],[93.48772,24.3248],[93.48487,24.32606],[93.48631,24.33109],[93.4906,24.33485],[93.48774,24.33862],[93.48919,24.34491],[93.49633,24.35245],[93.49635,24.3625],[93.48636,24.36627],[93.47355,24.38262],[93.46069,24.38515],[93.43785,24.38391],[93.41358,24.39021],[93.4093,24.39524],[93.3993,24.39524],[93.39646,24.39901],[93.39217,24.40027],[93.38789,24.39902],[93.37931,24.39148],[93.37646,24.39399],[93.37645,24.3965],[93.37074,24.39525],[93.37075,24.40153],[93.36504,24.40656],[93.37505,24.41536],[93.37363,24.42918],[93.37649,24.43546],[93.3765,24.44426],[93.36792,24.44552],[93.36793,24.4518],[93.37366,24.45682],[93.37508,24.46311],[93.38223,24.4694],[93.37938,24.47694],[93.38367,24.47945],[93.38081,24.48322],[93.3851,24.48573],[93.38225,24.48951],[93.38511,24.49704],[93.38797,24.50081],[93.39941,24.50583],[93.40657,24.51714],[93.40229,24.52092],[93.39229,24.51966],[93.388,24.52469],[93.38371,24.52344],[93.38085,24.52846],[93.38946,24.55862]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"716","area_level":"District","area_name":"Tengnoupal","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.21252,24.62227],[94.17394,24.63574],[94.17116,24.63513],[94.16074,24.62363],[94.155,24.62021],[94.14704,24.61871],[94.14872,24.6116],[94.14824,24.60375],[94.13853,24.60154],[94.12027,24.60567],[94.11704,24.60281],[94.11829,24.59855],[94.1161,24.59142],[94.1056,24.57698],[94.09908,24.55992],[94.09431,24.55397],[94.08887,24.55241],[94.07815,24.56247],[94.07091,24.56364],[94.06913,24.55486],[94.07243,24.5413],[94.08613,24.51812],[94.08101,24.51586],[94.06406,24.51636],[94.06211,24.52187],[94.05475,24.5129],[94.05124,24.51742],[94.05068,24.52272],[94.05589,24.52803],[94.05561,24.53074],[94.05092,24.52879],[94.03764,24.53836],[94.03781,24.52347],[94.03315,24.50246],[94.04773,24.47033],[94.03517,24.45537],[94.01899,24.44436],[94.0222,24.43788],[94.04255,24.41577],[94.05446,24.41155],[94.05914,24.40821],[94.06044,24.40472],[94.08216,24.38604],[94.09235,24.38353],[94.11067,24.38724],[94.11924,24.37801],[94.1215,24.36109],[94.11728,24.34599],[94.13208,24.31285],[94.14384,24.29762],[94.15296,24.29405],[94.16845,24.28042],[94.17703,24.27037],[94.17363,24.24945],[94.17128,24.21724],[94.16451,24.20096],[94.16378,24.19357],[94.16856,24.17967],[94.17097,24.17688],[94.16938,24.15737],[94.18267,24.14289],[94.19085,24.13833],[94.19151,24.13292],[94.21065,24.12481],[94.23573,24.11743],[94.25408,24.11411],[94.25519,24.14064],[94.26173,24.16711],[94.27938,24.17591],[94.28319,24.17935],[94.28291,24.20343],[94.2842,24.21236],[94.29271,24.23602],[94.30379,24.24017],[94.31084,24.24594],[94.31532,24.25268],[94.31947,24.26376],[94.3239,24.27798],[94.32486,24.29096],[94.3236,24.31043],[94.32716,24.32766],[94.32854,24.32972],[94.33516,24.33235],[94.34364,24.33225],[94.354,24.33447],[94.35651,24.34516],[94.38011,24.37464],[94.38057,24.37821],[94.37405,24.38738],[94.36707,24.39298],[94.36713,24.39462],[94.37018,24.39752],[94.39763,24.40729],[94.40869,24.43715],[94.40216,24.44587],[94.40131,24.44948],[94.40308,24.47529],[94.40688,24.48072],[94.40093,24.48628],[94.39623,24.48726],[94.39298,24.48474],[94.38106,24.49746],[94.37522,24.49844],[94.37909,24.50165],[94.37938,24.50436],[94.37586,24.50485],[94.37651,24.50786],[94.37262,24.50908],[94.37341,24.51122],[94.37675,24.50964],[94.37677,24.51483],[94.36812,24.51342],[94.37085,24.51633],[94.3697,24.51845],[94.36329,24.51918],[94.36089,24.52117],[94.36406,24.52369],[94.36369,24.53003],[94.36954,24.53627],[94.36954,24.54209],[94.37226,24.54732],[94.37073,24.5503],[94.36079,24.55105],[94.35861,24.54929],[94.35348,24.549],[94.35111,24.55312],[94.34772,24.55326],[94.33319,24.54923],[94.33015,24.55242],[94.33332,24.55534],[94.33081,24.56217],[94.334,24.56383],[94.32789,24.56566],[94.32609,24.57013],[94.3106,24.57411],[94.30937,24.57818],[94.30461,24.5832],[94.29338,24.58838],[94.28226,24.60162],[94.26805,24.59643],[94.2514,24.61607],[94.2167,24.61945],[94.21252,24.62227]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"717","area_level":"District","area_name":"Kamjong","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.72677,24.99978],[94.72658,25.0024],[94.72911,25.00566],[94.72772,25.01017],[94.73858,25.02356],[94.73765,25.02765],[94.74416,25.03727],[94.74212,25.03884],[94.74255,25.045],[94.74423,25.04721],[94.74198,25.05215],[94.74469,25.06003],[94.74337,25.06268],[94.73786,25.06543],[94.74489,25.08064],[94.73966,25.09231],[94.7408,25.10361],[94.73969,25.10685],[94.7365,25.11118],[94.7299,25.10932],[94.66827,25.10965],[94.61111,25.10027],[94.58453,25.08879],[94.57476,25.08072],[94.56124,25.06347],[94.55141,25.05419],[94.52561,25.03646],[94.51451,25.0319],[94.49113,25.0295],[94.46863,25.02416],[94.462,25.02467],[94.454,25.03266],[94.44845,25.03357],[94.42985,25.03261],[94.41763,25.02745],[94.38011,25.02926],[94.36801,25.02676],[94.35819,25.01861],[94.3449,25.00133],[94.339,24.98806],[94.33043,24.98612],[94.31404,24.976],[94.29116,24.97185],[94.26398,24.97221],[94.23881,24.96261],[94.22781,24.96104],[94.22805,24.95654],[94.19951,24.94382],[94.19038,24.94705],[94.1802,24.94503],[94.17295,24.94127],[94.17271,24.9391],[94.16902,24.93899],[94.16964,24.92145],[94.1678,24.9183],[94.16226,24.91742],[94.16158,24.91586],[94.16292,24.91298],[94.15988,24.90341],[94.16214,24.90044],[94.15985,24.89637],[94.15983,24.88782],[94.15843,24.88601],[94.15222,24.88427],[94.15082,24.87489],[94.14482,24.8747],[94.1438,24.87249],[94.14666,24.87201],[94.14446,24.86182],[94.14045,24.85969],[94.14489,24.85364],[94.14411,24.84826],[94.14969,24.84273],[94.14962,24.84088],[94.14656,24.83952],[94.15064,24.83599],[94.15127,24.83392],[94.14902,24.8325],[94.15071,24.82976],[94.14929,24.82754],[94.14703,24.82964],[94.1439,24.82925],[94.14492,24.81916],[94.13937,24.81123],[94.13844,24.80736],[94.13432,24.80475],[94.13934,24.80044],[94.15964,24.79773],[94.16584,24.78392],[94.17417,24.77665],[94.18077,24.76618],[94.18152,24.76088],[94.17729,24.75639],[94.18047,24.75233],[94.17905,24.74493],[94.17344,24.73516],[94.18547,24.72038],[94.18781,24.71348],[94.18775,24.68458],[94.18243,24.67136],[94.18888,24.66152],[94.19719,24.65487],[94.20022,24.62668],[94.2167,24.61945],[94.2514,24.61607],[94.26805,24.59643],[94.28226,24.60162],[94.29338,24.58838],[94.30461,24.5832],[94.30937,24.57818],[94.3106,24.57411],[94.32609,24.57013],[94.32789,24.56566],[94.334,24.56383],[94.33081,24.56217],[94.33332,24.55534],[94.33015,24.55242],[94.33319,24.54923],[94.34772,24.55326],[94.35111,24.55312],[94.35348,24.549],[94.35861,24.54929],[94.36079,24.55105],[94.37073,24.5503],[94.37226,24.54732],[94.36954,24.54209],[94.36954,24.53627],[94.36369,24.53003],[94.36406,24.52369],[94.36089,24.52117],[94.36329,24.51918],[94.3697,24.51845],[94.37085,24.51633],[94.36812,24.51342],[94.37677,24.51483],[94.37675,24.50964],[94.37341,24.51122],[94.37262,24.50908],[94.37651,24.50786],[94.37586,24.50485],[94.37938,24.50436],[94.37909,24.50165],[94.37522,24.49844],[94.38106,24.49746],[94.39298,24.48474],[94.39623,24.48726],[94.40093,24.48628],[94.40688,24.48072],[94.40609,24.47835],[94.42074,24.48028],[94.43867,24.51007],[94.45725,24.55241],[94.46658,24.56153],[94.47935,24.56637],[94.49225,24.57463],[94.52921,24.61802],[94.54446,24.6449],[94.55007,24.65893],[94.5531,24.68276],[94.55272,24.68994],[94.54827,24.70638],[94.54966,24.71277],[94.55531,24.71483],[94.5679,24.71458],[94.57275,24.71293],[94.57943,24.72371],[94.5782,24.71172],[94.58512,24.70542],[94.59152,24.70951],[94.60163,24.70948],[94.60294,24.71215],[94.60512,24.71231],[94.60735,24.71805],[94.60621,24.72156],[94.60945,24.72483],[94.60906,24.72824],[94.61107,24.72882],[94.61064,24.73319],[94.61321,24.737],[94.61267,24.74018],[94.62936,24.75697],[94.62912,24.76128],[94.62696,24.76397],[94.62777,24.76513],[94.62447,24.76778],[94.62466,24.76986],[94.6225,24.77121],[94.62194,24.77538],[94.61861,24.7798],[94.61902,24.78463],[94.62213,24.78842],[94.62593,24.79954],[94.62966,24.80297],[94.6291,24.81691],[94.63264,24.8234],[94.63366,24.83553],[94.63186,24.83946],[94.64519,24.84922],[94.65045,24.85522],[94.64853,24.86062],[94.65295,24.86335],[94.6542,24.8677],[94.65729,24.8711],[94.65983,24.87233],[94.66297,24.87064],[94.66561,24.87407],[94.67399,24.87509],[94.67555,24.8802],[94.67951,24.88434],[94.68343,24.88726],[94.68795,24.88806],[94.68685,24.89153],[94.69077,24.89909],[94.69043,24.90317],[94.69323,24.90585],[94.6937,24.9121],[94.69658,24.91813],[94.70095,24.92274],[94.70193,24.92938],[94.71024,24.9289],[94.7134,24.93437],[94.70744,24.9422],[94.70603,24.94975],[94.70184,24.95277],[94.70164,24.95585],[94.69665,24.95955],[94.69659,24.96847],[94.70105,24.97449],[94.70265,24.98246],[94.7059,24.98635],[94.72677,24.99978]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"718","area_level":"District","area_name":"Kamle","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.95458,27.97953],[93.95011,27.98084],[93.94733,27.9852],[93.94465,27.98654],[93.93115,27.97672],[93.9254,27.97649],[93.91342,27.97199],[93.9082,27.96689],[93.907,27.96186],[93.89598,27.95364],[93.89302,27.94791],[93.88904,27.94547],[93.88641,27.94498],[93.88481,27.94663],[93.87621,27.94315],[93.87378,27.93771],[93.87181,27.93666],[93.85358,27.93582],[93.84262,27.93287],[93.89024,27.82007],[93.9078,27.79716],[93.89049,27.74313],[93.9197,27.72339],[93.92565,27.65915],[93.94706,27.6294],[94.01606,27.61156],[94.05323,27.60799],[94.04914,27.58265],[94.10625,27.55409],[94.10625,27.5441],[94.07198,27.51555],[93.94181,27.51131],[93.9477,27.49555],[93.95903,27.49711],[93.97338,27.50275],[93.98006,27.50297],[94.01047,27.50163],[94.04916,27.49531],[94.08787,27.49516],[94.16973,27.54291],[94.19187,27.54403],[94.20703,27.53532],[94.20246,27.49447],[94.20759,27.49261],[94.21094,27.494],[94.21485,27.50165],[94.22082,27.50528],[94.26826,27.52084],[94.25749,27.53703],[94.25687,27.54171],[94.2594,27.54905],[94.2587,27.55546],[94.24672,27.56947],[94.23481,27.56916],[94.22495,27.57409],[94.22283,27.5882],[94.22664,27.59774],[94.21224,27.60087],[94.20992,27.60391],[94.20948,27.60872],[94.23115,27.63775],[94.26692,27.66578],[94.30238,27.68471],[94.31131,27.69147],[94.32204,27.70304],[94.33409,27.70906],[94.35166,27.7143],[94.35547,27.71921],[94.35604,27.72877],[94.34915,27.73022],[94.33863,27.72515],[94.31419,27.73902],[94.31007,27.74525],[94.31356,27.76873],[94.31714,27.77397],[94.30537,27.78361],[94.29406,27.79042],[94.25751,27.80773],[94.20376,27.81227],[94.19344,27.81139],[94.1921,27.81526],[94.19189,27.83652],[94.17044,27.84539],[94.16015,27.84375],[94.15397,27.85189],[94.15289,27.85812],[94.14911,27.86596],[94.14148,27.86623],[94.1286,27.85782],[94.12203,27.86179],[94.11258,27.85995],[94.10235,27.86102],[94.09649,27.85978],[94.08654,27.85311],[94.07418,27.8493],[94.06015,27.86941],[94.06051,27.87965],[94.05615,27.9062],[94.04768,27.91186],[94.04779,27.9145],[94.05707,27.92215],[94.0682,27.9391],[94.05719,27.94717],[94.0493,27.95655],[94.03129,27.96116],[94.01187,27.95805],[93.98875,27.976],[93.97126,27.97831],[93.96206,27.98189],[93.95458,27.97953]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"719","area_level":"District","area_name":"Lower Siang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[95.06737,28.02345],[95.03456,28.03314],[94.96223,28.04134],[94.9294,28.05044],[94.93018,28.04937],[94.92349,28.04168],[94.91188,28.03468],[94.90566,28.02884],[94.90387,28.02594],[94.90863,28.01982],[94.8999,28.00979],[94.89453,28.00801],[94.89215,28.00073],[94.88927,27.99907],[94.88074,27.99999],[94.8866,27.99341],[94.89976,27.97158],[94.89593,27.96114],[94.89334,27.95877],[94.89422,27.95378],[94.88561,27.95078],[94.88379,27.94278],[94.87334,27.93467],[94.87144,27.92773],[94.86652,27.91988],[94.86602,27.91492],[94.87183,27.90668],[94.87764,27.90302],[94.87708,27.89572],[94.88396,27.89494],[94.8877,27.88707],[94.8952,27.88513],[94.89808,27.87916],[94.90169,27.87763],[94.90108,27.87464],[94.90622,27.86672],[94.90465,27.8649],[94.9058,27.86106],[94.91035,27.85954],[94.92368,27.8624],[94.92622,27.85922],[94.92295,27.85164],[94.92048,27.85199],[94.91364,27.8458],[94.90179,27.84099],[94.90151,27.83814],[94.90682,27.83538],[94.89841,27.82806],[94.89987,27.82547],[94.89919,27.82255],[94.83876,27.80366],[94.80902,27.78581],[94.76881,27.77391],[94.74596,27.77296],[94.72407,27.79485],[94.71741,27.82507],[94.68529,27.84054],[94.64603,27.85006],[94.63175,27.86671],[94.59483,27.87081],[94.58912,27.86162],[94.57719,27.85602],[94.55923,27.85615],[94.53359,27.84992],[94.50377,27.83628],[94.48316,27.83612],[94.47568,27.83325],[94.46948,27.83282],[94.46124,27.82506],[94.4483,27.82518],[94.44353,27.82294],[94.44237,27.81395],[94.44,27.81102],[94.41804,27.80639],[94.40235,27.79253],[94.38492,27.79421],[94.37277,27.78514],[94.36475,27.77691],[94.3467,27.76408],[94.33254,27.75778],[94.31714,27.77397],[94.31356,27.76873],[94.31007,27.74525],[94.31419,27.73902],[94.33863,27.72515],[94.34915,27.73022],[94.35604,27.72877],[94.35547,27.71921],[94.35166,27.7143],[94.33409,27.70906],[94.32204,27.70304],[94.31131,27.69147],[94.30238,27.68471],[94.26692,27.66578],[94.23115,27.63775],[94.21044,27.60842],[94.21644,27.60709],[94.21844,27.60801],[94.22855,27.61839],[94.23705,27.63236],[94.24847,27.634],[94.25146,27.63763],[94.25441,27.63565],[94.26171,27.63587],[94.26741,27.62949],[94.26558,27.62421],[94.2631,27.62426],[94.26058,27.62187],[94.26094,27.6181],[94.25468,27.61579],[94.25426,27.61423],[94.2564,27.61051],[94.27247,27.60294],[94.27465,27.59983],[94.27381,27.59497],[94.27764,27.58933],[94.2883,27.58926],[94.28985,27.59616],[94.29826,27.60193],[94.30182,27.60102],[94.30926,27.59078],[94.32278,27.58864],[94.32432,27.58462],[94.3336,27.58656],[94.33697,27.57919],[94.33824,27.58122],[94.34492,27.58213],[94.35068,27.57711],[94.35914,27.57693],[94.3668,27.57427],[94.36989,27.57475],[94.3765,27.58237],[94.3819,27.5816],[94.38859,27.58479],[94.39142,27.58864],[94.40161,27.58498],[94.41846,27.59752],[94.43168,27.60033],[94.43171,27.59162],[94.43333,27.58842],[94.4396,27.58122],[94.45133,27.57176],[94.45494,27.5666],[94.45644,27.55984],[94.46173,27.55524],[94.46791,27.56115],[94.4778,27.57614],[94.49896,27.57217],[94.50141,27.57399],[94.50247,27.57741],[94.51385,27.58011],[94.52151,27.58455],[94.52201,27.59142],[94.52958,27.59139],[94.53214,27.59457],[94.53596,27.59253],[94.54459,27.60103],[94.55532,27.60075],[94.56222,27.6049],[94.56857,27.60234],[94.57409,27.60381],[94.57685,27.60589],[94.57974,27.6123],[94.58755,27.61846],[94.59559,27.61968],[94.60001,27.61817],[94.60289,27.62123],[94.60659,27.61862],[94.61438,27.62397],[94.62087,27.62495],[94.62347,27.62781],[94.62846,27.62454],[94.63319,27.62416],[94.64137,27.62944],[94.64668,27.63807],[94.6574,27.64178],[94.66265,27.64533],[94.67275,27.64722],[94.67911,27.64515],[94.68268,27.64589],[94.68665,27.65099],[94.6838,27.66017],[94.68791,27.66514],[94.6909,27.66174],[94.70049,27.66145],[94.70904,27.65658],[94.71602,27.65753],[94.72051,27.66692],[94.72514,27.669],[94.72897,27.66453],[94.73573,27.66329],[94.74137,27.65989],[94.75431,27.66055],[94.76093,27.66504],[94.76916,27.67952],[94.77866,27.6797],[94.78411,27.6839],[94.78905,27.68518],[94.79187,27.68809],[94.79373,27.69518],[94.79698,27.69563],[94.80828,27.69198],[94.82078,27.69208],[94.84097,27.70061],[94.84783,27.70557],[94.84841,27.71711],[94.85235,27.7276],[95.1364,27.81565],[95.12283,27.84821],[95.11522,27.85678],[95.12069,27.90349],[95.08577,27.9099],[95.07185,27.91597],[95.07527,27.94006],[95.08812,27.95196],[95.08907,27.96766],[95.08574,27.98099],[95.07385,27.99051],[95.06737,28.02345]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"72","area_level":"District","area_name":"Rewari","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.43919,28.11075],[76.44028,28.11501],[76.44137,28.11686],[76.44121,28.11895],[76.44074,28.12078],[76.43623,28.12683],[76.4357,28.12788],[76.43571,28.12929],[76.43326,28.13034],[76.4332,28.13222],[76.43295,28.13224],[76.43294,28.13242],[76.4336,28.13641],[76.43128,28.13792],[76.42928,28.13851],[76.4289,28.1384],[76.42791,28.1346],[76.42733,28.1335],[76.42693,28.13209],[76.42579,28.12984],[76.42418,28.12725],[76.42316,28.12611],[76.42257,28.12488],[76.42181,28.12252],[76.42263,28.12223],[76.42374,28.12081],[76.42333,28.1197],[76.42352,28.11694],[76.42289,28.115],[76.42285,28.11432],[76.42849,28.11075],[76.43047,28.10974],[76.43219,28.10974],[76.43453,28.10908],[76.43538,28.11012],[76.43964,28.11012],[76.43919,28.11075]]],[[[76.31462,28.46989],[76.29308,28.46876],[76.28963,28.45843],[76.29066,28.45391],[76.28865,28.44687],[76.29008,28.44651],[76.2906,28.43992],[76.28492,28.43156],[76.28794,28.42855],[76.28014,28.40563],[76.28916,28.40261],[76.30188,28.40151],[76.29912,28.39797],[76.29825,28.39183],[76.29709,28.39175],[76.2984,28.38687],[76.29763,28.38275],[76.30487,28.37654],[76.32788,28.37177],[76.32871,28.36414],[76.33444,28.36273],[76.3356,28.36447],[76.35095,28.36698],[76.35499,28.36562],[76.35736,28.3562],[76.35675,28.34351],[76.36786,28.33543],[76.36768,28.32341],[76.35789,28.32062],[76.35565,28.31017],[76.35063,28.31118],[76.34888,28.30802],[76.34714,28.30865],[76.34732,28.2963],[76.34944,28.29564],[76.34931,28.29242],[76.35179,28.29017],[76.35262,28.28569],[76.35161,28.28069],[76.34627,28.27285],[76.3431,28.27296],[76.34233,28.26687],[76.3472,28.26535],[76.34753,28.26296],[76.3504,28.2606],[76.34912,28.25617],[76.34649,28.25415],[76.34852,28.24891],[76.34169,28.22427],[76.3407,28.22272],[76.32712,28.22379],[76.32072,28.20633],[76.31514,28.20486],[76.314,28.20305],[76.30525,28.20349],[76.30368,28.19326],[76.3099,28.19093],[76.3091,28.18712],[76.31224,28.18526],[76.31163,28.17807],[76.33318,28.16982],[76.33453,28.17236],[76.34417,28.16994],[76.35785,28.16106],[76.35418,28.1548],[76.35824,28.15492],[76.35657,28.14373],[76.36632,28.13681],[76.38243,28.13313],[76.38473,28.13671],[76.39041,28.13415],[76.39362,28.13749],[76.39568,28.13715],[76.40083,28.14502],[76.43262,28.14092],[76.4374,28.14871],[76.45995,28.14747],[76.46301,28.14811],[76.46634,28.15151],[76.47574,28.14858],[76.47557,28.14345],[76.47131,28.1385],[76.47205,28.13508],[76.47675,28.13205],[76.47638,28.13084],[76.48187,28.12837],[76.48341,28.13081],[76.49193,28.12985],[76.48708,28.11941],[76.49628,28.12007],[76.50268,28.11871],[76.50052,28.11457],[76.49905,28.1002],[76.48002,28.10052],[76.47667,28.10553],[76.47725,28.10797],[76.46369,28.10916],[76.45705,28.10529],[76.45204,28.09122],[76.44784,28.08896],[76.46765,28.07879],[76.4718,28.08024],[76.47891,28.07767],[76.50124,28.05969],[76.49686,28.05381],[76.48943,28.05278],[76.47625,28.05441],[76.47606,28.05721],[76.47238,28.05855],[76.46848,28.05715],[76.46254,28.05911],[76.45868,28.05326],[76.45467,28.04233],[76.46155,28.04053],[76.46482,28.04243],[76.48118,28.04059],[76.48227,28.04187],[76.49742,28.04331],[76.50257,28.03143],[76.51007,28.02966],[76.52041,28.03223],[76.53037,28.04024],[76.54382,28.03421],[76.54096,28.03005],[76.53927,28.0232],[76.54281,28.01777],[76.54546,28.00729],[76.54405,28.00742],[76.54072,28.00217],[76.53639,28.0],[76.54275,27.99948],[76.54109,27.98478],[76.53595,27.97952],[76.53809,27.9677],[76.54472,27.96367],[76.56169,27.96613],[76.56442,27.9781],[76.58039,27.9789],[76.58374,27.99167],[76.58799,27.9933],[76.58989,27.99786],[76.60186,27.99952],[76.60619,28.00385],[76.64068,28.00232],[76.65774,28.00743],[76.66816,28.01383],[76.66302,28.02985],[76.65439,28.03468],[76.65865,28.04292],[76.65857,28.04692],[76.65559,28.05312],[76.65192,28.05633],[76.65165,28.06162],[76.65558,28.07574],[76.65727,28.0893],[76.66337,28.0912],[76.68736,28.08765],[76.688,28.09023],[76.685,28.09158],[76.69819,28.11198],[76.70302,28.1076],[76.71206,28.12545],[76.71576,28.12774],[76.74356,28.12103],[76.75313,28.13511],[76.76245,28.14264],[76.77148,28.14501],[76.77637,28.14411],[76.78206,28.14707],[76.78381,28.15091],[76.79481,28.14838],[76.80063,28.16234],[76.80029,28.16446],[76.79606,28.16693],[76.79743,28.16844],[76.79502,28.16939],[76.79573,28.18042],[76.79249,28.18419],[76.79752,28.19181],[76.80036,28.19249],[76.80123,28.18774],[76.80622,28.18654],[76.80916,28.18704],[76.81225,28.19091],[76.81303,28.19328],[76.80478,28.1973],[76.8048,28.20454],[76.8084,28.21086],[76.81279,28.209],[76.83121,28.20917],[76.83818,28.21995],[76.84606,28.21953],[76.84849,28.22162],[76.85294,28.22071],[76.85878,28.22884],[76.85748,28.23459],[76.84701,28.23987],[76.84312,28.23861],[76.8233,28.24534],[76.81826,28.24377],[76.8158,28.24502],[76.8122,28.24081],[76.81018,28.2422],[76.81189,28.24412],[76.80763,28.24683],[76.81098,28.25424],[76.80492,28.25661],[76.80198,28.25361],[76.79657,28.25621],[76.79397,28.24439],[76.7805,28.22388],[76.77044,28.23156],[76.76929,28.23996],[76.75347,28.24848],[76.73668,28.25283],[76.71106,28.26482],[76.69908,28.25866],[76.6881,28.26589],[76.68352,28.26134],[76.67724,28.26447],[76.67794,28.26861],[76.67323,28.27012],[76.67666,28.27795],[76.67874,28.28854],[76.68296,28.29343],[76.68066,28.2946],[76.68335,28.29965],[76.6818,28.30146],[76.68549,28.31383],[76.67919,28.31685],[76.67293,28.31706],[76.6709,28.30965],[76.66946,28.30947],[76.66641,28.30309],[76.65031,28.30769],[76.65705,28.33039],[76.66466,28.34045],[76.65988,28.34208],[76.66176,28.34911],[76.65713,28.35481],[76.66398,28.36953],[76.66315,28.37049],[76.66903,28.37923],[76.66281,28.38271],[76.66343,28.38735],[76.65991,28.39282],[76.64955,28.40252],[76.65003,28.40353],[76.64232,28.40605],[76.64196,28.41069],[76.63396,28.41453],[76.63637,28.4164],[76.63283,28.42152],[76.62562,28.42608],[76.61421,28.42982],[76.61115,28.42766],[76.59805,28.43416],[76.58371,28.43695],[76.5704,28.41455],[76.56062,28.40462],[76.55267,28.40751],[76.53553,28.40675],[76.51182,28.41516],[76.50841,28.41761],[76.50658,28.42878],[76.5005,28.4309],[76.49984,28.42911],[76.498,28.42906],[76.4901,28.43259],[76.48493,28.42764],[76.45894,28.42583],[76.45418,28.41807],[76.44002,28.42479],[76.44527,28.43779],[76.43606,28.43991],[76.43703,28.45223],[76.44071,28.45612],[76.42568,28.46241],[76.41922,28.46345],[76.40177,28.47186],[76.3982,28.47295],[76.39778,28.46988],[76.39579,28.46852],[76.37031,28.4708],[76.36711,28.46277],[76.36671,28.45514],[76.36462,28.45505],[76.34345,28.45974],[76.33835,28.4642],[76.32541,28.46722],[76.3205,28.4676],[76.31832,28.46177],[76.31426,28.46557],[76.31462,28.46989]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"720","area_level":"District","area_name":"Mulugu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.49634,18.62581],[80.48826,18.63109],[80.47917,18.62873],[80.47752,18.62584],[80.46554,18.62394],[80.45816,18.62891],[80.45521,18.62911],[80.43039,18.61646],[80.42762,18.61288],[80.42241,18.61512],[80.42,18.6104],[80.40914,18.60979],[80.39585,18.60493],[80.39415,18.60061],[80.38845,18.59666],[80.37827,18.60891],[80.37516,18.61066],[80.36756,18.6082],[80.36347,18.60414],[80.36215,18.59915],[80.35409,18.59423],[80.34812,18.59414],[80.344,18.59831],[80.30282,18.58884],[80.26774,18.58984],[80.22951,18.55326],[80.2244,18.42729],[80.22312,18.41921],[80.21752,18.40602],[80.21671,18.38949],[80.17261,18.34939],[80.14451,18.37469],[80.14246,18.37949],[80.14563,18.38293],[80.15081,18.41394],[80.12363,18.42589],[80.09858,18.4317],[80.08095,18.42113],[80.07728,18.39633],[80.07889,18.39127],[80.07422,18.38832],[80.05728,18.4016],[80.04232,18.4043],[79.99017,18.38648],[79.93953,18.39636],[79.9223,18.40615],[79.90787,18.39934],[79.89094,18.39928],[79.89234,18.39278],[79.8959,18.38876],[79.89528,18.38279],[79.89746,18.38081],[79.8996,18.37109],[79.90304,18.36995],[79.90963,18.37099],[79.92542,18.35162],[79.93915,18.34638],[79.94922,18.34461],[79.9539,18.3395],[79.94455,18.31839],[79.93161,18.31585],[79.91664,18.31815],[79.8959,18.31855],[79.89294,18.31705],[79.89557,18.3124],[79.89285,18.30692],[79.88203,18.29925],[79.88261,18.29473],[79.88921,18.28529],[79.88768,18.28336],[79.88148,18.28311],[79.87229,18.27737],[79.86483,18.26004],[79.85671,18.25843],[79.85342,18.25963],[79.85742,18.25091],[79.85414,18.24021],[79.84323,18.22206],[79.84416,18.21436],[79.84446,18.21281],[79.86308,18.20286],[79.83635,18.18639],[79.8443,18.15822],[79.85869,18.15023],[79.84073,18.13113],[79.82947,18.12247],[79.8241,18.11255],[79.81976,18.1131],[79.81449,18.0919],[79.82322,18.09439],[79.83101,18.09275],[79.83722,18.0949],[79.84959,18.09403],[79.86294,18.0954],[79.86384,18.09354],[79.88715,18.0982],[79.88449,18.08572],[79.89054,18.08538],[79.89328,18.0836],[79.90754,18.08468],[79.93633,18.0836],[79.95076,18.08592],[79.9578,18.08948],[79.9651,18.10061],[79.97545,18.10723],[79.97948,18.11191],[79.99189,18.10754],[80.01807,18.11703],[80.02837,18.11641],[80.03619,18.11542],[80.05459,18.0854],[80.07625,18.0745],[80.07939,18.07051],[80.08908,18.07332],[80.10073,18.08195],[80.11318,18.08278],[80.14489,18.09485],[80.14948,18.08379],[80.16416,18.08071],[80.17223,18.07562],[80.18578,18.06254],[80.2375,18.03712],[80.24755,18.02938],[80.25883,18.01589],[80.28117,17.99827],[80.28548,17.99789],[80.29447,18.00046],[80.30457,18.00005],[80.31618,17.99597],[80.32201,17.99866],[80.33123,18.00825],[80.34112,18.01423],[80.34649,18.03662],[80.39192,18.08166],[80.43127,18.06004],[80.43251,18.06167],[80.43605,18.0605],[80.43661,18.06249],[80.44318,18.06459],[80.44537,18.06699],[80.45571,18.06023],[80.45919,18.06135],[80.45953,18.06286],[80.46969,18.06122],[80.47197,18.05832],[80.47447,18.06024],[80.48233,18.05978],[80.49643,18.051],[80.4994,18.05067],[80.50469,18.05155],[80.50594,18.05418],[80.514,18.05183],[80.51714,18.05789],[80.52495,18.05959],[80.52724,18.06467],[80.53477,18.06087],[80.53585,18.05564],[80.5379,18.05515],[80.54373,18.05395],[80.5489,18.05851],[80.5585,18.05888],[80.5596,18.05567],[80.56583,18.05093],[80.57391,18.05474],[80.57689,18.06178],[80.58277,18.0638],[80.58565,18.06236],[80.59175,18.06905],[80.59236,18.07167],[80.60032,18.07798],[80.60488,18.08622],[80.60781,18.08832],[80.60892,18.09364],[80.61562,18.10465],[80.61434,18.11474],[80.61644,18.1184],[80.61947,18.11278],[80.63508,18.10943],[80.64312,18.12538],[80.63104,18.12594],[80.62338,18.1293],[80.63226,18.14236],[80.63819,18.13625],[80.64236,18.13751],[80.65021,18.13439],[80.65124,18.13574],[80.65484,18.13488],[80.65714,18.14372],[80.64702,18.15645],[80.65014,18.15727],[80.6553,18.15381],[80.65536,18.15842],[80.65989,18.16141],[80.67336,18.18249],[80.67889,18.17463],[80.6816,18.16553],[80.68613,18.1634],[80.69204,18.16354],[80.69404,18.16151],[80.70425,18.13588],[80.71455,18.12655],[80.72267,18.11137],[80.73111,18.10217],[80.74463,18.08229],[80.74718,18.07937],[80.75307,18.07703],[80.75499,18.07376],[80.75308,18.09122],[80.74868,18.10159],[80.74874,18.12942],[80.75297,18.14016],[80.752,18.1491],[80.75419,18.16871],[80.74497,18.17033],[80.73682,18.17733],[80.7372,18.22209],[80.77678,18.24285],[80.79265,18.24945],[80.79424,18.25248],[80.79415,18.25963],[80.78983,18.26412],[80.78063,18.26605],[80.77548,18.2782],[80.76914,18.28763],[80.76186,18.28823],[80.75949,18.28987],[80.75683,18.29506],[80.75874,18.2993],[80.75772,18.30191],[80.74872,18.30892],[80.74765,18.32996],[80.74214,18.3411],[80.7315,18.35491],[80.7269,18.36913],[80.73023,18.37592],[80.7294,18.37884],[80.72276,18.38456],[80.71968,18.3908],[80.73217,18.40122],[80.73487,18.41284],[80.72286,18.41518],[80.72083,18.41104],[80.71827,18.40973],[80.69895,18.42143],[80.6962,18.42473],[80.69824,18.43756],[80.70531,18.43986],[80.70172,18.44459],[80.69576,18.44457],[80.68806,18.44736],[80.6861,18.45826],[80.67873,18.46077],[80.67334,18.46656],[80.65531,18.47586],[80.6513,18.4859],[80.63721,18.50435],[80.63685,18.50702],[80.64094,18.51151],[80.63757,18.52253],[80.63109,18.5219],[80.62276,18.52856],[80.6185,18.52767],[80.61064,18.54237],[80.59991,18.55304],[80.59096,18.5579],[80.57141,18.56468],[80.56749,18.57125],[80.55643,18.57974],[80.54228,18.58691],[80.53451,18.58835],[80.53525,18.59074],[80.53074,18.59894],[80.52813,18.60266],[80.51929,18.60865],[80.51883,18.61431],[80.51466,18.61933],[80.5016,18.62157],[80.49634,18.62581]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"721","area_level":"District","area_name":"Narayanpet","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.73265,17.03093],[77.73402,17.03366],[77.72755,17.03845],[77.71459,17.04023],[77.71164,17.03279],[77.70585,17.0302],[77.70413,17.02652],[77.69224,17.02411],[77.68563,17.0207],[77.6765,17.02788],[77.67339,17.02818],[77.67227,17.03098],[77.66706,17.03454],[77.65939,17.03206],[77.65185,17.01784],[77.64154,17.01916],[77.63064,17.00214],[77.63257,17.00109],[77.63792,17.00243],[77.64127,17.00598],[77.64257,17.00494],[77.64801,17.00805],[77.65307,17.00695],[77.6542,17.00544],[77.65323,17.00313],[77.64485,16.99514],[77.64683,16.99351],[77.64412,16.99033],[77.62398,16.98436],[77.62342,16.97746],[77.62498,16.97478],[77.62267,16.96888],[77.62307,16.95293],[77.61528,16.94909],[77.60946,16.94949],[77.60364,16.94664],[77.60285,16.93601],[77.59323,16.93066],[77.59503,16.92855],[77.59649,16.91434],[77.58387,16.91252],[77.58004,16.90954],[77.57885,16.90579],[77.56835,16.90758],[77.56592,16.91154],[77.55765,16.90223],[77.55367,16.90293],[77.54658,16.90942],[77.5454,16.91718],[77.54003,16.92332],[77.53773,16.93029],[77.53212,16.93112],[77.52492,16.92551],[77.51582,16.93342],[77.51582,16.93781],[77.52398,16.94692],[77.52307,16.9483],[77.46621,16.9541],[77.46721,16.94985],[77.46484,16.94418],[77.46829,16.93959],[77.4642,16.92985],[77.46941,16.92806],[77.46944,16.9192],[77.46652,16.91511],[77.4592,16.91731],[77.45842,16.91491],[77.45402,16.9139],[77.4547,16.91037],[77.45791,16.90951],[77.45646,16.89992],[77.45834,16.89409],[77.45589,16.88534],[77.46036,16.88475],[77.46001,16.87468],[77.46406,16.85059],[77.45948,16.83285],[77.45708,16.83018],[77.46324,16.82221],[77.46244,16.81374],[77.46646,16.80832],[77.4657,16.80592],[77.47426,16.80232],[77.47469,16.7931],[77.47339,16.78921],[77.4765,16.78837],[77.4745,16.78124],[77.46719,16.78045],[77.44107,16.78622],[77.4395,16.78913],[77.43772,16.78337],[77.43788,16.77471],[77.44315,16.76251],[77.4333,16.73669],[77.4298,16.7348],[77.42696,16.72891],[77.42832,16.7266],[77.43036,16.72637],[77.43097,16.72312],[77.42607,16.72287],[77.42601,16.72149],[77.42767,16.71663],[77.4328,16.7173],[77.43846,16.71168],[77.44123,16.71312],[77.44198,16.71703],[77.44613,16.71649],[77.44718,16.72073],[77.45216,16.7196],[77.45779,16.71594],[77.46133,16.719],[77.46296,16.71797],[77.46381,16.71917],[77.47405,16.71656],[77.47116,16.71178],[77.47139,16.7062],[77.46989,16.7056],[77.46996,16.68773],[77.4639,16.6763],[77.44772,16.67931],[77.44658,16.67607],[77.44423,16.67569],[77.44255,16.66985],[77.43455,16.67098],[77.42817,16.6682],[77.41886,16.66857],[77.41901,16.65844],[77.42972,16.6562],[77.4386,16.64533],[77.43434,16.64336],[77.43434,16.64138],[77.44158,16.6411],[77.44468,16.63923],[77.45649,16.64681],[77.45702,16.64968],[77.46143,16.65112],[77.4624,16.65427],[77.47291,16.6528],[77.47611,16.65011],[77.47086,16.64375],[77.46825,16.63595],[77.46438,16.6325],[77.46392,16.62824],[77.45616,16.62299],[77.45365,16.61675],[77.45819,16.61071],[77.4678,16.60976],[77.4673,16.59854],[77.46391,16.59921],[77.46225,16.59766],[77.46483,16.59242],[77.46222,16.58548],[77.43971,16.58715],[77.43085,16.57887],[77.42855,16.57365],[77.42563,16.57219],[77.42376,16.56888],[77.41537,16.56752],[77.41178,16.57086],[77.40494,16.57189],[77.40001,16.56752],[77.39287,16.56997],[77.39262,16.56399],[77.3975,16.56476],[77.39996,16.55573],[77.40418,16.55418],[77.40376,16.55119],[77.41045,16.549],[77.41902,16.54892],[77.41912,16.52238],[77.41689,16.5173],[77.40221,16.52152],[77.39498,16.51969],[77.39102,16.5162],[77.38144,16.51571],[77.37779,16.5137],[77.37272,16.50966],[77.37007,16.50458],[77.36901,16.48867],[77.3547,16.48878],[77.35143,16.49106],[77.34637,16.49037],[77.34439,16.48694],[77.34309,16.48793],[77.32956,16.48591],[77.32357,16.48684],[77.3203,16.49222],[77.29871,16.49616],[77.29932,16.48791],[77.294,16.47667],[77.26499,16.47251],[77.25073,16.47493],[77.24581,16.47773],[77.23977,16.47625],[77.23582,16.47283],[77.24441,16.46331],[77.26207,16.45184],[77.26895,16.43046],[77.27828,16.42217],[77.28796,16.40864],[77.29745,16.4069],[77.3043,16.40173],[77.31393,16.39801],[77.33342,16.39537],[77.34971,16.38363],[77.35584,16.38264],[77.37866,16.38541],[77.4017,16.3713],[77.41144,16.36745],[77.41941,16.36629],[77.42885,16.36919],[77.43711,16.37861],[77.44098,16.38077],[77.47467,16.38177],[77.48969,16.38501],[77.49535,16.38116],[77.51437,16.37497],[77.5234,16.37583],[77.53143,16.36376],[77.53877,16.35821],[77.54604,16.35693],[77.555,16.34877],[77.57339,16.34074],[77.59141,16.34379],[77.59529,16.34236],[77.60083,16.343],[77.61147,16.35025],[77.63887,16.36309],[77.64365,16.36347],[77.65663,16.36032],[77.66638,16.36396],[77.67751,16.36047],[77.68484,16.35164],[77.68513,16.34824],[77.6924,16.34308],[77.70024,16.34051],[77.70492,16.33641],[77.71561,16.33432],[77.71615,16.35764],[77.71825,16.36744],[77.73933,16.3655],[77.7394,16.36693],[77.73381,16.36971],[77.74486,16.37679],[77.75101,16.4036],[77.74554,16.41875],[77.7462,16.42356],[77.75041,16.43106],[77.74871,16.44315],[77.74605,16.45134],[77.74041,16.46087],[77.73941,16.46635],[77.74871,16.47412],[77.7555,16.47355],[77.75939,16.48028],[77.76775,16.47963],[77.76835,16.48106],[77.7679,16.49458],[77.76253,16.50322],[77.76447,16.52605],[77.76065,16.53337],[77.75309,16.54221],[77.75291,16.54629],[77.75097,16.55037],[77.74974,16.55009],[77.74958,16.5665],[77.75482,16.56743],[77.75852,16.5654],[77.77768,16.56515],[77.78065,16.56719],[77.78544,16.5744],[77.78747,16.57442],[77.78767,16.57643],[77.78117,16.61568],[77.7989,16.61634],[77.79744,16.61992],[77.79704,16.63312],[77.78879,16.63906],[77.78085,16.6495],[77.7741,16.65404],[77.7722,16.65733],[77.76748,16.66821],[77.76726,16.68188],[77.76464,16.68818],[77.75914,16.68834],[77.74916,16.69335],[77.75167,16.70283],[77.74895,16.70395],[77.75342,16.72379],[77.7452,16.73947],[77.72664,16.75136],[77.71034,16.75119],[77.69681,16.74826],[77.67754,16.75782],[77.67508,16.76848],[77.67437,16.7767],[77.67909,16.77728],[77.68103,16.78455],[77.67939,16.79487],[77.68191,16.79239],[77.68674,16.79137],[77.69448,16.79326],[77.70821,16.78321],[77.71114,16.79277],[77.73533,16.7893],[77.74154,16.79307],[77.73774,16.80266],[77.72952,16.81113],[77.74321,16.82445],[77.74368,16.8274],[77.73985,16.83608],[77.73393,16.84127],[77.7274,16.85033],[77.73001,16.85625],[77.73426,16.85999],[77.73493,16.8665],[77.73148,16.87341],[77.7396,16.88346],[77.73947,16.88876],[77.74208,16.89545],[77.74065,16.90118],[77.74352,16.90843],[77.74597,16.91073],[77.74018,16.91986],[77.74137,16.92893],[77.74031,16.93838],[77.73015,16.93925],[77.73019,16.94379],[77.73641,16.94451],[77.74051,16.94857],[77.74869,16.95105],[77.75086,16.95416],[77.75137,16.96161],[77.75583,16.96867],[77.75534,16.97629],[77.75046,16.97753],[77.7594,16.99392],[77.76089,17.01391],[77.76579,17.02178],[77.75181,17.02407],[77.74014,17.02966],[77.73109,17.02888],[77.73265,17.03093]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"722","area_level":"District","area_name":"Niwari","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.49665,25.15368],[78.49866,25.1567],[78.50033,25.15848],[78.50306,25.1632],[78.50535,25.16491],[78.50815,25.16579],[78.51028,25.16827],[78.51298,25.17024],[78.5209,25.17356],[78.52723,25.17718],[78.52963,25.18023],[78.51954,25.18146],[78.51559,25.1809],[78.50842,25.17793],[78.50449,25.17458],[78.5013,25.17063],[78.49992,25.16737],[78.49546,25.1614],[78.49429,25.15779],[78.49295,25.15532],[78.49305,25.15342],[78.49426,25.15265],[78.49665,25.15368]]],[[[78.94661,25.55183],[78.9433,25.55378],[78.94413,25.55627],[78.93937,25.55722],[78.9331,25.55534],[78.93087,25.5509],[78.92795,25.5498],[78.92337,25.53594],[78.921,25.5373],[78.91645,25.54555],[78.91711,25.55229],[78.9112,25.55516],[78.90564,25.55123],[78.90005,25.5522],[78.89524,25.55535],[78.88265,25.55396],[78.87749,25.54943],[78.87429,25.54095],[78.87791,25.53681],[78.88644,25.53243],[78.88706,25.52684],[78.88438,25.51558],[78.87611,25.51747],[78.87107,25.5132],[78.86648,25.51205],[78.85216,25.51387],[78.84154,25.51254],[78.83496,25.50582],[78.83282,25.4995],[78.84232,25.49891],[78.84019,25.49336],[78.85307,25.49084],[78.85565,25.48837],[78.85536,25.48448],[78.85744,25.48424],[78.8603,25.47925],[78.86031,25.47126],[78.86617,25.46567],[78.86547,25.45893],[78.86298,25.45614],[78.86388,25.45124],[78.8607,25.445],[78.85651,25.44668],[78.8484,25.43626],[78.84807,25.42974],[78.84415,25.42775],[78.83756,25.42804],[78.83163,25.43157],[78.82802,25.42825],[78.82357,25.43134],[78.82433,25.4342],[78.82073,25.43869],[78.8234,25.44261],[78.82576,25.44335],[78.84046,25.4417],[78.84184,25.44382],[78.84563,25.44331],[78.84826,25.44595],[78.85207,25.44549],[78.85489,25.44769],[78.83518,25.45479],[78.84089,25.4615],[78.83123,25.46118],[78.82061,25.46774],[78.81593,25.46176],[78.81426,25.45614],[78.81248,25.4566],[78.80917,25.45341],[78.80638,25.45447],[78.81046,25.46142],[78.81797,25.46751],[78.81825,25.47165],[78.8051,25.47533],[78.79669,25.48276],[78.79156,25.48342],[78.78681,25.4795],[78.77632,25.4784],[78.77493,25.47611],[78.7728,25.47627],[78.77104,25.47191],[78.76783,25.46943],[78.75821,25.47553],[78.75622,25.4786],[78.7572,25.48069],[78.74733,25.48476],[78.74784,25.4887],[78.74631,25.48942],[78.74772,25.49334],[78.74541,25.49582],[78.74627,25.49662],[78.74283,25.49878],[78.73635,25.49382],[78.73346,25.48943],[78.73274,25.48485],[78.73183,25.45806],[78.73507,25.45733],[78.73706,25.45499],[78.73745,25.44979],[78.75,25.44858],[78.75236,25.44671],[78.75383,25.44317],[78.75775,25.44025],[78.75611,25.43824],[78.75799,25.43208],[78.76236,25.4269],[78.7707,25.42285],[78.7734,25.42697],[78.77848,25.42917],[78.78212,25.4342],[78.78514,25.43578],[78.80297,25.43716],[78.80951,25.43422],[78.81047,25.43035],[78.82137,25.42258],[78.81974,25.41991],[78.7991,25.42289],[78.79812,25.42084],[78.79977,25.41927],[78.79581,25.41645],[78.78792,25.41986],[78.78251,25.41571],[78.77917,25.41925],[78.77495,25.41987],[78.76738,25.41496],[78.75811,25.4154],[78.74974,25.41106],[78.74686,25.40306],[78.74556,25.40281],[78.74815,25.39099],[78.75,25.39385],[78.75676,25.39506],[78.76479,25.40187],[78.76798,25.40003],[78.76517,25.39091],[78.76134,25.38594],[78.75692,25.38544],[78.75986,25.38166],[78.77366,25.37617],[78.76592,25.36915],[78.77444,25.35614],[78.77459,25.3531],[78.75997,25.35044],[78.75478,25.35147],[78.75278,25.34591],[78.74105,25.34498],[78.738,25.34794],[78.73096,25.34872],[78.72752,25.3443],[78.72412,25.34397],[78.70879,25.35199],[78.70791,25.36309],[78.7136,25.36962],[78.71405,25.37215],[78.70761,25.37193],[78.70301,25.37377],[78.6996,25.38189],[78.69467,25.37386],[78.67536,25.38115],[78.66384,25.38256],[78.65895,25.38529],[78.66629,25.39273],[78.66234,25.39633],[78.66362,25.40088],[78.65916,25.40579],[78.6589,25.4085],[78.66601,25.41581],[78.66831,25.40648],[78.67142,25.40507],[78.6749,25.39957],[78.70307,25.41894],[78.70906,25.42401],[78.71143,25.4281],[78.70257,25.43294],[78.6997,25.43701],[78.69961,25.44009],[78.69655,25.44299],[78.68987,25.44575],[78.68171,25.43322],[78.67041,25.44002],[78.66545,25.43978],[78.65983,25.44166],[78.65625,25.43779],[78.65398,25.43841],[78.65068,25.43637],[78.64321,25.43531],[78.64136,25.43349],[78.64096,25.42942],[78.64456,25.41947],[78.64493,25.41267],[78.63582,25.40069],[78.631,25.3993],[78.62575,25.40123],[78.62362,25.41347],[78.61938,25.41559],[78.61392,25.41458],[78.60967,25.41602],[78.60446,25.41351],[78.60667,25.4113],[78.60111,25.409],[78.60225,25.39916],[78.59843,25.39627],[78.59941,25.39256],[78.59019,25.38603],[78.58364,25.3877],[78.58145,25.38571],[78.57612,25.39073],[78.5665,25.39353],[78.56616,25.3871],[78.56354,25.38326],[78.56289,25.37726],[78.56924,25.37731],[78.57778,25.38124],[78.5857,25.37417],[78.58877,25.36597],[78.58779,25.35588],[78.58475,25.35338],[78.58329,25.34697],[78.57751,25.34384],[78.57083,25.3433],[78.56727,25.34074],[78.56138,25.34122],[78.55281,25.35294],[78.55184,25.3567],[78.53649,25.3602],[78.532,25.35658],[78.53064,25.35148],[78.54123,25.34554],[78.53705,25.33823],[78.54048,25.33011],[78.53964,25.32775],[78.54371,25.32603],[78.54386,25.32418],[78.54694,25.32198],[78.55007,25.32238],[78.55307,25.31964],[78.53754,25.31066],[78.534,25.31013],[78.53119,25.30002],[78.5202,25.29946],[78.5099,25.29555],[78.50657,25.29952],[78.50275,25.30087],[78.50359,25.30407],[78.5006,25.31378],[78.50318,25.32091],[78.49829,25.32007],[78.49478,25.31308],[78.48434,25.3009],[78.47804,25.29852],[78.47693,25.29663],[78.47756,25.28948],[78.47295,25.2855],[78.47118,25.29034],[78.46709,25.29076],[78.45471,25.30124],[78.44519,25.29931],[78.44034,25.29547],[78.43893,25.28866],[78.43505,25.28442],[78.43829,25.27459],[78.45085,25.26211],[78.46495,25.26659],[78.47289,25.27374],[78.48364,25.27736],[78.48698,25.281],[78.50393,25.28963],[78.51056,25.27678],[78.51665,25.27789],[78.53092,25.28465],[78.5318,25.28162],[78.53372,25.28063],[78.53084,25.27711],[78.53361,25.26837],[78.53731,25.26889],[78.54118,25.26568],[78.54527,25.26471],[78.54983,25.26776],[78.55972,25.26359],[78.563,25.26368],[78.56846,25.25978],[78.57204,25.25957],[78.5705,25.25831],[78.57127,25.25722],[78.5779,25.25482],[78.5731,25.24584],[78.56808,25.24084],[78.56744,25.22994],[78.56012,25.222],[78.55554,25.21142],[78.55644,25.21025],[78.56281,25.22148],[78.56819,25.22474],[78.5702,25.22388],[78.57054,25.20519],[78.57639,25.1952],[78.58334,25.18733],[78.60068,25.15539],[78.60333,25.14596],[78.60533,25.12693],[78.60429,25.1175],[78.60568,25.10887],[78.60191,25.09784],[78.60245,25.09442],[78.61326,25.08758],[78.62734,25.0869],[78.63233,25.08228],[78.63945,25.07121],[78.6461,25.07213],[78.65367,25.06765],[78.66833,25.07039],[78.66898,25.07389],[78.6753,25.07651],[78.68668,25.07374],[78.69172,25.07738],[78.69989,25.0777],[78.70407,25.07983],[78.71312,25.08524],[78.71933,25.09367],[78.72903,25.09607],[78.73716,25.09099],[78.74637,25.08085],[78.75766,25.08106],[78.75917,25.08279],[78.76153,25.08233],[78.76283,25.08446],[78.76521,25.08379],[78.76843,25.08724],[78.77141,25.08689],[78.77234,25.0899],[78.77482,25.09072],[78.77303,25.09247],[78.77545,25.09177],[78.77364,25.09371],[78.77572,25.09285],[78.77709,25.09476],[78.77769,25.0901],[78.78049,25.08831],[78.77843,25.08562],[78.78155,25.08805],[78.78376,25.08455],[78.78576,25.08698],[78.78745,25.0859],[78.78969,25.08936],[78.79211,25.08874],[78.79042,25.08605],[78.7935,25.08763],[78.7932,25.08572],[78.78978,25.08321],[78.79261,25.08371],[78.79086,25.08072],[78.79446,25.08171],[78.79313,25.07909],[78.79545,25.08068],[78.79712,25.07928],[78.80592,25.08425],[78.81292,25.08409],[78.8281,25.09345],[78.84092,25.09843],[78.845,25.09799],[78.85429,25.11259],[78.86518,25.12272],[78.86744,25.12866],[78.88099,25.14781],[78.88689,25.16022],[78.88191,25.15689],[78.8804,25.15762],[78.87865,25.16684],[78.87998,25.17106],[78.87437,25.17241],[78.87285,25.17541],[78.87344,25.18389],[78.87255,25.18656],[78.87064,25.18701],[78.87398,25.19137],[78.88283,25.19794],[78.8868,25.20604],[78.88635,25.21],[78.89058,25.21442],[78.87722,25.22374],[78.87036,25.22643],[78.86953,25.23111],[78.8716,25.23887],[78.87711,25.24507],[78.8795,25.25226],[78.88092,25.25401],[78.88581,25.25375],[78.89338,25.24471],[78.89977,25.24312],[78.90239,25.24589],[78.90385,25.25247],[78.90841,25.25647],[78.91233,25.26924],[78.91703,25.27359],[78.92925,25.26982],[78.93293,25.2633],[78.93759,25.25969],[78.94514,25.25942],[78.94732,25.26179],[78.9546,25.26136],[78.95392,25.26934],[78.94868,25.27418],[78.95551,25.28276],[78.96236,25.27977],[78.97754,25.27673],[78.9798,25.28033],[78.97687,25.28292],[78.97561,25.28814],[78.9689,25.29259],[78.96387,25.29936],[78.95743,25.30224],[78.96029,25.30737],[78.95748,25.31625],[78.95727,25.32494],[78.96151,25.34345],[78.96062,25.34508],[78.95771,25.3459],[78.95318,25.34047],[78.94771,25.34213],[78.94631,25.3339],[78.93774,25.32718],[78.93276,25.32698],[78.93225,25.32517],[78.92793,25.32413],[78.92672,25.32724],[78.93006,25.3295],[78.93222,25.33594],[78.92254,25.3429],[78.92091,25.34359],[78.91619,25.33494],[78.91389,25.33497],[78.91184,25.33256],[78.89601,25.3397],[78.89266,25.33864],[78.88657,25.34339],[78.882,25.34364],[78.88037,25.33211],[78.88125,25.32492],[78.86757,25.32555],[78.86554,25.31844],[78.86262,25.31445],[78.86397,25.31022],[78.87446,25.30845],[78.87088,25.30335],[78.87176,25.29912],[78.8799,25.28598],[78.87498,25.27838],[78.87281,25.28042],[78.86661,25.28039],[78.865,25.2647],[78.85993,25.2577],[78.85629,25.25665],[78.85737,25.24396],[78.85214,25.23732],[78.85207,25.23054],[78.8428,25.22769],[78.83514,25.24291],[78.83274,25.25252],[78.82291,25.2562],[78.81865,25.26355],[78.80941,25.2709],[78.81088,25.27559],[78.81374,25.27762],[78.81293,25.28006],[78.81808,25.28313],[78.8174,25.29111],[78.82043,25.29609],[78.81845,25.29895],[78.82099,25.30135],[78.8278,25.30141],[78.82857,25.30274],[78.82273,25.3068],[78.81715,25.30668],[78.80459,25.29282],[78.79881,25.28917],[78.79393,25.29117],[78.79117,25.29589],[78.78778,25.29601],[78.78846,25.30009],[78.7939,25.31042],[78.79824,25.31394],[78.81034,25.30781],[78.81437,25.30851],[78.8193,25.30694],[78.81719,25.30877],[78.82129,25.31151],[78.8219,25.3161],[78.83445,25.32322],[78.83936,25.3318],[78.84207,25.33262],[78.84261,25.33655],[78.84716,25.33678],[78.84616,25.32698],[78.84994,25.33494],[78.84483,25.34202],[78.8413,25.34264],[78.84104,25.34497],[78.84359,25.34947],[78.84731,25.35051],[78.84574,25.35555],[78.85161,25.35746],[78.85701,25.36292],[78.85953,25.36312],[78.85834,25.3644],[78.86154,25.36937],[78.86287,25.37117],[78.86786,25.37244],[78.87178,25.38095],[78.87464,25.3797],[78.88145,25.38226],[78.88024,25.38589],[78.91377,25.38425],[78.91776,25.3961],[78.91981,25.39697],[78.92969,25.39589],[78.93166,25.39988],[78.93506,25.39897],[78.93474,25.39518],[78.93598,25.39513],[78.9402,25.40038],[78.9533,25.39995],[78.95355,25.39815],[78.95647,25.39719],[78.95755,25.39368],[78.95237,25.38854],[78.95103,25.38969],[78.94737,25.38488],[78.94541,25.38561],[78.94212,25.38294],[78.93829,25.37483],[78.92857,25.37834],[78.92861,25.38021],[78.91594,25.38144],[78.91259,25.37712],[78.89908,25.37769],[78.89642,25.37411],[78.89657,25.37186],[78.89968,25.36861],[78.90134,25.36162],[78.91453,25.35762],[78.92325,25.35879],[78.92382,25.35483],[78.92699,25.35161],[78.93871,25.34698],[78.945,25.35041],[78.95044,25.36061],[78.95181,25.36067],[78.95916,25.37151],[78.96354,25.3689],[78.9654,25.37068],[78.97524,25.36607],[78.97896,25.36954],[78.9816,25.36954],[78.98933,25.37404],[78.98619,25.37807],[78.98751,25.38129],[78.96993,25.39011],[78.9733,25.39418],[78.9738,25.39789],[78.97204,25.40298],[78.96846,25.40467],[78.97623,25.41996],[78.96999,25.42323],[78.96974,25.43166],[78.967,25.43462],[78.9603,25.43715],[78.958,25.44028],[78.95348,25.43901],[78.95094,25.44055],[78.95037,25.43733],[78.94678,25.43593],[78.93827,25.42225],[78.93245,25.42404],[78.93151,25.42756],[78.93264,25.4303],[78.92165,25.43242],[78.90887,25.44242],[78.90897,25.44508],[78.91541,25.44626],[78.92351,25.45384],[78.92522,25.45712],[78.92399,25.45949],[78.93602,25.46161],[78.94324,25.48074],[78.94391,25.48293],[78.92681,25.48996],[78.92698,25.49185],[78.93719,25.48933],[78.94216,25.49245],[78.9402,25.49334],[78.94109,25.49503],[78.93676,25.49542],[78.933,25.49936],[78.93499,25.50526],[78.92712,25.5074],[78.9199,25.5154],[78.92244,25.51567],[78.9272,25.52498],[78.93642,25.51979],[78.94933,25.5325],[78.95285,25.53753],[78.94755,25.54086],[78.95179,25.54879],[78.94661,25.55183]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"723","area_level":"District","area_name":"Pakke Kessang","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.32995,27.35471],[93.29972,27.39959],[93.28901,27.39364],[93.19502,27.37818],[93.16528,27.31155],[93.00229,27.24969],[92.98444,27.21994],[93.00942,27.20091],[93.07248,27.20329],[93.08081,27.18663],[93.06891,27.17116],[93.02965,27.15689],[93.0118,27.14261],[92.9892,27.15332],[92.95827,27.15808],[92.89521,27.13428],[92.87499,27.13428],[92.85714,27.14023],[92.83929,27.1319],[92.82859,27.16165],[92.80759,27.17905],[92.79889,27.18129],[92.78165,27.18098],[92.76837,27.19412],[92.76473,27.19566],[92.74662,27.19433],[92.71679,27.17588],[92.69729,27.17257],[92.68805,27.16571],[92.67816,27.16371],[92.675,27.1609],[92.67055,27.16136],[92.64995,27.1519],[92.63785,27.15024],[92.6324,27.14755],[92.62466,27.14882],[92.61725,27.14613],[92.60805,27.14024],[92.60704,27.1255],[92.60168,27.11981],[92.60192,27.1081],[92.59428,27.1046],[92.60031,27.09705],[92.59196,27.08546],[92.59026,27.07901],[92.59779,27.05294],[92.60518,27.04417],[92.6239,27.02866],[92.63552,27.02392],[92.64454,27.00875],[92.64542,26.98786],[92.66745,27.02712],[92.67248,27.03165],[92.67752,27.03166],[92.68761,27.02717],[92.69265,27.02718],[92.69771,27.02268],[92.71283,27.02271],[92.72292,27.01821],[92.73299,27.02275],[92.75315,27.02278],[92.76322,27.02731],[92.77835,27.02282],[92.79348,27.02285],[92.82374,27.00934],[92.83886,27.00485],[92.85727,27.00164],[92.88384,27.00036],[92.88906,26.99859],[92.91841,26.98231],[92.91553,26.97392],[92.91715,26.96293],[92.98189,26.93605],[93.02186,26.91342],[93.06272,26.92227],[93.08823,26.91439],[93.10737,26.92576],[93.17256,26.93599],[93.20095,26.94322],[93.26166,26.95353],[93.3241,26.96008],[93.38958,26.9582],[93.38664,26.97225],[93.38033,26.97458],[93.37981,26.97836],[93.38597,26.98063],[93.38518,26.98349],[93.3689,26.98097],[93.36061,26.98177],[93.34625,26.99243],[93.33974,27.00107],[93.33942,27.00681],[93.34413,27.01076],[93.34085,27.01655],[93.34279,27.02392],[93.34006,27.03224],[93.34284,27.03816],[93.34206,27.03971],[93.33867,27.04005],[93.32923,27.05818],[93.32294,27.0619],[93.31254,27.07927],[93.30685,27.07783],[93.30422,27.07919],[93.29942,27.07607],[93.29308,27.07784],[93.28561,27.0854],[93.2843,27.09194],[93.27199,27.10345],[93.25929,27.10813],[93.24237,27.1114],[93.22943,27.10958],[93.22038,27.11397],[93.21551,27.11424],[93.21294,27.11659],[93.21066,27.13095],[93.21606,27.13877],[93.22893,27.1406],[93.24485,27.1541],[93.2701,27.15378],[93.2724,27.15494],[93.2734,27.15769],[93.28203,27.16106],[93.28318,27.16302],[93.29432,27.16327],[93.30945,27.17228],[93.29967,27.17967],[93.29989,27.18691],[93.28264,27.19978],[93.27907,27.20758],[93.27295,27.21113],[93.26444,27.21076],[93.24879,27.2026],[93.22869,27.19857],[93.22122,27.20354],[93.21993,27.21555],[93.22584,27.22287],[93.22241,27.22831],[93.22454,27.23694],[93.22852,27.23632],[93.23004,27.23943],[93.23337,27.23892],[93.23167,27.24396],[93.22509,27.25061],[93.23704,27.25743],[93.24509,27.26456],[93.25127,27.26621],[93.25349,27.27151],[93.2579,27.27457],[93.26936,27.27684],[93.28087,27.28349],[93.28779,27.28534],[93.29442,27.29048],[93.29328,27.30007],[93.29454,27.30276],[93.29276,27.30563],[93.29485,27.30645],[93.29474,27.31208],[93.29166,27.31379],[93.28952,27.32929],[93.30014,27.33432],[93.30682,27.34434],[93.31553,27.34758],[93.32205,27.35243],[93.32995,27.35471]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"724","area_level":"District","area_name":"Leparada","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[94.90643,28.01631],[94.89746,28.01691],[94.81973,27.98592],[94.79094,27.98711],[94.75239,28.01138],[94.73811,28.00924],[94.69957,28.01924],[94.66887,28.04137],[94.64032,28.04351],[94.62533,28.05564],[94.6032,28.06207],[94.5932,28.05279],[94.5675,28.04922],[94.53324,28.04922],[94.50611,28.05564],[94.48429,28.02201],[94.50629,28.01927],[94.51301,28.0154],[94.52475,27.99522],[94.53208,27.98594],[94.52539,27.97709],[94.52279,27.9664],[94.52513,27.9582],[94.53096,27.95225],[94.53584,27.94387],[94.53778,27.93334],[94.5545,27.91021],[94.55806,27.9024],[94.59293,27.89004],[94.59483,27.87081],[94.63175,27.86671],[94.64603,27.85006],[94.68529,27.84054],[94.71741,27.82507],[94.72407,27.79485],[94.74596,27.77296],[94.76881,27.77391],[94.80902,27.78581],[94.83876,27.80366],[94.89919,27.82255],[94.89987,27.82547],[94.89841,27.82806],[94.90682,27.83538],[94.90151,27.83814],[94.90179,27.84099],[94.91364,27.8458],[94.92048,27.85199],[94.92308,27.85178],[94.92597,27.85708],[94.92519,27.86126],[94.92261,27.86242],[94.90956,27.85953],[94.9058,27.86106],[94.90465,27.8649],[94.90622,27.86672],[94.90108,27.87464],[94.90169,27.87763],[94.89808,27.87916],[94.8952,27.88513],[94.8877,27.88707],[94.88396,27.89494],[94.87708,27.89572],[94.87764,27.90302],[94.87183,27.90668],[94.86592,27.91573],[94.87334,27.93467],[94.88379,27.94278],[94.88561,27.95078],[94.89422,27.95378],[94.89334,27.95877],[94.89593,27.96114],[94.89976,27.97158],[94.8866,27.99341],[94.88074,27.99999],[94.89132,27.99995],[94.89453,28.00801],[94.8999,28.00979],[94.90643,28.01631]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"725","area_level":"District","area_name":"Shi Yomi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[93.96771,28.70732],[94.00124,28.67862],[94.00416,28.6746],[94.01561,28.66854],[94.01811,28.66548],[94.02337,28.65121],[94.01024,28.63176],[94.00616,28.62167],[94.00346,28.61082],[94.00143,28.57772],[94.02145,28.5655],[94.04971,28.55109],[94.05801,28.54946],[94.07151,28.53925],[94.0807,28.53432],[94.08521,28.5337],[94.09689,28.53603],[94.10316,28.52529],[94.10734,28.52432],[94.10881,28.52125],[94.10752,28.51195],[94.10908,28.5031],[94.10564,28.49754],[94.11142,28.48912],[94.11487,28.4757],[94.12643,28.46695],[94.13277,28.45144],[94.13918,28.44444],[94.15185,28.43606],[94.16264,28.43225],[94.17334,28.43501],[94.18459,28.42937],[94.19252,28.42979],[94.21396,28.43638],[94.21924,28.43619],[94.23164,28.42815],[94.23677,28.43351],[94.2368,28.44181],[94.24181,28.44671],[94.26756,28.43217],[94.2748,28.43062],[94.28343,28.4319],[94.29283,28.42872],[94.29649,28.42274],[94.30852,28.41689],[94.30889,28.41447],[94.30191,28.40019],[94.30176,28.39588],[94.30858,28.37551],[94.32213,28.36857],[94.32539,28.36143],[94.32966,28.3578],[94.33726,28.3583],[94.34354,28.35516],[94.368,28.35311],[94.37088,28.35171],[94.37279,28.34419],[94.37666,28.3405],[94.38614,28.33584],[94.40137,28.34028],[94.40163,28.33855],[94.41332,28.35788],[94.43473,28.37359],[94.44615,28.40357],[94.48544,28.39575],[94.49683,28.41285],[94.5004,28.46067],[94.51183,28.46638],[94.54485,28.46872],[94.54288,28.48126],[94.56096,28.48982],[94.56001,28.49649],[94.54383,28.51267],[94.53812,28.5336],[94.54193,28.57739],[94.53621,28.58881],[94.51337,28.59642],[94.48101,28.60023],[94.4572,28.5913],[94.45038,28.61551],[94.46752,28.62586],[94.48074,28.66531],[94.48455,28.69101],[94.47693,28.70529],[94.45885,28.71861],[94.44362,28.74621],[94.43412,28.75477],[94.43382,28.76414],[94.44275,28.77723],[94.4362,28.80994],[94.42371,28.81292],[94.41241,28.83731],[94.39456,28.85396],[94.38267,28.87835],[94.3785,28.89204],[94.39566,28.93212],[94.36764,28.95652],[94.34276,28.98383],[94.19159,29.03725],[94.18606,29.02873],[94.17658,29.00703],[94.17013,28.97163],[94.16446,28.95746],[94.14985,28.94401],[94.07467,28.89093],[94.05367,28.87264],[94.03663,28.85113],[94.01336,28.84507],[94.00724,28.8407],[94.00255,28.82267],[93.9867,28.80376],[94.01051,28.77875],[94.0103,28.77279],[94.00659,28.76739],[93.97295,28.74322],[93.97118,28.71532],[93.96771,28.70732]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"729","area_level":"District","area_name":"Kallakurichi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.09618,12.071],[79.09198,12.07726],[79.08522,12.08105],[79.07882,12.07124],[79.07492,12.06961],[79.07181,12.0707],[79.06304,12.06987],[79.06106,12.06063],[79.06476,12.05919],[79.06877,12.05251],[79.06775,12.0504],[79.06049,12.05221],[79.05249,12.03653],[79.04355,12.03801],[79.04271,12.04101],[79.02928,12.04756],[79.02579,12.04638],[79.02517,12.04985],[79.02286,12.05006],[79.02237,12.05433],[79.0209,12.05539],[79.02355,12.05898],[79.03118,12.06222],[79.0315,12.06442],[79.0209,12.06653],[79.01703,12.06461],[79.00869,12.06682],[78.99505,12.06763],[78.99099,12.06319],[78.98847,12.05507],[78.98631,12.06201],[78.98101,12.06556],[78.97537,12.06671],[78.96445,12.06451],[78.95972,12.06875],[78.95337,12.06483],[78.94832,12.05711],[78.94286,12.05261],[78.94154,12.05057],[78.94374,12.05021],[78.94299,12.04683],[78.93943,12.04349],[78.94092,12.04376],[78.94018,12.04205],[78.93377,12.03984],[78.92803,12.02889],[78.91416,12.01451],[78.90316,12.01815],[78.90112,12.01693],[78.89704,12.01761],[78.89241,12.0228],[78.88394,12.02327],[78.87994,12.02679],[78.8737,12.02641],[78.86487,12.01672],[78.84317,12.00908],[78.83832,12.00967],[78.83463,12.00705],[78.81678,12.00942],[78.80432,12.01961],[78.79429,12.01255],[78.78029,12.00769],[78.77139,12.00673],[78.75751,12.01161],[78.74312,11.99539],[78.73477,11.99124],[78.73649,11.98797],[78.71807,11.98749],[78.71168,11.96839],[78.70986,11.96662],[78.71333,11.95074],[78.70828,11.95107],[78.70775,11.94636],[78.70428,11.94256],[78.70442,11.94001],[78.71081,11.93176],[78.71336,11.93213],[78.71871,11.92814],[78.72386,11.91967],[78.7189,11.91354],[78.71132,11.90899],[78.71023,11.90334],[78.70811,11.90258],[78.70824,11.89794],[78.69472,11.89446],[78.69112,11.89903],[78.68988,11.90401],[78.67746,11.90094],[78.67548,11.89826],[78.66083,11.89532],[78.656,11.89141],[78.65506,11.88536],[78.6502,11.8845],[78.63455,11.88834],[78.63616,11.87857],[78.63351,11.87393],[78.62768,11.87303],[78.62714,11.87106],[78.62772,11.86699],[78.63555,11.86499],[78.64979,11.86636],[78.65529,11.8652],[78.65845,11.86126],[78.65858,11.8568],[78.67761,11.85833],[78.6952,11.85123],[78.69364,11.83001],[78.69011,11.81624],[78.69225,11.80388],[78.68518,11.80103],[78.67916,11.80201],[78.66529,11.79665],[78.66222,11.79089],[78.66344,11.78281],[78.66225,11.77987],[78.64317,11.76834],[78.64202,11.76085],[78.64337,11.75607],[78.63907,11.741],[78.63791,11.72124],[78.65267,11.71527],[78.65016,11.67215],[78.64587,11.66044],[78.65002,11.66253],[78.66002,11.66163],[78.65907,11.64794],[78.67651,11.64321],[78.6801,11.64357],[78.6785,11.66499],[78.68296,11.66719],[78.68242,11.66876],[78.67813,11.66763],[78.67787,11.67184],[78.68242,11.68211],[78.69317,11.68935],[78.70043,11.69162],[78.70497,11.68919],[78.70959,11.69016],[78.71252,11.68576],[78.71795,11.6832],[78.72496,11.68902],[78.73776,11.69296],[78.75381,11.69397],[78.7605,11.69741],[78.76508,11.69707],[78.78065,11.70334],[78.79135,11.69341],[78.80119,11.69023],[78.80608,11.68646],[78.80409,11.68592],[78.80532,11.67687],[78.80422,11.67628],[78.8045,11.66618],[78.80649,11.66134],[78.80377,11.65935],[78.79704,11.65863],[78.79752,11.65539],[78.79329,11.65323],[78.79386,11.65208],[78.79088,11.64954],[78.78395,11.6466],[78.77358,11.63661],[78.78108,11.6371],[78.78625,11.6413],[78.78634,11.63342],[78.78797,11.63339],[78.78757,11.6305],[78.78984,11.62888],[78.78917,11.61911],[78.78643,11.61349],[78.78202,11.61459],[78.77674,11.61336],[78.77534,11.60597],[78.77878,11.60405],[78.78312,11.6041],[78.7862,11.59975],[78.79434,11.59949],[78.79562,11.59586],[78.80171,11.59582],[78.81763,11.59087],[78.81731,11.58591],[78.82166,11.58578],[78.82426,11.57919],[78.82933,11.57815],[78.82596,11.571],[78.82306,11.57026],[78.81824,11.56233],[78.81617,11.56171],[78.81462,11.54825],[78.81604,11.54247],[78.82664,11.54431],[78.83472,11.54],[78.83447,11.53117],[78.84479,11.52198],[78.85177,11.52132],[78.85794,11.52311],[78.86418,11.51867],[78.87189,11.51712],[78.87262,11.51163],[78.87763,11.50752],[78.87861,11.50985],[78.88567,11.50613],[78.89202,11.5067],[78.89963,11.50458],[78.90494,11.50535],[78.91137,11.52332],[78.91647,11.52839],[78.9177,11.533],[78.9149,11.53382],[78.91526,11.53853],[78.91873,11.54431],[78.91809,11.54623],[78.92122,11.55384],[78.91955,11.5562],[78.9238,11.56708],[78.93063,11.56582],[78.93179,11.56767],[78.93691,11.56737],[78.93853,11.56959],[78.94642,11.57123],[78.95612,11.56928],[78.96184,11.56983],[78.97,11.57427],[78.97426,11.57456],[78.97367,11.56951],[78.98103,11.56702],[78.99184,11.57071],[78.9963,11.57582],[79.00441,11.57463],[79.0045,11.57735],[79.00761,11.57962],[79.00806,11.58214],[79.01334,11.58341],[79.01544,11.58608],[79.0154,11.58964],[79.01887,11.59287],[79.01453,11.59526],[79.01435,11.5999],[79.01214,11.60266],[79.01839,11.60675],[79.02385,11.60278],[79.02954,11.60178],[79.03346,11.59798],[79.04176,11.59913],[79.04452,11.59669],[79.04981,11.59562],[79.04811,11.59153],[79.04353,11.58923],[79.04318,11.58723],[79.04919,11.58572],[79.05501,11.5864],[79.05799,11.58966],[79.06467,11.59279],[79.06526,11.59685],[79.06823,11.59755],[79.06815,11.59877],[79.07236,11.59921],[79.07787,11.59689],[79.07697,11.60799],[79.06557,11.61133],[79.06934,11.62093],[79.06748,11.63022],[79.07822,11.62959],[79.08409,11.63432],[79.09135,11.62329],[79.09863,11.62115],[79.09822,11.61417],[79.10287,11.61068],[79.10618,11.61489],[79.11294,11.61329],[79.11633,11.60953],[79.11617,11.60536],[79.11806,11.60552],[79.11647,11.59918],[79.13359,11.59393],[79.13412,11.59013],[79.13576,11.58895],[79.14365,11.58769],[79.14774,11.58948],[79.15023,11.59746],[79.15649,11.59824],[79.17689,11.59172],[79.18369,11.58598],[79.19028,11.59354],[79.19254,11.59299],[79.19498,11.60339],[79.20154,11.61158],[79.20259,11.61056],[79.20383,11.61194],[79.20553,11.61634],[79.21239,11.62009],[79.21261,11.6254],[79.20988,11.62589],[79.2112,11.63038],[79.21,11.63372],[79.21554,11.63729],[79.21582,11.63917],[79.21753,11.638],[79.21889,11.6389],[79.2237,11.63552],[79.22464,11.63198],[79.23561,11.62933],[79.24121,11.64176],[79.2441,11.64247],[79.24865,11.64902],[79.24874,11.6524],[79.26296,11.64922],[79.26317,11.64684],[79.27089,11.64373],[79.27109,11.64621],[79.2734,11.64512],[79.2752,11.64712],[79.27836,11.64717],[79.27957,11.64919],[79.29146,11.64727],[79.29666,11.64269],[79.29635,11.63636],[79.30873,11.63266],[79.31161,11.6439],[79.31851,11.64208],[79.31998,11.648],[79.32641,11.64784],[79.32802,11.64921],[79.32954,11.65774],[79.33231,11.66096],[79.34473,11.66025],[79.35116,11.65763],[79.35984,11.65989],[79.36321,11.66259],[79.36052,11.66475],[79.36155,11.67269],[79.37428,11.67512],[79.37691,11.67912],[79.38162,11.67804],[79.38498,11.68086],[79.39548,11.68027],[79.39523,11.67725],[79.39928,11.67737],[79.40997,11.67276],[79.41839,11.6715],[79.41784,11.6679],[79.42846,11.66679],[79.43165,11.66777],[79.43338,11.66394],[79.43563,11.66595],[79.44428,11.66601],[79.4425,11.67116],[79.44269,11.6862],[79.43963,11.6915],[79.43715,11.69176],[79.43452,11.70334],[79.43706,11.71858],[79.43586,11.72394],[79.43497,11.72608],[79.4291,11.72819],[79.42845,11.73116],[79.43111,11.73195],[79.43132,11.73073],[79.43766,11.73373],[79.4398,11.73763],[79.44255,11.73529],[79.44653,11.73526],[79.45692,11.73785],[79.46279,11.74323],[79.46173,11.75028],[79.46309,11.75419],[79.46031,11.75531],[79.46375,11.76725],[79.45378,11.76967],[79.4505,11.76825],[79.45088,11.76457],[79.44703,11.76389],[79.44627,11.76538],[79.44324,11.7652],[79.44198,11.76837],[79.43878,11.76663],[79.43575,11.76781],[79.43531,11.77503],[79.43064,11.77854],[79.43197,11.78302],[79.43544,11.78227],[79.43935,11.79067],[79.43828,11.79521],[79.44169,11.80834],[79.44352,11.80996],[79.44945,11.80821],[79.45368,11.81108],[79.46642,11.80728],[79.46589,11.8022],[79.46393,11.80056],[79.46831,11.79924],[79.47107,11.80003],[79.47337,11.80534],[79.47899,11.80667],[79.48269,11.81185],[79.47978,11.81997],[79.47701,11.82297],[79.48093,11.82837],[79.4805,11.83718],[79.47164,11.83535],[79.47196,11.83916],[79.46971,11.84102],[79.47108,11.84228],[79.4688,11.84356],[79.47242,11.84509],[79.47223,11.84688],[79.46043,11.84682],[79.4515,11.84908],[79.45233,11.85398],[79.45004,11.85404],[79.45124,11.86276],[79.45342,11.8628],[79.45508,11.87149],[79.44098,11.87278],[79.43088,11.88073],[79.41457,11.8989],[79.3749,11.91953],[79.364,11.91806],[79.34875,11.92601],[79.33074,11.92268],[79.32662,11.92424],[79.32157,11.92094],[79.31545,11.92259],[79.31458,11.92026],[79.30813,11.92039],[79.30664,11.92352],[79.30813,11.92619],[79.3036,11.93624],[79.29265,11.94413],[79.28566,11.94559],[79.28452,11.94173],[79.27941,11.94263],[79.27355,11.9448],[79.27404,11.94763],[79.26961,11.94884],[79.26767,11.94785],[79.26417,11.94957],[79.26104,11.95152],[79.26094,11.95631],[79.26558,11.95819],[79.25657,11.96547],[79.25488,11.96328],[79.25128,11.9625],[79.25084,11.95888],[79.24844,11.95744],[79.24838,11.95111],[79.23314,11.95376],[79.23397,11.95936],[79.23695,11.95967],[79.23838,11.96237],[79.24188,11.96053],[79.24304,11.96323],[79.23619,11.96577],[79.22944,11.97266],[79.23407,11.97908],[79.23577,11.98835],[79.23917,11.99378],[79.23588,11.99929],[79.23238,12.00051],[79.23072,11.99858],[79.2279,11.99929],[79.22709,11.99329],[79.22325,11.99278],[79.22413,11.98912],[79.2179,11.99059],[79.21763,11.98947],[79.22054,11.98876],[79.22014,11.98739],[79.21765,11.98752],[79.21517,11.98551],[79.21157,11.98669],[79.21111,11.98024],[79.21446,11.98095],[79.21843,11.9793],[79.22045,11.97672],[79.22025,11.97343],[79.21746,11.97739],[79.21349,11.97874],[79.21225,11.97283],[79.20897,11.97463],[79.1847,11.97275],[79.18638,11.98576],[79.17118,11.98886],[79.16841,11.9922],[79.17077,12.00254],[79.16829,12.0035],[79.16735,12.00584],[79.17062,12.01031],[79.16994,12.01941],[79.17263,12.03048],[79.16547,12.03188],[79.16073,12.03587],[79.15863,12.03556],[79.14749,12.04412],[79.14001,12.03873],[79.13643,12.02608],[79.12543,12.01877],[79.11957,12.02103],[79.11254,12.02646],[79.10709,12.0198],[79.09933,12.02307],[79.09954,12.02465],[79.09599,12.02485],[79.09455,12.03002],[79.09113,12.03118],[79.0904,12.02976],[79.08673,12.0306],[79.0866,12.02937],[79.07891,12.0315],[79.08114,12.03894],[79.07687,12.04424],[79.08055,12.04709],[79.08088,12.04463],[79.08456,12.04256],[79.08797,12.04243],[79.09009,12.04476],[79.0925,12.04929],[79.0929,12.05543],[79.09848,12.06609],[79.09848,12.06893],[79.09618,12.071]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"73","area_level":"District","area_name":"Rohtak","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.54193,29.09504],[76.53788,29.09834],[76.5291,29.09168],[76.52689,29.09242],[76.52119,29.0843],[76.51596,29.08572],[76.51007,29.07724],[76.49572,29.08218],[76.47752,29.09215],[76.47318,29.0831],[76.46924,29.08279],[76.46171,29.06591],[76.4546,29.06084],[76.44738,29.06138],[76.44361,29.05541],[76.43168,29.05992],[76.42512,29.06538],[76.40282,29.07567],[76.3988,29.07556],[76.38888,29.06902],[76.37948,29.06564],[76.35842,29.07629],[76.35101,29.0829],[76.33738,29.08281],[76.32123,29.08738],[76.31385,29.08328],[76.30251,29.08611],[76.29941,29.08558],[76.29228,29.07343],[76.28602,29.06931],[76.28317,29.06424],[76.27848,29.06596],[76.27503,29.06335],[76.27184,29.06357],[76.27115,29.06504],[76.26565,29.06498],[76.25825,29.06299],[76.25628,29.0639],[76.25315,29.05989],[76.24475,29.06097],[76.23959,29.0523],[76.23968,29.0455],[76.24317,29.04219],[76.24383,29.03713],[76.25088,29.02497],[76.24517,29.01137],[76.24662,29.00468],[76.23534,29.0],[76.23548,28.99757],[76.23014,28.98958],[76.21407,28.97325],[76.21453,28.96271],[76.21238,28.95512],[76.22244,28.95336],[76.22306,28.9503],[76.24393,28.94143],[76.23648,28.92262],[76.23568,28.91158],[76.237,28.91079],[76.24372,28.90938],[76.25419,28.90361],[76.25593,28.90514],[76.27087,28.90331],[76.27753,28.90589],[76.27793,28.90826],[76.30438,28.90132],[76.30699,28.89838],[76.30892,28.89866],[76.31006,28.90092],[76.32592,28.89685],[76.35265,28.89529],[76.35102,28.89319],[76.35223,28.89114],[76.35824,28.88638],[76.36072,28.8805],[76.36535,28.87895],[76.35276,28.86284],[76.34609,28.84981],[76.34464,28.84951],[76.34499,28.84011],[76.34723,28.83868],[76.34425,28.83207],[76.34295,28.83209],[76.34413,28.83127],[76.34152,28.82457],[76.33629,28.8191],[76.3335,28.81137],[76.33474,28.80809],[76.33986,28.80454],[76.35964,28.79952],[76.35833,28.79726],[76.35916,28.79545],[76.36744,28.78767],[76.37504,28.78432],[76.38564,28.78274],[76.3869,28.7703],[76.39916,28.76266],[76.40609,28.75619],[76.39984,28.73426],[76.3916,28.72969],[76.38718,28.72137],[76.38099,28.71555],[76.37955,28.70505],[76.38029,28.70183],[76.39744,28.68679],[76.40621,28.68257],[76.42,28.70288],[76.41736,28.71402],[76.41454,28.71882],[76.41534,28.72349],[76.42009,28.72429],[76.42525,28.72242],[76.43112,28.72717],[76.44018,28.72892],[76.44533,28.73612],[76.47546,28.74158],[76.49072,28.73907],[76.49318,28.73682],[76.50305,28.74297],[76.52312,28.7375],[76.53024,28.75072],[76.56442,28.7404],[76.5775,28.73391],[76.5789,28.73476],[76.58901,28.74476],[76.59485,28.75443],[76.59636,28.77118],[76.59539,28.78139],[76.60389,28.78864],[76.60419,28.79222],[76.61507,28.78932],[76.62677,28.78925],[76.63279,28.79348],[76.63992,28.80388],[76.64524,28.80415],[76.64533,28.80849],[76.63275,28.8209],[76.63176,28.82506],[76.63225,28.83131],[76.6434,28.83956],[76.64541,28.83915],[76.65233,28.83053],[76.65565,28.81832],[76.66959,28.81317],[76.66888,28.80487],[76.6706,28.79607],[76.69337,28.78893],[76.70893,28.78713],[76.71022,28.77825],[76.70831,28.76868],[76.70622,28.76607],[76.6929,28.76354],[76.69047,28.75158],[76.68689,28.74347],[76.69923,28.73572],[76.70907,28.73617],[76.71542,28.75303],[76.71427,28.75713],[76.71552,28.75878],[76.72203,28.76023],[76.73598,28.7589],[76.74055,28.75676],[76.75,28.76732],[76.75705,28.76935],[76.76401,28.7661],[76.76754,28.76265],[76.76727,28.75565],[76.7644,28.75114],[76.77959,28.74304],[76.78601,28.74844],[76.80775,28.7742],[76.81904,28.78376],[76.82037,28.79116],[76.83413,28.81039],[76.85006,28.80762],[76.85472,28.81357],[76.86325,28.81583],[76.86875,28.8233],[76.86838,28.83297],[76.86302,28.84591],[76.85286,28.85304],[76.84724,28.86075],[76.84166,28.86249],[76.83489,28.86014],[76.8253,28.86117],[76.82307,28.86012],[76.80923,28.86774],[76.8153,28.87604],[76.82593,28.90115],[76.8271,28.91585],[76.81912,28.93115],[76.8144,28.93159],[76.80437,28.92887],[76.79491,28.92446],[76.78926,28.92558],[76.77795,28.93085],[76.77752,28.93388],[76.77166,28.93813],[76.77121,28.94097],[76.77496,28.94855],[76.76269,28.9594],[76.75969,28.96553],[76.75267,28.96501],[76.75,28.96139],[76.74242,28.96142],[76.72606,28.97177],[76.73251,28.9856],[76.73681,28.98958],[76.73425,28.99712],[76.73656,29.00741],[76.72631,29.01115],[76.72196,29.01589],[76.72151,29.02008],[76.71801,29.02313],[76.70618,29.02859],[76.70245,29.03159],[76.69793,29.03894],[76.69006,29.03721],[76.67713,29.04032],[76.66278,29.04759],[76.65261,29.05509],[76.64664,29.0521],[76.64138,29.05195],[76.63387,29.05445],[76.62514,29.05403],[76.60161,29.05794],[76.59931,29.05716],[76.59298,29.0606],[76.58473,29.06024],[76.57959,29.05795],[76.56705,29.0588],[76.5637,29.06223],[76.56134,29.071],[76.55067,29.08016],[76.54608,29.09198],[76.54193,29.09504]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"730","area_level":"District","area_name":"Chengalpattu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[80.13964,13.04472],[80.12939,13.04514],[80.12788,13.03831],[80.12874,13.03497],[80.12305,13.03324],[80.11841,13.0355],[80.11646,13.03988],[80.10874,13.04177],[80.10186,13.03907],[80.09951,13.03494],[80.08859,13.04111],[80.08196,13.04112],[80.08086,13.039],[80.08283,13.03618],[80.08377,13.02845],[80.0822,13.01917],[80.08031,13.01618],[80.07603,13.01725],[80.07314,13.01261],[80.0631,13.00846],[80.05848,13.00888],[80.05772,13.00753],[80.05723,13.00237],[80.06074,13.00129],[80.06123,12.99219],[80.06416,12.9875],[80.06238,12.98196],[80.05291,12.98279],[80.05255,12.97904],[80.04922,12.97481],[80.04692,12.96795],[80.04762,12.96475],[80.05023,12.9647],[80.05107,12.96088],[80.05405,12.95834],[80.0619,12.95786],[80.06142,12.96163],[80.06276,12.96173],[80.064,12.96165],[80.06496,12.95831],[80.07074,12.96334],[80.07255,12.9697],[80.07984,12.96951],[80.08051,12.97299],[80.08567,12.96946],[80.08449,12.96161],[80.08745,12.96183],[80.10417,12.95495],[80.10417,12.95336],[80.10354,12.94938],[80.10091,12.95039],[80.09984,12.94568],[80.09117,12.94679],[80.0875,12.93953],[80.084,12.92611],[80.07348,12.91828],[80.07029,12.91748],[80.06015,12.90009],[80.05668,12.88905],[80.05195,12.88203],[80.05908,12.87283],[80.06134,12.86368],[80.05367,12.85144],[80.05064,12.83905],[80.04016,12.83967],[80.04027,12.83428],[80.03573,12.83357],[80.03191,12.83041],[80.03037,12.82263],[80.02232,12.82217],[80.01732,12.81748],[80.01213,12.817],[80.00851,12.81452],[80.00937,12.80943],[80.00681,12.80924],[80.0061,12.81296],[79.99854,12.81239],[79.99207,12.80961],[79.97835,12.81462],[79.96778,12.81404],[79.96051,12.8241],[79.95684,12.82527],[79.95601,12.81723],[79.95728,12.81684],[79.95835,12.8108],[79.96373,12.80939],[79.96001,12.79748],[79.956,12.79077],[79.94026,12.79059],[79.9409,12.78693],[79.93934,12.78341],[79.93515,12.78444],[79.93262,12.78707],[79.93183,12.79102],[79.92667,12.79839],[79.92518,12.79474],[79.91709,12.79889],[79.91027,12.79987],[79.9059,12.79025],[79.90127,12.78446],[79.87687,12.78002],[79.87707,12.77752],[79.88751,12.77678],[79.8871,12.77436],[79.89103,12.77334],[79.88249,12.76701],[79.90356,12.75563],[79.9185,12.75242],[79.92659,12.74578],[79.94134,12.73023],[79.94221,12.72515],[79.95171,12.71084],[79.95275,12.6994],[79.94688,12.70004],[79.94324,12.7027],[79.9311,12.70238],[79.93225,12.69532],[79.91705,12.69624],[79.91602,12.69119],[79.91699,12.68248],[79.92129,12.68017],[79.92041,12.67096],[79.92357,12.65846],[79.92306,12.65097],[79.92656,12.6438],[79.92485,12.64258],[79.92798,12.63992],[79.92852,12.63717],[79.9245,12.63258],[79.91311,12.63612],[79.9135,12.63801],[79.90914,12.64018],[79.89696,12.64163],[79.89539,12.63633],[79.8919,12.63202],[79.88888,12.63206],[79.88801,12.63037],[79.88298,12.63195],[79.87364,12.63102],[79.8705,12.62655],[79.86306,12.62662],[79.84782,12.63148],[79.84563,12.63092],[79.84067,12.62389],[79.82968,12.62349],[79.82355,12.62065],[79.82052,12.62061],[79.8203,12.62271],[79.80528,12.62907],[79.80807,12.6203],[79.81172,12.61594],[79.81101,12.61248],[79.81528,12.60611],[79.81345,12.59694],[79.81176,12.59707],[79.81128,12.59554],[79.81476,12.58751],[79.81759,12.58855],[79.8171,12.58238],[79.82062,12.5789],[79.82134,12.56929],[79.81929,12.5655],[79.7959,12.5682],[79.79276,12.56062],[79.78791,12.56188],[79.78013,12.56048],[79.77888,12.55616],[79.77627,12.55619],[79.77686,12.5519],[79.77327,12.5511],[79.76868,12.55223],[79.76369,12.55022],[79.76303,12.5565],[79.75368,12.56174],[79.75228,12.54894],[79.75477,12.54803],[79.75496,12.54314],[79.75065,12.54108],[79.74831,12.53668],[79.74583,12.53762],[79.74393,12.53189],[79.74866,12.5236],[79.75383,12.52413],[79.75281,12.51942],[79.75615,12.51496],[79.75579,12.51194],[79.75295,12.51047],[79.75173,12.50737],[79.7497,12.50733],[79.74975,12.50285],[79.74464,12.50327],[79.7325,12.49851],[79.72072,12.50051],[79.72203,12.49401],[79.7274,12.49444],[79.73436,12.49002],[79.73995,12.48883],[79.74126,12.48501],[79.74729,12.48414],[79.7441,12.47251],[79.74946,12.45674],[79.74092,12.45675],[79.73812,12.45416],[79.73337,12.45408],[79.73452,12.45216],[79.73387,12.44727],[79.73849,12.43898],[79.73627,12.42841],[79.72271,12.43802],[79.71783,12.43925],[79.71672,12.43158],[79.71149,12.43261],[79.70586,12.43139],[79.70541,12.4297],[79.70864,12.42787],[79.70732,12.41513],[79.69154,12.42094],[79.69121,12.41374],[79.69877,12.41033],[79.69776,12.40225],[79.68886,12.40337],[79.68747,12.39992],[79.68244,12.39674],[79.67935,12.3967],[79.67352,12.3934],[79.66946,12.39381],[79.6642,12.38768],[79.66009,12.37897],[79.66757,12.377],[79.66367,12.36806],[79.65689,12.36413],[79.65557,12.36148],[79.64712,12.35887],[79.64039,12.34468],[79.64908,12.34087],[79.65324,12.32986],[79.65653,12.32815],[79.65767,12.32965],[79.66047,12.32718],[79.66063,12.3231],[79.67001,12.31769],[79.6811,12.31578],[79.68335,12.31665],[79.68555,12.32377],[79.69745,12.32493],[79.70008,12.3333],[79.70621,12.33463],[79.71597,12.33548],[79.72191,12.33118],[79.73612,12.32921],[79.7503,12.32484],[79.75432,12.32726],[79.759,12.32537],[79.76044,12.32966],[79.76352,12.32962],[79.77882,12.33899],[79.78826,12.336],[79.79923,12.3374],[79.80024,12.3313],[79.80277,12.32797],[79.80401,12.32654],[79.80951,12.32624],[79.8082,12.32477],[79.8143,12.32054],[79.81985,12.31182],[79.8214,12.31426],[79.82742,12.31292],[79.83218,12.29894],[79.83804,12.29356],[79.84163,12.28776],[79.84129,12.2852],[79.84417,12.28019],[79.84119,12.2798],[79.84653,12.2775],[79.84729,12.2757],[79.84923,12.27625],[79.86243,12.26194],[79.8659,12.25564],[79.86551,12.25178],[79.87344,12.24287],[79.88129,12.24018],[79.88499,12.23596],[79.89537,12.23334],[79.90087,12.22941],[79.90874,12.23041],[79.91426,12.23552],[79.92451,12.23159],[79.92062,12.24666],[79.92136,12.25005],[79.94421,12.24226],[79.95532,12.22883],[79.95986,12.23419],[79.964,12.23315],[79.96967,12.2368],[79.9731,12.23336],[79.98319,12.24107],[79.98805,12.25146],[80.00378,12.25678],[80.00402,12.25411],[80.00864,12.2548],[80.01242,12.26271],[80.0151,12.26482],[80.02575,12.28845],[80.05172,12.32663],[80.08274,12.36612],[80.11337,12.40194],[80.15042,12.45442],[80.15735,12.46903],[80.16203,12.50823],[80.16132,12.51219],[80.16803,12.53509],[80.18546,12.57432],[80.18681,12.58713],[80.19185,12.60141],[80.19779,12.61485],[80.20072,12.61714],[80.19865,12.62102],[80.19914,12.6253],[80.20833,12.65081],[80.20833,12.65455],[80.2098,12.65402],[80.21227,12.66032],[80.24393,12.74707],[80.25528,12.78388],[80.25457,12.78957],[80.25215,12.79023],[80.24999,12.79431],[80.24824,12.80895],[80.24912,12.8567],[80.23638,12.85834],[80.23287,12.85221],[80.22002,12.85251],[80.21288,12.86085],[80.20893,12.87285],[80.20933,12.87551],[80.2135,12.88041],[80.21648,12.89021],[80.21738,12.91056],[80.19883,12.9111],[80.2014,12.92388],[80.19871,12.92712],[80.19922,12.93336],[80.19432,12.93716],[80.18794,12.93785],[80.19011,12.94192],[80.19426,12.9428],[80.19875,12.94622],[80.19895,12.95033],[80.20229,12.95311],[80.20095,12.9585],[80.19577,12.95993],[80.19588,12.96854],[80.19063,12.9701],[80.18602,12.96821],[80.18169,12.97118],[80.17999,12.97909],[80.16897,12.98019],[80.16745,12.98662],[80.16068,12.99798],[80.16517,13.00424],[80.15971,13.00797],[80.16129,13.0105],[80.16048,13.01225],[80.15819,13.01542],[80.15552,13.01408],[80.15184,13.01701],[80.14484,13.017],[80.14428,13.03163],[80.1465,13.03212],[80.1464,13.03458],[80.14564,13.03748],[80.14197,13.0383],[80.14147,13.04048],[80.13883,13.04143],[80.13964,13.04472]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"731","area_level":"District","area_name":"Ranipet","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[79.65401,13.21055],[79.65587,13.20897],[79.65606,13.20554],[79.64813,13.1995],[79.64435,13.19164],[79.64561,13.19153],[79.64604,13.18668],[79.64495,13.17906],[79.64102,13.17864],[79.64091,13.17686],[79.63506,13.1718],[79.6301,13.17287],[79.63202,13.16956],[79.63095,13.16584],[79.63288,13.16158],[79.63204,13.15827],[79.63675,13.15154],[79.63586,13.14887],[79.63106,13.14556],[79.61554,13.14461],[79.60316,13.14751],[79.58917,13.14755],[79.59321,13.14055],[79.59577,13.1399],[79.59929,13.13168],[79.59694,13.12315],[79.59439,13.12198],[79.57091,13.12189],[79.57044,13.12832],[79.56848,13.12889],[79.56973,13.13238],[79.56846,13.1375],[79.55952,13.13629],[79.55306,13.13751],[79.55308,13.1349],[79.54135,13.13762],[79.53258,13.13648],[79.52523,13.14007],[79.52251,13.13922],[79.52265,13.14419],[79.51729,13.14378],[79.51582,13.14156],[79.50577,13.1373],[79.50296,13.13868],[79.50031,13.1361],[79.49698,13.13587],[79.49726,13.1386],[79.48269,13.13992],[79.4814,13.13769],[79.48309,13.13118],[79.48171,13.12816],[79.47519,13.13039],[79.47419,13.12712],[79.47529,13.10767],[79.46454,13.10735],[79.46242,13.0954],[79.45094,13.09325],[79.45063,13.09894],[79.44868,13.10313],[79.44625,13.10335],[79.44366,13.11401],[79.43867,13.11387],[79.43855,13.11164],[79.43411,13.11149],[79.4332,13.11596],[79.42898,13.1165],[79.4321,13.11844],[79.4517,13.12112],[79.45352,13.12648],[79.45176,13.12858],[79.44768,13.12853],[79.44664,13.12637],[79.43861,13.12506],[79.43443,13.1318],[79.43406,13.13649],[79.42993,13.13825],[79.41878,13.14996],[79.41535,13.13813],[79.4115,13.13672],[79.41431,13.12439],[79.41331,13.11875],[79.41046,13.1164],[79.40412,13.1153],[79.40161,13.10421],[79.40401,13.10235],[79.40415,13.09976],[79.41583,13.10475],[79.42034,13.10381],[79.42032,13.09975],[79.42291,13.09992],[79.42263,13.09688],[79.41896,13.0951],[79.41523,13.08968],[79.41675,13.08463],[79.41362,13.08538],[79.4012,13.08003],[79.40151,13.08105],[79.37951,13.08012],[79.3793,13.07547],[79.3553,13.06682],[79.3515,13.06249],[79.34674,13.06336],[79.33495,13.06055],[79.33012,13.07295],[79.32473,13.07768],[79.30156,13.08447],[79.29763,13.08791],[79.29954,13.08884],[79.29881,13.09183],[79.29338,13.10141],[79.29048,13.1001],[79.27245,13.08702],[79.29055,13.05765],[79.29454,13.04719],[79.29207,13.04279],[79.28483,13.03772],[79.2781,13.00733],[79.26954,12.9976],[79.26823,12.98762],[79.26598,12.98742],[79.2701,12.96659],[79.26916,12.95667],[79.26364,12.94714],[79.26877,12.94653],[79.26785,12.94014],[79.26216,12.94614],[79.26084,12.94373],[79.25179,12.95179],[79.23321,12.95703],[79.22326,12.95643],[79.21673,12.95495],[79.21552,12.94655],[79.21001,12.93851],[79.20307,12.93764],[79.19438,12.93353],[79.18814,12.92596],[79.18625,12.91781],[79.19133,12.90807],[79.19879,12.90485],[79.20583,12.90485],[79.2109,12.89521],[79.19963,12.88915],[79.19775,12.89385],[79.19551,12.89438],[79.19468,12.89287],[79.19159,12.88371],[79.19403,12.87524],[79.1919,12.87365],[79.1889,12.86504],[79.18401,12.86072],[79.18192,12.83485],[79.17789,12.82504],[79.1782,12.82003],[79.19084,12.80992],[79.19147,12.80423],[79.19404,12.80287],[79.19571,12.7976],[79.19549,12.79246],[79.19773,12.79202],[79.198,12.79009],[79.20462,12.7888],[79.20868,12.78473],[79.21937,12.79236],[79.22364,12.7908],[79.22959,12.79537],[79.23813,12.79765],[79.24048,12.8013],[79.2393,12.80166],[79.23904,12.80583],[79.24021,12.8086],[79.24361,12.80793],[79.24394,12.80955],[79.24845,12.80665],[79.25232,12.80812],[79.25416,12.8118],[79.25034,12.81253],[79.25071,12.81685],[79.24907,12.81807],[79.25025,12.8239],[79.25559,12.82268],[79.25561,12.82143],[79.26176,12.81871],[79.2588,12.81415],[79.26011,12.80713],[79.26423,12.80526],[79.26111,12.79981],[79.26166,12.79472],[79.27658,12.78858],[79.27929,12.78692],[79.27785,12.78438],[79.28781,12.77915],[79.28829,12.77548],[79.28363,12.76338],[79.28949,12.75287],[79.2947,12.75129],[79.29599,12.74723],[79.30998,12.74526],[79.31094,12.74267],[79.32302,12.74158],[79.32287,12.74014],[79.3276,12.73994],[79.32733,12.7382],[79.33047,12.73714],[79.33024,12.73522],[79.34339,12.73154],[79.34492,12.72776],[79.34515,12.71523],[79.34781,12.713],[79.34579,12.70768],[79.33986,12.7041],[79.33894,12.70123],[79.34778,12.69391],[79.34812,12.69525],[79.35774,12.6968],[79.35626,12.69842],[79.3564,12.70418],[79.35752,12.70431],[79.35552,12.70555],[79.35554,12.71004],[79.35366,12.71103],[79.35564,12.71895],[79.36112,12.71799],[79.36686,12.71418],[79.36546,12.7195],[79.37322,12.72253],[79.37645,12.72174],[79.37834,12.72614],[79.37993,12.72619],[79.37978,12.73347],[79.38718,12.73222],[79.38762,12.72814],[79.39043,12.72747],[79.39052,12.7262],[79.39471,12.7275],[79.39547,12.72938],[79.39238,12.71392],[79.38103,12.71107],[79.38007,12.70777],[79.38256,12.7059],[79.38152,12.70328],[79.3835,12.70038],[79.3864,12.70068],[79.38776,12.69649],[79.39278,12.69617],[79.39252,12.69265],[79.39495,12.68983],[79.38831,12.68785],[79.38719,12.68525],[79.38276,12.68281],[79.37001,12.68058],[79.36791,12.67712],[79.35627,12.6723],[79.3536,12.66939],[79.35337,12.66824],[79.36057,12.66707],[79.36244,12.65175],[79.35838,12.65191],[79.35672,12.6488],[79.35182,12.64637],[79.35786,12.63971],[79.36371,12.63801],[79.36933,12.63223],[79.38411,12.62877],[79.40518,12.64578],[79.40991,12.65609],[79.4268,12.6581],[79.43568,12.66615],[79.45098,12.67118],[79.45432,12.679],[79.45474,12.68176],[79.453,12.68321],[79.45387,12.68518],[79.45513,12.68464],[79.45648,12.68759],[79.45901,12.68685],[79.45911,12.68994],[79.45625,12.69278],[79.45499,12.6991],[79.46546,12.70054],[79.46672,12.71152],[79.46262,12.71696],[79.47099,12.72407],[79.47241,12.72803],[79.47495,12.72811],[79.47533,12.7314],[79.47004,12.73387],[79.46965,12.73249],[79.46692,12.73217],[79.45937,12.73725],[79.45557,12.73606],[79.45555,12.73852],[79.45339,12.74026],[79.45429,12.7455],[79.45857,12.75359],[79.46241,12.75723],[79.46753,12.75665],[79.4664,12.76472],[79.46916,12.77079],[79.46683,12.77136],[79.46568,12.77696],[79.4598,12.78336],[79.4623,12.79853],[79.47258,12.79817],[79.47346,12.79988],[79.47646,12.79953],[79.47715,12.80713],[79.45736,12.81047],[79.46078,12.82943],[79.45905,12.83481],[79.45709,12.83494],[79.457,12.8442],[79.4602,12.84316],[79.46189,12.84929],[79.47289,12.85131],[79.47441,12.85883],[79.46962,12.86121],[79.47129,12.86189],[79.4718,12.86533],[79.47417,12.86544],[79.47181,12.86652],[79.47256,12.87427],[79.47855,12.87262],[79.48991,12.87432],[79.48984,12.87214],[79.49868,12.86855],[79.50063,12.87201],[79.50862,12.85718],[79.5119,12.8566],[79.53096,12.86225],[79.53918,12.86293],[79.54476,12.85906],[79.55962,12.85355],[79.56438,12.8558],[79.56714,12.85945],[79.5664,12.86247],[79.56401,12.86909],[79.5584,12.87295],[79.55905,12.87752],[79.55672,12.87888],[79.55701,12.8849],[79.55831,12.88382],[79.56414,12.88598],[79.56526,12.89133],[79.56826,12.8938],[79.56627,12.8959],[79.56959,12.89701],[79.56752,12.89878],[79.56827,12.89957],[79.57771,12.89979],[79.58984,12.90286],[79.59625,12.90694],[79.6027,12.90726],[79.61978,12.91349],[79.62886,12.91964],[79.6324,12.92006],[79.6354,12.9237],[79.63764,12.92442],[79.64051,12.92291],[79.66308,12.93044],[79.65942,12.94123],[79.66043,12.94486],[79.65888,12.95058],[79.66489,12.95151],[79.67529,12.95643],[79.69652,12.97077],[79.70103,12.9763],[79.71145,12.97849],[79.71329,12.98076],[79.72,12.98088],[79.7341,12.98679],[79.74528,12.99584],[79.74874,13.00375],[79.76782,13.01497],[79.76883,13.01711],[79.78059,13.02253],[79.78779,13.02251],[79.78989,13.02457],[79.78698,13.02891],[79.78615,13.03907],[79.79023,13.04563],[79.79201,13.046],[79.79159,13.05375],[79.79005,13.05356],[79.78861,13.05661],[79.78168,13.05329],[79.77909,13.05367],[79.77888,13.06059],[79.77589,13.06282],[79.76997,13.06009],[79.7621,13.05179],[79.75141,13.05197],[79.74771,13.04958],[79.74585,13.05591],[79.7426,13.05539],[79.74262,13.05703],[79.73722,13.06101],[79.73054,13.05655],[79.72996,13.05449],[79.71861,13.05373],[79.71852,13.05843],[79.72445,13.0595],[79.72387,13.0627],[79.7258,13.06272],[79.72577,13.06796],[79.73812,13.06553],[79.74164,13.07601],[79.73553,13.08686],[79.73633,13.09512],[79.73427,13.09672],[79.72713,13.09643],[79.72278,13.09939],[79.70855,13.0976],[79.70744,13.09994],[79.70147,13.09942],[79.70167,13.1043],[79.70369,13.10068],[79.70478,13.10099],[79.70223,13.1108],[79.71353,13.10858],[79.71487,13.10627],[79.71891,13.10491],[79.71904,13.10685],[79.72208,13.10762],[79.72409,13.11667],[79.72661,13.11824],[79.73138,13.11482],[79.73605,13.11788],[79.73518,13.12008],[79.73744,13.12088],[79.73632,13.12764],[79.739,13.14343],[79.73733,13.14643],[79.73875,13.16064],[79.73641,13.16382],[79.73654,13.16694],[79.71948,13.16508],[79.71282,13.16247],[79.70624,13.16329],[79.70208,13.16186],[79.7015,13.15879],[79.69486,13.15904],[79.69385,13.164],[79.69247,13.16432],[79.69182,13.17724],[79.70079,13.18119],[79.70076,13.19165],[79.69204,13.19185],[79.68418,13.18717],[79.67014,13.18325],[79.6716,13.18805],[79.67151,13.20379],[79.66272,13.2061],[79.66121,13.21042],[79.65401,13.21055]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"732","area_level":"District","area_name":"Tirupathur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.49666,12.74518],[78.49317,12.74715],[78.48909,12.74198],[78.49269,12.73564],[78.49696,12.73134],[78.49893,12.73106],[78.49986,12.73124],[78.50165,12.73111],[78.50236,12.72912],[78.50308,12.72782],[78.5042,12.72504],[78.50644,12.72434],[78.50593,12.72361],[78.50581,12.72287],[78.50597,12.72252],[78.50687,12.72233],[78.50716,12.72317],[78.50787,12.7238],[78.50862,12.72419],[78.50927,12.72423],[78.5104,12.72488],[78.5117,12.72673],[78.51234,12.72876],[78.5131,12.73012],[78.51318,12.73209],[78.51285,12.73264],[78.51383,12.73447],[78.51357,12.73462],[78.51202,12.73421],[78.51174,12.73432],[78.51142,12.73476],[78.50903,12.73557],[78.50821,12.73641],[78.50714,12.73711],[78.50679,12.73814],[78.507,12.7387],[78.50665,12.74007],[78.50593,12.74186],[78.50527,12.74296],[78.50047,12.74358],[78.49785,12.74538],[78.49741,12.74478],[78.49666,12.74518]]],[[[78.91091,12.89244],[78.91313,12.89473],[78.91327,12.90242],[78.91789,12.91067],[78.90779,12.90999],[78.89992,12.90729],[78.89598,12.90515],[78.89627,12.90351],[78.88742,12.89376],[78.87595,12.89139],[78.86241,12.88342],[78.8453,12.87725],[78.83928,12.86947],[78.82415,12.86019],[78.81089,12.8541],[78.7996,12.85288],[78.79409,12.8486],[78.78258,12.84729],[78.77592,12.83977],[78.77322,12.83359],[78.75927,12.82681],[78.75549,12.8228],[78.75156,12.82133],[78.74917,12.81771],[78.7476,12.82155],[78.74469,12.82326],[78.74528,12.82425],[78.73414,12.83044],[78.73736,12.84248],[78.73622,12.84728],[78.73407,12.84803],[78.73455,12.85048],[78.73302,12.85071],[78.73041,12.86565],[78.71869,12.8647],[78.72008,12.86013],[78.71701,12.85906],[78.72013,12.8517],[78.71628,12.85018],[78.71462,12.85289],[78.71676,12.85698],[78.71207,12.8598],[78.71199,12.85875],[78.6868,12.86072],[78.65395,12.86532],[78.6447,12.86336],[78.6029,12.84474],[78.60776,12.8219],[78.60039,12.81842],[78.60116,12.80368],[78.59307,12.79823],[78.59252,12.78268],[78.57605,12.77191],[78.57656,12.76738],[78.56839,12.76693],[78.56558,12.75936],[78.56153,12.76145],[78.55563,12.75579],[78.55826,12.75371],[78.55834,12.74994],[78.5632,12.75132],[78.5597,12.74919],[78.56012,12.74378],[78.55616,12.74271],[78.55532,12.73928],[78.56386,12.73762],[78.56055,12.72716],[78.55442,12.71928],[78.55604,12.71519],[78.56159,12.71001],[78.55488,12.70752],[78.55662,12.70361],[78.55588,12.70016],[78.54587,12.69494],[78.54176,12.69106],[78.53636,12.69038],[78.53141,12.69671],[78.52929,12.70912],[78.53176,12.71175],[78.53425,12.71024],[78.53505,12.70732],[78.53774,12.71045],[78.53996,12.70822],[78.54423,12.71021],[78.53697,12.71332],[78.5377,12.71687],[78.53323,12.71398],[78.52507,12.71542],[78.52686,12.72161],[78.51754,12.71474],[78.51999,12.71219],[78.51907,12.71039],[78.51455,12.71041],[78.51462,12.70791],[78.51191,12.70767],[78.5033,12.71699],[78.50396,12.71123],[78.50193,12.70445],[78.49658,12.70325],[78.49932,12.70161],[78.49941,12.69925],[78.50399,12.69864],[78.50291,12.69191],[78.50744,12.69141],[78.50336,12.68991],[78.50406,12.68346],[78.50252,12.68416],[78.50386,12.68191],[78.50012,12.67991],[78.49933,12.67509],[78.48484,12.67329],[78.4845,12.67166],[78.4679,12.67589],[78.47051,12.65056],[78.47478,12.64763],[78.47056,12.64459],[78.47172,12.63204],[78.46497,12.62403],[78.45846,12.62964],[78.43483,12.62955],[78.42707,12.63524],[78.41535,12.62927],[78.40685,12.62026],[78.41043,12.61354],[78.40734,12.60266],[78.41027,12.59913],[78.40969,12.58819],[78.41838,12.57227],[78.42123,12.57023],[78.42111,12.56538],[78.41789,12.56403],[78.41817,12.55663],[78.41611,12.55021],[78.41689,12.53457],[78.41451,12.53068],[78.41578,12.52428],[78.41701,12.52422],[78.41305,12.5171],[78.41934,12.51375],[78.41985,12.50817],[78.41554,12.48822],[78.41812,12.4855],[78.41858,12.48233],[78.42445,12.48058],[78.42517,12.47461],[78.43007,12.4708],[78.4313,12.46615],[78.4351,12.46084],[78.44482,12.45512],[78.45018,12.44936],[78.44759,12.44425],[78.44793,12.44131],[78.4523,12.43104],[78.45557,12.42849],[78.44849,12.41435],[78.44613,12.41393],[78.44168,12.40798],[78.43583,12.39382],[78.44102,12.39009],[78.44488,12.39183],[78.45878,12.38495],[78.46313,12.38663],[78.46477,12.39186],[78.48694,12.38988],[78.49015,12.38686],[78.49263,12.39977],[78.49007,12.40308],[78.49535,12.40884],[78.4961,12.41212],[78.49881,12.40715],[78.50187,12.40588],[78.50362,12.40256],[78.50858,12.39876],[78.51258,12.40111],[78.51407,12.40715],[78.51992,12.40456],[78.52568,12.39857],[78.52808,12.39909],[78.536,12.39629],[78.54352,12.39791],[78.55578,12.39025],[78.56446,12.38792],[78.56752,12.389],[78.56962,12.38011],[78.58213,12.36619],[78.58452,12.36061],[78.61204,12.35212],[78.61323,12.3495],[78.61725,12.34727],[78.61395,12.3426],[78.61547,12.33754],[78.61121,12.33001],[78.60459,12.33176],[78.59909,12.32327],[78.59362,12.32232],[78.5912,12.31578],[78.58833,12.31277],[78.58897,12.30977],[78.59276,12.30737],[78.5984,12.31323],[78.60358,12.31299],[78.60945,12.30977],[78.60972,12.29756],[78.6131,12.29415],[78.6042,12.27921],[78.60132,12.26723],[78.60381,12.26259],[78.60976,12.26128],[78.61676,12.26756],[78.62372,12.26482],[78.64142,12.28217],[78.64387,12.28084],[78.64109,12.27167],[78.6394,12.27048],[78.64063,12.26776],[78.6387,12.26379],[78.6352,12.26122],[78.64803,12.25838],[78.65191,12.25899],[78.65607,12.26256],[78.66661,12.26569],[78.67844,12.2718],[78.67705,12.27288],[78.67911,12.27646],[78.68576,12.2832],[78.68759,12.28093],[78.69394,12.29406],[78.7035,12.29604],[78.71001,12.30413],[78.71267,12.31869],[78.72504,12.34808],[78.72501,12.3539],[78.72868,12.35911],[78.72918,12.37384],[78.7315,12.37444],[78.73202,12.37728],[78.73733,12.37641],[78.74249,12.37773],[78.74787,12.38162],[78.76068,12.40212],[78.76456,12.41852],[78.76871,12.42248],[78.76816,12.43171],[78.76943,12.435],[78.76414,12.4423],[78.75856,12.44274],[78.7725,12.46085],[78.77503,12.45862],[78.77755,12.4598],[78.77797,12.4652],[78.77969,12.46555],[78.77551,12.47218],[78.77588,12.48357],[78.77471,12.48533],[78.7774,12.48623],[78.77937,12.48368],[78.78209,12.48435],[78.7856,12.49367],[78.78982,12.49985],[78.79377,12.49657],[78.79823,12.49728],[78.79944,12.50134],[78.81771,12.52928],[78.81776,12.5324],[78.82432,12.54535],[78.8256,12.55058],[78.82406,12.55379],[78.82786,12.55803],[78.83944,12.58918],[78.84921,12.60844],[78.84791,12.6111],[78.85191,12.61463],[78.85295,12.6212],[78.85559,12.62193],[78.85718,12.62468],[78.85825,12.63347],[78.84495,12.64162],[78.83871,12.64325],[78.81424,12.63883],[78.80865,12.63621],[78.83578,12.65803],[78.83993,12.66481],[78.84148,12.67842],[78.85642,12.68271],[78.85389,12.68764],[78.85009,12.68997],[78.84488,12.69675],[78.84644,12.70397],[78.85368,12.71661],[78.85365,12.72037],[78.84722,12.73734],[78.84891,12.75649],[78.85084,12.75921],[78.85061,12.76307],[78.86105,12.7726],[78.86105,12.77498],[78.86854,12.77567],[78.87181,12.77442],[78.87287,12.77976],[78.87526,12.78242],[78.87254,12.78834],[78.87808,12.79045],[78.87681,12.79236],[78.87952,12.80303],[78.88469,12.81052],[78.88421,12.81238],[78.87747,12.8155],[78.8777,12.81819],[78.87426,12.82016],[78.86905,12.82086],[78.86534,12.81859],[78.86499,12.82625],[78.87491,12.83599],[78.87813,12.83259],[78.88097,12.83207],[78.89128,12.83143],[78.89755,12.8342],[78.89828,12.83763],[78.89646,12.8374],[78.89305,12.84248],[78.88147,12.84035],[78.87752,12.84164],[78.87702,12.84585],[78.88096,12.84903],[78.88008,12.85025],[78.8768,12.8498],[78.87621,12.85337],[78.87781,12.85584],[78.88959,12.85688],[78.89094,12.85414],[78.89432,12.85661],[78.89973,12.85685],[78.89971,12.85331],[78.90197,12.8522],[78.90057,12.84937],[78.90369,12.84918],[78.90493,12.86219],[78.90057,12.86159],[78.90056,12.86535],[78.90221,12.87189],[78.90817,12.87554],[78.91043,12.88114],[78.91077,12.88279],[78.90907,12.88243],[78.90961,12.88585],[78.90596,12.88612],[78.90604,12.88892],[78.91091,12.89244]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"733","area_level":"District","area_name":"Tenkasi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.33937,9.42014],[77.33639,9.4119],[77.3436,9.40084],[77.33977,9.39375],[77.3414,9.38981],[77.33949,9.38741],[77.3366,9.38732],[77.33455,9.38122],[77.33457,9.37821],[77.33664,9.37692],[77.33732,9.36498],[77.33573,9.36392],[77.33333,9.35632],[77.32603,9.34655],[77.32529,9.33711],[77.3201,9.33753],[77.31562,9.33486],[77.3058,9.33779],[77.29997,9.33665],[77.30099,9.33012],[77.29703,9.32951],[77.3018,9.32424],[77.30252,9.31953],[77.29948,9.31418],[77.29954,9.31091],[77.29368,9.30476],[77.28976,9.30403],[77.28849,9.30165],[77.28299,9.30133],[77.28322,9.29131],[77.28788,9.28135],[77.28853,9.27417],[77.28175,9.27232],[77.28352,9.26728],[77.2815,9.26241],[77.28254,9.256],[77.2774,9.24713],[77.27955,9.24383],[77.27877,9.23941],[77.27411,9.23582],[77.27575,9.22898],[77.28166,9.22072],[77.28171,9.21657],[77.2755,9.21169],[77.27038,9.20503],[77.27034,9.2006],[77.26636,9.20045],[77.26314,9.19826],[77.25611,9.19922],[77.25641,9.19598],[77.25149,9.18906],[77.26095,9.18311],[77.26388,9.18411],[77.26516,9.18126],[77.26714,9.17432],[77.26532,9.16307],[77.26681,9.15246],[77.26072,9.14881],[77.26065,9.1443],[77.25272,9.13919],[77.24728,9.1246],[77.24215,9.12505],[77.23134,9.11743],[77.22844,9.11688],[77.22646,9.10819],[77.22106,9.10594],[77.21877,9.10143],[77.21241,9.10048],[77.20915,9.08996],[77.2057,9.08499],[77.20887,9.07404],[77.20551,9.06617],[77.1969,9.0568],[77.19528,9.04934],[77.19746,9.04697],[77.19171,9.04353],[77.18759,9.04314],[77.18232,9.04742],[77.16747,9.0453],[77.16412,9.03841],[77.16039,9.03584],[77.16212,9.03323],[77.1611,9.02944],[77.15387,9.02243],[77.14656,9.02182],[77.15073,9.01489],[77.14935,9.00958],[77.15275,9.00719],[77.15685,9.0075],[77.15615,9.00383],[77.16167,8.99504],[77.17357,8.99123],[77.1782,8.9691],[77.1849,8.97048],[77.1907,8.96562],[77.1911,8.95996],[77.19469,8.95737],[77.19697,8.95169],[77.19389,8.94332],[77.19714,8.93543],[77.19248,8.92855],[77.1928,8.9262],[77.19473,8.92412],[77.20105,8.92456],[77.20998,8.9185],[77.21423,8.91733],[77.21824,8.91869],[77.22123,8.90395],[77.22795,8.90359],[77.23855,8.89774],[77.24024,8.89447],[77.2384,8.89212],[77.23766,8.88567],[77.24499,8.88007],[77.25607,8.87882],[77.26165,8.88136],[77.27328,8.87609],[77.28062,8.87904],[77.28924,8.87893],[77.2915,8.88172],[77.29489,8.88238],[77.31315,8.8725],[77.31864,8.8755],[77.33139,8.87556],[77.33517,8.87422],[77.34168,8.86801],[77.34136,8.87133],[77.35702,8.87302],[77.36339,8.87315],[77.37328,8.87027],[77.38264,8.86998],[77.3865,8.87144],[77.38557,8.86605],[77.38268,8.86236],[77.38441,8.84828],[77.39392,8.84861],[77.40077,8.84223],[77.40447,8.84213],[77.40385,8.8409],[77.40727,8.83864],[77.4068,8.83337],[77.40189,8.83361],[77.40094,8.82814],[77.40355,8.82838],[77.4046,8.83024],[77.40663,8.82854],[77.41028,8.82973],[77.41501,8.8256],[77.41249,8.82316],[77.41593,8.81389],[77.41439,8.8112],[77.42036,8.78722],[77.43717,8.7735],[77.44185,8.7678],[77.45011,8.76387],[77.45039,8.76661],[77.45749,8.76604],[77.46085,8.77122],[77.46133,8.77789],[77.4559,8.78627],[77.45833,8.78949],[77.46151,8.7881],[77.46282,8.79006],[77.46172,8.79655],[77.46377,8.80146],[77.46197,8.8039],[77.464,8.80857],[77.46368,8.81096],[77.4619,8.81173],[77.46284,8.81393],[77.47615,8.81049],[77.47592,8.80672],[77.48013,8.80411],[77.48114,8.80593],[77.48665,8.80598],[77.48626,8.80124],[77.49036,8.79898],[77.4902,8.79694],[77.49796,8.7991],[77.49902,8.80131],[77.50636,8.79511],[77.50967,8.79536],[77.51116,8.79712],[77.50655,8.80616],[77.50789,8.80894],[77.51101,8.8088],[77.51365,8.80289],[77.51997,8.80123],[77.51871,8.7946],[77.51347,8.79199],[77.51532,8.78866],[77.51959,8.78764],[77.5189,8.78222],[77.52014,8.78178],[77.52221,8.78173],[77.52617,8.78772],[77.52958,8.78793],[77.53065,8.78543],[77.53767,8.79002],[77.54135,8.78815],[77.55143,8.78725],[77.55378,8.78527],[77.55632,8.78926],[77.56366,8.7875],[77.56494,8.78971],[77.56837,8.78871],[77.57041,8.79211],[77.56824,8.79365],[77.56864,8.79586],[77.56634,8.79973],[77.56942,8.80448],[77.56998,8.81137],[77.57457,8.81307],[77.57542,8.81728],[77.58283,8.8264],[77.58531,8.82663],[77.59072,8.8601],[77.59312,8.86236],[77.59435,8.86813],[77.58986,8.87538],[77.58244,8.87639],[77.57725,8.8732],[77.57551,8.87938],[77.57253,8.88189],[77.56376,8.87789],[77.56371,8.88188],[77.56673,8.88409],[77.56467,8.88717],[77.56765,8.88718],[77.56863,8.88946],[77.57092,8.88979],[77.56456,8.89528],[77.57084,8.90517],[77.56181,8.90934],[77.56164,8.91145],[77.56772,8.90851],[77.58203,8.90693],[77.59293,8.91074],[77.59369,8.92254],[77.59183,8.92786],[77.59178,8.94103],[77.59323,8.94473],[77.59674,8.94519],[77.59751,8.94284],[77.61411,8.94237],[77.61434,8.93615],[77.61624,8.93697],[77.61641,8.93463],[77.61834,8.93409],[77.62146,8.94256],[77.62167,8.94924],[77.6297,8.94687],[77.63054,8.95186],[77.63366,8.95246],[77.63446,8.95519],[77.64424,8.95584],[77.64501,8.957],[77.6547,8.95647],[77.65396,8.94573],[77.65623,8.94268],[77.65692,8.93433],[77.66555,8.93126],[77.67406,8.92484],[77.67909,8.92463],[77.68479,8.91899],[77.69483,8.91881],[77.69612,8.92632],[77.69193,8.93624],[77.6913,8.95503],[77.69028,8.95774],[77.68444,8.95992],[77.68242,8.96422],[77.68098,8.96415],[77.68085,8.97096],[77.67811,8.97182],[77.67643,8.97997],[77.67599,8.98931],[77.68054,8.99031],[77.68616,8.99465],[77.69057,8.99395],[77.69076,8.99124],[77.6937,8.98984],[77.69419,8.98074],[77.70006,8.97687],[77.69933,8.97529],[77.70332,8.97235],[77.70304,8.96886],[77.71054,8.9672],[77.71988,8.96662],[77.72166,8.97876],[77.72437,8.97911],[77.72448,8.98202],[77.72923,8.98306],[77.72933,8.98959],[77.72698,8.99096],[77.72685,8.99666],[77.72249,9.00244],[77.70643,9.00226],[77.68912,8.99975],[77.68824,9.01444],[77.69321,9.01474],[77.69345,9.01744],[77.69552,9.0175],[77.69668,9.02033],[77.69763,9.0246],[77.69395,9.03197],[77.69628,9.03243],[77.69766,9.0352],[77.70241,9.03517],[77.70223,9.04027],[77.70712,9.04103],[77.70843,9.03776],[77.70841,9.04136],[77.71256,9.04328],[77.7123,9.04553],[77.71363,9.04556],[77.70626,9.05946],[77.70175,9.06305],[77.70361,9.06539],[77.70423,9.07343],[77.70724,9.07563],[77.70807,9.07322],[77.71263,9.07269],[77.73916,9.07297],[77.73794,9.07553],[77.74164,9.07526],[77.74167,9.07704],[77.7437,9.07765],[77.74486,9.07986],[77.74162,9.0854],[77.74176,9.09731],[77.73998,9.10678],[77.72583,9.10595],[77.72588,9.10754],[77.7226,9.10633],[77.72171,9.10849],[77.7216,9.10698],[77.71975,9.10696],[77.72002,9.1047],[77.71249,9.10388],[77.71037,9.1051],[77.70479,9.10255],[77.69583,9.103],[77.69329,9.10127],[77.69303,9.10255],[77.68629,9.10226],[77.68626,9.10511],[77.67994,9.10581],[77.68,9.10894],[77.6778,9.10874],[77.67787,9.11039],[77.67652,9.11036],[77.67626,9.12435],[77.67485,9.12447],[77.67482,9.12667],[77.67316,9.12649],[77.67494,9.13322],[77.67411,9.13806],[77.68293,9.13765],[77.68279,9.13408],[77.68754,9.13407],[77.68832,9.13281],[77.69653,9.13392],[77.69761,9.13717],[77.70052,9.13808],[77.69969,9.14147],[77.696,9.14168],[77.69633,9.14302],[77.69474,9.14269],[77.69345,9.14462],[77.69069,9.15104],[77.69011,9.15888],[77.69411,9.16045],[77.69583,9.1633],[77.69772,9.1627],[77.70103,9.16519],[77.70464,9.16562],[77.70587,9.1694],[77.70584,9.18839],[77.72729,9.18987],[77.72767,9.19268],[77.73054,9.19317],[77.73478,9.19691],[77.73437,9.21657],[77.7322,9.21757],[77.73287,9.21988],[77.7345,9.22108],[77.74228,9.21942],[77.74472,9.22556],[77.74422,9.22969],[77.74197,9.23206],[77.74201,9.25338],[77.74051,9.25353],[77.73968,9.25962],[77.73769,9.25973],[77.73851,9.2639],[77.7416,9.26448],[77.74153,9.27499],[77.73932,9.27514],[77.73918,9.28055],[77.72887,9.28214],[77.72194,9.28011],[77.72117,9.28303],[77.71772,9.2832],[77.71728,9.28755],[77.71215,9.2873],[77.7121,9.29142],[77.684,9.28863],[77.68239,9.28618],[77.67686,9.28744],[77.66093,9.28697],[77.66048,9.28489],[77.65511,9.28347],[77.65325,9.28391],[77.65321,9.28804],[77.64474,9.28875],[77.64481,9.29086],[77.64137,9.29258],[77.62925,9.29392],[77.62489,9.29283],[77.62486,9.29553],[77.61649,9.29749],[77.61653,9.29945],[77.61369,9.29963],[77.61344,9.30098],[77.60339,9.30115],[77.60415,9.30697],[77.58563,9.30862],[77.58781,9.31393],[77.59096,9.31538],[77.59146,9.34388],[77.58945,9.34448],[77.58957,9.34757],[77.58664,9.34804],[77.58231,9.34487],[77.57302,9.34303],[77.57486,9.35413],[77.56037,9.35346],[77.5559,9.35916],[77.54983,9.36317],[77.54975,9.36665],[77.5547,9.37028],[77.53305,9.37609],[77.53086,9.37591],[77.52879,9.36616],[77.52932,9.36035],[77.52702,9.35978],[77.52709,9.35805],[77.52018,9.35934],[77.51907,9.35675],[77.52758,9.34895],[77.52213,9.33496],[77.51967,9.33591],[77.51822,9.33412],[77.50661,9.33193],[77.49703,9.33379],[77.49583,9.33846],[77.48771,9.33889],[77.48696,9.33705],[77.47473,9.34075],[77.47151,9.32839],[77.46478,9.32914],[77.45882,9.33392],[77.45905,9.33627],[77.46294,9.34589],[77.46804,9.34666],[77.4666,9.34669],[77.46668,9.34892],[77.45765,9.35148],[77.45286,9.35059],[77.448,9.35343],[77.4414,9.35427],[77.44336,9.36201],[77.4371,9.3621],[77.4385,9.3681],[77.44708,9.36583],[77.45051,9.36994],[77.4479,9.37511],[77.43797,9.38185],[77.43399,9.39088],[77.42603,9.39491],[77.42328,9.39374],[77.41975,9.39927],[77.41557,9.39873],[77.4148,9.3972],[77.41092,9.39758],[77.40883,9.39433],[77.40598,9.39352],[77.40314,9.39441],[77.40313,9.39613],[77.39944,9.39487],[77.39716,9.39619],[77.38908,9.39224],[77.38691,9.39533],[77.3823,9.39699],[77.37896,9.40186],[77.37222,9.40212],[77.36925,9.4062],[77.36438,9.40915],[77.35028,9.41269],[77.33937,9.42014]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"734","area_level":"District","area_name":"Gaurela-Pendra-Marwahi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[82.15643,22.54417],[82.16764,22.54792],[82.16618,22.5552],[82.17455,22.55691],[82.18121,22.5602],[82.18444,22.56724],[82.19705,22.57904],[82.20147,22.58833],[82.20832,22.59628],[82.23333,22.59122],[82.23299,22.59646],[82.23839,22.61041],[82.23917,22.62436],[82.236,22.62781],[82.23672,22.64133],[82.2388,22.64239],[82.23975,22.65393],[82.23551,22.65724],[82.22538,22.6605],[82.2021,22.66063],[82.20222,22.66601],[82.19676,22.66993],[82.19715,22.67468],[82.18562,22.6745],[82.18017,22.67137],[82.17372,22.67055],[82.17454,22.67823],[82.17256,22.69339],[82.16677,22.69603],[82.16504,22.71573],[82.16641,22.72465],[82.16472,22.72805],[82.15171,22.73633],[82.14886,22.74157],[82.15558,22.76693],[82.15374,22.77429],[82.15559,22.77814],[82.15579,22.7869],[82.15897,22.78756],[82.15893,22.81495],[82.15246,22.81592],[82.15534,22.83868],[82.14658,22.84211],[82.1393,22.84209],[82.13691,22.84421],[82.13425,22.85334],[82.142,22.86025],[82.14142,22.86286],[82.14542,22.86449],[82.1512,22.86323],[82.15301,22.86486],[82.15836,22.88504],[82.16842,22.88757],[82.17362,22.89061],[82.17419,22.89433],[82.17705,22.89655],[82.17852,22.90042],[82.18132,22.90115],[82.18411,22.90471],[82.18829,22.90548],[82.19268,22.91052],[82.19361,22.91736],[82.19538,22.91855],[82.19789,22.9176],[82.20036,22.92192],[82.20826,22.92573],[82.212,22.93138],[82.21214,22.93732],[82.21584,22.94503],[82.20986,22.94874],[82.19981,22.95106],[82.19408,22.95883],[82.17705,22.97009],[82.17797,22.97414],[82.17629,22.98657],[82.17365,22.98856],[82.18066,22.99566],[82.18264,23.00979],[82.18483,23.01402],[82.18066,23.03315],[82.17521,23.04118],[82.17496,23.04441],[82.17037,23.04671],[82.16611,23.04669],[82.15832,23.0546],[82.15786,23.063],[82.14907,23.07451],[82.14786,23.07857],[82.14425,23.0801],[82.13964,23.08733],[82.12875,23.09589],[82.12324,23.10332],[82.11609,23.1056],[82.1111,23.10935],[82.09787,23.10852],[82.0935,23.10907],[82.09216,23.11237],[82.08042,23.11269],[82.0749,23.11484],[82.07222,23.11832],[82.07008,23.1165],[82.06681,23.11676],[82.0664,23.11498],[82.06193,23.11241],[82.06005,23.10848],[82.05513,23.10685],[82.05323,23.09966],[82.04781,23.09644],[82.04906,23.09383],[82.04665,23.09248],[82.0471,23.09135],[82.04366,23.09035],[82.04372,23.08851],[82.03419,23.08005],[82.02808,23.08024],[82.02753,23.08222],[82.02257,23.07944],[82.01961,23.08104],[82.01857,23.0841],[82.01755,23.08243],[82.01276,23.08217],[82.01174,23.08004],[82.00783,23.07912],[82.00445,23.08119],[82.00042,23.08105],[81.99774,23.08441],[81.99432,23.08355],[81.99114,23.08661],[81.98948,23.08431],[81.98827,23.08614],[81.98565,23.08587],[81.98533,23.08267],[81.98241,23.08265],[81.98127,23.08015],[81.98086,23.08263],[81.97717,23.08101],[81.97621,23.07898],[81.96789,23.08072],[81.96341,23.07821],[81.96317,23.07519],[81.94225,23.07897],[81.94604,23.07628],[81.94506,23.07258],[81.94685,23.0691],[81.9439,23.06739],[81.94294,23.06477],[81.93781,23.06525],[81.9374,23.06188],[81.92955,23.06164],[81.93027,23.05904],[81.92678,23.05758],[81.92904,23.04983],[81.92449,23.04711],[81.9215,23.04081],[81.92561,23.0292],[81.93183,23.02548],[81.92951,23.02273],[81.92977,23.02061],[81.93673,23.01617],[81.93955,23.00953],[81.93914,23.00462],[81.94544,22.99582],[81.94476,22.98917],[81.95048,22.98293],[81.94621,22.97392],[81.94781,22.96754],[81.94631,22.95678],[81.91892,22.94655],[81.91274,22.94165],[81.90469,22.93145],[81.89815,22.92593],[81.8904,22.92266],[81.87824,22.90981],[81.86912,22.91733],[81.86611,22.91581],[81.86552,22.91274],[81.86933,22.9098],[81.86811,22.90209],[81.86949,22.89451],[81.86163,22.88926],[81.85319,22.89089],[81.84626,22.88672],[81.84207,22.88775],[81.83824,22.88525],[81.83837,22.88278],[81.83392,22.8809],[81.82748,22.8828],[81.81758,22.88228],[81.77568,22.87444],[81.77746,22.86752],[81.7749,22.86391],[81.77729,22.85549],[81.77653,22.85164],[81.77401,22.85022],[81.76784,22.83541],[81.76135,22.83029],[81.76946,22.82776],[81.77766,22.81643],[81.77791,22.81328],[81.78178,22.81095],[81.78413,22.7987],[81.78193,22.79607],[81.78098,22.78994],[81.7837,22.78395],[81.78358,22.77918],[81.79439,22.76646],[81.78848,22.76355],[81.77928,22.75086],[81.77307,22.75055],[81.76902,22.74187],[81.76993,22.73558],[81.75573,22.73379],[81.75359,22.72852],[81.75344,22.72102],[81.76115,22.69753],[81.77284,22.6847],[81.77237,22.66821],[81.75704,22.6472],[81.75263,22.64449],[81.74998,22.64558],[81.74847,22.64837],[81.74901,22.65178],[81.75202,22.65437],[81.75029,22.65935],[81.7464,22.66291],[81.74186,22.67407],[81.7393,22.67496],[81.73947,22.67212],[81.72785,22.67535],[81.72642,22.67408],[81.73458,22.66735],[81.73676,22.65558],[81.73497,22.64822],[81.73168,22.64625],[81.73271,22.64323],[81.72827,22.63425],[81.7331,22.63198],[81.73513,22.62538],[81.73485,22.61894],[81.73879,22.61562],[81.7372,22.61235],[81.74075,22.61258],[81.74089,22.60709],[81.75061,22.60694],[81.75027,22.5972],[81.74674,22.59353],[81.74685,22.59135],[81.75392,22.59382],[81.75524,22.59184],[81.7665,22.59661],[81.77237,22.59433],[81.7745,22.59567],[81.77809,22.59485],[81.78304,22.59833],[81.78857,22.59698],[81.78536,22.59417],[81.78317,22.58833],[81.78823,22.58845],[81.78633,22.58127],[81.79255,22.5806],[81.79008,22.57297],[81.79555,22.57176],[81.79259,22.56922],[81.79899,22.56291],[81.80046,22.56328],[81.80268,22.5698],[81.80946,22.57035],[81.81344,22.57424],[81.82458,22.57434],[81.82598,22.57762],[81.82811,22.57705],[81.82811,22.57047],[81.83691,22.57054],[81.83812,22.57299],[81.83253,22.57505],[81.8478,22.59254],[81.85663,22.61111],[81.87143,22.61203],[81.88523,22.60996],[81.89223,22.61185],[81.89888,22.61118],[81.90571,22.6141],[81.92246,22.60925],[81.9288,22.61331],[81.94992,22.61584],[81.95315,22.61497],[81.96473,22.60631],[81.97527,22.61066],[81.9888,22.58499],[81.99404,22.58102],[81.99452,22.57882],[82.00401,22.58194],[82.01311,22.58108],[82.03281,22.57376],[82.04106,22.57219],[82.0473,22.56661],[82.05618,22.56404],[82.05994,22.56482],[82.06025,22.57145],[82.07538,22.57245],[82.09028,22.58477],[82.10601,22.59173],[82.11434,22.60068],[82.13279,22.6027],[82.13954,22.6004],[82.15026,22.60109],[82.1439,22.59348],[82.14847,22.58555],[82.15874,22.57551],[82.15521,22.55049],[82.15643,22.54417]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"74","area_level":"District","area_name":"Sirsa","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.80791,29.99225],[74.77845,29.97167],[74.77535,29.97334],[74.77108,29.97172],[74.76128,29.97331],[74.75856,29.97244],[74.75833,29.97004],[74.75395,29.96964],[74.75316,29.96731],[74.73898,29.9679],[74.73099,29.96146],[74.70683,29.97054],[74.70687,29.97699],[74.70207,29.97162],[74.70018,29.97272],[74.69438,29.96784],[74.68215,29.94349],[74.67032,29.93964],[74.65169,29.9266],[74.64816,29.91971],[74.64675,29.91128],[74.64958,29.90754],[74.65436,29.90574],[74.63032,29.90504],[74.59726,29.91277],[74.5897,29.91698],[74.57988,29.92567],[74.57197,29.92747],[74.55903,29.92728],[74.56068,29.9295],[74.54133,29.94078],[74.53157,29.94967],[74.5186,29.92958],[74.51553,29.91592],[74.50986,29.90832],[74.52187,29.90254],[74.54383,29.90168],[74.55116,29.88271],[74.56112,29.87004],[74.55138,29.85276],[74.54419,29.84439],[74.53356,29.83882],[74.50797,29.83329],[74.48352,29.8136],[74.47354,29.78632],[74.47362,29.76721],[74.47787,29.74681],[74.50671,29.74231],[74.53399,29.7404],[74.54614,29.75445],[74.55242,29.75567],[74.57731,29.75414],[74.57482,29.74879],[74.5775,29.74784],[74.5793,29.74903],[74.57879,29.75223],[74.5814,29.75251],[74.58749,29.76691],[74.59634,29.7674],[74.601,29.7659],[74.60334,29.75791],[74.61594,29.75227],[74.60954,29.74323],[74.60815,29.7319],[74.60982,29.72176],[74.60475,29.7049],[74.60018,29.69905],[74.60121,29.69039],[74.59315,29.67676],[74.58548,29.65447],[74.58654,29.64734],[74.59138,29.63954],[74.5893,29.63181],[74.58156,29.62716],[74.58276,29.62329],[74.58032,29.61712],[74.57762,29.60001],[74.57698,29.5718],[74.57497,29.56432],[74.57592,29.56011],[74.58991,29.54791],[74.59519,29.54498],[74.6023,29.54392],[74.6077,29.53887],[74.61185,29.5385],[74.61428,29.53533],[74.61483,29.53116],[74.61903,29.53258],[74.62309,29.53105],[74.62189,29.52225],[74.60977,29.51168],[74.6046,29.50318],[74.60101,29.50106],[74.59973,29.49398],[74.59539,29.48916],[74.59588,29.4804],[74.58639,29.46505],[74.58466,29.45849],[74.57323,29.4651],[74.54791,29.46827],[74.54322,29.46775],[74.53896,29.46372],[74.53589,29.4569],[74.53466,29.44772],[74.53644,29.44321],[74.53458,29.43526],[74.53662,29.42455],[74.54926,29.42473],[74.56641,29.42048],[74.57366,29.40648],[74.57392,29.39994],[74.57789,29.3885],[74.58525,29.37852],[74.58973,29.37664],[74.60291,29.36491],[74.60734,29.35623],[74.59929,29.32746],[74.63438,29.32961],[74.65451,29.33294],[74.65209,29.35129],[74.65823,29.37197],[74.67979,29.36926],[74.69097,29.36592],[74.70808,29.36676],[74.71952,29.37001],[74.73921,29.35414],[74.7622,29.35438],[74.77002,29.35691],[74.78189,29.35791],[74.78755,29.36143],[74.82038,29.39721],[74.84482,29.39968],[74.84966,29.40153],[74.85058,29.40359],[74.8714,29.39487],[74.87766,29.38354],[74.90031,29.38476],[74.9168,29.3713],[74.93828,29.36203],[74.93989,29.34002],[74.95453,29.33272],[74.95807,29.32818],[74.9609,29.32025],[74.95534,29.3091],[74.94841,29.30147],[74.95581,29.28615],[74.96117,29.28058],[74.971,29.27908],[74.98326,29.28057],[74.99923,29.27031],[75.01988,29.2862],[75.03482,29.2876],[75.05,29.28608],[75.06041,29.27601],[75.06124,29.26397],[75.07321,29.24783],[75.07419,29.24327],[75.07287,29.23783],[75.07439,29.23132],[75.07532,29.22978],[75.08209,29.228],[75.11961,29.22287],[75.12439,29.23987],[75.13784,29.23873],[75.16283,29.24402],[75.17439,29.25125],[75.16864,29.25875],[75.17623,29.26319],[75.18138,29.26366],[75.18367,29.26689],[75.18801,29.26819],[75.19573,29.26331],[75.19851,29.25326],[75.21014,29.23465],[75.21803,29.23187],[75.23839,29.23024],[75.24207,29.23641],[75.24244,29.24541],[75.24519,29.25018],[75.234,29.26865],[75.23738,29.27802],[75.24107,29.29717],[75.23543,29.3101],[75.22547,29.32562],[75.22829,29.32728],[75.22831,29.32892],[75.22985,29.32865],[75.22993,29.33073],[75.2334,29.33194],[75.23557,29.33571],[75.25594,29.33675],[75.25776,29.34],[75.26516,29.3457],[75.26466,29.35042],[75.26351,29.36013],[75.24389,29.37584],[75.22767,29.37975],[75.22,29.39764],[75.23351,29.41154],[75.23509,29.41873],[75.24073,29.41836],[75.26601,29.42261],[75.28546,29.42278],[75.30112,29.43925],[75.30206,29.44225],[75.29209,29.45264],[75.28098,29.47365],[75.28108,29.47986],[75.28769,29.49369],[75.28035,29.5],[75.27397,29.50924],[75.27798,29.51504],[75.28916,29.51851],[75.29567,29.52358],[75.30226,29.52417],[75.29608,29.52987],[75.29487,29.53378],[75.29691,29.53808],[75.30283,29.54186],[75.30386,29.54928],[75.30096,29.55622],[75.30299,29.55967],[75.29495,29.5588],[75.28117,29.56146],[75.28038,29.55397],[75.27327,29.54999],[75.24449,29.54669],[75.23537,29.54207],[75.23911,29.55072],[75.23841,29.55886],[75.23382,29.56432],[75.23443,29.57],[75.23196,29.57479],[75.22682,29.57901],[75.22173,29.58028],[75.22744,29.58721],[75.23538,29.60307],[75.23378,29.60237],[75.2284,29.60543],[75.22149,29.61111],[75.21971,29.61542],[75.20677,29.6219],[75.19685,29.61932],[75.18307,29.6284],[75.18222,29.63596],[75.18763,29.65179],[75.18004,29.65286],[75.17466,29.6556],[75.16798,29.66702],[75.16825,29.67072],[75.17715,29.67063],[75.1796,29.67451],[75.18395,29.67334],[75.18569,29.67437],[75.18747,29.67631],[75.18815,29.68134],[75.19882,29.68],[75.2068,29.68751],[75.2078,29.70121],[75.20026,29.70106],[75.1978,29.70325],[75.19687,29.71524],[75.20064,29.72648],[75.20817,29.73753],[75.21034,29.73881],[75.21565,29.73812],[75.22635,29.72887],[75.23818,29.73995],[75.24135,29.75049],[75.24161,29.75464],[75.23662,29.757],[75.22441,29.78074],[75.22631,29.78913],[75.21629,29.78771],[75.21448,29.79151],[75.20854,29.79267],[75.20968,29.81734],[75.21402,29.82398],[75.21068,29.8324],[75.19652,29.83776],[75.19104,29.84137],[75.1839,29.83363],[75.17593,29.82808],[75.17007,29.82818],[75.16564,29.82604],[75.16023,29.81284],[75.16065,29.80637],[75.1591,29.80133],[75.16665,29.78821],[75.16681,29.78469],[75.15984,29.77901],[75.15099,29.77552],[75.14649,29.78182],[75.14025,29.78614],[75.13686,29.80595],[75.13511,29.80729],[75.12668,29.80688],[75.11826,29.8027],[75.1045,29.8048],[75.10059,29.80708],[75.10034,29.8194],[75.10154,29.82155],[75.1189,29.83158],[75.11139,29.84191],[75.10316,29.84175],[75.0901,29.854],[75.08976,29.85863],[75.09341,29.85797],[75.10686,29.868],[75.11474,29.87865],[75.11043,29.89271],[75.11039,29.90191],[75.1093,29.90409],[75.10733,29.90405],[75.09904,29.91108],[75.09878,29.91278],[75.0888,29.91719],[75.08644,29.91655],[75.08049,29.9008],[75.07533,29.89634],[75.07607,29.89085],[75.07449,29.88225],[75.06999,29.87705],[75.06529,29.87879],[75.05613,29.87809],[75.05187,29.88407],[75.04699,29.88507],[75.03293,29.87981],[75.02255,29.86625],[75.00526,29.86895],[74.99813,29.86623],[74.99099,29.86782],[74.97721,29.88834],[74.97886,29.89431],[74.9529,29.90188],[74.94802,29.90723],[74.94419,29.91609],[74.94174,29.91766],[74.9364,29.92645],[74.93582,29.93068],[74.92698,29.94586],[74.92671,29.95049],[74.9229,29.95211],[74.91901,29.94707],[74.91294,29.94344],[74.90705,29.9406],[74.8972,29.93969],[74.89554,29.94073],[74.90073,29.94546],[74.90298,29.95348],[74.88796,29.96672],[74.87579,29.95761],[74.87057,29.95998],[74.86477,29.96016],[74.85542,29.95649],[74.85059,29.96197],[74.84348,29.9646],[74.83848,29.97115],[74.8285,29.97333],[74.82106,29.97103],[74.82636,29.97722],[74.82433,29.98577],[74.81604,29.99197],[74.80791,29.99225]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"75","area_level":"District","area_name":"Sonipat","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.61078,29.28917],[76.60507,29.28843],[76.59742,29.28022],[76.58258,29.28529],[76.56093,29.28091],[76.56164,29.27123],[76.55421,29.25667],[76.56178,29.2457],[76.56419,29.23931],[76.56256,29.23617],[76.56843,29.22666],[76.55982,29.20872],[76.55067,29.21039],[76.54307,29.20974],[76.53406,29.21397],[76.52481,29.22123],[76.52395,29.22542],[76.52561,29.23162],[76.51211,29.23229],[76.48839,29.2396],[76.4834,29.24258],[76.47453,29.23799],[76.47671,29.23548],[76.47798,29.22224],[76.49062,29.2067],[76.49334,29.19609],[76.49337,29.18949],[76.49568,29.18474],[76.49563,29.17813],[76.5122,29.16318],[76.51089,29.15598],[76.50531,29.1558],[76.5,29.15204],[76.48939,29.13684],[76.48653,29.12995],[76.48577,29.11596],[76.48115,29.10707],[76.48057,29.10039],[76.47752,29.09215],[76.49572,29.08218],[76.51007,29.07724],[76.51596,29.08572],[76.52119,29.0843],[76.52689,29.09242],[76.5291,29.09168],[76.53788,29.09834],[76.54608,29.09198],[76.55067,29.08016],[76.56134,29.071],[76.5637,29.06223],[76.56705,29.0588],[76.57959,29.05795],[76.58473,29.06024],[76.59298,29.0606],[76.59931,29.05716],[76.60161,29.05794],[76.62514,29.05403],[76.63387,29.05445],[76.64138,29.05195],[76.64664,29.0521],[76.65261,29.05509],[76.66278,29.04759],[76.67713,29.04032],[76.69006,29.03721],[76.69819,29.0388],[76.70245,29.03159],[76.72151,29.02008],[76.72196,29.01589],[76.72631,29.01115],[76.73656,29.00741],[76.73425,28.99712],[76.73681,28.98958],[76.73251,28.9856],[76.72606,28.97177],[76.74242,28.96142],[76.75,28.96139],[76.75267,28.96501],[76.75969,28.96553],[76.76269,28.9594],[76.77496,28.94855],[76.77121,28.94097],[76.77166,28.93813],[76.77752,28.93388],[76.77795,28.93085],[76.78926,28.92558],[76.79491,28.92446],[76.80437,28.92887],[76.8144,28.93159],[76.81912,28.93115],[76.8271,28.91585],[76.82593,28.90115],[76.8153,28.87604],[76.80923,28.86774],[76.82307,28.86012],[76.8253,28.86117],[76.83489,28.86014],[76.84166,28.86249],[76.84724,28.86075],[76.85286,28.85304],[76.86302,28.84591],[76.86838,28.83297],[76.86844,28.82358],[76.88199,28.81796],[76.88704,28.81262],[76.88782,28.80328],[76.89134,28.79786],[76.89649,28.79519],[76.89817,28.79732],[76.90033,28.79534],[76.91211,28.7935],[76.92318,28.801],[76.94189,28.79866],[76.94628,28.80662],[76.94591,28.81112],[76.95101,28.81818],[76.96176,28.81481],[76.96487,28.8204],[76.96347,28.82226],[76.96432,28.82546],[76.96701,28.82805],[76.97308,28.82685],[76.97668,28.82222],[76.97969,28.82123],[76.98591,28.82939],[76.98724,28.8353],[76.99481,28.83951],[76.99928,28.83788],[77.00744,28.84071],[77.02333,28.83936],[77.04023,28.83206],[77.04261,28.83426],[77.04184,28.83786],[77.04513,28.84093],[77.04569,28.84746],[77.05781,28.86775],[77.06098,28.87104],[77.06924,28.86719],[77.07175,28.86893],[77.07461,28.86752],[77.07924,28.87195],[77.07765,28.87718],[77.08266,28.8835],[77.08683,28.88089],[77.08756,28.87533],[77.09493,28.87123],[77.10983,28.87007],[77.12084,28.85994],[77.12093,28.85831],[77.1249,28.85763],[77.12548,28.85986],[77.13222,28.8636],[77.14032,28.86206],[77.14255,28.85971],[77.14199,28.85624],[77.14531,28.85364],[77.14202,28.84705],[77.14241,28.83886],[77.15775,28.83669],[77.15678,28.83897],[77.16595,28.84907],[77.1721,28.84991],[77.17306,28.85723],[77.1754,28.85832],[77.18142,28.85751],[77.19771,28.85923],[77.20992,28.85772],[77.20819,28.86184],[77.19495,28.86486],[77.1893,28.86788],[77.19196,28.87502],[77.18868,28.88008],[77.19546,28.88621],[77.20822,28.8881],[77.21541,28.88474],[77.22056,28.87879],[77.22352,28.87855],[77.2281,28.88119],[77.2275,28.89332],[77.23247,28.89795],[77.23262,28.90384],[77.23475,28.90906],[77.23123,28.92053],[77.22489,28.92305],[77.22198,28.92816],[77.214,28.93254],[77.2073,28.93488],[77.20141,28.93392],[77.1959,28.93933],[77.19719,28.94654],[77.19298,28.95891],[77.19533,28.96692],[77.20113,28.97279],[77.20274,28.98526],[77.20188,28.98848],[77.19797,28.99026],[77.19909,28.99203],[77.19766,28.99218],[77.19096,29.00592],[77.19075,29.00939],[77.1931,29.01316],[77.18903,29.02355],[77.18912,29.02767],[77.18511,29.03149],[77.17776,29.02964],[77.16697,29.03382],[77.1669,29.03737],[77.16994,29.03974],[77.17214,29.04648],[77.16804,29.05455],[77.16376,29.07943],[77.16226,29.0809],[77.15669,29.07922],[77.14676,29.08055],[77.14346,29.08267],[77.13408,29.09515],[77.13896,29.10801],[77.14529,29.10979],[77.14815,29.11298],[77.14903,29.11684],[77.14745,29.13352],[77.13596,29.14196],[77.13621,29.14952],[77.1429,29.15623],[77.1433,29.1669],[77.11433,29.16959],[77.09735,29.16177],[77.09173,29.16774],[77.08749,29.17522],[77.07859,29.17969],[77.07274,29.17526],[77.06136,29.1758],[77.05989,29.17279],[77.05199,29.1763],[77.0528,29.17864],[77.05132,29.17914],[77.05265,29.18148],[77.05027,29.1844],[77.02886,29.17761],[77.01803,29.18538],[77.00744,29.18575],[77.00695,29.18896],[77.0011,29.18762],[76.99869,29.18529],[76.99158,29.19023],[76.98699,29.18791],[76.98224,29.1884],[76.96399,29.19363],[76.96741,29.197],[76.95965,29.20508],[76.94805,29.20888],[76.93891,29.20864],[76.93091,29.21421],[76.92782,29.21346],[76.91813,29.21932],[76.90937,29.21404],[76.90505,29.21455],[76.90338,29.21231],[76.89435,29.21034],[76.88963,29.2064],[76.88968,29.19924],[76.88591,29.19484],[76.87544,29.19186],[76.86099,29.19816],[76.85483,29.2058],[76.84169,29.20555],[76.82382,29.21165],[76.81778,29.21623],[76.8111,29.21757],[76.81126,29.22182],[76.80231,29.22761],[76.801,29.23917],[76.79547,29.24634],[76.79683,29.24868],[76.79311,29.25075],[76.79806,29.25797],[76.79628,29.27245],[76.78213,29.27738],[76.77947,29.282],[76.76963,29.27984],[76.75304,29.26265],[76.73364,29.25522],[76.7278,29.25684],[76.72519,29.25284],[76.71549,29.25082],[76.71404,29.25126],[76.71372,29.25817],[76.70883,29.26102],[76.68212,29.2695],[76.67857,29.26474],[76.67289,29.26579],[76.66603,29.26398],[76.65623,29.26552],[76.64861,29.26953],[76.64612,29.27353],[76.63425,29.27484],[76.62087,29.28472],[76.61078,29.28917]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"76","area_level":"District","area_name":"Yamunanagar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.20954,30.4802],[77.21248,30.49683],[77.20621,30.4885],[77.20213,30.47858],[77.19755,30.48186],[77.19458,30.48053],[77.1864,30.47167],[77.18355,30.46441],[77.17992,30.46184],[77.18012,30.45915],[77.17366,30.45742],[77.17537,30.45078],[77.1732,30.44759],[77.17356,30.44274],[77.17267,30.4412],[77.16911,30.44155],[77.17435,30.43151],[77.17424,30.42508],[77.17033,30.42166],[77.17412,30.41747],[77.17759,30.40444],[77.18389,30.40139],[77.18687,30.39674],[77.18374,30.3847],[77.18755,30.38267],[77.18134,30.37541],[77.18119,30.3716],[77.18384,30.3692],[77.18092,30.36347],[77.17261,30.36887],[77.16193,30.36082],[77.16179,30.35617],[77.16551,30.35364],[77.1694,30.35966],[77.17084,30.35912],[77.17037,30.35666],[77.17306,30.35058],[77.17108,30.34236],[77.17348,30.33891],[77.17745,30.33817],[77.18189,30.33232],[77.18262,30.32858],[77.17971,30.32218],[77.18619,30.31618],[77.19158,30.31696],[77.18979,30.31367],[77.19213,30.31228],[77.18916,30.30729],[77.18661,30.30788],[77.18322,30.30628],[77.18012,30.30752],[77.1777,30.3053],[77.16834,30.3072],[77.16844,30.30113],[77.16607,30.2978],[77.16565,30.29393],[77.16078,30.29574],[77.14717,30.28882],[77.14574,30.28522],[77.1416,30.28596],[77.13845,30.28164],[77.13318,30.26788],[77.13759,30.26487],[77.13574,30.26181],[77.13931,30.26024],[77.13322,30.25423],[77.13207,30.25085],[77.13382,30.24899],[77.13214,30.24673],[77.14164,30.24082],[77.1449,30.2442],[77.14959,30.24645],[77.15226,30.24611],[77.16079,30.24142],[77.15983,30.23964],[77.16356,30.23647],[77.16326,30.23374],[77.16158,30.23407],[77.15851,30.23056],[77.15649,30.22384],[77.15019,30.21399],[77.14273,30.21709],[77.14105,30.21898],[77.14137,30.22568],[77.13022,30.23229],[77.12681,30.22826],[77.12104,30.23219],[77.11603,30.23239],[77.11369,30.22703],[77.10626,30.22498],[77.09181,30.22828],[77.0933,30.22601],[77.08428,30.21679],[77.0776,30.217],[77.07243,30.20607],[77.07772,30.20248],[77.07675,30.19971],[77.09003,30.19361],[77.09778,30.1877],[77.1065,30.18454],[77.11005,30.17871],[77.10262,30.16566],[77.09963,30.16367],[77.09747,30.15852],[77.09811,30.156],[77.08401,30.16334],[77.08485,30.16419],[77.07085,30.16904],[77.06874,30.16432],[77.07171,30.16095],[77.07116,30.15391],[77.06527,30.14238],[77.06841,30.13235],[77.07151,30.12989],[77.07068,30.12627],[77.07758,30.11898],[77.08209,30.11777],[77.0842,30.11413],[77.09122,30.11187],[77.08601,30.10734],[77.08671,30.10227],[77.0783,30.09956],[77.07296,30.09952],[77.06858,30.09668],[77.06788,30.09245],[77.07008,30.088],[77.06831,30.07269],[77.0719,30.06966],[77.07412,30.07057],[77.07603,30.06632],[77.07844,30.06836],[77.07799,30.07093],[77.08066,30.0711],[77.07961,30.06389],[77.08161,30.06453],[77.08848,30.05728],[77.08658,30.05076],[77.09822,30.04135],[77.09444,30.03726],[77.10509,30.03014],[77.1055,30.02733],[77.1008,30.01826],[77.1088,30.01056],[77.10848,30.00805],[77.1108,30.00543],[77.11447,30.00485],[77.11636,30.00209],[77.11855,30.00304],[77.11952,29.9994],[77.12264,29.99814],[77.1224,29.99547],[77.11738,29.99344],[77.12509,29.98652],[77.12748,29.98634],[77.13439,29.97909],[77.13572,29.97425],[77.13442,29.96939],[77.13146,29.9659],[77.13793,29.96316],[77.15224,29.9698],[77.15741,29.97004],[77.16354,29.96702],[77.17102,29.96986],[77.17301,29.96667],[77.17991,29.96522],[77.18418,29.96088],[77.18299,29.95754],[77.18924,29.95474],[77.18581,29.94889],[77.18196,29.94658],[77.19581,29.93775],[77.1975,29.93895],[77.20826,29.93506],[77.22951,29.93965],[77.23631,29.9509],[77.23693,29.95474],[77.24401,29.95979],[77.24687,29.96832],[77.24698,29.97659],[77.26153,29.98288],[77.27766,30.00024],[77.27556,30.00634],[77.27926,30.01216],[77.27956,30.02078],[77.28227,30.02941],[77.27637,30.03755],[77.27778,30.04181],[77.28494,30.0424],[77.29693,30.05332],[77.3002,30.05248],[77.30298,30.0553],[77.3189,30.0565],[77.32846,30.05333],[77.3343,30.05374],[77.34522,30.06932],[77.36264,30.07638],[77.36845,30.0836],[77.37745,30.09002],[77.38239,30.09159],[77.38851,30.08688],[77.39148,30.08988],[77.4062,30.08825],[77.42386,30.10321],[77.41694,30.10544],[77.41023,30.10473],[77.40316,30.11175],[77.40559,30.11389],[77.41227,30.11433],[77.41349,30.11294],[77.42189,30.12859],[77.42505,30.13145],[77.41978,30.13524],[77.4227,30.14011],[77.42279,30.15029],[77.42753,30.1557],[77.42569,30.15812],[77.42976,30.16398],[77.43481,30.16399],[77.43504,30.1608],[77.43643,30.16047],[77.44071,30.16498],[77.44956,30.16578],[77.45781,30.16267],[77.47183,30.18189],[77.4754,30.17912],[77.48053,30.18422],[77.48675,30.19535],[77.49483,30.20401],[77.50462,30.2252],[77.52049,30.24466],[77.53024,30.25048],[77.53825,30.27796],[77.54658,30.28147],[77.56852,30.29898],[77.5831,30.30761],[77.58643,30.31305],[77.58609,30.31541],[77.57856,30.32525],[77.57798,30.33078],[77.5862,30.33942],[77.58853,30.34571],[77.5909,30.34782],[77.59249,30.35479],[77.60185,30.36145],[77.60459,30.36695],[77.60081,30.37005],[77.5897,30.3746],[77.58644,30.37734],[77.58733,30.37877],[77.58396,30.3798],[77.58016,30.37734],[77.572,30.38049],[77.55324,30.39027],[77.54679,30.39601],[77.54796,30.40037],[77.53639,30.41076],[77.52883,30.42241],[77.52543,30.43332],[77.52555,30.44053],[77.5198,30.44539],[77.51538,30.44514],[77.50299,30.42983],[77.49995,30.41888],[77.50161,30.4087],[77.49871,30.40582],[77.49294,30.41169],[77.47954,30.40602],[77.4735,30.401],[77.46567,30.4025],[77.46271,30.40098],[77.45445,30.40081],[77.44532,30.396],[77.43849,30.40404],[77.42289,30.40408],[77.42382,30.41075],[77.43038,30.41169],[77.43376,30.41702],[77.445,30.41867],[77.44636,30.42294],[77.45369,30.43035],[77.45396,30.43373],[77.46156,30.43461],[77.46144,30.44388],[77.4662,30.45001],[77.45901,30.4581],[77.45612,30.45854],[77.45159,30.44827],[77.44963,30.4485],[77.44542,30.44476],[77.44274,30.43974],[77.43598,30.43278],[77.42197,30.42512],[77.41742,30.42538],[77.41587,30.41909],[77.40978,30.41573],[77.40857,30.41132],[77.40954,30.40979],[77.40778,30.40991],[77.40523,30.41019],[77.39864,30.41742],[77.40434,30.42214],[77.40399,30.42533],[77.40614,30.4256],[77.40652,30.42791],[77.40831,30.42872],[77.40353,30.43088],[77.40022,30.4288],[77.399,30.43138],[77.39137,30.43167],[77.38967,30.43476],[77.39049,30.4414],[77.38756,30.442],[77.37768,30.44087],[77.36723,30.44222],[77.36398,30.43437],[77.36346,30.44325],[77.35481,30.4557],[77.35358,30.46075],[77.34669,30.45783],[77.34188,30.45994],[77.33267,30.45766],[77.32823,30.45575],[77.32588,30.45168],[77.3211,30.44807],[77.31924,30.44796],[77.31825,30.45032],[77.31667,30.44814],[77.31393,30.44822],[77.30718,30.44982],[77.30783,30.45273],[77.30392,30.45199],[77.29439,30.45451],[77.29182,30.45699],[77.29285,30.45951],[77.29107,30.46061],[77.28988,30.4604],[77.29117,30.45923],[77.28809,30.45765],[77.28333,30.45777],[77.27973,30.46025],[77.27826,30.45846],[77.27426,30.45875],[77.27245,30.46955],[77.26615,30.47434],[77.26536,30.47683],[77.25476,30.47665],[77.25266,30.47847],[77.251,30.47698],[77.24153,30.48306],[77.23751,30.48267],[77.23238,30.4845],[77.23034,30.48334],[77.22809,30.48545],[77.22101,30.4799],[77.21652,30.47067],[77.21351,30.46841],[77.20954,30.4802]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"77","area_level":"District","area_name":"Central","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.2143,28.78524],[77.2078,28.78814],[77.19817,28.78385],[77.1989,28.78169],[77.19528,28.77802],[77.18519,28.77086],[77.1792,28.77031],[77.17154,28.77209],[77.17155,28.76725],[77.17507,28.76378],[77.17454,28.75968],[77.17943,28.75795],[77.17874,28.75516],[77.18258,28.75339],[77.18226,28.75094],[77.17942,28.7504],[77.17552,28.74603],[77.17669,28.74049],[77.1845,28.73559],[77.18654,28.73289],[77.19022,28.73176],[77.19218,28.72901],[77.19191,28.72567],[77.19541,28.72875],[77.21536,28.72664],[77.2152,28.72235],[77.22214,28.71566],[77.21499,28.70238],[77.20255,28.6884],[77.204,28.68819],[77.20405,28.68515],[77.20033,28.68593],[77.19701,28.68467],[77.19361,28.68896],[77.18836,28.69108],[77.18817,28.6946],[77.17599,28.68364],[77.16956,28.68909],[77.16859,28.68864],[77.16796,28.68392],[77.17299,28.67932],[77.17473,28.67425],[77.17713,28.67525],[77.17908,28.6743],[77.17686,28.67069],[77.17824,28.66764],[77.17512,28.66556],[77.1679,28.65626],[77.16928,28.65308],[77.18024,28.65286],[77.17995,28.65081],[77.18119,28.65031],[77.17536,28.642],[77.17524,28.63327],[77.17686,28.6289],[77.18169,28.62366],[77.18513,28.62604],[77.19515,28.63896],[77.19835,28.64608],[77.21822,28.63437],[77.22363,28.63639],[77.24382,28.625],[77.24675,28.62152],[77.24922,28.61418],[77.25264,28.61292],[77.25568,28.61359],[77.25594,28.6089],[77.2652,28.59166],[77.26729,28.59204],[77.26539,28.59577],[77.27391,28.60199],[77.27922,28.59859],[77.28081,28.58968],[77.27836,28.58801],[77.27811,28.58513],[77.28493,28.58678],[77.28785,28.58555],[77.29185,28.58029],[77.29215,28.5774],[77.29849,28.57117],[77.30007,28.57628],[77.29838,28.58015],[77.3032,28.58384],[77.29044,28.60221],[77.28741,28.60877],[77.26989,28.63301],[77.2696,28.63859],[77.27335,28.643],[77.2719,28.64381],[77.27202,28.64751],[77.26994,28.64783],[77.27204,28.65095],[77.27455,28.65157],[77.27221,28.66227],[77.26122,28.65625],[77.25931,28.65948],[77.25183,28.66249],[77.25016,28.66518],[77.25117,28.66937],[77.25438,28.67083],[77.25773,28.68364],[77.25493,28.68464],[77.2505,28.68329],[77.24886,28.68471],[77.2495,28.68766],[77.24199,28.69077],[77.24646,28.70716],[77.25085,28.70589],[77.25268,28.71043],[77.25046,28.71326],[77.24206,28.71419],[77.23776,28.71229],[77.23698,28.71731],[77.23853,28.72433],[77.23714,28.725],[77.23829,28.72898],[77.24125,28.73003],[77.24186,28.73385],[77.24012,28.73605],[77.24182,28.73943],[77.24175,28.74338],[77.22807,28.74878],[77.22769,28.74469],[77.22339,28.74694],[77.22167,28.7449],[77.22303,28.75066],[77.22129,28.75087],[77.22201,28.75871],[77.21791,28.76696],[77.22123,28.77082],[77.21765,28.77533],[77.2185,28.78235],[77.21603,28.7852],[77.2143,28.78524]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"78","area_level":"District","area_name":"East","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.28857,28.65789],[77.27996,28.6551],[77.27735,28.65381],[77.27748,28.65242],[77.27208,28.65098],[77.27069,28.64974],[77.26994,28.64783],[77.27202,28.64751],[77.2719,28.64381],[77.27335,28.643],[77.27252,28.64189],[77.27178,28.64185],[77.27124,28.63963],[77.2696,28.63859],[77.27034,28.63638],[77.26989,28.63301],[77.28741,28.60877],[77.29044,28.60221],[77.3032,28.58384],[77.31051,28.59087],[77.3134,28.59659],[77.31887,28.59714],[77.31978,28.59775],[77.32517,28.59805],[77.32836,28.60016],[77.33457,28.60185],[77.33677,28.60181],[77.33966,28.60374],[77.34168,28.60606],[77.34242,28.60888],[77.34147,28.61698],[77.34256,28.62197],[77.34033,28.62253],[77.3397,28.62416],[77.33563,28.62687],[77.33063,28.63139],[77.32694,28.63286],[77.32465,28.63465],[77.3237,28.63432],[77.31628,28.6412],[77.3153,28.64001],[77.30778,28.64262],[77.30166,28.64379],[77.29685,28.64834],[77.2934,28.65375],[77.29036,28.657],[77.29015,28.65665],[77.28922,28.65787],[77.28857,28.65789]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"79","area_level":"District","area_name":"New Delhi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.20369,28.64315],[77.19827,28.64604],[77.19644,28.64099],[77.19046,28.6341],[77.18864,28.62959],[77.18169,28.62366],[77.17781,28.62704],[77.17666,28.6301],[77.16549,28.62796],[77.16169,28.633],[77.15323,28.63949],[77.14968,28.63725],[77.14708,28.64021],[77.14562,28.6382],[77.13629,28.64103],[77.12527,28.63894],[77.12196,28.63172],[77.12253,28.62842],[77.11824,28.62731],[77.11531,28.61818],[77.10394,28.61276],[77.10277,28.60626],[77.09883,28.60102],[77.10033,28.59989],[77.0997,28.59876],[77.10553,28.59517],[77.10428,28.59152],[77.10615,28.58934],[77.10453,28.58721],[77.10072,28.58881],[77.09934,28.59093],[77.09621,28.59149],[77.0961,28.588],[77.08114,28.57118],[77.06946,28.57493],[77.06558,28.56978],[77.05877,28.57146],[77.05101,28.5596],[77.06118,28.55261],[77.07054,28.5482],[77.07131,28.54379],[77.08892,28.53853],[77.08558,28.53176],[77.1036,28.51812],[77.09592,28.50652],[77.11465,28.49734],[77.12073,28.49594],[77.11857,28.48805],[77.13266,28.4876],[77.1444,28.48393],[77.15,28.49951],[77.14754,28.49972],[77.14338,28.49749],[77.13671,28.50434],[77.12937,28.50682],[77.13118,28.51785],[77.13419,28.52404],[77.14712,28.52349],[77.15621,28.52126],[77.15947,28.5258],[77.16403,28.52639],[77.1695,28.53338],[77.17489,28.53593],[77.17041,28.54024],[77.16055,28.54544],[77.16511,28.54569],[77.16959,28.54796],[77.18114,28.54873],[77.18374,28.55503],[77.18165,28.55535],[77.18418,28.5576],[77.18128,28.55865],[77.18298,28.56074],[77.18775,28.56293],[77.19236,28.56261],[77.19343,28.56508],[77.19865,28.56922],[77.20084,28.56234],[77.20423,28.56358],[77.20588,28.56208],[77.21017,28.58017],[77.20214,28.58081],[77.20016,28.58741],[77.20049,28.59149],[77.20326,28.58825],[77.2061,28.58746],[77.21222,28.58807],[77.21209,28.58937],[77.23551,28.5921],[77.23337,28.59509],[77.23315,28.6025],[77.24259,28.60818],[77.24554,28.60551],[77.25607,28.60867],[77.25568,28.61359],[77.25264,28.61292],[77.24922,28.61418],[77.24675,28.62152],[77.24382,28.625],[77.22363,28.63639],[77.21822,28.63437],[77.20369,28.64315]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"8","area_level":"District","area_name":"Kupwara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.34149,34.78608],[74.33502,34.78776],[74.3253,34.79391],[74.31847,34.79366],[74.31307,34.79161],[74.29569,34.77775],[74.27599,34.75001],[74.27038,34.74635],[74.26106,34.74147],[74.24041,34.73525],[74.22172,34.72189],[74.20756,34.72004],[74.20202,34.71738],[74.17477,34.6968],[74.16368,34.69036],[74.14748,34.68507],[74.14437,34.67266],[74.13739,34.66833],[74.13729,34.65774],[74.13296,34.65177],[74.11683,34.65235],[74.10138,34.66611],[74.09911,34.67804],[74.10062,34.68911],[74.09543,34.69181],[74.09204,34.68622],[74.08704,34.6843],[74.07149,34.68516],[74.05142,34.68072],[74.04137,34.68264],[74.03401,34.69283],[74.02995,34.69437],[74.01725,34.6943],[74.00745,34.68734],[73.99515,34.68287],[73.98782,34.68255],[73.97043,34.68857],[73.96221,34.67664],[73.95382,34.67232],[73.95392,34.66928],[73.95704,34.66537],[73.95075,34.66048],[73.9483,34.65649],[73.94957,34.65394],[73.9533,34.6521],[73.95285,34.64983],[73.94748,34.64762],[73.93557,34.6475],[73.93217,34.64461],[73.93165,34.64077],[73.93413,34.61632],[73.9308,34.61061],[73.92991,34.60447],[73.94572,34.59957],[73.95413,34.59908],[73.95539,34.59749],[73.95274,34.58281],[73.9609,34.58233],[73.95214,34.56953],[73.95672,34.5668],[73.95692,34.5651],[73.9551,34.56185],[73.94547,34.55439],[73.94041,34.55268],[73.93879,34.55479],[73.90514,34.52906],[73.91149,34.51971],[73.90544,34.51544],[73.8955,34.51461],[73.88887,34.50006],[73.88652,34.48817],[73.88001,34.48044],[73.87897,34.47663],[73.87893,34.47151],[73.88337,34.46661],[73.88291,34.46009],[73.88518,34.46227],[73.88476,34.44953],[73.8761,34.45016],[73.8482,34.42804],[73.84602,34.42984],[73.83914,34.43094],[73.8365,34.428],[73.8389,34.42201],[73.80321,34.42392],[73.80114,34.41879],[73.77423,34.39827],[73.76781,34.38639],[73.76365,34.38446],[73.76021,34.38492],[73.75404,34.38127],[73.7563,34.37685],[73.75209,34.3743],[73.74984,34.36801],[73.75197,34.3639],[73.7565,34.36219],[73.75269,34.346],[73.75985,34.34558],[73.76781,34.33772],[73.77433,34.33468],[73.78268,34.33348],[73.79714,34.33839],[73.79741,34.34301],[73.79937,34.34485],[73.80715,34.34493],[73.81098,34.34283],[73.80839,34.3377],[73.80905,34.3342],[73.82348,34.32943],[73.83461,34.33155],[73.83901,34.32823],[73.84314,34.32831],[73.85282,34.32106],[73.85897,34.323],[73.8628,34.33458],[73.87059,34.33379],[73.87063,34.32999],[73.87599,34.33209],[73.88403,34.33136],[73.89376,34.33963],[73.8989,34.34002],[73.90023,34.34878],[73.91163,34.348],[73.91281,34.34209],[73.91769,34.34037],[73.92117,34.33707],[73.93334,34.33502],[73.93074,34.32749],[73.92463,34.32026],[73.92572,34.31726],[73.9145,34.30817],[73.91468,34.30379],[73.92707,34.3035],[73.92699,34.31006],[73.93855,34.30932],[73.9385,34.29839],[73.93374,34.29255],[73.93379,34.28277],[73.93805,34.28249],[73.94126,34.27481],[73.96821,34.27414],[73.97972,34.27158],[73.98394,34.26395],[73.98329,34.258],[73.98965,34.2597],[73.99562,34.25755],[74.00957,34.24829],[74.02289,34.24457],[74.0273,34.24464],[74.03602,34.24951],[74.03572,34.25816],[74.03858,34.25667],[74.04206,34.25869],[74.04833,34.25821],[74.06359,34.26301],[74.07614,34.26019],[74.08216,34.26558],[74.09392,34.2682],[74.09827,34.26723],[74.10096,34.27037],[74.10519,34.2713],[74.11233,34.2694],[74.11958,34.27128],[74.12673,34.27035],[74.13502,34.27388],[74.14419,34.28162],[74.14928,34.28157],[74.15226,34.27922],[74.15622,34.27978],[74.16478,34.27624],[74.16895,34.2788],[74.1778,34.27931],[74.18154,34.28249],[74.18752,34.28157],[74.19935,34.28322],[74.20889,34.2886],[74.21464,34.28955],[74.21923,34.29338],[74.22127,34.29747],[74.23505,34.30448],[74.25932,34.31004],[74.26447,34.30757],[74.26699,34.30842],[74.27008,34.30626],[74.28833,34.31288],[74.29253,34.31577],[74.29846,34.31451],[74.31024,34.31813],[74.32079,34.31315],[74.32209,34.31038],[74.32674,34.30931],[74.33371,34.31053],[74.34572,34.31614],[74.34793,34.32241],[74.3466,34.32341],[74.354,34.32818],[74.36842,34.33312],[74.3769,34.33818],[74.37947,34.3407],[74.38177,34.34876],[74.39018,34.34875],[74.38631,34.35183],[74.39034,34.35712],[74.38992,34.35942],[74.38299,34.36288],[74.37789,34.36229],[74.37338,34.36677],[74.38023,34.37182],[74.38266,34.38371],[74.37887,34.38999],[74.36607,34.39272],[74.3499,34.39901],[74.34725,34.40952],[74.34796,34.41756],[74.34615,34.42356],[74.35918,34.42549],[74.38274,34.43729],[74.39268,34.43751],[74.39895,34.43447],[74.40083,34.42458],[74.4075,34.41557],[74.41578,34.41437],[74.45018,34.41583],[74.45458,34.417],[74.46787,34.43052],[74.47945,34.43264],[74.47721,34.43736],[74.48512,34.46248],[74.51781,34.48422],[74.52083,34.50199],[74.53485,34.51214],[74.53234,34.51899],[74.53408,34.52942],[74.53137,34.53808],[74.52149,34.54955],[74.52174,34.55271],[74.52897,34.57154],[74.53179,34.57489],[74.53316,34.58273],[74.54165,34.59021],[74.54749,34.60453],[74.54736,34.62424],[74.55894,34.62996],[74.56386,34.64036],[74.56519,34.65402],[74.56295,34.674],[74.56667,34.68773],[74.5695,34.69225],[74.59094,34.71127],[74.6061,34.73777],[74.59812,34.7563],[74.5918,34.76529],[74.58168,34.77248],[74.56821,34.77768],[74.54481,34.78222],[74.53143,34.78382],[74.5202,34.78305],[74.49976,34.78826],[74.48181,34.78254],[74.45628,34.78895],[74.43769,34.78366],[74.42737,34.78463],[74.41672,34.78861],[74.41169,34.78861],[74.39658,34.78428],[74.37763,34.79079],[74.35228,34.78524],[74.34149,34.78608]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"80","area_level":"District","area_name":"North","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.09917,28.87068],[77.09385,28.87153],[77.08756,28.87533],[77.08683,28.88089],[77.08266,28.8835],[77.07765,28.87718],[77.07924,28.87195],[77.07461,28.86752],[77.07175,28.86893],[77.06924,28.86719],[77.06098,28.87104],[77.05455,28.86297],[77.05102,28.85467],[77.04569,28.84746],[77.04513,28.84093],[77.04184,28.83786],[77.04261,28.83426],[77.04023,28.83206],[77.02333,28.83936],[77.00744,28.84071],[76.99928,28.83788],[76.99481,28.83951],[76.98724,28.8353],[76.98591,28.82939],[76.97969,28.82123],[76.97668,28.82222],[76.97308,28.82685],[76.96701,28.82805],[76.96432,28.82546],[76.96347,28.82226],[76.96487,28.8204],[76.9618,28.81487],[76.96774,28.8113],[76.96677,28.80925],[76.96913,28.80717],[76.96657,28.80099],[76.96871,28.80033],[76.96778,28.79815],[76.9785,28.79244],[76.98254,28.7929],[76.99165,28.78501],[77.00073,28.78383],[77.01344,28.77876],[77.01176,28.76298],[77.01432,28.76038],[77.01526,28.75498],[77.02102,28.75218],[77.0396,28.74811],[77.05042,28.74308],[77.05819,28.74224],[77.08186,28.72806],[77.08949,28.73767],[77.0944,28.73684],[77.09596,28.7394],[77.10957,28.73584],[77.10922,28.73441],[77.1197,28.71803],[77.11945,28.71352],[77.12155,28.71212],[77.12173,28.70711],[77.1257,28.70603],[77.13133,28.70922],[77.13041,28.71228],[77.13255,28.71581],[77.13751,28.71996],[77.13906,28.7197],[77.14008,28.72375],[77.14526,28.72914],[77.15163,28.72671],[77.16004,28.73255],[77.16422,28.72697],[77.16012,28.71883],[77.16338,28.71709],[77.16405,28.71262],[77.16102,28.7098],[77.16213,28.70739],[77.15888,28.7043],[77.16818,28.69901],[77.1729,28.69885],[77.17621,28.70167],[77.17781,28.70005],[77.18115,28.70102],[77.17967,28.69756],[77.18583,28.69279],[77.18822,28.69458],[77.18836,28.69108],[77.19361,28.68896],[77.19701,28.68467],[77.20033,28.68593],[77.20405,28.68515],[77.204,28.68819],[77.20255,28.6884],[77.21716,28.70546],[77.22203,28.71622],[77.2152,28.72235],[77.21536,28.72664],[77.19541,28.72875],[77.19191,28.72567],[77.19218,28.72901],[77.19022,28.73176],[77.18654,28.73289],[77.17669,28.74049],[77.17552,28.74603],[77.17942,28.7504],[77.18226,28.75094],[77.18258,28.75339],[77.17874,28.75516],[77.17943,28.75795],[77.17454,28.75968],[77.17507,28.76378],[77.17155,28.76725],[77.17143,28.77134],[77.17241,28.77273],[77.1792,28.77031],[77.18627,28.7712],[77.1989,28.78169],[77.19817,28.78385],[77.2078,28.78814],[77.20403,28.79082],[77.19928,28.7977],[77.20086,28.81225],[77.21896,28.80824],[77.22026,28.81914],[77.22439,28.82532],[77.223,28.83338],[77.21665,28.84151],[77.21671,28.85265],[77.21424,28.85582],[77.20991,28.85772],[77.19771,28.85923],[77.18142,28.85751],[77.1754,28.85832],[77.17306,28.85723],[77.1721,28.84991],[77.16595,28.84907],[77.15678,28.83897],[77.15775,28.83669],[77.14555,28.83797],[77.14241,28.83886],[77.14174,28.84469],[77.14531,28.85364],[77.14199,28.85624],[77.14255,28.85971],[77.14032,28.86206],[77.13222,28.8636],[77.12337,28.85762],[77.12086,28.85836],[77.12084,28.85994],[77.10983,28.87007],[77.09917,28.87068]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"81","area_level":"District","area_name":"North East","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[77.23588,28.77073],[77.23179,28.77079],[77.23216,28.77283],[77.23145,28.77441],[77.22535,28.77687],[77.22187,28.77739],[77.23415,28.78372],[77.22854,28.78653],[77.21603,28.7852],[77.2185,28.78235],[77.21886,28.78032],[77.21765,28.77533],[77.22123,28.77082],[77.22003,28.77031],[77.21791,28.76696],[77.21894,28.76376],[77.22201,28.75871],[77.22204,28.7515],[77.22129,28.75087],[77.22303,28.75066],[77.22167,28.7449],[77.22235,28.74563],[77.22259,28.74501],[77.22339,28.74694],[77.22361,28.7459],[77.22684,28.74498],[77.22773,28.74551],[77.22769,28.74469],[77.22856,28.74838],[77.22807,28.74878],[77.23844,28.74556],[77.24161,28.74371],[77.24199,28.74022],[77.24012,28.73605],[77.24186,28.73385],[77.24125,28.73003],[77.23829,28.72898],[77.23714,28.725],[77.23853,28.72433],[77.23698,28.71731],[77.2377,28.71567],[77.23685,28.7145],[77.23776,28.71229],[77.24206,28.71419],[77.25093,28.71317],[77.25111,28.71193],[77.25268,28.71043],[77.25085,28.70589],[77.24646,28.70716],[77.24199,28.69077],[77.24439,28.69],[77.24683,28.68791],[77.2495,28.68766],[77.24886,28.68471],[77.2505,28.68329],[77.25086,28.68422],[77.25493,28.68464],[77.2552,28.68366],[77.25773,28.68364],[77.25438,28.67083],[77.25868,28.67007],[77.26602,28.67106],[77.26999,28.67287],[77.26873,28.67345],[77.26931,28.67383],[77.26821,28.6747],[77.26979,28.6761],[77.26801,28.67687],[77.2702,28.67928],[77.2703,28.68001],[77.26939,28.68046],[77.2706,28.68307],[77.27205,28.69697],[77.27503,28.69678],[77.27977,28.69798],[77.27927,28.69696],[77.28191,28.69622],[77.28457,28.69334],[77.28655,28.69585],[77.29209,28.69295],[77.29708,28.69232],[77.29827,28.69657],[77.29699,28.70409],[77.29447,28.70558],[77.29152,28.70615],[77.28736,28.71027],[77.2871,28.71326],[77.28624,28.71453],[77.28909,28.71682],[77.28883,28.71957],[77.29077,28.72238],[77.28628,28.72458],[77.28573,28.72622],[77.27644,28.73545],[77.27291,28.73627],[77.27193,28.73546],[77.26082,28.73416],[77.25563,28.73887],[77.25456,28.74356],[77.2562,28.74388],[77.25918,28.75],[77.25886,28.75269],[77.25615,28.75435],[77.25636,28.7562],[77.24878,28.75528],[77.23556,28.76092],[77.23615,28.76358],[77.23588,28.77073]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"82","area_level":"District","area_name":"North West","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.96044,28.81534],[76.95101,28.81818],[76.94591,28.81112],[76.94628,28.80662],[76.94189,28.79866],[76.94604,28.79797],[76.95392,28.79068],[76.95007,28.78326],[76.94981,28.77706],[76.95557,28.76778],[76.94651,28.7588],[76.94449,28.75407],[76.9585,28.74278],[76.95593,28.73823],[76.96006,28.73274],[76.9594,28.72925],[76.9482,28.71299],[76.9532,28.70904],[76.96795,28.69943],[76.97446,28.70205],[76.97681,28.70044],[76.97647,28.69746],[76.98345,28.69005],[77.00006,28.67921],[77.00232,28.67981],[77.00938,28.68826],[77.0127,28.69531],[77.02811,28.69611],[77.03742,28.69846],[77.04512,28.69497],[77.04886,28.68824],[77.0541,28.68342],[77.0561,28.68683],[77.06452,28.69199],[77.07602,28.68302],[77.07881,28.68376],[77.08372,28.68844],[77.08787,28.68884],[77.09244,28.68598],[77.09501,28.689],[77.09788,28.6893],[77.10366,28.68468],[77.10768,28.68853],[77.1148,28.68306],[77.1193,28.6897],[77.12131,28.68907],[77.12304,28.68738],[77.12076,28.68372],[77.12207,28.68232],[77.13266,28.67713],[77.13937,28.67118],[77.1485,28.6692],[77.14939,28.67287],[77.15332,28.67234],[77.15729,28.67543],[77.1583,28.67325],[77.15732,28.67132],[77.1599,28.67061],[77.16391,28.66229],[77.15892,28.65809],[77.16696,28.6563],[77.17824,28.66764],[77.17686,28.67069],[77.17908,28.6743],[77.17473,28.67425],[77.17299,28.67932],[77.16796,28.68392],[77.16859,28.68864],[77.17599,28.68364],[77.18525,28.69127],[77.18574,28.69389],[77.17967,28.69756],[77.18115,28.70102],[77.17781,28.70005],[77.17621,28.70167],[77.1729,28.69885],[77.16818,28.69901],[77.15888,28.7043],[77.16213,28.70739],[77.16102,28.7098],[77.16405,28.71262],[77.16338,28.71709],[77.16012,28.71883],[77.16422,28.72697],[77.16058,28.73227],[77.15163,28.72671],[77.14526,28.72914],[77.14008,28.72375],[77.13906,28.7197],[77.13751,28.71996],[77.13255,28.71581],[77.13041,28.71228],[77.13133,28.70922],[77.1257,28.70603],[77.12173,28.70711],[77.12155,28.71212],[77.11945,28.71352],[77.12035,28.71503],[77.1184,28.7208],[77.10922,28.73441],[77.10957,28.73584],[77.10684,28.7372],[77.10192,28.73717],[77.09596,28.7394],[77.0944,28.73684],[77.08949,28.73767],[77.08186,28.72806],[77.05819,28.74224],[77.05042,28.74308],[77.0396,28.74811],[77.02269,28.75149],[77.01526,28.75498],[77.01432,28.76038],[77.01173,28.76325],[77.01344,28.77876],[77.00073,28.78383],[76.99165,28.78501],[76.98254,28.7929],[76.9785,28.79244],[76.96929,28.79707],[76.96778,28.79815],[76.96871,28.80033],[76.96655,28.80081],[76.96913,28.80717],[76.96677,28.80925],[76.96774,28.8113],[76.96578,28.81191],[76.96585,28.8135],[76.96044,28.81534]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"83","area_level":"District","area_name":"South","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.23676,28.5578],[77.23113,28.55907],[77.23086,28.55636],[77.23108,28.55625],[77.2319,28.55601],[77.23302,28.55553],[77.23768,28.55449],[77.24113,28.55411],[77.24433,28.55402],[77.24685,28.55352],[77.24633,28.5544],[77.24585,28.55643],[77.24602,28.55676],[77.24622,28.55762],[77.24668,28.55896],[77.23745,28.55767],[77.23686,28.55786],[77.23676,28.5578]]],[[[77.19899,28.56924],[77.19343,28.56508],[77.19236,28.56261],[77.18775,28.56293],[77.18298,28.56074],[77.18128,28.55865],[77.18418,28.5576],[77.18165,28.55535],[77.18374,28.55503],[77.18114,28.54873],[77.16959,28.54796],[77.16511,28.54569],[77.16055,28.54544],[77.17041,28.54024],[77.17489,28.53593],[77.1695,28.53338],[77.16403,28.52639],[77.15947,28.5258],[77.15621,28.52126],[77.14712,28.52349],[77.13419,28.52404],[77.13118,28.51785],[77.12937,28.50682],[77.13671,28.50434],[77.14338,28.49749],[77.14754,28.49972],[77.15,28.49951],[77.1478,28.49241],[77.14519,28.48834],[77.1444,28.48393],[77.13266,28.4876],[77.12705,28.48696],[77.11857,28.48805],[77.11469,28.48097],[77.11297,28.47123],[77.11078,28.47131],[77.11684,28.46283],[77.12185,28.45851],[77.12363,28.44546],[77.12891,28.4407],[77.13142,28.44061],[77.13233,28.43914],[77.14108,28.4367],[77.14831,28.4374],[77.15507,28.43209],[77.1623,28.42894],[77.16593,28.42569],[77.16517,28.41423],[77.17114,28.40924],[77.17145,28.40626],[77.17448,28.40467],[77.17794,28.40767],[77.18437,28.41043],[77.19053,28.40721],[77.21601,28.41146],[77.21661,28.40973],[77.22195,28.41245],[77.2276,28.41353],[77.23841,28.42083],[77.24918,28.42406],[77.25264,28.43291],[77.24883,28.43292],[77.24986,28.43777],[77.24909,28.44609],[77.24575,28.45418],[77.24251,28.45615],[77.23441,28.45472],[77.23292,28.45791],[77.23562,28.47117],[77.2433,28.47882],[77.24806,28.48065],[77.24947,28.48244],[77.24925,28.49078],[77.24282,28.49881],[77.24186,28.50561],[77.24499,28.51431],[77.24383,28.52085],[77.24606,28.52765],[77.23508,28.53421],[77.23415,28.54725],[77.23119,28.54904],[77.23154,28.55324],[77.22387,28.55475],[77.22288,28.56129],[77.22016,28.56351],[77.21924,28.56238],[77.21782,28.56305],[77.2181,28.56416],[77.2157,28.56631],[77.21166,28.56323],[77.20912,28.55903],[77.20423,28.56358],[77.20084,28.56234],[77.19899,28.56924]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"84","area_level":"District","area_name":"South West","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.95268,28.66884],[76.94885,28.67019],[76.93534,28.66786],[76.92496,28.65015],[76.9365,28.63783],[76.94446,28.63329],[76.94299,28.628],[76.93476,28.61836],[76.92746,28.62356],[76.9202,28.6315],[76.91429,28.63235],[76.90647,28.6238],[76.89327,28.63169],[76.88833,28.63196],[76.8824,28.62279],[76.87734,28.60883],[76.87176,28.60286],[76.86788,28.59063],[76.86431,28.586],[76.84611,28.5848],[76.83953,28.58279],[76.83889,28.57328],[76.84069,28.57166],[76.84241,28.5563],[76.84527,28.5505],[76.86472,28.5435],[76.86738,28.53555],[76.87321,28.53275],[76.87458,28.52701],[76.87703,28.5244],[76.88713,28.52057],[76.88146,28.50989],[76.88074,28.50545],[76.88569,28.50245],[76.88545,28.50114],[76.89223,28.50083],[76.89862,28.50874],[76.90302,28.50893],[76.90793,28.51381],[76.9144,28.51167],[76.92079,28.50698],[76.92734,28.51051],[76.93349,28.5097],[76.94166,28.50454],[76.95167,28.50422],[76.97075,28.5152],[76.9781,28.52132],[76.98276,28.51712],[76.99039,28.5135],[76.99519,28.51672],[76.99656,28.51975],[77.01022,28.51435],[77.01711,28.52083],[77.01455,28.52395],[77.00023,28.53209],[77.00665,28.54141],[77.01544,28.53974],[77.02404,28.53309],[77.03176,28.53157],[77.043,28.52472],[77.04851,28.52074],[77.04624,28.5167],[77.06001,28.51237],[77.06682,28.51201],[77.0718,28.52019],[77.09968,28.51099],[77.1036,28.51812],[77.08558,28.53176],[77.08892,28.53853],[77.07131,28.54379],[77.07054,28.5482],[77.05063,28.5589],[77.05877,28.57146],[77.06558,28.56978],[77.06946,28.57493],[77.08114,28.57118],[77.0961,28.588],[77.09621,28.59149],[77.10453,28.58721],[77.10615,28.58934],[77.10428,28.59152],[77.10553,28.59517],[77.0997,28.59876],[77.09883,28.60102],[77.10277,28.60626],[77.10394,28.61276],[77.08954,28.61807],[77.08634,28.61532],[77.08053,28.61387],[77.0797,28.61187],[77.06409,28.62123],[77.06119,28.61776],[77.05312,28.61831],[77.0518,28.61638],[77.05489,28.61168],[77.05233,28.60745],[77.06194,28.59963],[77.05981,28.59842],[77.05864,28.59953],[77.0554,28.59622],[77.05304,28.59667],[77.03632,28.604],[77.03262,28.61378],[77.03418,28.61654],[77.03049,28.61903],[77.02251,28.62097],[77.02204,28.62652],[77.01601,28.62719],[77.01419,28.62541],[77.0078,28.62411],[77.00461,28.62522],[77.0069,28.628],[76.99968,28.6474],[76.99975,28.64961],[77.00215,28.65128],[76.9927,28.65631],[76.99309,28.6583],[76.98874,28.66082],[76.97968,28.65429],[76.97751,28.65706],[76.96801,28.65851],[76.96269,28.66136],[76.95268,28.66884]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"85","area_level":"District","area_name":"West","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.97643,28.69939],[76.97681,28.70044],[76.97446,28.70205],[76.9725,28.70184],[76.96774,28.69954],[76.96483,28.69628],[76.95747,28.68332],[76.95405,28.6672],[76.96801,28.65851],[76.97751,28.65706],[76.97968,28.65429],[76.98874,28.66082],[76.99309,28.6583],[76.9927,28.65631],[77.00215,28.65128],[76.99975,28.64961],[76.99968,28.6474],[77.0069,28.628],[77.00461,28.62522],[77.0078,28.62411],[77.01419,28.62541],[77.01601,28.62719],[77.02204,28.62652],[77.02251,28.62097],[77.03049,28.61903],[77.03418,28.61654],[77.03262,28.61378],[77.03632,28.604],[77.05304,28.59667],[77.0554,28.59622],[77.05864,28.59953],[77.05981,28.59842],[77.06194,28.59963],[77.05233,28.60745],[77.05489,28.61168],[77.0518,28.61638],[77.05312,28.61831],[77.06119,28.61776],[77.06409,28.62123],[77.0797,28.61187],[77.08053,28.61387],[77.08634,28.61532],[77.08954,28.61807],[77.10394,28.61276],[77.11531,28.61818],[77.11824,28.62731],[77.12265,28.62863],[77.12196,28.63172],[77.12527,28.63894],[77.13629,28.64103],[77.14562,28.6382],[77.14708,28.64021],[77.14968,28.63725],[77.15323,28.63949],[77.16169,28.633],[77.16549,28.62796],[77.17666,28.6301],[77.17524,28.63327],[77.17535,28.64193],[77.18119,28.65031],[77.17995,28.65081],[77.18024,28.65286],[77.16928,28.65308],[77.16773,28.65625],[77.15892,28.65809],[77.16391,28.66229],[77.1599,28.67061],[77.15732,28.67132],[77.1583,28.67325],[77.15729,28.67543],[77.15332,28.67234],[77.14939,28.67287],[77.1485,28.6692],[77.13937,28.67118],[77.13266,28.67713],[77.12207,28.68232],[77.12076,28.68372],[77.12304,28.68738],[77.12131,28.68907],[77.1193,28.6897],[77.1148,28.68306],[77.10768,28.68853],[77.10366,28.68468],[77.09788,28.6893],[77.09501,28.689],[77.09244,28.68598],[77.08787,28.68884],[77.08372,28.68844],[77.07881,28.68376],[77.07602,28.68302],[77.06452,28.69199],[77.0561,28.68683],[77.0541,28.68342],[77.04886,28.68824],[77.04512,28.69497],[77.03742,28.69846],[77.02811,28.69611],[77.0127,28.69531],[77.00938,28.68826],[77.00232,28.67981],[77.00006,28.67921],[76.98345,28.69005],[76.97647,28.69746],[76.97643,28.69939]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"86","area_level":"District","area_name":"Ajmer","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.09072,25.84801],[74.09358,25.85119],[74.09081,25.85214],[74.08866,25.8509],[74.08672,25.85016],[74.08284,25.84928],[74.08071,25.84834],[74.07951,25.84766],[74.07793,25.84567],[74.07139,25.84314],[74.07002,25.843],[74.06801,25.84235],[74.06524,25.84033],[74.06522,25.8401],[74.06756,25.83874],[74.06506,25.83659],[74.06314,25.83556],[74.06079,25.83461],[74.06105,25.83291],[74.06263,25.83311],[74.06835,25.8349],[74.07346,25.83827],[74.07505,25.83883],[74.07851,25.84103],[74.07887,25.84358],[74.07988,25.84372],[74.08022,25.84574],[74.08203,25.84494],[74.08298,25.84616],[74.08364,25.84622],[74.08727,25.84574],[74.08726,25.84479],[74.08782,25.84478],[74.09072,25.84801]]],[[[74.03952,25.83897],[74.0189,25.85263],[74.00622,25.8633],[73.99654,25.86571],[73.97857,25.85193],[73.97468,25.84673],[73.97331,25.84132],[73.97473,25.84034],[73.97415,25.83799],[73.96908,25.83329],[73.96728,25.83585],[73.95417,25.84036],[73.9489,25.83608],[73.9422,25.82736],[73.9459,25.81194],[73.94527,25.80411],[73.92505,25.79194],[73.92472,25.78715],[73.92998,25.784],[73.93183,25.76754],[73.92581,25.76625],[73.92503,25.76164],[73.90752,25.74077],[73.91325,25.72506],[73.9116,25.71873],[73.91127,25.70605],[73.91566,25.6971],[73.90916,25.68496],[73.91818,25.68106],[73.93285,25.67753],[73.92918,25.67186],[73.93949,25.66637],[73.94014,25.66227],[73.94651,25.65532],[73.94497,25.64976],[73.95099,25.6478],[73.96095,25.65595],[73.96934,25.65872],[73.97871,25.66842],[73.98458,25.66798],[73.98692,25.66642],[73.98856,25.66873],[73.98542,25.67527],[73.99005,25.68305],[74.0119,25.69746],[74.01195,25.69943],[74.01472,25.70209],[74.01295,25.70502],[74.00474,25.70746],[73.98723,25.70692],[73.97782,25.71152],[74.00424,25.73286],[74.00931,25.74253],[74.0214,25.74772],[74.03666,25.75823],[74.04306,25.75802],[74.04449,25.76043],[74.04931,25.75382],[74.053,25.75421],[74.06364,25.7572],[74.07117,25.76218],[74.08502,25.76787],[74.0908,25.76667],[74.09444,25.76917],[74.09139,25.77596],[74.09551,25.78207],[74.09158,25.78595],[74.09091,25.79033],[74.08277,25.79548],[74.07766,25.79626],[74.077,25.80052],[74.06608,25.80653],[74.06355,25.8125],[74.06491,25.81571],[74.05937,25.8258],[74.03952,25.83897]]],[[[74.82778,25.87517],[74.8371,25.87543],[74.8548,25.87993],[74.86154,25.87752],[74.87063,25.87706],[74.87697,25.87439],[74.88697,25.87448],[74.88974,25.87126],[74.89157,25.87428],[74.90196,25.88159],[74.91658,25.87809],[74.9252,25.87788],[74.93569,25.87021],[74.93889,25.86418],[74.94191,25.86239],[74.96249,25.86397],[74.98305,25.86329],[74.98292,25.85692],[74.98718,25.85412],[74.98645,25.84799],[74.99514,25.84288],[75.01761,25.85925],[75.02602,25.85303],[75.04144,25.84631],[75.03642,25.83667],[75.0374,25.83163],[75.03007,25.82965],[75.0273,25.8241],[75.02094,25.82033],[75.00936,25.80908],[75.01265,25.80785],[75.02062,25.79977],[75.02195,25.80074],[75.02733,25.79311],[75.03715,25.78641],[75.04624,25.78332],[75.06471,25.78029],[75.07568,25.78243],[75.07718,25.7723],[75.06633,25.7577],[75.06711,25.75606],[75.07151,25.75472],[75.06544,25.7415],[75.06686,25.73743],[75.08956,25.7229],[75.0851,25.71612],[75.0833,25.70963],[75.08552,25.70414],[75.09985,25.70277],[75.10837,25.69722],[75.11581,25.70755],[75.13793,25.70458],[75.14392,25.71509],[75.1449,25.72191],[75.15903,25.72469],[75.16582,25.72042],[75.16655,25.71755],[75.17571,25.71358],[75.17471,25.71267],[75.19183,25.70934],[75.19447,25.70487],[75.19887,25.70391],[75.19753,25.70007],[75.21071,25.69168],[75.23004,25.68625],[75.24332,25.68463],[75.25168,25.68562],[75.25867,25.7027],[75.26198,25.70485],[75.27471,25.70053],[75.27491,25.70582],[75.27284,25.70986],[75.27545,25.72392],[75.29563,25.74342],[75.3058,25.75866],[75.31727,25.76604],[75.32193,25.77243],[75.32531,25.78209],[75.33235,25.79053],[75.33711,25.80187],[75.33485,25.81153],[75.33558,25.82],[75.3424,25.82836],[75.34984,25.83123],[75.34776,25.8331],[75.33251,25.83421],[75.32127,25.84374],[75.31568,25.85457],[75.30563,25.85945],[75.30334,25.85933],[75.29788,25.85407],[75.28026,25.86053],[75.27352,25.85903],[75.27118,25.85602],[75.26632,25.8537],[75.26376,25.85457],[75.26531,25.88531],[75.25359,25.89051],[75.24379,25.90016],[75.2444,25.91437],[75.24875,25.93353],[75.24737,25.9382],[75.25065,25.94061],[75.25427,25.93933],[75.26431,25.94574],[75.26558,25.94847],[75.27034,25.94787],[75.27048,25.95069],[75.2854,25.9466],[75.28735,25.94907],[75.29982,25.94506],[75.30684,25.95938],[75.30781,25.96476],[75.30734,25.96812],[75.30237,25.97138],[75.30182,25.9775],[75.29832,25.97822],[75.30432,25.98874],[75.31614,25.99699],[75.32426,25.99797],[75.32681,26.00132],[75.33186,26.00333],[75.34601,26.00242],[75.34927,26.01168],[75.35058,26.01164],[75.35263,26.01736],[75.35168,26.02039],[75.34878,26.02303],[75.34594,26.02323],[75.34424,26.03387],[75.34115,26.03582],[75.34265,26.03702],[75.33476,26.04523],[75.33383,26.04854],[75.32873,26.05077],[75.33012,26.05382],[75.32834,26.05413],[75.32887,26.05572],[75.32132,26.05605],[75.31374,26.05954],[75.31402,26.0613],[75.30575,26.06291],[75.30348,26.0719],[75.30445,26.08017],[75.30889,26.08644],[75.31208,26.0883],[75.31518,26.09445],[75.32222,26.09645],[75.3299,26.10617],[75.32871,26.10695],[75.33,26.1181],[75.3363,26.13186],[75.33394,26.13138],[75.33229,26.13551],[75.32889,26.13831],[75.30478,26.14668],[75.29744,26.14727],[75.28995,26.14533],[75.2862,26.13983],[75.27265,26.13454],[75.27295,26.13178],[75.27076,26.13062],[75.27204,26.12737],[75.26884,26.11332],[75.26197,26.105],[75.26203,26.09939],[75.2584,26.09744],[75.25589,26.08943],[75.2471,26.08144],[75.24266,26.07944],[75.24385,26.08431],[75.24152,26.08493],[75.23912,26.08978],[75.23218,26.09111],[75.22451,26.09699],[75.21845,26.10334],[75.21707,26.10766],[75.20826,26.10692],[75.18831,26.11037],[75.18179,26.11683],[75.18242,26.12785],[75.18382,26.12814],[75.18651,26.14614],[75.18565,26.1522],[75.18707,26.15976],[75.18122,26.16388],[75.18374,26.16664],[75.1827,26.16913],[75.16773,26.17241],[75.16769,26.17506],[75.15627,26.18178],[75.16168,26.18763],[75.15761,26.18948],[75.15811,26.20081],[75.15525,26.20422],[75.15269,26.22108],[75.14109,26.22686],[75.14278,26.22995],[75.13959,26.23712],[75.14038,26.24514],[75.12132,26.25324],[75.11554,26.25851],[75.11782,26.26165],[75.11845,26.26889],[75.11326,26.27666],[75.11485,26.28221],[75.11202,26.28829],[75.12451,26.29207],[75.12907,26.29519],[75.13365,26.30636],[75.13551,26.3173],[75.13147,26.31985],[75.13221,26.32135],[75.13021,26.32376],[75.12927,26.33785],[75.12811,26.33816],[75.12898,26.34106],[75.12655,26.34298],[75.12612,26.35207],[75.12479,26.35329],[75.13415,26.36417],[75.14163,26.36426],[75.14364,26.3739],[75.13461,26.37826],[75.13401,26.38326],[75.1285,26.39385],[75.12862,26.40257],[75.13178,26.40923],[75.14223,26.41199],[75.16146,26.41276],[75.16548,26.41416],[75.1676,26.41679],[75.16853,26.41841],[75.16529,26.41933],[75.16398,26.42207],[75.16854,26.42489],[75.16923,26.43988],[75.17101,26.4401],[75.17454,26.44475],[75.17067,26.45248],[75.16884,26.46308],[75.1616,26.46257],[75.16196,26.47398],[75.15645,26.47255],[75.15593,26.46991],[75.15308,26.46899],[75.14621,26.47009],[75.14406,26.47308],[75.14582,26.48279],[75.14945,26.48993],[75.15135,26.49994],[75.15037,26.50327],[75.12938,26.51355],[75.12761,26.51734],[75.12353,26.52042],[75.11376,26.52332],[75.11526,26.53035],[75.12111,26.53797],[75.12166,26.54092],[75.122,26.54621],[75.12019,26.54699],[75.12071,26.54979],[75.1181,26.5502],[75.11859,26.5524],[75.10979,26.55775],[75.09653,26.55983],[75.09615,26.55847],[75.08245,26.55417],[75.07474,26.54495],[75.06967,26.54701],[75.06149,26.55524],[75.06105,26.55876],[75.06297,26.56324],[75.06211,26.5665],[75.06382,26.56751],[75.06345,26.57264],[75.06533,26.57835],[75.06933,26.58599],[75.07919,26.5892],[75.07879,26.59679],[75.08138,26.60902],[75.08139,26.61169],[75.06803,26.6133],[75.06127,26.62497],[75.06402,26.63344],[75.06595,26.63285],[75.06835,26.64486],[75.06532,26.65493],[75.04449,26.65838],[75.04057,26.6599],[75.03951,26.66398],[75.03791,26.66454],[75.02988,26.66453],[75.02983,26.6628],[75.02557,26.66486],[75.02058,26.66394],[75.02001,26.66858],[75.01316,26.68397],[75.00952,26.68576],[75.0113,26.68987],[74.99843,26.69024],[74.99807,26.68701],[74.99368,26.68707],[74.99192,26.68319],[74.98464,26.68108],[74.97771,26.67484],[74.96892,26.67921],[74.96473,26.68402],[74.96489,26.69092],[74.96276,26.6929],[74.96306,26.6965],[74.96157,26.69665],[74.96299,26.70677],[74.96553,26.70711],[74.96829,26.71163],[74.96584,26.71308],[74.96458,26.72109],[74.96223,26.7234],[74.94285,26.72403],[74.94272,26.73322],[74.94454,26.73362],[74.97747,26.73568],[75.0004,26.73197],[75.00313,26.7429],[75.00758,26.74875],[75.00842,26.75279],[74.99732,26.75336],[74.99768,26.75497],[74.99274,26.7567],[74.98327,26.76637],[74.98343,26.76298],[74.95767,26.7579],[74.9522,26.75319],[74.951,26.75363],[74.94817,26.74965],[74.93896,26.74895],[74.93715,26.75943],[74.9383,26.78003],[74.93786,26.78126],[74.93323,26.781],[74.93122,26.79367],[74.92532,26.79249],[74.92495,26.81584],[74.92112,26.82193],[74.92042,26.82669],[74.91435,26.83565],[74.91446,26.83771],[74.94242,26.84475],[74.94171,26.84662],[74.95391,26.84882],[74.95373,26.85085],[74.95619,26.85119],[74.95472,26.86578],[74.96021,26.87382],[74.9659,26.87502],[74.97575,26.89083],[74.97331,26.89135],[74.97171,26.8983],[74.97667,26.91208],[74.97767,26.92595],[74.97912,26.92598],[74.97909,26.92988],[74.98026,26.92994],[74.98107,26.94351],[74.97622,26.94793],[74.96939,26.94839],[74.96782,26.94577],[74.96425,26.94712],[74.96367,26.95351],[74.9595,26.96102],[74.94878,26.96364],[74.94602,26.96227],[74.91683,26.9644],[74.91043,26.96641],[74.91084,26.9734],[74.90909,26.97589],[74.90436,26.97575],[74.90415,26.97691],[74.86989,26.97448],[74.85361,26.97867],[74.84183,26.95797],[74.83932,26.95606],[74.83691,26.94593],[74.83296,26.94],[74.83376,26.93268],[74.82623,26.92751],[74.82347,26.91224],[74.82731,26.9091],[74.82794,26.90413],[74.82262,26.89297],[74.81596,26.88489],[74.81847,26.88397],[74.81921,26.88103],[74.81375,26.867],[74.8073,26.8625],[74.8047,26.85684],[74.79924,26.85371],[74.78536,26.85329],[74.76949,26.84981],[74.77023,26.84163],[74.77213,26.83967],[74.76555,26.82866],[74.76772,26.82837],[74.76903,26.82372],[74.77583,26.81936],[74.77461,26.81398],[74.77684,26.81269],[74.77611,26.80244],[74.77927,26.80107],[74.78013,26.79793],[74.77597,26.79003],[74.7695,26.79325],[74.75904,26.7912],[74.75752,26.78803],[74.75132,26.78511],[74.75,26.7711],[74.74086,26.76921],[74.73985,26.77193],[74.7188,26.77092],[74.71702,26.7725],[74.71341,26.77216],[74.71297,26.77574],[74.71165,26.77592],[74.69885,26.77384],[74.69497,26.77126],[74.69749,26.76378],[74.69282,26.76316],[74.6898,26.75546],[74.68677,26.75452],[74.68556,26.75004],[74.68113,26.74571],[74.68076,26.74033],[74.68359,26.73656],[74.66309,26.71218],[74.67058,26.71023],[74.67713,26.71058],[74.68792,26.70628],[74.71218,26.70559],[74.71267,26.70273],[74.72186,26.69998],[74.71603,26.6871],[74.71532,26.67823],[74.71726,26.67533],[74.71464,26.66699],[74.70211,26.65235],[74.69414,26.64717],[74.68628,26.62405],[74.6804,26.61691],[74.67966,26.61228],[74.67671,26.61095],[74.67646,26.60918],[74.67356,26.60898],[74.67435,26.60133],[74.67058,26.59534],[74.6629,26.59295],[74.65506,26.58698],[74.65188,26.59037],[74.64794,26.59078],[74.64727,26.59308],[74.63976,26.58817],[74.63468,26.58007],[74.62664,26.573],[74.61734,26.56842],[74.61293,26.59548],[74.60967,26.59995],[74.61358,26.60365],[74.60209,26.61214],[74.60123,26.61325],[74.60297,26.61489],[74.59241,26.62672],[74.58844,26.62854],[74.57871,26.61796],[74.57162,26.60712],[74.56409,26.60042],[74.55844,26.58883],[74.54999,26.58013],[74.53697,26.55871],[74.52992,26.55127],[74.52019,26.54483],[74.50922,26.52858],[74.51052,26.52744],[74.50611,26.52468],[74.50288,26.51975],[74.49155,26.51253],[74.48274,26.49858],[74.46253,26.48708],[74.44085,26.50365],[74.43245,26.49511],[74.43115,26.48633],[74.40408,26.48946],[74.4036,26.48799],[74.39992,26.48818],[74.39951,26.48675],[74.39704,26.48679],[74.39748,26.4851],[74.39456,26.48435],[74.39098,26.48509],[74.39015,26.48766],[74.38739,26.48857],[74.37011,26.48748],[74.37145,26.48394],[74.36965,26.47603],[74.36405,26.47501],[74.35346,26.46931],[74.35015,26.45347],[74.34291,26.44876],[74.34218,26.44541],[74.33296,26.44156],[74.32789,26.4412],[74.32283,26.44319],[74.31723,26.44864],[74.31722,26.45195],[74.31502,26.45537],[74.30945,26.45615],[74.29309,26.45075],[74.28894,26.43562],[74.28761,26.41386],[74.28877,26.40783],[74.2924,26.40167],[74.29296,26.39099],[74.30459,26.38245],[74.30263,26.37522],[74.30414,26.37119],[74.30339,26.35793],[74.30698,26.34579],[74.30474,26.3292],[74.30395,26.32752],[74.29721,26.32495],[74.29463,26.32202],[74.28934,26.32073],[74.27885,26.31252],[74.27174,26.30898],[74.2521,26.28609],[74.25941,26.27722],[74.26517,26.27638],[74.26996,26.26588],[74.27382,26.26295],[74.27324,26.26038],[74.29598,26.25153],[74.31039,26.25156],[74.32121,26.26071],[74.32849,26.26375],[74.33251,26.26893],[74.34376,26.27622],[74.35348,26.2875],[74.36019,26.2913],[74.38726,26.27783],[74.39832,26.26758],[74.39827,26.26489],[74.37853,26.25534],[74.37375,26.25024],[74.36865,26.23974],[74.36873,26.22927],[74.37506,26.22648],[74.37533,26.21065],[74.36759,26.19122],[74.35414,26.19136],[74.3523,26.1947],[74.34035,26.19611],[74.32012,26.18698],[74.31935,26.18312],[74.31712,26.18141],[74.31039,26.18485],[74.30372,26.18646],[74.3011,26.18559],[74.29301,26.17769],[74.29048,26.17035],[74.28617,26.16879],[74.27281,26.17374],[74.27072,26.16308],[74.273,26.15867],[74.28506,26.15193],[74.29168,26.14559],[74.29132,26.1432],[74.30189,26.13332],[74.29545,26.12369],[74.28633,26.12139],[74.28172,26.11279],[74.27943,26.11216],[74.27219,26.10203],[74.26627,26.10278],[74.25941,26.09607],[74.25853,26.09058],[74.25,26.08561],[74.24448,26.07886],[74.23787,26.06647],[74.24036,26.05988],[74.24483,26.05385],[74.23967,26.0521],[74.23164,26.05469],[74.22985,26.05801],[74.22655,26.05783],[74.22127,26.05499],[74.22198,26.05181],[74.21837,26.04755],[74.21001,26.04629],[74.20651,26.04782],[74.19386,26.03614],[74.18614,26.03209],[74.18079,26.03255],[74.17764,26.03647],[74.17615,26.0421],[74.17699,26.0628],[74.17041,26.06767],[74.16304,26.06776],[74.15958,26.05232],[74.15346,26.04618],[74.15282,26.04265],[74.15518,26.0257],[74.16868,26.01565],[74.17034,26.00958],[74.16572,25.99971],[74.14973,25.98557],[74.13113,25.96205],[74.12691,25.96038],[74.13367,25.9559],[74.14025,25.95866],[74.14632,25.95595],[74.14991,25.9582],[74.15711,25.95719],[74.14736,25.9432],[74.16298,25.92739],[74.16252,25.92502],[74.15744,25.9154],[74.15075,25.91087],[74.13992,25.8978],[74.14091,25.89178],[74.13908,25.8895],[74.13205,25.884],[74.12467,25.88363],[74.11743,25.88053],[74.11576,25.87034],[74.11594,25.86596],[74.11825,25.86341],[74.12693,25.86351],[74.13771,25.85668],[74.15167,25.85732],[74.15765,25.85235],[74.17949,25.84632],[74.19439,25.85372],[74.19562,25.85955],[74.19454,25.86143],[74.20166,25.87032],[74.20527,25.87165],[74.20433,25.87519],[74.20794,25.87731],[74.20628,25.88098],[74.20831,25.88203],[74.20854,25.88593],[74.21093,25.8867],[74.21205,25.89228],[74.21879,25.89285],[74.22083,25.89733],[74.22533,25.89612],[74.22461,25.8948],[74.2275,25.89142],[74.23366,25.88686],[74.24073,25.88532],[74.25298,25.87043],[74.25564,25.86897],[74.26413,25.87159],[74.26598,25.87373],[74.26176,25.87576],[74.26125,25.87996],[74.24831,25.89227],[74.24787,25.89475],[74.24573,25.89515],[74.24817,25.89859],[74.24745,25.9025],[74.24491,25.90437],[74.24505,25.9081],[74.24323,25.90966],[74.24014,25.90807],[74.23614,25.91243],[74.23559,25.9152],[74.23283,25.91649],[74.23286,25.92724],[74.23016,25.92896],[74.22869,25.93467],[74.24169,25.93357],[74.24747,25.93866],[74.25083,25.93632],[74.2504,25.93288],[74.25627,25.93619],[74.26685,25.93441],[74.27218,25.94261],[74.27243,25.94374],[74.26845,25.94532],[74.27076,25.95037],[74.27664,25.9513],[74.27678,25.9447],[74.2752,25.94367],[74.27884,25.93974],[74.28319,25.9393],[74.28429,25.93078],[74.28277,25.92691],[74.28511,25.92444],[74.2865,25.92027],[74.28516,25.91852],[74.28877,25.91106],[74.30001,25.91493],[74.3002,25.92304],[74.29128,25.92658],[74.29094,25.93931],[74.29246,25.94087],[74.28833,25.96129],[74.28281,25.96201],[74.28846,25.96732],[74.29455,25.9693],[74.29181,25.97258],[74.29347,25.98172],[74.29653,25.98243],[74.30311,25.98988],[74.30896,25.99207],[74.31251,25.99818],[74.32176,26.0],[74.32236,26.00246],[74.31987,26.00391],[74.31759,26.00895],[74.32315,26.01362],[74.33238,26.01474],[74.33655,26.01889],[74.34409,26.01567],[74.3463,26.02014],[74.34552,26.022],[74.34971,26.02425],[74.35794,26.01574],[74.36237,26.01858],[74.37575,26.01177],[74.37919,26.0075],[74.38021,26.0102],[74.3863,26.00558],[74.38803,25.99998],[74.38539,25.99263],[74.39092,25.98787],[74.39163,25.98551],[74.38625,25.97332],[74.38965,25.96176],[74.39901,25.95512],[74.40649,25.95209],[74.41194,25.94588],[74.41509,25.9368],[74.42413,25.93516],[74.42456,25.93052],[74.4353,25.92663],[74.43731,25.92606],[74.45261,25.93216],[74.46492,25.93191],[74.47491,25.9263],[74.4841,25.92811],[74.49084,25.92381],[74.50747,25.91915],[74.52469,25.91179],[74.5273,25.90311],[74.54,25.90274],[74.55883,25.91154],[74.5595,25.91375],[74.56343,25.91432],[74.57686,25.91355],[74.59231,25.90908],[74.59339,25.91611],[74.60337,25.91536],[74.61562,25.91327],[74.61372,25.90519],[74.62408,25.90554],[74.65964,25.917],[74.68253,25.91911],[74.69487,25.9182],[74.71031,25.92107],[74.72162,25.91856],[74.73218,25.91122],[74.73674,25.91232],[74.74009,25.91129],[74.75508,25.89878],[74.75966,25.89621],[74.76669,25.89504],[74.76962,25.89069],[74.76977,25.88617],[74.77843,25.88319],[74.78896,25.87635],[74.80151,25.87292],[74.81143,25.8737],[74.8199,25.8721],[74.82778,25.87517]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"87","area_level":"District","area_name":"Alwar","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.85108,28.22115],[76.84689,28.22148],[76.84606,28.21953],[76.83818,28.21995],[76.83121,28.20917],[76.81279,28.209],[76.8084,28.21086],[76.8048,28.20454],[76.80478,28.1973],[76.81303,28.19328],[76.81225,28.19091],[76.80916,28.18704],[76.80622,28.18654],[76.80123,28.18774],[76.80036,28.19249],[76.79752,28.19181],[76.79249,28.18419],[76.79573,28.18042],[76.79502,28.16939],[76.79743,28.16844],[76.79606,28.16693],[76.80029,28.16446],[76.80063,28.16234],[76.79481,28.14838],[76.78381,28.15091],[76.78206,28.14707],[76.77637,28.14411],[76.77148,28.14501],[76.76245,28.14264],[76.75313,28.13511],[76.74356,28.12103],[76.71576,28.12774],[76.71206,28.12545],[76.70302,28.1076],[76.69819,28.11198],[76.685,28.09158],[76.688,28.09023],[76.68736,28.08765],[76.66337,28.0912],[76.65727,28.0893],[76.65558,28.07574],[76.65165,28.06162],[76.65192,28.05633],[76.65559,28.05312],[76.65857,28.04692],[76.65865,28.04292],[76.65439,28.03468],[76.66302,28.02985],[76.66816,28.01383],[76.65774,28.00743],[76.64068,28.00232],[76.60619,28.00385],[76.60186,27.99952],[76.58989,27.99786],[76.58799,27.9933],[76.58374,27.99167],[76.58039,27.9789],[76.56442,27.9781],[76.56169,27.96613],[76.54472,27.96367],[76.53809,27.9677],[76.53595,27.97952],[76.54109,27.98478],[76.54275,27.99948],[76.53639,28.0],[76.54072,28.00217],[76.54405,28.00742],[76.54546,28.00729],[76.54281,28.01777],[76.53927,28.0232],[76.54096,28.03005],[76.54382,28.03421],[76.53037,28.04024],[76.52041,28.03223],[76.51007,28.02966],[76.50257,28.03143],[76.49742,28.04331],[76.48227,28.04187],[76.48118,28.04059],[76.46482,28.04243],[76.46155,28.04053],[76.45467,28.04233],[76.45868,28.05326],[76.46254,28.05911],[76.46848,28.05715],[76.47238,28.05855],[76.47606,28.05721],[76.47625,28.05441],[76.48943,28.05278],[76.49686,28.05381],[76.50124,28.05969],[76.47891,28.07767],[76.4718,28.08024],[76.46765,28.07879],[76.44784,28.08896],[76.45204,28.09122],[76.45705,28.10529],[76.46369,28.10916],[76.47725,28.10797],[76.47667,28.10553],[76.48002,28.10052],[76.49905,28.1002],[76.49957,28.10161],[76.50052,28.11457],[76.50268,28.11871],[76.49628,28.12007],[76.48708,28.11941],[76.49193,28.12985],[76.48341,28.13081],[76.48201,28.12835],[76.47638,28.13084],[76.47675,28.13205],[76.47126,28.1364],[76.47131,28.1385],[76.47557,28.14345],[76.47598,28.14815],[76.46921,28.15133],[76.46634,28.15151],[76.46301,28.14811],[76.45995,28.14747],[76.4374,28.14871],[76.43262,28.14092],[76.40083,28.14502],[76.39568,28.13715],[76.39362,28.13749],[76.39041,28.13415],[76.38473,28.13671],[76.38173,28.13324],[76.36632,28.13681],[76.35657,28.14373],[76.35824,28.15492],[76.35418,28.1548],[76.35785,28.16106],[76.34525,28.1694],[76.33453,28.17236],[76.33318,28.16982],[76.30877,28.1789],[76.30739,28.17906],[76.30523,28.17588],[76.29227,28.17922],[76.28958,28.17027],[76.28243,28.17127],[76.28071,28.16553],[76.30143,28.16005],[76.30163,28.15857],[76.30456,28.15932],[76.30336,28.15483],[76.29787,28.15212],[76.29758,28.14912],[76.3111,28.14555],[76.31523,28.15037],[76.32097,28.14856],[76.3299,28.14275],[76.33182,28.13928],[76.33063,28.13704],[76.33348,28.13624],[76.33315,28.13356],[76.35986,28.12492],[76.35044,28.1142],[76.34646,28.11256],[76.33659,28.10261],[76.31864,28.10768],[76.30927,28.10819],[76.30144,28.09787],[76.31876,28.08881],[76.32323,28.09053],[76.32888,28.08768],[76.33422,28.07992],[76.33302,28.07684],[76.34394,28.07142],[76.34349,28.0702],[76.35567,28.07073],[76.35514,28.06811],[76.3566,28.06749],[76.34965,28.04588],[76.34119,28.02917],[76.32877,28.01878],[76.32298,28.02153],[76.32076,28.01598],[76.31895,28.01553],[76.31357,28.01708],[76.31321,28.0189],[76.29216,28.02586],[76.29117,28.03457],[76.29356,28.0492],[76.28418,28.0515],[76.28385,28.05698],[76.26096,28.06753],[76.25552,28.06777],[76.24293,28.06436],[76.23804,28.04972],[76.23072,28.05114],[76.2281,28.0484],[76.22115,28.05022],[76.21934,28.04921],[76.20861,28.05227],[76.20959,28.05587],[76.20113,28.05842],[76.19918,28.05571],[76.1895,28.05645],[76.18879,28.05321],[76.17978,28.05427],[76.17794,28.0456],[76.18878,28.03661],[76.18954,28.03445],[76.19604,28.03039],[76.20181,28.02935],[76.20372,28.03775],[76.2167,28.03548],[76.2148,28.02658],[76.20334,28.02803],[76.19687,28.01548],[76.18539,28.02029],[76.17689,28.02155],[76.16955,28.00742],[76.16211,28.00143],[76.1601,27.99764],[76.15747,27.98738],[76.16693,27.98299],[76.16597,27.97691],[76.16345,27.97342],[76.18664,27.96548],[76.18401,27.96181],[76.18245,27.96201],[76.18066,27.95713],[76.17993,27.95287],[76.18241,27.95193],[76.17705,27.92973],[76.17395,27.92982],[76.16868,27.91528],[76.16821,27.90338],[76.18609,27.89899],[76.20146,27.89254],[76.20209,27.88732],[76.20028,27.87824],[76.19437,27.87738],[76.19381,27.85951],[76.21216,27.84644],[76.20885,27.84001],[76.22811,27.83275],[76.23851,27.84778],[76.25425,27.84147],[76.26291,27.83237],[76.25575,27.82128],[76.26709,27.81645],[76.28747,27.80001],[76.27238,27.80003],[76.26442,27.79822],[76.26917,27.7821],[76.26617,27.77608],[76.26132,27.77409],[76.25872,27.76287],[76.24329,27.76284],[76.23813,27.75389],[76.24031,27.75],[76.24158,27.74027],[76.24742,27.7335],[76.24907,27.72843],[76.25076,27.72139],[76.24861,27.71137],[76.25392,27.69622],[76.25309,27.69225],[76.24894,27.68653],[76.24286,27.68613],[76.24138,27.68414],[76.24094,27.67938],[76.24961,27.67293],[76.24972,27.6692],[76.23933,27.67027],[76.23646,27.66714],[76.23654,27.66359],[76.24543,27.66186],[76.24854,27.65634],[76.24838,27.65191],[76.24398,27.6438],[76.24478,27.6375],[76.24711,27.63468],[76.24531,27.6294],[76.24033,27.62335],[76.22972,27.62067],[76.22545,27.62127],[76.22088,27.62504],[76.20577,27.62479],[76.2068,27.61957],[76.19733,27.62173],[76.19667,27.61477],[76.19396,27.61388],[76.19541,27.61225],[76.19373,27.60648],[76.19777,27.60185],[76.20427,27.5992],[76.20255,27.58905],[76.20283,27.58624],[76.20469,27.58672],[76.20492,27.57425],[76.20644,27.57129],[76.2089,27.57056],[76.20806,27.56915],[76.20968,27.56889],[76.20785,27.56657],[76.20904,27.56626],[76.20738,27.55337],[76.21289,27.54877],[76.20603,27.53376],[76.22384,27.52969],[76.23516,27.52365],[76.23392,27.51941],[76.22766,27.513],[76.24137,27.50364],[76.24022,27.50142],[76.24122,27.49551],[76.23939,27.4913],[76.24118,27.48721],[76.24094,27.48205],[76.23613,27.47761],[76.2379,27.47403],[76.23302,27.47054],[76.22523,27.47181],[76.22524,27.46915],[76.23097,27.46949],[76.22928,27.46123],[76.22504,27.46111],[76.22747,27.45918],[76.22721,27.45728],[76.22431,27.45906],[76.22073,27.45554],[76.21792,27.46002],[76.21395,27.45449],[76.22194,27.45294],[76.22446,27.44889],[76.23139,27.45075],[76.23786,27.44851],[76.25145,27.44287],[76.25123,27.44117],[76.23093,27.44823],[76.22505,27.44767],[76.22163,27.43402],[76.22175,27.43174],[76.22452,27.43048],[76.22638,27.42718],[76.22585,27.42004],[76.22758,27.41753],[76.22389,27.4073],[76.2243,27.40288],[76.21951,27.40075],[76.21439,27.40408],[76.21227,27.39328],[76.2068,27.38922],[76.20417,27.37926],[76.20115,27.37584],[76.1955,27.37376],[76.1931,27.37434],[76.19166,27.3693],[76.19708,27.36823],[76.19886,27.36398],[76.19135,27.35414],[76.19162,27.3508],[76.1796,27.33739],[76.17615,27.3388],[76.17469,27.3362],[76.17027,27.32528],[76.16857,27.30913],[76.15052,27.3112],[76.15167,27.30765],[76.14654,27.29556],[76.14389,27.27965],[76.1342,27.28035],[76.13295,27.2738],[76.13048,27.2707],[76.13104,27.26021],[76.11716,27.25006],[76.11397,27.23553],[76.11464,27.22777],[76.13313,27.22323],[76.12139,27.20126],[76.12108,27.19387],[76.13088,27.1955],[76.14273,27.2199],[76.14815,27.21636],[76.15432,27.21634],[76.15287,27.21264],[76.15509,27.20699],[76.14819,27.19157],[76.1489,27.18041],[76.1592,27.18032],[76.1622,27.17874],[76.17749,27.18352],[76.17638,27.17767],[76.17766,27.16941],[76.17627,27.16678],[76.18017,27.1408],[76.17834,27.13287],[76.17343,27.12878],[76.185,27.11752],[76.19385,27.11651],[76.1984,27.11422],[76.20939,27.13282],[76.21355,27.13481],[76.21359,27.13824],[76.23595,27.1462],[76.25116,27.17482],[76.25983,27.18102],[76.26411,27.18064],[76.26569,27.1841],[76.26898,27.1811],[76.27441,27.17147],[76.27406,27.16734],[76.27593,27.16413],[76.2748,27.1616],[76.28063,27.15722],[76.28242,27.14934],[76.28113,27.14595],[76.28306,27.13915],[76.28236,27.12457],[76.2787,27.11206],[76.27754,27.10486],[76.27876,27.10189],[76.27656,27.09439],[76.2769,27.07843],[76.27552,27.07218],[76.27751,27.06478],[76.31702,27.06045],[76.32765,27.05543],[76.32969,27.05961],[76.34185,27.0598],[76.35251,27.05458],[76.35382,27.0564],[76.35772,27.0571],[76.35964,27.06223],[76.36784,27.06782],[76.37567,27.07616],[76.38167,27.07619],[76.38278,27.08109],[76.39198,27.07839],[76.39171,27.08092],[76.38888,27.0822],[76.3926,27.08282],[76.39412,27.08544],[76.39114,27.08583],[76.39077,27.09224],[76.39513,27.10253],[76.39742,27.10279],[76.39692,27.11255],[76.39956,27.11858],[76.39745,27.12331],[76.4039,27.12646],[76.41098,27.12661],[76.41705,27.12949],[76.42613,27.128],[76.42565,27.11751],[76.42782,27.10957],[76.42746,27.10264],[76.43313,27.08915],[76.43855,27.08286],[76.44054,27.08433],[76.44797,27.07743],[76.45557,27.07539],[76.46401,27.08265],[76.46425,27.08713],[76.46855,27.08907],[76.47051,27.09572],[76.47449,27.09723],[76.48067,27.10901],[76.48834,27.11324],[76.50324,27.11657],[76.51229,27.11413],[76.51701,27.11714],[76.5215,27.12487],[76.52681,27.12497],[76.52683,27.12679],[76.53504,27.12801],[76.5378,27.12675],[76.5394,27.13063],[76.54814,27.12467],[76.54953,27.12948],[76.54864,27.13283],[76.55354,27.13841],[76.54961,27.14241],[76.54941,27.14596],[76.5484,27.14649],[76.54804,27.14491],[76.54527,27.14811],[76.54749,27.15483],[76.54882,27.15675],[76.55121,27.15655],[76.55283,27.15964],[76.55145,27.16439],[76.55419,27.17191],[76.56209,27.16977],[76.56203,27.16819],[76.56935,27.16801],[76.56834,27.17555],[76.57822,27.17529],[76.57832,27.17322],[76.58144,27.17317],[76.58151,27.17525],[76.58493,27.17653],[76.59396,27.17327],[76.59914,27.17596],[76.60596,27.17442],[76.60813,27.17685],[76.61831,27.17087],[76.6296,27.16944],[76.63044,27.16675],[76.63944,27.16667],[76.64679,27.16389],[76.62242,27.13967],[76.62309,27.13686],[76.61948,27.13124],[76.61994,27.12857],[76.61791,27.12716],[76.62248,27.12426],[76.62819,27.1233],[76.62853,27.11825],[76.62604,27.11449],[76.62679,27.11206],[76.6223,27.10763],[76.62588,27.10765],[76.63278,27.10304],[76.62938,27.099],[76.63162,27.09494],[76.63775,27.09202],[76.65165,27.0949],[76.65318,27.09683],[76.66596,27.09207],[76.66941,27.09834],[76.67216,27.11067],[76.67538,27.11065],[76.67692,27.11271],[76.67952,27.11226],[76.68203,27.11405],[76.68572,27.11256],[76.68611,27.11393],[76.69458,27.11306],[76.69578,27.11443],[76.70052,27.11448],[76.72122,27.10659],[76.73148,27.10951],[76.75951,27.10692],[76.76413,27.10985],[76.76498,27.11409],[76.78499,27.11246],[76.78914,27.12465],[76.78863,27.12834],[76.79387,27.13875],[76.79865,27.13148],[76.79985,27.12609],[76.80591,27.12607],[76.8116,27.12316],[76.8073,27.11083],[76.80182,27.10236],[76.80828,27.09155],[76.81095,27.08976],[76.81125,27.08041],[76.81317,27.08059],[76.8173,27.07692],[76.82103,27.07692],[76.8221,27.07494],[76.82951,27.07515],[76.83277,27.08401],[76.83652,27.11138],[76.83957,27.11896],[76.8291,27.1178],[76.8244,27.13071],[76.82373,27.1337],[76.82692,27.13797],[76.8284,27.14749],[76.82722,27.16297],[76.84083,27.16262],[76.843,27.16904],[76.84686,27.1739],[76.85066,27.19087],[76.84355,27.19324],[76.8437,27.20086],[76.84094,27.20291],[76.84252,27.20737],[76.8458,27.20648],[76.84628,27.21047],[76.85641,27.20774],[76.85847,27.20932],[76.86817,27.23004],[76.88771,27.221],[76.89418,27.23206],[76.90211,27.2289],[76.89897,27.22194],[76.90439,27.21843],[76.89995,27.21361],[76.90536,27.21103],[76.905,27.20307],[76.90653,27.2011],[76.90498,27.19658],[76.90745,27.19484],[76.90526,27.19196],[76.90513,27.18799],[76.90698,27.18676],[76.90656,27.18372],[76.91086,27.18285],[76.91148,27.1806],[76.90878,27.17554],[76.89688,27.17517],[76.89421,27.17052],[76.89579,27.16865],[76.89517,27.16136],[76.91857,27.15123],[76.91563,27.14152],[76.92771,27.13661],[76.93116,27.13711],[76.9349,27.14058],[76.94377,27.13918],[76.94569,27.14682],[76.96093,27.14404],[76.95677,27.15901],[76.95993,27.16015],[76.96741,27.18273],[76.98163,27.17959],[76.99258,27.17385],[77.02514,27.17668],[77.02443,27.1673],[77.02793,27.16666],[77.02765,27.16503],[77.03986,27.16488],[77.05457,27.15811],[77.06418,27.15837],[77.06899,27.16142],[77.07059,27.16504],[77.07472,27.16648],[77.09512,27.16215],[77.09736,27.16843],[77.10068,27.17143],[77.08219,27.17688],[77.08208,27.17973],[77.08022,27.17983],[77.08093,27.18407],[77.08279,27.18432],[77.0835,27.18699],[77.08536,27.1865],[77.0895,27.19375],[77.0875,27.19956],[77.06826,27.2074],[77.06904,27.21117],[77.06322,27.21276],[77.06298,27.21059],[77.06004,27.21176],[77.05079,27.21605],[77.0421,27.22253],[77.0477,27.23129],[77.04986,27.23835],[77.06699,27.23365],[77.07677,27.23266],[77.07659,27.23666],[77.08052,27.23596],[77.08284,27.23804],[77.09134,27.25122],[77.10351,27.24613],[77.10961,27.25493],[77.1198,27.25694],[77.12449,27.26305],[77.12305,27.26349],[77.12999,27.28235],[77.12742,27.28408],[77.12986,27.2869],[77.13139,27.29475],[77.14228,27.30282],[77.14274,27.31188],[77.14683,27.3205],[77.16412,27.31662],[77.17292,27.3249],[77.18539,27.32529],[77.18576,27.32735],[77.19062,27.32658],[77.19952,27.32953],[77.20831,27.34133],[77.21075,27.35077],[77.20873,27.35369],[77.20345,27.35783],[77.2017,27.35583],[77.19862,27.35934],[77.19402,27.36089],[77.18488,27.35702],[77.1837,27.35869],[77.17915,27.35884],[77.17704,27.35482],[77.17382,27.35741],[77.16704,27.35269],[77.15501,27.34897],[77.15269,27.34896],[77.1526,27.35109],[77.13889,27.35442],[77.13768,27.3527],[77.11872,27.35873],[77.10878,27.36478],[77.10546,27.36435],[77.10082,27.37676],[77.08518,27.38555],[77.08304,27.3901],[77.07074,27.39481],[77.06548,27.38419],[77.06289,27.38185],[77.05513,27.38254],[77.04863,27.38601],[77.04435,27.38186],[77.02809,27.38915],[77.02924,27.39443],[77.03391,27.40216],[77.0251,27.4033],[77.02122,27.39258],[77.00926,27.39647],[77.01042,27.40319],[77.00535,27.40593],[77.00927,27.41786],[77.00694,27.41818],[77.00084,27.4233],[76.9941,27.4244],[76.98935,27.4269],[76.98888,27.42857],[76.97965,27.42386],[76.97878,27.41783],[76.97747,27.41775],[76.97476,27.42397],[76.96599,27.42251],[76.96483,27.42069],[76.96294,27.42082],[76.96214,27.41851],[76.95758,27.42102],[76.95907,27.42309],[76.95839,27.43065],[76.94719,27.43547],[76.94786,27.43761],[76.94314,27.44314],[76.94446,27.44756],[76.93538,27.44989],[76.92216,27.45837],[76.92416,27.46007],[76.91737,27.46319],[76.91826,27.46498],[76.9151,27.46455],[76.91453,27.46242],[76.91106,27.46339],[76.90923,27.4583],[76.89716,27.45896],[76.90217,27.4637],[76.90582,27.46205],[76.90695,27.46352],[76.9067,27.46731],[76.9086,27.47162],[76.91188,27.47008],[76.91396,27.47366],[76.91075,27.47512],[76.91142,27.48196],[76.91831,27.48032],[76.92304,27.49324],[76.91446,27.49678],[76.91232,27.49936],[76.90883,27.49573],[76.90527,27.49726],[76.90201,27.49161],[76.89588,27.49155],[76.89485,27.49566],[76.87992,27.50854],[76.87972,27.51029],[76.88816,27.52334],[76.89296,27.52263],[76.89802,27.5359],[76.89725,27.53747],[76.90154,27.53653],[76.90145,27.534],[76.90943,27.5306],[76.9149,27.53216],[76.92451,27.53842],[76.92689,27.53712],[76.92772,27.53206],[76.92432,27.52419],[76.90816,27.52851],[76.90549,27.52118],[76.92853,27.51684],[76.9275,27.51487],[76.92977,27.51114],[76.93676,27.50636],[76.93506,27.50268],[76.9369,27.50114],[76.9364,27.49842],[76.94085,27.49521],[76.93846,27.48748],[76.9408,27.48518],[76.9502,27.48201],[76.95426,27.48236],[76.96813,27.47581],[76.96234,27.46705],[76.96606,27.46395],[76.97032,27.46138],[76.97492,27.46633],[76.97974,27.46443],[76.98078,27.45973],[76.98549,27.45737],[77.00792,27.45096],[77.01181,27.45415],[77.01856,27.45079],[77.02899,27.45372],[77.03315,27.46195],[77.03431,27.46853],[77.04592,27.46382],[77.05074,27.46023],[77.04585,27.45217],[77.04137,27.45068],[77.03924,27.44822],[77.03714,27.44927],[77.03714,27.44447],[77.04854,27.43862],[77.05382,27.44728],[77.06074,27.44642],[77.06223,27.45253],[77.05641,27.45578],[77.05909,27.45999],[77.05117,27.46767],[77.05572,27.47657],[77.05257,27.48422],[77.05055,27.48302],[77.04416,27.48427],[77.03942,27.4904],[77.03735,27.49726],[77.0288,27.49886],[77.0291,27.50013],[77.01876,27.50511],[77.02056,27.50812],[77.01952,27.51109],[77.0221,27.51667],[77.02611,27.51407],[77.03552,27.51301],[77.0352,27.52538],[77.04071,27.53039],[77.04848,27.52685],[77.05909,27.52703],[77.06731,27.53705],[77.05626,27.54444],[77.05317,27.54065],[77.04375,27.54446],[77.0427,27.54364],[77.03414,27.55107],[77.03479,27.55376],[77.04657,27.54891],[77.04837,27.55003],[77.05082,27.55386],[77.04907,27.5584],[77.04991,27.56141],[77.04413,27.56188],[77.03695,27.5585],[77.03492,27.55945],[77.03395,27.55787],[77.02824,27.55864],[77.01961,27.56145],[77.01832,27.56417],[77.00163,27.56983],[77.00039,27.55739],[77.02219,27.54587],[77.02091,27.54279],[77.02283,27.54086],[77.02069,27.54084],[77.01751,27.53709],[77.01253,27.53936],[77.0082,27.53572],[76.9945,27.5326],[76.99166,27.53588],[76.98847,27.53567],[76.98835,27.53836],[76.9865,27.53794],[76.98358,27.54474],[76.98399,27.54724],[76.97448,27.55125],[76.96872,27.55072],[76.96744,27.55308],[76.96315,27.54073],[76.95961,27.54254],[76.95785,27.54544],[76.95857,27.54815],[76.95436,27.55028],[76.95543,27.55533],[76.95238,27.55856],[76.94677,27.55989],[76.94985,27.56281],[76.95776,27.55939],[76.96213,27.56796],[76.95886,27.5701],[76.96129,27.57619],[76.95982,27.57801],[76.95107,27.58024],[76.94671,27.5745],[76.9445,27.57636],[76.9403,27.57667],[76.94592,27.58588],[76.94402,27.58871],[76.94399,27.59374],[76.94192,27.59485],[76.94002,27.59987],[76.93605,27.60083],[76.93499,27.603],[76.93821,27.6082],[76.95359,27.6051],[76.96647,27.60527],[76.96697,27.61126],[76.94989,27.61546],[76.93745,27.61471],[76.93583,27.61628],[76.93656,27.61912],[76.94236,27.6208],[76.98212,27.61868],[76.98381,27.64214],[76.97664,27.64367],[76.97937,27.6536],[76.96613,27.65839],[76.96267,27.66199],[76.95876,27.66243],[76.95486,27.66469],[76.95313,27.66804],[76.94377,27.67372],[76.93822,27.66647],[76.93336,27.65603],[76.93223,27.65881],[76.92692,27.66126],[76.91557,27.65227],[76.91155,27.65403],[76.91206,27.65797],[76.90671,27.66169],[76.91089,27.66802],[76.89859,27.67754],[76.90623,27.68629],[76.88934,27.69715],[76.88988,27.70075],[76.8945,27.70138],[76.90863,27.69368],[76.91642,27.69813],[76.92061,27.69571],[76.92473,27.69992],[76.92103,27.70309],[76.91904,27.7098],[76.91423,27.71319],[76.90478,27.71734],[76.89878,27.71647],[76.89452,27.71783],[76.89436,27.72435],[76.89241,27.72567],[76.89255,27.73233],[76.89698,27.73812],[76.89986,27.73671],[76.90169,27.74397],[76.90055,27.74737],[76.90084,27.76466],[76.90365,27.76933],[76.90215,27.77136],[76.90228,27.77534],[76.9064,27.77889],[76.90761,27.78235],[76.90617,27.78778],[76.90904,27.78691],[76.91334,27.78859],[76.91152,27.79609],[76.91363,27.80101],[76.919,27.80414],[76.91861,27.80744],[76.91404,27.80811],[76.90999,27.8149],[76.91358,27.8317],[76.91502,27.83454],[76.9357,27.82881],[76.94232,27.84262],[76.943,27.85357],[76.94148,27.8555],[76.94129,27.86418],[76.93746,27.87809],[76.93766,27.89622],[76.94163,27.89708],[76.95057,27.89564],[76.9496,27.90927],[76.95162,27.91803],[76.93154,27.92235],[76.93074,27.9533],[76.9333,27.9617],[76.93366,27.97129],[76.93794,27.98282],[76.93351,27.98161],[76.93285,27.98902],[76.93061,27.99335],[76.93635,28.01206],[76.9396,28.04298],[76.94839,28.05795],[76.95384,28.0626],[76.95457,28.07313],[76.95791,28.07745],[76.95795,28.08751],[76.96142,28.09958],[76.96195,28.11127],[76.97055,28.13843],[76.95792,28.14222],[76.94816,28.14221],[76.95095,28.14988],[76.93199,28.15305],[76.91973,28.1669],[76.90654,28.17189],[76.90702,28.17295],[76.9015,28.17866],[76.90245,28.18111],[76.89252,28.18359],[76.89226,28.19323],[76.89864,28.19335],[76.90205,28.19898],[76.90618,28.1973],[76.90677,28.20031],[76.89088,28.20496],[76.88887,28.2032],[76.87836,28.20712],[76.87271,28.2058],[76.871,28.20659],[76.87306,28.21102],[76.87274,28.21505],[76.8749,28.21777],[76.86753,28.21984],[76.85108,28.22115]],[[76.43919,28.11075],[76.43453,28.10908],[76.43047,28.10974],[76.42285,28.11432],[76.42374,28.12081],[76.42181,28.12252],[76.4289,28.1384],[76.4336,28.13641],[76.43326,28.13034],[76.43571,28.12929],[76.44074,28.12078],[76.44137,28.11686],[76.43919,28.11075]],[[77.07565,27.27704],[77.08421,27.27274],[77.0848,27.26773],[77.08194,27.26166],[77.07061,27.26395],[77.07218,27.27324],[77.07565,27.27704]],[[76.69163,27.13228],[76.69492,27.13226],[76.69927,27.12946],[76.69653,27.12732],[76.69167,27.12885],[76.68847,27.13091],[76.69163,27.13228]],[[76.69217,27.1227],[76.69019,27.12332],[76.69061,27.12458],[76.69423,27.12334],[76.6939,27.12215],[76.69217,27.1227]],[[76.68614,27.11448],[76.68671,27.11793],[76.68996,27.11716],[76.6889,27.1151],[76.68614,27.11448]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"88","area_level":"District","area_name":"Banswara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.48824,23.90701],[74.4833,23.9214],[74.47921,23.9243],[74.47353,23.92518],[74.44743,23.92003],[74.44247,23.9159],[74.43582,23.90672],[74.43235,23.90505],[74.42784,23.90508],[74.41462,23.90923],[74.40055,23.90215],[74.38282,23.90545],[74.37968,23.90478],[74.37418,23.89969],[74.36422,23.90222],[74.35767,23.90151],[74.35526,23.89881],[74.35829,23.88761],[74.35679,23.88532],[74.33716,23.87878],[74.31492,23.85727],[74.29663,23.85488],[74.28752,23.84198],[74.26323,23.83262],[74.24712,23.82093],[74.23697,23.81602],[74.21616,23.8117],[74.19558,23.7982],[74.17661,23.79573],[74.1498,23.78706],[74.13834,23.77328],[74.13226,23.75404],[74.13076,23.73972],[74.12649,23.73232],[74.11999,23.72642],[74.11858,23.72245],[74.1188,23.71826],[74.12221,23.71198],[74.13235,23.69938],[74.13371,23.69181],[74.13266,23.68708],[74.1264,23.67691],[74.12803,23.66838],[74.12708,23.65695],[74.12846,23.64522],[74.12415,23.63668],[74.11656,23.61038],[74.11272,23.60655],[74.10784,23.60554],[74.0828,23.60618],[74.07258,23.60274],[74.066,23.59337],[74.06478,23.58089],[74.06088,23.56763],[74.05244,23.56064],[74.03952,23.55503],[74.03181,23.54917],[74.0299,23.54456],[74.02819,23.5264],[74.01999,23.50765],[74.01698,23.48016],[74.0106,23.46907],[74.01412,23.45138],[74.01179,23.4424],[74.00431,23.42933],[73.9979,23.42166],[73.98598,23.41552],[73.98021,23.41052],[73.97767,23.39611],[73.96906,23.39125],[73.9575,23.37954],[73.95986,23.37771],[73.96176,23.37244],[73.96681,23.3749],[73.97114,23.37431],[73.97553,23.37152],[73.97706,23.36485],[73.98041,23.36238],[73.97915,23.35901],[73.9814,23.33814],[73.98758,23.33576],[74.00439,23.33592],[74.02865,23.33167],[74.02481,23.32106],[74.03075,23.31291],[74.03307,23.30599],[74.03552,23.30501],[74.04086,23.30873],[74.04486,23.30881],[74.0424,23.30029],[74.03883,23.29857],[74.03816,23.29345],[74.04829,23.29332],[74.07138,23.29882],[74.08298,23.29609],[74.08593,23.29804],[74.09617,23.29325],[74.10058,23.29381],[74.10755,23.28444],[74.10922,23.27436],[74.12793,23.26899],[74.13264,23.26619],[74.13237,23.25925],[74.13077,23.25649],[74.13201,23.2472],[74.13008,23.24512],[74.13258,23.24078],[74.1325,23.23159],[74.13373,23.22986],[74.13116,23.22923],[74.13447,23.22303],[74.12862,23.21666],[74.12814,23.21388],[74.13007,23.21115],[74.11921,23.204],[74.11902,23.1919],[74.11638,23.18466],[74.12148,23.17619],[74.1412,23.17315],[74.14526,23.16836],[74.14794,23.15766],[74.15273,23.15239],[74.15407,23.15204],[74.15448,23.15649],[74.16679,23.15572],[74.17244,23.15454],[74.17888,23.14728],[74.18542,23.15682],[74.18293,23.16634],[74.1887,23.1752],[74.1886,23.17815],[74.19578,23.18054],[74.20121,23.1893],[74.20292,23.19031],[74.20712,23.18909],[74.21256,23.18693],[74.21252,23.18367],[74.22379,23.18151],[74.23137,23.17893],[74.23164,23.17727],[74.2408,23.18469],[74.24286,23.17734],[74.24736,23.17143],[74.2611,23.16497],[74.26747,23.15835],[74.27437,23.13075],[74.27837,23.12499],[74.28712,23.11712],[74.28577,23.11257],[74.27712,23.0994],[74.27889,23.09219],[74.28287,23.08853],[74.29469,23.08544],[74.30734,23.07777],[74.31439,23.06993],[74.3189,23.05866],[74.3209,23.06142],[74.33281,23.06219],[74.3416,23.0679],[74.35589,23.07981],[74.35439,23.08604],[74.35629,23.08865],[74.37741,23.10637],[74.3862,23.11152],[74.38905,23.11147],[74.38974,23.10962],[74.39217,23.11117],[74.39836,23.11011],[74.40631,23.11202],[74.42158,23.10437],[74.42738,23.1067],[74.43225,23.1049],[74.44039,23.09518],[74.44072,23.09068],[74.45408,23.08833],[74.45773,23.08463],[74.46384,23.08179],[74.46702,23.08303],[74.47439,23.08166],[74.47472,23.08365],[74.48924,23.08768],[74.49174,23.0859],[74.4992,23.08688],[74.50586,23.08514],[74.50908,23.08675],[74.50691,23.0914],[74.51028,23.09446],[74.51485,23.09628],[74.52338,23.09626],[74.53144,23.09907],[74.53934,23.10334],[74.54551,23.10984],[74.54642,23.11435],[74.54479,23.11971],[74.53937,23.1293],[74.57223,23.13315],[74.57678,23.13418],[74.58549,23.13975],[74.5965,23.13789],[74.60661,23.14256],[74.6184,23.15037],[74.62494,23.16172],[74.63271,23.16395],[74.6493,23.17522],[74.66425,23.19516],[74.67154,23.19996],[74.68187,23.19387],[74.69881,23.1923],[74.70808,23.19423],[74.71525,23.19075],[74.72453,23.1966],[74.72505,23.20089],[74.74367,23.21034],[74.74429,23.21206],[74.74056,23.21768],[74.74914,23.22418],[74.74752,23.22665],[74.74099,23.22643],[74.74128,23.22475],[74.73377,23.22042],[74.73291,23.21757],[74.72637,23.21501],[74.72283,23.21679],[74.71694,23.21578],[74.71566,23.21914],[74.70222,23.21451],[74.69207,23.21915],[74.69167,23.22559],[74.70423,23.22885],[74.70589,23.23152],[74.70881,23.23142],[74.71513,23.23699],[74.71297,23.2428],[74.71277,23.25053],[74.70767,23.25483],[74.69878,23.25731],[74.70107,23.26466],[74.69996,23.26837],[74.69243,23.26584],[74.68622,23.26759],[74.67676,23.27381],[74.67314,23.26996],[74.66378,23.26741],[74.64856,23.25593],[74.63856,23.25541],[74.62681,23.25869],[74.62391,23.27179],[74.62484,23.27387],[74.62185,23.27367],[74.61689,23.27938],[74.60795,23.28246],[74.60168,23.28023],[74.59829,23.27694],[74.58922,23.27904],[74.58499,23.27694],[74.58528,23.27951],[74.57934,23.28461],[74.57685,23.28481],[74.57369,23.28922],[74.57437,23.29517],[74.56824,23.29518],[74.56321,23.29269],[74.56337,23.28826],[74.55647,23.27843],[74.55348,23.27747],[74.54967,23.27861],[74.54667,23.27712],[74.54147,23.28673],[74.53957,23.2997],[74.53427,23.30065],[74.53192,23.30636],[74.52792,23.31075],[74.53108,23.3128],[74.52973,23.32067],[74.52362,23.32113],[74.51484,23.31627],[74.51404,23.32805],[74.53527,23.33082],[74.53993,23.33529],[74.53823,23.34667],[74.54156,23.35749],[74.53982,23.36187],[74.54149,23.36382],[74.54663,23.3649],[74.55469,23.36129],[74.5577,23.36191],[74.55769,23.368],[74.55925,23.37118],[74.56513,23.37285],[74.56894,23.3763],[74.56949,23.37839],[74.56657,23.38614],[74.57304,23.39636],[74.56995,23.4126],[74.57235,23.42067],[74.57507,23.42321],[74.58184,23.42156],[74.58718,23.42651],[74.59425,23.42415],[74.59657,23.42828],[74.59907,23.42875],[74.59932,23.43726],[74.60617,23.44453],[74.60991,23.45163],[74.60974,23.45367],[74.60389,23.45726],[74.6127,23.46193],[74.61623,23.45978],[74.63187,23.46139],[74.63354,23.46707],[74.63277,23.46951],[74.6368,23.46728],[74.63872,23.46356],[74.65188,23.46228],[74.65895,23.4673],[74.66642,23.47752],[74.66606,23.4825],[74.67703,23.48273],[74.68131,23.48523],[74.68217,23.48789],[74.68034,23.49478],[74.68653,23.49474],[74.69674,23.50266],[74.70497,23.5051],[74.71872,23.50323],[74.72283,23.49693],[74.7273,23.49589],[74.73157,23.49892],[74.73363,23.50743],[74.73912,23.51379],[74.73468,23.51821],[74.73529,23.52057],[74.76168,23.52127],[74.76237,23.5264],[74.76689,23.53086],[74.76723,23.53557],[74.77092,23.54239],[74.77112,23.55094],[74.76236,23.57177],[74.76919,23.58134],[74.77058,23.586],[74.76381,23.59765],[74.74394,23.61294],[74.7343,23.61778],[74.72386,23.61439],[74.71714,23.61743],[74.71268,23.62298],[74.70336,23.63008],[74.69727,23.63801],[74.69068,23.65252],[74.69083,23.65823],[74.67718,23.65884],[74.67461,23.66442],[74.66589,23.66835],[74.66469,23.67453],[74.66074,23.67398],[74.65673,23.67686],[74.65325,23.67653],[74.65106,23.67117],[74.6516,23.66741],[74.64935,23.66145],[74.65216,23.65841],[74.65198,23.65615],[74.64851,23.65543],[74.64689,23.65885],[74.64476,23.64593],[74.64335,23.64477],[74.63449,23.64356],[74.62415,23.64808],[74.6241,23.65134],[74.6184,23.65477],[74.61403,23.65543],[74.60894,23.65411],[74.60597,23.64499],[74.60121,23.64107],[74.59127,23.64261],[74.58629,23.64178],[74.58381,23.63891],[74.57518,23.63962],[74.5668,23.63813],[74.55826,23.64078],[74.54874,23.64094],[74.54386,23.63215],[74.53936,23.63402],[74.52721,23.63257],[74.51779,23.63493],[74.5155,23.6401],[74.51675,23.64569],[74.53093,23.66722],[74.53309,23.67389],[74.52951,23.69086],[74.53348,23.70686],[74.52604,23.73065],[74.53276,23.73616],[74.55009,23.73528],[74.5548,23.73638],[74.55644,23.73859],[74.55168,23.75698],[74.55192,23.76424],[74.55602,23.78057],[74.55613,23.78674],[74.55422,23.79288],[74.55457,23.80486],[74.54262,23.80597],[74.54394,23.81519],[74.54212,23.81911],[74.54151,23.82843],[74.52256,23.82975],[74.51666,23.83422],[74.51411,23.8395],[74.51424,23.84517],[74.52338,23.86306],[74.52488,23.86948],[74.52429,23.87832],[74.51954,23.884],[74.49333,23.89608],[74.48824,23.90701]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"89","area_level":"District","area_name":"Baran","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.5724,25.43832],[76.57133,25.43474],[76.57285,25.42455],[76.57568,25.42025],[76.57462,25.41392],[76.57555,25.40678],[76.57276,25.407],[76.57083,25.41101],[76.55843,25.41368],[76.55915,25.41738],[76.55284,25.41885],[76.55276,25.42104],[76.54859,25.42107],[76.54622,25.41913],[76.54238,25.42187],[76.541,25.41876],[76.53821,25.4187],[76.53504,25.41955],[76.53376,25.42493],[76.5275,25.42399],[76.52642,25.41849],[76.52266,25.42018],[76.5207,25.41699],[76.5118,25.42007],[76.51273,25.4243],[76.51024,25.42552],[76.51086,25.42792],[76.4947,25.43048],[76.49122,25.42949],[76.4926,25.4253],[76.49012,25.41493],[76.48579,25.41728],[76.48076,25.41315],[76.47572,25.4139],[76.47299,25.41034],[76.46616,25.41225],[76.46298,25.4114],[76.46214,25.40926],[76.45558,25.40766],[76.44167,25.40791],[76.43704,25.40198],[76.4374,25.39225],[76.43884,25.38937],[76.4403,25.38968],[76.43803,25.38462],[76.428,25.38461],[76.42388,25.38681],[76.42223,25.38369],[76.41369,25.38681],[76.41295,25.38411],[76.41132,25.38404],[76.41087,25.38642],[76.40613,25.38705],[76.40372,25.39241],[76.39144,25.39138],[76.38708,25.3931],[76.3851,25.39262],[76.38215,25.38512],[76.3778,25.38437],[76.37059,25.38866],[76.37027,25.39224],[76.36636,25.39523],[76.35522,25.39214],[76.34668,25.38065],[76.34334,25.37858],[76.33604,25.37923],[76.33247,25.38427],[76.32755,25.38126],[76.32253,25.38123],[76.32012,25.37727],[76.32125,25.37641],[76.31601,25.34874],[76.31292,25.34241],[76.30441,25.33438],[76.30289,25.32972],[76.30126,25.32096],[76.30248,25.3085],[76.30117,25.30215],[76.30175,25.29268],[76.2872,25.26964],[76.28597,25.2634],[76.28813,25.2578],[76.28641,25.25615],[76.28529,25.25],[76.28166,25.24615],[76.27576,25.2435],[76.25358,25.24243],[76.24801,25.24007],[76.24348,25.2288],[76.24755,25.21091],[76.24335,25.19617],[76.24795,25.1885],[76.24794,25.18444],[76.24556,25.1828],[76.23828,25.18441],[76.23516,25.18285],[76.23688,25.16663],[76.23273,25.16192],[76.22709,25.15933],[76.21238,25.15881],[76.20939,25.1571],[76.20185,25.14367],[76.20188,25.12992],[76.1974,25.12642],[76.20863,25.11285],[76.21259,25.10495],[76.22324,25.07081],[76.24933,25.03433],[76.26014,25.02531],[76.26678,25.01097],[76.27549,25.0],[76.29376,24.9676],[76.30103,24.96031],[76.31494,24.95842],[76.32421,24.96355],[76.3388,24.98166],[76.34408,24.98637],[76.34963,24.98833],[76.35525,24.98773],[76.3699,24.98165],[76.39015,24.98513],[76.40654,24.98099],[76.43112,24.96765],[76.4378,24.96149],[76.44278,24.95472],[76.44779,24.94244],[76.44457,24.94172],[76.44259,24.93941],[76.44419,24.93309],[76.46907,24.93279],[76.47313,24.92945],[76.47517,24.91991],[76.48132,24.90779],[76.4808,24.90544],[76.48418,24.90152],[76.48752,24.89979],[76.49632,24.90285],[76.50176,24.90251],[76.50729,24.89626],[76.50152,24.88163],[76.49055,24.88644],[76.48984,24.88024],[76.49286,24.87653],[76.48255,24.87604],[76.48868,24.86731],[76.48757,24.8596],[76.46557,24.86415],[76.45838,24.86168],[76.44023,24.85921],[76.44553,24.84835],[76.44206,24.82863],[76.44119,24.81164],[76.43948,24.80868],[76.44169,24.79056],[76.44019,24.77656],[76.44332,24.76592],[76.44505,24.74542],[76.44748,24.73771],[76.4569,24.72862],[76.45959,24.70699],[76.46274,24.70187],[76.46346,24.69542],[76.46812,24.6909],[76.47097,24.68366],[76.47251,24.67873],[76.47174,24.668],[76.47631,24.65919],[76.48452,24.65879],[76.48866,24.64933],[76.50567,24.65211],[76.52909,24.66005],[76.52784,24.64476],[76.52084,24.62952],[76.51942,24.61992],[76.51775,24.61744],[76.52146,24.60832],[76.51807,24.58341],[76.52001,24.57657],[76.53094,24.57166],[76.53593,24.56175],[76.53742,24.53816],[76.5352,24.51085],[76.53831,24.50501],[76.5463,24.49787],[76.55931,24.49245],[76.57043,24.49399],[76.57966,24.49038],[76.58022,24.48624],[76.57736,24.47293],[76.57365,24.46772],[76.57386,24.46404],[76.59356,24.45403],[76.5961,24.44275],[76.60785,24.42388],[76.62803,24.41187],[76.64287,24.41336],[76.65831,24.42152],[76.66432,24.43061],[76.67176,24.43771],[76.67722,24.43905],[76.69708,24.42593],[76.69734,24.41858],[76.7005,24.41334],[76.71197,24.40322],[76.71463,24.41391],[76.71959,24.41243],[76.72245,24.41692],[76.72562,24.41325],[76.7311,24.42294],[76.73706,24.42295],[76.74019,24.42933],[76.75094,24.43932],[76.75478,24.44505],[76.76039,24.44453],[76.76031,24.44741],[76.77496,24.44291],[76.77853,24.43635],[76.79151,24.43949],[76.79637,24.43717],[76.7975,24.43438],[76.8044,24.43162],[76.81074,24.43295],[76.81629,24.42668],[76.81766,24.42786],[76.815,24.43198],[76.81721,24.43442],[76.8236,24.43639],[76.82676,24.43518],[76.83152,24.43656],[76.83491,24.43537],[76.84476,24.43644],[76.84095,24.44048],[76.84168,24.44651],[76.84545,24.45099],[76.85007,24.44923],[76.85159,24.45012],[76.85251,24.45552],[76.85116,24.46036],[76.85304,24.46621],[76.84775,24.47348],[76.84661,24.48596],[76.84227,24.48832],[76.8354,24.48892],[76.83666,24.49318],[76.82815,24.50313],[76.82867,24.51273],[76.82275,24.52043],[76.81631,24.52441],[76.81639,24.53358],[76.8216,24.53459],[76.83812,24.54561],[76.86062,24.54777],[76.86192,24.5493],[76.86963,24.54437],[76.87411,24.53921],[76.87666,24.53879],[76.87477,24.53363],[76.87157,24.53211],[76.87307,24.52702],[76.88431,24.52145],[76.88986,24.52486],[76.89433,24.5383],[76.90187,24.54585],[76.9179,24.54348],[76.91667,24.53705],[76.92083,24.52854],[76.9218,24.52049],[76.91979,24.51805],[76.91578,24.50264],[76.91725,24.4968],[76.91615,24.48993],[76.91794,24.48555],[76.91693,24.48327],[76.91842,24.48069],[76.9267,24.47408],[76.93852,24.47231],[76.94106,24.47052],[76.94311,24.46514],[76.95076,24.46571],[76.95095,24.4618],[76.95222,24.46386],[76.95549,24.46451],[76.96079,24.46342],[76.96214,24.46165],[76.97761,24.46138],[76.98234,24.46782],[76.98349,24.47279],[77.0036,24.47374],[77.00882,24.47674],[77.00928,24.47808],[77.00713,24.47902],[77.0088,24.4819],[77.01374,24.48325],[77.01096,24.48734],[77.01183,24.49166],[77.02897,24.49608],[77.03066,24.50183],[77.02933,24.5167],[77.03037,24.51895],[77.03554,24.52089],[77.03511,24.52435],[77.03689,24.5279],[77.0422,24.52477],[77.05471,24.52628],[77.05435,24.53181],[77.05763,24.53713],[77.05975,24.54588],[77.06816,24.55581],[77.07098,24.56789],[77.07024,24.58247],[77.06526,24.59427],[77.06558,24.60032],[77.06865,24.60695],[77.06717,24.61579],[77.06788,24.63025],[77.06603,24.63938],[77.06373,24.64679],[77.05728,24.65383],[77.04374,24.67871],[77.04132,24.68675],[77.04148,24.6994],[77.0339,24.70905],[77.02582,24.71432],[77.01378,24.71218],[77.00166,24.71604],[76.99788,24.72046],[76.9977,24.72783],[76.99552,24.73333],[76.98946,24.73614],[76.97912,24.73516],[76.97456,24.7362],[76.96907,24.74231],[76.96568,24.75291],[76.96229,24.75663],[76.95329,24.76041],[76.94393,24.7578],[76.93153,24.74364],[76.92319,24.74231],[76.9069,24.73149],[76.90224,24.73341],[76.89597,24.74311],[76.88948,24.74726],[76.8816,24.74675],[76.87438,24.74376],[76.85613,24.74249],[76.8502,24.74658],[76.84859,24.75039],[76.84925,24.76303],[76.84752,24.76927],[76.83546,24.77884],[76.82349,24.79412],[76.80756,24.80419],[76.802,24.81013],[76.80252,24.81885],[76.79988,24.82401],[76.81197,24.82557],[76.8225,24.83214],[76.82508,24.83555],[76.83257,24.83657],[76.84113,24.83458],[76.84617,24.83656],[76.86208,24.83731],[76.86889,24.8395],[76.88148,24.8363],[76.89789,24.83823],[76.90373,24.84238],[76.91665,24.84675],[76.92496,24.84658],[76.92953,24.84867],[76.9341,24.85525],[76.94054,24.85782],[76.94411,24.86537],[76.94856,24.86907],[76.94396,24.87444],[76.93359,24.87508],[76.93425,24.87975],[76.93263,24.88199],[76.92298,24.88036],[76.91305,24.88784],[76.91382,24.89831],[76.91642,24.90426],[76.91966,24.90454],[76.92141,24.90842],[76.92229,24.91249],[76.92042,24.91677],[76.90937,24.92111],[76.89049,24.91969],[76.88868,24.92339],[76.88937,24.93392],[76.88555,24.93873],[76.87763,24.9414],[76.87196,24.94789],[76.86748,24.95649],[76.86269,24.9598],[76.86239,24.96442],[76.86389,24.96552],[76.86513,24.9755],[76.86729,24.9803],[76.86721,24.99016],[76.86135,24.99973],[76.85678,25.00248],[76.86243,25.00255],[76.86733,25.00603],[76.87604,25.00706],[76.8785,25.02848],[76.87616,25.0414],[76.88754,25.04377],[76.91159,25.043],[76.92572,25.04695],[76.93433,25.04563],[76.94509,25.04674],[76.9523,25.05216],[76.95896,25.05217],[76.96167,25.05637],[76.96584,25.05155],[76.9682,25.0511],[76.96873,25.05462],[76.9733,25.05843],[76.97343,25.06076],[76.97148,25.06224],[76.97464,25.06643],[76.9786,25.06639],[76.98984,25.07313],[76.99907,25.07485],[77.01048,25.07345],[77.02404,25.06593],[77.02969,25.06585],[77.0324,25.06895],[77.03759,25.06854],[77.04278,25.0634],[77.08483,25.05424],[77.08913,25.06216],[77.09598,25.06543],[77.12257,25.06665],[77.13342,25.08485],[77.14149,25.08859],[77.14772,25.09511],[77.1506,25.09333],[77.1494,25.08636],[77.16712,25.08461],[77.17158,25.09791],[77.16876,25.10301],[77.17442,25.11181],[77.18423,25.10814],[77.1959,25.10932],[77.2053,25.11387],[77.2151,25.109],[77.22572,25.10895],[77.23696,25.10661],[77.24879,25.10995],[77.25936,25.11089],[77.27001,25.11609],[77.27461,25.11069],[77.28883,25.10601],[77.29257,25.10028],[77.29159,25.09716],[77.29774,25.09123],[77.29826,25.08588],[77.31078,25.07983],[77.31155,25.08242],[77.31484,25.08467],[77.32191,25.08554],[77.33834,25.09217],[77.33781,25.09485],[77.35043,25.09576],[77.35729,25.09351],[77.37567,25.10464],[77.37558,25.11029],[77.39438,25.11992],[77.40243,25.11255],[77.40219,25.10929],[77.40662,25.11169],[77.40537,25.11721],[77.40128,25.12164],[77.39058,25.12339],[77.39616,25.13728],[77.39469,25.15644],[77.393,25.15923],[77.39468,25.16213],[77.40003,25.16556],[77.40014,25.18388],[77.40945,25.18294],[77.41629,25.18611],[77.42158,25.18571],[77.42197,25.18331],[77.42662,25.18807],[77.4185,25.19842],[77.41468,25.22013],[77.4117,25.22401],[77.39977,25.22609],[77.39442,25.22994],[77.39313,25.23376],[77.38765,25.23902],[77.38662,25.2427],[77.38242,25.24569],[77.37037,25.24601],[77.36905,25.25546],[77.36625,25.25766],[77.36611,25.25991],[77.36225,25.26269],[77.35816,25.26178],[77.35509,25.26348],[77.35417,25.2736],[77.35694,25.27384],[77.35755,25.27579],[77.36266,25.27901],[77.37395,25.27452],[77.37587,25.28512],[77.381,25.29273],[77.37962,25.29754],[77.38148,25.3046],[77.37785,25.31572],[77.37476,25.32009],[77.37171,25.32089],[77.36977,25.32725],[77.36761,25.3286],[77.358,25.32616],[77.35708,25.32289],[77.35282,25.32041],[77.34212,25.32177],[77.35036,25.32982],[77.3616,25.35661],[77.36132,25.35876],[77.36669,25.36031],[77.36413,25.36358],[77.36105,25.36461],[77.35914,25.36938],[77.35166,25.36969],[77.3505,25.38407],[77.35766,25.39874],[77.368,25.40209],[77.37097,25.40849],[77.36094,25.41899],[77.3539,25.41889],[77.34994,25.4157],[77.3442,25.41862],[77.34354,25.42078],[77.33464,25.42381],[77.3349,25.42542],[77.33124,25.42746],[77.31994,25.42771],[77.31546,25.43147],[77.30688,25.43026],[77.2938,25.4243],[77.28635,25.41855],[77.27813,25.40918],[77.27564,25.40355],[77.26694,25.39565],[77.25094,25.38794],[77.24787,25.38019],[77.24395,25.37904],[77.23617,25.38039],[77.23394,25.3787],[77.23157,25.3727],[77.22794,25.36867],[77.22987,25.36089],[77.22815,25.34657],[77.22562,25.34237],[77.22432,25.33553],[77.22566,25.3347],[77.22923,25.33761],[77.23395,25.33377],[77.22578,25.33031],[77.22695,25.32526],[77.22337,25.31879],[77.2175,25.31784],[77.21523,25.32034],[77.21632,25.32305],[77.21988,25.32478],[77.21947,25.32779],[77.21722,25.32953],[77.20555,25.32648],[77.20828,25.31434],[77.21139,25.30934],[77.20919,25.30865],[77.20942,25.30631],[77.1856,25.309],[77.17967,25.31191],[77.16536,25.30823],[77.15374,25.31261],[77.14412,25.32053],[77.13864,25.32205],[77.13503,25.32067],[77.12508,25.33027],[77.11768,25.32945],[77.11249,25.33198],[77.10903,25.33063],[77.08367,25.33656],[77.07523,25.32823],[77.07496,25.32522],[77.07005,25.31849],[77.06395,25.31657],[77.05691,25.31655],[77.0459,25.32144],[77.04377,25.31269],[77.03169,25.29439],[77.0257,25.29627],[76.99688,25.2984],[76.98047,25.29793],[76.97374,25.30041],[76.96065,25.29729],[76.95781,25.28441],[76.94309,25.28212],[76.9299,25.28297],[76.92327,25.28546],[76.92739,25.29153],[76.92941,25.30319],[76.91765,25.30926],[76.90154,25.32363],[76.88148,25.32413],[76.87211,25.32895],[76.8704,25.32703],[76.86577,25.3285],[76.86348,25.33123],[76.85728,25.33278],[76.85201,25.33203],[76.83944,25.3262],[76.83078,25.3273],[76.82036,25.32628],[76.8145,25.32297],[76.80027,25.31965],[76.78966,25.31954],[76.77757,25.31561],[76.76971,25.31771],[76.76627,25.32022],[76.76037,25.31974],[76.75619,25.32257],[76.74028,25.32775],[76.72932,25.32857],[76.72559,25.33129],[76.7237,25.3355],[76.71695,25.33846],[76.71112,25.3461],[76.7033,25.34789],[76.70028,25.35163],[76.68882,25.35225],[76.68255,25.34837],[76.67793,25.35066],[76.67715,25.34782],[76.67532,25.34923],[76.67344,25.34802],[76.6695,25.3491],[76.6688,25.35301],[76.66351,25.35795],[76.66043,25.36519],[76.65883,25.36541],[76.65857,25.36154],[76.65682,25.3612],[76.65406,25.3631],[76.65355,25.36711],[76.64927,25.36662],[76.64936,25.37156],[76.64585,25.37072],[76.64647,25.37317],[76.64383,25.37794],[76.64067,25.37953],[76.63976,25.38353],[76.63556,25.38344],[76.63089,25.38123],[76.62891,25.37779],[76.62279,25.37678],[76.61664,25.38076],[76.60828,25.39094],[76.59847,25.39233],[76.59823,25.40543],[76.58796,25.4311],[76.58243,25.43686],[76.5724,25.43832]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"9","area_level":"District","area_name":"Leh Ladakh","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.71192,37.06379],[74.70886,37.07331],[74.70739,37.08729],[74.69012,37.08814],[74.68117,37.08671],[74.65237,37.07009],[74.6338,37.0637],[74.60479,37.05925],[74.58941,37.05916],[74.58167,37.05757],[74.56812,37.05176],[74.57496,37.04956],[74.57791,37.0458],[74.58042,37.02101],[74.56914,36.9703],[74.56575,36.95926],[74.5641,36.9579],[74.56054,36.9572],[74.55107,36.95907],[74.54255,36.96135],[74.54033,36.96332],[74.53729,36.97737],[74.53431,36.98324],[74.52296,36.99513],[74.45683,36.99829],[74.42642,36.99569],[74.41715,36.99343],[74.41269,36.98452],[74.40818,36.98156],[74.38866,36.97347],[74.37569,36.97338],[74.3508,36.96007],[74.33644,36.94703],[74.32913,36.93815],[74.31482,36.92733],[74.28261,36.90919],[74.24897,36.89361],[74.2211,36.90271],[74.15575,36.91051],[74.1442,36.89092],[74.137,36.86303],[74.1353,36.85013],[74.13346,36.8479],[74.11631,36.83573],[74.08883,36.84214],[74.08552,36.84151],[74.06868,36.8313],[74.04652,36.81082],[74.02778,36.82611],[74.00838,36.83377],[73.99542,36.83417],[73.98196,36.82958],[73.9615,36.83927],[73.95723,36.84338],[73.95056,36.84578],[73.94127,36.86211],[73.9149,36.88298],[73.90675,36.88383],[73.89302,36.87546],[73.88259,36.88098],[73.8705,36.89421],[73.85926,36.89732],[73.82044,36.90309],[73.81017,36.88858],[73.80072,36.8875],[73.79961,36.89359],[73.7941,36.90016],[73.78693,36.90015],[73.77358,36.8963],[73.76555,36.90519],[73.75876,36.90528],[73.75132,36.90969],[73.74486,36.9089],[73.73351,36.89894],[73.72873,36.89799],[73.72055,36.9007],[73.70345,36.91209],[73.69724,36.91431],[73.67109,36.9117],[73.67136,36.90449],[73.66772,36.90035],[73.66529,36.89182],[73.66701,36.88088],[73.6825,36.87344],[73.68726,36.86994],[73.68942,36.86591],[73.70619,36.85795],[73.70697,36.84642],[73.70551,36.83781],[73.71179,36.83437],[73.71984,36.83633],[73.7253,36.83508],[73.73202,36.83098],[73.73663,36.83015],[73.73866,36.82599],[73.74909,36.82737],[73.7544,36.81889],[73.75884,36.81615],[73.77397,36.81503],[73.78813,36.81897],[73.79757,36.8182],[73.79636,36.80248],[73.80041,36.79929],[73.80151,36.79422],[73.8064,36.79083],[73.81479,36.78901],[73.83159,36.79528],[73.83699,36.79513],[73.84011,36.79369],[73.85323,36.77603],[73.86799,36.76632],[73.88222,36.74847],[73.8841,36.7392],[73.88305,36.73304],[73.88529,36.7299],[73.87364,36.72059],[73.87865,36.70709],[73.87178,36.7014],[73.84866,36.70237],[73.81249,36.71477],[73.79555,36.71884],[73.78446,36.71456],[73.77985,36.71039],[73.77478,36.70209],[73.75673,36.70634],[73.73671,36.70885],[73.72707,36.71329],[73.71721,36.71171],[73.70985,36.71233],[73.70362,36.70521],[73.69498,36.69912],[73.69222,36.68912],[73.68311,36.68657],[73.64836,36.69309],[73.638,36.69795],[73.63482,36.69816],[73.62158,36.69034],[73.6156,36.69112],[73.60682,36.69492],[73.59271,36.69284],[73.58654,36.6994],[73.58556,36.70949],[73.5793,36.72238],[73.55433,36.70956],[73.54982,36.71607],[73.5342,36.71138],[73.5199,36.71029],[73.51248,36.72169],[73.50984,36.72193],[73.49763,36.71314],[73.47931,36.71946],[73.4791,36.72312],[73.46857,36.72851],[73.46641,36.73244],[73.46197,36.73505],[73.45866,36.73259],[73.44671,36.72892],[73.43388,36.731],[73.42796,36.73311],[73.42598,36.73626],[73.42532,36.74291],[73.42144,36.74298],[73.41644,36.74102],[73.41017,36.73477],[73.39895,36.73302],[73.39442,36.73007],[73.38988,36.72978],[73.38417,36.7329],[73.37378,36.73106],[73.35158,36.735],[73.35211,36.72824],[73.34833,36.72198],[73.34783,36.7164],[73.34461,36.71472],[73.31079,36.71432],[73.30394,36.70627],[73.29412,36.70423],[73.28572,36.70379],[73.26679,36.70618],[73.25556,36.70452],[73.24612,36.70538],[73.23801,36.71152],[73.2288,36.70149],[73.20955,36.69551],[73.2014,36.69553],[73.19229,36.69773],[73.18669,36.70119],[73.1855,36.70492],[73.18656,36.7103],[73.17504,36.71797],[73.17067,36.72403],[73.17055,36.71913],[73.16788,36.71302],[73.16254,36.70759],[73.13809,36.69851],[73.11644,36.6842],[73.10584,36.68589],[73.09522,36.68336],[73.06765,36.70062],[73.07071,36.67983],[73.08043,36.66998],[73.07802,36.65286],[73.07985,36.6388],[73.07411,36.62878],[73.09629,36.61353],[73.09789,36.60992],[73.09717,36.60599],[73.09395,36.59986],[73.0795,36.5856],[73.07802,36.56918],[73.06195,36.56119],[73.0525,36.54868],[73.05366,36.54094],[73.05195,36.53297],[73.01767,36.52503],[73.00017,36.51809],[72.99916,36.52006],[72.99029,36.51305],[72.97791,36.51152],[72.98276,36.50148],[72.97475,36.49433],[72.97423,36.47537],[72.97477,36.47352],[72.9823,36.47467],[72.98749,36.47284],[72.98792,36.46927],[72.98265,36.46564],[72.98247,36.46171],[72.97936,36.45732],[72.97345,36.45384],[72.96345,36.45838],[72.95558,36.45926],[72.94971,36.46193],[72.94606,36.46621],[72.92859,36.45493],[72.92361,36.45353],[72.90815,36.46092],[72.90461,36.4601],[72.88658,36.44434],[72.85967,36.43556],[72.85915,36.43366],[72.87461,36.41962],[72.87583,36.41693],[72.87067,36.41177],[72.87009,36.40748],[72.8718,36.40038],[72.87554,36.39456],[72.87412,36.39041],[72.86407,36.3789],[72.85097,36.37238],[72.85367,36.36635],[72.84009,36.36733],[72.81608,36.35644],[72.80861,36.351],[72.80603,36.34509],[72.80335,36.33081],[72.79994,36.32794],[72.78887,36.32611],[72.77825,36.3173],[72.7739,36.31593],[72.77032,36.30912],[72.76594,36.30842],[72.7609,36.30463],[72.76094,36.3007],[72.75918,36.29858],[72.75652,36.29727],[72.74825,36.3012],[72.73114,36.29826],[72.72655,36.29073],[72.72113,36.28982],[72.71975,36.28498],[72.71407,36.28474],[72.71341,36.27856],[72.71123,36.27625],[72.70756,36.27439],[72.68056,36.27103],[72.67417,36.26222],[72.68343,36.24929],[72.68483,36.24388],[72.68002,36.24334],[72.67023,36.25454],[72.66509,36.25569],[72.6622,36.25813],[72.64446,36.25841],[72.62396,36.26881],[72.61168,36.26949],[72.60512,36.2634],[72.58466,36.25689],[72.58072,36.25262],[72.57694,36.24255],[72.57274,36.23913],[72.57237,36.22852],[72.57395,36.2238],[72.56486,36.21436],[72.5575,36.21404],[72.54731,36.20541],[72.5505,36.19854],[72.54565,36.19542],[72.54452,36.18683],[72.54018,36.17913],[72.53578,36.17552],[72.53592,36.1733],[72.54913,36.16464],[72.55125,36.16132],[72.55072,36.15002],[72.55346,36.14671],[72.56123,36.14397],[72.5617,36.13989],[72.54781,36.13006],[72.54038,36.12769],[72.53415,36.11666],[72.52762,36.11022],[72.52081,36.09831],[72.51668,36.06733],[72.52592,36.05977],[72.53574,36.04729],[72.55833,36.04611],[72.56435,36.04723],[72.56876,36.04462],[72.5794,36.03583],[72.5846,36.02508],[72.58163,36.02173],[72.58353,36.01707],[72.58086,36.0133],[72.57112,36.00837],[72.56777,36.00284],[72.56878,35.99945],[72.56798,36.00144],[72.56729,35.99813],[72.55932,35.99358],[72.56226,35.98913],[72.55996,35.98696],[72.54883,35.98235],[72.53932,35.98622],[72.53867,35.98512],[72.54246,35.9742],[72.54241,35.96954],[72.53583,35.96107],[72.53445,35.95742],[72.53489,35.95064],[72.52635,35.95029],[72.51308,35.93867],[72.51365,35.93447],[72.51689,35.9321],[72.51503,35.92669],[72.51847,35.90548],[72.53161,35.9031],[72.53953,35.89574],[72.54303,35.89449],[72.55824,35.89766],[72.56057,35.88937],[72.56542,35.88759],[72.57047,35.8821],[72.58002,35.86438],[72.5851,35.85937],[72.60994,35.86156],[72.6188,35.85336],[72.62517,35.8578],[72.62814,35.85786],[72.64967,35.8389],[72.67792,35.82372],[72.68438,35.82253],[72.69987,35.83099],[72.72337,35.8522],[72.72658,35.85305],[72.74294,35.84473],[72.76144,35.8323],[72.76485,35.83315],[72.77519,35.84146],[72.77941,35.8426],[72.78429,35.84145],[72.78652,35.8425],[72.78743,35.85535],[72.78914,35.8577],[72.7966,35.86017],[72.80821,35.8591],[72.81254,35.86586],[72.8157,35.88008],[72.81916,35.88172],[72.83932,35.86713],[72.87278,35.87474],[72.88272,35.8755],[72.89113,35.87374],[72.89357,35.87139],[72.88904,35.85433],[72.88933,35.84884],[72.89245,35.84454],[72.89837,35.84078],[72.91844,35.83906],[72.92959,35.84025],[72.95827,35.84722],[72.97764,35.85743],[72.98708,35.85981],[73.00023,35.85777],[73.0123,35.84929],[73.02882,35.84706],[73.05804,35.86269],[73.06815,35.8777],[73.08388,35.87746],[73.10587,35.85751],[73.12029,35.84782],[73.14076,35.83827],[73.14866,35.83118],[73.14791,35.82875],[73.14119,35.82507],[73.13721,35.81919],[73.1265,35.77623],[73.12642,35.72102],[73.12811,35.71639],[73.13292,35.71078],[73.13796,35.70663],[73.1536,35.70035],[73.15767,35.70007],[73.1624,35.69322],[73.19432,35.67371],[73.21262,35.66892],[73.23118,35.65116],[73.2496,35.63847],[73.25989,35.62893],[73.26868,35.62439],[73.29973,35.61117],[73.32735,35.60622],[73.36348,35.59722],[73.37323,35.58893],[73.39184,35.5677],[73.39812,35.55708],[73.47736,35.5719],[73.48109,35.57125],[73.49592,35.5599],[73.50151,35.55757],[73.50726,35.55794],[73.52212,35.56619],[73.52792,35.5673],[73.53673,35.56348],[73.55025,35.55057],[73.5568,35.54684],[73.5616,35.54639],[73.58667,35.55395],[73.60172,35.55564],[73.60928,35.55816],[73.62212,35.56784],[73.62839,35.56905],[73.63795,35.56296],[73.65182,35.55102],[73.65884,35.54763],[73.67343,35.54465],[73.72126,35.54922],[73.72436,35.54366],[73.72529,35.53486],[73.72961,35.52949],[73.7785,35.52289],[73.78128,35.51241],[73.78542,35.47708],[73.79204,35.45422],[73.7524,35.436],[73.73959,35.42904],[73.72702,35.41899],[73.71486,35.39436],[73.69828,35.37573],[73.69544,35.36907],[73.6939,35.35939],[73.69289,35.35081],[73.69514,35.33221],[73.69484,35.31841],[73.69851,35.3101],[73.72498,35.27305],[73.71906,35.24247],[73.70798,35.22248],[73.72939,35.2097],[73.73353,35.20853],[73.74115,35.21485],[73.75657,35.22293],[73.77051,35.236],[73.80833,35.2395],[73.83481,35.22622],[73.84537,35.22463],[73.85278,35.21406],[73.86119,35.20714],[73.86623,35.20618],[73.89697,35.21169],[73.91521,35.20802],[73.92455,35.2039],[73.9417,35.18646],[73.95684,35.16804],[73.9777,35.18064],[74.0003,35.17999],[73.99963,35.18278],[74.00283,35.18365],[74.00498,35.17747],[74.00476,35.16773],[74.01656,35.16322],[74.02536,35.15269],[74.03381,35.14686],[74.0441,35.14979],[74.05116,35.14651],[74.06341,35.14705],[74.07213,35.15317],[74.08006,35.14949],[74.08517,35.14888],[74.09106,35.14161],[74.09581,35.14074],[74.10663,35.14796],[74.11227,35.14853],[74.11399,35.14421],[74.11364,35.13769],[74.10707,35.13027],[74.10586,35.12572],[74.11099,35.1253],[74.11902,35.11838],[74.12794,35.11612],[74.13367,35.11005],[74.13374,35.10465],[74.14467,35.09579],[74.15611,35.09088],[74.19131,35.09092],[74.21514,35.09372],[74.22022,35.08859],[74.21755,35.08223],[74.21993,35.07534],[74.22349,35.0736],[74.22698,35.0743],[74.23523,35.08139],[74.24022,35.07914],[74.2425,35.07224],[74.24141,35.06006],[74.24513,35.05211],[74.25587,35.0442],[74.26517,35.04086],[74.28823,35.04768],[74.29155,35.05467],[74.29271,35.06452],[74.30523,35.06763],[74.34752,35.06487],[74.37566,35.066],[74.38198,35.06782],[74.39956,35.09182],[74.41062,35.10129],[74.41529,35.11174],[74.42705,35.11951],[74.43874,35.13007],[74.43994,35.12594],[74.4585,35.12527],[74.49944,35.11559],[74.51224,35.10354],[74.51974,35.09285],[74.5398,35.07498],[74.53885,35.06856],[74.53007,35.06013],[74.52907,35.05129],[74.53073,35.04618],[74.55552,35.03135],[74.56047,35.02602],[74.57837,35.02432],[74.58509,35.01812],[74.58778,35.00636],[74.58502,34.99794],[74.5763,34.98654],[74.57053,34.97563],[74.56975,34.96228],[74.57701,34.91392],[74.59032,34.91584],[74.59653,34.9218],[74.60423,34.9248],[74.62008,34.92063],[74.63434,34.90986],[74.6464,34.90364],[74.66253,34.90677],[74.66409,34.9004],[74.68415,34.8788],[74.69822,34.88072],[74.70167,34.88303],[74.71145,34.88092],[74.71669,34.86649],[74.72944,34.86325],[74.73948,34.85411],[74.74026,34.84836],[74.75017,34.84499],[74.76276,34.84408],[74.77694,34.84077],[74.78785,34.85246],[74.79846,34.85207],[74.80757,34.85048],[74.81329,34.84362],[74.82325,34.83736],[74.83969,34.84074],[74.85322,34.8311],[74.86104,34.82833],[74.87215,34.83019],[74.88707,34.82228],[74.89857,34.80972],[74.90145,34.80165],[74.90731,34.79253],[74.9186,34.78511],[74.92982,34.78697],[74.95063,34.80174],[74.95674,34.80813],[75.01634,34.84825],[75.0311,34.84843],[75.04376,34.84336],[75.05712,34.84234],[75.06403,34.84711],[75.06528,34.85749],[75.06362,34.87081],[75.06412,34.90524],[75.07164,34.9192],[75.1013,34.9191],[75.14197,34.87495],[75.14423,34.85028],[75.15809,34.84548],[75.17257,34.84267],[75.19062,34.83493],[75.22324,34.81752],[75.23966,34.80183],[75.25625,34.77389],[75.25093,34.74986],[75.26357,34.74458],[75.26256,34.73168],[75.2543,34.72169],[75.25827,34.69757],[75.23207,34.69082],[75.20791,34.66542],[75.20446,34.6535],[75.21818,34.6516],[75.20948,34.64767],[75.20603,34.64378],[75.20807,34.63868],[75.21272,34.63812],[75.22062,34.63383],[75.22533,34.63463],[75.22993,34.63303],[75.23288,34.63616],[75.2415,34.63778],[75.25407,34.62828],[75.25664,34.62151],[75.25834,34.61459],[75.25326,34.6075],[75.25337,34.60413],[75.26553,34.60226],[75.26912,34.59792],[75.27799,34.59439],[75.28637,34.59543],[75.28971,34.58917],[75.29956,34.58694],[75.30636,34.57875],[75.31181,34.57686],[75.31504,34.56965],[75.3199,34.56484],[75.32853,34.56879],[75.33366,34.56801],[75.3379,34.56474],[75.34416,34.56303],[75.35267,34.55315],[75.35562,34.54687],[75.36176,34.54209],[75.36111,34.54017],[75.36557,34.5381],[75.36418,34.52899],[75.36612,34.52145],[75.3572,34.52129],[75.35293,34.51759],[75.34738,34.5027],[75.34733,34.49556],[75.34292,34.48944],[75.34459,34.48505],[75.35024,34.48014],[75.34965,34.4753],[75.35324,34.46879],[75.34905,34.46346],[75.34016,34.46056],[75.33723,34.45167],[75.3326,34.45193],[75.33049,34.4503],[75.33291,34.44709],[75.33317,34.44295],[75.32754,34.43977],[75.3297,34.43623],[75.3342,34.43324],[75.3351,34.42927],[75.3538,34.42456],[75.35738,34.418],[75.36512,34.41848],[75.37234,34.4126],[75.36963,34.40176],[75.3666,34.39774],[75.36697,34.39103],[75.37714,34.38714],[75.37878,34.38206],[75.37676,34.37567],[75.37338,34.3715],[75.38333,34.36704],[75.45253,34.39281],[75.48224,34.42152],[75.48997,34.45463],[75.49875,34.46949],[75.50985,34.48337],[75.53549,34.50295],[75.5576,34.5139],[75.75535,34.51476],[75.77814,34.51265],[75.79497,34.51398],[75.80815,34.52662],[75.8302,34.52767],[75.83664,34.53363],[75.84018,34.53961],[75.84864,34.54412],[75.86223,34.54396],[75.87856,34.55153],[75.88882,34.5613],[75.90552,34.60321],[75.92357,34.63309],[75.94378,34.68352],[75.94873,34.71687],[75.97215,34.73669],[75.9848,34.73629],[76.00087,34.72745],[76.03469,34.7051],[76.04826,34.69985],[76.08192,34.69433],[76.09976,34.68749],[76.1193,34.68408],[76.14785,34.6902],[76.16576,34.68945],[76.18407,34.69247],[76.19678,34.6967],[76.20588,34.69428],[76.21455,34.68578],[76.22363,34.68249],[76.23031,34.68243],[76.24691,34.68835],[76.27635,34.70663],[76.28692,34.70826],[76.30318,34.70764],[76.30667,34.71096],[76.31606,34.71537],[76.33607,34.71923],[76.36003,34.73349],[76.39171,34.73632],[76.4098,34.74173],[76.42011,34.74242],[76.42805,34.74779],[76.43481,34.75011],[76.44824,34.75183],[76.43028,34.7464],[76.4194,34.73741],[76.42092,34.73091],[76.42023,34.72089],[76.4246,34.71687],[76.4281,34.70989],[76.43375,34.70533],[76.44505,34.68565],[76.44553,34.67539],[76.4498,34.66955],[76.44794,34.66623],[76.44891,34.65832],[76.4567,34.65254],[76.4596,34.6464],[76.46439,34.64354],[76.47284,34.63373],[76.47011,34.62592],[76.47587,34.62267],[76.49112,34.61832],[76.50157,34.60643],[76.5113,34.60043],[76.51683,34.60026],[76.52547,34.59425],[76.52909,34.58597],[76.52838,34.57876],[76.53046,34.57385],[76.56123,34.57038],[76.57182,34.56028],[76.5762,34.55821],[76.5986,34.56024],[76.60252,34.55672],[76.6054,34.55025],[76.61853,34.54154],[76.62247,34.53505],[76.62236,34.52952],[76.62583,34.52243],[76.62682,34.51462],[76.62469,34.51236],[76.62595,34.51005],[76.62215,34.50777],[76.62227,34.50584],[76.6393,34.49881],[76.6418,34.48878],[76.6524,34.48853],[76.65835,34.48179],[76.6578,34.47138],[76.64663,34.44905],[76.63705,34.44108],[76.6279,34.43705],[76.61925,34.41851],[76.60474,34.40756],[76.6026,34.40547],[76.60345,34.40303],[76.61826,34.38897],[76.61664,34.38585],[76.62468,34.37938],[76.64295,34.37172],[76.65698,34.36921],[76.6626,34.36287],[76.67909,34.35435],[76.68365,34.34787],[76.69161,34.34286],[76.70637,34.33722],[76.72235,34.32721],[76.70945,34.31823],[76.7066,34.31186],[76.702,34.3071],[76.70352,34.29962],[76.70071,34.29479],[76.70298,34.29173],[76.69951,34.28772],[76.69673,34.27875],[76.69843,34.276],[76.69752,34.27384],[76.70017,34.2709],[76.69916,34.2668],[76.70125,34.2621],[76.70092,34.25802],[76.69521,34.24682],[76.69035,34.242],[76.67483,34.23983],[76.67788,34.23328],[76.67078,34.22259],[76.67202,34.21461],[76.6753,34.21126],[76.67484,34.20871],[76.6819,34.19578],[76.68061,34.18422],[76.68157,34.18045],[76.66869,34.16752],[76.66708,34.15388],[76.66079,34.14775],[76.66858,34.13722],[76.67162,34.12887],[76.67302,34.12302],[76.67172,34.12146],[76.67352,34.11858],[76.67068,34.11491],[76.67281,34.10461],[76.6806,34.09204],[76.68093,34.08799],[76.68817,34.08501],[76.68725,34.08197],[76.68447,34.07957],[76.68503,34.07726],[76.68231,34.07599],[76.67235,34.07723],[76.66948,34.068],[76.6603,34.06367],[76.65459,34.06434],[76.64082,34.0605],[76.63557,34.06125],[76.6321,34.06381],[76.62881,34.06037],[76.62456,34.0593],[76.61651,34.06501],[76.61023,34.06675],[76.59119,34.05885],[76.58983,34.05791],[76.59023,34.05092],[76.5793,34.0473],[76.58009,34.04371],[76.58521,34.03658],[76.58567,34.02418],[76.58861,34.0204],[76.58319,34.01488],[76.58256,34.01257],[76.58397,34.0103],[76.58273,34.00847],[76.5791,34.00621],[76.57526,34.00762],[76.57231,34.0031],[76.56941,34.00217],[76.56223,34.00703],[76.55544,34.00633],[76.55269,34.00398],[76.55347,33.99955],[76.55218,33.99607],[76.54929,33.99416],[76.54685,33.99664],[76.54114,33.99739],[76.54184,33.98573],[76.53762,33.98165],[76.53092,33.98053],[76.53083,33.9702],[76.52606,33.969],[76.5253,33.96734],[76.52783,33.9609],[76.53723,33.9536],[76.53394,33.95114],[76.53392,33.94512],[76.53157,33.94015],[76.54153,33.93076],[76.54182,33.92783],[76.54048,33.9254],[76.53609,33.92338],[76.53437,33.91743],[76.52817,33.91338],[76.52537,33.91326],[76.52445,33.90407],[76.51924,33.90038],[76.50985,33.88931],[76.52422,33.88628],[76.53044,33.87837],[76.52904,33.87107],[76.5178,33.86591],[76.51659,33.86345],[76.51858,33.86078],[76.52549,33.85739],[76.52496,33.85174],[76.5278,33.84652],[76.55454,33.8424],[76.56367,33.83919],[76.56763,33.83421],[76.56634,33.8288],[76.56767,33.82638],[76.57521,33.82589],[76.58504,33.82868],[76.59484,33.82712],[76.60059,33.82981],[76.60668,33.84046],[76.6234,33.85587],[76.64018,33.86001],[76.64744,33.8634],[76.65441,33.86166],[76.65908,33.85875],[76.66341,33.84963],[76.66971,33.84516],[76.67203,33.84091],[76.68153,33.83675],[76.69138,33.82942],[76.69685,33.82845],[76.70166,33.82415],[76.70651,33.82325],[76.70876,33.81637],[76.71685,33.80755],[76.71815,33.80153],[76.72876,33.79578],[76.75544,33.80527],[76.76665,33.80486],[76.77567,33.80804],[76.7776,33.80744],[76.77871,33.80366],[76.78935,33.79949],[76.79498,33.7954],[76.8286,33.79379],[76.83251,33.79047],[76.84048,33.78751],[76.84362,33.78301],[76.8563,33.77768],[76.85963,33.77431],[76.8736,33.77269],[76.88593,33.7772],[76.8895,33.78104],[76.89279,33.77586],[76.90119,33.77416],[76.9023,33.77048],[76.90855,33.76883],[76.90806,33.76362],[76.91371,33.75882],[76.90955,33.75],[76.90105,33.74192],[76.92229,33.73497],[76.92652,33.72699],[76.93624,33.72257],[76.94068,33.71639],[76.94452,33.71779],[76.94957,33.71548],[76.95124,33.71262],[76.95911,33.71337],[76.96571,33.71151],[76.97211,33.71798],[76.98539,33.72414],[76.98664,33.72263],[76.99043,33.72298],[76.99241,33.71982],[76.99774,33.71805],[77.01918,33.7044],[77.03188,33.70841],[77.04507,33.70806],[77.04763,33.7067],[77.05369,33.709],[77.06088,33.70553],[77.06556,33.7009],[77.07226,33.69884],[77.07342,33.69233],[77.10047,33.67202],[77.10694,33.67317],[77.1102,33.67612],[77.1204,33.6765],[77.12014,33.68039],[77.12915,33.68538],[77.14924,33.67972],[77.16313,33.66423],[77.16882,33.6616],[77.17563,33.66288],[77.18076,33.6568],[77.18354,33.64948],[77.1926,33.6452],[77.19457,33.64273],[77.20684,33.63963],[77.21014,33.63351],[77.20756,33.62958],[77.20805,33.62236],[77.22467,33.61504],[77.23802,33.60222],[77.2382,33.59843],[77.23307,33.59076],[77.23843,33.58611],[77.24234,33.56618],[77.24098,33.55995],[77.25459,33.54202],[77.25518,33.5338],[77.25653,33.53254],[77.25584,33.52922],[77.26458,33.52138],[77.27257,33.51964],[77.27667,33.51341],[77.28144,33.5095],[77.28425,33.50911],[77.2822,33.50148],[77.2937,33.49673],[77.29849,33.48784],[77.30861,33.48558],[77.3171,33.49086],[77.32237,33.48946],[77.33715,33.49307],[77.34207,33.48867],[77.34383,33.48475],[77.36108,33.47666],[77.37251,33.47948],[77.3765,33.48256],[77.38194,33.48337],[77.3862,33.48615],[77.39375,33.4874],[77.39614,33.48883],[77.39711,33.49304],[77.40216,33.49216],[77.41155,33.49421],[77.43999,33.49525],[77.44259,33.49376],[77.44887,33.48013],[77.45445,33.46363],[77.45922,33.45926],[77.4633,33.44733],[77.46668,33.44493],[77.47182,33.43275],[77.47997,33.4204],[77.48823,33.41533],[77.49571,33.41381],[77.50297,33.41568],[77.50845,33.41257],[77.51664,33.41175],[77.52228,33.4075],[77.51972,33.39819],[77.5202,33.39238],[77.51536,33.38624],[77.51657,33.3787],[77.51271,33.37479],[77.51379,33.36835],[77.52495,33.36511],[77.52574,33.35894],[77.53228,33.36031],[77.53516,33.35693],[77.53879,33.35916],[77.54739,33.35991],[77.55754,33.35355],[77.55796,33.35163],[77.55489,33.348],[77.56024,33.34226],[77.56093,33.33578],[77.54466,33.32968],[77.53993,33.32975],[77.53445,33.32459],[77.51543,33.32575],[77.50763,33.32403],[77.50158,33.3171],[77.4946,33.31359],[77.49464,33.31022],[77.4993,33.30416],[77.49923,33.3012],[77.48725,33.29107],[77.48095,33.28082],[77.47589,33.27623],[77.48285,33.26872],[77.48647,33.26846],[77.49363,33.25957],[77.49547,33.25334],[77.49242,33.24639],[77.50072,33.23999],[77.50518,33.23059],[77.50989,33.22532],[77.52063,33.21991],[77.52387,33.20668],[77.52287,33.20151],[77.52466,33.19457],[77.53133,33.18927],[77.53299,33.18495],[77.53746,33.18095],[77.53747,33.1755],[77.53547,33.17194],[77.53786,33.1582],[77.52545,33.16289],[77.51796,33.17328],[77.49419,33.18234],[77.48464,33.19066],[77.4834,33.19384],[77.47482,33.19438],[77.4678,33.20145],[77.46239,33.20155],[77.45024,33.20675],[77.44505,33.20485],[77.44116,33.20629],[77.43371,33.2049],[77.41918,33.19905],[77.41637,33.19195],[77.41299,33.189],[77.41198,33.18239],[77.40695,33.17926],[77.40252,33.17206],[77.4102,33.16476],[77.40971,33.15989],[77.40692,33.15609],[77.40984,33.14999],[77.40925,33.14428],[77.41335,33.14214],[77.41767,33.13623],[77.41384,33.1339],[77.41123,33.12743],[77.41436,33.11953],[77.41326,33.11354],[77.41562,33.10119],[77.40793,33.08648],[77.39459,33.08197],[77.38017,33.08573],[77.36356,33.08035],[77.35724,33.08166],[77.35213,33.08523],[77.33907,33.08732],[77.33499,33.07363],[77.33794,33.06864],[77.33579,33.05],[77.33009,33.04836],[77.32817,33.04479],[77.32427,33.0424],[77.31569,33.0454],[77.31688,33.03761],[77.31374,33.03476],[77.30944,33.03492],[77.30523,33.03753],[77.29613,33.03491],[77.29156,33.03895],[77.28908,33.03176],[77.29027,33.02701],[77.28435,33.01966],[77.28314,33.00881],[77.27975,33.00138],[77.27669,32.99853],[77.27648,32.99469],[77.27958,32.99059],[77.27933,32.98321],[77.28709,32.97792],[77.28522,32.9727],[77.28748,32.96327],[77.28679,32.95672],[77.28939,32.95123],[77.2943,32.94692],[77.29631,32.94155],[77.30171,32.93808],[77.30082,32.92966],[77.30271,32.92626],[77.3077,32.92268],[77.31052,32.9076],[77.31415,32.90392],[77.31468,32.89915],[77.31832,32.8944],[77.3038,32.8828],[77.29878,32.88321],[77.29574,32.88558],[77.28568,32.87913],[77.27809,32.87846],[77.27399,32.87385],[77.28607,32.86449],[77.29044,32.85708],[77.30086,32.84986],[77.3204,32.85237],[77.32336,32.85041],[77.32469,32.84681],[77.32874,32.84297],[77.32534,32.83551],[77.327,32.83149],[77.32968,32.83047],[77.33203,32.8261],[77.33602,32.82498],[77.33679,32.81904],[77.33857,32.81691],[77.35315,32.81599],[77.37287,32.8232],[77.3766,32.83708],[77.37924,32.83892],[77.37988,32.84454],[77.37587,32.84918],[77.37459,32.85494],[77.38146,32.86192],[77.38779,32.86355],[77.39422,32.87132],[77.39589,32.87717],[77.4045,32.88274],[77.41344,32.88412],[77.42798,32.87561],[77.43331,32.87593],[77.43956,32.87924],[77.44481,32.8799],[77.44796,32.87531],[77.44782,32.87026],[77.45207,32.86409],[77.46119,32.85998],[77.4692,32.85868],[77.47494,32.86161],[77.48082,32.87054],[77.48619,32.87369],[77.49103,32.87961],[77.49719,32.88037],[77.50149,32.88558],[77.51258,32.87736],[77.53847,32.88608],[77.54539,32.8916],[77.55039,32.90031],[77.56372,32.9123],[77.57725,32.91445],[77.59436,32.92594],[77.60311,32.94293],[77.64316,32.94651],[77.64358,32.94922],[77.65269,32.95488],[77.65601,32.95888],[77.66413,32.95831],[77.67413,32.96119],[77.67407,32.96735],[77.67873,32.96958],[77.68202,32.97477],[77.68072,32.98379],[77.68249,32.9888],[77.68952,32.98802],[77.69778,32.98271],[77.6975,32.97938],[77.71315,32.98246],[77.7141,32.97633],[77.71957,32.96866],[77.72494,32.96932],[77.73095,32.97455],[77.73282,32.97178],[77.74101,32.96903],[77.7445,32.962],[77.74977,32.95773],[77.75091,32.95456],[77.76354,32.94905],[77.76651,32.94629],[77.76475,32.94358],[77.7658,32.94154],[77.77183,32.93802],[77.7876,32.92347],[77.79456,32.91999],[77.79973,32.91244],[77.81063,32.90703],[77.81175,32.90454],[77.81069,32.90016],[77.80667,32.89556],[77.80246,32.89333],[77.79327,32.8931],[77.78947,32.89061],[77.78398,32.88285],[77.78096,32.86579],[77.79186,32.85593],[77.79766,32.85629],[77.80549,32.84988],[77.81593,32.8483],[77.82612,32.83619],[77.83244,32.83627],[77.83532,32.84067],[77.83901,32.84201],[77.84687,32.83898],[77.8554,32.83234],[77.86919,32.82703],[77.87127,32.82248],[77.87851,32.81918],[77.88209,32.81036],[77.8811,32.80413],[77.88795,32.79869],[77.88419,32.78755],[77.89183,32.78287],[77.89456,32.77826],[77.90368,32.77188],[77.91624,32.77384],[77.92572,32.772],[77.92723,32.76572],[77.93293,32.76129],[77.93413,32.7565],[77.93143,32.75048],[77.93291,32.74655],[77.92926,32.74253],[77.93066,32.73696],[77.92703,32.73648],[77.9263,32.73482],[77.93161,32.73171],[77.93439,32.72586],[77.92803,32.722],[77.92485,32.71723],[77.92455,32.71127],[77.92163,32.70844],[77.92282,32.70643],[77.92155,32.70316],[77.92246,32.69905],[77.91829,32.69627],[77.91862,32.69054],[77.92665,32.68628],[77.93106,32.68201],[77.93457,32.68114],[77.94096,32.6734],[77.9428,32.66559],[77.94744,32.66088],[77.95512,32.65819],[77.96585,32.65757],[77.97091,32.65497],[77.97227,32.65292],[77.97056,32.64636],[77.98466,32.6415],[77.98757,32.63614],[77.9917,32.63254],[77.99151,32.63064],[77.99623,32.62683],[78.00329,32.62457],[78.01186,32.62499],[78.01282,32.62181],[78.01589,32.61961],[78.02903,32.6235],[78.02516,32.62723],[78.03345,32.63381],[78.03402,32.63693],[78.04276,32.64032],[78.04702,32.64531],[78.05639,32.63468],[78.06088,32.62642],[78.06788,32.62663],[78.07471,32.63094],[78.08134,32.62622],[78.08753,32.62465],[78.09171,32.62851],[78.09886,32.63036],[78.0992,32.63644],[78.09592,32.6444],[78.0926,32.64784],[78.11049,32.66277],[78.11676,32.66027],[78.12062,32.66073],[78.1271,32.65223],[78.13664,32.65447],[78.14719,32.65396],[78.14788,32.67187],[78.14238,32.68183],[78.14973,32.68175],[78.15836,32.68399],[78.16548,32.68311],[78.17115,32.68047],[78.17576,32.68101],[78.19692,32.67052],[78.20129,32.67043],[78.20394,32.66706],[78.21895,32.66463],[78.23223,32.67171],[78.2459,32.6716],[78.25441,32.68918],[78.2538,32.69202],[78.25577,32.69706],[78.26054,32.7029],[78.26849,32.7011],[78.27391,32.70253],[78.29318,32.70034],[78.2946,32.70363],[78.30179,32.70411],[78.30602,32.70712],[78.30685,32.71043],[78.31473,32.71739],[78.3139,32.72081],[78.30585,32.73248],[78.30988,32.7351],[78.31285,32.73978],[78.33326,32.74971],[78.35705,32.7577],[78.3649,32.75334],[78.388,32.75669],[78.38596,32.74965],[78.38656,32.74523],[78.38944,32.74069],[78.38466,32.7317],[78.38537,32.71956],[78.38887,32.71184],[78.39699,32.70757],[78.39721,32.6985],[78.40074,32.6942],[78.39168,32.68537],[78.38714,32.67725],[78.38651,32.66468],[78.38142,32.65413],[78.38775,32.64514],[78.38786,32.64078],[78.39161,32.63343],[78.40135,32.62831],[78.40838,32.6271],[78.40966,32.62313],[78.40363,32.61967],[78.40231,32.61707],[78.39753,32.61761],[78.39079,32.61488],[78.3896,32.60999],[78.38414,32.60894],[78.37961,32.60455],[78.37859,32.59794],[78.36617,32.59366],[78.3629,32.58966],[78.35056,32.58896],[78.34328,32.57808],[78.33149,32.57662],[78.32084,32.57135],[78.31336,32.56556],[78.31447,32.5602],[78.31245,32.55147],[78.3155,32.54967],[78.31297,32.54511],[78.30904,32.5431],[78.30697,32.53754],[78.30866,32.52555],[78.30455,32.51743],[78.3067,32.5115],[78.30113,32.50387],[78.29252,32.49897],[78.29264,32.48984],[78.28995,32.48514],[78.28575,32.48239],[78.28953,32.47934],[78.29127,32.47532],[78.28566,32.47155],[78.28469,32.46887],[78.28737,32.46299],[78.29785,32.46234],[78.30019,32.45548],[78.30741,32.45209],[78.31144,32.44633],[78.32083,32.44403],[78.32982,32.44351],[78.33366,32.44811],[78.33446,32.45066],[78.32844,32.45403],[78.32575,32.45964],[78.32844,32.46501],[78.34055,32.46273],[78.34897,32.46433],[78.35314,32.46994],[78.34998,32.47334],[78.34971,32.47746],[78.36378,32.48227],[78.36654,32.48544],[78.36761,32.49373],[78.36514,32.4994],[78.37856,32.50645],[78.38601,32.51301],[78.39419,32.5148],[78.39894,32.5209],[78.39952,32.5246],[78.40987,32.52401],[78.40727,32.5261],[78.42766,32.56336],[78.45128,32.5776],[78.47556,32.57918],[78.50342,32.58705],[78.51533,32.60406],[78.52431,32.6081],[78.54284,32.60895],[78.56551,32.61485],[78.58771,32.60457],[78.60526,32.59109],[78.61459,32.5981],[78.62934,32.62086],[78.64837,32.64386],[78.6568,32.64914],[78.68026,32.65555],[78.70871,32.65613],[78.722,32.6664],[78.74058,32.69123],[78.7507,32.69276],[78.75321,32.68414],[78.74975,32.66703],[78.74334,32.65498],[78.7622,32.62875],[78.77546,32.62101],[78.78236,32.59581],[78.75916,32.56779],[78.77011,32.52903],[78.77483,32.50537],[78.80455,32.45584],[78.8067,32.44425],[78.82245,32.43388],[78.8394,32.43362],[78.85994,32.41023],[78.94671,32.36125],[78.95876,32.34399],[78.97119,32.33569],[78.98334,32.34844],[79.00355,32.37488],[79.04541,32.38741],[79.09368,32.37713],[79.09924,32.38205],[79.10387,32.39665],[79.1134,32.41081],[79.12976,32.41717],[79.13517,32.4323],[79.12136,32.45814],[79.12505,32.46502],[79.13201,32.46981],[79.13894,32.46859],[79.15347,32.4715],[79.18209,32.47376],[79.23023,32.51329],[79.24093,32.51954],[79.25975,32.52265],[79.28133,32.54774],[79.29357,32.57186],[79.30526,32.58582],[79.31187,32.58763],[79.32497,32.58465],[79.33945,32.57012],[79.36237,32.56625],[79.37299,32.56048],[79.37903,32.53531],[79.38453,32.5228],[79.39662,32.51749],[79.41655,32.51808],[79.42929,32.52353],[79.43866,32.53589],[79.4515,32.55875],[79.45879,32.56589],[79.47472,32.57404],[79.52526,32.63068],[79.53749,32.65959],[79.56724,32.67007],[79.57234,32.68762],[79.58021,32.6935],[79.59241,32.711],[79.60962,32.72323],[79.61186,32.73504],[79.59794,32.74834],[79.59441,32.75948],[79.58815,32.76606],[79.57035,32.7659],[79.55708,32.76772],[79.53811,32.78636],[79.53395,32.80348],[79.51771,32.82659],[79.46549,32.88001],[79.44606,32.91181],[79.43335,32.92378],[79.42096,32.93271],[79.41395,32.94475],[79.3976,32.96185],[79.3771,32.9631],[79.36895,32.96624],[79.37172,32.9768],[79.36817,32.98252],[79.35808,32.98163],[79.35338,32.98386],[79.34623,32.98931],[79.33998,33.00188],[79.32994,33.00698],[79.3249,33.01224],[79.35674,33.01598],[79.38032,33.02767],[79.38715,33.04207],[79.36816,33.08342],[79.37322,33.10638],[79.4228,33.16496],[79.44304,33.20036],[79.45177,33.235],[79.44611,33.25773],[79.39393,33.27446],[79.35558,33.28211],[79.33112,33.2753],[79.30013,33.27327],[79.26134,33.28874],[79.22368,33.29628],[79.14903,33.29388],[79.10769,33.28911],[79.08156,33.29741],[79.01604,33.32834],[78.98703,33.33086],[78.97842,33.33641],[78.9718,33.36399],[78.95537,33.38162],[78.93998,33.41356],[78.92708,33.45429],[78.92747,33.48666],[78.94124,33.51128],[78.94377,33.52607],[78.92325,33.56025],[78.90626,33.57371],[78.90735,33.58262],[78.91452,33.60601],[78.90286,33.62201],[78.90949,33.62924],[78.92716,33.62712],[78.94034,33.61759],[78.96425,33.61373],[78.98946,33.61455],[79.03082,33.62417],[79.06609,33.6193],[79.09537,33.61254],[79.10015,33.61632],[79.09038,33.63578],[79.08171,33.67555],[79.078,33.68608],[79.04632,33.67383],[79.022,33.68615],[79.01611,33.70226],[79.01978,33.71455],[79.03798,33.74538],[79.05872,33.75618],[79.0641,33.76472],[79.06045,33.77583],[79.04361,33.7791],[79.03035,33.78805],[79.01319,33.78294],[79.00961,33.79465],[79.00233,33.80548],[78.98673,33.83623],[78.94534,33.9262],[78.9227,33.95275],[78.91832,33.96392],[78.92565,33.98249],[78.95321,34.01313],[79.00115,34.03361],[79.02483,34.03276],[79.08035,34.00995],[79.11265,34.00894],[79.13823,34.01752],[79.14667,34.03298],[79.14801,34.05507],[79.17293,34.05829],[79.18685,34.04867],[79.20599,34.04039],[79.21841,34.0417],[79.23208,34.0471],[79.2604,34.0374],[79.28294,34.02761],[79.30051,34.02965],[79.37367,34.02675],[79.41551,33.99901],[79.43745,34.01265],[79.44288,34.02117],[79.42985,34.03194],[79.41453,34.04171],[79.42111,34.07594],[79.42751,34.08077],[79.44697,34.08623],[79.46603,34.09412],[79.49595,34.12445],[79.49096,34.14711],[79.49369,34.18468],[79.50372,34.19518],[79.51314,34.20094],[79.53242,34.1992],[79.54006,34.19131],[79.57101,34.21252],[79.59214,34.23582],[79.59739,34.26476],[79.59696,34.278],[79.5796,34.29999],[79.56851,34.3202],[79.56998,34.33687],[79.56136,34.38147],[79.56894,34.40059],[79.5667,34.40559],[79.54333,34.4041],[79.53163,34.40875],[79.52755,34.41632],[79.52803,34.44209],[79.52146,34.45828],[79.52215,34.46362],[79.54035,34.46979],[79.58353,34.4785],[79.59839,34.48676],[79.6148,34.47927],[79.6335,34.47818],[79.65339,34.48057],[79.66286,34.47551],[79.68181,34.47079],[79.72588,34.46976],[79.74442,34.46206],[79.75381,34.46721],[79.79144,34.46675],[79.80385,34.47282],[79.8161,34.48309],[79.82104,34.51446],[79.80911,34.52276],[79.76978,34.53778],[79.76882,34.55227],[79.77709,34.56532],[79.79438,34.58054],[79.78991,34.59055],[79.77549,34.60208],[79.7766,34.61038],[79.82936,34.63555],[79.85824,34.6665],[79.87514,34.66794],[79.87826,34.67486],[79.92156,34.67265],[79.94466,34.6609],[79.97372,34.67681],[80.00427,34.68236],[80.04328,34.68592],[80.06531,34.69286],[80.06932,34.70089],[80.06921,34.76874],[80.075,34.80542],[80.08976,34.82805],[80.12724,34.87255],[80.17142,34.96504],[80.1869,35.008],[80.18805,35.05291],[80.18503,35.13063],[80.19916,35.1533],[80.22623,35.17956],[80.24266,35.20802],[80.25121,35.24802],[80.28392,35.31394],[80.29748,35.35287],[80.29616,35.3902],[80.29848,35.41699],[80.32121,35.43764],[80.33978,35.44967],[80.34508,35.46117],[80.33459,35.49578],[80.32683,35.52892],[80.31463,35.53608],[80.31346,35.54339],[80.31794,35.56456],[80.31171,35.58796],[80.26859,35.61543],[80.21308,35.63866],[80.1289,35.65673],[80.11216,35.68948],[80.10052,35.70616],[80.07751,35.72569],[80.06214,35.7685],[80.04261,35.80269],[80.01569,35.82616],[79.9997,35.82764],[79.9677,35.82518],[79.93834,35.80988],[79.91538,35.7928],[79.90454,35.7782],[79.89896,35.77511],[79.88709,35.77439],[79.82847,35.78692],[79.75109,35.79692],[79.72838,35.81395],[79.68231,35.83247],[79.61925,35.8453],[79.56238,35.86594],[79.53623,35.87964],[79.46804,35.88745],[79.4402,35.89408],[79.43027,35.90814],[79.41035,35.98598],[79.40093,35.99279],[79.35803,35.99173],[79.2517,35.98475],[79.2309,35.97216],[79.21313,35.95452],[79.20449,35.9277],[79.20951,35.90391],[79.21276,35.87787],[79.18164,35.85357],[79.16467,35.83819],[79.14242,35.83476],[79.03225,35.84772],[79.01315,35.85951],[78.98239,35.88966],[78.9692,35.89017],[78.95211,35.87723],[78.92512,35.86751],[78.87223,35.86234],[78.83907,35.85612],[78.81999,35.8565],[78.78622,35.86888],[78.74892,35.86477],[78.72831,35.86467],[78.71053,35.85774],[78.69524,35.859],[78.67331,35.8542],[78.66522,35.8363],[78.64643,35.82107],[78.62168,35.81111],[78.61003,35.81206],[78.56027,35.77777],[78.53416,35.76251],[78.51254,35.77204],[78.47543,35.77503],[78.44267,35.78364],[78.43024,35.77805],[78.42612,35.7682],[78.41594,35.76303],[78.41241,35.75193],[78.40907,35.74861],[78.40866,35.73906],[78.40386,35.73585],[78.33796,35.71894],[78.29793,35.72809],[78.27695,35.71837],[78.27552,35.7125],[78.27749,35.69199],[78.27719,35.67704],[78.28451,35.66449],[78.2827,35.66164],[78.26868,35.65439],[78.26561,35.64742],[78.25588,35.64579],[78.21205,35.666],[78.20699,35.66041],[78.2077,35.64778],[78.19592,35.63493],[78.19744,35.62284],[78.17599,35.62751],[78.16983,35.625],[78.17341,35.60556],[78.17064,35.5944],[78.1596,35.58149],[78.16046,35.57005],[78.16491,35.55174],[78.15724,35.54874],[78.14907,35.5416],[78.13677,35.53657],[78.13158,35.54236],[78.10575,35.55335],[78.09286,35.54956],[78.08435,35.55202],[78.07494,35.55933],[78.05556,35.58179],[78.03688,35.58503],[78.0014,35.58237],[77.99071,35.58499],[77.95781,35.60487],[77.95377,35.60158],[77.96794,35.57177],[77.96346,35.55834],[77.93752,35.51722],[77.93927,35.50691],[77.96032,35.48614],[77.97054,35.4668],[77.986,35.45483],[77.98525,35.4483],[77.97727,35.44892],[77.92932,35.49031],[77.92099,35.48795],[77.9189,35.46955],[77.91208,35.46109],[77.89375,35.46728],[77.88613,35.47743],[77.86949,35.47271],[77.86257,35.47623],[77.85263,35.48537],[77.83799,35.49186],[77.82924,35.5051],[77.82205,35.50624],[77.80963,35.49999],[77.80348,35.49088],[77.78632,35.48798],[77.76739,35.49539],[77.74912,35.50873],[77.73587,35.5211],[77.72616,35.51285],[77.72877,35.47733],[77.70779,35.47292],[77.68575,35.47217],[77.68516,35.46682],[77.67335,35.46591],[77.6531,35.48118],[77.64703,35.47924],[77.63713,35.4692],[77.62862,35.46504],[77.55664,35.47574],[77.49613,35.47778],[77.47426,35.46501],[77.44366,35.45946],[77.41884,35.46664],[77.38524,35.47386],[77.37676,35.48345],[77.36322,35.48682],[77.35468,35.49581],[77.35292,35.50671],[77.34549,35.51921],[77.33008,35.5257],[77.33204,35.53035],[77.36197,35.54316],[77.38866,35.53944],[77.41181,35.5234],[77.43052,35.51367],[77.443,35.51396],[77.45817,35.51884],[77.47342,35.51773],[77.47981,35.52266],[77.48276,35.52962],[77.4735,35.53867],[77.46522,35.55005],[77.47561,35.57143],[77.47188,35.58427],[77.45865,35.59062],[77.44656,35.59389],[77.44013,35.60213],[77.44174,35.61698],[77.44103,35.63737],[77.43794,35.65614],[77.42807,35.65985],[77.41156,35.65626],[77.40281,35.66347],[77.40183,35.68149],[77.38533,35.69165],[77.37801,35.70534],[77.36587,35.71519],[77.34375,35.72096],[77.33555,35.71975],[77.3326,35.71279],[77.32107,35.70105],[77.3124,35.70227],[77.29908,35.708],[77.28744,35.72259],[77.28031,35.71771],[77.27639,35.70842],[77.25834,35.70432],[77.24192,35.70848],[77.21301,35.73325],[77.19164,35.73237],[77.17968,35.73022],[77.16903,35.74054],[77.17636,35.76813],[77.16208,35.76495],[77.15219,35.76864],[77.14578,35.77746],[77.13504,35.78],[77.13234,35.78916],[77.12701,35.79432],[77.11566,35.79811],[77.09111,35.79503],[77.04522,35.77729],[77.01048,35.77491],[77.001,35.77556],[76.98244,35.7876],[76.95699,35.78995],[76.93561,35.78902],[76.92505,35.79333],[76.9038,35.80794],[76.88739,35.81264],[76.86115,35.83595],[76.82353,35.84149],[76.80748,35.84975],[76.79877,35.87963],[76.78299,35.9052],[76.75778,35.932],[76.73939,35.94638],[76.73214,35.95464],[76.73286,35.96176],[76.73626,35.96632],[76.759,35.98034],[76.77036,35.99811],[76.7877,36.01667],[76.81041,36.02292],[76.81345,36.03108],[76.81369,36.04063],[76.7982,36.06199],[76.78375,36.07193],[76.75218,36.08002],[76.72009,36.0977],[76.71526,36.10818],[76.71644,36.12722],[76.71112,36.14013],[76.6703,36.17391],[76.65592,36.19218],[76.64468,36.19771],[76.61691,36.17802],[76.59409,36.17832],[76.56539,36.18617],[76.54929,36.20216],[76.51032,36.21067],[76.48098,36.21973],[76.46825,36.24027],[76.4482,36.24634],[76.43678,36.25783],[76.44566,36.26562],[76.4485,36.27201],[76.4375,36.31035],[76.41339,36.32803],[76.3798,36.3469],[76.35393,36.36945],[76.33992,36.36974],[76.2744,36.35655],[76.2665,36.35884],[76.24409,36.3716],[76.23026,36.38142],[76.20073,36.397],[76.17672,36.40088],[76.16395,36.40645],[76.14462,36.42855],[76.11172,36.45966],[76.09169,36.47462],[76.07115,36.48424],[76.05333,36.4913],[76.01006,36.49513],[75.94504,36.51161],[75.89078,36.53277],[75.8668,36.54555],[75.85243,36.55834],[75.80702,36.56342],[75.74442,36.6077],[75.73466,36.62259],[75.72053,36.63834],[75.66281,36.72166],[75.61272,36.77527],[75.58553,36.78638],[75.48802,36.81639],[75.46327,36.83031],[75.45834,36.84192],[75.44982,36.88893],[75.44183,36.89952],[75.42968,36.90497],[75.41765,36.90326],[75.40878,36.90375],[75.40692,36.90803],[75.41106,36.92152],[75.42488,36.95236],[75.41845,36.9724],[75.41368,36.97743],[75.40369,36.98217],[75.37924,36.97458],[75.36889,36.97516],[75.35443,36.98848],[75.34841,37.00492],[75.35037,37.01912],[75.34657,37.05272],[75.34131,37.06076],[75.33628,37.06283],[75.32078,37.06428],[75.27654,37.06015],[75.21096,37.05002],[75.19693,37.04243],[75.17721,37.02025],[75.15296,36.98816],[75.10915,36.9619],[75.09125,36.96107],[75.05519,36.97432],[75.03708,36.98899],[75.02322,36.99211],[75.01567,36.99072],[74.95402,36.95462],[74.93413,36.93837],[74.91558,36.92026],[74.90976,36.92176],[74.8965,36.94152],[74.83479,37.00526],[74.83347,37.01472],[74.84087,37.03214],[74.8389,37.03584],[74.83583,37.03799],[74.8292,37.03903],[74.80477,37.03498],[74.78331,37.041],[74.76905,37.04122],[74.76019,37.03597],[74.75318,37.02188],[74.74942,37.01939],[74.73817,37.02678],[74.72636,37.0385],[74.71591,37.05365],[74.71192,37.06379]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"90","area_level":"District","area_name":"Barmer","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[72.07162,26.35029],[72.06612,26.3504],[72.06214,26.3525],[72.06202,26.35418],[72.05914,26.35397],[72.05839,26.35577],[72.04632,26.35017],[72.04604,26.35218],[72.0353,26.34966],[72.0286,26.3506],[72.0151,26.34215],[72.0089,26.34203],[71.99517,26.32804],[71.98213,26.31859],[71.96949,26.31761],[71.96247,26.32012],[71.95877,26.31595],[71.94919,26.31342],[71.94525,26.31604],[71.94035,26.31518],[71.92541,26.30033],[71.92129,26.30066],[71.91682,26.29682],[71.90808,26.30021],[71.89325,26.29796],[71.89164,26.30422],[71.89394,26.30629],[71.88688,26.3209],[71.88321,26.33913],[71.85911,26.3616],[71.83827,26.37397],[71.83627,26.37453],[71.82409,26.36609],[71.81753,26.35834],[71.8133,26.33361],[71.80251,26.33321],[71.78754,26.34629],[71.75555,26.34845],[71.75743,26.3503],[71.75208,26.36235],[71.73802,26.37551],[71.72031,26.38324],[71.71676,26.38663],[71.71601,26.38537],[71.70255,26.39219],[71.68609,26.38708],[71.68349,26.38174],[71.67739,26.38442],[71.67546,26.38336],[71.66263,26.39071],[71.6594,26.39086],[71.64504,26.40412],[71.63469,26.40462],[71.62298,26.41707],[71.63176,26.43012],[71.62421,26.43342],[71.6225,26.43729],[71.623,26.44787],[71.62085,26.46239],[71.61514,26.4731],[71.61316,26.48125],[71.60906,26.4876],[71.60408,26.48547],[71.59276,26.50021],[71.58585,26.50224],[71.5796,26.50666],[71.57039,26.5045],[71.54289,26.48974],[71.52003,26.4867],[71.51103,26.47038],[71.48824,26.45752],[71.46814,26.47373],[71.46543,26.48743],[71.46086,26.499],[71.46071,26.50433],[71.44813,26.51353],[71.44494,26.50663],[71.43627,26.49668],[71.43072,26.49697],[71.42135,26.49239],[71.41367,26.48433],[71.41018,26.4777],[71.40042,26.47023],[71.3898,26.4679],[71.36843,26.45271],[71.35286,26.44607],[71.34736,26.44044],[71.33881,26.43544],[71.32718,26.42076],[71.3242,26.42664],[71.31707,26.43228],[71.30743,26.43574],[71.30609,26.44774],[71.30702,26.45229],[71.29883,26.45835],[71.29672,26.46381],[71.28363,26.46681],[71.27603,26.46347],[71.26198,26.46054],[71.26035,26.46191],[71.25569,26.45952],[71.23834,26.45576],[71.21678,26.44292],[71.21297,26.44253],[71.21205,26.44031],[71.21348,26.43521],[71.20483,26.43215],[71.19788,26.41853],[71.18669,26.41387],[71.18238,26.40725],[71.18146,26.40484],[71.18298,26.39825],[71.19016,26.39019],[71.18976,26.38469],[71.18043,26.37244],[71.16456,26.34142],[71.15326,26.3262],[71.14928,26.3232],[71.14815,26.31748],[71.14096,26.3078],[71.13725,26.30519],[71.13135,26.30465],[71.13028,26.30818],[71.12832,26.30354],[71.12645,26.30281],[71.1085,26.31043],[71.09103,26.31325],[71.07556,26.32253],[71.05907,26.31243],[71.06845,26.30225],[71.07056,26.29456],[71.05552,26.28331],[71.04314,26.28113],[71.02877,26.28331],[71.0114,26.2798],[71.00222,26.27526],[70.99901,26.25969],[70.96873,26.25107],[70.9564,26.24998],[70.94952,26.24458],[70.94736,26.236],[70.93874,26.22828],[70.94082,26.22402],[70.96339,26.22],[70.97406,26.22059],[70.97852,26.21727],[70.98657,26.21868],[70.98819,26.22133],[70.99378,26.21907],[71.0,26.22233],[71.00781,26.22315],[71.00984,26.22094],[71.00953,26.21669],[71.01102,26.21762],[71.01302,26.21201],[71.01136,26.19949],[71.0228,26.19005],[71.03076,26.17701],[71.03418,26.17811],[71.03949,26.1724],[71.03855,26.16691],[71.04456,26.14664],[71.05027,26.13917],[71.02417,26.11368],[71.01577,26.11669],[70.99999,26.11336],[70.98017,26.10158],[70.96015,26.0942],[70.95878,26.0879],[70.95099,26.08003],[70.94483,26.0786],[70.94025,26.0795],[70.95195,26.06314],[70.96077,26.054],[70.96781,26.03288],[70.96368,26.02325],[70.9583,26.01763],[70.95277,26.01949],[70.94848,26.02679],[70.94105,26.02923],[70.93913,26.03789],[70.94228,26.04554],[70.9425,26.05008],[70.94014,26.05361],[70.91728,26.0757],[70.9186,26.07742],[70.90073,26.10101],[70.88261,26.11533],[70.86791,26.13105],[70.85568,26.1297],[70.84194,26.13406],[70.81083,26.13631],[70.77605,26.14219],[70.76173,26.14281],[70.75,26.14582],[70.74166,26.14128],[70.72691,26.15699],[70.71075,26.16541],[70.70875,26.16979],[70.71055,26.17607],[70.71925,26.19362],[70.71617,26.21021],[70.70566,26.20717],[70.69512,26.20953],[70.68693,26.20946],[70.68413,26.21164],[70.68089,26.21101],[70.66378,26.19789],[70.65421,26.19623],[70.63786,26.19723],[70.63501,26.19573],[70.63011,26.19598],[70.59549,26.20164],[70.55908,26.19778],[70.5252,26.17913],[70.49998,26.17221],[70.47629,26.17633],[70.46579,26.17619],[70.46186,26.1791],[70.43609,26.17757],[70.43067,26.17467],[70.42804,26.1765],[70.43135,26.1841],[70.42569,26.18669],[70.42431,26.19267],[70.40794,26.19772],[70.39108,26.17609],[70.38364,26.17151],[70.37701,26.15891],[70.36957,26.14867],[70.36255,26.14225],[70.34933,26.13956],[70.33235,26.14957],[70.32867,26.14985],[70.31686,26.14636],[70.29957,26.14436],[70.29016,26.15518],[70.28448,26.15475],[70.27807,26.15124],[70.2709,26.15383],[70.2691,26.16333],[70.25694,26.16096],[70.25055,26.15741],[70.24644,26.15331],[70.23554,26.13479],[70.22545,26.12235],[70.22041,26.11869],[70.21629,26.13175],[70.20082,26.14556],[70.17609,26.15379],[70.14574,26.15135],[70.14119,26.15586],[70.08339,26.08329],[70.09976,25.93826],[70.17445,25.82837],[70.19711,25.81548],[70.22241,25.79311],[70.24724,25.76161],[70.25169,25.75524],[70.26273,25.72021],[70.26865,25.7136],[70.35856,25.68011],[70.387,25.67383],[70.4486,25.68196],[70.50222,25.68477],[70.53015,25.68348],[70.59395,25.71062],[70.60885,25.71497],[70.64726,25.71261],[70.66007,25.70215],[70.67393,25.67584],[70.67355,25.64466],[70.67021,25.63263],[70.67135,25.61099],[70.66941,25.59354],[70.66714,25.53134],[70.67845,25.5252],[70.67138,25.46093],[70.6728,25.45714],[70.67201,25.42025],[70.66481,25.39688],[70.68718,25.37517],[70.7368,25.33256],[70.75158,25.27782],[70.84219,25.19061],[70.88867,25.14817],[70.91122,25.03084],[70.91978,24.99569],[70.93763,24.93856],[70.94396,24.92546],[70.957,24.91042],[70.99212,24.86344],[71.01801,24.81924],[71.02648,24.80885],[71.03384,24.78804],[71.0653,24.71746],[71.09617,24.68871],[71.112,24.67603],[71.18783,24.6497],[71.20955,24.69834],[71.23991,24.72132],[71.26426,24.74832],[71.26148,24.74916],[71.25725,24.75569],[71.24384,24.80132],[71.25445,24.795],[71.26365,24.80531],[71.2791,24.81433],[71.28662,24.81686],[71.28445,24.82527],[71.2889,24.82736],[71.30349,24.82218],[71.31789,24.83655],[71.31951,24.84042],[71.32654,24.84371],[71.32957,24.85049],[71.32707,24.86829],[71.30559,24.88812],[71.30788,24.89035],[71.31131,24.8997],[71.31709,24.90413],[71.32654,24.89958],[71.32909,24.89591],[71.34654,24.91182],[71.34605,24.9172],[71.34302,24.91825],[71.33962,24.92596],[71.33918,24.93894],[71.3428,24.94358],[71.34843,24.94206],[71.37887,24.96062],[71.38397,24.96611],[71.3872,24.97486],[71.39997,24.9707],[71.41154,24.97215],[71.41387,24.96998],[71.42118,24.97674],[71.4246,24.97535],[71.43634,24.97837],[71.44608,24.986],[71.45225,24.98735],[71.46592,24.9969],[71.475,24.99786],[71.48245,24.99166],[71.48373,24.98803],[71.49031,24.99199],[71.49018,25.00534],[71.50641,25.00948],[71.51477,25.00863],[71.52555,24.99918],[71.52785,24.98853],[71.52532,24.98334],[71.53011,24.97373],[71.53235,24.97224],[71.53863,24.97707],[71.5523,24.98039],[71.55698,24.98357],[71.56676,24.99559],[71.56711,25.00183],[71.58592,25.02144],[71.59138,25.02511],[71.61442,25.03192],[71.63381,25.03422],[71.64404,25.02548],[71.64698,25.02529],[71.6521,25.02168],[71.66585,25.00032],[71.68274,24.98706],[71.69202,24.99338],[71.71363,25.02158],[71.71924,25.0208],[71.727,25.02608],[71.72892,25.03407],[71.72737,25.03613],[71.72695,25.04276],[71.72809,25.04856],[71.73306,25.05211],[71.73763,25.06035],[71.73815,25.06777],[71.75239,25.06979],[71.76188,25.07434],[71.76769,25.07424],[71.77576,25.06586],[71.78602,25.06531],[71.79712,25.05216],[71.80147,25.05434],[71.80124,25.0593],[71.80332,25.06162],[71.80167,25.06469],[71.80481,25.06892],[71.79929,25.07386],[71.79101,25.07825],[71.79665,25.08749],[71.80524,25.09721],[71.8002,25.10327],[71.80368,25.1128],[71.80772,25.11676],[71.81595,25.12018],[71.82264,25.11977],[71.82391,25.12593],[71.83473,25.14063],[71.83368,25.14261],[71.83884,25.15297],[71.83608,25.1562],[71.83639,25.15884],[71.84672,25.20064],[71.85386,25.20748],[71.87633,25.21881],[71.87981,25.22238],[71.88004,25.22545],[71.89555,25.23681],[71.89935,25.24379],[71.88965,25.25002],[71.88579,25.25589],[71.89121,25.25749],[71.9034,25.26764],[71.93329,25.27992],[71.93424,25.2918],[71.93608,25.29672],[71.94715,25.31632],[71.93712,25.32472],[71.93333,25.3266],[71.9296,25.32627],[71.92142,25.33207],[71.91748,25.33728],[71.91732,25.34695],[71.92705,25.35691],[71.92854,25.356],[71.93287,25.35889],[71.93938,25.36942],[71.94618,25.37417],[71.95311,25.38277],[71.95939,25.38566],[71.96681,25.39294],[71.97615,25.40687],[71.97616,25.41858],[71.97865,25.42655],[71.98729,25.43507],[71.99732,25.43912],[72.00103,25.44408],[72.01573,25.45512],[72.0336,25.47431],[72.05594,25.48232],[72.06756,25.47412],[72.0893,25.46425],[72.09117,25.46222],[72.09128,25.44963],[72.09883,25.44128],[72.1004,25.43018],[72.10721,25.42004],[72.11701,25.42706],[72.12898,25.43158],[72.15192,25.43617],[72.15657,25.4318],[72.16202,25.43612],[72.1629,25.4321],[72.17028,25.42715],[72.18801,25.42399],[72.22119,25.40458],[72.23144,25.40619],[72.23747,25.41076],[72.24004,25.40846],[72.24633,25.41431],[72.25065,25.4154],[72.25278,25.41072],[72.26296,25.40736],[72.26883,25.41046],[72.27629,25.40289],[72.28266,25.39997],[72.28547,25.40031],[72.28987,25.39185],[72.29821,25.38599],[72.30364,25.38794],[72.30769,25.38354],[72.31309,25.38711],[72.31414,25.38615],[72.32001,25.38801],[72.32882,25.39417],[72.33045,25.39989],[72.33148,25.42633],[72.3369,25.43982],[72.34224,25.44649],[72.347,25.44539],[72.35132,25.44177],[72.354,25.4442],[72.35348,25.44727],[72.35531,25.45041],[72.35329,25.45506],[72.3557,25.45918],[72.35839,25.45491],[72.3667,25.44778],[72.37056,25.4486],[72.37746,25.44626],[72.38067,25.44674],[72.38164,25.44274],[72.40524,25.44334],[72.41055,25.43919],[72.42268,25.43962],[72.43841,25.44705],[72.45148,25.45879],[72.45311,25.45735],[72.45726,25.45938],[72.46334,25.45631],[72.47132,25.46456],[72.48241,25.47227],[72.48143,25.4759],[72.48395,25.47875],[72.48501,25.48393],[72.50506,25.48965],[72.50574,25.49351],[72.50223,25.49417],[72.50371,25.5],[72.50957,25.50715],[72.51495,25.50763],[72.52191,25.50452],[72.52807,25.51256],[72.52743,25.51385],[72.53892,25.52365],[72.55591,25.53179],[72.55998,25.52987],[72.56115,25.5309],[72.55636,25.5376],[72.54574,25.54948],[72.54956,25.55263],[72.55079,25.55647],[72.54769,25.56291],[72.57242,25.58542],[72.58414,25.60385],[72.58931,25.605],[72.59061,25.6087],[72.59628,25.60811],[72.59644,25.61009],[72.60624,25.60916],[72.62124,25.60138],[72.6277,25.61183],[72.63497,25.60752],[72.64475,25.61007],[72.65761,25.60745],[72.66412,25.60808],[72.67008,25.61152],[72.67397,25.61108],[72.67674,25.61261],[72.69191,25.6041],[72.69503,25.60489],[72.70411,25.6009],[72.71974,25.6092],[72.71847,25.62644],[72.71656,25.63032],[72.71796,25.63466],[72.71192,25.63849],[72.70788,25.64354],[72.70363,25.64416],[72.70171,25.64283],[72.69851,25.64428],[72.69844,25.65731],[72.69172,25.66424],[72.69019,25.66367],[72.68699,25.66928],[72.69401,25.6766],[72.6964,25.67477],[72.70425,25.67793],[72.70806,25.68371],[72.71608,25.69016],[72.71683,25.68813],[72.721,25.68734],[72.72269,25.69313],[72.73134,25.69864],[72.74256,25.71112],[72.74171,25.712],[72.75001,25.72224],[72.75319,25.72422],[72.75872,25.72455],[72.75925,25.73359],[72.75648,25.7332],[72.75507,25.73607],[72.75691,25.738],[72.75504,25.74075],[72.73573,25.75144],[72.72417,25.75378],[72.72217,25.76295],[72.72726,25.77548],[72.73219,25.7755],[72.73978,25.77861],[72.75,25.78496],[72.75281,25.78847],[72.75506,25.80282],[72.75803,25.80976],[72.76591,25.80419],[72.77784,25.80256],[72.77767,25.80556],[72.77932,25.80751],[72.78219,25.81009],[72.79145,25.81305],[72.79942,25.82506],[72.80186,25.82757],[72.80589,25.82856],[72.80705,25.82516],[72.81526,25.82154],[72.81874,25.82184],[72.82486,25.81646],[72.83388,25.81674],[72.84065,25.822],[72.84295,25.82915],[72.84974,25.83923],[72.83746,25.85382],[72.8355,25.86379],[72.8307,25.86111],[72.83019,25.86413],[72.82484,25.86229],[72.80966,25.85268],[72.808,25.85588],[72.80442,25.85478],[72.79632,25.86158],[72.78085,25.88411],[72.75352,25.88061],[72.7515,25.88548],[72.75304,25.89694],[72.74912,25.89761],[72.7463,25.90036],[72.74201,25.90036],[72.74148,25.90378],[72.73917,25.90333],[72.73817,25.90489],[72.73734,25.9111],[72.73444,25.9095],[72.7327,25.91257],[72.73111,25.91203],[72.73103,25.91569],[72.72718,25.92052],[72.72482,25.91883],[72.72178,25.9206],[72.71752,25.92632],[72.7163,25.92547],[72.71235,25.92813],[72.70521,25.9355],[72.69192,25.93198],[72.69174,25.93545],[72.68807,25.94137],[72.68299,25.94022],[72.68133,25.94124],[72.67985,25.94672],[72.67486,25.94727],[72.67187,25.95221],[72.65543,25.95692],[72.65275,25.95928],[72.64714,25.95889],[72.64361,25.95625],[72.64199,25.96008],[72.63576,25.96473],[72.63183,25.96485],[72.62772,25.96951],[72.62309,25.97097],[72.6206,25.97444],[72.61938,25.97884],[72.62031,25.9871],[72.61095,26.00037],[72.6143,26.00139],[72.61453,26.00349],[72.63846,26.01229],[72.64571,26.01213],[72.64791,26.01347],[72.64898,26.01804],[72.64937,26.01672],[72.65248,26.0177],[72.65277,26.01918],[72.66181,26.02127],[72.68351,26.03037],[72.69375,26.03739],[72.69078,26.04199],[72.689,26.04136],[72.68449,26.05402],[72.68532,26.05966],[72.68974,26.06227],[72.68912,26.06492],[72.68623,26.06927],[72.67963,26.06763],[72.67517,26.06951],[72.67733,26.0722],[72.67639,26.07432],[72.6835,26.08054],[72.68503,26.08421],[72.68368,26.09616],[72.69713,26.10663],[72.69318,26.11365],[72.69897,26.11679],[72.69695,26.12018],[72.69797,26.12326],[72.6956,26.12464],[72.69354,26.12384],[72.68851,26.13506],[72.68516,26.13807],[72.68931,26.14151],[72.68228,26.15531],[72.68377,26.15944],[72.68155,26.16535],[72.68338,26.16688],[72.67908,26.17273],[72.68529,26.18126],[72.68843,26.18199],[72.69019,26.18524],[72.68793,26.18775],[72.68536,26.18591],[72.68154,26.19041],[72.6843,26.19151],[72.68087,26.1938],[72.67912,26.19814],[72.67357,26.19796],[72.67288,26.20044],[72.66948,26.20301],[72.66261,26.20387],[72.65408,26.21519],[72.64668,26.22218],[72.64457,26.22175],[72.64014,26.22815],[72.63616,26.23094],[72.63364,26.22922],[72.61964,26.25],[72.60224,26.27118],[72.59971,26.27089],[72.59547,26.27844],[72.58991,26.27548],[72.58744,26.2766],[72.57992,26.27006],[72.57747,26.27087],[72.57218,26.26888],[72.57167,26.26992],[72.56643,26.26692],[72.56068,26.27047],[72.55695,26.26733],[72.54942,26.26453],[72.54274,26.27252],[72.53861,26.27181],[72.53401,26.27588],[72.53217,26.27471],[72.53017,26.27754],[72.52403,26.27909],[72.52545,26.28378],[72.5235,26.28363],[72.52143,26.28583],[72.52308,26.28652],[72.51796,26.28605],[72.51642,26.2845],[72.51527,26.28594],[72.51043,26.28114],[72.50613,26.27996],[72.50207,26.28356],[72.50297,26.28536],[72.50152,26.29018],[72.49866,26.29135],[72.49498,26.29043],[72.49187,26.29324],[72.49262,26.29648],[72.4899,26.29627],[72.4891,26.29811],[72.47141,26.30211],[72.4712,26.30344],[72.46445,26.29943],[72.46179,26.30159],[72.46002,26.2997],[72.45816,26.30084],[72.45286,26.29445],[72.43938,26.29529],[72.43545,26.29452],[72.43278,26.29114],[72.43017,26.29193],[72.42645,26.28984],[72.41723,26.2798],[72.41487,26.27629],[72.4234,26.2695],[72.42589,26.26003],[72.41705,26.25095],[72.41047,26.2404],[72.41214,26.23935],[72.41248,26.23621],[72.40835,26.23461],[72.40454,26.23636],[72.40394,26.2349],[72.39999,26.23491],[72.38813,26.22901],[72.38459,26.22894],[72.38026,26.22543],[72.37752,26.2275],[72.3746,26.22483],[72.37166,26.22826],[72.36258,26.23177],[72.3536,26.23852],[72.35245,26.23726],[72.35192,26.23886],[72.34211,26.24456],[72.33708,26.23916],[72.33409,26.24091],[72.32062,26.22679],[72.3058,26.2165],[72.30148,26.21476],[72.29251,26.219],[72.28781,26.2143],[72.28456,26.21503],[72.26885,26.19716],[72.243,26.21983],[72.21179,26.23425],[72.20917,26.23666],[72.20494,26.25539],[72.19595,26.26295],[72.18341,26.27184],[72.17703,26.27205],[72.17178,26.2765],[72.16695,26.27554],[72.16893,26.27854],[72.16453,26.28223],[72.1593,26.28142],[72.15852,26.28263],[72.16335,26.28997],[72.16273,26.29498],[72.16065,26.2967],[72.16129,26.2992],[72.15788,26.29974],[72.15197,26.30976],[72.15301,26.31153],[72.13446,26.31856],[72.14036,26.3258],[72.12062,26.31425],[72.114,26.32182],[72.1076,26.31638],[72.09693,26.32273],[72.09147,26.3292],[72.09159,26.33396],[72.0806,26.34444],[72.07727,26.34359],[72.07502,26.34615],[72.07526,26.34854],[72.07209,26.34893],[72.07162,26.35029]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"91","area_level":"District","area_name":"Bharatpur","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[77.07565,27.27704],[77.07528,27.27661],[77.07456,27.27669],[77.07388,27.27637],[77.0732,27.27555],[77.07218,27.27324],[77.07159,27.27148],[77.07118,27.26922],[77.07061,27.26395],[77.07367,27.26321],[77.07602,27.26244],[77.07753,27.26217],[77.0775,27.26194],[77.07907,27.26169],[77.08194,27.26166],[77.08205,27.26244],[77.08317,27.26429],[77.08296,27.26432],[77.08462,27.26706],[77.0848,27.26773],[77.08497,27.26922],[77.08476,27.26942],[77.08427,27.27194],[77.08421,27.27274],[77.08362,27.27276],[77.08374,27.27371],[77.08134,27.27488],[77.07991,27.27546],[77.07819,27.27598],[77.07565,27.27704]]],[[[77.0538,27.81694],[77.0448,27.82098],[77.04272,27.81828],[77.04583,27.81496],[77.04438,27.81216],[77.04057,27.81257],[77.03871,27.81012],[77.02658,27.77924],[77.0344,27.77811],[77.03577,27.78153],[77.05614,27.7712],[77.05758,27.77001],[77.05585,27.76342],[77.05955,27.76091],[77.06962,27.76747],[77.07209,27.76446],[77.07456,27.76701],[77.07635,27.76632],[77.0802,27.75725],[77.07819,27.7512],[77.08248,27.74588],[77.08566,27.73809],[77.07724,27.73551],[77.07281,27.73115],[77.06543,27.7314],[77.05963,27.72648],[77.04874,27.73153],[77.05032,27.73504],[77.04614,27.7373],[77.04685,27.73972],[77.04452,27.7419],[77.04507,27.74328],[77.03647,27.74861],[77.03394,27.74522],[77.0261,27.74638],[77.02509,27.7439],[77.01982,27.74577],[77.01152,27.73108],[77.0001,27.73697],[76.99039,27.7095],[76.9872,27.69515],[76.98861,27.69299],[76.98206,27.67612],[76.9811,27.66271],[76.97731,27.64841],[76.97664,27.64367],[76.98381,27.64214],[76.98212,27.61868],[76.94415,27.62085],[76.93656,27.61912],[76.93587,27.61559],[76.93745,27.61471],[76.94989,27.61546],[76.96697,27.61126],[76.96647,27.60527],[76.95359,27.6051],[76.93821,27.6082],[76.93499,27.603],[76.93605,27.60083],[76.94002,27.59987],[76.94192,27.59485],[76.94399,27.59374],[76.94402,27.58871],[76.94592,27.58588],[76.9403,27.57667],[76.9445,27.57636],[76.94671,27.5745],[76.95107,27.58024],[76.95982,27.57801],[76.96129,27.57619],[76.95886,27.5701],[76.96213,27.56796],[76.95776,27.55939],[76.94985,27.56281],[76.94677,27.55989],[76.95238,27.55856],[76.95543,27.55533],[76.95436,27.55028],[76.95857,27.54815],[76.95781,27.54573],[76.95933,27.54289],[76.96315,27.54073],[76.96744,27.55308],[76.96872,27.55072],[76.97448,27.55125],[76.98399,27.54724],[76.98358,27.54474],[76.9865,27.53794],[76.98835,27.53836],[76.98847,27.53567],[76.99166,27.53588],[76.9945,27.5326],[77.0082,27.53572],[77.01253,27.53936],[77.01717,27.53699],[77.02069,27.54084],[77.02283,27.54086],[77.02091,27.54279],[77.02219,27.54587],[77.02069,27.54739],[77.00039,27.55739],[77.00163,27.56983],[77.01832,27.56417],[77.01961,27.56145],[77.02824,27.55864],[77.03395,27.55787],[77.03492,27.55945],[77.03695,27.5585],[77.04616,27.56233],[77.05032,27.56095],[77.04907,27.5584],[77.05082,27.55386],[77.04657,27.54891],[77.03479,27.55376],[77.03414,27.55107],[77.0427,27.54364],[77.04375,27.54446],[77.05317,27.54065],[77.05626,27.54444],[77.06209,27.54154],[77.06731,27.53662],[77.05909,27.52703],[77.04848,27.52685],[77.04071,27.53039],[77.0352,27.52538],[77.03552,27.51301],[77.02611,27.51407],[77.0221,27.51667],[77.01876,27.50511],[77.0291,27.50013],[77.0288,27.49886],[77.03735,27.49726],[77.03942,27.4904],[77.04416,27.48427],[77.05055,27.48302],[77.05257,27.48422],[77.05572,27.47657],[77.05117,27.46767],[77.05909,27.45999],[77.05641,27.45578],[77.06223,27.45253],[77.06074,27.44642],[77.05382,27.44728],[77.04854,27.43862],[77.03714,27.44447],[77.03714,27.44927],[77.03924,27.44822],[77.04137,27.45068],[77.04585,27.45217],[77.05074,27.46023],[77.04592,27.46382],[77.03431,27.46853],[77.03315,27.46195],[77.02899,27.45372],[77.01856,27.45079],[77.01181,27.45415],[77.00792,27.45096],[76.98549,27.45737],[76.98078,27.45973],[76.97974,27.46443],[76.97492,27.46633],[76.97032,27.46138],[76.96804,27.4626],[76.96234,27.46705],[76.96813,27.47581],[76.95426,27.48236],[76.9502,27.48201],[76.9408,27.48518],[76.93846,27.48748],[76.94085,27.49521],[76.9364,27.49842],[76.9369,27.50114],[76.93506,27.50268],[76.93676,27.50636],[76.92977,27.51114],[76.9275,27.51487],[76.92853,27.51684],[76.90549,27.52118],[76.90816,27.52851],[76.92432,27.52419],[76.92772,27.53206],[76.92689,27.53712],[76.92451,27.53842],[76.9149,27.53216],[76.90943,27.5306],[76.90145,27.534],[76.90154,27.53653],[76.89725,27.53747],[76.89802,27.5359],[76.89296,27.52263],[76.88816,27.52334],[76.87972,27.51029],[76.87992,27.50854],[76.89485,27.49566],[76.89588,27.49155],[76.90201,27.49161],[76.90527,27.49726],[76.90883,27.49573],[76.91232,27.49936],[76.91446,27.49678],[76.92304,27.49324],[76.91831,27.48032],[76.91142,27.48196],[76.91075,27.47512],[76.91396,27.47366],[76.91188,27.47008],[76.9086,27.47162],[76.9067,27.46731],[76.90695,27.46352],[76.90582,27.46205],[76.90217,27.4637],[76.89716,27.45896],[76.90923,27.4583],[76.91106,27.46339],[76.91453,27.46242],[76.9151,27.46455],[76.91826,27.46498],[76.91737,27.46319],[76.92416,27.46007],[76.92216,27.45837],[76.93538,27.44989],[76.94446,27.44756],[76.94314,27.44314],[76.94786,27.43761],[76.94719,27.43547],[76.95839,27.43065],[76.95907,27.42309],[76.95758,27.42102],[76.96214,27.41851],[76.96294,27.42082],[76.96483,27.42069],[76.96599,27.42251],[76.97476,27.42397],[76.97747,27.41775],[76.97878,27.41783],[76.97965,27.42386],[76.98997,27.42824],[76.98935,27.4269],[76.99199,27.42541],[77.00084,27.4233],[77.00694,27.41818],[77.00927,27.41786],[77.00535,27.40593],[77.01042,27.40319],[77.00926,27.39647],[77.02122,27.39258],[77.0251,27.4033],[77.03391,27.40216],[77.02924,27.39443],[77.02809,27.38915],[77.04435,27.38186],[77.04863,27.38601],[77.06088,27.38131],[77.06548,27.38419],[77.07074,27.39481],[77.08304,27.3901],[77.08518,27.38555],[77.10082,27.37676],[77.10546,27.36435],[77.10878,27.36478],[77.11872,27.35873],[77.13768,27.3527],[77.13889,27.35442],[77.1526,27.35109],[77.15269,27.34896],[77.15501,27.34897],[77.16704,27.35269],[77.17382,27.35741],[77.17704,27.35482],[77.17915,27.35884],[77.1837,27.35869],[77.18488,27.35702],[77.19402,27.36089],[77.19862,27.35934],[77.2017,27.35583],[77.20345,27.35783],[77.20679,27.35582],[77.21075,27.35077],[77.20831,27.34133],[77.19952,27.32953],[77.19062,27.32658],[77.18576,27.32735],[77.18539,27.32529],[77.17292,27.3249],[77.16412,27.31662],[77.14683,27.3205],[77.14274,27.31188],[77.14228,27.30282],[77.13139,27.29475],[77.12986,27.2869],[77.12742,27.28408],[77.12999,27.28235],[77.12305,27.26349],[77.12449,27.26305],[77.1198,27.25694],[77.10961,27.25493],[77.10351,27.24613],[77.09134,27.25122],[77.08284,27.23804],[77.08052,27.23596],[77.07659,27.23666],[77.07677,27.23266],[77.06699,27.23365],[77.04986,27.23835],[77.0477,27.23129],[77.0421,27.22253],[77.05079,27.21605],[77.06004,27.21176],[77.06298,27.21059],[77.06322,27.21276],[77.06904,27.21117],[77.06826,27.2074],[77.0875,27.19956],[77.0895,27.19375],[77.08536,27.1865],[77.0835,27.18699],[77.08279,27.18432],[77.08093,27.18407],[77.08022,27.17983],[77.08208,27.17973],[77.08219,27.17688],[77.10068,27.17143],[77.09736,27.16843],[77.09512,27.16215],[77.07472,27.16648],[77.07059,27.16504],[77.06899,27.16142],[77.06418,27.15837],[77.05457,27.15811],[77.03986,27.16488],[77.02765,27.16503],[77.02793,27.16666],[77.02443,27.1673],[77.02514,27.17668],[76.99258,27.17385],[76.98163,27.17959],[76.96741,27.18273],[76.95993,27.16015],[76.95677,27.15901],[76.96234,27.13711],[76.95988,27.12564],[76.97051,27.12741],[76.9782,27.11952],[76.99253,27.11117],[76.99015,27.10423],[76.98464,27.10644],[76.98113,27.10465],[76.97975,27.10162],[76.98353,27.09833],[76.98286,27.09399],[76.98731,27.08953],[76.98242,27.08424],[76.97141,27.08187],[76.96967,27.07672],[76.97031,27.07113],[76.97439,27.07014],[76.97569,27.06769],[76.9955,27.06092],[76.99379,27.04979],[77.01122,27.04291],[77.01022,27.03389],[77.00328,27.0355],[77.00331,27.03666],[76.98456,27.03794],[76.97987,27.03016],[76.98656,27.02428],[76.98831,27.02082],[76.99526,27.01605],[76.99881,27.01541],[77.00592,27.00441],[77.00805,26.98691],[77.00636,26.97433],[77.01448,26.97804],[77.01757,26.9737],[77.02065,26.94663],[77.02464,26.94145],[77.01288,26.93212],[77.01707,26.92684],[77.02921,26.92416],[77.029,26.92146],[77.03693,26.9159],[77.03764,26.91255],[77.03937,26.91208],[77.04111,26.90843],[77.04793,26.91281],[77.0595,26.91438],[77.05936,26.91113],[77.06066,26.91057],[77.05958,26.90538],[77.06254,26.90142],[77.05861,26.90051],[77.06112,26.89775],[77.05928,26.89165],[77.06019,26.88655],[77.06348,26.88245],[77.06193,26.8807],[77.06699,26.8755],[77.06718,26.87257],[77.07197,26.86958],[77.07539,26.85834],[77.09759,26.86264],[77.10162,26.87303],[77.10351,26.87418],[77.11056,26.86662],[77.11606,26.85738],[77.11621,26.85411],[77.13353,26.84179],[77.13494,26.83649],[77.13718,26.8348],[77.15282,26.83023],[77.15742,26.82333],[77.1599,26.82833],[77.16738,26.83331],[77.17186,26.82919],[77.17131,26.82419],[77.18664,26.82252],[77.20866,26.81146],[77.19614,26.7968],[77.19646,26.79219],[77.19943,26.78746],[77.19872,26.78587],[77.2054,26.77965],[77.22386,26.79177],[77.22684,26.79221],[77.25563,26.82086],[77.26549,26.81444],[77.27292,26.80745],[77.27433,26.80388],[77.27764,26.80419],[77.27696,26.80107],[77.28133,26.79827],[77.28262,26.794],[77.29323,26.78028],[77.29946,26.7802],[77.30624,26.78549],[77.31393,26.78865],[77.31692,26.79502],[77.32168,26.79795],[77.32965,26.80105],[77.33332,26.80033],[77.33314,26.80499],[77.33666,26.80797],[77.34574,26.80202],[77.35098,26.80509],[77.35805,26.79633],[77.35008,26.78746],[77.35253,26.78598],[77.34746,26.77487],[77.33751,26.76654],[77.3403,26.76292],[77.35051,26.75584],[77.34695,26.75049],[77.34725,26.74299],[77.35069,26.73526],[77.34612,26.71169],[77.3622,26.7094],[77.36441,26.7078],[77.37924,26.7081],[77.38358,26.70606],[77.39096,26.71235],[77.4231,26.72188],[77.43756,26.72975],[77.43911,26.73375],[77.44336,26.73801],[77.44956,26.74194],[77.45458,26.74195],[77.45623,26.74974],[77.46226,26.7574],[77.46367,26.75669],[77.46713,26.76299],[77.47037,26.76466],[77.46745,26.76748],[77.46691,26.77373],[77.45438,26.77801],[77.45151,26.77405],[77.44666,26.77392],[77.44184,26.7686],[77.43832,26.77012],[77.43664,26.76764],[77.43269,26.76784],[77.43428,26.76972],[77.43134,26.77108],[77.43363,26.77344],[77.43319,26.77482],[77.43524,26.77524],[77.43384,26.77957],[77.43708,26.78429],[77.4338,26.78737],[77.43229,26.78703],[77.42827,26.79319],[77.42909,26.80157],[77.42516,26.80152],[77.42061,26.81059],[77.40816,26.81671],[77.39787,26.83037],[77.4052,26.83478],[77.4213,26.83983],[77.42968,26.84708],[77.43116,26.85268],[77.42664,26.859],[77.42728,26.86409],[77.43807,26.86312],[77.4454,26.86826],[77.44842,26.87533],[77.45444,26.87183],[77.45896,26.87284],[77.4619,26.87749],[77.46032,26.88584],[77.46833,26.88722],[77.49026,26.90049],[77.49968,26.90207],[77.52349,26.91114],[77.54292,26.91627],[77.54506,26.91531],[77.55342,26.92004],[77.5832,26.92416],[77.58789,26.93106],[77.58851,26.93552],[77.59109,26.93597],[77.59224,26.94028],[77.59733,26.9383],[77.5975,26.93515],[77.60214,26.93327],[77.62295,26.94978],[77.6299,26.95172],[77.63496,26.95574],[77.64958,26.96288],[77.66088,26.97122],[77.66377,26.96723],[77.66381,26.96426],[77.66545,26.96278],[77.6682,26.96377],[77.66857,26.96174],[77.67092,26.96299],[77.67217,26.95997],[77.6736,26.96378],[77.67692,26.96556],[77.67625,26.97322],[77.69949,26.97512],[77.7224,26.98785],[77.72948,26.98296],[77.73907,26.98422],[77.74347,26.98317],[77.7475,26.98959],[77.74572,26.99505],[77.75327,26.99275],[77.75858,26.99696],[77.75196,26.99778],[77.75029,27.00187],[77.758,27.0018],[77.76138,26.99998],[77.76296,27.00685],[77.75986,27.00629],[77.75686,27.01009],[77.75952,27.01798],[77.74954,27.02121],[77.75099,27.02904],[77.74849,27.03088],[77.74111,27.02904],[77.73769,27.02975],[77.73285,27.02353],[77.7293,27.00752],[77.73006,26.99389],[77.71194,26.9971],[77.70526,27.00379],[77.70649,27.0069],[77.70573,27.01446],[77.68962,27.02667],[77.69291,27.03442],[77.69306,27.04085],[77.67977,27.04708],[77.67564,27.04138],[77.67341,27.02887],[77.66558,27.01725],[77.66023,27.02103],[77.6563,27.02098],[77.64221,27.02567],[77.63649,27.01942],[77.63415,27.01245],[77.63003,27.01021],[77.6299,27.01384],[77.62797,27.01507],[77.62853,27.01869],[77.62346,27.02199],[77.61497,27.02353],[77.60182,27.02253],[77.59605,27.02657],[77.59681,27.0327],[77.58209,27.03577],[77.57919,27.03821],[77.56321,27.02937],[77.56714,27.04687],[77.5729,27.04883],[77.57304,27.05275],[77.57531,27.05641],[77.57535,27.05987],[77.57276,27.06451],[77.57722,27.06833],[77.57169,27.07187],[77.56675,27.07319],[77.56583,27.07215],[77.55934,27.07313],[77.55888,27.07196],[77.55687,27.07534],[77.55359,27.07603],[77.54767,27.07154],[77.5447,27.07191],[77.54164,27.06261],[77.53162,27.06457],[77.52555,27.06375],[77.51935,27.06662],[77.52637,27.07824],[77.52636,27.08462],[77.52265,27.08917],[77.51059,27.09042],[77.50762,27.08888],[77.50544,27.0923],[77.51774,27.10246],[77.52039,27.10437],[77.53757,27.09833],[77.53993,27.10623],[77.54329,27.10422],[77.54904,27.10751],[77.55028,27.11128],[77.56248,27.11017],[77.58123,27.11924],[77.58811,27.11652],[77.59266,27.12023],[77.59785,27.118],[77.60446,27.12425],[77.60299,27.12455],[77.60282,27.13276],[77.59897,27.13455],[77.59754,27.1389],[77.59897,27.14345],[77.60032,27.1423],[77.60555,27.14356],[77.61369,27.1506],[77.61415,27.15249],[77.61217,27.15284],[77.61057,27.15581],[77.61005,27.16286],[77.61826,27.16886],[77.61996,27.17355],[77.63434,27.16788],[77.63787,27.16384],[77.64412,27.16555],[77.649,27.17032],[77.6584,27.17011],[77.67301,27.18196],[77.68113,27.1944],[77.67553,27.19807],[77.66564,27.20901],[77.66354,27.20728],[77.65029,27.20807],[77.64671,27.21022],[77.64506,27.21688],[77.64832,27.22353],[77.65255,27.22609],[77.65282,27.23484],[77.64294,27.2349],[77.64554,27.24328],[77.64301,27.24789],[77.63737,27.25098],[77.63318,27.25813],[77.62731,27.2595],[77.62116,27.25519],[77.61643,27.2578],[77.61602,27.26171],[77.61319,27.26582],[77.6171,27.27086],[77.61821,27.26966],[77.62178,27.27505],[77.6147,27.27892],[77.61683,27.28645],[77.6118,27.29078],[77.60629,27.2921],[77.60571,27.29055],[77.59867,27.2972],[77.60052,27.30073],[77.60801,27.30057],[77.61016,27.30614],[77.61449,27.30717],[77.61873,27.31227],[77.6219,27.31305],[77.62231,27.3207],[77.62081,27.3264],[77.62271,27.33619],[77.61636,27.34043],[77.6147,27.33658],[77.61199,27.33623],[77.61254,27.33192],[77.60453,27.33205],[77.6013,27.33429],[77.59965,27.33217],[77.59117,27.33046],[77.58379,27.3213],[77.57878,27.32266],[77.57727,27.32358],[77.57705,27.32794],[77.54794,27.33689],[77.54556,27.34957],[77.53957,27.34795],[77.52952,27.35166],[77.52993,27.35268],[77.52257,27.35725],[77.51969,27.36118],[77.5161,27.36252],[77.51585,27.36793],[77.51326,27.37011],[77.50991,27.36981],[77.50844,27.37182],[77.50953,27.37405],[77.50719,27.37709],[77.48462,27.38353],[77.4727,27.37708],[77.47025,27.38348],[77.43998,27.39033],[77.43806,27.40895],[77.43222,27.41539],[77.4211,27.42202],[77.42584,27.43631],[77.42666,27.44511],[77.42934,27.44455],[77.43264,27.44713],[77.4362,27.44646],[77.43866,27.44905],[77.43662,27.45331],[77.43781,27.45632],[77.43367,27.46],[77.42609,27.46294],[77.42709,27.46417],[77.4257,27.46689],[77.42223,27.46125],[77.41907,27.46996],[77.41576,27.47264],[77.40155,27.4765],[77.39894,27.47945],[77.3988,27.48283],[77.401,27.49727],[77.39898,27.50019],[77.39057,27.5047],[77.39165,27.50814],[77.38739,27.51289],[77.38284,27.51569],[77.37403,27.51186],[77.3679,27.51547],[77.35735,27.51657],[77.33999,27.52662],[77.33869,27.53134],[77.34006,27.53889],[77.34598,27.53874],[77.34916,27.54315],[77.33808,27.54974],[77.33625,27.55767],[77.33681,27.56668],[77.33838,27.56907],[77.33727,27.56976],[77.33959,27.57261],[77.34526,27.57237],[77.34722,27.57473],[77.34724,27.57773],[77.35144,27.58122],[77.35018,27.58344],[77.35822,27.58896],[77.35326,27.59326],[77.34411,27.59708],[77.33453,27.5913],[77.31706,27.60675],[77.31878,27.6108],[77.32721,27.6204],[77.34619,27.6395],[77.35258,27.65124],[77.34478,27.66092],[77.34568,27.67343],[77.34096,27.67676],[77.34455,27.6812],[77.34082,27.68635],[77.3414,27.69508],[77.33846,27.69841],[77.34115,27.70337],[77.33023,27.70906],[77.32929,27.7076],[77.3221,27.70662],[77.31175,27.70869],[77.3097,27.70663],[77.30384,27.71109],[77.30299,27.72591],[77.31938,27.73349],[77.31852,27.73811],[77.31217,27.74194],[77.31414,27.74464],[77.31096,27.74687],[77.30797,27.75281],[77.3117,27.75804],[77.3093,27.75944],[77.30784,27.76643],[77.31045,27.77242],[77.31275,27.77396],[77.3105,27.7772],[77.31048,27.78288],[77.30868,27.78447],[77.31032,27.78831],[77.30883,27.7869],[77.30596,27.78846],[77.30447,27.79007],[77.30581,27.79105],[77.30082,27.7954],[77.29542,27.79674],[77.28579,27.79621],[77.28518,27.79862],[77.2829,27.79937],[77.28369,27.80107],[77.26876,27.81494],[77.26443,27.80464],[77.25237,27.79069],[77.24812,27.79119],[77.24174,27.78354],[77.2367,27.78452],[77.23382,27.78706],[77.23822,27.79227],[77.2326,27.7965],[77.22658,27.79858],[77.22238,27.79588],[77.21065,27.8011],[77.21333,27.80765],[77.20671,27.81377],[77.20338,27.82344],[77.20207,27.82376],[77.19784,27.81586],[77.19135,27.80908],[77.19265,27.80817],[77.19146,27.80683],[77.19857,27.79882],[77.19268,27.79412],[77.19045,27.79434],[77.1833,27.78678],[77.1778,27.7871],[77.17702,27.78547],[77.1691,27.7909],[77.17357,27.79441],[77.17893,27.80438],[77.18242,27.80203],[77.1847,27.8025],[77.18944,27.80902],[77.17985,27.81715],[77.16723,27.81295],[77.15951,27.81634],[77.15655,27.80878],[77.16155,27.80329],[77.16081,27.79258],[77.15855,27.78735],[77.15651,27.78453],[77.14358,27.78559],[77.13522,27.77509],[77.1318,27.77807],[77.13452,27.78604],[77.12285,27.79262],[77.1131,27.78642],[77.10848,27.78548],[77.0808,27.80408],[77.08167,27.80625],[77.07462,27.81356],[77.06386,27.81126],[77.05556,27.81792],[77.0538,27.81694]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"92","area_level":"District","area_name":"Bhilwara","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.82778,25.87517],[74.8199,25.8721],[74.81143,25.8737],[74.80151,25.87292],[74.78896,25.87635],[74.77843,25.88319],[74.76977,25.88617],[74.76962,25.89069],[74.76669,25.89504],[74.75966,25.89621],[74.75508,25.89878],[74.74009,25.91129],[74.73674,25.91232],[74.73218,25.91122],[74.72162,25.91856],[74.71031,25.92107],[74.69487,25.9182],[74.68253,25.91911],[74.65964,25.917],[74.62408,25.90554],[74.61372,25.90519],[74.61562,25.91327],[74.60337,25.91536],[74.59339,25.91611],[74.59231,25.90908],[74.57686,25.91355],[74.56343,25.91432],[74.5595,25.91375],[74.55883,25.91154],[74.54121,25.90286],[74.5273,25.90311],[74.52469,25.91179],[74.50747,25.91915],[74.49084,25.92381],[74.4841,25.92811],[74.47491,25.9263],[74.46492,25.93191],[74.45261,25.93216],[74.43731,25.92606],[74.42456,25.93052],[74.42413,25.93516],[74.41509,25.9368],[74.41194,25.94588],[74.40649,25.95209],[74.39901,25.95512],[74.38858,25.96356],[74.37082,25.95278],[74.35373,25.95073],[74.35065,25.94806],[74.34811,25.94222],[74.34451,25.94014],[74.33935,25.93975],[74.33693,25.94162],[74.329,25.93688],[74.33011,25.93374],[74.32809,25.92884],[74.32993,25.92274],[74.34352,25.92178],[74.34725,25.91958],[74.34828,25.90731],[74.34476,25.90141],[74.33241,25.89753],[74.32787,25.89238],[74.317,25.88684],[74.31143,25.89529],[74.30739,25.89657],[74.30026,25.89004],[74.29603,25.8911],[74.2928,25.88994],[74.28095,25.87765],[74.26912,25.87151],[74.26598,25.87373],[74.26408,25.87156],[74.24934,25.86548],[74.24206,25.85767],[74.23718,25.85495],[74.23479,25.85172],[74.23463,25.84799],[74.22733,25.84312],[74.2132,25.851],[74.21254,25.85555],[74.21173,25.85344],[74.20263,25.85437],[74.19973,25.85191],[74.19439,25.85372],[74.18409,25.84861],[74.17927,25.83907],[74.18027,25.83403],[74.17594,25.8275],[74.17284,25.82641],[74.17135,25.8116],[74.18116,25.8178],[74.19391,25.8204],[74.19521,25.8149],[74.21302,25.80719],[74.20329,25.8017],[74.19835,25.80065],[74.20252,25.78313],[74.20733,25.7747],[74.20289,25.7734],[74.19557,25.76761],[74.18934,25.76837],[74.18711,25.76476],[74.19084,25.76171],[74.1952,25.73957],[74.18412,25.7399],[74.18263,25.73935],[74.18247,25.73699],[74.17415,25.73631],[74.17012,25.73219],[74.16484,25.73035],[74.15645,25.73405],[74.14722,25.73151],[74.14363,25.72691],[74.13204,25.72325],[74.11946,25.72188],[74.11379,25.71973],[74.10786,25.72232],[74.10092,25.71866],[74.09901,25.71469],[74.08693,25.70719],[74.08402,25.70371],[74.08564,25.6971],[74.07925,25.68144],[74.07959,25.67801],[74.08147,25.67584],[74.08518,25.67616],[74.09199,25.67216],[74.09868,25.66336],[74.10706,25.65771],[74.11636,25.65842],[74.11931,25.6553],[74.11986,25.65171],[74.12778,25.64689],[74.11674,25.6374],[74.11374,25.62722],[74.11591,25.61398],[74.11909,25.60649],[74.10924,25.6036],[74.10417,25.59195],[74.09728,25.59107],[74.09037,25.5958],[74.08291,25.5834],[74.06627,25.58194],[74.05493,25.57286],[74.0549,25.56624],[74.06271,25.56192],[74.06631,25.5621],[74.06637,25.56385],[74.07258,25.56039],[74.08449,25.55803],[74.0825,25.54817],[74.07809,25.5385],[74.08205,25.52735],[74.08461,25.5239],[74.09413,25.5206],[74.09364,25.51959],[74.10387,25.51421],[74.10404,25.51282],[74.10098,25.51154],[74.09834,25.51241],[74.09918,25.50913],[74.09581,25.50572],[74.08737,25.50465],[74.08656,25.50074],[74.08334,25.5],[74.09046,25.49513],[74.09222,25.49535],[74.09317,25.49814],[74.09508,25.49739],[74.09309,25.49203],[74.08711,25.49334],[74.08314,25.49185],[74.07671,25.49293],[74.07605,25.49177],[74.07488,25.4938],[74.0678,25.48859],[74.05496,25.49509],[74.05145,25.49459],[74.04596,25.49835],[74.04235,25.49876],[74.04227,25.49526],[74.03923,25.49392],[74.03556,25.48782],[74.04082,25.48629],[74.03693,25.47749],[74.03757,25.47326],[74.04806,25.46878],[74.04385,25.46619],[74.05036,25.46568],[74.05332,25.46266],[74.05009,25.4602],[74.03969,25.46004],[74.03683,25.46365],[74.02753,25.46346],[74.02969,25.45741],[74.02689,25.45828],[74.02327,25.45272],[74.02115,25.45381],[74.0211,25.45257],[74.01482,25.45208],[74.02085,25.45141],[74.01977,25.44626],[74.01767,25.44575],[74.01699,25.43862],[74.01985,25.43647],[74.02618,25.43503],[74.0344,25.43876],[74.03933,25.4393],[74.0574,25.4369],[74.05972,25.43911],[74.06516,25.43303],[74.06515,25.43069],[74.05799,25.42343],[74.05638,25.41769],[74.06114,25.41495],[74.06708,25.41514],[74.07684,25.41168],[74.07508,25.40618],[74.07002,25.40234],[74.06714,25.40506],[74.06083,25.40233],[74.05578,25.40299],[74.04972,25.3957],[74.03965,25.39871],[74.03081,25.38612],[74.02341,25.39273],[74.02069,25.3913],[74.01823,25.39254],[74.01258,25.38864],[74.01483,25.38813],[74.0129,25.38549],[74.01413,25.37786],[74.02121,25.3753],[74.022,25.36834],[74.02584,25.36475],[74.0238,25.35472],[74.02155,25.35186],[74.02209,25.34782],[74.02683,25.34416],[74.02908,25.34012],[74.03174,25.33929],[74.0341,25.33407],[74.03732,25.33059],[74.04832,25.32828],[74.05074,25.32326],[74.06073,25.32357],[74.06789,25.31945],[74.07526,25.32615],[74.08189,25.32058],[74.08307,25.31494],[74.07904,25.31036],[74.0798,25.30833],[74.08278,25.31052],[74.08426,25.30925],[74.07954,25.30659],[74.08126,25.30523],[74.07707,25.30043],[74.06839,25.30196],[74.06238,25.30073],[74.05343,25.30336],[74.04492,25.30079],[74.04546,25.30544],[74.04174,25.30759],[74.04124,25.31001],[74.03191,25.31435],[74.02641,25.31366],[74.0248,25.31662],[74.02297,25.31594],[74.02233,25.30841],[74.02467,25.30855],[74.03135,25.30287],[74.03642,25.30191],[74.0375,25.29887],[74.03599,25.29061],[74.02852,25.28364],[74.0278,25.27163],[74.03096,25.26812],[74.02982,25.26215],[74.03482,25.26159],[74.03882,25.26328],[74.04774,25.24366],[74.04714,25.238],[74.05094,25.23591],[74.06258,25.24336],[74.08026,25.24142],[74.09737,25.23376],[74.09795,25.23584],[74.10167,25.23721],[74.11278,25.24696],[74.124,25.24272],[74.10429,25.2042],[74.1031,25.18952],[74.10038,25.18478],[74.09076,25.18541],[74.08782,25.18216],[74.08468,25.18176],[74.08329,25.17737],[74.07507,25.17974],[74.06304,25.15236],[74.05738,25.14747],[74.06056,25.14152],[74.069,25.14098],[74.07926,25.14835],[74.07963,25.1503],[74.09434,25.15083],[74.09307,25.14203],[74.09768,25.14128],[74.09727,25.13987],[74.09969,25.13898],[74.09912,25.13713],[74.10963,25.13415],[74.1132,25.14044],[74.13221,25.13219],[74.13216,25.12923],[74.14696,25.1291],[74.15011,25.1275],[74.15278,25.12302],[74.16603,25.12622],[74.16959,25.12036],[74.17878,25.11318],[74.1766,25.10651],[74.17774,25.10386],[74.1819,25.10065],[74.18791,25.09969],[74.18903,25.09759],[74.1881,25.09402],[74.18385,25.09506],[74.18086,25.0896],[74.18786,25.08829],[74.18648,25.08637],[74.18894,25.07596],[74.18704,25.07227],[74.18831,25.06812],[74.18769,25.06037],[74.18931,25.05679],[74.19299,25.05447],[74.19723,25.05621],[74.2022,25.0556],[74.2108,25.05154],[74.21109,25.0492],[74.21253,25.04886],[74.22603,25.05012],[74.21857,25.05759],[74.22207,25.06495],[74.22648,25.06822],[74.24491,25.07035],[74.26014,25.06375],[74.26253,25.06789],[74.27396,25.06635],[74.28016,25.08201],[74.27836,25.08365],[74.28346,25.09202],[74.28174,25.09484],[74.28391,25.10071],[74.29591,25.09777],[74.30286,25.10583],[74.30685,25.10619],[74.31245,25.11572],[74.32475,25.1241],[74.3325,25.12144],[74.34537,25.12052],[74.34746,25.14062],[74.35875,25.15675],[74.36536,25.15955],[74.37848,25.15357],[74.38572,25.16704],[74.38747,25.18091],[74.3725,25.18968],[74.3737,25.19264],[74.38622,25.19352],[74.39145,25.19973],[74.39794,25.20437],[74.40221,25.20073],[74.40061,25.1914],[74.39773,25.18836],[74.40806,25.18472],[74.40971,25.1869],[74.40647,25.18855],[74.40836,25.19619],[74.41568,25.20387],[74.419,25.20203],[74.41901,25.19744],[74.42328,25.19485],[74.42933,25.18141],[74.43469,25.17788],[74.44071,25.17959],[74.44906,25.17763],[74.44916,25.17013],[74.4572,25.16865],[74.46375,25.16524],[74.47719,25.17854],[74.4806,25.18632],[74.49628,25.20224],[74.50249,25.20332],[74.50531,25.20181],[74.51133,25.20196],[74.50798,25.18576],[74.50942,25.18271],[74.54294,25.18182],[74.5475,25.17847],[74.55449,25.17731],[74.55357,25.17366],[74.55126,25.17296],[74.54922,25.16943],[74.54381,25.16773],[74.54431,25.16469],[74.54694,25.16622],[74.54626,25.16501],[74.54811,25.16425],[74.54597,25.16034],[74.54998,25.1561],[74.54433,25.15066],[74.53851,25.14895],[74.53703,25.14696],[74.54453,25.14388],[74.54657,25.14049],[74.56405,25.1319],[74.56679,25.13296],[74.57125,25.14181],[74.57823,25.14874],[74.59637,25.14787],[74.6145,25.1408],[74.62534,25.15142],[74.62733,25.15577],[74.63298,25.16078],[74.63525,25.15957],[74.64181,25.16448],[74.64933,25.1757],[74.65836,25.18199],[74.67103,25.17952],[74.67357,25.18098],[74.68231,25.17595],[74.68507,25.18093],[74.69263,25.17721],[74.69595,25.1802],[74.69782,25.18702],[74.70449,25.1995],[74.70717,25.2022],[74.71289,25.2043],[74.72358,25.20551],[74.72923,25.1856],[74.72164,25.18305],[74.71565,25.17415],[74.72544,25.17088],[74.73393,25.17719],[74.74136,25.1752],[74.74888,25.18277],[74.74891,25.19648],[74.74705,25.19942],[74.74915,25.21],[74.75426,25.21578],[74.76195,25.20968],[74.77777,25.20527],[74.77734,25.20409],[74.78027,25.20269],[74.77922,25.20084],[74.78235,25.19917],[74.78132,25.19541],[74.78422,25.19241],[74.78677,25.19209],[74.78735,25.18571],[74.78906,25.18543],[74.78909,25.181],[74.78719,25.18027],[74.78498,25.17561],[74.79061,25.1714],[74.79962,25.16873],[74.79598,25.15247],[74.80722,25.14874],[74.82517,25.15035],[74.8383,25.14441],[74.84616,25.15038],[74.85633,25.16896],[74.84657,25.17101],[74.84514,25.17303],[74.84408,25.17912],[74.84699,25.18794],[74.85187,25.18714],[74.8576,25.18323],[74.859,25.18192],[74.8567,25.17987],[74.85697,25.17782],[74.86002,25.17672],[74.86198,25.17818],[74.86255,25.17368],[74.87733,25.18062],[74.88581,25.18211],[74.89149,25.18633],[74.91023,25.17673],[74.90866,25.17134],[74.90518,25.16849],[74.90172,25.15308],[74.89244,25.14247],[74.90189,25.14241],[74.90589,25.13982],[74.91362,25.14393],[74.91854,25.14166],[74.92217,25.13866],[74.93017,25.12385],[74.93663,25.14712],[74.93952,25.15083],[74.94444,25.14142],[74.95031,25.14513],[74.96071,25.13902],[74.96751,25.11166],[74.96996,25.10627],[74.97339,25.10418],[74.97735,25.10741],[74.98212,25.10828],[74.9838,25.11094],[74.99655,25.11593],[75.00209,25.12319],[75.00389,25.12903],[75.01283,25.12921],[75.02032,25.13703],[75.0273,25.13711],[75.02676,25.13054],[75.03048,25.1231],[75.03252,25.12379],[75.03988,25.12022],[75.06301,25.11481],[75.08016,25.12506],[75.09084,25.12227],[75.11299,25.12726],[75.12059,25.1261],[75.12461,25.12364],[75.12868,25.11812],[75.12568,25.11232],[75.1219,25.10888],[75.12545,25.10401],[75.1508,25.10528],[75.16857,25.0985],[75.17245,25.09955],[75.17809,25.09745],[75.18412,25.09192],[75.20447,25.08984],[75.1978,25.08202],[75.19454,25.06552],[75.19046,25.05491],[75.19007,25.05155],[75.19259,25.04692],[75.19204,25.03782],[75.19333,25.04364],[75.19685,25.04449],[75.19943,25.04298],[75.1988,25.03771],[75.20537,25.03947],[75.21784,25.03488],[75.22183,25.03678],[75.22512,25.0341],[75.23012,25.03705],[75.24029,25.03514],[75.25,25.0358],[75.2539,25.03949],[75.26838,25.04244],[75.27385,25.03951],[75.28319,25.03806],[75.29397,25.03906],[75.3011,25.04174],[75.32514,25.03917],[75.33169,25.04157],[75.34718,25.03214],[75.34639,25.03073],[75.34272,25.03072],[75.35021,25.0224],[75.35044,25.01518],[75.35923,25.01405],[75.36901,25.01664],[75.38812,25.01846],[75.39175,25.02397],[75.39327,25.02414],[75.3984,25.02128],[75.40784,25.02015],[75.42095,25.02121],[75.42959,25.02007],[75.44422,25.02391],[75.44634,25.02287],[75.44984,25.03336],[75.44874,25.04219],[75.45169,25.04863],[75.44264,25.04865],[75.4445,25.05957],[75.43731,25.06022],[75.43623,25.07248],[75.42033,25.0826],[75.41718,25.09474],[75.41362,25.09525],[75.40335,25.10279],[75.40879,25.1095],[75.41502,25.12612],[75.42456,25.12927],[75.43918,25.1387],[75.44236,25.14186],[75.4447,25.1508],[75.44691,25.15301],[75.44682,25.1567],[75.44423,25.16154],[75.45072,25.17206],[75.44998,25.18319],[75.4527,25.20068],[75.45212,25.20807],[75.44495,25.22495],[75.45117,25.24133],[75.44439,25.24786],[75.44311,25.25383],[75.44553,25.25832],[75.44459,25.26449],[75.43916,25.27328],[75.43527,25.27657],[75.41979,25.2835],[75.41002,25.28298],[75.38757,25.30237],[75.37162,25.31031],[75.36825,25.31622],[75.36491,25.31822],[75.34156,25.32313],[75.33481,25.32926],[75.33292,25.33976],[75.325,25.35226],[75.32063,25.36362],[75.31419,25.36642],[75.30947,25.37281],[75.29625,25.38241],[75.29031,25.38978],[75.28494,25.39274],[75.28384,25.39488],[75.28519,25.40359],[75.27952,25.40103],[75.27724,25.40161],[75.27459,25.3982],[75.26737,25.39931],[75.26298,25.40389],[75.25999,25.41706],[75.26072,25.42158],[75.26786,25.42769],[75.2843,25.43541],[75.3021,25.42076],[75.30412,25.42458],[75.30842,25.42696],[75.30861,25.4335],[75.31757,25.43997],[75.32091,25.44747],[75.32014,25.45212],[75.32319,25.45632],[75.34194,25.46468],[75.35218,25.47577],[75.35951,25.47857],[75.36154,25.48143],[75.36404,25.49148],[75.36163,25.49687],[75.36437,25.50102],[75.36803,25.50253],[75.36808,25.50454],[75.36614,25.50554],[75.3655,25.50933],[75.3605,25.51643],[75.36253,25.51897],[75.3627,25.5262],[75.35916,25.53034],[75.35753,25.53788],[75.3724,25.55245],[75.38079,25.55768],[75.38356,25.57281],[75.39718,25.57573],[75.39995,25.58108],[75.40993,25.58993],[75.42303,25.61444],[75.43038,25.6234],[75.42914,25.63575],[75.43463,25.64545],[75.43555,25.65536],[75.42189,25.68861],[75.45231,25.7087],[75.4596,25.71554],[75.46027,25.72239],[75.4382,25.74703],[75.4351,25.74799],[75.43277,25.74452],[75.42707,25.74599],[75.4226,25.75183],[75.4215,25.75863],[75.41549,25.76667],[75.40169,25.77241],[75.40286,25.77366],[75.40127,25.77525],[75.39756,25.77525],[75.38896,25.76542],[75.39204,25.76403],[75.39112,25.75979],[75.38934,25.75611],[75.38781,25.75632],[75.38554,25.75006],[75.37947,25.75162],[75.3803,25.75383],[75.37065,25.75842],[75.3714,25.76013],[75.36952,25.76051],[75.36105,25.76096],[75.35985,25.75938],[75.3544,25.75824],[75.33858,25.76274],[75.33148,25.75942],[75.31771,25.7666],[75.31109,25.76278],[75.30504,25.7578],[75.28913,25.73598],[75.27545,25.72392],[75.27284,25.70986],[75.27491,25.70582],[75.27471,25.70053],[75.26253,25.70502],[75.25981,25.70363],[75.25066,25.68531],[75.24332,25.68463],[75.23004,25.68625],[75.21071,25.69168],[75.19753,25.70007],[75.19887,25.70391],[75.19447,25.70487],[75.19183,25.70934],[75.17471,25.71267],[75.17571,25.71358],[75.16655,25.71755],[75.16582,25.72042],[75.15903,25.72469],[75.1449,25.72191],[75.14392,25.71509],[75.13793,25.70458],[75.11581,25.70755],[75.1077,25.69728],[75.09985,25.70277],[75.08552,25.70414],[75.0833,25.70963],[75.0851,25.71612],[75.08956,25.7229],[75.06686,25.73743],[75.06561,25.74216],[75.07151,25.75472],[75.06711,25.75606],[75.06633,25.7577],[75.07718,25.7723],[75.07568,25.78243],[75.06471,25.78029],[75.04624,25.78332],[75.03715,25.78641],[75.02733,25.79311],[75.02195,25.80074],[75.02062,25.79977],[75.01265,25.80785],[75.00936,25.80908],[75.02094,25.82033],[75.0273,25.8241],[75.03007,25.82965],[75.0374,25.83163],[75.03642,25.83667],[75.04146,25.84668],[75.02602,25.85303],[75.01761,25.85925],[74.99514,25.84288],[74.98645,25.84799],[74.98718,25.85412],[74.98292,25.85692],[74.98305,25.86329],[74.96249,25.86397],[74.94191,25.86239],[74.93889,25.86418],[74.93569,25.87021],[74.92522,25.87787],[74.91658,25.87809],[74.90262,25.88159],[74.8941,25.87641],[74.88974,25.87126],[74.88697,25.87448],[74.87697,25.87439],[74.87063,25.87706],[74.86154,25.87752],[74.8548,25.87993],[74.8371,25.87543],[74.82778,25.87517]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"93","area_level":"District","area_name":"Bikaner","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.04088,29.00955],[74.02779,29.0039],[74.03046,29.00002],[74.02987,28.99875],[74.02141,28.98761],[74.0195,28.98706],[74.02087,28.97461],[74.02048,28.971],[74.01876,28.96967],[74.02067,28.96503],[74.01856,28.96352],[74.01842,28.95582],[74.02004,28.95666],[74.0229,28.95477],[74.02397,28.94843],[74.02196,28.94535],[74.02291,28.94239],[74.0248,28.94164],[74.02373,28.94116],[74.02645,28.93352],[74.01526,28.93156],[74.01207,28.92773],[74.01302,28.92643],[74.01171,28.92431],[74.00454,28.92089],[73.99216,28.91064],[73.97141,28.90162],[73.96212,28.92708],[73.96348,28.92884],[73.96307,28.93472],[73.96162,28.93854],[73.95904,28.93931],[73.95996,28.94217],[73.95781,28.94425],[73.96067,28.94649],[73.96209,28.95415],[73.96632,28.95934],[73.96809,28.97538],[73.93799,28.96604],[73.9353,28.96389],[73.9268,28.96452],[73.92571,28.96193],[73.90864,28.95957],[73.90794,28.95427],[73.87838,28.9393],[73.8736,28.94076],[73.86299,28.93726],[73.84603,28.93666],[73.8449,28.94524],[73.85222,28.94988],[73.84974,28.95711],[73.84282,28.96795],[73.83846,28.96671],[73.83735,28.96864],[73.83109,28.96513],[73.82866,28.96936],[73.82615,28.97848],[73.82675,28.98229],[73.82456,28.98612],[73.8193,28.99034],[73.81333,28.99128],[73.80885,28.99008],[73.80643,28.99711],[73.79874,29.0039],[73.79588,29.01624],[73.80141,29.02099],[73.80049,29.03615],[73.79416,29.03917],[73.78368,29.03666],[73.78243,29.04154],[73.78354,29.04848],[73.77487,29.04776],[73.77076,29.04951],[73.75984,29.03122],[73.75217,29.02554],[73.75177,29.01837],[73.74768,29.01079],[73.74033,29.00355],[73.73695,29.01818],[73.73486,29.0174],[73.72712,29.02437],[73.71302,29.02146],[73.71104,29.02367],[73.70334,29.02318],[73.69845,29.02576],[73.69815,29.03213],[73.69957,29.0341],[73.69085,29.03599],[73.68018,29.01847],[73.67453,29.01577],[73.6668,29.01506],[73.66343,29.01797],[73.65438,29.01676],[73.65107,29.02217],[73.64588,29.02153],[73.63939,29.02772],[73.63327,29.02795],[73.63323,29.03019],[73.62752,29.03672],[73.61763,29.03418],[73.59923,29.02471],[73.60077,29.02247],[73.5959,29.0167],[73.58985,29.01335],[73.58997,29.01183],[73.5841,29.00618],[73.57437,29.00141],[73.56211,28.99845],[73.55843,29.00292],[73.53753,29.0],[73.51952,28.9934],[73.50613,29.00332],[73.50608,29.00529],[73.48178,29.00543],[73.48048,29.0],[73.46743,28.98205],[73.46222,28.98607],[73.46498,28.99337],[73.46491,29.00139],[73.44675,29.00159],[73.44675,29.00373],[73.43923,29.00368],[73.43915,29.00592],[73.39987,29.00618],[73.4003,29.01255],[73.36381,29.01269],[73.36363,29.00189],[73.37408,29.00176],[73.37412,29.00073],[73.32531,29.00148],[73.32526,28.98769],[73.31235,28.98778],[73.31224,28.97418],[73.30967,28.97421],[73.30965,28.96961],[73.28089,28.96922],[73.2794,28.96737],[73.28129,28.96744],[73.28108,28.93567],[73.24954,28.93566],[73.24275,28.93223],[73.24293,28.92661],[73.23557,28.92659],[73.2348,28.91711],[73.23169,28.91958],[73.22261,28.91852],[73.21735,28.92081],[73.20871,28.92166],[73.2092,28.89444],[73.21305,28.89395],[73.21855,28.88613],[73.22106,28.8856],[73.22075,28.87842],[73.20995,28.87518],[73.20596,28.87776],[73.20162,28.87444],[73.19861,28.87447],[73.22103,28.85137],[73.21525,28.84836],[73.21189,28.85143],[73.19989,28.85157],[73.1817,28.83466],[73.16705,28.82506],[73.16428,28.82599],[73.15511,28.8167],[73.15677,28.81316],[73.15084,28.8044],[73.15553,28.79415],[73.14733,28.78417],[73.13521,28.781],[73.12533,28.77371],[73.10589,28.76354],[73.09943,28.76492],[73.08044,28.76186],[73.06657,28.75492],[73.05201,28.75017],[73.04817,28.75101],[73.04816,28.74763],[73.03271,28.74763],[73.03269,28.74083],[73.03783,28.74082],[73.03778,28.73174],[73.01463,28.73176],[73.01462,28.72949],[73.00947,28.72949],[73.00945,28.72495],[72.85761,28.7249],[72.85764,28.73851],[72.89368,28.73854],[72.89373,28.75424],[72.86789,28.75435],[72.86792,28.75877],[72.84744,28.75876],[72.84742,28.76331],[72.83439,28.76332],[72.83438,28.76788],[72.82686,28.7678],[72.82676,28.77458],[72.80649,28.7747],[72.80643,28.77686],[72.79372,28.77695],[72.79385,28.78361],[72.75033,28.78381],[72.7504,28.79722],[72.74517,28.79758],[72.75,28.80905],[72.7556,28.8154],[72.75046,28.82068],[72.75041,28.8177],[72.71339,28.81741],[72.71332,28.82624],[72.7081,28.82644],[72.70818,28.83489],[72.68705,28.83534],[72.68665,28.84774],[72.67757,28.86444],[72.67208,28.89379],[72.66196,28.8938],[72.66187,28.91019],[72.4794,28.81208],[72.40377,28.783],[72.3546,28.73353],[72.29924,28.66975],[72.28072,28.60891],[72.23418,28.47873],[72.20613,28.39427],[72.13224,28.3131],[72.00429,28.21866],[71.92736,28.12174],[71.89834,27.96121],[71.89176,27.95968],[71.88311,27.93838],[71.8876,27.92857],[71.88485,27.88753],[71.88265,27.88272],[71.88285,27.87685],[71.88832,27.87316],[71.89163,27.86874],[71.89761,27.87234],[71.89685,27.87623],[71.89979,27.88243],[71.90958,27.87902],[71.91255,27.88095],[71.91723,27.87381],[71.92062,27.87133],[71.92225,27.86705],[71.92432,27.8668],[71.92834,27.87232],[71.9332,27.87221],[71.93884,27.87965],[71.93991,27.8888],[71.93814,27.89048],[71.93299,27.88946],[71.93119,27.89141],[71.93869,27.89622],[71.94796,27.91441],[71.96359,27.93235],[71.98422,27.9291],[72.00282,27.93653],[72.01778,27.94585],[72.02885,27.95065],[72.03522,27.94513],[72.06726,27.92977],[72.07875,27.91973],[72.08266,27.9096],[72.0885,27.90375],[72.14277,27.87497],[72.14928,27.8603],[72.13806,27.84642],[72.14912,27.81552],[72.15096,27.79115],[72.15018,27.78031],[72.13398,27.7642],[72.11609,27.75155],[72.10135,27.75234],[72.10069,27.75],[72.09834,27.74931],[72.09194,27.74072],[72.09492,27.73571],[72.0972,27.73495],[72.09056,27.72169],[72.09287,27.72056],[72.09514,27.71505],[72.10529,27.70826],[72.1141,27.71369],[72.1411,27.71381],[72.18616,27.69717],[72.21516,27.67836],[72.22069,27.6603],[72.24525,27.6747],[72.27195,27.70284],[72.29434,27.70981],[72.32887,27.69566],[72.33786,27.69342],[72.33541,27.68265],[72.32466,27.65865],[72.31727,27.63436],[72.30497,27.61701],[72.29762,27.59985],[72.2766,27.56851],[72.2565,27.56101],[72.28043,27.55347],[72.29094,27.54749],[72.28803,27.53102],[72.28281,27.52919],[72.28441,27.52543],[72.27605,27.51732],[72.24689,27.51271],[72.24651,27.49879],[72.25059,27.49279],[72.24223,27.47593],[72.25211,27.46247],[72.26478,27.45807],[72.2887,27.47705],[72.2933,27.49075],[72.29813,27.49382],[72.30038,27.5],[72.32395,27.51715],[72.34157,27.5082],[72.35688,27.49264],[72.3593,27.49388],[72.36303,27.52204],[72.36558,27.53063],[72.38174,27.5469],[72.39637,27.55383],[72.40329,27.54681],[72.41319,27.55457],[72.41374,27.55666],[72.43497,27.56596],[72.43853,27.56904],[72.44647,27.589],[72.46056,27.5913],[72.46301,27.59417],[72.47161,27.58967],[72.48289,27.59042],[72.49087,27.58904],[72.4954,27.59028],[72.49708,27.58645],[72.50227,27.58993],[72.50907,27.59069],[72.54185,27.61641],[72.55411,27.62028],[72.56353,27.60887],[72.57727,27.60898],[72.5866,27.61079],[72.59142,27.60321],[72.5989,27.60798],[72.60434,27.60139],[72.61742,27.59298],[72.61286,27.58671],[72.62061,27.5732],[72.63827,27.56319],[72.64703,27.54344],[72.649,27.54446],[72.6557,27.53641],[72.66668,27.54624],[72.66716,27.56532],[72.66891,27.57387],[72.69028,27.60535],[72.70378,27.59419],[72.70673,27.58785],[72.71195,27.5897],[72.72164,27.56925],[72.72361,27.55717],[72.72681,27.55039],[72.74686,27.53751],[72.76155,27.52524],[72.77325,27.5359],[72.77414,27.54028],[72.77405,27.54809],[72.76685,27.56499],[72.77709,27.56748],[72.78075,27.57007],[72.78198,27.56727],[72.7882,27.57094],[72.79956,27.57146],[72.823,27.58096],[72.82207,27.58245],[72.82638,27.58503],[72.83925,27.57185],[72.84302,27.55679],[72.84056,27.55288],[72.84131,27.54088],[72.83656,27.53174],[72.82603,27.52154],[72.82365,27.52027],[72.8208,27.52337],[72.81708,27.52028],[72.81573,27.52132],[72.81331,27.51798],[72.82035,27.5074],[72.81795,27.5],[72.82164,27.49812],[72.81947,27.49615],[72.8194,27.49092],[72.81589,27.48882],[72.81771,27.47798],[72.82589,27.46834],[72.82805,27.47006],[72.84805,27.47438],[72.84962,27.47338],[72.85678,27.47949],[72.87049,27.47834],[72.87361,27.47655],[72.87544,27.47353],[72.86507,27.46266],[72.85675,27.44928],[72.85214,27.44553],[72.85329,27.44402],[72.8598,27.44592],[72.86197,27.44435],[72.87161,27.4446],[72.87582,27.44767],[72.88794,27.4509],[72.89071,27.43369],[72.88893,27.42549],[72.89523,27.41505],[72.91383,27.43386],[72.93199,27.44859],[72.93702,27.44439],[72.94117,27.4309],[72.94284,27.41903],[72.94124,27.40821],[72.94225,27.40319],[72.95103,27.40233],[72.95654,27.39507],[72.96188,27.39335],[72.96395,27.38869],[72.96664,27.38665],[72.97131,27.38947],[72.97355,27.38754],[72.97377,27.38484],[72.97953,27.38182],[72.9892,27.38623],[73.0,27.39654],[73.00608,27.39945],[73.01494,27.40973],[73.03375,27.42156],[73.03832,27.42073],[73.04747,27.42412],[73.0534,27.42345],[73.05686,27.42606],[73.0605,27.42414],[73.06367,27.4263],[73.06674,27.42516],[73.07202,27.42945],[73.08161,27.42838],[73.08359,27.42556],[73.08752,27.42848],[73.08895,27.42726],[73.09134,27.42814],[73.1007,27.4237],[73.10974,27.41834],[73.11404,27.40792],[73.12509,27.4013],[73.12454,27.39767],[73.12585,27.39545],[73.12381,27.39321],[73.1253,27.38847],[73.12127,27.38343],[73.12675,27.37631],[73.12484,27.37294],[73.12568,27.36799],[73.12935,27.36692],[73.12998,27.3651],[73.12564,27.35855],[73.12959,27.35726],[73.12594,27.35361],[73.13045,27.3251],[73.13254,27.32024],[73.13055,27.31664],[73.13405,27.30953],[73.15393,27.29567],[73.1602,27.29355],[73.15974,27.29138],[73.16409,27.2906],[73.16459,27.28852],[73.18177,27.28731],[73.18378,27.30009],[73.18293,27.30468],[73.1877,27.30946],[73.18715,27.31474],[73.2196,27.33529],[73.22762,27.33503],[73.23168,27.32402],[73.23377,27.32464],[73.23603,27.32079],[73.24119,27.32174],[73.24132,27.31822],[73.24646,27.3117],[73.23892,27.30518],[73.23993,27.30143],[73.24324,27.30018],[73.23923,27.29564],[73.24064,27.29437],[73.23963,27.2928],[73.24643,27.28804],[73.24616,27.28549],[73.24781,27.28664],[73.24961,27.28337],[73.25163,27.28386],[73.26105,27.26872],[73.25711,27.26205],[73.25801,27.25999],[73.25979,27.25989],[73.26158,27.25516],[73.26442,27.25529],[73.26815,27.25],[73.27342,27.24646],[73.27645,27.24137],[73.2902,27.2325],[73.30673,27.20726],[73.30897,27.20011],[73.31102,27.20008],[73.31449,27.1956],[73.31703,27.19792],[73.31939,27.19533],[73.3253,27.19529],[73.3284,27.19127],[73.32562,27.18795],[73.32711,27.18307],[73.33122,27.18549],[73.33102,27.18797],[73.33699,27.19067],[73.33601,27.19241],[73.33936,27.19695],[73.3455,27.20073],[73.34381,27.20387],[73.35209,27.20996],[73.34911,27.21409],[73.34604,27.21415],[73.34012,27.21882],[73.33552,27.21952],[73.3378,27.22245],[73.33857,27.23997],[73.3421,27.24266],[73.34521,27.24895],[73.36465,27.26623],[73.37619,27.27329],[73.37679,27.26805],[73.37907,27.26902],[73.38017,27.27116],[73.38635,27.27373],[73.39571,27.28337],[73.40986,27.29092],[73.41778,27.29763],[73.43697,27.30704],[73.4388,27.31275],[73.4514,27.3132],[73.47601,27.32048],[73.49533,27.3282],[73.48821,27.34013],[73.48587,27.35016],[73.48669,27.35754],[73.5,27.36458],[73.52142,27.37161],[73.51719,27.37855],[73.5167,27.38212],[73.51284,27.386],[73.51048,27.38738],[73.50707,27.38516],[73.50338,27.38559],[73.50172,27.39103],[73.50025,27.39092],[73.49954,27.39599],[73.50172,27.40625],[73.49932,27.41175],[73.50338,27.4183],[73.50238,27.43373],[73.52202,27.44541],[73.51658,27.45126],[73.52144,27.45313],[73.51723,27.4573],[73.52228,27.46137],[73.51923,27.46792],[73.52487,27.47148],[73.52467,27.4774],[73.52835,27.48409],[73.5395,27.49122],[73.54317,27.49611],[73.54682,27.49657],[73.55622,27.49188],[73.56157,27.49304],[73.56683,27.49012],[73.57098,27.48428],[73.57595,27.48763],[73.57851,27.48169],[73.58963,27.48681],[73.59096,27.48666],[73.59291,27.48207],[73.59785,27.48573],[73.61102,27.48876],[73.61324,27.49119],[73.61058,27.49518],[73.61363,27.4977],[73.61529,27.50657],[73.62889,27.51748],[73.61586,27.53782],[73.62007,27.54116],[73.62115,27.53989],[73.62597,27.54049],[73.6324,27.54345],[73.64605,27.55691],[73.65923,27.56562],[73.66492,27.56561],[73.67131,27.55667],[73.67541,27.55354],[73.68047,27.55367],[73.68621,27.54692],[73.68871,27.54641],[73.68911,27.54328],[73.69387,27.53881],[73.69756,27.53115],[73.70043,27.52872],[73.70453,27.51946],[73.71074,27.52037],[73.71523,27.51919],[73.72409,27.52267],[73.72699,27.51996],[73.73394,27.52188],[73.74576,27.52789],[73.74366,27.53208],[73.74843,27.53423],[73.75849,27.53507],[73.76624,27.52876],[73.77207,27.52799],[73.77926,27.51353],[73.78905,27.50435],[73.7914,27.49984],[73.79673,27.49768],[73.80021,27.49818],[73.80163,27.50014],[73.80959,27.49802],[73.81338,27.50024],[73.81867,27.50045],[73.83016,27.50617],[73.83417,27.51098],[73.84358,27.51696],[73.84324,27.52111],[73.85285,27.5301],[73.85709,27.53151],[73.86138,27.53596],[73.8775,27.53875],[73.87527,27.54277],[73.88491,27.54837],[73.88525,27.55919],[73.88112,27.56419],[73.88008,27.57063],[73.87517,27.5798],[73.87705,27.58161],[73.87817,27.5882],[73.88207,27.59285],[73.89599,27.60212],[73.89382,27.60498],[73.88875,27.60608],[73.88802,27.60749],[73.88525,27.62182],[73.87991,27.6274],[73.87374,27.64733],[73.87162,27.64666],[73.86884,27.6495],[73.86473,27.65065],[73.85773,27.65983],[73.87187,27.6629],[73.87146,27.67056],[73.86637,27.68672],[73.87078,27.69139],[73.8759,27.69326],[73.87724,27.69708],[73.87742,27.70456],[73.87409,27.71347],[73.875,27.71513],[73.86988,27.71888],[73.86913,27.72605],[73.86622,27.7284],[73.86381,27.73397],[73.86423,27.73847],[73.86773,27.74104],[73.86956,27.75126],[73.86681,27.7611],[73.86743,27.77363],[73.86953,27.77526],[73.86796,27.77908],[73.87584,27.78265],[73.87967,27.78695],[73.88748,27.79105],[73.89203,27.78697],[73.8945,27.78888],[73.90366,27.78974],[73.9089,27.7872],[73.91303,27.78846],[73.91727,27.78396],[73.92288,27.78241],[73.93194,27.78479],[73.95278,27.79408],[73.95847,27.7996],[73.9579,27.8008],[73.96324,27.80241],[73.98187,27.80253],[73.99084,27.80713],[73.99287,27.81063],[74.00306,27.78867],[74.01292,27.78435],[74.02566,27.77445],[74.0308,27.76816],[74.02844,27.76722],[74.02712,27.76938],[74.01918,27.76892],[74.01301,27.77083],[74.01238,27.77243],[74.00766,27.77249],[74.00599,27.7749],[74.00453,27.77397],[73.99927,27.77595],[73.9914,27.7763],[73.99262,27.76612],[73.99075,27.75426],[73.99934,27.75617],[74.0123,27.76272],[74.01907,27.7635],[74.02386,27.76183],[73.99807,27.73363],[74.01953,27.72186],[74.03093,27.7293],[74.03601,27.73017],[74.04034,27.71991],[74.06678,27.73093],[74.06683,27.74056],[74.07277,27.74404],[74.0847,27.76368],[74.08812,27.76521],[74.0875,27.77276],[74.09159,27.77421],[74.09241,27.77309],[74.09787,27.78206],[74.11024,27.78835],[74.11025,27.78984],[74.11681,27.79358],[74.1159,27.79477],[74.11915,27.79591],[74.11964,27.7977],[74.12948,27.79658],[74.13734,27.79866],[74.14081,27.80147],[74.14579,27.80155],[74.15311,27.7989],[74.15569,27.79999],[74.15676,27.79474],[74.16355,27.79581],[74.1762,27.79487],[74.17658,27.79626],[74.18603,27.79951],[74.18541,27.80204],[74.19292,27.80499],[74.19403,27.80746],[74.20328,27.81065],[74.20906,27.81011],[74.2082,27.81496],[74.22045,27.81262],[74.2195,27.81588],[74.22714,27.81727],[74.22709,27.82194],[74.22966,27.82376],[74.22994,27.8338],[74.23281,27.83515],[74.23054,27.84427],[74.22921,27.84429],[74.22496,27.86925],[74.21888,27.87631],[74.22077,27.87691],[74.21923,27.88403],[74.2219,27.88541],[74.22044,27.88957],[74.22411,27.89099],[74.22254,27.8982],[74.22465,27.89939],[74.22295,27.90038],[74.22274,27.90309],[74.22915,27.90391],[74.23051,27.90582],[74.2357,27.90562],[74.23601,27.91081],[74.2391,27.91635],[74.25285,27.93433],[74.24706,27.93609],[74.24391,27.93958],[74.2451,27.94304],[74.25135,27.94475],[74.24597,27.94676],[74.24595,27.95381],[74.24438,27.95532],[74.23924,27.95548],[74.23881,27.95803],[74.23369,27.96398],[74.2456,27.97056],[74.24141,27.98261],[74.24351,27.98466],[74.24145,27.99283],[74.239,27.99594],[74.24036,27.99671],[74.2397,27.99902],[74.24585,28.00281],[74.24449,28.00402],[74.26123,28.01878],[74.26558,28.01912],[74.27578,28.02436],[74.27533,28.02817],[74.28351,28.03305],[74.28918,28.0432],[74.29667,28.04411],[74.29691,28.05066],[74.2933,28.06387],[74.28922,28.07014],[74.28814,28.08226],[74.28086,28.08681],[74.27872,28.09177],[74.27994,28.09332],[74.28562,28.09389],[74.28601,28.09974],[74.29241,28.10884],[74.28987,28.11272],[74.29629,28.11676],[74.29786,28.11971],[74.2964,28.12647],[74.29133,28.13304],[74.29779,28.13717],[74.29526,28.14507],[74.34152,28.16539],[74.34031,28.16774],[74.34134,28.16933],[74.34981,28.17625],[74.34573,28.18841],[74.35173,28.19009],[74.35479,28.19328],[74.35387,28.196],[74.35892,28.20468],[74.3579,28.21196],[74.3559,28.21643],[74.3521,28.21566],[74.34804,28.22872],[74.34509,28.22877],[74.34147,28.23578],[74.34003,28.23514],[74.33515,28.24196],[74.33354,28.24077],[74.32317,28.24933],[74.3222,28.25419],[74.3153,28.25141],[74.30747,28.25188],[74.30414,28.25389],[74.28988,28.2546],[74.28081,28.25919],[74.27664,28.25849],[74.26468,28.25197],[74.26109,28.2508],[74.25873,28.25179],[74.25043,28.2464],[74.24492,28.24937],[74.24275,28.248],[74.23995,28.24874],[74.23887,28.25212],[74.23502,28.25085],[74.23377,28.25262],[74.23446,28.25578],[74.23242,28.25808],[74.22809,28.25802],[74.22509,28.26512],[74.22034,28.26521],[74.21919,28.26792],[74.22049,28.26916],[74.21464,28.27209],[74.21379,28.27684],[74.21122,28.28038],[74.20945,28.28058],[74.21021,28.28247],[74.19918,28.27913],[74.19548,28.28575],[74.19351,28.28626],[74.19957,28.29546],[74.2071,28.2998],[74.20609,28.30226],[74.21032,28.30185],[74.21112,28.30315],[74.21063,28.30515],[74.20709,28.30629],[74.20481,28.31256],[74.19841,28.31995],[74.19707,28.32385],[74.19749,28.33179],[74.19005,28.32867],[74.19024,28.32748],[74.1687,28.32456],[74.14983,28.31898],[74.1488,28.32047],[74.15267,28.32328],[74.1532,28.32679],[74.1477,28.33647],[74.1482,28.33793],[74.14626,28.33717],[74.14309,28.34068],[74.14347,28.34321],[74.13533,28.34288],[74.13331,28.34622],[74.12634,28.34672],[74.12271,28.34485],[74.11586,28.34477],[74.10978,28.34661],[74.10712,28.34468],[74.10644,28.34584],[74.10255,28.3456],[74.09688,28.34403],[74.08613,28.33742],[74.0743,28.33608],[74.06166,28.33199],[74.05959,28.33708],[74.05533,28.33658],[74.05544,28.33941],[74.05113,28.34402],[74.04563,28.34489],[74.0439,28.34665],[74.04339,28.35162],[74.03823,28.35661],[74.03409,28.37284],[74.02772,28.37661],[74.02926,28.38648],[74.02774,28.38886],[74.02952,28.39424],[74.0279,28.3955],[74.02971,28.40415],[74.04824,28.41629],[74.04978,28.41508],[74.05807,28.41657],[74.06154,28.41564],[74.07351,28.41908],[74.07419,28.42308],[74.07878,28.42373],[74.07861,28.42883],[74.07579,28.42982],[74.07238,28.42778],[74.06964,28.42839],[74.06706,28.43491],[74.0652,28.43424],[74.06361,28.43744],[74.06625,28.4405],[74.06173,28.4417],[74.06244,28.44271],[74.05822,28.44765],[74.05685,28.45498],[74.0631,28.45966],[74.06094,28.46573],[74.06278,28.47054],[74.06148,28.47259],[74.05915,28.47277],[74.0588,28.47561],[74.06089,28.47927],[74.06394,28.49576],[74.06194,28.49743],[74.06212,28.49944],[74.06508,28.50076],[74.05951,28.51182],[74.05522,28.52639],[74.05711,28.52624],[74.06004,28.53123],[74.06433,28.53433],[74.06447,28.53751],[74.07453,28.54348],[74.07506,28.54955],[74.08274,28.5538],[74.0814,28.55655],[74.08614,28.55764],[74.08624,28.56012],[74.09012,28.56257],[74.08922,28.56521],[74.09095,28.56556],[74.09067,28.56985],[74.09771,28.57233],[74.10069,28.57547],[74.10127,28.58217],[74.10907,28.58543],[74.10754,28.58935],[74.10868,28.6014],[74.10645,28.60114],[74.10572,28.605],[74.10333,28.6049],[74.09838,28.61395],[74.09534,28.61297],[74.0907,28.62235],[74.09225,28.63321],[74.08784,28.63471],[74.08782,28.64008],[74.09148,28.6413],[74.08893,28.64604],[74.08659,28.64545],[74.08668,28.64763],[74.08408,28.6466],[74.08367,28.64767],[74.08541,28.65606],[74.08273,28.6589],[74.08018,28.67001],[74.12459,28.6861],[74.13978,28.69345],[74.15454,28.69688],[74.15692,28.69784],[74.15676,28.69918],[74.18032,28.70853],[74.18659,28.71054],[74.1934,28.70938],[74.1892,28.72493],[74.18236,28.72263],[74.17743,28.73267],[74.17393,28.73423],[74.17473,28.73656],[74.16483,28.73559],[74.15541,28.73783],[74.13973,28.73687],[74.14067,28.74698],[74.14468,28.75398],[74.14726,28.75609],[74.15136,28.75624],[74.15123,28.75794],[74.16235,28.76444],[74.15934,28.76456],[74.15955,28.77917],[74.1572,28.7818],[74.15161,28.782],[74.15151,28.78398],[74.14603,28.78489],[74.14153,28.7915],[74.13918,28.79249],[74.13865,28.79615],[74.12763,28.79575],[74.1227,28.79324],[74.11372,28.79236],[74.10698,28.7867],[74.09308,28.78262],[74.09159,28.78724],[74.08849,28.78778],[74.07017,28.78192],[74.0686,28.77897],[74.06279,28.77662],[74.05751,28.77655],[74.05719,28.77876],[74.05962,28.7793],[74.05896,28.78476],[74.06109,28.78447],[74.0708,28.79163],[74.0724,28.80245],[74.07962,28.80873],[74.08302,28.80929],[74.08307,28.81524],[74.09038,28.81986],[74.08992,28.8238],[74.09234,28.82461],[74.09228,28.82672],[74.09612,28.82697],[74.09788,28.8301],[74.10611,28.83614],[74.10886,28.83241],[74.11442,28.83277],[74.1184,28.8366],[74.12716,28.83948],[74.12642,28.84142],[74.11952,28.84139],[74.12002,28.84489],[74.11857,28.84627],[74.12339,28.8513],[74.12356,28.8529],[74.12172,28.85217],[74.121,28.85479],[74.12344,28.85522],[74.12412,28.85761],[74.12275,28.85787],[74.12278,28.86287],[74.1282,28.86482],[74.12699,28.86858],[74.13149,28.87143],[74.13183,28.87657],[74.13109,28.88138],[74.12803,28.88351],[74.12681,28.88279],[74.12384,28.88669],[74.12256,28.89261],[74.124,28.89556],[74.12188,28.89799],[74.11289,28.89485],[74.11362,28.89967],[74.11158,28.9022],[74.1162,28.90859],[74.11437,28.90828],[74.11404,28.90954],[74.11672,28.91136],[74.11593,28.9153],[74.11058,28.91883],[74.10841,28.92414],[74.11334,28.92673],[74.11334,28.93015],[74.11184,28.93137],[74.11507,28.93474],[74.11548,28.93925],[74.11173,28.9385],[74.11155,28.93976],[74.10897,28.93992],[74.09782,28.93718],[74.09621,28.93855],[74.09296,28.93717],[74.0913,28.9342],[74.08334,28.9315],[74.08103,28.93399],[74.07704,28.93412],[74.07536,28.93961],[74.06726,28.93516],[74.06497,28.9419],[74.06645,28.94643],[74.06945,28.94871],[74.06914,28.95669],[74.07217,28.9565],[74.07597,28.96305],[74.07079,28.9696],[74.06736,28.96895],[74.06428,28.98022],[74.05702,28.99217],[74.05702,28.99612],[74.05446,28.99685],[74.05487,28.99829],[74.04977,28.99877],[74.04452,28.99668],[74.04099,28.99755],[74.04088,29.00955]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"94","area_level":"District","area_name":"Bundi","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[76.01107,25.87256],[76.01112,25.8769],[76.00767,25.88082],[75.98066,25.87548],[75.98005,25.87337],[75.97657,25.87152],[75.97126,25.87317],[75.9713,25.87091],[75.9683,25.86758],[75.96644,25.86845],[75.96663,25.87035],[75.96408,25.86876],[75.96349,25.87038],[75.96215,25.86925],[75.96294,25.86823],[75.96053,25.86898],[75.96013,25.86657],[75.95876,25.86688],[75.95916,25.87053],[75.95295,25.87012],[75.951,25.87411],[75.95096,25.87263],[75.94716,25.87195],[75.94658,25.87367],[75.94285,25.87449],[75.93562,25.87313],[75.93312,25.87104],[75.9297,25.87172],[75.92805,25.86068],[75.93145,25.84232],[75.92927,25.8368],[75.93023,25.83573],[75.9282,25.83483],[75.92526,25.82696],[75.9243,25.82757],[75.91779,25.82222],[75.91087,25.82176],[75.90822,25.823],[75.90348,25.81757],[75.89193,25.82107],[75.88708,25.81862],[75.88128,25.81997],[75.88214,25.83431],[75.88697,25.8431],[75.8896,25.84142],[75.89316,25.84912],[75.8875,25.8524],[75.8838,25.85861],[75.87901,25.85904],[75.87935,25.86106],[75.87365,25.8627],[75.87059,25.86663],[75.86895,25.87498],[75.86212,25.87586],[75.8561,25.87206],[75.85286,25.87184],[75.85009,25.86937],[75.85051,25.86548],[75.84551,25.85759],[75.83133,25.85657],[75.83032,25.85481],[75.82006,25.85551],[75.81613,25.84783],[75.81666,25.84442],[75.8116,25.84473],[75.80761,25.83024],[75.80881,25.82248],[75.81107,25.82279],[75.81365,25.81971],[75.81427,25.8106],[75.81112,25.80904],[75.80872,25.80519],[75.80581,25.80574],[75.79581,25.79997],[75.7904,25.80271],[75.79157,25.81086],[75.79012,25.81142],[75.79218,25.81397],[75.78812,25.82066],[75.77982,25.8261],[75.77624,25.82707],[75.77527,25.8234],[75.771,25.82375],[75.76635,25.8204],[75.76544,25.80714],[75.76747,25.79865],[75.76139,25.79704],[75.76145,25.79475],[75.75352,25.78565],[75.75661,25.78419],[75.75906,25.77266],[75.75781,25.76384],[75.75371,25.75734],[75.74194,25.75416],[75.73357,25.75665],[75.73039,25.76065],[75.71917,25.76195],[75.70769,25.75926],[75.70123,25.75372],[75.69771,25.75517],[75.6917,25.7614],[75.68525,25.75994],[75.66736,25.75099],[75.6538,25.74938],[75.65165,25.7428],[75.65119,25.73425],[75.64145,25.7226],[75.64008,25.71754],[75.63122,25.71385],[75.62869,25.7111],[75.62864,25.70687],[75.62673,25.70583],[75.628,25.70376],[75.63568,25.7002],[75.62454,25.68804],[75.62224,25.68292],[75.61557,25.68022],[75.60462,25.68636],[75.59231,25.68774],[75.58795,25.69575],[75.58628,25.69611],[75.5876,25.70096],[75.586,25.70574],[75.58853,25.70743],[75.58937,25.71069],[75.59378,25.71262],[75.57442,25.7112],[75.57153,25.70969],[75.57097,25.70577],[75.56736,25.70178],[75.55988,25.699],[75.55441,25.70046],[75.55318,25.69948],[75.53307,25.71335],[75.52896,25.7164],[75.52569,25.72226],[75.52459,25.73119],[75.5203,25.7402],[75.52068,25.74499],[75.5164,25.74962],[75.51016,25.74727],[75.50765,25.73964],[75.49406,25.73716],[75.48578,25.73286],[75.47322,25.737],[75.474,25.731],[75.46099,25.72083],[75.45838,25.7143],[75.44436,25.70293],[75.42189,25.68861],[75.43555,25.65536],[75.43463,25.64545],[75.42914,25.63575],[75.43075,25.6241],[75.42303,25.61444],[75.40993,25.58993],[75.39995,25.58108],[75.39718,25.57573],[75.38356,25.57281],[75.38079,25.55768],[75.3724,25.55245],[75.35753,25.53788],[75.35916,25.53034],[75.3627,25.5262],[75.36253,25.51897],[75.3605,25.51643],[75.3655,25.50933],[75.36614,25.50554],[75.36808,25.50454],[75.36803,25.50253],[75.36437,25.50102],[75.36163,25.49687],[75.36404,25.49148],[75.36154,25.48143],[75.35951,25.47857],[75.35218,25.47577],[75.34194,25.46468],[75.32319,25.45632],[75.32014,25.45212],[75.32091,25.44747],[75.31757,25.43997],[75.30861,25.4335],[75.30842,25.42696],[75.30412,25.42458],[75.3021,25.42076],[75.2843,25.43541],[75.26786,25.42769],[75.26072,25.42158],[75.25999,25.41706],[75.26298,25.40389],[75.26737,25.39931],[75.27459,25.3982],[75.27724,25.40161],[75.27952,25.40103],[75.28519,25.40359],[75.28384,25.39488],[75.28494,25.39274],[75.29031,25.38978],[75.29625,25.38241],[75.30947,25.37281],[75.31419,25.36642],[75.32063,25.36362],[75.325,25.35226],[75.33292,25.33976],[75.33481,25.32926],[75.34156,25.32313],[75.36491,25.31822],[75.36825,25.31622],[75.37162,25.31031],[75.38757,25.30237],[75.41002,25.28298],[75.41979,25.2835],[75.43527,25.27657],[75.43916,25.27328],[75.44459,25.26449],[75.44553,25.25832],[75.44311,25.25383],[75.44439,25.24786],[75.45117,25.24133],[75.44495,25.22495],[75.45212,25.20807],[75.4527,25.20068],[75.44998,25.18319],[75.45072,25.17206],[75.44423,25.16154],[75.44682,25.1567],[75.44691,25.15301],[75.4447,25.1508],[75.44236,25.14186],[75.43918,25.1387],[75.42456,25.12927],[75.41502,25.12612],[75.40879,25.1095],[75.40335,25.10279],[75.41362,25.09525],[75.41718,25.09474],[75.42033,25.0826],[75.43623,25.07248],[75.43731,25.06022],[75.4445,25.05957],[75.44264,25.04865],[75.45169,25.04863],[75.44874,25.04219],[75.44984,25.03336],[75.44645,25.02275],[75.45358,25.02177],[75.45658,25.0236],[75.46002,25.02134],[75.46829,25.02061],[75.46988,25.02304],[75.47259,25.02326],[75.47814,25.02015],[75.4909,25.01906],[75.49599,25.02282],[75.51837,25.01549],[75.52552,25.01961],[75.52979,25.01938],[75.53271,25.01555],[75.53624,25.0145],[75.54192,25.01719],[75.55339,25.0151],[75.55943,25.01802],[75.56422,25.01715],[75.5727,25.02124],[75.58192,25.02192],[75.58178,25.02405],[75.58534,25.02435],[75.58833,25.02181],[75.59663,25.01917],[75.60358,25.01906],[75.61039,25.01608],[75.60931,25.00892],[75.6129,25.00503],[75.61239,25.00006],[75.61754,24.99485],[75.62373,24.99739],[75.63059,25.00745],[75.64195,25.01912],[75.64827,25.02889],[75.65413,25.03142],[75.66927,25.0333],[75.67574,25.03576],[75.68982,25.05391],[75.69989,25.06195],[75.71544,25.07086],[75.7222,25.07905],[75.73131,25.09824],[75.73821,25.10279],[75.74247,25.10847],[75.74382,25.11274],[75.74262,25.11809],[75.73091,25.11913],[75.72863,25.11696],[75.71997,25.12004],[75.71122,25.12401],[75.71126,25.1319],[75.72392,25.1394],[75.7354,25.14985],[75.72653,25.16305],[75.72333,25.17228],[75.72387,25.17519],[75.75165,25.19132],[75.76831,25.20823],[75.78061,25.23555],[75.78055,25.23817],[75.77782,25.23984],[75.77892,25.24252],[75.77777,25.25169],[75.78211,25.26561],[75.79009,25.26681],[75.78997,25.26488],[75.79868,25.25851],[75.80869,25.25717],[75.81658,25.24504],[75.80541,25.24331],[75.8027,25.24201],[75.80269,25.23944],[75.80387,25.23674],[75.80658,25.2355],[75.80806,25.23683],[75.81184,25.23167],[75.81975,25.22995],[75.82208,25.23195],[75.82972,25.22952],[75.85661,25.2347],[75.86612,25.23212],[75.87466,25.24083],[75.8848,25.24154],[75.89568,25.24771],[75.90044,25.25434],[75.90439,25.2649],[75.90876,25.27034],[75.92138,25.27615],[75.93121,25.28549],[75.93699,25.28709],[75.94466,25.28361],[75.95043,25.27037],[75.96047,25.26425],[75.97344,25.25],[75.98267,25.23254],[75.98622,25.23105],[75.99059,25.23192],[75.99636,25.23811],[75.99779,25.24262],[75.99721,25.25],[76.00072,25.25893],[76.00523,25.26227],[76.01625,25.2648],[76.02302,25.26861],[76.03102,25.27542],[76.03345,25.27962],[76.0334,25.28433],[76.02512,25.29603],[76.02034,25.30712],[76.02142,25.31316],[76.02752,25.31919],[76.04056,25.32619],[76.0485,25.3208],[76.06126,25.32684],[76.06836,25.3342],[76.06615,25.34903],[76.08398,25.35227],[76.09771,25.34333],[76.10148,25.33574],[76.10741,25.33101],[76.11462,25.33436],[76.12001,25.34218],[76.12798,25.34767],[76.13398,25.3477],[76.13968,25.34134],[76.14453,25.33886],[76.15025,25.34012],[76.15437,25.34402],[76.15593,25.35993],[76.14926,25.3678],[76.13931,25.36881],[76.135,25.37353],[76.14024,25.37773],[76.14914,25.38115],[76.15279,25.38886],[76.14793,25.39587],[76.134,25.39927],[76.13256,25.40508],[76.13399,25.40788],[76.14014,25.41177],[76.14553,25.41386],[76.15023,25.41334],[76.15609,25.4166],[76.16298,25.42658],[76.16237,25.43045],[76.15793,25.43468],[76.1592,25.43759],[76.16267,25.44048],[76.17088,25.44085],[76.17393,25.44292],[76.17505,25.45505],[76.18059,25.46794],[76.18127,25.4819],[76.17833,25.48747],[76.18143,25.49655],[76.18754,25.5011],[76.19141,25.50124],[76.19765,25.496],[76.20111,25.4874],[76.20611,25.48681],[76.2132,25.4898],[76.22008,25.49795],[76.23296,25.50552],[76.24485,25.50953],[76.26115,25.50819],[76.26848,25.51318],[76.27489,25.52376],[76.27708,25.53054],[76.2817,25.53466],[76.28669,25.54551],[76.28631,25.56101],[76.28337,25.57211],[76.29486,25.58729],[76.29361,25.59973],[76.28947,25.60326],[76.28807,25.60664],[76.29093,25.61643],[76.28996,25.6301],[76.29654,25.63593],[76.31304,25.63855],[76.31782,25.64421],[76.31794,25.65238],[76.31405,25.65898],[76.30064,25.66481],[76.29714,25.66789],[76.29198,25.68526],[76.29166,25.69195],[76.29624,25.69822],[76.30194,25.70295],[76.30765,25.70527],[76.31596,25.70538],[76.32904,25.70039],[76.33832,25.70234],[76.35125,25.72075],[76.3523,25.73496],[76.35618,25.74104],[76.34646,25.74787],[76.34555,25.75282],[76.33577,25.7584],[76.33451,25.76323],[76.33231,25.7653],[76.33293,25.77006],[76.33147,25.77287],[76.322,25.77887],[76.31946,25.79327],[76.31607,25.79752],[76.31226,25.81157],[76.30528,25.80352],[76.29861,25.80374],[76.29089,25.79822],[76.29206,25.79146],[76.28813,25.787],[76.2863,25.78165],[76.28016,25.78581],[76.28058,25.79132],[76.27582,25.79447],[76.27458,25.79798],[76.26692,25.80549],[76.25937,25.80627],[76.25676,25.80371],[76.25549,25.79764],[76.24993,25.79683],[76.2456,25.793],[76.23627,25.79488],[76.23491,25.79701],[76.23554,25.79988],[76.22752,25.80455],[76.22411,25.80367],[76.21625,25.81057],[76.21654,25.81553],[76.21392,25.82616],[76.21498,25.8277],[76.21382,25.83051],[76.21087,25.8314],[76.20782,25.83778],[76.20148,25.84059],[76.18797,25.84219],[76.18906,25.83448],[76.17907,25.81961],[76.17424,25.81436],[76.16329,25.81239],[76.16179,25.80838],[76.16519,25.80223],[76.1629,25.79804],[76.16399,25.79687],[76.16215,25.79396],[76.16331,25.7913],[76.16244,25.78745],[76.15922,25.7852],[76.15985,25.78356],[76.15763,25.78166],[76.1588,25.77959],[76.15665,25.77732],[76.1598,25.77005],[76.15848,25.76614],[76.16047,25.76001],[76.1588,25.7572],[76.14897,25.76347],[76.15081,25.77109],[76.13803,25.78486],[76.13091,25.78564],[76.12663,25.78392],[76.12073,25.78515],[76.1178,25.78336],[76.1072,25.78691],[76.1046,25.79416],[76.10541,25.80527],[76.08404,25.80987],[76.07587,25.8074],[76.07177,25.80386],[76.06028,25.80513],[76.04603,25.81222],[76.04489,25.81316],[76.04627,25.81905],[76.05317,25.83459],[76.05144,25.8418],[76.04896,25.84173],[76.04817,25.8459],[76.05123,25.85611],[76.05399,25.85592],[76.05451,25.85746],[76.05217,25.86364],[76.05056,25.8615],[76.04493,25.86098],[76.04156,25.86547],[76.03545,25.86147],[76.02553,25.86281],[76.01074,25.86653],[76.01107,25.87256]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"95","area_level":"District","area_name":"Chittorgarh","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[75.21605,24.88896],[75.21435,24.89207],[75.21327,24.89332],[75.21095,24.89409],[75.20847,24.8943],[75.20805,24.89349],[75.20877,24.89168],[75.2076,24.88788],[75.20541,24.87701],[75.20504,24.87584],[75.20258,24.87293],[75.20073,24.86784],[75.20173,24.86653],[75.2053,24.86475],[75.20645,24.86295],[75.20814,24.8614],[75.20901,24.85901],[75.20874,24.85403],[75.21002,24.85444],[75.21601,24.85075],[75.21794,24.84655],[75.2203,24.84577],[75.22264,24.84409],[75.22607,24.84505],[75.23266,24.84812],[75.23634,24.8518],[75.23783,24.85455],[75.24304,24.86065],[75.24672,24.86197],[75.24913,24.86707],[75.24913,24.87036],[75.25067,24.88051],[75.24656,24.88347],[75.2456,24.88506],[75.24296,24.88722],[75.23894,24.8866],[75.23783,24.88581],[75.23601,24.88321],[75.23312,24.88087],[75.23008,24.87729],[75.22896,24.87654],[75.22615,24.87566],[75.22344,24.87408],[75.22163,24.87378],[75.22018,24.87459],[75.2194,24.87561],[75.21967,24.87928],[75.22126,24.88272],[75.22121,24.88542],[75.22027,24.88788],[75.21772,24.88894],[75.21605,24.88896]]],[[[74.11796,24.96963],[74.11796,24.96951],[74.11779,24.96952],[74.11786,24.96866],[74.11673,24.96879],[74.11673,24.96867],[74.11658,24.96867],[74.1173,24.95832],[74.11766,24.95543],[74.11763,24.95278],[74.12031,24.95332],[74.1239,24.95657],[74.12483,24.95946],[74.12836,24.96111],[74.12823,24.96431],[74.12354,24.96506],[74.1223,24.96841],[74.1221,24.96841],[74.12211,24.9686],[74.11796,24.96963]]],[[[75.40836,25.02015],[75.3984,25.02128],[75.39175,25.02397],[75.38812,25.01846],[75.36901,25.01664],[75.35999,25.01402],[75.35044,25.01518],[75.35035,25.01753],[75.34904,25.01775],[75.33914,25.01728],[75.33926,25.01932],[75.33298,25.01665],[75.32054,25.00677],[75.31653,25.00556],[75.31135,24.99279],[75.31346,24.98001],[75.31847,24.97413],[75.32723,24.97097],[75.32702,24.96744],[75.33157,24.95764],[75.33691,24.9554],[75.33528,24.94379],[75.32909,24.93415],[75.32583,24.91947],[75.321,24.91279],[75.31845,24.89416],[75.31274,24.88514],[75.31512,24.88934],[75.31527,24.89443],[75.31165,24.90758],[75.30859,24.91661],[75.30272,24.91987],[75.30088,24.92362],[75.30141,24.92628],[75.30487,24.92866],[75.30023,24.93336],[75.2977,24.93301],[75.29009,24.93766],[75.28677,24.94614],[75.2884,24.95161],[75.28187,24.95309],[75.28531,24.96478],[75.28219,24.96561],[75.27812,24.96375],[75.27779,24.96493],[75.27389,24.96404],[75.27292,24.95971],[75.27057,24.95713],[75.27082,24.95273],[75.26671,24.95088],[75.26708,24.94715],[75.26892,24.94223],[75.27293,24.93818],[75.27264,24.93594],[75.27926,24.93435],[75.27728,24.92494],[75.28784,24.92352],[75.28779,24.91983],[75.29348,24.91129],[75.29407,24.90755],[75.2843,24.90796],[75.27733,24.89915],[75.2727,24.90405],[75.26927,24.9015],[75.26407,24.89521],[75.26507,24.89219],[75.2633,24.89108],[75.26254,24.87883],[75.26343,24.87486],[75.27436,24.87478],[75.27813,24.87274],[75.28111,24.86838],[75.29019,24.86621],[75.29463,24.85762],[75.30925,24.85601],[75.3153,24.85791],[75.31838,24.86061],[75.32277,24.86919],[75.32259,24.87315],[75.32664,24.87487],[75.33829,24.87276],[75.35053,24.87365],[75.37363,24.86774],[75.39598,24.87752],[75.40178,24.8827],[75.40735,24.88476],[75.4217,24.8861],[75.4258,24.88429],[75.42431,24.88084],[75.42576,24.86907],[75.41908,24.86201],[75.41971,24.85619],[75.4178,24.85367],[75.41425,24.85325],[75.40393,24.84516],[75.39602,24.84155],[75.38129,24.8382],[75.37171,24.83265],[75.36268,24.83002],[75.34541,24.82168],[75.33586,24.82217],[75.32843,24.81903],[75.31704,24.8039],[75.3116,24.80118],[75.30473,24.80205],[75.29794,24.80714],[75.29734,24.81269],[75.29486,24.81571],[75.2958,24.82026],[75.29031,24.8286],[75.28996,24.83366],[75.27294,24.84284],[75.26232,24.84221],[75.25023,24.84569],[75.24042,24.8457],[75.23691,24.84224],[75.22409,24.84392],[75.22622,24.84038],[75.2252,24.83398],[75.23238,24.83133],[75.24909,24.82982],[75.25006,24.82666],[75.25396,24.82427],[75.25426,24.81848],[75.25232,24.81311],[75.25032,24.80954],[75.24413,24.80471],[75.23303,24.80266],[75.2217,24.80322],[75.21867,24.80512],[75.2152,24.80212],[75.20727,24.79191],[75.20694,24.78837],[75.2047,24.7856],[75.20745,24.7812],[75.20158,24.77174],[75.20497,24.77045],[75.20811,24.77161],[75.20542,24.76946],[75.19291,24.77357],[75.19037,24.75341],[75.1844,24.74855],[75.18701,24.7475],[75.18763,24.74374],[75.19764,24.74325],[75.20404,24.73137],[75.20807,24.71934],[75.21944,24.70255],[75.22451,24.71516],[75.22838,24.71762],[75.24155,24.71344],[75.2517,24.7136],[75.2649,24.71751],[75.26853,24.71475],[75.28419,24.70892],[75.3204,24.7024],[75.32995,24.70298],[75.34904,24.7008],[75.3707,24.69239],[75.3918,24.69038],[75.43406,24.68211],[75.45646,24.68045],[75.48941,24.68665],[75.50633,24.69993],[75.51835,24.70588],[75.53025,24.70948],[75.53343,24.71205],[75.54009,24.70565],[75.54822,24.70294],[75.55201,24.70515],[75.55388,24.70446],[75.56319,24.70736],[75.57479,24.70777],[75.57534,24.71219],[75.58097,24.71177],[75.58297,24.71326],[75.58457,24.7083],[75.59057,24.70578],[75.59967,24.69677],[75.60885,24.68128],[75.62647,24.68194],[75.63049,24.68364],[75.64596,24.68492],[75.65772,24.69299],[75.68372,24.7253],[75.74048,24.75502],[75.75683,24.76155],[75.76981,24.75843],[75.77757,24.76138],[75.78473,24.76172],[75.78397,24.7639],[75.79202,24.77251],[75.8006,24.78983],[75.80288,24.81504],[75.80442,24.81963],[75.80935,24.82331],[75.81295,24.84016],[75.81346,24.85393],[75.81573,24.86387],[75.81212,24.86627],[75.81205,24.87048],[75.79647,24.87231],[75.78282,24.87669],[75.76621,24.87717],[75.75886,24.87987],[75.74696,24.88686],[75.72053,24.90856],[75.69468,24.92357],[75.68956,24.93023],[75.67444,24.93687],[75.66748,24.94334],[75.65125,24.96352],[75.64832,24.97738],[75.63256,24.98264],[75.62604,24.98816],[75.62237,24.988],[75.61684,24.99035],[75.61754,24.99485],[75.61239,25.00006],[75.6129,25.00503],[75.60951,25.00764],[75.61039,25.01608],[75.60358,25.01906],[75.59663,25.01917],[75.58387,25.02442],[75.58154,25.02384],[75.58192,25.02192],[75.5727,25.02124],[75.56422,25.01715],[75.55943,25.01802],[75.55339,25.0151],[75.54192,25.01719],[75.53624,25.0145],[75.53271,25.01555],[75.52979,25.01938],[75.52552,25.01961],[75.51837,25.01549],[75.49599,25.02282],[75.49168,25.01907],[75.47814,25.02015],[75.47259,25.02326],[75.46632,25.02058],[75.46002,25.02134],[75.45658,25.0236],[75.45072,25.02166],[75.44457,25.02395],[75.42959,25.02007],[75.42095,25.02121],[75.40836,25.02015]]],[[[74.40057,25.19453],[74.40221,25.20073],[74.39794,25.20437],[74.39145,25.19973],[74.38622,25.19352],[74.3737,25.19264],[74.3725,25.18968],[74.38753,25.18075],[74.38572,25.16704],[74.37943,25.15463],[74.37848,25.15357],[74.36536,25.15955],[74.35913,25.15717],[74.34746,25.14062],[74.34537,25.12052],[74.3325,25.12144],[74.32475,25.1241],[74.31245,25.11572],[74.30685,25.10619],[74.30286,25.10583],[74.29591,25.09777],[74.28391,25.10071],[74.28174,25.09484],[74.28346,25.09202],[74.27836,25.08365],[74.28016,25.08201],[74.27396,25.06635],[74.26253,25.06789],[74.26014,25.06375],[74.26398,25.06308],[74.26489,25.0606],[74.26878,25.05852],[74.26953,25.06219],[74.27486,25.06345],[74.28234,25.05881],[74.28495,25.05299],[74.29541,25.04711],[74.29656,25.04463],[74.29451,25.03733],[74.31503,25.03569],[74.31568,25.0316],[74.31868,25.03149],[74.32081,25.02526],[74.31687,25.02515],[74.31147,25.01511],[74.31483,25.0113],[74.3059,25.0],[74.30357,24.99223],[74.29964,24.99355],[74.29988,24.9964],[74.29151,25.00195],[74.28739,24.99602],[74.28183,24.99839],[74.27846,24.99241],[74.27205,24.99539],[74.27069,24.99384],[74.26852,24.99462],[74.2622,24.98901],[74.26223,24.98638],[74.26498,24.98618],[74.26328,24.98273],[74.26095,24.9821],[74.25778,24.98241],[74.25712,24.98567],[74.25129,24.98984],[74.2373,24.99518],[74.23646,24.99178],[74.23525,24.99246],[74.2356,24.99519],[74.22175,24.99492],[74.22149,24.99025],[74.21146,24.98929],[74.2024,24.98348],[74.19618,24.98624],[74.19424,24.97897],[74.19814,24.96204],[74.19437,24.95051],[74.18798,24.94497],[74.18479,24.94423],[74.18295,24.94136],[74.18321,24.93392],[74.17897,24.92463],[74.17609,24.9234],[74.17066,24.91679],[74.15838,24.9148],[74.15755,24.89833],[74.15279,24.89833],[74.13807,24.87282],[74.13711,24.85985],[74.11375,24.86471],[74.10519,24.86168],[74.10574,24.85773],[74.11173,24.8508],[74.12924,24.84875],[74.13016,24.84326],[74.12794,24.83794],[74.12519,24.83736],[74.11989,24.82495],[74.10796,24.80809],[74.10905,24.79936],[74.11402,24.79021],[74.1091,24.78894],[74.10725,24.78267],[74.10564,24.78248],[74.10757,24.76334],[74.11779,24.75546],[74.11853,24.75177],[74.11597,24.75037],[74.1126,24.74119],[74.10494,24.73448],[74.1108,24.72963],[74.11351,24.73289],[74.12381,24.73027],[74.12843,24.73141],[74.13341,24.72255],[74.13652,24.72015],[74.14387,24.72083],[74.1493,24.72455],[74.17044,24.71132],[74.17217,24.70541],[74.17138,24.70193],[74.17409,24.69879],[74.17198,24.68682],[74.16995,24.68347],[74.15567,24.6849],[74.15254,24.67649],[74.15382,24.67077],[74.15243,24.6667],[74.15435,24.66652],[74.15668,24.66881],[74.17133,24.66917],[74.1776,24.6661],[74.18321,24.6563],[74.18465,24.65674],[74.18415,24.65957],[74.18995,24.66509],[74.19542,24.66296],[74.20063,24.66293],[74.20471,24.65296],[74.2058,24.64374],[74.20012,24.64168],[74.1989,24.63427],[74.19629,24.63249],[74.19634,24.61425],[74.21282,24.6159],[74.21339,24.62387],[74.21137,24.62472],[74.21286,24.63025],[74.21705,24.63905],[74.22562,24.64893],[74.24261,24.64054],[74.24253,24.62872],[74.25112,24.61679],[74.23919,24.6125],[74.21444,24.61464],[74.21169,24.60125],[74.21537,24.5918],[74.22956,24.59558],[74.23655,24.60008],[74.24496,24.5841],[74.25878,24.57904],[74.27172,24.57646],[74.26746,24.57458],[74.26524,24.56768],[74.26682,24.55852],[74.26261,24.54706],[74.26809,24.54124],[74.2729,24.53957],[74.27407,24.53457],[74.27433,24.52957],[74.27147,24.52957],[74.27031,24.52639],[74.26936,24.52239],[74.27158,24.52067],[74.2693,24.51553],[74.25897,24.51569],[74.25294,24.51407],[74.25072,24.51509],[74.25067,24.5059],[74.25423,24.50617],[74.25061,24.5016],[74.2467,24.49967],[74.24206,24.50192],[74.24083,24.50411],[74.23918,24.50339],[74.23865,24.4962],[74.24296,24.48365],[74.2401,24.48365],[74.23864,24.48637],[74.23192,24.481],[74.22218,24.47852],[74.21957,24.47884],[74.21827,24.48116],[74.21725,24.47587],[74.21406,24.47241],[74.21509,24.46771],[74.20914,24.4638],[74.20641,24.46406],[74.20553,24.46201],[74.20702,24.46075],[74.20456,24.45445],[74.20071,24.45167],[74.20179,24.44965],[74.19883,24.44641],[74.20585,24.43988],[74.2226,24.43128],[74.22235,24.4283],[74.23062,24.42866],[74.24041,24.4365],[74.24588,24.4383],[74.24458,24.44221],[74.24784,24.45052],[74.25078,24.45132],[74.25051,24.45494],[74.25188,24.45521],[74.253,24.45283],[74.25538,24.45399],[74.25707,24.45045],[74.26115,24.45297],[74.25963,24.4586],[74.26108,24.46606],[74.25698,24.46606],[74.25759,24.46422],[74.25643,24.46403],[74.25566,24.46562],[74.25201,24.46523],[74.2525,24.47378],[74.25429,24.47405],[74.25443,24.4768],[74.25236,24.48125],[74.25504,24.48121],[74.2563,24.4845],[74.25798,24.48445],[74.25833,24.48168],[74.26171,24.48012],[74.26409,24.4813],[74.26824,24.47809],[74.26833,24.46906],[74.26414,24.46731],[74.26444,24.46503],[74.26719,24.46453],[74.26384,24.46151],[74.26856,24.45405],[74.27283,24.45772],[74.27512,24.46406],[74.28371,24.4773],[74.28718,24.47424],[74.29172,24.46378],[74.29809,24.46346],[74.30094,24.46099],[74.30837,24.46167],[74.31334,24.46455],[74.31576,24.46412],[74.31616,24.46992],[74.3211,24.48452],[74.34109,24.48348],[74.34268,24.47811],[74.33332,24.47059],[74.32869,24.46451],[74.32986,24.4565],[74.32234,24.45383],[74.31976,24.44647],[74.31339,24.44527],[74.30911,24.44163],[74.31031,24.43687],[74.31378,24.43218],[74.31034,24.4306],[74.30757,24.42053],[74.31022,24.41271],[74.30942,24.40644],[74.32493,24.40675],[74.33102,24.40989],[74.33508,24.41845],[74.34334,24.41617],[74.35266,24.40599],[74.36134,24.40107],[74.36565,24.3855],[74.36651,24.37174],[74.35915,24.37302],[74.35339,24.36801],[74.34867,24.37045],[74.34402,24.36885],[74.34484,24.36551],[74.34257,24.36432],[74.34186,24.35473],[74.34362,24.35513],[74.34361,24.35214],[74.34259,24.3501],[74.33841,24.34896],[74.33401,24.34374],[74.33738,24.34335],[74.34456,24.34613],[74.34585,24.34103],[74.34345,24.33536],[74.35637,24.33878],[74.35615,24.33334],[74.35978,24.33231],[74.36204,24.32733],[74.36213,24.31567],[74.36766,24.30774],[74.36892,24.29974],[74.37793,24.29948],[74.37842,24.29794],[74.37653,24.29614],[74.37195,24.29598],[74.37198,24.29307],[74.36961,24.29189],[74.37095,24.2892],[74.36877,24.28793],[74.36721,24.28326],[74.37249,24.28327],[74.38045,24.28],[74.40297,24.28364],[74.40488,24.28077],[74.41023,24.28855],[74.41753,24.28697],[74.41917,24.28935],[74.41975,24.28704],[74.42537,24.28792],[74.42613,24.28604],[74.42783,24.28669],[74.42693,24.28307],[74.43146,24.26994],[74.43091,24.25763],[74.432,24.25562],[74.43054,24.25276],[74.43228,24.25306],[74.43607,24.24799],[74.43866,24.24691],[74.44133,24.23899],[74.44618,24.23791],[74.45327,24.23249],[74.45502,24.22402],[74.45835,24.21952],[74.46836,24.2177],[74.47201,24.22068],[74.47692,24.21889],[74.47814,24.22592],[74.48487,24.22628],[74.48512,24.23302],[74.48883,24.23474],[74.49531,24.25719],[74.5,24.2624],[74.51008,24.26782],[74.51152,24.27221],[74.51795,24.2798],[74.51825,24.28619],[74.52461,24.28456],[74.5281,24.28578],[74.52513,24.29442],[74.52305,24.31037],[74.52475,24.31202],[74.53272,24.31349],[74.53421,24.32017],[74.53225,24.32737],[74.5267,24.33296],[74.52493,24.34128],[74.52531,24.34696],[74.53145,24.35381],[74.53232,24.35875],[74.52355,24.3753],[74.52178,24.38305],[74.52373,24.39042],[74.52069,24.39239],[74.51558,24.40918],[74.51738,24.40939],[74.51844,24.42245],[74.53324,24.42334],[74.55692,24.42768],[74.56529,24.46504],[74.56443,24.48905],[74.56701,24.49195],[74.58113,24.49869],[74.58354,24.51047],[74.59013,24.51276],[74.60341,24.51042],[74.60819,24.51269],[74.61014,24.50862],[74.61853,24.50619],[74.62303,24.50068],[74.62181,24.49374],[74.62367,24.48638],[74.62243,24.48304],[74.62884,24.47551],[74.62883,24.47837],[74.63312,24.48215],[74.64241,24.48612],[74.63999,24.49782],[74.64582,24.49844],[74.65007,24.4901],[74.65204,24.4922],[74.65622,24.49286],[74.67577,24.49293],[74.68528,24.48807],[74.69077,24.48201],[74.69663,24.48203],[74.70223,24.48582],[74.70873,24.48647],[74.71216,24.50046],[74.71814,24.50898],[74.72478,24.51204],[74.72467,24.51318],[74.74463,24.51346],[74.74653,24.51969],[74.7458,24.52535],[74.74358,24.52748],[74.74422,24.53231],[74.75553,24.53488],[74.75275,24.54408],[74.75359,24.5536],[74.74351,24.57146],[74.74915,24.57464],[74.75329,24.57435],[74.75198,24.57743],[74.75278,24.57964],[74.7582,24.57716],[74.76007,24.57766],[74.7601,24.57944],[74.76684,24.57967],[74.76685,24.57856],[74.77813,24.58147],[74.78063,24.58569],[74.78643,24.58593],[74.78596,24.59416],[74.78333,24.59436],[74.78282,24.60542],[74.78075,24.60536],[74.7794,24.61544],[74.78575,24.61929],[74.79174,24.61977],[74.79021,24.62228],[74.79128,24.63178],[74.79652,24.63467],[74.80294,24.6342],[74.80631,24.6484],[74.81175,24.65205],[74.81414,24.65018],[74.81604,24.65736],[74.81626,24.65855],[74.81367,24.65932],[74.81458,24.66575],[74.81263,24.66618],[74.80359,24.66536],[74.80072,24.6666],[74.798,24.66397],[74.79075,24.66508],[74.79022,24.65987],[74.78851,24.65826],[74.78169,24.65818],[74.7795,24.66062],[74.77428,24.65948],[74.77194,24.66148],[74.7777,24.68132],[74.78074,24.68419],[74.78431,24.69176],[74.78451,24.70171],[74.78761,24.70418],[74.7796,24.73245],[74.78211,24.72881],[74.78484,24.72814],[74.78909,24.7318],[74.80397,24.73397],[74.79921,24.76377],[74.79978,24.77907],[74.8088,24.78105],[74.81441,24.76064],[74.8161,24.74801],[74.82321,24.73504],[74.83044,24.72777],[74.82985,24.72042],[74.83689,24.70773],[74.83583,24.70674],[74.84373,24.6987],[74.8481,24.69977],[74.84639,24.69623],[74.84948,24.68791],[74.8545,24.68765],[74.85018,24.6842],[74.8515,24.67767],[74.85309,24.67818],[74.8525,24.68422],[74.85938,24.68284],[74.86014,24.67894],[74.85796,24.67436],[74.86077,24.67436],[74.86355,24.66965],[74.86499,24.66962],[74.86489,24.66549],[74.86869,24.66305],[74.86837,24.65741],[74.87558,24.65266],[74.87139,24.65255],[74.87166,24.6505],[74.87378,24.64968],[74.87323,24.64647],[74.87655,24.64285],[74.8782,24.64681],[74.88439,24.64142],[74.88323,24.63822],[74.88846,24.63409],[74.89383,24.63757],[74.89402,24.6418],[74.89249,24.64249],[74.89498,24.64394],[74.89861,24.64186],[74.89811,24.63757],[74.90182,24.63281],[74.90136,24.63704],[74.90526,24.64087],[74.90945,24.63792],[74.91149,24.63885],[74.91386,24.637],[74.91724,24.63777],[74.91976,24.63625],[74.92493,24.63791],[74.92917,24.63546],[74.93601,24.63979],[74.93704,24.63801],[74.93915,24.63795],[74.9408,24.64059],[74.94309,24.6378],[74.9441,24.6419],[74.9422,24.64714],[74.94382,24.64809],[74.94741,24.64572],[74.94976,24.64972],[74.9513,24.64724],[74.95403,24.65196],[74.95302,24.65374],[74.95646,24.65579],[74.95855,24.66093],[74.96128,24.65604],[74.96228,24.65642],[74.96076,24.66547],[74.96489,24.67029],[74.96019,24.67777],[74.97631,24.67875],[74.98305,24.68195],[74.99339,24.68281],[75.00172,24.68642],[75.00046,24.69184],[74.99193,24.69322],[74.99388,24.72601],[74.99239,24.73175],[75.01603,24.73212],[75.0144,24.7347],[75.01515,24.74012],[75.01282,24.75],[75.00634,24.77196],[74.99912,24.77475],[74.99041,24.76923],[74.98441,24.76883],[74.98171,24.76412],[74.97232,24.76365],[74.96915,24.77061],[74.96477,24.76932],[74.95343,24.77368],[74.94798,24.77199],[74.94061,24.77474],[74.93739,24.77836],[74.93089,24.7791],[74.92129,24.7707],[74.91453,24.7692],[74.91042,24.77042],[74.90671,24.78183],[74.89211,24.7836],[74.88042,24.78941],[74.87932,24.79738],[74.86057,24.79848],[74.85911,24.79588],[74.86094,24.78543],[74.86017,24.77942],[74.84937,24.77613],[74.84832,24.77967],[74.8405,24.78974],[74.8387,24.79804],[74.86152,24.80414],[74.85953,24.80771],[74.86085,24.82246],[74.85851,24.83962],[74.85107,24.85129],[74.84997,24.85737],[74.84657,24.8605],[74.84037,24.88482],[74.83748,24.88726],[74.83074,24.88693],[74.82529,24.90015],[74.82489,24.92291],[74.82653,24.92451],[74.82638,24.93352],[74.83386,24.94413],[74.83322,24.95972],[74.84263,24.96885],[74.84815,24.96614],[74.85176,24.96707],[74.85756,24.96389],[74.85942,24.96158],[74.85911,24.95579],[74.86258,24.95318],[74.86571,24.93502],[74.86948,24.92497],[74.87939,24.92998],[74.8807,24.93736],[74.88785,24.93755],[74.89195,24.92974],[74.90245,24.93],[74.9078,24.91829],[74.91334,24.91618],[74.913,24.90869],[74.91638,24.90729],[74.91041,24.89437],[74.91553,24.88759],[74.92066,24.88487],[74.9239,24.8783],[74.9267,24.87981],[74.93159,24.8754],[74.93223,24.88131],[74.94128,24.8807],[74.94108,24.8794],[74.94498,24.87891],[74.94925,24.88145],[74.95261,24.88068],[74.95088,24.87601],[74.9519,24.87646],[74.95193,24.87416],[74.94821,24.86457],[74.95676,24.8607],[74.95866,24.85819],[74.96811,24.85612],[74.98057,24.85865],[74.98402,24.85685],[74.98491,24.8533],[74.99218,24.85457],[74.99388,24.85346],[75.00157,24.85612],[75.00831,24.85642],[75.01476,24.854],[75.02099,24.84857],[75.03305,24.84441],[75.03888,24.84555],[75.04196,24.84697],[75.04145,24.84921],[75.04896,24.85048],[75.05659,24.86214],[75.05993,24.86361],[75.05936,24.86688],[75.05548,24.86983],[75.05531,24.87189],[75.06277,24.87148],[75.06386,24.86769],[75.06544,24.86802],[75.07653,24.88068],[75.08821,24.87871],[75.08719,24.87079],[75.09849,24.87245],[75.11249,24.87852],[75.11693,24.87826],[75.11892,24.8823],[75.11853,24.88525],[75.11625,24.8919],[75.1144,24.89277],[75.11741,24.89501],[75.1161,24.89706],[75.11334,24.89724],[75.11324,24.89971],[75.11592,24.90621],[75.11949,24.91018],[75.11643,24.91059],[75.11677,24.9218],[75.11837,24.9256],[75.11412,24.93644],[75.11508,24.94387],[75.11356,24.96681],[75.12757,24.96788],[75.13559,24.97604],[75.14149,24.97818],[75.13845,24.97985],[75.13023,24.97962],[75.13219,24.98361],[75.13723,24.98619],[75.13936,24.98566],[75.14186,24.98993],[75.15177,24.98907],[75.15312,24.99475],[75.15582,24.99364],[75.15868,25.0011],[75.16633,25.00288],[75.16613,25.00592],[75.16858,25.0064],[75.16388,25.01664],[75.15673,25.02112],[75.15163,25.02036],[75.1521,25.03114],[75.15712,25.03587],[75.15536,25.03661],[75.15594,25.03771],[75.16452,25.04186],[75.16412,25.04569],[75.16708,25.04841],[75.17609,25.03975],[75.19085,25.03645],[75.19259,25.04692],[75.19007,25.05155],[75.19046,25.05491],[75.19454,25.06552],[75.1978,25.08202],[75.20447,25.08984],[75.18412,25.09192],[75.17809,25.09745],[75.17245,25.09955],[75.16857,25.0985],[75.1508,25.10528],[75.12545,25.10401],[75.1219,25.10888],[75.12568,25.11232],[75.12868,25.11812],[75.12461,25.12364],[75.1187,25.12668],[75.11299,25.12726],[75.09084,25.12227],[75.08016,25.12506],[75.06301,25.11481],[75.03988,25.12022],[75.03252,25.12379],[75.03048,25.1231],[75.02676,25.13054],[75.0273,25.13711],[75.02032,25.13703],[75.01283,25.12921],[75.0048,25.12975],[75.00209,25.12319],[74.99655,25.11593],[74.9838,25.11094],[74.98212,25.10828],[74.97735,25.10741],[74.97339,25.10418],[74.96996,25.10627],[74.96751,25.11166],[74.96071,25.13902],[74.95031,25.14513],[74.94444,25.14142],[74.93952,25.15083],[74.93663,25.14712],[74.93017,25.12385],[74.92217,25.13866],[74.91854,25.14166],[74.91362,25.14393],[74.90589,25.13982],[74.90189,25.14241],[74.89244,25.14247],[74.90172,25.15308],[74.90518,25.16849],[74.90866,25.17134],[74.91023,25.17673],[74.89149,25.18633],[74.88581,25.18211],[74.87733,25.18062],[74.86255,25.17368],[74.86198,25.17818],[74.86002,25.17672],[74.85697,25.17782],[74.8567,25.17987],[74.859,25.18192],[74.8576,25.18323],[74.85187,25.18714],[74.84699,25.18794],[74.84408,25.17912],[74.84514,25.17303],[74.84657,25.17101],[74.85633,25.16896],[74.84616,25.15038],[74.8383,25.14441],[74.82517,25.15035],[74.80722,25.14874],[74.8011,25.15037],[74.79598,25.15247],[74.79554,25.1542],[74.79962,25.16873],[74.79061,25.1714],[74.78498,25.17561],[74.78719,25.18027],[74.78909,25.181],[74.78906,25.18543],[74.78735,25.18571],[74.78677,25.19209],[74.78422,25.19241],[74.78132,25.19541],[74.78235,25.19917],[74.77922,25.20084],[74.78027,25.20269],[74.77734,25.20409],[74.77777,25.20527],[74.76195,25.20968],[74.75426,25.21578],[74.74915,25.21],[74.74705,25.19942],[74.74891,25.19648],[74.74888,25.18277],[74.74136,25.1752],[74.73393,25.17719],[74.72544,25.17088],[74.71565,25.17415],[74.72164,25.18305],[74.72923,25.1856],[74.72358,25.20551],[74.71289,25.2043],[74.70717,25.2022],[74.70449,25.1995],[74.69782,25.18702],[74.69595,25.1802],[74.69263,25.17721],[74.68507,25.18093],[74.68231,25.17595],[74.67357,25.18098],[74.67103,25.17952],[74.65836,25.18199],[74.64933,25.1757],[74.64181,25.16448],[74.63525,25.15957],[74.63298,25.16078],[74.62733,25.15577],[74.62534,25.15142],[74.6145,25.1408],[74.59637,25.14787],[74.57823,25.14874],[74.57125,25.14181],[74.56679,25.13296],[74.56405,25.1319],[74.54657,25.14049],[74.54453,25.14388],[74.53703,25.14696],[74.53851,25.14895],[74.54433,25.15066],[74.54998,25.1561],[74.54597,25.16034],[74.54811,25.16425],[74.54626,25.16501],[74.54694,25.16622],[74.54431,25.16469],[74.54381,25.16773],[74.54922,25.16943],[74.55126,25.17296],[74.55357,25.17366],[74.55449,25.17731],[74.5475,25.17847],[74.54294,25.18182],[74.50942,25.18271],[74.50798,25.18576],[74.51133,25.20196],[74.50531,25.20181],[74.50249,25.20332],[74.49628,25.20224],[74.4806,25.18632],[74.47719,25.17854],[74.46375,25.16524],[74.4572,25.16865],[74.44916,25.17013],[74.44906,25.17763],[74.44071,25.17959],[74.43469,25.17788],[74.42933,25.18141],[74.42328,25.19485],[74.41901,25.19744],[74.419,25.20203],[74.41568,25.20387],[74.40836,25.19619],[74.40647,25.18855],[74.40971,25.1869],[74.40806,25.18472],[74.39773,25.18836],[74.40061,25.1914],[74.40057,25.19453]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"96","area_level":"District","area_name":"Churu","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[75.43204,28.99731],[75.43237,28.9987],[75.42776,28.99984],[75.42549,28.99595],[75.42253,28.99613],[75.42072,28.98133],[75.41871,28.97918],[75.41576,28.97911],[75.41222,28.97459],[75.40879,28.97389],[75.40757,28.97116],[75.40282,28.96993],[75.39859,28.95696],[75.4006,28.94577],[75.39995,28.94086],[75.3783,28.93806],[75.38077,28.9242],[75.37662,28.92235],[75.37463,28.91754],[75.3752,28.91505],[75.36351,28.9124],[75.34738,28.91299],[75.34315,28.91496],[75.34334,28.91767],[75.33354,28.91478],[75.33316,28.92042],[75.33063,28.9214],[75.33514,28.93335],[75.3355,28.93967],[75.35457,28.94422],[75.35744,28.94733],[75.35771,28.96707],[75.35374,28.96662],[75.35317,28.97061],[75.33528,28.97995],[75.33424,28.98174],[75.31796,28.98333],[75.31648,28.98546],[75.30225,28.98198],[75.29546,28.98294],[75.29204,28.96923],[75.29489,28.96255],[75.29906,28.9629],[75.30602,28.95983],[75.3085,28.95083],[75.30058,28.9497],[75.29821,28.93349],[75.29886,28.9264],[75.29631,28.92526],[75.29556,28.92207],[75.29384,28.92229],[75.29527,28.92579],[75.29412,28.92624],[75.29168,28.92177],[75.29497,28.92149],[75.29411,28.91771],[75.29035,28.91709],[75.29098,28.92171],[75.28315,28.92219],[75.28341,28.92365],[75.28047,28.92403],[75.28024,28.92529],[75.27821,28.92423],[75.28067,28.92674],[75.28052,28.92929],[75.27714,28.93108],[75.27401,28.93053],[75.27201,28.92811],[75.26248,28.92642],[75.26214,28.9276],[75.2596,28.92725],[75.26008,28.92918],[75.251,28.92709],[75.2502,28.92979],[75.25268,28.93092],[75.2523,28.93446],[75.24999,28.93231],[75.24446,28.93108],[75.24415,28.92876],[75.24068,28.92691],[75.24333,28.92554],[75.24024,28.91003],[75.2409,28.9027],[75.24496,28.89961],[75.24883,28.8899],[75.24759,28.88401],[75.24194,28.88215],[75.24028,28.87587],[75.23507,28.8728],[75.23069,28.86595],[75.22598,28.86614],[75.22555,28.86745],[75.22037,28.86537],[75.2228,28.85824],[75.19845,28.86155],[75.19822,28.86808],[75.19013,28.86762],[75.18766,28.86582],[75.18685,28.8616],[75.17497,28.85282],[75.17301,28.84507],[75.16803,28.84442],[75.16722,28.85212],[75.15653,28.85483],[75.15425,28.86164],[75.15759,28.86399],[75.15086,28.86758],[75.15012,28.87138],[75.14758,28.87421],[75.14481,28.87483],[75.14067,28.87207],[75.13387,28.87207],[75.12781,28.87379],[75.12822,28.87628],[75.12255,28.87682],[75.12147,28.87551],[75.10848,28.87605],[75.10827,28.87492],[75.0971,28.87337],[75.08718,28.86552],[75.07917,28.86231],[75.05007,28.85569],[75.04603,28.85428],[75.04246,28.85061],[75.03435,28.84923],[75.03051,28.85143],[75.02782,28.85065],[75.02687,28.85802],[75.02907,28.88101],[75.0323,28.88546],[75.03822,28.889],[75.03876,28.89274],[75.04482,28.89552],[75.04326,28.89625],[75.04106,28.90759],[75.04167,28.91232],[75.04338,28.914],[75.04109,28.92266],[75.03935,28.92427],[75.04213,28.92492],[75.0422,28.92809],[75.0415,28.93087],[75.03788,28.9315],[75.0397,28.93423],[75.03592,28.93842],[75.01577,28.93525],[75.01577,28.93396],[75.00971,28.93134],[75.00331,28.93062],[75.00245,28.91888],[74.99865,28.91681],[74.99652,28.9098],[74.94754,28.90681],[74.94314,28.89754],[74.9432,28.89379],[74.92315,28.89345],[74.92335,28.89594],[74.91654,28.89642],[74.91652,28.90303],[74.91875,28.90311],[74.91887,28.90514],[74.91544,28.91496],[74.91061,28.92095],[74.89985,28.92842],[74.89952,28.93191],[74.89815,28.93213],[74.90209,28.93898],[74.89244,28.93764],[74.87765,28.94299],[74.87182,28.94126],[74.87158,28.94244],[74.8676,28.94167],[74.86028,28.94401],[74.85953,28.94167],[74.8425,28.93476],[74.81789,28.93359],[74.8039,28.92946],[74.80057,28.92784],[74.80076,28.92491],[74.79143,28.91879],[74.78873,28.91924],[74.78477,28.91736],[74.7848,28.9155],[74.78268,28.91473],[74.78297,28.90924],[74.77886,28.90695],[74.77978,28.90051],[74.775,28.89978],[74.77345,28.89576],[74.76719,28.891],[74.76925,28.88662],[74.76925,28.87402],[74.77807,28.87403],[74.77772,28.87235],[74.78761,28.86855],[74.78734,28.86625],[74.78976,28.86577],[74.79181,28.85822],[74.79415,28.85671],[74.79786,28.85758],[74.80147,28.84613],[74.7987,28.84325],[74.79864,28.83701],[74.80019,28.83624],[74.80038,28.8329],[74.79925,28.83293],[74.79916,28.83042],[74.78878,28.82971],[74.77348,28.8237],[74.76321,28.82388],[74.75436,28.8301],[74.75368,28.83918],[74.75557,28.84039],[74.75,28.85379],[74.72095,28.85039],[74.71883,28.84618],[74.70866,28.84476],[74.7062,28.84249],[74.70024,28.84117],[74.69673,28.83585],[74.69296,28.83332],[74.69025,28.83617],[74.68571,28.8362],[74.6842,28.83764],[74.67514,28.83619],[74.67412,28.83748],[74.66839,28.83629],[74.65201,28.83751],[74.65094,28.83585],[74.6358,28.83636],[74.63409,28.83456],[74.63335,28.82236],[74.63479,28.8184],[74.63255,28.81256],[74.61891,28.81202],[74.61165,28.81004],[74.59649,28.81154],[74.59574,28.81714],[74.5907,28.81859],[74.59063,28.82369],[74.58765,28.82394],[74.58769,28.82555],[74.58302,28.82914],[74.55591,28.82098],[74.54275,28.81889],[74.54249,28.81654],[74.53985,28.81993],[74.5396,28.82354],[74.53664,28.82217],[74.52445,28.8259],[74.49087,28.81898],[74.48444,28.81943],[74.47724,28.81508],[74.46608,28.81745],[74.45633,28.82871],[74.43826,28.82893],[74.43586,28.8419],[74.43238,28.8459],[74.42994,28.85817],[74.41925,28.88478],[74.40039,28.88147],[74.39869,28.87793],[74.38135,28.8751],[74.3812,28.87241],[74.37715,28.8684],[74.36804,28.86416],[74.36932,28.86119],[74.36388,28.85844],[74.36209,28.8529],[74.35162,28.84864],[74.34894,28.84337],[74.33722,28.84008],[74.33437,28.83698],[74.32037,28.83142],[74.32077,28.82763],[74.3064,28.82243],[74.30342,28.81689],[74.29637,28.81464],[74.2894,28.80997],[74.28906,28.80727],[74.27031,28.79647],[74.26412,28.79559],[74.25545,28.80063],[74.25209,28.7992],[74.24983,28.8084],[74.24817,28.80744],[74.24555,28.81195],[74.23357,28.807],[74.2273,28.81032],[74.22681,28.81199],[74.21173,28.80703],[74.20784,28.80738],[74.20619,28.80938],[74.19669,28.80724],[74.1942,28.80839],[74.18707,28.80322],[74.18033,28.8008],[74.17639,28.79581],[74.17098,28.79438],[74.17223,28.78593],[74.16784,28.78271],[74.16611,28.77757],[74.16005,28.77663],[74.15934,28.76456],[74.16235,28.76444],[74.16222,28.76341],[74.15123,28.75794],[74.15136,28.75624],[74.14726,28.75609],[74.14468,28.75398],[74.14067,28.74698],[74.13973,28.73687],[74.15541,28.73783],[74.16483,28.73559],[74.17473,28.73656],[74.17393,28.73423],[74.17743,28.73267],[74.18236,28.72263],[74.1892,28.72493],[74.1934,28.70938],[74.18659,28.71054],[74.18032,28.70853],[74.15676,28.69918],[74.15692,28.69784],[74.15454,28.69688],[74.13978,28.69345],[74.12459,28.6861],[74.08018,28.67001],[74.08273,28.6589],[74.08541,28.65606],[74.08367,28.64767],[74.08408,28.6466],[74.08668,28.64763],[74.08659,28.64545],[74.08893,28.64604],[74.09148,28.6413],[74.08782,28.64008],[74.08784,28.63471],[74.09225,28.63321],[74.0907,28.62235],[74.09534,28.61297],[74.09838,28.61395],[74.10333,28.6049],[74.10572,28.605],[74.10645,28.60114],[74.10868,28.6014],[74.10754,28.58935],[74.10907,28.58543],[74.10127,28.58217],[74.10069,28.57547],[74.09771,28.57233],[74.09067,28.56985],[74.09095,28.56556],[74.08922,28.56521],[74.09012,28.56257],[74.08624,28.56012],[74.08614,28.55764],[74.0814,28.55655],[74.08274,28.5538],[74.07506,28.54955],[74.07453,28.54348],[74.06447,28.53751],[74.06433,28.53433],[74.06004,28.53123],[74.05711,28.52624],[74.05522,28.52639],[74.05951,28.51182],[74.06508,28.50076],[74.06212,28.49944],[74.06194,28.49743],[74.06394,28.49576],[74.06089,28.47927],[74.0588,28.47561],[74.05915,28.47277],[74.06148,28.47259],[74.06278,28.47054],[74.06094,28.46573],[74.0631,28.45966],[74.05685,28.45498],[74.05822,28.44765],[74.06244,28.44271],[74.06173,28.4417],[74.06625,28.4405],[74.06361,28.43744],[74.0652,28.43424],[74.06706,28.43491],[74.06964,28.42839],[74.07238,28.42778],[74.07579,28.42982],[74.07861,28.42883],[74.07878,28.42373],[74.07419,28.42308],[74.07351,28.41908],[74.06154,28.41564],[74.05807,28.41657],[74.04978,28.41508],[74.04824,28.41629],[74.02971,28.40415],[74.0279,28.3955],[74.02952,28.39424],[74.02774,28.38886],[74.02926,28.38648],[74.02772,28.37661],[74.03409,28.37284],[74.03823,28.35661],[74.04339,28.35162],[74.0439,28.34665],[74.04563,28.34489],[74.05113,28.34402],[74.05544,28.33941],[74.05533,28.33658],[74.05959,28.33708],[74.06166,28.33199],[74.0743,28.33608],[74.08613,28.33742],[74.09688,28.34403],[74.10255,28.3456],[74.10644,28.34584],[74.10712,28.34468],[74.10978,28.34661],[74.11586,28.34477],[74.12271,28.34485],[74.12634,28.34672],[74.13331,28.34622],[74.13533,28.34288],[74.14347,28.34321],[74.14309,28.34068],[74.14626,28.33717],[74.1482,28.33793],[74.1477,28.33647],[74.1532,28.32679],[74.15267,28.32328],[74.1488,28.32047],[74.14983,28.31898],[74.1687,28.32456],[74.19024,28.32748],[74.19005,28.32867],[74.19749,28.33179],[74.19707,28.32385],[74.19841,28.31995],[74.20481,28.31256],[74.20709,28.30629],[74.21063,28.30515],[74.21112,28.30315],[74.21032,28.30185],[74.20609,28.30226],[74.2071,28.2998],[74.19957,28.29546],[74.19379,28.2871],[74.19918,28.27913],[74.21021,28.28247],[74.20945,28.28058],[74.21122,28.28038],[74.21379,28.27684],[74.21464,28.27209],[74.22049,28.26916],[74.21919,28.26792],[74.22034,28.26521],[74.22509,28.26512],[74.22809,28.25802],[74.23242,28.25808],[74.23446,28.25578],[74.23474,28.2511],[74.23887,28.25212],[74.23995,28.24874],[74.24275,28.248],[74.24492,28.24937],[74.2492,28.24649],[74.25873,28.25179],[74.26109,28.2508],[74.26468,28.25197],[74.27914,28.25908],[74.28988,28.2546],[74.30414,28.25389],[74.30747,28.25188],[74.3153,28.25141],[74.3222,28.25419],[74.32317,28.24933],[74.33354,28.24077],[74.33515,28.24196],[74.34003,28.23514],[74.34147,28.23578],[74.34509,28.22877],[74.34804,28.22872],[74.3521,28.21566],[74.35541,28.21661],[74.35752,28.21376],[74.3588,28.20412],[74.35387,28.196],[74.35479,28.19328],[74.35173,28.19009],[74.34573,28.18841],[74.34981,28.17625],[74.34134,28.16933],[74.34031,28.16774],[74.34152,28.16539],[74.29526,28.14507],[74.29779,28.13717],[74.29133,28.13304],[74.2964,28.12647],[74.29786,28.11971],[74.29629,28.11676],[74.28987,28.11272],[74.29241,28.10884],[74.28601,28.09974],[74.28562,28.09389],[74.27994,28.09332],[74.27872,28.09177],[74.28086,28.08681],[74.28814,28.08226],[74.28922,28.07014],[74.2933,28.06387],[74.29691,28.05066],[74.29667,28.04411],[74.28918,28.0432],[74.28351,28.03305],[74.27533,28.02817],[74.27578,28.02436],[74.26558,28.01912],[74.26123,28.01878],[74.24449,28.00402],[74.24585,28.00281],[74.2397,27.99902],[74.24036,27.99671],[74.239,27.99594],[74.24145,27.99283],[74.24351,27.98466],[74.24141,27.98261],[74.2456,27.97056],[74.23369,27.96398],[74.23881,27.95803],[74.23924,27.95548],[74.24438,27.95532],[74.24595,27.95381],[74.24597,27.94676],[74.25135,27.94475],[74.2451,27.94304],[74.24391,27.93958],[74.24706,27.93609],[74.25285,27.93433],[74.2391,27.91635],[74.23601,27.91081],[74.2357,27.90562],[74.23051,27.90582],[74.22915,27.90391],[74.22274,27.90309],[74.22295,27.90038],[74.22465,27.89939],[74.22254,27.8982],[74.22411,27.89099],[74.22044,27.88957],[74.2219,27.88541],[74.21923,27.88403],[74.22077,27.87691],[74.21888,27.87631],[74.22496,27.86925],[74.22921,27.84429],[74.23054,27.84427],[74.23281,27.83515],[74.22994,27.8338],[74.22966,27.82376],[74.22709,27.82194],[74.22714,27.81727],[74.2195,27.81588],[74.22045,27.81262],[74.2082,27.81496],[74.20906,27.81011],[74.20328,27.81065],[74.19403,27.80746],[74.19292,27.80499],[74.18541,27.80204],[74.18603,27.79951],[74.17658,27.79626],[74.1762,27.79487],[74.16355,27.79581],[74.15676,27.79474],[74.15569,27.79999],[74.15311,27.7989],[74.14579,27.80155],[74.14081,27.80147],[74.13734,27.79866],[74.12948,27.79658],[74.11964,27.7977],[74.11915,27.79591],[74.1159,27.79477],[74.11681,27.79358],[74.11025,27.78984],[74.11024,27.78835],[74.09787,27.78206],[74.09241,27.77309],[74.09159,27.77421],[74.0875,27.77276],[74.08812,27.76521],[74.0847,27.76368],[74.07277,27.74404],[74.06683,27.74056],[74.06678,27.73093],[74.04034,27.71991],[74.03601,27.73017],[74.03093,27.7293],[74.01953,27.72186],[73.99807,27.73363],[74.02386,27.76183],[74.01907,27.7635],[74.0123,27.76272],[73.99934,27.75617],[73.99075,27.75426],[73.99262,27.76612],[73.9914,27.7763],[73.99927,27.77595],[74.00453,27.77397],[74.00599,27.7749],[74.00766,27.77249],[74.01238,27.77243],[74.01301,27.77083],[74.01918,27.76892],[74.02712,27.76938],[74.02844,27.76722],[74.0308,27.76816],[74.02566,27.77445],[74.01292,27.78435],[74.00306,27.78867],[73.99287,27.81063],[73.99084,27.80713],[73.98187,27.80253],[73.96324,27.80241],[73.9579,27.8008],[73.95847,27.7996],[73.95278,27.79408],[73.93194,27.78479],[73.92288,27.78241],[73.91727,27.78396],[73.91303,27.78846],[73.9089,27.7872],[73.90366,27.78974],[73.8945,27.78888],[73.89203,27.78697],[73.88748,27.79105],[73.87967,27.78695],[73.87584,27.78265],[73.86796,27.77908],[73.86953,27.77526],[73.86743,27.77363],[73.86681,27.7611],[73.86956,27.75126],[73.86773,27.74104],[73.86423,27.73847],[73.86381,27.73397],[73.86622,27.7284],[73.86913,27.72605],[73.86988,27.71888],[73.875,27.71513],[73.87409,27.71347],[73.87742,27.70456],[73.87724,27.69708],[73.8759,27.69326],[73.87078,27.69139],[73.86637,27.68672],[73.87146,27.67056],[73.87187,27.6629],[73.85773,27.65983],[73.86473,27.65065],[73.86884,27.6495],[73.87162,27.64666],[73.87374,27.64733],[73.87991,27.6274],[73.88525,27.62182],[73.88802,27.60749],[73.88875,27.60608],[73.89382,27.60498],[73.89599,27.60212],[73.88207,27.59285],[73.87817,27.5882],[73.87705,27.58161],[73.87517,27.5798],[73.88008,27.57063],[73.88112,27.56419],[73.88525,27.55919],[73.88491,27.54837],[73.87527,27.54277],[73.87534,27.54145],[73.87847,27.53763],[73.88811,27.51476],[73.89176,27.5],[73.89751,27.49555],[73.8994,27.49597],[73.90238,27.492],[73.90575,27.49193],[73.90836,27.48942],[73.91744,27.49104],[73.93355,27.49918],[73.94219,27.50088],[73.94609,27.50697],[73.95673,27.5105],[73.96043,27.50551],[73.97122,27.50354],[73.97798,27.50427],[73.97809,27.50685],[73.98836,27.51079],[73.99121,27.50446],[73.99673,27.51093],[73.99999,27.50857],[74.00207,27.51181],[74.00045,27.51328],[74.00268,27.51512],[74.00537,27.51178],[74.00978,27.51367],[74.01038,27.51521],[74.00647,27.51912],[74.018,27.52786],[74.0198,27.52775],[74.02261,27.53183],[74.0299,27.53535],[74.03357,27.5293],[74.03765,27.5263],[74.03998,27.52708],[74.0436,27.52542],[74.04599,27.52217],[74.05279,27.51874],[74.0613,27.50881],[74.06323,27.50984],[74.0634,27.5071],[74.06688,27.50392],[74.06451,27.50142],[74.06752,27.49393],[74.07791,27.48765],[74.07956,27.48562],[74.07954,27.48096],[74.08237,27.47815],[74.09649,27.4777],[74.11192,27.47432],[74.12129,27.46175],[74.11869,27.46003],[74.11939,27.45891],[74.13203,27.46165],[74.13492,27.45599],[74.13617,27.45669],[74.14196,27.452],[74.14718,27.44217],[74.14932,27.43239],[74.14919,27.43052],[74.1408,27.42715],[74.14626,27.41706],[74.14821,27.41811],[74.15572,27.41105],[74.1828,27.42434],[74.195,27.422],[74.20384,27.42274],[74.20083,27.44592],[74.20381,27.45704],[74.20353,27.46471],[74.20989,27.46797],[74.20896,27.47066],[74.20669,27.46989],[74.20359,27.47203],[74.20154,27.47712],[74.19552,27.47698],[74.19146,27.48118],[74.19401,27.48256],[74.19358,27.48856],[74.1972,27.49024],[74.19605,27.49873],[74.20723,27.50664],[74.209,27.50639],[74.21937,27.51617],[74.22544,27.51774],[74.22689,27.52221],[74.23851,27.52536],[74.23618,27.53065],[74.23912,27.53325],[74.23756,27.53786],[74.24072,27.54111],[74.2408,27.54541],[74.24506,27.5467],[74.24355,27.55562],[74.24786,27.55681],[74.25317,27.56248],[74.25665,27.56338],[74.25475,27.57497],[74.25772,27.57645],[74.25415,27.60122],[74.26401,27.60561],[74.2686,27.60901],[74.26786,27.61035],[74.27492,27.61379],[74.27559,27.62181],[74.2788,27.6237],[74.2786,27.62528],[74.29062,27.63062],[74.31213,27.63687],[74.30874,27.64537],[74.31096,27.64663],[74.31008,27.64918],[74.32251,27.65334],[74.33368,27.66105],[74.33327,27.67365],[74.34284,27.67812],[74.34172,27.68119],[74.35368,27.68584],[74.35678,27.6844],[74.36418,27.68498],[74.36726,27.68279],[74.37163,27.6839],[74.37225,27.68276],[74.38837,27.69181],[74.39518,27.69796],[74.40371,27.70053],[74.40981,27.68913],[74.43406,27.69231],[74.43989,27.69146],[74.45079,27.69464],[74.45102,27.6934],[74.45381,27.69365],[74.4564,27.6874],[74.45986,27.6882],[74.463,27.68165],[74.47436,27.6859],[74.49193,27.68822],[74.49505,27.67846],[74.49463,27.66652],[74.52656,27.6761],[74.53851,27.66381],[74.54318,27.66562],[74.54521,27.66382],[74.55531,27.6652],[74.56084,27.66764],[74.55978,27.66967],[74.56272,27.66967],[74.56834,27.67374],[74.58416,27.69154],[74.59034,27.6943],[74.59802,27.70259],[74.60905,27.70762],[74.61511,27.69911],[74.61922,27.69654],[74.62389,27.69871],[74.62683,27.69505],[74.62193,27.69011],[74.62244,27.68835],[74.60543,27.67839],[74.60736,27.67469],[74.61159,27.67215],[74.61261,27.66546],[74.61516,27.66138],[74.61739,27.65853],[74.62024,27.65975],[74.62467,27.65427],[74.627,27.64835],[74.63742,27.65361],[74.64756,27.65474],[74.66487,27.66109],[74.66782,27.66438],[74.67197,27.6655],[74.67126,27.66727],[74.67268,27.66898],[74.67443,27.66955],[74.67509,27.66702],[74.69223,27.672],[74.69933,27.679],[74.71117,27.67978],[74.71452,27.6768],[74.72055,27.67837],[74.72356,27.67609],[74.72549,27.67776],[74.72833,27.67667],[74.73667,27.67778],[74.73921,27.68328],[74.74662,27.68603],[74.74888,27.68957],[74.74956,27.70138],[74.74834,27.70566],[74.75015,27.70895],[74.74803,27.71995],[74.74051,27.71847],[74.73875,27.72484],[74.72791,27.72004],[74.7271,27.72202],[74.72959,27.72519],[74.72721,27.73038],[74.72782,27.73259],[74.73151,27.74092],[74.73115,27.74322],[74.7344,27.74557],[74.73286,27.74871],[74.73607,27.75252],[74.73377,27.75598],[74.74335,27.76675],[74.75625,27.76995],[74.75757,27.76701],[74.76202,27.76809],[74.76408,27.76587],[74.77538,27.77242],[74.78623,27.7756],[74.78507,27.77839],[74.79112,27.7815],[74.79029,27.78397],[74.79993,27.78888],[74.79872,27.79211],[74.81767,27.80141],[74.81125,27.81472],[74.80434,27.82469],[74.80268,27.83076],[74.79567,27.84089],[74.78619,27.83603],[74.77895,27.83439],[74.77443,27.84041],[74.7729,27.84571],[74.77036,27.84571],[74.76759,27.84856],[74.76455,27.85425],[74.7651,27.85879],[74.75681,27.85847],[74.75427,27.86019],[74.75039,27.85927],[74.74452,27.86165],[74.73768,27.85865],[74.73541,27.86336],[74.7329,27.86488],[74.73091,27.87104],[74.73126,27.87252],[74.7384,27.87252],[74.74275,27.87488],[74.7421,27.87712],[74.73636,27.87524],[74.73079,27.87634],[74.73558,27.87996],[74.73345,27.88648],[74.73678,27.89145],[74.74413,27.89216],[74.77611,27.90129],[74.77765,27.8992],[74.78585,27.90018],[74.787,27.89915],[74.78883,27.90059],[74.79263,27.89446],[74.81588,27.90655],[74.82647,27.90908],[74.82837,27.91317],[74.82717,27.91724],[74.83212,27.92354],[74.83096,27.92533],[74.82685,27.92487],[74.82465,27.92994],[74.82246,27.9307],[74.81939,27.94187],[74.80461,27.94021],[74.80114,27.94618],[74.7972,27.94625],[74.79632,27.94966],[74.79354,27.9522],[74.78495,27.95355],[74.78251,27.95796],[74.77546,27.96368],[74.77546,27.96714],[74.77252,27.97419],[74.76986,27.97506],[74.76924,27.98011],[74.76457,27.98094],[74.76095,27.98879],[74.76417,27.99228],[74.76816,27.99175],[74.77482,27.99801],[74.79217,28.00347],[74.79165,28.01],[74.79295,28.0154],[74.79484,28.01683],[74.79294,28.02449],[74.79766,28.02721],[74.80064,28.02705],[74.80315,28.03037],[74.80244,28.03703],[74.80447,28.04076],[74.80374,28.04305],[74.80577,28.04421],[74.80386,28.04852],[74.80626,28.05311],[74.80917,28.05449],[74.80717,28.0614],[74.80207,28.06603],[74.79785,28.06721],[74.79663,28.07118],[74.78757,28.07477],[74.78565,28.08149],[74.7869,28.08683],[74.78836,28.08702],[74.78744,28.09296],[74.7896,28.09555],[74.78893,28.09835],[74.7905,28.10306],[74.79439,28.10525],[74.79281,28.111],[74.79474,28.11545],[74.80748,28.11834],[74.80873,28.11445],[74.8142,28.11475],[74.81478,28.11279],[74.81758,28.11355],[74.81864,28.11222],[74.82703,28.1123],[74.82919,28.11293],[74.8369,28.12299],[74.85866,28.13358],[74.85718,28.14138],[74.8619,28.14028],[74.8651,28.14152],[74.86572,28.14562],[74.87095,28.14604],[74.87216,28.15115],[74.88323,28.16727],[74.88396,28.17995],[74.88857,28.1895],[74.89664,28.1923],[74.89743,28.191],[74.90219,28.19077],[74.91945,28.19528],[74.92194,28.19414],[74.93097,28.19628],[74.93149,28.1947],[74.94049,28.1946],[74.94201,28.19],[74.94627,28.1852],[74.96306,28.19415],[75.00319,28.20303],[75.00573,28.20099],[75.0055,28.19909],[75.00795,28.19968],[75.00951,28.19838],[75.01224,28.19347],[75.02013,28.19765],[75.02516,28.19826],[75.02461,28.20646],[75.0288,28.20803],[75.02751,28.21463],[75.03604,28.21849],[75.03464,28.22155],[75.04444,28.22447],[75.04929,28.22814],[75.04904,28.23053],[75.04495,28.23067],[75.04419,28.23429],[75.04613,28.23466],[75.04133,28.24257],[75.04207,28.24752],[75.04713,28.24882],[75.04576,28.2549],[75.06014,28.25859],[75.06587,28.26187],[75.06666,28.2643],[75.07697,28.26842],[75.07943,28.26397],[75.08813,28.26715],[75.09297,28.2652],[75.09816,28.26549],[75.10497,28.27277],[75.11372,28.27641],[75.11486,28.28222],[75.12368,28.28888],[75.13492,28.28936],[75.14549,28.29312],[75.14621,28.29597],[75.14304,28.29832],[75.14342,28.30546],[75.14625,28.3105],[75.15315,28.31324],[75.14922,28.32013],[75.14775,28.33272],[75.16279,28.33879],[75.16404,28.3441],[75.15481,28.35696],[75.15321,28.36479],[75.15106,28.36447],[75.14605,28.38181],[75.14364,28.38539],[75.12915,28.39015],[75.12879,28.39315],[75.12581,28.39687],[75.128,28.40086],[75.1277,28.406],[75.14038,28.41064],[75.14989,28.41198],[75.15072,28.40991],[75.15536,28.41074],[75.15851,28.40858],[75.16023,28.3985],[75.16369,28.39055],[75.16404,28.38787],[75.16268,28.38678],[75.16369,28.38055],[75.17845,28.38658],[75.18113,28.38399],[75.18547,28.38459],[75.18679,28.38206],[75.20315,28.38915],[75.20914,28.3897],[75.22458,28.39588],[75.22893,28.40468],[75.22316,28.40309],[75.22016,28.40793],[75.21868,28.41696],[75.21724,28.41797],[75.21759,28.422],[75.21929,28.42281],[75.21808,28.42949],[75.23498,28.44005],[75.23322,28.44138],[75.23234,28.4566],[75.23879,28.45934],[75.24338,28.45933],[75.24943,28.4644],[75.25094,28.46412],[75.26212,28.45104],[75.26495,28.45177],[75.26504,28.44991],[75.27773,28.45186],[75.28988,28.42533],[75.29733,28.42902],[75.30029,28.42804],[75.3017,28.42005],[75.30389,28.41722],[75.30955,28.41416],[75.31412,28.40931],[75.31622,28.4043],[75.32078,28.40463],[75.32751,28.39458],[75.33013,28.39505],[75.32971,28.37842],[75.33269,28.3666],[75.33687,28.36551],[75.34027,28.36022],[75.34765,28.36232],[75.34984,28.3595],[75.35267,28.3591],[75.35276,28.3561],[75.35731,28.35724],[75.35851,28.34795],[75.36188,28.34868],[75.36243,28.34746],[75.36689,28.34916],[75.36909,28.34609],[75.37757,28.34431],[75.37867,28.33866],[75.3898,28.34076],[75.39126,28.33721],[75.39727,28.33899],[75.40156,28.33575],[75.40311,28.33729],[75.41123,28.33833],[75.41096,28.34181],[75.41761,28.34253],[75.41917,28.34439],[75.41845,28.3515],[75.41646,28.35213],[75.41502,28.3572],[75.41539,28.36418],[75.44281,28.36778],[75.44627,28.36431],[75.44883,28.3643],[75.44845,28.35881],[75.45136,28.3496],[75.45684,28.34007],[75.47627,28.34361],[75.49195,28.34125],[75.49247,28.33764],[75.50894,28.34066],[75.51203,28.34748],[75.51108,28.36148],[75.51214,28.3695],[75.51643,28.37177],[75.52863,28.37381],[75.52856,28.38523],[75.53924,28.38447],[75.53946,28.38317],[75.54183,28.383],[75.54233,28.37804],[75.55286,28.38058],[75.56757,28.38043],[75.56722,28.39052],[75.56578,28.39088],[75.56834,28.41283],[75.56991,28.41262],[75.56996,28.41055],[75.59419,28.409],[75.59574,28.40594],[75.59846,28.40655],[75.59858,28.40798],[75.61114,28.40806],[75.61177,28.41743],[75.60103,28.42815],[75.59273,28.43021],[75.59288,28.43395],[75.58899,28.43537],[75.58564,28.44137],[75.58851,28.44726],[75.60308,28.44921],[75.60073,28.4522],[75.59995,28.4568],[75.60192,28.45697],[75.60526,28.46543],[75.61068,28.48617],[75.61088,28.49382],[75.60866,28.50103],[75.60735,28.50148],[75.60815,28.50824],[75.6334,28.51217],[75.63672,28.51195],[75.63889,28.50948],[75.66499,28.51028],[75.66835,28.51796],[75.67087,28.51807],[75.67027,28.52799],[75.66554,28.53617],[75.65372,28.53654],[75.64524,28.53937],[75.63948,28.54416],[75.63348,28.54444],[75.6317,28.5539],[75.62572,28.5658],[75.62575,28.57569],[75.62322,28.58901],[75.62406,28.59564],[75.62218,28.60172],[75.6182,28.60344],[75.5911,28.60558],[75.58769,28.60799],[75.58627,28.61319],[75.56152,28.61321],[75.56073,28.63592],[75.55486,28.64384],[75.5498,28.64104],[75.54425,28.65415],[75.54509,28.65943],[75.54121,28.66049],[75.54502,28.6831],[75.53891,28.69478],[75.53993,28.69672],[75.53745,28.71801],[75.53991,28.72134],[75.54002,28.72448],[75.53046,28.73825],[75.5361,28.74517],[75.52914,28.74864],[75.52863,28.75217],[75.52389,28.75716],[75.52404,28.76098],[75.52212,28.76101],[75.52313,28.76364],[75.52147,28.76337],[75.52301,28.76608],[75.52206,28.7679],[75.51655,28.77038],[75.51796,28.77308],[75.51697,28.77468],[75.51405,28.77318],[75.51067,28.7811],[75.50854,28.78043],[75.50326,28.78253],[75.50466,28.78769],[75.50796,28.78873],[75.50609,28.79236],[75.50845,28.79131],[75.51127,28.79364],[75.51068,28.79567],[75.50868,28.79564],[75.50891,28.80272],[75.51182,28.80414],[75.51625,28.81242],[75.51937,28.81274],[75.51855,28.81706],[75.52011,28.82218],[75.519,28.82627],[75.52025,28.83399],[75.51555,28.83423],[75.51532,28.83983],[75.51074,28.83828],[75.50783,28.83922],[75.50767,28.84281],[75.50506,28.84435],[75.50529,28.85127],[75.50202,28.85093],[75.5,28.84728],[75.49847,28.84896],[75.49697,28.85697],[75.49861,28.87044],[75.49654,28.89631],[75.49425,28.89739],[75.49295,28.90114],[75.48981,28.90105],[75.48757,28.90317],[75.48633,28.9066],[75.48728,28.90795],[75.48398,28.90753],[75.48492,28.90865],[75.4743,28.92106],[75.47354,28.92426],[75.47633,28.9321],[75.47107,28.93399],[75.46954,28.94292],[75.45952,28.95159],[75.45367,28.95428],[75.45154,28.96958],[75.45369,28.97135],[75.45243,28.97238],[75.45159,28.97057],[75.44861,28.97119],[75.44905,28.97635],[75.45166,28.97635],[75.45185,28.98424],[75.44458,28.98641],[75.44156,28.99146],[75.44114,28.99],[75.43409,28.99063],[75.43477,28.99351],[75.43161,28.99349],[75.43204,28.99731]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"97","area_level":"District","area_name":"Dausa","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.68996,27.11716],[76.68817,27.1176],[76.68671,27.11793],[76.68614,27.11448],[76.68743,27.11422],[76.68771,27.11513],[76.6889,27.1151],[76.68996,27.11716]]],[[[76.69423,27.12334],[76.69061,27.12458],[76.69057,27.12453],[76.69019,27.12332],[76.6939,27.12215],[76.69423,27.12334]]],[[[76.69698,27.13129],[76.69492,27.13226],[76.6936,27.13273],[76.69172,27.13272],[76.69147,27.1312],[76.69071,27.13114],[76.68859,27.13149],[76.68847,27.13091],[76.68952,27.13069],[76.68942,27.12987],[76.69167,27.12885],[76.6929,27.12857],[76.6939,27.12857],[76.6954,27.12794],[76.69653,27.12732],[76.69747,27.12855],[76.69927,27.12946],[76.69848,27.13015],[76.69698,27.13129]]],[[[76.89471,27.23234],[76.88771,27.221],[76.86817,27.23004],[76.85847,27.20932],[76.85641,27.20774],[76.84628,27.21047],[76.8458,27.20648],[76.84252,27.20737],[76.84094,27.20291],[76.8437,27.20086],[76.84355,27.19324],[76.85066,27.19087],[76.84778,27.17696],[76.84083,27.16262],[76.82722,27.16297],[76.82863,27.15201],[76.82775,27.14113],[76.82615,27.13605],[76.82373,27.1337],[76.8291,27.1178],[76.83957,27.11896],[76.83652,27.11138],[76.83277,27.08401],[76.82951,27.07515],[76.8221,27.07494],[76.82103,27.07692],[76.8173,27.07692],[76.81317,27.08059],[76.81125,27.08041],[76.81095,27.08976],[76.80828,27.09155],[76.80182,27.10236],[76.8073,27.11083],[76.8116,27.12316],[76.80591,27.12607],[76.79985,27.12609],[76.79865,27.13148],[76.79387,27.13875],[76.78863,27.12834],[76.78914,27.12465],[76.78499,27.11246],[76.76498,27.11409],[76.76413,27.10985],[76.75951,27.10692],[76.73148,27.10951],[76.72122,27.10659],[76.70052,27.11448],[76.69578,27.11443],[76.69458,27.11306],[76.68611,27.11393],[76.68572,27.11256],[76.68203,27.11405],[76.67952,27.11226],[76.67692,27.11271],[76.67538,27.11065],[76.67216,27.11067],[76.66941,27.09834],[76.66596,27.09207],[76.65318,27.09683],[76.65165,27.0949],[76.63775,27.09202],[76.63162,27.09494],[76.62938,27.099],[76.63278,27.10304],[76.62588,27.10765],[76.6223,27.10763],[76.62679,27.11206],[76.62604,27.11449],[76.62853,27.11825],[76.62819,27.1233],[76.62248,27.12426],[76.61791,27.12716],[76.61994,27.12857],[76.61948,27.13124],[76.62309,27.13686],[76.62242,27.13967],[76.64679,27.16389],[76.63944,27.16667],[76.63044,27.16675],[76.6296,27.16944],[76.61831,27.17087],[76.60813,27.17685],[76.60596,27.17442],[76.59914,27.17596],[76.59396,27.17327],[76.58493,27.17653],[76.58151,27.17525],[76.58144,27.17317],[76.57832,27.17322],[76.57822,27.17529],[76.56834,27.17555],[76.56935,27.16801],[76.56203,27.16819],[76.56209,27.16977],[76.55419,27.17191],[76.55145,27.16439],[76.55283,27.15964],[76.55121,27.15655],[76.54882,27.15675],[76.54749,27.15483],[76.54527,27.14811],[76.54804,27.14491],[76.5484,27.14649],[76.54941,27.14596],[76.54961,27.14241],[76.55354,27.13841],[76.54864,27.13283],[76.54953,27.12948],[76.54814,27.12467],[76.5394,27.13063],[76.5378,27.12675],[76.53504,27.12801],[76.52683,27.12679],[76.52681,27.12497],[76.5215,27.12487],[76.51701,27.11714],[76.51229,27.11413],[76.50324,27.11657],[76.48834,27.11324],[76.48067,27.10901],[76.47449,27.09723],[76.47051,27.09572],[76.46855,27.08907],[76.46425,27.08713],[76.46401,27.08265],[76.45557,27.07539],[76.44797,27.07743],[76.44054,27.08433],[76.43855,27.08286],[76.43313,27.08915],[76.42746,27.10264],[76.42782,27.10957],[76.42565,27.11751],[76.42613,27.128],[76.41705,27.12949],[76.41098,27.12661],[76.4039,27.12646],[76.39745,27.12331],[76.39956,27.11858],[76.39692,27.11255],[76.39742,27.10279],[76.39513,27.10253],[76.39077,27.09224],[76.39114,27.08583],[76.39412,27.08544],[76.3926,27.08282],[76.38888,27.0822],[76.39171,27.08092],[76.39198,27.07839],[76.38278,27.08109],[76.38167,27.07619],[76.37567,27.07616],[76.36784,27.06782],[76.35964,27.06223],[76.35772,27.0571],[76.35382,27.0564],[76.35251,27.05458],[76.34185,27.0598],[76.32969,27.05961],[76.32765,27.05543],[76.31702,27.06045],[76.28098,27.06438],[76.27873,27.05199],[76.28078,27.0511],[76.27843,27.04341],[76.26781,27.03443],[76.26653,27.03105],[76.26057,27.03175],[76.25614,27.02924],[76.25975,27.0232],[76.25854,27.02184],[76.25619,27.02261],[76.25474,27.02012],[76.24648,27.02133],[76.24509,27.01915],[76.24223,27.01973],[76.2389,27.01544],[76.2368,27.00739],[76.23187,27.00766],[76.22467,26.98105],[76.22494,26.96459],[76.22289,26.95412],[76.22718,26.95382],[76.22675,26.95209],[76.23331,26.95034],[76.24405,26.94988],[76.24742,26.94865],[76.24716,26.94697],[76.24869,26.94647],[76.24598,26.94108],[76.23803,26.9419],[76.23685,26.9436],[76.23546,26.94266],[76.23384,26.9448],[76.22954,26.93412],[76.23414,26.93285],[76.23515,26.93529],[76.23546,26.9334],[76.2392,26.93253],[76.23768,26.92531],[76.2315,26.92138],[76.22817,26.91556],[76.22034,26.91871],[76.21974,26.91602],[76.22132,26.91573],[76.21979,26.90887],[76.21771,26.90854],[76.2248,26.9056],[76.22304,26.89995],[76.22479,26.89973],[76.22424,26.89741],[76.23708,26.894],[76.23513,26.88088],[76.23785,26.88017],[76.23866,26.87726],[76.24644,26.87566],[76.24676,26.87396],[76.25013,26.87255],[76.26157,26.87253],[76.26334,26.86641],[76.25352,26.86368],[76.2485,26.86571],[76.24748,26.86419],[76.24928,26.86372],[76.24876,26.86073],[76.24509,26.84933],[76.24074,26.84448],[76.24758,26.83939],[76.24839,26.83481],[76.26125,26.83398],[76.26128,26.83002],[76.25804,26.82338],[76.25244,26.82005],[76.24881,26.81225],[76.2554,26.8035],[76.25062,26.80031],[76.24892,26.79708],[76.24209,26.80037],[76.24019,26.79832],[76.23171,26.80204],[76.22871,26.805],[76.22943,26.80937],[76.2268,26.80939],[76.22599,26.80642],[76.2236,26.80603],[76.22245,26.80378],[76.22105,26.80429],[76.2214,26.80198],[76.21924,26.80344],[76.22,26.80011],[76.21354,26.80144],[76.20832,26.79951],[76.20819,26.80082],[76.20447,26.80102],[76.2048,26.79553],[76.2078,26.79544],[76.20659,26.79369],[76.20496,26.79399],[76.20528,26.79098],[76.19852,26.78937],[76.19936,26.78806],[76.1971,26.78534],[76.198,26.78372],[76.19639,26.78297],[76.19322,26.7852],[76.19275,26.78411],[76.19477,26.7833],[76.19438,26.78151],[76.19714,26.77854],[76.19472,26.76887],[76.19351,26.76765],[76.18719,26.769],[76.18648,26.76719],[76.18071,26.76575],[76.18277,26.76342],[76.18573,26.76383],[76.18516,26.75813],[76.18233,26.75914],[76.18204,26.75731],[76.17938,26.75737],[76.18022,26.75174],[76.18437,26.75387],[76.18354,26.74994],[76.18839,26.74874],[76.18866,26.75161],[76.19327,26.75264],[76.18791,26.74144],[76.19844,26.73719],[76.19639,26.73287],[76.19034,26.736],[76.18639,26.73558],[76.18251,26.73207],[76.18359,26.7297],[76.18226,26.72995],[76.18162,26.72804],[76.18338,26.72769],[76.18332,26.72557],[76.18985,26.72679],[76.19098,26.72477],[76.1937,26.72565],[76.19638,26.72396],[76.20102,26.72735],[76.21135,26.72355],[76.21066,26.72094],[76.20927,26.72256],[76.20625,26.72104],[76.20779,26.71978],[76.2038,26.71363],[76.19599,26.71391],[76.19454,26.70993],[76.19044,26.71082],[76.18666,26.70126],[76.18717,26.69918],[76.18345,26.69607],[76.17981,26.68694],[76.17124,26.68981],[76.17494,26.70637],[76.17072,26.70839],[76.17052,26.71031],[76.1762,26.71427],[76.16866,26.71496],[76.16819,26.71742],[76.16486,26.71754],[76.15153,26.7086],[76.15061,26.69872],[76.14969,26.69687],[76.14662,26.69842],[76.14476,26.6939],[76.15032,26.69298],[76.1564,26.6815],[76.15237,26.67632],[76.15577,26.67018],[76.15304,26.66737],[76.1583,26.66375],[76.15855,26.66192],[76.15411,26.65892],[76.16435,26.64528],[76.16318,26.64233],[76.1645,26.63912],[76.16784,26.63768],[76.1735,26.638],[76.17424,26.63538],[76.17938,26.63174],[76.18088,26.62523],[76.17582,26.61899],[76.17727,26.61589],[76.18352,26.61209],[76.17661,26.60218],[76.17519,26.60175],[76.17098,26.60535],[76.16764,26.60227],[76.16576,26.58683],[76.16306,26.57941],[76.15659,26.57455],[76.156,26.571],[76.16199,26.56689],[76.16053,26.56418],[76.15683,26.56257],[76.15691,26.55801],[76.15338,26.54735],[76.15346,26.52896],[76.15508,26.52248],[76.1513,26.51866],[76.14951,26.51101],[76.15314,26.50317],[76.16857,26.49591],[76.17936,26.48298],[76.19248,26.48038],[76.2072,26.47487],[76.22437,26.46326],[76.23539,26.46397],[76.24288,26.46116],[76.24522,26.45895],[76.24274,26.45518],[76.2413,26.44781],[76.24865,26.44287],[76.25916,26.44481],[76.26831,26.44964],[76.27864,26.44797],[76.29176,26.45576],[76.29951,26.45389],[76.30591,26.45755],[76.31617,26.45847],[76.32348,26.45617],[76.33413,26.44692],[76.3399,26.43565],[76.34172,26.42524],[76.33981,26.41345],[76.34141,26.40974],[76.36576,26.40182],[76.37828,26.39265],[76.39472,26.38723],[76.40357,26.37881],[76.40604,26.38329],[76.40484,26.38442],[76.40649,26.38633],[76.4061,26.38952],[76.40935,26.38827],[76.41047,26.39014],[76.40917,26.39311],[76.41038,26.39499],[76.4121,26.39475],[76.4134,26.39798],[76.41253,26.40164],[76.41432,26.40927],[76.41188,26.41608],[76.4215,26.42029],[76.42445,26.42468],[76.42673,26.43501],[76.43254,26.43495],[76.43932,26.44227],[76.44229,26.44336],[76.44853,26.47172],[76.45433,26.47834],[76.46513,26.47587],[76.46727,26.4849],[76.47054,26.49065],[76.47437,26.49033],[76.47716,26.49309],[76.47899,26.5],[76.47603,26.51735],[76.47095,26.51601],[76.46567,26.52083],[76.46192,26.52141],[76.45841,26.53455],[76.45906,26.54451],[76.44899,26.55252],[76.44829,26.55659],[76.44387,26.56],[76.43891,26.55654],[76.43727,26.54995],[76.43356,26.55017],[76.42329,26.54293],[76.41121,26.54488],[76.41585,26.55119],[76.40643,26.55573],[76.40707,26.5624],[76.40386,26.56583],[76.40513,26.57185],[76.41452,26.58686],[76.41415,26.58935],[76.41857,26.5998],[76.41922,26.6073],[76.42431,26.60995],[76.43526,26.62624],[76.44289,26.64003],[76.44438,26.64647],[76.45024,26.65122],[76.45524,26.66496],[76.46335,26.66923],[76.46365,26.6779],[76.45672,26.68338],[76.45346,26.68814],[76.45701,26.68923],[76.46642,26.7017],[76.47173,26.71463],[76.48025,26.72449],[76.47998,26.73256],[76.48142,26.73525],[76.4989,26.75021],[76.49885,26.75189],[76.51021,26.7636],[76.5368,26.78192],[76.54161,26.77852],[76.54243,26.77229],[76.55432,26.77774],[76.56968,26.77124],[76.57425,26.78044],[76.5747,26.78809],[76.59431,26.77844],[76.60238,26.77803],[76.60427,26.78044],[76.61348,26.78214],[76.61714,26.78846],[76.61565,26.79168],[76.62222,26.7925],[76.63,26.80155],[76.64253,26.80815],[76.67066,26.83437],[76.68476,26.8442],[76.71229,26.85872],[76.71467,26.86297],[76.75373,26.8768],[76.77252,26.89121],[76.77544,26.89421],[76.76813,26.90298],[76.76667,26.90786],[76.77268,26.91235],[76.78228,26.91592],[76.79323,26.93334],[76.79807,26.96415],[76.79606,26.97135],[76.79715,26.98442],[76.80075,26.98596],[76.81014,26.99697],[76.81507,26.99912],[76.81661,26.99762],[76.82821,26.9995],[76.83952,26.99526],[76.8594,26.99414],[76.88015,26.98313],[76.8822,26.97496],[76.90198,26.97163],[76.90215,26.96864],[76.9127,26.9606],[76.91756,26.95056],[76.92394,26.94665],[76.94169,26.93025],[76.95271,26.91518],[76.95356,26.90789],[76.9574,26.89926],[76.95637,26.89165],[76.9579,26.8876],[76.95259,26.87223],[76.95426,26.87005],[76.95366,26.86791],[76.96069,26.86243],[76.96549,26.86045],[76.97606,26.86014],[76.98616,26.85769],[76.9868,26.86108],[76.99944,26.87116],[77.01079,26.865],[77.04451,26.86837],[77.05992,26.86585],[77.07539,26.85834],[77.07197,26.86958],[77.06718,26.87257],[77.06699,26.8755],[77.06193,26.8807],[77.06348,26.88245],[77.06019,26.88655],[77.05928,26.89165],[77.06112,26.89775],[77.05861,26.90051],[77.06254,26.90142],[77.05958,26.90538],[77.06066,26.91057],[77.05936,26.91113],[77.0595,26.91438],[77.04793,26.91281],[77.04111,26.90843],[77.03937,26.91208],[77.03764,26.91255],[77.03693,26.9159],[77.029,26.92146],[77.02921,26.92416],[77.01707,26.92684],[77.01288,26.93212],[77.02464,26.94145],[77.02065,26.94663],[77.01757,26.9737],[77.01448,26.97804],[77.00636,26.97433],[77.00805,26.98691],[77.00592,27.00441],[76.99881,27.01541],[76.99526,27.01605],[76.98831,27.02082],[76.98656,27.02428],[76.97987,27.03016],[76.98456,27.03794],[77.00331,27.03666],[77.00328,27.0355],[77.01022,27.03389],[77.01044,27.03496],[77.01122,27.04291],[76.99379,27.04979],[76.9955,27.06092],[76.97569,27.06769],[76.97439,27.07014],[76.97031,27.07113],[76.96967,27.07672],[76.97141,27.08187],[76.98242,27.08424],[76.98731,27.08953],[76.98286,27.09399],[76.98353,27.09833],[76.97975,27.10162],[76.98113,27.10465],[76.98464,27.10644],[76.99015,27.10423],[76.99253,27.11117],[76.9782,27.11952],[76.97051,27.12741],[76.95988,27.12564],[76.96229,27.13572],[76.96093,27.14404],[76.94569,27.14682],[76.94377,27.13918],[76.9349,27.14058],[76.93116,27.13711],[76.92771,27.13661],[76.91563,27.14152],[76.91857,27.15123],[76.89517,27.16136],[76.89579,27.16865],[76.89421,27.17052],[76.89688,27.17517],[76.90878,27.17554],[76.91148,27.18093],[76.91086,27.18285],[76.90656,27.18372],[76.90698,27.18676],[76.90513,27.18799],[76.90526,27.19196],[76.90745,27.19484],[76.90498,27.19658],[76.90653,27.2011],[76.905,27.20307],[76.90536,27.21103],[76.89995,27.21361],[76.90439,27.21843],[76.89897,27.22194],[76.90211,27.2289],[76.89471,27.23234]]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"98","area_level":"District","area_name":"Dholpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.15178,26.94759],[78.14448,26.94988],[78.1328,26.94737],[78.12451,26.94928],[78.11856,26.94697],[78.11312,26.94263],[78.11177,26.93976],[78.11265,26.93666],[78.12203,26.93544],[78.12336,26.93216],[78.12108,26.93204],[78.12129,26.92191],[78.10517,26.92682],[78.10176,26.91783],[78.10158,26.91635],[78.1084,26.91219],[78.11265,26.90291],[78.11293,26.89901],[78.11066,26.89561],[78.10645,26.89713],[78.10434,26.90343],[78.10021,26.9049],[78.09438,26.9033],[78.09867,26.89659],[78.09604,26.89378],[78.07173,26.90637],[78.06695,26.91139],[78.0641,26.90652],[78.05952,26.90885],[78.05585,26.90691],[78.04881,26.91013],[78.04805,26.90747],[78.05126,26.9017],[78.05212,26.89421],[78.05019,26.87578],[78.05172,26.87072],[78.05597,26.86839],[78.04466,26.86998],[78.032,26.8518],[78.02647,26.84953],[78.02224,26.85268],[78.02096,26.85751],[78.03227,26.86516],[78.03528,26.86837],[78.03548,26.8708],[78.03119,26.87363],[78.02423,26.87257],[78.02577,26.8789],[78.02778,26.88044],[78.02722,26.88397],[78.02997,26.8841],[78.03019,26.88603],[78.0234,26.89099],[78.02132,26.90032],[78.01459,26.90291],[78.00963,26.90405],[78.00565,26.90207],[78.00224,26.9029],[77.99303,26.89249],[77.98873,26.89169],[77.98721,26.88935],[77.97645,26.89221],[77.97232,26.89607],[77.97341,26.89821],[77.97139,26.90032],[77.97345,26.90294],[77.97134,26.90587],[77.96958,26.90597],[77.95813,26.89683],[77.94841,26.89358],[77.943,26.89711],[77.93969,26.90678],[77.92577,26.90982],[77.91562,26.90739],[77.91302,26.90886],[77.91558,26.91419],[77.90636,26.91778],[77.90355,26.9146],[77.90686,26.91265],[77.90883,26.90638],[77.90672,26.89286],[77.9089,26.89062],[77.90432,26.88333],[77.89649,26.884],[77.89187,26.88707],[77.8938,26.88892],[77.89248,26.89016],[77.88452,26.89098],[77.88082,26.89945],[77.87756,26.90237],[77.86896,26.90164],[77.86771,26.90628],[77.85782,26.90626],[77.85024,26.91283],[77.84185,26.91257],[77.83638,26.91676],[77.83194,26.91427],[77.82383,26.91993],[77.8215,26.91777],[77.815,26.91975],[77.81021,26.92419],[77.7982,26.916],[77.79299,26.91705],[77.78647,26.92234],[77.78688,26.92386],[77.77949,26.92686],[77.78047,26.92985],[77.77475,26.93215],[77.7606,26.93262],[77.75896,26.93145],[77.75891,26.92648],[77.75318,26.91687],[77.74571,26.92102],[77.744,26.91876],[77.73779,26.92058],[77.73238,26.92015],[77.72492,26.91038],[77.71764,26.89726],[77.723,26.89514],[77.72698,26.89022],[77.7259,26.88876],[77.72788,26.88526],[77.72261,26.87432],[77.70651,26.87684],[77.70124,26.86775],[77.6976,26.86738],[77.69615,26.8677],[77.6943,26.87396],[77.68665,26.87525],[77.68232,26.8694],[77.67643,26.86848],[77.67458,26.86349],[77.67474,26.85755],[77.62976,26.84147],[77.6204,26.8428],[77.61823,26.83204],[77.61034,26.82858],[77.60762,26.8278],[77.60837,26.83912],[77.60081,26.83561],[77.59243,26.82791],[77.57805,26.82721],[77.57448,26.82086],[77.5576,26.81764],[77.54197,26.82242],[77.52569,26.81887],[77.52011,26.82179],[77.51698,26.82578],[77.51761,26.83776],[77.52086,26.83818],[77.52071,26.84152],[77.51771,26.84284],[77.51768,26.84423],[77.50782,26.84571],[77.50117,26.84445],[77.5014,26.83519],[77.49912,26.82412],[77.50069,26.81701],[77.49366,26.80156],[77.49324,26.79767],[77.48747,26.78815],[77.48886,26.78604],[77.48895,26.77904],[77.49683,26.77217],[77.50277,26.76931],[77.49588,26.75859],[77.48636,26.74885],[77.47804,26.7457],[77.4663,26.74465],[77.46141,26.74198],[77.44956,26.74194],[77.44085,26.7361],[77.43756,26.72975],[77.42677,26.7234],[77.39096,26.71235],[77.38358,26.70606],[77.37924,26.7081],[77.36441,26.7078],[77.3622,26.7094],[77.34612,26.71169],[77.34601,26.69138],[77.35831,26.67905],[77.36324,26.66831],[77.37208,26.65631],[77.36932,26.6546],[77.36762,26.65706],[77.36499,26.65703],[77.35699,26.65404],[77.35146,26.65586],[77.34592,26.6415],[77.34956,26.63975],[77.35099,26.63591],[77.35502,26.63654],[77.35754,26.63183],[77.36,26.6345],[77.35957,26.63734],[77.37524,26.63462],[77.3889,26.63528],[77.39465,26.63346],[77.38946,26.61562],[77.38282,26.61574],[77.37614,26.61855],[77.37599,26.61643],[77.37283,26.61499],[77.37396,26.61341],[77.36908,26.61195],[77.36922,26.60615],[77.35526,26.59184],[77.34613,26.59242],[77.33546,26.58642],[77.33291,26.58676],[77.31496,26.58014],[77.31254,26.57711],[77.29433,26.56639],[77.28889,26.56095],[77.2893,26.55461],[77.28192,26.55688],[77.27766,26.5543],[77.26922,26.55328],[77.26696,26.55077],[77.25533,26.5547],[77.25547,26.55159],[77.25232,26.55131],[77.24819,26.54819],[77.24147,26.54744],[77.23544,26.53701],[77.22756,26.53015],[77.22723,26.52657],[77.22938,26.52049],[77.23122,26.51958],[77.22981,26.51683],[77.23058,26.51414],[77.23371,26.51253],[77.23359,26.50999],[77.23562,26.51008],[77.23671,26.50788],[77.23546,26.50564],[77.23753,26.50461],[77.23875,26.50122],[77.2389,26.49834],[77.23439,26.49512],[77.23881,26.49304],[77.23811,26.48712],[77.24232,26.48147],[77.2378,26.47041],[77.23946,26.46988],[77.24364,26.47416],[77.24455,26.47016],[77.25064,26.46816],[77.24757,26.46502],[77.24929,26.46255],[77.24747,26.4596],[77.25092,26.45843],[77.24982,26.44434],[77.2548,26.43607],[77.25486,26.43197],[77.26123,26.42802],[77.26408,26.43078],[77.2701,26.43226],[77.27485,26.43117],[77.28186,26.43714],[77.2859,26.4367],[77.2894,26.43849],[77.29425,26.43488],[77.30651,26.43911],[77.31555,26.43884],[77.31716,26.43581],[77.33171,26.43206],[77.32922,26.42585],[77.34398,26.42384],[77.34599,26.40959],[77.33905,26.39598],[77.34166,26.39628],[77.3461,26.39396],[77.35509,26.39708],[77.35733,26.37764],[77.36368,26.3782],[77.36522,26.37971],[77.37003,26.37748],[77.36944,26.37556],[77.37015,26.37406],[77.37143,26.37471],[77.37253,26.36984],[77.37567,26.36906],[77.37569,26.36554],[77.37973,26.36231],[77.3904,26.35652],[77.39705,26.36078],[77.41395,26.36344],[77.44327,26.36112],[77.44747,26.36425],[77.44856,26.36753],[77.44622,26.37528],[77.43505,26.39438],[77.43506,26.40004],[77.43735,26.40328],[77.44874,26.40461],[77.45968,26.40378],[77.48651,26.41082],[77.52146,26.40721],[77.53838,26.4113],[77.54633,26.41612],[77.55867,26.43518],[77.5624,26.43684],[77.57147,26.43645],[77.58903,26.44648],[77.61348,26.45272],[77.62297,26.46142],[77.62747,26.47242],[77.63332,26.47869],[77.65058,26.4879],[77.65984,26.49112],[77.67372,26.50283],[77.68024,26.50426],[77.69129,26.49964],[77.71331,26.49827],[77.72701,26.50232],[77.73374,26.5078],[77.73811,26.51421],[77.74029,26.52725],[77.74591,26.53875],[77.75748,26.53984],[77.76781,26.54758],[77.78254,26.55187],[77.81074,26.54719],[77.81906,26.54822],[77.82391,26.55065],[77.83251,26.56147],[77.83578,26.57716],[77.8331,26.58354],[77.82811,26.58928],[77.82733,26.59605],[77.83206,26.59891],[77.83578,26.60615],[77.85066,26.61254],[77.85881,26.6136],[77.88577,26.61244],[77.89428,26.61471],[77.8967,26.61706],[77.89811,26.62315],[77.89752,26.65285],[77.89953,26.65642],[77.90426,26.65906],[77.91554,26.66102],[77.93522,26.66024],[77.94303,26.65819],[77.95318,26.65894],[77.98012,26.67121],[77.98476,26.67481],[77.99604,26.69257],[78.00043,26.69486],[78.01796,26.6925],[78.03164,26.68631],[78.03437,26.68703],[78.05601,26.68363],[78.07409,26.6706],[78.07879,26.67044],[78.08973,26.67447],[78.09444,26.67815],[78.09574,26.68123],[78.0956,26.69516],[78.09214,26.71495],[78.09593,26.7278],[78.10137,26.73709],[78.10808,26.73751],[78.11164,26.74064],[78.1184,26.74216],[78.12353,26.74688],[78.12371,26.75],[78.12065,26.75415],[78.10735,26.75944],[78.10345,26.76332],[78.10122,26.77409],[78.10216,26.78149],[78.10596,26.78888],[78.11426,26.79526],[78.12468,26.79642],[78.14326,26.79117],[78.15619,26.78397],[78.184,26.78382],[78.18761,26.78968],[78.18722,26.79487],[78.18047,26.80414],[78.16838,26.81283],[78.16727,26.81541],[78.16872,26.82039],[78.17233,26.82389],[78.17731,26.82559],[78.20211,26.82138],[78.22228,26.83132],[78.21858,26.8345],[78.22081,26.84012],[78.22017,26.84378],[78.21702,26.84336],[78.21273,26.84613],[78.21176,26.85069],[78.20222,26.86633],[78.19698,26.88218],[78.20006,26.88302],[78.20261,26.88172],[78.20841,26.87197],[78.20862,26.86886],[78.2127,26.86982],[78.21258,26.87137],[78.21922,26.87187],[78.22664,26.87488],[78.23264,26.87428],[78.23421,26.87599],[78.23708,26.88897],[78.24371,26.88869],[78.2469,26.89307],[78.25081,26.89178],[78.25913,26.89674],[78.26229,26.90195],[78.2637,26.90831],[78.27077,26.9151],[78.27226,26.91919],[78.27159,26.92122],[78.26531,26.92259],[78.26485,26.92675],[78.25856,26.93371],[78.25496,26.93531],[78.25364,26.9352],[78.25319,26.93273],[78.25567,26.92866],[78.25462,26.92581],[78.2479,26.92865],[78.24191,26.92614],[78.23862,26.92664],[78.23738,26.93597],[78.23129,26.93658],[78.22496,26.9463],[78.22151,26.94472],[78.21643,26.93508],[78.21014,26.93123],[78.20517,26.93263],[78.20036,26.93921],[78.19505,26.94192],[78.19007,26.94244],[78.18229,26.94057],[78.17749,26.9426],[78.17379,26.9474],[78.17109,26.94826],[78.15623,26.94324],[78.15178,26.94759]]]}} +{"type":"Feature","properties":{"code_scheme":"LGD","area_code":"99","area_level":"District","area_name":"Dungarpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.27169,23.95036],[74.26755,23.93427],[74.25,23.92799],[74.2408,23.92192],[74.23284,23.91315],[74.21915,23.90736],[74.21837,23.91294],[74.21386,23.91958],[74.21111,23.93089],[74.19849,23.95454],[74.18855,23.9628],[74.1724,23.96713],[74.16366,23.97306],[74.16049,23.9937],[74.16108,24.00535],[74.15779,24.00953],[74.1543,24.01115],[74.14621,24.00993],[74.14044,24.00678],[74.12702,23.99901],[74.11464,23.98872],[74.10847,23.98806],[74.09929,23.99129],[74.09372,23.98987],[74.08862,23.98479],[74.08204,23.97253],[74.07169,23.96649],[74.06388,23.96895],[74.05394,23.97593],[74.04344,23.97988],[74.03302,23.97808],[74.01846,23.97192],[74.00941,23.97349],[74.00179,23.96897],[73.99678,23.96825],[73.98522,23.97199],[73.97254,23.97961],[73.95696,23.9802],[73.94093,23.97622],[73.92362,23.98517],[73.91623,23.98542],[73.89655,23.97641],[73.89016,23.96935],[73.87617,23.9649],[73.87639,23.96164],[73.87411,23.95931],[73.86708,23.95864],[73.8651,23.95635],[73.86062,23.94195],[73.85655,23.93648],[73.83836,23.93417],[73.83097,23.9355],[73.82669,23.93904],[73.81986,23.94113],[73.81024,23.93563],[73.80544,23.94451],[73.79283,23.94493],[73.78706,23.94808],[73.77891,23.93795],[73.77376,23.93556],[73.76735,23.93666],[73.75212,23.94843],[73.74602,23.94588],[73.73909,23.93955],[73.73542,23.93966],[73.73168,23.94185],[73.72916,23.94605],[73.70584,23.95011],[73.70346,23.95439],[73.69347,23.95723],[73.67101,23.93979],[73.6692,23.94019],[73.66633,23.94769],[73.66367,23.9499],[73.65147,23.94623],[73.65101,23.94289],[73.63621,23.94614],[73.63367,23.94977],[73.61494,23.95878],[73.61159,23.96264],[73.60116,23.96232],[73.58717,23.96498],[73.58761,23.96255],[73.5765,23.95767],[73.57274,23.96217],[73.56363,23.95103],[73.55358,23.94409],[73.54812,23.93688],[73.54424,23.93432],[73.52408,23.9289],[73.51485,23.92989],[73.50982,23.91985],[73.49775,23.90848],[73.49928,23.90505],[73.48721,23.88458],[73.48203,23.86966],[73.47147,23.86958],[73.46882,23.86135],[73.46953,23.84675],[73.46381,23.84017],[73.44737,23.83675],[73.43084,23.83713],[73.42686,23.83203],[73.42368,23.83052],[73.42251,23.82758],[73.41505,23.82618],[73.41401,23.81533],[73.41121,23.80789],[73.40592,23.80659],[73.40187,23.80281],[73.40064,23.80569],[73.39441,23.8088],[73.38937,23.80913],[73.38167,23.81227],[73.37917,23.80731],[73.37439,23.81371],[73.36791,23.81423],[73.35872,23.79568],[73.35184,23.7914],[73.35606,23.78502],[73.36333,23.78223],[73.36377,23.77815],[73.36656,23.77704],[73.36724,23.77437],[73.37152,23.77049],[73.37077,23.76526],[73.38282,23.76824],[73.38624,23.77666],[73.39446,23.78293],[73.39919,23.78312],[73.40025,23.78506],[73.40858,23.77917],[73.41078,23.78016],[73.41802,23.77681],[73.41641,23.77032],[73.41928,23.76951],[73.42433,23.76164],[73.42702,23.76009],[73.43115,23.76125],[73.43063,23.75804],[73.43189,23.75652],[73.43658,23.75696],[73.44773,23.75287],[73.44869,23.7511],[73.44668,23.7444],[73.44921,23.73481],[73.45011,23.73336],[73.45674,23.73352],[73.46037,23.72731],[73.47142,23.71973],[73.47352,23.70523],[73.48141,23.7042],[73.49066,23.7069],[73.50739,23.70304],[73.50518,23.69881],[73.50841,23.69549],[73.50388,23.65672],[73.49661,23.64916],[73.49951,23.64873],[73.49943,23.64682],[73.50582,23.64701],[73.50877,23.64439],[73.50573,23.63884],[73.49377,23.63234],[73.50379,23.62443],[73.5027,23.6228],[73.50346,23.61832],[73.50639,23.61903],[73.52308,23.6069],[73.52487,23.61184],[73.53118,23.61418],[73.53301,23.61955],[73.54647,23.62599],[73.56855,23.6529],[73.57266,23.65377],[73.57902,23.65261],[73.59818,23.65389],[73.61548,23.65212],[73.62072,23.64574],[73.62678,23.64187],[73.64067,23.62821],[73.65566,23.62129],[73.64898,23.60837],[73.64485,23.60411],[73.64503,23.59678],[73.64336,23.59437],[73.64761,23.57462],[73.64416,23.57226],[73.64968,23.5681],[73.64719,23.56606],[73.64058,23.56802],[73.63662,23.5646],[73.63311,23.55509],[73.63514,23.53836],[73.63307,23.52869],[73.65052,23.51855],[73.65532,23.5124],[73.65636,23.50746],[73.64962,23.49647],[73.64533,23.49769],[73.64072,23.49641],[73.63917,23.48708],[73.64033,23.48272],[73.63344,23.46995],[73.63432,23.46238],[73.63067,23.45792],[73.62721,23.44857],[73.63602,23.44906],[73.64619,23.44142],[73.64746,23.43645],[73.66052,23.44803],[73.67391,23.45411],[73.68523,23.45359],[73.69212,23.45843],[73.69539,23.45591],[73.6974,23.45667],[73.70427,23.45144],[73.70686,23.44564],[73.70511,23.4382],[73.71164,23.4355],[73.71165,23.43392],[73.70799,23.43116],[73.71045,23.42536],[73.70808,23.42232],[73.71122,23.42187],[73.71451,23.41673],[73.71371,23.41381],[73.72081,23.41013],[73.72875,23.42321],[73.735,23.42549],[73.73658,23.42981],[73.74988,23.44074],[73.75645,23.45018],[73.75573,23.45432],[73.76723,23.45312],[73.77056,23.44807],[73.77229,23.43782],[73.77657,23.43779],[73.77898,23.4313],[73.78628,23.43023],[73.79447,23.43112],[73.80344,23.43777],[73.8186,23.43846],[73.82871,23.44769],[73.82868,23.44383],[73.8318,23.44045],[73.83313,23.43582],[73.83023,23.42623],[73.83413,23.42362],[73.83509,23.42044],[73.83963,23.41882],[73.84087,23.41335],[73.84566,23.41045],[73.84556,23.40752],[73.84932,23.40548],[73.85004,23.40198],[73.85817,23.39624],[73.85927,23.39214],[73.86361,23.38949],[73.86338,23.38725],[73.86084,23.38567],[73.86178,23.38363],[73.86585,23.38422],[73.86636,23.38126],[73.86921,23.38191],[73.86776,23.37805],[73.87191,23.37726],[73.87297,23.37945],[73.87376,23.37686],[73.87248,23.37587],[73.87374,23.37515],[73.87246,23.37247],[73.87408,23.37073],[73.8743,23.36377],[73.8759,23.3616],[73.88034,23.3585],[73.88637,23.35796],[73.88837,23.35619],[73.89078,23.34889],[73.89283,23.34783],[73.88997,23.33557],[73.89386,23.33384],[73.90094,23.33597],[73.91858,23.33547],[73.9337,23.33859],[73.93681,23.34077],[73.93941,23.34441],[73.93697,23.36058],[73.93801,23.36794],[73.95359,23.37597],[73.96906,23.39125],[73.97767,23.39611],[73.98021,23.41052],[73.98598,23.41552],[73.9979,23.42166],[74.01108,23.44087],[74.01412,23.45138],[74.0106,23.46907],[74.01698,23.48016],[74.01999,23.50765],[74.02819,23.5264],[74.0299,23.54456],[74.03181,23.54917],[74.03952,23.55503],[74.05244,23.56064],[74.06088,23.56763],[74.06478,23.58089],[74.066,23.59337],[74.07258,23.60274],[74.0828,23.60618],[74.10784,23.60554],[74.11272,23.60655],[74.11656,23.61038],[74.12415,23.63668],[74.12846,23.64522],[74.12708,23.65695],[74.12803,23.66838],[74.1264,23.67691],[74.13266,23.68708],[74.13371,23.69181],[74.13235,23.69938],[74.12221,23.71198],[74.1188,23.71826],[74.11858,23.72245],[74.11999,23.72642],[74.12649,23.73232],[74.13076,23.73972],[74.13226,23.75404],[74.13578,23.76707],[74.14045,23.77675],[74.15253,23.78898],[74.17955,23.79638],[74.19558,23.7982],[74.21616,23.8117],[74.23697,23.81602],[74.24712,23.82093],[74.26323,23.83262],[74.28535,23.84079],[74.28843,23.84292],[74.29663,23.85488],[74.31492,23.85727],[74.33716,23.87878],[74.35679,23.88532],[74.35829,23.88761],[74.35526,23.89881],[74.35701,23.90122],[74.36422,23.90222],[74.37418,23.89969],[74.38085,23.90524],[74.37238,23.92483],[74.36503,23.93251],[74.36368,23.93607],[74.35637,23.93318],[74.35304,23.93573],[74.34872,23.93422],[74.33799,23.93488],[74.33249,23.93939],[74.31733,23.94142],[74.31362,23.94555],[74.30903,23.94741],[74.30456,23.95826],[74.30067,23.9625],[74.29793,23.95642],[74.29483,23.9536],[74.28134,23.95743],[74.27447,23.95555],[74.27169,23.95036]]]}} diff --git a/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json b/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json index 7bdf193c..faea5714 100644 --- a/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json +++ b/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json @@ -76,6 +76,26 @@ "checked": 764, "violations": 0, "outliers": [] + }, + "polygons": { + "file": "areas.geojsonl", + "features": 764, + "size_bytes": 11352745, + "simplify_tolerance_deg": 0.001, + "join_key": [ + "code_scheme", + "area_code", + "area_level" + ], + "winding": "RFC 7946: exterior counterclockwise, holes clockwise", + "collapsed_below_tolerance": [], + "points_rederived_from_simplified_outline": [ + "District/373" + ], + "point_outside_simplified_outline": [], + "max_area_error_fraction": 0.002323, + "max_bbox_shift_deg": 0.000921, + "note": "Simplified outlines. Use --with-geometry for full fidelity." } } } diff --git a/tools/area-lookups/join_geometry.py b/tools/area-lookups/join_geometry.py index 3be5a3ec..bbc7ec76 100644 --- a/tools/area-lookups/join_geometry.py +++ b/tools/area-lookups/join_geometry.py @@ -30,6 +30,7 @@ python3 join_geometry.py --source lgd python3 join_geometry.py --areas data/areas/latest python3 join_geometry.py --source lgd --with-geometry + python3 join_geometry.py --simplify 0.005 # coarser, smaller outlines Stdlib only. Requires bsdtar (default `tar` on macOS) or 7z to extract .7z. """ @@ -85,7 +86,30 @@ # build_areas.py OUT_COLUMNS. GEO_COLUMNS = ["latitude", "longitude", "point_method", "bbox_west", "bbox_south", "bbox_east", "bbox_north", - "geometry_source", "boundary_vintage"] + "geometry_source", "boundary_vintage", "has_polygon"] + +# Simplification tolerance for areas.geojsonl, in degrees. At Indian latitudes +# 0.001 deg is roughly 110 m, which is far below the precision any coded +# administrative area implies and cuts the district layer from ~460 MB to ~9 MB. +# Full-fidelity polygons remain available via --with-geometry. +SIMPLIFY_DEG = 0.001 + +# Smallest polygon part treated as a real place, in square degrees, which is +# about 116 m2 at Indian latitudes. +# +# Published boundaries carry hairline slivers: positive-area, but spikes rather +# than places. Two show why a plain ">0" test is not enough. Hailakandi +# (LGD 289) ships a four-vertex, 0.1 m2 splinter 41 km south of the district, +# which stretches its bbox 41 km into a neighbour. Kancheepuram (LGD 574) has a +# 1 m2 spike whose bounding box still measures 141 x 184 m, pulling the western +# edge 16 km out. Either one makes a consumer using the box as a prefilter match +# points far outside the area. +# +# The floor is checked against area, not extent, because that is what separates +# a spike from an islet. Measured on SOI_Districts it cuts 25 parts: the largest +# dropped is 110 m2 and the smallest kept is 130 m2, both Andaman islets, so +# nothing of consequence sits near the boundary. +MIN_PART_AREA_SQ_DEG = 1e-8 # Child level -> parent level, used when a level has no geometry of its own. # Ordered parent-first so the inheritance pass can walk down in one sweep. @@ -247,7 +271,8 @@ class Accumulator: """ __slots__ = ("area", "sx", "sy", "bbox", "best_area", "best_rings", - "best_centroid", "features") + "best_centroid", "features", "degenerate", "dbbox", + "drings", "dcentroid") def __init__(self): self.area = self.sx = self.sy = 0.0 @@ -256,33 +281,58 @@ def __init__(self): self.best_rings = None self.best_centroid = None self.features = 0 + # Zero-area parts, tracked apart from the real ones. See add(). + self.degenerate = 0 + self.dbbox = None + self.drings = None + self.dcentroid = None + + @staticmethod + def _extend(box, rings): + xs = [p[0] for p in rings[0]] + ys = [p[1] for p in rings[0]] + got = (min(xs), min(ys), max(xs), max(ys)) + if box is None: + return got + w, s, e, n = box + return (min(w, got[0]), min(s, got[1]), max(e, got[2]), max(n, got[3])) def add(self, geom): + """Fold one feature in, quarantining its negligible parts. + + Parts below MIN_PART_AREA_SQ_DEG are digitising artifacts rather than + places, so they are kept out of both the point and the bbox. They are + still counted, and used only if an area turns out to have nothing else, + so no area is silently dropped. + """ parts = shape_parts(geom) if not parts: return False self.features += 1 for area, (cx, cy), rings in parts: + if area < MIN_PART_AREA_SQ_DEG: + self.degenerate += 1 + self.dbbox = self._extend(self.dbbox, rings) + if self.drings is None: + self.drings, self.dcentroid = rings, (cx, cy) + continue self.area += area self.sx += cx * area self.sy += cy * area if area > self.best_area: self.best_area, self.best_rings, self.best_centroid = area, rings, (cx, cy) - xs = [p[0] for p in rings[0]] - ys = [p[1] for p in rings[0]] - box = (min(xs), min(ys), max(xs), max(ys)) - if self.bbox is None: - self.bbox = box - else: - w, s, e, n = self.bbox - self.bbox = (min(w, box[0]), min(s, box[1]), - max(e, box[2]), max(n, box[3])) + self.bbox = self._extend(self.bbox, rings) return True def result(self, check_interior=True): """(lon, lat, bbox, method) or None if nothing usable was added.""" if self.bbox is None or self.best_rings is None: - return None + # Every part was degenerate. Fall back to them rather than dropping + # the area, which would leave a blank row instead of a coarse point. + if self.dbbox is None or self.drings is None: + return None + return (self.dcentroid[0], self.dcentroid[1], self.dbbox, + "degenerate_geometry") if self.area > 0.0: lon, lat = self.sx / self.area, self.sy / self.area else: @@ -304,6 +354,137 @@ def result(self, check_interior=True): return lon, lat, self.bbox, method +# --- simplification --------------------------------------------------------- + +def _rdp(pts, eps): + """Ramer-Douglas-Peucker on an open lon/lat polyline. + + Iterative rather than recursive: a district ring can carry 24k vertices and + the recursive form overflows Python's stack on the worst of them. + """ + if len(pts) < 3: + return list(pts) + keep = [False] * len(pts) + keep[0] = keep[-1] = True + stack = [(0, len(pts) - 1)] + while stack: + lo, hi = stack.pop() + if hi - lo < 2: + continue + ax, ay = pts[lo] + bx, by = pts[hi] + dx, dy = bx - ax, by - ay + n = math.hypot(dx, dy) + far, fi = -1.0, lo + for i in range(lo + 1, hi): + px, py = pts[i] + if n: + d = abs(dy * (px - ax) - dx * (py - ay)) / n + else: + d = math.hypot(px - ax, py - ay) + if d > far: + far, fi = d, i + if far > eps: + keep[fi] = True + stack.append((lo, fi)) + stack.append((fi, hi)) + return [pts[i] for i, k in enumerate(keep) if k] + + +def simplify_ring(ring, eps): + """Simplify a closed ring, returning a closed ring or None if it collapses. + + The ring is split at the vertex farthest from its first point and each half + is simplified as an open chain. Running RDP straight down a closed ring + would anchor it on a zero-length segment, since the first and last vertex + coincide, and the perpendicular distance test degenerates there. + """ + q = [tuple(p[:2]) for p in ring] + if len(q) > 1 and q[0] == q[-1]: + q = q[:-1] + if len(q) < 3: + return None + + ax, ay = q[0] + j = max(range(1, len(q)), key=lambda i: math.hypot(q[i][0] - ax, q[i][1] - ay)) + head = _rdp(q[:j + 1], eps) + tail = _rdp(q[j:] + [q[0]], eps) + out = head[:-1] + tail + + # Drop consecutive duplicates that rounding can introduce, then require a + # ring with real extent: 3 distinct vertices plus the closing repeat. + ded = [out[0]] + for pt in out[1:]: + if pt != ded[-1]: + ded.append(pt) + if ded[0] == ded[-1]: + ded = ded[:-1] + if len(ded) < 3: + return None + return [[round(x, 5), round(y, 5)] for x, y in ded] + \ + [[round(ded[0][0], 5), round(ded[0][1], 5)]] + + +def _signed_area(ring): + a = 0.0 + for i in range(len(ring) - 1): + x1, y1 = ring[i][0], ring[i][1] + x2, y2 = ring[i + 1][0], ring[i + 1][1] + a += x1 * y2 - x2 * y1 + return a / 2.0 + + +def _wind(ring, ccw): + """Force ring orientation. RFC 7946 wants exterior CCW, holes CW.""" + if (_signed_area(ring) > 0) != ccw: + return list(reversed(ring)) + return ring + + +def simplify_geometry(parts, tolerance): + """Simplify accumulated (rings) parts into one GeoJSON geometry. + + parts is a list of polygons, each a list of rings with the exterior first. + Returns (geometry, kept_area) or (None, 0.0) if everything collapsed. + """ + out = [] + for rings in parts: + # Scale the tolerance to the part. A flat 110 m is negligible on a + # 7,000 km2 district but costs 2% of Lakshadweep's 30 km2, so a tiny + # island would ship visibly the wrong size. Tying the tolerance to the + # part's own diagonal keeps the relative error roughly constant, and + # small parts are cheap to keep detailed. + xs = [pt[0] for pt in rings[0]] + ys = [pt[1] for pt in rings[0]] + diag = math.hypot(max(xs) - min(xs), max(ys) - min(ys)) + eps = min(tolerance, diag / 300.0) if diag else tolerance + + # Back off the tolerance rather than losing the part. Kancheepuram + # (LGD 574) has a genuine 130x180 m enclave that vanishes at 110 m and + # would silently cut 16 km off the district's western extent. A small + # part carries few vertices, so keeping it whole costs nothing. + ext = None + for attempt in (eps, eps / 4.0, eps / 16.0, 0.0): + ext = simplify_ring(rings[0], attempt) + if ext is not None: + break + if ext is None: + continue # under three distinct vertices even untouched + keep = [_wind(ext, True)] + for hole in rings[1:]: + h = simplify_ring(hole, eps) + if h is not None: + keep.append(_wind(h, False)) + out.append(keep) + if not out: + return None, 0.0 + area = sum(abs(_signed_area(r[0])) - sum(abs(_signed_area(h)) for h in r[1:]) + for r in out) + if len(out) == 1: + return {"type": "Polygon", "coordinates": out[0]}, area + return {"type": "MultiPolygon", "coordinates": out}, area + + # --- fetching --------------------------------------------------------------- def extract(archive, dest): @@ -423,6 +604,7 @@ def load_points(path, code_field, name_field): accs = {} names = {} skipped = 0 + degenerate = 0 for line in open(path, encoding="utf-8", errors="replace"): if not line.strip(): continue @@ -448,8 +630,9 @@ def load_points(path, code_field, name_field): skipped += 1 continue lon, lat, bbox, method = res + degenerate += acc.degenerate out[code] = (lon, lat, bbox, method, names.get(code, "")) - return out, skipped + return out, skipped, degenerate def country_point(path): @@ -475,6 +658,8 @@ def country_point(path): # --- join ------------------------------------------------------------------- def set_point(row, lat, lon, bbox, method, source_layer, vintage): + # has_polygon is deliberately not touched: write_polygons owns it, and an + # inheriting row keeps the false it was given. row.update({ "latitude": f"{lat:.6f}", "longitude": f"{lon:.6f}", @@ -488,7 +673,7 @@ def set_point(row, lat, lon, bbox, method, source_layer, vintage): }) -def run(source, gazdir, cache, with_geometry, inherit): +def run(source, gazdir, cache, with_geometry, inherit, simplify): conf = SOURCES[source] gazdir = Path(gazdir).resolve() cache = Path(cache) @@ -520,7 +705,7 @@ def run(source, gazdir, cache, with_geometry, inherit): points, vintages, layer_paths = {}, {}, {} for level, (tag, stem, code_field, name_field) in conf["layers"].items(): path = ensure_layer(tag, stem, cache) - pts, skipped = load_points(path, code_field, name_field) + pts, skipped, degenerate = load_points(path, code_field, name_field) # Zero coded areas means the upstream renamed its code column, not that # the level is genuinely empty. Fail rather than silently publish a # area lookup table where a whole level fell back to its parent. @@ -532,7 +717,9 @@ def run(source, gazdir, cache, with_geometry, inherit): layer_paths[level] = path log(f"{stem:<20} {len(pts):,} coded areas, vintage {layer_vintage(path)}" + (f", {skipped:,} features without a usable code or geometry" - if skipped else "")) + if skipped else "") + + (f", {degenerate:,} sub-{MIN_PART_AREA_SQ_DEG:g}-sq-deg parts " + f"excluded as artifacts" if degenerate else "")) dates = {lvl: layer_vintage(p) for lvl, p in layer_paths.items()} stats = {} @@ -572,6 +759,11 @@ def run(source, gazdir, cache, with_geometry, inherit): resolved[(r["code_scheme"], r["area_code"], "Country")] = \ (lat, lon, bbox, "Country") + # Polygons are written here, between joining and inheriting, because + # re-deriving a point against its simplified outline has to happen before + # descendants copy that point. + polygons = write_polygons(conf, gazdir, cache, rows, simplify, resolved) + # Pass 3: inherit downward for anything still unresolved. # # This walks parent-to-child in level order so it completes in one sweep. A @@ -612,8 +804,8 @@ def run(source, gazdir, cache, with_geometry, inherit): if with_geometry: write_geometry(conf, gazdir, cache, rows) update_manifest(source, conf, gazdir, stats, vintages, dates, drift, - inherit, containment) - report(areas_csv, stats, drift, conf, containment) + inherit, containment, polygons) + report(areas_csv, stats, drift, conf, containment, polygons) return stats @@ -678,6 +870,160 @@ def check_containment(rows): return {"checked": checked, "violations": len(outliers), "outliers": outliers} +def write_polygons(conf, gazdir, cache, rows, tolerance, resolved): + """Emit areas.geojsonl: one simplified polygon per directly-joined area. + + A coded area is an area, not a point, so a consumer resolving + coverageAreas needs the outline to answer containment questions. The CSV + keeps the point and box for cheap prefiltering; the real shape lives here, + keyed identically on (code_scheme, area_code, area_level). + + Also sets has_polygon on every row, so a consumer can tell from the CSV + alone whether a real outline exists without opening this file. That flag + cannot be inferred from point_method: a row can carry its own centroid and + still have no polygon here, if simplification collapsed the shape. + """ + wanted = {} + for r in rows: + r["has_polygon"] = "false" + if (r["latitude"] and not r["point_method"].startswith("inherited") + and r["area_level"] in conf["layers"]): + wanted.setdefault(r["area_level"], {})[r["area_code"]] = r + if not wanted: + return {"features": 0, "note": "no level in this source has geometry"} + + out = gazdir / "areas.geojsonl" + written = 0 + collapsed, outside, repointed = [], [], [] + worst_area = worst_bbox = 0.0 + with open(out, "w", encoding="utf-8") as fout: + for level, (_tag, stem, code_field, _name) in conf["layers"].items(): + keep = wanted.get(level) or {} + if not keep: + continue + path = cache / f"{stem}.geojsonl" + + # Collect every feature carrying a code before simplifying: an area + # published as several polygons has to stay one multipart feature, + # or a point-in-polygon test against an outlying island fails. + acc = {} + for line in open(path, encoding="utf-8", errors="replace"): + if not line.strip(): + continue + feat = json.loads(line) + code = feat.get("properties", {}).get(code_field) + if code in (None, "", " ", 0, "0"): + continue + code = str(code).strip() + if code in keep: + acc.setdefault(code, []).extend( + shape_parts(feat.get("geometry"))) + + for code, parts in sorted(acc.items()): + row = keep[code] + # Mirror the bbox rule in Accumulator.add. Shipping an + # artifact as an outline would put back exactly the extent the + # bbox excluded, leaving the two artifacts inconsistent. + real = [r for a, _c, r in parts if a >= MIN_PART_AREA_SQ_DEG] + if not real: + real = [r for _a, _c, r in parts] + full = sum(a for a, _c, _r in parts) + else: + full = sum(a for a, _c, _r in parts + if a >= MIN_PART_AREA_SQ_DEG) + geom, kept = simplify_geometry(real, tolerance) + if geom is None: + collapsed.append(f"{level}/{code}") + continue + + # The point in the CSV must land inside the shape shipped + # beside it, or the two artifacts disagree about the same area. + # Sundaragada (LGD 373) is the case that matters: its point is + # grid-derived against a concave outline, and simplification + # moves the edge past it. Re-derive from the simplified shape + # so the two agree by construction rather than by luck. + polys = ([geom["coordinates"]] if geom["type"] == "Polygon" + else geom["coordinates"]) + pt = (float(row["longitude"]), float(row["latitude"])) + if not any(point_in_polygon(pt, rings) for rings in polys): + acc = Accumulator() + acc.add(geom) + res = acc.result() + if res is None: + outside.append(f"{level}/{code}") + else: + nlon, nlat, _box, nmethod = res + row["latitude"] = f"{nlat:.6f}" + row["longitude"] = f"{nlon:.6f}" + row["point_method"] = f"{nmethod}:simplified" + # Keep the inheritance source in step. Descendants copy + # their ancestor's point verbatim, so a correction made + # here has to reach them or the file contradicts itself: + # 62 Blocks under Sundaragada (LGD 373) kept the + # pre-correction coordinate when this was missed. + rk = (row["code_scheme"], code, level) + if rk in resolved: + _la, _lo, rbox, rorigin = resolved[rk] + resolved[rk] = (nlat, nlon, rbox, rorigin) + repointed.append(f"{level}/{code}") + if not any(point_in_polygon((nlon, nlat), rings) + for rings in polys): + outside.append(f"{level}/{code}") + + if full > 0: + worst_area = max(worst_area, abs(kept - full) / full) + xs = [c[0] for rings in polys for r in rings for c in r] + ys = [c[1] for rings in polys for r in rings for c in r] + worst_bbox = max( + worst_bbox, + abs(min(xs) - float(row["bbox_west"])), + abs(min(ys) - float(row["bbox_south"])), + abs(max(xs) - float(row["bbox_east"])), + abs(max(ys) - float(row["bbox_north"]))) + + fout.write(json.dumps({ + "type": "Feature", + "properties": {"code_scheme": row["code_scheme"], + "area_code": code, + "area_level": level, + "area_name": row["area_name"], + "geometry_source": stem}, + "geometry": geom, + }, separators=(",", ":")) + "\n") + row["has_polygon"] = "true" + written += 1 + + size_mb = out.stat().st_size / 1e6 + log(f"areas.geojsonl {written:,} polygons, {size_mb:,.1f} MB, " + f"tolerance {tolerance} deg") + if collapsed: + log(f" {len(collapsed):,} areas collapsed below tolerance: " + f"{', '.join(collapsed[:5])}" + + (" ..." if len(collapsed) > 5 else "")) + if repointed: + log(f" {len(repointed):,} points re-derived from the simplified " + f"outline: {', '.join(repointed[:5])}" + + (" ..." if len(repointed) > 5 else "")) + if outside: + log(f" {len(outside):,} stored points STILL fall outside their " + f"outline: {', '.join(outside[:5])}" + + (" ..." if len(outside) > 5 else "")) + return { + "file": "areas.geojsonl", + "features": written, + "size_bytes": out.stat().st_size, + "simplify_tolerance_deg": tolerance, + "join_key": ["code_scheme", "area_code", "area_level"], + "winding": "RFC 7946: exterior counterclockwise, holes clockwise", + "collapsed_below_tolerance": collapsed, + "points_rederived_from_simplified_outline": repointed, + "point_outside_simplified_outline": outside, + "max_area_error_fraction": round(worst_area, 6), + "max_bbox_shift_deg": round(worst_bbox, 6), + "note": "Simplified outlines. Use --with-geometry for full fidelity.", + } + + def write_geometry(conf, gazdir, cache, rows): """Emit boundaries.geojsonl for areas that joined to a real polygon.""" wanted = {} @@ -719,7 +1065,7 @@ def write_geometry(conf, gazdir, cache, rows): def update_manifest(source, conf, gazdir, stats, vintages, dates, drift, - inherit, containment): + inherit, containment, polygons): path = gazdir / "manifest.json" m = json.loads(path.read_text()) if path.exists() else {} m["geometry_populated"] = True @@ -743,11 +1089,12 @@ def update_manifest(source, conf, gazdir, stats, vintages, dates, drift, "coverage": stats, "name_drift_count": len(drift), "parent_containment_check": containment, + "polygons": polygons, } path.write_text(json.dumps(m, indent=2) + "\n") -def report(areas_csv, stats, drift, conf, containment): +def report(areas_csv, stats, drift, conf, containment, polygons): print(f"\n{areas_csv}") print(f"\n{'level':<12}{'rows':>8}{'joined':>9}{'inherited':>11}" f"{'empty':>8}{'joined %':>10}") @@ -782,6 +1129,22 @@ def report(areas_csv, stats, drift, conf, containment): print(f" ... and {len(drift) - 8} more") print(" These are why the join uses codes, not names.") + if polygons.get("features"): + print(f"\nareas.geojsonl: {polygons['features']:,} simplified outlines, " + f"{polygons['size_bytes'] / 1e6:,.1f} MB") + print(f" tolerance {polygons['simplify_tolerance_deg']} deg " + f"(~{polygons['simplify_tolerance_deg'] * 111000:,.0f} m), " + f"max area error {polygons['max_area_error_fraction'] * 100:.3f}%, " + f"max box shift {polygons['max_bbox_shift_deg'] * 111000:,.0f} m") + if polygons["points_rederived_from_simplified_outline"]: + print(f" {len(polygons['points_rederived_from_simplified_outline'])} " + f"point(s) re-derived so the CSV agrees with the outline") + bad = (len(polygons["collapsed_below_tolerance"]) + + len(polygons["point_outside_simplified_outline"])) + print(f" has_polygon=true on {polygons['features']:,} rows; " + + ("no point/outline disagreements" if not bad + else f"{bad} anomalies, see manifest.json")) + empty_levels = [lvl for lvl, s in stats.items() if s["total"] and not s["matched"] and lvl != "Country"] if empty_levels: @@ -799,12 +1162,19 @@ def main(): help="directory holding areas.csv from stage 1") p.add_argument("--cache", default="data/areas/.cache", help="where boundary downloads are kept between runs") + p.add_argument("--simplify", type=float, default=SIMPLIFY_DEG, + metavar="DEG", + help=f"areas.geojsonl simplification tolerance in degrees " + f"(default: {SIMPLIFY_DEG}, ~110 m); 0 keeps every vertex") p.add_argument("--with-geometry", action="store_true", - help="also write boundaries.geojsonl for point-in-polygon use") + help="also write boundaries.geojsonl at full fidelity") p.add_argument("--no-inherit", action="store_true", help="leave unjoinable levels empty instead of using a parent point") a = p.parse_args() - run(a.source, a.areas, a.cache, a.with_geometry, not a.no_inherit) + if a.simplify < 0: + sys.exit("--simplify must be >= 0") + run(a.source, a.areas, a.cache, a.with_geometry, not a.no_inherit, + a.simplify) if __name__ == "__main__": diff --git a/tools/area-lookups/validate.py b/tools/area-lookups/validate.py new file mode 100644 index 00000000..af4744f1 --- /dev/null +++ b/tools/area-lookups/validate.py @@ -0,0 +1,363 @@ +#!/usr/bin/env python3 +"""Validate areas.csv and areas.geojsonl before they are relied on. + +Stage 3. Stages 1 and 2 build the lookup; this stage tries to break it. The +checks are written independently of the builder — point-in-polygon is +reimplemented here rather than imported — so a bug in the join cannot pass by +agreeing with itself. + +Exits non-zero if any check fails, so a refresh can be gated on it: + + python3 build_areas.py && python3 join_geometry.py && python3 validate.py + +Usage: + python3 validate.py + python3 validate.py --areas data/areas/latest + python3 validate.py --strict # treat warnings as failures too + +Stdlib only. +""" + +import argparse +import csv +import json +import math +import sys +from pathlib import Path + +EXPECTED_COLUMNS = [ + "code_scheme", "area_code", "area_level", "area_name", + "parent_scheme", "parent_code", "parent_level", "census_2011_code", + "snapshot_date", "source_url", + "latitude", "longitude", "point_method", + "bbox_west", "bbox_south", "bbox_east", "bbox_north", + "geometry_source", "boundary_vintage", "has_polygon", +] + +LEVELS = {"Country", "State", "District", "Block", "Village", "PostalCode"} + +# Point derivations stage 2 can record. An unknown value means the builder +# grew a new path that this validator has not been taught to judge. +METHODS = { + "centroid", "interior_grid", "centroid_outside_shape", + "degenerate_geometry", "aggregate:State", + "centroid:simplified", "interior_grid:simplified", + "centroid_outside_shape:simplified", "degenerate_geometry:simplified", +} + +# India's envelope with margin, used only to catch transposed lat/lon, which is +# the single most common way a coordinate column goes wrong. +LAT_RANGE = (6.0, 38.0) +LON_RANGE = (68.0, 98.0) + + +class Report: + def __init__(self): + self.failures = [] + self.warnings = [] + self.checks = 0 + + def check(self, ok, label, detail=""): + self.checks += 1 + if not ok: + self.failures.append(f"{label}: {detail}" if detail else label) + return ok + + def warn(self, label, detail=""): + self.warnings.append(f"{label}: {detail}" if detail else label) + + +def sample(items, n=4): + items = list(items) + head = ", ".join(str(i) for i in items[:n]) + return head + (f" ... (+{len(items) - n} more)" if len(items) > n else "") + + +# --- independent geometry ------------------------------------------------- + +def in_ring(pt, ring): + """Ray casting, written fresh so it does not share the builder's bugs.""" + x, y = pt + inside = False + for i in range(len(ring) - 1): + x1, y1 = ring[i][0], ring[i][1] + x2, y2 = ring[i + 1][0], ring[i + 1][1] + if (y1 > y) != (y2 > y): + xi = x1 + (y - y1) * (x2 - x1) / (y2 - y1) + if x < xi: + inside = not inside + return inside + + +def in_polygon(pt, rings): + if not in_ring(pt, rings[0]): + return False + return not any(in_ring(pt, h) for h in rings[1:]) + + +def polys_of(geom): + t = geom.get("type") + if t == "Polygon": + return [geom["coordinates"]] + if t == "MultiPolygon": + return geom["coordinates"] + return [] + + +def signed_area(ring): + a = 0.0 + for i in range(len(ring) - 1): + a += ring[i][0] * ring[i + 1][1] - ring[i + 1][0] * ring[i][1] + return a / 2.0 + + +# --- checks --------------------------------------------------------------- + +def check_schema(rows, columns, rep): + rep.check(columns == EXPECTED_COLUMNS, "column set", + f"expected {EXPECTED_COLUMNS}, got {columns}") + rep.check(bool(rows), "row count", "file has no data rows") + + keys = {} + dup = [] + for i, r in enumerate(rows, start=2): + k = (r["code_scheme"], r["area_code"], r["area_level"]) + if k in keys: + dup.append(f"{k} at lines {keys[k]} and {i}") + else: + keys[k] = i + rep.check(not dup, "primary key uniqueness", sample(dup)) + + blank = [f"line {i}" for i, r in enumerate(rows, start=2) + if not (r["code_scheme"] and r["area_code"] and r["area_level"])] + rep.check(not blank, "identity columns present", sample(blank)) + + bad_level = {r["area_level"] for r in rows} - LEVELS + rep.check(not bad_level, "known area levels", sample(bad_level)) + + noname = [f'{r["area_level"]}/{r["area_code"]}' for r in rows + if not r["area_name"].strip()] + if noname: + rep.warn("rows without a name", sample(noname)) + return keys + + +def check_coordinates(rows, rep): + bad_parse, out_env, out_box, bad_box, bad_method = [], [], [], [], [] + for r in rows: + tag = f'{r["area_level"]}/{r["area_code"]}' + if r["point_method"] and r["point_method"] not in METHODS \ + and not r["point_method"].startswith("inherited:"): + bad_method.append(f'{tag} {r["point_method"]!r}') + # An absent coordinate is a legitimate state, not a malformed one: + # --no-inherit leaves every unjoinable level blank, and PostalCode has + # no boundary source at any setting. It is reported as a warning below + # so --strict still catches it, but it is not a parse failure. + if not r["latitude"] and not r["longitude"]: + continue + try: + lat = float(r["latitude"]) + lon = float(r["longitude"]) + box = (float(r["bbox_west"]), float(r["bbox_south"]), + float(r["bbox_east"]), float(r["bbox_north"])) + except ValueError: + bad_parse.append(tag) + continue + if not all(map(math.isfinite, (lat, lon) + box)): + bad_parse.append(tag) + continue + if not (LAT_RANGE[0] <= lat <= LAT_RANGE[1] + and LON_RANGE[0] <= lon <= LON_RANGE[1]): + out_env.append(f"{tag} at {lat},{lon}") + if box[0] > box[2] or box[1] > box[3]: + bad_box.append(f"{tag} {box}") + elif not (box[0] <= lon <= box[2] and box[1] <= lat <= box[3]): + out_box.append(f"{tag} point {lon},{lat} box {box}") + + rep.check(not bad_parse, "coordinates parse as finite numbers", sample(bad_parse)) + rep.check(not out_env, "coordinates inside India's envelope", sample(out_env)) + rep.check(not bad_box, "bounding boxes are well ordered", sample(bad_box)) + rep.check(not out_box, "point lies inside its own bounding box", sample(out_box)) + rep.check(not bad_method, "point_method is a known value", sample(bad_method)) + + empty = [f'{r["area_level"]}/{r["area_code"]}' for r in rows + if not r["latitude"]] + if empty: + rep.warn(f"{len(empty):,} rows carry no coordinate", sample(empty)) + + +def check_parents(rows, keys, rep): + """Parent references must resolve, and inherited points must match them.""" + # Keyed on all three parts. An LGD code is only unique within its level, + # so a (scheme, code) lookup would silently resolve a Block's parent to a + # State that happens to share the number. + by_key = {(r["code_scheme"], r["area_code"], r["area_level"]): r for r in rows} + + dangling, mismatched, no_level = [], [], [] + for r in rows: + ps, pc, pl = (r.get("parent_scheme", ""), r.get("parent_code", ""), + r.get("parent_level", "")) + tag = f'{r["area_level"]}/{r["area_code"]}' + if not ps and not pc: + if r["area_level"] != "Country": + dangling.append(f"{tag} has no parent") + continue + if not pl: + no_level.append(tag) + continue + if (ps, pc, pl) not in by_key: + dangling.append(f"{tag} -> {ps}/{pc}/{pl} missing") + continue + if r["point_method"].startswith("inherited:") and r["latitude"]: + # An inherited point must be byte-identical to some ancestor's, or + # inheritance silently invented a coordinate. + want = (r["latitude"], r["longitude"]) + chain, seen, cur = [], set(), r + while True: + nk = (cur.get("parent_scheme"), cur.get("parent_code"), + cur.get("parent_level")) + if nk in seen or nk not in by_key: + break + seen.add(nk) + cur = by_key[nk] + chain.append((cur["latitude"], cur["longitude"])) + if want not in chain: + mismatched.append(f"{tag} {want} not in any ancestor") + + rep.check(not no_level, "non-root rows declare a parent_level", + sample(no_level)) + rep.check(not dangling, "parent references resolve", sample(dangling)) + rep.check(not mismatched, "inherited points match an ancestor", + sample(mismatched)) + + +def check_polygons(rows, areas_dir, rep): + path = areas_dir / "areas.geojsonl" + flags = {r["has_polygon"] for r in rows} + rep.check(flags <= {"true", "false", ""}, "has_polygon is a boolean", + sample(flags - {"true", "false", ""})) + + claimed = {(r["code_scheme"], r["area_code"], r["area_level"]): r + for r in rows if r["has_polygon"] == "true"} + if not path.exists(): + rep.check(not claimed, "areas.geojsonl exists", + f"{len(claimed):,} rows claim a polygon but {path.name} is absent") + return + if not claimed: + rep.warn("no row claims a polygon", "nothing to cross-check") + + seen, dup, bad_json, bad_ring, unwound = {}, [], [], [], [] + outside, box_drift, orphan = [], [], [] + for n, line in enumerate(open(path, encoding="utf-8"), start=1): + if not line.strip(): + continue + try: + feat = json.loads(line) + except ValueError as e: + bad_json.append(f"line {n}: {e}") + continue + pr = feat.get("properties") or {} + key = (pr.get("code_scheme"), pr.get("area_code"), pr.get("area_level")) + if key in seen: + dup.append(f"{key} at lines {seen[key]} and {n}") + continue + seen[key] = n + geom = feat.get("geometry") or {} + polys = polys_of(geom) + if not polys: + bad_json.append(f"line {n}: geometry type {geom.get('type')!r}") + continue + + for pi, rings in enumerate(polys): + for ri, ring in enumerate(rings): + if len(ring) < 4: + bad_ring.append(f"{key} part {pi} ring {ri}: {len(ring)} coords") + elif ring[0] != ring[-1]: + bad_ring.append(f"{key} part {pi} ring {ri}: not closed") + elif not all(len(c) >= 2 and math.isfinite(c[0]) + and math.isfinite(c[1]) for c in ring): + bad_ring.append(f"{key} part {pi} ring {ri}: non-finite coord") + else: + ccw = signed_area(ring) > 0 + if (ri == 0) != ccw: + unwound.append(f"{key} part {pi} ring {ri}") + + row = claimed.get(key) + if row is None: + orphan.append(str(key)) + continue + pt = (float(row["longitude"]), float(row["latitude"])) + if not any(in_polygon(pt, rings) for rings in polys): + outside.append(f"{key} point {pt}") + xs = [c[0] for rings in polys for r in rings for c in r] + ys = [c[1] for rings in polys for r in rings for c in r] + drift = max(abs(min(xs) - float(row["bbox_west"])), + abs(min(ys) - float(row["bbox_south"])), + abs(max(xs) - float(row["bbox_east"])), + abs(max(ys) - float(row["bbox_north"]))) + if drift > 0.01: # ~1.1 km, far beyond any sane tolerance + box_drift.append(f"{key} {drift * 111000:,.0f} m") + + rep.check(not bad_json, "every polygon line is valid GeoJSON", sample(bad_json)) + rep.check(not dup, "one polygon per area key", sample(dup)) + rep.check(not bad_ring, "rings are closed with 4+ finite coords", sample(bad_ring)) + rep.check(not outside, "polygon contains the CSV point", sample(outside)) + rep.check(not box_drift, "polygon agrees with the CSV bbox", sample(box_drift)) + rep.check(not orphan, "no polygon without has_polygon=true", sample(orphan)) + + missing = [str(k) for k in claimed if k not in seen] + rep.check(not missing, "every has_polygon=true row has a polygon", + sample(missing)) + if unwound: + rep.warn(f"{len(unwound):,} rings not wound per RFC 7946", sample(unwound)) + return len(seen) + + +def main(): + p = argparse.ArgumentParser( + description=__doc__, + formatter_class=argparse.RawDescriptionHelpFormatter) + p.add_argument("--areas", default="data/areas/latest", + help="directory holding areas.csv (default: data/areas/latest)") + p.add_argument("--strict", action="store_true", + help="exit non-zero on warnings as well as failures") + a = p.parse_args() + + areas_dir = Path(a.areas) + areas_csv = areas_dir / "areas.csv" + if not areas_csv.exists(): + sys.exit(f"no area lookup table at {areas_csv}") + + with open(areas_csv, encoding="utf-8", newline="") as f: + reader = csv.DictReader(f) + rows = list(reader) + columns = list(reader.fieldnames or []) + + rep = Report() + keys = check_schema(rows, columns, rep) + check_coordinates(rows, rep) + check_parents(rows, keys, rep) + polys = check_polygons(rows, areas_dir, rep) + + print(f"{areas_csv}") + print(f" {len(rows):,} rows, {len(columns)} columns" + + (f", {polys:,} polygons" if polys else "")) + print(f" {rep.checks} checks run") + + if rep.warnings: + print(f"\n{len(rep.warnings)} warning(s):") + for w in rep.warnings: + print(f" - {w}") + if rep.failures: + print(f"\n{len(rep.failures)} FAILURE(S):") + for fl in rep.failures: + print(f" x {fl}") + sys.exit(1) + + print("\nPASS" + (" (warnings present)" if rep.warnings else "")) + if a.strict and rep.warnings: + sys.exit(2) + + +if __name__ == "__main__": + main() From d56181474412aad538fecdeb02043d9e80338075 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 15:53:25 +0530 Subject: [PATCH 10/12] feat #10: resolve ISO-3166-2 state codes in the area lookup Every example in the OpenAgriNet schema packs that names a State uses ISO-3166-2, never LGD, and the lookup carried no ISO-3166-2 rows at all. An `{"codeScheme": "ISO-3166-2", "areaCode": "IN-KA"}` reference matched nothing, so the planned ONIX plugin would have published no geometry for the specs' own examples. Add the ISO 3166-2:IN crosswalk to stage 1: 36 current codes covering every State and Union Territory, plus the 7 ISO has withdrawn but publishers still send. This repository was itself sending IN-TG, retired in favour of IN-TS in November 2023. Alias rows hold their own copy of the point, box and outline rather than a reference, so resolving an ISO code is one exact-match lookup on (code_scheme, area_code, area_level) and the plugin needs no chain walking. The new same_as column records provenance and lets the validator prove the copy has not drifted; nothing has to read it. Stage 2 fills aliases between joining and inheriting, so an ISO row takes its state's real geometry instead of an inherited country-level point. Verified: all 43 fill even under --no-inherit. validate.py gains 6 checks, each confirmed to fail when broken deliberately: self-reference, dangling same_as, cyclic chains, geometry that differs from its target, aliases left without a coordinate, and has_polygon=true with no feature under the alias's own key. The stats table gains an alias column so rows still reconcile against joined + inherited + empty. Costs 43 rows and 2.9 MB of repeated state outlines. Code scanning every feature for containment should skip rows with a non-empty same_as. Refreshed end to end, both sources, all flag combinations pass. --- tools/area-lookups/README.md | 29 +- tools/area-lookups/build_areas.py | 85 +- tools/area-lookups/data/areas/latest | 2 +- .../areas.csv | 50239 ++++++++-------- .../areas.geojsonl | 43 + .../manifest.json | 35 +- tools/area-lookups/join_geometry.py | 147 +- tools/area-lookups/validate.py | 96 +- 8 files changed, 25550 insertions(+), 25126 deletions(-) rename tools/area-lookups/data/areas/{lgd-2026-09-02 => lgd-2026-09-03}/areas.csv (52%) rename tools/area-lookups/data/areas/{lgd-2026-09-02 => lgd-2026-09-03}/areas.geojsonl (79%) rename tools/area-lookups/data/areas/{lgd-2026-09-02 => lgd-2026-09-03}/manifest.json (81%) diff --git a/tools/area-lookups/README.md b/tools/area-lookups/README.md index 315e8b13..5c2cb81b 100644 --- a/tools/area-lookups/README.md +++ b/tools/area-lookups/README.md @@ -11,11 +11,11 @@ cd tools/area-lookups python3 build_areas.py && python3 join_geometry.py && python3 validate.py ``` -Writes `data/areas/latest/` — 25,097 rows covering Country, State, District, -Block and PostalCode, plus 764 polygons. `validate.py` exits non-zero if the +Writes `data/areas/latest/` — 25,140 rows covering Country, State, District, +Block and PostalCode, plus 807 polygons. `validate.py` exits non-zero if the output is not usable, so the refresh is gated on it. -Add `--source lgd` to `join_geometry.py` for Block coordinates and 6,924 +Add `--source lgd` to `join_geometry.py` for Block coordinates and 6,967 polygons. --- @@ -27,6 +27,7 @@ polygons. | **LGD**, Ministry of Panchayati Raj — | `code_scheme`, `area_code`, `area_level`, `area_name`, `parent_scheme`, `parent_code`, `parent_level`, `census_2011_code`, `snapshot_date`, `source_url` | | **Survey of India** *(default)* — | `latitude`, `longitude`, `bbox_west`, `bbox_south`, `bbox_east`, `bbox_north`, `point_method`, `geometry_source`, `boundary_vintage`, `has_polygon` — State and District only | | **BharatMaps / NIC** *(`--source lgd`)* — `mapservice.gov.in` | the same geometry columns, and additionally resolves Block | +| **ISO 3166-2:IN** — static crosswalk in `build_areas.py` | `same_as`, and 43 extra `State` rows keyed by ISO code | Two files, joined on the same `(code_scheme, area_code, area_level)` key: @@ -39,6 +40,28 @@ Two files, joined on the same `(code_scheme, area_code, area_level)` key: unique within a level, not across levels, and 765 codes in this file name a State, a District and a Block at once. +## Resolving an ISO-3166-2 code + +Every OpenAgriNet example that names a State uses `ISO-3166-2` rather than +`LGD`, so the file carries a row per state under both schemes: `IN-KA/State` +alongside `LGD/29/State`. The 7 codes ISO has withdrawn are present too, since +publishers still send them — `IN-TG` was retired in favour of `IN-TS` in +November 2023, and this repository's own examples used it. + +An alias row holds its **own copy** of the point, box and outline, identical to +the row it mirrors. That is deliberate: a consumer resolving an ISO code does +one exact-match lookup on `(code_scheme, area_code, area_level)` and is done. +Nothing has to follow `same_as`, which exists to record where the geometry came +from and to let `validate.py` prove the copy has not drifted. + +The cost is that the 43 state outlines appear twice in `areas.geojsonl`, which +is 2.9 MB of its 14.3 MB. Code scanning every feature for containment should +therefore skip rows with a non-empty `same_as`, or it will report the same +state twice. + +ISO assigns codes to States and Union Territories only, so District and Block +remain LGD-only. There is nothing below State to translate. + `has_polygon` says whether an outline exists, so a consumer can tell from the CSV alone without opening the second file. It is `false` for PostalCode at every setting, because no boundary source publishes pincode geometry. diff --git a/tools/area-lookups/build_areas.py b/tools/area-lookups/build_areas.py index ab2deabd..d06bff97 100644 --- a/tools/area-lookups/build_areas.py +++ b/tools/area-lookups/build_areas.py @@ -72,6 +72,7 @@ "geometry_source", # which boundary layer supplied the point "boundary_vintage", "has_polygon", # is a real outline present in areas.geojsonl? + "same_as", # provenance only: canonical key an alias row mirrors ] @@ -209,8 +210,53 @@ def pick(row, *candidates): "PostalCode": "District", "Village": "Block"} +# ISO-3166-2:IN -> LGD state code. +# +# Publishers reach for ISO codes because they are short and internationally +# recognised: every example in the OpenAgriNet schema packs that names a State +# uses ISO-3166-2, never LGD. The lookup matches on +# (code_scheme, area_code, area_level), so without these rows an ISO reference +# matches nothing at all and the plugin publishes no geometry for it. +# +# ISO assigns codes to States and Union Territories only, so this is the entire +# crosswalk. There is nothing below State to translate. +# +# Verified against ISO 3166-2:IN as of 2023-11-23, the most recent amendment. +# 28 states + 8 union territories = 36. +ISO_3166_2 = { + "IN-AN": "35", "IN-AP": "28", "IN-AR": "12", "IN-AS": "18", + "IN-BR": "10", "IN-CG": "22", "IN-CH": "4", "IN-DH": "38", + "IN-DL": "7", "IN-GA": "30", "IN-GJ": "24", "IN-HP": "2", + "IN-HR": "6", "IN-JH": "20", "IN-JK": "1", "IN-KA": "29", + "IN-KL": "32", "IN-LA": "37", "IN-LD": "31", "IN-MH": "27", + "IN-ML": "17", "IN-MN": "14", "IN-MP": "23", "IN-MZ": "15", + "IN-NL": "13", "IN-OD": "21", "IN-PB": "3", "IN-PY": "34", + "IN-RJ": "8", "IN-SK": "11", "IN-TN": "33", "IN-TR": "16", + "IN-TS": "36", "IN-UK": "5", "IN-UP": "9", "IN-WB": "19", +} + +# Codes ISO has withdrawn, carried because publishers still send them. This +# repository is itself an example: two of its files use IN-TG, retired in +# favour of IN-TS in November 2023, and one uses IN-TS, so a snapshot that +# accepted only current codes would fail on the specs' own examples. +# +# Each points at its current code rather than straight at LGD. That extra hop +# is what records the row as superseded rather than merely an alternative +# spelling, and it costs the plugin nothing, because stage 2 copies geometry +# onto every one of these rows. +ISO_3166_2_WITHDRAWN = { + "IN-TG": "IN-TS", # Telangana, withdrawn 2023-11-23 + "IN-UT": "IN-UK", # Uttarakhand, withdrawn 2023-11-23 + "IN-UL": "IN-UK", # Uttarakhand as Uttaranchal, withdrawn 2011-12-13 + "IN-OR": "IN-OD", # Odisha as Orissa, withdrawn 2014-10-30 + "IN-CT": "IN-CG", # Chhattisgarh, withdrawn 2002-08-20 + "IN-DN": "IN-DH", # Dadra and Nagar Haveli, merged 2020-11-11 + "IN-DD": "IN-DH", # Daman and Diu, merged 2020-11-11 +} + + def row_out(scheme, code, level, name, parent_scheme="", parent_code="", - census="", date="", url=""): + census="", date="", url="", same_as=""): return { "code_scheme": scheme, "area_code": code, @@ -232,6 +278,7 @@ def row_out(scheme, code, level, name, parent_scheme="", parent_code="", "geometry_source": "", "boundary_vintage": "", "has_polygon": "", + "same_as": same_as, } @@ -252,16 +299,48 @@ def build(date, outdir, with_villages): date=date, url="static")) # --- states --- + state_names = {} for r in read_csv(files["states"]): code = pick(r, "State Code") if not code: continue + name = pick(r, "State Name (In English)", "State Name") + state_names[code] = name rows.append(row_out( - "LGD", code, "State", - pick(r, "State Name (In English)", "State Name"), + "LGD", code, "State", name, "ISO-3166-1", "IN", pick(r, "Census 2011 Code"), date, sources["states"])) + # --- ISO-3166-2 alias rows --- + # + # Names come from LGD rather than from ISO so that both spellings of a + # state agree with the rest of the file. Where the mapped state is + # missing from the snapshot the row is dropped and reported, because a + # code pointing at nothing is worse than a code that is absent. + missing = [] + for iso, lgd in sorted(ISO_3166_2.items()): + if lgd not in state_names: + missing.append(f"{iso}->LGD/{lgd}") + continue + rows.append(row_out( + "ISO-3166-2", iso, "State", state_names[lgd], + "ISO-3166-1", "IN", "", date, "static", + same_as=f"LGD/{lgd}/State")) + for old_code, cur in sorted(ISO_3166_2_WITHDRAWN.items()): + lgd = ISO_3166_2.get(cur, "") + if lgd not in state_names: + missing.append(f"{old_code}->{cur}") + continue + rows.append(row_out( + "ISO-3166-2", old_code, "State", state_names[lgd], + "ISO-3166-1", "IN", "", date, "static", + same_as=f"ISO-3166-2/{cur}/State")) + log(f"ISO-3166-2 {len(ISO_3166_2)} current + " + f"{len(ISO_3166_2_WITHDRAWN)} withdrawn codes") + if missing: + log(f" WARNING: {len(missing)} ISO codes map to states absent " + f"from this snapshot: {', '.join(missing)}") + # --- districts --- for r in read_csv(files["districts"]): code = pick(r, "District Code") diff --git a/tools/area-lookups/data/areas/latest b/tools/area-lookups/data/areas/latest index 01db3ce4..1c285905 120000 --- a/tools/area-lookups/data/areas/latest +++ b/tools/area-lookups/data/areas/latest @@ -1 +1 @@ -lgd-2026-09-02 \ No newline at end of file +lgd-2026-09-03 \ No newline at end of file diff --git a/tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv b/tools/area-lookups/data/areas/lgd-2026-09-03/areas.csv similarity index 52% rename from tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv rename to tools/area-lookups/data/areas/lgd-2026-09-03/areas.csv index f7071312..7dcf2956 100644 --- a/tools/area-lookups/data/areas/lgd-2026-09-02/areas.csv +++ b/tools/area-lookups/data/areas/lgd-2026-09-03/areas.csv @@ -1,25098 +1,25141 @@ -code_scheme,area_code,area_level,area_name,parent_scheme,parent_code,parent_level,census_2011_code,snapshot_date,source_url,latitude,longitude,point_method,bbox_west,bbox_south,bbox_east,bbox_north,geometry_source,boundary_vintage,has_polygon -ISO-3166-1,IN,Country,India,,,,,02Sep2026,static,23.382088,79.485000,aggregate:State,68.177512,6.752783,97.412897,37.088342,SOI_States,2023-12-11,false -LGD,35,State,Andaman And Nicobar Islands,ISO-3166-1,IN,Country,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,12.603196,92.829514,centroid,92.195893,6.752783,94.267398,13.677059,SOI_States,2023-12-11,true -LGD,28,State,Andhra Pradesh,ISO-3166-1,IN,Country,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,15.753511,79.962484,centroid,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,true -LGD,12,State,Arunachal Pradesh,ISO-3166-1,IN,Country,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,28.035268,94.673960,centroid,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,true -LGD,18,State,Assam,ISO-3166-1,IN,Country,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.355278,92.827110,centroid,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,true -LGD,10,State,Bihar,ISO-3166-1,IN,Country,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,25.678945,85.609012,centroid,83.320216,24.286006,88.293796,27.521777,SOI_States,2023-12-11,true -LGD,4,State,Chandigarh,ISO-3166-1,IN,Country,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_States,2023-12-11,true -LGD,22,State,Chhattisgarh,ISO-3166-1,IN,Country,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,21.265915,82.041059,centroid,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,true -LGD,7,State,Delhi,ISO-3166-1,IN,Country,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,28.643370,77.115437,centroid,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,true -LGD,30,State,Goa,ISO-3166-1,IN,Country,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,15.365280,74.049474,centroid,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,true -LGD,24,State,Gujarat,ISO-3166-1,IN,Country,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,22.692625,71.595166,centroid,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,true -LGD,6,State,Haryana,ISO-3166-1,IN,Country,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,29.197675,76.340342,centroid,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,true -LGD,2,State,Himachal Pradesh,ISO-3166-1,IN,Country,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,31.925300,77.248411,centroid,75.594593,30.377336,79.008917,33.256426,SOI_States,2023-12-11,true -LGD,1,State,Jammu And Kashmir,ISO-3166-1,IN,Country,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,33.675618,74.859285,centroid,73.396060,32.276005,76.779413,35.130068,SOI_States,2023-12-11,true -LGD,20,State,Jharkhand,ISO-3166-1,IN,Country,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.656374,85.564266,centroid,83.329346,21.970129,87.962825,25.349181,SOI_States,2023-12-11,true -LGD,29,State,Karnataka,ISO-3166-1,IN,Country,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,14.710573,76.167282,centroid,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,true -LGD,32,State,Kerala,ISO-3166-1,IN,Country,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.452100,76.407182,centroid,74.864337,8.293018,77.412396,12.795535,SOI_States,2023-12-11,true -LGD,37,State,Ladakh,ISO-3166-1,IN,Country,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,34.948731,76.794070,centroid,72.512762,32.335694,80.345084,37.088342,SOI_States,2023-12-11,true -LGD,31,State,Lakshadweep,ISO-3166-1,IN,Country,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_States,2023-12-11,true -LGD,23,State,Madhya Pradesh,ISO-3166-1,IN,Country,23,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.538142,78.289776,centroid,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,true -LGD,27,State,Maharashtra,ISO-3166-1,IN,Country,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,19.451683,76.107454,centroid,72.641991,15.606085,80.897684,22.030269,SOI_States,2023-12-11,true -LGD,14,State,Manipur,ISO-3166-1,IN,Country,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,24.733858,93.878817,centroid,92.969434,23.832848,94.744890,25.692090,SOI_States,2023-12-11,true -LGD,17,State,Meghalaya,ISO-3166-1,IN,Country,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,25.535419,91.278401,centroid,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,true -LGD,15,State,Mizoram,ISO-3166-1,IN,Country,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.306959,92.831811,centroid,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,true -LGD,13,State,Nagaland,ISO-3166-1,IN,Country,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.062153,94.466308,centroid,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,true -LGD,21,State,Odisha,ISO-3166-1,IN,Country,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,20.511652,84.426842,centroid,81.388378,17.812450,87.486135,22.567507,SOI_States,2023-12-11,true -LGD,34,State,Puducherry,ISO-3166-1,IN,Country,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,10.933465,79.802983,centroid,75.526556,10.827383,82.310616,16.763695,SOI_States,2023-12-11,true -LGD,3,State,Punjab,ISO-3166-1,IN,Country,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.842128,75.415888,centroid,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,true -LGD,8,State,Rajasthan,ISO-3166-1,IN,Country,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.584176,73.849855,centroid,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,true -LGD,11,State,Sikkim,ISO-3166-1,IN,Country,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,27.570188,88.473019,centroid,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,true -LGD,33,State,Tamil Nadu,ISO-3166-1,IN,Country,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,11.015873,78.407996,centroid,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,true -LGD,36,State,Telangana,ISO-3166-1,IN,Country,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,17.800653,79.009116,centroid,77.235761,15.836003,81.322641,19.916807,SOI_States,2023-12-11,true -LGD,38,State,The Dadra And Nagar Haveli And Daman And Diu,ISO-3166-1,IN,Country,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,20.191077,73.058434,interior_grid,70.870788,20.047018,73.218192,20.771437,SOI_States,2023-12-11,true -LGD,16,State,Tripura,ISO-3166-1,IN,Country,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.745620,91.740747,centroid,91.149198,22.938351,92.332057,24.531867,SOI_States,2023-12-11,true -LGD,5,State,Uttarakhand,ISO-3166-1,IN,Country,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,30.156322,79.207366,centroid,77.572316,28.722831,81.046605,31.462080,SOI_States,2023-12-11,true -LGD,9,State,Uttar Pradesh,ISO-3166-1,IN,Country,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,26.923320,80.565958,centroid,77.083948,23.870110,84.634660,30.406276,SOI_States,2023-12-11,true -LGD,19,State,West Bengal,ISO-3166-1,IN,Country,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z,23.808568,87.988173,centroid,85.819673,21.527082,89.882602,27.221067,SOI_States,2023-12-11,true -LGD,603,District,Nicobars,LGD,35,State,638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,7.024826,93.799023,centroid,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,true -LGD,632,District,North And Middle Andaman,LGD,35,State,639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.842528,92.870475,centroid,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,true -LGD,602,District,South Andamans,LGD,35,State,640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.523693,92.648491,centroid,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,true -LGD,745,District,Alluri Sitharama Raju,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,744,District,Anakapalli,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,502,District,Ananthapuramu,LGD,28,State,553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.493043,77.566974,centroid,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,true -LGD,753,District,Annamayya,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,750,District,Bapatla,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,503,District,Chittoor,LGD,28,State,554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.464938,79.005997,centroid,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,true -LGD,747,District,Dr. B.R. Ambedkar Konaseema,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,505,District,East Godavari,LGD,28,State,545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.272008,81.893276,centroid,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,true -LGD,748,District,Eluru,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,506,District,Guntur,LGD,28,State,548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.293106,80.078833,centroid,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,true -LGD,746,District,Kakinada,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,510,District,Krishna,LGD,28,State,547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.555707,80.797994,centroid,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,true -LGD,511,District,Kurnool,LGD,28,State,552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.535569,78.012995,centroid,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,true -LGD,790,District,Markapuram,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,755,District,Nandyal,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,749,District,Ntr,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,751,District,Palnadu,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,743,District,Parvathipuram Manyam,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,791,District,Polavaram,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,517,District,Prakasam,LGD,28,State,549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.616202,79.515203,centroid,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,true -LGD,519,District,Srikakulam,LGD,28,State,542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.597701,84.022731,centroid,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,true -LGD,515,District,Sri Potti Sriramulu Nellore,LGD,28,State,550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.418363,79.738935,centroid,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,true -LGD,754,District,Sri Sathya Sai,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,752,District,Tirupati,LGD,28,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,520,District,Visakhapatnam,LGD,28,State,544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.893416,82.693925,centroid,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,true -LGD,521,District,Vizianagaram,LGD,28,State,543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.472878,83.385198,centroid,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,true -LGD,523,District,West Godavari,LGD,28,State,546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.931401,81.387360,centroid,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,true -LGD,504,District,Y.S.R. Kadapa,LGD,28,State,551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.463753,78.780374,centroid,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,true -LGD,628,District,Anjaw,LGD,12,State,260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.066616,96.856247,centroid,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,true -LGD,787,District,Bichom,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,229,District,Changlang,LGD,12,State,253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.369957,96.353040,centroid,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,true -LGD,230,District,Dibang Valley,LGD,12,State,257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.868333,95.909961,centroid,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,true -LGD,231,District,East Kameng,LGD,12,State,247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.587861,92.917506,centroid,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,true -LGD,232,District,East Siang,LGD,12,State,251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.048218,95.354000,centroid,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,true -LGD,718,District,Kamle,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.741518,94.078176,centroid,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,true -LGD,786,District,Keyi Panyor,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,677,District,Kra Daadi,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.017789,93.672960,centroid,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,true -LGD,233,District,Kurung Kumey,LGD,12,State,256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.002616,93.206931,centroid,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,true -LGD,724,District,Leparada,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.925491,94.716086,centroid,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,true -LGD,234,District,Lohit,LGD,12,State,259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.929436,96.300479,centroid,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,true -LGD,666,District,Longding,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.855201,95.327659,centroid,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,true -LGD,235,District,Lower Dibang Valley,LGD,12,State,258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.254737,95.821628,centroid,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,true -LGD,719,District,Lower Siang,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.775244,94.694459,centroid,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,true -LGD,236,District,Lower Subansiri,LGD,12,State,255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.588340,93.776522,centroid,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,true -LGD,678,District,Namsai,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.701176,96.043183,centroid,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,true -LGD,723,District,Pakke Kessang,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.105402,93.035255,centroid,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,true -LGD,237,District,Papum Pare,LGD,12,State,248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.270137,93.596281,centroid,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,true -LGD,725,District,Shi Yomi,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.676965,94.260983,centroid,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,true -LGD,679,District,Siang,LGD,12,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.404385,94.808912,centroid,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,true -LGD,238,District,Tawang,LGD,12,State,245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.662208,91.965169,centroid,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,true -LGD,239,District,Tirap,LGD,12,State,254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.024225,95.543181,centroid,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,true -LGD,240,District,Upper Siang,LGD,12,State,252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.832949,94.915294,centroid,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,true -LGD,241,District,Upper Subansiri,LGD,12,State,249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.289938,93.929551,centroid,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,true -LGD,242,District,West Kameng,LGD,12,State,246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.291857,92.393051,centroid,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,true -LGD,243,District,West Siang,LGD,12,State,250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.159942,94.613450,interior_grid,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,true -LGD,739,District,Bajali,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -LGD,616,District,Baksa,LGD,18,State,324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.660208,91.351220,centroid,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,true -LGD,280,District,Barpeta,LGD,18,State,303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.341730,91.003652,centroid,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,true -LGD,705,District,Biswanath,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.812104,93.312825,centroid,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,true -LGD,281,District,Bongaigaon,LGD,18,State,319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.354045,90.614044,centroid,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,true -LGD,282,District,Cachar,LGD,18,State,316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.812469,92.854835,centroid,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,true -LGD,708,District,Charaideo,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.067765,95.059768,centroid,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,true -LGD,612,District,Chirang,LGD,18,State,320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.659673,90.595862,centroid,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,true -LGD,283,District,Darrang,LGD,18,State,325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.447690,92.029452,centroid,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,true -LGD,284,District,Dhemaji,LGD,18,State,308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.589777,94.774961,centroid,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,true -LGD,285,District,Dhubri,LGD,18,State,301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.142595,90.042012,interior_grid,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,true -LGD,286,District,Dibrugarh,LGD,18,State,310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.366986,95.053106,centroid,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,true -LGD,299,District,Dima Hasao,LGD,18,State,315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.377940,93.030966,centroid,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,true -LGD,287,District,Goalpara,LGD,18,State,302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.050242,90.607466,centroid,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,true -LGD,288,District,Golaghat,LGD,18,State,313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.443087,93.831353,centroid,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,true -LGD,289,District,Hailakandi,LGD,18,State,318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.497097,92.587787,centroid,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,true -LGD,709,District,Hojai,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.978201,92.979926,centroid,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,true -LGD,290,District,Jorhat,LGD,18,State,312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.695491,94.276417,centroid,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,true -LGD,291,District,Kamrup,LGD,18,State,321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.100380,91.416295,centroid,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,true -LGD,618,District,Kamrup Metro,LGD,18,State,322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.128528,91.891940,centroid,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,true -LGD,292,District,Karbi Anglong,LGD,18,State,314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.156857,93.404795,centroid,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,true -LGD,294,District,Kokrajhar,LGD,18,State,300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.492770,90.118799,centroid,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,true -LGD,295,District,Lakhimpur,LGD,18,State,307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.174006,94.140707,centroid,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,true -LGD,706,District,Majuli,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.938190,94.171745,centroid,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,true -LGD,296,District,Marigaon,LGD,18,State,304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.281812,92.284050,centroid,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,true -LGD,297,District,Nagaon,LGD,18,State,305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.362398,92.753571,centroid,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,true -LGD,298,District,Nalbari,LGD,18,State,323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.370536,91.382421,centroid,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,true -LGD,300,District,Sivasagar,LGD,18,State,311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.970450,94.664944,centroid,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,true -LGD,301,District,Sonitpur,LGD,18,State,306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.758534,92.651006,centroid,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,true -LGD,707,District,South Salmara Mancachar,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.778073,89.931723,centroid,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,true -LGD,293,District,Sribhumi,LGD,18,State,317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.579503,92.379052,centroid,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,true -LGD,756,District,Tamulpur,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -LGD,302,District,Tinsukia,LGD,18,State,309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.579952,95.619579,centroid,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,true -LGD,617,District,Udalguri,LGD,18,State,326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.730123,92.031407,centroid,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,true -LGD,710,District,West Karbi Anglong,LGD,18,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.849996,92.532969,centroid,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,true -LGD,188,District,Araria,LGD,10,State,209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.198668,87.363318,centroid,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,true -LGD,611,District,Arwal,LGD,10,State,240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.163235,84.677455,centroid,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,true -LGD,189,District,Aurangabad,LGD,10,State,235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.790895,84.408740,centroid,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,true -LGD,190,District,Banka,LGD,10,State,225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.854081,86.837107,centroid,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,true -LGD,191,District,Begusarai,LGD,10,State,222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.496664,86.129714,centroid,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,true -LGD,192,District,Bhagalpur,LGD,10,State,224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.269569,87.082847,centroid,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,true -LGD,193,District,Bhojpur,LGD,10,State,231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.470829,84.542485,centroid,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,true -LGD,194,District,Buxar,LGD,10,State,232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.491965,84.099685,centroid,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,true -LGD,195,District,Darbhanga,LGD,10,State,215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.084387,86.054245,centroid,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,true -LGD,196,District,Gaya,LGD,10,State,236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.696793,84.934254,centroid,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,true -LGD,197,District,Gopalganj,LGD,10,State,217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.443845,84.373836,centroid,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,true -LGD,198,District,Jamui,LGD,10,State,238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.783624,86.293785,centroid,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,true -LGD,199,District,Jehanabad,LGD,10,State,239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.155070,85.016832,centroid,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,true -LGD,200,District,Kaimur (Bhabua),LGD,10,State,233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.991849,83.605603,centroid,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,true -LGD,201,District,Katihar,LGD,10,State,212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.548653,87.640579,centroid,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,true -LGD,202,District,Khagaria,LGD,10,State,223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.511006,86.601532,centroid,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,true -LGD,203,District,Kishanganj,LGD,10,State,210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.296361,87.935551,centroid,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,true -LGD,204,District,Lakhisarai,LGD,10,State,227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.161234,86.136725,centroid,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,true -LGD,205,District,Madhepura,LGD,10,State,213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.822712,86.898913,centroid,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,true -LGD,206,District,Madhubani,LGD,10,State,207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.402234,86.221843,centroid,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,true -LGD,207,District,Munger,LGD,10,State,226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.210030,86.526055,centroid,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,true -LGD,208,District,Muzaffarpur,LGD,10,State,216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.152133,85.328539,centroid,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,true -LGD,209,District,Nalanda,LGD,10,State,229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.219052,85.450164,centroid,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,true -LGD,210,District,Nawada,LGD,10,State,237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.811001,85.589668,centroid,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,true -LGD,211,District,Pashchim Champaran,LGD,10,State,203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.079822,84.338905,centroid,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,true -LGD,212,District,Patna,LGD,10,State,230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.455947,85.223570,centroid,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,true -LGD,213,District,Purbi Champaran,LGD,10,State,204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.618344,84.921996,centroid,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,true -LGD,214,District,Purnia,LGD,10,State,211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.815393,87.405089,centroid,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,true -LGD,215,District,Rohtas,LGD,10,State,234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.979822,84.025967,centroid,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,true -LGD,216,District,Saharsa,LGD,10,State,214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.814227,86.590738,centroid,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,true -LGD,217,District,Samastipur,LGD,10,State,221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.772996,85.865723,centroid,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,true -LGD,218,District,Saran,LGD,10,State,219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.905685,84.823193,centroid,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,true -LGD,219,District,Sheikhpura,LGD,10,State,228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.123650,85.838344,centroid,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,true -LGD,220,District,Sheohar,LGD,10,State,205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.497836,85.301880,centroid,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,true -LGD,221,District,Sitamarhi,LGD,10,State,206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.585083,85.552608,centroid,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,true -LGD,222,District,Siwan,LGD,10,State,218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.161266,84.386962,centroid,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,true -LGD,223,District,Supaul,LGD,10,State,208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.245094,86.808186,centroid,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,true -LGD,224,District,Vaishali,LGD,10,State,220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.763071,85.368195,centroid,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,true -LGD,44,District,Chandigarh,LGD,4,State,55,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11,true -LGD,646,District,Balod,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.741641,81.188372,centroid,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,true -LGD,644,District,Balodabazar-Bhatapara,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.582031,82.327512,centroid,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,true -LGD,649,District,Balrampur-Ramanujganj,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.592678,83.501241,centroid,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,true -LGD,374,District,Bastar,LGD,22,State,414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.095835,81.867804,centroid,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,true -LGD,650,District,Bemetara,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.660879,81.469869,centroid,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,true -LGD,636,District,Bijapur,LGD,22,State,417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.860867,80.800554,centroid,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,true -LGD,375,District,Bilaspur,LGD,22,State,406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.179960,82.115906,centroid,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,true -LGD,376,District,Dakshin Bastar Dantewada,LGD,22,State,416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.804749,81.390283,centroid,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,true -LGD,377,District,Dhamtari,LGD,22,State,412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.555245,81.808854,centroid,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,true -LGD,378,District,Durg,LGD,22,State,409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.220343,81.383275,centroid,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,true -LGD,645,District,Gariyaband,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.448083,82.235234,centroid,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,true -LGD,734,District,Gaurela-Pendra-Marwahi,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.804965,81.998854,centroid,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,true -LGD,379,District,Janjgir-Champa,LGD,22,State,405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.921350,82.592276,centroid,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,true -LGD,380,District,Jashpur,LGD,22,State,402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.801105,83.862511,centroid,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,true -LGD,382,District,Kabeerdham,LGD,22,State,407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.092525,81.222508,centroid,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,true -LGD,759,District,Khairagarh-Chhuikhadan-Gandai,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,643,District,Kondagaon,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.745701,81.664919,centroid,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,true -LGD,383,District,Korba,LGD,22,State,404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.534684,82.608204,centroid,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,true -LGD,384,District,Korea,LGD,22,State,400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.469802,82.235279,centroid,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,true -LGD,385,District,Mahasamund,LGD,22,State,411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.207969,82.608312,centroid,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,true -LGD,760,District,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,761,District,Mohla-Manpur-Ambagarh Chouki,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,647,District,Mungeli,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.240399,81.730560,centroid,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,true -LGD,637,District,Narayanpur,LGD,22,State,415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.570198,81.085072,centroid,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,true -LGD,386,District,Raigarh,LGD,22,State,403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.085227,83.303068,centroid,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,true -LGD,387,District,Raipur,LGD,22,State,410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.285804,81.820087,centroid,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,true -LGD,388,District,Rajnandgaon,LGD,22,State,408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.039397,80.820053,centroid,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,true -LGD,762,District,Sakti,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,763,District,Sarangarh-Bilaigarh,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,642,District,Sukma,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.272188,81.365650,centroid,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,true -LGD,648,District,Surajpur,LGD,22,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.401996,82.883600,centroid,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,true -LGD,389,District,Surguja,LGD,22,State,401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.928368,83.227178,centroid,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,true -LGD,381,District,Uttar Bastar Kanker,LGD,22,State,413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.137568,81.122709,centroid,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,true -LGD,77,District,Central,LGD,7,State,95,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.681583,77.224161,centroid,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,true -LGD,796,District,Central North,LGD,7,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,78,District,East,LGD,7,State,93,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.622088,77.304590,centroid,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,true -LGD,79,District,New Delhi,LGD,7,State,94,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.577155,77.148588,centroid,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,true -LGD,80,District,North,LGD,7,State,91,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.793505,77.107739,centroid,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,true -LGD,81,District,North East,LGD,7,State,92,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.722615,77.256547,centroid,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,true -LGD,82,District,North West,LGD,7,State,90,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.725251,77.043125,centroid,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,true -LGD,795,District,Old Delhi,LGD,7,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,794,District,Outer North,LGD,7,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,83,District,South,LGD,7,State,98,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.481463,77.190717,centroid,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,true -LGD,670,District,South East,LGD,7,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.542227,77.272944,centroid,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,true -LGD,84,District,South West,LGD,7,State,97,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.576241,76.967730,centroid,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,true -LGD,85,District,West,LGD,7,State,96,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.655426,77.063965,centroid,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,true -LGD,793,District,Kushavati,LGD,30,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -LGD,551,District,North Goa,LGD,30,State,585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.549741,73.976654,centroid,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,true -LGD,552,District,South Goa,LGD,30,State,586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.200426,74.114554,centroid,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,true -LGD,438,District,Ahmedabad,LGD,24,State,474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.756916,72.243635,centroid,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,true -LGD,439,District,Amreli,LGD,24,State,480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.425061,71.242250,centroid,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,true -LGD,440,District,Anand,LGD,24,State,482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.426788,72.750860,centroid,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,true -LGD,672,District,Arvalli,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.460770,73.333057,centroid,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,true -LGD,441,District,Banas Kantha,LGD,24,State,469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.287309,72.023840,centroid,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,true -LGD,442,District,Bharuch,LGD,24,State,488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.781624,72.940813,centroid,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,true -LGD,443,District,Bhavnagar,LGD,24,State,481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.567255,71.890807,centroid,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,true -LGD,676,District,Botad,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.111237,71.675173,centroid,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,true -LGD,668,District,Chhotaudepur,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.219363,73.873322,centroid,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,true -LGD,445,District,Dahod,LGD,24,State,485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.860252,74.112368,centroid,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,true -LGD,444,District,Dangs,LGD,24,State,489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.804932,73.700704,centroid,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,true -LGD,674,District,Devbhumi Dwarka,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.123915,69.460359,centroid,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,true -LGD,446,District,Gandhinagar,LGD,24,State,473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.255060,72.691828,centroid,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,true -LGD,675,District,Gir Somnath,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.904305,70.754896,centroid,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,true -LGD,447,District,Jamnagar,LGD,24,State,477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.284992,70.195152,centroid,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,true -LGD,448,District,Junagadh,LGD,24,State,479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.322204,70.484799,centroid,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,true -LGD,449,District,Kachchh,LGD,24,State,468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.649743,69.939927,centroid,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,true -LGD,450,District,Kheda,LGD,24,State,483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.837464,72.950496,centroid,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,true -LGD,451,District,Mahesana,LGD,24,State,471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.609492,72.466734,centroid,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,true -LGD,669,District,Mahisagar,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.187631,73.647054,centroid,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,true -LGD,673,District,Morbi,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.834967,70.903505,centroid,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,true -LGD,452,District,Narmada,LGD,24,State,487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.736946,73.644961,centroid,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,true -LGD,453,District,Navsari,LGD,24,State,490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.815302,73.092556,centroid,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,true -LGD,454,District,Panch Mahals,LGD,24,State,484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.719962,73.625560,centroid,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,true -LGD,455,District,Patan,LGD,24,State,470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.770377,71.758662,centroid,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,true -LGD,456,District,Porbandar,LGD,24,State,478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.654830,69.777118,centroid,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,true -LGD,457,District,Rajkot,LGD,24,State,476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.025462,70.744479,centroid,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,true -LGD,458,District,Sabar Kantha,LGD,24,State,472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.804138,73.036193,centroid,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,true -LGD,459,District,Surat,LGD,24,State,492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.268923,73.071114,centroid,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,true -LGD,460,District,Surendranagar,LGD,24,State,475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.765832,71.593076,centroid,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,true -LGD,641,District,Tapi,LGD,24,State,493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.191623,73.626694,centroid,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,true -LGD,461,District,Vadodara,LGD,24,State,486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.248056,73.239088,centroid,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,true -LGD,462,District,Valsad,LGD,24,State,491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.418149,73.120123,centroid,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,true -LGD,789,District,Vav-Tharad,LGD,24,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,58,District,Ambala,LGD,6,State,70,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.328333,76.938819,centroid,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,true -LGD,59,District,Bhiwani,LGD,6,State,81,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.779986,75.890362,centroid,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,true -LGD,701,District,Charkhi Dadri,LGD,6,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.576821,76.153473,centroid,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,true -LGD,60,District,Faridabad,LGD,6,State,88,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.352029,77.342381,centroid,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,true -LGD,61,District,Fatehabad,LGD,6,State,78,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.568879,75.576977,centroid,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,true -LGD,62,District,Gurugram,LGD,6,State,86,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.369140,76.939969,centroid,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,true -LGD,792,District,Hansi,LGD,6,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -LGD,63,District,Hisar,LGD,6,State,80,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.211695,75.822441,centroid,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,true -LGD,64,District,Jhajjar,LGD,6,State,83,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.604827,76.648173,centroid,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,true -LGD,65,District,Jind,LGD,6,State,77,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.435165,76.303632,centroid,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,true -LGD,66,District,Kaithal,LGD,6,State,73,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.811241,76.413852,centroid,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,true -LGD,67,District,Karnal,LGD,6,State,74,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.688952,76.887790,centroid,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,true -LGD,68,District,Kurukshetra,LGD,6,State,72,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.038696,76.784940,centroid,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,true -LGD,69,District,Mahendragarh,LGD,6,State,84,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.171027,76.138339,centroid,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,true -LGD,604,District,Nuh,LGD,6,State,87,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.985194,77.050196,centroid,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,true -LGD,619,District,Palwal,LGD,6,State,89,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.062991,77.334914,centroid,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,true -LGD,70,District,Panchkula,LGD,6,State,69,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.686460,76.977506,centroid,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,true -LGD,71,District,Panipat,LGD,6,State,75,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.337959,76.928109,centroid,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,true -LGD,72,District,Rewari,LGD,6,State,85,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.240787,76.536358,centroid,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,true -LGD,73,District,Rohtak,LGD,6,State,82,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.912077,76.530277,centroid,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,true -LGD,74,District,Sirsa,LGD,6,State,79,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.615601,74.900793,centroid,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,true -LGD,75,District,Sonipat,LGD,6,State,76,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.056549,76.874796,centroid,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,true -LGD,76,District,Yamunanagar,LGD,6,State,71,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.234263,77.302286,centroid,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,true -LGD,15,District,Bilaspur,LGD,2,State,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.370997,76.670218,centroid,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,true -LGD,16,District,Chamba,LGD,2,State,23,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.674760,76.348210,centroid,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,true -LGD,17,District,Hamirpur,LGD,2,State,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.667072,76.525513,centroid,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,true -LGD,18,District,Kangra,LGD,2,State,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.108262,76.315594,centroid,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,true -LGD,19,District,Kinnaur,LGD,2,State,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.595321,78.413983,centroid,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,true -LGD,20,District,Kullu,LGD,2,State,26,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.902180,77.398851,centroid,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,true -LGD,21,District,Lahaul And Spiti,LGD,2,State,25,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.480058,77.616702,centroid,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,true -LGD,22,District,Mandi,LGD,2,State,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.636785,76.991568,centroid,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,true -LGD,23,District,Shimla,LGD,2,State,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.197358,77.632010,centroid,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,true -LGD,24,District,Sirmaur,LGD,2,State,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.666819,77.430921,centroid,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,true -LGD,25,District,Solan,LGD,2,State,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.045294,76.909556,centroid,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,true -LGD,26,District,Una,LGD,2,State,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.579300,76.209866,centroid,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,true -LGD,1,District,Anantnag,LGD,1,State,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.826532,75.324713,centroid,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,true -LGD,623,District,Bandipora,LGD,1,State,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.587294,74.876122,centroid,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,true -LGD,3,District,Baramulla,LGD,1,State,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.158233,74.302510,centroid,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,true -LGD,2,District,Budgam,LGD,1,State,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.918231,74.634582,centroid,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,true -LGD,4,District,Doda,LGD,1,State,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.093287,75.714680,centroid,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,true -LGD,626,District,Ganderbal,LGD,1,State,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.262056,75.032361,centroid,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,true -LGD,5,District,Jammu,LGD,1,State,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.804977,74.746861,centroid,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,true -LGD,7,District,Kathua,LGD,1,State,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.574591,75.583408,centroid,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,true -LGD,620,District,Kishtwar,LGD,1,State,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.549896,75.971004,centroid,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,true -LGD,622,District,Kulgam,LGD,1,State,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.606434,74.860001,centroid,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,true -LGD,8,District,Kupwara,LGD,1,State,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.521364,74.207221,centroid,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,true -LGD,10,District,Poonch,LGD,1,State,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.783995,74.017819,centroid,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,true -LGD,11,District,Pulwama,LGD,1,State,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.940691,75.016857,centroid,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,true -LGD,12,District,Rajouri,LGD,1,State,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.278226,74.380875,centroid,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,true -LGD,621,District,Ramban,LGD,1,State,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.307671,75.189864,centroid,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,true -LGD,627,District,Reasi,LGD,1,State,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.238912,74.831425,centroid,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,true -LGD,624,District,Samba,LGD,1,State,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.581686,75.090492,centroid,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,true -LGD,625,District,Shopian,LGD,1,State,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.735213,74.818533,centroid,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,true -LGD,13,District,Srinagar,LGD,1,State,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,34.114653,74.821269,centroid,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,true -LGD,14,District,Udhampur,LGD,1,State,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.898827,75.296952,centroid,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,true -LGD,322,District,Bokaro,LGD,20,State,355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.694742,85.996538,centroid,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,true -LGD,323,District,Chatra,LGD,20,State,347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.164478,84.891481,centroid,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,true -LGD,324,District,Deoghar,LGD,20,State,350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.328324,86.740210,centroid,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,true -LGD,325,District,Dhanbad,LGD,20,State,354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.826760,86.472253,centroid,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,true -LGD,326,District,Dumka,LGD,20,State,362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.319558,87.266417,centroid,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,true -LGD,327,District,East Singhbum,LGD,20,State,357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.582489,86.451427,centroid,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,true -LGD,328,District,Garhwa,LGD,20,State,346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.103698,83.698491,centroid,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,true -LGD,329,District,Giridih,LGD,20,State,349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.293575,86.110998,centroid,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,true -LGD,330,District,Godda,LGD,20,State,351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.858838,87.308684,centroid,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,true -LGD,331,District,Gumla,LGD,20,State,366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.103200,84.532365,centroid,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,true -LGD,332,District,Hazaribagh,LGD,20,State,360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.062077,85.425876,centroid,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,true -LGD,333,District,Jamtara,LGD,20,State,363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.975652,86.907467,centroid,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,true -LGD,606,District,Khunti,LGD,20,State,365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.994324,85.262599,centroid,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,true -LGD,334,District,Koderma,LGD,20,State,348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.500046,85.667996,centroid,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,true -LGD,335,District,Latehar,LGD,20,State,359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.716982,84.444799,centroid,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,true -LGD,336,District,Lohardaga,LGD,20,State,356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.475720,84.671773,centroid,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,true -LGD,337,District,Pakur,LGD,20,State,353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.564154,87.662615,centroid,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,true -LGD,338,District,Palamu,LGD,20,State,358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.199754,84.168881,centroid,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,true -LGD,607,District,Ramgarh,LGD,20,State,361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.634171,85.564362,centroid,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,true -LGD,339,District,Ranchi,LGD,20,State,364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.328674,85.375279,centroid,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,true -LGD,340,District,Sahebganj,LGD,20,State,352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.010776,87.678156,centroid,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,true -LGD,341,District,Saraikela Kharsawan,LGD,20,State,369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.847376,85.950299,centroid,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,true -LGD,342,District,Simdega,LGD,20,State,367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.581800,84.564239,centroid,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,true -LGD,343,District,West Singhbhum,LGD,20,State,368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.420670,85.518106,centroid,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,true -LGD,524,District,Bagalkote,LGD,29,State,556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.221360,75.625545,centroid,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,true -LGD,528,District,Ballari,LGD,29,State,565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.110053,76.532663,centroid,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,true -LGD,527,District,Belagavi,LGD,29,State,555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.120633,74.823078,centroid,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,true -LGD,526,District,Bengaluru Rural,LGD,29,State,583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.227244,77.574079,centroid,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,true -LGD,631,District,Bengaluru South,LGD,29,State,584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.679132,77.335368,centroid,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,true -LGD,525,District,Bengaluru Urban,LGD,29,State,572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.951773,77.593709,centroid,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,true -LGD,529,District,Bidar,LGD,29,State,558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.952944,77.225064,centroid,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,true -LGD,531,District,Chamarajanagar,LGD,29,State,578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.958215,77.097666,centroid,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,true -LGD,630,District,Chikkaballapura,LGD,29,State,582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.578012,77.835250,centroid,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,true -LGD,532,District,Chikkamagaluru,LGD,29,State,570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.454630,75.690643,centroid,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,true -LGD,533,District,Chitradurga,LGD,29,State,566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.168582,76.515192,centroid,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,true -LGD,534,District,Dakshina Kannada,LGD,29,State,575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.853124,75.250904,centroid,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,true -LGD,535,District,Davanagere,LGD,29,State,567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.408738,75.954074,centroid,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,true -LGD,536,District,Dharwad,LGD,29,State,562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.390180,75.152300,centroid,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,true -LGD,537,District,Gadag,LGD,29,State,561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.431463,75.665251,centroid,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,true -LGD,539,District,Hassan,LGD,29,State,574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.996418,76.107830,centroid,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,true -LGD,540,District,Haveri,LGD,29,State,564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.738833,75.416481,centroid,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,true -LGD,538,District,Kalaburagi,LGD,29,State,579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.260450,76.868950,centroid,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,true -LGD,541,District,Kodagu,LGD,29,State,576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.325015,75.801291,centroid,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,true -LGD,542,District,Kolar,LGD,29,State,581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.139716,78.217875,centroid,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,true -LGD,543,District,Koppal,LGD,29,State,560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,15.562534,76.221462,centroid,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,true -LGD,544,District,Mandya,LGD,29,State,573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.611423,76.797236,centroid,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,true -LGD,545,District,Mysuru,LGD,29,State,577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.210442,76.440368,centroid,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,true -LGD,546,District,Raichur,LGD,29,State,559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.090678,76.891761,centroid,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,true -LGD,547,District,Shivamogga,LGD,29,State,568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.043206,75.220165,centroid,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,true -LGD,548,District,Tumakuru,LGD,29,State,571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.521638,76.946204,centroid,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,true -LGD,549,District,Udupi,LGD,29,State,569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.498278,74.871960,centroid,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,true -LGD,550,District,Uttara Kannada,LGD,29,State,563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.791505,74.619576,centroid,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,true -LGD,738,District,Vijayanagara,LGD,29,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -LGD,530,District,Vijayapura,LGD,29,State,557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.794485,75.952820,centroid,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,true -LGD,635,District,Yadgir,LGD,29,State,580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.626858,76.912489,centroid,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,true -LGD,554,District,Alappuzha,LGD,32,State,598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.428387,76.447041,centroid,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,true -LGD,555,District,Ernakulam,LGD,32,State,595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.084494,76.546013,centroid,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,true -LGD,556,District,Idukki,LGD,32,State,596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.839668,77.056847,centroid,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,true -LGD,557,District,Kannur,LGD,32,State,589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.001100,75.523524,centroid,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,true -LGD,558,District,Kasaragod,LGD,32,State,588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.462369,75.151022,centroid,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,true -LGD,559,District,Kollam,LGD,32,State,600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.962527,76.871728,centroid,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,true -LGD,560,District,Kottayam,LGD,32,State,597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.637751,76.650700,centroid,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,true -LGD,561,District,Kozhikode,LGD,32,State,591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.485645,75.833309,centroid,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,true -LGD,562,District,Malappuram,LGD,32,State,592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.133326,76.154377,centroid,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,true -LGD,563,District,Palakkad,LGD,32,State,593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.795647,76.556398,centroid,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,true -LGD,564,District,Pathanamthitta,LGD,32,State,599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.284934,76.926426,centroid,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,true -LGD,565,District,Thiruvananthapuram,LGD,32,State,601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.609470,77.012216,centroid,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,true -LGD,566,District,Thrissur,LGD,32,State,594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.471945,76.314555,centroid,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,true -LGD,567,District,Wayanad,LGD,32,State,590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.712508,76.097753,centroid,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,true -LGD,6,District,Kargil,LGD,37,State,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,33.902845,76.494643,centroid,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,true -LGD,9,District,Leh Ladakh,LGD,37,State,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,35.043894,76.821315,centroid,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,true -LGD,553,District,Lakshadweep District,LGD,31,State,587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,true -LGD,667,District,Agar-Malwa,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.826490,76.071034,centroid,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,true -LGD,639,District,Alirajpur,LGD,23,State,465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.314414,74.363886,centroid,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,true -LGD,390,District,Anuppur,LGD,23,State,461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.056856,81.682706,centroid,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,true -LGD,391,District,Ashoknagar,LGD,23,State,459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.609385,77.875356,centroid,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,true -LGD,392,District,Balaghat,LGD,23,State,457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.880796,80.359833,centroid,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,true -LGD,393,District,Barwani,LGD,23,State,441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.788217,75.020879,centroid,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,true -LGD,394,District,Betul,LGD,23,State,447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.878491,77.871242,centroid,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,true -LGD,395,District,Bhind,LGD,23,State,420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.421879,78.721245,centroid,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,true -LGD,396,District,Bhopal,LGD,23,State,444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.470159,77.390757,centroid,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,true -LGD,397,District,Burhanpur,LGD,23,State,467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.370677,76.369160,centroid,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,true -LGD,398,District,Chhatarpur,LGD,23,State,425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.798140,79.665843,centroid,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,true -LGD,399,District,Chhindwara,LGD,23,State,455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.122543,78.854128,centroid,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,true -LGD,400,District,Damoh,LGD,23,State,428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.812319,79.526831,centroid,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,true -LGD,401,District,Datia,LGD,23,State,422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.801368,78.598029,centroid,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,true -LGD,402,District,Dewas,LGD,23,State,437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.744198,76.456861,centroid,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,true -LGD,403,District,Dhar,LGD,23,State,438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.497955,75.103968,centroid,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,true -LGD,404,District,Dindori,LGD,23,State,453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.889989,81.051289,centroid,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,true -LGD,406,District,Guna,LGD,23,State,458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.555940,77.198633,centroid,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,true -LGD,407,District,Gwalior,LGD,23,State,421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.039596,78.146084,centroid,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,true -LGD,408,District,Harda,LGD,23,State,448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.232408,77.123520,centroid,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,true -LGD,410,District,Indore,LGD,23,State,439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.713138,75.782221,centroid,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,true -LGD,411,District,Jabalpur,LGD,23,State,451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.234003,79.975911,centroid,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,true -LGD,412,District,Jhabua,LGD,23,State,464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.892390,74.671552,centroid,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,true -LGD,413,District,Katni,LGD,23,State,450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.752838,80.401399,centroid,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,true -LGD,405,District,Khandwa (East Nimar),LGD,23,State,466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.935151,76.568398,centroid,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,true -LGD,414,District,Khargone (West Nimar),LGD,23,State,440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.918639,75.771495,centroid,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,true -LGD,784,District,Maihar,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,415,District,Mandla,LGD,23,State,454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.639254,80.512199,centroid,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,true -LGD,416,District,Mandsaur,LGD,23,State,433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.204426,75.405140,centroid,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,true -LGD,766,District,MAUGANJ,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,417,District,Morena,LGD,23,State,419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.413015,77.868115,centroid,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,true -LGD,409,District,Narmadapuram,LGD,23,State,449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.590666,77.990687,centroid,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,true -LGD,418,District,Narsimhapur,LGD,23,State,452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.936237,79.087885,centroid,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,true -LGD,419,District,Neemuch,LGD,23,State,432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.590871,75.141734,centroid,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,true -LGD,722,District,Niwari,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.284792,78.748152,centroid,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,true -LGD,785,District,Pandhurna,LGD,23,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,420,District,Panna,LGD,23,State,426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.421056,80.189010,centroid,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,true -LGD,421,District,Raisen,LGD,23,State,446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.220061,78.120590,centroid,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,true -LGD,422,District,Rajgarh,LGD,23,State,442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.861158,76.732433,centroid,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,true -LGD,423,District,Ratlam,LGD,23,State,434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.502339,75.088589,centroid,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,true -LGD,424,District,Rewa,LGD,23,State,430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.755316,81.587224,centroid,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,true -LGD,425,District,Sagar,LGD,23,State,427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.850043,78.759732,centroid,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,true -LGD,426,District,Satna,LGD,23,State,429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.528700,80.830748,centroid,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,true -LGD,427,District,Sehore,LGD,23,State,445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.987637,77.127430,centroid,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,true -LGD,428,District,Seoni,LGD,23,State,456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.316960,79.689162,centroid,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,true -LGD,429,District,Shahdol,LGD,23,State,460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.629442,81.473493,centroid,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,true -LGD,430,District,Shajapur,LGD,23,State,436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.383975,76.559497,centroid,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,true -LGD,431,District,Sheopur,LGD,23,State,418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.754479,77.007246,centroid,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,true -LGD,432,District,Shivpuri,LGD,23,State,423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.365539,77.805373,centroid,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,true -LGD,433,District,Sidhi,LGD,23,State,462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.220619,81.834023,centroid,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,true -LGD,638,District,Singrauli,LGD,23,State,463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.215913,82.419945,centroid,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,true -LGD,434,District,Tikamgarh,LGD,23,State,424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.883196,79.016107,centroid,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,true -LGD,435,District,Ujjain,LGD,23,State,435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.330883,75.669034,centroid,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,true -LGD,436,District,Umaria,LGD,23,State,431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.562793,80.973190,centroid,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,true -LGD,437,District,Vidisha,LGD,23,State,443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.892313,77.813112,centroid,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,true -LGD,466,District,Ahilyanagar,LGD,27,State,522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.205391,74.675231,centroid,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,true -LGD,467,District,Akola,LGD,27,State,501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.748005,77.056016,centroid,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,true -LGD,468,District,Amravati,LGD,27,State,503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.187565,77.570354,centroid,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,true -LGD,470,District,Beed,LGD,27,State,523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.946660,75.838225,centroid,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,true -LGD,471,District,Bhandara,LGD,27,State,506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.115620,79.763152,centroid,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,true -LGD,472,District,Buldhana,LGD,27,State,500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.510807,76.407133,centroid,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,true -LGD,473,District,Chandrapur,LGD,27,State,509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.118386,79.440540,centroid,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,true -LGD,469,District,Chhatrapati Sambhajinagar,LGD,27,State,515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.027442,75.279761,centroid,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,true -LGD,488,District,Dharashiv,LGD,27,State,525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.188746,76.036898,centroid,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,true -LGD,474,District,Dhule,LGD,27,State,498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.110370,74.600494,centroid,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,true -LGD,475,District,Gadchiroli,LGD,27,State,508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.787912,80.240432,centroid,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,true -LGD,476,District,Gondia,LGD,27,State,507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.165306,80.217855,centroid,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,true -LGD,477,District,Hingoli,LGD,27,State,512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.637480,77.100455,centroid,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,true -LGD,478,District,Jalgaon,LGD,27,State,499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.932545,75.487940,centroid,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,true -LGD,479,District,Jalna,LGD,27,State,514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.807495,75.980338,centroid,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,true -LGD,480,District,Kolhapur,LGD,27,State,530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.471481,74.158638,centroid,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,true -LGD,481,District,Latur,LGD,27,State,524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.373766,76.759511,centroid,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,true -LGD,482,District,Mumbai,LGD,27,State,519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.989036,72.838017,centroid,72.792496,18.893405,72.881476,19.053004,SOI_Districts,2023-12-11,true -LGD,483,District,Mumbai Suburban,LGD,27,State,518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.131779,72.884497,centroid,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,true -LGD,484,District,Nagpur,LGD,27,State,505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.178155,79.085030,centroid,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,true -LGD,485,District,Nanded,LGD,27,State,511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.112445,77.617827,centroid,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,true -LGD,486,District,Nandurbar,LGD,27,State,497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.550193,74.216834,centroid,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,true -LGD,487,District,Nashik,LGD,27,State,516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.259820,74.070699,centroid,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,true -LGD,665,District,Palghar,LGD,27,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.793763,73.012184,centroid,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,true -LGD,489,District,Parbhani,LGD,27,State,513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.268248,76.690859,centroid,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,true -LGD,490,District,Pune,LGD,27,State,521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.571118,74.067998,centroid,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,true -LGD,491,District,Raigad,LGD,27,State,520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.510062,73.221458,centroid,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,true -LGD,492,District,Ratnagiri,LGD,27,State,528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.274418,73.454737,centroid,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,true -LGD,493,District,Sangli,LGD,27,State,531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.113762,74.767913,centroid,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,true -LGD,494,District,Satara,LGD,27,State,527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.670029,74.172659,centroid,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,true -LGD,495,District,Sindhudurg,LGD,27,State,529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.134008,73.737764,centroid,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,true -LGD,496,District,Solapur,LGD,27,State,526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.790589,75.483125,centroid,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,true -LGD,497,District,Thane,LGD,27,State,517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.361103,73.319543,centroid,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,true -LGD,498,District,Wardha,LGD,27,State,504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.797145,78.585883,centroid,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,true -LGD,499,District,Washim,LGD,27,State,502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.234103,77.216372,centroid,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,true -LGD,500,District,Yavatmal,LGD,27,State,510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.083546,78.161025,centroid,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,true -LGD,252,District,Bishnupur,LGD,14,State,275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.535799,93.797905,centroid,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,true -LGD,253,District,Chandel,LGD,14,State,280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.124837,94.007495,centroid,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,true -LGD,254,District,Churachandpur,LGD,14,State,274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.277193,93.602918,centroid,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,true -LGD,255,District,Imphal East,LGD,14,State,278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.832705,94.013173,centroid,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,true -LGD,256,District,Imphal West,LGD,14,State,277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.803266,93.872958,centroid,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,true -LGD,713,District,Jiribam,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.681775,93.152020,centroid,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,true -LGD,711,District,Kakching,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.427861,93.917808,centroid,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,true -LGD,717,District,Kamjong,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.824838,94.432038,centroid,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,true -LGD,712,District,Kangpokpi,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.992920,93.947737,centroid,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,true -LGD,714,District,Noney,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.677348,93.455938,centroid,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,true -LGD,715,District,Pherzawl,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.304682,93.220554,centroid,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,true -LGD,257,District,Senapati,LGD,14,State,272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.398440,94.124914,centroid,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,true -LGD,258,District,Tamenglong,LGD,14,State,273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.053484,93.550469,centroid,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,true -LGD,716,District,Tengnoupal,LGD,14,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.412591,94.222784,centroid,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,true -LGD,259,District,Thoubal,LGD,14,State,276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.615553,94.009519,centroid,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,true -LGD,260,District,Ukhrul,LGD,14,State,279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.237716,94.429581,centroid,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,true -LGD,740,District,Eastern West Khasi Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false -LGD,273,District,East Garo Hills,LGD,17,State,294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.618628,90.630370,centroid,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,true -LGD,657,District,East Jaintia Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.265690,92.463884,centroid,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,true -LGD,274,District,East Khasi Hills,LGD,17,State,298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.383453,91.800191,centroid,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,true -LGD,656,District,North Garo Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.850532,90.665283,centroid,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,true -LGD,276,District,Ri Bhoi,LGD,17,State,297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.873612,91.884129,centroid,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,true -LGD,277,District,South Garo Hills,LGD,17,State,295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.300548,90.593840,centroid,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,true -LGD,663,District,South West Garo Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.446276,89.989664,centroid,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,true -LGD,658,District,South West Khasi Hills,LGD,17,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.312380,91.245827,centroid,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,true -LGD,278,District,West Garo Hills,LGD,17,State,293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.641756,90.197735,centroid,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,true -LGD,275,District,West Jaintia Hills,LGD,17,State,299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.485083,92.281958,centroid,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,true -LGD,279,District,West Khasi Hills,LGD,17,State,296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.598255,91.261737,centroid,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,true -LGD,261,District,Aizawl,LGD,15,State,283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.848541,92.890177,centroid,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,true -LGD,262,District,Champhai,LGD,15,State,284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.540546,93.231068,centroid,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,true -LGD,726,District,Hnahthial,LGD,15,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -LGD,728,District,Khawzawl,LGD,15,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -LGD,263,District,Kolasib,LGD,15,State,282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.141417,92.720432,centroid,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,true -LGD,264,District,Lawngtlai,LGD,15,State,287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.432755,92.765933,centroid,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,true -LGD,265,District,Lunglei,LGD,15,State,286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.972505,92.720138,centroid,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,true -LGD,266,District,Mamit,LGD,15,State,281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.755528,92.463997,centroid,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,true -LGD,727,District,Saitual,LGD,15,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -LGD,268,District,Serchhip,LGD,15,State,285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.308820,92.941508,centroid,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,true -LGD,267,District,Siaha,LGD,15,State,288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.291740,93.001449,centroid,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,true -LGD,758,District,Chumoukedima,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,244,District,Dimapur,LGD,13,State,265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.781128,93.794081,centroid,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,true -LGD,614,District,Kiphire,LGD,13,State,269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.842745,94.821768,centroid,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,true -LGD,245,District,Kohima,LGD,13,State,270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.771761,94.108881,centroid,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,true -LGD,615,District,Longleng,LGD,13,State,268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.552081,94.795531,centroid,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,true -LGD,788,District,Meluri,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,246,District,Mokokchung,LGD,13,State,262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.472284,94.528963,centroid,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,true -LGD,247,District,Mon,LGD,13,State,261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.677812,95.016718,centroid,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,true -LGD,764,District,Niuland,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,736,District,Noklak,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,613,District,Peren,LGD,13,State,271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.508382,93.624084,centroid,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,true -LGD,248,District,Phek,LGD,13,State,266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.647194,94.534539,centroid,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,true -LGD,765,District,Shamator,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,757,District,Tseminyu,LGD,13,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,249,District,Tuensang,LGD,13,State,267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.166672,94.887560,centroid,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,true -LGD,250,District,Wokha,LGD,13,State,264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.188371,94.191816,centroid,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,true -LGD,251,District,Zunheboto,LGD,13,State,263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.999722,94.483933,centroid,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,true -LGD,344,District,Anugola,LGD,21,State,384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.986355,84.905206,centroid,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,true -LGD,345,District,Balangir,LGD,21,State,393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.589427,83.171651,centroid,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,true -LGD,346,District,Baleshwar,LGD,21,State,377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.494441,86.906311,centroid,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,true -LGD,347,District,Baragada,LGD,21,State,370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.219614,83.349141,centroid,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,true -LGD,348,District,Bhadrak,LGD,21,State,378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.983044,86.625018,centroid,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,true -LGD,349,District,Boudh,LGD,21,State,391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.644444,84.172873,centroid,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,true -LGD,351,District,Debagada,LGD,21,State,373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.467033,84.785302,centroid,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,true -LGD,352,District,Dhenkanal,LGD,21,State,383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.826874,85.523896,centroid,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,true -LGD,353,District,Gajapati,LGD,21,State,389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.184171,84.161163,centroid,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,true -LGD,354,District,Ganjam,LGD,21,State,388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.624456,84.672465,centroid,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,true -LGD,355,District,Jagatsinghapur,LGD,21,State,380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.218649,86.335211,centroid,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,true -LGD,356,District,Jajpur,LGD,21,State,382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.856145,86.149442,centroid,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,true -LGD,357,District,Jharsuguda,LGD,21,State,371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.807224,83.946640,centroid,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,true -LGD,358,District,Kalahandi,LGD,21,State,395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.867583,83.107938,centroid,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,true -LGD,359,District,Kandhamala,LGD,21,State,390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.128180,84.045937,centroid,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,true -LGD,350,District,Kataka,LGD,21,State,381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.453340,85.696462,centroid,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,true -LGD,360,District,Kendrapada,LGD,21,State,379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.552578,86.609881,centroid,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,true -LGD,361,District,Kendujhar,LGD,21,State,375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.537820,85.702386,centroid,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,true -LGD,362,District,Khordha,LGD,21,State,386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.091062,85.514274,centroid,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,true -LGD,363,District,Koraput,LGD,21,State,398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.812874,82.719717,centroid,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,true -LGD,364,District,Malkangiri,LGD,21,State,399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.257715,81.950493,centroid,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,true -LGD,365,District,Mayurbhanj,LGD,21,State,376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.895372,86.408568,centroid,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,true -LGD,366,District,Nabarangpur,LGD,21,State,397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.576483,82.334523,centroid,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,true -LGD,367,District,Nayagada,LGD,21,State,385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.213177,84.997802,centroid,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,true -LGD,368,District,Nuapada,LGD,21,State,394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.466045,82.576879,centroid,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,true -LGD,369,District,Puri,LGD,21,State,387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.879081,85.725732,centroid,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,true -LGD,370,District,Rayagada,LGD,21,State,396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.363492,83.512441,centroid,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,true -LGD,371,District,Sambalpur,LGD,21,State,372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,21.452534,84.273391,centroid,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,true -LGD,372,District,Subarnapur,LGD,21,State,392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.930816,83.822370,centroid,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,true -LGD,373,District,Sundaragada,LGD,21,State,374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.079904,84.533191,interior_grid:simplified,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,true -LGD,598,District,Karaikal,LGD,34,State,637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.933424,79.802948,centroid,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,true -LGD,600,District,Puducherry,LGD,34,State,635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.916989,79.766405,centroid,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,true -LGD,27,District,Amritsar,LGD,3,State,49,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.705642,74.899424,centroid,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,true -LGD,605,District,Barnala,LGD,3,State,54,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.387784,75.498635,centroid,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,true -LGD,28,District,Bathinda,LGD,3,State,46,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.183238,75.040269,centroid,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,true -LGD,29,District,Faridkot,LGD,3,State,45,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.613481,74.777318,centroid,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,true -LGD,30,District,Fatehgarh Sahib,LGD,3,State,40,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.642697,76.375469,centroid,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,true -LGD,651,District,Fazilka,LGD,3,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.277026,74.163643,centroid,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,true -LGD,31,District,Ferozepur,LGD,3,State,43,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.912989,74.703010,centroid,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,true -LGD,32,District,Gurdaspur,LGD,3,State,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.916470,75.291003,centroid,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,true -LGD,33,District,Hoshiarpur,LGD,3,State,38,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.625016,75.857919,centroid,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,true -LGD,34,District,Jalandhar,LGD,3,State,37,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.212738,75.565804,centroid,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,true -LGD,35,District,Kapurthala,LGD,3,State,36,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.354438,75.400042,centroid,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,true -LGD,36,District,Ludhiana,LGD,3,State,41,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.805395,75.832732,centroid,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,true -LGD,737,District,Malerkotla,LGD,3,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -LGD,37,District,Mansa,LGD,3,State,47,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.907347,75.438503,centroid,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,true -LGD,38,District,Moga,LGD,3,State,42,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.761814,75.170324,centroid,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,true -LGD,662,District,Pathankot,LGD,3,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,32.296307,75.616245,centroid,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,true -LGD,41,District,Patiala,LGD,3,State,48,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.281721,76.350755,centroid,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,true -LGD,42,District,Rupnagar,LGD,3,State,51,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.062049,76.487646,centroid,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,true -LGD,43,District,Sangrur,LGD,3,State,53,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.211970,75.869115,centroid,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,true -LGD,608,District,S.A.S Nagar,LGD,3,State,52,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.680921,76.739758,centroid,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,true -LGD,40,District,Shahid Bhagat Singh Nagar,LGD,3,State,39,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.110048,76.154318,centroid,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,true -LGD,39,District,Sri Muktsar Sahib,LGD,3,State,44,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.299843,74.538399,centroid,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,true -LGD,609,District,Tarn Taran,LGD,3,State,50,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,31.336494,74.840379,centroid,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,true -LGD,86,District,Ajmer,LGD,8,State,119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.233499,74.773091,centroid,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,true -LGD,87,District,Alwar,LGD,8,State,104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.590899,76.601627,centroid,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,true -LGD,775,District,Balotra,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,88,District,Banswara,LGD,8,State,125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.476390,74.361987,centroid,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,true -LGD,89,District,Baran,LGD,8,State,128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.995630,76.747835,centroid,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,true -LGD,90,District,Barmer,LGD,8,State,115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.734986,71.474795,centroid,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,true -LGD,774,District,Beawar,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,91,District,Bharatpur,LGD,8,State,105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.247765,77.276538,centroid,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,true -LGD,92,District,Bhilwara,LGD,8,State,122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.481644,74.726677,centroid,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,true -LGD,93,District,Bikaner,LGD,8,State,101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.177209,73.174572,centroid,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,true -LGD,94,District,Bundi,LGD,8,State,121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.485609,75.790630,centroid,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,true -LGD,95,District,Chittorgarh,LGD,8,State,126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.822240,74.775399,centroid,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,true -LGD,96,District,Churu,LGD,8,State,102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.345118,74.696405,centroid,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,true -LGD,97,District,Dausa,LGD,8,State,109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.857579,76.510297,centroid,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,true -LGD,767,District,Deeg,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,98,District,Dholpur,LGD,8,State,106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.680863,77.702142,centroid,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,true -LGD,768,District,Didwana-Kuchaman,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,99,District,Dungarpur,LGD,8,State,124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.731872,73.853138,centroid,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,true -LGD,100,District,Ganganagar,LGD,8,State,99,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.395945,73.570535,centroid,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,true -LGD,101,District,Hanumangarh,LGD,8,State,100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.265979,74.561463,centroid,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,true -LGD,102,District,Jaipur,LGD,8,State,110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.976650,75.719841,centroid,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,true -LGD,103,District,Jaisalmer,LGD,8,State,114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.075201,70.901037,centroid,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,true -LGD,104,District,Jalore,LGD,8,State,116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.099518,72.211683,centroid,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,true -LGD,105,District,Jhalawar,LGD,8,State,129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.335986,76.193443,centroid,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,true -LGD,106,District,Jhunjhunu,LGD,8,State,103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.092715,75.549656,centroid,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,true -LGD,107,District,Jodhpur,LGD,8,State,113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.747773,72.785854,centroid,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,true -LGD,108,District,Karauli,LGD,8,State,107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.523079,76.958707,centroid,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,true -LGD,770,District,Khairthal-Tijara,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,109,District,Kota,LGD,8,State,127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.109266,76.106084,centroid,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,true -LGD,782,District,Kotputli-Behror,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,110,District,Nagaur,LGD,8,State,112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.065964,74.175488,centroid,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,true -LGD,111,District,Pali,LGD,8,State,118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.706921,73.519596,centroid,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,true -LGD,772,District,Phalodi,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,629,District,Pratapgarh,LGD,8,State,131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.029241,74.650304,centroid,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,true -LGD,112,District,Rajsamand,LGD,8,State,123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.227968,73.891708,centroid,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,true -LGD,777,District,Salumbar,LGD,8,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,113,District,Sawai Madhopur,LGD,8,State,108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.217244,76.460987,centroid,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,true -LGD,114,District,Sikar,LGD,8,State,111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.634011,75.288276,centroid,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,true -LGD,115,District,Sirohi,LGD,8,State,117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.761751,72.776047,centroid,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,true -LGD,116,District,Tonk,LGD,8,State,120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.148317,75.665959,centroid,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,true -LGD,117,District,Udaipur,LGD,8,State,130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.418699,73.689784,centroid,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,true -LGD,225,District,Gangtok,LGD,11,State,244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.292057,88.673069,centroid,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,true -LGD,228,District,Gyalshing,LGD,11,State,242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.348415,88.175462,centroid,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,true -LGD,226,District,Mangan,LGD,11,State,241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.743446,88.528275,centroid,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,true -LGD,227,District,Namchi,LGD,11,State,243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.286440,88.384824,centroid,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,true -LGD,741,District,Pakyong,LGD,11,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -LGD,742,District,Soreng,LGD,11,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -LGD,610,District,Ariyalur,LGD,33,State,616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.162551,79.242972,centroid,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,true -LGD,730,District,Chengalpattu,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.582979,79.999171,centroid,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,true -LGD,568,District,Chennai,LGD,33,State,603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.100428,80.234893,centroid,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,true -LGD,569,District,Coimbatore,LGD,33,State,632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.878062,76.975747,centroid,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,true -LGD,570,District,Cuddalore,LGD,33,State,617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.535937,79.450508,centroid,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,true -LGD,571,District,Dharmapuri,LGD,33,State,630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.100517,78.193248,centroid,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,true -LGD,572,District,Dindigul,LGD,33,State,612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.391669,77.819666,centroid,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,true -LGD,573,District,Erode,LGD,33,State,610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.479549,77.380254,centroid,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,true -LGD,729,District,Kallakurichi,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.803600,79.034514,centroid,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,true -LGD,574,District,Kancheepuram,LGD,33,State,604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.832664,79.849732,centroid,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,true -LGD,575,District,Kanniyakumari,LGD,33,State,629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.308118,77.359590,centroid,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,true -LGD,576,District,Karur,LGD,33,State,613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.844322,78.134624,centroid,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,true -LGD,577,District,Krishnagiri,LGD,33,State,631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.490160,78.032355,centroid,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,true -LGD,578,District,Madurai,LGD,33,State,623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.922720,78.005214,centroid,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,true -LGD,735,District,Mayiladuthurai,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -LGD,579,District,Nagapattinam,LGD,33,State,618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.841301,79.737891,centroid,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,true -LGD,580,District,Namakkal,LGD,33,State,609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.318778,78.135667,centroid,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,true -LGD,581,District,Perambalur,LGD,33,State,615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.275076,78.891647,centroid,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,true -LGD,582,District,Pudukkottai,LGD,33,State,621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.360782,78.879400,centroid,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,true -LGD,583,District,Ramanathapuram,LGD,33,State,626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.437609,78.685761,centroid,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,true -LGD,731,District,Ranipet,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.949902,79.461686,centroid,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,true -LGD,584,District,Salem,LGD,33,State,608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.690215,78.137146,centroid,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,true -LGD,585,District,Sivaganga,LGD,33,State,622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.916501,78.596076,centroid,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,true -LGD,733,District,Tenkasi,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.092518,77.459924,centroid,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,true -LGD,586,District,Thanjavur,LGD,33,State,620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.670696,79.241463,centroid,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,true -LGD,588,District,Theni,LGD,33,State,624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.891794,77.438407,centroid,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,true -LGD,587,District,The Nilgiris,LGD,33,State,611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,11.453320,76.626115,centroid,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,true -LGD,589,District,Thiruvallur,LGD,33,State,602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,13.244045,79.932765,centroid,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,true -LGD,590,District,Thiruvarur,LGD,33,State,619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.679399,79.533581,centroid,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,true -LGD,594,District,Thoothukkudi,LGD,33,State,627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.901449,77.997628,centroid,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,true -LGD,591,District,Tiruchirappalli,LGD,33,State,614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.891184,78.570397,centroid,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,true -LGD,592,District,Tirunelveli,LGD,33,State,628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,8.575007,77.590408,centroid,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,true -LGD,732,District,Tirupathur,LGD,33,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.593927,78.655115,centroid,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,true -LGD,634,District,Tiruppur,LGD,33,State,633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,10.838977,77.407267,centroid,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,true -LGD,593,District,Tiruvannamalai,LGD,33,State,606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.432635,79.166497,centroid,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,true -LGD,595,District,Vellore,LGD,33,State,605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.914206,78.965876,centroid,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,true -LGD,596,District,Viluppuram,LGD,33,State,607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,12.139718,79.540604,centroid,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,true -LGD,597,District,Virudhunagar,LGD,33,State,625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,9.492324,77.905719,centroid,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,true -LGD,501,District,Adilabad,LGD,36,State,532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.519916,78.565982,centroid,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,true -LGD,690,District,Bhadradri Kothagudem,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.690454,80.716493,centroid,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,true -LGD,686,District,Hanumakonda,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.046534,79.463730,centroid,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,true -LGD,507,District,Hyderabad,LGD,36,State,536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.395112,78.470167,centroid,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,true -LGD,681,District,Jagitial,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.832238,78.877896,centroid,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,true -LGD,689,District,Jangoan,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.727859,79.284325,centroid,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,true -LGD,687,District,Jayashankar Bhupalapally,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.506030,79.924365,centroid,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,true -LGD,695,District,Jogulamba Gadwal,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.071697,77.780993,centroid,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,true -LGD,685,District,Kamareddy,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.324814,78.061681,centroid,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,true -LGD,508,District,Karimnagar,LGD,36,State,534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.380033,79.245348,centroid,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,true -LGD,509,District,Khammam,LGD,36,State,541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.205947,80.365131,centroid,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,true -LGD,699,District,Kumuram Bheem Asifabad,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.357095,79.419802,centroid,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,true -LGD,688,District,Mahabubabad,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.675222,79.996276,centroid,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,true -LGD,512,District,Mahabubnagar,LGD,36,State,538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.751490,78.013247,centroid,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,true -LGD,684,District,Mancherial,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.991463,79.512315,centroid,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,true -LGD,513,District,Medak,LGD,36,State,535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.953209,78.265038,centroid,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,true -LGD,700,District,Medchal Malkajgiri,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.544214,78.557696,centroid,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,true -LGD,720,District,Mulugu,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.291487,80.337459,centroid,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,true -LGD,694,District,Nagarkurnool,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.382246,78.595988,centroid,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,true -LGD,514,District,Nalgonda,LGD,36,State,539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.876525,79.193064,centroid,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,true -LGD,721,District,Narayanpet,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.638254,77.582727,centroid,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,true -LGD,680,District,Nirmal,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,19.113181,78.314942,centroid,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,true -LGD,516,District,Nizamabad,LGD,36,State,533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.701604,78.211364,centroid,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,true -LGD,682,District,Peddapalli,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.620155,79.453681,centroid,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,true -LGD,683,District,Rajanna Sircilla,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.414096,78.763447,centroid,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,true -LGD,518,District,Ranga Reddy,LGD,36,State,537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.130963,78.412504,centroid,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,true -LGD,691,District,Sangareddy,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.785340,77.874129,centroid,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,true -LGD,692,District,Siddipet,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,18.021641,78.855083,centroid,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,true -LGD,696,District,Suryapet,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.080643,79.754395,centroid,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,true -LGD,698,District,Vikarabad,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.246310,77.750811,centroid,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,true -LGD,693,District,Wanaparthy,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,16.287718,78.049507,centroid,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,true -LGD,522,District,Warangal,LGD,36,State,540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.919204,79.737482,centroid,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,true -LGD,697,District,Yadadri Bhuvanagiri,LGD,36,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,17.451240,78.978697,centroid,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,true -LGD,465,District,Dadra And Nagar Haveli,LGD,38,State,496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.191077,73.058434,interior_grid,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,true -LGD,463,District,Daman,LGD,38,State,495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.414235,72.852713,centroid,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,true -LGD,464,District,Diu,LGD,38,State,494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,20.721261,70.937137,centroid,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,true -LGD,269,District,Dhalai,LGD,16,State,291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.837087,91.924036,centroid,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,true -LGD,654,District,Gomati,LGD,16,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.511621,91.627811,centroid,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,true -LGD,652,District,Khowai,LGD,16,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.943724,91.660954,centroid,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,true -LGD,270,District,North Tripura,LGD,16,State,292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.097014,92.210814,centroid,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,true -LGD,653,District,Sepahijala,LGD,16,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.585052,91.331523,centroid,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,true -LGD,271,District,South Tripura,LGD,16,State,290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.200333,91.577175,centroid,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,true -LGD,655,District,Unakoti,LGD,16,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.204434,92.041151,centroid,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,true -LGD,272,District,West Tripura,LGD,16,State,289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.886599,91.399302,centroid,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,true -LGD,45,District,Almora,LGD,5,State,64,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.690751,79.504039,centroid,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,true -LGD,46,District,Bageshwar,LGD,5,State,63,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.996405,79.858939,centroid,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,true -LGD,47,District,Chamoli,LGD,5,State,57,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.495149,79.577047,centroid,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,true -LGD,48,District,Champawat,LGD,5,State,65,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.281123,80.069053,centroid,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,true -LGD,49,District,Dehradun,LGD,5,State,60,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.472166,77.967550,centroid,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,true -LGD,50,District,Haridwar,LGD,5,State,68,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.881397,77.996044,centroid,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,true -LGD,51,District,Nainital,LGD,5,State,66,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.317293,79.463201,centroid,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,true -LGD,52,District,Pauri Garhwal,LGD,5,State,61,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.879961,78.763766,centroid,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,true -LGD,53,District,Pithoragarh,LGD,5,State,62,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.113997,80.345565,centroid,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,true -LGD,54,District,Rudraprayag,LGD,5,State,58,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.506914,79.052455,centroid,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,true -LGD,55,District,Tehri Garhwal,LGD,5,State,59,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.436550,78.535529,centroid,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,true -LGD,56,District,Udham Singh Nagar,LGD,5,State,67,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.041948,79.470845,centroid,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,true -LGD,57,District,Uttarkashi,LGD,5,State,56,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,30.971870,78.607019,centroid,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,true -LGD,118,District,Agra,LGD,9,State,146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.036251,78.076398,centroid,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,true -LGD,119,District,Aligarh,LGD,9,State,143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.926465,78.065301,centroid,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,true -LGD,121,District,Ambedkar Nagar,LGD,9,State,178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.418558,82.666105,centroid,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,true -LGD,640,District,Amethi,LGD,9,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.323815,81.668704,centroid,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,true -LGD,154,District,Amroha,LGD,9,State,137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.835642,78.368246,centroid,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,true -LGD,122,District,Auraiya,LGD,9,State,162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.658178,79.479116,centroid,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,true -LGD,140,District,Ayodhya,LGD,9,State,177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.657554,81.997104,centroid,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,true -LGD,123,District,Azamgarh,LGD,9,State,191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.045498,83.067296,centroid,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,true -LGD,124,District,Baghpat,LGD,9,State,139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.056937,77.308508,centroid,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,true -LGD,125,District,Bahraich,LGD,9,State,180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.698230,81.492806,centroid,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,true -LGD,126,District,Ballia,LGD,9,State,193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.876254,84.102614,centroid,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,true -LGD,127,District,Balrampur,LGD,9,State,182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.483685,82.375229,centroid,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,true -LGD,128,District,Banda,LGD,9,State,170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.470939,80.557396,centroid,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,true -LGD,129,District,Bara Banki,LGD,9,State,176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.939037,81.332417,centroid,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,true -LGD,130,District,Bareilly,LGD,9,State,150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.457976,79.431403,centroid,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,true -LGD,131,District,Basti,LGD,9,State,185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.820038,82.625709,centroid,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,true -LGD,179,District,Bhadohi,LGD,9,State,198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.347933,82.464128,centroid,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,true -LGD,132,District,Bijnor,LGD,9,State,134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.386207,78.388853,centroid,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,true -LGD,133,District,Budaun,LGD,9,State,149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.077854,79.041570,centroid,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,true -LGD,134,District,Bulandshahr,LGD,9,State,142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.362548,78.014505,centroid,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,true -LGD,135,District,Chandauli,LGD,9,State,196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.141544,83.258105,centroid,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,true -LGD,136,District,Chitrakoot,LGD,9,State,171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.206227,81.077462,centroid,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,true -LGD,137,District,Deoria,LGD,9,State,190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.425350,83.834585,centroid,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,true -LGD,138,District,Etah,LGD,9,State,201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.515541,78.717419,centroid,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,true -LGD,139,District,Etawah,LGD,9,State,161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.764067,79.094854,centroid,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,true -LGD,141,District,Farrukhabad,LGD,9,State,159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.431334,79.458667,centroid,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,true -LGD,142,District,Fatehpur,LGD,9,State,172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.874894,80.807709,centroid,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,true -LGD,143,District,Firozabad,LGD,9,State,147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.187236,78.526428,centroid,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,true -LGD,144,District,Gautam Buddha Nagar,LGD,9,State,141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.394059,77.555973,centroid,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,true -LGD,145,District,Ghaziabad,LGD,9,State,140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.767749,77.476015,centroid,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,true -LGD,146,District,Ghazipur,LGD,9,State,195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.623962,83.555544,centroid,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,true -LGD,147,District,Gonda,LGD,9,State,183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.083387,82.025294,centroid,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,true -LGD,148,District,Gorakhpur,LGD,9,State,188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.656068,83.359032,centroid,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,true -LGD,149,District,Hamirpur,LGD,9,State,168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.751017,79.865350,centroid,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,true -LGD,661,District,Hapur,LGD,9,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.722383,77.893127,centroid,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,true -LGD,150,District,Hardoi,LGD,9,State,155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.330336,80.161580,centroid,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,true -LGD,163,District,Hathras,LGD,9,State,144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.581716,78.164440,centroid,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,true -LGD,151,District,Jalaun,LGD,9,State,165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.091193,79.385801,centroid,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,true -LGD,152,District,Jaunpur,LGD,9,State,194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.746298,82.574976,centroid,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,true -LGD,153,District,Jhansi,LGD,9,State,166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.508105,78.950857,centroid,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,true -LGD,155,District,Kannauj,LGD,9,State,160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.013601,79.688690,centroid,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,true -LGD,156,District,Kanpur Dehat,LGD,9,State,163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.439637,79.852934,centroid,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,true -LGD,157,District,Kanpur Nagar,LGD,9,State,164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.391080,80.208199,centroid,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,true -LGD,633,District,Kasganj,LGD,9,State,202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.773327,78.846070,centroid,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,true -LGD,158,District,Kaushambi,LGD,9,State,174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.498460,81.415008,centroid,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,true -LGD,159,District,Kheri,LGD,9,State,153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.120956,80.666926,centroid,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,true -LGD,160,District,Kushinagar,LGD,9,State,189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.862754,83.933846,centroid,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,true -LGD,161,District,Lalitpur,LGD,9,State,167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.653500,78.561958,centroid,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,true -LGD,162,District,Lucknow,LGD,9,State,157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.841979,80.905490,centroid,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,true -LGD,165,District,Mahoba,LGD,9,State,169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.362800,79.726003,centroid,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,true -LGD,164,District,Mahrajganj,LGD,9,State,187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.200551,83.530436,centroid,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,true -LGD,166,District,Mainpuri,LGD,9,State,148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.182445,79.052108,centroid,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,true -LGD,167,District,Mathura,LGD,9,State,145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.597491,77.625895,centroid,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,true -LGD,168,District,Mau,LGD,9,State,192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.047456,83.561786,centroid,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,true -LGD,169,District,Meerut,LGD,9,State,138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.036373,77.782697,centroid,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,true -LGD,170,District,Mirzapur,LGD,9,State,199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.986648,82.607360,centroid,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,true -LGD,171,District,Moradabad,LGD,9,State,135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.885592,78.802924,centroid,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,true -LGD,172,District,Muzaffarnagar,LGD,9,State,133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.415637,77.725288,centroid,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,true -LGD,173,District,Pilibhit,LGD,9,State,151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.530755,79.994583,centroid,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,true -LGD,174,District,Pratapgarh,LGD,9,State,173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.872737,81.829069,centroid,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,true -LGD,120,District,Prayagraj,LGD,9,State,175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.304012,81.960159,centroid,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,true -LGD,175,District,Rae Bareli,LGD,9,State,158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.203741,81.190943,centroid,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,true -LGD,176,District,Rampur,LGD,9,State,136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.809845,79.115097,centroid,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,true -LGD,177,District,Saharanpur,LGD,9,State,132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.951033,77.546779,centroid,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,true -LGD,659,District,Sambhal,LGD,9,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,28.451892,78.558077,centroid,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,true -LGD,178,District,Sant Kabir Nagar,LGD,9,State,186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.775547,83.027224,centroid,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,true -LGD,180,District,Shahjahanpur,LGD,9,State,152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.950761,79.822072,centroid,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,true -LGD,660,District,Shamli,LGD,9,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,29.500323,77.282363,centroid,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,true -LGD,181,District,Shrawasti,LGD,9,State,181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.718462,81.903444,centroid,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,true -LGD,182,District,Siddharthnagar,LGD,9,State,184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.270196,82.873251,centroid,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,true -LGD,183,District,Sitapur,LGD,9,State,154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.517096,80.852222,centroid,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,true -LGD,184,District,Sonbhadra,LGD,9,State,200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.407995,83.051909,centroid,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,true -LGD,185,District,Sultanpur,LGD,9,State,179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.261948,82.193868,centroid,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,true -LGD,186,District,Unnao,LGD,9,State,156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.609367,80.560562,centroid,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,true -LGD,187,District,Varanasi,LGD,9,State,197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.388275,82.913960,centroid,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,true -LGD,664,District,Alipurduar,LGD,19,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.632685,89.463034,centroid,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,true -LGD,305,District,Bankura,LGD,19,State,339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.139199,87.136273,centroid,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,true -LGD,307,District,Birbhum,LGD,19,State,334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.954375,87.663303,centroid,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,true -LGD,308,District,Cooch Behar,LGD,19,State,329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.292614,89.347816,centroid,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,true -LGD,310,District,Dakshin Dinajpur,LGD,19,State,331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.367223,88.575495,centroid,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,true -LGD,309,District,Darjeeling,LGD,19,State,327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.850567,88.262039,centroid,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,true -LGD,312,District,Hooghly,LGD,19,State,338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.884920,88.076193,centroid,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,true -LGD,313,District,Howrah,LGD,19,State,341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.521490,88.063397,centroid,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,true -LGD,314,District,Jalpaiguri,LGD,19,State,328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,26.682626,88.763845,centroid,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,true -LGD,703,District,Jhargram,LGD,19,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.363242,86.955347,centroid,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,true -LGD,702,District,Kalimpong,LGD,19,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,27.034545,88.630890,centroid,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,true -LGD,315,District,Kolkata,LGD,19,State,342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.526744,88.356008,centroid,88.233628,22.452029,88.461078,22.618825,SOI_Districts,2023-12-11,true -LGD,316,District,Malda,LGD,19,State,332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.136916,88.090580,centroid,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,true -LGD,319,District,Murshidabad,LGD,19,State,333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,24.162777,88.230649,centroid,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,true -LGD,320,District,Nadia,LGD,19,State,336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.479814,88.516695,centroid,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,true -LGD,303,District,North 24 Parganas,LGD,19,State,337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.727142,88.730133,centroid,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,true -LGD,704,District,Paschim Bardhaman,LGD,19,State,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.636453,87.199152,centroid,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,true -LGD,318,District,Paschim Medinipur,LGD,19,State,344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.439193,87.417304,centroid,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,true -LGD,306,District,Purba Bardhaman,LGD,19,State,335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.356167,87.963711,centroid,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,true -LGD,317,District,Purba Medinipur,LGD,19,State,345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.031560,87.772887,centroid,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,true -LGD,321,District,Purulia,LGD,19,State,340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,23.276707,86.421546,centroid,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,true -LGD,304,District,South 24 Parganas,LGD,19,State,343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,22.057938,88.552900,centroid,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,true -LGD,311,District,Uttar Dinajpur,LGD,19,State,330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z,25.845938,88.106307,interior_grid,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,true -LGD,2925,Block,Aali,LGD,360,District,2925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,6087,Block,Aalo Hq,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false -LGD,7346,Block,Aamabeda,LGD,381,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,7146,Block,Aau,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,6612,Block,Abapura,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,3728,Block,Abdasa,LGD,449,District,3728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,6319,Block,Abdullapurmet,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,3331,Block,Abhanpur,LGD,387,District,3331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -LGD,238,Block,Abohar,LGD,651,District,238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -LGD,1750,Block,Aboi,LGD,247,District,1750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,7600,Block,Abrama,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,595,Block,Abu Road,LGD,115,District,595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -LGD,4004,Block,Achalpur,LGD,468,District,4004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,4579,Block,Achampet,LGD,694,District,4579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,4981,Block,Achanta,LGD,523,District,4981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,6518,Block,Adajan,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,393,Block,Adampur,LGD,63,District,393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -LGD,7192,Block,Adampur,LGD,34,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -LGD,1032,Block,Adapur,LGD,213,District,1032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,7571,Block,Adarsh Nagar,LGD,80,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false -LGD,6304,Block,Adavidevulapalli,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,7255,Block,Adbhar,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,6310,Block,Adda Guduru,LGD,697,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,4586,Block,Addakal,LGD,512,District,4586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,5112,Block,Addanki,LGD,517,District,5112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,4887,Block,Addateegala,LGD,791,District,4887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7024,Block,Adhartal,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,1456,Block,Adhaura,LGD,200,District,1456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,6345,Block,Adibadri,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,6221,Block,Adilabad Rural,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,4306,Block,Adilabad Urban,LGD,501,District,4306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,2752,Block,Adityapur(Gamharia),LGD,341,District,2752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,7334,Block,Adokgre,LGD,656,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false -LGD,5271,Block,Adoni,LGD,511,District,5271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,7563,Block,Adoni-2,LGD,511,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5683,Block,Adoor,LGD,564,District,5683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -LGD,5581,Block,Afzalpur,LGD,538,District,5581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,5354,Block,Agali,LGD,754,District,5354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7452,Block,Agalpur,LGD,345,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,2006,Block,Agamoni,LGD,285,District,2006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -LGD,3518,Block,Agar,LGD,667,District,3518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -LGD,5884,Block,Agastheeswaram,LGD,575,District,5884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -LGD,5626,Block,Agatti,LGD,553,District,5626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,1771,Block,Aghunato,LGD,251,District,1771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,1432,Block,Agiaon,LGD,193,District,1432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,5005,Block,Agiripalli,LGD,748,District,5005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,766,Block,Agra,LGD,118,District,766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -LGD,4062,Block,Aheri,LGD,475,District,4062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,7331,Block,Ahiwara,LGD,378,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -LGD,4228,Block,Ahmadpur,LGD,481,District,4228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,6856,Block,Ahmedgarh,LGD,737,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -LGD,586,Block,Ahore,LGD,104,District,586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,3921,Block,Ahwa,LGD,444,District,3921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false -LGD,1904,Block,Aibawk,LGD,261,District,1904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -LGD,4933,Block,Ainavilli,LGD,747,District,4933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1781,Block,Aitepyong,LGD,250,District,1781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,6810,Block,Ajas,LGD,623,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -LGD,3435,Block,Ajaygarh,LGD,420,District,3435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,7241,Block,Ajgarbahar,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,6877,Block,Ajitmal,LGD,122,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -LGD,7078,Block,Ajjampura,LGD,532,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,607,Block,Ajmer,LGD,86,District,607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,255,Block,Ajnala,LGD,27,District,255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -LGD,4292,Block,Ajra,LGD,480,District,4292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,3278,Block,Akaltara,LGD,379,District,3278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,845,Block,Akbarpur,LGD,156,District,845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -LGD,1519,Block,Akbarpur,LGD,210,District,1519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,910,Block,Akbarpur,LGD,121,District,910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -LGD,7524,Block,Akberpet-Bhoompally,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,78,Block,Akhnoor,LGD,5,District,78,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,4975,Block,Akividu,LGD,523,District,4975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,4254,Block,Akkalkot,LGD,496,District,4254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,3950,Block,Akkalkuwa,LGD,486,District,3950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -LGD,6285,Block,Akkannapet,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,680,Block,Aklera,LGD,105,District,680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,3991,Block,Akola,LGD,467,District,3991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -LGD,4201,Block,Akole,LGD,466,District,4201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,1472,Block,Akorhi Gola,LGD,215,District,1472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,3989,Block,Akot,LGD,467,District,3989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -LGD,3951,Block,Akrani,LGD,486,District,3951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -LGD,1774,Block,Akuhaito,LGD,251,District,1774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,1768,Block,Akuluto,LGD,251,District,1768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,4617,Block,Alair,LGD,697,District,4617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,1169,Block,Alamnagar,LGD,205,District,1169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,6900,Block,Alampur,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,4612,Block,Alampur,LGD,695,District,4612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,4925,Block,Alamuru,LGD,747,District,4925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5580,Block,Aland,LGD,538,District,5580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,5704,Block,Alandur,LGD,568,District,5704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,5824,Block,Alangudi,LGD,582,District,5824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,5875,Block,Alangulam,LGD,733,District,5875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -LGD,5951,Block,Alathur,LGD,581,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -LGD,5651,Block,Alathur,LGD,563,District,5651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -LGD,1322,Block,Alauli,LGD,202,District,1322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -LGD,2715,Block,Albert Ekka(Jari),LGD,331,District,2715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,6409,Block,Alewa,LGD,65,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -LGD,2106,Block,Algapur,LGD,289,District,2106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -LGD,4177,Block,Alibag,LGD,491,District,4177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,1007,Block,Aliganj,LGD,138,District,1007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -LGD,7371,Block,Aligarh,LGD,116,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,1187,Block,Alinagar,LGD,195,District,1187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,2173,Block,Alipurduar - I,LGD,664,District,2173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -LGD,2174,Block,Alipurduar - II,LGD,664,District,2174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -LGD,3713,Block,Alirajpur,LGD,639,District,3713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -LGD,4470,Block,Alladurg,LGD,513,District,4470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,5298,Block,Allagadda,LGD,755,District,5298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,890,Block,Allahabad,LGD,120,District,890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -LGD,6267,Block,Allapalli,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,908,Block,Allapur,LGD,121,District,908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -LGD,4940,Block,Allavaram,LGD,747,District,4940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5167,Block,Allur,LGD,515,District,5167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,7123,Block,Almel,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,330,Block,Almora,LGD,45,District,330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,7081,Block,Alnavar,LGD,536,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -LGD,1759,Block,Alongkima,LGD,246,District,1759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,7528,Block,Aloor,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,6809,Block,Aloosa,LGD,623,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -LGD,3502,Block,Alot,LGD,423,District,3502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,5274,Block,Alur,LGD,511,District,5274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5557,Block,Alur,LGD,539,District,5557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -LGD,5658,Block,Aluva,LGD,555,District,5658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -LGD,6328,Block,Alwal,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,499,Block,Alwar,LGD,87,District,499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,5361,Block,Amadagur,LGD,754,District,5361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4798,Block,Amadalavalasa,LGD,519,District,4798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,1836,Block,Amahator,LGD,614,District,1836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -LGD,4941,Block,Amalapuram,LGD,747,District,4941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3969,Block,Amalner,LGD,478,District,3969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,4563,Block,Amangal,LGD,518,District,4563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,3439,Block,Amanganj,LGD,420,District,3439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,5351,Block,Amarapuram,LGD,754,District,5351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5052,Block,Amaravathi,LGD,751,District,5052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6290,Block,Amarchintha,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,7122,Block,Amargarh,LGD,737,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -LGD,6867,Block,Amariya,LGD,173,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -LGD,3468,Block,Amarpatan,LGD,784,District,3468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,6695,Block,Amarpur,LGD,654,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -LGD,1346,Block,Amarpur,LGD,190,District,1346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,5086,Block,Amarthalur,LGD,750,District,5086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3648,Block,Amarwara,LGD,399,District,3648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,1499,Block,Amas,LGD,196,District,1499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,148,Block,Amb,LGD,26,District,148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,2768,Block,Ambabhona,LGD,347,District,2768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,4129,Block,Ambad,LGD,479,District,4129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -LGD,3310,Block,Ambagarh Chouki,LGD,761,District,3310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,3385,Block,Ambah,LGD,417,District,3385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -LGD,4935,Block,Ambajipeta,LGD,747,District,4935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,359,Block,Ambala,LGD,58,District,359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -LGD,6406,Block,Ambala Cantonment,LGD,58,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -LGD,5674,Block,Ambalappuzha,LGD,554,District,5674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -LGD,4170,Block,Ambarnath,LGD,497,District,4170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -LGD,5878,Block,Ambasamudram,LGD,592,District,5878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -LGD,6697,Block,Ambassa,LGD,269,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -LGD,5700,Block,Ambattur,LGD,568,District,5700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,4188,Block,Ambegaon,LGD,490,District,4188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,4225,Block,Ambejogai,LGD,470,District,4225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,547,Block,Amber,LGD,102,District,547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,4502,Block,Amberpet,LGD,507,District,4502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,7552,Block,Ambika,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,3247,Block,Ambikapur,LGD,389,District,3247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -LGD,5719,Block,Ambur,LGD,732,District,5719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -LGD,1157,Block,Amdabad,LGD,201,District,1157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,2322,Block,Amdanga,LGD,303,District,2322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,6276,Block,Ameenpur,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,4497,Block,Ameerpet,LGD,507,District,4497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,641,Block,Amet,LGD,112,District,641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,914,Block,Amethi,LGD,640,District,914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -LGD,4047,Block,Amgaon,LGD,476,District,4047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -LGD,2072,Block,Amguri,LGD,300,District,2072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -LGD,5620,Block,Amini,LGD,553,District,5620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,7161,Block,Aminjikarai,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,3736,Block,Amirgadh,LGD,441,District,3736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,3605,Block,Amla,LGD,394,District,3605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,1998,Block,Amlarem,LGD,275,District,1998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false -LGD,7307,Block,Amlipadar,LGD,645,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -LGD,222,Block,Amloh,LGD,30,District,222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -LGD,1261,Block,Amnour,LGD,218,District,1261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,3914,Block,Amod,LGD,442,District,3914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,1138,Block,Amour,LGD,214,District,1138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,4578,Block,Amrabad,LGD,694,District,4578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,2574,Block,Amrapara,LGD,337,District,2574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -LGD,4009,Block,Amravati,LGD,468,District,4009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,3843,Block,Amreli,LGD,439,District,3843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,7432,Block,Amreli-City,LGD,439,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,831,Block,Amritpur,LGD,141,District,831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -LGD,256,Block,Amritsar -I,LGD,27,District,256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -LGD,257,Block,Amritsar- II,LGD,27,District,257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -LGD,730,Block,Amroha,LGD,154,District,730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -LGD,2400,Block,Amta - I,LGD,313,District,2400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,2399,Block,Amta - II,LGD,313,District,2399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,5964,Block,Anaicut,LGD,595,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -LGD,6643,Block,Anaimalai,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,4871,Block,Anakapalli,LGD,744,District,4871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2854,Block,Anandapur,LGD,361,District,2854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,4863,Block,Anandapuram,LGD,520,District,4863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,6530,Block,Anand City,LGD,440,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,2734,Block,Anandpur,LGD,343,District,2734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,6061,Block,Anandpuri,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,262,Block,Anandpur Sahib,LGD,42,District,262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -LGD,3864,Block,Anand Rural,LGD,440,District,3864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,5330,Block,Anantapur Rural,LGD,502,District,5330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,7426,Block,Anantapur Urban,LGD,502,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,6302,Block,Ananthagiri,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,4845,Block,Ananthagiri,LGD,745,District,4845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5173,Block,Ananthasagaram,LGD,515,District,5173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,55,Block,Anantnag,LGD,1,District,55,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,6822,Block,Anantnag East (Mattan),LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,4917,Block,Anaparthi,LGD,505,District,4917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,6662,Block,Anchetty,LGD,577,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -LGD,2272,Block,Andal,LGD,704,District,2272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -LGD,1243,Block,Andar,LGD,222,District,1243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,7179,Block,Andheri,LGD,483,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -LGD,7140,Block,Andhi,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,1096,Block,Andhratharhi,LGD,206,District,1096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,5983,Block,Andimadam,LGD,610,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -LGD,5846,Block,Andipatti,LGD,588,District,5846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -LGD,4479,Block,Andole,LGD,691,District,4479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,5627,Block,Andrott,LGD,553,District,5627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,5545,Block,Anekal,LGD,525,District,5545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -LGD,1720,Block,Anelih,LGD,230,District,1720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false -LGD,2686,Block,Angara,LGD,339,District,2686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,1754,Block,Angjangyang,LGD,247,District,1754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,121,Block,Ani,LGD,20,District,121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,1718,Block,Anini,LGD,230,District,1718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false -LGD,3557,Block,Anjad,LGD,393,District,3557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,4003,Block,Anjangaon Surji,LGD,468,District,4003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,3725,Block,Anjar,LGD,449,District,3725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,3868,Block,Anklav,LGD,440,District,3868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,3918,Block,Anklesvar,LGD,442,District,3918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,5484,Block,Ankola,LGD,550,District,5484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,6268,Block,Annapureddypalli,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,7080,Block,Annigeri,LGD,536,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -LGD,5955,Block,Annur,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,671,Block,Anta,LGD,89,District,671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -LGD,3353,Block,Antagarh,LGD,381,District,3353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,7362,Block,Antali,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,6214,Block,Anthergaon,LGD,682,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,5969,Block,Anthiyur,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,3011,Block,Anugola,LGD,344,District,3011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -LGD,5165,Block,Anumasamudrampeta,LGD,515,District,5165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,4660,Block,Anumula,LGD,514,District,4660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,462,Block,Anupgarh,LGD,100,District,462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,3694,Block,Anuppur,LGD,390,District,3694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -LGD,748,Block,Anupshahr,LGD,134,District,748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -LGD,786,Block,Aonla,LGD,130,District,786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -LGD,1793,Block,Aquqhnaqua,LGD,764,District,1793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,6659,Block,Arain,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,7403,Block,Arakera,LGD,546,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -LGD,5715,Block,Arakonam,LGD,731,District,5715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -LGD,4844,Block,Araku Valley,LGD,745,District,4844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2340,Block,Arambag,LGD,312,District,2340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,3330,Block,Arang,LGD,387,District,3330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -LGD,5721,Block,Arani,LGD,593,District,5721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,5826,Block,Aranthangi,LGD,582,District,5826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,1116,Block,Araria,LGD,188,District,1116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,5768,Block,Aravakurichi,LGD,576,District,5768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -LGD,5716,Block,Arcot,LGD,731,District,5716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -LGD,4099,Block,Ardhapur,LGD,485,District,4099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,5116,Block,Ardhaveedu,LGD,790,District,5116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1045,Block,Areraj,LGD,213,District,1045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,7553,Block,Areth,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,1377,Block,Ariari,LGD,219,District,1377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false -LGD,6795,Block,Aripal,LGD,11,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -LGD,5787,Block,Ariyalur,LGD,610,District,5787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -LGD,7253,Block,Arjunda,LGD,646,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -LGD,4050,Block,Arjuni Morgaon,LGD,476,District,4050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -LGD,5558,Block,Arkalgud,LGD,539,District,5558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -LGD,158,Block,Arki,LGD,25,District,158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,4360,Block,Armoor,LGD,516,District,4360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,4053,Block,Armori,LGD,475,District,4053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,6740,Block,Arnas,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,4088,Block,Arni,LGD,500,District,4088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,6717,Block,Arnia,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,700,Block,Arnod,LGD,629,District,700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -LGD,3682,Block,Aron,LGD,406,District,3682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -LGD,1422,Block,Arrah,LGD,193,District,1422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,2389,Block,Arsha,LGD,321,District,2389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,5555,Block,Arsikere,LGD,539,District,5555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -LGD,6922,Block,Arthuna,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,5853,Block,Aruppukkottai,LGD,597,District,5853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,4017,Block,Arvi,LGD,498,District,4017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -LGD,1542,Block,Arwal,LGD,611,District,1542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -LGD,1361,Block,Asarganj,LGD,207,District,1361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,6512,Block,Asarva,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,3686,Block,Ashoknagar,LGD,391,District,3686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -LGD,3584,Block,Ashta,LGD,427,District,3584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,4215,Block,Ashti,LGD,470,District,4215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,4015,Block,Ashti,LGD,498,District,4015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -LGD,4319,Block,Asifabad,LGD,699,District,4319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,4506,Block,Asif Nagar,LGD,507,District,4506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,3078,Block,Asika,LGD,354,District,3078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,627,Block,Asind,LGD,92,District,627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,6055,Block,Asnawar,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,5275,Block,Aspari,LGD,511,District,5275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,647,Block,Aspur,LGD,99,District,647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,373,Block,Assandh,LGD,67,District,373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -LGD,6752,Block,Assar,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,3060,Block,Astaranga,LGD,369,District,3060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,1385,Block,Asthawan,LGD,209,District,1385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,1770,Block,Asuto,LGD,251,District,1770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,4728,Block,Aswapuram,LGD,690,District,4728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,4749,Block,Aswaraopeta,LGD,690,District,4749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,873,Block,Atarra,LGD,128,District,873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -LGD,5050,Block,Atchampet,LGD,751,District,5050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4878,Block,Atchuthapuram,LGD,744,District,4878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6457,Block,Ateli,LGD,69,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -LGD,3391,Block,Ater,LGD,395,District,3391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,2950,Block,Athagada,LGD,350,District,2950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,7116,Block,Athani,LGD,285,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -LGD,1853,Block,Athibung,LGD,613,District,1853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -LGD,4694,Block,Athmakur,LGD,686,District,4694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,1415,Block,Athmalgola,LGD,212,District,1415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,3017,Block,Athmallik,LGD,344,District,3017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -LGD,3599,Block,Athner,LGD,394,District,3599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,5434,Block,Athni,LGD,527,District,5434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,71,Block,Atholi (Paddar),LGD,620,District,71,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,5994,Block,Athoor,LGD,572,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,4998,Block,Atlapragada Konduru,LGD,749,District,4998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5227,Block,Atlur,LGD,504,District,5227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,5164,Block,Atmakur,LGD,515,District,5164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5322,Block,Atmakur,LGD,502,District,5322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,4592,Block,Atmakur,LGD,693,District,4592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,5265,Block,Atmakur,LGD,755,District,5265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4626,Block,Atmakur (M),LGD,697,District,4626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,4622,Block,Atmakur (S),LGD,696,District,4622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,1773,Block,Atoizu,LGD,251,District,1773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,4300,Block,Atpadi,LGD,493,District,4300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,754,Block,Atrauli,LGD,119,District,754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -LGD,4919,Block,Atreyapuram,LGD,747,District,4919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1493,Block,Atri,LGD,196,District,1493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,673,Block,Atru,LGD,89,District,673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -LGD,2769,Block,Attabira,LGD,347,District,2769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,4973,Block,Attili,LGD,523,District,4973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,5743,Block,Attur,LGD,584,District,5743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,4113,Block,Aundha (Nagnath),LGD,477,District,4113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -LGD,7278,Block,Aundhi,LGD,761,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,5456,Block,Aurad,LGD,529,District,5456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -LGD,1207,Block,Aurai,LGD,208,District,1207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,999,Block,Aurai,LGD,179,District,999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -LGD,842,Block,Auraiya,LGD,122,District,842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -LGD,1481,Block,Aurangabad,LGD,189,District,1481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,4232,Block,Ausa,LGD,481,District,4232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,2277,Block,Ausgram - I,LGD,306,District,2277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2276,Block,Ausgram - II,LGD,306,District,2276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,134,Block,Aut,LGD,22,District,134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,6621,Block,Avadi,LGD,589,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,5037,Block,Avanigadda,LGD,510,District,5037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,6510,Block,Avantipur Barodia,LGD,430,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -LGD,5903,Block,Avinashi,LGD,634,District,5903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,5828,Block,Avudayarkoil,LGD,582,District,5828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,49,Block,Awantipora,LGD,11,District,49,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -LGD,7163,Block,Ayanavaram,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,966,Block,Azamgarh,LGD,123,District,966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -LGD,1148,Block,Azamnagar,LGD,201,District,1148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,2127,Block,Azara,LGD,618,District,2127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -LGD,258,Block,Baba Bakala,LGD,27,District,258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -LGD,6454,Block,Babain St,LGD,68,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -LGD,7069,Block,Babaleshwar,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,872,Block,Baberu,LGD,128,District,872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -LGD,3840,Block,Babra,LGD,439,District,3840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,1088,Block,Babubarhi,LGD,206,District,1088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,4080,Block,Babulgaon,LGD,500,District,4080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,4674,Block,Bachannapet,LGD,689,District,4674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,1310,Block,Bachhwara,LGD,191,District,1310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,6315,Block,Bachupally,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,6998,Block,Badagaon (Dhasan),LGD,434,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,3431,Block,Bada Malhera,LGD,398,District,3431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,2946,Block,Badamba,LGD,350,District,2946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,5446,Block,Badami,LGD,524,District,5446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,4820,Block,Badangi,LGD,521,District,4820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,7573,Block,Badarpur,LGD,670,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false -LGD,2102,Block,Badarpur,LGD,293,District,2102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -LGD,3412,Block,Badarwas,LGD,432,District,3412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,2882,Block,Badasahi,LGD,365,District,2882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,162,Block,Baddi,LGD,25,District,162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,6509,Block,Bade Bacheli,LGD,376,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -LGD,3356,Block,Baderajpur,LGD,643,District,3356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -LGD,6903,Block,Badgaon,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,403,Block,Badhra,LGD,701,District,403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -LGD,3595,Block,Badi,LGD,421,District,3595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,6407,Block,Badkhal,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -LGD,982,Block,Badlapur,LGD,152,District,982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -LGD,6444,Block,Badli,LGD,64,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -LGD,7570,Block,Badli,LGD,80,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false -LGD,3514,Block,Badnagar,LGD,435,District,3514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,4128,Block,Badnapur,LGD,479,District,4128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -LGD,3532,Block,Badnawar,LGD,403,District,3532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,6066,Block,Badnor,LGD,774,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3517,Block,Badod,LGD,667,District,3517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -LGD,3383,Block,Badoda,LGD,431,District,3383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -LGD,6421,Block,Badshahpur St,LGD,62,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,2328,Block,Baduria,LGD,303,District,2328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,5210,Block,Badvel,LGD,504,District,5210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,3623,Block,Badwara,LGD,413,District,3623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,186,Block,Bagachnogi,LGD,22,District,186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,1019,Block,Bagaha,LGD,211,District,1019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,5447,Block,Bagalkot,LGD,524,District,5447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,2139,Block,Baganpara,LGD,616,District,2139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -LGD,3844,Block,Bagasara,LGD,439,District,3844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,7347,Block,Bagbahar,LGD,380,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,3343,Block,Bagbahra,LGD,385,District,3343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -LGD,2316,Block,Bagda,LGD,303,District,2316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,5598,Block,Bagepalli,LGD,630,District,5598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -LGD,323,Block,Bageshwar,LGD,46,District,323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -LGD,232,Block,Bagha Purana,LGD,38,District,232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -LGD,2020,Block,Baghbor,LGD,280,District,2020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -LGD,1977,Block,Baghmara,LGD,277,District,1977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -LGD,2582,Block,Baghmara-Cum-Katras,LGD,325,District,2582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,736,Block,Baghpat,LGD,124,District,736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -LGD,1783,Block,Baghty,LGD,250,District,1783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,3255,Block,Bagicha,LGD,380,District,3255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,653,Block,Bagidora,LGD,88,District,653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,4145,Block,Baglan,LGD,487,District,4145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,3529,Block,Bagli,LGD,402,District,3529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,2392,Block,Bagmundi,LGD,321,District,2392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,2408,Block,Bagnan - I,LGD,313,District,2408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,2409,Block,Bagnan - II,LGD,313,District,2409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,2541,Block,Bagodar,LGD,329,District,2541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,589,Block,Bagora,LGD,104,District,589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,6588,Block,Bagra Circle,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false -LGD,2005,Block,Bagribari,LGD,294,District,2005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -LGD,7174,Block,Bagshad,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,6341,Block,Bagwalipokhar,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,770,Block,Bah,LGD,118,District,770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -LGD,1125,Block,Bahadurganj,LGD,203,District,1125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -LGD,408,Block,Bahadurgarh,LGD,64,District,408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -LGD,6978,Block,Bahadurpur,LGD,391,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -LGD,1189,Block,Bahadurpur,LGD,195,District,1189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,4508,Block,Bahadurpura,LGD,507,District,4508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,2859,Block,Bahalda,LGD,365,District,2859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,6432,Block,Bahal St,LGD,59,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -LGD,7500,Block,Bahanaga,LGD,346,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,2614,Block,Baharagora,LGD,327,District,2614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,6072,Block,Bahari,LGD,433,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -LGD,1192,Block,Baheri,LGD,195,District,1192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,784,Block,Baheri,LGD,130,District,784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -LGD,6479,Block,Bahin St,LGD,619,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -LGD,3625,Block,Bahoriband,LGD,413,District,3625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,5912,Block,Bahour,LGD,600,District,5912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -LGD,921,Block,Bahraich,LGD,125,District,921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -LGD,7134,Block,Bahrawanda,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,6707,Block,Bahu,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,3674,Block,Baihar,LGD,392,District,3674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,112,Block,Baijnath,LGD,18,District,112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,7135,Block,Baijupara,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,3232,Block,Baikunthpur,LGD,384,District,3232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -LGD,1228,Block,Baikunthpur,LGD,197,District,1228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,5440,Block,Bailahongala,LGD,527,District,5440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,7066,Block,Bainduru,LGD,549,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -LGD,6534,Block,Bairad,LGD,432,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,5423,Block,Baireddipalle,LGD,503,District,5423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,1063,Block,Bairgania,LGD,221,District,1063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,1029,Block,Bairia,LGD,211,District,1029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,980,Block,Bairia,LGD,126,District,980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -LGD,1139,Block,Baisa,LGD,214,District,1139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,1140,Block,Baisi,LGD,214,District,1140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,6071,Block,Bajag,LGD,404,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -LGD,2024,Block,Bajali (Pt),LGD,739,District,2024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -LGD,6544,Block,Bajengdoba,LGD,656,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false -LGD,6913,Block,Bajju,LGD,93,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,3505,Block,Bajna,LGD,423,District,3505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,1075,Block,Bajpatti,LGD,221,District,1075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,348,Block,Bajpur,LGD,56,District,348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,6666,Block,Bakani,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,3364,Block,Bakavand,LGD,374,District,3364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,1316,Block,Bakhri,LGD,191,District,1316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,1414,Block,Bakhtiarpur,LGD,212,District,1414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,820,Block,Bakshi Ka Talab,LGD,162,District,820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -LGD,219,Block,Balachaur,LGD,40,District,219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -LGD,2345,Block,Balagarh,LGD,312,District,2345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,3672,Block,Balaghat,LGD,392,District,3672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,6778,Block,Balakote,LGD,10,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -LGD,4517,Block,Balanagar,LGD,700,District,4517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,4557,Block,Balanagar,LGD,512,District,4557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,3142,Block,Balangir,LGD,345,District,3142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,6323,Block,Balapur,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,3990,Block,Balapur,LGD,467,District,3990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -LGD,2393,Block,Balarampur,LGD,321,District,2393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,3871,Block,Balasinor,LGD,669,District,3871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -LGD,5188,Block,Balayapalli,LGD,752,District,5188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3421,Block,Baldeogarh,LGD,434,District,3421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,6868,Block,Baldirai,LGD,185,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -LGD,131,Block,Baldwara,LGD,22,District,131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,6564,Block,Balemu Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,6049,Block,Balesar,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,7510,Block,Baleshwar,LGD,346,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,6374,Block,Balganga,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,7360,Block,Balghat,LGD,108,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,6947,Block,Balh,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,605,Block,Bali,LGD,111,District,605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -LGD,1319,Block,Balia,LGD,191,District,1319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,3042,Block,Balianta,LGD,362,District,3042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,2893,Block,Baliapal,LGD,346,District,2893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,2586,Block,Baliapur,LGD,325,District,2586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,135,Block,Bali Chowki,LGD,22,District,135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,3119,Block,Baliguda,LGD,359,District,3119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,2014,Block,Balijana,LGD,287,District,2014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -LGD,1592,Block,Balijan Adc,LGD,237,District,1592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,4815,Block,Balijipeta,LGD,743,District,4815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2943,Block,Balikuda,LGD,355,District,2943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -LGD,3043,Block,Balipatna,LGD,362,District,3043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,7468,Block,Balisankara,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,4361,Block,Balkonda,LGD,516,District,4361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,426,Block,Ballabgarh,LGD,60,District,426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -LGD,6452,Block,Ballah St,LGD,67,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -LGD,5500,Block,Ballari,LGD,528,District,5500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -LGD,4074,Block,Ballarpur,LGD,473,District,4074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,978,Block,Ballia,LGD,126,District,978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -LGD,5105,Block,Ballikurava,LGD,517,District,5105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,2403,Block,Bally Jagachha,LGD,313,District,2403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,4597,Block,Balmoor,LGD,694,District,4597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,3321,Block,Balod,LGD,646,District,3321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -LGD,3279,Block,Baloda,LGD,379,District,3279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,3326,Block,Balodabazar,LGD,644,District,3326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,3237,Block,Balrampur,LGD,649,District,3237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,925,Block,Balrampur,LGD,127,District,925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -LGD,1146,Block,Balrampur,LGD,201,District,1146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,6442,Block,Balsamand St,LGD,63,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -LGD,2640,Block,Balumath,LGD,335,District,2640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,2204,Block,Balurghat,LGD,310,District,2204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -LGD,2215,Block,Bamangola,LGD,316,District,2215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,527,Block,Bamanwas,LGD,113,District,527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,7461,Block,Bamara,LGD,371,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,1586,Block,Bameng Adc,LGD,231,District,1586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,7265,Block,Bamhnidih,LGD,379,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,7564,Block,Bamhori,LGD,421,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,7112,Block,Bamor,LGD,417,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -LGD,3678,Block,Bamori,LGD,406,District,3678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -LGD,6102,Block,Bana Eac,LGD,787,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,5288,Block,Banaganapalli,LGD,755,District,5288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3054,Block,Banapur,LGD,362,District,3054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,7118,Block,Banarhat,LGD,314,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,3010,Block,Banarpal,LGD,344,District,3010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -LGD,3446,Block,Banda,LGD,425,District,3446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,871,Block,Banda,LGD,128,District,871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -LGD,7420,Block,Bandari,LGD,425,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,7353,Block,Bande,LGD,381,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,6603,Block,Banderdewa Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,2730,Block,Bandgaon,LGD,343,District,2730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,3482,Block,Bandhavgarh,LGD,436,District,3482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -LGD,3205,Block,Bandhugaon,LGD,363,District,3205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,5283,Block,Bandi Atmakur,LGD,755,District,5283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7210,Block,Bandikui,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,41,Block,Bandipora,LGD,623,District,41,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -LGD,4509,Block,Bandlaguda,LGD,507,District,4509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,1210,Block,Bandra,LGD,208,District,1210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,2830,Block,Banei,LGD,373,District,2830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,2137,Block,Banekuchi,LGD,298,District,2137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -LGD,630,Block,Banera,LGD,92,District,630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,5993,Block,Banga,LGD,40,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -LGD,149,Block,Bangana,LGD,26,District,149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,6356,Block,Bangapani,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,5593,Block,Bangarapet,LGD,542,District,5593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -LGD,6160,Block,Bangarmau,LGD,186,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -LGD,5429,Block,Bangarupalem,LGD,503,District,5429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,2875,Block,Bangiriposi,LGD,365,District,2875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,3150,Block,Bangomunda,LGD,345,District,3150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,29,Block,Bani,LGD,7,District,29,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,1252,Block,Baniapur,LGD,218,District,1252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,66,Block,Banihal,LGD,621,District,66,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -LGD,120,Block,Banjar,LGD,20,District,120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,1035,Block,Banjaria,LGD,213,District,1035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1350,Block,Banka,LGD,190,District,1350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,1037,Block,Bankatwa,LGD,213,District,1037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1500,Block,Banke Bazar,LGD,196,District,1500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,3619,Block,Bankhedi,LGD,409,District,3619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,2948,Block,Banki,LGD,350,District,2948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,2361,Block,Bankura - I,LGD,305,District,2361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,2362,Block,Bankura - II,LGD,305,District,2362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,1180,Block,Banma Itahri,LGD,216,District,1180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,1128,Block,Banmankhi,LGD,214,District,1128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,2727,Block,Bano,LGD,342,District,2727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,3926,Block,Bansda,LGD,453,District,3926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -LGD,979,Block,Bansdih,LGD,126,District,979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -LGD,952,Block,Bansgaon,LGD,148,District,952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -LGD,934,Block,Bansi,LGD,182,District,934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -LGD,2206,Block,Bansihari,LGD,310,District,2206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -LGD,2726,Block,Bansjor,LGD,342,District,2726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,7493,Block,Banspal,LGD,361,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,500,Block,Bansur,LGD,782,District,500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,4383,Block,Banswada,LGD,685,District,4383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,652,Block,Banswara,LGD,88,District,652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,2911,Block,Banta,LGD,348,District,2911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -LGD,5019,Block,Bantumilli,LGD,510,District,5019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,5562,Block,Bantval,LGD,534,District,5562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,4532,Block,Bantwaram,LGD,698,District,4532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,6047,Block,Baori,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,6048,Block,Bap,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5093,Block,Bapatla,LGD,750,District,5093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6916,Block,Bapini,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,6462,Block,Bapoli,LGD,71,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -LGD,5004,Block,Bapulapadu,LGD,510,District,5004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,891,Block,Bara,LGD,120,District,891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -LGD,2269,Block,Barabani,LGD,704,District,2269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -LGD,2394,Block,Barabazar,LGD,321,District,2394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,1510,Block,Barachatti,LGD,196,District,1510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,2765,Block,Baragada,LGD,347,District,2765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,2812,Block,Baragaon,LGD,373,District,2812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,1349,Block,Barahat,LGD,190,District,1349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,1365,Block,Barahiya,LGD,204,District,1365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -LGD,3594,Block,Baraily,LGD,421,District,3594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,6377,Block,Barakot,LGD,48,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -LGD,5935,Block,Barama,LGD,616,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -LGD,4199,Block,Baramati,LGD,490,District,4199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,3271,Block,Baramkela,LGD,763,District,3271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,35,Block,Baramulla,LGD,3,District,35,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,672,Block,Baran,LGD,89,District,672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -LGD,2951,Block,Barang,LGD,350,District,2951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,7361,Block,Barapal,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,360,Block,Barara,LGD,58,District,360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -LGD,1153,Block,Barari,LGD,201,District,1153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,2325,Block,Barasat - I,LGD,303,District,2325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,2326,Block,Barasat - II,LGD,303,District,2326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,1226,Block,Barauli,LGD,197,District,1226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,1312,Block,Barauni,LGD,191,District,1312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,735,Block,Baraut,LGD,124,District,735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -LGD,2135,Block,Barbhag,LGD,298,District,2135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -LGD,1372,Block,Barbigha,LGD,219,District,1372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false -LGD,2834,Block,Barbil,LGD,361,District,2834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,6798,Block,Barbugh Imam Sahib,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false -LGD,5610,Block,Bardez,LGD,551,District,5610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -LGD,2500,Block,Bardiha,LGD,328,District,2500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,3940,Block,Bardoli,LGD,459,District,3940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,787,Block,Bareilly,LGD,130,District,787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -LGD,6329,Block,Bargarh,LGD,328,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,7423,Block,Bargawan,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -LGD,3665,Block,Barghat,LGD,428,District,3665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,6613,Block,Bargur,LGD,577,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -LGD,1417,Block,Barh,LGD,212,District,1417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,2567,Block,Barhait,LGD,340,District,2567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,961,Block,Barhaj,LGD,137,District,961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -LGD,1437,Block,Barhampur,LGD,194,District,1437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,1423,Block,Barhara,LGD,193,District,1423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,1129,Block,Barhara,LGD,214,District,1129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,1231,Block,Barharia,LGD,222,District,1231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,2572,Block,Barharwa,LGD,340,District,2572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,1528,Block,Barhat,LGD,198,District,1528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,3622,Block,Barhi,LGD,413,District,3622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,2645,Block,Barhi,LGD,332,District,2645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,516,Block,Bari,LGD,98,District,516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -LGD,2985,Block,Bari,LGD,356,District,2985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,1357,Block,Bariarpur,LGD,207,District,1357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,6596,Block,Bari Basip Circle,LGD,239,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -LGD,6720,Block,Bari Brahamana,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -LGD,2872,Block,Baripada,LGD,365,District,2872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,1620,Block,Baririjo Circle,LGD,241,District,1620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,664,Block,Bari Sadri,LGD,95,District,664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,2641,Block,Bariyatu,LGD,335,District,2641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,2363,Block,Barjora,LGD,305,District,2363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,2657,Block,Barkagaon,LGD,332,District,2657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,2650,Block,Barkatha,LGD,332,District,2650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,2134,Block,Barkhetri,LGD,298,District,2134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -LGD,2801,Block,Barkot,LGD,351,District,2801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false -LGD,582,Block,Barmer,LGD,90,District,582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,7131,Block,Barmer Gramin,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,2018,Block,Barnagar (Pt),LGD,280,District,2018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -LGD,275,Block,Barnala,LGD,605,District,275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -LGD,7224,Block,Barnala,LGD,113,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,6405,Block,Barnigad,LGD,57,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,102,Block,Baroh,LGD,18,District,102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,7001,Block,Baroni,LGD,401,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -LGD,2763,Block,Barpali,LGD,347,District,2763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,7233,Block,Barpali,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,2022,Block,Barpeta,LGD,280,District,2022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -LGD,2323,Block,Barrackpur - I,LGD,303,District,2323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,2324,Block,Barrackpur - II,LGD,303,District,2324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,144,Block,Barsar,LGD,17,District,144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,4246,Block,Barshi,LGD,496,District,4246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,3994,Block,Barshitakli,LGD,467,District,3994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -LGD,1147,Block,Barsoi,LGD,201,District,1147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,7232,Block,Barsur,LGD,376,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -LGD,2422,Block,Baruipur,LGD,304,District,2422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,1482,Block,Barun,LGD,189,District,1482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,1200,Block,Baruraj (Motipur),LGD,208,District,1200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,2636,Block,Barwadih,LGD,335,District,2636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,3545,Block,Barwaha,LGD,414,District,3545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,6440,Block,Barwala,LGD,63,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -LGD,3786,Block,Barwala,LGD,676,District,3786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -LGD,6460,Block,Barwala St,LGD,70,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -LGD,3554,Block,Barwani,LGD,393,District,3554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,7372,Block,Basai Nawab,LGD,98,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -LGD,6736,Block,Basantgarh,LGD,14,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -LGD,2434,Block,Basanti,LGD,304,District,2434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,1234,Block,Basantpur,LGD,222,District,1234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,1102,Block,Basantpur,LGD,223,District,1102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,6205,Block,Basar,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,1636,Block,Basar Adc,LGD,724,District,1636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false -LGD,5454,Block,Basavakalyan,LGD,529,District,5454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -LGD,5452,Block,Basavana Bagevadi,LGD,530,District,5452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,515,Block,Baseri,LGD,98,District,515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -LGD,2560,Block,Bashant Rai*,LGD,330,District,2560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,4535,Block,Basheerabad,LGD,698,District,4535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,2711,Block,Basia,LGD,331,District,2711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,2329,Block,Basirhat - I,LGD,303,District,2329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,2330,Block,Basirhat - II,LGD,303,District,2330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,2143,Block,Baska,LGD,616,District,2143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -LGD,3339,Block,Basna,LGD,385,District,3339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -LGD,3573,Block,Basoda,LGD,437,District,3573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,28,Block,Basohli,LGD,7,District,28,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,1082,Block,Basopatti,LGD,206,District,1082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,6408,Block,Bass,LGD,792,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -LGD,549,Block,Bassi,LGD,102,District,549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,7133,Block,Bassi,LGD,95,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,220,Block,Bassi Pathana,LGD,30,District,220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -LGD,2895,Block,Basta,LGD,346,District,2895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,3362,Block,Bastanar,LGD,374,District,3362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,3363,Block,Bastar,LGD,374,District,3363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,939,Block,Basti,LGD,131,District,939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -LGD,2915,Block,Basudevpur,LGD,348,District,2915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -LGD,6334,Block,Basukedar,LGD,54,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -LGD,533,Block,Baswa,LGD,97,District,533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,7339,Block,Batabari,LGD,278,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -LGD,7363,Block,Batadoo,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,203,Block,Batala,LGD,32,District,203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -LGD,5337,Block,Bathalapalli,LGD,754,District,5337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,245,Block,Bathinda,LGD,28,District,245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -LGD,1069,Block,Bathnaha,LGD,221,District,1069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,3456,Block,Batiyagarh,LGD,400,District,3456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -LGD,6761,Block,Batote,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -LGD,3253,Block,Batouli,LGD,389,District,3253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -LGD,1355,Block,Bausi,LGD,190,District,1355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,3784,Block,Bavla,LGD,438,District,3784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,415,Block,Bawal,LGD,72,District,415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -LGD,7582,Block,Bawana,LGD,794,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,397,Block,Bawani Khera,LGD,59,District,397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -LGD,3772,Block,Bayad,LGD,672,District,3772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -LGD,513,Block,Bayana,LGD,91,District,513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -LGD,578,Block,Baytoo,LGD,90,District,578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,4742,Block,Bayyaram,LGD,688,District,4742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,4323,Block,Bazarhatnoor,LGD,501,District,4323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,609,Block,Beawar,LGD,774,District,609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3758,Block,Becharaji,LGD,451,District,3758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,4221,Block,Beed,LGD,470,District,4221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,5391,Block,Beerongi Kothakota,LGD,753,District,5391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6212,Block,Beerpur,LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,3381,Block,Beerpur,LGD,431,District,3381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -LGD,5,Block,Beerwah,LGD,2,District,5,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,3592,Block,Begamganj,LGD,421,District,3592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,657,Block,Begun,LGD,95,District,657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,3035,Block,Begunia,LGD,362,District,3035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,1314,Block,Begusarai,LGD,191,District,1314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,701,Block,Behat,LGD,177,District,701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -LGD,1427,Block,Behea,LGD,193,District,1427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,493,Block,Behror,LGD,782,District,493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,4437,Block,Bejjanki,LGD,692,District,4437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,4317,Block,Bejjur,LGD,699,District,4317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,4308,Block,Bela,LGD,501,District,4308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,1489,Block,Belaganj,LGD,196,District,1489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,5438,Block,Belagavi,LGD,527,District,5438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,7316,Block,Belargaon,LGD,377,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -LGD,1416,Block,Belchhi,LGD,212,District,1416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,2244,Block,Beldanga - I,LGD,319,District,2244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2245,Block,Beldanga - II,LGD,319,District,2245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,1326,Block,Beldaur,LGD,202,District,1326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -LGD,7243,Block,Belgahna,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,1352,Block,Belhar,LGD,190,District,1352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,7489,Block,Bellaguntha,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,5049,Block,Bellamkonda,LGD,751,District,5049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4350,Block,Bellampally,LGD,684,District,4350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,6687,Block,Belonia,LGD,271,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -LGD,3147,Block,Belpara,LGD,345,District,3147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,1072,Block,Belsand,LGD,221,District,1072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,5563,Block,Beltangadi,LGD,534,District,5563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,7281,Block,Beltara,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,975,Block,Belthara Road,LGD,126,District,975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -LGD,5318,Block,Beluguppa,LGD,502,District,5318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5554,Block,Belur,LGD,539,District,5554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -LGD,3312,Block,Bemetara,LGD,650,District,3312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,1393,Block,Ben,LGD,209,District,1393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,2537,Block,Bengabad,LGD,329,District,2537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,5544,Block,Bengaluru East,LGD,525,District,5544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -LGD,5542,Block,Bengaluru North,LGD,525,District,5542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -LGD,5543,Block,Bengaluru South,LGD,525,District,5543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -LGD,2113,Block,Bengtol,LGD,612,District,2113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -LGD,1091,Block,Benipatti,LGD,206,District,1091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,1188,Block,Benipur,LGD,195,District,1188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,3689,Block,Beohari,LGD,429,District,3689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -LGD,3580,Block,Berasia,LGD,396,District,3580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -LGD,2241,Block,Berhampore,LGD,319,District,2241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,3093,Block,Berhampur,LGD,354,District,3093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,407,Block,Beri,LGD,64,District,407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -LGD,318,Block,Berinag,LGD,53,District,318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,6776,Block,Beri Pattan,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,3315,Block,Berla,LGD,650,District,3315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,2590,Block,Bermo,LGD,322,District,2590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,2695,Block,Bero,LGD,339,District,2695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,5131,Block,Bestavaripeta,LGD,790,District,5131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,339,Block,Betalghat,LGD,51,District,339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,1966,Block,Betasing,LGD,663,District,1966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false -LGD,5279,Block,Bethamcherla,LGD,755,District,5279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2881,Block,Betnoti,LGD,365,District,2881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,1028,Block,Bettiah,LGD,211,District,1028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,3600,Block,Betul,LGD,394,District,3600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,6989,Block,Betul Nagar,LGD,394,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,3742,Block,Bhabhar,LGD,789,District,3742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,1453,Block,Bhabua,LGD,200,District,1453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,3724,Block,Bhachau,LGD,449,District,3724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,65,Block,Bhaderwah,LGD,4,District,65,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,662,Block,Bhadesar,LGD,95,District,662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,3971,Block,Bhadgaon,LGD,478,District,3971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,997,Block,Bhadohi,LGD,179,District,997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -LGD,472,Block,Bhadra,LGD,101,District,472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -LGD,4730,Block,Bhadrachalam,LGD,690,District,4730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,7217,Block,Bhadrajun,LGD,104,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,2914,Block,Bhadrak,LGD,348,District,2914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -LGD,4070,Block,Bhadravati,LGD,473,District,4070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,5521,Block,Bhadravati,LGD,547,District,5521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -LGD,130,Block,Bhadrota,LGD,22,District,130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,2231,Block,Bhagawangola - I,LGD,319,District,2231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2232,Block,Bhagawangola - II,LGD,319,District,2232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2480,Block,Bhagawanpur - I,LGD,317,District,2480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2479,Block,Bhagawanpur - II,LGD,317,District,2479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,6747,Block,Bhagwa,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,1308,Block,Bhagwanpur,LGD,191,District,1308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,6022,Block,Bhagwanpur,LGD,50,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -LGD,1271,Block,Bhagwanpur,LGD,224,District,1271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,1455,Block,Bhagwanpur,LGD,200,District,1455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,3552,Block,Bhagwanpura,LGD,414,District,3552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,1235,Block,Bhagwanpur Hat,LGD,222,District,1235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,4339,Block,Bhainsa,LGD,680,District,4339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,3598,Block,Bhainsdehi,LGD,394,District,3598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,3379,Block,Bhairamgarh,LGD,636,District,3379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -LGD,3587,Block,Bhairunda,LGD,427,District,3587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,7328,Block,Bhaisma,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,3244,Block,Bhaiyathan,LGD,648,District,3244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,7315,Block,Bhakhara,LGD,377,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -LGD,86,Block,Bhalai,LGD,16,District,86,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,6753,Block,Bhalessa (Gandoh),LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,5455,Block,Bhalki,LGD,529,District,5455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -LGD,6755,Block,Bhalla,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,6561,Block,Bhalukpong Eac,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,6709,Block,Bhalwal,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,4771,Block,Bhamini,LGD,743,District,4771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4061,Block,Bhamragad,LGD,475,District,4061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,4039,Block,Bhandara,LGD,471,District,4039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -LGD,7373,Block,Bhandarej,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,1782,Block,Bhandari,LGD,250,District,1782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,2513,Block,Bhandaria,LGD,328,District,2513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,2912,Block,Bhandari Pokhari,LGD,348,District,2912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -LGD,3406,Block,Bhander,LGD,401,District,3406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -LGD,2603,Block,Bhandra,LGD,336,District,2603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -LGD,2418,Block,Bhangar - I,LGD,304,District,2418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2419,Block,Bhangar - II,LGD,304,District,2419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,7209,Block,Bhanipura,LGD,96,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,6040,Block,Bhaniyana,LGD,103,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -LGD,333,Block,Bhanoli,LGD,45,District,333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,937,Block,Bhanpur,LGD,131,District,937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -LGD,3492,Block,Bhanpura,LGD,416,District,3492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,7312,Block,Bhanpuri,LGD,374,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,3349,Block,Bhanupratappur,LGD,381,District,3349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,3820,Block,Bhanvad,LGD,674,District,3820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -LGD,7482,Block,Bhapur,LGD,367,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -LGD,153,Block,Bharari,LGD,15,District,153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -LGD,6746,Block,Bharath Bagla,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,511,Block,Bharatpur,LGD,91,District,511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -LGD,3231,Block,Bharatpur,LGD,760,District,3231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,2247,Block,Bharatpur - I,LGD,319,District,2247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2246,Block,Bharatpur - II,LGD,319,District,2246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,1114,Block,Bhargama,LGD,188,District,1114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,92,Block,Bharmour,LGD,16,District,92,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,2709,Block,Bharno,LGD,331,District,2709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,7414,Block,Bharoli,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,839,Block,Bharthana,LGD,139,District,839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -LGD,3916,Block,Bharuch,LGD,442,District,3916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,7597,Block,Bharuch City,LGD,442,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,147,Block,Bharwain,LGD,26,District,147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,3325,Block,Bhatapara,LGD,644,District,3325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,2286,Block,Bhatar,LGD,306,District,2286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,7276,Block,Bhatgaon,LGD,763,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,7310,Block,Bhatgaon,LGD,648,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,5488,Block,Bhatkal,LGD,550,District,5488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,4010,Block,Bhatkuli,LGD,468,District,4010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,2767,Block,Bhatli,LGD,347,District,2767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,963,Block,Bhatpar Rani,LGD,137,District,963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -LGD,5089,Block,Bhattiprolu,LGD,750,District,5089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,88,Block,Bhattiyat,LGD,16,District,88,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,6436,Block,Bhattukalan St,LGD,61,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -LGD,283,Block,Bhatwari,LGD,57,District,283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,5750,Block,Bhavani,LGD,573,District,5750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,3854,Block,Bhavnagar,LGD,443,District,3854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,7444,Block,Bhavnagar City,LGD,443,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,6855,Block,Bhawanigarh,LGD,43,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -LGD,1130,Block,Bhawanipur,LGD,214,District,1130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,6939,Block,Bhawarna,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,2496,Block,Bhawnathpur,LGD,328,District,2496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,2002,Block,Bhawraguri,LGD,294,District,2002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -LGD,2764,Block,Bheden,LGD,347,District,2764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,4448,Block,Bheemadevarpalli,LGD,686,District,4448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,4963,Block,Bheemadole,LGD,748,District,4963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6228,Block,Bheemaram,LGD,684,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,7541,Block,Bheemaram (20),LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,4364,Block,Bheemgal,LGD,516,District,4364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,4328,Block,Bheemini,LGD,684,District,4328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,6223,Block,Bheempur,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,4865,Block,Bheemunipatnam,LGD,520,District,4865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,7203,Block,Bhella,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,3828,Block,Bhesan,LGD,448,District,3828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,3549,Block,Bhikangaon,LGD,414,District,3549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,6853,Block,Bhikhiwind,LGD,609,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -LGD,325,Block,Bhikiasain,LGD,45,District,325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,4391,Block,Bhiknoor,LGD,685,District,4391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,7329,Block,Bhilai-3,LGD,378,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -LGD,3764,Block,Bhiloda,LGD,672,District,3764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -LGD,634,Block,Bhilwara,LGD,92,District,634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,639,Block,Bhim,LGD,112,District,639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,4984,Block,Bhimavaram,LGD,523,District,4984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,7299,Block,Bhimbhauri,LGD,650,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,7027,Block,Bhimpur,LGD,394,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,612,Block,Bhinay,LGD,86,District,612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,3392,Block,Bhind,LGD,395,District,3392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,6917,Block,Bhinder,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,6994,Block,Bhind Nagar,LGD,395,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,923,Block,Bhinga,LGD,181,District,923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false -LGD,588,Block,Bhinmal,LGD,104,District,588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,1022,Block,Bhitaha,LGD,211,District,1022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,3401,Block,Bhitarwar,LGD,407,District,3401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,911,Block,Bhiti,LGD,121,District,911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -LGD,4166,Block,Bhiwandi,LGD,497,District,4166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -LGD,398,Block,Bhiwani,LGD,59,District,398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -LGD,4036,Block,Bhiwapur,LGD,484,District,4036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,777,Block,Bhogaon,LGD,166,District,777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -LGD,4840,Block,Bhogapuram,LGD,521,District,4840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,846,Block,Bhognipur,LGD,156,District,846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -LGD,2891,Block,Bhograi,LGD,346,District,2891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,6543,Block,Bhoirymbong,LGD,276,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -LGD,4102,Block,Bhokar,LGD,485,District,4102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,4125,Block,Bhokardan,LGD,479,District,4125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -LGD,6744,Block,Bhomag,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,4628,Block,Bhongir,LGD,697,District,4628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,4574,Block,Bhoothpur,LGD,512,District,4574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,569,Block,Bhopalgarh,LGD,107,District,569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,3376,Block,Bhopalpattnam,LGD,636,District,3376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -LGD,4198,Block,Bhor,LGD,490,District,4198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,7529,Block,Bhoraj,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,146,Block,Bhoranj,LGD,17,District,146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,1217,Block,Bhorey,LGD,197,District,1217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,6885,Block,Bhota,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,7400,Block,Bhothiya,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,2990,Block,Bhuban,LGD,352,District,2990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -LGD,7498,Block,Bhubaneswar,LGD,362,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,4291,Block,Bhudargad,LGD,480,District,4291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,3726,Block,Bhuj,LGD,449,District,3726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,205,Block,Bhulath,LGD,35,District,205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -LGD,4237,Block,Bhum,LGD,488,District,4237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -LGD,6437,Block,Bhuna St,LGD,61,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -LGD,6887,Block,Bhuntar,LGD,20,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,4682,Block,Bhupalpally,LGD,687,District,4682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,6057,Block,Bhupalsagar,LGD,95,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,2027,Block,Bhuragaon,LGD,296,District,2027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -LGD,3965,Block,Bhusawal,LGD,478,District,3965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,6665,Block,Bhusawar,LGD,91,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -LGD,6645,Block,Bhuvanagiri,LGD,570,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,3566,Block,Biaora,LGD,422,District,3566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,1299,Block,Bibhutpur,LGD,217,District,1299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,4629,Block,Bibinagar,LGD,697,District,4629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,6242,Block,Bibipet,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,4916,Block,Biccavolu,LGD,505,District,4916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,6058,Block,Bichhiwara,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,3645,Block,Bichhiya,LGD,415,District,3645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -LGD,3657,Block,Bichhua,LGD,399,District,3657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,4374,Block,Bichkunda,LGD,685,District,4374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,7013,Block,Bicholi Hapsi,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,5612,Block,Bicholim,LGD,551,District,5612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -LGD,5457,Block,Bidar,LGD,529,District,5457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -LGD,6426,Block,Bidasar,LGD,96,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,841,Block,Bidhuna,LGD,122,District,841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -LGD,1280,Block,Bidupur,LGD,224,District,1280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,818,Block,Bighapur,LGD,186,District,818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -LGD,1386,Block,Bihar,LGD,209,District,1386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,1166,Block,Bihariganj,LGD,205,District,1166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,7245,Block,Biharpur,LGD,648,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,1330,Block,Bihpur,LGD,192,District,1330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,2049,Block,Bihpuria,LGD,295,District,2049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -LGD,1403,Block,Bihta,LGD,212,District,1403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,1216,Block,Bijaipur,LGD,197,District,1216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,3378,Block,Bijapur,LGD,636,District,3378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -LGD,7476,Block,Bijatala,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,3433,Block,Bijawar,LGD,398,District,3433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,54,Block,Bijbehara,LGD,1,District,54,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,2762,Block,Bijepur,LGD,347,District,2762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,4584,Block,Bijinapally,LGD,694,District,4584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,2115,Block,Bijni,LGD,612,District,2115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -LGD,713,Block,Bijnor,LGD,132,District,713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -LGD,638,Block,Bijoliya,LGD,92,District,638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,7580,Block,Bijwasan,LGD,84,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -LGD,473,Block,Bikaner,LGD,93,District,473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,906,Block,Bikapur,LGD,140,District,906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -LGD,1405,Block,Bikram,LGD,212,District,1405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,1461,Block,Bikramganj,LGD,215,District,1461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,3329,Block,Bilaigarh,LGD,763,District,3329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,573,Block,Bilara,LGD,107,District,573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,720,Block,Bilari,LGD,171,District,720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -LGD,6018,Block,Bilasipara Pt,LGD,285,District,2009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -LGD,3295,Block,Bilaspur,LGD,375,District,3295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,725,Block,Bilaspur,LGD,176,District,725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -LGD,6974,Block,Bilaspur,LGD,436,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -LGD,362,Block,Bilaspur,LGD,76,District,362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -LGD,156,Block,Bilaspur Sadar,LGD,15,District,156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -LGD,1652,Block,Bilat Circle,LGD,232,District,1652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -LGD,5444,Block,Bilgi,LGD,524,District,5444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,812,Block,Bilgram,LGD,150,District,812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -LGD,3297,Block,Bilha,LGD,375,District,3297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,848,Block,Bilhaur,LGD,157,District,848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -LGD,1900,Block,Bilkhawthlir,LGD,263,District,1900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false -LGD,27,Block,Billawar,LGD,7,District,27,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,4105,Block,Biloli,LGD,485,District,4105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,780,Block,Bilsi,LGD,133,District,780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -LGD,3443,Block,Bina,LGD,425,District,3443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,1383,Block,Bind,LGD,209,District,1383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,877,Block,Bindki,LGD,142,District,877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -LGD,3135,Block,Binika,LGD,372,District,3135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -LGD,2984,Block,Binjharpur,LGD,356,District,2984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,2442,Block,Binpur - I,LGD,703,District,2442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -LGD,2441,Block,Binpur - II,LGD,703,District,2441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -LGD,3137,Block,Biramaharajpur,LGD,372,District,3137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -LGD,2816,Block,Biramitrapur,LGD,373,District,2816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,1193,Block,Biraul,LGD,195,District,1193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,6892,Block,Birhu Kalan,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,2941,Block,Biridi,LGD,355,District,2941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -LGD,4375,Block,Birkur,LGD,685,District,4375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,2540,Block,Birni,LGD,329,District,2540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,6354,Block,Bironkhal,LGD,52,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,1313,Block,Birpur,LGD,191,District,1313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,7033,Block,Birsa,LGD,392,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,3463,Block,Birsinghpur,LGD,426,District,3463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -LGD,791,Block,Bisalpur,LGD,173,District,791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -LGD,779,Block,Bisauli,LGD,133,District,779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -LGD,1092,Block,Bisfi,LGD,206,District,1092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,6699,Block,Bishalgarh,LGD,653,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -LGD,3175,Block,Bishamakatak,LGD,370,District,3175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,81,Block,Bishnah,LGD,5,District,81,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,1874,Block,Bishnupur,LGD,252,District,1874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false -LGD,2415,Block,Bishnupur - I,LGD,304,District,2415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2416,Block,Bishnupur - II,LGD,304,District,2416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2624,Block,Bishrampur,LGD,338,District,2624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,2652,Block,Bishungarh,LGD,332,District,2652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,2706,Block,Bishunpur,LGD,331,District,2706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,2502,Block,Bishunpura,LGD,328,District,2502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,2864,Block,Bisoi,LGD,365,District,2864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,2818,Block,Bisra,LGD,373,District,2818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,7218,Block,Bissau,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,806,Block,Biswan,LGD,183,District,806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -LGD,2045,Block,Biswanath,LGD,705,District,2045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -LGD,1303,Block,Bithan,LGD,217,District,1303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,5621,Block,Bitra,LGD,553,District,5621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,5209,Block,B.Kodur,LGD,504,District,5209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,6815,Block,Bk Pora,LGD,2,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,2557,Block,Boarijor,LGD,330,District,2557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,4324,Block,Boath,LGD,501,District,4324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,4816,Block,Bobbili,LGD,521,District,4816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,1206,Block,Bochaha,LGD,208,District,1206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,6020,Block,Bodeli,LGD,668,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -LGD,3157,Block,Boden,LGD,368,District,3157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -LGD,4370,Block,Bodhan,LGD,516,District,4370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,1505,Block,Bodh Gaya,LGD,196,District,1505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,5842,Block,Bodinayakanur,LGD,588,District,5842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -LGD,3299,Block,Bodla,LGD,382,District,3299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -LGD,7250,Block,Bodri,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,3964,Block,Bodvad,LGD,478,District,3964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,5159,Block,Bogole,LGD,515,District,5159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,4429,Block,Boinpalli,LGD,683,District,4429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,3211,Block,Boipariguda,LGD,363,District,3211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,2111,Block,Boitamari,LGD,281,District,2111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -LGD,2082,Block,Bokakhat,LGD,288,District,2082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -LGD,1079,Block,Bokhara,LGD,221,District,1079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,2124,Block,Boko,LGD,291,District,2124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,3034,Block,Bolagad,LGD,362,District,3034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,2722,Block,Bolba,LGD,342,District,2722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,1643,Block,Boleng Adc,LGD,679,District,1643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,5061,Block,Bollapalli,LGD,751,District,5061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2264,Block,Bolpur Sriniketan,LGD,307,District,2264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,4550,Block,Bomaraspeta,LGD,698,District,4550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,6568,Block,Bomdila Hq,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,4613,Block,Bommalaramaram,LGD,697,District,4613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,5307,Block,Bommanahal,LGD,502,District,5307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,4765,Block,Bonakal,LGD,509,District,4765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,4829,Block,Bondapalli,LGD,521,District,4829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,6433,Block,Bondkalan St,LGD,701,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -LGD,2110,Block,Bongaigaon (Pt),LGD,281,District,2110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -LGD,2317,Block,Bongaon,LGD,303,District,2317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,6557,Block,Bongkhar Circle,LGD,238,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,38,Block,Boniyar,LGD,3,District,38,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,529,Block,Bonli,LGD,113,District,529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,2605,Block,Boram,LGD,327,District,2605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,1683,Block,Bordumsa Adc,LGD,229,District,1683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,6594,Block,Borduria Circle,LGD,239,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -LGD,7330,Block,Bori,LGD,378,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -LGD,3200,Block,Boriguma,LGD,363,District,3200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,2566,Block,Borio,LGD,340,District,2566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,7181,Block,Borivali,LGD,483,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -LGD,6490,Block,Borobekra,LGD,713,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false -LGD,3867,Block,Borsad,LGD,440,District,3867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,6013,Block,Borum,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,3850,Block,Botad,LGD,676,District,3850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -LGD,7435,Block,Botad City,LGD,676,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -LGD,1846,Block,Botsa,LGD,245,District,1846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -LGD,3130,Block,Boudh,LGD,349,District,3130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -LGD,4630,Block,B Pochampally,LGD,697,District,4630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,3067,Block,Brahmagiri,LGD,369,District,3067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,5205,Block,Brahmamgarimattam,LGD,504,District,5205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4067,Block,Brahmapuri,LGD,473,District,4067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,5320,Block,Brahmasamudram,LGD,502,District,5320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,7068,Block,Brahmavara,LGD,549,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -LGD,5380,Block,Buchinaidu Kandriga,LGD,752,District,5380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5170,Block,Buchireddipalem,LGD,515,District,5170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5966,Block,Budalur,LGD,586,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,782,Block,Budaun,LGD,133,District,782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -LGD,7,Block,Budgam,LGD,2,District,7,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,2413,Block,Budge Budge - I,LGD,304,District,2413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2414,Block,Budge Budge - II,LGD,304,District,2414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,709,Block,Budhana,LGD,172,District,709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -LGD,248,Block,Budhlada,LGD,37,District,248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false -LGD,3588,Block,Budni,LGD,427,District,3588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,6213,Block,Buggaram,LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,3072,Block,Buguda,LGD,354,District,3072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,489,Block,Buhana,LGD,106,District,489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,5345,Block,Bukkapatnam,LGD,754,District,5345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5329,Block,Bukkaraya Samudram,LGD,502,District,5329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,746,Block,Bulandshahr,LGD,134,District,746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -LGD,3984,Block,Buldana,LGD,472,District,3984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,626,Block,Bundi,LGD,94,District,626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -LGD,2698,Block,Bundu,LGD,339,District,2698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,2397,Block,Bundwan,LGD,321,District,2397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,1912,Block,Bunghmun,LGD,265,District,1912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false -LGD,6488,Block,Bungte Chiru,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,1918,Block,Bungtlang South,LGD,264,District,1918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false -LGD,6770,Block,Bunjwah,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,6847,Block,Buragaon Eac,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,7569,Block,Burari,LGD,80,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false -LGD,2289,Block,Burdwan - I,LGD,306,District,2289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2290,Block,Burdwan - II,LGD,306,District,2290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,4736,Block,Burgampahad,LGD,690,District,4736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,964,Block,Burhanpur,LGD,123,District,964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -LGD,3719,Block,Burhanpur,LGD,397,District,3719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -LGD,6972,Block,Burhanpur Nagar,LGD,397,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -LGD,6988,Block,Burhar,LGD,429,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -LGD,4794,Block,Burja,LGD,519,District,4794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,2682,Block,Burmu,LGD,339,District,2682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,2248,Block,Burwan,LGD,319,District,2248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,4873,Block,Butchayyapeta,LGD,744,District,4873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4948,Block,Buttayagudem,LGD,748,District,4948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1441,Block,Buxar,LGD,194,District,1441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,3434,Block,Buxwaha,LGD,398,District,3434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,5493,Block,Byadgi,LGD,540,District,5493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -LGD,948,Block,Campierganj,LGD,148,District,948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -LGD,5619,Block,Canacona,LGD,793,District,5619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -LGD,2420,Block,Canning - I,LGD,304,District,2420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2421,Block,Canning - II,LGD,304,District,2421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,5916,Block,Car Nicobar,LGD,603,District,5916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false -LGD,5256,Block,C.Belagal,LGD,511,District,5256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,2065,Block,Chabua,LGD,286,District,2065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -LGD,3683,Block,Chachaura,LGD,406,District,3683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -LGD,7560,Block,Chachian,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,137,Block,Chachyot,LGD,22,District,137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,7070,Block,Chadchan,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,6897,Block,Chadiyar,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,8,Block,Chadoora,LGD,2,District,8,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,5303,Block,Chagalamarri,LGD,755,District,5303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4959,Block,Chagallu,LGD,505,District,4959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,1739,Block,Chaglagam Circle,LGD,628,District,1739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -LGD,2739,Block,Chaibasa,LGD,343,District,2739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,887,Block,Chail,LGD,158,District,887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -LGD,1452,Block,Chainpur,LGD,200,District,1452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,2634,Block,Chainpur,LGD,338,District,2634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,2713,Block,Chainpur,LGD,331,District,2713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,1534,Block,Chakai,LGD,198,District,1534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,3116,Block,Chakapada,LGD,359,District,3116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,840,Block,Chakarnagar,LGD,139,District,840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -LGD,2314,Block,Chakdah,LGD,320,District,2314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,994,Block,Chakia,LGD,135,District,994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -LGD,1051,Block,Chakia(Pipra),LGD,213,District,1051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,6036,Block,Chakisain,LGD,52,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,1436,Block,Chakki,LGD,194,District,1436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,1895,Block,Chakpikarong,LGD,253,District,1895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -LGD,2731,Block,Chakradharpur,LGD,343,District,2731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,300,Block,Chakrata,LGD,49,District,300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -LGD,5234,Block,Chakrayapet,LGD,504,District,5234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,550,Block,Chaksu,LGD,102,District,550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,2613,Block,Chakulia,LGD,327,District,2613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,4230,Block,Chakur,LGD,481,District,4230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,5939,Block,Chalakkudy,LGD,566,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -LGD,7340,Block,Chalgali,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,3972,Block,Chalisgaon,LGD,478,District,3972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,2651,Block,Chalkusa,LGD,332,District,2651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,5504,Block,Challakere,LGD,533,District,5504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -LGD,5035,Block,Challapalli,LGD,510,District,5035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,5577,Block,Chamarajanagar,LGD,531,District,5577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -LGD,2122,Block,Chamaria,LGD,291,District,2122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,90,Block,Chamba,LGD,16,District,90,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,1709,Block,Chambang Circle,LGD,677,District,1709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false -LGD,265,Block,Chamkaur Sahib,LGD,42,District,265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -LGD,285,Block,Chamoli,LGD,47,District,285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,4058,Block,Chamorshi,LGD,475,District,4058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,3281,Block,Champa,LGD,379,District,3281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,334,Block,Champawat,LGD,48,District,334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -LGD,1908,Block,Champhai,LGD,262,District,1908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false -LGD,6489,Block,Champhai,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,2839,Block,Champua,LGD,361,District,2839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,7374,Block,Chamu,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,1353,Block,Chanan,LGD,190,District,1353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,1369,Block,Chanan*,LGD,204,District,1369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -LGD,3750,Block,Chanasma,LGD,455,District,3750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,2210,Block,Chanchal - I,LGD,316,District,2210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,2211,Block,Chanchal - II,LGD,316,District,2211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,1451,Block,Chand,LGD,200,District,1451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,6996,Block,Chand,LGD,399,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,3190,Block,Chandahandi,LGD,366,District,3190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,4652,Block,Chandampeta,LGD,514,District,4652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,2596,Block,Chandankiyari,LGD,322,District,2596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,5008,Block,Chandarlapadu,LGD,749,District,5008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,993,Block,Chandauli,LGD,135,District,993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -LGD,722,Block,Chandausi,LGD,659,District,722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -LGD,2919,Block,Chandbali,LGD,348,District,2919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -LGD,1894,Block,Chandel,LGD,253,District,1894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -LGD,3685,Block,Chanderi,LGD,391,District,3685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -LGD,4294,Block,Chandgad,LGD,480,District,4294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,1381,Block,Chandi,LGD,209,District,1381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,3483,Block,Chandia,LGD,436,District,3483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -LGD,277,Block,Chandigarh,LGD,44,District,277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.729350,76.780565,inherited:District,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11,false -LGD,2748,Block,Chandil,LGD,341,District,2748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,2481,Block,Chandipur,LGD,317,District,2481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2351,Block,Chanditala - I,LGD,312,District,2351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,2352,Block,Chanditala - II,LGD,312,District,2352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,3426,Block,Chandla,LGD,398,District,3426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,7574,Block,Chandni Chowk,LGD,795,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,7254,Block,Chando,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,716,Block,Chandpur,LGD,132,District,716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -LGD,5384,Block,Chandragiri,LGD,752,District,5384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2446,Block,Chandrakona - I,LGD,318,District,2446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,2447,Block,Chandrakona - II,LGD,318,District,2447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,3174,Block,Chandrapur,LGD,370,District,3174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,7354,Block,Chandrapur,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,2131,Block,Chandrapur,LGD,618,District,2131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -LGD,4071,Block,Chandrapur,LGD,473,District,4071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,2589,Block,Chandrapura,LGD,322,District,2589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,5145,Block,Chandra Sekhara Puram,LGD,790,District,5145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3711,Block,Chandra Shekhar Azad Nagar,LGD,639,District,3711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -LGD,4747,Block,Chandrugonda,LGD,690,District,4747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,4655,Block,Chandur,LGD,514,District,4655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,6669,Block,Chandur,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,4005,Block,Chandurbazar,LGD,468,District,4005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,4013,Block,Chandur Railway,LGD,468,District,4013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,4419,Block,Chandurthi,LGD,683,District,4419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,4148,Block,Chandvad,LGD,487,District,4148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,2643,Block,Chandwa,LGD,335,District,2643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,2530,Block,Chandwara,LGD,334,District,2530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -LGD,5671,Block,Changanassery,LGD,560,District,5671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -LGD,1671,Block,Changlang Hq,LGD,229,District,1671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,1780,Block,Changpang,LGD,250,District,1780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,1761,Block,Changtongya,LGD,246,District,1761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,2694,Block,Chanho,LGD,339,District,2694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,5514,Block,Channagiri,LGD,535,District,5514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -LGD,5607,Block,Channapatna,LGD,631,District,5607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -LGD,6802,Block,Channapora/Natipora,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -LGD,5560,Block,Channarayapatna,LGD,539,District,5560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -LGD,1025,Block,Chanpatia,LGD,211,District,1025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,5213,Block,Chapad,LGD,504,District,5213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,6019,Block,Chapar Pt,LGD,285,District,2010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -LGD,2305,Block,Chapra,LGD,320,District,2305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,1258,Block,Chapra,LGD,218,District,1258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,6293,Block,Charakonda,LGD,694,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,3348,Block,Charama,LGD,381,District,3348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,9,Block,Charar- E- Shrief,LGD,2,District,9,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,1076,Block,Charaut,LGD,221,District,1076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,1815,Block,Chare,LGD,249,District,1815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false -LGD,2042,Block,Chariduar,LGD,301,District,2042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -LGD,869,Block,Charkhari,LGD,165,District,869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false -LGD,4510,Block,Charminar,LGD,507,District,4510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,1430,Block,Charpokhari,LGD,193,District,1430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,2595,Block,Chas,LGD,322,District,2595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,6738,Block,Chassana,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,2518,Block,Chatra,LGD,323,District,2518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,5001,Block,Chatrai,LGD,748,District,5001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,312,Block,Chaubatta Khal,LGD,52,District,312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,1438,Block,Chaugain,LGD,194,District,1438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,326,Block,Chaukhutiya,LGD,45,District,326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,185,Block,Chaupal,LGD,23,District,185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,2644,Block,Chauparan,LGD,332,District,2644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,3650,Block,Chaurai,LGD,399,District,3650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,951,Block,Chauri Chaura,LGD,148,District,951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -LGD,1170,Block,Chausa,LGD,205,District,1170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,1442,Block,Chausa,LGD,194,District,1442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,1325,Block,Chautham,LGD,202,District,1325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -LGD,530,Block,Chauth Ka Barwara,LGD,113,District,530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,5653,Block,Chavakkad,LGD,566,District,5653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -LGD,1916,Block,Chawngte,LGD,264,District,1916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false -LGD,1590,Block,Chayangtajo Adc,LGD,231,District,1590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,5079,Block,Chebrolu,LGD,506,District,5079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,7375,Block,Chechat,LGD,109,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -LGD,4858,Block,Cheedikada,LGD,744,District,4858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4827,Block,Cheepurupalli,LGD,521,District,4827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,4466,Block,Chegunta,LGD,513,District,4466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,1273,Block,Chehra Kalan,LGD,224,District,1273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,5172,Block,Chejerla,LGD,515,District,5172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,7407,Block,Chelur,LGD,630,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -LGD,1753,Block,Chen,LGD,247,District,1753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,73,Block,Chenani,LGD,14,District,73,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -LGD,1468,Block,Chenari,LGD,215,District,1468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,2021,Block,Chenga,LGD,280,District,2021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -LGD,5706,Block,Chengalpattu,LGD,730,District,5706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -LGD,5725,Block,Chengam,LGD,593,District,5725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,5677,Block,Chengannur,LGD,554,District,5677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -LGD,4712,Block,Chennaraopet,LGD,522,District,4712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,5347,Block,Chennekothapalli,LGD,754,District,5347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4356,Block,Chennur,LGD,684,District,4356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,5226,Block,Chennur,LGD,504,District,5226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,6648,Block,Cheranmahadevi,LGD,592,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -LGD,1307,Block,Cheria Bariarpur,LGD,191,District,1307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,4672,Block,Cherial,LGD,692,District,4672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,4726,Block,Cherla,LGD,690,District,4726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,5673,Block,Cherthala,LGD,554,District,5673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -LGD,5090,Block,Cherukupalli,LGD,750,District,5090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1827,Block,Chessore,LGD,765,District,1827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1614,Block,Chetam Peer Yapu Circle,LGD,241,District,1614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,1807,Block,Chetheba,LGD,248,District,1807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,5622,Block,Chetlat,LGD,553,District,5622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,6617,Block,Chetpet,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,4529,Block,Chevella,LGD,518,District,4529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,1376,Block,Chewara,LGD,219,District,1376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false -LGD,5722,Block,Cheyyar,LGD,593,District,5722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,5711,Block,Cheyyur,LGD,730,District,5711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -LGD,676,Block,Chhabra,LGD,89,District,676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -LGD,363,Block,Chhachhrauli,LGD,76,District,363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -LGD,7424,Block,Chhaigaon Makhan,LGD,405,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,7240,Block,Chhal,LGD,386,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,3660,Block,Chhapara,LGD,428,District,3660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,761,Block,Chhata,LGD,167,District,761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -LGD,1103,Block,Chhatapur,LGD,223,District,1103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,479,Block,Chhatargarh,LGD,93,District,479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,2620,Block,Chhatarpur,LGD,338,District,2620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,7587,Block,Chhatarpur,LGD,83,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -LGD,3429,Block,Chhatarpur,LGD,398,District,3429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,7006,Block,Chhatarpur Nagar,LGD,398,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,2359,Block,Chhatna,LGD,305,District,2359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,4137,Block,Chhatrapati Sambhajinagar,LGD,469,District,4137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,3085,Block,Chhatrapur,LGD,354,District,3085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,6950,Block,Chhatri,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,70,Block,Chhatroo,LGD,620,District,70,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,2120,Block,Chhaygaon,LGD,291,District,2120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,3014,Block,Chhendipada,LGD,344,District,3014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -LGD,833,Block,Chhibramau,LGD,155,District,833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -LGD,3374,Block,Chhindgarh,LGD,642,District,3374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -LGD,3654,Block,Chhindwara,LGD,399,District,3654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,7020,Block,Chhindwara Nagar,LGD,399,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,677,Block,Chhipabarod,LGD,89,District,677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -LGD,1305,Block,Chhorahi,LGD,191,District,1305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,3901,Block,Chhota Udaipur,LGD,668,District,3901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -LGD,7318,Block,Chhotedongar,LGD,637,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false -LGD,7364,Block,Chhoti Khatoo,LGD,768,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,698,Block,Chhoti Sadri,LGD,629,District,698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -LGD,6042,Block,Chhoti Sarwan,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,3302,Block,Chhuikhadan,LGD,759,District,3302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,3336,Block,Chhura,LGD,645,District,3336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -LGD,3306,Block,Chhuriya,LGD,388,District,3306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -LGD,3601,Block,Chicholi,LGD,394,District,3601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,5791,Block,Chidambaram,LGD,570,District,5791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,1845,Block,Chiephobozou,LGD,245,District,1845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -LGD,4442,Block,Chigurumamidi,LGD,508,District,4442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,7545,Block,Chikada,LGD,452,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -LGD,4002,Block,Chikhaldara,LGD,468,District,4002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,6059,Block,Chikhali,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,3925,Block,Chikhli,LGD,453,District,3925,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -LGD,3983,Block,Chikhli,LGD,472,District,3983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,7487,Block,Chikiti,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,5596,Block,Chikkaballapura,LGD,630,District,5596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -LGD,5530,Block,Chikkamagaluru,LGD,532,District,5530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,5532,Block,Chiknayakanhalli,LGD,548,District,5532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,5433,Block,Chikodi,LGD,527,District,5433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,5070,Block,Chilakaluripet H/O.Purushotha Patnam,LGD,751,District,5070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5366,Block,Chilamathur,LGD,754,District,5366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7497,Block,Chilika,LGD,362,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,6483,Block,Chilivai Phaibung,LGD,257,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -LGD,4667,Block,Chilkur,LGD,696,District,4667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,5190,Block,Chillakur,LGD,515,District,5190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,6754,Block,Chilly Pingal,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,6274,Block,Chilpched,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,6259,Block,Chilpur,LGD,689,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,5128,Block,Chimakurthy,LGD,517,District,5128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,4065,Block,Chimur,LGD,473,District,4065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,5125,Block,Chinaganjam,LGD,750,District,5125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5583,Block,Chincholi,LGD,538,District,5583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,1887,Block,Chingai,LGD,260,District,1887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false -LGD,1822,Block,Chingmei,LGD,249,District,1822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false -LGD,2507,Block,Chinia,LGD,328,District,2507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,4587,Block,Chinnachintakunta,LGD,512,District,4587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,5385,Block,Chinnagottigallu,LGD,752,District,5385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6254,Block,Chinnagudur,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,4460,Block,Chinnakodur,LGD,692,District,4460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,5236,Block,Chinnamandem,LGD,753,District,5236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6287,Block,Chinnambavi,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,5977,Block,Chinnasalem,LGD,729,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -LGD,3402,Block,Chinour,LGD,407,District,3402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,2346,Block,Chinsurah - Magra,LGD,312,District,2346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,6314,Block,Chintalamanepally,LGD,699,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,4944,Block,Chintalapudi,LGD,748,District,4944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5600,Block,Chintamani,LGD,630,District,5600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -LGD,4760,Block,Chinthakani,LGD,509,District,4760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,5231,Block,Chinthakommadinne,LGD,504,District,5231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,6303,Block,Chinthalapalem,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,4849,Block,Chinthapalli,LGD,745,District,4849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4650,Block,Chinthapally,LGD,514,District,4650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4732,Block,Chinturu,LGD,791,District,4732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,282,Block,Chinyali Saur,LGD,57,District,282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,4269,Block,Chiplun,LGD,492,District,4269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,5291,Block,Chippagiri,LGD,511,District,5291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,1040,Block,Chiraia,LGD,213,District,1040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,5123,Block,Chirala,LGD,750,District,5123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6758,Block,Chiralla,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,488,Block,Chirawa,LGD,106,District,488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,5689,Block,Chirayinkeezhu,LGD,565,District,5689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -LGD,192,Block,Chirgaon,LGD,23,District,192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,7268,Block,Chirmiri,LGD,760,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,7084,Block,Chitaguppa,LGD,529,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -LGD,6046,Block,Chitalwana,LGD,104,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,2664,Block,Chitarpur,LGD,607,District,2664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -LGD,5505,Block,Chitradurga,LGD,533,District,5505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -LGD,6799,Block,Chitragam,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false -LGD,3223,Block,Chitrakonda,LGD,364,District,3223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -LGD,3703,Block,Chitrangi,LGD,638,District,3703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -LGD,5193,Block,Chittamur,LGD,752,District,5193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5585,Block,Chittapur,LGD,538,District,5585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,5421,Block,Chittoor Rural,LGD,503,District,5421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,7427,Block,Chittoor Urban,LGD,503,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,659,Block,Chittorgarh,LGD,95,District,659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,5650,Block,Chittur,LGD,563,District,5650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -LGD,5245,Block,Chitvel,LGD,752,District,5245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4633,Block,Chityal,LGD,514,District,4633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4681,Block,Chityal,LGD,687,District,4681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,4639,Block,Chivemla,LGD,696,District,4639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,1812,Block,Chizami,LGD,248,District,1812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,4872,Block,Chodavaram,LGD,744,District,4872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,584,Block,Chohtan,LGD,90,District,584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,1975,Block,Chokpot,LGD,277,District,1975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -LGD,541,Block,Chomu,LGD,102,District,541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,1731,Block,Chongkham Eac,LGD,678,District,1731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false -LGD,3960,Block,Chopda,LGD,478,District,3960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,4424,Block,Choppadandi,LGD,508,District,4424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,2191,Block,Chopra,LGD,311,District,2191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,3938,Block,Chorasi,LGD,459,District,3938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,3794,Block,Chotila,LGD,460,District,3794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,4631,Block,Choutuppal,LGD,697,District,4631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,7186,Block,Chowdapur,LGD,698,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,5413,Block,Chowdepalle,LGD,753,District,5413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6703,Block,Chowki Choura,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,7188,Block,Chowtakur,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,1806,Block,Chozuba,LGD,248,District,1806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,1762,Block,Chuchuyimlang,LGD,246,District,1762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,3796,Block,Chuda,LGD,460,District,3796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,1791,Block,Chukitong,LGD,250,District,1791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,1797,Block,Chumukedima,LGD,758,District,1797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1003,Block,Chunar,LGD,170,District,1003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -LGD,6376,Block,Chunchupalli,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,1547,Block,Chungthang,LGD,226,District,1547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false -LGD,5987,Block,Chunlikha,LGD,757,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1871,Block,Churachandpur,LGD,254,District,1871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,84,Block,Churah,LGD,16,District,84,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,2658,Block,Churchu,LGD,332,District,2658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,3698,Block,Churhat,LGD,433,District,3698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -LGD,484,Block,Churu,LGD,96,District,484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,7039,Block,City Center,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,5897,Block,Coimbatore North,LGD,569,District,5897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,5898,Block,Coimbatore South,LGD,569,District,5898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,929,Block,Colonelganj,LGD,147,District,929,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -LGD,2488,Block,Contai - I,LGD,317,District,2488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2490,Block,Contai - III,LGD,317,District,2490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2183,Block,Cooch Behar - I,LGD,308,District,2183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,2184,Block,Cooch Behar - II,LGD,308,District,2184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,5758,Block,Coonoor,LGD,587,District,5758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -LGD,5789,Block,Cuddalore,LGD,570,District,5789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,5117,Block,Cumbum,LGD,790,District,5117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2962,Block,Cuttack,LGD,350,District,2962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,3905,Block,Dabhoi,LGD,461,District,3905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,3284,Block,Dabhra,LGD,762,District,3284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,3400,Block,Dabra,LGD,407,District,3400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,3192,Block,Dabugan,LGD,366,District,3192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,389,Block,Dabwali,LGD,74,District,389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -LGD,5045,Block,Dachepalli,LGD,751,District,5045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6765,Block,Dachhan,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,171,Block,Dadahu,LGD,24,District,171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,1687,Block,Dadam Circle,LGD,239,District,1687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -LGD,6918,Block,Dadasiba,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,1963,Block,Dadenggiri,LGD,278,District,1963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -LGD,2659,Block,Dadi,LGD,332,District,2659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,3949,Block,Dadra & Nagar Haveli,LGD,465,District,3949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,false -LGD,402,Block,Dadri,LGD,701,District,402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -LGD,742,Block,Dadri,LGD,144,District,742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -LGD,6926,Block,Dag,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,5166,Block,Dagadarthi,LGD,515,District,5166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,1141,Block,Dagarua,LGD,214,District,1141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,4158,Block,Dahanu,LGD,665,District,4158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -LGD,4329,Block,Dahegoan,LGD,699,District,4329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,3537,Block,Dahi,LGD,403,District,3537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,6464,Block,Dahina St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -LGD,5186,Block,Dakkili,LGD,752,District,5186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2149,Block,Dalgaon (Pt),LGD,283,District,2149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -LGD,87,Block,Dalhousie,LGD,16,District,87,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,827,Block,Dalmau,LGD,175,District,827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -LGD,3497,Block,Daloda,LGD,416,District,3497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,7151,Block,Dalot,LGD,629,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -LGD,1297,Block,Dalsinghsarai,LGD,217,District,1297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,1969,Block,Dalu,LGD,278,District,1969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -LGD,3948,Block,Daman,LGD,463,District,3948,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,false -LGD,4553,Block,Damargidda,LGD,721,District,4553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,1971,Block,Dambo Rongjeng,LGD,273,District,1971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -LGD,6591,Block,Dambuen Circle,LGD,230,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false -LGD,1725,Block,Dambuk Adc,LGD,235,District,1725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false -LGD,6375,Block,Damera,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,4663,Block,Dameracherla,LGD,514,District,4663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,1714,Block,Damin Circle,LGD,233,District,1714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,4750,Block,Dammapeta,LGD,690,District,4750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,3458,Block,Damoh,LGD,400,District,3458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -LGD,6999,Block,Damyanti Nagar,LGD,400,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -LGD,2510,Block,Danda,LGD,328,District,2510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,2506,Block,Dandai,LGD,328,District,2506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,1317,Block,Dandari,LGD,191,District,1317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,7064,Block,Dandeli,LGD,550,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,4348,Block,Dandepally,LGD,684,District,4348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,1150,Block,Dandkhora,LGD,201,District,1150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,7475,Block,Dangadi,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,6827,Block,Dangarpora,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,7110,Block,Dangtal Revenue Circle,LGD,281,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -LGD,1412,Block,Daniawan,LGD,212,District,1412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,6712,Block,Dansal,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,3737,Block,Danta,LGD,441,District,3737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,2467,Block,Dantan - I,LGD,318,District,2467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,2468,Block,Dantan - II,LGD,318,District,2468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,554,Block,Danta Ramgarh,LGD,114,District,554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,3369,Block,Dantewada,LGD,376,District,3369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -LGD,6255,Block,Danthalapalle,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,3735,Block,Dantiwada,LGD,441,District,3735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,4267,Block,Dapoli,LGD,492,District,4267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,1615,Block,Daporijo Hq,LGD,241,District,1615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,1628,Block,Darak Circle,LGD,243,District,1628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false -LGD,1242,Block,Darauli,LGD,222,District,1242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,1246,Block,Daraundha,LGD,222,District,1246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,3366,Block,Darbha,LGD,374,District,3366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,1184,Block,Darbhanga,LGD,195,District,1184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,6901,Block,Dareeni,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,21,Block,Darhal,LGD,12,District,21,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,7357,Block,Darhi,LGD,650,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,1264,Block,Dariapur,LGD,218,District,1264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,7261,Block,Darima,LGD,389,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -LGD,3125,Block,Daringbadi,LGD,359,District,3125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,1637,Block,Daring Circle,LGD,724,District,1637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false -LGD,2154,Block,Darjeeling Pulbazar,LGD,309,District,2154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,159,Block,Darlaghat,LGD,25,District,159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,1902,Block,Darlawn,LGD,261,District,1902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -LGD,7474,Block,Darpan,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,7266,Block,Darri,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,5114,Block,Darsi,LGD,517,District,5114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,2649,Block,Daru,LGD,332,District,2649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,4083,Block,Darwha,LGD,500,District,4083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,4011,Block,Daryapur,LGD,468,District,4011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,3790,Block,Dasada,LGD,460,District,3790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,3202,Block,Dasamantapur,LGD,363,District,3202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,3023,Block,Dasapalla,LGD,367,District,3023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -LGD,7473,Block,Dasarathpur,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,3782,Block,Daskroi,LGD,438,District,3782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,2449,Block,Daspur - I,LGD,318,District,2449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,2450,Block,Daspur - II,LGD,318,District,2450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,6207,Block,Dasturabad,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,214,Block,Dasua,LGD,33,District,214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -LGD,783,Block,Dataganj,LGD,133,District,783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -LGD,3405,Block,Datia,LGD,401,District,3405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -LGD,6991,Block,Datia Nagar,LGD,401,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -LGD,4823,Block,Dattirajeru,LGD,521,District,4823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,1476,Block,Daudnagar,LGD,189,District,1476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,4195,Block,Daund,LGD,490,District,4195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,3322,Block,Daundi,LGD,646,District,3322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -LGD,3320,Block,Daundilohara,LGD,646,District,3320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -LGD,7251,Block,Daura-Kochali,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,536,Block,Dausa,LGD,97,District,536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,5512,Block,Davanagere,LGD,535,District,5512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -LGD,1459,Block,Dawath,LGD,215,District,1459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,6415,Block,Dayalpur St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -LGD,2800,Block,Debagarh,LGD,351,District,2800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false -LGD,749,Block,Debai,LGD,134,District,749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -LGD,7021,Block,Debeyar Co Circle,LGD,231,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,2462,Block,Debra,LGD,318,District,2462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,6937,Block,Dechoo,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3911,Block,Dediapada,LGD,452,District,3911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -LGD,6842,Block,Deed Circle,LGD,786,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,508,Block,Deeg,LGD,767,District,508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3740,Block,Deesa,LGD,441,District,3740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,7437,Block,Deesa City,LGD,441,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,563,Block,Degana,LGD,110,District,563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,2327,Block,Deganga,LGD,303,District,2327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,4110,Block,Deglur,LGD,485,District,4110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,7223,Block,Deh,LGD,110,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,6958,Block,Deha,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,6949,Block,Dehar,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,3776,Block,Dehgam,LGD,446,District,3776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -LGD,304,Block,Dehradun,LGD,49,District,304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -LGD,103,Block,Dehra Gopipur,LGD,18,District,103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,1473,Block,Dehri,LGD,215,District,1473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,3056,Block,Delanga,LGD,369,District,3056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,7154,Block,Deldar,LGD,115,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -LGD,452,Block,Delhi Cantonment,LGD,79,District,452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false -LGD,6935,Block,Delwara,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,6546,Block,Demdema,LGD,278,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -LGD,4967,Block,Denduluru,LGD,748,District,4967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4839,Block,Denkada,LGD,521,District,4839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,5892,Block,Denkanikottai,LGD,577,District,5892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -LGD,6398,Block,Dentam,LGD,228,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false -LGD,1485,Block,Deo,LGD,189,District,1485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,704,Block,Deoband,LGD,177,District,704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -LGD,3741,Block,Deodar,LGD,789,District,3741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,7453,Block,Deogaon,LGD,345,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,640,Block,Deogarh,LGD,112,District,640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,2545,Block,Deoghar,LGD,324,District,2545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,4144,Block,Deola,LGD,487,District,4144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,3985,Block,Deolgaon Raja,LGD,472,District,3985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,4020,Block,Deoli,LGD,498,District,4020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -LGD,620,Block,Deoli,LGD,116,District,620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,7588,Block,Deoli,LGD,83,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -LGD,1684,Block,Deomali Adc,LGD,239,District,1684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -LGD,4234,Block,Deoni,LGD,481,District,4234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,4051,Block,Deori,LGD,476,District,4051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -LGD,2534,Block,Deori,LGD,329,District,2534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,3453,Block,Deori,LGD,425,District,3453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,7010,Block,Deori,LGD,421,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,959,Block,Deoria,LGD,137,District,959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -LGD,3704,Block,Deosar,LGD,638,District,3704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -LGD,3540,Block,Depalpur,LGD,410,District,3540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,204,Block,Dera Baba Nanak,LGD,32,District,204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -LGD,268,Block,Dera Bassi,LGD,608,District,268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -LGD,2930,Block,Derabish,LGD,360,District,2930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,844,Block,Derapur,LGD,156,District,844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -LGD,2084,Block,Dergaon,LGD,288,District,2084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -LGD,4052,Block,Desaiganj (Vadasa),LGD,475,District,4052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,6569,Block,Desali Circle,LGD,235,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false -LGD,6035,Block,Desar,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,2489,Block,Deshopran,LGD,317,District,2489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,1281,Block,Desri,LGD,224,District,1281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,603,Block,Desuri,LGD,111,District,603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -LGD,3778,Block,Detroj-Rampura,LGD,438,District,3778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,5460,Block,Devadurga,LGD,546,District,5460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -LGD,5831,Block,Devakottai,LGD,585,District,5831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,6424,Block,Devalthal,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,5603,Block,Devanahalli,LGD,526,District,5603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -LGD,5276,Block,Devanakonda,LGD,511,District,5276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,7071,Block,Devara Hipparagi,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,4573,Block,Devarakadra,LGD,512,District,4573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,4653,Block,Devarakonda,LGD,514,District,4653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4957,Block,Devarapalle,LGD,505,District,4957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,4859,Block,Devarapalli,LGD,744,District,4859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4701,Block,Devaruppula,LGD,689,District,4701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,3338,Block,Devbhog,LGD,645,District,3338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -LGD,3437,Block,Devendranagar,LGD,420,District,3437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,4275,Block,Devgad,LGD,495,District,4275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -LGD,3895,Block,Devgadbaria,LGD,445,District,3895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,5664,Block,Devikulam,LGD,556,District,5664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -LGD,4885,Block,Devipatnam,LGD,791,District,4885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2549,Block,Devipur,LGD,324,District,2549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,7298,Block,Devkar,LGD,650,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,294,Block,Devprayag,LGD,55,District,294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,60,Block,Devsar,LGD,622,District,60,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -LGD,6347,Block,Dewal,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,3526,Block,Dewas,LGD,402,District,3526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,7031,Block,Dewas Nagar,LGD,402,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,1039,Block,Dhaka,LGD,213,District,1039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,2053,Block,Dhakuakhana (Pt-I),LGD,295,District,2053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -LGD,2611,Block,Dhalbhumgarh,LGD,327,District,2611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,7175,Block,Dhalwan,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,4014,Block,Dhamangaon Railway,LGD,468,District,4014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,1132,Block,Dhamdaha,LGD,214,District,1132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,3316,Block,Dhamdha,LGD,378,District,3316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -LGD,6964,Block,Dhami,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,2913,Block,Dhamnagar,LGD,348,District,2913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -LGD,715,Block,Dhampur,LGD,132,District,715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -LGD,3346,Block,Dhamtari,LGD,377,District,3346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -LGD,7577,Block,Dhamwari,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,1409,Block,Dhanarua,LGD,212,District,1409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,6912,Block,Dhanau,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,298,Block,Dhanaulti,LGD,55,District,298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,729,Block,Dhanaura,LGD,154,District,729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -LGD,2584,Block,Dhanbad-Cum-Kenduadih-Cum-Jagata,LGD,325,District,2584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,3787,Block,Dhandhuka,LGD,438,District,3787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,6448,Block,Dhand St,LGD,66,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -LGD,3734,Block,Dhanera,LGD,441,District,3734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,2343,Block,Dhaniakhali,LGD,312,District,2343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,3662,Block,Dhanora,LGD,428,District,3662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,7320,Block,Dhanora,LGD,643,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -LGD,4056,Block,Dhanora,LGD,475,District,4056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,3896,Block,Dhanpur,LGD,445,District,3896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,1798,Block,Dhansiripar,LGD,758,District,1798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,3770,Block,Dhansura,LGD,672,District,3770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -LGD,4572,Block,Dhanwada,LGD,721,District,4572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,2535,Block,Dhanwar,LGD,329,District,2535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,3534,Block,Dhar,LGD,403,District,3534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,3079,Block,Dharakote,LGD,354,District,3079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,3168,Block,Dharamgarh,LGD,358,District,3168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,3263,Block,Dharamjaigarh,LGD,386,District,3263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,5996,Block,Dharamkot,LGD,38,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -LGD,3928,Block,Dharampur,LGD,462,District,3928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,3539,Block,Dharampuri,LGD,403,District,3539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,3968,Block,Dharangaon,LGD,478,District,3968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,5902,Block,Dharapuram,LGD,634,District,5902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,4240,Block,Dharashiv,LGD,488,District,4240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -LGD,5931,Block,Dharbandora,LGD,793,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -LGD,316,Block,Dharchula,LGD,53,District,316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,1359,Block,Dharhara,LGD,207,District,1359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,341,Block,Dhari,LGD,51,District,341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,3845,Block,Dhari,LGD,439,District,3845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,696,Block,Dhariawad,LGD,629,District,696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -LGD,200,Block,Dhar Kalan,LGD,662,District,200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -LGD,4104,Block,Dharmabad,LGD,485,District,4104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,6691,Block,Dharmanagar,LGD,270,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -LGD,4397,Block,Dharmapuri,LGD,681,District,4397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,5888,Block,Dharmapuri,LGD,571,District,5888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -LGD,4411,Block,Dharmaram,LGD,682,District,4411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,4677,Block,Dharmasagar,LGD,686,District,4677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,2979,Block,Dharmasala,LGD,356,District,2979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,5336,Block,Dharmavaram,LGD,754,District,5336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,127,Block,Dharmpur,LGD,22,District,127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,99,Block,Dharmsala,LGD,18,District,99,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,4001,Block,Dharni,LGD,468,District,4001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,7544,Block,Dharnidhar,LGD,789,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,4591,Block,Dharoor,LGD,695,District,4591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,4378,Block,Dharpally,LGD,516,District,4378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,7292,Block,Dharsiwa,LGD,387,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -LGD,6463,Block,Dharuhera St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -LGD,4223,Block,Dharur,LGD,470,District,4223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,4531,Block,Dharur,LGD,698,District,4531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,5473,Block,Dharwad,LGD,536,District,5473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -LGD,6944,Block,Dharwala,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,145,Block,Dhatwal,LGD,17,District,145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,6414,Block,Dhauj St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -LGD,6032,Block,Dhaulana,LGD,661,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false -LGD,6338,Block,Dhaulchhina,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,6365,Block,Dhauntari,LGD,57,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,802,Block,Dhaurahara,LGD,159,District,802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -LGD,2041,Block,Dhekiajuli (Pt),LGD,301,District,2041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -LGD,2055,Block,Dhemaji,LGD,284,District,2055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -LGD,2999,Block,Dhenkanal Sadar,LGD,352,District,2999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -LGD,3626,Block,Dhimarkheda,LGD,413,District,3626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,2034,Block,Dhing,LGD,297,District,2034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -LGD,109,Block,Dhira,LGD,18,District,109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,5304,Block,D.Hirehal,LGD,502,District,5304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,6387,Block,Dhod,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,6167,Block,Dholera,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,1211,Block,Dholi (Moraul),LGD,208,District,1211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,3783,Block,Dholka,LGD,438,District,3783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,518,Block,Dholpur,LGD,98,District,518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -LGD,5289,Block,Dhone,LGD,755,District,5289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7189,Block,Dhoolmitta,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,309,Block,Dhoomakot,LGD,52,District,309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,3810,Block,Dhoraji,LGD,457,District,3810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,6050,Block,Dhorimanna,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,61,Block,D H Pora,LGD,622,District,61,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -LGD,3789,Block,Dhrangadhra,LGD,460,District,3789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,3816,Block,Dhrol,LGD,447,District,3816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -LGD,6014,Block,Dhubri,LGD,285,District,2008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -LGD,7402,Block,Dhulcot,LGD,397,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -LGD,3959,Block,Dhule,LGD,474,District,3959,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -LGD,2176,Block,Dhupguri,LGD,314,District,2176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,1348,Block,Dhuraiya,LGD,190,District,1348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,270,Block,Dhuri,LGD,43,District,270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -LGD,2504,Block,Dhurki,LGD,328,District,2504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,6342,Block,Dhyari,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,2426,Block,Diamond Harbour - I,LGD,304,District,2426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2427,Block,Diamond Harbour - II,LGD,304,District,2427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2064,Block,Dibrugarh East,LGD,286,District,2064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -LGD,2063,Block,Dibrugarh West,LGD,286,District,2063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -LGD,4377,Block,Dichpally,LGD,516,District,4377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,7449,Block,Didarganj,LGD,212,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,317,Block,Didihat,LGD,53,District,317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,558,Block,Didwana,LGD,768,District,558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3096,Block,Digapahandi,LGD,354,District,3096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,1122,Block,Dighalbank,LGD,203,District,1122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -LGD,7394,Block,Dighora,LGD,434,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,1266,Block,Dighwara,LGD,218,District,1266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,5919,Block,Diglipur,LGD,632,District,5919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -LGD,666,Block,Digod,LGD,109,District,666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -LGD,4084,Block,Digras,LGD,500,District,4084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,4343,Block,Dilawarpur,LGD,680,District,4343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,1796,Block,Dimapur Sadar,LGD,244,District,1796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false -LGD,2070,Block,Dimow,LGD,300,District,2070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -LGD,6860,Block,Dinanagar,LGD,32,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -LGD,1399,Block,Dinapur-Cum-Khagaul,LGD,212,District,1399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,1458,Block,Dinara,LGD,215,District,1458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,5980,Block,Dindiguleast,LGD,572,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,5979,Block,Dindigulwest,LGD,572,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,4149,Block,Dindori,LGD,487,District,4149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,3640,Block,Dindori,LGD,404,District,3640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -LGD,6726,Block,Dinga Amb,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,2187,Block,Dinhata - I,LGD,308,District,2187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,2188,Block,Dinhata - II,LGD,308,District,2188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,2089,Block,Diphu,LGD,292,District,2089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -LGD,7293,Block,Dipka,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,1566,Block,Dirang Adc,LGD,242,District,1566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,6852,Block,Dirba,LGD,43,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -LGD,7231,Block,Diskit,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -LGD,2129,Block,Dispur,LGD,618,District,2129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -LGD,6099,Block,Dissing Passo Circle,LGD,723,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false -LGD,3947,Block,Diu,LGD,464,District,3947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false -LGD,1682,Block,Diyun Eac,LGD,229,District,1682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,1504,Block,Dobhi,LGD,196,District,1504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,2039,Block,Doboka,LGD,709,District,2039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -LGD,62,Block,Doda,LGD,4,District,62,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,4282,Block,Dodamarg,LGD,495,District,4282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -LGD,5602,Block,Doddaballapura,LGD,526,District,5602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -LGD,193,Block,Dodra Kwar,LGD,23,District,193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,3893,Block,Dohad,LGD,445,District,3893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,1598,Block,Doimukh Sdo,LGD,237,District,1598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,6335,Block,Doiwala,LGD,49,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -LGD,3615,Block,Dolariya,LGD,409,District,3615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,1701,Block,Dollungmukh Circle,LGD,718,District,1701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false -LGD,6200,Block,Dolvan,LGD,641,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -LGD,4537,Block,Doma,LGD,698,District,4537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,4392,Block,Domakonda,LGD,685,District,4392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,936,Block,Domariyaganj,LGD,182,District,936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -LGD,2528,Block,Domchanch,LGD,334,District,2528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -LGD,2402,Block,Domjur,LGD,313,District,2402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,2235,Block,Domkal,LGD,319,District,2235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,7501,Block,Dompada,LGD,350,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,5102,Block,Donakonda,LGD,517,District,5102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,3307,Block,Dongargaon,LGD,388,District,3307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -LGD,3304,Block,Dongargarh,LGD,388,District,3304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -LGD,6824,Block,Dongiwacha,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,7525,Block,Dongli,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,2088,Block,Donka,LGD,710,District,2088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false -LGD,7530,Block,Donkeshwar,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,2060,Block,Doom Dooma,LGD,302,District,2060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -LGD,6910,Block,Dooni,LGD,116,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,58,Block,Dooru,LGD,1,District,58,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,7422,Block,Doraha,LGD,427,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,5196,Block,Doravarisatram,LGD,752,District,5196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4722,Block,Dornakal,LGD,688,District,4722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,5100,Block,Dornala,LGD,790,District,5100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7355,Block,Dornapal,LGD,642,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -LGD,5299,Block,Dornipadu,LGD,755,District,5299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2003,Block,Dotma,LGD,294,District,2003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -LGD,4552,Block,Doulathabad,LGD,698,District,4552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,4465,Block,Doultabad,LGD,692,District,4465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,7137,Block,Dovda,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,6769,Block,Drabshala,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,6786,Block,Dragmulla,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,3544,Block,Dr. Ambedkar Nagar Mhow,LGD,410,District,3544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,6191,Block,Drass,LGD,6,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -LGD,4458,Block,Dubbak,LGD,692,District,4458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,2266,Block,Dubrajpur,LGD,307,District,2266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,7419,Block,Dudhamania,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -LGD,6849,Block,Dudhan Sadhan,LGD,41,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -LGD,1006,Block,Dudhi,LGD,184,District,1006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -LGD,2016,Block,Dudhnai,LGD,287,District,2016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -LGD,6027,Block,Dudu,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,6550,Block,Dudunghar Circle,LGD,238,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,7540,Block,Dudyal,LGD,698,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,5076,Block,Duggirala,LGD,506,District,5076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,4693,Block,Duggondi,LGD,522,District,4693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,6331,Block,Dugnakuri,LGD,46,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -LGD,6891,Block,Dulahar,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,3260,Block,Duldula,LGD,380,District,3260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,1406,Block,Dulhin Bazar,LGD,212,District,1406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,2663,Block,Dulmi,LGD,607,District,2663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -LGD,1502,Block,Dumaria,LGD,196,District,1502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,2610,Block,Dumaria,LGD,327,District,2610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,4843,Block,Dumbriguda,LGD,745,District,4843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2673,Block,Dumka,LGD,326,District,2673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,4729,Block,Dummugudem,LGD,690,District,4729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,1617,Block,Dumporijo Adc,LGD,241,District,1617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,1074,Block,Dumra,LGD,221,District,1074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,1440,Block,Dumraon,LGD,194,District,1440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,2543,Block,Dumri,LGD,329,District,2543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,2714,Block,Dumri,LGD,331,District,2714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,1061,Block,Dumri Katsari,LGD,220,District,1061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -LGD,281,Block,Dunda,LGD,57,District,281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,646,Block,Dungarpur,LGD,99,District,646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,661,Block,Dungla,LGD,95,District,661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,7158,Block,Durbuk,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -LGD,3317,Block,Durg,LGD,378,District,3317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -LGD,2274,Block,Durgapur Faridpur,LGD,704,District,2274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -LGD,1450,Block,Durgawati,LGD,200,District,1450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,5042,Block,Durgi,LGD,751,District,5042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3350,Block,Durgkondal,LGD,381,District,3350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,5162,Block,Duttalur,LGD,515,District,5162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5203,Block,Duvvur,LGD,504,District,5203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,329,Block,Dwarahat,LGD,45,District,329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,4955,Block,Dwarakatirumala,LGD,748,District,4955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7592,Block,Dwarka,LGD,84,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -LGD,6402,Block,Dzongu,LGD,226,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false -LGD,1911,Block,East Lungdar,LGD,268,District,1911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false -LGD,5738,Block,Edappadi,LGD,584,District,5738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,5071,Block,Edlapadu,LGD,751,District,5071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6201,Block,Egarkund,LGD,325,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,7164,Block,Egmore,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,2491,Block,Egra - I,LGD,317,District,2491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2492,Block,Egra - II,LGD,317,District,2492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,6803,Block,Eidgah,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -LGD,1391,Block,Ekangarsarai,LGD,209,District,1391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,1254,Block,Ekma,LGD,218,District,1254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,4410,Block,Eligaid,LGD,682,District,4410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,4449,Block,Elkathurthy,LGD,686,District,4449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,6234,Block,Ellandakunta,LGD,508,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,392,Block,Ellenabad,LGD,74,District,392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -LGD,4966,Block,Eluru Rural,LGD,748,District,4966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7428,Block,Eluru Urban,LGD,748,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7539,Block,Endapalli,LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,1790,Block,Englan,LGD,250,District,1790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,2218,Block,English Bazar,LGD,316,District,2218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,4753,Block,Enkoor,LGD,509,District,4753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,6633,Block,Eral,LGD,594,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,3967,Block,Erandol,LGD,478,District,3967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,2705,Block,Erki(Tamar Ii),LGD,606,District,2705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false -LGD,5641,Block,Ernad,LGD,562,District,5641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -LGD,5753,Block,Erode,LGD,573,District,5753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,2938,Block,Ersama,LGD,355,District,2938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -LGD,1008,Block,Etah,LGD,138,District,1008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -LGD,1719,Block,Etalin,LGD,230,District,1719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false -LGD,4060,Block,Etapalli,LGD,475,District,4060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,838,Block,Etawah,LGD,139,District,838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -LGD,4806,Block,Etcherla,LGD,519,District,4806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,765,Block,Etmadpur,LGD,118,District,765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -LGD,5863,Block,Ettayapuram,LGD,594,District,5863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,4685,Block,Eturunagaram,LGD,720,District,4685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,7558,Block,Fagvel,LGD,450,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,905,Block,Faizabad,LGD,140,District,905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -LGD,2175,Block,Falakata,LGD,664,District,2175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -LGD,1142,Block,Falka,LGD,201,District,1142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,2425,Block,Falta,LGD,304,District,2425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2223,Block,Farakka,LGD,319,District,2223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,425,Block,Faridabad,LGD,60,District,425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -LGD,242,Block,Faridkot,LGD,29,District,242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -LGD,789,Block,Faridpur,LGD,130,District,789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -LGD,4559,Block,Farooqnagar,LGD,518,District,4559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,832,Block,Farrukhabad,LGD,141,District,832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -LGD,418,Block,Farrukhnagar,LGD,62,District,418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,3261,Block,Farsabahar,LGD,380,District,3261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,769,Block,Fatehabad,LGD,118,District,769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -LGD,388,Block,Fatehabad,LGD,61,District,388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -LGD,576,Block,Fatehgarh,LGD,103,District,576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -LGD,7191,Block,Fatehgarh Churian,LGD,32,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -LGD,221,Block,Fatehgarh Sahib,LGD,30,District,221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -LGD,95,Block,Fatehpur,LGD,18,District,95,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,878,Block,Fatehpur,LGD,142,District,878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -LGD,2680,Block,Fatehpur,LGD,333,District,2680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false -LGD,551,Block,Fatehpur,LGD,114,District,551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,1508,Block,Fatehpur,LGD,196,District,1508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,896,Block,Fatehpur,LGD,129,District,896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -LGD,369,Block,Fatehpur Pundri,LGD,66,District,369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -LGD,3890,Block,Fatepura,LGD,445,District,3890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,1411,Block,Fatwah,LGD,212,District,1411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,237,Block,Fazilka,LGD,651,District,237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -LGD,423,Block,Ferozepur Jhirka,LGD,604,District,423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -LGD,5922,Block,Ferrargunj,LGD,602,District,5922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -LGD,7343,Block,Fingeshwar,LGD,645,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -LGD,772,Block,Firozabad,LGD,143,District,772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -LGD,235,Block,Firozpur,LGD,31,District,235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -LGD,1113,Block,Forbesganj,LGD,188,District,1113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,6780,Block,Frisal,LGD,622,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -LGD,753,Block,Gabhana,LGD,119,District,753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -LGD,5470,Block,Gadag,LGD,537,District,5470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -LGD,350,Block,Gadarpur,LGD,56,District,350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,3635,Block,Gadarwara,LGD,418,District,3635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -LGD,4057,Block,Gadchiroli,LGD,475,District,4057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,5006,Block,Gaddamanugu Konduru,LGD,749,District,5006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3852,Block,Gadhada,LGD,676,District,3852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -LGD,4293,Block,Gadhinglaj,LGD,480,District,4293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,6225,Block,Gadiguda,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,7273,Block,Gadiras,LGD,642,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -LGD,5281,Block,Gadivemula,LGD,755,District,5281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6906,Block,Gadraroad,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,4603,Block,Gadwal,LGD,695,District,4603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,4288,Block,Gaganbawada,LGD,480,District,4288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,6893,Block,Gagret,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,1209,Block,Gaighat,LGD,208,District,1209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,2318,Block,Gaighata,LGD,303,District,2318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,3591,Block,Gairatganj,LGD,421,District,3591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,289,Block,Gairsain,LGD,47,District,289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,2759,Block,Gaisilet,LGD,347,District,2759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,6372,Block,Gaja,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,4825,Block,Gajapathinagaram,LGD,521,District,4825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,7082,Block,Gajendragad,LGD,537,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -LGD,7376,Block,Gajsinghpur,LGD,100,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,4869,Block,Gajuwaka,LGD,520,District,4869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,4483,Block,Gajwel,LGD,692,District,4483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,5235,Block,Galiveedu,LGD,753,District,5235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6060,Block,Galiyakot,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,142,Block,Galore,LGD,17,District,142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,2287,Block,Galsi - I,LGD,306,District,2287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2288,Block,Galsi - II,LGD,306,District,2288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,6025,Block,Galteshwar,LGD,450,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,1968,Block,Gambegre,LGD,278,District,1968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -LGD,4433,Block,Gambhiraopet,LGD,683,District,4433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,1158,Block,Gamharia,LGD,205,District,1158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,4996,Block,Gampalagudem,LGD,749,District,4996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7138,Block,Gamri Ahara,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,6336,Block,Ganai Gangoli,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,4974,Block,Ganapavaram,LGD,523,District,4974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,379,Block,Ganaur,LGD,75,District,379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -LGD,7264,Block,Gandai,LGD,759,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,5820,Block,Gandarvakkottai,LGD,582,District,5820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,4538,Block,Gandeed,LGD,512,District,4538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,4904,Block,Gandepalli,LGD,746,District,4904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,47,Block,Ganderbal,LGD,626,District,47,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -LGD,3924,Block,Gandevi,LGD,453,District,3924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -LGD,2538,Block,Gandey,LGD,329,District,2538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,4382,Block,Gandhari,LGD,685,District,4382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,3731,Block,Gandhidham,LGD,449,District,3731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,3775,Block,Gandhinagar,LGD,446,District,3775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -LGD,439,Block,Gandhi Nagar,LGD,78,District,439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false -LGD,3535,Block,Gandhwani,LGD,403,District,3535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,2991,Block,Gandia,LGD,352,District,2991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -LGD,6316,Block,Gandimaisamma Dundigal,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,6320,Block,Gandipet,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,5342,Block,Gandlapenta,LGD,754,District,5342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4422,Block,Gangadhara,LGD,508,District,4422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,5420,Block,Gangadhara Nellore,LGD,503,District,5420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,6610,Block,Gangadtalai,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,2358,Block,Gangajalghati,LGD,305,District,2358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,4122,Block,Gangakhed,LGD,489,District,4122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,7263,Block,Gangaloor,LGD,636,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -LGD,458,Block,Ganganagar,LGD,100,District,458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,526,Block,Gangapur,LGD,113,District,526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,4140,Block,Gangapur,LGD,469,District,4140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,6253,Block,Gangaram,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,2201,Block,Gangarampur,LGD,310,District,2201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -LGD,6921,Block,Gangath,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,5744,Block,Gangavalli,LGD,584,District,5744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,4894,Block,Gangavaram,LGD,791,District,4894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5417,Block,Gangavaram,LGD,503,District,5417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5466,Block,Gangawati,LGD,543,District,5466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -LGD,684,Block,Gangdhar,LGD,105,District,684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,319,Block,Gangolihat,LGD,53,District,319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,656,Block,Gangrar,LGD,95,District,656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,1710,Block,Gangte Circle,LGD,677,District,1710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false -LGD,1553,Block,Gangtok,LGD,225,District,1553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -LGD,4797,Block,Ganguvarisigadam,LGD,519,District,4797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,3022,Block,Gania,LGD,367,District,3022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -LGD,3086,Block,Ganjam,LGD,354,District,3086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,5012,Block,Gannavaram,LGD,510,District,5012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,6232,Block,Ganneruvaram,LGD,508,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,6611,Block,Ganora,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,4830,Block,Gantyada,LGD,521,District,4830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,4801,Block,Gara,LGD,519,District,4801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,7499,Block,Garadpur,LGD,360,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,857,Block,Garautha,LGD,153,District,857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -LGD,3894,Block,Garbada,LGD,445,District,3894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,2444,Block,Garbeta - I,LGD,318,District,2444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,2443,Block,Garbeta - II,LGD,318,District,2443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,2445,Block,Garbeta - III,LGD,318,District,2445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,3450,Block,Garhakota,LGD,425,District,3450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,1431,Block,Garhani,LGD,193,District,1431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,6392,Block,Garhbor,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,651,Block,Garhi,LGD,88,District,651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,741,Block,Garhmukteshwar,LGD,661,District,741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false -LGD,1306,Block,Garhpura,LGD,191,District,1306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,217,Block,Garhshankar,LGD,33,District,217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -LGD,2509,Block,Garhwa,LGD,328,District,2509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,3857,Block,Gariadhar,LGD,443,District,3857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,4666,Block,Garidepally,LGD,696,District,4666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,4826,Block,Garividi,LGD,521,District,4826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,3335,Block,Gariyaband,LGD,645,District,3335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -LGD,1265,Block,Garkha,LGD,218,District,1265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,4743,Block,Garla,LGD,688,District,4743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,5324,Block,Garladinne,LGD,502,District,5324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,3494,Block,Garoth,LGD,416,District,3494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,2638,Block,Garu,LGD,335,District,2638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,324,Block,Garud,LGD,46,District,324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -LGD,6029,Block,Garudeshwar,LGD,452,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -LGD,4811,Block,Garugubilli,LGD,743,District,4811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1976,Block,Gasuapara,LGD,277,District,1976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -LGD,7526,Block,Gattuppal,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,1015,Block,Gaunaha,LGD,211,District,1015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,6416,Block,Gaunchi St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -LGD,5595,Block,Gauribidanur,LGD,630,District,5595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -LGD,913,Block,Gauriganj,LGD,640,District,913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -LGD,3424,Block,Gaurihar,LGD,398,District,3424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,7115,Block,Gauripur,LGD,285,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -LGD,743,Block,Gautam Buddha Nagar,LGD,144,District,743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -LGD,2532,Block,Gawan,LGD,329,District,2532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,1495,Block,Gaya Town C.D.Block,LGD,196,District,1495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,2214,Block,Gazole,LGD,316,District,2214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,4707,Block,Geesugonda,LGD,522,District,4707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,1665,Block,Geku Eac,LGD,240,District,1665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,1661,Block,Gelling Circle,LGD,240,District,1661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,1638,Block,Gensi Eac,LGD,719,District,1638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false -LGD,4218,Block,Georai,LGD,470,District,4218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,6559,Block,Gepen Circle,LGD,718,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false -LGD,6343,Block,Ghaat,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,2707,Block,Ghaghra,LGD,331,District,2707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,6721,Block,Ghagwal,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -LGD,1160,Block,Ghailarh,LGD,205,District,1160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,6888,Block,Ghanari,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,943,Block,Ghanghata,LGD,178,District,943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -LGD,4585,Block,Ghanpur,LGD,693,District,4585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,4683,Block,Ghanpur (Mulug),LGD,687,District,4683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,4676,Block,Ghanpur (Station),LGD,689,District,4676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,293,Block,Ghansali,LGD,55,District,293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,3661,Block,Ghansaur,LGD,428,District,3661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,4130,Block,Ghansawangi,LGD,479,District,4130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -LGD,1194,Block,Ghanshyampur,LGD,195,District,1194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,5033,Block,Ghantasala,LGD,510,District,5033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,7221,Block,Ghantiyali,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,374,Block,Gharaunda,LGD,67,District,374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -LGD,3265,Block,Gharghoda,LGD,386,District,3265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,463,Block,Gharsana,LGD,100,District,463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,7377,Block,Ghasa,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,2853,Block,Ghasipura,LGD,361,District,2853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,2448,Block,Ghatal,LGD,318,District,2448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,850,Block,Ghatampur,LGD,157,District,850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -LGD,4089,Block,Ghatanji,LGD,500,District,4089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,2850,Block,Ghatgaon,LGD,361,District,2850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,1776,Block,Ghathashi,LGD,251,District,1776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,7026,Block,Ghatigaon,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,3511,Block,Ghatiya,LGD,435,District,3511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,4523,Block,Ghatkesar,LGD,700,District,4523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,1375,Block,Ghat Kusumbha,LGD,219,District,1375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false -LGD,6513,Block,Ghatlodiya,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,650,Block,Ghatol,LGD,88,District,650,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,2607,Block,Ghatshila,LGD,327,District,2607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,4605,Block,Ghattu,LGD,695,District,4605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,739,Block,Ghaziabad,LGD,145,District,739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -LGD,989,Block,Ghazipur,LGD,146,District,989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -LGD,6873,Block,Ghiror,LGD,166,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -LGD,3602,Block,Ghoda Dongri,LGD,394,District,3602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,3855,Block,Ghogha,LGD,443,District,3855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,3887,Block,Ghoghamba,LGD,454,District,3887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -LGD,1098,Block,Ghoghardiha,LGD,206,District,1098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,2138,Block,Ghograpar (Pt),LGD,298,District,2138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -LGD,1038,Block,Ghorasahan,LGD,213,District,1038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1004,Block,Ghorawal,LGD,184,District,1004,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -LGD,1539,Block,Ghoshi,LGD,199,District,1539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -LGD,971,Block,Ghosi,LGD,168,District,971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -LGD,1419,Block,Ghoswari,LGD,212,District,1419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,3644,Block,Ghughari,LGD,415,District,3644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -LGD,152,Block,Ghumarwin,LGD,15,District,152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -LGD,7352,Block,Ghumka,LGD,388,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -LGD,7490,Block,Ghumusar,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,3432,Block,Ghuwara,LGD,398,District,3432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,1613,Block,Giba Circle,LGD,241,District,1613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,6907,Block,Gida,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3370,Block,Gidam,LGD,376,District,3370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -LGD,5133,Block,Giddalur,LGD,790,District,5133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,240,Block,Gidderbaha,LGD,39,District,240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -LGD,1531,Block,Gidhaur,LGD,198,District,1531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,2522,Block,Gidhaur,LGD,323,District,2522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,5728,Block,Gingee,LGD,596,District,5728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,3399,Block,Gird,LGD,407,District,3399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,6199,Block,Gir Gadhda,LGD,675,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -LGD,1396,Block,Giriak,LGD,209,District,1396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,2539,Block,Giridih,LGD,329,District,2539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,689,Block,Girwa,LGD,117,District,689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,6551,Block,Gite Ripa Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,4848,Block,G.Madugula,LGD,745,District,4848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2193,Block,Goalpokher - I,LGD,311,District,2193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,2194,Block,Goalpokher - II,LGD,311,District,2194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,5751,Block,Gobichettipalayam,LGD,573,District,5751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,2583,Block,Gobindpur,LGD,325,District,2583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,1518,Block,Gobindpur,LGD,210,District,1518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,2754,Block,Gobindpur(Rajnagar),LGD,341,District,2754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,7259,Block,Gobra Nawapara,LGD,387,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -LGD,2561,Block,Godda,LGD,330,District,2561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,7546,Block,Godhar,LGD,669,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -LGD,7598,Block,Godharacity,LGD,454,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -LGD,3885,Block,Godhra,LGD,454,District,3885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -LGD,2058,Block,Gogamukh,LGD,284,District,2058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -LGD,3551,Block,Gogaon,LGD,414,District,3551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,2338,Block,Goghat - I,LGD,312,District,2338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,2339,Block,Goghat - II,LGD,312,District,2339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,1327,Block,Gogri,LGD,202,District,1327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -LGD,686,Block,Gogunda,LGD,117,District,686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,1478,Block,Goh,LGD,189,District,1478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,3395,Block,Gohad,LGD,395,District,3395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,378,Block,Gohana,LGD,75,District,378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -LGD,3593,Block,Goharganj,LGD,421,District,3593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,6979,Block,Gohparu,LGD,429,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -LGD,2047,Block,Gohpur,LGD,705,District,2047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -LGD,1738,Block,Goiliang Circle,LGD,628,District,1738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -LGD,2733,Block,Goilkera,LGD,343,District,2733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,5436,Block,Gokak,LGD,527,District,5436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,7584,Block,Gokalpur,LGD,81,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false -LGD,4897,Block,Gokavaram,LGD,505,District,4897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,954,Block,Gola,LGD,148,District,954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -LGD,2665,Block,Gola,LGD,607,District,2665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -LGD,2085,Block,Golaghat,LGD,288,District,2085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -LGD,799,Block,Gola Gokaran Nath,LGD,159,District,799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -LGD,6015,Block,Golakganj Pt,LGD,285,District,2007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -LGD,3167,Block,Golamunda,LGD,358,District,3167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,4507,Block,Golconda,LGD,507,District,4507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,4412,Block,Gollapalli,LGD,681,District,4412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,4902,Block,Gollaprolu,LGD,746,District,4902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2606,Block,Golmuri-Cum-Jugsalai,LGD,327,District,2606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,4853,Block,Golugonda,LGD,744,District,4853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2591,Block,Gomia,LGD,322,District,2591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,928,Block,Gonda,LGD,147,District,928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -LGD,3807,Block,Gondal,LGD,457,District,3807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,7439,Block,Gondal City,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,6686,Block,Gonda Twisa,LGD,269,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -LGD,4046,Block,Gondiya,LGD,476,District,4046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -LGD,4078,Block,Gondpipri,LGD,473,District,4078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,5270,Block,Gonegandla,LGD,511,District,5270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,6763,Block,Gool,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -LGD,5310,Block,Gooty,LGD,502,District,5310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,3062,Block,Gop,LGD,369,District,3062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,7480,Block,Gopabandhunagar,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,3699,Block,Gopadbanas,LGD,433,District,3699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -LGD,6838,Block,Gopalapatnam,LGD,520,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,4951,Block,Gopalapuram,LGD,505,District,4951,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,1224,Block,Gopalganj,LGD,197,District,1224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,4596,Block,Gopalpeta,LGD,693,District,4596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,1334,Block,Gopalpur,LGD,192,District,1334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,5211,Block,Gopavaram,LGD,504,District,5211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,2457,Block,Gopiballavpur - I,LGD,703,District,2457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -LGD,2456,Block,Gopiballavpur - II,LGD,703,District,2456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -LGD,2669,Block,Gopikandar,LGD,326,District,2669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,1196,Block,Gora Bauram,LGD,195,District,1196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,1342,Block,Goradih,LGD,192,District,1342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,7011,Block,Gorakhpur,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,950,Block,Gorakhpur,LGD,148,District,950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -LGD,5362,Block,Gorantla,LGD,754,District,5362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1272,Block,Goraul,LGD,224,District,1272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,4045,Block,Goregaon,LGD,476,District,4045,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -LGD,2141,Block,Goreswar,LGD,756,District,2141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -LGD,1232,Block,Goriakothi,LGD,222,District,1232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,6471,Block,Goriwala St,LGD,74,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -LGD,3394,Block,Gormi,LGD,395,District,3394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,2121,Block,Goroimari,LGD,291,District,2121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,2158,Block,Gorubathan,LGD,702,District,2158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -LGD,2435,Block,Gosaba,LGD,304,District,2435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,5287,Block,Gospadu,LGD,755,District,5287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2001,Block,Gossaigaon,LGD,294,District,2001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -LGD,3634,Block,Gotegaon,LGD,418,District,3634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -LGD,6832,Block,Govardhan,LGD,167,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -LGD,4688,Block,Govindaraopet,LGD,720,District,4688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,6383,Block,Govindgarh,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,7554,Block,Govindguru Limdi,LGD,445,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,5918,Block,Great Nicobar,LGD,603,District,5918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false -LGD,5538,Block,Gubbi,LGD,548,District,5538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,5755,Block,Gudalur,LGD,587,District,5755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -LGD,3184,Block,Gudari,LGD,370,District,3184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,3114,Block,G.Udayagiri,LGD,359,District,3114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,4850,Block,Gudem Kotha Veedhi,LGD,745,District,4850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7144,Block,Gudhagorji,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,581,Block,Gudha Malani,LGD,775,District,581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5597,Block,Gudibanda,LGD,630,District,5597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -LGD,5352,Block,Gudibanda,LGD,754,District,5352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4310,Block,Gudihatnoor,LGD,501,District,4310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,5431,Block,Gudipala,LGD,503,District,5431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,7527,Block,Gudipally,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,5021,Block,Gudivada,LGD,510,District,5021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,5712,Block,Gudiyatham,LGD,595,District,5712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -LGD,5029,Block,Gudlavalleru,LGD,510,District,5029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,5151,Block,Gudluru,LGD,517,District,5151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,2729,Block,Gudri,LGD,343,District,2729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,5426,Block,Gudupalle,LGD,503,District,5426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,4711,Block,Gudur,LGD,688,District,4711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,5184,Block,Gudur,LGD,515,District,5184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5257,Block,Gudur,LGD,511,District,5257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5031,Block,Guduru,LGD,510,District,5031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,4270,Block,Guhagar,LGD,492,District,4270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,367,Block,Guhla,LGD,66,District,367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -LGD,7169,Block,Guindy,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,6700,Block,Gujiliamparai,LGD,572,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,3578,Block,Gulabganj,LGD,437,District,3578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,3520,Block,Gulana,LGD,430,District,3520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -LGD,7061,Block,Guledgudda,LGD,524,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,2712,Block,Gumla,LGD,331,District,2712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,7505,Block,Gumma,LGD,353,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -LGD,6277,Block,Gummadidala,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,5319,Block,Gummagatta,LGD,502,District,5319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,4808,Block,Gummalakshmipuram,LGD,743,District,4808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5693,Block,Gummidipoondi,LGD,589,District,5693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,6602,Block,Gumto Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,3677,Block,Guna,LGD,406,District,3677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -LGD,6609,Block,Guna Nagar,LGD,406,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -LGD,6806,Block,Gund,LGD,626,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -LGD,4618,Block,Gundala,LGD,697,District,4618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,4741,Block,Gundala,LGD,690,District,4741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,3319,Block,Gunderdehi,LGD,646,District,3319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -LGD,4651,Block,Gundlapally,LGD,514,District,4651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,5576,Block,Gundlupet,LGD,531,District,5576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -LGD,6749,Block,Gundna,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,7523,Block,Gundumal,LGD,721,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,778,Block,Gunnaur,LGD,659,District,778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -LGD,3438,Block,Gunnor,LGD,420,District,3438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,5309,Block,Guntakal,LGD,502,District,5309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,6833,Block,Guntur East,LGD,506,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,5074,Block,Guntur West,LGD,506,District,5074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,3183,Block,Gunupur,LGD,370,District,3183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,5044,Block,Gurajala,LGD,751,District,5044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1497,Block,Guraru,LGD,196,District,1497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,2612,Block,Gurbandha,LGD,327,District,2612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,202,Block,Gurdaspur,LGD,32,District,202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -LGD,40,Block,Gurez,LGD,623,District,40,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -LGD,417,Block,Gurgaon,LGD,62,District,417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,3481,Block,Gurh,LGD,424,District,3481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,4828,Block,Gurla,LGD,521,District,4828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,7094,Block,Gurmitakal,LGD,635,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -LGD,5370,Block,Gurramkonda,LGD,753,District,5370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4657,Block,Gurrampode,LGD,514,District,4657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,7562,Block,Gurthedu,LGD,791,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1498,Block,Gurua,LGD,196,District,1498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,6011,Block,Guruharsahai,LGD,31,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -LGD,2828,Block,Gurundia,LGD,373,District,2828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,3323,Block,Gurur,LGD,646,District,3323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -LGD,1241,Block,Guthani,LGD,222,District,1241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,2128,Block,Guwahati,LGD,618,District,2128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -LGD,7395,Block,Gwalior Gramin,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,1165,Block,Gwalpara,LGD,205,District,1165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,1549,Block,Gyalshing,LGD,228,District,1549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false -LGD,998,Block,Gyanpur,LGD,179,District,998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -LGD,3577,Block,Gyaraspur,LGD,437,District,3577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,1588,Block,Gyawe Purang Circle,LGD,231,District,1588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,2216,Block,Habibpur,LGD,316,District,2216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,2320,Block,Habra - I,LGD,303,District,2320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,2321,Block,Habra - II,LGD,303,District,2321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,7555,Block,Hadad,LGD,441,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,5496,Block,Hadagalli,LGD,738,District,5496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -LGD,7378,Block,Hadan,LGD,93,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,4098,Block,Hadgaon,LGD,485,District,4098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,2093,Block,Haflong,LGD,299,District,2093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -LGD,5497,Block,Hagaribommanahalli,LGD,738,District,5497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -LGD,901,Block,Haidergarh,LGD,129,District,901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -LGD,2616,Block,Haidernagar,LGD,338,District,2616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,2107,Block,Hailakandi,LGD,289,District,2107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -LGD,6811,Block,Hajin,LGD,623,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -LGD,6227,Block,Hajipur,LGD,684,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,1278,Block,Hajipur,LGD,224,District,1278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,2119,Block,Hajo,LGD,291,District,2119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,5273,Block,Halaharvi,LGD,511,District,5273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,2483,Block,Haldia,LGD,317,District,2483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2179,Block,Haldibari,LGD,308,District,2179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,342,Block,Haldwani,LGD,51,District,342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,5480,Block,Haliyal,LGD,550,District,5480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,3888,Block,Halol,LGD,454,District,3888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -LGD,1371,Block,Halsi,LGD,204,District,1371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -LGD,3788,Block,Halvad,LGD,673,District,3788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -LGD,6068,Block,Hameergarh,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,143,Block,Hamirpur,LGD,17,District,143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,864,Block,Hamirpur,LGD,149,District,864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -LGD,4695,Block,Hanamkonda,LGD,686,District,4695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,893,Block,Handia,LGD,120,District,893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -LGD,3609,Block,Handiya,LGD,408,District,3609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -LGD,2,Block,Handwara,LGD,8,District,2,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,5491,Block,Hangal,LGD,540,District,5491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -LGD,194,Block,Hangrang,LGD,19,District,194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -LGD,396,Block,Hansi,LGD,792,District,396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -LGD,2310,Block,Hanskhali,LGD,320,District,2310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,3919,Block,Hansot,LGD,442,District,3919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,3476,Block,Hanumana,LGD,766,District,3476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,468,Block,Hanumangarh,LGD,101,District,468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -LGD,1190,Block,Hanumannagar,LGD,195,District,1190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,5130,Block,Hanumanthuni Padu,LGD,790,District,5130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7077,Block,Hanur,LGD,531,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -LGD,4555,Block,Hanwada,LGD,512,District,4555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,6039,Block,Haochong,LGD,714,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false -LGD,740,Block,Hapur,LGD,661,District,740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false -LGD,3132,Block,Harabhanga,LGD,349,District,3132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -LGD,5510,Block,Harapanahalli,LGD,738,District,5510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -LGD,97,Block,Harchakian,LGD,18,District,97,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,3608,Block,Harda,LGD,408,District,3608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -LGD,7271,Block,Hardibazar,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,811,Block,Hardoi,LGD,150,District,811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -LGD,354,Block,Hardwar,LGD,50,District,354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -LGD,2851,Block,Harichandanpur,LGD,361,District,2851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,5509,Block,Harihar,LGD,535,District,5509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -LGD,2618,Block,Hariharganj,LGD,338,District,2618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,2242,Block,Hariharpara,LGD,319,District,2242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,3748,Block,Harij,LGD,455,District,3748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,2315,Block,Haringhata,LGD,320,District,2315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,2348,Block,Haripal,LGD,312,District,2348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,6920,Block,Haripur,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,6953,Block,Haripurdhar,LGD,24,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,2207,Block,Harirampur,LGD,310,District,2207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -LGD,2208,Block,Harischandrapur - I,LGD,316,District,2208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,2209,Block,Harischandrapur - II,LGD,316,District,2209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,2151,Block,Harisinga,LGD,617,District,2151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -LGD,1081,Block,Harlakhi,LGD,206,District,1081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,6800,Block,Harmain,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false -LGD,1380,Block,Harnaut,LGD,209,District,1380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,2331,Block,Haroa,LGD,303,District,2331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,7196,Block,Harohalli,LGD,631,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -LGD,151,Block,Haroli,LGD,26,District,151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,3649,Block,Harrai,LGD,399,District,3649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,938,Block,Harraiya,LGD,131,District,938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -LGD,6423,Block,Harsaru St,LGD,62,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,1043,Block,Harsidhi,LGD,213,District,1043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,7208,Block,Harsoli,LGD,770,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3714,Block,Harsud,LGD,405,District,3714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,5886,Block,Harur,LGD,571,District,5886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -LGD,1144,Block,Hasanganj,LGD,201,District,1144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,815,Block,Hasanganj,LGD,186,District,815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -LGD,4678,Block,Hasanparthy,LGD,686,District,4678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,1302,Block,Hasanpur,LGD,217,District,1302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,731,Block,Hasanpur,LGD,154,District,731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -LGD,1245,Block,Hasanpura,LGD,222,District,1245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,2336,Block,Hasnabad,LGD,303,District,2336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,7327,Block,Hasoud,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,1477,Block,Haspura,LGD,189,District,1477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,5556,Block,Hassan,LGD,539,District,5556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -LGD,6478,Block,Hassanpur St,LGD,619,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -LGD,956,Block,Hata,LGD,160,District,956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -LGD,7494,Block,Hatadihi,LGD,361,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,2738,Block,Hat Gamharia,LGD,343,District,2738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,428,Block,Hathin,LGD,619,District,428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -LGD,4489,Block,Hathnoora,LGD,691,District,4489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,759,Block,Hathras,LGD,163,District,759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -LGD,1221,Block,Hathua,LGD,197,District,1221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,4285,Block,Hatkanangle,LGD,480,District,4285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,3541,Block,Hatod,LGD,410,District,3541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,3530,Block,Hatpiplya,LGD,402,District,3530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,3454,Block,Hatta,LGD,400,District,3454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -LGD,4193,Block,Haveli,LGD,490,District,4193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,16,Block,Haveli,LGD,10,District,16,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -LGD,6270,Block,Havelighanapur,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,5492,Block,Haveri,LGD,540,District,5492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -LGD,1743,Block,Hawai Hq,LGD,628,District,1743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -LGD,1191,Block,Hayaghat,LGD,195,District,1191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,4525,Block,Hayathnagar,LGD,518,District,4525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,1736,Block,Hayuliang Adc,LGD,628,District,1736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -LGD,2653,Block,Hazaribag,LGD,332,District,2653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,7065,Block,Hebri,LGD,549,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -LGD,5573,Block,Heggadadevankote,LGD,545,District,5573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,2046,Block,Helem,LGD,705,District,2046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -LGD,2804,Block,Hemgir,LGD,373,District,2804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,2197,Block,Hemtabad,LGD,311,District,2197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,6502,Block,Henglep,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,2642,Block,Herhanj,LGD,335,District,2642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,2203,Block,Hilli,LGD,310,District,2203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -LGD,1390,Block,Hilsa,LGD,209,District,1390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,3766,Block,Himatnagar,LGD,458,District,3766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -LGD,4503,Block,Himayatnagar,LGD,507,District,4503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,4097,Block,Himayatnagar,LGD,485,District,4097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,522,Block,Hindaun,LGD,108,District,522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,2997,Block,Hindol,LGD,352,District,2997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -LGD,622,Block,Hindoli,LGD,94,District,622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -LGD,5364,Block,Hindupur,LGD,754,District,5364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2337,Block,Hingalganj,LGD,303,District,2337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,4021,Block,Hinganghat,LGD,498,District,4021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -LGD,4033,Block,Hingna,LGD,484,District,4033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,4112,Block,Hingoli,LGD,477,District,4112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -LGD,3090,Block,Hinjili,LGD,354,District,3090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,4783,Block,Hiramandalam,LGD,519,District,4783,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,31,Block,Hiranagar,LGD,7,District,31,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,2575,Block,Hiranpur,LGD,337,District,2575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -LGD,2374,Block,Hirbandh,LGD,305,District,2374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,5494,Block,Hirekerur,LGD,540,District,5494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -LGD,5508,Block,Hiriyur,LGD,533,District,5508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -LGD,394,Block,Hisar,LGD,63,District,394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -LGD,1520,Block,Hisua,LGD,210,District,1520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,1915,Block,Hnahthial,LGD,726,District,1915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -LGD,429,Block,Hodal,LGD,619,District,429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -LGD,2038,Block,Hojai,LGD,709,District,2038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -LGD,5272,Block,Holagunda,LGD,511,District,5272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5506,Block,Holalkere,LGD,533,District,5506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -LGD,5559,Block,Hole Narsipur,LGD,539,District,5559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -LGD,91,Block,Holi,LGD,16,District,91,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,5458,Block,Homnabad,LGD,529,District,5458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -LGD,5487,Block,Honavar,LGD,550,District,5487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,5513,Block,Honnali,LGD,535,District,5513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -LGD,5604,Block,Hosakote,LGD,526,District,5604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -LGD,5518,Block,Hosanagara,LGD,547,District,5518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -LGD,5498,Block,Hosapete,LGD,738,District,5498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -LGD,5631,Block,Hosdurg,LGD,558,District,5631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -LGD,5507,Block,Hosdurga,LGD,533,District,5507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -LGD,3614,Block,Hoshangabad,LGD,409,District,3614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,7045,Block,Hoshangabad Nagar,LGD,409,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,216,Block,Hoshiarpur,LGD,33,District,216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -LGD,5890,Block,Hosur,LGD,577,District,5890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -LGD,5475,Block,Hubballi,LGD,536,District,5475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -LGD,7079,Block,Hubballi Urban,LGD,536,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -LGD,5437,Block,Hukkeri,LGD,527,District,5437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,4846,Block,Hukumpeta,LGD,745,District,4846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1541,Block,Hulasganj,LGD,199,District,1541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -LGD,7086,Block,Hulsoor,LGD,529,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -LGD,7096,Block,Hunasagi,LGD,635,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -LGD,5448,Block,Hungund,LGD,524,District,5448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,6075,Block,Hunli Sdo,LGD,235,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false -LGD,5570,Block,Hunsur,LGD,545,District,5570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,1746,Block,Hunta,LGD,247,District,1746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,2386,Block,Hura,LGD,321,District,2386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,628,Block,Hurda,LGD,92,District,628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,4444,Block,Husnabad,LGD,692,District,4444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,2615,Block,Hussainabad,LGD,338,District,2615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,1238,Block,Hussainganj,LGD,222,District,1238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,3479,Block,Huzur,LGD,424,District,3479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,3581,Block,Huzur,LGD,396,District,3581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -LGD,4446,Block,Huzurabad,LGD,508,District,4446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,4669,Block,Huzurnagar,LGD,696,District,4669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,7041,Block,Huzur Nagar,LGD,424,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,4546,Block,Ibrahimpatnam,LGD,518,District,4546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,4393,Block,Ibrahimpatnam,LGD,681,District,4393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,5009,Block,Ibrahimpatnam,LGD,749,District,5009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2749,Block,Ichagarh,LGD,341,District,2749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,2647,Block,Ichak,LGD,332,District,2647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,4778,Block,Ichchapuram,LGD,519,District,4778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,3586,Block,Ichhawar,LGD,427,District,3586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,4322,Block,Ichoda,LGD,501,District,4322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,3763,Block,Idar,LGD,458,District,3763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -LGD,5942,Block,Idukki,LGD,556,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -LGD,4606,Block,Ieeja,LGD,695,District,4606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,4153,Block,Igatpuri,LGD,487,District,4153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,756,Block,Iglas,LGD,119,District,756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -LGD,924,Block,Ikauna,LGD,181,District,924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false -LGD,5834,Block,Ilayangudi,LGD,585,District,5834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,7062,Block,Ilkal,LGD,524,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,2265,Block,Illambazar,LGD,307,District,2265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,4436,Block,Illanthakunta,LGD,683,District,4436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,5818,Block,Iluppur,LGD,582,District,5818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,1501,Block,Imamganj,LGD,196,District,1501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,6249,Block,Inavole,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,6236,Block,Indalwai,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,4200,Block,Indapur,LGD,490,District,4200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,4311,Block,Inderavelly,LGD,501,District,4311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,3404,Block,Indergarh,LGD,401,District,3404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -LGD,5450,Block,Indi,LGD,530,District,5450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,94,Block,Indora,LGD,18,District,94,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,2360,Block,Indpur,LGD,305,District,2360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,624,Block,Indragarh,LGD,94,District,624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -LGD,371,Block,Indri,LGD,67,District,371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -LGD,7172,Block,Indri,LGD,604,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -LGD,5179,Block,Indukurpet,LGD,515,District,5179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,2366,Block,Indus,LGD,305,District,2366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,5110,Block,Inkollu,LGD,750,District,5110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7538,Block,Inugurthy,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,4931,Block,I. Polavaram,LGD,747,District,4931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5065,Block,Ipuru,LGD,751,District,5065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4979,Block,Iragavaram,LGD,523,District,4979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,5411,Block,Irala,LGD,503,District,5411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5937,Block,Iritty,LGD,557,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -LGD,3684,Block,Isagarh,LGD,391,District,3684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -LGD,1251,Block,Ishupur,LGD,218,District,1251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,1525,Block,Islamnagar Aliganj,LGD,198,District,1525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,1392,Block,Islampur,LGD,209,District,1392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,2192,Block,Islampur,LGD,311,District,2192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,6487,Block,Island,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,6453,Block,Ismailabad St,LGD,68,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -LGD,1337,Block,Ismailpur,LGD,192,District,1337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,6889,Block,Ispur,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,376,Block,Israna,LGD,71,District,376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -LGD,2199,Block,Itahar,LGD,311,District,2199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,6604,Block,Itanagar Eac,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,1444,Block,Itarhi,LGD,194,District,1444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,3613,Block,Itarsi,LGD,409,District,3613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,4607,Block,Itikyala,LGD,695,District,4607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,2520,Block,Itkhori,LGD,323,District,2520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,2696,Block,Itki,LGD,339,District,2696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,935,Block,Itwa,LGD,182,District,935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -LGD,3631,Block,Jabalpur,LGD,411,District,3631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,3459,Block,Jabera,LGD,400,District,3459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -LGD,4567,Block,Jadcherla,LGD,512,District,4567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,4126,Block,Jafrabad,LGD,479,District,4126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -LGD,3848,Block,Jafrabad,LGD,439,District,3848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,361,Block,Jagadhri,LGD,76,District,361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -LGD,5511,Block,Jagalur,LGD,535,District,5511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -LGD,3073,Block,Jagannath Prasad,LGD,354,District,3073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,2743,Block,Jagannathpur,LGD,343,District,2743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,7356,Block,Jagargunda,LGD,642,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -LGD,2401,Block,Jagatballavpur,LGD,313,District,2401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,2940,Block,Jagatsinghapur,LGD,355,District,2940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -LGD,3360,Block,Jagdalpur,LGD,374,District,3360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,4484,Block,Jagdevpur,LGD,692,District,4484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,1343,Block,Jagdishpur,LGD,192,District,1343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,1428,Block,Jagdishpur,LGD,193,District,1428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,4991,Block,Jaggaiahpeta,LGD,749,District,4991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4898,Block,Jaggampeta,LGD,746,District,4898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4414,Block,Jagitial,LGD,681,District,4414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,6211,Block,Jagitial Rural,LGD,681,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,230,Block,Jagraon,LGD,36,District,230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -LGD,636,Block,Jahazpur,LGD,92,District,636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,7413,Block,Jahu,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,3286,Block,Jaijaipur,LGD,762,District,3286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,2529,Block,Jainagar,LGD,334,District,2529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -LGD,1083,Block,Jainagar,LGD,206,District,1083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,4307,Block,Jainath,LGD,501,District,4307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,4320,Block,Jainoor,LGD,699,District,4320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,332,Block,Jainti,LGD,45,District,332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,4355,Block,Jaipur,LGD,684,District,4355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,2378,Block,Jaipur,LGD,321,District,2378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,546,Block,Jaipur,LGD,102,District,546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,6582,Block,Jairampur Adc,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,574,Block,Jaisalmer,LGD,103,District,574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -LGD,6984,Block,Jaisinagar,LGD,425,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,3690,Block,Jaisinghnagar,LGD,429,District,3690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -LGD,110,Block,Jaisinghpur,LGD,18,District,110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,916,Block,Jaisinghpur,LGD,185,District,916,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -LGD,597,Block,Jaitaran,LGD,774,District,597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3695,Block,Jaithari,LGD,390,District,3695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -LGD,3692,Block,Jaitpur,LGD,429,District,3692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -LGD,243,Block,Jaitu,LGD,29,District,243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -LGD,4623,Block,Jajireddygudem,LGD,696,District,4623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,2977,Block,Jajpur,LGD,356,District,2977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,6438,Block,Jakhal St,LGD,61,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -LGD,1848,Block,Jakhama,LGD,245,District,1848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -LGD,987,Block,Jakhania,LGD,146,District,987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -LGD,296,Block,Jakhani Dhar,LGD,55,District,296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,6373,Block,Jakhanikhal,LGD,52,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,292,Block,Jakholi*,LGD,54,District,292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -LGD,4366,Block,Jakranpally,LGD,516,District,4366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,5157,Block,Jaladanki,LGD,515,District,5157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,2140,Block,Jalah,LGD,616,District,2140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -LGD,236,Block,Jalalabad,LGD,651,District,236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -LGD,796,Block,Jalalabad,LGD,180,District,796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -LGD,1137,Block,Jalalgarh,LGD,214,District,1137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,6340,Block,Jalali,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,3923,Block,Jalalpore,LGD,453,District,3923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -LGD,1256,Block,Jalalpur,LGD,218,District,1256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,909,Block,Jalalpur,LGD,121,District,909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -LGD,212,Block,Jalandhar - I,LGD,34,District,212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -LGD,213,Block,Jalandhar - II,LGD,34,District,213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -LGD,2234,Block,Jalangi,LGD,319,District,2234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,852,Block,Jalaun,LGD,151,District,852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -LGD,2725,Block,Jaldega,LGD,342,District,2725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,1181,Block,Jale,LGD,195,District,1181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,1009,Block,Jalesar,LGD,138,District,1009,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -LGD,2890,Block,Jaleswar,LGD,346,District,2890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,3966,Block,Jalgaon,LGD,478,District,3966,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,3975,Block,Jalgaon (Jamod),LGD,472,District,3975,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,4229,Block,Jalkot,LGD,481,District,4229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,4127,Block,Jalna,LGD,479,District,4127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -LGD,6961,Block,Jalog,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,587,Block,Jalore,LGD,104,District,587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,2178,Block,Jalpaiguri,LGD,314,District,2178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,7379,Block,Jalsu,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,1852,Block,Jalukie,LGD,613,District,1852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -LGD,4792,Block,Jalumuru,LGD,519,District,4792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,2674,Block,Jama,LGD,326,District,2674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,3651,Block,Jamai (Junnardeo),LGD,399,District,3651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,1358,Block,Jamalpur,LGD,207,District,1358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,2295,Block,Jamalpur,LGD,306,District,2295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2792,Block,Jamankira,LGD,371,District,2792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,2455,Block,Jamboni,LGD,703,District,2455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -LGD,3889,Block,Jambughoda,LGD,454,District,3889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -LGD,3913,Block,Jambusar,LGD,442,District,3913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,2860,Block,Jamda,LGD,365,District,2860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,4835,Block,Jami,LGD,521,District,4835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,6563,Block,Jamiri Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,3821,Block,Jamjodhpur,LGD,447,District,3821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -LGD,3808,Block,Jamkandorna,LGD,457,District,3808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,5443,Block,Jamkhandi,LGD,524,District,5443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,4214,Block,Jamkhed,LGD,466,District,4214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,5215,Block,Jammalamadugu,LGD,504,District,5215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4440,Block,Jammikunta,LGD,508,District,4440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,79,Block,Jammu,LGD,5,District,79,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,6708,Block,Jammu North,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,6706,Block,Jammu South,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,6718,Block,Jammu West,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,6525,Block,Jamnagar City,LGD,447,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -LGD,3814,Block,Jamnagar Rural,LGD,447,District,3814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -LGD,3974,Block,Jamner,LGD,478,District,3974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,6677,Block,Jampuijala,LGD,653,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -LGD,2678,Block,Jamtara,LGD,333,District,2678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false -LGD,2536,Block,Jamua,LGD,329,District,2536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,1527,Block,Jamui,LGD,198,District,1527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,6164,Block,Jamunaha,LGD,181,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false -LGD,6631,Block,Jamunamarathoor,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,2270,Block,Jamuria,LGD,704,District,2270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -LGD,548,Block,Jamwaramgarh,LGD,102,District,548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,7590,Block,Janakpuri,LGD,85,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false -LGD,1276,Block,Jandaha,LGD,224,District,1276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,1561,Block,Jang Adc,LGD,238,District,1561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,4953,Block,Jangareddigudem,LGD,748,District,4953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2353,Block,Jangipara,LGD,312,District,2353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,6957,Block,Jangla,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,4699,Block,Jangoan,LGD,689,District,4699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,7572,Block,Jangpura,LGD,670,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false -LGD,3277,Block,Janjgir,LGD,379,District,3277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,4334,Block,Jannaram,LGD,684,District,4334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,7380,Block,Janoothar,LGD,767,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,711,Block,Jansath,LGD,172,District,711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -LGD,4263,Block,Jaoli,LGD,494,District,4263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,3501,Block,Jaora,LGD,423,District,3501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,7311,Block,Jarhagaon,LGD,647,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false -LGD,7283,Block,Jari,LGD,20,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,2594,Block,Jaridih,LGD,322,District,2594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,2667,Block,Jarmundi,LGD,326,District,2667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,3806,Block,Jasdan,LGD,457,District,3806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,2867,Block,Jashipur,LGD,365,District,2867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,3257,Block,Jashpur,LGD,380,District,3257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,347,Block,Jaspur,LGD,56,District,347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,773,Block,Jasrana,LGD,143,District,773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -LGD,7365,Block,Jasrasar,LGD,93,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,105,Block,Jaswan,LGD,18,District,105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,836,Block,Jaswantnagar,LGD,139,District,836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -LGD,6044,Block,Jaswantpura,LGD,104,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,4304,Block,Jat,LGD,493,District,4304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,3049,Block,Jatani,LGD,362,District,3049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,3418,Block,Jatara,LGD,434,District,3418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,984,Block,Jaunpur,LGD,152,District,984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -LGD,3472,Block,Jawa,LGD,424,District,3472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,3487,Block,Jawad,LGD,419,District,3487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -LGD,104,Block,Jawalamukhi,LGD,18,District,104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,96,Block,Jawali,LGD,18,District,96,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,3585,Block,Jawar,LGD,427,District,3585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,4160,Block,Jawhar,LGD,665,District,4160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -LGD,559,Block,Jayal,LGD,110,District,559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,3170,Block,Jayapatna,LGD,358,District,3170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,2431,Block,Jaynagar - I,LGD,304,District,2431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2432,Block,Jaynagar - II,LGD,304,District,2432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2368,Block,Jaypur,LGD,305,District,2368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,4947,Block,Jeelugu Milli,LGD,748,District,4947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3563,Block,Jeerapur,LGD,422,District,3563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,1536,Block,Jehanabad,LGD,199,District,1536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -LGD,1664,Block,Jengging Circle,LGD,240,District,1664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,6203,Block,Jesar,LGD,443,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,6481,Block,Jessami,LGD,260,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false -LGD,3811,Block,Jetpur,LGD,457,District,3811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,7440,Block,Jetpur City,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,3900,Block,Jetpur Pavi,LGD,668,District,3900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -LGD,5586,Block,Jevargi,LGD,538,District,5586,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,744,Block,Jewar,LGD,144,District,744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -LGD,3209,Block,Jeypore,LGD,363,District,3209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,3709,Block,Jhabua,LGD,412,District,3709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -LGD,688,Block,Jhadol,LGD,117,District,688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,3917,Block,Jhagadia,LGD,442,District,3917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,1530,Block,Jhajha,LGD,198,District,1530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,409,Block,Jhajjar,LGD,64,District,409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -LGD,2390,Block,Jhalda - I,LGD,321,District,2390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,2391,Block,Jhalda - II,LGD,321,District,2391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,7229,Block,Jhallara,LGD,777,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3891,Block,Jhalod,LGD,445,District,3891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,679,Block,Jhalrapatan,LGD,105,District,679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,154,Block,Jhanduta,LGD,15,District,154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -LGD,1097,Block,Jhanjharpur,LGD,206,District,1097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,860,Block,Jhansi,LGD,153,District,860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -LGD,7220,Block,Jhanwar,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,4476,Block,Jharasangam,LGD,691,District,4476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,2756,Block,Jharbandh,LGD,347,District,2756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,6983,Block,Jharda,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,2454,Block,Jhargram,LGD,703,District,2454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -LGD,2585,Block,Jharia-Cum-Jorapokhar-Cum-Sindri,LGD,325,District,2585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,3191,Block,Jharigan,LGD,366,District,3191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,2776,Block,Jharsuguda,LGD,357,District,2776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -LGD,2742,Block,Jhinkpani,LGD,343,District,2742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,3553,Block,Jhiranya,LGD,414,District,3553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,6070,Block,Jhonthripal,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,2840,Block,Jhumpura,LGD,361,District,2840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,487,Block,Jhunjhunu,LGD,106,District,487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,6346,Block,Jilasu,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,6322,Block,Jilled Chowdergudem,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,383,Block,Jind,LGD,65,District,383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -LGD,4493,Block,Jinnaram,LGD,691,District,4493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,4117,Block,Jintur,LGD,489,District,4117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,3490,Block,Jiran,LGD,419,District,3490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -LGD,1986,Block,Jirang,LGD,276,District,1986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -LGD,6679,Block,Jirania,LGD,272,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -LGD,1883,Block,Jiribam,LGD,713,District,1883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false -LGD,4076,Block,Jiwati,LGD,473,District,4076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,4810,Block,Jiyyammavalasa,LGD,743,District,4810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3712,Block,Jobat,LGD,639,District,3712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -LGD,7141,Block,Jobner,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,570,Block,Jodhpur,LGD,107,District,570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,3815,Block,Jodiya,LGD,447,District,3815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -LGD,1024,Block,Jogapatti,LGD,211,District,1024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,124,Block,Jogindarnagar,LGD,22,District,124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,1120,Block,Jokihat,LGD,188,District,1120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,6890,Block,Jol,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,6606,Block,Jomlo Mobuk Circle,LGD,679,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,2057,Block,Jonai,LGD,284,District,2057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -LGD,2159,Block,Jorebunglow Sukiapokhri,LGD,309,District,2159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,6399,Block,Jorethang,LGD,227,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false -LGD,2078,Block,Jorhat East,LGD,290,District,2078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -LGD,2077,Block,Jorhat West,LGD,290,District,2077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -LGD,284,Block,Joshimath,LGD,47,District,284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,6366,Block,Joshiyara,LGD,57,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,6021,Block,Jotana,LGD,451,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,3388,Block,Joura,LGD,417,District,3388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -LGD,6701,Block,Jourian,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,5111,Block,J.Pangulur,LGD,517,District,5111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,188,Block,Jubbal,LGD,23,District,188,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,2794,Block,Jujomura,LGD,371,District,2794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,4373,Block,Jukkal,LGD,685,District,4373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,384,Block,Julana,LGD,65,District,384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -LGD,4409,Block,Julapalli,LGD,682,District,4409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,4746,Block,Julurpadu,LGD,690,District,4746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,3827,Block,Junagadh,LGD,448,District,3827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,6517,Block,Junagadh City,LGD,448,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,3166,Block,Junagarh,LGD,358,District,3166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,183,Block,Junga,LGD,23,District,183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,3543,Block,Juni Indore,LGD,410,District,3543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,4187,Block,Junnar,LGD,490,District,4187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,5262,Block,Jupadu Bunglow,LGD,755,District,5262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7381,Block,Jurhara,LGD,767,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,6401,Block,Kabi,LGD,226,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false -LGD,3080,Block,Kabisuryanagar,LGD,354,District,3080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,7366,Block,Kachhola,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,7104,Block,Kadaba,LGD,534,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,5859,Block,Kadaladi,LGD,583,District,5859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,2051,Block,Kadam,LGD,295,District,2051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -LGD,3880,Block,Kadana,LGD,669,District,3880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -LGD,5230,Block,Kadapa,LGD,504,District,5230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,5772,Block,Kadavur,LGD,576,District,5772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -LGD,6619,Block,Kadayampatti,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,6639,Block,Kadayanallur,LGD,733,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -LGD,4335,Block,Kaddam Peddur,LGD,680,District,4335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,4298,Block,Kadegaon,LGD,493,District,4298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,3759,Block,Kadi,LGD,451,District,3759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,4918,Block,Kadiam,LGD,505,District,4918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,918,Block,Kadipur,LGD,185,District,918,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -LGD,6422,Block,Kadipur St,LGD,62,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,5343,Block,Kadiri,LGD,754,District,5343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5624,Block,Kadmat,LGD,553,District,5624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,6324,Block,Kadthal,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,5529,Block,Kadur,LGD,532,District,5529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,7551,Block,Kadval,LGD,668,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -LGD,1145,Block,Kadwa,LGD,201,District,1145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,6332,Block,Kafligair,LGD,46,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -LGD,4290,Block,Kagal,LGD,480,District,4290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,4318,Block,Kagaznagar,LGD,699,District,4318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,7100,Block,Kagwad,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,1336,Block,Kahalgaon,LGD,192,District,1336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,6756,Block,Kahara,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,1174,Block,Kahara,LGD,216,District,1174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,4222,Block,Kaij,LGD,470,District,4222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,5016,Block,Kaikaluru,LGD,748,District,5016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3389,Block,Kailaras,LGD,417,District,3389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -LGD,6682,Block,Kailashahar,LGD,655,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -LGD,830,Block,Kaimganj,LGD,141,District,830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -LGD,706,Block,Kairana,LGD,660,District,706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false -LGD,2600,Block,Kairo,LGD,336,District,2600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -LGD,922,Block,Kaiserganj,LGD,125,District,922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -LGD,368,Block,Kaithal,LGD,66,District,368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -LGD,4923,Block,Kajuluru,LGD,746,District,4923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6793,Block,Kakapora,LGD,11,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -LGD,3059,Block,Kakatpur,LGD,369,District,3059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,1878,Block,Kakching,LGD,711,District,1878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,false -LGD,2437,Block,Kakdwip,LGD,304,District,2437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,4913,Block,Kakinada (Rural),LGD,746,District,4913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4914,Block,Kakinada (Urban),LGD,746,District,4914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6943,Block,Kakira,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,1537,Block,Kako,LGD,199,District,1537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -LGD,6601,Block,Kakoi Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,5083,Block,Kakumanu,LGD,506,District,5083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,5582,Block,Kalaburagi,LGD,538,District,5582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,344,Block,Kaladhungi,LGD,51,District,344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,7087,Block,Kalagi,LGD,538,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,7507,Block,Kalahandi,LGD,358,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,6427,Block,Kalaigaon,LGD,617,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -LGD,6644,Block,Kalaiyarkoil,LGD,585,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,5371,Block,Kalakada,LGD,753,District,5371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,24,Block,Kalakote,LGD,12,District,24,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,1570,Block,Kalaktang Adc,LGD,242,District,1570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,4239,Block,Kalamb,LGD,488,District,4239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -LGD,4081,Block,Kalamb,LGD,500,District,4081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,4025,Block,Kalameshwar,LGD,484,District,4025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,4114,Block,Kalamnuri,LGD,477,District,4114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -LGD,7508,Block,Kalampur,LGD,358,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,6882,Block,Kalan,LGD,180,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -LGD,6859,Block,Kalanaur,LGD,32,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -LGD,6467,Block,Kalanaur,LGD,73,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -LGD,6469,Block,Kalanwali,LGD,74,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -LGD,3523,Block,Kalapipal,LGD,430,District,3523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -LGD,7194,Block,Kalasa,LGD,532,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,5207,Block,Kalasapadu,LGD,504,District,5207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,5959,Block,Kalasapakkam,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,3817,Block,Kalavad,LGD,447,District,3817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -LGD,7059,Block,Kalavai,LGD,731,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -LGD,6446,Block,Kalayat,LGD,66,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -LGD,7284,Block,Kalbog,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,2171,Block,Kalchini,LGD,664,District,2171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -LGD,1543,Block,Kaler,LGD,611,District,1543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -LGD,2019,Block,Kalgachia,LGD,280,District,2019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -LGD,5476,Block,Kalghatgi,LGD,536,District,5476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -LGD,4453,Block,Kalher,LGD,691,District,4453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,2031,Block,Kaliabor,LGD,297,District,2031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -LGD,2220,Block,Kaliachak - I,LGD,316,District,2220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,2221,Block,Kaliachak - II,LGD,316,District,2221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,2222,Block,Kaliachak - III,LGD,316,District,2222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,2198,Block,Kaliaganj,LGD,311,District,2198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,5017,Block,Kalidindi,LGD,748,District,5017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2303,Block,Kaliganj,LGD,320,District,2303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,5160,Block,Kaligiri,LGD,515,District,5160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5387,Block,Kalikiri,LGD,753,District,5387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3227,Block,Kalimela,LGD,364,District,3227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -LGD,2156,Block,Kalimpong -I,LGD,702,District,2156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -LGD,6866,Block,Kalinagar,LGD,173,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -LGD,356,Block,Kalka,LGD,70,District,356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -LGD,456,Block,Kalkaji,LGD,670,District,456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false -LGD,5882,Block,Kalkulam,LGD,575,District,5882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -LGD,4985,Block,Kalla,LGD,523,District,4985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,5734,Block,Kallakkurichi,LGD,729,District,5734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -LGD,6615,Block,Kalligudi,LGD,578,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,5258,Block,Kallur,LGD,511,District,5258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,4763,Block,Kalluru,LGD,509,District,4763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,2293,Block,Kalna - I,LGD,306,District,2293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2294,Block,Kalna - II,LGD,306,District,2294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,3886,Block,Kalol,LGD,454,District,3886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -LGD,6938,Block,Kalol,LGD,15,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -LGD,7438,Block,Kalol City,LGD,446,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -LGD,3773,Block,Kalol Gandhinagar,LGD,446,District,3773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -LGD,6297,Block,Kaloor Thimmandoddi,LGD,695,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,197,Block,Kalpa,LGD,19,District,197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -LGD,5628,Block,Kalpeni,LGD,553,District,5628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,853,Block,Kalpi,LGD,151,District,853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -LGD,302,Block,Kalsi,LGD,49,District,302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -LGD,1090,Block,Kaluahi,LGD,206,District,1090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,5174,Block,Kaluvoya,LGD,515,District,5174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,7055,Block,Kalvarayan Hills,LGD,729,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -LGD,4576,Block,Kalwakurthy,LGD,694,District,4576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,4143,Block,Kalwan,LGD,487,District,4143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,7215,Block,Kalwar,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,4168,Block,Kalyan,LGD,497,District,4168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -LGD,5321,Block,Kalyanadurg,LGD,502,District,5321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,3176,Block,Kalyanasingpur,LGD,370,District,3176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,6966,Block,Kalyani,LGD,320,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,1048,Block,Kalyanpur,LGD,213,District,1048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,3819,Block,Kalyanpur,LGD,674,District,3819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -LGD,7130,Block,Kalyanpur,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,1284,Block,Kalyanpur,LGD,217,District,1284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,2988,Block,Kamakshyanagar,LGD,352,District,2988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -LGD,7090,Block,Kamalapur,LGD,538,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,4447,Block,Kamalapur,LGD,686,District,4447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,5224,Block,Kamalapuram,LGD,504,District,5224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,7085,Block,Kamalnagar,LGD,529,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -LGD,6681,Block,Kamalpur,LGD,269,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -LGD,2118,Block,Kamalpur,LGD,291,District,2118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,506,Block,Kaman,LGD,767,District,506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,4400,Block,Kamanpur,LGD,682,District,4400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,4390,Block,Kamareddy,LGD,685,District,4390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,4954,Block,Kamavarapukota,LGD,748,District,4954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6585,Block,Kamba Adc,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false -LGD,5334,Block,Kambadur,LGD,502,District,5334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5372,Block,Kambhamvaripalle,LGD,753,District,5372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2710,Block,Kamdara,LGD,331,District,2710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,6567,Block,Kamengbari Doimara Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,4745,Block,Kamepalli,LGD,509,District,4745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,1889,Block,Kamjong,LGD,717,District,1889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false -LGD,4363,Block,Kammarpally,LGD,516,District,4363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,7107,Block,Kampli,LGD,528,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -LGD,1700,Block,Kamporijo Circle,LGD,718,District,1700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false -LGD,4030,Block,Kamptee,LGD,484,District,4030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,2037,Block,Kampur,LGD,297,District,2037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -LGD,174,Block,Kamrau,LGD,24,District,174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,3936,Block,Kamrej,LGD,459,District,3936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,5858,Block,Kamuthi,LGD,583,District,5858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,7012,Block,Kanadia,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,4656,Block,Kanagal,LGD,514,District,4656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,5335,Block,Kanaganipalli,LGD,754,District,5335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7091,Block,Kanakagiri,LGD,543,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -LGD,5608,Block,Kanakapura,LGD,631,District,5608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -LGD,6425,Block,Kanalichhina,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,7466,Block,Kanas,LGD,369,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,5661,Block,Kanayannur,LGD,555,District,5661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -LGD,6685,Block,Kanchanpur,LGD,270,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -LGD,5707,Block,Kancheepuram,LGD,574,District,5707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -LGD,5007,Block,Kanchikacherla,LGD,749,District,5007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4777,Block,Kanchili,LGD,519,District,4777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,322,Block,Kanda,LGD,46,District,322,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -LGD,6651,Block,Kandachipuram,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,166,Block,Kandaghat,LGD,25,District,166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,7495,Block,Kandhamal,LGD,359,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,4108,Block,Kandhar,LGD,485,District,4108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,2498,Block,Kandi,LGD,328,District,2498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,6275,Block,Kandi,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,2240,Block,Kandi,LGD,319,District,2240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,6360,Block,Kandisaur,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,4545,Block,Kandukur,LGD,518,District,4545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,5148,Block,Kandukuru,LGD,517,District,5148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,5306,Block,Kanekal,LGD,502,District,5306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,46,Block,Kangan,LGD,626,District,46,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -LGD,6495,Block,Kangchup Geljang,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,5901,Block,Kangeyam,LGD,634,District,5901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,6572,Block,Kangku Circle,LGD,719,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false -LGD,6884,Block,Kangoo,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,1861,Block,Kangpokpi,LGD,712,District,1861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,100,Block,Kangra,LGD,18,District,100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,4450,Block,Kangti,LGD,691,District,4450,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,6500,Block,Kangvai,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,2519,Block,Kanha Chatti,LGD,323,District,2519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,5136,Block,Kanigiri,LGD,790,District,5136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3003,Block,Kaniha,LGD,344,District,3003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -LGD,6458,Block,Kanina,LGD,69,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -LGD,7486,Block,Kanisi,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,5672,Block,Kanjirappally,LGD,560,District,5672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -LGD,2989,Block,Kankadahad,LGD,352,District,2989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -LGD,4277,Block,Kankavli,LGD,495,District,4277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -LGD,2684,Block,Kanke,LGD,339,District,2684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,3351,Block,Kanker,LGD,381,District,3351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,5023,Block,Kankipadu,LGD,510,District,5023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,3743,Block,Kankrej,LGD,441,District,3743,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,2275,Block,Kanksa,LGD,704,District,2275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -LGD,4133,Block,Kannad,LGD,469,District,4133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,6251,Block,Kannaigudem,LGD,720,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,834,Block,Kannauj,LGD,155,District,834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -LGD,6229,Block,Kannepally,LGD,684,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,3527,Block,Kannod,LGD,402,District,3527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,5633,Block,Kannur,LGD,557,District,5633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -LGD,6929,Block,Kanod,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,849,Block,Kanpur,LGD,157,District,849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -LGD,3256,Block,Kansabel,LGD,380,District,3256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,3149,Block,Kantabanji,LGD,345,District,3149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,3127,Block,Kantamal,LGD,349,District,3127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -LGD,6608,Block,Kantang Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,7502,Block,Kantapada,LGD,350,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,718,Block,Kanth,LGD,171,District,718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -LGD,1204,Block,Kanti,LGD,208,District,1204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,1688,Block,Kanubari Adc,LGD,666,District,1688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false -LGD,6054,Block,Kanwas,LGD,109,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -LGD,3869,Block,Kapadvanj,LGD,450,District,3869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,660,Block,Kapasan,LGD,95,District,660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,4928,Block,Kapileswarapuram,LGD,505,District,4928,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,321,Block,Kapkot,LGD,46,District,321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -LGD,6317,Block,Kapra,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,3930,Block,Kaprada,LGD,462,District,3930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,6879,Block,Kaptanganj,LGD,160,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -LGD,2885,Block,Kaptipada,LGD,365,District,2885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,7067,Block,Kapu,LGD,549,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -LGD,7348,Block,Kapu,LGD,386,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,206,Block,Kapurthala,LGD,35,District,206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -LGD,4265,Block,Karad,LGD,494,District,4265,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,3384,Block,Karahal,LGD,431,District,3384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -LGD,5914,Block,Karaikal,LGD,598,District,5914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -LGD,5830,Block,Karaikkudi,LGD,585,District,5830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,1378,Block,Karai Parsurai,LGD,209,District,1378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,6269,Block,Karakagudem,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,1462,Block,Karakat,LGD,215,District,1462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,5825,Block,Karambakudi,LGD,582,District,5825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,5109,Block,Karamchedu,LGD,750,District,5109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2195,Block,Karandighi,LGD,311,District,2195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,3997,Block,Karanja,LGD,499,District,3997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -LGD,4016,Block,Karanja,LGD,498,District,4016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -LGD,2870,Block,Karanjia,LGD,365,District,2870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,457,Block,Karanpur,LGD,100,District,457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,4922,Block,Karapa,LGD,746,District,4922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7092,Block,Karatagi,LGD,543,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -LGD,523,Block,Karauli,LGD,108,District,523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,6083,Block,Karawal Nagar,LGD,81,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false -LGD,6690,Block,Karbook,LGD,654,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -LGD,892,Block,Karchhana,LGD,120,District,892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -LGD,3637,Block,Kareli,LGD,418,District,3637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -LGD,5046,Block,Karempudi,LGD,751,District,5046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6064,Block,Karera,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,3410,Block,Karera,LGD,432,District,3410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,1467,Block,Kargahar,LGD,215,District,1467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,13,Block,Kargil,LGD,6,District,13,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -LGD,776,Block,Karhal,LGD,166,District,776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -LGD,5851,Block,Kariapatti,LGD,597,District,5851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,6202,Block,Kariasol,LGD,325,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,6622,Block,Karimangalam,LGD,571,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -LGD,2101,Block,Karimganj,LGD,293,District,2101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -LGD,6231,Block,Karimnagar,LGD,508,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,4428,Block,Karimnagar Rural,LGD,508,District,4428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,2299,Block,Karimpur - I,LGD,320,District,2299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,2300,Block,Karimpur - II,LGD,320,District,2300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,3907,Block,Karjan,LGD,461,District,3907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,4174,Block,Karjat,LGD,491,District,4174,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,4213,Block,Karjat,LGD,466,District,4213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,5524,Block,Karkal,LGD,549,District,5524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -LGD,6533,Block,Karkeli,LGD,436,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -LGD,7509,Block,Karlamunda,LGD,358,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,5092,Block,Karlapalem,LGD,750,District,5092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4244,Block,Karmala,LGD,496,District,4244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,2677,Block,Karma Tanr Vidyasagar*,LGD,333,District,2677,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false -LGD,3,Block,Karnah,LGD,8,District,3,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,372,Block,Karnal,LGD,67,District,372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -LGD,287,Block,Karnaprayag,LGD,47,District,287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,447,Block,Karol Bagh,LGD,77,District,447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,false -LGD,2552,Block,Karon,LGD,324,District,2552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,7344,Block,Karpawand,LGD,374,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,1544,Block,Karpi,LGD,611,District,1544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -LGD,2700,Block,Karra,LGD,606,District,2700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false -LGD,139,Block,Karsog,LGD,22,District,139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,3276,Block,Kartala,LGD,383,District,3276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,5676,Block,Karthikappally,LGD,554,District,5676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -LGD,5684,Block,Karunagappally,LGD,559,District,5684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -LGD,5769,Block,Karur,LGD,576,District,5769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -LGD,5408,Block,Karvetinagar,LGD,503,District,5408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,4287,Block,Karvir,LGD,480,District,4287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,5478,Block,Karwar,LGD,550,District,5478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,875,Block,Karwi,LGD,136,District,875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false -LGD,5630,Block,Kasaragod,LGD,558,District,5630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -LGD,164,Block,Kasauli,LGD,25,District,164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,1135,Block,Kasba,LGD,214,District,1135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,3328,Block,Kasdol,LGD,644,District,3328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,1010,Block,Kasganj,LGD,633,District,1010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -LGD,1514,Block,Kashi Chak,LGD,210,District,1514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,2385,Block,Kashipur,LGD,321,District,2385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,3177,Block,Kashipur,LGD,370,District,3177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,346,Block,Kashipur,LGD,56,District,346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,6748,Block,Kashtigarh,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,6834,Block,Kasimabad,LGD,146,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -LGD,4876,Block,Kasimkota,LGD,744,District,4876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3104,Block,Kasinagar,LGD,353,District,3104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -LGD,4349,Block,Kasipet,LGD,684,District,4349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,2593,Block,Kasmar,LGD,322,District,2593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,1891,Block,Kasom Khullen,LGD,717,District,1891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false -LGD,3547,Block,Kasrawad,LGD,414,District,3547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,957,Block,Kasya,LGD,160,District,957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -LGD,2655,Block,Katamdag,LGD,332,District,2655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,1668,Block,Katan Circle,LGD,240,District,1668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,3667,Block,Katangi,LGD,392,District,3667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,4402,Block,Kataram,LGD,687,District,4402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,6519,Block,Katargam,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,3371,Block,Katekalyan,LGD,376,District,3371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -LGD,3272,Block,Katghora,LGD,383,District,3272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,2670,Block,Kathikund,LGD,326,District,2670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,3872,Block,Kathlal,LGD,450,District,3872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,4418,Block,Kathlapur,LGD,681,District,4418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,30,Block,Kathua,LGD,7,District,30,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,504,Block,Kathumar,LGD,87,District,504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,2096,Block,Katigora,LGD,282,District,2096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -LGD,1151,Block,Katihar,LGD,201,District,1151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,1215,Block,Katiya,LGD,197,District,1215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,2654,Block,Katkamsandi,LGD,332,District,2654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,2109,Block,Katlichara,LGD,289,District,2109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -LGD,7567,Block,Katngi,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,7028,Block,Katni Nagar,LGD,413,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,4024,Block,Katol,LGD,484,District,4024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,1354,Block,Katoria,LGD,190,District,1354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,6945,Block,Katoula,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,5713,Block,Katpadi,LGD,595,District,5713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -LGD,6741,Block,Katra,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,1208,Block,Katra,LGD,208,District,1208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,4943,Block,Katrenikona,LGD,747,District,4943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1397,Block,Katrisarai,LGD,209,District,1397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,5945,Block,Kattakkada,LGD,565,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -LGD,4635,Block,Kattangur,LGD,514,District,4635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,6980,Block,Katthiwara,LGD,639,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -LGD,5792,Block,Kattumannarkoil,LGD,570,District,5792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,2281,Block,Katwa - I,LGD,306,District,2281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2282,Block,Katwa - II,LGD,306,District,2282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,5158,Block,Kavali,LGD,515,District,5158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,3902,Block,Kavant,LGD,668,District,3902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -LGD,5625,Block,Kavaratti,LGD,553,District,5625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,4303,Block,Kavathemahankal,LGD,493,District,4303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,4779,Block,Kaviti,LGD,519,District,4779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,1516,Block,Kawakol,LGD,210,District,1516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,3298,Block,Kawardha,LGD,382,District,3298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -LGD,6829,Block,Kawarhama,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,7342,Block,Kawrtethawveng,LGD,266,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false -LGD,6628,Block,Kayathar,LGD,594,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,1627,Block,Kaying Eac,LGD,679,District,1627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,1854,Block,Kebai Khelma,LGD,613,District,1854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -LGD,1646,Block,Kebang Circle,LGD,679,District,1646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,6092,Block,Keegam,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false -LGD,4522,Block,Keesara,LGD,700,District,4522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,1886,Block,Keirao Bitra,LGD,255,District,1886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -LGD,614,Block,Kekri,LGD,86,District,614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,4090,Block,Kelapur,LGD,500,District,4090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,7269,Block,Kelhari,LGD,760,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,6091,Block,Keller,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false -LGD,2927,Block,Kendrapara,LGD,360,District,2927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,3663,Block,Keolari,LGD,428,District,3663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,7492,Block,Keonjhar,LGD,361,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,1183,Block,Keotiranway,LGD,195,District,1183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,986,Block,Kerakat,LGD,152,District,986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -LGD,4313,Block,Kerameri,LGD,699,District,4313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,6782,Block,Keran,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,2656,Block,Keredari,LGD,332,District,2656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,2721,Block,Kersai,LGD,342,District,2721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,4717,Block,Kesamudram,LGD,688,District,4717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,1047,Block,Kesaria,LGD,213,District,1047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1439,Block,Kesath,LGD,194,District,1439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,4561,Block,Keshampet,LGD,518,District,4561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,2466,Block,Keshiary,LGD,318,District,2466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,3355,Block,Keshkal,LGD,643,District,3355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -LGD,3831,Block,Keshod,LGD,448,District,3831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,625,Block,Keshoraipatan,LGD,94,District,625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -LGD,2451,Block,Keshpur,LGD,318,District,2451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,3159,Block,Kesinga,LGD,358,District,3159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,3452,Block,Kesli,LGD,425,District,3452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,2497,Block,Ketar*,LGD,328,District,2497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,4637,Block,Kethepally,LGD,514,District,4637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,2279,Block,Ketugram - I,LGD,306,District,2279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2280,Block,Ketugram - II,LGD,306,District,2280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,1847,Block,Kezocha,LGD,245,District,1847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -LGD,4929,Block,K Gangavaram,LGD,747,District,4929,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3508,Block,Khacharod,LGD,435,District,3508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,6878,Block,Khadda,LGD,160,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -LGD,3235,Block,Khadganva,LGD,760,District,3235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,7277,Block,Khadgaon,LGD,761,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,261,Block,Khadur Sahib,LGD,609,District,261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -LGD,4,Block,Khag,LGD,2,District,4,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,879,Block,Khaga,LGD,142,District,879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -LGD,1323,Block,Khagaria,LGD,202,District,1323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -LGD,752,Block,Khair,LGD,119,District,752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -LGD,2906,Block,Khaira,LGD,346,District,2906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,1532,Block,Khaira,LGD,198,District,1532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,3303,Block,Khairagarh,LGD,759,District,3303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,4505,Block,Khairatabad,LGD,507,District,4505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,3670,Block,Khairlanji,LGD,392,District,3670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,7469,Block,Khairput,LGD,364,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -LGD,7207,Block,Khairthal,LGD,770,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,1089,Block,Khajauli,LGD,206,District,1089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,5212,Block,Khajipeta,LGD,504,District,5212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,953,Block,Khajni,LGD,148,District,953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -LGD,3113,Block,Khajuripada,LGD,359,District,3113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,478,Block,Khajuwala,LGD,93,District,478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,3720,Block,Khaknar,LGD,397,District,3720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -LGD,4175,Block,Khalapur,LGD,491,District,4175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,942,Block,Khalilabad,LGD,178,District,942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -LGD,7485,Block,Khallikote,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,12,Block,Khaltsi,LGD,9,District,12,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -LGD,3715,Block,Khalwa,LGD,405,District,3715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,223,Block,Khamanon,LGD,30,District,223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -LGD,3847,Block,Khambha,LGD,439,District,3847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,3813,Block,Khambhalia,LGD,674,District,3813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -LGD,3866,Block,Khambhat,LGD,440,District,3866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,3981,Block,Khamgaon,LGD,472,District,3981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,4756,Block,Khammam (Rural),LGD,509,District,4756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,6326,Block,Khammam Urban,LGD,509,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,6393,Block,Khamnor,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,2354,Block,Khanakul - I,LGD,312,District,2354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,2355,Block,Khanakul - II,LGD,312,District,2355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,4347,Block,Khanapur,LGD,680,District,4347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,4299,Block,Khanapur,LGD,493,District,4299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,5439,Block,Khanapur,LGD,527,District,5439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,4709,Block,Khanapur,LGD,522,District,4709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,2297,Block,Khandaghosh,LGD,306,District,2297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,4257,Block,Khandala,LGD,494,District,4257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,3026,Block,Khandapada,LGD,367,District,3026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -LGD,532,Block,Khandar,LGD,113,District,532,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,6384,Block,Khandela,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,3716,Block,Khandwa,LGD,405,District,3716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,7019,Block,Khandwa Nagar,LGD,405,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,3414,Block,Khaniyadhana,LGD,432,District,3414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,225,Block,Khanna,LGD,36,District,225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -LGD,678,Block,Khanpur,LGD,105,District,678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,1287,Block,Khanpur,LGD,217,District,1287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,3879,Block,Khanpur,LGD,669,District,3879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -LGD,6472,Block,Khanpur St,LGD,75,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -LGD,6,Block,Khansahib,LGD,2,District,6,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,6801,Block,Khanyar,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -LGD,3145,Block,Khaprakhol,LGD,345,District,3145,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,1360,Block,Kharagpur,LGD,207,District,1360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,2460,Block,Kharagpur - I,LGD,318,District,2460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,2461,Block,Kharagpur - II,LGD,318,District,2461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,6704,Block,Kharah Balli,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,266,Block,Kharar,LGD,608,District,266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -LGD,2495,Block,Kharaundhi,LGD,328,District,2495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,3422,Block,Khargapur,LGD,434,District,3422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,3550,Block,Khargone,LGD,414,District,3550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,7029,Block,Khargone Nagar,LGD,414,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,2239,Block,Khargram,LGD,319,District,2239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,6759,Block,Khari,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -LGD,3156,Block,Khariar,LGD,368,District,3156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -LGD,2165,Block,Kharibari,LGD,309,District,2165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,1331,Block,Kharik,LGD,192,District,1331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,381,Block,Kharkhoda,LGD,75,District,381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -LGD,1972,Block,Kharkutta,LGD,656,District,1972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false -LGD,7262,Block,Kharora,LGD,387,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -LGD,1681,Block,Kharsang Circle,LGD,229,District,1681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,2747,Block,Kharsawan,LGD,341,District,2747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,3269,Block,Kharsia,LGD,386,District,3269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,7159,Block,Kharu,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -LGD,1992,Block,Khatarshnong Laitkroh,LGD,274,District,1992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,710,Block,Khatauli,LGD,172,District,710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -LGD,4260,Block,Khatav,LGD,494,District,4260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,3531,Block,Khategaon,LGD,402,District,3531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,352,Block,Khatima,LGD,56,District,352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,2373,Block,Khatra,LGD,305,District,2373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,6771,Block,Khawas,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,1909,Block,Khawbung,LGD,262,District,1909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false -LGD,1907,Block,Khawzawl,LGD,728,District,1907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -LGD,6247,Block,Khazipet,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,4268,Block,Khed,LGD,492,District,4268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,4190,Block,Khed,LGD,490,District,4190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,3874,Block,Kheda,LGD,450,District,3874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,3760,Block,Khedbrahma,LGD,458,District,3760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -LGD,561,Block,Kheenvsar,LGD,110,District,561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,2486,Block,Khejuri - I,LGD,317,District,2486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2487,Block,Khejuri - II,LGD,317,District,2487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,737,Block,Khekada,LGD,124,District,737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -LGD,2683,Block,Khelari,LGD,339,District,2683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,6605,Block,Khenawa Circle,LGD,231,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,6496,Block,Khengjoy,LGD,253,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -LGD,768,Block,Kheragarh,LGD,118,District,768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -LGD,3752,Block,Kheralu,LGD,451,District,3752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,6195,Block,Khergam,LGD,453,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -LGD,6419,Block,Kheri Jalab St,LGD,792,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -LGD,695,Block,Kherwara,LGD,117,District,695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,490,Block,Khetri,LGD,106,District,490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,1811,Block,Khezhakeno,LGD,248,District,1811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,6246,Block,Khila Warangal,LGD,522,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,3564,Block,Khilchipur,LGD,422,District,3564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,1669,Block,Khimiyang Eac,LGD,229,District,1669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,3606,Block,Khirkiya,LGD,408,District,3606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -LGD,1490,Block,Khizirsarai,LGD,196,District,1490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,6828,Block,Khoie,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,6428,Block,Khoirabari,LGD,617,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -LGD,1842,Block,Khongsa,LGD,614,District,1842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -LGD,1686,Block,Khonsa Hq,LGD,239,District,1686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -LGD,3036,Block,Khordha,LGD,362,District,3036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,6038,Block,Khoupum,LGD,714,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false -LGD,6714,Block,Khour,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,6684,Block,Khowai,LGD,652,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false -LGD,2267,Block,Khoyrasol,LGD,307,District,2267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,1304,Block,Khudabandpur,LGD,191,District,1304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,7015,Block,Khudel,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,6993,Block,Khujner,LGD,422,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,4138,Block,Khuldabad,LGD,469,District,4138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,2083,Block,Khumtai,LGD,288,District,2083,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -LGD,107,Block,Khundian,LGD,18,District,107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,2883,Block,Khunta,LGD,365,District,2883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,2704,Block,Khunti,LGD,606,District,2704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false -LGD,2732,Block,Khuntpani,LGD,343,District,2732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,3444,Block,Khurai,LGD,425,District,3444,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,751,Block,Khurja,LGD,134,District,751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -LGD,1413,Block,Khusrupur,LGD,212,District,1413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,1802,Block,Khuza,LGD,248,District,1802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,1741,Block,Kibithoo Circle,LGD,628,District,1741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -LGD,349,Block,Kichha,LGD,56,District,349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,5991,Block,Kikruma,LGD,248,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,6654,Block,Kilakarai,LGD,583,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,6673,Block,Killiyoor,LGD,575,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -LGD,7396,Block,Killod,LGD,405,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,6630,Block,Kilpennathur,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,5623,Block,Kiltan,LGD,553,District,5623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,5800,Block,Kilvelur,LGD,579,District,5800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -LGD,1605,Block,Kimin Sdo,LGD,237,District,1605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,5956,Block,Kinathukadavu,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,4096,Block,Kinwat,LGD,485,District,4096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,1837,Block,Kiphire Sadar,LGD,614,District,1837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -LGD,767,Block,Kiraoli,LGD,118,District,767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -LGD,7594,Block,Kirari,LGD,82,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false -LGD,1195,Block,Kiratpur,LGD,195,District,1195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,4899,Block,Kirlampudi,LGD,746,District,4899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7506,Block,Kirmira,LGD,357,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -LGD,3673,Block,Kirnapur,LGD,392,District,3673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,6361,Block,Kirtinagar,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,1127,Block,Kishanganj,LGD,203,District,1127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -LGD,674,Block,Kishanganj,LGD,89,District,674,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -LGD,1167,Block,Kishanganj,LGD,205,District,1167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,606,Block,Kishangarh,LGD,86,District,606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,497,Block,Kishangarhbas,LGD,770,District,497,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,6026,Block,Kishangarh Renwal,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,2960,Block,Kishannagar,LGD,350,District,2960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,1107,Block,Kishanpur,LGD,223,District,1107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,6872,Block,Kishni,LGD,166,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -LGD,3016,Block,Kishorenagar,LGD,344,District,3016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -LGD,68,Block,Kishtwar,LGD,620,District,68,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,2597,Block,Kisko,LGD,336,District,2597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -LGD,1560,Block,Kitpi Circle,LGD,238,District,1560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,7043,Block,Kittur,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,1838,Block,Kiusam,LGD,614,District,1838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -LGD,4860,Block,K.Kotapadu,LGD,744,District,4860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7496,Block,K. Nuagaon,LGD,359,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,1126,Block,Kochadhamin,LGD,203,District,1126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -LGD,1457,Block,Kochas,LGD,215,District,1457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,5660,Block,Kochi,LGD,555,District,5660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -LGD,2782,Block,Kochinda,LGD,371,District,2782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,4668,Block,Kodad,LGD,696,District,4668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,5766,Block,Kodaikanal,LGD,572,District,5766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,4600,Block,Kodair,LGD,694,District,4600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,4702,Block,Kodakandla,LGD,689,District,4702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,3082,Block,Kodala,LGD,354,District,3082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,4549,Block,Kodangal,LGD,698,District,4549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,5169,Block,Kodavalur,LGD,515,District,5169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,2527,Block,Koderma,LGD,334,District,2527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -LGD,4420,Block,Kodimial,LGD,681,District,4420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,3837,Block,Kodinar,LGD,675,District,3837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -LGD,3194,Block,Kodinga,LGD,366,District,3194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,6637,Block,Kodumudi,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,5269,Block,Kodumur,LGD,511,District,5269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5655,Block,Kodungallur,LGD,566,District,5655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -LGD,5249,Block,Kodur,LGD,752,District,5249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5039,Block,Koduru,LGD,510,District,5039,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,4443,Block,Koheda,LGD,692,District,4443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,1849,Block,Kohima Sadar,LGD,245,District,1849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -LGD,4475,Block,Kohir,LGD,691,District,4475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,7321,Block,Kohkameta,LGD,637,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false -LGD,2826,Block,Koida,LGD,373,District,2826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,755,Block,Koil,LGD,119,District,755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -LGD,5296,Block,Koilakuntla,LGD,755,District,5296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4569,Block,Koilkonda,LGD,512,District,4569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,1424,Block,Koilwar,LGD,193,District,1424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,3169,Block,Kokasara,LGD,358,District,3169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,57,Block,Kokernag,LGD,1,District,57,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,6403,Block,Kokrajhar,LGD,294,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -LGD,2779,Block,Kolabira,LGD,357,District,2779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -LGD,2471,Block,Kolaghat,LGD,317,District,2471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,7034,Block,Kolar,LGD,396,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -LGD,5591,Block,Kolar,LGD,542,District,5591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -LGD,3411,Block,Kolaras,LGD,432,District,3411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,7002,Block,Kolar Gold Field,LGD,542,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -LGD,7514,Block,Kolathur,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,476,Block,Kolayat,LGD,93,District,476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,2724,Block,Kolebira,LGD,342,District,2724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,7072,Block,Kolhar,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,5301,Block,Kolimigundla,LGD,755,District,5301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5688,Block,Kollam,LGD,559,District,5688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -LGD,4609,Block,Kollapur,LGD,694,District,4609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,5579,Block,Kollegal,LGD,531,District,5579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -LGD,6625,Block,Kolli Hills,LGD,580,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -LGD,5077,Block,Kollipara,LGD,506,District,5077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,5088,Block,Kolluru,LGD,750,District,5088,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7512,Block,Kolnara,LGD,370,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,6130,Block,Koloriang Hq,LGD,233,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,7322,Block,Komakhan,LGD,385,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -LGD,4807,Block,Komarada,LGD,743,District,4807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5134,Block,Komarolu,LGD,790,District,5134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6586,Block,Kombo Circle,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false -LGD,3155,Block,Komna,LGD,368,District,3155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -LGD,6284,Block,Komuravelli,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,5119,Block,Konakanamitla,LGD,790,District,5119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4431,Block,Konaraopet,LGD,683,District,4431,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,855,Block,Konch,LGD,151,District,855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -LGD,1487,Block,Konch,LGD,196,District,1487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,3357,Block,Kondagaon,LGD,643,District,3357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -LGD,6307,Block,Kondamallepally,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4462,Block,Kondapak,LGD,692,District,4462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,5137,Block,Kondapi,LGD,517,District,5137,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,4491,Block,Kondapur,LGD,691,District,4491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,5199,Block,Kondapuram,LGD,504,District,5199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,5156,Block,Kondapuram,LGD,515,District,5156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5941,Block,Kondotty,LGD,562,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -LGD,4558,Block,Kondurg,LGD,518,District,4558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,4761,Block,Konijerla,LGD,509,District,4761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,5943,Block,Konni,LGD,564,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -LGD,3373,Block,Konta,LGD,642,District,3373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -LGD,6627,Block,Koothanallur,LGD,590,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,4203,Block,Kopargaon,LGD,466,District,4203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,5526,Block,Koppa,LGD,532,District,5526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,5467,Block,Koppal,LGD,543,District,5467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -LGD,6574,Block,Kora Circle,LGD,719,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false -LGD,895,Block,Koraon,LGD,120,District,895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -LGD,3207,Block,Koraput,LGD,363,District,3207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,5536,Block,Koratagere,LGD,548,District,5536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,3275,Block,Korba,LGD,383,District,3275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,4055,Block,Korchi,LGD,475,District,4055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,4261,Block,Koregaon,LGD,494,District,4261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,1143,Block,Korha,LGD,201,District,1143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,5122,Block,Korisapadu,LGD,517,District,5122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,1727,Block,Koronu Circle,LGD,235,District,1727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false -LGD,4075,Block,Korpana,LGD,473,District,4075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,4905,Block,Korukonda,LGD,505,District,4905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,4416,Block,Korutla,LGD,681,District,4416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,4551,Block,Kosgi,LGD,721,District,4551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,5251,Block,Kosigi,LGD,511,District,5251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,413,Block,Kosli,LGD,72,District,413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -LGD,338,Block,Kosya Kutauli,LGD,51,District,338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,5191,Block,Kota,LGD,515,District,5191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,3291,Block,Kota,LGD,375,District,3291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,4791,Block,Kotabommali,LGD,519,District,4791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,7275,Block,Kotadol,LGD,760,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,3123,Block,Kotagarh,LGD,359,District,3123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,4371,Block,Kotagiri,LGD,516,District,4371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,5757,Block,Kotagiri,LGD,587,District,5757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -LGD,4889,Block,Kotananduru,LGD,746,District,4889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4351,Block,Kotapally,LGD,684,District,4351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,3467,Block,Kotar,LGD,426,District,3467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -LGD,4874,Block,Kotauratla,LGD,744,District,4874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3805,Block,Kotda Sangani,LGD,457,District,3805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,313,Block,Kotdwara,LGD,52,District,313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,6312,Block,Kotepally,LGD,698,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,6851,Block,Koteranka,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,6956,Block,Kotgarh,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,5346,Block,Kothacheruvu,LGD,754,District,5346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4710,Block,Kothaguda,LGD,688,District,4710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,4738,Block,Kothagudem,LGD,690,District,4738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,4593,Block,Kothakota,LGD,693,District,4593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,5663,Block,Kothamangalam,LGD,555,District,5663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -LGD,5263,Block,Kothapalle,LGD,755,District,5263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6230,Block,Kothapally,LGD,508,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,7537,Block,Kothapally (15),LGD,721,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,7531,Block,Kothapallygori,LGD,687,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,5140,Block,Kotha Patnam,LGD,517,District,5140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,4927,Block,Kothapeta,LGD,747,District,4927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4834,Block,Kothavalasa,LGD,521,District,4834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,3461,Block,Kothi,LGD,426,District,3461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -LGD,7007,Block,Kothi Mahal,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,7556,Block,Kothmba,LGD,669,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -LGD,4560,Block,Kothur,LGD,518,District,4560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,4772,Block,Kothuru,LGD,519,District,4772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,5984,Block,Kotkapura,LGD,29,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -LGD,495,Block,Kotkasim,LGD,770,District,495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,189,Block,Kotkhai,LGD,23,District,189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,6028,Block,Kotkhawda,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,6896,Block,Kotla,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,128,Block,Kotli,LGD,22,District,128,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,3693,Block,Kotma,LGD,390,District,3693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -LGD,3199,Block,Kotpad,LGD,363,District,3199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,538,Block,Kotputli,LGD,782,District,538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,687,Block,Kotra,LGD,117,District,687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,635,Block,Kotri,LGD,92,District,635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,5687,Block,Kottarakkara,LGD,559,District,5687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -LGD,5670,Block,Kottayam,LGD,560,District,5670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -LGD,7108,Block,Kotturu,LGD,738,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -LGD,2367,Block,Kotulpur,LGD,305,District,2367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,1049,Block,Kotwa,LGD,213,District,1049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,7522,Block,Koukuntla,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,4316,Block,Koutala,LGD,699,District,4316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,5862,Block,Kovilpatti,LGD,594,District,5862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,5178,Block,Kovur,LGD,515,District,5178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,4958,Block,Kovvur,LGD,505,District,4958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,4480,Block,Kowdipally,LGD,513,District,4480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,5252,Block,Kowthalam,LGD,511,District,5252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,2117,Block,Koya,LGD,291,District,2117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,5639,Block,Koyilandi,LGD,561,District,5639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -LGD,7345,Block,Koylibeda,LGD,381,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,1648,Block,Koyu Eac,LGD,719,District,1648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false -LGD,4952,Block,Koyyalagudem,LGD,748,District,4952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4851,Block,Koyyuru,LGD,745,District,4851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5682,Block,Kozhenchery,LGD,564,District,5682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -LGD,5640,Block,Kozhikode,LGD,561,District,5640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -LGD,6783,Block,Kralpora,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,7119,Block,Kranti,LGD,314,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,36,Block,Kreeri,LGD,3,District,36,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,163,Block,Krishangarh,LGD,25,District,163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,6264,Block,Krishna,LGD,721,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,2309,Block,Krishnaganj,LGD,320,District,2309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,2308,Block,Krishnagar - I,LGD,320,District,2308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,2306,Block,Krishnagar - II,LGD,320,District,2306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,5891,Block,Krishnagiri,LGD,577,District,5891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -LGD,5277,Block,Krishnagiri,LGD,511,District,5277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5571,Block,Krishnarajanagara,LGD,545,District,5571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,5546,Block,Krishnarajpet,LGD,544,District,5546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -LGD,5770,Block,Krishnarayapuram,LGD,576,District,5770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -LGD,1133,Block,Krityanand Nagar,LGD,214,District,1133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,1721,Block,Kronli (Arzoo Circle),LGD,230,District,1721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false -LGD,5051,Block,Krosuru,LGD,751,District,5051,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3069,Block,Krushna Prasad,LGD,369,District,3069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,5018,Block,Kruthivennu,LGD,510,District,5018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,3372,Block,Kuakonda,LGD,376,District,3372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -LGD,4338,Block,Kubeer,LGD,680,District,4338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,1763,Block,Kubolong,LGD,246,District,1763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,2746,Block,Kuchai,LGD,341,District,2746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,1219,Block,Kuchaikote,LGD,197,District,1219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,6065,Block,Kuchaman City,LGD,768,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5323,Block,Kudair,LGD,502,District,5323,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,4280,Block,Kudal,LGD,495,District,4280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -LGD,5804,Block,Kudavasal,LGD,590,District,5804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,7219,Block,Kudi Bhagtasni,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,5502,Block,Kudligi,LGD,738,District,5502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -LGD,1448,Block,Kudra,LGD,200,District,1448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,7470,Block,Kudumuluguma,LGD,364,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -LGD,4035,Block,Kuhi,LGD,484,District,4035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,1794,Block,Kuhoboto,LGD,764,District,1794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,2936,Block,Kujang,LGD,355,District,2936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -LGD,7093,Block,Kukanoor,LGD,543,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -LGD,6169,Block,Kukarmunda,LGD,641,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -LGD,6327,Block,Kukatpally,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,7351,Block,Kukdur,LGD,382,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -LGD,7314,Block,Kukrel,LGD,377,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -LGD,2750,Block,Kukru,LGD,341,District,2750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,3536,Block,Kukshi,LGD,403,District,3536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,7484,Block,Kukudakhandi,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,4735,Block,Kukunoor,LGD,748,District,4735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7521,Block,Kukunoorpally,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,6439,Block,Kulan St,LGD,61,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -LGD,5819,Block,Kulathur,LGD,582,District,5819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,4468,Block,Kulcharam,LGD,513,District,4468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,59,Block,Kulgam,LGD,622,District,59,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -LGD,7458,Block,Kuliana,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,5771,Block,Kulithalai,LGD,576,District,5771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -LGD,4539,Block,Kulkacharla,LGD,698,District,4539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,118,Block,Kullu,LGD,20,District,118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,868,Block,Kulpahar,LGD,165,District,868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false -LGD,2428,Block,Kulpi,LGD,304,District,2428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2433,Block,Kultali,LGD,304,District,2433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,6634,Block,Kumarapalayam,LGD,580,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -LGD,5382,Block,Kumara Venkata Bhupala Puram,LGD,752,District,5382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7350,Block,Kumarda,LGD,388,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -LGD,2744,Block,Kumardungi,LGD,343,District,2744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,2202,Block,Kumarganj,LGD,310,District,2202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -LGD,6694,Block,Kumarghat,LGD,655,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -LGD,2172,Block,Kumargram,LGD,664,District,2172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -LGD,1163,Block,Kumarkhand,LGD,205,District,1163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,179,Block,Kumarsain,LGD,23,District,179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,5811,Block,Kumbakonam,LGD,586,District,5811,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,642,Block,Kumbhalgarh,LGD,112,District,642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,3681,Block,Kumbhraj,LGD,406,District,3681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -LGD,510,Block,Kumher,LGD,767,District,510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5485,Block,Kumta,LGD,550,District,5485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,4731,Block,Kunavaram,LGD,791,District,4731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7323,Block,Kunda,LGD,382,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -LGD,881,Block,Kunda,LGD,174,District,881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -LGD,2516,Block,Kunda,LGD,323,District,2516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,5759,Block,Kundah,LGD,587,District,5759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -LGD,7382,Block,Kundal,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,3633,Block,Kundam,LGD,411,District,3633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,5522,Block,Kundapura,LGD,549,District,5522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -LGD,5477,Block,Kundgol,LGD,536,District,5477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -LGD,2681,Block,Kundhit,LGD,333,District,2681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false -LGD,7057,Block,Kundrathur,LGD,574,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -LGD,3210,Block,Kundura,LGD,363,District,3210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,5333,Block,Kundurpi,LGD,502,District,5333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5541,Block,Kunigal,LGD,548,District,5541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,7056,Block,Kunihar,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,3839,Block,Kunkavav Vadia,LGD,439,District,3839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,3259,Block,Kunkuri,LGD,380,District,3259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,5976,Block,Kunnam,LGD,581,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -LGD,6598,Block,Kunnamkulam,LGD,566,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -LGD,5657,Block,Kunnathunad,LGD,555,District,5657,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -LGD,5685,Block,Kunnathur,LGD,559,District,5685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -LGD,4337,Block,Kuntala,LGD,680,District,4337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,6928,Block,Kunwariya,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,6830,Block,Kunzer,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,5427,Block,Kuppam,LGD,503,District,5427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,6962,Block,Kupvi,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,1,Block,Kupwara,LGD,8,District,1,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,5389,Block,Kurabalakota,LGD,753,District,5389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7156,Block,Kurabar,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,3666,Block,Kurai,LGD,428,District,3666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,4721,Block,Kuravi,LGD,688,District,4721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,6874,Block,Kurawali,LGD,166,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -LGD,2720,Block,Kurdeg,LGD,342,District,2720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,1213,Block,Kurhani,LGD,208,District,1213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,5103,Block,Kurichedu,LGD,517,District,5103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,5790,Block,Kurinjipadi,LGD,570,District,5790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,4054,Block,Kurkheda,LGD,475,District,4054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,7180,Block,Kurla,LGD,483,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -LGD,5259,Block,Kurnool Rural,LGD,511,District,5259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,7183,Block,Kurnool Urban,LGD,511,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,1117,Block,Kursakatta,LGD,188,District,1117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,1155,Block,Kursela,LGD,201,District,1155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,2161,Block,Kurseong,LGD,309,District,2161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,1546,Block,Kurtha,LGD,611,District,1546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -LGD,2599,Block,Kuru,LGD,336,District,2599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -LGD,3344,Block,Kurud,LGD,377,District,3344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -LGD,7109,Block,Kurugodu,LGD,528,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -LGD,4809,Block,Kurupam,LGD,743,District,4809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3572,Block,Kurwai,LGD,437,District,3572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,654,Block,Kushalgarh,LGD,88,District,654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,7124,Block,Kushalnagar,LGD,541,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -LGD,1197,Block,Kusheshwar Asthan,LGD,195,District,1197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,1198,Block,Kusheshwar Asthan Purbi,LGD,195,District,1198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,2200,Block,Kushmundi,LGD,310,District,2200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -LGD,5465,Block,Kushtagi,LGD,543,District,5465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -LGD,3702,Block,Kusmi,LGD,433,District,3702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -LGD,3240,Block,Kusmi(Samri),LGD,649,District,3240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,4755,Block,Kusumanchi,LGD,509,District,4755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,7478,Block,Kusumi,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,5797,Block,Kuthalam,LGD,735,District,5797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -LGD,3824,Block,Kutiyana,LGD,456,District,3824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -LGD,2813,Block,Kutra,LGD,373,District,2813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,7260,Block,Kutru,LGD,636,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -LGD,5675,Block,Kuttanad,LGD,554,District,5675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -LGD,1484,Block,Kutumba,LGD,189,District,1484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,7052,Block,K V Kuppam,LGD,595,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -LGD,2262,Block,Labpur,LGD,307,District,2262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,552,Block,Lachhmangarh,LGD,114,District,552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,503,Block,Lachhmangarh,LGD,87,District,503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,6098,Block,Lada Circle,LGD,787,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,1084,Block,Ladania,LGD,206,District,1084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,125,Block,Lad Bharol,LGD,22,District,125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,557,Block,Ladnu,LGD,768,District,557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,667,Block,Ladpura,LGD,109,District,667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -LGD,6410,Block,Ladwa,LGD,68,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -LGD,6902,Block,Lagru,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,3398,Block,Lahar,LGD,395,District,3398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,2028,Block,Laharighat,LGD,296,District,2028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -LGD,805,Block,Laharpur,LGD,183,District,805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -LGD,1253,Block,Lahladpur,LGD,218,District,1253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,115,Block,Lahul,LGD,21,District,115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -LGD,2827,Block,Lahunipara,LGD,373,District,2827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,2778,Block,Laikera,LGD,357,District,2778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -LGD,3264,Block,Lailunga,LGD,386,District,3264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,1694,Block,Laju Sdo,LGD,239,District,1694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -LGD,4043,Block,Lakhandur,LGD,471,District,4043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -LGD,6168,Block,Lakhani,LGD,789,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,4041,Block,Lakhani,LGD,471,District,4041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -LGD,6468,Block,Lakhan Majra St,LGD,73,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -LGD,3248,Block,Lakhanpur,LGD,389,District,3248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -LGD,2771,Block,Lakhanpur,LGD,357,District,2771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -LGD,801,Block,Lakhimpur,LGD,159,District,801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -LGD,2013,Block,Lakhipur,LGD,287,District,2013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -LGD,2100,Block,Lakhipur,LGD,282,District,2100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -LGD,1368,Block,Lakhisarai,LGD,204,District,1368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -LGD,3659,Block,Lakhnadon,LGD,428,District,3659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,1099,Block,Lakhnaur,LGD,206,District,1099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,3722,Block,Lakhpat,LGD,449,District,3722,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,3791,Block,Lakhtar,LGD,460,District,3791,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,4833,Block,Lakkavarapukota,LGD,521,District,4833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,5240,Block,Lakkireddipalli,LGD,753,District,5240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1233,Block,Lakri Nabiganj,LGD,222,District,1233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,355,Block,Laksar,LGD,50,District,355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -LGD,1529,Block,Lakshmipur,LGD,198,District,1529,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,3203,Block,Lakshmipur,LGD,363,District,3203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,2108,Block,Lala,LGD,289,District,2108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -LGD,7301,Block,Lal Bahadur Nagar,LGD,388,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -LGD,3671,Block,Lalbarra,LGD,392,District,3671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,6351,Block,Laldhang,LGD,50,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -LGD,880,Block,Lalganj,LGD,174,District,880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -LGD,969,Block,Lalganj,LGD,123,District,969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -LGD,826,Block,Lalganj,LGD,175,District,826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -LGD,1001,Block,Lalganj,LGD,170,District,1001,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -LGD,1270,Block,Lalganj,LGD,224,District,1270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,2229,Block,Lalgola,LGD,319,District,2229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,5777,Block,Lalgudi,LGD,591,District,5777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,862,Block,Lalitpur,LGD,161,District,862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -LGD,345,Block,Lalkuan,LGD,51,District,345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,6792,Block,Lalpora,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,3818,Block,Lalpur,LGD,447,District,3818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -LGD,7258,Block,Lalpur Thana,LGD,647,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false -LGD,537,Block,Lalsot,LGD,97,District,537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,917,Block,Lambhua,LGD,185,District,917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -LGD,7285,Block,Lambloo,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,6368,Block,Lamgada,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,1881,Block,Lamphelpat,LGD,256,District,1881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -LGD,1879,Block,Lamsang,LGD,256,District,1879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -LGD,7399,Block,Lamta,LGD,392,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,6789,Block,Langate,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,4273,Block,Lanja,LGD,492,District,4273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,3676,Block,Lanji,LGD,392,District,3676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,3162,Block,Lanjigarh,LGD,358,District,3162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,2040,Block,Lanka,LGD,709,District,2040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -LGD,310,Block,Lansdowne,LGD,52,District,310,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,2697,Block,Lapung,LGD,339,District,2697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,45,Block,Lar,LGD,626,District,45,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -LGD,6820,Block,Larnoo,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,6774,Block,Laroka,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,691,Block,Lasadiya,LGD,777,District,691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,1997,Block,Laskein,LGD,275,District,1997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false -LGD,2639,Block,Latehar,LGD,335,District,2639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,3570,Block,Lateri,LGD,437,District,3570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,1733,Block,Lathao Circle,LGD,678,District,1733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false -LGD,3841,Block,Lathi,LGD,439,District,3841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,2823,Block,Lathikata,LGD,373,District,2823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,7236,Block,Latori,LGD,648,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,6737,Block,Latti,LGD,14,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -LGD,4226,Block,Latur,LGD,481,District,4226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,1085,Block,Laukaha,LGD,206,District,1085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,1086,Block,Laukahi,LGD,206,District,1086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,1018,Block,Lauriya,LGD,211,District,1018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,2157,Block,Lava,LGD,702,District,2157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -LGD,7246,Block,Lavan,LGD,644,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,7050,Block,Lavaold,LGD,702,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -LGD,4804,Block,Laveru,LGD,519,District,4804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,3425,Block,Lavkush Nagar,LGD,398,District,3425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,2517,Block,Lawalaung,LGD,323,District,2517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,6909,Block,Lawan,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,1917,Block,Lawngtlai,LGD,264,District,1917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false -LGD,1689,Block,Lawnu Circle,LGD,666,District,1689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false -LGD,4345,Block,Laxmanchanda,LGD,680,District,4345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,7083,Block,Laxmeshwar,LGD,537,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -LGD,6266,Block,Laxmidevipalli,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,4787,Block,Laxminarasupeta,LGD,519,District,4787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,10,Block,Leh,LGD,9,District,10,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -LGD,273,Block,Lehra,LGD,43,District,273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -LGD,1735,Block,Lekang Mahadevpur Circle,LGD,678,District,1735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false -LGD,5365,Block,Lepakshi,LGD,754,District,5365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2805,Block,Lephripara,LGD,373,District,2805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,1603,Block,Leporiang Circle,LGD,237,District,1603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,6555,Block,Lhou Circle,LGD,238,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,6497,Block,Lhungtin,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,6536,Block,Lidhora,LGD,434,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,1640,Block,Likabali Sdo,LGD,719,District,1640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false -LGD,3842,Block,Lilia,LGD,439,District,3842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,1876,Block,Lilong,LGD,259,District,1876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false -LGD,3797,Block,Limbdi,LGD,460,District,3797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,1608,Block,Limeking Circle,LGD,241,District,1608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,3892,Block,Limkheda,LGD,445,District,3892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,4598,Block,Lingal,LGD,694,District,4598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,5218,Block,Lingala,LGD,504,District,5218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4700,Block,Lingalaghanpur,LGD,689,District,4700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,4388,Block,Lingampet,LGD,685,District,4388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,4945,Block,Lingapalem,LGD,748,District,4945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6311,Block,Lingapur,LGD,699,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,5150,Block,Lingasamudram,LGD,517,District,5150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,5459,Block,Lingasugur,LGD,546,District,5459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -LGD,1632,Block,Liromoba Eac,LGD,243,District,1632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false -LGD,2573,Block,Litipara,LGD,337,District,2573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -LGD,5924,Block,Little Andaman,LGD,602,District,5924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -LGD,6482,Block,LM,LGD,260,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false -LGD,3804,Block,Lodhika,LGD,457,District,3804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,4107,Block,Loha,LGD,485,District,4107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,336,Block,Lohaghat,LGD,48,District,336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -LGD,6729,Block,Lohai Malhar,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,3361,Block,Lohandiguda,LGD,374,District,3361,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,4242,Block,Lohara,LGD,488,District,4242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -LGD,2601,Block,Lohardaga,LGD,336,District,2601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -LGD,7450,Block,Loharghat,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,401,Block,Loharu,LGD,59,District,401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -LGD,6391,Block,Lohawat,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3141,Block,Loisinga,LGD,345,District,3141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,4342,Block,Lokeswaram,LGD,680,District,4342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,6791,Block,Lolab (Sogam),LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,3987,Block,Lonar,LGD,472,District,3987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,1758,Block,Longchem,LGD,246,District,1758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,6074,Block,Longding Hq,LGD,666,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false -LGD,1816,Block,Longkhim,LGD,249,District,1816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false -LGD,1833,Block,Longleng,LGD,615,District,1833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false -LGD,6491,Block,Longmai,LGD,714,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false -LGD,1840,Block,Longmatra,LGD,614,District,1840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -LGD,6597,Block,Longo Circle,LGD,239,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -LGD,1751,Block,Longshen,LGD,247,District,1751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,6692,Block,Longtharai Valley,LGD,269,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -LGD,6089,Block,Loni,LGD,145,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -LGD,7341,Block,Lopoke,LGD,27,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -LGD,3290,Block,Lormi,LGD,647,District,3290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false -LGD,1786,Block,Lotsu,LGD,250,District,1786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,227,Block,Ludhiana (East),LGD,36,District,227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -LGD,228,Block,Ludhiana (West),LGD,36,District,228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -LGD,1557,Block,Lumla Adc,LGD,238,District,1557,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,7337,Block,Lumshnong,LGD,657,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false -LGD,3882,Block,Lunawada,LGD,669,District,3882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -LGD,3251,Block,Lundra,LGD,389,District,3251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -LGD,1914,Block,Lunglei,LGD,265,District,1914,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false -LGD,1913,Block,Lungsen,LGD,265,District,1913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false -LGD,572,Block,Luni,LGD,107,District,572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,475,Block,Lunkaransar,LGD,93,District,475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,4353,Block,Luxettipet,LGD,684,District,4353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,6578,Block,Lyngok Longtoi Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,6767,Block,Machail,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,4380,Block,Machareddy,LGD,685,District,4380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,5048,Block,Machavaram,LGD,751,District,5048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5040,Block,Macherla,LGD,751,District,5040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3212,Block,Machh Kund,LGD,363,District,3212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,983,Block,Machhlishahr,LGD,152,District,983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -LGD,6339,Block,Machhor,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,1892,Block,Machi,LGD,716,District,1892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false -LGD,6785,Block,Machil,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,7429,Block,Machilipatnam North,LGD,510,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,5034,Block,Machilipatnam South,LGD,510,District,5034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,6987,Block,Mada,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -LGD,5350,Block,Madakasira,LGD,754,District,5350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5392,Block,Madanapalle,LGD,753,District,5392,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6289,Block,Madanapur,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,6362,Block,Madannegi,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,1486,Block,Madanpur,LGD,189,District,1486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,3160,Block,Madanpur Rampur,LGD,358,District,3160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,2170,Block,Madarihat,LGD,664,District,2170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -LGD,5907,Block,Madathukulam,LGD,634,District,5907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,5292,Block,Maddikera (East),LGD,511,District,5292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5127,Block,Maddipadu,LGD,517,District,5127,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,6300,Block,Maddirala,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,5551,Block,Maddur,LGD,544,District,5551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -LGD,4673,Block,Maddur,LGD,692,District,4673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,4554,Block,Maddur,LGD,721,District,4554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,4564,Block,Madgul,LGD,518,District,4564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,4245,Block,Madha,LGD,496,District,4245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,1100,Block,Madhepur,LGD,206,District,1100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,1161,Block,Madhepura,LGD,205,District,1161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,4766,Block,Madhira,LGD,509,District,4766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,851,Block,Madhogarh,LGD,151,District,851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -LGD,7139,Block,Madhorajpura,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,972,Block,Madhuban,LGD,168,District,972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -LGD,1055,Block,Madhuban,LGD,213,District,1055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1093,Block,Madhubani,LGD,206,District,1093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,1021,Block,Madhubani,LGD,211,District,1021,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,5535,Block,Madhugiri,LGD,548,District,5535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,2550,Block,Madhupur,LGD,324,District,2550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,1080,Block,Madhwapur,LGD,206,District,1080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,5566,Block,Madikeri,LGD,541,District,5566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -LGD,4372,Block,Madnoor,LGD,685,District,4372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,4857,Block,Madugula,LGD,744,District,4857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6305,Block,Madugulapally,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,5986,Block,Madukkari,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,5960,Block,Madurai East,LGD,578,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,5836,Block,Madurai North,LGD,578,District,5836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,5841,Block,Madurai South,LGD,578,District,5841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,5961,Block,Madurai West,LGD,578,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,5710,Block,Maduranthakam,LGD,730,District,5710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -LGD,5981,Block,Maduravoyal,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,7410,Block,Madwas,LGD,433,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -LGD,5605,Block,Magadi,LGD,631,District,5605,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -LGD,6814,Block,Magam,LGD,2,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,4590,Block,Maganoor,LGD,721,District,4590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,3345,Block,Magarlod,LGD,377,District,3345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -LGD,2424,Block,Magrahat - I,LGD,304,District,2424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2423,Block,Magrahat - II,LGD,304,District,2423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,4255,Block,Mahabaleshwar,LGD,494,District,4255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,4718,Block,Mahabubabad,LGD,688,District,4718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,6258,Block,Mahabubnagar Rural,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,4568,Block,Mahabubnagar Urban,LGD,512,District,4568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,4185,Block,Mahad,LGD,491,District,4185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,4403,Block,Mahadevpur,LGD,687,District,4403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,2558,Block,Mahagama,LGD,330,District,2558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,4087,Block,Mahagaon,LGD,500,District,4087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,2933,Block,Mahakalapada,LGD,360,District,2933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,404,Block,Maham,LGD,73,District,404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -LGD,5285,Block,Mahanandi,LGD,755,District,5285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2956,Block,Mahanga,LGD,350,District,2956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,6725,Block,Mahanpur,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,823,Block,Maharajganj,LGD,175,District,823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -LGD,947,Block,Maharajganj,LGD,164,District,947,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -LGD,1236,Block,Maharajganj,LGD,222,District,1236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,3428,Block,Maharajpur,LGD,398,District,3428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,6837,Block,Maharanipeta,LGD,520,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,3341,Block,Mahasamund,LGD,385,District,3341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -LGD,920,Block,Mahasi,LGD,125,District,920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -LGD,763,Block,Mahavan,LGD,167,District,763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -LGD,5913,Block,Mahe,LGD,600,District,5913,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -LGD,411,Block,Mahendragarh,LGD,69,District,411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -LGD,3757,Block,Mahesana,LGD,451,District,3757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,7441,Block,Mahesana City,LGD,451,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,2577,Block,Maheshpur,LGD,337,District,2577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -LGD,3546,Block,Maheshwar,LGD,414,District,3546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,4544,Block,Maheshwaram,LGD,518,District,4544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,3510,Block,Mahidpur,LGD,435,District,3510,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,2475,Block,Mahisadal,LGD,317,District,2475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,1173,Block,Mahishi,LGD,216,District,1173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,2075,Block,Mahmora,LGD,708,District,2075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -LGD,807,Block,Mahmudabad,LGD,183,District,807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -LGD,1283,Block,Mahnar,LGD,224,District,1283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,870,Block,Mahoba,LGD,165,District,870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false -LGD,6880,Block,Maholi,LGD,183,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -LGD,6850,Block,Mahore,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,863,Block,Mahroni,LGD,161,District,863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -LGD,1275,Block,Mahua,LGD,224,District,1275,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,2637,Block,Mahuadanr,LGD,335,District,2637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,3877,Block,Mahudha,LGD,450,District,3877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,4095,Block,Mahur,LGD,485,District,4095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,3941,Block,Mahuva,LGD,459,District,3941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,3860,Block,Mahuva,LGD,443,District,3860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,534,Block,Mahwa,LGD,97,District,534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,3470,Block,Maihar,LGD,784,District,3470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,1016,Block,Mainatanr,LGD,211,District,1016,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,3254,Block,Mainpat,LGD,389,District,3254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -LGD,3337,Block,Mainpur,LGD,645,District,3337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -LGD,775,Block,Mainpuri,LGD,166,District,775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -LGD,6702,Block,Maira Mandrian,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,1982,Block,Mairang,LGD,740,District,1982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false -LGD,1240,Block,Mairwa,LGD,222,District,1240,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,6871,Block,Maitha,LGD,156,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -LGD,4219,Block,Majalgaon,LGD,470,District,4219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,75,Block,Majalta,LGD,14,District,75,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -LGD,3701,Block,Majhauli,LGD,433,District,3701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -LGD,1027,Block,Majhaulia,LGD,211,District,1027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,6919,Block,Majheen,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,2745,Block,Majhgaon,LGD,343,District,2745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,3462,Block,Majhgawan,LGD,426,District,3462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -LGD,2499,Block,Majhiaon,LGD,328,District,2499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,3628,Block,Majholi,LGD,411,District,3628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,6854,Block,Majitha,LGD,27,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -LGD,1065,Block,Majorganj,LGD,221,District,1065,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,7121,Block,Majra,LGD,24,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,2076,Block,Majuli,LGD,706,District,2076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false -LGD,3937,Block,Majura,LGD,459,District,3937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,4875,Block,Makavarapalem,LGD,744,District,4875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3358,Block,Makdi,LGD,643,District,3358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -LGD,6995,Block,Makdon,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,1262,Block,Maker,LGD,218,District,1262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,3616,Block,Makhan Nagar,LGD,409,District,3616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,1540,Block,Makhdumpur,LGD,199,District,1540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -LGD,4813,Block,Makkuva,LGD,743,District,4813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4367,Block,Makloor,LGD,516,District,4367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,565,Block,Makrana,LGD,768,District,565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,6969,Block,Makridi,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,3680,Block,Maksoodangarh,LGD,406,District,3680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -LGD,4589,Block,Makthal,LGD,721,District,4589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,2167,Block,Mal,LGD,314,District,2167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,6382,Block,Malakhera,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,528,Block,Malarna Doongar,LGD,113,District,528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,5552,Block,Malavalli,LGD,544,District,5552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -LGD,2217,Block,Maldah (Old),LGD,316,District,2217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,4604,Block,Maldakal,LGD,695,District,4604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,4146,Block,Malegaon,LGD,487,District,4146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,3995,Block,Malegaon,LGD,499,District,3995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -LGD,269,Block,Malerkotla,LGD,737,District,269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -LGD,7014,Block,Malharganj,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,3493,Block,Malhargarh,LGD,416,District,3493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,4405,Block,Malharrao,LGD,687,District,4405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,3833,Block,Malia Hatina,LGD,448,District,3833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,819,Block,Malihabad,LGD,162,District,819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -LGD,4938,Block,Malikipuram,LGD,747,District,4938,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3798,Block,Maliya,LGD,673,District,3798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -LGD,4521,Block,Malkajgiri,LGD,700,District,4521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,3220,Block,Malkangiri,LGD,364,District,3220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -LGD,3979,Block,Malkapur,LGD,472,District,3979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,3285,Block,Malkharoda,LGD,762,District,3285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,7536,Block,Mallampally,LGD,720,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,5680,Block,Mallappally,LGD,564,District,5680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -LGD,4394,Block,Mallapur,LGD,681,District,4394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,4413,Block,Mallial,LGD,681,District,4413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,239,Block,Malout,LGD,39,District,239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -LGD,3771,Block,Malpur,LGD,672,District,3771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -LGD,615,Block,Malpura,LGD,116,District,615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,4250,Block,Malshiras,LGD,496,District,4250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,6370,Block,Malsisar,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,3445,Block,Malthon,LGD,425,District,3445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,5592,Block,Malur,LGD,542,District,5592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -LGD,7589,Block,Malviya Nagar,LGD,83,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -LGD,4278,Block,Malwan,LGD,495,District,4278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -LGD,4346,Block,Mamada,LGD,680,District,4346,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,7165,Block,Mambalam,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,4936,Block,Mamidikuduru,LGD,747,District,4936,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6967,Block,Mamlig,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,4259,Block,Man,LGD,494,District,4259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,5776,Block,Manachanallur,LGD,591,District,5776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,4427,Block,Manakondur,LGD,508,District,4427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,117,Block,Manali,LGD,20,District,117,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,5833,Block,Manamadurai,LGD,585,District,5833,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,5827,Block,Manamelkudi,LGD,582,District,5827,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,5635,Block,Mananthavady,LGD,567,District,5635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -LGD,5781,Block,Manapparai,LGD,591,District,5781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,3491,Block,Manasa,LGD,419,District,3491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -LGD,2628,Block,Manatu,LGD,338,District,2628,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,3825,Block,Manavadar,LGD,448,District,3825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,3538,Block,Manawar,LGD,403,District,3538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,2395,Block,Manbazar - I,LGD,321,District,2395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,2396,Block,Manbazar - II,LGD,321,District,2396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,6348,Block,Manch,LGD,48,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -LGD,4547,Block,Manchal,LGD,518,District,4547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,1737,Block,Manchal Circle,LGD,628,District,1737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -LGD,7404,Block,Manchenahalli,LGD,630,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -LGD,4354,Block,Mancherial,LGD,684,District,4354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,631,Block,Mandal,LGD,92,District,631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,6713,Block,Mandal,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,3777,Block,Mandal,LGD,438,District,3777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,637,Block,Mandalgarh,LGD,92,District,637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,4352,Block,Mandamarri,LGD,684,District,4352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,4266,Block,Mandangad,LGD,492,District,4266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,6970,Block,Mandap,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,4920,Block,Mandapeta,LGD,505,District,4920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,2693,Block,Mandar,LGD,339,District,2693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,4776,Block,Mandasa,LGD,519,District,4776,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,5015,Block,Mandavalli,LGD,748,District,5015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7145,Block,Mandawa,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,6914,Block,Mandawar,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,7383,Block,Mandhan,LGD,782,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,133,Block,Mandi,LGD,22,District,133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,17,Block,Mandi,LGD,10,District,17,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -LGD,2429,Block,Mandirbazar,LGD,304,District,2429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,7308,Block,Mandir Hasoud,LGD,387,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -LGD,3643,Block,Mandla,LGD,415,District,3643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -LGD,524,Block,Mandrayal,LGD,108,District,524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,2565,Block,Mandro,LGD,340,District,2565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,3496,Block,Mandsaur,LGD,416,District,3496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,7005,Block,Mandsaur Nagar,LGD,416,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,2661,Block,Mandu,LGD,607,District,2661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -LGD,3729,Block,Mandvi,LGD,449,District,3729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,3935,Block,Mandvi,LGD,459,District,3935,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,5550,Block,Mandya,LGD,544,District,5550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -LGD,3234,Block,Manendragarh,LGD,760,District,3234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,1398,Block,Maner,LGD,212,District,1398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,419,Block,Manesar,LGD,62,District,419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,7465,Block,Maneswar,LGD,371,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,6466,Block,Manethi St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -LGD,5055,Block,Mangalagiri,LGD,506,District,5055,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,7178,Block,Mangalbarey,LGD,742,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -LGD,2148,Block,Mangaldoi (Pt),LGD,283,District,2148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -LGD,5561,Block,Mangaluru,LGD,534,District,5561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,4252,Block,Mangalvedhe,LGD,496,District,4252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,1548,Block,Mangan,LGD,226,District,1548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false -LGD,4181,Block,Mangaon,LGD,491,District,4181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,4686,Block,Mangapet,LGD,720,District,4686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,3474,Block,Mangawan,LGD,424,District,3474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,1828,Block,Mangko,LGD,765,District,1828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1764,Block,Mangkolemba,LGD,246,District,1764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,2278,Block,Mangolkote,LGD,306,District,2278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,670,Block,Mangrol,LGD,89,District,670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -LGD,3933,Block,Mangrol,LGD,459,District,3933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,3832,Block,Mangrol,LGD,448,District,3832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,3996,Block,Mangrulpir,LGD,499,District,3996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -LGD,1185,Block,Manigachhi,LGD,195,District,1185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,1156,Block,Manihari,LGD,201,District,1156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,2635,Block,Manika,LGD,335,District,2635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -LGD,2219,Block,Manikchak,LGD,316,District,2219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,5930,Block,Manikpur,LGD,136,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false -LGD,7199,Block,Manikpur,LGD,281,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -LGD,6515,Block,Maninagar,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,6933,Block,Maniya,LGD,98,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -LGD,6772,Block,Manjakote,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,5932,Block,Manjeswaram,LGD,558,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -LGD,1225,Block,Manjha,LGD,197,District,1225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,886,Block,Manjhanpur,LGD,158,District,886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -LGD,2741,Block,Manjhari,LGD,343,District,2741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,1255,Block,Manjhi,LGD,218,District,1255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,2012,Block,Mankachar,LGD,707,District,2012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false -LGD,931,Block,Mankapur,LGD,147,District,931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -LGD,6779,Block,Mankote,LGD,10,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -LGD,5985,Block,Manmangalam,LGD,576,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -LGD,1673,Block,Manmao Eac,LGD,229,District,1673,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,5808,Block,Mannargudi,LGD,590,District,5808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,5648,Block,Mannarkad,LGD,563,District,5648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -LGD,6273,Block,Manoharabad,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,2735,Block,Manoharpur,LGD,343,District,2735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,681,Block,Manohar Thana,LGD,105,District,681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,4451,Block,Manoor,LGD,691,District,4451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,4611,Block,Manopad,LGD,695,District,4611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,3258,Block,Manora,LGD,380,District,3258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,3998,Block,Manora,LGD,499,District,3998,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -LGD,1494,Block,Manpur,LGD,196,District,1494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,3309,Block,Manpur,LGD,761,District,3309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,3484,Block,Manpur,LGD,436,District,3484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -LGD,249,Block,Mansa,LGD,37,District,249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false -LGD,3774,Block,Mansa,LGD,446,District,3774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -LGD,1152,Block,Mansahi,LGD,201,District,1152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,1324,Block,Mansi,LGD,202,District,1324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -LGD,1309,Block,Mansurchak,LGD,191,District,1309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,2285,Block,Manteswar,LGD,306,District,2285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,4132,Block,Mantha,LGD,479,District,4132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -LGD,4401,Block,Manthani,LGD,682,District,4401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,5250,Block,Mantralayam,LGD,511,District,5250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5183,Block,Manubolu,LGD,515,District,5183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,4727,Block,Manuguru,LGD,690,District,4727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,6647,Block,Manur,LGD,592,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -LGD,5462,Block,Manvi,LGD,546,District,5462,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -LGD,4119,Block,Manwath,LGD,489,District,4119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,6650,Block,Marakanam,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,1108,Block,Marauna,LGD,223,District,1108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,7319,Block,Mardapal,LGD,643,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -LGD,4884,Block,Maredumilli,LGD,791,District,4884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4092,Block,Maregaon,LGD,500,District,4092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,2062,Block,Margherita,LGD,302,District,2062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -LGD,2551,Block,Margo Munda,LGD,324,District,2551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,6715,Block,Marh,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,1260,Block,Marhaura,LGD,218,District,1260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,6731,Block,Marheen,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,985,Block,Mariahu,LGD,152,District,985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -LGD,2081,Block,Mariani,LGD,290,District,2081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -LGD,2029,Block,Marigaon,LGD,296,District,2029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -LGD,1002,Block,Marihan,LGD,170,District,1002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -LGD,6263,Block,Marikal,LGD,721,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,4720,Block,Maripeda,LGD,688,District,4720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,1666,Block,Mariyang Adc,LGD,240,District,1666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,2531,Block,Markacho,LGD,334,District,2531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -LGD,5115,Block,Markapuram,LGD,790,District,5115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6282,Block,Markook,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,6751,Block,Marmat,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,6554,Block,Maro Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,4512,Block,Marpalle,LGD,698,District,4512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,4500,Block,Marredpally,LGD,507,District,4500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,7297,Block,Marri Bangla(Deori),LGD,646,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -LGD,4649,Block,Marriguda,LGD,514,District,4649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,5163,Block,Marripadu,LGD,515,District,5163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5129,Block,Marripudi,LGD,517,District,5129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,2932,Block,Marsaghai,LGD,360,District,2932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,6165,Block,Martinganjon,LGD,123,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -LGD,5106,Block,Martur,LGD,750,District,5106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5954,Block,Marungapuri,LGD,591,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,69,Block,Marwah,LGD,620,District,69,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,3288,Block,Marwahi,LGD,734,District,3288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false -LGD,1203,Block,Marwan,LGD,208,District,1203,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,602,Block,Marwar Junction,LGD,111,District,602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -LGD,7190,Block,Masaipet,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,2675,Block,Masalia,LGD,326,District,2675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,6379,Block,Masalpur,LGD,108,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,1408,Block,Masaurhi,LGD,212,District,1408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,1248,Block,Mashrakh,LGD,218,District,1248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,7101,Block,Maski,LGD,546,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -LGD,3296,Block,Masturi,LGD,375,District,3296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,610,Block,Masuda,LGD,774,District,610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,762,Block,Mat,LGD,167,District,762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -LGD,3875,Block,Matar,LGD,450,District,3875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,410,Block,Matenhail,LGD,64,District,410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -LGD,2181,Block,Mathabhanga - I,LGD,308,District,2181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,2182,Block,Mathabhanga-II,LGD,308,District,2182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,5701,Block,Mathavaram,LGD,568,District,5701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,3221,Block,Mathili,LGD,364,District,3221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -LGD,764,Block,Mathura,LGD,167,District,764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -LGD,2430,Block,Mathurapur - I,LGD,304,District,2430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2436,Block,Mathurapur - II,LGD,304,District,2436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2015,Block,Matia,LGD,287,District,2015,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -LGD,7581,Block,Matiala,LGD,84,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -LGD,2168,Block,Matiali,LGD,314,District,2168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,2162,Block,Matigara,LGD,309,District,2162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,1320,Block,Matihani,LGD,191,District,1320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,6412,Block,Matlauda,LGD,71,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -LGD,4670,Block,Mattampally,LGD,696,District,4670,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,876,Block,Mau,LGD,136,District,876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false -LGD,7000,Block,Mau,LGD,395,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,4029,Block,Mauda,LGD,484,District,4029,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,867,Block,Maudaha,LGD,149,District,867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -LGD,3477,Block,Mauganj,LGD,766,District,3477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,7222,Block,Maulasar,LGD,768,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,973,Block,Maunath Bhanjan,LGD,168,District,973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -LGD,6858,Block,Maur,LGD,28,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -LGD,859,Block,Mauranipur,LGD,153,District,859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -LGD,543,Block,Mauzamabad,LGD,102,District,543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,6222,Block,Mavala,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,5678,Block,Mavelikkara,LGD,554,District,5678,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -LGD,685,Block,Mavli,LGD,117,District,685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,4191,Block,Mawal,LGD,490,District,4191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,733,Block,Mawana,LGD,169,District,733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -LGD,7456,Block,Mawhati,LGD,276,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -LGD,1991,Block,Mawkynrew,LGD,274,District,1991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,1984,Block,Mawkyrwat,LGD,658,District,1984,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false -LGD,6540,Block,Mawlai,LGD,274,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,6541,Block,Mawpat,LGD,274,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,1988,Block,Mawphlang,LGD,274,District,1988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,1990,Block,Mawryngkneng,LGD,274,District,1990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,1979,Block,Mawshynrut,LGD,279,District,1979,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false -LGD,1993,Block,Mawsynram,LGD,274,District,1993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,1981,Block,Mawthadraishan,LGD,740,District,1981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false -LGD,5920,Block,Mayabunder,LGD,632,District,5920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -LGD,5796,Block,Mayiladuthurai,LGD,735,District,5796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -LGD,2177,Block,Maynaguri,LGD,314,District,2177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,2026,Block,Mayong,LGD,296,District,2026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -LGD,2255,Block,Mayureswar - I,LGD,307,District,2255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2256,Block,Mayureswar - II,LGD,307,District,2256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2521,Block,Mayur Hand,LGD,323,District,2521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,2153,Block,Mazbat,LGD,617,District,2153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -LGD,6369,Block,Mdawara,LGD,161,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -LGD,1656,Block,Mebo Adc,LGD,232,District,1656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -LGD,1622,Block,Mechuka Adc,LGD,725,District,1622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false -LGD,4456,Block,Medak,LGD,513,District,4456,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,4519,Block,Medchal,LGD,700,District,4519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,5073,Block,Medikonduru,LGD,506,District,5073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,2633,Block,Medininagar(Daltonganj),LGD,338,District,2633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,4415,Block,Medipalli,LGD,681,District,4415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,6318,Block,Medipally,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,1799,Block,Medziphema,LGD,758,District,1799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,5668,Block,Meenachil,LGD,560,District,5668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -LGD,785,Block,Meerganj,LGD,130,District,785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -LGD,734,Block,Meerut,LGD,169,District,734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -LGD,3708,Block,Meghnagar,LGD,412,District,3708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -LGD,3765,Block,Meghraj,LGD,672,District,3765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -LGD,7409,Block,Mehal Kalan,LGD,605,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -LGD,6894,Block,Mehatpur,LGD,26,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,941,Block,Mehdawal,LGD,178,District,941,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -LGD,2555,Block,Meherma,LGD,330,District,2555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,3393,Block,Mehgaon,LGD,395,District,3393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,3982,Block,Mehkar,LGD,472,District,3982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,3873,Block,Mehmedabad,LGD,450,District,3873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,970,Block,Mehnagar,LGD,123,District,970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -LGD,6080,Block,Mehrauli,LGD,83,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -LGD,1057,Block,Mehsi,LGD,213,District,1057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,894,Block,Meja,LGD,120,District,894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -LGD,2357,Block,Mejhia,LGD,305,District,2357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,2180,Block,Mekliganj,LGD,308,District,2180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,4774,Block,Meliaputti,LGD,519,District,4774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,4671,Block,Mellachervu,LGD,696,District,4671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,6652,Block,Melmalaiyanur,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,5835,Block,Melur,LGD,578,District,5835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,1803,Block,Meluri,LGD,788,District,1803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,2291,Block,Memari - I,LGD,306,District,2291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2292,Block,Memari - II,LGD,306,District,2292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,3830,Block,Mendarda,LGD,448,District,3830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,18,Block,Mendhar,LGD,10,District,18,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -LGD,6237,Block,Mendora,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,1604,Block,Mengio Eac,LGD,237,District,1604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,4824,Block,Mentada,LGD,521,District,4824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,4822,Block,Merakamudidam,LGD,521,District,4822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,2508,Block,Meral (Pipra Kalan),LGD,328,District,2508,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,1765,Block,Merangmen,LGD,246,District,1765,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,562,Block,Merta,LGD,110,District,562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,1522,Block,Meskaur,LGD,210,District,1522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,1740,Block,Metengliang Circle,LGD,628,District,1740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -LGD,4417,Block,Metpalli,LGD,681,District,4417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,5895,Block,Mettupalayam,LGD,569,District,5895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,5736,Block,Mettur,LGD,584,District,5736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,4184,Block,Mhasla,LGD,491,District,4184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,1680,Block,Miao Adc,LGD,229,District,1680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,4566,Block,Midjil,LGD,512,District,4566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,2453,Block,Midnapore,LGD,318,District,2453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,5267,Block,Midthur,LGD,755,District,5267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1659,Block,Migging Circle,LGD,240,District,1659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,6862,Block,Mihinpurwa Motipur,LGD,125,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -LGD,3397,Block,Mihona,LGD,395,District,3397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,2030,Block,Mikirbheta,LGD,296,District,2030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -LGD,728,Block,Milak,LGD,176,District,728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -LGD,903,Block,Milkipur,LGD,140,District,903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -LGD,2333,Block,Minakhan,LGD,303,District,2333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,1205,Block,Minapur,LGD,208,District,1205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,5629,Block,Minicoy,LGD,553,District,5629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -LGD,1717,Block,Mipi,LGD,230,District,1717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false -LGD,4302,Block,Miraj,LGD,493,District,4302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,4464,Block,Mirdoddi,LGD,692,District,4464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,2160,Block,Mirik,LGD,309,District,2160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,4664,Block,Miryalaguda,LGD,514,District,4664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,1000,Block,Mirzapur,LGD,170,District,1000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -LGD,803,Block,Misrikh,LGD,183,District,803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -LGD,6875,Block,Mitauli,LGD,159,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -LGD,7152,Block,Mitrapura,LGD,113,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,6636,Block,Modakkurichi,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,1538,Block,Modanganj,LGD,199,District,1538,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -LGD,3769,Block,Modasa,LGD,672,District,3769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -LGD,432,Block,Model Town,LGD,796,District,432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,738,Block,Modinagar,LGD,145,District,738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -LGD,233,Block,Moga,LGD,38,District,233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -LGD,4986,Block,Mogalthur,LGD,523,District,4986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,6278,Block,Mogudampally,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,4680,Block,Mogullapally,LGD,687,District,4680,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,4038,Block,Mohadi,LGD,471,District,4038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -LGD,6750,Block,Mohalla,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,990,Block,Mohammadabad,LGD,146,District,990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -LGD,7187,Block,Mohammadabad,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,2257,Block,Mohammad Bazar,LGD,307,District,2257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2617,Block,Mohammad Ganj,LGD,338,District,2617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,7520,Block,Mohammadnagar,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,800,Block,Mohammdi,LGD,159,District,800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -LGD,3101,Block,Mohana,LGD,353,District,3101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -LGD,3419,Block,Mohangarh,LGD,434,District,3419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,1449,Block,Mohania,LGD,200,District,1449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,822,Block,Mohanlalganj,LGD,162,District,822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -LGD,1509,Block,Mohanpur,LGD,196,District,1509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,1293,Block,Mohanpur,LGD,217,District,1293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,6689,Block,Mohanpur,LGD,272,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -LGD,2546,Block,Mohanpur,LGD,324,District,2546,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,2469,Block,Mohanpur,LGD,318,District,2469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,6635,Block,Mohanur,LGD,580,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -LGD,1294,Block,Mohiuddinagar,LGD,217,District,1294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,3655,Block,Mohkhed,LGD,399,District,3655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,3308,Block,Mohla,LGD,761,District,3308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,6435,Block,Mohna St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -LGD,4248,Block,Mohol,LGD,496,District,4248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,4528,Block,Moinabad,LGD,518,District,4528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,1875,Block,Moirang,LGD,252,District,1875,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false -LGD,1420,Block,Mokameh,LGD,212,District,1420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,4161,Block,Mokhada,LGD,665,District,4161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -LGD,5503,Block,Molakalmuru,LGD,533,District,5503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -LGD,3521,Block,Moman Badodiya,LGD,430,District,3521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -LGD,4513,Block,Mominpet,LGD,698,District,4513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,1623,Block,Monigong Eac,LGD,725,District,1623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false -LGD,1748,Block,Mon Sadar,LGD,247,District,1748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,1757,Block,Monyakshu,LGD,247,District,1757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,7102,Block,Moodubidire,LGD,534,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,274,Block,Moonak,LGD,43,District,274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -LGD,6260,Block,Moosapet,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,5036,Block,Mopidevi,LGD,510,District,5036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,1667,Block,Mopom Adipasi Circle,LGD,240,District,1667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,1755,Block,Mopong,LGD,247,District,1755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,2878,Block,Morada,LGD,365,District,2878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,719,Block,Moradabad,LGD,171,District,719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -LGD,2067,Block,Moran,LGD,286,District,2067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -LGD,196,Block,Morang,LGD,19,District,196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -LGD,2086,Block,Morangi,LGD,288,District,2086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -LGD,7038,Block,Morar,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,7443,Block,Morbi City,LGD,673,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -LGD,6498,Block,Moreh,LGD,716,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false -LGD,3387,Block,Morena,LGD,417,District,3387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -LGD,7047,Block,Morena Nagar,LGD,417,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -LGD,279,Block,Mori,LGD,57,District,279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,6857,Block,Morinda,LGD,42,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -LGD,5615,Block,Mormugao,LGD,552,District,5615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -LGD,6461,Block,Morni St,LGD,70,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -LGD,4006,Block,Morshi,LGD,468,District,4006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,4362,Block,Morthad,LGD,516,District,4362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,3799,Block,Morvi,LGD,673,District,3799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -LGD,1291,Block,Morwa,LGD,217,District,1291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,3884,Block,Morwa (Hadaf),LGD,454,District,3884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -LGD,6668,Block,Mosara,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,6309,Block,Motakonduru,LGD,697,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,3980,Block,Motala,LGD,472,District,3980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,856,Block,Moth,LGD,153,District,856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -LGD,4640,Block,Mothey,LGD,696,District,4640,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,4625,Block,Mothkur,LGD,697,District,4625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,1041,Block,Motihari,LGD,213,District,1041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,3230,Block,Motu,LGD,364,District,3230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -LGD,6734,Block,Moungri,LGD,14,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -LGD,5032,Block,Movva,LGD,510,District,5032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,2476,Block,Moyna,LGD,317,District,2476,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,6504,Block,Mualnuam,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,7099,Block,Mudalgi,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,5216,Block,Muddanur,LGD,504,District,5216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,5453,Block,Muddebihal,LGD,530,District,5453,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,5445,Block,Mudhol,LGD,524,District,5445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,4341,Block,Mudhole,LGD,680,District,4341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,5531,Block,Mudigere,LGD,532,District,5531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,4758,Block,Mudigonda,LGD,509,District,4758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,5339,Block,Mudigubba,LGD,754,District,5339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5020,Block,Mudinepalle,LGD,748,District,5020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4101,Block,Mudkhed,LGD,485,District,4101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,6671,Block,Muduchinthalapally,LGD,700,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,5857,Block,Mudukulathur,LGD,583,District,5857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,6764,Block,Mugal Maidan,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,6235,Block,Mugpal,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,974,Block,Muhammadabad Gohna,LGD,168,District,974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -LGD,1492,Block,Muhra,LGD,196,District,1492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,7300,Block,Mukdega,LGD,386,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,215,Block,Mukerian,LGD,33,District,215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -LGD,4109,Block,Mukhed,LGD,485,District,4109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,3963,Block,Muktainagar (Edlabad),LGD,478,District,3963,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,1563,Block,Mukto Circle,LGD,238,District,1563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,5656,Block,Mukundapuram,LGD,566,District,5656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -LGD,4072,Block,Mul,LGD,473,District,4072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,6839,Block,Mulagada,LGD,520,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,5367,Block,Mulakalacheruvu,LGD,753,District,5367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6430,Block,Mulana St,LGD,58,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -LGD,5594,Block,Mulbagal,LGD,542,District,5594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -LGD,4059,Block,Mulchera,LGD,475,District,4059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,3793,Block,Muli,LGD,460,District,3793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,4748,Block,Mulkalapally,LGD,690,District,4748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,7198,Block,Mulki,LGD,534,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,4192,Block,Mulshi,LGD,490,District,4192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,3604,Block,Multai,LGD,394,District,3604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,113,Block,Multhan,LGD,18,District,113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,4486,Block,Mulug,LGD,692,District,4486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,4689,Block,Mulug,LGD,720,District,4689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,4932,Block,Mummidivaram,LGD,747,District,4932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4642,Block,Munagala,LGD,696,District,4642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,4877,Block,Munagapaka,LGD,744,District,4877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4841,Block,Munchingi Puttu,LGD,745,District,4841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5472,Block,Mundargi,LGD,537,District,5472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -LGD,494,Block,Mundawar,LGD,770,District,494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5482,Block,Mundgod,LGD,550,District,5482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,7411,Block,Mundi,LGD,405,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,7583,Block,Mundka,LGD,794,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,5113,Block,Mundlamuru,LGD,517,District,5113,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,3730,Block,Mundra,LGD,449,District,3730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,6378,Block,Mundwa,LGD,110,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,3688,Block,Mungaoli,LGD,391,District,3688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -LGD,3292,Block,Mungeli,LGD,647,District,3292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false -LGD,1356,Block,Munger,LGD,207,District,1356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,3173,Block,Muniguda,LGD,370,District,3173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,4477,Block,Munipally,LGD,691,District,4477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,315,Block,Munsiari,LGD,53,District,315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,4647,Block,Munugode,LGD,514,District,4647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,6238,Block,Mupkal,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,5068,Block,Muppalla,LGD,751,District,5068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2249,Block,Murarai - I,LGD,307,District,2249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2250,Block,Murarai - II,LGD,307,District,2250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,4171,Block,Murbad,LGD,497,District,4171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -LGD,2703,Block,Murhu,LGD,606,District,2703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false -LGD,7454,Block,Muribahal,LGD,345,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,1164,Block,Murliganj,LGD,205,District,1164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,2237,Block,Murshidabad Jiaganj,LGD,319,District,2237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,3992,Block,Murtijapur,LGD,467,District,3992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -LGD,4178,Block,Murud,LGD,491,District,4178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,3620,Block,Murwara Or Katni,LGD,413,District,3620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,2609,Block,Musabani,LGD,327,District,2609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,912,Block,Musafirkhana,LGD,640,District,912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -LGD,1212,Block,Musahri,LGD,208,District,1212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,4501,Block,Musheerabad,LGD,507,District,4501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,5774,Block,Musiri,LGD,591,District,5774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,7393,Block,Mussoorie,LGD,49,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -LGD,4434,Block,Mustabad,LGD,683,District,4434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,5002,Block,Musunuru,LGD,748,District,5002,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4404,Block,Mutharam Mahadevpur,LGD,687,District,4404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,4406,Block,Mutharam (Manthani),LGD,682,District,4406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,5181,Block,Muthukur,LGD,515,District,5181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,7408,Block,Muthupettai,LGD,590,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,5662,Block,Muvattupuzha,LGD,555,District,5662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -LGD,708,Block,Muzaffarnagar,LGD,172,District,708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -LGD,7170,Block,Mylapore,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,4995,Block,Mylavaram,LGD,749,District,4995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5200,Block,Mylavaram,LGD,504,District,5200,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,1989,Block,Mylliem,LGD,274,District,1989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,5572,Block,Mysuru,LGD,545,District,5572,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,2307,Block,Nabadwip,LGD,320,District,2307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,2238,Block,Nabagram,LGD,319,District,2238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,3196,Block,Nabarangapur P.S,LGD,366,District,3196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,252,Block,Nabha,LGD,41,District,252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -LGD,1483,Block,Nabinagar,LGD,189,District,1483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,1609,Block,Nacho Sdo,LGD,241,District,1609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,141,Block,Nadaun,LGD,17,District,141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,509,Block,Nadbai,LGD,91,District,509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -LGD,5069,Block,Nadendla,LGD,751,District,5069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3876,Block,Nadiad,LGD,450,District,3876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,6531,Block,Nadiad City,LGD,450,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,4641,Block,Nadigudem,LGD,696,District,4641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,6547,Block,Nadikuda,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,521,Block,Nadoti,LGD,108,District,521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,7416,Block,Naduar,LGD,301,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -LGD,2044,Block,Na-Duar,LGD,705,District,2044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -LGD,1568,Block,Nafra Adc,LGD,787,District,1568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,5403,Block,Nagalapuram,LGD,752,District,5403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6280,Block,Nagalgidda,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,5547,Block,Nagamangala,LGD,544,District,5547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -LGD,2035,Block,Nagaon,LGD,297,District,2035,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -LGD,5799,Block,Nagapattinam,LGD,579,District,5799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -LGD,4209,Block,Nagar,LGD,466,District,4209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,507,Block,Nagar,LGD,767,District,507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5095,Block,Nagaram,LGD,750,District,5095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6298,Block,Nagaram,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,2123,Block,Nagarbera,LGD,291,District,2123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,7155,Block,Nagarfort,LGD,116,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,5406,Block,Nagari,LGD,503,District,5406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,4583,Block,Nagarkurnool,LGD,694,District,4583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,1379,Block,Nagar Nausa,LGD,209,District,1379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,2503,Block,Nagaruntari,LGD,328,District,2503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,560,Block,Nagaur,LGD,110,District,560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,5038,Block,Nagayalanka,LGD,510,District,5038,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,4066,Block,Nagbhid,LGD,473,District,4066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,3509,Block,Nagda,LGD,435,District,3509,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,714,Block,Nagina,LGD,132,District,714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -LGD,6477,Block,Nagina St,LGD,604,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -LGD,1744,Block,Naginimora,LGD,247,District,1744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,4387,Block,Nagireddypet,LGD,685,District,4387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,3464,Block,Nagod,LGD,426,District,3464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -LGD,4031,Block,Nagpur (Rural),LGD,484,District,4031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,4032,Block,Nagpur (Urban),LGD,484,District,4032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,1259,Block,Nagra,LGD,218,District,1259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,2169,Block,Nagrakata,LGD,314,District,2169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,2692,Block,Nagri,LGD,339,District,2692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,3347,Block,Nagri,LGD,377,District,3347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -LGD,6727,Block,Nagri Parole,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,6711,Block,Nagrota,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,101,Block,Nagrota Bagwan,LGD,18,District,101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,6895,Block,Nagrota Surian,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,6768,Block,Nagseni,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,5126,Block,Naguluppala Padu,LGD,517,District,5126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,172,Block,Nahan,LGD,24,District,172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,2069,Block,Naharkatiya,LGD,286,District,2069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -LGD,1596,Block,Naharlagun Eac,LGD,237,District,1596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,6465,Block,Nahar St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -LGD,5194,Block,Naidupet,LGD,752,District,5194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4106,Block,Naigaon (Khairgaon),LGD,485,District,4106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,3478,Block,Naigarhi,LGD,766,District,3478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,155,Block,Naina Devi,LGD,15,District,155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -LGD,6337,Block,Nainbag,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,340,Block,Nainital,LGD,51,District,340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,3646,Block,Nainpur,LGD,415,District,3646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -LGD,623,Block,Nainwa,LGD,94,District,623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -LGD,6973,Block,Nai Sarai,LGD,391,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -LGD,451,Block,Najafgarh,LGD,84,District,451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -LGD,712,Block,Najibabad,LGD,132,District,712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -LGD,2304,Block,Nakashipara,LGD,320,District,2304,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,3727,Block,Nakhatrana,LGD,449,District,3727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,4880,Block,Nakkapalli,LGD,744,District,4880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,210,Block,Nakodar,LGD,34,District,210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -LGD,4636,Block,Nakrekal,LGD,514,District,4636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,2798,Block,Naktideul,LGD,371,District,2798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,703,Block,Nakur,LGD,177,District,703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -LGD,2679,Block,Nala,LGD,333,District,2679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false -LGD,161,Block,Nalagarh,LGD,25,District,161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,2136,Block,Nalbari,LGD,298,District,2136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -LGD,4646,Block,Nalgonda,LGD,514,District,4646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,2251,Block,Nalhati - I,LGD,307,District,2251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2252,Block,Nalhati - II,LGD,307,District,2252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,3516,Block,Nalkheda,LGD,667,District,3516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -LGD,4692,Block,Nallabelli,LGD,522,District,4692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,5359,Block,Nallachervu,LGD,754,District,5359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4956,Block,Nallajerla,LGD,505,District,4956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,5344,Block,Nallamada,LGD,754,District,5344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6623,Block,Nallampalli,LGD,571,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -LGD,5747,Block,Namakkal,LGD,580,District,5747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -LGD,6638,Block,Nambiyur,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,1873,Block,Nambol,LGD,252,District,1873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false -LGD,5341,Block,Nambulapulakunta,LGD,754,District,5341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1551,Block,Namchi,LGD,227,District,1551,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false -LGD,7335,Block,Namdong,LGD,275,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false -LGD,157,Block,Namhol,LGD,15,District,157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -LGD,2439,Block,Namkhana,LGD,304,District,2439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2690,Block,Namkum,LGD,339,District,2690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,4654,Block,Nampally,LGD,514,District,4654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4504,Block,Nampally,LGD,507,District,4504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,1676,Block,Nampong Sdo,LGD,229,District,1676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,1732,Block,Namsai Hq,LGD,678,District,1732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false -LGD,1831,Block,Namsang,LGD,615,District,1831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false -LGD,6115,Block,Namsing Circle,LGD,232,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -LGD,7542,Block,Namthang,LGD,227,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false -LGD,6580,Block,Namtok Eac,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,6364,Block,Nanakmatta,LGD,56,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,7547,Block,Nanapodha,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,5917,Block,Nancowry,LGD,603,District,5917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false -LGD,7481,Block,Nandahandi,LGD,366,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,2474,Block,Nanda Kumar,LGD,317,District,2474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,5243,Block,Nandalur,LGD,504,District,5243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,3214,Block,Nandapur,LGD,363,District,3214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,5255,Block,Nandavaram,LGD,511,District,5255,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,4100,Block,Nanded,LGD,485,District,4100,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,4147,Block,Nandgaon,LGD,487,District,4147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,4012,Block,Nandgaon-Khandeshwar,LGD,468,District,4012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,7248,Block,Nandghat,LGD,650,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,4782,Block,Nandigam,LGD,519,District,4782,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,6321,Block,Nandigama,LGD,518,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,4993,Block,Nandigama,LGD,749,District,4993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2484,Block,Nandigram - I,LGD,317,District,2484,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2485,Block,Nandigram - II,LGD,317,District,2485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,5260,Block,Nandikotkur,LGD,755,District,5260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4359,Block,Nandipet,LGD,516,District,4359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,5014,Block,Nandivada,LGD,510,District,5014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,3910,Block,Nandod,LGD,452,District,3910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -LGD,6344,Block,Nandprayag,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,3978,Block,Nandura,LGD,472,District,3978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,3954,Block,Nandurbar,LGD,486,District,3954,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -LGD,5284,Block,Nandyal Rural,LGD,755,District,5284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7425,Block,Nandyal Urban,LGD,755,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,263,Block,Nangal,LGD,42,District,263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -LGD,6456,Block,Nangal Chawdhary,LGD,69,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -LGD,6053,Block,Nangal Rajawatan,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,7595,Block,Nangloi Jat,LGD,82,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false -LGD,4461,Block,Nangnoor,LGD,692,District,4461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,5879,Block,Nanguneri,LGD,592,District,5879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -LGD,7313,Block,Nangur,LGD,374,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,5574,Block,Nanjangud,LGD,545,District,5574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,178,Block,Nankhari,LGD,23,District,178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,5805,Block,Nannilam,LGD,590,District,5805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,2263,Block,Nanoor,LGD,307,District,2263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,919,Block,Nanpara,LGD,125,District,919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -LGD,1078,Block,Nanpur,LGD,221,District,1078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,2050,Block,Naobaicha,LGD,295,District,2050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -LGD,1315,Block,Naokothi,LGD,191,District,1315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,6954,Block,Narag,LGD,24,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,358,Block,Naraingarh,LGD,58,District,358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -LGD,874,Block,Naraini,LGD,128,District,874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -LGD,3161,Block,Narala,LGD,358,District,3161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,4799,Block,Narasannapeta,LGD,519,District,4799,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,4987,Block,Narasapuram,LGD,523,District,4987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,5067,Block,Narasaraopet,LGD,751,District,5067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5527,Block,Narasimharajapura,LGD,532,District,5527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,6670,Block,Narayanaraopet,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,5400,Block,Narayanavanam,LGD,752,District,5400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6333,Block,Narayanbagar,LGD,47,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,3642,Block,Narayanganj,LGD,415,District,3642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -LGD,2465,Block,Narayangarh,LGD,318,District,2465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,4452,Block,Narayankhed,LGD,691,District,4452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,3204,Block,Narayanpatana,LGD,363,District,3204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,4570,Block,Narayanpet,LGD,721,District,4570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,2048,Block,Narayanpur,LGD,295,District,2048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -LGD,2676,Block,Narayanpur,LGD,333,District,2676,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false -LGD,1329,Block,Narayanpur,LGD,192,District,1329,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,3367,Block,Narayanpur,LGD,637,District,3367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false -LGD,6936,Block,Narayanpur,LGD,782,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,4648,Block,Narayanpur,LGD,697,District,4648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,6813,Block,Narbal,LGD,2,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -LGD,1511,Block,Nardiganj,LGD,210,District,1511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,430,Block,Narela,LGD,794,District,430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,299,Block,Narendra Nagar,LGD,55,District,299,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,5468,Block,Nargund,LGD,537,District,5468,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -LGD,3352,Block,Narharpur,LGD,381,District,3352,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,1521,Block,Narhat,LGD,210,District,1521,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,1651,Block,Nari Adc,LGD,719,District,1651,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false -LGD,1036,Block,Narkatia,LGD,213,District,1036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1017,Block,Narkatiaganj,LGD,211,District,1017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,4634,Block,Narketpally,LGD,514,District,4634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4023,Block,Narkhed,LGD,484,District,4023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,4675,Block,Narmetta,LGD,689,District,4675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,412,Block,Narnaul,LGD,69,District,412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -LGD,395,Block,Narnaund,LGD,792,District,395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -LGD,4312,Block,Narnoor,LGD,501,District,4312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,5328,Block,Narpala,LGD,502,District,5328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,1112,Block,Narpatganj,LGD,188,District,1112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,4708,Block,Narsampet,LGD,522,District,4708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,6352,Block,Narsan,LGD,50,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -LGD,4488,Block,Narsapur,LGD,513,District,4488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,6208,Block,Narsapur G,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,3636,Block,Narsimhapur,LGD,418,District,3636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -LGD,4719,Block,Narsimhulapet,LGD,688,District,4719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,3568,Block,Narsinghgarh,LGD,422,District,3568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,2944,Block,Narsinghpur,LGD,350,District,2944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,6272,Block,Narsingi,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,4854,Block,Narsipatnam,LGD,744,District,4854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4588,Block,Narwa,LGD,721,District,4588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,6163,Block,Narwal,LGD,157,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -LGD,382,Block,Narwana,LGD,65,District,382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -LGD,3409,Block,Narwar,LGD,432,District,3409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,7202,Block,Narwav,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,4152,Block,Nashik,LGD,487,District,4152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,611,Block,Nasirabad,LGD,86,District,611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,6226,Block,Naspur,LGD,684,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,1463,Block,Nasriganj,LGD,215,District,1463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,6244,Block,Nasurullabad,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,3903,Block,Nasvadi,LGD,668,District,3903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -LGD,3575,Block,Nateran,LGD,437,District,3575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,5763,Block,Natham,LGD,572,District,5763,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,4852,Block,Nathavaram,LGD,744,District,4852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,645,Block,Nathdwara,LGD,112,District,645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,1339,Block,Nathnagar,LGD,192,District,1339,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,6470,Block,Nathusari Chopta,LGD,74,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -LGD,5963,Block,Natrampalli,LGD,732,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -LGD,1404,Block,Naubatpur,LGD,212,District,1404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,1332,Block,Naugachhia,LGD,192,District,1332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,7129,Block,Nauganwa,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,2942,Block,Naugaon,LGD,355,District,2942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -LGD,933,Block,Naugarh,LGD,182,District,933,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -LGD,6870,Block,Naugarh,LGD,135,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -LGD,6831,Block,Naugawan Sadat,LGD,154,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -LGD,1469,Block,Nauhatta,LGD,215,District,1469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,1171,Block,Nauhatta,LGD,216,District,1171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,1030,Block,Nautan,LGD,211,District,1030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,1229,Block,Nautan,LGD,222,District,1229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,944,Block,Nautanwa,LGD,164,District,944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -LGD,5474,Block,Navalgund,LGD,536,District,5474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -LGD,4358,Block,Navipet,LGD,516,District,4358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,3922,Block,Navsari,LGD,453,District,3922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -LGD,566,Block,Nawa,LGD,768,District,566,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,2625,Block,Nawa Bazar,LGD,338,District,2625,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,788,Block,Nawabganj,LGD,130,District,788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -LGD,898,Block,Nawabganj,LGD,129,District,898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -LGD,4556,Block,Nawabpet,LGD,512,District,4556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,4514,Block,Nawabpet,LGD,698,District,4514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,1512,Block,Nawada,LGD,210,District,1512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,2588,Block,Nawadih,LGD,322,District,2588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,2621,Block,Nawadiha Bazar/Nawadiha*,LGD,338,District,2621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,3311,Block,Nawagarh,LGD,650,District,3311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,3280,Block,Nawagarh,LGD,379,District,3280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,491,Block,Nawalgarh,LGD,106,District,491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,1445,Block,Nawanagar,LGD,194,District,1445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,218,Block,Nawanshahr,LGD,40,District,218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -LGD,3955,Block,Nawapur,LGD,486,District,3955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -LGD,2243,Block,Nawda,LGD,319,District,2243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2163,Block,Naxalbari,LGD,309,District,2163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,7267,Block,Naya Baradwar,LGD,762,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,7157,Block,Nayagaon,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,3028,Block,Nayagarh,LGD,367,District,3028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -LGD,2458,Block,Nayagram,LGD,703,District,2458,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -LGD,2073,Block,Nazira,LGD,300,District,2073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -LGD,7153,Block,Nechhwa,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,5690,Block,Nedumangad,LGD,565,District,5690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -LGD,5807,Block,Needamangalam,LGD,590,District,5807,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,1491,Block,Neem Chak Bathani,LGD,196,District,1491,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,556,Block,Neem Ka Thana,LGD,114,District,556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,6380,Block,Neemrana,LGD,782,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3489,Block,Neemuch,LGD,419,District,3489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -LGD,7035,Block,Neemuch Nagar,LGD,419,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -LGD,5060,Block,Nekarikallu,LGD,751,District,5060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4713,Block,Nekkonda,LGD,522,District,4713,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,4759,Block,Nelakondapalli,LGD,509,District,4759,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,5601,Block,Nelamangala,LGD,526,District,5601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -LGD,4716,Block,Nellikudur,LGD,688,District,4716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,4837,Block,Nellimarla,LGD,521,District,4837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,5177,Block,Nellore Rural,LGD,515,District,5177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,7182,Block,Nellore Urban,LGD,515,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,6664,Block,Nemili,LGD,731,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -LGD,4331,Block,Nennel,LGD,684,District,4331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,3721,Block,Nepanagar,LGD,397,District,3721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -LGD,4079,Block,Ner,LGD,500,District,4079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,4325,Block,Neradigonda,LGD,501,District,4325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,4665,Block,Nereducherla,LGD,696,District,4665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,6308,Block,Neredugommu,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,187,Block,Nerwa,LGD,23,District,187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,6170,Block,Netrang,LGD,442,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,2383,Block,Neturia,LGD,321,District,2383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,4206,Block,Nevasa,LGD,466,District,4206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,7593,Block,New Delhi,LGD,79,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false -LGD,6575,Block,New Seren Circle,LGD,719,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false -LGD,5692,Block,Neyyattinkara,LGD,565,District,5692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -LGD,1906,Block,Ngopa,LGD,727,District,1906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -LGD,1818,Block,Ngoungchung,LGD,249,District,1818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false -LGD,2967,Block,Niali,LGD,350,District,2967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,198,Block,Nichar,LGD,19,District,198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -LGD,945,Block,Nichlaul,LGD,164,District,945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -LGD,4960,Block,Nidadavole,LGD,505,District,4960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,7075,Block,Nidagundi,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,4968,Block,Nidamarru,LGD,748,District,4968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4661,Block,Nidmanoor,LGD,514,District,4661,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,6451,Block,Nigdu St,LGD,67,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -LGD,797,Block,Nighasan,LGD,159,District,797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -LGD,231,Block,Nihal Singhwala,LGD,38,District,231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -LGD,1795,Block,Nihokhu,LGD,764,District,1795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,138,Block,Nihri,LGD,22,District,138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,6587,Block,Nikte Kodum Circle,LGD,243,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false -LGD,2903,Block,Nilagiri,LGD,346,District,2903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,5767,Block,Nilakkottai,LGD,572,District,5767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,2632,Block,Nilambar-Pitambarpur(Lesliganj),LGD,338,District,2632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,2103,Block,Nilambazar,LGD,293,District,2103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -LGD,5642,Block,Nilambur,LGD,562,District,5642,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -LGD,4233,Block,Nilanga,LGD,481,District,4233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,6552,Block,Nilling Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,370,Block,Nilokheri,LGD,67,District,370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -LGD,3058,Block,Nimapada,LGD,369,District,3058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,663,Block,Nimbahera,LGD,95,District,663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,2751,Block,Nimdih,LGD,341,District,2751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,5393,Block,Nimmanapalle,LGD,753,District,5393,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5404,Block,Nindra,LGD,503,District,5404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,4155,Block,Niphad,LGD,487,District,4155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,7105,Block,Nippani,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,7211,Block,Nirjharna,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,1101,Block,Nirmali,LGD,223,District,1101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,6210,Block,Nirmal Rural,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,4344,Block,Nirmal U,LGD,680,District,4344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,122,Block,Nirmand,LGD,20,District,122,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,2587,Block,Nirsa-Cum-Chirkunda,LGD,325,District,2587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,2958,Block,Nischintakoili,LGD,350,District,2958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,6450,Block,Nising St,LGD,67,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -LGD,6886,Block,Nither,LGD,20,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,1792,Block,Niuland,LGD,764,District,1792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,617,Block,Niwai,LGD,116,District,617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,3560,Block,Niwali,LGD,393,District,3560,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,3415,Block,Niwari,LGD,722,District,3415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -LGD,3641,Block,Niwas,LGD,415,District,3641,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -LGD,967,Block,Nizamabad,LGD,123,District,967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -LGD,4368,Block,Nizamabad North,LGD,516,District,4368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,6233,Block,Nizamabad Rural,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,6385,Block,Nizamabad South,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,5094,Block,Nizampatnam,LGD,750,District,5094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6271,Block,Nizampet,LGD,513,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,7535,Block,Nizampet (28),LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,4385,Block,Nizamsagar,LGD,685,District,4385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,3942,Block,Nizar,LGD,641,District,3942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -LGD,2736,Block,Noamundi,LGD,343,District,2736,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,471,Block,Nohar,LGD,101,District,471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -LGD,168,Block,Nohra,LGD,24,District,168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,1466,Block,Nokha,LGD,215,District,1466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,477,Block,Nokha,LGD,93,District,477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,7132,Block,Nokhra,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,1823,Block,Nokhu,LGD,736,District,1823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1821,Block,Noklak,LGD,736,District,1821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1814,Block,Noksen,LGD,249,District,1814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false -LGD,1980,Block,Nongstoin,LGD,279,District,1980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false -LGD,1387,Block,Noorsarai,LGD,209,District,1387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,2126,Block,North Guwahati,LGD,291,District,2126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,2052,Block,North Lakhimpur,LGD,295,District,2052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -LGD,3427,Block,Nowgong,LGD,398,District,3427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,3486,Block,Nowrozabad,LGD,436,District,3486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -LGD,25,Block,Nowshera,LGD,12,District,25,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,1855,Block,Nsong,LGD,613,District,1855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -LGD,7504,Block,Nuagad,LGD,353,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -LGD,3025,Block,Nuagaon,LGD,367,District,3025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -LGD,1447,Block,Nuaon,LGD,200,District,1447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,3154,Block,Nuapada,LGD,368,District,3154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -LGD,422,Block,Nuh,LGD,604,District,422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -LGD,1867,Block,Nungba,LGD,714,District,1867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false -LGD,93,Block,Nurpur,LGD,18,District,93,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,4621,Block,Nuthanakal,LGD,696,District,4621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,5063,Block,Nuzendla,LGD,751,District,5063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5003,Block,Nuzividu,LGD,748,District,5003,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4473,Block,Nyalkal,LGD,691,District,4473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,7076,Block,Nyamathi,LGD,535,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -LGD,1706,Block,Nyapin Adc,LGD,233,District,1706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,6844,Block,Nyobia Circle,LGD,233,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,7162,Block,Nyoma,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -LGD,1480,Block,Obra,LGD,189,District,1480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,7127,Block,Obra,LGD,184,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -LGD,7384,Block,Obri,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,5358,Block,Obuladevaracheruvu,LGD,754,District,5358,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5248,Block,Obulavaripalle,LGD,752,District,5248,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3031,Block,Odagaon,LGD,367,District,3031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -LGD,7503,Block,Odapada,LGD,352,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -LGD,5761,Block,Oddanchatram,LGD,572,District,5761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,4426,Block,Odela,LGD,682,District,4426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,3243,Block,Odgi,LGD,648,District,3243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,7557,Block,Ogad,LGD,441,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,6350,Block,Okhalkanda,LGD,51,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,3812,Block,Okhamandal,LGD,674,District,3812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -LGD,6107,Block,Old Ziro Sdo,LGD,236,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,false -LGD,3932,Block,Olpad,LGD,459,District,3932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,5737,Block,Omalur,LGD,584,District,5737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,4243,Block,Omarga,LGD,488,District,4243,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -LGD,2370,Block,Onda,LGD,305,District,2370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,5139,Block,Ongole Rural,LGD,517,District,5139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,7430,Block,Ongole Urban,LGD,517,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,1766,Block,Ongpangkong,LGD,246,District,1766,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,5989,Block,Ongpangkong (N),LGD,246,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,854,Block,Orai,LGD,151,District,854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -LGD,5815,Block,Orathanadu,LGD,586,District,5815,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,3416,Block,Orchha,LGD,722,District,3416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -LGD,3368,Block,Orchha,LGD,637,District,3368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false -LGD,2685,Block,Ormanjhi,LGD,339,District,2685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,5268,Block,Orvakal,LGD,511,District,5268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,568,Block,Osian,LGD,107,District,568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,5865,Block,Ottapidaram,LGD,594,District,5865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,5647,Block,Ottappalam,LGD,563,District,5647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -LGD,5910,Block,Oulgaret,LGD,600,District,5910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -LGD,2905,Block,Oupada,LGD,346,District,2905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,5295,Block,Owk,LGD,755,District,5295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1654,Block,Oyan Circle,LGD,232,District,1654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -LGD,5189,Block,Ozili,LGD,752,District,5189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1218,Block,Pach Deuri,LGD,197,District,1218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,169,Block,Pachhad,LGD,24,District,169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,2133,Block,Pachim Nalbari,LGD,298,District,2133,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -LGD,4818,Block,Pachipenta,LGD,743,District,4818,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3973,Block,Pachora,LGD,478,District,3973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,3569,Block,Pachore,LGD,422,District,3569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,579,Block,Pachpadra,LGD,775,District,579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,682,Block,Pachpahar,LGD,105,District,682,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,7349,Block,Pachpedi,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,1237,Block,Pachrukhi,LGD,222,District,1237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,2757,Block,Padampur,LGD,347,District,2757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,460,Block,Padampur,LGD,100,District,460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,6294,Block,Padara,LGD,694,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,3802,Block,Paddhari,LGD,457,District,3802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,4847,Block,Paderu,LGD,745,District,4847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,123,Block,Padhar,LGD,22,District,123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,2646,Block,Padma,LGD,332,District,2646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,4864,Block,Padmanabham,LGD,520,District,4864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,3185,Block,Padmapur,LGD,370,District,3185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,3906,Block,Padra,LGD,461,District,3906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,955,Block,Padrauna,LGD,160,District,955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -LGD,2627,Block,Padwa,LGD,338,District,2627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,5261,Block,Pagidyala,LGD,755,District,5261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,53,Block,Pahalgam,LGD,1,District,53,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,505,Block,Pahari,LGD,767,District,505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,1044,Block,Paharpur,LGD,213,District,1044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,6194,Block,Pahloo,LGD,622,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -LGD,2755,Block,Paikmal,LGD,347,District,2755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,6157,Block,Pailani,LGD,128,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -LGD,4141,Block,Paithan,LGD,469,District,4141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,6955,Block,Pajhota,LGD,24,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,5396,Block,Pakala,LGD,752,District,5396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2719,Block,Pakar Tanr,LGD,342,District,2719,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,2576,Block,Pakaur,LGD,337,District,2576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -LGD,3354,Block,Pakhanjur,LGD,381,District,3354,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,1581,Block,Pakke Kessang Eac,LGD,723,District,1581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false -LGD,6848,Block,Pakoti Circle,LGD,231,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,1515,Block,Pakribarawan,LGD,210,District,1515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,1052,Block,Pakri Dayal,LGD,213,District,1052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,2578,Block,Pakuria,LGD,337,District,2578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -LGD,1554,Block,Pakyong,LGD,741,District,1554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -LGD,4977,Block,Palacoderu,LGD,523,District,4977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,4988,Block,Palacole,LGD,523,District,4988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,6301,Block,Palakeedu,LGD,696,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,5649,Block,Palakkad,LGD,563,District,5649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -LGD,5885,Block,Palakkodu,LGD,571,District,5885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -LGD,4784,Block,Palakonda,LGD,743,District,4784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6215,Block,Palakurthy,LGD,682,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,4697,Block,Palakurthy,LGD,689,District,4697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,3000,Block,Palalahada,LGD,344,District,3000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -LGD,4123,Block,Palam,LGD,489,District,4123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,5422,Block,Palamaner,LGD,503,District,5422,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,111,Block,Palampur,LGD,18,District,111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,5760,Block,Palani,LGD,572,District,5760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,3739,Block,Palanpur,LGD,441,District,3739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,7436,Block,Palanpur City,LGD,441,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,3327,Block,Palari,LGD,644,District,3327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,4775,Block,Palasa,LGD,519,District,4775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,5432,Block,Palasamudram,LGD,503,District,5432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,2125,Block,Palasbari,LGD,291,District,2125,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,1119,Block,Palasi,LGD,188,District,1119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,5877,Block,Palayamkottai,LGD,592,District,5877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -LGD,7212,Block,Paldewal,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,3420,Block,Palera,LGD,434,District,3420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,4163,Block,Palghar,LGD,665,District,4163,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -LGD,6418,Block,Palhawas St,LGD,72,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -LGD,3274,Block,Pali,LGD,383,District,3274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,6881,Block,Pali,LGD,161,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -LGD,3485,Block,Pali,LGD,436,District,3485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -LGD,601,Block,Pali,LGD,111,District,601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -LGD,798,Block,Palia,LGD,159,District,798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -LGD,1407,Block,Paliganj,LGD,212,District,1407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,6250,Block,Palimela,LGD,687,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,1703,Block,Palin Circle,LGD,677,District,1703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false -LGD,3858,Block,Palitana,LGD,443,District,3858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,2717,Block,Palkot,LGD,331,District,2717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,5905,Block,Palladam,LGD,634,District,5905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,6629,Block,Pallavaram,LGD,730,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -LGD,1660,Block,Palling Circle,LGD,240,District,1660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,5697,Block,Pallipattu,LGD,589,District,5697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,7213,Block,Pallu,LGD,101,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -LGD,2554,Block,Palojori,LGD,324,District,2554,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,3939,Block,Palsana,LGD,459,District,3939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,4297,Block,Palus,LGD,493,District,4297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,4737,Block,Palvoncha,LGD,690,District,4737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,427,Block,Palwal,LGD,619,District,427,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -LGD,7519,Block,Palwancha,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,5028,Block,Pamarru,LGD,510,District,5028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,3283,Block,Pamgarh,LGD,379,District,3283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,5315,Block,Pamidi,LGD,502,District,5315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5026,Block,Pamidimukkala,LGD,510,District,5026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,48,Block,Pampore,LGD,11,District,48,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -LGD,5266,Block,Pamulapadu,LGD,755,District,5266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5146,Block,Pamur,LGD,790,District,5146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3632,Block,Panagar,LGD,411,District,3632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,1249,Block,Panapur,LGD,218,District,1249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,6735,Block,Panchari,LGD,14,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -LGD,357,Block,Panchkula,LGD,70,District,357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -LGD,2405,Block,Panchla,LGD,313,District,2405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,6899,Block,Panchrukhi,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,2273,Block,Pandabeswar,LGD,704,District,2273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -LGD,1418,Block,Pandarak,LGD,212,District,1418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,3301,Block,Pandariya,LGD,382,District,3301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -LGD,1094,Block,Pandaul,LGD,206,District,1094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,5548,Block,Pandavapura,LGD,544,District,5548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -LGD,3718,Block,Pandhana,LGD,405,District,3718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,4249,Block,Pandharpur,LGD,496,District,4249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,3658,Block,Pandhurna,LGD,785,District,3658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,6869,Block,Pandit Deendayal Upadhyay Nagar,LGD,135,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -LGD,2622,Block,Pandu,LGD,338,District,2622,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,2344,Block,Pandua,LGD,312,District,2344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,4601,Block,Pangal,LGD,693,District,4601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,1692,Block,Pangchao Sdo,LGD,666,District,1692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false -LGD,83,Block,Pangi,LGD,16,District,83,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,1645,Block,Pangin Eac,LGD,679,District,1645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,6951,Block,Pangna,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,4284,Block,Panhala,LGD,480,District,4284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,375,Block,Panipat,LGD,71,District,375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -LGD,6678,Block,Panisagar,LGD,270,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -LGD,6940,Block,Panjehra,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,6358,Block,Pankhu,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,2630,Block,Panki,LGD,338,District,2630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,3436,Block,Panna,LGD,420,District,3436,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,7463,Block,Panposh,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,5788,Block,Panruti,LGD,570,District,5788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,3559,Block,Pansemal,LGD,393,District,3559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,2470,Block,Panskura,LGD,317,District,2470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,1824,Block,Panso,LGD,736,District,1824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,6804,Block,Pantha Chowk,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -LGD,5754,Block,Panthalur,LGD,587,District,5754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -LGD,4173,Block,Panvel,LGD,491,District,4173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,5280,Block,Panyam,LGD,755,District,5280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1859,Block,Paomata,LGD,257,District,1859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -LGD,173,Block,Paonta Sahib,LGD,24,District,173,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,6924,Block,Paota,LGD,782,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5812,Block,Papanasam,LGD,586,District,5812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,4455,Block,Papannapet,LGD,513,District,4455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,3193,Block,Paparahandi,LGD,366,District,3193,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,7367,Block,Paparda,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,5887,Block,Pappireddipatti,LGD,571,District,5887,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -LGD,2380,Block,Para,LGD,321,District,2380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,1496,Block,Paraiya,LGD,196,District,1496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,2987,Block,Parajang,LGD,352,District,2987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -LGD,3105,Block,Paralakhemundi,LGD,353,District,3105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -LGD,5856,Block,Paramakudi,LGD,583,District,5856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,5748,Block,Paramathi-Velur,LGD,580,District,5748,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -LGD,4236,Block,Paranda,LGD,488,District,4236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -LGD,1602,Block,Parang Circle,LGD,237,District,1602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,3652,Block,Parasia,LGD,399,District,3652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,3675,Block,Paraswada,LGD,392,District,3675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,4870,Block,Paravada,LGD,744,District,4870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5659,Block,Paravur,LGD,555,District,5659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -LGD,1389,Block,Parbalpur,LGD,209,District,1389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,564,Block,Parbatsar,LGD,768,District,564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,1328,Block,Parbatta,LGD,202,District,1328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -LGD,4118,Block,Parbhani,LGD,489,District,4118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,6841,Block,Parbuk Sdo,LGD,235,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false -LGD,5108,Block,Parchur,LGD,750,District,5108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7601,Block,Pardi,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,4540,Block,Pargi,LGD,698,District,4540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,6705,Block,Pargwal,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,5355,Block,Parigi,LGD,754,District,5355,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1067,Block,Parihar,LGD,221,District,1067,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,4679,Block,Parkal,LGD,686,District,4679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,4224,Block,Parli,LGD,470,District,4224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,4211,Block,Parner,LGD,466,District,4211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,3970,Block,Parola,LGD,478,District,3970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,1201,Block,Paroo,LGD,208,District,1201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,1263,Block,Parsa,LGD,218,District,1263,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,1071,Block,Parsauni,LGD,221,District,1071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,4027,Block,Parseoni,LGD,484,District,4027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,4131,Block,Partur,LGD,479,District,4131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -LGD,4714,Block,Parvathagiri,LGD,522,District,4714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,4812,Block,Parvathipuram,LGD,743,District,4812,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7126,Block,Parwanoo,LGD,25,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,7237,Block,Pasan,LGD,383,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,6118,Block,Pasighat Hq,LGD,232,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -LGD,6846,Block,Passa Valley Circle,LGD,723,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false -LGD,1053,Block,Patahi,LGD,213,District,1053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,2604,Block,Patamda,LGD,327,District,2604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,2626,Block,Patan,LGD,338,District,2626,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,4264,Block,Patan,LGD,494,District,4264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,3629,Block,Patan,LGD,411,District,3629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,7227,Block,Patan,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,3747,Block,Patan,LGD,455,District,3747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,3318,Block,Patan,LGD,378,District,3318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -LGD,2843,Block,Patana,LGD,361,District,2843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,4494,Block,Patancheru,LGD,691,District,4494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,7433,Block,Patan City,LGD,455,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,3835,Block,Patan-Veraval,LGD,675,District,3835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -LGD,1176,Block,Patarghat,LGD,216,District,1176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,416,Block,Pataudi,LGD,62,District,416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,448,Block,Patel Nagar,LGD,77,District,448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,false -LGD,1274,Block,Patepur,LGD,224,District,1274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,3455,Block,Patera,LGD,400,District,3455,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -LGD,1269,Block,Paterhi Belsar,LGD,224,District,1269,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,3262,Block,Pathalgaon,LGD,380,District,3262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,2523,Block,Pathalgora,LGD,323,District,2523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,5686,Block,Pathanapuram,LGD,559,District,5686,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -LGD,201,Block,Pathankot,LGD,662,District,201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -LGD,4773,Block,Pathapatnam,LGD,519,District,4773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,4208,Block,Pathardi,LGD,466,District,4208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,2559,Block,Pathargama,LGD,330,District,2559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,6971,Block,Pathari,LGD,437,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,3457,Block,Patharia,LGD,400,District,3457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -LGD,3293,Block,Pathariya,LGD,647,District,3293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false -LGD,2104,Block,Patharkandi,LGD,293,District,2104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -LGD,2440,Block,Patharpratima,LGD,304,District,2440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,2571,Block,Pathna,LGD,340,District,2571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,2146,Block,Pathorighat (Pt),LGD,283,District,2146,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -LGD,4120,Block,Pathri,LGD,489,District,4120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,335,Block,Pati,LGD,48,District,335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -LGD,3555,Block,Pati,LGD,393,District,3555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,253,Block,Patiala,LGD,41,District,253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -LGD,1012,Block,Patiyali,LGD,633,District,1012,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -LGD,7447,Block,Patliputra,LGD,212,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,7309,Block,Patna,LGD,384,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -LGD,7448,Block,Patna City,LGD,212,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,3144,Block,Patnagarh,LGD,345,District,3144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,1400,Block,Patna Rural,LGD,212,District,1400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,4216,Block,Patoda,LGD,470,District,4216,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,7368,Block,Patodi,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,1292,Block,Patori,LGD,217,District,1292,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,7585,Block,Patparganj,LGD,78,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false -LGD,251,Block,Patran,LGD,41,District,251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -LGD,7483,Block,Patrapur,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,2365,Block,Patrasayer,LGD,305,District,2365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,2660,Block,Patratu,LGD,607,District,2660,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -LGD,1880,Block,Patsoi,LGD,256,District,1880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -LGD,5940,Block,Pattambi,LGD,563,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -LGD,2926,Block,Pattamundai,LGD,360,District,2926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,34,Block,Pattan,LGD,3,District,34,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,260,Block,Patti,LGD,609,District,260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -LGD,883,Block,Patti,LGD,174,District,883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -LGD,5290,Block,Pattikonda,LGD,511,District,5290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5816,Block,Pattukkottai,LGD,586,District,5816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,6140,Block,Patuk Adc,LGD,233,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,3993,Block,Patur,LGD,467,District,3993,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -LGD,4042,Block,Pauni,LGD,471,District,4042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -LGD,307,Block,Pauri,LGD,52,District,307,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,5534,Block,Pavagada,LGD,548,District,5534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,3440,Block,Pawai,LGD,420,District,3440,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,6363,Block,Pawkidevi,LGD,55,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,6861,Block,Payagpur,LGD,125,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -LGD,4881,Block,Payakaraopeta,LGD,744,District,4881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,226,Block,Payal,LGD,36,District,226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -LGD,1612,Block,Payeng Circle,LGD,241,District,1612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,6607,Block,Payum Circle,LGD,679,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,6599,Block,Payyannur,LGD,557,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -LGD,5294,Block,Peapully,LGD,755,District,5294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4602,Block,Pebbair,LGD,693,District,4602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,4842,Block,Peda Bayalu,LGD,745,District,4842,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5144,Block,Pedacherlo Palle,LGD,790,District,5144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4868,Block,Pedagantyada,LGD,520,District,4868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,5075,Block,Pedakakani,LGD,506,District,5075,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,5057,Block,Pedakurapadu,LGD,751,District,5057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5030,Block,Pedana,LGD,510,District,5030,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,5082,Block,Pedanandipadu,LGD,506,District,5082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,4965,Block,Pedapadu,LGD,748,District,4965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5022,Block,Pedaparupudi,LGD,510,District,5022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,4915,Block,Pedapudi,LGD,746,District,4915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4964,Block,Pedavegi,LGD,748,District,4964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4658,Block,Pedda Adesherlapally,LGD,514,District,4658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,5101,Block,Peddaaraveedu,LGD,790,District,5101,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5253,Block,Pedda Kadubur,LGD,511,District,5253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,6245,Block,Pedda Kodapgal,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,4599,Block,Peddakothapally,LGD,694,District,4599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,4594,Block,Peddamandadi,LGD,693,District,4594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,5369,Block,Peddamandyam,LGD,753,District,5369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5201,Block,Peddamudiam,LGD,504,District,5201,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4408,Block,Peddapalli,LGD,682,District,4408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,5416,Block,Peddapanjani,LGD,503,District,5416,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5314,Block,Peddapappur,LGD,502,District,5314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,4903,Block,Peddapuram,LGD,746,District,4903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5390,Block,Pedda Thippasamudram,LGD,753,District,5390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5311,Block,Peddavaduguru,LGD,502,District,5311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,6256,Block,Peddavangara,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,4659,Block,Peddavoora,LGD,514,District,4659,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4533,Block,Peddemul,LGD,698,District,4533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,1851,Block,Pedi (Ngwalwa),LGD,613,District,1851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -LGD,7051,Block,Pedong,LGD,702,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -LGD,697,Block,Peepalkhoont,LGD,629,District,697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -LGD,616,Block,Peeplu,LGD,116,District,616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,5667,Block,Peerumade,LGD,556,District,5667,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -LGD,608,Block,Peesangan,LGD,86,District,608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,4421,Block,Pegadapalli,LGD,681,District,4421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,365,Block,Pehowa,LGD,68,District,365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -LGD,5195,Block,Pellakur,LGD,752,District,5195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6206,Block,Pembi,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,4176,Block,Pen,LGD,491,District,4176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,5244,Block,Penagalur,LGD,752,District,5244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5024,Block,Penamaluru,LGD,510,District,5024,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,6313,Block,Penchicalpet,LGD,699,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,5232,Block,Pendlimarry,LGD,504,District,5232,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,3289,Block,Pendra,LGD,734,District,3289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false -LGD,3287,Block,Pendra Road,LGD,734,District,3287,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false -LGD,4862,Block,Pendurthi,LGD,520,District,4862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,5889,Block,Pennagaram,LGD,571,District,5889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -LGD,4643,Block,Penpahad,LGD,696,District,4643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,4969,Block,Pentapadu,LGD,523,District,4969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,6292,Block,Pentlavelli,LGD,694,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,4752,Block,Penuballi,LGD,509,District,4752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,4992,Block,Penuganchiprolu,LGD,749,District,4992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4980,Block,Penugonda,LGD,523,District,4980,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,5356,Block,Penukonda,LGD,754,District,5356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4978,Block,Penumantra,LGD,523,District,4978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,5409,Block,Penumur,LGD,503,District,5409,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5839,Block,Peraiyur,LGD,578,District,5839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,5973,Block,Perambalur,LGD,581,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -LGD,7166,Block,Perambur,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,4971,Block,Peravali,LGD,505,District,4971,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,5817,Block,Peravurani,LGD,586,District,5817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,1857,Block,Peren,LGD,613,District,1857,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -LGD,5643,Block,Perinthalmanna,LGD,562,District,5643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -LGD,5843,Block,Periyakulam,LGD,588,District,5843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -LGD,6663,Block,Pernambut,LGD,595,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -LGD,5609,Block,Pernem,LGD,551,District,5609,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -LGD,5752,Block,Perundurai,LGD,573,District,5752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,5957,Block,Perur,LGD,569,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,2598,Block,Peshrar,LGD,336,District,2598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -LGD,2592,Block,Peterwar,LGD,322,District,2592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -LGD,4150,Block,Peth,LGD,487,District,4150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,6618,Block,Pethanaickanpalayam,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,3865,Block,Petlad,LGD,440,District,3865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,3707,Block,Petlawad,LGD,412,District,3707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -LGD,1809,Block,Pfutsero,LGD,248,District,1809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,4934,Block,P.Gannavaram,LGD,747,District,4934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,544,Block,Phagi,LGD,102,District,544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,208,Block,Phagwara,LGD,35,District,208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -LGD,7385,Block,Phalasiyan,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,567,Block,Phalodi,LGD,772,District,567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,7214,Block,Phalsoond,LGD,103,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -LGD,4258,Block,Phaltan,LGD,494,District,4258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,2164,Block,Phansidewa,LGD,309,District,2164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,3359,Block,Pharasgaon,LGD,643,District,3359,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -LGD,946,Block,Pharenda,LGD,164,District,946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -LGD,1707,Block,Phassang Circle,LGD,233,District,1707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,1801,Block,Phek Sadar,LGD,248,District,1801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,1054,Block,Phenhara,LGD,213,District,1054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,6757,Block,Phigsoo,LGD,4,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,211,Block,Phillaur,LGD,34,District,211,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -LGD,5072,Block,Phirangipuram,LGD,506,District,5072,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,3118,Block,Phiringia,LGD,359,District,3118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,1805,Block,Phokhungri,LGD,788,District,1805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1752,Block,Phomching,LGD,247,District,1752,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,6067,Block,Phooliya Kalan,LGD,92,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,1804,Block,Phor,LGD,788,District,1804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,4136,Block,Phulambri,LGD,469,District,4136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,542,Block,Phulera (Hq.Sambhar),LGD,102,District,542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,1351,Block,Phulidumar,LGD,190,District,1351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,1903,Block,Phullen,LGD,727,District,1903,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -LGD,2090,Block,Phuloni,LGD,292,District,2090,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -LGD,1087,Block,Phulparas,LGD,206,District,1087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,889,Block,Phulpur,LGD,120,District,889,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -LGD,968,Block,Phulpur,LGD,123,District,968,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -LGD,1402,Block,Phulwari,LGD,212,District,1402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,1220,Block,Phulwaria,LGD,197,District,1220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,1890,Block,Phungyar,LGD,717,District,1890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false -LGD,5401,Block,Pichatur,LGD,752,District,5401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7412,Block,Pichhor,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,3413,Block,Pichhore,LGD,432,District,3413,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,6590,Block,Pidi Circle,LGD,725,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false -LGD,5047,Block,Piduguralla,LGD,751,District,5047,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7386,Block,Pilani,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,5386,Block,Pileru,LGD,753,District,5386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,469,Block,Pilibanga,LGD,101,District,469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -LGD,790,Block,Pilibhit,LGD,173,District,790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -LGD,6445,Block,Pillukhera St,LGD,65,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -LGD,4725,Block,Pinapaka,LGD,690,District,4725,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,995,Block,Pindra,LGD,187,District,995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -LGD,594,Block,Pindwara,LGD,115,District,594,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -LGD,2463,Block,Pingla,LGD,318,District,2463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,665,Block,Pipalda,LGD,109,District,665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -LGD,7324,Block,Pipariya,LGD,382,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -LGD,3618,Block,Pipariya,LGD,409,District,3618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,1366,Block,Pipariya,LGD,204,District,1366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -LGD,6051,Block,Pipar Shahar,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,3057,Block,Pipili,LGD,369,District,3057,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,3500,Block,Piploda,LGD,423,District,3500,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,1110,Block,Pipra,LGD,223,District,1110,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,2619,Block,Pipra,LGD,338,District,2619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,7036,Block,Piprai,LGD,391,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -LGD,1050,Block,Piprakothi,LGD,213,District,1050,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1059,Block,Piprarhi,LGD,220,District,1059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -LGD,1020,Block,Piprasi,LGD,211,District,1020,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,1715,Block,Pipsorang Circle,LGD,677,District,1715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false -LGD,1587,Block,Pipu Dipu Circle,LGD,231,District,1587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,683,Block,Pirawa,LGD,105,District,683,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,5569,Block,Piriyapatna,LGD,545,District,5569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,1429,Block,Piro,LGD,193,District,1429,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,1335,Block,Pirpainti,LGD,192,District,1335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,2544,Block,Pirtanr,LGD,329,District,2544,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,6119,Block,Pistana Circle,LGD,786,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,7042,Block,Pithampur,LGD,403,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,4911,Block,Pithapuram,LGD,746,District,4911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3342,Block,Pithora,LGD,385,District,3342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -LGD,320,Block,Pithoragarh,LGD,53,District,320,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,4384,Block,Pitlam,LGD,685,District,4384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,5091,Block,Pittalavanipalem,LGD,750,District,5091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6121,Block,Piyong Circle,LGD,678,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false -LGD,6100,Block,Pizirang Veo Circle,LGD,723,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false -LGD,5893,Block,Pochampalli,LGD,577,District,5893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -LGD,5176,Block,Podalakur,LGD,515,District,5176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5120,Block,Podili,LGD,790,District,5120,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4982,Block,Poduru,LGD,523,District,4982,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,6760,Block,Pogal Paristan,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -LGD,3407,Block,Pohri,LGD,432,District,3407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,575,Block,Pokaran,LGD,103,District,575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -LGD,286,Block,Pokhari,LGD,47,District,286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,4186,Block,Poladpur,LGD,491,District,4186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,4800,Block,Polaki,LGD,519,District,4800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,3081,Block,Polasara,LGD,354,District,3081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,4949,Block,Polavaram,LGD,748,District,4949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6511,Block,Polaykala,LGD,430,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -LGD,2347,Block,Polba - Dadpur,LGD,312,District,2347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,5899,Block,Pollachi,LGD,569,District,5899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,6845,Block,Polosang Circle,LGD,233,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,5724,Block,Polur,LGD,593,District,5724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,4073,Block,Pombhurna,LGD,473,District,4073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,5614,Block,Ponda,LGD,552,District,5614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -LGD,7270,Block,Pondi(Bachra),LGD,384,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -LGD,4803,Block,Ponduru,LGD,519,District,4803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,5143,Block,Ponnaluru,LGD,517,District,5143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,5823,Block,Ponnamaravathi,LGD,582,District,5823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,7125,Block,Ponnampet,LGD,541,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -LGD,5646,Block,Ponnani,LGD,562,District,5646,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -LGD,5694,Block,Ponneri,LGD,589,District,5694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,5084,Block,Ponnur,LGD,506,District,5084,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,195,Block,Poo,LGD,19,District,195,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -LGD,474,Block,Poogal,LGD,93,District,474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,5699,Block,Poonamallee,LGD,589,District,5699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,337,Block,Poornagiri,LGD,48,District,337,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -LGD,4838,Block,Poosapatirega,LGD,521,District,4838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,7445,Block,Porabandar City,LGD,456,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -LGD,3822,Block,Porbandar,LGD,456,District,3822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -LGD,2562,Block,Poreyahat,LGD,330,District,2562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,1885,Block,Porompat,LGD,255,District,1885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -LGD,3386,Block,Porsa,LGD,417,District,3386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -LGD,5923,Block,Port Blair,LGD,602,District,5923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -LGD,5208,Block,Porumamilla,LGD,504,District,5208,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,6088,Block,Poshina,LGD,458,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -LGD,2477,Block,Potashpur - I,LGD,317,District,2477,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2478,Block,Potashpur - II,LGD,317,District,2478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,7534,Block,Pothangal,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,1124,Block,Pothia,LGD,203,District,1124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -LGD,2608,Block,Potka,LGD,327,District,2608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -LGD,3218,Block,Pottangi,LGD,363,District,3218,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,7568,Block,Pounda,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,3273,Block,Poundi-Uproda,LGD,383,District,3273,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -LGD,6742,Block,Pouni,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,793,Block,Powayan,LGD,180,District,793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -LGD,7022,Block,Prabhatpttan,LGD,394,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,6905,Block,Pragpur,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,1149,Block,Pranpur,LGD,201,District,1149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,3767,Block,Prantij,LGD,458,District,3767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -LGD,1104,Block,Pratapganj,LGD,223,District,1104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,699,Block,Pratapgarh,LGD,629,District,699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -LGD,882,Block,Pratapgarh,LGD,174,District,882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -LGD,7387,Block,Pratapgarh,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,295,Block,Pratapnagar,LGD,55,District,295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,6417,Block,Pratap Nagar St,LGD,76,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -LGD,3239,Block,Pratappur,LGD,648,District,3239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,2515,Block,Pratappur,LGD,323,District,2515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,5081,Block,Prathipadu,LGD,506,District,5081,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,4900,Block,Prathipadu,LGD,746,District,4900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3246,Block,Premnagar,LGD,648,District,3246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,3417,Block,Prithvipur,LGD,722,District,3417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -LGD,5214,Block,Proddutur,LGD,504,District,5214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,7415,Block,Pub Mangaldai,LGD,283,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -LGD,1616,Block,Puchi Geko Circle,LGD,718,District,1616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false -LGD,5909,Block,Puducherry,LGD,600,District,5909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -LGD,5821,Block,Pudukkottai,LGD,582,District,5821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,4541,Block,Pudur,LGD,698,District,4541,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,6676,Block,Pugalur,LGD,576,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -LGD,1775,Block,Pughoboto,LGD,251,District,1775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,7455,Block,Puintala,LGD,345,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,6942,Block,Pukhri,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,5395,Block,Pulicherla,LGD,503,District,5395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5219,Block,Pulivendula,LGD,504,District,5219,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4478,Block,Pulkal,LGD,691,District,4478,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,6349,Block,Pulla Gumdesh,LGD,48,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -LGD,5098,Block,Pullalacheruvu,LGD,790,District,5098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5247,Block,Pullampeta,LGD,752,District,5247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,51,Block,Pulwama,LGD,11,District,51,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -LGD,6584,Block,Pumao Circle,LGD,666,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false -LGD,6521,Block,Puna,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,424,Block,Punahana,LGD,604,District,424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -LGD,5947,Block,Punalur,LGD,559,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -LGD,3717,Block,Punasa,LGD,405,District,3717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -LGD,2388,Block,Puncha,LGD,321,District,2388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,4194,Block,Pune City,LGD,490,District,4194,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,5415,Block,Punganuru,LGD,753,District,5415,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1841,Block,Pungro,LGD,614,District,1841,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -LGD,1410,Block,Punpun,LGD,212,District,1410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,1077,Block,Pupri,LGD,221,District,1077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,1168,Block,Puraini,LGD,205,District,1168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,7418,Block,Purakhasia,LGD,663,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false -LGD,4196,Block,Purandhar,LGD,490,District,4196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,792,Block,Puranpur,LGD,173,District,792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -LGD,7167,Block,Purasawalkam,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,278,Block,Puraula,LGD,57,District,278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,2283,Block,Purbasthali - I,LGD,306,District,2283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2284,Block,Purbasthali - II,LGD,306,District,2284,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2580,Block,Purbi Tundi*,LGD,325,District,2580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,7467,Block,Puri,LGD,369,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,4124,Block,Purna,LGD,489,District,4124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,1058,Block,Purnahiya,LGD,220,District,1058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -LGD,1134,Block,Purnia East,LGD,214,District,1134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,2341,Block,Pursura,LGD,312,District,2341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,1860,Block,Purul,LGD,257,District,1860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -LGD,2387,Block,Purulia - I,LGD,321,District,2387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,2379,Block,Purulia - II,LGD,321,District,2379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,3089,Block,Purushottampur,LGD,354,District,3089,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,817,Block,Purwa,LGD,186,District,817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -LGD,1289,Block,Pusa,LGD,217,District,1289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,4085,Block,Pusad,LGD,500,District,4085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,6655,Block,Pushkar,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,3696,Block,Pushparajgarh,LGD,390,District,3696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -LGD,3268,Block,Pusour,LGD,386,District,3268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,5410,Block,Puthalapattu,LGD,503,District,5410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5326,Block,Putlur,LGD,502,District,5326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5357,Block,Puttaparthy,LGD,754,District,5357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5564,Block,Puttur,LGD,534,District,5564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,5407,Block,Puttur,LGD,752,District,5407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1995,Block,Pynursla,LGD,274,District,1995,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,7205,Block,Qalamabad,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,6788,Block,Qaziabad (Kralgund),LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,6817,Block,Qazigund,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,6773,Block,Qila Darhal,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,6193,Block,Qoimoh,LGD,622,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -LGD,5617,Block,Quepem,LGD,793,District,5617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -LGD,4518,Block,Qutballapur,LGD,700,District,4518,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,7543,Block,Raah,LGD,789,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,7063,Block,Rabakavi Banahatti,LGD,524,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,7177,Block,Rabdang,LGD,225,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -LGD,5132,Block,Racherla,LGD,790,District,5132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6474,Block,Radaur,LGD,76,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -LGD,4289,Block,Radhanagari,LGD,480,District,4289,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,3745,Block,Radhanpur,LGD,455,District,3745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,5880,Block,Radhapuram,LGD,592,District,5880,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -LGD,825,Block,Rae Bareli,LGD,175,District,825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -LGD,33,Block,Rafiabad,LGD,3,District,33,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,1479,Block,Rafiganj,LGD,189,District,1479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -LGD,6129,Block,Raga Adc,LGD,718,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false -LGD,3679,Block,Raghogarh,LGD,406,District,3679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -LGD,1105,Block,Raghopur,LGD,223,District,1105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,1279,Block,Raghopur,LGD,224,District,1279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,4757,Block,Raghunadhapalem,LGD,509,District,4757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,7513,Block,Raghunathapur,LGD,355,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -LGD,2227,Block,Raghunathganj - I,LGD,319,District,2227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2228,Block,Raghunathganj - II,LGD,319,District,2228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,7257,Block,Raghunathnagar,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,1244,Block,Raghunathpur,LGD,222,District,1244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,2382,Block,Raghunathpur - I,LGD,321,District,2382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,2381,Block,Raghunathpur - II,LGD,321,District,2381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,7111,Block,Raghurajnagar (Nagriya),LGD,426,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -LGD,4698,Block,Ragunathpally,LGD,689,District,4698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,2036,Block,Raha,LGD,297,District,2036,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -LGD,3448,Block,Rahatgarh,LGD,425,District,3448,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,2687,Block,Rahe,LGD,339,District,2687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,4204,Block,Rahta,LGD,466,District,4204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,1382,Block,Rahui,LGD,209,District,1382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,4210,Block,Rahuri,LGD,466,District,4210,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,6932,Block,Rahuwas,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,5461,Block,Raichur,LGD,546,District,5461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -LGD,2716,Block,Raidih,LGD,331,District,2716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,2196,Block,Raiganj,LGD,311,District,2196,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -LGD,3267,Block,Raigarh,LGD,386,District,3267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,3187,Block,Raighar,LGD,366,District,3187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,4395,Block,Raikal,LGD,681,District,4395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,3126,Block,Raikia,LGD,359,District,3126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,4472,Block,Raikode,LGD,691,District,4472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,229,Block,Raikot,LGD,36,District,229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -LGD,644,Block,Railmagra,LGD,112,District,644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,2296,Block,Raina - I,LGD,306,District,2296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,2298,Block,Raina - II,LGD,306,District,2298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -LGD,6283,Block,Raipole,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,2376,Block,Raipur,LGD,305,District,2376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,632,Block,Raipur,LGD,92,District,632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,6925,Block,Raipur,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,3332,Block,Raipur,LGD,387,District,3332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -LGD,598,Block,Raipur,LGD,774,District,598,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3442,Block,Raipura,LGD,420,District,3442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,3480,Block,Raipur Karchuliyan,LGD,424,District,3480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,6411,Block,Raipur Rani,LGD,70,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -LGD,2797,Block,Rairakhol,LGD,371,District,2797,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,2865,Block,Rairangpur,LGD,365,District,2865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,3590,Block,Raisen,LGD,421,District,3590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,461,Block,Raisinghnagar,LGD,100,District,461,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,6473,Block,Rai St,LGD,75,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -LGD,7359,Block,Raithal,LGD,94,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -LGD,2814,Block,Rajagangapur,LGD,373,District,2814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,7288,Block,Raja Ka Talab,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,519,Block,Rajakhera,LGD,98,District,519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -LGD,7388,Block,Rajaldesar,LGD,96,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,4796,Block,Rajam,LGD,521,District,4796,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,4907,Block,Rajamahendravaram Rural,LGD,505,District,4907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,4906,Block,Rajamahendravaram Urban,LGD,505,District,4906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,6241,Block,Rajampet,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,5246,Block,Rajampet,LGD,504,District,5246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4908,Block,Rajanagaram,LGD,505,District,4908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,1277,Block,Raja Pakar,LGD,224,District,1277,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,5847,Block,Rajapalayam,LGD,597,District,5847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,4615,Block,Rajapeta,LGD,697,District,4615,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,6261,Block,Rajapur,LGD,512,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -LGD,4274,Block,Rajapur,LGD,492,District,4274,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,6156,Block,Rajapur,LGD,136,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false -LGD,2332,Block,Rajarhat,LGD,303,District,2332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,6653,Block,Rajasingamangalam,LGD,583,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,6093,Block,Rajatalab,LGD,187,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -LGD,1524,Block,Rajauli,LGD,210,District,1524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,1347,Block,Rajaun,LGD,190,District,1347,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,6447,Block,Rajaund St,LGD,66,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -LGD,4888,Block,Rajavommangi,LGD,791,District,4888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4527,Block,Rajendranagar,LGD,518,District,4527,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,2166,Block,Rajganj,LGD,314,District,2166,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -LGD,167,Block,Rajgarh,LGD,24,District,167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,482,Block,Rajgarh,LGD,96,District,482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,502,Block,Rajgarh,LGD,87,District,502,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,3565,Block,Rajgarh,LGD,422,District,3565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,6762,Block,Rajgarh,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -LGD,280,Block,Rajgarhi,LGD,57,District,280,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,1394,Block,Rajgir,LGD,209,District,1394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,3333,Block,Rajim,LGD,645,District,3333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -LGD,2922,Block,Rajkanika,LGD,360,District,2922,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,3803,Block,Rajkot,LGD,457,District,3803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,6520,Block,Rajkot East,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,6524,Block,Rajkot South,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,6523,Block,Rajkot West,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,2569,Block,Rajmahal,LGD,340,District,2569,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,2923,Block,Rajnagar,LGD,360,District,2923,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -LGD,3430,Block,Rajnagar,LGD,398,District,3430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,2258,Block,Rajnagar,LGD,307,District,2258,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,1095,Block,Rajnagar,LGD,206,District,1095,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -LGD,3305,Block,Rajnandgaon,LGD,388,District,3305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -LGD,6296,Block,Rajoli,LGD,695,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,22,Block,Rajouri,LGD,12,District,22,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,449,Block,Rajouri Garden,LGD,85,District,449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false -LGD,6796,Block,Rajpora,LGD,11,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -LGD,1443,Block,Rajpur,LGD,194,District,1443,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,3558,Block,Rajpur,LGD,393,District,3558,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,1464,Block,Rajpur,LGD,215,District,1464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,3250,Block,Rajpur,LGD,649,District,3250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,254,Block,Rajpura,LGD,41,District,254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -LGD,6719,Block,Rajpura,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -LGD,643,Block,Rajsamand,LGD,112,District,643,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,3849,Block,Rajula,LGD,439,District,3849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,5059,Block,Rajupalem,LGD,751,District,5059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5202,Block,Rajupalem,LGD,504,District,5202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4077,Block,Rajura,LGD,473,District,4077,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,106,Block,Rakkar,LGD,18,District,106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,1787,Block,Ralan,LGD,250,District,1787,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,4091,Block,Ralegaon,LGD,500,District,4091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,7004,Block,Rama,LGD,412,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -LGD,4819,Block,Ramabhadrapuram,LGD,521,District,4819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,5398,Block,Ramachandrapuram,LGD,752,District,5398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4924,Block,Ramachandrapuram,LGD,747,District,4924,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4423,Block,Ramadugu,LGD,508,District,4423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,5348,Block,Ramagiri,LGD,754,District,5348,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6216,Block,Ramagiri,LGD,682,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,4399,Block,Ramagundam,LGD,682,District,4399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,5428,Block,Ramakuppam,LGD,503,District,5428,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5606,Block,Ramanagara,LGD,631,District,5606,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -LGD,7511,Block,Ramanaguda,LGD,370,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,5860,Block,Ramanathapuram,LGD,583,District,5860,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,4632,Block,Ramannapet,LGD,697,District,4632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,3236,Block,Ramanujganj,LGD,649,District,3236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,3245,Block,Ramanujnagar,LGD,648,District,3245,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,5241,Block,Ramapuram,LGD,753,District,5241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6243,Block,Ramareddy,LGD,685,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,5414,Block,Ramasamudram,LGD,753,District,5414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4457,Block,Ramayampet,LGD,513,District,4457,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,67,Block,Ramban,LGD,621,District,67,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -LGD,4883,Block,Rambilli,LGD,744,District,4883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7333,Block,Rambrai,LGD,279,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false -LGD,7238,Block,Ramchandrapur,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,4495,Block,Ramchandrapuram,LGD,691,District,4495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,5442,Block,Ramdurg,LGD,527,District,5442,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,5861,Block,Rameswaram,LGD,583,District,5861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,668,Block,Ramganj Mandi,LGD,109,District,668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -LGD,2668,Block,Ramgarh,LGD,326,District,2668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,6724,Block,Ramgarh,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -LGD,2662,Block,Ramgarh,LGD,607,District,2662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -LGD,498,Block,Ramgarh,LGD,87,District,498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,6353,Block,Ramgarh,LGD,51,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,6325,Block,Ramgarh,LGD,338,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,1446,Block,Ramgarh,LGD,200,District,1446,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,7216,Block,Ramgarh,LGD,103,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -LGD,1370,Block,Ramgarh Chowk,LGD,204,District,1370,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -LGD,6908,Block,Ramgarh Pachwara,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,6388,Block,Ramgarh Shekhawati,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,1033,Block,Ramgarhwa,LGD,213,District,1033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,6787,Block,Ramhal (Tarathpora),LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,2512,Block,Ramkanda,LGD,328,District,2512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,6728,Block,Ramkote,LGD,7,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -LGD,2105,Block,Ramkrishna Nagar,LGD,293,District,2105,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -LGD,2501,Block,Ramna,LGD,328,District,2501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,74,Block,Ramnagar,LGD,14,District,74,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -LGD,3469,Block,Ramnagar,LGD,784,District,3469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,1014,Block,Ramnagar,LGD,211,District,1014,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,343,Block,Ramnagar,LGD,51,District,343,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -LGD,897,Block,Ramnagar,LGD,129,District,897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -LGD,2493,Block,Ramnagar - I,LGD,317,District,2493,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,2494,Block,Ramnagar - II,LGD,317,District,2494,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,4895,Block,Rampachodavaram,LGD,791,District,4895,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1454,Block,Rampur,LGD,200,District,1454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -LGD,3134,Block,Rampur,LGD,372,District,3134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -LGD,177,Block,Rampur,LGD,23,District,177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,726,Block,Rampur,LGD,176,District,726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -LGD,7032,Block,Rampura,LGD,419,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -LGD,7391,Block,Rampura Dabri,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,244,Block,Rampura Phul,LGD,28,District,244,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -LGD,3466,Block,Rampur Baghelan,LGD,426,District,3466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -LGD,2253,Block,Rampurhat - I,LGD,307,District,2253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2254,Block,Rampurhat - II,LGD,307,District,2254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,705,Block,Rampur Maniharan,LGD,177,District,705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -LGD,3697,Block,Rampur Naikin,LGD,433,District,3697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -LGD,900,Block,Ramsanehighat,LGD,129,District,900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -LGD,583,Block,Ramsar,LGD,90,District,583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,160,Block,Ramshahr,LGD,25,District,160,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,7201,Block,Ramsoo,LGD,621,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -LGD,4028,Block,Ramtek,LGD,484,District,4028,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,2312,Block,Ranaghat - I,LGD,320,District,2312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,2313,Block,Ranaghat - II,LGD,320,District,2313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,3710,Block,Ranapur,LGD,412,District,3710,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -LGD,3033,Block,Ranapur,LGD,367,District,3033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -LGD,4805,Block,Ranastalam,LGD,519,District,4805,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,3823,Block,Ranavav,LGD,456,District,3823,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -LGD,4909,Block,Rangampeta,LGD,505,District,4909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,5921,Block,Rangat,LGD,632,District,5921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -LGD,5934,Block,Rangia,LGD,291,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -LGD,2017,Block,Rangjuli,LGD,287,District,2017,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -LGD,2155,Block,Rangli Rangliot,LGD,309,District,2155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -LGD,6396,Block,Rangpo,LGD,741,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -LGD,1333,Block,Rangra Chowk,LGD,192,District,1333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,6898,Block,Rani,LGD,111,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -LGD,2702,Block,Rania,LGD,606,District,2702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false -LGD,391,Block,Rania,LGD,74,District,391,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -LGD,2375,Block,Ranibandh,LGD,305,District,2375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,5495,Block,Ranibennur,LGD,540,District,5495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -LGD,884,Block,Raniganj,LGD,174,District,884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -LGD,2271,Block,Raniganj,LGD,704,District,2271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -LGD,1115,Block,Raniganj,LGD,188,District,1115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,328,Block,Ranikhet,LGD,45,District,328,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,1983,Block,Ranikor,LGD,658,District,1983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false -LGD,2236,Block,Raninagar - I,LGD,319,District,2236,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2233,Block,Raninagar - II,LGD,319,District,2233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2672,Block,Ranishwar,LGD,326,District,2672,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,591,Block,Raniwara,LGD,104,District,591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,7025,Block,Ranjhi,LGD,411,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,2511,Block,Ranka,LGD,328,District,2511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,5681,Block,Ranni,LGD,564,District,5681,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -LGD,6976,Block,Rannod,LGD,432,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,3785,Block,Ranpur,LGD,676,District,3785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -LGD,3506,Block,Raoti,LGD,423,District,3506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,3723,Block,Rapar,LGD,449,District,3723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -LGD,5331,Block,Rapthadu,LGD,502,District,5331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5175,Block,Rapur,LGD,515,District,5175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,7369,Block,Rarah,LGD,767,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,2868,Block,Raruan,LGD,365,District,2868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,2879,Block,Rasgobindpur,LGD,365,District,2879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,655,Block,Rashmi,LGD,95,District,655,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,5746,Block,Rasipuram,LGD,580,District,5746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -LGD,977,Block,Rasra,LGD,126,District,977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -LGD,843,Block,Rasulabad,LGD,156,District,843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -LGD,7471,Block,Rasulpur,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,485,Block,Ratangarh,LGD,96,District,485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,7239,Block,Ratanpur,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,865,Block,Rath,LGD,149,District,865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -LGD,386,Block,Ratia,LGD,61,District,386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -LGD,3507,Block,Ratlam,LGD,423,District,3507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,7009,Block,Ratlam Nagar,LGD,423,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,4271,Block,Ratnagiri,LGD,492,District,4271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,1535,Block,Ratni Faridpur,LGD,199,District,1535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -LGD,7106,Block,Rattihalli,LGD,540,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -LGD,2691,Block,Ratu,LGD,339,District,2691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,2212,Block,Ratua - I,LGD,316,District,2212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,2213,Block,Ratua - II,LGD,316,District,2213,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -LGD,7016,Block,Rau,LGD,410,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,1552,Block,Ravangla,LGD,227,District,1552,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false -LGD,3962,Block,Raver,LGD,478,District,3962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,4856,Block,Ravikamatham,LGD,744,District,4856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4926,Block,Ravulapalem,LGD,747,District,4926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,658,Block,Rawatbhata,LGD,95,District,658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -LGD,470,Block,Rawatsar,LGD,101,District,470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -LGD,6915,Block,Rawla,LGD,100,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,1031,Block,Raxaul,LGD,213,District,1031,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,5239,Block,Rayachoti,LGD,753,District,5239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5305,Block,Rayadurg,LGD,502,District,5305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,3181,Block,Rayagada,LGD,370,District,3181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -LGD,3107,Block,Rayagada,LGD,353,District,3107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -LGD,4703,Block,Rayaparthy,LGD,522,District,4703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,4921,Block,Rayavaram,LGD,505,District,4921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,5435,Block,Raybag,LGD,527,District,5435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,1813,Block,Razieba,LGD,248,District,1813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,4937,Block,Razole,LGD,747,District,4937,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,2803,Block,Reamal,LGD,351,District,2803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false -LGD,77,Block,Reasi,LGD,627,District,77,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,4327,Block,Rebbena,LGD,699,District,4327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,1647,Block,Rebo Perging Circle,LGD,679,District,1647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,4999,Block,Reddigudem,LGD,749,District,4999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7226,Block,Reengus,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,4786,Block,Regidi Amadalavalasa,LGD,521,District,4786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,4471,Block,Regode,LGD,513,District,4471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,4690,Block,Regonda,LGD,687,District,4690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,3611,Block,Rehatgaon,LGD,408,District,3611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -LGD,3451,Block,Rehli,LGD,425,District,3451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,3589,Block,Rehti,LGD,427,District,3589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,1898,Block,Reiek,LGD,266,District,1898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false -LGD,2902,Block,Remuna,LGD,346,District,2902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,4227,Block,Renapur,LGD,481,District,4227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,7272,Block,Rengakharkala,LGD,382,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -LGD,2785,Block,Rengali,LGD,371,District,2785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,6381,Block,Reni,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,5376,Block,Renigunta,LGD,752,District,5376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4357,Block,Renjal,LGD,516,District,4357,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,5043,Block,Rentachintala,LGD,751,District,5043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,170,Block,Renuka,LGD,24,District,170,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,6577,Block,Renuk Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,596,Block,Reodar,LGD,115,District,596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -LGD,5096,Block,Repalle,LGD,750,District,5096,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6545,Block,Rerapara,LGD,663,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false -LGD,1970,Block,Resubelpara,LGD,656,District,1970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false -LGD,6286,Block,Revally,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,1257,Block,Revelganj,LGD,218,District,1257,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,6952,Block,Rewalsar,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,414,Block,Rewari,LGD,72,District,414,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -LGD,7287,Block,Rey,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,6101,Block,Richukrong Circle,LGD,231,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,1070,Block,Riga,LGD,221,District,1070,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,1644,Block,Riga Eac,LGD,679,District,1644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,6355,Block,Rikhanikhal,LGD,52,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,7336,Block,Ri Muliang,LGD,279,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false -LGD,694,Block,Rishabhdeo,LGD,117,District,694,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,305,Block,Rishikesh,LGD,49,District,305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -LGD,4000,Block,Risod,LGD,499,District,4000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -LGD,3621,Block,Rithi,LGD,413,District,3621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,6069,Block,Riyan Bari,LGD,110,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,6674,Block,R K Pet,LGD,589,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,1005,Block,Robertsganj,LGD,184,District,1005,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -LGD,5349,Block,Roddam,LGD,754,District,5349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1517,Block,Roh,LGD,210,District,1517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,4179,Block,Roha,LGD,491,District,4179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,600,Block,Rohat,LGD,111,District,600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -LGD,6077,Block,Rohini,LGD,82,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false -LGD,191,Block,Rohru,LGD,23,District,191,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,405,Block,Rohtak,LGD,73,District,405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -LGD,1475,Block,Rohtas,LGD,215,District,1475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,1724,Block,Roing Hq,LGD,235,District,1724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false -LGD,5353,Block,Rolla,LGD,754,District,5353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4855,Block,Rolugunta,LGD,744,District,4855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5066,Block,Rompicharla,LGD,751,District,5066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5373,Block,Rompicherla,LGD,503,District,5373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5469,Block,Ron,LGD,537,District,5469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -LGD,3396,Block,Ron,LGD,395,District,3396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -LGD,1978,Block,Rongara,LGD,277,District,1978,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -LGD,1555,Block,Rongli,LGD,741,District,1555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -LGD,1965,Block,Rongram,LGD,278,District,1965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -LGD,176,Block,Ronhat,LGD,24,District,176,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,6657,Block,Roopangarh,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,353,Block,Roorkee,LGD,50,District,353,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -LGD,1300,Block,Rosera,LGD,217,District,1300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,7462,Block,Rourkela,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,4891,Block,Rowthulapudi,LGD,746,District,4891,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,80,Block,R. S. Pura,LGD,5,District,80,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,902,Block,Rudauli,LGD,140,District,902,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -LGD,7389,Block,Rudawal,LGD,91,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -LGD,3102,Block,R.Udayagiri,LGD,353,District,3102,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -LGD,940,Block,Rudhauli,LGD,131,District,940,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -LGD,6219,Block,Rudrangi,LGD,683,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,291,Block,Rudraprayag,LGD,54,District,291,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -LGD,960,Block,Rudrapur,LGD,137,District,960,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -LGD,6030,Block,Rudrapur,LGD,56,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,5297,Block,Rudravaram,LGD,755,District,5297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6240,Block,Rudrur,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,1653,Block,Ruksin Adc,LGD,232,District,1653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -LGD,1630,Block,Rumgong Adc,LGD,679,District,1630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -LGD,1073,Block,Runisaidpur,LGD,221,District,1073,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,2033,Block,Rupahi,LGD,297,District,2033,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -LGD,6560,Block,Rupa Sdo,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,1131,Block,Rupauli,LGD,214,District,1131,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,514,Block,Rupbas,LGD,91,District,514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -LGD,264,Block,Rup Nagar,LGD,42,District,264,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -LGD,7561,Block,Saach,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,3390,Block,Sabalgarh,LGD,417,District,3390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -LGD,2464,Block,Sabang,LGD,318,District,2464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,3781,Block,Sabarmati,LGD,438,District,3781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,4861,Block,Sabbavaram,LGD,744,District,4861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6062,Block,Sabla,LGD,99,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,1338,Block,Sabour,LGD,192,District,1338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,6688,Block,Sabroom,LGD,271,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -LGD,760,Block,Sadabad,LGD,163,District,760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -LGD,4049,Block,Sadak-Arjuni,LGD,476,District,4049,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -LGD,821,Block,Sadar,LGD,162,District,821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -LGD,6696,Block,Sadar,LGD,272,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -LGD,7575,Block,Sadar Bazar,LGD,795,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,4381,Block,Sadashivanagar,LGD,685,District,4381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,4490,Block,Sadasivpet,LGD,691,District,4490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,6475,Block,Sadhaura St,LGD,76,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -LGD,2059,Block,Sadiya,LGD,302,District,2059,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -LGD,459,Block,Sadulshahar,LGD,100,District,459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,7291,Block,Sadwan,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,385,Block,Safidon,LGD,65,District,385,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -LGD,814,Block,Safipur,LGD,186,District,814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -LGD,1601,Block,Sagalee Adc,LGD,237,District,1601,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,3449,Block,Sagar,LGD,425,District,3449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,2438,Block,Sagar,LGD,304,District,2438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,5515,Block,Sagar,LGD,547,District,5515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -LGD,2230,Block,Sagardighi,LGD,319,District,2230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,7030,Block,Sagar Nagar,LGD,425,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,3912,Block,Sagbara,LGD,452,District,3912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -LGD,2505,Block,Sagma,LGD,328,District,2505,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -LGD,6840,Block,Sago,LGD,724,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false -LGD,965,Block,Sagri,LGD,123,District,965,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -LGD,648,Block,Sagwara,LGD,99,District,648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,6499,Block,Sahamphung,LGD,717,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false -LGD,1434,Block,Sahar,LGD,193,District,1434,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,633,Block,Sahara,LGD,92,District,633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,702,Block,Saharanpur,LGD,177,District,702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -LGD,7491,Block,Saharapada,LGD,361,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,3300,Block,Sahaspur Lohara,LGD,382,District,3300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -LGD,6429,Block,Saha St,LGD,58,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -LGD,781,Block,Sahaswan,LGD,133,District,781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -LGD,1011,Block,Sahawar,LGD,633,District,1011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -LGD,1282,Block,Sahdai Buzurg,LGD,224,District,1282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,1199,Block,Sahebganj,LGD,208,District,1199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,1318,Block,Sahebpur Kamal,LGD,191,District,1318,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,2564,Block,Sahibganj,LGD,340,District,2564,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,2473,Block,Sahid Matangini,LGD,317,District,2473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,949,Block,Sahjanwa,LGD,148,District,949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -LGD,7451,Block,Saho,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,4511,Block,Saidabad,LGD,507,District,4511,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,988,Block,Saidpur,LGD,146,District,988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -LGD,837,Block,Saifai,LGD,139,District,837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -LGD,7003,Block,Saikheda,LGD,418,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -LGD,6501,Block,Saikot,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,6493,Block,Saikul,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,3504,Block,Sailana,LGD,423,District,3504,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,119,Block,Sainj,LGD,20,District,119,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -LGD,3148,Block,Saintala,LGD,345,District,3148,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,7136,Block,Sainthal,LGD,97,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,2261,Block,Sainthia,LGD,307,District,2261,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2000,Block,Saipung,LGD,657,District,2000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false -LGD,1862,Block,Saitu-Gamphazol,LGD,712,District,1862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,3313,Block,Saja,LGD,650,District,3313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,6043,Block,Sajjangarh,LGD,88,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -LGD,992,Block,Sakaldiha,LGD,135,District,992,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -LGD,4939,Block,Sakhinetipalli,LGD,747,District,4939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5553,Block,Sakleshpur,LGD,539,District,5553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -LGD,7252,Block,Sakola,LGD,734,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false -LGD,4040,Block,Sakoli,LGD,471,District,4040,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -LGD,1214,Block,Sakra,LGD,208,District,1214,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,1808,Block,Sakraba,LGD,248,District,1808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,3958,Block,Sakri,LGD,474,District,3958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -LGD,1834,Block,Sakshi,LGD,615,District,1834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false -LGD,3282,Block,Sakti,LGD,762,District,3282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,2268,Block,Salanpur,LGD,704,District,2268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -LGD,2452,Block,Salbani,LGD,318,District,2452,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -LGD,5616,Block,Salcete,LGD,552,District,5616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -LGD,4048,Block,Salekasa,LGD,476,District,4048,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -LGD,5740,Block,Salem,LGD,584,District,5740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,962,Block,Salempur,LGD,137,District,962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -LGD,5970,Block,Salem South,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,5971,Block,Salem West,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,2957,Block,Salepur,LGD,350,District,2957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,6443,Block,Salhawas St,LGD,64,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -LGD,7294,Block,Salhewara,LGD,759,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,7230,Block,Saligrama,LGD,545,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,1179,Block,Salkhua,LGD,216,District,1179,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,6818,Block,Sallar,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,829,Block,Salon,LGD,175,District,829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -LGD,7532,Block,Saloora,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,2356,Block,Saltora,LGD,305,District,2356,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,692,Block,Salumbar,LGD,777,District,692,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,85,Block,Saluni,LGD,16,District,85,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,4817,Block,Salur,LGD,743,District,4817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7143,Block,Sam,LGD,103,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -LGD,2032,Block,Samaguri,LGD,297,District,2032,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -LGD,377,Block,Samalkha,LGD,71,District,377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -LGD,4910,Block,Samalkota,LGD,746,District,4910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,250,Block,Samana,LGD,41,District,250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -LGD,1974,Block,Samanda,LGD,273,District,1974,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -LGD,1288,Block,Samastipur,LGD,217,District,1288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,82,Block,Samba,LGD,624,District,82,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -LGD,7464,Block,Sambalpur,LGD,371,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -LGD,5237,Block,Sambepalle,LGD,753,District,5237,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,721,Block,Sambhal,LGD,659,District,721,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -LGD,6904,Block,Samdari,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,1154,Block,Sameli,LGD,201,District,1154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -LGD,3749,Block,Sami,LGD,455,District,3749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,1401,Block,Sampatchak,LGD,212,District,1401,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -LGD,406,Block,Sampla,LGD,73,District,406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -LGD,224,Block,Samrala,LGD,36,District,224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -LGD,7242,Block,Samri,LGD,649,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,2224,Block,Samserganj,LGD,319,District,2224,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,4022,Block,Samudrapur,LGD,498,District,4022,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -LGD,6505,Block,Samulamlan,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,7488,Block,Sanakhemundi,LGD,354,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,3780,Block,Sanand,LGD,438,District,3780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,6997,Block,Sanawad,LGD,414,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,590,Block,Sanchore,LGD,104,District,590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,1425,Block,Sandesh,LGD,193,District,1425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,2334,Block,Sandeshkhali - I,LGD,303,District,2334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,2335,Block,Sandeshkhali - II,LGD,303,District,2335,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,126,Block,Sandhol,LGD,22,District,126,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,813,Block,Sandila,LGD,150,District,813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -LGD,5501,Block,Sandur,LGD,528,District,5501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -LGD,6503,Block,Sangaikot,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,5171,Block,Sangam,LGD,515,District,5171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,4272,Block,Sangameshwar,LGD,492,District,4272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -LGD,4202,Block,Sangamner,LGD,466,District,4202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,545,Block,Sanganer,LGD,102,District,545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,4492,Block,Sangareddy,LGD,691,District,4492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,466,Block,Sangaria,LGD,101,District,466,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -LGD,1919,Block,Sangau,LGD,264,District,1919,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false -LGD,6600,Block,Sangdupota Basar Nello Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,4705,Block,Sangem,LGD,522,District,4705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,199,Block,Sangla,LGD,19,District,199,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -LGD,669,Block,Sangod,LGD,109,District,669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -LGD,4251,Block,Sangole,LGD,496,District,4251,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,1046,Block,Sangrampur,LGD,213,District,1046,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1364,Block,Sangrampur,LGD,207,District,1364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,3976,Block,Sangrampur,LGD,472,District,3976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,1705,Block,Sangram Sdo,LGD,233,District,1705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,271,Block,Sangrur,LGD,43,District,271,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -LGD,1819,Block,Sangsangnyu,LGD,249,District,1819,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false -LGD,5618,Block,Sanguem,LGD,793,District,5618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -LGD,1785,Block,Sanis,LGD,250,District,1785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,5300,Block,Sanjamala,LGD,755,District,5300,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6204,Block,Sanjeli,LGD,445,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,1465,Block,Sanjhauli,LGD,215,District,1465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,7149,Block,Sanjoo,LGD,110,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -LGD,5871,Block,Sankarankoil,LGD,733,District,5871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -LGD,5733,Block,Sankarapuram,LGD,729,District,5733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -LGD,5739,Block,Sankari,LGD,584,District,5739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,7235,Block,Sankari,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,6404,Block,Sankari,LGD,57,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -LGD,4892,Block,Sankhavaram,LGD,746,District,4892,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3904,Block,Sankheda,LGD,668,District,3904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -LGD,14,Block,Sankoo,LGD,6,District,14,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -LGD,2459,Block,Sankrail,LGD,703,District,2459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -LGD,2404,Block,Sankrail,LGD,313,District,2404,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,7234,Block,Sanna,LGD,380,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,3744,Block,Santalpur,LGD,455,District,3744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,4790,Block,Santhabommali,LGD,519,District,4790,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,4795,Block,Santhakaviti,LGD,521,District,4795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,5104,Block,Santhamaguluru,LGD,517,District,5104,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,5138,Block,Santhanuthala Padu,LGD,517,District,5138,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,5425,Block,Santhipuram,LGD,503,District,5425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,2311,Block,Santipur,LGD,320,District,2311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,6683,Block,Santirbazar,LGD,271,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -LGD,3881,Block,Santrampur,LGD,669,District,3881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -LGD,2384,Block,Santuri,LGD,321,District,2384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -LGD,3542,Block,Sanwer,LGD,410,District,3542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -LGD,7054,Block,Sapekhati,LGD,708,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -LGD,525,Block,Sapotra,LGD,108,District,525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,1778,Block,Saptiqa,LGD,251,District,1778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,693,Block,Sarada,LGD,777,District,693,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,7274,Block,Saragaon,LGD,379,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,7098,Block,Saraguru,LGD,545,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,6959,Block,Sarahan,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,6986,Block,Sarai,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -LGD,1106,Block,Saraigarh Bhaptiyahi,LGD,223,District,1106,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,2753,Block,Saraikela,LGD,341,District,2753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -LGD,3340,Block,Saraipali,LGD,385,District,3340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -LGD,1295,Block,Sarairanjan,LGD,217,District,1295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,1202,Block,Saraiya,LGD,208,District,1202,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -LGD,2666,Block,Saraiyahat,LGD,326,District,2666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,4396,Block,Sarangapur,LGD,681,District,4396,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,4336,Block,Sarangapur,LGD,680,District,4336,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,3270,Block,Sarangarh,LGD,763,District,3270,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,3567,Block,Sarangpur,LGD,422,District,3567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,7479,Block,Saraskana,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,6196,Block,Saraswati,LGD,455,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,6476,Block,Saraswati Nagar St,LGD,76,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -LGD,2553,Block,Sarath,LGD,324,District,2553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,4788,Block,Saravakota,LGD,519,District,4788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,6960,Block,Sarawati Nagar,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,7370,Block,Sardargarh,LGD,112,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -LGD,3533,Block,Sardarpur,LGD,403,District,3533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -LGD,483,Block,Sardarshahar,LGD,96,District,483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,732,Block,Sardhana,LGD,169,District,732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -LGD,247,Block,Sardulgarh,LGD,37,District,247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false -LGD,2377,Block,Sarenga,LGD,305,District,2377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,7326,Block,Sargaon,LGD,647,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false -LGD,866,Block,Sarila,LGD,149,District,866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -LGD,7244,Block,Sariya,LGD,763,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,129,Block,Sarkaghat,LGD,22,District,129,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,1712,Block,Sarli Circle,LGD,233,District,1712,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false -LGD,6389,Block,Sarmathura,LGD,98,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -LGD,1384,Block,Sarmera,LGD,209,District,1384,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,6094,Block,Sarojani Nagar,LGD,162,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -LGD,7325,Block,Sarona,LGD,381,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -LGD,4526,Block,Saroornagar,LGD,518,District,4526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,7401,Block,Sarsiwa,LGD,763,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -LGD,2023,Block,Sarthebari,LGD,280,District,2023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -LGD,4793,Block,Sarubujjili,LGD,519,District,4793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,2087,Block,Sarupathar,LGD,288,District,2087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -LGD,2025,Block,Sarupeta (Pt),LGD,739,District,2025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -LGD,2547,Block,Sarwan,LGD,324,District,2547,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,613,Block,Sarwar,LGD,86,District,613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,1471,Block,Sasaram,LGD,215,District,1471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,267,Block,Sas Nagar (Mohali),LGD,608,District,267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -LGD,757,Block,Sasni,LGD,163,District,757,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -LGD,7160,Block,Saspol,LGD,9,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -LGD,7397,Block,Satai,LGD,398,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -LGD,1777,Block,Satakha,LGD,251,District,1777,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,4262,Block,Satara,LGD,494,District,4262,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,5613,Block,Satari,LGD,551,District,5613,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -LGD,1172,Block,Satar Kataiya,LGD,216,District,1172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,2631,Block,Satbarwa,LGD,338,District,2631,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,2526,Block,Satgawan,LGD,334,District,2526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -LGD,7559,Block,Sathamba,LGD,672,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -LGD,5869,Block,Sathankulam,LGD,594,District,5869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,7515,Block,Sathnala,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,4751,Block,Sathupalli,LGD,509,District,4751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,5749,Block,Sathyamangalam,LGD,573,District,5749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,3751,Block,Satlasana,LGD,451,District,3751,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,6459,Block,Satnali St,LGD,69,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -LGD,1779,Block,Satoi,LGD,251,District,1779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,311,Block,Satpuli,LGD,52,District,311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,5058,Block,Sattenapalli,LGD,751,District,5058,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5854,Block,Sattur,LGD,597,District,5854,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,3528,Block,Satwas,LGD,402,District,3528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,3064,Block,Satyabadi,LGD,369,District,3064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -LGD,5402,Block,Satyavedu,LGD,752,District,5402,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1175,Block,Saur Bazar,LGD,216,District,1175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,3656,Block,Sausar,LGD,785,District,3656,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -LGD,5441,Block,Savadatti,LGD,527,District,5441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,5064,Block,Savalyapuram H/O Kanamarlapudi,LGD,751,District,5064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5490,Block,Savanur,LGD,540,District,5490,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -LGD,3846,Block,Savar Kundla,LGD,439,District,3846,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -LGD,3897,Block,Savli,LGD,461,District,3897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,4026,Block,Savner,LGD,484,District,4026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,1591,Block,Sawa Circle,LGD,231,District,1591,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,531,Block,Sawai Madhopur,LGD,113,District,531,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,4068,Block,Sawali,LGD,473,District,4068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,4281,Block,Sawantwadi,LGD,495,District,4281,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -LGD,6660,Block,Sawar,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,810,Block,Sawayajpur,LGD,150,District,810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -LGD,1884,Block,Sawombung,LGD,255,District,1884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -LGD,3795,Block,Sayla,LGD,460,District,3795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,585,Block,Sayla,LGD,104,District,585,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -LGD,7390,Block,Sayra,LGD,117,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,1850,Block,Sechu-Zubza,LGD,245,District,1850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -LGD,4498,Block,Secunderabad,LGD,507,District,4498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,5584,Block,Sedam,LGD,538,District,5584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,6045,Block,Sedwa,LGD,90,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,7247,Block,Seepat,LGD,375,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,7518,Block,Seerole,LGD,688,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,6836,Block,Seethammadhara,LGD,520,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,4770,Block,Seethampeta,LGD,743,District,4770,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4896,Block,Seethanagaram,LGD,505,District,4896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,4814,Block,Seethanagaram,LGD,743,District,4814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5153,Block,Seetharamapuram,LGD,515,District,5153,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,3548,Block,Segaon,LGD,414,District,3548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -LGD,6553,Block,Segi Gusar Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,3582,Block,Sehore,LGD,427,District,3582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,7008,Block,Sehore Nagar,LGD,427,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,6104,Block,Seijosa Adc,LGD,723,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false -LGD,6927,Block,Sekhala,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,1800,Block,Sekruzu,LGD,248,District,1800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,4018,Block,Seloo,LGD,498,District,4018,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -LGD,1962,Block,Selsella,LGD,278,District,1962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -LGD,4116,Block,Selu,LGD,489,District,4116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,6911,Block,Semari,LGD,777,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3475,Block,Semaria,LGD,424,District,3475,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,6632,Block,Sendamangalam,LGD,580,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -LGD,3561,Block,Sendhwa,LGD,393,District,3561,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,5785,Block,Sendurai,LGD,610,District,5785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -LGD,4111,Block,Sengaon,LGD,477,District,4111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -LGD,2602,Block,Senha,LGD,336,District,2602,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -LGD,3403,Block,Seondha,LGD,401,District,3403,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -LGD,3664,Block,Seoni,LGD,428,District,3664,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,3612,Block,Seoni Malwa,LGD,409,District,3612,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,7018,Block,Seoni Nagar,LGD,428,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -LGD,517,Block,Sepau,LGD,98,District,517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -LGD,1584,Block,Seppa Hq,LGD,231,District,1584,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false -LGD,2350,Block,Serampur Uttarpara,LGD,312,District,2350,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,1910,Block,Serchhip,LGD,268,District,1910,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false -LGD,4516,Block,Serilingampally,LGD,518,District,4516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,7147,Block,Setrawa,LGD,772,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5332,Block,Settur,LGD,502,District,5332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,6835,Block,Sewarai,LGD,146,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -LGD,1835,Block,Seyochung,LGD,614,District,1835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -LGD,4542,Block,Shabad,LGD,518,District,4542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,3687,Block,Shadhora,LGD,391,District,3687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -LGD,727,Block,Shahabad,LGD,176,District,727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -LGD,7088,Block,Shahabad,LGD,538,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,809,Block,Shahabad,LGD,150,District,809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -LGD,3953,Block,Shahade,LGD,486,District,3953,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -LGD,4167,Block,Shahapur,LGD,497,District,4167,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -LGD,364,Block,Shahbad,LGD,68,District,364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -LGD,675,Block,Shahbad,LGD,89,District,675,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -LGD,6816,Block,Shahbad Bala,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,437,Block,Shahdara,LGD,81,District,437,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false -LGD,981,Block,Shahganj,LGD,152,District,981,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -LGD,3447,Block,Shahgarh,LGD,425,District,3447,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -LGD,795,Block,Shahjahanpur,LGD,180,District,795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -LGD,209,Block,Shahkot,LGD,34,District,209,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -LGD,1341,Block,Shahkund,LGD,192,District,1341,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,3441,Block,Shahnagar,LGD,420,District,3441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,6794,Block,Shahoora (Litter),LGD,11,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -LGD,5588,Block,Shahpur,LGD,635,District,5588,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -LGD,98,Block,Shahpur,LGD,18,District,98,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,3603,Block,Shahpur,LGD,394,District,3603,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -LGD,1421,Block,Shahpur,LGD,193,District,1421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,629,Block,Shahpura,LGD,92,District,629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -LGD,3639,Block,Shahpura,LGD,404,District,3639,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -LGD,540,Block,Shahpura,LGD,102,District,540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,3630,Block,Shahpura,LGD,411,District,3630,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,4283,Block,Shahuwadi,LGD,480,District,4283,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,6431,Block,Shahzadpur St,LGD,58,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -LGD,4496,Block,Shaikpet,LGD,507,District,4496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,3519,Block,Shajapur,LGD,430,District,3519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -LGD,6192,Block,Shakar Chiktan,LGD,6,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -LGD,7578,Block,Shakur Basti,LGD,796,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,4624,Block,Shaligouraram,LGD,514,District,4624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,2514,Block,Shaligram Ram Narayanpur(Hunterganj),LGD,323,District,2514,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,7579,Block,Shalimar Bagh,LGD,796,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -LGD,7338,Block,Shallang,LGD,279,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false -LGD,6367,Block,Shama,LGD,46,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -LGD,7457,Block,Shamakhunta,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,1825,Block,Shamator,LGD,765,District,1825,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1345,Block,Shambhuganj,LGD,190,District,1345,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -LGD,3495,Block,Shamgarh,LGD,416,District,3495,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,1321,Block,Shamho Akha Kurha,LGD,191,District,1321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,4520,Block,Shamirpet,LGD,700,District,4520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,7548,Block,Shamlaji,LGD,672,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -LGD,707,Block,Shamli,LGD,660,District,707,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false -LGD,4543,Block,Shamshabad,LGD,518,District,4543,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,3576,Block,Shamshabad,LGD,437,District,3576,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,1747,Block,Shangnyu,LGD,247,District,1747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,56,Block,Shangus,LGD,1,District,56,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,4454,Block,Shankarampet (A),LGD,513,District,4454,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,4467,Block,Shankarampet (R),LGD,513,District,4467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,4441,Block,Shankarapatnam,LGD,508,District,4441,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,3241,Block,Shankargarh,LGD,649,District,3241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,4515,Block,Shankarpalle,LGD,518,District,4515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,1162,Block,Shankarpur,LGD,205,District,1162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,6197,Block,Shankheshvar,LGD,455,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,4691,Block,Shayampet,LGD,686,District,4691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,3977,Block,Shegaon,LGD,472,District,3977,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,3883,Block,Shehera,LGD,454,District,3883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -LGD,1374,Block,Sheikhpura,LGD,219,District,1374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false -LGD,1373,Block,Shekhopur Sarai,LGD,219,District,1373,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false -LGD,1994,Block,Shella Bholaganj,LGD,274,District,1994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,5874,Block,Shenkottai,LGD,733,District,5874,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -LGD,577,Block,Sheo,LGD,90,District,577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -LGD,592,Block,Sheoganj,LGD,115,District,592,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -LGD,1060,Block,Sheohar,LGD,220,District,1060,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -LGD,3382,Block,Sheopur,LGD,431,District,3382,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -LGD,1470,Block,Sheosagar,LGD,215,District,1470,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,3092,Block,Sheragada,LGD,354,District,3092,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,6566,Block,Shergaon Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,571,Block,Shergarh,LGD,107,District,571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,1503,Block,Sherghati,LGD,196,District,1503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,7305,Block,Shergole,LGD,6,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -LGD,4207,Block,Shevgaon,LGD,466,District,4207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,5489,Block,Shiggaon,LGD,540,District,5489,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -LGD,2671,Block,Shikaripara,LGD,326,District,2671,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -LGD,5517,Block,Shikarpur,LGD,547,District,5517,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -LGD,750,Block,Shikarpur,LGD,134,District,750,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -LGD,774,Block,Shikohabad,LGD,143,District,774,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -LGD,175,Block,Shillai,LGD,24,District,175,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -LGD,181,Block,Shimla ( Rural ),LGD,23,District,181,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,182,Block,Shimla (Urban),LGD,23,District,182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,5471,Block,Shirahatti,LGD,537,District,5471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -LGD,4295,Block,Shirala,LGD,493,District,4295,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,4286,Block,Shirol,LGD,480,District,4286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -LGD,3956,Block,Shirpur,LGD,474,District,3956,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -LGD,4189,Block,Shirur,LGD,490,District,4189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,4231,Block,Shirur Anantpal,LGD,481,District,4231,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,4217,Block,Shirur (Kasar),LGD,470,District,4217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,1286,Block,Shivaji Nagar,LGD,217,District,1286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,5520,Block,Shivamogga,LGD,547,District,5520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -LGD,4487,Block,Shivampet,LGD,513,District,4487,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,7565,Block,Shivpur,LGD,409,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,3408,Block,Shivpuri,LGD,432,District,3408,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,7044,Block,Shivpuri Nagar,LGD,432,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -LGD,7256,Block,Shivrinarayan,LGD,379,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -LGD,932,Block,Shohratgarh,LGD,182,District,932,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -LGD,5705,Block,Sholinganallur,LGD,568,District,5705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,7060,Block,Sholinghur,LGD,731,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -LGD,6641,Block,Shoolagiri,LGD,577,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -LGD,52,Block,Shopian,LGD,625,District,52,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false -LGD,5587,Block,Shorapur,LGD,635,District,5587,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -LGD,4212,Block,Shrigonda,LGD,466,District,4212,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,555,Block,Shrimadhopur,LGD,114,District,555,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,7148,Block,Shrimahaveer Ji,LGD,108,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,4205,Block,Shrirampur,LGD,466,District,4205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -LGD,5549,Block,Shrirangapattana,LGD,544,District,5549,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -LGD,4183,Block,Shrivardhan,LGD,491,District,4183,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,3522,Block,Shujalpur,LGD,430,District,3522,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -LGD,3583,Block,Shyampur,LGD,427,District,3583,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -LGD,2410,Block,Shyampur - I,LGD,313,District,2410,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,2411,Block,Shyampur - II,LGD,313,District,2411,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,1921,Block,Siaha,LGD,267,District,1921,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,false -LGD,747,Block,Siana,LGD,134,District,747,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -LGD,6573,Block,Sibe Circle,LGD,719,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false -LGD,2071,Block,Sibsagar,LGD,300,District,2071,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -LGD,5486,Block,Siddapur,LGD,550,District,5486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,6281,Block,Siddipet Rural,LGD,692,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,4459,Block,Siddipet Urban,LGD,692,District,4459,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,808,Block,Sidhauli,LGD,183,District,808,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -LGD,1013,Block,Sidhaw,LGD,211,District,1013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,6931,Block,Sidhmukh,LGD,96,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,5229,Block,Sidhout,LGD,504,District,5229,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,3746,Block,Sidhpur,LGD,455,District,3746,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -LGD,1227,Block,Sidhwalia,LGD,197,District,1227,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,5599,Block,Sidlaghatta,LGD,630,District,5599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -LGD,2114,Block,Sidli,LGD,612,District,2114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -LGD,3700,Block,Sihawal,LGD,433,District,3700,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -LGD,3856,Block,Sihor,LGD,443,District,3856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,3627,Block,Sihora,LGD,411,District,3627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -LGD,89,Block,Sihunta,LGD,16,District,89,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,7332,Block,Siju,LGD,277,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -LGD,976,Block,Sikanderpur,LGD,126,District,976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -LGD,847,Block,Sikandra,LGD,156,District,847,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -LGD,1526,Block,Sikandra,LGD,198,District,1526,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,745,Block,Sikandrabad,LGD,134,District,745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -LGD,758,Block,Sikandra Rao,LGD,163,District,758,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -LGD,553,Block,Sikar,LGD,114,District,553,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,7228,Block,Sikar Gramin,LGD,114,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -LGD,535,Block,Sikrai,LGD,97,District,535,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -LGD,6930,Block,Sikri,LGD,767,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,1026,Block,Sikta,LGD,211,District,1026,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,1118,Block,Sikti,LGD,188,District,1118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -LGD,1395,Block,Silao,LGD,209,District,1395,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,2097,Block,Silchar,LGD,282,District,2097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -LGD,2688,Block,Silli,LGD,339,District,2688,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,4135,Block,Sillod,LGD,469,District,4135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,2091,Block,Silonijan,LGD,292,District,2091,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -LGD,6843,Block,Silsango Circle,LGD,237,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,3596,Block,Silwani,LGD,421,District,3596,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,649,Block,Simalwara,LGD,99,District,649,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -LGD,2524,Block,Simaria,LGD,323,District,2524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,6975,Block,Simaria,LGD,420,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -LGD,2718,Block,Simdega,LGD,342,District,2718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,3324,Block,Simga,LGD,644,District,3324,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,5217,Block,Simhadripuram,LGD,504,District,5217,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,3215,Block,Similiguda,LGD,363,District,3215,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -LGD,2372,Block,Simlapal,LGD,305,District,2372,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,1435,Block,Simri,LGD,194,District,1435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -LGD,1178,Block,Simri Bakhtiarpur,LGD,216,District,1178,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,2908,Block,Simulia,LGD,346,District,2908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,3158,Block,Sinapali,LGD,368,District,3158,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -LGD,4069,Block,Sindewahi,LGD,473,District,4069,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,5451,Block,Sindgi,LGD,530,District,5451,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,6052,Block,Sindhari,LGD,775,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,5463,Block,Sindhnur,LGD,546,District,5463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -LGD,3957,Block,Sindkhede,LGD,474,District,3957,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -LGD,3986,Block,Sindkhed Raja,LGD,472,District,3986,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -LGD,1662,Block,Singa Circle,LGD,240,District,1662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,5995,Block,Singampunari,LGD,585,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,5325,Block,Singanamala,LGD,502,District,5325,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5149,Block,Singarayakonda,LGD,517,District,5149,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,4744,Block,Singareni,LGD,509,District,4744,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,1573,Block,Singchung Adc,LGD,242,District,1573,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,1159,Block,Singheshwar,LGD,205,District,1159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -LGD,1301,Block,Singhia,LGD,217,District,1301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,7204,Block,Singhpora,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,1182,Block,Singhwara,LGD,195,District,1182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,1872,Block,Singngat,LGD,254,District,1872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,3488,Block,Singoli,LGD,419,District,3488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -LGD,3705,Block,Singrauli,LGD,638,District,3705,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -LGD,7040,Block,Singrauli Nagar,LGD,638,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -LGD,2349,Block,Singur,LGD,312,District,2349,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,6480,Block,Singvad,LGD,445,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,4154,Block,Sinnar,LGD,487,District,4154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,3908,Block,Sinor,LGD,461,District,3908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,6777,Block,Siot,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,2147,Block,Sipajhar,LGD,283,District,2147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -LGD,5533,Block,Sira,LGD,548,District,5533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,3607,Block,Sirali,LGD,408,District,3607,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -LGD,885,Block,Sirathu,LGD,158,District,885,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -LGD,899,Block,Sirauli Gauspur,LGD,129,District,899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -LGD,4435,Block,Sircilla,LGD,683,District,4435,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,1523,Block,Sirdala,LGD,210,District,1523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,6279,Block,Sirgapoor,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,4379,Block,Sirikonda,LGD,516,District,4379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,6224,Block,Sirikonda,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,5795,Block,Sirkali,LGD,735,District,5795,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -LGD,3473,Block,Sirmour,LGD,424,District,3473,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,593,Block,Sirohi,LGD,115,District,593,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -LGD,4063,Block,Sironcha,LGD,475,District,4063,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -LGD,3571,Block,Sironj,LGD,437,District,3571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,4315,Block,Sirpur (T),LGD,699,District,4315,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,4326,Block,Sirpur U,LGD,699,District,4326,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,390,Block,Sirsa,LGD,74,District,390,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -LGD,6161,Block,Sirsaganj,LGD,143,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -LGD,5483,Block,Sirsi,LGD,550,District,5483,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,5499,Block,Siruguppa,LGD,528,District,5499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -LGD,5286,Block,Sirvel,LGD,755,District,5286,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7097,Block,Sirwar,LGD,546,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -LGD,2708,Block,Sisai,LGD,331,District,2708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -LGD,2056,Block,Sissibargaon,LGD,284,District,2056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -LGD,1247,Block,Siswan,LGD,222,District,1247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,2189,Block,Sitai,LGD,308,District,2189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,2190,Block,Sitalkuchi,LGD,308,District,2190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,3498,Block,Sitamau,LGD,416,District,3498,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,3252,Block,Sitapur,LGD,389,District,3252,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -LGD,804,Block,Sitapur,LGD,183,District,804,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -LGD,351,Block,Sitarganj,LGD,56,District,351,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -LGD,1839,Block,Sitimi,LGD,614,District,1839,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -LGD,5832,Block,Sivaganga,LGD,585,District,5832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,5870,Block,Sivagiri,LGD,733,District,5870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -LGD,5849,Block,Sivakasi,LGD,597,District,5849,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,1230,Block,Siwan,LGD,222,District,1230,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,580,Block,Siwana,LGD,775,District,580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,400,Block,Siwani,LGD,59,District,400,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -LGD,6449,Block,Siwan St,LGD,66,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -LGD,1610,Block,Siyum Adc,LGD,241,District,1610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,6977,Block,Sleemnabad,LGD,413,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,5204,Block,S.Mydukur,LGD,504,District,5204,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,6209,Block,Soan,LGD,680,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,5394,Block,Sodam,LGD,753,District,5394,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4134,Block,Soegaon,LGD,469,District,4134,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,1685,Block,Soha Circle,LGD,239,District,1685,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -LGD,3617,Block,Sohagpur,LGD,409,District,3617,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -LGD,3691,Block,Sohagpur,LGD,429,District,3691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -LGD,904,Block,Sohawal,LGD,140,District,904,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -LGD,2761,Block,Sohela,LGD,347,District,2761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -LGD,6542,Block,Sohiong,LGD,274,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -LGD,420,Block,Sohna,LGD,62,District,420,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,599,Block,Sojat,LGD,111,District,599,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -LGD,3862,Block,Sojitra,LGD,440,District,3862,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,165,Block,Solan,LGD,25,District,165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -LGD,4247,Block,Solapur North,LGD,496,District,4247,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,4253,Block,Solapur South,LGD,496,District,4253,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -LGD,5412,Block,Somala,LGD,753,District,5412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5363,Block,Somandepalli,LGD,754,District,5363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,331,Block,Someshwar,LGD,45,District,331,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,4780,Block,Sompeta,LGD,519,District,4780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,5567,Block,Somvarpet,LGD,541,District,5567,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -LGD,2689,Block,Sonahatu,LGD,339,District,2689,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,2099,Block,Sonai,LGD,282,District,2099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -LGD,7296,Block,Sonakhan,LGD,644,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,7516,Block,Sonala,LGD,501,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,2364,Block,Sonamukhi,LGD,305,District,2364,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,6680,Block,Sonamura,LGD,653,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -LGD,3139,Block,Sonapur,LGD,372,District,3139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -LGD,2130,Block,Sonapur,LGD,618,District,2130,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -LGD,2548,Block,Sona Rai Tharhi,LGD,324,District,2548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -LGD,2074,Block,Sonari,LGD,708,District,2074,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -LGD,7602,Block,Sonari Part,LGD,300,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -LGD,2417,Block,Sonarpur,LGD,304,District,2417,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,42,Block,Sonawari,LGD,623,District,42,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -LGD,1177,Block,Sonbarsa,LGD,216,District,1177,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -LGD,1066,Block,Sonbarsa,LGD,221,District,1066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,1545,Block,Sonbhadra Banshi Suryapur,LGD,611,District,1545,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -LGD,6981,Block,Sondawa,LGD,639,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -LGD,1267,Block,Sonepur,LGD,218,District,1267,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,3944,Block,Songadh,LGD,641,District,3944,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -LGD,1973,Block,Songsak,LGD,273,District,1973,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -LGD,6484,Block,Song Song,LGD,257,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -LGD,3233,Block,Sonhat,LGD,384,District,3233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -LGD,1344,Block,Sonhaula,LGD,192,District,1344,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,380,Block,Sonipat,LGD,75,District,380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -LGD,3525,Block,Sonkatch,LGD,402,District,3525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,1533,Block,Sono,LGD,198,District,1533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -LGD,4121,Block,Sonpeth,LGD,489,District,4121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -LGD,2728,Block,Sonua,LGD,343,District,2728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,32,Block,Sopore,LGD,3,District,32,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,2907,Block,Sora,LGD,346,District,2907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -LGD,5516,Block,Sorab,LGD,547,District,5516,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -LGD,888,Block,Soraon,LGD,120,District,888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -LGD,1550,Block,Soreng,LGD,742,District,1550,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -LGD,1820,Block,Sotokur,LGD,765,District,1820,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,2011,Block,South Salmara,LGD,707,District,2011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false -LGD,7417,Block,South Salmara Pt,LGD,285,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -LGD,7421,Block,Soyatkala,LGD,667,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -LGD,116,Block,Spiti,LGD,21,District,116,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -LGD,4882,Block,S.Rayavaram,LGD,744,District,4882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5206,Block,Sri Avadhutha Kasinayana,LGD,504,District,5206,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,480,Block,Sridungargarh,LGD,93,District,480,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -LGD,6819,Block,Srigufwara,LGD,1,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -LGD,2112,Block,Srijangram,LGD,281,District,2112,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -LGD,4802,Block,Srikakulam,LGD,519,District,4802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,5378,Block,Srikalahasti,LGD,752,District,5378,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,241,Block,Sri Muktsar Sahib,LGD,39,District,241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -LGD,6646,Block,Srimushnam,LGD,570,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,306,Block,Srinagar,LGD,52,District,306,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,1136,Block,Srinagar,LGD,214,District,1136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -LGD,6805,Block,Srinagar Central,LGD,13,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -LGD,43,Block,Srinagar North,LGD,13,District,43,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -LGD,44,Block,Srinagar South,LGD,13,District,44,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -LGD,5525,Block,Sringeri,LGD,532,District,5525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,5590,Block,Srinivaspur,LGD,542,District,5590,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -LGD,5702,Block,Sriperumbudur,LGD,574,District,5702,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -LGD,4407,Block,Srirampur,LGD,682,District,4407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,5778,Block,Srirangam,LGD,591,District,5778,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,6288,Block,Srirangapur,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,5419,Block,Srirangarajapuram,LGD,503,District,5419,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,6538,Block,Srisailam,LGD,755,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5867,Block,Srivaikuntam,LGD,594,District,5867,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,5848,Block,Srivilliputhur,LGD,597,District,5848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,4831,Block,Srungavarapukota,LGD,521,District,4831,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,6506,Block,Suangdoh,LGD,254,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,723,Block,Suar,LGD,176,District,723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -LGD,2054,Block,Subansiri (Pt-I),LGD,295,District,2054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -LGD,7460,Block,Subdega,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,6024,Block,Subir,LGD,444,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false -LGD,6716,Block,Suchetgarh,LGD,5,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -LGD,4180,Block,Sudhagad,LGD,491,District,4180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,1034,Block,Sugauli,LGD,213,District,1034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,7150,Block,Suhagpura,LGD,629,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -LGD,7249,Block,Suhela,LGD,644,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,6166,Block,Suigam,LGD,789,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,486,Block,Sujangarh,LGD,96,District,486,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,6265,Block,Sujathanagar,LGD,690,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,7549,Block,Sukhsar,LGD,445,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -LGD,2969,Block,Sukinda,LGD,356,District,2969,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,3375,Block,Sukma,LGD,642,District,3375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -LGD,7477,Block,Sukruli,LGD,365,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,7048,Block,Sulah,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,2877,Block,Suliapada,LGD,365,District,2877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,5197,Block,Sullurpeta,LGD,752,District,5197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,327,Block,Sult,LGD,45,District,327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,1340,Block,Sultanganj,LGD,192,District,1340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -LGD,7566,Block,Sultan-Ganj,LGD,421,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,6532,Block,Sultanpur,LGD,421,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,915,Block,Sultanpur,LGD,185,District,915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -LGD,207,Block,Sultanpur Lodhi,LGD,35,District,207,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -LGD,4425,Block,Sulthanabad,LGD,682,District,4425,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -LGD,5636,Block,Sulthanbathery,LGD,567,District,5636,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -LGD,5896,Block,Sulur,LGD,569,District,5896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,5565,Block,Sulya,LGD,534,District,5565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,604,Block,Sumerpur,LGD,111,District,604,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -LGD,11,Block,Sumoor,LGD,9,District,11,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -LGD,272,Block,Sunam,LGD,43,District,272,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -LGD,2809,Block,Sundargarh,LGD,373,District,2809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,132,Block,Sundarnagar,LGD,22,District,132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,2563,Block,Sundarpahari,LGD,330,District,2563,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,26,Block,Sunderbani,LGD,12,District,26,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,6667,Block,Sunel,LGD,105,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -LGD,1784,Block,Sungro,LGD,250,District,1784,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,180,Block,Sunni,LGD,23,District,180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,1728,Block,Sunpura Circle,LGD,234,District,1728,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false -LGD,5479,Block,Supa,LGD,550,District,5479,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,1109,Block,Supaul,LGD,223,District,1109,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,1064,Block,Suppi,LGD,221,District,1064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,3076,Block,Surada,LGD,354,District,3076,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -LGD,6371,Block,Surajgarh,LGD,106,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,1367,Block,Surajgarha,LGD,204,District,1367,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -LGD,3242,Block,Surajpur,LGD,648,District,3242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -LGD,19,Block,Surankote,LGD,10,District,19,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -LGD,465,Block,Suratgarh,LGD,100,District,465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,7442,Block,Surendranagar City,LGD,460,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,4142,Block,Surgana,LGD,487,District,4142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,2259,Block,Suri - I,LGD,307,District,2259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2260,Block,Suri - II,LGD,307,District,2260,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -LGD,2542,Block,Suriya,LGD,329,District,2542,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,6934,Block,Suroth,LGD,108,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,1068,Block,Sursand,LGD,221,District,1068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -LGD,1769,Block,Suruhuto,LGD,251,District,1769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,4638,Block,Suryapet,LGD,696,District,4638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,1460,Block,Suryapura,LGD,215,District,1460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,3515,Block,Susner,LGD,667,District,3515,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -LGD,2482,Block,Sutahata,LGD,317,District,2482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,6992,Block,Suthaliya,LGD,422,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -LGD,2225,Block,Suti - I,LGD,319,District,2225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,2226,Block,Suti - II,LGD,319,District,2226,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -LGD,3836,Block,Sutrapada,LGD,675,District,3836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -LGD,3499,Block,Suwasara,LGD,416,District,3499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -LGD,2319,Block,Swarupnagar,LGD,303,District,2319,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -LGD,6330,Block,Syalde,LGD,45,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -LGD,5185,Block,Sydapuram,LGD,515,District,5185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5198,Block,Tada,LGD,752,District,5198,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5054,Block,Tadepalli,LGD,506,District,5054,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,4961,Block,Tadepalligudem,LGD,523,District,4961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,5056,Block,Tadikonda,LGD,506,District,5056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,5338,Block,Tadimarri,LGD,754,District,5338,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5313,Block,Tadipatri,LGD,502,District,5313,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,4582,Block,Tadoor,LGD,694,District,4582,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,6508,Block,Tadubi,LGD,257,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -LGD,4687,Block,Tadvai,LGD,720,District,4687,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,4389,Block,Tadwai,LGD,685,District,4389,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,858,Block,Tahrauli,LGD,153,District,858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -LGD,7306,Block,Taisuru,LGD,6,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -LGD,1290,Block,Tajpur,LGD,217,District,1290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,6158,Block,Takha,LGD,139,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -LGD,3294,Block,Takhatpur,LGD,375,District,3294,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -LGD,6963,Block,Taklech,LGD,23,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,6549,Block,Taksing Circle,LGD,241,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,3503,Block,Tal,LGD,423,District,3503,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -LGD,4182,Block,Tala,LGD,491,District,4182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,3006,Block,Talacher,LGD,344,District,3006,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -LGD,3859,Block,Talaja,LGD,443,District,3859,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,3834,Block,Talala,LGD,675,District,3834,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -LGD,4309,Block,Talamadugu,LGD,501,District,4309,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,5652,Block,Talappilly,LGD,566,District,5652,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -LGD,4157,Block,Talasari,LGD,665,District,4157,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -LGD,7225,Block,Talawara,LGD,113,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,861,Block,Talbehat,LGD,161,District,861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -LGD,2371,Block,Taldangra,LGD,305,District,2371,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,6033,Block,Talera,LGD,94,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -LGD,1716,Block,Tali Adc,LGD,677,District,1716,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false -LGD,1611,Block,Taliha Adc,LGD,241,District,1611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -LGD,7073,Block,Talikoti,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,5632,Block,Taliparamba,LGD,557,District,5632,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -LGD,2568,Block,Taljhari,LGD,340,District,2568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,4950,Block,Tallapudi,LGD,505,District,4950,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,4930,Block,Tallarevu,LGD,746,District,4930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3768,Block,Talod,LGD,458,District,3768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -LGD,3952,Block,Talode,LGD,486,District,3952,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -LGD,5340,Block,Talupula,LGD,754,District,5340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,246,Block,Talwandi Sabo,LGD,28,District,246,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -LGD,2699,Block,Tamar I,LGD,339,District,2699,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -LGD,5703,Block,Tambaram,LGD,730,District,5703,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -LGD,1866,Block,Tamenglong,LGD,258,District,1866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false -LGD,1865,Block,Tamenglong North,LGD,258,District,1865,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false -LGD,1864,Block,Tamenglong West,LGD,258,District,1864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false -LGD,3647,Block,Tamia,LGD,399,District,3647,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,958,Block,Tamkuhi Raj,LGD,160,District,958,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -LGD,1830,Block,Tamlu,LGD,615,District,1830,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false -LGD,2472,Block,Tamluk,LGD,317,District,2472,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -LGD,3266,Block,Tamnar,LGD,386,District,3266,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -LGD,4305,Block,Tamsi,LGD,501,District,4305,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,2144,Block,Tamulpur,LGD,756,District,2144,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -LGD,5360,Block,Tanakal,LGD,754,District,5360,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,724,Block,Tanda,LGD,176,District,724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -LGD,907,Block,Tanda,LGD,121,District,907,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -LGD,7193,Block,Tanda,LGD,33,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -LGD,4332,Block,Tandur,LGD,684,District,4332,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,4534,Block,Tandur,LGD,698,District,4534,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,2525,Block,Tandwa,LGD,323,District,2525,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -LGD,7459,Block,Tangarpali,LGD,373,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -LGD,3052,Block,Tangi,LGD,362,District,3052,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -LGD,2955,Block,Tangi-Choudwar,LGD,350,District,2955,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,39,Block,Tangmarg,LGD,3,District,39,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,5141,Block,Tangutur,LGD,517,District,5141,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,3800,Block,Tankara,LGD,673,District,3800,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -LGD,1506,Block,Tan Kuppa,LGD,196,District,1506,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,4340,Block,Tanoor,LGD,680,District,4340,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -LGD,7037,Block,Tansen,LGD,407,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -LGD,2740,Block,Tantnagar,LGD,343,District,2740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,6658,Block,Tantoti,LGD,86,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -LGD,4972,Block,Tanuku,LGD,523,District,4972,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,421,Block,Taoru,LGD,604,District,421,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -LGD,276,Block,Tapa,LGD,605,District,276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -LGD,2205,Block,Tapan,LGD,310,District,2205,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -LGD,7603,Block,Tapkara,LGD,380,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -LGD,6941,Block,Tapri,LGD,19,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -LGD,7128,Block,Tapukara,LGD,770,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,930,Block,Tarabganj,LGD,147,District,930,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -LGD,1250,Block,Taraiya,LGD,218,District,1250,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -LGD,2342,Block,Tarakeswar,LGD,312,District,2342,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -LGD,1711,Block,Tarak Lengdi Cicle,LGD,677,District,1711,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false -LGD,3512,Block,Tarana,LGD,435,District,3512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,481,Block,Taranagar,LGD,96,District,481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -LGD,3861,Block,Tarapur,LGD,440,District,3861,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,1362,Block,Tarapur,LGD,207,District,1362,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,1433,Block,Tarari,LGD,193,District,1433,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,1595,Block,Taraso Circle,LGD,237,District,1595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,3140,Block,Tarbha,LGD,372,District,3140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -LGD,1186,Block,Tardih,LGD,195,District,1186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -LGD,2629,Block,Tarhasi,LGD,338,District,2629,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,1062,Block,Tariani Chowk,LGD,220,District,1062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -LGD,5528,Block,Tarikere,LGD,532,District,5528,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -LGD,5118,Block,Tarlupadu,LGD,790,District,5118,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,259,Block,Tarn Taran,LGD,609,District,259,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -LGD,6775,Block,Taryath,LGD,12,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,4301,Block,Tasgaon,LGD,493,District,4301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,6656,Block,Tatgarh,LGD,774,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,2648,Block,Tati Jhariya,LGD,332,District,2648,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -LGD,6589,Block,Tato Eac,LGD,725,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false -LGD,6883,Block,Tauni Devi Bamson,LGD,17,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,1559,Block,Tawang Hq,LGD,238,District,1559,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,1311,Block,Teghra,LGD,191,District,1311,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -LGD,2301,Block,Tehatta - I,LGD,320,District,2301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,2302,Block,Tehatta - II,LGD,320,District,2302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -LGD,7113,Block,Tehla,LGD,87,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,297,Block,Tehri,LGD,55,District,297,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -LGD,6357,Block,Tejam,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,4789,Block,Tekkali,LGD,519,District,4789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,4469,Block,Tekmal,LGD,513,District,4469,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,4739,Block,Tekulapalli,LGD,690,District,4739,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,6248,Block,Tekumatla,LGD,687,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -LGD,3988,Block,Telhara,LGD,467,District,3988,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -LGD,6698,Block,Teliamura,LGD,652,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false -LGD,7286,Block,Telka,LGD,16,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -LGD,4581,Block,Telkapally,LGD,694,District,4581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,2848,Block,Telkoi,LGD,361,District,2848,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -LGD,5078,Block,Tenali,LGD,506,District,5078,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,3460,Block,Tendukheda,LGD,400,District,3460,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -LGD,3638,Block,Tendukheda,LGD,418,District,3638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -LGD,2066,Block,Tengakhat,LGD,286,District,2066,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -LGD,1893,Block,Tengnoupal,LGD,716,District,1893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false -LGD,1856,Block,Tening,LGD,613,District,1856,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -LGD,5873,Block,Tenkasi,LGD,733,District,5873,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -LGD,3197,Block,Tentulikhunti,LGD,366,District,3197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,2079,Block,Teok,LGD,290,District,2079,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -LGD,3471,Block,Teonthar,LGD,424,District,3471,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -LGD,7398,Block,Terdal,LGD,524,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -LGD,1121,Block,Terhagachh,LGD,203,District,1121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -LGD,1056,Block,Tetaria,LGD,213,District,1056,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,1363,Block,Tetiha Bambor,LGD,207,District,1363,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -LGD,2043,Block,Tezpur,LGD,301,District,2043,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -LGD,1729,Block,Tezu Hq,LGD,234,District,1729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false -LGD,7184,Block,Thachi,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,1996,Block,Thadlaskein,LGD,275,District,1996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false -LGD,308,Block,Thailisain,LGD,52,District,308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,1023,Block,Thakrahan,LGD,211,District,1023,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -LGD,6745,Block,Thakrakote,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,7289,Block,Thakurdwara,LGD,18,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,717,Block,Thakurdwara,LGD,171,District,717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -LGD,2556,Block,Thakurgangti,LGD,330,District,2556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -LGD,1123,Block,Thakurganj,LGD,203,District,1123,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -LGD,2871,Block,Thakurmunda,LGD,365,District,2871,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,2412,Block,Thakurpukur Mahestola,LGD,304,District,2412,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -LGD,6359,Block,Thal,LGD,53,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -LGD,7120,Block,Thalaivasal,LGD,584,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,4562,Block,Thalakondapally,LGD,518,District,4562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,5634,Block,Thalassery,LGD,557,District,5634,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -LGD,6539,Block,Thalavadi,LGD,573,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -LGD,4762,Block,Thallada,LGD,509,District,4762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,5121,Block,Thallur,LGD,517,District,5121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,5938,Block,Thamarassery,LGD,561,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -LGD,5368,Block,Thamballapalle,LGD,753,District,5368,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,501,Block,Thanagazi,LGD,87,District,501,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -LGD,20,Block,Thana Mandi,LGD,12,District,20,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -LGD,3706,Block,Thandla,LGD,412,District,3706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -LGD,5726,Block,Thandrampet,LGD,593,District,5726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,4165,Block,Thane,LGD,497,District,4165,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -LGD,366,Block,Thanesar,LGD,68,District,366,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -LGD,6037,Block,Thangadh,LGD,460,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,6217,Block,Thangallapalli,LGD,683,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,5814,Block,Thanjavur,LGD,586,District,5814,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,3314,Block,Thankhamariya,LGD,650,District,3314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -LGD,1869,Block,Thanlon,LGD,715,District,1869,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false -LGD,3733,Block,Tharad,LGD,789,District,3733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,288,Block,Tharali,LGD,47,District,288,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -LGD,5798,Block,Tharangambadi,LGD,735,District,5798,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -LGD,6257,Block,Tharigoppula,LGD,689,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,1388,Block,Tharthari,LGD,209,District,1388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -LGD,3878,Block,Thasra,LGD,450,District,3878,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,63,Block,Thathri,LGD,4,District,63,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -LGD,5418,Block,Thavanampalle,LGD,503,District,5418,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,1223,Block,Thawe,LGD,197,District,1223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,7049,Block,Thelamara,LGD,301,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -LGD,6565,Block,Thembang Circle,LGD,242,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,5844,Block,Theni,LGD,588,District,5844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -LGD,184,Block,Theog,LGD,23,District,184,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,4821,Block,Therlam,LGD,521,District,4821,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,2723,Block,Thethaitangar,LGD,342,District,2723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -LGD,3556,Block,Thikri,LGD,393,District,3556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,4575,Block,Thimmajipet,LGD,694,District,4575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,4438,Block,Thimmapur LMD,LGD,508,District,4438,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,6556,Block,Thingbu Circle,LGD,238,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,1899,Block,Thingdawl,LGD,263,District,1899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false -LGD,1905,Block,Thingsulthliah,LGD,261,District,1905,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -LGD,4645,Block,Thipparthy,LGD,514,District,4645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,5801,Block,Thirukkuvalai,LGD,579,District,5801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -LGD,4619,Block,Thirumalagiri,LGD,696,District,4619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,5840,Block,Thirumangalam,LGD,578,District,5840,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,5822,Block,Thirumayam,LGD,582,District,5822,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,5915,Block,Thirunallar,LGD,598,District,5915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -LGD,5962,Block,Thirupparankundram,LGD,578,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,5829,Block,Thiruppathur,LGD,585,District,5829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,5965,Block,Thiruppuvanam,LGD,585,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -LGD,5809,Block,Thiruthuraipoondi,LGD,590,District,5809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,5813,Block,Thiruvaiyaru,LGD,586,District,5813,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,5679,Block,Thiruvalla,LGD,564,District,5679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -LGD,5698,Block,Thiruvallur,LGD,589,District,5698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,5691,Block,Thiruvananthapuram,LGD,565,District,5691,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -LGD,5806,Block,Thiruvarur,LGD,590,District,5806,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,6672,Block,Thiruvattar,LGD,575,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -LGD,7053,Block,Thiruvennainallur,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,5780,Block,Thiruverumbur,LGD,591,District,5780,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,5810,Block,Thiruvidaimarudur,LGD,586,District,5810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,7406,Block,Thiruvonam,LGD,586,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -LGD,5666,Block,Thodupuzha,LGD,556,District,5666,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -LGD,4463,Block,Thoguta,LGD,692,District,4463,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,4901,Block,Thondangi,LGD,746,District,4901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5221,Block,Thondur,LGD,504,District,5221,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,1829,Block,Thonoknyu,LGD,736,District,1829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,5866,Block,Thoothukkudi,LGD,594,District,5866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,4715,Block,Thorrur,LGD,688,District,4715,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -LGD,5180,Block,Thotapalligudur,LGD,515,District,5180,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5025,Block,Thotlavalluru,LGD,510,District,5025,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,5379,Block,Thottambedu,LGD,752,District,5379,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5773,Block,Thottiyam,LGD,591,District,5773,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,1877,Block,Thoubal,LGD,259,District,1877,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false -LGD,5883,Block,Thovala,LGD,575,District,5883,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -LGD,5654,Block,Thrissur,LGD,566,District,5654,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -LGD,1575,Block,Thrizino Adc,LGD,242,District,1575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -LGD,3171,Block,Thuamul Rampur,LGD,358,District,3171,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -LGD,5053,Block,Thulluru,LGD,506,District,5053,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,136,Block,Thunag,LGD,22,District,136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,4620,Block,Thungaturthy,LGD,696,District,4620,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -LGD,5775,Block,Thuraiyur,LGD,591,District,5775,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,108,Block,Thural,LGD,18,District,108,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -LGD,4614,Block,Thurkapally,LGD,697,District,4614,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,6739,Block,Thuroo,LGD,627,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -LGD,467,Block,Tibbi,LGD,101,District,467,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -LGD,6434,Block,Tigaon St,LGD,60,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -LGD,2949,Block,Tigiria,LGD,350,District,2949,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -LGD,2917,Block,Tihidi,LGD,348,District,2917,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -LGD,6946,Block,Tihra,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,2132,Block,Tihu (Pt),LGD,298,District,2132,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -LGD,496,Block,Tijara,LGD,770,District,496,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3115,Block,Tikabali,LGD,359,District,3115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,3423,Block,Tikamgarh,LGD,434,District,3423,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -LGD,190,Block,Tikar,LGD,23,District,190,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -LGD,1488,Block,Tikari,LGD,196,District,1488,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,6581,Block,Tikhak Rima Putok Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,6948,Block,Tikken,LGD,22,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -LGD,7074,Block,Tikota,LGD,530,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,1964,Block,Tikrikilla,LGD,278,District,1964,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -LGD,3909,Block,Tilakwada,LGD,452,District,3909,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -LGD,3334,Block,Tilda,LGD,387,District,3334,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -LGD,794,Block,Tilhar,LGD,180,District,794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -LGD,824,Block,Tiloi,LGD,640,District,824,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -LGD,1474,Block,Tilouthu,LGD,215,District,1474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -LGD,3610,Block,Timarni,LGD,408,District,3610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -LGD,1726,Block,Tinali Paglam Circle,LGD,235,District,1726,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false -LGD,5729,Block,Tindivanam,LGD,596,District,5729,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,2068,Block,Tingkhong,LGD,286,District,2068,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -LGD,2061,Block,Tinsukia,LGD,302,District,2061,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -LGD,6390,Block,Tinwari,LGD,107,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -LGD,4008,Block,Tiosa,LGD,468,District,4008,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,1920,Block,Tipa,LGD,267,District,1920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,false -LGD,1868,Block,Tipaimukh,LGD,715,District,1868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false -LGD,5539,Block,Tiptur,LGD,548,District,5539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,140,Block,Tira Sujanpur,LGD,17,District,140,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -LGD,1635,Block,Tirbin Eac,LGD,724,District,1635,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false -LGD,2858,Block,Tiring,LGD,365,District,2858,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,3668,Block,Tirodi,LGD,392,District,3668,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,4044,Block,Tirora,LGD,476,District,4044,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -LGD,5519,Block,Tirthahalli,LGD,547,District,5519,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -LGD,2939,Block,Tirtol,LGD,355,District,2939,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -LGD,5868,Block,Tiruchendur,LGD,594,District,5868,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,5745,Block,Tiruchengode,LGD,580,District,5745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -LGD,6620,Block,Tiruchirappalli East,LGD,591,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,5779,Block,Tiruchirappalli West,LGD,591,District,5779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -LGD,5852,Block,Tiruchuli,LGD,597,District,5852,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,5709,Block,Tirukalukundram,LGD,730,District,5709,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -LGD,5732,Block,Tirukkoyilur,LGD,729,District,5732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -LGD,5575,Block,Tirumakudal - Narsipur,LGD,545,District,5575,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -LGD,6306,Block,Tirumalagiri Sagar,LGD,514,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4754,Block,Tirumalayapalem,LGD,509,District,4754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,4499,Block,Tirumalgiri,LGD,507,District,4499,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -LGD,5876,Block,Tirunelveli,LGD,592,District,5876,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -LGD,5720,Block,Tirupathur,LGD,732,District,5720,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -LGD,5375,Block,Tirupati (Rural),LGD,752,District,5375,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5383,Block,Tirupati (Urban),LGD,752,District,5383,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5958,Block,Tiruporur,LGD,730,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -LGD,5967,Block,Tiruppurnorth,LGD,634,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,5968,Block,Tiruppursouth,LGD,634,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,5644,Block,Tirur,LGD,562,District,5644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -LGD,5645,Block,Tirurangadi,LGD,562,District,5645,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -LGD,5696,Block,Tiruttani,LGD,589,District,5696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,5855,Block,Tiruvadanai,LGD,583,District,5855,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -LGD,5727,Block,Tiruvannamalai,LGD,593,District,5727,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,6642,Block,Tiruvengadam,LGD,733,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -LGD,5982,Block,Tiruvottiyur,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,4997,Block,Tiruvuru,LGD,749,District,4997,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,835,Block,Tirwa,LGD,155,District,835,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -LGD,4333,Block,Tiryani,LGD,699,District,4333,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,6649,Block,Tisayanvilai,LGD,592,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -LGD,2533,Block,Tisri,LGD,329,District,2533,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -LGD,5611,Block,Tiswadi,LGD,551,District,5611,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -LGD,2080,Block,Titabor,LGD,290,District,2080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -LGD,3152,Block,Titlagarh,LGD,345,District,3152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,5794,Block,Tittakudi,LGD,570,District,5794,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,1745,Block,Tizit,LGD,247,District,1745,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,7358,Block,Tlabung,LGD,265,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false -LGD,1901,Block,Tlangnuam,LGD,261,District,1901,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -LGD,4946,Block,T.Narasapuram,LGD,748,District,4946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1756,Block,Tobu,LGD,247,District,1756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,520,Block,Todabhim,LGD,108,District,520,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -LGD,619,Block,Todaraisingh,LGD,116,District,619,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,387,Block,Tohana,LGD,61,District,387,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -LGD,3365,Block,Tokapal,LGD,374,District,3365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -LGD,5988,Block,Tokiye,LGD,251,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,7168,Block,Tondiarpet,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,7317,Block,Tongpal,LGD,642,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -LGD,618,Block,Tonk,LGD,116,District,618,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,3524,Block,Tonk Khurd,LGD,402,District,3524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,2737,Block,Tonto,LGD,343,District,2737,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -LGD,7142,Block,Toonga,LGD,102,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -LGD,4482,Block,Toopran,LGD,513,District,4482,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,2581,Block,Topchanchi,LGD,325,District,2581,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,2701,Block,Torpa,LGD,606,District,2701,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false -LGD,1600,Block,Toru Circle,LGD,237,District,1600,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -LGD,399,Block,Tosham,LGD,59,District,399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -LGD,50,Block,Tral,LGD,11,District,50,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -LGD,6784,Block,Trehgam,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,7176,Block,Tribal Taluk Office Attappadi,LGD,563,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -LGD,1111,Block,Tribeniganj,LGD,223,District,1111,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -LGD,4151,Block,Trimbakeshwar,LGD,487,District,4151,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,5099,Block,Tripuranthakam,LGD,790,District,5099,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4662,Block,Tripuraram,LGD,514,District,4662,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,1843,Block,Tseminyu,LGD,757,District,1843,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1844,Block,Tsogin,LGD,757,District,1844,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,5238,Block,T.Sundupalle,LGD,504,District,5238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,5085,Block,Tsunduru,LGD,750,District,5085,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5990,Block,Tsurangkong,LGD,246,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,1826,Block,Tsurungto,LGD,765,District,1826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,1817,Block,Tuensang Sadar,LGD,249,District,1817,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false -LGD,2185,Block,Tufanganj - I,LGD,308,District,2185,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,2186,Block,Tufanganj - II,LGD,308,District,2186,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -LGD,5293,Block,Tuggali,LGD,511,District,5293,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,1870,Block,Tuibong,LGD,254,District,1870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -LGD,6812,Block,Tulail,LGD,623,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -LGD,1760,Block,Tuli,LGD,246,District,1760,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -LGD,4241,Block,Tuljapur,LGD,488,District,4241,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -LGD,6807,Block,Tullamulla Khirbhawani,LGD,626,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -LGD,926,Block,Tulsipur,LGD,127,District,926,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -LGD,5537,Block,Tumakuru,LGD,548,District,5537,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,4037,Block,Tumsar,LGD,471,District,4037,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -LGD,3121,Block,Tumudibandha,LGD,359,District,3121,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -LGD,7295,Block,Tundara,LGD,644,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -LGD,2579,Block,Tundi,LGD,325,District,2579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -LGD,771,Block,Tundla,LGD,143,District,771,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -LGD,4890,Block,Tuni,LGD,746,District,4890,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,1042,Block,Turkaulia,LGD,213,District,1042,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -LGD,5540,Block,Turuvekere,LGD,548,District,5540,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -LGD,3143,Block,Tusura,LGD,345,District,3143,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -LGD,1658,Block,Tuting Adc,LGD,240,District,1658,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,6492,Block,T Vaichong,LGD,712,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -LGD,3574,Block,Tyonda,LGD,437,District,3574,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,301,Block,Tyuni,LGD,49,District,301,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -LGD,6413,Block,Uchana,LGD,65,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -LGD,6923,Block,Uchchain,LGD,91,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -LGD,3943,Block,Uchchhal,LGD,641,District,3943,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -LGD,1222,Block,Uchkagaon,LGD,197,District,1222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -LGD,6693,Block,Udaipur,LGD,654,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -LGD,114,Block,Udaipur,LGD,21,District,114,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -LGD,3597,Block,Udaipura,LGD,421,District,3597,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -LGD,492,Block,Udaipurwati,LGD,106,District,492,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -LGD,2884,Block,Udala,LGD,365,District,2884,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -LGD,2152,Block,Udalguri,LGD,617,District,2152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -LGD,2098,Block,Udarbond,LGD,282,District,2098,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -LGD,5154,Block,Udayagiri,LGD,515,District,5154,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5786,Block,Udayarpalayam,LGD,610,District,5786,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -LGD,6535,Block,Udaynagar,LGD,402,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -LGD,2398,Block,Udaynarayanpur,LGD,313,District,2398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,3249,Block,Udaypur,LGD,389,District,3249,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -LGD,4235,Block,Udgir,LGD,481,District,4235,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -LGD,5756,Block,Udhagamandalam,LGD,587,District,5756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -LGD,72,Block,Udhampur,LGD,14,District,72,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -LGD,6522,Block,Udhna,LGD,459,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,2570,Block,Udhwa,LGD,340,District,2570,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -LGD,5906,Block,Udumalaipettai,LGD,634,District,5906,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,5665,Block,Udumbanchola,LGD,556,District,5665,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -LGD,5523,Block,Udupi,LGD,549,District,5523,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -LGD,1426,Block,Udwant Nagar,LGD,193,District,1426,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -LGD,7114,Block,Ujani Majuli Circle,LGD,706,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false -LGD,1298,Block,Ujiarpur,LGD,217,District,1298,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,3513,Block,Ujjain,LGD,435,District,3513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,7046,Block,Ujjain Nagar,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,7550,Block,Ukai,LGD,641,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -LGD,290,Block,Ukhimath,LGD,54,District,290,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -LGD,1888,Block,Ukhrul,LGD,260,District,1888,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false -LGD,6441,Block,Uklana St,LGD,63,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -LGD,4912,Block,U.Kothapalli,LGD,746,District,4912,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5152,Block,Ulavapadu,LGD,517,District,5152,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,4169,Block,Ulhasnagar,LGD,497,District,4169,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -LGD,7197,Block,Ullala,LGD,534,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -LGD,2407,Block,Uluberia - I,LGD,313,District,2407,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,2406,Block,Uluberia - II,LGD,313,District,2406,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -LGD,3136,Block,Ulunda,LGD,372,District,3136,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -LGD,5735,Block,Ulundurpettai,LGD,729,District,5735,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -LGD,4086,Block,Umarkhed,LGD,500,District,4086,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,3189,Block,Umarkote,LGD,366,District,3189,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -LGD,3934,Block,Umarpada,LGD,459,District,3934,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -LGD,3931,Block,Umbergaon,LGD,462,District,3931,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,1985,Block,Umling,LGD,276,District,1985,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -LGD,3853,Block,Umrala,LGD,443,District,3853,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,4034,Block,Umred,LGD,484,District,4034,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -LGD,3653,Block,Umreth,LGD,399,District,3653,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -LGD,3863,Block,Umreth,LGD,440,District,3863,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -LGD,4103,Block,Umri,LGD,485,District,4103,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -LGD,1987,Block,Umsning,LGD,276,District,1987,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -LGD,6159,Block,Un,LGD,660,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false -LGD,150,Block,Una,LGD,26,District,150,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -LGD,3838,Block,Una,LGD,675,District,3838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -LGD,828,Block,Unchahar,LGD,175,District,828,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -LGD,3465,Block,Unchehara,LGD,426,District,3465,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -LGD,6299,Block,Undavelly,LGD,695,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,4976,Block,Undi,LGD,523,District,4976,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,4970,Block,Undrajavaram,LGD,505,District,4970,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -LGD,4962,Block,Unguturu,LGD,748,District,4962,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5013,Block,Unguturu,LGD,510,District,5013,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,7434,Block,Unhel,LGD,435,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -LGD,621,Block,Uniara,LGD,116,District,621,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -LGD,3753,Block,Unjha,LGD,451,District,3753,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,816,Block,Unnao,LGD,186,District,816,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -LGD,2623,Block,Untari Road,LGD,338,District,2623,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -LGD,3809,Block,Upleta,LGD,457,District,3809,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,4524,Block,Uppal,LGD,700,District,4524,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -LGD,4942,Block,Uppalaguptam,LGD,747,District,4942,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4580,Block,Uppununthala,LGD,694,District,4580,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,4172,Block,Uran,LGD,491,District,4172,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -LGD,5317,Block,Uravakonda,LGD,502,District,5317,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,37,Block,Uri,LGD,3,District,37,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,6295,Block,Urkonda,LGD,694,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,5838,Block,Usilampatti,LGD,578,District,5838,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,3377,Block,Usur,LGD,636,District,3377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -LGD,5845,Block,Uthamapalayam,LGD,588,District,5845,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -LGD,5894,Block,Uthangarai,LGD,577,District,5894,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -LGD,5708,Block,Uthiramerur,LGD,574,District,5708,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -LGD,5695,Block,Uthukkottai,LGD,589,District,5695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -LGD,6616,Block,Uthukuli,LGD,634,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -LGD,4571,Block,Utkoor,LGD,721,District,4571,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -LGD,4321,Block,Utnoor,LGD,501,District,4321,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -LGD,927,Block,Utraula,LGD,127,District,927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -LGD,5302,Block,Uyyalawada,LGD,755,District,5302,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3762,Block,Vadali,LGD,458,District,3762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -LGD,5399,Block,Vadamalapet,LGD,752,District,5399,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3738,Block,Vadgam,LGD,441,District,3738,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -LGD,5837,Block,Vadipatti,LGD,578,District,5837,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -LGD,3755,Block,Vadnagar,LGD,451,District,3755,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,6529,Block,Vadodara East,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,6527,Block,Vadodara North,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,3898,Block,Vadodara Rural,LGD,461,District,3898,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,6526,Block,Vadodara South,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,6528,Block,Vadodara West,LGD,461,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,3899,Block,Vaghodia,LGD,461,District,3899,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -LGD,3915,Block,Vagra,LGD,442,District,3915,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,4276,Block,Vaibhavvadi,LGD,495,District,4276,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -LGD,4139,Block,Vaijapur,LGD,469,District,4139,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -LGD,5669,Block,Vaikom,LGD,560,District,5669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -LGD,4365,Block,Vailpoor,LGD,516,District,4365,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,1268,Block,Vaishali,LGD,224,District,1268,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -LGD,5316,Block,Vajrakarur,LGD,502,District,5316,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,4781,Block,Vajrapukotturu,LGD,519,District,4781,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -LGD,5192,Block,Vakadu,LGD,752,District,5192,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5803,Block,Valangaiman,LGD,590,District,5803,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -LGD,3920,Block,Valia,LGD,442,District,3920,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -LGD,4627,Block,Valigonda,LGD,697,District,4627,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,3851,Block,Vallabhipur,LGD,443,District,3851,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -LGD,690,Block,Vallabhnagar,LGD,117,District,690,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -LGD,5225,Block,Vallur,LGD,504,District,5225,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,5388,Block,Valmikipuram,LGD,753,District,5388,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3946,Block,Valod,LGD,641,District,3946,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -LGD,5900,Block,Valparai,LGD,569,District,5900,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -LGD,3927,Block,Valsad,LGD,462,District,3927,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,7599,Block,Valsad City,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,7405,Block,Vanapuram,LGD,729,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -LGD,7058,Block,Vandalur,LGD,730,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -LGD,5723,Block,Vandavasi,LGD,593,District,5723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,6507,Block,Vangai Range,LGD,715,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false -LGD,4785,Block,Vangara,LGD,521,District,4785,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,4577,Block,Vangoor,LGD,694,District,4577,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,5718,Block,Vaniyambadi,LGD,732,District,5718,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -LGD,3826,Block,Vanthali,LGD,448,District,3826,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,5730,Block,Vanur,LGD,596,District,5730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,6031,Block,Vapi,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,7596,Block,Vapi City,LGD,462,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -LGD,5381,Block,Varadaiahpalem,LGD,752,District,5381,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,996,Block,Varanasi Sadar,LGD,187,District,996,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -LGD,4733,Block,Vararamachandrapuram,LGD,791,District,4733,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5155,Block,Varikuntapadu,LGD,515,District,5155,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5946,Block,Varkala,LGD,565,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -LGD,3562,Block,Varla,LGD,393,District,3562,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -LGD,4376,Block,Varni,LGD,516,District,4376,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,4164,Block,Vasai,LGD,665,District,4164,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -LGD,4115,Block,Vasmath,LGD,477,District,4115,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -LGD,6034,Block,Vaso,LGD,450,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -LGD,5638,Block,Vatakara,LGD,561,District,5638,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -LGD,6291,Block,Vatpally,LGD,691,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,4990,Block,Vatsavai,LGD,749,District,4990,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5080,Block,Vatticherukuru,LGD,506,District,5080,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -LGD,6516,Block,Vatva,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,3732,Block,Vav,LGD,789,District,3732,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -LGD,5742,Block,Vazhapadi,LGD,584,District,5742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,5802,Block,Vedaranyam,LGD,579,District,5802,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -LGD,5762,Block,Vedasandur,LGD,572,District,5762,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -LGD,5397,Block,Vedurukuppam,LGD,503,District,5397,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,4439,Block,Veenavanka,LGD,508,District,4439,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,5242,Block,Veeraballe,LGD,504,District,5242,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4769,Block,Veeraghattam,LGD,743,District,4769,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5872,Block,Veerakeralamputhur,LGD,733,District,5872,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -LGD,5222,Block,Veerapunayunipalle,LGD,504,District,5222,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4983,Block,Veeravasaram,LGD,523,District,4983,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,6220,Block,Veernapalli,LGD,683,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,4994,Block,Veerullapadu,LGD,749,District,4994,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6514,Block,Vejalpur,LGD,438,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,7171,Block,Velachery,LGD,568,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -LGD,6252,Block,Velair,LGD,686,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -LGD,4734,Block,Velairpadu,LGD,748,District,4734,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4565,Block,Veldanda,LGD,694,District,4565,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -LGD,5041,Block,Veldurthy,LGD,751,District,5041,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5278,Block,Veldurthy,LGD,511,District,5278,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,4398,Block,Velgatur,LGD,681,District,4398,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -LGD,4197,Block,Velhe,LGD,490,District,4197,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -LGD,5135,Block,Veligandla,LGD,790,District,5135,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5933,Block,Vellarikkundu,LGD,558,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -LGD,5717,Block,Vellore,LGD,595,District,5717,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -LGD,5282,Block,Velugodu,LGD,755,District,5282,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4330,Block,Vemanpally,LGD,684,District,4330,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -LGD,6624,Block,Vembakkam,LGD,593,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -LGD,6640,Block,Vembakottai,LGD,597,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,5233,Block,Vempalli,LGD,504,District,5233,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4768,Block,Vemsoor,LGD,509,District,4768,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,5220,Block,Vemula,LGD,504,District,5220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4644,Block,Vemulapally,LGD,514,District,4644,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -LGD,4430,Block,Vemulawada,LGD,683,District,4430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,6218,Block,Vemulawada Rural,LGD,683,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,5087,Block,Vemuru,LGD,750,District,5087,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4279,Block,Vengurla,LGD,495,District,4279,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -LGD,5182,Block,Venkatachalam,LGD,515,District,5182,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5187,Block,Venkatagiri,LGD,752,District,5187,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5424,Block,Venkatagirikota,LGD,503,District,5424,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,4684,Block,Venkatapur,LGD,720,District,4684,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,4724,Block,Venkatapuram,LGD,720,District,4724,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,4832,Block,Vepada,LGD,521,District,4832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,5974,Block,Veppanthattai,LGD,581,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -LGD,5953,Block,Veppur,LGD,570,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,7446,Block,Veraval City,LGD,675,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -LGD,5124,Block,Vetapalem,LGD,750,District,5124,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5308,Block,Vidapanakal,LGD,502,District,5308,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5168,Block,Vidavalur,LGD,515,District,5168,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,3579,Block,Vidisha,LGD,437,District,3579,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,7017,Block,Vidisha Nagar,LGD,437,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -LGD,1296,Block,Vidyapati Nagar,LGD,217,District,1296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,6661,Block,Vijainagar,LGD,774,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,464,Block,Vijainagar,LGD,100,District,464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -LGD,3756,Block,Vijapur,LGD,451,District,3756,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,5449,Block,Vijayapura,LGD,530,District,5449,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -LGD,5405,Block,Vijayapuram,LGD,503,District,5405,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5010,Block,Vijayawada Central,LGD,749,District,5010,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6863,Block,Vijayawada East,LGD,749,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6864,Block,Vijayawada North,LGD,749,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5011,Block,Vijayawada (Rural),LGD,749,District,5011,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6865,Block,Vijayawada West,LGD,749,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,3761,Block,Vijaynagar,LGD,458,District,3761,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -LGD,3380,Block,Vijaypur,LGD,431,District,3380,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -LGD,6722,Block,Vijaypur,LGD,624,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -LGD,3624,Block,Vijayraghavgarh,LGD,413,District,3624,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -LGD,1679,Block,Vijoynagar Eac,LGD,229,District,1679,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,4530,Block,Vikarabad,LGD,698,District,4530,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,303,Block,Vikas Nagar,LGD,49,District,303,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -LGD,7591,Block,Vikaspuri,LGD,85,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false -LGD,4159,Block,Vikramgad,LGD,665,District,4159,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -LGD,5978,Block,Vikravandi,LGD,596,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,5864,Block,Vilathikulam,LGD,594,District,5864,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -LGD,5881,Block,Vilavancode,LGD,575,District,5881,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -LGD,7206,Block,Villgam,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,5911,Block,Villianur,LGD,600,District,5911,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -LGD,5731,Block,Viluppuram,LGD,596,District,5731,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -LGD,6198,Block,Vinchchiya,LGD,457,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -LGD,5161,Block,Vinjamur,LGD,515,District,5161,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -LGD,5062,Block,Vinukonda,LGD,751,District,5062,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5568,Block,Virajpet,LGD,541,District,5568,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -LGD,6614,Block,Viralimalai,LGD,582,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -LGD,3779,Block,Viramgam,LGD,438,District,3779,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -LGD,539,Block,Viratnagar,LGD,782,District,539,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -LGD,3870,Block,Virpur,LGD,669,District,3870,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -LGD,5793,Block,Virudhachalam,LGD,570,District,5793,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -LGD,5850,Block,Virudhunagar,LGD,597,District,5850,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,4866,Block,Visakhapatnam (Rural),LGD,520,District,4866,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -LGD,3829,Block,Visavadar,LGD,448,District,3829,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -LGD,2369,Block,Vishnupur,LGD,305,District,2369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -LGD,7586,Block,Vishwas Nagar,LGD,78,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false -LGD,3754,Block,Visnagar,LGD,451,District,3754,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -LGD,5000,Block,Vissannapeta,LGD,749,District,5000,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4836,Block,Vizianagaram Rural,LGD,521,District,4836,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,7431,Block,Vizianagaram Urban,LGD,521,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -LGD,1767,Block,V.K.,LGD,251,District,1767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -LGD,5147,Block,Voletivaripalem,LGD,517,District,5147,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,5228,Block,Vontimitta,LGD,504,District,5228,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,4445,Block,V.Saidapur,LGD,508,District,4445,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -LGD,5027,Block,Vuyyuru,LGD,510,District,5027,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -LGD,3945,Block,Vyara,LGD,641,District,3945,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -LGD,7472,Block,Vyasanagar,LGD,356,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -LGD,5637,Block,Vythiri,LGD,567,District,5637,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -LGD,4162,Block,Wada,LGD,665,District,4162,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -LGD,7095,Block,Wadagera,LGD,635,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -LGD,4610,Block,Waddepally,LGD,695,District,4610,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,3792,Block,Wadhwan,LGD,460,District,3792,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -LGD,3238,Block,Wadrafnagar,LGD,649,District,3238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -LGD,4220,Block,Wadwani,LGD,470,District,4220,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -LGD,6023,Block,Waghai,LGD,444,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false -LGD,6823,Block,Wagoora,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,4256,Block,Wai,LGD,494,District,4256,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -LGD,6486,Block,Waikhong,LGD,711,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,false -LGD,4723,Block,Wajedu,LGD,720,District,4723,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -LGD,1749,Block,Wakching,LGD,247,District,1749,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -LGD,6012,Block,Wakka Sdo,LGD,666,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false -LGD,6808,Block,Wakoora,LGD,626,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -LGD,1730,Block,Wakro Circle,LGD,234,District,1730,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false -LGD,6626,Block,Walajabad,LGD,574,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -LGD,5714,Block,Wallajah,LGD,731,District,5714,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -LGD,1742,Block,Walong Circle,LGD,628,District,1742,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -LGD,4296,Block,Walwa,LGD,493,District,4296,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -LGD,4595,Block,Wanaparthy,LGD,693,District,4595,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,1882,Block,Wangoi,LGD,256,District,1882,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -LGD,4094,Block,Wani,LGD,500,District,4094,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,3801,Block,Wankaner,LGD,673,District,3801,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -LGD,4314,Block,Wankidi,LGD,699,District,4314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -LGD,1999,Block,Wapung,LGD,657,District,1999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false -LGD,4706,Block,Warangal,LGD,522,District,4706,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,3669,Block,Waraseoni,LGD,392,District,3669,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -LGD,4019,Block,Wardha,LGD,498,District,4019,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -LGD,4704,Block,Wardhannapet,LGD,522,District,4704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -LGD,4485,Block,Wargal,LGD,692,District,4485,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -LGD,1513,Block,Warisaliganj,LGD,210,District,1513,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -LGD,1285,Block,Warisnagar,LGD,217,District,1285,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -LGD,4064,Block,Warora,LGD,473,District,4064,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -LGD,4007,Block,Warud,LGD,468,District,4007,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -LGD,6766,Block,Warwan,LGD,620,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -LGD,4238,Block,Washi,LGD,488,District,4238,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -LGD,3999,Block,Washim,LGD,499,District,3999,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -LGD,6825,Block,Watergam,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,6675,Block,Watrap,LGD,597,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -LGD,6386,Block,Wazeerpur,LGD,113,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -LGD,6420,Block,Wazirabad St,LGD,62,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -LGD,1507,Block,Wazirganj,LGD,196,District,1507,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -LGD,4608,Block,Weepangandla,LGD,693,District,4608,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,512,Block,Weir,LGD,91,District,512,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -LGD,1897,Block,West Phaileng,LGD,266,District,1897,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false -LGD,5992,Block,Weziho,LGD,788,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -LGD,6485,Block,Willong,LGD,257,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -LGD,1789,Block,Wokha Sadar,LGD,250,District,1789,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,1788,Block,Wozhuro,LGD,250,District,1788,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -LGD,4764,Block,Wyra,LGD,509,District,4764,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,4548,Block,Yacharam,LGD,518,District,4548,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -LGD,1697,Block,Yachuli Adc,LGD,786,District,1697,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,4616,Block,Yadagirigutta,LGD,697,District,4616,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -LGD,5430,Block,Yadamarri,LGD,503,District,5430,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -LGD,5589,Block,Yadgir,LGD,635,District,5589,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -LGD,5312,Block,Yadiki,LGD,502,District,5312,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,7089,Block,Yadrami,LGD,538,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -LGD,314,Block,Yamkeshwar,LGD,52,District,314,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -LGD,6082,Block,Yamuna Vihar,LGD,81,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false -LGD,5908,Block,Yanam,LGD,600,District,5908,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -LGD,6400,Block,Yangang,LGD,227,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false -LGD,1704,Block,Yangte Circle,LGD,677,District,1704,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false -LGD,7195,Block,Yaragatti,LGD,527,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -LGD,6781,Block,Yaripora,LGD,622,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -LGD,6579,Block,Yatdam Circle,LGD,229,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -LGD,4082,Block,Yavatmal,LGD,500,District,4082,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,3961,Block,Yawal,LGD,478,District,3961,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -LGD,1698,Block,Yazali Circle,LGD,786,District,1698,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -LGD,4369,Block,Yedapally,LGD,516,District,4369,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,5107,Block,Yeddana Pudi,LGD,750,District,5107,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,7533,Block,Yedula,LGD,693,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -LGD,7103,Block,Yelahanka,LGD,525,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -LGD,4536,Block,Yelal,LGD,698,District,4536,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -LGD,4989,Block,Yelamanchili,LGD,523,District,4989,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -LGD,4879,Block,Yelamanchili,LGD,744,District,4879,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5578,Block,Yelandur,LGD,531,District,5578,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -LGD,5464,Block,Yelbarga,LGD,543,District,5464,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -LGD,4481,Block,Yeldurthy,LGD,513,District,4481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -LGD,4893,Block,Yeleswaram,LGD,746,District,4893,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4740,Block,Yellandu,LGD,690,District,4740,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -LGD,5327,Block,Yellanur,LGD,502,District,5327,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -LGD,5481,Block,Yellapur,LGD,550,District,5481,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -LGD,4432,Block,Yellareddipet,LGD,683,District,4432,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -LGD,4386,Block,Yellareddy,LGD,685,District,4386,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -LGD,5254,Block,Yemmiganur,LGD,511,District,5254,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -LGD,5741,Block,Yercaud,LGD,584,District,5741,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -LGD,6239,Block,Yergatla,LGD,516,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -LGD,5377,Block,Yerpedu,LGD,752,District,5377,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5097,Block,Yerragondapalem,LGD,790,District,5097,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,5223,Block,Yerraguntla,LGD,504,District,5223,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -LGD,7517,Block,Yerravalli,LGD,695,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -LGD,5374,Block,Yerravaripalem,LGD,752,District,5374,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4767,Block,Yerrupalem,LGD,509,District,4767,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -LGD,6063,Block,Yetapaka,LGD,791,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,4156,Block,Yevla,LGD,487,District,4156,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -LGD,1663,Block,Yingkiong Circle,LGD,240,District,1663,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -LGD,1633,Block,Yomcha Adc,LGD,243,District,1633,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false -LGD,1832,Block,Yongnyah,LGD,615,District,1832,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false -LGD,4886,Block,Y. Ramavaram,LGD,791,District,4886,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -LGD,6397,Block,Yuksom,LGD,228,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false -LGD,6790,Block,Zachaldara,LGD,8,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -LGD,4696,Block,Zaffergadh,LGD,689,District,4696,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -LGD,4474,Block,Zahirabad,LGD,691,District,4474,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -LGD,6797,Block,Zainapora,LGD,625,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false -LGD,6826,Block,Zaingeer,LGD,3,District,0,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -LGD,991,Block,Zamania,LGD,146,District,991,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -LGD,15,Block,Zanskar,LGD,6,District,15,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -LGD,4093,Block,Zari-Jamani,LGD,500,District,4093,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -LGD,5142,Block,Zarugumalli,LGD,517,District,5142,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -LGD,1896,Block,Zawlnuam,LGD,266,District,1896,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false -LGD,1556,Block,Zemithang Circle,LGD,238,District,1556,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -LGD,1967,Block,Zikzak,LGD,663,District,1967,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false -LGD,234,Block,Zira,LGD,31,District,234,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -LGD,1239,Block,Ziradei,LGD,222,District,1239,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -LGD,1695,Block,Ziro Hq,LGD,236,District,1695,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,false -LGD,1810,Block,Zuketsa,LGD,248,District,1810,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -LGD,1772,Block,Zunheboto Sadar,LGD,251,District,1772,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -IN-PIN,110010,PostalCode,New Delhi,LGD,79,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false -IN-PIN,110024,PostalCode,South East,LGD,670,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false -IN-PIN,110025,PostalCode,South East,LGD,670,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false -IN-PIN,110030,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -IN-PIN,110031,PostalCode,East,LGD,78,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false -IN-PIN,110032,PostalCode,North East,LGD,81,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false -IN-PIN,110036,PostalCode,North,LGD,80,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false -IN-PIN,110037,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -IN-PIN,110038,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -IN-PIN,110039,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -IN-PIN,110040,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -IN-PIN,110041,PostalCode,North West,LGD,82,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false -IN-PIN,110042,PostalCode,North,LGD,80,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false -IN-PIN,110043,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -IN-PIN,110044,PostalCode,South East,LGD,670,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false -IN-PIN,110047,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -IN-PIN,110053,PostalCode,North East,LGD,81,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false -IN-PIN,110057,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -IN-PIN,110059,PostalCode,West,LGD,85,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false -IN-PIN,110061,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -IN-PIN,110068,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -IN-PIN,110071,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -IN-PIN,110072,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -IN-PIN,110073,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -IN-PIN,110074,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -IN-PIN,110076,PostalCode,South East,LGD,670,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false -IN-PIN,110080,PostalCode,South,LGD,83,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false -IN-PIN,110081,PostalCode,North West,LGD,82,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false -IN-PIN,110082,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -IN-PIN,110084,PostalCode,North,LGD,80,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false -IN-PIN,110085,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -IN-PIN,110086,PostalCode,North West,LGD,82,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false -IN-PIN,110090,PostalCode,North,LGD,80,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false -IN-PIN,110093,PostalCode,East,LGD,78,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false -IN-PIN,110094,PostalCode,North East,LGD,81,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false -IN-PIN,110096,PostalCode,East,LGD,78,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false -IN-PIN,110097,PostalCode,South West,LGD,84,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false -IN-PIN,110099,PostalCode,Outer North,LGD,794,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false -IN-PIN,121001,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121002,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121003,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121004,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121005,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121006,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121007,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121010,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121012,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121013,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121101,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121102,PostalCode,Faridabad,LGD,60,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false -IN-PIN,121103,PostalCode,Palwal,LGD,619,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -IN-PIN,121105,PostalCode,Palwal,LGD,619,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -IN-PIN,121106,PostalCode,Palwal,LGD,619,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -IN-PIN,121107,PostalCode,Palwal,LGD,619,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false -IN-PIN,122001,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122003,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122004,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122050,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122101,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122102,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122103,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122104,PostalCode,Nuh,LGD,604,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -IN-PIN,122105,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122107,PostalCode,Nuh,LGD,604,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -IN-PIN,122108,PostalCode,Nuh,LGD,604,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -IN-PIN,122413,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122414,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122502,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122503,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122504,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122505,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122506,PostalCode,Gurugram,LGD,62,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false -IN-PIN,122508,PostalCode,Nuh,LGD,604,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false -IN-PIN,123001,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -IN-PIN,123021,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -IN-PIN,123023,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -IN-PIN,123024,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -IN-PIN,123027,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -IN-PIN,123028,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -IN-PIN,123029,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -IN-PIN,123034,PostalCode,Mahendragarh,LGD,69,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false -IN-PIN,123035,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123101,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123102,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123103,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123106,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123110,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123301,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123302,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123303,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123401,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123411,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123412,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,123501,PostalCode,Rewari,LGD,72,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false -IN-PIN,124001,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124010,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124021,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124022,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124102,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124103,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124104,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124105,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124106,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124107,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124108,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124109,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124111,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124112,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124113,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124142,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124146,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124201,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124202,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124303,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124401,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124404,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124406,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124411,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124412,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124501,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124504,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124505,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124506,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124507,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124508,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,124513,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124514,PostalCode,Rohtak,LGD,73,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false -IN-PIN,124515,PostalCode,Jhajjar,LGD,64,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false -IN-PIN,125001,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -IN-PIN,125004,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -IN-PIN,125005,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -IN-PIN,125006,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -IN-PIN,125007,PostalCode,Hisar,LGD,63,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false -IN-PIN,125033,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -IN-PIN,125037,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -IN-PIN,125038,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -IN-PIN,125039,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -IN-PIN,125042,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -IN-PIN,125044,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -IN-PIN,125047,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125048,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125049,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -IN-PIN,125050,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125051,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125052,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125053,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125054,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125055,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125058,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125060,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125075,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125076,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125077,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125078,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125101,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125102,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125103,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125104,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125106,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125110,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125111,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125112,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125113,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125120,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125121,PostalCode,Hansi,LGD,792,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false -IN-PIN,125133,PostalCode,Fatehabad,LGD,61,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false -IN-PIN,125201,PostalCode,Sirsa,LGD,74,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false -IN-PIN,125450,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,126101,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126102,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126110,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126111,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126112,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126113,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126114,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126115,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126116,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126125,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126152,PostalCode,Jind,LGD,65,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false -IN-PIN,126214,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,126469,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,127021,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127022,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -IN-PIN,127025,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -IN-PIN,127026,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -IN-PIN,127027,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127028,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127029,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127030,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127031,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127032,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127035,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127040,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127041,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127042,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -IN-PIN,127043,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127045,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127046,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127111,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127114,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127201,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127306,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -IN-PIN,127307,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -IN-PIN,127308,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127309,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127310,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -IN-PIN,127311,PostalCode,Bhiwani,LGD,59,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false -IN-PIN,127312,PostalCode,Charkhi Dadri,LGD,701,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false -IN-PIN,131001,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131021,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131022,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131023,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131024,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131027,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131028,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131029,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131039,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131101,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131102,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131103,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131301,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131302,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131304,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131305,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131306,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131402,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131403,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131408,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,131409,PostalCode,Sonipat,LGD,75,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false -IN-PIN,132001,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132022,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132023,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132024,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132036,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132037,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132039,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132040,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132041,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132046,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132054,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132101,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132102,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132104,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132105,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132106,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132107,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132108,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132113,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132114,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132115,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132116,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132117,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,132122,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132140,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132145,PostalCode,Panipat,LGD,71,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false -IN-PIN,132157,PostalCode,Karnal,LGD,67,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false -IN-PIN,133001,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133004,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133005,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133006,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133008,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133101,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133102,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133103,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,133104,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133201,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133202,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133203,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133204,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,133205,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133206,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,133301,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,133302,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,134003,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,134005,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,134007,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,134008,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,134102,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,134103,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,134107,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,134109,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,134117,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,134118,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,134201,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,134202,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,134203,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,134204,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,134205,PostalCode,Panchkula,LGD,70,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false -IN-PIN,135001,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,135002,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,135003,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,135004,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,135021,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,135101,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,135102,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,135103,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,135106,PostalCode,Yamunanagar,LGD,76,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false -IN-PIN,135133,PostalCode,Ambala,LGD,58,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false -IN-PIN,136020,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136021,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136026,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136027,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136030,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136033,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136034,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136035,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136038,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136042,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136043,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136044,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136117,PostalCode,Kaithal,LGD,66,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false -IN-PIN,136118,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136119,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136128,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136129,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136130,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136131,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136132,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136135,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136136,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,136156,PostalCode,Kurukshetra,LGD,68,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false -IN-PIN,140001,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140101,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140102,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140103,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140108,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140109,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140110,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140111,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140112,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140113,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140114,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140115,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140116,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140117,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140118,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140119,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140123,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140124,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140125,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140126,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140127,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140128,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140133,PostalCode,Rupnagar,LGD,42,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false -IN-PIN,140201,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140301,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140306,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140307,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140308,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140401,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,140402,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140405,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140406,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140407,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140408,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140412,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140413,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140417,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,140501,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140506,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140507,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140601,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,140602,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140603,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140604,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,140701,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140702,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140802,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,140901,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,141001,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141003,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141007,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141008,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141010,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141012,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141013,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141014,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141015,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141101,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141102,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141103,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141104,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141105,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141107,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141108,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141109,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141110,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141112,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141113,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141114,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141115,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141116,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141117,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141118,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141119,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141120,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141121,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141122,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141123,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141125,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,141126,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141127,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141201,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141202,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141203,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141204,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141205,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141206,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141401,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141411,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,141412,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141413,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141414,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141415,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141416,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141417,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141418,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141419,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141421,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141422,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,141801,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,142001,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142002,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142003,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142011,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142021,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142022,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142023,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142024,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142025,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142026,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142027,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142029,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142030,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142031,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142032,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142033,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142034,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142035,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142036,PostalCode,Ludhiana,LGD,36,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false -IN-PIN,142037,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142038,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142039,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142040,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142041,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142042,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,142043,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,142044,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,142045,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142046,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142047,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,142048,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142049,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142050,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,142052,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,142053,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142054,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142055,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142056,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142058,PostalCode,Moga,LGD,38,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false -IN-PIN,142060,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,143001,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143008,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143009,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143022,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143101,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143102,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143103,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143105,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143107,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143108,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143109,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143110,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143111,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143112,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143113,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143114,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143115,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143116,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143117,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143118,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143119,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143149,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143201,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143202,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143203,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143204,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143205,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143301,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143302,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143303,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143304,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143305,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143401,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143402,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143406,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143407,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143408,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143409,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143410,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143411,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143412,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143413,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143414,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143415,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143416,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143417,PostalCode,Tarn Taran,LGD,609,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false -IN-PIN,143419,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143501,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143502,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143503,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143504,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143505,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143506,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143507,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143511,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143512,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143513,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143514,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143515,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143516,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143517,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143518,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143519,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143520,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143521,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143525,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143526,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143527,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143528,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143529,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143530,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143531,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143532,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143533,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143534,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -IN-PIN,143601,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143602,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143603,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,143604,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143605,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,143606,PostalCode,Amritsar,LGD,27,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false -IN-PIN,144001,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144002,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144003,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144004,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144005,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144008,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144020,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144021,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144022,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144024,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144025,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144026,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144027,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144028,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144029,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144030,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144031,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144032,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144033,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144034,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144035,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144036,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144037,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144038,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144039,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144040,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144041,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144042,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144043,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144044,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144101,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144102,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144103,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144104,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144105,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144106,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144201,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144202,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144204,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144207,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144208,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144209,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144210,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144211,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144212,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144213,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144214,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144216,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144221,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144222,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144223,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144224,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144301,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144302,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144303,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144305,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144306,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144311,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144401,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144402,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144403,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144404,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144405,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144406,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144407,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144408,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144409,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144410,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144411,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144415,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144416,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144417,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144418,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144419,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144421,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144422,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144501,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144502,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144503,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144504,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144505,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144506,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144507,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144508,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144509,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144510,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144511,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144512,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144513,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144514,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144515,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144516,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144517,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144518,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144519,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144520,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144521,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144522,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144523,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144524,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144525,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144526,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144527,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144528,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144529,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144530,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144531,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144532,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,144533,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false -IN-PIN,144601,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144602,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144603,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144606,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144620,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144621,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144622,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144623,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144624,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144625,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144626,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144628,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144629,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144630,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144631,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144632,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144633,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144701,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144702,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144703,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144801,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144802,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144803,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144804,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,144805,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144806,PostalCode,Jalandhar,LGD,34,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false -IN-PIN,144819,PostalCode,Kapurthala,LGD,35,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false -IN-PIN,145001,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -IN-PIN,145022,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -IN-PIN,145023,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -IN-PIN,145024,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,145025,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -IN-PIN,145026,PostalCode,Gurdaspur,LGD,32,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false -IN-PIN,145027,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -IN-PIN,145029,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -IN-PIN,145101,PostalCode,Pathankot,LGD,662,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false -IN-PIN,146021,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146023,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146024,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146101,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146102,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146103,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146104,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146105,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146106,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146107,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146108,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146109,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146110,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146111,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146112,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146113,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146114,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146115,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,146116,PostalCode,Hoshiarpur,LGD,33,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false -IN-PIN,147001,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147002,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147004,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,147005,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147006,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,147007,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147021,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147101,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147102,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147103,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147104,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,147105,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147111,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147201,PostalCode,Patiala,LGD,41,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false -IN-PIN,147202,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,147203,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,147301,PostalCode,Fatehgarh Sahib,LGD,30,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false -IN-PIN,148001,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148002,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148017,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148018,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -IN-PIN,148019,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -IN-PIN,148020,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148021,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -IN-PIN,148022,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -IN-PIN,148023,PostalCode,Malerkotla,LGD,737,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false -IN-PIN,148024,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148025,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148026,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148027,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148028,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148029,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148030,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148031,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148033,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148034,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148035,PostalCode,Sangrur,LGD,43,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false -IN-PIN,148100,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148101,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148102,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148103,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148104,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148105,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148106,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148107,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148108,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,148109,PostalCode,Barnala,LGD,605,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false -IN-PIN,151002,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151004,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151005,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151101,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151102,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151103,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151104,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151105,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151106,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151108,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151111,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151201,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151202,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151203,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151204,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151205,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151206,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151207,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151208,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151209,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151210,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,151211,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,151212,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151213,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151214,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,151301,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151302,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151401,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151501,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false -IN-PIN,151502,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false -IN-PIN,151503,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false -IN-PIN,151504,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151505,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151506,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151507,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false -IN-PIN,151508,PostalCode,Mansa,LGD,37,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false -IN-PIN,151509,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151510,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,151511,PostalCode,Bathinda,LGD,28,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false -IN-PIN,152002,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,152003,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,152004,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,152005,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,152020,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152021,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,152022,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152023,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,152024,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152025,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,152026,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,152028,PostalCode,Ferozepur,LGD,31,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false -IN-PIN,152031,PostalCode,Faridkot,LGD,29,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false -IN-PIN,152032,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,152033,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152101,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,152107,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,152112,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,152113,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,152114,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,152115,PostalCode,Sri Muktsar Sahib,LGD,39,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false -IN-PIN,152116,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152117,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152118,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152121,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152122,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152123,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152124,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152128,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,152132,PostalCode,Fazilka,LGD,651,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false -IN-PIN,160014,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,160055,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,160059,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,160071,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,160104,PostalCode,S.A.S Nagar,LGD,608,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false -IN-PIN,171001,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171002,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171003,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171004,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171005,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171006,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171007,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171008,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171009,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171011,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171012,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171013,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171014,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171018,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171019,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171102,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,171103,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171201,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171202,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171203,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171204,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171205,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171206,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171207,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171208,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171209,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171210,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171211,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171212,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171213,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171214,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171215,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171216,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171217,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171218,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171219,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171220,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171221,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171222,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171223,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171224,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171225,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171226,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,171301,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172001,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,172002,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,172021,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172022,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172023,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,172024,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172025,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,172026,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,172027,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172028,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172029,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172030,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172031,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172032,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,172033,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,172034,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172101,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172102,PostalCode,Shimla,LGD,23,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false -IN-PIN,172103,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172104,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172105,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172106,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172107,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172108,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172109,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172110,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172111,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172112,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172113,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -IN-PIN,172114,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -IN-PIN,172115,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172116,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172117,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -IN-PIN,172118,PostalCode,Kinnaur,LGD,19,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false -IN-PIN,172201,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,173001,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173021,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173022,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173023,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173024,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173025,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173026,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173027,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173029,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173030,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173032,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173033,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173101,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173104,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173201,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173202,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173204,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173205,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173206,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173207,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173208,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173209,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173210,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173211,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173212,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173213,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173214,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173215,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173217,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173218,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173220,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173221,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173222,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173223,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173225,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173229,PostalCode,Sirmaur,LGD,24,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false -IN-PIN,173233,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173235,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,173236,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,174001,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174002,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174003,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174004,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174005,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174011,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174012,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174013,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174015,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174017,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174021,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174023,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174024,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174026,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174027,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174028,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174029,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174030,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174031,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174032,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174033,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174034,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174035,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174036,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174101,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,174102,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,174103,PostalCode,Solan,LGD,25,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false -IN-PIN,174201,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174301,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174302,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174303,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174304,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,174305,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,174306,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174307,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174308,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174309,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,174310,PostalCode,Bilaspur,LGD,15,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false -IN-PIN,174311,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,174312,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,174314,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174315,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174316,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174317,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174319,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174320,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174321,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174405,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,174503,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,174505,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,174507,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,175001,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175002,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175003,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175004,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175005,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175006,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175007,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175008,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175009,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175010,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175011,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175012,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175013,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,175014,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175015,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175016,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175017,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175018,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175019,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175020,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175021,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175023,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175024,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175025,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175026,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175027,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175028,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175029,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175030,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175031,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175032,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175033,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175034,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175035,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175036,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175037,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175038,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175039,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175040,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175042,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175045,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175046,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175047,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175048,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175049,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175050,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175051,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175052,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175075,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175101,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175102,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175103,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175104,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175105,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175106,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175121,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175123,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175124,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,175125,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175126,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175128,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175129,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175130,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175131,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175132,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -IN-PIN,175133,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -IN-PIN,175134,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175136,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175138,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175139,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -IN-PIN,175140,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -IN-PIN,175141,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,175142,PostalCode,Lahaul And Spiti,LGD,21,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false -IN-PIN,175143,PostalCode,Kullu,LGD,20,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false -IN-PIN,176001,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176002,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176021,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176022,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176023,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176025,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176026,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176027,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176028,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176029,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176030,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176031,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176032,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176033,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176036,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176037,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176038,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176039,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176040,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176041,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176042,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176043,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176044,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176045,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176047,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176048,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176049,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176051,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176052,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176053,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176054,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176055,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176056,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176057,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176058,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176059,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176060,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176061,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176062,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176063,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176064,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176065,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176066,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176071,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176073,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176075,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176076,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176077,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176081,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176082,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176083,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176084,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176085,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176086,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176087,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176088,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176089,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176090,PostalCode,Mandi,LGD,22,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false -IN-PIN,176091,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176092,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176093,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176094,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176095,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176096,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176097,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176098,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176101,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176102,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176103,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176107,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176108,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176109,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176110,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176111,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,176115,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176125,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176128,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176200,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176201,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176202,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176203,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176204,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176205,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176206,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176207,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176208,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176209,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176210,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176211,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176213,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176214,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176215,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176216,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176217,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176218,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176219,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176225,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176301,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176302,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176303,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176304,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176305,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176306,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176308,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176309,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176310,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176311,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176312,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176313,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176314,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176315,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176316,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176317,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176318,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176319,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176320,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176321,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176323,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176324,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176325,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176326,PostalCode,Chamba,LGD,16,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false -IN-PIN,176401,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176402,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176403,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176501,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176502,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,176601,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177001,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177006,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177007,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177020,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177021,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177022,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177023,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177024,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177025,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177026,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177027,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177028,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177029,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177031,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177033,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177034,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177038,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177039,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177040,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177041,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177042,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177043,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177044,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177045,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177048,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177101,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177103,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177104,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177105,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177106,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177107,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177108,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177109,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177110,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177111,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177112,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177113,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177114,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177117,PostalCode,Kangra,LGD,18,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false -IN-PIN,177118,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177119,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177201,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177202,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177203,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177204,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177205,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177206,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177207,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177208,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177209,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177210,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177211,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177212,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177213,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177219,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177220,PostalCode,Una,LGD,26,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false -IN-PIN,177301,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177401,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177501,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,177601,PostalCode,Hamirpur,LGD,17,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false -IN-PIN,180001,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180002,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180003,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180006,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180009,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180010,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180011,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180015,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180017,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180019,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,180020,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181101,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181102,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181111,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181121,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181122,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181123,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181131,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181132,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181133,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -IN-PIN,181141,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -IN-PIN,181145,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -IN-PIN,181152,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181201,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181202,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181203,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181205,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181206,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181207,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181221,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,181224,PostalCode,Jammu,LGD,5,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false -IN-PIN,182101,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182104,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182121,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182122,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182124,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182125,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182126,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182127,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182128,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182141,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182142,PostalCode,Ramban,LGD,621,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -IN-PIN,182143,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182144,PostalCode,Ramban,LGD,621,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -IN-PIN,182145,PostalCode,Ramban,LGD,621,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -IN-PIN,182146,PostalCode,Ramban,LGD,621,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false -IN-PIN,182147,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182148,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182161,PostalCode,Udhampur,LGD,14,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false -IN-PIN,182201,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182202,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182203,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182204,PostalCode,Kishtwar,LGD,620,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -IN-PIN,182205,PostalCode,Kishtwar,LGD,620,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false -IN-PIN,182207,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182221,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182222,PostalCode,Doda,LGD,4,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false -IN-PIN,182301,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -IN-PIN,182311,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -IN-PIN,182312,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -IN-PIN,182313,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -IN-PIN,182315,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -IN-PIN,182320,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -IN-PIN,184102,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184104,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184120,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -IN-PIN,184121,PostalCode,Samba,LGD,624,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false -IN-PIN,184141,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184142,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184143,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184144,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184148,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184151,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184152,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184201,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184202,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184203,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184204,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184205,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184206,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,184210,PostalCode,Kathua,LGD,7,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false -IN-PIN,185101,PostalCode,Poonch,LGD,10,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -IN-PIN,185102,PostalCode,Poonch,LGD,10,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -IN-PIN,185121,PostalCode,Poonch,LGD,10,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -IN-PIN,185131,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185132,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185133,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185135,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185151,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185152,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185153,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185154,PostalCode,Reasi,LGD,627,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false -IN-PIN,185155,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185156,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185201,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185202,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185203,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185211,PostalCode,Poonch,LGD,10,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false -IN-PIN,185212,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185233,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,185234,PostalCode,Rajouri,LGD,12,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false -IN-PIN,190001,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190002,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190003,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190004,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190005,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190006,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190008,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190010,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190011,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190012,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190014,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190015,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190017,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190018,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -IN-PIN,190019,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190020,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190024,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,190025,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,191101,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,191102,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,191103,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,191111,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -IN-PIN,191112,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -IN-PIN,191113,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -IN-PIN,191121,PostalCode,Srinagar,LGD,13,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false -IN-PIN,191131,PostalCode,Ganderbal,LGD,626,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -IN-PIN,191201,PostalCode,Ganderbal,LGD,626,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -IN-PIN,191202,PostalCode,Ganderbal,LGD,626,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false -IN-PIN,192101,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192121,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,192122,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,192123,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,192124,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192125,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192126,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192129,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192201,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192202,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192211,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192212,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192221,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,192231,PostalCode,Kulgam,LGD,622,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -IN-PIN,192232,PostalCode,Kulgam,LGD,622,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -IN-PIN,192233,PostalCode,Kulgam,LGD,622,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false -IN-PIN,192301,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,192302,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,192303,PostalCode,Shopian,LGD,625,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false -IN-PIN,192304,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,192305,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,192401,PostalCode,Anantnag,LGD,1,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false -IN-PIN,193101,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193103,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193108,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193109,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193121,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -IN-PIN,193122,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193123,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193201,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193221,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -IN-PIN,193222,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -IN-PIN,193223,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -IN-PIN,193224,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -IN-PIN,193225,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -IN-PIN,193301,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193302,PostalCode,Kupwara,LGD,8,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false -IN-PIN,193303,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193306,PostalCode,Pulwama,LGD,11,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false -IN-PIN,193401,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193402,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193404,PostalCode,Baramulla,LGD,3,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false -IN-PIN,193411,PostalCode,Budgam,LGD,2,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false -IN-PIN,193501,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -IN-PIN,193502,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -IN-PIN,193503,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -IN-PIN,193504,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -IN-PIN,193505,PostalCode,Bandipora,LGD,623,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false -IN-PIN,194101,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -IN-PIN,194102,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -IN-PIN,194103,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -IN-PIN,194104,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -IN-PIN,194106,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -IN-PIN,194107,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -IN-PIN,194109,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -IN-PIN,194201,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -IN-PIN,194202,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -IN-PIN,194301,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -IN-PIN,194302,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -IN-PIN,194303,PostalCode,Kargil,LGD,6,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false -IN-PIN,194401,PostalCode,Leh Ladakh,LGD,9,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false -IN-PIN,201001,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201002,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201003,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201004,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201005,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201007,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201008,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201009,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201010,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201013,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201014,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201015,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201020,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201102,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201201,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201204,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201206,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,201301,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201303,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201304,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201305,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201306,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201307,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201309,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201310,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201311,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201312,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201313,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201314,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201316,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,201318,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,202001,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202002,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202121,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202122,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202123,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202124,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202125,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202126,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202127,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202128,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202129,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202130,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202131,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202132,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202133,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202134,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202135,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202136,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202137,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202138,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202139,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202140,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202141,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202142,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202143,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202145,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202150,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202155,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202165,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202280,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202281,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,202282,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,203001,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203002,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203129,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203131,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203132,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203135,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,203141,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203150,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203155,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,203201,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,203202,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203203,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203205,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203206,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203207,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,203209,PostalCode,Gautam Buddha Nagar,LGD,144,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false -IN-PIN,203389,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203390,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203391,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203392,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203393,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203394,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203395,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203396,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203397,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203398,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203399,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203401,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203402,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203403,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203405,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203407,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203408,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203409,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203411,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,203412,PostalCode,Bulandshahr,LGD,134,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false -IN-PIN,204101,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,204102,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -IN-PIN,204211,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -IN-PIN,204212,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -IN-PIN,204213,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,204214,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -IN-PIN,204215,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,204216,PostalCode,Aligarh,LGD,119,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false -IN-PIN,204217,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -IN-PIN,205001,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205119,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205121,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,205247,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205261,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205262,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205263,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205264,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205265,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205267,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205268,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205301,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205303,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,205304,PostalCode,Mainpuri,LGD,166,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false -IN-PIN,206001,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206002,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206003,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206120,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206121,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206122,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206123,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206124,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206125,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206126,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206127,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206128,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206129,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206130,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206131,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206241,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206242,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206243,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206244,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206245,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206246,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206247,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206248,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206249,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206250,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206251,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206252,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,206253,PostalCode,Etawah,LGD,139,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false -IN-PIN,206255,PostalCode,Auraiya,LGD,122,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false -IN-PIN,207001,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207002,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207003,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207120,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207121,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207122,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207123,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -IN-PIN,207124,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -IN-PIN,207125,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207241,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -IN-PIN,207242,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -IN-PIN,207243,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207244,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207245,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -IN-PIN,207246,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207247,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207248,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207249,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207250,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207301,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207302,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207401,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,207402,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -IN-PIN,207403,PostalCode,Kasganj,LGD,633,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false -IN-PIN,208002,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208003,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208004,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208007,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208008,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208010,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208011,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208012,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208013,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208014,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208016,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208017,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208019,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208020,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208021,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208022,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208023,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208024,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,208027,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209101,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209111,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209112,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209115,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209121,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209125,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209202,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209203,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209204,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209205,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209206,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209208,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209209,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209210,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209214,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209217,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209301,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209302,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209303,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209304,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209305,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209306,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209307,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209308,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209310,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209311,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209312,PostalCode,Kanpur Dehat,LGD,156,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false -IN-PIN,209401,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209402,PostalCode,Kanpur Nagar,LGD,157,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false -IN-PIN,209501,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209502,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209503,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209504,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209505,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209601,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209602,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209621,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209622,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209625,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209651,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209652,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209720,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209721,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209722,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209723,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209724,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209725,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209726,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209727,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209728,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209729,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209731,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209732,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209733,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209734,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209735,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209736,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209738,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209739,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209743,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209745,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209747,PostalCode,Kannauj,LGD,155,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false -IN-PIN,209749,PostalCode,Farrukhabad,LGD,141,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false -IN-PIN,209801,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209821,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209825,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209827,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209831,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209841,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209859,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209860,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209861,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209862,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209863,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209864,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209865,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209866,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209867,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209868,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209869,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,209870,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209871,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,209881,PostalCode,Unnao,LGD,186,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false -IN-PIN,210001,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210120,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210121,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210122,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210123,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210125,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210126,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210128,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210129,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210201,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210202,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210203,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210204,PostalCode,Chitrakoot,LGD,136,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false -IN-PIN,210205,PostalCode,Chitrakoot,LGD,136,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false -IN-PIN,210206,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210207,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210208,PostalCode,Chitrakoot,LGD,136,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false -IN-PIN,210209,PostalCode,Chitrakoot,LGD,136,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false -IN-PIN,210301,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210341,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210421,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false -IN-PIN,210422,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210423,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false -IN-PIN,210424,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,210425,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210426,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false -IN-PIN,210427,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false -IN-PIN,210428,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210429,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210430,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210431,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210432,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210433,PostalCode,Mahoba,LGD,165,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false -IN-PIN,210501,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210502,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210504,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210505,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210506,PostalCode,Hamirpur,LGD,149,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false -IN-PIN,210507,PostalCode,Banda,LGD,128,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false -IN-PIN,211003,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211007,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211008,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211010,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211011,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211012,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211013,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211015,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211016,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,211019,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212104,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212106,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212107,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212108,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212109,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212111,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212201,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212202,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212203,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212204,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212205,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212206,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212207,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212208,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212212,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212213,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212214,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212216,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212217,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212218,PostalCode,Kaushambi,LGD,158,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false -IN-PIN,212301,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212302,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212303,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212305,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212306,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212307,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212401,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212402,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212404,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212405,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212502,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212503,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,212507,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,212601,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212620,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212621,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212622,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212631,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212635,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212641,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212645,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212650,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212651,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212652,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212653,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212654,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212655,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212656,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212657,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212658,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212659,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212661,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212663,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212664,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,212665,PostalCode,Fatehpur,LGD,142,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false -IN-PIN,214387,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,221001,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221002,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221003,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221004,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221005,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221006,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221007,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221008,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,221009,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,221010,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221011,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221101,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,221103,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221104,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221105,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221106,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221107,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221108,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221109,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221110,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,221111,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,221112,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221115,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,221116,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,221201,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221202,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221204,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221206,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221207,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221208,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221301,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221302,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221303,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221304,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221305,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221306,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221307,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221308,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221309,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221310,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221311,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221313,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221314,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221401,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221402,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221403,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221404,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221405,PostalCode,Varanasi,LGD,187,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false -IN-PIN,221406,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221409,PostalCode,Bhadohi,LGD,179,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false -IN-PIN,221502,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,221503,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,221505,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,221507,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,221508,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,221601,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,221602,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,221603,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,221701,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,221705,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,221706,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,221709,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,221711,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,221712,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,221713,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,221715,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,221716,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,221717,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,221718,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,222001,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222002,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222003,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222105,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222109,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222125,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222126,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222127,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222128,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222129,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222131,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222132,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222133,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222135,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222136,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222137,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222138,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222139,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222141,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222142,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222143,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222144,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222145,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222146,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222149,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222161,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222162,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222165,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222170,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222175,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222180,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222181,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222201,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222202,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222203,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,222301,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,222302,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,222303,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,223101,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,223102,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,223103,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,223104,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,223105,PostalCode,Jaunpur,LGD,152,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false -IN-PIN,223221,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,223222,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,223223,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,223224,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,223225,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,223226,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,223227,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,224001,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224116,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224117,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224118,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224119,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224120,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224121,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224122,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224123,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224125,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224126,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224127,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224129,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224132,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224133,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224135,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224137,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224139,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224141,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224143,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224145,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224146,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224147,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224149,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224151,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224152,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224153,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224155,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224157,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224158,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224159,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224161,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224164,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224168,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224171,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224172,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224176,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224181,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224182,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224183,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224186,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224188,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224189,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224190,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224195,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224201,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224202,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224203,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224204,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224205,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224206,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224207,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224208,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224209,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224210,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224225,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224227,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224228,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224229,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224230,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224231,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224232,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,224234,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224235,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224238,PostalCode,Ambedkar Nagar,LGD,121,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false -IN-PIN,224284,PostalCode,Ayodhya,LGD,140,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false -IN-PIN,224923,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -IN-PIN,225001,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225003,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225119,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225120,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225121,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225122,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225123,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225124,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225125,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225126,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225201,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225202,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225203,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225204,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225205,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225206,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225207,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225208,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225301,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225302,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225303,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225304,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225305,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225306,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225401,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225403,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225404,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225405,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225409,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225412,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225413,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225414,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225415,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,225416,PostalCode,Bara Banki,LGD,129,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false -IN-PIN,226002,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226003,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226004,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226005,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226006,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226008,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226009,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226010,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226011,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226012,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226013,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226015,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226016,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226017,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226018,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226020,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226021,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226022,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226024,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226026,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226028,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226029,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226031,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226101,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226102,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226103,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226104,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226201,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226202,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226203,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226301,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226302,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226303,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226401,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,226501,PostalCode,Lucknow,LGD,162,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false -IN-PIN,227304,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,227405,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227406,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227407,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227408,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227409,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227411,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227412,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227413,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227801,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227805,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227806,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,227807,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227808,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,227809,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227811,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227812,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,227813,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227814,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,227815,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227816,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,227817,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,228001,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,228118,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228119,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228120,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228121,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,228125,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,228131,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228132,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228133,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228141,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228142,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228145,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228151,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228155,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228159,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,228161,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228171,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,228172,PostalCode,Sultanpur,LGD,185,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false -IN-PIN,229001,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229010,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229103,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229121,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229122,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229123,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229124,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229125,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229126,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229127,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229128,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229129,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229130,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229135,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229201,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229202,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229203,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229204,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229205,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229206,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229207,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229208,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229209,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229210,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229211,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229212,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229215,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229216,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229301,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229302,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229303,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229304,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229305,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229306,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229307,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229308,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229309,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229310,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229311,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229316,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229401,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229402,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229404,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229405,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229406,PostalCode,Rae Bareli,LGD,175,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false -IN-PIN,229408,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,229410,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,229411,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,229412,PostalCode,Prayagraj,LGD,120,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false -IN-PIN,229413,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,229801,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,229802,PostalCode,Amethi,LGD,640,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false -IN-PIN,230001,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230002,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230121,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230124,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230125,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230126,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230127,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230128,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230129,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230130,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230131,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230132,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230133,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230134,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230135,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230136,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230137,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230138,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230139,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230141,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230142,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230143,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230144,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230201,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230202,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230204,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230301,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230302,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230304,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230306,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230401,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230402,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230403,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230404,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230405,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230501,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230502,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,230503,PostalCode,Pratapgarh,LGD,174,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false -IN-PIN,231001,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231205,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231206,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231207,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231208,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231209,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231210,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231211,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231212,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231213,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231215,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231216,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231217,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231218,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231219,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231220,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231221,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231222,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231223,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231224,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231225,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231226,PostalCode,Sonbhadra,LGD,184,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false -IN-PIN,231301,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231302,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231303,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231304,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231305,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231306,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231307,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231309,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231312,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231313,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231314,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,231501,PostalCode,Mirzapur,LGD,170,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false -IN-PIN,232101,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232102,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232103,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232104,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232105,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232106,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232107,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232108,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232109,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232110,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232111,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232118,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232120,PostalCode,Chandauli,LGD,135,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false -IN-PIN,232325,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232326,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232327,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232328,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232329,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232330,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232331,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232332,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232333,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232336,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232339,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232340,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,232341,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233001,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233002,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233221,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233222,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233223,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233224,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233225,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233226,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233227,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233228,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233229,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233230,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233231,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233232,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233233,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233234,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233300,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233301,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233302,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233303,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233304,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233305,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233306,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233307,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233310,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,233311,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,241001,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241121,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241122,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241123,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241124,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241125,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241126,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241127,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241201,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241202,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241203,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241204,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241301,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241302,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241303,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241304,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241305,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241401,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241402,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241403,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241404,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241405,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241406,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,241407,PostalCode,Hardoi,LGD,150,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false -IN-PIN,242001,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242021,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -IN-PIN,242042,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242127,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242220,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242221,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242223,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242226,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242301,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242303,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242305,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242306,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,242307,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242401,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242405,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242406,PostalCode,Shahjahanpur,LGD,180,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false -IN-PIN,242407,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,243001,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243003,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243004,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243005,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243006,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243122,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243123,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243126,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243201,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243202,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243203,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243301,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243302,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243303,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243401,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243402,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243403,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243501,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243502,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243503,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243504,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243505,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243506,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,243601,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243630,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243631,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243632,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243633,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243634,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243635,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243636,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243637,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243638,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243639,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243641,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243720,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243722,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243723,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243724,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243725,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243726,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,243727,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -IN-PIN,243751,PostalCode,Budaun,LGD,133,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false -IN-PIN,244001,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244102,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244103,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244104,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244105,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244221,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244222,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244225,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244231,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244235,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244236,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244241,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244242,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244251,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244255,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244301,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244302,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -IN-PIN,244303,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -IN-PIN,244304,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244401,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244402,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244410,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -IN-PIN,244411,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244412,PostalCode,Sambhal,LGD,659,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false -IN-PIN,244413,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244414,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244415,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244501,PostalCode,Amroha,LGD,154,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false -IN-PIN,244504,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244601,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244602,PostalCode,Moradabad,LGD,171,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false -IN-PIN,244701,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -IN-PIN,244712,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,244713,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,244715,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,244716,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,244717,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,244720,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,244901,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -IN-PIN,244921,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -IN-PIN,244922,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -IN-PIN,244924,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -IN-PIN,244925,PostalCode,Rampur,LGD,176,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false -IN-PIN,245101,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false -IN-PIN,245201,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,245205,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false -IN-PIN,245206,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,245207,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false -IN-PIN,245208,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false -IN-PIN,245301,PostalCode,Hapur,LGD,661,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false -IN-PIN,245304,PostalCode,Ghaziabad,LGD,145,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false -IN-PIN,246001,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,246113,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246121,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246123,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246124,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246125,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246127,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246128,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246129,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246130,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246131,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246141,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246144,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246146,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246147,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246148,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246149,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246155,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246159,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246161,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246162,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246163,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246164,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246165,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246166,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246167,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246169,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246171,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246172,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246173,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246174,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246175,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246176,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246177,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246178,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246179,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246193,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246194,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246275,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246276,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246277,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246278,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246279,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246285,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,246401,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246419,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246421,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246422,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246424,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246425,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246426,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246427,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246428,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246429,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246431,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246435,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246439,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246440,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246441,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246442,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246443,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246444,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246445,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246446,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246448,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246449,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246453,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246455,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246469,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246471,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246472,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246473,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246474,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246475,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246481,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246482,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246483,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246486,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246487,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246488,PostalCode,Chamoli,LGD,47,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false -IN-PIN,246495,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,246701,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246721,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246722,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246723,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246724,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246725,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246726,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246727,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246728,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246729,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246731,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246732,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246733,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246734,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246735,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246736,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246737,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246745,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246746,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246747,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246749,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246761,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246762,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,246763,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,246764,PostalCode,Bijnor,LGD,132,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false -IN-PIN,247001,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247002,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247120,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247121,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247122,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247129,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247231,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247232,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247340,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247341,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247342,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247343,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247451,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247452,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247453,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247551,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247554,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247656,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247661,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247662,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247663,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247665,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247666,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247667,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247668,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247669,PostalCode,Saharanpur,LGD,177,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false -IN-PIN,247670,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247671,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,247771,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,247772,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,247773,PostalCode,Shamli,LGD,660,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false -IN-PIN,247774,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,247775,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,247776,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,247777,PostalCode,Shamli,LGD,660,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false -IN-PIN,247778,PostalCode,Shamli,LGD,660,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false -IN-PIN,248001,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248002,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248003,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248005,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248007,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248008,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248009,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248013,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248019,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248121,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248123,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248124,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248140,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248143,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248145,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248158,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248165,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248179,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248196,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248197,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,248199,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,249001,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,249121,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249122,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249123,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249124,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249125,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249126,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249127,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,249128,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249130,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,249131,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,249132,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249135,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249136,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249137,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249141,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249145,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249146,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249151,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249152,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249155,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249161,PostalCode,Rudraprayag,LGD,54,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false -IN-PIN,249165,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249171,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249175,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249180,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249181,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249185,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249186,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249192,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249193,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249194,PostalCode,Uttarkashi,LGD,57,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false -IN-PIN,249196,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249199,PostalCode,Tehri Garhwal,LGD,55,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false -IN-PIN,249202,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,249204,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,249205,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,249301,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,249302,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,249304,PostalCode,Pauri Garhwal,LGD,52,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false -IN-PIN,249306,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,249401,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,249402,PostalCode,Dehradun,LGD,49,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false -IN-PIN,249404,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,249405,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,249407,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,249408,PostalCode,Haridwar,LGD,50,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false -IN-PIN,250001,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250002,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250004,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250005,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250101,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250103,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250104,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250106,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250110,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250205,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250221,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250222,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250223,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250341,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250342,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250344,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250345,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250401,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250402,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250404,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250406,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250501,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250502,PostalCode,Meerut,LGD,169,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false -IN-PIN,250601,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250606,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250609,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250611,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250615,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250617,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250619,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250620,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250621,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250622,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250623,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250625,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,250626,PostalCode,Baghpat,LGD,124,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false -IN-PIN,251001,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251002,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251003,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251201,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251202,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251203,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251301,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251305,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251306,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251307,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251308,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251309,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251310,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251311,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251314,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251315,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251316,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251318,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251319,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251320,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,251327,PostalCode,Muzaffarnagar,LGD,172,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false -IN-PIN,261001,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261121,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261125,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261131,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261135,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261136,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261141,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261145,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261151,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261201,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261202,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261203,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261204,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261205,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261206,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261207,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261208,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261301,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261302,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261303,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261401,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261402,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261403,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261404,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261405,PostalCode,Sitapur,LGD,183,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false -IN-PIN,261501,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,261502,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,261505,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,261506,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262001,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262121,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262122,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262123,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262124,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262201,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262202,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262203,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262302,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262305,PostalCode,Pilibhit,LGD,173,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false -IN-PIN,262308,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,262309,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262310,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262311,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,262401,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,262402,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,262405,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,262406,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,262407,PostalCode,Bareilly,LGD,130,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false -IN-PIN,262501,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262502,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262520,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262521,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262522,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262523,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262524,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262525,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262526,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262527,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262528,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262529,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262530,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262531,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262532,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262533,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262534,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262540,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262541,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262542,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262543,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262544,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262545,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262546,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262547,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262550,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262551,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262552,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262553,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262554,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262555,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262561,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262572,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262576,PostalCode,Pithoragarh,LGD,53,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false -IN-PIN,262580,PostalCode,Champawat,LGD,48,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false -IN-PIN,262701,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262702,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262721,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262722,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262723,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262724,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262725,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262726,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262727,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262728,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262801,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262802,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,262803,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262804,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262805,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262901,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262902,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262903,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262904,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262905,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262906,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262907,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,262908,PostalCode,Kheri,LGD,159,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false -IN-PIN,263001,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263126,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263127,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263128,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263132,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263134,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263135,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263136,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263137,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263138,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263139,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263140,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263142,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263145,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,263148,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,263149,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,263150,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,263151,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,263152,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,263153,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,263156,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263157,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263158,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263159,PostalCode,Nainital,LGD,51,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false -IN-PIN,263160,PostalCode,Udham Singh Nagar,LGD,56,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false -IN-PIN,263601,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263619,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263620,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263621,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263622,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263623,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263624,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263625,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263626,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263628,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263629,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263630,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263631,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263632,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263633,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263634,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263635,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263636,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263637,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263638,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263639,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263640,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263641,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263642,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263643,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263645,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263646,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263651,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263652,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263653,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263655,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263656,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263658,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263659,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263660,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263661,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263663,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263664,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263665,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263667,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263676,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263678,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,263679,PostalCode,Bageshwar,LGD,46,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false -IN-PIN,263680,PostalCode,Almora,LGD,45,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false -IN-PIN,271001,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271002,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271003,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271122,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271123,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271124,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271125,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271126,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271129,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271201,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271203,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271205,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271206,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271207,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271208,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271210,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271301,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271302,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271303,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271305,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271306,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271307,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271309,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271310,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271311,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271312,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271313,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,271319,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271401,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271403,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271502,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271503,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271504,PostalCode,Gonda,LGD,147,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false -IN-PIN,271602,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271603,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271604,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271607,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271609,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271801,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271802,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271803,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false -IN-PIN,271804,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false -IN-PIN,271806,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271821,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271824,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271825,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271830,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271831,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false -IN-PIN,271835,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271840,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false -IN-PIN,271841,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271845,PostalCode,Shrawasti,LGD,181,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false -IN-PIN,271851,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271855,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271861,PostalCode,Balrampur,LGD,127,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false -IN-PIN,271865,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271870,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271871,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271872,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271875,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271881,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271882,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271901,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271902,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271903,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,271904,PostalCode,Bahraich,LGD,125,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false -IN-PIN,272001,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272002,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272123,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272124,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272125,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272126,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272127,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272128,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272129,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272130,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272131,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272148,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272150,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272151,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272152,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272153,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272154,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272155,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272161,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272162,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272163,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272164,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272165,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272171,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272172,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272173,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272175,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272176,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272177,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272178,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272181,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272182,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272189,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272190,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272191,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272192,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272193,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272194,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272195,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272199,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272201,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272202,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272203,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272204,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272205,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272206,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272207,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272208,PostalCode,Siddharthnagar,LGD,182,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false -IN-PIN,272270,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272271,PostalCode,Sant Kabir Nagar,LGD,178,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false -IN-PIN,272301,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,272302,PostalCode,Basti,LGD,131,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false -IN-PIN,273001,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273002,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273004,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273006,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273007,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273008,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273010,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273013,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273014,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273015,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273016,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273017,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273151,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273152,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273155,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273157,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273158,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273161,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273162,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273163,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273164,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273165,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273201,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273202,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273203,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273207,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273209,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273211,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273212,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273213,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273301,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273302,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273303,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273304,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273305,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273306,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273308,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273309,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273310,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273311,PostalCode,Mahrajganj,LGD,164,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false -IN-PIN,273401,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273402,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273403,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273404,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273405,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273406,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273407,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273408,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273409,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273411,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273412,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,273413,PostalCode,Gorakhpur,LGD,148,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false -IN-PIN,274001,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274149,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274182,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274201,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274202,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274203,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274204,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274205,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274206,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274207,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274208,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274301,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274302,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274303,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274304,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274305,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274306,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274307,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274308,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274309,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274401,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274402,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274404,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274405,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274406,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274407,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274408,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274409,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274501,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274502,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274505,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274506,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274508,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274509,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274601,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274602,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274603,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274701,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274702,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274703,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274704,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274705,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274801,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274802,PostalCode,Kushinagar,LGD,160,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false -IN-PIN,274806,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,274807,PostalCode,Deoria,LGD,137,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false -IN-PIN,275101,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275102,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275103,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275105,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275201,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,275202,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,275203,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,275204,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,275205,PostalCode,Ghazipur,LGD,146,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false -IN-PIN,275301,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275302,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275303,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275304,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275305,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275306,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,275307,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,276001,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276121,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276122,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276123,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276124,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276125,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276126,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276127,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276128,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276129,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276131,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276135,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276136,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276137,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276138,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276139,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276140,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276141,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276142,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276143,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276201,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276202,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276203,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276204,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276205,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276206,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276207,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276208,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276288,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276301,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276302,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276303,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276304,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276305,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276306,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,276402,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276403,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,276404,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,276405,PostalCode,Mau,LGD,168,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false -IN-PIN,276406,PostalCode,Azamgarh,LGD,123,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false -IN-PIN,277001,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277121,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277123,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277124,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277201,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277202,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277203,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277204,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277205,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277207,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277208,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277209,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277210,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277211,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277213,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277214,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277216,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277219,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277301,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277302,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277303,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277304,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277401,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277402,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277403,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277501,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277502,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277503,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277504,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,277506,PostalCode,Ballia,LGD,126,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false -IN-PIN,281001,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281003,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281004,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281005,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281006,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281104,PostalCode,Etah,LGD,138,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false -IN-PIN,281121,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281122,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281123,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281201,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281202,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281203,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281204,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281205,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281206,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281301,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281302,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -IN-PIN,281303,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281305,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281306,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -IN-PIN,281307,PostalCode,Hathras,LGD,163,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false -IN-PIN,281308,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281401,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281403,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281404,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281405,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281406,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281501,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281502,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,281504,PostalCode,Mathura,LGD,167,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false -IN-PIN,282001,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,282002,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,282004,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,282005,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,282006,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,282007,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,282009,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,282010,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283101,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283102,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283103,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283104,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283105,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283110,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283111,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283112,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283113,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283114,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283115,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283119,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283121,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283122,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283123,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283124,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283125,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283126,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283130,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283135,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283136,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283141,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283142,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283145,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283151,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283152,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283201,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283202,PostalCode,Agra,LGD,118,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false -IN-PIN,283203,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283204,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283205,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283206,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,283207,PostalCode,Firozabad,LGD,143,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false -IN-PIN,284001,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284002,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284003,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284120,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284121,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284122,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284123,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,284124,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284126,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284127,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284128,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284135,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284136,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284201,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284202,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284203,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284204,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284205,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284206,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284301,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284302,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284303,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284304,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,284305,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284306,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,284401,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284402,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284403,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284404,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284405,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284406,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,284419,PostalCode,Jhansi,LGD,153,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false -IN-PIN,284501,PostalCode,Lalitpur,LGD,161,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false -IN-PIN,285001,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285121,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285122,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285123,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285124,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285125,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285126,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285127,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285128,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285129,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285130,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285201,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285202,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285203,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285204,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285205,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285206,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,285223,PostalCode,Jalaun,LGD,151,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false -IN-PIN,301001,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301018,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301019,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301020,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301021,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301022,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301023,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301024,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301025,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301026,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301027,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301028,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301030,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301035,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301401,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301402,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301404,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301405,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301406,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301407,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301408,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301409,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301410,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301411,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301412,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301413,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301414,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301415,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301418,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301427,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301604,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,301701,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301702,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301703,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301704,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301705,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301706,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301707,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301708,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301709,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301713,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,301714,PostalCode,Khairthal-Tijara,LGD,770,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,302001,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302002,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302003,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302004,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302006,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302012,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302013,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302015,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302016,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302017,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302018,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302019,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302020,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302021,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302022,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302026,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302027,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302028,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302029,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302031,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302033,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302034,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302037,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302038,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302039,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302041,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302042,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302044,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302046,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,302048,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303001,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303002,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303003,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303004,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303005,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303006,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303007,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303008,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303009,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303012,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303102,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,303103,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303104,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303105,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,303106,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,303107,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,303108,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,303109,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303110,PostalCode,Kotputli-Behror,LGD,782,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,303119,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303120,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303123,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303124,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303301,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303302,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303303,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303304,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303305,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303313,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303315,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303323,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303325,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303326,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303327,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303328,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303338,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303348,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303501,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303502,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303503,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303505,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303506,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303507,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303508,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303509,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303510,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303511,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,303601,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303602,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303603,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303604,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303701,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303702,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303704,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303706,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303712,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303801,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303803,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303804,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303805,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303806,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303807,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303901,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303903,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303904,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303905,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,303908,PostalCode,Jaipur,LGD,102,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false -IN-PIN,304001,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304021,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304022,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304023,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,304024,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,304025,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304026,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,304501,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304502,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304503,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304504,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304505,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304507,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304801,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304802,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304803,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,304804,PostalCode,Tonk,LGD,116,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false -IN-PIN,305001,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305002,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305003,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305004,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305005,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305012,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305021,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305022,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305023,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305024,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305025,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305026,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,305201,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305202,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305203,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305204,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305205,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305206,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305207,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305401,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305402,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305403,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305404,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305405,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305406,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305407,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305408,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305412,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305415,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305601,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305621,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305622,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305623,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305624,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305625,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305627,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305628,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305629,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305630,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305631,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305801,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305802,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305811,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305812,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305813,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305814,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305815,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305816,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305819,PostalCode,Ajmer,LGD,86,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false -IN-PIN,305901,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305921,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305922,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305923,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305924,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305925,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305926,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,305927,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306001,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306021,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306022,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306023,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306101,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306102,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306103,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306104,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306105,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306114,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306115,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306116,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306119,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306126,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306301,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306302,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306303,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306304,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306305,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306306,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306307,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306308,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306401,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306421,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306422,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306501,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306502,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306503,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306504,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306601,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306602,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306603,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306701,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306702,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306703,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306704,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306705,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306706,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306707,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306708,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306709,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,306901,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306902,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,306912,PostalCode,Pali,LGD,111,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false -IN-PIN,307001,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307019,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307022,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307023,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307024,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307025,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,307026,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307027,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307028,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307029,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,307030,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,307031,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307032,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307043,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307501,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307510,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307511,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307512,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307513,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307514,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,307515,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,307801,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307802,PostalCode,Sirohi,LGD,115,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false -IN-PIN,307803,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,311001,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311011,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311021,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311022,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311023,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311024,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311025,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311026,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311030,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311201,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311202,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311203,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311204,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,311301,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,311302,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,311401,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311402,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311403,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311404,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311407,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311408,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311601,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311602,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311603,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311604,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311605,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311606,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311801,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311802,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311803,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311804,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311805,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,311806,PostalCode,Bhilwara,LGD,92,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false -IN-PIN,312001,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312021,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312022,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312023,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312024,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312025,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312027,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312201,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312202,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312203,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312204,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312205,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312206,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312207,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312401,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312402,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312403,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312404,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312601,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312602,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312603,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312604,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312605,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312606,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312612,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312613,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312614,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312615,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312616,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312619,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312620,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,312623,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312624,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312625,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312626,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312628,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312629,PostalCode,Pratapgarh,LGD,629,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false -IN-PIN,312901,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,313001,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313003,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,313011,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313022,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,313024,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313026,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313027,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313031,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,313038,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313201,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313202,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313203,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,313204,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313205,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,313206,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313207,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313211,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313301,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313321,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313322,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313323,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313324,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313325,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313327,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313328,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313329,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313330,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313331,PostalCode,Beawar,LGD,774,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313332,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313333,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313334,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313341,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313342,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313601,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,313602,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,313603,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313604,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313701,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313702,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313703,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313704,PostalCode,Rajsamand,LGD,112,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false -IN-PIN,313705,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,313706,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313708,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,313801,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313802,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313803,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313804,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313805,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313901,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313902,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313903,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313904,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313905,PostalCode,Salumbar,LGD,777,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,313906,PostalCode,Udaipur,LGD,117,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false -IN-PIN,314001,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314011,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314021,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314022,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314023,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314024,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314025,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314026,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314027,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,314028,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314029,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314030,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314031,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314032,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,314034,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,314035,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314036,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314037,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314038,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314401,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314402,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314403,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314404,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314406,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314801,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,314804,PostalCode,Dungarpur,LGD,99,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false -IN-PIN,321001,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321021,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321022,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,321023,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,321024,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,321025,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321026,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321028,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321201,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,321202,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321203,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321204,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,321205,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,321206,PostalCode,Deeg,LGD,767,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,321301,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321302,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321303,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321401,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321402,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321403,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321404,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321405,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321406,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321407,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321408,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321409,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321410,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321411,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321601,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321602,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321605,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,321606,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,321607,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,321608,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,321609,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,321610,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,321611,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,321612,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,321613,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,321614,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321615,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,321633,PostalCode,Alwar,LGD,87,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false -IN-PIN,321642,PostalCode,Bharatpur,LGD,91,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false -IN-PIN,322001,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322023,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322024,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322025,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322026,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322027,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322028,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322029,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322030,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322033,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322034,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322201,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322202,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322203,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322204,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322205,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322211,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322212,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322213,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322214,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322215,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322216,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322218,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322219,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322220,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322230,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322234,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322236,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322238,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322240,PostalCode,Dausa,LGD,97,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false -IN-PIN,322241,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322242,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322243,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322249,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322251,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322252,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322254,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322255,PostalCode,Karauli,LGD,108,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false -IN-PIN,322701,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322702,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322703,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,322704,PostalCode,Sawai Madhopur,LGD,113,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false -IN-PIN,323001,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323021,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323022,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323023,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323024,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323025,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323026,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323301,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323304,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,323306,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,323307,PostalCode,Chittorgarh,LGD,95,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false -IN-PIN,323601,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323602,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323603,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323613,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323614,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323615,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323616,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323801,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323802,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,323803,PostalCode,Bundi,LGD,94,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false -IN-PIN,324001,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324002,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324003,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324004,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324005,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324006,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324007,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324008,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324009,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,324010,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325001,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325003,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325004,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325009,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325201,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325202,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325203,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325204,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325205,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325206,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325207,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325208,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325209,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325214,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325215,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325216,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325217,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325218,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325219,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325220,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325221,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325222,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325223,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325224,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,325601,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,325602,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,326001,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326021,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326022,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326023,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326033,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326034,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326035,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326036,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326037,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326038,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326039,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326501,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326502,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326512,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326513,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326514,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326515,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326516,PostalCode,Jhalawar,LGD,105,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false -IN-PIN,326517,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,326518,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,326519,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,326520,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,326529,PostalCode,Baran,LGD,89,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false -IN-PIN,326530,PostalCode,Kota,LGD,109,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false -IN-PIN,327001,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327021,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327022,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327023,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327024,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327025,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327026,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327027,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327031,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327032,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327034,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327601,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327602,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327603,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327604,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327605,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327606,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,327801,PostalCode,Banswara,LGD,88,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false -IN-PIN,328001,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328021,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328022,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328023,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328024,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328025,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328026,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328027,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328029,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328030,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328031,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,328041,PostalCode,Dholpur,LGD,98,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false -IN-PIN,331001,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331021,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331022,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331023,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331024,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,331025,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,331026,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,331027,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,331028,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,331029,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331031,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331301,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331302,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331303,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331304,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331305,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331402,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331403,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331411,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331501,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331502,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331503,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331504,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331505,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331506,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331507,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331517,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331518,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331701,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331801,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,331802,PostalCode,Churu,LGD,96,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false -IN-PIN,331803,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,331811,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,332001,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332002,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332021,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332023,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332024,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332025,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332026,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332027,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332028,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332029,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332030,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332031,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332041,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332042,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332301,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332302,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332303,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332304,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332305,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332307,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332311,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332312,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332315,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332316,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332317,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332318,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332401,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332402,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332403,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332404,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332405,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332406,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332411,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332601,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332602,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332603,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332701,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332702,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332703,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332705,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332706,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332707,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332708,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332709,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332710,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332711,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332712,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332713,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332714,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332715,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332716,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,332718,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332719,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332721,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332722,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332742,PostalCode,Sikar,LGD,114,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false -IN-PIN,332746,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333001,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333010,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333011,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333012,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333020,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333021,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333022,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333023,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333024,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333025,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333026,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333027,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333028,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333029,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333030,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333031,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333032,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333033,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333034,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333035,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333036,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333041,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333042,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333053,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333055,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333302,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333303,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333304,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333305,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333307,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333308,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333501,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333502,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333503,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333504,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333514,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333515,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333516,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333517,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333701,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333702,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333704,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333705,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333707,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,333801,PostalCode,Jhunjhunu,LGD,106,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false -IN-PIN,334001,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334021,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334022,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334023,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334024,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334201,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334202,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334302,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334303,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334305,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334402,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334601,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334602,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334603,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334604,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334801,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334802,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334803,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334804,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,334808,PostalCode,Bikaner,LGD,93,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false -IN-PIN,335001,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335002,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335021,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335022,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335024,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335025,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335027,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335037,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335038,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335039,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335040,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335041,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335042,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335051,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335061,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335062,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335063,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335064,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335065,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335073,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335501,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335502,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335503,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335504,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335511,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335512,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335513,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335521,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335522,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335523,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335524,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335525,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335526,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335701,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335702,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335703,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335704,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335707,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335708,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335711,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335801,PostalCode,Hanumangarh,LGD,101,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false -IN-PIN,335802,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335803,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335804,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335805,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,335901,PostalCode,Ganganagar,LGD,100,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false -IN-PIN,341001,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341020,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341021,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341022,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341023,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341024,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341025,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341026,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341027,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341028,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341029,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341030,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341031,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341301,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341302,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341303,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341304,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341305,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341306,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341309,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341316,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341317,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341318,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341319,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341501,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341502,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341503,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341504,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341505,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341506,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341507,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341508,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341509,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341510,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341511,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341512,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341513,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341514,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341515,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,341516,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341517,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341518,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341519,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341520,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341533,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341542,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,341551,PostalCode,Didwana-Kuchaman,LGD,768,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,342001,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342005,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342008,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342012,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342013,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342014,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342015,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342021,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342022,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342023,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342024,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342025,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342027,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342028,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342029,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342030,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342037,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342301,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,342302,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342303,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342304,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342305,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342306,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342307,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,342308,PostalCode,Phalodi,LGD,772,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,342309,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342310,PostalCode,Phalodi,LGD,772,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,342311,PostalCode,Phalodi,LGD,772,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,342312,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342314,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342601,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342602,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342603,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342604,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342605,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342606,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342801,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342802,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342901,PostalCode,Jodhpur,LGD,107,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false -IN-PIN,342902,PostalCode,Nagaur,LGD,110,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false -IN-PIN,343001,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343002,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343021,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343022,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343023,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343024,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343025,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343027,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343028,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343029,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343030,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343032,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343039,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343040,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343041,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343042,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343048,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,343049,PostalCode,Jalore,LGD,104,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false -IN-PIN,344001,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344011,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344012,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344021,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344022,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344024,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344025,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344026,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344027,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344031,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344032,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344033,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344034,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344035,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344037,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344043,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344044,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344501,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344502,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344701,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344702,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344703,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344704,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344705,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344706,PostalCode,Barmer,LGD,90,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false -IN-PIN,344708,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344801,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,344802,PostalCode,Balotra,LGD,775,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false -IN-PIN,345001,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345021,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345022,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345023,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345024,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345025,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345026,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345027,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345028,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345031,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345033,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,345034,PostalCode,Jaisalmer,LGD,103,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false -IN-PIN,360002,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360003,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,360004,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360005,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360006,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360020,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360021,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360022,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360023,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360024,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360025,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360026,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360028,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360030,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360035,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,360040,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360045,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,360050,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,360055,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360060,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360070,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360110,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,360311,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360320,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360325,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360330,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360360,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360370,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360375,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360380,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360405,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360410,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360421,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360430,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360440,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360450,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360452,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360460,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360465,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,360470,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360480,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,360485,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,360490,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,360510,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,360515,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,360520,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,360530,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,360531,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,360540,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,360545,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -IN-PIN,360550,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -IN-PIN,360570,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -IN-PIN,360575,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -IN-PIN,360576,PostalCode,Porbandar,LGD,456,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false -IN-PIN,360579,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,360590,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361001,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361002,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361006,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361007,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361010,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361011,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361012,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361013,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361110,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361120,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361130,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361140,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361160,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361162,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361170,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361210,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361220,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361230,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361240,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361250,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361280,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,361305,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361306,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361310,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361315,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361320,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361325,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361330,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361335,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361345,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361347,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,361350,PostalCode,Devbhumi Dwarka,LGD,674,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false -IN-PIN,362001,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,362002,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362011,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362015,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362020,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362030,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362037,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362110,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362120,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362130,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362135,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362140,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362150,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362205,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362215,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362220,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362222,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362225,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362227,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362230,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362240,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362245,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362250,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362255,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362260,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362263,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362265,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362268,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362275,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362310,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362315,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362510,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362520,PostalCode,Diu,LGD,464,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false -IN-PIN,362530,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362550,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362560,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362565,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362570,PostalCode,Diu,LGD,464,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false -IN-PIN,362610,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362620,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362625,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362630,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362640,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362650,PostalCode,Junagadh,LGD,448,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false -IN-PIN,362710,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,362720,PostalCode,Gir Somnath,LGD,675,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false -IN-PIN,363020,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363030,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363040,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363110,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363115,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363310,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363320,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363330,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363351,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363410,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -IN-PIN,363421,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,363423,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,363427,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363430,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,363435,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363440,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363510,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363520,PostalCode,Rajkot,LGD,457,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false -IN-PIN,363530,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363621,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363623,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363630,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363641,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363642,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363643,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363650,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363655,PostalCode,Jamnagar,LGD,447,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false -IN-PIN,363660,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363670,PostalCode,Morbi,LGD,673,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false -IN-PIN,363745,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363750,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363755,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363760,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363765,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363775,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,363780,PostalCode,Surendranagar,LGD,460,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false -IN-PIN,364001,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364002,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364004,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364050,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364060,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364070,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364081,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364110,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364120,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364130,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364135,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364140,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364145,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364150,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364210,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364230,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364240,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364250,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364260,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364265,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364270,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,364275,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364280,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364290,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364295,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364310,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364313,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364320,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364330,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364505,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364510,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364515,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,364521,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,364522,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,364525,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,364530,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,364710,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -IN-PIN,364720,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -IN-PIN,364730,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,364740,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364750,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -IN-PIN,364760,PostalCode,Bhavnagar,LGD,443,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false -IN-PIN,364765,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -IN-PIN,365220,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365410,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365421,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365430,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365435,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365440,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365450,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365455,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365456,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365460,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365480,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365535,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365540,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365541,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365550,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365555,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365560,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365601,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365610,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365620,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365630,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365635,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365640,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365645,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365650,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,365730,PostalCode,Amreli,LGD,439,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false -IN-PIN,370001,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370015,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370020,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370030,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370040,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370105,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370110,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370115,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370130,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370135,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370140,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370145,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370150,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370155,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370160,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370165,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370201,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370205,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370210,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370405,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370410,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370415,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370421,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370425,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370427,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370430,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370435,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370445,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370450,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370455,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370460,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370465,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370475,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370485,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370490,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370510,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370601,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370605,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370610,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370615,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370620,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370625,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370627,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370630,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370640,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370645,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370650,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370655,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370660,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370665,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370670,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,370675,PostalCode,Kachchh,LGD,449,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false -IN-PIN,380001,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380005,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380006,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380007,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380009,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380013,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380015,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380016,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380021,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380022,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380023,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380026,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380028,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380049,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380050,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380051,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380052,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380054,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380055,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380058,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380059,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380060,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,380061,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382007,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382016,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382028,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382042,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382055,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382110,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382115,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382120,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382130,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382140,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382145,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382150,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382170,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382210,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382213,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382220,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382225,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382230,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382240,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382245,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382250,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382255,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -IN-PIN,382260,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382265,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382305,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382308,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382315,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382320,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382321,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382330,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382345,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382355,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382405,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382415,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382418,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382421,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382422,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382423,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382424,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382425,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382426,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382427,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382428,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382430,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382433,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382435,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382443,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382445,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382449,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382450,PostalCode,Botad,LGD,676,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false -IN-PIN,382455,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382460,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382463,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382465,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382470,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382475,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382480,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382481,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382610,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382620,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382630,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382640,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382650,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382721,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382722,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,382725,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382729,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382735,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382740,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382810,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382835,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382845,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,382855,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,383001,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383002,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383010,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383030,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383110,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383120,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383205,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383210,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383215,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383220,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383225,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383230,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383235,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383240,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383245,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383246,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383250,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383251,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383255,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383260,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383270,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383275,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383276,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383305,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383307,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383310,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383315,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383316,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383317,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383320,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383325,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383330,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383335,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383340,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383345,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383350,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383355,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383410,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383421,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383422,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383430,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383434,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383440,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383450,PostalCode,Arvalli,LGD,672,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false -IN-PIN,383460,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,383462,PostalCode,Sabar Kantha,LGD,458,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false -IN-PIN,384001,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384002,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384003,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384005,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384110,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384120,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384130,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384135,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384140,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384151,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384160,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384170,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384220,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384221,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384225,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384229,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384230,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384240,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384241,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384245,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384246,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384255,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384260,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384265,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384266,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384272,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384275,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384285,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384290,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,384305,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384310,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384315,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384320,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384325,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384330,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384335,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384340,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384345,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384355,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384360,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384410,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384412,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384415,PostalCode,Ahmedabad,LGD,438,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false -IN-PIN,384421,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384430,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384435,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384440,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384441,PostalCode,Gandhinagar,LGD,446,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false -IN-PIN,384445,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384450,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384455,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384460,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384465,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384470,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384515,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384520,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384530,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384540,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384550,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384560,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384565,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,384570,PostalCode,Mahesana,LGD,451,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false -IN-PIN,385001,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385010,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385110,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385120,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385130,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385135,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385210,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385310,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385320,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385330,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -IN-PIN,385340,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,385350,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,385360,PostalCode,Patan,LGD,455,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false -IN-PIN,385410,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385421,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385505,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385510,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385515,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385520,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385530,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385535,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385540,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385545,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385550,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385555,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385560,PostalCode,Banas Kantha,LGD,441,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false -IN-PIN,385565,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -IN-PIN,385566,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -IN-PIN,385570,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -IN-PIN,385575,PostalCode,Vav-Tharad,LGD,789,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false -IN-PIN,387001,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387002,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387110,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387115,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,387120,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387130,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387210,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,387220,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387230,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387240,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,387305,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387310,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,387315,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387320,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387325,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387330,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387335,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387340,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387345,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,387350,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387355,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387360,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387365,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387370,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387375,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,387380,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,387430,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387510,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387520,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387530,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,387540,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387550,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387560,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387570,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387610,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387620,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387630,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387635,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387640,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387650,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,387710,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,388001,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388110,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388130,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388140,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388150,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388160,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388170,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388180,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388205,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388210,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388215,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388220,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388225,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,388230,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,388235,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388245,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,388250,PostalCode,Kheda,LGD,450,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false -IN-PIN,388255,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388260,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,388265,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,388270,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,388305,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388307,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388310,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388315,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388320,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388325,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388330,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388335,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388340,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388345,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388350,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388355,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388360,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388365,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388370,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388410,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388421,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388430,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388440,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388450,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388460,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388465,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388470,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388480,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388510,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388520,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388530,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388540,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388543,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388545,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388550,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388560,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388570,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388580,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388590,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388610,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388620,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388625,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388630,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388640,PostalCode,Anand,LGD,440,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false -IN-PIN,388710,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,388713,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389002,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389110,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,389115,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389120,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389130,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389140,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389146,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389151,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389152,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389154,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389155,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389160,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389170,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389172,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389175,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389180,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389210,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,389220,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,389230,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,389235,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,389250,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,389260,PostalCode,Mahisagar,LGD,669,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false -IN-PIN,389310,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389320,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389330,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389350,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389370,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,389380,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389382,PostalCode,Dahod,LGD,445,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false -IN-PIN,389390,PostalCode,Panch Mahals,LGD,454,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false -IN-PIN,390001,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390003,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390004,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390009,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390010,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390011,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390012,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390013,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390014,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390019,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390020,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390022,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390023,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390024,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,390025,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391101,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391105,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391107,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391110,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391115,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391120,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -IN-PIN,391125,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391130,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391135,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391140,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391145,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391150,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391152,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391156,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391160,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391165,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391168,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391170,PostalCode,Chhotaudepur,LGD,668,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false -IN-PIN,391210,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391220,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391240,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391243,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391244,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391250,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391310,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391320,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391330,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391340,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391350,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391410,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391421,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391430,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391440,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391445,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391450,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391510,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391520,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391530,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391740,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391745,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391760,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391761,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391770,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391774,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391775,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391776,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391780,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,391810,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392001,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392011,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392012,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392020,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392025,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392030,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392035,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392040,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392110,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392130,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392140,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392155,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392180,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,392210,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,392220,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,392310,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,393010,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,393020,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,393025,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -IN-PIN,393030,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,393040,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -IN-PIN,393041,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -IN-PIN,393050,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -IN-PIN,393105,PostalCode,Vadodara,LGD,461,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false -IN-PIN,393110,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,393115,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,393125,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,393130,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,393135,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,393140,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -IN-PIN,393151,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -IN-PIN,393155,PostalCode,Narmada,LGD,452,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false -IN-PIN,394101,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394105,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394107,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394110,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,394112,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394115,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,394116,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,394120,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,394125,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,394130,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394140,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394150,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394155,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394160,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394163,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394170,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394180,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394185,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394190,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394210,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394221,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394230,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394235,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394240,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394246,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394248,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394250,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394270,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394305,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394310,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394315,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394317,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394320,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394325,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394327,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394330,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394335,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394340,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394345,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394350,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394352,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394355,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394370,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394375,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394380,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394405,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394410,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394421,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394430,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394440,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394445,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394510,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394516,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394517,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394520,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394530,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394540,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394550,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394601,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394620,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394630,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394635,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394640,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394650,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394651,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394652,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394655,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394660,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394670,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394680,PostalCode,Tapi,LGD,641,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false -IN-PIN,394690,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,394710,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false -IN-PIN,394715,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false -IN-PIN,394716,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false -IN-PIN,394720,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false -IN-PIN,394730,PostalCode,Dangs,LGD,444,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false -IN-PIN,394810,PostalCode,Bharuch,LGD,442,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false -IN-PIN,395001,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395002,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395003,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395004,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395005,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395006,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395007,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395008,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395009,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395010,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395011,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395012,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395013,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395017,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,395023,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,396001,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396007,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396020,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396030,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396035,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396040,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396045,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396050,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396051,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396055,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396060,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396065,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396066,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396067,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396105,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396110,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396115,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396120,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396125,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396126,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396130,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396135,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396140,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396145,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396150,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396155,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396165,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396170,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396180,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396185,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396191,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396193,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396195,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396210,PostalCode,Daman,LGD,463,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,false -IN-PIN,396215,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396220,PostalCode,Dadra And Nagar Haveli,LGD,465,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,false -IN-PIN,396230,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396235,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396240,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396310,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396321,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396325,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396350,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396360,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396370,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396375,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396380,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396385,PostalCode,Valsad,LGD,462,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false -IN-PIN,396403,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396406,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396409,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396412,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396415,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396418,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396421,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396427,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396430,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396433,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396436,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396439,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396445,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396450,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396460,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396463,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396466,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396469,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396472,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396475,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396510,PostalCode,Surat,LGD,459,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false -IN-PIN,396521,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396530,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396540,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396560,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396570,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396580,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,396590,PostalCode,Navsari,LGD,453,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false -IN-PIN,400042,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400043,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400049,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400050,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400051,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400052,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400053,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400057,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400059,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400060,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400061,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400063,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400064,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400065,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400066,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400067,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400068,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400069,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400070,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400071,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400072,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400074,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400076,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400078,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400079,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400080,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400081,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400083,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400086,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400087,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400088,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400091,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400092,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400093,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400095,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400096,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400097,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400098,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400099,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400101,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400102,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400103,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400104,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400601,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400602,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400603,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400605,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400606,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400607,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400608,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400612,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400615,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400701,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400702,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,400703,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,400704,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,400706,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400707,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,400708,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400709,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,400710,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,401101,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401102,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401103,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401106,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,401107,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,401201,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401202,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401203,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401204,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401206,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,401207,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401208,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401301,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401302,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401303,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401304,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401305,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,401401,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401402,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401403,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401404,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401405,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401501,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401502,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401503,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401504,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401601,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401602,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401603,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401604,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401605,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401606,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401607,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401608,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401701,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401702,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,401703,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,402101,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402102,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402103,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402104,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402105,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402106,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402107,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402108,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402109,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402110,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402111,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402112,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402113,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402114,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402115,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402116,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402117,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402120,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402122,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402126,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402201,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402202,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402203,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402204,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402207,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402208,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402209,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402301,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402302,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402303,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402304,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402305,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402306,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402307,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402308,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402309,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402401,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402402,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402403,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,402404,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,403001,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403002,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403005,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403006,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403101,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403102,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403103,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403104,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403105,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403106,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403107,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403108,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403110,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403114,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403115,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403202,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403204,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403401,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403402,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403403,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403404,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403406,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403410,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403501,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403502,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403503,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403504,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403505,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403506,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403507,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403508,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403509,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403510,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403511,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403512,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403513,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403515,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403516,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403517,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403523,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403524,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403527,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403529,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403530,PostalCode,North Goa,LGD,551,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false -IN-PIN,403601,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403701,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403702,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403703,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403704,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403705,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403706,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403707,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403708,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403709,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403710,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403711,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403712,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403713,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403714,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403715,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403716,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403717,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403718,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403719,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403720,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403721,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403722,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403723,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403724,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403725,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403728,PostalCode,Kushavati,LGD,793,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false -IN-PIN,403731,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403801,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403803,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,403806,PostalCode,South Goa,LGD,552,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false -IN-PIN,410101,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410201,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410202,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410203,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410205,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410206,PostalCode,Mumbai Suburban,LGD,483,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false -IN-PIN,410207,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410208,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410209,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410210,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410216,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410218,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410220,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410221,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410222,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,410301,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410401,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410402,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410403,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410405,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410406,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410501,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410502,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410503,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410504,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410505,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410506,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410507,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410508,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410509,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410510,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410511,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410512,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410513,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410515,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,410516,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411001,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411006,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411012,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411014,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411015,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411017,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411019,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411020,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411021,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411023,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411024,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411025,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411026,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411027,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411028,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411031,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411033,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411035,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411036,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411038,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411040,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411041,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411043,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411044,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411045,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411046,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411047,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411048,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411051,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411052,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411057,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411058,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411060,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411061,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411062,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411067,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411068,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411069,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411070,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,411073,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412101,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412102,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412103,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412104,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412105,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412106,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412107,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412108,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412109,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412110,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412112,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412115,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412201,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412202,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412203,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412204,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412205,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412206,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412207,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412208,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412209,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412210,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412211,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412212,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412213,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412214,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412215,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412216,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412218,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412219,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412220,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412301,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412303,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412304,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412305,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412306,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412307,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412308,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412311,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412312,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412401,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412402,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412403,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412404,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412405,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412406,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412408,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412409,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412411,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412412,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,412801,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,412802,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,412803,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,412804,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,412805,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,412806,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,413001,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413002,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413004,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413006,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413007,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413008,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413101,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413102,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413103,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413104,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413105,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413106,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413107,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413108,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413109,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413110,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413111,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413112,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413113,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413114,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413115,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413116,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413118,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413120,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413130,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413132,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413133,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,413201,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413202,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413203,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413204,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413205,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413206,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413207,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,413208,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413209,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413210,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413211,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413212,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413213,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413214,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413215,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413216,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413217,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413218,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413219,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413220,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413221,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413222,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413223,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413224,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413226,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413227,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413228,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413229,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,413248,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413249,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,413250,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413251,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413252,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413253,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413255,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413301,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413302,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413303,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413304,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413305,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413306,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413307,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413308,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413309,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413310,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413314,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413315,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413317,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413319,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413322,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413324,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413401,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413402,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413403,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413404,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413405,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413406,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413409,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413410,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413411,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413412,PostalCode,Solapur,LGD,496,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false -IN-PIN,413502,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413503,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413504,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413505,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413506,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413507,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413508,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413509,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413510,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413511,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413512,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413513,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413514,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413515,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413516,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413517,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413518,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413519,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413520,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413521,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413522,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413523,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413524,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413525,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413526,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413527,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413528,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413529,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413530,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413531,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413532,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413534,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413544,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413581,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413582,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413601,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413602,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413603,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413604,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413605,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413606,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413607,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,413608,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413623,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413624,PostalCode,Dharashiv,LGD,488,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false -IN-PIN,413701,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413702,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413703,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413704,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413705,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413706,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413707,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413708,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413709,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413710,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413711,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413712,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413713,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413714,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413715,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413716,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413717,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413718,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413719,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413720,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413721,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413722,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413723,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413725,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413726,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413728,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413736,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413737,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413738,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413739,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,413801,PostalCode,Pune,LGD,490,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false -IN-PIN,414001,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414002,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414003,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414005,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414006,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414101,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414102,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414103,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414105,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414106,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414111,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414113,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414201,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414202,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,414203,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,414204,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,414205,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,414208,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,414301,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414302,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414303,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414304,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414305,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414306,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414401,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414402,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414403,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414501,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414502,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414503,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414504,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414505,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414601,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414602,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414603,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414604,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414605,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414606,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414607,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414609,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,414701,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,415001,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415002,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415003,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415004,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415010,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415011,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415012,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415013,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415014,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415015,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415019,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415020,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415021,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415022,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415023,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415101,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,415102,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415103,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415104,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415105,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415106,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415107,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415108,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415109,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415110,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415111,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415112,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415114,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415115,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415116,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415122,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415124,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415202,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415203,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415205,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415206,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415207,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415208,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415209,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415211,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415212,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415213,PostalCode,Raigad,LGD,491,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false -IN-PIN,415214,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415301,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415302,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415303,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415304,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415305,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415306,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415307,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415308,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415309,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415310,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415311,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415312,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415313,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415315,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415401,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415402,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415403,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415404,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415405,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415406,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415407,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415408,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415409,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415410,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415411,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415412,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415413,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415414,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415415,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,415501,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415502,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415503,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415504,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415505,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415506,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415507,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415508,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415509,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415510,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415511,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415512,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415513,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415514,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415515,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415516,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415517,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415518,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415519,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415520,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415521,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415522,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415523,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415524,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415525,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415526,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415527,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415528,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415530,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415536,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415537,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415538,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415539,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415540,PostalCode,Satara,LGD,494,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false -IN-PIN,415601,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415602,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415603,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415604,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415605,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415606,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415607,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415608,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415609,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415610,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415611,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415612,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415613,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415614,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415615,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415616,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415617,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415619,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415620,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415621,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415626,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415628,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415629,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415634,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415637,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415639,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415640,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415641,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415643,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415701,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415702,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415703,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415705,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415706,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415708,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415709,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415710,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415711,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415712,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415713,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415714,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415715,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415716,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415717,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415718,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415719,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415720,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415722,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415724,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415726,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415727,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415728,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415729,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415730,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415801,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415802,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415803,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415804,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415805,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415806,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,415807,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416001,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416004,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416005,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416006,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416010,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416011,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416013,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416101,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416102,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416103,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416104,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416105,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416106,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416107,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416108,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416109,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416110,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416111,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416112,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416113,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416114,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416115,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416118,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416119,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416120,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416121,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416122,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416138,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416143,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416145,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416201,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416202,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416203,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416204,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416205,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416206,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416207,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416208,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416209,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416210,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416211,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416212,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416213,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416214,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416215,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416216,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416218,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416219,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416220,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416221,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416223,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416229,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416230,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416231,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416232,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416234,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416235,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416236,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416301,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416302,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416303,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416304,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416305,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416306,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416307,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416308,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416309,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416310,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416311,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416312,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416313,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416314,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416315,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416316,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416401,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416402,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416403,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416404,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416405,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416406,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416407,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416408,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416409,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416410,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416411,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416412,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416413,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416414,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416415,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416416,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416417,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416418,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416419,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416420,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416436,PostalCode,Sangli,LGD,493,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false -IN-PIN,416501,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416502,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416503,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416504,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416505,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416506,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416507,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416508,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416509,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416510,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416511,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416512,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416513,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416514,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416515,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416516,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416517,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416518,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416519,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416520,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416521,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416522,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416523,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416524,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416525,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416526,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416527,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416528,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416529,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416531,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416534,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416549,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416550,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416551,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416552,PostalCode,Kolhapur,LGD,480,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false -IN-PIN,416601,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416602,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416603,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416604,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416605,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416606,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416608,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416609,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416610,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416611,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416612,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416613,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416614,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416615,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416616,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416620,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416623,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416626,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416628,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416630,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416632,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416701,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416702,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416703,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416704,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416705,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416707,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416709,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416712,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416713,PostalCode,Ratnagiri,LGD,492,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false -IN-PIN,416801,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416803,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416804,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416805,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416806,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416807,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416810,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416811,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416812,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,416813,PostalCode,Sindhudurg,LGD,495,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false -IN-PIN,421002,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421101,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421102,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421103,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421201,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421202,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421203,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421204,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421207,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421301,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421302,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421303,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,421305,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421306,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421308,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421311,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421312,PostalCode,Palghar,LGD,665,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false -IN-PIN,421401,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421402,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421403,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421501,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421502,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421503,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421505,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421506,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421601,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421602,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,421605,PostalCode,Thane,LGD,497,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false -IN-PIN,422001,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422003,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422004,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422006,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422007,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422009,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422010,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422013,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422101,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422102,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422103,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422104,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422105,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422112,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422113,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422201,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422202,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422203,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422204,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422205,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422206,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422207,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422208,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422209,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422210,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422211,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422212,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422213,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422214,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422215,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422222,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422301,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422302,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422303,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422304,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422305,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422306,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422308,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422401,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422402,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422403,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422502,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422601,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422602,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422603,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422604,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422605,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422606,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,422608,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422610,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422611,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422620,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,422622,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423101,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423102,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423104,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423105,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423106,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423107,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423108,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423109,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423110,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423111,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423117,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423201,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423202,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423203,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423204,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423205,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423206,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423208,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423212,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423213,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423301,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423302,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423303,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423401,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423402,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423403,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423501,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423502,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,423601,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423602,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423603,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423604,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423605,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423607,PostalCode,Ahilyanagar,LGD,466,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false -IN-PIN,423701,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,423702,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,423703,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,424001,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424002,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424005,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424006,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424101,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424102,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424103,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424104,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424105,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424106,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424107,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424108,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424109,PostalCode,Nashik,LGD,487,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false -IN-PIN,424119,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424201,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424202,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424203,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424204,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424205,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424206,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424207,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424208,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,424301,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424302,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424303,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424304,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424305,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424306,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424307,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424308,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424309,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424310,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424311,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,424318,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425002,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425003,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425101,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425102,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425103,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425104,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425105,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425107,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425108,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425109,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425110,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425111,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425112,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425113,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425114,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425115,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425116,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425201,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425203,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425301,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425302,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425303,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425304,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425305,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425306,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425307,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425308,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425309,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425310,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425311,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425327,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425401,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425402,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425403,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425404,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425405,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425406,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425407,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425408,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425409,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425410,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425411,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425412,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425413,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425414,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425415,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425416,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425417,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425418,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425419,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425420,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425421,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425422,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425423,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425424,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425426,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425427,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425428,PostalCode,Dhule,LGD,474,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false -IN-PIN,425432,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425442,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425444,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425452,PostalCode,Nandurbar,LGD,486,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false -IN-PIN,425501,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425502,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425503,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425504,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425505,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425506,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425507,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425508,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,425524,PostalCode,Jalgaon,LGD,478,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false -IN-PIN,431001,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431002,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431004,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431005,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431006,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431007,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431008,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431010,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431101,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431102,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431103,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431104,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431105,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431107,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431109,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431110,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431111,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431112,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431113,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431114,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431115,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431116,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431117,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431118,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431120,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431121,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431122,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431123,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431124,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431125,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431126,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431127,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431128,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431129,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431130,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431131,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431132,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431133,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431134,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431135,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431136,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431137,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431142,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431143,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431144,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431147,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431148,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431150,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431151,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431152,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431153,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431154,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431202,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false -IN-PIN,431204,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431205,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431206,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431207,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431208,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431209,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431211,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431212,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431213,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431214,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431215,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431401,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431402,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431501,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431502,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431503,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431504,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431505,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431506,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431507,PostalCode,Jalna,LGD,479,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false -IN-PIN,431508,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431509,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431510,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431511,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431512,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431513,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431514,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431515,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431516,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431517,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431518,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431519,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431521,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431522,PostalCode,Latur,LGD,481,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false -IN-PIN,431523,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431530,PostalCode,Beed,LGD,470,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false -IN-PIN,431536,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431537,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431540,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431541,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431542,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431601,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431602,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431603,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431604,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431605,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431606,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431701,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431702,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431703,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431704,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431705,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431707,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431708,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431709,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431710,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431711,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431712,PostalCode,Hingoli,LGD,477,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false -IN-PIN,431713,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431714,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431715,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431716,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431717,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431718,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431719,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431720,PostalCode,Parbhani,LGD,489,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false -IN-PIN,431721,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431722,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431723,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431724,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431731,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431736,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431741,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431742,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431743,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431745,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431746,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431750,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431801,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431802,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431803,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431804,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431805,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431806,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431807,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431808,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431809,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431810,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,431811,PostalCode,Nanded,LGD,485,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false -IN-PIN,440001,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440002,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440003,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440005,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440007,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440008,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440010,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440012,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440013,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440014,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440018,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440022,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440023,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440024,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440025,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440026,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440027,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440030,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440033,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440034,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440035,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440036,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,440037,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441001,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441002,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441101,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441102,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441103,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441104,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441105,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441106,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441107,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441108,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441109,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441110,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441111,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441112,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441113,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441122,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441123,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441201,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441202,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441203,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441204,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441205,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441206,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441207,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,441208,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,441209,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,441210,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441212,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441214,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441215,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441217,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,441221,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441222,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441223,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441224,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441225,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441226,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,441301,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441302,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441303,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441304,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441305,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441306,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441401,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441404,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441501,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441502,PostalCode,Nagpur,LGD,484,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false -IN-PIN,441601,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441614,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441701,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441702,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441801,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441802,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441803,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441804,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441805,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441806,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441807,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -IN-PIN,441809,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441901,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -IN-PIN,441902,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -IN-PIN,441903,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441904,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441905,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441906,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441907,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441908,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441909,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441910,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441911,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -IN-PIN,441912,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441913,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441914,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441915,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,441916,PostalCode,Gondia,LGD,476,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false -IN-PIN,441924,PostalCode,Bhandara,LGD,471,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false -IN-PIN,442001,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442101,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442102,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442104,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442105,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442106,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442107,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442111,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442201,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442202,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442203,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442301,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442302,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442304,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442305,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442306,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442307,PostalCode,Wardha,LGD,498,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false -IN-PIN,442401,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442402,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442403,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442404,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442406,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442503,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442504,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442505,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442507,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442603,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442604,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442605,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442606,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442701,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442702,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442703,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442704,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442705,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442707,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442709,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442710,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,442902,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442903,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442904,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442905,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442906,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442907,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442908,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442914,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442916,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442917,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442918,PostalCode,Chandrapur,LGD,473,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false -IN-PIN,442919,PostalCode,Gadchiroli,LGD,475,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false -IN-PIN,443001,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443002,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443101,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443102,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443103,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443104,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443106,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443112,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443201,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443202,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443203,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443204,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443206,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443301,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443302,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443303,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443304,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443308,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443401,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443402,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443403,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,443404,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444001,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444002,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444003,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444004,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444005,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444006,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444101,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444102,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444103,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444104,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444105,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444106,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444107,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444108,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444109,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444110,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444111,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444117,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444126,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444201,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444202,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444203,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444204,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444301,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444302,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444303,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444304,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444306,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444311,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444312,PostalCode,Buldhana,LGD,472,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false -IN-PIN,444401,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444402,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444403,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -IN-PIN,444404,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -IN-PIN,444405,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444407,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444409,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -IN-PIN,444501,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444502,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444503,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444504,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -IN-PIN,444505,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -IN-PIN,444506,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -IN-PIN,444507,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -IN-PIN,444510,PostalCode,Washim,LGD,499,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false -IN-PIN,444511,PostalCode,Akola,LGD,467,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false -IN-PIN,444602,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444604,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444605,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444606,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444701,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444702,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444704,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444705,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444706,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444707,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444708,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444709,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444710,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444711,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444717,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444719,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444720,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444723,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444801,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444802,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444803,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444804,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444805,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444806,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444807,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444808,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444809,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444810,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444813,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444901,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444902,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444903,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444904,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444905,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444906,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444907,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444908,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,444915,PostalCode,Amravati,LGD,468,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false -IN-PIN,445001,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445002,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445101,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445102,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445103,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445105,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445106,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445109,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445110,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445201,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445202,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445203,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445204,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445205,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445206,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445207,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445209,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445210,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445211,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445215,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445216,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445230,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445301,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445302,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445303,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445304,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445305,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445306,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445307,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445308,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445324,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445401,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,445402,PostalCode,Yavatmal,LGD,500,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false -IN-PIN,450001,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,450051,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450110,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450112,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450114,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450116,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450117,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450119,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450221,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -IN-PIN,450331,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -IN-PIN,450332,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -IN-PIN,450337,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450445,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -IN-PIN,450551,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450554,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450661,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -IN-PIN,450771,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450881,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,450991,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,451001,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451111,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451113,PostalCode,Khargone (West Nimar),LGD,414,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -IN-PIN,451115,PostalCode,Khargone (West Nimar),LGD,414,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -IN-PIN,451220,PostalCode,Khargone (West Nimar),LGD,414,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -IN-PIN,451221,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451224,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451225,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451228,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451331,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -IN-PIN,451332,PostalCode,Khandwa (East Nimar),LGD,405,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false -IN-PIN,451335,PostalCode,Khargone (West Nimar),LGD,414,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false -IN-PIN,451440,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451441,PostalCode,Burhanpur,LGD,397,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false -IN-PIN,451442,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451447,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451449,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451551,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451556,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451660,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451666,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451770,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,451881,PostalCode,Barwani,LGD,393,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false -IN-PIN,452001,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452002,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452003,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452006,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452007,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452010,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452011,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452012,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452015,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452016,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,452020,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453001,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453111,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453112,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453115,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453220,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453331,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453441,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453551,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453552,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453555,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453661,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,453771,PostalCode,Indore,LGD,410,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false -IN-PIN,454001,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454010,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454111,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454116,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454221,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454331,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454335,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454441,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454446,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454449,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454552,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454660,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454665,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454773,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454774,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,454775,PostalCode,Dhar,LGD,403,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false -IN-PIN,455001,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455111,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455115,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455116,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455118,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455221,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455223,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455227,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455332,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455336,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455339,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455440,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,455459,PostalCode,Dewas,LGD,402,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false -IN-PIN,456001,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456003,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456006,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456010,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456221,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456222,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456224,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456313,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456331,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456335,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456337,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456440,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456441,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -IN-PIN,456443,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456550,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456661,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456664,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456665,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456668,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456770,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456771,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,456776,PostalCode,Ujjain,LGD,435,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false -IN-PIN,457001,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457114,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457118,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457119,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457222,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457226,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457331,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457333,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457336,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457339,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457340,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457441,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457550,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457555,PostalCode,Ratlam,LGD,423,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false -IN-PIN,457661,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -IN-PIN,457770,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -IN-PIN,457772,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -IN-PIN,457773,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -IN-PIN,457775,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -IN-PIN,457777,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -IN-PIN,457779,PostalCode,Jhabua,LGD,412,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false -IN-PIN,457882,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -IN-PIN,457885,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -IN-PIN,457887,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -IN-PIN,457888,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -IN-PIN,457990,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -IN-PIN,457993,PostalCode,Alirajpur,LGD,639,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false -IN-PIN,458001,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458002,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458110,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458113,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458116,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458118,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458220,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458226,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458228,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458330,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458336,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458339,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458389,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458441,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458468,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458470,PostalCode,Neemuch,LGD,419,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false -IN-PIN,458553,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458556,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458558,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458664,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458667,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458669,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458771,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458775,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458778,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458880,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458883,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458888,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458895,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,458990,PostalCode,Mandsaur,LGD,416,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false -IN-PIN,460001,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460004,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460110,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460220,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460225,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460330,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460440,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460443,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460447,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460449,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460551,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460553,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460554,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460557,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460661,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460663,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460665,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460666,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,460668,PostalCode,Betul,LGD,394,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false -IN-PIN,461001,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461005,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461110,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461111,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461115,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461116,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461122,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461221,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461223,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461228,PostalCode,Harda,LGD,408,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -IN-PIN,461331,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,461335,PostalCode,Harda,LGD,408,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -IN-PIN,461441,PostalCode,Harda,LGD,408,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false -IN-PIN,461446,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461551,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461661,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461668,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461771,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461775,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461881,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,461990,PostalCode,Narmadapuram,LGD,409,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false -IN-PIN,462001,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462010,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462016,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462022,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462023,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462026,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462030,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462036,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462037,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462038,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462039,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462040,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462041,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462042,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462043,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462044,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462045,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462046,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462047,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462101,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,462120,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,463106,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,463111,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,464001,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464111,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464113,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464114,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464220,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464221,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464224,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464226,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464228,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464240,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,464258,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464331,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464334,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464337,PostalCode,Vidisha,LGD,437,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false -IN-PIN,464551,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464570,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464573,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464651,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464661,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464665,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464668,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464671,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464672,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464770,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464774,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464881,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464884,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464886,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464986,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464990,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,464993,PostalCode,Raisen,LGD,421,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false -IN-PIN,465001,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465106,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465110,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465113,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465116,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465118,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465220,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465223,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465226,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465227,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465230,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -IN-PIN,465333,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465335,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465337,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465339,PostalCode,Shajapur,LGD,430,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false -IN-PIN,465441,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -IN-PIN,465445,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -IN-PIN,465447,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -IN-PIN,465449,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -IN-PIN,465550,PostalCode,Agar-Malwa,LGD,667,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false -IN-PIN,465661,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465667,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465669,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465674,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465677,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465679,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465680,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465683,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465685,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465687,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465689,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465691,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,465693,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,465697,PostalCode,Rajgarh,LGD,422,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false -IN-PIN,466001,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466111,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466113,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466114,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466115,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466116,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466118,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466120,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466125,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466221,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466331,PostalCode,Bhopal,LGD,396,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false -IN-PIN,466445,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466446,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466651,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466661,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,466665,PostalCode,Sehore,LGD,427,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false -IN-PIN,470001,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470002,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470004,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470021,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470051,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470113,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470115,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470117,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470118,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470119,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470120,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470125,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470221,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470223,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470226,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470227,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470228,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470229,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470232,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470235,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470335,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470337,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470339,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470340,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470441,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470442,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470661,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470663,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470664,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470666,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470669,PostalCode,Sagar,LGD,425,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false -IN-PIN,470672,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470673,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470675,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470771,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470772,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470775,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470880,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,470881,PostalCode,Damoh,LGD,400,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false -IN-PIN,471001,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471101,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471105,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471111,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471201,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471301,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471311,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471313,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471315,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471318,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471405,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471408,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471411,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471501,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471510,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471515,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471516,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471525,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471606,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,471625,PostalCode,Chhatarpur,LGD,398,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false -IN-PIN,472001,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -IN-PIN,472005,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -IN-PIN,472010,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -IN-PIN,472101,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -IN-PIN,472111,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,472115,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -IN-PIN,472118,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -IN-PIN,472221,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -IN-PIN,472246,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -IN-PIN,472331,PostalCode,Tikamgarh,LGD,434,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false -IN-PIN,472336,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -IN-PIN,472337,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -IN-PIN,472339,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -IN-PIN,472442,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -IN-PIN,472445,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -IN-PIN,472447,PostalCode,Niwari,LGD,722,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false -IN-PIN,473001,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473101,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473105,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473110,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473111,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473113,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473115,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473118,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473222,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473226,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473249,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473287,PostalCode,Guna,LGD,406,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false -IN-PIN,473330,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473331,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473332,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473335,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473440,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473443,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473444,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473445,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473446,PostalCode,Ashoknagar,LGD,391,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false -IN-PIN,473551,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473585,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473660,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473662,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473665,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473770,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473774,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473775,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473781,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473793,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473865,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473880,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473885,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473990,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,473995,PostalCode,Shivpuri,LGD,432,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false -IN-PIN,474001,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,474002,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,474003,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,474004,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,474005,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,474006,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,474010,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,474020,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,475001,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,475002,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,475005,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,475110,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,475115,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,475220,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,475330,PostalCode,Gwalior,LGD,407,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false -IN-PIN,475335,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,475336,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,475661,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,475671,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,475673,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,475675,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,475682,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,475685,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,475686,PostalCode,Datia,LGD,401,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false -IN-PIN,476001,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476111,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476115,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476134,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476219,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476221,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476224,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476228,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476229,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476332,PostalCode,Sheopur,LGD,431,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -IN-PIN,476335,PostalCode,Sheopur,LGD,431,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -IN-PIN,476337,PostalCode,Sheopur,LGD,431,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -IN-PIN,476339,PostalCode,Sheopur,LGD,431,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false -IN-PIN,476355,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,476444,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,476554,PostalCode,Morena,LGD,417,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false -IN-PIN,477001,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477105,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477111,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477116,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477117,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477222,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477227,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477331,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477332,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477333,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477335,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477441,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477445,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477446,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477447,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477449,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477555,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477557,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,477660,PostalCode,Bhind,LGD,395,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false -IN-PIN,480001,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480003,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480105,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,480106,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,480107,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480108,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480109,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,480110,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480111,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480112,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480115,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480221,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480223,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480224,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480331,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480334,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,480337,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,480338,PostalCode,Pandhurna,LGD,785,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,480441,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480449,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480551,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480555,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480557,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480559,PostalCode,Chhindwara,LGD,399,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false -IN-PIN,480661,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480667,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480771,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480880,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480881,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480882,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480884,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480886,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480887,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480888,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480990,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480991,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480994,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480996,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480997,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,480999,PostalCode,Seoni,LGD,428,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false -IN-PIN,481001,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481051,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481102,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481105,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481111,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481115,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481116,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481117,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481222,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481224,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481226,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481331,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481332,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481335,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481337,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481441,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481445,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481449,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481551,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481556,PostalCode,Balaghat,LGD,392,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false -IN-PIN,481661,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481662,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481663,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481664,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481665,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481666,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481668,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481672,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481768,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481771,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481776,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481778,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481879,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481880,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481882,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481883,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481884,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481885,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481990,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481995,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,481996,PostalCode,Dindori,LGD,404,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false -IN-PIN,481998,PostalCode,Mandla,LGD,415,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false -IN-PIN,482001,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482002,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482003,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482004,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482005,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482008,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482009,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482010,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482011,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482021,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482051,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,482056,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483001,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483053,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483105,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483110,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483113,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483119,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483220,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483222,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483225,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483330,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483331,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,483332,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483334,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483336,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483440,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,483442,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,483501,PostalCode,Jabalpur,LGD,411,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false -IN-PIN,483770,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,483773,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,483775,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,483880,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,483990,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,484001,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -IN-PIN,484110,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -IN-PIN,484113,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484116,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484224,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484330,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484334,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484336,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484440,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484444,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484446,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484447,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484551,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -IN-PIN,484555,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -IN-PIN,484660,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -IN-PIN,484661,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -IN-PIN,484664,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -IN-PIN,484665,PostalCode,Umaria,LGD,436,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false -IN-PIN,484669,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -IN-PIN,484770,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -IN-PIN,484771,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -IN-PIN,484774,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -IN-PIN,484776,PostalCode,Shahdol,LGD,429,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false -IN-PIN,484881,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484886,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,484887,PostalCode,Anuppur,LGD,390,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false -IN-PIN,485001,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485111,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485112,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485113,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485114,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485115,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,485221,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485226,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485227,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485331,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485334,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485441,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485446,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485447,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485551,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485661,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485666,PostalCode,Satna,LGD,426,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false -IN-PIN,485771,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,485772,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,485773,PostalCode,Katni,LGD,413,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false -IN-PIN,485774,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,485775,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,485778,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,485881,PostalCode,Maihar,LGD,784,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486001,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486003,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486005,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486006,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486111,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486114,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486115,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486117,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486123,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486220,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486223,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486226,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486331,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486333,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486335,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486338,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486340,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486341,PostalCode,MAUGANJ,LGD,766,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false -IN-PIN,486440,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486441,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486445,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486446,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486447,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486448,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486450,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486550,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486553,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486556,PostalCode,Rewa,LGD,424,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false -IN-PIN,486661,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -IN-PIN,486666,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -IN-PIN,486669,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -IN-PIN,486670,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -IN-PIN,486675,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -IN-PIN,486771,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -IN-PIN,486775,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -IN-PIN,486776,PostalCode,Sidhi,LGD,433,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false -IN-PIN,486881,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -IN-PIN,486882,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -IN-PIN,486884,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -IN-PIN,486886,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -IN-PIN,486887,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -IN-PIN,486889,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -IN-PIN,486890,PostalCode,Singrauli,LGD,638,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false -IN-PIN,487001,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487110,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487114,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487118,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487221,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487225,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487330,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487334,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487337,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487441,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487551,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487555,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487661,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487770,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487771,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487777,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,487881,PostalCode,Narsimhapur,LGD,418,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false -IN-PIN,488001,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488050,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488059,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488220,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488222,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488333,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488441,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488442,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488443,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488446,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,488448,PostalCode,Panna,LGD,420,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false -IN-PIN,490001,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490006,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490011,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490020,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490021,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490022,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490023,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490024,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490025,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,490036,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -IN-PIN,490042,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,491001,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,491107,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,491111,PostalCode,Durg,LGD,378,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false -IN-PIN,491221,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491222,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491223,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491225,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491226,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491227,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491228,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491229,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,491230,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491331,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -IN-PIN,491332,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -IN-PIN,491335,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -IN-PIN,491336,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -IN-PIN,491337,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -IN-PIN,491338,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -IN-PIN,491340,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -IN-PIN,491441,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -IN-PIN,491443,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -IN-PIN,491444,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,491445,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,491557,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -IN-PIN,491558,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -IN-PIN,491559,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -IN-PIN,491661,PostalCode,Rajnandgaon,LGD,388,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false -IN-PIN,491665,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491666,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,491668,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,491771,PostalCode,Balod,LGD,646,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false -IN-PIN,491881,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,491885,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,491888,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -IN-PIN,491993,PostalCode,Bemetara,LGD,650,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false -IN-PIN,491995,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -IN-PIN,491996,PostalCode,Kabeerdham,LGD,382,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false -IN-PIN,492001,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,492003,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,492012,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,492013,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,492014,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,492015,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,492018,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,492099,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,492101,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,492109,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,492112,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493101,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493111,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493113,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493114,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,493116,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,493118,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493195,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493196,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493221,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,493222,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,493225,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493228,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493229,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493331,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493332,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493335,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493338,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493344,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493441,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493445,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -IN-PIN,493448,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -IN-PIN,493449,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -IN-PIN,493526,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493551,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false -IN-PIN,493554,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -IN-PIN,493555,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -IN-PIN,493558,PostalCode,Mahasamund,LGD,385,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false -IN-PIN,493559,PostalCode,Raipur,LGD,387,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false -IN-PIN,493661,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493662,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493663,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493770,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493773,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493776,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493778,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493881,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -IN-PIN,493885,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493887,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -IN-PIN,493888,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -IN-PIN,493889,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,493890,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -IN-PIN,493891,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -IN-PIN,493992,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -IN-PIN,493996,PostalCode,Gariyaband,LGD,645,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false -IN-PIN,494001,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494010,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494111,PostalCode,Sukma,LGD,642,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -IN-PIN,494114,PostalCode,Sukma,LGD,642,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -IN-PIN,494115,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494122,PostalCode,Sukma,LGD,642,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false -IN-PIN,494221,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494222,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494223,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494224,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494226,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494228,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494229,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494230,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494237,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494331,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494332,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -IN-PIN,494333,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,494334,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,494335,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -IN-PIN,494336,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,494337,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,494347,PostalCode,Dhamtari,LGD,377,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false -IN-PIN,494441,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494442,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494444,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -IN-PIN,494446,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -IN-PIN,494447,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -IN-PIN,494448,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -IN-PIN,494449,PostalCode,Bastar,LGD,374,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false -IN-PIN,494450,PostalCode,Bijapur,LGD,636,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false -IN-PIN,494552,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -IN-PIN,494553,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -IN-PIN,494556,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false -IN-PIN,494635,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494661,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494665,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -IN-PIN,494669,PostalCode,Narayanpur,LGD,637,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false -IN-PIN,494670,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,494771,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -IN-PIN,494776,PostalCode,Uttar Bastar Kanker,LGD,381,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false -IN-PIN,494777,PostalCode,Kondagaon,LGD,643,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false -IN-PIN,495001,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495003,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495004,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495006,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495009,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495112,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495113,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495115,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495116,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495117,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false -IN-PIN,495118,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false -IN-PIN,495119,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false -IN-PIN,495220,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495222,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495224,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495330,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495334,PostalCode,Mungeli,LGD,647,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false -IN-PIN,495335,PostalCode,Mungeli,LGD,647,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false -IN-PIN,495442,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495444,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495445,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495446,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495447,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495448,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495449,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495450,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495452,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495454,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495455,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495550,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495551,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495552,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495553,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495554,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495555,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495556,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495557,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495559,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495660,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495661,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495663,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495668,PostalCode,Bilaspur,LGD,375,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false -IN-PIN,495669,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495671,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495674,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495677,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495682,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495683,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495684,PostalCode,Korba,LGD,383,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false -IN-PIN,495686,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495687,PostalCode,Janjgir-Champa,LGD,379,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false -IN-PIN,495688,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,495689,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,495690,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,495691,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,495692,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,495695,PostalCode,Sakti,LGD,762,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,496001,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496005,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496100,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496107,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496108,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496109,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496111,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496113,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496115,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496116,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496118,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496220,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496223,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496224,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496225,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496227,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496242,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496245,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496330,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496331,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496334,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496336,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496338,PostalCode,Jashpur,LGD,380,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false -IN-PIN,496440,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496445,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,496450,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,496551,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,496554,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,496661,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,496665,PostalCode,Raigarh,LGD,386,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false -IN-PIN,497001,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -IN-PIN,497101,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -IN-PIN,497111,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -IN-PIN,497116,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -IN-PIN,497117,PostalCode,Surguja,LGD,389,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false -IN-PIN,497118,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -IN-PIN,497119,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -IN-PIN,497220,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -IN-PIN,497223,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -IN-PIN,497224,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -IN-PIN,497225,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false -IN-PIN,497226,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -IN-PIN,497229,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -IN-PIN,497231,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -IN-PIN,497235,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -IN-PIN,497331,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -IN-PIN,497333,PostalCode,Surajpur,LGD,648,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false -IN-PIN,497335,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -IN-PIN,497339,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -IN-PIN,497442,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,497447,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,497448,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,497449,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -IN-PIN,497450,PostalCode,Korea,LGD,384,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false -IN-PIN,497557,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,497778,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false -IN-PIN,500001,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500002,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500003,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500004,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500005,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500006,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500007,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500008,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500009,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500010,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500011,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500012,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500013,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500014,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500015,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500016,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500017,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500018,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500020,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500026,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500028,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500029,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500030,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500031,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500036,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500037,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500038,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500039,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500043,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500044,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500045,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500047,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500048,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500052,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500053,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500055,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500056,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500058,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500059,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500060,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500061,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500064,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500068,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500070,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500072,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500073,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500075,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500076,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500078,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500080,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500082,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500083,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500085,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500086,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500087,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500088,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500089,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500090,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500091,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500092,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500097,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500098,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500100,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500101,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500102,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,500104,PostalCode,Hyderabad,LGD,507,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false -IN-PIN,500112,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,500113,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501101,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501102,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501106,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501111,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501121,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501141,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501142,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501143,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501144,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501158,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501202,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501203,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501218,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501301,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,501302,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,501359,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501401,PostalCode,Medchal Malkajgiri,LGD,700,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false -IN-PIN,501501,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501502,PostalCode,Vikarabad,LGD,698,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false -IN-PIN,501503,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501504,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501505,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501506,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501508,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501509,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501510,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,501512,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,502001,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502032,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502101,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502102,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502103,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502107,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502108,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502109,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502110,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502113,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502114,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502115,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502117,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502125,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502130,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502210,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502221,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502228,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502246,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502247,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502248,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502249,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502251,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502255,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502256,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502257,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502267,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502269,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502270,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502271,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502273,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502276,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502277,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502278,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502279,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502280,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502281,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502285,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502286,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,502287,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502290,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502291,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502293,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502294,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502295,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502296,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502300,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502301,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502302,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502303,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502305,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502306,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502307,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502310,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502311,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502312,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502313,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502314,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502316,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502318,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502319,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502321,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502325,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502329,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502331,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502334,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502335,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502336,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,502345,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502371,PostalCode,Sangareddy,LGD,691,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false -IN-PIN,502372,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502375,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,502381,PostalCode,Medak,LGD,513,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false -IN-PIN,503001,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503003,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503101,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503102,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503108,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503110,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503111,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503112,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503114,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503120,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503122,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503123,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503124,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503125,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503144,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503145,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503164,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503165,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503175,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503180,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503185,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503186,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503187,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503188,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503201,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503202,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503206,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503207,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503212,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503213,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503217,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503218,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503219,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503223,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503224,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503225,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503230,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503235,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503245,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503246,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503301,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503302,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503305,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503306,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503307,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503308,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503309,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503310,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,503311,PostalCode,Nizamabad,LGD,516,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false -IN-PIN,503321,PostalCode,Kamareddy,LGD,685,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false -IN-PIN,504001,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504002,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504101,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504102,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504103,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504104,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504105,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504106,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504109,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504110,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504201,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504202,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504203,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504204,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504205,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504206,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504207,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504209,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504214,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504215,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504216,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504218,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504219,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504220,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504231,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504251,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504272,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504273,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504292,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504293,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504294,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504295,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504296,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504297,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504299,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false -IN-PIN,504301,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504302,PostalCode,Mancherial,LGD,684,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false -IN-PIN,504304,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504306,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504307,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504308,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504309,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504310,PostalCode,Nirmal,LGD,680,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false -IN-PIN,504311,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504312,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504313,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504323,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,504346,PostalCode,Adilabad,LGD,501,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false -IN-PIN,505001,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505101,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,505102,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,505122,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,505129,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505152,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505153,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505162,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505172,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505174,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505184,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,505185,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505186,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505187,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505188,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505208,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505209,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505212,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505301,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505302,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505303,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505304,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505305,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505306,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505307,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505325,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505326,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505327,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505330,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505331,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505401,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505402,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505403,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505404,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505405,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505415,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505416,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505425,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505445,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505450,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505451,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505452,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505453,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505454,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505455,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505460,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505462,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505466,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,505467,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505468,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505469,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505470,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505471,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,505472,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505473,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,505474,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505475,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505476,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,505480,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,505481,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505490,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505497,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,505498,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,505501,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505502,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505503,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,505504,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,505505,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505514,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505524,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505525,PostalCode,Peddapalli,LGD,682,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false -IN-PIN,505526,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505527,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505528,PostalCode,Rajanna Sircilla,LGD,683,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false -IN-PIN,505529,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505530,PostalCode,Karimnagar,LGD,508,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false -IN-PIN,505531,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,505532,PostalCode,Jagitial,LGD,681,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false -IN-PIN,506001,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506002,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506003,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506005,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506006,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506007,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506008,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506009,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506015,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506101,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506102,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506103,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506104,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506105,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506112,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506122,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506132,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506134,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506135,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506142,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506143,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506144,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506145,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506146,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506151,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506163,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506164,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506165,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -IN-PIN,506166,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506167,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506168,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,506169,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,506170,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,506172,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -IN-PIN,506175,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506201,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506221,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506222,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506223,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506224,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506244,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506252,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506301,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506302,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506303,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506310,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506313,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506314,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506315,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506316,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506317,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506318,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506319,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506324,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506329,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506330,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506331,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506332,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506333,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506342,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506343,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -IN-PIN,506344,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -IN-PIN,506345,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,506347,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -IN-PIN,506348,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,506349,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506350,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506352,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -IN-PIN,506355,PostalCode,Siddipet,LGD,692,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false -IN-PIN,506356,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false -IN-PIN,506365,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506366,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506367,PostalCode,Jangoan,LGD,689,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false -IN-PIN,506368,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506369,PostalCode,Warangal,LGD,522,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false -IN-PIN,506370,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506371,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,506381,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,506391,PostalCode,Hanumakonda,LGD,686,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false -IN-PIN,507002,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507003,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507101,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507111,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507112,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507114,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507115,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507116,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507117,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507118,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507120,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507122,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507123,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507124,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507126,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507127,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507128,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507133,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507136,PostalCode,Mulugu,LGD,720,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false -IN-PIN,507137,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507140,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507157,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507158,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507159,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507160,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507161,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507163,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507164,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507165,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507166,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507167,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507168,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507169,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507170,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507171,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507182,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507183,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507201,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507202,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507203,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507204,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507208,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507209,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507210,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507211,PostalCode,Mahabubabad,LGD,688,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false -IN-PIN,507301,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507302,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507303,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507304,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507305,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,507306,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507315,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507316,PostalCode,Bhadradri Kothagudem,LGD,690,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false -IN-PIN,507318,PostalCode,Khammam,LGD,509,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false -IN-PIN,508001,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508002,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508004,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508101,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508105,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508111,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508112,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508113,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508114,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508115,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508116,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508117,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508126,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508201,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508202,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508204,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508205,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508206,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508207,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508208,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508210,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508211,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508212,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508213,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508214,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508217,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508218,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508221,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508223,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508224,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508233,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508234,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508238,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508243,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508244,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508245,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508246,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508247,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508248,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508250,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508252,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508253,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508254,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508255,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508256,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508257,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508258,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508266,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508277,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508278,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508279,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508280,PostalCode,Suryapet,LGD,696,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false -IN-PIN,508284,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508285,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508286,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false -IN-PIN,508355,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508373,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508374,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508376,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,508377,PostalCode,Nalgonda,LGD,514,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false -IN-PIN,509002,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509102,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509104,PostalCode,Wanaparthy,LGD,693,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -IN-PIN,509105,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509106,PostalCode,Wanaparthy,LGD,693,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -IN-PIN,509110,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509120,PostalCode,Wanaparthy,LGD,693,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false -IN-PIN,509125,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509126,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509127,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509128,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509129,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509130,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509131,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509132,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509133,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509135,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509152,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509153,PostalCode,Jogulamba Gadwal,LGD,695,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false -IN-PIN,509201,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509202,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509203,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509204,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509205,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509206,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509207,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509208,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509209,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509210,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509215,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509216,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509217,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509219,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509228,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509235,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509301,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509302,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509311,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509320,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509321,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509324,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509325,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509326,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509327,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509334,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509335,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509336,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509337,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509338,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509339,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509340,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509349,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509350,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509351,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509352,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509353,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509357,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509358,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509360,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509371,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509375,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509376,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509380,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509381,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509382,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509385,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509401,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,509406,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509407,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509408,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509409,PostalCode,Mahabubnagar,LGD,512,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false -IN-PIN,509410,PostalCode,Ranga Reddy,LGD,518,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false -IN-PIN,509411,PostalCode,Narayanpet,LGD,721,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false -IN-PIN,509412,PostalCode,Nagarkurnool,LGD,694,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false -IN-PIN,515001,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515002,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515004,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515101,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515110,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515122,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515123,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515124,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515133,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515134,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515144,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515154,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515159,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515164,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515201,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515202,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515211,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515212,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515231,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515241,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515261,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515271,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515281,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515286,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515291,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515301,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515303,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515305,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515311,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515321,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515331,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515341,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515401,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515402,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515405,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515408,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515411,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515413,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515414,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515415,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515425,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515435,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515445,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515455,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515465,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515501,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515511,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515521,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515531,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515541,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515551,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515556,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515561,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515571,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515581,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515591,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515601,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515611,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515621,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515631,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515641,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515651,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515661,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515672,PostalCode,Sri Sathya Sai,LGD,754,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,515701,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515711,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515721,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515722,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515731,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515741,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515751,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515761,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515763,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515765,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515766,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515767,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515774,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515775,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515787,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515803,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515812,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515822,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515832,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515842,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515863,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515865,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515867,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515870,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515871,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,515872,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,516001,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516003,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516101,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516104,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516107,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516108,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516115,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516127,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516128,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516130,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516150,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516151,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516162,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516172,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516173,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516175,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516193,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516203,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516213,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516215,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516216,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516217,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516218,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516227,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516228,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516233,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516247,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516267,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516268,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516269,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516289,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516293,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516309,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516310,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516312,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516321,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516329,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516330,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516339,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516349,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516350,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516355,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516356,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516359,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516360,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516361,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516362,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516380,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516390,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516391,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516396,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516401,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516411,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516421,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516431,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516432,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516433,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516434,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516439,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516444,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516454,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516464,PostalCode,Ananthapuramu,LGD,502,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false -IN-PIN,516474,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516484,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516501,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516502,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516503,PostalCode,Y.S.R. Kadapa,LGD,504,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false -IN-PIN,516504,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,516505,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517001,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517002,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517101,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517102,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517112,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517113,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517123,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517124,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517125,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517126,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517127,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517128,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517129,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517130,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517131,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517132,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517152,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517167,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517172,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517192,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517193,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517194,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517213,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517214,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517234,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517235,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517236,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517237,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517247,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517257,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517277,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517280,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517291,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517297,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517299,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517305,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517319,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517326,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517350,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517370,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517390,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517391,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517401,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517403,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517408,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517415,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517416,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517417,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517418,PostalCode,Annamayya,LGD,753,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517422,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517423,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517424,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517425,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517426,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517429,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517432,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517502,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517503,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517504,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517505,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517506,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517507,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517520,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517526,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517536,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517541,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517551,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517561,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517569,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517571,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517581,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517582,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517583,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517584,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517586,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517587,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517588,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517589,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517590,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517591,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517592,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517599,PostalCode,Chittoor,LGD,503,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false -IN-PIN,517619,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517620,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517640,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517641,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517642,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517643,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517644,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517645,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,517646,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518001,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518002,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518003,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518004,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518007,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518010,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518101,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518102,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518112,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518122,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518123,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518124,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518134,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518135,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518145,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518155,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518165,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518166,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518176,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518186,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518196,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518206,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518216,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518217,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518218,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518220,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518221,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518222,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518225,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518301,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518302,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518308,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518313,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518323,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518333,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518343,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518344,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518345,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518346,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518347,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518348,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518349,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518350,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518360,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518380,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518385,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518390,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518395,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518396,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518401,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518405,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518411,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518412,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518422,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518432,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518442,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518452,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518462,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518463,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518464,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518465,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518466,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518467,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518468,PostalCode,Kurnool,LGD,511,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false -IN-PIN,518502,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518508,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518510,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518511,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518512,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518513,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518523,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518533,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518543,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518553,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518563,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518573,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518583,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518593,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518594,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518598,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518599,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,518674,PostalCode,Nandyal,LGD,755,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,520001,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,520004,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,520007,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,520008,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,520010,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,520011,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,520012,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,520015,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521002,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521003,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521004,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521101,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521102,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521104,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521105,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521106,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521107,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521108,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521109,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521110,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521111,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521120,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521121,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521122,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521125,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521126,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521130,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521131,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521132,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521133,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521134,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521135,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521136,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521137,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521138,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521139,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521148,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521149,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521150,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521151,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521153,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521156,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521157,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521158,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521162,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521163,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521164,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521165,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521170,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521175,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521178,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521180,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521181,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521182,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521183,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521184,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521185,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521190,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521202,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521207,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521211,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521212,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521213,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521214,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521215,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521225,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521226,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521227,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521228,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521229,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521230,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521231,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521235,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521241,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521245,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521246,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521247,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521250,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521256,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521260,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521261,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521263,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521286,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521301,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521311,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521312,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521321,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521322,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521323,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521324,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521325,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521326,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521327,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521328,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521329,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521330,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521331,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521332,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521333,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521340,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521343,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521344,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521345,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521356,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521366,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521369,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521390,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,521401,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521402,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521403,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521456,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,521457,PostalCode,Ntr,LGD,749,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522001,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522003,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522005,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522007,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522009,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522015,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522016,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522017,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522018,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522019,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522020,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522034,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522101,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522102,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522111,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522112,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522113,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522124,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522201,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522202,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522211,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522212,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522213,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522233,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522234,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522235,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522236,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522237,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522240,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522256,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522257,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522258,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522259,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522261,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522262,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522264,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522265,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522268,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522301,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522302,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522303,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522304,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522305,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522306,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522307,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522308,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522309,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522310,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522311,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522312,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522313,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522314,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522315,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522316,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522317,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522318,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522324,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522325,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522329,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522330,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522341,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522401,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522402,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522403,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522408,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522409,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522410,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522411,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522412,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522413,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522414,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522415,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522421,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522426,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522435,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522436,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522437,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522438,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522501,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522502,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522503,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522508,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522509,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522529,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522549,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522603,PostalCode,Guntur,LGD,506,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false -IN-PIN,522611,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522612,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522613,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522614,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522615,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522616,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522617,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522619,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522626,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522646,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522647,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522649,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522657,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522658,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522659,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522660,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522661,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,522663,PostalCode,Palnadu,LGD,751,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523001,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523101,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523104,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523105,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523108,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523109,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523110,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523111,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523112,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523113,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523114,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523115,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523116,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523117,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523135,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523157,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523165,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523167,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523168,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523169,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523170,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523171,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523180,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523181,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523182,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523183,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523184,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523185,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523186,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523187,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523190,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523201,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523211,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523212,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523213,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523214,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523223,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523224,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523225,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523226,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523227,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523228,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523230,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523240,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523241,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523245,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523246,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523247,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523252,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523253,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523254,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523260,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523261,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523262,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523263,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523264,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523265,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523270,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523271,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523272,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523273,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523274,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523279,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523280,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523281,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523286,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523291,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523292,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523301,PostalCode,Bapatla,LGD,750,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523302,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523303,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523304,PostalCode,Prakasam,LGD,517,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false -IN-PIN,523305,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523315,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523320,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523326,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523327,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523328,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523329,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523330,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523331,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523332,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523333,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523334,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523335,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523336,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523346,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523356,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523357,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523367,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523368,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523369,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523370,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523371,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523372,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,523373,PostalCode,Markapuram,LGD,790,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524001,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524002,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524003,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524004,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524101,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524121,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524123,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524124,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524126,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524127,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524129,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524131,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524132,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524134,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524137,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524142,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524152,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524201,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524203,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524221,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524222,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524223,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524224,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524225,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524226,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524227,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524228,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524230,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524234,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524236,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524239,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524240,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524302,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524303,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524304,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524305,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524306,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524307,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524308,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524309,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524310,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524311,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524312,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524313,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524314,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524315,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524316,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524317,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524318,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524320,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524321,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524322,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524323,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524324,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524341,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524342,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524343,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524344,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524345,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524346,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524366,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524401,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524402,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524403,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524404,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524405,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524406,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524407,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524408,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524409,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524410,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524411,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524412,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524413,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524414,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false -IN-PIN,524415,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,524421,PostalCode,Tirupati,LGD,752,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,530003,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530004,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530005,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530008,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530011,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530012,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530013,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530016,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530018,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530022,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530026,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530027,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530028,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530031,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530040,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530041,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530044,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530045,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530046,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,530047,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530048,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530049,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,530051,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530052,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,530053,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531001,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531002,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531011,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531019,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531020,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531021,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531022,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531023,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531024,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531025,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531026,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531027,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531028,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531029,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531030,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531031,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531032,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531033,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531034,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531035,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531036,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531040,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531055,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531060,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531061,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531075,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531077,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531081,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531082,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531083,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531084,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531085,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531087,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531111,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531113,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531114,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531115,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531116,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531117,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531118,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531126,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531127,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531133,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531149,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531151,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531162,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,531163,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,531173,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,531219,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,532001,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532005,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532122,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,532123,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,532127,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532148,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532168,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532185,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532186,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532187,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532190,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532195,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532201,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532203,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532204,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532211,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532212,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532213,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532214,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532215,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532216,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532218,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532219,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532220,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532221,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532222,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532242,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532243,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532263,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532264,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532284,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532290,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532291,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532292,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532312,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532322,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532401,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532402,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532403,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532404,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532405,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532406,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532407,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532408,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532409,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532410,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532421,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532425,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532426,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532427,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532428,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532429,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532430,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532432,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532440,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,532443,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,532445,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532455,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,532456,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,532457,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532458,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,532459,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532460,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,532461,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,532462,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,532474,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,532484,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,533002,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533004,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533005,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533006,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533016,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533101,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533102,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533103,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533105,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533107,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533124,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533125,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533126,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533201,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533210,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533211,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533212,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533213,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533214,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533215,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533216,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533217,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533218,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533220,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533221,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533222,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533223,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533228,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533229,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533232,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533233,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533234,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533235,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533236,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533237,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533238,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533239,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533240,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533241,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533242,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533244,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533247,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533248,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533249,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533250,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533251,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533252,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533253,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533254,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533256,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533260,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533261,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533262,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533263,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533264,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533274,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533284,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533285,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533286,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533287,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533288,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533289,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533290,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533291,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533292,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533293,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533294,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533295,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533296,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533297,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533305,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533306,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533307,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533308,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533309,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533340,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533341,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533342,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533343,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533344,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533345,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533346,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533347,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533348,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533349,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533350,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533351,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533352,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533354,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533355,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533401,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533406,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533407,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533408,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533428,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533429,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533430,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533431,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533432,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533433,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533434,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533435,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533436,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533437,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,533440,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533444,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533445,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533446,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533447,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533448,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533449,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533450,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533451,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533461,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533462,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533463,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533464,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533468,PostalCode,Kakinada,LGD,746,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533483,PostalCode,Polavaram,LGD,791,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,533577,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534002,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534003,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534004,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534005,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534007,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534101,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534102,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534111,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534112,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534122,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534123,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534124,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534126,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534134,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534145,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534146,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534156,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534165,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534166,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534176,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534186,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534195,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534196,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534197,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534198,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534199,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534201,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534202,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534204,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534206,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534207,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534208,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534209,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534210,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534211,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534216,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534217,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534218,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534222,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534225,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534227,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534230,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534235,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534236,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534237,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534238,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534239,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534240,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534243,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534244,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534245,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534247,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534250,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534265,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534266,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534267,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534268,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534269,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534275,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534280,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534281,PostalCode,Krishna,LGD,510,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false -IN-PIN,534301,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534302,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534305,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534311,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534312,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534313,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534315,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534316,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534318,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534320,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534324,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534326,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534327,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534328,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534329,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534330,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534331,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534338,PostalCode,West Godavari,LGD,523,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false -IN-PIN,534340,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534341,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534342,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534350,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534401,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534406,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534411,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534416,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534425,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534426,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534427,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534432,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534435,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534437,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534442,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534444,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534447,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534448,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534449,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534450,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534451,PostalCode,East Godavari,LGD,505,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false -IN-PIN,534452,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534455,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534456,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534460,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534461,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534462,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534467,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,534475,PostalCode,Eluru,LGD,748,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535001,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535003,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535004,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535005,PostalCode,Visakhapatnam,LGD,520,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false -IN-PIN,535006,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535101,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535102,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535124,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535125,PostalCode,Srikakulam,LGD,519,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false -IN-PIN,535126,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535128,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535145,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535148,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535160,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535161,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535183,PostalCode,Anakapalli,LGD,744,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535204,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535213,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535214,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535215,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535216,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535217,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535218,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535220,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535221,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535240,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535250,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535260,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535270,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535273,PostalCode,Alluri Sitharama Raju,LGD,745,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535280,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535281,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535463,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535501,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535502,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535521,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535522,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535523,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535524,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535525,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535526,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535527,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535534,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535546,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535547,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535557,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535558,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535559,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535568,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535573,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535578,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535579,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535580,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535581,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535582,PostalCode,Vizianagaram,LGD,521,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false -IN-PIN,535591,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535592,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535593,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,535594,PostalCode,Parvathipuram Manyam,LGD,743,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false -IN-PIN,560003,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560004,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560008,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,560010,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560012,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560013,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560015,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560022,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560023,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560026,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560027,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560029,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560030,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560032,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560034,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560035,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560040,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560041,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560050,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560054,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560056,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560057,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560058,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560060,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560061,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560062,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560064,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,560068,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560070,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560072,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560073,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560074,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560076,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560078,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560079,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560081,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560082,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560083,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,560085,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560088,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560089,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560090,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560091,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560095,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560098,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560099,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560100,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560102,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560105,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,560107,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,560108,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560109,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560110,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560111,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560112,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560114,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,560116,PostalCode,Bengaluru Urban,LGD,525,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false -IN-PIN,561101,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,561201,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,561202,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,561203,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,561206,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,561207,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,561208,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,561209,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,561210,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,561211,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,561212,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,561213,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,562101,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,562102,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,562103,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,562104,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,562108,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562109,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562112,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562117,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562119,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562120,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,562121,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562126,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562127,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,562128,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562131,PostalCode,Bengaluru Rural,LGD,526,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false -IN-PIN,562138,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562159,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562160,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,562161,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,563101,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563113,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563114,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563116,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563117,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563123,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,563124,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,563125,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,563126,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563127,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563128,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,563129,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563130,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563131,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563132,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563133,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563134,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563135,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563136,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563137,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563138,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563139,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563146,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,563159,PostalCode,Chikkaballapura,LGD,630,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false -IN-PIN,563161,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,563162,PostalCode,Kolar,LGD,542,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false -IN-PIN,570003,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,570008,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,570010,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,570018,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,570019,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,570026,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,570028,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,570030,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,570033,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571101,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571102,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571103,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571104,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571105,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571106,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571107,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571108,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571109,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571110,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571111,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571114,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571115,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571116,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571117,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571118,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571119,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571120,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571121,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571122,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571123,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571124,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571125,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571126,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571127,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571128,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571129,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571130,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571134,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571187,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571189,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571201,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571211,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571212,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571213,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571214,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571215,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571216,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571217,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571218,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571219,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571231,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571232,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571234,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571235,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571236,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571237,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571247,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571248,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571249,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571250,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571251,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571252,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571253,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571254,PostalCode,Kodagu,LGD,541,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false -IN-PIN,571301,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571302,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571311,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571312,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571313,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571314,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571315,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571316,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571320,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571342,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571401,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571402,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571403,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571404,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571405,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571415,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571416,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571417,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571418,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571419,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571421,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571422,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571423,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571424,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571425,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571426,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571427,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571428,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571429,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,571430,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571431,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571432,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571433,PostalCode,Bengaluru South,LGD,631,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false -IN-PIN,571434,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571435,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571436,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571438,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571439,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571440,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571441,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571442,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571443,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571444,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571445,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571446,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571448,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571450,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571455,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571457,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571463,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571475,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571476,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571477,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571478,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571490,PostalCode,Chamarajanagar,LGD,531,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false -IN-PIN,571601,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571602,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571603,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571604,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571605,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571606,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571607,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571610,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571617,PostalCode,Mysuru,LGD,545,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false -IN-PIN,571802,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571807,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571811,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,571812,PostalCode,Mandya,LGD,544,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false -IN-PIN,572101,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572102,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572103,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572104,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572105,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572106,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572107,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572111,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572112,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572113,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572114,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572115,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572116,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572117,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572118,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572119,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572120,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572121,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572122,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572123,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572124,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572125,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572126,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572127,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572128,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572129,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572130,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572132,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572133,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572134,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572135,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572136,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572137,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572138,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572139,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572140,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572141,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572142,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572168,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572175,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572201,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572211,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572212,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572213,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572214,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572215,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572216,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572217,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572218,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572219,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572220,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572221,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572222,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572223,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572224,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572225,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572226,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572227,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,572228,PostalCode,Tumakuru,LGD,548,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false -IN-PIN,573101,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573102,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573103,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573111,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573112,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573113,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573115,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573116,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573117,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573118,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573119,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573120,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573121,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573122,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573123,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573124,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573125,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573126,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573127,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573128,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573129,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573130,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573131,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573133,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573134,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573135,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573136,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573137,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573141,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573142,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573144,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573162,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573164,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573165,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573201,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573202,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573210,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573211,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573212,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573213,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573214,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573215,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573216,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573217,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573218,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573219,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573220,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573225,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,573226,PostalCode,Hassan,LGD,539,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false -IN-PIN,574101,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574102,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574103,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574104,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574105,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574106,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574107,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574108,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574109,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574110,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574111,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574112,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574113,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574114,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574115,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574116,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574117,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574118,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574119,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574122,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574129,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574141,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574142,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574143,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574144,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574145,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574146,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574148,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574150,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574151,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574153,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574154,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574197,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574198,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574199,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574201,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574202,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574203,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574210,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574211,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574212,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574213,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574214,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574216,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574217,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574218,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574219,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574220,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574221,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574222,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574223,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574224,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574225,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574226,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574227,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574228,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574229,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574230,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574231,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574232,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574233,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574234,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574235,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574236,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574237,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574238,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574239,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574240,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574241,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574242,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574243,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574244,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,574248,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574253,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574259,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574260,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574265,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574267,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574274,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574279,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574285,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574313,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574314,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574323,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574324,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574325,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574326,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574327,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574328,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,574509,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575001,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575002,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575003,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575004,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575005,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575006,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575007,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575008,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575009,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575010,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575011,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575013,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575014,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575015,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575017,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575018,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575019,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575020,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575022,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575023,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575028,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575029,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,575030,PostalCode,Dakshina Kannada,LGD,534,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false -IN-PIN,576102,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576103,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576105,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576106,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576107,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576111,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576112,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576113,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576114,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576115,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576117,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576120,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576121,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576122,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576124,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576201,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576210,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576211,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576212,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576213,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576214,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576215,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576216,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576217,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576218,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576219,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576220,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576221,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576222,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576223,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576224,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576225,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576226,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576227,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576228,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576229,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576230,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576231,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576232,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576233,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576234,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576235,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576247,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576257,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576282,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,576283,PostalCode,Udupi,LGD,549,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false -IN-PIN,577001,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577002,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577003,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577004,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577005,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577006,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577007,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577008,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577101,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577102,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577111,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577112,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577113,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577114,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577115,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577116,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577117,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577120,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577121,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577122,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577123,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577124,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577125,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577126,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577127,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577128,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577129,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577130,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577131,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577132,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577133,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577134,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577135,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577136,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577138,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577139,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577140,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577144,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577145,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577146,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577160,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577168,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577175,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577179,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577180,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577181,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577182,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577201,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577202,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577203,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577204,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577205,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577211,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577213,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577214,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577215,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577216,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577217,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577218,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577219,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577220,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577221,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577222,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577223,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577224,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577225,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577226,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577227,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577228,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577229,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577230,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577231,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577232,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577233,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577243,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577245,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577301,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577302,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577401,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577411,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577412,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577413,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577414,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577415,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577416,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577417,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577418,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577419,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577421,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577422,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577423,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577424,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577425,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577426,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577427,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577428,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577429,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577430,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577431,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577432,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577433,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577434,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577435,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577436,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577451,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577452,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577453,PostalCode,Shivamogga,LGD,547,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false -IN-PIN,577501,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577502,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577511,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577512,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577513,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577514,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577515,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577516,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577517,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577518,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577519,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577520,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577521,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577522,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577523,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577524,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577525,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577526,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577527,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577528,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577529,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577530,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577531,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577532,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577533,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577534,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577535,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577536,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577537,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577538,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577539,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577540,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577541,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577542,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577543,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577544,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577545,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577546,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577547,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577548,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577549,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577550,PostalCode,Chikkamagaluru,LGD,532,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false -IN-PIN,577551,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577552,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577553,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577554,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577555,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577556,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577557,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577558,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577566,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577589,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,577596,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577597,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577598,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577599,PostalCode,Chitradurga,LGD,533,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false -IN-PIN,577601,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,580001,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580005,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580006,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580007,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580008,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580009,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580011,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580021,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580023,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580024,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580025,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580026,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580027,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580028,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580030,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580031,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580112,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580114,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,580118,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581101,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581102,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581103,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581104,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581105,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581106,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581107,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581108,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581109,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581110,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581111,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581112,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581113,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581115,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581116,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581117,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581118,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581119,PostalCode,Davanagere,LGD,535,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false -IN-PIN,581120,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581121,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581123,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581126,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581128,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581129,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581145,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581148,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581186,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581187,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581193,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581195,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581196,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581197,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581198,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581199,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581201,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581202,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581203,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581204,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581205,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581206,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581207,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581208,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581209,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,581210,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581211,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581212,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581213,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,581301,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581302,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581303,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581304,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581306,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581307,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581308,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581314,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581315,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581316,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581317,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581318,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581319,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581320,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581321,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581322,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581323,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581324,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581325,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581326,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581327,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581328,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581329,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581330,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581331,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581332,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581333,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581334,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581335,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581336,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581337,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581338,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581339,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581340,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581341,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581342,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581343,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581344,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581345,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581346,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581347,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581348,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581349,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581350,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581351,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581352,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581353,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581354,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581355,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581356,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581357,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581358,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581359,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581360,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581361,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581362,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581363,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581365,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581384,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581396,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581400,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581402,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581403,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581411,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581412,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581421,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581423,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581440,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581450,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,581453,PostalCode,Uttara Kannada,LGD,550,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false -IN-PIN,582102,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582103,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582111,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582112,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582113,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582114,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582115,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582116,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582117,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582118,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582119,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582120,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582201,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,582202,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582203,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582204,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582205,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582206,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582207,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582208,PostalCode,Dharwad,LGD,536,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false -IN-PIN,582209,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582210,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,582211,PostalCode,Gadag,LGD,537,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false -IN-PIN,583101,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583102,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583103,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583104,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583111,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583112,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583113,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583114,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583115,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583116,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583117,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583118,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583119,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583120,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583121,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583122,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583123,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583124,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583125,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583126,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583127,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583128,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583129,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583130,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583131,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583132,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583134,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583135,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583136,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583137,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583152,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583154,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583155,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583201,PostalCode,Ballari,LGD,528,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false -IN-PIN,583211,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583212,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583213,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583214,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583216,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583217,PostalCode,Haveri,LGD,540,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false -IN-PIN,583218,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583219,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583220,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583221,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583222,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583223,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583224,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583226,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583227,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583228,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583229,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583230,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583231,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583232,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583233,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583234,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583235,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583236,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583237,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583238,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583239,PostalCode,Vijayanagara,LGD,738,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false -IN-PIN,583268,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583277,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583278,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583279,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583280,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583281,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583282,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583283,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583284,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583285,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583286,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583287,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,583288,PostalCode,Koppal,LGD,543,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false -IN-PIN,584102,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584103,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584104,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584111,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584113,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584115,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584116,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584118,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584120,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584122,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584123,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584124,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584125,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584126,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584127,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584128,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584129,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584132,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584133,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584134,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584135,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584136,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584138,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584139,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584140,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584143,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584167,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584170,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584202,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,584203,PostalCode,Raichur,LGD,546,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false -IN-PIN,585102,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585103,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585104,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585105,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585106,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585107,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585202,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585210,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585211,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585212,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585213,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585214,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585215,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585216,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585217,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585218,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585219,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585220,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585221,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585222,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585223,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585224,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585225,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585226,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585227,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585228,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585236,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585237,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585265,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585287,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585290,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585291,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585292,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585301,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585302,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585303,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585304,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585305,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585306,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585307,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585308,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585309,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585310,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585311,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585312,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585313,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585314,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585315,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585316,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585317,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585318,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585319,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585320,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585321,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585322,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585323,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585324,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585325,PostalCode,Kalaburagi,LGD,538,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false -IN-PIN,585326,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585327,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585328,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585329,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585330,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585331,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585353,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585355,PostalCode,Yadgir,LGD,635,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false -IN-PIN,585401,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585402,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585403,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585404,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585411,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585412,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585413,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585414,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585416,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585417,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585418,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585419,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585421,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585436,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585437,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585443,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585444,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585445,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585446,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585447,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,585448,PostalCode,Bidar,LGD,529,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false -IN-PIN,586103,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586104,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586108,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586109,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586111,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586112,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586113,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586114,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586115,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586116,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586117,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586118,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586119,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586120,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586121,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586122,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586123,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586124,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586125,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586127,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586128,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586129,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586130,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586170,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586201,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586202,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586203,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586204,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586205,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586206,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586207,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586208,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586209,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586210,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586211,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586212,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586213,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586214,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586215,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586216,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,586217,PostalCode,Vijayapura,LGD,530,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false -IN-PIN,587102,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587103,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587104,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587111,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587112,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587113,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587114,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587115,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587116,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587117,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587118,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587119,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587120,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587121,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587122,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587124,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587125,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587154,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587155,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587156,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587157,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587201,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587202,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587203,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587204,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587205,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587206,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587207,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587301,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587311,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587312,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587313,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587314,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587315,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587316,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587330,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,587331,PostalCode,Bagalkote,LGD,524,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false -IN-PIN,590001,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590003,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590005,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590008,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590010,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590014,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590015,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590016,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590018,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,590020,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591101,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591102,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591103,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591104,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591106,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591107,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591108,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591109,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591110,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591111,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591112,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591113,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591114,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591115,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591117,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591118,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591119,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591120,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591121,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591122,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591123,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591124,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591125,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591126,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591127,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591128,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591129,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591130,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591131,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591136,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591143,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591147,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591156,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591173,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591201,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591211,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591212,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591213,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591214,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591215,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591216,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591217,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591218,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591219,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591220,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591221,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591222,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591223,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591224,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591225,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591226,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591227,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591228,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591229,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591230,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591231,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591232,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591233,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591234,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591235,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591236,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591237,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591238,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591239,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591240,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591241,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591242,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591243,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591244,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591246,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591247,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591248,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591254,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591263,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591265,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591287,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591301,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591302,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591303,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591304,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591305,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591306,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591309,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591310,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591311,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591312,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591313,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591315,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591316,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591317,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591340,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591344,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591345,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,591346,PostalCode,Belagavi,LGD,527,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false -IN-PIN,600001,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600003,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600004,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600005,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600006,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600007,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600008,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600011,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600014,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600015,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600016,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600017,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600019,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600020,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600021,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600023,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600024,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600030,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600032,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600033,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600037,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600040,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600041,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600042,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600043,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600044,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600045,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600047,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600048,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600049,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600050,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600051,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600052,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600053,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600054,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600055,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600056,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,600057,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600058,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600060,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600061,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600062,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600063,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600064,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600066,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600067,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600068,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600069,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,600070,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600071,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600072,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600073,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600074,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600075,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600076,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600077,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600078,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600081,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600084,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600085,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600086,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600087,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600088,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600089,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600090,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600091,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600092,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600093,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600094,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600095,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600096,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600097,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600099,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600100,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600103,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600106,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600107,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600113,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600115,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600116,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600118,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600119,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600120,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600122,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,600123,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600124,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,600125,PostalCode,Chennai,LGD,568,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false -IN-PIN,600126,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600127,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600128,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,600129,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600130,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600131,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,600132,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,601101,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601102,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601103,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601201,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601202,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601203,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601204,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601205,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601206,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,601301,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,602001,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,602002,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,602003,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,602021,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,602023,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,602024,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,602025,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,602026,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,602105,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,602106,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,602108,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,602117,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,603001,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603002,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603003,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603101,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603102,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603103,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603104,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603105,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603106,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603107,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603108,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603109,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603110,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603111,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603112,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603201,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603202,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603203,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603204,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603209,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603210,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603301,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603302,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603303,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603304,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603305,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603306,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603307,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603308,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603309,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603310,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603311,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603312,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603313,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603314,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603319,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603401,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603402,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,603403,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,603405,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,603406,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,604001,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604101,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604102,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604151,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604152,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604153,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604154,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604201,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604202,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604203,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604204,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604205,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604206,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604207,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604208,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604210,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604301,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604302,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604303,PostalCode,Chengalpattu,LGD,730,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false -IN-PIN,604304,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604305,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604306,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604307,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,604401,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604402,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604403,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604404,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604405,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604406,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604407,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,604408,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604409,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604410,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604501,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604502,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604503,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604504,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604505,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,604601,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,605001,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605004,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605006,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605007,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605008,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605009,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605010,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605013,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605014,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605102,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605103,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605104,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605105,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605106,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605107,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605108,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605109,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605110,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605111,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605201,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605202,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605203,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605301,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605302,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605401,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605402,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605403,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605501,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605502,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,605601,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605602,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605651,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605652,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605701,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605702,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605751,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605752,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605754,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605755,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605756,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605757,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605758,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,605759,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605766,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605801,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605802,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,605803,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606001,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606003,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606102,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606103,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606104,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606105,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606106,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606107,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606108,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606109,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606110,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606111,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606115,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606201,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606202,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606203,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606204,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606205,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606206,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606207,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606208,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606209,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606213,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606301,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606302,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606303,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606304,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606305,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,606401,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606402,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,606601,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606603,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606604,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606611,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606701,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606702,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606703,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606704,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606705,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606706,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606707,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606708,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606709,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606710,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606751,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606752,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606753,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606754,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606755,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606801,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606802,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606803,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606804,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606805,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606806,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606807,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606808,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606811,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606901,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606902,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606903,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606904,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606905,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606906,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606907,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,606908,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,607001,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607002,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607003,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607004,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607005,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607006,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607101,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607102,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607103,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607104,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607105,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607106,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607107,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,607108,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607109,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607112,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607201,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,607202,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,607203,PostalCode,Viluppuram,LGD,596,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false -IN-PIN,607204,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,607205,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607209,PostalCode,Kallakurichi,LGD,729,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false -IN-PIN,607301,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607302,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607303,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607308,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607401,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607402,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,607403,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,607801,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607802,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607803,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607804,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607805,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,607807,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608001,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608002,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608102,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608201,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608301,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608302,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608303,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608304,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608305,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608306,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608401,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608501,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608502,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608601,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608602,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608701,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608702,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608703,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,608704,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608801,PostalCode,Cuddalore,LGD,570,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false -IN-PIN,608901,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,609001,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609003,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609101,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609102,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609103,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609104,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609105,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609106,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609107,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609108,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609109,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609110,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609111,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609112,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609113,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609114,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609115,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609116,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609117,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609118,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609201,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609202,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609203,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609204,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609205,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609301,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609302,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609303,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609304,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609305,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609306,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609307,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609308,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609309,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609310,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609311,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609312,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609313,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609314,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609401,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609402,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609403,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609404,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609405,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,609501,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609502,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,609503,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,609504,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,609601,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,609602,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,609603,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,609604,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,609605,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,609606,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,609607,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,609608,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,609609,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,609701,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,609702,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,609703,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,609704,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,609801,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609802,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,609803,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609804,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,609805,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609806,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609807,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,609808,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609810,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,609811,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,610001,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610003,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610004,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610005,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,610101,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,610102,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610103,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610104,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610105,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610106,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,610107,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,610109,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610201,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,610202,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610203,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,610204,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,610205,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610206,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,610207,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611001,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611002,PostalCode,Karaikal,LGD,598,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false -IN-PIN,611003,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611101,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611102,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611103,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611104,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611105,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611106,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611108,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611109,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611110,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611111,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,611112,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,612001,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612002,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612101,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612102,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612103,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612104,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612105,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612106,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612201,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,612202,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612203,PostalCode,Mayiladuthurai,LGD,735,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false -IN-PIN,612204,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612301,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612302,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612303,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612401,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612402,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612501,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612502,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612503,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612504,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612601,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,612602,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612603,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,612604,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612605,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612610,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612701,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612702,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612703,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612801,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612802,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,612803,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,612804,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,612901,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,612902,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,612903,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,612904,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,612905,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,612906,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,613001,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613002,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613003,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613004,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613005,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613006,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613010,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613101,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613102,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613103,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613104,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613105,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613201,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613202,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613203,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613204,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613205,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613301,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,613303,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613401,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613402,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613403,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613501,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613502,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613503,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613504,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613601,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613602,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,613701,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,613702,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,613703,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,613704,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,613705,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614001,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614013,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614014,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614015,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614016,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614017,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614018,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614019,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614020,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614101,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614102,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614103,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614201,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614202,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614203,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614204,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614205,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614206,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614207,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614208,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614210,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614211,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614301,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614302,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614303,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614401,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614402,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614403,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614404,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614601,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614602,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614612,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614613,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614614,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614615,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614616,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614617,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614618,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614619,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614620,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614621,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614622,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614623,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614624,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614625,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614626,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614628,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614629,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614630,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614701,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614702,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614703,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614704,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614705,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614706,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614707,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614708,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614710,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614711,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614712,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614713,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614714,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614715,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614716,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614717,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614723,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614738,PostalCode,Thiruvarur,LGD,590,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false -IN-PIN,614801,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614802,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614803,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614804,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614805,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,614806,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614807,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614808,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614809,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614810,PostalCode,Nagapattinam,LGD,579,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false -IN-PIN,614901,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614902,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614903,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614904,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614905,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,614906,PostalCode,Thanjavur,LGD,586,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false -IN-PIN,620002,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620003,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620004,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620005,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620006,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620007,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620008,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620009,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620010,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620011,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620012,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620013,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620015,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620016,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620017,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620019,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620020,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620021,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620025,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620027,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620101,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,620102,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621001,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621002,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621003,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621004,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621005,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621006,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621007,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621008,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621009,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621010,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621011,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621012,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621014,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621101,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621102,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621103,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621104,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621105,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621106,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621107,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621108,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621109,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621110,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621111,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621112,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621113,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621114,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621115,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621116,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621117,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621118,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621119,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621133,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621202,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621203,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621204,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621205,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621206,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621207,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621208,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621209,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621210,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621211,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621212,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621213,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621214,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621215,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621216,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621217,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621218,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621219,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621220,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621301,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,621302,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621305,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,621306,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621307,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621308,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,621310,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621311,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,621312,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,621313,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,621314,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621315,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621316,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,621601,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621651,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621652,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621653,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621701,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621702,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621703,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621704,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621705,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621706,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621707,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621708,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621709,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621710,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621711,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621712,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,621713,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621714,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621715,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621716,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621717,PostalCode,Perambalur,LGD,581,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false -IN-PIN,621718,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621719,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621722,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621729,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621730,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621731,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621801,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621802,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621803,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621804,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621805,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621806,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,621851,PostalCode,Ariyalur,LGD,610,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false -IN-PIN,622001,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622002,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622003,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622004,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622101,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622102,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622103,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622104,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622201,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622202,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622203,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622204,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622209,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622301,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622302,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622303,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622304,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622401,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622402,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622403,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622404,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622407,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622409,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622411,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622412,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622422,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622501,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622502,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622503,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622504,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622505,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622506,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622507,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,622515,PostalCode,Pudukkottai,LGD,582,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false -IN-PIN,623115,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623120,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623135,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623308,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623315,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623401,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623402,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623403,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623404,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623406,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623407,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623409,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623502,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623503,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623504,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623512,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623513,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623514,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623515,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623516,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623517,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623518,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623521,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623522,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623523,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623524,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623525,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623526,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623527,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623528,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623530,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623531,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623532,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623533,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623534,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623536,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623537,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623538,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623601,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623603,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623604,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623605,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623608,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623701,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623703,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623704,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623705,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623706,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623708,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623711,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,623712,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,624002,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624003,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624004,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624005,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624101,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624103,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624201,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624202,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624204,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624206,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624208,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624210,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624211,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624212,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624215,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624216,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624219,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624220,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624301,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624302,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624303,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624304,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624306,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624307,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624308,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624401,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624402,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624403,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624601,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624610,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624612,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624613,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624614,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624615,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624616,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624617,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624618,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624619,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624620,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624621,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624622,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624701,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624702,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624703,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624704,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624705,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624706,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624707,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624708,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624709,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624710,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624711,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624712,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624801,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,624802,PostalCode,Dindigul,LGD,572,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false -IN-PIN,625001,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625002,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625003,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625005,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625006,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625007,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625008,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625009,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625012,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625014,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625016,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625017,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625018,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625019,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625020,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625021,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625022,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625023,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625101,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625102,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625103,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625104,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625105,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625106,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625107,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625108,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625109,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625110,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625122,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625201,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625203,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625205,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625207,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625214,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625218,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625221,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625234,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625301,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625402,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625501,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625503,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625512,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625513,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625514,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625515,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625516,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625517,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625518,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625520,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625521,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625522,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625523,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625524,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625525,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625526,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625527,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625528,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625529,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625530,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625531,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625532,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625533,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625534,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625535,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625536,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625537,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625540,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625552,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625556,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625562,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625579,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625582,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625601,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625602,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625604,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625605,PostalCode,Theni,LGD,588,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false -IN-PIN,625701,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625702,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625703,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625704,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625705,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625706,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625707,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,625708,PostalCode,Madurai,LGD,578,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false -IN-PIN,626001,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626002,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626003,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626004,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626005,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626101,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626102,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626103,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626104,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626105,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626106,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626107,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626109,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626110,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626111,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626112,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626113,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626114,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626115,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626116,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626117,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626118,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626119,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626121,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626122,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,626123,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626124,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626125,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626126,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626127,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626128,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626129,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626130,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626131,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626132,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626133,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626134,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626136,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626137,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626138,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626139,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626140,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626141,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626142,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626149,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626161,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626188,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626189,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626201,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626202,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,626203,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626204,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626205,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626607,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,626612,PostalCode,Virudhunagar,LGD,597,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false -IN-PIN,627001,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627002,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627005,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627007,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627011,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627012,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627101,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627102,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627103,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627104,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627106,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627108,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627109,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627110,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627111,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627112,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627113,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627114,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627115,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627116,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627117,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627118,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627119,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627120,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627127,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627151,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627152,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627201,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627202,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627351,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627352,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,627353,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627354,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627355,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627356,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627357,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627358,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627359,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627401,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627412,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627413,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627414,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627415,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627416,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627417,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627418,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627421,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627423,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627424,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627425,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627426,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627451,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627452,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627501,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627502,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627601,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627602,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627651,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627652,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627654,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627657,PostalCode,Tirunelveli,LGD,592,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false -IN-PIN,627713,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627719,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627751,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627753,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627754,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627755,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627756,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627757,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627758,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627759,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627760,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627761,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627764,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627802,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627803,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627804,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627805,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627806,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627807,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627808,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627809,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627811,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627812,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627813,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627814,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627818,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627851,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627852,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627853,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627854,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627855,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627856,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627857,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627858,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627859,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627860,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627861,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627862,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,627951,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,627953,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,628001,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628002,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628005,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628101,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628102,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628103,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628104,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628105,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628151,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628152,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628201,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628202,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628203,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628204,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628205,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628206,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628207,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628208,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628209,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628210,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628211,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628212,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628213,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628215,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628216,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628218,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628229,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628251,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628252,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628301,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628302,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628303,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628304,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628401,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628402,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628502,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,628503,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628552,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,628601,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628612,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628613,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628614,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628615,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628616,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628617,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628618,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628619,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628620,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628621,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628622,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628623,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628653,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628656,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628701,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628702,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628703,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628704,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628712,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628714,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628716,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628718,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628720,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628721,PostalCode,Tenkasi,LGD,733,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false -IN-PIN,628722,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628752,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628753,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628801,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628802,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628809,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628851,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628901,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628902,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628903,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628904,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628905,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628906,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628907,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628908,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,628952,PostalCode,Thoothukkudi,LGD,594,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false -IN-PIN,629001,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629002,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629003,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629004,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629101,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629102,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629151,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629152,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629153,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629154,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629156,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629157,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629158,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629159,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629160,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629161,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629162,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629163,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629164,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629165,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629167,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629168,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629170,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629171,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629172,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629173,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629174,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629175,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629176,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629177,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629178,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629179,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629180,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629193,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629201,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629202,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629203,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629204,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629251,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629252,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629301,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629302,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629401,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629402,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629403,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629501,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629502,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629601,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629602,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629701,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629702,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629703,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629704,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629801,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629802,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629803,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629804,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629810,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629851,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629852,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,629901,PostalCode,Kanniyakumari,LGD,575,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false -IN-PIN,630002,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630003,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630101,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630103,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630104,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630105,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630106,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630107,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630108,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630201,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630202,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630203,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630204,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630205,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630206,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630207,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630208,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630210,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630211,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630212,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630301,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630302,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630303,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630305,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630306,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630307,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630309,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630311,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630312,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,630313,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630314,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630321,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630405,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630408,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630410,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630411,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630501,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630502,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630551,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630552,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630553,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630554,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630555,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630556,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630557,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630558,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630559,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630561,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630562,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630602,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630606,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630609,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630610,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630611,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630612,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630702,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630709,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,630710,PostalCode,Ramanathapuram,LGD,583,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false -IN-PIN,630713,PostalCode,Sivaganga,LGD,585,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false -IN-PIN,631001,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631002,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631003,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631004,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631051,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631052,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631101,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631102,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631151,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,631201,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631202,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631203,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631204,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631205,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631206,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631207,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631208,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631209,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631210,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631211,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631212,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631213,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631301,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631302,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631303,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631304,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631402,PostalCode,Thiruvallur,LGD,589,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false -IN-PIN,631501,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631502,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631551,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631552,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631553,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631561,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631601,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631603,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631604,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631605,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631606,PostalCode,Kancheepuram,LGD,574,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false -IN-PIN,631701,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,631702,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632001,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632002,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632004,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632006,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632007,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632008,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632009,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632010,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632011,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632012,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632013,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632014,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632055,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632057,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632058,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632059,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632101,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632102,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632103,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632104,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632105,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632106,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632107,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632113,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632114,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632201,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632202,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632203,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632204,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632209,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632301,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632311,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632312,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632313,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632314,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632315,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632316,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632317,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632318,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632319,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632326,PostalCode,Tiruvannamalai,LGD,593,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false -IN-PIN,632401,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632404,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632405,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632501,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632502,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632503,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632504,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632505,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632506,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632507,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632508,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632509,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632510,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632511,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632512,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632513,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632514,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632515,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632516,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632517,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632518,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632519,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632520,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632521,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632531,PostalCode,Ranipet,LGD,731,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false -IN-PIN,632601,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632602,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,632603,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,632604,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,635001,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635002,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635101,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635102,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635103,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635104,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635105,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635106,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635107,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635108,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635109,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635110,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635111,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635112,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635113,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635114,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635115,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635116,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635117,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635118,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635119,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635120,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635121,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635122,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635123,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635124,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635126,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635130,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635201,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635202,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635203,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635204,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635205,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635206,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635207,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635301,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635302,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635303,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635304,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635305,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,635306,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635307,PostalCode,Krishnagiri,LGD,577,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false -IN-PIN,635601,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635602,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635651,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635652,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635653,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635654,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635655,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635701,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635702,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635703,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635710,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635751,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635752,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635754,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635801,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635802,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635803,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,635804,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635805,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635806,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,635807,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635808,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635809,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,635810,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,635811,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635812,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635813,PostalCode,Vellore,LGD,595,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false -IN-PIN,635814,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635815,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635851,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635852,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635853,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635854,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,635901,PostalCode,Tirupathur,LGD,732,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false -IN-PIN,636005,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636008,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636010,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636011,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636012,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636013,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636015,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636030,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636101,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636102,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636103,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636104,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636105,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636106,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636107,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636108,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636109,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636110,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636111,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636112,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,636113,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,636114,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636115,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636116,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636117,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636118,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,636119,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636121,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636122,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636138,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636139,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636140,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636141,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636142,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,636201,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636202,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,636203,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,636204,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636301,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,636302,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636303,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636304,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636305,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636306,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636307,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636308,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636309,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636351,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636352,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636354,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636403,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636404,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636451,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636452,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636453,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636454,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636455,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636457,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636458,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636501,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636502,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636503,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636601,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636602,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,636701,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636704,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636705,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636803,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636804,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636805,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636806,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636807,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636808,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636809,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636810,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636811,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636813,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636902,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636903,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636904,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636905,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636906,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,636907,PostalCode,Dharmapuri,LGD,571,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false -IN-PIN,637001,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637002,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637003,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637013,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637014,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637015,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637017,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637018,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637019,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637020,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637021,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637101,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,637102,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,637105,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,637107,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,637201,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637202,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637203,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637204,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637205,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637206,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637207,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637208,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637209,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637210,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637211,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637212,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637213,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637214,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637215,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637216,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637301,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,637302,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637303,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637304,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637401,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637402,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637403,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637404,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637405,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637406,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637407,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637408,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637409,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637410,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637411,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637412,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637415,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637501,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,637502,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,637503,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,637504,PostalCode,Salem,LGD,584,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false -IN-PIN,637505,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,638001,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638002,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638003,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638004,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638005,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638007,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,638008,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638009,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638012,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638051,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638052,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638053,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638054,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638055,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638056,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638057,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638101,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638102,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638103,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638104,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638105,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638106,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638107,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638108,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638109,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638110,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638111,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638112,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638115,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638116,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638151,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638152,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638153,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638154,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638181,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,638182,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,638183,PostalCode,Namakkal,LGD,580,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false -IN-PIN,638301,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638311,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638312,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638313,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638314,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638315,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638316,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638401,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,638402,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638451,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638452,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638453,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638454,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638455,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638456,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638457,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638458,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638459,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,638460,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,638461,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638462,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638476,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638501,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638502,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638503,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638504,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638505,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638506,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638656,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638657,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638660,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638661,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638672,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638673,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638701,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638702,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638703,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638706,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,638751,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638752,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,638812,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,639001,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639002,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639003,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639004,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639005,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639006,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639007,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639008,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639101,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,639102,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639103,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639104,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639105,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639107,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639108,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639109,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639110,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639111,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639112,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,639113,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639114,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639115,PostalCode,Tiruchirappalli,LGD,591,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false -IN-PIN,639116,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639117,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639118,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639119,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639120,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639136,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639201,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639202,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639203,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639205,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639206,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,639207,PostalCode,Karur,LGD,576,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false -IN-PIN,641001,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641005,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641006,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641007,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641008,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641009,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641010,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641015,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641016,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641017,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641019,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641020,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641022,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641024,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641026,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641027,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641028,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641029,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641030,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641031,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641032,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641034,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641035,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641039,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641041,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641045,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641047,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641048,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641049,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641050,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641062,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641101,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641103,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641104,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641105,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641107,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641108,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641109,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641110,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641111,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641112,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641113,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641114,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641201,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641202,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641302,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641305,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641401,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641402,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641407,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641602,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641603,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641604,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641605,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641606,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641607,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641652,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641653,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641654,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641655,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641658,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641659,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641662,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641663,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641664,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641665,PostalCode,Erode,LGD,573,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false -IN-PIN,641666,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641667,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641668,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641669,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641670,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641671,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,641687,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,641697,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642001,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642002,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642003,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642004,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642005,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642006,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642007,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642101,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642102,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642103,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642104,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642105,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642107,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642109,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642110,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642111,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642112,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642113,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642114,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642120,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642122,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642123,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642126,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642128,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642129,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642132,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642134,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642154,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642201,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642202,PostalCode,Coimbatore,LGD,569,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false -IN-PIN,642203,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642204,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642205,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642206,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,642207,PostalCode,Tiruppur,LGD,634,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false -IN-PIN,643003,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,643202,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,643204,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,643205,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,643218,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,643231,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,643238,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,643239,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,643242,PostalCode,The Nilgiris,LGD,587,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false -IN-PIN,670001,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670002,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670003,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670004,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670005,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670006,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670008,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670009,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670010,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670104,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670105,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670106,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670107,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670141,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670142,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670143,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670301,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670303,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670304,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670305,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670306,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670307,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670309,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670331,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670353,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670502,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670511,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670521,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670561,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670563,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670571,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670581,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670582,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670591,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670592,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670593,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670594,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670595,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670601,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670602,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670604,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670611,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670612,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670613,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670621,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670622,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670631,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670633,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670642,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670643,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670644,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,670645,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,670646,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,670650,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670651,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670662,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670671,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670672,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670673,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670674,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670676,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670692,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670693,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670694,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670701,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670702,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670703,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670705,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670706,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,670721,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,670731,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,670741,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,671121,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671122,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671123,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671124,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671310,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671312,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671313,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671314,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671315,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671316,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671317,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671318,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671319,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671320,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671321,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671322,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671323,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671324,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671326,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671348,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671351,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671531,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671532,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671533,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671534,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671541,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671542,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671543,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671551,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,671552,PostalCode,Kasaragod,LGD,558,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false -IN-PIN,673001,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673003,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673004,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673005,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673007,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673008,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673010,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673015,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673016,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673017,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673019,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673021,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673101,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673102,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673104,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673121,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673122,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673123,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673301,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673303,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673304,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673305,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673306,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673307,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673309,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673310,PostalCode,Puducherry,LGD,600,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false -IN-PIN,673311,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,673313,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,673314,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673315,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673316,PostalCode,Kannur,LGD,557,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false -IN-PIN,673317,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673323,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673328,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673501,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673502,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673503,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673504,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673505,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673506,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673507,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673508,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673509,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673513,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673517,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673521,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673522,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673523,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673524,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673525,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673526,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673527,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673528,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673529,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673541,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673542,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673571,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673572,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673573,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673574,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673575,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673576,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673577,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673579,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673580,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673581,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673582,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673585,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673586,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673591,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673592,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673593,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673595,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673596,PostalCode,Wayanad,LGD,567,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false -IN-PIN,673601,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673602,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673603,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673604,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673611,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673612,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673613,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673614,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673616,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673620,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673631,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673633,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673634,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673635,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673637,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673638,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673639,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673640,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673641,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673642,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,673655,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,673661,PostalCode,Kozhikode,LGD,561,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false -IN-PIN,676101,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676102,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676104,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676106,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676108,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676109,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676121,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676122,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676123,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676301,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676302,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676303,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676304,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676305,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676306,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676307,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676312,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676317,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676320,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676501,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676503,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676504,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676505,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676506,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676507,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676508,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676509,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676517,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676519,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676521,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676523,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676525,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676528,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676541,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676542,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676551,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676552,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676553,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,676561,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,678001,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678004,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678006,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678007,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678008,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678101,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678102,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678103,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678501,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678502,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678503,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678504,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678505,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678506,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678507,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678508,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678510,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678532,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678533,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678534,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678541,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678542,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678543,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678544,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678545,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678546,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678551,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678552,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678553,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678555,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678556,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678557,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678571,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678572,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678573,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678574,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678581,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678582,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678583,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678592,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678593,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678594,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678595,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678597,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678598,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678601,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678611,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678612,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678613,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678621,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678622,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678623,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678624,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678631,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678633,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678641,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678642,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678651,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678671,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678682,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678683,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678684,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678686,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678687,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678701,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678702,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678703,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678705,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678706,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678721,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678722,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,678731,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679101,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679104,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679105,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,679106,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,679121,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679301,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679303,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679304,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679307,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679309,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679313,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679321,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679322,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679323,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679324,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679325,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679326,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679327,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679328,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679329,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679330,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679331,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679332,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679333,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679334,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679335,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679336,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679337,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679338,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679339,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679340,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679341,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679357,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679501,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679502,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679503,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679504,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679505,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679512,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679513,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679515,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679522,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679523,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679531,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,679532,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,679533,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679534,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679536,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679551,PostalCode,Palakkad,LGD,563,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false -IN-PIN,679562,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,679563,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,679564,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,679571,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679572,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679573,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679575,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679576,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679578,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679579,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679580,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679581,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679582,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679583,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,679585,PostalCode,Malappuram,LGD,562,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false -IN-PIN,680001,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680002,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680003,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680005,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680007,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680008,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680010,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680012,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680013,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680014,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680026,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680027,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680028,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680101,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680102,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680104,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680121,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680122,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680123,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680125,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680301,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680302,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680304,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680305,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680306,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680308,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680309,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680310,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680311,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680312,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680317,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680501,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680502,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680503,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680505,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680506,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680507,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680508,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680509,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680510,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680511,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680512,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680514,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680515,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680517,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680518,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680519,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680521,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680523,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680541,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680542,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680543,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680544,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680545,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680546,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680551,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680552,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680553,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680555,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680561,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680562,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680563,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680564,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680565,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680567,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680569,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680570,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680571,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680581,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680582,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680583,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680584,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680585,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680586,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680587,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680588,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680589,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680590,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680591,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680594,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680596,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680601,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680602,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680604,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680613,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680614,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680615,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680616,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680617,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680618,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680620,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680623,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680631,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680641,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680651,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680652,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680653,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680654,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680655,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680661,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680662,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680663,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680664,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680665,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680666,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680667,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,680668,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680669,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680671,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680681,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680682,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680683,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680684,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680686,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680687,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680689,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680691,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680697,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680699,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680701,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680702,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680703,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680712,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680721,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680722,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680724,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680731,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680732,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680733,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680734,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680741,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,680751,PostalCode,Thrissur,LGD,566,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false -IN-PIN,682001,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682002,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682004,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682005,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682008,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682010,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682011,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682017,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682021,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682024,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682027,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682030,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682034,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682038,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682301,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682303,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682304,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682305,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682307,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682308,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682309,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682310,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682312,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682313,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682314,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682315,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682316,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682317,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682501,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682502,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682504,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682505,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682506,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682507,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682508,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682509,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,682551,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,682552,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,682553,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,682554,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,682555,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,682556,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,682557,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,682558,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,682559,PostalCode,Lakshadweep District,LGD,553,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false -IN-PIN,683101,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683105,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683106,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683110,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683112,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683502,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683511,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683512,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683513,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683514,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683516,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683517,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683519,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683522,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683541,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683542,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683544,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683545,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683546,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683549,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683550,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683556,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683562,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683565,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683571,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683572,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683574,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683575,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683576,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683577,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683578,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683579,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683580,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683581,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683585,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,683587,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,685501,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685503,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685505,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685507,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685509,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685511,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685512,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685514,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685515,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685531,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685532,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685533,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685535,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685551,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685552,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685553,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685554,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685561,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685562,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685563,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685565,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685566,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685571,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685581,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685582,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685583,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685585,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685586,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685587,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685588,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685589,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685590,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685591,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685595,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685601,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685602,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685603,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685604,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685605,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685606,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685607,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685608,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685609,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685612,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685613,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685614,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685615,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685616,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685618,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685619,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,685620,PostalCode,Idukki,LGD,556,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false -IN-PIN,686002,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686003,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686005,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686008,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686010,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686011,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686012,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686015,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686016,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686019,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686020,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686022,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686102,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,686103,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686104,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686105,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686122,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686123,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686143,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686144,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686146,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686502,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686503,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686504,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686506,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686507,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686509,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686510,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,686511,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,686512,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686513,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686514,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686516,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686518,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686519,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686522,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686532,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686534,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,686536,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686537,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686538,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686539,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686540,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686541,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686542,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686543,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686544,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686547,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,686561,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686563,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686564,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686571,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686573,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686574,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686576,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686577,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686579,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686580,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686582,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686584,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686586,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686602,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686603,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686605,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686606,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686607,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686610,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686611,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686612,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686613,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686631,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686632,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686633,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686634,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686636,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686637,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686651,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686652,PostalCode,Kottayam,LGD,560,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false -IN-PIN,686661,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686662,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686663,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686664,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686665,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686667,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686668,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686669,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686670,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686671,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686672,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686673,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686681,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686691,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686692,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,686693,PostalCode,Ernakulam,LGD,555,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false -IN-PIN,688001,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688003,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688004,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688005,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688006,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688011,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688014,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688501,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688502,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688503,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688504,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688505,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688506,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688521,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688522,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688523,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688524,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688525,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688526,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688527,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688528,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688529,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688530,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688531,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688532,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688533,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688534,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688535,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688536,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688537,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688539,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688540,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688541,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688561,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688562,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,688570,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689102,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689103,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689106,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689108,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689109,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689110,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689115,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689121,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689501,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689502,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689503,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689505,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689506,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689508,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689509,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689512,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689514,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689515,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689531,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689533,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689542,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689543,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689544,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689549,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689572,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689573,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689574,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689581,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689582,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689583,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689584,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689585,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689586,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689592,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689595,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689611,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689621,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689622,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689623,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689624,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,689625,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689641,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689642,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689643,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689646,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689647,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689648,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689650,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689652,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689656,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689662,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689663,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689666,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689667,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689668,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689672,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689673,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689674,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689678,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689691,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689693,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689694,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689695,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,689696,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,689699,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,689711,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,690101,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690103,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690104,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690105,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690107,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690110,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690501,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690502,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690503,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690504,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690505,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690506,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690507,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690508,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690509,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690513,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690514,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690515,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690516,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690517,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690518,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690519,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690520,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690521,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690522,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690523,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690524,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690525,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690526,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690527,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690532,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690533,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690534,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690535,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690536,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690540,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690542,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690548,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690558,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690559,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690561,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690572,PostalCode,Alappuzha,LGD,554,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false -IN-PIN,690573,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,690574,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691001,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691004,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691005,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691010,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691011,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691015,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691301,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691302,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691303,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691306,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691307,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691308,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691309,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691310,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691311,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691312,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691322,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691331,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691332,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691333,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691500,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691501,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691502,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691503,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691505,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691506,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691507,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691508,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691509,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691516,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691520,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691521,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691522,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691524,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,691525,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,691526,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,691532,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691533,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691534,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691535,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691536,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691537,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691538,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691540,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691551,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,691553,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,691554,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,691555,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,691556,PostalCode,Pathanamthitta,LGD,564,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false -IN-PIN,691559,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691560,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691571,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691572,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691573,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691574,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691576,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691577,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691578,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691581,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691582,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691583,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691584,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691601,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,691602,PostalCode,Kollam,LGD,559,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false -IN-PIN,695002,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695003,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695004,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695005,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695012,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695013,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695014,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695019,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695024,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695026,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695027,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695032,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695042,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695043,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695101,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695102,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695103,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695121,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695122,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695123,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695124,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695125,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695126,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695132,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695133,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695141,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695142,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695143,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695144,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695145,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695146,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695301,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695302,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695303,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695304,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695305,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695306,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695308,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695309,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695310,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695311,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695313,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695316,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695317,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695318,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695501,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695502,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695504,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695505,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695506,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695507,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695521,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695525,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695526,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695527,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695528,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695541,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695542,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695543,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695551,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695562,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695563,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695564,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695568,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695571,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695572,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695573,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695574,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695575,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695582,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695584,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695586,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695587,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695588,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695589,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695601,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695602,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695603,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695604,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695605,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695606,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695607,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695608,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695609,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695610,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695611,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695612,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695614,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,695615,PostalCode,Thiruvananthapuram,LGD,565,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false -IN-PIN,700102,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700110,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700113,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700119,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700121,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700122,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700124,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700125,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700126,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700128,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700130,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700132,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700135,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700136,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700137,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,700144,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,700150,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,700155,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700156,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700160,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,700162,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,711104,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711109,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711114,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711115,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711201,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711204,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711205,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711225,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711226,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711301,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711302,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711303,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711304,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711305,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711306,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711307,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711309,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711310,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711312,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711313,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711314,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711315,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711316,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711317,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711322,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711331,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711401,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711403,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711404,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711405,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711408,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,711409,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711410,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,711411,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711412,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711413,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,711414,PostalCode,Howrah,LGD,313,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false -IN-PIN,712101,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712102,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712103,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712104,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712105,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712121,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712122,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712123,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712124,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712134,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712135,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712138,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712146,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712147,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712148,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712149,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712152,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712203,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712204,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712222,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712223,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712234,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712245,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712246,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712248,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712250,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712301,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712302,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712303,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712304,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712305,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712306,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712308,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712311,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712401,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712402,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712403,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712404,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712405,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712406,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712407,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712408,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712409,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712410,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712412,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712413,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712414,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712415,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712416,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712417,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712501,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712502,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712503,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712504,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712512,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712513,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712514,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712515,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712601,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712602,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712611,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712612,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712613,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712614,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712615,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712616,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712617,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712701,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712702,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,712706,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,713101,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713102,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713103,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713104,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713121,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713122,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713123,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,713124,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713125,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713126,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713127,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713128,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713129,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713130,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713131,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713132,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713140,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713141,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713142,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,713143,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713144,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713145,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713146,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713147,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713148,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713149,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713150,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713151,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713152,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713153,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713154,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713166,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713204,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713205,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713206,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713211,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713212,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713315,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713321,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713322,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713323,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713330,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713334,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713335,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713336,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713337,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713338,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713339,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713341,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713342,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713346,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713347,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713357,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713358,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713359,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713362,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713363,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713369,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713376,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713378,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713381,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713384,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713385,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713386,PostalCode,Paschim Bardhaman,LGD,704,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false -IN-PIN,713401,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713403,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713404,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713405,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713406,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713407,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713408,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713409,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713420,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713421,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713422,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713423,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713424,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713426,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713427,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713428,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713502,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,713512,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713513,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713514,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713515,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713519,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,713520,PostalCode,Purba Bardhaman,LGD,306,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false -IN-PIN,721101,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721102,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721121,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721122,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721124,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721125,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721126,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721127,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721128,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721129,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721130,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721131,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721133,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721134,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721135,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721136,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721137,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721139,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721140,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721144,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721145,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721146,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721147,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721148,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721149,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721150,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721151,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721152,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721153,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721154,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721155,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721156,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721157,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721158,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721160,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721161,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721166,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721172,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721201,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721211,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721212,PostalCode,Hooghly,LGD,312,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false -IN-PIN,721222,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721232,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721242,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721253,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721260,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721301,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721303,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721304,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721305,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721306,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721401,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721402,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721403,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721404,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721405,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721406,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721420,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721422,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721423,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721424,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721425,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721426,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721427,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721428,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721429,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721430,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721431,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721432,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721433,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721434,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721435,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721436,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721437,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721438,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721439,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721440,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721441,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721442,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721443,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721444,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721445,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721446,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721447,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721448,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721449,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721450,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721451,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721452,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721453,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721454,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721455,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721456,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721457,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721458,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721463,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721467,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721501,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721503,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721504,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721505,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721506,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721507,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721513,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721514,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721515,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721516,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721517,PostalCode,Jhargram,LGD,703,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false -IN-PIN,721601,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721602,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721603,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721624,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721625,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721626,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721627,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721628,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721629,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721631,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721632,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721633,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721634,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721635,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721637,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721641,PostalCode,Paschim Medinipur,LGD,318,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false -IN-PIN,721642,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721644,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721645,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721646,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721647,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721648,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721649,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721650,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721651,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721652,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721653,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721654,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721655,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721656,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721658,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,721659,PostalCode,Purba Medinipur,LGD,317,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false -IN-PIN,722102,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722121,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722122,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722132,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722133,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722134,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722135,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722136,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722137,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722138,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722139,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722140,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722141,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722142,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722143,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722144,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722146,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722147,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722148,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722149,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722150,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722151,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722152,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722153,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722154,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722155,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722156,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722157,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722158,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722160,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722161,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722162,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722164,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722173,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722201,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722202,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722203,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722204,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722205,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722206,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722207,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,722208,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,723101,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723102,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723103,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723104,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723121,PostalCode,Bankura,LGD,305,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false -IN-PIN,723126,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723127,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723128,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723129,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723130,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723131,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723132,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723133,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723142,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723143,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723145,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723146,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723147,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723148,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723149,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723151,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723152,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723153,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723154,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723155,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723156,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723201,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723202,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723212,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723213,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,723215,PostalCode,Purulia,LGD,321,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false -IN-PIN,731101,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731102,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731103,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731104,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731121,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731123,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731124,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731125,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731126,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731127,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731129,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731130,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731132,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731201,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731202,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731204,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731213,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731214,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731215,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731216,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731219,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731220,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731221,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731222,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731223,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731233,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731234,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731235,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731236,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731237,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731238,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731240,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731241,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731242,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731243,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731244,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731245,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731301,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731302,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731303,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,731304,PostalCode,Birbhum,LGD,307,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false -IN-PIN,732101,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732102,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732103,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732121,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732122,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732123,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732124,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732125,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732126,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732127,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732128,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732138,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732139,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732140,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732141,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732142,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732144,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732201,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732202,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732203,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732204,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732205,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732206,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732207,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732208,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732209,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732210,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732215,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,732216,PostalCode,Malda,LGD,316,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false -IN-PIN,733101,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733102,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733103,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733121,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733123,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733124,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733125,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733126,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733127,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733128,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733129,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733130,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733132,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733133,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733134,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733140,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733141,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733142,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733143,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733145,PostalCode,Dakshin Dinajpur,LGD,310,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false -IN-PIN,733156,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733201,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733202,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733207,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733208,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733209,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733210,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,733215,PostalCode,Uttar Dinajpur,LGD,311,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false -IN-PIN,734002,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734003,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734008,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734009,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734010,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734011,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734012,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734013,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734014,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734101,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734102,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734104,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734105,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734201,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734203,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734213,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734214,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734215,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734216,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734217,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734218,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734219,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734220,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734221,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734222,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734223,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734224,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734226,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734301,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -IN-PIN,734311,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -IN-PIN,734312,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734313,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734314,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -IN-PIN,734315,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -IN-PIN,734316,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -IN-PIN,734423,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734424,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734425,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734426,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734427,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734429,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734434,PostalCode,Darjeeling,LGD,309,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false -IN-PIN,734501,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,734503,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -IN-PIN,735102,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735121,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735122,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,735132,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735133,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735134,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735135,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735202,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735203,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735204,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735205,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735206,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735207,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735208,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735209,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735210,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735211,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735212,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735213,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735214,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735215,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735216,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735217,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735218,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735219,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735220,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735221,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735222,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735223,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735224,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735225,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735227,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735228,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,735229,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735230,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735231,PostalCode,Kalimpong,LGD,702,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false -IN-PIN,735233,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735301,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,735302,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,735303,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,735304,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,735305,PostalCode,Jalpaiguri,LGD,314,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false -IN-PIN,736121,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736122,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736123,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736131,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736133,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736134,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736135,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736145,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736146,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736156,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736157,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736158,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736159,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736160,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736165,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736167,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736168,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736169,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736170,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736171,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736172,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736176,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736179,PostalCode,Cooch Behar,LGD,308,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false -IN-PIN,736182,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736201,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736202,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736203,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736204,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736205,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736206,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736207,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,736208,PostalCode,Alipurduar,LGD,664,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false -IN-PIN,737101,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737102,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737103,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737106,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737107,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737111,PostalCode,Gyalshing,LGD,228,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false -IN-PIN,737113,PostalCode,Gyalshing,LGD,228,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false -IN-PIN,737116,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737120,PostalCode,Mangan,LGD,226,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false -IN-PIN,737121,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737126,PostalCode,Namchi,LGD,227,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false -IN-PIN,737128,PostalCode,Namchi,LGD,227,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false -IN-PIN,737131,PostalCode,Pakyong,LGD,741,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -IN-PIN,737132,PostalCode,Pakyong,LGD,741,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -IN-PIN,737133,PostalCode,Pakyong,LGD,741,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false -IN-PIN,737134,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737135,PostalCode,Gangtok,LGD,225,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false -IN-PIN,737139,PostalCode,Namchi,LGD,227,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false -IN-PIN,741101,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741102,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741103,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741121,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741122,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741123,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741124,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741125,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741126,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741127,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741137,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741138,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741139,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741140,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741150,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741151,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741152,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741153,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741154,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741155,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741156,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,741157,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741158,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741160,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741161,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741162,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741163,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741164,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741165,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741166,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741167,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741181,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741201,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741202,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741221,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741222,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741223,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741238,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741245,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741246,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741247,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741248,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741249,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741250,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741251,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741253,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741254,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741255,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741256,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741257,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741301,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741302,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741313,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741315,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741316,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741317,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741401,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741402,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741404,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741501,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741502,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741503,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741504,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741505,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741506,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741507,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741508,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,741509,PostalCode,Nadia,LGD,320,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false -IN-PIN,742101,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742102,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742104,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742113,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742121,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742122,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742123,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742132,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742133,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742134,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742135,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742136,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742137,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742138,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742140,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742147,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742148,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742149,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742151,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742159,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742161,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742163,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742164,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742165,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742166,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742168,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742174,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742175,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742184,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742187,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742189,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742201,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742202,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742212,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742213,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742223,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742224,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742225,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742226,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742227,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742235,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742236,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742237,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742302,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742303,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742304,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742305,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742306,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742308,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742401,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742402,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742404,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742405,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742406,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742407,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742408,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742409,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,742410,PostalCode,Murshidabad,LGD,319,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false -IN-PIN,743122,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743126,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743127,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743130,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743135,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743144,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743145,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743166,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743193,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743221,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743222,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743232,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743233,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743234,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743235,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743245,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743247,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743248,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743249,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743251,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743252,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743262,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743263,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743270,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743271,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743272,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743273,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743286,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743287,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743289,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743290,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743291,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743292,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743293,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743294,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743297,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743312,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743318,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743329,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743330,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743331,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743332,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743336,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743337,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743338,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743345,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743347,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743348,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743349,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743351,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743354,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743355,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743356,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743357,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743363,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743368,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743370,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743371,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743372,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743373,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743374,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743375,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743376,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743377,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743378,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743383,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743387,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743395,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743399,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743401,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743405,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743411,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743412,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743422,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743423,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743424,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743425,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743426,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743427,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743428,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743429,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743435,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743437,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743438,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743439,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743442,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743445,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743446,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743456,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743502,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743503,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743504,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743513,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743609,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743610,PostalCode,South 24 Parganas,LGD,304,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false -IN-PIN,743611,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743701,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743702,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743704,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743710,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,743711,PostalCode,North 24 Parganas,LGD,303,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false -IN-PIN,744101,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -IN-PIN,744103,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -IN-PIN,744104,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -IN-PIN,744105,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -IN-PIN,744201,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -IN-PIN,744202,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -IN-PIN,744203,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -IN-PIN,744204,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -IN-PIN,744205,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -IN-PIN,744206,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -IN-PIN,744207,PostalCode,South Andamans,LGD,602,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false -IN-PIN,744209,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -IN-PIN,744210,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -IN-PIN,744211,PostalCode,North And Middle Andaman,LGD,632,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false -IN-PIN,744301,PostalCode,Nicobars,LGD,603,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false -IN-PIN,744302,PostalCode,Nicobars,LGD,603,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false -IN-PIN,744303,PostalCode,Nicobars,LGD,603,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false -IN-PIN,744304,PostalCode,Nicobars,LGD,603,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false -IN-PIN,751002,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,751017,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,751019,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,751021,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,751024,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,751028,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,751029,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,751030,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,751031,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752002,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752004,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752010,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752011,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752012,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752013,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752014,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752015,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752016,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752017,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752018,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752019,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752020,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752021,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752022,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752023,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752024,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752025,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752026,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752027,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752030,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752031,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752032,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752034,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752035,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752038,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752045,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752046,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752050,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752054,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752055,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752056,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752057,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752060,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752061,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752062,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752063,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752064,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752065,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752066,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752068,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752069,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752070,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752077,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752078,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752079,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752080,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752081,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752082,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752083,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752084,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752085,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752089,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752090,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752091,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752092,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752093,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752094,PostalCode,Nayagada,LGD,367,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false -IN-PIN,752100,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752101,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752102,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752103,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,752104,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752105,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752106,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752107,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,752108,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752109,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752110,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752111,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752113,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752114,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752116,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752118,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752119,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,752120,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,752121,PostalCode,Puri,LGD,369,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false -IN-PIN,753006,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,753011,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754001,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754002,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754003,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754004,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754005,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754006,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754007,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754008,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754009,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754010,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754011,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754012,PostalCode,Khordha,LGD,362,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false -IN-PIN,754018,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754022,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754023,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,754024,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,754025,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754027,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754028,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754029,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754030,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754031,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754032,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754034,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754035,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754037,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754071,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754082,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,754100,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754102,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754103,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754104,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754105,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754106,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754107,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754108,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754109,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754110,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754111,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754112,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754113,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754114,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754119,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754130,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754131,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754132,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754133,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754134,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754135,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754136,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754137,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754138,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754139,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754140,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754141,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754142,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754153,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754160,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754162,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754200,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754201,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754202,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754203,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754204,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754205,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,754206,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754207,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754208,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754209,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754210,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754211,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754212,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754213,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754214,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,754215,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754216,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754217,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754218,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754219,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754220,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754221,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754222,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754223,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754224,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754225,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754227,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754228,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754231,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754239,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754240,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754244,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754245,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754246,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754248,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754250,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754253,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754289,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,754290,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754292,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,754293,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754294,PostalCode,Jagatsinghapur,LGD,355,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false -IN-PIN,754295,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754296,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,754297,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754298,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,754299,PostalCode,Kataka,LGD,350,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false -IN-PIN,755001,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755003,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755004,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755006,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755008,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755009,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755010,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755011,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755012,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755013,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755014,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755015,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755016,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755017,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755018,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755019,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755020,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755022,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755023,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755025,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755026,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755027,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755036,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755043,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755044,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755050,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,755061,PostalCode,Kendrapada,LGD,360,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false -IN-PIN,755062,PostalCode,Jajpur,LGD,356,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false -IN-PIN,756002,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756003,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756019,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756020,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756021,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756023,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756024,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756025,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756026,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756027,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756028,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756029,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756033,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756034,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756035,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756036,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756037,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756038,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756039,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756040,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756041,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756042,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756043,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756044,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756045,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756046,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756047,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756048,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756049,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756051,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756056,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756058,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756059,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756060,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756079,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756080,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756081,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756083,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756084,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756085,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756086,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756087,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756088,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756089,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756100,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756101,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756111,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756112,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756114,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756115,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756116,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756117,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756118,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756119,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756120,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756121,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756122,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756123,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756124,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756125,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756126,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756127,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756128,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756129,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756130,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756131,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756132,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756133,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756134,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,756135,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756137,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756138,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756139,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756144,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756162,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756163,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756164,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756165,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756166,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756167,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756168,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756171,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756181,PostalCode,Bhadrak,LGD,348,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false -IN-PIN,756182,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,757001,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757002,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757003,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757014,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757016,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757017,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757018,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757019,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757020,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757021,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757022,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757023,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757024,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757025,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757026,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757028,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757029,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757030,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757031,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757032,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757033,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757034,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757035,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757036,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757037,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757038,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757039,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757040,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757041,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757042,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757043,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757045,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757046,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757047,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757048,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757049,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757050,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757051,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757052,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757053,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757054,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757055,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757056,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757073,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757074,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757075,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757077,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757079,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757081,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757082,PostalCode,Baleshwar,LGD,346,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false -IN-PIN,757083,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757084,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757085,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757086,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757087,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757091,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757092,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757093,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757100,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757101,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757102,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757103,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757104,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757105,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757106,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,757107,PostalCode,Mayurbhanj,LGD,365,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false -IN-PIN,758002,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758013,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758014,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758015,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758016,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758017,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758018,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758019,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758020,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758021,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758022,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758023,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758025,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758026,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758027,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758028,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758029,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758030,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758031,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758032,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758034,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758035,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758036,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758037,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758038,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758041,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758043,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758044,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758045,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758046,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758047,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758076,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758078,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758079,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758080,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758081,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758082,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758083,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758084,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758085,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758086,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,758087,PostalCode,Kendujhar,LGD,361,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false -IN-PIN,759001,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759013,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759014,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759015,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759016,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759017,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759018,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759019,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759020,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759021,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759022,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759023,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759024,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759025,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759026,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759027,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759028,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759029,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759037,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759039,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759040,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759100,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759101,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759102,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759103,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759105,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759106,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759107,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759111,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759116,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759117,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759118,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759119,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759120,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759121,PostalCode,Dhenkanal,LGD,352,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false -IN-PIN,759122,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759123,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759124,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759125,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759126,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759127,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759128,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759129,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759130,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759132,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759141,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759143,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759145,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759146,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759147,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759148,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759149,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759150,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,759151,PostalCode,Anugola,LGD,344,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false -IN-PIN,760002,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,760003,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,760007,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,760008,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,760010,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761001,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761002,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761003,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761004,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761005,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761006,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761007,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761008,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761009,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761010,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761011,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761012,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761013,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761014,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761015,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761016,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761017,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761018,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761019,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761020,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761026,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761027,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761028,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761029,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761030,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761031,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761032,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761035,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761037,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761041,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761042,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761043,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761045,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761052,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761054,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761055,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761100,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761101,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761102,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761103,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761104,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761105,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761106,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761107,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761108,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761109,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761110,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761114,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761118,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761121,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761123,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761126,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761131,PostalCode,Ganjam,LGD,354,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false -IN-PIN,761200,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761201,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761206,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761207,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761208,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761209,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761210,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761211,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761212,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761213,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761214,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761215,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,761217,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,762001,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762002,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762010,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762011,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762012,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762013,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762014,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762015,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762016,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762017,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762018,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762019,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762020,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762021,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762022,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762023,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762024,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762026,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762027,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762028,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762029,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762030,PostalCode,Boudh,LGD,349,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false -IN-PIN,762100,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762101,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762102,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762103,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762104,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762105,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762106,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762107,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762109,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762110,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,762112,PostalCode,Kandhamala,LGD,359,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false -IN-PIN,763001,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,763002,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,763003,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,763008,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764002,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764003,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764005,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764006,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764011,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764014,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764020,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764021,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764027,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764028,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764036,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764037,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764039,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764040,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764041,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764042,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764043,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764044,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -IN-PIN,764045,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -IN-PIN,764051,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -IN-PIN,764052,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -IN-PIN,764056,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764057,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764058,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764061,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764062,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,764070,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764071,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764072,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764073,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764074,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764075,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764076,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764077,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764078,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764081,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,764085,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,764086,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -IN-PIN,764087,PostalCode,Malkangiri,LGD,364,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false -IN-PIN,764088,PostalCode,Nabarangpur,LGD,366,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false -IN-PIN,765002,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765013,PostalCode,Koraput,LGD,363,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false -IN-PIN,765015,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765016,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765017,PostalCode,Gajapati,LGD,353,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false -IN-PIN,765018,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765019,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765020,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765021,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765022,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765023,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765024,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765025,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765026,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765029,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765033,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,765034,PostalCode,Rayagada,LGD,370,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false -IN-PIN,766002,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766003,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766011,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766012,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766013,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766014,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766015,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766016,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766017,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766018,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766019,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766020,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766023,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766026,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766027,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766028,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766029,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766031,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766032,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766036,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766037,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766100,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766101,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766102,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766103,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766104,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -IN-PIN,766105,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -IN-PIN,766106,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -IN-PIN,766107,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -IN-PIN,766108,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -IN-PIN,766110,PostalCode,Kalahandi,LGD,358,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false -IN-PIN,766111,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -IN-PIN,766118,PostalCode,Nuapada,LGD,368,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false -IN-PIN,767002,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767016,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -IN-PIN,767017,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -IN-PIN,767018,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -IN-PIN,767019,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -IN-PIN,767020,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767021,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767022,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767023,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -IN-PIN,767024,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767025,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767026,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767027,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767028,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767029,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767030,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767032,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767033,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767035,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767038,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767039,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767040,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767041,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767045,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -IN-PIN,767046,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767048,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767060,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767061,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767062,PostalCode,Subarnapur,LGD,372,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false -IN-PIN,767065,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767066,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767067,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767068,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,767071,PostalCode,Balangir,LGD,345,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false -IN-PIN,768005,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768006,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768016,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768017,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768024,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768025,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768027,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768029,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768030,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768031,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768032,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768033,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768034,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768035,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768036,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768037,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768038,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768039,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768040,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768042,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768045,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768048,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768049,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768050,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768052,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768053,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768102,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768103,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768104,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768105,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768106,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768107,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768108,PostalCode,Debagada,LGD,351,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false -IN-PIN,768109,PostalCode,Debagada,LGD,351,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false -IN-PIN,768110,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768111,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768112,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768113,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768115,PostalCode,Baragada,LGD,347,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false -IN-PIN,768118,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768119,PostalCode,Debagada,LGD,351,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false -IN-PIN,768121,PostalCode,Debagada,LGD,351,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false -IN-PIN,768200,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768201,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768202,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768204,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768210,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768211,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768212,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768213,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768214,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768215,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768216,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768217,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768219,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768220,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768221,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768222,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768224,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768225,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768226,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768227,PostalCode,Sambalpur,LGD,371,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false -IN-PIN,768228,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,768234,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,769003,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,769004,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,769012,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,769016,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,769042,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,769043,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770002,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770011,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770012,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770013,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770014,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770015,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770016,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770017,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770018,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770019,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770020,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770021,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770022,PostalCode,Jharsuguda,LGD,357,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false -IN-PIN,770023,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770024,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770025,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770031,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770033,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770034,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770035,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770036,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770037,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770038,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770039,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770040,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770041,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770042,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770043,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770044,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770046,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770048,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770051,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770052,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770070,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770072,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770073,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770074,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770075,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,770076,PostalCode,Sundaragada,LGD,373,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false -IN-PIN,781004,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,781017,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,781023,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,781026,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,781028,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781029,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,781030,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781031,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781101,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781102,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781120,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781121,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781122,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781123,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781124,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781126,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781127,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781129,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781131,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,781133,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781134,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781136,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781137,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781138,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781141,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781150,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,781171,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,781301,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781302,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781303,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781304,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781305,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781306,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781307,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781308,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781309,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781310,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781311,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781312,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781313,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781314,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781315,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781316,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781317,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781318,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781319,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781320,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781321,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781325,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781326,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781327,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781328,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781329,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781330,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781333,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781334,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781335,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781337,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781338,PostalCode,Barpeta,LGD,280,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false -IN-PIN,781339,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781340,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781341,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781343,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781344,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781346,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781347,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781348,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781349,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781350,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781351,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781352,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781353,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781354,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781355,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781360,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781364,PostalCode,Tamulpur,LGD,756,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781365,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781366,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781367,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781368,PostalCode,Tamulpur,LGD,756,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781369,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781370,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781371,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781372,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781373,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781374,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781375,PostalCode,Bajali,LGD,739,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false -IN-PIN,781376,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781377,PostalCode,Baksa,LGD,616,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false -IN-PIN,781378,PostalCode,Nalbari,LGD,298,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false -IN-PIN,781380,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781381,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,781382,PostalCode,Kamrup,LGD,291,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false -IN-PIN,782001,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782002,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782003,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782101,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782102,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782103,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782104,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782105,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782106,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782120,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782121,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782122,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782123,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782124,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782125,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782126,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782127,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782128,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782135,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782136,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782137,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782138,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782139,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782140,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782141,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782142,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782143,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782144,PostalCode,Nagaon,LGD,297,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false -IN-PIN,782401,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,782402,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,782403,PostalCode,Kamrup Metro,LGD,618,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false -IN-PIN,782410,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782411,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782412,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782413,PostalCode,Marigaon,LGD,296,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false -IN-PIN,782426,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782427,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782428,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782429,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782435,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782439,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782440,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782441,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782442,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782445,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782446,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782447,PostalCode,Hojai,LGD,709,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false -IN-PIN,782448,PostalCode,West Karbi Anglong,LGD,710,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false -IN-PIN,782450,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782461,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782462,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782470,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782480,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782481,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782482,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782485,PostalCode,West Karbi Anglong,LGD,710,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false -IN-PIN,782486,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,782490,PostalCode,Karbi Anglong,LGD,292,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false -IN-PIN,783101,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783120,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783121,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783123,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783124,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783125,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783126,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783127,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783128,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783129,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783130,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783131,PostalCode,South Salmara Mancachar,LGD,707,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false -IN-PIN,783132,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783133,PostalCode,Goalpara,LGD,287,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false -IN-PIN,783134,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783135,PostalCode,South Salmara Mancachar,LGD,707,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false -IN-PIN,783136,PostalCode,South Salmara Mancachar,LGD,707,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false -IN-PIN,783301,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783323,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783324,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783325,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783330,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783331,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783333,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783334,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783335,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783336,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783337,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783339,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783345,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783346,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783347,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783348,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783349,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783350,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783354,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783360,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783361,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783369,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783370,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783371,PostalCode,Dhubri,LGD,285,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false -IN-PIN,783372,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783373,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783375,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783376,PostalCode,Kokrajhar,LGD,294,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false -IN-PIN,783380,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783381,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783382,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783383,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783384,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783385,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783386,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783388,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783389,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783390,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783391,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783392,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,783393,PostalCode,Chirang,LGD,612,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false -IN-PIN,783394,PostalCode,Bongaigaon,LGD,281,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false -IN-PIN,784001,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784010,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784025,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784026,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784027,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784028,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784101,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784102,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784103,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784104,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784105,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784110,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784111,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784112,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784113,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784114,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784115,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784116,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784117,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784125,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784144,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784145,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784146,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784147,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784148,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784149,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784150,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784153,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784154,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784160,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,784161,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,784163,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,784164,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,784165,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,784166,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784167,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784168,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784169,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784170,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784171,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784172,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784173,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784174,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784175,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784176,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784177,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784178,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784179,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784180,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784182,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784184,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784189,PostalCode,Biswanath,LGD,705,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false -IN-PIN,784190,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784501,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784502,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784504,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784505,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784506,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784507,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784508,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784509,PostalCode,Sonitpur,LGD,301,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false -IN-PIN,784510,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784513,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784514,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784521,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784522,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784523,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784524,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784525,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,784526,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784527,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784528,PostalCode,Udalguri,LGD,617,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false -IN-PIN,784529,PostalCode,Darrang,LGD,283,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false -IN-PIN,785001,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785004,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785006,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785007,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785008,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785009,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785010,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785013,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785014,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785015,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785101,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785102,PostalCode,Majuli,LGD,706,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false -IN-PIN,785104,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785105,PostalCode,Majuli,LGD,706,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false -IN-PIN,785106,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785107,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785108,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785110,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785111,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785112,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785601,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785602,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785603,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785609,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785610,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785611,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785612,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785613,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785614,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785615,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785616,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785618,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785619,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785621,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785622,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785625,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785626,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785630,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785631,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785632,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785633,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785634,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785635,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785636,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785640,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785661,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785662,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785663,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785664,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785665,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785666,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785667,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785669,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785670,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785671,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785672,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785673,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785674,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785675,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,785676,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,785680,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785681,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785682,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785683,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785684,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785685,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785686,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785687,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785688,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785689,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785690,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785691,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785692,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785693,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785696,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785697,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785698,PostalCode,Charaideo,LGD,708,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false -IN-PIN,785699,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785700,PostalCode,Jorhat,LGD,290,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false -IN-PIN,785701,PostalCode,Sivasagar,LGD,300,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false -IN-PIN,785702,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785703,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,785705,PostalCode,Golaghat,LGD,288,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false -IN-PIN,786001,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786002,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786003,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786004,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786006,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786007,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786008,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786010,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786012,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786101,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786103,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786125,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786126,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786145,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786146,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786147,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786148,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786150,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786151,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786152,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786153,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786154,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786155,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786156,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786157,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786158,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786159,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786160,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786170,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786171,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786173,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786174,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786179,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786181,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786182,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786183,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786184,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786187,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786188,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786189,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786190,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786191,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786192,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786601,PostalCode,Tinsukia,LGD,302,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false -IN-PIN,786602,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786610,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786611,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786612,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786613,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786614,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786621,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,786692,PostalCode,Dibrugarh,LGD,286,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false -IN-PIN,787023,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,787026,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787031,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,787032,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,787033,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,787034,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787035,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787051,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,787052,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,787053,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787054,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,787055,PostalCode,Lakhimpur,LGD,295,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false -IN-PIN,787056,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787057,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787058,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787059,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787060,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787061,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,787110,PostalCode,Dhemaji,LGD,284,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false -IN-PIN,788001,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788002,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788003,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788004,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788005,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788006,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788007,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788009,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788010,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788011,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788013,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788015,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788025,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788026,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788030,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788031,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788098,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788099,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788101,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788102,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788103,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788104,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788106,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788107,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788108,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -IN-PIN,788111,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788112,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788113,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788114,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788115,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788116,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788117,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788119,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788120,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788121,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788123,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788126,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788127,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788150,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788152,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788155,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788156,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788160,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788161,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788162,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788163,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788164,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788165,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788166,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788168,PostalCode,Hailakandi,LGD,289,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false -IN-PIN,788701,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788709,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788710,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788711,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788712,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788713,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788722,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788723,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788724,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788725,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788726,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788727,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788728,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788734,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788735,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788736,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788737,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788738,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788781,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788802,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788804,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788805,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788806,PostalCode,Sribhumi,LGD,293,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false -IN-PIN,788815,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788816,PostalCode,Cachar,LGD,282,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false -IN-PIN,788818,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -IN-PIN,788819,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -IN-PIN,788820,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -IN-PIN,788830,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -IN-PIN,788831,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -IN-PIN,788832,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -IN-PIN,788931,PostalCode,Dima Hasao,LGD,299,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false -IN-PIN,790001,PostalCode,Bichom,LGD,787,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -IN-PIN,790002,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -IN-PIN,790003,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -IN-PIN,790101,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -IN-PIN,790102,PostalCode,Bichom,LGD,787,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -IN-PIN,790103,PostalCode,Pakke Kessang,LGD,723,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false -IN-PIN,790104,PostalCode,Tawang,LGD,238,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -IN-PIN,790105,PostalCode,Tawang,LGD,238,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -IN-PIN,790106,PostalCode,Tawang,LGD,238,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false -IN-PIN,790114,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -IN-PIN,790116,PostalCode,West Kameng,LGD,242,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false -IN-PIN,791001,PostalCode,Siang,LGD,679,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -IN-PIN,791002,PostalCode,Upper Siang,LGD,240,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -IN-PIN,791003,PostalCode,Shi Yomi,LGD,725,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false -IN-PIN,791101,PostalCode,Leparada,LGD,724,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false -IN-PIN,791102,PostalCode,East Siang,LGD,232,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -IN-PIN,791103,PostalCode,Siang,LGD,679,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false -IN-PIN,791104,PostalCode,East Siang,LGD,232,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -IN-PIN,791105,PostalCode,Upper Siang,LGD,240,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false -IN-PIN,791110,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -IN-PIN,791111,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -IN-PIN,791112,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -IN-PIN,791113,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -IN-PIN,791114,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -IN-PIN,791118,PostalCode,Kra Daadi,LGD,677,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false -IN-PIN,791119,PostalCode,Keyi Panyor,LGD,786,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false -IN-PIN,791120,PostalCode,Kamle,LGD,718,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false -IN-PIN,791121,PostalCode,East Siang,LGD,232,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false -IN-PIN,791122,PostalCode,Upper Subansiri,LGD,241,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false -IN-PIN,791123,PostalCode,Papum Pare,LGD,237,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false -IN-PIN,792001,PostalCode,Lohit,LGD,234,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false -IN-PIN,792056,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -IN-PIN,792101,PostalCode,Dibang Valley,LGD,230,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false -IN-PIN,792102,PostalCode,Lohit,LGD,234,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false -IN-PIN,792103,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -IN-PIN,792104,PostalCode,Anjaw,LGD,628,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false -IN-PIN,792105,PostalCode,Namsai,LGD,678,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false -IN-PIN,792110,PostalCode,Lower Dibang Valley,LGD,235,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false -IN-PIN,792111,PostalCode,Lohit,LGD,234,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false -IN-PIN,792120,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -IN-PIN,792121,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -IN-PIN,792122,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -IN-PIN,792123,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -IN-PIN,792124,PostalCode,Changlang,LGD,229,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false -IN-PIN,792129,PostalCode,Tirap,LGD,239,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -IN-PIN,792130,PostalCode,Tirap,LGD,239,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false -IN-PIN,792131,PostalCode,Longding,LGD,666,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false -IN-PIN,793001,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793003,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793004,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793005,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793006,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793009,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793010,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793012,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793014,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793015,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793017,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793018,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793019,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793021,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793022,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793101,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,793102,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,793103,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,793104,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,793105,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,793106,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793107,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793108,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793109,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793110,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793112,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793113,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793114,PostalCode,South West Khasi Hills,LGD,658,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false -IN-PIN,793115,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793116,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,793119,PostalCode,Eastern West Khasi Hills,LGD,740,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false -IN-PIN,793120,PostalCode,Eastern West Khasi Hills,LGD,740,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false -IN-PIN,793121,PostalCode,East Khasi Hills,LGD,274,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false -IN-PIN,793122,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,793123,PostalCode,Ri Bhoi,LGD,276,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false -IN-PIN,793126,PostalCode,South West Khasi Hills,LGD,658,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false -IN-PIN,793150,PostalCode,West Jaintia Hills,LGD,275,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false -IN-PIN,793151,PostalCode,West Jaintia Hills,LGD,275,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false -IN-PIN,793160,PostalCode,East Jaintia Hills,LGD,657,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false -IN-PIN,793161,PostalCode,West Jaintia Hills,LGD,275,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false -IN-PIN,793200,PostalCode,East Jaintia Hills,LGD,657,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false -IN-PIN,793210,PostalCode,East Jaintia Hills,LGD,657,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false -IN-PIN,794001,PostalCode,South West Garo Hills,LGD,663,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false -IN-PIN,794002,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794003,PostalCode,West Garo Hills,LGD,278,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -IN-PIN,794004,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794005,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794101,PostalCode,West Garo Hills,LGD,278,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false -IN-PIN,794102,PostalCode,South Garo Hills,LGD,277,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -IN-PIN,794103,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794104,PostalCode,South Garo Hills,LGD,277,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -IN-PIN,794105,PostalCode,South Garo Hills,LGD,277,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -IN-PIN,794106,PostalCode,South West Garo Hills,LGD,663,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false -IN-PIN,794108,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794109,PostalCode,South Garo Hills,LGD,277,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false -IN-PIN,794110,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794111,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794112,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794113,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794114,PostalCode,East Garo Hills,LGD,273,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false -IN-PIN,794115,PostalCode,North Garo Hills,LGD,656,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false -IN-PIN,795001,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795002,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795003,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795004,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -IN-PIN,795005,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795006,PostalCode,Pherzawl,LGD,715,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false -IN-PIN,795007,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -IN-PIN,795008,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795009,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -IN-PIN,795010,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795101,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -IN-PIN,795102,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -IN-PIN,795103,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -IN-PIN,795104,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -IN-PIN,795105,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -IN-PIN,795106,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -IN-PIN,795107,PostalCode,Kangpokpi,LGD,712,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -IN-PIN,795112,PostalCode,Kangpokpi,LGD,712,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -IN-PIN,795113,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -IN-PIN,795114,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795115,PostalCode,Jiribam,LGD,713,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false -IN-PIN,795116,PostalCode,Jiribam,LGD,713,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false -IN-PIN,795117,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -IN-PIN,795118,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795125,PostalCode,Tamenglong,LGD,258,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false -IN-PIN,795126,PostalCode,Bishnupur,LGD,252,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false -IN-PIN,795127,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -IN-PIN,795128,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -IN-PIN,795129,PostalCode,Kangpokpi,LGD,712,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false -IN-PIN,795130,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795131,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -IN-PIN,795132,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -IN-PIN,795134,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -IN-PIN,795135,PostalCode,Chandel,LGD,253,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false -IN-PIN,795136,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -IN-PIN,795138,PostalCode,Thoubal,LGD,259,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false -IN-PIN,795139,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -IN-PIN,795140,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795141,PostalCode,Noney,LGD,714,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false -IN-PIN,795142,PostalCode,Kamjong,LGD,717,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false -IN-PIN,795144,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -IN-PIN,795145,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795146,PostalCode,Imphal West,LGD,256,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false -IN-PIN,795147,PostalCode,Noney,LGD,714,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false -IN-PIN,795148,PostalCode,Thoubal,LGD,259,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false -IN-PIN,795149,PostalCode,Imphal East,LGD,255,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false -IN-PIN,795150,PostalCode,Senapati,LGD,257,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false -IN-PIN,795158,PostalCode,Churachandpur,LGD,254,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false -IN-PIN,795159,PostalCode,Noney,LGD,714,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false -IN-PIN,796001,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796005,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796015,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796017,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796070,PostalCode,Kolasib,LGD,263,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false -IN-PIN,796081,PostalCode,Kolasib,LGD,263,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false -IN-PIN,796091,PostalCode,Kolasib,LGD,263,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false -IN-PIN,796101,PostalCode,Kolasib,LGD,263,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false -IN-PIN,796111,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796161,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796181,PostalCode,Serchhip,LGD,268,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false -IN-PIN,796184,PostalCode,Serchhip,LGD,268,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false -IN-PIN,796186,PostalCode,Hnahthial,LGD,726,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -IN-PIN,796190,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796261,PostalCode,Saitual,LGD,727,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -IN-PIN,796290,PostalCode,Saitual,LGD,727,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -IN-PIN,796291,PostalCode,Champhai,LGD,262,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false -IN-PIN,796310,PostalCode,Khawzawl,LGD,728,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -IN-PIN,796320,PostalCode,Champhai,LGD,262,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false -IN-PIN,796321,PostalCode,Champhai,LGD,262,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false -IN-PIN,796370,PostalCode,Khawzawl,LGD,728,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -IN-PIN,796410,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796421,PostalCode,Aizawl,LGD,261,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false -IN-PIN,796431,PostalCode,Mamit,LGD,266,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false -IN-PIN,796441,PostalCode,Mamit,LGD,266,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false -IN-PIN,796470,PostalCode,Mamit,LGD,266,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false -IN-PIN,796501,PostalCode,Mamit,LGD,266,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false -IN-PIN,796571,PostalCode,Hnahthial,LGD,726,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -IN-PIN,796691,PostalCode,Lunglei,LGD,265,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false -IN-PIN,796701,PostalCode,Hnahthial,LGD,726,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false -IN-PIN,796751,PostalCode,Lunglei,LGD,265,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false -IN-PIN,796770,PostalCode,Lawngtlai,LGD,264,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false -IN-PIN,796891,PostalCode,Lawngtlai,LGD,264,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false -IN-PIN,796901,PostalCode,Lawngtlai,LGD,264,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false -IN-PIN,797002,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -IN-PIN,797003,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -IN-PIN,797004,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -IN-PIN,797006,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -IN-PIN,797099,PostalCode,Wokha,LGD,250,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -IN-PIN,797101,PostalCode,Peren,LGD,613,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -IN-PIN,797103,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,797104,PostalCode,Phek,LGD,248,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -IN-PIN,797105,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -IN-PIN,797106,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,797107,PostalCode,Phek,LGD,248,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -IN-PIN,797108,PostalCode,Phek,LGD,248,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false -IN-PIN,797109,PostalCode,Tseminyu,LGD,757,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,797110,PostalCode,Peren,LGD,613,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false -IN-PIN,797111,PostalCode,Wokha,LGD,250,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false -IN-PIN,797112,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,797113,PostalCode,Dimapur,LGD,244,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false -IN-PIN,797114,PostalCode,Meluri,LGD,788,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,797115,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,797116,PostalCode,Chumoukedima,LGD,758,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,797118,PostalCode,Dimapur,LGD,244,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false -IN-PIN,797120,PostalCode,Kohima,LGD,245,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false -IN-PIN,798601,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -IN-PIN,798602,PostalCode,Mon,LGD,247,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -IN-PIN,798603,PostalCode,Mon,LGD,247,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -IN-PIN,798604,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -IN-PIN,798607,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -IN-PIN,798611,PostalCode,Kiphire,LGD,614,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false -IN-PIN,798612,PostalCode,Noklak,LGD,736,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,798613,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -IN-PIN,798614,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -IN-PIN,798615,PostalCode,Mokokchung,LGD,246,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false -IN-PIN,798616,PostalCode,Tuensang,LGD,249,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false -IN-PIN,798618,PostalCode,Longleng,LGD,615,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false -IN-PIN,798620,PostalCode,Zunheboto,LGD,251,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -IN-PIN,798621,PostalCode,Mon,LGD,247,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false -IN-PIN,798622,PostalCode,Longleng,LGD,615,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false -IN-PIN,798625,PostalCode,Longleng,LGD,615,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false -IN-PIN,798626,PostalCode,Noklak,LGD,736,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,798627,PostalCode,Zunheboto,LGD,251,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false -IN-PIN,798628,PostalCode,Shamator,LGD,765,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false -IN-PIN,799001,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799002,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799003,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799004,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799006,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799008,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799009,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799011,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -IN-PIN,799012,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799013,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -IN-PIN,799015,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799035,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799045,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799101,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -IN-PIN,799102,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -IN-PIN,799103,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -IN-PIN,799104,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799105,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -IN-PIN,799113,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -IN-PIN,799114,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -IN-PIN,799115,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -IN-PIN,799120,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -IN-PIN,799125,PostalCode,Gomati,LGD,654,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false -IN-PIN,799130,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -IN-PIN,799131,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -IN-PIN,799132,PostalCode,Sepahijala,LGD,653,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false -IN-PIN,799141,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799142,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799143,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799144,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799145,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799150,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799153,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799155,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799156,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799157,PostalCode,South Tripura,LGD,271,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false -IN-PIN,799201,PostalCode,Khowai,LGD,652,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false -IN-PIN,799203,PostalCode,Khowai,LGD,652,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false -IN-PIN,799204,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799205,PostalCode,Khowai,LGD,652,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false -IN-PIN,799207,PostalCode,Khowai,LGD,652,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false -IN-PIN,799210,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799211,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799212,PostalCode,West Tripura,LGD,272,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false -IN-PIN,799250,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799251,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799253,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799254,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799256,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799260,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799261,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799262,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799263,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -IN-PIN,799264,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -IN-PIN,799266,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799269,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799270,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799271,PostalCode,North Tripura,LGD,270,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false -IN-PIN,799273,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799275,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799277,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -IN-PIN,799278,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799279,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -IN-PIN,799280,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -IN-PIN,799281,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -IN-PIN,799282,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -IN-PIN,799284,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799285,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799286,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799287,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799288,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799289,PostalCode,Dhalai,LGD,269,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false -IN-PIN,799290,PostalCode,Unakoti,LGD,655,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false -IN-PIN,800001,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800002,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800003,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800004,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800005,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800006,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800007,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800008,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800009,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800011,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800012,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800013,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800014,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800016,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800019,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800020,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800025,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800026,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800027,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800030,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,800033,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801102,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801103,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801104,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801108,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801109,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801110,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801111,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801112,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801113,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801301,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,801302,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,801303,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,801304,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,801305,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,801306,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,801307,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,801503,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,801505,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,802101,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802102,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802111,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802112,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802114,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802115,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802116,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802117,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802118,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802119,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802120,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802122,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802123,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802125,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802126,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802127,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802129,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802130,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802131,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802132,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,802133,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802134,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802135,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802136,PostalCode,Buxar,LGD,194,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false -IN-PIN,802152,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802154,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802155,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802156,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802157,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802158,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802159,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802160,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802161,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802162,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802163,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802164,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802165,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802166,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802183,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802201,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802202,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802203,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802204,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802205,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802206,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802207,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802208,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802209,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802210,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802211,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802212,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802213,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802214,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802215,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802216,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802217,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802218,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802219,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802220,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802221,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802222,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802223,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802226,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,802301,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802302,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802311,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802312,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802313,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802314,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802316,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802351,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,802352,PostalCode,Bhojpur,LGD,193,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false -IN-PIN,803101,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803107,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803108,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803109,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803110,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803111,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803113,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803114,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803115,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803116,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803117,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803118,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803119,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803120,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803201,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803202,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803203,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803211,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803212,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803213,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803214,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803215,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803216,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,803221,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803301,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803302,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803303,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803306,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,803307,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,804401,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -IN-PIN,804402,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -IN-PIN,804403,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,804404,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804405,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,804406,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804407,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804408,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804417,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804418,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804419,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -IN-PIN,804421,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -IN-PIN,804422,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804423,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -IN-PIN,804425,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804429,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804432,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,804451,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,804452,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,804453,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,804454,PostalCode,Jehanabad,LGD,199,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false -IN-PIN,805101,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805102,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805103,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805104,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805105,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,805106,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805107,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805108,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805109,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805110,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805111,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805112,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805113,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805114,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805121,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805122,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805123,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805124,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805125,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805126,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805127,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805128,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,805129,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,805130,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805131,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,805132,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,805141,PostalCode,Nawada,LGD,210,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false -IN-PIN,811101,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,811102,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,811103,PostalCode,Sheikhpura,LGD,219,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false -IN-PIN,811104,PostalCode,Nalanda,LGD,209,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false -IN-PIN,811105,PostalCode,Sheikhpura,LGD,219,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false -IN-PIN,811106,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -IN-PIN,811107,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -IN-PIN,811112,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -IN-PIN,811201,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -IN-PIN,811202,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -IN-PIN,811211,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -IN-PIN,811212,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -IN-PIN,811213,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -IN-PIN,811214,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -IN-PIN,811301,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811302,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -IN-PIN,811303,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811304,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -IN-PIN,811305,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811307,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811308,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811309,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -IN-PIN,811311,PostalCode,Lakhisarai,LGD,204,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false -IN-PIN,811312,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811313,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811314,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811315,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811316,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,811317,PostalCode,Jamui,LGD,198,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false -IN-PIN,812001,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,812002,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,812003,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,812004,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,812005,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,812006,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,812007,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,813101,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813102,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813103,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813104,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813105,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813106,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813107,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813108,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813109,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813110,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813201,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -IN-PIN,813202,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813203,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,813204,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,813205,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813206,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,813207,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813209,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,813210,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813211,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813212,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,813213,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,813214,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,813221,PostalCode,Munger,LGD,207,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false -IN-PIN,813222,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,814101,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814103,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814110,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814111,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814112,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814114,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814115,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814116,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814119,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814120,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814131,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,814133,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -IN-PIN,814141,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814145,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814146,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814147,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -IN-PIN,814148,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814149,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814150,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814151,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814152,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814153,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814155,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -IN-PIN,814156,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -IN-PIN,814157,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,814158,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,814160,PostalCode,Godda,LGD,330,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false -IN-PIN,814166,PostalCode,Jamtara,LGD,333,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false -IN-PIN,815301,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815302,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815311,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815312,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815313,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815314,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815315,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815316,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815317,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815318,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,815351,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,815353,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,815354,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,815355,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,815357,PostalCode,Deoghar,LGD,324,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false -IN-PIN,815359,PostalCode,Jamtara,LGD,333,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false -IN-PIN,816101,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -IN-PIN,816104,PostalCode,Pakur,LGD,337,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -IN-PIN,816106,PostalCode,Pakur,LGD,337,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -IN-PIN,816107,PostalCode,Pakur,LGD,337,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -IN-PIN,816108,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -IN-PIN,816109,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -IN-PIN,816110,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -IN-PIN,816117,PostalCode,Pakur,LGD,337,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false -IN-PIN,816118,PostalCode,Dumka,LGD,326,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false -IN-PIN,816120,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -IN-PIN,816129,PostalCode,Sahebganj,LGD,340,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false -IN-PIN,821015,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821101,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821102,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821103,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821104,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821105,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821106,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821107,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821108,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821109,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821110,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821111,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821112,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821113,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821114,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821115,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821301,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821304,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821305,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821306,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821307,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821308,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821309,PostalCode,Kaimur (Bhabua),LGD,200,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false -IN-PIN,821310,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821311,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,821312,PostalCode,Rohtas,LGD,215,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false -IN-PIN,822102,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,822110,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822111,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822112,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822113,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -IN-PIN,822114,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822115,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822116,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -IN-PIN,822117,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -IN-PIN,822118,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -IN-PIN,822119,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,822120,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822121,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822122,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -IN-PIN,822123,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,822124,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822125,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822126,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,822128,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822129,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822131,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -IN-PIN,822132,PostalCode,Palamu,LGD,338,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false -IN-PIN,822133,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,822134,PostalCode,Garhwa,LGD,328,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false -IN-PIN,823001,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,823002,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,823003,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,823311,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824101,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824103,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824111,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824112,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824113,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824114,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824115,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824118,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824120,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824121,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824122,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824123,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824124,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824125,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824126,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824127,PostalCode,Arwal,LGD,611,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false -IN-PIN,824129,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824143,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824201,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824202,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824203,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824205,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824206,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824207,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824208,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824209,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824211,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824217,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824219,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824220,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824221,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824231,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824232,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824233,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824236,PostalCode,Gaya,LGD,196,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false -IN-PIN,824301,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824302,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824303,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,824304,PostalCode,Aurangabad,LGD,189,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false -IN-PIN,825101,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,825102,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,825103,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,825106,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825108,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825109,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825132,PostalCode,Koderma,LGD,334,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -IN-PIN,825167,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,825301,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825302,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825303,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825311,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825312,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,825313,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825314,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,825315,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825316,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,825318,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825319,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825320,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825321,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,825322,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825323,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825324,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825325,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,825326,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,825329,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825330,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825336,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825401,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,825402,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825403,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,825404,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,825405,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825406,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825407,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825408,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,825409,PostalCode,Koderma,LGD,334,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -IN-PIN,825410,PostalCode,Koderma,LGD,334,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -IN-PIN,825411,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825412,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825413,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,825414,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,825415,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,825418,PostalCode,Giridih,LGD,329,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false -IN-PIN,825421,PostalCode,Koderma,LGD,334,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false -IN-PIN,826001,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,826004,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,826006,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,827010,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,827013,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,827014,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,827302,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,828101,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828103,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828104,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828105,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828109,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828113,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828114,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828116,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828121,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828125,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828128,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828129,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828134,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,828142,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828201,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828202,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828203,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828204,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828205,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828206,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828207,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828303,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,828304,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828305,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828306,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828307,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828401,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828402,PostalCode,Dhanbad,LGD,325,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false -IN-PIN,828403,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,828404,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829101,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,829102,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829103,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829104,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829105,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829106,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,829107,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829108,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829109,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,829110,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829111,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829112,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829113,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829114,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829116,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829117,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829118,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829119,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829121,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829122,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829123,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829124,PostalCode,Hazaribagh,LGD,332,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false -IN-PIN,829125,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829126,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829127,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829128,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829132,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829133,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829134,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829135,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829143,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829144,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829149,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,829150,PostalCode,Ramgarh,LGD,607,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false -IN-PIN,829201,PostalCode,Chatra,LGD,323,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false -IN-PIN,829202,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,829203,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,829204,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,829205,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -IN-PIN,829206,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,829207,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,829208,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -IN-PIN,829209,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -IN-PIN,829210,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -IN-PIN,829301,PostalCode,Bokaro,LGD,322,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false -IN-PIN,831001,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,831002,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,831004,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,831013,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,832101,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,832104,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,832105,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,832108,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,832112,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,832113,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,832301,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,832302,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,832303,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,832304,PostalCode,East Singhbum,LGD,327,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false -IN-PIN,832401,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,832402,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,832403,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,832404,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,833101,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,833102,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833103,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833104,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,833105,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833201,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833203,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833204,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833214,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833215,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833216,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,833217,PostalCode,West Singhbhum,LGD,343,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false -IN-PIN,833219,PostalCode,Saraikela Kharsawan,LGD,341,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false -IN-PIN,834001,PostalCode,Ranchi,LGD,339,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false -IN-PIN,835201,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -IN-PIN,835206,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -IN-PIN,835207,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -IN-PIN,835210,PostalCode,Khunti,LGD,606,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false -IN-PIN,835211,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -IN-PIN,835212,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -IN-PIN,835213,PostalCode,Lohardaga,LGD,336,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -IN-PIN,835218,PostalCode,Latehar,LGD,335,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false -IN-PIN,835220,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -IN-PIN,835223,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -IN-PIN,835226,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -IN-PIN,835228,PostalCode,Simdega,LGD,342,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false -IN-PIN,835232,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -IN-PIN,835302,PostalCode,Lohardaga,LGD,336,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false -IN-PIN,835325,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -IN-PIN,835824,PostalCode,Gumla,LGD,331,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false -IN-PIN,841101,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,841201,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841202,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841203,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841204,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841205,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841206,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841207,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841208,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841209,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841210,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841211,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841212,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841213,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841214,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841215,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841216,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841217,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841218,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841219,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841220,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841221,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841222,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841224,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841225,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841226,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841227,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841228,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841231,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841232,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841233,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841234,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841235,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841236,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841237,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841238,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841239,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841240,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841241,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841243,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841245,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841286,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841301,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841302,PostalCode,Patna,LGD,212,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false -IN-PIN,841305,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841311,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841312,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841313,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841316,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841401,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841402,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841403,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841404,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841405,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841406,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841408,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841409,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841410,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841411,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841412,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841414,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841415,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841417,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841418,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841419,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841421,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841422,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841423,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841424,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841425,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841426,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841427,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841428,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841434,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841435,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841436,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841437,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841438,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841440,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841441,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841442,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841443,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841446,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841447,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841460,PostalCode,Saran,LGD,218,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false -IN-PIN,841501,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841502,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841503,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841504,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,841508,PostalCode,Gopalganj,LGD,197,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false -IN-PIN,841509,PostalCode,Siwan,LGD,222,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false -IN-PIN,842001,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,842002,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,842003,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,842004,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,842006,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843101,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843102,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843103,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843104,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843105,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843106,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843107,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843108,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843109,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843111,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843112,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843113,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843114,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,843115,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843116,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843117,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843118,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843119,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843120,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843121,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843122,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843123,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843124,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843125,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843126,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843127,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843128,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843129,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843131,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -IN-PIN,843132,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843301,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -IN-PIN,843302,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843311,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843312,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843313,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843314,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843315,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843316,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -IN-PIN,843317,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843318,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843319,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843320,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843321,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843322,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843323,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843324,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843325,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -IN-PIN,843326,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843327,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -IN-PIN,843328,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,843329,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -IN-PIN,843330,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843331,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843332,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843333,PostalCode,Sitamarhi,LGD,221,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false -IN-PIN,843334,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -IN-PIN,843335,PostalCode,Sheohar,LGD,220,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false -IN-PIN,843360,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,844101,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844102,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844111,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844112,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,844113,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844114,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844118,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,844120,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,844121,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844122,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844124,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844127,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,844128,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844502,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844503,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844504,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844505,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844506,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844508,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,844509,PostalCode,Vaishali,LGD,224,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false -IN-PIN,845101,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845103,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845104,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845105,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845106,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845107,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845301,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845302,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845303,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845304,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845305,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845306,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845307,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845401,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845402,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845411,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845412,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845413,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845415,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845416,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845417,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845418,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845419,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845420,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845422,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845424,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845425,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845426,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845428,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845430,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845432,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845433,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845434,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845435,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845436,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845437,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845438,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845439,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845441,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845449,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845450,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845451,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845452,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845453,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845454,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845455,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,845456,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845457,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845458,PostalCode,Purbi Champaran,LGD,213,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false -IN-PIN,845459,PostalCode,Pashchim Champaran,LGD,211,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false -IN-PIN,846001,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,846002,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,846003,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,846004,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,846005,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,846006,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,846007,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,846009,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,846010,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847101,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847102,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847103,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847104,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847105,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847106,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847107,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847108,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847109,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847115,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847121,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847122,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847123,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847201,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847202,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847203,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847204,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847211,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847212,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847213,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847214,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847215,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847222,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847223,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847224,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847225,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847226,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847227,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847228,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847229,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847230,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847231,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847232,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847233,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847234,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847235,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847236,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847238,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847239,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847240,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847301,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847302,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847303,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847304,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847305,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847306,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847307,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847308,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847337,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847401,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847402,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847403,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847404,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847405,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847407,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847408,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847409,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847410,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847411,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847421,PostalCode,Madhubani,LGD,206,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false -IN-PIN,847422,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847423,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847424,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847427,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847428,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847429,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,847451,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,847452,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,848101,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848102,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848103,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848104,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848113,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848114,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848115,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848117,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848121,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,848122,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848125,PostalCode,Muzaffarpur,LGD,208,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false -IN-PIN,848127,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848129,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848130,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848131,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848132,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848133,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848134,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848160,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848201,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,848202,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,848203,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,848204,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,848205,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848206,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848207,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848208,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848209,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848210,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848211,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848213,PostalCode,Darbhanga,LGD,195,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false -IN-PIN,848216,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848236,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848301,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848302,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848501,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848502,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848503,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848504,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848505,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,848506,PostalCode,Samastipur,LGD,217,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false -IN-PIN,851101,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851111,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851112,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851113,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851116,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851117,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851118,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851120,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851121,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851126,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851127,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851128,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851129,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851130,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851131,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851132,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851133,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851134,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851135,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851201,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,851202,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,851203,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,851204,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,851205,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,851206,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,851210,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851211,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851214,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,851216,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,851217,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,851218,PostalCode,Begusarai,LGD,191,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false -IN-PIN,852101,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852105,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852106,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852107,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852108,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852109,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852110,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852111,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852112,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852113,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852114,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852115,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852116,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852121,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852122,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852123,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852124,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852125,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852126,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852127,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852128,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852129,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852130,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852131,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852132,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852133,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852134,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852137,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852138,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852139,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852161,PostalCode,Khagaria,LGD,202,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false -IN-PIN,852202,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852212,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852213,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852214,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852215,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852216,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852217,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,852218,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,852219,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852220,PostalCode,Madhepura,LGD,205,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false -IN-PIN,852221,PostalCode,Saharsa,LGD,216,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false -IN-PIN,853201,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,853202,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,853203,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,853204,PostalCode,Banka,LGD,190,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false -IN-PIN,853205,PostalCode,Bhagalpur,LGD,192,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false -IN-PIN,854101,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854102,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854103,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854104,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854105,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854106,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854107,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854108,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854110,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854112,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854113,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854114,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854115,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854116,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854117,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854201,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854202,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854203,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854204,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854205,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854301,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854304,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854305,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854306,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854311,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854312,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854315,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854316,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854317,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,854318,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854325,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854326,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854327,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854329,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854330,PostalCode,Purnia,LGD,214,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false -IN-PIN,854331,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854332,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854333,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854334,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854335,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854336,PostalCode,Araria,LGD,188,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false -IN-PIN,854338,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,854339,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,854340,PostalCode,Supaul,LGD,223,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false -IN-PIN,855101,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,855102,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,855105,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,855106,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -IN-PIN,855107,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -IN-PIN,855108,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -IN-PIN,855113,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,855114,PostalCode,Katihar,LGD,201,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false -IN-PIN,855115,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -IN-PIN,855116,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false -IN-PIN,855117,PostalCode,Kishanganj,LGD,203,District,,02Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false +code_scheme,area_code,area_level,area_name,parent_scheme,parent_code,parent_level,census_2011_code,snapshot_date,source_url,latitude,longitude,point_method,bbox_west,bbox_south,bbox_east,bbox_north,geometry_source,boundary_vintage,has_polygon,same_as +ISO-3166-1,IN,Country,India,,,,,03Sep2026,static,23.382088,79.485000,aggregate:State,68.177512,6.752783,97.412897,37.088342,SOI_States,2023-12-11,false, +LGD,35,State,Andaman And Nicobar Islands,ISO-3166-1,IN,Country,35,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,12.603196,92.829514,centroid,92.195893,6.752783,94.267398,13.677059,SOI_States,2023-12-11,true, +LGD,28,State,Andhra Pradesh,ISO-3166-1,IN,Country,28,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,15.753511,79.962484,centroid,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,true, +LGD,12,State,Arunachal Pradesh,ISO-3166-1,IN,Country,12,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,28.035268,94.673960,centroid,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,true, +LGD,18,State,Assam,ISO-3166-1,IN,Country,18,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,26.355278,92.827110,centroid,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,true, +LGD,10,State,Bihar,ISO-3166-1,IN,Country,10,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,25.678945,85.609012,centroid,83.320216,24.286006,88.293796,27.521777,SOI_States,2023-12-11,true, +LGD,4,State,Chandigarh,ISO-3166-1,IN,Country,4,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_States,2023-12-11,true, +LGD,22,State,Chhattisgarh,ISO-3166-1,IN,Country,22,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,21.265915,82.041059,centroid,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,true, +LGD,7,State,Delhi,ISO-3166-1,IN,Country,7,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,28.643370,77.115437,centroid,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,true, +LGD,30,State,Goa,ISO-3166-1,IN,Country,30,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,15.365280,74.049474,centroid,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,true, +LGD,24,State,Gujarat,ISO-3166-1,IN,Country,24,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,22.692625,71.595166,centroid,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,true, +LGD,6,State,Haryana,ISO-3166-1,IN,Country,6,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,29.197675,76.340342,centroid,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,true, +LGD,2,State,Himachal Pradesh,ISO-3166-1,IN,Country,2,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,31.925300,77.248411,centroid,75.594593,30.377336,79.008917,33.256426,SOI_States,2023-12-11,true, +LGD,1,State,Jammu And Kashmir,ISO-3166-1,IN,Country,1,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,33.675618,74.859285,centroid,73.396060,32.276005,76.779413,35.130068,SOI_States,2023-12-11,true, +LGD,20,State,Jharkhand,ISO-3166-1,IN,Country,20,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,23.656374,85.564266,centroid,83.329346,21.970129,87.962825,25.349181,SOI_States,2023-12-11,true, +LGD,29,State,Karnataka,ISO-3166-1,IN,Country,29,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,14.710573,76.167282,centroid,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,true, +LGD,32,State,Kerala,ISO-3166-1,IN,Country,32,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,10.452100,76.407182,centroid,74.864337,8.293018,77.412396,12.795535,SOI_States,2023-12-11,true, +LGD,37,State,Ladakh,ISO-3166-1,IN,Country,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,34.948731,76.794070,centroid,72.512762,32.335694,80.345084,37.088342,SOI_States,2023-12-11,true, +LGD,31,State,Lakshadweep,ISO-3166-1,IN,Country,31,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_States,2023-12-11,true, +LGD,23,State,Madhya Pradesh,ISO-3166-1,IN,Country,23,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,23.538142,78.289776,centroid,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,true, +LGD,27,State,Maharashtra,ISO-3166-1,IN,Country,27,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,19.451683,76.107454,centroid,72.641991,15.606085,80.897684,22.030269,SOI_States,2023-12-11,true, +LGD,14,State,Manipur,ISO-3166-1,IN,Country,14,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,24.733858,93.878817,centroid,92.969434,23.832848,94.744890,25.692090,SOI_States,2023-12-11,true, +LGD,17,State,Meghalaya,ISO-3166-1,IN,Country,17,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,25.535419,91.278401,centroid,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,true, +LGD,15,State,Mizoram,ISO-3166-1,IN,Country,15,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,23.306959,92.831811,centroid,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,true, +LGD,13,State,Nagaland,ISO-3166-1,IN,Country,13,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,26.062153,94.466308,centroid,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,true, +LGD,21,State,Odisha,ISO-3166-1,IN,Country,21,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,20.511652,84.426842,centroid,81.388378,17.812450,87.486135,22.567507,SOI_States,2023-12-11,true, +LGD,34,State,Puducherry,ISO-3166-1,IN,Country,34,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,10.933465,79.802983,centroid,75.526556,10.827383,82.310616,16.763695,SOI_States,2023-12-11,true, +LGD,3,State,Punjab,ISO-3166-1,IN,Country,3,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,30.842128,75.415888,centroid,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,true, +LGD,8,State,Rajasthan,ISO-3166-1,IN,Country,8,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,26.584176,73.849855,centroid,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,true, +LGD,11,State,Sikkim,ISO-3166-1,IN,Country,11,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,27.570188,88.473019,centroid,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,true, +LGD,33,State,Tamil Nadu,ISO-3166-1,IN,Country,33,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,11.015873,78.407996,centroid,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,true, +LGD,36,State,Telangana,ISO-3166-1,IN,Country,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,17.800653,79.009116,centroid,77.235761,15.836003,81.322641,19.916807,SOI_States,2023-12-11,true, +LGD,38,State,The Dadra And Nagar Haveli And Daman And Diu,ISO-3166-1,IN,Country,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,20.191077,73.058434,interior_grid,70.870788,20.047018,73.218192,20.771437,SOI_States,2023-12-11,true, +LGD,16,State,Tripura,ISO-3166-1,IN,Country,16,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,23.745620,91.740747,centroid,91.149198,22.938351,92.332057,24.531867,SOI_States,2023-12-11,true, +LGD,5,State,Uttarakhand,ISO-3166-1,IN,Country,5,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,30.156322,79.207366,centroid,77.572316,28.722831,81.046605,31.462080,SOI_States,2023-12-11,true, +LGD,9,State,Uttar Pradesh,ISO-3166-1,IN,Country,9,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,26.923320,80.565958,centroid,77.083948,23.870110,84.634660,30.406276,SOI_States,2023-12-11,true, +LGD,19,State,West Bengal,ISO-3166-1,IN,Country,19,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z,23.808568,87.988173,centroid,85.819673,21.527082,89.882602,27.221067,SOI_States,2023-12-11,true, +ISO-3166-2,IN-AN,State,Andaman And Nicobar Islands,ISO-3166-1,IN,Country,,03Sep2026,static,12.603196,92.829514,centroid,92.195893,6.752783,94.267398,13.677059,SOI_States,2023-12-11,true,LGD/35/State +ISO-3166-2,IN-AP,State,Andhra Pradesh,ISO-3166-1,IN,Country,,03Sep2026,static,15.753511,79.962484,centroid,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,true,LGD/28/State +ISO-3166-2,IN-AR,State,Arunachal Pradesh,ISO-3166-1,IN,Country,,03Sep2026,static,28.035268,94.673960,centroid,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,true,LGD/12/State +ISO-3166-2,IN-AS,State,Assam,ISO-3166-1,IN,Country,,03Sep2026,static,26.355278,92.827110,centroid,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,true,LGD/18/State +ISO-3166-2,IN-BR,State,Bihar,ISO-3166-1,IN,Country,,03Sep2026,static,25.678945,85.609012,centroid,83.320216,24.286006,88.293796,27.521777,SOI_States,2023-12-11,true,LGD/10/State +ISO-3166-2,IN-CG,State,Chhattisgarh,ISO-3166-1,IN,Country,,03Sep2026,static,21.265915,82.041059,centroid,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,true,LGD/22/State +ISO-3166-2,IN-CH,State,Chandigarh,ISO-3166-1,IN,Country,,03Sep2026,static,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_States,2023-12-11,true,LGD/4/State +ISO-3166-2,IN-DH,State,The Dadra And Nagar Haveli And Daman And Diu,ISO-3166-1,IN,Country,,03Sep2026,static,20.191077,73.058434,interior_grid,70.870788,20.047018,73.218192,20.771437,SOI_States,2023-12-11,true,LGD/38/State +ISO-3166-2,IN-DL,State,Delhi,ISO-3166-1,IN,Country,,03Sep2026,static,28.643370,77.115437,centroid,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,true,LGD/7/State +ISO-3166-2,IN-GA,State,Goa,ISO-3166-1,IN,Country,,03Sep2026,static,15.365280,74.049474,centroid,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,true,LGD/30/State +ISO-3166-2,IN-GJ,State,Gujarat,ISO-3166-1,IN,Country,,03Sep2026,static,22.692625,71.595166,centroid,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,true,LGD/24/State +ISO-3166-2,IN-HP,State,Himachal Pradesh,ISO-3166-1,IN,Country,,03Sep2026,static,31.925300,77.248411,centroid,75.594593,30.377336,79.008917,33.256426,SOI_States,2023-12-11,true,LGD/2/State +ISO-3166-2,IN-HR,State,Haryana,ISO-3166-1,IN,Country,,03Sep2026,static,29.197675,76.340342,centroid,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,true,LGD/6/State +ISO-3166-2,IN-JH,State,Jharkhand,ISO-3166-1,IN,Country,,03Sep2026,static,23.656374,85.564266,centroid,83.329346,21.970129,87.962825,25.349181,SOI_States,2023-12-11,true,LGD/20/State +ISO-3166-2,IN-JK,State,Jammu And Kashmir,ISO-3166-1,IN,Country,,03Sep2026,static,33.675618,74.859285,centroid,73.396060,32.276005,76.779413,35.130068,SOI_States,2023-12-11,true,LGD/1/State +ISO-3166-2,IN-KA,State,Karnataka,ISO-3166-1,IN,Country,,03Sep2026,static,14.710573,76.167282,centroid,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,true,LGD/29/State +ISO-3166-2,IN-KL,State,Kerala,ISO-3166-1,IN,Country,,03Sep2026,static,10.452100,76.407182,centroid,74.864337,8.293018,77.412396,12.795535,SOI_States,2023-12-11,true,LGD/32/State +ISO-3166-2,IN-LA,State,Ladakh,ISO-3166-1,IN,Country,,03Sep2026,static,34.948731,76.794070,centroid,72.512762,32.335694,80.345084,37.088342,SOI_States,2023-12-11,true,LGD/37/State +ISO-3166-2,IN-LD,State,Lakshadweep,ISO-3166-1,IN,Country,,03Sep2026,static,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_States,2023-12-11,true,LGD/31/State +ISO-3166-2,IN-MH,State,Maharashtra,ISO-3166-1,IN,Country,,03Sep2026,static,19.451683,76.107454,centroid,72.641991,15.606085,80.897684,22.030269,SOI_States,2023-12-11,true,LGD/27/State +ISO-3166-2,IN-ML,State,Meghalaya,ISO-3166-1,IN,Country,,03Sep2026,static,25.535419,91.278401,centroid,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,true,LGD/17/State +ISO-3166-2,IN-MN,State,Manipur,ISO-3166-1,IN,Country,,03Sep2026,static,24.733858,93.878817,centroid,92.969434,23.832848,94.744890,25.692090,SOI_States,2023-12-11,true,LGD/14/State +ISO-3166-2,IN-MP,State,Madhya Pradesh,ISO-3166-1,IN,Country,,03Sep2026,static,23.538142,78.289776,centroid,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,true,LGD/23/State +ISO-3166-2,IN-MZ,State,Mizoram,ISO-3166-1,IN,Country,,03Sep2026,static,23.306959,92.831811,centroid,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,true,LGD/15/State +ISO-3166-2,IN-NL,State,Nagaland,ISO-3166-1,IN,Country,,03Sep2026,static,26.062153,94.466308,centroid,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,true,LGD/13/State +ISO-3166-2,IN-OD,State,Odisha,ISO-3166-1,IN,Country,,03Sep2026,static,20.511652,84.426842,centroid,81.388378,17.812450,87.486135,22.567507,SOI_States,2023-12-11,true,LGD/21/State +ISO-3166-2,IN-PB,State,Punjab,ISO-3166-1,IN,Country,,03Sep2026,static,30.842128,75.415888,centroid,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,true,LGD/3/State +ISO-3166-2,IN-PY,State,Puducherry,ISO-3166-1,IN,Country,,03Sep2026,static,10.933465,79.802983,centroid,75.526556,10.827383,82.310616,16.763695,SOI_States,2023-12-11,true,LGD/34/State +ISO-3166-2,IN-RJ,State,Rajasthan,ISO-3166-1,IN,Country,,03Sep2026,static,26.584176,73.849855,centroid,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,true,LGD/8/State +ISO-3166-2,IN-SK,State,Sikkim,ISO-3166-1,IN,Country,,03Sep2026,static,27.570188,88.473019,centroid,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,true,LGD/11/State +ISO-3166-2,IN-TN,State,Tamil Nadu,ISO-3166-1,IN,Country,,03Sep2026,static,11.015873,78.407996,centroid,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,true,LGD/33/State +ISO-3166-2,IN-TR,State,Tripura,ISO-3166-1,IN,Country,,03Sep2026,static,23.745620,91.740747,centroid,91.149198,22.938351,92.332057,24.531867,SOI_States,2023-12-11,true,LGD/16/State +ISO-3166-2,IN-TS,State,Telangana,ISO-3166-1,IN,Country,,03Sep2026,static,17.800653,79.009116,centroid,77.235761,15.836003,81.322641,19.916807,SOI_States,2023-12-11,true,LGD/36/State +ISO-3166-2,IN-UK,State,Uttarakhand,ISO-3166-1,IN,Country,,03Sep2026,static,30.156322,79.207366,centroid,77.572316,28.722831,81.046605,31.462080,SOI_States,2023-12-11,true,LGD/5/State +ISO-3166-2,IN-UP,State,Uttar Pradesh,ISO-3166-1,IN,Country,,03Sep2026,static,26.923320,80.565958,centroid,77.083948,23.870110,84.634660,30.406276,SOI_States,2023-12-11,true,LGD/9/State +ISO-3166-2,IN-WB,State,West Bengal,ISO-3166-1,IN,Country,,03Sep2026,static,23.808568,87.988173,centroid,85.819673,21.527082,89.882602,27.221067,SOI_States,2023-12-11,true,LGD/19/State +ISO-3166-2,IN-CT,State,Chhattisgarh,ISO-3166-1,IN,Country,,03Sep2026,static,21.265915,82.041059,centroid,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,true,ISO-3166-2/IN-CG/State +ISO-3166-2,IN-DD,State,The Dadra And Nagar Haveli And Daman And Diu,ISO-3166-1,IN,Country,,03Sep2026,static,20.191077,73.058434,interior_grid,70.870788,20.047018,73.218192,20.771437,SOI_States,2023-12-11,true,ISO-3166-2/IN-DH/State +ISO-3166-2,IN-DN,State,The Dadra And Nagar Haveli And Daman And Diu,ISO-3166-1,IN,Country,,03Sep2026,static,20.191077,73.058434,interior_grid,70.870788,20.047018,73.218192,20.771437,SOI_States,2023-12-11,true,ISO-3166-2/IN-DH/State +ISO-3166-2,IN-OR,State,Odisha,ISO-3166-1,IN,Country,,03Sep2026,static,20.511652,84.426842,centroid,81.388378,17.812450,87.486135,22.567507,SOI_States,2023-12-11,true,ISO-3166-2/IN-OD/State +ISO-3166-2,IN-TG,State,Telangana,ISO-3166-1,IN,Country,,03Sep2026,static,17.800653,79.009116,centroid,77.235761,15.836003,81.322641,19.916807,SOI_States,2023-12-11,true,ISO-3166-2/IN-TS/State +ISO-3166-2,IN-UL,State,Uttarakhand,ISO-3166-1,IN,Country,,03Sep2026,static,30.156322,79.207366,centroid,77.572316,28.722831,81.046605,31.462080,SOI_States,2023-12-11,true,ISO-3166-2/IN-UK/State +ISO-3166-2,IN-UT,State,Uttarakhand,ISO-3166-1,IN,Country,,03Sep2026,static,30.156322,79.207366,centroid,77.572316,28.722831,81.046605,31.462080,SOI_States,2023-12-11,true,ISO-3166-2/IN-UK/State +LGD,603,District,Nicobars,LGD,35,State,638,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,7.024826,93.799023,centroid,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,true, +LGD,632,District,North And Middle Andaman,LGD,35,State,639,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.842528,92.870475,centroid,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,true, +LGD,602,District,South Andamans,LGD,35,State,640,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.523693,92.648491,centroid,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,true, +LGD,745,District,Alluri Sitharama Raju,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,744,District,Anakapalli,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,502,District,Ananthapuramu,LGD,28,State,553,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.493043,77.566974,centroid,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,true, +LGD,753,District,Annamayya,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,750,District,Bapatla,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,503,District,Chittoor,LGD,28,State,554,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.464938,79.005997,centroid,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,true, +LGD,747,District,Dr. B.R. Ambedkar Konaseema,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,505,District,East Godavari,LGD,28,State,545,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.272008,81.893276,centroid,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,true, +LGD,748,District,Eluru,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,506,District,Guntur,LGD,28,State,548,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.293106,80.078833,centroid,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,true, +LGD,746,District,Kakinada,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,510,District,Krishna,LGD,28,State,547,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.555707,80.797994,centroid,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,true, +LGD,511,District,Kurnool,LGD,28,State,552,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.535569,78.012995,centroid,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,true, +LGD,790,District,Markapuram,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,755,District,Nandyal,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,749,District,Ntr,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,751,District,Palnadu,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,743,District,Parvathipuram Manyam,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,791,District,Polavaram,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,517,District,Prakasam,LGD,28,State,549,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.616202,79.515203,centroid,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,true, +LGD,519,District,Srikakulam,LGD,28,State,542,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.597701,84.022731,centroid,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,true, +LGD,515,District,Sri Potti Sriramulu Nellore,LGD,28,State,550,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.418363,79.738935,centroid,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,true, +LGD,754,District,Sri Sathya Sai,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,752,District,Tirupati,LGD,28,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,520,District,Visakhapatnam,LGD,28,State,544,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.893416,82.693925,centroid,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,true, +LGD,521,District,Vizianagaram,LGD,28,State,543,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.472878,83.385198,centroid,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,true, +LGD,523,District,West Godavari,LGD,28,State,546,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.931401,81.387360,centroid,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,true, +LGD,504,District,Y.S.R. Kadapa,LGD,28,State,551,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.463753,78.780374,centroid,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,true, +LGD,628,District,Anjaw,LGD,12,State,260,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.066616,96.856247,centroid,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,true, +LGD,787,District,Bichom,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,229,District,Changlang,LGD,12,State,253,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.369957,96.353040,centroid,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,true, +LGD,230,District,Dibang Valley,LGD,12,State,257,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.868333,95.909961,centroid,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,true, +LGD,231,District,East Kameng,LGD,12,State,247,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.587861,92.917506,centroid,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,true, +LGD,232,District,East Siang,LGD,12,State,251,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.048218,95.354000,centroid,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,true, +LGD,718,District,Kamle,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.741518,94.078176,centroid,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,true, +LGD,786,District,Keyi Panyor,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,677,District,Kra Daadi,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.017789,93.672960,centroid,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,true, +LGD,233,District,Kurung Kumey,LGD,12,State,256,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.002616,93.206931,centroid,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,true, +LGD,724,District,Leparada,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.925491,94.716086,centroid,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,true, +LGD,234,District,Lohit,LGD,12,State,259,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.929436,96.300479,centroid,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,true, +LGD,666,District,Longding,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.855201,95.327659,centroid,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,true, +LGD,235,District,Lower Dibang Valley,LGD,12,State,258,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.254737,95.821628,centroid,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,true, +LGD,719,District,Lower Siang,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.775244,94.694459,centroid,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,true, +LGD,236,District,Lower Subansiri,LGD,12,State,255,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.588340,93.776522,centroid,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,true, +LGD,678,District,Namsai,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.701176,96.043183,centroid,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,true, +LGD,723,District,Pakke Kessang,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.105402,93.035255,centroid,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,true, +LGD,237,District,Papum Pare,LGD,12,State,248,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.270137,93.596281,centroid,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,true, +LGD,725,District,Shi Yomi,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.676965,94.260983,centroid,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,true, +LGD,679,District,Siang,LGD,12,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.404385,94.808912,centroid,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,true, +LGD,238,District,Tawang,LGD,12,State,245,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.662208,91.965169,centroid,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,true, +LGD,239,District,Tirap,LGD,12,State,254,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.024225,95.543181,centroid,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,true, +LGD,240,District,Upper Siang,LGD,12,State,252,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.832949,94.915294,centroid,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,true, +LGD,241,District,Upper Subansiri,LGD,12,State,249,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.289938,93.929551,centroid,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,true, +LGD,242,District,West Kameng,LGD,12,State,246,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.291857,92.393051,centroid,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,true, +LGD,243,District,West Siang,LGD,12,State,250,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.159942,94.613450,interior_grid,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,true, +LGD,739,District,Bajali,LGD,18,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +LGD,616,District,Baksa,LGD,18,State,324,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.660208,91.351220,centroid,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,true, +LGD,280,District,Barpeta,LGD,18,State,303,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.341730,91.003652,centroid,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,true, +LGD,705,District,Biswanath,LGD,18,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.812104,93.312825,centroid,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,true, +LGD,281,District,Bongaigaon,LGD,18,State,319,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.354045,90.614044,centroid,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,true, +LGD,282,District,Cachar,LGD,18,State,316,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.812469,92.854835,centroid,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,true, +LGD,708,District,Charaideo,LGD,18,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.067765,95.059768,centroid,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,true, +LGD,612,District,Chirang,LGD,18,State,320,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.659673,90.595862,centroid,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,true, +LGD,283,District,Darrang,LGD,18,State,325,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.447690,92.029452,centroid,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,true, +LGD,284,District,Dhemaji,LGD,18,State,308,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.589777,94.774961,centroid,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,true, +LGD,285,District,Dhubri,LGD,18,State,301,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.142595,90.042012,interior_grid,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,true, +LGD,286,District,Dibrugarh,LGD,18,State,310,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.366986,95.053106,centroid,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,true, +LGD,299,District,Dima Hasao,LGD,18,State,315,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.377940,93.030966,centroid,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,true, +LGD,287,District,Goalpara,LGD,18,State,302,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.050242,90.607466,centroid,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,true, +LGD,288,District,Golaghat,LGD,18,State,313,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.443087,93.831353,centroid,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,true, +LGD,289,District,Hailakandi,LGD,18,State,318,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.497097,92.587787,centroid,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,true, +LGD,709,District,Hojai,LGD,18,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.978201,92.979926,centroid,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,true, +LGD,290,District,Jorhat,LGD,18,State,312,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.695491,94.276417,centroid,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,true, +LGD,291,District,Kamrup,LGD,18,State,321,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.100380,91.416295,centroid,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,true, +LGD,618,District,Kamrup Metro,LGD,18,State,322,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.128528,91.891940,centroid,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,true, +LGD,292,District,Karbi Anglong,LGD,18,State,314,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.156857,93.404795,centroid,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,true, +LGD,294,District,Kokrajhar,LGD,18,State,300,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.492770,90.118799,centroid,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,true, +LGD,295,District,Lakhimpur,LGD,18,State,307,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.174006,94.140707,centroid,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,true, +LGD,706,District,Majuli,LGD,18,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.938190,94.171745,centroid,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,true, +LGD,296,District,Marigaon,LGD,18,State,304,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.281812,92.284050,centroid,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,true, +LGD,297,District,Nagaon,LGD,18,State,305,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.362398,92.753571,centroid,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,true, +LGD,298,District,Nalbari,LGD,18,State,323,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.370536,91.382421,centroid,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,true, +LGD,300,District,Sivasagar,LGD,18,State,311,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.970450,94.664944,centroid,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,true, +LGD,301,District,Sonitpur,LGD,18,State,306,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.758534,92.651006,centroid,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,true, +LGD,707,District,South Salmara Mancachar,LGD,18,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.778073,89.931723,centroid,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,true, +LGD,293,District,Sribhumi,LGD,18,State,317,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.579503,92.379052,centroid,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,true, +LGD,756,District,Tamulpur,LGD,18,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +LGD,302,District,Tinsukia,LGD,18,State,309,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.579952,95.619579,centroid,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,true, +LGD,617,District,Udalguri,LGD,18,State,326,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.730123,92.031407,centroid,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,true, +LGD,710,District,West Karbi Anglong,LGD,18,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.849996,92.532969,centroid,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,true, +LGD,188,District,Araria,LGD,10,State,209,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.198668,87.363318,centroid,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,true, +LGD,611,District,Arwal,LGD,10,State,240,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.163235,84.677455,centroid,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,true, +LGD,189,District,Aurangabad,LGD,10,State,235,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.790895,84.408740,centroid,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,true, +LGD,190,District,Banka,LGD,10,State,225,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.854081,86.837107,centroid,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,true, +LGD,191,District,Begusarai,LGD,10,State,222,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.496664,86.129714,centroid,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,true, +LGD,192,District,Bhagalpur,LGD,10,State,224,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.269569,87.082847,centroid,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,true, +LGD,193,District,Bhojpur,LGD,10,State,231,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.470829,84.542485,centroid,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,true, +LGD,194,District,Buxar,LGD,10,State,232,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.491965,84.099685,centroid,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,true, +LGD,195,District,Darbhanga,LGD,10,State,215,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.084387,86.054245,centroid,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,true, +LGD,196,District,Gaya,LGD,10,State,236,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.696793,84.934254,centroid,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,true, +LGD,197,District,Gopalganj,LGD,10,State,217,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.443845,84.373836,centroid,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,true, +LGD,198,District,Jamui,LGD,10,State,238,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.783624,86.293785,centroid,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,true, +LGD,199,District,Jehanabad,LGD,10,State,239,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.155070,85.016832,centroid,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,true, +LGD,200,District,Kaimur (Bhabua),LGD,10,State,233,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.991849,83.605603,centroid,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,true, +LGD,201,District,Katihar,LGD,10,State,212,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.548653,87.640579,centroid,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,true, +LGD,202,District,Khagaria,LGD,10,State,223,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.511006,86.601532,centroid,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,true, +LGD,203,District,Kishanganj,LGD,10,State,210,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.296361,87.935551,centroid,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,true, +LGD,204,District,Lakhisarai,LGD,10,State,227,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.161234,86.136725,centroid,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,true, +LGD,205,District,Madhepura,LGD,10,State,213,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.822712,86.898913,centroid,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,true, +LGD,206,District,Madhubani,LGD,10,State,207,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.402234,86.221843,centroid,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,true, +LGD,207,District,Munger,LGD,10,State,226,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.210030,86.526055,centroid,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,true, +LGD,208,District,Muzaffarpur,LGD,10,State,216,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.152133,85.328539,centroid,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,true, +LGD,209,District,Nalanda,LGD,10,State,229,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.219052,85.450164,centroid,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,true, +LGD,210,District,Nawada,LGD,10,State,237,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.811001,85.589668,centroid,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,true, +LGD,211,District,Pashchim Champaran,LGD,10,State,203,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.079822,84.338905,centroid,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,true, +LGD,212,District,Patna,LGD,10,State,230,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.455947,85.223570,centroid,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,true, +LGD,213,District,Purbi Champaran,LGD,10,State,204,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.618344,84.921996,centroid,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,true, +LGD,214,District,Purnia,LGD,10,State,211,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.815393,87.405089,centroid,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,true, +LGD,215,District,Rohtas,LGD,10,State,234,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.979822,84.025967,centroid,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,true, +LGD,216,District,Saharsa,LGD,10,State,214,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.814227,86.590738,centroid,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,true, +LGD,217,District,Samastipur,LGD,10,State,221,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.772996,85.865723,centroid,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,true, +LGD,218,District,Saran,LGD,10,State,219,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.905685,84.823193,centroid,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,true, +LGD,219,District,Sheikhpura,LGD,10,State,228,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.123650,85.838344,centroid,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,true, +LGD,220,District,Sheohar,LGD,10,State,205,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.497836,85.301880,centroid,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,true, +LGD,221,District,Sitamarhi,LGD,10,State,206,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.585083,85.552608,centroid,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,true, +LGD,222,District,Siwan,LGD,10,State,218,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.161266,84.386962,centroid,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,true, +LGD,223,District,Supaul,LGD,10,State,208,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.245094,86.808186,centroid,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,true, +LGD,224,District,Vaishali,LGD,10,State,220,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.763071,85.368195,centroid,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,true, +LGD,44,District,Chandigarh,LGD,4,State,55,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.729350,76.780565,centroid,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11,true, +LGD,646,District,Balod,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.741641,81.188372,centroid,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,true, +LGD,644,District,Balodabazar-Bhatapara,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.582031,82.327512,centroid,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,true, +LGD,649,District,Balrampur-Ramanujganj,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.592678,83.501241,centroid,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,true, +LGD,374,District,Bastar,LGD,22,State,414,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.095835,81.867804,centroid,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,true, +LGD,650,District,Bemetara,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.660879,81.469869,centroid,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,true, +LGD,636,District,Bijapur,LGD,22,State,417,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.860867,80.800554,centroid,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,true, +LGD,375,District,Bilaspur,LGD,22,State,406,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.179960,82.115906,centroid,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,true, +LGD,376,District,Dakshin Bastar Dantewada,LGD,22,State,416,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.804749,81.390283,centroid,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,true, +LGD,377,District,Dhamtari,LGD,22,State,412,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.555245,81.808854,centroid,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,true, +LGD,378,District,Durg,LGD,22,State,409,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.220343,81.383275,centroid,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,true, +LGD,645,District,Gariyaband,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.448083,82.235234,centroid,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,true, +LGD,734,District,Gaurela-Pendra-Marwahi,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.804965,81.998854,centroid,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,true, +LGD,379,District,Janjgir-Champa,LGD,22,State,405,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.921350,82.592276,centroid,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,true, +LGD,380,District,Jashpur,LGD,22,State,402,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.801105,83.862511,centroid,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,true, +LGD,382,District,Kabeerdham,LGD,22,State,407,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.092525,81.222508,centroid,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,true, +LGD,759,District,Khairagarh-Chhuikhadan-Gandai,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,643,District,Kondagaon,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.745701,81.664919,centroid,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,true, +LGD,383,District,Korba,LGD,22,State,404,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.534684,82.608204,centroid,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,true, +LGD,384,District,Korea,LGD,22,State,400,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.469802,82.235279,centroid,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,true, +LGD,385,District,Mahasamund,LGD,22,State,411,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.207969,82.608312,centroid,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,true, +LGD,760,District,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,761,District,Mohla-Manpur-Ambagarh Chouki,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,647,District,Mungeli,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.240399,81.730560,centroid,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,true, +LGD,637,District,Narayanpur,LGD,22,State,415,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.570198,81.085072,centroid,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,true, +LGD,386,District,Raigarh,LGD,22,State,403,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.085227,83.303068,centroid,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,true, +LGD,387,District,Raipur,LGD,22,State,410,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.285804,81.820087,centroid,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,true, +LGD,388,District,Rajnandgaon,LGD,22,State,408,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.039397,80.820053,centroid,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,true, +LGD,762,District,Sakti,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,763,District,Sarangarh-Bilaigarh,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,642,District,Sukma,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.272188,81.365650,centroid,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,true, +LGD,648,District,Surajpur,LGD,22,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.401996,82.883600,centroid,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,true, +LGD,389,District,Surguja,LGD,22,State,401,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.928368,83.227178,centroid,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,true, +LGD,381,District,Uttar Bastar Kanker,LGD,22,State,413,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.137568,81.122709,centroid,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,true, +LGD,77,District,Central,LGD,7,State,95,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.681583,77.224161,centroid,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,true, +LGD,796,District,Central North,LGD,7,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,78,District,East,LGD,7,State,93,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.622088,77.304590,centroid,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,true, +LGD,79,District,New Delhi,LGD,7,State,94,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.577155,77.148588,centroid,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,true, +LGD,80,District,North,LGD,7,State,91,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.793505,77.107739,centroid,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,true, +LGD,81,District,North East,LGD,7,State,92,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.722615,77.256547,centroid,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,true, +LGD,82,District,North West,LGD,7,State,90,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.725251,77.043125,centroid,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,true, +LGD,795,District,Old Delhi,LGD,7,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,794,District,Outer North,LGD,7,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,83,District,South,LGD,7,State,98,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.481463,77.190717,centroid,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,true, +LGD,670,District,South East,LGD,7,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.542227,77.272944,centroid,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,true, +LGD,84,District,South West,LGD,7,State,97,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.576241,76.967730,centroid,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,true, +LGD,85,District,West,LGD,7,State,96,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.655426,77.063965,centroid,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,true, +LGD,793,District,Kushavati,LGD,30,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +LGD,551,District,North Goa,LGD,30,State,585,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.549741,73.976654,centroid,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,true, +LGD,552,District,South Goa,LGD,30,State,586,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.200426,74.114554,centroid,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,true, +LGD,438,District,Ahmedabad,LGD,24,State,474,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.756916,72.243635,centroid,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,true, +LGD,439,District,Amreli,LGD,24,State,480,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.425061,71.242250,centroid,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,true, +LGD,440,District,Anand,LGD,24,State,482,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.426788,72.750860,centroid,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,true, +LGD,672,District,Arvalli,LGD,24,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.460770,73.333057,centroid,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,true, +LGD,441,District,Banas Kantha,LGD,24,State,469,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.287309,72.023840,centroid,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,true, +LGD,442,District,Bharuch,LGD,24,State,488,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.781624,72.940813,centroid,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,true, +LGD,443,District,Bhavnagar,LGD,24,State,481,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.567255,71.890807,centroid,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,true, +LGD,676,District,Botad,LGD,24,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.111237,71.675173,centroid,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,true, +LGD,668,District,Chhotaudepur,LGD,24,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.219363,73.873322,centroid,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,true, +LGD,445,District,Dahod,LGD,24,State,485,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.860252,74.112368,centroid,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,true, +LGD,444,District,Dangs,LGD,24,State,489,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.804932,73.700704,centroid,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,true, +LGD,674,District,Devbhumi Dwarka,LGD,24,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.123915,69.460359,centroid,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,true, +LGD,446,District,Gandhinagar,LGD,24,State,473,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.255060,72.691828,centroid,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,true, +LGD,675,District,Gir Somnath,LGD,24,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.904305,70.754896,centroid,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,true, +LGD,447,District,Jamnagar,LGD,24,State,477,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.284992,70.195152,centroid,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,true, +LGD,448,District,Junagadh,LGD,24,State,479,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.322204,70.484799,centroid,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,true, +LGD,449,District,Kachchh,LGD,24,State,468,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.649743,69.939927,centroid,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,true, +LGD,450,District,Kheda,LGD,24,State,483,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.837464,72.950496,centroid,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,true, +LGD,451,District,Mahesana,LGD,24,State,471,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.609492,72.466734,centroid,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,true, +LGD,669,District,Mahisagar,LGD,24,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.187631,73.647054,centroid,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,true, +LGD,673,District,Morbi,LGD,24,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.834967,70.903505,centroid,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,true, +LGD,452,District,Narmada,LGD,24,State,487,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.736946,73.644961,centroid,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,true, +LGD,453,District,Navsari,LGD,24,State,490,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.815302,73.092556,centroid,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,true, +LGD,454,District,Panch Mahals,LGD,24,State,484,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.719962,73.625560,centroid,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,true, +LGD,455,District,Patan,LGD,24,State,470,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.770377,71.758662,centroid,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,true, +LGD,456,District,Porbandar,LGD,24,State,478,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.654830,69.777118,centroid,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,true, +LGD,457,District,Rajkot,LGD,24,State,476,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.025462,70.744479,centroid,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,true, +LGD,458,District,Sabar Kantha,LGD,24,State,472,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.804138,73.036193,centroid,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,true, +LGD,459,District,Surat,LGD,24,State,492,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.268923,73.071114,centroid,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,true, +LGD,460,District,Surendranagar,LGD,24,State,475,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.765832,71.593076,centroid,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,true, +LGD,641,District,Tapi,LGD,24,State,493,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.191623,73.626694,centroid,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,true, +LGD,461,District,Vadodara,LGD,24,State,486,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.248056,73.239088,centroid,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,true, +LGD,462,District,Valsad,LGD,24,State,491,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.418149,73.120123,centroid,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,true, +LGD,789,District,Vav-Tharad,LGD,24,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,58,District,Ambala,LGD,6,State,70,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.328333,76.938819,centroid,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,true, +LGD,59,District,Bhiwani,LGD,6,State,81,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.779986,75.890362,centroid,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,true, +LGD,701,District,Charkhi Dadri,LGD,6,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.576821,76.153473,centroid,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,true, +LGD,60,District,Faridabad,LGD,6,State,88,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.352029,77.342381,centroid,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,true, +LGD,61,District,Fatehabad,LGD,6,State,78,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.568879,75.576977,centroid,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,true, +LGD,62,District,Gurugram,LGD,6,State,86,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.369140,76.939969,centroid,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,true, +LGD,792,District,Hansi,LGD,6,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +LGD,63,District,Hisar,LGD,6,State,80,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.211695,75.822441,centroid,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,true, +LGD,64,District,Jhajjar,LGD,6,State,83,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.604827,76.648173,centroid,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,true, +LGD,65,District,Jind,LGD,6,State,77,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.435165,76.303632,centroid,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,true, +LGD,66,District,Kaithal,LGD,6,State,73,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.811241,76.413852,centroid,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,true, +LGD,67,District,Karnal,LGD,6,State,74,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.688952,76.887790,centroid,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,true, +LGD,68,District,Kurukshetra,LGD,6,State,72,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.038696,76.784940,centroid,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,true, +LGD,69,District,Mahendragarh,LGD,6,State,84,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.171027,76.138339,centroid,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,true, +LGD,604,District,Nuh,LGD,6,State,87,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.985194,77.050196,centroid,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,true, +LGD,619,District,Palwal,LGD,6,State,89,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.062991,77.334914,centroid,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,true, +LGD,70,District,Panchkula,LGD,6,State,69,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.686460,76.977506,centroid,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,true, +LGD,71,District,Panipat,LGD,6,State,75,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.337959,76.928109,centroid,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,true, +LGD,72,District,Rewari,LGD,6,State,85,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.240787,76.536358,centroid,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,true, +LGD,73,District,Rohtak,LGD,6,State,82,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.912077,76.530277,centroid,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,true, +LGD,74,District,Sirsa,LGD,6,State,79,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.615601,74.900793,centroid,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,true, +LGD,75,District,Sonipat,LGD,6,State,76,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.056549,76.874796,centroid,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,true, +LGD,76,District,Yamunanagar,LGD,6,State,71,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.234263,77.302286,centroid,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,true, +LGD,15,District,Bilaspur,LGD,2,State,30,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.370997,76.670218,centroid,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,true, +LGD,16,District,Chamba,LGD,2,State,23,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,32.674760,76.348210,centroid,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,true, +LGD,17,District,Hamirpur,LGD,2,State,28,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.667072,76.525513,centroid,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,true, +LGD,18,District,Kangra,LGD,2,State,24,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,32.108262,76.315594,centroid,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,true, +LGD,19,District,Kinnaur,LGD,2,State,34,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.595321,78.413983,centroid,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,true, +LGD,20,District,Kullu,LGD,2,State,26,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.902180,77.398851,centroid,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,true, +LGD,21,District,Lahaul And Spiti,LGD,2,State,25,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,32.480058,77.616702,centroid,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,true, +LGD,22,District,Mandi,LGD,2,State,27,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.636785,76.991568,centroid,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,true, +LGD,23,District,Shimla,LGD,2,State,33,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.197358,77.632010,centroid,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,true, +LGD,24,District,Sirmaur,LGD,2,State,32,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.666819,77.430921,centroid,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,true, +LGD,25,District,Solan,LGD,2,State,31,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.045294,76.909556,centroid,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,true, +LGD,26,District,Una,LGD,2,State,29,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.579300,76.209866,centroid,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,true, +LGD,1,District,Anantnag,LGD,1,State,14,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.826532,75.324713,centroid,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,true, +LGD,623,District,Bandipora,LGD,1,State,9,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,34.587294,74.876122,centroid,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,true, +LGD,3,District,Baramulla,LGD,1,State,8,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,34.158233,74.302510,centroid,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,true, +LGD,2,District,Budgam,LGD,1,State,2,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.918231,74.634582,centroid,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,true, +LGD,4,District,Doda,LGD,1,State,16,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.093287,75.714680,centroid,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,true, +LGD,626,District,Ganderbal,LGD,1,State,11,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,34.262056,75.032361,centroid,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,true, +LGD,5,District,Jammu,LGD,1,State,21,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,32.804977,74.746861,centroid,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,true, +LGD,7,District,Kathua,LGD,1,State,7,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,32.574591,75.583408,centroid,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,true, +LGD,620,District,Kishtwar,LGD,1,State,18,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.549896,75.971004,centroid,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,true, +LGD,622,District,Kulgam,LGD,1,State,15,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.606434,74.860001,centroid,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,true, +LGD,8,District,Kupwara,LGD,1,State,1,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,34.521364,74.207221,centroid,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,true, +LGD,10,District,Poonch,LGD,1,State,5,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.783995,74.017819,centroid,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,true, +LGD,11,District,Pulwama,LGD,1,State,12,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.940691,75.016857,centroid,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,true, +LGD,12,District,Rajouri,LGD,1,State,6,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.278226,74.380875,centroid,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,true, +LGD,621,District,Ramban,LGD,1,State,17,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.307671,75.189864,centroid,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,true, +LGD,627,District,Reasi,LGD,1,State,20,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.238912,74.831425,centroid,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,true, +LGD,624,District,Samba,LGD,1,State,22,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,32.581686,75.090492,centroid,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,true, +LGD,625,District,Shopian,LGD,1,State,13,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.735213,74.818533,centroid,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,true, +LGD,13,District,Srinagar,LGD,1,State,10,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,34.114653,74.821269,centroid,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,true, +LGD,14,District,Udhampur,LGD,1,State,19,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,32.898827,75.296952,centroid,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,true, +LGD,322,District,Bokaro,LGD,20,State,355,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.694742,85.996538,centroid,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,true, +LGD,323,District,Chatra,LGD,20,State,347,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.164478,84.891481,centroid,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,true, +LGD,324,District,Deoghar,LGD,20,State,350,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.328324,86.740210,centroid,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,true, +LGD,325,District,Dhanbad,LGD,20,State,354,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.826760,86.472253,centroid,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,true, +LGD,326,District,Dumka,LGD,20,State,362,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.319558,87.266417,centroid,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,true, +LGD,327,District,East Singhbum,LGD,20,State,357,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.582489,86.451427,centroid,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,true, +LGD,328,District,Garhwa,LGD,20,State,346,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.103698,83.698491,centroid,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,true, +LGD,329,District,Giridih,LGD,20,State,349,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.293575,86.110998,centroid,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,true, +LGD,330,District,Godda,LGD,20,State,351,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.858838,87.308684,centroid,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,true, +LGD,331,District,Gumla,LGD,20,State,366,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.103200,84.532365,centroid,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,true, +LGD,332,District,Hazaribagh,LGD,20,State,360,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.062077,85.425876,centroid,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,true, +LGD,333,District,Jamtara,LGD,20,State,363,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.975652,86.907467,centroid,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,true, +LGD,606,District,Khunti,LGD,20,State,365,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.994324,85.262599,centroid,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,true, +LGD,334,District,Koderma,LGD,20,State,348,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.500046,85.667996,centroid,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,true, +LGD,335,District,Latehar,LGD,20,State,359,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.716982,84.444799,centroid,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,true, +LGD,336,District,Lohardaga,LGD,20,State,356,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.475720,84.671773,centroid,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,true, +LGD,337,District,Pakur,LGD,20,State,353,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.564154,87.662615,centroid,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,true, +LGD,338,District,Palamu,LGD,20,State,358,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.199754,84.168881,centroid,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,true, +LGD,607,District,Ramgarh,LGD,20,State,361,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.634171,85.564362,centroid,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,true, +LGD,339,District,Ranchi,LGD,20,State,364,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.328674,85.375279,centroid,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,true, +LGD,340,District,Sahebganj,LGD,20,State,352,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.010776,87.678156,centroid,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,true, +LGD,341,District,Saraikela Kharsawan,LGD,20,State,369,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.847376,85.950299,centroid,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,true, +LGD,342,District,Simdega,LGD,20,State,367,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.581800,84.564239,centroid,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,true, +LGD,343,District,West Singhbhum,LGD,20,State,368,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.420670,85.518106,centroid,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,true, +LGD,524,District,Bagalkote,LGD,29,State,556,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.221360,75.625545,centroid,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,true, +LGD,528,District,Ballari,LGD,29,State,565,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.110053,76.532663,centroid,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,true, +LGD,527,District,Belagavi,LGD,29,State,555,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.120633,74.823078,centroid,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,true, +LGD,526,District,Bengaluru Rural,LGD,29,State,583,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.227244,77.574079,centroid,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,true, +LGD,631,District,Bengaluru South,LGD,29,State,584,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.679132,77.335368,centroid,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,true, +LGD,525,District,Bengaluru Urban,LGD,29,State,572,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.951773,77.593709,centroid,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,true, +LGD,529,District,Bidar,LGD,29,State,558,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.952944,77.225064,centroid,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,true, +LGD,531,District,Chamarajanagar,LGD,29,State,578,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.958215,77.097666,centroid,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,true, +LGD,630,District,Chikkaballapura,LGD,29,State,582,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.578012,77.835250,centroid,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,true, +LGD,532,District,Chikkamagaluru,LGD,29,State,570,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.454630,75.690643,centroid,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,true, +LGD,533,District,Chitradurga,LGD,29,State,566,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.168582,76.515192,centroid,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,true, +LGD,534,District,Dakshina Kannada,LGD,29,State,575,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.853124,75.250904,centroid,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,true, +LGD,535,District,Davanagere,LGD,29,State,567,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.408738,75.954074,centroid,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,true, +LGD,536,District,Dharwad,LGD,29,State,562,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.390180,75.152300,centroid,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,true, +LGD,537,District,Gadag,LGD,29,State,561,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.431463,75.665251,centroid,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,true, +LGD,539,District,Hassan,LGD,29,State,574,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.996418,76.107830,centroid,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,true, +LGD,540,District,Haveri,LGD,29,State,564,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.738833,75.416481,centroid,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,true, +LGD,538,District,Kalaburagi,LGD,29,State,579,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.260450,76.868950,centroid,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,true, +LGD,541,District,Kodagu,LGD,29,State,576,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.325015,75.801291,centroid,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,true, +LGD,542,District,Kolar,LGD,29,State,581,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.139716,78.217875,centroid,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,true, +LGD,543,District,Koppal,LGD,29,State,560,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,15.562534,76.221462,centroid,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,true, +LGD,544,District,Mandya,LGD,29,State,573,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.611423,76.797236,centroid,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,true, +LGD,545,District,Mysuru,LGD,29,State,577,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.210442,76.440368,centroid,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,true, +LGD,546,District,Raichur,LGD,29,State,559,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.090678,76.891761,centroid,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,true, +LGD,547,District,Shivamogga,LGD,29,State,568,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.043206,75.220165,centroid,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,true, +LGD,548,District,Tumakuru,LGD,29,State,571,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.521638,76.946204,centroid,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,true, +LGD,549,District,Udupi,LGD,29,State,569,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.498278,74.871960,centroid,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,true, +LGD,550,District,Uttara Kannada,LGD,29,State,563,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.791505,74.619576,centroid,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,true, +LGD,738,District,Vijayanagara,LGD,29,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +LGD,530,District,Vijayapura,LGD,29,State,557,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.794485,75.952820,centroid,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,true, +LGD,635,District,Yadgir,LGD,29,State,580,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.626858,76.912489,centroid,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,true, +LGD,554,District,Alappuzha,LGD,32,State,598,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.428387,76.447041,centroid,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,true, +LGD,555,District,Ernakulam,LGD,32,State,595,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.084494,76.546013,centroid,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,true, +LGD,556,District,Idukki,LGD,32,State,596,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.839668,77.056847,centroid,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,true, +LGD,557,District,Kannur,LGD,32,State,589,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.001100,75.523524,centroid,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,true, +LGD,558,District,Kasaragod,LGD,32,State,588,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.462369,75.151022,centroid,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,true, +LGD,559,District,Kollam,LGD,32,State,600,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,8.962527,76.871728,centroid,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,true, +LGD,560,District,Kottayam,LGD,32,State,597,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.637751,76.650700,centroid,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,true, +LGD,561,District,Kozhikode,LGD,32,State,591,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.485645,75.833309,centroid,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,true, +LGD,562,District,Malappuram,LGD,32,State,592,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.133326,76.154377,centroid,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,true, +LGD,563,District,Palakkad,LGD,32,State,593,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.795647,76.556398,centroid,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,true, +LGD,564,District,Pathanamthitta,LGD,32,State,599,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.284934,76.926426,centroid,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,true, +LGD,565,District,Thiruvananthapuram,LGD,32,State,601,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,8.609470,77.012216,centroid,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,true, +LGD,566,District,Thrissur,LGD,32,State,594,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.471945,76.314555,centroid,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,true, +LGD,567,District,Wayanad,LGD,32,State,590,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.712508,76.097753,centroid,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,true, +LGD,6,District,Kargil,LGD,37,State,4,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,33.902845,76.494643,centroid,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,true, +LGD,9,District,Leh Ladakh,LGD,37,State,3,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,35.043894,76.821315,centroid,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,true, +LGD,553,District,Lakshadweep District,LGD,31,State,587,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.812627,73.677058,centroid,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,true, +LGD,667,District,Agar-Malwa,LGD,23,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.826490,76.071034,centroid,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,true, +LGD,639,District,Alirajpur,LGD,23,State,465,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.314414,74.363886,centroid,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,true, +LGD,390,District,Anuppur,LGD,23,State,461,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.056856,81.682706,centroid,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,true, +LGD,391,District,Ashoknagar,LGD,23,State,459,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.609385,77.875356,centroid,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,true, +LGD,392,District,Balaghat,LGD,23,State,457,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.880796,80.359833,centroid,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,true, +LGD,393,District,Barwani,LGD,23,State,441,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.788217,75.020879,centroid,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,true, +LGD,394,District,Betul,LGD,23,State,447,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.878491,77.871242,centroid,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,true, +LGD,395,District,Bhind,LGD,23,State,420,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.421879,78.721245,centroid,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,true, +LGD,396,District,Bhopal,LGD,23,State,444,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.470159,77.390757,centroid,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,true, +LGD,397,District,Burhanpur,LGD,23,State,467,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.370677,76.369160,centroid,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,true, +LGD,398,District,Chhatarpur,LGD,23,State,425,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.798140,79.665843,centroid,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,true, +LGD,399,District,Chhindwara,LGD,23,State,455,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.122543,78.854128,centroid,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,true, +LGD,400,District,Damoh,LGD,23,State,428,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.812319,79.526831,centroid,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,true, +LGD,401,District,Datia,LGD,23,State,422,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.801368,78.598029,centroid,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,true, +LGD,402,District,Dewas,LGD,23,State,437,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.744198,76.456861,centroid,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,true, +LGD,403,District,Dhar,LGD,23,State,438,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.497955,75.103968,centroid,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,true, +LGD,404,District,Dindori,LGD,23,State,453,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.889989,81.051289,centroid,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,true, +LGD,406,District,Guna,LGD,23,State,458,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.555940,77.198633,centroid,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,true, +LGD,407,District,Gwalior,LGD,23,State,421,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.039596,78.146084,centroid,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,true, +LGD,408,District,Harda,LGD,23,State,448,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.232408,77.123520,centroid,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,true, +LGD,410,District,Indore,LGD,23,State,439,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.713138,75.782221,centroid,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,true, +LGD,411,District,Jabalpur,LGD,23,State,451,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.234003,79.975911,centroid,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,true, +LGD,412,District,Jhabua,LGD,23,State,464,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.892390,74.671552,centroid,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,true, +LGD,413,District,Katni,LGD,23,State,450,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.752838,80.401399,centroid,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,true, +LGD,405,District,Khandwa (East Nimar),LGD,23,State,466,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.935151,76.568398,centroid,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,true, +LGD,414,District,Khargone (West Nimar),LGD,23,State,440,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.918639,75.771495,centroid,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,true, +LGD,784,District,Maihar,LGD,23,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,415,District,Mandla,LGD,23,State,454,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.639254,80.512199,centroid,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,true, +LGD,416,District,Mandsaur,LGD,23,State,433,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.204426,75.405140,centroid,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,true, +LGD,766,District,MAUGANJ,LGD,23,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,417,District,Morena,LGD,23,State,419,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.413015,77.868115,centroid,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,true, +LGD,409,District,Narmadapuram,LGD,23,State,449,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.590666,77.990687,centroid,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,true, +LGD,418,District,Narsimhapur,LGD,23,State,452,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.936237,79.087885,centroid,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,true, +LGD,419,District,Neemuch,LGD,23,State,432,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.590871,75.141734,centroid,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,true, +LGD,722,District,Niwari,LGD,23,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.284792,78.748152,centroid,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,true, +LGD,785,District,Pandhurna,LGD,23,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,420,District,Panna,LGD,23,State,426,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.421056,80.189010,centroid,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,true, +LGD,421,District,Raisen,LGD,23,State,446,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.220061,78.120590,centroid,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,true, +LGD,422,District,Rajgarh,LGD,23,State,442,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.861158,76.732433,centroid,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,true, +LGD,423,District,Ratlam,LGD,23,State,434,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.502339,75.088589,centroid,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,true, +LGD,424,District,Rewa,LGD,23,State,430,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.755316,81.587224,centroid,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,true, +LGD,425,District,Sagar,LGD,23,State,427,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.850043,78.759732,centroid,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,true, +LGD,426,District,Satna,LGD,23,State,429,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.528700,80.830748,centroid,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,true, +LGD,427,District,Sehore,LGD,23,State,445,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.987637,77.127430,centroid,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,true, +LGD,428,District,Seoni,LGD,23,State,456,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.316960,79.689162,centroid,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,true, +LGD,429,District,Shahdol,LGD,23,State,460,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.629442,81.473493,centroid,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,true, +LGD,430,District,Shajapur,LGD,23,State,436,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.383975,76.559497,centroid,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,true, +LGD,431,District,Sheopur,LGD,23,State,418,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.754479,77.007246,centroid,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,true, +LGD,432,District,Shivpuri,LGD,23,State,423,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.365539,77.805373,centroid,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,true, +LGD,433,District,Sidhi,LGD,23,State,462,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.220619,81.834023,centroid,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,true, +LGD,638,District,Singrauli,LGD,23,State,463,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.215913,82.419945,centroid,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,true, +LGD,434,District,Tikamgarh,LGD,23,State,424,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.883196,79.016107,centroid,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,true, +LGD,435,District,Ujjain,LGD,23,State,435,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.330883,75.669034,centroid,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,true, +LGD,436,District,Umaria,LGD,23,State,431,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.562793,80.973190,centroid,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,true, +LGD,437,District,Vidisha,LGD,23,State,443,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.892313,77.813112,centroid,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,true, +LGD,466,District,Ahilyanagar,LGD,27,State,522,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.205391,74.675231,centroid,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,true, +LGD,467,District,Akola,LGD,27,State,501,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.748005,77.056016,centroid,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,true, +LGD,468,District,Amravati,LGD,27,State,503,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.187565,77.570354,centroid,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,true, +LGD,470,District,Beed,LGD,27,State,523,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.946660,75.838225,centroid,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,true, +LGD,471,District,Bhandara,LGD,27,State,506,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.115620,79.763152,centroid,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,true, +LGD,472,District,Buldhana,LGD,27,State,500,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.510807,76.407133,centroid,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,true, +LGD,473,District,Chandrapur,LGD,27,State,509,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.118386,79.440540,centroid,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,true, +LGD,469,District,Chhatrapati Sambhajinagar,LGD,27,State,515,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.027442,75.279761,centroid,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,true, +LGD,488,District,Dharashiv,LGD,27,State,525,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.188746,76.036898,centroid,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,true, +LGD,474,District,Dhule,LGD,27,State,498,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.110370,74.600494,centroid,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,true, +LGD,475,District,Gadchiroli,LGD,27,State,508,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.787912,80.240432,centroid,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,true, +LGD,476,District,Gondia,LGD,27,State,507,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.165306,80.217855,centroid,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,true, +LGD,477,District,Hingoli,LGD,27,State,512,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.637480,77.100455,centroid,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,true, +LGD,478,District,Jalgaon,LGD,27,State,499,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.932545,75.487940,centroid,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,true, +LGD,479,District,Jalna,LGD,27,State,514,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.807495,75.980338,centroid,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,true, +LGD,480,District,Kolhapur,LGD,27,State,530,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.471481,74.158638,centroid,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,true, +LGD,481,District,Latur,LGD,27,State,524,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.373766,76.759511,centroid,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,true, +LGD,482,District,Mumbai,LGD,27,State,519,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.989036,72.838017,centroid,72.792496,18.893405,72.881476,19.053004,SOI_Districts,2023-12-11,true, +LGD,483,District,Mumbai Suburban,LGD,27,State,518,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.131779,72.884497,centroid,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,true, +LGD,484,District,Nagpur,LGD,27,State,505,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.178155,79.085030,centroid,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,true, +LGD,485,District,Nanded,LGD,27,State,511,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.112445,77.617827,centroid,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,true, +LGD,486,District,Nandurbar,LGD,27,State,497,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.550193,74.216834,centroid,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,true, +LGD,487,District,Nashik,LGD,27,State,516,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.259820,74.070699,centroid,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,true, +LGD,665,District,Palghar,LGD,27,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.793763,73.012184,centroid,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,true, +LGD,489,District,Parbhani,LGD,27,State,513,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.268248,76.690859,centroid,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,true, +LGD,490,District,Pune,LGD,27,State,521,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.571118,74.067998,centroid,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,true, +LGD,491,District,Raigad,LGD,27,State,520,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.510062,73.221458,centroid,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,true, +LGD,492,District,Ratnagiri,LGD,27,State,528,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.274418,73.454737,centroid,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,true, +LGD,493,District,Sangli,LGD,27,State,531,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.113762,74.767913,centroid,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,true, +LGD,494,District,Satara,LGD,27,State,527,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.670029,74.172659,centroid,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,true, +LGD,495,District,Sindhudurg,LGD,27,State,529,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.134008,73.737764,centroid,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,true, +LGD,496,District,Solapur,LGD,27,State,526,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.790589,75.483125,centroid,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,true, +LGD,497,District,Thane,LGD,27,State,517,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.361103,73.319543,centroid,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,true, +LGD,498,District,Wardha,LGD,27,State,504,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.797145,78.585883,centroid,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,true, +LGD,499,District,Washim,LGD,27,State,502,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.234103,77.216372,centroid,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,true, +LGD,500,District,Yavatmal,LGD,27,State,510,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.083546,78.161025,centroid,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,true, +LGD,252,District,Bishnupur,LGD,14,State,275,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.535799,93.797905,centroid,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,true, +LGD,253,District,Chandel,LGD,14,State,280,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.124837,94.007495,centroid,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,true, +LGD,254,District,Churachandpur,LGD,14,State,274,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.277193,93.602918,centroid,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,true, +LGD,255,District,Imphal East,LGD,14,State,278,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.832705,94.013173,centroid,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,true, +LGD,256,District,Imphal West,LGD,14,State,277,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.803266,93.872958,centroid,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,true, +LGD,713,District,Jiribam,LGD,14,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.681775,93.152020,centroid,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,true, +LGD,711,District,Kakching,LGD,14,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.427861,93.917808,centroid,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,true, +LGD,717,District,Kamjong,LGD,14,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.824838,94.432038,centroid,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,true, +LGD,712,District,Kangpokpi,LGD,14,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.992920,93.947737,centroid,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,true, +LGD,714,District,Noney,LGD,14,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.677348,93.455938,centroid,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,true, +LGD,715,District,Pherzawl,LGD,14,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.304682,93.220554,centroid,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,true, +LGD,257,District,Senapati,LGD,14,State,272,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.398440,94.124914,centroid,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,true, +LGD,258,District,Tamenglong,LGD,14,State,273,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.053484,93.550469,centroid,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,true, +LGD,716,District,Tengnoupal,LGD,14,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.412591,94.222784,centroid,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,true, +LGD,259,District,Thoubal,LGD,14,State,276,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.615553,94.009519,centroid,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,true, +LGD,260,District,Ukhrul,LGD,14,State,279,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.237716,94.429581,centroid,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,true, +LGD,740,District,Eastern West Khasi Hills,LGD,17,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false, +LGD,273,District,East Garo Hills,LGD,17,State,294,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.618628,90.630370,centroid,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,true, +LGD,657,District,East Jaintia Hills,LGD,17,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.265690,92.463884,centroid,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,true, +LGD,274,District,East Khasi Hills,LGD,17,State,298,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.383453,91.800191,centroid,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,true, +LGD,656,District,North Garo Hills,LGD,17,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.850532,90.665283,centroid,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,true, +LGD,276,District,Ri Bhoi,LGD,17,State,297,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.873612,91.884129,centroid,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,true, +LGD,277,District,South Garo Hills,LGD,17,State,295,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.300548,90.593840,centroid,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,true, +LGD,663,District,South West Garo Hills,LGD,17,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.446276,89.989664,centroid,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,true, +LGD,658,District,South West Khasi Hills,LGD,17,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.312380,91.245827,centroid,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,true, +LGD,278,District,West Garo Hills,LGD,17,State,293,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.641756,90.197735,centroid,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,true, +LGD,275,District,West Jaintia Hills,LGD,17,State,299,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.485083,92.281958,centroid,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,true, +LGD,279,District,West Khasi Hills,LGD,17,State,296,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.598255,91.261737,centroid,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,true, +LGD,261,District,Aizawl,LGD,15,State,283,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.848541,92.890177,centroid,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,true, +LGD,262,District,Champhai,LGD,15,State,284,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.540546,93.231068,centroid,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,true, +LGD,726,District,Hnahthial,LGD,15,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +LGD,728,District,Khawzawl,LGD,15,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +LGD,263,District,Kolasib,LGD,15,State,282,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.141417,92.720432,centroid,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,true, +LGD,264,District,Lawngtlai,LGD,15,State,287,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.432755,92.765933,centroid,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,true, +LGD,265,District,Lunglei,LGD,15,State,286,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.972505,92.720138,centroid,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,true, +LGD,266,District,Mamit,LGD,15,State,281,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.755528,92.463997,centroid,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,true, +LGD,727,District,Saitual,LGD,15,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +LGD,268,District,Serchhip,LGD,15,State,285,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.308820,92.941508,centroid,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,true, +LGD,267,District,Siaha,LGD,15,State,288,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.291740,93.001449,centroid,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,true, +LGD,758,District,Chumoukedima,LGD,13,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,244,District,Dimapur,LGD,13,State,265,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.781128,93.794081,centroid,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,true, +LGD,614,District,Kiphire,LGD,13,State,269,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.842745,94.821768,centroid,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,true, +LGD,245,District,Kohima,LGD,13,State,270,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.771761,94.108881,centroid,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,true, +LGD,615,District,Longleng,LGD,13,State,268,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.552081,94.795531,centroid,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,true, +LGD,788,District,Meluri,LGD,13,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,246,District,Mokokchung,LGD,13,State,262,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.472284,94.528963,centroid,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,true, +LGD,247,District,Mon,LGD,13,State,261,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.677812,95.016718,centroid,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,true, +LGD,764,District,Niuland,LGD,13,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,736,District,Noklak,LGD,13,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,613,District,Peren,LGD,13,State,271,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.508382,93.624084,centroid,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,true, +LGD,248,District,Phek,LGD,13,State,266,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.647194,94.534539,centroid,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,true, +LGD,765,District,Shamator,LGD,13,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,757,District,Tseminyu,LGD,13,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,249,District,Tuensang,LGD,13,State,267,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.166672,94.887560,centroid,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,true, +LGD,250,District,Wokha,LGD,13,State,264,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.188371,94.191816,centroid,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,true, +LGD,251,District,Zunheboto,LGD,13,State,263,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.999722,94.483933,centroid,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,true, +LGD,344,District,Anugola,LGD,21,State,384,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.986355,84.905206,centroid,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,true, +LGD,345,District,Balangir,LGD,21,State,393,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.589427,83.171651,centroid,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,true, +LGD,346,District,Baleshwar,LGD,21,State,377,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.494441,86.906311,centroid,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,true, +LGD,347,District,Baragada,LGD,21,State,370,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.219614,83.349141,centroid,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,true, +LGD,348,District,Bhadrak,LGD,21,State,378,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.983044,86.625018,centroid,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,true, +LGD,349,District,Boudh,LGD,21,State,391,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.644444,84.172873,centroid,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,true, +LGD,351,District,Debagada,LGD,21,State,373,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.467033,84.785302,centroid,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,true, +LGD,352,District,Dhenkanal,LGD,21,State,383,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.826874,85.523896,centroid,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,true, +LGD,353,District,Gajapati,LGD,21,State,389,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.184171,84.161163,centroid,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,true, +LGD,354,District,Ganjam,LGD,21,State,388,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.624456,84.672465,centroid,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,true, +LGD,355,District,Jagatsinghapur,LGD,21,State,380,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.218649,86.335211,centroid,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,true, +LGD,356,District,Jajpur,LGD,21,State,382,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.856145,86.149442,centroid,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,true, +LGD,357,District,Jharsuguda,LGD,21,State,371,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.807224,83.946640,centroid,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,true, +LGD,358,District,Kalahandi,LGD,21,State,395,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.867583,83.107938,centroid,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,true, +LGD,359,District,Kandhamala,LGD,21,State,390,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.128180,84.045937,centroid,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,true, +LGD,350,District,Kataka,LGD,21,State,381,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.453340,85.696462,centroid,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,true, +LGD,360,District,Kendrapada,LGD,21,State,379,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.552578,86.609881,centroid,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,true, +LGD,361,District,Kendujhar,LGD,21,State,375,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.537820,85.702386,centroid,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,true, +LGD,362,District,Khordha,LGD,21,State,386,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.091062,85.514274,centroid,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,true, +LGD,363,District,Koraput,LGD,21,State,398,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.812874,82.719717,centroid,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,true, +LGD,364,District,Malkangiri,LGD,21,State,399,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.257715,81.950493,centroid,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,true, +LGD,365,District,Mayurbhanj,LGD,21,State,376,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.895372,86.408568,centroid,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,true, +LGD,366,District,Nabarangpur,LGD,21,State,397,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.576483,82.334523,centroid,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,true, +LGD,367,District,Nayagada,LGD,21,State,385,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.213177,84.997802,centroid,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,true, +LGD,368,District,Nuapada,LGD,21,State,394,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.466045,82.576879,centroid,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,true, +LGD,369,District,Puri,LGD,21,State,387,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.879081,85.725732,centroid,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,true, +LGD,370,District,Rayagada,LGD,21,State,396,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.363492,83.512441,centroid,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,true, +LGD,371,District,Sambalpur,LGD,21,State,372,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,21.452534,84.273391,centroid,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,true, +LGD,372,District,Subarnapur,LGD,21,State,392,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.930816,83.822370,centroid,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,true, +LGD,373,District,Sundaragada,LGD,21,State,374,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.079904,84.533191,interior_grid:simplified,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,true, +LGD,598,District,Karaikal,LGD,34,State,637,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.933424,79.802948,centroid,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,true, +LGD,600,District,Puducherry,LGD,34,State,635,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.916989,79.766405,centroid,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,true, +LGD,27,District,Amritsar,LGD,3,State,49,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.705642,74.899424,centroid,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,true, +LGD,605,District,Barnala,LGD,3,State,54,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.387784,75.498635,centroid,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,true, +LGD,28,District,Bathinda,LGD,3,State,46,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.183238,75.040269,centroid,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,true, +LGD,29,District,Faridkot,LGD,3,State,45,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.613481,74.777318,centroid,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,true, +LGD,30,District,Fatehgarh Sahib,LGD,3,State,40,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.642697,76.375469,centroid,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,true, +LGD,651,District,Fazilka,LGD,3,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.277026,74.163643,centroid,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,true, +LGD,31,District,Ferozepur,LGD,3,State,43,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.912989,74.703010,centroid,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,true, +LGD,32,District,Gurdaspur,LGD,3,State,35,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.916470,75.291003,centroid,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,true, +LGD,33,District,Hoshiarpur,LGD,3,State,38,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.625016,75.857919,centroid,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,true, +LGD,34,District,Jalandhar,LGD,3,State,37,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.212738,75.565804,centroid,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,true, +LGD,35,District,Kapurthala,LGD,3,State,36,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.354438,75.400042,centroid,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,true, +LGD,36,District,Ludhiana,LGD,3,State,41,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.805395,75.832732,centroid,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,true, +LGD,737,District,Malerkotla,LGD,3,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +LGD,37,District,Mansa,LGD,3,State,47,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.907347,75.438503,centroid,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,true, +LGD,38,District,Moga,LGD,3,State,42,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.761814,75.170324,centroid,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,true, +LGD,662,District,Pathankot,LGD,3,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,32.296307,75.616245,centroid,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,true, +LGD,41,District,Patiala,LGD,3,State,48,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.281721,76.350755,centroid,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,true, +LGD,42,District,Rupnagar,LGD,3,State,51,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.062049,76.487646,centroid,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,true, +LGD,43,District,Sangrur,LGD,3,State,53,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.211970,75.869115,centroid,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,true, +LGD,608,District,S.A.S Nagar,LGD,3,State,52,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.680921,76.739758,centroid,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,true, +LGD,40,District,Shahid Bhagat Singh Nagar,LGD,3,State,39,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.110048,76.154318,centroid,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,true, +LGD,39,District,Sri Muktsar Sahib,LGD,3,State,44,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.299843,74.538399,centroid,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,true, +LGD,609,District,Tarn Taran,LGD,3,State,50,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,31.336494,74.840379,centroid,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,true, +LGD,86,District,Ajmer,LGD,8,State,119,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.233499,74.773091,centroid,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,true, +LGD,87,District,Alwar,LGD,8,State,104,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.590899,76.601627,centroid,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,true, +LGD,775,District,Balotra,LGD,8,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,88,District,Banswara,LGD,8,State,125,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.476390,74.361987,centroid,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,true, +LGD,89,District,Baran,LGD,8,State,128,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.995630,76.747835,centroid,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,true, +LGD,90,District,Barmer,LGD,8,State,115,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.734986,71.474795,centroid,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,true, +LGD,774,District,Beawar,LGD,8,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,91,District,Bharatpur,LGD,8,State,105,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.247765,77.276538,centroid,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,true, +LGD,92,District,Bhilwara,LGD,8,State,122,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.481644,74.726677,centroid,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,true, +LGD,93,District,Bikaner,LGD,8,State,101,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.177209,73.174572,centroid,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,true, +LGD,94,District,Bundi,LGD,8,State,121,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.485609,75.790630,centroid,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,true, +LGD,95,District,Chittorgarh,LGD,8,State,126,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.822240,74.775399,centroid,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,true, +LGD,96,District,Churu,LGD,8,State,102,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.345118,74.696405,centroid,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,true, +LGD,97,District,Dausa,LGD,8,State,109,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.857579,76.510297,centroid,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,true, +LGD,767,District,Deeg,LGD,8,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,98,District,Dholpur,LGD,8,State,106,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.680863,77.702142,centroid,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,true, +LGD,768,District,Didwana-Kuchaman,LGD,8,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,99,District,Dungarpur,LGD,8,State,124,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.731872,73.853138,centroid,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,true, +LGD,100,District,Ganganagar,LGD,8,State,99,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.395945,73.570535,centroid,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,true, +LGD,101,District,Hanumangarh,LGD,8,State,100,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.265979,74.561463,centroid,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,true, +LGD,102,District,Jaipur,LGD,8,State,110,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.976650,75.719841,centroid,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,true, +LGD,103,District,Jaisalmer,LGD,8,State,114,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.075201,70.901037,centroid,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,true, +LGD,104,District,Jalore,LGD,8,State,116,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.099518,72.211683,centroid,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,true, +LGD,105,District,Jhalawar,LGD,8,State,129,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.335986,76.193443,centroid,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,true, +LGD,106,District,Jhunjhunu,LGD,8,State,103,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.092715,75.549656,centroid,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,true, +LGD,107,District,Jodhpur,LGD,8,State,113,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.747773,72.785854,centroid,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,true, +LGD,108,District,Karauli,LGD,8,State,107,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.523079,76.958707,centroid,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,true, +LGD,770,District,Khairthal-Tijara,LGD,8,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,109,District,Kota,LGD,8,State,127,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.109266,76.106084,centroid,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,true, +LGD,782,District,Kotputli-Behror,LGD,8,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,110,District,Nagaur,LGD,8,State,112,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.065964,74.175488,centroid,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,true, +LGD,111,District,Pali,LGD,8,State,118,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.706921,73.519596,centroid,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,true, +LGD,772,District,Phalodi,LGD,8,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,629,District,Pratapgarh,LGD,8,State,131,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.029241,74.650304,centroid,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,true, +LGD,112,District,Rajsamand,LGD,8,State,123,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.227968,73.891708,centroid,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,true, +LGD,777,District,Salumbar,LGD,8,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,113,District,Sawai Madhopur,LGD,8,State,108,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.217244,76.460987,centroid,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,true, +LGD,114,District,Sikar,LGD,8,State,111,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.634011,75.288276,centroid,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,true, +LGD,115,District,Sirohi,LGD,8,State,117,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.761751,72.776047,centroid,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,true, +LGD,116,District,Tonk,LGD,8,State,120,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.148317,75.665959,centroid,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,true, +LGD,117,District,Udaipur,LGD,8,State,130,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.418699,73.689784,centroid,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,true, +LGD,225,District,Gangtok,LGD,11,State,244,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.292057,88.673069,centroid,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,true, +LGD,228,District,Gyalshing,LGD,11,State,242,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.348415,88.175462,centroid,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,true, +LGD,226,District,Mangan,LGD,11,State,241,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.743446,88.528275,centroid,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,true, +LGD,227,District,Namchi,LGD,11,State,243,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.286440,88.384824,centroid,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,true, +LGD,741,District,Pakyong,LGD,11,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +LGD,742,District,Soreng,LGD,11,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +LGD,610,District,Ariyalur,LGD,33,State,616,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.162551,79.242972,centroid,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,true, +LGD,730,District,Chengalpattu,LGD,33,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.582979,79.999171,centroid,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,true, +LGD,568,District,Chennai,LGD,33,State,603,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.100428,80.234893,centroid,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,true, +LGD,569,District,Coimbatore,LGD,33,State,632,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.878062,76.975747,centroid,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,true, +LGD,570,District,Cuddalore,LGD,33,State,617,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.535937,79.450508,centroid,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,true, +LGD,571,District,Dharmapuri,LGD,33,State,630,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.100517,78.193248,centroid,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,true, +LGD,572,District,Dindigul,LGD,33,State,612,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.391669,77.819666,centroid,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,true, +LGD,573,District,Erode,LGD,33,State,610,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.479549,77.380254,centroid,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,true, +LGD,729,District,Kallakurichi,LGD,33,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.803600,79.034514,centroid,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,true, +LGD,574,District,Kancheepuram,LGD,33,State,604,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.832664,79.849732,centroid,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,true, +LGD,575,District,Kanniyakumari,LGD,33,State,629,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,8.308118,77.359590,centroid,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,true, +LGD,576,District,Karur,LGD,33,State,613,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.844322,78.134624,centroid,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,true, +LGD,577,District,Krishnagiri,LGD,33,State,631,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.490160,78.032355,centroid,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,true, +LGD,578,District,Madurai,LGD,33,State,623,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.922720,78.005214,centroid,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,true, +LGD,735,District,Mayiladuthurai,LGD,33,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +LGD,579,District,Nagapattinam,LGD,33,State,618,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.841301,79.737891,centroid,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,true, +LGD,580,District,Namakkal,LGD,33,State,609,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.318778,78.135667,centroid,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,true, +LGD,581,District,Perambalur,LGD,33,State,615,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.275076,78.891647,centroid,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,true, +LGD,582,District,Pudukkottai,LGD,33,State,621,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.360782,78.879400,centroid,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,true, +LGD,583,District,Ramanathapuram,LGD,33,State,626,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.437609,78.685761,centroid,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,true, +LGD,731,District,Ranipet,LGD,33,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.949902,79.461686,centroid,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,true, +LGD,584,District,Salem,LGD,33,State,608,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.690215,78.137146,centroid,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,true, +LGD,585,District,Sivaganga,LGD,33,State,622,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.916501,78.596076,centroid,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,true, +LGD,733,District,Tenkasi,LGD,33,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.092518,77.459924,centroid,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,true, +LGD,586,District,Thanjavur,LGD,33,State,620,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.670696,79.241463,centroid,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,true, +LGD,588,District,Theni,LGD,33,State,624,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.891794,77.438407,centroid,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,true, +LGD,587,District,The Nilgiris,LGD,33,State,611,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,11.453320,76.626115,centroid,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,true, +LGD,589,District,Thiruvallur,LGD,33,State,602,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,13.244045,79.932765,centroid,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,true, +LGD,590,District,Thiruvarur,LGD,33,State,619,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.679399,79.533581,centroid,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,true, +LGD,594,District,Thoothukkudi,LGD,33,State,627,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,8.901449,77.997628,centroid,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,true, +LGD,591,District,Tiruchirappalli,LGD,33,State,614,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.891184,78.570397,centroid,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,true, +LGD,592,District,Tirunelveli,LGD,33,State,628,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,8.575007,77.590408,centroid,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,true, +LGD,732,District,Tirupathur,LGD,33,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.593927,78.655115,centroid,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,true, +LGD,634,District,Tiruppur,LGD,33,State,633,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,10.838977,77.407267,centroid,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,true, +LGD,593,District,Tiruvannamalai,LGD,33,State,606,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.432635,79.166497,centroid,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,true, +LGD,595,District,Vellore,LGD,33,State,605,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.914206,78.965876,centroid,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,true, +LGD,596,District,Viluppuram,LGD,33,State,607,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,12.139718,79.540604,centroid,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,true, +LGD,597,District,Virudhunagar,LGD,33,State,625,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,9.492324,77.905719,centroid,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,true, +LGD,501,District,Adilabad,LGD,36,State,532,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.519916,78.565982,centroid,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,true, +LGD,690,District,Bhadradri Kothagudem,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.690454,80.716493,centroid,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,true, +LGD,686,District,Hanumakonda,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.046534,79.463730,centroid,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,true, +LGD,507,District,Hyderabad,LGD,36,State,536,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.395112,78.470167,centroid,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,true, +LGD,681,District,Jagitial,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.832238,78.877896,centroid,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,true, +LGD,689,District,Jangoan,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.727859,79.284325,centroid,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,true, +LGD,687,District,Jayashankar Bhupalapally,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.506030,79.924365,centroid,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,true, +LGD,695,District,Jogulamba Gadwal,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.071697,77.780993,centroid,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,true, +LGD,685,District,Kamareddy,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.324814,78.061681,centroid,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,true, +LGD,508,District,Karimnagar,LGD,36,State,534,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.380033,79.245348,centroid,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,true, +LGD,509,District,Khammam,LGD,36,State,541,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.205947,80.365131,centroid,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,true, +LGD,699,District,Kumuram Bheem Asifabad,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.357095,79.419802,centroid,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,true, +LGD,688,District,Mahabubabad,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.675222,79.996276,centroid,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,true, +LGD,512,District,Mahabubnagar,LGD,36,State,538,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.751490,78.013247,centroid,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,true, +LGD,684,District,Mancherial,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.991463,79.512315,centroid,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,true, +LGD,513,District,Medak,LGD,36,State,535,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.953209,78.265038,centroid,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,true, +LGD,700,District,Medchal Malkajgiri,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.544214,78.557696,centroid,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,true, +LGD,720,District,Mulugu,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.291487,80.337459,centroid,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,true, +LGD,694,District,Nagarkurnool,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.382246,78.595988,centroid,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,true, +LGD,514,District,Nalgonda,LGD,36,State,539,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.876525,79.193064,centroid,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,true, +LGD,721,District,Narayanpet,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.638254,77.582727,centroid,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,true, +LGD,680,District,Nirmal,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,19.113181,78.314942,centroid,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,true, +LGD,516,District,Nizamabad,LGD,36,State,533,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.701604,78.211364,centroid,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,true, +LGD,682,District,Peddapalli,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.620155,79.453681,centroid,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,true, +LGD,683,District,Rajanna Sircilla,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.414096,78.763447,centroid,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,true, +LGD,518,District,Ranga Reddy,LGD,36,State,537,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.130963,78.412504,centroid,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,true, +LGD,691,District,Sangareddy,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.785340,77.874129,centroid,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,true, +LGD,692,District,Siddipet,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,18.021641,78.855083,centroid,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,true, +LGD,696,District,Suryapet,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.080643,79.754395,centroid,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,true, +LGD,698,District,Vikarabad,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.246310,77.750811,centroid,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,true, +LGD,693,District,Wanaparthy,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,16.287718,78.049507,centroid,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,true, +LGD,522,District,Warangal,LGD,36,State,540,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.919204,79.737482,centroid,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,true, +LGD,697,District,Yadadri Bhuvanagiri,LGD,36,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,17.451240,78.978697,centroid,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,true, +LGD,465,District,Dadra And Nagar Haveli,LGD,38,State,496,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.191077,73.058434,interior_grid,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,true, +LGD,463,District,Daman,LGD,38,State,495,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.414235,72.852713,centroid,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,true, +LGD,464,District,Diu,LGD,38,State,494,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,20.721261,70.937137,centroid,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,true, +LGD,269,District,Dhalai,LGD,16,State,291,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.837087,91.924036,centroid,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,true, +LGD,654,District,Gomati,LGD,16,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.511621,91.627811,centroid,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,true, +LGD,652,District,Khowai,LGD,16,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.943724,91.660954,centroid,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,true, +LGD,270,District,North Tripura,LGD,16,State,292,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.097014,92.210814,centroid,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,true, +LGD,653,District,Sepahijala,LGD,16,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.585052,91.331523,centroid,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,true, +LGD,271,District,South Tripura,LGD,16,State,290,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.200333,91.577175,centroid,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,true, +LGD,655,District,Unakoti,LGD,16,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.204434,92.041151,centroid,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,true, +LGD,272,District,West Tripura,LGD,16,State,289,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.886599,91.399302,centroid,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,true, +LGD,45,District,Almora,LGD,5,State,64,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.690751,79.504039,centroid,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,true, +LGD,46,District,Bageshwar,LGD,5,State,63,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.996405,79.858939,centroid,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,true, +LGD,47,District,Chamoli,LGD,5,State,57,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.495149,79.577047,centroid,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,true, +LGD,48,District,Champawat,LGD,5,State,65,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.281123,80.069053,centroid,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,true, +LGD,49,District,Dehradun,LGD,5,State,60,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.472166,77.967550,centroid,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,true, +LGD,50,District,Haridwar,LGD,5,State,68,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.881397,77.996044,centroid,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,true, +LGD,51,District,Nainital,LGD,5,State,66,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.317293,79.463201,centroid,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,true, +LGD,52,District,Pauri Garhwal,LGD,5,State,61,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.879961,78.763766,centroid,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,true, +LGD,53,District,Pithoragarh,LGD,5,State,62,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.113997,80.345565,centroid,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,true, +LGD,54,District,Rudraprayag,LGD,5,State,58,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.506914,79.052455,centroid,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,true, +LGD,55,District,Tehri Garhwal,LGD,5,State,59,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.436550,78.535529,centroid,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,true, +LGD,56,District,Udham Singh Nagar,LGD,5,State,67,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.041948,79.470845,centroid,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,true, +LGD,57,District,Uttarkashi,LGD,5,State,56,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,30.971870,78.607019,centroid,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,true, +LGD,118,District,Agra,LGD,9,State,146,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.036251,78.076398,centroid,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,true, +LGD,119,District,Aligarh,LGD,9,State,143,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.926465,78.065301,centroid,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,true, +LGD,121,District,Ambedkar Nagar,LGD,9,State,178,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.418558,82.666105,centroid,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,true, +LGD,640,District,Amethi,LGD,9,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.323815,81.668704,centroid,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,true, +LGD,154,District,Amroha,LGD,9,State,137,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.835642,78.368246,centroid,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,true, +LGD,122,District,Auraiya,LGD,9,State,162,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.658178,79.479116,centroid,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,true, +LGD,140,District,Ayodhya,LGD,9,State,177,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.657554,81.997104,centroid,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,true, +LGD,123,District,Azamgarh,LGD,9,State,191,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.045498,83.067296,centroid,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,true, +LGD,124,District,Baghpat,LGD,9,State,139,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.056937,77.308508,centroid,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,true, +LGD,125,District,Bahraich,LGD,9,State,180,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.698230,81.492806,centroid,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,true, +LGD,126,District,Ballia,LGD,9,State,193,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.876254,84.102614,centroid,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,true, +LGD,127,District,Balrampur,LGD,9,State,182,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.483685,82.375229,centroid,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,true, +LGD,128,District,Banda,LGD,9,State,170,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.470939,80.557396,centroid,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,true, +LGD,129,District,Bara Banki,LGD,9,State,176,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.939037,81.332417,centroid,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,true, +LGD,130,District,Bareilly,LGD,9,State,150,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.457976,79.431403,centroid,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,true, +LGD,131,District,Basti,LGD,9,State,185,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.820038,82.625709,centroid,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,true, +LGD,179,District,Bhadohi,LGD,9,State,198,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.347933,82.464128,centroid,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,true, +LGD,132,District,Bijnor,LGD,9,State,134,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.386207,78.388853,centroid,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,true, +LGD,133,District,Budaun,LGD,9,State,149,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.077854,79.041570,centroid,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,true, +LGD,134,District,Bulandshahr,LGD,9,State,142,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.362548,78.014505,centroid,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,true, +LGD,135,District,Chandauli,LGD,9,State,196,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.141544,83.258105,centroid,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,true, +LGD,136,District,Chitrakoot,LGD,9,State,171,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.206227,81.077462,centroid,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,true, +LGD,137,District,Deoria,LGD,9,State,190,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.425350,83.834585,centroid,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,true, +LGD,138,District,Etah,LGD,9,State,201,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.515541,78.717419,centroid,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,true, +LGD,139,District,Etawah,LGD,9,State,161,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.764067,79.094854,centroid,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,true, +LGD,141,District,Farrukhabad,LGD,9,State,159,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.431334,79.458667,centroid,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,true, +LGD,142,District,Fatehpur,LGD,9,State,172,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.874894,80.807709,centroid,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,true, +LGD,143,District,Firozabad,LGD,9,State,147,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.187236,78.526428,centroid,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,true, +LGD,144,District,Gautam Buddha Nagar,LGD,9,State,141,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.394059,77.555973,centroid,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,true, +LGD,145,District,Ghaziabad,LGD,9,State,140,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.767749,77.476015,centroid,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,true, +LGD,146,District,Ghazipur,LGD,9,State,195,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.623962,83.555544,centroid,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,true, +LGD,147,District,Gonda,LGD,9,State,183,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.083387,82.025294,centroid,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,true, +LGD,148,District,Gorakhpur,LGD,9,State,188,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.656068,83.359032,centroid,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,true, +LGD,149,District,Hamirpur,LGD,9,State,168,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.751017,79.865350,centroid,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,true, +LGD,661,District,Hapur,LGD,9,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.722383,77.893127,centroid,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,true, +LGD,150,District,Hardoi,LGD,9,State,155,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.330336,80.161580,centroid,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,true, +LGD,163,District,Hathras,LGD,9,State,144,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.581716,78.164440,centroid,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,true, +LGD,151,District,Jalaun,LGD,9,State,165,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.091193,79.385801,centroid,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,true, +LGD,152,District,Jaunpur,LGD,9,State,194,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.746298,82.574976,centroid,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,true, +LGD,153,District,Jhansi,LGD,9,State,166,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.508105,78.950857,centroid,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,true, +LGD,155,District,Kannauj,LGD,9,State,160,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.013601,79.688690,centroid,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,true, +LGD,156,District,Kanpur Dehat,LGD,9,State,163,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.439637,79.852934,centroid,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,true, +LGD,157,District,Kanpur Nagar,LGD,9,State,164,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.391080,80.208199,centroid,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,true, +LGD,633,District,Kasganj,LGD,9,State,202,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.773327,78.846070,centroid,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,true, +LGD,158,District,Kaushambi,LGD,9,State,174,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.498460,81.415008,centroid,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,true, +LGD,159,District,Kheri,LGD,9,State,153,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.120956,80.666926,centroid,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,true, +LGD,160,District,Kushinagar,LGD,9,State,189,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.862754,83.933846,centroid,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,true, +LGD,161,District,Lalitpur,LGD,9,State,167,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.653500,78.561958,centroid,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,true, +LGD,162,District,Lucknow,LGD,9,State,157,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.841979,80.905490,centroid,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,true, +LGD,165,District,Mahoba,LGD,9,State,169,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.362800,79.726003,centroid,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,true, +LGD,164,District,Mahrajganj,LGD,9,State,187,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.200551,83.530436,centroid,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,true, +LGD,166,District,Mainpuri,LGD,9,State,148,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.182445,79.052108,centroid,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,true, +LGD,167,District,Mathura,LGD,9,State,145,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.597491,77.625895,centroid,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,true, +LGD,168,District,Mau,LGD,9,State,192,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.047456,83.561786,centroid,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,true, +LGD,169,District,Meerut,LGD,9,State,138,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.036373,77.782697,centroid,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,true, +LGD,170,District,Mirzapur,LGD,9,State,199,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.986648,82.607360,centroid,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,true, +LGD,171,District,Moradabad,LGD,9,State,135,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.885592,78.802924,centroid,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,true, +LGD,172,District,Muzaffarnagar,LGD,9,State,133,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.415637,77.725288,centroid,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,true, +LGD,173,District,Pilibhit,LGD,9,State,151,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.530755,79.994583,centroid,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,true, +LGD,174,District,Pratapgarh,LGD,9,State,173,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.872737,81.829069,centroid,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,true, +LGD,120,District,Prayagraj,LGD,9,State,175,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.304012,81.960159,centroid,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,true, +LGD,175,District,Rae Bareli,LGD,9,State,158,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.203741,81.190943,centroid,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,true, +LGD,176,District,Rampur,LGD,9,State,136,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.809845,79.115097,centroid,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,true, +LGD,177,District,Saharanpur,LGD,9,State,132,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.951033,77.546779,centroid,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,true, +LGD,659,District,Sambhal,LGD,9,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,28.451892,78.558077,centroid,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,true, +LGD,178,District,Sant Kabir Nagar,LGD,9,State,186,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.775547,83.027224,centroid,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,true, +LGD,180,District,Shahjahanpur,LGD,9,State,152,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.950761,79.822072,centroid,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,true, +LGD,660,District,Shamli,LGD,9,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,29.500323,77.282363,centroid,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,true, +LGD,181,District,Shrawasti,LGD,9,State,181,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.718462,81.903444,centroid,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,true, +LGD,182,District,Siddharthnagar,LGD,9,State,184,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.270196,82.873251,centroid,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,true, +LGD,183,District,Sitapur,LGD,9,State,154,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.517096,80.852222,centroid,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,true, +LGD,184,District,Sonbhadra,LGD,9,State,200,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.407995,83.051909,centroid,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,true, +LGD,185,District,Sultanpur,LGD,9,State,179,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.261948,82.193868,centroid,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,true, +LGD,186,District,Unnao,LGD,9,State,156,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.609367,80.560562,centroid,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,true, +LGD,187,District,Varanasi,LGD,9,State,197,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.388275,82.913960,centroid,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,true, +LGD,664,District,Alipurduar,LGD,19,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.632685,89.463034,centroid,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,true, +LGD,305,District,Bankura,LGD,19,State,339,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.139199,87.136273,centroid,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,true, +LGD,307,District,Birbhum,LGD,19,State,334,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.954375,87.663303,centroid,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,true, +LGD,308,District,Cooch Behar,LGD,19,State,329,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.292614,89.347816,centroid,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,true, +LGD,310,District,Dakshin Dinajpur,LGD,19,State,331,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.367223,88.575495,centroid,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,true, +LGD,309,District,Darjeeling,LGD,19,State,327,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.850567,88.262039,centroid,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,true, +LGD,312,District,Hooghly,LGD,19,State,338,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.884920,88.076193,centroid,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,true, +LGD,313,District,Howrah,LGD,19,State,341,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.521490,88.063397,centroid,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,true, +LGD,314,District,Jalpaiguri,LGD,19,State,328,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,26.682626,88.763845,centroid,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,true, +LGD,703,District,Jhargram,LGD,19,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.363242,86.955347,centroid,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,true, +LGD,702,District,Kalimpong,LGD,19,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,27.034545,88.630890,centroid,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,true, +LGD,315,District,Kolkata,LGD,19,State,342,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.526744,88.356008,centroid,88.233628,22.452029,88.461078,22.618825,SOI_Districts,2023-12-11,true, +LGD,316,District,Malda,LGD,19,State,332,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.136916,88.090580,centroid,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,true, +LGD,319,District,Murshidabad,LGD,19,State,333,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,24.162777,88.230649,centroid,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,true, +LGD,320,District,Nadia,LGD,19,State,336,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.479814,88.516695,centroid,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,true, +LGD,303,District,North 24 Parganas,LGD,19,State,337,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.727142,88.730133,centroid,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,true, +LGD,704,District,Paschim Bardhaman,LGD,19,State,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.636453,87.199152,centroid,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,true, +LGD,318,District,Paschim Medinipur,LGD,19,State,344,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.439193,87.417304,centroid,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,true, +LGD,306,District,Purba Bardhaman,LGD,19,State,335,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.356167,87.963711,centroid,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,true, +LGD,317,District,Purba Medinipur,LGD,19,State,345,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.031560,87.772887,centroid,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,true, +LGD,321,District,Purulia,LGD,19,State,340,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,23.276707,86.421546,centroid,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,true, +LGD,304,District,South 24 Parganas,LGD,19,State,343,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,22.057938,88.552900,centroid,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,true, +LGD,311,District,Uttar Dinajpur,LGD,19,State,330,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z,25.845938,88.106307,interior_grid,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,true, +LGD,2925,Block,Aali,LGD,360,District,2925,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,6087,Block,Aalo Hq,LGD,243,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false, +LGD,7346,Block,Aamabeda,LGD,381,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,7146,Block,Aau,LGD,772,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,6612,Block,Abapura,LGD,88,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,3728,Block,Abdasa,LGD,449,District,3728,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,6319,Block,Abdullapurmet,LGD,518,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,3331,Block,Abhanpur,LGD,387,District,3331,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +LGD,238,Block,Abohar,LGD,651,District,238,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +LGD,1750,Block,Aboi,LGD,247,District,1750,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,7600,Block,Abrama,LGD,459,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,595,Block,Abu Road,LGD,115,District,595,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +LGD,4004,Block,Achalpur,LGD,468,District,4004,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,4579,Block,Achampet,LGD,694,District,4579,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,4981,Block,Achanta,LGD,523,District,4981,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,6518,Block,Adajan,LGD,459,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,7192,Block,Adampur,LGD,34,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +LGD,393,Block,Adampur,LGD,63,District,393,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +LGD,1032,Block,Adapur,LGD,213,District,1032,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,7571,Block,Adarsh Nagar,LGD,80,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false, +LGD,6304,Block,Adavidevulapalli,LGD,514,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,7255,Block,Adbhar,LGD,762,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,6310,Block,Adda Guduru,LGD,697,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,4586,Block,Addakal,LGD,512,District,4586,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,5112,Block,Addanki,LGD,517,District,5112,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,4887,Block,Addateegala,LGD,791,District,4887,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7024,Block,Adhartal,LGD,411,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,1456,Block,Adhaura,LGD,200,District,1456,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,6345,Block,Adibadri,LGD,47,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,6221,Block,Adilabad Rural,LGD,501,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,4306,Block,Adilabad Urban,LGD,501,District,4306,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,2752,Block,Adityapur(Gamharia),LGD,341,District,2752,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,7334,Block,Adokgre,LGD,656,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false, +LGD,5271,Block,Adoni,LGD,511,District,5271,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,7563,Block,Adoni-2,LGD,511,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5683,Block,Adoor,LGD,564,District,5683,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +LGD,5581,Block,Afzalpur,LGD,538,District,5581,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,5354,Block,Agali,LGD,754,District,5354,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7452,Block,Agalpur,LGD,345,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,2006,Block,Agamoni,LGD,285,District,2006,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +LGD,3518,Block,Agar,LGD,667,District,3518,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +LGD,5884,Block,Agastheeswaram,LGD,575,District,5884,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +LGD,5626,Block,Agatti,LGD,553,District,5626,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,1771,Block,Aghunato,LGD,251,District,1771,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,1432,Block,Agiaon,LGD,193,District,1432,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,5005,Block,Agiripalli,LGD,748,District,5005,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,766,Block,Agra,LGD,118,District,766,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +LGD,4062,Block,Aheri,LGD,475,District,4062,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,7331,Block,Ahiwara,LGD,378,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +LGD,4228,Block,Ahmadpur,LGD,481,District,4228,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,6856,Block,Ahmedgarh,LGD,737,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +LGD,586,Block,Ahore,LGD,104,District,586,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,3921,Block,Ahwa,LGD,444,District,3921,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false, +LGD,1904,Block,Aibawk,LGD,261,District,1904,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +LGD,4933,Block,Ainavilli,LGD,747,District,4933,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1781,Block,Aitepyong,LGD,250,District,1781,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,6810,Block,Ajas,LGD,623,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +LGD,3435,Block,Ajaygarh,LGD,420,District,3435,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,7241,Block,Ajgarbahar,LGD,383,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,6877,Block,Ajitmal,LGD,122,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +LGD,7078,Block,Ajjampura,LGD,532,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,607,Block,Ajmer,LGD,86,District,607,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,255,Block,Ajnala,LGD,27,District,255,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +LGD,4292,Block,Ajra,LGD,480,District,4292,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,3278,Block,Akaltara,LGD,379,District,3278,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,1519,Block,Akbarpur,LGD,210,District,1519,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,845,Block,Akbarpur,LGD,156,District,845,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +LGD,910,Block,Akbarpur,LGD,121,District,910,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +LGD,7524,Block,Akberpet-Bhoompally,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,78,Block,Akhnoor,LGD,5,District,78,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,4975,Block,Akividu,LGD,523,District,4975,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,4254,Block,Akkalkot,LGD,496,District,4254,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,3950,Block,Akkalkuwa,LGD,486,District,3950,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +LGD,6285,Block,Akkannapet,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,680,Block,Aklera,LGD,105,District,680,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,3991,Block,Akola,LGD,467,District,3991,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +LGD,4201,Block,Akole,LGD,466,District,4201,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,1472,Block,Akorhi Gola,LGD,215,District,1472,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,3989,Block,Akot,LGD,467,District,3989,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +LGD,3951,Block,Akrani,LGD,486,District,3951,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +LGD,1774,Block,Akuhaito,LGD,251,District,1774,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,1768,Block,Akuluto,LGD,251,District,1768,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,4617,Block,Alair,LGD,697,District,4617,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,1169,Block,Alamnagar,LGD,205,District,1169,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,4612,Block,Alampur,LGD,695,District,4612,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,6900,Block,Alampur,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,4925,Block,Alamuru,LGD,747,District,4925,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5580,Block,Aland,LGD,538,District,5580,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,5704,Block,Alandur,LGD,568,District,5704,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,5824,Block,Alangudi,LGD,582,District,5824,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,5875,Block,Alangulam,LGD,733,District,5875,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +LGD,5651,Block,Alathur,LGD,563,District,5651,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +LGD,5951,Block,Alathur,LGD,581,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +LGD,1322,Block,Alauli,LGD,202,District,1322,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +LGD,2715,Block,Albert Ekka(Jari),LGD,331,District,2715,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,6409,Block,Alewa,LGD,65,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +LGD,2106,Block,Algapur,LGD,289,District,2106,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +LGD,4177,Block,Alibag,LGD,491,District,4177,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,1007,Block,Aliganj,LGD,138,District,1007,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +LGD,7371,Block,Aligarh,LGD,116,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,1187,Block,Alinagar,LGD,195,District,1187,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,2173,Block,Alipurduar - I,LGD,664,District,2173,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +LGD,2174,Block,Alipurduar - II,LGD,664,District,2174,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +LGD,3713,Block,Alirajpur,LGD,639,District,3713,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +LGD,4470,Block,Alladurg,LGD,513,District,4470,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,5298,Block,Allagadda,LGD,755,District,5298,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,890,Block,Allahabad,LGD,120,District,890,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +LGD,6267,Block,Allapalli,LGD,690,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,908,Block,Allapur,LGD,121,District,908,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +LGD,4940,Block,Allavaram,LGD,747,District,4940,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5167,Block,Allur,LGD,515,District,5167,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,7123,Block,Almel,LGD,530,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,330,Block,Almora,LGD,45,District,330,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,7081,Block,Alnavar,LGD,536,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +LGD,1759,Block,Alongkima,LGD,246,District,1759,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,7528,Block,Aloor,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,6809,Block,Aloosa,LGD,623,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +LGD,3502,Block,Alot,LGD,423,District,3502,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,5274,Block,Alur,LGD,511,District,5274,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5557,Block,Alur,LGD,539,District,5557,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +LGD,5658,Block,Aluva,LGD,555,District,5658,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +LGD,6328,Block,Alwal,LGD,700,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,499,Block,Alwar,LGD,87,District,499,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,5361,Block,Amadagur,LGD,754,District,5361,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4798,Block,Amadalavalasa,LGD,519,District,4798,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,1836,Block,Amahator,LGD,614,District,1836,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +LGD,4941,Block,Amalapuram,LGD,747,District,4941,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3969,Block,Amalner,LGD,478,District,3969,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,4563,Block,Amangal,LGD,518,District,4563,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,3439,Block,Amanganj,LGD,420,District,3439,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,5351,Block,Amarapuram,LGD,754,District,5351,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5052,Block,Amaravathi,LGD,751,District,5052,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6290,Block,Amarchintha,LGD,693,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,7122,Block,Amargarh,LGD,737,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +LGD,6867,Block,Amariya,LGD,173,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +LGD,3468,Block,Amarpatan,LGD,784,District,3468,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,6695,Block,Amarpur,LGD,654,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +LGD,1346,Block,Amarpur,LGD,190,District,1346,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,5086,Block,Amarthalur,LGD,750,District,5086,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3648,Block,Amarwara,LGD,399,District,3648,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,1499,Block,Amas,LGD,196,District,1499,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,148,Block,Amb,LGD,26,District,148,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,2768,Block,Ambabhona,LGD,347,District,2768,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,4129,Block,Ambad,LGD,479,District,4129,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +LGD,3310,Block,Ambagarh Chouki,LGD,761,District,3310,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,3385,Block,Ambah,LGD,417,District,3385,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +LGD,4935,Block,Ambajipeta,LGD,747,District,4935,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,359,Block,Ambala,LGD,58,District,359,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +LGD,6406,Block,Ambala Cantonment,LGD,58,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +LGD,5674,Block,Ambalappuzha,LGD,554,District,5674,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +LGD,4170,Block,Ambarnath,LGD,497,District,4170,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +LGD,5878,Block,Ambasamudram,LGD,592,District,5878,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +LGD,6697,Block,Ambassa,LGD,269,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +LGD,5700,Block,Ambattur,LGD,568,District,5700,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,4188,Block,Ambegaon,LGD,490,District,4188,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,4225,Block,Ambejogai,LGD,470,District,4225,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,547,Block,Amber,LGD,102,District,547,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,4502,Block,Amberpet,LGD,507,District,4502,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,7552,Block,Ambika,LGD,459,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,3247,Block,Ambikapur,LGD,389,District,3247,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +LGD,5719,Block,Ambur,LGD,732,District,5719,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +LGD,1157,Block,Amdabad,LGD,201,District,1157,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,2322,Block,Amdanga,LGD,303,District,2322,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,6276,Block,Ameenpur,LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,4497,Block,Ameerpet,LGD,507,District,4497,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,641,Block,Amet,LGD,112,District,641,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,914,Block,Amethi,LGD,640,District,914,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +LGD,4047,Block,Amgaon,LGD,476,District,4047,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +LGD,2072,Block,Amguri,LGD,300,District,2072,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +LGD,5620,Block,Amini,LGD,553,District,5620,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,7161,Block,Aminjikarai,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,3736,Block,Amirgadh,LGD,441,District,3736,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,3605,Block,Amla,LGD,394,District,3605,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,1998,Block,Amlarem,LGD,275,District,1998,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false, +LGD,7307,Block,Amlipadar,LGD,645,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +LGD,222,Block,Amloh,LGD,30,District,222,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +LGD,1261,Block,Amnour,LGD,218,District,1261,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,3914,Block,Amod,LGD,442,District,3914,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,1138,Block,Amour,LGD,214,District,1138,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,4578,Block,Amrabad,LGD,694,District,4578,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,2574,Block,Amrapara,LGD,337,District,2574,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +LGD,4009,Block,Amravati,LGD,468,District,4009,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,3843,Block,Amreli,LGD,439,District,3843,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,7432,Block,Amreli-City,LGD,439,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,831,Block,Amritpur,LGD,141,District,831,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +LGD,256,Block,Amritsar -I,LGD,27,District,256,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +LGD,257,Block,Amritsar- II,LGD,27,District,257,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +LGD,730,Block,Amroha,LGD,154,District,730,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +LGD,2400,Block,Amta - I,LGD,313,District,2400,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,2399,Block,Amta - II,LGD,313,District,2399,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,5964,Block,Anaicut,LGD,595,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +LGD,6643,Block,Anaimalai,LGD,569,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,4871,Block,Anakapalli,LGD,744,District,4871,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2854,Block,Anandapur,LGD,361,District,2854,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,4863,Block,Anandapuram,LGD,520,District,4863,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,6530,Block,Anand City,LGD,440,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,2734,Block,Anandpur,LGD,343,District,2734,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,6061,Block,Anandpuri,LGD,88,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,262,Block,Anandpur Sahib,LGD,42,District,262,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +LGD,3864,Block,Anand Rural,LGD,440,District,3864,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,5330,Block,Anantapur Rural,LGD,502,District,5330,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,7426,Block,Anantapur Urban,LGD,502,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,4845,Block,Ananthagiri,LGD,745,District,4845,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6302,Block,Ananthagiri,LGD,696,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,5173,Block,Ananthasagaram,LGD,515,District,5173,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,55,Block,Anantnag,LGD,1,District,55,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,6822,Block,Anantnag East (Mattan),LGD,1,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,4917,Block,Anaparthi,LGD,505,District,4917,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,6662,Block,Anchetty,LGD,577,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +LGD,2272,Block,Andal,LGD,704,District,2272,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +LGD,1243,Block,Andar,LGD,222,District,1243,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,7179,Block,Andheri,LGD,483,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +LGD,7140,Block,Andhi,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,1096,Block,Andhratharhi,LGD,206,District,1096,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,5983,Block,Andimadam,LGD,610,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +LGD,5846,Block,Andipatti,LGD,588,District,5846,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +LGD,4479,Block,Andole,LGD,691,District,4479,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,5627,Block,Andrott,LGD,553,District,5627,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,5545,Block,Anekal,LGD,525,District,5545,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +LGD,1720,Block,Anelih,LGD,230,District,1720,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false, +LGD,2686,Block,Angara,LGD,339,District,2686,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,1754,Block,Angjangyang,LGD,247,District,1754,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,121,Block,Ani,LGD,20,District,121,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,1718,Block,Anini,LGD,230,District,1718,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false, +LGD,3557,Block,Anjad,LGD,393,District,3557,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,4003,Block,Anjangaon Surji,LGD,468,District,4003,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,3725,Block,Anjar,LGD,449,District,3725,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,3868,Block,Anklav,LGD,440,District,3868,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,3918,Block,Anklesvar,LGD,442,District,3918,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,5484,Block,Ankola,LGD,550,District,5484,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,6268,Block,Annapureddypalli,LGD,690,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,7080,Block,Annigeri,LGD,536,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +LGD,5955,Block,Annur,LGD,569,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,671,Block,Anta,LGD,89,District,671,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +LGD,3353,Block,Antagarh,LGD,381,District,3353,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,7362,Block,Antali,LGD,92,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,6214,Block,Anthergaon,LGD,682,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,5969,Block,Anthiyur,LGD,573,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,3011,Block,Anugola,LGD,344,District,3011,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +LGD,5165,Block,Anumasamudrampeta,LGD,515,District,5165,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,4660,Block,Anumula,LGD,514,District,4660,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,462,Block,Anupgarh,LGD,100,District,462,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,3694,Block,Anuppur,LGD,390,District,3694,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +LGD,748,Block,Anupshahr,LGD,134,District,748,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +LGD,786,Block,Aonla,LGD,130,District,786,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +LGD,1793,Block,Aquqhnaqua,LGD,764,District,1793,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,6659,Block,Arain,LGD,86,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,7403,Block,Arakera,LGD,546,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +LGD,5715,Block,Arakonam,LGD,731,District,5715,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +LGD,4844,Block,Araku Valley,LGD,745,District,4844,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2340,Block,Arambag,LGD,312,District,2340,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,3330,Block,Arang,LGD,387,District,3330,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +LGD,5721,Block,Arani,LGD,593,District,5721,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,5826,Block,Aranthangi,LGD,582,District,5826,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,1116,Block,Araria,LGD,188,District,1116,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,5768,Block,Aravakurichi,LGD,576,District,5768,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +LGD,5716,Block,Arcot,LGD,731,District,5716,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +LGD,4099,Block,Ardhapur,LGD,485,District,4099,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,5116,Block,Ardhaveedu,LGD,790,District,5116,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1045,Block,Areraj,LGD,213,District,1045,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,7553,Block,Areth,LGD,459,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,1377,Block,Ariari,LGD,219,District,1377,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false, +LGD,6795,Block,Aripal,LGD,11,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +LGD,5787,Block,Ariyalur,LGD,610,District,5787,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +LGD,7253,Block,Arjunda,LGD,646,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +LGD,4050,Block,Arjuni Morgaon,LGD,476,District,4050,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +LGD,5558,Block,Arkalgud,LGD,539,District,5558,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +LGD,158,Block,Arki,LGD,25,District,158,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,4360,Block,Armoor,LGD,516,District,4360,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,4053,Block,Armori,LGD,475,District,4053,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,6740,Block,Arnas,LGD,627,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,4088,Block,Arni,LGD,500,District,4088,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,6717,Block,Arnia,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,700,Block,Arnod,LGD,629,District,700,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +LGD,3682,Block,Aron,LGD,406,District,3682,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +LGD,1422,Block,Arrah,LGD,193,District,1422,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,2389,Block,Arsha,LGD,321,District,2389,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,5555,Block,Arsikere,LGD,539,District,5555,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +LGD,6922,Block,Arthuna,LGD,88,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,5853,Block,Aruppukkottai,LGD,597,District,5853,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,4017,Block,Arvi,LGD,498,District,4017,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +LGD,1542,Block,Arwal,LGD,611,District,1542,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +LGD,1361,Block,Asarganj,LGD,207,District,1361,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,6512,Block,Asarva,LGD,438,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,3686,Block,Ashoknagar,LGD,391,District,3686,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +LGD,3584,Block,Ashta,LGD,427,District,3584,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,4015,Block,Ashti,LGD,498,District,4015,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +LGD,4215,Block,Ashti,LGD,470,District,4215,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,4319,Block,Asifabad,LGD,699,District,4319,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,4506,Block,Asif Nagar,LGD,507,District,4506,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,3078,Block,Asika,LGD,354,District,3078,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,627,Block,Asind,LGD,92,District,627,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,6055,Block,Asnawar,LGD,105,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,5275,Block,Aspari,LGD,511,District,5275,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,647,Block,Aspur,LGD,99,District,647,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,373,Block,Assandh,LGD,67,District,373,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +LGD,6752,Block,Assar,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,3060,Block,Astaranga,LGD,369,District,3060,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,1385,Block,Asthawan,LGD,209,District,1385,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,1770,Block,Asuto,LGD,251,District,1770,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,4728,Block,Aswapuram,LGD,690,District,4728,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,4749,Block,Aswaraopeta,LGD,690,District,4749,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,873,Block,Atarra,LGD,128,District,873,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +LGD,5050,Block,Atchampet,LGD,751,District,5050,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4878,Block,Atchuthapuram,LGD,744,District,4878,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6457,Block,Ateli,LGD,69,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +LGD,3391,Block,Ater,LGD,395,District,3391,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,2950,Block,Athagada,LGD,350,District,2950,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,7116,Block,Athani,LGD,285,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +LGD,1853,Block,Athibung,LGD,613,District,1853,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +LGD,4694,Block,Athmakur,LGD,686,District,4694,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,1415,Block,Athmalgola,LGD,212,District,1415,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,3017,Block,Athmallik,LGD,344,District,3017,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +LGD,3599,Block,Athner,LGD,394,District,3599,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,5434,Block,Athni,LGD,527,District,5434,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,71,Block,Atholi (Paddar),LGD,620,District,71,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,5994,Block,Athoor,LGD,572,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,4998,Block,Atlapragada Konduru,LGD,749,District,4998,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5227,Block,Atlur,LGD,504,District,5227,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4592,Block,Atmakur,LGD,693,District,4592,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,5322,Block,Atmakur,LGD,502,District,5322,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5164,Block,Atmakur,LGD,515,District,5164,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5265,Block,Atmakur,LGD,755,District,5265,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4626,Block,Atmakur (M),LGD,697,District,4626,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,4622,Block,Atmakur (S),LGD,696,District,4622,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,1773,Block,Atoizu,LGD,251,District,1773,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,4300,Block,Atpadi,LGD,493,District,4300,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,754,Block,Atrauli,LGD,119,District,754,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +LGD,4919,Block,Atreyapuram,LGD,747,District,4919,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1493,Block,Atri,LGD,196,District,1493,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,673,Block,Atru,LGD,89,District,673,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +LGD,2769,Block,Attabira,LGD,347,District,2769,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,4973,Block,Attili,LGD,523,District,4973,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,5743,Block,Attur,LGD,584,District,5743,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,4113,Block,Aundha (Nagnath),LGD,477,District,4113,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +LGD,7278,Block,Aundhi,LGD,761,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,5456,Block,Aurad,LGD,529,District,5456,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +LGD,999,Block,Aurai,LGD,179,District,999,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +LGD,1207,Block,Aurai,LGD,208,District,1207,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,842,Block,Auraiya,LGD,122,District,842,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +LGD,1481,Block,Aurangabad,LGD,189,District,1481,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,4232,Block,Ausa,LGD,481,District,4232,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,2277,Block,Ausgram - I,LGD,306,District,2277,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2276,Block,Ausgram - II,LGD,306,District,2276,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,134,Block,Aut,LGD,22,District,134,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,6621,Block,Avadi,LGD,589,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,5037,Block,Avanigadda,LGD,510,District,5037,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,6510,Block,Avantipur Barodia,LGD,430,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +LGD,5903,Block,Avinashi,LGD,634,District,5903,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,5828,Block,Avudayarkoil,LGD,582,District,5828,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,49,Block,Awantipora,LGD,11,District,49,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +LGD,7163,Block,Ayanavaram,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,966,Block,Azamgarh,LGD,123,District,966,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +LGD,1148,Block,Azamnagar,LGD,201,District,1148,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,2127,Block,Azara,LGD,618,District,2127,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +LGD,258,Block,Baba Bakala,LGD,27,District,258,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +LGD,6454,Block,Babain St,LGD,68,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +LGD,7069,Block,Babaleshwar,LGD,530,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,872,Block,Baberu,LGD,128,District,872,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +LGD,3840,Block,Babra,LGD,439,District,3840,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,1088,Block,Babubarhi,LGD,206,District,1088,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,4080,Block,Babulgaon,LGD,500,District,4080,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,4674,Block,Bachannapet,LGD,689,District,4674,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,1310,Block,Bachhwara,LGD,191,District,1310,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,6315,Block,Bachupally,LGD,700,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,6998,Block,Badagaon (Dhasan),LGD,434,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,3431,Block,Bada Malhera,LGD,398,District,3431,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,2946,Block,Badamba,LGD,350,District,2946,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,5446,Block,Badami,LGD,524,District,5446,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,4820,Block,Badangi,LGD,521,District,4820,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,2102,Block,Badarpur,LGD,293,District,2102,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +LGD,7573,Block,Badarpur,LGD,670,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false, +LGD,3412,Block,Badarwas,LGD,432,District,3412,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,2882,Block,Badasahi,LGD,365,District,2882,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,162,Block,Baddi,LGD,25,District,162,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,6509,Block,Bade Bacheli,LGD,376,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +LGD,3356,Block,Baderajpur,LGD,643,District,3356,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +LGD,6903,Block,Badgaon,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,403,Block,Badhra,LGD,701,District,403,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +LGD,3595,Block,Badi,LGD,421,District,3595,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,6407,Block,Badkhal,LGD,60,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +LGD,982,Block,Badlapur,LGD,152,District,982,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +LGD,7570,Block,Badli,LGD,80,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false, +LGD,6444,Block,Badli,LGD,64,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +LGD,3514,Block,Badnagar,LGD,435,District,3514,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,4128,Block,Badnapur,LGD,479,District,4128,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +LGD,3532,Block,Badnawar,LGD,403,District,3532,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,6066,Block,Badnor,LGD,774,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3517,Block,Badod,LGD,667,District,3517,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +LGD,3383,Block,Badoda,LGD,431,District,3383,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +LGD,6421,Block,Badshahpur St,LGD,62,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,2328,Block,Baduria,LGD,303,District,2328,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,5210,Block,Badvel,LGD,504,District,5210,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,3623,Block,Badwara,LGD,413,District,3623,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,186,Block,Bagachnogi,LGD,22,District,186,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,1019,Block,Bagaha,LGD,211,District,1019,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,5447,Block,Bagalkot,LGD,524,District,5447,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,2139,Block,Baganpara,LGD,616,District,2139,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +LGD,3844,Block,Bagasara,LGD,439,District,3844,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,7347,Block,Bagbahar,LGD,380,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,3343,Block,Bagbahra,LGD,385,District,3343,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +LGD,2316,Block,Bagda,LGD,303,District,2316,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,5598,Block,Bagepalli,LGD,630,District,5598,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +LGD,323,Block,Bageshwar,LGD,46,District,323,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +LGD,232,Block,Bagha Purana,LGD,38,District,232,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +LGD,2020,Block,Baghbor,LGD,280,District,2020,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +LGD,1977,Block,Baghmara,LGD,277,District,1977,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +LGD,2582,Block,Baghmara-Cum-Katras,LGD,325,District,2582,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,736,Block,Baghpat,LGD,124,District,736,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +LGD,1783,Block,Baghty,LGD,250,District,1783,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,3255,Block,Bagicha,LGD,380,District,3255,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,653,Block,Bagidora,LGD,88,District,653,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,4145,Block,Baglan,LGD,487,District,4145,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,3529,Block,Bagli,LGD,402,District,3529,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,2392,Block,Bagmundi,LGD,321,District,2392,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,2408,Block,Bagnan - I,LGD,313,District,2408,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,2409,Block,Bagnan - II,LGD,313,District,2409,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,2541,Block,Bagodar,LGD,329,District,2541,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,589,Block,Bagora,LGD,104,District,589,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,6588,Block,Bagra Circle,LGD,243,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false, +LGD,2005,Block,Bagribari,LGD,294,District,2005,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +LGD,7174,Block,Bagshad,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,6341,Block,Bagwalipokhar,LGD,45,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,770,Block,Bah,LGD,118,District,770,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +LGD,1125,Block,Bahadurganj,LGD,203,District,1125,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +LGD,408,Block,Bahadurgarh,LGD,64,District,408,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +LGD,6978,Block,Bahadurpur,LGD,391,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +LGD,1189,Block,Bahadurpur,LGD,195,District,1189,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,4508,Block,Bahadurpura,LGD,507,District,4508,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,2859,Block,Bahalda,LGD,365,District,2859,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,6432,Block,Bahal St,LGD,59,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +LGD,7500,Block,Bahanaga,LGD,346,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,2614,Block,Baharagora,LGD,327,District,2614,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,6072,Block,Bahari,LGD,433,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +LGD,784,Block,Baheri,LGD,130,District,784,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +LGD,1192,Block,Baheri,LGD,195,District,1192,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,6479,Block,Bahin St,LGD,619,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +LGD,3625,Block,Bahoriband,LGD,413,District,3625,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,5912,Block,Bahour,LGD,600,District,5912,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +LGD,921,Block,Bahraich,LGD,125,District,921,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +LGD,7134,Block,Bahrawanda,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,6707,Block,Bahu,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,3674,Block,Baihar,LGD,392,District,3674,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,112,Block,Baijnath,LGD,18,District,112,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,7135,Block,Baijupara,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,3232,Block,Baikunthpur,LGD,384,District,3232,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +LGD,1228,Block,Baikunthpur,LGD,197,District,1228,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,5440,Block,Bailahongala,LGD,527,District,5440,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,7066,Block,Bainduru,LGD,549,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +LGD,6534,Block,Bairad,LGD,432,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,5423,Block,Baireddipalle,LGD,503,District,5423,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,1063,Block,Bairgania,LGD,221,District,1063,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,980,Block,Bairia,LGD,126,District,980,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +LGD,1029,Block,Bairia,LGD,211,District,1029,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,1139,Block,Baisa,LGD,214,District,1139,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,1140,Block,Baisi,LGD,214,District,1140,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,6071,Block,Bajag,LGD,404,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +LGD,2024,Block,Bajali (Pt),LGD,739,District,2024,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +LGD,6544,Block,Bajengdoba,LGD,656,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false, +LGD,6913,Block,Bajju,LGD,93,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,3505,Block,Bajna,LGD,423,District,3505,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,1075,Block,Bajpatti,LGD,221,District,1075,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,348,Block,Bajpur,LGD,56,District,348,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,6666,Block,Bakani,LGD,105,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,3364,Block,Bakavand,LGD,374,District,3364,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,1316,Block,Bakhri,LGD,191,District,1316,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,1414,Block,Bakhtiarpur,LGD,212,District,1414,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,820,Block,Bakshi Ka Talab,LGD,162,District,820,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +LGD,219,Block,Balachaur,LGD,40,District,219,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +LGD,2345,Block,Balagarh,LGD,312,District,2345,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,3672,Block,Balaghat,LGD,392,District,3672,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,6778,Block,Balakote,LGD,10,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +LGD,4557,Block,Balanagar,LGD,512,District,4557,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,4517,Block,Balanagar,LGD,700,District,4517,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,3142,Block,Balangir,LGD,345,District,3142,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,6323,Block,Balapur,LGD,518,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,3990,Block,Balapur,LGD,467,District,3990,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +LGD,2393,Block,Balarampur,LGD,321,District,2393,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,3871,Block,Balasinor,LGD,669,District,3871,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +LGD,5188,Block,Balayapalli,LGD,752,District,5188,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3421,Block,Baldeogarh,LGD,434,District,3421,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,6868,Block,Baldirai,LGD,185,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +LGD,131,Block,Baldwara,LGD,22,District,131,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,6564,Block,Balemu Circle,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,6049,Block,Balesar,LGD,107,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,7510,Block,Baleshwar,LGD,346,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,6374,Block,Balganga,LGD,55,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,7360,Block,Balghat,LGD,108,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,6947,Block,Balh,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,605,Block,Bali,LGD,111,District,605,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +LGD,1319,Block,Balia,LGD,191,District,1319,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,3042,Block,Balianta,LGD,362,District,3042,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,2893,Block,Baliapal,LGD,346,District,2893,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,2586,Block,Baliapur,LGD,325,District,2586,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,135,Block,Bali Chowki,LGD,22,District,135,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,3119,Block,Baliguda,LGD,359,District,3119,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,2014,Block,Balijana,LGD,287,District,2014,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +LGD,1592,Block,Balijan Adc,LGD,237,District,1592,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,4815,Block,Balijipeta,LGD,743,District,4815,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2943,Block,Balikuda,LGD,355,District,2943,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +LGD,3043,Block,Balipatna,LGD,362,District,3043,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,7468,Block,Balisankara,LGD,373,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,4361,Block,Balkonda,LGD,516,District,4361,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,426,Block,Ballabgarh,LGD,60,District,426,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +LGD,6452,Block,Ballah St,LGD,67,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +LGD,5500,Block,Ballari,LGD,528,District,5500,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +LGD,4074,Block,Ballarpur,LGD,473,District,4074,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,978,Block,Ballia,LGD,126,District,978,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +LGD,5105,Block,Ballikurava,LGD,517,District,5105,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,2403,Block,Bally Jagachha,LGD,313,District,2403,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,4597,Block,Balmoor,LGD,694,District,4597,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,3321,Block,Balod,LGD,646,District,3321,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +LGD,3279,Block,Baloda,LGD,379,District,3279,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,3326,Block,Balodabazar,LGD,644,District,3326,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,1146,Block,Balrampur,LGD,201,District,1146,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,3237,Block,Balrampur,LGD,649,District,3237,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,925,Block,Balrampur,LGD,127,District,925,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +LGD,6442,Block,Balsamand St,LGD,63,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +LGD,2640,Block,Balumath,LGD,335,District,2640,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,2204,Block,Balurghat,LGD,310,District,2204,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +LGD,2215,Block,Bamangola,LGD,316,District,2215,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,527,Block,Bamanwas,LGD,113,District,527,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,7461,Block,Bamara,LGD,371,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,1586,Block,Bameng Adc,LGD,231,District,1586,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,7265,Block,Bamhnidih,LGD,379,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,7564,Block,Bamhori,LGD,421,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,7112,Block,Bamor,LGD,417,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +LGD,3678,Block,Bamori,LGD,406,District,3678,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +LGD,6102,Block,Bana Eac,LGD,787,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,5288,Block,Banaganapalli,LGD,755,District,5288,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3054,Block,Banapur,LGD,362,District,3054,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,7118,Block,Banarhat,LGD,314,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,3010,Block,Banarpal,LGD,344,District,3010,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +LGD,871,Block,Banda,LGD,128,District,871,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +LGD,3446,Block,Banda,LGD,425,District,3446,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,7420,Block,Bandari,LGD,425,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,7353,Block,Bande,LGD,381,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,6603,Block,Banderdewa Circle,LGD,237,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,2730,Block,Bandgaon,LGD,343,District,2730,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,3482,Block,Bandhavgarh,LGD,436,District,3482,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +LGD,3205,Block,Bandhugaon,LGD,363,District,3205,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,5283,Block,Bandi Atmakur,LGD,755,District,5283,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7210,Block,Bandikui,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,41,Block,Bandipora,LGD,623,District,41,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +LGD,4509,Block,Bandlaguda,LGD,507,District,4509,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,1210,Block,Bandra,LGD,208,District,1210,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,2830,Block,Banei,LGD,373,District,2830,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,2137,Block,Banekuchi,LGD,298,District,2137,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +LGD,630,Block,Banera,LGD,92,District,630,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,5993,Block,Banga,LGD,40,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +LGD,149,Block,Bangana,LGD,26,District,149,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,6356,Block,Bangapani,LGD,53,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,5593,Block,Bangarapet,LGD,542,District,5593,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +LGD,6160,Block,Bangarmau,LGD,186,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +LGD,5429,Block,Bangarupalem,LGD,503,District,5429,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,2875,Block,Bangiriposi,LGD,365,District,2875,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,3150,Block,Bangomunda,LGD,345,District,3150,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,29,Block,Bani,LGD,7,District,29,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,1252,Block,Baniapur,LGD,218,District,1252,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,66,Block,Banihal,LGD,621,District,66,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +LGD,120,Block,Banjar,LGD,20,District,120,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,1035,Block,Banjaria,LGD,213,District,1035,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1350,Block,Banka,LGD,190,District,1350,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,1037,Block,Bankatwa,LGD,213,District,1037,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1500,Block,Banke Bazar,LGD,196,District,1500,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,3619,Block,Bankhedi,LGD,409,District,3619,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,2948,Block,Banki,LGD,350,District,2948,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,2361,Block,Bankura - I,LGD,305,District,2361,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,2362,Block,Bankura - II,LGD,305,District,2362,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,1180,Block,Banma Itahri,LGD,216,District,1180,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,1128,Block,Banmankhi,LGD,214,District,1128,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,2727,Block,Bano,LGD,342,District,2727,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,3926,Block,Bansda,LGD,453,District,3926,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +LGD,979,Block,Bansdih,LGD,126,District,979,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +LGD,952,Block,Bansgaon,LGD,148,District,952,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +LGD,934,Block,Bansi,LGD,182,District,934,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +LGD,2206,Block,Bansihari,LGD,310,District,2206,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +LGD,2726,Block,Bansjor,LGD,342,District,2726,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,7493,Block,Banspal,LGD,361,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,500,Block,Bansur,LGD,782,District,500,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,4383,Block,Banswada,LGD,685,District,4383,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,652,Block,Banswara,LGD,88,District,652,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,2911,Block,Banta,LGD,348,District,2911,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +LGD,5019,Block,Bantumilli,LGD,510,District,5019,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,5562,Block,Bantval,LGD,534,District,5562,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,4532,Block,Bantwaram,LGD,698,District,4532,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,6047,Block,Baori,LGD,107,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,6048,Block,Bap,LGD,772,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5093,Block,Bapatla,LGD,750,District,5093,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6916,Block,Bapini,LGD,772,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,6462,Block,Bapoli,LGD,71,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +LGD,5004,Block,Bapulapadu,LGD,510,District,5004,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,891,Block,Bara,LGD,120,District,891,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +LGD,2269,Block,Barabani,LGD,704,District,2269,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +LGD,2394,Block,Barabazar,LGD,321,District,2394,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,1510,Block,Barachatti,LGD,196,District,1510,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,2765,Block,Baragada,LGD,347,District,2765,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,2812,Block,Baragaon,LGD,373,District,2812,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,1349,Block,Barahat,LGD,190,District,1349,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,1365,Block,Barahiya,LGD,204,District,1365,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +LGD,3594,Block,Baraily,LGD,421,District,3594,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,6377,Block,Barakot,LGD,48,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +LGD,5935,Block,Barama,LGD,616,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +LGD,4199,Block,Baramati,LGD,490,District,4199,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,3271,Block,Baramkela,LGD,763,District,3271,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,35,Block,Baramulla,LGD,3,District,35,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,672,Block,Baran,LGD,89,District,672,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +LGD,2951,Block,Barang,LGD,350,District,2951,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,7361,Block,Barapal,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,360,Block,Barara,LGD,58,District,360,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +LGD,1153,Block,Barari,LGD,201,District,1153,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,2325,Block,Barasat - I,LGD,303,District,2325,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,2326,Block,Barasat - II,LGD,303,District,2326,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,1226,Block,Barauli,LGD,197,District,1226,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,1312,Block,Barauni,LGD,191,District,1312,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,735,Block,Baraut,LGD,124,District,735,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +LGD,2135,Block,Barbhag,LGD,298,District,2135,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +LGD,1372,Block,Barbigha,LGD,219,District,1372,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false, +LGD,2834,Block,Barbil,LGD,361,District,2834,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,6798,Block,Barbugh Imam Sahib,LGD,625,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false, +LGD,5610,Block,Bardez,LGD,551,District,5610,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +LGD,2500,Block,Bardiha,LGD,328,District,2500,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,3940,Block,Bardoli,LGD,459,District,3940,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,787,Block,Bareilly,LGD,130,District,787,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +LGD,6329,Block,Bargarh,LGD,328,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,7423,Block,Bargawan,LGD,638,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +LGD,3665,Block,Barghat,LGD,428,District,3665,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,6613,Block,Bargur,LGD,577,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +LGD,1417,Block,Barh,LGD,212,District,1417,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,2567,Block,Barhait,LGD,340,District,2567,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,961,Block,Barhaj,LGD,137,District,961,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +LGD,1437,Block,Barhampur,LGD,194,District,1437,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,1423,Block,Barhara,LGD,193,District,1423,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,1129,Block,Barhara,LGD,214,District,1129,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,1231,Block,Barharia,LGD,222,District,1231,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,2572,Block,Barharwa,LGD,340,District,2572,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,1528,Block,Barhat,LGD,198,District,1528,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,2645,Block,Barhi,LGD,332,District,2645,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,3622,Block,Barhi,LGD,413,District,3622,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,516,Block,Bari,LGD,98,District,516,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +LGD,2985,Block,Bari,LGD,356,District,2985,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,1357,Block,Bariarpur,LGD,207,District,1357,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,6596,Block,Bari Basip Circle,LGD,239,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +LGD,6720,Block,Bari Brahamana,LGD,624,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +LGD,2872,Block,Baripada,LGD,365,District,2872,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,1620,Block,Baririjo Circle,LGD,241,District,1620,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,664,Block,Bari Sadri,LGD,95,District,664,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,2641,Block,Bariyatu,LGD,335,District,2641,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,2363,Block,Barjora,LGD,305,District,2363,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,2657,Block,Barkagaon,LGD,332,District,2657,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,2650,Block,Barkatha,LGD,332,District,2650,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,2134,Block,Barkhetri,LGD,298,District,2134,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +LGD,2801,Block,Barkot,LGD,351,District,2801,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false, +LGD,582,Block,Barmer,LGD,90,District,582,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,7131,Block,Barmer Gramin,LGD,90,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,2018,Block,Barnagar (Pt),LGD,280,District,2018,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +LGD,275,Block,Barnala,LGD,605,District,275,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +LGD,7224,Block,Barnala,LGD,113,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,6405,Block,Barnigad,LGD,57,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,102,Block,Baroh,LGD,18,District,102,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,7001,Block,Baroni,LGD,401,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +LGD,2763,Block,Barpali,LGD,347,District,2763,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,7233,Block,Barpali,LGD,383,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,2022,Block,Barpeta,LGD,280,District,2022,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +LGD,2323,Block,Barrackpur - I,LGD,303,District,2323,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,2324,Block,Barrackpur - II,LGD,303,District,2324,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,144,Block,Barsar,LGD,17,District,144,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,4246,Block,Barshi,LGD,496,District,4246,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,3994,Block,Barshitakli,LGD,467,District,3994,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +LGD,1147,Block,Barsoi,LGD,201,District,1147,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,7232,Block,Barsur,LGD,376,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +LGD,2422,Block,Baruipur,LGD,304,District,2422,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,1482,Block,Barun,LGD,189,District,1482,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,1200,Block,Baruraj (Motipur),LGD,208,District,1200,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,2636,Block,Barwadih,LGD,335,District,2636,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,3545,Block,Barwaha,LGD,414,District,3545,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,6440,Block,Barwala,LGD,63,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +LGD,3786,Block,Barwala,LGD,676,District,3786,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +LGD,6460,Block,Barwala St,LGD,70,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +LGD,3554,Block,Barwani,LGD,393,District,3554,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,7372,Block,Basai Nawab,LGD,98,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +LGD,6736,Block,Basantgarh,LGD,14,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +LGD,2434,Block,Basanti,LGD,304,District,2434,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,1102,Block,Basantpur,LGD,223,District,1102,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,1234,Block,Basantpur,LGD,222,District,1234,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,6205,Block,Basar,LGD,680,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,1636,Block,Basar Adc,LGD,724,District,1636,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false, +LGD,5454,Block,Basavakalyan,LGD,529,District,5454,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +LGD,5452,Block,Basavana Bagevadi,LGD,530,District,5452,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,515,Block,Baseri,LGD,98,District,515,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +LGD,2560,Block,Bashant Rai*,LGD,330,District,2560,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,4535,Block,Basheerabad,LGD,698,District,4535,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,2711,Block,Basia,LGD,331,District,2711,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,2329,Block,Basirhat - I,LGD,303,District,2329,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,2330,Block,Basirhat - II,LGD,303,District,2330,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,2143,Block,Baska,LGD,616,District,2143,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +LGD,3339,Block,Basna,LGD,385,District,3339,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +LGD,3573,Block,Basoda,LGD,437,District,3573,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,28,Block,Basohli,LGD,7,District,28,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,1082,Block,Basopatti,LGD,206,District,1082,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,6408,Block,Bass,LGD,792,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +LGD,549,Block,Bassi,LGD,102,District,549,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,7133,Block,Bassi,LGD,95,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,220,Block,Bassi Pathana,LGD,30,District,220,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +LGD,2895,Block,Basta,LGD,346,District,2895,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,3362,Block,Bastanar,LGD,374,District,3362,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,3363,Block,Bastar,LGD,374,District,3363,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,939,Block,Basti,LGD,131,District,939,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +LGD,2915,Block,Basudevpur,LGD,348,District,2915,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +LGD,6334,Block,Basukedar,LGD,54,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +LGD,533,Block,Baswa,LGD,97,District,533,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,7339,Block,Batabari,LGD,278,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +LGD,7363,Block,Batadoo,LGD,90,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,203,Block,Batala,LGD,32,District,203,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +LGD,5337,Block,Bathalapalli,LGD,754,District,5337,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,245,Block,Bathinda,LGD,28,District,245,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +LGD,1069,Block,Bathnaha,LGD,221,District,1069,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,3456,Block,Batiyagarh,LGD,400,District,3456,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +LGD,6761,Block,Batote,LGD,621,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +LGD,3253,Block,Batouli,LGD,389,District,3253,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +LGD,1355,Block,Bausi,LGD,190,District,1355,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,3784,Block,Bavla,LGD,438,District,3784,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,415,Block,Bawal,LGD,72,District,415,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +LGD,7582,Block,Bawana,LGD,794,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,397,Block,Bawani Khera,LGD,59,District,397,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +LGD,3772,Block,Bayad,LGD,672,District,3772,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +LGD,513,Block,Bayana,LGD,91,District,513,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +LGD,578,Block,Baytoo,LGD,90,District,578,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,4742,Block,Bayyaram,LGD,688,District,4742,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,4323,Block,Bazarhatnoor,LGD,501,District,4323,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,609,Block,Beawar,LGD,774,District,609,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3758,Block,Becharaji,LGD,451,District,3758,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,4221,Block,Beed,LGD,470,District,4221,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,5391,Block,Beerongi Kothakota,LGD,753,District,5391,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6212,Block,Beerpur,LGD,681,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,3381,Block,Beerpur,LGD,431,District,3381,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +LGD,5,Block,Beerwah,LGD,2,District,5,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,3592,Block,Begamganj,LGD,421,District,3592,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,657,Block,Begun,LGD,95,District,657,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,3035,Block,Begunia,LGD,362,District,3035,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,1314,Block,Begusarai,LGD,191,District,1314,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,701,Block,Behat,LGD,177,District,701,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +LGD,1427,Block,Behea,LGD,193,District,1427,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,493,Block,Behror,LGD,782,District,493,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,4437,Block,Bejjanki,LGD,692,District,4437,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,4317,Block,Bejjur,LGD,699,District,4317,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,4308,Block,Bela,LGD,501,District,4308,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,1489,Block,Belaganj,LGD,196,District,1489,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,5438,Block,Belagavi,LGD,527,District,5438,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,7316,Block,Belargaon,LGD,377,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +LGD,1416,Block,Belchhi,LGD,212,District,1416,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,2244,Block,Beldanga - I,LGD,319,District,2244,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2245,Block,Beldanga - II,LGD,319,District,2245,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,1326,Block,Beldaur,LGD,202,District,1326,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +LGD,7243,Block,Belgahna,LGD,375,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,1352,Block,Belhar,LGD,190,District,1352,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,7489,Block,Bellaguntha,LGD,354,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,5049,Block,Bellamkonda,LGD,751,District,5049,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4350,Block,Bellampally,LGD,684,District,4350,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,6687,Block,Belonia,LGD,271,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +LGD,3147,Block,Belpara,LGD,345,District,3147,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,1072,Block,Belsand,LGD,221,District,1072,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,5563,Block,Beltangadi,LGD,534,District,5563,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,7281,Block,Beltara,LGD,375,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,975,Block,Belthara Road,LGD,126,District,975,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +LGD,5318,Block,Beluguppa,LGD,502,District,5318,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5554,Block,Belur,LGD,539,District,5554,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +LGD,3312,Block,Bemetara,LGD,650,District,3312,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,1393,Block,Ben,LGD,209,District,1393,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,2537,Block,Bengabad,LGD,329,District,2537,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,5544,Block,Bengaluru East,LGD,525,District,5544,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +LGD,5542,Block,Bengaluru North,LGD,525,District,5542,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +LGD,5543,Block,Bengaluru South,LGD,525,District,5543,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +LGD,2113,Block,Bengtol,LGD,612,District,2113,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +LGD,1091,Block,Benipatti,LGD,206,District,1091,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,1188,Block,Benipur,LGD,195,District,1188,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,3689,Block,Beohari,LGD,429,District,3689,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +LGD,3580,Block,Berasia,LGD,396,District,3580,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +LGD,2241,Block,Berhampore,LGD,319,District,2241,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,3093,Block,Berhampur,LGD,354,District,3093,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,407,Block,Beri,LGD,64,District,407,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +LGD,318,Block,Berinag,LGD,53,District,318,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,6776,Block,Beri Pattan,LGD,12,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,3315,Block,Berla,LGD,650,District,3315,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,2590,Block,Bermo,LGD,322,District,2590,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,2695,Block,Bero,LGD,339,District,2695,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,5131,Block,Bestavaripeta,LGD,790,District,5131,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,339,Block,Betalghat,LGD,51,District,339,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,1966,Block,Betasing,LGD,663,District,1966,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false, +LGD,5279,Block,Bethamcherla,LGD,755,District,5279,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2881,Block,Betnoti,LGD,365,District,2881,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,1028,Block,Bettiah,LGD,211,District,1028,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,3600,Block,Betul,LGD,394,District,3600,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,6989,Block,Betul Nagar,LGD,394,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,3742,Block,Bhabhar,LGD,789,District,3742,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,1453,Block,Bhabua,LGD,200,District,1453,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,3724,Block,Bhachau,LGD,449,District,3724,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,65,Block,Bhaderwah,LGD,4,District,65,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,662,Block,Bhadesar,LGD,95,District,662,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,3971,Block,Bhadgaon,LGD,478,District,3971,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,997,Block,Bhadohi,LGD,179,District,997,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +LGD,472,Block,Bhadra,LGD,101,District,472,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +LGD,4730,Block,Bhadrachalam,LGD,690,District,4730,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,7217,Block,Bhadrajun,LGD,104,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,2914,Block,Bhadrak,LGD,348,District,2914,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +LGD,4070,Block,Bhadravati,LGD,473,District,4070,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,5521,Block,Bhadravati,LGD,547,District,5521,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +LGD,130,Block,Bhadrota,LGD,22,District,130,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,2231,Block,Bhagawangola - I,LGD,319,District,2231,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2232,Block,Bhagawangola - II,LGD,319,District,2232,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2480,Block,Bhagawanpur - I,LGD,317,District,2480,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2479,Block,Bhagawanpur - II,LGD,317,District,2479,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,6747,Block,Bhagwa,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,1308,Block,Bhagwanpur,LGD,191,District,1308,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,1455,Block,Bhagwanpur,LGD,200,District,1455,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,6022,Block,Bhagwanpur,LGD,50,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +LGD,1271,Block,Bhagwanpur,LGD,224,District,1271,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,3552,Block,Bhagwanpura,LGD,414,District,3552,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,1235,Block,Bhagwanpur Hat,LGD,222,District,1235,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,4339,Block,Bhainsa,LGD,680,District,4339,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,3598,Block,Bhainsdehi,LGD,394,District,3598,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,3379,Block,Bhairamgarh,LGD,636,District,3379,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +LGD,3587,Block,Bhairunda,LGD,427,District,3587,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,7328,Block,Bhaisma,LGD,383,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,3244,Block,Bhaiyathan,LGD,648,District,3244,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,7315,Block,Bhakhara,LGD,377,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +LGD,86,Block,Bhalai,LGD,16,District,86,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,6753,Block,Bhalessa (Gandoh),LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,5455,Block,Bhalki,LGD,529,District,5455,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +LGD,6755,Block,Bhalla,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,6561,Block,Bhalukpong Eac,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,6709,Block,Bhalwal,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,4771,Block,Bhamini,LGD,743,District,4771,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4061,Block,Bhamragad,LGD,475,District,4061,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,4039,Block,Bhandara,LGD,471,District,4039,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +LGD,7373,Block,Bhandarej,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,1782,Block,Bhandari,LGD,250,District,1782,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,2513,Block,Bhandaria,LGD,328,District,2513,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,2912,Block,Bhandari Pokhari,LGD,348,District,2912,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +LGD,3406,Block,Bhander,LGD,401,District,3406,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +LGD,2603,Block,Bhandra,LGD,336,District,2603,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +LGD,2418,Block,Bhangar - I,LGD,304,District,2418,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2419,Block,Bhangar - II,LGD,304,District,2419,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,7209,Block,Bhanipura,LGD,96,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,6040,Block,Bhaniyana,LGD,103,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +LGD,333,Block,Bhanoli,LGD,45,District,333,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,937,Block,Bhanpur,LGD,131,District,937,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +LGD,3492,Block,Bhanpura,LGD,416,District,3492,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,7312,Block,Bhanpuri,LGD,374,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,3349,Block,Bhanupratappur,LGD,381,District,3349,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,3820,Block,Bhanvad,LGD,674,District,3820,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +LGD,7482,Block,Bhapur,LGD,367,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +LGD,153,Block,Bharari,LGD,15,District,153,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +LGD,6746,Block,Bharath Bagla,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,511,Block,Bharatpur,LGD,91,District,511,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +LGD,3231,Block,Bharatpur,LGD,760,District,3231,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,2247,Block,Bharatpur - I,LGD,319,District,2247,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2246,Block,Bharatpur - II,LGD,319,District,2246,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,1114,Block,Bhargama,LGD,188,District,1114,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,92,Block,Bharmour,LGD,16,District,92,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,2709,Block,Bharno,LGD,331,District,2709,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,7414,Block,Bharoli,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,839,Block,Bharthana,LGD,139,District,839,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +LGD,3916,Block,Bharuch,LGD,442,District,3916,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,7597,Block,Bharuch City,LGD,442,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,147,Block,Bharwain,LGD,26,District,147,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,3325,Block,Bhatapara,LGD,644,District,3325,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,2286,Block,Bhatar,LGD,306,District,2286,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,7276,Block,Bhatgaon,LGD,763,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,7310,Block,Bhatgaon,LGD,648,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,5488,Block,Bhatkal,LGD,550,District,5488,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,4010,Block,Bhatkuli,LGD,468,District,4010,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,2767,Block,Bhatli,LGD,347,District,2767,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,963,Block,Bhatpar Rani,LGD,137,District,963,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +LGD,5089,Block,Bhattiprolu,LGD,750,District,5089,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,88,Block,Bhattiyat,LGD,16,District,88,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,6436,Block,Bhattukalan St,LGD,61,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +LGD,283,Block,Bhatwari,LGD,57,District,283,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,5750,Block,Bhavani,LGD,573,District,5750,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,3854,Block,Bhavnagar,LGD,443,District,3854,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,7444,Block,Bhavnagar City,LGD,443,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,6855,Block,Bhawanigarh,LGD,43,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +LGD,1130,Block,Bhawanipur,LGD,214,District,1130,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,6939,Block,Bhawarna,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,2496,Block,Bhawnathpur,LGD,328,District,2496,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,2002,Block,Bhawraguri,LGD,294,District,2002,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +LGD,2764,Block,Bheden,LGD,347,District,2764,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,4448,Block,Bheemadevarpalli,LGD,686,District,4448,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,4963,Block,Bheemadole,LGD,748,District,4963,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6228,Block,Bheemaram,LGD,684,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,7541,Block,Bheemaram (20),LGD,681,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,4364,Block,Bheemgal,LGD,516,District,4364,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,4328,Block,Bheemini,LGD,684,District,4328,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,6223,Block,Bheempur,LGD,501,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,4865,Block,Bheemunipatnam,LGD,520,District,4865,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,7203,Block,Bhella,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,3828,Block,Bhesan,LGD,448,District,3828,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,3549,Block,Bhikangaon,LGD,414,District,3549,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,6853,Block,Bhikhiwind,LGD,609,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +LGD,325,Block,Bhikiasain,LGD,45,District,325,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,4391,Block,Bhiknoor,LGD,685,District,4391,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,7329,Block,Bhilai-3,LGD,378,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +LGD,3764,Block,Bhiloda,LGD,672,District,3764,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +LGD,634,Block,Bhilwara,LGD,92,District,634,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,639,Block,Bhim,LGD,112,District,639,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,4984,Block,Bhimavaram,LGD,523,District,4984,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,7299,Block,Bhimbhauri,LGD,650,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,7027,Block,Bhimpur,LGD,394,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,612,Block,Bhinay,LGD,86,District,612,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,3392,Block,Bhind,LGD,395,District,3392,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,6917,Block,Bhinder,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,6994,Block,Bhind Nagar,LGD,395,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,923,Block,Bhinga,LGD,181,District,923,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false, +LGD,588,Block,Bhinmal,LGD,104,District,588,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,1022,Block,Bhitaha,LGD,211,District,1022,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,3401,Block,Bhitarwar,LGD,407,District,3401,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,911,Block,Bhiti,LGD,121,District,911,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +LGD,4166,Block,Bhiwandi,LGD,497,District,4166,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +LGD,398,Block,Bhiwani,LGD,59,District,398,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +LGD,4036,Block,Bhiwapur,LGD,484,District,4036,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,777,Block,Bhogaon,LGD,166,District,777,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +LGD,4840,Block,Bhogapuram,LGD,521,District,4840,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,846,Block,Bhognipur,LGD,156,District,846,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +LGD,2891,Block,Bhograi,LGD,346,District,2891,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,6543,Block,Bhoirymbong,LGD,276,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +LGD,4102,Block,Bhokar,LGD,485,District,4102,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,4125,Block,Bhokardan,LGD,479,District,4125,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +LGD,6744,Block,Bhomag,LGD,627,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,4628,Block,Bhongir,LGD,697,District,4628,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,4574,Block,Bhoothpur,LGD,512,District,4574,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,569,Block,Bhopalgarh,LGD,107,District,569,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,3376,Block,Bhopalpattnam,LGD,636,District,3376,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +LGD,4198,Block,Bhor,LGD,490,District,4198,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,7529,Block,Bhoraj,LGD,501,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,146,Block,Bhoranj,LGD,17,District,146,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,1217,Block,Bhorey,LGD,197,District,1217,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,6885,Block,Bhota,LGD,17,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,7400,Block,Bhothiya,LGD,762,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,2990,Block,Bhuban,LGD,352,District,2990,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +LGD,7498,Block,Bhubaneswar,LGD,362,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,4291,Block,Bhudargad,LGD,480,District,4291,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,3726,Block,Bhuj,LGD,449,District,3726,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,205,Block,Bhulath,LGD,35,District,205,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +LGD,4237,Block,Bhum,LGD,488,District,4237,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +LGD,6437,Block,Bhuna St,LGD,61,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +LGD,6887,Block,Bhuntar,LGD,20,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,4682,Block,Bhupalpally,LGD,687,District,4682,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,6057,Block,Bhupalsagar,LGD,95,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,2027,Block,Bhuragaon,LGD,296,District,2027,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +LGD,3965,Block,Bhusawal,LGD,478,District,3965,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,6665,Block,Bhusawar,LGD,91,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +LGD,6645,Block,Bhuvanagiri,LGD,570,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,3566,Block,Biaora,LGD,422,District,3566,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,1299,Block,Bibhutpur,LGD,217,District,1299,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,4629,Block,Bibinagar,LGD,697,District,4629,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,6242,Block,Bibipet,LGD,685,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,4916,Block,Biccavolu,LGD,505,District,4916,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,6058,Block,Bichhiwara,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,3645,Block,Bichhiya,LGD,415,District,3645,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +LGD,3657,Block,Bichhua,LGD,399,District,3657,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,4374,Block,Bichkunda,LGD,685,District,4374,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,7013,Block,Bicholi Hapsi,LGD,410,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,5612,Block,Bicholim,LGD,551,District,5612,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +LGD,5457,Block,Bidar,LGD,529,District,5457,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +LGD,6426,Block,Bidasar,LGD,96,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,841,Block,Bidhuna,LGD,122,District,841,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +LGD,1280,Block,Bidupur,LGD,224,District,1280,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,818,Block,Bighapur,LGD,186,District,818,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +LGD,1386,Block,Bihar,LGD,209,District,1386,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,1166,Block,Bihariganj,LGD,205,District,1166,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,7245,Block,Biharpur,LGD,648,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,1330,Block,Bihpur,LGD,192,District,1330,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,2049,Block,Bihpuria,LGD,295,District,2049,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +LGD,1403,Block,Bihta,LGD,212,District,1403,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,1216,Block,Bijaipur,LGD,197,District,1216,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,3378,Block,Bijapur,LGD,636,District,3378,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +LGD,7476,Block,Bijatala,LGD,365,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,3433,Block,Bijawar,LGD,398,District,3433,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,54,Block,Bijbehara,LGD,1,District,54,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,2762,Block,Bijepur,LGD,347,District,2762,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,4584,Block,Bijinapally,LGD,694,District,4584,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,2115,Block,Bijni,LGD,612,District,2115,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +LGD,713,Block,Bijnor,LGD,132,District,713,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +LGD,638,Block,Bijoliya,LGD,92,District,638,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,7580,Block,Bijwasan,LGD,84,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +LGD,473,Block,Bikaner,LGD,93,District,473,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,906,Block,Bikapur,LGD,140,District,906,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +LGD,1405,Block,Bikram,LGD,212,District,1405,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,1461,Block,Bikramganj,LGD,215,District,1461,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,3329,Block,Bilaigarh,LGD,763,District,3329,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,573,Block,Bilara,LGD,107,District,573,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,720,Block,Bilari,LGD,171,District,720,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +LGD,6018,Block,Bilasipara Pt,LGD,285,District,2009,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +LGD,725,Block,Bilaspur,LGD,176,District,725,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +LGD,3295,Block,Bilaspur,LGD,375,District,3295,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,362,Block,Bilaspur,LGD,76,District,362,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +LGD,6974,Block,Bilaspur,LGD,436,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +LGD,156,Block,Bilaspur Sadar,LGD,15,District,156,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +LGD,1652,Block,Bilat Circle,LGD,232,District,1652,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +LGD,5444,Block,Bilgi,LGD,524,District,5444,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,812,Block,Bilgram,LGD,150,District,812,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +LGD,3297,Block,Bilha,LGD,375,District,3297,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,848,Block,Bilhaur,LGD,157,District,848,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +LGD,1900,Block,Bilkhawthlir,LGD,263,District,1900,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false, +LGD,27,Block,Billawar,LGD,7,District,27,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,4105,Block,Biloli,LGD,485,District,4105,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,780,Block,Bilsi,LGD,133,District,780,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +LGD,3443,Block,Bina,LGD,425,District,3443,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,1383,Block,Bind,LGD,209,District,1383,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,877,Block,Bindki,LGD,142,District,877,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +LGD,3135,Block,Binika,LGD,372,District,3135,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +LGD,2984,Block,Binjharpur,LGD,356,District,2984,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,2442,Block,Binpur - I,LGD,703,District,2442,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +LGD,2441,Block,Binpur - II,LGD,703,District,2441,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +LGD,3137,Block,Biramaharajpur,LGD,372,District,3137,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +LGD,2816,Block,Biramitrapur,LGD,373,District,2816,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,1193,Block,Biraul,LGD,195,District,1193,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,6892,Block,Birhu Kalan,LGD,26,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,2941,Block,Biridi,LGD,355,District,2941,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +LGD,4375,Block,Birkur,LGD,685,District,4375,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,2540,Block,Birni,LGD,329,District,2540,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,6354,Block,Bironkhal,LGD,52,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,1313,Block,Birpur,LGD,191,District,1313,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,7033,Block,Birsa,LGD,392,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,3463,Block,Birsinghpur,LGD,426,District,3463,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +LGD,791,Block,Bisalpur,LGD,173,District,791,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +LGD,779,Block,Bisauli,LGD,133,District,779,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +LGD,1092,Block,Bisfi,LGD,206,District,1092,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,6699,Block,Bishalgarh,LGD,653,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +LGD,3175,Block,Bishamakatak,LGD,370,District,3175,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,81,Block,Bishnah,LGD,5,District,81,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,1874,Block,Bishnupur,LGD,252,District,1874,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false, +LGD,2415,Block,Bishnupur - I,LGD,304,District,2415,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2416,Block,Bishnupur - II,LGD,304,District,2416,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2624,Block,Bishrampur,LGD,338,District,2624,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,2652,Block,Bishungarh,LGD,332,District,2652,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,2706,Block,Bishunpur,LGD,331,District,2706,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,2502,Block,Bishunpura,LGD,328,District,2502,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,2864,Block,Bisoi,LGD,365,District,2864,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,2818,Block,Bisra,LGD,373,District,2818,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,7218,Block,Bissau,LGD,106,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,806,Block,Biswan,LGD,183,District,806,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +LGD,2045,Block,Biswanath,LGD,705,District,2045,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +LGD,1303,Block,Bithan,LGD,217,District,1303,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,5621,Block,Bitra,LGD,553,District,5621,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,5209,Block,B.Kodur,LGD,504,District,5209,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,6815,Block,Bk Pora,LGD,2,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,2557,Block,Boarijor,LGD,330,District,2557,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,4324,Block,Boath,LGD,501,District,4324,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,4816,Block,Bobbili,LGD,521,District,4816,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,1206,Block,Bochaha,LGD,208,District,1206,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,6020,Block,Bodeli,LGD,668,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +LGD,3157,Block,Boden,LGD,368,District,3157,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +LGD,4370,Block,Bodhan,LGD,516,District,4370,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,1505,Block,Bodh Gaya,LGD,196,District,1505,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,5842,Block,Bodinayakanur,LGD,588,District,5842,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +LGD,3299,Block,Bodla,LGD,382,District,3299,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +LGD,7250,Block,Bodri,LGD,375,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,3964,Block,Bodvad,LGD,478,District,3964,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,5159,Block,Bogole,LGD,515,District,5159,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,4429,Block,Boinpalli,LGD,683,District,4429,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,3211,Block,Boipariguda,LGD,363,District,3211,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,2111,Block,Boitamari,LGD,281,District,2111,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +LGD,2082,Block,Bokakhat,LGD,288,District,2082,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +LGD,1079,Block,Bokhara,LGD,221,District,1079,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,2124,Block,Boko,LGD,291,District,2124,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,3034,Block,Bolagad,LGD,362,District,3034,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,2722,Block,Bolba,LGD,342,District,2722,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,1643,Block,Boleng Adc,LGD,679,District,1643,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,5061,Block,Bollapalli,LGD,751,District,5061,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2264,Block,Bolpur Sriniketan,LGD,307,District,2264,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,4550,Block,Bomaraspeta,LGD,698,District,4550,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,6568,Block,Bomdila Hq,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,4613,Block,Bommalaramaram,LGD,697,District,4613,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,5307,Block,Bommanahal,LGD,502,District,5307,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,4765,Block,Bonakal,LGD,509,District,4765,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,4829,Block,Bondapalli,LGD,521,District,4829,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,6433,Block,Bondkalan St,LGD,701,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +LGD,2110,Block,Bongaigaon (Pt),LGD,281,District,2110,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +LGD,2317,Block,Bongaon,LGD,303,District,2317,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,6557,Block,Bongkhar Circle,LGD,238,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,38,Block,Boniyar,LGD,3,District,38,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,529,Block,Bonli,LGD,113,District,529,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,2605,Block,Boram,LGD,327,District,2605,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,1683,Block,Bordumsa Adc,LGD,229,District,1683,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,6594,Block,Borduria Circle,LGD,239,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +LGD,7330,Block,Bori,LGD,378,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +LGD,3200,Block,Boriguma,LGD,363,District,3200,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,2566,Block,Borio,LGD,340,District,2566,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,7181,Block,Borivali,LGD,483,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +LGD,6490,Block,Borobekra,LGD,713,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false, +LGD,3867,Block,Borsad,LGD,440,District,3867,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,6013,Block,Borum,LGD,237,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,3850,Block,Botad,LGD,676,District,3850,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +LGD,7435,Block,Botad City,LGD,676,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +LGD,1846,Block,Botsa,LGD,245,District,1846,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +LGD,3130,Block,Boudh,LGD,349,District,3130,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +LGD,4630,Block,B Pochampally,LGD,697,District,4630,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,3067,Block,Brahmagiri,LGD,369,District,3067,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,5205,Block,Brahmamgarimattam,LGD,504,District,5205,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4067,Block,Brahmapuri,LGD,473,District,4067,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,5320,Block,Brahmasamudram,LGD,502,District,5320,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,7068,Block,Brahmavara,LGD,549,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +LGD,5380,Block,Buchinaidu Kandriga,LGD,752,District,5380,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5170,Block,Buchireddipalem,LGD,515,District,5170,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5966,Block,Budalur,LGD,586,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,782,Block,Budaun,LGD,133,District,782,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +LGD,7,Block,Budgam,LGD,2,District,7,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,2413,Block,Budge Budge - I,LGD,304,District,2413,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2414,Block,Budge Budge - II,LGD,304,District,2414,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,709,Block,Budhana,LGD,172,District,709,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +LGD,248,Block,Budhlada,LGD,37,District,248,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false, +LGD,3588,Block,Budni,LGD,427,District,3588,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,6213,Block,Buggaram,LGD,681,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,3072,Block,Buguda,LGD,354,District,3072,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,489,Block,Buhana,LGD,106,District,489,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,5345,Block,Bukkapatnam,LGD,754,District,5345,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5329,Block,Bukkaraya Samudram,LGD,502,District,5329,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,746,Block,Bulandshahr,LGD,134,District,746,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +LGD,3984,Block,Buldana,LGD,472,District,3984,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,626,Block,Bundi,LGD,94,District,626,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +LGD,2698,Block,Bundu,LGD,339,District,2698,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,2397,Block,Bundwan,LGD,321,District,2397,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,1912,Block,Bunghmun,LGD,265,District,1912,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false, +LGD,6488,Block,Bungte Chiru,LGD,712,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,1918,Block,Bungtlang South,LGD,264,District,1918,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false, +LGD,6770,Block,Bunjwah,LGD,620,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,6847,Block,Buragaon Eac,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,7569,Block,Burari,LGD,80,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false, +LGD,2289,Block,Burdwan - I,LGD,306,District,2289,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2290,Block,Burdwan - II,LGD,306,District,2290,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,4736,Block,Burgampahad,LGD,690,District,4736,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,3719,Block,Burhanpur,LGD,397,District,3719,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +LGD,964,Block,Burhanpur,LGD,123,District,964,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +LGD,6972,Block,Burhanpur Nagar,LGD,397,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +LGD,6988,Block,Burhar,LGD,429,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +LGD,4794,Block,Burja,LGD,519,District,4794,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,2682,Block,Burmu,LGD,339,District,2682,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,2248,Block,Burwan,LGD,319,District,2248,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,4873,Block,Butchayyapeta,LGD,744,District,4873,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4948,Block,Buttayagudem,LGD,748,District,4948,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1441,Block,Buxar,LGD,194,District,1441,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,3434,Block,Buxwaha,LGD,398,District,3434,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,5493,Block,Byadgi,LGD,540,District,5493,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +LGD,948,Block,Campierganj,LGD,148,District,948,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +LGD,5619,Block,Canacona,LGD,793,District,5619,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +LGD,2420,Block,Canning - I,LGD,304,District,2420,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2421,Block,Canning - II,LGD,304,District,2421,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,5916,Block,Car Nicobar,LGD,603,District,5916,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false, +LGD,5256,Block,C.Belagal,LGD,511,District,5256,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,2065,Block,Chabua,LGD,286,District,2065,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +LGD,3683,Block,Chachaura,LGD,406,District,3683,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +LGD,7560,Block,Chachian,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,137,Block,Chachyot,LGD,22,District,137,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,7070,Block,Chadchan,LGD,530,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,6897,Block,Chadiyar,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,8,Block,Chadoora,LGD,2,District,8,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,5303,Block,Chagalamarri,LGD,755,District,5303,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4959,Block,Chagallu,LGD,505,District,4959,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,1739,Block,Chaglagam Circle,LGD,628,District,1739,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +LGD,2739,Block,Chaibasa,LGD,343,District,2739,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,887,Block,Chail,LGD,158,District,887,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +LGD,2713,Block,Chainpur,LGD,331,District,2713,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,1452,Block,Chainpur,LGD,200,District,1452,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,2634,Block,Chainpur,LGD,338,District,2634,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,1534,Block,Chakai,LGD,198,District,1534,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,3116,Block,Chakapada,LGD,359,District,3116,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,840,Block,Chakarnagar,LGD,139,District,840,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +LGD,2314,Block,Chakdah,LGD,320,District,2314,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,994,Block,Chakia,LGD,135,District,994,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +LGD,1051,Block,Chakia(Pipra),LGD,213,District,1051,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,6036,Block,Chakisain,LGD,52,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,1436,Block,Chakki,LGD,194,District,1436,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,1895,Block,Chakpikarong,LGD,253,District,1895,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +LGD,2731,Block,Chakradharpur,LGD,343,District,2731,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,300,Block,Chakrata,LGD,49,District,300,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +LGD,5234,Block,Chakrayapet,LGD,504,District,5234,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,550,Block,Chaksu,LGD,102,District,550,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,2613,Block,Chakulia,LGD,327,District,2613,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,4230,Block,Chakur,LGD,481,District,4230,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,5939,Block,Chalakkudy,LGD,566,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +LGD,7340,Block,Chalgali,LGD,649,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,3972,Block,Chalisgaon,LGD,478,District,3972,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,2651,Block,Chalkusa,LGD,332,District,2651,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,5504,Block,Challakere,LGD,533,District,5504,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +LGD,5035,Block,Challapalli,LGD,510,District,5035,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,5577,Block,Chamarajanagar,LGD,531,District,5577,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +LGD,2122,Block,Chamaria,LGD,291,District,2122,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,90,Block,Chamba,LGD,16,District,90,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,1709,Block,Chambang Circle,LGD,677,District,1709,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false, +LGD,265,Block,Chamkaur Sahib,LGD,42,District,265,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +LGD,285,Block,Chamoli,LGD,47,District,285,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,4058,Block,Chamorshi,LGD,475,District,4058,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,3281,Block,Champa,LGD,379,District,3281,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,334,Block,Champawat,LGD,48,District,334,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +LGD,6489,Block,Champhai,LGD,712,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,1908,Block,Champhai,LGD,262,District,1908,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false, +LGD,2839,Block,Champua,LGD,361,District,2839,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,7374,Block,Chamu,LGD,107,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,1353,Block,Chanan,LGD,190,District,1353,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,1369,Block,Chanan*,LGD,204,District,1369,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +LGD,3750,Block,Chanasma,LGD,455,District,3750,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,2210,Block,Chanchal - I,LGD,316,District,2210,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,2211,Block,Chanchal - II,LGD,316,District,2211,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,1451,Block,Chand,LGD,200,District,1451,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,6996,Block,Chand,LGD,399,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,3190,Block,Chandahandi,LGD,366,District,3190,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,4652,Block,Chandampeta,LGD,514,District,4652,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,2596,Block,Chandankiyari,LGD,322,District,2596,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,5008,Block,Chandarlapadu,LGD,749,District,5008,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,993,Block,Chandauli,LGD,135,District,993,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +LGD,722,Block,Chandausi,LGD,659,District,722,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +LGD,2919,Block,Chandbali,LGD,348,District,2919,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +LGD,1894,Block,Chandel,LGD,253,District,1894,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +LGD,3685,Block,Chanderi,LGD,391,District,3685,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +LGD,4294,Block,Chandgad,LGD,480,District,4294,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,1381,Block,Chandi,LGD,209,District,1381,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,3483,Block,Chandia,LGD,436,District,3483,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +LGD,277,Block,Chandigarh,LGD,44,District,277,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.729350,76.780565,inherited:District,76.705183,30.666359,76.849445,30.795209,SOI_Districts,2023-12-11,false, +LGD,2748,Block,Chandil,LGD,341,District,2748,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,2481,Block,Chandipur,LGD,317,District,2481,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2351,Block,Chanditala - I,LGD,312,District,2351,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,2352,Block,Chanditala - II,LGD,312,District,2352,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,3426,Block,Chandla,LGD,398,District,3426,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,7574,Block,Chandni Chowk,LGD,795,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,7254,Block,Chando,LGD,649,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,716,Block,Chandpur,LGD,132,District,716,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +LGD,5384,Block,Chandragiri,LGD,752,District,5384,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2446,Block,Chandrakona - I,LGD,318,District,2446,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,2447,Block,Chandrakona - II,LGD,318,District,2447,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,3174,Block,Chandrapur,LGD,370,District,3174,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,7354,Block,Chandrapur,LGD,762,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,2131,Block,Chandrapur,LGD,618,District,2131,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +LGD,4071,Block,Chandrapur,LGD,473,District,4071,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,2589,Block,Chandrapura,LGD,322,District,2589,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,5145,Block,Chandra Sekhara Puram,LGD,790,District,5145,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3711,Block,Chandra Shekhar Azad Nagar,LGD,639,District,3711,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +LGD,4747,Block,Chandrugonda,LGD,690,District,4747,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,6669,Block,Chandur,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,4655,Block,Chandur,LGD,514,District,4655,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4005,Block,Chandurbazar,LGD,468,District,4005,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,4013,Block,Chandur Railway,LGD,468,District,4013,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,4419,Block,Chandurthi,LGD,683,District,4419,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,4148,Block,Chandvad,LGD,487,District,4148,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,2643,Block,Chandwa,LGD,335,District,2643,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,2530,Block,Chandwara,LGD,334,District,2530,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +LGD,5671,Block,Changanassery,LGD,560,District,5671,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +LGD,1671,Block,Changlang Hq,LGD,229,District,1671,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,1780,Block,Changpang,LGD,250,District,1780,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,1761,Block,Changtongya,LGD,246,District,1761,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,2694,Block,Chanho,LGD,339,District,2694,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,5514,Block,Channagiri,LGD,535,District,5514,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +LGD,5607,Block,Channapatna,LGD,631,District,5607,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +LGD,6802,Block,Channapora/Natipora,LGD,13,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +LGD,5560,Block,Channarayapatna,LGD,539,District,5560,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +LGD,1025,Block,Chanpatia,LGD,211,District,1025,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,5213,Block,Chapad,LGD,504,District,5213,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,6019,Block,Chapar Pt,LGD,285,District,2010,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +LGD,2305,Block,Chapra,LGD,320,District,2305,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,1258,Block,Chapra,LGD,218,District,1258,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,6293,Block,Charakonda,LGD,694,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,3348,Block,Charama,LGD,381,District,3348,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,9,Block,Charar- E- Shrief,LGD,2,District,9,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,1076,Block,Charaut,LGD,221,District,1076,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,1815,Block,Chare,LGD,249,District,1815,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false, +LGD,2042,Block,Chariduar,LGD,301,District,2042,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +LGD,869,Block,Charkhari,LGD,165,District,869,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false, +LGD,4510,Block,Charminar,LGD,507,District,4510,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,1430,Block,Charpokhari,LGD,193,District,1430,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,2595,Block,Chas,LGD,322,District,2595,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,6738,Block,Chassana,LGD,627,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,2518,Block,Chatra,LGD,323,District,2518,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,5001,Block,Chatrai,LGD,748,District,5001,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,312,Block,Chaubatta Khal,LGD,52,District,312,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,1438,Block,Chaugain,LGD,194,District,1438,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,326,Block,Chaukhutiya,LGD,45,District,326,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,185,Block,Chaupal,LGD,23,District,185,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,2644,Block,Chauparan,LGD,332,District,2644,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,3650,Block,Chaurai,LGD,399,District,3650,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,951,Block,Chauri Chaura,LGD,148,District,951,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +LGD,1442,Block,Chausa,LGD,194,District,1442,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,1170,Block,Chausa,LGD,205,District,1170,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,1325,Block,Chautham,LGD,202,District,1325,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +LGD,530,Block,Chauth Ka Barwara,LGD,113,District,530,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,5653,Block,Chavakkad,LGD,566,District,5653,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +LGD,1916,Block,Chawngte,LGD,264,District,1916,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false, +LGD,1590,Block,Chayangtajo Adc,LGD,231,District,1590,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,5079,Block,Chebrolu,LGD,506,District,5079,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,7375,Block,Chechat,LGD,109,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +LGD,4858,Block,Cheedikada,LGD,744,District,4858,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4827,Block,Cheepurupalli,LGD,521,District,4827,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,4466,Block,Chegunta,LGD,513,District,4466,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,1273,Block,Chehra Kalan,LGD,224,District,1273,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,5172,Block,Chejerla,LGD,515,District,5172,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,7407,Block,Chelur,LGD,630,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +LGD,1753,Block,Chen,LGD,247,District,1753,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,73,Block,Chenani,LGD,14,District,73,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +LGD,1468,Block,Chenari,LGD,215,District,1468,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,2021,Block,Chenga,LGD,280,District,2021,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +LGD,5706,Block,Chengalpattu,LGD,730,District,5706,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +LGD,5725,Block,Chengam,LGD,593,District,5725,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,5677,Block,Chengannur,LGD,554,District,5677,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +LGD,4712,Block,Chennaraopet,LGD,522,District,4712,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,5347,Block,Chennekothapalli,LGD,754,District,5347,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5226,Block,Chennur,LGD,504,District,5226,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4356,Block,Chennur,LGD,684,District,4356,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,6648,Block,Cheranmahadevi,LGD,592,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +LGD,1307,Block,Cheria Bariarpur,LGD,191,District,1307,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,4672,Block,Cherial,LGD,692,District,4672,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,4726,Block,Cherla,LGD,690,District,4726,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,5673,Block,Cherthala,LGD,554,District,5673,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +LGD,5090,Block,Cherukupalli,LGD,750,District,5090,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1827,Block,Chessore,LGD,765,District,1827,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1614,Block,Chetam Peer Yapu Circle,LGD,241,District,1614,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,1807,Block,Chetheba,LGD,248,District,1807,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,5622,Block,Chetlat,LGD,553,District,5622,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,6617,Block,Chetpet,LGD,593,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,4529,Block,Chevella,LGD,518,District,4529,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,1376,Block,Chewara,LGD,219,District,1376,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false, +LGD,5722,Block,Cheyyar,LGD,593,District,5722,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,5711,Block,Cheyyur,LGD,730,District,5711,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +LGD,676,Block,Chhabra,LGD,89,District,676,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +LGD,363,Block,Chhachhrauli,LGD,76,District,363,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +LGD,7424,Block,Chhaigaon Makhan,LGD,405,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,7240,Block,Chhal,LGD,386,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,3660,Block,Chhapara,LGD,428,District,3660,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,761,Block,Chhata,LGD,167,District,761,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +LGD,1103,Block,Chhatapur,LGD,223,District,1103,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,479,Block,Chhatargarh,LGD,93,District,479,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,3429,Block,Chhatarpur,LGD,398,District,3429,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,2620,Block,Chhatarpur,LGD,338,District,2620,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,7587,Block,Chhatarpur,LGD,83,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +LGD,7006,Block,Chhatarpur Nagar,LGD,398,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,2359,Block,Chhatna,LGD,305,District,2359,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,4137,Block,Chhatrapati Sambhajinagar,LGD,469,District,4137,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,3085,Block,Chhatrapur,LGD,354,District,3085,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,6950,Block,Chhatri,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,70,Block,Chhatroo,LGD,620,District,70,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,2120,Block,Chhaygaon,LGD,291,District,2120,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,3014,Block,Chhendipada,LGD,344,District,3014,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +LGD,833,Block,Chhibramau,LGD,155,District,833,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +LGD,3374,Block,Chhindgarh,LGD,642,District,3374,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +LGD,3654,Block,Chhindwara,LGD,399,District,3654,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,7020,Block,Chhindwara Nagar,LGD,399,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,677,Block,Chhipabarod,LGD,89,District,677,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +LGD,1305,Block,Chhorahi,LGD,191,District,1305,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,3901,Block,Chhota Udaipur,LGD,668,District,3901,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +LGD,7318,Block,Chhotedongar,LGD,637,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false, +LGD,7364,Block,Chhoti Khatoo,LGD,768,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,698,Block,Chhoti Sadri,LGD,629,District,698,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +LGD,6042,Block,Chhoti Sarwan,LGD,88,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,3302,Block,Chhuikhadan,LGD,759,District,3302,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,3336,Block,Chhura,LGD,645,District,3336,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +LGD,3306,Block,Chhuriya,LGD,388,District,3306,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +LGD,3601,Block,Chicholi,LGD,394,District,3601,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,5791,Block,Chidambaram,LGD,570,District,5791,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,1845,Block,Chiephobozou,LGD,245,District,1845,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +LGD,4442,Block,Chigurumamidi,LGD,508,District,4442,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,7545,Block,Chikada,LGD,452,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +LGD,4002,Block,Chikhaldara,LGD,468,District,4002,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,6059,Block,Chikhali,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,3925,Block,Chikhli,LGD,453,District,3925,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +LGD,3983,Block,Chikhli,LGD,472,District,3983,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,7487,Block,Chikiti,LGD,354,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,5596,Block,Chikkaballapura,LGD,630,District,5596,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +LGD,5530,Block,Chikkamagaluru,LGD,532,District,5530,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,5532,Block,Chiknayakanhalli,LGD,548,District,5532,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,5433,Block,Chikodi,LGD,527,District,5433,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,5070,Block,Chilakaluripet H/O.Purushotha Patnam,LGD,751,District,5070,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5366,Block,Chilamathur,LGD,754,District,5366,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7497,Block,Chilika,LGD,362,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,6483,Block,Chilivai Phaibung,LGD,257,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +LGD,4667,Block,Chilkur,LGD,696,District,4667,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,5190,Block,Chillakur,LGD,515,District,5190,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,6754,Block,Chilly Pingal,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,6274,Block,Chilpched,LGD,513,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,6259,Block,Chilpur,LGD,689,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,5128,Block,Chimakurthy,LGD,517,District,5128,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,4065,Block,Chimur,LGD,473,District,4065,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,5125,Block,Chinaganjam,LGD,750,District,5125,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5583,Block,Chincholi,LGD,538,District,5583,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,1887,Block,Chingai,LGD,260,District,1887,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false, +LGD,1822,Block,Chingmei,LGD,249,District,1822,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false, +LGD,2507,Block,Chinia,LGD,328,District,2507,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,4587,Block,Chinnachintakunta,LGD,512,District,4587,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,5385,Block,Chinnagottigallu,LGD,752,District,5385,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6254,Block,Chinnagudur,LGD,688,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,4460,Block,Chinnakodur,LGD,692,District,4460,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,5236,Block,Chinnamandem,LGD,753,District,5236,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6287,Block,Chinnambavi,LGD,693,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,5977,Block,Chinnasalem,LGD,729,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +LGD,3402,Block,Chinour,LGD,407,District,3402,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,2346,Block,Chinsurah - Magra,LGD,312,District,2346,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,6314,Block,Chintalamanepally,LGD,699,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,4944,Block,Chintalapudi,LGD,748,District,4944,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5600,Block,Chintamani,LGD,630,District,5600,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +LGD,4760,Block,Chinthakani,LGD,509,District,4760,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,5231,Block,Chinthakommadinne,LGD,504,District,5231,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,6303,Block,Chinthalapalem,LGD,696,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,4849,Block,Chinthapalli,LGD,745,District,4849,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4650,Block,Chinthapally,LGD,514,District,4650,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4732,Block,Chinturu,LGD,791,District,4732,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,282,Block,Chinyali Saur,LGD,57,District,282,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,4269,Block,Chiplun,LGD,492,District,4269,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,5291,Block,Chippagiri,LGD,511,District,5291,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,1040,Block,Chiraia,LGD,213,District,1040,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,5123,Block,Chirala,LGD,750,District,5123,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6758,Block,Chiralla,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,488,Block,Chirawa,LGD,106,District,488,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,5689,Block,Chirayinkeezhu,LGD,565,District,5689,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +LGD,192,Block,Chirgaon,LGD,23,District,192,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,7268,Block,Chirmiri,LGD,760,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,7084,Block,Chitaguppa,LGD,529,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +LGD,6046,Block,Chitalwana,LGD,104,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,2664,Block,Chitarpur,LGD,607,District,2664,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +LGD,5505,Block,Chitradurga,LGD,533,District,5505,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +LGD,6799,Block,Chitragam,LGD,625,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false, +LGD,3223,Block,Chitrakonda,LGD,364,District,3223,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +LGD,3703,Block,Chitrangi,LGD,638,District,3703,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +LGD,5193,Block,Chittamur,LGD,752,District,5193,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5585,Block,Chittapur,LGD,538,District,5585,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,5421,Block,Chittoor Rural,LGD,503,District,5421,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,7427,Block,Chittoor Urban,LGD,503,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,659,Block,Chittorgarh,LGD,95,District,659,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,5650,Block,Chittur,LGD,563,District,5650,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +LGD,5245,Block,Chitvel,LGD,752,District,5245,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4633,Block,Chityal,LGD,514,District,4633,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4681,Block,Chityal,LGD,687,District,4681,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,4639,Block,Chivemla,LGD,696,District,4639,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,1812,Block,Chizami,LGD,248,District,1812,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,4872,Block,Chodavaram,LGD,744,District,4872,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,584,Block,Chohtan,LGD,90,District,584,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,1975,Block,Chokpot,LGD,277,District,1975,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +LGD,541,Block,Chomu,LGD,102,District,541,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,1731,Block,Chongkham Eac,LGD,678,District,1731,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false, +LGD,3960,Block,Chopda,LGD,478,District,3960,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,4424,Block,Choppadandi,LGD,508,District,4424,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,2191,Block,Chopra,LGD,311,District,2191,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,3938,Block,Chorasi,LGD,459,District,3938,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,3794,Block,Chotila,LGD,460,District,3794,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,4631,Block,Choutuppal,LGD,697,District,4631,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,7186,Block,Chowdapur,LGD,698,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,5413,Block,Chowdepalle,LGD,753,District,5413,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6703,Block,Chowki Choura,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,7188,Block,Chowtakur,LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,1806,Block,Chozuba,LGD,248,District,1806,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,1762,Block,Chuchuyimlang,LGD,246,District,1762,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,3796,Block,Chuda,LGD,460,District,3796,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,1791,Block,Chukitong,LGD,250,District,1791,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,1797,Block,Chumukedima,LGD,758,District,1797,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1003,Block,Chunar,LGD,170,District,1003,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +LGD,6376,Block,Chunchupalli,LGD,690,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,1547,Block,Chungthang,LGD,226,District,1547,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false, +LGD,5987,Block,Chunlikha,LGD,757,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1871,Block,Churachandpur,LGD,254,District,1871,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,84,Block,Churah,LGD,16,District,84,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,2658,Block,Churchu,LGD,332,District,2658,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,3698,Block,Churhat,LGD,433,District,3698,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +LGD,484,Block,Churu,LGD,96,District,484,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,7039,Block,City Center,LGD,407,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,5897,Block,Coimbatore North,LGD,569,District,5897,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,5898,Block,Coimbatore South,LGD,569,District,5898,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,929,Block,Colonelganj,LGD,147,District,929,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +LGD,2488,Block,Contai - I,LGD,317,District,2488,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2490,Block,Contai - III,LGD,317,District,2490,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2183,Block,Cooch Behar - I,LGD,308,District,2183,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,2184,Block,Cooch Behar - II,LGD,308,District,2184,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,5758,Block,Coonoor,LGD,587,District,5758,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +LGD,5789,Block,Cuddalore,LGD,570,District,5789,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,5117,Block,Cumbum,LGD,790,District,5117,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2962,Block,Cuttack,LGD,350,District,2962,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,3905,Block,Dabhoi,LGD,461,District,3905,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,3284,Block,Dabhra,LGD,762,District,3284,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,3400,Block,Dabra,LGD,407,District,3400,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,3192,Block,Dabugan,LGD,366,District,3192,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,389,Block,Dabwali,LGD,74,District,389,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +LGD,5045,Block,Dachepalli,LGD,751,District,5045,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6765,Block,Dachhan,LGD,620,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,171,Block,Dadahu,LGD,24,District,171,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,1687,Block,Dadam Circle,LGD,239,District,1687,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +LGD,6918,Block,Dadasiba,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,1963,Block,Dadenggiri,LGD,278,District,1963,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +LGD,2659,Block,Dadi,LGD,332,District,2659,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,3949,Block,Dadra & Nagar Haveli,LGD,465,District,3949,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,false, +LGD,402,Block,Dadri,LGD,701,District,402,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +LGD,742,Block,Dadri,LGD,144,District,742,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +LGD,6926,Block,Dag,LGD,105,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,5166,Block,Dagadarthi,LGD,515,District,5166,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,1141,Block,Dagarua,LGD,214,District,1141,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,4158,Block,Dahanu,LGD,665,District,4158,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +LGD,4329,Block,Dahegoan,LGD,699,District,4329,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,3537,Block,Dahi,LGD,403,District,3537,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,6464,Block,Dahina St,LGD,72,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +LGD,5186,Block,Dakkili,LGD,752,District,5186,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2149,Block,Dalgaon (Pt),LGD,283,District,2149,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +LGD,87,Block,Dalhousie,LGD,16,District,87,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,827,Block,Dalmau,LGD,175,District,827,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +LGD,3497,Block,Daloda,LGD,416,District,3497,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,7151,Block,Dalot,LGD,629,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +LGD,1297,Block,Dalsinghsarai,LGD,217,District,1297,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,1969,Block,Dalu,LGD,278,District,1969,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +LGD,3948,Block,Daman,LGD,463,District,3948,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,false, +LGD,4553,Block,Damargidda,LGD,721,District,4553,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,1971,Block,Dambo Rongjeng,LGD,273,District,1971,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +LGD,6591,Block,Dambuen Circle,LGD,230,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false, +LGD,1725,Block,Dambuk Adc,LGD,235,District,1725,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false, +LGD,6375,Block,Damera,LGD,686,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,4663,Block,Dameracherla,LGD,514,District,4663,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,1714,Block,Damin Circle,LGD,233,District,1714,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,4750,Block,Dammapeta,LGD,690,District,4750,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,3458,Block,Damoh,LGD,400,District,3458,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +LGD,6999,Block,Damyanti Nagar,LGD,400,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +LGD,2510,Block,Danda,LGD,328,District,2510,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,2506,Block,Dandai,LGD,328,District,2506,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,1317,Block,Dandari,LGD,191,District,1317,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,7064,Block,Dandeli,LGD,550,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,4348,Block,Dandepally,LGD,684,District,4348,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,1150,Block,Dandkhora,LGD,201,District,1150,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,7475,Block,Dangadi,LGD,356,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,6827,Block,Dangarpora,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,7110,Block,Dangtal Revenue Circle,LGD,281,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +LGD,1412,Block,Daniawan,LGD,212,District,1412,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,6712,Block,Dansal,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,3737,Block,Danta,LGD,441,District,3737,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,2467,Block,Dantan - I,LGD,318,District,2467,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,2468,Block,Dantan - II,LGD,318,District,2468,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,554,Block,Danta Ramgarh,LGD,114,District,554,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,3369,Block,Dantewada,LGD,376,District,3369,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +LGD,6255,Block,Danthalapalle,LGD,688,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,3735,Block,Dantiwada,LGD,441,District,3735,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,4267,Block,Dapoli,LGD,492,District,4267,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,1615,Block,Daporijo Hq,LGD,241,District,1615,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,1628,Block,Darak Circle,LGD,243,District,1628,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false, +LGD,1242,Block,Darauli,LGD,222,District,1242,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,1246,Block,Daraundha,LGD,222,District,1246,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,3366,Block,Darbha,LGD,374,District,3366,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,1184,Block,Darbhanga,LGD,195,District,1184,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,6901,Block,Dareeni,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,21,Block,Darhal,LGD,12,District,21,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,7357,Block,Darhi,LGD,650,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,1264,Block,Dariapur,LGD,218,District,1264,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,7261,Block,Darima,LGD,389,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +LGD,3125,Block,Daringbadi,LGD,359,District,3125,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,1637,Block,Daring Circle,LGD,724,District,1637,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false, +LGD,2154,Block,Darjeeling Pulbazar,LGD,309,District,2154,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,159,Block,Darlaghat,LGD,25,District,159,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,1902,Block,Darlawn,LGD,261,District,1902,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +LGD,7474,Block,Darpan,LGD,356,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,7266,Block,Darri,LGD,383,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,5114,Block,Darsi,LGD,517,District,5114,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,2649,Block,Daru,LGD,332,District,2649,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,4083,Block,Darwha,LGD,500,District,4083,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,4011,Block,Daryapur,LGD,468,District,4011,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,3790,Block,Dasada,LGD,460,District,3790,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,3202,Block,Dasamantapur,LGD,363,District,3202,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,3023,Block,Dasapalla,LGD,367,District,3023,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +LGD,7473,Block,Dasarathpur,LGD,356,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,3782,Block,Daskroi,LGD,438,District,3782,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,2449,Block,Daspur - I,LGD,318,District,2449,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,2450,Block,Daspur - II,LGD,318,District,2450,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,6207,Block,Dasturabad,LGD,680,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,214,Block,Dasua,LGD,33,District,214,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +LGD,783,Block,Dataganj,LGD,133,District,783,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +LGD,3405,Block,Datia,LGD,401,District,3405,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +LGD,6991,Block,Datia Nagar,LGD,401,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +LGD,4823,Block,Dattirajeru,LGD,521,District,4823,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,1476,Block,Daudnagar,LGD,189,District,1476,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,4195,Block,Daund,LGD,490,District,4195,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,3322,Block,Daundi,LGD,646,District,3322,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +LGD,3320,Block,Daundilohara,LGD,646,District,3320,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +LGD,7251,Block,Daura-Kochali,LGD,649,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,536,Block,Dausa,LGD,97,District,536,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,5512,Block,Davanagere,LGD,535,District,5512,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +LGD,1459,Block,Dawath,LGD,215,District,1459,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,6415,Block,Dayalpur St,LGD,60,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +LGD,2800,Block,Debagarh,LGD,351,District,2800,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false, +LGD,749,Block,Debai,LGD,134,District,749,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +LGD,7021,Block,Debeyar Co Circle,LGD,231,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,2462,Block,Debra,LGD,318,District,2462,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,6937,Block,Dechoo,LGD,772,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3911,Block,Dediapada,LGD,452,District,3911,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +LGD,6842,Block,Deed Circle,LGD,786,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,508,Block,Deeg,LGD,767,District,508,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3740,Block,Deesa,LGD,441,District,3740,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,7437,Block,Deesa City,LGD,441,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,563,Block,Degana,LGD,110,District,563,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,2327,Block,Deganga,LGD,303,District,2327,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,4110,Block,Deglur,LGD,485,District,4110,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,7223,Block,Deh,LGD,110,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,6958,Block,Deha,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,6949,Block,Dehar,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,3776,Block,Dehgam,LGD,446,District,3776,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +LGD,304,Block,Dehradun,LGD,49,District,304,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +LGD,103,Block,Dehra Gopipur,LGD,18,District,103,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,1473,Block,Dehri,LGD,215,District,1473,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,3056,Block,Delanga,LGD,369,District,3056,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,7154,Block,Deldar,LGD,115,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +LGD,452,Block,Delhi Cantonment,LGD,79,District,452,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false, +LGD,6935,Block,Delwara,LGD,112,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,6546,Block,Demdema,LGD,278,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +LGD,4967,Block,Denduluru,LGD,748,District,4967,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4839,Block,Denkada,LGD,521,District,4839,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,5892,Block,Denkanikottai,LGD,577,District,5892,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +LGD,6398,Block,Dentam,LGD,228,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false, +LGD,1485,Block,Deo,LGD,189,District,1485,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,704,Block,Deoband,LGD,177,District,704,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +LGD,3741,Block,Deodar,LGD,789,District,3741,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,7453,Block,Deogaon,LGD,345,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,640,Block,Deogarh,LGD,112,District,640,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,2545,Block,Deoghar,LGD,324,District,2545,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,4144,Block,Deola,LGD,487,District,4144,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,3985,Block,Deolgaon Raja,LGD,472,District,3985,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,4020,Block,Deoli,LGD,498,District,4020,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +LGD,7588,Block,Deoli,LGD,83,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +LGD,620,Block,Deoli,LGD,116,District,620,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,1684,Block,Deomali Adc,LGD,239,District,1684,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +LGD,4234,Block,Deoni,LGD,481,District,4234,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,7010,Block,Deori,LGD,421,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,4051,Block,Deori,LGD,476,District,4051,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +LGD,2534,Block,Deori,LGD,329,District,2534,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,3453,Block,Deori,LGD,425,District,3453,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,959,Block,Deoria,LGD,137,District,959,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +LGD,3704,Block,Deosar,LGD,638,District,3704,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +LGD,3540,Block,Depalpur,LGD,410,District,3540,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,204,Block,Dera Baba Nanak,LGD,32,District,204,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +LGD,268,Block,Dera Bassi,LGD,608,District,268,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +LGD,2930,Block,Derabish,LGD,360,District,2930,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,844,Block,Derapur,LGD,156,District,844,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +LGD,2084,Block,Dergaon,LGD,288,District,2084,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +LGD,4052,Block,Desaiganj (Vadasa),LGD,475,District,4052,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,6569,Block,Desali Circle,LGD,235,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false, +LGD,6035,Block,Desar,LGD,461,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,2489,Block,Deshopran,LGD,317,District,2489,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,1281,Block,Desri,LGD,224,District,1281,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,603,Block,Desuri,LGD,111,District,603,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +LGD,3778,Block,Detroj-Rampura,LGD,438,District,3778,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,5460,Block,Devadurga,LGD,546,District,5460,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +LGD,5831,Block,Devakottai,LGD,585,District,5831,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,6424,Block,Devalthal,LGD,53,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,5603,Block,Devanahalli,LGD,526,District,5603,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +LGD,5276,Block,Devanakonda,LGD,511,District,5276,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,7071,Block,Devara Hipparagi,LGD,530,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,4573,Block,Devarakadra,LGD,512,District,4573,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,4653,Block,Devarakonda,LGD,514,District,4653,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4957,Block,Devarapalle,LGD,505,District,4957,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,4859,Block,Devarapalli,LGD,744,District,4859,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4701,Block,Devaruppula,LGD,689,District,4701,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,3338,Block,Devbhog,LGD,645,District,3338,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +LGD,3437,Block,Devendranagar,LGD,420,District,3437,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,4275,Block,Devgad,LGD,495,District,4275,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +LGD,3895,Block,Devgadbaria,LGD,445,District,3895,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,5664,Block,Devikulam,LGD,556,District,5664,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +LGD,4885,Block,Devipatnam,LGD,791,District,4885,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2549,Block,Devipur,LGD,324,District,2549,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,7298,Block,Devkar,LGD,650,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,294,Block,Devprayag,LGD,55,District,294,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,60,Block,Devsar,LGD,622,District,60,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +LGD,6347,Block,Dewal,LGD,47,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,3526,Block,Dewas,LGD,402,District,3526,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,7031,Block,Dewas Nagar,LGD,402,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,1039,Block,Dhaka,LGD,213,District,1039,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,2053,Block,Dhakuakhana (Pt-I),LGD,295,District,2053,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +LGD,2611,Block,Dhalbhumgarh,LGD,327,District,2611,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,7175,Block,Dhalwan,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,4014,Block,Dhamangaon Railway,LGD,468,District,4014,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,1132,Block,Dhamdaha,LGD,214,District,1132,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,3316,Block,Dhamdha,LGD,378,District,3316,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +LGD,6964,Block,Dhami,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,2913,Block,Dhamnagar,LGD,348,District,2913,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +LGD,715,Block,Dhampur,LGD,132,District,715,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +LGD,3346,Block,Dhamtari,LGD,377,District,3346,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +LGD,7577,Block,Dhamwari,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,1409,Block,Dhanarua,LGD,212,District,1409,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,6912,Block,Dhanau,LGD,90,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,298,Block,Dhanaulti,LGD,55,District,298,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,729,Block,Dhanaura,LGD,154,District,729,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +LGD,2584,Block,Dhanbad-Cum-Kenduadih-Cum-Jagata,LGD,325,District,2584,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,3787,Block,Dhandhuka,LGD,438,District,3787,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,6448,Block,Dhand St,LGD,66,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +LGD,3734,Block,Dhanera,LGD,441,District,3734,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,2343,Block,Dhaniakhali,LGD,312,District,2343,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,3662,Block,Dhanora,LGD,428,District,3662,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,4056,Block,Dhanora,LGD,475,District,4056,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,7320,Block,Dhanora,LGD,643,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +LGD,3896,Block,Dhanpur,LGD,445,District,3896,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,1798,Block,Dhansiripar,LGD,758,District,1798,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,3770,Block,Dhansura,LGD,672,District,3770,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +LGD,4572,Block,Dhanwada,LGD,721,District,4572,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,2535,Block,Dhanwar,LGD,329,District,2535,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,3534,Block,Dhar,LGD,403,District,3534,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,3079,Block,Dharakote,LGD,354,District,3079,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,3168,Block,Dharamgarh,LGD,358,District,3168,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,3263,Block,Dharamjaigarh,LGD,386,District,3263,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,5996,Block,Dharamkot,LGD,38,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +LGD,3928,Block,Dharampur,LGD,462,District,3928,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,3539,Block,Dharampuri,LGD,403,District,3539,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,3968,Block,Dharangaon,LGD,478,District,3968,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,5902,Block,Dharapuram,LGD,634,District,5902,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,4240,Block,Dharashiv,LGD,488,District,4240,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +LGD,5931,Block,Dharbandora,LGD,793,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +LGD,316,Block,Dharchula,LGD,53,District,316,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,1359,Block,Dharhara,LGD,207,District,1359,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,3845,Block,Dhari,LGD,439,District,3845,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,341,Block,Dhari,LGD,51,District,341,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,696,Block,Dhariawad,LGD,629,District,696,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +LGD,200,Block,Dhar Kalan,LGD,662,District,200,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +LGD,4104,Block,Dharmabad,LGD,485,District,4104,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,6691,Block,Dharmanagar,LGD,270,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +LGD,4397,Block,Dharmapuri,LGD,681,District,4397,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,5888,Block,Dharmapuri,LGD,571,District,5888,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +LGD,4411,Block,Dharmaram,LGD,682,District,4411,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,4677,Block,Dharmasagar,LGD,686,District,4677,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,2979,Block,Dharmasala,LGD,356,District,2979,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,5336,Block,Dharmavaram,LGD,754,District,5336,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,127,Block,Dharmpur,LGD,22,District,127,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,99,Block,Dharmsala,LGD,18,District,99,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,4001,Block,Dharni,LGD,468,District,4001,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,7544,Block,Dharnidhar,LGD,789,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,4591,Block,Dharoor,LGD,695,District,4591,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,4378,Block,Dharpally,LGD,516,District,4378,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,7292,Block,Dharsiwa,LGD,387,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +LGD,6463,Block,Dharuhera St,LGD,72,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +LGD,4223,Block,Dharur,LGD,470,District,4223,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,4531,Block,Dharur,LGD,698,District,4531,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,5473,Block,Dharwad,LGD,536,District,5473,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +LGD,6944,Block,Dharwala,LGD,16,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,145,Block,Dhatwal,LGD,17,District,145,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,6414,Block,Dhauj St,LGD,60,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +LGD,6032,Block,Dhaulana,LGD,661,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false, +LGD,6338,Block,Dhaulchhina,LGD,45,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,6365,Block,Dhauntari,LGD,57,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,802,Block,Dhaurahara,LGD,159,District,802,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +LGD,2041,Block,Dhekiajuli (Pt),LGD,301,District,2041,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +LGD,2055,Block,Dhemaji,LGD,284,District,2055,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +LGD,2999,Block,Dhenkanal Sadar,LGD,352,District,2999,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +LGD,3626,Block,Dhimarkheda,LGD,413,District,3626,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,2034,Block,Dhing,LGD,297,District,2034,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +LGD,109,Block,Dhira,LGD,18,District,109,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,5304,Block,D.Hirehal,LGD,502,District,5304,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,6387,Block,Dhod,LGD,114,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,6167,Block,Dholera,LGD,438,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,1211,Block,Dholi (Moraul),LGD,208,District,1211,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,3783,Block,Dholka,LGD,438,District,3783,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,518,Block,Dholpur,LGD,98,District,518,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +LGD,5289,Block,Dhone,LGD,755,District,5289,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7189,Block,Dhoolmitta,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,309,Block,Dhoomakot,LGD,52,District,309,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,3810,Block,Dhoraji,LGD,457,District,3810,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,6050,Block,Dhorimanna,LGD,775,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,61,Block,D H Pora,LGD,622,District,61,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +LGD,3789,Block,Dhrangadhra,LGD,460,District,3789,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,3816,Block,Dhrol,LGD,447,District,3816,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +LGD,6014,Block,Dhubri,LGD,285,District,2008,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +LGD,7402,Block,Dhulcot,LGD,397,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +LGD,3959,Block,Dhule,LGD,474,District,3959,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +LGD,2176,Block,Dhupguri,LGD,314,District,2176,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,1348,Block,Dhuraiya,LGD,190,District,1348,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,270,Block,Dhuri,LGD,43,District,270,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +LGD,2504,Block,Dhurki,LGD,328,District,2504,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,6342,Block,Dhyari,LGD,45,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,2426,Block,Diamond Harbour - I,LGD,304,District,2426,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2427,Block,Diamond Harbour - II,LGD,304,District,2427,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2064,Block,Dibrugarh East,LGD,286,District,2064,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +LGD,2063,Block,Dibrugarh West,LGD,286,District,2063,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +LGD,4377,Block,Dichpally,LGD,516,District,4377,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,7449,Block,Didarganj,LGD,212,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,317,Block,Didihat,LGD,53,District,317,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,558,Block,Didwana,LGD,768,District,558,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3096,Block,Digapahandi,LGD,354,District,3096,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,1122,Block,Dighalbank,LGD,203,District,1122,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +LGD,7394,Block,Dighora,LGD,434,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,1266,Block,Dighwara,LGD,218,District,1266,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,5919,Block,Diglipur,LGD,632,District,5919,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +LGD,666,Block,Digod,LGD,109,District,666,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +LGD,4084,Block,Digras,LGD,500,District,4084,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,4343,Block,Dilawarpur,LGD,680,District,4343,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,1796,Block,Dimapur Sadar,LGD,244,District,1796,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false, +LGD,2070,Block,Dimow,LGD,300,District,2070,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +LGD,6860,Block,Dinanagar,LGD,32,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +LGD,1399,Block,Dinapur-Cum-Khagaul,LGD,212,District,1399,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,1458,Block,Dinara,LGD,215,District,1458,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,5980,Block,Dindiguleast,LGD,572,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,5979,Block,Dindigulwest,LGD,572,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,4149,Block,Dindori,LGD,487,District,4149,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,3640,Block,Dindori,LGD,404,District,3640,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +LGD,6726,Block,Dinga Amb,LGD,7,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,2187,Block,Dinhata - I,LGD,308,District,2187,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,2188,Block,Dinhata - II,LGD,308,District,2188,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,2089,Block,Diphu,LGD,292,District,2089,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +LGD,7293,Block,Dipka,LGD,383,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,1566,Block,Dirang Adc,LGD,242,District,1566,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,6852,Block,Dirba,LGD,43,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +LGD,7231,Block,Diskit,LGD,9,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +LGD,2129,Block,Dispur,LGD,618,District,2129,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +LGD,6099,Block,Dissing Passo Circle,LGD,723,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false, +LGD,3947,Block,Diu,LGD,464,District,3947,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false, +LGD,1682,Block,Diyun Eac,LGD,229,District,1682,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,1504,Block,Dobhi,LGD,196,District,1504,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,2039,Block,Doboka,LGD,709,District,2039,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +LGD,62,Block,Doda,LGD,4,District,62,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,4282,Block,Dodamarg,LGD,495,District,4282,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +LGD,5602,Block,Doddaballapura,LGD,526,District,5602,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +LGD,193,Block,Dodra Kwar,LGD,23,District,193,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,3893,Block,Dohad,LGD,445,District,3893,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,1598,Block,Doimukh Sdo,LGD,237,District,1598,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,6335,Block,Doiwala,LGD,49,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +LGD,3615,Block,Dolariya,LGD,409,District,3615,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,1701,Block,Dollungmukh Circle,LGD,718,District,1701,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false, +LGD,6200,Block,Dolvan,LGD,641,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +LGD,4537,Block,Doma,LGD,698,District,4537,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,4392,Block,Domakonda,LGD,685,District,4392,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,936,Block,Domariyaganj,LGD,182,District,936,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +LGD,2528,Block,Domchanch,LGD,334,District,2528,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +LGD,2402,Block,Domjur,LGD,313,District,2402,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,2235,Block,Domkal,LGD,319,District,2235,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,7501,Block,Dompada,LGD,350,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,5102,Block,Donakonda,LGD,517,District,5102,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,3307,Block,Dongargaon,LGD,388,District,3307,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +LGD,3304,Block,Dongargarh,LGD,388,District,3304,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +LGD,6824,Block,Dongiwacha,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,7525,Block,Dongli,LGD,685,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,2088,Block,Donka,LGD,710,District,2088,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false, +LGD,7530,Block,Donkeshwar,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,2060,Block,Doom Dooma,LGD,302,District,2060,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +LGD,6910,Block,Dooni,LGD,116,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,58,Block,Dooru,LGD,1,District,58,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,7422,Block,Doraha,LGD,427,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,5196,Block,Doravarisatram,LGD,752,District,5196,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4722,Block,Dornakal,LGD,688,District,4722,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,5100,Block,Dornala,LGD,790,District,5100,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7355,Block,Dornapal,LGD,642,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +LGD,5299,Block,Dornipadu,LGD,755,District,5299,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2003,Block,Dotma,LGD,294,District,2003,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +LGD,4552,Block,Doulathabad,LGD,698,District,4552,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,4465,Block,Doultabad,LGD,692,District,4465,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,7137,Block,Dovda,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,6769,Block,Drabshala,LGD,620,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,6786,Block,Dragmulla,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,3544,Block,Dr. Ambedkar Nagar Mhow,LGD,410,District,3544,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,6191,Block,Drass,LGD,6,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +LGD,4458,Block,Dubbak,LGD,692,District,4458,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,2266,Block,Dubrajpur,LGD,307,District,2266,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,7419,Block,Dudhamania,LGD,638,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +LGD,6849,Block,Dudhan Sadhan,LGD,41,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +LGD,1006,Block,Dudhi,LGD,184,District,1006,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +LGD,2016,Block,Dudhnai,LGD,287,District,2016,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +LGD,6027,Block,Dudu,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,6550,Block,Dudunghar Circle,LGD,238,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,7540,Block,Dudyal,LGD,698,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,5076,Block,Duggirala,LGD,506,District,5076,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,4693,Block,Duggondi,LGD,522,District,4693,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,6331,Block,Dugnakuri,LGD,46,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +LGD,6891,Block,Dulahar,LGD,26,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,3260,Block,Duldula,LGD,380,District,3260,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,1406,Block,Dulhin Bazar,LGD,212,District,1406,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,2663,Block,Dulmi,LGD,607,District,2663,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +LGD,2610,Block,Dumaria,LGD,327,District,2610,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,1502,Block,Dumaria,LGD,196,District,1502,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,4843,Block,Dumbriguda,LGD,745,District,4843,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2673,Block,Dumka,LGD,326,District,2673,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,4729,Block,Dummugudem,LGD,690,District,4729,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,1617,Block,Dumporijo Adc,LGD,241,District,1617,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,1074,Block,Dumra,LGD,221,District,1074,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,1440,Block,Dumraon,LGD,194,District,1440,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,2543,Block,Dumri,LGD,329,District,2543,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,2714,Block,Dumri,LGD,331,District,2714,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,1061,Block,Dumri Katsari,LGD,220,District,1061,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +LGD,281,Block,Dunda,LGD,57,District,281,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,646,Block,Dungarpur,LGD,99,District,646,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,661,Block,Dungla,LGD,95,District,661,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,7158,Block,Durbuk,LGD,9,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +LGD,3317,Block,Durg,LGD,378,District,3317,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +LGD,2274,Block,Durgapur Faridpur,LGD,704,District,2274,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +LGD,1450,Block,Durgawati,LGD,200,District,1450,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,5042,Block,Durgi,LGD,751,District,5042,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3350,Block,Durgkondal,LGD,381,District,3350,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,5162,Block,Duttalur,LGD,515,District,5162,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5203,Block,Duvvur,LGD,504,District,5203,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,329,Block,Dwarahat,LGD,45,District,329,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,4955,Block,Dwarakatirumala,LGD,748,District,4955,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7592,Block,Dwarka,LGD,84,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +LGD,6402,Block,Dzongu,LGD,226,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false, +LGD,1911,Block,East Lungdar,LGD,268,District,1911,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false, +LGD,5738,Block,Edappadi,LGD,584,District,5738,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,5071,Block,Edlapadu,LGD,751,District,5071,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6201,Block,Egarkund,LGD,325,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,7164,Block,Egmore,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,2491,Block,Egra - I,LGD,317,District,2491,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2492,Block,Egra - II,LGD,317,District,2492,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,6803,Block,Eidgah,LGD,13,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +LGD,1391,Block,Ekangarsarai,LGD,209,District,1391,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,1254,Block,Ekma,LGD,218,District,1254,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,4410,Block,Eligaid,LGD,682,District,4410,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,4449,Block,Elkathurthy,LGD,686,District,4449,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,6234,Block,Ellandakunta,LGD,508,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,392,Block,Ellenabad,LGD,74,District,392,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +LGD,4966,Block,Eluru Rural,LGD,748,District,4966,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7428,Block,Eluru Urban,LGD,748,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7539,Block,Endapalli,LGD,681,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,1790,Block,Englan,LGD,250,District,1790,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,2218,Block,English Bazar,LGD,316,District,2218,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,4753,Block,Enkoor,LGD,509,District,4753,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,6633,Block,Eral,LGD,594,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,3967,Block,Erandol,LGD,478,District,3967,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,2705,Block,Erki(Tamar Ii),LGD,606,District,2705,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false, +LGD,5641,Block,Ernad,LGD,562,District,5641,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +LGD,5753,Block,Erode,LGD,573,District,5753,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,2938,Block,Ersama,LGD,355,District,2938,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +LGD,1008,Block,Etah,LGD,138,District,1008,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +LGD,1719,Block,Etalin,LGD,230,District,1719,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false, +LGD,4060,Block,Etapalli,LGD,475,District,4060,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,838,Block,Etawah,LGD,139,District,838,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +LGD,4806,Block,Etcherla,LGD,519,District,4806,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,765,Block,Etmadpur,LGD,118,District,765,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +LGD,5863,Block,Ettayapuram,LGD,594,District,5863,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,4685,Block,Eturunagaram,LGD,720,District,4685,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,7558,Block,Fagvel,LGD,450,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,905,Block,Faizabad,LGD,140,District,905,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +LGD,2175,Block,Falakata,LGD,664,District,2175,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +LGD,1142,Block,Falka,LGD,201,District,1142,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,2425,Block,Falta,LGD,304,District,2425,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2223,Block,Farakka,LGD,319,District,2223,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,425,Block,Faridabad,LGD,60,District,425,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +LGD,242,Block,Faridkot,LGD,29,District,242,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +LGD,789,Block,Faridpur,LGD,130,District,789,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +LGD,4559,Block,Farooqnagar,LGD,518,District,4559,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,832,Block,Farrukhabad,LGD,141,District,832,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +LGD,418,Block,Farrukhnagar,LGD,62,District,418,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,3261,Block,Farsabahar,LGD,380,District,3261,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,769,Block,Fatehabad,LGD,118,District,769,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +LGD,388,Block,Fatehabad,LGD,61,District,388,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +LGD,576,Block,Fatehgarh,LGD,103,District,576,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +LGD,7191,Block,Fatehgarh Churian,LGD,32,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +LGD,221,Block,Fatehgarh Sahib,LGD,30,District,221,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +LGD,2680,Block,Fatehpur,LGD,333,District,2680,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false, +LGD,896,Block,Fatehpur,LGD,129,District,896,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +LGD,95,Block,Fatehpur,LGD,18,District,95,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,878,Block,Fatehpur,LGD,142,District,878,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +LGD,1508,Block,Fatehpur,LGD,196,District,1508,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,551,Block,Fatehpur,LGD,114,District,551,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,369,Block,Fatehpur Pundri,LGD,66,District,369,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +LGD,3890,Block,Fatepura,LGD,445,District,3890,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,1411,Block,Fatwah,LGD,212,District,1411,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,237,Block,Fazilka,LGD,651,District,237,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +LGD,423,Block,Ferozepur Jhirka,LGD,604,District,423,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +LGD,5922,Block,Ferrargunj,LGD,602,District,5922,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +LGD,7343,Block,Fingeshwar,LGD,645,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +LGD,772,Block,Firozabad,LGD,143,District,772,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +LGD,235,Block,Firozpur,LGD,31,District,235,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +LGD,1113,Block,Forbesganj,LGD,188,District,1113,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,6780,Block,Frisal,LGD,622,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +LGD,753,Block,Gabhana,LGD,119,District,753,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +LGD,5470,Block,Gadag,LGD,537,District,5470,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +LGD,350,Block,Gadarpur,LGD,56,District,350,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,3635,Block,Gadarwara,LGD,418,District,3635,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +LGD,4057,Block,Gadchiroli,LGD,475,District,4057,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,5006,Block,Gaddamanugu Konduru,LGD,749,District,5006,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3852,Block,Gadhada,LGD,676,District,3852,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +LGD,4293,Block,Gadhinglaj,LGD,480,District,4293,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,6225,Block,Gadiguda,LGD,501,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,7273,Block,Gadiras,LGD,642,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +LGD,5281,Block,Gadivemula,LGD,755,District,5281,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6906,Block,Gadraroad,LGD,90,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,4603,Block,Gadwal,LGD,695,District,4603,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,4288,Block,Gaganbawada,LGD,480,District,4288,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,6893,Block,Gagret,LGD,26,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,1209,Block,Gaighat,LGD,208,District,1209,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,2318,Block,Gaighata,LGD,303,District,2318,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,3591,Block,Gairatganj,LGD,421,District,3591,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,289,Block,Gairsain,LGD,47,District,289,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,2759,Block,Gaisilet,LGD,347,District,2759,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,6372,Block,Gaja,LGD,55,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,4825,Block,Gajapathinagaram,LGD,521,District,4825,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,7082,Block,Gajendragad,LGD,537,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +LGD,7376,Block,Gajsinghpur,LGD,100,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,4869,Block,Gajuwaka,LGD,520,District,4869,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,4483,Block,Gajwel,LGD,692,District,4483,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,5235,Block,Galiveedu,LGD,753,District,5235,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6060,Block,Galiyakot,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,142,Block,Galore,LGD,17,District,142,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,2287,Block,Galsi - I,LGD,306,District,2287,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2288,Block,Galsi - II,LGD,306,District,2288,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,6025,Block,Galteshwar,LGD,450,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,1968,Block,Gambegre,LGD,278,District,1968,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +LGD,4433,Block,Gambhiraopet,LGD,683,District,4433,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,1158,Block,Gamharia,LGD,205,District,1158,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,4996,Block,Gampalagudem,LGD,749,District,4996,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7138,Block,Gamri Ahara,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,6336,Block,Ganai Gangoli,LGD,53,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,4974,Block,Ganapavaram,LGD,523,District,4974,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,379,Block,Ganaur,LGD,75,District,379,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +LGD,7264,Block,Gandai,LGD,759,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,5820,Block,Gandarvakkottai,LGD,582,District,5820,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,4538,Block,Gandeed,LGD,512,District,4538,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,4904,Block,Gandepalli,LGD,746,District,4904,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,47,Block,Ganderbal,LGD,626,District,47,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +LGD,3924,Block,Gandevi,LGD,453,District,3924,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +LGD,2538,Block,Gandey,LGD,329,District,2538,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,4382,Block,Gandhari,LGD,685,District,4382,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,3731,Block,Gandhidham,LGD,449,District,3731,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,3775,Block,Gandhinagar,LGD,446,District,3775,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +LGD,439,Block,Gandhi Nagar,LGD,78,District,439,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false, +LGD,3535,Block,Gandhwani,LGD,403,District,3535,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,2991,Block,Gandia,LGD,352,District,2991,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +LGD,6316,Block,Gandimaisamma Dundigal,LGD,700,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,6320,Block,Gandipet,LGD,518,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,5342,Block,Gandlapenta,LGD,754,District,5342,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4422,Block,Gangadhara,LGD,508,District,4422,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,5420,Block,Gangadhara Nellore,LGD,503,District,5420,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,6610,Block,Gangadtalai,LGD,88,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,2358,Block,Gangajalghati,LGD,305,District,2358,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,4122,Block,Gangakhed,LGD,489,District,4122,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,7263,Block,Gangaloor,LGD,636,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +LGD,458,Block,Ganganagar,LGD,100,District,458,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,4140,Block,Gangapur,LGD,469,District,4140,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,526,Block,Gangapur,LGD,113,District,526,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,6253,Block,Gangaram,LGD,688,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,2201,Block,Gangarampur,LGD,310,District,2201,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +LGD,6921,Block,Gangath,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,5744,Block,Gangavalli,LGD,584,District,5744,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,5417,Block,Gangavaram,LGD,503,District,5417,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,4894,Block,Gangavaram,LGD,791,District,4894,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5466,Block,Gangawati,LGD,543,District,5466,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +LGD,684,Block,Gangdhar,LGD,105,District,684,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,319,Block,Gangolihat,LGD,53,District,319,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,656,Block,Gangrar,LGD,95,District,656,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,1710,Block,Gangte Circle,LGD,677,District,1710,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false, +LGD,1553,Block,Gangtok,LGD,225,District,1553,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +LGD,4797,Block,Ganguvarisigadam,LGD,519,District,4797,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,3022,Block,Gania,LGD,367,District,3022,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +LGD,3086,Block,Ganjam,LGD,354,District,3086,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,5012,Block,Gannavaram,LGD,510,District,5012,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,6232,Block,Ganneruvaram,LGD,508,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,6611,Block,Ganora,LGD,88,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,4830,Block,Gantyada,LGD,521,District,4830,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,4801,Block,Gara,LGD,519,District,4801,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,7499,Block,Garadpur,LGD,360,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,857,Block,Garautha,LGD,153,District,857,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +LGD,3894,Block,Garbada,LGD,445,District,3894,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,2444,Block,Garbeta - I,LGD,318,District,2444,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,2443,Block,Garbeta - II,LGD,318,District,2443,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,2445,Block,Garbeta - III,LGD,318,District,2445,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,3450,Block,Garhakota,LGD,425,District,3450,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,1431,Block,Garhani,LGD,193,District,1431,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,6392,Block,Garhbor,LGD,112,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,651,Block,Garhi,LGD,88,District,651,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,741,Block,Garhmukteshwar,LGD,661,District,741,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false, +LGD,1306,Block,Garhpura,LGD,191,District,1306,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,217,Block,Garhshankar,LGD,33,District,217,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +LGD,2509,Block,Garhwa,LGD,328,District,2509,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,3857,Block,Gariadhar,LGD,443,District,3857,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,4666,Block,Garidepally,LGD,696,District,4666,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,4826,Block,Garividi,LGD,521,District,4826,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,3335,Block,Gariyaband,LGD,645,District,3335,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +LGD,1265,Block,Garkha,LGD,218,District,1265,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,4743,Block,Garla,LGD,688,District,4743,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,5324,Block,Garladinne,LGD,502,District,5324,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,3494,Block,Garoth,LGD,416,District,3494,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,2638,Block,Garu,LGD,335,District,2638,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,324,Block,Garud,LGD,46,District,324,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +LGD,6029,Block,Garudeshwar,LGD,452,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +LGD,4811,Block,Garugubilli,LGD,743,District,4811,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1976,Block,Gasuapara,LGD,277,District,1976,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +LGD,7526,Block,Gattuppal,LGD,514,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,1015,Block,Gaunaha,LGD,211,District,1015,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,6416,Block,Gaunchi St,LGD,60,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +LGD,5595,Block,Gauribidanur,LGD,630,District,5595,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +LGD,913,Block,Gauriganj,LGD,640,District,913,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +LGD,3424,Block,Gaurihar,LGD,398,District,3424,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,7115,Block,Gauripur,LGD,285,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +LGD,743,Block,Gautam Buddha Nagar,LGD,144,District,743,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +LGD,2532,Block,Gawan,LGD,329,District,2532,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,1495,Block,Gaya Town C.D.Block,LGD,196,District,1495,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,2214,Block,Gazole,LGD,316,District,2214,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,4707,Block,Geesugonda,LGD,522,District,4707,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,1665,Block,Geku Eac,LGD,240,District,1665,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,1661,Block,Gelling Circle,LGD,240,District,1661,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,1638,Block,Gensi Eac,LGD,719,District,1638,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false, +LGD,4218,Block,Georai,LGD,470,District,4218,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,6559,Block,Gepen Circle,LGD,718,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false, +LGD,6343,Block,Ghaat,LGD,47,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,2707,Block,Ghaghra,LGD,331,District,2707,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,6721,Block,Ghagwal,LGD,624,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +LGD,1160,Block,Ghailarh,LGD,205,District,1160,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,6888,Block,Ghanari,LGD,26,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,943,Block,Ghanghata,LGD,178,District,943,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +LGD,4585,Block,Ghanpur,LGD,693,District,4585,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,4683,Block,Ghanpur (Mulug),LGD,687,District,4683,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,4676,Block,Ghanpur (Station),LGD,689,District,4676,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,293,Block,Ghansali,LGD,55,District,293,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,3661,Block,Ghansaur,LGD,428,District,3661,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,4130,Block,Ghansawangi,LGD,479,District,4130,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +LGD,1194,Block,Ghanshyampur,LGD,195,District,1194,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,5033,Block,Ghantasala,LGD,510,District,5033,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,7221,Block,Ghantiyali,LGD,772,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,374,Block,Gharaunda,LGD,67,District,374,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +LGD,3265,Block,Gharghoda,LGD,386,District,3265,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,463,Block,Gharsana,LGD,100,District,463,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,7377,Block,Ghasa,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,2853,Block,Ghasipura,LGD,361,District,2853,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,2448,Block,Ghatal,LGD,318,District,2448,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,850,Block,Ghatampur,LGD,157,District,850,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +LGD,4089,Block,Ghatanji,LGD,500,District,4089,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,2850,Block,Ghatgaon,LGD,361,District,2850,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,1776,Block,Ghathashi,LGD,251,District,1776,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,7026,Block,Ghatigaon,LGD,407,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,3511,Block,Ghatiya,LGD,435,District,3511,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,4523,Block,Ghatkesar,LGD,700,District,4523,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,1375,Block,Ghat Kusumbha,LGD,219,District,1375,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false, +LGD,6513,Block,Ghatlodiya,LGD,438,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,650,Block,Ghatol,LGD,88,District,650,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,2607,Block,Ghatshila,LGD,327,District,2607,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,4605,Block,Ghattu,LGD,695,District,4605,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,739,Block,Ghaziabad,LGD,145,District,739,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +LGD,989,Block,Ghazipur,LGD,146,District,989,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +LGD,6873,Block,Ghiror,LGD,166,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +LGD,3602,Block,Ghoda Dongri,LGD,394,District,3602,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,3855,Block,Ghogha,LGD,443,District,3855,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,3887,Block,Ghoghamba,LGD,454,District,3887,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +LGD,1098,Block,Ghoghardiha,LGD,206,District,1098,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,2138,Block,Ghograpar (Pt),LGD,298,District,2138,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +LGD,1038,Block,Ghorasahan,LGD,213,District,1038,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1004,Block,Ghorawal,LGD,184,District,1004,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +LGD,1539,Block,Ghoshi,LGD,199,District,1539,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +LGD,971,Block,Ghosi,LGD,168,District,971,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +LGD,1419,Block,Ghoswari,LGD,212,District,1419,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,3644,Block,Ghughari,LGD,415,District,3644,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +LGD,152,Block,Ghumarwin,LGD,15,District,152,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +LGD,7352,Block,Ghumka,LGD,388,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +LGD,7490,Block,Ghumusar,LGD,354,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,3432,Block,Ghuwara,LGD,398,District,3432,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,1613,Block,Giba Circle,LGD,241,District,1613,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,6907,Block,Gida,LGD,775,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3370,Block,Gidam,LGD,376,District,3370,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +LGD,5133,Block,Giddalur,LGD,790,District,5133,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,240,Block,Gidderbaha,LGD,39,District,240,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +LGD,1531,Block,Gidhaur,LGD,198,District,1531,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,2522,Block,Gidhaur,LGD,323,District,2522,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,5728,Block,Gingee,LGD,596,District,5728,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,3399,Block,Gird,LGD,407,District,3399,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,6199,Block,Gir Gadhda,LGD,675,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +LGD,1396,Block,Giriak,LGD,209,District,1396,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,2539,Block,Giridih,LGD,329,District,2539,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,689,Block,Girwa,LGD,117,District,689,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,6551,Block,Gite Ripa Circle,LGD,241,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,4848,Block,G.Madugula,LGD,745,District,4848,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2193,Block,Goalpokher - I,LGD,311,District,2193,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,2194,Block,Goalpokher - II,LGD,311,District,2194,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,5751,Block,Gobichettipalayam,LGD,573,District,5751,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,2583,Block,Gobindpur,LGD,325,District,2583,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,1518,Block,Gobindpur,LGD,210,District,1518,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,2754,Block,Gobindpur(Rajnagar),LGD,341,District,2754,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,7259,Block,Gobra Nawapara,LGD,387,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +LGD,2561,Block,Godda,LGD,330,District,2561,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,7546,Block,Godhar,LGD,669,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +LGD,7598,Block,Godharacity,LGD,454,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +LGD,3885,Block,Godhra,LGD,454,District,3885,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +LGD,2058,Block,Gogamukh,LGD,284,District,2058,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +LGD,3551,Block,Gogaon,LGD,414,District,3551,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,2338,Block,Goghat - I,LGD,312,District,2338,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,2339,Block,Goghat - II,LGD,312,District,2339,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,1327,Block,Gogri,LGD,202,District,1327,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +LGD,686,Block,Gogunda,LGD,117,District,686,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,1478,Block,Goh,LGD,189,District,1478,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,3395,Block,Gohad,LGD,395,District,3395,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,378,Block,Gohana,LGD,75,District,378,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +LGD,3593,Block,Goharganj,LGD,421,District,3593,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,6979,Block,Gohparu,LGD,429,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +LGD,2047,Block,Gohpur,LGD,705,District,2047,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +LGD,1738,Block,Goiliang Circle,LGD,628,District,1738,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +LGD,2733,Block,Goilkera,LGD,343,District,2733,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,5436,Block,Gokak,LGD,527,District,5436,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,7584,Block,Gokalpur,LGD,81,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false, +LGD,4897,Block,Gokavaram,LGD,505,District,4897,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,2665,Block,Gola,LGD,607,District,2665,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +LGD,954,Block,Gola,LGD,148,District,954,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +LGD,2085,Block,Golaghat,LGD,288,District,2085,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +LGD,799,Block,Gola Gokaran Nath,LGD,159,District,799,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +LGD,6015,Block,Golakganj Pt,LGD,285,District,2007,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +LGD,3167,Block,Golamunda,LGD,358,District,3167,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,4507,Block,Golconda,LGD,507,District,4507,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,4412,Block,Gollapalli,LGD,681,District,4412,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,4902,Block,Gollaprolu,LGD,746,District,4902,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2606,Block,Golmuri-Cum-Jugsalai,LGD,327,District,2606,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,4853,Block,Golugonda,LGD,744,District,4853,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2591,Block,Gomia,LGD,322,District,2591,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,928,Block,Gonda,LGD,147,District,928,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +LGD,3807,Block,Gondal,LGD,457,District,3807,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,7439,Block,Gondal City,LGD,457,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,6686,Block,Gonda Twisa,LGD,269,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +LGD,4046,Block,Gondiya,LGD,476,District,4046,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +LGD,4078,Block,Gondpipri,LGD,473,District,4078,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,5270,Block,Gonegandla,LGD,511,District,5270,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,6763,Block,Gool,LGD,621,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +LGD,5310,Block,Gooty,LGD,502,District,5310,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,3062,Block,Gop,LGD,369,District,3062,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,7480,Block,Gopabandhunagar,LGD,365,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,3699,Block,Gopadbanas,LGD,433,District,3699,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +LGD,6838,Block,Gopalapatnam,LGD,520,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,4951,Block,Gopalapuram,LGD,505,District,4951,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,1224,Block,Gopalganj,LGD,197,District,1224,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,4596,Block,Gopalpeta,LGD,693,District,4596,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,1334,Block,Gopalpur,LGD,192,District,1334,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,5211,Block,Gopavaram,LGD,504,District,5211,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,2457,Block,Gopiballavpur - I,LGD,703,District,2457,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +LGD,2456,Block,Gopiballavpur - II,LGD,703,District,2456,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +LGD,2669,Block,Gopikandar,LGD,326,District,2669,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,1196,Block,Gora Bauram,LGD,195,District,1196,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,1342,Block,Goradih,LGD,192,District,1342,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,7011,Block,Gorakhpur,LGD,411,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,950,Block,Gorakhpur,LGD,148,District,950,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +LGD,5362,Block,Gorantla,LGD,754,District,5362,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1272,Block,Goraul,LGD,224,District,1272,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,4045,Block,Goregaon,LGD,476,District,4045,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +LGD,2141,Block,Goreswar,LGD,756,District,2141,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +LGD,1232,Block,Goriakothi,LGD,222,District,1232,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,6471,Block,Goriwala St,LGD,74,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +LGD,3394,Block,Gormi,LGD,395,District,3394,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,2121,Block,Goroimari,LGD,291,District,2121,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,2158,Block,Gorubathan,LGD,702,District,2158,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +LGD,2435,Block,Gosaba,LGD,304,District,2435,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,5287,Block,Gospadu,LGD,755,District,5287,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2001,Block,Gossaigaon,LGD,294,District,2001,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +LGD,3634,Block,Gotegaon,LGD,418,District,3634,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +LGD,6832,Block,Govardhan,LGD,167,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +LGD,4688,Block,Govindaraopet,LGD,720,District,4688,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,6383,Block,Govindgarh,LGD,87,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,7554,Block,Govindguru Limdi,LGD,445,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,5918,Block,Great Nicobar,LGD,603,District,5918,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false, +LGD,5538,Block,Gubbi,LGD,548,District,5538,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,5755,Block,Gudalur,LGD,587,District,5755,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +LGD,3184,Block,Gudari,LGD,370,District,3184,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,3114,Block,G.Udayagiri,LGD,359,District,3114,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,4850,Block,Gudem Kotha Veedhi,LGD,745,District,4850,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7144,Block,Gudhagorji,LGD,106,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,581,Block,Gudha Malani,LGD,775,District,581,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5597,Block,Gudibanda,LGD,630,District,5597,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +LGD,5352,Block,Gudibanda,LGD,754,District,5352,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4310,Block,Gudihatnoor,LGD,501,District,4310,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,5431,Block,Gudipala,LGD,503,District,5431,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,7527,Block,Gudipally,LGD,514,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,5021,Block,Gudivada,LGD,510,District,5021,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,5712,Block,Gudiyatham,LGD,595,District,5712,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +LGD,5029,Block,Gudlavalleru,LGD,510,District,5029,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,5151,Block,Gudluru,LGD,517,District,5151,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,2729,Block,Gudri,LGD,343,District,2729,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,5426,Block,Gudupalle,LGD,503,District,5426,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,4711,Block,Gudur,LGD,688,District,4711,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,5184,Block,Gudur,LGD,515,District,5184,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5257,Block,Gudur,LGD,511,District,5257,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5031,Block,Guduru,LGD,510,District,5031,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,4270,Block,Guhagar,LGD,492,District,4270,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,367,Block,Guhla,LGD,66,District,367,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +LGD,7169,Block,Guindy,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,6700,Block,Gujiliamparai,LGD,572,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,3578,Block,Gulabganj,LGD,437,District,3578,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,3520,Block,Gulana,LGD,430,District,3520,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +LGD,7061,Block,Guledgudda,LGD,524,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,2712,Block,Gumla,LGD,331,District,2712,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,7505,Block,Gumma,LGD,353,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +LGD,6277,Block,Gummadidala,LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,5319,Block,Gummagatta,LGD,502,District,5319,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,4808,Block,Gummalakshmipuram,LGD,743,District,4808,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5693,Block,Gummidipoondi,LGD,589,District,5693,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,6602,Block,Gumto Circle,LGD,237,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,3677,Block,Guna,LGD,406,District,3677,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +LGD,6609,Block,Guna Nagar,LGD,406,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +LGD,6806,Block,Gund,LGD,626,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +LGD,4618,Block,Gundala,LGD,697,District,4618,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,4741,Block,Gundala,LGD,690,District,4741,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,3319,Block,Gunderdehi,LGD,646,District,3319,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +LGD,4651,Block,Gundlapally,LGD,514,District,4651,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,5576,Block,Gundlupet,LGD,531,District,5576,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +LGD,6749,Block,Gundna,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,7523,Block,Gundumal,LGD,721,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,778,Block,Gunnaur,LGD,659,District,778,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +LGD,3438,Block,Gunnor,LGD,420,District,3438,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,5309,Block,Guntakal,LGD,502,District,5309,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,6833,Block,Guntur East,LGD,506,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,5074,Block,Guntur West,LGD,506,District,5074,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,3183,Block,Gunupur,LGD,370,District,3183,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,5044,Block,Gurajala,LGD,751,District,5044,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1497,Block,Guraru,LGD,196,District,1497,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,2612,Block,Gurbandha,LGD,327,District,2612,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,202,Block,Gurdaspur,LGD,32,District,202,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +LGD,40,Block,Gurez,LGD,623,District,40,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +LGD,417,Block,Gurgaon,LGD,62,District,417,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,3481,Block,Gurh,LGD,424,District,3481,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,4828,Block,Gurla,LGD,521,District,4828,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,7094,Block,Gurmitakal,LGD,635,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +LGD,5370,Block,Gurramkonda,LGD,753,District,5370,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4657,Block,Gurrampode,LGD,514,District,4657,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,7562,Block,Gurthedu,LGD,791,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1498,Block,Gurua,LGD,196,District,1498,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,6011,Block,Guruharsahai,LGD,31,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +LGD,2828,Block,Gurundia,LGD,373,District,2828,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,3323,Block,Gurur,LGD,646,District,3323,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +LGD,1241,Block,Guthani,LGD,222,District,1241,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,2128,Block,Guwahati,LGD,618,District,2128,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +LGD,7395,Block,Gwalior Gramin,LGD,407,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,1165,Block,Gwalpara,LGD,205,District,1165,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,1549,Block,Gyalshing,LGD,228,District,1549,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false, +LGD,998,Block,Gyanpur,LGD,179,District,998,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +LGD,3577,Block,Gyaraspur,LGD,437,District,3577,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,1588,Block,Gyawe Purang Circle,LGD,231,District,1588,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,2216,Block,Habibpur,LGD,316,District,2216,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,2320,Block,Habra - I,LGD,303,District,2320,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,2321,Block,Habra - II,LGD,303,District,2321,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,7555,Block,Hadad,LGD,441,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,5496,Block,Hadagalli,LGD,738,District,5496,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +LGD,7378,Block,Hadan,LGD,93,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,4098,Block,Hadgaon,LGD,485,District,4098,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,2093,Block,Haflong,LGD,299,District,2093,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +LGD,5497,Block,Hagaribommanahalli,LGD,738,District,5497,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +LGD,901,Block,Haidergarh,LGD,129,District,901,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +LGD,2616,Block,Haidernagar,LGD,338,District,2616,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,2107,Block,Hailakandi,LGD,289,District,2107,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +LGD,6811,Block,Hajin,LGD,623,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +LGD,1278,Block,Hajipur,LGD,224,District,1278,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,6227,Block,Hajipur,LGD,684,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,2119,Block,Hajo,LGD,291,District,2119,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,5273,Block,Halaharvi,LGD,511,District,5273,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,2483,Block,Haldia,LGD,317,District,2483,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2179,Block,Haldibari,LGD,308,District,2179,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,342,Block,Haldwani,LGD,51,District,342,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,5480,Block,Haliyal,LGD,550,District,5480,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,3888,Block,Halol,LGD,454,District,3888,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +LGD,1371,Block,Halsi,LGD,204,District,1371,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +LGD,3788,Block,Halvad,LGD,673,District,3788,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +LGD,6068,Block,Hameergarh,LGD,92,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,143,Block,Hamirpur,LGD,17,District,143,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,864,Block,Hamirpur,LGD,149,District,864,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +LGD,4695,Block,Hanamkonda,LGD,686,District,4695,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,893,Block,Handia,LGD,120,District,893,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +LGD,3609,Block,Handiya,LGD,408,District,3609,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +LGD,2,Block,Handwara,LGD,8,District,2,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,5491,Block,Hangal,LGD,540,District,5491,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +LGD,194,Block,Hangrang,LGD,19,District,194,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +LGD,396,Block,Hansi,LGD,792,District,396,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +LGD,2310,Block,Hanskhali,LGD,320,District,2310,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,3919,Block,Hansot,LGD,442,District,3919,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,3476,Block,Hanumana,LGD,766,District,3476,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,468,Block,Hanumangarh,LGD,101,District,468,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +LGD,1190,Block,Hanumannagar,LGD,195,District,1190,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,5130,Block,Hanumanthuni Padu,LGD,790,District,5130,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7077,Block,Hanur,LGD,531,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +LGD,4555,Block,Hanwada,LGD,512,District,4555,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,6039,Block,Haochong,LGD,714,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false, +LGD,740,Block,Hapur,LGD,661,District,740,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false, +LGD,3132,Block,Harabhanga,LGD,349,District,3132,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +LGD,5510,Block,Harapanahalli,LGD,738,District,5510,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +LGD,97,Block,Harchakian,LGD,18,District,97,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,3608,Block,Harda,LGD,408,District,3608,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +LGD,7271,Block,Hardibazar,LGD,383,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,811,Block,Hardoi,LGD,150,District,811,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +LGD,354,Block,Hardwar,LGD,50,District,354,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +LGD,2851,Block,Harichandanpur,LGD,361,District,2851,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,5509,Block,Harihar,LGD,535,District,5509,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +LGD,2618,Block,Hariharganj,LGD,338,District,2618,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,2242,Block,Hariharpara,LGD,319,District,2242,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,3748,Block,Harij,LGD,455,District,3748,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,2315,Block,Haringhata,LGD,320,District,2315,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,2348,Block,Haripal,LGD,312,District,2348,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,6920,Block,Haripur,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,6953,Block,Haripurdhar,LGD,24,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,2207,Block,Harirampur,LGD,310,District,2207,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +LGD,2208,Block,Harischandrapur - I,LGD,316,District,2208,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,2209,Block,Harischandrapur - II,LGD,316,District,2209,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,2151,Block,Harisinga,LGD,617,District,2151,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +LGD,1081,Block,Harlakhi,LGD,206,District,1081,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,6800,Block,Harmain,LGD,625,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false, +LGD,1380,Block,Harnaut,LGD,209,District,1380,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,2331,Block,Haroa,LGD,303,District,2331,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,7196,Block,Harohalli,LGD,631,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +LGD,151,Block,Haroli,LGD,26,District,151,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,3649,Block,Harrai,LGD,399,District,3649,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,938,Block,Harraiya,LGD,131,District,938,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +LGD,6423,Block,Harsaru St,LGD,62,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,1043,Block,Harsidhi,LGD,213,District,1043,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,7208,Block,Harsoli,LGD,770,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3714,Block,Harsud,LGD,405,District,3714,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,5886,Block,Harur,LGD,571,District,5886,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +LGD,1144,Block,Hasanganj,LGD,201,District,1144,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,815,Block,Hasanganj,LGD,186,District,815,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +LGD,4678,Block,Hasanparthy,LGD,686,District,4678,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,1302,Block,Hasanpur,LGD,217,District,1302,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,731,Block,Hasanpur,LGD,154,District,731,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +LGD,1245,Block,Hasanpura,LGD,222,District,1245,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,2336,Block,Hasnabad,LGD,303,District,2336,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,7327,Block,Hasoud,LGD,762,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,1477,Block,Haspura,LGD,189,District,1477,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,5556,Block,Hassan,LGD,539,District,5556,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +LGD,6478,Block,Hassanpur St,LGD,619,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +LGD,956,Block,Hata,LGD,160,District,956,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +LGD,7494,Block,Hatadihi,LGD,361,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,2738,Block,Hat Gamharia,LGD,343,District,2738,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,428,Block,Hathin,LGD,619,District,428,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +LGD,4489,Block,Hathnoora,LGD,691,District,4489,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,759,Block,Hathras,LGD,163,District,759,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +LGD,1221,Block,Hathua,LGD,197,District,1221,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,4285,Block,Hatkanangle,LGD,480,District,4285,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,3541,Block,Hatod,LGD,410,District,3541,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,3530,Block,Hatpiplya,LGD,402,District,3530,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,3454,Block,Hatta,LGD,400,District,3454,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +LGD,16,Block,Haveli,LGD,10,District,16,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +LGD,4193,Block,Haveli,LGD,490,District,4193,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,6270,Block,Havelighanapur,LGD,513,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,5492,Block,Haveri,LGD,540,District,5492,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +LGD,1743,Block,Hawai Hq,LGD,628,District,1743,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +LGD,1191,Block,Hayaghat,LGD,195,District,1191,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,4525,Block,Hayathnagar,LGD,518,District,4525,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,1736,Block,Hayuliang Adc,LGD,628,District,1736,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +LGD,2653,Block,Hazaribag,LGD,332,District,2653,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,7065,Block,Hebri,LGD,549,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +LGD,5573,Block,Heggadadevankote,LGD,545,District,5573,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,2046,Block,Helem,LGD,705,District,2046,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +LGD,2804,Block,Hemgir,LGD,373,District,2804,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,2197,Block,Hemtabad,LGD,311,District,2197,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,6502,Block,Henglep,LGD,254,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,2642,Block,Herhanj,LGD,335,District,2642,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,2203,Block,Hilli,LGD,310,District,2203,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +LGD,1390,Block,Hilsa,LGD,209,District,1390,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,3766,Block,Himatnagar,LGD,458,District,3766,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +LGD,4097,Block,Himayatnagar,LGD,485,District,4097,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,4503,Block,Himayatnagar,LGD,507,District,4503,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,522,Block,Hindaun,LGD,108,District,522,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,2997,Block,Hindol,LGD,352,District,2997,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +LGD,622,Block,Hindoli,LGD,94,District,622,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +LGD,5364,Block,Hindupur,LGD,754,District,5364,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2337,Block,Hingalganj,LGD,303,District,2337,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,4021,Block,Hinganghat,LGD,498,District,4021,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +LGD,4033,Block,Hingna,LGD,484,District,4033,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,4112,Block,Hingoli,LGD,477,District,4112,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +LGD,3090,Block,Hinjili,LGD,354,District,3090,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,4783,Block,Hiramandalam,LGD,519,District,4783,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,31,Block,Hiranagar,LGD,7,District,31,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,2575,Block,Hiranpur,LGD,337,District,2575,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +LGD,2374,Block,Hirbandh,LGD,305,District,2374,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,5494,Block,Hirekerur,LGD,540,District,5494,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +LGD,5508,Block,Hiriyur,LGD,533,District,5508,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +LGD,394,Block,Hisar,LGD,63,District,394,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +LGD,1520,Block,Hisua,LGD,210,District,1520,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,1915,Block,Hnahthial,LGD,726,District,1915,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +LGD,429,Block,Hodal,LGD,619,District,429,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +LGD,2038,Block,Hojai,LGD,709,District,2038,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +LGD,5272,Block,Holagunda,LGD,511,District,5272,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5506,Block,Holalkere,LGD,533,District,5506,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +LGD,5559,Block,Hole Narsipur,LGD,539,District,5559,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +LGD,91,Block,Holi,LGD,16,District,91,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,5458,Block,Homnabad,LGD,529,District,5458,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +LGD,5487,Block,Honavar,LGD,550,District,5487,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,5513,Block,Honnali,LGD,535,District,5513,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +LGD,5604,Block,Hosakote,LGD,526,District,5604,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +LGD,5518,Block,Hosanagara,LGD,547,District,5518,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +LGD,5498,Block,Hosapete,LGD,738,District,5498,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +LGD,5631,Block,Hosdurg,LGD,558,District,5631,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +LGD,5507,Block,Hosdurga,LGD,533,District,5507,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +LGD,3614,Block,Hoshangabad,LGD,409,District,3614,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,7045,Block,Hoshangabad Nagar,LGD,409,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,216,Block,Hoshiarpur,LGD,33,District,216,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +LGD,5890,Block,Hosur,LGD,577,District,5890,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +LGD,5475,Block,Hubballi,LGD,536,District,5475,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +LGD,7079,Block,Hubballi Urban,LGD,536,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +LGD,5437,Block,Hukkeri,LGD,527,District,5437,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,4846,Block,Hukumpeta,LGD,745,District,4846,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1541,Block,Hulasganj,LGD,199,District,1541,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +LGD,7086,Block,Hulsoor,LGD,529,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +LGD,7096,Block,Hunasagi,LGD,635,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +LGD,5448,Block,Hungund,LGD,524,District,5448,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,6075,Block,Hunli Sdo,LGD,235,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false, +LGD,5570,Block,Hunsur,LGD,545,District,5570,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,1746,Block,Hunta,LGD,247,District,1746,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,2386,Block,Hura,LGD,321,District,2386,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,628,Block,Hurda,LGD,92,District,628,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,4444,Block,Husnabad,LGD,692,District,4444,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,2615,Block,Hussainabad,LGD,338,District,2615,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,1238,Block,Hussainganj,LGD,222,District,1238,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,3581,Block,Huzur,LGD,396,District,3581,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +LGD,3479,Block,Huzur,LGD,424,District,3479,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,4446,Block,Huzurabad,LGD,508,District,4446,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,4669,Block,Huzurnagar,LGD,696,District,4669,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,7041,Block,Huzur Nagar,LGD,424,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,4393,Block,Ibrahimpatnam,LGD,681,District,4393,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,4546,Block,Ibrahimpatnam,LGD,518,District,4546,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,5009,Block,Ibrahimpatnam,LGD,749,District,5009,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2749,Block,Ichagarh,LGD,341,District,2749,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,2647,Block,Ichak,LGD,332,District,2647,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,4778,Block,Ichchapuram,LGD,519,District,4778,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,3586,Block,Ichhawar,LGD,427,District,3586,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,4322,Block,Ichoda,LGD,501,District,4322,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,3763,Block,Idar,LGD,458,District,3763,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +LGD,5942,Block,Idukki,LGD,556,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +LGD,4606,Block,Ieeja,LGD,695,District,4606,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,4153,Block,Igatpuri,LGD,487,District,4153,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,756,Block,Iglas,LGD,119,District,756,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +LGD,924,Block,Ikauna,LGD,181,District,924,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false, +LGD,5834,Block,Ilayangudi,LGD,585,District,5834,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,7062,Block,Ilkal,LGD,524,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,2265,Block,Illambazar,LGD,307,District,2265,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,4436,Block,Illanthakunta,LGD,683,District,4436,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,5818,Block,Iluppur,LGD,582,District,5818,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,1501,Block,Imamganj,LGD,196,District,1501,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,6249,Block,Inavole,LGD,686,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,6236,Block,Indalwai,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,4200,Block,Indapur,LGD,490,District,4200,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,4311,Block,Inderavelly,LGD,501,District,4311,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,3404,Block,Indergarh,LGD,401,District,3404,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +LGD,5450,Block,Indi,LGD,530,District,5450,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,94,Block,Indora,LGD,18,District,94,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,2360,Block,Indpur,LGD,305,District,2360,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,624,Block,Indragarh,LGD,94,District,624,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +LGD,371,Block,Indri,LGD,67,District,371,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +LGD,7172,Block,Indri,LGD,604,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +LGD,5179,Block,Indukurpet,LGD,515,District,5179,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,2366,Block,Indus,LGD,305,District,2366,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,5110,Block,Inkollu,LGD,750,District,5110,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7538,Block,Inugurthy,LGD,688,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,4931,Block,I. Polavaram,LGD,747,District,4931,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5065,Block,Ipuru,LGD,751,District,5065,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4979,Block,Iragavaram,LGD,523,District,4979,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,5411,Block,Irala,LGD,503,District,5411,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,5937,Block,Iritty,LGD,557,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +LGD,3684,Block,Isagarh,LGD,391,District,3684,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +LGD,1251,Block,Ishupur,LGD,218,District,1251,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,1525,Block,Islamnagar Aliganj,LGD,198,District,1525,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,2192,Block,Islampur,LGD,311,District,2192,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,1392,Block,Islampur,LGD,209,District,1392,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,6487,Block,Island,LGD,712,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,6453,Block,Ismailabad St,LGD,68,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +LGD,1337,Block,Ismailpur,LGD,192,District,1337,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,6889,Block,Ispur,LGD,26,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,376,Block,Israna,LGD,71,District,376,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +LGD,2199,Block,Itahar,LGD,311,District,2199,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,6604,Block,Itanagar Eac,LGD,237,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,1444,Block,Itarhi,LGD,194,District,1444,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,3613,Block,Itarsi,LGD,409,District,3613,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,4607,Block,Itikyala,LGD,695,District,4607,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,2520,Block,Itkhori,LGD,323,District,2520,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,2696,Block,Itki,LGD,339,District,2696,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,935,Block,Itwa,LGD,182,District,935,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +LGD,3631,Block,Jabalpur,LGD,411,District,3631,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,3459,Block,Jabera,LGD,400,District,3459,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +LGD,4567,Block,Jadcherla,LGD,512,District,4567,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,4126,Block,Jafrabad,LGD,479,District,4126,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +LGD,3848,Block,Jafrabad,LGD,439,District,3848,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,361,Block,Jagadhri,LGD,76,District,361,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +LGD,5511,Block,Jagalur,LGD,535,District,5511,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +LGD,3073,Block,Jagannath Prasad,LGD,354,District,3073,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,2743,Block,Jagannathpur,LGD,343,District,2743,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,7356,Block,Jagargunda,LGD,642,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +LGD,2401,Block,Jagatballavpur,LGD,313,District,2401,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,2940,Block,Jagatsinghapur,LGD,355,District,2940,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +LGD,3360,Block,Jagdalpur,LGD,374,District,3360,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,4484,Block,Jagdevpur,LGD,692,District,4484,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,1428,Block,Jagdishpur,LGD,193,District,1428,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,1343,Block,Jagdishpur,LGD,192,District,1343,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,4991,Block,Jaggaiahpeta,LGD,749,District,4991,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4898,Block,Jaggampeta,LGD,746,District,4898,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4414,Block,Jagitial,LGD,681,District,4414,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,6211,Block,Jagitial Rural,LGD,681,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,230,Block,Jagraon,LGD,36,District,230,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +LGD,636,Block,Jahazpur,LGD,92,District,636,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,7413,Block,Jahu,LGD,17,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,3286,Block,Jaijaipur,LGD,762,District,3286,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,1083,Block,Jainagar,LGD,206,District,1083,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,2529,Block,Jainagar,LGD,334,District,2529,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +LGD,4307,Block,Jainath,LGD,501,District,4307,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,4320,Block,Jainoor,LGD,699,District,4320,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,332,Block,Jainti,LGD,45,District,332,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,546,Block,Jaipur,LGD,102,District,546,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,2378,Block,Jaipur,LGD,321,District,2378,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,4355,Block,Jaipur,LGD,684,District,4355,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,6582,Block,Jairampur Adc,LGD,229,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,574,Block,Jaisalmer,LGD,103,District,574,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +LGD,6984,Block,Jaisinagar,LGD,425,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,3690,Block,Jaisinghnagar,LGD,429,District,3690,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +LGD,110,Block,Jaisinghpur,LGD,18,District,110,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,916,Block,Jaisinghpur,LGD,185,District,916,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +LGD,597,Block,Jaitaran,LGD,774,District,597,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3695,Block,Jaithari,LGD,390,District,3695,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +LGD,3692,Block,Jaitpur,LGD,429,District,3692,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +LGD,243,Block,Jaitu,LGD,29,District,243,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +LGD,4623,Block,Jajireddygudem,LGD,696,District,4623,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,2977,Block,Jajpur,LGD,356,District,2977,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,6438,Block,Jakhal St,LGD,61,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +LGD,1848,Block,Jakhama,LGD,245,District,1848,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +LGD,987,Block,Jakhania,LGD,146,District,987,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +LGD,296,Block,Jakhani Dhar,LGD,55,District,296,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,6373,Block,Jakhanikhal,LGD,52,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,292,Block,Jakholi*,LGD,54,District,292,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +LGD,4366,Block,Jakranpally,LGD,516,District,4366,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,5157,Block,Jaladanki,LGD,515,District,5157,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,2140,Block,Jalah,LGD,616,District,2140,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +LGD,796,Block,Jalalabad,LGD,180,District,796,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +LGD,236,Block,Jalalabad,LGD,651,District,236,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +LGD,1137,Block,Jalalgarh,LGD,214,District,1137,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,6340,Block,Jalali,LGD,45,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,3923,Block,Jalalpore,LGD,453,District,3923,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +LGD,1256,Block,Jalalpur,LGD,218,District,1256,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,909,Block,Jalalpur,LGD,121,District,909,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +LGD,212,Block,Jalandhar - I,LGD,34,District,212,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +LGD,213,Block,Jalandhar - II,LGD,34,District,213,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +LGD,2234,Block,Jalangi,LGD,319,District,2234,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,852,Block,Jalaun,LGD,151,District,852,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +LGD,2725,Block,Jaldega,LGD,342,District,2725,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,1181,Block,Jale,LGD,195,District,1181,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,1009,Block,Jalesar,LGD,138,District,1009,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +LGD,2890,Block,Jaleswar,LGD,346,District,2890,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,3966,Block,Jalgaon,LGD,478,District,3966,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,3975,Block,Jalgaon (Jamod),LGD,472,District,3975,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,4229,Block,Jalkot,LGD,481,District,4229,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,4127,Block,Jalna,LGD,479,District,4127,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +LGD,6961,Block,Jalog,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,587,Block,Jalore,LGD,104,District,587,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,2178,Block,Jalpaiguri,LGD,314,District,2178,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,7379,Block,Jalsu,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,1852,Block,Jalukie,LGD,613,District,1852,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +LGD,4792,Block,Jalumuru,LGD,519,District,4792,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,2674,Block,Jama,LGD,326,District,2674,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,3651,Block,Jamai (Junnardeo),LGD,399,District,3651,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,2295,Block,Jamalpur,LGD,306,District,2295,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,1358,Block,Jamalpur,LGD,207,District,1358,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,2792,Block,Jamankira,LGD,371,District,2792,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,2455,Block,Jamboni,LGD,703,District,2455,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +LGD,3889,Block,Jambughoda,LGD,454,District,3889,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +LGD,3913,Block,Jambusar,LGD,442,District,3913,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,2860,Block,Jamda,LGD,365,District,2860,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,4835,Block,Jami,LGD,521,District,4835,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,6563,Block,Jamiri Circle,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,3821,Block,Jamjodhpur,LGD,447,District,3821,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +LGD,3808,Block,Jamkandorna,LGD,457,District,3808,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,5443,Block,Jamkhandi,LGD,524,District,5443,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,4214,Block,Jamkhed,LGD,466,District,4214,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,5215,Block,Jammalamadugu,LGD,504,District,5215,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4440,Block,Jammikunta,LGD,508,District,4440,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,79,Block,Jammu,LGD,5,District,79,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,6708,Block,Jammu North,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,6706,Block,Jammu South,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,6718,Block,Jammu West,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,6525,Block,Jamnagar City,LGD,447,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +LGD,3814,Block,Jamnagar Rural,LGD,447,District,3814,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +LGD,3974,Block,Jamner,LGD,478,District,3974,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,6677,Block,Jampuijala,LGD,653,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +LGD,2678,Block,Jamtara,LGD,333,District,2678,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false, +LGD,2536,Block,Jamua,LGD,329,District,2536,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,1527,Block,Jamui,LGD,198,District,1527,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,6164,Block,Jamunaha,LGD,181,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false, +LGD,6631,Block,Jamunamarathoor,LGD,593,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,2270,Block,Jamuria,LGD,704,District,2270,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +LGD,548,Block,Jamwaramgarh,LGD,102,District,548,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,7590,Block,Janakpuri,LGD,85,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false, +LGD,1276,Block,Jandaha,LGD,224,District,1276,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,1561,Block,Jang Adc,LGD,238,District,1561,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,4953,Block,Jangareddigudem,LGD,748,District,4953,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2353,Block,Jangipara,LGD,312,District,2353,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,6957,Block,Jangla,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,4699,Block,Jangoan,LGD,689,District,4699,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,7572,Block,Jangpura,LGD,670,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false, +LGD,3277,Block,Janjgir,LGD,379,District,3277,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,4334,Block,Jannaram,LGD,684,District,4334,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,7380,Block,Janoothar,LGD,767,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,711,Block,Jansath,LGD,172,District,711,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +LGD,4263,Block,Jaoli,LGD,494,District,4263,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,3501,Block,Jaora,LGD,423,District,3501,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,7311,Block,Jarhagaon,LGD,647,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false, +LGD,7283,Block,Jari,LGD,20,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,2594,Block,Jaridih,LGD,322,District,2594,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,2667,Block,Jarmundi,LGD,326,District,2667,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,3806,Block,Jasdan,LGD,457,District,3806,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,2867,Block,Jashipur,LGD,365,District,2867,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,3257,Block,Jashpur,LGD,380,District,3257,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,347,Block,Jaspur,LGD,56,District,347,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,773,Block,Jasrana,LGD,143,District,773,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +LGD,7365,Block,Jasrasar,LGD,93,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,105,Block,Jaswan,LGD,18,District,105,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,836,Block,Jaswantnagar,LGD,139,District,836,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +LGD,6044,Block,Jaswantpura,LGD,104,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,4304,Block,Jat,LGD,493,District,4304,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,3049,Block,Jatani,LGD,362,District,3049,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,3418,Block,Jatara,LGD,434,District,3418,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,984,Block,Jaunpur,LGD,152,District,984,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +LGD,3472,Block,Jawa,LGD,424,District,3472,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,3487,Block,Jawad,LGD,419,District,3487,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +LGD,104,Block,Jawalamukhi,LGD,18,District,104,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,96,Block,Jawali,LGD,18,District,96,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,3585,Block,Jawar,LGD,427,District,3585,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,4160,Block,Jawhar,LGD,665,District,4160,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +LGD,559,Block,Jayal,LGD,110,District,559,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,3170,Block,Jayapatna,LGD,358,District,3170,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,2431,Block,Jaynagar - I,LGD,304,District,2431,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2432,Block,Jaynagar - II,LGD,304,District,2432,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2368,Block,Jaypur,LGD,305,District,2368,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,4947,Block,Jeelugu Milli,LGD,748,District,4947,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3563,Block,Jeerapur,LGD,422,District,3563,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,1536,Block,Jehanabad,LGD,199,District,1536,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +LGD,1664,Block,Jengging Circle,LGD,240,District,1664,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,6203,Block,Jesar,LGD,443,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,6481,Block,Jessami,LGD,260,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false, +LGD,3811,Block,Jetpur,LGD,457,District,3811,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,7440,Block,Jetpur City,LGD,457,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,3900,Block,Jetpur Pavi,LGD,668,District,3900,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +LGD,5586,Block,Jevargi,LGD,538,District,5586,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,744,Block,Jewar,LGD,144,District,744,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +LGD,3209,Block,Jeypore,LGD,363,District,3209,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,3709,Block,Jhabua,LGD,412,District,3709,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +LGD,688,Block,Jhadol,LGD,117,District,688,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,3917,Block,Jhagadia,LGD,442,District,3917,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,1530,Block,Jhajha,LGD,198,District,1530,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,409,Block,Jhajjar,LGD,64,District,409,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +LGD,2390,Block,Jhalda - I,LGD,321,District,2390,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,2391,Block,Jhalda - II,LGD,321,District,2391,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,7229,Block,Jhallara,LGD,777,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3891,Block,Jhalod,LGD,445,District,3891,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,679,Block,Jhalrapatan,LGD,105,District,679,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,154,Block,Jhanduta,LGD,15,District,154,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +LGD,1097,Block,Jhanjharpur,LGD,206,District,1097,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,860,Block,Jhansi,LGD,153,District,860,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +LGD,7220,Block,Jhanwar,LGD,107,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,4476,Block,Jharasangam,LGD,691,District,4476,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,2756,Block,Jharbandh,LGD,347,District,2756,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,6983,Block,Jharda,LGD,435,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,2454,Block,Jhargram,LGD,703,District,2454,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +LGD,2585,Block,Jharia-Cum-Jorapokhar-Cum-Sindri,LGD,325,District,2585,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,3191,Block,Jharigan,LGD,366,District,3191,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,2776,Block,Jharsuguda,LGD,357,District,2776,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +LGD,2742,Block,Jhinkpani,LGD,343,District,2742,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,3553,Block,Jhiranya,LGD,414,District,3553,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,6070,Block,Jhonthripal,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,2840,Block,Jhumpura,LGD,361,District,2840,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,487,Block,Jhunjhunu,LGD,106,District,487,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,6346,Block,Jilasu,LGD,47,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,6322,Block,Jilled Chowdergudem,LGD,518,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,383,Block,Jind,LGD,65,District,383,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +LGD,4493,Block,Jinnaram,LGD,691,District,4493,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,4117,Block,Jintur,LGD,489,District,4117,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,3490,Block,Jiran,LGD,419,District,3490,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +LGD,1986,Block,Jirang,LGD,276,District,1986,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +LGD,6679,Block,Jirania,LGD,272,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +LGD,1883,Block,Jiribam,LGD,713,District,1883,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false, +LGD,4076,Block,Jiwati,LGD,473,District,4076,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,4810,Block,Jiyyammavalasa,LGD,743,District,4810,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3712,Block,Jobat,LGD,639,District,3712,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +LGD,7141,Block,Jobner,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,570,Block,Jodhpur,LGD,107,District,570,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,3815,Block,Jodiya,LGD,447,District,3815,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +LGD,1024,Block,Jogapatti,LGD,211,District,1024,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,124,Block,Jogindarnagar,LGD,22,District,124,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,1120,Block,Jokihat,LGD,188,District,1120,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,6890,Block,Jol,LGD,26,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,6606,Block,Jomlo Mobuk Circle,LGD,679,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,2057,Block,Jonai,LGD,284,District,2057,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +LGD,2159,Block,Jorebunglow Sukiapokhri,LGD,309,District,2159,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,6399,Block,Jorethang,LGD,227,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false, +LGD,2078,Block,Jorhat East,LGD,290,District,2078,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +LGD,2077,Block,Jorhat West,LGD,290,District,2077,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +LGD,284,Block,Joshimath,LGD,47,District,284,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,6366,Block,Joshiyara,LGD,57,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,6021,Block,Jotana,LGD,451,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,3388,Block,Joura,LGD,417,District,3388,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +LGD,6701,Block,Jourian,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,5111,Block,J.Pangulur,LGD,517,District,5111,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,188,Block,Jubbal,LGD,23,District,188,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,2794,Block,Jujomura,LGD,371,District,2794,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,4373,Block,Jukkal,LGD,685,District,4373,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,384,Block,Julana,LGD,65,District,384,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +LGD,4409,Block,Julapalli,LGD,682,District,4409,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,4746,Block,Julurpadu,LGD,690,District,4746,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,3827,Block,Junagadh,LGD,448,District,3827,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,6517,Block,Junagadh City,LGD,448,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,3166,Block,Junagarh,LGD,358,District,3166,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,183,Block,Junga,LGD,23,District,183,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,3543,Block,Juni Indore,LGD,410,District,3543,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,4187,Block,Junnar,LGD,490,District,4187,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,5262,Block,Jupadu Bunglow,LGD,755,District,5262,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7381,Block,Jurhara,LGD,767,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,6401,Block,Kabi,LGD,226,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false, +LGD,3080,Block,Kabisuryanagar,LGD,354,District,3080,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,7366,Block,Kachhola,LGD,92,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,7104,Block,Kadaba,LGD,534,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,5859,Block,Kadaladi,LGD,583,District,5859,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,2051,Block,Kadam,LGD,295,District,2051,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +LGD,3880,Block,Kadana,LGD,669,District,3880,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +LGD,5230,Block,Kadapa,LGD,504,District,5230,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,5772,Block,Kadavur,LGD,576,District,5772,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +LGD,6619,Block,Kadayampatti,LGD,584,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,6639,Block,Kadayanallur,LGD,733,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +LGD,4335,Block,Kaddam Peddur,LGD,680,District,4335,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,4298,Block,Kadegaon,LGD,493,District,4298,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,3759,Block,Kadi,LGD,451,District,3759,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,4918,Block,Kadiam,LGD,505,District,4918,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,918,Block,Kadipur,LGD,185,District,918,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +LGD,6422,Block,Kadipur St,LGD,62,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,5343,Block,Kadiri,LGD,754,District,5343,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5624,Block,Kadmat,LGD,553,District,5624,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,6324,Block,Kadthal,LGD,518,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,5529,Block,Kadur,LGD,532,District,5529,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,7551,Block,Kadval,LGD,668,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +LGD,1145,Block,Kadwa,LGD,201,District,1145,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,6332,Block,Kafligair,LGD,46,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +LGD,4290,Block,Kagal,LGD,480,District,4290,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,4318,Block,Kagaznagar,LGD,699,District,4318,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,7100,Block,Kagwad,LGD,527,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,1336,Block,Kahalgaon,LGD,192,District,1336,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,1174,Block,Kahara,LGD,216,District,1174,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,6756,Block,Kahara,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,4222,Block,Kaij,LGD,470,District,4222,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,5016,Block,Kaikaluru,LGD,748,District,5016,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3389,Block,Kailaras,LGD,417,District,3389,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +LGD,6682,Block,Kailashahar,LGD,655,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +LGD,830,Block,Kaimganj,LGD,141,District,830,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +LGD,706,Block,Kairana,LGD,660,District,706,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false, +LGD,2600,Block,Kairo,LGD,336,District,2600,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +LGD,922,Block,Kaiserganj,LGD,125,District,922,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +LGD,368,Block,Kaithal,LGD,66,District,368,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +LGD,4923,Block,Kajuluru,LGD,746,District,4923,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6793,Block,Kakapora,LGD,11,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +LGD,3059,Block,Kakatpur,LGD,369,District,3059,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,1878,Block,Kakching,LGD,711,District,1878,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,false, +LGD,2437,Block,Kakdwip,LGD,304,District,2437,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,4913,Block,Kakinada (Rural),LGD,746,District,4913,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4914,Block,Kakinada (Urban),LGD,746,District,4914,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6943,Block,Kakira,LGD,16,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,1537,Block,Kako,LGD,199,District,1537,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +LGD,6601,Block,Kakoi Circle,LGD,237,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,5083,Block,Kakumanu,LGD,506,District,5083,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,5582,Block,Kalaburagi,LGD,538,District,5582,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,344,Block,Kaladhungi,LGD,51,District,344,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,7087,Block,Kalagi,LGD,538,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,7507,Block,Kalahandi,LGD,358,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,6427,Block,Kalaigaon,LGD,617,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +LGD,6644,Block,Kalaiyarkoil,LGD,585,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,5371,Block,Kalakada,LGD,753,District,5371,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,24,Block,Kalakote,LGD,12,District,24,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,1570,Block,Kalaktang Adc,LGD,242,District,1570,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,4239,Block,Kalamb,LGD,488,District,4239,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +LGD,4081,Block,Kalamb,LGD,500,District,4081,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,4025,Block,Kalameshwar,LGD,484,District,4025,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,4114,Block,Kalamnuri,LGD,477,District,4114,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +LGD,7508,Block,Kalampur,LGD,358,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,6882,Block,Kalan,LGD,180,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +LGD,6859,Block,Kalanaur,LGD,32,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +LGD,6467,Block,Kalanaur,LGD,73,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +LGD,6469,Block,Kalanwali,LGD,74,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +LGD,3523,Block,Kalapipal,LGD,430,District,3523,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +LGD,7194,Block,Kalasa,LGD,532,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,5207,Block,Kalasapadu,LGD,504,District,5207,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,5959,Block,Kalasapakkam,LGD,593,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,3817,Block,Kalavad,LGD,447,District,3817,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +LGD,7059,Block,Kalavai,LGD,731,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +LGD,6446,Block,Kalayat,LGD,66,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +LGD,7284,Block,Kalbog,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,2171,Block,Kalchini,LGD,664,District,2171,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +LGD,1543,Block,Kaler,LGD,611,District,1543,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +LGD,2019,Block,Kalgachia,LGD,280,District,2019,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +LGD,5476,Block,Kalghatgi,LGD,536,District,5476,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +LGD,4453,Block,Kalher,LGD,691,District,4453,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,2031,Block,Kaliabor,LGD,297,District,2031,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +LGD,2220,Block,Kaliachak - I,LGD,316,District,2220,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,2221,Block,Kaliachak - II,LGD,316,District,2221,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,2222,Block,Kaliachak - III,LGD,316,District,2222,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,2198,Block,Kaliaganj,LGD,311,District,2198,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,5017,Block,Kalidindi,LGD,748,District,5017,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2303,Block,Kaliganj,LGD,320,District,2303,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,5160,Block,Kaligiri,LGD,515,District,5160,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5387,Block,Kalikiri,LGD,753,District,5387,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3227,Block,Kalimela,LGD,364,District,3227,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +LGD,2156,Block,Kalimpong -I,LGD,702,District,2156,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +LGD,6866,Block,Kalinagar,LGD,173,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +LGD,356,Block,Kalka,LGD,70,District,356,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +LGD,456,Block,Kalkaji,LGD,670,District,456,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false, +LGD,5882,Block,Kalkulam,LGD,575,District,5882,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +LGD,4985,Block,Kalla,LGD,523,District,4985,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,5734,Block,Kallakkurichi,LGD,729,District,5734,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +LGD,6615,Block,Kalligudi,LGD,578,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,5258,Block,Kallur,LGD,511,District,5258,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,4763,Block,Kalluru,LGD,509,District,4763,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,2293,Block,Kalna - I,LGD,306,District,2293,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2294,Block,Kalna - II,LGD,306,District,2294,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,6938,Block,Kalol,LGD,15,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +LGD,3886,Block,Kalol,LGD,454,District,3886,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +LGD,7438,Block,Kalol City,LGD,446,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +LGD,3773,Block,Kalol Gandhinagar,LGD,446,District,3773,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +LGD,6297,Block,Kaloor Thimmandoddi,LGD,695,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,197,Block,Kalpa,LGD,19,District,197,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +LGD,5628,Block,Kalpeni,LGD,553,District,5628,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,853,Block,Kalpi,LGD,151,District,853,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +LGD,302,Block,Kalsi,LGD,49,District,302,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +LGD,1090,Block,Kaluahi,LGD,206,District,1090,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,5174,Block,Kaluvoya,LGD,515,District,5174,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,7055,Block,Kalvarayan Hills,LGD,729,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +LGD,4576,Block,Kalwakurthy,LGD,694,District,4576,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,4143,Block,Kalwan,LGD,487,District,4143,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,7215,Block,Kalwar,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,4168,Block,Kalyan,LGD,497,District,4168,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +LGD,5321,Block,Kalyanadurg,LGD,502,District,5321,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,3176,Block,Kalyanasingpur,LGD,370,District,3176,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,6966,Block,Kalyani,LGD,320,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,7130,Block,Kalyanpur,LGD,775,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,1048,Block,Kalyanpur,LGD,213,District,1048,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1284,Block,Kalyanpur,LGD,217,District,1284,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,3819,Block,Kalyanpur,LGD,674,District,3819,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +LGD,2988,Block,Kamakshyanagar,LGD,352,District,2988,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +LGD,7090,Block,Kamalapur,LGD,538,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,4447,Block,Kamalapur,LGD,686,District,4447,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,5224,Block,Kamalapuram,LGD,504,District,5224,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,7085,Block,Kamalnagar,LGD,529,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +LGD,6681,Block,Kamalpur,LGD,269,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +LGD,2118,Block,Kamalpur,LGD,291,District,2118,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,506,Block,Kaman,LGD,767,District,506,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,4400,Block,Kamanpur,LGD,682,District,4400,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,4390,Block,Kamareddy,LGD,685,District,4390,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,4954,Block,Kamavarapukota,LGD,748,District,4954,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6585,Block,Kamba Adc,LGD,243,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false, +LGD,5334,Block,Kambadur,LGD,502,District,5334,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5372,Block,Kambhamvaripalle,LGD,753,District,5372,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2710,Block,Kamdara,LGD,331,District,2710,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,6567,Block,Kamengbari Doimara Circle,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,4745,Block,Kamepalli,LGD,509,District,4745,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,1889,Block,Kamjong,LGD,717,District,1889,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false, +LGD,4363,Block,Kammarpally,LGD,516,District,4363,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,7107,Block,Kampli,LGD,528,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +LGD,1700,Block,Kamporijo Circle,LGD,718,District,1700,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false, +LGD,4030,Block,Kamptee,LGD,484,District,4030,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,2037,Block,Kampur,LGD,297,District,2037,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +LGD,174,Block,Kamrau,LGD,24,District,174,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,3936,Block,Kamrej,LGD,459,District,3936,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,5858,Block,Kamuthi,LGD,583,District,5858,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,7012,Block,Kanadia,LGD,410,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,4656,Block,Kanagal,LGD,514,District,4656,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,5335,Block,Kanaganipalli,LGD,754,District,5335,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7091,Block,Kanakagiri,LGD,543,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +LGD,5608,Block,Kanakapura,LGD,631,District,5608,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +LGD,6425,Block,Kanalichhina,LGD,53,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,7466,Block,Kanas,LGD,369,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,5661,Block,Kanayannur,LGD,555,District,5661,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +LGD,6685,Block,Kanchanpur,LGD,270,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +LGD,5707,Block,Kancheepuram,LGD,574,District,5707,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +LGD,5007,Block,Kanchikacherla,LGD,749,District,5007,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4777,Block,Kanchili,LGD,519,District,4777,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,322,Block,Kanda,LGD,46,District,322,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +LGD,6651,Block,Kandachipuram,LGD,596,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,166,Block,Kandaghat,LGD,25,District,166,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,7495,Block,Kandhamal,LGD,359,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,4108,Block,Kandhar,LGD,485,District,4108,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,2240,Block,Kandi,LGD,319,District,2240,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2498,Block,Kandi,LGD,328,District,2498,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,6275,Block,Kandi,LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,6360,Block,Kandisaur,LGD,55,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,4545,Block,Kandukur,LGD,518,District,4545,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,5148,Block,Kandukuru,LGD,517,District,5148,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,5306,Block,Kanekal,LGD,502,District,5306,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,46,Block,Kangan,LGD,626,District,46,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +LGD,6495,Block,Kangchup Geljang,LGD,712,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,5901,Block,Kangeyam,LGD,634,District,5901,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,6572,Block,Kangku Circle,LGD,719,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false, +LGD,6884,Block,Kangoo,LGD,17,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,1861,Block,Kangpokpi,LGD,712,District,1861,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,100,Block,Kangra,LGD,18,District,100,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,4450,Block,Kangti,LGD,691,District,4450,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,6500,Block,Kangvai,LGD,254,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,2519,Block,Kanha Chatti,LGD,323,District,2519,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,5136,Block,Kanigiri,LGD,790,District,5136,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3003,Block,Kaniha,LGD,344,District,3003,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +LGD,6458,Block,Kanina,LGD,69,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +LGD,7486,Block,Kanisi,LGD,354,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,5672,Block,Kanjirappally,LGD,560,District,5672,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +LGD,2989,Block,Kankadahad,LGD,352,District,2989,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +LGD,4277,Block,Kankavli,LGD,495,District,4277,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +LGD,2684,Block,Kanke,LGD,339,District,2684,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,3351,Block,Kanker,LGD,381,District,3351,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,5023,Block,Kankipadu,LGD,510,District,5023,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,3743,Block,Kankrej,LGD,441,District,3743,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,2275,Block,Kanksa,LGD,704,District,2275,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +LGD,4133,Block,Kannad,LGD,469,District,4133,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,6251,Block,Kannaigudem,LGD,720,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,834,Block,Kannauj,LGD,155,District,834,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +LGD,6229,Block,Kannepally,LGD,684,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,3527,Block,Kannod,LGD,402,District,3527,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,5633,Block,Kannur,LGD,557,District,5633,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +LGD,6929,Block,Kanod,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,849,Block,Kanpur,LGD,157,District,849,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +LGD,3256,Block,Kansabel,LGD,380,District,3256,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,3149,Block,Kantabanji,LGD,345,District,3149,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,3127,Block,Kantamal,LGD,349,District,3127,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +LGD,6608,Block,Kantang Circle,LGD,229,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,7502,Block,Kantapada,LGD,350,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,718,Block,Kanth,LGD,171,District,718,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +LGD,1204,Block,Kanti,LGD,208,District,1204,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,1688,Block,Kanubari Adc,LGD,666,District,1688,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false, +LGD,6054,Block,Kanwas,LGD,109,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +LGD,3869,Block,Kapadvanj,LGD,450,District,3869,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,660,Block,Kapasan,LGD,95,District,660,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,4928,Block,Kapileswarapuram,LGD,505,District,4928,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,321,Block,Kapkot,LGD,46,District,321,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +LGD,6317,Block,Kapra,LGD,700,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,3930,Block,Kaprada,LGD,462,District,3930,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,6879,Block,Kaptanganj,LGD,160,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +LGD,2885,Block,Kaptipada,LGD,365,District,2885,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,7348,Block,Kapu,LGD,386,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,7067,Block,Kapu,LGD,549,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +LGD,206,Block,Kapurthala,LGD,35,District,206,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +LGD,4265,Block,Karad,LGD,494,District,4265,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,3384,Block,Karahal,LGD,431,District,3384,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +LGD,5914,Block,Karaikal,LGD,598,District,5914,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +LGD,5830,Block,Karaikkudi,LGD,585,District,5830,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,1378,Block,Karai Parsurai,LGD,209,District,1378,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,6269,Block,Karakagudem,LGD,690,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,1462,Block,Karakat,LGD,215,District,1462,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,5825,Block,Karambakudi,LGD,582,District,5825,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,5109,Block,Karamchedu,LGD,750,District,5109,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2195,Block,Karandighi,LGD,311,District,2195,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,3997,Block,Karanja,LGD,499,District,3997,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +LGD,4016,Block,Karanja,LGD,498,District,4016,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +LGD,2870,Block,Karanjia,LGD,365,District,2870,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,457,Block,Karanpur,LGD,100,District,457,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,4922,Block,Karapa,LGD,746,District,4922,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7092,Block,Karatagi,LGD,543,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +LGD,523,Block,Karauli,LGD,108,District,523,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,6083,Block,Karawal Nagar,LGD,81,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false, +LGD,6690,Block,Karbook,LGD,654,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +LGD,892,Block,Karchhana,LGD,120,District,892,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +LGD,3637,Block,Kareli,LGD,418,District,3637,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +LGD,5046,Block,Karempudi,LGD,751,District,5046,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6064,Block,Karera,LGD,92,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,3410,Block,Karera,LGD,432,District,3410,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,1467,Block,Kargahar,LGD,215,District,1467,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,13,Block,Kargil,LGD,6,District,13,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +LGD,776,Block,Karhal,LGD,166,District,776,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +LGD,5851,Block,Kariapatti,LGD,597,District,5851,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,6202,Block,Kariasol,LGD,325,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,6622,Block,Karimangalam,LGD,571,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +LGD,2101,Block,Karimganj,LGD,293,District,2101,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +LGD,6231,Block,Karimnagar,LGD,508,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,4428,Block,Karimnagar Rural,LGD,508,District,4428,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,2299,Block,Karimpur - I,LGD,320,District,2299,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,2300,Block,Karimpur - II,LGD,320,District,2300,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,3907,Block,Karjan,LGD,461,District,3907,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,4174,Block,Karjat,LGD,491,District,4174,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,4213,Block,Karjat,LGD,466,District,4213,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,5524,Block,Karkal,LGD,549,District,5524,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +LGD,6533,Block,Karkeli,LGD,436,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +LGD,7509,Block,Karlamunda,LGD,358,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,5092,Block,Karlapalem,LGD,750,District,5092,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4244,Block,Karmala,LGD,496,District,4244,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,2677,Block,Karma Tanr Vidyasagar*,LGD,333,District,2677,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false, +LGD,3,Block,Karnah,LGD,8,District,3,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,372,Block,Karnal,LGD,67,District,372,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +LGD,287,Block,Karnaprayag,LGD,47,District,287,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,447,Block,Karol Bagh,LGD,77,District,447,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,false, +LGD,2552,Block,Karon,LGD,324,District,2552,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,7344,Block,Karpawand,LGD,374,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,1544,Block,Karpi,LGD,611,District,1544,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +LGD,2700,Block,Karra,LGD,606,District,2700,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false, +LGD,139,Block,Karsog,LGD,22,District,139,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,3276,Block,Kartala,LGD,383,District,3276,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,5676,Block,Karthikappally,LGD,554,District,5676,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +LGD,5684,Block,Karunagappally,LGD,559,District,5684,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +LGD,5769,Block,Karur,LGD,576,District,5769,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +LGD,5408,Block,Karvetinagar,LGD,503,District,5408,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,4287,Block,Karvir,LGD,480,District,4287,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,5478,Block,Karwar,LGD,550,District,5478,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,875,Block,Karwi,LGD,136,District,875,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false, +LGD,5630,Block,Kasaragod,LGD,558,District,5630,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +LGD,164,Block,Kasauli,LGD,25,District,164,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,1135,Block,Kasba,LGD,214,District,1135,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,3328,Block,Kasdol,LGD,644,District,3328,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,1010,Block,Kasganj,LGD,633,District,1010,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +LGD,1514,Block,Kashi Chak,LGD,210,District,1514,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,3177,Block,Kashipur,LGD,370,District,3177,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,2385,Block,Kashipur,LGD,321,District,2385,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,346,Block,Kashipur,LGD,56,District,346,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,6748,Block,Kashtigarh,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,6834,Block,Kasimabad,LGD,146,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +LGD,4876,Block,Kasimkota,LGD,744,District,4876,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3104,Block,Kasinagar,LGD,353,District,3104,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +LGD,4349,Block,Kasipet,LGD,684,District,4349,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,2593,Block,Kasmar,LGD,322,District,2593,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,1891,Block,Kasom Khullen,LGD,717,District,1891,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false, +LGD,3547,Block,Kasrawad,LGD,414,District,3547,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,957,Block,Kasya,LGD,160,District,957,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +LGD,2655,Block,Katamdag,LGD,332,District,2655,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,1668,Block,Katan Circle,LGD,240,District,1668,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,3667,Block,Katangi,LGD,392,District,3667,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,4402,Block,Kataram,LGD,687,District,4402,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,6519,Block,Katargam,LGD,459,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,3371,Block,Katekalyan,LGD,376,District,3371,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +LGD,3272,Block,Katghora,LGD,383,District,3272,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,2670,Block,Kathikund,LGD,326,District,2670,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,3872,Block,Kathlal,LGD,450,District,3872,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,4418,Block,Kathlapur,LGD,681,District,4418,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,30,Block,Kathua,LGD,7,District,30,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,504,Block,Kathumar,LGD,87,District,504,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,2096,Block,Katigora,LGD,282,District,2096,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +LGD,1151,Block,Katihar,LGD,201,District,1151,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,1215,Block,Katiya,LGD,197,District,1215,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,2654,Block,Katkamsandi,LGD,332,District,2654,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,2109,Block,Katlichara,LGD,289,District,2109,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +LGD,7567,Block,Katngi,LGD,411,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,7028,Block,Katni Nagar,LGD,413,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,4024,Block,Katol,LGD,484,District,4024,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,1354,Block,Katoria,LGD,190,District,1354,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,6945,Block,Katoula,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,5713,Block,Katpadi,LGD,595,District,5713,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +LGD,1208,Block,Katra,LGD,208,District,1208,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,6741,Block,Katra,LGD,627,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,4943,Block,Katrenikona,LGD,747,District,4943,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1397,Block,Katrisarai,LGD,209,District,1397,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,5945,Block,Kattakkada,LGD,565,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +LGD,4635,Block,Kattangur,LGD,514,District,4635,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,6980,Block,Katthiwara,LGD,639,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +LGD,5792,Block,Kattumannarkoil,LGD,570,District,5792,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,2281,Block,Katwa - I,LGD,306,District,2281,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2282,Block,Katwa - II,LGD,306,District,2282,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,5158,Block,Kavali,LGD,515,District,5158,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,3902,Block,Kavant,LGD,668,District,3902,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +LGD,5625,Block,Kavaratti,LGD,553,District,5625,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,4303,Block,Kavathemahankal,LGD,493,District,4303,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,4779,Block,Kaviti,LGD,519,District,4779,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,1516,Block,Kawakol,LGD,210,District,1516,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,3298,Block,Kawardha,LGD,382,District,3298,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +LGD,6829,Block,Kawarhama,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,7342,Block,Kawrtethawveng,LGD,266,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false, +LGD,6628,Block,Kayathar,LGD,594,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,1627,Block,Kaying Eac,LGD,679,District,1627,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,1854,Block,Kebai Khelma,LGD,613,District,1854,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +LGD,1646,Block,Kebang Circle,LGD,679,District,1646,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,6092,Block,Keegam,LGD,625,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false, +LGD,4522,Block,Keesara,LGD,700,District,4522,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,1886,Block,Keirao Bitra,LGD,255,District,1886,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +LGD,614,Block,Kekri,LGD,86,District,614,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,4090,Block,Kelapur,LGD,500,District,4090,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,7269,Block,Kelhari,LGD,760,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,6091,Block,Keller,LGD,625,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false, +LGD,2927,Block,Kendrapara,LGD,360,District,2927,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,3663,Block,Keolari,LGD,428,District,3663,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,7492,Block,Keonjhar,LGD,361,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,1183,Block,Keotiranway,LGD,195,District,1183,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,986,Block,Kerakat,LGD,152,District,986,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +LGD,4313,Block,Kerameri,LGD,699,District,4313,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,6782,Block,Keran,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,2656,Block,Keredari,LGD,332,District,2656,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,2721,Block,Kersai,LGD,342,District,2721,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,4717,Block,Kesamudram,LGD,688,District,4717,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,1047,Block,Kesaria,LGD,213,District,1047,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1439,Block,Kesath,LGD,194,District,1439,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,4561,Block,Keshampet,LGD,518,District,4561,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,2466,Block,Keshiary,LGD,318,District,2466,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,3355,Block,Keshkal,LGD,643,District,3355,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +LGD,3831,Block,Keshod,LGD,448,District,3831,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,625,Block,Keshoraipatan,LGD,94,District,625,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +LGD,2451,Block,Keshpur,LGD,318,District,2451,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,3159,Block,Kesinga,LGD,358,District,3159,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,3452,Block,Kesli,LGD,425,District,3452,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,2497,Block,Ketar*,LGD,328,District,2497,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,4637,Block,Kethepally,LGD,514,District,4637,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,2279,Block,Ketugram - I,LGD,306,District,2279,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2280,Block,Ketugram - II,LGD,306,District,2280,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,1847,Block,Kezocha,LGD,245,District,1847,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +LGD,4929,Block,K Gangavaram,LGD,747,District,4929,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3508,Block,Khacharod,LGD,435,District,3508,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,6878,Block,Khadda,LGD,160,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +LGD,3235,Block,Khadganva,LGD,760,District,3235,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,7277,Block,Khadgaon,LGD,761,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,261,Block,Khadur Sahib,LGD,609,District,261,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +LGD,4,Block,Khag,LGD,2,District,4,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,879,Block,Khaga,LGD,142,District,879,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +LGD,1323,Block,Khagaria,LGD,202,District,1323,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +LGD,752,Block,Khair,LGD,119,District,752,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +LGD,2906,Block,Khaira,LGD,346,District,2906,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,1532,Block,Khaira,LGD,198,District,1532,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,3303,Block,Khairagarh,LGD,759,District,3303,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,4505,Block,Khairatabad,LGD,507,District,4505,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,3670,Block,Khairlanji,LGD,392,District,3670,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,7469,Block,Khairput,LGD,364,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +LGD,7207,Block,Khairthal,LGD,770,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,1089,Block,Khajauli,LGD,206,District,1089,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,5212,Block,Khajipeta,LGD,504,District,5212,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,953,Block,Khajni,LGD,148,District,953,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +LGD,3113,Block,Khajuripada,LGD,359,District,3113,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,478,Block,Khajuwala,LGD,93,District,478,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,3720,Block,Khaknar,LGD,397,District,3720,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +LGD,4175,Block,Khalapur,LGD,491,District,4175,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,942,Block,Khalilabad,LGD,178,District,942,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +LGD,7485,Block,Khallikote,LGD,354,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,12,Block,Khaltsi,LGD,9,District,12,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +LGD,3715,Block,Khalwa,LGD,405,District,3715,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,223,Block,Khamanon,LGD,30,District,223,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +LGD,3847,Block,Khambha,LGD,439,District,3847,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,3813,Block,Khambhalia,LGD,674,District,3813,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +LGD,3866,Block,Khambhat,LGD,440,District,3866,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,3981,Block,Khamgaon,LGD,472,District,3981,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,4756,Block,Khammam (Rural),LGD,509,District,4756,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,6326,Block,Khammam Urban,LGD,509,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,6393,Block,Khamnor,LGD,112,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,2354,Block,Khanakul - I,LGD,312,District,2354,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,2355,Block,Khanakul - II,LGD,312,District,2355,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,4709,Block,Khanapur,LGD,522,District,4709,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,5439,Block,Khanapur,LGD,527,District,5439,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,4299,Block,Khanapur,LGD,493,District,4299,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,4347,Block,Khanapur,LGD,680,District,4347,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,2297,Block,Khandaghosh,LGD,306,District,2297,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,4257,Block,Khandala,LGD,494,District,4257,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,3026,Block,Khandapada,LGD,367,District,3026,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +LGD,532,Block,Khandar,LGD,113,District,532,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,6384,Block,Khandela,LGD,114,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,3716,Block,Khandwa,LGD,405,District,3716,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,7019,Block,Khandwa Nagar,LGD,405,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,3414,Block,Khaniyadhana,LGD,432,District,3414,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,225,Block,Khanna,LGD,36,District,225,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +LGD,1287,Block,Khanpur,LGD,217,District,1287,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,678,Block,Khanpur,LGD,105,District,678,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,3879,Block,Khanpur,LGD,669,District,3879,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +LGD,6472,Block,Khanpur St,LGD,75,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +LGD,6,Block,Khansahib,LGD,2,District,6,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,6801,Block,Khanyar,LGD,13,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +LGD,3145,Block,Khaprakhol,LGD,345,District,3145,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,1360,Block,Kharagpur,LGD,207,District,1360,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,2460,Block,Kharagpur - I,LGD,318,District,2460,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,2461,Block,Kharagpur - II,LGD,318,District,2461,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,6704,Block,Kharah Balli,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,266,Block,Kharar,LGD,608,District,266,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +LGD,2495,Block,Kharaundhi,LGD,328,District,2495,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,3422,Block,Khargapur,LGD,434,District,3422,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,3550,Block,Khargone,LGD,414,District,3550,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,7029,Block,Khargone Nagar,LGD,414,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,2239,Block,Khargram,LGD,319,District,2239,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,6759,Block,Khari,LGD,621,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +LGD,3156,Block,Khariar,LGD,368,District,3156,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +LGD,2165,Block,Kharibari,LGD,309,District,2165,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,1331,Block,Kharik,LGD,192,District,1331,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,381,Block,Kharkhoda,LGD,75,District,381,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +LGD,1972,Block,Kharkutta,LGD,656,District,1972,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false, +LGD,7262,Block,Kharora,LGD,387,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +LGD,1681,Block,Kharsang Circle,LGD,229,District,1681,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,2747,Block,Kharsawan,LGD,341,District,2747,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,3269,Block,Kharsia,LGD,386,District,3269,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,7159,Block,Kharu,LGD,9,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +LGD,1992,Block,Khatarshnong Laitkroh,LGD,274,District,1992,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,710,Block,Khatauli,LGD,172,District,710,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +LGD,4260,Block,Khatav,LGD,494,District,4260,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,3531,Block,Khategaon,LGD,402,District,3531,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,352,Block,Khatima,LGD,56,District,352,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,2373,Block,Khatra,LGD,305,District,2373,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,6771,Block,Khawas,LGD,12,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,1909,Block,Khawbung,LGD,262,District,1909,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false, +LGD,1907,Block,Khawzawl,LGD,728,District,1907,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +LGD,6247,Block,Khazipet,LGD,686,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,4190,Block,Khed,LGD,490,District,4190,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,4268,Block,Khed,LGD,492,District,4268,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,3874,Block,Kheda,LGD,450,District,3874,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,3760,Block,Khedbrahma,LGD,458,District,3760,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +LGD,561,Block,Kheenvsar,LGD,110,District,561,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,2486,Block,Khejuri - I,LGD,317,District,2486,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2487,Block,Khejuri - II,LGD,317,District,2487,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,737,Block,Khekada,LGD,124,District,737,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +LGD,2683,Block,Khelari,LGD,339,District,2683,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,6605,Block,Khenawa Circle,LGD,231,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,6496,Block,Khengjoy,LGD,253,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +LGD,768,Block,Kheragarh,LGD,118,District,768,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +LGD,3752,Block,Kheralu,LGD,451,District,3752,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,6195,Block,Khergam,LGD,453,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +LGD,6419,Block,Kheri Jalab St,LGD,792,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +LGD,695,Block,Kherwara,LGD,117,District,695,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,490,Block,Khetri,LGD,106,District,490,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,1811,Block,Khezhakeno,LGD,248,District,1811,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,6246,Block,Khila Warangal,LGD,522,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,3564,Block,Khilchipur,LGD,422,District,3564,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,1669,Block,Khimiyang Eac,LGD,229,District,1669,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,3606,Block,Khirkiya,LGD,408,District,3606,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +LGD,1490,Block,Khizirsarai,LGD,196,District,1490,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,6828,Block,Khoie,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,6428,Block,Khoirabari,LGD,617,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +LGD,1842,Block,Khongsa,LGD,614,District,1842,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +LGD,1686,Block,Khonsa Hq,LGD,239,District,1686,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +LGD,3036,Block,Khordha,LGD,362,District,3036,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,6038,Block,Khoupum,LGD,714,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false, +LGD,6714,Block,Khour,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,6684,Block,Khowai,LGD,652,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false, +LGD,2267,Block,Khoyrasol,LGD,307,District,2267,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,1304,Block,Khudabandpur,LGD,191,District,1304,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,7015,Block,Khudel,LGD,410,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,6993,Block,Khujner,LGD,422,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,4138,Block,Khuldabad,LGD,469,District,4138,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,2083,Block,Khumtai,LGD,288,District,2083,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +LGD,107,Block,Khundian,LGD,18,District,107,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,2883,Block,Khunta,LGD,365,District,2883,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,2704,Block,Khunti,LGD,606,District,2704,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false, +LGD,2732,Block,Khuntpani,LGD,343,District,2732,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,3444,Block,Khurai,LGD,425,District,3444,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,751,Block,Khurja,LGD,134,District,751,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +LGD,1413,Block,Khusrupur,LGD,212,District,1413,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,1802,Block,Khuza,LGD,248,District,1802,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,1741,Block,Kibithoo Circle,LGD,628,District,1741,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +LGD,349,Block,Kichha,LGD,56,District,349,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,5991,Block,Kikruma,LGD,248,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,6654,Block,Kilakarai,LGD,583,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,6673,Block,Killiyoor,LGD,575,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +LGD,7396,Block,Killod,LGD,405,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,6630,Block,Kilpennathur,LGD,593,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,5623,Block,Kiltan,LGD,553,District,5623,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,5800,Block,Kilvelur,LGD,579,District,5800,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +LGD,1605,Block,Kimin Sdo,LGD,237,District,1605,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,5956,Block,Kinathukadavu,LGD,569,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,4096,Block,Kinwat,LGD,485,District,4096,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,1837,Block,Kiphire Sadar,LGD,614,District,1837,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +LGD,767,Block,Kiraoli,LGD,118,District,767,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +LGD,7594,Block,Kirari,LGD,82,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false, +LGD,1195,Block,Kiratpur,LGD,195,District,1195,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,4899,Block,Kirlampudi,LGD,746,District,4899,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7506,Block,Kirmira,LGD,357,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +LGD,3673,Block,Kirnapur,LGD,392,District,3673,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,6361,Block,Kirtinagar,LGD,55,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,674,Block,Kishanganj,LGD,89,District,674,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +LGD,1167,Block,Kishanganj,LGD,205,District,1167,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,1127,Block,Kishanganj,LGD,203,District,1127,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +LGD,606,Block,Kishangarh,LGD,86,District,606,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,497,Block,Kishangarhbas,LGD,770,District,497,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,6026,Block,Kishangarh Renwal,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,2960,Block,Kishannagar,LGD,350,District,2960,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,1107,Block,Kishanpur,LGD,223,District,1107,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,6872,Block,Kishni,LGD,166,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +LGD,3016,Block,Kishorenagar,LGD,344,District,3016,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +LGD,68,Block,Kishtwar,LGD,620,District,68,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,2597,Block,Kisko,LGD,336,District,2597,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +LGD,1560,Block,Kitpi Circle,LGD,238,District,1560,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,7043,Block,Kittur,LGD,527,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,1838,Block,Kiusam,LGD,614,District,1838,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +LGD,4860,Block,K.Kotapadu,LGD,744,District,4860,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7496,Block,K. Nuagaon,LGD,359,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,1126,Block,Kochadhamin,LGD,203,District,1126,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +LGD,1457,Block,Kochas,LGD,215,District,1457,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,5660,Block,Kochi,LGD,555,District,5660,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +LGD,2782,Block,Kochinda,LGD,371,District,2782,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,4668,Block,Kodad,LGD,696,District,4668,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,5766,Block,Kodaikanal,LGD,572,District,5766,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,4600,Block,Kodair,LGD,694,District,4600,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,4702,Block,Kodakandla,LGD,689,District,4702,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,3082,Block,Kodala,LGD,354,District,3082,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,4549,Block,Kodangal,LGD,698,District,4549,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,5169,Block,Kodavalur,LGD,515,District,5169,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,2527,Block,Koderma,LGD,334,District,2527,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +LGD,4420,Block,Kodimial,LGD,681,District,4420,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,3837,Block,Kodinar,LGD,675,District,3837,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +LGD,3194,Block,Kodinga,LGD,366,District,3194,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,6637,Block,Kodumudi,LGD,573,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,5269,Block,Kodumur,LGD,511,District,5269,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5655,Block,Kodungallur,LGD,566,District,5655,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +LGD,5249,Block,Kodur,LGD,752,District,5249,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5039,Block,Koduru,LGD,510,District,5039,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,4443,Block,Koheda,LGD,692,District,4443,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,1849,Block,Kohima Sadar,LGD,245,District,1849,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +LGD,4475,Block,Kohir,LGD,691,District,4475,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,7321,Block,Kohkameta,LGD,637,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false, +LGD,2826,Block,Koida,LGD,373,District,2826,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,755,Block,Koil,LGD,119,District,755,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +LGD,5296,Block,Koilakuntla,LGD,755,District,5296,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4569,Block,Koilkonda,LGD,512,District,4569,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,1424,Block,Koilwar,LGD,193,District,1424,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,3169,Block,Kokasara,LGD,358,District,3169,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,57,Block,Kokernag,LGD,1,District,57,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,6403,Block,Kokrajhar,LGD,294,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +LGD,2779,Block,Kolabira,LGD,357,District,2779,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +LGD,2471,Block,Kolaghat,LGD,317,District,2471,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,7034,Block,Kolar,LGD,396,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +LGD,5591,Block,Kolar,LGD,542,District,5591,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +LGD,3411,Block,Kolaras,LGD,432,District,3411,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,7002,Block,Kolar Gold Field,LGD,542,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +LGD,7514,Block,Kolathur,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,476,Block,Kolayat,LGD,93,District,476,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,2724,Block,Kolebira,LGD,342,District,2724,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,7072,Block,Kolhar,LGD,530,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,5301,Block,Kolimigundla,LGD,755,District,5301,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5688,Block,Kollam,LGD,559,District,5688,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +LGD,4609,Block,Kollapur,LGD,694,District,4609,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,5579,Block,Kollegal,LGD,531,District,5579,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +LGD,6625,Block,Kolli Hills,LGD,580,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +LGD,5077,Block,Kollipara,LGD,506,District,5077,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,5088,Block,Kolluru,LGD,750,District,5088,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7512,Block,Kolnara,LGD,370,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,6130,Block,Koloriang Hq,LGD,233,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,7322,Block,Komakhan,LGD,385,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +LGD,4807,Block,Komarada,LGD,743,District,4807,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5134,Block,Komarolu,LGD,790,District,5134,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6586,Block,Kombo Circle,LGD,243,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false, +LGD,3155,Block,Komna,LGD,368,District,3155,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +LGD,6284,Block,Komuravelli,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,5119,Block,Konakanamitla,LGD,790,District,5119,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4431,Block,Konaraopet,LGD,683,District,4431,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,855,Block,Konch,LGD,151,District,855,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +LGD,1487,Block,Konch,LGD,196,District,1487,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,3357,Block,Kondagaon,LGD,643,District,3357,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +LGD,6307,Block,Kondamallepally,LGD,514,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4462,Block,Kondapak,LGD,692,District,4462,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,5137,Block,Kondapi,LGD,517,District,5137,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,4491,Block,Kondapur,LGD,691,District,4491,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,5156,Block,Kondapuram,LGD,515,District,5156,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5199,Block,Kondapuram,LGD,504,District,5199,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,5941,Block,Kondotty,LGD,562,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +LGD,4558,Block,Kondurg,LGD,518,District,4558,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,4761,Block,Konijerla,LGD,509,District,4761,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,5943,Block,Konni,LGD,564,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +LGD,3373,Block,Konta,LGD,642,District,3373,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +LGD,6627,Block,Koothanallur,LGD,590,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,4203,Block,Kopargaon,LGD,466,District,4203,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,5526,Block,Koppa,LGD,532,District,5526,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,5467,Block,Koppal,LGD,543,District,5467,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +LGD,6574,Block,Kora Circle,LGD,719,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false, +LGD,895,Block,Koraon,LGD,120,District,895,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +LGD,3207,Block,Koraput,LGD,363,District,3207,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,5536,Block,Koratagere,LGD,548,District,5536,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,3275,Block,Korba,LGD,383,District,3275,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,4055,Block,Korchi,LGD,475,District,4055,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,4261,Block,Koregaon,LGD,494,District,4261,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,1143,Block,Korha,LGD,201,District,1143,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,5122,Block,Korisapadu,LGD,517,District,5122,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,1727,Block,Koronu Circle,LGD,235,District,1727,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false, +LGD,4075,Block,Korpana,LGD,473,District,4075,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,4905,Block,Korukonda,LGD,505,District,4905,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,4416,Block,Korutla,LGD,681,District,4416,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,4551,Block,Kosgi,LGD,721,District,4551,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,5251,Block,Kosigi,LGD,511,District,5251,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,413,Block,Kosli,LGD,72,District,413,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +LGD,338,Block,Kosya Kutauli,LGD,51,District,338,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,3291,Block,Kota,LGD,375,District,3291,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,5191,Block,Kota,LGD,515,District,5191,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,4791,Block,Kotabommali,LGD,519,District,4791,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,7275,Block,Kotadol,LGD,760,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,3123,Block,Kotagarh,LGD,359,District,3123,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,4371,Block,Kotagiri,LGD,516,District,4371,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,5757,Block,Kotagiri,LGD,587,District,5757,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +LGD,4889,Block,Kotananduru,LGD,746,District,4889,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4351,Block,Kotapally,LGD,684,District,4351,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,3467,Block,Kotar,LGD,426,District,3467,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +LGD,4874,Block,Kotauratla,LGD,744,District,4874,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3805,Block,Kotda Sangani,LGD,457,District,3805,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,313,Block,Kotdwara,LGD,52,District,313,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,6312,Block,Kotepally,LGD,698,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,6851,Block,Koteranka,LGD,12,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,6956,Block,Kotgarh,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,5346,Block,Kothacheruvu,LGD,754,District,5346,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4710,Block,Kothaguda,LGD,688,District,4710,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,4738,Block,Kothagudem,LGD,690,District,4738,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,4593,Block,Kothakota,LGD,693,District,4593,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,5663,Block,Kothamangalam,LGD,555,District,5663,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +LGD,5263,Block,Kothapalle,LGD,755,District,5263,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6230,Block,Kothapally,LGD,508,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,7537,Block,Kothapally (15),LGD,721,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,7531,Block,Kothapallygori,LGD,687,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,5140,Block,Kotha Patnam,LGD,517,District,5140,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,4927,Block,Kothapeta,LGD,747,District,4927,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4834,Block,Kothavalasa,LGD,521,District,4834,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,3461,Block,Kothi,LGD,426,District,3461,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +LGD,7007,Block,Kothi Mahal,LGD,435,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,7556,Block,Kothmba,LGD,669,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +LGD,4560,Block,Kothur,LGD,518,District,4560,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,4772,Block,Kothuru,LGD,519,District,4772,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,5984,Block,Kotkapura,LGD,29,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +LGD,495,Block,Kotkasim,LGD,770,District,495,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,189,Block,Kotkhai,LGD,23,District,189,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,6028,Block,Kotkhawda,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,6896,Block,Kotla,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,128,Block,Kotli,LGD,22,District,128,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,3693,Block,Kotma,LGD,390,District,3693,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +LGD,3199,Block,Kotpad,LGD,363,District,3199,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,538,Block,Kotputli,LGD,782,District,538,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,687,Block,Kotra,LGD,117,District,687,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,635,Block,Kotri,LGD,92,District,635,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,5687,Block,Kottarakkara,LGD,559,District,5687,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +LGD,5670,Block,Kottayam,LGD,560,District,5670,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +LGD,7108,Block,Kotturu,LGD,738,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +LGD,2367,Block,Kotulpur,LGD,305,District,2367,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,1049,Block,Kotwa,LGD,213,District,1049,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,7522,Block,Koukuntla,LGD,512,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,4316,Block,Koutala,LGD,699,District,4316,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,5862,Block,Kovilpatti,LGD,594,District,5862,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,5178,Block,Kovur,LGD,515,District,5178,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,4958,Block,Kovvur,LGD,505,District,4958,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,4480,Block,Kowdipally,LGD,513,District,4480,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,5252,Block,Kowthalam,LGD,511,District,5252,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,2117,Block,Koya,LGD,291,District,2117,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,5639,Block,Koyilandi,LGD,561,District,5639,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +LGD,7345,Block,Koylibeda,LGD,381,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,1648,Block,Koyu Eac,LGD,719,District,1648,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false, +LGD,4952,Block,Koyyalagudem,LGD,748,District,4952,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4851,Block,Koyyuru,LGD,745,District,4851,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5682,Block,Kozhenchery,LGD,564,District,5682,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +LGD,5640,Block,Kozhikode,LGD,561,District,5640,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +LGD,6783,Block,Kralpora,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,7119,Block,Kranti,LGD,314,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,36,Block,Kreeri,LGD,3,District,36,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,163,Block,Krishangarh,LGD,25,District,163,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,6264,Block,Krishna,LGD,721,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,2309,Block,Krishnaganj,LGD,320,District,2309,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,2308,Block,Krishnagar - I,LGD,320,District,2308,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,2306,Block,Krishnagar - II,LGD,320,District,2306,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,5891,Block,Krishnagiri,LGD,577,District,5891,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +LGD,5277,Block,Krishnagiri,LGD,511,District,5277,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5571,Block,Krishnarajanagara,LGD,545,District,5571,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,5546,Block,Krishnarajpet,LGD,544,District,5546,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +LGD,5770,Block,Krishnarayapuram,LGD,576,District,5770,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +LGD,1133,Block,Krityanand Nagar,LGD,214,District,1133,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,1721,Block,Kronli (Arzoo Circle),LGD,230,District,1721,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false, +LGD,5051,Block,Krosuru,LGD,751,District,5051,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3069,Block,Krushna Prasad,LGD,369,District,3069,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,5018,Block,Kruthivennu,LGD,510,District,5018,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,3372,Block,Kuakonda,LGD,376,District,3372,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +LGD,4338,Block,Kubeer,LGD,680,District,4338,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,1763,Block,Kubolong,LGD,246,District,1763,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,2746,Block,Kuchai,LGD,341,District,2746,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,1219,Block,Kuchaikote,LGD,197,District,1219,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,6065,Block,Kuchaman City,LGD,768,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5323,Block,Kudair,LGD,502,District,5323,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,4280,Block,Kudal,LGD,495,District,4280,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +LGD,5804,Block,Kudavasal,LGD,590,District,5804,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,7219,Block,Kudi Bhagtasni,LGD,107,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,5502,Block,Kudligi,LGD,738,District,5502,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +LGD,1448,Block,Kudra,LGD,200,District,1448,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,7470,Block,Kudumuluguma,LGD,364,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +LGD,4035,Block,Kuhi,LGD,484,District,4035,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,1794,Block,Kuhoboto,LGD,764,District,1794,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,2936,Block,Kujang,LGD,355,District,2936,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +LGD,7093,Block,Kukanoor,LGD,543,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +LGD,6169,Block,Kukarmunda,LGD,641,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +LGD,6327,Block,Kukatpally,LGD,700,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,7351,Block,Kukdur,LGD,382,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +LGD,7314,Block,Kukrel,LGD,377,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +LGD,2750,Block,Kukru,LGD,341,District,2750,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,3536,Block,Kukshi,LGD,403,District,3536,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,7484,Block,Kukudakhandi,LGD,354,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,4735,Block,Kukunoor,LGD,748,District,4735,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7521,Block,Kukunoorpally,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,6439,Block,Kulan St,LGD,61,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +LGD,5819,Block,Kulathur,LGD,582,District,5819,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,4468,Block,Kulcharam,LGD,513,District,4468,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,59,Block,Kulgam,LGD,622,District,59,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +LGD,7458,Block,Kuliana,LGD,365,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,5771,Block,Kulithalai,LGD,576,District,5771,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +LGD,4539,Block,Kulkacharla,LGD,698,District,4539,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,118,Block,Kullu,LGD,20,District,118,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,868,Block,Kulpahar,LGD,165,District,868,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false, +LGD,2428,Block,Kulpi,LGD,304,District,2428,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2433,Block,Kultali,LGD,304,District,2433,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,6634,Block,Kumarapalayam,LGD,580,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +LGD,5382,Block,Kumara Venkata Bhupala Puram,LGD,752,District,5382,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7350,Block,Kumarda,LGD,388,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +LGD,2744,Block,Kumardungi,LGD,343,District,2744,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,2202,Block,Kumarganj,LGD,310,District,2202,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +LGD,6694,Block,Kumarghat,LGD,655,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +LGD,2172,Block,Kumargram,LGD,664,District,2172,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +LGD,1163,Block,Kumarkhand,LGD,205,District,1163,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,179,Block,Kumarsain,LGD,23,District,179,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,5811,Block,Kumbakonam,LGD,586,District,5811,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,642,Block,Kumbhalgarh,LGD,112,District,642,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,3681,Block,Kumbhraj,LGD,406,District,3681,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +LGD,510,Block,Kumher,LGD,767,District,510,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5485,Block,Kumta,LGD,550,District,5485,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,4731,Block,Kunavaram,LGD,791,District,4731,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7323,Block,Kunda,LGD,382,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +LGD,881,Block,Kunda,LGD,174,District,881,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +LGD,2516,Block,Kunda,LGD,323,District,2516,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,5759,Block,Kundah,LGD,587,District,5759,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +LGD,7382,Block,Kundal,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,3633,Block,Kundam,LGD,411,District,3633,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,5522,Block,Kundapura,LGD,549,District,5522,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +LGD,5477,Block,Kundgol,LGD,536,District,5477,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +LGD,2681,Block,Kundhit,LGD,333,District,2681,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false, +LGD,7057,Block,Kundrathur,LGD,574,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +LGD,3210,Block,Kundura,LGD,363,District,3210,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,5333,Block,Kundurpi,LGD,502,District,5333,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5541,Block,Kunigal,LGD,548,District,5541,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,7056,Block,Kunihar,LGD,25,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,3839,Block,Kunkavav Vadia,LGD,439,District,3839,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,3259,Block,Kunkuri,LGD,380,District,3259,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,5976,Block,Kunnam,LGD,581,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +LGD,6598,Block,Kunnamkulam,LGD,566,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +LGD,5657,Block,Kunnathunad,LGD,555,District,5657,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +LGD,5685,Block,Kunnathur,LGD,559,District,5685,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +LGD,4337,Block,Kuntala,LGD,680,District,4337,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,6928,Block,Kunwariya,LGD,112,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,6830,Block,Kunzer,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,5427,Block,Kuppam,LGD,503,District,5427,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,6962,Block,Kupvi,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,1,Block,Kupwara,LGD,8,District,1,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,5389,Block,Kurabalakota,LGD,753,District,5389,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7156,Block,Kurabar,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,3666,Block,Kurai,LGD,428,District,3666,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,4721,Block,Kuravi,LGD,688,District,4721,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,6874,Block,Kurawali,LGD,166,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +LGD,2720,Block,Kurdeg,LGD,342,District,2720,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,1213,Block,Kurhani,LGD,208,District,1213,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,5103,Block,Kurichedu,LGD,517,District,5103,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,5790,Block,Kurinjipadi,LGD,570,District,5790,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,4054,Block,Kurkheda,LGD,475,District,4054,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,7180,Block,Kurla,LGD,483,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +LGD,5259,Block,Kurnool Rural,LGD,511,District,5259,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,7183,Block,Kurnool Urban,LGD,511,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,1117,Block,Kursakatta,LGD,188,District,1117,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,1155,Block,Kursela,LGD,201,District,1155,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,2161,Block,Kurseong,LGD,309,District,2161,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,1546,Block,Kurtha,LGD,611,District,1546,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +LGD,2599,Block,Kuru,LGD,336,District,2599,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +LGD,3344,Block,Kurud,LGD,377,District,3344,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +LGD,7109,Block,Kurugodu,LGD,528,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +LGD,4809,Block,Kurupam,LGD,743,District,4809,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3572,Block,Kurwai,LGD,437,District,3572,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,654,Block,Kushalgarh,LGD,88,District,654,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,7124,Block,Kushalnagar,LGD,541,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +LGD,1197,Block,Kusheshwar Asthan,LGD,195,District,1197,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,1198,Block,Kusheshwar Asthan Purbi,LGD,195,District,1198,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,2200,Block,Kushmundi,LGD,310,District,2200,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +LGD,5465,Block,Kushtagi,LGD,543,District,5465,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +LGD,3702,Block,Kusmi,LGD,433,District,3702,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +LGD,3240,Block,Kusmi(Samri),LGD,649,District,3240,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,4755,Block,Kusumanchi,LGD,509,District,4755,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,7478,Block,Kusumi,LGD,365,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,5797,Block,Kuthalam,LGD,735,District,5797,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +LGD,3824,Block,Kutiyana,LGD,456,District,3824,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +LGD,2813,Block,Kutra,LGD,373,District,2813,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,7260,Block,Kutru,LGD,636,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +LGD,5675,Block,Kuttanad,LGD,554,District,5675,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +LGD,1484,Block,Kutumba,LGD,189,District,1484,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,7052,Block,K V Kuppam,LGD,595,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +LGD,2262,Block,Labpur,LGD,307,District,2262,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,503,Block,Lachhmangarh,LGD,87,District,503,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,552,Block,Lachhmangarh,LGD,114,District,552,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,6098,Block,Lada Circle,LGD,787,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,1084,Block,Ladania,LGD,206,District,1084,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,125,Block,Lad Bharol,LGD,22,District,125,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,557,Block,Ladnu,LGD,768,District,557,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,667,Block,Ladpura,LGD,109,District,667,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +LGD,6410,Block,Ladwa,LGD,68,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +LGD,6902,Block,Lagru,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,3398,Block,Lahar,LGD,395,District,3398,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,2028,Block,Laharighat,LGD,296,District,2028,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +LGD,805,Block,Laharpur,LGD,183,District,805,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +LGD,1253,Block,Lahladpur,LGD,218,District,1253,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,115,Block,Lahul,LGD,21,District,115,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +LGD,2827,Block,Lahunipara,LGD,373,District,2827,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,2778,Block,Laikera,LGD,357,District,2778,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +LGD,3264,Block,Lailunga,LGD,386,District,3264,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,1694,Block,Laju Sdo,LGD,239,District,1694,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +LGD,4043,Block,Lakhandur,LGD,471,District,4043,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +LGD,6168,Block,Lakhani,LGD,789,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,4041,Block,Lakhani,LGD,471,District,4041,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +LGD,6468,Block,Lakhan Majra St,LGD,73,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +LGD,2771,Block,Lakhanpur,LGD,357,District,2771,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +LGD,3248,Block,Lakhanpur,LGD,389,District,3248,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +LGD,801,Block,Lakhimpur,LGD,159,District,801,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +LGD,2013,Block,Lakhipur,LGD,287,District,2013,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +LGD,2100,Block,Lakhipur,LGD,282,District,2100,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +LGD,1368,Block,Lakhisarai,LGD,204,District,1368,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +LGD,3659,Block,Lakhnadon,LGD,428,District,3659,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,1099,Block,Lakhnaur,LGD,206,District,1099,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,3722,Block,Lakhpat,LGD,449,District,3722,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,3791,Block,Lakhtar,LGD,460,District,3791,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,4833,Block,Lakkavarapukota,LGD,521,District,4833,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,5240,Block,Lakkireddipalli,LGD,753,District,5240,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1233,Block,Lakri Nabiganj,LGD,222,District,1233,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,355,Block,Laksar,LGD,50,District,355,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +LGD,1529,Block,Lakshmipur,LGD,198,District,1529,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,3203,Block,Lakshmipur,LGD,363,District,3203,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,2108,Block,Lala,LGD,289,District,2108,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +LGD,7301,Block,Lal Bahadur Nagar,LGD,388,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +LGD,3671,Block,Lalbarra,LGD,392,District,3671,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,6351,Block,Laldhang,LGD,50,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +LGD,880,Block,Lalganj,LGD,174,District,880,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +LGD,969,Block,Lalganj,LGD,123,District,969,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +LGD,1001,Block,Lalganj,LGD,170,District,1001,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +LGD,826,Block,Lalganj,LGD,175,District,826,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +LGD,1270,Block,Lalganj,LGD,224,District,1270,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,2229,Block,Lalgola,LGD,319,District,2229,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,5777,Block,Lalgudi,LGD,591,District,5777,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,862,Block,Lalitpur,LGD,161,District,862,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +LGD,345,Block,Lalkuan,LGD,51,District,345,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,6792,Block,Lalpora,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,3818,Block,Lalpur,LGD,447,District,3818,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +LGD,7258,Block,Lalpur Thana,LGD,647,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false, +LGD,537,Block,Lalsot,LGD,97,District,537,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,917,Block,Lambhua,LGD,185,District,917,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +LGD,7285,Block,Lambloo,LGD,17,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,6368,Block,Lamgada,LGD,45,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,1881,Block,Lamphelpat,LGD,256,District,1881,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +LGD,1879,Block,Lamsang,LGD,256,District,1879,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +LGD,7399,Block,Lamta,LGD,392,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,6789,Block,Langate,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,4273,Block,Lanja,LGD,492,District,4273,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,3676,Block,Lanji,LGD,392,District,3676,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,3162,Block,Lanjigarh,LGD,358,District,3162,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,2040,Block,Lanka,LGD,709,District,2040,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +LGD,310,Block,Lansdowne,LGD,52,District,310,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,2697,Block,Lapung,LGD,339,District,2697,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,45,Block,Lar,LGD,626,District,45,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +LGD,6820,Block,Larnoo,LGD,1,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,6774,Block,Laroka,LGD,12,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,691,Block,Lasadiya,LGD,777,District,691,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,1997,Block,Laskein,LGD,275,District,1997,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false, +LGD,2639,Block,Latehar,LGD,335,District,2639,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,3570,Block,Lateri,LGD,437,District,3570,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,1733,Block,Lathao Circle,LGD,678,District,1733,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false, +LGD,3841,Block,Lathi,LGD,439,District,3841,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,2823,Block,Lathikata,LGD,373,District,2823,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,7236,Block,Latori,LGD,648,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,6737,Block,Latti,LGD,14,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +LGD,4226,Block,Latur,LGD,481,District,4226,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,1085,Block,Laukaha,LGD,206,District,1085,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,1086,Block,Laukahi,LGD,206,District,1086,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,1018,Block,Lauriya,LGD,211,District,1018,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,2157,Block,Lava,LGD,702,District,2157,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +LGD,7246,Block,Lavan,LGD,644,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,7050,Block,Lavaold,LGD,702,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +LGD,4804,Block,Laveru,LGD,519,District,4804,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,3425,Block,Lavkush Nagar,LGD,398,District,3425,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,2517,Block,Lawalaung,LGD,323,District,2517,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,6909,Block,Lawan,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,1917,Block,Lawngtlai,LGD,264,District,1917,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false, +LGD,1689,Block,Lawnu Circle,LGD,666,District,1689,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false, +LGD,4345,Block,Laxmanchanda,LGD,680,District,4345,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,7083,Block,Laxmeshwar,LGD,537,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +LGD,6266,Block,Laxmidevipalli,LGD,690,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,4787,Block,Laxminarasupeta,LGD,519,District,4787,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,10,Block,Leh,LGD,9,District,10,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +LGD,273,Block,Lehra,LGD,43,District,273,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +LGD,1735,Block,Lekang Mahadevpur Circle,LGD,678,District,1735,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false, +LGD,5365,Block,Lepakshi,LGD,754,District,5365,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2805,Block,Lephripara,LGD,373,District,2805,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,1603,Block,Leporiang Circle,LGD,237,District,1603,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,6555,Block,Lhou Circle,LGD,238,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,6497,Block,Lhungtin,LGD,712,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,6536,Block,Lidhora,LGD,434,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,1640,Block,Likabali Sdo,LGD,719,District,1640,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false, +LGD,3842,Block,Lilia,LGD,439,District,3842,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,1876,Block,Lilong,LGD,259,District,1876,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false, +LGD,3797,Block,Limbdi,LGD,460,District,3797,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,1608,Block,Limeking Circle,LGD,241,District,1608,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,3892,Block,Limkheda,LGD,445,District,3892,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,4598,Block,Lingal,LGD,694,District,4598,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,5218,Block,Lingala,LGD,504,District,5218,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4700,Block,Lingalaghanpur,LGD,689,District,4700,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,4388,Block,Lingampet,LGD,685,District,4388,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,4945,Block,Lingapalem,LGD,748,District,4945,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6311,Block,Lingapur,LGD,699,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,5150,Block,Lingasamudram,LGD,517,District,5150,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,5459,Block,Lingasugur,LGD,546,District,5459,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +LGD,1632,Block,Liromoba Eac,LGD,243,District,1632,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false, +LGD,2573,Block,Litipara,LGD,337,District,2573,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +LGD,5924,Block,Little Andaman,LGD,602,District,5924,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +LGD,6482,Block,LM,LGD,260,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false, +LGD,3804,Block,Lodhika,LGD,457,District,3804,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,4107,Block,Loha,LGD,485,District,4107,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,336,Block,Lohaghat,LGD,48,District,336,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +LGD,6729,Block,Lohai Malhar,LGD,7,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,3361,Block,Lohandiguda,LGD,374,District,3361,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,4242,Block,Lohara,LGD,488,District,4242,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +LGD,2601,Block,Lohardaga,LGD,336,District,2601,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +LGD,7450,Block,Loharghat,LGD,25,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,401,Block,Loharu,LGD,59,District,401,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +LGD,6391,Block,Lohawat,LGD,772,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3141,Block,Loisinga,LGD,345,District,3141,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,4342,Block,Lokeswaram,LGD,680,District,4342,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,6791,Block,Lolab (Sogam),LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,3987,Block,Lonar,LGD,472,District,3987,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,1758,Block,Longchem,LGD,246,District,1758,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,6074,Block,Longding Hq,LGD,666,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false, +LGD,1816,Block,Longkhim,LGD,249,District,1816,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false, +LGD,1833,Block,Longleng,LGD,615,District,1833,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false, +LGD,6491,Block,Longmai,LGD,714,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false, +LGD,1840,Block,Longmatra,LGD,614,District,1840,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +LGD,6597,Block,Longo Circle,LGD,239,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +LGD,1751,Block,Longshen,LGD,247,District,1751,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,6692,Block,Longtharai Valley,LGD,269,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +LGD,6089,Block,Loni,LGD,145,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +LGD,7341,Block,Lopoke,LGD,27,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +LGD,3290,Block,Lormi,LGD,647,District,3290,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false, +LGD,1786,Block,Lotsu,LGD,250,District,1786,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,227,Block,Ludhiana (East),LGD,36,District,227,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +LGD,228,Block,Ludhiana (West),LGD,36,District,228,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +LGD,1557,Block,Lumla Adc,LGD,238,District,1557,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,7337,Block,Lumshnong,LGD,657,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false, +LGD,3882,Block,Lunawada,LGD,669,District,3882,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +LGD,3251,Block,Lundra,LGD,389,District,3251,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +LGD,1914,Block,Lunglei,LGD,265,District,1914,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false, +LGD,1913,Block,Lungsen,LGD,265,District,1913,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false, +LGD,572,Block,Luni,LGD,107,District,572,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,475,Block,Lunkaransar,LGD,93,District,475,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,4353,Block,Luxettipet,LGD,684,District,4353,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,6578,Block,Lyngok Longtoi Circle,LGD,229,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,6767,Block,Machail,LGD,620,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,4380,Block,Machareddy,LGD,685,District,4380,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,5048,Block,Machavaram,LGD,751,District,5048,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5040,Block,Macherla,LGD,751,District,5040,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3212,Block,Machh Kund,LGD,363,District,3212,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,983,Block,Machhlishahr,LGD,152,District,983,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +LGD,6339,Block,Machhor,LGD,45,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,1892,Block,Machi,LGD,716,District,1892,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false, +LGD,6785,Block,Machil,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,7429,Block,Machilipatnam North,LGD,510,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,5034,Block,Machilipatnam South,LGD,510,District,5034,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,6987,Block,Mada,LGD,638,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +LGD,5350,Block,Madakasira,LGD,754,District,5350,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5392,Block,Madanapalle,LGD,753,District,5392,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6289,Block,Madanapur,LGD,693,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,6362,Block,Madannegi,LGD,55,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,1486,Block,Madanpur,LGD,189,District,1486,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,3160,Block,Madanpur Rampur,LGD,358,District,3160,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,2170,Block,Madarihat,LGD,664,District,2170,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +LGD,5907,Block,Madathukulam,LGD,634,District,5907,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,5292,Block,Maddikera (East),LGD,511,District,5292,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5127,Block,Maddipadu,LGD,517,District,5127,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,6300,Block,Maddirala,LGD,696,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,5551,Block,Maddur,LGD,544,District,5551,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +LGD,4673,Block,Maddur,LGD,692,District,4673,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,4554,Block,Maddur,LGD,721,District,4554,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,4564,Block,Madgul,LGD,518,District,4564,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,4245,Block,Madha,LGD,496,District,4245,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,1100,Block,Madhepur,LGD,206,District,1100,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,1161,Block,Madhepura,LGD,205,District,1161,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,4766,Block,Madhira,LGD,509,District,4766,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,851,Block,Madhogarh,LGD,151,District,851,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +LGD,7139,Block,Madhorajpura,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,972,Block,Madhuban,LGD,168,District,972,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +LGD,1055,Block,Madhuban,LGD,213,District,1055,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1093,Block,Madhubani,LGD,206,District,1093,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,1021,Block,Madhubani,LGD,211,District,1021,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,5535,Block,Madhugiri,LGD,548,District,5535,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,2550,Block,Madhupur,LGD,324,District,2550,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,1080,Block,Madhwapur,LGD,206,District,1080,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,5566,Block,Madikeri,LGD,541,District,5566,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +LGD,4372,Block,Madnoor,LGD,685,District,4372,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,4857,Block,Madugula,LGD,744,District,4857,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6305,Block,Madugulapally,LGD,514,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,5986,Block,Madukkari,LGD,569,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,5960,Block,Madurai East,LGD,578,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,5836,Block,Madurai North,LGD,578,District,5836,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,5841,Block,Madurai South,LGD,578,District,5841,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,5961,Block,Madurai West,LGD,578,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,5710,Block,Maduranthakam,LGD,730,District,5710,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +LGD,5981,Block,Maduravoyal,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,7410,Block,Madwas,LGD,433,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +LGD,5605,Block,Magadi,LGD,631,District,5605,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +LGD,6814,Block,Magam,LGD,2,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,4590,Block,Maganoor,LGD,721,District,4590,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,3345,Block,Magarlod,LGD,377,District,3345,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +LGD,2424,Block,Magrahat - I,LGD,304,District,2424,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2423,Block,Magrahat - II,LGD,304,District,2423,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,4255,Block,Mahabaleshwar,LGD,494,District,4255,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,4718,Block,Mahabubabad,LGD,688,District,4718,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,6258,Block,Mahabubnagar Rural,LGD,512,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,4568,Block,Mahabubnagar Urban,LGD,512,District,4568,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,4185,Block,Mahad,LGD,491,District,4185,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,4403,Block,Mahadevpur,LGD,687,District,4403,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,2558,Block,Mahagama,LGD,330,District,2558,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,4087,Block,Mahagaon,LGD,500,District,4087,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,2933,Block,Mahakalapada,LGD,360,District,2933,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,404,Block,Maham,LGD,73,District,404,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +LGD,5285,Block,Mahanandi,LGD,755,District,5285,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2956,Block,Mahanga,LGD,350,District,2956,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,6725,Block,Mahanpur,LGD,7,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,1236,Block,Maharajganj,LGD,222,District,1236,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,823,Block,Maharajganj,LGD,175,District,823,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +LGD,947,Block,Maharajganj,LGD,164,District,947,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +LGD,3428,Block,Maharajpur,LGD,398,District,3428,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,6837,Block,Maharanipeta,LGD,520,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,3341,Block,Mahasamund,LGD,385,District,3341,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +LGD,920,Block,Mahasi,LGD,125,District,920,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +LGD,763,Block,Mahavan,LGD,167,District,763,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +LGD,5913,Block,Mahe,LGD,600,District,5913,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +LGD,411,Block,Mahendragarh,LGD,69,District,411,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +LGD,3757,Block,Mahesana,LGD,451,District,3757,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,7441,Block,Mahesana City,LGD,451,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,2577,Block,Maheshpur,LGD,337,District,2577,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +LGD,3546,Block,Maheshwar,LGD,414,District,3546,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,4544,Block,Maheshwaram,LGD,518,District,4544,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,3510,Block,Mahidpur,LGD,435,District,3510,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,2475,Block,Mahisadal,LGD,317,District,2475,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,1173,Block,Mahishi,LGD,216,District,1173,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,2075,Block,Mahmora,LGD,708,District,2075,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +LGD,807,Block,Mahmudabad,LGD,183,District,807,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +LGD,1283,Block,Mahnar,LGD,224,District,1283,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,870,Block,Mahoba,LGD,165,District,870,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false, +LGD,6880,Block,Maholi,LGD,183,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +LGD,6850,Block,Mahore,LGD,627,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,863,Block,Mahroni,LGD,161,District,863,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +LGD,1275,Block,Mahua,LGD,224,District,1275,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,2637,Block,Mahuadanr,LGD,335,District,2637,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,3877,Block,Mahudha,LGD,450,District,3877,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,4095,Block,Mahur,LGD,485,District,4095,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,3941,Block,Mahuva,LGD,459,District,3941,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,3860,Block,Mahuva,LGD,443,District,3860,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,534,Block,Mahwa,LGD,97,District,534,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,3470,Block,Maihar,LGD,784,District,3470,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,1016,Block,Mainatanr,LGD,211,District,1016,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,3254,Block,Mainpat,LGD,389,District,3254,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +LGD,3337,Block,Mainpur,LGD,645,District,3337,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +LGD,775,Block,Mainpuri,LGD,166,District,775,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +LGD,6702,Block,Maira Mandrian,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,1982,Block,Mairang,LGD,740,District,1982,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false, +LGD,1240,Block,Mairwa,LGD,222,District,1240,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,6871,Block,Maitha,LGD,156,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +LGD,4219,Block,Majalgaon,LGD,470,District,4219,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,75,Block,Majalta,LGD,14,District,75,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +LGD,3701,Block,Majhauli,LGD,433,District,3701,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +LGD,1027,Block,Majhaulia,LGD,211,District,1027,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,6919,Block,Majheen,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,2745,Block,Majhgaon,LGD,343,District,2745,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,3462,Block,Majhgawan,LGD,426,District,3462,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +LGD,2499,Block,Majhiaon,LGD,328,District,2499,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,3628,Block,Majholi,LGD,411,District,3628,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,6854,Block,Majitha,LGD,27,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +LGD,1065,Block,Majorganj,LGD,221,District,1065,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,7121,Block,Majra,LGD,24,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,2076,Block,Majuli,LGD,706,District,2076,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false, +LGD,3937,Block,Majura,LGD,459,District,3937,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,4875,Block,Makavarapalem,LGD,744,District,4875,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3358,Block,Makdi,LGD,643,District,3358,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +LGD,6995,Block,Makdon,LGD,435,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,1262,Block,Maker,LGD,218,District,1262,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,3616,Block,Makhan Nagar,LGD,409,District,3616,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,1540,Block,Makhdumpur,LGD,199,District,1540,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +LGD,4813,Block,Makkuva,LGD,743,District,4813,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4367,Block,Makloor,LGD,516,District,4367,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,565,Block,Makrana,LGD,768,District,565,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,6969,Block,Makridi,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,3680,Block,Maksoodangarh,LGD,406,District,3680,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +LGD,4589,Block,Makthal,LGD,721,District,4589,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,2167,Block,Mal,LGD,314,District,2167,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,6382,Block,Malakhera,LGD,87,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,528,Block,Malarna Doongar,LGD,113,District,528,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,5552,Block,Malavalli,LGD,544,District,5552,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +LGD,2217,Block,Maldah (Old),LGD,316,District,2217,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,4604,Block,Maldakal,LGD,695,District,4604,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,3995,Block,Malegaon,LGD,499,District,3995,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +LGD,4146,Block,Malegaon,LGD,487,District,4146,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,269,Block,Malerkotla,LGD,737,District,269,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +LGD,7014,Block,Malharganj,LGD,410,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,3493,Block,Malhargarh,LGD,416,District,3493,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,4405,Block,Malharrao,LGD,687,District,4405,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,3833,Block,Malia Hatina,LGD,448,District,3833,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,819,Block,Malihabad,LGD,162,District,819,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +LGD,4938,Block,Malikipuram,LGD,747,District,4938,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3798,Block,Maliya,LGD,673,District,3798,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +LGD,4521,Block,Malkajgiri,LGD,700,District,4521,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,3220,Block,Malkangiri,LGD,364,District,3220,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +LGD,3979,Block,Malkapur,LGD,472,District,3979,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,3285,Block,Malkharoda,LGD,762,District,3285,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,7536,Block,Mallampally,LGD,720,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,5680,Block,Mallappally,LGD,564,District,5680,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +LGD,4394,Block,Mallapur,LGD,681,District,4394,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,4413,Block,Mallial,LGD,681,District,4413,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,239,Block,Malout,LGD,39,District,239,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +LGD,3771,Block,Malpur,LGD,672,District,3771,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +LGD,615,Block,Malpura,LGD,116,District,615,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,4250,Block,Malshiras,LGD,496,District,4250,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,6370,Block,Malsisar,LGD,106,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,3445,Block,Malthon,LGD,425,District,3445,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,5592,Block,Malur,LGD,542,District,5592,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +LGD,7589,Block,Malviya Nagar,LGD,83,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +LGD,4278,Block,Malwan,LGD,495,District,4278,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +LGD,4346,Block,Mamada,LGD,680,District,4346,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,7165,Block,Mambalam,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,4936,Block,Mamidikuduru,LGD,747,District,4936,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6967,Block,Mamlig,LGD,25,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,4259,Block,Man,LGD,494,District,4259,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,5776,Block,Manachanallur,LGD,591,District,5776,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,4427,Block,Manakondur,LGD,508,District,4427,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,117,Block,Manali,LGD,20,District,117,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,5833,Block,Manamadurai,LGD,585,District,5833,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,5827,Block,Manamelkudi,LGD,582,District,5827,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,5635,Block,Mananthavady,LGD,567,District,5635,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +LGD,5781,Block,Manapparai,LGD,591,District,5781,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,3491,Block,Manasa,LGD,419,District,3491,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +LGD,2628,Block,Manatu,LGD,338,District,2628,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,3825,Block,Manavadar,LGD,448,District,3825,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,3538,Block,Manawar,LGD,403,District,3538,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,2395,Block,Manbazar - I,LGD,321,District,2395,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,2396,Block,Manbazar - II,LGD,321,District,2396,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,6348,Block,Manch,LGD,48,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +LGD,4547,Block,Manchal,LGD,518,District,4547,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,1737,Block,Manchal Circle,LGD,628,District,1737,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +LGD,7404,Block,Manchenahalli,LGD,630,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +LGD,4354,Block,Mancherial,LGD,684,District,4354,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,6713,Block,Mandal,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,631,Block,Mandal,LGD,92,District,631,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,3777,Block,Mandal,LGD,438,District,3777,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,637,Block,Mandalgarh,LGD,92,District,637,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,4352,Block,Mandamarri,LGD,684,District,4352,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,4266,Block,Mandangad,LGD,492,District,4266,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,6970,Block,Mandap,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,4920,Block,Mandapeta,LGD,505,District,4920,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,2693,Block,Mandar,LGD,339,District,2693,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,4776,Block,Mandasa,LGD,519,District,4776,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,5015,Block,Mandavalli,LGD,748,District,5015,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7145,Block,Mandawa,LGD,106,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,6914,Block,Mandawar,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,7383,Block,Mandhan,LGD,782,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,17,Block,Mandi,LGD,10,District,17,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +LGD,133,Block,Mandi,LGD,22,District,133,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,2429,Block,Mandirbazar,LGD,304,District,2429,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,7308,Block,Mandir Hasoud,LGD,387,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +LGD,3643,Block,Mandla,LGD,415,District,3643,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +LGD,524,Block,Mandrayal,LGD,108,District,524,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,2565,Block,Mandro,LGD,340,District,2565,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,3496,Block,Mandsaur,LGD,416,District,3496,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,7005,Block,Mandsaur Nagar,LGD,416,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,2661,Block,Mandu,LGD,607,District,2661,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +LGD,3729,Block,Mandvi,LGD,449,District,3729,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,3935,Block,Mandvi,LGD,459,District,3935,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,5550,Block,Mandya,LGD,544,District,5550,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +LGD,3234,Block,Manendragarh,LGD,760,District,3234,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,1398,Block,Maner,LGD,212,District,1398,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,419,Block,Manesar,LGD,62,District,419,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,7465,Block,Maneswar,LGD,371,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,6466,Block,Manethi St,LGD,72,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +LGD,5055,Block,Mangalagiri,LGD,506,District,5055,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,7178,Block,Mangalbarey,LGD,742,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +LGD,2148,Block,Mangaldoi (Pt),LGD,283,District,2148,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +LGD,5561,Block,Mangaluru,LGD,534,District,5561,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,4252,Block,Mangalvedhe,LGD,496,District,4252,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,1548,Block,Mangan,LGD,226,District,1548,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false, +LGD,4181,Block,Mangaon,LGD,491,District,4181,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,4686,Block,Mangapet,LGD,720,District,4686,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,3474,Block,Mangawan,LGD,424,District,3474,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,1828,Block,Mangko,LGD,765,District,1828,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1764,Block,Mangkolemba,LGD,246,District,1764,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,2278,Block,Mangolkote,LGD,306,District,2278,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,3832,Block,Mangrol,LGD,448,District,3832,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,670,Block,Mangrol,LGD,89,District,670,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +LGD,3933,Block,Mangrol,LGD,459,District,3933,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,3996,Block,Mangrulpir,LGD,499,District,3996,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +LGD,1185,Block,Manigachhi,LGD,195,District,1185,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,1156,Block,Manihari,LGD,201,District,1156,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,2635,Block,Manika,LGD,335,District,2635,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +LGD,2219,Block,Manikchak,LGD,316,District,2219,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,7199,Block,Manikpur,LGD,281,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +LGD,5930,Block,Manikpur,LGD,136,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false, +LGD,6515,Block,Maninagar,LGD,438,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,6933,Block,Maniya,LGD,98,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +LGD,6772,Block,Manjakote,LGD,12,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,5932,Block,Manjeswaram,LGD,558,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +LGD,1225,Block,Manjha,LGD,197,District,1225,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,886,Block,Manjhanpur,LGD,158,District,886,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +LGD,2741,Block,Manjhari,LGD,343,District,2741,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,1255,Block,Manjhi,LGD,218,District,1255,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,2012,Block,Mankachar,LGD,707,District,2012,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false, +LGD,931,Block,Mankapur,LGD,147,District,931,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +LGD,6779,Block,Mankote,LGD,10,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +LGD,5985,Block,Manmangalam,LGD,576,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +LGD,1673,Block,Manmao Eac,LGD,229,District,1673,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,5808,Block,Mannargudi,LGD,590,District,5808,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,5648,Block,Mannarkad,LGD,563,District,5648,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +LGD,6273,Block,Manoharabad,LGD,513,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,2735,Block,Manoharpur,LGD,343,District,2735,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,681,Block,Manohar Thana,LGD,105,District,681,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,4451,Block,Manoor,LGD,691,District,4451,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,4611,Block,Manopad,LGD,695,District,4611,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,3998,Block,Manora,LGD,499,District,3998,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +LGD,3258,Block,Manora,LGD,380,District,3258,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,3484,Block,Manpur,LGD,436,District,3484,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +LGD,1494,Block,Manpur,LGD,196,District,1494,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,3309,Block,Manpur,LGD,761,District,3309,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,3774,Block,Mansa,LGD,446,District,3774,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +LGD,249,Block,Mansa,LGD,37,District,249,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false, +LGD,1152,Block,Mansahi,LGD,201,District,1152,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,1324,Block,Mansi,LGD,202,District,1324,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +LGD,1309,Block,Mansurchak,LGD,191,District,1309,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,2285,Block,Manteswar,LGD,306,District,2285,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,4132,Block,Mantha,LGD,479,District,4132,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +LGD,4401,Block,Manthani,LGD,682,District,4401,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,5250,Block,Mantralayam,LGD,511,District,5250,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5183,Block,Manubolu,LGD,515,District,5183,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,4727,Block,Manuguru,LGD,690,District,4727,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,6647,Block,Manur,LGD,592,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +LGD,5462,Block,Manvi,LGD,546,District,5462,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +LGD,4119,Block,Manwath,LGD,489,District,4119,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,6650,Block,Marakanam,LGD,596,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,1108,Block,Marauna,LGD,223,District,1108,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,7319,Block,Mardapal,LGD,643,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +LGD,4884,Block,Maredumilli,LGD,791,District,4884,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4092,Block,Maregaon,LGD,500,District,4092,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,2062,Block,Margherita,LGD,302,District,2062,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +LGD,2551,Block,Margo Munda,LGD,324,District,2551,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,6715,Block,Marh,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,1260,Block,Marhaura,LGD,218,District,1260,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,6731,Block,Marheen,LGD,7,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,985,Block,Mariahu,LGD,152,District,985,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +LGD,2081,Block,Mariani,LGD,290,District,2081,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +LGD,2029,Block,Marigaon,LGD,296,District,2029,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +LGD,1002,Block,Marihan,LGD,170,District,1002,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +LGD,6263,Block,Marikal,LGD,721,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,4720,Block,Maripeda,LGD,688,District,4720,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,1666,Block,Mariyang Adc,LGD,240,District,1666,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,2531,Block,Markacho,LGD,334,District,2531,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +LGD,5115,Block,Markapuram,LGD,790,District,5115,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6282,Block,Markook,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,6751,Block,Marmat,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,6554,Block,Maro Circle,LGD,241,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,4512,Block,Marpalle,LGD,698,District,4512,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,4500,Block,Marredpally,LGD,507,District,4500,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,7297,Block,Marri Bangla(Deori),LGD,646,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +LGD,4649,Block,Marriguda,LGD,514,District,4649,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,5163,Block,Marripadu,LGD,515,District,5163,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5129,Block,Marripudi,LGD,517,District,5129,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,2932,Block,Marsaghai,LGD,360,District,2932,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,6165,Block,Martinganjon,LGD,123,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +LGD,5106,Block,Martur,LGD,750,District,5106,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5954,Block,Marungapuri,LGD,591,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,69,Block,Marwah,LGD,620,District,69,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,3288,Block,Marwahi,LGD,734,District,3288,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false, +LGD,1203,Block,Marwan,LGD,208,District,1203,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,602,Block,Marwar Junction,LGD,111,District,602,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +LGD,7190,Block,Masaipet,LGD,513,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,2675,Block,Masalia,LGD,326,District,2675,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,6379,Block,Masalpur,LGD,108,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,1408,Block,Masaurhi,LGD,212,District,1408,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,1248,Block,Mashrakh,LGD,218,District,1248,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,7101,Block,Maski,LGD,546,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +LGD,3296,Block,Masturi,LGD,375,District,3296,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,610,Block,Masuda,LGD,774,District,610,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,762,Block,Mat,LGD,167,District,762,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +LGD,3875,Block,Matar,LGD,450,District,3875,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,410,Block,Matenhail,LGD,64,District,410,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +LGD,2181,Block,Mathabhanga - I,LGD,308,District,2181,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,2182,Block,Mathabhanga-II,LGD,308,District,2182,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,5701,Block,Mathavaram,LGD,568,District,5701,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,3221,Block,Mathili,LGD,364,District,3221,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +LGD,764,Block,Mathura,LGD,167,District,764,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +LGD,2430,Block,Mathurapur - I,LGD,304,District,2430,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2436,Block,Mathurapur - II,LGD,304,District,2436,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2015,Block,Matia,LGD,287,District,2015,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +LGD,7581,Block,Matiala,LGD,84,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +LGD,2168,Block,Matiali,LGD,314,District,2168,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,2162,Block,Matigara,LGD,309,District,2162,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,1320,Block,Matihani,LGD,191,District,1320,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,6412,Block,Matlauda,LGD,71,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +LGD,4670,Block,Mattampally,LGD,696,District,4670,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,876,Block,Mau,LGD,136,District,876,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false, +LGD,7000,Block,Mau,LGD,395,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,4029,Block,Mauda,LGD,484,District,4029,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,867,Block,Maudaha,LGD,149,District,867,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +LGD,3477,Block,Mauganj,LGD,766,District,3477,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,7222,Block,Maulasar,LGD,768,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,973,Block,Maunath Bhanjan,LGD,168,District,973,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +LGD,6858,Block,Maur,LGD,28,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +LGD,859,Block,Mauranipur,LGD,153,District,859,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +LGD,543,Block,Mauzamabad,LGD,102,District,543,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,6222,Block,Mavala,LGD,501,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,5678,Block,Mavelikkara,LGD,554,District,5678,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +LGD,685,Block,Mavli,LGD,117,District,685,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,4191,Block,Mawal,LGD,490,District,4191,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,733,Block,Mawana,LGD,169,District,733,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +LGD,7456,Block,Mawhati,LGD,276,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +LGD,1991,Block,Mawkynrew,LGD,274,District,1991,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,1984,Block,Mawkyrwat,LGD,658,District,1984,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false, +LGD,6540,Block,Mawlai,LGD,274,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,6541,Block,Mawpat,LGD,274,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,1988,Block,Mawphlang,LGD,274,District,1988,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,1990,Block,Mawryngkneng,LGD,274,District,1990,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,1979,Block,Mawshynrut,LGD,279,District,1979,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false, +LGD,1993,Block,Mawsynram,LGD,274,District,1993,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,1981,Block,Mawthadraishan,LGD,740,District,1981,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false, +LGD,5920,Block,Mayabunder,LGD,632,District,5920,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +LGD,5796,Block,Mayiladuthurai,LGD,735,District,5796,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +LGD,2177,Block,Maynaguri,LGD,314,District,2177,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,2026,Block,Mayong,LGD,296,District,2026,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +LGD,2255,Block,Mayureswar - I,LGD,307,District,2255,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2256,Block,Mayureswar - II,LGD,307,District,2256,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2521,Block,Mayur Hand,LGD,323,District,2521,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,2153,Block,Mazbat,LGD,617,District,2153,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +LGD,6369,Block,Mdawara,LGD,161,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +LGD,1656,Block,Mebo Adc,LGD,232,District,1656,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +LGD,1622,Block,Mechuka Adc,LGD,725,District,1622,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false, +LGD,4456,Block,Medak,LGD,513,District,4456,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,4519,Block,Medchal,LGD,700,District,4519,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,5073,Block,Medikonduru,LGD,506,District,5073,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,2633,Block,Medininagar(Daltonganj),LGD,338,District,2633,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,4415,Block,Medipalli,LGD,681,District,4415,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,6318,Block,Medipally,LGD,700,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,1799,Block,Medziphema,LGD,758,District,1799,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,5668,Block,Meenachil,LGD,560,District,5668,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +LGD,785,Block,Meerganj,LGD,130,District,785,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +LGD,734,Block,Meerut,LGD,169,District,734,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +LGD,3708,Block,Meghnagar,LGD,412,District,3708,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +LGD,3765,Block,Meghraj,LGD,672,District,3765,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +LGD,7409,Block,Mehal Kalan,LGD,605,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +LGD,6894,Block,Mehatpur,LGD,26,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,941,Block,Mehdawal,LGD,178,District,941,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +LGD,2555,Block,Meherma,LGD,330,District,2555,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,3393,Block,Mehgaon,LGD,395,District,3393,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,3982,Block,Mehkar,LGD,472,District,3982,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,3873,Block,Mehmedabad,LGD,450,District,3873,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,970,Block,Mehnagar,LGD,123,District,970,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +LGD,6080,Block,Mehrauli,LGD,83,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +LGD,1057,Block,Mehsi,LGD,213,District,1057,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,894,Block,Meja,LGD,120,District,894,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +LGD,2357,Block,Mejhia,LGD,305,District,2357,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,2180,Block,Mekliganj,LGD,308,District,2180,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,4774,Block,Meliaputti,LGD,519,District,4774,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,4671,Block,Mellachervu,LGD,696,District,4671,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,6652,Block,Melmalaiyanur,LGD,596,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,5835,Block,Melur,LGD,578,District,5835,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,1803,Block,Meluri,LGD,788,District,1803,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,2291,Block,Memari - I,LGD,306,District,2291,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2292,Block,Memari - II,LGD,306,District,2292,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,3830,Block,Mendarda,LGD,448,District,3830,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,18,Block,Mendhar,LGD,10,District,18,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +LGD,6237,Block,Mendora,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,1604,Block,Mengio Eac,LGD,237,District,1604,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,4824,Block,Mentada,LGD,521,District,4824,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,4822,Block,Merakamudidam,LGD,521,District,4822,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,2508,Block,Meral (Pipra Kalan),LGD,328,District,2508,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,1765,Block,Merangmen,LGD,246,District,1765,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,562,Block,Merta,LGD,110,District,562,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,1522,Block,Meskaur,LGD,210,District,1522,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,1740,Block,Metengliang Circle,LGD,628,District,1740,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +LGD,4417,Block,Metpalli,LGD,681,District,4417,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,5895,Block,Mettupalayam,LGD,569,District,5895,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,5736,Block,Mettur,LGD,584,District,5736,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,4184,Block,Mhasla,LGD,491,District,4184,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,1680,Block,Miao Adc,LGD,229,District,1680,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,4566,Block,Midjil,LGD,512,District,4566,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,2453,Block,Midnapore,LGD,318,District,2453,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,5267,Block,Midthur,LGD,755,District,5267,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1659,Block,Migging Circle,LGD,240,District,1659,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,6862,Block,Mihinpurwa Motipur,LGD,125,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +LGD,3397,Block,Mihona,LGD,395,District,3397,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,2030,Block,Mikirbheta,LGD,296,District,2030,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +LGD,728,Block,Milak,LGD,176,District,728,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +LGD,903,Block,Milkipur,LGD,140,District,903,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +LGD,2333,Block,Minakhan,LGD,303,District,2333,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,1205,Block,Minapur,LGD,208,District,1205,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,5629,Block,Minicoy,LGD,553,District,5629,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +LGD,1717,Block,Mipi,LGD,230,District,1717,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false, +LGD,4302,Block,Miraj,LGD,493,District,4302,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,4464,Block,Mirdoddi,LGD,692,District,4464,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,2160,Block,Mirik,LGD,309,District,2160,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,4664,Block,Miryalaguda,LGD,514,District,4664,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,1000,Block,Mirzapur,LGD,170,District,1000,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +LGD,803,Block,Misrikh,LGD,183,District,803,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +LGD,6875,Block,Mitauli,LGD,159,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +LGD,7152,Block,Mitrapura,LGD,113,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,6636,Block,Modakkurichi,LGD,573,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,1538,Block,Modanganj,LGD,199,District,1538,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +LGD,3769,Block,Modasa,LGD,672,District,3769,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +LGD,432,Block,Model Town,LGD,796,District,432,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,738,Block,Modinagar,LGD,145,District,738,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +LGD,233,Block,Moga,LGD,38,District,233,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +LGD,4986,Block,Mogalthur,LGD,523,District,4986,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,6278,Block,Mogudampally,LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,4680,Block,Mogullapally,LGD,687,District,4680,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,4038,Block,Mohadi,LGD,471,District,4038,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +LGD,6750,Block,Mohalla,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,7187,Block,Mohammadabad,LGD,512,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,990,Block,Mohammadabad,LGD,146,District,990,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +LGD,2257,Block,Mohammad Bazar,LGD,307,District,2257,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2617,Block,Mohammad Ganj,LGD,338,District,2617,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,7520,Block,Mohammadnagar,LGD,685,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,800,Block,Mohammdi,LGD,159,District,800,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +LGD,3101,Block,Mohana,LGD,353,District,3101,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +LGD,3419,Block,Mohangarh,LGD,434,District,3419,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,1449,Block,Mohania,LGD,200,District,1449,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,822,Block,Mohanlalganj,LGD,162,District,822,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +LGD,1509,Block,Mohanpur,LGD,196,District,1509,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,2469,Block,Mohanpur,LGD,318,District,2469,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,1293,Block,Mohanpur,LGD,217,District,1293,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,2546,Block,Mohanpur,LGD,324,District,2546,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,6689,Block,Mohanpur,LGD,272,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +LGD,6635,Block,Mohanur,LGD,580,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +LGD,1294,Block,Mohiuddinagar,LGD,217,District,1294,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,3655,Block,Mohkhed,LGD,399,District,3655,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,3308,Block,Mohla,LGD,761,District,3308,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,6435,Block,Mohna St,LGD,60,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +LGD,4248,Block,Mohol,LGD,496,District,4248,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,4528,Block,Moinabad,LGD,518,District,4528,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,1875,Block,Moirang,LGD,252,District,1875,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false, +LGD,1420,Block,Mokameh,LGD,212,District,1420,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,4161,Block,Mokhada,LGD,665,District,4161,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +LGD,5503,Block,Molakalmuru,LGD,533,District,5503,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +LGD,3521,Block,Moman Badodiya,LGD,430,District,3521,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +LGD,4513,Block,Mominpet,LGD,698,District,4513,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,1623,Block,Monigong Eac,LGD,725,District,1623,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false, +LGD,1748,Block,Mon Sadar,LGD,247,District,1748,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,1757,Block,Monyakshu,LGD,247,District,1757,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,7102,Block,Moodubidire,LGD,534,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,274,Block,Moonak,LGD,43,District,274,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +LGD,6260,Block,Moosapet,LGD,512,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,5036,Block,Mopidevi,LGD,510,District,5036,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,1667,Block,Mopom Adipasi Circle,LGD,240,District,1667,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,1755,Block,Mopong,LGD,247,District,1755,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,2878,Block,Morada,LGD,365,District,2878,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,719,Block,Moradabad,LGD,171,District,719,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +LGD,2067,Block,Moran,LGD,286,District,2067,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +LGD,196,Block,Morang,LGD,19,District,196,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +LGD,2086,Block,Morangi,LGD,288,District,2086,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +LGD,7038,Block,Morar,LGD,407,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,7443,Block,Morbi City,LGD,673,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +LGD,6498,Block,Moreh,LGD,716,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false, +LGD,3387,Block,Morena,LGD,417,District,3387,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +LGD,7047,Block,Morena Nagar,LGD,417,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +LGD,279,Block,Mori,LGD,57,District,279,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,6857,Block,Morinda,LGD,42,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +LGD,5615,Block,Mormugao,LGD,552,District,5615,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +LGD,6461,Block,Morni St,LGD,70,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +LGD,4006,Block,Morshi,LGD,468,District,4006,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,4362,Block,Morthad,LGD,516,District,4362,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,3799,Block,Morvi,LGD,673,District,3799,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +LGD,1291,Block,Morwa,LGD,217,District,1291,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,3884,Block,Morwa (Hadaf),LGD,454,District,3884,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +LGD,6668,Block,Mosara,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,6309,Block,Motakonduru,LGD,697,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,3980,Block,Motala,LGD,472,District,3980,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,856,Block,Moth,LGD,153,District,856,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +LGD,4640,Block,Mothey,LGD,696,District,4640,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,4625,Block,Mothkur,LGD,697,District,4625,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,1041,Block,Motihari,LGD,213,District,1041,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,3230,Block,Motu,LGD,364,District,3230,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +LGD,6734,Block,Moungri,LGD,14,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +LGD,5032,Block,Movva,LGD,510,District,5032,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,2476,Block,Moyna,LGD,317,District,2476,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,6504,Block,Mualnuam,LGD,254,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,7099,Block,Mudalgi,LGD,527,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,5216,Block,Muddanur,LGD,504,District,5216,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,5453,Block,Muddebihal,LGD,530,District,5453,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,5445,Block,Mudhol,LGD,524,District,5445,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,4341,Block,Mudhole,LGD,680,District,4341,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,5531,Block,Mudigere,LGD,532,District,5531,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,4758,Block,Mudigonda,LGD,509,District,4758,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,5339,Block,Mudigubba,LGD,754,District,5339,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5020,Block,Mudinepalle,LGD,748,District,5020,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4101,Block,Mudkhed,LGD,485,District,4101,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,6671,Block,Muduchinthalapally,LGD,700,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,5857,Block,Mudukulathur,LGD,583,District,5857,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,6764,Block,Mugal Maidan,LGD,620,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,6235,Block,Mugpal,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,974,Block,Muhammadabad Gohna,LGD,168,District,974,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +LGD,1492,Block,Muhra,LGD,196,District,1492,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,7300,Block,Mukdega,LGD,386,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,215,Block,Mukerian,LGD,33,District,215,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +LGD,4109,Block,Mukhed,LGD,485,District,4109,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,3963,Block,Muktainagar (Edlabad),LGD,478,District,3963,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,1563,Block,Mukto Circle,LGD,238,District,1563,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,5656,Block,Mukundapuram,LGD,566,District,5656,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +LGD,4072,Block,Mul,LGD,473,District,4072,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,6839,Block,Mulagada,LGD,520,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,5367,Block,Mulakalacheruvu,LGD,753,District,5367,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6430,Block,Mulana St,LGD,58,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +LGD,5594,Block,Mulbagal,LGD,542,District,5594,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +LGD,4059,Block,Mulchera,LGD,475,District,4059,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,3793,Block,Muli,LGD,460,District,3793,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,4748,Block,Mulkalapally,LGD,690,District,4748,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,7198,Block,Mulki,LGD,534,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,4192,Block,Mulshi,LGD,490,District,4192,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,3604,Block,Multai,LGD,394,District,3604,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,113,Block,Multhan,LGD,18,District,113,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,4689,Block,Mulug,LGD,720,District,4689,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,4486,Block,Mulug,LGD,692,District,4486,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,4932,Block,Mummidivaram,LGD,747,District,4932,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4642,Block,Munagala,LGD,696,District,4642,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,4877,Block,Munagapaka,LGD,744,District,4877,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4841,Block,Munchingi Puttu,LGD,745,District,4841,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5472,Block,Mundargi,LGD,537,District,5472,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +LGD,494,Block,Mundawar,LGD,770,District,494,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5482,Block,Mundgod,LGD,550,District,5482,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,7411,Block,Mundi,LGD,405,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,7583,Block,Mundka,LGD,794,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,5113,Block,Mundlamuru,LGD,517,District,5113,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,3730,Block,Mundra,LGD,449,District,3730,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,6378,Block,Mundwa,LGD,110,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,3688,Block,Mungaoli,LGD,391,District,3688,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +LGD,3292,Block,Mungeli,LGD,647,District,3292,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false, +LGD,1356,Block,Munger,LGD,207,District,1356,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,3173,Block,Muniguda,LGD,370,District,3173,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,4477,Block,Munipally,LGD,691,District,4477,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,315,Block,Munsiari,LGD,53,District,315,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,4647,Block,Munugode,LGD,514,District,4647,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,6238,Block,Mupkal,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,5068,Block,Muppalla,LGD,751,District,5068,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2249,Block,Murarai - I,LGD,307,District,2249,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2250,Block,Murarai - II,LGD,307,District,2250,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,4171,Block,Murbad,LGD,497,District,4171,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +LGD,2703,Block,Murhu,LGD,606,District,2703,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false, +LGD,7454,Block,Muribahal,LGD,345,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,1164,Block,Murliganj,LGD,205,District,1164,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,2237,Block,Murshidabad Jiaganj,LGD,319,District,2237,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,3992,Block,Murtijapur,LGD,467,District,3992,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +LGD,4178,Block,Murud,LGD,491,District,4178,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,3620,Block,Murwara Or Katni,LGD,413,District,3620,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,2609,Block,Musabani,LGD,327,District,2609,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,912,Block,Musafirkhana,LGD,640,District,912,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +LGD,1212,Block,Musahri,LGD,208,District,1212,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,4501,Block,Musheerabad,LGD,507,District,4501,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,5774,Block,Musiri,LGD,591,District,5774,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,7393,Block,Mussoorie,LGD,49,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +LGD,4434,Block,Mustabad,LGD,683,District,4434,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,5002,Block,Musunuru,LGD,748,District,5002,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4404,Block,Mutharam Mahadevpur,LGD,687,District,4404,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,4406,Block,Mutharam (Manthani),LGD,682,District,4406,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,5181,Block,Muthukur,LGD,515,District,5181,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,7408,Block,Muthupettai,LGD,590,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,5662,Block,Muvattupuzha,LGD,555,District,5662,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +LGD,708,Block,Muzaffarnagar,LGD,172,District,708,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +LGD,7170,Block,Mylapore,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,4995,Block,Mylavaram,LGD,749,District,4995,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5200,Block,Mylavaram,LGD,504,District,5200,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,1989,Block,Mylliem,LGD,274,District,1989,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,5572,Block,Mysuru,LGD,545,District,5572,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,2307,Block,Nabadwip,LGD,320,District,2307,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,2238,Block,Nabagram,LGD,319,District,2238,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,3196,Block,Nabarangapur P.S,LGD,366,District,3196,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,252,Block,Nabha,LGD,41,District,252,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +LGD,1483,Block,Nabinagar,LGD,189,District,1483,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,1609,Block,Nacho Sdo,LGD,241,District,1609,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,141,Block,Nadaun,LGD,17,District,141,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,509,Block,Nadbai,LGD,91,District,509,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +LGD,5069,Block,Nadendla,LGD,751,District,5069,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3876,Block,Nadiad,LGD,450,District,3876,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,6531,Block,Nadiad City,LGD,450,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,4641,Block,Nadigudem,LGD,696,District,4641,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,6547,Block,Nadikuda,LGD,686,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,521,Block,Nadoti,LGD,108,District,521,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,7416,Block,Naduar,LGD,301,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +LGD,2044,Block,Na-Duar,LGD,705,District,2044,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +LGD,1568,Block,Nafra Adc,LGD,787,District,1568,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,5403,Block,Nagalapuram,LGD,752,District,5403,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6280,Block,Nagalgidda,LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,5547,Block,Nagamangala,LGD,544,District,5547,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +LGD,2035,Block,Nagaon,LGD,297,District,2035,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +LGD,5799,Block,Nagapattinam,LGD,579,District,5799,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +LGD,4209,Block,Nagar,LGD,466,District,4209,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,507,Block,Nagar,LGD,767,District,507,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5095,Block,Nagaram,LGD,750,District,5095,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6298,Block,Nagaram,LGD,696,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,2123,Block,Nagarbera,LGD,291,District,2123,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,7155,Block,Nagarfort,LGD,116,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,5406,Block,Nagari,LGD,503,District,5406,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,4583,Block,Nagarkurnool,LGD,694,District,4583,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,1379,Block,Nagar Nausa,LGD,209,District,1379,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,2503,Block,Nagaruntari,LGD,328,District,2503,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,560,Block,Nagaur,LGD,110,District,560,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,5038,Block,Nagayalanka,LGD,510,District,5038,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,4066,Block,Nagbhid,LGD,473,District,4066,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,3509,Block,Nagda,LGD,435,District,3509,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,714,Block,Nagina,LGD,132,District,714,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +LGD,6477,Block,Nagina St,LGD,604,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +LGD,1744,Block,Naginimora,LGD,247,District,1744,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,4387,Block,Nagireddypet,LGD,685,District,4387,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,3464,Block,Nagod,LGD,426,District,3464,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +LGD,4031,Block,Nagpur (Rural),LGD,484,District,4031,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,4032,Block,Nagpur (Urban),LGD,484,District,4032,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,1259,Block,Nagra,LGD,218,District,1259,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,2169,Block,Nagrakata,LGD,314,District,2169,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,2692,Block,Nagri,LGD,339,District,2692,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,3347,Block,Nagri,LGD,377,District,3347,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +LGD,6727,Block,Nagri Parole,LGD,7,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,6711,Block,Nagrota,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,101,Block,Nagrota Bagwan,LGD,18,District,101,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,6895,Block,Nagrota Surian,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,6768,Block,Nagseni,LGD,620,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,5126,Block,Naguluppala Padu,LGD,517,District,5126,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,172,Block,Nahan,LGD,24,District,172,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,2069,Block,Naharkatiya,LGD,286,District,2069,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +LGD,1596,Block,Naharlagun Eac,LGD,237,District,1596,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,6465,Block,Nahar St,LGD,72,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +LGD,5194,Block,Naidupet,LGD,752,District,5194,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4106,Block,Naigaon (Khairgaon),LGD,485,District,4106,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,3478,Block,Naigarhi,LGD,766,District,3478,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,155,Block,Naina Devi,LGD,15,District,155,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +LGD,6337,Block,Nainbag,LGD,55,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,340,Block,Nainital,LGD,51,District,340,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,3646,Block,Nainpur,LGD,415,District,3646,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +LGD,623,Block,Nainwa,LGD,94,District,623,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +LGD,6973,Block,Nai Sarai,LGD,391,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +LGD,451,Block,Najafgarh,LGD,84,District,451,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +LGD,712,Block,Najibabad,LGD,132,District,712,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +LGD,2304,Block,Nakashipara,LGD,320,District,2304,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,3727,Block,Nakhatrana,LGD,449,District,3727,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,4880,Block,Nakkapalli,LGD,744,District,4880,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,210,Block,Nakodar,LGD,34,District,210,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +LGD,4636,Block,Nakrekal,LGD,514,District,4636,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,2798,Block,Naktideul,LGD,371,District,2798,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,703,Block,Nakur,LGD,177,District,703,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +LGD,2679,Block,Nala,LGD,333,District,2679,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false, +LGD,161,Block,Nalagarh,LGD,25,District,161,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,2136,Block,Nalbari,LGD,298,District,2136,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +LGD,4646,Block,Nalgonda,LGD,514,District,4646,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,2251,Block,Nalhati - I,LGD,307,District,2251,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2252,Block,Nalhati - II,LGD,307,District,2252,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,3516,Block,Nalkheda,LGD,667,District,3516,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +LGD,4692,Block,Nallabelli,LGD,522,District,4692,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,5359,Block,Nallachervu,LGD,754,District,5359,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4956,Block,Nallajerla,LGD,505,District,4956,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,5344,Block,Nallamada,LGD,754,District,5344,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6623,Block,Nallampalli,LGD,571,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +LGD,5747,Block,Namakkal,LGD,580,District,5747,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +LGD,6638,Block,Nambiyur,LGD,573,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,1873,Block,Nambol,LGD,252,District,1873,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false, +LGD,5341,Block,Nambulapulakunta,LGD,754,District,5341,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1551,Block,Namchi,LGD,227,District,1551,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false, +LGD,7335,Block,Namdong,LGD,275,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false, +LGD,157,Block,Namhol,LGD,15,District,157,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +LGD,2439,Block,Namkhana,LGD,304,District,2439,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2690,Block,Namkum,LGD,339,District,2690,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,4654,Block,Nampally,LGD,514,District,4654,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4504,Block,Nampally,LGD,507,District,4504,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,1676,Block,Nampong Sdo,LGD,229,District,1676,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,1732,Block,Namsai Hq,LGD,678,District,1732,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false, +LGD,1831,Block,Namsang,LGD,615,District,1831,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false, +LGD,6115,Block,Namsing Circle,LGD,232,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +LGD,7542,Block,Namthang,LGD,227,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false, +LGD,6580,Block,Namtok Eac,LGD,229,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,6364,Block,Nanakmatta,LGD,56,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,7547,Block,Nanapodha,LGD,462,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,5917,Block,Nancowry,LGD,603,District,5917,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false, +LGD,7481,Block,Nandahandi,LGD,366,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,2474,Block,Nanda Kumar,LGD,317,District,2474,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,5243,Block,Nandalur,LGD,504,District,5243,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,3214,Block,Nandapur,LGD,363,District,3214,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,5255,Block,Nandavaram,LGD,511,District,5255,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,4100,Block,Nanded,LGD,485,District,4100,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,4147,Block,Nandgaon,LGD,487,District,4147,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,4012,Block,Nandgaon-Khandeshwar,LGD,468,District,4012,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,7248,Block,Nandghat,LGD,650,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,4782,Block,Nandigam,LGD,519,District,4782,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,6321,Block,Nandigama,LGD,518,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,4993,Block,Nandigama,LGD,749,District,4993,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2484,Block,Nandigram - I,LGD,317,District,2484,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2485,Block,Nandigram - II,LGD,317,District,2485,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,5260,Block,Nandikotkur,LGD,755,District,5260,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4359,Block,Nandipet,LGD,516,District,4359,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,5014,Block,Nandivada,LGD,510,District,5014,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,3910,Block,Nandod,LGD,452,District,3910,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +LGD,6344,Block,Nandprayag,LGD,47,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,3978,Block,Nandura,LGD,472,District,3978,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,3954,Block,Nandurbar,LGD,486,District,3954,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +LGD,5284,Block,Nandyal Rural,LGD,755,District,5284,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7425,Block,Nandyal Urban,LGD,755,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,263,Block,Nangal,LGD,42,District,263,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +LGD,6456,Block,Nangal Chawdhary,LGD,69,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +LGD,6053,Block,Nangal Rajawatan,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,7595,Block,Nangloi Jat,LGD,82,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false, +LGD,4461,Block,Nangnoor,LGD,692,District,4461,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,5879,Block,Nanguneri,LGD,592,District,5879,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +LGD,7313,Block,Nangur,LGD,374,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,5574,Block,Nanjangud,LGD,545,District,5574,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,178,Block,Nankhari,LGD,23,District,178,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,5805,Block,Nannilam,LGD,590,District,5805,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,2263,Block,Nanoor,LGD,307,District,2263,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,919,Block,Nanpara,LGD,125,District,919,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +LGD,1078,Block,Nanpur,LGD,221,District,1078,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,2050,Block,Naobaicha,LGD,295,District,2050,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +LGD,1315,Block,Naokothi,LGD,191,District,1315,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,6954,Block,Narag,LGD,24,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,358,Block,Naraingarh,LGD,58,District,358,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +LGD,874,Block,Naraini,LGD,128,District,874,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +LGD,3161,Block,Narala,LGD,358,District,3161,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,4799,Block,Narasannapeta,LGD,519,District,4799,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,4987,Block,Narasapuram,LGD,523,District,4987,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,5067,Block,Narasaraopet,LGD,751,District,5067,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5527,Block,Narasimharajapura,LGD,532,District,5527,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,6670,Block,Narayanaraopet,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,5400,Block,Narayanavanam,LGD,752,District,5400,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6333,Block,Narayanbagar,LGD,47,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,3642,Block,Narayanganj,LGD,415,District,3642,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +LGD,2465,Block,Narayangarh,LGD,318,District,2465,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,4452,Block,Narayankhed,LGD,691,District,4452,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,3204,Block,Narayanpatana,LGD,363,District,3204,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,4570,Block,Narayanpet,LGD,721,District,4570,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,6936,Block,Narayanpur,LGD,782,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,4648,Block,Narayanpur,LGD,697,District,4648,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,1329,Block,Narayanpur,LGD,192,District,1329,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,3367,Block,Narayanpur,LGD,637,District,3367,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false, +LGD,2676,Block,Narayanpur,LGD,333,District,2676,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false, +LGD,2048,Block,Narayanpur,LGD,295,District,2048,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +LGD,6813,Block,Narbal,LGD,2,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +LGD,1511,Block,Nardiganj,LGD,210,District,1511,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,430,Block,Narela,LGD,794,District,430,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,299,Block,Narendra Nagar,LGD,55,District,299,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,5468,Block,Nargund,LGD,537,District,5468,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +LGD,3352,Block,Narharpur,LGD,381,District,3352,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,1521,Block,Narhat,LGD,210,District,1521,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,1651,Block,Nari Adc,LGD,719,District,1651,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false, +LGD,1036,Block,Narkatia,LGD,213,District,1036,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1017,Block,Narkatiaganj,LGD,211,District,1017,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,4634,Block,Narketpally,LGD,514,District,4634,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4023,Block,Narkhed,LGD,484,District,4023,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,4675,Block,Narmetta,LGD,689,District,4675,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,412,Block,Narnaul,LGD,69,District,412,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +LGD,395,Block,Narnaund,LGD,792,District,395,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +LGD,4312,Block,Narnoor,LGD,501,District,4312,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,5328,Block,Narpala,LGD,502,District,5328,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,1112,Block,Narpatganj,LGD,188,District,1112,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,4708,Block,Narsampet,LGD,522,District,4708,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,6352,Block,Narsan,LGD,50,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +LGD,4488,Block,Narsapur,LGD,513,District,4488,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,6208,Block,Narsapur G,LGD,680,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,3636,Block,Narsimhapur,LGD,418,District,3636,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +LGD,4719,Block,Narsimhulapet,LGD,688,District,4719,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,3568,Block,Narsinghgarh,LGD,422,District,3568,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,2944,Block,Narsinghpur,LGD,350,District,2944,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,6272,Block,Narsingi,LGD,513,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,4854,Block,Narsipatnam,LGD,744,District,4854,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4588,Block,Narwa,LGD,721,District,4588,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,6163,Block,Narwal,LGD,157,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +LGD,382,Block,Narwana,LGD,65,District,382,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +LGD,3409,Block,Narwar,LGD,432,District,3409,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,7202,Block,Narwav,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,4152,Block,Nashik,LGD,487,District,4152,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,611,Block,Nasirabad,LGD,86,District,611,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,6226,Block,Naspur,LGD,684,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,1463,Block,Nasriganj,LGD,215,District,1463,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,6244,Block,Nasurullabad,LGD,685,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,3903,Block,Nasvadi,LGD,668,District,3903,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +LGD,3575,Block,Nateran,LGD,437,District,3575,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,5763,Block,Natham,LGD,572,District,5763,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,4852,Block,Nathavaram,LGD,744,District,4852,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,645,Block,Nathdwara,LGD,112,District,645,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,1339,Block,Nathnagar,LGD,192,District,1339,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,6470,Block,Nathusari Chopta,LGD,74,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +LGD,5963,Block,Natrampalli,LGD,732,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +LGD,1404,Block,Naubatpur,LGD,212,District,1404,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,1332,Block,Naugachhia,LGD,192,District,1332,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,7129,Block,Nauganwa,LGD,87,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,2942,Block,Naugaon,LGD,355,District,2942,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +LGD,933,Block,Naugarh,LGD,182,District,933,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +LGD,6870,Block,Naugarh,LGD,135,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +LGD,6831,Block,Naugawan Sadat,LGD,154,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +LGD,1171,Block,Nauhatta,LGD,216,District,1171,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,1469,Block,Nauhatta,LGD,215,District,1469,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,1030,Block,Nautan,LGD,211,District,1030,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,1229,Block,Nautan,LGD,222,District,1229,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,944,Block,Nautanwa,LGD,164,District,944,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +LGD,5474,Block,Navalgund,LGD,536,District,5474,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +LGD,4358,Block,Navipet,LGD,516,District,4358,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,3922,Block,Navsari,LGD,453,District,3922,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +LGD,566,Block,Nawa,LGD,768,District,566,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,2625,Block,Nawa Bazar,LGD,338,District,2625,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,898,Block,Nawabganj,LGD,129,District,898,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +LGD,788,Block,Nawabganj,LGD,130,District,788,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +LGD,4514,Block,Nawabpet,LGD,698,District,4514,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,4556,Block,Nawabpet,LGD,512,District,4556,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,1512,Block,Nawada,LGD,210,District,1512,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,2588,Block,Nawadih,LGD,322,District,2588,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,2621,Block,Nawadiha Bazar/Nawadiha*,LGD,338,District,2621,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,3280,Block,Nawagarh,LGD,379,District,3280,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,3311,Block,Nawagarh,LGD,650,District,3311,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,491,Block,Nawalgarh,LGD,106,District,491,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,1445,Block,Nawanagar,LGD,194,District,1445,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,218,Block,Nawanshahr,LGD,40,District,218,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +LGD,3955,Block,Nawapur,LGD,486,District,3955,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +LGD,2243,Block,Nawda,LGD,319,District,2243,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2163,Block,Naxalbari,LGD,309,District,2163,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,7267,Block,Naya Baradwar,LGD,762,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,7157,Block,Nayagaon,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,3028,Block,Nayagarh,LGD,367,District,3028,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +LGD,2458,Block,Nayagram,LGD,703,District,2458,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +LGD,2073,Block,Nazira,LGD,300,District,2073,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +LGD,7153,Block,Nechhwa,LGD,114,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,5690,Block,Nedumangad,LGD,565,District,5690,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +LGD,5807,Block,Needamangalam,LGD,590,District,5807,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,1491,Block,Neem Chak Bathani,LGD,196,District,1491,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,556,Block,Neem Ka Thana,LGD,114,District,556,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,6380,Block,Neemrana,LGD,782,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3489,Block,Neemuch,LGD,419,District,3489,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +LGD,7035,Block,Neemuch Nagar,LGD,419,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +LGD,5060,Block,Nekarikallu,LGD,751,District,5060,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4713,Block,Nekkonda,LGD,522,District,4713,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,4759,Block,Nelakondapalli,LGD,509,District,4759,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,5601,Block,Nelamangala,LGD,526,District,5601,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +LGD,4716,Block,Nellikudur,LGD,688,District,4716,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,4837,Block,Nellimarla,LGD,521,District,4837,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,5177,Block,Nellore Rural,LGD,515,District,5177,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,7182,Block,Nellore Urban,LGD,515,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,6664,Block,Nemili,LGD,731,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +LGD,4331,Block,Nennel,LGD,684,District,4331,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,3721,Block,Nepanagar,LGD,397,District,3721,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +LGD,4079,Block,Ner,LGD,500,District,4079,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,4325,Block,Neradigonda,LGD,501,District,4325,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,4665,Block,Nereducherla,LGD,696,District,4665,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,6308,Block,Neredugommu,LGD,514,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,187,Block,Nerwa,LGD,23,District,187,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,6170,Block,Netrang,LGD,442,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,2383,Block,Neturia,LGD,321,District,2383,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,4206,Block,Nevasa,LGD,466,District,4206,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,7593,Block,New Delhi,LGD,79,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false, +LGD,6575,Block,New Seren Circle,LGD,719,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false, +LGD,5692,Block,Neyyattinkara,LGD,565,District,5692,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +LGD,1906,Block,Ngopa,LGD,727,District,1906,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +LGD,1818,Block,Ngoungchung,LGD,249,District,1818,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false, +LGD,2967,Block,Niali,LGD,350,District,2967,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,198,Block,Nichar,LGD,19,District,198,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +LGD,945,Block,Nichlaul,LGD,164,District,945,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +LGD,4960,Block,Nidadavole,LGD,505,District,4960,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,7075,Block,Nidagundi,LGD,530,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,4968,Block,Nidamarru,LGD,748,District,4968,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4661,Block,Nidmanoor,LGD,514,District,4661,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,6451,Block,Nigdu St,LGD,67,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +LGD,797,Block,Nighasan,LGD,159,District,797,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +LGD,231,Block,Nihal Singhwala,LGD,38,District,231,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +LGD,1795,Block,Nihokhu,LGD,764,District,1795,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,138,Block,Nihri,LGD,22,District,138,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,6587,Block,Nikte Kodum Circle,LGD,243,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false, +LGD,2903,Block,Nilagiri,LGD,346,District,2903,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,5767,Block,Nilakkottai,LGD,572,District,5767,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,2632,Block,Nilambar-Pitambarpur(Lesliganj),LGD,338,District,2632,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,2103,Block,Nilambazar,LGD,293,District,2103,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +LGD,5642,Block,Nilambur,LGD,562,District,5642,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +LGD,4233,Block,Nilanga,LGD,481,District,4233,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,6552,Block,Nilling Circle,LGD,241,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,370,Block,Nilokheri,LGD,67,District,370,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +LGD,3058,Block,Nimapada,LGD,369,District,3058,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,663,Block,Nimbahera,LGD,95,District,663,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,2751,Block,Nimdih,LGD,341,District,2751,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,5393,Block,Nimmanapalle,LGD,753,District,5393,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5404,Block,Nindra,LGD,503,District,5404,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,4155,Block,Niphad,LGD,487,District,4155,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,7105,Block,Nippani,LGD,527,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,7211,Block,Nirjharna,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,1101,Block,Nirmali,LGD,223,District,1101,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,6210,Block,Nirmal Rural,LGD,680,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,4344,Block,Nirmal U,LGD,680,District,4344,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,122,Block,Nirmand,LGD,20,District,122,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,2587,Block,Nirsa-Cum-Chirkunda,LGD,325,District,2587,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,2958,Block,Nischintakoili,LGD,350,District,2958,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,6450,Block,Nising St,LGD,67,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +LGD,6886,Block,Nither,LGD,20,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,1792,Block,Niuland,LGD,764,District,1792,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,617,Block,Niwai,LGD,116,District,617,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,3560,Block,Niwali,LGD,393,District,3560,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,3415,Block,Niwari,LGD,722,District,3415,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +LGD,3641,Block,Niwas,LGD,415,District,3641,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +LGD,967,Block,Nizamabad,LGD,123,District,967,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +LGD,4368,Block,Nizamabad North,LGD,516,District,4368,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,6233,Block,Nizamabad Rural,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,6385,Block,Nizamabad South,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,5094,Block,Nizampatnam,LGD,750,District,5094,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6271,Block,Nizampet,LGD,513,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,7535,Block,Nizampet (28),LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,4385,Block,Nizamsagar,LGD,685,District,4385,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,3942,Block,Nizar,LGD,641,District,3942,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +LGD,2736,Block,Noamundi,LGD,343,District,2736,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,471,Block,Nohar,LGD,101,District,471,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +LGD,168,Block,Nohra,LGD,24,District,168,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,1466,Block,Nokha,LGD,215,District,1466,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,477,Block,Nokha,LGD,93,District,477,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,7132,Block,Nokhra,LGD,90,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,1823,Block,Nokhu,LGD,736,District,1823,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1821,Block,Noklak,LGD,736,District,1821,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1814,Block,Noksen,LGD,249,District,1814,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false, +LGD,1980,Block,Nongstoin,LGD,279,District,1980,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false, +LGD,1387,Block,Noorsarai,LGD,209,District,1387,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,2126,Block,North Guwahati,LGD,291,District,2126,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,2052,Block,North Lakhimpur,LGD,295,District,2052,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +LGD,3427,Block,Nowgong,LGD,398,District,3427,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,3486,Block,Nowrozabad,LGD,436,District,3486,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +LGD,25,Block,Nowshera,LGD,12,District,25,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,1855,Block,Nsong,LGD,613,District,1855,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +LGD,7504,Block,Nuagad,LGD,353,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +LGD,3025,Block,Nuagaon,LGD,367,District,3025,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +LGD,1447,Block,Nuaon,LGD,200,District,1447,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,3154,Block,Nuapada,LGD,368,District,3154,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +LGD,422,Block,Nuh,LGD,604,District,422,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +LGD,1867,Block,Nungba,LGD,714,District,1867,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false, +LGD,93,Block,Nurpur,LGD,18,District,93,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,4621,Block,Nuthanakal,LGD,696,District,4621,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,5063,Block,Nuzendla,LGD,751,District,5063,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5003,Block,Nuzividu,LGD,748,District,5003,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4473,Block,Nyalkal,LGD,691,District,4473,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,7076,Block,Nyamathi,LGD,535,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +LGD,1706,Block,Nyapin Adc,LGD,233,District,1706,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,6844,Block,Nyobia Circle,LGD,233,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,7162,Block,Nyoma,LGD,9,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +LGD,7127,Block,Obra,LGD,184,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +LGD,1480,Block,Obra,LGD,189,District,1480,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,7384,Block,Obri,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,5358,Block,Obuladevaracheruvu,LGD,754,District,5358,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5248,Block,Obulavaripalle,LGD,752,District,5248,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3031,Block,Odagaon,LGD,367,District,3031,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +LGD,7503,Block,Odapada,LGD,352,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +LGD,5761,Block,Oddanchatram,LGD,572,District,5761,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,4426,Block,Odela,LGD,682,District,4426,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,3243,Block,Odgi,LGD,648,District,3243,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,7557,Block,Ogad,LGD,441,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,6350,Block,Okhalkanda,LGD,51,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,3812,Block,Okhamandal,LGD,674,District,3812,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +LGD,6107,Block,Old Ziro Sdo,LGD,236,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,false, +LGD,3932,Block,Olpad,LGD,459,District,3932,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,5737,Block,Omalur,LGD,584,District,5737,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,4243,Block,Omarga,LGD,488,District,4243,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +LGD,2370,Block,Onda,LGD,305,District,2370,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,5139,Block,Ongole Rural,LGD,517,District,5139,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,7430,Block,Ongole Urban,LGD,517,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,1766,Block,Ongpangkong,LGD,246,District,1766,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,5989,Block,Ongpangkong (N),LGD,246,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,854,Block,Orai,LGD,151,District,854,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +LGD,5815,Block,Orathanadu,LGD,586,District,5815,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,3416,Block,Orchha,LGD,722,District,3416,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +LGD,3368,Block,Orchha,LGD,637,District,3368,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false, +LGD,2685,Block,Ormanjhi,LGD,339,District,2685,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,5268,Block,Orvakal,LGD,511,District,5268,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,568,Block,Osian,LGD,107,District,568,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,5865,Block,Ottapidaram,LGD,594,District,5865,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,5647,Block,Ottappalam,LGD,563,District,5647,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +LGD,5910,Block,Oulgaret,LGD,600,District,5910,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +LGD,2905,Block,Oupada,LGD,346,District,2905,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,5295,Block,Owk,LGD,755,District,5295,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1654,Block,Oyan Circle,LGD,232,District,1654,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +LGD,5189,Block,Ozili,LGD,752,District,5189,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1218,Block,Pach Deuri,LGD,197,District,1218,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,169,Block,Pachhad,LGD,24,District,169,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,2133,Block,Pachim Nalbari,LGD,298,District,2133,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +LGD,4818,Block,Pachipenta,LGD,743,District,4818,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3973,Block,Pachora,LGD,478,District,3973,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,3569,Block,Pachore,LGD,422,District,3569,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,579,Block,Pachpadra,LGD,775,District,579,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,682,Block,Pachpahar,LGD,105,District,682,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,7349,Block,Pachpedi,LGD,375,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,1237,Block,Pachrukhi,LGD,222,District,1237,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,2757,Block,Padampur,LGD,347,District,2757,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,460,Block,Padampur,LGD,100,District,460,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,6294,Block,Padara,LGD,694,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,3802,Block,Paddhari,LGD,457,District,3802,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,4847,Block,Paderu,LGD,745,District,4847,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,123,Block,Padhar,LGD,22,District,123,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,2646,Block,Padma,LGD,332,District,2646,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,4864,Block,Padmanabham,LGD,520,District,4864,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,3185,Block,Padmapur,LGD,370,District,3185,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,3906,Block,Padra,LGD,461,District,3906,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,955,Block,Padrauna,LGD,160,District,955,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +LGD,2627,Block,Padwa,LGD,338,District,2627,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,5261,Block,Pagidyala,LGD,755,District,5261,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,53,Block,Pahalgam,LGD,1,District,53,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,505,Block,Pahari,LGD,767,District,505,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,1044,Block,Paharpur,LGD,213,District,1044,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,6194,Block,Pahloo,LGD,622,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +LGD,2755,Block,Paikmal,LGD,347,District,2755,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,6157,Block,Pailani,LGD,128,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +LGD,4141,Block,Paithan,LGD,469,District,4141,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,6955,Block,Pajhota,LGD,24,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,5396,Block,Pakala,LGD,752,District,5396,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2719,Block,Pakar Tanr,LGD,342,District,2719,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,2576,Block,Pakaur,LGD,337,District,2576,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +LGD,3354,Block,Pakhanjur,LGD,381,District,3354,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,1581,Block,Pakke Kessang Eac,LGD,723,District,1581,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false, +LGD,6848,Block,Pakoti Circle,LGD,231,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,1515,Block,Pakribarawan,LGD,210,District,1515,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,1052,Block,Pakri Dayal,LGD,213,District,1052,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,2578,Block,Pakuria,LGD,337,District,2578,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +LGD,1554,Block,Pakyong,LGD,741,District,1554,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +LGD,4977,Block,Palacoderu,LGD,523,District,4977,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,4988,Block,Palacole,LGD,523,District,4988,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,6301,Block,Palakeedu,LGD,696,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,5649,Block,Palakkad,LGD,563,District,5649,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +LGD,5885,Block,Palakkodu,LGD,571,District,5885,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +LGD,4784,Block,Palakonda,LGD,743,District,4784,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4697,Block,Palakurthy,LGD,689,District,4697,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,6215,Block,Palakurthy,LGD,682,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,3000,Block,Palalahada,LGD,344,District,3000,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +LGD,4123,Block,Palam,LGD,489,District,4123,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,5422,Block,Palamaner,LGD,503,District,5422,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,111,Block,Palampur,LGD,18,District,111,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,5760,Block,Palani,LGD,572,District,5760,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,3739,Block,Palanpur,LGD,441,District,3739,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,7436,Block,Palanpur City,LGD,441,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,3327,Block,Palari,LGD,644,District,3327,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,4775,Block,Palasa,LGD,519,District,4775,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,5432,Block,Palasamudram,LGD,503,District,5432,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,2125,Block,Palasbari,LGD,291,District,2125,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,1119,Block,Palasi,LGD,188,District,1119,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,5877,Block,Palayamkottai,LGD,592,District,5877,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +LGD,7212,Block,Paldewal,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,3420,Block,Palera,LGD,434,District,3420,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,4163,Block,Palghar,LGD,665,District,4163,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +LGD,6418,Block,Palhawas St,LGD,72,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +LGD,3274,Block,Pali,LGD,383,District,3274,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,3485,Block,Pali,LGD,436,District,3485,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +LGD,601,Block,Pali,LGD,111,District,601,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +LGD,6881,Block,Pali,LGD,161,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +LGD,798,Block,Palia,LGD,159,District,798,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +LGD,1407,Block,Paliganj,LGD,212,District,1407,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,6250,Block,Palimela,LGD,687,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,1703,Block,Palin Circle,LGD,677,District,1703,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false, +LGD,3858,Block,Palitana,LGD,443,District,3858,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,2717,Block,Palkot,LGD,331,District,2717,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,5905,Block,Palladam,LGD,634,District,5905,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,6629,Block,Pallavaram,LGD,730,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +LGD,1660,Block,Palling Circle,LGD,240,District,1660,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,5697,Block,Pallipattu,LGD,589,District,5697,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,7213,Block,Pallu,LGD,101,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +LGD,2554,Block,Palojori,LGD,324,District,2554,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,3939,Block,Palsana,LGD,459,District,3939,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,4297,Block,Palus,LGD,493,District,4297,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,4737,Block,Palvoncha,LGD,690,District,4737,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,427,Block,Palwal,LGD,619,District,427,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +LGD,7519,Block,Palwancha,LGD,685,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,5028,Block,Pamarru,LGD,510,District,5028,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,3283,Block,Pamgarh,LGD,379,District,3283,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,5315,Block,Pamidi,LGD,502,District,5315,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5026,Block,Pamidimukkala,LGD,510,District,5026,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,48,Block,Pampore,LGD,11,District,48,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +LGD,5266,Block,Pamulapadu,LGD,755,District,5266,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5146,Block,Pamur,LGD,790,District,5146,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3632,Block,Panagar,LGD,411,District,3632,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,1249,Block,Panapur,LGD,218,District,1249,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,6735,Block,Panchari,LGD,14,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +LGD,357,Block,Panchkula,LGD,70,District,357,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +LGD,2405,Block,Panchla,LGD,313,District,2405,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,6899,Block,Panchrukhi,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,2273,Block,Pandabeswar,LGD,704,District,2273,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +LGD,1418,Block,Pandarak,LGD,212,District,1418,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,3301,Block,Pandariya,LGD,382,District,3301,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +LGD,1094,Block,Pandaul,LGD,206,District,1094,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,5548,Block,Pandavapura,LGD,544,District,5548,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +LGD,3718,Block,Pandhana,LGD,405,District,3718,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,4249,Block,Pandharpur,LGD,496,District,4249,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,3658,Block,Pandhurna,LGD,785,District,3658,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,6869,Block,Pandit Deendayal Upadhyay Nagar,LGD,135,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +LGD,2622,Block,Pandu,LGD,338,District,2622,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,2344,Block,Pandua,LGD,312,District,2344,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,4601,Block,Pangal,LGD,693,District,4601,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,1692,Block,Pangchao Sdo,LGD,666,District,1692,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false, +LGD,83,Block,Pangi,LGD,16,District,83,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,1645,Block,Pangin Eac,LGD,679,District,1645,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,6951,Block,Pangna,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,4284,Block,Panhala,LGD,480,District,4284,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,375,Block,Panipat,LGD,71,District,375,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +LGD,6678,Block,Panisagar,LGD,270,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +LGD,6940,Block,Panjehra,LGD,25,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,6358,Block,Pankhu,LGD,53,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,2630,Block,Panki,LGD,338,District,2630,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,3436,Block,Panna,LGD,420,District,3436,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,7463,Block,Panposh,LGD,373,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,5788,Block,Panruti,LGD,570,District,5788,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,3559,Block,Pansemal,LGD,393,District,3559,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,2470,Block,Panskura,LGD,317,District,2470,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,1824,Block,Panso,LGD,736,District,1824,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,6804,Block,Pantha Chowk,LGD,13,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +LGD,5754,Block,Panthalur,LGD,587,District,5754,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +LGD,4173,Block,Panvel,LGD,491,District,4173,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,5280,Block,Panyam,LGD,755,District,5280,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1859,Block,Paomata,LGD,257,District,1859,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +LGD,173,Block,Paonta Sahib,LGD,24,District,173,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,6924,Block,Paota,LGD,782,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5812,Block,Papanasam,LGD,586,District,5812,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,4455,Block,Papannapet,LGD,513,District,4455,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,3193,Block,Paparahandi,LGD,366,District,3193,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,7367,Block,Paparda,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,5887,Block,Pappireddipatti,LGD,571,District,5887,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +LGD,2380,Block,Para,LGD,321,District,2380,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,1496,Block,Paraiya,LGD,196,District,1496,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,2987,Block,Parajang,LGD,352,District,2987,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +LGD,3105,Block,Paralakhemundi,LGD,353,District,3105,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +LGD,5856,Block,Paramakudi,LGD,583,District,5856,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,5748,Block,Paramathi-Velur,LGD,580,District,5748,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +LGD,4236,Block,Paranda,LGD,488,District,4236,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +LGD,1602,Block,Parang Circle,LGD,237,District,1602,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,3652,Block,Parasia,LGD,399,District,3652,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,3675,Block,Paraswada,LGD,392,District,3675,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,4870,Block,Paravada,LGD,744,District,4870,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5659,Block,Paravur,LGD,555,District,5659,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +LGD,1389,Block,Parbalpur,LGD,209,District,1389,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,564,Block,Parbatsar,LGD,768,District,564,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,1328,Block,Parbatta,LGD,202,District,1328,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +LGD,4118,Block,Parbhani,LGD,489,District,4118,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,6841,Block,Parbuk Sdo,LGD,235,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false, +LGD,5108,Block,Parchur,LGD,750,District,5108,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7601,Block,Pardi,LGD,462,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,4540,Block,Pargi,LGD,698,District,4540,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,6705,Block,Pargwal,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,5355,Block,Parigi,LGD,754,District,5355,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1067,Block,Parihar,LGD,221,District,1067,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,4679,Block,Parkal,LGD,686,District,4679,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,4224,Block,Parli,LGD,470,District,4224,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,4211,Block,Parner,LGD,466,District,4211,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,3970,Block,Parola,LGD,478,District,3970,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,1201,Block,Paroo,LGD,208,District,1201,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,1263,Block,Parsa,LGD,218,District,1263,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,1071,Block,Parsauni,LGD,221,District,1071,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,4027,Block,Parseoni,LGD,484,District,4027,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,4131,Block,Partur,LGD,479,District,4131,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +LGD,4714,Block,Parvathagiri,LGD,522,District,4714,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,4812,Block,Parvathipuram,LGD,743,District,4812,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7126,Block,Parwanoo,LGD,25,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,7237,Block,Pasan,LGD,383,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,6118,Block,Pasighat Hq,LGD,232,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +LGD,6846,Block,Passa Valley Circle,LGD,723,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false, +LGD,1053,Block,Patahi,LGD,213,District,1053,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,2604,Block,Patamda,LGD,327,District,2604,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,7227,Block,Patan,LGD,114,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,3747,Block,Patan,LGD,455,District,3747,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,4264,Block,Patan,LGD,494,District,4264,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,3629,Block,Patan,LGD,411,District,3629,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,3318,Block,Patan,LGD,378,District,3318,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +LGD,2626,Block,Patan,LGD,338,District,2626,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,2843,Block,Patana,LGD,361,District,2843,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,4494,Block,Patancheru,LGD,691,District,4494,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,7433,Block,Patan City,LGD,455,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,3835,Block,Patan-Veraval,LGD,675,District,3835,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +LGD,1176,Block,Patarghat,LGD,216,District,1176,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,416,Block,Pataudi,LGD,62,District,416,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,448,Block,Patel Nagar,LGD,77,District,448,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.681583,77.224161,inherited:District,77.167901,28.571167,77.303197,28.788141,SOI_Districts,2023-12-11,false, +LGD,1274,Block,Patepur,LGD,224,District,1274,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,3455,Block,Patera,LGD,400,District,3455,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +LGD,1269,Block,Paterhi Belsar,LGD,224,District,1269,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,3262,Block,Pathalgaon,LGD,380,District,3262,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,2523,Block,Pathalgora,LGD,323,District,2523,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,5686,Block,Pathanapuram,LGD,559,District,5686,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +LGD,201,Block,Pathankot,LGD,662,District,201,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +LGD,4773,Block,Pathapatnam,LGD,519,District,4773,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,4208,Block,Pathardi,LGD,466,District,4208,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,2559,Block,Pathargama,LGD,330,District,2559,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,6971,Block,Pathari,LGD,437,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,3457,Block,Patharia,LGD,400,District,3457,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +LGD,3293,Block,Pathariya,LGD,647,District,3293,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false, +LGD,2104,Block,Patharkandi,LGD,293,District,2104,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +LGD,2440,Block,Patharpratima,LGD,304,District,2440,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,2571,Block,Pathna,LGD,340,District,2571,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,2146,Block,Pathorighat (Pt),LGD,283,District,2146,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +LGD,4120,Block,Pathri,LGD,489,District,4120,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,335,Block,Pati,LGD,48,District,335,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +LGD,3555,Block,Pati,LGD,393,District,3555,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,253,Block,Patiala,LGD,41,District,253,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +LGD,1012,Block,Patiyali,LGD,633,District,1012,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +LGD,7447,Block,Patliputra,LGD,212,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,7309,Block,Patna,LGD,384,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +LGD,7448,Block,Patna City,LGD,212,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,3144,Block,Patnagarh,LGD,345,District,3144,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,1400,Block,Patna Rural,LGD,212,District,1400,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,4216,Block,Patoda,LGD,470,District,4216,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,7368,Block,Patodi,LGD,775,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,1292,Block,Patori,LGD,217,District,1292,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,7585,Block,Patparganj,LGD,78,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false, +LGD,251,Block,Patran,LGD,41,District,251,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +LGD,7483,Block,Patrapur,LGD,354,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,2365,Block,Patrasayer,LGD,305,District,2365,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,2660,Block,Patratu,LGD,607,District,2660,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +LGD,1880,Block,Patsoi,LGD,256,District,1880,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +LGD,5940,Block,Pattambi,LGD,563,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +LGD,2926,Block,Pattamundai,LGD,360,District,2926,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,34,Block,Pattan,LGD,3,District,34,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,260,Block,Patti,LGD,609,District,260,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +LGD,883,Block,Patti,LGD,174,District,883,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +LGD,5290,Block,Pattikonda,LGD,511,District,5290,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5816,Block,Pattukkottai,LGD,586,District,5816,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,6140,Block,Patuk Adc,LGD,233,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,3993,Block,Patur,LGD,467,District,3993,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +LGD,4042,Block,Pauni,LGD,471,District,4042,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +LGD,307,Block,Pauri,LGD,52,District,307,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,5534,Block,Pavagada,LGD,548,District,5534,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,3440,Block,Pawai,LGD,420,District,3440,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,6363,Block,Pawkidevi,LGD,55,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,6861,Block,Payagpur,LGD,125,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +LGD,4881,Block,Payakaraopeta,LGD,744,District,4881,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,226,Block,Payal,LGD,36,District,226,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +LGD,1612,Block,Payeng Circle,LGD,241,District,1612,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,6607,Block,Payum Circle,LGD,679,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,6599,Block,Payyannur,LGD,557,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +LGD,5294,Block,Peapully,LGD,755,District,5294,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4602,Block,Pebbair,LGD,693,District,4602,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,4842,Block,Peda Bayalu,LGD,745,District,4842,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5144,Block,Pedacherlo Palle,LGD,790,District,5144,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4868,Block,Pedagantyada,LGD,520,District,4868,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,5075,Block,Pedakakani,LGD,506,District,5075,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,5057,Block,Pedakurapadu,LGD,751,District,5057,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5030,Block,Pedana,LGD,510,District,5030,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,5082,Block,Pedanandipadu,LGD,506,District,5082,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,4965,Block,Pedapadu,LGD,748,District,4965,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5022,Block,Pedaparupudi,LGD,510,District,5022,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,4915,Block,Pedapudi,LGD,746,District,4915,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4964,Block,Pedavegi,LGD,748,District,4964,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4658,Block,Pedda Adesherlapally,LGD,514,District,4658,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,5101,Block,Peddaaraveedu,LGD,790,District,5101,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5253,Block,Pedda Kadubur,LGD,511,District,5253,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,6245,Block,Pedda Kodapgal,LGD,685,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,4599,Block,Peddakothapally,LGD,694,District,4599,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,4594,Block,Peddamandadi,LGD,693,District,4594,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,5369,Block,Peddamandyam,LGD,753,District,5369,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5201,Block,Peddamudiam,LGD,504,District,5201,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4408,Block,Peddapalli,LGD,682,District,4408,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,5416,Block,Peddapanjani,LGD,503,District,5416,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,5314,Block,Peddapappur,LGD,502,District,5314,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,4903,Block,Peddapuram,LGD,746,District,4903,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5390,Block,Pedda Thippasamudram,LGD,753,District,5390,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5311,Block,Peddavaduguru,LGD,502,District,5311,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,6256,Block,Peddavangara,LGD,688,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,4659,Block,Peddavoora,LGD,514,District,4659,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4533,Block,Peddemul,LGD,698,District,4533,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,1851,Block,Pedi (Ngwalwa),LGD,613,District,1851,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +LGD,7051,Block,Pedong,LGD,702,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +LGD,697,Block,Peepalkhoont,LGD,629,District,697,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +LGD,616,Block,Peeplu,LGD,116,District,616,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,5667,Block,Peerumade,LGD,556,District,5667,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +LGD,608,Block,Peesangan,LGD,86,District,608,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,4421,Block,Pegadapalli,LGD,681,District,4421,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,365,Block,Pehowa,LGD,68,District,365,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +LGD,5195,Block,Pellakur,LGD,752,District,5195,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6206,Block,Pembi,LGD,680,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,4176,Block,Pen,LGD,491,District,4176,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,5244,Block,Penagalur,LGD,752,District,5244,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5024,Block,Penamaluru,LGD,510,District,5024,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,6313,Block,Penchicalpet,LGD,699,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,5232,Block,Pendlimarry,LGD,504,District,5232,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,3289,Block,Pendra,LGD,734,District,3289,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false, +LGD,3287,Block,Pendra Road,LGD,734,District,3287,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false, +LGD,4862,Block,Pendurthi,LGD,520,District,4862,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,5889,Block,Pennagaram,LGD,571,District,5889,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +LGD,4643,Block,Penpahad,LGD,696,District,4643,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,4969,Block,Pentapadu,LGD,523,District,4969,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,6292,Block,Pentlavelli,LGD,694,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,4752,Block,Penuballi,LGD,509,District,4752,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,4992,Block,Penuganchiprolu,LGD,749,District,4992,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4980,Block,Penugonda,LGD,523,District,4980,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,5356,Block,Penukonda,LGD,754,District,5356,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4978,Block,Penumantra,LGD,523,District,4978,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,5409,Block,Penumur,LGD,503,District,5409,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,5839,Block,Peraiyur,LGD,578,District,5839,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,5973,Block,Perambalur,LGD,581,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +LGD,7166,Block,Perambur,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,4971,Block,Peravali,LGD,505,District,4971,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,5817,Block,Peravurani,LGD,586,District,5817,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,1857,Block,Peren,LGD,613,District,1857,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +LGD,5643,Block,Perinthalmanna,LGD,562,District,5643,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +LGD,5843,Block,Periyakulam,LGD,588,District,5843,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +LGD,6663,Block,Pernambut,LGD,595,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +LGD,5609,Block,Pernem,LGD,551,District,5609,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +LGD,5752,Block,Perundurai,LGD,573,District,5752,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,5957,Block,Perur,LGD,569,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,2598,Block,Peshrar,LGD,336,District,2598,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +LGD,2592,Block,Peterwar,LGD,322,District,2592,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +LGD,4150,Block,Peth,LGD,487,District,4150,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,6618,Block,Pethanaickanpalayam,LGD,584,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,3865,Block,Petlad,LGD,440,District,3865,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,3707,Block,Petlawad,LGD,412,District,3707,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +LGD,1809,Block,Pfutsero,LGD,248,District,1809,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,4934,Block,P.Gannavaram,LGD,747,District,4934,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,544,Block,Phagi,LGD,102,District,544,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,208,Block,Phagwara,LGD,35,District,208,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +LGD,7385,Block,Phalasiyan,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,567,Block,Phalodi,LGD,772,District,567,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,7214,Block,Phalsoond,LGD,103,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +LGD,4258,Block,Phaltan,LGD,494,District,4258,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,2164,Block,Phansidewa,LGD,309,District,2164,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,3359,Block,Pharasgaon,LGD,643,District,3359,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +LGD,946,Block,Pharenda,LGD,164,District,946,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +LGD,1707,Block,Phassang Circle,LGD,233,District,1707,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,1801,Block,Phek Sadar,LGD,248,District,1801,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,1054,Block,Phenhara,LGD,213,District,1054,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,6757,Block,Phigsoo,LGD,4,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,211,Block,Phillaur,LGD,34,District,211,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +LGD,5072,Block,Phirangipuram,LGD,506,District,5072,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,3118,Block,Phiringia,LGD,359,District,3118,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,1805,Block,Phokhungri,LGD,788,District,1805,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1752,Block,Phomching,LGD,247,District,1752,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,6067,Block,Phooliya Kalan,LGD,92,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,1804,Block,Phor,LGD,788,District,1804,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,4136,Block,Phulambri,LGD,469,District,4136,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,542,Block,Phulera (Hq.Sambhar),LGD,102,District,542,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,1351,Block,Phulidumar,LGD,190,District,1351,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,1903,Block,Phullen,LGD,727,District,1903,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +LGD,2090,Block,Phuloni,LGD,292,District,2090,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +LGD,1087,Block,Phulparas,LGD,206,District,1087,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,889,Block,Phulpur,LGD,120,District,889,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +LGD,968,Block,Phulpur,LGD,123,District,968,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +LGD,1402,Block,Phulwari,LGD,212,District,1402,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,1220,Block,Phulwaria,LGD,197,District,1220,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,1890,Block,Phungyar,LGD,717,District,1890,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false, +LGD,5401,Block,Pichatur,LGD,752,District,5401,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7412,Block,Pichhor,LGD,407,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,3413,Block,Pichhore,LGD,432,District,3413,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,6590,Block,Pidi Circle,LGD,725,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false, +LGD,5047,Block,Piduguralla,LGD,751,District,5047,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7386,Block,Pilani,LGD,106,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,5386,Block,Pileru,LGD,753,District,5386,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,469,Block,Pilibanga,LGD,101,District,469,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +LGD,790,Block,Pilibhit,LGD,173,District,790,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +LGD,6445,Block,Pillukhera St,LGD,65,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +LGD,4725,Block,Pinapaka,LGD,690,District,4725,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,995,Block,Pindra,LGD,187,District,995,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +LGD,594,Block,Pindwara,LGD,115,District,594,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +LGD,2463,Block,Pingla,LGD,318,District,2463,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,665,Block,Pipalda,LGD,109,District,665,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +LGD,1366,Block,Pipariya,LGD,204,District,1366,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +LGD,7324,Block,Pipariya,LGD,382,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +LGD,3618,Block,Pipariya,LGD,409,District,3618,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,6051,Block,Pipar Shahar,LGD,107,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,3057,Block,Pipili,LGD,369,District,3057,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,3500,Block,Piploda,LGD,423,District,3500,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,2619,Block,Pipra,LGD,338,District,2619,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,1110,Block,Pipra,LGD,223,District,1110,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,7036,Block,Piprai,LGD,391,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +LGD,1050,Block,Piprakothi,LGD,213,District,1050,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1059,Block,Piprarhi,LGD,220,District,1059,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +LGD,1020,Block,Piprasi,LGD,211,District,1020,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,1715,Block,Pipsorang Circle,LGD,677,District,1715,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false, +LGD,1587,Block,Pipu Dipu Circle,LGD,231,District,1587,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,683,Block,Pirawa,LGD,105,District,683,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,5569,Block,Piriyapatna,LGD,545,District,5569,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,1429,Block,Piro,LGD,193,District,1429,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,1335,Block,Pirpainti,LGD,192,District,1335,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,2544,Block,Pirtanr,LGD,329,District,2544,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,6119,Block,Pistana Circle,LGD,786,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,7042,Block,Pithampur,LGD,403,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,4911,Block,Pithapuram,LGD,746,District,4911,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3342,Block,Pithora,LGD,385,District,3342,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +LGD,320,Block,Pithoragarh,LGD,53,District,320,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,4384,Block,Pitlam,LGD,685,District,4384,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,5091,Block,Pittalavanipalem,LGD,750,District,5091,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6121,Block,Piyong Circle,LGD,678,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false, +LGD,6100,Block,Pizirang Veo Circle,LGD,723,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false, +LGD,5893,Block,Pochampalli,LGD,577,District,5893,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +LGD,5176,Block,Podalakur,LGD,515,District,5176,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5120,Block,Podili,LGD,790,District,5120,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4982,Block,Poduru,LGD,523,District,4982,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,6760,Block,Pogal Paristan,LGD,621,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +LGD,3407,Block,Pohri,LGD,432,District,3407,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,575,Block,Pokaran,LGD,103,District,575,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +LGD,286,Block,Pokhari,LGD,47,District,286,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,4186,Block,Poladpur,LGD,491,District,4186,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,4800,Block,Polaki,LGD,519,District,4800,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,3081,Block,Polasara,LGD,354,District,3081,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,4949,Block,Polavaram,LGD,748,District,4949,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6511,Block,Polaykala,LGD,430,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +LGD,2347,Block,Polba - Dadpur,LGD,312,District,2347,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,5899,Block,Pollachi,LGD,569,District,5899,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,6845,Block,Polosang Circle,LGD,233,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,5724,Block,Polur,LGD,593,District,5724,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,4073,Block,Pombhurna,LGD,473,District,4073,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,5614,Block,Ponda,LGD,552,District,5614,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +LGD,7270,Block,Pondi(Bachra),LGD,384,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +LGD,4803,Block,Ponduru,LGD,519,District,4803,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,5143,Block,Ponnaluru,LGD,517,District,5143,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,5823,Block,Ponnamaravathi,LGD,582,District,5823,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,7125,Block,Ponnampet,LGD,541,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +LGD,5646,Block,Ponnani,LGD,562,District,5646,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +LGD,5694,Block,Ponneri,LGD,589,District,5694,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,5084,Block,Ponnur,LGD,506,District,5084,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,195,Block,Poo,LGD,19,District,195,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +LGD,474,Block,Poogal,LGD,93,District,474,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,5699,Block,Poonamallee,LGD,589,District,5699,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,337,Block,Poornagiri,LGD,48,District,337,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +LGD,4838,Block,Poosapatirega,LGD,521,District,4838,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,7445,Block,Porabandar City,LGD,456,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +LGD,3822,Block,Porbandar,LGD,456,District,3822,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +LGD,2562,Block,Poreyahat,LGD,330,District,2562,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,1885,Block,Porompat,LGD,255,District,1885,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +LGD,3386,Block,Porsa,LGD,417,District,3386,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +LGD,5923,Block,Port Blair,LGD,602,District,5923,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +LGD,5208,Block,Porumamilla,LGD,504,District,5208,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,6088,Block,Poshina,LGD,458,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +LGD,2477,Block,Potashpur - I,LGD,317,District,2477,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2478,Block,Potashpur - II,LGD,317,District,2478,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,7534,Block,Pothangal,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,1124,Block,Pothia,LGD,203,District,1124,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +LGD,2608,Block,Potka,LGD,327,District,2608,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +LGD,3218,Block,Pottangi,LGD,363,District,3218,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,7568,Block,Pounda,LGD,411,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,3273,Block,Poundi-Uproda,LGD,383,District,3273,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +LGD,6742,Block,Pouni,LGD,627,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,793,Block,Powayan,LGD,180,District,793,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +LGD,7022,Block,Prabhatpttan,LGD,394,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,6905,Block,Pragpur,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,1149,Block,Pranpur,LGD,201,District,1149,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,3767,Block,Prantij,LGD,458,District,3767,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +LGD,1104,Block,Pratapganj,LGD,223,District,1104,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,699,Block,Pratapgarh,LGD,629,District,699,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +LGD,7387,Block,Pratapgarh,LGD,87,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,882,Block,Pratapgarh,LGD,174,District,882,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +LGD,295,Block,Pratapnagar,LGD,55,District,295,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,6417,Block,Pratap Nagar St,LGD,76,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +LGD,3239,Block,Pratappur,LGD,648,District,3239,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,2515,Block,Pratappur,LGD,323,District,2515,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,5081,Block,Prathipadu,LGD,506,District,5081,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,4900,Block,Prathipadu,LGD,746,District,4900,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3246,Block,Premnagar,LGD,648,District,3246,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,3417,Block,Prithvipur,LGD,722,District,3417,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +LGD,5214,Block,Proddutur,LGD,504,District,5214,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,7415,Block,Pub Mangaldai,LGD,283,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +LGD,1616,Block,Puchi Geko Circle,LGD,718,District,1616,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false, +LGD,5909,Block,Puducherry,LGD,600,District,5909,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +LGD,5821,Block,Pudukkottai,LGD,582,District,5821,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,4541,Block,Pudur,LGD,698,District,4541,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,6676,Block,Pugalur,LGD,576,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +LGD,1775,Block,Pughoboto,LGD,251,District,1775,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,7455,Block,Puintala,LGD,345,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,6942,Block,Pukhri,LGD,16,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,5395,Block,Pulicherla,LGD,503,District,5395,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,5219,Block,Pulivendula,LGD,504,District,5219,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4478,Block,Pulkal,LGD,691,District,4478,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,6349,Block,Pulla Gumdesh,LGD,48,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +LGD,5098,Block,Pullalacheruvu,LGD,790,District,5098,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5247,Block,Pullampeta,LGD,752,District,5247,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,51,Block,Pulwama,LGD,11,District,51,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +LGD,6584,Block,Pumao Circle,LGD,666,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false, +LGD,6521,Block,Puna,LGD,459,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,424,Block,Punahana,LGD,604,District,424,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +LGD,5947,Block,Punalur,LGD,559,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +LGD,3717,Block,Punasa,LGD,405,District,3717,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +LGD,2388,Block,Puncha,LGD,321,District,2388,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,4194,Block,Pune City,LGD,490,District,4194,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,5415,Block,Punganuru,LGD,753,District,5415,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1841,Block,Pungro,LGD,614,District,1841,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +LGD,1410,Block,Punpun,LGD,212,District,1410,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,1077,Block,Pupri,LGD,221,District,1077,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,1168,Block,Puraini,LGD,205,District,1168,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,7418,Block,Purakhasia,LGD,663,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false, +LGD,4196,Block,Purandhar,LGD,490,District,4196,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,792,Block,Puranpur,LGD,173,District,792,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +LGD,7167,Block,Purasawalkam,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,278,Block,Puraula,LGD,57,District,278,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,2283,Block,Purbasthali - I,LGD,306,District,2283,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2284,Block,Purbasthali - II,LGD,306,District,2284,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2580,Block,Purbi Tundi*,LGD,325,District,2580,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,7467,Block,Puri,LGD,369,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,4124,Block,Purna,LGD,489,District,4124,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,1058,Block,Purnahiya,LGD,220,District,1058,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +LGD,1134,Block,Purnia East,LGD,214,District,1134,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,2341,Block,Pursura,LGD,312,District,2341,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,1860,Block,Purul,LGD,257,District,1860,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +LGD,2387,Block,Purulia - I,LGD,321,District,2387,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,2379,Block,Purulia - II,LGD,321,District,2379,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,3089,Block,Purushottampur,LGD,354,District,3089,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,817,Block,Purwa,LGD,186,District,817,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +LGD,1289,Block,Pusa,LGD,217,District,1289,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,4085,Block,Pusad,LGD,500,District,4085,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,6655,Block,Pushkar,LGD,86,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,3696,Block,Pushparajgarh,LGD,390,District,3696,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +LGD,3268,Block,Pusour,LGD,386,District,3268,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,5410,Block,Puthalapattu,LGD,503,District,5410,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,5326,Block,Putlur,LGD,502,District,5326,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5357,Block,Puttaparthy,LGD,754,District,5357,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5407,Block,Puttur,LGD,752,District,5407,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5564,Block,Puttur,LGD,534,District,5564,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,1995,Block,Pynursla,LGD,274,District,1995,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,7205,Block,Qalamabad,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,6788,Block,Qaziabad (Kralgund),LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,6817,Block,Qazigund,LGD,1,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,6773,Block,Qila Darhal,LGD,12,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,6193,Block,Qoimoh,LGD,622,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +LGD,5617,Block,Quepem,LGD,793,District,5617,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +LGD,4518,Block,Qutballapur,LGD,700,District,4518,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,7543,Block,Raah,LGD,789,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,7063,Block,Rabakavi Banahatti,LGD,524,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,7177,Block,Rabdang,LGD,225,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +LGD,5132,Block,Racherla,LGD,790,District,5132,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6474,Block,Radaur,LGD,76,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +LGD,4289,Block,Radhanagari,LGD,480,District,4289,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,3745,Block,Radhanpur,LGD,455,District,3745,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,5880,Block,Radhapuram,LGD,592,District,5880,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +LGD,825,Block,Rae Bareli,LGD,175,District,825,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +LGD,33,Block,Rafiabad,LGD,3,District,33,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,1479,Block,Rafiganj,LGD,189,District,1479,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +LGD,6129,Block,Raga Adc,LGD,718,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false, +LGD,3679,Block,Raghogarh,LGD,406,District,3679,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +LGD,1279,Block,Raghopur,LGD,224,District,1279,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,1105,Block,Raghopur,LGD,223,District,1105,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,4757,Block,Raghunadhapalem,LGD,509,District,4757,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,7513,Block,Raghunathapur,LGD,355,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +LGD,2227,Block,Raghunathganj - I,LGD,319,District,2227,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2228,Block,Raghunathganj - II,LGD,319,District,2228,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,7257,Block,Raghunathnagar,LGD,649,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,1244,Block,Raghunathpur,LGD,222,District,1244,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,2382,Block,Raghunathpur - I,LGD,321,District,2382,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,2381,Block,Raghunathpur - II,LGD,321,District,2381,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,7111,Block,Raghurajnagar (Nagriya),LGD,426,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +LGD,4698,Block,Ragunathpally,LGD,689,District,4698,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,2036,Block,Raha,LGD,297,District,2036,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +LGD,3448,Block,Rahatgarh,LGD,425,District,3448,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,2687,Block,Rahe,LGD,339,District,2687,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,4204,Block,Rahta,LGD,466,District,4204,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,1382,Block,Rahui,LGD,209,District,1382,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,4210,Block,Rahuri,LGD,466,District,4210,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,6932,Block,Rahuwas,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,5461,Block,Raichur,LGD,546,District,5461,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +LGD,2716,Block,Raidih,LGD,331,District,2716,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,2196,Block,Raiganj,LGD,311,District,2196,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +LGD,3267,Block,Raigarh,LGD,386,District,3267,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,3187,Block,Raighar,LGD,366,District,3187,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,4395,Block,Raikal,LGD,681,District,4395,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,3126,Block,Raikia,LGD,359,District,3126,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,4472,Block,Raikode,LGD,691,District,4472,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,229,Block,Raikot,LGD,36,District,229,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +LGD,644,Block,Railmagra,LGD,112,District,644,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,2296,Block,Raina - I,LGD,306,District,2296,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,2298,Block,Raina - II,LGD,306,District,2298,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +LGD,6283,Block,Raipole,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,6925,Block,Raipur,LGD,105,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,598,Block,Raipur,LGD,774,District,598,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,632,Block,Raipur,LGD,92,District,632,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,2376,Block,Raipur,LGD,305,District,2376,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,3332,Block,Raipur,LGD,387,District,3332,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +LGD,3442,Block,Raipura,LGD,420,District,3442,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,3480,Block,Raipur Karchuliyan,LGD,424,District,3480,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,6411,Block,Raipur Rani,LGD,70,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +LGD,2797,Block,Rairakhol,LGD,371,District,2797,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,2865,Block,Rairangpur,LGD,365,District,2865,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,3590,Block,Raisen,LGD,421,District,3590,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,461,Block,Raisinghnagar,LGD,100,District,461,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,6473,Block,Rai St,LGD,75,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +LGD,7359,Block,Raithal,LGD,94,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +LGD,2814,Block,Rajagangapur,LGD,373,District,2814,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,7288,Block,Raja Ka Talab,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,519,Block,Rajakhera,LGD,98,District,519,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +LGD,7388,Block,Rajaldesar,LGD,96,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,4796,Block,Rajam,LGD,521,District,4796,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,4907,Block,Rajamahendravaram Rural,LGD,505,District,4907,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,4906,Block,Rajamahendravaram Urban,LGD,505,District,4906,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,5246,Block,Rajampet,LGD,504,District,5246,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,6241,Block,Rajampet,LGD,685,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,4908,Block,Rajanagaram,LGD,505,District,4908,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,1277,Block,Raja Pakar,LGD,224,District,1277,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,5847,Block,Rajapalayam,LGD,597,District,5847,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,4615,Block,Rajapeta,LGD,697,District,4615,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,6261,Block,Rajapur,LGD,512,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +LGD,6156,Block,Rajapur,LGD,136,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false, +LGD,4274,Block,Rajapur,LGD,492,District,4274,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,2332,Block,Rajarhat,LGD,303,District,2332,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,6653,Block,Rajasingamangalam,LGD,583,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,6093,Block,Rajatalab,LGD,187,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +LGD,1524,Block,Rajauli,LGD,210,District,1524,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,1347,Block,Rajaun,LGD,190,District,1347,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,6447,Block,Rajaund St,LGD,66,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +LGD,4888,Block,Rajavommangi,LGD,791,District,4888,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4527,Block,Rajendranagar,LGD,518,District,4527,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,2166,Block,Rajganj,LGD,314,District,2166,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +LGD,502,Block,Rajgarh,LGD,87,District,502,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,6762,Block,Rajgarh,LGD,621,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +LGD,3565,Block,Rajgarh,LGD,422,District,3565,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,167,Block,Rajgarh,LGD,24,District,167,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,482,Block,Rajgarh,LGD,96,District,482,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,280,Block,Rajgarhi,LGD,57,District,280,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,1394,Block,Rajgir,LGD,209,District,1394,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,3333,Block,Rajim,LGD,645,District,3333,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +LGD,2922,Block,Rajkanika,LGD,360,District,2922,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,3803,Block,Rajkot,LGD,457,District,3803,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,6520,Block,Rajkot East,LGD,457,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,6524,Block,Rajkot South,LGD,457,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,6523,Block,Rajkot West,LGD,457,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,2569,Block,Rajmahal,LGD,340,District,2569,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,1095,Block,Rajnagar,LGD,206,District,1095,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +LGD,2258,Block,Rajnagar,LGD,307,District,2258,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,3430,Block,Rajnagar,LGD,398,District,3430,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,2923,Block,Rajnagar,LGD,360,District,2923,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +LGD,3305,Block,Rajnandgaon,LGD,388,District,3305,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +LGD,6296,Block,Rajoli,LGD,695,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,22,Block,Rajouri,LGD,12,District,22,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,449,Block,Rajouri Garden,LGD,85,District,449,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false, +LGD,6796,Block,Rajpora,LGD,11,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +LGD,3250,Block,Rajpur,LGD,649,District,3250,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,3558,Block,Rajpur,LGD,393,District,3558,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,1443,Block,Rajpur,LGD,194,District,1443,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,1464,Block,Rajpur,LGD,215,District,1464,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,6719,Block,Rajpura,LGD,624,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +LGD,254,Block,Rajpura,LGD,41,District,254,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +LGD,643,Block,Rajsamand,LGD,112,District,643,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,3849,Block,Rajula,LGD,439,District,3849,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,5202,Block,Rajupalem,LGD,504,District,5202,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,5059,Block,Rajupalem,LGD,751,District,5059,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4077,Block,Rajura,LGD,473,District,4077,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,106,Block,Rakkar,LGD,18,District,106,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,1787,Block,Ralan,LGD,250,District,1787,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,4091,Block,Ralegaon,LGD,500,District,4091,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,7004,Block,Rama,LGD,412,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +LGD,4819,Block,Ramabhadrapuram,LGD,521,District,4819,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,4924,Block,Ramachandrapuram,LGD,747,District,4924,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5398,Block,Ramachandrapuram,LGD,752,District,5398,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4423,Block,Ramadugu,LGD,508,District,4423,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,5348,Block,Ramagiri,LGD,754,District,5348,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6216,Block,Ramagiri,LGD,682,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,4399,Block,Ramagundam,LGD,682,District,4399,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,5428,Block,Ramakuppam,LGD,503,District,5428,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,5606,Block,Ramanagara,LGD,631,District,5606,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +LGD,7511,Block,Ramanaguda,LGD,370,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,5860,Block,Ramanathapuram,LGD,583,District,5860,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,4632,Block,Ramannapet,LGD,697,District,4632,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,3236,Block,Ramanujganj,LGD,649,District,3236,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,3245,Block,Ramanujnagar,LGD,648,District,3245,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,5241,Block,Ramapuram,LGD,753,District,5241,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6243,Block,Ramareddy,LGD,685,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,5414,Block,Ramasamudram,LGD,753,District,5414,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4457,Block,Ramayampet,LGD,513,District,4457,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,67,Block,Ramban,LGD,621,District,67,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +LGD,4883,Block,Rambilli,LGD,744,District,4883,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7333,Block,Rambrai,LGD,279,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false, +LGD,7238,Block,Ramchandrapur,LGD,649,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,4495,Block,Ramchandrapuram,LGD,691,District,4495,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,5442,Block,Ramdurg,LGD,527,District,5442,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,5861,Block,Rameswaram,LGD,583,District,5861,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,668,Block,Ramganj Mandi,LGD,109,District,668,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +LGD,2662,Block,Ramgarh,LGD,607,District,2662,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +LGD,6353,Block,Ramgarh,LGD,51,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,6325,Block,Ramgarh,LGD,338,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,6724,Block,Ramgarh,LGD,624,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +LGD,1446,Block,Ramgarh,LGD,200,District,1446,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,498,Block,Ramgarh,LGD,87,District,498,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,7216,Block,Ramgarh,LGD,103,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +LGD,2668,Block,Ramgarh,LGD,326,District,2668,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,1370,Block,Ramgarh Chowk,LGD,204,District,1370,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +LGD,6908,Block,Ramgarh Pachwara,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,6388,Block,Ramgarh Shekhawati,LGD,114,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,1033,Block,Ramgarhwa,LGD,213,District,1033,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,6787,Block,Ramhal (Tarathpora),LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,2512,Block,Ramkanda,LGD,328,District,2512,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,6728,Block,Ramkote,LGD,7,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +LGD,2105,Block,Ramkrishna Nagar,LGD,293,District,2105,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +LGD,2501,Block,Ramna,LGD,328,District,2501,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,343,Block,Ramnagar,LGD,51,District,343,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +LGD,1014,Block,Ramnagar,LGD,211,District,1014,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,3469,Block,Ramnagar,LGD,784,District,3469,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,74,Block,Ramnagar,LGD,14,District,74,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +LGD,897,Block,Ramnagar,LGD,129,District,897,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +LGD,2493,Block,Ramnagar - I,LGD,317,District,2493,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,2494,Block,Ramnagar - II,LGD,317,District,2494,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,4895,Block,Rampachodavaram,LGD,791,District,4895,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,177,Block,Rampur,LGD,23,District,177,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,3134,Block,Rampur,LGD,372,District,3134,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +LGD,1454,Block,Rampur,LGD,200,District,1454,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +LGD,726,Block,Rampur,LGD,176,District,726,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +LGD,7032,Block,Rampura,LGD,419,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +LGD,7391,Block,Rampura Dabri,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,244,Block,Rampura Phul,LGD,28,District,244,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +LGD,3466,Block,Rampur Baghelan,LGD,426,District,3466,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +LGD,2253,Block,Rampurhat - I,LGD,307,District,2253,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2254,Block,Rampurhat - II,LGD,307,District,2254,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,705,Block,Rampur Maniharan,LGD,177,District,705,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +LGD,3697,Block,Rampur Naikin,LGD,433,District,3697,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +LGD,900,Block,Ramsanehighat,LGD,129,District,900,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +LGD,583,Block,Ramsar,LGD,90,District,583,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,160,Block,Ramshahr,LGD,25,District,160,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,7201,Block,Ramsoo,LGD,621,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +LGD,4028,Block,Ramtek,LGD,484,District,4028,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,2312,Block,Ranaghat - I,LGD,320,District,2312,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,2313,Block,Ranaghat - II,LGD,320,District,2313,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,3710,Block,Ranapur,LGD,412,District,3710,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +LGD,3033,Block,Ranapur,LGD,367,District,3033,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +LGD,4805,Block,Ranastalam,LGD,519,District,4805,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,3823,Block,Ranavav,LGD,456,District,3823,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +LGD,4909,Block,Rangampeta,LGD,505,District,4909,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,5921,Block,Rangat,LGD,632,District,5921,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +LGD,5934,Block,Rangia,LGD,291,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +LGD,2017,Block,Rangjuli,LGD,287,District,2017,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +LGD,2155,Block,Rangli Rangliot,LGD,309,District,2155,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +LGD,6396,Block,Rangpo,LGD,741,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +LGD,1333,Block,Rangra Chowk,LGD,192,District,1333,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,6898,Block,Rani,LGD,111,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +LGD,391,Block,Rania,LGD,74,District,391,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +LGD,2702,Block,Rania,LGD,606,District,2702,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false, +LGD,2375,Block,Ranibandh,LGD,305,District,2375,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,5495,Block,Ranibennur,LGD,540,District,5495,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +LGD,884,Block,Raniganj,LGD,174,District,884,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +LGD,2271,Block,Raniganj,LGD,704,District,2271,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +LGD,1115,Block,Raniganj,LGD,188,District,1115,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,328,Block,Ranikhet,LGD,45,District,328,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,1983,Block,Ranikor,LGD,658,District,1983,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false, +LGD,2236,Block,Raninagar - I,LGD,319,District,2236,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2233,Block,Raninagar - II,LGD,319,District,2233,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2672,Block,Ranishwar,LGD,326,District,2672,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,591,Block,Raniwara,LGD,104,District,591,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,7025,Block,Ranjhi,LGD,411,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,2511,Block,Ranka,LGD,328,District,2511,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,5681,Block,Ranni,LGD,564,District,5681,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +LGD,6976,Block,Rannod,LGD,432,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,3785,Block,Ranpur,LGD,676,District,3785,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +LGD,3506,Block,Raoti,LGD,423,District,3506,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,3723,Block,Rapar,LGD,449,District,3723,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +LGD,5331,Block,Rapthadu,LGD,502,District,5331,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5175,Block,Rapur,LGD,515,District,5175,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,7369,Block,Rarah,LGD,767,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,2868,Block,Raruan,LGD,365,District,2868,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,2879,Block,Rasgobindpur,LGD,365,District,2879,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,655,Block,Rashmi,LGD,95,District,655,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,5746,Block,Rasipuram,LGD,580,District,5746,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +LGD,977,Block,Rasra,LGD,126,District,977,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +LGD,843,Block,Rasulabad,LGD,156,District,843,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +LGD,7471,Block,Rasulpur,LGD,356,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,485,Block,Ratangarh,LGD,96,District,485,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,7239,Block,Ratanpur,LGD,375,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,865,Block,Rath,LGD,149,District,865,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +LGD,386,Block,Ratia,LGD,61,District,386,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +LGD,3507,Block,Ratlam,LGD,423,District,3507,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,7009,Block,Ratlam Nagar,LGD,423,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,4271,Block,Ratnagiri,LGD,492,District,4271,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,1535,Block,Ratni Faridpur,LGD,199,District,1535,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +LGD,7106,Block,Rattihalli,LGD,540,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +LGD,2691,Block,Ratu,LGD,339,District,2691,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,2212,Block,Ratua - I,LGD,316,District,2212,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,2213,Block,Ratua - II,LGD,316,District,2213,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +LGD,7016,Block,Rau,LGD,410,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,1552,Block,Ravangla,LGD,227,District,1552,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false, +LGD,3962,Block,Raver,LGD,478,District,3962,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,4856,Block,Ravikamatham,LGD,744,District,4856,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4926,Block,Ravulapalem,LGD,747,District,4926,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,658,Block,Rawatbhata,LGD,95,District,658,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +LGD,470,Block,Rawatsar,LGD,101,District,470,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +LGD,6915,Block,Rawla,LGD,100,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,1031,Block,Raxaul,LGD,213,District,1031,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,5239,Block,Rayachoti,LGD,753,District,5239,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5305,Block,Rayadurg,LGD,502,District,5305,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,3181,Block,Rayagada,LGD,370,District,3181,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +LGD,3107,Block,Rayagada,LGD,353,District,3107,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +LGD,4703,Block,Rayaparthy,LGD,522,District,4703,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,4921,Block,Rayavaram,LGD,505,District,4921,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,5435,Block,Raybag,LGD,527,District,5435,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,1813,Block,Razieba,LGD,248,District,1813,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,4937,Block,Razole,LGD,747,District,4937,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,2803,Block,Reamal,LGD,351,District,2803,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false, +LGD,77,Block,Reasi,LGD,627,District,77,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,4327,Block,Rebbena,LGD,699,District,4327,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,1647,Block,Rebo Perging Circle,LGD,679,District,1647,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,4999,Block,Reddigudem,LGD,749,District,4999,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7226,Block,Reengus,LGD,114,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,4786,Block,Regidi Amadalavalasa,LGD,521,District,4786,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,4471,Block,Regode,LGD,513,District,4471,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,4690,Block,Regonda,LGD,687,District,4690,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,3611,Block,Rehatgaon,LGD,408,District,3611,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +LGD,3451,Block,Rehli,LGD,425,District,3451,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,3589,Block,Rehti,LGD,427,District,3589,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,1898,Block,Reiek,LGD,266,District,1898,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false, +LGD,2902,Block,Remuna,LGD,346,District,2902,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,4227,Block,Renapur,LGD,481,District,4227,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,7272,Block,Rengakharkala,LGD,382,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +LGD,2785,Block,Rengali,LGD,371,District,2785,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,6381,Block,Reni,LGD,87,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,5376,Block,Renigunta,LGD,752,District,5376,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4357,Block,Renjal,LGD,516,District,4357,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,5043,Block,Rentachintala,LGD,751,District,5043,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,170,Block,Renuka,LGD,24,District,170,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,6577,Block,Renuk Circle,LGD,229,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,596,Block,Reodar,LGD,115,District,596,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +LGD,5096,Block,Repalle,LGD,750,District,5096,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6545,Block,Rerapara,LGD,663,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false, +LGD,1970,Block,Resubelpara,LGD,656,District,1970,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false, +LGD,6286,Block,Revally,LGD,693,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,1257,Block,Revelganj,LGD,218,District,1257,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,6952,Block,Rewalsar,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,414,Block,Rewari,LGD,72,District,414,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +LGD,7287,Block,Rey,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,6101,Block,Richukrong Circle,LGD,231,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,1070,Block,Riga,LGD,221,District,1070,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,1644,Block,Riga Eac,LGD,679,District,1644,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,6355,Block,Rikhanikhal,LGD,52,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,7336,Block,Ri Muliang,LGD,279,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false, +LGD,694,Block,Rishabhdeo,LGD,117,District,694,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,305,Block,Rishikesh,LGD,49,District,305,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +LGD,4000,Block,Risod,LGD,499,District,4000,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +LGD,3621,Block,Rithi,LGD,413,District,3621,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,6069,Block,Riyan Bari,LGD,110,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,6674,Block,R K Pet,LGD,589,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,1005,Block,Robertsganj,LGD,184,District,1005,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +LGD,5349,Block,Roddam,LGD,754,District,5349,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1517,Block,Roh,LGD,210,District,1517,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,4179,Block,Roha,LGD,491,District,4179,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,600,Block,Rohat,LGD,111,District,600,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +LGD,6077,Block,Rohini,LGD,82,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false, +LGD,191,Block,Rohru,LGD,23,District,191,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,405,Block,Rohtak,LGD,73,District,405,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +LGD,1475,Block,Rohtas,LGD,215,District,1475,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,1724,Block,Roing Hq,LGD,235,District,1724,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false, +LGD,5353,Block,Rolla,LGD,754,District,5353,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4855,Block,Rolugunta,LGD,744,District,4855,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5066,Block,Rompicharla,LGD,751,District,5066,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5373,Block,Rompicherla,LGD,503,District,5373,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,3396,Block,Ron,LGD,395,District,3396,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +LGD,5469,Block,Ron,LGD,537,District,5469,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +LGD,1978,Block,Rongara,LGD,277,District,1978,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +LGD,1555,Block,Rongli,LGD,741,District,1555,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +LGD,1965,Block,Rongram,LGD,278,District,1965,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +LGD,176,Block,Ronhat,LGD,24,District,176,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,6657,Block,Roopangarh,LGD,86,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,353,Block,Roorkee,LGD,50,District,353,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +LGD,1300,Block,Rosera,LGD,217,District,1300,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,7462,Block,Rourkela,LGD,373,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,4891,Block,Rowthulapudi,LGD,746,District,4891,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,80,Block,R. S. Pura,LGD,5,District,80,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,902,Block,Rudauli,LGD,140,District,902,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +LGD,7389,Block,Rudawal,LGD,91,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +LGD,3102,Block,R.Udayagiri,LGD,353,District,3102,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +LGD,940,Block,Rudhauli,LGD,131,District,940,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +LGD,6219,Block,Rudrangi,LGD,683,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,291,Block,Rudraprayag,LGD,54,District,291,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +LGD,960,Block,Rudrapur,LGD,137,District,960,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +LGD,6030,Block,Rudrapur,LGD,56,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,5297,Block,Rudravaram,LGD,755,District,5297,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6240,Block,Rudrur,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,1653,Block,Ruksin Adc,LGD,232,District,1653,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +LGD,1630,Block,Rumgong Adc,LGD,679,District,1630,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +LGD,1073,Block,Runisaidpur,LGD,221,District,1073,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,2033,Block,Rupahi,LGD,297,District,2033,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +LGD,6560,Block,Rupa Sdo,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,1131,Block,Rupauli,LGD,214,District,1131,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,514,Block,Rupbas,LGD,91,District,514,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +LGD,264,Block,Rup Nagar,LGD,42,District,264,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +LGD,7561,Block,Saach,LGD,16,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,3390,Block,Sabalgarh,LGD,417,District,3390,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +LGD,2464,Block,Sabang,LGD,318,District,2464,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,3781,Block,Sabarmati,LGD,438,District,3781,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,4861,Block,Sabbavaram,LGD,744,District,4861,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6062,Block,Sabla,LGD,99,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,1338,Block,Sabour,LGD,192,District,1338,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,6688,Block,Sabroom,LGD,271,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +LGD,760,Block,Sadabad,LGD,163,District,760,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +LGD,4049,Block,Sadak-Arjuni,LGD,476,District,4049,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +LGD,821,Block,Sadar,LGD,162,District,821,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +LGD,6696,Block,Sadar,LGD,272,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +LGD,7575,Block,Sadar Bazar,LGD,795,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,4381,Block,Sadashivanagar,LGD,685,District,4381,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,4490,Block,Sadasivpet,LGD,691,District,4490,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,6475,Block,Sadhaura St,LGD,76,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +LGD,2059,Block,Sadiya,LGD,302,District,2059,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +LGD,459,Block,Sadulshahar,LGD,100,District,459,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,7291,Block,Sadwan,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,385,Block,Safidon,LGD,65,District,385,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +LGD,814,Block,Safipur,LGD,186,District,814,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +LGD,1601,Block,Sagalee Adc,LGD,237,District,1601,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,2438,Block,Sagar,LGD,304,District,2438,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,3449,Block,Sagar,LGD,425,District,3449,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,5515,Block,Sagar,LGD,547,District,5515,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +LGD,2230,Block,Sagardighi,LGD,319,District,2230,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,7030,Block,Sagar Nagar,LGD,425,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,3912,Block,Sagbara,LGD,452,District,3912,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +LGD,2505,Block,Sagma,LGD,328,District,2505,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +LGD,6840,Block,Sago,LGD,724,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false, +LGD,965,Block,Sagri,LGD,123,District,965,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +LGD,648,Block,Sagwara,LGD,99,District,648,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,6499,Block,Sahamphung,LGD,717,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false, +LGD,1434,Block,Sahar,LGD,193,District,1434,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,633,Block,Sahara,LGD,92,District,633,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,702,Block,Saharanpur,LGD,177,District,702,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +LGD,7491,Block,Saharapada,LGD,361,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,3300,Block,Sahaspur Lohara,LGD,382,District,3300,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +LGD,6429,Block,Saha St,LGD,58,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +LGD,781,Block,Sahaswan,LGD,133,District,781,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +LGD,1011,Block,Sahawar,LGD,633,District,1011,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +LGD,1282,Block,Sahdai Buzurg,LGD,224,District,1282,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,1199,Block,Sahebganj,LGD,208,District,1199,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,1318,Block,Sahebpur Kamal,LGD,191,District,1318,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,2564,Block,Sahibganj,LGD,340,District,2564,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,2473,Block,Sahid Matangini,LGD,317,District,2473,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,949,Block,Sahjanwa,LGD,148,District,949,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +LGD,7451,Block,Saho,LGD,16,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,4511,Block,Saidabad,LGD,507,District,4511,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,988,Block,Saidpur,LGD,146,District,988,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +LGD,837,Block,Saifai,LGD,139,District,837,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +LGD,7003,Block,Saikheda,LGD,418,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +LGD,6501,Block,Saikot,LGD,254,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,6493,Block,Saikul,LGD,712,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,3504,Block,Sailana,LGD,423,District,3504,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,119,Block,Sainj,LGD,20,District,119,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +LGD,3148,Block,Saintala,LGD,345,District,3148,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,7136,Block,Sainthal,LGD,97,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,2261,Block,Sainthia,LGD,307,District,2261,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2000,Block,Saipung,LGD,657,District,2000,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false, +LGD,1862,Block,Saitu-Gamphazol,LGD,712,District,1862,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,3313,Block,Saja,LGD,650,District,3313,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,6043,Block,Sajjangarh,LGD,88,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +LGD,992,Block,Sakaldiha,LGD,135,District,992,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +LGD,4939,Block,Sakhinetipalli,LGD,747,District,4939,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5553,Block,Sakleshpur,LGD,539,District,5553,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +LGD,7252,Block,Sakola,LGD,734,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false, +LGD,4040,Block,Sakoli,LGD,471,District,4040,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +LGD,1214,Block,Sakra,LGD,208,District,1214,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,1808,Block,Sakraba,LGD,248,District,1808,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,3958,Block,Sakri,LGD,474,District,3958,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +LGD,1834,Block,Sakshi,LGD,615,District,1834,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false, +LGD,3282,Block,Sakti,LGD,762,District,3282,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,2268,Block,Salanpur,LGD,704,District,2268,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +LGD,2452,Block,Salbani,LGD,318,District,2452,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +LGD,5616,Block,Salcete,LGD,552,District,5616,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +LGD,4048,Block,Salekasa,LGD,476,District,4048,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +LGD,5740,Block,Salem,LGD,584,District,5740,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,962,Block,Salempur,LGD,137,District,962,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +LGD,5970,Block,Salem South,LGD,584,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,5971,Block,Salem West,LGD,584,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,2957,Block,Salepur,LGD,350,District,2957,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,6443,Block,Salhawas St,LGD,64,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +LGD,7294,Block,Salhewara,LGD,759,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,7230,Block,Saligrama,LGD,545,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,1179,Block,Salkhua,LGD,216,District,1179,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,6818,Block,Sallar,LGD,1,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,829,Block,Salon,LGD,175,District,829,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +LGD,7532,Block,Saloora,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,2356,Block,Saltora,LGD,305,District,2356,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,692,Block,Salumbar,LGD,777,District,692,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,85,Block,Saluni,LGD,16,District,85,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,4817,Block,Salur,LGD,743,District,4817,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7143,Block,Sam,LGD,103,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +LGD,2032,Block,Samaguri,LGD,297,District,2032,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +LGD,377,Block,Samalkha,LGD,71,District,377,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +LGD,4910,Block,Samalkota,LGD,746,District,4910,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,250,Block,Samana,LGD,41,District,250,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +LGD,1974,Block,Samanda,LGD,273,District,1974,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +LGD,1288,Block,Samastipur,LGD,217,District,1288,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,82,Block,Samba,LGD,624,District,82,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +LGD,7464,Block,Sambalpur,LGD,371,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +LGD,5237,Block,Sambepalle,LGD,753,District,5237,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,721,Block,Sambhal,LGD,659,District,721,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +LGD,6904,Block,Samdari,LGD,775,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,1154,Block,Sameli,LGD,201,District,1154,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +LGD,3749,Block,Sami,LGD,455,District,3749,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,1401,Block,Sampatchak,LGD,212,District,1401,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +LGD,406,Block,Sampla,LGD,73,District,406,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +LGD,224,Block,Samrala,LGD,36,District,224,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +LGD,7242,Block,Samri,LGD,649,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,2224,Block,Samserganj,LGD,319,District,2224,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,4022,Block,Samudrapur,LGD,498,District,4022,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +LGD,6505,Block,Samulamlan,LGD,254,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,7488,Block,Sanakhemundi,LGD,354,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,3780,Block,Sanand,LGD,438,District,3780,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,6997,Block,Sanawad,LGD,414,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,590,Block,Sanchore,LGD,104,District,590,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,1425,Block,Sandesh,LGD,193,District,1425,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,2334,Block,Sandeshkhali - I,LGD,303,District,2334,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,2335,Block,Sandeshkhali - II,LGD,303,District,2335,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,126,Block,Sandhol,LGD,22,District,126,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,813,Block,Sandila,LGD,150,District,813,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +LGD,5501,Block,Sandur,LGD,528,District,5501,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +LGD,6503,Block,Sangaikot,LGD,254,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,5171,Block,Sangam,LGD,515,District,5171,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,4272,Block,Sangameshwar,LGD,492,District,4272,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +LGD,4202,Block,Sangamner,LGD,466,District,4202,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,545,Block,Sanganer,LGD,102,District,545,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,4492,Block,Sangareddy,LGD,691,District,4492,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,466,Block,Sangaria,LGD,101,District,466,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +LGD,1919,Block,Sangau,LGD,264,District,1919,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false, +LGD,6600,Block,Sangdupota Basar Nello Circle,LGD,237,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,4705,Block,Sangem,LGD,522,District,4705,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,199,Block,Sangla,LGD,19,District,199,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +LGD,669,Block,Sangod,LGD,109,District,669,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +LGD,4251,Block,Sangole,LGD,496,District,4251,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,1046,Block,Sangrampur,LGD,213,District,1046,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,3976,Block,Sangrampur,LGD,472,District,3976,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,1364,Block,Sangrampur,LGD,207,District,1364,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,1705,Block,Sangram Sdo,LGD,233,District,1705,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,271,Block,Sangrur,LGD,43,District,271,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +LGD,1819,Block,Sangsangnyu,LGD,249,District,1819,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false, +LGD,5618,Block,Sanguem,LGD,793,District,5618,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +LGD,1785,Block,Sanis,LGD,250,District,1785,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,5300,Block,Sanjamala,LGD,755,District,5300,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6204,Block,Sanjeli,LGD,445,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,1465,Block,Sanjhauli,LGD,215,District,1465,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,7149,Block,Sanjoo,LGD,110,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +LGD,5871,Block,Sankarankoil,LGD,733,District,5871,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +LGD,5733,Block,Sankarapuram,LGD,729,District,5733,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +LGD,5739,Block,Sankari,LGD,584,District,5739,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,6404,Block,Sankari,LGD,57,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +LGD,7235,Block,Sankari,LGD,375,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,4892,Block,Sankhavaram,LGD,746,District,4892,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3904,Block,Sankheda,LGD,668,District,3904,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +LGD,14,Block,Sankoo,LGD,6,District,14,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +LGD,2404,Block,Sankrail,LGD,313,District,2404,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,2459,Block,Sankrail,LGD,703,District,2459,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +LGD,7234,Block,Sanna,LGD,380,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,3744,Block,Santalpur,LGD,455,District,3744,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,4790,Block,Santhabommali,LGD,519,District,4790,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,4795,Block,Santhakaviti,LGD,521,District,4795,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,5104,Block,Santhamaguluru,LGD,517,District,5104,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,5138,Block,Santhanuthala Padu,LGD,517,District,5138,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,5425,Block,Santhipuram,LGD,503,District,5425,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,2311,Block,Santipur,LGD,320,District,2311,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,6683,Block,Santirbazar,LGD,271,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +LGD,3881,Block,Santrampur,LGD,669,District,3881,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +LGD,2384,Block,Santuri,LGD,321,District,2384,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +LGD,3542,Block,Sanwer,LGD,410,District,3542,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +LGD,7054,Block,Sapekhati,LGD,708,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +LGD,525,Block,Sapotra,LGD,108,District,525,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,1778,Block,Saptiqa,LGD,251,District,1778,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,693,Block,Sarada,LGD,777,District,693,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,7274,Block,Saragaon,LGD,379,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,7098,Block,Saraguru,LGD,545,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,6959,Block,Sarahan,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,6986,Block,Sarai,LGD,638,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +LGD,1106,Block,Saraigarh Bhaptiyahi,LGD,223,District,1106,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,2753,Block,Saraikela,LGD,341,District,2753,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +LGD,3340,Block,Saraipali,LGD,385,District,3340,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +LGD,1295,Block,Sarairanjan,LGD,217,District,1295,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,1202,Block,Saraiya,LGD,208,District,1202,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +LGD,2666,Block,Saraiyahat,LGD,326,District,2666,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,4396,Block,Sarangapur,LGD,681,District,4396,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,4336,Block,Sarangapur,LGD,680,District,4336,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,3270,Block,Sarangarh,LGD,763,District,3270,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,3567,Block,Sarangpur,LGD,422,District,3567,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,7479,Block,Saraskana,LGD,365,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,6196,Block,Saraswati,LGD,455,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,6476,Block,Saraswati Nagar St,LGD,76,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +LGD,2553,Block,Sarath,LGD,324,District,2553,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,4788,Block,Saravakota,LGD,519,District,4788,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,6960,Block,Sarawati Nagar,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,7370,Block,Sardargarh,LGD,112,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +LGD,3533,Block,Sardarpur,LGD,403,District,3533,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +LGD,483,Block,Sardarshahar,LGD,96,District,483,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,732,Block,Sardhana,LGD,169,District,732,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +LGD,247,Block,Sardulgarh,LGD,37,District,247,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false, +LGD,2377,Block,Sarenga,LGD,305,District,2377,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,7326,Block,Sargaon,LGD,647,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false, +LGD,866,Block,Sarila,LGD,149,District,866,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +LGD,7244,Block,Sariya,LGD,763,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,129,Block,Sarkaghat,LGD,22,District,129,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,1712,Block,Sarli Circle,LGD,233,District,1712,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.002616,93.206931,inherited:District,92.665336,27.594674,93.618511,28.366995,SOI_Districts,2023-12-11,false, +LGD,6389,Block,Sarmathura,LGD,98,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +LGD,1384,Block,Sarmera,LGD,209,District,1384,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,6094,Block,Sarojani Nagar,LGD,162,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +LGD,7325,Block,Sarona,LGD,381,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +LGD,4526,Block,Saroornagar,LGD,518,District,4526,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,7401,Block,Sarsiwa,LGD,763,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +LGD,2023,Block,Sarthebari,LGD,280,District,2023,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +LGD,4793,Block,Sarubujjili,LGD,519,District,4793,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,2087,Block,Sarupathar,LGD,288,District,2087,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +LGD,2025,Block,Sarupeta (Pt),LGD,739,District,2025,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +LGD,2547,Block,Sarwan,LGD,324,District,2547,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,613,Block,Sarwar,LGD,86,District,613,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,1471,Block,Sasaram,LGD,215,District,1471,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,267,Block,Sas Nagar (Mohali),LGD,608,District,267,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +LGD,757,Block,Sasni,LGD,163,District,757,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +LGD,7160,Block,Saspol,LGD,9,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +LGD,7397,Block,Satai,LGD,398,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +LGD,1777,Block,Satakha,LGD,251,District,1777,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,4262,Block,Satara,LGD,494,District,4262,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,5613,Block,Satari,LGD,551,District,5613,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +LGD,1172,Block,Satar Kataiya,LGD,216,District,1172,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,2631,Block,Satbarwa,LGD,338,District,2631,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,2526,Block,Satgawan,LGD,334,District,2526,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +LGD,7559,Block,Sathamba,LGD,672,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +LGD,5869,Block,Sathankulam,LGD,594,District,5869,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,7515,Block,Sathnala,LGD,501,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,4751,Block,Sathupalli,LGD,509,District,4751,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,5749,Block,Sathyamangalam,LGD,573,District,5749,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,3751,Block,Satlasana,LGD,451,District,3751,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,6459,Block,Satnali St,LGD,69,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +LGD,1779,Block,Satoi,LGD,251,District,1779,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,311,Block,Satpuli,LGD,52,District,311,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,5058,Block,Sattenapalli,LGD,751,District,5058,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5854,Block,Sattur,LGD,597,District,5854,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,3528,Block,Satwas,LGD,402,District,3528,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,3064,Block,Satyabadi,LGD,369,District,3064,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +LGD,5402,Block,Satyavedu,LGD,752,District,5402,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1175,Block,Saur Bazar,LGD,216,District,1175,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,3656,Block,Sausar,LGD,785,District,3656,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +LGD,5441,Block,Savadatti,LGD,527,District,5441,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,5064,Block,Savalyapuram H/O Kanamarlapudi,LGD,751,District,5064,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5490,Block,Savanur,LGD,540,District,5490,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +LGD,3846,Block,Savar Kundla,LGD,439,District,3846,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +LGD,3897,Block,Savli,LGD,461,District,3897,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,4026,Block,Savner,LGD,484,District,4026,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,1591,Block,Sawa Circle,LGD,231,District,1591,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,531,Block,Sawai Madhopur,LGD,113,District,531,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,4068,Block,Sawali,LGD,473,District,4068,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,4281,Block,Sawantwadi,LGD,495,District,4281,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +LGD,6660,Block,Sawar,LGD,86,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,810,Block,Sawayajpur,LGD,150,District,810,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +LGD,1884,Block,Sawombung,LGD,255,District,1884,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +LGD,3795,Block,Sayla,LGD,460,District,3795,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,585,Block,Sayla,LGD,104,District,585,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +LGD,7390,Block,Sayra,LGD,117,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,1850,Block,Sechu-Zubza,LGD,245,District,1850,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +LGD,4498,Block,Secunderabad,LGD,507,District,4498,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,5584,Block,Sedam,LGD,538,District,5584,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,6045,Block,Sedwa,LGD,90,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,7247,Block,Seepat,LGD,375,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,7518,Block,Seerole,LGD,688,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,6836,Block,Seethammadhara,LGD,520,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,4770,Block,Seethampeta,LGD,743,District,4770,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4814,Block,Seethanagaram,LGD,743,District,4814,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4896,Block,Seethanagaram,LGD,505,District,4896,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,5153,Block,Seetharamapuram,LGD,515,District,5153,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,3548,Block,Segaon,LGD,414,District,3548,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +LGD,6553,Block,Segi Gusar Circle,LGD,241,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,3582,Block,Sehore,LGD,427,District,3582,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,7008,Block,Sehore Nagar,LGD,427,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,6104,Block,Seijosa Adc,LGD,723,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false, +LGD,6927,Block,Sekhala,LGD,107,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,1800,Block,Sekruzu,LGD,248,District,1800,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,4018,Block,Seloo,LGD,498,District,4018,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +LGD,1962,Block,Selsella,LGD,278,District,1962,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +LGD,4116,Block,Selu,LGD,489,District,4116,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,6911,Block,Semari,LGD,777,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3475,Block,Semaria,LGD,424,District,3475,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,6632,Block,Sendamangalam,LGD,580,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +LGD,3561,Block,Sendhwa,LGD,393,District,3561,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,5785,Block,Sendurai,LGD,610,District,5785,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +LGD,4111,Block,Sengaon,LGD,477,District,4111,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +LGD,2602,Block,Senha,LGD,336,District,2602,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +LGD,3403,Block,Seondha,LGD,401,District,3403,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +LGD,3664,Block,Seoni,LGD,428,District,3664,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,3612,Block,Seoni Malwa,LGD,409,District,3612,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,7018,Block,Seoni Nagar,LGD,428,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +LGD,517,Block,Sepau,LGD,98,District,517,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +LGD,1584,Block,Seppa Hq,LGD,231,District,1584,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.587861,92.917506,inherited:District,92.450466,27.131902,93.372756,27.979105,SOI_Districts,2023-12-11,false, +LGD,2350,Block,Serampur Uttarpara,LGD,312,District,2350,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,1910,Block,Serchhip,LGD,268,District,1910,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false, +LGD,4516,Block,Serilingampally,LGD,518,District,4516,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,7147,Block,Setrawa,LGD,772,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5332,Block,Settur,LGD,502,District,5332,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,6835,Block,Sewarai,LGD,146,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +LGD,1835,Block,Seyochung,LGD,614,District,1835,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +LGD,4542,Block,Shabad,LGD,518,District,4542,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,3687,Block,Shadhora,LGD,391,District,3687,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +LGD,727,Block,Shahabad,LGD,176,District,727,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +LGD,7088,Block,Shahabad,LGD,538,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,809,Block,Shahabad,LGD,150,District,809,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +LGD,3953,Block,Shahade,LGD,486,District,3953,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +LGD,4167,Block,Shahapur,LGD,497,District,4167,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +LGD,364,Block,Shahbad,LGD,68,District,364,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +LGD,675,Block,Shahbad,LGD,89,District,675,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +LGD,6816,Block,Shahbad Bala,LGD,1,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,437,Block,Shahdara,LGD,81,District,437,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false, +LGD,981,Block,Shahganj,LGD,152,District,981,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +LGD,3447,Block,Shahgarh,LGD,425,District,3447,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +LGD,795,Block,Shahjahanpur,LGD,180,District,795,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +LGD,209,Block,Shahkot,LGD,34,District,209,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +LGD,1341,Block,Shahkund,LGD,192,District,1341,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,3441,Block,Shahnagar,LGD,420,District,3441,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,6794,Block,Shahoora (Litter),LGD,11,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +LGD,98,Block,Shahpur,LGD,18,District,98,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,5588,Block,Shahpur,LGD,635,District,5588,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +LGD,1421,Block,Shahpur,LGD,193,District,1421,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,3603,Block,Shahpur,LGD,394,District,3603,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +LGD,629,Block,Shahpura,LGD,92,District,629,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +LGD,540,Block,Shahpura,LGD,102,District,540,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,3630,Block,Shahpura,LGD,411,District,3630,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,3639,Block,Shahpura,LGD,404,District,3639,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +LGD,4283,Block,Shahuwadi,LGD,480,District,4283,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,6431,Block,Shahzadpur St,LGD,58,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +LGD,4496,Block,Shaikpet,LGD,507,District,4496,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,3519,Block,Shajapur,LGD,430,District,3519,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +LGD,6192,Block,Shakar Chiktan,LGD,6,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +LGD,7578,Block,Shakur Basti,LGD,796,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,4624,Block,Shaligouraram,LGD,514,District,4624,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,2514,Block,Shaligram Ram Narayanpur(Hunterganj),LGD,323,District,2514,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,7579,Block,Shalimar Bagh,LGD,796,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +LGD,7338,Block,Shallang,LGD,279,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.598255,91.261737,inherited:District,90.749136,25.293619,91.828606,25.861393,SOI_Districts,2023-12-11,false, +LGD,6367,Block,Shama,LGD,46,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +LGD,7457,Block,Shamakhunta,LGD,365,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,1825,Block,Shamator,LGD,765,District,1825,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1345,Block,Shambhuganj,LGD,190,District,1345,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +LGD,3495,Block,Shamgarh,LGD,416,District,3495,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,1321,Block,Shamho Akha Kurha,LGD,191,District,1321,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,4520,Block,Shamirpet,LGD,700,District,4520,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,7548,Block,Shamlaji,LGD,672,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +LGD,707,Block,Shamli,LGD,660,District,707,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false, +LGD,3576,Block,Shamshabad,LGD,437,District,3576,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,4543,Block,Shamshabad,LGD,518,District,4543,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,1747,Block,Shangnyu,LGD,247,District,1747,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,56,Block,Shangus,LGD,1,District,56,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,4454,Block,Shankarampet (A),LGD,513,District,4454,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,4467,Block,Shankarampet (R),LGD,513,District,4467,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,4441,Block,Shankarapatnam,LGD,508,District,4441,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,3241,Block,Shankargarh,LGD,649,District,3241,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,4515,Block,Shankarpalle,LGD,518,District,4515,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,1162,Block,Shankarpur,LGD,205,District,1162,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,6197,Block,Shankheshvar,LGD,455,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,4691,Block,Shayampet,LGD,686,District,4691,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,3977,Block,Shegaon,LGD,472,District,3977,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,3883,Block,Shehera,LGD,454,District,3883,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +LGD,1374,Block,Sheikhpura,LGD,219,District,1374,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false, +LGD,1373,Block,Shekhopur Sarai,LGD,219,District,1373,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false, +LGD,1994,Block,Shella Bholaganj,LGD,274,District,1994,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,5874,Block,Shenkottai,LGD,733,District,5874,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +LGD,577,Block,Sheo,LGD,90,District,577,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +LGD,592,Block,Sheoganj,LGD,115,District,592,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +LGD,1060,Block,Sheohar,LGD,220,District,1060,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +LGD,3382,Block,Sheopur,LGD,431,District,3382,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +LGD,1470,Block,Sheosagar,LGD,215,District,1470,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,3092,Block,Sheragada,LGD,354,District,3092,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,6566,Block,Shergaon Circle,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,571,Block,Shergarh,LGD,107,District,571,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,1503,Block,Sherghati,LGD,196,District,1503,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,7305,Block,Shergole,LGD,6,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +LGD,4207,Block,Shevgaon,LGD,466,District,4207,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,5489,Block,Shiggaon,LGD,540,District,5489,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +LGD,2671,Block,Shikaripara,LGD,326,District,2671,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +LGD,750,Block,Shikarpur,LGD,134,District,750,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +LGD,5517,Block,Shikarpur,LGD,547,District,5517,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +LGD,774,Block,Shikohabad,LGD,143,District,774,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +LGD,175,Block,Shillai,LGD,24,District,175,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +LGD,181,Block,Shimla ( Rural ),LGD,23,District,181,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,182,Block,Shimla (Urban),LGD,23,District,182,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,5471,Block,Shirahatti,LGD,537,District,5471,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +LGD,4295,Block,Shirala,LGD,493,District,4295,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,4286,Block,Shirol,LGD,480,District,4286,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +LGD,3956,Block,Shirpur,LGD,474,District,3956,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +LGD,4189,Block,Shirur,LGD,490,District,4189,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,4231,Block,Shirur Anantpal,LGD,481,District,4231,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,4217,Block,Shirur (Kasar),LGD,470,District,4217,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,1286,Block,Shivaji Nagar,LGD,217,District,1286,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,5520,Block,Shivamogga,LGD,547,District,5520,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +LGD,4487,Block,Shivampet,LGD,513,District,4487,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,7565,Block,Shivpur,LGD,409,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,3408,Block,Shivpuri,LGD,432,District,3408,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,7044,Block,Shivpuri Nagar,LGD,432,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +LGD,7256,Block,Shivrinarayan,LGD,379,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +LGD,932,Block,Shohratgarh,LGD,182,District,932,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +LGD,5705,Block,Sholinganallur,LGD,568,District,5705,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,7060,Block,Sholinghur,LGD,731,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +LGD,6641,Block,Shoolagiri,LGD,577,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +LGD,52,Block,Shopian,LGD,625,District,52,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false, +LGD,5587,Block,Shorapur,LGD,635,District,5587,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +LGD,4212,Block,Shrigonda,LGD,466,District,4212,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,555,Block,Shrimadhopur,LGD,114,District,555,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,7148,Block,Shrimahaveer Ji,LGD,108,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,4205,Block,Shrirampur,LGD,466,District,4205,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +LGD,5549,Block,Shrirangapattana,LGD,544,District,5549,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +LGD,4183,Block,Shrivardhan,LGD,491,District,4183,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,3522,Block,Shujalpur,LGD,430,District,3522,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +LGD,3583,Block,Shyampur,LGD,427,District,3583,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +LGD,2410,Block,Shyampur - I,LGD,313,District,2410,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,2411,Block,Shyampur - II,LGD,313,District,2411,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,1921,Block,Siaha,LGD,267,District,1921,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,false, +LGD,747,Block,Siana,LGD,134,District,747,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +LGD,6573,Block,Sibe Circle,LGD,719,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.775244,94.694459,inherited:District,94.210442,27.555242,95.136402,28.050437,SOI_Districts,2023-12-11,false, +LGD,2071,Block,Sibsagar,LGD,300,District,2071,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +LGD,5486,Block,Siddapur,LGD,550,District,5486,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,6281,Block,Siddipet Rural,LGD,692,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,4459,Block,Siddipet Urban,LGD,692,District,4459,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,808,Block,Sidhauli,LGD,183,District,808,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +LGD,1013,Block,Sidhaw,LGD,211,District,1013,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,6931,Block,Sidhmukh,LGD,96,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,5229,Block,Sidhout,LGD,504,District,5229,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,3746,Block,Sidhpur,LGD,455,District,3746,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +LGD,1227,Block,Sidhwalia,LGD,197,District,1227,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,5599,Block,Sidlaghatta,LGD,630,District,5599,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +LGD,2114,Block,Sidli,LGD,612,District,2114,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +LGD,3700,Block,Sihawal,LGD,433,District,3700,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +LGD,3856,Block,Sihor,LGD,443,District,3856,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,3627,Block,Sihora,LGD,411,District,3627,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +LGD,89,Block,Sihunta,LGD,16,District,89,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,7332,Block,Siju,LGD,277,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +LGD,976,Block,Sikanderpur,LGD,126,District,976,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +LGD,847,Block,Sikandra,LGD,156,District,847,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +LGD,1526,Block,Sikandra,LGD,198,District,1526,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,745,Block,Sikandrabad,LGD,134,District,745,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +LGD,758,Block,Sikandra Rao,LGD,163,District,758,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +LGD,553,Block,Sikar,LGD,114,District,553,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,7228,Block,Sikar Gramin,LGD,114,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +LGD,535,Block,Sikrai,LGD,97,District,535,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +LGD,6930,Block,Sikri,LGD,767,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,1026,Block,Sikta,LGD,211,District,1026,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,1118,Block,Sikti,LGD,188,District,1118,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +LGD,1395,Block,Silao,LGD,209,District,1395,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,2097,Block,Silchar,LGD,282,District,2097,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +LGD,2688,Block,Silli,LGD,339,District,2688,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,4135,Block,Sillod,LGD,469,District,4135,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,2091,Block,Silonijan,LGD,292,District,2091,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +LGD,6843,Block,Silsango Circle,LGD,237,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,3596,Block,Silwani,LGD,421,District,3596,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,649,Block,Simalwara,LGD,99,District,649,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +LGD,6975,Block,Simaria,LGD,420,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +LGD,2524,Block,Simaria,LGD,323,District,2524,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,2718,Block,Simdega,LGD,342,District,2718,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,3324,Block,Simga,LGD,644,District,3324,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,5217,Block,Simhadripuram,LGD,504,District,5217,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,3215,Block,Similiguda,LGD,363,District,3215,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +LGD,2372,Block,Simlapal,LGD,305,District,2372,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,1435,Block,Simri,LGD,194,District,1435,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +LGD,1178,Block,Simri Bakhtiarpur,LGD,216,District,1178,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,2908,Block,Simulia,LGD,346,District,2908,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,3158,Block,Sinapali,LGD,368,District,3158,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +LGD,4069,Block,Sindewahi,LGD,473,District,4069,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,5451,Block,Sindgi,LGD,530,District,5451,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,6052,Block,Sindhari,LGD,775,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,5463,Block,Sindhnur,LGD,546,District,5463,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +LGD,3957,Block,Sindkhede,LGD,474,District,3957,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +LGD,3986,Block,Sindkhed Raja,LGD,472,District,3986,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +LGD,1662,Block,Singa Circle,LGD,240,District,1662,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,5995,Block,Singampunari,LGD,585,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,5325,Block,Singanamala,LGD,502,District,5325,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5149,Block,Singarayakonda,LGD,517,District,5149,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,4744,Block,Singareni,LGD,509,District,4744,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,1573,Block,Singchung Adc,LGD,242,District,1573,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,1159,Block,Singheshwar,LGD,205,District,1159,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +LGD,1301,Block,Singhia,LGD,217,District,1301,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,7204,Block,Singhpora,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,1182,Block,Singhwara,LGD,195,District,1182,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,1872,Block,Singngat,LGD,254,District,1872,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,3488,Block,Singoli,LGD,419,District,3488,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +LGD,3705,Block,Singrauli,LGD,638,District,3705,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +LGD,7040,Block,Singrauli Nagar,LGD,638,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +LGD,2349,Block,Singur,LGD,312,District,2349,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,6480,Block,Singvad,LGD,445,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,4154,Block,Sinnar,LGD,487,District,4154,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,3908,Block,Sinor,LGD,461,District,3908,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,6777,Block,Siot,LGD,12,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,2147,Block,Sipajhar,LGD,283,District,2147,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +LGD,5533,Block,Sira,LGD,548,District,5533,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,3607,Block,Sirali,LGD,408,District,3607,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +LGD,885,Block,Sirathu,LGD,158,District,885,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +LGD,899,Block,Sirauli Gauspur,LGD,129,District,899,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +LGD,4435,Block,Sircilla,LGD,683,District,4435,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,1523,Block,Sirdala,LGD,210,District,1523,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,6279,Block,Sirgapoor,LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,4379,Block,Sirikonda,LGD,516,District,4379,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,6224,Block,Sirikonda,LGD,501,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,5795,Block,Sirkali,LGD,735,District,5795,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +LGD,3473,Block,Sirmour,LGD,424,District,3473,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,593,Block,Sirohi,LGD,115,District,593,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +LGD,4063,Block,Sironcha,LGD,475,District,4063,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +LGD,3571,Block,Sironj,LGD,437,District,3571,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,4315,Block,Sirpur (T),LGD,699,District,4315,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,4326,Block,Sirpur U,LGD,699,District,4326,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,390,Block,Sirsa,LGD,74,District,390,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +LGD,6161,Block,Sirsaganj,LGD,143,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +LGD,5483,Block,Sirsi,LGD,550,District,5483,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,5499,Block,Siruguppa,LGD,528,District,5499,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +LGD,5286,Block,Sirvel,LGD,755,District,5286,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7097,Block,Sirwar,LGD,546,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +LGD,2708,Block,Sisai,LGD,331,District,2708,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +LGD,2056,Block,Sissibargaon,LGD,284,District,2056,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +LGD,1247,Block,Siswan,LGD,222,District,1247,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,2189,Block,Sitai,LGD,308,District,2189,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,2190,Block,Sitalkuchi,LGD,308,District,2190,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,3498,Block,Sitamau,LGD,416,District,3498,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,3252,Block,Sitapur,LGD,389,District,3252,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +LGD,804,Block,Sitapur,LGD,183,District,804,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +LGD,351,Block,Sitarganj,LGD,56,District,351,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +LGD,1839,Block,Sitimi,LGD,614,District,1839,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +LGD,5832,Block,Sivaganga,LGD,585,District,5832,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,5870,Block,Sivagiri,LGD,733,District,5870,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +LGD,5849,Block,Sivakasi,LGD,597,District,5849,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,1230,Block,Siwan,LGD,222,District,1230,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,580,Block,Siwana,LGD,775,District,580,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,400,Block,Siwani,LGD,59,District,400,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +LGD,6449,Block,Siwan St,LGD,66,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +LGD,1610,Block,Siyum Adc,LGD,241,District,1610,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,6977,Block,Sleemnabad,LGD,413,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,5204,Block,S.Mydukur,LGD,504,District,5204,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,6209,Block,Soan,LGD,680,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,5394,Block,Sodam,LGD,753,District,5394,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4134,Block,Soegaon,LGD,469,District,4134,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,1685,Block,Soha Circle,LGD,239,District,1685,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +LGD,3617,Block,Sohagpur,LGD,409,District,3617,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +LGD,3691,Block,Sohagpur,LGD,429,District,3691,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +LGD,904,Block,Sohawal,LGD,140,District,904,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +LGD,2761,Block,Sohela,LGD,347,District,2761,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +LGD,6542,Block,Sohiong,LGD,274,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +LGD,420,Block,Sohna,LGD,62,District,420,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,599,Block,Sojat,LGD,111,District,599,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +LGD,3862,Block,Sojitra,LGD,440,District,3862,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,165,Block,Solan,LGD,25,District,165,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +LGD,4247,Block,Solapur North,LGD,496,District,4247,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,4253,Block,Solapur South,LGD,496,District,4253,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +LGD,5412,Block,Somala,LGD,753,District,5412,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5363,Block,Somandepalli,LGD,754,District,5363,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,331,Block,Someshwar,LGD,45,District,331,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,4780,Block,Sompeta,LGD,519,District,4780,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,5567,Block,Somvarpet,LGD,541,District,5567,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +LGD,2689,Block,Sonahatu,LGD,339,District,2689,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,2099,Block,Sonai,LGD,282,District,2099,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +LGD,7296,Block,Sonakhan,LGD,644,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,7516,Block,Sonala,LGD,501,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,2364,Block,Sonamukhi,LGD,305,District,2364,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,6680,Block,Sonamura,LGD,653,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +LGD,2130,Block,Sonapur,LGD,618,District,2130,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +LGD,3139,Block,Sonapur,LGD,372,District,3139,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +LGD,2548,Block,Sona Rai Tharhi,LGD,324,District,2548,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +LGD,2074,Block,Sonari,LGD,708,District,2074,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +LGD,7602,Block,Sonari Part,LGD,300,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +LGD,2417,Block,Sonarpur,LGD,304,District,2417,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,42,Block,Sonawari,LGD,623,District,42,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +LGD,1177,Block,Sonbarsa,LGD,216,District,1177,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +LGD,1066,Block,Sonbarsa,LGD,221,District,1066,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,1545,Block,Sonbhadra Banshi Suryapur,LGD,611,District,1545,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +LGD,6981,Block,Sondawa,LGD,639,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +LGD,1267,Block,Sonepur,LGD,218,District,1267,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,3944,Block,Songadh,LGD,641,District,3944,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +LGD,1973,Block,Songsak,LGD,273,District,1973,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +LGD,6484,Block,Song Song,LGD,257,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +LGD,3233,Block,Sonhat,LGD,384,District,3233,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +LGD,1344,Block,Sonhaula,LGD,192,District,1344,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,380,Block,Sonipat,LGD,75,District,380,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +LGD,3525,Block,Sonkatch,LGD,402,District,3525,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,1533,Block,Sono,LGD,198,District,1533,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +LGD,4121,Block,Sonpeth,LGD,489,District,4121,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +LGD,2728,Block,Sonua,LGD,343,District,2728,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,32,Block,Sopore,LGD,3,District,32,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,2907,Block,Sora,LGD,346,District,2907,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +LGD,5516,Block,Sorab,LGD,547,District,5516,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +LGD,888,Block,Soraon,LGD,120,District,888,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +LGD,1550,Block,Soreng,LGD,742,District,1550,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +LGD,1820,Block,Sotokur,LGD,765,District,1820,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,2011,Block,South Salmara,LGD,707,District,2011,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false, +LGD,7417,Block,South Salmara Pt,LGD,285,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +LGD,7421,Block,Soyatkala,LGD,667,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +LGD,116,Block,Spiti,LGD,21,District,116,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +LGD,4882,Block,S.Rayavaram,LGD,744,District,4882,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5206,Block,Sri Avadhutha Kasinayana,LGD,504,District,5206,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,480,Block,Sridungargarh,LGD,93,District,480,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +LGD,6819,Block,Srigufwara,LGD,1,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +LGD,2112,Block,Srijangram,LGD,281,District,2112,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +LGD,4802,Block,Srikakulam,LGD,519,District,4802,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,5378,Block,Srikalahasti,LGD,752,District,5378,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,241,Block,Sri Muktsar Sahib,LGD,39,District,241,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +LGD,6646,Block,Srimushnam,LGD,570,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,306,Block,Srinagar,LGD,52,District,306,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,1136,Block,Srinagar,LGD,214,District,1136,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +LGD,6805,Block,Srinagar Central,LGD,13,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +LGD,43,Block,Srinagar North,LGD,13,District,43,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +LGD,44,Block,Srinagar South,LGD,13,District,44,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +LGD,5525,Block,Sringeri,LGD,532,District,5525,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,5590,Block,Srinivaspur,LGD,542,District,5590,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +LGD,5702,Block,Sriperumbudur,LGD,574,District,5702,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +LGD,4407,Block,Srirampur,LGD,682,District,4407,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,5778,Block,Srirangam,LGD,591,District,5778,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,6288,Block,Srirangapur,LGD,693,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,5419,Block,Srirangarajapuram,LGD,503,District,5419,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,6538,Block,Srisailam,LGD,755,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5867,Block,Srivaikuntam,LGD,594,District,5867,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,5848,Block,Srivilliputhur,LGD,597,District,5848,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,4831,Block,Srungavarapukota,LGD,521,District,4831,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,6506,Block,Suangdoh,LGD,254,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,723,Block,Suar,LGD,176,District,723,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +LGD,2054,Block,Subansiri (Pt-I),LGD,295,District,2054,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +LGD,7460,Block,Subdega,LGD,373,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,6024,Block,Subir,LGD,444,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false, +LGD,6716,Block,Suchetgarh,LGD,5,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +LGD,4180,Block,Sudhagad,LGD,491,District,4180,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,1034,Block,Sugauli,LGD,213,District,1034,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,7150,Block,Suhagpura,LGD,629,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +LGD,7249,Block,Suhela,LGD,644,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,6166,Block,Suigam,LGD,789,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,486,Block,Sujangarh,LGD,96,District,486,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,6265,Block,Sujathanagar,LGD,690,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,7549,Block,Sukhsar,LGD,445,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +LGD,2969,Block,Sukinda,LGD,356,District,2969,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,3375,Block,Sukma,LGD,642,District,3375,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +LGD,7477,Block,Sukruli,LGD,365,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,7048,Block,Sulah,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,2877,Block,Suliapada,LGD,365,District,2877,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,5197,Block,Sullurpeta,LGD,752,District,5197,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,327,Block,Sult,LGD,45,District,327,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,1340,Block,Sultanganj,LGD,192,District,1340,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +LGD,7566,Block,Sultan-Ganj,LGD,421,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,6532,Block,Sultanpur,LGD,421,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,915,Block,Sultanpur,LGD,185,District,915,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +LGD,207,Block,Sultanpur Lodhi,LGD,35,District,207,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +LGD,4425,Block,Sulthanabad,LGD,682,District,4425,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +LGD,5636,Block,Sulthanbathery,LGD,567,District,5636,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +LGD,5896,Block,Sulur,LGD,569,District,5896,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,5565,Block,Sulya,LGD,534,District,5565,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,604,Block,Sumerpur,LGD,111,District,604,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +LGD,11,Block,Sumoor,LGD,9,District,11,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +LGD,272,Block,Sunam,LGD,43,District,272,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +LGD,2809,Block,Sundargarh,LGD,373,District,2809,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,132,Block,Sundarnagar,LGD,22,District,132,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,2563,Block,Sundarpahari,LGD,330,District,2563,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,26,Block,Sunderbani,LGD,12,District,26,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,6667,Block,Sunel,LGD,105,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +LGD,1784,Block,Sungro,LGD,250,District,1784,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,180,Block,Sunni,LGD,23,District,180,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,1728,Block,Sunpura Circle,LGD,234,District,1728,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false, +LGD,5479,Block,Supa,LGD,550,District,5479,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,1109,Block,Supaul,LGD,223,District,1109,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,1064,Block,Suppi,LGD,221,District,1064,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,3076,Block,Surada,LGD,354,District,3076,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +LGD,6371,Block,Surajgarh,LGD,106,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,1367,Block,Surajgarha,LGD,204,District,1367,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +LGD,3242,Block,Surajpur,LGD,648,District,3242,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +LGD,19,Block,Surankote,LGD,10,District,19,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +LGD,465,Block,Suratgarh,LGD,100,District,465,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,7442,Block,Surendranagar City,LGD,460,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,4142,Block,Surgana,LGD,487,District,4142,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,2259,Block,Suri - I,LGD,307,District,2259,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2260,Block,Suri - II,LGD,307,District,2260,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +LGD,2542,Block,Suriya,LGD,329,District,2542,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,6934,Block,Suroth,LGD,108,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,1068,Block,Sursand,LGD,221,District,1068,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +LGD,1769,Block,Suruhuto,LGD,251,District,1769,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,4638,Block,Suryapet,LGD,696,District,4638,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,1460,Block,Suryapura,LGD,215,District,1460,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,3515,Block,Susner,LGD,667,District,3515,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +LGD,2482,Block,Sutahata,LGD,317,District,2482,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,6992,Block,Suthaliya,LGD,422,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +LGD,2225,Block,Suti - I,LGD,319,District,2225,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,2226,Block,Suti - II,LGD,319,District,2226,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +LGD,3836,Block,Sutrapada,LGD,675,District,3836,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +LGD,3499,Block,Suwasara,LGD,416,District,3499,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +LGD,2319,Block,Swarupnagar,LGD,303,District,2319,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +LGD,6330,Block,Syalde,LGD,45,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +LGD,5185,Block,Sydapuram,LGD,515,District,5185,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5198,Block,Tada,LGD,752,District,5198,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5054,Block,Tadepalli,LGD,506,District,5054,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,4961,Block,Tadepalligudem,LGD,523,District,4961,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,5056,Block,Tadikonda,LGD,506,District,5056,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,5338,Block,Tadimarri,LGD,754,District,5338,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5313,Block,Tadipatri,LGD,502,District,5313,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,4582,Block,Tadoor,LGD,694,District,4582,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,6508,Block,Tadubi,LGD,257,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +LGD,4687,Block,Tadvai,LGD,720,District,4687,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,4389,Block,Tadwai,LGD,685,District,4389,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,858,Block,Tahrauli,LGD,153,District,858,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +LGD,7306,Block,Taisuru,LGD,6,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +LGD,1290,Block,Tajpur,LGD,217,District,1290,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,6158,Block,Takha,LGD,139,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +LGD,3294,Block,Takhatpur,LGD,375,District,3294,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +LGD,6963,Block,Taklech,LGD,23,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,6549,Block,Taksing Circle,LGD,241,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,3503,Block,Tal,LGD,423,District,3503,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +LGD,4182,Block,Tala,LGD,491,District,4182,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,3006,Block,Talacher,LGD,344,District,3006,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +LGD,3859,Block,Talaja,LGD,443,District,3859,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,3834,Block,Talala,LGD,675,District,3834,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +LGD,4309,Block,Talamadugu,LGD,501,District,4309,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,5652,Block,Talappilly,LGD,566,District,5652,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +LGD,4157,Block,Talasari,LGD,665,District,4157,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +LGD,7225,Block,Talawara,LGD,113,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,861,Block,Talbehat,LGD,161,District,861,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +LGD,2371,Block,Taldangra,LGD,305,District,2371,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,6033,Block,Talera,LGD,94,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +LGD,1716,Block,Tali Adc,LGD,677,District,1716,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false, +LGD,1611,Block,Taliha Adc,LGD,241,District,1611,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +LGD,7073,Block,Talikoti,LGD,530,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,5632,Block,Taliparamba,LGD,557,District,5632,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +LGD,2568,Block,Taljhari,LGD,340,District,2568,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,4950,Block,Tallapudi,LGD,505,District,4950,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,4930,Block,Tallarevu,LGD,746,District,4930,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3768,Block,Talod,LGD,458,District,3768,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +LGD,3952,Block,Talode,LGD,486,District,3952,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +LGD,5340,Block,Talupula,LGD,754,District,5340,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,246,Block,Talwandi Sabo,LGD,28,District,246,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +LGD,2699,Block,Tamar I,LGD,339,District,2699,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +LGD,5703,Block,Tambaram,LGD,730,District,5703,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +LGD,1866,Block,Tamenglong,LGD,258,District,1866,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false, +LGD,1865,Block,Tamenglong North,LGD,258,District,1865,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false, +LGD,1864,Block,Tamenglong West,LGD,258,District,1864,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false, +LGD,3647,Block,Tamia,LGD,399,District,3647,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,958,Block,Tamkuhi Raj,LGD,160,District,958,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +LGD,1830,Block,Tamlu,LGD,615,District,1830,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false, +LGD,2472,Block,Tamluk,LGD,317,District,2472,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +LGD,3266,Block,Tamnar,LGD,386,District,3266,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +LGD,4305,Block,Tamsi,LGD,501,District,4305,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,2144,Block,Tamulpur,LGD,756,District,2144,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +LGD,5360,Block,Tanakal,LGD,754,District,5360,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,724,Block,Tanda,LGD,176,District,724,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +LGD,907,Block,Tanda,LGD,121,District,907,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +LGD,7193,Block,Tanda,LGD,33,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +LGD,4534,Block,Tandur,LGD,698,District,4534,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,4332,Block,Tandur,LGD,684,District,4332,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,2525,Block,Tandwa,LGD,323,District,2525,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +LGD,7459,Block,Tangarpali,LGD,373,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +LGD,3052,Block,Tangi,LGD,362,District,3052,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +LGD,2955,Block,Tangi-Choudwar,LGD,350,District,2955,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,39,Block,Tangmarg,LGD,3,District,39,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,5141,Block,Tangutur,LGD,517,District,5141,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,3800,Block,Tankara,LGD,673,District,3800,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +LGD,1506,Block,Tan Kuppa,LGD,196,District,1506,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,4340,Block,Tanoor,LGD,680,District,4340,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +LGD,7037,Block,Tansen,LGD,407,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +LGD,2740,Block,Tantnagar,LGD,343,District,2740,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,6658,Block,Tantoti,LGD,86,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +LGD,4972,Block,Tanuku,LGD,523,District,4972,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,421,Block,Taoru,LGD,604,District,421,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +LGD,276,Block,Tapa,LGD,605,District,276,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +LGD,2205,Block,Tapan,LGD,310,District,2205,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +LGD,7603,Block,Tapkara,LGD,380,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +LGD,6941,Block,Tapri,LGD,19,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +LGD,7128,Block,Tapukara,LGD,770,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,930,Block,Tarabganj,LGD,147,District,930,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +LGD,1250,Block,Taraiya,LGD,218,District,1250,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +LGD,2342,Block,Tarakeswar,LGD,312,District,2342,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +LGD,1711,Block,Tarak Lengdi Cicle,LGD,677,District,1711,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false, +LGD,3512,Block,Tarana,LGD,435,District,3512,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,481,Block,Taranagar,LGD,96,District,481,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +LGD,3861,Block,Tarapur,LGD,440,District,3861,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,1362,Block,Tarapur,LGD,207,District,1362,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,1433,Block,Tarari,LGD,193,District,1433,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,1595,Block,Taraso Circle,LGD,237,District,1595,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,3140,Block,Tarbha,LGD,372,District,3140,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +LGD,1186,Block,Tardih,LGD,195,District,1186,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +LGD,2629,Block,Tarhasi,LGD,338,District,2629,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,1062,Block,Tariani Chowk,LGD,220,District,1062,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +LGD,5528,Block,Tarikere,LGD,532,District,5528,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +LGD,5118,Block,Tarlupadu,LGD,790,District,5118,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,259,Block,Tarn Taran,LGD,609,District,259,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +LGD,6775,Block,Taryath,LGD,12,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,4301,Block,Tasgaon,LGD,493,District,4301,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,6656,Block,Tatgarh,LGD,774,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,2648,Block,Tati Jhariya,LGD,332,District,2648,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +LGD,6589,Block,Tato Eac,LGD,725,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false, +LGD,6883,Block,Tauni Devi Bamson,LGD,17,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,1559,Block,Tawang Hq,LGD,238,District,1559,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,1311,Block,Teghra,LGD,191,District,1311,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +LGD,2301,Block,Tehatta - I,LGD,320,District,2301,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,2302,Block,Tehatta - II,LGD,320,District,2302,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +LGD,7113,Block,Tehla,LGD,87,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,297,Block,Tehri,LGD,55,District,297,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +LGD,6357,Block,Tejam,LGD,53,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,4789,Block,Tekkali,LGD,519,District,4789,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,4469,Block,Tekmal,LGD,513,District,4469,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,4739,Block,Tekulapalli,LGD,690,District,4739,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,6248,Block,Tekumatla,LGD,687,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +LGD,3988,Block,Telhara,LGD,467,District,3988,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +LGD,6698,Block,Teliamura,LGD,652,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false, +LGD,7286,Block,Telka,LGD,16,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +LGD,4581,Block,Telkapally,LGD,694,District,4581,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,2848,Block,Telkoi,LGD,361,District,2848,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +LGD,5078,Block,Tenali,LGD,506,District,5078,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,3638,Block,Tendukheda,LGD,418,District,3638,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +LGD,3460,Block,Tendukheda,LGD,400,District,3460,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +LGD,2066,Block,Tengakhat,LGD,286,District,2066,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +LGD,1893,Block,Tengnoupal,LGD,716,District,1893,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.412591,94.222784,inherited:District,94.018991,24.114110,94.408694,24.635738,SOI_Districts,2023-12-11,false, +LGD,1856,Block,Tening,LGD,613,District,1856,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +LGD,5873,Block,Tenkasi,LGD,733,District,5873,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +LGD,3197,Block,Tentulikhunti,LGD,366,District,3197,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,2079,Block,Teok,LGD,290,District,2079,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +LGD,3471,Block,Teonthar,LGD,424,District,3471,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +LGD,7398,Block,Terdal,LGD,524,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +LGD,1121,Block,Terhagachh,LGD,203,District,1121,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +LGD,1056,Block,Tetaria,LGD,213,District,1056,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,1363,Block,Tetiha Bambor,LGD,207,District,1363,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +LGD,2043,Block,Tezpur,LGD,301,District,2043,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +LGD,1729,Block,Tezu Hq,LGD,234,District,1729,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false, +LGD,7184,Block,Thachi,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,1996,Block,Thadlaskein,LGD,275,District,1996,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false, +LGD,308,Block,Thailisain,LGD,52,District,308,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,1023,Block,Thakrahan,LGD,211,District,1023,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +LGD,6745,Block,Thakrakote,LGD,627,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,717,Block,Thakurdwara,LGD,171,District,717,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +LGD,7289,Block,Thakurdwara,LGD,18,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,2556,Block,Thakurgangti,LGD,330,District,2556,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +LGD,1123,Block,Thakurganj,LGD,203,District,1123,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +LGD,2871,Block,Thakurmunda,LGD,365,District,2871,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,2412,Block,Thakurpukur Mahestola,LGD,304,District,2412,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +LGD,6359,Block,Thal,LGD,53,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +LGD,7120,Block,Thalaivasal,LGD,584,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,4562,Block,Thalakondapally,LGD,518,District,4562,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,5634,Block,Thalassery,LGD,557,District,5634,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +LGD,6539,Block,Thalavadi,LGD,573,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +LGD,4762,Block,Thallada,LGD,509,District,4762,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,5121,Block,Thallur,LGD,517,District,5121,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,5938,Block,Thamarassery,LGD,561,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +LGD,5368,Block,Thamballapalle,LGD,753,District,5368,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,501,Block,Thanagazi,LGD,87,District,501,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +LGD,20,Block,Thana Mandi,LGD,12,District,20,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +LGD,3706,Block,Thandla,LGD,412,District,3706,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +LGD,5726,Block,Thandrampet,LGD,593,District,5726,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,4165,Block,Thane,LGD,497,District,4165,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +LGD,366,Block,Thanesar,LGD,68,District,366,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +LGD,6037,Block,Thangadh,LGD,460,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,6217,Block,Thangallapalli,LGD,683,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,5814,Block,Thanjavur,LGD,586,District,5814,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,3314,Block,Thankhamariya,LGD,650,District,3314,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +LGD,1869,Block,Thanlon,LGD,715,District,1869,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false, +LGD,3733,Block,Tharad,LGD,789,District,3733,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,288,Block,Tharali,LGD,47,District,288,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +LGD,5798,Block,Tharangambadi,LGD,735,District,5798,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +LGD,6257,Block,Tharigoppula,LGD,689,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,1388,Block,Tharthari,LGD,209,District,1388,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +LGD,3878,Block,Thasra,LGD,450,District,3878,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,63,Block,Thathri,LGD,4,District,63,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +LGD,5418,Block,Thavanampalle,LGD,503,District,5418,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,1223,Block,Thawe,LGD,197,District,1223,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,7049,Block,Thelamara,LGD,301,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +LGD,6565,Block,Thembang Circle,LGD,242,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,5844,Block,Theni,LGD,588,District,5844,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +LGD,184,Block,Theog,LGD,23,District,184,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,4821,Block,Therlam,LGD,521,District,4821,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,2723,Block,Thethaitangar,LGD,342,District,2723,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +LGD,3556,Block,Thikri,LGD,393,District,3556,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,4575,Block,Thimmajipet,LGD,694,District,4575,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,4438,Block,Thimmapur LMD,LGD,508,District,4438,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,6556,Block,Thingbu Circle,LGD,238,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,1899,Block,Thingdawl,LGD,263,District,1899,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false, +LGD,1905,Block,Thingsulthliah,LGD,261,District,1905,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +LGD,4645,Block,Thipparthy,LGD,514,District,4645,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,5801,Block,Thirukkuvalai,LGD,579,District,5801,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +LGD,4619,Block,Thirumalagiri,LGD,696,District,4619,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,5840,Block,Thirumangalam,LGD,578,District,5840,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,5822,Block,Thirumayam,LGD,582,District,5822,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,5915,Block,Thirunallar,LGD,598,District,5915,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +LGD,5962,Block,Thirupparankundram,LGD,578,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,5829,Block,Thiruppathur,LGD,585,District,5829,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,5965,Block,Thiruppuvanam,LGD,585,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +LGD,5809,Block,Thiruthuraipoondi,LGD,590,District,5809,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,5813,Block,Thiruvaiyaru,LGD,586,District,5813,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,5679,Block,Thiruvalla,LGD,564,District,5679,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +LGD,5698,Block,Thiruvallur,LGD,589,District,5698,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,5691,Block,Thiruvananthapuram,LGD,565,District,5691,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +LGD,5806,Block,Thiruvarur,LGD,590,District,5806,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,6672,Block,Thiruvattar,LGD,575,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +LGD,7053,Block,Thiruvennainallur,LGD,596,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,5780,Block,Thiruverumbur,LGD,591,District,5780,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,5810,Block,Thiruvidaimarudur,LGD,586,District,5810,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,7406,Block,Thiruvonam,LGD,586,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +LGD,5666,Block,Thodupuzha,LGD,556,District,5666,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +LGD,4463,Block,Thoguta,LGD,692,District,4463,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,4901,Block,Thondangi,LGD,746,District,4901,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5221,Block,Thondur,LGD,504,District,5221,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,1829,Block,Thonoknyu,LGD,736,District,1829,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,5866,Block,Thoothukkudi,LGD,594,District,5866,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,4715,Block,Thorrur,LGD,688,District,4715,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +LGD,5180,Block,Thotapalligudur,LGD,515,District,5180,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5025,Block,Thotlavalluru,LGD,510,District,5025,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,5379,Block,Thottambedu,LGD,752,District,5379,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5773,Block,Thottiyam,LGD,591,District,5773,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,1877,Block,Thoubal,LGD,259,District,1877,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false, +LGD,5883,Block,Thovala,LGD,575,District,5883,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +LGD,5654,Block,Thrissur,LGD,566,District,5654,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +LGD,1575,Block,Thrizino Adc,LGD,242,District,1575,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +LGD,3171,Block,Thuamul Rampur,LGD,358,District,3171,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +LGD,5053,Block,Thulluru,LGD,506,District,5053,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,136,Block,Thunag,LGD,22,District,136,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,4620,Block,Thungaturthy,LGD,696,District,4620,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +LGD,5775,Block,Thuraiyur,LGD,591,District,5775,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,108,Block,Thural,LGD,18,District,108,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +LGD,4614,Block,Thurkapally,LGD,697,District,4614,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,6739,Block,Thuroo,LGD,627,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +LGD,467,Block,Tibbi,LGD,101,District,467,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +LGD,6434,Block,Tigaon St,LGD,60,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +LGD,2949,Block,Tigiria,LGD,350,District,2949,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +LGD,2917,Block,Tihidi,LGD,348,District,2917,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +LGD,6946,Block,Tihra,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,2132,Block,Tihu (Pt),LGD,298,District,2132,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +LGD,496,Block,Tijara,LGD,770,District,496,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3115,Block,Tikabali,LGD,359,District,3115,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,3423,Block,Tikamgarh,LGD,434,District,3423,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +LGD,190,Block,Tikar,LGD,23,District,190,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +LGD,1488,Block,Tikari,LGD,196,District,1488,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,6581,Block,Tikhak Rima Putok Circle,LGD,229,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,6948,Block,Tikken,LGD,22,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +LGD,7074,Block,Tikota,LGD,530,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,1964,Block,Tikrikilla,LGD,278,District,1964,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +LGD,3909,Block,Tilakwada,LGD,452,District,3909,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +LGD,3334,Block,Tilda,LGD,387,District,3334,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +LGD,794,Block,Tilhar,LGD,180,District,794,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +LGD,824,Block,Tiloi,LGD,640,District,824,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +LGD,1474,Block,Tilouthu,LGD,215,District,1474,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +LGD,3610,Block,Timarni,LGD,408,District,3610,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +LGD,1726,Block,Tinali Paglam Circle,LGD,235,District,1726,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false, +LGD,5729,Block,Tindivanam,LGD,596,District,5729,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,2068,Block,Tingkhong,LGD,286,District,2068,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +LGD,2061,Block,Tinsukia,LGD,302,District,2061,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +LGD,6390,Block,Tinwari,LGD,107,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +LGD,4008,Block,Tiosa,LGD,468,District,4008,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,1920,Block,Tipa,LGD,267,District,1920,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.291740,93.001449,inherited:District,92.820553,21.940040,93.202042,22.634427,SOI_Districts,2023-12-11,false, +LGD,1868,Block,Tipaimukh,LGD,715,District,1868,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false, +LGD,5539,Block,Tiptur,LGD,548,District,5539,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,140,Block,Tira Sujanpur,LGD,17,District,140,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +LGD,1635,Block,Tirbin Eac,LGD,724,District,1635,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false, +LGD,2858,Block,Tiring,LGD,365,District,2858,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,3668,Block,Tirodi,LGD,392,District,3668,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,4044,Block,Tirora,LGD,476,District,4044,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +LGD,5519,Block,Tirthahalli,LGD,547,District,5519,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +LGD,2939,Block,Tirtol,LGD,355,District,2939,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +LGD,5868,Block,Tiruchendur,LGD,594,District,5868,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,5745,Block,Tiruchengode,LGD,580,District,5745,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +LGD,6620,Block,Tiruchirappalli East,LGD,591,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,5779,Block,Tiruchirappalli West,LGD,591,District,5779,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +LGD,5852,Block,Tiruchuli,LGD,597,District,5852,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,5709,Block,Tirukalukundram,LGD,730,District,5709,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +LGD,5732,Block,Tirukkoyilur,LGD,729,District,5732,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +LGD,5575,Block,Tirumakudal - Narsipur,LGD,545,District,5575,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +LGD,6306,Block,Tirumalagiri Sagar,LGD,514,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4754,Block,Tirumalayapalem,LGD,509,District,4754,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,4499,Block,Tirumalgiri,LGD,507,District,4499,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +LGD,5876,Block,Tirunelveli,LGD,592,District,5876,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +LGD,5720,Block,Tirupathur,LGD,732,District,5720,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +LGD,5375,Block,Tirupati (Rural),LGD,752,District,5375,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5383,Block,Tirupati (Urban),LGD,752,District,5383,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5958,Block,Tiruporur,LGD,730,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +LGD,5967,Block,Tiruppurnorth,LGD,634,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,5968,Block,Tiruppursouth,LGD,634,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,5644,Block,Tirur,LGD,562,District,5644,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +LGD,5645,Block,Tirurangadi,LGD,562,District,5645,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +LGD,5696,Block,Tiruttani,LGD,589,District,5696,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,5855,Block,Tiruvadanai,LGD,583,District,5855,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +LGD,5727,Block,Tiruvannamalai,LGD,593,District,5727,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,6642,Block,Tiruvengadam,LGD,733,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +LGD,5982,Block,Tiruvottiyur,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,4997,Block,Tiruvuru,LGD,749,District,4997,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,835,Block,Tirwa,LGD,155,District,835,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +LGD,4333,Block,Tiryani,LGD,699,District,4333,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,6649,Block,Tisayanvilai,LGD,592,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +LGD,2533,Block,Tisri,LGD,329,District,2533,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +LGD,5611,Block,Tiswadi,LGD,551,District,5611,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +LGD,2080,Block,Titabor,LGD,290,District,2080,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +LGD,3152,Block,Titlagarh,LGD,345,District,3152,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,5794,Block,Tittakudi,LGD,570,District,5794,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,1745,Block,Tizit,LGD,247,District,1745,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,7358,Block,Tlabung,LGD,265,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false, +LGD,1901,Block,Tlangnuam,LGD,261,District,1901,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +LGD,4946,Block,T.Narasapuram,LGD,748,District,4946,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1756,Block,Tobu,LGD,247,District,1756,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,520,Block,Todabhim,LGD,108,District,520,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +LGD,619,Block,Todaraisingh,LGD,116,District,619,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,387,Block,Tohana,LGD,61,District,387,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +LGD,3365,Block,Tokapal,LGD,374,District,3365,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +LGD,5988,Block,Tokiye,LGD,251,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,7168,Block,Tondiarpet,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,7317,Block,Tongpal,LGD,642,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +LGD,618,Block,Tonk,LGD,116,District,618,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,3524,Block,Tonk Khurd,LGD,402,District,3524,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,2737,Block,Tonto,LGD,343,District,2737,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +LGD,7142,Block,Toonga,LGD,102,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +LGD,4482,Block,Toopran,LGD,513,District,4482,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,2581,Block,Topchanchi,LGD,325,District,2581,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,2701,Block,Torpa,LGD,606,District,2701,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false, +LGD,1600,Block,Toru Circle,LGD,237,District,1600,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +LGD,399,Block,Tosham,LGD,59,District,399,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +LGD,50,Block,Tral,LGD,11,District,50,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +LGD,6784,Block,Trehgam,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,7176,Block,Tribal Taluk Office Attappadi,LGD,563,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +LGD,1111,Block,Tribeniganj,LGD,223,District,1111,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +LGD,4151,Block,Trimbakeshwar,LGD,487,District,4151,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,5099,Block,Tripuranthakam,LGD,790,District,5099,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4662,Block,Tripuraram,LGD,514,District,4662,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,1843,Block,Tseminyu,LGD,757,District,1843,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1844,Block,Tsogin,LGD,757,District,1844,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,5238,Block,T.Sundupalle,LGD,504,District,5238,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,5085,Block,Tsunduru,LGD,750,District,5085,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5990,Block,Tsurangkong,LGD,246,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,1826,Block,Tsurungto,LGD,765,District,1826,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,1817,Block,Tuensang Sadar,LGD,249,District,1817,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false, +LGD,2185,Block,Tufanganj - I,LGD,308,District,2185,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,2186,Block,Tufanganj - II,LGD,308,District,2186,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +LGD,5293,Block,Tuggali,LGD,511,District,5293,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,1870,Block,Tuibong,LGD,254,District,1870,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +LGD,6812,Block,Tulail,LGD,623,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +LGD,1760,Block,Tuli,LGD,246,District,1760,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +LGD,4241,Block,Tuljapur,LGD,488,District,4241,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +LGD,6807,Block,Tullamulla Khirbhawani,LGD,626,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +LGD,926,Block,Tulsipur,LGD,127,District,926,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +LGD,5537,Block,Tumakuru,LGD,548,District,5537,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,4037,Block,Tumsar,LGD,471,District,4037,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +LGD,3121,Block,Tumudibandha,LGD,359,District,3121,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +LGD,7295,Block,Tundara,LGD,644,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +LGD,2579,Block,Tundi,LGD,325,District,2579,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +LGD,771,Block,Tundla,LGD,143,District,771,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +LGD,4890,Block,Tuni,LGD,746,District,4890,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,1042,Block,Turkaulia,LGD,213,District,1042,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +LGD,5540,Block,Turuvekere,LGD,548,District,5540,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +LGD,3143,Block,Tusura,LGD,345,District,3143,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +LGD,1658,Block,Tuting Adc,LGD,240,District,1658,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,6492,Block,T Vaichong,LGD,712,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +LGD,3574,Block,Tyonda,LGD,437,District,3574,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,301,Block,Tyuni,LGD,49,District,301,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +LGD,6413,Block,Uchana,LGD,65,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +LGD,6923,Block,Uchchain,LGD,91,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +LGD,3943,Block,Uchchhal,LGD,641,District,3943,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +LGD,1222,Block,Uchkagaon,LGD,197,District,1222,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +LGD,6693,Block,Udaipur,LGD,654,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +LGD,114,Block,Udaipur,LGD,21,District,114,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +LGD,3597,Block,Udaipura,LGD,421,District,3597,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +LGD,492,Block,Udaipurwati,LGD,106,District,492,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +LGD,2884,Block,Udala,LGD,365,District,2884,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +LGD,2152,Block,Udalguri,LGD,617,District,2152,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +LGD,2098,Block,Udarbond,LGD,282,District,2098,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +LGD,5154,Block,Udayagiri,LGD,515,District,5154,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5786,Block,Udayarpalayam,LGD,610,District,5786,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +LGD,6535,Block,Udaynagar,LGD,402,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +LGD,2398,Block,Udaynarayanpur,LGD,313,District,2398,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,3249,Block,Udaypur,LGD,389,District,3249,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +LGD,4235,Block,Udgir,LGD,481,District,4235,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +LGD,5756,Block,Udhagamandalam,LGD,587,District,5756,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +LGD,72,Block,Udhampur,LGD,14,District,72,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +LGD,6522,Block,Udhna,LGD,459,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,2570,Block,Udhwa,LGD,340,District,2570,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +LGD,5906,Block,Udumalaipettai,LGD,634,District,5906,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,5665,Block,Udumbanchola,LGD,556,District,5665,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +LGD,5523,Block,Udupi,LGD,549,District,5523,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +LGD,1426,Block,Udwant Nagar,LGD,193,District,1426,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +LGD,7114,Block,Ujani Majuli Circle,LGD,706,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false, +LGD,1298,Block,Ujiarpur,LGD,217,District,1298,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,3513,Block,Ujjain,LGD,435,District,3513,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,7046,Block,Ujjain Nagar,LGD,435,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,7550,Block,Ukai,LGD,641,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +LGD,290,Block,Ukhimath,LGD,54,District,290,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +LGD,1888,Block,Ukhrul,LGD,260,District,1888,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.237716,94.429581,inherited:District,94.117545,24.941268,94.740761,25.692090,SOI_Districts,2023-12-11,false, +LGD,6441,Block,Uklana St,LGD,63,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +LGD,4912,Block,U.Kothapalli,LGD,746,District,4912,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5152,Block,Ulavapadu,LGD,517,District,5152,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,4169,Block,Ulhasnagar,LGD,497,District,4169,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +LGD,7197,Block,Ullala,LGD,534,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +LGD,2407,Block,Uluberia - I,LGD,313,District,2407,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,2406,Block,Uluberia - II,LGD,313,District,2406,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +LGD,3136,Block,Ulunda,LGD,372,District,3136,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +LGD,5735,Block,Ulundurpettai,LGD,729,District,5735,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +LGD,4086,Block,Umarkhed,LGD,500,District,4086,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,3189,Block,Umarkote,LGD,366,District,3189,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +LGD,3934,Block,Umarpada,LGD,459,District,3934,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +LGD,3931,Block,Umbergaon,LGD,462,District,3931,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,1985,Block,Umling,LGD,276,District,1985,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +LGD,3853,Block,Umrala,LGD,443,District,3853,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,4034,Block,Umred,LGD,484,District,4034,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +LGD,3863,Block,Umreth,LGD,440,District,3863,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +LGD,3653,Block,Umreth,LGD,399,District,3653,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +LGD,4103,Block,Umri,LGD,485,District,4103,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +LGD,1987,Block,Umsning,LGD,276,District,1987,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +LGD,6159,Block,Un,LGD,660,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false, +LGD,3838,Block,Una,LGD,675,District,3838,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +LGD,150,Block,Una,LGD,26,District,150,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +LGD,828,Block,Unchahar,LGD,175,District,828,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +LGD,3465,Block,Unchehara,LGD,426,District,3465,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +LGD,6299,Block,Undavelly,LGD,695,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,4976,Block,Undi,LGD,523,District,4976,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,4970,Block,Undrajavaram,LGD,505,District,4970,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +LGD,4962,Block,Unguturu,LGD,748,District,4962,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5013,Block,Unguturu,LGD,510,District,5013,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,7434,Block,Unhel,LGD,435,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +LGD,621,Block,Uniara,LGD,116,District,621,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +LGD,3753,Block,Unjha,LGD,451,District,3753,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,816,Block,Unnao,LGD,186,District,816,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +LGD,2623,Block,Untari Road,LGD,338,District,2623,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +LGD,3809,Block,Upleta,LGD,457,District,3809,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,4524,Block,Uppal,LGD,700,District,4524,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +LGD,4942,Block,Uppalaguptam,LGD,747,District,4942,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4580,Block,Uppununthala,LGD,694,District,4580,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,4172,Block,Uran,LGD,491,District,4172,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +LGD,5317,Block,Uravakonda,LGD,502,District,5317,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,37,Block,Uri,LGD,3,District,37,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,6295,Block,Urkonda,LGD,694,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,5838,Block,Usilampatti,LGD,578,District,5838,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,3377,Block,Usur,LGD,636,District,3377,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +LGD,5845,Block,Uthamapalayam,LGD,588,District,5845,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +LGD,5894,Block,Uthangarai,LGD,577,District,5894,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +LGD,5708,Block,Uthiramerur,LGD,574,District,5708,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +LGD,5695,Block,Uthukkottai,LGD,589,District,5695,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +LGD,6616,Block,Uthukuli,LGD,634,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +LGD,4571,Block,Utkoor,LGD,721,District,4571,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +LGD,4321,Block,Utnoor,LGD,501,District,4321,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +LGD,927,Block,Utraula,LGD,127,District,927,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +LGD,5302,Block,Uyyalawada,LGD,755,District,5302,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3762,Block,Vadali,LGD,458,District,3762,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +LGD,5399,Block,Vadamalapet,LGD,752,District,5399,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3738,Block,Vadgam,LGD,441,District,3738,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +LGD,5837,Block,Vadipatti,LGD,578,District,5837,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +LGD,3755,Block,Vadnagar,LGD,451,District,3755,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,6529,Block,Vadodara East,LGD,461,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,6527,Block,Vadodara North,LGD,461,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,3898,Block,Vadodara Rural,LGD,461,District,3898,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,6526,Block,Vadodara South,LGD,461,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,6528,Block,Vadodara West,LGD,461,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,3899,Block,Vaghodia,LGD,461,District,3899,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +LGD,3915,Block,Vagra,LGD,442,District,3915,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,4276,Block,Vaibhavvadi,LGD,495,District,4276,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +LGD,4139,Block,Vaijapur,LGD,469,District,4139,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +LGD,5669,Block,Vaikom,LGD,560,District,5669,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +LGD,4365,Block,Vailpoor,LGD,516,District,4365,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,1268,Block,Vaishali,LGD,224,District,1268,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +LGD,5316,Block,Vajrakarur,LGD,502,District,5316,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,4781,Block,Vajrapukotturu,LGD,519,District,4781,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +LGD,5192,Block,Vakadu,LGD,752,District,5192,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5803,Block,Valangaiman,LGD,590,District,5803,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +LGD,3920,Block,Valia,LGD,442,District,3920,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +LGD,4627,Block,Valigonda,LGD,697,District,4627,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,3851,Block,Vallabhipur,LGD,443,District,3851,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +LGD,690,Block,Vallabhnagar,LGD,117,District,690,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +LGD,5225,Block,Vallur,LGD,504,District,5225,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,5388,Block,Valmikipuram,LGD,753,District,5388,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3946,Block,Valod,LGD,641,District,3946,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +LGD,5900,Block,Valparai,LGD,569,District,5900,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +LGD,3927,Block,Valsad,LGD,462,District,3927,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,7599,Block,Valsad City,LGD,462,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,7405,Block,Vanapuram,LGD,729,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +LGD,7058,Block,Vandalur,LGD,730,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +LGD,5723,Block,Vandavasi,LGD,593,District,5723,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,6507,Block,Vangai Range,LGD,715,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false, +LGD,4785,Block,Vangara,LGD,521,District,4785,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,4577,Block,Vangoor,LGD,694,District,4577,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,5718,Block,Vaniyambadi,LGD,732,District,5718,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +LGD,3826,Block,Vanthali,LGD,448,District,3826,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,5730,Block,Vanur,LGD,596,District,5730,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,6031,Block,Vapi,LGD,462,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,7596,Block,Vapi City,LGD,462,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +LGD,5381,Block,Varadaiahpalem,LGD,752,District,5381,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,996,Block,Varanasi Sadar,LGD,187,District,996,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +LGD,4733,Block,Vararamachandrapuram,LGD,791,District,4733,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5155,Block,Varikuntapadu,LGD,515,District,5155,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5946,Block,Varkala,LGD,565,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +LGD,3562,Block,Varla,LGD,393,District,3562,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +LGD,4376,Block,Varni,LGD,516,District,4376,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,4164,Block,Vasai,LGD,665,District,4164,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +LGD,4115,Block,Vasmath,LGD,477,District,4115,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +LGD,6034,Block,Vaso,LGD,450,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +LGD,5638,Block,Vatakara,LGD,561,District,5638,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +LGD,6291,Block,Vatpally,LGD,691,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,4990,Block,Vatsavai,LGD,749,District,4990,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5080,Block,Vatticherukuru,LGD,506,District,5080,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +LGD,6516,Block,Vatva,LGD,438,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,3732,Block,Vav,LGD,789,District,3732,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +LGD,5742,Block,Vazhapadi,LGD,584,District,5742,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,5802,Block,Vedaranyam,LGD,579,District,5802,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +LGD,5762,Block,Vedasandur,LGD,572,District,5762,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +LGD,5397,Block,Vedurukuppam,LGD,503,District,5397,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,4439,Block,Veenavanka,LGD,508,District,4439,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,5242,Block,Veeraballe,LGD,504,District,5242,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4769,Block,Veeraghattam,LGD,743,District,4769,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5872,Block,Veerakeralamputhur,LGD,733,District,5872,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +LGD,5222,Block,Veerapunayunipalle,LGD,504,District,5222,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4983,Block,Veeravasaram,LGD,523,District,4983,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,6220,Block,Veernapalli,LGD,683,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,4994,Block,Veerullapadu,LGD,749,District,4994,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6514,Block,Vejalpur,LGD,438,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,7171,Block,Velachery,LGD,568,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +LGD,6252,Block,Velair,LGD,686,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +LGD,4734,Block,Velairpadu,LGD,748,District,4734,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4565,Block,Veldanda,LGD,694,District,4565,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +LGD,5278,Block,Veldurthy,LGD,511,District,5278,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5041,Block,Veldurthy,LGD,751,District,5041,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4398,Block,Velgatur,LGD,681,District,4398,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +LGD,4197,Block,Velhe,LGD,490,District,4197,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +LGD,5135,Block,Veligandla,LGD,790,District,5135,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5933,Block,Vellarikkundu,LGD,558,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +LGD,5717,Block,Vellore,LGD,595,District,5717,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +LGD,5282,Block,Velugodu,LGD,755,District,5282,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4330,Block,Vemanpally,LGD,684,District,4330,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +LGD,6624,Block,Vembakkam,LGD,593,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +LGD,6640,Block,Vembakottai,LGD,597,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,5233,Block,Vempalli,LGD,504,District,5233,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4768,Block,Vemsoor,LGD,509,District,4768,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,5220,Block,Vemula,LGD,504,District,5220,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4644,Block,Vemulapally,LGD,514,District,4644,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +LGD,4430,Block,Vemulawada,LGD,683,District,4430,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,6218,Block,Vemulawada Rural,LGD,683,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,5087,Block,Vemuru,LGD,750,District,5087,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4279,Block,Vengurla,LGD,495,District,4279,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +LGD,5182,Block,Venkatachalam,LGD,515,District,5182,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5187,Block,Venkatagiri,LGD,752,District,5187,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5424,Block,Venkatagirikota,LGD,503,District,5424,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,4684,Block,Venkatapur,LGD,720,District,4684,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,4724,Block,Venkatapuram,LGD,720,District,4724,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,4832,Block,Vepada,LGD,521,District,4832,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,5974,Block,Veppanthattai,LGD,581,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +LGD,5953,Block,Veppur,LGD,570,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,7446,Block,Veraval City,LGD,675,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +LGD,5124,Block,Vetapalem,LGD,750,District,5124,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5308,Block,Vidapanakal,LGD,502,District,5308,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5168,Block,Vidavalur,LGD,515,District,5168,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,3579,Block,Vidisha,LGD,437,District,3579,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,7017,Block,Vidisha Nagar,LGD,437,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +LGD,1296,Block,Vidyapati Nagar,LGD,217,District,1296,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,464,Block,Vijainagar,LGD,100,District,464,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +LGD,6661,Block,Vijainagar,LGD,774,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3756,Block,Vijapur,LGD,451,District,3756,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,5449,Block,Vijayapura,LGD,530,District,5449,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +LGD,5405,Block,Vijayapuram,LGD,503,District,5405,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,5010,Block,Vijayawada Central,LGD,749,District,5010,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6863,Block,Vijayawada East,LGD,749,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6864,Block,Vijayawada North,LGD,749,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5011,Block,Vijayawada (Rural),LGD,749,District,5011,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6865,Block,Vijayawada West,LGD,749,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,3761,Block,Vijaynagar,LGD,458,District,3761,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +LGD,6722,Block,Vijaypur,LGD,624,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +LGD,3380,Block,Vijaypur,LGD,431,District,3380,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +LGD,3624,Block,Vijayraghavgarh,LGD,413,District,3624,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +LGD,1679,Block,Vijoynagar Eac,LGD,229,District,1679,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,4530,Block,Vikarabad,LGD,698,District,4530,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,303,Block,Vikas Nagar,LGD,49,District,303,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +LGD,7591,Block,Vikaspuri,LGD,85,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false, +LGD,4159,Block,Vikramgad,LGD,665,District,4159,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +LGD,5978,Block,Vikravandi,LGD,596,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,5864,Block,Vilathikulam,LGD,594,District,5864,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +LGD,5881,Block,Vilavancode,LGD,575,District,5881,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +LGD,7206,Block,Villgam,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,5911,Block,Villianur,LGD,600,District,5911,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +LGD,5731,Block,Viluppuram,LGD,596,District,5731,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +LGD,6198,Block,Vinchchiya,LGD,457,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +LGD,5161,Block,Vinjamur,LGD,515,District,5161,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +LGD,5062,Block,Vinukonda,LGD,751,District,5062,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5568,Block,Virajpet,LGD,541,District,5568,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +LGD,6614,Block,Viralimalai,LGD,582,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +LGD,3779,Block,Viramgam,LGD,438,District,3779,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +LGD,539,Block,Viratnagar,LGD,782,District,539,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +LGD,3870,Block,Virpur,LGD,669,District,3870,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +LGD,5793,Block,Virudhachalam,LGD,570,District,5793,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +LGD,5850,Block,Virudhunagar,LGD,597,District,5850,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,4866,Block,Visakhapatnam (Rural),LGD,520,District,4866,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +LGD,3829,Block,Visavadar,LGD,448,District,3829,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +LGD,2369,Block,Vishnupur,LGD,305,District,2369,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +LGD,7586,Block,Vishwas Nagar,LGD,78,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false, +LGD,3754,Block,Visnagar,LGD,451,District,3754,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +LGD,5000,Block,Vissannapeta,LGD,749,District,5000,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4836,Block,Vizianagaram Rural,LGD,521,District,4836,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,7431,Block,Vizianagaram Urban,LGD,521,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +LGD,1767,Block,V.K.,LGD,251,District,1767,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +LGD,5147,Block,Voletivaripalem,LGD,517,District,5147,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,5228,Block,Vontimitta,LGD,504,District,5228,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,4445,Block,V.Saidapur,LGD,508,District,4445,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +LGD,5027,Block,Vuyyuru,LGD,510,District,5027,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +LGD,3945,Block,Vyara,LGD,641,District,3945,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +LGD,7472,Block,Vyasanagar,LGD,356,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +LGD,5637,Block,Vythiri,LGD,567,District,5637,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +LGD,4162,Block,Wada,LGD,665,District,4162,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +LGD,7095,Block,Wadagera,LGD,635,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +LGD,4610,Block,Waddepally,LGD,695,District,4610,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,3792,Block,Wadhwan,LGD,460,District,3792,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +LGD,3238,Block,Wadrafnagar,LGD,649,District,3238,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +LGD,4220,Block,Wadwani,LGD,470,District,4220,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +LGD,6023,Block,Waghai,LGD,444,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false, +LGD,6823,Block,Wagoora,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,4256,Block,Wai,LGD,494,District,4256,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +LGD,6486,Block,Waikhong,LGD,711,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.427861,93.917808,inherited:District,93.837490,24.236488,94.047730,24.557563,SOI_Districts,2023-12-11,false, +LGD,4723,Block,Wajedu,LGD,720,District,4723,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +LGD,1749,Block,Wakching,LGD,247,District,1749,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +LGD,6012,Block,Wakka Sdo,LGD,666,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false, +LGD,6808,Block,Wakoora,LGD,626,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +LGD,1730,Block,Wakro Circle,LGD,234,District,1730,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false, +LGD,6626,Block,Walajabad,LGD,574,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +LGD,5714,Block,Wallajah,LGD,731,District,5714,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +LGD,1742,Block,Walong Circle,LGD,628,District,1742,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +LGD,4296,Block,Walwa,LGD,493,District,4296,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +LGD,4595,Block,Wanaparthy,LGD,693,District,4595,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,1882,Block,Wangoi,LGD,256,District,1882,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +LGD,4094,Block,Wani,LGD,500,District,4094,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,3801,Block,Wankaner,LGD,673,District,3801,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +LGD,4314,Block,Wankidi,LGD,699,District,4314,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +LGD,1999,Block,Wapung,LGD,657,District,1999,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false, +LGD,4706,Block,Warangal,LGD,522,District,4706,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,3669,Block,Waraseoni,LGD,392,District,3669,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +LGD,4019,Block,Wardha,LGD,498,District,4019,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +LGD,4704,Block,Wardhannapet,LGD,522,District,4704,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +LGD,4485,Block,Wargal,LGD,692,District,4485,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +LGD,1513,Block,Warisaliganj,LGD,210,District,1513,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +LGD,1285,Block,Warisnagar,LGD,217,District,1285,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +LGD,4064,Block,Warora,LGD,473,District,4064,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +LGD,4007,Block,Warud,LGD,468,District,4007,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +LGD,6766,Block,Warwan,LGD,620,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +LGD,4238,Block,Washi,LGD,488,District,4238,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +LGD,3999,Block,Washim,LGD,499,District,3999,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +LGD,6825,Block,Watergam,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,6675,Block,Watrap,LGD,597,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +LGD,6386,Block,Wazeerpur,LGD,113,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +LGD,6420,Block,Wazirabad St,LGD,62,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +LGD,1507,Block,Wazirganj,LGD,196,District,1507,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +LGD,4608,Block,Weepangandla,LGD,693,District,4608,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,512,Block,Weir,LGD,91,District,512,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +LGD,1897,Block,West Phaileng,LGD,266,District,1897,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false, +LGD,5992,Block,Weziho,LGD,788,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +LGD,6485,Block,Willong,LGD,257,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +LGD,1789,Block,Wokha Sadar,LGD,250,District,1789,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,1788,Block,Wozhuro,LGD,250,District,1788,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +LGD,4764,Block,Wyra,LGD,509,District,4764,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,4548,Block,Yacharam,LGD,518,District,4548,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +LGD,1697,Block,Yachuli Adc,LGD,786,District,1697,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,4616,Block,Yadagirigutta,LGD,697,District,4616,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +LGD,5430,Block,Yadamarri,LGD,503,District,5430,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +LGD,5589,Block,Yadgir,LGD,635,District,5589,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +LGD,5312,Block,Yadiki,LGD,502,District,5312,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,7089,Block,Yadrami,LGD,538,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +LGD,314,Block,Yamkeshwar,LGD,52,District,314,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +LGD,6082,Block,Yamuna Vihar,LGD,81,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false, +LGD,5908,Block,Yanam,LGD,600,District,5908,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +LGD,6400,Block,Yangang,LGD,227,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false, +LGD,1704,Block,Yangte Circle,LGD,677,District,1704,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false, +LGD,7195,Block,Yaragatti,LGD,527,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +LGD,6781,Block,Yaripora,LGD,622,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +LGD,6579,Block,Yatdam Circle,LGD,229,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +LGD,4082,Block,Yavatmal,LGD,500,District,4082,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,3961,Block,Yawal,LGD,478,District,3961,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +LGD,1698,Block,Yazali Circle,LGD,786,District,1698,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +LGD,4369,Block,Yedapally,LGD,516,District,4369,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,5107,Block,Yeddana Pudi,LGD,750,District,5107,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,7533,Block,Yedula,LGD,693,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +LGD,7103,Block,Yelahanka,LGD,525,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +LGD,4536,Block,Yelal,LGD,698,District,4536,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +LGD,4879,Block,Yelamanchili,LGD,744,District,4879,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4989,Block,Yelamanchili,LGD,523,District,4989,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +LGD,5578,Block,Yelandur,LGD,531,District,5578,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +LGD,5464,Block,Yelbarga,LGD,543,District,5464,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +LGD,4481,Block,Yeldurthy,LGD,513,District,4481,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +LGD,4893,Block,Yeleswaram,LGD,746,District,4893,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4740,Block,Yellandu,LGD,690,District,4740,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +LGD,5327,Block,Yellanur,LGD,502,District,5327,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +LGD,5481,Block,Yellapur,LGD,550,District,5481,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +LGD,4432,Block,Yellareddipet,LGD,683,District,4432,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +LGD,4386,Block,Yellareddy,LGD,685,District,4386,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +LGD,5254,Block,Yemmiganur,LGD,511,District,5254,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +LGD,5741,Block,Yercaud,LGD,584,District,5741,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +LGD,6239,Block,Yergatla,LGD,516,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +LGD,5377,Block,Yerpedu,LGD,752,District,5377,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5097,Block,Yerragondapalem,LGD,790,District,5097,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,5223,Block,Yerraguntla,LGD,504,District,5223,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +LGD,7517,Block,Yerravalli,LGD,695,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +LGD,5374,Block,Yerravaripalem,LGD,752,District,5374,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4767,Block,Yerrupalem,LGD,509,District,4767,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +LGD,6063,Block,Yetapaka,LGD,791,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,4156,Block,Yevla,LGD,487,District,4156,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +LGD,1663,Block,Yingkiong Circle,LGD,240,District,1663,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +LGD,1633,Block,Yomcha Adc,LGD,243,District,1633,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,28.159942,94.613450,inherited:District,94.356497,27.985924,94.943819,28.403567,SOI_Districts,2023-12-11,false, +LGD,1832,Block,Yongnyah,LGD,615,District,1832,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false, +LGD,4886,Block,Y. Ramavaram,LGD,791,District,4886,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +LGD,6397,Block,Yuksom,LGD,228,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false, +LGD,6790,Block,Zachaldara,LGD,8,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +LGD,4696,Block,Zaffergadh,LGD,689,District,4696,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +LGD,4474,Block,Zahirabad,LGD,691,District,4474,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +LGD,6797,Block,Zainapora,LGD,625,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false, +LGD,6826,Block,Zaingeer,LGD,3,District,0,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +LGD,991,Block,Zamania,LGD,146,District,991,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +LGD,15,Block,Zanskar,LGD,6,District,15,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +LGD,4093,Block,Zari-Jamani,LGD,500,District,4093,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +LGD,5142,Block,Zarugumalli,LGD,517,District,5142,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +LGD,1896,Block,Zawlnuam,LGD,266,District,1896,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false, +LGD,1556,Block,Zemithang Circle,LGD,238,District,1556,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +LGD,1967,Block,Zikzak,LGD,663,District,1967,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false, +LGD,234,Block,Zira,LGD,31,District,234,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +LGD,1239,Block,Ziradei,LGD,222,District,1239,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +LGD,1695,Block,Ziro Hq,LGD,236,District,1695,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,27.588340,93.776522,inherited:District,93.530956,27.291471,94.106246,27.938333,SOI_Districts,2023-12-11,false, +LGD,1810,Block,Zuketsa,LGD,248,District,1810,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +LGD,1772,Block,Zunheboto Sadar,LGD,251,District,1772,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +IN-PIN,110010,PostalCode,New Delhi,LGD,79,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.577155,77.148588,inherited:District,77.050629,28.483932,77.256066,28.646095,SOI_Districts,2023-12-11,false, +IN-PIN,110024,PostalCode,South East,LGD,670,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false, +IN-PIN,110025,PostalCode,South East,LGD,670,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false, +IN-PIN,110030,PostalCode,South,LGD,83,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +IN-PIN,110031,PostalCode,East,LGD,78,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false, +IN-PIN,110032,PostalCode,North East,LGD,81,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false, +IN-PIN,110036,PostalCode,North,LGD,80,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false, +IN-PIN,110037,PostalCode,South West,LGD,84,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +IN-PIN,110038,PostalCode,South,LGD,83,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +IN-PIN,110039,PostalCode,Outer North,LGD,794,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +IN-PIN,110040,PostalCode,Outer North,LGD,794,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +IN-PIN,110041,PostalCode,North West,LGD,82,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false, +IN-PIN,110042,PostalCode,North,LGD,80,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false, +IN-PIN,110043,PostalCode,South West,LGD,84,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +IN-PIN,110044,PostalCode,South East,LGD,670,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false, +IN-PIN,110047,PostalCode,South,LGD,83,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +IN-PIN,110053,PostalCode,North East,LGD,81,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false, +IN-PIN,110057,PostalCode,South,LGD,83,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +IN-PIN,110059,PostalCode,West,LGD,85,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.655426,77.063965,inherited:District,76.953800,28.596217,77.181192,28.702051,SOI_Districts,2023-12-11,false, +IN-PIN,110061,PostalCode,South West,LGD,84,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +IN-PIN,110068,PostalCode,South,LGD,83,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +IN-PIN,110071,PostalCode,South West,LGD,84,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +IN-PIN,110072,PostalCode,South West,LGD,84,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +IN-PIN,110073,PostalCode,South West,LGD,84,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +IN-PIN,110074,PostalCode,South,LGD,83,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +IN-PIN,110076,PostalCode,South East,LGD,670,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.542227,77.272944,inherited:District,77.200160,28.480652,77.347571,28.608668,SOI_Districts,2023-12-11,false, +IN-PIN,110080,PostalCode,South,LGD,83,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.481463,77.190717,inherited:District,77.110778,28.404668,77.252639,28.569243,SOI_Districts,2023-12-11,false, +IN-PIN,110081,PostalCode,North West,LGD,82,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false, +IN-PIN,110082,PostalCode,Outer North,LGD,794,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +IN-PIN,110084,PostalCode,North,LGD,80,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false, +IN-PIN,110085,PostalCode,Outer North,LGD,794,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +IN-PIN,110086,PostalCode,North West,LGD,82,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.725251,77.043125,inherited:District,76.941891,28.656122,77.185831,28.818183,SOI_Districts,2023-12-11,false, +IN-PIN,110090,PostalCode,North,LGD,80,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.793505,77.107739,inherited:District,76.961797,28.684401,77.224393,28.883500,SOI_Districts,2023-12-11,false, +IN-PIN,110093,PostalCode,East,LGD,78,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false, +IN-PIN,110094,PostalCode,North East,LGD,81,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.722615,77.256547,inherited:District,77.216027,28.670071,77.298273,28.786533,SOI_Districts,2023-12-11,false, +IN-PIN,110096,PostalCode,East,LGD,78,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.622088,77.304590,inherited:District,77.269601,28.583839,77.342563,28.657921,SOI_Districts,2023-12-11,false, +IN-PIN,110097,PostalCode,South West,LGD,84,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576241,76.967730,inherited:District,76.838892,28.500777,77.106151,28.670189,SOI_Districts,2023-12-11,false, +IN-PIN,110099,PostalCode,Outer North,LGD,794,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.643370,77.115437,inherited:State,76.838892,28.404668,77.347571,28.883500,SOI_States,2023-12-11,false, +IN-PIN,121001,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121002,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121003,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121004,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121005,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121006,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121007,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121010,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121012,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121013,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121101,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121102,PostalCode,Faridabad,LGD,60,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.352029,77.342381,inherited:District,77.149250,28.200428,77.507073,28.513244,SOI_Districts,2023-12-11,false, +IN-PIN,121103,PostalCode,Palwal,LGD,619,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +IN-PIN,121105,PostalCode,Palwal,LGD,619,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +IN-PIN,121106,PostalCode,Palwal,LGD,619,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +IN-PIN,121107,PostalCode,Palwal,LGD,619,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.062991,77.334914,inherited:District,77.120633,27.847418,77.550421,28.272346,SOI_Districts,2023-12-11,false, +IN-PIN,122001,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122003,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122004,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122050,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122101,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122102,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122103,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122104,PostalCode,Nuh,LGD,604,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +IN-PIN,122105,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122107,PostalCode,Nuh,LGD,604,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +IN-PIN,122108,PostalCode,Nuh,LGD,604,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +IN-PIN,122413,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122414,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122502,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122503,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122504,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122505,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122506,PostalCode,Gurugram,LGD,62,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.369140,76.939969,inherited:District,76.650287,28.199004,77.241868,28.541407,SOI_Districts,2023-12-11,false, +IN-PIN,122508,PostalCode,Nuh,LGD,604,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.985194,77.050196,inherited:District,76.852937,27.652271,77.336426,28.335662,SOI_Districts,2023-12-11,false, +IN-PIN,123001,PostalCode,Mahendragarh,LGD,69,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +IN-PIN,123021,PostalCode,Mahendragarh,LGD,69,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +IN-PIN,123023,PostalCode,Mahendragarh,LGD,69,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +IN-PIN,123024,PostalCode,Mahendragarh,LGD,69,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +IN-PIN,123027,PostalCode,Mahendragarh,LGD,69,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +IN-PIN,123028,PostalCode,Mahendragarh,LGD,69,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +IN-PIN,123029,PostalCode,Mahendragarh,LGD,69,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +IN-PIN,123034,PostalCode,Mahendragarh,LGD,69,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.171027,76.138339,inherited:District,75.895176,27.797391,76.368009,28.468501,SOI_Districts,2023-12-11,false, +IN-PIN,123035,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123101,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123102,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123103,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123106,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123110,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123301,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123302,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123303,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123401,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123411,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123412,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,123501,PostalCode,Rewari,LGD,72,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.240787,76.536358,inherited:District,76.280145,27.963675,76.859074,28.472946,SOI_Districts,2023-12-11,false, +IN-PIN,124001,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124010,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124021,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124022,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124102,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124103,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124104,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124105,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124106,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124107,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124108,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124109,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124111,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124112,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124113,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124142,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124146,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124201,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124202,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124303,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124401,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124404,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124406,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124411,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124412,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124501,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124504,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124505,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124506,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124507,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124508,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,124513,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124514,PostalCode,Rohtak,LGD,73,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.912077,76.530277,inherited:District,76.212384,28.682572,76.868747,29.098335,SOI_Districts,2023-12-11,false, +IN-PIN,124515,PostalCode,Jhajjar,LGD,64,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.604827,76.648173,inherited:District,76.282746,28.356203,76.967830,28.839708,SOI_Districts,2023-12-11,false, +IN-PIN,125001,PostalCode,Hisar,LGD,63,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +IN-PIN,125004,PostalCode,Hisar,LGD,63,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +IN-PIN,125005,PostalCode,Hisar,LGD,63,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +IN-PIN,125006,PostalCode,Hisar,LGD,63,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +IN-PIN,125007,PostalCode,Hisar,LGD,63,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.211695,75.822441,inherited:District,75.328016,28.898616,76.318096,29.580338,SOI_Districts,2023-12-11,false, +IN-PIN,125033,PostalCode,Hansi,LGD,792,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +IN-PIN,125037,PostalCode,Hansi,LGD,792,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +IN-PIN,125038,PostalCode,Hansi,LGD,792,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +IN-PIN,125039,PostalCode,Hansi,LGD,792,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +IN-PIN,125042,PostalCode,Hansi,LGD,792,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +IN-PIN,125044,PostalCode,Hansi,LGD,792,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +IN-PIN,125047,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125048,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125049,PostalCode,Hansi,LGD,792,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +IN-PIN,125050,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125051,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125052,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125053,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125054,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125055,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125058,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125060,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125075,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125076,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125077,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125078,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125101,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125102,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125103,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125104,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125106,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125110,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125111,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125112,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125113,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125120,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125121,PostalCode,Hansi,LGD,792,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.197675,76.340342,inherited:State,74.473259,27.652271,77.604591,30.928543,SOI_States,2023-12-11,false, +IN-PIN,125133,PostalCode,Fatehabad,LGD,61,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.568879,75.576977,inherited:District,75.220004,29.249584,75.964268,29.822344,SOI_Districts,2023-12-11,false, +IN-PIN,125201,PostalCode,Sirsa,LGD,74,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.615601,74.900793,inherited:District,74.473259,29.222865,75.303860,29.992401,SOI_Districts,2023-12-11,false, +IN-PIN,125450,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,126101,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126102,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126110,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126111,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126112,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126113,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126114,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126115,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126116,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126125,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126152,PostalCode,Jind,LGD,65,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.435165,76.303632,inherited:District,75.933013,29.055414,76.762454,29.844762,SOI_Districts,2023-12-11,false, +IN-PIN,126214,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,126469,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,127021,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127022,PostalCode,Charkhi Dadri,LGD,701,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +IN-PIN,127025,PostalCode,Charkhi Dadri,LGD,701,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +IN-PIN,127026,PostalCode,Charkhi Dadri,LGD,701,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +IN-PIN,127027,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127028,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127029,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127030,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127031,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127032,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127035,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127040,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127041,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127042,PostalCode,Charkhi Dadri,LGD,701,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +IN-PIN,127043,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127045,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127046,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127111,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127114,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127201,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127306,PostalCode,Charkhi Dadri,LGD,701,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +IN-PIN,127307,PostalCode,Charkhi Dadri,LGD,701,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +IN-PIN,127308,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127309,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127310,PostalCode,Charkhi Dadri,LGD,701,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +IN-PIN,127311,PostalCode,Bhiwani,LGD,59,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.779986,75.890362,inherited:District,75.473396,28.383045,76.365349,29.081344,SOI_Districts,2023-12-11,false, +IN-PIN,127312,PostalCode,Charkhi Dadri,LGD,701,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.576821,76.153473,inherited:District,75.815935,28.385622,76.465720,28.814528,SOI_Districts,2023-12-11,false, +IN-PIN,131001,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131021,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131022,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131023,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131024,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131027,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131028,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131029,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131039,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131101,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131102,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131103,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131301,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131302,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131304,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131305,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131306,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131402,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131403,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131408,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,131409,PostalCode,Sonipat,LGD,75,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056549,76.874796,inherited:District,76.474533,28.793494,77.234746,29.289170,SOI_Districts,2023-12-11,false, +IN-PIN,132001,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132022,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132023,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132024,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132036,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132037,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132039,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132040,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132041,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132046,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132054,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132101,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132102,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132104,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132105,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132106,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132107,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132108,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132113,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132114,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132115,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132116,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132117,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,132122,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132140,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132145,PostalCode,Panipat,LGD,71,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.337959,76.928109,inherited:District,76.631911,29.161766,77.161155,29.533973,SOI_Districts,2023-12-11,false, +IN-PIN,132157,PostalCode,Karnal,LGD,67,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.688952,76.887790,inherited:District,76.462893,29.416477,77.229306,29.993439,SOI_Districts,2023-12-11,false, +IN-PIN,133001,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133004,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133005,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133006,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133008,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133101,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133102,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133103,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,133104,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133201,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133202,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133203,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133204,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,133205,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133206,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,133301,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,133302,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,134003,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,134005,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,134007,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,134008,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,134102,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,134103,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,134107,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,134109,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,134117,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,134118,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,134201,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,134202,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,134203,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,134204,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,134205,PostalCode,Panchkula,LGD,70,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.686460,76.977506,inherited:District,76.776087,30.470557,77.176996,30.928543,SOI_Districts,2023-12-11,false, +IN-PIN,135001,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,135002,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,135003,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,135004,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,135021,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,135101,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,135102,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,135103,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,135106,PostalCode,Yamunanagar,LGD,76,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.234263,77.302286,inherited:District,77.065272,29.935064,77.604591,30.496831,SOI_Districts,2023-12-11,false, +IN-PIN,135133,PostalCode,Ambala,LGD,58,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.328333,76.938819,inherited:District,76.543110,30.066239,77.212478,30.562953,SOI_Districts,2023-12-11,false, +IN-PIN,136020,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136021,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136026,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136027,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136030,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136033,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136034,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136035,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136038,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136042,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136043,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136044,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136117,PostalCode,Kaithal,LGD,66,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.811241,76.413852,inherited:District,76.168346,29.514414,76.717004,30.192428,SOI_Districts,2023-12-11,false, +IN-PIN,136118,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136119,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136128,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136129,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136130,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136131,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136132,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136135,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136136,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,136156,PostalCode,Kurukshetra,LGD,68,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.038696,76.784940,inherited:District,76.421710,29.866830,77.122779,30.254714,SOI_Districts,2023-12-11,false, +IN-PIN,140001,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140101,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140102,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140103,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140108,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140109,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140110,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140111,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140112,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140113,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140114,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140115,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140116,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140117,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140118,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140119,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140123,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140124,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140125,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140126,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140127,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140128,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140133,PostalCode,Rupnagar,LGD,42,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.062049,76.487646,inherited:District,76.286600,30.745516,76.737717,31.438192,SOI_Districts,2023-12-11,false, +IN-PIN,140201,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140301,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140306,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140307,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140308,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140401,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,140402,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140405,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140406,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140407,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140408,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140412,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140413,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140417,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,140501,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140506,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140507,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140601,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,140602,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140603,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140604,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,140701,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140702,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140802,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,140901,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,141001,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141003,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141007,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141008,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141010,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141012,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141013,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141014,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141015,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141101,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141102,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141103,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141104,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141105,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141107,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141108,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141109,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141110,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141112,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141113,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141114,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141115,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141116,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141117,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141118,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141119,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141120,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141121,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141122,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141123,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141125,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,141126,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141127,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141201,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141202,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141203,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141204,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141205,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141206,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141401,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141411,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,141412,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141413,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141414,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141415,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141416,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141417,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141418,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141419,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141421,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141422,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,141801,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,142001,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142002,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142003,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142011,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142021,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142022,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142023,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142024,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142025,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142026,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142027,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142029,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142030,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142031,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142032,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142033,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142034,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142035,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142036,PostalCode,Ludhiana,LGD,36,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.805395,75.832732,inherited:District,75.356163,30.560446,76.323712,31.018272,SOI_Districts,2023-12-11,false, +IN-PIN,142037,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142038,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142039,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142040,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142041,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142042,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,142043,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,142044,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,142045,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142046,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142047,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,142048,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142049,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142050,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,142052,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,142053,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142054,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142055,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142056,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142058,PostalCode,Moga,LGD,38,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.761814,75.170324,inherited:District,74.901791,30.486365,75.419616,31.089508,SOI_Districts,2023-12-11,false, +IN-PIN,142060,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,143001,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143008,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143009,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143022,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143101,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143102,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143103,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143105,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143107,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143108,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143109,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143110,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143111,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143112,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143113,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143114,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143115,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143116,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143117,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143118,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143119,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143149,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143201,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143202,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143203,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143204,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143205,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143301,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143302,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143303,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143304,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143305,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143401,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143402,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143406,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143407,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143408,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143409,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143410,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143411,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143412,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143413,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143414,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143415,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143416,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143417,PostalCode,Tarn Taran,LGD,609,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.336494,74.840379,inherited:District,74.510032,31.071986,75.279882,31.570816,SOI_Districts,2023-12-11,false, +IN-PIN,143419,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143501,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143502,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143503,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143504,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143505,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143506,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143507,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143511,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143512,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143513,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143514,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143515,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143516,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143517,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143518,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143519,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143520,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143521,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143525,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143526,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143527,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143528,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143529,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143530,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143531,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143532,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143533,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143534,PostalCode,Pathankot,LGD,662,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +IN-PIN,143601,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143602,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143603,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,143604,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143605,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,143606,PostalCode,Amritsar,LGD,27,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.705642,74.899424,inherited:District,74.486597,31.481693,75.404271,32.055206,SOI_Districts,2023-12-11,false, +IN-PIN,144001,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144002,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144003,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144004,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144005,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144008,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144020,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144021,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144022,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144024,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144025,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144026,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144027,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144028,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144029,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144030,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144031,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144032,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144033,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144034,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144035,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144036,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144037,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144038,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144039,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144040,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144041,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144042,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144043,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144044,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144101,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144102,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144103,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144104,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144105,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144106,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144201,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144202,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144204,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144207,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144208,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144209,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144210,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144211,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144212,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144213,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144214,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144216,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144221,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144222,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144223,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144224,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144301,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144302,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144303,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144305,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144306,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144311,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144401,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144402,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144403,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144404,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144405,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144406,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144407,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144408,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144409,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144410,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144411,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144415,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144416,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144417,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144418,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144419,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144421,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144422,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144501,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144502,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144503,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144504,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144505,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144506,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144507,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144508,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144509,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144510,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144511,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144512,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144513,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144514,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144515,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144516,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144517,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144518,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144519,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144520,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144521,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144522,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144523,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144524,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144525,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144526,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144527,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144528,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144529,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144530,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144531,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144532,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,144533,PostalCode,Shahid Bhagat Singh Nagar,LGD,40,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.110048,76.154318,inherited:District,75.787958,30.969043,76.518657,31.284583,SOI_Districts,2023-12-11,false, +IN-PIN,144601,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144602,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144603,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144606,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144620,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144621,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144622,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144623,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144624,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144625,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144626,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144628,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144629,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144630,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144631,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144632,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144633,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144701,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144702,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144703,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144801,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144802,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144803,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144804,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,144805,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144806,PostalCode,Jalandhar,LGD,34,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.212738,75.565804,inherited:District,75.076142,30.966094,75.958092,31.618131,SOI_Districts,2023-12-11,false, +IN-PIN,144819,PostalCode,Kapurthala,LGD,35,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.354438,75.400042,inherited:District,74.959855,31.119738,75.910253,31.651567,SOI_Districts,2023-12-11,false, +IN-PIN,145001,PostalCode,Pathankot,LGD,662,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +IN-PIN,145022,PostalCode,Pathankot,LGD,662,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +IN-PIN,145023,PostalCode,Pathankot,LGD,662,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +IN-PIN,145024,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,145025,PostalCode,Pathankot,LGD,662,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +IN-PIN,145026,PostalCode,Gurdaspur,LGD,32,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.916470,75.291003,inherited:District,74.888692,31.593547,75.600759,32.213897,SOI_Districts,2023-12-11,false, +IN-PIN,145027,PostalCode,Pathankot,LGD,662,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +IN-PIN,145029,PostalCode,Pathankot,LGD,662,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +IN-PIN,145101,PostalCode,Pathankot,LGD,662,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.296307,75.616245,inherited:District,75.320497,32.093058,75.937989,32.511563,SOI_Districts,2023-12-11,false, +IN-PIN,146021,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146023,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146024,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146101,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146102,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146103,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146104,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146105,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146106,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146107,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146108,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146109,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146110,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146111,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146112,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146113,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146114,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146115,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,146116,PostalCode,Hoshiarpur,LGD,33,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.625016,75.857919,inherited:District,75.471390,31.132741,76.349360,32.085741,SOI_Districts,2023-12-11,false, +IN-PIN,147001,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147002,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147004,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,147005,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147006,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,147007,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147021,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147101,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147102,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147103,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147104,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,147105,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147111,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147201,PostalCode,Patiala,LGD,41,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.281721,76.350755,inherited:District,75.929294,29.790912,76.788037,30.627857,SOI_Districts,2023-12-11,false, +IN-PIN,147202,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,147203,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,147301,PostalCode,Fatehgarh Sahib,LGD,30,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.642697,76.375469,inherited:District,76.075797,30.448264,76.633888,30.878785,SOI_Districts,2023-12-11,false, +IN-PIN,148001,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148002,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148017,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148018,PostalCode,Malerkotla,LGD,737,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +IN-PIN,148019,PostalCode,Malerkotla,LGD,737,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +IN-PIN,148020,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148021,PostalCode,Malerkotla,LGD,737,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +IN-PIN,148022,PostalCode,Malerkotla,LGD,737,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +IN-PIN,148023,PostalCode,Malerkotla,LGD,737,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.842128,75.415888,inherited:State,73.879776,29.542070,76.941462,32.511563,SOI_States,2023-12-11,false, +IN-PIN,148024,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148025,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148026,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148027,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148028,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148029,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148030,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148031,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148033,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148034,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148035,PostalCode,Sangrur,LGD,43,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.211970,75.869115,inherited:District,75.555345,29.727108,76.203490,30.692320,SOI_Districts,2023-12-11,false, +IN-PIN,148100,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148101,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148102,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148103,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148104,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148105,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148106,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148107,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148108,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,148109,PostalCode,Barnala,LGD,605,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.387784,75.498635,inherited:District,75.253651,30.137620,75.731146,30.605787,SOI_Districts,2023-12-11,false, +IN-PIN,151002,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151004,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151005,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151101,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151102,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151103,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151104,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151105,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151106,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151108,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151111,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151201,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151202,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151203,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151204,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151205,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151206,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151207,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151208,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151209,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151210,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,151211,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,151212,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151213,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151214,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,151301,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151302,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151401,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151501,PostalCode,Mansa,LGD,37,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false, +IN-PIN,151502,PostalCode,Mansa,LGD,37,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false, +IN-PIN,151503,PostalCode,Mansa,LGD,37,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false, +IN-PIN,151504,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151505,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151506,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151507,PostalCode,Mansa,LGD,37,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false, +IN-PIN,151508,PostalCode,Mansa,LGD,37,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.907347,75.438503,inherited:District,75.167566,29.542070,75.775756,30.209803,SOI_Districts,2023-12-11,false, +IN-PIN,151509,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151510,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,151511,PostalCode,Bathinda,LGD,28,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.183238,75.040269,inherited:District,74.629740,29.775523,75.377074,30.582385,SOI_Districts,2023-12-11,false, +IN-PIN,152002,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,152003,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,152004,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,152005,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,152020,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152021,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,152022,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152023,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,152024,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152025,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,152026,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,152028,PostalCode,Ferozepur,LGD,31,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.912989,74.703010,inherited:District,74.213189,30.588034,75.150065,31.162294,SOI_Districts,2023-12-11,false, +IN-PIN,152031,PostalCode,Faridkot,LGD,29,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.613481,74.777318,inherited:District,74.468831,30.366274,75.054093,30.836433,SOI_Districts,2023-12-11,false, +IN-PIN,152032,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,152033,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152101,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,152107,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,152112,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,152113,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,152114,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,152115,PostalCode,Sri Muktsar Sahib,LGD,39,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.299843,74.538399,inherited:District,74.244286,29.904540,74.821699,30.669251,SOI_Districts,2023-12-11,false, +IN-PIN,152116,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152117,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152118,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152121,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152122,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152123,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152124,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152128,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,152132,PostalCode,Fazilka,LGD,651,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.277026,74.163643,inherited:District,73.879776,29.947176,74.462914,30.692440,SOI_Districts,2023-12-11,false, +IN-PIN,160014,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,160055,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,160059,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,160071,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,160104,PostalCode,S.A.S Nagar,LGD,608,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.680921,76.739758,inherited:District,76.521530,30.358819,76.941462,30.938370,SOI_Districts,2023-12-11,false, +IN-PIN,171001,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171002,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171003,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171004,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171005,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171006,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171007,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171008,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171009,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171011,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171012,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171013,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171014,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171018,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171019,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171102,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,171103,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171201,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171202,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171203,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171204,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171205,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171206,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171207,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171208,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171209,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171210,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171211,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171212,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171213,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171214,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171215,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171216,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171217,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171218,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171219,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171220,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171221,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171222,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171223,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171224,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171225,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171226,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,171301,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172001,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,172002,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,172021,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172022,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172023,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,172024,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172025,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,172026,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,172027,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172028,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172029,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172030,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172031,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172032,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,172033,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,172034,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172101,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172102,PostalCode,Shimla,LGD,23,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.197358,77.632010,inherited:District,76.988872,30.764039,78.311344,31.715114,SOI_Districts,2023-12-11,false, +IN-PIN,172103,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172104,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172105,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172106,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172107,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172108,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172109,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172110,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172111,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172112,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172113,PostalCode,Lahaul And Spiti,LGD,21,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +IN-PIN,172114,PostalCode,Lahaul And Spiti,LGD,21,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +IN-PIN,172115,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172116,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172117,PostalCode,Lahaul And Spiti,LGD,21,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +IN-PIN,172118,PostalCode,Kinnaur,LGD,19,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.595321,78.413983,inherited:District,77.747886,31.096898,79.008917,32.076938,SOI_Districts,2023-12-11,false, +IN-PIN,172201,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,173001,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173021,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173022,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173023,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173024,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173025,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173026,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173027,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173029,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173030,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173032,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173033,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173101,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173104,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173201,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173202,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173204,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173205,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173206,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173207,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173208,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173209,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173210,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173211,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173212,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173213,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173214,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173215,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173217,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173218,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173220,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173221,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173222,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173223,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173225,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173229,PostalCode,Sirmaur,LGD,24,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.666819,77.430921,inherited:District,77.020087,30.377336,77.827798,31.020926,SOI_Districts,2023-12-11,false, +IN-PIN,173233,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173235,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,173236,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,174001,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174002,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174003,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174004,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174005,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174011,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174012,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174013,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174015,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174017,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174021,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174023,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174024,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174026,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174027,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174028,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174029,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174030,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174031,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174032,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174033,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174034,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174035,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174036,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174101,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,174102,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,174103,PostalCode,Solan,LGD,25,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.045294,76.909556,inherited:District,76.596819,30.741451,77.249711,31.365529,SOI_Districts,2023-12-11,false, +IN-PIN,174201,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174301,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174302,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174303,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174304,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,174305,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,174306,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174307,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174308,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174309,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,174310,PostalCode,Bilaspur,LGD,15,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.370997,76.670218,inherited:District,76.392713,31.209127,76.927748,31.595674,SOI_Districts,2023-12-11,false, +IN-PIN,174311,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,174312,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,174314,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174315,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174316,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174317,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174319,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174320,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174321,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174405,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,174503,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,174505,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,174507,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,175001,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175002,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175003,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175004,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175005,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175006,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175007,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175008,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175009,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175010,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175011,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175012,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175013,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,175014,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175015,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175016,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175017,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175018,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175019,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175020,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175021,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175023,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175024,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175025,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175026,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175027,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175028,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175029,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175030,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175031,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175032,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175033,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175034,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175035,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175036,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175037,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175038,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175039,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175040,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175042,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175045,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175046,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175047,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175048,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175049,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175050,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175051,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175052,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175075,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175101,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175102,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175103,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175104,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175105,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175106,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175121,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175123,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175124,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,175125,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175126,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175128,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175129,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175130,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175131,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175132,PostalCode,Lahaul And Spiti,LGD,21,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +IN-PIN,175133,PostalCode,Lahaul And Spiti,LGD,21,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +IN-PIN,175134,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175136,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175138,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175139,PostalCode,Lahaul And Spiti,LGD,21,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +IN-PIN,175140,PostalCode,Lahaul And Spiti,LGD,21,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +IN-PIN,175141,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,175142,PostalCode,Lahaul And Spiti,LGD,21,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.480058,77.616702,inherited:District,76.372916,31.747512,78.680270,33.256426,SOI_Districts,2023-12-11,false, +IN-PIN,175143,PostalCode,Kullu,LGD,20,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.902180,77.398851,inherited:District,76.934766,31.340418,77.868727,32.414596,SOI_Districts,2023-12-11,false, +IN-PIN,176001,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176002,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176021,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176022,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176023,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176025,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176026,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176027,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176028,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176029,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176030,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176031,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176032,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176033,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176036,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176037,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176038,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176039,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176040,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176041,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176042,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176043,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176044,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176045,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176047,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176048,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176049,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176051,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176052,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176053,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176054,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176055,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176056,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176057,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176058,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176059,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176060,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176061,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176062,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176063,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176064,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176065,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176066,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176071,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176073,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176075,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176076,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176077,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176081,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176082,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176083,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176084,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176085,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176086,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176087,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176088,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176089,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176090,PostalCode,Mandi,LGD,22,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.636785,76.991568,inherited:District,76.620373,31.230211,77.389135,32.073019,SOI_Districts,2023-12-11,false, +IN-PIN,176091,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176092,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176093,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176094,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176095,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176096,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176097,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176098,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176101,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176102,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176103,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176107,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176108,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176109,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176110,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176111,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,176115,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176125,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176128,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176200,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176201,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176202,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176203,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176204,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176205,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176206,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176207,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176208,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176209,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176210,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176211,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176213,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176214,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176215,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176216,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176217,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176218,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176219,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176225,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176301,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176302,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176303,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176304,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176305,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176306,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176308,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176309,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176310,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176311,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176312,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176313,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176314,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176315,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176316,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176317,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176318,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176319,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176320,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176321,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176323,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176324,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176325,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176326,PostalCode,Chamba,LGD,16,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.674760,76.348210,inherited:District,75.796253,32.175513,76.877439,33.209539,SOI_Districts,2023-12-11,false, +IN-PIN,176401,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176402,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176403,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176501,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176502,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,176601,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177001,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177006,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177007,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177020,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177021,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177022,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177023,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177024,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177025,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177026,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177027,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177028,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177029,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177031,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177033,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177034,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177038,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177039,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177040,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177041,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177042,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177043,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177044,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177045,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177048,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177101,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177103,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177104,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177105,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177106,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177107,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177108,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177109,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177110,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177111,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177112,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177113,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177114,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177117,PostalCode,Kangra,LGD,18,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.108262,76.315594,inherited:District,75.594593,31.684717,77.078436,32.467259,SOI_Districts,2023-12-11,false, +IN-PIN,177118,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177119,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177201,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177202,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177203,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177204,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177205,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177206,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177207,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177208,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177209,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177210,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177211,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177212,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177213,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177219,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177220,PostalCode,Una,LGD,26,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.579300,76.209866,inherited:District,75.936680,31.299394,76.479377,31.866668,SOI_Districts,2023-12-11,false, +IN-PIN,177301,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177401,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177501,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,177601,PostalCode,Hamirpur,LGD,17,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,31.667072,76.525513,inherited:District,76.299504,31.415690,76.729749,31.893036,SOI_Districts,2023-12-11,false, +IN-PIN,180001,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180002,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180003,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180006,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180009,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180010,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180011,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180015,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180017,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180019,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,180020,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181101,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181102,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181111,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181121,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181122,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181123,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181131,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181132,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181133,PostalCode,Samba,LGD,624,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +IN-PIN,181141,PostalCode,Samba,LGD,624,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +IN-PIN,181145,PostalCode,Samba,LGD,624,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +IN-PIN,181152,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181201,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181202,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181203,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181205,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181206,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181207,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181221,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,181224,PostalCode,Jammu,LGD,5,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.804977,74.746861,inherited:District,74.312606,32.475815,75.167022,33.062711,SOI_Districts,2023-12-11,false, +IN-PIN,182101,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182104,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182121,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182122,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182124,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182125,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182126,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182127,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182128,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182141,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182142,PostalCode,Ramban,LGD,621,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +IN-PIN,182143,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182144,PostalCode,Ramban,LGD,621,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +IN-PIN,182145,PostalCode,Ramban,LGD,621,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +IN-PIN,182146,PostalCode,Ramban,LGD,621,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.307671,75.189864,inherited:District,74.957968,33.066373,75.393844,33.525138,SOI_Districts,2023-12-11,false, +IN-PIN,182147,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182148,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182161,PostalCode,Udhampur,LGD,14,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.898827,75.296952,inherited:District,74.962826,32.639786,75.695277,33.188145,SOI_Districts,2023-12-11,false, +IN-PIN,182201,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182202,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182203,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182204,PostalCode,Kishtwar,LGD,620,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +IN-PIN,182205,PostalCode,Kishtwar,LGD,620,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.549896,75.971004,inherited:District,75.389209,33.020694,76.779413,34.212002,SOI_Districts,2023-12-11,false, +IN-PIN,182207,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182221,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182222,PostalCode,Doda,LGD,4,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.093287,75.714680,inherited:District,75.334536,32.864068,76.235601,33.407332,SOI_Districts,2023-12-11,false, +IN-PIN,182301,PostalCode,Reasi,LGD,627,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +IN-PIN,182311,PostalCode,Reasi,LGD,627,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +IN-PIN,182312,PostalCode,Reasi,LGD,627,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +IN-PIN,182313,PostalCode,Reasi,LGD,627,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +IN-PIN,182315,PostalCode,Reasi,LGD,627,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +IN-PIN,182320,PostalCode,Reasi,LGD,627,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +IN-PIN,184102,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184104,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184120,PostalCode,Samba,LGD,624,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +IN-PIN,184121,PostalCode,Samba,LGD,624,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.581686,75.090492,inherited:District,74.869368,32.408497,75.345527,32.742583,SOI_Districts,2023-12-11,false, +IN-PIN,184141,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184142,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184143,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184144,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184148,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184151,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184152,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184201,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184202,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184203,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184204,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184205,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184206,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,184210,PostalCode,Kathua,LGD,7,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,32.574591,75.583408,inherited:District,75.191993,32.276005,75.934152,32.890264,SOI_Districts,2023-12-11,false, +IN-PIN,185101,PostalCode,Poonch,LGD,10,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +IN-PIN,185102,PostalCode,Poonch,LGD,10,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +IN-PIN,185121,PostalCode,Poonch,LGD,10,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +IN-PIN,185131,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185132,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185133,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185135,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185151,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185152,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185153,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185154,PostalCode,Reasi,LGD,627,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.238912,74.831425,inherited:District,74.521268,32.887243,75.095836,33.525951,SOI_Districts,2023-12-11,false, +IN-PIN,185155,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185156,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185201,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185202,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185203,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185211,PostalCode,Poonch,LGD,10,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.783995,74.017819,inherited:District,73.490933,33.390848,74.575779,34.146466,SOI_Districts,2023-12-11,false, +IN-PIN,185212,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185233,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,185234,PostalCode,Rajouri,LGD,12,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.278226,74.380875,inherited:District,74.001960,32.950006,74.692934,33.584132,SOI_Districts,2023-12-11,false, +IN-PIN,190001,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190002,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190003,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190004,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190005,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190006,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190008,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190010,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190011,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190012,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190014,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190015,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190017,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190018,PostalCode,Budgam,LGD,2,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +IN-PIN,190019,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190020,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190024,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,190025,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,191101,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,191102,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,191103,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,191111,PostalCode,Budgam,LGD,2,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +IN-PIN,191112,PostalCode,Budgam,LGD,2,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +IN-PIN,191113,PostalCode,Budgam,LGD,2,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +IN-PIN,191121,PostalCode,Srinagar,LGD,13,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.114653,74.821269,inherited:District,74.674712,34.020268,75.001742,34.212224,SOI_Districts,2023-12-11,false, +IN-PIN,191131,PostalCode,Ganderbal,LGD,626,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +IN-PIN,191201,PostalCode,Ganderbal,LGD,626,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +IN-PIN,191202,PostalCode,Ganderbal,LGD,626,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.262056,75.032361,inherited:District,74.648412,34.043316,75.496956,34.464055,SOI_Districts,2023-12-11,false, +IN-PIN,192101,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192121,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,192122,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,192123,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,192124,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192125,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192126,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192129,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192201,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192202,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192211,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192212,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192221,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,192231,PostalCode,Kulgam,LGD,622,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +IN-PIN,192232,PostalCode,Kulgam,LGD,622,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +IN-PIN,192233,PostalCode,Kulgam,LGD,622,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.606434,74.860001,inherited:District,74.513767,33.467844,75.175043,33.840316,SOI_Districts,2023-12-11,false, +IN-PIN,192301,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,192302,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,192303,PostalCode,Shopian,LGD,625,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.735213,74.818533,inherited:District,74.566407,33.626973,75.055418,33.821475,SOI_Districts,2023-12-11,false, +IN-PIN,192304,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,192305,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,192401,PostalCode,Anantnag,LGD,1,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.826532,75.324713,inherited:District,75.046524,33.364723,75.593363,34.254635,SOI_Districts,2023-12-11,false, +IN-PIN,193101,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193103,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193108,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193109,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193121,PostalCode,Bandipora,LGD,623,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +IN-PIN,193122,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193123,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193201,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193221,PostalCode,Kupwara,LGD,8,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +IN-PIN,193222,PostalCode,Kupwara,LGD,8,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +IN-PIN,193223,PostalCode,Kupwara,LGD,8,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +IN-PIN,193224,PostalCode,Kupwara,LGD,8,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +IN-PIN,193225,PostalCode,Kupwara,LGD,8,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +IN-PIN,193301,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193302,PostalCode,Kupwara,LGD,8,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.521364,74.207221,inherited:District,73.749836,34.244573,74.606105,34.793909,SOI_Districts,2023-12-11,false, +IN-PIN,193303,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193306,PostalCode,Pulwama,LGD,11,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.940691,75.016857,inherited:District,74.711643,33.785216,75.235091,34.109639,SOI_Districts,2023-12-11,false, +IN-PIN,193401,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193402,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193404,PostalCode,Baramulla,LGD,3,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.158233,74.302510,inherited:District,73.890248,33.907711,74.702350,34.437513,SOI_Districts,2023-12-11,false, +IN-PIN,193411,PostalCode,Budgam,LGD,2,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.918231,74.634582,inherited:District,74.401501,33.680213,74.916445,34.130455,SOI_Districts,2023-12-11,false, +IN-PIN,193501,PostalCode,Bandipora,LGD,623,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +IN-PIN,193502,PostalCode,Bandipora,LGD,623,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +IN-PIN,193503,PostalCode,Bandipora,LGD,623,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +IN-PIN,193504,PostalCode,Bandipora,LGD,623,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +IN-PIN,193505,PostalCode,Bandipora,LGD,623,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,34.587294,74.876122,inherited:District,74.330192,34.159350,75.372765,34.924799,SOI_Districts,2023-12-11,false, +IN-PIN,194101,PostalCode,Kargil,LGD,6,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +IN-PIN,194102,PostalCode,Kargil,LGD,6,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +IN-PIN,194103,PostalCode,Kargil,LGD,6,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +IN-PIN,194104,PostalCode,Leh Ladakh,LGD,9,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +IN-PIN,194106,PostalCode,Leh Ladakh,LGD,9,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +IN-PIN,194107,PostalCode,Leh Ladakh,LGD,9,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +IN-PIN,194109,PostalCode,Kargil,LGD,6,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +IN-PIN,194201,PostalCode,Leh Ladakh,LGD,9,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +IN-PIN,194202,PostalCode,Leh Ladakh,LGD,9,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +IN-PIN,194301,PostalCode,Kargil,LGD,6,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +IN-PIN,194302,PostalCode,Kargil,LGD,6,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +IN-PIN,194303,PostalCode,Kargil,LGD,6,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,33.902845,76.494643,inherited:District,75.375962,32.863471,77.561537,34.751830,SOI_Districts,2023-12-11,false, +IN-PIN,194401,PostalCode,Leh Ladakh,LGD,9,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,35.043894,76.821315,inherited:District,72.512762,32.335694,80.345084,37.088342,SOI_Districts,2023-12-11,false, +IN-PIN,201001,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201002,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201003,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201004,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201005,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201007,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201008,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201009,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201010,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201013,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201014,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201015,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201020,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201102,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201201,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201204,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201206,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,201301,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201303,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201304,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201305,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201306,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201307,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201309,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201310,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201311,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201312,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201313,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201314,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201316,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,201318,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,202001,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202002,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202121,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202122,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202123,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202124,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202125,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202126,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202127,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202128,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202129,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202130,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202131,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202132,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202133,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202134,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202135,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202136,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202137,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202138,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202139,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202140,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202141,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202142,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202143,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202145,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202150,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202155,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202165,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202280,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202281,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,202282,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,203001,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203002,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203129,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203131,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203132,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203135,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,203141,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203150,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203155,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,203201,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,203202,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203203,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203205,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203206,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203207,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,203209,PostalCode,Gautam Buddha Nagar,LGD,144,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.394059,77.555973,inherited:District,77.297095,28.085117,77.737919,28.654443,SOI_Districts,2023-12-11,false, +IN-PIN,203389,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203390,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203391,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203392,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203393,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203394,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203395,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203396,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203397,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203398,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203399,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203401,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203402,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203403,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203405,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203407,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203408,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203409,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203411,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,203412,PostalCode,Bulandshahr,LGD,134,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.362548,78.014505,inherited:District,77.621590,28.059198,78.477477,28.715356,SOI_Districts,2023-12-11,false, +IN-PIN,204101,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,204102,PostalCode,Hathras,LGD,163,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +IN-PIN,204211,PostalCode,Hathras,LGD,163,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +IN-PIN,204212,PostalCode,Hathras,LGD,163,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +IN-PIN,204213,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,204214,PostalCode,Hathras,LGD,163,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +IN-PIN,204215,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,204216,PostalCode,Aligarh,LGD,119,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.926465,78.065301,inherited:District,77.475606,27.571219,78.607720,28.179720,SOI_Districts,2023-12-11,false, +IN-PIN,204217,PostalCode,Hathras,LGD,163,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +IN-PIN,205001,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205119,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205121,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,205247,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205261,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205262,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205263,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205264,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205265,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205267,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205268,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205301,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205303,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,205304,PostalCode,Mainpuri,LGD,166,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.182445,79.052108,inherited:District,78.688385,26.945139,79.436863,27.473385,SOI_Districts,2023-12-11,false, +IN-PIN,206001,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206002,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206003,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206120,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206121,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206122,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206123,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206124,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206125,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206126,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206127,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206128,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206129,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206130,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206131,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206241,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206242,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206243,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206244,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206245,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206246,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206247,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206248,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206249,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206250,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206251,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206252,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,206253,PostalCode,Etawah,LGD,139,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.764067,79.094854,inherited:District,78.741334,26.424992,79.349653,27.006448,SOI_Districts,2023-12-11,false, +IN-PIN,206255,PostalCode,Auraiya,LGD,122,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.658178,79.479116,inherited:District,79.205065,26.364240,79.756865,26.947382,SOI_Districts,2023-12-11,false, +IN-PIN,207001,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207002,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207003,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207120,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207121,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207122,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207123,PostalCode,Kasganj,LGD,633,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +IN-PIN,207124,PostalCode,Kasganj,LGD,633,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +IN-PIN,207125,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207241,PostalCode,Kasganj,LGD,633,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +IN-PIN,207242,PostalCode,Kasganj,LGD,633,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +IN-PIN,207243,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207244,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207245,PostalCode,Kasganj,LGD,633,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +IN-PIN,207246,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207247,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207248,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207249,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207250,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207301,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207302,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207401,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,207402,PostalCode,Kasganj,LGD,633,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +IN-PIN,207403,PostalCode,Kasganj,LGD,633,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.773327,78.846070,inherited:District,78.470931,27.549301,79.214861,28.027945,SOI_Districts,2023-12-11,false, +IN-PIN,208002,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208003,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208004,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208007,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208008,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208010,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208011,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208012,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208013,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208014,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208016,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208017,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208019,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208020,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208021,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208022,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208023,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208024,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,208027,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209101,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209111,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209112,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209115,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209121,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209125,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209202,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209203,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209204,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209205,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209206,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209208,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209209,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209210,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209214,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209217,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209301,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209302,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209303,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209304,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209305,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209306,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209307,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209308,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209310,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209311,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209312,PostalCode,Kanpur Dehat,LGD,156,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.439637,79.852934,inherited:District,79.505789,26.090102,80.189744,26.827613,SOI_Districts,2023-12-11,false, +IN-PIN,209401,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209402,PostalCode,Kanpur Nagar,LGD,157,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.391080,80.208199,inherited:District,79.890773,25.919686,80.591435,26.963377,SOI_Districts,2023-12-11,false, +IN-PIN,209501,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209502,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209503,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209504,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209505,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209601,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209602,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209621,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209622,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209625,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209651,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209652,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209720,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209721,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209722,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209723,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209724,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209725,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209726,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209727,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209728,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209729,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209731,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209732,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209733,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209734,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209735,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209736,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209738,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209739,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209743,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209745,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209747,PostalCode,Kannauj,LGD,155,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.013601,79.688690,inherited:District,79.316376,26.768928,80.021603,27.228689,SOI_Districts,2023-12-11,false, +IN-PIN,209749,PostalCode,Farrukhabad,LGD,141,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.431334,79.458667,inherited:District,79.120203,27.156783,79.737197,27.715326,SOI_Districts,2023-12-11,false, +IN-PIN,209801,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209821,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209825,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209827,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209831,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209841,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209859,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209860,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209861,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209862,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209863,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209864,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209865,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209866,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209867,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209868,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209869,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,209870,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209871,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,209881,PostalCode,Unnao,LGD,186,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.609367,80.560562,inherited:District,80.043989,26.103550,81.049880,27.031361,SOI_Districts,2023-12-11,false, +IN-PIN,210001,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210120,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210121,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210122,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210123,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210125,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210126,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210128,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210129,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210201,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210202,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210203,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210204,PostalCode,Chitrakoot,LGD,136,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false, +IN-PIN,210205,PostalCode,Chitrakoot,LGD,136,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false, +IN-PIN,210206,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210207,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210208,PostalCode,Chitrakoot,LGD,136,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false, +IN-PIN,210209,PostalCode,Chitrakoot,LGD,136,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.206227,81.077462,inherited:District,80.684050,24.887527,81.562200,25.546880,SOI_Districts,2023-12-11,false, +IN-PIN,210301,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210341,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210421,PostalCode,Mahoba,LGD,165,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false, +IN-PIN,210422,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210423,PostalCode,Mahoba,LGD,165,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false, +IN-PIN,210424,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,210425,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210426,PostalCode,Mahoba,LGD,165,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false, +IN-PIN,210427,PostalCode,Mahoba,LGD,165,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false, +IN-PIN,210428,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210429,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210430,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210431,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210432,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210433,PostalCode,Mahoba,LGD,165,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.362800,79.726003,inherited:District,79.273543,25.032084,80.226694,25.643245,SOI_Districts,2023-12-11,false, +IN-PIN,210501,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210502,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210504,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210505,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210506,PostalCode,Hamirpur,LGD,149,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.751017,79.865350,inherited:District,79.355269,25.476618,80.351513,26.162667,SOI_Districts,2023-12-11,false, +IN-PIN,210507,PostalCode,Banda,LGD,128,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470939,80.557396,inherited:District,80.103709,24.973931,81.036618,25.913747,SOI_Districts,2023-12-11,false, +IN-PIN,211003,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211007,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211008,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211010,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211011,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211012,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211013,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211015,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211016,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,211019,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212104,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212106,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212107,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212108,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212109,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212111,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212201,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212202,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212203,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212204,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212205,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212206,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212207,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212208,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212212,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212213,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212214,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212216,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212217,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212218,PostalCode,Kaushambi,LGD,158,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.498460,81.415008,inherited:District,81.146662,25.258337,81.713355,25.810703,SOI_Districts,2023-12-11,false, +IN-PIN,212301,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212302,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212303,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212305,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212306,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212307,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212401,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212402,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212404,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212405,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212502,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212503,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,212507,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,212601,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212620,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212621,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212622,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212631,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212635,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212641,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212645,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212650,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212651,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212652,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212653,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212654,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212655,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212656,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212657,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212658,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212659,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212661,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212663,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212664,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,212665,PostalCode,Fatehpur,LGD,142,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.874894,80.807709,inherited:District,80.212987,25.438360,81.338373,26.231232,SOI_Districts,2023-12-11,false, +IN-PIN,214387,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,221001,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221002,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221003,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221004,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221005,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221006,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221007,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221008,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,221009,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,221010,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221011,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221101,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,221103,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221104,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221105,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221106,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221107,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221108,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221109,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221110,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,221111,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,221112,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221115,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,221116,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,221201,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221202,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221204,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221206,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221207,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221208,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221301,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221302,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221303,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221304,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221305,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221306,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221307,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221308,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221309,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221310,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221311,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221313,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221314,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221401,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221402,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221403,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221404,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221405,PostalCode,Varanasi,LGD,187,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.388275,82.913960,inherited:District,82.666605,25.164354,83.188176,25.580242,SOI_Districts,2023-12-11,false, +IN-PIN,221406,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221409,PostalCode,Bhadohi,LGD,179,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.347933,82.464128,inherited:District,82.195598,25.178179,82.710596,25.536590,SOI_Districts,2023-12-11,false, +IN-PIN,221502,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,221503,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,221505,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,221507,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,221508,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,221601,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,221602,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,221603,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,221701,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,221705,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,221706,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,221709,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,221711,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,221712,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,221713,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,221715,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,221716,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,221717,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,221718,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,222001,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222002,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222003,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222105,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222109,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222125,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222126,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222127,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222128,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222129,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222131,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222132,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222133,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222135,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222136,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222137,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222138,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222139,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222141,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222142,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222143,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222144,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222145,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222146,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222149,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222161,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222162,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222165,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222170,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222175,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222180,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222181,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222201,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222202,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222203,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,222301,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,222302,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,222303,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,223101,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,223102,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,223103,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,223104,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,223105,PostalCode,Jaunpur,LGD,152,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.746298,82.574976,inherited:District,82.122522,25.392657,83.090120,26.201226,SOI_Districts,2023-12-11,false, +IN-PIN,223221,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,223222,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,223223,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,223224,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,223225,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,223226,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,223227,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,224001,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224116,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224117,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224118,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224119,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224120,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224121,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224122,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224123,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224125,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224126,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224127,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224129,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224132,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224133,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224135,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224137,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224139,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224141,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224143,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224145,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224146,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224147,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224149,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224151,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224152,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224153,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224155,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224157,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224158,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224159,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224161,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224164,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224168,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224171,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224172,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224176,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224181,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224182,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224183,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224186,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224188,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224189,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224190,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224195,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224201,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224202,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224203,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224204,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224205,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224206,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224207,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224208,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224209,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224210,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224225,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224227,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224228,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224229,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224230,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224231,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224232,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,224234,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224235,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224238,PostalCode,Ambedkar Nagar,LGD,121,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.418558,82.666105,inherited:District,82.220005,26.156645,83.132173,26.652525,SOI_Districts,2023-12-11,false, +IN-PIN,224284,PostalCode,Ayodhya,LGD,140,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.657554,81.997104,inherited:District,81.543130,26.407419,82.477099,26.869886,SOI_Districts,2023-12-11,false, +IN-PIN,224923,PostalCode,Rampur,LGD,176,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +IN-PIN,225001,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225003,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225119,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225120,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225121,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225122,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225123,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225124,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225125,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225126,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225201,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225202,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225203,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225204,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225205,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225206,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225207,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225208,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225301,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225302,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225303,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225304,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225305,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225306,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225401,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225403,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225404,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225405,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225409,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225412,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225413,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225414,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225415,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,225416,PostalCode,Bara Banki,LGD,129,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.939037,81.332417,inherited:District,80.923927,26.525273,81.761151,27.359308,SOI_Districts,2023-12-11,false, +IN-PIN,226002,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226003,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226004,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226005,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226006,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226008,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226009,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226010,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226011,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226012,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226013,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226015,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226016,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226017,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226018,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226020,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226021,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226022,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226024,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226026,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226028,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226029,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226031,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226101,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226102,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226103,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226104,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226201,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226202,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226203,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226301,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226302,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226303,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226401,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,226501,PostalCode,Lucknow,LGD,162,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.841979,80.905490,inherited:District,80.560386,26.503773,81.217567,27.158634,SOI_Districts,2023-12-11,false, +IN-PIN,227304,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,227405,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227406,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227407,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227408,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227409,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227411,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227412,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227413,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227801,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227805,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227806,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,227807,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227808,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,227809,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227811,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227812,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,227813,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227814,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,227815,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227816,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,227817,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,228001,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,228118,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228119,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228120,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228121,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,228125,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,228131,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228132,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228133,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228141,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228142,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228145,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228151,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228155,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228159,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,228161,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228171,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,228172,PostalCode,Sultanpur,LGD,185,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.261948,82.193868,inherited:District,81.716201,25.973674,82.692572,26.547228,SOI_Districts,2023-12-11,false, +IN-PIN,229001,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229010,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229103,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229121,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229122,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229123,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229124,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229125,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229126,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229127,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229128,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229129,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229130,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229135,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229201,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229202,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229203,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229204,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229205,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229206,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229207,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229208,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229209,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229210,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229211,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229212,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229215,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229216,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229301,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229302,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229303,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229304,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229305,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229306,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229307,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229308,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229309,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229310,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229311,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229316,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229401,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229402,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229404,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229405,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229406,PostalCode,Rae Bareli,LGD,175,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.203741,81.190943,inherited:District,80.669868,25.810703,81.618296,26.606635,SOI_Districts,2023-12-11,false, +IN-PIN,229408,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,229410,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,229411,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,229412,PostalCode,Prayagraj,LGD,120,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.304012,81.960159,inherited:District,81.517018,24.804612,82.352734,25.753899,SOI_Districts,2023-12-11,false, +IN-PIN,229413,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,229801,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,229802,PostalCode,Amethi,LGD,640,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.323815,81.668704,inherited:District,81.344025,26.026937,82.070482,26.666255,SOI_Districts,2023-12-11,false, +IN-PIN,230001,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230002,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230121,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230124,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230125,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230126,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230127,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230128,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230129,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230130,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230131,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230132,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230133,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230134,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230135,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230136,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230137,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230138,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230139,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230141,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230142,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230143,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230144,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230201,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230202,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230204,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230301,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230302,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230304,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230306,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230401,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230402,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230403,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230404,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230405,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230501,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230502,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,230503,PostalCode,Pratapgarh,LGD,174,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.872737,81.829069,inherited:District,81.324970,25.572381,82.434385,26.180690,SOI_Districts,2023-12-11,false, +IN-PIN,231001,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231205,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231206,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231207,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231208,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231209,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231210,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231211,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231212,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231213,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231215,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231216,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231217,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231218,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231219,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231220,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231221,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231222,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231223,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231224,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231225,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231226,PostalCode,Sonbhadra,LGD,184,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.407995,83.051909,inherited:District,82.523317,23.870110,83.547979,24.960294,SOI_Districts,2023-12-11,false, +IN-PIN,231301,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231302,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231303,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231304,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231305,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231306,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231307,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231309,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231312,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231313,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231314,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,231501,PostalCode,Mirzapur,LGD,170,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.986648,82.607360,inherited:District,82.080136,24.591198,83.181656,25.272223,SOI_Districts,2023-12-11,false, +IN-PIN,232101,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232102,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232103,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232104,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232105,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232106,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232107,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232108,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232109,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232110,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232111,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232118,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232120,PostalCode,Chandauli,LGD,135,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.141544,83.258105,inherited:District,83.009123,24.716475,83.554263,25.535269,SOI_Districts,2023-12-11,false, +IN-PIN,232325,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232326,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232327,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232328,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232329,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232330,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232331,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232332,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232333,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232336,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232339,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232340,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,232341,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233001,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233002,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233221,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233222,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233223,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233224,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233225,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233226,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233227,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233228,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233229,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233230,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233231,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233232,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233233,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233234,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233300,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233301,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233302,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233303,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233304,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233305,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233306,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233307,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233310,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,233311,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,241001,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241121,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241122,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241123,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241124,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241125,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241126,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241127,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241201,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241202,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241203,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241204,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241301,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241302,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241303,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241304,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241305,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241401,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241402,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241403,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241404,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241405,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241406,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,241407,PostalCode,Hardoi,LGD,150,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.330336,80.161580,inherited:District,79.684343,26.889733,80.826911,27.784457,SOI_Districts,2023-12-11,false, +IN-PIN,242001,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242021,PostalCode,Sambhal,LGD,659,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +IN-PIN,242042,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242127,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242220,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242221,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242223,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242226,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242301,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242303,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242305,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242306,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,242307,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242401,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242405,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242406,PostalCode,Shahjahanpur,LGD,180,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.950761,79.822072,inherited:District,79.322887,27.444835,80.358676,28.381225,SOI_Districts,2023-12-11,false, +IN-PIN,242407,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,243001,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243003,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243004,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243005,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243006,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243122,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243123,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243126,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243201,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243202,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243203,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243301,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243302,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243303,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243401,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243402,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243403,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243501,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243502,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243503,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243504,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243505,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243506,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,243601,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243630,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243631,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243632,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243633,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243634,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243635,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243636,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243637,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243638,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243639,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243641,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243720,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243722,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243723,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243724,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243725,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243726,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,243727,PostalCode,Sambhal,LGD,659,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +IN-PIN,243751,PostalCode,Budaun,LGD,133,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.077854,79.041570,inherited:District,78.571968,27.657804,79.510041,28.472255,SOI_Districts,2023-12-11,false, +IN-PIN,244001,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244102,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244103,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244104,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244105,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244221,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244222,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244225,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244231,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244235,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244236,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244241,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244242,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244251,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244255,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244301,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244302,PostalCode,Sambhal,LGD,659,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +IN-PIN,244303,PostalCode,Sambhal,LGD,659,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +IN-PIN,244304,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244401,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244402,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244410,PostalCode,Sambhal,LGD,659,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +IN-PIN,244411,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244412,PostalCode,Sambhal,LGD,659,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.451892,78.558077,inherited:District,78.258486,28.043879,78.959432,28.810376,SOI_Districts,2023-12-11,false, +IN-PIN,244413,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244414,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244415,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244501,PostalCode,Amroha,LGD,154,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.835642,78.368246,inherited:District,78.049562,28.433194,78.719006,29.159153,SOI_Districts,2023-12-11,false, +IN-PIN,244504,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244601,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244602,PostalCode,Moradabad,LGD,171,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.885592,78.802924,inherited:District,78.618217,28.491093,79.001080,29.268161,SOI_Districts,2023-12-11,false, +IN-PIN,244701,PostalCode,Rampur,LGD,176,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +IN-PIN,244712,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,244713,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,244715,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,244716,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,244717,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,244720,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,244901,PostalCode,Rampur,LGD,176,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +IN-PIN,244921,PostalCode,Rampur,LGD,176,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +IN-PIN,244922,PostalCode,Rampur,LGD,176,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +IN-PIN,244924,PostalCode,Rampur,LGD,176,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +IN-PIN,244925,PostalCode,Rampur,LGD,176,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.809845,79.115097,inherited:District,78.858503,28.417286,79.427945,29.169392,SOI_Districts,2023-12-11,false, +IN-PIN,245101,PostalCode,Hapur,LGD,661,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false, +IN-PIN,245201,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,245205,PostalCode,Hapur,LGD,661,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false, +IN-PIN,245206,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,245207,PostalCode,Hapur,LGD,661,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false, +IN-PIN,245208,PostalCode,Hapur,LGD,661,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false, +IN-PIN,245301,PostalCode,Hapur,LGD,661,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.722383,77.893127,inherited:District,77.544371,28.549538,78.212175,28.883855,SOI_Districts,2023-12-11,false, +IN-PIN,245304,PostalCode,Ghaziabad,LGD,145,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.767749,77.476015,inherited:District,77.199129,28.607695,77.709528,28.927780,SOI_Districts,2023-12-11,false, +IN-PIN,246001,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,246113,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246121,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246123,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246124,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246125,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246127,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246128,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246129,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246130,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246131,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246141,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246144,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246146,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246147,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246148,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246149,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246155,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246159,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246161,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246162,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246163,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246164,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246165,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246166,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246167,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246169,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246171,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246172,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246173,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246174,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246175,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246176,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246177,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246178,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246179,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246193,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246194,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246275,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246276,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246277,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246278,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246279,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246285,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,246401,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246419,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246421,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246422,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246424,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246425,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246426,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246427,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246428,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246429,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246431,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246435,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246439,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246440,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246441,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246442,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246443,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246444,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246445,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246446,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246448,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246449,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246453,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246455,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246469,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246471,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246472,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246473,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246474,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246475,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246481,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246482,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246483,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246486,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246487,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246488,PostalCode,Chamoli,LGD,47,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.495149,79.577047,inherited:District,79.075991,29.925574,80.102039,31.075398,SOI_Districts,2023-12-11,false, +IN-PIN,246495,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,246701,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246721,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246722,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246723,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246724,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246725,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246726,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246727,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246728,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246729,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246731,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246732,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246733,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246734,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246735,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246736,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246737,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246745,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246746,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246747,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246749,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246761,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246762,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,246763,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,246764,PostalCode,Bijnor,LGD,132,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.386207,78.388853,inherited:District,77.985954,29.017402,78.943118,29.796606,SOI_Districts,2023-12-11,false, +IN-PIN,247001,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247002,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247120,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247121,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247122,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247129,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247231,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247232,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247340,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247341,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247342,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247343,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247451,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247452,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247453,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247551,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247554,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247656,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247661,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247662,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247663,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247665,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247666,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247667,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247668,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247669,PostalCode,Saharanpur,LGD,177,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.951033,77.546779,inherited:District,77.119777,29.564649,77.961697,30.406276,SOI_Districts,2023-12-11,false, +IN-PIN,247670,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247671,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,247771,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,247772,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,247773,PostalCode,Shamli,LGD,660,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false, +IN-PIN,247774,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,247775,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,247776,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,247777,PostalCode,Shamli,LGD,660,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false, +IN-PIN,247778,PostalCode,Shamli,LGD,660,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.500323,77.282363,inherited:District,77.083948,29.264866,77.502334,29.697281,SOI_Districts,2023-12-11,false, +IN-PIN,248001,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248002,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248003,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248005,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248007,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248008,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248009,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248013,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248019,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248121,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248123,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248124,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248140,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248143,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248145,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248158,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248165,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248179,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248196,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248197,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,248199,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,249001,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,249121,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249122,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249123,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249124,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249125,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249126,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249127,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,249128,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249130,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,249131,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,249132,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249135,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249136,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249137,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249141,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249145,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249146,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249151,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249152,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249155,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249161,PostalCode,Rudraprayag,LGD,54,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.506914,79.052455,inherited:District,78.816852,30.174715,79.356023,30.807451,SOI_Districts,2023-12-11,false, +IN-PIN,249165,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249171,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249175,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249180,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249181,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249185,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249186,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249192,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249193,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249194,PostalCode,Uttarkashi,LGD,57,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.971870,78.607019,inherited:District,77.811357,30.468224,79.410529,31.462080,SOI_Districts,2023-12-11,false, +IN-PIN,249196,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249199,PostalCode,Tehri Garhwal,LGD,55,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.436550,78.535529,inherited:District,77.936133,30.052451,79.035317,30.878628,SOI_Districts,2023-12-11,false, +IN-PIN,249202,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,249204,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,249205,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,249301,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,249302,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,249304,PostalCode,Pauri Garhwal,LGD,52,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.879961,78.763766,inherited:District,78.202092,29.434259,79.231871,30.260247,SOI_Districts,2023-12-11,false, +IN-PIN,249306,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,249401,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,249402,PostalCode,Dehradun,LGD,49,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.472166,77.967550,inherited:District,77.572316,29.962167,78.310415,31.033085,SOI_Districts,2023-12-11,false, +IN-PIN,249404,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,249405,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,249407,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,249408,PostalCode,Haridwar,LGD,50,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.881397,77.996044,inherited:District,77.714133,29.580065,78.335659,30.242369,SOI_Districts,2023-12-11,false, +IN-PIN,250001,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250002,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250004,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250005,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250101,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250103,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250104,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250106,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250110,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250205,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250221,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250222,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250223,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250341,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250342,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250344,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250345,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250401,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250402,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250404,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250406,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250501,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250502,PostalCode,Meerut,LGD,169,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.036373,77.782697,inherited:District,77.422611,28.736682,78.123858,29.266484,SOI_Districts,2023-12-11,false, +IN-PIN,250601,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250606,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250609,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250611,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250615,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250617,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250619,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250620,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250621,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250622,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250623,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250625,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,250626,PostalCode,Baghpat,LGD,124,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.056937,77.308508,inherited:District,77.131414,28.776643,77.504502,29.298148,SOI_Districts,2023-12-11,false, +IN-PIN,251001,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251002,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251003,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251201,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251202,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251203,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251301,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251305,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251306,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251307,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251308,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251309,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251310,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251311,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251314,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251315,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251316,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251318,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251319,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251320,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,251327,PostalCode,Muzaffarnagar,LGD,172,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.415637,77.725288,inherited:District,77.277119,29.184941,78.114839,29.714484,SOI_Districts,2023-12-11,false, +IN-PIN,261001,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261121,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261125,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261131,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261135,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261136,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261141,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261145,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261151,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261201,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261202,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261203,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261204,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261205,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261206,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261207,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261208,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261301,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261302,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261303,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261401,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261402,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261403,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261404,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261405,PostalCode,Sitapur,LGD,183,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.517096,80.852222,inherited:District,80.298627,27.099428,81.416424,27.906297,SOI_Districts,2023-12-11,false, +IN-PIN,261501,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,261502,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,261505,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,261506,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262001,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262121,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262122,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262123,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262124,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262201,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262202,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262203,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262302,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262305,PostalCode,Pilibhit,LGD,173,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.530755,79.994583,inherited:District,79.621578,28.100844,80.449971,28.887806,SOI_Districts,2023-12-11,false, +IN-PIN,262308,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,262309,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262310,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262311,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,262401,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,262402,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,262405,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,262406,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,262407,PostalCode,Bareilly,LGD,130,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.457976,79.431403,inherited:District,78.969497,28.015352,79.791427,28.901190,SOI_Districts,2023-12-11,false, +IN-PIN,262501,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262502,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262520,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262521,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262522,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262523,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262524,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262525,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262526,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262527,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262528,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262529,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262530,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262531,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262532,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262533,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262534,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262540,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262541,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262542,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262543,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262544,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262545,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262546,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262547,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262550,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262551,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262552,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262553,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262554,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262555,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262561,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262572,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262576,PostalCode,Pithoragarh,LGD,53,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,30.113997,80.345565,inherited:District,79.820948,29.443787,81.046605,30.805885,SOI_Districts,2023-12-11,false, +IN-PIN,262580,PostalCode,Champawat,LGD,48,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.281123,80.069053,inherited:District,79.793522,28.944867,80.318516,29.523550,SOI_Districts,2023-12-11,false, +IN-PIN,262701,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262702,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262721,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262722,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262723,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262724,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262725,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262726,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262727,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262728,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262801,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262802,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,262803,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262804,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262805,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262901,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262902,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262903,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262904,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262905,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262906,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262907,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,262908,PostalCode,Kheri,LGD,159,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.120956,80.666926,inherited:District,80.030104,27.675520,81.305491,28.691742,SOI_Districts,2023-12-11,false, +IN-PIN,263001,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263126,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263127,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263128,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263132,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263134,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263135,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263136,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263137,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263138,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263139,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263140,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263142,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263145,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,263148,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,263149,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,263150,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,263151,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,263152,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,263153,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,263156,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263157,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263158,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263159,PostalCode,Nainital,LGD,51,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.317293,79.463201,inherited:District,78.850889,28.978395,79.976811,29.611989,SOI_Districts,2023-12-11,false, +IN-PIN,263160,PostalCode,Udham Singh Nagar,LGD,56,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.041948,79.470845,inherited:District,78.718368,28.722831,80.077166,29.368364,SOI_Districts,2023-12-11,false, +IN-PIN,263601,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263619,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263620,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263621,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263622,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263623,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263624,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263625,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263626,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263628,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263629,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263630,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263631,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263632,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263633,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263634,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263635,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263636,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263637,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263638,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263639,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263640,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263641,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263642,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263643,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263645,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263646,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263651,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263652,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263653,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263655,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263656,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263658,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263659,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263660,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263661,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263663,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263664,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263665,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263667,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263676,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263678,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,263679,PostalCode,Bageshwar,LGD,46,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.996405,79.858939,inherited:District,79.470598,29.700881,80.158632,30.316701,SOI_Districts,2023-12-11,false, +IN-PIN,263680,PostalCode,Almora,LGD,45,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.690751,79.504039,inherited:District,79.037097,29.425481,80.077915,29.979705,SOI_Districts,2023-12-11,false, +IN-PIN,271001,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271002,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271003,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271122,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271123,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271124,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271125,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271126,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271129,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271201,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271203,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271205,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271206,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271207,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271208,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271210,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271301,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271302,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271303,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271305,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271306,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271307,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271309,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271310,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271311,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271312,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271313,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,271319,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271401,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271403,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271502,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271503,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271504,PostalCode,Gonda,LGD,147,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.083387,82.025294,inherited:District,81.514853,26.781103,82.613942,27.439648,SOI_Districts,2023-12-11,false, +IN-PIN,271602,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271603,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271604,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271607,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271609,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271801,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271802,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271803,PostalCode,Shrawasti,LGD,181,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false, +IN-PIN,271804,PostalCode,Shrawasti,LGD,181,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false, +IN-PIN,271806,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271821,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271824,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271825,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271830,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271831,PostalCode,Shrawasti,LGD,181,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false, +IN-PIN,271835,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271840,PostalCode,Shrawasti,LGD,181,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false, +IN-PIN,271841,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271845,PostalCode,Shrawasti,LGD,181,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.718462,81.903444,inherited:District,81.607861,27.404415,82.208770,27.952834,SOI_Districts,2023-12-11,false, +IN-PIN,271851,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271855,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271861,PostalCode,Balrampur,LGD,127,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.483685,82.375229,inherited:District,82.021659,27.051701,82.764682,27.843529,SOI_Districts,2023-12-11,false, +IN-PIN,271865,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271870,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271871,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271872,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271875,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271881,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271882,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271901,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271902,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271903,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,271904,PostalCode,Bahraich,LGD,125,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.698230,81.492806,inherited:District,81.038573,27.059049,81.990411,28.403862,SOI_Districts,2023-12-11,false, +IN-PIN,272001,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272002,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272123,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272124,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272125,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272126,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272127,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272128,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272129,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272130,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272131,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272148,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272150,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272151,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272152,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272153,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272154,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272155,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272161,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272162,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272163,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272164,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272165,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272171,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272172,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272173,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272175,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272176,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272177,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272178,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272181,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272182,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272189,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272190,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272191,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272192,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272193,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272194,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272195,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272199,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272201,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272202,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272203,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272204,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272205,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272206,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272207,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272208,PostalCode,Siddharthnagar,LGD,182,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270196,82.873251,inherited:District,82.438420,26.999822,83.292915,27.502660,SOI_Districts,2023-12-11,false, +IN-PIN,272270,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272271,PostalCode,Sant Kabir Nagar,LGD,178,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.775547,83.027224,inherited:District,82.819374,26.408151,83.226592,27.101758,SOI_Districts,2023-12-11,false, +IN-PIN,272301,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,272302,PostalCode,Basti,LGD,131,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.820038,82.625709,inherited:District,82.228666,26.553012,82.977622,27.124294,SOI_Districts,2023-12-11,false, +IN-PIN,273001,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273002,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273004,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273006,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273007,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273008,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273010,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273013,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273014,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273015,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273016,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273017,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273151,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273152,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273155,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273157,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273158,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273161,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273162,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273163,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273164,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273165,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273201,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273202,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273203,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273207,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273209,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273211,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273212,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273213,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273301,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273302,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273303,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273304,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273305,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273306,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273308,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273309,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273310,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273311,PostalCode,Mahrajganj,LGD,164,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.200551,83.530436,inherited:District,83.119615,26.888548,83.934435,27.479755,SOI_Districts,2023-12-11,false, +IN-PIN,273401,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273402,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273403,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273404,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273405,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273406,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273407,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273408,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273409,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273411,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273412,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,273413,PostalCode,Gorakhpur,LGD,148,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.656068,83.359032,inherited:District,83.067767,26.218752,83.671043,27.116212,SOI_Districts,2023-12-11,false, +IN-PIN,274001,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274149,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274182,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274201,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274202,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274203,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274204,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274205,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274206,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274207,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274208,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274301,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274302,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274303,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274304,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274305,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274306,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274307,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274308,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274309,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274401,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274402,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274404,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274405,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274406,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274407,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274408,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274409,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274501,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274502,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274505,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274506,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274508,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274509,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274601,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274602,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274603,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274701,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274702,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274703,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274704,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274705,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274801,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274802,PostalCode,Kushinagar,LGD,160,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.862754,83.933846,inherited:District,83.524407,26.551090,84.419709,27.297245,SOI_Districts,2023-12-11,false, +IN-PIN,274806,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,274807,PostalCode,Deoria,LGD,137,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.425350,83.834585,inherited:District,83.476750,26.089469,84.185974,26.759176,SOI_Districts,2023-12-11,false, +IN-PIN,275101,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275102,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275103,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275105,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275201,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,275202,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,275203,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,275204,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,275205,PostalCode,Ghazipur,LGD,146,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.623962,83.555544,inherited:District,83.062807,25.306102,83.962575,25.900041,SOI_Districts,2023-12-11,false, +IN-PIN,275301,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275302,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275303,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275304,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275305,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275306,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,275307,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,276001,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276121,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276122,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276123,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276124,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276125,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276126,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276127,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276128,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276129,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276131,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276135,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276136,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276137,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276138,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276139,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276140,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276141,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276142,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276143,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276201,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276202,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276203,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276204,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276205,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276206,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276207,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276208,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276288,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276301,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276302,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276303,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276304,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276305,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276306,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,276402,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276403,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,276404,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,276405,PostalCode,Mau,LGD,168,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.047456,83.561786,inherited:District,83.295494,25.797243,83.861197,26.280772,SOI_Districts,2023-12-11,false, +IN-PIN,276406,PostalCode,Azamgarh,LGD,123,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.045498,83.067296,inherited:District,82.664862,25.635858,83.468294,26.411759,SOI_Districts,2023-12-11,false, +IN-PIN,277001,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277121,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277123,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277124,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277201,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277202,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277203,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277204,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277205,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277207,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277208,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277209,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277210,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277211,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277213,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277214,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277216,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277219,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277301,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277302,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277303,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277304,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277401,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277402,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277403,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277501,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277502,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277503,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277504,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,277506,PostalCode,Ballia,LGD,126,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.876254,84.102614,inherited:District,83.675974,25.557476,84.634660,26.191679,SOI_Districts,2023-12-11,false, +IN-PIN,281001,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281003,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281004,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281005,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281006,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281104,PostalCode,Etah,LGD,138,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.515541,78.717419,inherited:District,78.173850,27.323676,79.277234,27.786185,SOI_Districts,2023-12-11,false, +IN-PIN,281121,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281122,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281123,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281201,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281202,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281203,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281204,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281205,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281206,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281301,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281302,PostalCode,Hathras,LGD,163,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +IN-PIN,281303,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281305,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281306,PostalCode,Hathras,LGD,163,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +IN-PIN,281307,PostalCode,Hathras,LGD,163,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.581716,78.164440,inherited:District,77.873840,27.296951,78.527282,27.847937,SOI_Districts,2023-12-11,false, +IN-PIN,281308,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281401,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281403,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281404,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281405,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281406,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281501,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281502,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,281504,PostalCode,Mathura,LGD,167,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.597491,77.625895,inherited:District,77.282904,27.233140,77.989564,27.967659,SOI_Districts,2023-12-11,false, +IN-PIN,282001,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,282002,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,282004,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,282005,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,282006,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,282007,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,282009,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,282010,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283101,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283102,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283103,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283104,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283105,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283110,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283111,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283112,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283113,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283114,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283115,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283119,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283121,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283122,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283123,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283124,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283125,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283126,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283130,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283135,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283136,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283141,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283142,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283145,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283151,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283152,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283201,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283202,PostalCode,Agra,LGD,118,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.036251,78.076398,inherited:District,77.397872,26.741709,78.853949,27.409394,SOI_Districts,2023-12-11,false, +IN-PIN,283203,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283204,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283205,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283206,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,283207,PostalCode,Firozabad,LGD,143,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.187236,78.526428,inherited:District,78.193984,26.878012,78.821423,27.510724,SOI_Districts,2023-12-11,false, +IN-PIN,284001,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284002,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284003,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284120,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284121,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284122,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284123,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,284124,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284126,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284127,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284128,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284135,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284136,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284201,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284202,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284203,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284204,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284205,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284206,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284301,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284302,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284303,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284304,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,284305,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284306,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,284401,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284402,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284403,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284404,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284405,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284406,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,284419,PostalCode,Jhansi,LGD,153,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508105,78.950857,inherited:District,78.300533,25.107194,79.420007,25.952757,SOI_Districts,2023-12-11,false, +IN-PIN,284501,PostalCode,Lalitpur,LGD,161,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.653500,78.561958,inherited:District,78.168873,24.176829,78.993648,25.224744,SOI_Districts,2023-12-11,false, +IN-PIN,285001,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285121,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285122,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285123,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285124,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285125,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285126,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285127,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285128,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285129,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285130,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285201,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285202,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285203,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285204,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285205,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285206,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,285223,PostalCode,Jalaun,LGD,151,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.091193,79.385801,inherited:District,78.930498,25.766405,79.954405,26.442608,SOI_Districts,2023-12-11,false, +IN-PIN,301001,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301018,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301019,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301020,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301021,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301022,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301023,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301024,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301025,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301026,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301027,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301028,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301030,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301035,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301401,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301402,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301404,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301405,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301406,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301407,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301408,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301409,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301410,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301411,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301412,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301413,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301414,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301415,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301418,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301427,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301604,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,301701,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301702,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301703,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301704,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301705,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301706,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301707,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301708,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301709,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301713,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,301714,PostalCode,Khairthal-Tijara,LGD,770,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,302001,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302002,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302003,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302004,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302006,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302012,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302013,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302015,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302016,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302017,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302018,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302019,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302020,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302021,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302022,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302026,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302027,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302028,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302029,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302031,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302033,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302034,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302037,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302038,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302039,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302041,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302042,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302044,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302046,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,302048,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303001,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303002,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303003,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303004,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303005,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303006,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303007,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303008,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303009,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303012,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303102,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,303103,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303104,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303105,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,303106,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,303107,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,303108,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,303109,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303110,PostalCode,Kotputli-Behror,LGD,782,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,303119,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303120,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303123,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303124,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303301,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303302,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303303,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303304,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303305,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303313,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303315,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303323,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303325,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303326,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303327,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303328,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303338,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303348,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303501,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303502,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303503,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303505,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303506,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303507,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303508,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303509,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303510,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303511,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,303601,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303602,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303603,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303604,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303701,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303702,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303704,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303706,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303712,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303801,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303803,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303804,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303805,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303806,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303807,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303901,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303903,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303904,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303905,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,303908,PostalCode,Jaipur,LGD,102,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.976650,75.719841,inherited:District,74.914346,26.440258,76.287472,27.860661,SOI_Districts,2023-12-11,false, +IN-PIN,304001,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304021,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304022,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304023,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,304024,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,304025,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304026,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,304501,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304502,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304503,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304504,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304505,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304507,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304801,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304802,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304803,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,304804,PostalCode,Tonk,LGD,116,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.148317,75.665959,inherited:District,75.112018,25.680222,76.316979,26.564525,SOI_Districts,2023-12-11,false, +IN-PIN,305001,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305002,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305003,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305004,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305005,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305012,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305021,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305022,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305023,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305024,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305025,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305026,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,305201,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305202,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305203,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305204,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305205,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305206,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305207,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305401,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305402,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305403,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305404,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305405,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305406,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305407,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305408,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305412,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305415,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305601,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305621,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305622,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305623,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305624,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305625,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305627,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305628,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305629,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305630,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305631,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305801,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305802,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305811,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305812,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305813,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305814,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305815,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305816,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305819,PostalCode,Ajmer,LGD,86,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.233499,74.773091,inherited:District,73.907523,25.647711,75.352627,26.978673,SOI_Districts,2023-12-11,false, +IN-PIN,305901,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305921,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305922,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305923,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305924,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305925,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305926,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,305927,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306001,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306021,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306022,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306023,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306101,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306102,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306103,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306104,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306105,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306114,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306115,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306116,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306119,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306126,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306301,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306302,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306303,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306304,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306305,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306306,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306307,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306308,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306401,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306421,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306422,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306501,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306502,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306503,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306504,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306601,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306602,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306603,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306701,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306702,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306703,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306704,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306705,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306706,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306707,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306708,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306709,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,306901,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306902,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,306912,PostalCode,Pali,LGD,111,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.706921,73.519596,inherited:District,72.777674,24.748365,74.398320,26.461296,SOI_Districts,2023-12-11,false, +IN-PIN,307001,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307019,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307022,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307023,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307024,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307025,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,307026,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307027,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307028,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307029,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,307030,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,307031,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307032,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307043,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307501,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307510,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307511,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307512,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307513,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307514,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,307515,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,307801,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307802,PostalCode,Sirohi,LGD,115,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.761751,72.776047,inherited:District,72.246272,24.337212,73.171885,25.285203,SOI_Districts,2023-12-11,false, +IN-PIN,307803,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,311001,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311011,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311021,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311022,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311023,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311024,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311025,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311026,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311030,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311201,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311202,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311203,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311204,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,311301,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,311302,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,311401,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311402,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311403,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311404,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311407,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311408,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311601,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311602,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311603,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311604,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311605,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311606,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311801,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311802,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311803,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311804,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311805,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,311806,PostalCode,Bhilwara,LGD,92,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.481644,74.726677,inherited:District,74.012568,25.014016,75.460994,25.963557,SOI_Districts,2023-12-11,false, +IN-PIN,312001,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312021,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312022,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312023,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312024,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312025,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312027,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312201,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312202,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312203,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312204,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312205,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312206,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312207,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312401,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312402,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312403,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312404,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312601,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312602,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312603,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312604,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312605,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312606,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312612,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312613,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312614,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312615,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312616,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312619,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312620,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,312623,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312624,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312625,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312626,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312628,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312629,PostalCode,Pratapgarh,LGD,629,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.029241,74.650304,inherited:District,74.170487,23.533084,74.982298,24.512759,SOI_Districts,2023-12-11,false, +IN-PIN,312901,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,313001,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313003,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,313011,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313022,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,313024,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313026,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313027,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313031,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,313038,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313201,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313202,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313203,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,313204,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313205,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,313206,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313207,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313211,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313301,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313321,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313322,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313323,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313324,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313325,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313327,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313328,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313329,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313330,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313331,PostalCode,Beawar,LGD,774,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313332,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313333,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313334,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313341,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313342,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313601,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,313602,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,313603,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313604,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313701,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313702,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313703,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313704,PostalCode,Rajsamand,LGD,112,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.227968,73.891708,inherited:District,73.472705,24.715518,74.391629,26.024247,SOI_Districts,2023-12-11,false, +IN-PIN,313705,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,313706,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313708,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,313801,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313802,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313803,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313804,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313805,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313901,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313902,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313903,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313904,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313905,PostalCode,Salumbar,LGD,777,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,313906,PostalCode,Udaipur,LGD,117,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.418699,73.689784,inherited:District,73.000983,23.802805,74.431828,25.104494,SOI_Districts,2023-12-11,false, +IN-PIN,314001,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314011,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314021,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314022,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314023,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314024,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314025,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314026,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314027,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,314028,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314029,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314030,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314031,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314032,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,314034,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,314035,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314036,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314037,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314038,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314401,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314402,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314403,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314404,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314406,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314801,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,314804,PostalCode,Dungarpur,LGD,99,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.731872,73.853138,inherited:District,73.351844,23.333841,74.380848,24.011147,SOI_Districts,2023-12-11,false, +IN-PIN,321001,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321021,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321022,PostalCode,Deeg,LGD,767,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,321023,PostalCode,Deeg,LGD,767,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,321024,PostalCode,Deeg,LGD,767,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,321025,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321026,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321028,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321201,PostalCode,Deeg,LGD,767,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,321202,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321203,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321204,PostalCode,Deeg,LGD,767,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,321205,PostalCode,Deeg,LGD,767,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,321206,PostalCode,Deeg,LGD,767,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,321301,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321302,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321303,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321401,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321402,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321403,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321404,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321405,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321406,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321407,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321408,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321409,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321410,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321411,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321601,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321602,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321605,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,321606,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,321607,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,321608,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,321609,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,321610,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,321611,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,321612,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,321613,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,321614,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321615,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,321633,PostalCode,Alwar,LGD,87,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.590899,76.601627,inherited:District,76.113972,27.054583,77.210751,28.221615,SOI_Districts,2023-12-11,false, +IN-PIN,321642,PostalCode,Bharatpur,LGD,91,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.247765,77.276538,inherited:District,76.879722,26.706062,77.762976,27.823758,SOI_Districts,2023-12-11,false, +IN-PIN,322001,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322023,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322024,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322025,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322026,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322027,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322028,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322029,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322030,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322033,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322034,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322201,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322202,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322203,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322204,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322205,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322211,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322212,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322213,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322214,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322215,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322216,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322218,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322219,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322220,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322230,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322234,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322236,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322238,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322240,PostalCode,Dausa,LGD,97,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.857579,76.510297,inherited:District,76.144765,26.378742,77.075390,27.232337,SOI_Districts,2023-12-11,false, +IN-PIN,322241,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322242,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322243,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322249,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322251,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322252,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322254,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322255,PostalCode,Karauli,LGD,108,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.523079,76.958707,inherited:District,76.473856,26.032101,77.394916,26.999665,SOI_Districts,2023-12-11,false, +IN-PIN,322701,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322702,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322703,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,322704,PostalCode,Sawai Madhopur,LGD,113,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.217244,76.460987,inherited:District,75.979629,25.741036,76.981465,26.717679,SOI_Districts,2023-12-11,false, +IN-PIN,323001,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323021,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323022,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323023,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323024,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323025,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323026,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323301,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323304,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,323306,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,323307,PostalCode,Chittorgarh,LGD,95,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.822240,74.775399,inherited:District,74.104943,24.217699,75.815726,25.215778,SOI_Districts,2023-12-11,false, +IN-PIN,323601,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323602,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323603,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323613,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323614,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323615,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323616,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323801,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323802,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,323803,PostalCode,Bundi,LGD,94,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485609,75.790630,inherited:District,75.259991,24.994845,76.356180,25.880815,SOI_Districts,2023-12-11,false, +IN-PIN,324001,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324002,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324003,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324004,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324005,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324006,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324007,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324008,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324009,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,324010,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325001,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325003,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325004,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325009,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325201,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325202,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325203,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325204,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325205,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325206,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325207,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325208,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325209,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325214,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325215,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325216,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325217,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325218,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325219,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325220,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325221,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325222,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325223,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325224,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,325601,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,325602,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,326001,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326021,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326022,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326023,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326033,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326034,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326035,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326036,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326037,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326038,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326039,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326501,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326502,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326512,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326513,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326514,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326515,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326516,PostalCode,Jhalawar,LGD,105,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.335986,76.193443,inherited:District,75.459339,23.755939,76.947399,24.870628,SOI_Districts,2023-12-11,false, +IN-PIN,326517,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,326518,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,326519,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,326520,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,326529,PostalCode,Baran,LGD,89,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.995630,76.747835,inherited:District,76.197401,24.403217,77.426619,25.438331,SOI_Districts,2023-12-11,false, +IN-PIN,326530,PostalCode,Kota,LGD,109,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.109266,76.106084,inherited:District,75.616567,24.540959,76.575790,25.848348,SOI_Districts,2023-12-11,false, +IN-PIN,327001,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327021,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327022,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327023,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327024,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327025,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327026,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327027,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327031,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327032,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327034,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327601,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327602,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327603,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327604,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327605,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327606,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,327801,PostalCode,Banswara,LGD,88,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.476390,74.361987,inherited:District,73.957498,23.058661,74.771158,23.925183,SOI_Districts,2023-12-11,false, +IN-PIN,328001,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328021,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328022,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328023,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328024,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328025,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328026,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328027,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328029,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328030,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328031,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,328041,PostalCode,Dholpur,LGD,98,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.680863,77.702142,inherited:District,77.227234,26.356519,78.272257,26.949919,SOI_Districts,2023-12-11,false, +IN-PIN,331001,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331021,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331022,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331023,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331024,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,331025,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,331026,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,331027,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,331028,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,331029,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331031,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331301,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331302,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331303,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331304,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331305,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331402,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331403,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331411,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331501,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331502,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331503,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331504,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331505,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331506,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331507,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331517,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331518,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331701,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331801,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,331802,PostalCode,Churu,LGD,96,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.345118,74.696405,inherited:District,73.857734,27.410996,75.671326,28.999842,SOI_Districts,2023-12-11,false, +IN-PIN,331803,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,331811,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,332001,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332002,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332021,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332023,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332024,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332025,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332026,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332027,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332028,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332029,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332030,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332031,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332041,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332042,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332301,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332302,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332303,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332304,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332305,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332307,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332311,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332312,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332315,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332316,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332317,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332318,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332401,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332402,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332403,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332404,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332405,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332406,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332411,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332601,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332602,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332603,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332701,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332702,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332703,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332705,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332706,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332707,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332708,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332709,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332710,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332711,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332712,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332713,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332714,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332715,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332716,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,332718,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332719,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332721,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332722,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332742,PostalCode,Sikar,LGD,114,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.634011,75.288276,inherited:District,74.680566,27.121114,76.092069,28.203813,SOI_Districts,2023-12-11,false, +IN-PIN,332746,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333001,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333010,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333011,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333012,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333020,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333021,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333022,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333023,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333024,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333025,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333026,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333027,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333028,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333029,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333030,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333031,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333032,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333033,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333034,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333035,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333036,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333041,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333042,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333053,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333055,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333302,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333303,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333304,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333305,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333307,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333308,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333501,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333502,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333503,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333504,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333514,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333515,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333516,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333517,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333701,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333702,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333704,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333705,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333707,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,333801,PostalCode,Jhunjhunu,LGD,106,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.092715,75.549656,inherited:District,75.024293,27.641062,76.095895,28.518196,SOI_Districts,2023-12-11,false, +IN-PIN,334001,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334021,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334022,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334023,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334024,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334201,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334202,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334302,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334303,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334305,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334402,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334601,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334602,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334603,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334604,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334801,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334802,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334803,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334804,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,334808,PostalCode,Bikaner,LGD,93,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.177209,73.174572,inherited:District,71.882646,27.183073,74.358918,29.049595,SOI_Districts,2023-12-11,false, +IN-PIN,335001,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335002,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335021,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335022,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335024,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335025,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335027,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335037,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335038,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335039,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335040,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335041,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335042,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335051,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335061,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335062,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335063,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335064,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335065,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335073,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335501,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335502,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335503,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335504,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335511,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335512,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335513,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335521,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335522,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335523,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335524,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335525,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335526,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335701,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335702,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335703,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335704,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335707,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335708,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335711,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335801,PostalCode,Hanumangarh,LGD,101,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.265979,74.561463,inherited:District,73.831182,28.776290,75.528030,29.955441,SOI_Districts,2023-12-11,false, +IN-PIN,335802,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335803,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335804,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335805,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,335901,PostalCode,Ganganagar,LGD,100,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,29.395945,73.570535,inherited:District,72.661875,28.724898,74.297504,30.198148,SOI_Districts,2023-12-11,false, +IN-PIN,341001,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341020,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341021,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341022,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341023,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341024,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341025,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341026,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341027,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341028,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341029,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341030,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341031,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341301,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341302,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341303,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341304,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341305,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341306,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341309,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341316,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341317,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341318,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341319,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341501,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341502,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341503,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341504,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341505,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341506,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341507,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341508,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341509,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341510,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341511,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341512,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341513,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341514,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341515,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,341516,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341517,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341518,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341519,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341520,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341533,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341542,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,341551,PostalCode,Didwana-Kuchaman,LGD,768,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,342001,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342005,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342008,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342012,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342013,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342014,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342015,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342021,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342022,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342023,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342024,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342025,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342027,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342028,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342029,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342030,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342037,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342301,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,342302,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342303,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342304,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342305,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342306,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342307,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,342308,PostalCode,Phalodi,LGD,772,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,342309,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342310,PostalCode,Phalodi,LGD,772,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,342311,PostalCode,Phalodi,LGD,772,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,342312,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342314,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342601,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342602,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342603,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342604,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342605,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342606,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342801,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342802,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342901,PostalCode,Jodhpur,LGD,107,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.747773,72.785854,inherited:District,71.806980,25.852681,73.870067,27.620285,SOI_Districts,2023-12-11,false, +IN-PIN,342902,PostalCode,Nagaur,LGD,110,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.065964,74.175488,inherited:District,73.085731,26.410071,75.365062,27.707623,SOI_Districts,2023-12-11,false, +IN-PIN,343001,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343002,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343021,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343022,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343023,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343024,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343025,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343027,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343028,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343029,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343030,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343032,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343039,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343040,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343041,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343042,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343048,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,343049,PostalCode,Jalore,LGD,104,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.099518,72.211683,inherited:District,71.187826,24.609363,73.091231,25.809760,SOI_Districts,2023-12-11,false, +IN-PIN,344001,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344011,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344012,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344021,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344022,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344024,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344025,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344026,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344027,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344031,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344032,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344033,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344034,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344035,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344037,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344043,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344044,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344501,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344502,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344701,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344702,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344703,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344704,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344705,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344706,PostalCode,Barmer,LGD,90,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.734986,71.474795,inherited:District,70.083387,24.649699,72.849742,26.513527,SOI_Districts,2023-12-11,false, +IN-PIN,344708,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344801,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,344802,PostalCode,Balotra,LGD,775,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.584176,73.849855,inherited:State,69.484426,23.058661,78.272257,30.198148,SOI_States,2023-12-11,false, +IN-PIN,345001,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345021,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345022,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345023,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345024,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345025,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345026,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345027,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345028,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345031,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345033,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,345034,PostalCode,Jaisalmer,LGD,103,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.075201,70.901037,inherited:District,69.484426,26.017598,72.337859,28.037038,SOI_Districts,2023-12-11,false, +IN-PIN,360002,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360003,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,360004,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360005,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360006,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360020,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360021,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360022,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360023,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360024,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360025,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360026,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360028,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360030,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360035,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,360040,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360045,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,360050,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,360055,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360060,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360070,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360110,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,360311,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360320,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360325,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360330,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360360,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360370,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360375,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360380,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360405,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360410,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360421,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360430,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360440,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360450,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360452,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360460,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360465,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,360470,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360480,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,360485,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,360490,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,360510,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,360515,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,360520,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,360530,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,360531,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,360540,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,360545,PostalCode,Porbandar,LGD,456,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +IN-PIN,360550,PostalCode,Porbandar,LGD,456,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +IN-PIN,360570,PostalCode,Porbandar,LGD,456,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +IN-PIN,360575,PostalCode,Porbandar,LGD,456,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +IN-PIN,360576,PostalCode,Porbandar,LGD,456,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.654830,69.777118,inherited:District,69.371361,21.227855,70.148402,21.979396,SOI_Districts,2023-12-11,false, +IN-PIN,360579,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,360590,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361001,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361002,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361006,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361007,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361010,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361011,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361012,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361013,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361110,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361120,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361130,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361140,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361160,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361162,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361170,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361210,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361220,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361230,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361240,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361250,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361280,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,361305,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361306,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361310,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361315,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361320,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361325,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361330,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361335,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361345,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361347,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,361350,PostalCode,Devbhumi Dwarka,LGD,674,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.123915,69.460359,inherited:District,68.935758,21.793790,69.936019,22.484737,SOI_Districts,2023-12-11,false, +IN-PIN,362001,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,362002,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362011,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362015,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362020,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362030,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362037,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362110,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362120,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362130,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362135,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362140,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362150,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362205,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362215,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362220,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362222,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362225,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362227,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362230,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362240,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362245,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362250,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362255,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362260,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362263,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362265,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362268,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362275,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362310,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362315,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362510,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362520,PostalCode,Diu,LGD,464,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false, +IN-PIN,362530,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362550,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362560,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362565,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362570,PostalCode,Diu,LGD,464,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.721261,70.937137,inherited:District,70.870788,20.699506,71.155439,20.771437,SOI_Districts,2023-12-11,false, +IN-PIN,362610,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362620,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362625,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362630,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362640,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362650,PostalCode,Junagadh,LGD,448,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.322204,70.484799,inherited:District,69.941701,20.932851,71.148508,21.680519,SOI_Districts,2023-12-11,false, +IN-PIN,362710,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,362720,PostalCode,Gir Somnath,LGD,675,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.904305,70.754896,inherited:District,70.237995,20.690009,71.223762,21.169550,SOI_Districts,2023-12-11,false, +IN-PIN,363020,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363030,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363040,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363110,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363115,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363310,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363320,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363330,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363351,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363410,PostalCode,Botad,LGD,676,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +IN-PIN,363421,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,363423,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,363427,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363430,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,363435,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363440,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363510,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363520,PostalCode,Rajkot,LGD,457,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.025462,70.744479,inherited:District,70.029659,21.525836,71.509185,22.613322,SOI_Districts,2023-12-11,false, +IN-PIN,363530,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363621,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363623,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363630,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363641,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363642,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363643,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363650,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363655,PostalCode,Jamnagar,LGD,447,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.284992,70.195152,inherited:District,69.725353,21.698004,70.616368,22.860482,SOI_Districts,2023-12-11,false, +IN-PIN,363660,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363670,PostalCode,Morbi,LGD,673,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.834967,70.903505,inherited:District,70.432660,22.397249,71.359608,23.222286,SOI_Districts,2023-12-11,false, +IN-PIN,363745,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363750,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363755,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363760,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363765,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363775,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,363780,PostalCode,Surendranagar,LGD,460,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.765832,71.593076,inherited:District,70.980814,22.123650,72.189408,23.526721,SOI_Districts,2023-12-11,false, +IN-PIN,364001,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364002,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364004,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364050,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364060,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364070,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364081,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364110,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364120,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364130,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364135,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364140,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364145,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364150,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364210,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364230,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364240,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364250,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364260,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364265,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364270,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,364275,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364280,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364290,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364295,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364310,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364313,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364320,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364330,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364505,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364510,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364515,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,364521,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,364522,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,364525,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,364530,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,364710,PostalCode,Botad,LGD,676,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +IN-PIN,364720,PostalCode,Botad,LGD,676,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +IN-PIN,364730,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,364740,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364750,PostalCode,Botad,LGD,676,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +IN-PIN,364760,PostalCode,Bhavnagar,LGD,443,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.567255,71.890807,inherited:District,71.477931,20.995849,72.361194,22.130320,SOI_Districts,2023-12-11,false, +IN-PIN,364765,PostalCode,Botad,LGD,676,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +IN-PIN,365220,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365410,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365421,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365430,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365435,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365440,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365450,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365455,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365456,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365460,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365480,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365535,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365540,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365541,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365550,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365555,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365560,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365601,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365610,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365620,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365630,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365635,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365640,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365645,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365650,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,365730,PostalCode,Amreli,LGD,439,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.425061,71.242250,inherited:District,70.735804,20.794774,71.677370,22.041269,SOI_Districts,2023-12-11,false, +IN-PIN,370001,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370015,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370020,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370030,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370040,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370105,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370110,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370115,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370130,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370135,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370140,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370145,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370150,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370155,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370160,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370165,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370201,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370205,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370210,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370405,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370410,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370415,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370421,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370425,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370427,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370430,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370435,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370445,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370450,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370455,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370460,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370465,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370475,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370485,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370490,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370510,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370601,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370605,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370610,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370615,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370620,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370625,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370627,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370630,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370640,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370645,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370650,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370655,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370660,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370665,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370670,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,370675,PostalCode,Kachchh,LGD,449,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.649743,69.939927,inherited:District,68.177512,22.773679,71.762720,24.688725,SOI_Districts,2023-12-11,false, +IN-PIN,380001,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380005,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380006,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380007,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380009,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380013,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380015,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380016,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380021,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380022,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380023,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380026,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380028,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380049,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380050,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380051,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380052,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380054,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380055,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380058,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380059,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380060,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,380061,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382007,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382016,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382028,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382042,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382055,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382110,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382115,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382120,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382130,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382140,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382145,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382150,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382170,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382210,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382213,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382220,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382225,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382230,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382240,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382245,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382250,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382255,PostalCode,Botad,LGD,676,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +IN-PIN,382260,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382265,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382305,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382308,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382315,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382320,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382321,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382330,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382345,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382355,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382405,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382415,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382418,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382421,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382422,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382423,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382424,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382425,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382426,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382427,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382428,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382430,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382433,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382435,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382443,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382445,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382449,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382450,PostalCode,Botad,LGD,676,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.111237,71.675173,inherited:District,71.390706,21.690953,72.041366,22.402505,SOI_Districts,2023-12-11,false, +IN-PIN,382455,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382460,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382463,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382465,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382470,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382475,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382480,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382481,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382610,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382620,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382630,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382640,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382650,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382721,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382722,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,382725,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382729,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382735,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382740,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382810,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382835,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382845,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,382855,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,383001,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383002,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383010,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383030,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383110,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383120,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383205,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383210,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383215,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383220,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383225,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383230,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383235,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383240,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383245,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383246,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383250,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383251,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383255,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383260,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383270,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383275,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383276,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383305,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383307,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383310,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383315,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383316,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383317,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383320,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383325,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383330,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383335,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383340,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383345,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383350,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383355,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383410,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383421,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383422,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383430,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383434,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383440,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383450,PostalCode,Arvalli,LGD,672,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.460770,73.333057,inherited:District,72.971188,23.058435,73.656365,23.910347,SOI_Districts,2023-12-11,false, +IN-PIN,383460,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,383462,PostalCode,Sabar Kantha,LGD,458,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.804138,73.036193,inherited:District,72.723438,23.239060,73.420826,24.498144,SOI_Districts,2023-12-11,false, +IN-PIN,384001,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384002,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384003,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384005,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384110,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384120,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384130,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384135,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384140,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384151,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384160,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384170,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384220,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384221,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384225,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384229,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384230,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384240,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384241,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384245,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384246,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384255,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384260,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384265,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384266,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384272,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384275,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384285,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384290,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,384305,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384310,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384315,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384320,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384325,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384330,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384335,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384340,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384345,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384355,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384360,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384410,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384412,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384415,PostalCode,Ahmedabad,LGD,438,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.756916,72.243635,inherited:District,71.839985,21.970603,72.842622,23.508784,SOI_Districts,2023-12-11,false, +IN-PIN,384421,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384430,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384435,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384440,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384441,PostalCode,Gandhinagar,LGD,446,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.255060,72.691828,inherited:District,72.336213,22.996334,73.029449,23.567580,SOI_Districts,2023-12-11,false, +IN-PIN,384445,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384450,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384455,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384460,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384465,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384470,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384515,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384520,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384530,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384540,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384550,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384560,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384565,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,384570,PostalCode,Mahesana,LGD,451,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.609492,72.466734,inherited:District,71.940386,23.038803,72.866653,24.102253,SOI_Districts,2023-12-11,false, +IN-PIN,385001,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385010,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385110,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385120,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385130,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385135,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385210,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385310,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385320,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385330,PostalCode,Vav-Tharad,LGD,789,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +IN-PIN,385340,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,385350,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,385360,PostalCode,Patan,LGD,455,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.770377,71.758662,inherited:District,71.034394,23.392026,72.482488,24.155310,SOI_Districts,2023-12-11,false, +IN-PIN,385410,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385421,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385505,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385510,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385515,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385520,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385530,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385535,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385540,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385545,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385550,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385555,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385560,PostalCode,Banas Kantha,LGD,441,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.287309,72.023840,inherited:District,71.128825,23.826832,73.028082,24.712536,SOI_Districts,2023-12-11,false, +IN-PIN,385565,PostalCode,Vav-Tharad,LGD,789,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +IN-PIN,385566,PostalCode,Vav-Tharad,LGD,789,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +IN-PIN,385570,PostalCode,Vav-Tharad,LGD,789,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +IN-PIN,385575,PostalCode,Vav-Tharad,LGD,789,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.692625,71.595166,inherited:State,68.177512,20.119229,74.476433,24.712536,SOI_States,2023-12-11,false, +IN-PIN,387001,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387002,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387110,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387115,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,387120,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387130,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387210,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,387220,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387230,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387240,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,387305,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387310,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,387315,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387320,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387325,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387330,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387335,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387340,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387345,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,387350,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387355,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387360,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387365,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387370,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387375,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,387380,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,387430,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387510,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387520,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387530,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,387540,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387550,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387560,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387570,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387610,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387620,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387630,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387635,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387640,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387650,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,387710,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,388001,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388110,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388130,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388140,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388150,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388160,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388170,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388180,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388205,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388210,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388215,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388220,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388225,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,388230,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,388235,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388245,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,388250,PostalCode,Kheda,LGD,450,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.837464,72.950496,inherited:District,72.504780,22.500070,73.419350,23.205724,SOI_Districts,2023-12-11,false, +IN-PIN,388255,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388260,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,388265,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,388270,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,388305,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388307,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388310,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388315,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388320,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388325,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388330,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388335,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388340,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388345,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388350,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388355,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388360,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388365,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388370,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388410,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388421,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388430,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388440,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388450,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388460,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388465,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388470,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388480,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388510,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388520,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388530,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388540,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388543,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388545,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388550,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388560,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388570,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388580,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388590,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388610,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388620,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388625,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388630,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388640,PostalCode,Anand,LGD,440,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.426788,72.750860,inherited:District,72.334089,22.105284,73.219796,22.735035,SOI_Districts,2023-12-11,false, +IN-PIN,388710,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,388713,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389002,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389110,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,389115,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389120,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389130,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389140,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389146,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389151,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389152,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389154,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389155,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389160,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389170,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389172,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389175,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389180,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389210,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,389220,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,389230,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,389235,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,389250,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,389260,PostalCode,Mahisagar,LGD,669,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.187631,73.647054,inherited:District,73.242153,22.924135,74.019543,23.458430,SOI_Districts,2023-12-11,false, +IN-PIN,389310,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389320,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389330,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389350,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389370,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,389380,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389382,PostalCode,Dahod,LGD,445,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.860252,74.112368,inherited:District,73.775331,22.502777,74.476433,23.335918,SOI_Districts,2023-12-11,false, +IN-PIN,389390,PostalCode,Panch Mahals,LGD,454,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.719962,73.625560,inherited:District,73.350221,22.286525,73.928239,23.109059,SOI_Districts,2023-12-11,false, +IN-PIN,390001,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390003,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390004,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390009,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390010,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390011,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390012,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390013,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390014,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390019,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390020,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390022,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390023,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390024,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,390025,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391101,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391105,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391107,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391110,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391115,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391120,PostalCode,Narmada,LGD,452,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +IN-PIN,391125,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391130,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391135,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391140,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391145,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391150,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391152,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391156,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391160,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391165,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391168,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391170,PostalCode,Chhotaudepur,LGD,668,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.219363,73.873322,inherited:District,73.476090,21.870908,74.291178,22.574059,SOI_Districts,2023-12-11,false, +IN-PIN,391210,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391220,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391240,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391243,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391244,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391250,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391310,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391320,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391330,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391340,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391350,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391410,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391421,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391430,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391440,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391445,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391450,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391510,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391520,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391530,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391740,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391745,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391760,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391761,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391770,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391774,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391775,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391776,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391780,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,391810,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392001,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392011,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392012,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392020,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392025,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392030,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392035,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392040,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392110,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392130,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392140,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392155,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392180,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,392210,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,392220,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,392310,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,393010,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,393020,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,393025,PostalCode,Narmada,LGD,452,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +IN-PIN,393030,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,393040,PostalCode,Narmada,LGD,452,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +IN-PIN,393041,PostalCode,Narmada,LGD,452,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +IN-PIN,393050,PostalCode,Narmada,LGD,452,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +IN-PIN,393105,PostalCode,Vadodara,LGD,461,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.248056,73.239088,inherited:District,72.848636,21.822152,73.566209,22.814554,SOI_Districts,2023-12-11,false, +IN-PIN,393110,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,393115,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,393125,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,393130,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,393135,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,393140,PostalCode,Narmada,LGD,452,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +IN-PIN,393151,PostalCode,Narmada,LGD,452,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +IN-PIN,393155,PostalCode,Narmada,LGD,452,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.736946,73.644961,inherited:District,73.296738,21.396353,73.989211,22.082092,SOI_Districts,2023-12-11,false, +IN-PIN,394101,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394105,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394107,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394110,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,394112,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394115,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,394116,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,394120,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,394125,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,394130,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394140,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394150,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394155,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394160,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394163,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394170,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394180,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394185,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394190,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394210,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394221,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394230,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394235,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394240,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394246,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394248,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394250,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394270,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394305,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394310,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394315,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394317,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394320,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394325,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394327,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394330,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394335,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394340,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394345,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394350,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394352,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394355,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394370,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394375,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394380,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394405,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394410,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394421,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394430,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394440,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394445,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394510,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394516,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394517,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394520,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394530,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394540,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394550,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394601,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394620,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394630,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394635,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394640,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394650,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394651,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394652,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394655,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394660,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394670,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394680,PostalCode,Tapi,LGD,641,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.191623,73.626694,inherited:District,73.198008,20.808588,74.332332,21.569074,SOI_Districts,2023-12-11,false, +IN-PIN,394690,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,394710,PostalCode,Dangs,LGD,444,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false, +IN-PIN,394715,PostalCode,Dangs,LGD,444,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false, +IN-PIN,394716,PostalCode,Dangs,LGD,444,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false, +IN-PIN,394720,PostalCode,Dangs,LGD,444,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false, +IN-PIN,394730,PostalCode,Dangs,LGD,444,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.804932,73.700704,inherited:District,73.465278,20.562473,73.944043,21.084893,SOI_Districts,2023-12-11,false, +IN-PIN,394810,PostalCode,Bharuch,LGD,442,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.781624,72.940813,inherited:District,72.525894,21.400110,73.499894,22.240622,SOI_Districts,2023-12-11,false, +IN-PIN,395001,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395002,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395003,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395004,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395005,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395006,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395007,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395008,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395009,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395010,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395011,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395012,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395013,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395017,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,395023,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,396001,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396007,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396020,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396030,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396035,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396040,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396045,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396050,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396051,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396055,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396060,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396065,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396066,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396067,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396105,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396110,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396115,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396120,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396125,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396126,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396130,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396135,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396140,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396145,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396150,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396155,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396165,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396170,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396180,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396185,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396191,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396193,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396195,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396210,PostalCode,Daman,LGD,463,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.414235,72.852713,inherited:District,72.804603,20.366417,72.904117,20.478030,SOI_Districts,2023-12-11,false, +IN-PIN,396215,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396220,PostalCode,Dadra And Nagar Haveli,LGD,465,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.191077,73.058434,inherited:District,72.911457,20.047018,73.218192,20.361328,SOI_Districts,2023-12-11,false, +IN-PIN,396230,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396235,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396240,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396310,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396321,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396325,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396350,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396360,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396370,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396375,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396380,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396385,PostalCode,Valsad,LGD,462,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.418149,73.120123,inherited:District,72.740002,20.119229,73.493624,20.751700,SOI_Districts,2023-12-11,false, +IN-PIN,396403,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396406,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396409,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396412,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396415,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396418,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396421,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396427,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396430,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396433,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396436,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396439,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396445,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396450,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396460,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396463,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396466,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396469,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396472,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396475,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396510,PostalCode,Surat,LGD,459,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.268923,73.071114,inherited:District,72.597503,20.815590,73.699129,21.569262,SOI_Districts,2023-12-11,false, +IN-PIN,396521,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396530,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396540,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396560,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396570,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396580,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,396590,PostalCode,Navsari,LGD,453,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.815302,73.092556,inherited:District,72.722110,20.579785,73.496178,21.079430,SOI_Districts,2023-12-11,false, +IN-PIN,400042,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400043,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400049,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400050,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400051,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400052,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400053,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400057,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400059,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400060,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400061,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400063,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400064,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400065,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400066,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400067,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400068,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400069,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400070,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400071,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400072,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400074,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400076,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400078,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400079,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400080,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400081,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400083,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400086,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400087,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400088,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400091,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400092,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400093,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400095,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400096,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400097,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400098,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400099,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400101,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400102,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400103,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400104,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400601,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400602,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400603,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400605,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400606,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400607,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400608,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400612,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400615,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400701,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400702,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,400703,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,400704,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,400706,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400707,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,400708,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400709,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,400710,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,401101,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401102,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401103,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401106,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,401107,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,401201,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401202,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401203,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401204,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401206,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,401207,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401208,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401301,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401302,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401303,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401304,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401305,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,401401,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401402,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401403,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401404,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401405,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401501,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401502,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401503,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401504,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401601,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401602,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401603,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401604,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401605,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401606,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401607,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401608,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401701,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401702,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,401703,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,402101,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402102,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402103,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402104,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402105,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402106,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402107,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402108,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402109,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402110,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402111,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402112,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402113,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402114,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402115,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402116,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402117,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402120,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402122,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402126,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402201,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402202,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402203,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402204,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402207,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402208,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402209,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402301,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402302,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402303,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402304,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402305,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402306,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402307,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402308,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402309,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402401,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402402,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402403,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,402404,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,403001,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403002,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403005,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403006,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403101,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403102,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403103,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403104,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403105,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403106,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403107,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403108,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403110,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403114,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403115,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403202,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403204,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403401,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403402,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403403,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403404,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403406,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403410,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403501,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403502,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403503,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403504,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403505,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403506,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403507,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403508,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403509,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403510,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403511,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403512,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403513,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403515,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403516,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403517,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403523,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403524,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403527,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403529,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403530,PostalCode,North Goa,LGD,551,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.549741,73.976654,inherited:District,73.676952,15.267168,74.282652,15.801017,SOI_Districts,2023-12-11,false, +IN-PIN,403601,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403701,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403702,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403703,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403704,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403705,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403706,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403707,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403708,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403709,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403710,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403711,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403712,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403713,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403714,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403715,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403716,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403717,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403718,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403719,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403720,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403721,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403722,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403723,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403724,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403725,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403728,PostalCode,Kushavati,LGD,793,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.365280,74.049474,inherited:State,73.676952,14.898440,74.336437,15.801017,SOI_States,2023-12-11,false, +IN-PIN,403731,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403801,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403803,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,403806,PostalCode,South Goa,LGD,552,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.200426,74.114554,inherited:District,73.783155,14.898440,74.336437,15.490766,SOI_Districts,2023-12-11,false, +IN-PIN,410101,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410201,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410202,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410203,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410205,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410206,PostalCode,Mumbai Suburban,LGD,483,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.131779,72.884497,inherited:District,72.775576,18.978896,72.981129,19.269610,SOI_Districts,2023-12-11,false, +IN-PIN,410207,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410208,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410209,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410210,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410216,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410218,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410220,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410221,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410222,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,410301,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410401,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410402,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410403,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410405,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410406,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410501,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410502,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410503,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410504,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410505,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410506,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410507,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410508,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410509,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410510,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410511,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410512,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410513,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410515,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,410516,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411001,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411006,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411012,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411014,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411015,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411017,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411019,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411020,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411021,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411023,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411024,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411025,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411026,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411027,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411028,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411031,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411033,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411035,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411036,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411038,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411040,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411041,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411043,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411044,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411045,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411046,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411047,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411048,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411051,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411052,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411057,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411058,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411060,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411061,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411062,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411067,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411068,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411069,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411070,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,411073,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412101,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412102,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412103,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412104,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412105,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412106,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412107,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412108,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412109,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412110,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412112,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412115,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412201,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412202,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412203,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412204,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412205,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412206,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412207,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412208,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412209,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412210,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412211,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412212,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412213,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412214,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412215,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412216,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412218,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412219,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412220,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412301,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412303,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412304,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412305,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412306,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412307,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412308,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412311,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412312,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412401,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412402,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412403,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412404,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412405,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412406,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412408,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412409,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412411,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412412,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,412801,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,412802,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,412803,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,412804,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,412805,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,412806,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,413001,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413002,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413004,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413006,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413007,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413008,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413101,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413102,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413103,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413104,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413105,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413106,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413107,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413108,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413109,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413110,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413111,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413112,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413113,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413114,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413115,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413116,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413118,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413120,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413130,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413132,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413133,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,413201,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413202,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413203,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413204,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413205,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413206,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413207,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,413208,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413209,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413210,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413211,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413212,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413213,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413214,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413215,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413216,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413217,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413218,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413219,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413220,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413221,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413222,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413223,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413224,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413226,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413227,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413228,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413229,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,413248,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413249,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,413250,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413251,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413252,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413253,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413255,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413301,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413302,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413303,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413304,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413305,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413306,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413307,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413308,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413309,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413310,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413314,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413315,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413317,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413319,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413322,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413324,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413401,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413402,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413403,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413404,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413405,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413406,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413409,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413410,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413411,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413412,PostalCode,Solapur,LGD,496,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.790589,75.483125,inherited:District,74.607063,17.145733,76.429132,18.554071,SOI_Districts,2023-12-11,false, +IN-PIN,413502,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413503,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413504,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413505,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413506,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413507,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413508,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413509,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413510,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413511,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413512,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413513,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413514,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413515,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413516,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413517,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413518,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413519,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413520,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413521,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413522,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413523,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413524,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413525,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413526,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413527,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413528,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413529,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413530,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413531,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413532,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413534,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413544,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413581,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413582,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413601,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413602,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413603,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413604,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413605,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413606,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413607,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,413608,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413623,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413624,PostalCode,Dharashiv,LGD,488,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.188746,76.036898,inherited:District,75.283970,17.640951,76.790394,18.698171,SOI_Districts,2023-12-11,false, +IN-PIN,413701,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413702,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413703,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413704,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413705,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413706,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413707,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413708,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413709,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413710,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413711,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413712,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413713,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413714,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413715,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413716,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413717,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413718,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413719,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413720,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413721,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413722,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413723,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413725,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413726,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413728,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413736,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413737,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413738,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413739,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,413801,PostalCode,Pune,LGD,490,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.571118,74.067998,inherited:District,73.322839,17.894956,75.162809,19.395124,SOI_Districts,2023-12-11,false, +IN-PIN,414001,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414002,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414003,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414005,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414006,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414101,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414102,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414103,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414105,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414106,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414111,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414113,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414201,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414202,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,414203,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,414204,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,414205,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,414208,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,414301,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414302,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414303,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414304,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414305,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414306,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414401,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414402,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414403,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414501,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414502,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414503,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414504,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414505,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414601,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414602,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414603,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414604,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414605,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414606,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414607,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414609,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,414701,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,415001,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415002,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415003,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415004,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415010,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415011,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415012,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415013,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415014,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415015,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415019,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415020,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415021,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415022,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415023,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415101,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,415102,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415103,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415104,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415105,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415106,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415107,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415108,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415109,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415110,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415111,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415112,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415114,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415115,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415116,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415122,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415124,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415202,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415203,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415205,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415206,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415207,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415208,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415209,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415211,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415212,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415213,PostalCode,Raigad,LGD,491,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.510062,73.221458,inherited:District,72.851052,17.850621,73.666275,19.135483,SOI_Districts,2023-12-11,false, +IN-PIN,415214,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415301,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415302,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415303,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415304,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415305,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415306,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415307,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415308,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415309,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415310,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415311,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415312,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415313,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415315,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415401,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415402,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415403,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415404,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415405,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415406,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415407,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415408,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415409,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415410,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415411,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415412,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415413,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415414,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415415,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,415501,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415502,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415503,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415504,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415505,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415506,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415507,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415508,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415509,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415510,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415511,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415512,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415513,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415514,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415515,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415516,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415517,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415518,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415519,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415520,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415521,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415522,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415523,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415524,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415525,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415526,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415527,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415528,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415530,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415536,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415537,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415538,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415539,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415540,PostalCode,Satara,LGD,494,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.670029,74.172659,inherited:District,73.532506,17.090054,74.906108,18.182666,SOI_Districts,2023-12-11,false, +IN-PIN,415601,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415602,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415603,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415604,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415605,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415606,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415607,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415608,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415609,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415610,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415611,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415612,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415613,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415614,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415615,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415616,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415617,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415619,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415620,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415621,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415626,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415628,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415629,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415634,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415637,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415639,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415640,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415641,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415643,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415701,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415702,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415703,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415705,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415706,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415708,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415709,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415710,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415711,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415712,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415713,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415714,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415715,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415716,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415717,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415718,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415719,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415720,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415722,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415724,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415726,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415727,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415728,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415729,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415730,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415801,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415802,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415803,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415804,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415805,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415806,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,415807,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416001,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416004,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416005,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416006,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416010,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416011,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416013,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416101,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416102,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416103,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416104,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416105,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416106,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416107,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416108,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416109,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416110,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416111,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416112,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416113,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416114,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416115,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416118,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416119,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416120,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416121,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416122,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416138,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416143,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416145,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416201,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416202,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416203,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416204,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416205,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416206,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416207,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416208,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416209,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416210,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416211,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416212,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416213,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416214,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416215,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416216,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416218,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416219,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416220,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416221,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416223,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416229,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416230,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416231,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416232,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416234,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416235,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416236,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416301,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416302,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416303,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416304,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416305,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416306,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416307,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416308,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416309,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416310,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416311,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416312,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416313,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416314,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416315,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416316,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416401,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416402,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416403,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416404,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416405,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416406,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416407,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416408,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416409,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416410,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416411,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416412,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416413,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416414,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416415,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416416,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416417,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416418,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416419,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416420,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416436,PostalCode,Sangli,LGD,493,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.113762,74.767913,inherited:District,73.690855,16.714908,75.678968,17.629852,SOI_Districts,2023-12-11,false, +IN-PIN,416501,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416502,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416503,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416504,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416505,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416506,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416507,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416508,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416509,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416510,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416511,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416512,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416513,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416514,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416515,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416516,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416517,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416518,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416519,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416520,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416521,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416522,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416523,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416524,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416525,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416526,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416527,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416528,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416529,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416531,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416534,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416549,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416550,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416551,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416552,PostalCode,Kolhapur,LGD,480,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.471481,74.158638,inherited:District,73.688393,15.741591,74.700581,17.182077,SOI_Districts,2023-12-11,false, +IN-PIN,416601,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416602,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416603,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416604,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416605,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416606,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416608,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416609,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416610,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416611,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416612,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416613,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416614,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416615,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416616,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416620,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416623,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416626,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416628,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416630,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416632,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416701,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416702,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416703,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416704,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416705,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416707,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416709,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416712,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416713,PostalCode,Ratnagiri,LGD,492,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.274418,73.454737,inherited:District,73.028796,16.493680,73.863492,18.071303,SOI_Districts,2023-12-11,false, +IN-PIN,416801,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416803,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416804,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416805,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416806,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416807,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416810,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416811,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416812,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,416813,PostalCode,Sindhudurg,LGD,495,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.134008,73.737764,inherited:District,73.310871,15.606085,74.208925,16.665349,SOI_Districts,2023-12-11,false, +IN-PIN,421002,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421101,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421102,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421103,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421201,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421202,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421203,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421204,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421207,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421301,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421302,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421303,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,421305,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421306,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421308,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421311,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421312,PostalCode,Palghar,LGD,665,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.793763,73.012184,inherited:District,72.641991,19.287193,73.503849,20.228324,SOI_Districts,2023-12-11,false, +IN-PIN,421401,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421402,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421403,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421501,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421502,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421503,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421505,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421506,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421601,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421602,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,421605,PostalCode,Thane,LGD,497,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.361103,73.319543,inherited:District,72.778655,18.987001,73.794744,19.731483,SOI_Districts,2023-12-11,false, +IN-PIN,422001,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422003,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422004,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422006,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422007,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422009,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422010,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422013,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422101,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422102,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422103,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422104,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422105,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422112,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422113,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422201,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422202,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422203,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422204,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422205,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422206,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422207,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422208,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422209,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422210,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422211,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422212,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422213,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422214,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422215,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422222,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422301,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422302,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422303,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422304,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422305,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422306,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422308,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422401,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422402,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422403,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422502,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422601,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422602,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422603,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422604,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422605,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422606,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,422608,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422610,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422611,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422620,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,422622,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423101,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423102,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423104,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423105,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423106,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423107,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423108,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423109,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423110,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423111,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423117,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423201,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423202,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423203,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423204,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423205,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423206,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423208,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423212,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423213,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423301,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423302,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423303,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423401,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423402,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423403,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423501,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423502,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,423601,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423602,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423603,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423604,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423605,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423607,PostalCode,Ahilyanagar,LGD,466,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.205391,74.675231,inherited:District,73.614375,18.329871,75.582971,19.995188,SOI_Districts,2023-12-11,false, +IN-PIN,423701,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,423702,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,423703,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,424001,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424002,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424005,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424006,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424101,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424102,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424103,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424104,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424105,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424106,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424107,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424108,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424109,PostalCode,Nashik,LGD,487,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.259820,74.070699,inherited:District,73.247720,19.585905,74.935083,20.864772,SOI_Districts,2023-12-11,false, +IN-PIN,424119,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424201,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424202,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424203,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424204,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424205,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424206,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424207,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424208,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,424301,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424302,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424303,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424304,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424305,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424306,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424307,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424308,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424309,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424310,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424311,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,424318,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425002,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425003,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425101,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425102,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425103,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425104,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425105,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425107,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425108,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425109,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425110,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425111,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425112,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425113,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425114,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425115,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425116,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425201,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425203,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425301,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425302,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425303,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425304,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425305,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425306,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425307,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425308,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425309,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425310,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425311,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425327,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425401,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425402,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425403,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425404,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425405,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425406,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425407,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425408,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425409,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425410,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425411,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425412,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425413,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425414,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425415,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425416,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425417,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425418,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425419,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425420,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425421,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425422,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425423,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425424,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425426,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425427,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425428,PostalCode,Dhule,LGD,474,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.110370,74.600494,inherited:District,73.850549,20.627721,75.206558,21.634455,SOI_Districts,2023-12-11,false, +IN-PIN,425432,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425442,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425444,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425452,PostalCode,Nandurbar,LGD,486,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.550193,74.216834,inherited:District,73.576881,20.997635,74.771189,22.030269,SOI_Districts,2023-12-11,false, +IN-PIN,425501,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425502,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425503,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425504,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425505,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425506,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425507,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425508,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,425524,PostalCode,Jalgaon,LGD,478,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.932545,75.487940,inherited:District,74.760213,20.269968,76.398656,21.414769,SOI_Districts,2023-12-11,false, +IN-PIN,431001,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431002,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431004,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431005,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431006,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431007,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431008,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431010,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431101,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431102,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431103,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431104,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431105,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431107,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431109,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431110,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431111,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431112,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431113,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431114,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431115,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431116,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431117,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431118,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431120,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431121,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431122,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431123,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431124,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431125,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431126,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431127,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431128,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431129,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431130,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431131,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431132,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431133,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431134,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431135,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431136,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431137,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431142,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431143,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431144,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431147,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431148,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431150,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431151,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431152,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431153,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431154,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431202,PostalCode,Chhatrapati Sambhajinagar,LGD,469,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.027442,75.279761,inherited:District,74.588859,19.377625,76.042854,20.668315,SOI_Districts,2023-12-11,false, +IN-PIN,431204,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431205,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431206,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431207,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431208,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431209,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431211,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431212,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431213,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431214,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431215,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431401,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431402,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431501,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431502,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431503,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431504,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431505,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431506,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431507,PostalCode,Jalna,LGD,479,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.807495,75.980338,inherited:District,75.558265,19.276989,76.534596,20.560939,SOI_Districts,2023-12-11,false, +IN-PIN,431508,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431509,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431510,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431511,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431512,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431513,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431514,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431515,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431516,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431517,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431518,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431519,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431521,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431522,PostalCode,Latur,LGD,481,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.373766,76.759511,inherited:District,76.203488,17.870575,77.294358,18.839169,SOI_Districts,2023-12-11,false, +IN-PIN,431523,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431530,PostalCode,Beed,LGD,470,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.946660,75.838225,inherited:District,74.808230,18.542158,76.734067,19.442395,SOI_Districts,2023-12-11,false, +IN-PIN,431536,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431537,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431540,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431541,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431542,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431601,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431602,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431603,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431604,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431605,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431606,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431701,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431702,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431703,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431704,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431705,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431707,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431708,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431709,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431710,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431711,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431712,PostalCode,Hingoli,LGD,477,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.637480,77.100455,inherited:District,76.512011,19.221781,77.489581,20.017630,SOI_Districts,2023-12-11,false, +IN-PIN,431713,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431714,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431715,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431716,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431717,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431718,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431719,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431720,PostalCode,Parbhani,LGD,489,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.268248,76.690859,inherited:District,76.206949,18.749695,77.192568,19.830486,SOI_Districts,2023-12-11,false, +IN-PIN,431721,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431722,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431723,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431724,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431731,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431736,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431741,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431742,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431743,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431745,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431746,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431750,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431801,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431802,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431803,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431804,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431805,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431806,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431807,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431808,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431809,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431810,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,431811,PostalCode,Nanded,LGD,485,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.112445,77.617827,inherited:District,76.929647,18.262536,78.364675,19.924349,SOI_Districts,2023-12-11,false, +IN-PIN,440001,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440002,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440003,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440005,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440007,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440008,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440010,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440012,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440013,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440014,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440018,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440022,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440023,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440024,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440025,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440026,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440027,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440030,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440033,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440034,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440035,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440036,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,440037,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441001,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441002,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441101,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441102,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441103,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441104,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441105,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441106,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441107,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441108,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441109,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441110,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441111,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441112,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441113,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441122,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441123,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441201,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441202,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441203,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441204,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441205,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441206,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441207,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,441208,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,441209,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,441210,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441212,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441214,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441215,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441217,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,441221,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441222,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441223,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441224,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441225,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441226,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,441301,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441302,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441303,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441304,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441305,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441306,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441401,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441404,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441501,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441502,PostalCode,Nagpur,LGD,484,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.178155,79.085030,inherited:District,78.249598,20.583134,79.656969,21.722284,SOI_Districts,2023-12-11,false, +IN-PIN,441601,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441614,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441701,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441702,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441801,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441802,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441803,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441804,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441805,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441806,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441807,PostalCode,Gondia,LGD,476,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +IN-PIN,441809,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441901,PostalCode,Gondia,LGD,476,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +IN-PIN,441902,PostalCode,Gondia,LGD,476,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +IN-PIN,441903,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441904,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441905,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441906,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441907,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441908,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441909,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441910,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441911,PostalCode,Gondia,LGD,476,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +IN-PIN,441912,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441913,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441914,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441915,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,441916,PostalCode,Gondia,LGD,476,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.165306,80.217855,inherited:District,79.795941,20.654657,80.681708,21.636060,SOI_Districts,2023-12-11,false, +IN-PIN,441924,PostalCode,Bhandara,LGD,471,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.115620,79.763152,inherited:District,79.448131,20.641398,80.102114,21.603893,SOI_Districts,2023-12-11,false, +IN-PIN,442001,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442101,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442102,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442104,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442105,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442106,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442107,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442111,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442201,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442202,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442203,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442301,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442302,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442304,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442305,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442306,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442307,PostalCode,Wardha,LGD,498,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.797145,78.585883,inherited:District,78.052241,20.293783,79.222357,21.359268,SOI_Districts,2023-12-11,false, +IN-PIN,442401,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442402,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442403,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442404,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442406,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442503,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442504,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442505,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442507,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442603,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442604,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442605,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442606,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442701,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442702,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442703,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442704,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442705,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442707,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442709,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442710,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,442902,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442903,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442904,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442905,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442906,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442907,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442908,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442914,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442916,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442917,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442918,PostalCode,Chandrapur,LGD,473,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.118386,79.440540,inherited:District,78.798774,19.458902,79.992140,20.734880,SOI_Districts,2023-12-11,false, +IN-PIN,442919,PostalCode,Gadchiroli,LGD,475,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.787912,80.240432,inherited:District,79.740815,18.680374,80.897684,20.834681,SOI_Districts,2023-12-11,false, +IN-PIN,443001,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443002,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443101,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443102,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443103,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443104,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443106,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443112,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443201,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443202,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443203,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443204,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443206,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443301,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443302,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443303,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443304,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443308,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443401,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443402,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443403,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,443404,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444001,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444002,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444003,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444004,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444005,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444006,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444101,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444102,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444103,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444104,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444105,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444106,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444107,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444108,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444109,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444110,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444111,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444117,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444126,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444201,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444202,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444203,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444204,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444301,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444302,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444303,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444304,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444306,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444311,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444312,PostalCode,Buldhana,LGD,472,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.510807,76.407133,inherited:District,75.923094,19.837494,76.826076,21.289683,SOI_Districts,2023-12-11,false, +IN-PIN,444401,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444402,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444403,PostalCode,Washim,LGD,499,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +IN-PIN,444404,PostalCode,Washim,LGD,499,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +IN-PIN,444405,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444407,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444409,PostalCode,Washim,LGD,499,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +IN-PIN,444501,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444502,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444503,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444504,PostalCode,Washim,LGD,499,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +IN-PIN,444505,PostalCode,Washim,LGD,499,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +IN-PIN,444506,PostalCode,Washim,LGD,499,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +IN-PIN,444507,PostalCode,Washim,LGD,499,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +IN-PIN,444510,PostalCode,Washim,LGD,499,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.234103,77.216372,inherited:District,76.605672,19.846933,77.690712,20.757033,SOI_Districts,2023-12-11,false, +IN-PIN,444511,PostalCode,Akola,LGD,467,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.748005,77.056016,inherited:District,76.691117,20.275229,77.619805,21.248031,SOI_Districts,2023-12-11,false, +IN-PIN,444602,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444604,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444605,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444606,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444701,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444702,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444704,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444705,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444706,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444707,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444708,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444709,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444710,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444711,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444717,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444719,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444720,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444723,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444801,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444802,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444803,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444804,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444805,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444806,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444807,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444808,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444809,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444810,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444813,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444901,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444902,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444903,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444904,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444905,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444906,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444907,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444908,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,444915,PostalCode,Amravati,LGD,468,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.187565,77.570354,inherited:District,76.621747,20.538126,78.449240,21.770015,SOI_Districts,2023-12-11,false, +IN-PIN,445001,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445002,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445101,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445102,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445103,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445105,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445106,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445109,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445110,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445201,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445202,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445203,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445204,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445205,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445206,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445207,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445209,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445210,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445211,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445215,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445216,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445230,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445301,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445302,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445303,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445304,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445305,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445306,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445307,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445308,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445324,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445401,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,445402,PostalCode,Yavatmal,LGD,500,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.083546,78.161025,inherited:District,77.282612,19.430553,79.149196,20.697991,SOI_Districts,2023-12-11,false, +IN-PIN,450001,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,450051,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450110,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450112,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450114,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450116,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450117,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450119,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450221,PostalCode,Burhanpur,LGD,397,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +IN-PIN,450331,PostalCode,Burhanpur,LGD,397,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +IN-PIN,450332,PostalCode,Burhanpur,LGD,397,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +IN-PIN,450337,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450445,PostalCode,Burhanpur,LGD,397,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +IN-PIN,450551,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450554,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450661,PostalCode,Burhanpur,LGD,397,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +IN-PIN,450771,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450881,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,450991,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,451001,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451111,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451113,PostalCode,Khargone (West Nimar),LGD,414,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +IN-PIN,451115,PostalCode,Khargone (West Nimar),LGD,414,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +IN-PIN,451220,PostalCode,Khargone (West Nimar),LGD,414,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +IN-PIN,451221,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451224,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451225,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451228,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451331,PostalCode,Burhanpur,LGD,397,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +IN-PIN,451332,PostalCode,Khandwa (East Nimar),LGD,405,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.935151,76.568398,inherited:District,76.012531,21.541688,77.221029,22.412220,SOI_Districts,2023-12-11,false, +IN-PIN,451335,PostalCode,Khargone (West Nimar),LGD,414,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.918639,75.771495,inherited:District,75.207377,21.368772,76.234845,22.540022,SOI_Districts,2023-12-11,false, +IN-PIN,451440,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451441,PostalCode,Burhanpur,LGD,397,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.370677,76.369160,inherited:District,75.948036,21.070688,76.795609,21.599021,SOI_Districts,2023-12-11,false, +IN-PIN,451442,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451447,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451449,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451551,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451556,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451660,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451666,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451770,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,451881,PostalCode,Barwani,LGD,393,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.788217,75.020879,inherited:District,74.431640,21.368528,75.628647,22.134299,SOI_Districts,2023-12-11,false, +IN-PIN,452001,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452002,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452003,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452006,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452007,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452010,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452011,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452012,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452015,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452016,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,452020,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453001,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453111,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453112,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453115,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453220,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453331,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453441,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453551,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453552,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453555,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453661,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,453771,PostalCode,Indore,LGD,410,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.713138,75.782221,inherited:District,75.423068,22.332137,76.247278,23.089235,SOI_Districts,2023-12-11,false, +IN-PIN,454001,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454010,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454111,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454116,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454221,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454331,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454335,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454441,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454446,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454449,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454552,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454660,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454665,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454773,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454774,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,454775,PostalCode,Dhar,LGD,403,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.497955,75.103968,inherited:District,74.471052,22.022318,75.713758,23.135157,SOI_Districts,2023-12-11,false, +IN-PIN,455001,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455111,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455115,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455116,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455118,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455221,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455223,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455227,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455332,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455336,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455339,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455440,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,455459,PostalCode,Dewas,LGD,402,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.744198,76.456861,inherited:District,75.897031,22.289808,77.132649,23.321682,SOI_Districts,2023-12-11,false, +IN-PIN,456001,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456003,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456006,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456010,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456221,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456222,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456224,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456313,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456331,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456335,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456337,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456440,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456441,PostalCode,Agar-Malwa,LGD,667,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +IN-PIN,456443,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456550,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456661,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456664,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456665,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456668,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456770,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456771,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,456776,PostalCode,Ujjain,LGD,435,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.330883,75.669034,inherited:District,75.134549,22.829642,76.254767,23.757490,SOI_Districts,2023-12-11,false, +IN-PIN,457001,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457114,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457118,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457119,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457222,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457226,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457331,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457333,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457336,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457339,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457340,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457441,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457550,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457555,PostalCode,Ratlam,LGD,423,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.502339,75.088589,inherited:District,74.514037,23.085726,75.690452,23.919931,SOI_Districts,2023-12-11,false, +IN-PIN,457661,PostalCode,Alirajpur,LGD,639,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +IN-PIN,457770,PostalCode,Jhabua,LGD,412,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +IN-PIN,457772,PostalCode,Jhabua,LGD,412,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +IN-PIN,457773,PostalCode,Jhabua,LGD,412,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +IN-PIN,457775,PostalCode,Jhabua,LGD,412,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +IN-PIN,457777,PostalCode,Jhabua,LGD,412,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +IN-PIN,457779,PostalCode,Jhabua,LGD,412,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.892390,74.671552,inherited:District,74.318901,22.529415,75.015958,23.244552,SOI_Districts,2023-12-11,false, +IN-PIN,457882,PostalCode,Alirajpur,LGD,639,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +IN-PIN,457885,PostalCode,Alirajpur,LGD,639,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +IN-PIN,457887,PostalCode,Alirajpur,LGD,639,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +IN-PIN,457888,PostalCode,Alirajpur,LGD,639,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +IN-PIN,457990,PostalCode,Alirajpur,LGD,639,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +IN-PIN,457993,PostalCode,Alirajpur,LGD,639,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.314414,74.363886,inherited:District,74.029382,21.925878,74.747666,22.646004,SOI_Districts,2023-12-11,false, +IN-PIN,458001,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458002,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458110,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458113,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458116,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458118,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458220,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458226,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458228,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458330,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458336,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458339,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458389,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458441,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458468,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458470,PostalCode,Neemuch,LGD,419,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.590871,75.141734,inherited:District,74.708727,24.210197,75.608510,25.042441,SOI_Districts,2023-12-11,false, +IN-PIN,458553,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458556,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458558,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458664,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458667,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458669,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458771,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458775,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458778,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458880,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458883,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458888,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458895,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,458990,PostalCode,Mandsaur,LGD,416,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204426,75.405140,inherited:District,74.879755,23.764731,75.923339,24.761799,SOI_Districts,2023-12-11,false, +IN-PIN,460001,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460004,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460110,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460220,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460225,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460330,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460440,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460443,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460447,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460449,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460551,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460553,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460554,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460557,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460661,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460663,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460665,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460666,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,460668,PostalCode,Betul,LGD,394,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.878491,77.871242,inherited:District,76.986158,21.357447,78.549222,22.402090,SOI_Districts,2023-12-11,false, +IN-PIN,461001,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461005,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461110,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461111,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461115,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461116,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461122,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461221,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461223,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461228,PostalCode,Harda,LGD,408,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +IN-PIN,461331,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,461335,PostalCode,Harda,LGD,408,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +IN-PIN,461441,PostalCode,Harda,LGD,408,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.232408,77.123520,inherited:District,76.780365,21.906018,77.510014,22.579525,SOI_Districts,2023-12-11,false, +IN-PIN,461446,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461551,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461661,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461668,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461771,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461775,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461881,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,461990,PostalCode,Narmadapuram,LGD,409,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.590666,77.990687,inherited:District,77.212884,22.213444,78.698723,22.987103,SOI_Districts,2023-12-11,false, +IN-PIN,462001,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462010,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462016,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462022,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462023,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462026,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462030,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462036,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462037,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462038,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462039,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462040,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462041,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462042,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462043,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462044,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462045,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462046,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462047,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462101,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,462120,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,463106,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,463111,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,464001,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464111,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464113,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464114,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464220,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464221,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464224,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464226,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464228,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464240,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,464258,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464331,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464334,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464337,PostalCode,Vidisha,LGD,437,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.892313,77.813112,inherited:District,77.259222,23.343568,78.311609,24.349022,SOI_Districts,2023-12-11,false, +IN-PIN,464551,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464570,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464573,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464651,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464661,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464665,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464668,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464671,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464672,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464770,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464774,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464881,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464884,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464886,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464986,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464990,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,464993,PostalCode,Raisen,LGD,421,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.220061,78.120590,inherited:District,77.338897,22.789683,78.816730,23.745513,SOI_Districts,2023-12-11,false, +IN-PIN,465001,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465106,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465110,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465113,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465116,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465118,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465220,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465223,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465226,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465227,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465230,PostalCode,Agar-Malwa,LGD,667,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +IN-PIN,465333,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465335,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465337,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465339,PostalCode,Shajapur,LGD,430,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.383975,76.559497,inherited:District,76.120588,23.107651,77.049735,23.726587,SOI_Districts,2023-12-11,false, +IN-PIN,465441,PostalCode,Agar-Malwa,LGD,667,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +IN-PIN,465445,PostalCode,Agar-Malwa,LGD,667,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +IN-PIN,465447,PostalCode,Agar-Malwa,LGD,667,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +IN-PIN,465449,PostalCode,Agar-Malwa,LGD,667,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +IN-PIN,465550,PostalCode,Agar-Malwa,LGD,667,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826490,76.071034,inherited:District,75.686719,23.541300,76.408534,24.329276,SOI_Districts,2023-12-11,false, +IN-PIN,465661,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465667,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465669,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465674,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465677,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465679,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465680,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465683,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465685,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465687,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465689,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465691,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,465693,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,465697,PostalCode,Rajgarh,LGD,422,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.861158,76.732433,inherited:District,76.189474,23.456926,77.226393,24.286514,SOI_Districts,2023-12-11,false, +IN-PIN,466001,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466111,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466113,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466114,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466115,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466116,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466118,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466120,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466125,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466221,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466331,PostalCode,Bhopal,LGD,396,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.470159,77.390757,inherited:District,77.165664,23.072505,77.648521,23.895352,SOI_Districts,2023-12-11,false, +IN-PIN,466445,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466446,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466651,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466661,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,466665,PostalCode,Sehore,LGD,427,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.987637,77.127430,inherited:District,76.430204,22.555423,78.034711,23.674547,SOI_Districts,2023-12-11,false, +IN-PIN,470001,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470002,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470004,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470021,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470051,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470113,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470115,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470117,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470118,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470119,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470120,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470125,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470221,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470223,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470226,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470227,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470228,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470229,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470232,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470235,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470335,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470337,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470339,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470340,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470441,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470442,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470661,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470663,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470664,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470666,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470669,PostalCode,Sagar,LGD,425,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.850043,78.759732,inherited:District,78.059727,23.165412,79.352328,24.451206,SOI_Districts,2023-12-11,false, +IN-PIN,470672,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470673,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470675,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470771,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470772,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470775,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470880,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,470881,PostalCode,Damoh,LGD,400,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.812319,79.526831,inherited:District,79.054854,23.150435,79.955611,24.445783,SOI_Districts,2023-12-11,false, +IN-PIN,471001,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471101,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471105,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471111,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471201,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471301,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471311,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471313,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471315,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471318,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471405,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471408,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471411,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471501,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471510,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471515,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471516,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471525,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471606,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,471625,PostalCode,Chhatarpur,LGD,398,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.798140,79.665843,inherited:District,78.985761,24.096693,80.431675,25.424019,SOI_Districts,2023-12-11,false, +IN-PIN,472001,PostalCode,Tikamgarh,LGD,434,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +IN-PIN,472005,PostalCode,Tikamgarh,LGD,434,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +IN-PIN,472010,PostalCode,Tikamgarh,LGD,434,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +IN-PIN,472101,PostalCode,Tikamgarh,LGD,434,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +IN-PIN,472111,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,472115,PostalCode,Tikamgarh,LGD,434,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +IN-PIN,472118,PostalCode,Tikamgarh,LGD,434,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +IN-PIN,472221,PostalCode,Tikamgarh,LGD,434,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +IN-PIN,472246,PostalCode,Niwari,LGD,722,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +IN-PIN,472331,PostalCode,Tikamgarh,LGD,434,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.883196,79.016107,inherited:District,78.631370,24.436622,79.346354,25.274050,SOI_Districts,2023-12-11,false, +IN-PIN,472336,PostalCode,Niwari,LGD,722,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +IN-PIN,472337,PostalCode,Niwari,LGD,722,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +IN-PIN,472339,PostalCode,Niwari,LGD,722,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +IN-PIN,472442,PostalCode,Niwari,LGD,722,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +IN-PIN,472445,PostalCode,Niwari,LGD,722,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +IN-PIN,472447,PostalCode,Niwari,LGD,722,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.284792,78.748152,inherited:District,78.435031,25.067648,78.989332,25.557220,SOI_Districts,2023-12-11,false, +IN-PIN,473001,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473101,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473105,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473110,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473111,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473113,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473115,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473118,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473222,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473226,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473249,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473287,PostalCode,Guna,LGD,406,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.555940,77.198633,inherited:District,76.799878,23.884286,77.735704,25.116094,SOI_Districts,2023-12-11,false, +IN-PIN,473330,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473331,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473332,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473335,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473440,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473443,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473444,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473445,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473446,PostalCode,Ashoknagar,LGD,391,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.609385,77.875356,inherited:District,77.471716,24.229393,78.278005,25.007729,SOI_Districts,2023-12-11,false, +IN-PIN,473551,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473585,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473660,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473662,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473665,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473770,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473774,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473775,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473781,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473793,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473865,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473880,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473885,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473990,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,473995,PostalCode,Shivpuri,LGD,432,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.365539,77.805373,inherited:District,77.011952,24.835100,78.468596,25.913154,SOI_Districts,2023-12-11,false, +IN-PIN,474001,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,474002,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,474003,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,474004,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,474005,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,474006,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,474010,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,474020,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,475001,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,475002,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,475005,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,475110,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,475115,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,475220,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,475330,PostalCode,Gwalior,LGD,407,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.039596,78.146084,inherited:District,77.667337,25.708624,78.652263,26.348411,SOI_Districts,2023-12-11,false, +IN-PIN,475335,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,475336,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,475661,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,475671,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,475673,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,475675,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,475682,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,475685,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,475686,PostalCode,Datia,LGD,401,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.801368,78.598029,inherited:District,78.214377,25.052525,78.894812,26.290863,SOI_Districts,2023-12-11,false, +IN-PIN,476001,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476111,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476115,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476134,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476219,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476221,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476224,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476228,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476229,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476332,PostalCode,Sheopur,LGD,431,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +IN-PIN,476335,PostalCode,Sheopur,LGD,431,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +IN-PIN,476337,PostalCode,Sheopur,LGD,431,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +IN-PIN,476339,PostalCode,Sheopur,LGD,431,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.754479,77.007246,inherited:District,76.471992,25.282122,77.669808,26.217864,SOI_Districts,2023-12-11,false, +IN-PIN,476355,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,476444,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,476554,PostalCode,Morena,LGD,417,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.413015,77.868115,inherited:District,77.114584,25.899996,78.545228,26.869562,SOI_Districts,2023-12-11,false, +IN-PIN,477001,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477105,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477111,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477116,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477117,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477222,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477227,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477331,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477332,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477333,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477335,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477441,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477445,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477446,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477447,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477449,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477555,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477557,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,477660,PostalCode,Bhind,LGD,395,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.421879,78.721245,inherited:District,78.210468,25.906340,79.138831,26.797279,SOI_Districts,2023-12-11,false, +IN-PIN,480001,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480003,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480105,PostalCode,Pandhurna,LGD,785,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,480106,PostalCode,Pandhurna,LGD,785,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,480107,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480108,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480109,PostalCode,Pandhurna,LGD,785,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,480110,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480111,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480112,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480115,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480221,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480223,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480224,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480331,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480334,PostalCode,Pandhurna,LGD,785,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,480337,PostalCode,Pandhurna,LGD,785,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,480338,PostalCode,Pandhurna,LGD,785,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,480441,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480449,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480551,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480555,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480557,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480559,PostalCode,Chhindwara,LGD,399,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.122543,78.854128,inherited:District,78.244959,21.462293,79.406534,22.816877,SOI_Districts,2023-12-11,false, +IN-PIN,480661,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480667,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480771,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480880,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480881,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480882,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480884,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480886,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480887,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480888,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480990,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480991,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480994,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480996,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480997,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,480999,PostalCode,Seoni,LGD,428,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.316960,79.689162,inherited:District,79.194898,21.594272,80.289425,22.955552,SOI_Districts,2023-12-11,false, +IN-PIN,481001,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481051,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481102,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481105,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481111,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481115,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481116,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481117,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481222,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481224,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481226,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481331,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481332,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481335,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481337,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481441,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481445,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481449,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481551,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481556,PostalCode,Balaghat,LGD,392,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.880796,80.359833,inherited:District,79.510083,21.320360,81.048420,22.401968,SOI_Districts,2023-12-11,false, +IN-PIN,481661,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481662,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481663,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481664,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481665,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481666,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481668,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481672,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481768,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481771,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481776,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481778,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481879,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481880,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481882,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481883,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481884,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481885,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481990,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481995,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,481996,PostalCode,Dindori,LGD,404,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.889989,81.051289,inherited:District,80.478143,22.439711,81.741463,23.374539,SOI_Districts,2023-12-11,false, +IN-PIN,481998,PostalCode,Mandla,LGD,415,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.639254,80.512199,inherited:District,79.951353,22.202158,81.197488,23.172353,SOI_Districts,2023-12-11,false, +IN-PIN,482001,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482002,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482003,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482004,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482005,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482008,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482009,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482010,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482011,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482021,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482051,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,482056,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483001,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483053,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483105,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483110,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483113,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483119,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483220,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483222,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483225,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483330,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483331,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,483332,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483334,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483336,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483440,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,483442,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,483501,PostalCode,Jabalpur,LGD,411,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.234003,79.975911,inherited:District,79.346815,22.830800,80.584607,23.615764,SOI_Districts,2023-12-11,false, +IN-PIN,483770,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,483773,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,483775,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,483880,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,483990,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,484001,PostalCode,Shahdol,LGD,429,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +IN-PIN,484110,PostalCode,Shahdol,LGD,429,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +IN-PIN,484113,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484116,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484224,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484330,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484334,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484336,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484440,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484444,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484446,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484447,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484551,PostalCode,Umaria,LGD,436,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +IN-PIN,484555,PostalCode,Umaria,LGD,436,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +IN-PIN,484660,PostalCode,Umaria,LGD,436,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +IN-PIN,484661,PostalCode,Umaria,LGD,436,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +IN-PIN,484664,PostalCode,Umaria,LGD,436,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +IN-PIN,484665,PostalCode,Umaria,LGD,436,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.562793,80.973190,inherited:District,80.528379,23.194468,81.353058,24.091656,SOI_Districts,2023-12-11,false, +IN-PIN,484669,PostalCode,Shahdol,LGD,429,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +IN-PIN,484770,PostalCode,Shahdol,LGD,429,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +IN-PIN,484771,PostalCode,Shahdol,LGD,429,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +IN-PIN,484774,PostalCode,Shahdol,LGD,429,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +IN-PIN,484776,PostalCode,Shahdol,LGD,429,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.629442,81.473493,inherited:District,80.998669,23.024383,81.984797,24.282079,SOI_Districts,2023-12-11,false, +IN-PIN,484881,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484886,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,484887,PostalCode,Anuppur,LGD,390,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.056856,81.682706,inherited:District,81.124160,22.644486,82.199388,23.425034,SOI_Districts,2023-12-11,false, +IN-PIN,485001,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485111,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485112,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485113,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485114,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485115,PostalCode,Maihar,LGD,784,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,485221,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485226,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485227,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485331,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485334,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485441,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485446,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485447,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485551,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485661,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485666,PostalCode,Satna,LGD,426,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.528700,80.830748,inherited:District,80.099868,23.967178,81.388825,25.187939,SOI_Districts,2023-12-11,false, +IN-PIN,485771,PostalCode,Maihar,LGD,784,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,485772,PostalCode,Maihar,LGD,784,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,485773,PostalCode,Katni,LGD,413,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.752838,80.401399,inherited:District,79.815201,23.303439,80.950346,24.131856,SOI_Districts,2023-12-11,false, +IN-PIN,485774,PostalCode,Maihar,LGD,784,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,485775,PostalCode,Maihar,LGD,784,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,485778,PostalCode,Maihar,LGD,784,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,485881,PostalCode,Maihar,LGD,784,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486001,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486003,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486005,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486006,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486111,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486114,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486115,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486117,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486123,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486220,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486223,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486226,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486331,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486333,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486335,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486338,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486340,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486341,PostalCode,MAUGANJ,LGD,766,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.538142,78.289776,inherited:State,74.029382,21.070688,82.812612,26.869562,SOI_States,2023-12-11,false, +IN-PIN,486440,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486441,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486445,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486446,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486447,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486448,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486450,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486550,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486553,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486556,PostalCode,Rewa,LGD,424,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.755316,81.587224,inherited:District,81.038816,24.319956,82.306692,25.192192,SOI_Districts,2023-12-11,false, +IN-PIN,486661,PostalCode,Sidhi,LGD,433,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +IN-PIN,486666,PostalCode,Sidhi,LGD,433,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +IN-PIN,486669,PostalCode,Sidhi,LGD,433,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +IN-PIN,486670,PostalCode,Sidhi,LGD,433,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +IN-PIN,486675,PostalCode,Sidhi,LGD,433,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +IN-PIN,486771,PostalCode,Sidhi,LGD,433,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +IN-PIN,486775,PostalCode,Sidhi,LGD,433,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +IN-PIN,486776,PostalCode,Sidhi,LGD,433,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.220619,81.834023,inherited:District,81.305232,23.806365,82.379754,24.616461,SOI_Districts,2023-12-11,false, +IN-PIN,486881,PostalCode,Singrauli,LGD,638,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +IN-PIN,486882,PostalCode,Singrauli,LGD,638,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +IN-PIN,486884,PostalCode,Singrauli,LGD,638,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +IN-PIN,486886,PostalCode,Singrauli,LGD,638,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +IN-PIN,486887,PostalCode,Singrauli,LGD,638,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +IN-PIN,486889,PostalCode,Singrauli,LGD,638,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +IN-PIN,486890,PostalCode,Singrauli,LGD,638,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.215913,82.419945,inherited:District,81.877883,23.783677,82.812612,24.702586,SOI_Districts,2023-12-11,false, +IN-PIN,487001,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487110,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487114,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487118,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487221,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487225,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487330,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487334,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487337,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487441,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487551,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487555,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487661,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487770,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487771,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487777,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,487881,PostalCode,Narsimhapur,LGD,418,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.936237,79.087885,inherited:District,78.443158,22.615332,79.643175,23.253569,SOI_Districts,2023-12-11,false, +IN-PIN,488001,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488050,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488059,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488220,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488222,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488333,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488441,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488442,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488443,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488446,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,488448,PostalCode,Panna,LGD,420,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.421056,80.189010,inherited:District,79.734712,23.821203,80.678661,25.126322,SOI_Districts,2023-12-11,false, +IN-PIN,490001,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490006,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490011,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490020,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490021,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490022,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490023,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490024,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490025,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,490036,PostalCode,Bemetara,LGD,650,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +IN-PIN,490042,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,491001,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,491107,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,491111,PostalCode,Durg,LGD,378,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.220343,81.383275,inherited:District,81.148423,20.849098,81.625429,21.544526,SOI_Districts,2023-12-11,false, +IN-PIN,491221,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491222,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491223,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491225,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491226,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491227,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491228,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491229,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,491230,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491331,PostalCode,Bemetara,LGD,650,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +IN-PIN,491332,PostalCode,Bemetara,LGD,650,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +IN-PIN,491335,PostalCode,Bemetara,LGD,650,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +IN-PIN,491336,PostalCode,Kabeerdham,LGD,382,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +IN-PIN,491337,PostalCode,Bemetara,LGD,650,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +IN-PIN,491338,PostalCode,Bemetara,LGD,650,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +IN-PIN,491340,PostalCode,Bemetara,LGD,650,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +IN-PIN,491441,PostalCode,Rajnandgaon,LGD,388,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +IN-PIN,491443,PostalCode,Rajnandgaon,LGD,388,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +IN-PIN,491444,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,491445,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,491557,PostalCode,Rajnandgaon,LGD,388,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +IN-PIN,491558,PostalCode,Rajnandgaon,LGD,388,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +IN-PIN,491559,PostalCode,Kabeerdham,LGD,382,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +IN-PIN,491661,PostalCode,Rajnandgaon,LGD,388,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.039397,80.820053,inherited:District,80.388524,20.117961,81.216633,21.835478,SOI_Districts,2023-12-11,false, +IN-PIN,491665,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491666,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,491668,PostalCode,Mohla-Manpur-Ambagarh Chouki,LGD,761,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,491771,PostalCode,Balod,LGD,646,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.741641,81.188372,inherited:District,80.803192,20.376984,81.517033,21.078573,SOI_Districts,2023-12-11,false, +IN-PIN,491881,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,491885,PostalCode,Khairagarh-Chhuikhadan-Gandai,LGD,759,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,491888,PostalCode,Kabeerdham,LGD,382,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +IN-PIN,491993,PostalCode,Bemetara,LGD,650,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.660879,81.469869,inherited:District,81.138821,21.331912,81.768342,22.018876,SOI_Districts,2023-12-11,false, +IN-PIN,491995,PostalCode,Kabeerdham,LGD,382,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +IN-PIN,491996,PostalCode,Kabeerdham,LGD,382,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.092525,81.222508,inherited:District,80.825494,21.703643,81.556063,22.526144,SOI_Districts,2023-12-11,false, +IN-PIN,492001,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,492003,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,492012,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,492013,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,492014,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,492015,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,492018,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,492099,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,492101,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,492109,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,492112,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493101,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493111,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493113,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493114,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,493116,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,493118,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493195,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493196,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493221,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,493222,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,493225,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493228,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493229,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493331,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493332,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493335,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493338,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493344,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493441,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493445,PostalCode,Mahasamund,LGD,385,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +IN-PIN,493448,PostalCode,Mahasamund,LGD,385,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +IN-PIN,493449,PostalCode,Mahasamund,LGD,385,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +IN-PIN,493526,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493551,PostalCode,Balodabazar-Bhatapara,LGD,644,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.582031,82.327512,inherited:District,81.657299,21.262292,82.985852,21.883837,SOI_Districts,2023-12-11,false, +IN-PIN,493554,PostalCode,Mahasamund,LGD,385,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +IN-PIN,493555,PostalCode,Mahasamund,LGD,385,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +IN-PIN,493558,PostalCode,Mahasamund,LGD,385,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.207969,82.608312,inherited:District,81.988183,20.827506,83.279357,21.556523,SOI_Districts,2023-12-11,false, +IN-PIN,493559,PostalCode,Raipur,LGD,387,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.285804,81.820087,inherited:District,81.534090,20.940294,82.193468,21.626139,SOI_Districts,2023-12-11,false, +IN-PIN,493661,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493662,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493663,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493770,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493773,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493776,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493778,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493881,PostalCode,Gariyaband,LGD,645,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +IN-PIN,493885,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493887,PostalCode,Gariyaband,LGD,645,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +IN-PIN,493888,PostalCode,Gariyaband,LGD,645,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +IN-PIN,493889,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,493890,PostalCode,Gariyaband,LGD,645,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +IN-PIN,493891,PostalCode,Gariyaband,LGD,645,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +IN-PIN,493992,PostalCode,Gariyaband,LGD,645,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +IN-PIN,493996,PostalCode,Gariyaband,LGD,645,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.448083,82.235234,inherited:District,81.873162,19.775293,82.724585,21.083335,SOI_Districts,2023-12-11,false, +IN-PIN,494001,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494010,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494111,PostalCode,Sukma,LGD,642,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +IN-PIN,494114,PostalCode,Sukma,LGD,642,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +IN-PIN,494115,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494122,PostalCode,Sukma,LGD,642,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.272188,81.365650,inherited:District,80.911489,17.782307,81.969148,18.774633,SOI_Districts,2023-12-11,false, +IN-PIN,494221,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494222,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494223,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494224,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494226,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494228,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494229,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494230,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494237,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494331,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494332,PostalCode,Uttar Bastar Kanker,LGD,381,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +IN-PIN,494333,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,494334,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,494335,PostalCode,Uttar Bastar Kanker,LGD,381,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +IN-PIN,494336,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,494337,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,494347,PostalCode,Dhamtari,LGD,377,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.555245,81.808854,inherited:District,81.410117,20.043808,82.180224,21.026909,SOI_Districts,2023-12-11,false, +IN-PIN,494441,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494442,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494444,PostalCode,Bijapur,LGD,636,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +IN-PIN,494446,PostalCode,Bijapur,LGD,636,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +IN-PIN,494447,PostalCode,Bijapur,LGD,636,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +IN-PIN,494448,PostalCode,Bijapur,LGD,636,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +IN-PIN,494449,PostalCode,Bastar,LGD,374,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.095835,81.867804,inherited:District,81.343929,18.593009,82.246054,19.552366,SOI_Districts,2023-12-11,false, +IN-PIN,494450,PostalCode,Bijapur,LGD,636,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.860867,80.800554,inherited:District,80.244428,18.135555,81.502118,19.402483,SOI_Districts,2023-12-11,false, +IN-PIN,494552,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +IN-PIN,494553,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +IN-PIN,494556,PostalCode,Dakshin Bastar Dantewada,LGD,376,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.804749,81.390283,inherited:District,81.105227,18.392630,81.777443,19.217549,SOI_Districts,2023-12-11,false, +IN-PIN,494635,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494661,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494665,PostalCode,Uttar Bastar Kanker,LGD,381,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +IN-PIN,494669,PostalCode,Narayanpur,LGD,637,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.570198,81.085072,inherited:District,80.662617,19.227827,81.516739,19.947328,SOI_Districts,2023-12-11,false, +IN-PIN,494670,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,494771,PostalCode,Uttar Bastar Kanker,LGD,381,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +IN-PIN,494776,PostalCode,Uttar Bastar Kanker,LGD,381,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.137568,81.122709,inherited:District,80.401435,19.702067,81.814231,20.562797,SOI_Districts,2023-12-11,false, +IN-PIN,494777,PostalCode,Kondagaon,LGD,643,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.745701,81.664919,inherited:District,81.291653,19.222656,82.066257,20.195519,SOI_Districts,2023-12-11,false, +IN-PIN,495001,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495003,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495004,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495006,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495009,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495112,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495113,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495115,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495116,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495117,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false, +IN-PIN,495118,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false, +IN-PIN,495119,PostalCode,Gaurela-Pendra-Marwahi,LGD,734,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.804965,81.998854,inherited:District,81.726422,22.544168,82.239883,23.118325,SOI_Districts,2023-12-11,false, +IN-PIN,495220,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495222,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495224,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495330,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495334,PostalCode,Mungeli,LGD,647,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false, +IN-PIN,495335,PostalCode,Mungeli,LGD,647,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.240399,81.730560,inherited:District,81.469941,21.813906,82.037000,22.674078,SOI_Districts,2023-12-11,false, +IN-PIN,495442,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495444,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495445,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495446,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495447,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495448,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495449,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495450,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495452,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495454,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495455,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495550,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495551,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495552,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495553,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495554,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495555,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495556,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495557,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495559,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495660,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495661,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495663,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495668,PostalCode,Bilaspur,LGD,375,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.179960,82.115906,inherited:District,81.730704,21.711458,82.472913,22.615836,SOI_Districts,2023-12-11,false, +IN-PIN,495669,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495671,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495674,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495677,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495682,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495683,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495684,PostalCode,Korba,LGD,383,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.534684,82.608204,inherited:District,82.134253,22.039391,83.123226,23.000417,SOI_Districts,2023-12-11,false, +IN-PIN,495686,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495687,PostalCode,Janjgir-Champa,LGD,379,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.921350,82.592276,inherited:District,81.503853,21.681439,83.317141,22.263440,SOI_Districts,2023-12-11,false, +IN-PIN,495688,PostalCode,Sakti,LGD,762,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,495689,PostalCode,Sakti,LGD,762,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,495690,PostalCode,Sakti,LGD,762,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,495691,PostalCode,Sakti,LGD,762,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,495692,PostalCode,Sakti,LGD,762,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,495695,PostalCode,Sakti,LGD,762,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,496001,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496005,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496100,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496107,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496108,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496109,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496111,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496113,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496115,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496116,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496118,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496220,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496223,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496224,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496225,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496227,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496242,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496245,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496330,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496331,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496334,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496336,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496338,PostalCode,Jashpur,LGD,380,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.801105,83.862511,inherited:District,83.379815,22.288953,84.395550,23.251649,SOI_Districts,2023-12-11,false, +IN-PIN,496440,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496445,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,496450,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,496551,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,496554,PostalCode,Sarangarh-Bilaigarh,LGD,763,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,496661,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,496665,PostalCode,Raigarh,LGD,386,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.085227,83.303068,inherited:District,82.923079,21.342635,83.803634,22.791195,SOI_Districts,2023-12-11,false, +IN-PIN,497001,PostalCode,Surguja,LGD,389,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +IN-PIN,497101,PostalCode,Surguja,LGD,389,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +IN-PIN,497111,PostalCode,Surguja,LGD,389,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +IN-PIN,497116,PostalCode,Surguja,LGD,389,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +IN-PIN,497117,PostalCode,Surguja,LGD,389,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.928368,83.227178,inherited:District,82.755798,22.622869,83.690567,23.270154,SOI_Districts,2023-12-11,false, +IN-PIN,497118,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +IN-PIN,497119,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +IN-PIN,497220,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +IN-PIN,497223,PostalCode,Surajpur,LGD,648,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +IN-PIN,497224,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +IN-PIN,497225,PostalCode,Balrampur-Ramanujganj,LGD,649,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.592678,83.501241,inherited:District,82.692710,23.150617,84.074842,24.106277,SOI_Districts,2023-12-11,false, +IN-PIN,497226,PostalCode,Surajpur,LGD,648,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +IN-PIN,497229,PostalCode,Surajpur,LGD,648,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +IN-PIN,497231,PostalCode,Surajpur,LGD,648,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +IN-PIN,497235,PostalCode,Surajpur,LGD,648,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +IN-PIN,497331,PostalCode,Korea,LGD,384,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +IN-PIN,497333,PostalCode,Surajpur,LGD,648,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.401996,82.883600,inherited:District,82.497404,22.795473,83.367374,23.918940,SOI_Districts,2023-12-11,false, +IN-PIN,497335,PostalCode,Korea,LGD,384,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +IN-PIN,497339,PostalCode,Korea,LGD,384,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +IN-PIN,497442,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,497447,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,497448,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,497449,PostalCode,Korea,LGD,384,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +IN-PIN,497450,PostalCode,Korea,LGD,384,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.469802,82.235279,inherited:District,81.576684,22.937922,82.772152,23.925367,SOI_Districts,2023-12-11,false, +IN-PIN,497557,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,497778,PostalCode,Manendragarh-Chirmiri-Bharatpur(M C B),LGD,760,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.265915,82.041059,inherited:State,80.244428,17.782307,84.395550,24.106277,SOI_States,2023-12-11,false, +IN-PIN,500001,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500002,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500003,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500004,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500005,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500006,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500007,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500008,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500009,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500010,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500011,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500012,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500013,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500014,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500015,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500016,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500017,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500018,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500020,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500026,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500028,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500029,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500030,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500031,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500036,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500037,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500038,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500039,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500043,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500044,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500045,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500047,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500048,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500052,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500053,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500055,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500056,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500058,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500059,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500060,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500061,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500064,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500068,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500070,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500072,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500073,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500075,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500076,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500078,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500080,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500082,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500083,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500085,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500086,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500087,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500088,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500089,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500090,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500091,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500092,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500097,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500098,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500100,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500101,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500102,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,500104,PostalCode,Hyderabad,LGD,507,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.395112,78.470167,inherited:District,78.367530,17.297519,78.548982,17.483022,SOI_Districts,2023-12-11,false, +IN-PIN,500112,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,500113,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501101,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501102,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501106,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501111,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501121,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501141,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501142,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501143,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501144,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501158,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501202,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501203,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501218,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501301,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,501302,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,501359,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501401,PostalCode,Medchal Malkajgiri,LGD,700,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.544214,78.557696,inherited:District,78.347636,17.360575,78.760673,17.707935,SOI_Districts,2023-12-11,false, +IN-PIN,501501,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501502,PostalCode,Vikarabad,LGD,698,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.246310,77.750811,inherited:District,77.362446,16.846824,78.072970,17.638720,SOI_Districts,2023-12-11,false, +IN-PIN,501503,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501504,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501505,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501506,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501508,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501509,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501510,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,501512,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,502001,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502032,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502101,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502102,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502103,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502107,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502108,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502109,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502110,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502113,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502114,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502115,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502117,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502125,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502130,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502210,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502221,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502228,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502246,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502247,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502248,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502249,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502251,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502255,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502256,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502257,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502267,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502269,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502270,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502271,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502273,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502276,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502277,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502278,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502279,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502280,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502281,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502285,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502286,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,502287,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502290,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502291,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502293,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502294,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502295,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502296,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502300,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502301,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502302,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502303,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502305,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502306,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502307,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502310,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502311,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502312,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502313,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502314,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502316,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502318,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502319,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502321,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502325,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502329,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502331,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502334,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502335,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502336,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,502345,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502371,PostalCode,Sangareddy,LGD,691,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.785340,77.874129,inherited:District,77.443100,17.427415,78.450031,18.286074,SOI_Districts,2023-12-11,false, +IN-PIN,502372,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502375,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,502381,PostalCode,Medak,LGD,513,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.953209,78.265038,inherited:District,77.851264,17.663379,78.587884,18.217515,SOI_Districts,2023-12-11,false, +IN-PIN,503001,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503003,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503101,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503102,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503108,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503110,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503111,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503112,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503114,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503120,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503122,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503123,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503124,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503125,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503144,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503145,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503164,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503165,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503175,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503180,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503185,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503186,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503187,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503188,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503201,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503202,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503206,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503207,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503212,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503213,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503217,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503218,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503219,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503223,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503224,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503225,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503230,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503235,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503245,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503246,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503301,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503302,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503305,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503306,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503307,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503308,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503309,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503310,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,503311,PostalCode,Nizamabad,LGD,516,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.701604,78.211364,inherited:District,77.729974,18.436149,78.669888,19.016340,SOI_Districts,2023-12-11,false, +IN-PIN,503321,PostalCode,Kamareddy,LGD,685,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.324814,78.061681,inherited:District,77.520206,18.059867,78.569496,18.556789,SOI_Districts,2023-12-11,false, +IN-PIN,504001,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504002,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504101,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504102,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504103,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504104,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504105,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504106,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504109,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504110,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504201,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504202,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504203,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504204,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504205,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504206,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504207,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504209,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504214,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504215,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504216,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504218,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504219,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504220,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504231,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504251,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504272,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504273,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504292,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504293,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504294,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504295,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504296,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504297,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504299,PostalCode,Kumuram Bheem Asifabad,LGD,699,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.357095,79.419802,inherited:District,78.808985,19.029474,79.979717,19.616689,SOI_Districts,2023-12-11,false, +IN-PIN,504301,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504302,PostalCode,Mancherial,LGD,684,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.991463,79.512315,inherited:District,78.877327,18.670455,79.961672,19.264907,SOI_Districts,2023-12-11,false, +IN-PIN,504304,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504306,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504307,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504308,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504309,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504310,PostalCode,Nirmal,LGD,680,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.113181,78.314942,inherited:District,77.761790,18.843289,78.954361,19.342741,SOI_Districts,2023-12-11,false, +IN-PIN,504311,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504312,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504313,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504323,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,504346,PostalCode,Adilabad,LGD,501,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.519916,78.565982,inherited:District,78.171729,19.172403,78.977565,19.916807,SOI_Districts,2023-12-11,false, +IN-PIN,505001,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505101,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,505102,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,505122,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,505129,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505152,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505153,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505162,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505172,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505174,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505184,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,505185,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505186,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505187,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505188,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505208,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505209,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505212,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505301,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505302,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505303,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505304,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505305,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505306,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505307,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505325,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505326,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505327,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505330,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505331,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505401,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505402,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505403,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505404,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505405,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505415,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505416,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505425,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505445,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505450,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505451,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505452,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505453,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505454,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505455,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505460,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505462,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505466,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,505467,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505468,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505469,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505470,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505471,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,505472,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505473,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,505474,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505475,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505476,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,505480,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,505481,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505490,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505497,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,505498,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,505501,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505502,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505503,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,505504,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,505505,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505514,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505524,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505525,PostalCode,Peddapalli,LGD,682,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.620155,79.453681,inherited:District,79.110542,18.385224,79.832423,18.857061,SOI_Districts,2023-12-11,false, +IN-PIN,505526,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505527,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505528,PostalCode,Rajanna Sircilla,LGD,683,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.414096,78.763447,inherited:District,78.521206,18.206548,79.024738,18.641839,SOI_Districts,2023-12-11,false, +IN-PIN,505529,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505530,PostalCode,Karimnagar,LGD,508,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.380033,79.245348,inherited:District,78.922508,18.129987,79.580480,18.678315,SOI_Districts,2023-12-11,false, +IN-PIN,505531,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,505532,PostalCode,Jagitial,LGD,681,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.832238,78.877896,inherited:District,78.514117,18.549991,79.307443,19.077700,SOI_Districts,2023-12-11,false, +IN-PIN,506001,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506002,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506003,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506005,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506006,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506007,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506008,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506009,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506015,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506101,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506102,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506103,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506104,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506105,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506112,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506122,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506132,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506134,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506135,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506142,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506143,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506144,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506145,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506146,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506151,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506163,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506164,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506165,PostalCode,Mulugu,LGD,720,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +IN-PIN,506166,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506167,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506168,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,506169,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,506170,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,506172,PostalCode,Mulugu,LGD,720,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +IN-PIN,506175,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506201,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506221,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506222,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506223,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506224,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506244,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506252,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506301,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506302,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506303,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506310,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506313,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506314,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506315,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506316,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506317,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506318,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506319,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506324,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506329,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506330,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506331,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506332,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506333,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506342,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506343,PostalCode,Mulugu,LGD,720,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +IN-PIN,506344,PostalCode,Mulugu,LGD,720,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +IN-PIN,506345,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,506347,PostalCode,Mulugu,LGD,720,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +IN-PIN,506348,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,506349,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506350,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506352,PostalCode,Mulugu,LGD,720,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +IN-PIN,506355,PostalCode,Siddipet,LGD,692,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.021641,78.855083,inherited:District,78.499157,17.667849,79.301210,18.424725,SOI_Districts,2023-12-11,false, +IN-PIN,506356,PostalCode,Jayashankar Bhupalapally,LGD,687,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.506030,79.924365,inherited:District,79.559771,18.132453,80.344004,18.871957,SOI_Districts,2023-12-11,false, +IN-PIN,506365,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506366,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506367,PostalCode,Jangoan,LGD,689,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.727859,79.284325,inherited:District,78.865915,17.450812,79.602596,18.001633,SOI_Districts,2023-12-11,false, +IN-PIN,506368,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506369,PostalCode,Warangal,LGD,522,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.919204,79.737482,inherited:District,79.480997,17.617802,79.994444,18.285261,SOI_Districts,2023-12-11,false, +IN-PIN,506370,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506371,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,506381,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,506391,PostalCode,Hanumakonda,LGD,686,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.046534,79.463730,inherited:District,79.221252,17.872851,79.671660,18.267818,SOI_Districts,2023-12-11,false, +IN-PIN,507002,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507003,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507101,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507111,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507112,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507114,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507115,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507116,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507117,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507118,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507120,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507122,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507123,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507124,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507126,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507127,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507128,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507133,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507136,PostalCode,Mulugu,LGD,720,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.291487,80.337459,inherited:District,79.814494,17.995966,80.794284,18.631113,SOI_Districts,2023-12-11,false, +IN-PIN,507137,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507140,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507157,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507158,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507159,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507160,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507161,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507163,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507164,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507165,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507166,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507167,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507168,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507169,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507170,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507171,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507182,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507183,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507201,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507202,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507203,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507204,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507208,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507209,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507210,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507211,PostalCode,Mahabubabad,LGD,688,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.675222,79.996276,inherited:District,79.577281,17.324312,80.316178,18.117027,SOI_Districts,2023-12-11,false, +IN-PIN,507301,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507302,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507303,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507304,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507305,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,507306,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507315,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507316,PostalCode,Bhadradri Kothagudem,LGD,690,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.690454,80.716493,inherited:District,80.201899,17.190330,81.322641,18.238920,SOI_Districts,2023-12-11,false, +IN-PIN,507318,PostalCode,Khammam,LGD,509,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.205947,80.365131,inherited:District,79.801525,16.768009,80.926453,17.573090,SOI_Districts,2023-12-11,false, +IN-PIN,508001,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508002,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508004,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508101,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508105,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508111,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508112,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508113,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508114,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508115,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508116,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508117,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508126,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508201,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508202,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508204,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508205,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508206,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508207,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508208,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508210,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508211,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508212,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508213,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508214,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508217,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508218,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508221,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508223,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508224,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508233,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508234,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508238,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508243,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508244,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508245,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508246,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508247,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508248,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508250,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508252,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508253,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508254,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508255,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508256,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508257,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508258,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508266,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508277,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508278,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508279,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508280,PostalCode,Suryapet,LGD,696,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.080643,79.754395,inherited:District,79.362970,16.631278,80.073254,17.528909,SOI_Districts,2023-12-11,false, +IN-PIN,508284,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508285,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508286,PostalCode,Yadadri Bhuvanagiri,LGD,697,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.451240,78.978697,inherited:District,78.676513,17.043601,79.453700,17.812543,SOI_Districts,2023-12-11,false, +IN-PIN,508355,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508373,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508374,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508376,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,508377,PostalCode,Nalgonda,LGD,514,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.876525,79.193064,inherited:District,78.661884,16.356175,79.699829,17.360161,SOI_Districts,2023-12-11,false, +IN-PIN,509002,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509102,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509104,PostalCode,Wanaparthy,LGD,693,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +IN-PIN,509105,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509106,PostalCode,Wanaparthy,LGD,693,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +IN-PIN,509110,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509120,PostalCode,Wanaparthy,LGD,693,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.287718,78.049507,inherited:District,77.715418,15.943062,78.315042,16.626212,SOI_Districts,2023-12-11,false, +IN-PIN,509125,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509126,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509127,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509128,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509129,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509130,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509131,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509132,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509133,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509135,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509152,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509153,PostalCode,Jogulamba Gadwal,LGD,695,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.071697,77.780993,inherited:District,77.486152,15.836003,78.253624,16.363959,SOI_Districts,2023-12-11,false, +IN-PIN,509201,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509202,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509203,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509204,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509205,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509206,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509207,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509208,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509209,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509210,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509215,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509216,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509217,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509219,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509228,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509235,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509301,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509302,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509311,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509320,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509321,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509324,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509325,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509326,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509327,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509334,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509335,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509336,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509337,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509338,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509339,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509340,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509349,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509350,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509351,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509352,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509353,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509357,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509358,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509360,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509371,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509375,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509376,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509380,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509381,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509382,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509385,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509401,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,509406,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509407,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509408,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509409,PostalCode,Mahabubnagar,LGD,512,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.751490,78.013247,inherited:District,77.674372,16.370889,78.493718,17.013443,SOI_Districts,2023-12-11,false, +IN-PIN,509410,PostalCode,Ranga Reddy,LGD,518,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.130963,78.412504,inherited:District,77.922744,16.746077,78.844207,17.522473,SOI_Districts,2023-12-11,false, +IN-PIN,509411,PostalCode,Narayanpet,LGD,721,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.638254,77.582727,inherited:District,77.235761,16.334316,77.798898,17.040233,SOI_Districts,2023-12-11,false, +IN-PIN,509412,PostalCode,Nagarkurnool,LGD,694,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.382246,78.595988,inherited:District,78.099893,16.008152,79.234296,16.832408,SOI_Districts,2023-12-11,false, +IN-PIN,515001,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515002,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515004,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515101,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515110,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515122,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515123,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515124,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515133,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515134,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515144,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515154,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515159,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515164,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515201,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515202,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515211,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515212,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515231,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515241,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515261,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515271,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515281,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515286,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515291,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515301,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515303,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515305,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515311,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515321,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515331,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515341,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515401,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515402,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515405,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515408,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515411,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515413,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515414,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515415,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515425,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515435,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515445,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515455,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515465,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515501,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515511,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515521,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515531,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515541,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515551,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515556,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515561,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515571,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515581,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515591,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515601,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515611,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515621,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515631,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515641,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515651,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515661,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515672,PostalCode,Sri Sathya Sai,LGD,754,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,515701,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515711,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515721,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515722,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515731,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515741,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515751,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515761,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515763,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515765,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515766,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515767,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515774,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515775,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515787,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515803,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515812,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515822,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515832,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515842,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515863,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515865,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515867,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515870,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515871,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,515872,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,516001,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516003,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516101,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516104,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516107,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516108,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516115,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516127,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516128,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516130,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516150,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516151,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516162,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516172,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516173,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516175,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516193,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516203,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516213,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516215,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516216,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516217,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516218,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516227,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516228,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516233,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516247,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516267,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516268,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516269,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516289,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516293,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516309,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516310,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516312,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516321,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516329,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516330,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516339,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516349,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516350,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516355,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516356,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516359,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516360,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516361,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516362,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516380,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516390,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516391,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516396,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516401,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516411,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516421,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516431,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516432,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516433,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516434,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516439,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516444,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516454,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516464,PostalCode,Ananthapuramu,LGD,502,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.493043,77.566974,inherited:District,76.760569,13.682262,78.469262,15.426435,SOI_Districts,2023-12-11,false, +IN-PIN,516474,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516484,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516501,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516502,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516503,PostalCode,Y.S.R. Kadapa,LGD,504,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.463753,78.780374,inherited:District,77.944039,13.724131,79.468903,15.229246,SOI_Districts,2023-12-11,false, +IN-PIN,516504,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,516505,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517001,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517002,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517101,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517102,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517112,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517113,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517123,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517124,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517125,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517126,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517127,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517128,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517129,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517130,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517131,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517132,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517152,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517167,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517172,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517192,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517193,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517194,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517213,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517214,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517234,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517235,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517236,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517237,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517247,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517257,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517277,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517280,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517291,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517297,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517299,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517305,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517319,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517326,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517350,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517370,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517390,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517391,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517401,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517403,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517408,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517415,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517416,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517417,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517418,PostalCode,Annamayya,LGD,753,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517422,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517423,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517424,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517425,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517426,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517429,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517432,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517502,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517503,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517504,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517505,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517506,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517507,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517520,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517526,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517536,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517541,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517551,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517561,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517569,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517571,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517581,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517582,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517583,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517584,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517586,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517587,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517588,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517589,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517590,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517591,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517592,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517599,PostalCode,Chittoor,LGD,503,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.464938,79.005997,inherited:District,78.065717,12.624011,80.051196,13.994762,SOI_Districts,2023-12-11,false, +IN-PIN,517619,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517620,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517640,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517641,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517642,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517643,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517644,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517645,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,517646,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518001,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518002,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518003,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518004,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518007,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518010,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518101,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518102,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518112,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518122,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518123,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518124,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518134,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518135,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518145,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518155,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518165,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518166,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518176,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518186,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518196,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518206,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518216,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518217,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518218,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518220,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518221,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518222,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518225,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518301,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518302,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518308,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518313,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518323,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518333,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518343,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518344,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518345,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518346,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518347,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518348,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518349,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518350,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518360,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518380,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518385,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518390,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518395,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518396,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518401,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518405,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518411,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518412,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518422,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518432,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518442,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518452,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518462,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518463,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518464,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518465,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518466,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518467,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518468,PostalCode,Kurnool,LGD,511,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.535569,78.012995,inherited:District,76.973826,14.900418,78.931042,16.148860,SOI_Districts,2023-12-11,false, +IN-PIN,518502,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518508,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518510,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518511,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518512,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518513,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518523,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518533,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518543,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518553,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518563,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518573,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518583,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518593,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518594,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518598,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518599,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,518674,PostalCode,Nandyal,LGD,755,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,520001,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,520004,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,520007,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,520008,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,520010,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,520011,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,520012,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,520015,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521002,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521003,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521004,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521101,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521102,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521104,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521105,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521106,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521107,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521108,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521109,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521110,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521111,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521120,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521121,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521122,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521125,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521126,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521130,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521131,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521132,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521133,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521134,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521135,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521136,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521137,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521138,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521139,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521148,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521149,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521150,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521151,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521153,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521156,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521157,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521158,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521162,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521163,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521164,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521165,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521170,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521175,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521178,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521180,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521181,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521182,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521183,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521184,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521185,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521190,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521202,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521207,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521211,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521212,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521213,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521214,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521215,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521225,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521226,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521227,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521228,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521229,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521230,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521231,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521235,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521241,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521245,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521246,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521247,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521250,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521256,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521260,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521261,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521263,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521286,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521301,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521311,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521312,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521321,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521322,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521323,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521324,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521325,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521326,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521327,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521328,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521329,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521330,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521331,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521332,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521333,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521340,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521343,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521344,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521345,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521356,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521366,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521369,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521390,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,521401,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521402,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521403,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521456,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,521457,PostalCode,Ntr,LGD,749,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522001,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522003,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522005,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522007,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522009,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522015,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522016,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522017,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522018,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522019,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522020,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522034,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522101,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522102,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522111,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522112,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522113,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522124,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522201,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522202,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522211,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522212,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522213,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522233,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522234,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522235,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522236,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522237,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522240,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522256,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522257,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522258,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522259,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522261,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522262,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522264,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522265,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522268,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522301,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522302,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522303,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522304,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522305,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522306,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522307,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522308,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522309,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522310,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522311,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522312,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522313,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522314,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522315,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522316,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522317,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522318,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522324,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522325,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522329,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522330,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522341,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522401,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522402,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522403,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522408,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522409,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522410,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522411,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522412,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522413,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522414,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522415,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522421,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522426,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522435,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522436,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522437,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522438,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522501,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522502,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522503,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522508,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522509,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522529,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522549,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522603,PostalCode,Guntur,LGD,506,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.293106,80.078833,inherited:District,79.207723,15.706538,80.903238,16.822312,SOI_Districts,2023-12-11,false, +IN-PIN,522611,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522612,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522613,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522614,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522615,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522616,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522617,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522619,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522626,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522646,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522647,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522649,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522657,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522658,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522659,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522660,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522661,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,522663,PostalCode,Palnadu,LGD,751,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523001,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523101,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523104,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523105,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523108,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523109,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523110,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523111,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523112,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523113,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523114,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523115,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523116,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523117,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523135,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523157,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523165,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523167,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523168,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523169,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523170,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523171,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523180,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523181,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523182,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523183,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523184,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523185,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523186,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523187,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523190,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523201,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523211,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523212,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523213,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523214,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523223,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523224,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523225,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523226,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523227,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523228,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523230,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523240,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523241,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523245,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523246,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523247,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523252,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523253,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523254,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523260,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523261,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523262,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523263,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523264,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523265,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523270,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523271,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523272,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523273,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523274,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523279,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523280,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523281,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523286,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523291,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523292,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523301,PostalCode,Bapatla,LGD,750,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523302,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523303,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523304,PostalCode,Prakasam,LGD,517,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.616202,79.515203,inherited:District,78.736547,14.963721,80.475103,16.305816,SOI_Districts,2023-12-11,false, +IN-PIN,523305,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523315,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523320,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523326,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523327,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523328,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523329,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523330,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523331,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523332,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523333,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523334,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523335,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523336,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523346,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523356,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523357,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523367,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523368,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523369,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523370,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523371,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523372,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,523373,PostalCode,Markapuram,LGD,790,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524001,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524002,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524003,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524004,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524101,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524121,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524123,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524124,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524126,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524127,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524129,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524131,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524132,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524134,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524137,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524142,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524152,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524201,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524203,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524221,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524222,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524223,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524224,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524225,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524226,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524227,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524228,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524230,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524234,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524236,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524239,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524240,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524302,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524303,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524304,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524305,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524306,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524307,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524308,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524309,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524310,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524311,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524312,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524313,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524314,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524315,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524316,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524317,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524318,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524320,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524321,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524322,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524323,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524324,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524341,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524342,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524343,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524344,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524345,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524346,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524366,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524401,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524402,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524403,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524404,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524405,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524406,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524407,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524408,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524409,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524410,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524411,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524412,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524413,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524414,PostalCode,Sri Potti Sriramulu Nellore,LGD,515,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.418363,79.738935,inherited:District,79.081406,13.470647,80.268539,15.116685,SOI_Districts,2023-12-11,false, +IN-PIN,524415,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,524421,PostalCode,Tirupati,LGD,752,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,530003,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530004,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530005,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530008,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530011,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530012,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530013,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530016,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530018,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530022,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530026,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530027,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530028,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530031,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530040,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530041,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530044,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530045,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530046,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,530047,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530048,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530049,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,530051,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530052,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,530053,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531001,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531002,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531011,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531019,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531020,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531021,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531022,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531023,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531024,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531025,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531026,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531027,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531028,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531029,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531030,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531031,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531032,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531033,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531034,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531035,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531036,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531040,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531055,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531060,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531061,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531075,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531077,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531081,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531082,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531083,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531084,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531085,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531087,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531111,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531113,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531114,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531115,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531116,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531117,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531118,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531126,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531127,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531133,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531149,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531151,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531162,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,531163,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,531173,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,531219,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,532001,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532005,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532122,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,532123,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,532127,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532148,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532168,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532185,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532186,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532187,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532190,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532195,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532201,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532203,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532204,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532211,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532212,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532213,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532214,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532215,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532216,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532218,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532219,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532220,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532221,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532222,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532242,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532243,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532263,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532264,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532284,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532290,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532291,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532292,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532312,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532322,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532401,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532402,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532403,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532404,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532405,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532406,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532407,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532408,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532409,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532410,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532421,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532425,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532426,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532427,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532428,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532429,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532430,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532432,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532440,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,532443,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,532445,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532455,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,532456,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,532457,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532458,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,532459,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532460,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,532461,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,532462,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,532474,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,532484,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,533002,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533004,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533005,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533006,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533016,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533101,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533102,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533103,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533105,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533107,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533124,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533125,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533126,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533201,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533210,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533211,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533212,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533213,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533214,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533215,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533216,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533217,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533218,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533220,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533221,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533222,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533223,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533228,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533229,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533232,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533233,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533234,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533235,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533236,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533237,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533238,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533239,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533240,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533241,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533242,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533244,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533247,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533248,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533249,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533250,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533251,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533252,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533253,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533254,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533256,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533260,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533261,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533262,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533263,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533264,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533274,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533284,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533285,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533286,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533287,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533288,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533289,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533290,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533291,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533292,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533293,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533294,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533295,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533296,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533297,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533305,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533306,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533307,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533308,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533309,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533340,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533341,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533342,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533343,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533344,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533345,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533346,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533347,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533348,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533349,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533350,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533351,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533352,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533354,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533355,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533401,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533406,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533407,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533408,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533428,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533429,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533430,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533431,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533432,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533433,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533434,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533435,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533436,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533437,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,533440,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533444,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533445,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533446,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533447,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533448,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533449,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533450,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533451,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533461,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533462,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533463,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533464,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533468,PostalCode,Kakinada,LGD,746,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533483,PostalCode,Polavaram,LGD,791,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,533577,PostalCode,Dr. B.R. Ambedkar Konaseema,LGD,747,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534002,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534003,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534004,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534005,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534007,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534101,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534102,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534111,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534112,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534122,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534123,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534124,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534126,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534134,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534145,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534146,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534156,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534165,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534166,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534176,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534186,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534195,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534196,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534197,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534198,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534199,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534201,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534202,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534204,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534206,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534207,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534208,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534209,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534210,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534211,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534216,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534217,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534218,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534222,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534225,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534227,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534230,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534235,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534236,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534237,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534238,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534239,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534240,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534243,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534244,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534245,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534247,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534250,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534265,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534266,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534267,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534268,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534269,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534275,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534280,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534281,PostalCode,Krishna,LGD,510,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.555707,80.797994,inherited:District,79.998762,15.705221,81.554631,17.153072,SOI_Districts,2023-12-11,false, +IN-PIN,534301,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534302,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534305,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534311,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534312,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534313,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534315,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534316,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534318,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534320,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534324,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534326,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534327,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534328,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534329,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534330,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534331,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534338,PostalCode,West Godavari,LGD,523,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.931401,81.387360,inherited:District,80.867498,16.316485,81.858413,17.629117,SOI_Districts,2023-12-11,false, +IN-PIN,534340,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534341,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534342,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534350,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534401,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534406,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534411,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534416,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534425,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534426,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534427,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534432,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534435,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534437,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534442,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534444,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534447,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534448,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534449,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534450,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534451,PostalCode,East Godavari,LGD,505,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.272008,81.893276,inherited:District,80.876066,16.306551,82.604579,18.014435,SOI_Districts,2023-12-11,false, +IN-PIN,534452,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534455,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534456,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534460,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534461,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534462,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534467,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,534475,PostalCode,Eluru,LGD,748,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535001,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535003,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535004,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535005,PostalCode,Visakhapatnam,LGD,520,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.893416,82.693925,inherited:District,81.859545,17.248562,83.525027,18.549798,SOI_Districts,2023-12-11,false, +IN-PIN,535006,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535101,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535102,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535124,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535125,PostalCode,Srikakulam,LGD,519,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.597701,84.022731,inherited:District,83.526603,18.077831,84.761464,19.166913,SOI_Districts,2023-12-11,false, +IN-PIN,535126,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535128,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535145,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535148,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535160,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535161,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535183,PostalCode,Anakapalli,LGD,744,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535204,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535213,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535214,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535215,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535216,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535217,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535218,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535220,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535221,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535240,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535250,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535260,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535270,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535273,PostalCode,Alluri Sitharama Raju,LGD,745,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535280,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535281,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535463,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535501,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535502,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535521,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535522,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535523,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535524,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535525,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535526,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535527,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535534,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535546,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535547,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535557,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535558,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535559,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535568,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535573,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535578,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535579,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535580,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535581,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535582,PostalCode,Vizianagaram,LGD,521,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.472878,83.385198,inherited:District,82.999323,17.840398,83.813321,19.162666,SOI_Districts,2023-12-11,false, +IN-PIN,535591,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535592,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535593,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,535594,PostalCode,Parvathipuram Manyam,LGD,743,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.753511,79.962484,inherited:State,76.760569,12.624011,84.761464,19.166913,SOI_States,2023-12-11,false, +IN-PIN,560003,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560004,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560008,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,560010,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560012,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560013,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560015,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560022,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560023,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560026,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560027,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560029,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560030,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560032,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560034,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560035,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560040,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560041,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560050,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560054,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560056,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560057,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560058,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560060,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560061,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560062,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560064,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,560068,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560070,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560072,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560073,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560074,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560076,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560078,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560079,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560081,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560082,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560083,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,560085,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560088,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560089,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560090,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560091,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560095,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560098,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560099,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560100,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560102,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560105,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,560107,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,560108,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560109,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560110,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560111,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560112,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560114,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,560116,PostalCode,Bengaluru Urban,LGD,525,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.951773,77.593709,inherited:District,77.325613,12.657440,77.836027,13.233037,SOI_Districts,2023-12-11,false, +IN-PIN,561101,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,561201,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,561202,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,561203,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,561206,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,561207,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,561208,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,561209,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,561210,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,561211,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,561212,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,561213,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,562101,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,562102,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,562103,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,562104,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,562108,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562109,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562112,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562117,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562119,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562120,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,562121,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562126,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562127,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,562128,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562131,PostalCode,Bengaluru Rural,LGD,526,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.227244,77.574079,inherited:District,77.182657,12.866110,77.964987,13.499068,SOI_Districts,2023-12-11,false, +IN-PIN,562138,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562159,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562160,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,562161,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,563101,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563113,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563114,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563116,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563117,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563123,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,563124,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,563125,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,563126,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563127,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563128,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,563129,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563130,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563131,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563132,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563133,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563134,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563135,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563136,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563137,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563138,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563139,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563146,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,563159,PostalCode,Chikkaballapura,LGD,630,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.578012,77.835250,inherited:District,77.359897,13.219501,78.210386,13.960188,SOI_Districts,2023-12-11,false, +IN-PIN,563161,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,563162,PostalCode,Kolar,LGD,542,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.139716,78.217875,inherited:District,77.839543,12.760659,78.587702,13.598598,SOI_Districts,2023-12-11,false, +IN-PIN,570003,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,570008,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,570010,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,570018,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,570019,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,570026,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,570028,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,570030,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,570033,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571101,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571102,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571103,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571104,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571105,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571106,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571107,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571108,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571109,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571110,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571111,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571114,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571115,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571116,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571117,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571118,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571119,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571120,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571121,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571122,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571123,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571124,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571125,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571126,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571127,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571128,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571129,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571130,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571134,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571187,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571189,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571201,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571211,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571212,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571213,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571214,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571215,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571216,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571217,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571218,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571219,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571231,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571232,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571234,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571235,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571236,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571237,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571247,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571248,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571249,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571250,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571251,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571252,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571253,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571254,PostalCode,Kodagu,LGD,541,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.325015,75.801291,inherited:District,75.365630,11.931392,76.189262,12.834237,SOI_Districts,2023-12-11,false, +IN-PIN,571301,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571302,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571311,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571312,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571313,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571314,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571315,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571316,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571320,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571342,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571401,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571402,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571403,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571404,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571405,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571415,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571416,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571417,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571418,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571419,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571421,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571422,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571423,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571424,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571425,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571426,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571427,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571428,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571429,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,571430,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571431,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571432,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571433,PostalCode,Bengaluru South,LGD,631,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.679132,77.335368,inherited:District,77.068064,12.243231,77.634805,13.196972,SOI_Districts,2023-12-11,false, +IN-PIN,571434,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571435,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571436,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571438,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571439,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571440,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571441,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571442,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571443,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571444,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571445,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571446,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571448,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571450,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571455,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571457,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571463,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571475,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571476,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571477,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571478,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571490,PostalCode,Chamarajanagar,LGD,531,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.958215,77.097666,inherited:District,76.403375,11.594471,77.776722,12.314134,SOI_Districts,2023-12-11,false, +IN-PIN,571601,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571602,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571603,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571604,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571605,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571606,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571607,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571610,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571617,PostalCode,Mysuru,LGD,545,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.210442,76.440368,inherited:District,75.908680,11.738188,77.134284,12.655683,SOI_Districts,2023-12-11,false, +IN-PIN,571802,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571807,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571811,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,571812,PostalCode,Mandya,LGD,544,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.611423,76.797236,inherited:District,76.329565,12.217912,77.333804,13.055335,SOI_Districts,2023-12-11,false, +IN-PIN,572101,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572102,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572103,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572104,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572105,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572106,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572107,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572111,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572112,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572113,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572114,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572115,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572116,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572117,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572118,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572119,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572120,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572121,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572122,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572123,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572124,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572125,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572126,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572127,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572128,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572129,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572130,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572132,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572133,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572134,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572135,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572136,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572137,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572138,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572139,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572140,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572141,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572142,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572168,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572175,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572201,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572211,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572212,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572213,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572214,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572215,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572216,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572217,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572218,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572219,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572220,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572221,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572222,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572223,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572224,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572225,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572226,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572227,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,572228,PostalCode,Tumakuru,LGD,548,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.521638,76.946204,inherited:District,76.346228,12.745539,77.517072,14.342165,SOI_Districts,2023-12-11,false, +IN-PIN,573101,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573102,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573103,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573111,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573112,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573113,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573115,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573116,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573117,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573118,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573119,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573120,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573121,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573122,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573123,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573124,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573125,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573126,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573127,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573128,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573129,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573130,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573131,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573133,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573134,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573135,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573136,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573137,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573141,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573142,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573144,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573162,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573164,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573165,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573201,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573202,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573210,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573211,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573212,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573213,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573214,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573215,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573216,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573217,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573218,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573219,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573220,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573225,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,573226,PostalCode,Hassan,LGD,539,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.996418,76.107830,inherited:District,75.554503,12.512437,76.633759,13.547941,SOI_Districts,2023-12-11,false, +IN-PIN,574101,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574102,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574103,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574104,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574105,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574106,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574107,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574108,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574109,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574110,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574111,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574112,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574113,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574114,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574115,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574116,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574117,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574118,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574119,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574122,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574129,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574141,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574142,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574143,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574144,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574145,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574146,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574148,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574150,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574151,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574153,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574154,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574197,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574198,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574199,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574201,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574202,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574203,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574210,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574211,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574212,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574213,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574214,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574216,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574217,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574218,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574219,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574220,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574221,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574222,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574223,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574224,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574225,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574226,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574227,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574228,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574229,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574230,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574231,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574232,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574233,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574234,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574235,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574236,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574237,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574238,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574239,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574240,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574241,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574242,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574243,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574244,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,574248,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574253,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574259,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574260,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574265,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574267,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574274,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574279,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574285,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574313,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574314,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574323,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574324,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574325,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574326,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574327,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574328,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,574509,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575001,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575002,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575003,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575004,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575005,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575006,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575007,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575008,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575009,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575010,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575011,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575013,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575014,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575015,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575017,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575018,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575019,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575020,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575022,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575023,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575028,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575029,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,575030,PostalCode,Dakshina Kannada,LGD,534,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.853124,75.250904,inherited:District,74.776332,12.460086,75.670642,13.185163,SOI_Districts,2023-12-11,false, +IN-PIN,576102,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576103,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576105,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576106,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576107,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576111,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576112,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576113,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576114,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576115,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576117,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576120,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576121,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576122,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576124,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576201,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576210,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576211,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576212,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576213,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576214,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576215,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576216,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576217,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576218,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576219,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576220,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576221,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576222,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576223,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576224,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576225,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576226,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576227,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576228,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576229,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576230,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576231,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576232,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576233,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576234,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576235,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576247,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576257,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576282,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,576283,PostalCode,Udupi,LGD,549,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.498278,74.871960,inherited:District,74.581986,13.071522,75.205799,13.982152,SOI_Districts,2023-12-11,false, +IN-PIN,577001,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577002,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577003,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577004,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577005,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577006,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577007,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577008,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577101,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577102,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577111,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577112,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577113,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577114,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577115,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577116,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577117,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577120,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577121,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577122,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577123,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577124,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577125,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577126,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577127,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577128,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577129,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577130,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577131,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577132,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577133,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577134,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577135,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577136,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577138,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577139,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577140,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577144,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577145,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577146,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577160,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577168,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577175,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577179,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577180,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577181,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577182,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577201,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577202,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577203,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577204,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577205,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577211,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577213,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577214,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577215,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577216,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577217,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577218,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577219,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577220,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577221,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577222,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577223,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577224,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577225,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577226,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577227,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577228,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577229,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577230,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577231,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577232,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577233,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577243,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577245,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577301,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577302,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577401,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577411,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577412,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577413,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577414,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577415,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577416,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577417,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577418,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577419,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577421,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577422,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577423,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577424,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577425,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577426,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577427,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577428,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577429,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577430,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577431,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577432,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577433,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577434,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577435,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577436,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577451,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577452,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577453,PostalCode,Shivamogga,LGD,547,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.043206,75.220165,inherited:District,74.625216,13.456803,75.878756,14.655215,SOI_Districts,2023-12-11,false, +IN-PIN,577501,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577502,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577511,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577512,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577513,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577514,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577515,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577516,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577517,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577518,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577519,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577520,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577521,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577522,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577523,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577524,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577525,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577526,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577527,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577528,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577529,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577530,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577531,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577532,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577533,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577534,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577535,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577536,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577537,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577538,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577539,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577540,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577541,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577542,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577543,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577544,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577545,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577546,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577547,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577548,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577549,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577550,PostalCode,Chikkamagaluru,LGD,532,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.454630,75.690643,inherited:District,75.078525,12.912800,76.363865,13.899396,SOI_Districts,2023-12-11,false, +IN-PIN,577551,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577552,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577553,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577554,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577555,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577556,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577557,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577558,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577566,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577589,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,577596,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577597,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577598,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577599,PostalCode,Chitradurga,LGD,533,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.168582,76.515192,inherited:District,76.024958,13.575971,77.023843,15.035999,SOI_Districts,2023-12-11,false, +IN-PIN,577601,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,580001,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580005,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580006,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580007,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580008,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580009,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580011,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580021,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580023,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580024,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580025,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580026,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580027,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580028,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580030,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580031,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580112,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580114,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,580118,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581101,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581102,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581103,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581104,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581105,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581106,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581107,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581108,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581109,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581110,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581111,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581112,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581113,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581115,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581116,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581117,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581118,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581119,PostalCode,Davanagere,LGD,535,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.408738,75.954074,inherited:District,75.398793,13.806207,76.533633,14.931939,SOI_Districts,2023-12-11,false, +IN-PIN,581120,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581121,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581123,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581126,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581128,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581129,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581145,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581148,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581186,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581187,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581193,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581195,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581196,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581197,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581198,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581199,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581201,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581202,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581203,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581204,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581205,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581206,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581207,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581208,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581209,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,581210,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581211,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581212,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581213,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,581301,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581302,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581303,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581304,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581306,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581307,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581308,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581314,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581315,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581316,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581317,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581318,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581319,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581320,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581321,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581322,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581323,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581324,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581325,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581326,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581327,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581328,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581329,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581330,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581331,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581332,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581333,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581334,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581335,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581336,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581337,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581338,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581339,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581340,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581341,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581342,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581343,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581344,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581345,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581346,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581347,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581348,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581349,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581350,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581351,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581352,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581353,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581354,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581355,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581356,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581357,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581358,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581359,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581360,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581361,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581362,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581363,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581365,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581384,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581396,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581400,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581402,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581403,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581411,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581412,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581421,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581423,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581440,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581450,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,581453,PostalCode,Uttara Kannada,LGD,550,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.791505,74.619576,inherited:District,74.053993,13.925242,75.102921,15.524961,SOI_Districts,2023-12-11,false, +IN-PIN,582102,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582103,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582111,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582112,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582113,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582114,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582115,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582116,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582117,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582118,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582119,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582120,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582201,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,582202,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582203,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582204,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582205,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582206,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582207,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582208,PostalCode,Dharwad,LGD,536,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.390180,75.152300,inherited:District,74.727131,15.038695,75.554366,15.702538,SOI_Districts,2023-12-11,false, +IN-PIN,582209,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582210,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,582211,PostalCode,Gadag,LGD,537,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.431463,75.665251,inherited:District,75.273622,14.944010,76.045059,15.886972,SOI_Districts,2023-12-11,false, +IN-PIN,583101,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583102,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583103,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583104,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583111,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583112,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583113,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583114,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583115,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583116,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583117,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583118,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583119,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583120,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583121,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583122,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583123,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583124,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583125,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583126,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583127,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583128,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583129,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583130,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583131,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583132,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583134,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583135,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583136,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583137,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583152,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583154,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583155,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583201,PostalCode,Ballari,LGD,528,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.110053,76.532663,inherited:District,75.663572,14.560389,77.169134,15.837509,SOI_Districts,2023-12-11,false, +IN-PIN,583211,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583212,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583213,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583214,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583216,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583217,PostalCode,Haveri,LGD,540,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.738833,75.416481,inherited:District,75.015127,14.274241,75.820250,15.161774,SOI_Districts,2023-12-11,false, +IN-PIN,583218,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583219,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583220,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583221,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583222,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583223,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583224,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583226,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583227,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583228,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583229,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583230,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583231,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583232,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583233,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583234,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583235,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583236,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583237,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583238,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583239,PostalCode,Vijayanagara,LGD,738,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,14.710573,76.167282,inherited:State,74.053993,11.594471,78.587702,18.477721,SOI_States,2023-12-11,false, +IN-PIN,583268,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583277,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583278,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583279,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583280,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583281,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583282,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583283,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583284,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583285,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583286,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583287,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,583288,PostalCode,Koppal,LGD,543,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,15.562534,76.221462,inherited:District,75.773526,15.137659,76.812618,16.011814,SOI_Districts,2023-12-11,false, +IN-PIN,584102,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584103,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584104,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584111,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584113,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584115,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584116,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584118,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584120,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584122,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584123,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584124,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584125,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584126,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584127,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584128,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584129,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584132,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584133,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584134,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584135,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584136,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584138,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584139,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584140,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584143,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584167,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584170,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584202,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,584203,PostalCode,Raichur,LGD,546,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.090678,76.891761,inherited:District,76.234162,15.547436,77.597810,16.562045,SOI_Districts,2023-12-11,false, +IN-PIN,585102,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585103,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585104,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585105,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585106,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585107,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585202,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585210,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585211,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585212,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585213,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585214,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585215,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585216,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585217,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585218,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585219,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585220,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585221,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585222,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585223,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585224,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585225,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585226,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585227,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585228,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585236,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585237,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585265,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585287,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585290,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585291,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585292,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585301,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585302,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585303,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585304,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585305,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585306,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585307,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585308,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585309,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585310,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585311,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585312,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585313,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585314,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585315,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585316,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585317,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585318,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585319,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585320,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585321,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585322,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585323,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585324,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585325,PostalCode,Kalaburagi,LGD,538,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.260450,76.868950,inherited:District,76.064986,16.710524,77.692519,17.770854,SOI_Districts,2023-12-11,false, +IN-PIN,585326,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585327,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585328,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585329,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585330,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585331,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585353,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585355,PostalCode,Yadgir,LGD,635,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.626858,76.912489,inherited:District,76.291349,16.193760,77.476501,16.953989,SOI_Districts,2023-12-11,false, +IN-PIN,585401,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585402,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585403,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585404,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585411,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585412,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585413,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585414,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585416,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585417,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585418,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585419,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585421,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585436,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585437,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585443,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585444,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585445,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585446,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585447,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,585448,PostalCode,Bidar,LGD,529,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,17.952944,77.225064,inherited:District,76.690669,17.583080,77.655855,18.477721,SOI_Districts,2023-12-11,false, +IN-PIN,586103,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586104,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586108,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586109,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586111,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586112,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586113,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586114,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586115,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586116,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586117,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586118,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586119,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586120,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586121,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586122,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586123,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586124,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586125,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586127,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586128,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586129,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586130,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586170,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586201,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586202,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586203,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586204,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586205,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586206,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586207,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586208,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586209,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586210,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586211,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586212,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586213,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586214,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586215,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586216,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,586217,PostalCode,Vijayapura,LGD,530,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.794485,75.952820,inherited:District,75.333753,16.151403,76.470977,17.477214,SOI_Districts,2023-12-11,false, +IN-PIN,587102,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587103,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587104,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587111,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587112,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587113,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587114,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587115,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587116,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587117,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587118,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587119,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587120,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587121,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587122,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587124,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587125,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587154,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587155,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587156,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587157,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587201,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587202,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587203,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587204,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587205,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587206,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587207,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587301,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587311,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587312,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587313,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587314,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587315,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587316,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587330,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,587331,PostalCode,Bagalkote,LGD,524,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.221360,75.625545,inherited:District,74.986270,15.812732,76.332276,16.768133,SOI_Districts,2023-12-11,false, +IN-PIN,590001,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590003,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590005,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590008,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590010,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590014,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590015,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590016,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590018,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,590020,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591101,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591102,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591103,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591104,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591106,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591107,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591108,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591109,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591110,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591111,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591112,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591113,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591114,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591115,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591117,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591118,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591119,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591120,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591121,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591122,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591123,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591124,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591125,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591126,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591127,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591128,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591129,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591130,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591131,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591136,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591143,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591147,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591156,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591173,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591201,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591211,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591212,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591213,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591214,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591215,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591216,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591217,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591218,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591219,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591220,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591221,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591222,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591223,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591224,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591225,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591226,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591227,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591228,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591229,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591230,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591231,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591232,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591233,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591234,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591235,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591236,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591237,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591238,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591239,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591240,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591241,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591242,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591243,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591244,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591246,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591247,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591248,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591254,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591263,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591265,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591287,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591301,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591302,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591303,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591304,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591305,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591306,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591309,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591310,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591311,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591312,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591313,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591315,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591316,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591317,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591340,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591344,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591345,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,591346,PostalCode,Belagavi,LGD,527,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,16.120633,74.823078,inherited:District,74.088063,15.358459,75.457833,16.956955,SOI_Districts,2023-12-11,false, +IN-PIN,600001,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600003,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600004,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600005,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600006,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600007,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600008,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600011,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600014,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600015,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600016,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600017,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600019,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600020,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600021,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600023,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600024,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600030,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600032,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600033,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600037,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600040,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600041,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600042,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600043,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600044,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600045,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600047,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600048,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600049,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600050,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600051,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600052,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600053,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600054,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600055,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600056,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,600057,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600058,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600060,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600061,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600062,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600063,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600064,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600066,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600067,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600068,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600069,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,600070,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600071,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600072,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600073,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600074,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600075,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600076,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600077,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600078,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600081,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600084,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600085,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600086,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600087,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600088,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600089,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600090,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600091,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600092,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600093,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600094,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600095,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600096,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600097,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600099,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600100,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600103,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600106,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600107,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600113,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600115,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600116,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600118,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600119,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600120,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600122,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,600123,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600124,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,600125,PostalCode,Chennai,LGD,568,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.100428,80.234893,inherited:District,80.134389,12.965084,80.333425,13.235440,SOI_Districts,2023-12-11,false, +IN-PIN,600126,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600127,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600128,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,600129,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600130,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600131,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,600132,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,601101,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601102,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601103,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601201,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601202,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601203,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601204,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601205,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601206,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,601301,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,602001,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,602002,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,602003,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,602021,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,602023,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,602024,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,602025,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,602026,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,602105,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,602106,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,602108,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,602117,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,603001,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603002,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603003,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603101,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603102,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603103,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603104,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603105,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603106,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603107,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603108,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603109,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603110,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603111,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603112,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603201,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603202,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603203,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603204,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603209,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603210,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603301,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603302,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603303,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603304,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603305,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603306,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603307,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603308,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603309,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603310,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603311,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603312,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603313,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603314,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603319,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603401,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603402,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,603403,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,603405,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,603406,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,604001,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604101,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604102,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604151,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604152,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604153,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604154,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604201,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604202,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604203,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604204,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604205,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604206,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604207,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604208,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604210,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604301,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604302,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604303,PostalCode,Chengalpattu,LGD,730,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.582979,79.999171,inherited:District,79.640391,12.228832,80.255275,13.045694,SOI_Districts,2023-12-11,false, +IN-PIN,604304,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604305,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604306,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604307,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,604401,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604402,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604403,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604404,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604405,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604406,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604407,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,604408,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604409,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604410,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604501,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604502,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604503,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604504,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604505,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,604601,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,605001,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605004,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605006,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605007,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605008,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605009,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605010,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605013,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605014,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605102,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605103,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605104,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605105,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605106,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605107,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605108,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605109,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605110,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605111,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605201,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605202,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605203,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605301,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605302,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605401,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605402,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605403,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605501,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605502,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,605601,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605602,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605651,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605652,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605701,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605702,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605751,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605752,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605754,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605755,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605756,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605757,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605758,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,605759,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605766,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605801,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605802,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,605803,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606001,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606003,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606102,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606103,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606104,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606105,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606106,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606107,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606108,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606109,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606110,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606111,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606115,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606201,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606202,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606203,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606204,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606205,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606206,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606207,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606208,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606209,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606213,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606301,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606302,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606303,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606304,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606305,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,606401,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606402,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,606601,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606603,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606604,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606611,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606701,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606702,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606703,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606704,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606705,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606706,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606707,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606708,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606709,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606710,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606751,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606752,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606753,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606754,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606755,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606801,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606802,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606803,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606804,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606805,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606806,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606807,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606808,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606811,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606901,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606902,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606903,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606904,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606905,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606906,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606907,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,606908,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,607001,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607002,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607003,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607004,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607005,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607006,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607101,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607102,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607103,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607104,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607105,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607106,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607107,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,607108,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607109,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607112,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607201,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,607202,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,607203,PostalCode,Viluppuram,LGD,596,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.139718,79.540604,inherited:District,79.167353,11.798471,80.008639,12.450776,SOI_Districts,2023-12-11,false, +IN-PIN,607204,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,607205,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607209,PostalCode,Kallakurichi,LGD,729,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.803600,79.034514,inherited:District,78.626822,11.504575,79.482691,12.081078,SOI_Districts,2023-12-11,false, +IN-PIN,607301,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607302,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607303,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607308,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607401,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607402,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,607403,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,607801,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607802,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607803,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607804,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607805,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,607807,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608001,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608002,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608102,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608201,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608301,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608302,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608303,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608304,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608305,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608306,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608401,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608501,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608502,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608601,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608602,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608701,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608702,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608703,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,608704,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608801,PostalCode,Cuddalore,LGD,570,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.535937,79.450508,inherited:District,78.877634,11.150555,79.812879,11.904987,SOI_Districts,2023-12-11,false, +IN-PIN,608901,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,609001,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609003,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609101,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609102,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609103,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609104,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609105,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609106,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609107,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609108,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609109,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609110,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609111,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609112,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609113,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609114,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609115,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609116,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609117,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609118,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609201,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609202,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609203,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609204,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609205,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609301,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609302,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609303,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609304,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609305,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609306,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609307,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609308,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609309,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609310,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609311,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609312,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609313,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609314,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609401,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609402,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609403,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609404,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609405,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,609501,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609502,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,609503,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,609504,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,609601,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,609602,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,609603,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,609604,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,609605,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,609606,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,609607,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,609608,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,609609,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,609701,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,609702,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,609703,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,609704,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,609801,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609802,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,609803,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609804,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,609805,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609806,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609807,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,609808,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609810,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,609811,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,610001,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610003,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610004,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610005,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,610101,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,610102,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610103,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610104,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610105,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610106,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,610107,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,610109,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610201,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,610202,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610203,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,610204,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,610205,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610206,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,610207,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611001,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611002,PostalCode,Karaikal,LGD,598,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.933424,79.802948,inherited:District,79.718342,10.827383,79.853816,11.003868,SOI_Districts,2023-12-11,false, +IN-PIN,611003,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611101,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611102,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611103,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611104,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611105,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611106,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611108,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611109,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611110,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611111,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,611112,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,612001,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612002,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612101,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612102,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612103,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612104,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612105,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612106,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612201,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,612202,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612203,PostalCode,Mayiladuthurai,LGD,735,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.015873,78.407996,inherited:State,76.232983,8.077704,80.346547,13.564628,SOI_States,2023-12-11,false, +IN-PIN,612204,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612301,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612302,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612303,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612401,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612402,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612501,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612502,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612503,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612504,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612601,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,612602,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612603,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,612604,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612605,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612610,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612701,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612702,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612703,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612801,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612802,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,612803,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,612804,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,612901,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,612902,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,612903,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,612904,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,612905,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,612906,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,613001,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613002,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613003,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613004,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613005,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613006,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613010,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613101,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613102,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613103,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613104,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613105,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613201,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613202,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613203,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613204,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613205,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613301,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,613303,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613401,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613402,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613403,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613501,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613502,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613503,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613504,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613601,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613602,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,613701,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,613702,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,613703,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,613704,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,613705,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614001,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614013,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614014,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614015,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614016,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614017,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614018,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614019,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614020,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614101,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614102,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614103,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614201,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614202,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614203,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614204,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614205,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614206,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614207,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614208,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614210,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614211,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614301,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614302,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614303,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614401,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614402,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614403,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614404,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614601,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614602,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614612,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614613,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614614,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614615,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614616,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614617,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614618,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614619,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614620,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614621,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614622,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614623,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614624,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614625,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614626,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614628,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614629,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614630,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614701,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614702,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614703,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614704,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614705,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614706,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614707,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614708,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614710,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614711,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614712,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614713,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614714,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614715,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614716,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614717,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614723,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614738,PostalCode,Thiruvarur,LGD,590,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.679399,79.533581,inherited:District,79.267898,10.280775,79.770434,11.017258,SOI_Districts,2023-12-11,false, +IN-PIN,614801,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614802,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614803,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614804,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614805,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,614806,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614807,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614808,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614809,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614810,PostalCode,Nagapattinam,LGD,579,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.841301,79.737891,inherited:District,79.508560,10.271784,79.881603,11.422688,SOI_Districts,2023-12-11,false, +IN-PIN,614901,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614902,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614903,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614904,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614905,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,614906,PostalCode,Thanjavur,LGD,586,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.670696,79.241463,inherited:District,78.775769,10.135791,79.572782,11.183727,SOI_Districts,2023-12-11,false, +IN-PIN,620002,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620003,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620004,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620005,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620006,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620007,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620008,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620009,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620010,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620011,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620012,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620013,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620015,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620016,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620017,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620019,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620020,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620021,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620025,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620027,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620101,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,620102,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621001,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621002,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621003,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621004,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621005,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621006,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621007,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621008,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621009,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621010,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621011,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621012,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621014,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621101,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621102,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621103,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621104,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621105,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621106,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621107,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621108,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621109,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621110,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621111,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621112,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621113,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621114,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621115,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621116,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621117,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621118,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621119,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621133,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621202,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621203,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621204,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621205,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621206,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621207,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621208,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621209,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621210,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621211,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621212,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621213,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621214,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621215,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621216,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621217,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621218,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621219,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621220,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621301,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,621302,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621305,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,621306,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621307,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621308,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,621310,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621311,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,621312,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,621313,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,621314,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621315,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621316,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,621601,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621651,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621652,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621653,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621701,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621702,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621703,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621704,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621705,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621706,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621707,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621708,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621709,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621710,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621711,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621712,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,621713,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621714,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621715,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621716,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621717,PostalCode,Perambalur,LGD,581,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.275076,78.891647,inherited:District,78.634247,11.055597,79.168148,11.523478,SOI_Districts,2023-12-11,false, +IN-PIN,621718,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621719,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621722,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621729,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621730,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621731,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621801,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621802,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621803,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621804,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621805,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621806,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,621851,PostalCode,Ariyalur,LGD,610,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.162551,79.242972,inherited:District,78.946212,10.886482,79.510211,11.419696,SOI_Districts,2023-12-11,false, +IN-PIN,622001,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622002,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622003,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622004,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622101,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622102,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622103,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622104,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622201,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622202,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622203,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622204,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622209,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622301,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622302,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622303,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622304,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622401,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622402,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622403,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622404,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622407,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622409,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622411,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622412,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622422,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622501,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622502,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622503,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622504,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622505,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622506,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622507,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,622515,PostalCode,Pudukkottai,LGD,582,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.360782,78.879400,inherited:District,78.445626,9.849074,79.266112,10.734638,SOI_Districts,2023-12-11,false, +IN-PIN,623115,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623120,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623135,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623308,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623315,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623401,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623402,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623403,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623404,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623406,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623407,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623409,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623502,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623503,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623504,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623512,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623513,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623514,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623515,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623516,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623517,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623518,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623521,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623522,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623523,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623524,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623525,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623526,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623527,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623528,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623530,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623531,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623532,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623533,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623534,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623536,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623537,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623538,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623601,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623603,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623604,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623605,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623608,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623701,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623703,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623704,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623705,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623706,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623708,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623711,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,623712,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,624002,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624003,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624004,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624005,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624101,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624103,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624201,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624202,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624204,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624206,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624208,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624210,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624211,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624212,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624215,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624216,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624219,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624220,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624301,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624302,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624303,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624304,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624306,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624307,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624308,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624401,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624402,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624403,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624601,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624610,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624612,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624613,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624614,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624615,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624616,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624617,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624618,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624619,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624620,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624621,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624622,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624701,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624702,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624703,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624704,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624705,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624706,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624707,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624708,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624709,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624710,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624711,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624712,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624801,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,624802,PostalCode,Dindigul,LGD,572,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.391669,77.819666,inherited:District,77.266583,10.018052,78.339893,10.835151,SOI_Districts,2023-12-11,false, +IN-PIN,625001,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625002,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625003,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625005,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625006,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625007,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625008,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625009,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625012,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625014,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625016,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625017,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625018,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625019,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625020,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625021,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625022,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625023,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625101,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625102,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625103,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625104,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625105,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625106,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625107,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625108,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625109,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625110,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625122,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625201,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625203,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625205,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625207,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625214,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625218,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625221,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625234,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625301,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625402,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625501,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625503,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625512,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625513,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625514,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625515,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625516,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625517,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625518,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625520,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625521,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625522,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625523,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625524,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625525,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625526,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625527,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625528,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625529,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625530,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625531,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625532,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625533,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625534,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625535,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625536,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625537,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625540,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625552,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625556,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625562,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625579,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625582,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625601,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625602,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625604,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625605,PostalCode,Theni,LGD,588,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.891794,77.438407,inherited:District,77.165730,9.519123,77.729716,10.218746,SOI_Districts,2023-12-11,false, +IN-PIN,625701,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625702,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625703,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625704,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625705,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625706,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625707,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,625708,PostalCode,Madurai,LGD,578,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.922720,78.005214,inherited:District,77.464148,9.563081,78.473697,10.310319,SOI_Districts,2023-12-11,false, +IN-PIN,626001,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626002,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626003,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626004,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626005,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626101,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626102,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626103,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626104,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626105,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626106,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626107,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626109,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626110,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626111,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626112,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626113,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626114,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626115,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626116,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626117,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626118,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626119,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626121,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626122,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,626123,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626124,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626125,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626126,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626127,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626128,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626129,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626130,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626131,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626132,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626133,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626134,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626136,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626137,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626138,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626139,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626140,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626141,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626142,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626149,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626161,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626188,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626189,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626201,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626202,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,626203,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626204,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626205,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626607,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,626612,PostalCode,Virudhunagar,LGD,597,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.492324,77.905719,inherited:District,77.339375,9.200055,78.429461,9.786432,SOI_Districts,2023-12-11,false, +IN-PIN,627001,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627002,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627005,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627007,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627011,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627012,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627101,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627102,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627103,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627104,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627106,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627108,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627109,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627110,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627111,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627112,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627113,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627114,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627115,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627116,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627117,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627118,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627119,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627120,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627127,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627151,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627152,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627201,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627202,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627351,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627352,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,627353,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627354,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627355,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627356,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627357,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627358,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627359,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627401,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627412,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627413,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627414,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627415,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627416,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627417,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627418,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627421,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627423,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627424,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627425,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627426,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627451,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627452,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627501,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627502,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627601,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627602,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627651,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627652,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627654,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627657,PostalCode,Tirunelveli,LGD,592,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.575007,77.590408,inherited:District,77.169767,8.142107,77.973612,8.957008,SOI_Districts,2023-12-11,false, +IN-PIN,627713,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627719,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627751,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627753,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627754,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627755,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627756,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627757,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627758,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627759,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627760,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627761,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627764,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627802,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627803,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627804,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627805,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627806,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627807,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627808,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627809,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627811,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627812,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627813,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627814,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627818,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627851,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627852,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627853,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627854,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627855,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627856,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627857,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627858,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627859,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627860,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627861,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627862,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,627951,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,627953,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,628001,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628002,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628005,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628101,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628102,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628103,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628104,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628105,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628151,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628152,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628201,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628202,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628203,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628204,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628205,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628206,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628207,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628208,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628209,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628210,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628211,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628212,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628213,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628215,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628216,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628218,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628229,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628251,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628252,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628301,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628302,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628303,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628304,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628401,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628402,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628502,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,628503,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628552,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,628601,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628612,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628613,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628614,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628615,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628616,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628617,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628618,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628619,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628620,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628621,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628622,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628623,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628653,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628656,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628701,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628702,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628703,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628704,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628712,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628714,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628716,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628718,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628720,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628721,PostalCode,Tenkasi,LGD,733,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.092518,77.459924,inherited:District,77.146555,8.763870,77.744861,9.420137,SOI_Districts,2023-12-11,false, +IN-PIN,628722,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628752,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628753,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628801,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628802,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628809,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628851,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628901,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628902,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628903,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628904,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628905,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628906,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628907,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628908,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,628952,PostalCode,Thoothukkudi,LGD,594,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.901449,77.997628,inherited:District,77.673158,8.321146,78.384887,9.371974,SOI_Districts,2023-12-11,false, +IN-PIN,629001,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629002,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629003,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629004,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629101,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629102,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629151,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629152,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629153,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629154,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629156,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629157,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629158,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629159,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629160,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629161,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629162,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629163,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629164,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629165,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629167,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629168,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629170,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629171,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629172,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629173,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629174,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629175,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629176,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629177,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629178,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629179,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629180,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629193,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629201,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629202,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629203,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629204,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629251,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629252,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629301,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629302,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629401,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629402,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629403,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629501,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629502,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629601,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629602,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629701,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629702,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629703,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629704,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629801,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629802,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629803,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629804,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629810,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629851,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629852,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,629901,PostalCode,Kanniyakumari,LGD,575,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.308118,77.359590,inherited:District,77.096071,8.077704,77.588620,8.579382,SOI_Districts,2023-12-11,false, +IN-PIN,630002,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630003,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630101,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630103,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630104,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630105,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630106,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630107,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630108,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630201,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630202,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630203,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630204,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630205,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630206,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630207,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630208,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630210,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630211,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630212,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630301,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630302,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630303,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630305,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630306,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630307,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630309,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630311,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630312,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,630313,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630314,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630321,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630405,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630408,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630410,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630411,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630501,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630502,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630551,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630552,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630553,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630554,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630555,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630556,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630557,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630558,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630559,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630561,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630562,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630602,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630606,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630609,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630610,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630611,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630612,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630702,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630709,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,630710,PostalCode,Ramanathapuram,LGD,583,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.437609,78.685761,inherited:District,78.215044,9.086366,79.496981,9.944010,SOI_Districts,2023-12-11,false, +IN-PIN,630713,PostalCode,Sivaganga,LGD,585,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.916501,78.596076,inherited:District,78.123231,9.520053,79.013922,10.409884,SOI_Districts,2023-12-11,false, +IN-PIN,631001,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631002,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631003,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631004,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631051,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631052,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631101,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631102,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631151,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,631201,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631202,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631203,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631204,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631205,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631206,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631207,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631208,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631209,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631210,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631211,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631212,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631213,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631301,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631302,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631303,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631304,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631402,PostalCode,Thiruvallur,LGD,589,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,13.244045,79.932765,inherited:District,79.284018,12.945052,80.346547,13.564628,SOI_Districts,2023-12-11,false, +IN-PIN,631501,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631502,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631551,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631552,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631553,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631561,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631601,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631603,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631604,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631605,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631606,PostalCode,Kancheepuram,LGD,574,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.832664,79.849732,inherited:District,79.556264,12.428405,80.267827,13.056176,SOI_Districts,2023-12-11,false, +IN-PIN,631701,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,631702,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632001,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632002,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632004,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632006,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632007,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632008,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632009,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632010,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632011,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632012,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632013,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632014,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632055,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632057,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632058,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632059,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632101,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632102,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632103,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632104,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632105,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632106,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632107,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632113,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632114,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632201,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632202,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632203,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632204,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632209,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632301,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632311,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632312,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632313,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632314,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632315,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632316,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632317,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632318,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632319,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632326,PostalCode,Tiruvannamalai,LGD,593,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.432635,79.166497,inherited:District,78.630299,11.984127,79.756151,12.874319,SOI_Districts,2023-12-11,false, +IN-PIN,632401,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632404,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632405,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632501,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632502,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632503,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632504,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632505,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632506,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632507,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632508,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632509,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632510,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632511,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632512,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632513,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632514,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632515,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632516,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632517,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632518,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632519,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632520,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632521,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632531,PostalCode,Ranipet,LGD,731,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.949902,79.461686,inherited:District,79.177890,12.628267,79.792021,13.210546,SOI_Districts,2023-12-11,false, +IN-PIN,632601,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632602,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,632603,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,632604,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,635001,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635002,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635101,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635102,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635103,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635104,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635105,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635106,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635107,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635108,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635109,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635110,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635111,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635112,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635113,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635114,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635115,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635116,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635117,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635118,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635119,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635120,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635121,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635122,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635123,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635124,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635126,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635130,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635201,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635202,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635203,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635204,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635205,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635206,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635207,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635301,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635302,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635303,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635304,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635305,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,635306,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635307,PostalCode,Krishnagiri,LGD,577,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.490160,78.032355,inherited:District,77.471118,12.139231,78.688647,12.890916,SOI_Districts,2023-12-11,false, +IN-PIN,635601,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635602,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635651,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635652,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635653,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635654,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635655,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635701,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635702,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635703,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635710,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635751,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635752,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635754,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635801,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635802,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635803,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,635804,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635805,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635806,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,635807,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635808,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635809,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,635810,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,635811,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635812,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635813,PostalCode,Vellore,LGD,595,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.914206,78.965876,inherited:District,78.509272,12.631656,79.294544,13.171967,SOI_Districts,2023-12-11,false, +IN-PIN,635814,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635815,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635851,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635852,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635853,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635854,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,635901,PostalCode,Tirupathur,LGD,732,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.593927,78.655115,inherited:District,78.406733,12.258377,78.917978,12.910674,SOI_Districts,2023-12-11,false, +IN-PIN,636005,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636008,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636010,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636011,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636012,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636013,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636015,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636030,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636101,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636102,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636103,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636104,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636105,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636106,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636107,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636108,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636109,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636110,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636111,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636112,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,636113,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,636114,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636115,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636116,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636117,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636118,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,636119,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636121,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636122,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636138,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636139,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636140,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636141,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636142,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,636201,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636202,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,636203,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,636204,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636301,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,636302,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636303,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636304,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636305,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636306,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636307,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636308,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636309,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636351,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636352,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636354,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636403,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636404,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636451,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636452,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636453,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636454,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636455,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636457,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636458,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636501,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636502,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636503,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636601,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636602,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,636701,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636704,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636705,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636803,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636804,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636805,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636806,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636807,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636808,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636809,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636810,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636811,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636813,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636902,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636903,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636904,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636905,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636906,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,636907,PostalCode,Dharmapuri,LGD,571,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.100517,78.193248,inherited:District,77.674021,11.775981,78.745217,12.513678,SOI_Districts,2023-12-11,false, +IN-PIN,637001,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637002,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637003,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637013,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637014,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637015,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637017,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637018,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637019,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637020,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637021,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637101,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,637102,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,637105,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,637107,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,637201,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637202,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637203,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637204,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637205,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637206,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637207,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637208,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637209,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637210,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637211,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637212,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637213,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637214,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637215,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637216,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637301,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,637302,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637303,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637304,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637401,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637402,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637403,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637404,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637405,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637406,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637407,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637408,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637409,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637410,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637411,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637412,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637415,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637501,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,637502,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,637503,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,637504,PostalCode,Salem,LGD,584,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.690215,78.137146,inherited:District,77.415394,11.315246,78.843047,11.979278,SOI_Districts,2023-12-11,false, +IN-PIN,637505,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,638001,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638002,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638003,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638004,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638005,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638007,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,638008,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638009,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638012,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638051,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638052,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638053,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638054,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638055,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638056,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638057,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638101,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638102,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638103,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638104,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638105,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638106,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638107,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638108,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638109,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638110,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638111,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638112,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638115,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638116,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638151,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638152,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638153,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638154,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638181,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,638182,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,638183,PostalCode,Namakkal,LGD,580,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.318778,78.135667,inherited:District,77.683055,11.012726,78.489911,11.598113,SOI_Districts,2023-12-11,false, +IN-PIN,638301,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638311,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638312,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638313,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638314,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638315,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638316,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638401,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,638402,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638451,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638452,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638453,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638454,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638455,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638456,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638457,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638458,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638459,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,638460,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,638461,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638462,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638476,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638501,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638502,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638503,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638504,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638505,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638506,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638656,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638657,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638660,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638661,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638672,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638673,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638701,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638702,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638703,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638706,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,638751,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638752,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,638812,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,639001,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639002,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639003,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639004,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639005,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639006,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639007,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639008,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639101,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,639102,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639103,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639104,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639105,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639107,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639108,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639109,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639110,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639111,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639112,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,639113,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639114,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639115,PostalCode,Tiruchirappalli,LGD,591,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.891184,78.570397,inherited:District,78.162494,10.293706,79.012320,11.408908,SOI_Districts,2023-12-11,false, +IN-PIN,639116,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639117,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639118,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639119,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639120,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639136,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639201,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639202,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639203,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639205,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639206,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,639207,PostalCode,Karur,LGD,576,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.844322,78.134624,inherited:District,77.750175,10.546689,78.587814,11.096876,SOI_Districts,2023-12-11,false, +IN-PIN,641001,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641005,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641006,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641007,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641008,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641009,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641010,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641015,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641016,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641017,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641019,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641020,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641022,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641024,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641026,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641027,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641028,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641029,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641030,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641031,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641032,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641034,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641035,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641039,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641041,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641045,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641047,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641048,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641049,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641050,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641062,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641101,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641103,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641104,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641105,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641107,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641108,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641109,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641110,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641111,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641112,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641113,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641114,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641201,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641202,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641302,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641305,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641401,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641402,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641407,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641602,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641603,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641604,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641605,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641606,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641607,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641652,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641653,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641654,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641655,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641658,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641659,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641662,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641663,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641664,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641665,PostalCode,Erode,LGD,573,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.479549,77.380254,inherited:District,76.830314,11.023253,77.933127,11.848476,SOI_Districts,2023-12-11,false, +IN-PIN,641666,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641667,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641668,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641669,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641670,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641671,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,641687,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,641697,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642001,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642002,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642003,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642004,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642005,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642006,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642007,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642101,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642102,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642103,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642104,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642105,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642107,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642109,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642110,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642111,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642112,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642113,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642114,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642120,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642122,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642123,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642126,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642128,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642129,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642132,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642134,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642154,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642201,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642202,PostalCode,Coimbatore,LGD,569,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.878062,76.975747,inherited:District,76.655797,10.220120,77.299030,11.406423,SOI_Districts,2023-12-11,false, +IN-PIN,642203,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642204,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642205,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642206,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,642207,PostalCode,Tiruppur,LGD,634,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.838977,77.407267,inherited:District,77.041798,10.230274,77.892993,11.352613,SOI_Districts,2023-12-11,false, +IN-PIN,643003,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,643202,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,643204,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,643205,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,643218,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,643231,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,643238,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,643239,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,643242,PostalCode,The Nilgiris,LGD,587,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.453320,76.626115,inherited:District,76.232983,11.187682,77.012316,11.704979,SOI_Districts,2023-12-11,false, +IN-PIN,670001,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670002,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670003,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670004,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670005,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670006,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670008,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670009,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670010,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670104,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670105,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670106,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670107,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670141,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670142,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670143,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670301,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670303,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670304,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670305,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670306,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670307,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670309,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670331,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670353,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670502,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670511,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670521,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670561,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670563,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670571,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670581,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670582,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670591,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670592,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670593,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670594,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670595,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670601,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670602,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670604,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670611,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670612,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670613,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670621,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670622,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670631,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670633,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670642,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670643,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670644,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,670645,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,670646,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,670650,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670651,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670662,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670671,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670672,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670673,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670674,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670676,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670692,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670693,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670694,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670701,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670702,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670703,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670705,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670706,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,670721,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,670731,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,670741,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,671121,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671122,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671123,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671124,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671310,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671312,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671313,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671314,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671315,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671316,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671317,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671318,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671319,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671320,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671321,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671322,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671323,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671324,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671326,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671348,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671351,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671531,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671532,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671533,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671534,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671541,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671542,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671543,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671551,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,671552,PostalCode,Kasaragod,LGD,558,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.462369,75.151022,inherited:District,74.864337,12.044206,75.432195,12.795535,SOI_Districts,2023-12-11,false, +IN-PIN,673001,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673003,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673004,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673005,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673007,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673008,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673010,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673015,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673016,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673017,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673019,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673021,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673101,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673102,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673104,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673121,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673122,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673123,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673301,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673303,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673304,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673305,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673306,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673307,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673309,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673310,PostalCode,Puducherry,LGD,600,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.916989,79.766405,inherited:District,79.599409,11.775232,79.873649,12.051312,SOI_Districts,2023-12-11,false, +IN-PIN,673311,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,673313,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,673314,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673315,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673316,PostalCode,Kannur,LGD,557,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.001100,75.523524,inherited:District,75.167799,11.675081,75.939602,12.300711,SOI_Districts,2023-12-11,false, +IN-PIN,673317,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673323,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673328,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673501,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673502,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673503,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673504,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673505,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673506,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673507,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673508,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673509,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673513,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673517,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673521,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673522,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673523,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673524,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673525,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673526,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673527,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673528,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673529,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673541,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673542,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673571,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673572,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673573,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673574,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673575,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673576,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673577,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673579,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673580,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673581,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673582,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673585,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673586,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673591,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673592,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673593,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673595,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673596,PostalCode,Wayanad,LGD,567,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.712508,76.097753,inherited:District,75.772048,11.451633,76.444057,11.978655,SOI_Districts,2023-12-11,false, +IN-PIN,673601,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673602,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673603,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673604,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673611,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673612,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673613,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673614,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673616,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673620,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673631,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673633,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673634,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673635,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673637,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673638,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673639,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673640,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673641,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673642,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,673655,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,673661,PostalCode,Kozhikode,LGD,561,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.485645,75.833309,inherited:District,75.536226,11.123834,76.146005,11.805871,SOI_Districts,2023-12-11,false, +IN-PIN,676101,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676102,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676104,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676106,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676108,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676109,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676121,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676122,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676123,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676301,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676302,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676303,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676304,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676305,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676306,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676307,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676312,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676317,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676320,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676501,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676503,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676504,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676505,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676506,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676507,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676508,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676509,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676517,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676519,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676521,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676523,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676525,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676528,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676541,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676542,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676551,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676552,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676553,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,676561,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,678001,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678004,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678006,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678007,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678008,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678101,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678102,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678103,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678501,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678502,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678503,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678504,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678505,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678506,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678507,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678508,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678510,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678532,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678533,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678534,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678541,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678542,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678543,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678544,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678545,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678546,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678551,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678552,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678553,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678555,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678556,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678557,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678571,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678572,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678573,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678574,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678581,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678582,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678583,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678592,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678593,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678594,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678595,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678597,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678598,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678601,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678611,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678612,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678613,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678621,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678622,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678623,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678624,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678631,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678633,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678641,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678642,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678651,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678671,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678682,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678683,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678684,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678686,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678687,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678701,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678702,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678703,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678705,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678706,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678721,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678722,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,678731,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679101,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679104,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679105,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,679106,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,679121,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679301,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679303,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679304,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679307,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679309,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679313,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679321,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679322,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679323,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679324,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679325,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679326,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679327,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679328,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679329,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679330,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679331,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679332,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679333,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679334,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679335,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679336,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679337,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679338,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679339,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679340,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679341,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679357,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679501,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679502,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679503,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679504,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679505,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679512,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679513,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679515,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679522,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679523,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679531,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,679532,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,679533,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679534,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679536,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679551,PostalCode,Palakkad,LGD,563,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.795647,76.556398,inherited:District,76.027219,10.334159,76.907534,11.239602,SOI_Districts,2023-12-11,false, +IN-PIN,679562,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,679563,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,679564,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,679571,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679572,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679573,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679575,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679576,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679578,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679579,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679580,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679581,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679582,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679583,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,679585,PostalCode,Malappuram,LGD,562,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.133326,76.154377,inherited:District,75.825051,10.685360,76.549967,11.528755,SOI_Districts,2023-12-11,false, +IN-PIN,680001,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680002,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680003,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680005,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680007,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680008,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680010,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680012,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680013,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680014,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680026,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680027,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680028,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680101,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680102,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680104,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680121,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680122,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680123,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680125,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680301,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680302,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680304,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680305,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680306,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680308,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680309,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680310,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680311,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680312,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680317,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680501,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680502,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680503,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680505,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680506,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680507,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680508,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680509,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680510,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680511,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680512,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680514,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680515,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680517,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680518,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680519,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680521,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680523,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680541,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680542,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680543,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680544,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680545,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680546,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680551,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680552,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680553,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680555,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680561,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680562,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680563,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680564,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680565,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680567,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680569,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680570,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680571,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680581,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680582,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680583,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680584,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680585,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680586,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680587,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680588,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680589,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680590,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680591,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680594,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680596,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680601,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680602,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680604,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680613,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680614,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680615,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680616,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680617,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680618,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680620,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680623,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680631,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680641,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680651,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680652,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680653,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680654,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680655,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680661,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680662,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680663,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680664,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680665,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680666,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680667,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,680668,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680669,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680671,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680681,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680682,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680683,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680684,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680686,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680687,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680689,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680691,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680697,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680699,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680701,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680702,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680703,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680712,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680721,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680722,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680724,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680731,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680732,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680733,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680734,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680741,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,680751,PostalCode,Thrissur,LGD,566,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.471945,76.314555,inherited:District,75.956158,10.174688,76.901207,10.782927,SOI_Districts,2023-12-11,false, +IN-PIN,682001,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682002,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682004,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682005,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682008,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682010,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682011,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682017,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682021,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682024,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682027,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682030,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682034,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682038,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682301,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682303,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682304,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682305,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682307,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682308,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682309,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682310,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682312,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682313,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682314,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682315,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682316,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682317,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682501,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682502,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682504,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682505,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682506,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682507,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682508,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682509,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,682551,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,682552,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,682553,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,682554,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,682555,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,682556,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,682557,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,682558,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,682559,PostalCode,Lakshadweep District,LGD,553,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.812627,73.677058,inherited:District,72.164028,8.265203,73.700919,11.704976,SOI_Districts,2023-12-11,false, +IN-PIN,683101,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683105,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683106,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683110,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683112,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683502,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683511,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683512,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683513,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683514,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683516,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683517,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683519,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683522,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683541,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683542,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683544,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683545,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683546,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683549,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683550,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683556,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683562,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683565,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683571,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683572,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683574,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683575,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683576,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683577,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683578,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683579,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683580,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683581,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683585,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,683587,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,685501,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685503,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685505,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685507,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685509,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685511,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685512,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685514,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685515,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685531,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685532,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685533,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685535,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685551,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685552,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685553,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685554,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685561,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685562,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685563,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685565,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685566,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685571,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685581,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685582,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685583,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685585,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685586,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685587,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685588,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685589,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685590,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685591,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685595,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685601,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685602,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685603,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685604,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685605,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685606,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685607,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685608,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685609,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685612,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685613,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685614,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685615,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685616,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685618,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685619,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,685620,PostalCode,Idukki,LGD,556,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.839668,77.056847,inherited:District,76.627096,9.272807,77.412396,10.358441,SOI_Districts,2023-12-11,false, +IN-PIN,686002,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686003,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686005,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686008,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686010,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686011,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686012,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686015,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686016,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686019,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686020,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686022,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686102,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,686103,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686104,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686105,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686122,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686123,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686143,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686144,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686146,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686502,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686503,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686504,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686506,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686507,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686509,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686510,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,686511,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,686512,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686513,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686514,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686516,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686518,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686519,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686522,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686532,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686534,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,686536,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686537,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686538,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686539,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686540,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686541,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686542,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686543,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686544,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686547,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,686561,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686563,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686564,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686571,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686573,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686574,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686576,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686577,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686579,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686580,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686582,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686584,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686586,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686602,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686603,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686605,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686606,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686607,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686610,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686611,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686612,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686613,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686631,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686632,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686633,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686634,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686636,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686637,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686651,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686652,PostalCode,Kottayam,LGD,560,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.637751,76.650700,inherited:District,76.364972,9.400568,76.984795,9.857172,SOI_Districts,2023-12-11,false, +IN-PIN,686661,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686662,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686663,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686664,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686665,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686667,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686668,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686669,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686670,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686671,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686672,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686673,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686681,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686691,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686692,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,686693,PostalCode,Ernakulam,LGD,555,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,10.084494,76.546013,inherited:District,76.164837,9.789044,77.089132,10.302538,SOI_Districts,2023-12-11,false, +IN-PIN,688001,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688003,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688004,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688005,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688006,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688011,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688014,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688501,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688502,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688503,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688504,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688505,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688506,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688521,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688522,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688523,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688524,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688525,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688526,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688527,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688528,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688529,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688530,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688531,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688532,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688533,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688534,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688535,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688536,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688537,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688539,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688540,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688541,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688561,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688562,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,688570,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689102,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689103,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689106,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689108,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689109,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689110,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689115,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689121,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689501,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689502,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689503,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689505,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689506,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689508,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689509,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689512,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689514,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689515,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689531,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689533,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689542,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689543,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689544,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689549,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689572,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689573,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689574,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689581,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689582,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689583,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689584,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689585,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689586,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689592,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689595,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689611,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689621,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689622,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689623,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689624,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,689625,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689641,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689642,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689643,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689646,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689647,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689648,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689650,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689652,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689656,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689662,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689663,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689666,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689667,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689668,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689672,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689673,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689674,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689678,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689691,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689693,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689694,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689695,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,689696,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,689699,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,689711,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,690101,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690103,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690104,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690105,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690107,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690110,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690501,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690502,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690503,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690504,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690505,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690506,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690507,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690508,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690509,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690513,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690514,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690515,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690516,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690517,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690518,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690519,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690520,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690521,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690522,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690523,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690524,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690525,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690526,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690527,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690532,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690533,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690534,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690535,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690536,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690540,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690542,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690548,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690558,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690559,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690561,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690572,PostalCode,Alappuzha,LGD,554,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.428387,76.447041,inherited:District,76.277193,9.109795,76.690688,9.891382,SOI_Districts,2023-12-11,false, +IN-PIN,690573,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,690574,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691001,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691004,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691005,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691010,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691011,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691015,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691301,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691302,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691303,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691306,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691307,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691308,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691309,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691310,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691311,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691312,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691322,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691331,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691332,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691333,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691500,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691501,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691502,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691503,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691505,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691506,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691507,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691508,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691509,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691516,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691520,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691521,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691522,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691524,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,691525,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,691526,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,691532,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691533,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691534,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691535,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691536,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691537,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691538,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691540,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691551,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,691553,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,691554,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,691555,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,691556,PostalCode,Pathanamthitta,LGD,564,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,9.284934,76.926426,inherited:District,76.473355,9.071601,77.283520,9.482987,SOI_Districts,2023-12-11,false, +IN-PIN,691559,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691560,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691571,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691572,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691573,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691574,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691576,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691577,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691578,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691581,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691582,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691583,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691584,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691601,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,691602,PostalCode,Kollam,LGD,559,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.962527,76.871728,inherited:District,76.462907,8.761368,77.262816,9.173794,SOI_Districts,2023-12-11,false, +IN-PIN,695002,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695003,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695004,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695005,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695012,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695013,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695014,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695019,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695024,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695026,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695027,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695032,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695042,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695043,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695101,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695102,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695103,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695121,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695122,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695123,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695124,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695125,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695126,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695132,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695133,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695141,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695142,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695143,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695144,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695145,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695146,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695301,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695302,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695303,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695304,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695305,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695306,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695308,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695309,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695310,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695311,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695313,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695316,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695317,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695318,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695501,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695502,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695504,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695505,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695506,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695507,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695521,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695525,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695526,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695527,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695528,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695541,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695542,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695543,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695551,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695562,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695563,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695564,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695568,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695571,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695572,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695573,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695574,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695575,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695582,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695584,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695586,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695587,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695588,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695589,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695601,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695602,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695603,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695604,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695605,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695606,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695607,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695608,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695609,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695610,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695611,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695612,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695614,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,695615,PostalCode,Thiruvananthapuram,LGD,565,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,8.609470,77.012216,inherited:District,76.672927,8.293018,77.283847,8.862591,SOI_Districts,2023-12-11,false, +IN-PIN,700102,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700110,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700113,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700119,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700121,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700122,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700124,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700125,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700126,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700128,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700130,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700132,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700135,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700136,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700137,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,700144,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,700150,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,700155,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700156,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700160,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,700162,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,711104,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711109,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711114,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711115,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711201,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711204,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711205,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711225,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711226,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711301,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711302,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711303,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711304,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711305,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711306,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711307,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711309,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711310,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711312,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711313,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711314,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711315,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711316,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711317,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711322,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711331,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711401,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711403,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711404,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711405,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711408,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,711409,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711410,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,711411,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711412,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711413,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,711414,PostalCode,Howrah,LGD,313,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.521490,88.063397,inherited:District,87.843349,22.205770,88.366110,22.782245,SOI_Districts,2023-12-11,false, +IN-PIN,712101,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712102,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712103,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712104,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712105,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712121,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712122,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712123,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712124,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712134,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712135,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712138,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712146,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712147,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712148,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712149,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712152,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712203,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712204,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712222,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712223,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712234,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712245,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712246,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712248,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712250,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712301,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712302,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712303,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712304,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712305,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712306,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712308,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712311,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712401,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712402,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712403,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712404,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712405,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712406,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712407,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712408,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712409,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712410,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712412,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712413,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712414,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712415,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712416,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712417,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712501,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712502,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712503,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712504,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712512,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712513,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712514,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712515,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712601,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712602,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712611,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712612,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712613,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712614,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712615,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712616,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712617,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712701,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712702,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,712706,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,713101,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713102,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713103,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713104,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713121,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713122,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713123,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,713124,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713125,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713126,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713127,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713128,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713129,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713130,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713131,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713132,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713140,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713141,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713142,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,713143,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713144,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713145,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713146,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713147,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713148,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713149,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713150,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713151,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713152,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713153,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713154,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713166,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713204,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713205,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713206,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713211,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713212,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713315,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713321,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713322,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713323,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713330,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713334,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713335,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713336,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713337,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713338,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713339,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713341,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713342,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713346,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713347,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713357,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713358,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713359,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713362,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713363,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713369,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713376,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713378,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713381,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713384,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713385,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713386,PostalCode,Paschim Bardhaman,LGD,704,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.636453,87.199152,inherited:District,86.799128,23.318129,87.578245,23.882432,SOI_Districts,2023-12-11,false, +IN-PIN,713401,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713403,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713404,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713405,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713406,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713407,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713408,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713409,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713420,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713421,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713422,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713423,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713424,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713426,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713427,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713428,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713502,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,713512,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713513,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713514,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713515,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713519,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,713520,PostalCode,Purba Bardhaman,LGD,306,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.356167,87.963711,inherited:District,87.475167,22.932172,88.415023,23.844665,SOI_Districts,2023-12-11,false, +IN-PIN,721101,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721102,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721121,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721122,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721124,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721125,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721126,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721127,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721128,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721129,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721130,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721131,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721133,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721134,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721135,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721136,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721137,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721139,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721140,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721144,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721145,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721146,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721147,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721148,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721149,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721150,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721151,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721152,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721153,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721154,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721155,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721156,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721157,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721158,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721160,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721161,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721166,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721172,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721201,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721211,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721212,PostalCode,Hooghly,LGD,312,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.884920,88.076193,inherited:District,87.504217,22.595160,88.507664,23.224747,SOI_Districts,2023-12-11,false, +IN-PIN,721222,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721232,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721242,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721253,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721260,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721301,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721303,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721304,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721305,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721306,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721401,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721402,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721403,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721404,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721405,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721406,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721420,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721422,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721423,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721424,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721425,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721426,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721427,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721428,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721429,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721430,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721431,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721432,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721433,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721434,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721435,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721436,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721437,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721438,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721439,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721440,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721441,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721442,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721443,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721444,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721445,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721446,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721447,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721448,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721449,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721450,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721451,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721452,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721453,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721454,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721455,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721456,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721457,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721458,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721463,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721467,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721501,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721503,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721504,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721505,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721506,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721507,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721513,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721514,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721515,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721516,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721517,PostalCode,Jhargram,LGD,703,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.363242,86.955347,inherited:District,86.558006,21.865873,87.258336,22.798772,SOI_Districts,2023-12-11,false, +IN-PIN,721601,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721602,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721603,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721624,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721625,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721626,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721627,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721628,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721629,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721631,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721632,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721633,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721634,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721635,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721637,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721641,PostalCode,Paschim Medinipur,LGD,318,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.439193,87.417304,inherited:District,87.053510,21.764990,87.890637,22.955195,SOI_Districts,2023-12-11,false, +IN-PIN,721642,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721644,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721645,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721646,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721647,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721648,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721649,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721650,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721651,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721652,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721653,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721654,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721655,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721656,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721658,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,721659,PostalCode,Purba Medinipur,LGD,317,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.031560,87.772887,inherited:District,87.425989,21.611261,88.190539,22.519393,SOI_Districts,2023-12-11,false, +IN-PIN,722102,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722121,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722122,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722132,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722133,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722134,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722135,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722136,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722137,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722138,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722139,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722140,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722141,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722142,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722143,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722144,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722146,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722147,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722148,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722149,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722150,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722151,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722152,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722153,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722154,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722155,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722156,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722157,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722158,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722160,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722161,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722162,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722164,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722173,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722201,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722202,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722203,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722204,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722205,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722206,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722207,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,722208,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,723101,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723102,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723103,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723104,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723121,PostalCode,Bankura,LGD,305,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.139199,87.136273,inherited:District,86.608948,22.626421,87.764282,23.638139,SOI_Districts,2023-12-11,false, +IN-PIN,723126,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723127,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723128,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723129,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723130,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723131,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723132,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723133,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723142,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723143,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723145,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723146,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723147,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723148,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723149,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723151,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723152,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723153,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723154,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723155,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723156,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723201,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723202,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723212,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723213,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,723215,PostalCode,Purulia,LGD,321,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.276707,86.421546,inherited:District,85.819673,22.704996,86.906333,23.699203,SOI_Districts,2023-12-11,false, +IN-PIN,731101,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731102,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731103,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731104,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731121,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731123,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731124,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731125,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731126,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731127,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731129,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731130,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731132,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731201,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731202,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731204,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731213,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731214,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731215,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731216,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731219,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731220,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731221,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731222,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731223,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731233,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731234,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731235,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731236,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731237,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731238,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731240,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731241,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731242,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731243,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731244,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731245,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731301,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731302,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731303,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,731304,PostalCode,Birbhum,LGD,307,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.954375,87.663303,inherited:District,87.086707,23.540302,88.025071,24.583254,SOI_Districts,2023-12-11,false, +IN-PIN,732101,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732102,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732103,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732121,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732122,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732123,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732124,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732125,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732126,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732127,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732128,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732138,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732139,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732140,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732141,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732142,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732144,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732201,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732202,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732203,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732204,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732205,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732206,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732207,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732208,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732209,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732210,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732215,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,732216,PostalCode,Malda,LGD,316,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.136916,88.090580,inherited:District,87.763883,24.655245,88.463966,25.539771,SOI_Districts,2023-12-11,false, +IN-PIN,733101,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733102,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733103,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733121,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733123,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733124,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733125,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733126,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733127,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733128,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733129,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733130,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733132,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733133,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733134,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733140,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733141,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733142,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733143,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733145,PostalCode,Dakshin Dinajpur,LGD,310,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.367223,88.575495,inherited:District,88.165264,25.164909,89.009442,25.607021,SOI_Districts,2023-12-11,false, +IN-PIN,733156,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733201,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733202,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733207,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733208,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733209,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733210,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,733215,PostalCode,Uttar Dinajpur,LGD,311,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.845938,88.106307,inherited:District,87.807355,25.244701,88.524840,26.499456,SOI_Districts,2023-12-11,false, +IN-PIN,734002,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734003,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734008,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734009,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734010,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734011,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734012,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734013,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734014,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734101,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734102,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734104,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734105,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734201,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734203,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734213,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734214,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734215,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734216,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734217,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734218,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734219,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734220,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734221,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734222,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734223,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734224,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734226,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734301,PostalCode,Kalimpong,LGD,702,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +IN-PIN,734311,PostalCode,Kalimpong,LGD,702,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +IN-PIN,734312,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734313,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734314,PostalCode,Kalimpong,LGD,702,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +IN-PIN,734315,PostalCode,Kalimpong,LGD,702,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +IN-PIN,734316,PostalCode,Kalimpong,LGD,702,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +IN-PIN,734423,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734424,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734425,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734426,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734427,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734429,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734434,PostalCode,Darjeeling,LGD,309,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.850567,88.262039,inherited:District,87.986830,26.451510,88.512470,27.221067,SOI_Districts,2023-12-11,false, +IN-PIN,734501,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,734503,PostalCode,Kalimpong,LGD,702,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +IN-PIN,735102,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735121,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735122,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,735132,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735133,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735134,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735135,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735202,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735203,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735204,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735205,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735206,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735207,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735208,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735209,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735210,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735211,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735212,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735213,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735214,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735215,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735216,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735217,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735218,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735219,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735220,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735221,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735222,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735223,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735224,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735225,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735227,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735228,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,735229,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735230,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735231,PostalCode,Kalimpong,LGD,702,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.034545,88.630890,inherited:District,88.391481,26.865499,88.881172,27.191264,SOI_Districts,2023-12-11,false, +IN-PIN,735233,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735301,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,735302,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,735303,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,735304,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,735305,PostalCode,Jalpaiguri,LGD,314,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.682626,88.763845,inherited:District,88.389832,26.258905,89.126283,26.993927,SOI_Districts,2023-12-11,false, +IN-PIN,736121,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736122,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736123,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736131,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736133,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736134,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736135,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736145,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736146,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736156,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736157,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736158,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736159,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736160,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736165,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736167,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736168,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736169,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736170,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736171,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736172,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736176,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736179,PostalCode,Cooch Behar,LGD,308,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.292614,89.347816,inherited:District,88.748003,25.965217,89.864308,26.546495,SOI_Districts,2023-12-11,false, +IN-PIN,736182,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736201,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736202,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736203,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736204,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736205,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736206,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736207,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,736208,PostalCode,Alipurduar,LGD,664,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.632685,89.463034,inherited:District,89.044922,26.395334,89.882602,26.862178,SOI_Districts,2023-12-11,false, +IN-PIN,737101,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737102,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737103,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737106,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737107,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737111,PostalCode,Gyalshing,LGD,228,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false, +IN-PIN,737113,PostalCode,Gyalshing,LGD,228,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.348415,88.175462,inherited:District,88.012332,27.109576,88.358316,27.617913,SOI_Districts,2023-12-11,false, +IN-PIN,737116,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737120,PostalCode,Mangan,LGD,226,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.743446,88.528275,inherited:District,88.114990,27.378350,88.887674,28.128691,SOI_Districts,2023-12-11,false, +IN-PIN,737121,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737126,PostalCode,Namchi,LGD,227,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false, +IN-PIN,737128,PostalCode,Namchi,LGD,227,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false, +IN-PIN,737131,PostalCode,Pakyong,LGD,741,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +IN-PIN,737132,PostalCode,Pakyong,LGD,741,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +IN-PIN,737133,PostalCode,Pakyong,LGD,741,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.570188,88.473019,inherited:State,88.012332,27.079260,88.919260,28.128691,SOI_States,2023-12-11,false, +IN-PIN,737134,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737135,PostalCode,Gangtok,LGD,225,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.292057,88.673069,inherited:District,88.441516,27.135361,88.919260,27.422898,SOI_Districts,2023-12-11,false, +IN-PIN,737139,PostalCode,Namchi,LGD,227,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.286440,88.384824,inherited:District,88.266082,27.079260,88.533520,27.528044,SOI_Districts,2023-12-11,false, +IN-PIN,741101,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741102,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741103,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741121,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741122,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741123,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741124,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741125,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741126,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741127,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741137,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741138,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741139,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741140,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741150,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741151,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741152,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741153,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741154,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741155,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741156,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,741157,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741158,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741160,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741161,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741162,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741163,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741164,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741165,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741166,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741167,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741181,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741201,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741202,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741221,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741222,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741223,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741238,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741245,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741246,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741247,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741248,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741249,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741250,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741251,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741253,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741254,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741255,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741256,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741257,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741301,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741302,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741313,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741315,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741316,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741317,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741401,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741402,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741404,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741501,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741502,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741503,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741504,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741505,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741506,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741507,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741508,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,741509,PostalCode,Nadia,LGD,320,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.479814,88.516695,inherited:District,88.134336,22.875251,88.801439,24.094709,SOI_Districts,2023-12-11,false, +IN-PIN,742101,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742102,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742104,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742113,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742121,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742122,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742123,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742132,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742133,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742134,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742135,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742136,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742137,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742138,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742140,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742147,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742148,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742149,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742151,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742159,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742161,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742163,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742164,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742165,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742166,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742168,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742174,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742175,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742184,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742187,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742189,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742201,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742202,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742212,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742213,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742223,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742224,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742225,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742226,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742227,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742235,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742236,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742237,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742302,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742303,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742304,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742305,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742306,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742308,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742401,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742402,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742404,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742405,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742406,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742407,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742408,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742409,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,742410,PostalCode,Murshidabad,LGD,319,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.162777,88.230649,inherited:District,87.816365,23.722321,88.746491,24.857768,SOI_Districts,2023-12-11,false, +IN-PIN,743122,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743126,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743127,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743130,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743135,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743144,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743145,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743166,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743193,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743221,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743222,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743232,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743233,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743234,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743235,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743245,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743247,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743248,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743249,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743251,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743252,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743262,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743263,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743270,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743271,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743272,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743273,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743286,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743287,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743289,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743290,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743291,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743292,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743293,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743294,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743297,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743312,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743318,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743329,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743330,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743331,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743332,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743336,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743337,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743338,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743345,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743347,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743348,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743349,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743351,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743354,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743355,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743356,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743357,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743363,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743368,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743370,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743371,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743372,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743373,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743374,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743375,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743376,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743377,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743378,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743383,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743387,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743395,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743399,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743401,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743405,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743411,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743412,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743422,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743423,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743424,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743425,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743426,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743427,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743428,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743429,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743435,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743437,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743438,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743439,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743442,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743445,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743446,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743456,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743502,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743503,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743504,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743513,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743609,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743610,PostalCode,South 24 Parganas,LGD,304,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.057938,88.552900,inherited:District,88.009553,21.527082,89.151231,22.625066,SOI_Districts,2023-12-11,false, +IN-PIN,743611,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743701,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743702,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743704,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743710,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,743711,PostalCode,North 24 Parganas,LGD,303,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.727142,88.730133,inherited:District,88.331799,22.120155,89.098708,23.256088,SOI_Districts,2023-12-11,false, +IN-PIN,744101,PostalCode,South Andamans,LGD,602,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +IN-PIN,744103,PostalCode,South Andamans,LGD,602,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +IN-PIN,744104,PostalCode,South Andamans,LGD,602,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +IN-PIN,744105,PostalCode,South Andamans,LGD,602,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +IN-PIN,744201,PostalCode,North And Middle Andaman,LGD,632,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +IN-PIN,744202,PostalCode,North And Middle Andaman,LGD,632,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +IN-PIN,744203,PostalCode,North And Middle Andaman,LGD,632,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +IN-PIN,744204,PostalCode,North And Middle Andaman,LGD,632,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +IN-PIN,744205,PostalCode,North And Middle Andaman,LGD,632,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +IN-PIN,744206,PostalCode,South Andamans,LGD,602,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +IN-PIN,744207,PostalCode,South Andamans,LGD,602,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,11.523693,92.648491,inherited:District,92.195893,10.510807,93.124953,12.319652,SOI_Districts,2023-12-11,false, +IN-PIN,744209,PostalCode,North And Middle Andaman,LGD,632,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +IN-PIN,744210,PostalCode,North And Middle Andaman,LGD,632,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +IN-PIN,744211,PostalCode,North And Middle Andaman,LGD,632,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,12.842528,92.870475,inherited:District,92.646854,12.063223,94.267398,13.677059,SOI_Districts,2023-12-11,false, +IN-PIN,744301,PostalCode,Nicobars,LGD,603,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false, +IN-PIN,744302,PostalCode,Nicobars,LGD,603,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false, +IN-PIN,744303,PostalCode,Nicobars,LGD,603,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false, +IN-PIN,744304,PostalCode,Nicobars,LGD,603,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,7.024826,93.799023,inherited:District,92.714313,6.752783,93.950692,9.258922,SOI_Districts,2023-12-11,false, +IN-PIN,751002,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,751017,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,751019,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,751021,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,751024,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,751028,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,751029,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,751030,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,751031,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752002,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752004,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752010,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752011,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752012,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752013,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752014,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752015,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752016,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752017,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752018,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752019,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752020,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752021,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752022,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752023,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752024,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752025,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752026,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752027,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752030,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752031,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752032,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752034,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752035,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752038,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752045,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752046,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752050,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752054,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752055,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752056,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752057,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752060,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752061,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752062,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752063,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752064,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752065,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752066,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752068,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752069,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752070,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752077,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752078,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752079,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752080,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752081,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752082,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752083,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752084,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752085,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752089,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752090,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752091,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752092,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752093,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752094,PostalCode,Nayagada,LGD,367,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.213177,84.997802,inherited:District,84.483218,19.897409,85.455036,20.581270,SOI_Districts,2023-12-11,false, +IN-PIN,752100,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752101,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752102,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752103,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,752104,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752105,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752106,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752107,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,752108,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752109,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752110,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752111,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752113,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752114,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752116,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752118,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752119,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,752120,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,752121,PostalCode,Puri,LGD,369,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.879081,85.725732,inherited:District,85.135438,19.466829,86.411701,20.203591,SOI_Districts,2023-12-11,false, +IN-PIN,753006,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,753011,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754001,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754002,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754003,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754004,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754005,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754006,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754007,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754008,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754009,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754010,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754011,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754012,PostalCode,Khordha,LGD,362,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.091062,85.514274,inherited:District,84.935734,19.672234,86.079171,20.435671,SOI_Districts,2023-12-11,false, +IN-PIN,754018,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754022,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754023,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,754024,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,754025,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754027,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754028,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754029,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754030,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754031,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754032,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754034,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754035,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754037,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754071,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754082,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,754100,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754102,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754103,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754104,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754105,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754106,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754107,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754108,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754109,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754110,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754111,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754112,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754113,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754114,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754119,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754130,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754131,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754132,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754133,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754134,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754135,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754136,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754137,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754138,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754139,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754140,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754141,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754142,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754153,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754160,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754162,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754200,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754201,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754202,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754203,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754204,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754205,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,754206,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754207,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754208,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754209,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754210,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754211,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754212,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754213,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754214,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,754215,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754216,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754217,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754218,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754219,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754220,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754221,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754222,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754223,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754224,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754225,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754227,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754228,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754231,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754239,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754240,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754244,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754245,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754246,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754248,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754250,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754253,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754289,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,754290,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754292,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,754293,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754294,PostalCode,Jagatsinghapur,LGD,355,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.218649,86.335211,inherited:District,86.010884,19.966833,86.779717,20.402439,SOI_Districts,2023-12-11,false, +IN-PIN,754295,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754296,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,754297,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754298,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,754299,PostalCode,Kataka,LGD,350,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.453340,85.696462,inherited:District,84.848517,20.039085,86.280028,20.702806,SOI_Districts,2023-12-11,false, +IN-PIN,755001,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755003,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755004,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755006,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755008,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755009,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755010,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755011,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755012,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755013,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755014,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755015,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755016,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755017,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755018,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755019,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755020,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755022,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755023,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755025,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755026,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755027,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755036,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755043,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755044,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755050,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,755061,PostalCode,Kendrapada,LGD,360,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.552578,86.609881,inherited:District,86.245667,20.296844,87.058248,20.798758,SOI_Districts,2023-12-11,false, +IN-PIN,755062,PostalCode,Jajpur,LGD,356,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.856145,86.149442,inherited:District,85.681235,20.579183,86.624636,21.170350,SOI_Districts,2023-12-11,false, +IN-PIN,756002,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756003,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756019,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756020,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756021,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756023,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756024,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756025,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756026,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756027,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756028,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756029,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756033,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756034,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756035,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756036,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756037,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756038,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756039,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756040,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756041,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756042,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756043,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756044,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756045,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756046,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756047,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756048,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756049,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756051,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756056,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756058,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756059,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756060,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756079,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756080,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756081,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756083,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756084,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756085,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756086,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756087,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756088,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756089,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756100,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756101,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756111,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756112,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756114,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756115,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756116,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756117,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756118,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756119,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756120,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756121,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756122,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756123,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756124,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756125,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756126,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756127,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756128,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756129,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756130,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756131,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756132,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756133,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756134,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,756135,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756137,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756138,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756139,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756144,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756162,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756163,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756164,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756165,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756166,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756167,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756168,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756171,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756181,PostalCode,Bhadrak,LGD,348,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.983044,86.625018,inherited:District,86.270610,20.727459,87.102017,21.237518,SOI_Districts,2023-12-11,false, +IN-PIN,756182,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,757001,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757002,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757003,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757014,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757016,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757017,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757018,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757019,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757020,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757021,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757022,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757023,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757024,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757025,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757026,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757028,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757029,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757030,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757031,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757032,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757033,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757034,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757035,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757036,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757037,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757038,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757039,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757040,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757041,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757042,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757043,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757045,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757046,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757047,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757048,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757049,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757050,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757051,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757052,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757053,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757054,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757055,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757056,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757073,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757074,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757075,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757077,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757079,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757081,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757082,PostalCode,Baleshwar,LGD,346,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.494441,86.906311,inherited:District,86.352898,21.062371,87.486135,21.979938,SOI_Districts,2023-12-11,false, +IN-PIN,757083,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757084,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757085,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757086,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757087,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757091,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757092,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757093,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757100,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757101,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757102,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757103,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757104,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757105,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757106,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,757107,PostalCode,Mayurbhanj,LGD,365,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.895372,86.408568,inherited:District,85.662152,21.264785,87.183741,22.567507,SOI_Districts,2023-12-11,false, +IN-PIN,758002,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758013,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758014,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758015,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758016,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758017,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758018,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758019,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758020,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758021,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758022,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758023,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758025,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758026,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758027,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758028,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758029,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758030,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758031,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758032,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758034,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758035,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758036,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758037,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758038,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758041,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758043,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758044,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758045,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758046,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758047,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758076,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758078,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758079,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758080,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758081,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758082,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758083,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758084,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758085,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758086,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,758087,PostalCode,Kendujhar,LGD,361,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.537820,85.702386,inherited:District,85.184218,21.015764,86.372252,22.163202,SOI_Districts,2023-12-11,false, +IN-PIN,759001,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759013,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759014,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759015,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759016,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759017,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759018,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759019,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759020,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759021,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759022,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759023,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759024,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759025,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759026,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759027,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759028,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759029,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759037,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759039,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759040,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759100,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759101,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759102,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759103,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759105,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759106,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759107,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759111,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759116,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759117,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759118,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759119,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759120,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759121,PostalCode,Dhenkanal,LGD,352,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.826874,85.523896,inherited:District,85.113134,20.484472,86.031847,21.186448,SOI_Districts,2023-12-11,false, +IN-PIN,759122,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759123,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759124,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759125,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759126,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759127,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759128,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759129,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759130,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759132,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759141,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759143,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759145,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759146,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759147,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759148,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759149,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759150,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,759151,PostalCode,Anugola,LGD,344,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.986355,84.905206,inherited:District,84.261731,20.528031,85.393278,21.680155,SOI_Districts,2023-12-11,false, +IN-PIN,760002,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,760003,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,760007,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,760008,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,760010,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761001,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761002,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761003,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761004,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761005,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761006,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761007,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761008,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761009,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761010,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761011,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761012,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761013,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761014,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761015,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761016,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761017,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761018,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761019,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761020,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761026,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761027,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761028,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761029,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761030,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761031,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761032,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761035,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761037,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761041,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761042,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761043,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761045,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761052,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761054,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761055,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761100,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761101,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761102,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761103,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761104,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761105,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761106,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761107,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761108,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761109,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761110,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761114,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761118,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761121,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761123,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761126,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761131,PostalCode,Ganjam,LGD,354,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.624456,84.672465,inherited:District,84.130163,18.939324,85.182749,20.281137,SOI_Districts,2023-12-11,false, +IN-PIN,761200,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761201,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761206,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761207,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761208,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761209,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761210,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761211,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761212,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761213,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761214,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761215,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,761217,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,762001,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762002,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762010,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762011,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762012,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762013,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762014,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762015,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762016,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762017,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762018,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762019,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762020,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762021,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762022,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762023,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762024,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762026,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762027,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762028,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762029,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762030,PostalCode,Boudh,LGD,349,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.644444,84.172873,inherited:District,83.569463,20.384269,84.791299,20.896098,SOI_Districts,2023-12-11,false, +IN-PIN,762100,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762101,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762102,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762103,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762104,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762105,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762106,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762107,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762109,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762110,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,762112,PostalCode,Kandhamala,LGD,359,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.128180,84.045937,inherited:District,83.495164,19.573282,84.587589,20.689699,SOI_Districts,2023-12-11,false, +IN-PIN,763001,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,763002,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,763003,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,763008,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764002,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764003,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764005,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764006,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764011,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764014,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764020,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764021,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764027,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764028,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764036,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764037,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764039,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764040,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764041,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764042,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764043,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764044,PostalCode,Malkangiri,LGD,364,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +IN-PIN,764045,PostalCode,Malkangiri,LGD,364,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +IN-PIN,764051,PostalCode,Malkangiri,LGD,364,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +IN-PIN,764052,PostalCode,Malkangiri,LGD,364,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +IN-PIN,764056,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764057,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764058,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764061,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764062,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,764070,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764071,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764072,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764073,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764074,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764075,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764076,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764077,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764078,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764081,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,764085,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,764086,PostalCode,Malkangiri,LGD,364,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +IN-PIN,764087,PostalCode,Malkangiri,LGD,364,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.257715,81.950493,inherited:District,81.388378,17.812450,82.430440,18.738477,SOI_Districts,2023-12-11,false, +IN-PIN,764088,PostalCode,Nabarangpur,LGD,366,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.576483,82.334523,inherited:District,81.844882,19.114238,82.856423,20.105169,SOI_Districts,2023-12-11,false, +IN-PIN,765002,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765013,PostalCode,Koraput,LGD,363,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,18.812874,82.719717,inherited:District,82.088741,18.236652,83.414848,19.211298,SOI_Districts,2023-12-11,false, +IN-PIN,765015,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765016,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765017,PostalCode,Gajapati,LGD,353,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.184171,84.161163,inherited:District,83.793481,18.756780,84.439466,19.637621,SOI_Districts,2023-12-11,false, +IN-PIN,765018,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765019,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765020,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765021,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765022,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765023,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765024,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765025,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765026,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765029,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765033,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,765034,PostalCode,Rayagada,LGD,370,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.363492,83.512441,inherited:District,82.869761,18.911363,84.033776,19.973755,SOI_Districts,2023-12-11,false, +IN-PIN,766002,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766003,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766011,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766012,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766013,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766014,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766015,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766016,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766017,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766018,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766019,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766020,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766023,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766026,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766027,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766028,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766029,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766031,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766032,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766036,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766037,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766100,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766101,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766102,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766103,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766104,PostalCode,Nuapada,LGD,368,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +IN-PIN,766105,PostalCode,Nuapada,LGD,368,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +IN-PIN,766106,PostalCode,Nuapada,LGD,368,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +IN-PIN,766107,PostalCode,Nuapada,LGD,368,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +IN-PIN,766108,PostalCode,Nuapada,LGD,368,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +IN-PIN,766110,PostalCode,Kalahandi,LGD,358,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,19.867583,83.107938,inherited:District,82.524515,19.198336,83.790789,20.454243,SOI_Districts,2023-12-11,false, +IN-PIN,766111,PostalCode,Nuapada,LGD,368,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +IN-PIN,766118,PostalCode,Nuapada,LGD,368,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.466045,82.576879,inherited:District,82.332210,19.990136,82.860871,21.090859,SOI_Districts,2023-12-11,false, +IN-PIN,767002,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767016,PostalCode,Subarnapur,LGD,372,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +IN-PIN,767017,PostalCode,Subarnapur,LGD,372,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +IN-PIN,767018,PostalCode,Subarnapur,LGD,372,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +IN-PIN,767019,PostalCode,Subarnapur,LGD,372,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +IN-PIN,767020,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767021,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767022,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767023,PostalCode,Subarnapur,LGD,372,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +IN-PIN,767024,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767025,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767026,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767027,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767028,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767029,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767030,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767032,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767033,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767035,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767038,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767039,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767040,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767041,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767045,PostalCode,Subarnapur,LGD,372,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +IN-PIN,767046,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767048,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767060,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767061,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767062,PostalCode,Subarnapur,LGD,372,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.930816,83.822370,inherited:District,83.445478,20.527721,84.278931,21.177895,SOI_Districts,2023-12-11,false, +IN-PIN,767065,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767066,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767067,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767068,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,767071,PostalCode,Balangir,LGD,345,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,20.589427,83.171651,inherited:District,82.683305,20.147358,83.677241,21.071154,SOI_Districts,2023-12-11,false, +IN-PIN,768005,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768006,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768016,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768017,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768024,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768025,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768027,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768029,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768030,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768031,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768032,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768033,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768034,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768035,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768036,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768037,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768038,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768039,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768040,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768042,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768045,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768048,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768049,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768050,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768052,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768053,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768102,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768103,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768104,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768105,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768106,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768107,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768108,PostalCode,Debagada,LGD,351,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false, +IN-PIN,768109,PostalCode,Debagada,LGD,351,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false, +IN-PIN,768110,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768111,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768112,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768113,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768115,PostalCode,Baragada,LGD,347,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.219614,83.349141,inherited:District,82.635639,20.722286,83.912700,21.744389,SOI_Districts,2023-12-11,false, +IN-PIN,768118,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768119,PostalCode,Debagada,LGD,351,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false, +IN-PIN,768121,PostalCode,Debagada,LGD,351,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.467033,84.785302,inherited:District,84.392110,21.130908,85.212861,21.764285,SOI_Districts,2023-12-11,false, +IN-PIN,768200,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768201,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768202,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768204,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768210,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768211,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768212,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768213,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768214,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768215,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768216,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768217,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768219,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768220,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768221,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768222,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768224,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768225,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768226,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768227,PostalCode,Sambalpur,LGD,371,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.452534,84.273391,inherited:District,83.798280,20.922323,84.768373,22.189997,SOI_Districts,2023-12-11,false, +IN-PIN,768228,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,768234,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,769003,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,769004,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,769012,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,769016,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,769042,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,769043,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770002,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770011,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770012,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770013,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770014,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770015,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770016,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770017,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770018,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770019,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770020,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770021,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770022,PostalCode,Jharsuguda,LGD,357,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,21.807224,83.946640,inherited:District,83.418693,21.564344,84.390871,22.039535,SOI_Districts,2023-12-11,false, +IN-PIN,770023,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770024,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770025,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770031,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770033,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770034,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770035,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770036,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770037,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770038,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770039,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770040,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770041,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770042,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770043,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770044,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770046,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770048,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770051,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770052,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770070,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770072,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770073,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770074,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770075,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,770076,PostalCode,Sundaragada,LGD,373,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.079904,84.533191,inherited:District,83.536443,21.589553,85.376572,22.531042,SOI_Districts,2023-12-11,false, +IN-PIN,781004,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,781017,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,781023,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,781026,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,781028,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781029,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,781030,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781031,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781101,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781102,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781120,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781121,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781122,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781123,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781124,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781126,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781127,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781129,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781131,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,781133,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781134,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781136,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781137,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781138,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781141,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781150,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,781171,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,781301,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781302,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781303,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781304,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781305,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781306,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781307,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781308,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781309,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781310,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781311,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781312,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781313,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781314,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781315,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781316,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781317,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781318,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781319,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781320,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781321,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781325,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781326,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781327,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781328,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781329,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781330,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781333,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781334,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781335,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781337,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781338,PostalCode,Barpeta,LGD,280,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.341730,91.003652,inherited:District,90.653288,26.089745,91.289995,26.665387,SOI_Districts,2023-12-11,false, +IN-PIN,781339,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781340,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781341,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781343,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781344,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781346,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781347,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781348,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781349,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781350,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781351,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781352,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781353,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781354,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781355,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781360,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781364,PostalCode,Tamulpur,LGD,756,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781365,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781366,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781367,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781368,PostalCode,Tamulpur,LGD,756,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781369,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781370,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781371,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781372,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781373,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781374,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781375,PostalCode,Bajali,LGD,739,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.355278,92.827110,inherited:State,89.698600,24.136135,96.017876,27.971475,SOI_States,2023-12-11,false, +IN-PIN,781376,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781377,PostalCode,Baksa,LGD,616,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.660208,91.351220,inherited:District,90.869482,26.416183,91.801823,26.839603,SOI_Districts,2023-12-11,false, +IN-PIN,781378,PostalCode,Nalbari,LGD,298,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.370536,91.382421,inherited:District,91.215185,26.136048,91.584749,26.572303,SOI_Districts,2023-12-11,false, +IN-PIN,781380,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781381,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,781382,PostalCode,Kamrup,LGD,291,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.100380,91.416295,inherited:District,90.940222,25.722563,91.822960,26.530991,SOI_Districts,2023-12-11,false, +IN-PIN,782001,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782002,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782003,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782101,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782102,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782103,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782104,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782105,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782106,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782120,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782121,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782122,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782123,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782124,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782125,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782126,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782127,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782128,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782135,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782136,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782137,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782138,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782139,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782140,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782141,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782142,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782143,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782144,PostalCode,Nagaon,LGD,297,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.362398,92.753571,inherited:District,92.395401,25.961671,93.317924,26.700413,SOI_Districts,2023-12-11,false, +IN-PIN,782401,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,782402,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,782403,PostalCode,Kamrup Metro,LGD,618,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.128528,91.891940,inherited:District,91.560822,25.997755,92.176142,26.274917,SOI_Districts,2023-12-11,false, +IN-PIN,782410,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782411,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782412,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782413,PostalCode,Marigaon,LGD,296,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.281812,92.284050,inherited:District,91.972003,26.061765,92.568178,26.517080,SOI_Districts,2023-12-11,false, +IN-PIN,782426,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782427,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782428,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782429,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782435,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782439,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782440,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782441,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782442,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782445,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782446,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782447,PostalCode,Hojai,LGD,709,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.978201,92.979926,inherited:District,92.702310,25.718376,93.247870,26.207981,SOI_Districts,2023-12-11,false, +IN-PIN,782448,PostalCode,West Karbi Anglong,LGD,710,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false, +IN-PIN,782450,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782461,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782462,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782470,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782480,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782481,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782482,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782485,PostalCode,West Karbi Anglong,LGD,710,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.849996,92.532969,inherited:District,92.144247,25.550359,93.075414,26.155399,SOI_Districts,2023-12-11,false, +IN-PIN,782486,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,782490,PostalCode,Karbi Anglong,LGD,292,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.156857,93.404795,inherited:District,92.793272,25.530322,93.894816,26.612666,SOI_Districts,2023-12-11,false, +IN-PIN,783101,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783120,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783121,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783123,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783124,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783125,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783126,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783127,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783128,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783129,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783130,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783131,PostalCode,South Salmara Mancachar,LGD,707,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false, +IN-PIN,783132,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783133,PostalCode,Goalpara,LGD,287,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.050242,90.607466,inherited:District,90.115335,25.884173,91.099732,26.215163,SOI_Districts,2023-12-11,false, +IN-PIN,783134,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783135,PostalCode,South Salmara Mancachar,LGD,707,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false, +IN-PIN,783136,PostalCode,South Salmara Mancachar,LGD,707,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.778073,89.931723,inherited:District,89.816545,25.465881,90.098774,25.992489,SOI_Districts,2023-12-11,false, +IN-PIN,783301,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783323,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783324,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783325,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783330,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783331,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783333,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783334,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783335,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783336,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783337,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783339,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783345,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783346,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783347,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783348,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783349,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783350,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783354,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783360,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783361,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783369,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783370,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783371,PostalCode,Dhubri,LGD,285,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.142595,90.042012,inherited:District,89.698600,25.879046,90.483542,26.385060,SOI_Districts,2023-12-11,false, +IN-PIN,783372,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783373,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783375,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783376,PostalCode,Kokrajhar,LGD,294,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.492770,90.118799,inherited:District,89.829954,26.112193,90.437253,26.868730,SOI_Districts,2023-12-11,false, +IN-PIN,783380,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783381,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783382,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783383,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783384,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783385,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783386,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783388,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783389,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783390,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783391,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783392,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,783393,PostalCode,Chirang,LGD,612,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.659673,90.595862,inherited:District,90.335817,26.385603,90.957066,26.904531,SOI_Districts,2023-12-11,false, +IN-PIN,783394,PostalCode,Bongaigaon,LGD,281,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.354045,90.614044,inherited:District,90.377132,26.150611,90.861924,26.532123,SOI_Districts,2023-12-11,false, +IN-PIN,784001,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784010,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784025,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784026,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784027,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784028,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784101,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784102,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784103,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784104,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784105,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784110,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784111,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784112,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784113,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784114,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784115,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784116,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784117,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784125,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784144,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784145,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784146,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784147,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784148,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784149,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784150,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784153,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784154,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784160,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,784161,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,784163,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,784164,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,784165,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,784166,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784167,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784168,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784169,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784170,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784171,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784172,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784173,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784174,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784175,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784176,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784177,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784178,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784179,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784180,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784182,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784184,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784189,PostalCode,Biswanath,LGD,705,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.812104,93.312825,inherited:District,92.903503,26.576792,93.789489,26.994196,SOI_Districts,2023-12-11,false, +IN-PIN,784190,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784501,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784502,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784504,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784505,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784506,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784507,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784508,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784509,PostalCode,Sonitpur,LGD,301,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.758534,92.651006,inherited:District,92.323431,26.495721,92.982933,27.031661,SOI_Districts,2023-12-11,false, +IN-PIN,784510,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784513,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784514,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784521,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784522,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784523,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784524,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784525,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,784526,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784527,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784528,PostalCode,Udalguri,LGD,617,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.730123,92.031407,inherited:District,91.704285,26.475460,92.401784,26.934543,SOI_Districts,2023-12-11,false, +IN-PIN,784529,PostalCode,Darrang,LGD,283,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.447690,92.029452,inherited:District,91.744239,26.198480,92.380702,26.670269,SOI_Districts,2023-12-11,false, +IN-PIN,785001,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785004,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785006,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785007,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785008,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785009,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785010,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785013,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785014,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785015,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785101,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785102,PostalCode,Majuli,LGD,706,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false, +IN-PIN,785104,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785105,PostalCode,Majuli,LGD,706,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.938190,94.171745,inherited:District,93.648612,26.743947,94.593040,27.183867,SOI_Districts,2023-12-11,false, +IN-PIN,785106,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785107,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785108,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785110,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785111,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785112,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785601,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785602,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785603,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785609,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785610,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785611,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785612,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785613,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785614,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785615,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785616,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785618,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785619,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785621,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785622,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785625,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785626,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785630,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785631,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785632,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785633,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785634,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785635,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785636,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785640,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785661,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785662,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785663,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785664,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785665,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785666,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785667,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785669,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785670,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785671,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785672,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785673,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785674,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785675,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,785676,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,785680,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785681,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785682,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785683,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785684,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785685,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785686,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785687,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785688,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785689,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785690,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785691,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785692,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785693,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785696,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785697,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785698,PostalCode,Charaideo,LGD,708,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.067765,95.059768,inherited:District,94.790475,26.912998,95.371989,27.227082,SOI_Districts,2023-12-11,false, +IN-PIN,785699,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785700,PostalCode,Jorhat,LGD,290,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.695491,94.276417,inherited:District,93.971247,26.347569,94.603347,26.952845,SOI_Districts,2023-12-11,false, +IN-PIN,785701,PostalCode,Sivasagar,LGD,300,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.970450,94.664944,inherited:District,94.395287,26.711960,94.941797,27.275498,SOI_Districts,2023-12-11,false, +IN-PIN,785702,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785703,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,785705,PostalCode,Golaghat,LGD,288,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443087,93.831353,inherited:District,93.286880,25.808928,94.177854,26.792413,SOI_Districts,2023-12-11,false, +IN-PIN,786001,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786002,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786003,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786004,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786006,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786007,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786008,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786010,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786012,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786101,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786103,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786125,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786126,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786145,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786146,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786147,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786148,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786150,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786151,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786152,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786153,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786154,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786155,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786156,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786157,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786158,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786159,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786160,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786170,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786171,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786173,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786174,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786179,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786181,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786182,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786183,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786184,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786187,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786188,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786189,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786190,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786191,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786192,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786601,PostalCode,Tinsukia,LGD,302,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.579952,95.619579,inherited:District,95.217153,27.222907,96.017876,27.971475,SOI_Districts,2023-12-11,false, +IN-PIN,786602,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786610,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786611,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786612,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786613,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786614,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786621,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,786692,PostalCode,Dibrugarh,LGD,286,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.366986,95.053106,inherited:District,94.567507,27.091383,95.484302,27.704891,SOI_Districts,2023-12-11,false, +IN-PIN,787023,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,787026,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787031,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,787032,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,787033,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,787034,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787035,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787051,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,787052,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,787053,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787054,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,787055,PostalCode,Lakhimpur,LGD,295,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.174006,94.140707,inherited:District,93.697777,26.821492,94.628978,27.520814,SOI_Districts,2023-12-11,false, +IN-PIN,787056,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787057,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787058,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787059,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787060,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787061,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,787110,PostalCode,Dhemaji,LGD,284,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.589777,94.774961,inherited:District,94.209175,27.308458,95.515421,27.879458,SOI_Districts,2023-12-11,false, +IN-PIN,788001,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788002,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788003,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788004,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788005,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788006,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788007,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788009,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788010,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788011,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788013,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788015,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788025,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788026,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788030,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788031,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788098,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788099,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788101,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788102,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788103,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788104,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788106,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788107,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788108,PostalCode,Dima Hasao,LGD,299,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +IN-PIN,788111,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788112,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788113,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788114,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788115,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788116,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788117,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788119,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788120,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788121,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788123,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788126,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788127,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788150,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788152,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788155,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788156,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788160,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788161,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788162,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788163,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788164,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788165,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788166,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788168,PostalCode,Hailakandi,LGD,289,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.497097,92.587787,inherited:District,92.418573,24.136135,92.780603,24.879442,SOI_Districts,2023-12-11,false, +IN-PIN,788701,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788709,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788710,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788711,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788712,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788713,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788722,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788723,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788724,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788725,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788726,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788727,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788728,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788734,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788735,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788736,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788737,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788738,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788781,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788802,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788804,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788805,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788806,PostalCode,Sribhumi,LGD,293,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.579503,92.379052,inherited:District,92.212872,24.249927,92.586292,24.916013,SOI_Districts,2023-12-11,false, +IN-PIN,788815,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788816,PostalCode,Cachar,LGD,282,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.812469,92.854835,inherited:District,92.416347,24.373593,93.263006,25.143346,SOI_Districts,2023-12-11,false, +IN-PIN,788818,PostalCode,Dima Hasao,LGD,299,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +IN-PIN,788819,PostalCode,Dima Hasao,LGD,299,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +IN-PIN,788820,PostalCode,Dima Hasao,LGD,299,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +IN-PIN,788830,PostalCode,Dima Hasao,LGD,299,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +IN-PIN,788831,PostalCode,Dima Hasao,LGD,299,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +IN-PIN,788832,PostalCode,Dima Hasao,LGD,299,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +IN-PIN,788931,PostalCode,Dima Hasao,LGD,299,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.377940,93.030966,inherited:District,92.520639,24.970328,93.473704,25.826757,SOI_Districts,2023-12-11,false, +IN-PIN,790001,PostalCode,Bichom,LGD,787,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +IN-PIN,790002,PostalCode,West Kameng,LGD,242,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +IN-PIN,790003,PostalCode,West Kameng,LGD,242,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +IN-PIN,790101,PostalCode,West Kameng,LGD,242,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +IN-PIN,790102,PostalCode,Bichom,LGD,787,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +IN-PIN,790103,PostalCode,Pakke Kessang,LGD,723,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.105402,93.035255,inherited:District,92.590261,26.913382,93.389582,27.399591,SOI_Districts,2023-12-11,false, +IN-PIN,790104,PostalCode,Tawang,LGD,238,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +IN-PIN,790105,PostalCode,Tawang,LGD,238,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +IN-PIN,790106,PostalCode,Tawang,LGD,238,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.662208,91.965169,inherited:District,91.553545,27.450100,92.470548,27.872100,SOI_Districts,2023-12-11,false, +IN-PIN,790114,PostalCode,West Kameng,LGD,242,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +IN-PIN,790116,PostalCode,West Kameng,LGD,242,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.291857,92.393051,inherited:District,92.021861,26.888984,92.844250,27.746965,SOI_Districts,2023-12-11,false, +IN-PIN,791001,PostalCode,Siang,LGD,679,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +IN-PIN,791002,PostalCode,Upper Siang,LGD,240,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +IN-PIN,791003,PostalCode,Shi Yomi,LGD,725,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.676965,94.260983,inherited:District,93.967711,28.335838,94.560961,29.037249,SOI_Districts,2023-12-11,false, +IN-PIN,791101,PostalCode,Leparada,LGD,724,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.925491,94.716086,inherited:District,94.484295,27.772962,94.926221,28.062067,SOI_Districts,2023-12-11,false, +IN-PIN,791102,PostalCode,East Siang,LGD,232,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +IN-PIN,791103,PostalCode,Siang,LGD,679,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.404385,94.808912,inherited:District,94.378501,28.023449,95.295530,28.932123,SOI_Districts,2023-12-11,false, +IN-PIN,791104,PostalCode,East Siang,LGD,232,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +IN-PIN,791105,PostalCode,Upper Siang,LGD,240,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.832949,94.915294,inherited:District,94.191588,28.163165,95.409577,29.341236,SOI_Districts,2023-12-11,false, +IN-PIN,791110,PostalCode,Papum Pare,LGD,237,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +IN-PIN,791111,PostalCode,Papum Pare,LGD,237,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +IN-PIN,791112,PostalCode,Papum Pare,LGD,237,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +IN-PIN,791113,PostalCode,Papum Pare,LGD,237,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +IN-PIN,791114,PostalCode,Papum Pare,LGD,237,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +IN-PIN,791118,PostalCode,Kra Daadi,LGD,677,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.017789,93.672960,inherited:District,93.446898,27.599292,93.946357,28.287939,SOI_Districts,2023-12-11,false, +IN-PIN,791119,PostalCode,Keyi Panyor,LGD,786,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.035268,94.673960,inherited:State,91.553545,26.650823,97.412897,29.465947,SOI_States,2023-12-11,false, +IN-PIN,791120,PostalCode,Kamle,LGD,718,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.741518,94.078176,inherited:District,93.842617,27.492528,94.356038,27.986543,SOI_Districts,2023-12-11,false, +IN-PIN,791121,PostalCode,East Siang,LGD,232,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.048218,95.354000,inherited:District,95.067367,27.815647,95.569971,28.322681,SOI_Districts,2023-12-11,false, +IN-PIN,791122,PostalCode,Upper Subansiri,LGD,241,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.289938,93.929551,inherited:District,93.180451,27.757777,94.594836,28.707320,SOI_Districts,2023-12-11,false, +IN-PIN,791123,PostalCode,Papum Pare,LGD,237,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.270137,93.596281,inherited:District,93.210662,26.936177,94.207026,27.633242,SOI_Districts,2023-12-11,false, +IN-PIN,792001,PostalCode,Lohit,LGD,234,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false, +IN-PIN,792056,PostalCode,Changlang,LGD,229,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +IN-PIN,792101,PostalCode,Dibang Valley,LGD,230,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.868333,95.909961,inherited:District,95.243601,28.319122,96.610140,29.465947,SOI_Districts,2023-12-11,false, +IN-PIN,792102,PostalCode,Lohit,LGD,234,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false, +IN-PIN,792103,PostalCode,Changlang,LGD,229,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +IN-PIN,792104,PostalCode,Anjaw,LGD,628,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.066616,96.856247,inherited:District,96.362367,27.614661,97.412897,28.457785,SOI_Districts,2023-12-11,false, +IN-PIN,792105,PostalCode,Namsai,LGD,678,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.701176,96.043183,inherited:District,95.752263,27.543051,96.311682,27.877467,SOI_Districts,2023-12-11,false, +IN-PIN,792110,PostalCode,Lower Dibang Valley,LGD,235,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,28.254737,95.821628,inherited:District,95.320044,27.879712,96.363556,28.555626,SOI_Districts,2023-12-11,false, +IN-PIN,792111,PostalCode,Lohit,LGD,234,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.929436,96.300479,inherited:District,95.774297,27.569802,96.719096,28.386357,SOI_Districts,2023-12-11,false, +IN-PIN,792120,PostalCode,Changlang,LGD,229,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +IN-PIN,792121,PostalCode,Changlang,LGD,229,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +IN-PIN,792122,PostalCode,Changlang,LGD,229,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +IN-PIN,792123,PostalCode,Changlang,LGD,229,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +IN-PIN,792124,PostalCode,Changlang,LGD,229,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.369957,96.353040,inherited:District,95.633907,26.904074,97.165897,27.660455,SOI_Districts,2023-12-11,false, +IN-PIN,792129,PostalCode,Tirap,LGD,239,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +IN-PIN,792130,PostalCode,Tirap,LGD,239,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.024225,95.543181,inherited:District,95.360211,26.799635,95.746838,27.264588,SOI_Districts,2023-12-11,false, +IN-PIN,792131,PostalCode,Longding,LGD,666,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.855201,95.327659,inherited:District,95.181143,26.650823,95.505685,27.108184,SOI_Districts,2023-12-11,false, +IN-PIN,793001,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793003,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793004,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793005,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793006,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793009,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793010,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793012,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793014,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793015,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793017,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793018,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793019,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793021,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793022,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793101,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,793102,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,793103,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,793104,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,793105,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,793106,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793107,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793108,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793109,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793110,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793112,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793113,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793114,PostalCode,South West Khasi Hills,LGD,658,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false, +IN-PIN,793115,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793116,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,793119,PostalCode,Eastern West Khasi Hills,LGD,740,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false, +IN-PIN,793120,PostalCode,Eastern West Khasi Hills,LGD,740,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.535419,91.278401,inherited:State,89.819545,25.027795,92.802915,26.119406,SOI_States,2023-12-11,false, +IN-PIN,793121,PostalCode,East Khasi Hills,LGD,274,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.383453,91.800191,inherited:District,91.353813,25.122545,92.158190,25.673563,SOI_Districts,2023-12-11,false, +IN-PIN,793122,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,793123,PostalCode,Ri Bhoi,LGD,276,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.873612,91.884129,inherited:District,91.341894,25.629353,92.274893,26.119406,SOI_Districts,2023-12-11,false, +IN-PIN,793126,PostalCode,South West Khasi Hills,LGD,658,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.312380,91.245827,inherited:District,90.857060,25.167953,91.556174,25.451656,SOI_Districts,2023-12-11,false, +IN-PIN,793150,PostalCode,West Jaintia Hills,LGD,275,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false, +IN-PIN,793151,PostalCode,West Jaintia Hills,LGD,275,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false, +IN-PIN,793160,PostalCode,East Jaintia Hills,LGD,657,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false, +IN-PIN,793161,PostalCode,West Jaintia Hills,LGD,275,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.485083,92.281958,inherited:District,91.982120,25.117921,92.661462,25.754523,SOI_Districts,2023-12-11,false, +IN-PIN,793200,PostalCode,East Jaintia Hills,LGD,657,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false, +IN-PIN,793210,PostalCode,East Jaintia Hills,LGD,657,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.265690,92.463884,inherited:District,92.171253,25.027795,92.802915,25.472106,SOI_Districts,2023-12-11,false, +IN-PIN,794001,PostalCode,South West Garo Hills,LGD,663,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false, +IN-PIN,794002,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794003,PostalCode,West Garo Hills,LGD,278,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +IN-PIN,794004,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794005,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794101,PostalCode,West Garo Hills,LGD,278,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.641756,90.197735,inherited:District,89.893627,25.200138,90.425607,26.012516,SOI_Districts,2023-12-11,false, +IN-PIN,794102,PostalCode,South Garo Hills,LGD,277,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +IN-PIN,794103,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794104,PostalCode,South Garo Hills,LGD,277,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +IN-PIN,794105,PostalCode,South Garo Hills,LGD,277,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +IN-PIN,794106,PostalCode,South West Garo Hills,LGD,663,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.446276,89.989664,inherited:District,89.819545,25.285328,90.164051,25.605395,SOI_Districts,2023-12-11,false, +IN-PIN,794108,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794109,PostalCode,South Garo Hills,LGD,277,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.300548,90.593840,inherited:District,90.234023,25.144508,90.971505,25.554318,SOI_Districts,2023-12-11,false, +IN-PIN,794110,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794111,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794112,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794113,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794114,PostalCode,East Garo Hills,LGD,273,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.618628,90.630370,inherited:District,90.315757,25.415397,90.982520,25.824770,SOI_Districts,2023-12-11,false, +IN-PIN,794115,PostalCode,North Garo Hills,LGD,656,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.850532,90.665283,inherited:District,90.346121,25.675876,91.030548,26.009587,SOI_Districts,2023-12-11,false, +IN-PIN,795001,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795002,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795003,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795004,PostalCode,Imphal West,LGD,256,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +IN-PIN,795005,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795006,PostalCode,Pherzawl,LGD,715,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.304682,93.220554,inherited:District,92.969434,24.020712,93.496351,24.581618,SOI_Districts,2023-12-11,false, +IN-PIN,795007,PostalCode,Senapati,LGD,257,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +IN-PIN,795008,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795009,PostalCode,Imphal West,LGD,256,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +IN-PIN,795010,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795101,PostalCode,Chandel,LGD,253,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +IN-PIN,795102,PostalCode,Chandel,LGD,253,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +IN-PIN,795103,PostalCode,Chandel,LGD,253,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +IN-PIN,795104,PostalCode,Senapati,LGD,257,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +IN-PIN,795105,PostalCode,Senapati,LGD,257,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +IN-PIN,795106,PostalCode,Churachandpur,LGD,254,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +IN-PIN,795107,PostalCode,Kangpokpi,LGD,712,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +IN-PIN,795112,PostalCode,Kangpokpi,LGD,712,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +IN-PIN,795113,PostalCode,Imphal West,LGD,256,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +IN-PIN,795114,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795115,PostalCode,Jiribam,LGD,713,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false, +IN-PIN,795116,PostalCode,Jiribam,LGD,713,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.681775,93.152020,inherited:District,93.071151,24.551001,93.242083,24.858853,SOI_Districts,2023-12-11,false, +IN-PIN,795117,PostalCode,Churachandpur,LGD,254,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +IN-PIN,795118,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795125,PostalCode,Tamenglong,LGD,258,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.053484,93.550469,inherited:District,93.141898,24.666699,93.955279,25.461589,SOI_Districts,2023-12-11,false, +IN-PIN,795126,PostalCode,Bishnupur,LGD,252,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.535799,93.797905,inherited:District,93.704786,24.286179,93.889345,24.737733,SOI_Districts,2023-12-11,false, +IN-PIN,795127,PostalCode,Chandel,LGD,253,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +IN-PIN,795128,PostalCode,Churachandpur,LGD,254,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +IN-PIN,795129,PostalCode,Kangpokpi,LGD,712,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.992920,93.947737,inherited:District,93.661908,24.592075,94.200222,25.398014,SOI_Districts,2023-12-11,false, +IN-PIN,795130,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795131,PostalCode,Chandel,LGD,253,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +IN-PIN,795132,PostalCode,Imphal West,LGD,256,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +IN-PIN,795134,PostalCode,Imphal West,LGD,256,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +IN-PIN,795135,PostalCode,Chandel,LGD,253,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.124837,94.007495,inherited:District,93.734980,23.832848,94.254890,24.487762,SOI_Districts,2023-12-11,false, +IN-PIN,795136,PostalCode,Imphal West,LGD,256,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +IN-PIN,795138,PostalCode,Thoubal,LGD,259,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false, +IN-PIN,795139,PostalCode,Churachandpur,LGD,254,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +IN-PIN,795140,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795141,PostalCode,Noney,LGD,714,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false, +IN-PIN,795142,PostalCode,Kamjong,LGD,717,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.824838,94.432038,inherited:District,94.134303,24.478345,94.744890,25.111182,SOI_Districts,2023-12-11,false, +IN-PIN,795144,PostalCode,Senapati,LGD,257,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +IN-PIN,795145,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795146,PostalCode,Imphal West,LGD,256,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.803266,93.872958,inherited:District,93.770567,24.552635,93.984590,25.075501,SOI_Districts,2023-12-11,false, +IN-PIN,795147,PostalCode,Noney,LGD,714,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false, +IN-PIN,795148,PostalCode,Thoubal,LGD,259,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.615553,94.009519,inherited:District,93.888689,24.501670,94.148724,24.728008,SOI_Districts,2023-12-11,false, +IN-PIN,795149,PostalCode,Imphal East,LGD,255,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.832705,94.013173,inherited:District,93.895323,24.667190,94.141740,25.050304,SOI_Districts,2023-12-11,false, +IN-PIN,795150,PostalCode,Senapati,LGD,257,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.398440,94.124914,inherited:District,93.760612,25.168345,94.489697,25.616249,SOI_Districts,2023-12-11,false, +IN-PIN,795158,PostalCode,Churachandpur,LGD,254,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.277193,93.602918,inherited:District,93.364839,23.942116,93.877143,24.612187,SOI_Districts,2023-12-11,false, +IN-PIN,795159,PostalCode,Noney,LGD,714,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.677348,93.455938,inherited:District,93.169276,24.494482,93.697098,24.846408,SOI_Districts,2023-12-11,false, +IN-PIN,796001,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796005,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796015,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796017,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796070,PostalCode,Kolasib,LGD,263,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false, +IN-PIN,796081,PostalCode,Kolasib,LGD,263,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false, +IN-PIN,796091,PostalCode,Kolasib,LGD,263,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false, +IN-PIN,796101,PostalCode,Kolasib,LGD,263,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.141417,92.720432,inherited:District,92.526822,23.845879,92.900268,24.521150,SOI_Districts,2023-12-11,false, +IN-PIN,796111,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796161,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796181,PostalCode,Serchhip,LGD,268,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false, +IN-PIN,796184,PostalCode,Serchhip,LGD,268,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.308820,92.941508,inherited:District,92.683092,23.006383,93.179836,23.644690,SOI_Districts,2023-12-11,false, +IN-PIN,796186,PostalCode,Hnahthial,LGD,726,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +IN-PIN,796190,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796261,PostalCode,Saitual,LGD,727,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +IN-PIN,796290,PostalCode,Saitual,LGD,727,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +IN-PIN,796291,PostalCode,Champhai,LGD,262,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false, +IN-PIN,796310,PostalCode,Khawzawl,LGD,728,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +IN-PIN,796320,PostalCode,Champhai,LGD,262,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false, +IN-PIN,796321,PostalCode,Champhai,LGD,262,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.540546,93.231068,inherited:District,93.002403,23.003911,93.436906,24.083521,SOI_Districts,2023-12-11,false, +IN-PIN,796370,PostalCode,Khawzawl,LGD,728,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +IN-PIN,796410,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796421,PostalCode,Aizawl,LGD,261,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.848541,92.890177,inherited:District,92.623426,23.318872,93.190226,24.432654,SOI_Districts,2023-12-11,false, +IN-PIN,796431,PostalCode,Mamit,LGD,266,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false, +IN-PIN,796441,PostalCode,Mamit,LGD,266,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false, +IN-PIN,796470,PostalCode,Mamit,LGD,266,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false, +IN-PIN,796501,PostalCode,Mamit,LGD,266,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.755528,92.463997,inherited:District,92.257065,23.256599,92.674442,24.254856,SOI_Districts,2023-12-11,false, +IN-PIN,796571,PostalCode,Hnahthial,LGD,726,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +IN-PIN,796691,PostalCode,Lunglei,LGD,265,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false, +IN-PIN,796701,PostalCode,Hnahthial,LGD,726,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.306959,92.831811,inherited:State,92.257065,21.940040,93.436906,24.521150,SOI_States,2023-12-11,false, +IN-PIN,796751,PostalCode,Lunglei,LGD,265,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.972505,92.720138,inherited:District,92.346779,22.496897,93.164537,23.407264,SOI_Districts,2023-12-11,false, +IN-PIN,796770,PostalCode,Lawngtlai,LGD,264,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false, +IN-PIN,796891,PostalCode,Lawngtlai,LGD,264,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false, +IN-PIN,796901,PostalCode,Lawngtlai,LGD,264,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.432755,92.765933,inherited:District,92.504071,21.974657,93.140328,22.808760,SOI_Districts,2023-12-11,false, +IN-PIN,797002,PostalCode,Kohima,LGD,245,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +IN-PIN,797003,PostalCode,Kohima,LGD,245,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +IN-PIN,797004,PostalCode,Kohima,LGD,245,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +IN-PIN,797006,PostalCode,Kohima,LGD,245,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +IN-PIN,797099,PostalCode,Wokha,LGD,250,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +IN-PIN,797101,PostalCode,Peren,LGD,613,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +IN-PIN,797103,PostalCode,Chumoukedima,LGD,758,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,797104,PostalCode,Phek,LGD,248,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +IN-PIN,797105,PostalCode,Kohima,LGD,245,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +IN-PIN,797106,PostalCode,Chumoukedima,LGD,758,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,797107,PostalCode,Phek,LGD,248,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +IN-PIN,797108,PostalCode,Phek,LGD,248,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.647194,94.534539,inherited:District,94.185953,25.449359,94.898504,25.856896,SOI_Districts,2023-12-11,false, +IN-PIN,797109,PostalCode,Tseminyu,LGD,757,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,797110,PostalCode,Peren,LGD,613,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.508382,93.624084,inherited:District,93.326687,25.198356,93.979320,25.770470,SOI_Districts,2023-12-11,false, +IN-PIN,797111,PostalCode,Wokha,LGD,250,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.188371,94.191816,inherited:District,93.953001,25.921549,94.390608,26.561398,SOI_Districts,2023-12-11,false, +IN-PIN,797112,PostalCode,Chumoukedima,LGD,758,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,797113,PostalCode,Dimapur,LGD,244,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false, +IN-PIN,797114,PostalCode,Meluri,LGD,788,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,797115,PostalCode,Chumoukedima,LGD,758,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,797116,PostalCode,Chumoukedima,LGD,758,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,797118,PostalCode,Dimapur,LGD,244,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.781128,93.794081,inherited:District,93.539552,25.614274,93.994638,25.970484,SOI_Districts,2023-12-11,false, +IN-PIN,797120,PostalCode,Kohima,LGD,245,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.771761,94.108881,inherited:District,93.874949,25.519016,94.298773,26.021765,SOI_Districts,2023-12-11,false, +IN-PIN,798601,PostalCode,Mokokchung,LGD,246,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +IN-PIN,798602,PostalCode,Mon,LGD,247,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +IN-PIN,798603,PostalCode,Mon,LGD,247,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +IN-PIN,798604,PostalCode,Mokokchung,LGD,246,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +IN-PIN,798607,PostalCode,Mokokchung,LGD,246,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +IN-PIN,798611,PostalCode,Kiphire,LGD,614,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.842745,94.821768,inherited:District,94.569820,25.585086,95.050022,26.038065,SOI_Districts,2023-12-11,false, +IN-PIN,798612,PostalCode,Noklak,LGD,736,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,798613,PostalCode,Mokokchung,LGD,246,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +IN-PIN,798614,PostalCode,Mokokchung,LGD,246,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +IN-PIN,798615,PostalCode,Mokokchung,LGD,246,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.472284,94.528963,inherited:District,94.290142,26.193054,94.756663,26.763869,SOI_Districts,2023-12-11,false, +IN-PIN,798616,PostalCode,Tuensang,LGD,249,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.166672,94.887560,inherited:District,94.559231,25.875485,95.185888,26.437057,SOI_Districts,2023-12-11,false, +IN-PIN,798618,PostalCode,Longleng,LGD,615,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false, +IN-PIN,798620,PostalCode,Zunheboto,LGD,251,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +IN-PIN,798621,PostalCode,Mon,LGD,247,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.677812,95.016718,inherited:District,94.779490,26.285348,95.241350,27.035207,SOI_Districts,2023-12-11,false, +IN-PIN,798622,PostalCode,Longleng,LGD,615,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false, +IN-PIN,798625,PostalCode,Longleng,LGD,615,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.552081,94.795531,inherited:District,94.666903,26.371871,94.916104,26.796360,SOI_Districts,2023-12-11,false, +IN-PIN,798626,PostalCode,Noklak,LGD,736,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,798627,PostalCode,Zunheboto,LGD,251,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.999722,94.483933,inherited:District,94.229148,25.732035,94.712968,26.293561,SOI_Districts,2023-12-11,false, +IN-PIN,798628,PostalCode,Shamator,LGD,765,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.062153,94.466308,inherited:State,93.326687,25.198356,95.241350,27.035207,SOI_States,2023-12-11,false, +IN-PIN,799001,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799002,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799003,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799004,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799006,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799008,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799009,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799011,PostalCode,Sepahijala,LGD,653,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +IN-PIN,799012,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799013,PostalCode,Gomati,LGD,654,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +IN-PIN,799015,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799035,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799045,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799101,PostalCode,Gomati,LGD,654,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +IN-PIN,799102,PostalCode,Sepahijala,LGD,653,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +IN-PIN,799103,PostalCode,Sepahijala,LGD,653,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +IN-PIN,799104,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799105,PostalCode,Gomati,LGD,654,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +IN-PIN,799113,PostalCode,Gomati,LGD,654,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +IN-PIN,799114,PostalCode,Gomati,LGD,654,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +IN-PIN,799115,PostalCode,Sepahijala,LGD,653,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +IN-PIN,799120,PostalCode,Gomati,LGD,654,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +IN-PIN,799125,PostalCode,Gomati,LGD,654,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.511621,91.627811,inherited:District,91.375264,23.083631,91.843269,23.768952,SOI_Districts,2023-12-11,false, +IN-PIN,799130,PostalCode,Sepahijala,LGD,653,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +IN-PIN,799131,PostalCode,Sepahijala,LGD,653,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +IN-PIN,799132,PostalCode,Sepahijala,LGD,653,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.585052,91.331523,inherited:District,91.149198,23.276504,91.576513,23.787093,SOI_Districts,2023-12-11,false, +IN-PIN,799141,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799142,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799143,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799144,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799145,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799150,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799153,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799155,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799156,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799157,PostalCode,South Tripura,LGD,271,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.200333,91.577175,inherited:District,91.309786,22.938351,91.824460,23.425504,SOI_Districts,2023-12-11,false, +IN-PIN,799201,PostalCode,Khowai,LGD,652,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false, +IN-PIN,799203,PostalCode,Khowai,LGD,652,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false, +IN-PIN,799204,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799205,PostalCode,Khowai,LGD,652,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false, +IN-PIN,799207,PostalCode,Khowai,LGD,652,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.943724,91.660954,inherited:District,91.473083,23.675099,91.808611,24.233529,SOI_Districts,2023-12-11,false, +IN-PIN,799210,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799211,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799212,PostalCode,West Tripura,LGD,272,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.886599,91.399302,inherited:District,91.221502,23.725854,91.567628,24.111499,SOI_Districts,2023-12-11,false, +IN-PIN,799250,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799251,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799253,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799254,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799256,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799260,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799261,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799262,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799263,PostalCode,Unakoti,LGD,655,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +IN-PIN,799264,PostalCode,Unakoti,LGD,655,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +IN-PIN,799266,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799269,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799270,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799271,PostalCode,North Tripura,LGD,270,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.097014,92.210814,inherited:District,92.072610,23.651900,92.332057,24.531867,SOI_Districts,2023-12-11,false, +IN-PIN,799273,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799275,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799277,PostalCode,Unakoti,LGD,655,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +IN-PIN,799278,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799279,PostalCode,Unakoti,LGD,655,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +IN-PIN,799280,PostalCode,Unakoti,LGD,655,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +IN-PIN,799281,PostalCode,Unakoti,LGD,655,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +IN-PIN,799282,PostalCode,Unakoti,LGD,655,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +IN-PIN,799284,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799285,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799286,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799287,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799288,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799289,PostalCode,Dhalai,LGD,269,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.837087,91.924036,inherited:District,91.745029,23.400045,92.173568,24.246975,SOI_Districts,2023-12-11,false, +IN-PIN,799290,PostalCode,Unakoti,LGD,655,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.204434,92.041151,inherited:District,91.902703,24.010043,92.203407,24.393708,SOI_Districts,2023-12-11,false, +IN-PIN,800001,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800002,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800003,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800004,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800005,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800006,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800007,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800008,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800009,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800011,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800012,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800013,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800014,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800016,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800019,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800020,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800025,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800026,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800027,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800030,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,800033,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801102,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801103,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801104,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801108,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801109,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801110,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801111,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801112,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801113,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801301,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,801302,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,801303,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,801304,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,801305,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,801306,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,801307,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,801503,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,801505,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,802101,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802102,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802111,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802112,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802114,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802115,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802116,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802117,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802118,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802119,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802120,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802122,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802123,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802125,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802126,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802127,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802129,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802130,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802131,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802132,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,802133,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802134,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802135,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802136,PostalCode,Buxar,LGD,194,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.491965,84.099685,inherited:District,83.772129,25.261473,84.393634,25.747506,SOI_Districts,2023-12-11,false, +IN-PIN,802152,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802154,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802155,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802156,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802157,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802158,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802159,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802160,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802161,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802162,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802163,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802164,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802165,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802166,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802183,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802201,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802202,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802203,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802204,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802205,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802206,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802207,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802208,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802209,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802210,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802211,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802212,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802213,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802214,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802215,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802216,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802217,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802218,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802219,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802220,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802221,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802222,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802223,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802226,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,802301,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802302,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802311,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802312,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802313,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802314,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802316,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802351,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,802352,PostalCode,Bhojpur,LGD,193,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.470829,84.542485,inherited:District,84.273227,25.161167,84.851370,25.738375,SOI_Districts,2023-12-11,false, +IN-PIN,803101,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803107,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803108,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803109,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803110,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803111,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803113,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803114,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803115,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803116,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803117,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803118,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803119,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803120,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803201,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803202,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803203,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803211,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803212,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803213,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803214,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803215,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803216,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,803221,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803301,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803302,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803303,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803306,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,803307,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,804401,PostalCode,Arwal,LGD,611,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +IN-PIN,804402,PostalCode,Arwal,LGD,611,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +IN-PIN,804403,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,804404,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804405,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,804406,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804407,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804408,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804417,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804418,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804419,PostalCode,Arwal,LGD,611,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +IN-PIN,804421,PostalCode,Arwal,LGD,611,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +IN-PIN,804422,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804423,PostalCode,Arwal,LGD,611,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +IN-PIN,804425,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804429,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804432,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,804451,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,804452,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,804453,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,804454,PostalCode,Jehanabad,LGD,199,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.155070,85.016832,inherited:District,84.829845,24.986716,85.211477,25.319246,SOI_Districts,2023-12-11,false, +IN-PIN,805101,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805102,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805103,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805104,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805105,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,805106,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805107,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805108,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805109,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805110,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805111,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805112,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805113,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805114,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805121,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805122,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805123,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805124,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805125,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805126,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805127,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805128,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,805129,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,805130,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805131,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,805132,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,805141,PostalCode,Nawada,LGD,210,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.811001,85.589668,inherited:District,85.266660,24.521263,86.055105,25.113286,SOI_Districts,2023-12-11,false, +IN-PIN,811101,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,811102,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,811103,PostalCode,Sheikhpura,LGD,219,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false, +IN-PIN,811104,PostalCode,Nalanda,LGD,209,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.219052,85.450164,inherited:District,85.152931,24.960787,85.926768,25.462127,SOI_Districts,2023-12-11,false, +IN-PIN,811105,PostalCode,Sheikhpura,LGD,219,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.123650,85.838344,inherited:District,85.602112,24.976406,86.018251,25.273961,SOI_Districts,2023-12-11,false, +IN-PIN,811106,PostalCode,Lakhisarai,LGD,204,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +IN-PIN,811107,PostalCode,Lakhisarai,LGD,204,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +IN-PIN,811112,PostalCode,Lakhisarai,LGD,204,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +IN-PIN,811201,PostalCode,Munger,LGD,207,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +IN-PIN,811202,PostalCode,Munger,LGD,207,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +IN-PIN,811211,PostalCode,Munger,LGD,207,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +IN-PIN,811212,PostalCode,Munger,LGD,207,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +IN-PIN,811213,PostalCode,Munger,LGD,207,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +IN-PIN,811214,PostalCode,Munger,LGD,207,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +IN-PIN,811301,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811302,PostalCode,Lakhisarai,LGD,204,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +IN-PIN,811303,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811304,PostalCode,Lakhisarai,LGD,204,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +IN-PIN,811305,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811307,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811308,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811309,PostalCode,Lakhisarai,LGD,204,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +IN-PIN,811311,PostalCode,Lakhisarai,LGD,204,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.161234,86.136725,inherited:District,85.901011,24.968971,86.390863,25.339457,SOI_Districts,2023-12-11,false, +IN-PIN,811312,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811313,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811314,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811315,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811316,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,811317,PostalCode,Jamui,LGD,198,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.783624,86.293785,inherited:District,85.821334,24.367816,86.619076,25.143839,SOI_Districts,2023-12-11,false, +IN-PIN,812001,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,812002,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,812003,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,812004,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,812005,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,812006,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,812007,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,813101,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813102,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813103,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813104,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813105,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813106,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813107,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813108,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813109,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813110,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813201,PostalCode,Munger,LGD,207,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +IN-PIN,813202,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813203,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,813204,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,813205,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813206,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,813207,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813209,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,813210,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813211,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813212,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,813213,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,813214,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,813221,PostalCode,Munger,LGD,207,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.210030,86.526055,inherited:District,86.260721,24.944933,86.737642,25.495732,SOI_Districts,2023-12-11,false, +IN-PIN,813222,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,814101,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814103,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814110,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814111,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814112,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814114,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814115,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814116,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814119,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814120,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814131,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,814133,PostalCode,Godda,LGD,330,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +IN-PIN,814141,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814145,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814146,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814147,PostalCode,Godda,LGD,330,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +IN-PIN,814148,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814149,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814150,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814151,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814152,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814153,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814155,PostalCode,Godda,LGD,330,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +IN-PIN,814156,PostalCode,Godda,LGD,330,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +IN-PIN,814157,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,814158,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,814160,PostalCode,Godda,LGD,330,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.858838,87.308684,inherited:District,87.046151,24.500575,87.544899,25.227872,SOI_Districts,2023-12-11,false, +IN-PIN,814166,PostalCode,Jamtara,LGD,333,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false, +IN-PIN,815301,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815302,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815311,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815312,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815313,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815314,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815315,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815316,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815317,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815318,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,815351,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,815353,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,815354,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,815355,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,815357,PostalCode,Deoghar,LGD,324,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.328324,86.740210,inherited:District,86.455374,24.040861,87.626548,24.784591,SOI_Districts,2023-12-11,false, +IN-PIN,815359,PostalCode,Jamtara,LGD,333,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.975652,86.907467,inherited:District,86.467404,23.796641,87.295033,24.165426,SOI_Districts,2023-12-11,false, +IN-PIN,816101,PostalCode,Sahebganj,LGD,340,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +IN-PIN,816104,PostalCode,Pakur,LGD,337,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +IN-PIN,816106,PostalCode,Pakur,LGD,337,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +IN-PIN,816107,PostalCode,Pakur,LGD,337,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +IN-PIN,816108,PostalCode,Sahebganj,LGD,340,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +IN-PIN,816109,PostalCode,Sahebganj,LGD,340,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +IN-PIN,816110,PostalCode,Sahebganj,LGD,340,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +IN-PIN,816117,PostalCode,Pakur,LGD,337,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.564154,87.662615,inherited:District,87.387417,24.236120,87.917337,24.829415,SOI_Districts,2023-12-11,false, +IN-PIN,816118,PostalCode,Dumka,LGD,326,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.319558,87.266417,inherited:District,86.889043,23.981252,87.702902,24.650551,SOI_Districts,2023-12-11,false, +IN-PIN,816120,PostalCode,Sahebganj,LGD,340,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +IN-PIN,816129,PostalCode,Sahebganj,LGD,340,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.010776,87.678156,inherited:District,87.454517,24.714698,87.962825,25.349181,SOI_Districts,2023-12-11,false, +IN-PIN,821015,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821101,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821102,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821103,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821104,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821105,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821106,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821107,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821108,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821109,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821110,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821111,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821112,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821113,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821114,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821115,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821301,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821304,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821305,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821306,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821307,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821308,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821309,PostalCode,Kaimur (Bhabua),LGD,200,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.991849,83.605603,inherited:District,83.320216,24.539996,83.899569,25.410632,SOI_Districts,2023-12-11,false, +IN-PIN,821310,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821311,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,821312,PostalCode,Rohtas,LGD,215,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.979822,84.025967,inherited:District,83.497122,24.503453,84.463310,25.375240,SOI_Districts,2023-12-11,false, +IN-PIN,822102,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,822110,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822111,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822112,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822113,PostalCode,Palamu,LGD,338,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +IN-PIN,822114,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822115,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822116,PostalCode,Palamu,LGD,338,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +IN-PIN,822117,PostalCode,Palamu,LGD,338,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +IN-PIN,822118,PostalCode,Palamu,LGD,338,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +IN-PIN,822119,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,822120,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822121,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822122,PostalCode,Palamu,LGD,338,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +IN-PIN,822123,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,822124,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822125,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822126,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,822128,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822129,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822131,PostalCode,Palamu,LGD,338,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +IN-PIN,822132,PostalCode,Palamu,LGD,338,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.199754,84.168881,inherited:District,83.813319,23.792587,84.590705,24.642892,SOI_Districts,2023-12-11,false, +IN-PIN,822133,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,822134,PostalCode,Garhwa,LGD,328,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.103698,83.698491,inherited:District,83.329346,23.568974,84.069883,24.536726,SOI_Districts,2023-12-11,false, +IN-PIN,823001,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,823002,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,823003,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,823311,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824101,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824103,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824111,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824112,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824113,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824114,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824115,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824118,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824120,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824121,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824122,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824123,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824124,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824125,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824126,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824127,PostalCode,Arwal,LGD,611,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.163235,84.677455,inherited:District,84.445199,25.047622,84.865010,25.314981,SOI_Districts,2023-12-11,false, +IN-PIN,824129,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824143,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824201,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824202,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824203,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824205,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824206,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824207,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824208,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824209,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824211,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824217,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824219,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824220,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824221,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824231,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824232,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824233,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824236,PostalCode,Gaya,LGD,196,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.696793,84.934254,inherited:District,84.291501,24.286006,85.397512,25.073009,SOI_Districts,2023-12-11,false, +IN-PIN,824301,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824302,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824303,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,824304,PostalCode,Aurangabad,LGD,189,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.790895,84.408740,inherited:District,84.007791,24.476708,84.747398,25.128999,SOI_Districts,2023-12-11,false, +IN-PIN,825101,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,825102,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,825103,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,825106,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825108,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825109,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825132,PostalCode,Koderma,LGD,334,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +IN-PIN,825167,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,825301,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825302,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825303,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825311,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825312,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,825313,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825314,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,825315,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825316,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,825318,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825319,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825320,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825321,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,825322,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825323,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825324,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825325,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,825326,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,825329,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825330,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825336,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825401,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,825402,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825403,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,825404,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,825405,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825406,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825407,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825408,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,825409,PostalCode,Koderma,LGD,334,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +IN-PIN,825410,PostalCode,Koderma,LGD,334,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +IN-PIN,825411,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825412,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825413,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,825414,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,825415,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,825418,PostalCode,Giridih,LGD,329,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.293575,86.110998,inherited:District,85.675411,23.883561,86.572042,24.779693,SOI_Districts,2023-12-11,false, +IN-PIN,825421,PostalCode,Koderma,LGD,334,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.500046,85.667996,inherited:District,85.163938,24.263031,85.903609,24.821061,SOI_Districts,2023-12-11,false, +IN-PIN,826001,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,826004,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,826006,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,827010,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,827013,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,827014,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,827302,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,828101,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828103,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828104,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828105,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828109,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828113,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828114,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828116,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828121,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828125,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828128,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828129,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828134,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,828142,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828201,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828202,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828203,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828204,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828205,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828206,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828207,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828303,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,828304,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828305,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828306,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828307,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828401,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828402,PostalCode,Dhanbad,LGD,325,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.826760,86.472253,inherited:District,86.111006,23.630179,86.828366,24.059433,SOI_Districts,2023-12-11,false, +IN-PIN,828403,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,828404,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829101,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,829102,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829103,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829104,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829105,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829106,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,829107,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829108,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829109,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,829110,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829111,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829112,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829113,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829114,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829116,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829117,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829118,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829119,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829121,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829122,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829123,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829124,PostalCode,Hazaribagh,LGD,332,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.062077,85.425876,inherited:District,85.021489,23.652381,85.932790,24.523787,SOI_Districts,2023-12-11,false, +IN-PIN,829125,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829126,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829127,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829128,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829132,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829133,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829134,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829135,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829143,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829144,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829149,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,829150,PostalCode,Ramgarh,LGD,607,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.634171,85.564362,inherited:District,85.203323,23.422110,85.888020,23.962176,SOI_Districts,2023-12-11,false, +IN-PIN,829201,PostalCode,Chatra,LGD,323,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.164478,84.891481,inherited:District,84.448722,23.663016,85.381634,24.530744,SOI_Districts,2023-12-11,false, +IN-PIN,829202,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,829203,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,829204,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,829205,PostalCode,Ranchi,LGD,339,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +IN-PIN,829206,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,829207,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,829208,PostalCode,Ranchi,LGD,339,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +IN-PIN,829209,PostalCode,Ranchi,LGD,339,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +IN-PIN,829210,PostalCode,Ranchi,LGD,339,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +IN-PIN,829301,PostalCode,Bokaro,LGD,322,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.694742,85.996538,inherited:District,85.583712,23.410817,86.488429,23.986704,SOI_Districts,2023-12-11,false, +IN-PIN,831001,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,831002,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,831004,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,831013,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,832101,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,832104,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,832105,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,832108,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,832112,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,832113,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,832301,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,832302,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,832303,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,832304,PostalCode,East Singhbum,LGD,327,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.582489,86.451427,inherited:District,86.065492,22.211435,86.889330,23.015998,SOI_Districts,2023-12-11,false, +IN-PIN,832401,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,832402,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,832403,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,832404,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,833101,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,833102,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833103,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833104,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,833105,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833201,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833203,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833204,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833214,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833215,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833216,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,833217,PostalCode,West Singhbhum,LGD,343,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.420670,85.518106,inherited:District,84.983394,21.970129,86.047344,22.886411,SOI_Districts,2023-12-11,false, +IN-PIN,833219,PostalCode,Saraikela Kharsawan,LGD,341,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.847376,85.950299,inherited:District,85.513240,22.485145,86.248243,23.161050,SOI_Districts,2023-12-11,false, +IN-PIN,834001,PostalCode,Ranchi,LGD,339,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.328674,85.375279,inherited:District,84.868588,22.882968,85.902793,23.717128,SOI_Districts,2023-12-11,false, +IN-PIN,835201,PostalCode,Simdega,LGD,342,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +IN-PIN,835206,PostalCode,Gumla,LGD,331,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +IN-PIN,835207,PostalCode,Gumla,LGD,331,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +IN-PIN,835210,PostalCode,Khunti,LGD,606,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.994324,85.262599,inherited:District,84.940292,22.573347,85.655769,23.285114,SOI_Districts,2023-12-11,false, +IN-PIN,835211,PostalCode,Simdega,LGD,342,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +IN-PIN,835212,PostalCode,Simdega,LGD,342,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +IN-PIN,835213,PostalCode,Lohardaga,LGD,336,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +IN-PIN,835218,PostalCode,Latehar,LGD,335,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.716982,84.444799,inherited:District,83.967002,23.325338,84.967575,24.048652,SOI_Districts,2023-12-11,false, +IN-PIN,835220,PostalCode,Gumla,LGD,331,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +IN-PIN,835223,PostalCode,Simdega,LGD,342,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +IN-PIN,835226,PostalCode,Simdega,LGD,342,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +IN-PIN,835228,PostalCode,Simdega,LGD,342,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,22.581800,84.564239,inherited:District,84.002846,22.341025,85.079945,22.837553,SOI_Districts,2023-12-11,false, +IN-PIN,835232,PostalCode,Gumla,LGD,331,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +IN-PIN,835302,PostalCode,Lohardaga,LGD,336,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.475720,84.671773,inherited:District,84.386786,23.278959,84.946682,23.675260,SOI_Districts,2023-12-11,false, +IN-PIN,835325,PostalCode,Gumla,LGD,331,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +IN-PIN,835824,PostalCode,Gumla,LGD,331,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,23.103200,84.532365,inherited:District,84.031898,22.709318,85.016329,23.608926,SOI_Districts,2023-12-11,false, +IN-PIN,841101,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,841201,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841202,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841203,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841204,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841205,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841206,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841207,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841208,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841209,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841210,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841211,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841212,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841213,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841214,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841215,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841216,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841217,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841218,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841219,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841220,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841221,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841222,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841224,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841225,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841226,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841227,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841228,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841231,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841232,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841233,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841234,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841235,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841236,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841237,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841238,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841239,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841240,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841241,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841243,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841245,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841286,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841301,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841302,PostalCode,Patna,LGD,212,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.455947,85.223570,inherited:District,84.686929,25.203260,86.068927,25.732875,SOI_Districts,2023-12-11,false, +IN-PIN,841305,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841311,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841312,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841313,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841316,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841401,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841402,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841403,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841404,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841405,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841406,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841408,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841409,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841410,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841411,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841412,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841414,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841415,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841417,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841418,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841419,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841421,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841422,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841423,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841424,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841425,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841426,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841427,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841428,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841434,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841435,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841436,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841437,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841438,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841440,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841441,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841442,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841443,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841446,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841447,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841460,PostalCode,Saran,LGD,218,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.905685,84.823193,inherited:District,84.404785,25.622636,85.197484,26.220675,SOI_Districts,2023-12-11,false, +IN-PIN,841501,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841502,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841503,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841504,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,841508,PostalCode,Gopalganj,LGD,197,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.443845,84.373836,inherited:District,83.906065,26.203400,84.906866,26.639142,SOI_Districts,2023-12-11,false, +IN-PIN,841509,PostalCode,Siwan,LGD,222,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.161266,84.386962,inherited:District,84.008007,25.887734,84.779282,26.374619,SOI_Districts,2023-12-11,false, +IN-PIN,842001,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,842002,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,842003,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,842004,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,842006,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843101,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843102,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843103,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843104,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843105,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843106,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843107,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843108,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843109,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843111,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843112,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843113,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843114,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,843115,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843116,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843117,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843118,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843119,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843120,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843121,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843122,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843123,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843124,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843125,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843126,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843127,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843128,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843129,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843131,PostalCode,Sheohar,LGD,220,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +IN-PIN,843132,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843301,PostalCode,Sheohar,LGD,220,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +IN-PIN,843302,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843311,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843312,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843313,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843314,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843315,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843316,PostalCode,Sheohar,LGD,220,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +IN-PIN,843317,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843318,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843319,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843320,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843321,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843322,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843323,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843324,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843325,PostalCode,Sheohar,LGD,220,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +IN-PIN,843326,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843327,PostalCode,Sheohar,LGD,220,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +IN-PIN,843328,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,843329,PostalCode,Sheohar,LGD,220,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +IN-PIN,843330,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843331,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843332,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843333,PostalCode,Sitamarhi,LGD,221,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.585083,85.552608,inherited:District,85.236874,26.269249,85.825545,26.873781,SOI_Districts,2023-12-11,false, +IN-PIN,843334,PostalCode,Sheohar,LGD,220,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +IN-PIN,843335,PostalCode,Sheohar,LGD,220,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.497836,85.301880,inherited:District,85.178435,26.325040,85.402827,26.661569,SOI_Districts,2023-12-11,false, +IN-PIN,843360,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,844101,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844102,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844111,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844112,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,844113,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844114,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844118,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,844120,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,844121,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844122,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844124,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844127,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,844128,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844502,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844503,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844504,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844505,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844506,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844508,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,844509,PostalCode,Vaishali,LGD,224,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.763071,85.368195,inherited:District,85.066378,25.483413,85.645997,26.015299,SOI_Districts,2023-12-11,false, +IN-PIN,845101,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845103,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845104,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845105,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845106,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845107,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845301,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845302,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845303,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845304,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845305,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845306,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845307,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845401,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845402,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845411,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845412,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845413,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845415,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845416,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845417,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845418,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845419,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845420,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845422,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845424,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845425,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845426,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845428,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845430,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845432,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845433,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845434,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845435,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845436,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845437,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845438,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845439,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845441,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845449,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845450,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845451,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845452,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845453,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845454,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845455,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,845456,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845457,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845458,PostalCode,Purbi Champaran,LGD,213,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.618344,84.921996,inherited:District,84.484802,26.256760,85.295688,27.021114,SOI_Districts,2023-12-11,false, +IN-PIN,845459,PostalCode,Pashchim Champaran,LGD,211,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,27.079822,84.338905,inherited:District,83.832424,26.582184,84.760688,27.521777,SOI_Districts,2023-12-11,false, +IN-PIN,846001,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,846002,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,846003,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,846004,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,846005,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,846006,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,846007,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,846009,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,846010,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847101,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847102,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847103,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847104,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847105,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847106,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847107,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847108,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847109,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847115,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847121,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847122,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847123,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847201,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847202,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847203,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847204,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847211,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847212,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847213,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847214,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847215,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847222,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847223,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847224,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847225,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847226,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847227,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847228,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847229,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847230,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847231,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847232,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847233,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847234,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847235,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847236,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847238,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847239,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847240,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847301,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847302,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847303,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847304,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847305,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847306,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847307,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847308,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847337,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847401,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847402,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847403,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847404,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847405,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847407,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847408,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847409,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847410,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847411,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847421,PostalCode,Madhubani,LGD,206,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.402234,86.221843,inherited:District,85.751783,26.033653,86.725116,26.666787,SOI_Districts,2023-12-11,false, +IN-PIN,847422,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847423,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847424,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847427,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847428,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847429,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,847451,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,847452,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,848101,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848102,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848103,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848104,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848113,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848114,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848115,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848117,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848121,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,848122,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848125,PostalCode,Muzaffarpur,LGD,208,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.152133,85.328539,inherited:District,84.871819,25.903550,85.754285,26.393257,SOI_Districts,2023-12-11,false, +IN-PIN,848127,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848129,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848130,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848131,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848132,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848133,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848134,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848160,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848201,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,848202,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,848203,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,848204,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,848205,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848206,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848207,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848208,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848209,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848210,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848211,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848213,PostalCode,Darbhanga,LGD,195,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.084387,86.054245,inherited:District,85.676677,25.719561,86.416121,26.446434,SOI_Districts,2023-12-11,false, +IN-PIN,848216,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848236,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848301,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848302,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848501,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848502,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848503,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848504,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848505,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,848506,PostalCode,Samastipur,LGD,217,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.772996,85.865723,inherited:District,85.527548,25.460212,86.392248,26.089408,SOI_Districts,2023-12-11,false, +IN-PIN,851101,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851111,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851112,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851113,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851116,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851117,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851118,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851120,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851121,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851126,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851127,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851128,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851129,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851130,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851131,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851132,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851133,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851134,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851135,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851201,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,851202,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,851203,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,851204,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,851205,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,851206,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,851210,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851211,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851214,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,851216,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,851217,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,851218,PostalCode,Begusarai,LGD,191,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.496664,86.129714,inherited:District,85.733759,25.249492,86.514401,25.775594,SOI_Districts,2023-12-11,false, +IN-PIN,852101,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852105,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852106,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852107,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852108,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852109,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852110,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852111,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852112,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852113,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852114,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852115,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852116,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852121,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852122,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852123,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852124,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852125,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852126,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852127,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852128,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852129,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852130,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852131,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852132,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852133,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852134,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852137,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852138,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852139,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852161,PostalCode,Khagaria,LGD,202,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.511006,86.601532,inherited:District,86.279112,25.254006,86.856879,25.732024,SOI_Districts,2023-12-11,false, +IN-PIN,852202,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852212,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852213,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852214,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852215,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852216,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852217,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,852218,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,852219,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852220,PostalCode,Madhepura,LGD,205,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.822712,86.898913,inherited:District,86.615619,25.443276,87.126644,26.117846,SOI_Districts,2023-12-11,false, +IN-PIN,852221,PostalCode,Saharsa,LGD,216,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.814227,86.590738,inherited:District,86.313339,25.590404,86.874115,26.075393,SOI_Districts,2023-12-11,false, +IN-PIN,853201,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,853202,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,853203,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,853204,PostalCode,Banka,LGD,190,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,24.854081,86.837107,inherited:District,86.486857,24.542206,87.175455,25.121333,SOI_Districts,2023-12-11,false, +IN-PIN,853205,PostalCode,Bhagalpur,LGD,192,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.269569,87.082847,inherited:District,86.638445,25.057017,87.551884,25.515937,SOI_Districts,2023-12-11,false, +IN-PIN,854101,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854102,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854103,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854104,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854105,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854106,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854107,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854108,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854110,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854112,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854113,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854114,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854115,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854116,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854117,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854201,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854202,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854203,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854204,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854205,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854301,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854304,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854305,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854306,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854311,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854312,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854315,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854316,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854317,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,854318,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854325,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854326,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854327,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854329,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854330,PostalCode,Purnia,LGD,214,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.815393,87.405089,inherited:District,86.989373,25.433616,87.873019,26.118106,SOI_Districts,2023-12-11,false, +IN-PIN,854331,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854332,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854333,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854334,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854335,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854336,PostalCode,Araria,LGD,188,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.198668,87.363318,inherited:District,87.038146,25.942697,87.706195,26.587234,SOI_Districts,2023-12-11,false, +IN-PIN,854338,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,854339,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,854340,PostalCode,Supaul,LGD,223,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.245094,86.808186,inherited:District,86.404804,25.990798,87.120252,26.562815,SOI_Districts,2023-12-11,false, +IN-PIN,855101,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,855102,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,855105,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,855106,PostalCode,Kishanganj,LGD,203,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +IN-PIN,855107,PostalCode,Kishanganj,LGD,203,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +IN-PIN,855108,PostalCode,Kishanganj,LGD,203,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +IN-PIN,855113,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,855114,PostalCode,Katihar,LGD,201,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,25.548653,87.640579,inherited:District,87.200333,25.235289,88.076535,25.881902,SOI_Districts,2023-12-11,false, +IN-PIN,855115,PostalCode,Kishanganj,LGD,203,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +IN-PIN,855116,PostalCode,Kishanganj,LGD,203,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, +IN-PIN,855117,PostalCode,Kishanganj,LGD,203,District,,03Sep2026,https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z,26.296361,87.935551,inherited:District,87.611026,26.035395,88.293796,26.561240,SOI_Districts,2023-12-11,false, diff --git a/tools/area-lookups/data/areas/lgd-2026-09-02/areas.geojsonl b/tools/area-lookups/data/areas/lgd-2026-09-03/areas.geojsonl similarity index 79% rename from tools/area-lookups/data/areas/lgd-2026-09-02/areas.geojsonl rename to tools/area-lookups/data/areas/lgd-2026-09-03/areas.geojsonl index 3add820e..0e1a6b30 100644 --- a/tools/area-lookups/data/areas/lgd-2026-09-02/areas.geojsonl +++ b/tools/area-lookups/data/areas/lgd-2026-09-03/areas.geojsonl @@ -762,3 +762,46 @@ {"type":"Feature","properties":{"code_scheme":"LGD","area_code":"97","area_level":"District","area_name":"Dausa","geometry_source":"SOI_Districts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.68996,27.11716],[76.68817,27.1176],[76.68671,27.11793],[76.68614,27.11448],[76.68743,27.11422],[76.68771,27.11513],[76.6889,27.1151],[76.68996,27.11716]]],[[[76.69423,27.12334],[76.69061,27.12458],[76.69057,27.12453],[76.69019,27.12332],[76.6939,27.12215],[76.69423,27.12334]]],[[[76.69698,27.13129],[76.69492,27.13226],[76.6936,27.13273],[76.69172,27.13272],[76.69147,27.1312],[76.69071,27.13114],[76.68859,27.13149],[76.68847,27.13091],[76.68952,27.13069],[76.68942,27.12987],[76.69167,27.12885],[76.6929,27.12857],[76.6939,27.12857],[76.6954,27.12794],[76.69653,27.12732],[76.69747,27.12855],[76.69927,27.12946],[76.69848,27.13015],[76.69698,27.13129]]],[[[76.89471,27.23234],[76.88771,27.221],[76.86817,27.23004],[76.85847,27.20932],[76.85641,27.20774],[76.84628,27.21047],[76.8458,27.20648],[76.84252,27.20737],[76.84094,27.20291],[76.8437,27.20086],[76.84355,27.19324],[76.85066,27.19087],[76.84778,27.17696],[76.84083,27.16262],[76.82722,27.16297],[76.82863,27.15201],[76.82775,27.14113],[76.82615,27.13605],[76.82373,27.1337],[76.8291,27.1178],[76.83957,27.11896],[76.83652,27.11138],[76.83277,27.08401],[76.82951,27.07515],[76.8221,27.07494],[76.82103,27.07692],[76.8173,27.07692],[76.81317,27.08059],[76.81125,27.08041],[76.81095,27.08976],[76.80828,27.09155],[76.80182,27.10236],[76.8073,27.11083],[76.8116,27.12316],[76.80591,27.12607],[76.79985,27.12609],[76.79865,27.13148],[76.79387,27.13875],[76.78863,27.12834],[76.78914,27.12465],[76.78499,27.11246],[76.76498,27.11409],[76.76413,27.10985],[76.75951,27.10692],[76.73148,27.10951],[76.72122,27.10659],[76.70052,27.11448],[76.69578,27.11443],[76.69458,27.11306],[76.68611,27.11393],[76.68572,27.11256],[76.68203,27.11405],[76.67952,27.11226],[76.67692,27.11271],[76.67538,27.11065],[76.67216,27.11067],[76.66941,27.09834],[76.66596,27.09207],[76.65318,27.09683],[76.65165,27.0949],[76.63775,27.09202],[76.63162,27.09494],[76.62938,27.099],[76.63278,27.10304],[76.62588,27.10765],[76.6223,27.10763],[76.62679,27.11206],[76.62604,27.11449],[76.62853,27.11825],[76.62819,27.1233],[76.62248,27.12426],[76.61791,27.12716],[76.61994,27.12857],[76.61948,27.13124],[76.62309,27.13686],[76.62242,27.13967],[76.64679,27.16389],[76.63944,27.16667],[76.63044,27.16675],[76.6296,27.16944],[76.61831,27.17087],[76.60813,27.17685],[76.60596,27.17442],[76.59914,27.17596],[76.59396,27.17327],[76.58493,27.17653],[76.58151,27.17525],[76.58144,27.17317],[76.57832,27.17322],[76.57822,27.17529],[76.56834,27.17555],[76.56935,27.16801],[76.56203,27.16819],[76.56209,27.16977],[76.55419,27.17191],[76.55145,27.16439],[76.55283,27.15964],[76.55121,27.15655],[76.54882,27.15675],[76.54749,27.15483],[76.54527,27.14811],[76.54804,27.14491],[76.5484,27.14649],[76.54941,27.14596],[76.54961,27.14241],[76.55354,27.13841],[76.54864,27.13283],[76.54953,27.12948],[76.54814,27.12467],[76.5394,27.13063],[76.5378,27.12675],[76.53504,27.12801],[76.52683,27.12679],[76.52681,27.12497],[76.5215,27.12487],[76.51701,27.11714],[76.51229,27.11413],[76.50324,27.11657],[76.48834,27.11324],[76.48067,27.10901],[76.47449,27.09723],[76.47051,27.09572],[76.46855,27.08907],[76.46425,27.08713],[76.46401,27.08265],[76.45557,27.07539],[76.44797,27.07743],[76.44054,27.08433],[76.43855,27.08286],[76.43313,27.08915],[76.42746,27.10264],[76.42782,27.10957],[76.42565,27.11751],[76.42613,27.128],[76.41705,27.12949],[76.41098,27.12661],[76.4039,27.12646],[76.39745,27.12331],[76.39956,27.11858],[76.39692,27.11255],[76.39742,27.10279],[76.39513,27.10253],[76.39077,27.09224],[76.39114,27.08583],[76.39412,27.08544],[76.3926,27.08282],[76.38888,27.0822],[76.39171,27.08092],[76.39198,27.07839],[76.38278,27.08109],[76.38167,27.07619],[76.37567,27.07616],[76.36784,27.06782],[76.35964,27.06223],[76.35772,27.0571],[76.35382,27.0564],[76.35251,27.05458],[76.34185,27.0598],[76.32969,27.05961],[76.32765,27.05543],[76.31702,27.06045],[76.28098,27.06438],[76.27873,27.05199],[76.28078,27.0511],[76.27843,27.04341],[76.26781,27.03443],[76.26653,27.03105],[76.26057,27.03175],[76.25614,27.02924],[76.25975,27.0232],[76.25854,27.02184],[76.25619,27.02261],[76.25474,27.02012],[76.24648,27.02133],[76.24509,27.01915],[76.24223,27.01973],[76.2389,27.01544],[76.2368,27.00739],[76.23187,27.00766],[76.22467,26.98105],[76.22494,26.96459],[76.22289,26.95412],[76.22718,26.95382],[76.22675,26.95209],[76.23331,26.95034],[76.24405,26.94988],[76.24742,26.94865],[76.24716,26.94697],[76.24869,26.94647],[76.24598,26.94108],[76.23803,26.9419],[76.23685,26.9436],[76.23546,26.94266],[76.23384,26.9448],[76.22954,26.93412],[76.23414,26.93285],[76.23515,26.93529],[76.23546,26.9334],[76.2392,26.93253],[76.23768,26.92531],[76.2315,26.92138],[76.22817,26.91556],[76.22034,26.91871],[76.21974,26.91602],[76.22132,26.91573],[76.21979,26.90887],[76.21771,26.90854],[76.2248,26.9056],[76.22304,26.89995],[76.22479,26.89973],[76.22424,26.89741],[76.23708,26.894],[76.23513,26.88088],[76.23785,26.88017],[76.23866,26.87726],[76.24644,26.87566],[76.24676,26.87396],[76.25013,26.87255],[76.26157,26.87253],[76.26334,26.86641],[76.25352,26.86368],[76.2485,26.86571],[76.24748,26.86419],[76.24928,26.86372],[76.24876,26.86073],[76.24509,26.84933],[76.24074,26.84448],[76.24758,26.83939],[76.24839,26.83481],[76.26125,26.83398],[76.26128,26.83002],[76.25804,26.82338],[76.25244,26.82005],[76.24881,26.81225],[76.2554,26.8035],[76.25062,26.80031],[76.24892,26.79708],[76.24209,26.80037],[76.24019,26.79832],[76.23171,26.80204],[76.22871,26.805],[76.22943,26.80937],[76.2268,26.80939],[76.22599,26.80642],[76.2236,26.80603],[76.22245,26.80378],[76.22105,26.80429],[76.2214,26.80198],[76.21924,26.80344],[76.22,26.80011],[76.21354,26.80144],[76.20832,26.79951],[76.20819,26.80082],[76.20447,26.80102],[76.2048,26.79553],[76.2078,26.79544],[76.20659,26.79369],[76.20496,26.79399],[76.20528,26.79098],[76.19852,26.78937],[76.19936,26.78806],[76.1971,26.78534],[76.198,26.78372],[76.19639,26.78297],[76.19322,26.7852],[76.19275,26.78411],[76.19477,26.7833],[76.19438,26.78151],[76.19714,26.77854],[76.19472,26.76887],[76.19351,26.76765],[76.18719,26.769],[76.18648,26.76719],[76.18071,26.76575],[76.18277,26.76342],[76.18573,26.76383],[76.18516,26.75813],[76.18233,26.75914],[76.18204,26.75731],[76.17938,26.75737],[76.18022,26.75174],[76.18437,26.75387],[76.18354,26.74994],[76.18839,26.74874],[76.18866,26.75161],[76.19327,26.75264],[76.18791,26.74144],[76.19844,26.73719],[76.19639,26.73287],[76.19034,26.736],[76.18639,26.73558],[76.18251,26.73207],[76.18359,26.7297],[76.18226,26.72995],[76.18162,26.72804],[76.18338,26.72769],[76.18332,26.72557],[76.18985,26.72679],[76.19098,26.72477],[76.1937,26.72565],[76.19638,26.72396],[76.20102,26.72735],[76.21135,26.72355],[76.21066,26.72094],[76.20927,26.72256],[76.20625,26.72104],[76.20779,26.71978],[76.2038,26.71363],[76.19599,26.71391],[76.19454,26.70993],[76.19044,26.71082],[76.18666,26.70126],[76.18717,26.69918],[76.18345,26.69607],[76.17981,26.68694],[76.17124,26.68981],[76.17494,26.70637],[76.17072,26.70839],[76.17052,26.71031],[76.1762,26.71427],[76.16866,26.71496],[76.16819,26.71742],[76.16486,26.71754],[76.15153,26.7086],[76.15061,26.69872],[76.14969,26.69687],[76.14662,26.69842],[76.14476,26.6939],[76.15032,26.69298],[76.1564,26.6815],[76.15237,26.67632],[76.15577,26.67018],[76.15304,26.66737],[76.1583,26.66375],[76.15855,26.66192],[76.15411,26.65892],[76.16435,26.64528],[76.16318,26.64233],[76.1645,26.63912],[76.16784,26.63768],[76.1735,26.638],[76.17424,26.63538],[76.17938,26.63174],[76.18088,26.62523],[76.17582,26.61899],[76.17727,26.61589],[76.18352,26.61209],[76.17661,26.60218],[76.17519,26.60175],[76.17098,26.60535],[76.16764,26.60227],[76.16576,26.58683],[76.16306,26.57941],[76.15659,26.57455],[76.156,26.571],[76.16199,26.56689],[76.16053,26.56418],[76.15683,26.56257],[76.15691,26.55801],[76.15338,26.54735],[76.15346,26.52896],[76.15508,26.52248],[76.1513,26.51866],[76.14951,26.51101],[76.15314,26.50317],[76.16857,26.49591],[76.17936,26.48298],[76.19248,26.48038],[76.2072,26.47487],[76.22437,26.46326],[76.23539,26.46397],[76.24288,26.46116],[76.24522,26.45895],[76.24274,26.45518],[76.2413,26.44781],[76.24865,26.44287],[76.25916,26.44481],[76.26831,26.44964],[76.27864,26.44797],[76.29176,26.45576],[76.29951,26.45389],[76.30591,26.45755],[76.31617,26.45847],[76.32348,26.45617],[76.33413,26.44692],[76.3399,26.43565],[76.34172,26.42524],[76.33981,26.41345],[76.34141,26.40974],[76.36576,26.40182],[76.37828,26.39265],[76.39472,26.38723],[76.40357,26.37881],[76.40604,26.38329],[76.40484,26.38442],[76.40649,26.38633],[76.4061,26.38952],[76.40935,26.38827],[76.41047,26.39014],[76.40917,26.39311],[76.41038,26.39499],[76.4121,26.39475],[76.4134,26.39798],[76.41253,26.40164],[76.41432,26.40927],[76.41188,26.41608],[76.4215,26.42029],[76.42445,26.42468],[76.42673,26.43501],[76.43254,26.43495],[76.43932,26.44227],[76.44229,26.44336],[76.44853,26.47172],[76.45433,26.47834],[76.46513,26.47587],[76.46727,26.4849],[76.47054,26.49065],[76.47437,26.49033],[76.47716,26.49309],[76.47899,26.5],[76.47603,26.51735],[76.47095,26.51601],[76.46567,26.52083],[76.46192,26.52141],[76.45841,26.53455],[76.45906,26.54451],[76.44899,26.55252],[76.44829,26.55659],[76.44387,26.56],[76.43891,26.55654],[76.43727,26.54995],[76.43356,26.55017],[76.42329,26.54293],[76.41121,26.54488],[76.41585,26.55119],[76.40643,26.55573],[76.40707,26.5624],[76.40386,26.56583],[76.40513,26.57185],[76.41452,26.58686],[76.41415,26.58935],[76.41857,26.5998],[76.41922,26.6073],[76.42431,26.60995],[76.43526,26.62624],[76.44289,26.64003],[76.44438,26.64647],[76.45024,26.65122],[76.45524,26.66496],[76.46335,26.66923],[76.46365,26.6779],[76.45672,26.68338],[76.45346,26.68814],[76.45701,26.68923],[76.46642,26.7017],[76.47173,26.71463],[76.48025,26.72449],[76.47998,26.73256],[76.48142,26.73525],[76.4989,26.75021],[76.49885,26.75189],[76.51021,26.7636],[76.5368,26.78192],[76.54161,26.77852],[76.54243,26.77229],[76.55432,26.77774],[76.56968,26.77124],[76.57425,26.78044],[76.5747,26.78809],[76.59431,26.77844],[76.60238,26.77803],[76.60427,26.78044],[76.61348,26.78214],[76.61714,26.78846],[76.61565,26.79168],[76.62222,26.7925],[76.63,26.80155],[76.64253,26.80815],[76.67066,26.83437],[76.68476,26.8442],[76.71229,26.85872],[76.71467,26.86297],[76.75373,26.8768],[76.77252,26.89121],[76.77544,26.89421],[76.76813,26.90298],[76.76667,26.90786],[76.77268,26.91235],[76.78228,26.91592],[76.79323,26.93334],[76.79807,26.96415],[76.79606,26.97135],[76.79715,26.98442],[76.80075,26.98596],[76.81014,26.99697],[76.81507,26.99912],[76.81661,26.99762],[76.82821,26.9995],[76.83952,26.99526],[76.8594,26.99414],[76.88015,26.98313],[76.8822,26.97496],[76.90198,26.97163],[76.90215,26.96864],[76.9127,26.9606],[76.91756,26.95056],[76.92394,26.94665],[76.94169,26.93025],[76.95271,26.91518],[76.95356,26.90789],[76.9574,26.89926],[76.95637,26.89165],[76.9579,26.8876],[76.95259,26.87223],[76.95426,26.87005],[76.95366,26.86791],[76.96069,26.86243],[76.96549,26.86045],[76.97606,26.86014],[76.98616,26.85769],[76.9868,26.86108],[76.99944,26.87116],[77.01079,26.865],[77.04451,26.86837],[77.05992,26.86585],[77.07539,26.85834],[77.07197,26.86958],[77.06718,26.87257],[77.06699,26.8755],[77.06193,26.8807],[77.06348,26.88245],[77.06019,26.88655],[77.05928,26.89165],[77.06112,26.89775],[77.05861,26.90051],[77.06254,26.90142],[77.05958,26.90538],[77.06066,26.91057],[77.05936,26.91113],[77.0595,26.91438],[77.04793,26.91281],[77.04111,26.90843],[77.03937,26.91208],[77.03764,26.91255],[77.03693,26.9159],[77.029,26.92146],[77.02921,26.92416],[77.01707,26.92684],[77.01288,26.93212],[77.02464,26.94145],[77.02065,26.94663],[77.01757,26.9737],[77.01448,26.97804],[77.00636,26.97433],[77.00805,26.98691],[77.00592,27.00441],[76.99881,27.01541],[76.99526,27.01605],[76.98831,27.02082],[76.98656,27.02428],[76.97987,27.03016],[76.98456,27.03794],[77.00331,27.03666],[77.00328,27.0355],[77.01022,27.03389],[77.01044,27.03496],[77.01122,27.04291],[76.99379,27.04979],[76.9955,27.06092],[76.97569,27.06769],[76.97439,27.07014],[76.97031,27.07113],[76.96967,27.07672],[76.97141,27.08187],[76.98242,27.08424],[76.98731,27.08953],[76.98286,27.09399],[76.98353,27.09833],[76.97975,27.10162],[76.98113,27.10465],[76.98464,27.10644],[76.99015,27.10423],[76.99253,27.11117],[76.9782,27.11952],[76.97051,27.12741],[76.95988,27.12564],[76.96229,27.13572],[76.96093,27.14404],[76.94569,27.14682],[76.94377,27.13918],[76.9349,27.14058],[76.93116,27.13711],[76.92771,27.13661],[76.91563,27.14152],[76.91857,27.15123],[76.89517,27.16136],[76.89579,27.16865],[76.89421,27.17052],[76.89688,27.17517],[76.90878,27.17554],[76.91148,27.18093],[76.91086,27.18285],[76.90656,27.18372],[76.90698,27.18676],[76.90513,27.18799],[76.90526,27.19196],[76.90745,27.19484],[76.90498,27.19658],[76.90653,27.2011],[76.905,27.20307],[76.90536,27.21103],[76.89995,27.21361],[76.90439,27.21843],[76.89897,27.22194],[76.90211,27.2289],[76.89471,27.23234]]]]}} {"type":"Feature","properties":{"code_scheme":"LGD","area_code":"98","area_level":"District","area_name":"Dholpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[78.15178,26.94759],[78.14448,26.94988],[78.1328,26.94737],[78.12451,26.94928],[78.11856,26.94697],[78.11312,26.94263],[78.11177,26.93976],[78.11265,26.93666],[78.12203,26.93544],[78.12336,26.93216],[78.12108,26.93204],[78.12129,26.92191],[78.10517,26.92682],[78.10176,26.91783],[78.10158,26.91635],[78.1084,26.91219],[78.11265,26.90291],[78.11293,26.89901],[78.11066,26.89561],[78.10645,26.89713],[78.10434,26.90343],[78.10021,26.9049],[78.09438,26.9033],[78.09867,26.89659],[78.09604,26.89378],[78.07173,26.90637],[78.06695,26.91139],[78.0641,26.90652],[78.05952,26.90885],[78.05585,26.90691],[78.04881,26.91013],[78.04805,26.90747],[78.05126,26.9017],[78.05212,26.89421],[78.05019,26.87578],[78.05172,26.87072],[78.05597,26.86839],[78.04466,26.86998],[78.032,26.8518],[78.02647,26.84953],[78.02224,26.85268],[78.02096,26.85751],[78.03227,26.86516],[78.03528,26.86837],[78.03548,26.8708],[78.03119,26.87363],[78.02423,26.87257],[78.02577,26.8789],[78.02778,26.88044],[78.02722,26.88397],[78.02997,26.8841],[78.03019,26.88603],[78.0234,26.89099],[78.02132,26.90032],[78.01459,26.90291],[78.00963,26.90405],[78.00565,26.90207],[78.00224,26.9029],[77.99303,26.89249],[77.98873,26.89169],[77.98721,26.88935],[77.97645,26.89221],[77.97232,26.89607],[77.97341,26.89821],[77.97139,26.90032],[77.97345,26.90294],[77.97134,26.90587],[77.96958,26.90597],[77.95813,26.89683],[77.94841,26.89358],[77.943,26.89711],[77.93969,26.90678],[77.92577,26.90982],[77.91562,26.90739],[77.91302,26.90886],[77.91558,26.91419],[77.90636,26.91778],[77.90355,26.9146],[77.90686,26.91265],[77.90883,26.90638],[77.90672,26.89286],[77.9089,26.89062],[77.90432,26.88333],[77.89649,26.884],[77.89187,26.88707],[77.8938,26.88892],[77.89248,26.89016],[77.88452,26.89098],[77.88082,26.89945],[77.87756,26.90237],[77.86896,26.90164],[77.86771,26.90628],[77.85782,26.90626],[77.85024,26.91283],[77.84185,26.91257],[77.83638,26.91676],[77.83194,26.91427],[77.82383,26.91993],[77.8215,26.91777],[77.815,26.91975],[77.81021,26.92419],[77.7982,26.916],[77.79299,26.91705],[77.78647,26.92234],[77.78688,26.92386],[77.77949,26.92686],[77.78047,26.92985],[77.77475,26.93215],[77.7606,26.93262],[77.75896,26.93145],[77.75891,26.92648],[77.75318,26.91687],[77.74571,26.92102],[77.744,26.91876],[77.73779,26.92058],[77.73238,26.92015],[77.72492,26.91038],[77.71764,26.89726],[77.723,26.89514],[77.72698,26.89022],[77.7259,26.88876],[77.72788,26.88526],[77.72261,26.87432],[77.70651,26.87684],[77.70124,26.86775],[77.6976,26.86738],[77.69615,26.8677],[77.6943,26.87396],[77.68665,26.87525],[77.68232,26.8694],[77.67643,26.86848],[77.67458,26.86349],[77.67474,26.85755],[77.62976,26.84147],[77.6204,26.8428],[77.61823,26.83204],[77.61034,26.82858],[77.60762,26.8278],[77.60837,26.83912],[77.60081,26.83561],[77.59243,26.82791],[77.57805,26.82721],[77.57448,26.82086],[77.5576,26.81764],[77.54197,26.82242],[77.52569,26.81887],[77.52011,26.82179],[77.51698,26.82578],[77.51761,26.83776],[77.52086,26.83818],[77.52071,26.84152],[77.51771,26.84284],[77.51768,26.84423],[77.50782,26.84571],[77.50117,26.84445],[77.5014,26.83519],[77.49912,26.82412],[77.50069,26.81701],[77.49366,26.80156],[77.49324,26.79767],[77.48747,26.78815],[77.48886,26.78604],[77.48895,26.77904],[77.49683,26.77217],[77.50277,26.76931],[77.49588,26.75859],[77.48636,26.74885],[77.47804,26.7457],[77.4663,26.74465],[77.46141,26.74198],[77.44956,26.74194],[77.44085,26.7361],[77.43756,26.72975],[77.42677,26.7234],[77.39096,26.71235],[77.38358,26.70606],[77.37924,26.7081],[77.36441,26.7078],[77.3622,26.7094],[77.34612,26.71169],[77.34601,26.69138],[77.35831,26.67905],[77.36324,26.66831],[77.37208,26.65631],[77.36932,26.6546],[77.36762,26.65706],[77.36499,26.65703],[77.35699,26.65404],[77.35146,26.65586],[77.34592,26.6415],[77.34956,26.63975],[77.35099,26.63591],[77.35502,26.63654],[77.35754,26.63183],[77.36,26.6345],[77.35957,26.63734],[77.37524,26.63462],[77.3889,26.63528],[77.39465,26.63346],[77.38946,26.61562],[77.38282,26.61574],[77.37614,26.61855],[77.37599,26.61643],[77.37283,26.61499],[77.37396,26.61341],[77.36908,26.61195],[77.36922,26.60615],[77.35526,26.59184],[77.34613,26.59242],[77.33546,26.58642],[77.33291,26.58676],[77.31496,26.58014],[77.31254,26.57711],[77.29433,26.56639],[77.28889,26.56095],[77.2893,26.55461],[77.28192,26.55688],[77.27766,26.5543],[77.26922,26.55328],[77.26696,26.55077],[77.25533,26.5547],[77.25547,26.55159],[77.25232,26.55131],[77.24819,26.54819],[77.24147,26.54744],[77.23544,26.53701],[77.22756,26.53015],[77.22723,26.52657],[77.22938,26.52049],[77.23122,26.51958],[77.22981,26.51683],[77.23058,26.51414],[77.23371,26.51253],[77.23359,26.50999],[77.23562,26.51008],[77.23671,26.50788],[77.23546,26.50564],[77.23753,26.50461],[77.23875,26.50122],[77.2389,26.49834],[77.23439,26.49512],[77.23881,26.49304],[77.23811,26.48712],[77.24232,26.48147],[77.2378,26.47041],[77.23946,26.46988],[77.24364,26.47416],[77.24455,26.47016],[77.25064,26.46816],[77.24757,26.46502],[77.24929,26.46255],[77.24747,26.4596],[77.25092,26.45843],[77.24982,26.44434],[77.2548,26.43607],[77.25486,26.43197],[77.26123,26.42802],[77.26408,26.43078],[77.2701,26.43226],[77.27485,26.43117],[77.28186,26.43714],[77.2859,26.4367],[77.2894,26.43849],[77.29425,26.43488],[77.30651,26.43911],[77.31555,26.43884],[77.31716,26.43581],[77.33171,26.43206],[77.32922,26.42585],[77.34398,26.42384],[77.34599,26.40959],[77.33905,26.39598],[77.34166,26.39628],[77.3461,26.39396],[77.35509,26.39708],[77.35733,26.37764],[77.36368,26.3782],[77.36522,26.37971],[77.37003,26.37748],[77.36944,26.37556],[77.37015,26.37406],[77.37143,26.37471],[77.37253,26.36984],[77.37567,26.36906],[77.37569,26.36554],[77.37973,26.36231],[77.3904,26.35652],[77.39705,26.36078],[77.41395,26.36344],[77.44327,26.36112],[77.44747,26.36425],[77.44856,26.36753],[77.44622,26.37528],[77.43505,26.39438],[77.43506,26.40004],[77.43735,26.40328],[77.44874,26.40461],[77.45968,26.40378],[77.48651,26.41082],[77.52146,26.40721],[77.53838,26.4113],[77.54633,26.41612],[77.55867,26.43518],[77.5624,26.43684],[77.57147,26.43645],[77.58903,26.44648],[77.61348,26.45272],[77.62297,26.46142],[77.62747,26.47242],[77.63332,26.47869],[77.65058,26.4879],[77.65984,26.49112],[77.67372,26.50283],[77.68024,26.50426],[77.69129,26.49964],[77.71331,26.49827],[77.72701,26.50232],[77.73374,26.5078],[77.73811,26.51421],[77.74029,26.52725],[77.74591,26.53875],[77.75748,26.53984],[77.76781,26.54758],[77.78254,26.55187],[77.81074,26.54719],[77.81906,26.54822],[77.82391,26.55065],[77.83251,26.56147],[77.83578,26.57716],[77.8331,26.58354],[77.82811,26.58928],[77.82733,26.59605],[77.83206,26.59891],[77.83578,26.60615],[77.85066,26.61254],[77.85881,26.6136],[77.88577,26.61244],[77.89428,26.61471],[77.8967,26.61706],[77.89811,26.62315],[77.89752,26.65285],[77.89953,26.65642],[77.90426,26.65906],[77.91554,26.66102],[77.93522,26.66024],[77.94303,26.65819],[77.95318,26.65894],[77.98012,26.67121],[77.98476,26.67481],[77.99604,26.69257],[78.00043,26.69486],[78.01796,26.6925],[78.03164,26.68631],[78.03437,26.68703],[78.05601,26.68363],[78.07409,26.6706],[78.07879,26.67044],[78.08973,26.67447],[78.09444,26.67815],[78.09574,26.68123],[78.0956,26.69516],[78.09214,26.71495],[78.09593,26.7278],[78.10137,26.73709],[78.10808,26.73751],[78.11164,26.74064],[78.1184,26.74216],[78.12353,26.74688],[78.12371,26.75],[78.12065,26.75415],[78.10735,26.75944],[78.10345,26.76332],[78.10122,26.77409],[78.10216,26.78149],[78.10596,26.78888],[78.11426,26.79526],[78.12468,26.79642],[78.14326,26.79117],[78.15619,26.78397],[78.184,26.78382],[78.18761,26.78968],[78.18722,26.79487],[78.18047,26.80414],[78.16838,26.81283],[78.16727,26.81541],[78.16872,26.82039],[78.17233,26.82389],[78.17731,26.82559],[78.20211,26.82138],[78.22228,26.83132],[78.21858,26.8345],[78.22081,26.84012],[78.22017,26.84378],[78.21702,26.84336],[78.21273,26.84613],[78.21176,26.85069],[78.20222,26.86633],[78.19698,26.88218],[78.20006,26.88302],[78.20261,26.88172],[78.20841,26.87197],[78.20862,26.86886],[78.2127,26.86982],[78.21258,26.87137],[78.21922,26.87187],[78.22664,26.87488],[78.23264,26.87428],[78.23421,26.87599],[78.23708,26.88897],[78.24371,26.88869],[78.2469,26.89307],[78.25081,26.89178],[78.25913,26.89674],[78.26229,26.90195],[78.2637,26.90831],[78.27077,26.9151],[78.27226,26.91919],[78.27159,26.92122],[78.26531,26.92259],[78.26485,26.92675],[78.25856,26.93371],[78.25496,26.93531],[78.25364,26.9352],[78.25319,26.93273],[78.25567,26.92866],[78.25462,26.92581],[78.2479,26.92865],[78.24191,26.92614],[78.23862,26.92664],[78.23738,26.93597],[78.23129,26.93658],[78.22496,26.9463],[78.22151,26.94472],[78.21643,26.93508],[78.21014,26.93123],[78.20517,26.93263],[78.20036,26.93921],[78.19505,26.94192],[78.19007,26.94244],[78.18229,26.94057],[78.17749,26.9426],[78.17379,26.9474],[78.17109,26.94826],[78.15623,26.94324],[78.15178,26.94759]]]}} {"type":"Feature","properties":{"code_scheme":"LGD","area_code":"99","area_level":"District","area_name":"Dungarpur","geometry_source":"SOI_Districts"},"geometry":{"type":"Polygon","coordinates":[[[74.27169,23.95036],[74.26755,23.93427],[74.25,23.92799],[74.2408,23.92192],[74.23284,23.91315],[74.21915,23.90736],[74.21837,23.91294],[74.21386,23.91958],[74.21111,23.93089],[74.19849,23.95454],[74.18855,23.9628],[74.1724,23.96713],[74.16366,23.97306],[74.16049,23.9937],[74.16108,24.00535],[74.15779,24.00953],[74.1543,24.01115],[74.14621,24.00993],[74.14044,24.00678],[74.12702,23.99901],[74.11464,23.98872],[74.10847,23.98806],[74.09929,23.99129],[74.09372,23.98987],[74.08862,23.98479],[74.08204,23.97253],[74.07169,23.96649],[74.06388,23.96895],[74.05394,23.97593],[74.04344,23.97988],[74.03302,23.97808],[74.01846,23.97192],[74.00941,23.97349],[74.00179,23.96897],[73.99678,23.96825],[73.98522,23.97199],[73.97254,23.97961],[73.95696,23.9802],[73.94093,23.97622],[73.92362,23.98517],[73.91623,23.98542],[73.89655,23.97641],[73.89016,23.96935],[73.87617,23.9649],[73.87639,23.96164],[73.87411,23.95931],[73.86708,23.95864],[73.8651,23.95635],[73.86062,23.94195],[73.85655,23.93648],[73.83836,23.93417],[73.83097,23.9355],[73.82669,23.93904],[73.81986,23.94113],[73.81024,23.93563],[73.80544,23.94451],[73.79283,23.94493],[73.78706,23.94808],[73.77891,23.93795],[73.77376,23.93556],[73.76735,23.93666],[73.75212,23.94843],[73.74602,23.94588],[73.73909,23.93955],[73.73542,23.93966],[73.73168,23.94185],[73.72916,23.94605],[73.70584,23.95011],[73.70346,23.95439],[73.69347,23.95723],[73.67101,23.93979],[73.6692,23.94019],[73.66633,23.94769],[73.66367,23.9499],[73.65147,23.94623],[73.65101,23.94289],[73.63621,23.94614],[73.63367,23.94977],[73.61494,23.95878],[73.61159,23.96264],[73.60116,23.96232],[73.58717,23.96498],[73.58761,23.96255],[73.5765,23.95767],[73.57274,23.96217],[73.56363,23.95103],[73.55358,23.94409],[73.54812,23.93688],[73.54424,23.93432],[73.52408,23.9289],[73.51485,23.92989],[73.50982,23.91985],[73.49775,23.90848],[73.49928,23.90505],[73.48721,23.88458],[73.48203,23.86966],[73.47147,23.86958],[73.46882,23.86135],[73.46953,23.84675],[73.46381,23.84017],[73.44737,23.83675],[73.43084,23.83713],[73.42686,23.83203],[73.42368,23.83052],[73.42251,23.82758],[73.41505,23.82618],[73.41401,23.81533],[73.41121,23.80789],[73.40592,23.80659],[73.40187,23.80281],[73.40064,23.80569],[73.39441,23.8088],[73.38937,23.80913],[73.38167,23.81227],[73.37917,23.80731],[73.37439,23.81371],[73.36791,23.81423],[73.35872,23.79568],[73.35184,23.7914],[73.35606,23.78502],[73.36333,23.78223],[73.36377,23.77815],[73.36656,23.77704],[73.36724,23.77437],[73.37152,23.77049],[73.37077,23.76526],[73.38282,23.76824],[73.38624,23.77666],[73.39446,23.78293],[73.39919,23.78312],[73.40025,23.78506],[73.40858,23.77917],[73.41078,23.78016],[73.41802,23.77681],[73.41641,23.77032],[73.41928,23.76951],[73.42433,23.76164],[73.42702,23.76009],[73.43115,23.76125],[73.43063,23.75804],[73.43189,23.75652],[73.43658,23.75696],[73.44773,23.75287],[73.44869,23.7511],[73.44668,23.7444],[73.44921,23.73481],[73.45011,23.73336],[73.45674,23.73352],[73.46037,23.72731],[73.47142,23.71973],[73.47352,23.70523],[73.48141,23.7042],[73.49066,23.7069],[73.50739,23.70304],[73.50518,23.69881],[73.50841,23.69549],[73.50388,23.65672],[73.49661,23.64916],[73.49951,23.64873],[73.49943,23.64682],[73.50582,23.64701],[73.50877,23.64439],[73.50573,23.63884],[73.49377,23.63234],[73.50379,23.62443],[73.5027,23.6228],[73.50346,23.61832],[73.50639,23.61903],[73.52308,23.6069],[73.52487,23.61184],[73.53118,23.61418],[73.53301,23.61955],[73.54647,23.62599],[73.56855,23.6529],[73.57266,23.65377],[73.57902,23.65261],[73.59818,23.65389],[73.61548,23.65212],[73.62072,23.64574],[73.62678,23.64187],[73.64067,23.62821],[73.65566,23.62129],[73.64898,23.60837],[73.64485,23.60411],[73.64503,23.59678],[73.64336,23.59437],[73.64761,23.57462],[73.64416,23.57226],[73.64968,23.5681],[73.64719,23.56606],[73.64058,23.56802],[73.63662,23.5646],[73.63311,23.55509],[73.63514,23.53836],[73.63307,23.52869],[73.65052,23.51855],[73.65532,23.5124],[73.65636,23.50746],[73.64962,23.49647],[73.64533,23.49769],[73.64072,23.49641],[73.63917,23.48708],[73.64033,23.48272],[73.63344,23.46995],[73.63432,23.46238],[73.63067,23.45792],[73.62721,23.44857],[73.63602,23.44906],[73.64619,23.44142],[73.64746,23.43645],[73.66052,23.44803],[73.67391,23.45411],[73.68523,23.45359],[73.69212,23.45843],[73.69539,23.45591],[73.6974,23.45667],[73.70427,23.45144],[73.70686,23.44564],[73.70511,23.4382],[73.71164,23.4355],[73.71165,23.43392],[73.70799,23.43116],[73.71045,23.42536],[73.70808,23.42232],[73.71122,23.42187],[73.71451,23.41673],[73.71371,23.41381],[73.72081,23.41013],[73.72875,23.42321],[73.735,23.42549],[73.73658,23.42981],[73.74988,23.44074],[73.75645,23.45018],[73.75573,23.45432],[73.76723,23.45312],[73.77056,23.44807],[73.77229,23.43782],[73.77657,23.43779],[73.77898,23.4313],[73.78628,23.43023],[73.79447,23.43112],[73.80344,23.43777],[73.8186,23.43846],[73.82871,23.44769],[73.82868,23.44383],[73.8318,23.44045],[73.83313,23.43582],[73.83023,23.42623],[73.83413,23.42362],[73.83509,23.42044],[73.83963,23.41882],[73.84087,23.41335],[73.84566,23.41045],[73.84556,23.40752],[73.84932,23.40548],[73.85004,23.40198],[73.85817,23.39624],[73.85927,23.39214],[73.86361,23.38949],[73.86338,23.38725],[73.86084,23.38567],[73.86178,23.38363],[73.86585,23.38422],[73.86636,23.38126],[73.86921,23.38191],[73.86776,23.37805],[73.87191,23.37726],[73.87297,23.37945],[73.87376,23.37686],[73.87248,23.37587],[73.87374,23.37515],[73.87246,23.37247],[73.87408,23.37073],[73.8743,23.36377],[73.8759,23.3616],[73.88034,23.3585],[73.88637,23.35796],[73.88837,23.35619],[73.89078,23.34889],[73.89283,23.34783],[73.88997,23.33557],[73.89386,23.33384],[73.90094,23.33597],[73.91858,23.33547],[73.9337,23.33859],[73.93681,23.34077],[73.93941,23.34441],[73.93697,23.36058],[73.93801,23.36794],[73.95359,23.37597],[73.96906,23.39125],[73.97767,23.39611],[73.98021,23.41052],[73.98598,23.41552],[73.9979,23.42166],[74.01108,23.44087],[74.01412,23.45138],[74.0106,23.46907],[74.01698,23.48016],[74.01999,23.50765],[74.02819,23.5264],[74.0299,23.54456],[74.03181,23.54917],[74.03952,23.55503],[74.05244,23.56064],[74.06088,23.56763],[74.06478,23.58089],[74.066,23.59337],[74.07258,23.60274],[74.0828,23.60618],[74.10784,23.60554],[74.11272,23.60655],[74.11656,23.61038],[74.12415,23.63668],[74.12846,23.64522],[74.12708,23.65695],[74.12803,23.66838],[74.1264,23.67691],[74.13266,23.68708],[74.13371,23.69181],[74.13235,23.69938],[74.12221,23.71198],[74.1188,23.71826],[74.11858,23.72245],[74.11999,23.72642],[74.12649,23.73232],[74.13076,23.73972],[74.13226,23.75404],[74.13578,23.76707],[74.14045,23.77675],[74.15253,23.78898],[74.17955,23.79638],[74.19558,23.7982],[74.21616,23.8117],[74.23697,23.81602],[74.24712,23.82093],[74.26323,23.83262],[74.28535,23.84079],[74.28843,23.84292],[74.29663,23.85488],[74.31492,23.85727],[74.33716,23.87878],[74.35679,23.88532],[74.35829,23.88761],[74.35526,23.89881],[74.35701,23.90122],[74.36422,23.90222],[74.37418,23.89969],[74.38085,23.90524],[74.37238,23.92483],[74.36503,23.93251],[74.36368,23.93607],[74.35637,23.93318],[74.35304,23.93573],[74.34872,23.93422],[74.33799,23.93488],[74.33249,23.93939],[74.31733,23.94142],[74.31362,23.94555],[74.30903,23.94741],[74.30456,23.95826],[74.30067,23.9625],[74.29793,23.95642],[74.29483,23.9536],[74.28134,23.95743],[74.27447,23.95555],[74.27169,23.95036]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-AN","area_level":"State","area_name":"Andaman And Nicobar Islands","geometry_source":"SOI_States","same_as":"LGD/35/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[93.95032,6.93412],[93.95057,6.93423],[93.95062,6.93441],[93.95069,6.93459],[93.95062,6.93491],[93.9505,6.93524],[93.95034,6.93551],[93.9501,6.93579],[93.94968,6.93586],[93.94948,6.93581],[93.94936,6.93564],[93.94931,6.93541],[93.94931,6.93502],[93.94956,6.9346],[93.94997,6.93423],[93.95018,6.93409],[93.95032,6.93412]]],[[[93.70099,7.228],[93.70042,7.2291],[93.69983,7.2312],[93.69916,7.23176],[93.69871,7.23188],[93.69835,7.23183],[93.69838,7.2315],[93.69851,7.23148],[93.69815,7.23013],[93.69713,7.22917],[93.69641,7.22817],[93.69583,7.2282],[93.69556,7.22772],[93.69561,7.2272],[93.69576,7.22704],[93.69638,7.22716],[93.69617,7.22702],[93.697,7.22546],[93.69748,7.22542],[93.69764,7.22465],[93.69756,7.22389],[93.69812,7.22247],[93.69782,7.22196],[93.69809,7.22112],[93.69786,7.22095],[93.69806,7.22017],[93.69839,7.21991],[93.69879,7.22006],[93.69932,7.2195],[93.69935,7.21914],[93.69918,7.21879],[93.69926,7.21849],[93.69906,7.21821],[93.6995,7.21713],[93.69971,7.21677],[93.6999,7.21675],[93.70044,7.21687],[93.70037,7.21703],[93.70114,7.21609],[93.70084,7.21576],[93.70048,7.21387],[93.69995,7.21289],[93.70003,7.2124],[93.70132,7.20935],[93.70091,7.20936],[93.70059,7.20906],[93.70121,7.2085],[93.70269,7.20806],[93.70357,7.20798],[93.70505,7.20813],[93.70754,7.20685],[93.70805,7.20732],[93.70827,7.2079],[93.70863,7.21024],[93.70928,7.21187],[93.70996,7.21268],[93.71034,7.21341],[93.70999,7.21357],[93.71037,7.21354],[93.71025,7.21404],[93.70983,7.2148],[93.70954,7.21507],[93.70934,7.21488],[93.70934,7.21514],[93.70566,7.2195],[93.70564,7.22012],[93.70513,7.22142],[93.70435,7.22207],[93.70311,7.22269],[93.70292,7.22295],[93.70258,7.22526],[93.70105,7.22699],[93.70099,7.228]]],[[[93.83742,7.24045],[93.83739,7.24467],[93.83487,7.24028],[93.82674,7.24267],[93.82636,7.24006],[93.82292,7.24016],[93.81975,7.23785],[93.81652,7.23911],[93.8088,7.23825],[93.80309,7.23389],[93.79969,7.23337],[93.79623,7.23543],[93.79394,7.22849],[93.79734,7.22774],[93.79738,7.22366],[93.79332,7.22149],[93.7955,7.21745],[93.79394,7.21405],[93.79206,7.21531],[93.79059,7.21354],[93.79207,7.20826],[93.78861,7.21064],[93.78806,7.21315],[93.78245,7.21569],[93.77682,7.21386],[93.77327,7.21591],[93.76577,7.21365],[93.76624,7.21131],[93.76903,7.21099],[93.76904,7.20896],[93.76612,7.21094],[93.76188,7.20839],[93.75407,7.21108],[93.75529,7.21517],[93.74929,7.21592],[93.74327,7.21303],[93.73998,7.20873],[93.74511,7.20116],[93.74363,7.1995],[93.74032,7.20136],[93.738,7.20032],[93.73922,7.19395],[93.73761,7.20022],[93.73983,7.20177],[93.74336,7.20116],[93.74096,7.20623],[93.73431,7.20215],[93.72216,7.18901],[93.70807,7.1891],[93.70543,7.193],[93.70121,7.19394],[93.69358,7.19379],[93.6927,7.19208],[93.69118,7.19319],[93.68943,7.19049],[93.68196,7.1946],[93.67963,7.19233],[93.67633,7.19304],[93.672,7.18675],[93.67256,7.18496],[93.67092,7.18511],[93.66084,7.17742],[93.66348,7.1739],[93.66229,7.1684],[93.66366,7.16057],[93.66514,7.1585],[93.6673,7.15945],[93.66898,7.15797],[93.66534,7.15825],[93.66695,7.15113],[93.66499,7.14199],[93.66276,7.13895],[93.65695,7.14095],[93.65417,7.13186],[93.64462,7.13093],[93.64318,7.12728],[93.64365,7.11803],[93.6484,7.11067],[93.65333,7.1115],[93.65733,7.11814],[93.66358,7.11511],[93.66481,7.11116],[93.66727,7.11261],[93.66583,7.11078],[93.66177,7.11058],[93.66199,7.10944],[93.65865,7.11058],[93.65434,7.10913],[93.658,7.1088],[93.65454,7.10542],[93.65591,7.10389],[93.64796,7.10526],[93.64557,7.10393],[93.64439,7.10069],[93.64525,7.09706],[93.64675,7.09654],[93.64469,7.09371],[93.6465,7.09064],[93.6497,7.09024],[93.64822,7.0874],[93.64923,7.08563],[93.65169,7.08435],[93.65686,7.08573],[93.66029,7.0816],[93.66012,7.07873],[93.65437,7.07474],[93.65243,7.06714],[93.65371,7.06564],[93.66006,7.06549],[93.65798,7.05915],[93.65832,7.05051],[93.65641,7.05031],[93.65602,7.04674],[93.65694,7.04165],[93.66415,7.0369],[93.66481,7.03424],[93.66368,7.03159],[93.66043,7.03161],[93.65984,7.02711],[93.66205,7.02362],[93.66452,7.02517],[93.66697,7.02257],[93.65959,7.01866],[93.6634,7.01766],[93.66227,7.01578],[93.66325,7.01284],[93.65653,7.00972],[93.65503,7.00549],[93.65913,7.00209],[93.66604,7.00222],[93.66899,7.00436],[93.66766,7.0076],[93.67091,7.01213],[93.67035,7.01574],[93.67603,7.01749],[93.68359,7.01575],[93.69288,7.00988],[93.70179,7.011],[93.70282,7.01194],[93.70121,7.01525],[93.69792,7.01865],[93.7003,7.0246],[93.69534,7.02291],[93.70008,7.02536],[93.70072,7.02314],[93.69818,7.01853],[93.70322,7.01184],[93.69868,7.00973],[93.6931,7.00964],[93.69802,7.00272],[93.69846,6.99887],[93.69484,6.99508],[93.69599,6.992],[93.70025,6.99024],[93.70736,6.99378],[93.71494,6.99006],[93.71758,6.99146],[93.71719,6.99435],[93.70961,6.99694],[93.7175,6.99499],[93.7181,6.99188],[93.72012,6.99147],[93.72485,6.98314],[93.72804,6.98167],[93.73113,6.97583],[93.73307,6.97503],[93.73645,6.97684],[93.73293,6.97874],[93.73534,6.98991],[93.73849,6.98967],[93.73584,6.9914],[93.73767,6.99412],[93.73341,6.99355],[93.73285,6.99577],[93.73424,6.9987],[93.73678,6.99821],[93.73764,7.0],[93.73734,6.99787],[93.73484,6.99855],[93.73311,6.99552],[93.73347,6.99391],[93.73815,6.99425],[93.73858,6.99272],[93.73607,6.99219],[93.73895,6.9898],[93.7357,6.98991],[93.73322,6.97882],[93.73695,6.97692],[93.73382,6.97505],[93.7312,6.9754],[93.72833,6.981],[93.72509,6.98219],[93.71981,6.99084],[93.71561,6.98955],[93.72522,6.97734],[93.72242,6.96967],[93.72422,6.96607],[93.72722,6.96607],[93.72635,6.9588],[93.72989,6.95738],[93.733,6.96099],[93.73529,6.96098],[93.73509,6.96272],[93.73726,6.96271],[93.74101,6.95626],[93.73757,6.95124],[93.74141,6.94945],[93.74287,6.94529],[93.7388,6.94136],[93.74325,6.93816],[93.74252,6.93637],[93.73924,6.9356],[93.74152,6.93381],[93.7419,6.93052],[93.73273,6.92974],[93.73071,6.92586],[93.73171,6.92188],[93.73755,6.91193],[93.7442,6.90496],[93.74812,6.90741],[93.75067,6.91192],[93.75437,6.91332],[93.75697,6.91147],[93.75387,6.90693],[93.75667,6.90201],[93.7596,6.90046],[93.75754,6.89883],[93.75741,6.8955],[93.76679,6.89004],[93.76832,6.88672],[93.77047,6.88786],[93.76927,6.88512],[93.76509,6.88676],[93.76366,6.88446],[93.76708,6.8811],[93.77063,6.88192],[93.77686,6.88048],[93.76244,6.8766],[93.76253,6.87361],[93.76542,6.87228],[93.76724,6.86824],[93.76481,6.86617],[93.76298,6.8674],[93.76263,6.86289],[93.7688,6.85974],[93.77037,6.85597],[93.7754,6.85164],[93.7795,6.85305],[93.78228,6.85187],[93.77871,6.85091],[93.77656,6.8431],[93.78561,6.8469],[93.78019,6.84047],[93.78112,6.83827],[93.77784,6.83709],[93.77776,6.83223],[93.78059,6.82647],[93.78475,6.82489],[93.79069,6.81951],[93.78988,6.81658],[93.79549,6.80951],[93.79993,6.80756],[93.80328,6.81292],[93.80662,6.81451],[93.80987,6.81197],[93.80225,6.80495],[93.80294,6.80004],[93.80135,6.79592],[93.80596,6.79352],[93.80651,6.79144],[93.80166,6.78886],[93.80036,6.78566],[93.8036,6.78072],[93.80817,6.77786],[93.80452,6.77402],[93.80159,6.77333],[93.79915,6.76619],[93.80154,6.76076],[93.8049,6.7613],[93.80748,6.7573],[93.80861,6.75826],[93.82248,6.75278],[93.82646,6.75473],[93.82909,6.75359],[93.83145,6.75466],[93.83475,6.76945],[93.84198,6.7785],[93.84447,6.79086],[93.84188,6.79957],[93.84501,6.80126],[93.84529,6.80335],[93.84381,6.80766],[93.8467,6.81441],[93.85175,6.81669],[93.8547,6.82093],[93.85466,6.82785],[93.85147,6.8299],[93.85029,6.83299],[93.84671,6.8307],[93.84792,6.83208],[93.84721,6.83496],[93.84843,6.83204],[93.85054,6.83332],[93.85525,6.8262],[93.85494,6.81999],[93.85163,6.81569],[93.84723,6.81402],[93.84702,6.81134],[93.85708,6.81453],[93.86241,6.81353],[93.87435,6.80134],[93.87425,6.79542],[93.87599,6.79323],[93.88232,6.79429],[93.88405,6.79684],[93.88465,6.80378],[93.88846,6.80175],[93.89232,6.80339],[93.89584,6.81231],[93.89772,6.81346],[93.8985,6.81664],[93.89639,6.81981],[93.89811,6.81854],[93.90029,6.82088],[93.90529,6.83485],[93.90239,6.83959],[93.89488,6.84176],[93.88902,6.84779],[93.88999,6.85754],[93.88833,6.86042],[93.8885,6.86473],[93.88932,6.86714],[93.89523,6.87078],[93.89655,6.87522],[93.8943,6.88357],[93.89502,6.88828],[93.89143,6.89132],[93.89446,6.89498],[93.89467,6.89811],[93.89147,6.9012],[93.89581,6.90578],[93.90286,6.90328],[93.90968,6.91064],[93.90981,6.9216],[93.90563,6.92251],[93.90376,6.92729],[93.90624,6.93072],[93.91464,6.92987],[93.91294,6.93568],[93.91499,6.93686],[93.91341,6.9438],[93.91538,6.94728],[93.9198,6.94841],[93.92406,6.95368],[93.93325,6.94796],[93.93936,6.9502],[93.94135,6.95434],[93.93991,6.95888],[93.93094,6.9628],[93.92895,6.97097],[93.92461,6.97205],[93.92572,6.98179],[93.92341,6.98697],[93.91911,6.9887],[93.91481,6.99312],[93.91035,6.99283],[93.90988,6.99932],[93.91363,7.00609],[93.91871,7.00961],[93.92343,7.00951],[93.92872,6.99771],[93.93333,6.99425],[93.93411,6.99169],[93.93196,6.98946],[93.93344,6.98887],[93.9414,6.99275],[93.94357,6.99543],[93.94463,7.0014],[93.94276,7.00933],[93.93671,7.00991],[93.93433,7.01167],[93.93006,7.02204],[93.92434,7.02859],[93.91615,7.02371],[93.91244,7.02514],[93.91301,7.03161],[93.91029,7.03468],[93.91093,7.03724],[93.90826,7.03931],[93.91286,7.04494],[93.91329,7.04896],[93.90953,7.05361],[93.90723,7.06051],[93.90304,7.06461],[93.90382,7.06979],[93.89872,7.07965],[93.90176,7.0815],[93.89925,7.08294],[93.8986,7.0802],[93.89469,7.08207],[93.88972,7.08144],[93.88104,7.08969],[93.88108,7.09927],[93.87786,7.10449],[93.87757,7.10874],[93.88116,7.1135],[93.88277,7.12788],[93.88054,7.13079],[93.87606,7.13215],[93.87498,7.13898],[93.87681,7.14354],[93.87545,7.15143],[93.87653,7.15548],[93.87263,7.16561],[93.87449,7.16869],[93.86948,7.17272],[93.86865,7.17561],[93.86861,7.17947],[93.87185,7.18586],[93.87147,7.19146],[93.86854,7.19505],[93.87009,7.19853],[93.86995,7.20471],[93.86506,7.20504],[93.86371,7.20967],[93.85901,7.21358],[93.85947,7.21546],[93.8569,7.21837],[93.85208,7.21695],[93.84793,7.21784],[93.84122,7.21563],[93.83708,7.21808],[93.83259,7.22747],[93.83288,7.23093],[93.83796,7.23366],[93.83742,7.24045]]],[[[93.79666,7.2447],[93.79695,7.24493],[93.79949,7.24552],[93.79956,7.24585],[93.79895,7.24639],[93.7981,7.24686],[93.79768,7.24696],[93.79745,7.24716],[93.79738,7.24755],[93.79791,7.2483],[93.79803,7.24865],[93.79785,7.24883],[93.79757,7.24887],[93.79732,7.24877],[93.79684,7.24831],[93.79513,7.24754],[93.79354,7.24671],[93.79294,7.24632],[93.79257,7.24615],[93.79192,7.246],[93.79024,7.24524],[93.78824,7.24401],[93.78761,7.24353],[93.78745,7.24315],[93.7876,7.24272],[93.78778,7.2425],[93.78978,7.2412],[93.79049,7.241],[93.79117,7.2412],[93.79151,7.24143],[93.79246,7.24255],[93.79279,7.24276],[93.79406,7.24294],[93.79435,7.24324],[93.79471,7.24451],[93.79497,7.24467],[93.79563,7.24436],[93.79611,7.24432],[93.79633,7.24435],[93.79666,7.2447]]],[[[93.83497,7.28728],[93.83594,7.28791],[93.83704,7.28912],[93.83781,7.29006],[93.83806,7.2905],[93.83815,7.29094],[93.83804,7.29136],[93.83788,7.29156],[93.83769,7.29164],[93.83742,7.29161],[93.83682,7.2913],[93.83593,7.29061],[93.83528,7.29065],[93.83499,7.29063],[93.83439,7.29037],[93.83397,7.29039],[93.83348,7.29024],[93.83333,7.29003],[93.83327,7.28954],[93.83337,7.2892],[93.83349,7.28852],[93.83369,7.28809],[93.83387,7.28741],[93.83412,7.28713],[93.83497,7.28728]]],[[[93.62007,7.33083],[93.61957,7.33123],[93.61907,7.33142],[93.61846,7.33147],[93.6179,7.33142],[93.61748,7.3313],[93.61714,7.33104],[93.61692,7.33062],[93.61698,7.33046],[93.61811,7.32968],[93.61826,7.32945],[93.61834,7.32916],[93.61831,7.32902],[93.61799,7.32868],[93.61807,7.32834],[93.61785,7.32737],[93.61765,7.32679],[93.61765,7.32642],[93.61773,7.32622],[93.61786,7.32607],[93.61811,7.32599],[93.61891,7.32586],[93.61912,7.32567],[93.6192,7.32552],[93.61925,7.32528],[93.61947,7.32518],[93.61976,7.32518],[93.62005,7.32526],[93.62027,7.32543],[93.62078,7.32599],[93.62146,7.32623],[93.62194,7.32646],[93.62228,7.32675],[93.62295,7.32785],[93.62298,7.32815],[93.62275,7.32844],[93.62228,7.32861],[93.62211,7.32877],[93.62195,7.32911],[93.62196,7.32995],[93.62162,7.33043],[93.62143,7.33061],[93.62114,7.33071],[93.62057,7.33064],[93.62007,7.33083]]],[[[93.68376,7.39995],[93.68379,7.40054],[93.68238,7.40404],[93.68194,7.40462],[93.68161,7.40602],[93.68133,7.40635],[93.67987,7.40718],[93.67992,7.4074],[93.68058,7.4081],[93.68081,7.40868],[93.68055,7.41108],[93.68041,7.4116],[93.67938,7.4121],[93.67779,7.41245],[93.67546,7.41251],[93.67492,7.41242],[93.67423,7.41214],[93.67286,7.41125],[93.67121,7.41036],[93.67037,7.40941],[93.66981,7.40785],[93.66977,7.40681],[93.67001,7.40519],[93.67178,7.40013],[93.67261,7.39882],[93.67375,7.39761],[93.67443,7.39722],[93.6752,7.39708],[93.67595,7.39743],[93.6763,7.39771],[93.6773,7.39775],[93.67781,7.39791],[93.68116,7.39988],[93.68181,7.39995],[93.68313,7.39951],[93.68358,7.3997],[93.68376,7.39995]]],[[[93.75641,7.40555],[93.75595,7.40587],[93.75542,7.40583],[93.75497,7.40558],[93.75432,7.40583],[93.75341,7.4053],[93.7533,7.40477],[93.75344,7.40428],[93.7541,7.40395],[93.75403,7.40377],[93.75294,7.40318],[93.75285,7.40343],[93.7524,7.40332],[93.75203,7.4029],[93.75155,7.40216],[93.75037,7.40114],[93.7502,7.40061],[93.75034,7.40008],[93.75028,7.39965],[93.75035,7.39942],[93.75025,7.39852],[93.75061,7.39822],[93.75227,7.39732],[93.75319,7.39701],[93.75377,7.39662],[93.75442,7.3965],[93.75506,7.39621],[93.75528,7.39621],[93.75546,7.39631],[93.75582,7.39631],[93.75615,7.39611],[93.7569,7.39604],[93.75744,7.39648],[93.75858,7.39683],[93.75906,7.39705],[93.75928,7.39725],[93.75931,7.39745],[93.75968,7.39758],[93.75951,7.39811],[93.75957,7.39896],[93.75996,7.39987],[93.75996,7.40075],[93.75974,7.40135],[93.75935,7.4014],[93.75914,7.40185],[93.7585,7.40234],[93.75847,7.40273],[93.75796,7.40336],[93.75753,7.40375],[93.75686,7.40396],[93.75635,7.40396],[93.75629,7.40417],[93.75652,7.40442],[93.75655,7.40505],[93.75641,7.40555]]],[[[93.69947,7.44738],[93.69439,7.44728],[93.69181,7.44436],[93.69432,7.43964],[93.69354,7.4311],[93.69622,7.42636],[93.69522,7.42218],[93.6964,7.41966],[93.69219,7.41402],[93.69325,7.4072],[93.69207,7.40732],[93.68988,7.40422],[93.69156,7.40066],[93.69801,7.39901],[93.70062,7.40017],[93.70282,7.39635],[93.7018,7.39364],[93.69583,7.3957],[93.6865,7.39668],[93.67435,7.39091],[93.67029,7.39115],[93.66733,7.38497],[93.66821,7.37897],[93.66175,7.37506],[93.65931,7.37673],[93.65824,7.37591],[93.66221,7.36977],[93.65978,7.36791],[93.65842,7.36842],[93.65631,7.36596],[93.65406,7.36596],[93.65964,7.37209],[93.65745,7.37511],[93.65915,7.37719],[93.65683,7.38031],[93.6576,7.38338],[93.65492,7.38518],[93.65195,7.38556],[93.64839,7.38369],[93.64487,7.37832],[93.64478,7.37554],[93.63784,7.37077],[93.62826,7.37665],[93.62275,7.37648],[93.61944,7.37426],[93.61777,7.36208],[93.61833,7.35446],[93.62025,7.34896],[93.61977,7.33891],[93.62411,7.33327],[93.62332,7.3228],[93.61907,7.32075],[93.61703,7.31707],[93.61259,7.31362],[93.61048,7.3143],[93.60813,7.31313],[93.60709,7.31051],[93.60818,7.30799],[93.61287,7.307],[93.61482,7.30484],[93.62198,7.28737],[93.62039,7.28288],[93.61712,7.2804],[93.61819,7.27792],[93.62069,7.27856],[93.62179,7.27689],[93.61665,7.27039],[93.61683,7.26582],[93.62425,7.2607],[93.62656,7.25754],[93.62631,7.2533],[93.62807,7.25],[93.63101,7.24902],[93.63201,7.24625],[93.63581,7.24281],[93.64365,7.24488],[93.65208,7.2556],[93.65463,7.25529],[93.65762,7.25801],[93.66098,7.26948],[93.66482,7.27718],[93.66725,7.27901],[93.66645,7.28223],[93.66741,7.2852],[93.67228,7.28804],[93.67487,7.29186],[93.68746,7.29611],[93.69452,7.30203],[93.69535,7.30538],[93.70372,7.30753],[93.70673,7.30664],[93.7136,7.31137],[93.71776,7.32368],[93.72149,7.32535],[93.72415,7.33051],[93.72609,7.34137],[93.72956,7.34745],[93.73745,7.35416],[93.73712,7.35842],[93.74383,7.36145],[93.74349,7.36477],[93.74559,7.36992],[93.74408,7.37672],[93.73992,7.38006],[93.73633,7.38603],[93.73295,7.38452],[93.73291,7.38689],[93.72974,7.38812],[93.72611,7.39218],[93.72246,7.39289],[93.72219,7.39501],[93.71451,7.39812],[93.7097,7.40507],[93.71133,7.41845],[93.70876,7.43119],[93.70688,7.43574],[93.70452,7.43612],[93.70129,7.44663],[93.69947,7.44738]]],[[[93.63133,7.47161],[93.63138,7.47166],[93.63138,7.47175],[93.63131,7.47198],[93.63123,7.47213],[93.63109,7.47224],[93.63091,7.47247],[93.63085,7.47264],[93.63079,7.47268],[93.63071,7.47269],[93.63066,7.47267],[93.63057,7.47264],[93.6305,7.47256],[93.63048,7.47243],[93.6305,7.47232],[93.63066,7.47204],[93.63104,7.47175],[93.63126,7.4716],[93.63133,7.47161]]],[[[93.63715,7.47841],[93.63561,7.47883],[93.63473,7.47868],[93.63437,7.47852],[93.63282,7.47718],[93.63252,7.47682],[93.6324,7.4766],[93.63235,7.47506],[93.63236,7.4749],[93.63255,7.47456],[93.63262,7.47407],[93.63258,7.47371],[93.63237,7.4732],[93.63227,7.47258],[93.63235,7.47243],[93.63257,7.47229],[93.6331,7.47239],[93.63319,7.47254],[93.63379,7.47299],[93.63426,7.47315],[93.63439,7.47312],[93.63514,7.47288],[93.6358,7.47225],[93.63599,7.47215],[93.63642,7.47212],[93.63697,7.47183],[93.63783,7.47172],[93.63892,7.47177],[93.63962,7.47162],[93.64016,7.47125],[93.64088,7.47103],[93.64119,7.47125],[93.6415,7.47238],[93.64158,7.47295],[93.64155,7.4749],[93.64124,7.47607],[93.64,7.47757],[93.63908,7.47823],[93.63878,7.47834],[93.6378,7.47829],[93.63715,7.47841]]],[[[93.62326,7.47939],[93.62336,7.47989],[93.62342,7.48069],[93.62328,7.48151],[93.62292,7.48209],[93.62243,7.48252],[93.6218,7.48288],[93.62086,7.48324],[93.6198,7.48346],[93.61897,7.48342],[93.61866,7.48321],[93.61846,7.48293],[93.61845,7.48245],[93.61924,7.48143],[93.61949,7.48098],[93.61962,7.48063],[93.61962,7.48],[93.61991,7.47961],[93.62015,7.47936],[93.62053,7.47906],[93.62103,7.47878],[93.62124,7.47878],[93.6215,7.47863],[93.62157,7.4783],[93.62177,7.47787],[93.62218,7.47761],[93.62252,7.47758],[93.62271,7.47764],[93.62304,7.47849],[93.62326,7.47939]]],[[[93.53064,7.52649],[93.52854,7.52748],[93.5262,7.52902],[93.52546,7.52933],[93.52423,7.52952],[93.52273,7.52959],[93.52143,7.52932],[93.52025,7.52847],[93.51968,7.5278],[93.51962,7.52727],[93.51982,7.52661],[93.52074,7.52549],[93.52093,7.52496],[93.52091,7.52376],[93.52146,7.5217],[93.5218,7.52148],[93.52175,7.52105],[93.52197,7.52093],[93.52229,7.52105],[93.52333,7.52073],[93.52469,7.52022],[93.52508,7.51987],[93.52533,7.51908],[93.52575,7.51837],[93.52583,7.51782],[93.5258,7.51764],[93.52495,7.51688],[93.52482,7.51662],[93.52485,7.51621],[93.52555,7.51497],[93.52587,7.51463],[93.52622,7.51458],[93.52733,7.515],[93.52802,7.515],[93.52919,7.51357],[93.53025,7.51361],[93.53092,7.51379],[93.53193,7.51423],[93.53249,7.51469],[93.53327,7.51589],[93.53373,7.51635],[93.53403,7.51693],[93.53465,7.51903],[93.53443,7.52028],[93.53489,7.52163],[93.53473,7.52223],[93.53478,7.52315],[93.53439,7.52452],[93.53387,7.52535],[93.533,7.52604],[93.53238,7.5263],[93.53117,7.52635],[93.53064,7.52649]]],[[[93.4418,7.87635],[93.44198,7.87642],[93.44214,7.87654],[93.44224,7.87667],[93.44216,7.87683],[93.44202,7.877],[93.44195,7.87712],[93.44195,7.87733],[93.44193,7.87741],[93.44185,7.87752],[93.4416,7.87757],[93.44137,7.8775],[93.44123,7.87728],[93.4412,7.87699],[93.44124,7.87672],[93.44139,7.87651],[93.44159,7.87637],[93.4418,7.87635]]],[[[93.38663,7.88985],[93.38723,7.89023],[93.38749,7.89054],[93.38774,7.89105],[93.38782,7.89143],[93.38774,7.89168],[93.38755,7.89189],[93.38725,7.89201],[93.38696,7.89202],[93.38681,7.89198],[93.38648,7.89162],[93.38636,7.89146],[93.38629,7.89131],[93.38621,7.8907],[93.38617,7.89008],[93.38622,7.88992],[93.38639,7.88982],[93.38663,7.88985]]],[[[93.38951,7.89054],[93.38995,7.8909],[93.39016,7.89125],[93.3903,7.89177],[93.39039,7.89289],[93.39053,7.8936],[93.39048,7.89403],[93.39024,7.895],[93.39019,7.89533],[93.39023,7.89565],[93.39042,7.89601],[93.39097,7.89648],[93.39084,7.89687],[93.39055,7.89739],[93.3901,7.89949],[93.38995,7.89983],[93.38974,7.90008],[93.38946,7.90024],[93.38914,7.90034],[93.38857,7.90017],[93.38794,7.90011],[93.38775,7.9],[93.38741,7.89951],[93.38732,7.89914],[93.38742,7.89807],[93.38758,7.89717],[93.38755,7.89675],[93.38739,7.89634],[93.38705,7.89592],[93.38708,7.89573],[93.388,7.89463],[93.38874,7.89315],[93.38927,7.89254],[93.38894,7.89219],[93.38883,7.89199],[93.38884,7.89164],[93.38907,7.89079],[93.38926,7.89055],[93.38951,7.89054]]],[[[93.39439,7.90212],[93.39452,7.9025],[93.39452,7.90268],[93.39429,7.90268],[93.39389,7.90249],[93.39353,7.90226],[93.39316,7.90194],[93.39285,7.90177],[93.39207,7.90184],[93.39157,7.90207],[93.39122,7.90205],[93.39073,7.90192],[93.39037,7.90174],[93.39071,7.9017],[93.39115,7.90155],[93.39134,7.90137],[93.39142,7.90116],[93.39131,7.90092],[93.39092,7.90047],[93.39091,7.90019],[93.39108,7.89953],[93.39151,7.89925],[93.39191,7.89919],[93.39232,7.89925],[93.39254,7.89943],[93.39277,7.89979],[93.393,7.9004],[93.39316,7.90069],[93.39342,7.9009],[93.39407,7.90165],[93.39439,7.90212]]],[[[93.39682,7.90178],[93.39601,7.90259],[93.39575,7.90271],[93.39536,7.90271],[93.39515,7.90252],[93.395,7.9021],[93.39537,7.9006],[93.39547,7.89998],[93.39542,7.89974],[93.39528,7.89944],[93.39507,7.89917],[93.39502,7.89888],[93.39507,7.89863],[93.39516,7.89856],[93.39539,7.89851],[93.39575,7.89864],[93.39609,7.89885],[93.39632,7.89895],[93.39659,7.89893],[93.39697,7.89874],[93.39763,7.89827],[93.3979,7.89825],[93.39872,7.89849],[93.39913,7.89896],[93.39955,7.89959],[93.39977,7.90005],[93.39991,7.90074],[93.39988,7.90089],[93.3997,7.9011],[93.39965,7.90134],[93.39974,7.90192],[93.39959,7.90212],[93.3994,7.90228],[93.39918,7.90226],[93.39841,7.90171],[93.39795,7.90156],[93.39753,7.90153],[93.39682,7.90178]]],[[[93.32672,7.93022],[93.32673,7.93042],[93.32664,7.93065],[93.32656,7.93077],[93.32623,7.93098],[93.32575,7.93113],[93.32416,7.93136],[93.32306,7.93193],[93.32295,7.93184],[93.32279,7.93178],[93.32261,7.93157],[93.32254,7.93113],[93.32277,7.93093],[93.32286,7.93061],[93.32343,7.93019],[93.32373,7.93031],[93.32402,7.93036],[93.32437,7.93034],[93.32524,7.9299],[93.32611,7.9298],[93.32634,7.92992],[93.32654,7.92997],[93.32672,7.93022]]],[[[93.33828,7.93728],[93.33897,7.93809],[93.33951,7.9389],[93.34016,7.94023],[93.3402,7.94044],[93.34015,7.94093],[93.33997,7.94151],[93.33969,7.94195],[93.33929,7.9424],[93.339,7.94269],[93.33883,7.94274],[93.33867,7.94268],[93.33729,7.94187],[93.33612,7.94107],[93.33556,7.94044],[93.33504,7.93965],[93.3349,7.93931],[93.33479,7.93871],[93.33481,7.93856],[93.33493,7.93832],[93.33515,7.93812],[93.33563,7.93782],[93.3363,7.93768],[93.33709,7.93737],[93.33814,7.93715],[93.33828,7.93728]]],[[[93.47735,8.00909],[93.47747,8.00934],[93.47711,8.0098],[93.477,8.00991],[93.47688,8.00992],[93.47671,8.00979],[93.47661,8.00962],[93.47659,8.00943],[93.47662,8.00923],[93.47676,8.00903],[93.47714,8.00898],[93.47735,8.00909]]],[[[93.47917,8.00969],[93.47911,8.01007],[93.47911,8.01023],[93.4787,8.01074],[93.4784,8.01102],[93.47815,8.01115],[93.47806,8.01115],[93.47785,8.01103],[93.4776,8.01054],[93.47744,8.01008],[93.47743,8.00977],[93.47777,8.00961],[93.47814,8.00958],[93.47829,8.00952],[93.47838,8.00932],[93.47868,8.00927],[93.47897,8.00933],[93.47917,8.00969]]],[[[93.36945,8.02353],[93.36127,8.02137],[93.35622,8.01409],[93.35411,8.01414],[93.35397,8.01263],[93.35008,8.01024],[93.34864,8.01213],[93.34657,8.00915],[93.34446,8.00969],[93.3432,8.01328],[93.33929,8.01745],[93.33333,8.01207],[93.32801,8.01327],[93.32284,8.01064],[93.31998,8.00738],[93.31945,8.00581],[93.32024,8.00572],[93.31655,8.00176],[93.31228,7.99107],[93.31179,7.98637],[93.3139,7.9787],[93.31293,7.97462],[93.31025,7.97223],[93.30625,7.97135],[93.30522,7.96782],[93.30061,7.96148],[93.30291,7.94946],[93.30592,7.94436],[93.30797,7.94339],[93.30946,7.93984],[93.30775,7.93783],[93.30787,7.93386],[93.30963,7.93344],[93.3097,7.9312],[93.31302,7.92709],[93.32195,7.92293],[93.32448,7.92519],[93.32108,7.92935],[93.3228,7.92996],[93.32216,7.93102],[93.32359,7.93586],[93.32725,7.93663],[93.33179,7.93418],[93.33144,7.93149],[93.32818,7.93074],[93.32988,7.92765],[93.33528,7.93451],[93.33786,7.93523],[93.33797,7.93623],[93.33413,7.93809],[93.33202,7.93714],[93.33317,7.93872],[93.33149,7.93829],[93.33855,7.9461],[93.33398,7.94892],[93.32999,7.94681],[93.33189,7.94951],[93.33415,7.9496],[93.33933,7.94612],[93.34183,7.94686],[93.33998,7.94382],[93.34294,7.94337],[93.34282,7.9416],[93.34131,7.94068],[93.33888,7.93376],[93.33577,7.933],[93.33435,7.93085],[93.3356,7.92747],[93.34085,7.9324],[93.34115,7.93017],[93.33548,7.9245],[93.32947,7.92576],[93.32681,7.92346],[93.33291,7.91539],[93.33103,7.91397],[93.3339,7.91133],[93.33211,7.90999],[93.33473,7.90915],[93.33499,7.90014],[93.33645,7.89898],[93.33774,7.89983],[93.34085,7.89346],[93.346,7.88973],[93.35528,7.88624],[93.36149,7.88638],[93.36191,7.88181],[93.36584,7.88006],[93.36796,7.87767],[93.37109,7.87935],[93.37303,7.87899],[93.37474,7.88107],[93.37631,7.88022],[93.37966,7.88125],[93.38094,7.88285],[93.38057,7.88552],[93.38546,7.88742],[93.38592,7.88878],[93.38461,7.88935],[93.38732,7.89303],[93.38718,7.89517],[93.38552,7.89627],[93.3881,7.90158],[93.39519,7.90324],[93.39847,7.90222],[93.40594,7.90638],[93.40736,7.90656],[93.40742,7.90525],[93.40862,7.90675],[93.41198,7.90693],[93.41622,7.9063],[93.43202,7.89887],[93.43744,7.89197],[93.44148,7.88432],[93.44111,7.88197],[93.44322,7.87506],[93.45446,7.87244],[93.45995,7.8798],[93.46025,7.88222],[93.46447,7.88642],[93.46199,7.88721],[93.46242,7.88929],[93.46621,7.8911],[93.46489,7.89225],[93.46461,7.89728],[93.46131,7.90305],[93.458,7.91337],[93.45713,7.92742],[93.45366,7.93337],[93.45327,7.93628],[93.45116,7.93825],[93.4519,7.93929],[93.43934,7.94789],[93.43129,7.95598],[93.42682,7.95657],[93.42513,7.95885],[93.42302,7.9665],[93.42091,7.96861],[93.41535,7.96577],[93.41398,7.96167],[93.40907,7.96057],[93.40362,7.96156],[93.40081,7.96709],[93.40159,7.96911],[93.403,7.96932],[93.40165,7.97022],[93.39977,7.96848],[93.39386,7.97439],[93.39335,7.97813],[93.39641,7.98218],[93.39226,7.99336],[93.39679,8.00461],[93.39837,8.00648],[93.40063,8.00691],[93.40137,8.00878],[93.3982,8.01248],[93.39252,8.01475],[93.38965,8.01796],[93.38203,8.01898],[93.38084,8.02046],[93.37812,8.01945],[93.36945,8.02353]]],[[[93.47579,8.01306],[93.47584,8.01319],[93.4757,8.01393],[93.47558,8.01435],[93.4752,8.01459],[93.47509,8.01449],[93.47506,8.01443],[93.47499,8.01439],[93.47479,8.01433],[93.47473,8.01404],[93.47496,8.01352],[93.47519,8.01318],[93.47545,8.01303],[93.4757,8.01292],[93.47579,8.01306]]],[[[93.47499,8.0149],[93.47498,8.01516],[93.47506,8.01546],[93.47507,8.01575],[93.47483,8.01589],[93.47467,8.01588],[93.47448,8.01577],[93.47442,8.01572],[93.47431,8.01557],[93.47429,8.01527],[93.47434,8.0151],[93.47446,8.01504],[93.47452,8.01487],[93.47458,8.0148],[93.47499,8.0149]]],[[[93.47523,8.0164],[93.47553,8.01688],[93.47561,8.01698],[93.47557,8.01723],[93.47535,8.01727],[93.47524,8.01727],[93.47493,8.0172],[93.47483,8.01704],[93.47483,8.01676],[93.47497,8.01645],[93.47509,8.01634],[93.47523,8.0164]]],[[[93.54084,8.02845],[93.53632,8.02825],[93.53489,8.02908],[93.53409,8.02629],[93.53543,8.02346],[93.53886,8.02126],[93.53825,8.01836],[93.5411,8.00972],[93.54018,8.00654],[93.54195,8.00255],[93.5417,8.00141],[93.54276,8.00141],[93.54185,7.99819],[93.54215,7.99551],[93.54377,7.99136],[93.54329,7.99112],[93.54271,7.99188],[93.54236,7.99428],[93.541,7.99659],[93.5381,7.99871],[93.53858,8.00099],[93.53802,8.0025],[93.53197,8.00839],[93.5325,8.01068],[93.53094,8.01362],[93.53248,8.01519],[93.53245,8.016],[93.5306,8.01781],[93.52981,8.01754],[93.52789,8.01891],[93.52634,8.01763],[93.52628,8.02211],[93.52516,8.02474],[93.52208,8.02618],[93.51878,8.02516],[93.51956,8.02264],[93.51849,8.02198],[93.51793,8.02044],[93.52019,8.01602],[93.52049,8.01021],[93.52132,8.00754],[93.52023,8.00661],[93.51706,8.00602],[93.51668,8.00501],[93.51736,8.00386],[93.51673,8.00273],[93.51522,8.00331],[93.51625,8.0014],[93.51593,8.00068],[93.5125,7.99944],[93.5119,7.99775],[93.51022,7.99686],[93.51093,7.99563],[93.50978,7.9941],[93.50522,7.99585],[93.50556,7.9995],[93.50142,7.99951],[93.50094,7.99875],[93.50133,7.99773],[93.49964,7.9983],[93.49919,7.99668],[93.4969,7.99867],[93.49454,7.9961],[93.49472,7.99324],[93.49703,7.98942],[93.49671,7.98664],[93.49789,7.98389],[93.5,7.98284],[93.5,7.98432],[93.50142,7.98338],[93.5013,7.98222],[93.50219,7.98279],[93.50396,7.98102],[93.50492,7.98115],[93.50797,7.97783],[93.50738,7.97755],[93.50763,7.97592],[93.51131,7.97373],[93.51202,7.9718],[93.51337,7.97187],[93.51359,7.97044],[93.51473,7.97123],[93.51454,7.97192],[93.51591,7.97163],[93.51472,7.97001],[93.5153,7.96914],[93.51811,7.9687],[93.52322,7.96536],[93.52587,7.96456],[93.52659,7.96609],[93.52998,7.96696],[93.53139,7.96936],[93.53001,7.96641],[93.52736,7.96576],[93.52723,7.96445],[93.52649,7.96437],[93.52862,7.96149],[93.52842,7.95933],[93.53209,7.95632],[93.53429,7.95617],[93.53893,7.95247],[93.54297,7.95089],[93.54405,7.94997],[93.54436,7.9478],[93.54826,7.9457],[93.55339,7.9405],[93.55409,7.93773],[93.55617,7.93737],[93.55828,7.93568],[93.55904,7.93548],[93.55907,7.93604],[93.56021,7.93484],[93.56011,7.9341],[93.56227,7.93372],[93.56247,7.93219],[93.56271,7.93344],[93.56376,7.93125],[93.56373,7.93224],[93.56766,7.93092],[93.56912,7.92993],[93.56942,7.92827],[93.5698,7.93014],[93.56736,7.93242],[93.56785,7.93496],[93.56942,7.93586],[93.56934,7.93735],[93.5714,7.93985],[93.57184,7.94146],[93.57046,7.9433],[93.5717,7.94612],[93.57214,7.95303],[93.57035,7.95517],[93.57096,7.95867],[93.57219,7.95983],[93.57171,7.96077],[93.57244,7.96332],[93.57225,7.96473],[93.57088,7.96428],[93.56992,7.96556],[93.57122,7.97019],[93.57223,7.96979],[93.57358,7.97244],[93.57296,7.97442],[93.57151,7.97538],[93.57174,7.97755],[93.57048,7.97862],[93.57073,7.98147],[93.57321,7.98531],[93.57179,7.98912],[93.57262,7.99031],[93.57225,7.992],[93.57331,7.99423],[93.57192,7.99538],[93.5703,7.99477],[93.56918,7.99999],[93.56997,8.0],[93.56763,8.00104],[93.56556,8.00532],[93.5626,8.00881],[93.56114,8.01361],[93.55995,8.01472],[93.55929,8.01482],[93.55897,8.01409],[93.55898,8.01514],[93.55675,8.01717],[93.55647,8.02134],[93.55363,8.02634],[93.55274,8.02631],[93.55314,8.02558],[93.5526,8.02481],[93.55079,8.0252],[93.55071,8.02621],[93.54879,8.02571],[93.54412,8.02804],[93.54084,8.02845]]],[[[93.47433,8.03481],[93.47462,8.03505],[93.4747,8.0352],[93.47475,8.03543],[93.4747,8.0357],[93.47449,8.03588],[93.47419,8.03607],[93.47391,8.03605],[93.4736,8.03591],[93.47346,8.03568],[93.47345,8.03544],[93.47348,8.03519],[93.47358,8.03494],[93.47379,8.03479],[93.47408,8.03476],[93.47433,8.03481]]],[[[93.49508,8.04863],[93.49476,8.04865],[93.4943,8.04862],[93.49393,8.04866],[93.49364,8.04868],[93.49349,8.04862],[93.49325,8.04838],[93.4932,8.04817],[93.49334,8.04776],[93.49339,8.04727],[93.49349,8.04704],[93.49366,8.04686],[93.49385,8.04679],[93.49403,8.04684],[93.49417,8.047],[93.49435,8.04735],[93.49459,8.0477],[93.49514,8.04809],[93.49532,8.04835],[93.49524,8.04851],[93.49508,8.04863]]],[[[93.51401,8.0644],[93.51411,8.06452],[93.51413,8.06463],[93.51412,8.06474],[93.51409,8.06484],[93.51404,8.06492],[93.51392,8.06496],[93.51377,8.06493],[93.51371,8.06487],[93.51366,8.06475],[93.51364,8.06455],[93.51368,8.06446],[93.51374,8.06439],[93.51381,8.06434],[93.51388,8.06432],[93.51401,8.0644]]],[[[93.51478,8.0689],[93.51485,8.06893],[93.51492,8.06899],[93.51493,8.06908],[93.51487,8.06927],[93.5148,8.06936],[93.51473,8.06943],[93.51469,8.06945],[93.51453,8.06948],[93.51446,8.06941],[93.51444,8.06936],[93.51444,8.06926],[93.51444,8.06917],[93.51447,8.06909],[93.51454,8.06901],[93.51461,8.06895],[93.51469,8.06891],[93.51478,8.0689]]],[[[93.51361,8.07471],[93.51386,8.07477],[93.51411,8.0749],[93.5142,8.07506],[93.51421,8.07516],[93.51419,8.0753],[93.51414,8.0754],[93.51403,8.07555],[93.51379,8.07566],[93.51349,8.07556],[93.51326,8.07541],[93.51313,8.07522],[93.51313,8.07506],[93.51316,8.07492],[93.51325,8.0748],[93.51337,8.07471],[93.51361,8.07471]]],[[[93.57595,8.11916],[93.57227,8.12651],[93.57052,8.12749],[93.56687,8.1275],[93.56242,8.12585],[93.55843,8.12319],[93.55339,8.12106],[93.55287,8.12008],[93.55345,8.11813],[93.55767,8.11226],[93.55867,8.11],[93.56087,8.10805],[93.56234,8.10875],[93.5654,8.11175],[93.5656,8.11272],[93.56474,8.11453],[93.56468,8.1166],[93.56767,8.11958],[93.56759,8.11852],[93.56503,8.11642],[93.56627,8.11156],[93.56459,8.10999],[93.56471,8.10858],[93.56316,8.10452],[93.56326,8.10312],[93.56002,8.09718],[93.56146,8.09421],[93.56149,8.09354],[93.56101,8.09359],[93.56076,8.09299],[93.56144,8.09164],[93.56229,8.09129],[93.56237,8.09188],[93.56147,8.09281],[93.56181,8.09312],[93.56377,8.09111],[93.56588,8.08769],[93.56994,8.08377],[93.57176,8.08273],[93.57195,8.08194],[93.57079,8.08016],[93.57217,8.07939],[93.57207,8.07621],[93.57265,8.07505],[93.57523,8.07413],[93.57756,8.07435],[93.57793,8.07524],[93.57821,8.07424],[93.57508,8.07379],[93.57151,8.07417],[93.5725,8.06989],[93.57487,8.06897],[93.5761,8.06753],[93.57411,8.06911],[93.57204,8.06983],[93.57002,8.07509],[93.56828,8.07563],[93.56484,8.07429],[93.56421,8.07363],[93.56259,8.06748],[93.56457,8.06152],[93.56771,8.05922],[93.56846,8.05727],[93.57107,8.05497],[93.57143,8.05342],[93.57389,8.04993],[93.57535,8.0497],[93.57716,8.04776],[93.5789,8.04705],[93.57807,8.04603],[93.57991,8.0428],[93.58118,8.04197],[93.58197,8.0391],[93.58305,8.0387],[93.58444,8.03922],[93.58476,8.03807],[93.58566,8.0387],[93.58544,8.0404],[93.58885,8.04227],[93.59087,8.04409],[93.59155,8.04986],[93.59135,8.05137],[93.59034,8.05184],[93.59032,8.05418],[93.5878,8.05976],[93.58577,8.06303],[93.58272,8.06621],[93.58191,8.06825],[93.58145,8.07373],[93.5832,8.0782],[93.581,8.08478],[93.58171,8.09004],[93.58157,8.0935],[93.5828,8.09431],[93.58291,8.09533],[93.58167,8.09607],[93.58057,8.09567],[93.57963,8.0946],[93.57951,8.09283],[93.57828,8.09205],[93.57832,8.09161],[93.57762,8.09173],[93.57797,8.09085],[93.57597,8.08994],[93.57569,8.09027],[93.57691,8.09114],[93.57544,8.09135],[93.57604,8.09169],[93.57597,8.09221],[93.57711,8.09181],[93.57722,8.09216],[93.57463,8.09314],[93.57395,8.0944],[93.57701,8.09323],[93.5775,8.09371],[93.57892,8.09292],[93.57932,8.0938],[93.57907,8.09472],[93.5805,8.09602],[93.58023,8.09739],[93.57986,8.09784],[93.57839,8.09726],[93.57711,8.09549],[93.5756,8.09498],[93.57572,8.09573],[93.5744,8.09568],[93.57261,8.09668],[93.57539,8.09676],[93.57415,8.09773],[93.5754,8.0979],[93.57537,8.09844],[93.57265,8.09962],[93.57513,8.09934],[93.57499,8.10015],[93.57358,8.10123],[93.57489,8.10095],[93.57472,8.10243],[93.57558,8.1009],[93.57553,8.0995],[93.57636,8.10017],[93.57632,8.09855],[93.57692,8.09844],[93.57655,8.09762],[93.57743,8.09691],[93.57991,8.09815],[93.58096,8.09643],[93.58312,8.0964],[93.58195,8.09825],[93.58148,8.10205],[93.57986,8.10771],[93.57952,8.10989],[93.58019,8.11022],[93.57893,8.11232],[93.57877,8.1138],[93.57659,8.11685],[93.57595,8.11916]]],[[[93.19396,8.18634],[93.19405,8.18643],[93.19407,8.18655],[93.19402,8.18663],[93.19393,8.18665],[93.19381,8.18663],[93.19374,8.18656],[93.19373,8.18648],[93.19373,8.18639],[93.19378,8.18631],[93.19387,8.1863],[93.19396,8.18634]]],[[[93.18827,8.19022],[93.18836,8.19028],[93.18837,8.19041],[93.18828,8.19061],[93.18809,8.1907],[93.18792,8.19069],[93.18784,8.19059],[93.18783,8.19049],[93.18794,8.19034],[93.1881,8.19022],[93.18827,8.19022]]],[[[93.19731,8.19024],[93.19741,8.19031],[93.19744,8.19042],[93.19741,8.1905],[93.19733,8.19056],[93.1972,8.19056],[93.1971,8.19049],[93.19707,8.19044],[93.19707,8.19036],[93.19711,8.19028],[93.19719,8.19023],[93.19731,8.19024]]],[[[93.17557,8.19372],[93.17557,8.1938],[93.17549,8.194],[93.17533,8.19415],[93.17513,8.19422],[93.17496,8.19421],[93.17487,8.19412],[93.1749,8.19394],[93.17522,8.19373],[93.17532,8.19369],[93.17551,8.19364],[93.17557,8.19372]]],[[[93.18632,8.19359],[93.18652,8.19372],[93.18657,8.19384],[93.18646,8.19402],[93.18634,8.19412],[93.18625,8.19416],[93.18617,8.19413],[93.18612,8.19405],[93.18603,8.19387],[93.18605,8.19369],[93.18619,8.19359],[93.18632,8.19359]]],[[[93.18823,8.19499],[93.18826,8.19512],[93.18825,8.19524],[93.18813,8.19538],[93.18802,8.19547],[93.18792,8.19547],[93.18779,8.19538],[93.18776,8.19528],[93.18782,8.19515],[93.18798,8.19501],[93.18814,8.19495],[93.18823,8.19499]]],[[[93.21134,8.1968],[93.21146,8.19697],[93.21146,8.19709],[93.21134,8.19716],[93.21117,8.19713],[93.21106,8.19704],[93.21103,8.1969],[93.21107,8.1968],[93.21117,8.19674],[93.21134,8.1968]]],[[[93.12698,8.216],[93.12711,8.21614],[93.12718,8.21629],[93.12708,8.21637],[93.12698,8.21639],[93.1268,8.21635],[93.12663,8.21635],[93.12653,8.21631],[93.12651,8.21619],[93.12649,8.21608],[93.12651,8.21603],[93.12656,8.21599],[93.12677,8.21595],[93.12698,8.216]]],[[[93.11743,8.21878],[93.11762,8.2189],[93.11767,8.21901],[93.11766,8.21912],[93.11757,8.21918],[93.11746,8.21919],[93.11735,8.21912],[93.1172,8.21897],[93.11717,8.21893],[93.11716,8.21887],[93.11724,8.2188],[93.11732,8.21876],[93.11743,8.21878]]],[[[93.11724,8.22],[93.11734,8.22006],[93.11735,8.22018],[93.11731,8.22029],[93.11726,8.22036],[93.11718,8.22037],[93.11709,8.22035],[93.11703,8.22027],[93.11705,8.22016],[93.11712,8.22006],[93.11718,8.22001],[93.11724,8.22]]],[[[93.22683,8.22468],[93.22675,8.22478],[93.22665,8.22486],[93.22657,8.22487],[93.22625,8.22461],[93.22622,8.2245],[93.22625,8.22438],[93.22632,8.22431],[93.22646,8.2243],[93.22658,8.22431],[93.22668,8.22427],[93.22675,8.22427],[93.22695,8.22431],[93.22706,8.22432],[93.22723,8.22444],[93.2273,8.22455],[93.22726,8.22471],[93.22719,8.22475],[93.22711,8.22471],[93.22696,8.22464],[93.22683,8.22468]]],[[[93.2344,8.2239],[93.23444,8.22394],[93.23442,8.22401],[93.23424,8.22417],[93.23419,8.22428],[93.23415,8.22433],[93.23407,8.22435],[93.23399,8.22433],[93.23383,8.22421],[93.23378,8.22412],[93.23377,8.22407],[93.23382,8.22399],[93.23394,8.22391],[93.23428,8.22387],[93.2344,8.2239]]],[[[93.2423,8.23278],[93.24236,8.23286],[93.24238,8.23296],[93.24234,8.23303],[93.24225,8.23305],[93.24217,8.23303],[93.24213,8.23295],[93.24211,8.23289],[93.24212,8.23282],[93.24215,8.23276],[93.24219,8.23275],[93.2423,8.23278]]],[[[93.24193,8.23371],[93.24198,8.23375],[93.24202,8.2338],[93.24199,8.23386],[93.24193,8.2339],[93.24183,8.23392],[93.2418,8.23388],[93.24178,8.23382],[93.2418,8.23377],[93.24185,8.23371],[93.24193,8.23371]]],[[[93.24213,8.23412],[93.24215,8.23416],[93.24214,8.23423],[93.24209,8.23428],[93.24204,8.23428],[93.24201,8.23426],[93.24198,8.23419],[93.242,8.23414],[93.24203,8.2341],[93.24207,8.23409],[93.24213,8.23412]]],[[[93.51331,8.23506],[93.51081,8.23517],[93.50932,8.23352],[93.51174,8.23116],[93.51454,8.23106],[93.51408,8.22974],[93.51008,8.23287],[93.5063,8.23232],[93.50508,8.23088],[93.4993,8.23045],[93.49714,8.22817],[93.48725,8.22499],[93.48193,8.22118],[93.48105,8.21634],[93.48244,8.20934],[93.47997,8.20496],[93.48068,8.20007],[93.47829,8.19745],[93.48081,8.19788],[93.48371,8.20056],[93.48672,8.19905],[93.49017,8.20295],[93.48675,8.19852],[93.48282,8.20001],[93.48191,8.19787],[93.47401,8.19557],[93.47004,8.1908],[93.46962,8.18544],[93.46949,8.19029],[93.46573,8.18437],[93.45668,8.18143],[93.44643,8.18096],[93.44241,8.17913],[93.43747,8.17038],[93.44053,8.16647],[93.44177,8.16113],[93.44592,8.15664],[93.44528,8.15072],[93.44816,8.15177],[93.4477,8.15328],[93.44991,8.15315],[93.44596,8.15019],[93.44658,8.14397],[93.44871,8.14271],[93.45178,8.14474],[93.45409,8.14412],[93.45455,8.14185],[93.45638,8.14071],[93.4486,8.13544],[93.4482,8.13355],[93.45101,8.11971],[93.45416,8.11908],[93.45511,8.12077],[93.45525,8.11953],[93.45812,8.11945],[93.4538,8.11636],[93.45736,8.11119],[93.45575,8.1121],[93.45405,8.11084],[93.45878,8.10211],[93.46893,8.09033],[93.47097,8.09667],[93.47198,8.09663],[93.48412,8.08826],[93.48786,8.09507],[93.48624,8.09286],[93.48784,8.09076],[93.48629,8.09087],[93.48391,8.08764],[93.47868,8.09167],[93.47704,8.08928],[93.47284,8.08713],[93.46972,8.08861],[93.47393,8.07913],[93.47518,8.07216],[93.47438,8.06825],[93.47567,8.06361],[93.47473,8.06005],[93.47575,8.0529],[93.47809,8.05363],[93.48049,8.05082],[93.48298,8.05238],[93.4852,8.06076],[93.48184,8.06297],[93.48192,8.06438],[93.48415,8.06434],[93.48619,8.06774],[93.48771,8.06551],[93.48934,8.06587],[93.49217,8.07018],[93.49523,8.07],[93.49708,8.07421],[93.5025,8.07538],[93.5018,8.07715],[93.50422,8.07969],[93.50296,8.08209],[93.50458,8.08566],[93.5094,8.08311],[93.5118,8.08567],[93.51401,8.08494],[93.51436,8.07966],[93.52116,8.08038],[93.51442,8.07506],[93.51579,8.06822],[93.51719,8.07037],[93.52163,8.06976],[93.5222,8.06856],[93.52086,8.06906],[93.52045,8.06535],[93.51765,8.06366],[93.51414,8.06412],[93.51494,8.05833],[93.51668,8.05642],[93.51569,8.05325],[93.51141,8.05226],[93.50852,8.04769],[93.50385,8.05003],[93.50531,8.05927],[93.50185,8.06901],[93.50028,8.06841],[93.49892,8.06504],[93.49937,8.05771],[93.49668,8.05904],[93.49656,8.05746],[93.49378,8.05752],[93.49372,8.05601],[93.49637,8.0556],[93.5,8.05218],[93.5,8.04972],[93.49834,8.05071],[93.49699,8.04558],[93.49911,8.03805],[93.49376,8.04603],[93.49255,8.04466],[93.49279,8.04157],[93.49014,8.04017],[93.48894,8.04235],[93.48388,8.04413],[93.48053,8.04727],[93.47663,8.04727],[93.47585,8.0461],[93.47724,8.04295],[93.47727,8.03791],[93.47609,8.03698],[93.477,8.03295],[93.47532,8.0316],[93.47697,8.02924],[93.47613,8.01843],[93.47746,8.01783],[93.47696,8.01606],[93.47962,8.00988],[93.47925,8.00672],[93.48107,8.00482],[93.48036,8.00286],[93.48323,8.00069],[93.48722,8.00139],[93.48814,7.9988],[93.49109,7.99845],[93.49226,7.99999],[93.49156,8.00142],[93.49273,8.00195],[93.49542,8.00013],[93.4962,8.00387],[93.49788,8.00435],[93.49731,8.00953],[93.49992,8.01154],[93.49912,8.01364],[93.49755,8.0139],[93.49781,8.01703],[93.50025,8.01573],[93.50172,8.01858],[93.50074,8.02176],[93.4964,8.0249],[93.49638,8.02993],[93.49845,8.03592],[93.50828,8.0364],[93.51079,8.03935],[93.51195,8.03573],[93.51445,8.03348],[93.51828,8.03837],[93.51807,8.04657],[93.52126,8.05059],[93.52726,8.0484],[93.52656,8.04626],[93.52852,8.04555],[93.5307,8.04007],[93.53943,8.03554],[93.5408,8.03614],[93.53965,8.04368],[93.53504,8.0501],[93.53631,8.05148],[93.53828,8.05042],[93.53843,8.05794],[93.53981,8.05819],[93.53913,8.05972],[93.54034,8.06019],[93.54316,8.06773],[93.54113,8.08114],[93.53826,8.08583],[93.53776,8.08999],[93.53,8.09215],[93.52667,8.09609],[93.52268,8.0983],[93.52111,8.10181],[93.52137,8.10684],[93.51916,8.10821],[93.51808,8.1146],[93.51487,8.11813],[93.51587,8.11978],[93.51468,8.12335],[93.51089,8.12625],[93.50899,8.1312],[93.50792,8.13057],[93.5064,8.13231],[93.50842,8.13172],[93.50704,8.13363],[93.50551,8.13529],[93.50448,8.13449],[93.505,8.13638],[93.50306,8.13893],[93.49279,8.14617],[93.4947,8.1475],[93.49316,8.14981],[93.49747,8.15113],[93.49831,8.15772],[93.50089,8.15764],[93.50225,8.159],[93.50286,8.16355],[93.5,8.16475],[93.50162,8.1702],[93.50868,8.17412],[93.50413,8.176],[93.50907,8.17442],[93.51054,8.17525],[93.51123,8.17332],[93.51301,8.17305],[93.52279,8.18468],[93.52278,8.18587],[93.52053,8.186],[93.52554,8.18711],[93.52612,8.18427],[93.52383,8.18088],[93.51767,8.17756],[93.51876,8.17661],[93.52526,8.17806],[93.52707,8.18016],[93.52902,8.18716],[93.52796,8.1928],[93.52979,8.19223],[93.53234,8.19404],[93.53653,8.2024],[93.53666,8.22417],[93.53463,8.229],[93.52707,8.23009],[93.52571,8.23174],[93.51642,8.23324],[93.51331,8.23506]]],[[[93.22662,8.26571],[93.22435,8.26583],[93.219,8.26419],[93.2158,8.26253],[93.21512,8.26154],[93.2142,8.26122],[93.21274,8.25964],[93.2126,8.25913],[93.21189,8.25882],[93.21126,8.25768],[93.21137,8.25664],[93.21066,8.2553],[93.21082,8.25443],[93.21032,8.25368],[93.21038,8.25276],[93.20969,8.2514],[93.21061,8.25069],[93.21019,8.24867],[93.21035,8.24681],[93.21216,8.24242],[93.21347,8.24074],[93.21407,8.23936],[93.21769,8.2355],[93.22035,8.23317],[93.22274,8.23227],[93.22427,8.23084],[93.22432,8.22884],[93.22624,8.22699],[93.2266,8.22573],[93.22756,8.22485],[93.22743,8.22421],[93.2295,8.2218],[93.22993,8.22215],[93.23004,8.22324],[93.23053,8.22383],[93.23023,8.22421],[93.23049,8.22451],[93.23234,8.22436],[93.23492,8.22508],[93.23535,8.22453],[93.23566,8.22507],[93.23635,8.22542],[93.23897,8.2258],[93.23916,8.2264],[93.24003,8.22641],[93.24063,8.22682],[93.24122,8.22939],[93.24087,8.22972],[93.2406,8.23095],[93.24059,8.23146],[93.24093,8.2318],[93.24029,8.23275],[93.24031,8.23357],[93.2407,8.23507],[93.24115,8.23564],[93.24087,8.2363],[93.24038,8.23652],[93.23993,8.2376],[93.23951,8.23768],[93.23927,8.23841],[93.24003,8.23963],[93.24006,8.24016],[93.23919,8.24027],[93.24001,8.24205],[93.23986,8.24271],[93.23865,8.24347],[93.23833,8.24446],[93.23869,8.24474],[93.23856,8.24512],[93.23808,8.24497],[93.23756,8.24584],[93.23771,8.24619],[93.23672,8.2498],[93.23509,8.25055],[93.23423,8.25357],[93.23313,8.25515],[93.23299,8.25647],[93.23231,8.25736],[93.23148,8.2596],[93.23074,8.25915],[93.2307,8.26084],[93.23011,8.26114],[93.23012,8.26218],[93.22894,8.26391],[93.22852,8.26508],[93.22662,8.26571]]],[[[93.2267,8.26671],[93.22675,8.26683],[93.22673,8.26694],[93.22663,8.267],[93.2265,8.26693],[93.22642,8.2668],[93.22651,8.26665],[93.22665,8.26663],[93.2267,8.26671]]],[[[93.11723,8.35651],[93.1156,8.3566],[93.11596,8.35566],[93.11487,8.3548],[93.11467,8.35553],[93.11324,8.35477],[93.11295,8.35585],[93.11344,8.3538],[93.11213,8.3522],[93.10933,8.35031],[93.10795,8.35094],[93.10702,8.35009],[93.10725,8.3509],[93.10664,8.3497],[93.10623,8.35058],[93.10326,8.34762],[93.09798,8.3492],[93.09855,8.34988],[93.09655,8.35003],[93.09629,8.35119],[93.09511,8.3501],[93.09495,8.34738],[93.09114,8.34709],[93.09154,8.34609],[93.08941,8.34242],[93.08742,8.3414],[93.08606,8.34196],[93.08698,8.34123],[93.08493,8.3408],[93.08371,8.33527],[93.08477,8.33155],[93.08419,8.32521],[93.07534,8.30701],[93.0733,8.29546],[93.07382,8.2906],[93.07508,8.28963],[93.0738,8.284],[93.07584,8.27346],[93.08732,8.25618],[93.08825,8.25522],[93.09012,8.25543],[93.08967,8.25333],[93.09099,8.25138],[93.08979,8.24879],[93.09134,8.24608],[93.09261,8.24634],[93.09362,8.24263],[93.1006,8.23662],[93.10218,8.23403],[93.10573,8.23379],[93.10633,8.2281],[93.10956,8.22682],[93.11162,8.22364],[93.11715,8.22211],[93.12002,8.2199],[93.12458,8.21921],[93.12697,8.2169],[93.13965,8.21082],[93.14348,8.20704],[93.14728,8.2061],[93.15184,8.20222],[93.15735,8.20104],[93.16446,8.20109],[93.16827,8.19928],[93.16902,8.1979],[93.17088,8.19789],[93.17818,8.19413],[93.1799,8.19531],[93.1856,8.19472],[93.1909,8.19612],[93.19242,8.1974],[93.19408,8.20207],[93.19583,8.21309],[93.19548,8.21519],[93.19283,8.2186],[93.18707,8.2214],[93.18598,8.2245],[93.18348,8.22639],[93.17092,8.23077],[93.16357,8.23562],[93.16152,8.23568],[93.15172,8.24105],[93.14899,8.24155],[93.12868,8.26087],[93.11972,8.2728],[93.11732,8.27903],[93.11732,8.283],[93.12373,8.29901],[93.12406,8.3159],[93.12905,8.32546],[93.13067,8.32654],[93.13179,8.33026],[93.13093,8.33831],[93.13183,8.34113],[93.13304,8.34176],[93.13351,8.34654],[93.13281,8.34626],[93.13246,8.34913],[93.13128,8.34795],[93.13087,8.34887],[93.12902,8.34821],[93.12543,8.34974],[93.12211,8.34828],[93.12096,8.34931],[93.12142,8.35099],[93.12076,8.35057],[93.1186,8.35254],[93.11854,8.3554],[93.11723,8.35651]]],[[[93.04971,8.44245],[93.0497,8.44271],[93.04958,8.44275],[93.04948,8.44262],[93.04942,8.44246],[93.04951,8.44236],[93.04971,8.44245]]],[[[93.04984,8.44302],[93.04982,8.44316],[93.04957,8.44321],[93.04945,8.44303],[93.0496,8.44297],[93.04984,8.44302]]],[[[93.05036,8.44378],[93.05022,8.44389],[93.05014,8.44367],[93.05013,8.44361],[93.05012,8.44364],[93.05015,8.44334],[93.05039,8.44341],[93.05036,8.44378]]],[[[93.04998,8.44453],[93.05006,8.44461],[93.05005,8.4447],[93.04991,8.44485],[93.04984,8.44485],[93.04972,8.44483],[93.04968,8.44473],[93.04972,8.44458],[93.0498,8.44451],[93.04998,8.44453]]],[[[93.05027,8.44473],[93.05033,8.44496],[93.05023,8.44511],[93.05009,8.44511],[93.04994,8.44497],[93.04989,8.44488],[93.04999,8.44477],[93.0501,8.44469],[93.05027,8.44473]]],[[[93.04981,8.44505],[93.04985,8.44512],[93.04983,8.44527],[93.04975,8.44535],[93.04966,8.44534],[93.04965,8.44523],[93.04968,8.44505],[93.04981,8.44505]]],[[[93.04976,8.44556],[93.04972,8.44572],[93.04962,8.44579],[93.04954,8.44576],[93.04952,8.44565],[93.04958,8.44549],[93.04969,8.44546],[93.04976,8.44556]]],[[[93.62565,8.39404],[93.62575,8.39408],[93.62589,8.39419],[93.62595,8.39426],[93.62599,8.39432],[93.62599,8.39441],[93.62598,8.39446],[93.62594,8.39449],[93.62588,8.39453],[93.62578,8.39454],[93.62567,8.3945],[93.62548,8.39428],[93.62542,8.39421],[93.62542,8.39416],[93.62544,8.39411],[93.62546,8.39406],[93.62552,8.39404],[93.62565,8.39404]]],[[[93.62734,8.39473],[93.62747,8.3948],[93.62753,8.39488],[93.62756,8.39493],[93.62754,8.39499],[93.62751,8.39502],[93.62741,8.39504],[93.62736,8.39503],[93.62731,8.39501],[93.62722,8.39493],[93.62719,8.39485],[93.62719,8.39478],[93.62723,8.39474],[93.62728,8.39472],[93.62734,8.39473]]],[[[93.62722,8.39512],[93.62728,8.39515],[93.62728,8.39519],[93.62728,8.39525],[93.62726,8.39531],[93.62723,8.39533],[93.6272,8.39534],[93.62716,8.39535],[93.62712,8.39535],[93.6271,8.39532],[93.62708,8.39526],[93.62714,8.39513],[93.62718,8.39512],[93.62722,8.39512]]],[[[93.6321,8.39478],[93.63199,8.39483],[93.63192,8.39489],[93.63189,8.39496],[93.63176,8.39514],[93.63169,8.39521],[93.63166,8.39522],[93.63156,8.39523],[93.63142,8.39518],[93.63135,8.39514],[93.63128,8.39506],[93.63123,8.39498],[93.63122,8.39492],[93.63121,8.39479],[93.63125,8.3947],[93.63132,8.39462],[93.63144,8.39453],[93.63159,8.3945],[93.63205,8.39449],[93.63236,8.39433],[93.63247,8.39425],[93.6327,8.3941],[93.63283,8.39408],[93.63295,8.39409],[93.63302,8.39414],[93.63308,8.39427],[93.63301,8.39433],[93.63281,8.39441],[93.63267,8.39452],[93.6326,8.39463],[93.63251,8.39473],[93.63226,8.39475],[93.6321,8.39478]]],[[[93.62614,8.39553],[93.62618,8.39554],[93.62623,8.39558],[93.62625,8.39573],[93.62625,8.39586],[93.62623,8.39592],[93.62619,8.39596],[93.62616,8.39596],[93.62612,8.39596],[93.62606,8.39593],[93.62604,8.39588],[93.62603,8.39582],[93.62602,8.39577],[93.62602,8.39563],[93.62605,8.39554],[93.62608,8.39553],[93.62614,8.39553]]],[[[93.6434,8.39454],[93.64318,8.39516],[93.64292,8.39532],[93.64259,8.39535],[93.64204,8.39524],[93.64105,8.39474],[93.64015,8.39465],[93.6397,8.39478],[93.63927,8.39522],[93.63905,8.39512],[93.63898,8.395],[93.63875,8.39501],[93.63831,8.39473],[93.63808,8.39469],[93.63763,8.3949],[93.63723,8.39478],[93.63694,8.39479],[93.63624,8.39516],[93.63599,8.39474],[93.63542,8.39478],[93.635,8.39497],[93.63467,8.3954],[93.63455,8.39546],[93.63442,8.39538],[93.63433,8.39498],[93.63388,8.39478],[93.6338,8.39455],[93.6342,8.39418],[93.63439,8.3938],[93.6346,8.39387],[93.63475,8.39416],[93.63491,8.39412],[93.63508,8.39395],[93.63523,8.39424],[93.63565,8.39415],[93.63585,8.39433],[93.63597,8.39428],[93.63641,8.39386],[93.63625,8.39351],[93.63638,8.39307],[93.63619,8.39298],[93.63642,8.3925],[93.63678,8.39215],[93.637,8.39171],[93.63731,8.39148],[93.63744,8.39125],[93.63785,8.39088],[93.63855,8.39099],[93.6389,8.39119],[93.63911,8.39121],[93.63922,8.39136],[93.63951,8.39121],[93.63971,8.39123],[93.63977,8.39109],[93.64022,8.39102],[93.64033,8.3911],[93.64037,8.39096],[93.64049,8.39097],[93.64074,8.39116],[93.64091,8.39105],[93.64127,8.39108],[93.64149,8.39093],[93.64159,8.3907],[93.64157,8.39007],[93.64208,8.38991],[93.64233,8.39034],[93.64251,8.39042],[93.64284,8.3904],[93.64296,8.39023],[93.64286,8.38995],[93.64303,8.38977],[93.64307,8.38956],[93.6433,8.38946],[93.64357,8.38921],[93.64375,8.38946],[93.644,8.38935],[93.64414,8.3894],[93.64435,8.39001],[93.64476,8.39048],[93.64521,8.39035],[93.64539,8.39069],[93.64552,8.39076],[93.64598,8.39058],[93.6464,8.39086],[93.64642,8.39106],[93.64614,8.39122],[93.64535,8.39126],[93.64482,8.39182],[93.64421,8.39218],[93.64401,8.39259],[93.64389,8.3927],[93.64406,8.39298],[93.6434,8.39454]]],[[[93.6248,8.39794],[93.62466,8.39794],[93.62458,8.3979],[93.62456,8.39784],[93.62456,8.39776],[93.62457,8.39765],[93.62463,8.39748],[93.62464,8.39737],[93.62462,8.39697],[93.62463,8.39683],[93.62466,8.39672],[93.62472,8.39662],[93.62479,8.39656],[93.62486,8.39653],[93.62496,8.39655],[93.62506,8.39663],[93.6251,8.39667],[93.62515,8.39672],[93.62521,8.39673],[93.62539,8.39676],[93.62546,8.39681],[93.62554,8.39696],[93.62555,8.39705],[93.62555,8.39715],[93.62548,8.39724],[93.62544,8.39733],[93.62538,8.39738],[93.62535,8.39746],[93.62531,8.39778],[93.62524,8.39786],[93.62514,8.3979],[93.62486,8.39791],[93.6248,8.39794]]],[[[93.62324,8.39791],[93.62328,8.39794],[93.6233,8.39797],[93.6233,8.39803],[93.6233,8.3981],[93.62327,8.39816],[93.62324,8.39818],[93.6232,8.39819],[93.62315,8.39818],[93.62312,8.39816],[93.6231,8.39812],[93.6231,8.39809],[93.62315,8.39794],[93.62319,8.39791],[93.62324,8.39791]]],[[[93.62311,8.39836],[93.62316,8.39839],[93.62318,8.39851],[93.62318,8.39857],[93.62317,8.39861],[93.62316,8.39863],[93.62313,8.39865],[93.62309,8.39865],[93.62303,8.39864],[93.62299,8.39861],[93.62297,8.39855],[93.62298,8.39842],[93.62302,8.39837],[93.62305,8.39836],[93.62311,8.39836]]],[[[93.62435,8.39703],[93.6244,8.39709],[93.6244,8.39746],[93.62443,8.39769],[93.62445,8.39778],[93.62444,8.39786],[93.62439,8.39795],[93.6243,8.398],[93.62422,8.39811],[93.62413,8.39836],[93.62407,8.39846],[93.62406,8.39855],[93.624,8.39859],[93.62394,8.3986],[93.62388,8.39859],[93.62382,8.39851],[93.6238,8.39836],[93.62379,8.39813],[93.62372,8.39796],[93.6237,8.39787],[93.62371,8.39778],[93.62372,8.39769],[93.62379,8.39761],[93.62384,8.39751],[93.62393,8.39745],[93.62407,8.39734],[93.62412,8.39725],[93.62417,8.3971],[93.62421,8.39705],[93.62428,8.39703],[93.62435,8.39703]]],[[[93.62348,8.39837],[93.62353,8.3984],[93.62358,8.39851],[93.62358,8.39862],[93.62356,8.39867],[93.62352,8.39869],[93.62347,8.3987],[93.62343,8.39869],[93.6234,8.39866],[93.62337,8.39862],[93.62334,8.39856],[93.62334,8.3985],[93.62335,8.39844],[93.62338,8.3984],[93.62342,8.39837],[93.62348,8.39837]]],[[[93.62328,8.39885],[93.62332,8.3989],[93.62332,8.39896],[93.62331,8.399],[93.62329,8.39904],[93.62325,8.39906],[93.62317,8.39907],[93.62313,8.39905],[93.6231,8.39903],[93.62309,8.39898],[93.62309,8.39895],[93.62312,8.3989],[93.62315,8.39886],[93.62322,8.39885],[93.62328,8.39885]]],[[[93.62341,8.39918],[93.62342,8.3992],[93.62343,8.39925],[93.62342,8.3993],[93.6234,8.39934],[93.62337,8.39936],[93.62331,8.39939],[93.62328,8.39939],[93.62326,8.39939],[93.62321,8.39939],[93.62318,8.39936],[93.62318,8.39932],[93.62318,8.39927],[93.62321,8.39923],[93.62325,8.39919],[93.62333,8.39916],[93.62341,8.39918]]],[[[93.62262,8.40029],[93.62267,8.40031],[93.6227,8.40036],[93.6227,8.4004],[93.62267,8.40044],[93.62262,8.40048],[93.62259,8.4005],[93.62247,8.4005],[93.62241,8.40049],[93.62237,8.40045],[93.62236,8.40041],[93.62237,8.40034],[93.62244,8.4003],[93.62256,8.40029],[93.62262,8.40029]]],[[[93.62307,8.40014],[93.62312,8.40018],[93.62315,8.40024],[93.62315,8.40034],[93.62315,8.4004],[93.62315,8.40048],[93.6231,8.40054],[93.62304,8.40055],[93.62298,8.40054],[93.62293,8.4005],[93.62289,8.40045],[93.62288,8.40035],[93.6229,8.40027],[93.62292,8.4002],[93.62296,8.40016],[93.623,8.40013],[93.62307,8.40014]]],[[[93.62281,8.40064],[93.62285,8.40067],[93.62286,8.40072],[93.62287,8.40078],[93.62286,8.40083],[93.62284,8.40088],[93.6228,8.40092],[93.62277,8.40097],[93.62274,8.40099],[93.6227,8.401],[93.62266,8.40098],[93.62265,8.40093],[93.62264,8.40087],[93.62264,8.40081],[93.62266,8.40076],[93.6227,8.4007],[93.62274,8.40068],[93.62278,8.40064],[93.62281,8.40064]]],[[[93.62229,8.40092],[93.62232,8.40097],[93.62234,8.40102],[93.62234,8.40107],[93.62233,8.40111],[93.6223,8.40115],[93.62225,8.40116],[93.6222,8.40115],[93.62216,8.40111],[93.62213,8.40107],[93.62212,8.40102],[93.62213,8.40097],[93.62217,8.40092],[93.62222,8.40088],[93.62229,8.40092]]],[[[93.62254,8.40182],[93.6226,8.40184],[93.62265,8.40188],[93.62267,8.40193],[93.62266,8.40198],[93.62266,8.40203],[93.62262,8.40206],[93.62257,8.40207],[93.62251,8.40208],[93.62246,8.40208],[93.62241,8.40206],[93.62238,8.40202],[93.62235,8.40197],[93.62235,8.40192],[93.62238,8.40187],[93.62239,8.40184],[93.62246,8.40182],[93.62254,8.40182]]],[[[93.04442,8.46417],[93.04258,8.46617],[93.04156,8.4669],[93.04057,8.46838],[93.03972,8.46893],[93.0357,8.47279],[93.03417,8.47338],[93.03267,8.47273],[93.03063,8.47114],[93.02887,8.46796],[93.02901,8.46753],[93.02532,8.45959],[93.02548,8.45899],[93.0249,8.45694],[93.02454,8.45225],[93.02535,8.45089],[93.02588,8.44868],[93.02655,8.44739],[93.02854,8.4452],[93.03341,8.44158],[93.03648,8.44128],[93.0382,8.44005],[93.04209,8.43962],[93.04466,8.44004],[93.04473,8.44028],[93.04504,8.4401],[93.046,8.44015],[93.04713,8.44029],[93.04734,8.44062],[93.04773,8.44051],[93.04833,8.44166],[93.04917,8.44238],[93.04969,8.44362],[93.04952,8.44552],[93.04857,8.44619],[93.04737,8.44656],[93.04768,8.4467],[93.0474,8.44717],[93.04753,8.44747],[93.04698,8.44776],[93.04692,8.44883],[93.04666,8.44905],[93.04647,8.44997],[93.04676,8.45355],[93.04793,8.45697],[93.04778,8.46003],[93.0465,8.46247],[93.04653,8.46313],[93.04558,8.46368],[93.04513,8.46358],[93.04442,8.46417]]],[[[93.61388,8.41776],[93.61396,8.41783],[93.61407,8.41797],[93.61419,8.41818],[93.61426,8.41837],[93.61426,8.41846],[93.61423,8.41854],[93.6142,8.41861],[93.61389,8.41876],[93.61367,8.41888],[93.6136,8.41891],[93.61353,8.41893],[93.61345,8.41891],[93.61343,8.41886],[93.61343,8.41882],[93.61347,8.41874],[93.61347,8.41873],[93.61358,8.41857],[93.61367,8.41838],[93.61361,8.41818],[93.61359,8.4181],[93.61359,8.41802],[93.61361,8.41791],[93.61365,8.41783],[93.61369,8.41779],[93.61378,8.41775],[93.61388,8.41776]]],[[[93.61324,8.41949],[93.61329,8.41954],[93.61331,8.41962],[93.6133,8.4197],[93.61321,8.41979],[93.61314,8.41994],[93.61311,8.42003],[93.613,8.42003],[93.6129,8.41995],[93.61287,8.41984],[93.61288,8.41972],[93.6129,8.41964],[93.61295,8.41958],[93.61305,8.41951],[93.61314,8.41949],[93.61324,8.41949]]],[[[93.61309,8.42063],[93.61295,8.42071],[93.61277,8.42084],[93.61267,8.42097],[93.6126,8.42102],[93.61249,8.42103],[93.61242,8.42099],[93.61241,8.42094],[93.61241,8.42085],[93.61247,8.42076],[93.61267,8.42043],[93.6127,8.42032],[93.61275,8.42024],[93.6128,8.42021],[93.61285,8.42021],[93.61299,8.42033],[93.61305,8.42038],[93.61315,8.42043],[93.61323,8.42048],[93.61326,8.42054],[93.61326,8.42057],[93.61323,8.42061],[93.61309,8.42063]]],[[[93.6137,8.42072],[93.61377,8.42079],[93.61378,8.42087],[93.61376,8.42096],[93.6137,8.42102],[93.61363,8.42106],[93.61358,8.42107],[93.61354,8.42106],[93.61348,8.42103],[93.61345,8.42095],[93.61345,8.42087],[93.61346,8.42082],[93.61356,8.42074],[93.61362,8.42071],[93.6137,8.42072]]],[[[93.61261,8.42266],[93.61268,8.42272],[93.61271,8.42281],[93.61271,8.4229],[93.6127,8.42297],[93.61264,8.42302],[93.61257,8.42302],[93.61251,8.42299],[93.61246,8.42293],[93.61242,8.42286],[93.61246,8.42276],[93.61249,8.42266],[93.61255,8.42264],[93.61261,8.42266]]],[[[93.60647,8.43228],[93.60654,8.43232],[93.60657,8.43237],[93.60657,8.43243],[93.60655,8.43248],[93.60652,8.43253],[93.60645,8.43256],[93.60637,8.43258],[93.60629,8.43258],[93.60621,8.43255],[93.60617,8.4325],[93.60617,8.43246],[93.60617,8.4324],[93.60625,8.43232],[93.60634,8.43228],[93.60647,8.43228]]],[[[93.60746,8.43602],[93.60749,8.43606],[93.60749,8.43613],[93.60745,8.4362],[93.60737,8.43624],[93.60719,8.43632],[93.60708,8.43633],[93.6069,8.43633],[93.60677,8.43633],[93.60664,8.43629],[93.60654,8.43625],[93.60645,8.43619],[93.60642,8.43611],[93.6064,8.43604],[93.60645,8.4359],[93.60648,8.43588],[93.60657,8.43588],[93.60669,8.4359],[93.60679,8.43595],[93.60692,8.43599],[93.60704,8.43601],[93.60716,8.436],[93.60726,8.43598],[93.60738,8.43598],[93.60746,8.43602]]],[[[93.60769,8.45767],[93.60756,8.45772],[93.60729,8.45772],[93.60714,8.4577],[93.60686,8.45771],[93.60672,8.45773],[93.60629,8.45785],[93.60605,8.4578],[93.60596,8.45776],[93.60586,8.45768],[93.6058,8.45759],[93.60579,8.4575],[93.6058,8.45741],[93.60583,8.45739],[93.60591,8.45739],[93.60603,8.45745],[93.60621,8.45745],[93.60627,8.45744],[93.60641,8.45735],[93.60662,8.45704],[93.60672,8.45693],[93.6068,8.45687],[93.60687,8.45679],[93.607,8.45671],[93.60714,8.45672],[93.60721,8.45676],[93.60723,8.45683],[93.60725,8.45703],[93.6073,8.45712],[93.6074,8.4572],[93.60779,8.45723],[93.60785,8.45725],[93.6079,8.45731],[93.6079,8.45743],[93.60786,8.4575],[93.60769,8.45767]]],[[[93.61076,8.45922],[93.61102,8.45927],[93.61111,8.45929],[93.61122,8.45931],[93.61139,8.45937],[93.6114,8.45946],[93.61135,8.4596],[93.61122,8.45971],[93.61108,8.45974],[93.61094,8.45972],[93.61055,8.45953],[93.61045,8.45945],[93.6104,8.45936],[93.61041,8.45928],[93.61055,8.45921],[93.61076,8.45922]]],[[[93.62568,8.47024],[93.62581,8.47029],[93.62593,8.47038],[93.62597,8.47049],[93.62597,8.47058],[93.62593,8.47069],[93.62583,8.47078],[93.62561,8.47089],[93.62545,8.47102],[93.62536,8.4711],[93.62527,8.47116],[93.62519,8.47118],[93.6251,8.47118],[93.625,8.47113],[93.62496,8.47106],[93.62498,8.47095],[93.62507,8.47085],[93.62525,8.47072],[93.62534,8.47048],[93.62541,8.47033],[93.62547,8.47027],[93.62555,8.47023],[93.62568,8.47024]]],[[[93.60355,8.48718],[93.60344,8.48721],[93.60336,8.48727],[93.6033,8.48735],[93.60327,8.48748],[93.6032,8.48752],[93.60313,8.48752],[93.60309,8.48748],[93.60306,8.48741],[93.60306,8.48726],[93.60303,8.48718],[93.60298,8.48709],[93.60271,8.48685],[93.60261,8.48682],[93.60255,8.48677],[93.6025,8.48673],[93.60247,8.48664],[93.60248,8.48653],[93.60258,8.48648],[93.60263,8.48643],[93.60266,8.48627],[93.60269,8.4862],[93.60273,8.48618],[93.60284,8.48617],[93.60299,8.48623],[93.60312,8.48634],[93.60319,8.48644],[93.60322,8.48653],[93.60329,8.48661],[93.60337,8.48665],[93.60342,8.48667],[93.60354,8.48668],[93.60382,8.48668],[93.60391,8.48671],[93.60396,8.48677],[93.60397,8.48685],[93.60396,8.48704],[93.60386,8.48714],[93.60383,8.48715],[93.60363,8.48716],[93.60355,8.48718]]],[[[93.62928,8.48702],[93.62932,8.48711],[93.62931,8.4872],[93.62924,8.48726],[93.62916,8.48729],[93.62907,8.48739],[93.62903,8.48751],[93.62897,8.48771],[93.6288,8.48769],[93.62873,8.48764],[93.62876,8.48755],[93.6288,8.48739],[93.62885,8.48728],[93.62895,8.48724],[93.629,8.48715],[93.62905,8.48701],[93.62917,8.48697],[93.62928,8.48702]]],[[[93.62852,8.48793],[93.6287,8.48792],[93.62866,8.48809],[93.6285,8.48817],[93.62835,8.48814],[93.62831,8.4881],[93.62835,8.488],[93.62845,8.48793],[93.62852,8.48793]]],[[[93.60578,8.49828],[93.60593,8.49842],[93.60598,8.49846],[93.60605,8.49848],[93.60611,8.49852],[93.60614,8.49858],[93.60615,8.49861],[93.60614,8.49867],[93.60611,8.49871],[93.60607,8.49875],[93.60601,8.49877],[93.60594,8.49877],[93.60587,8.49875],[93.60567,8.49854],[93.60558,8.49849],[93.60556,8.49842],[93.60556,8.49837],[93.60559,8.49828],[93.60565,8.49825],[93.60578,8.49828]]],[[[93.61411,8.50205],[93.61399,8.50207],[93.6139,8.50198],[93.61386,8.50183],[93.61393,8.50167],[93.61412,8.50158],[93.61437,8.50157],[93.6145,8.50161],[93.61454,8.50173],[93.61454,8.50187],[93.61449,8.50199],[93.61437,8.50201],[93.61425,8.50195],[93.61411,8.50205]]],[[[93.61441,8.50243],[93.61446,8.50243],[93.61452,8.50246],[93.61466,8.50251],[93.6147,8.50254],[93.61474,8.50258],[93.61476,8.50261],[93.61476,8.50265],[93.61474,8.50267],[93.6147,8.5027],[93.61461,8.50272],[93.61435,8.50273],[93.61426,8.50272],[93.61421,8.50268],[93.6142,8.50264],[93.61421,8.50258],[93.61424,8.50252],[93.61436,8.50243],[93.61441,8.50243]]],[[[93.62439,8.50296],[93.62443,8.50297],[93.62446,8.503],[93.62447,8.50303],[93.62448,8.50306],[93.62448,8.5031],[93.62447,8.50314],[93.62445,8.50316],[93.62442,8.50317],[93.62439,8.50316],[93.62436,8.50313],[93.62433,8.50309],[93.62432,8.50306],[93.6243,8.50304],[93.62429,8.50301],[93.6243,8.50298],[93.62432,8.50296],[93.62435,8.50296],[93.62439,8.50296]]],[[[93.62419,8.50325],[93.62419,8.50331],[93.62417,8.50334],[93.62415,8.50335],[93.62413,8.50337],[93.62408,8.50338],[93.62403,8.50337],[93.62401,8.50334],[93.62399,8.50331],[93.624,8.50326],[93.62402,8.50322],[93.62404,8.50319],[93.62407,8.50317],[93.6241,8.50314],[93.62413,8.50313],[93.62416,8.50313],[93.62417,8.50314],[93.62418,8.50316],[93.62417,8.50319],[93.62418,8.50323],[93.62418,8.50322],[93.62419,8.50325]]],[[[93.61454,8.50437],[93.61458,8.50439],[93.61459,8.50444],[93.61457,8.50452],[93.61455,8.50458],[93.61452,8.5046],[93.61447,8.50461],[93.61443,8.50458],[93.61441,8.50452],[93.61443,8.50447],[93.61446,8.5044],[93.61451,8.50437],[93.61454,8.50437]]],[[[93.61497,8.50464],[93.61501,8.50468],[93.61502,8.50472],[93.615,8.50479],[93.61497,8.50485],[93.61491,8.50492],[93.61484,8.50496],[93.61477,8.50498],[93.61474,8.50498],[93.61469,8.50496],[93.61466,8.50492],[93.61465,8.50486],[93.61467,8.50481],[93.6147,8.50475],[93.61474,8.50471],[93.61479,8.50467],[93.61484,8.50465],[93.6149,8.50463],[93.61497,8.50464]]],[[[93.61439,8.50482],[93.61444,8.50486],[93.61447,8.50489],[93.61447,8.5049],[93.61447,8.50494],[93.61446,8.50497],[93.61444,8.50501],[93.61442,8.50502],[93.61436,8.50508],[93.61434,8.5051],[93.61431,8.50511],[93.61429,8.50512],[93.61426,8.50511],[93.61426,8.50509],[93.61424,8.50508],[93.61423,8.50505],[93.61421,8.50503],[93.61421,8.505],[93.61421,8.50499],[93.61421,8.50497],[93.61422,8.50495],[93.61427,8.50491],[93.61429,8.50489],[93.6143,8.50488],[93.61431,8.50483],[93.61433,8.50482],[93.61436,8.50481],[93.61439,8.50482]]],[[[93.61462,8.50526],[93.61467,8.50533],[93.61465,8.50543],[93.61463,8.50557],[93.61459,8.50565],[93.6145,8.50565],[93.6144,8.5056],[93.61434,8.50551],[93.61434,8.50543],[93.61441,8.50534],[93.61448,8.50528],[93.61457,8.50524],[93.61462,8.50526]]],[[[93.61406,8.50548],[93.61409,8.5055],[93.61412,8.50551],[93.61415,8.50554],[93.61416,8.50558],[93.61416,8.50563],[93.61416,8.50566],[93.61414,8.5057],[93.61411,8.50572],[93.6141,8.50574],[93.61408,8.50575],[93.61405,8.50577],[93.61401,8.50579],[93.61398,8.50579],[93.61394,8.50579],[93.61391,8.50576],[93.6139,8.50573],[93.6139,8.5057],[93.61389,8.50567],[93.61389,8.50563],[93.6139,8.5056],[93.61391,8.50556],[93.61393,8.50553],[93.61394,8.50551],[93.61396,8.5055],[93.61399,8.50549],[93.61402,8.50548],[93.61406,8.50548]]],[[[93.6231,8.50494],[93.62304,8.50501],[93.62298,8.50506],[93.6229,8.50509],[93.62284,8.50508],[93.62282,8.50504],[93.62282,8.50501],[93.62283,8.50495],[93.62288,8.50489],[93.62293,8.50484],[93.62298,8.50481],[93.62305,8.50479],[93.62309,8.50478],[93.62313,8.5048],[93.62314,8.50483],[93.62314,8.50486],[93.62313,8.50486],[93.6231,8.50494]]],[[[93.62215,8.5079],[93.62212,8.50792],[93.62205,8.50793],[93.62194,8.50791],[93.62189,8.50789],[93.62185,8.50786],[93.62183,8.50782],[93.62184,8.50778],[93.62188,8.50774],[93.62194,8.50771],[93.622,8.50771],[93.62207,8.50773],[93.62212,8.50778],[93.62214,8.50781],[93.62215,8.50786],[93.62214,8.50786],[93.62215,8.5079]]],[[[93.60826,8.52239],[93.60832,8.52239],[93.60837,8.52242],[93.6084,8.52245],[93.60841,8.52248],[93.6084,8.52252],[93.60838,8.52257],[93.60829,8.52264],[93.6082,8.52268],[93.60815,8.52271],[93.60811,8.52274],[93.60807,8.52283],[93.60805,8.52285],[93.60803,8.52287],[93.608,8.52288],[93.60797,8.52287],[93.60794,8.52286],[93.60791,8.52283],[93.60789,8.5228],[93.60787,8.52276],[93.60786,8.52271],[93.60787,8.52267],[93.60789,8.52263],[93.60792,8.52259],[93.60804,8.52248],[93.6081,8.52244],[93.60815,8.52241],[93.60821,8.52239],[93.60826,8.52239]]],[[[93.60998,8.52297],[93.61001,8.52302],[93.61002,8.52315],[93.61,8.52322],[93.60999,8.5233],[93.60995,8.52335],[93.60988,8.52337],[93.60981,8.52334],[93.60977,8.52326],[93.60977,8.52315],[93.60979,8.52307],[93.60982,8.523],[93.60989,8.52296],[93.60998,8.52297]]],[[[93.61089,8.52628],[93.61093,8.5263],[93.61095,8.52636],[93.61095,8.52643],[93.6109,8.52652],[93.61082,8.52661],[93.61072,8.52677],[93.61069,8.52682],[93.61066,8.52685],[93.61063,8.52686],[93.61059,8.52685],[93.61058,8.52683],[93.61057,8.52678],[93.61059,8.52673],[93.61062,8.52668],[93.61066,8.52664],[93.61067,8.52661],[93.61068,8.52654],[93.61069,8.52647],[93.61073,8.52638],[93.61077,8.52631],[93.61081,8.52628],[93.61084,8.52627],[93.61089,8.52628]]],[[[93.60893,8.52803],[93.60889,8.52805],[93.60884,8.52806],[93.6088,8.52806],[93.60877,8.52806],[93.60874,8.52804],[93.60872,8.52802],[93.60872,8.52799],[93.60874,8.52795],[93.60882,8.52788],[93.60887,8.52787],[93.60898,8.52785],[93.60907,8.52784],[93.60911,8.52784],[93.60914,8.52785],[93.60917,8.52788],[93.6092,8.5279],[93.60921,8.52792],[93.60922,8.52794],[93.60922,8.52796],[93.60921,8.52798],[93.60919,8.528],[93.60915,8.52802],[93.6091,8.52803],[93.609,8.52803],[93.60896,8.52802],[93.60893,8.52803]]],[[[93.61966,8.5275],[93.6197,8.52757],[93.61971,8.52763],[93.61969,8.52768],[93.61965,8.52769],[93.61959,8.52768],[93.61951,8.52765],[93.61945,8.52757],[93.61941,8.52749],[93.61939,8.52742],[93.61939,8.52734],[93.61942,8.5273],[93.61945,8.52727],[93.61951,8.52727],[93.61955,8.5273],[93.61959,8.52734],[93.61962,8.52742],[93.61962,8.52741],[93.61966,8.5275]]],[[[93.61548,8.52945],[93.61545,8.52949],[93.61539,8.52955],[93.61532,8.52958],[93.61522,8.52956],[93.61513,8.5295],[93.61512,8.52945],[93.61512,8.52936],[93.61519,8.52929],[93.61528,8.52926],[93.61535,8.52925],[93.61541,8.52926],[93.61546,8.52928],[93.61549,8.52931],[93.61549,8.52938],[93.61549,8.52937],[93.61548,8.52945]]],[[[93.61371,8.53041],[93.61379,8.53043],[93.61383,8.53048],[93.61388,8.53056],[93.61389,8.53065],[93.61386,8.5307],[93.61381,8.53074],[93.61373,8.53077],[93.61369,8.53077],[93.61361,8.53072],[93.61357,8.53066],[93.61356,8.53057],[93.61357,8.53052],[93.6136,8.53046],[93.61364,8.53041],[93.61372,8.5304],[93.61371,8.53041]]],[[[93.613,8.53267],[93.61306,8.53269],[93.61311,8.53274],[93.61314,8.53279],[93.61314,8.53285],[93.61313,8.5329],[93.6131,8.53293],[93.61301,8.53294],[93.61295,8.53292],[93.6129,8.53289],[93.61286,8.53278],[93.61285,8.53278],[93.61286,8.53272],[93.61289,8.53269],[93.61294,8.53268],[93.613,8.53267]]],[[[93.61215,8.53674],[93.61219,8.53676],[93.61223,8.53683],[93.61224,8.5369],[93.61224,8.53696],[93.61222,8.53701],[93.61219,8.53711],[93.61218,8.53719],[93.61216,8.53723],[93.61212,8.53726],[93.61205,8.53728],[93.61199,8.53726],[93.61196,8.53722],[93.61196,8.53717],[93.61198,8.53712],[93.61201,8.53707],[93.61204,8.53694],[93.61205,8.53688],[93.61207,8.53678],[93.6121,8.53674],[93.61215,8.53674]]],[[[93.60247,8.53861],[93.60251,8.53865],[93.60255,8.53869],[93.60257,8.53875],[93.60259,8.53881],[93.60261,8.53887],[93.60266,8.5389],[93.6027,8.53892],[93.60279,8.53892],[93.60284,8.53892],[93.6029,8.53894],[93.60294,8.53898],[93.60295,8.53903],[93.60294,8.53909],[93.6029,8.53914],[93.60285,8.53917],[93.60266,8.53924],[93.60262,8.53926],[93.60257,8.5393],[93.60251,8.53932],[93.60238,8.53934],[93.60233,8.53931],[93.60229,8.53927],[93.60227,8.53923],[93.60226,8.53917],[93.60226,8.53911],[93.60229,8.53907],[93.60234,8.53903],[93.60236,8.53897],[93.60236,8.53892],[93.60234,8.53886],[93.60233,8.53876],[93.60233,8.5387],[93.60236,8.53865],[93.60239,8.53863],[93.60243,8.53861],[93.60247,8.53861]]],[[[93.61258,8.53844],[93.61257,8.53851],[93.61255,8.53863],[93.61254,8.5387],[93.61251,8.53873],[93.61247,8.53875],[93.61241,8.53875],[93.61236,8.53874],[93.61231,8.53871],[93.61229,8.53866],[93.6123,8.5386],[93.61241,8.53841],[93.61241,8.53842],[93.61244,8.53837],[93.61248,8.53832],[93.61251,8.53831],[93.61256,8.53831],[93.61258,8.53832],[93.61259,8.53835],[93.61259,8.5384],[93.61258,8.53844]]],[[[93.60054,8.54963],[93.60058,8.54965],[93.60061,8.54969],[93.60063,8.54972],[93.60063,8.54981],[93.60061,8.54989],[93.60058,8.54992],[93.60054,8.54994],[93.6005,8.54995],[93.60044,8.54995],[93.60041,8.54993],[93.60037,8.5499],[93.60035,8.54987],[93.60034,8.54983],[93.60033,8.54979],[93.60032,8.54975],[93.60033,8.54971],[93.60036,8.54968],[93.6004,8.54965],[93.60044,8.54963],[93.60049,8.54962],[93.60054,8.54963]]],[[[93.61013,8.54935],[93.61018,8.54939],[93.61023,8.54945],[93.61028,8.54948],[93.61043,8.54951],[93.61047,8.54956],[93.61049,8.54963],[93.61049,8.5497],[93.61045,8.54974],[93.61038,8.54978],[93.6103,8.54984],[93.61021,8.54995],[93.61015,8.55001],[93.61005,8.55003],[93.60998,8.54998],[93.60991,8.5499],[93.6099,8.54976],[93.6099,8.54965],[93.60993,8.54955],[93.60995,8.54942],[93.61001,8.54935],[93.61008,8.54933],[93.61013,8.54935]]],[[[93.60938,8.55053],[93.60945,8.55061],[93.60952,8.55069],[93.60954,8.55077],[93.60956,8.55082],[93.60954,8.55089],[93.60948,8.55097],[93.60945,8.55101],[93.60941,8.55107],[93.60938,8.55111],[93.60934,8.55115],[93.60931,8.55114],[93.60927,8.55111],[93.60924,8.55103],[93.60925,8.55089],[93.60924,8.55081],[93.60919,8.55069],[93.60919,8.55064],[93.60919,8.55059],[93.60921,8.55055],[93.60926,8.55052],[93.60932,8.55051],[93.60938,8.55053]]],[[[93.5999,8.55791],[93.59993,8.55793],[93.59991,8.55799],[93.59989,8.55804],[93.59985,8.55805],[93.59979,8.55805],[93.59976,8.55803],[93.59978,8.55796],[93.59983,8.55791],[93.59986,8.5579],[93.5999,8.55791]]],[[[93.59998,8.5582],[93.60002,8.55822],[93.60003,8.55827],[93.59991,8.5584],[93.59984,8.55845],[93.5998,8.55847],[93.59973,8.55845],[93.59967,8.55839],[93.59967,8.55833],[93.59972,8.55827],[93.59981,8.55822],[93.59989,8.5582],[93.59998,8.5582]]],[[[93.60007,8.55853],[93.60008,8.55857],[93.60005,8.55861],[93.60001,8.55865],[93.59996,8.55866],[93.59991,8.55864],[93.59991,8.5586],[93.59993,8.55856],[93.60004,8.5585],[93.60007,8.55853]]],[[[93.59953,8.55844],[93.59955,8.55846],[93.59957,8.55847],[93.59958,8.55849],[93.59959,8.55851],[93.59959,8.55854],[93.59959,8.55865],[93.59959,8.55867],[93.59957,8.5587],[93.59956,8.55871],[93.59954,8.55873],[93.59951,8.55873],[93.59949,8.55872],[93.59947,8.55871],[93.59946,8.55869],[93.59945,8.55867],[93.59943,8.55862],[93.59943,8.5586],[93.59942,8.55857],[93.59942,8.55854],[93.59943,8.5585],[93.59945,8.55847],[93.59946,8.55845],[93.5995,8.55844],[93.59953,8.55844]]],[[[93.61114,8.55811],[93.6112,8.55821],[93.61122,8.55833],[93.61118,8.55838],[93.61112,8.55838],[93.611,8.5583],[93.61092,8.55815],[93.61094,8.55807],[93.61098,8.55804],[93.61105,8.55806],[93.61105,8.55805],[93.61114,8.55811]]],[[[93.61036,8.55831],[93.61039,8.55834],[93.61042,8.55839],[93.61045,8.55843],[93.61045,8.55848],[93.61045,8.55855],[93.61044,8.55861],[93.61042,8.55865],[93.61039,8.55869],[93.61034,8.55871],[93.61026,8.55871],[93.61022,8.55867],[93.61019,8.55864],[93.61019,8.55851],[93.61022,8.55843],[93.61023,8.55839],[93.61026,8.55834],[93.61028,8.55831],[93.61032,8.5583],[93.61036,8.55831]]],[[[93.61099,8.55835],[93.61103,8.55839],[93.61106,8.55843],[93.61108,8.55847],[93.61109,8.55853],[93.61108,8.5586],[93.61107,8.55865],[93.61106,8.5587],[93.61103,8.55874],[93.61098,8.55876],[93.6109,8.55876],[93.61085,8.55872],[93.61083,8.55868],[93.61083,8.55855],[93.61086,8.55848],[93.61087,8.55844],[93.61089,8.55839],[93.61092,8.55835],[93.61096,8.55835],[93.61099,8.55835]]],[[[93.60075,8.56148],[93.60082,8.5615],[93.60084,8.56152],[93.60086,8.56154],[93.60087,8.56157],[93.60087,8.56158],[93.60085,8.56165],[93.60086,8.56169],[93.60086,8.56171],[93.60085,8.56172],[93.60082,8.56172],[93.6008,8.5617],[93.60077,8.56168],[93.60072,8.56162],[93.6007,8.5616],[93.60068,8.56158],[93.60065,8.56155],[93.60063,8.56153],[93.60063,8.56151],[93.60064,8.5615],[93.60067,8.56148],[93.60072,8.56148],[93.60075,8.56148]]],[[[93.6006,8.56165],[93.60062,8.56167],[93.60063,8.56168],[93.60063,8.56172],[93.6006,8.56181],[93.60059,8.56183],[93.60059,8.56186],[93.60056,8.5619],[93.60054,8.56192],[93.60052,8.56193],[93.6005,8.56194],[93.60048,8.56194],[93.60046,8.56194],[93.60044,8.56192],[93.60043,8.56189],[93.60043,8.56185],[93.60044,8.56183],[93.60045,8.56181],[93.60049,8.56173],[93.6005,8.56171],[93.60054,8.56167],[93.60056,8.56166],[93.60058,8.56165],[93.6006,8.56165]]],[[[93.61083,8.56084],[93.61082,8.56089],[93.61079,8.56094],[93.61073,8.56098],[93.61065,8.56098],[93.61059,8.56093],[93.61057,8.56087],[93.61057,8.56079],[93.61059,8.56072],[93.61064,8.56067],[93.6107,8.56065],[93.61076,8.56066],[93.61079,8.56067],[93.61081,8.5607],[93.61083,8.56075],[93.61082,8.56075],[93.61083,8.56084]]],[[[93.60126,8.56312],[93.60136,8.56324],[93.60142,8.56334],[93.60145,8.56341],[93.60143,8.56345],[93.60137,8.56346],[93.60122,8.56345],[93.6011,8.56339],[93.601,8.56329],[93.60101,8.56321],[93.60105,8.56314],[93.60113,8.56307],[93.60126,8.56312]]],[[[93.60069,8.56378],[93.60054,8.56396],[93.6005,8.564],[93.60047,8.564],[93.60044,8.564],[93.60039,8.56397],[93.60037,8.56394],[93.60037,8.56391],[93.6004,8.56386],[93.60043,8.56382],[93.60047,8.56371],[93.60048,8.56367],[93.60045,8.56357],[93.6004,8.56349],[93.60036,8.56341],[93.60037,8.56338],[93.60041,8.5633],[93.60049,8.56327],[93.60058,8.56327],[93.60061,8.56328],[93.60073,8.56342],[93.60077,8.56343],[93.60083,8.56343],[93.60091,8.56345],[93.60094,8.56347],[93.60099,8.56352],[93.60099,8.56356],[93.60099,8.56362],[93.60098,8.56366],[93.60098,8.5637],[93.60096,8.56373],[93.60093,8.56376],[93.60088,8.56378],[93.60079,8.56377],[93.60071,8.56377],[93.60069,8.56378]]],[[[93.60319,8.56336],[93.60319,8.56346],[93.60308,8.5637],[93.60297,8.56386],[93.60287,8.56402],[93.60277,8.56409],[93.6027,8.56392],[93.60277,8.56385],[93.60291,8.56374],[93.60296,8.56365],[93.60296,8.56347],[93.603,8.56334],[93.60319,8.56336]]],[[[93.60305,8.56465],[93.60307,8.56469],[93.60308,8.56474],[93.60305,8.56481],[93.60298,8.56486],[93.6029,8.56487],[93.60283,8.56486],[93.60279,8.56482],[93.60278,8.56476],[93.60284,8.5647],[93.60292,8.56467],[93.603,8.56465],[93.60305,8.56465]]],[[[93.61054,8.56387],[93.61054,8.56393],[93.61052,8.56402],[93.61047,8.56418],[93.61042,8.56423],[93.61037,8.56427],[93.6103,8.56429],[93.61022,8.56427],[93.61017,8.56424],[93.61016,8.56419],[93.61015,8.56414],[93.61017,8.56409],[93.61022,8.56404],[93.61031,8.564],[93.61032,8.56397],[93.61032,8.56392],[93.61032,8.56381],[93.61034,8.56374],[93.61036,8.56372],[93.61042,8.56368],[93.61046,8.56368],[93.61051,8.56373],[93.61052,8.56379],[93.61052,8.56379],[93.61054,8.56387]]],[[[93.6033,8.56542],[93.60335,8.56545],[93.60338,8.5655],[93.60337,8.56556],[93.60334,8.56562],[93.60328,8.56567],[93.60326,8.56571],[93.60323,8.56584],[93.60315,8.56587],[93.60308,8.56585],[93.60305,8.56575],[93.60305,8.56569],[93.60311,8.56561],[93.60318,8.56545],[93.60324,8.56542],[93.6033,8.56542]]],[[[93.61118,8.56614],[93.61117,8.5662],[93.61115,8.56625],[93.61111,8.56628],[93.61105,8.56627],[93.611,8.56622],[93.61097,8.56614],[93.611,8.56608],[93.61103,8.56603],[93.61108,8.56601],[93.61112,8.56601],[93.61114,8.56604],[93.61117,8.56608],[93.61116,8.56608],[93.61118,8.56614]]],[[[93.60345,8.56679],[93.60349,8.56684],[93.60352,8.56692],[93.6035,8.56697],[93.60346,8.56702],[93.60338,8.56703],[93.60328,8.56701],[93.60321,8.56696],[93.60317,8.56689],[93.6032,8.56682],[93.6033,8.56677],[93.60342,8.56675],[93.60345,8.56679]]],[[[93.60299,8.56709],[93.60303,8.56713],[93.60303,8.56722],[93.60299,8.56731],[93.60289,8.56734],[93.6028,8.56732],[93.60278,8.56724],[93.60287,8.56712],[93.60294,8.5671],[93.60299,8.56709]]],[[[93.6073,8.56995],[93.60734,8.57005],[93.60734,8.5701],[93.60732,8.57016],[93.60729,8.5702],[93.60727,8.57023],[93.60724,8.57024],[93.60722,8.57024],[93.60716,8.57022],[93.60714,8.57017],[93.60713,8.57011],[93.60714,8.57005],[93.60716,8.56999],[93.60721,8.56995],[93.60726,8.56993],[93.6073,8.56995]]],[[[93.60759,8.57025],[93.60765,8.57027],[93.60768,8.57029],[93.60768,8.57034],[93.60768,8.57038],[93.60767,8.5704],[93.60763,8.57044],[93.60758,8.57047],[93.60755,8.5705],[93.6075,8.57051],[93.60745,8.57051],[93.60741,8.57047],[93.60739,8.57043],[93.60739,8.57038],[93.60742,8.57033],[93.60747,8.57028],[93.60753,8.57026],[93.60759,8.57025]]],[[[93.60762,8.57072],[93.60763,8.57072],[93.60772,8.57078],[93.60775,8.57084],[93.60774,8.57089],[93.60772,8.57092],[93.60766,8.57094],[93.60759,8.57094],[93.60754,8.57093],[93.6075,8.57088],[93.6075,8.57078],[93.60754,8.57072],[93.60757,8.57071],[93.60762,8.57072]]],[[[93.60719,8.57321],[93.60721,8.57323],[93.60722,8.5733],[93.60721,8.57337],[93.60718,8.57344],[93.60714,8.57349],[93.60707,8.57352],[93.60701,8.5735],[93.60696,8.57346],[93.60695,8.57341],[93.60695,8.57336],[93.60698,8.5733],[93.60708,8.57322],[93.60708,8.57321],[93.60711,8.5732],[93.60714,8.57319],[93.60719,8.57321]]],[[[93.60261,8.574],[93.60263,8.57403],[93.60263,8.57408],[93.60262,8.57412],[93.60258,8.57415],[93.60252,8.57418],[93.60246,8.57418],[93.6024,8.57416],[93.60236,8.57412],[93.60231,8.57406],[93.60228,8.57399],[93.60229,8.574],[93.60226,8.57394],[93.60226,8.5739],[93.60228,8.57387],[93.60233,8.57386],[93.60239,8.57388],[93.60256,8.57396],[93.60261,8.574]]],[[[93.60653,8.57369],[93.60657,8.57372],[93.60659,8.57375],[93.6066,8.57378],[93.60659,8.57382],[93.60657,8.57387],[93.60654,8.57391],[93.60649,8.57394],[93.60645,8.57394],[93.60639,8.5739],[93.60637,8.57385],[93.60637,8.5738],[93.6064,8.57375],[93.60644,8.57372],[93.60644,8.57372],[93.60648,8.57369],[93.60653,8.57369]]],[[[93.60201,8.5741],[93.60209,8.57412],[93.60212,8.57416],[93.60212,8.57423],[93.60207,8.57428],[93.60203,8.57435],[93.60194,8.57439],[93.60181,8.57439],[93.60175,8.57434],[93.60174,8.57427],[93.60178,8.57421],[93.60184,8.57415],[93.60192,8.5741],[93.60201,8.5741]]],[[[93.60306,8.57473],[93.60304,8.57475],[93.60299,8.57477],[93.60293,8.57477],[93.60287,8.57473],[93.60288,8.57473],[93.60284,8.57468],[93.60283,8.57465],[93.60284,8.57458],[93.60289,8.57455],[93.60295,8.57453],[93.60301,8.57457],[93.60304,8.57461],[93.60307,8.57467],[93.60306,8.57473]]],[[[93.60581,8.57446],[93.60577,8.57452],[93.60571,8.57453],[93.60565,8.57451],[93.6056,8.57445],[93.60561,8.57445],[93.60558,8.57441],[93.60558,8.57437],[93.6056,8.57432],[93.60563,8.57429],[93.60569,8.57428],[93.60575,8.57429],[93.60579,8.57434],[93.60581,8.5744],[93.60581,8.57446]]],[[[93.60561,8.57475],[93.60559,8.57477],[93.60555,8.5748],[93.60549,8.5748],[93.60542,8.57475],[93.60543,8.57476],[93.60539,8.57471],[93.60538,8.57467],[93.6054,8.57461],[93.60545,8.57457],[93.6055,8.57456],[93.60556,8.57459],[93.6056,8.57463],[93.60562,8.5747],[93.60561,8.57475]]],[[[93.60294,8.57504],[93.60297,8.57506],[93.60297,8.5751],[93.60294,8.57513],[93.6029,8.57517],[93.60286,8.57519],[93.60282,8.57519],[93.60279,8.57515],[93.60279,8.5751],[93.6028,8.57507],[93.60282,8.57506],[93.60286,8.57503],[93.6029,8.57503],[93.60294,8.57504]]],[[[93.60522,8.575],[93.60525,8.57502],[93.60525,8.57505],[93.60522,8.57509],[93.60518,8.57513],[93.60514,8.57515],[93.60511,8.57515],[93.60507,8.57511],[93.60507,8.57506],[93.60508,8.57503],[93.6051,8.57502],[93.60514,8.57499],[93.60518,8.57499],[93.60522,8.575]]],[[[93.60288,8.57542],[93.60289,8.57543],[93.6029,8.57545],[93.6029,8.57553],[93.60288,8.57555],[93.60284,8.57557],[93.60282,8.57556],[93.60279,8.57552],[93.60279,8.57548],[93.6028,8.57544],[93.60283,8.57542],[93.60286,8.57541],[93.60288,8.57542]]],[[[93.60281,8.57617],[93.60283,8.57621],[93.60282,8.57628],[93.60274,8.57639],[93.60272,8.57643],[93.60271,8.57645],[93.60268,8.57645],[93.60264,8.57638],[93.60264,8.57632],[93.60267,8.57625],[93.60271,8.57619],[93.60276,8.57616],[93.60281,8.57617]]],[[[93.60265,8.57645],[93.60267,8.57649],[93.60266,8.57656],[93.60262,8.57661],[93.6026,8.57666],[93.60254,8.57673],[93.60252,8.57673],[93.60249,8.57666],[93.60248,8.5766],[93.6025,8.57653],[93.60254,8.57647],[93.60259,8.57644],[93.60265,8.57645]]],[[[93.60592,8.57372],[93.60282,8.57723],[93.60307,8.57435],[93.60131,8.57302],[93.6033,8.5691],[93.60267,8.56795],[93.6045,8.566],[93.60335,8.56527],[93.60337,8.56341],[93.6014,8.56244],[93.60104,8.56137],[93.60169,8.56048],[93.60045,8.55838],[93.60146,8.55612],[93.60004,8.55379],[93.60183,8.55023],[93.60208,8.5478],[93.60021,8.54497],[93.60281,8.54228],[93.60334,8.53938],[93.60653,8.53849],[93.60778,8.53607],[93.60689,8.53468],[93.60711,8.5332],[93.60932,8.52961],[93.60875,8.52851],[93.61079,8.52871],[93.61105,8.52705],[93.61207,8.52632],[93.61197,8.52439],[93.61024,8.52248],[93.61357,8.51924],[93.61424,8.514],[93.61545,8.51188],[93.615,8.50133],[93.61636,8.50068],[93.61392,8.49859],[93.615,8.49615],[93.61645,8.49502],[93.61598,8.49401],[93.61685,8.49177],[93.61868,8.4906],[93.61921,8.48661],[93.61801,8.48499],[93.61689,8.48564],[93.61434,8.48287],[93.6115,8.48304],[93.60944,8.48147],[93.60956,8.47954],[93.61075,8.47792],[93.60986,8.47514],[93.61199,8.47421],[93.61227,8.47471],[93.6128,8.47359],[93.61241,8.47107],[93.61131,8.47117],[93.61249,8.46952],[93.61192,8.46886],[93.61325,8.46647],[93.61377,8.46233],[93.61033,8.45761],[93.60806,8.45675],[93.61064,8.45353],[93.61052,8.45147],[93.60921,8.45116],[93.61035,8.45059],[93.61019,8.44655],[93.60844,8.44619],[93.60692,8.4446],[93.60746,8.44364],[93.60895,8.44343],[93.60989,8.44115],[93.61007,8.43845],[93.60945,8.43692],[93.60861,8.4375],[93.60833,8.43596],[93.61006,8.43388],[93.61202,8.42641],[93.61141,8.42398],[93.61301,8.42323],[93.61471,8.42498],[93.61772,8.43394],[93.61774,8.43789],[93.6162,8.44132],[93.6163,8.44202],[93.61757,8.44216],[93.61256,8.44954],[93.61459,8.45508],[93.61538,8.45512],[93.61515,8.45673],[93.61578,8.45662],[93.61565,8.46398],[93.61719,8.46808],[93.62117,8.47088],[93.62643,8.47145],[93.62898,8.46666],[93.63142,8.46611],[93.63235,8.46772],[93.63022,8.47444],[93.63083,8.4754],[93.63033,8.47904],[93.6291,8.4808],[93.63009,8.48432],[93.62813,8.48832],[93.62821,8.49192],[93.62656,8.49222],[93.62547,8.49436],[93.62573,8.49661],[93.62724,8.49853],[93.62147,8.50762],[93.62239,8.50964],[93.62596,8.51043],[93.62748,8.51261],[93.62693,8.51461],[93.62548,8.51548],[93.62444,8.51721],[93.62477,8.51803],[93.62293,8.52017],[93.62322,8.52152],[93.62454,8.52202],[93.62441,8.52308],[93.62554,8.52369],[93.62424,8.52549],[93.62201,8.52503],[93.62079,8.52655],[93.61897,8.52647],[93.61889,8.52745],[93.6147,8.52863],[93.61242,8.53173],[93.61266,8.53251],[93.61167,8.53254],[93.61271,8.53558],[93.61157,8.53749],[93.61212,8.53858],[93.61047,8.53997],[93.61127,8.54116],[93.61101,8.54264],[93.60921,8.54318],[93.60977,8.54542],[93.60873,8.5462],[93.60867,8.54755],[93.60993,8.54905],[93.60838,8.55202],[93.61017,8.55775],[93.61017,8.56589],[93.60898,8.56623],[93.60899,8.56864],[93.60724,8.5689],[93.60742,8.57279],[93.60592,8.57372]]],[[[93.59851,8.58287],[93.59851,8.58298],[93.59846,8.58307],[93.5984,8.58314],[93.59827,8.58321],[93.59817,8.58321],[93.59781,8.58311],[93.59776,8.58304],[93.59755,8.58293],[93.59726,8.58286],[93.59709,8.58289],[93.59672,8.58307],[93.59663,8.58309],[93.59652,8.58305],[93.59651,8.583],[93.59653,8.58265],[93.59639,8.58262],[93.59632,8.58264],[93.59627,8.58263],[93.59619,8.5826],[93.59617,8.58255],[93.59622,8.58236],[93.59662,8.58157],[93.59706,8.58109],[93.59738,8.58078],[93.59761,8.58049],[93.5977,8.58013],[93.59776,8.58003],[93.5978,8.57999],[93.59788,8.57996],[93.59808,8.57995],[93.59821,8.58],[93.59825,8.58004],[93.59826,8.58041],[93.59834,8.58055],[93.59838,8.5808],[93.59837,8.58099],[93.59841,8.58115],[93.59856,8.58148],[93.59855,8.5817],[93.59849,8.58178],[93.59847,8.58224],[93.59851,8.58287]]],[[[92.78603,9.245],[92.785,9.24716],[92.77803,9.25274],[92.77523,9.25821],[92.77143,9.25882],[92.77088,9.25744],[92.77222,9.25229],[92.77572,9.24575],[92.77333,9.24056],[92.77131,9.24021],[92.77209,9.24125],[92.76997,9.24054],[92.76957,9.23811],[92.77267,9.2376],[92.77246,9.23338],[92.77101,9.23056],[92.76816,9.22852],[92.76767,9.22573],[92.76865,9.22189],[92.76358,9.21739],[92.76372,9.21583],[92.76295,9.21582],[92.76324,9.21725],[92.75756,9.21641],[92.755,9.21797],[92.74661,9.21662],[92.74579,9.21409],[92.74414,9.21387],[92.7395,9.21838],[92.73314,9.21695],[92.72931,9.22035],[92.72496,9.22138],[92.72172,9.2206],[92.71775,9.21456],[92.7166,9.20921],[92.71751,9.19878],[92.71614,9.19637],[92.71628,9.18991],[92.71783,9.18438],[92.71749,9.17255],[92.71562,9.16702],[92.71444,9.1544],[92.71541,9.15331],[92.71563,9.14785],[92.71897,9.14233],[92.72211,9.13964],[92.72316,9.13551],[92.72169,9.13394],[92.72732,9.1249],[92.74061,9.12446],[92.75302,9.12798],[92.75569,9.12588],[92.75978,9.12529],[92.76554,9.12712],[92.76699,9.12885],[92.76699,9.12742],[92.76808,9.12766],[92.77584,9.12155],[92.78484,9.11872],[92.79569,9.1209],[92.79907,9.12059],[92.80073,9.12121],[92.80227,9.12335],[92.80389,9.12322],[92.8062,9.12491],[92.80707,9.12389],[92.81069,9.12703],[92.81074,9.1281],[92.81151,9.12748],[92.81195,9.12947],[92.81059,9.12845],[92.80973,9.13125],[92.81201,9.13255],[92.81409,9.13555],[92.81924,9.13755],[92.82558,9.13699],[92.8273,9.13884],[92.82628,9.1524],[92.83,9.16179],[92.83056,9.16817],[92.82987,9.17196],[92.82782,9.17342],[92.82675,9.17793],[92.82338,9.18062],[92.8245,9.18973],[92.81767,9.21199],[92.81138,9.22117],[92.798,9.23272],[92.78983,9.24268],[92.78603,9.245]]],[[[92.51836,10.90084],[92.50918,10.89924],[92.50709,10.89729],[92.50583,10.89907],[92.50296,10.89772],[92.50737,10.89295],[92.50614,10.89011],[92.50871,10.88212],[92.51196,10.88335],[92.51497,10.8879],[92.51581,10.88658],[92.51105,10.8806],[92.51788,10.87741],[92.5171,10.87503],[92.51703,10.87747],[92.51297,10.8789],[92.51349,10.87559],[92.51045,10.86986],[92.50289,10.87325],[92.49798,10.87119],[92.5012,10.86734],[92.50051,10.86375],[92.50798,10.86282],[92.50034,10.86315],[92.50045,10.86754],[92.49586,10.87071],[92.49375,10.86948],[92.49061,10.85964],[92.48784,10.85964],[92.48593,10.86179],[92.4802,10.86048],[92.47682,10.86181],[92.48287,10.86089],[92.48614,10.86215],[92.48775,10.86012],[92.49014,10.85997],[92.49322,10.86836],[92.49145,10.87147],[92.49356,10.8701],[92.50242,10.8738],[92.50935,10.87084],[92.51104,10.87181],[92.51108,10.87875],[92.50765,10.88106],[92.50656,10.88003],[92.50214,10.88199],[92.50687,10.88083],[92.50423,10.89348],[92.49653,10.89705],[92.48738,10.88975],[92.48618,10.88297],[92.48162,10.88259],[92.48209,10.8769],[92.47929,10.87306],[92.47089,10.87356],[92.4692,10.86917],[92.46351,10.86624],[92.46084,10.8688],[92.45451,10.86686],[92.45334,10.86435],[92.45415,10.861],[92.45849,10.85813],[92.46025,10.85394],[92.45729,10.84174],[92.4541,10.84007],[92.45026,10.84226],[92.44625,10.8411],[92.44556,10.83744],[92.44215,10.83447],[92.44084,10.83049],[92.43331,10.82406],[92.42549,10.82681],[92.42606,10.81719],[92.41689,10.79572],[92.40431,10.78443],[92.40084,10.78359],[92.39676,10.78698],[92.39563,10.78631],[92.39722,10.78351],[92.39566,10.77485],[92.40409,10.7759],[92.40839,10.77883],[92.4106,10.77829],[92.40843,10.77843],[92.40416,10.77536],[92.39562,10.77395],[92.39412,10.77628],[92.39492,10.77801],[92.39391,10.77772],[92.39339,10.77522],[92.39687,10.76314],[92.40259,10.76904],[92.41038,10.76437],[92.41403,10.77157],[92.41933,10.77258],[92.41413,10.77099],[92.4092,10.76318],[92.40876,10.75872],[92.41029,10.75761],[92.41204,10.76061],[92.41408,10.76059],[92.41573,10.76307],[92.41664,10.76202],[92.41206,10.76012],[92.41051,10.75728],[92.40683,10.75858],[92.40841,10.7553],[92.40609,10.75825],[92.40867,10.75965],[92.40838,10.76399],[92.40348,10.76836],[92.39595,10.76049],[92.39511,10.75565],[92.39819,10.75452],[92.39937,10.75161],[92.39592,10.74927],[92.398,10.74851],[92.39909,10.74419],[92.39764,10.74813],[92.39521,10.74895],[92.39891,10.75162],[92.39448,10.75571],[92.3955,10.76134],[92.3924,10.77521],[92.39299,10.77818],[92.39608,10.78089],[92.39503,10.78559],[92.39327,10.78611],[92.39075,10.78306],[92.38653,10.78543],[92.38639,10.79394],[92.38368,10.79553],[92.37307,10.78274],[92.37177,10.77389],[92.37773,10.77027],[92.38055,10.76323],[92.37761,10.75418],[92.38035,10.73029],[92.38328,10.72269],[92.37889,10.70829],[92.38106,10.69757],[92.37977,10.69725],[92.38147,10.69064],[92.38105,10.68432],[92.38366,10.67649],[92.38136,10.67028],[92.38834,10.66775],[92.39347,10.66869],[92.40112,10.65949],[92.41401,10.6347],[92.41912,10.61579],[92.4185,10.61284],[92.41213,10.60707],[92.40983,10.58442],[92.40459,10.57807],[92.39939,10.57575],[92.39772,10.57214],[92.39842,10.56856],[92.39377,10.56573],[92.3914,10.55936],[92.39111,10.55773],[92.39384,10.55601],[92.39078,10.55457],[92.38209,10.54398],[92.38144,10.53842],[92.38341,10.53708],[92.38452,10.53329],[92.38765,10.53153],[92.39549,10.5298],[92.40259,10.53067],[92.41354,10.53815],[92.4202,10.54847],[92.43505,10.54891],[92.45852,10.53902],[92.47089,10.52581],[92.47685,10.52077],[92.4785,10.52137],[92.48153,10.51747],[92.48844,10.51538],[92.49343,10.51652],[92.49353,10.51437],[92.50005,10.51131],[92.51326,10.51084],[92.52396,10.51454],[92.52629,10.51747],[92.53058,10.51642],[92.53294,10.51855],[92.53645,10.5258],[92.5341,10.52908],[92.53916,10.53578],[92.54287,10.53816],[92.54648,10.55307],[92.55362,10.557],[92.56989,10.57879],[92.56964,10.58376],[92.56495,10.58825],[92.55837,10.58899],[92.55281,10.59246],[92.54232,10.59478],[92.54003,10.60426],[92.54139,10.61646],[92.53989,10.61752],[92.53852,10.61491],[92.54069,10.62216],[92.54161,10.61725],[92.5457,10.62717],[92.5537,10.64004],[92.56951,10.65371],[92.57765,10.65314],[92.58107,10.65927],[92.58235,10.65803],[92.57903,10.66002],[92.57701,10.66658],[92.57732,10.67357],[92.58271,10.67855],[92.58026,10.68081],[92.58331,10.67897],[92.58849,10.68015],[92.59407,10.67658],[92.5981,10.67918],[92.59834,10.69176],[92.59715,10.69362],[92.59953,10.69917],[92.59938,10.70577],[92.59064,10.71909],[92.5889,10.73382],[92.58336,10.74418],[92.58678,10.77046],[92.58614,10.77169],[92.58316,10.7704],[92.58244,10.77136],[92.58737,10.77375],[92.58715,10.78811],[92.58492,10.79216],[92.57746,10.79855],[92.57594,10.80537],[92.57124,10.81056],[92.56892,10.81083],[92.5617,10.80452],[92.56153,10.80284],[92.56467,10.79673],[92.57132,10.79584],[92.57922,10.78544],[92.57248,10.79169],[92.57102,10.79538],[92.56378,10.7954],[92.56176,10.79696],[92.56084,10.79628],[92.56269,10.79369],[92.56052,10.79575],[92.56158,10.79735],[92.56412,10.7961],[92.56142,10.80142],[92.55994,10.79991],[92.5611,10.79881],[92.55959,10.79917],[92.56051,10.80106],[92.55876,10.80917],[92.55267,10.80813],[92.55266,10.80366],[92.5516,10.80352],[92.55236,10.80531],[92.54855,10.80963],[92.55086,10.80697],[92.55285,10.80879],[92.5585,10.80979],[92.56116,10.80539],[92.56743,10.81027],[92.56366,10.81611],[92.5591,10.8155],[92.56385,10.81858],[92.56356,10.82337],[92.56598,10.82948],[92.55925,10.8459],[92.55917,10.85121],[92.56223,10.85756],[92.56248,10.86217],[92.55774,10.86884],[92.55044,10.87416],[92.54257,10.88393],[92.53377,10.88997],[92.53304,10.88703],[92.52934,10.88469],[92.53166,10.88269],[92.53274,10.87707],[92.5348,10.87616],[92.53187,10.87237],[92.5325,10.87122],[92.53019,10.87113],[92.5299,10.86887],[92.53151,10.86717],[92.53685,10.86734],[92.53963,10.86497],[92.54078,10.86753],[92.54146,10.86556],[92.53906,10.86382],[92.54255,10.85989],[92.54088,10.85893],[92.54206,10.86042],[92.53722,10.86627],[92.52954,10.86708],[92.52815,10.87067],[92.53142,10.87627],[92.52881,10.87887],[92.52807,10.88491],[92.53219,10.88729],[92.53288,10.89086],[92.51836,10.90084]]],[[[92.62268,10.92579],[92.62258,10.92588],[92.6223,10.92572],[92.62211,10.9255],[92.62187,10.92561],[92.62136,10.9255],[92.62074,10.92509],[92.62076,10.92469],[92.62123,10.92428],[92.62186,10.9241],[92.6221,10.9236],[92.62231,10.92344],[92.62293,10.92343],[92.62297,10.92316],[92.62327,10.92324],[92.6236,10.92314],[92.6234,10.92267],[92.62339,10.9224],[92.62342,10.92234],[92.6238,10.9222],[92.6242,10.9224],[92.62454,10.92329],[92.62389,10.92409],[92.62341,10.92515],[92.62268,10.92579]]],[[[92.61759,10.93359],[92.60848,10.93961],[92.60767,10.93974],[92.60561,10.93918],[92.60393,10.93799],[92.60325,10.93736],[92.60264,10.93703],[92.60201,10.93628],[92.60253,10.93528],[92.60339,10.93443],[92.60367,10.93387],[92.60431,10.93361],[92.60458,10.93424],[92.60471,10.93388],[92.6055,10.93294],[92.60504,10.93302],[92.60476,10.93284],[92.60533,10.93142],[92.60634,10.9302],[92.60876,10.92802],[92.60977,10.92722],[92.61147,10.92642],[92.61195,10.92644],[92.61234,10.92662],[92.61263,10.92631],[92.61348,10.92597],[92.6139,10.92649],[92.61553,10.92617],[92.61597,10.92632],[92.61625,10.92705],[92.61667,10.92691],[92.61698,10.92711],[92.61784,10.92681],[92.61912,10.92684],[92.61972,10.92739],[92.62029,10.92677],[92.62053,10.92671],[92.62095,10.92684],[92.62134,10.9272],[92.6216,10.92768],[92.62155,10.9282],[92.62133,10.92856],[92.62093,10.92875],[92.62085,10.9292],[92.62061,10.92951],[92.62047,10.93072],[92.61975,10.93112],[92.61957,10.93108],[92.61909,10.93205],[92.61759,10.93359]]],[[[92.60355,10.94131],[92.60234,10.94162],[92.60161,10.9416],[92.60125,10.94142],[92.60107,10.94112],[92.6011,10.9411],[92.60163,10.9411],[92.60169,10.94093],[92.60195,10.9409],[92.60206,10.94066],[92.60247,10.94068],[92.60278,10.94066],[92.6036,10.94021],[92.60391,10.94029],[92.60418,10.94003],[92.60455,10.93985],[92.60441,10.93964],[92.60467,10.93933],[92.6051,10.93969],[92.60581,10.93992],[92.60605,10.94018],[92.60619,10.94062],[92.60544,10.94084],[92.60505,10.94086],[92.60484,10.94076],[92.60462,10.94091],[92.60455,10.94122],[92.60425,10.94099],[92.60355,10.94131]]],[[[92.60839,10.94209],[92.60844,10.94219],[92.60843,10.94252],[92.60797,10.94262],[92.60761,10.94256],[92.60721,10.9422],[92.60734,10.94194],[92.60748,10.94182],[92.60781,10.94176],[92.60839,10.94209]]],[[[92.60672,10.94283],[92.60653,10.94291],[92.60652,10.94315],[92.6065,10.94313],[92.60591,10.94318],[92.6058,10.94284],[92.60607,10.94232],[92.60622,10.94232],[92.60637,10.94245],[92.60652,10.94234],[92.60661,10.94232],[92.60672,10.94283]]],[[[92.59855,10.94137],[92.59898,10.94151],[92.59932,10.94184],[92.59932,10.94202],[92.59892,10.9425],[92.59816,10.94313],[92.59772,10.94358],[92.59753,10.94411],[92.59745,10.94472],[92.59732,10.94492],[92.59628,10.94504],[92.59619,10.94496],[92.59598,10.94421],[92.5964,10.94379],[92.59683,10.94341],[92.59717,10.94273],[92.59755,10.94247],[92.59748,10.94205],[92.59785,10.94198],[92.59828,10.94166],[92.59845,10.94132],[92.59855,10.94137]]],[[[92.60343,10.94636],[92.60319,10.9459],[92.60325,10.9455],[92.6036,10.94531],[92.60441,10.94506],[92.60526,10.94485],[92.60562,10.94514],[92.60561,10.9456],[92.60526,10.94541],[92.60506,10.94578],[92.60475,10.94599],[92.60343,10.94636]]],[[[92.60055,10.95093],[92.60076,10.95155],[92.60021,10.95171],[92.6001,10.95153],[92.59977,10.95149],[92.59973,10.95136],[92.60007,10.95095],[92.60055,10.95093]]],[[[92.21924,10.98577],[92.2187,10.98605],[92.21781,10.98608],[92.21622,10.98563],[92.21493,10.98497],[92.21419,10.98415],[92.21323,10.98345],[92.20998,10.98181],[92.20865,10.98057],[92.20819,10.97983],[92.20907,10.97765],[92.20994,10.97646],[92.21089,10.97481],[92.21335,10.9728],[92.21502,10.97226],[92.21655,10.97242],[92.21901,10.97387],[92.21938,10.97387],[92.22071,10.97436],[92.22092,10.97497],[92.2223,10.97637],[92.22387,10.97724],[92.22467,10.9781],[92.22542,10.98032],[92.22619,10.98435],[92.22568,10.98482],[92.22334,10.98453],[92.22137,10.98523],[92.21934,10.98564],[92.21924,10.98577]]],[[[92.66776,10.98466],[92.66814,10.98473],[92.66822,10.98515],[92.66809,10.9856],[92.66828,10.98592],[92.66869,10.98841],[92.66831,10.98948],[92.66777,10.99044],[92.66716,10.99116],[92.66749,10.99147],[92.66654,10.99269],[92.66572,10.99298],[92.66285,10.99324],[92.66106,10.99308],[92.65972,10.9925],[92.65817,10.9908],[92.65754,10.98956],[92.65721,10.98838],[92.65703,10.98693],[92.65732,10.98426],[92.65772,10.98305],[92.65772,10.98261],[92.65873,10.98134],[92.65953,10.98079],[92.66013,10.98052],[92.66095,10.98056],[92.66237,10.98091],[92.66496,10.98304],[92.6651,10.98335],[92.66515,10.9833],[92.66665,10.98425],[92.66669,10.98452],[92.66691,10.98424],[92.66776,10.98466]]],[[[92.73153,11.14937],[92.73132,11.14952],[92.73098,11.14933],[92.73038,11.14935],[92.72995,11.14963],[92.72945,11.14956],[92.72901,11.14921],[92.72869,11.14954],[92.72824,11.1494],[92.72839,11.14915],[92.72778,11.14905],[92.72789,11.14877],[92.72773,11.14865],[92.72773,11.14845],[92.72742,11.14858],[92.72739,11.14812],[92.7273,11.14798],[92.72735,11.14788],[92.72705,11.14785],[92.72679,11.14816],[92.72646,11.14805],[92.72639,11.14769],[92.72609,11.14775],[92.72553,11.14829],[92.72527,11.14836],[92.72505,11.14826],[92.72422,11.14831],[92.72416,11.14798],[92.72436,11.1478],[92.72434,11.14762],[92.72358,11.14613],[92.72342,11.14533],[92.72329,11.14512],[92.72329,11.14488],[92.72347,11.1447],[92.72388,11.14459],[92.72301,11.14435],[92.72268,11.14471],[92.72252,11.14469],[92.7225,11.14447],[92.72195,11.14429],[92.72173,11.14412],[92.72182,11.14385],[92.72155,11.14357],[92.72132,11.14243],[92.72147,11.14204],[92.72132,11.14171],[92.72168,11.14141],[92.72173,11.14116],[92.72191,11.14107],[92.72203,11.14074],[92.72232,11.14067],[92.72241,11.14044],[92.72289,11.14035],[92.72321,11.14055],[92.72326,11.14079],[92.72365,11.14092],[92.72372,11.14115],[92.72403,11.14128],[92.72397,11.14149],[92.72368,11.14147],[92.72463,11.14202],[92.72483,11.14235],[92.72477,11.14267],[92.7249,11.1428],[92.72468,11.14392],[92.72447,11.14388],[92.7243,11.14362],[92.72404,11.14366],[92.72439,11.14426],[92.72499,11.1445],[92.72479,11.14399],[92.72479,11.14371],[92.72497,11.14346],[92.72542,11.14337],[92.72625,11.14373],[92.72641,11.14371],[92.7264,11.14335],[92.72704,11.14312],[92.72704,11.14269],[92.7275,11.1428],[92.72835,11.14218],[92.72879,11.14201],[92.72865,11.14176],[92.72925,11.1415],[92.7296,11.14171],[92.73037,11.14179],[92.73059,11.14238],[92.73093,11.14246],[92.73097,11.14292],[92.73161,11.14367],[92.73163,11.14386],[92.73191,11.14409],[92.73199,11.14437],[92.73225,11.14453],[92.73229,11.14447],[92.73277,11.14459],[92.73319,11.14453],[92.73359,11.1449],[92.73369,11.1452],[92.73353,11.14531],[92.73359,11.1458],[92.73341,11.14601],[92.73339,11.14638],[92.7336,11.14669],[92.73331,11.1471],[92.73326,11.14743],[92.73302,11.14772],[92.73239,11.14815],[92.732,11.14854],[92.73175,11.14893],[92.73175,11.1491],[92.73148,11.14917],[92.73153,11.14937]]],[[[92.67618,11.18442],[92.67613,11.18467],[92.67595,11.18476],[92.67568,11.18541],[92.67588,11.18585],[92.67614,11.18613],[92.67631,11.18709],[92.67612,11.1887],[92.67588,11.1893],[92.67562,11.1897],[92.67484,11.19023],[92.67432,11.19033],[92.67394,11.19023],[92.6735,11.18995],[92.67237,11.188],[92.67181,11.18656],[92.67171,11.18593],[92.67188,11.18546],[92.67233,11.18479],[92.67269,11.18444],[92.67305,11.18354],[92.67333,11.18309],[92.67423,11.18072],[92.6749,11.17932],[92.6742,11.17845],[92.67419,11.17813],[92.67489,11.17742],[92.6752,11.17733],[92.67524,11.17712],[92.67549,11.17691],[92.67573,11.17693],[92.67586,11.17679],[92.67623,11.17699],[92.6767,11.17691],[92.67675,11.17725],[92.67664,11.17734],[92.67687,11.17765],[92.67682,11.17776],[92.67694,11.17806],[92.6771,11.17812],[92.67728,11.17845],[92.67819,11.17903],[92.6785,11.17963],[92.67869,11.17983],[92.67927,11.17987],[92.67967,11.18012],[92.68004,11.18072],[92.68008,11.18121],[92.67999,11.18173],[92.67918,11.18261],[92.67785,11.18315],[92.67728,11.18313],[92.67702,11.18327],[92.67676,11.18323],[92.67653,11.18342],[92.67655,11.18353],[92.67606,11.18384],[92.67579,11.1836],[92.67567,11.1838],[92.6757,11.18416],[92.67622,11.18409],[92.67618,11.18442]]],[[[92.67248,11.1949],[92.6726,11.19509],[92.67257,11.19532],[92.67242,11.19548],[92.67229,11.19554],[92.67208,11.19548],[92.67202,11.1954],[92.67191,11.19515],[92.67199,11.19497],[92.67222,11.19486],[92.67248,11.1949]]],[[[92.70507,11.27772],[92.70518,11.27885],[92.7057,11.27988],[92.70615,11.28643],[92.70526,11.2878],[92.70535,11.28982],[92.70511,11.29012],[92.70471,11.29024],[92.70272,11.28952],[92.70219,11.28884],[92.70093,11.28848],[92.69954,11.28726],[92.6959,11.28554],[92.69458,11.28524],[92.69381,11.28458],[92.69344,11.28304],[92.69261,11.28203],[92.69201,11.28054],[92.6932,11.27521],[92.69266,11.27427],[92.69236,11.27054],[92.69469,11.26588],[92.69472,11.26464],[92.69387,11.26392],[92.6938,11.26298],[92.6944,11.25982],[92.69277,11.25825],[92.69248,11.25759],[92.69236,11.25797],[92.69184,11.25797],[92.69091,11.25717],[92.69029,11.25414],[92.68969,11.2528],[92.68881,11.25174],[92.68878,11.25143],[92.68962,11.25106],[92.68776,11.24802],[92.68629,11.24684],[92.68641,11.24661],[92.68614,11.24632],[92.68666,11.24616],[92.68697,11.24665],[92.68754,11.24618],[92.6874,11.24585],[92.68671,11.24594],[92.68635,11.24566],[92.68635,11.24398],[92.68593,11.24345],[92.68633,11.24323],[92.68649,11.24259],[92.68623,11.2418],[92.68708,11.24174],[92.68744,11.24238],[92.68827,11.2427],[92.68958,11.24264],[92.68997,11.24303],[92.69036,11.24253],[92.69064,11.24279],[92.69123,11.24241],[92.69162,11.24278],[92.6924,11.2453],[92.69407,11.24851],[92.69474,11.2492],[92.69484,11.25001],[92.69355,11.25001],[92.69329,11.25141],[92.69383,11.25298],[92.69442,11.2536],[92.69503,11.25302],[92.69572,11.25312],[92.69613,11.25382],[92.69675,11.25402],[92.69693,11.25462],[92.69725,11.25463],[92.69782,11.25555],[92.69823,11.25546],[92.69821,11.25581],[92.69733,11.25561],[92.69882,11.25778],[92.70153,11.25984],[92.70241,11.26142],[92.70328,11.26151],[92.70365,11.26184],[92.70478,11.26379],[92.70516,11.26612],[92.70433,11.26964],[92.70489,11.27266],[92.70539,11.27388],[92.70497,11.27471],[92.70507,11.27772]]],[[[92.7223,11.33303],[92.72103,11.33347],[92.72026,11.33314],[92.71996,11.3327],[92.72022,11.33259],[92.71984,11.33234],[92.7193,11.33207],[92.71907,11.33229],[92.71852,11.33213],[92.71776,11.3313],[92.71805,11.33089],[92.71747,11.33026],[92.71721,11.3303],[92.71662,11.32953],[92.71638,11.32851],[92.71714,11.32644],[92.71646,11.32519],[92.71644,11.32414],[92.71618,11.32358],[92.71556,11.32311],[92.71488,11.32291],[92.71401,11.32196],[92.71297,11.32151],[92.71266,11.32077],[92.71352,11.31763],[92.713,11.31623],[92.71323,11.31578],[92.71277,11.31562],[92.71204,11.31447],[92.71085,11.31321],[92.70666,11.31021],[92.70467,11.30973],[92.70343,11.31012],[92.70211,11.3112],[92.70056,11.31187],[92.69981,11.31149],[92.69941,11.312],[92.69865,11.3119],[92.69694,11.31106],[92.69551,11.30984],[92.69703,11.30829],[92.69817,11.30802],[92.70302,11.30539],[92.7045,11.30335],[92.70609,11.30169],[92.70678,11.29964],[92.70771,11.29948],[92.71175,11.30269],[92.71184,11.30293],[92.71137,11.30282],[92.71122,11.30344],[92.7116,11.30353],[92.7122,11.30762],[92.71282,11.30806],[92.71419,11.3081],[92.71473,11.3086],[92.71579,11.31228],[92.71569,11.31331],[92.71595,11.31459],[92.71667,11.31557],[92.7173,11.31586],[92.71918,11.3149],[92.72006,11.31481],[92.72135,11.31551],[92.72231,11.31666],[92.72288,11.31942],[92.72234,11.31988],[92.72214,11.32096],[92.72241,11.32113],[92.72247,11.32161],[92.72151,11.32342],[92.72174,11.3253],[92.72327,11.33053],[92.72287,11.33211],[92.7223,11.33303]]],[[[92.54744,11.39069],[92.54775,11.39112],[92.54789,11.39184],[92.54802,11.39192],[92.54804,11.39254],[92.54816,11.3928],[92.55085,11.39588],[92.551,11.39652],[92.55093,11.39729],[92.55061,11.39813],[92.54996,11.39864],[92.54795,11.39901],[92.54649,11.39872],[92.54305,11.39843],[92.54193,11.39818],[92.54112,11.39751],[92.54044,11.39674],[92.53995,11.39587],[92.53976,11.39507],[92.53992,11.39345],[92.54025,11.39328],[92.54027,11.39269],[92.54059,11.39256],[92.54064,11.39195],[92.54106,11.39159],[92.54093,11.39121],[92.54164,11.3912],[92.54186,11.39076],[92.54189,11.39044],[92.54242,11.39064],[92.54253,11.39019],[92.54296,11.39031],[92.5432,11.38994],[92.54353,11.39025],[92.54379,11.39001],[92.54423,11.39036],[92.54429,11.38985],[92.54467,11.38993],[92.54487,11.38976],[92.54528,11.39022],[92.54545,11.39019],[92.54575,11.38982],[92.54591,11.39004],[92.54635,11.39004],[92.54691,11.39053],[92.54744,11.39069]]],[[[92.56266,11.39681],[92.56278,11.39711],[92.56275,11.39745],[92.56235,11.3977],[92.56232,11.39805],[92.56215,11.39826],[92.56194,11.39825],[92.56188,11.39794],[92.56193,11.39756],[92.5621,11.39696],[92.56199,11.39674],[92.56168,11.39708],[92.56075,11.39744],[92.55805,11.39682],[92.5572,11.39677],[92.55684,11.39657],[92.55622,11.39524],[92.55588,11.39508],[92.55573,11.39519],[92.55583,11.39569],[92.55629,11.3958],[92.55646,11.39633],[92.55641,11.3968],[92.55468,11.39705],[92.55442,11.39644],[92.55407,11.39644],[92.55394,11.39627],[92.55394,11.3959],[92.55347,11.39557],[92.55342,11.3952],[92.55316,11.39505],[92.55313,11.39463],[92.55328,11.39442],[92.5532,11.39414],[92.55275,11.39359],[92.55227,11.39324],[92.5517,11.39294],[92.55152,11.39256],[92.55165,11.3921],[92.55187,11.39192],[92.55247,11.39201],[92.55257,11.3916],[92.55279,11.39135],[92.55333,11.3913],[92.5534,11.39106],[92.55366,11.39081],[92.55394,11.3908],[92.55409,11.3909],[92.55428,11.39121],[92.5547,11.39115],[92.55483,11.39106],[92.55447,11.39095],[92.55447,11.39074],[92.55465,11.3906],[92.55515,11.39091],[92.55526,11.39071],[92.55512,11.39057],[92.55517,11.3904],[92.55535,11.39039],[92.55546,11.39049],[92.55557,11.39048],[92.55565,11.39034],[92.55565,11.39],[92.5558,11.38999],[92.55605,11.3902],[92.55659,11.39011],[92.55735,11.39031],[92.558,11.39065],[92.55839,11.39071],[92.55867,11.39092],[92.55904,11.39099],[92.55978,11.39178],[92.56102,11.39198],[92.56173,11.39289],[92.56178,11.39345],[92.56246,11.3935],[92.56291,11.394],[92.56334,11.3947],[92.5633,11.39549],[92.56291,11.39581],[92.56291,11.39647],[92.56261,11.39664],[92.56266,11.39681]]],[[[92.24042,11.51613],[92.24029,11.51625],[92.24008,11.5163],[92.23978,11.51633],[92.23938,11.51618],[92.23931,11.51604],[92.23917,11.51607],[92.23897,11.5159],[92.23891,11.51574],[92.23899,11.51561],[92.23915,11.51545],[92.23945,11.51538],[92.23985,11.51535],[92.24056,11.51535],[92.24071,11.5154],[92.24085,11.5155],[92.24088,11.51563],[92.24086,11.51579],[92.24076,11.51597],[92.24065,11.5161],[92.24044,11.51606],[92.24042,11.51613]]],[[[92.25724,11.51526],[92.25716,11.51504],[92.25663,11.51508],[92.25633,11.51514],[92.25628,11.51494],[92.25596,11.51491],[92.25589,11.51509],[92.2556,11.51492],[92.25549,11.51507],[92.2554,11.51506],[92.25521,11.51492],[92.25511,11.51453],[92.25472,11.51413],[92.25505,11.5141],[92.25512,11.51392],[92.25529,11.51396],[92.25564,11.51417],[92.25581,11.51416],[92.25582,11.51394],[92.25624,11.51418],[92.25645,11.51415],[92.25728,11.51442],[92.25743,11.51442],[92.25746,11.51429],[92.25759,11.51424],[92.25785,11.51443],[92.25791,11.51427],[92.25829,11.51439],[92.25832,11.51419],[92.25872,11.51444],[92.25913,11.51433],[92.25918,11.51439],[92.25908,11.51457],[92.25911,11.51492],[92.25907,11.51496],[92.25872,11.51491],[92.25846,11.51505],[92.25834,11.51487],[92.25817,11.51496],[92.25793,11.51519],[92.25772,11.51509],[92.25749,11.5151],[92.25724,11.51526]]],[[[92.23981,11.51715],[92.23996,11.51736],[92.23984,11.51759],[92.23971,11.51768],[92.23956,11.51775],[92.23933,11.51765],[92.23925,11.51743],[92.23931,11.51725],[92.23958,11.51713],[92.23981,11.51715]]],[[[92.27028,11.52007],[92.26995,11.51989],[92.26967,11.51948],[92.26943,11.51923],[92.26905,11.51936],[92.26917,11.51879],[92.26898,11.51873],[92.26889,11.51857],[92.2687,11.51857],[92.26865,11.51815],[92.26837,11.51827],[92.26816,11.51818],[92.26734,11.51763],[92.26693,11.51744],[92.26649,11.51693],[92.26653,11.5166],[92.26686,11.51619],[92.26753,11.51656],[92.26824,11.5163],[92.26861,11.51604],[92.26917,11.51619],[92.26969,11.51561],[92.27002,11.51575],[92.27073,11.51615],[92.27095,11.51615],[92.27137,11.51645],[92.27148,11.51675],[92.27189,11.51675],[92.272,11.51708],[92.27214,11.51729],[92.27203,11.51748],[92.27241,11.51777],[92.27198,11.518],[92.27185,11.51826],[92.27157,11.51822],[92.27153,11.51857],[92.27133,11.5186],[92.27129,11.51886],[92.27107,11.51879],[92.27105,11.51893],[92.27114,11.51914],[92.2707,11.51929],[92.2707,11.51965],[92.27045,11.51967],[92.27028,11.52007]]],[[[92.20772,11.53236],[92.20787,11.53245],[92.20738,11.53261],[92.20717,11.53281],[92.20691,11.53327],[92.20663,11.53316],[92.2067,11.53306],[92.20684,11.53294],[92.20672,11.53285],[92.20686,11.53265],[92.20701,11.53256],[92.20704,11.5325],[92.20701,11.53239],[92.20704,11.53223],[92.20713,11.53226],[92.20723,11.53235],[92.20744,11.53229],[92.20757,11.53229],[92.20772,11.53236]]],[[[92.20594,11.53381],[92.20602,11.53388],[92.20582,11.53416],[92.20536,11.53438],[92.2052,11.53441],[92.20501,11.53438],[92.20498,11.53426],[92.20529,11.53407],[92.2053,11.53386],[92.2056,11.53382],[92.20594,11.53381]]],[[[92.20719,11.53547],[92.20734,11.53551],[92.20739,11.53564],[92.20733,11.53574],[92.20712,11.5359],[92.20694,11.53586],[92.20674,11.53571],[92.2068,11.53554],[92.20699,11.53547],[92.20719,11.53547]]],[[[92.56086,11.51387],[92.56088,11.51436],[92.56076,11.51458],[92.56051,11.51456],[92.56051,11.51409],[92.56076,11.51382],[92.56086,11.51387]]],[[[92.61259,11.50638],[92.61284,11.50799],[92.613,11.50827],[92.61337,11.5088],[92.61427,11.50939],[92.61487,11.50993],[92.61511,11.51027],[92.61518,11.51087],[92.61503,11.51107],[92.61421,11.51116],[92.61275,11.51088],[92.61208,11.5106],[92.61168,11.51024],[92.61087,11.50983],[92.60933,11.50878],[92.60913,11.50848],[92.60885,11.50752],[92.60859,11.50709],[92.60846,11.5065],[92.6084,11.50701],[92.60804,11.50717],[92.60711,11.50712],[92.60639,11.50698],[92.60576,11.5066],[92.60435,11.5055],[92.60364,11.50482],[92.60306,11.50349],[92.60307,11.50312],[92.60357,11.50234],[92.60437,11.50223],[92.60521,11.50227],[92.60571,11.50252],[92.60672,11.50323],[92.60741,11.50403],[92.60814,11.50465],[92.60838,11.50471],[92.60857,11.50459],[92.60863,11.50443],[92.60845,11.50292],[92.60851,11.50253],[92.6088,11.50221],[92.60964,11.50237],[92.61012,11.50293],[92.61013,11.50337],[92.61038,11.50356],[92.61059,11.50416],[92.61141,11.50487],[92.61173,11.505],[92.61216,11.50543],[92.61237,11.50578],[92.61259,11.50638]]],[[[92.64364,11.51337],[92.64386,11.51342],[92.64462,11.51425],[92.64472,11.51444],[92.64477,11.51468],[92.64478,11.51485],[92.64467,11.51504],[92.64454,11.51512],[92.64432,11.51516],[92.64412,11.51511],[92.64379,11.5149],[92.64359,11.51473],[92.64324,11.51432],[92.64318,11.51407],[92.64315,11.51406],[92.64313,11.51364],[92.64314,11.51351],[92.64323,11.5134],[92.64341,11.51337],[92.64364,11.51337]]],[[[92.63621,11.51591],[92.6355,11.51738],[92.63432,11.5158],[92.63099,11.51452],[92.63167,11.51293],[92.62896,11.50874],[92.62028,11.5],[92.61407,11.48435],[92.61066,11.47231],[92.61234,11.47018],[92.60947,11.45793],[92.61413,11.45011],[92.61404,11.4486],[92.61952,11.44311],[92.61926,11.4406],[92.62152,11.44111],[92.62289,11.44017],[92.62165,11.43499],[92.61871,11.43338],[92.61974,11.43249],[92.61933,11.43013],[92.62111,11.43],[92.6214,11.42779],[92.62323,11.42601],[92.6235,11.41849],[92.62214,11.41206],[92.62299,11.40855],[92.62179,11.40445],[92.61405,11.401],[92.60625,11.40204],[92.60244,11.40075],[92.59878,11.40141],[92.59663,11.40021],[92.58774,11.40151],[92.58573,11.39999],[92.58993,11.38915],[92.59118,11.3792],[92.58865,11.37467],[92.58011,11.37087],[92.5796,11.36744],[92.58524,11.35894],[92.58537,11.35546],[92.58751,11.35251],[92.59113,11.34837],[92.59447,11.34696],[92.59601,11.34754],[92.59567,11.34606],[92.59765,11.34502],[92.609,11.3457],[92.61865,11.34881],[92.62178,11.34601],[92.62599,11.34921],[92.63417,11.34784],[92.63817,11.34608],[92.63984,11.34891],[92.64678,11.35445],[92.64744,11.35612],[92.65198,11.35704],[92.6587,11.35567],[92.66374,11.35279],[92.66493,11.3543],[92.66444,11.35646],[92.66544,11.35885],[92.66745,11.36131],[92.67226,11.36288],[92.67378,11.3617],[92.67794,11.36251],[92.67952,11.36526],[92.68195,11.36515],[92.68457,11.36636],[92.68652,11.36891],[92.68853,11.36872],[92.69066,11.37453],[92.69082,11.37662],[92.68883,11.38036],[92.69009,11.38497],[92.69219,11.38615],[92.69225,11.38726],[92.6884,11.38733],[92.68781,11.39117],[92.68643,11.39105],[92.68512,11.39257],[92.67974,11.3917],[92.67717,11.39292],[92.6748,11.39977],[92.67113,11.40001],[92.66939,11.39658],[92.66266,11.39544],[92.66146,11.39753],[92.66242,11.40129],[92.66178,11.40242],[92.66336,11.40268],[92.66252,11.40472],[92.65811,11.40685],[92.65283,11.40739],[92.6479,11.40492],[92.64708,11.40126],[92.6479,11.39695],[92.64538,11.39626],[92.64379,11.3942],[92.64128,11.39647],[92.64205,11.39738],[92.64164,11.40219],[92.64396,11.40308],[92.64431,11.40436],[92.64378,11.40669],[92.64113,11.40957],[92.63924,11.40325],[92.63696,11.40054],[92.63693,11.40183],[92.63372,11.40372],[92.63545,11.40614],[92.63656,11.41174],[92.63518,11.41453],[92.63626,11.41688],[92.63879,11.41585],[92.6417,11.41055],[92.64587,11.41367],[92.65016,11.4094],[92.65336,11.40973],[92.65687,11.41237],[92.661,11.41193],[92.67102,11.41549],[92.67403,11.41999],[92.67178,11.42615],[92.67705,11.42647],[92.67843,11.42755],[92.68054,11.42456],[92.6826,11.42613],[92.68318,11.42681],[92.6817,11.42748],[92.68028,11.43022],[92.68438,11.43219],[92.68459,11.43607],[92.68382,11.43601],[92.68393,11.43989],[92.68291,11.43982],[92.68356,11.44274],[92.68017,11.44631],[92.68151,11.44804],[92.68004,11.45028],[92.68013,11.45223],[92.67915,11.45224],[92.67947,11.4557],[92.67693,11.4606],[92.6746,11.46218],[92.67731,11.47092],[92.6713,11.47837],[92.67244,11.48501],[92.67383,11.48741],[92.67231,11.48903],[92.67426,11.4904],[92.66985,11.48904],[92.66614,11.49169],[92.66184,11.49102],[92.66136,11.49295],[92.65775,11.49592],[92.65477,11.49419],[92.65437,11.49664],[92.65033,11.49782],[92.6505,11.49656],[92.64885,11.49767],[92.64839,11.49965],[92.64443,11.50001],[92.6451,11.51159],[92.64388,11.51206],[92.64105,11.50963],[92.63827,11.51057],[92.6375,11.50952],[92.63879,11.51193],[92.63641,11.51379],[92.63621,11.51591]]],[[[92.58825,11.53045],[92.58661,11.53084],[92.58666,11.53036],[92.5881,11.53016],[92.58825,11.53045]]],[[[92.6163,11.52801],[92.61626,11.52841],[92.61527,11.52845],[92.61531,11.52821],[92.61581,11.52772],[92.6163,11.52801]]],[[[92.59339,11.53109],[92.59344,11.53192],[92.59322,11.53214],[92.59208,11.53187],[92.59119,11.53116],[92.58956,11.53163],[92.58951,11.53077],[92.58985,11.5305],[92.59161,11.52989],[92.59228,11.53006],[92.59339,11.53109]]],[[[92.6159,11.53146],[92.61611,11.53175],[92.61586,11.53199],[92.61496,11.53204],[92.61477,11.53175],[92.61521,11.53131],[92.6159,11.53146]]],[[[92.6308,11.53303],[92.63081,11.53335],[92.63079,11.53356],[92.63069,11.53361],[92.63054,11.53356],[92.63045,11.53342],[92.63047,11.53322],[92.63047,11.53294],[92.63058,11.53287],[92.6308,11.53303]]],[[[92.55546,11.54001],[92.55546,11.5404],[92.55517,11.5404],[92.55496,11.54006],[92.55457,11.53953],[92.55492,11.53928],[92.55546,11.54001]]],[[[92.55874,11.54106],[92.55849,11.54148],[92.5583,11.54148],[92.55814,11.54124],[92.55709,11.54114],[92.55576,11.54021],[92.55511,11.53912],[92.55418,11.53884],[92.5529,11.53958],[92.55313,11.53963],[92.55324,11.54006],[92.55363,11.5404],[92.55299,11.54089],[92.55225,11.54036],[92.55204,11.53943],[92.55281,11.53957],[92.55196,11.53926],[92.55055,11.53796],[92.55018,11.53721],[92.55006,11.53633],[92.55028,11.53576],[92.55061,11.53565],[92.55051,11.53362],[92.55096,11.53347],[92.55116,11.53313],[92.5514,11.53064],[92.55122,11.52885],[92.552,11.53024],[92.55255,11.53005],[92.55362,11.52787],[92.55505,11.5255],[92.55588,11.52354],[92.55611,11.52347],[92.55596,11.52337],[92.55591,11.52278],[92.55621,11.52259],[92.55666,11.523],[92.55725,11.52211],[92.55843,11.52093],[92.55909,11.52064],[92.5593,11.52028],[92.55936,11.5194],[92.56014,11.51673],[92.56042,11.51643],[92.5609,11.51618],[92.56131,11.51617],[92.56297,11.51662],[92.56544,11.51663],[92.56596,11.51709],[92.5665,11.51701],[92.56726,11.51791],[92.56856,11.52322],[92.56843,11.52407],[92.56864,11.52695],[92.56841,11.52703],[92.56837,11.52746],[92.56849,11.52971],[92.56833,11.53017],[92.56811,11.53017],[92.56781,11.52854],[92.56756,11.5283],[92.56722,11.52836],[92.566,11.52921],[92.56471,11.52973],[92.56304,11.53012],[92.56135,11.53127],[92.56011,11.53282],[92.55988,11.53348],[92.55986,11.53631],[92.55928,11.53964],[92.55872,11.54063],[92.55885,11.54071],[92.55874,11.54106]]],[[[92.60107,11.53762],[92.60069,11.53787],[92.59981,11.53818],[92.59908,11.53802],[92.59869,11.53782],[92.5985,11.53752],[92.59829,11.5367],[92.59761,11.53552],[92.59669,11.53313],[92.59667,11.53203],[92.59645,11.53119],[92.59636,11.53016],[92.59659,11.52887],[92.59772,11.52725],[92.5993,11.52529],[92.60005,11.52403],[92.60048,11.52264],[92.60131,11.52133],[92.60393,11.51897],[92.60491,11.51875],[92.60591,11.51878],[92.60666,11.51927],[92.60714,11.51984],[92.60737,11.52103],[92.60721,11.5219],[92.60691,11.52242],[92.60588,11.52304],[92.60594,11.52356],[92.60559,11.52658],[92.60541,11.53272],[92.60524,11.53333],[92.60324,11.53551],[92.60278,11.53692],[92.60221,11.53731],[92.60224,11.53695],[92.6021,11.53773],[92.60162,11.5377],[92.60139,11.5373],[92.60107,11.53762]]],[[[92.58313,11.53478],[92.58281,11.53504],[92.58306,11.53504],[92.58331,11.53538],[92.58339,11.5357],[92.58383,11.53591],[92.58461,11.53825],[92.58495,11.53955],[92.58471,11.53985],[92.58489,11.54001],[92.58499,11.54002],[92.58517,11.54034],[92.58523,11.54071],[92.58523,11.54088],[92.58491,11.54126],[92.58476,11.54129],[92.58455,11.54143],[92.58432,11.54181],[92.58328,11.54193],[92.58246,11.54068],[92.58211,11.53956],[92.58239,11.53815],[92.58206,11.53673],[92.58194,11.53536],[92.58236,11.53455],[92.58273,11.53431],[92.58313,11.53478]]],[[[92.19704,11.5774],[92.19711,11.57761],[92.19709,11.57789],[92.19701,11.57813],[92.19695,11.57823],[92.19676,11.57833],[92.19653,11.57828],[92.1964,11.578],[92.19648,11.57759],[92.19663,11.5773],[92.19686,11.57727],[92.19704,11.5774]]],[[[92.26871,11.57308],[92.26842,11.57278],[92.26842,11.57223],[92.26815,11.5722],[92.26815,11.5719],[92.26795,11.57174],[92.26815,11.57135],[92.26835,11.57118],[92.26862,11.57171],[92.26891,11.57184],[92.26914,11.57226],[92.26914,11.57292],[92.26885,11.57255],[92.26871,11.57308]]],[[[92.19678,11.58089],[92.19682,11.58097],[92.19704,11.58104],[92.19692,11.5814],[92.19691,11.58158],[92.19685,11.58171],[92.19685,11.58181],[92.19697,11.58192],[92.19718,11.58198],[92.19694,11.58223],[92.19682,11.58246],[92.19678,11.58258],[92.19681,11.5828],[92.19672,11.58303],[92.19656,11.58326],[92.19625,11.58295],[92.19614,11.58268],[92.19619,11.58258],[92.19629,11.58246],[92.19614,11.58236],[92.19595,11.58219],[92.19589,11.58209],[92.19617,11.58201],[92.19635,11.58184],[92.1965,11.58139],[92.19647,11.58119],[92.19622,11.581],[92.19617,11.58087],[92.19629,11.58073],[92.19672,11.58068],[92.19678,11.58089]]],[[[92.54369,11.55389],[92.54341,11.55442],[92.54273,11.55477],[92.54225,11.55514],[92.54153,11.5558],[92.54139,11.5554],[92.54111,11.55494],[92.54024,11.55469],[92.54033,11.55425],[92.5405,11.55389],[92.5408,11.55369],[92.54122,11.55366],[92.54202,11.55391],[92.54247,11.55391],[92.54289,11.55376],[92.54329,11.55373],[92.54369,11.55389]]],[[[92.6278,11.54253],[92.62814,11.54325],[92.62839,11.54419],[92.6282,11.54479],[92.62824,11.54573],[92.62849,11.54704],[92.62854,11.54783],[92.62845,11.54848],[92.62816,11.54881],[92.62772,11.54897],[92.62729,11.54897],[92.62692,11.54881],[92.62612,11.54724],[92.62652,11.54714],[92.62659,11.54596],[92.62606,11.54477],[92.62577,11.54368],[92.62635,11.54244],[92.62717,11.5422],[92.6278,11.54253]]],[[[92.54141,11.55779],[92.54066,11.55845],[92.54027,11.55858],[92.53991,11.55847],[92.53962,11.5583],[92.53951,11.55791],[92.5398,11.55788],[92.54006,11.55768],[92.54029,11.55741],[92.54036,11.55705],[92.53935,11.5558],[92.53864,11.55536],[92.5384,11.55511],[92.53872,11.55467],[92.53897,11.55445],[92.53938,11.5543],[92.53974,11.55488],[92.54031,11.55551],[92.54128,11.55646],[92.542,11.55668],[92.54269,11.55682],[92.54381,11.55673],[92.54415,11.5568],[92.54414,11.55718],[92.54393,11.55784],[92.54353,11.55806],[92.54305,11.55802],[92.54221,11.55765],[92.54185,11.55758],[92.54141,11.55779]]],[[[92.19889,11.58793],[92.19914,11.58816],[92.19897,11.58823],[92.19871,11.58829],[92.19847,11.58823],[92.19805,11.5882],[92.19803,11.58797],[92.19804,11.58784],[92.19785,11.58785],[92.19748,11.5879],[92.19738,11.58769],[92.19719,11.58744],[92.19716,11.58734],[92.1976,11.58715],[92.19754,11.58702],[92.19731,11.58685],[92.19713,11.58637],[92.19742,11.58637],[92.19726,11.58612],[92.19698,11.586],[92.19698,11.58574],[92.19679,11.58519],[92.19663,11.58457],[92.19658,11.58427],[92.19697,11.58406],[92.19723,11.58424],[92.19735,11.58497],[92.19757,11.58537],[92.19781,11.58612],[92.19792,11.58654],[92.19795,11.58689],[92.19811,11.58704],[92.19848,11.58705],[92.19863,11.58751],[92.19876,11.58776],[92.19889,11.58793]]],[[[92.56216,11.5573],[92.56238,11.55757],[92.56221,11.55772],[92.56208,11.55767],[92.56208,11.5573],[92.56216,11.5573]]],[[[92.20041,11.59085],[92.2,11.59066],[92.19965,11.59018],[92.19959,11.58979],[92.19929,11.58963],[92.19923,11.58934],[92.19904,11.58928],[92.19882,11.58913],[92.19906,11.58877],[92.19922,11.58861],[92.19947,11.58888],[92.19984,11.58915],[92.19997,11.58906],[92.19995,11.58893],[92.19984,11.58876],[92.2002,11.58873],[92.20045,11.58857],[92.20066,11.5886],[92.20073,11.58847],[92.20085,11.58841],[92.20104,11.58838],[92.20145,11.58842],[92.2017,11.58847],[92.20198,11.58857],[92.20218,11.58902],[92.20222,11.58926],[92.20223,11.58947],[92.20218,11.58976],[92.20188,11.59008],[92.20125,11.59048],[92.20103,11.59062],[92.20085,11.59067],[92.20057,11.59069],[92.20041,11.59085]]],[[[92.5631,11.55979],[92.5633,11.56013],[92.56303,11.56013],[92.56273,11.55984],[92.56285,11.5596],[92.5631,11.55979]]],[[[92.56738,11.55936],[92.56733,11.55969],[92.56711,11.55997],[92.56669,11.55977],[92.56666,11.55923],[92.56738,11.55936]]],[[[92.57035,11.5595],[92.57057,11.55982],[92.57057,11.56013],[92.5702,11.56011],[92.56998,11.55984],[92.57005,11.5595],[92.57035,11.5595]]],[[[92.57431,11.56016],[92.57429,11.56065],[92.57394,11.56053],[92.57354,11.55984],[92.57337,11.55938],[92.57354,11.55923],[92.57431,11.56016]]],[[[92.63184,11.55736],[92.63169,11.55775],[92.63139,11.5578],[92.63112,11.55758],[92.63097,11.55699],[92.63085,11.55634],[92.6311,11.55607],[92.63129,11.55614],[92.63166,11.55675],[92.63184,11.55736]]],[[[92.26477,11.58987],[92.26461,11.58968],[92.26425,11.58971],[92.26428,11.58916],[92.26498,11.58888],[92.2653,11.58881],[92.26535,11.58871],[92.26543,11.58865],[92.26592,11.58876],[92.2661,11.58883],[92.2655,11.58912],[92.26517,11.58961],[92.26477,11.58987]]],[[[92.22281,11.59338],[92.22274,11.59356],[92.22254,11.59377],[92.22222,11.59393],[92.22198,11.59409],[92.22176,11.59444],[92.22115,11.59415],[92.22072,11.59392],[92.2204,11.59379],[92.22013,11.59358],[92.22018,11.59343],[92.22048,11.59332],[92.2212,11.59332],[92.22202,11.593],[92.22218,11.59281],[92.22237,11.59262],[92.22253,11.59287],[92.22268,11.59302],[92.22276,11.59318],[92.22281,11.59338]]],[[[92.61412,11.5564],[92.61384,11.55718],[92.61384,11.55869],[92.61342,11.55967],[92.61147,11.56111],[92.6111,11.56114],[92.61065,11.56089],[92.60954,11.55927],[92.60936,11.55601],[92.60868,11.55403],[92.60842,11.55375],[92.60729,11.55364],[92.6053,11.55383],[92.60395,11.55288],[92.60284,11.55298],[92.60261,11.55399],[92.60158,11.55479],[92.6013,11.55468],[92.60121,11.55311],[92.60192,11.55152],[92.60223,11.55126],[92.60273,11.55127],[92.60376,11.54919],[92.60472,11.54824],[92.60536,11.54722],[92.60536,11.54544],[92.60504,11.54584],[92.60482,11.54581],[92.60461,11.54537],[92.60481,11.54325],[92.60517,11.54247],[92.60543,11.54122],[92.60579,11.54109],[92.60631,11.53787],[92.6069,11.53681],[92.60719,11.53581],[92.60849,11.53454],[92.60921,11.53207],[92.60964,11.53141],[92.60995,11.53152],[92.61002,11.53194],[92.61052,11.53222],[92.61116,11.53298],[92.61495,11.53512],[92.61488,11.53523],[92.61529,11.53499],[92.61581,11.5357],[92.61638,11.536],[92.61668,11.53736],[92.61682,11.54097],[92.61703,11.54153],[92.61758,11.54222],[92.61825,11.54481],[92.61832,11.54528],[92.61794,11.54618],[92.61784,11.54743],[92.61815,11.54926],[92.61936,11.55221],[92.61917,11.55462],[92.61929,11.55665],[92.6188,11.55719],[92.61863,11.55804],[92.61798,11.55922],[92.6176,11.55985],[92.61734,11.55996],[92.6171,11.55991],[92.61679,11.55944],[92.61693,11.55796],[92.61665,11.55737],[92.61507,11.55612],[92.61435,11.55615],[92.61412,11.5564]]],[[[92.22011,11.59452],[92.21966,11.59551],[92.21729,11.59441],[92.21531,11.59467],[92.21386,11.59559],[92.21197,11.59561],[92.21159,11.59488],[92.21227,11.59431],[92.21404,11.59416],[92.21179,11.58983],[92.20888,11.58815],[92.20581,11.58767],[92.20355,11.588],[92.20283,11.58744],[92.2097,11.57794],[92.2114,11.57261],[92.20834,11.56688],[92.20704,11.5625],[92.20515,11.5605],[92.20504,11.55829],[92.20417,11.55617],[92.20458,11.55125],[92.20396,11.55027],[92.20465,11.54686],[92.20736,11.54203],[92.20707,11.54136],[92.208,11.53988],[92.20954,11.53441],[92.21184,11.53162],[92.21035,11.53081],[92.21143,11.52918],[92.21285,11.52855],[92.21358,11.52898],[92.21378,11.52979],[92.21329,11.53027],[92.21409,11.53017],[92.21343,11.52786],[92.21426,11.52777],[92.21415,11.52734],[92.21595,11.52571],[92.21699,11.52615],[92.21545,11.52914],[92.21663,11.52923],[92.21706,11.52874],[92.22007,11.52971],[92.2331,11.52466],[92.23682,11.52546],[92.24036,11.52476],[92.24322,11.52571],[92.2481,11.52527],[92.25167,11.5238],[92.25859,11.51745],[92.26012,11.51725],[92.26129,11.51814],[92.26049,11.51857],[92.26172,11.51976],[92.2642,11.52076],[92.26555,11.52258],[92.26865,11.52242],[92.26926,11.52347],[92.26926,11.5246],[92.26881,11.5247],[92.27028,11.53009],[92.273,11.5353],[92.27247,11.54141],[92.2701,11.54733],[92.27026,11.54822],[92.26801,11.54931],[92.26829,11.55181],[92.26721,11.55592],[92.26669,11.56169],[92.26832,11.5667],[92.26719,11.56719],[92.26653,11.57072],[92.26916,11.57763],[92.26873,11.57965],[92.26928,11.58137],[92.26931,11.58521],[92.26845,11.58645],[92.26313,11.58946],[92.26136,11.59124],[92.24927,11.59265],[92.24686,11.59206],[92.23934,11.59354],[92.23201,11.59285],[92.22988,11.5896],[92.22712,11.58835],[92.22289,11.59008],[92.22063,11.59172],[92.21898,11.59369],[92.22011,11.59452]]],[[[92.22877,11.59397],[92.2291,11.59426],[92.22945,11.59453],[92.2296,11.59479],[92.22964,11.59512],[92.22951,11.59541],[92.22949,11.59557],[92.22945,11.5957],[92.22895,11.59553],[92.22845,11.59528],[92.22825,11.59503],[92.22803,11.59468],[92.22803,11.59406],[92.22833,11.59383],[92.22877,11.59397]]],[[[92.60864,11.55621],[92.60882,11.55673],[92.60876,11.55746],[92.60832,11.55952],[92.60799,11.56059],[92.60758,11.56181],[92.60711,11.56268],[92.60681,11.56277],[92.60668,11.56308],[92.60654,11.56323],[92.60643,11.56327],[92.60623,11.56304],[92.60612,11.56258],[92.60593,11.56207],[92.6057,11.56207],[92.60537,11.56196],[92.60487,11.56097],[92.60485,11.56056],[92.60549,11.5599],[92.6057,11.55955],[92.60626,11.55879],[92.60658,11.55801],[92.607,11.55725],[92.60732,11.55653],[92.60767,11.55607],[92.60799,11.55583],[92.60864,11.55621]]],[[[92.52956,11.56876],[92.52991,11.56913],[92.53019,11.57002],[92.53019,11.57069],[92.53009,11.57101],[92.52972,11.57107],[92.52915,11.57098],[92.52892,11.57077],[92.52909,11.56887],[92.5293,11.56875],[92.52956,11.56876]]],[[[92.5653,11.56723],[92.56534,11.56746],[92.56505,11.56769],[92.56521,11.56774],[92.56563,11.5682],[92.56595,11.56847],[92.56618,11.56891],[92.56628,11.56927],[92.56642,11.56945],[92.56681,11.56983],[92.56692,11.5701],[92.56685,11.57029],[92.56666,11.57045],[92.56606,11.57085],[92.56554,11.57078],[92.56502,11.57063],[92.56456,11.57033],[92.56407,11.56981],[92.56391,11.56949],[92.56411,11.56875],[92.56411,11.56858],[92.56362,11.56853],[92.56358,11.56812],[92.56408,11.5676],[92.56485,11.56711],[92.5653,11.56723]]],[[[92.57443,11.56231],[92.57475,11.56276],[92.57491,11.56334],[92.57512,11.56471],[92.5754,11.56562],[92.57629,11.56757],[92.57662,11.56897],[92.57674,11.57044],[92.5766,11.57086],[92.57636,11.57106],[92.57601,11.57095],[92.57549,11.57063],[92.57484,11.56945],[92.57468,11.56872],[92.57442,11.56822],[92.57369,11.56753],[92.57302,11.56715],[92.57272,11.56675],[92.57233,11.56592],[92.57182,11.56443],[92.57166,11.56358],[92.5717,11.56267],[92.57235,11.56234],[92.573,11.56227],[92.5733,11.56192],[92.57364,11.56184],[92.57407,11.56199],[92.57443,11.56231]]],[[[92.56975,11.57262],[92.56963,11.57326],[92.56936,11.57357],[92.56897,11.57326],[92.56876,11.57304],[92.56881,11.5726],[92.56975,11.57262]]],[[[92.52834,11.57763],[92.5279,11.57797],[92.52741,11.57844],[92.52706,11.57891],[92.5264,11.58014],[92.52608,11.58012],[92.52586,11.57989],[92.52588,11.57959],[92.52655,11.57846],[92.52715,11.57768],[92.52836,11.57646],[92.52868,11.57707],[92.52895,11.57728],[92.52919,11.57727],[92.52955,11.57732],[92.52981,11.57742],[92.52959,11.57757],[92.52931,11.57767],[92.52905,11.57765],[92.52863,11.57758],[92.52834,11.57763]]],[[[92.56978,11.57858],[92.56961,11.57858],[92.56948,11.5785],[92.56941,11.57823],[92.56946,11.57809],[92.57,11.57792],[92.57015,11.57836],[92.5698,11.57836],[92.56978,11.57858]]],[[[92.56899,11.57938],[92.56899,11.57958],[92.56819,11.57965],[92.56822,11.57943],[92.56899,11.57938]]],[[[92.59304,11.57456],[92.59265,11.57616],[92.59297,11.5766],[92.5926,11.57765],[92.59215,11.57802],[92.59148,11.578],[92.58889,11.57514],[92.58842,11.57419],[92.5885,11.57367],[92.58875,11.57389],[92.58856,11.57329],[92.58792,11.57287],[92.58683,11.57053],[92.5867,11.56968],[92.58708,11.56574],[92.58867,11.56235],[92.58881,11.56145],[92.58875,11.56116],[92.588,11.56085],[92.58729,11.5594],[92.58715,11.55823],[92.58753,11.55625],[92.5866,11.55499],[92.58653,11.55391],[92.58611,11.55327],[92.58462,11.55271],[92.58372,11.5519],[92.58281,11.54904],[92.58303,11.54802],[92.58372,11.54733],[92.58425,11.54736],[92.58477,11.54662],[92.58624,11.54271],[92.5857,11.5414],[92.58763,11.54047],[92.58819,11.53959],[92.58788,11.53659],[92.5872,11.53632],[92.58682,11.53481],[92.58688,11.53408],[92.58757,11.5337],[92.58699,11.53319],[92.58779,11.5326],[92.58835,11.53331],[92.58806,11.53385],[92.58765,11.5337],[92.58786,11.53412],[92.59046,11.5359],[92.5912,11.53684],[92.59258,11.53458],[92.59374,11.53428],[92.59406,11.53321],[92.59501,11.53335],[92.59505,11.53611],[92.5956,11.53911],[92.59541,11.53998],[92.59605,11.54212],[92.59606,11.54383],[92.59665,11.54602],[92.59646,11.54751],[92.59694,11.54909],[92.59608,11.55054],[92.59625,11.55152],[92.59601,11.55292],[92.597,11.55472],[92.59681,11.557],[92.59594,11.55929],[92.59545,11.56175],[92.59543,11.56439],[92.5952,11.56511],[92.59474,11.56557],[92.59351,11.56555],[92.59312,11.56527],[92.59247,11.56593],[92.59199,11.56762],[92.59249,11.56808],[92.59293,11.56803],[92.59332,11.5685],[92.59407,11.56988],[92.59374,11.57149],[92.59448,11.57196],[92.59341,11.57277],[92.59304,11.57456]]],[[[92.57746,11.58236],[92.57769,11.58244],[92.57846,11.58296],[92.57869,11.58336],[92.57872,11.58429],[92.57851,11.58468],[92.57812,11.58497],[92.5785,11.58533],[92.57849,11.58566],[92.5783,11.5863],[92.57811,11.58662],[92.57775,11.58735],[92.57742,11.58764],[92.57717,11.58759],[92.5767,11.5871],[92.57662,11.58677],[92.57625,11.58627],[92.57618,11.58594],[92.57627,11.58496],[92.57652,11.58477],[92.57643,11.58451],[92.5765,11.58445],[92.57629,11.58422],[92.57635,11.58358],[92.5765,11.58289],[92.57654,11.58287],[92.57678,11.58255],[92.57701,11.58242],[92.5772,11.58236],[92.57746,11.58236]]],[[[92.59996,11.5865],[92.59996,11.58674],[92.59991,11.58697],[92.59975,11.58723],[92.59931,11.58761],[92.59908,11.58757],[92.59899,11.5873],[92.59899,11.58705],[92.59934,11.58658],[92.59951,11.58645],[92.59972,11.58641],[92.59996,11.5865]]],[[[92.61132,11.58821],[92.61053,11.5887],[92.61024,11.5887],[92.60938,11.58828],[92.60818,11.5883],[92.60604,11.58785],[92.60551,11.58771],[92.60393,11.58676],[92.60238,11.58614],[92.60147,11.58605],[92.60092,11.58567],[92.60077,11.58465],[92.60104,11.58378],[92.60082,11.58311],[92.6008,11.58197],[92.59981,11.57937],[92.59993,11.57718],[92.5996,11.5768],[92.59883,11.5749],[92.59922,11.56906],[92.5997,11.5689],[92.59985,11.56801],[92.60015,11.56747],[92.60044,11.56771],[92.60079,11.56755],[92.60354,11.56913],[92.60371,11.57115],[92.60461,11.57102],[92.60504,11.57026],[92.60585,11.57052],[92.60736,11.5706],[92.60692,11.56992],[92.60697,11.56957],[92.60887,11.56836],[92.60909,11.56738],[92.60974,11.56723],[92.60986,11.56604],[92.61051,11.56574],[92.61097,11.56478],[92.6114,11.56436],[92.61172,11.56423],[92.61283,11.56441],[92.61303,11.56431],[92.61395,11.56304],[92.61434,11.56424],[92.61464,11.56442],[92.61554,11.56582],[92.61584,11.56806],[92.61665,11.56933],[92.61798,11.57246],[92.61822,11.57653],[92.61801,11.57738],[92.61728,11.5789],[92.61702,11.58233],[92.61651,11.58305],[92.61509,11.58373],[92.61509,11.58449],[92.61471,11.58538],[92.61393,11.58609],[92.61256,11.58698],[92.61132,11.58821]]],[[[92.59286,11.59041],[92.59268,11.59039],[92.5925,11.59029],[92.59232,11.59003],[92.59234,11.58974],[92.59264,11.58944],[92.59304,11.58924],[92.59344,11.58918],[92.59432,11.58895],[92.59453,11.58914],[92.59443,11.5895],[92.59422,11.58979],[92.59387,11.59012],[92.59355,11.59033],[92.59299,11.59036],[92.59286,11.59041]]],[[[92.55244,11.59383],[92.55267,11.59404],[92.55267,11.59439],[92.55259,11.59475],[92.55237,11.59499],[92.55201,11.59515],[92.55168,11.59536],[92.55143,11.59539],[92.55126,11.59533],[92.55119,11.59507],[92.55122,11.59481],[92.55129,11.59444],[92.55147,11.5941],[92.5517,11.59389],[92.55216,11.59378],[92.55244,11.59383]]],[[[92.54017,11.60503],[92.53849,11.60693],[92.53576,11.60832],[92.53244,11.60267],[92.532,11.59986],[92.53051,11.59825],[92.52975,11.59893],[92.52946,11.59881],[92.52797,11.5963],[92.5282,11.59431],[92.5278,11.59258],[92.52968,11.59313],[92.53097,11.59239],[92.52943,11.59166],[92.53023,11.59063],[92.52851,11.59088],[92.5273,11.58887],[92.52798,11.58808],[92.5284,11.58644],[92.52914,11.58631],[92.5293,11.58665],[92.52866,11.5876],[92.52919,11.5879],[92.53022,11.58631],[92.53136,11.586],[92.53208,11.58503],[92.53146,11.58381],[92.53202,11.58259],[92.53206,11.5809],[92.53191,11.58036],[92.53165,11.58046],[92.5303,11.58183],[92.53114,11.58017],[92.53034,11.57964],[92.52859,11.58259],[92.52593,11.58412],[92.52556,11.58413],[92.52553,11.58376],[92.52616,11.58281],[92.52587,11.58184],[92.52701,11.58123],[92.52862,11.57841],[92.53033,11.57873],[92.53083,11.57637],[92.5331,11.57604],[92.53173,11.57549],[92.52914,11.57312],[92.52859,11.57172],[92.52912,11.57158],[92.52984,11.57244],[92.52975,11.57157],[92.53088,11.57225],[92.53116,11.57106],[92.53273,11.57006],[92.53369,11.56893],[92.53424,11.56794],[92.53441,11.5661],[92.53399,11.56637],[92.53308,11.5657],[92.53405,11.56413],[92.53359,11.56318],[92.53276,11.56289],[92.53253,11.56378],[92.5319,11.56426],[92.53126,11.56401],[92.52966,11.56207],[92.52794,11.56161],[92.52864,11.56062],[92.52735,11.55931],[92.52728,11.55585],[92.52624,11.55647],[92.52612,11.55618],[92.52683,11.5537],[92.52823,11.55381],[92.52892,11.55472],[92.52972,11.55452],[92.53137,11.55635],[92.53338,11.55757],[92.53581,11.55837],[92.53729,11.55784],[92.53851,11.55825],[92.53888,11.55866],[92.53727,11.55878],[92.53673,11.55925],[92.53667,11.56064],[92.53745,11.56146],[92.53858,11.56127],[92.5401,11.56227],[92.54165,11.56218],[92.54428,11.56128],[92.54523,11.5593],[92.54519,11.55816],[92.54606,11.55859],[92.54637,11.5577],[92.54707,11.55719],[92.54834,11.55771],[92.54949,11.55909],[92.5501,11.55883],[92.55023,11.55767],[92.55059,11.55732],[92.55294,11.55736],[92.55411,11.55797],[92.55476,11.55961],[92.55474,11.56174],[92.55617,11.56304],[92.55674,11.56515],[92.5592,11.56714],[92.55974,11.56865],[92.56172,11.56928],[92.56142,11.57143],[92.56307,11.57222],[92.56413,11.57198],[92.56575,11.57371],[92.56455,11.57583],[92.56254,11.57765],[92.5624,11.57988],[92.56153,11.58104],[92.56172,11.58306],[92.56243,11.5851],[92.56645,11.58696],[92.56732,11.58561],[92.56885,11.58473],[92.56955,11.58647],[92.57158,11.58779],[92.57093,11.58867],[92.57029,11.59255],[92.56959,11.5935],[92.56823,11.59379],[92.56622,11.59317],[92.56507,11.59391],[92.56401,11.59526],[92.5617,11.59634],[92.55826,11.5936],[92.5534,11.59405],[92.55302,11.59367],[92.55274,11.59189],[92.55081,11.59312],[92.54935,11.59354],[92.54394,11.59141],[92.54358,11.59223],[92.54468,11.59201],[92.54689,11.59271],[92.54859,11.59449],[92.54859,11.5955],[92.54926,11.59673],[92.54908,11.60104],[92.54715,11.6039],[92.54565,11.60518],[92.54178,11.60652],[92.54122,11.60626],[92.54072,11.60505],[92.54017,11.60503]]],[[[92.68631,11.62969],[92.68684,11.62999],[92.68715,11.6304],[92.6874,11.63093],[92.68748,11.63135],[92.68737,11.6315],[92.68723,11.63158],[92.68711,11.63152],[92.6869,11.63136],[92.68632,11.63108],[92.68619,11.63091],[92.68615,11.6307],[92.68625,11.63038],[92.68619,11.63005],[92.68617,11.63005],[92.68613,11.62986],[92.68621,11.62969],[92.68631,11.62969]]],[[[92.68781,11.63414],[92.68783,11.63426],[92.68767,11.63469],[92.68773,11.63481],[92.68787,11.63486],[92.6881,11.63506],[92.68858,11.63517],[92.68866,11.63522],[92.6887,11.63541],[92.68815,11.63606],[92.68804,11.6368],[92.68796,11.63695],[92.68767,11.63721],[92.68756,11.63738],[92.6875,11.63822],[92.6874,11.63841],[92.68671,11.63902],[92.68671,11.63919],[92.68683,11.6394],[92.68706,11.63963],[92.68716,11.63989],[92.68702,11.64018],[92.68675,11.64044],[92.68644,11.6405],[92.68614,11.64049],[92.68588,11.64039],[92.68575,11.64016],[92.68569,11.63988],[92.6859,11.63938],[92.6858,11.63917],[92.68569,11.63875],[92.68569,11.63851],[92.68598,11.63795],[92.68604,11.63776],[92.68598,11.63731],[92.68604,11.63714],[92.68628,11.63685],[92.68633,11.63663],[92.68619,11.63642],[92.68588,11.63625],[92.68538,11.63617],[92.68532,11.63588],[92.68563,11.63565],[92.68565,11.63541],[92.68553,11.63469],[92.68557,11.63454],[92.68577,11.63437],[92.68604,11.63399],[92.68627,11.63395],[92.68661,11.63416],[92.68675,11.63418],[92.6875,11.63401],[92.68781,11.63414]]],[[[92.7551,11.63641],[92.7553,11.6367],[92.75508,11.63707],[92.7548,11.63723],[92.75448,11.63719],[92.75431,11.63683],[92.75434,11.63661],[92.75469,11.63636],[92.7551,11.63641]]],[[[92.75396,11.63708],[92.75439,11.63729],[92.75461,11.63765],[92.75452,11.6381],[92.75427,11.63849],[92.7539,11.63832],[92.75328,11.63811],[92.75306,11.63782],[92.75323,11.63729],[92.75357,11.637],[92.75396,11.63708]]],[[[92.69747,11.66393],[92.69715,11.66402],[92.69686,11.66402],[92.69592,11.66347],[92.69556,11.66335],[92.69488,11.66327],[92.6941,11.66231],[92.6938,11.66208],[92.69262,11.6615],[92.69242,11.66135],[92.69221,11.66109],[92.69221,11.66069],[92.69262,11.66022],[92.69354,11.65947],[92.6938,11.65947],[92.6943,11.65973],[92.69451,11.65973],[92.6955,11.65938],[92.6958,11.65932],[92.69583,11.65927],[92.69609,11.65927],[92.69668,11.65938],[92.69733,11.65936],[92.69765,11.65944],[92.69771,11.6595],[92.6982,11.6596],[92.69854,11.65955],[92.69905,11.65931],[92.69951,11.65917],[92.69987,11.65924],[92.70012,11.65957],[92.70017,11.6599],[92.70003,11.66031],[92.69982,11.66144],[92.69997,11.66179],[92.70038,11.6624],[92.7005,11.66245],[92.70053,11.6626],[92.70059,11.66263],[92.70056,11.663],[92.69991,11.66341],[92.69968,11.6635],[92.69886,11.66367],[92.69842,11.66368],[92.69747,11.66393]]],[[[92.76262,11.67287],[92.76306,11.67441],[92.76315,11.67536],[92.76343,11.67606],[92.7646,11.6772],[92.76436,11.67783],[92.76489,11.67844],[92.76515,11.67916],[92.76534,11.68034],[92.76499,11.68111],[92.76491,11.68211],[92.76457,11.68216],[92.76416,11.68154],[92.76366,11.6812],[92.76206,11.67897],[92.76138,11.67838],[92.76002,11.67806],[92.75812,11.67819],[92.75884,11.67668],[92.7591,11.67642],[92.75939,11.67631],[92.75925,11.67606],[92.75981,11.67495],[92.75981,11.67466],[92.75962,11.67434],[92.75962,11.67405],[92.75989,11.67324],[92.76022,11.67297],[92.75937,11.67323],[92.75904,11.67266],[92.75917,11.67212],[92.75939,11.67193],[92.75941,11.67138],[92.75953,11.67089],[92.75937,11.67043],[92.75954,11.67021],[92.75954,11.66961],[92.76039,11.66872],[92.76188,11.67103],[92.76183,11.67139],[92.76242,11.67221],[92.76262,11.67287]]],[[[92.72232,11.68875],[92.72166,11.68875],[92.72129,11.6886],[92.7212,11.68832],[92.72114,11.68775],[92.72157,11.68722],[92.72212,11.68671],[92.72298,11.68614],[92.72355,11.68591],[92.72401,11.68611],[92.72445,11.6871],[92.72505,11.6871],[92.72502,11.68801],[92.72447,11.68818],[92.72353,11.68835],[92.72312,11.68852],[92.72315,11.68849],[92.72232,11.68875]]],[[[92.58676,11.70139],[92.58659,11.70131],[92.58656,11.70131],[92.58591,11.70079],[92.58579,11.70067],[92.58571,11.70045],[92.5858,11.69995],[92.58594,11.69983],[92.58618,11.69983],[92.58641,11.69989],[92.58676,11.70006],[92.58676,11.70056],[92.58679,11.70085],[92.58697,11.70133],[92.58685,11.70134],[92.58676,11.70139]]],[[[92.58508,11.70392],[92.5852,11.70403],[92.58533,11.70432],[92.58536,11.70471],[92.58528,11.70494],[92.58519,11.70502],[92.58509,11.70504],[92.585,11.70497],[92.58491,11.70476],[92.58481,11.70435],[92.58485,11.70406],[92.58492,11.70391],[92.58508,11.70392]]],[[[92.58302,11.70817],[92.58296,11.70832],[92.58289,11.70841],[92.58281,11.70844],[92.58274,11.70844],[92.58268,11.70839],[92.58265,11.70829],[92.58266,11.708],[92.58266,11.708],[92.58274,11.70778],[92.5828,11.7077],[92.58291,11.70768],[92.58299,11.70776],[92.58304,11.70794],[92.58302,11.70817]]],[[[93.08508,11.7831],[93.08637,11.78479],[93.08646,11.78585],[93.08616,11.78638],[93.08632,11.78718],[93.08601,11.78822],[93.08514,11.78915],[93.08395,11.78986],[93.08156,11.78971],[93.07995,11.78887],[93.07845,11.78771],[93.07852,11.78742],[93.07823,11.78701],[93.07764,11.78653],[93.07761,11.78634],[93.0778,11.78599],[93.07802,11.78593],[93.07705,11.78378],[93.07651,11.78398],[93.07623,11.78351],[93.07588,11.78252],[93.07599,11.78109],[93.07627,11.78054],[93.07638,11.78013],[93.07711,11.77968],[93.07745,11.77911],[93.07846,11.77855],[93.07923,11.77831],[93.07971,11.778],[93.0805,11.77796],[93.08122,11.77818],[93.08206,11.77857],[93.08281,11.77919],[93.08322,11.78006],[93.08443,11.78175],[93.08508,11.7831]]],[[[93.07241,11.83365],[93.07233,11.83398],[93.07231,11.83421],[93.07225,11.83434],[93.07206,11.83432],[93.07166,11.83387],[93.07163,11.83366],[93.07186,11.83358],[93.07227,11.83349],[93.07241,11.83365]]],[[[93.072,11.83763],[93.07172,11.83808],[93.07144,11.8388],[93.07121,11.83915],[93.07088,11.83903],[93.07105,11.83847],[93.07165,11.83751],[93.07188,11.83747],[93.072,11.83763]]],[[[93.01223,11.85164],[93.01163,11.85189],[93.01067,11.85138],[93.01033,11.85018],[93.01061,11.8473],[93.00917,11.84526],[93.00913,11.84438],[93.01033,11.84195],[93.01036,11.83836],[93.00994,11.83699],[93.01245,11.83336],[93.01197,11.83237],[93.01352,11.82946],[93.01377,11.82827],[93.01507,11.82856],[93.01752,11.82724],[93.01843,11.82741],[93.02295,11.82595],[93.02826,11.82092],[93.03052,11.81963],[93.03083,11.81985],[93.03423,11.81762],[93.03458,11.8155],[93.03544,11.8136],[93.03758,11.81264],[93.03918,11.81305],[93.04035,11.81227],[93.04045,11.81153],[93.04115,11.81129],[93.04127,11.81043],[93.04231,11.80987],[93.04426,11.8095],[93.04557,11.80972],[93.04715,11.8108],[93.04968,11.81095],[93.05493,11.81248],[93.05829,11.81443],[93.05894,11.81427],[93.06205,11.81753],[93.06203,11.81901],[93.06256,11.81924],[93.06356,11.82148],[93.0667,11.82524],[93.06655,11.82599],[93.06792,11.82709],[93.06918,11.8304],[93.0699,11.8308],[93.07153,11.83411],[93.07179,11.83619],[93.07029,11.83974],[93.07024,11.84105],[93.06953,11.84156],[93.06903,11.84267],[93.06461,11.84378],[93.06241,11.84531],[93.06015,11.84527],[93.05864,11.84606],[93.05307,11.84584],[93.04731,11.84448],[93.04254,11.84402],[93.04204,11.84436],[93.03998,11.84369],[93.03952,11.84394],[93.03795,11.84278],[93.03728,11.8404],[93.03598,11.8406],[93.03549,11.84135],[93.03434,11.84136],[93.03295,11.84006],[93.03243,11.83865],[93.03122,11.83739],[93.03068,11.83764],[93.03049,11.83856],[93.03133,11.8407],[93.0304,11.84153],[93.02786,11.84253],[93.0224,11.84348],[93.02097,11.84492],[93.01965,11.84492],[93.01777,11.84572],[93.01613,11.84754],[93.0153,11.84973],[93.01319,11.8505],[93.01313,11.85098],[93.01223,11.85164]]],[[[92.60349,11.92917],[92.60371,11.92952],[92.6042,11.93159],[92.60445,11.93304],[92.60483,11.93468],[92.6048,11.93531],[92.60422,11.93575],[92.60333,11.93605],[92.60234,11.93583],[92.60161,11.93536],[92.60171,11.93493],[92.60214,11.93473],[92.60255,11.93446],[92.60283,11.93391],[92.6026,11.93331],[92.60263,11.93259],[92.60331,11.93192],[92.60316,11.93089],[92.60306,11.92929],[92.60331,11.92897],[92.60349,11.92917]]],[[[92.72225,11.95133],[92.72332,11.952],[92.72366,11.95231],[92.72437,11.95302],[92.72453,11.95328],[92.7247,11.95376],[92.72466,11.95397],[92.72417,11.95428],[92.72363,11.95445],[92.72313,11.95458],[92.72284,11.95445],[92.72241,11.95363],[92.72233,11.95259],[92.72176,11.95226],[92.7216,11.95165],[92.72192,11.95127],[92.72225,11.95133]]],[[[92.60593,11.96623],[92.60553,11.96659],[92.60521,11.96676],[92.60461,11.96656],[92.60453,11.96634],[92.60421,11.9658],[92.60411,11.96535],[92.60443,11.96411],[92.60443,11.96381],[92.60429,11.96362],[92.60433,11.963],[92.60449,11.96263],[92.60479,11.96227],[92.60507,11.96182],[92.60523,11.96142],[92.60529,11.96067],[92.60583,11.9602],[92.60645,11.95955],[92.60665,11.95953],[92.60702,11.95967],[92.60711,11.9603],[92.6073,11.96054],[92.60782,11.96061],[92.6085,11.96099],[92.60862,11.96121],[92.6078,11.96578],[92.60748,11.96629],[92.60697,11.96641],[92.60639,11.96633],[92.60623,11.96611],[92.60599,11.96613],[92.60593,11.96623]]],[[[92.72816,11.94655],[92.72785,11.94705],[92.7283,11.94861],[92.728,11.94894],[92.72787,11.94925],[92.72802,11.94985],[92.72853,11.95073],[92.72898,11.95114],[92.72848,11.95264],[92.72977,11.95312],[92.73002,11.95344],[92.73046,11.95359],[92.73118,11.95433],[92.73185,11.9555],[92.73238,11.95751],[92.73246,11.95864],[92.7323,11.95964],[92.73216,11.95993],[92.73123,11.95922],[92.72924,11.95823],[92.72651,11.95715],[92.72568,11.95656],[92.72539,11.95591],[92.72519,11.95506],[92.7256,11.95342],[92.7254,11.95267],[92.72485,11.95177],[92.72412,11.95103],[92.7239,11.95052],[92.72415,11.94921],[92.7233,11.94757],[92.72315,11.94681],[92.72343,11.94571],[92.72352,11.94474],[92.72419,11.94398],[92.72411,11.94335],[92.7245,11.94281],[92.72452,11.94168],[92.72504,11.94158],[92.72622,11.9424],[92.72689,11.94251],[92.72794,11.94327],[92.72818,11.94322],[92.72873,11.94371],[92.72987,11.94382],[92.73082,11.94465],[92.73092,11.94507],[92.73077,11.94565],[92.7304,11.946],[92.72998,11.94614],[92.7286,11.94616],[92.72816,11.94655]]],[[[92.59646,11.97683],[92.59524,11.97831],[92.59454,11.9786],[92.59215,11.97836],[92.59093,11.97737],[92.58965,11.97697],[92.58684,11.97735],[92.58634,11.97529],[92.58635,11.97461],[92.58676,11.97461],[92.58681,11.97426],[92.58645,11.9717],[92.58703,11.96941],[92.58657,11.9677],[92.58679,11.96669],[92.58848,11.96575],[92.5915,11.96623],[92.59143,11.96511],[92.59345,11.9639],[92.59327,11.96368],[92.5877,11.96374],[92.58611,11.96222],[92.58563,11.96134],[92.58666,11.96012],[92.58686,11.96022],[92.58645,11.9613],[92.58698,11.9614],[92.58812,11.96276],[92.59039,11.95985],[92.59007,11.9592],[92.59111,11.95843],[92.59211,11.9598],[92.59249,11.9597],[92.59243,11.95903],[92.59125,11.95784],[92.59229,11.95674],[92.59161,11.9559],[92.58985,11.95521],[92.58957,11.95473],[92.59041,11.95372],[92.59073,11.95365],[92.59123,11.95457],[92.59193,11.95505],[92.59492,11.95301],[92.59628,11.95335],[92.59723,11.95309],[92.5953,11.9525],[92.59222,11.95396],[92.59165,11.95285],[92.59218,11.9516],[92.59137,11.95163],[92.59129,11.9506],[92.59061,11.95115],[92.59017,11.9509],[92.59059,11.95023],[92.59115,11.95],[92.59033,11.94923],[92.59021,11.94822],[92.59147,11.94802],[92.59246,11.94868],[92.59312,11.9483],[92.59308,11.94637],[92.59408,11.94558],[92.59475,11.94334],[92.5944,11.93995],[92.59358,11.9385],[92.5935,11.93763],[92.594,11.93611],[92.59358,11.93502],[92.59412,11.93332],[92.5939,11.93219],[92.59417,11.93078],[92.59386,11.92987],[92.59423,11.92879],[92.59426,11.92609],[92.59455,11.92588],[92.59559,11.92795],[92.59635,11.92846],[92.59659,11.92833],[92.59651,11.92744],[92.59699,11.92592],[92.59747,11.92497],[92.59789,11.92497],[92.59916,11.92743],[92.59986,11.92764],[92.60022,11.92962],[92.59996,11.93031],[92.60084,11.9315],[92.60057,11.93316],[92.60154,11.93618],[92.60246,11.93695],[92.6042,11.93658],[92.60537,11.93698],[92.6062,11.93795],[92.60663,11.93977],[92.60709,11.94017],[92.60814,11.94007],[92.60806,11.94323],[92.60738,11.94423],[92.60562,11.94528],[92.60595,11.94747],[92.60581,11.94996],[92.60609,11.95094],[92.60596,11.95133],[92.60447,11.95251],[92.60356,11.956],[92.60345,11.95807],[92.6038,11.95861],[92.60333,11.96033],[92.60239,11.96201],[92.60264,11.96318],[92.60189,11.96414],[92.60257,11.96519],[92.60258,11.96688],[92.60406,11.96988],[92.6042,11.97157],[92.60356,11.9736],[92.60356,11.97478],[92.60308,11.9758],[92.60221,11.97649],[92.60091,11.97551],[92.59732,11.97577],[92.59646,11.97683]]],[[[92.74224,11.96522],[92.74337,11.96583],[92.74414,11.96677],[92.74354,11.96754],[92.74327,11.96768],[92.74257,11.96766],[92.74203,11.96736],[92.7407,11.96582],[92.74041,11.96523],[92.74078,11.96503],[92.74224,11.96522]]],[[[92.58303,11.98249],[92.58253,11.98297],[92.58231,11.98292],[92.5818,11.98237],[92.58157,11.98225],[92.58133,11.98274],[92.58094,11.98173],[92.5808,11.981],[92.58109,11.98086],[92.58117,11.98042],[92.5811,11.98027],[92.58029,11.98005],[92.58021,11.97916],[92.57981,11.97726],[92.58027,11.97766],[92.58074,11.97753],[92.58117,11.97711],[92.58166,11.97714],[92.58218,11.97691],[92.583,11.97697],[92.58381,11.97679],[92.58428,11.97656],[92.58407,11.97693],[92.58389,11.97743],[92.58389,11.97811],[92.58373,11.97867],[92.58344,11.97927],[92.58326,11.98001],[92.5831,11.98137],[92.58303,11.98249]]],[[[92.99517,11.94581],[92.99549,11.94586],[92.99561,11.9462],[92.99566,11.94662],[92.99555,11.94683],[92.99521,11.94683],[92.99483,11.94666],[92.99462,11.9463],[92.9945,11.9459],[92.99465,11.94581],[92.99517,11.94581]]],[[[92.60039,11.98173],[92.60044,11.98207],[92.60042,11.98225],[92.60037,11.98238],[92.60014,11.98252],[92.59992,11.98235],[92.5999,11.98198],[92.6,11.98169],[92.60022,11.98165],[92.60039,11.98173]]],[[[92.76606,11.96774],[92.7655,11.96818],[92.7644,11.96846],[92.76248,11.96804],[92.76021,11.96843],[92.75892,11.96828],[92.75773,11.96845],[92.75699,11.96808],[92.75487,11.968],[92.7526,11.9688],[92.75062,11.96864],[92.74915,11.96908],[92.74841,11.96896],[92.74815,11.96861],[92.74818,11.96755],[92.74824,11.96691],[92.74897,11.96519],[92.74883,11.9638],[92.74827,11.96329],[92.74723,11.96316],[92.74553,11.96194],[92.74494,11.96178],[92.74339,11.96268],[92.74217,11.96286],[92.73977,11.9615],[92.73877,11.962],[92.73824,11.96169],[92.73661,11.95894],[92.73582,11.95597],[92.73574,11.95486],[92.73477,11.95335],[92.73492,11.95182],[92.73537,11.95119],[92.7357,11.95108],[92.73791,11.95218],[92.73975,11.95138],[92.74097,11.94995],[92.741,11.94842],[92.74173,11.94682],[92.74296,11.94618],[92.74418,11.94494],[92.74508,11.94535],[92.74643,11.9455],[92.74724,11.94599],[92.74845,11.94522],[92.74886,11.94459],[92.75214,11.94552],[92.75642,11.94428],[92.7582,11.9447],[92.76024,11.94645],[92.76057,11.94708],[92.76119,11.94737],[92.76216,11.94892],[92.7652,11.95186],[92.76587,11.95211],[92.76797,11.9516],[92.76952,11.95174],[92.77002,11.95203],[92.77038,11.95265],[92.77007,11.95424],[92.76856,11.9551],[92.76792,11.95571],[92.76605,11.96059],[92.76591,11.96211],[92.7674,11.96561],[92.76667,11.96711],[92.76606,11.96774]]],[[[92.74146,11.99663],[92.74062,11.99728],[92.73852,11.99728],[92.73758,11.99663],[92.73749,11.99676],[92.73644,11.99455],[92.73653,11.99298],[92.73605,11.99132],[92.73609,11.99053],[92.73628,11.99007],[92.73751,11.98923],[92.73747,11.98849],[92.73673,11.98776],[92.73654,11.98688],[92.73526,11.98438],[92.73495,11.98409],[92.73319,11.98426],[92.73209,11.98301],[92.73201,11.98265],[92.73288,11.98166],[92.73211,11.97933],[92.73212,11.97885],[92.73254,11.9786],[92.73292,11.97787],[92.7336,11.97748],[92.73365,11.97723],[92.73468,11.97692],[92.73546,11.97722],[92.73596,11.97711],[92.73624,11.97727],[92.73766,11.97912],[92.74046,11.98048],[92.74177,11.98191],[92.74274,11.98251],[92.74325,11.98321],[92.74362,11.98339],[92.74422,11.98329],[92.74471,11.98273],[92.74464,11.98042],[92.74545,11.97843],[92.74574,11.97845],[92.74624,11.97805],[92.74724,11.97809],[92.74724,11.97792],[92.7492,11.97684],[92.75,11.97691],[92.75,11.97838],[92.75132,11.97857],[92.75163,11.97918],[92.75292,11.98071],[92.75335,11.98086],[92.75425,11.98062],[92.75507,11.98065],[92.75738,11.98246],[92.75795,11.98269],[92.76063,11.98295],[92.76079,11.98317],[92.76058,11.98365],[92.75939,11.98382],[92.75777,11.98457],[92.75679,11.98544],[92.75681,11.98629],[92.75808,11.98783],[92.75875,11.98908],[92.7584,11.99156],[92.75777,11.99236],[92.75696,11.99291],[92.75635,11.99293],[92.75517,11.99248],[92.75416,11.99235],[92.75388,11.99248],[92.75301,11.99363],[92.75176,11.99369],[92.75165,11.99336],[92.75098,11.99338],[92.75078,11.99309],[92.75005,11.99316],[92.74837,11.99251],[92.748,11.99231],[92.74802,11.9921],[92.74723,11.99173],[92.74683,11.99102],[92.74409,11.99007],[92.74386,11.98971],[92.74394,11.98885],[92.74246,11.98886],[92.74209,11.98822],[92.74165,11.9883],[92.7415,11.9892],[92.74196,11.99112],[92.74146,11.99663]]],[[[92.77198,12.01893],[92.77167,12.019],[92.77152,12.01913],[92.77142,12.01914],[92.77122,12.01911],[92.77113,12.01904],[92.77109,12.01896],[92.77112,12.01877],[92.77103,12.01877],[92.77101,12.01864],[92.77119,12.01856],[92.7712,12.01802],[92.77138,12.01802],[92.77137,12.01778],[92.77123,12.01775],[92.77126,12.01766],[92.77134,12.01767],[92.77133,12.01759],[92.77122,12.01755],[92.77116,12.01764],[92.77105,12.01751],[92.77083,12.01758],[92.77064,12.0175],[92.77043,12.01751],[92.77042,12.01743],[92.77047,12.01736],[92.77015,12.01721],[92.77002,12.01707],[92.76991,12.0168],[92.76987,12.01668],[92.76993,12.01647],[92.76983,12.0164],[92.76989,12.01633],[92.76994,12.01635],[92.76987,12.01568],[92.76995,12.01556],[92.76987,12.01547],[92.76989,12.01538],[92.77004,12.01535],[92.76984,12.01508],[92.76981,12.01485],[92.76988,12.01475],[92.76981,12.01461],[92.76987,12.01455],[92.77002,12.01455],[92.7699,12.01426],[92.7699,12.0139],[92.76982,12.01383],[92.76986,12.01373],[92.76999,12.01378],[92.77002,12.01373],[92.77001,12.0135],[92.76991,12.01323],[92.76991,12.01306],[92.77,12.01274],[92.76993,12.01265],[92.76997,12.01259],[92.77014,12.01264],[92.77021,12.01247],[92.77027,12.01241],[92.77035,12.01242],[92.77073,12.0127],[92.771,12.01274],[92.771,12.01285],[92.77155,12.01273],[92.77178,12.01281],[92.77178,12.01269],[92.77183,12.01267],[92.77193,12.01271],[92.77197,12.01282],[92.7724,12.01266],[92.77257,12.0125],[92.77282,12.01244],[92.77283,12.01225],[92.77303,12.01233],[92.77365,12.01196],[92.77388,12.01199],[92.77404,12.01207],[92.77412,12.012],[92.77421,12.01205],[92.77419,12.01219],[92.77436,12.01228],[92.7744,12.01236],[92.7745,12.01233],[92.77455,12.01238],[92.77458,12.01246],[92.77452,12.01247],[92.77451,12.0126],[92.77458,12.01273],[92.77455,12.01302],[92.77463,12.01337],[92.77482,12.0135],[92.77472,12.01361],[92.77514,12.01399],[92.77521,12.01426],[92.77531,12.01435],[92.7752,12.01444],[92.77522,12.01449],[92.77591,12.01506],[92.77603,12.01533],[92.7762,12.01539],[92.77618,12.01555],[92.77637,12.01583],[92.77643,12.01618],[92.77639,12.01627],[92.77623,12.01635],[92.77625,12.01647],[92.77606,12.01645],[92.77598,12.01667],[92.77568,12.01693],[92.7756,12.01721],[92.7754,12.01726],[92.77539,12.01737],[92.77531,12.01741],[92.77519,12.01741],[92.77517,12.01755],[92.77493,12.01803],[92.77472,12.01811],[92.7747,12.01824],[92.77456,12.0182],[92.77437,12.01834],[92.7743,12.01855],[92.77419,12.01846],[92.77395,12.01863],[92.7734,12.01873],[92.77321,12.01866],[92.77312,12.01868],[92.77309,12.01875],[92.773,12.01872],[92.77299,12.01864],[92.77272,12.01873],[92.77259,12.01887],[92.77227,12.01892],[92.77225,12.019],[92.77214,12.01897],[92.77215,12.0189],[92.77198,12.01893]]],[[[92.97159,12.03543],[92.9718,12.03557],[92.97201,12.0358],[92.97215,12.03608],[92.97218,12.03627],[92.97213,12.03642],[92.97204,12.03656],[92.97191,12.03663],[92.97175,12.03665],[92.97155,12.03658],[92.97141,12.03643],[92.97119,12.03605],[92.97116,12.03596],[92.97116,12.03576],[92.97123,12.03552],[92.97131,12.0354],[92.97142,12.03538],[92.97159,12.03543]]],[[[92.99006,12.03762],[92.99,12.03769],[92.98996,12.03777],[92.98984,12.03781],[92.98961,12.038],[92.98951,12.03785],[92.98945,12.03771],[92.98934,12.03765],[92.98908,12.03786],[92.98893,12.0376],[92.98879,12.03758],[92.98877,12.03729],[92.98891,12.03725],[92.98903,12.03729],[92.98922,12.0371],[92.98938,12.03725],[92.98957,12.03703],[92.98965,12.03689],[92.98984,12.03712],[92.98985,12.03728],[92.99,12.0374],[92.99016,12.03743],[92.99022,12.03746],[92.99006,12.03762]]],[[[92.97735,12.04227],[92.97732,12.04234],[92.97727,12.04237],[92.97727,12.04243],[92.97721,12.04243],[92.97715,12.04236],[92.97716,12.04231],[92.97727,12.04223],[92.97735,12.04227]]],[[[92.97437,12.04281],[92.97443,12.04286],[92.97433,12.04292],[92.97425,12.04286],[92.97432,12.0428],[92.97437,12.04281]]],[[[92.9763,12.04267],[92.97624,12.04275],[92.97618,12.04276],[92.97614,12.04271],[92.97625,12.04261],[92.9763,12.04267]]],[[[92.97589,12.04277],[92.97591,12.04282],[92.97588,12.04288],[92.97581,12.04292],[92.9757,12.04289],[92.9757,12.04283],[92.97583,12.04276],[92.97589,12.04277]]],[[[92.97862,12.04315],[92.97868,12.04318],[92.97872,12.04326],[92.97872,12.04331],[92.97867,12.0433],[92.97862,12.04323],[92.97851,12.04319],[92.97853,12.04314],[92.97862,12.04315]]],[[[92.97806,12.04283],[92.97805,12.04292],[92.97811,12.04297],[92.97807,12.04303],[92.97806,12.0431],[92.97798,12.04327],[92.9779,12.04337],[92.97781,12.04342],[92.97774,12.04341],[92.97766,12.04335],[92.9776,12.04333],[92.97751,12.04329],[92.97741,12.04327],[92.97732,12.04324],[92.97732,12.04318],[92.97733,12.04313],[92.97708,12.04291],[92.97711,12.04286],[92.97721,12.04283],[92.97728,12.04282],[92.97729,12.04275],[92.97742,12.0426],[92.97753,12.04256],[92.97758,12.04259],[92.97766,12.04254],[92.97772,12.04248],[92.97785,12.04261],[92.97801,12.04274],[92.97806,12.04283]]],[[[92.97893,12.04365],[92.97891,12.04373],[92.97886,12.04377],[92.9788,12.04373],[92.97882,12.04366],[92.97886,12.0436],[92.97893,12.04365]]],[[[92.9786,12.0437],[92.9786,12.04377],[92.97851,12.04381],[92.97842,12.04386],[92.97827,12.04369],[92.97817,12.04373],[92.97805,12.04354],[92.97799,12.04342],[92.97813,12.04328],[92.97815,12.04316],[92.97822,12.04314],[92.97835,12.04308],[92.97834,12.04327],[92.97848,12.04339],[92.97856,12.04341],[92.97864,12.04352],[92.9786,12.04365],[92.9786,12.0437]]],[[[92.74665,12.05487],[92.74442,12.05621],[92.74375,12.05701],[92.74287,12.06072],[92.74118,12.06298],[92.73793,12.06557],[92.73628,12.06601],[92.73547,12.06551],[92.73516,12.06465],[92.73789,12.06108],[92.73907,12.05649],[92.73693,12.05393],[92.73576,12.05437],[92.73391,12.05607],[92.73351,12.05697],[92.73325,12.0604],[92.73117,12.0594],[92.72761,12.05876],[92.72693,12.05831],[92.72612,12.05703],[92.72579,12.05515],[92.72749,12.05487],[92.72808,12.05411],[92.72847,12.04883],[92.72981,12.04668],[92.73021,12.04428],[92.73027,12.04083],[92.73074,12.0391],[92.73015,12.03788],[92.72884,12.03793],[92.7293,12.0369],[92.73022,12.03741],[92.73335,12.0362],[92.7338,12.03531],[92.7334,12.03435],[92.73361,12.03409],[92.73599,12.03532],[92.73705,12.03526],[92.73923,12.03305],[92.73963,12.03372],[92.73852,12.03697],[92.73843,12.03839],[92.73721,12.03928],[92.73671,12.0413],[92.73688,12.04154],[92.73809,12.04042],[92.73951,12.04109],[92.73964,12.04143],[92.73896,12.0422],[92.74062,12.0415],[92.74042,12.04076],[92.73918,12.03979],[92.73909,12.03926],[92.74004,12.03816],[92.74144,12.03767],[92.74132,12.0355],[92.74206,12.03408],[92.74307,12.03358],[92.74489,12.0334],[92.74608,12.03603],[92.74725,12.03676],[92.74816,12.03549],[92.74782,12.03443],[92.74723,12.03402],[92.74712,12.03438],[92.74633,12.03335],[92.74609,12.03111],[92.74568,12.03086],[92.74509,12.02732],[92.74559,12.02564],[92.74642,12.02505],[92.74724,12.0251],[92.74723,12.02599],[92.74752,12.02562],[92.74812,12.02586],[92.74832,12.02661],[92.74874,12.02673],[92.74919,12.0265],[92.7493,12.0255],[92.75,12.0254],[92.74999,12.02704],[92.74952,12.02735],[92.74998,12.0286],[92.74942,12.03016],[92.75,12.03046],[92.75021,12.03208],[92.75183,12.03402],[92.7528,12.03216],[92.75138,12.02941],[92.75172,12.02757],[92.7526,12.02591],[92.75382,12.02492],[92.75457,12.0264],[92.75539,12.0268],[92.75664,12.02541],[92.75554,12.02302],[92.7559,12.0219],[92.75769,12.02133],[92.75842,12.02079],[92.75859,12.02008],[92.76057,12.01932],[92.76161,12.01941],[92.76375,12.0212],[92.7649,12.02106],[92.76501,12.02173],[92.76572,12.02242],[92.76505,12.02284],[92.76498,12.02411],[92.76655,12.02544],[92.76894,12.02483],[92.77105,12.02341],[92.77169,12.02348],[92.77276,12.02255],[92.77348,12.02241],[92.77467,12.02364],[92.77559,12.02344],[92.77558,12.02401],[92.7773,12.02449],[92.77769,12.02413],[92.77837,12.02571],[92.77818,12.02662],[92.7777,12.02738],[92.77632,12.02805],[92.77635,12.02926],[92.77557,12.02992],[92.77602,12.03131],[92.77503,12.03215],[92.77452,12.03214],[92.77479,12.03386],[92.77643,12.03491],[92.7769,12.03655],[92.77753,12.0373],[92.7765,12.03852],[92.77685,12.03883],[92.77796,12.03868],[92.77645,12.03992],[92.7765,12.04061],[92.7755,12.04049],[92.77645,12.04118],[92.77616,12.04193],[92.77643,12.04205],[92.77739,12.04061],[92.77787,12.04055],[92.77805,12.03989],[92.77845,12.03999],[92.77872,12.03923],[92.77874,12.04076],[92.78012,12.04228],[92.78154,12.04299],[92.78224,12.04425],[92.78228,12.04519],[92.78165,12.04657],[92.78219,12.04854],[92.78117,12.04859],[92.78077,12.04809],[92.77938,12.0483],[92.77904,12.04929],[92.77768,12.05023],[92.77661,12.0497],[92.7758,12.05016],[92.77579,12.04965],[92.77482,12.04957],[92.77397,12.04778],[92.77164,12.04608],[92.77093,12.04603],[92.76928,12.04703],[92.76712,12.04602],[92.7662,12.04597],[92.76398,12.04721],[92.76418,12.04787],[92.76595,12.04951],[92.76447,12.05142],[92.76364,12.0516],[92.76201,12.05105],[92.76057,12.05003],[92.75963,12.05056],[92.76075,12.05402],[92.76017,12.05463],[92.75786,12.05512],[92.75596,12.05405],[92.75468,12.05421],[92.75233,12.05379],[92.75017,12.05419],[92.75,12.05528],[92.74844,12.0544],[92.74805,12.05523],[92.74725,12.05472],[92.74665,12.05487]]],[[[92.97883,12.04398],[92.97885,12.04403],[92.97881,12.04411],[92.97878,12.04422],[92.97875,12.04428],[92.97869,12.04429],[92.97862,12.04403],[92.97871,12.04395],[92.97883,12.04398]]],[[[92.96401,12.05009],[92.96154,12.04474],[92.96176,12.0389],[92.96011,12.03124],[92.95583,12.02396],[92.95064,12.01814],[92.94942,12.0138],[92.94563,12.00999],[92.9436,12.01023],[92.93893,12.00714],[92.9283,12.00592],[92.92295,11.99844],[92.92557,11.99427],[92.92941,11.99123],[92.93052,11.9856],[92.93231,11.98367],[92.93594,11.98303],[92.9393,11.98549],[92.94006,11.98366],[92.94579,11.98464],[92.95844,11.98095],[92.9629,11.96856],[92.96449,11.96818],[92.96519,11.96117],[92.97052,11.94903],[92.97509,11.94555],[92.98656,11.94329],[92.98812,11.94645],[92.99373,11.94776],[92.99724,11.94723],[92.99934,11.95025],[92.99722,11.95438],[93.0,11.95992],[92.99763,11.95385],[93.00084,11.94839],[93.00357,11.95328],[93.00636,11.95554],[93.00821,11.95537],[93.00679,11.95792],[93.00473,11.95766],[93.00441,11.9594],[93.00497,11.95793],[93.00694,11.95822],[93.0084,11.95511],[93.0064,11.95521],[93.00373,11.9529],[93.0016,11.94751],[93.00468,11.94834],[93.00815,11.94587],[93.00997,11.94663],[93.00865,11.94523],[93.00892,11.94367],[93.01002,11.94299],[93.0129,11.94413],[93.01494,11.94215],[93.01538,11.93827],[93.01474,11.94176],[93.01281,11.94381],[93.00941,11.94272],[93.00818,11.9455],[93.00428,11.94795],[93.00183,11.94658],[92.99647,11.94605],[92.99569,11.94374],[92.99055,11.94384],[92.99174,11.93794],[92.99307,11.93633],[92.99201,11.93568],[92.99233,11.93452],[92.99751,11.93089],[93.00228,11.92984],[93.00424,11.92806],[93.00655,11.92329],[93.00965,11.91998],[93.01248,11.91275],[93.01531,11.9104],[93.02381,11.88758],[93.02544,11.88578],[93.02779,11.88388],[93.03483,11.88155],[93.03796,11.8815],[93.04313,11.88424],[93.0441,11.88372],[93.05145,11.89248],[93.05367,11.89709],[93.05409,11.90279],[93.05189,11.90653],[93.05067,11.90625],[93.05171,11.90793],[93.05111,11.90948],[93.04879,11.91],[93.05057,11.91268],[93.05037,11.91541],[93.04657,11.91646],[93.04956,11.9215],[93.04861,11.92375],[93.04739,11.92407],[93.04852,11.92526],[93.04629,11.93087],[93.04379,11.93192],[93.04533,11.93447],[93.04016,11.94279],[93.03905,11.94893],[93.03335,11.94974],[93.03161,11.94847],[93.03007,11.94885],[93.03023,11.95092],[93.02779,11.95192],[93.02836,11.95424],[93.026,11.95965],[93.02732,11.96194],[93.02728,11.96481],[93.02508,11.969],[93.02701,11.96998],[93.02833,11.97478],[93.02454,11.97466],[93.0224,11.97277],[93.02053,11.97441],[93.0167,11.98017],[93.01682,11.9834],[93.01228,11.99076],[93.01438,11.9917],[93.01236,11.99215],[93.01531,11.99518],[93.01508,11.9975],[93.01235,11.99659],[93.01066,11.99465],[93.00994,11.99624],[93.01303,11.99863],[93.00867,11.99881],[93.0071,12.00299],[93.00678,12.00632],[93.00797,12.0084],[93.01161,12.00508],[93.01283,12.00524],[93.01403,12.00866],[93.01254,12.00886],[93.01296,12.01088],[93.01684,12.0122],[93.01678,12.014],[93.01561,12.01434],[93.01692,12.01518],[93.01402,12.01653],[93.01645,12.02101],[93.01355,12.02188],[93.01269,12.02358],[93.01449,12.02447],[93.01478,12.0273],[93.01395,12.028],[93.01086,12.02709],[93.01012,12.03135],[93.00772,12.02992],[93.00666,12.03213],[93.00572,12.03158],[93.00424,12.03295],[93.00433,12.0344],[93.00101,12.03209],[92.99973,12.03544],[92.99865,12.03452],[92.99272,12.03766],[92.98798,12.03707],[92.98237,12.04283],[92.9791,12.04164],[92.97296,12.04316],[92.97202,12.03921],[92.97433,12.03688],[92.97313,12.03733],[92.97377,12.03615],[92.97198,12.03461],[92.97371,12.03178],[92.97706,12.02914],[92.97854,12.03043],[92.98135,12.02902],[92.98005,12.02729],[92.98271,12.02726],[92.98168,12.02449],[92.98347,12.02603],[92.98188,12.02413],[92.98327,12.02292],[92.98257,12.0226],[92.98109,12.02521],[92.9826,12.02705],[92.97981,12.02713],[92.98111,12.02882],[92.97836,12.02997],[92.97597,12.02777],[92.97742,12.02538],[92.97545,12.02338],[92.97732,12.01874],[92.97486,12.01664],[92.97627,12.01794],[92.97724,12.01693],[92.97607,12.01767],[92.97482,12.01625],[92.97568,12.0184],[92.97708,12.01873],[92.97507,12.02337],[92.97716,12.02545],[92.97549,12.02717],[92.97645,12.02903],[92.97097,12.03493],[92.96975,12.03449],[92.96841,12.03133],[92.96551,12.04122],[92.96508,12.04888],[92.96401,12.05009]]],[[[92.74151,12.06908],[92.74133,12.0696],[92.74155,12.07064],[92.74343,12.07171],[92.74333,12.0721],[92.74154,12.07333],[92.74082,12.07353],[92.7405,12.07289],[92.74086,12.07233],[92.74092,12.07176],[92.74066,12.07111],[92.73876,12.06952],[92.738,12.06922],[92.73696,12.06935],[92.73657,12.06913],[92.73695,12.06833],[92.7371,12.06731],[92.73679,12.06646],[92.7392,12.06528],[92.74128,12.06362],[92.74309,12.06128],[92.74371,12.06021],[92.74391,12.05926],[92.74386,12.0581],[92.74426,12.05685],[92.74555,12.05576],[92.74724,12.0553],[92.74962,12.05623],[92.75,12.05598],[92.75,12.05634],[92.75032,12.05616],[92.75328,12.05754],[92.75401,12.05814],[92.75484,12.05993],[92.75585,12.0608],[92.75651,12.06177],[92.75669,12.0625],[92.75673,12.06421],[92.75583,12.06605],[92.75518,12.06676],[92.75407,12.06762],[92.75381,12.06714],[92.75365,12.06717],[92.75373,12.06801],[92.75,12.07036],[92.75,12.07011],[92.74827,12.07092],[92.74721,12.07056],[92.74623,12.07074],[92.74401,12.07147],[92.74206,12.07049],[92.74177,12.07008],[92.74185,12.06931],[92.74255,12.06832],[92.74334,12.06775],[92.74369,12.06782],[92.7442,12.06766],[92.74472,12.06718],[92.745,12.06719],[92.74523,12.06681],[92.74426,12.06692],[92.74374,12.06738],[92.7427,12.06759],[92.74151,12.06908]]],[[[92.79855,12.07663],[92.79847,12.07657],[92.7986,12.07642],[92.79849,12.07628],[92.79832,12.07625],[92.79845,12.07609],[92.79837,12.07597],[92.79852,12.0759],[92.79857,12.07574],[92.79838,12.07569],[92.79859,12.07551],[92.79859,12.0753],[92.79862,12.07515],[92.7987,12.07526],[92.79878,12.07526],[92.79892,12.07512],[92.79908,12.07505],[92.79896,12.07532],[92.79911,12.07532],[92.79925,12.07525],[92.79934,12.07526],[92.79928,12.07538],[92.79928,12.0755],[92.79937,12.07551],[92.79925,12.07571],[92.79923,12.07584],[92.79936,12.07584],[92.79938,12.07597],[92.79919,12.07605],[92.79922,12.07632],[92.79907,12.07624],[92.79894,12.0764],[92.7989,12.07634],[92.79884,12.0764],[92.79886,12.07651],[92.79868,12.07652],[92.79855,12.07663]]],[[[92.78567,12.07355],[92.78577,12.07375],[92.78589,12.07415],[92.78614,12.07444],[92.78615,12.07471],[92.78627,12.0747],[92.78642,12.07485],[92.7865,12.07522],[92.78671,12.07557],[92.78696,12.07632],[92.78712,12.07656],[92.78719,12.07676],[92.78733,12.07697],[92.78744,12.07746],[92.78746,12.07769],[92.78735,12.07785],[92.78724,12.07787],[92.78702,12.07782],[92.78688,12.0777],[92.78683,12.07758],[92.78683,12.07749],[92.7864,12.07683],[92.78639,12.07664],[92.78645,12.07632],[92.78635,12.07609],[92.78606,12.07575],[92.78596,12.07558],[92.78597,12.0754],[92.7859,12.07512],[92.78572,12.07491],[92.78545,12.0747],[92.78539,12.07438],[92.78535,12.07431],[92.78489,12.07395],[92.78484,12.07387],[92.78481,12.07353],[92.78474,12.07342],[92.78459,12.07324],[92.78431,12.07312],[92.7842,12.073],[92.78413,12.07278],[92.78414,12.07263],[92.78458,12.07256],[92.78464,12.07251],[92.78477,12.07253],[92.78492,12.07264],[92.78505,12.07291],[92.78521,12.07306],[92.78532,12.07324],[92.78536,12.07353],[92.78549,12.07346],[92.78567,12.07355]]],[[[92.792,12.07873],[92.79197,12.0789],[92.7919,12.07888],[92.79191,12.0787],[92.792,12.07873]]],[[[92.79114,12.07902],[92.7912,12.07911],[92.7912,12.07918],[92.79114,12.07919],[92.79105,12.07908],[92.79107,12.07899],[92.79114,12.07902]]],[[[92.79177,12.07879],[92.79175,12.07889],[92.79171,12.07908],[92.79167,12.07916],[92.79159,12.07913],[92.79159,12.07906],[92.79168,12.07873],[92.79177,12.07879]]],[[[92.96889,12.0659],[92.96885,12.06602],[92.96874,12.06609],[92.96866,12.06605],[92.96872,12.06588],[92.9686,12.06581],[92.96846,12.06585],[92.96829,12.06585],[92.96798,12.0659],[92.96786,12.06582],[92.9672,12.06513],[92.96716,12.065],[92.96717,12.06471],[92.96713,12.06447],[92.96715,12.06422],[92.9672,12.06405],[92.96737,12.06378],[92.96754,12.06366],[92.96752,12.06361],[92.96744,12.06355],[92.96754,12.06341],[92.96764,12.06345],[92.96787,12.06286],[92.96802,12.06276],[92.96806,12.06258],[92.96814,12.06253],[92.96841,12.06251],[92.9686,12.06266],[92.96865,12.0628],[92.96882,12.06276],[92.96893,12.06277],[92.96915,12.06286],[92.96929,12.06285],[92.96934,12.06294],[92.96948,12.06294],[92.96947,12.06299],[92.96974,12.06298],[92.96989,12.06308],[92.96994,12.0633],[92.97007,12.06326],[92.97041,12.06322],[92.97059,12.06328],[92.97068,12.0634],[92.97072,12.06354],[92.97071,12.06365],[92.97059,12.06373],[92.97027,12.06379],[92.97022,12.06385],[92.97035,12.06405],[92.97036,12.06415],[92.97025,12.06433],[92.97034,12.0644],[92.97037,12.06449],[92.97032,12.06467],[92.97014,12.06483],[92.97008,12.06499],[92.97009,12.06531],[92.97004,12.06545],[92.96992,12.06546],[92.96993,12.0654],[92.96971,12.06539],[92.96958,12.06549],[92.96936,12.06577],[92.96924,12.06582],[92.96912,12.06581],[92.96889,12.0659]]],[[[92.96473,12.06653],[92.96471,12.0666],[92.96455,12.06657],[92.96453,12.06651],[92.96409,12.06655],[92.96395,12.06654],[92.96387,12.06662],[92.96361,12.06652],[92.96366,12.06638],[92.96333,12.0664],[92.96316,12.06636],[92.96297,12.0662],[92.96291,12.06624],[92.96258,12.06631],[92.96233,12.06645],[92.96225,12.06644],[92.9622,12.06628],[92.96201,12.06642],[92.96183,12.06643],[92.96156,12.06633],[92.96152,12.06627],[92.96164,12.06608],[92.96181,12.06589],[92.96199,12.06579],[92.9622,12.06572],[92.96228,12.06577],[92.96236,12.06576],[92.9624,12.06562],[92.96251,12.06545],[92.96265,12.06531],[92.96279,12.06525],[92.96281,12.06512],[92.96288,12.06506],[92.9629,12.06513],[92.96298,12.0651],[92.96301,12.065],[92.96306,12.06506],[92.96343,12.06481],[92.96366,12.06473],[92.96377,12.06471],[92.96394,12.06479],[92.96401,12.06465],[92.96414,12.06462],[92.9641,12.06488],[92.96441,12.06466],[92.9646,12.06464],[92.96472,12.06469],[92.9649,12.06493],[92.9652,12.06494],[92.96529,12.065],[92.96538,12.06509],[92.9654,12.06525],[92.96547,12.06528],[92.96596,12.06525],[92.96603,12.06528],[92.96608,12.06533],[92.96609,12.06539],[92.96599,12.06553],[92.96561,12.06582],[92.96562,12.06598],[92.96558,12.06607],[92.96541,12.06621],[92.965,12.06645],[92.96492,12.06648],[92.96479,12.06647],[92.96473,12.06653]]],[[[93.01217,12.06528],[93.01254,12.0661],[93.01251,12.0664],[93.01267,12.06668],[93.01249,12.06702],[93.01217,12.06744],[93.01096,12.06851],[93.01031,12.06859],[93.00947,12.06801],[93.00929,12.06727],[93.00922,12.0665],[93.00954,12.0661],[93.01013,12.06597],[93.01034,12.06568],[93.01073,12.06548],[93.01122,12.06506],[93.01162,12.06508],[93.01186,12.06501],[93.01217,12.06528]]],[[[93.00854,12.07082],[93.00832,12.07055],[93.00824,12.07014],[93.00851,12.06995],[93.0088,12.06955],[93.00896,12.06939],[93.00908,12.06947],[93.00914,12.06939],[93.00949,12.0693],[93.0096,12.06942],[93.00981,12.06944],[93.00979,12.06978],[93.00997,12.0699],[93.00965,12.07036],[93.00941,12.07053],[93.00919,12.07075],[93.00876,12.07075],[93.00854,12.07082]]],[[[92.79983,12.08923],[92.79998,12.08975],[92.79952,12.09014],[92.79928,12.09018],[92.79886,12.0897],[92.79902,12.08923],[92.79983,12.08923]]],[[[93.00743,12.07239],[93.00712,12.07224],[93.00689,12.07226],[93.00678,12.07218],[93.00658,12.07156],[93.0067,12.07133],[93.00649,12.07114],[93.00602,12.07123],[93.00603,12.07149],[93.00592,12.07167],[93.006,12.07195],[93.00575,12.07215],[93.00552,12.07213],[93.00533,12.07228],[93.00486,12.07207],[93.00451,12.07168],[93.00432,12.07124],[93.00431,12.07091],[93.00415,12.07064],[93.0042,12.07021],[93.00415,12.06996],[93.00446,12.06949],[93.00459,12.06921],[93.00472,12.06917],[93.0049,12.06895],[93.00524,12.06882],[93.00555,12.06862],[93.0058,12.06863],[93.00599,12.06875],[93.00645,12.06862],[93.00666,12.06873],[93.00664,12.06905],[93.00686,12.06901],[93.00703,12.0692],[93.00727,12.06967],[93.0072,12.06999],[93.00719,12.07019],[93.00673,12.0707],[93.00657,12.07075],[93.00661,12.07105],[93.0067,12.07113],[93.00718,12.07084],[93.00748,12.07089],[93.00758,12.07078],[93.00795,12.07081],[93.0082,12.07099],[93.00824,12.07122],[93.0082,12.07139],[93.00807,12.07144],[93.0081,12.07165],[93.0081,12.07201],[93.00796,12.07225],[93.00782,12.07227],[93.00761,12.07223],[93.00743,12.07239]]],[[[93.05253,12.07335],[93.05232,12.07316],[93.05258,12.07282],[93.05303,12.07252],[93.05335,12.07241],[93.05354,12.07252],[93.05345,12.07291],[93.05307,12.07321],[93.05272,12.07323],[93.05253,12.07335]]],[[[93.05439,12.07363],[93.05459,12.07381],[93.05404,12.07406],[93.05376,12.0739],[93.05368,12.07358],[93.05441,12.07328],[93.05439,12.07363]]],[[[93.07719,12.07692],[93.07707,12.07692],[93.07676,12.07684],[93.07666,12.07674],[93.0767,12.07648],[93.07698,12.07627],[93.07708,12.07647],[93.07731,12.07638],[93.07728,12.07667],[93.07718,12.07674],[93.07719,12.07692]]],[[[93.07854,12.07714],[93.07841,12.07706],[93.07831,12.07694],[93.07829,12.07681],[93.07843,12.07671],[93.07837,12.07653],[93.0786,12.07656],[93.07872,12.07646],[93.07887,12.07666],[93.07905,12.07659],[93.07901,12.07688],[93.07891,12.07691],[93.07894,12.0771],[93.0786,12.07705],[93.07854,12.07714]]],[[[93.08021,12.07687],[93.08036,12.07699],[93.08012,12.07729],[93.07962,12.07722],[93.07952,12.07719],[93.07946,12.07683],[93.07959,12.07675],[93.07958,12.07666],[93.07995,12.07647],[93.08003,12.07654],[93.08004,12.0767],[93.08022,12.07665],[93.08021,12.07687]]],[[[93.08231,12.07883],[93.08225,12.07867],[93.08228,12.07838],[93.08237,12.07827],[93.08257,12.07822],[93.08283,12.07827],[93.08291,12.07843],[93.0829,12.0787],[93.08284,12.07887],[93.0827,12.0789],[93.08248,12.07891],[93.08231,12.07883]]],[[[92.9568,12.09191],[92.95652,12.09222],[92.9564,12.09218],[92.95635,12.09213],[92.95629,12.09201],[92.95616,12.09169],[92.95588,12.09139],[92.95584,12.09133],[92.95582,12.09119],[92.95583,12.09113],[92.95595,12.09092],[92.95599,12.09073],[92.95605,12.09059],[92.95623,12.09058],[92.95624,12.09051],[92.95631,12.09044],[92.95648,12.09051],[92.95659,12.09035],[92.95664,12.09022],[92.95665,12.09002],[92.95672,12.08989],[92.9568,12.08983],[92.95688,12.08981],[92.95695,12.08981],[92.95703,12.08986],[92.95711,12.09012],[92.95725,12.09008],[92.95729,12.09018],[92.95719,12.09029],[92.95718,12.09039],[92.95727,12.09067],[92.95746,12.09095],[92.95757,12.09106],[92.9576,12.09118],[92.95755,12.09133],[92.95757,12.09156],[92.95749,12.09168],[92.95742,12.09176],[92.9573,12.0918],[92.95719,12.0918],[92.95713,12.09171],[92.95696,12.09185],[92.95693,12.09175],[92.9568,12.09191]]],[[[92.73939,12.11051],[92.74018,12.11096],[92.74051,12.11124],[92.74071,12.11154],[92.74079,12.11172],[92.74082,12.11191],[92.74076,12.1129],[92.74069,12.11299],[92.74051,12.11312],[92.74,12.11291],[92.73973,12.11267],[92.73941,12.11227],[92.73921,12.1118],[92.73873,12.11092],[92.73868,12.11068],[92.7387,12.11056],[92.7388,12.11044],[92.73898,12.11039],[92.73939,12.11051]]],[[[93.03434,12.10264],[93.03423,12.10369],[93.03407,12.10419],[93.03385,12.10476],[93.03366,12.10503],[93.03319,12.10495],[93.03311,12.10455],[93.0334,12.10419],[93.03362,12.10363],[93.03387,12.1029],[93.03429,12.10264],[93.03434,12.10264]]],[[[92.98997,12.10979],[92.98402,12.10942],[92.9804,12.1066],[92.97556,12.10624],[92.97563,12.10576],[92.97467,12.10597],[92.97412,12.10495],[92.97292,12.10453],[92.97211,12.10481],[92.97172,12.10384],[92.97066,12.10494],[92.97053,12.10457],[92.9698,12.10533],[92.96917,12.10508],[92.96872,12.10631],[92.96933,12.10598],[92.96888,12.10671],[92.96712,12.10809],[92.96691,12.10788],[92.9656,12.10999],[92.96335,12.10863],[92.96156,12.10947],[92.96014,12.10923],[92.95917,12.10854],[92.95789,12.10855],[92.95783,12.10747],[92.95843,12.10656],[92.95829,12.10516],[92.95876,12.10429],[92.95851,12.10326],[92.9595,12.10194],[92.95923,12.09992],[92.95982,12.09954],[92.95954,12.09843],[92.96009,12.09724],[92.95967,12.09637],[92.95875,12.09774],[92.95791,12.09652],[92.95902,12.09276],[92.95858,12.0922],[92.95893,12.09156],[92.95819,12.08956],[92.95754,12.08898],[92.95751,12.08718],[92.95986,12.08725],[92.96071,12.08771],[92.95985,12.08916],[92.96104,12.09101],[92.96116,12.0929],[92.96181,12.09334],[92.96308,12.09366],[92.96326,12.09165],[92.96404,12.09148],[92.96321,12.09],[92.96344,12.08884],[92.96305,12.08827],[92.96316,12.08756],[92.9637,12.08738],[92.96422,12.08835],[92.96372,12.08865],[92.96442,12.08916],[92.96553,12.08914],[92.96832,12.09085],[92.96867,12.09274],[92.96966,12.093],[92.96981,12.09366],[92.96975,12.09287],[92.96876,12.09255],[92.96874,12.08879],[92.96964,12.0872],[92.97177,12.08659],[92.97091,12.08635],[92.96824,12.08684],[92.96519,12.08539],[92.96337,12.08564],[92.96254,12.08522],[92.96262,12.0846],[92.96134,12.08418],[92.9606,12.08322],[92.95904,12.08346],[92.9579,12.0831],[92.95635,12.08132],[92.95671,12.08132],[92.95676,12.08025],[92.95752,12.07929],[92.95749,12.07866],[92.95662,12.0779],[92.95713,12.07743],[92.9575,12.07761],[92.95749,12.07666],[92.95852,12.07631],[92.95849,12.07556],[92.95644,12.07307],[92.95748,12.0718],[92.95717,12.06994],[92.95914,12.06889],[92.9605,12.06924],[92.96095,12.06784],[92.96163,12.06729],[92.96257,12.06722],[92.9637,12.06791],[92.96477,12.06734],[92.96563,12.06774],[92.96803,12.0668],[92.96835,12.06712],[92.96886,12.06666],[92.97115,12.06814],[92.97113,12.06765],[92.97035,12.06715],[92.97054,12.06516],[92.97188,12.06437],[92.972,12.06493],[92.97353,12.06577],[92.97492,12.06722],[92.97291,12.06485],[92.97345,12.06401],[92.97273,12.06447],[92.97306,12.06397],[92.97175,12.06305],[92.97124,12.05956],[92.97061,12.0592],[92.97122,12.05731],[92.97206,12.05641],[92.97286,12.05626],[92.97274,12.05706],[92.97205,12.05763],[92.97398,12.06044],[92.97501,12.05935],[92.97574,12.05722],[92.97671,12.05664],[92.97847,12.05445],[92.97859,12.05314],[92.9777,12.05192],[92.97874,12.05073],[92.97976,12.05013],[92.98138,12.05068],[92.98271,12.04946],[92.98342,12.04957],[92.98544,12.04803],[92.98593,12.04684],[92.98679,12.04679],[92.99037,12.04405],[92.99414,12.04368],[92.99639,12.04439],[92.99894,12.04751],[92.99876,12.04799],[92.99944,12.04806],[93.0004,12.04905],[93.0011,12.05066],[93.00121,12.05407],[93.00063,12.05477],[93.00086,12.05513],[92.99985,12.0561],[92.99973,12.05834],[93.00266,12.05955],[93.00207,12.0613],[93.00081,12.06254],[92.99884,12.06392],[92.99725,12.06425],[92.99725,12.0653],[92.99839,12.06523],[92.99943,12.06588],[93.00018,12.06753],[92.99992,12.07006],[92.99921,12.07115],[92.99832,12.07158],[92.99814,12.07331],[92.99868,12.07339],[92.99935,12.07256],[93.0002,12.07289],[93.00069,12.07417],[93.00053,12.07535],[93.0,12.07621],[93.0,12.07512],[92.99799,12.0773],[92.9959,12.0767],[92.99449,12.0784],[92.99352,12.07877],[92.99467,12.0786],[92.99604,12.07699],[92.99829,12.07762],[92.99748,12.07874],[92.99741,12.08033],[92.99602,12.08125],[92.99509,12.08133],[92.99554,12.08162],[92.99779,12.0807],[92.99785,12.07863],[92.99938,12.07849],[92.99967,12.08052],[92.99933,12.08374],[92.99976,12.08539],[92.9976,12.08699],[92.99788,12.08724],[93.00004,12.08592],[93.00139,12.08956],[93.0007,12.09049],[93.00026,12.0903],[92.99874,12.09102],[92.99865,12.09158],[92.9993,12.09248],[92.99776,12.09329],[92.99806,12.09458],[92.99849,12.09458],[92.99821,12.09326],[92.99949,12.09251],[92.99888,12.09145],[92.99906,12.09099],[93.00123,12.09057],[93.00204,12.09312],[93.00294,12.09394],[93.00324,12.09777],[93.00491,12.09897],[93.00503,12.10064],[93.00486,12.10281],[93.00416,12.10401],[93.00071,12.1054],[92.99902,12.10581],[92.99722,12.10538],[92.99529,12.10672],[92.99159,12.10724],[92.98997,12.10979]]],[[[93.0,12.10902],[93.0,12.10882],[92.99946,12.1085],[92.99918,12.10847],[92.99865,12.10873],[92.99841,12.1086],[92.99812,12.10789],[92.99868,12.10775],[92.99914,12.10734],[93.00029,12.10706],[93.00143,12.1069],[93.00269,12.10654],[93.0033,12.10648],[93.0043,12.10605],[93.00481,12.10611],[93.00493,12.10646],[93.00501,12.10732],[93.00481,12.10757],[93.00384,12.10754],[93.00276,12.10776],[93.00206,12.10829],[93.00131,12.10874],[93.0007,12.10882],[93.0,12.10882],[93.0,12.10902]]],[[[92.97755,12.10915],[92.97769,12.10927],[92.97773,12.10937],[92.97774,12.1095],[92.97774,12.10996],[92.97778,12.11059],[92.97775,12.11074],[92.9777,12.11086],[92.97733,12.11156],[92.97713,12.11187],[92.97684,12.1121],[92.97655,12.11219],[92.97631,12.11219],[92.9761,12.11213],[92.97587,12.11195],[92.97581,12.11188],[92.9758,12.11182],[92.97585,12.11162],[92.97586,12.11141],[92.97579,12.1111],[92.97577,12.11075],[92.97582,12.1105],[92.97589,12.11026],[92.97599,12.11003],[92.97615,12.1098],[92.97635,12.10962],[92.97659,12.10944],[92.97683,12.1093],[92.97697,12.10923],[92.97733,12.10915],[92.97746,12.10913],[92.97755,12.10915]]],[[[92.9921,12.10951],[92.99221,12.10956],[92.99236,12.10969],[92.99253,12.10988],[92.99265,12.11018],[92.9927,12.11042],[92.99272,12.11058],[92.99267,12.11075],[92.99259,12.11095],[92.99231,12.11134],[92.99208,12.11151],[92.99184,12.11156],[92.9916,12.11154],[92.9914,12.11148],[92.99124,12.11138],[92.99112,12.11127],[92.99104,12.11118],[92.9909,12.11096],[92.99082,12.1107],[92.99084,12.11043],[92.9909,12.1102],[92.991,12.11001],[92.99133,12.10975],[92.99175,12.1095],[92.99189,12.10946],[92.9921,12.10951]]],[[[92.97328,12.11617],[92.97322,12.11618],[92.97315,12.11634],[92.97295,12.11646],[92.97258,12.11654],[92.97237,12.11645],[92.97225,12.11642],[92.97208,12.11635],[92.97205,12.1163],[92.97205,12.11619],[92.97209,12.11612],[92.97213,12.11608],[92.97208,12.11604],[92.97201,12.11601],[92.97196,12.11597],[92.97194,12.11588],[92.97195,12.11581],[92.972,12.11575],[92.9721,12.11569],[92.97223,12.1156],[92.97228,12.11553],[92.97231,12.11544],[92.97242,12.11539],[92.97263,12.11537],[92.97277,12.11537],[92.97288,12.11533],[92.97295,12.11531],[92.97307,12.11534],[92.97316,12.11543],[92.97323,12.11556],[92.97329,12.11563],[92.97345,12.11572],[92.97355,12.11574],[92.97357,12.11584],[92.97356,12.11593],[92.97347,12.11598],[92.97351,12.11606],[92.97348,12.11614],[92.97339,12.1162],[92.97333,12.11617],[92.97328,12.11617]]],[[[92.94746,12.11654],[92.94709,12.11754],[92.9466,12.11812],[92.94635,12.11901],[92.94568,12.11988],[92.94546,12.1194],[92.9457,12.11863],[92.94557,12.11828],[92.94596,12.11721],[92.94568,12.11683],[92.94589,12.11673],[92.94578,12.11642],[92.94609,12.11558],[92.94669,12.11496],[92.94663,12.11409],[92.9477,12.1117],[92.94798,12.11005],[92.94755,12.10598],[92.94702,12.10329],[92.94675,12.09904],[92.94715,12.0927],[92.94801,12.08518],[92.9491,12.08488],[92.94898,12.08442],[92.94979,12.08284],[92.94955,12.08268],[92.95,12.08156],[92.9498,12.08145],[92.9498,12.08112],[92.95008,12.08109],[92.94986,12.08093],[92.94983,12.07966],[92.95013,12.07924],[92.95073,12.07977],[92.95068,12.08061],[92.95131,12.08134],[92.951,12.08192],[92.95126,12.08227],[92.9511,12.08267],[92.9513,12.08274],[92.95158,12.084],[92.95115,12.08479],[92.95137,12.08515],[92.95188,12.08505],[92.95201,12.08548],[92.95147,12.08692],[92.95114,12.08712],[92.95105,12.08769],[92.95061,12.08823],[92.95066,12.08894],[92.95088,12.08904],[92.95068,12.08993],[92.95095,12.09051],[92.95083,12.09098],[92.95118,12.09161],[92.95198,12.09221],[92.95217,12.09295],[92.95309,12.09331],[92.95305,12.09348],[92.95397,12.09352],[92.9539,12.09366],[92.9547,12.09394],[92.95534,12.09536],[92.95626,12.09611],[92.95612,12.09629],[92.95687,12.09747],[92.95678,12.09777],[92.95712,12.09828],[92.95707,12.09906],[92.9573,12.09923],[92.95703,12.09938],[92.95688,12.10002],[92.95667,12.10232],[92.95618,12.10296],[92.95612,12.10357],[92.95634,12.1038],[92.95589,12.10362],[92.95568,12.10464],[92.95544,12.10472],[92.95546,12.10525],[92.95498,12.10588],[92.95477,12.10731],[92.95444,12.10729],[92.95414,12.10798],[92.95404,12.1085],[92.95431,12.10854],[92.95384,12.10877],[92.95394,12.11054],[92.95364,12.11039],[92.95237,12.11173],[92.95273,12.11233],[92.95355,12.11279],[92.95377,12.11314],[92.95235,12.11311],[92.95244,12.11288],[92.95161,12.11259],[92.95126,12.11354],[92.95058,12.11442],[92.94941,12.11507],[92.94886,12.11576],[92.94828,12.11567],[92.94746,12.11654]]],[[[92.96043,12.11812],[92.96011,12.11866],[92.95995,12.11873],[92.95975,12.1192],[92.95946,12.11929],[92.95937,12.1192],[92.95935,12.11913],[92.95951,12.11885],[92.95957,12.11865],[92.95948,12.11788],[92.95958,12.11763],[92.95973,12.1174],[92.95981,12.11709],[92.9599,12.11694],[92.96003,12.11687],[92.9602,12.11698],[92.96022,12.11646],[92.96031,12.11629],[92.9607,12.11595],[92.96085,12.1157],[92.96094,12.11543],[92.96106,12.11526],[92.96119,12.11514],[92.96131,12.11513],[92.96144,12.11526],[92.96159,12.11494],[92.96208,12.11455],[92.96227,12.11412],[92.96242,12.11399],[92.96259,12.11397],[92.96265,12.11402],[92.96296,12.11463],[92.96342,12.11509],[92.96347,12.1153],[92.96343,12.11552],[92.96329,12.11566],[92.96309,12.11599],[92.96295,12.11634],[92.96283,12.1168],[92.96253,12.11703],[92.96236,12.11735],[92.9621,12.11755],[92.96171,12.11803],[92.96149,12.1181],[92.96125,12.11803],[92.96098,12.11807],[92.96058,12.11802],[92.96043,12.11812]]],[[[92.96084,12.11938],[92.96095,12.11943],[92.96101,12.11947],[92.96104,12.11958],[92.96103,12.11968],[92.96098,12.1198],[92.96089,12.1199],[92.96084,12.12013],[92.96079,12.12026],[92.9606,12.12049],[92.96051,12.12064],[92.9604,12.12075],[92.96034,12.12079],[92.96028,12.12077],[92.96017,12.12064],[92.96009,12.12048],[92.96007,12.12037],[92.96007,12.12026],[92.96011,12.12017],[92.96034,12.12],[92.96046,12.11991],[92.96054,12.11984],[92.96058,12.11976],[92.9606,12.11965],[92.96066,12.11947],[92.96071,12.11942],[92.96078,12.11938],[92.96084,12.11938]]],[[[92.95665,12.12748],[92.95645,12.12739],[92.95636,12.12747],[92.95616,12.12725],[92.95631,12.12713],[92.95624,12.12704],[92.95627,12.12679],[92.9561,12.12655],[92.95616,12.12647],[92.95605,12.12636],[92.95593,12.1261],[92.95616,12.12602],[92.95593,12.12573],[92.95613,12.12559],[92.95596,12.12529],[92.95607,12.12516],[92.95603,12.12505],[92.95611,12.12494],[92.95602,12.12486],[92.95608,12.12461],[92.95604,12.12449],[92.95621,12.12437],[92.95616,12.12423],[92.95621,12.12396],[92.95635,12.12374],[92.95639,12.12353],[92.95639,12.12331],[92.95665,12.12338],[92.95674,12.12328],[92.95692,12.12348],[92.95692,12.12361],[92.95705,12.12378],[92.95706,12.12387],[92.95732,12.12404],[92.95711,12.12418],[92.95733,12.12434],[92.95717,12.12445],[92.95728,12.12454],[92.95718,12.12467],[92.95737,12.12496],[92.9574,12.12514],[92.95767,12.12551],[92.95772,12.12569],[92.95785,12.12584],[92.95824,12.12592],[92.95805,12.12613],[92.95779,12.1266],[92.95753,12.12666],[92.95761,12.12681],[92.9574,12.12698],[92.9571,12.12718],[92.95673,12.12735],[92.95665,12.12748]]],[[[92.75411,12.14272],[92.75432,12.14335],[92.75496,12.14465],[92.75529,12.1453],[92.75565,12.14578],[92.75602,12.14597],[92.75652,12.14602],[92.75741,12.14599],[92.75764,12.14604],[92.75772,12.14613],[92.75769,12.14643],[92.75758,12.14658],[92.75658,12.14705],[92.75632,12.14734],[92.75629,12.14775],[92.75685,12.14869],[92.75683,12.14887],[92.7567,12.14898],[92.75626,12.14908],[92.7559,12.14908],[92.75521,12.14851],[92.75487,12.14816],[92.7545,12.14771],[92.75438,12.14749],[92.75428,12.14724],[92.75428,12.14691],[92.75441,12.14658],[92.75461,12.14625],[92.75464,12.14607],[92.75461,12.14561],[92.75432,12.14488],[92.75413,12.1443],[92.75368,12.14334],[92.75365,12.14315],[92.75371,12.14295],[92.75391,12.1427],[92.75402,12.14266],[92.75411,12.14272]]],[[[92.95609,12.13131],[92.95605,12.13119],[92.95586,12.13127],[92.95577,12.13105],[92.95562,12.13104],[92.95558,12.13084],[92.95539,12.13068],[92.95555,12.13059],[92.95547,12.13041],[92.95569,12.13035],[92.95578,12.1302],[92.95597,12.13036],[92.95609,12.1302],[92.95619,12.1303],[92.95628,12.13013],[92.95642,12.13027],[92.95657,12.13015],[92.95668,12.1303],[92.95686,12.13031],[92.95695,12.1302],[92.95706,12.13034],[92.95719,12.13025],[92.95742,12.13051],[92.95754,12.13053],[92.95755,12.13062],[92.95753,12.13078],[92.95743,12.13098],[92.95737,12.13104],[92.95718,12.13108],[92.95701,12.13117],[92.95687,12.13114],[92.95675,12.13124],[92.9566,12.13119],[92.95657,12.13126],[92.95649,12.13124],[92.9563,12.13126],[92.95609,12.13131]]],[[[92.85137,12.14122],[92.85149,12.14131],[92.85154,12.14145],[92.85148,12.14162],[92.85138,12.14164],[92.85115,12.14151],[92.85114,12.14134],[92.8512,12.14123],[92.85137,12.14122]]],[[[92.85184,12.14164],[92.85201,12.14175],[92.85206,12.1419],[92.85203,12.14201],[92.85186,12.14208],[92.85171,12.14203],[92.85154,12.14197],[92.85145,12.1418],[92.85154,12.1417],[92.85167,12.14162],[92.85184,12.14164]]],[[[93.00525,12.1481],[93.0053,12.14893],[93.00549,12.14899],[93.00571,12.14915],[93.0059,12.14932],[93.00595,12.14953],[93.00574,12.14972],[93.0052,12.14979],[93.00496,12.14993],[93.0044,12.15018],[93.00417,12.15],[93.00413,12.14967],[93.00461,12.14929],[93.00507,12.14916],[93.00503,12.14899],[93.00454,12.14836],[93.0047,12.14808],[93.005,12.14794],[93.00525,12.1481]]],[[[92.98779,12.15049],[92.98784,12.15051],[92.9879,12.15055],[92.988,12.15067],[92.98809,12.15081],[92.98811,12.15096],[92.9881,12.15106],[92.98804,12.15117],[92.98795,12.15128],[92.98791,12.15141],[92.98788,12.15188],[92.98782,12.15194],[92.98769,12.15196],[92.9876,12.15189],[92.98747,12.15172],[92.98741,12.15154],[92.98738,12.15128],[92.98739,12.15092],[92.98748,12.15072],[92.98755,12.15059],[92.98764,12.15052],[92.98773,12.15049],[92.98779,12.15049]]],[[[92.76017,12.17172],[92.76005,12.17219],[92.75988,12.17248],[92.75975,12.17258],[92.75963,12.17262],[92.75949,12.17262],[92.75938,12.17255],[92.75927,12.17225],[92.75936,12.17171],[92.75936,12.17147],[92.75925,12.17134],[92.75914,12.17129],[92.75884,12.17136],[92.75874,12.17135],[92.75864,12.17124],[92.75859,12.17102],[92.75864,12.17074],[92.75877,12.17051],[92.75898,12.16978],[92.75906,12.16966],[92.75918,12.16962],[92.75933,12.1697],[92.75953,12.16995],[92.75989,12.17047],[92.76001,12.17077],[92.76012,12.17115],[92.76017,12.17172]]],[[[93.00592,12.15276],[93.00564,12.15263],[93.00573,12.15236],[93.00597,12.15226],[93.0065,12.15223],[93.00663,12.15211],[93.00672,12.15193],[93.00677,12.15089],[93.00692,12.15069],[93.00714,12.15058],[93.00739,12.15056],[93.00759,12.15066],[93.00772,12.15087],[93.00776,12.1511],[93.00772,12.15172],[93.00741,12.15205],[93.00728,12.15228],[93.00732,12.1525],[93.007,12.15262],[93.00674,12.15268],[93.00592,12.15276]]],[[[92.9844,12.15426],[92.98456,12.1543],[92.98482,12.15448],[92.98503,12.15472],[92.98526,12.15494],[92.98569,12.15594],[92.9858,12.15614],[92.98584,12.15636],[92.98581,12.15652],[92.98574,12.15666],[92.98559,12.15684],[92.98541,12.15692],[92.98524,12.15689],[92.98501,12.15674],[92.98479,12.15648],[92.98458,12.15619],[92.98408,12.15593],[92.98395,12.15584],[92.98386,12.15575],[92.98376,12.15541],[92.98373,12.15514],[92.98378,12.15484],[92.98387,12.15451],[92.98396,12.15438],[92.98407,12.15429],[92.98425,12.15422],[92.9844,12.15426]]],[[[93.01362,12.15696],[93.01346,12.15718],[93.01305,12.15689],[93.01318,12.15664],[93.01273,12.15621],[93.0125,12.15633],[93.01224,12.15616],[93.01226,12.15565],[93.01249,12.15532],[93.01241,12.15517],[93.0129,12.15449],[93.01335,12.15414],[93.01384,12.15428],[93.01405,12.15449],[93.01405,12.1552],[93.01382,12.15555],[93.01386,12.15583],[93.01427,12.15625],[93.01435,12.15659],[93.01418,12.15691],[93.01399,12.15696],[93.01386,12.15692],[93.01362,12.15696]]],[[[92.99075,12.1584],[92.99055,12.16003],[92.98935,12.16021],[92.98814,12.15881],[92.98849,12.15812],[92.98801,12.15818],[92.98741,12.15753],[92.98611,12.15712],[92.98679,12.15616],[92.98663,12.15292],[92.98704,12.15244],[92.98809,12.15317],[92.9884,12.15293],[92.98849,12.15035],[92.98785,12.14679],[92.98755,12.14655],[92.98653,12.14805],[92.98512,12.14844],[92.98542,12.14881],[92.98734,12.14886],[92.9873,12.1492],[92.98655,12.14948],[92.9865,12.15009],[92.98437,12.14913],[92.98399,12.14933],[92.98635,12.15069],[92.98682,12.15188],[92.98513,12.15163],[92.98466,12.15349],[92.98386,12.15388],[92.98293,12.15066],[92.98192,12.15029],[92.98169,12.15155],[92.982,12.15224],[92.98118,12.15266],[92.98199,12.15402],[92.9817,12.15418],[92.98039,12.15339],[92.98005,12.15458],[92.97941,12.15431],[92.98005,12.15333],[92.97965,12.15272],[92.98013,12.15167],[92.97974,12.1494],[92.97891,12.14938],[92.97888,12.15038],[92.97779,12.1498],[92.97759,12.15023],[92.97732,12.15011],[92.9768,12.14879],[92.97722,12.14734],[92.97588,12.14571],[92.9764,12.14523],[92.97658,12.14428],[92.97592,12.14394],[92.9763,12.14455],[92.97561,12.14597],[92.97689,12.1475],[92.97615,12.14952],[92.97767,12.15187],[92.97697,12.15197],[92.97566,12.15025],[92.97517,12.15022],[92.9754,12.15149],[92.97493,12.15196],[92.97446,12.15164],[92.97407,12.15026],[92.97325,12.14992],[92.97205,12.15027],[92.97199,12.15002],[92.97139,12.15104],[92.97001,12.15098],[92.9692,12.15141],[92.96886,12.15121],[92.96692,12.15164],[92.96482,12.15104],[92.96482,12.15034],[92.96313,12.15153],[92.96152,12.15176],[92.9566,12.14996],[92.95478,12.14817],[92.95382,12.14594],[92.95405,12.13966],[92.95496,12.13804],[92.95507,12.1369],[92.95425,12.13574],[92.95617,12.13343],[92.9562,12.13299],[92.95788,12.13212],[92.95794,12.13119],[92.95824,12.13111],[92.95887,12.12843],[92.95939,12.12765],[92.95832,12.12754],[92.95812,12.12721],[92.95878,12.12629],[92.95981,12.12577],[92.95969,12.12514],[92.9602,12.12443],[92.95999,12.12359],[92.95883,12.12339],[92.95882,12.12297],[92.95996,12.1227],[92.96065,12.12368],[92.96129,12.12197],[92.9619,12.12175],[92.96277,12.12019],[92.96508,12.11802],[92.9684,12.11694],[92.97174,12.11774],[92.97258,12.11744],[92.97333,12.11777],[92.97488,12.1198],[92.97475,12.11912],[92.97351,12.11772],[92.97513,12.11673],[92.9764,12.11691],[92.97797,12.11827],[92.97667,12.11645],[92.97543,12.11577],[92.97499,12.11501],[92.97498,12.11389],[92.97615,12.11299],[92.97842,12.11288],[92.97911,12.1118],[92.97989,12.11136],[92.98169,12.11131],[92.98374,12.11216],[92.98566,12.11245],[92.98924,12.11227],[92.99243,12.11381],[92.99366,12.11275],[92.99486,12.1131],[92.99632,12.11214],[92.99735,12.11228],[92.99722,12.11176],[92.99934,12.11352],[92.99807,12.11136],[92.99972,12.1109],[93.00097,12.11097],[93.00168,12.1112],[93.00257,12.11215],[93.00314,12.11687],[93.00281,12.11791],[93.00213,12.11855],[93.00066,12.118],[92.99835,12.11589],[92.99722,12.11366],[92.99823,12.11613],[93.00101,12.11887],[93.00103,12.12193],[92.99905,12.12332],[92.99721,12.12784],[92.99653,12.12807],[92.99612,12.12905],[92.99495,12.13019],[92.99419,12.13259],[92.99473,12.13393],[92.99317,12.13612],[92.99387,12.13721],[92.99393,12.13879],[92.99291,12.13948],[92.99562,12.14093],[92.99511,12.1415],[92.99505,12.14238],[92.99554,12.14281],[92.99548,12.14451],[92.99497,12.145],[92.99499,12.14587],[92.99741,12.14554],[92.99784,12.14595],[92.99601,12.14689],[92.99721,12.14784],[92.99721,12.14823],[92.99651,12.14818],[92.99586,12.14874],[92.99552,12.15273],[92.99471,12.15624],[92.9941,12.15617],[92.99347,12.15519],[92.99424,12.15296],[92.99436,12.15081],[92.99396,12.14704],[92.99344,12.14536],[92.9929,12.14514],[92.99342,12.14689],[92.99328,12.14889],[92.99277,12.14835],[92.9925,12.14587],[92.9921,12.14537],[92.99185,12.14562],[92.99164,12.14864],[92.99251,12.14993],[92.99244,12.1507],[92.99101,12.14983],[92.99059,12.14828],[92.99024,12.14869],[92.99037,12.1497],[92.98975,12.14928],[92.9895,12.14949],[92.98975,12.15033],[92.98941,12.15166],[92.99115,12.15064],[92.99218,12.15152],[92.99179,12.15218],[92.9906,12.15185],[92.99034,12.15227],[92.9905,12.1531],[92.99194,12.15388],[92.99171,12.15562],[92.99086,12.15549],[92.98982,12.1537],[92.98934,12.1535],[92.98819,12.15603],[92.98957,12.15761],[92.98929,12.15839],[92.98991,12.15813],[92.98943,12.15657],[92.99075,12.1584]]],[[[92.75897,12.1798],[92.75831,12.18026],[92.75808,12.18051],[92.75768,12.18113],[92.75742,12.18126],[92.75715,12.18127],[92.75653,12.18104],[92.75562,12.18097],[92.75555,12.18085],[92.75556,12.17993],[92.75567,12.17967],[92.75583,12.17954],[92.75633,12.17958],[92.75659,12.17951],[92.75692,12.17914],[92.75722,12.17896],[92.7577,12.17889],[92.75837,12.17892],[92.75869,12.17867],[92.75874,12.17846],[92.75869,12.17747],[92.75883,12.17598],[92.75868,12.17554],[92.75816,12.17462],[92.75818,12.1741],[92.75842,12.17388],[92.7587,12.17377],[92.75901,12.17383],[92.75926,12.17403],[92.75957,12.17445],[92.75969,12.17453],[92.75994,12.17452],[92.76005,12.17447],[92.7603,12.1738],[92.76076,12.17347],[92.76098,12.17357],[92.76121,12.17381],[92.7616,12.1746],[92.76152,12.17478],[92.76136,12.17491],[92.76077,12.17498],[92.76063,12.17509],[92.76056,12.1753],[92.76045,12.17661],[92.76098,12.17726],[92.76127,12.17786],[92.76102,12.17887],[92.76129,12.17933],[92.7613,12.17981],[92.76115,12.17996],[92.76089,12.18003],[92.76038,12.17984],[92.75987,12.17976],[92.75956,12.17973],[92.75897,12.1798]]],[[[93.01304,12.1576],[93.01322,12.15777],[93.01322,12.158],[93.01316,12.15827],[93.0128,12.15866],[93.01252,12.15876],[93.01217,12.15874],[93.012,12.15841],[93.01217,12.15792],[93.01245,12.15765],[93.01276,12.15758],[93.01304,12.1576]]],[[[93.12495,12.1521],[93.12473,12.15236],[93.1244,12.1524],[93.12418,12.15306],[93.12333,12.15297],[93.12327,12.15257],[93.12284,12.15222],[93.12284,12.1525],[93.12221,12.15239],[93.11982,12.15159],[93.11972,12.15134],[93.12017,12.15113],[93.12034,12.15131],[93.12066,12.15118],[93.12082,12.15135],[93.12112,12.15127],[93.12144,12.15151],[93.12161,12.15137],[93.12091,12.15102],[93.11958,12.15097],[93.11877,12.15075],[93.11863,12.15107],[93.11823,12.15084],[93.11766,12.15082],[93.1177,12.15062],[93.11726,12.15045],[93.11709,12.15009],[93.1164,12.15005],[93.11526,12.14948],[93.11479,12.14871],[93.11483,12.14716],[93.11379,12.14705],[93.11325,12.14626],[93.11285,12.1461],[93.11276,12.14572],[93.1125,12.14556],[93.11203,12.14561],[93.11177,12.14626],[93.11135,12.1467],[93.1111,12.14667],[93.11055,12.14579],[93.1094,12.14579],[93.10856,12.14495],[93.10851,12.14332],[93.10835,12.14293],[93.10865,12.14218],[93.10821,12.14029],[93.10844,12.13876],[93.1087,12.13846],[93.1099,12.13835],[93.11056,12.1379],[93.11045,12.1352],[93.1099,12.13449],[93.10962,12.13331],[93.10983,12.1323],[93.11152,12.12978],[93.11242,12.12925],[93.11433,12.12902],[93.11463,12.12875],[93.11503,12.12884],[93.11516,12.12924],[93.11668,12.12909],[93.11716,12.12933],[93.11766,12.12994],[93.11791,12.13066],[93.11828,12.13185],[93.11819,12.13253],[93.11846,12.13282],[93.11881,12.13293],[93.11905,12.13375],[93.11966,12.13381],[93.11963,12.13408],[93.11992,12.13403],[93.11988,12.13432],[93.12012,12.1345],[93.11976,12.13472],[93.11948,12.13451],[93.11953,12.13439],[93.11916,12.13438],[93.12108,12.13629],[93.12118,12.13681],[93.12188,12.13687],[93.12183,12.13709],[93.12215,12.13717],[93.12195,12.13749],[93.12207,12.1376],[93.1218,12.1378],[93.12124,12.13708],[93.1214,12.13756],[93.12085,12.13786],[93.12171,12.13879],[93.12208,12.13783],[93.12243,12.13795],[93.12288,12.13838],[93.12337,12.13952],[93.12345,12.14097],[93.12332,12.1414],[93.12301,12.14164],[93.12223,12.14098],[93.1223,12.14087],[93.12201,12.14106],[93.1219,12.14122],[93.12206,12.14139],[93.12181,12.14184],[93.12186,12.14271],[93.12158,12.14326],[93.12169,12.14349],[93.12135,12.14382],[93.12206,12.14452],[93.12239,12.14448],[93.12252,12.14466],[93.12245,12.14498],[93.12263,12.14489],[93.12303,12.14535],[93.12319,12.14622],[93.12345,12.14652],[93.12406,12.1465],[93.12396,12.14734],[93.12366,12.14763],[93.12341,12.14703],[93.12366,12.14875],[93.12361,12.15012],[93.12372,12.15069],[93.12393,12.15005],[93.12442,12.15016],[93.12447,12.15085],[93.12398,12.15112],[93.1248,12.15145],[93.12495,12.1521]]],[[[92.72904,12.18437],[92.72978,12.18494],[92.72993,12.1854],[92.72987,12.18614],[92.73017,12.18713],[92.73034,12.18796],[92.73028,12.18856],[92.72999,12.18899],[92.72938,12.18933],[92.72868,12.18913],[92.72835,12.18878],[92.7265,12.18727],[92.72529,12.18668],[92.72448,12.1858],[92.72431,12.18503],[92.72437,12.18469],[92.72473,12.18428],[92.72514,12.18406],[92.72597,12.18418],[92.72685,12.18443],[92.72742,12.18433],[92.72827,12.18395],[92.72904,12.18437]]],[[[93.01533,12.16394],[93.0155,12.16402],[93.01562,12.16415],[93.01571,12.16431],[93.01575,12.16441],[93.01576,12.16458],[93.01572,12.1647],[93.01569,12.16477],[93.0156,12.16483],[93.01553,12.16485],[93.01544,12.16485],[93.01533,12.16482],[93.01522,12.16477],[93.01511,12.16471],[93.01504,12.16466],[93.01499,12.16459],[93.01495,12.16447],[93.01491,12.16422],[93.01493,12.16413],[93.01505,12.164],[93.01516,12.16395],[93.01533,12.16394]]],[[[93.02843,12.16659],[93.02756,12.16786],[93.02421,12.16793],[93.02389,12.16695],[93.0196,12.16764],[93.02107,12.1665],[93.02285,12.16655],[93.0225,12.16446],[93.02127,12.163],[93.01745,12.16287],[93.01849,12.16223],[93.01843,12.16068],[93.02,12.16075],[93.02028,12.15985],[93.01868,12.15815],[93.01704,12.16105],[93.01504,12.15811],[93.01623,12.15557],[93.01465,12.15414],[93.01147,12.15366],[93.01113,12.15513],[93.01044,12.15412],[93.0086,12.15653],[93.00727,12.15623],[93.00924,12.15465],[93.01018,12.15228],[93.0081,12.1532],[93.00848,12.15103],[93.00784,12.14966],[93.00556,12.14751],[93.00394,12.14776],[93.00396,12.14689],[93.00308,12.14652],[93.00351,12.14572],[93.00239,12.14491],[93.00327,12.14328],[93.00477,12.14482],[93.00452,12.14565],[93.00543,12.14606],[93.0047,12.14279],[93.00348,12.14097],[93.0025,12.14285],[93.00149,12.14233],[93.00186,12.13834],[93.00033,12.13479],[93.00176,12.1255],[93.0003,12.12714],[93.00072,12.12817],[93.00007,12.1293],[93.0008,12.1306],[93.0,12.13161],[93.00044,12.13641],[92.99968,12.13724],[92.99968,12.14028],[92.99898,12.14033],[92.99869,12.13893],[92.99722,12.1385],[92.99609,12.1393],[92.99817,12.13709],[92.9956,12.13683],[92.99722,12.1363],[92.99765,12.13436],[92.99542,12.13412],[92.99663,12.13213],[92.99535,12.13167],[92.99728,12.12943],[92.99987,12.12409],[93.00261,12.12117],[93.00221,12.11966],[93.00379,12.11748],[93.00281,12.11202],[92.99956,12.10976],[93.00595,12.10808],[93.00578,12.10687],[93.00654,12.10689],[93.00611,12.10575],[93.00719,12.10499],[93.0074,12.0985],[93.00565,12.09268],[93.00591,12.08793],[93.00458,12.0829],[93.00507,12.07676],[93.01044,12.07021],[93.01282,12.06932],[93.01668,12.06943],[93.01645,12.0668],[93.01716,12.06605],[93.01919,12.06865],[93.02037,12.06905],[93.02196,12.06847],[93.02077,12.06658],[93.02114,12.06573],[93.02324,12.06572],[93.02523,12.06751],[93.02532,12.06396],[93.0274,12.0624],[93.02817,12.06513],[93.02894,12.06457],[93.02983,12.06151],[93.03133,12.06023],[93.03076,12.05846],[93.03467,12.05371],[93.03671,12.04713],[93.03857,12.04389],[93.03986,12.0425],[93.04344,12.04264],[93.04611,12.04318],[93.04806,12.04464],[93.05119,12.04933],[93.05181,12.05268],[93.0532,12.05378],[93.05295,12.05525],[93.0536,12.05583],[93.05304,12.05794],[93.05527,12.06172],[93.05454,12.0698],[93.0538,12.07036],[93.05204,12.06939],[93.05147,12.07091],[93.05329,12.07056],[93.0541,12.07113],[93.05375,12.07201],[93.05064,12.07226],[93.05056,12.07471],[93.05106,12.07558],[93.053,12.07399],[93.05382,12.0742],[93.054,12.07658],[93.05249,12.08079],[93.0511,12.08134],[93.05066,12.08241],[93.04928,12.08266],[93.04708,12.08585],[93.0445,12.08738],[93.03739,12.0964],[93.03581,12.09687],[93.03561,12.0991],[93.03382,12.09962],[93.03441,12.1006],[93.03313,12.10205],[93.0332,12.10353],[93.03216,12.10531],[93.03349,12.10545],[93.03171,12.11076],[93.03167,12.11584],[93.03279,12.12086],[93.03545,12.12383],[93.03545,12.12586],[93.03177,12.1276],[93.03047,12.13013],[93.02908,12.13618],[93.02374,12.14147],[93.02402,12.14205],[93.02605,12.14149],[93.02778,12.14299],[93.02601,12.14805],[93.02705,12.15115],[93.0264,12.15296],[93.02689,12.15672],[93.02869,12.16272],[93.02792,12.16502],[93.02843,12.16659]]],[[[92.86595,12.18211],[92.86601,12.18221],[92.86602,12.1824],[92.86592,12.18258],[92.86577,12.18276],[92.86548,12.18283],[92.86541,12.18297],[92.86527,12.18307],[92.86514,12.18306],[92.86499,12.18295],[92.8649,12.18276],[92.86488,12.18256],[92.86488,12.18243],[92.8649,12.18229],[92.86496,12.18218],[92.86507,12.18208],[92.86517,12.182],[92.86526,12.18196],[92.86535,12.18194],[92.8654,12.18196],[92.86546,12.18201],[92.86548,12.18211],[92.86566,12.18204],[92.86582,12.18202],[92.86595,12.18211]]],[[[92.84808,12.19565],[92.84818,12.19582],[92.84819,12.19614],[92.84812,12.19651],[92.848,12.19683],[92.84783,12.19691],[92.8476,12.19693],[92.84745,12.19683],[92.84734,12.19671],[92.84721,12.19637],[92.84731,12.19609],[92.84753,12.1958],[92.8478,12.19558],[92.84802,12.19555],[92.84808,12.19565]]],[[[92.69627,12.23893],[92.69315,12.23901],[92.68767,12.23499],[92.68753,12.22919],[92.68554,12.22759],[92.68361,12.22097],[92.68614,12.21382],[92.68319,12.20617],[92.6824,12.21253],[92.6796,12.21375],[92.67825,12.21203],[92.67736,12.19687],[92.68175,12.19396],[92.68103,12.19176],[92.67994,12.19454],[92.67797,12.19513],[92.67579,12.18704],[92.67434,12.19916],[92.67614,12.20381],[92.67663,12.21539],[92.67395,12.21779],[92.66846,12.20543],[92.66438,12.20233],[92.65663,12.18076],[92.65285,12.18109],[92.66434,12.2162],[92.66705,12.21863],[92.66412,12.22185],[92.66039,12.21494],[92.65033,12.18784],[92.64454,12.1786],[92.63936,12.15453],[92.63355,12.1407],[92.63048,12.12278],[92.63452,12.12032],[92.62965,12.11956],[92.63094,12.11624],[92.62861,12.11621],[92.62719,12.11424],[92.62205,12.10139],[92.61871,12.06829],[92.6194,12.06327],[92.62492,12.05946],[92.6217,12.05167],[92.62207,12.04852],[92.62549,12.0469],[92.62816,12.043],[92.62397,12.03989],[92.62038,12.03972],[92.62181,12.03644],[92.62036,12.03152],[92.62411,12.02812],[92.62098,12.02486],[92.61725,12.02403],[92.61585,12.01205],[92.61181,11.9999],[92.61323,11.99476],[92.61554,11.99293],[92.61228,11.9918],[92.61104,11.98753],[92.61076,11.96008],[92.60792,11.95794],[92.60563,11.95915],[92.60495,11.95821],[92.60673,11.95437],[92.60846,11.9554],[92.60704,11.94892],[92.61037,11.94378],[92.60762,11.9298],[92.59948,11.9231],[92.59777,11.91832],[92.59356,11.92121],[92.59263,11.91849],[92.59409,11.90628],[92.59489,11.90476],[92.59685,11.90569],[92.59867,11.9045],[92.59997,11.90631],[92.59837,11.90622],[92.59813,11.9078],[92.59962,11.90964],[92.59711,11.91083],[92.59952,11.91215],[92.60128,11.90991],[92.60784,11.91458],[92.60901,11.92433],[92.61249,11.92558],[92.61323,11.92439],[92.61586,11.92852],[92.61517,11.9376],[92.61624,11.92883],[92.61319,11.92403],[92.61234,11.92525],[92.60901,11.92394],[92.60797,11.92061],[92.61659,11.92126],[92.62035,11.93108],[92.61816,11.92348],[92.61978,11.92183],[92.61751,11.92319],[92.61696,11.92121],[92.60981,11.92002],[92.60819,11.91414],[92.60629,11.91353],[92.609,11.91183],[92.61068,11.91462],[92.60961,11.90896],[92.60843,11.90967],[92.60769,11.90774],[92.60941,11.90472],[92.60831,11.8953],[92.60922,11.88636],[92.60627,11.88119],[92.60446,11.88169],[92.60315,11.88865],[92.6003,11.87891],[92.60137,11.87518],[92.60553,11.8795],[92.60345,11.87763],[92.59965,11.86731],[92.60367,11.86408],[92.6075,11.86718],[92.60317,11.86322],[92.60474,11.85964],[92.61165,11.85527],[92.60508,11.8586],[92.60696,11.85655],[92.60527,11.8525],[92.60891,11.85019],[92.61026,11.84731],[92.60478,11.85286],[92.60656,11.85671],[92.60271,11.85806],[92.59886,11.86724],[92.60081,11.87329],[92.59924,11.87931],[92.60097,11.88564],[92.59973,11.88951],[92.60051,11.89824],[92.5968,11.90058],[92.59822,11.89763],[92.59734,11.89636],[92.59282,11.90204],[92.59158,11.88368],[92.58767,11.88124],[92.58687,11.87649],[92.58717,11.88124],[92.59092,11.88346],[92.59136,11.8864],[92.58634,11.88639],[92.58309,11.87806],[92.58585,11.87622],[92.58419,11.87429],[92.58546,11.87627],[92.58287,11.87701],[92.58584,11.88403],[92.5837,11.89283],[92.58433,11.89744],[92.58656,11.89879],[92.58527,11.90033],[92.58416,11.89874],[92.58478,11.90457],[92.58251,11.90301],[92.58124,11.9058],[92.58472,11.9084],[92.5853,11.9121],[92.58183,11.91328],[92.58259,11.91838],[92.58106,11.91952],[92.57956,11.91754],[92.57435,11.91792],[92.57747,11.91746],[92.58088,11.92142],[92.58054,11.93137],[92.5794,11.93],[92.57779,11.93091],[92.57496,11.92877],[92.57181,11.92893],[92.57271,11.93158],[92.57108,11.9311],[92.57159,11.9343],[92.57045,11.93322],[92.57009,11.93476],[92.57153,11.93493],[92.57212,11.93855],[92.56937,11.94071],[92.5706,11.94173],[92.56919,11.95051],[92.56407,11.95081],[92.56241,11.94798],[92.56606,11.94628],[92.56778,11.94097],[92.56486,11.94501],[92.56143,11.94675],[92.55705,11.93795],[92.55102,11.93292],[92.55165,11.93003],[92.54987,11.92983],[92.54952,11.92789],[92.54637,11.93123],[92.54341,11.93214],[92.54026,11.93102],[92.54031,11.92859],[92.54392,11.92613],[92.53948,11.92319],[92.53864,11.91936],[92.54086,11.91762],[92.53602,11.91932],[92.53275,11.91312],[92.53423,11.90593],[92.53855,11.9035],[92.53413,11.90445],[92.53493,11.90033],[92.53223,11.90364],[92.53138,11.89952],[92.53073,11.90235],[92.52971,11.90306],[92.5291,11.90154],[92.52574,11.90404],[92.52244,11.90233],[92.52024,11.89862],[92.52147,11.89241],[92.5187,11.8931],[92.51775,11.89098],[92.51872,11.88735],[92.52071,11.88627],[92.519,11.88356],[92.52236,11.88007],[92.5246,11.88138],[92.52257,11.87834],[92.52241,11.87447],[92.52756,11.87249],[92.52632,11.8715],[92.52372,11.87345],[92.5241,11.87147],[92.52008,11.87665],[92.51754,11.87678],[92.51398,11.87241],[92.51248,11.86793],[92.51366,11.86735],[92.51167,11.86693],[92.51161,11.86435],[92.51396,11.86177],[92.51829,11.86109],[92.52039,11.85622],[92.51925,11.85619],[92.51827,11.86053],[92.51648,11.86107],[92.5154,11.86069],[92.51631,11.85938],[92.51468,11.86084],[92.51208,11.86025],[92.51066,11.85684],[92.50817,11.85632],[92.50821,11.85442],[92.51028,11.8538],[92.50688,11.84947],[92.5075,11.8415],[92.50982,11.8446],[92.512,11.84383],[92.51294,11.84121],[92.51672,11.84169],[92.52013,11.83967],[92.51941,11.83738],[92.51966,11.83906],[92.51645,11.84084],[92.50703,11.83522],[92.50658,11.82889],[92.50924,11.82881],[92.5069,11.82829],[92.50567,11.82452],[92.50807,11.82403],[92.50611,11.82341],[92.50993,11.8112],[92.51239,11.81538],[92.51458,11.81558],[92.51215,11.81227],[92.51455,11.80704],[92.51855,11.80665],[92.52056,11.81058],[92.52382,11.80737],[92.52623,11.81088],[92.52647,11.819],[92.52804,11.8217],[92.52724,11.82572],[92.52989,11.82902],[92.52912,11.83023],[92.53103,11.83387],[92.53279,11.83364],[92.53765,11.8403],[92.54237,11.83669],[92.54353,11.83315],[92.54176,11.83115],[92.54298,11.82873],[92.54609,11.83598],[92.5441,11.84161],[92.54502,11.84334],[92.54674,11.82944],[92.53901,11.8236],[92.53584,11.81317],[92.53141,11.80746],[92.53199,11.80581],[92.53331,11.80693],[92.53507,11.80283],[92.5384,11.80722],[92.53757,11.80358],[92.53923,11.80109],[92.54148,11.80667],[92.54537,11.80675],[92.54857,11.80891],[92.54845,11.81029],[92.54956,11.80975],[92.54275,11.80545],[92.54284,11.80135],[92.53853,11.79918],[92.5365,11.80166],[92.53523,11.79812],[92.53427,11.80141],[92.53237,11.7998],[92.53289,11.796],[92.52941,11.795],[92.53218,11.79024],[92.53765,11.79268],[92.5393,11.79032],[92.53943,11.78531],[92.54072,11.78554],[92.54054,11.78912],[92.54337,11.78833],[92.54205,11.79284],[92.54697,11.80106],[92.54958,11.80223],[92.55034,11.78099],[92.54907,11.77935],[92.55145,11.77775],[92.55022,11.77469],[92.55172,11.77215],[92.55604,11.77085],[92.55865,11.77265],[92.55063,11.76372],[92.55165,11.76076],[92.55017,11.75859],[92.5516,11.74981],[92.55061,11.74543],[92.55259,11.74124],[92.54981,11.73746],[92.55011,11.73024],[92.55211,11.72559],[92.55016,11.71951],[92.55339,11.7145],[92.55198,11.71217],[92.55447,11.71082],[92.55338,11.7076],[92.55611,11.7063],[92.55828,11.69892],[92.55805,11.6923],[92.56449,11.69132],[92.56837,11.69687],[92.57099,11.69681],[92.5743,11.71548],[92.58133,11.71618],[92.58492,11.71341],[92.58186,11.71738],[92.58524,11.71497],[92.58687,11.72704],[92.58913,11.72934],[92.59129,11.73828],[92.59101,11.73287],[92.58719,11.72575],[92.58666,11.71666],[92.59387,11.70957],[92.5983,11.71003],[92.60378,11.70702],[92.59765,11.70958],[92.58968,11.70791],[92.59249,11.70775],[92.59225,11.70262],[92.59574,11.69762],[92.59513,11.69427],[92.59897,11.69021],[92.59747,11.68597],[92.59797,11.68093],[92.59611,11.67949],[92.59446,11.67316],[92.59121,11.67241],[92.5902,11.66803],[92.59064,11.66601],[92.59348,11.66578],[92.59746,11.65665],[92.59944,11.65717],[92.59706,11.65231],[92.5977,11.64909],[92.60713,11.63963],[92.60809,11.63238],[92.60899,11.63427],[92.61229,11.63513],[92.6202,11.63297],[92.62611,11.62802],[92.63041,11.6283],[92.63203,11.64015],[92.6295,11.64964],[92.63039,11.65188],[92.63249,11.64956],[92.63436,11.6502],[92.63711,11.64581],[92.63395,11.64014],[92.63406,11.63309],[92.636,11.63221],[92.63747,11.63405],[92.6376,11.63194],[92.63905,11.63161],[92.6382,11.63637],[92.64145,11.63964],[92.6447,11.63527],[92.64307,11.6247],[92.64081,11.62051],[92.63491,11.61547],[92.62923,11.61708],[92.6291,11.62595],[92.62701,11.62644],[92.62387,11.61783],[92.62179,11.61872],[92.62179,11.62089],[92.62046,11.61913],[92.61704,11.62159],[92.60857,11.62104],[92.60845,11.61579],[92.60533,11.61026],[92.60184,11.60865],[92.60279,11.60399],[92.6074,11.60086],[92.60445,11.59319],[92.60839,11.5933],[92.61369,11.58753],[92.61706,11.58645],[92.61879,11.58259],[92.61939,11.57184],[92.61648,11.56344],[92.62017,11.56125],[92.62687,11.57141],[92.63114,11.5744],[92.6324,11.58079],[92.63713,11.57744],[92.63694,11.57506],[92.64625,11.5724],[92.64129,11.55953],[92.64845,11.54977],[92.64776,11.54644],[92.6428,11.54009],[92.6452,11.52253],[92.64942,11.51796],[92.65803,11.51272],[92.6675,11.50183],[92.6785,11.50431],[92.68223,11.50676],[92.67957,11.50933],[92.68174,11.50903],[92.68376,11.51131],[92.68692,11.50651],[92.6899,11.50619],[92.69248,11.50376],[92.69691,11.50578],[92.69531,11.49919],[92.69686,11.49606],[92.69921,11.4966],[92.69872,11.4945],[92.70379,11.49344],[92.70759,11.48946],[92.70533,11.485],[92.71023,11.47738],[92.7108,11.48756],[92.71558,11.4944],[92.71609,11.50293],[92.71896,11.50381],[92.71842,11.50572],[92.72231,11.51097],[92.72198,11.5132],[92.72664,11.51683],[92.72291,11.53027],[92.726,11.5366],[92.73109,11.54227],[92.73059,11.54592],[92.73393,11.55285],[92.73344,11.5562],[92.73103,11.55548],[92.72967,11.5582],[92.73331,11.56087],[92.73302,11.56472],[92.73623,11.56397],[92.73899,11.5678],[92.73975,11.57454],[92.73717,11.57944],[92.73907,11.57755],[92.74142,11.57876],[92.74368,11.58985],[92.74194,11.58997],[92.74134,11.59352],[92.74878,11.60198],[92.7492,11.60703],[92.75428,11.61416],[92.75108,11.62015],[92.75231,11.62109],[92.75114,11.62415],[92.75136,11.62756],[92.75261,11.62746],[92.75185,11.63269],[92.74829,11.63748],[92.74827,11.64003],[92.74015,11.64098],[92.73919,11.63853],[92.73772,11.63872],[92.73914,11.63917],[92.73903,11.64149],[92.74644,11.6405],[92.74707,11.64399],[92.75152,11.64373],[92.75485,11.6464],[92.75673,11.65115],[92.7552,11.65322],[92.75685,11.65582],[92.753,11.65802],[92.75599,11.66505],[92.75205,11.66842],[92.74724,11.66844],[92.74893,11.67418],[92.74723,11.67666],[92.7428,11.67598],[92.73541,11.6778],[92.73495,11.6732],[92.73185,11.67199],[92.72985,11.67405],[92.73084,11.68143],[92.72682,11.6813],[92.72282,11.68375],[92.71438,11.67844],[92.7141,11.67592],[92.7177,11.66984],[92.71602,11.66424],[92.72066,11.66184],[92.72747,11.66095],[92.72821,11.65822],[92.7189,11.65302],[92.70921,11.65238],[92.7084,11.65115],[92.71131,11.64438],[92.71014,11.64331],[92.70599,11.64379],[92.70499,11.64864],[92.7005,11.65446],[92.69407,11.65287],[92.69512,11.64947],[92.69887,11.64813],[92.69895,11.64237],[92.70176,11.63913],[92.69957,11.64082],[92.6971,11.63807],[92.69324,11.63889],[92.69171,11.63353],[92.694,11.62898],[92.69371,11.62478],[92.69615,11.61735],[92.70163,11.61773],[92.69615,11.61676],[92.69624,11.61488],[92.6928,11.6111],[92.69698,11.60749],[92.69504,11.60664],[92.69256,11.60866],[92.69064,11.60693],[92.69106,11.60459],[92.68987,11.6061],[92.6864,11.60299],[92.6845,11.60317],[92.68696,11.60589],[92.68771,11.61136],[92.68974,11.613],[92.69203,11.61153],[92.69426,11.61502],[92.68929,11.61451],[92.69495,11.61643],[92.69065,11.62743],[92.68842,11.6285],[92.68779,11.62743],[92.69219,11.62269],[92.69093,11.62061],[92.68802,11.62292],[92.68882,11.6174],[92.68437,11.62011],[92.6826,11.6196],[92.67936,11.61521],[92.6795,11.61319],[92.67295,11.60737],[92.67203,11.6092],[92.67353,11.60773],[92.67609,11.61196],[92.67927,11.61329],[92.68174,11.61934],[92.68489,11.62025],[92.68837,11.61814],[92.6872,11.62331],[92.68852,11.62422],[92.6912,11.62247],[92.68658,11.62822],[92.68498,11.62878],[92.68412,11.62613],[92.68405,11.63329],[92.68113,11.63808],[92.68019,11.63564],[92.68355,11.63421],[92.68284,11.63062],[92.68062,11.62768],[92.68122,11.63271],[92.67929,11.63514],[92.67892,11.62951],[92.67649,11.62858],[92.67369,11.62399],[92.66712,11.63662],[92.66809,11.64082],[92.66439,11.64674],[92.66512,11.65258],[92.66014,11.65223],[92.66669,11.65481],[92.68264,11.65072],[92.68449,11.65374],[92.68331,11.65487],[92.68562,11.65595],[92.68313,11.65927],[92.68543,11.66298],[92.69125,11.66442],[92.69159,11.66811],[92.69773,11.66554],[92.69892,11.66686],[92.70212,11.6666],[92.70772,11.67051],[92.70743,11.67218],[92.70262,11.67216],[92.69984,11.67521],[92.70346,11.68232],[92.7009,11.6919],[92.70148,11.69596],[92.70568,11.70006],[92.69452,11.69951],[92.69207,11.69796],[92.69238,11.69563],[92.69123,11.69575],[92.69176,11.69753],[92.69015,11.69737],[92.6886,11.69264],[92.68627,11.69221],[92.68962,11.69518],[92.68919,11.69722],[92.68491,11.699],[92.68795,11.70715],[92.68468,11.70892],[92.68438,11.71214],[92.6818,11.71304],[92.68222,11.7141],[92.68529,11.71272],[92.6852,11.70921],[92.68903,11.70726],[92.68673,11.70245],[92.68997,11.69774],[92.6962,11.70205],[92.69132,11.7115],[92.69412,11.71741],[92.69645,11.71888],[92.6919,11.71107],[92.69732,11.70222],[92.70379,11.70246],[92.70056,11.70596],[92.70088,11.70868],[92.69619,11.71131],[92.69603,11.71258],[92.70047,11.71051],[92.70687,11.70309],[92.7066,11.69927],[92.71095,11.69325],[92.71386,11.69777],[92.71362,11.70431],[92.71655,11.70542],[92.71847,11.70432],[92.72085,11.69727],[92.72598,11.69765],[92.72741,11.69418],[92.72847,11.6979],[92.73003,11.69853],[92.73775,11.69003],[92.74472,11.69044],[92.74463,11.70142],[92.74202,11.70798],[92.74341,11.71154],[92.74631,11.71107],[92.75,11.7038],[92.75352,11.70004],[92.75445,11.70065],[92.75687,11.70712],[92.75681,11.71126],[92.75408,11.71708],[92.75604,11.7198],[92.75515,11.72514],[92.75784,11.7285],[92.75823,11.73685],[92.76109,11.73958],[92.76052,11.74537],[92.76446,11.75074],[92.76365,11.76764],[92.76766,11.7728],[92.76592,11.77934],[92.77021,11.78562],[92.76855,11.79928],[92.77009,11.80043],[92.76964,11.80271],[92.77382,11.81247],[92.77497,11.82479],[92.77716,11.82771],[92.77539,11.83433],[92.77987,11.844],[92.77952,11.84964],[92.78083,11.85127],[92.78326,11.85058],[92.78481,11.85402],[92.78472,11.85654],[92.78251,11.85742],[92.78626,11.87258],[92.78474,11.87487],[92.78598,11.87714],[92.78512,11.88184],[92.78998,11.88545],[92.78496,11.88539],[92.77914,11.89163],[92.78005,11.89641],[92.78654,11.89971],[92.78764,11.90188],[92.78302,11.90474],[92.78788,11.91953],[92.78621,11.92304],[92.78713,11.92605],[92.78394,11.92751],[92.78182,11.93089],[92.78276,11.93374],[92.78468,11.93457],[92.78299,11.93692],[92.77902,11.93654],[92.77064,11.93955],[92.77008,11.93836],[92.76966,11.94017],[92.7659,11.93884],[92.76311,11.94081],[92.75995,11.93602],[92.75796,11.93704],[92.75,11.93125],[92.75,11.93656],[92.74853,11.93353],[92.74333,11.93119],[92.74087,11.92544],[92.74216,11.92009],[92.74421,11.92072],[92.74463,11.91936],[92.74371,11.92051],[92.74197,11.91961],[92.74075,11.92267],[92.73577,11.91634],[92.73135,11.90475],[92.7301,11.89874],[92.73546,11.89838],[92.73567,11.8965],[92.73709,11.89757],[92.73556,11.89616],[92.73489,11.89813],[92.72997,11.89737],[92.73095,11.89308],[92.72987,11.88107],[92.73175,11.88007],[92.73421,11.88324],[92.73602,11.8841],[92.73675,11.88301],[92.73452,11.88298],[92.73195,11.87905],[92.73038,11.87919],[92.7316,11.87508],[92.73293,11.87513],[92.73153,11.87464],[92.73096,11.8763],[92.72962,11.87192],[92.72846,11.86101],[92.73025,11.85757],[92.72965,11.85478],[92.72559,11.84928],[92.72389,11.84156],[92.71828,11.83185],[92.71774,11.82627],[92.71102,11.81885],[92.71031,11.81614],[92.71217,11.81238],[92.71007,11.81599],[92.70513,11.8132],[92.70513,11.81167],[92.70053,11.81198],[92.70082,11.80957],[92.70212,11.81062],[92.70362,11.80938],[92.69961,11.80963],[92.70425,11.80196],[92.70547,11.80227],[92.70516,11.80494],[92.70517,11.80105],[92.70828,11.79974],[92.7058,11.79269],[92.70803,11.79952],[92.70502,11.80005],[92.70199,11.80523],[92.70062,11.8049],[92.69891,11.80751],[92.69934,11.81127],[92.6975,11.81251],[92.68904,11.80516],[92.68416,11.80451],[92.68223,11.80252],[92.67707,11.78308],[92.67773,11.77755],[92.67626,11.77908],[92.67653,11.78317],[92.67389,11.78432],[92.67238,11.78277],[92.67412,11.78491],[92.67677,11.78356],[92.67781,11.79185],[92.67595,11.79189],[92.67454,11.79803],[92.67002,11.79804],[92.67454,11.79856],[92.67637,11.79189],[92.6775,11.79197],[92.68074,11.80389],[92.6821,11.8055],[92.68879,11.80664],[92.69232,11.81098],[92.69192,11.81367],[92.68818,11.81438],[92.68589,11.81294],[92.68717,11.81448],[92.67447,11.8209],[92.66404,11.81938],[92.6664,11.8225],[92.66252,11.82231],[92.65924,11.8261],[92.66055,11.82858],[92.65454,11.83332],[92.65553,11.83493],[92.65542,11.83264],[92.66073,11.82883],[92.65952,11.82616],[92.6628,11.82258],[92.66698,11.82311],[92.66461,11.81972],[92.67438,11.82143],[92.6899,11.81616],[92.6952,11.81291],[92.69507,11.81556],[92.69156,11.81769],[92.6957,11.82122],[92.69417,11.82266],[92.69616,11.82112],[92.69745,11.8226],[92.69918,11.82667],[92.69761,11.8273],[92.69783,11.83003],[92.69819,11.82707],[92.69996,11.82963],[92.70076,11.8287],[92.69724,11.82099],[92.69218,11.81834],[92.6928,11.81726],[92.70132,11.81421],[92.70969,11.82039],[92.71407,11.82893],[92.71379,11.83584],[92.71568,11.83327],[92.72032,11.84797],[92.72206,11.84929],[92.72526,11.86248],[92.7225,11.87714],[92.71558,11.8725],[92.71366,11.86877],[92.70931,11.86906],[92.71146,11.86734],[92.71049,11.863],[92.70787,11.86216],[92.70638,11.86444],[92.7084,11.86262],[92.71036,11.86329],[92.71112,11.86692],[92.70867,11.86815],[92.71033,11.8705],[92.70981,11.87283],[92.71234,11.86888],[92.71846,11.87689],[92.7209,11.87743],[92.72099,11.87961],[92.72222,11.87893],[92.72421,11.89118],[92.72022,11.89081],[92.71696,11.88831],[92.71367,11.88906],[92.71734,11.88881],[92.71981,11.89099],[92.71348,11.89342],[92.71276,11.89764],[92.71024,11.89583],[92.70707,11.90042],[92.70569,11.89911],[92.7039,11.90076],[92.70557,11.89946],[92.70716,11.90087],[92.70987,11.89652],[92.71335,11.89787],[92.71368,11.89437],[92.71819,11.8921],[92.72158,11.89235],[92.72507,11.89726],[92.72362,11.90277],[92.71802,11.90086],[92.71662,11.90231],[92.71805,11.9017],[92.72249,11.90483],[92.72407,11.90917],[92.72218,11.91823],[92.72395,11.92486],[92.72301,11.93144],[92.71932,11.93499],[92.71602,11.93457],[92.71337,11.92437],[92.71412,11.92192],[92.71097,11.92595],[92.71343,11.92519],[92.71378,11.9314],[92.71276,11.93419],[92.71049,11.93308],[92.7143,11.93769],[92.71717,11.93883],[92.71523,11.9459],[92.71736,11.94914],[92.71427,11.95189],[92.71282,11.95099],[92.71235,11.95399],[92.71451,11.95204],[92.71794,11.95826],[92.71634,11.96336],[92.71708,11.96598],[92.71523,11.96715],[92.7176,11.96623],[92.71729,11.96336],[92.7188,11.96267],[92.71957,11.96443],[92.72135,11.96283],[92.72417,11.96496],[92.72361,11.96736],[92.728,11.97016],[92.73059,11.96851],[92.73157,11.97107],[92.72877,11.97627],[92.72336,11.97469],[92.72243,11.97626],[92.72395,11.97817],[92.72188,11.98112],[92.72575,11.98236],[92.7284,11.99268],[92.73007,11.99388],[92.72518,11.99197],[92.72282,11.99371],[92.72289,11.98804],[92.72189,11.99308],[92.72574,11.99243],[92.7305,11.99971],[92.73162,11.99833],[92.74024,11.99766],[92.74357,11.9943],[92.74495,11.99682],[92.74395,11.99973],[92.74647,11.99631],[92.75,11.99675],[92.75,11.99546],[92.75278,11.9966],[92.75994,11.99465],[92.76394,11.98656],[92.76684,11.98983],[92.76576,11.99388],[92.77044,11.9977],[92.77041,11.99955],[92.76587,12.00378],[92.76622,12.01214],[92.7577,12.0088],[92.75564,12.00314],[92.75147,12.00321],[92.75059,12.01274],[92.75191,12.01516],[92.74925,12.01913],[92.74724,12.01693],[92.74217,12.01679],[92.73834,12.01073],[92.73687,12.01405],[92.73435,12.01545],[92.73333,12.01307],[92.73259,12.01438],[92.73847,12.01633],[92.73923,12.01886],[92.73132,12.01834],[92.73173,12.02314],[92.7285,12.02417],[92.72737,12.02307],[92.72577,12.02497],[92.72741,12.02253],[92.72514,12.02326],[92.72602,12.02543],[92.72731,12.02372],[92.73857,12.02426],[92.74001,12.02861],[92.73196,12.03022],[92.73575,12.03097],[92.73658,12.03402],[92.73328,12.03355],[92.73308,12.03571],[92.73061,12.03674],[92.72807,12.03549],[92.72839,12.03819],[92.73022,12.03919],[92.72734,12.05433],[92.72573,12.05446],[92.72545,12.04885],[92.72111,12.05159],[92.7196,12.04851],[92.71609,12.04982],[92.71535,12.04501],[92.71377,12.04438],[92.71295,12.03924],[92.71029,12.03542],[92.71044,12.03104],[92.70958,12.03392],[92.71247,12.03918],[92.71331,12.04473],[92.71501,12.04572],[92.71505,12.05168],[92.71335,12.05153],[92.71317,12.04793],[92.71099,12.05016],[92.70921,12.0455],[92.70732,12.04653],[92.70625,12.04406],[92.70074,12.04008],[92.69882,12.04203],[92.69681,12.04021],[92.6966,12.0425],[92.69729,12.04067],[92.69869,12.04247],[92.70067,12.04072],[92.70612,12.04461],[92.70714,12.04711],[92.70931,12.04639],[92.71097,12.05073],[92.71336,12.04902],[92.71244,12.05152],[92.71381,12.05278],[92.71813,12.04939],[92.72063,12.05251],[92.72507,12.04965],[92.7253,12.05739],[92.72746,12.05953],[92.73317,12.06138],[92.73614,12.05497],[92.73816,12.05723],[92.7336,12.06534],[92.73576,12.06698],[92.73599,12.07043],[92.73816,12.07014],[92.73968,12.07195],[92.73693,12.07807],[92.73245,12.0716],[92.73289,12.06838],[92.72962,12.07456],[92.72513,12.07335],[92.72436,12.07206],[92.72768,12.07047],[92.72608,12.07032],[92.72462,12.06474],[92.72276,12.0644],[92.7245,12.0653],[92.72555,12.0709],[92.72725,12.07055],[92.72405,12.07157],[92.72408,12.07288],[92.72815,12.07545],[92.7324,12.07232],[92.73612,12.07878],[92.73455,12.08326],[92.73176,12.08031],[92.73425,12.08367],[92.73396,12.08536],[92.73182,12.08518],[92.73396,12.08592],[92.73411,12.09609],[92.73008,12.09741],[92.73082,12.09473],[92.72541,12.0959],[92.73031,12.09536],[92.729,12.09762],[92.73318,12.09618],[92.73407,12.09729],[92.73575,12.10981],[92.74292,12.12015],[92.74347,12.12734],[92.75191,12.14814],[92.7534,12.15851],[92.75656,12.16316],[92.75498,12.16596],[92.7567,12.17567],[92.75092,12.18061],[92.74751,12.17727],[92.74393,12.1799],[92.7359,12.18213],[92.72825,12.1808],[92.72223,12.17732],[92.71937,12.17972],[92.71031,12.16067],[92.70933,12.16132],[92.71147,12.16771],[92.70857,12.16295],[92.70736,12.15807],[92.70979,12.15371],[92.70924,12.14781],[92.70874,12.15385],[92.70627,12.15826],[92.71192,12.17138],[92.7122,12.1755],[92.70851,12.17056],[92.70655,12.17065],[92.70235,12.16333],[92.7042,12.17884],[92.70904,12.18866],[92.70539,12.18847],[92.70424,12.19025],[92.70378,12.18764],[92.70103,12.18695],[92.70356,12.18848],[92.7036,12.19096],[92.70572,12.189],[92.71186,12.1897],[92.70663,12.19628],[92.70367,12.1928],[92.70829,12.20317],[92.70892,12.21616],[92.70747,12.21744],[92.70631,12.2165],[92.70708,12.22035],[92.70537,12.2212],[92.70526,12.2279],[92.70312,12.23215],[92.70017,12.23329],[92.69873,12.23805],[92.69627,12.23893]],[[92.7208,11.58561],[92.72337,11.58721],[92.72314,11.58993],[92.72516,11.59234],[92.72574,11.60397],[92.73015,11.60173],[92.72789,11.59689],[92.73147,11.59681],[92.73217,11.59458],[92.7353,11.59576],[92.73976,11.59139],[92.73731,11.58968],[92.7352,11.57086],[92.72985,11.56904],[92.73078,11.56741],[92.72957,11.56646],[92.72285,11.56732],[92.72123,11.56944],[92.72149,11.57404],[92.71659,11.57668],[92.71472,11.58438],[92.7208,11.58561]]],[[[92.87111,12.22887],[92.87101,12.2289],[92.87089,12.22889],[92.87077,12.22887],[92.87061,12.22876],[92.87046,12.22862],[92.87039,12.22847],[92.87037,12.22834],[92.87039,12.22827],[92.87048,12.22819],[92.87055,12.22808],[92.87062,12.22807],[92.87065,12.22799],[92.87074,12.22784],[92.87081,12.22777],[92.87092,12.2277],[92.87113,12.22765],[92.87127,12.22764],[92.8714,12.22769],[92.87152,12.22779],[92.87156,12.22795],[92.87152,12.22834],[92.87147,12.22856],[92.87136,12.22873],[92.8713,12.22872],[92.87111,12.22887]]],[[[92.73483,12.23959],[92.73229,12.24067],[92.7302,12.24252],[92.72926,12.24259],[92.72685,12.24019],[92.72604,12.23987],[92.72512,12.24033],[92.72396,12.23967],[92.7236,12.23855],[92.72406,12.23662],[92.72387,12.23532],[92.72286,12.23455],[92.72154,12.23441],[92.72086,12.23323],[92.72116,12.23115],[92.7206,12.22958],[92.72075,12.22813],[92.7221,12.22331],[92.7239,12.22129],[92.72252,12.21866],[92.72177,12.21818],[92.72148,12.21589],[92.7218,12.21535],[92.72149,12.21365],[92.72268,12.21048],[92.72252,12.20908],[92.72336,12.20728],[92.72253,12.20588],[92.72132,12.20518],[92.72156,12.20324],[92.72275,12.2021],[92.72201,12.19848],[92.72082,12.19733],[92.72081,12.19371],[92.72172,12.19231],[92.7216,12.1903],[92.72247,12.18833],[92.72399,12.18816],[92.72667,12.18996],[92.72916,12.19291],[92.7273,12.1948],[92.72851,12.19768],[92.72767,12.1948],[92.73021,12.19271],[92.73072,12.19178],[92.73117,12.18993],[92.73046,12.18931],[92.73119,12.18816],[92.73091,12.18759],[92.73262,12.18452],[92.73392,12.18465],[92.73549,12.18389],[92.73722,12.18375],[92.73932,12.18414],[92.74088,12.18343],[92.74231,12.18346],[92.74326,12.18226],[92.74555,12.18135],[92.74632,12.18011],[92.74724,12.18056],[92.74845,12.18304],[92.75,12.18415],[92.75,12.18308],[92.75085,12.18324],[92.75199,12.18212],[92.75417,12.18311],[92.75798,12.18285],[92.7601,12.18187],[92.76196,12.18237],[92.76296,12.18177],[92.76462,12.18411],[92.76654,12.18839],[92.76611,12.18991],[92.76469,12.1915],[92.76506,12.19392],[92.76705,12.19808],[92.76757,12.20063],[92.76723,12.20167],[92.76556,12.2033],[92.76197,12.20922],[92.76159,12.21317],[92.76224,12.22084],[92.76159,12.22407],[92.76186,12.22953],[92.76127,12.23001],[92.76033,12.22938],[92.75949,12.2294],[92.75744,12.23038],[92.75614,12.2297],[92.75538,12.22742],[92.7549,12.2281],[92.75513,12.22925],[92.75393,12.23066],[92.75242,12.23033],[92.75133,12.22928],[92.75054,12.22913],[92.74796,12.23063],[92.74601,12.23022],[92.74478,12.22782],[92.74411,12.22787],[92.74389,12.23031],[92.74245,12.23169],[92.74217,12.23341],[92.74045,12.23394],[92.73953,12.23613],[92.73891,12.23619],[92.73843,12.23553],[92.73751,12.22962],[92.73684,12.22816],[92.73843,12.22578],[92.74169,12.22358],[92.74296,12.22358],[92.74398,12.22294],[92.74421,12.2201],[92.74256,12.21428],[92.74403,12.21136],[92.74274,12.20485],[92.74236,12.20476],[92.74225,12.20614],[92.74323,12.21035],[92.7417,12.21406],[92.74288,12.2198],[92.74229,12.22046],[92.74138,12.22066],[92.7392,12.22302],[92.73841,12.22321],[92.73743,12.22283],[92.73597,12.22075],[92.73412,12.22062],[92.73455,12.21873],[92.7332,12.21442],[92.73335,12.2132],[92.73233,12.20969],[92.72954,12.21442],[92.73021,12.21578],[92.73062,12.21929],[92.73012,12.22183],[92.72901,12.22234],[92.72894,12.22275],[92.72968,12.22377],[92.72921,12.22464],[92.72968,12.22761],[92.72941,12.22812],[92.73095,12.22943],[92.72992,12.23153],[92.73147,12.23469],[92.73335,12.2359],[92.73328,12.23714],[92.73505,12.2389],[92.73483,12.23959]]],[[[93.08231,12.07883],[93.08734,12.08203],[93.08832,12.08497],[93.08877,12.08818],[93.08524,12.09163],[93.08558,12.09264],[93.08619,12.09319],[93.08918,12.08948],[93.09078,12.08901],[93.09329,12.09075],[93.09535,12.091],[93.09708,12.09281],[93.09797,12.09737],[93.09711,12.10187],[93.09852,12.11162],[93.09785,12.11338],[93.09894,12.11941],[93.09842,12.12063],[93.10159,12.12877],[93.10132,12.12964],[93.09715,12.13024],[93.09299,12.12881],[93.09645,12.13048],[93.10069,12.1304],[93.10097,12.13338],[93.09894,12.13878],[93.09658,12.1389],[93.09425,12.1363],[93.09256,12.13216],[93.09025,12.12922],[93.0926,12.12723],[93.09139,12.12398],[93.08928,12.12473],[93.08453,12.11934],[93.0866,12.12271],[93.08856,12.12411],[93.08848,12.12592],[93.08998,12.12682],[93.08721,12.12975],[93.08986,12.13419],[93.09224,12.13631],[93.09382,12.1414],[93.09501,12.14139],[93.09591,12.14261],[93.09731,12.14247],[93.09515,12.15362],[93.09363,12.15447],[93.09072,12.15323],[93.08906,12.15404],[93.088,12.15362],[93.08604,12.15628],[93.08656,12.15832],[93.08741,12.15841],[93.0873,12.16276],[93.09092,12.1698],[93.09043,12.17053],[93.09113,12.17101],[93.0921,12.17828],[93.09191,12.18188],[93.09047,12.18448],[93.08972,12.18383],[93.09028,12.1822],[93.08899,12.1833],[93.0851,12.17971],[93.08306,12.18069],[93.08152,12.1801],[93.0806,12.18173],[93.07816,12.18061],[93.07865,12.17969],[93.07626,12.17973],[93.07634,12.18035],[93.07804,12.17985],[93.07797,12.18078],[93.08034,12.18201],[93.08134,12.18171],[93.08149,12.18028],[93.08272,12.18092],[93.08538,12.1801],[93.08713,12.18327],[93.08888,12.18374],[93.08959,12.18563],[93.08709,12.18932],[93.0882,12.19155],[93.08793,12.19514],[93.08266,12.19974],[93.07966,12.19885],[93.0778,12.20105],[93.07983,12.20131],[93.07966,12.20206],[93.07753,12.2013],[93.07851,12.20242],[93.07708,12.20228],[93.07623,12.20314],[93.07427,12.20118],[93.0736,12.20186],[93.07173,12.20161],[93.07348,12.20224],[93.0743,12.20162],[93.07668,12.20405],[93.07709,12.20321],[93.07851,12.20373],[93.07831,12.20946],[93.06913,12.21223],[93.06861,12.21127],[93.06659,12.21172],[93.06519,12.21053],[93.06125,12.20188],[93.05459,12.19145],[93.04477,12.1652],[93.042,12.16091],[93.0421,12.15934],[93.0373,12.14461],[93.03762,12.14095],[93.03618,12.13856],[93.03638,12.13603],[93.03527,12.13209],[93.03705,12.12965],[93.03809,12.12619],[93.03927,12.12572],[93.03986,12.12636],[93.03951,12.12575],[93.04031,12.12478],[93.04262,12.1262],[93.04402,12.12522],[93.04674,12.11839],[93.04934,12.11867],[93.05252,12.12193],[93.05088,12.12294],[93.05525,12.12243],[93.05744,12.12054],[93.06009,12.12132],[93.0616,12.12304],[93.06442,12.12351],[93.06587,12.12124],[93.06689,12.12191],[93.06845,12.12148],[93.06878,12.1205],[93.06786,12.11939],[93.06797,12.12142],[93.06611,12.12089],[93.06419,12.1228],[93.06319,12.12284],[93.0624,12.11915],[93.06084,12.11915],[93.06111,12.11759],[93.0606,12.11935],[93.06204,12.11951],[93.06249,12.12278],[93.05815,12.12019],[93.05495,12.12176],[93.05336,12.12167],[93.05103,12.11748],[93.04799,12.11536],[93.04839,12.11179],[93.0568,12.09708],[93.06206,12.09338],[93.06368,12.09095],[93.06836,12.08801],[93.06921,12.086],[93.07031,12.08587],[93.07017,12.0851],[93.07193,12.08326],[93.07296,12.0802],[93.07382,12.07995],[93.07375,12.07877],[93.07728,12.07687],[93.08108,12.07751],[93.08231,12.07883]]],[[[92.93434,12.22591],[92.9341,12.22601],[92.93311,12.22555],[92.93304,12.22509],[92.92923,12.22419],[92.92757,12.22311],[92.92769,12.2228],[92.92654,12.22247],[92.92604,12.22211],[92.92598,12.22065],[92.92568,12.21966],[92.92395,12.21642],[92.92346,12.21289],[92.92422,12.20855],[92.92427,12.20735],[92.92489,12.20556],[92.92523,12.2052],[92.92582,12.20533],[92.9259,12.20569],[92.92559,12.20632],[92.92652,12.20613],[92.92979,12.20453],[92.93085,12.20365],[92.93177,12.20323],[92.93137,12.20279],[92.93192,12.19871],[92.93167,12.19589],[92.93232,12.19544],[92.93263,12.19564],[92.93271,12.19626],[92.93318,12.19681],[92.9334,12.19743],[92.93385,12.19771],[92.93445,12.1989],[92.93538,12.20158],[92.93555,12.20247],[92.93533,12.20477],[92.93579,12.20673],[92.93513,12.20969],[92.93524,12.21002],[92.9362,12.21095],[92.9368,12.21074],[92.93835,12.2115],[92.93915,12.21225],[92.93987,12.21337],[92.9407,12.21596],[92.94014,12.22059],[92.93962,12.22254],[92.9386,12.22394],[92.9376,12.22481],[92.93517,12.22566],[92.93465,12.22558],[92.93434,12.22591]]],[[[92.69831,12.24355],[92.69826,12.24502],[92.69848,12.24631],[92.6983,12.24718],[92.69836,12.24794],[92.69826,12.24812],[92.69795,12.2484],[92.69771,12.24874],[92.69731,12.24919],[92.69665,12.25014],[92.69657,12.25019],[92.69639,12.25012],[92.69611,12.24988],[92.69573,12.24939],[92.69543,12.24881],[92.69482,12.24724],[92.69475,12.24679],[92.69483,12.24646],[92.69506,12.24609],[92.69536,12.2458],[92.69628,12.24525],[92.69696,12.24473],[92.6974,12.24428],[92.69786,12.24369],[92.69803,12.24353],[92.6982,12.24348],[92.69831,12.24355]]],[[[93.01997,12.22324],[93.02037,12.22344],[93.02057,12.22375],[93.02074,12.22419],[93.0207,12.22443],[93.02057,12.22476],[93.02031,12.22509],[93.02006,12.22527],[93.0199,12.22526],[93.01932,12.22508],[93.01901,12.22494],[93.01882,12.2247],[93.0187,12.22438],[93.01871,12.22372],[93.01876,12.2234],[93.01897,12.22331],[93.01926,12.22329],[93.01964,12.22318],[93.01997,12.22324]]],[[[92.88133,12.23918],[92.88176,12.23929],[92.88205,12.23974],[92.88215,12.24001],[92.88225,12.24063],[92.88225,12.24133],[92.88212,12.24155],[92.8817,12.24171],[92.88133,12.24154],[92.88094,12.24093],[92.88059,12.23976],[92.88069,12.23939],[92.88096,12.2392],[92.88133,12.23918]]],[[[92.72288,12.25449],[92.7231,12.25489],[92.72382,12.25564],[92.724,12.25597],[92.724,12.25611],[92.72377,12.2563],[92.72303,12.25668],[92.72253,12.25674],[92.72197,12.25665],[92.72141,12.25635],[92.7209,12.25564],[92.72112,12.25536],[92.7217,12.25477],[92.72246,12.25437],[92.72281,12.25402],[92.72343,12.254],[92.72361,12.25427],[92.72343,12.25442],[92.72294,12.25435],[92.72288,12.25449]]],[[[92.7168,12.25622],[92.71687,12.25627],[92.71694,12.25641],[92.71706,12.25671],[92.71708,12.2569],[92.71707,12.2571],[92.71686,12.25768],[92.71663,12.25802],[92.71661,12.25819],[92.71662,12.25835],[92.71686,12.25885],[92.71687,12.25892],[92.71685,12.25898],[92.71677,12.25903],[92.7167,12.25901],[92.71652,12.25881],[92.71644,12.25875],[92.71634,12.25871],[92.71608,12.25871],[92.71593,12.25863],[92.71579,12.25859],[92.7157,12.2585],[92.71569,12.25834],[92.71571,12.25823],[92.71599,12.2577],[92.71624,12.25694],[92.71664,12.25633],[92.71674,12.25622],[92.7168,12.25622]]],[[[92.91199,12.24362],[92.91209,12.24391],[92.91217,12.24448],[92.91217,12.24514],[92.91207,12.24545],[92.91177,12.24562],[92.91146,12.24563],[92.91118,12.24548],[92.91095,12.24527],[92.91093,12.24501],[92.91098,12.24455],[92.91108,12.24408],[92.91116,12.24381],[92.91133,12.24368],[92.91167,12.2435],[92.91199,12.24362]]],[[[92.86582,12.25003],[92.86522,12.25051],[92.86477,12.25068],[92.86422,12.25056],[92.86362,12.25028],[92.86217,12.24881],[92.86157,12.24799],[92.86089,12.24612],[92.86085,12.24558],[92.86096,12.24484],[92.86087,12.2438],[92.86091,12.243],[92.86118,12.24188],[92.86226,12.23882],[92.86299,12.23775],[92.86371,12.237],[92.86445,12.23636],[92.86505,12.23603],[92.86548,12.23605],[92.86583,12.23618],[92.86614,12.23657],[92.86646,12.23965],[92.86678,12.24035],[92.86686,12.24075],[92.86645,12.24218],[92.86668,12.24284],[92.86696,12.24327],[92.8671,12.24401],[92.86777,12.24483],[92.86773,12.24559],[92.86782,12.24593],[92.86877,12.24844],[92.86876,12.2487],[92.86858,12.24893],[92.86774,12.24958],[92.86695,12.24977],[92.86639,12.24979],[92.86582,12.25003]]],[[[92.88023,12.24576],[92.88041,12.2458],[92.88058,12.24599],[92.88077,12.2468],[92.88091,12.24751],[92.88094,12.24801],[92.88092,12.2486],[92.88077,12.24892],[92.88062,12.24896],[92.87954,12.24984],[92.87931,12.24995],[92.87922,12.24994],[92.87914,12.24988],[92.87911,12.2498],[92.87903,12.24934],[92.87894,12.2491],[92.87869,12.2491],[92.87849,12.24896],[92.87838,12.24892],[92.87844,12.2485],[92.87879,12.2478],[92.87909,12.24708],[92.87931,12.24632],[92.87953,12.24587],[92.87989,12.24578],[92.88023,12.24576]]],[[[92.91149,12.24716],[92.91168,12.24731],[92.91183,12.24766],[92.91178,12.24799],[92.91164,12.24824],[92.9116,12.24845],[92.91164,12.24873],[92.91158,12.24903],[92.91129,12.24931],[92.91072,12.2494],[92.9104,12.24937],[92.91025,12.24928],[92.91021,12.24913],[92.91017,12.24884],[92.91021,12.24846],[92.91031,12.24793],[92.91057,12.24748],[92.91078,12.24722],[92.91114,12.2471],[92.91149,12.24716]]],[[[92.90649,12.24867],[92.90715,12.24878],[92.90754,12.24892],[92.90779,12.24917],[92.90787,12.24938],[92.90783,12.24969],[92.90771,12.25003],[92.90717,12.2506],[92.90684,12.25084],[92.90665,12.25083],[92.90646,12.25067],[92.90622,12.25031],[92.90593,12.24982],[92.90576,12.24931],[92.90575,12.24905],[92.90585,12.24889],[92.90607,12.24869],[92.90649,12.24867]]],[[[92.91136,12.24979],[92.9115,12.2498],[92.91175,12.25003],[92.91175,12.25009],[92.91182,12.25037],[92.91171,12.25104],[92.91166,12.25126],[92.91144,12.25137],[92.9113,12.25135],[92.9111,12.25119],[92.9108,12.25078],[92.91072,12.25029],[92.91072,12.25003],[92.9108,12.24994],[92.91099,12.24978],[92.91136,12.24979]]],[[[92.9073,12.25263],[92.90716,12.25267],[92.90704,12.25276],[92.90689,12.25278],[92.90646,12.2528],[92.90626,12.25277],[92.90616,12.25268],[92.90611,12.25214],[92.90609,12.25186],[92.90626,12.25139],[92.90619,12.25128],[92.90625,12.25118],[92.90659,12.25111],[92.90721,12.25111],[92.90761,12.25106],[92.90785,12.25117],[92.90794,12.25142],[92.90817,12.25169],[92.90831,12.25187],[92.90834,12.25194],[92.90835,12.25211],[92.90828,12.2526],[92.90818,12.25266],[92.90809,12.25266],[92.90788,12.2526],[92.90775,12.25258],[92.90749,12.25266],[92.90737,12.25262],[92.9073,12.25263]]],[[[92.90491,12.25413],[92.90496,12.25414],[92.90516,12.2542],[92.90518,12.25438],[92.90522,12.25457],[92.90519,12.25465],[92.90508,12.25472],[92.90493,12.25475],[92.90477,12.25463],[92.9047,12.25445],[92.9047,12.25424],[92.90478,12.25412],[92.90491,12.25413]]],[[[92.90615,12.25309],[92.90649,12.25325],[92.90705,12.25341],[92.90745,12.2536],[92.90774,12.2538],[92.90799,12.2541],[92.9081,12.25445],[92.90856,12.25488],[92.90858,12.25496],[92.90865,12.25512],[92.90859,12.25528],[92.90848,12.25532],[92.90833,12.25529],[92.90819,12.25521],[92.90805,12.25506],[92.90774,12.2547],[92.90764,12.25465],[92.90748,12.25465],[92.90729,12.25461],[92.90703,12.2545],[92.9066,12.25453],[92.90635,12.25441],[92.90616,12.25426],[92.90592,12.25419],[92.9058,12.25407],[92.90572,12.2539],[92.90542,12.25363],[92.90539,12.25338],[92.90549,12.25333],[92.90566,12.25329],[92.90575,12.25316],[92.90597,12.25303],[92.90615,12.25309]]],[[[92.91807,12.25383],[92.91833,12.25383],[92.91853,12.25398],[92.91866,12.25419],[92.9188,12.25438],[92.91883,12.25461],[92.91874,12.25484],[92.91861,12.25509],[92.91835,12.2552],[92.91812,12.25519],[92.91787,12.25507],[92.91766,12.25492],[92.91752,12.25475],[92.91752,12.25449],[92.91759,12.25422],[92.91768,12.25398],[92.9178,12.25382],[92.91807,12.25383]]],[[[92.90026,12.25758],[92.90054,12.25761],[92.9007,12.25773],[92.90083,12.25802],[92.90082,12.25819],[92.90072,12.25823],[92.90061,12.2582],[92.90028,12.25799],[92.89997,12.25788],[92.89984,12.2578],[92.89982,12.25759],[92.9001,12.25755],[92.90026,12.25758]]],[[[92.91813,12.25592],[92.9183,12.25595],[92.91858,12.25606],[92.91905,12.25631],[92.91914,12.25653],[92.91914,12.2568],[92.91884,12.25686],[92.9186,12.25687],[92.9181,12.25683],[92.91792,12.25671],[92.91777,12.25659],[92.91771,12.25647],[92.91773,12.25628],[92.91773,12.25604],[92.91776,12.25593],[92.91789,12.25591],[92.91813,12.25592]]],[[[92.91981,12.2545],[92.92004,12.25462],[92.92028,12.25506],[92.92047,12.25559],[92.92051,12.25646],[92.92043,12.25667],[92.9203,12.25684],[92.92019,12.25675],[92.92004,12.25674],[92.91995,12.25668],[92.9199,12.25659],[92.9197,12.25651],[92.91942,12.25595],[92.91923,12.25548],[92.91918,12.25522],[92.91921,12.25497],[92.91921,12.25472],[92.91933,12.25451],[92.91952,12.25442],[92.91981,12.2545]]],[[[92.90854,12.25689],[92.90841,12.2572],[92.9083,12.25728],[92.90828,12.25759],[92.90814,12.25775],[92.90813,12.25794],[92.9081,12.25803],[92.90799,12.25813],[92.90793,12.25828],[92.90783,12.25833],[92.90768,12.25827],[92.90745,12.25807],[92.90713,12.2577],[92.90686,12.25723],[92.90683,12.257],[92.9069,12.25682],[92.90684,12.25658],[92.9069,12.25627],[92.907,12.25624],[92.90706,12.25624],[92.90712,12.2563],[92.90717,12.25642],[92.90729,12.25654],[92.90753,12.25662],[92.90771,12.2568],[92.90781,12.25684],[92.90806,12.25665],[92.90828,12.25658],[92.90851,12.25658],[92.90858,12.25668],[92.90854,12.25689]]],[[[92.91327,12.26049],[92.91374,12.26051],[92.91415,12.26057],[92.91434,12.26056],[92.91442,12.26067],[92.91443,12.26102],[92.91446,12.26135],[92.91437,12.26155],[92.91415,12.26189],[92.9141,12.262],[92.91394,12.26203],[92.91366,12.26231],[92.91334,12.26245],[92.91308,12.26253],[92.9128,12.26249],[92.91262,12.26235],[92.91257,12.26213],[92.91253,12.26186],[92.91291,12.26093],[92.91317,12.26049],[92.91327,12.26049]]],[[[92.91663,12.26111],[92.91689,12.26122],[92.91709,12.26132],[92.91734,12.26142],[92.91727,12.2617],[92.91716,12.26196],[92.91701,12.26219],[92.91685,12.26226],[92.91638,12.26235],[92.91612,12.26224],[92.91592,12.26207],[92.91578,12.2619],[92.91567,12.26145],[92.91615,12.26115],[92.91642,12.26111],[92.91663,12.26111]]],[[[92.9152,12.26272],[92.91544,12.2628],[92.91563,12.26296],[92.91587,12.26313],[92.91579,12.26334],[92.91567,12.26354],[92.9155,12.26377],[92.91523,12.26385],[92.91497,12.2639],[92.91473,12.26397],[92.91449,12.26388],[92.91432,12.26371],[92.91423,12.26347],[92.91411,12.26321],[92.91427,12.26303],[92.91468,12.26279],[92.91495,12.26269],[92.9152,12.26272]]],[[[92.90067,12.26408],[92.90061,12.26486],[92.89998,12.26564],[92.89914,12.26416],[92.89788,12.26558],[92.89651,12.26451],[92.8958,12.26319],[92.8957,12.25945],[92.89521,12.25789],[92.89325,12.25609],[92.89206,12.25241],[92.89066,12.2523],[92.88972,12.25285],[92.88712,12.25266],[92.88618,12.25102],[92.88425,12.24897],[92.88465,12.24569],[92.88384,12.24221],[92.88449,12.24126],[92.88442,12.23943],[92.88488,12.23895],[92.88465,12.23857],[92.88395,12.23902],[92.88371,12.23832],[92.88299,12.23853],[92.88231,12.23762],[92.88139,12.23861],[92.88087,12.23833],[92.88045,12.23724],[92.88014,12.2385],[92.87956,12.23784],[92.87912,12.23825],[92.87884,12.24611],[92.87802,12.24832],[92.87732,12.24896],[92.87607,12.24874],[92.87392,12.24925],[92.87391,12.24896],[92.87262,12.24863],[92.86969,12.24484],[92.86885,12.23964],[92.86895,12.23744],[92.87033,12.23364],[92.87386,12.22873],[92.87347,12.22554],[92.87389,12.22197],[92.87464,12.21813],[92.87596,12.21477],[92.87703,12.20982],[92.87749,12.20931],[92.87934,12.20892],[92.881,12.20973],[92.88184,12.21092],[92.8821,12.21249],[92.88198,12.21737],[92.8851,12.21729],[92.88621,12.21805],[92.88691,12.21957],[92.8867,12.22158],[92.88531,12.22329],[92.88334,12.22392],[92.88099,12.22338],[92.88045,12.22356],[92.88163,12.22473],[92.8848,12.22506],[92.88645,12.22688],[92.88797,12.2278],[92.88926,12.22965],[92.89104,12.23132],[92.89313,12.23117],[92.89563,12.22719],[92.90024,12.22617],[92.90166,12.22554],[92.90293,12.22432],[92.90237,12.22839],[92.90271,12.22872],[92.90346,12.22716],[92.90378,12.22796],[92.90354,12.22922],[92.90481,12.22843],[92.90463,12.22716],[92.90351,12.22516],[92.90417,12.22511],[92.90618,12.22806],[92.90641,12.22982],[92.90696,12.23088],[92.90791,12.23106],[92.90961,12.22957],[92.9103,12.22841],[92.91,12.22806],[92.90808,12.22944],[92.90963,12.22469],[92.90966,12.22238],[92.91,12.2223],[92.91067,12.22319],[92.91091,12.22276],[92.91008,12.22113],[92.91061,12.22071],[92.91133,12.22094],[92.91135,12.22193],[92.91224,12.2237],[92.9125,12.22174],[92.91196,12.22047],[92.9128,12.2202],[92.91351,12.22109],[92.91357,12.22371],[92.91279,12.22703],[92.91367,12.23046],[92.9137,12.23215],[92.91131,12.23766],[92.90931,12.2401],[92.90901,12.24106],[92.90939,12.24222],[92.90914,12.24327],[92.90741,12.24568],[92.90556,12.24721],[92.90487,12.24718],[92.90446,12.24761],[92.90423,12.24825],[92.90485,12.24911],[92.9046,12.25145],[92.90515,12.25202],[92.90414,12.25304],[92.90242,12.2535],[92.90168,12.25492],[92.90083,12.25476],[92.90078,12.25542],[92.9013,12.25534],[92.90154,12.25609],[92.90132,12.25685],[92.89986,12.25675],[92.89807,12.25736],[92.89769,12.25701],[92.89779,12.25628],[92.89719,12.25621],[92.89715,12.25725],[92.89897,12.25773],[92.89766,12.25867],[92.89848,12.25902],[92.8998,12.25824],[92.90075,12.25905],[92.90105,12.26093],[92.90067,12.26408]]],[[[92.74862,12.28788],[92.74827,12.28852],[92.74748,12.28866],[92.74615,12.28814],[92.74543,12.28753],[92.7449,12.28619],[92.74406,12.28488],[92.7434,12.28293],[92.74283,12.28223],[92.74211,12.28245],[92.74167,12.2822],[92.74138,12.27968],[92.74097,12.27905],[92.74021,12.27895],[92.73979,12.27924],[92.74018,12.28196],[92.74008,12.28248],[92.73961,12.28311],[92.73899,12.2827],[92.73864,12.28164],[92.73861,12.27987],[92.73873,12.27844],[92.73924,12.2768],[92.73876,12.27529],[92.73893,12.27496],[92.7382,12.27468],[92.738,12.27529],[92.73735,12.2757],[92.73692,12.27572],[92.73627,12.27436],[92.73609,12.27326],[92.73427,12.27013],[92.73439,12.26961],[92.73471,12.26939],[92.73574,12.26963],[92.7372,12.27191],[92.73732,12.27271],[92.73806,12.27434],[92.73909,12.27469],[92.73914,12.27384],[92.73889,12.27009],[92.73823,12.26894],[92.73772,12.26591],[92.73723,12.26518],[92.73617,12.26476],[92.73573,12.26409],[92.7355,12.26288],[92.73586,12.26085],[92.73464,12.25919],[92.7345,12.25864],[92.73441,12.25688],[92.73388,12.25482],[92.73376,12.25158],[92.73379,12.25],[92.73461,12.24999],[92.7344,12.24913],[92.73458,12.24813],[92.73497,12.24821],[92.73556,12.24899],[92.73657,12.24948],[92.73707,12.25001],[92.73507,12.25001],[92.7347,12.2514],[92.73674,12.25271],[92.73888,12.25369],[92.7403,12.25403],[92.74109,12.25459],[92.74172,12.25547],[92.74193,12.25819],[92.74287,12.25992],[92.74333,12.26324],[92.74361,12.26383],[92.74432,12.26447],[92.74552,12.2681],[92.74487,12.27017],[92.74632,12.27606],[92.7471,12.28068],[92.74826,12.28206],[92.74871,12.28367],[92.7487,12.28546],[92.74934,12.28669],[92.74942,12.28736],[92.74914,12.28775],[92.74862,12.28788]]],[[[92.73521,12.28134],[92.73573,12.28206],[92.73584,12.28247],[92.73585,12.28333],[92.73614,12.28421],[92.73634,12.28633],[92.73683,12.28867],[92.73703,12.28921],[92.73727,12.29099],[92.73722,12.29208],[92.737,12.2925],[92.7366,12.29277],[92.73631,12.29268],[92.73611,12.29247],[92.73505,12.29057],[92.73479,12.28963],[92.73435,12.28746],[92.73447,12.28674],[92.73475,12.2858],[92.735,12.2844],[92.73475,12.28307],[92.73463,12.28191],[92.73468,12.2816],[92.73489,12.28132],[92.73521,12.28134]]],[[[92.75131,12.29119],[92.75135,12.29125],[92.75135,12.29134],[92.75131,12.29144],[92.75134,12.29156],[92.75133,12.29165],[92.75126,12.29172],[92.7512,12.29169],[92.75116,12.29165],[92.75107,12.29163],[92.75103,12.29163],[92.75095,12.29161],[92.75086,12.29156],[92.7508,12.29154],[92.75077,12.29145],[92.75075,12.29133],[92.75072,12.29128],[92.75065,12.29123],[92.75062,12.2911],[92.75053,12.29104],[92.75051,12.29099],[92.75055,12.2909],[92.75064,12.29084],[92.75069,12.29076],[92.75076,12.29075],[92.75077,12.29069],[92.75092,12.29063],[92.75102,12.29069],[92.75102,12.29075],[92.75118,12.2909],[92.75121,12.29097],[92.75137,12.29094],[92.75143,12.29098],[92.75143,12.29104],[92.75136,12.2911],[92.75131,12.2911],[92.75131,12.29119]]],[[[92.88914,12.27742],[92.88906,12.27763],[92.88851,12.27796],[92.88824,12.27844],[92.88835,12.27952],[92.88851,12.27992],[92.88854,12.28021],[92.8884,12.28051],[92.88813,12.28072],[92.88794,12.28064],[92.88777,12.28046],[92.88758,12.28008],[92.88758,12.2797],[92.88723,12.2793],[92.88702,12.2785],[92.88619,12.27831],[92.88562,12.27771],[92.88537,12.27779],[92.88499,12.27766],[92.8843,12.27715],[92.88417,12.27671],[92.88401,12.27653],[92.88387,12.27588],[92.8839,12.27527],[92.88406,12.27476],[92.8839,12.27449],[92.88398,12.27422],[92.88486,12.27354],[92.88515,12.27341],[92.88537,12.27344],[92.88578,12.27309],[92.88701,12.27264],[92.8886,12.2722],[92.88901,12.2725],[92.88939,12.27234],[92.88972,12.27234],[92.88982,12.27247],[92.88972,12.27374],[92.88952,12.27409],[92.88952,12.27465],[92.88936,12.27519],[92.88911,12.27562],[92.88895,12.27613],[92.88903,12.2771],[92.8892,12.27726],[92.88914,12.27742]]],[[[92.7516,12.29265],[92.75173,12.29276],[92.75185,12.29283],[92.75224,12.29292],[92.75258,12.29311],[92.75268,12.2932],[92.75283,12.29341],[92.75305,12.29376],[92.75313,12.29392],[92.75316,12.29411],[92.75307,12.2942],[92.75297,12.29426],[92.7528,12.29434],[92.75262,12.29436],[92.7523,12.29433],[92.75219,12.29423],[92.75211,12.29416],[92.75196,12.29397],[92.75185,12.29378],[92.7517,12.2937],[92.7516,12.29359],[92.75154,12.29348],[92.75151,12.29336],[92.75142,12.29319],[92.75139,12.29297],[92.7514,12.2928],[92.75142,12.2927],[92.75151,12.29261],[92.7516,12.29265]]],[[[92.76642,12.27237],[92.76645,12.27301],[92.76624,12.27378],[92.76682,12.27485],[92.7664,12.27898],[92.7666,12.28097],[92.76723,12.28382],[92.76725,12.28537],[92.76687,12.2861],[92.76626,12.28666],[92.76501,12.28707],[92.76431,12.28783],[92.76383,12.28868],[92.76386,12.28962],[92.76408,12.29021],[92.76526,12.29238],[92.76508,12.29289],[92.76264,12.294],[92.76218,12.29409],[92.76125,12.29391],[92.7605,12.29354],[92.76001,12.29297],[92.75948,12.29112],[92.75752,12.28757],[92.7562,12.28656],[92.75631,12.28511],[92.75603,12.28455],[92.75469,12.28388],[92.75392,12.28327],[92.75369,12.28197],[92.75298,12.28116],[92.75285,12.27923],[92.75228,12.27832],[92.75221,12.27787],[92.75277,12.27694],[92.75309,12.27589],[92.75408,12.2752],[92.75494,12.27414],[92.75541,12.27271],[92.75577,12.27249],[92.75701,12.27263],[92.75733,12.27239],[92.75778,12.27042],[92.75829,12.26937],[92.7588,12.26914],[92.75923,12.26923],[92.75959,12.26947],[92.76073,12.27111],[92.76112,12.27137],[92.76141,12.2713],[92.7614,12.27042],[92.76179,12.2686],[92.76174,12.26785],[92.76387,12.26517],[92.76426,12.2656],[92.76497,12.26872],[92.76615,12.27121],[92.76642,12.27237]]],[[[92.71044,12.29706],[92.70919,12.29745],[92.70556,12.29971],[92.70432,12.29996],[92.70332,12.29929],[92.70303,12.29396],[92.7016,12.29153],[92.70131,12.28989],[92.70145,12.28654],[92.70251,12.28304],[92.70209,12.27868],[92.70085,12.27636],[92.69925,12.27559],[92.69873,12.27473],[92.69979,12.27344],[92.70244,12.27195],[92.69974,12.26798],[92.69995,12.265],[92.70228,12.25777],[92.7022,12.25575],[92.70272,12.25283],[92.70283,12.24584],[92.7025,12.24495],[92.70281,12.24326],[92.70358,12.24223],[92.70536,12.24183],[92.7063,12.24091],[92.70733,12.23873],[92.70746,12.23607],[92.7083,12.23321],[92.70922,12.23039],[92.70993,12.22966],[92.71122,12.2348],[92.71133,12.23797],[92.71083,12.24026],[92.71163,12.24271],[92.7114,12.24466],[92.71195,12.24669],[92.71189,12.24823],[92.71378,12.25001],[92.71251,12.25001],[92.71256,12.25116],[92.71287,12.25232],[92.71446,12.25484],[92.7143,12.25605],[92.71498,12.25774],[92.71425,12.25928],[92.71437,12.26089],[92.71494,12.26174],[92.71736,12.26163],[92.71804,12.26385],[92.71757,12.26453],[92.71583,12.26454],[92.71546,12.26581],[92.71609,12.26767],[92.71739,12.26956],[92.71758,12.27288],[92.7185,12.27425],[92.71825,12.27604],[92.72009,12.27991],[92.7201,12.28059],[92.71888,12.28181],[92.71878,12.28319],[92.71963,12.28412],[92.72113,12.28451],[92.72102,12.28947],[92.72231,12.29011],[92.72308,12.29102],[92.72238,12.29244],[92.72273,12.29475],[92.72232,12.29595],[92.72092,12.29596],[92.71878,12.29518],[92.71726,12.29673],[92.71537,12.29596],[92.71313,12.29687],[92.71044,12.29706]]],[[[93.10434,12.26401],[93.10106,12.26383],[93.09946,12.26292],[93.09674,12.25775],[93.09629,12.25442],[93.09539,12.25153],[93.0954,12.25],[93.09381,12.25],[93.09334,12.25066],[93.09248,12.25083],[93.09171,12.25045],[93.09115,12.24908],[93.09169,12.24781],[93.09332,12.24698],[93.09398,12.24596],[93.0927,12.2454],[93.0924,12.24379],[93.091,12.24225],[93.08988,12.24354],[93.08852,12.24349],[93.08798,12.24221],[93.08943,12.24107],[93.08691,12.23994],[93.08548,12.23839],[93.08357,12.23945],[93.08309,12.24036],[93.08379,12.24125],[93.08411,12.24263],[93.08469,12.24237],[93.08528,12.24528],[93.08585,12.24555],[93.08562,12.24577],[93.08619,12.24685],[93.08693,12.25506],[93.08655,12.25704],[93.08505,12.25852],[93.0823,12.26248],[93.08062,12.26382],[93.07525,12.26317],[93.07413,12.26235],[93.07253,12.26226],[93.06995,12.26008],[93.06788,12.25578],[93.06514,12.25177],[93.06487,12.23797],[93.06219,12.23468],[93.06181,12.23345],[93.06204,12.22897],[93.06328,12.22728],[93.06631,12.2266],[93.07036,12.22492],[93.07203,12.22471],[93.07542,12.22292],[93.08103,12.21862],[93.0824,12.21711],[93.0838,12.21674],[93.08438,12.21735],[93.08408,12.21971],[93.085,12.21942],[93.08536,12.21968],[93.08574,12.22129],[93.08497,12.22259],[93.08244,12.22398],[93.08252,12.22457],[93.08355,12.22392],[93.08489,12.22445],[93.08463,12.22512],[93.08503,12.22527],[93.08562,12.22445],[93.08567,12.22538],[93.08607,12.22559],[93.0864,12.22525],[93.086,12.22472],[93.08762,12.22485],[93.08715,12.22415],[93.08794,12.22366],[93.0885,12.22467],[93.08844,12.2255],[93.08639,12.22853],[93.08649,12.22964],[93.08764,12.23003],[93.08825,12.23172],[93.09411,12.23643],[93.09532,12.23697],[93.09674,12.23662],[93.09713,12.23831],[93.09783,12.23881],[93.09696,12.23647],[93.09567,12.23674],[93.09391,12.23596],[93.09145,12.23401],[93.09081,12.23305],[93.08883,12.23179],[93.08808,12.23024],[93.08673,12.2293],[93.08683,12.2285],[93.08876,12.22597],[93.08908,12.22389],[93.08963,12.22303],[93.09006,12.22289],[93.08953,12.22391],[93.08996,12.22488],[93.09128,12.22308],[93.09105,12.22117],[93.089,12.21981],[93.08879,12.21903],[93.08728,12.21829],[93.08678,12.21488],[93.08719,12.21354],[93.08989,12.21093],[93.09336,12.20816],[93.09487,12.20818],[93.09551,12.20699],[93.0954,12.20608],[93.09618,12.20382],[93.09887,12.20078],[93.10012,12.20042],[93.10176,12.20122],[93.1026,12.20262],[93.10432,12.21043],[93.1051,12.21857],[93.1044,12.22465],[93.10347,12.22656],[93.10386,12.22745],[93.10383,12.22949],[93.10254,12.2308],[93.10211,12.23198],[93.10065,12.23258],[93.10216,12.23301],[93.1038,12.23279],[93.10534,12.23488],[93.10546,12.23637],[93.10697,12.23931],[93.10689,12.24223],[93.10724,12.2424],[93.10744,12.24514],[93.10681,12.25],[93.10715,12.25614],[93.10654,12.26226],[93.10546,12.26391],[93.10434,12.26401]]],[[[92.76842,12.28863],[92.76885,12.28955],[92.76942,12.29049],[92.77009,12.29199],[92.77107,12.29357],[92.77099,12.29381],[92.77068,12.29406],[92.77028,12.29479],[92.77008,12.295],[92.76988,12.29509],[92.76953,12.29509],[92.76886,12.29451],[92.7684,12.29329],[92.76793,12.29274],[92.7676,12.29191],[92.76711,12.2912],[92.76662,12.29071],[92.76608,12.29001],[92.76595,12.28957],[92.76594,12.28932],[92.76615,12.289],[92.76638,12.28885],[92.76754,12.2885],[92.76827,12.28846],[92.76842,12.28863]]],[[[92.76404,12.29664],[92.76437,12.29673],[92.76486,12.29714],[92.76496,12.2973],[92.76509,12.29763],[92.76511,12.29848],[92.76516,12.29881],[92.76512,12.29913],[92.76502,12.29928],[92.76498,12.2994],[92.76491,12.29947],[92.7648,12.29949],[92.76459,12.2995],[92.76448,12.29927],[92.76423,12.299],[92.76395,12.29875],[92.76352,12.29845],[92.76301,12.29796],[92.76273,12.29746],[92.76272,12.29717],[92.76296,12.29682],[92.76309,12.29673],[92.76348,12.2966],[92.76371,12.29657],[92.76404,12.29664]]],[[[92.8841,12.29035],[92.88159,12.29076],[92.88055,12.29076],[92.8797,12.29027],[92.87955,12.28928],[92.87977,12.28892],[92.8789,12.28848],[92.87854,12.28802],[92.87809,12.28809],[92.87772,12.28793],[92.87755,12.28793],[92.87781,12.28816],[92.87825,12.2889],[92.87859,12.28993],[92.8785,12.29021],[92.87834,12.29023],[92.87809,12.29003],[92.8771,12.28877],[92.87714,12.2881],[92.8773,12.28788],[92.87732,12.28767],[92.87712,12.28762],[92.87698,12.28746],[92.87702,12.28698],[92.8769,12.28646],[92.87707,12.28574],[92.87688,12.28491],[92.87688,12.28433],[92.8769,12.28403],[92.87747,12.28448],[92.87801,12.28434],[92.87844,12.28407],[92.87872,12.28378],[92.87901,12.28324],[92.88022,12.28222],[92.88076,12.28165],[92.88136,12.28032],[92.88163,12.28027],[92.88173,12.28039],[92.88141,12.28084],[92.88122,12.28161],[92.88128,12.28208],[92.88149,12.28236],[92.88196,12.28245],[92.8826,12.28217],[92.88339,12.28149],[92.88357,12.28145],[92.88365,12.28153],[92.88381,12.28069],[92.88369,12.28034],[92.88403,12.28002],[92.88452,12.27976],[92.88473,12.27994],[92.88537,12.28106],[92.8854,12.28154],[92.88592,12.28289],[92.88781,12.28465],[92.88791,12.28567],[92.88781,12.28641],[92.88752,12.28659],[92.88693,12.28768],[92.8862,12.28845],[92.88545,12.28906],[92.88527,12.28949],[92.88516,12.29011],[92.88501,12.29028],[92.8841,12.29035]]],[[[93.02897,12.27794],[93.02911,12.27823],[93.02914,12.27904],[93.02896,12.2797],[93.02876,12.27995],[93.02801,12.28018],[93.02711,12.28018],[93.02639,12.28007],[93.02617,12.27996],[93.02603,12.27975],[93.02601,12.2795],[93.02564,12.27922],[93.02541,12.27887],[93.02474,12.27826],[93.02455,12.27847],[93.02424,12.27866],[93.024,12.27861],[93.02384,12.27848],[93.02366,12.27849],[93.02332,12.27837],[93.02321,12.27826],[93.02312,12.278],[93.02276,12.27786],[93.02225,12.27753],[93.02186,12.27705],[93.02172,12.27674],[93.0214,12.27654],[93.0207,12.27568],[93.02046,12.2751],[93.02038,12.27471],[93.02045,12.2746],[93.02088,12.27441],[93.02113,12.27421],[93.02147,12.27419],[93.02315,12.2738],[93.02415,12.27336],[93.02444,12.27329],[93.02485,12.2733],[93.02532,12.27344],[93.02591,12.27371],[93.02781,12.2752],[93.02866,12.27683],[93.02838,12.27737],[93.02839,12.27758],[93.02874,12.27774],[93.02897,12.27794]]],[[[92.89122,12.29811],[92.89118,12.2982],[92.89107,12.29825],[92.89063,12.29814],[92.89039,12.29799],[92.89018,12.29777],[92.88993,12.29768],[92.88968,12.29753],[92.88957,12.29734],[92.88934,12.29718],[92.88899,12.29707],[92.88878,12.29685],[92.88854,12.29672],[92.88838,12.29658],[92.88828,12.29624],[92.88793,12.29597],[92.88789,12.29581],[92.88779,12.29562],[92.88757,12.29538],[92.88743,12.2949],[92.88708,12.29453],[92.88692,12.29398],[92.88692,12.29382],[92.88722,12.29346],[92.88777,12.29332],[92.88797,12.29312],[92.88818,12.29305],[92.8889,12.29306],[92.88947,12.29311],[92.88965,12.29317],[92.8899,12.29336],[92.89016,12.29333],[92.89065,12.29343],[92.89091,12.29368],[92.89125,12.29456],[92.89122,12.29486],[92.89124,12.29509],[92.89137,12.2957],[92.89134,12.29619],[92.89157,12.29648],[92.89166,12.29669],[92.89161,12.2975],[92.89156,12.29769],[92.89148,12.29785],[92.89137,12.29795],[92.89126,12.29795],[92.89122,12.29811]]],[[[92.88174,12.29715],[92.88149,12.29724],[92.88138,12.29736],[92.8812,12.29788],[92.88141,12.29823],[92.88199,12.29856],[92.88218,12.2988],[92.8822,12.29901],[92.88204,12.29966],[92.88186,12.29988],[92.88169,12.30023],[92.88134,12.30051],[92.88049,12.30082],[92.88005,12.30072],[92.87989,12.30058],[92.87924,12.30044],[92.87899,12.30029],[92.87845,12.29975],[92.87829,12.29888],[92.87801,12.2981],[92.87751,12.29756],[92.87675,12.29688],[92.87612,12.29561],[92.87599,12.29521],[92.87603,12.29479],[92.87636,12.29417],[92.87657,12.2941],[92.87716,12.29409],[92.87752,12.2943],[92.87794,12.294],[92.87827,12.29392],[92.87845,12.29397],[92.87919,12.29454],[92.87935,12.29459],[92.8794,12.29469],[92.87974,12.29482],[92.88023,12.29526],[92.88046,12.29537],[92.88107,12.29547],[92.88133,12.29541],[92.88153,12.29543],[92.88185,12.29533],[92.88204,12.29535],[92.88281,12.29576],[92.88383,12.29607],[92.88402,12.29615],[92.8844,12.29646],[92.88458,12.29672],[92.88473,12.29701],[92.88463,12.29721],[92.88435,12.29725],[92.88394,12.29711],[92.88318,12.29702],[92.8827,12.29712],[92.88231,12.29704],[92.88174,12.29715]]],[[[92.81047,12.31295],[92.8017,12.31135],[92.80077,12.30825],[92.795,12.30359],[92.79097,12.30404],[92.78946,12.30803],[92.78462,12.31068],[92.77692,12.30971],[92.77078,12.31301],[92.76858,12.30888],[92.76695,12.2972],[92.76998,12.29651],[92.77189,12.30198],[92.77538,12.30119],[92.77723,12.29543],[92.77413,12.29503],[92.77383,12.29351],[92.77846,12.29112],[92.7789,12.28842],[92.78169,12.28661],[92.77969,12.28315],[92.78384,12.28106],[92.7844,12.27919],[92.78587,12.28069],[92.78768,12.28024],[92.78433,12.27899],[92.78389,12.28068],[92.77886,12.28328],[92.77778,12.2766],[92.77969,12.27398],[92.778,12.27246],[92.77953,12.27414],[92.7774,12.27668],[92.77807,12.27784],[92.77682,12.27886],[92.7748,12.27569],[92.77401,12.28028],[92.7709,12.27238],[92.76596,12.26819],[92.76324,12.26248],[92.75864,12.26772],[92.75645,12.26507],[92.75642,12.26926],[92.75099,12.27477],[92.74939,12.27409],[92.74723,12.26667],[92.74824,12.26248],[92.74114,12.24538],[92.74176,12.24415],[92.74382,12.2455],[92.7472,12.24377],[92.74643,12.23512],[92.75,12.23243],[92.75725,12.23435],[92.75994,12.23715],[92.75887,12.23321],[92.76199,12.2326],[92.76595,12.24326],[92.76942,12.24291],[92.76848,12.24622],[92.76981,12.24303],[92.76624,12.24298],[92.76479,12.23705],[92.77081,12.24157],[92.76897,12.23958],[92.76818,12.23417],[92.76988,12.23087],[92.76787,12.22863],[92.76687,12.22369],[92.76862,12.22158],[92.76645,12.22242],[92.76362,12.21253],[92.76398,12.20901],[92.76878,12.20127],[92.76556,12.19271],[92.7675,12.18967],[92.76657,12.1851],[92.76426,12.18183],[92.76443,12.17647],[92.76073,12.16839],[92.76068,12.16496],[92.76346,12.16524],[92.75855,12.15939],[92.75806,12.15628],[92.75904,12.15645],[92.75667,12.15149],[92.75825,12.14567],[92.75233,12.13909],[92.74584,12.12419],[92.7441,12.11319],[92.73777,12.09754],[92.73877,12.08131],[92.74106,12.08274],[92.74305,12.08054],[92.74087,12.08202],[92.73923,12.07969],[92.74232,12.0757],[92.74721,12.07413],[92.74894,12.07631],[92.75062,12.07446],[92.75318,12.07599],[92.75415,12.08035],[92.75402,12.07677],[92.75238,12.07504],[92.75404,12.07585],[92.75531,12.0796],[92.75784,12.0815],[92.75938,12.08675],[92.75777,12.09094],[92.75895,12.09319],[92.76049,12.09307],[92.76,12.09543],[92.76357,12.09679],[92.7623,12.09742],[92.76315,12.09891],[92.76184,12.09884],[92.76234,12.10079],[92.76336,12.09962],[92.76258,12.09741],[92.76378,12.09662],[92.76033,12.09535],[92.76068,12.0929],[92.75882,12.09157],[92.76171,12.0918],[92.76126,12.09028],[92.76338,12.09015],[92.76482,12.09491],[92.76376,12.09014],[92.75906,12.09107],[92.76036,12.08907],[92.75817,12.08139],[92.75205,12.0744],[92.75796,12.07502],[92.75968,12.07811],[92.75746,12.07096],[92.76345,12.06322],[92.76744,12.06754],[92.77107,12.0676],[92.77328,12.07089],[92.77194,12.07264],[92.77813,12.07396],[92.78104,12.08003],[92.78516,12.0783],[92.78795,12.07877],[92.78819,12.08041],[92.79206,12.07897],[92.79121,12.08699],[92.79549,12.0863],[92.79521,12.09037],[92.79684,12.09249],[92.80079,12.09354],[92.79936,12.09578],[92.78748,12.1008],[92.78363,12.10603],[92.78733,12.10341],[92.79309,12.10528],[92.79235,12.10392],[92.79354,12.10354],[92.7979,12.10701],[92.79705,12.11135],[92.79953,12.11411],[92.7976,12.1115],[92.79816,12.10831],[92.80344,12.10405],[92.80887,12.10293],[92.81153,12.10695],[92.81442,12.10511],[92.81811,12.11318],[92.81723,12.11494],[92.8136,12.11538],[92.8124,12.11886],[92.80739,12.12427],[92.80287,12.12629],[92.80306,12.13068],[92.80149,12.13199],[92.81133,12.12721],[92.81455,12.12732],[92.81642,12.12461],[92.81818,12.12756],[92.81533,12.13855],[92.81879,12.13802],[92.82175,12.14073],[92.8221,12.14243],[92.82018,12.14237],[92.81874,12.14529],[92.82116,12.14985],[92.82478,12.15125],[92.82693,12.15614],[92.82004,12.15909],[92.81723,12.16312],[92.81147,12.16028],[92.80713,12.15994],[92.80706,12.16176],[92.80233,12.16428],[92.80214,12.16594],[92.80384,12.16525],[92.80369,12.16755],[92.80108,12.16838],[92.80109,12.17059],[92.80461,12.16822],[92.80342,12.16944],[92.80677,12.17116],[92.80375,12.16932],[92.8053,12.16848],[92.80393,12.16761],[92.80389,12.16458],[92.80206,12.16533],[92.80332,12.16333],[92.80765,12.16186],[92.80757,12.16007],[92.81723,12.16372],[92.82077,12.15976],[92.82237,12.16095],[92.8214,12.16484],[92.82402,12.16606],[92.82354,12.16868],[92.82077,12.17085],[92.82239,12.17814],[92.82298,12.17572],[92.82117,12.17089],[92.82421,12.16893],[92.82446,12.16642],[92.82728,12.16346],[92.82962,12.16656],[92.83514,12.16692],[92.83666,12.16563],[92.83634,12.16213],[92.8387,12.15985],[92.84386,12.15955],[92.84411,12.15788],[92.84585,12.15767],[92.84466,12.15115],[92.84275,12.14892],[92.84446,12.14745],[92.84587,12.14773],[92.85484,12.16179],[92.85444,12.16495],[92.85002,12.16504],[92.85047,12.16804],[92.85452,12.17064],[92.85217,12.17748],[92.85486,12.18066],[92.85162,12.1843],[92.85538,12.18429],[92.8566,12.18643],[92.85429,12.18738],[92.85523,12.18885],[92.85414,12.19103],[92.85215,12.19184],[92.84734,12.18929],[92.84584,12.19012],[92.84376,12.18624],[92.84002,12.18526],[92.84343,12.18647],[92.84715,12.19384],[92.847,12.19633],[92.84468,12.19771],[92.84472,12.20081],[92.84288,12.20145],[92.83936,12.19951],[92.83653,12.20204],[92.82677,12.203],[92.82869,12.20874],[92.833,12.2064],[92.83452,12.21108],[92.83166,12.21288],[92.8328,12.21453],[92.84027,12.21245],[92.83994,12.21415],[92.83607,12.21433],[92.84047,12.21909],[92.83837,12.21671],[92.83617,12.21907],[92.8345,12.218],[92.83343,12.22006],[92.83185,12.21887],[92.82925,12.2196],[92.82733,12.22251],[92.82355,12.22472],[92.82154,12.22409],[92.82037,12.22679],[92.81829,12.22739],[92.81897,12.23031],[92.81703,12.23245],[92.81005,12.23346],[92.80572,12.23076],[92.80262,12.23264],[92.80592,12.23107],[92.81114,12.23408],[92.81282,12.23276],[92.81739,12.23296],[92.81938,12.23019],[92.8187,12.2275],[92.82073,12.227],[92.82187,12.22436],[92.82393,12.225],[92.82416,12.22368],[92.8273,12.22292],[92.82928,12.21984],[92.83184,12.21902],[92.83339,12.22034],[92.83462,12.21822],[92.83622,12.21927],[92.83848,12.21697],[92.84059,12.21939],[92.84006,12.21708],[92.83641,12.21434],[92.83982,12.21445],[92.84053,12.21233],[92.83318,12.21438],[92.83206,12.21291],[92.83491,12.21146],[92.83324,12.20589],[92.82908,12.20848],[92.82756,12.203],[92.83647,12.20254],[92.83997,12.19993],[92.8446,12.2019],[92.84576,12.19768],[92.85316,12.20433],[92.85589,12.20085],[92.86207,12.20088],[92.86135,12.19752],[92.8654,12.19679],[92.8674,12.19344],[92.87188,12.1947],[92.87456,12.1923],[92.88031,12.19344],[92.88286,12.19768],[92.88166,12.20317],[92.87674,12.20282],[92.8736,12.20433],[92.87329,12.20887],[92.87089,12.21252],[92.86864,12.20886],[92.86754,12.20985],[92.8688,12.21096],[92.86727,12.21179],[92.8645,12.20879],[92.8672,12.21195],[92.86897,12.211],[92.86824,12.20927],[92.87049,12.21275],[92.87358,12.21229],[92.8715,12.22546],[92.86817,12.22843],[92.86749,12.22686],[92.86644,12.23136],[92.86742,12.23205],[92.86347,12.2319],[92.86696,12.23232],[92.86149,12.2367],[92.86082,12.24072],[92.85787,12.2445],[92.85948,12.2483],[92.85842,12.24911],[92.8648,12.25226],[92.86901,12.25169],[92.86648,12.25488],[92.86776,12.25732],[92.86673,12.25634],[92.86277,12.26023],[92.86102,12.25968],[92.86216,12.26143],[92.8614,12.25967],[92.86549,12.26094],[92.86332,12.26135],[92.86421,12.26241],[92.86277,12.26327],[92.86158,12.26252],[92.86196,12.26357],[92.86566,12.26111],[92.8632,12.26049],[92.86425,12.25831],[92.86812,12.25726],[92.86696,12.25499],[92.86963,12.25097],[92.87525,12.25061],[92.88141,12.25507],[92.88246,12.25758],[92.88661,12.25874],[92.88836,12.25654],[92.88953,12.26134],[92.88563,12.26161],[92.88604,12.26472],[92.88986,12.26326],[92.89126,12.26644],[92.88991,12.26937],[92.88664,12.26844],[92.88681,12.27079],[92.88509,12.27047],[92.8838,12.26961],[92.88457,12.26575],[92.88312,12.26225],[92.88206,12.26253],[92.8815,12.27395],[92.87845,12.27728],[92.87913,12.28164],[92.88048,12.2812],[92.87765,12.28408],[92.87632,12.28212],[92.87477,12.28308],[92.8741,12.28109],[92.87223,12.28086],[92.87438,12.2817],[92.87435,12.28324],[92.8762,12.28245],[92.8768,12.28712],[92.87309,12.28763],[92.87228,12.29199],[92.86962,12.28989],[92.86786,12.29029],[92.86774,12.29239],[92.87029,12.29472],[92.86652,12.29319],[92.8658,12.28743],[92.86344,12.28678],[92.86573,12.288],[92.866,12.29317],[92.87152,12.29539],[92.86971,12.29902],[92.87214,12.30017],[92.87223,12.30171],[92.86845,12.30092],[92.86757,12.30241],[92.86553,12.30111],[92.8601,12.30399],[92.85777,12.30298],[92.8575,12.30457],[92.85524,12.30517],[92.85247,12.3036],[92.85438,12.29963],[92.85232,12.30329],[92.849,12.30205],[92.84836,12.29955],[92.85024,12.29465],[92.85338,12.29212],[92.85224,12.2856],[92.85473,12.28839],[92.8544,12.28455],[92.85614,12.28378],[92.85375,12.28122],[92.85601,12.28353],[92.85418,12.28451],[92.85485,12.28792],[92.85225,12.28534],[92.85101,12.28755],[92.85164,12.28375],[92.85035,12.28335],[92.85316,12.29182],[92.84984,12.29424],[92.847,12.30366],[92.84271,12.30426],[92.84443,12.30083],[92.84326,12.29941],[92.84515,12.29751],[92.84402,12.29629],[92.84477,12.29768],[92.84257,12.29972],[92.84063,12.29744],[92.84394,12.30075],[92.84262,12.30339],[92.83642,12.30319],[92.83407,12.29978],[92.83519,12.29727],[92.83288,12.29655],[92.83356,12.29481],[92.83242,12.29544],[92.83125,12.29362],[92.83212,12.29202],[92.83102,12.29387],[92.83467,12.29766],[92.83273,12.30076],[92.82894,12.29932],[92.8238,12.30533],[92.81047,12.31295]]],[[[92.93349,12.31101],[92.93337,12.31138],[92.93255,12.30989],[92.92934,12.30727],[92.92805,12.3043],[92.92874,12.30267],[92.92797,12.29994],[92.92852,12.29888],[92.92773,12.29836],[92.92793,12.29745],[92.92742,12.29639],[92.92884,12.29508],[92.92887,12.29421],[92.92849,12.29307],[92.92721,12.29341],[92.92704,12.29269],[92.92724,12.29114],[92.92815,12.29046],[92.92897,12.29068],[92.92976,12.28857],[92.92924,12.28329],[92.92869,12.28255],[92.92785,12.28265],[92.9282,12.28293],[92.92777,12.28377],[92.92688,12.28201],[92.92735,12.28118],[92.92693,12.28011],[92.92787,12.27898],[92.92754,12.27809],[92.92746,12.27897],[92.92612,12.28087],[92.92456,12.2805],[92.92331,12.28378],[92.92227,12.28455],[92.92274,12.28713],[92.92182,12.28803],[92.92054,12.28792],[92.92016,12.28713],[92.92113,12.28457],[92.91917,12.28222],[92.91779,12.28244],[92.91844,12.28356],[92.918,12.28695],[92.91917,12.29061],[92.9187,12.2914],[92.91811,12.29145],[92.91763,12.28984],[92.91677,12.28946],[92.91566,12.28978],[92.91444,12.29094],[92.91539,12.29259],[92.91333,12.29119],[92.91427,12.29354],[92.91337,12.29633],[92.91379,12.29753],[92.91336,12.29908],[92.91399,12.30116],[92.91394,12.30323],[92.91339,12.3041],[92.91271,12.30343],[92.91183,12.2995],[92.91053,12.29889],[92.91104,12.29781],[92.90993,12.29473],[92.9091,12.29389],[92.90624,12.29269],[92.90305,12.29314],[92.90205,12.29264],[92.90091,12.28824],[92.90124,12.28216],[92.9003,12.28111],[92.90193,12.27897],[92.90377,12.27954],[92.90413,12.27911],[92.90339,12.27717],[92.90073,12.2757],[92.89974,12.27418],[92.89952,12.27278],[92.90037,12.27122],[92.90225,12.27068],[92.90416,12.27141],[92.90487,12.27224],[92.90544,12.27464],[92.90662,12.27537],[92.90812,12.27454],[92.90746,12.27395],[92.90807,12.27344],[92.91154,12.27313],[92.91245,12.27382],[92.9136,12.27364],[92.91012,12.27193],[92.90656,12.27239],[92.90439,12.27042],[92.90488,12.26947],[92.90679,12.26869],[92.90839,12.2687],[92.91016,12.26981],[92.91118,12.26944],[92.91161,12.26852],[92.91061,12.26648],[92.91043,12.26466],[92.91148,12.26297],[92.91326,12.26553],[92.91323,12.26634],[92.91603,12.26848],[92.91629,12.26819],[92.91443,12.2644],[92.91662,12.26375],[92.91987,12.26914],[92.92024,12.26503],[92.92187,12.25885],[92.919,12.25139],[92.91789,12.24659],[92.91751,12.23842],[92.91875,12.2337],[92.9201,12.23133],[92.92215,12.22928],[92.92284,12.22951],[92.92466,12.23177],[92.9292,12.2386],[92.92934,12.24516],[92.93017,12.24885],[92.92906,12.24976],[92.92583,12.24977],[92.92649,12.25249],[92.92762,12.2531],[92.92787,12.25456],[92.9305,12.25815],[92.93142,12.26024],[92.93612,12.26219],[92.93682,12.26602],[92.93862,12.26786],[92.93823,12.27021],[92.94012,12.2712],[92.94142,12.27379],[92.94302,12.2748],[92.94303,12.27897],[92.93927,12.28387],[92.9364,12.28563],[92.93396,12.28936],[92.93462,12.29262],[92.93677,12.29498],[92.93704,12.2977],[92.93593,12.30447],[92.93444,12.30683],[92.93441,12.30827],[92.93375,12.30898],[92.93423,12.30928],[92.93374,12.3112],[92.93349,12.31101]]],[[[93.07065,12.31505],[93.07207,12.31509],[93.07241,12.31519],[93.07259,12.31533],[93.07265,12.31557],[93.07325,12.31632],[93.07327,12.31673],[93.07241,12.31784],[93.07217,12.31801],[93.07175,12.31867],[93.07124,12.31907],[93.07134,12.31908],[93.07141,12.3192],[93.0706,12.31965],[93.06991,12.31965],[93.06925,12.3195],[93.06831,12.31948],[93.06753,12.31927],[93.06673,12.3189],[93.06595,12.31882],[93.06527,12.31817],[93.06433,12.31777],[93.06298,12.31702],[93.06222,12.31676],[93.06162,12.31617],[93.06138,12.31581],[93.06125,12.31528],[93.06128,12.315],[93.06137,12.31489],[93.06191,12.31478],[93.06222,12.3148],[93.06272,12.31511],[93.06324,12.31492],[93.06371,12.315],[93.06422,12.3149],[93.06466,12.3149],[93.06523,12.31495],[93.06551,12.31508],[93.06559,12.31519],[93.06698,12.31527],[93.06702,12.31514],[93.06724,12.31505],[93.06765,12.31514],[93.06882,12.3149],[93.06959,12.31505],[93.07024,12.31499],[93.07065,12.31505]]],[[[92.85791,12.33483],[92.85726,12.33586],[92.85728,12.3372],[92.85751,12.33798],[92.85845,12.33842],[92.85853,12.33869],[92.85755,12.34002],[92.85688,12.33992],[92.85663,12.33924],[92.85672,12.33618],[92.85613,12.33428],[92.85645,12.33328],[92.85539,12.33268],[92.85504,12.33205],[92.85604,12.33058],[92.85845,12.3298],[92.85838,12.32936],[92.85719,12.32831],[92.85773,12.32686],[92.85832,12.32627],[92.85852,12.32537],[92.85948,12.32529],[92.85999,12.32428],[92.86111,12.32373],[92.86089,12.32285],[92.85986,12.32247],[92.86048,12.32137],[92.86028,12.32011],[92.86066,12.32005],[92.86087,12.32085],[92.86165,12.32088],[92.86122,12.32144],[92.8614,12.32174],[92.86184,12.32113],[92.86175,12.32066],[92.86107,12.32062],[92.86052,12.31978],[92.86059,12.31907],[92.85885,12.31813],[92.85669,12.31816],[92.85597,12.31774],[92.85588,12.31606],[92.85617,12.31465],[92.85823,12.31406],[92.86041,12.31434],[92.86255,12.31301],[92.86376,12.31387],[92.86418,12.31594],[92.8656,12.31595],[92.86572,12.31515],[92.86629,12.31461],[92.86696,12.31454],[92.86695,12.31414],[92.86746,12.31375],[92.86901,12.31459],[92.86896,12.31584],[92.86958,12.31734],[92.87107,12.31825],[92.87167,12.31831],[92.8744,12.3177],[92.8737,12.31688],[92.87368,12.31626],[92.87549,12.31537],[92.87595,12.31463],[92.87559,12.31418],[92.87662,12.31353],[92.87715,12.31283],[92.87777,12.31287],[92.87843,12.31362],[92.87814,12.31428],[92.87953,12.31522],[92.87887,12.31642],[92.87945,12.3172],[92.87958,12.318],[92.88139,12.31972],[92.88219,12.31953],[92.8838,12.32059],[92.88528,12.3228],[92.88589,12.32259],[92.88737,12.32072],[92.88893,12.3198],[92.88966,12.31755],[92.8904,12.31695],[92.89068,12.31712],[92.89035,12.31829],[92.89126,12.31908],[92.89304,12.31845],[92.8937,12.31789],[92.89405,12.31796],[92.89498,12.31727],[92.89566,12.31797],[92.89544,12.31884],[92.89583,12.31921],[92.89563,12.31968],[92.89618,12.31987],[92.89605,12.32017],[92.8966,12.32053],[92.89663,12.32101],[92.89703,12.32124],[92.89684,12.32152],[92.89735,12.32181],[92.89764,12.32261],[92.89819,12.32279],[92.89887,12.32214],[92.89924,12.32308],[92.90008,12.3235],[92.89871,12.32446],[92.8982,12.32563],[92.8978,12.32562],[92.89741,12.326],[92.89758,12.32629],[92.89734,12.32666],[92.89594,12.32703],[92.89515,12.32698],[92.89356,12.32578],[92.89049,12.32483],[92.88863,12.32494],[92.8871,12.32588],[92.88587,12.32727],[92.88611,12.32814],[92.88782,12.32892],[92.88776,12.3305],[92.88643,12.33153],[92.88523,12.33196],[92.88308,12.33175],[92.87742,12.33055],[92.87363,12.329],[92.87136,12.32915],[92.87094,12.32869],[92.87094,12.32925],[92.86933,12.3301],[92.86861,12.32907],[92.86858,12.32949],[92.86901,12.33019],[92.86887,12.33052],[92.86499,12.33294],[92.86434,12.33225],[92.8649,12.33143],[92.86487,12.33075],[92.86445,12.33079],[92.86332,12.33183],[92.86314,12.33167],[92.86359,12.33086],[92.86316,12.33063],[92.86338,12.33088],[92.86289,12.3318],[92.8632,12.33207],[92.86475,12.33098],[92.86411,12.33236],[92.86483,12.33316],[92.86438,12.33368],[92.86368,12.33303],[92.86312,12.3331],[92.86279,12.33417],[92.86247,12.33439],[92.86097,12.33343],[92.86226,12.33457],[92.86294,12.33437],[92.86329,12.33319],[92.86378,12.33332],[92.86426,12.33398],[92.86402,12.33472],[92.86213,12.33607],[92.86133,12.33628],[92.8606,12.33545],[92.85942,12.33476],[92.85791,12.33483]]],[[[92.90596,12.33784],[92.90623,12.33846],[92.90625,12.33872],[92.90612,12.33912],[92.90608,12.33973],[92.90596,12.34008],[92.90563,12.3405],[92.90508,12.34098],[92.90473,12.34117],[92.90435,12.34119],[92.90392,12.34111],[92.90362,12.34089],[92.90354,12.34063],[92.90362,12.34022],[92.90362,12.34002],[92.90371,12.33961],[92.90426,12.33808],[92.9045,12.33782],[92.90514,12.33777],[92.90523,12.3375],[92.90563,12.33729],[92.90592,12.33731],[92.90602,12.33742],[92.90612,12.33762],[92.90596,12.33784]]],[[[92.91264,12.3395],[92.91267,12.33995],[92.91222,12.34061],[92.91232,12.34081],[92.9129,12.34097],[92.9145,12.34268],[92.91482,12.34327],[92.91506,12.34428],[92.91626,12.34636],[92.91774,12.34805],[92.91816,12.34902],[92.9182,12.34954],[92.91848,12.34978],[92.919,12.35079],[92.91883,12.35103],[92.91907,12.35117],[92.91897,12.35165],[92.91755,12.35422],[92.91668,12.35508],[92.91471,12.35612],[92.91393,12.35637],[92.91323,12.35637],[92.91259,12.35605],[92.9114,12.35453],[92.91055,12.35377],[92.90897,12.35117],[92.90826,12.34843],[92.90826,12.34743],[92.90854,12.34659],[92.90826,12.34625],[92.90826,12.34573],[92.90861,12.34514],[92.90823,12.34462],[92.90786,12.3436],[92.90793,12.34284],[92.90759,12.34276],[92.90753,12.34242],[92.90774,12.34221],[92.90674,12.34167],[92.90756,12.34142],[92.90792,12.34103],[92.90765,12.34083],[92.90836,12.33956],[92.90878,12.33916],[92.90963,12.3378],[92.91004,12.338],[92.91042,12.33771],[92.91088,12.33935],[92.911,12.33955],[92.91138,12.3393],[92.91095,12.3366],[92.91128,12.33627],[92.9113,12.33585],[92.91103,12.3354],[92.91085,12.3355],[92.91057,12.33523],[92.91039,12.33545],[92.90987,12.33423],[92.90993,12.33336],[92.91033,12.33222],[92.91112,12.33163],[92.91153,12.33155],[92.91174,12.33175],[92.91197,12.33175],[92.91241,12.33259],[92.91262,12.33233],[92.91248,12.33172],[92.91265,12.33066],[92.91299,12.33091],[92.91311,12.33121],[92.91292,12.33148],[92.91309,12.33171],[92.91312,12.33216],[92.91281,12.33278],[92.91273,12.33365],[92.91232,12.33441],[92.91235,12.3346],[92.91214,12.3348],[92.91232,12.33551],[92.91267,12.33569],[92.91232,12.33607],[92.9119,12.33617],[92.91193,12.33769],[92.91264,12.3395]]],[[[93.85312,12.30022],[93.85278,12.30083],[93.85201,12.30138],[93.85099,12.30202],[93.85032,12.30208],[93.84988,12.30152],[93.84988,12.3009],[93.84916,12.29936],[93.84873,12.29885],[93.84834,12.29874],[93.84737,12.29911],[93.84616,12.2988],[93.84526,12.2974],[93.84414,12.29668],[93.84367,12.29549],[93.84274,12.2953],[93.84231,12.29485],[93.84162,12.29488],[93.84088,12.29546],[93.84026,12.29538],[93.84014,12.29454],[93.84045,12.29344],[93.83995,12.29294],[93.83999,12.29267],[93.84018,12.29233],[93.84146,12.29169],[93.84181,12.29077],[93.84173,12.2891],[93.8415,12.28887],[93.84022,12.28887],[93.837,12.28631],[93.83693,12.28582],[93.83716,12.28539],[93.83826,12.28469],[93.83819,12.28374],[93.83613,12.28205],[93.83547,12.27977],[93.83405,12.27816],[93.83443,12.27709],[93.83519,12.27682],[93.83571,12.27617],[93.83601,12.27501],[93.83684,12.27363],[93.83805,12.2742],[93.83978,12.27347],[93.84137,12.27075],[93.84294,12.27071],[93.84389,12.26966],[93.84536,12.26917],[93.8511,12.26895],[93.85313,12.26978],[93.85781,12.27077],[93.8609,12.27197],[93.86162,12.27204],[93.86256,12.27152],[93.86339,12.27156],[93.86487,12.27265],[93.86617,12.27404],[93.867,12.27538],[93.86721,12.27896],[93.86642,12.28061],[93.86765,12.28167],[93.86777,12.28225],[93.86843,12.28311],[93.86853,12.28523],[93.868,12.28603],[93.86711,12.28618],[93.86717,12.28699],[93.86564,12.28822],[93.86569,12.29036],[93.8651,12.29167],[93.86465,12.29418],[93.8628,12.29509],[93.86133,12.29664],[93.86088,12.29671],[93.8603,12.2984],[93.85958,12.29896],[93.85845,12.29926],[93.85774,12.30069],[93.85598,12.30048],[93.85499,12.30113],[93.8545,12.3011],[93.85369,12.30022],[93.85312,12.30022]]],[[[92.89715,12.39612],[92.89717,12.39653],[92.89713,12.39676],[92.89699,12.39683],[92.89678,12.39677],[92.8967,12.39664],[92.89639,12.39645],[92.89625,12.3963],[92.89622,12.39612],[92.89596,12.39629],[92.89553,12.39618],[92.89508,12.39636],[92.89491,12.39621],[92.89465,12.39622],[92.89444,12.39595],[92.89452,12.39582],[92.89448,12.39571],[92.89436,12.39568],[92.89453,12.3954],[92.89445,12.39527],[92.89465,12.39511],[92.89457,12.39504],[92.89457,12.39493],[92.89452,12.3949],[92.89464,12.39485],[92.89465,12.39475],[92.89459,12.39465],[92.89461,12.39451],[92.89436,12.39431],[92.89464,12.39402],[92.89462,12.39373],[92.89495,12.39349],[92.89516,12.39311],[92.89571,12.39274],[92.89573,12.39268],[92.89592,12.39247],[92.8962,12.39243],[92.89659,12.39201],[92.89676,12.39208],[92.89688,12.39232],[92.89697,12.39238],[92.89697,12.39256],[92.89709,12.39273],[92.89713,12.39295],[92.89705,12.39305],[92.89702,12.39324],[92.89726,12.39331],[92.89718,12.39359],[92.89719,12.39381],[92.89729,12.39393],[92.89715,12.3942],[92.8972,12.3943],[92.8972,12.39472],[92.89732,12.39491],[92.89724,12.39521],[92.89712,12.39543],[92.89715,12.39612]]],[[[92.86497,12.40857],[92.86483,12.40865],[92.86472,12.40859],[92.86459,12.40861],[92.86452,12.4086],[92.86446,12.4086],[92.86423,12.40848],[92.86413,12.40854],[92.86407,12.40848],[92.86408,12.40838],[92.86401,12.40831],[92.86394,12.40827],[92.86393,12.40821],[92.86393,12.40794],[92.86409,12.40788],[92.86411,12.40779],[92.86426,12.40772],[92.86431,12.40774],[92.86442,12.40773],[92.86452,12.40768],[92.86461,12.40771],[92.86467,12.40775],[92.86477,12.40772],[92.86509,12.40794],[92.86513,12.40799],[92.86521,12.40807],[92.86522,12.40817],[92.86518,12.40822],[92.86519,12.40831],[92.86512,12.40834],[92.86507,12.40853],[92.86497,12.40857]]],[[[92.88753,12.40807],[92.88699,12.40844],[92.88532,12.40729],[92.88396,12.40502],[92.88364,12.40346],[92.88417,12.40123],[92.884,12.40016],[92.88249,12.39884],[92.88097,12.39838],[92.87904,12.39864],[92.87543,12.40038],[92.87339,12.40372],[92.87317,12.40576],[92.87271,12.40607],[92.87222,12.40576],[92.87202,12.40612],[92.87114,12.40566],[92.87059,12.40576],[92.86999,12.40508],[92.8699,12.40421],[92.86919,12.40376],[92.86733,12.40348],[92.86581,12.40368],[92.86546,12.40212],[92.86578,12.40144],[92.86518,12.4022],[92.86544,12.40333],[92.86403,12.40394],[92.86258,12.40517],[92.86235,12.40574],[92.86124,12.40579],[92.85867,12.40691],[92.85435,12.40935],[92.85101,12.40855],[92.84732,12.40723],[92.84549,12.40606],[92.84421,12.40373],[92.84305,12.40272],[92.8427,12.40111],[92.84315,12.40013],[92.84391,12.3953],[92.84462,12.39491],[92.84731,12.39494],[92.84869,12.39429],[92.84858,12.394],[92.84893,12.3941],[92.8512,12.39233],[92.85363,12.38946],[92.85491,12.38886],[92.85656,12.38954],[92.86018,12.38924],[92.86052,12.39148],[92.86092,12.39198],[92.86041,12.38992],[92.86087,12.38862],[92.86052,12.38861],[92.86034,12.38909],[92.86003,12.38858],[92.8603,12.38676],[92.8601,12.38557],[92.85949,12.38472],[92.85906,12.38498],[92.85846,12.38465],[92.85857,12.38414],[92.85897,12.38389],[92.85989,12.38164],[92.8606,12.38076],[92.86442,12.37928],[92.8669,12.37748],[92.8677,12.37767],[92.86843,12.38028],[92.87202,12.38476],[92.87294,12.38488],[92.87493,12.3838],[92.87549,12.3831],[92.87735,12.38255],[92.87777,12.38211],[92.87777,12.38409],[92.87861,12.38466],[92.87945,12.38424],[92.88096,12.38249],[92.88153,12.38114],[92.88102,12.38045],[92.88136,12.37861],[92.88079,12.37733],[92.88049,12.37504],[92.88137,12.37388],[92.88226,12.3737],[92.88425,12.37516],[92.88482,12.37639],[92.8846,12.37689],[92.88513,12.37839],[92.88502,12.37912],[92.88533,12.37933],[92.88542,12.38137],[92.88542,12.38166],[92.88381,12.38276],[92.88343,12.38359],[92.88339,12.38574],[92.8826,12.38849],[92.88649,12.3913],[92.88965,12.39242],[92.89065,12.39422],[92.89227,12.39554],[92.89343,12.39736],[92.89328,12.39799],[92.89363,12.39923],[92.89463,12.40014],[92.89278,12.40073],[92.8914,12.4017],[92.89102,12.40233],[92.89143,12.40388],[92.89392,12.4063],[92.89427,12.40702],[92.894,12.40732],[92.88753,12.40807]]],[[[92.87534,12.40849],[92.87655,12.40857],[92.8774,12.40882],[92.87825,12.4092],[92.87931,12.40983],[92.88059,12.41069],[92.88043,12.41096],[92.87978,12.41094],[92.87765,12.41054],[92.87623,12.41017],[92.87384,12.40917],[92.87376,12.4089],[92.87391,12.40865],[92.87485,12.4085],[92.87534,12.40849]]],[[[92.88846,12.41304],[92.88841,12.41305],[92.88831,12.4129],[92.88823,12.41281],[92.88835,12.41275],[92.88843,12.41268],[92.88849,12.41271],[92.88854,12.41285],[92.88865,12.41289],[92.88866,12.41297],[92.88853,12.41295],[92.88846,12.41304]]],[[[92.89885,12.40908],[92.8988,12.40944],[92.89875,12.40952],[92.89865,12.4096],[92.89862,12.41026],[92.89869,12.41094],[92.89861,12.41145],[92.89851,12.41193],[92.89814,12.41219],[92.89787,12.41228],[92.89752,12.41219],[92.89712,12.41197],[92.89684,12.41177],[92.8966,12.41115],[92.89646,12.41063],[92.89657,12.41011],[92.89679,12.40955],[92.89683,12.40936],[92.89682,12.4093],[92.8969,12.40919],[92.89696,12.4092],[92.89695,12.40912],[92.89704,12.40897],[92.89707,12.40872],[92.8971,12.40863],[92.89707,12.40833],[92.89734,12.40823],[92.89749,12.40821],[92.89778,12.40806],[92.89777,12.40832],[92.89811,12.40816],[92.89826,12.40821],[92.89841,12.40819],[92.89844,12.40814],[92.8986,12.40808],[92.8987,12.40814],[92.89881,12.4084],[92.89885,12.40908]]],[[[92.88883,12.41427],[92.88858,12.41433],[92.88829,12.4145],[92.888,12.41414],[92.88795,12.41368],[92.88805,12.4134],[92.88828,12.41323],[92.88851,12.41319],[92.88864,12.41323],[92.88874,12.41333],[92.88877,12.41352],[92.88883,12.41366],[92.8891,12.41366],[92.88933,12.41391],[92.88944,12.41405],[92.88933,12.4142],[92.88928,12.41417],[92.88914,12.41402],[92.88912,12.41409],[92.88904,12.41426],[92.88898,12.41424],[92.88887,12.41416],[92.88883,12.41427]]],[[[92.90214,12.4133],[92.90205,12.41337],[92.90199,12.41326],[92.90183,12.41328],[92.90176,12.41313],[92.90162,12.41304],[92.90159,12.4129],[92.90154,12.41277],[92.90148,12.41268],[92.90145,12.41259],[92.90137,12.4125],[92.90134,12.41232],[92.90139,12.41219],[92.90134,12.41207],[92.90142,12.41199],[92.90153,12.41189],[92.9017,12.41194],[92.90191,12.41194],[92.90195,12.41201],[92.90201,12.41209],[92.90209,12.41215],[92.90215,12.41233],[92.90221,12.41236],[92.90224,12.41246],[92.90235,12.41251],[92.90241,12.41252],[92.90239,12.41272],[92.90249,12.4128],[92.90249,12.41296],[92.90254,12.41311],[92.90249,12.4132],[92.90231,12.41329],[92.90219,12.41321],[92.90214,12.4133]]],[[[92.88819,12.41477],[92.88804,12.41471],[92.88794,12.41476],[92.88787,12.41471],[92.88791,12.41457],[92.88795,12.41452],[92.88797,12.41442],[92.88818,12.41446],[92.88821,12.41457],[92.88822,12.41467],[92.88819,12.41477]]],[[[92.8621,12.41258],[92.86244,12.41257],[92.86254,12.41275],[92.86492,12.41278],[92.86565,12.41291],[92.86789,12.41378],[92.86838,12.41415],[92.86868,12.41484],[92.86835,12.41568],[92.86821,12.41654],[92.86816,12.41755],[92.86832,12.41867],[92.86796,12.41986],[92.86784,12.42013],[92.86762,12.42036],[92.86723,12.42058],[92.86563,12.42105],[92.86492,12.42121],[92.86464,12.4212],[92.8642,12.42094],[92.86302,12.41992],[92.86262,12.4197],[92.85932,12.41808],[92.85864,12.41789],[92.85828,12.41761],[92.85787,12.41709],[92.85769,12.41668],[92.85786,12.41581],[92.85801,12.41566],[92.85801,12.41545],[92.85823,12.4151],[92.85831,12.41475],[92.85999,12.41341],[92.86069,12.41298],[92.86161,12.41261],[92.8621,12.41258]]],[[[92.83246,12.42692],[92.83077,12.42692],[92.82948,12.42643],[92.82901,12.42601],[92.82857,12.42402],[92.82864,12.42274],[92.8296,12.42088],[92.83056,12.42041],[92.83254,12.41863],[92.83313,12.41831],[92.83405,12.41707],[92.8354,12.41673],[92.83594,12.41629],[92.83687,12.41603],[92.83767,12.41536],[92.83797,12.41455],[92.83769,12.41272],[92.83785,12.41204],[92.83828,12.41131],[92.83892,12.41132],[92.83949,12.41158],[92.84083,12.41405],[92.84276,12.4152],[92.84394,12.41398],[92.84777,12.41111],[92.8488,12.41093],[92.85035,12.41035],[92.85171,12.40958],[92.85203,12.40963],[92.85213,12.40992],[92.85259,12.41017],[92.85307,12.40992],[92.8534,12.41022],[92.85364,12.41083],[92.85328,12.41179],[92.85341,12.41208],[92.85427,12.41267],[92.85569,12.41324],[92.85827,12.41314],[92.85843,12.41331],[92.85515,12.41449],[92.85033,12.41779],[92.84722,12.41762],[92.84611,12.4178],[92.84499,12.41909],[92.84306,12.42042],[92.84264,12.42042],[92.84259,12.42012],[92.84288,12.41894],[92.84329,12.41826],[92.84285,12.41736],[92.84259,12.41586],[92.84199,12.41601],[92.84261,12.41789],[92.84206,12.42057],[92.84168,12.42112],[92.84003,12.4228],[92.83959,12.4223],[92.83956,12.42198],[92.84016,12.42037],[92.83989,12.42025],[92.83923,12.42171],[92.839,12.42112],[92.83911,12.42039],[92.8389,12.42037],[92.83871,12.42134],[92.83972,12.42312],[92.83729,12.42492],[92.83679,12.42445],[92.83611,12.42292],[92.83619,12.422],[92.83582,12.42249],[92.83582,12.42281],[92.83645,12.42438],[92.83699,12.42511],[92.83524,12.42605],[92.83246,12.42692]]],[[[92.903,12.42154],[92.90306,12.4218],[92.90331,12.42233],[92.90342,12.42304],[92.90338,12.42329],[92.90303,12.42377],[92.90158,12.42541],[92.90083,12.42612],[92.90062,12.4262],[92.90038,12.42623],[92.89964,12.4262],[92.89926,12.42608],[92.89888,12.42587],[92.8986,12.42563],[92.89851,12.42549],[92.89867,12.42499],[92.89876,12.42452],[92.89876,12.42421],[92.89855,12.42382],[92.8986,12.42361],[92.89829,12.42338],[92.8982,12.42322],[92.89821,12.42205],[92.89823,12.42177],[92.8983,12.42165],[92.89844,12.42154],[92.89891,12.42167],[92.89901,12.42153],[92.89917,12.42157],[92.89929,12.42154],[92.90003,12.4211],[92.90052,12.42097],[92.90131,12.42055],[92.90159,12.42047],[92.90216,12.42044],[92.90248,12.42053],[92.90281,12.42085],[92.90297,12.42125],[92.903,12.42154]]],[[[92.95618,12.43462],[92.95592,12.43546],[92.95738,12.43733],[92.95746,12.43774],[92.95705,12.43755],[92.95302,12.43442],[92.95131,12.43176],[92.95132,12.43082],[92.95219,12.43009],[92.95015,12.42962],[92.94869,12.42988],[92.94754,12.42896],[92.94775,12.42627],[92.94653,12.42321],[92.94644,12.42154],[92.94648,12.41843],[92.94734,12.41558],[92.94643,12.41611],[92.94636,12.41702],[92.94423,12.42014],[92.94005,12.42185],[92.93973,12.42253],[92.94052,12.42375],[92.93842,12.42316],[92.93711,12.42177],[92.935,12.4215],[92.93467,12.42069],[92.93358,12.42055],[92.93086,12.41835],[92.93108,12.41794],[92.93029,12.41718],[92.92985,12.41517],[92.9287,12.41376],[92.92645,12.40619],[92.92485,12.40408],[92.92484,12.40188],[92.92422,12.40083],[92.92451,12.39934],[92.92413,12.3984],[92.92454,12.39816],[92.92402,12.3974],[92.92361,12.39042],[92.92536,12.39061],[92.92786,12.3882],[92.92787,12.38613],[92.92774,12.38795],[92.92631,12.38872],[92.92669,12.3865],[92.9257,12.38685],[92.92528,12.38647],[92.92324,12.38258],[92.92295,12.38274],[92.92147,12.38106],[92.91792,12.37618],[92.91717,12.37138],[92.91755,12.37025],[92.91733,12.36931],[92.91699,12.3694],[92.91735,12.36924],[92.91703,12.36789],[92.91738,12.36654],[92.91613,12.36358],[92.91673,12.3628],[92.9209,12.3639],[92.92343,12.36307],[92.92559,12.36295],[92.92619,12.36203],[92.92867,12.36101],[92.93019,12.35677],[92.93234,12.35959],[92.93417,12.36447],[92.93606,12.37152],[92.93707,12.37311],[92.93693,12.37465],[92.9376,12.37784],[92.94229,12.38171],[92.94333,12.38391],[92.94348,12.38639],[92.94251,12.38818],[92.94316,12.39134],[92.94306,12.39367],[92.9438,12.39607],[92.94323,12.39817],[92.94402,12.40195],[92.94468,12.40235],[92.94454,12.4034],[92.94543,12.40531],[92.94801,12.40673],[92.95044,12.40712],[92.95137,12.40679],[92.9533,12.41312],[92.95686,12.41604],[92.95612,12.41629],[92.95696,12.41666],[92.9572,12.41621],[92.95844,12.41717],[92.95892,12.41809],[92.9586,12.4193],[92.95941,12.41959],[92.95962,12.42118],[92.96001,12.42005],[92.96073,12.42121],[92.96094,12.42285],[92.96054,12.42379],[92.95896,12.42491],[92.95724,12.4241],[92.95763,12.42352],[92.95684,12.42369],[92.95637,12.42486],[92.95684,12.42514],[92.95708,12.42665],[92.955,12.42804],[92.95513,12.42947],[92.95463,12.42974],[92.95494,12.43063],[92.95579,12.43026],[92.95851,12.43106],[92.95676,12.43244],[92.95734,12.43461],[92.95618,12.43462]]],[[[92.68347,12.55408],[92.68316,12.55426],[92.68294,12.55524],[92.68348,12.55573],[92.68337,12.5563],[92.68265,12.55674],[92.68149,12.55674],[92.68136,12.5555],[92.68022,12.55538],[92.67661,12.55149],[92.67273,12.54561],[92.67181,12.54355],[92.66866,12.54003],[92.66726,12.53766],[92.6643,12.53547],[92.6618,12.53288],[92.66245,12.53052],[92.66385,12.52809],[92.66388,12.52656],[92.66576,12.52563],[92.66676,12.523],[92.66975,12.51996],[92.67018,12.51882],[92.67033,12.51635],[92.67127,12.51428],[92.67416,12.50984],[92.67632,12.50756],[92.67714,12.50606],[92.67814,12.50556],[92.67922,12.50565],[92.68026,12.50674],[92.68157,12.51029],[92.68301,12.5129],[92.68313,12.51473],[92.68416,12.51689],[92.68264,12.51928],[92.68242,12.52113],[92.68126,12.52298],[92.68133,12.52479],[92.68276,12.52643],[92.68263,12.52748],[92.68205,12.52852],[92.68219,12.53],[92.68157,12.53151],[92.68389,12.53387],[92.68329,12.53598],[92.68373,12.53607],[92.68532,12.53525],[92.68633,12.53666],[92.68626,12.53769],[92.68536,12.53932],[92.68544,12.54117],[92.68462,12.54215],[92.68697,12.54551],[92.68703,12.54594],[92.6864,12.54697],[92.68656,12.54797],[92.68742,12.5487],[92.68807,12.55006],[92.68701,12.55068],[92.68687,12.55184],[92.68507,12.55223],[92.6852,12.55296],[92.68629,12.55345],[92.68636,12.55378],[92.6843,12.55441],[92.68347,12.55408]]],[[[92.70099,12.63761],[92.70086,12.63775],[92.7007,12.63777],[92.7004,12.63805],[92.70026,12.63812],[92.70016,12.63822],[92.70002,12.63823],[92.69996,12.63817],[92.69991,12.63804],[92.69967,12.63802],[92.6996,12.63794],[92.69928,12.63747],[92.69921,12.63732],[92.69919,12.63714],[92.6993,12.63695],[92.69937,12.63691],[92.69953,12.6369],[92.69964,12.63698],[92.6997,12.63689],[92.69978,12.63688],[92.69983,12.63694],[92.69988,12.63708],[92.69992,12.63709],[92.69997,12.63714],[92.70003,12.63724],[92.70011,12.63709],[92.70044,12.63696],[92.70057,12.63705],[92.70058,12.63716],[92.70071,12.63703],[92.7009,12.63691],[92.70099,12.63688],[92.7011,12.63693],[92.70116,12.63698],[92.7012,12.63705],[92.70126,12.637],[92.70128,12.63694],[92.70135,12.63686],[92.70139,12.63676],[92.7015,12.63667],[92.70158,12.63664],[92.70147,12.63647],[92.70146,12.63642],[92.70156,12.63626],[92.70171,12.63618],[92.70192,12.63611],[92.7022,12.63618],[92.70227,12.63629],[92.70232,12.63641],[92.70238,12.63647],[92.70238,12.63672],[92.70248,12.63689],[92.70248,12.63696],[92.70244,12.63705],[92.70233,12.63713],[92.70239,12.63734],[92.70232,12.63752],[92.7023,12.63766],[92.70218,12.6377],[92.70193,12.6376],[92.70188,12.63754],[92.70168,12.63758],[92.70157,12.63757],[92.70151,12.6375],[92.70136,12.63753],[92.70126,12.63752],[92.70115,12.63747],[92.70099,12.63761]]],[[[92.70276,12.64006],[92.70276,12.6403],[92.70216,12.64117],[92.70205,12.64125],[92.70183,12.64128],[92.70153,12.64119],[92.70112,12.64094],[92.70067,12.64047],[92.70023,12.63992],[92.70018,12.63978],[92.70015,12.63986],[92.7,12.63983],[92.69984,12.63974],[92.69972,12.63974],[92.69971,12.63988],[92.69961,12.63983],[92.69939,12.6396],[92.69923,12.63958],[92.6992,12.63942],[92.69888,12.63918],[92.69888,12.63895],[92.69898,12.63894],[92.69908,12.6388],[92.6992,12.63889],[92.69926,12.63891],[92.69937,12.63879],[92.69964,12.63903],[92.69974,12.63888],[92.6998,12.63894],[92.69987,12.63913],[92.70001,12.63915],[92.70002,12.6393],[92.70007,12.63939],[92.70013,12.63942],[92.70013,12.63924],[92.70026,12.63871],[92.7007,12.63825],[92.70173,12.63799],[92.70218,12.63814],[92.70241,12.63837],[92.70267,12.63934],[92.70276,12.64006]]],[[[92.70037,12.64036],[92.70045,12.64043],[92.70047,12.64055],[92.70057,12.64077],[92.70064,12.6409],[92.70089,12.64106],[92.70103,12.64141],[92.70099,12.64146],[92.70088,12.64146],[92.7007,12.64134],[92.70054,12.64121],[92.70037,12.64093],[92.70016,12.64069],[92.70019,12.64041],[92.70028,12.64034],[92.70037,12.64036]]],[[[92.7025,12.64367],[92.70237,12.64372],[92.70234,12.64346],[92.7022,12.64347],[92.70209,12.64322],[92.70202,12.64317],[92.70194,12.64315],[92.70192,12.64304],[92.70186,12.64286],[92.70152,12.64268],[92.70147,12.64258],[92.70118,12.64242],[92.70123,12.64225],[92.70094,12.64175],[92.70128,12.64175],[92.7014,12.64152],[92.70147,12.64162],[92.7015,12.64183],[92.7016,12.64175],[92.70163,12.64171],[92.70171,12.64179],[92.70182,12.6417],[92.70191,12.64183],[92.70197,12.64184],[92.7021,12.64178],[92.70235,12.6416],[92.70244,12.64165],[92.7025,12.64154],[92.70258,12.6415],[92.70261,12.64135],[92.70284,12.64116],[92.70279,12.64149],[92.70274,12.64161],[92.70264,12.64174],[92.70272,12.64195],[92.70288,12.64209],[92.70264,12.64231],[92.70271,12.64242],[92.70272,12.64266],[92.70279,12.64268],[92.7026,12.64286],[92.70271,12.64299],[92.70275,12.64311],[92.7026,12.64321],[92.70251,12.64316],[92.7025,12.64367]]],[[[92.72686,12.65537],[92.72686,12.65547],[92.72637,12.65553],[92.72632,12.65518],[92.72649,12.65518],[92.72662,12.65523],[92.72672,12.65517],[92.72687,12.65515],[92.72692,12.65507],[92.72693,12.65495],[92.72703,12.6549],[92.72719,12.65454],[92.72718,12.65446],[92.72706,12.65435],[92.727,12.65425],[92.72755,12.65418],[92.72773,12.65417],[92.72788,12.65426],[92.72797,12.65421],[92.72805,12.65409],[92.72817,12.65397],[92.72805,12.65394],[92.72809,12.65355],[92.72822,12.6536],[92.72844,12.65345],[92.72881,12.65341],[92.7289,12.65308],[92.72917,12.65306],[92.72923,12.65298],[92.72948,12.65293],[92.72956,12.65296],[92.7296,12.65304],[92.72975,12.65305],[92.72988,12.6531],[92.72993,12.65301],[92.72999,12.65302],[92.73014,12.65312],[92.73003,12.65327],[92.72993,12.65333],[92.72966,12.65324],[92.72962,12.6533],[92.72959,12.65347],[92.72941,12.65351],[92.7293,12.65337],[92.72921,12.65341],[92.72924,12.65361],[92.72897,12.65363],[92.72883,12.65368],[92.72875,12.65384],[92.72869,12.6539],[92.72853,12.6539],[92.72847,12.65404],[92.72831,12.65412],[92.72831,12.65435],[92.72826,12.65442],[92.72803,12.65456],[92.72791,12.65451],[92.7278,12.65463],[92.72774,12.65465],[92.72768,12.65459],[92.72763,12.65462],[92.7276,12.65475],[92.72752,12.65473],[92.7274,12.65474],[92.72735,12.6548],[92.72735,12.655],[92.7273,12.65502],[92.72716,12.65497],[92.72705,12.65523],[92.72699,12.65526],[92.72688,12.65525],[92.72686,12.65537]]],[[[92.72546,12.65617],[92.72536,12.65641],[92.72514,12.65604],[92.72514,12.65594],[92.72496,12.65585],[92.72494,12.65565],[92.72486,12.65564],[92.72483,12.65546],[92.72474,12.65543],[92.7247,12.65535],[92.72465,12.65532],[92.72465,12.65519],[92.72458,12.65513],[92.72451,12.6552],[92.72444,12.65523],[92.72433,12.65518],[92.72418,12.65522],[92.72413,12.65519],[92.72404,12.65504],[92.72415,12.6549],[92.72418,12.65466],[92.72431,12.65466],[92.7244,12.6545],[92.72433,12.65431],[92.72446,12.65418],[92.72443,12.65407],[92.72428,12.65393],[92.72436,12.65381],[92.72447,12.65383],[92.72442,12.65373],[92.72448,12.65359],[92.72436,12.65345],[92.72444,12.65335],[92.72456,12.65328],[92.72467,12.65292],[92.72494,12.65275],[92.72511,12.65301],[92.72502,12.6532],[92.72505,12.65344],[92.7249,12.65344],[92.72508,12.65373],[92.72544,12.65404],[92.72574,12.65422],[92.72583,12.65412],[92.72599,12.65425],[92.72616,12.65425],[92.72635,12.65422],[92.72648,12.65431],[92.72657,12.65446],[92.72671,12.6545],[92.72691,12.65447],[92.72699,12.65459],[92.72694,12.65465],[92.7268,12.65475],[92.72656,12.6547],[92.72651,12.65486],[92.72646,12.65491],[92.72635,12.65493],[92.72622,12.65511],[92.7261,12.65521],[92.72604,12.65511],[92.72595,12.65514],[92.7259,12.65539],[92.72582,12.65544],[92.72582,12.65555],[92.72572,12.6556],[92.72572,12.65571],[92.72566,12.65574],[92.72564,12.65593],[92.7256,12.65603],[92.72554,12.65604],[92.72546,12.65617]]],[[[92.78086,12.64614],[92.78149,12.64667],[92.7818,12.64761],[92.78143,12.64941],[92.78149,12.65056],[92.78129,12.65269],[92.78124,12.65561],[92.78099,12.65584],[92.78065,12.6557],[92.78055,12.65517],[92.78072,12.65346],[92.7805,12.65285],[92.77942,12.64856],[92.77946,12.64705],[92.77996,12.64648],[92.78058,12.64614],[92.78086,12.64614]]],[[[92.71457,12.68858],[92.71473,12.68878],[92.71485,12.68908],[92.71485,12.68928],[92.71478,12.68937],[92.71469,12.68958],[92.71443,12.68986],[92.71414,12.69003],[92.71397,12.6901],[92.71365,12.69009],[92.71344,12.6898],[92.71333,12.68945],[92.71342,12.68909],[92.71356,12.68892],[92.71363,12.6888],[92.71389,12.68856],[92.71423,12.68849],[92.71457,12.68858]]],[[[92.72261,12.69204],[92.72269,12.69215],[92.72273,12.69226],[92.72273,12.69241],[92.72274,12.69253],[92.72273,12.69259],[92.72268,12.69263],[92.72255,12.69268],[92.72245,12.69273],[92.72239,12.69274],[92.72228,12.6926],[92.72213,12.69248],[92.72213,12.69242],[92.72217,12.69228],[92.72219,12.6921],[92.72234,12.69199],[92.72253,12.69193],[92.72261,12.69204]]],[[[92.7742,12.67358],[92.7747,12.67383],[92.77538,12.67449],[92.77633,12.67612],[92.77813,12.68011],[92.77905,12.68157],[92.7797,12.68328],[92.78003,12.68455],[92.78118,12.68661],[92.78183,12.68733],[92.78208,12.68785],[92.78199,12.68824],[92.78157,12.68827],[92.78085,12.68764],[92.77885,12.68309],[92.77703,12.68025],[92.77544,12.67733],[92.77468,12.67609],[92.77358,12.67499],[92.77285,12.67441],[92.7726,12.67397],[92.77285,12.67366],[92.7733,12.6735],[92.77375,12.67342],[92.7742,12.67358]]],[[[92.73194,12.70306],[92.73206,12.70341],[92.73194,12.70377],[92.73143,12.70434],[92.73105,12.70463],[92.73075,12.70481],[92.73067,12.70491],[92.73069,12.70547],[92.73058,12.70556],[92.73048,12.70582],[92.73036,12.70583],[92.73027,12.70579],[92.73011,12.70564],[92.73002,12.70534],[92.73001,12.7051],[92.73009,12.705],[92.73005,12.70467],[92.72991,12.70443],[92.72972,12.70368],[92.72985,12.70356],[92.72966,12.70316],[92.72965,12.70298],[92.72945,12.7028],[92.72938,12.7026],[92.72955,12.70218],[92.72966,12.70177],[92.72979,12.70155],[92.73002,12.70161],[92.73016,12.70171],[92.73024,12.70187],[92.73015,12.70208],[92.73037,12.70235],[92.73039,12.70254],[92.73109,12.70287],[92.7317,12.70291],[92.73194,12.70306]]],[[[92.78295,12.71733],[92.78281,12.71806],[92.78247,12.71872],[92.78213,12.71807],[92.78147,12.71746],[92.78067,12.7172],[92.77857,12.71805],[92.77755,12.71822],[92.777,12.71791],[92.77684,12.71698],[92.77729,12.71578],[92.77934,12.71306],[92.78078,12.7118],[92.78099,12.71155],[92.78116,12.71173],[92.78342,12.71266],[92.78389,12.71339],[92.78389,12.71371],[92.78322,12.71428],[92.78217,12.71501],[92.782,12.71536],[92.78205,12.71563],[92.78241,12.71607],[92.78282,12.71642],[92.78299,12.71695],[92.78295,12.71733]]],[[[92.78135,12.71804],[92.78178,12.71839],[92.78197,12.71869],[92.78191,12.71903],[92.78157,12.71905],[92.78127,12.71903],[92.78106,12.71902],[92.78076,12.71874],[92.78065,12.71847],[92.78068,12.71817],[92.781,12.71797],[92.78135,12.71804]]],[[[92.7377,12.7335],[92.73763,12.73364],[92.73768,12.734],[92.73767,12.73407],[92.73758,12.73412],[92.73751,12.7341],[92.73742,12.73384],[92.73734,12.73339],[92.73734,12.73323],[92.73741,12.73309],[92.73756,12.73304],[92.73771,12.73293],[92.7379,12.73274],[92.73803,12.73263],[92.73818,12.73259],[92.73834,12.73259],[92.73845,12.73263],[92.73847,12.7327],[92.73847,12.73288],[92.73839,12.73297],[92.7381,12.73305],[92.73803,12.73312],[92.73801,12.73333],[92.73797,12.73344],[92.73781,12.73344],[92.7377,12.7335]]],[[[92.7242,12.73605],[92.72363,12.7364],[92.72212,12.73767],[92.72197,12.73763],[92.72194,12.7371],[92.72173,12.73654],[92.72174,12.73619],[92.72212,12.73561],[92.7228,12.73504],[92.72288,12.73454],[92.72313,12.73411],[92.7236,12.73358],[92.72448,12.7329],[92.72452,12.73273],[92.72432,12.73219],[92.72436,12.73179],[92.72476,12.7309],[92.72493,12.73093],[92.72529,12.7302],[92.72534,12.72986],[92.72574,12.72906],[92.72572,12.72852],[92.72577,12.72825],[92.72635,12.72796],[92.72629,12.72766],[92.72633,12.72731],[92.72642,12.72721],[92.72664,12.72722],[92.7267,12.72683],[92.72686,12.72671],[92.72692,12.72678],[92.72697,12.72658],[92.72733,12.7266],[92.72741,12.72682],[92.72753,12.72682],[92.72759,12.72694],[92.72765,12.72723],[92.72764,12.72781],[92.72788,12.72821],[92.72788,12.72837],[92.72764,12.7285],[92.72793,12.72884],[92.72811,12.72874],[92.72828,12.72876],[92.72868,12.72914],[92.72901,12.72988],[92.72895,12.73061],[92.72854,12.73159],[92.72814,12.73228],[92.72732,12.73324],[92.72717,12.73352],[92.72706,12.7341],[92.72664,12.73466],[92.72656,12.73498],[92.72658,12.73546],[92.72622,12.7363],[92.72584,12.73648],[92.72562,12.73645],[92.72475,12.73608],[92.7245,12.73602],[92.7242,12.73605]]],[[[92.72609,12.75172],[92.72617,12.75172],[92.72631,12.75194],[92.72629,12.75216],[92.72606,12.75292],[92.72604,12.75303],[92.72604,12.75331],[92.72602,12.75361],[92.72592,12.75379],[92.72559,12.75388],[92.72525,12.75388],[92.72512,12.75378],[92.72502,12.75373],[92.72469,12.75342],[92.72467,12.75319],[92.72468,12.75308],[92.72474,12.75286],[92.72479,12.75276],[92.72504,12.75249],[92.72528,12.7522],[92.72554,12.75198],[92.72576,12.7518],[92.726,12.75172],[92.72609,12.75172]]],[[[92.96851,12.74042],[92.96872,12.74053],[92.96882,12.74058],[92.96882,12.7407],[92.96871,12.74078],[92.96869,12.74083],[92.96867,12.74091],[92.96895,12.74125],[92.96889,12.74139],[92.96842,12.74156],[92.96834,12.74148],[92.96829,12.74111],[92.96819,12.7409],[92.96819,12.7407],[92.96832,12.74049],[92.96838,12.74045],[92.9684,12.7404],[92.96851,12.74042]]],[[[92.96781,12.74297],[92.9676,12.74301],[92.96754,12.7432],[92.96746,12.74327],[92.96726,12.74322],[92.96712,12.74313],[92.96716,12.74301],[92.96723,12.74286],[92.96728,12.74275],[92.96739,12.74268],[92.96741,12.74278],[92.96747,12.74282],[92.96756,12.74284],[92.96776,12.74283],[92.96776,12.74276],[92.96766,12.74269],[92.96756,12.74268],[92.9675,12.7426],[92.96766,12.74249],[92.96772,12.7424],[92.96777,12.74214],[92.96791,12.74216],[92.96803,12.74214],[92.96825,12.74214],[92.96825,12.7421],[92.96821,12.74185],[92.96812,12.7418],[92.96818,12.74178],[92.96833,12.74184],[92.96833,12.7419],[92.96833,12.74199],[92.96845,12.74202],[92.96845,12.74213],[92.96834,12.74221],[92.9683,12.74244],[92.96824,12.74252],[92.96813,12.74252],[92.96807,12.74257],[92.96806,12.74271],[92.96797,12.74274],[92.96781,12.74297]]],[[[92.65476,12.76953],[92.65506,12.76988],[92.65547,12.77077],[92.65582,12.77218],[92.65597,12.77296],[92.65629,12.77403],[92.65609,12.77455],[92.65603,12.77478],[92.6557,12.77487],[92.65479,12.77443],[92.65453,12.77426],[92.65397,12.7734],[92.65365,12.77253],[92.65348,12.77141],[92.65359,12.77063],[92.65374,12.77005],[92.654,12.76962],[92.65435,12.76948],[92.65476,12.76953]]],[[[92.71674,12.77369],[92.71719,12.7739],[92.71751,12.77414],[92.7176,12.77433],[92.71758,12.77452],[92.71679,12.7748],[92.71661,12.77483],[92.71632,12.7748],[92.7161,12.77467],[92.71597,12.7745],[92.71588,12.77427],[92.71594,12.774],[92.71609,12.77383],[92.71635,12.77366],[92.71674,12.77369]]],[[[92.71651,12.77523],[92.71683,12.77539],[92.71708,12.77559],[92.71711,12.77569],[92.71692,12.77608],[92.71689,12.7766],[92.71686,12.77679],[92.71657,12.77692],[92.71574,12.77704],[92.71536,12.77707],[92.71527,12.77704],[92.71477,12.77703],[92.71471,12.77673],[92.71481,12.77613],[92.71506,12.7758],[92.71526,12.77546],[92.71562,12.77522],[92.71607,12.77514],[92.71651,12.77523]]],[[[92.9603,12.75592],[92.96026,12.75559],[92.9604,12.75551],[92.9604,12.75535],[92.96048,12.75526],[92.96059,12.75537],[92.96071,12.75525],[92.96077,12.75529],[92.96074,12.75554],[92.96066,12.75568],[92.9606,12.75589],[92.96047,12.75578],[92.9603,12.75592]]],[[[92.95492,12.75774],[92.95461,12.75768],[92.95444,12.75778],[92.95434,12.75768],[92.95417,12.75767],[92.95407,12.75764],[92.95411,12.75744],[92.95431,12.75744],[92.9546,12.75726],[92.95464,12.75746],[92.95488,12.75716],[92.95504,12.75717],[92.95517,12.75708],[92.95525,12.7573],[92.95549,12.75702],[92.95566,12.75683],[92.9558,12.75672],[92.95598,12.75665],[92.9561,12.75681],[92.95604,12.75711],[92.95604,12.75724],[92.956,12.75736],[92.95585,12.75733],[92.95578,12.75748],[92.95557,12.75745],[92.95552,12.75761],[92.95511,12.7576],[92.95511,12.75767],[92.95498,12.75761],[92.95492,12.75774]]],[[[92.9589,12.75753],[92.95857,12.7575],[92.95846,12.75753],[92.9585,12.75747],[92.95859,12.75721],[92.95855,12.75711],[92.95847,12.75707],[92.95837,12.75709],[92.95851,12.75688],[92.95865,12.75693],[92.95874,12.75673],[92.95879,12.75671],[92.95892,12.75677],[92.95902,12.75677],[92.9591,12.7566],[92.95926,12.7566],[92.95944,12.75638],[92.95963,12.75654],[92.95972,12.75631],[92.95993,12.75642],[92.95981,12.75659],[92.95977,12.75666],[92.95987,12.75681],[92.95977,12.75687],[92.95968,12.75696],[92.9595,12.75697],[92.95944,12.75707],[92.95922,12.75709],[92.95913,12.75721],[92.95898,12.75717],[92.95885,12.75723],[92.95881,12.75732],[92.95888,12.7574],[92.9589,12.75753]]],[[[92.71527,12.7831],[92.71566,12.78313],[92.71585,12.78336],[92.71592,12.78369],[92.71592,12.78386],[92.71572,12.78404],[92.71554,12.78407],[92.71513,12.78384],[92.71494,12.78366],[92.71486,12.78328],[92.71493,12.78311],[92.71527,12.7831]]],[[[92.72086,12.77881],[92.7204,12.78061],[92.72,12.78142],[92.71926,12.78445],[92.71849,12.78596],[92.71689,12.78804],[92.71657,12.78819],[92.71606,12.78783],[92.71568,12.78709],[92.71625,12.78585],[92.71662,12.78292],[92.71604,12.78209],[92.71433,12.78135],[92.71426,12.7804],[92.71391,12.77913],[92.71425,12.7786],[92.7171,12.77859],[92.7177,12.77872],[92.71829,12.77866],[92.71857,12.77843],[92.71878,12.778],[92.71879,12.77744],[92.71863,12.77699],[92.71796,12.77646],[92.7178,12.77574],[92.71777,12.77419],[92.71681,12.77306],[92.71665,12.77254],[92.71672,12.7722],[92.71756,12.77071],[92.71796,12.76959],[92.71915,12.76804],[92.72086,12.76516],[92.72067,12.76495],[92.7211,12.76467],[92.7212,12.76478],[92.72166,12.76393],[92.72276,12.7627],[92.72348,12.76218],[92.724,12.76207],[92.72425,12.76231],[92.72423,12.76281],[92.72353,12.76508],[92.72339,12.76673],[92.72347,12.76742],[92.72276,12.76937],[92.72257,12.77113],[92.72155,12.77349],[92.72162,12.77427],[92.72119,12.7753],[92.72098,12.77639],[92.72106,12.77703],[92.72086,12.77881]]],[[[92.94067,12.76983],[92.94038,12.76975],[92.94023,12.76974],[92.94014,12.76959],[92.93994,12.76959],[92.93988,12.76946],[92.9397,12.76954],[92.93958,12.76944],[92.93931,12.7694],[92.93934,12.76931],[92.93943,12.76918],[92.93929,12.76904],[92.93964,12.7688],[92.9398,12.76875],[92.93987,12.7687],[92.94048,12.76908],[92.94094,12.76932],[92.94104,12.76927],[92.94122,12.76947],[92.94104,12.76958],[92.94097,12.76965],[92.94079,12.76965],[92.94067,12.76983]]],[[[92.71718,12.78972],[92.71735,12.78975],[92.71749,12.78985],[92.71751,12.79018],[92.71724,12.79055],[92.71705,12.79068],[92.71695,12.79073],[92.71661,12.7907],[92.71651,12.79054],[92.71651,12.79039],[92.71652,12.79028],[92.71663,12.79007],[92.71686,12.78984],[92.71713,12.78972],[92.71718,12.78972]]],[[[92.94665,12.77121],[92.94651,12.77101],[92.9463,12.7712],[92.94621,12.77109],[92.94607,12.7712],[92.94601,12.7711],[92.94584,12.77112],[92.94564,12.77109],[92.94552,12.77103],[92.94536,12.77115],[92.94529,12.771],[92.94513,12.77107],[92.94502,12.77095],[92.94486,12.77097],[92.94474,12.77114],[92.94463,12.77093],[92.94453,12.77086],[92.94452,12.77069],[92.9444,12.77068],[92.94428,12.77085],[92.94417,12.77063],[92.94396,12.77071],[92.94381,12.77047],[92.94369,12.77053],[92.94357,12.7703],[92.94346,12.77038],[92.94333,12.77024],[92.94322,12.77024],[92.94308,12.7701],[92.94304,12.76998],[92.94321,12.76997],[92.9432,12.7699],[92.94299,12.76967],[92.94336,12.7697],[92.94402,12.76991],[92.94436,12.77006],[92.94453,12.77021],[92.94465,12.77023],[92.94486,12.77021],[92.9451,12.77027],[92.94524,12.77043],[92.94557,12.77025],[92.94567,12.77041],[92.94575,12.77047],[92.94596,12.77046],[92.94602,12.77055],[92.94609,12.77061],[92.94618,12.77059],[92.94629,12.77044],[92.94659,12.77052],[92.9467,12.77052],[92.94681,12.77077],[92.94702,12.77097],[92.947,12.77102],[92.9468,12.77101],[92.94678,12.77094],[92.94665,12.77121]]],[[[92.71763,12.79449],[92.71751,12.79457],[92.71711,12.79493],[92.71685,12.79524],[92.71659,12.79526],[92.71642,12.79505],[92.71664,12.79447],[92.71685,12.79413],[92.7171,12.7938],[92.71731,12.79361],[92.71738,12.79265],[92.71756,12.79213],[92.71786,12.79157],[92.71824,12.79124],[92.71858,12.79104],[92.71886,12.79109],[92.71899,12.79118],[92.71906,12.79135],[92.71898,12.7916],[92.71884,12.79176],[92.71881,12.79203],[92.71901,12.7924],[92.71903,12.79275],[92.71887,12.79311],[92.7186,12.79398],[92.71814,12.79437],[92.71782,12.79439],[92.71763,12.79449]]],[[[92.72056,12.79516],[92.72073,12.79522],[92.72093,12.79524],[92.7211,12.79524],[92.72144,12.79536],[92.72184,12.79559],[92.72235,12.79604],[92.72251,12.79634],[92.72251,12.79657],[92.72234,12.79677],[92.72213,12.79674],[92.72175,12.79653],[92.72082,12.79618],[92.72053,12.79602],[92.72034,12.7959],[92.7202,12.79571],[92.7202,12.79544],[92.72028,12.79528],[92.72035,12.7952],[92.72048,12.79513],[92.72056,12.79516]]],[[[92.71461,12.79487],[92.71485,12.79498],[92.71508,12.7952],[92.71518,12.79547],[92.7152,12.79571],[92.71519,12.79595],[92.71532,12.79609],[92.71542,12.79614],[92.71542,12.79638],[92.71537,12.7966],[92.71536,12.79686],[92.7154,12.79707],[92.71535,12.79738],[92.7152,12.7975],[92.71506,12.79755],[92.71491,12.79752],[92.71461,12.79727],[92.71441,12.7969],[92.71426,12.7965],[92.71424,12.79617],[92.71418,12.79557],[92.71419,12.79536],[92.71427,12.79489],[92.7144,12.79483],[92.71461,12.79487]]],[[[92.71576,12.79833],[92.71599,12.79838],[92.71633,12.79868],[92.7164,12.79894],[92.71615,12.79988],[92.71599,12.80071],[92.71564,12.80108],[92.71544,12.80116],[92.71533,12.80119],[92.71521,12.80116],[92.71489,12.8007],[92.71481,12.80027],[92.71479,12.79965],[92.71481,12.79919],[92.71492,12.79882],[92.71497,12.79873],[92.71524,12.79848],[92.71564,12.79831],[92.71576,12.79833]]],[[[92.71624,12.80194],[92.71631,12.80281],[92.71637,12.80326],[92.71643,12.80359],[92.71657,12.80393],[92.71659,12.80413],[92.71658,12.80424],[92.7165,12.80445],[92.71642,12.80459],[92.71628,12.8047],[92.71619,12.80476],[92.71596,12.8048],[92.71583,12.80474],[92.7154,12.80421],[92.71516,12.80372],[92.71507,12.80307],[92.71528,12.80242],[92.7155,12.80216],[92.71558,12.80208],[92.7159,12.80191],[92.71614,12.80188],[92.71624,12.80194]]],[[[92.70751,12.83005],[92.70631,12.82882],[92.70621,12.8248],[92.70548,12.8236],[92.70594,12.82283],[92.70573,12.82078],[92.70642,12.82069],[92.70547,12.81993],[92.70589,12.81893],[92.70518,12.81862],[92.70577,12.81837],[92.7034,12.81548],[92.70207,12.8158],[92.7003,12.81382],[92.7009,12.81093],[92.69946,12.81052],[92.70002,12.80932],[92.69876,12.80805],[92.69915,12.80541],[92.69866,12.8051],[92.6986,12.80601],[92.69722,12.80527],[92.6987,12.80336],[92.69841,12.80222],[92.69746,12.80106],[92.69648,12.80215],[92.69407,12.80095],[92.6937,12.79764],[92.69472,12.7936],[92.69705,12.79087],[92.69659,12.79027],[92.69751,12.78956],[92.69835,12.78541],[92.70052,12.78457],[92.70414,12.78115],[92.70788,12.77461],[92.70848,12.77208],[92.70767,12.76718],[92.70958,12.76266],[92.70982,12.75711],[92.71063,12.75431],[92.71078,12.74613],[92.71186,12.74216],[92.71214,12.73766],[92.7119,12.73646],[92.71136,12.73692],[92.71102,12.73525],[92.71007,12.73468],[92.70962,12.7329],[92.70814,12.73313],[92.70613,12.73093],[92.7064,12.73042],[92.7077,12.73095],[92.70809,12.73056],[92.70887,12.72792],[92.70914,12.72918],[92.71052,12.72879],[92.70959,12.72563],[92.71016,12.72517],[92.70942,12.72384],[92.71104,12.72254],[92.71104,12.7207],[92.71192,12.72047],[92.71504,12.72148],[92.71656,12.71917],[92.71721,12.71953],[92.71839,12.72253],[92.71872,12.72617],[92.71809,12.72947],[92.71571,12.73051],[92.71719,12.7312],[92.71704,12.73192],[92.71852,12.73204],[92.71676,12.73346],[92.71607,12.73495],[92.71689,12.73624],[92.71637,12.73691],[92.71728,12.73786],[92.71706,12.73954],[92.71764,12.74076],[92.71723,12.74378],[92.71807,12.74614],[92.71837,12.75255],[92.71731,12.75634],[92.71787,12.75623],[92.72012,12.75077],[92.72065,12.74542],[92.72194,12.74266],[92.72295,12.74304],[92.72349,12.74586],[92.72459,12.74697],[92.7248,12.74835],[92.72388,12.75141],[92.72377,12.75472],[92.72177,12.76015],[92.71648,12.76953],[92.71194,12.77496],[92.71125,12.77719],[92.7111,12.77901],[92.71296,12.78823],[92.71158,12.79743],[92.71153,12.81818],[92.71401,12.82821],[92.71316,12.82943],[92.71128,12.82955],[92.70949,12.82861],[92.70851,12.8299],[92.70751,12.83005]]],[[[92.72437,12.83218],[92.72486,12.83259],[92.72586,12.83364],[92.72603,12.83407],[92.72613,12.83475],[92.72637,12.83533],[92.72646,12.83565],[92.72659,12.83591],[92.72678,12.83684],[92.72677,12.83812],[92.72669,12.83869],[92.72651,12.83884],[92.72616,12.83873],[92.72572,12.83832],[92.72528,12.83758],[92.72513,12.83711],[92.72504,12.83651],[92.7248,12.83615],[92.72458,12.83594],[92.72425,12.8358],[92.72407,12.83559],[92.72402,12.83525],[92.72406,12.83473],[92.7239,12.83442],[92.72382,12.83409],[92.72376,12.83255],[92.72379,12.8323],[92.72387,12.83211],[92.72402,12.832],[92.72437,12.83218]]],[[[92.73127,12.85681],[92.731,12.85704],[92.73067,12.85704],[92.73045,12.85691],[92.73039,12.85678],[92.72997,12.85672],[92.72974,12.85686],[92.72934,12.85681],[92.72873,12.85646],[92.7285,12.85611],[92.72833,12.85578],[92.72838,12.85548],[92.72857,12.85504],[92.72879,12.85478],[92.72917,12.85475],[92.72947,12.85482],[92.73005,12.85531],[92.73002,12.85539],[92.73009,12.85538],[92.73023,12.85543],[92.73073,12.85588],[92.73099,12.85594],[92.7311,12.85604],[92.73114,12.85621],[92.73126,12.85632],[92.73128,12.85655],[92.73127,12.85681]]],[[[92.76318,12.85137],[92.76296,12.85194],[92.76127,12.85433],[92.76109,12.85492],[92.76098,12.85678],[92.76062,12.85781],[92.76031,12.85948],[92.75998,12.85978],[92.75944,12.85956],[92.75838,12.85845],[92.75818,12.85794],[92.75823,12.85674],[92.75808,12.85616],[92.75831,12.85563],[92.75806,12.85433],[92.75761,12.85345],[92.75756,12.85283],[92.75778,12.85222],[92.75753,12.85121],[92.75764,12.85091],[92.75837,12.85026],[92.75849,12.84985],[92.75843,12.84937],[92.75796,12.84881],[92.7571,12.84698],[92.75689,12.84564],[92.75724,12.84512],[92.75824,12.8443],[92.75891,12.84399],[92.76006,12.84385],[92.76149,12.84277],[92.76238,12.8413],[92.76254,12.8408],[92.76247,12.83998],[92.76364,12.8388],[92.76445,12.83747],[92.76495,12.83634],[92.76513,12.83611],[92.76539,12.83607],[92.76567,12.83637],[92.76582,12.83728],[92.76538,12.84084],[92.7655,12.84545],[92.76506,12.84756],[92.76563,12.84942],[92.76535,12.84996],[92.76414,12.85121],[92.76318,12.85137]]],[[[92.72627,12.86541],[92.72609,12.86575],[92.72525,12.86592],[92.72329,12.86413],[92.72282,12.86403],[92.72196,12.86435],[92.72137,12.86504],[92.72101,12.86614],[92.72067,12.86616],[92.72044,12.86527],[92.71989,12.86532],[92.71938,12.86503],[92.71936,12.8638],[92.71858,12.86338],[92.71779,12.86236],[92.71807,12.86224],[92.71852,12.8624],[92.7188,12.86217],[92.71941,12.86234],[92.71922,12.86125],[92.7195,12.86033],[92.72184,12.86032],[92.72314,12.86001],[92.72327,12.85965],[92.72158,12.86008],[92.71939,12.85994],[92.71896,12.85943],[92.71903,12.8588],[92.71883,12.85878],[92.71827,12.8594],[92.71694,12.85964],[92.71662,12.85925],[92.7166,12.85828],[92.71539,12.85614],[92.71542,12.85552],[92.71485,12.85534],[92.71399,12.85547],[92.71378,12.85571],[92.71354,12.85557],[92.71352,12.85521],[92.71426,12.85415],[92.71509,12.85443],[92.71524,12.85329],[92.71461,12.85222],[92.71328,12.85134],[92.71297,12.85059],[92.71233,12.84997],[92.71187,12.84872],[92.71143,12.84831],[92.71145,12.84503],[92.71206,12.84327],[92.71174,12.84307],[92.71152,12.84388],[92.71026,12.84436],[92.70809,12.83998],[92.70703,12.8372],[92.70727,12.83601],[92.70863,12.83349],[92.70953,12.83344],[92.71113,12.83438],[92.71143,12.83431],[92.71122,12.83371],[92.71138,12.83301],[92.71109,12.83236],[92.71131,12.83208],[92.71221,12.83201],[92.7138,12.83269],[92.71556,12.83311],[92.71619,12.83362],[92.71793,12.83581],[92.71798,12.83609],[92.71771,12.83645],[92.71824,12.83711],[92.71889,12.83905],[92.71936,12.83984],[92.71997,12.84032],[92.72004,12.84117],[92.71975,12.84153],[92.72042,12.84221],[92.72012,12.84277],[92.72064,12.84339],[92.72075,12.84407],[92.72147,12.84518],[92.72196,12.84677],[92.72277,12.84747],[92.7229,12.84813],[92.72367,12.84916],[92.72374,12.84997],[92.72486,12.85196],[92.72427,12.85344],[92.72602,12.85601],[92.72611,12.85762],[92.72681,12.8587],[92.72792,12.85965],[92.72792,12.8602],[92.72904,12.86175],[92.72869,12.86297],[92.72869,12.86384],[92.72824,12.86378],[92.72717,12.86522],[92.72644,12.8652],[92.72627,12.86541]]],[[[92.77995,12.85756],[92.78,12.85984],[92.7797,12.86167],[92.77863,12.86319],[92.77781,12.86378],[92.77675,12.86395],[92.77532,12.86255],[92.7733,12.86104],[92.77301,12.86014],[92.77318,12.85855],[92.77356,12.858],[92.7741,12.85796],[92.77359,12.85778],[92.7732,12.85803],[92.77282,12.8589],[92.77276,12.86213],[92.77003,12.86353],[92.76803,12.86208],[92.76994,12.85853],[92.76862,12.85529],[92.7684,12.85393],[92.76791,12.85302],[92.76789,12.85211],[92.76838,12.84971],[92.76985,12.8467],[92.77162,12.84454],[92.77341,12.84392],[92.77404,12.8431],[92.77453,12.84179],[92.77448,12.83857],[92.77302,12.83519],[92.77278,12.83324],[92.77397,12.83047],[92.77453,12.82972],[92.77575,12.82879],[92.77906,12.82712],[92.78023,12.82561],[92.78364,12.82465],[92.78421,12.82481],[92.78444,12.82514],[92.78438,12.82983],[92.78507,12.83257],[92.78243,12.83616],[92.78209,12.83742],[92.78079,12.84007],[92.78084,12.84144],[92.78038,12.84366],[92.78058,12.84499],[92.78042,12.84744],[92.77979,12.85122],[92.77995,12.85756]]],[[[92.76529,12.86988],[92.76547,12.87051],[92.76543,12.87239],[92.76525,12.87284],[92.76503,12.87296],[92.76486,12.87291],[92.764,12.87227],[92.76346,12.87127],[92.76322,12.87036],[92.76296,12.87004],[92.76274,12.86995],[92.76194,12.87025],[92.7614,12.86999],[92.76091,12.86962],[92.7604,12.86891],[92.76025,12.86834],[92.76033,12.86739],[92.76159,12.86643],[92.76182,12.86596],[92.76196,12.86484],[92.76162,12.8642],[92.7619,12.8635],[92.76203,12.86223],[92.7617,12.85953],[92.76193,12.85885],[92.76202,12.85726],[92.7626,12.85554],[92.7628,12.85547],[92.76329,12.85556],[92.76534,12.85527],[92.7658,12.8566],[92.76582,12.858],[92.76564,12.8616],[92.76435,12.86327],[92.76408,12.86387],[92.76447,12.86549],[92.76445,12.86639],[92.76422,12.86705],[92.76428,12.86748],[92.76414,12.86848],[92.76446,12.86901],[92.76529,12.86988]]],[[[92.75736,12.87874],[92.75721,12.8789],[92.75689,12.87911],[92.75671,12.87918],[92.75663,12.87919],[92.75647,12.87906],[92.75638,12.87889],[92.75628,12.87884],[92.75623,12.87879],[92.75613,12.87887],[92.75592,12.87882],[92.75589,12.87862],[92.75602,12.87805],[92.75607,12.87762],[92.75614,12.87739],[92.7561,12.87718],[92.75594,12.877],[92.75594,12.87675],[92.75585,12.87651],[92.75586,12.87633],[92.75595,12.8762],[92.75618,12.87611],[92.75639,12.87606],[92.7565,12.8761],[92.75676,12.87625],[92.75686,12.87617],[92.75726,12.87597],[92.75743,12.87595],[92.75771,12.87598],[92.7581,12.87626],[92.75836,12.8766],[92.7586,12.8767],[92.75885,12.87686],[92.759,12.877],[92.75918,12.87731],[92.75968,12.87787],[92.75968,12.878],[92.75965,12.87808],[92.75953,12.87817],[92.75938,12.87822],[92.75925,12.8782],[92.75907,12.87809],[92.75864,12.87795],[92.75837,12.87797],[92.75811,12.8781],[92.75779,12.87831],[92.75756,12.87851],[92.75736,12.87874]]],[[[92.83103,12.88532],[92.83109,12.88532],[92.83116,12.88535],[92.83119,12.88543],[92.83114,12.8856],[92.83103,12.88573],[92.83089,12.88578],[92.83065,12.88579],[92.83055,12.88577],[92.83047,12.88572],[92.83046,12.88568],[92.83048,12.88559],[92.83057,12.88548],[92.83074,12.88537],[92.83086,12.88534],[92.83103,12.88532]]],[[[92.83181,12.88526],[92.83201,12.88546],[92.83217,12.88567],[92.83197,12.88581],[92.83142,12.88571],[92.83127,12.88555],[92.83127,12.88534],[92.83141,12.88521],[92.83181,12.88526]]],[[[92.83393,12.88642],[92.83408,12.88643],[92.83424,12.88654],[92.83456,12.88669],[92.83475,12.88681],[92.83497,12.88696],[92.83531,12.88736],[92.83547,12.88754],[92.83543,12.88767],[92.83532,12.88775],[92.83524,12.88778],[92.83501,12.88773],[92.83488,12.88766],[92.83437,12.88719],[92.83416,12.88708],[92.83393,12.88692],[92.83369,12.88666],[92.83369,12.8866],[92.8337,12.88649],[92.83381,12.88642],[92.83393,12.88642]]],[[[92.78828,12.89323],[92.78782,12.89332],[92.78659,12.8933],[92.78611,12.89345],[92.7856,12.89343],[92.78528,12.89332],[92.78455,12.89336],[92.78359,12.89327],[92.78295,12.89301],[92.78161,12.89226],[92.78145,12.89207],[92.78114,12.89064],[92.78123,12.88937],[92.7815,12.88847],[92.78218,12.88732],[92.7822,12.88715],[92.78215,12.88701],[92.78163,12.8865],[92.7811,12.88637],[92.78089,12.88623],[92.78078,12.88601],[92.78078,12.8858],[92.78107,12.88503],[92.7817,12.88392],[92.78205,12.88358],[92.78322,12.88282],[92.78396,12.88249],[92.78445,12.88239],[92.78594,12.88311],[92.78704,12.88312],[92.78788,12.88299],[92.78841,12.88339],[92.78948,12.88521],[92.78952,12.88653],[92.78942,12.88739],[92.78991,12.88935],[92.79024,12.89019],[92.79078,12.89074],[92.79114,12.89094],[92.79138,12.89118],[92.79142,12.89136],[92.79135,12.89147],[92.79094,12.89154],[92.79054,12.89182],[92.78955,12.89269],[92.78828,12.89323]]],[[[92.89176,12.89757],[92.89212,12.89765],[92.89247,12.89776],[92.89263,12.89804],[92.89272,12.8983],[92.89273,12.89886],[92.8927,12.89925],[92.89259,12.89952],[92.89239,12.89966],[92.89192,12.89977],[92.89162,12.89979],[92.89121,12.89977],[92.89102,12.89966],[92.89091,12.89954],[92.89079,12.89927],[92.89077,12.8992],[92.89078,12.89851],[92.89097,12.89785],[92.89118,12.89768],[92.89141,12.89757],[92.89176,12.89757]]],[[[92.7543,12.91328],[92.75428,12.91349],[92.75465,12.91412],[92.75446,12.91437],[92.75422,12.91432],[92.75382,12.91387],[92.75378,12.91331],[92.7533,12.9137],[92.75317,12.91365],[92.75307,12.91328],[92.7533,12.91231],[92.75378,12.91141],[92.75336,12.91096],[92.75326,12.91024],[92.75338,12.90987],[92.75322,12.90956],[92.75338,12.90892],[92.75299,12.90806],[92.75307,12.9075],[92.75287,12.90609],[92.7533,12.90438],[92.75289,12.90191],[92.75244,12.901],[92.75276,12.90075],[92.75291,12.90027],[92.75315,12.90027],[92.75353,12.90099],[92.75407,12.90151],[92.75466,12.8999],[92.75444,12.89822],[92.75286,12.89639],[92.75277,12.89599],[92.75281,12.89524],[92.75324,12.89424],[92.75326,12.89358],[92.75219,12.89232],[92.7521,12.89243],[92.75239,12.89326],[92.75237,12.89385],[92.75155,12.89434],[92.75117,12.89588],[92.75069,12.89658],[92.74955,12.89724],[92.74907,12.89714],[92.74842,12.89652],[92.74805,12.8946],[92.74836,12.89261],[92.74874,12.89126],[92.74934,12.89079],[92.75,12.89078],[92.75035,12.89048],[92.7506,12.89091],[92.75137,12.89104],[92.75214,12.89205],[92.75225,12.89],[92.75238,12.88972],[92.75267,12.88959],[92.75329,12.88973],[92.75384,12.89009],[92.75546,12.89264],[92.75586,12.89482],[92.75584,12.89564],[92.75623,12.89722],[92.7563,12.9008],[92.75699,12.90639],[92.75673,12.90737],[92.75685,12.90824],[92.75665,12.90857],[92.75544,12.90948],[92.75545,12.91047],[92.75535,12.91067],[92.75488,12.91067],[92.75475,12.91154],[92.75447,12.91212],[92.75452,12.91253],[92.75489,12.91325],[92.7543,12.91328]]],[[[92.8795,12.90576],[92.87943,12.90581],[92.8793,12.9058],[92.87921,12.90575],[92.87926,12.90547],[92.87939,12.90496],[92.87941,12.90441],[92.87936,12.90402],[92.87918,12.90371],[92.87882,12.90289],[92.8786,12.90256],[92.87854,12.90238],[92.87855,12.90229],[92.87873,12.90222],[92.87892,12.90224],[92.87914,12.90233],[92.87925,12.90249],[92.87942,12.90261],[92.87954,12.90273],[92.87967,12.90292],[92.87981,12.90298],[92.88004,12.90302],[92.88021,12.90315],[92.88028,12.90335],[92.88044,12.90358],[92.88039,12.90367],[92.88041,12.90376],[92.88047,12.90382],[92.8804,12.90387],[92.88036,12.90398],[92.88033,12.9043],[92.88036,12.90446],[92.88025,12.90461],[92.88016,12.90483],[92.88008,12.90492],[92.88006,12.90503],[92.88008,12.90518],[92.88005,12.90528],[92.87996,12.9054],[92.87993,12.90551],[92.87986,12.90563],[92.87977,12.90572],[92.87961,12.90572],[92.8795,12.90576]]],[[[92.79313,12.91235],[92.79204,12.91443],[92.79207,12.91467],[92.79244,12.91482],[92.79213,12.91535],[92.79213,12.91644],[92.79187,12.91692],[92.791,12.91727],[92.79032,12.91712],[92.78893,12.91605],[92.7886,12.91543],[92.78922,12.91381],[92.78907,12.91273],[92.78888,12.91256],[92.78763,12.91273],[92.78687,12.91234],[92.78632,12.91254],[92.78517,12.91194],[92.7819,12.9115],[92.78053,12.91066],[92.77991,12.91052],[92.77678,12.91163],[92.77546,12.91229],[92.77376,12.91198],[92.77343,12.91163],[92.77361,12.91062],[92.77346,12.91003],[92.77436,12.90892],[92.77452,12.90819],[92.77354,12.90661],[92.77351,12.90628],[92.7747,12.90446],[92.7753,12.90435],[92.77586,12.90374],[92.77971,12.902],[92.78205,12.90254],[92.78504,12.90513],[92.78626,12.90593],[92.78706,12.90596],[92.78759,12.90567],[92.78884,12.9044],[92.78907,12.90324],[92.78874,12.90145],[92.78789,12.90104],[92.78712,12.89979],[92.7862,12.89878],[92.78624,12.89851],[92.78651,12.89824],[92.7878,12.89797],[92.79029,12.89767],[92.7918,12.89671],[92.79115,12.89684],[92.79012,12.8975],[92.78873,12.89749],[92.78487,12.89834],[92.78428,12.89787],[92.78349,12.89795],[92.78205,12.89726],[92.78182,12.89668],[92.78194,12.89555],[92.78381,12.89463],[92.78557,12.89421],[92.78797,12.89408],[92.79199,12.89223],[92.79651,12.89427],[92.79749,12.89448],[92.79842,12.89626],[92.79896,12.89682],[92.80045,12.89773],[92.79943,12.89803],[92.79911,12.89833],[92.79814,12.89938],[92.7968,12.90141],[92.79597,12.90585],[92.79587,12.90917],[92.79463,12.91054],[92.79361,12.91048],[92.79399,12.91102],[92.79313,12.91235]]],[[[92.87953,12.90741],[92.87961,12.90749],[92.87949,12.90852],[92.87931,12.90962],[92.8792,12.90995],[92.87927,12.91011],[92.87922,12.91042],[92.87929,12.9106],[92.8793,12.91079],[92.87926,12.91087],[92.87936,12.91113],[92.87939,12.91138],[92.87945,12.91157],[92.87946,12.91205],[92.87941,12.91228],[92.8791,12.91277],[92.8788,12.91292],[92.87866,12.91292],[92.87849,12.91284],[92.87843,12.91272],[92.8784,12.91254],[92.87842,12.91219],[92.87826,12.91158],[92.87809,12.91123],[92.87786,12.911],[92.87762,12.91083],[92.87742,12.91075],[92.87739,12.91035],[92.87758,12.91016],[92.87782,12.91],[92.87815,12.90993],[92.8784,12.90982],[92.87861,12.90969],[92.87872,12.90953],[92.87882,12.90926],[92.8789,12.90872],[92.87888,12.90815],[92.87903,12.90774],[92.87929,12.90744],[92.87942,12.90738],[92.87953,12.90741]]],[[[92.86439,12.91266],[92.86448,12.91281],[92.86449,12.91304],[92.86446,12.91325],[92.86437,12.91361],[92.86417,12.91413],[92.86396,12.91443],[92.86373,12.91466],[92.86334,12.91491],[92.86313,12.91494],[92.86295,12.91494],[92.86277,12.91485],[92.86262,12.91475],[92.86241,12.91449],[92.86238,12.91438],[92.8624,12.91397],[92.86256,12.91382],[92.86278,12.9137],[92.86338,12.91328],[92.86401,12.91268],[92.8642,12.91259],[92.86439,12.91266]]],[[[92.67328,12.93292],[92.67348,12.93303],[92.67351,12.93312],[92.67354,12.93325],[92.67354,12.93333],[92.67344,12.93339],[92.67324,12.93341],[92.67305,12.9333],[92.67296,12.93319],[92.67292,12.93309],[92.67292,12.93302],[92.67295,12.93293],[92.67302,12.9329],[92.67328,12.93292]]],[[[92.67226,12.9328],[92.67232,12.93286],[92.67252,12.93311],[92.67255,12.93323],[92.67257,12.93332],[92.67255,12.93339],[92.67252,12.9334],[92.6725,12.93342],[92.6725,12.93346],[92.67252,12.9335],[92.67256,12.93352],[92.6726,12.93355],[92.67249,12.93367],[92.67233,12.93365],[92.6722,12.93355],[92.67214,12.93345],[92.67209,12.93335],[92.67206,12.93322],[92.67205,12.9331],[92.67202,12.93292],[92.67204,12.93284],[92.67206,12.93279],[92.67215,12.93277],[92.67226,12.9328]]],[[[92.76606,12.92367],[92.76588,12.9245],[92.76563,12.92507],[92.76542,12.92573],[92.7653,12.92602],[92.76518,12.92609],[92.76506,12.92601],[92.76468,12.92532],[92.76457,12.9247],[92.76438,12.9244],[92.76397,12.92401],[92.76383,12.92376],[92.76365,12.92371],[92.76336,12.92378],[92.76259,12.92343],[92.76251,12.92312],[92.76208,12.92288],[92.76201,12.92254],[92.76168,12.92244],[92.76133,12.92225],[92.76124,12.92212],[92.76125,12.92185],[92.76153,12.92126],[92.76154,12.92054],[92.76191,12.91963],[92.76206,12.91956],[92.76229,12.9196],[92.76252,12.9194],[92.7629,12.91869],[92.76332,12.91821],[92.76339,12.91805],[92.76385,12.91774],[92.76408,12.91789],[92.76448,12.91835],[92.76508,12.91917],[92.76521,12.91961],[92.76603,12.92044],[92.76636,12.92089],[92.76648,12.92148],[92.7665,12.92242],[92.76606,12.92367]]],[[[92.77398,12.93222],[92.77335,12.93234],[92.77217,12.93219],[92.77158,12.93245],[92.77116,12.93255],[92.77075,12.93252],[92.77049,12.93219],[92.77037,12.93181],[92.77008,12.93158],[92.77029,12.9311],[92.77017,12.92994],[92.76999,12.92969],[92.76962,12.92961],[92.76932,12.92892],[92.76883,12.92876],[92.76872,12.9286],[92.76882,12.92823],[92.76876,12.92782],[92.76891,12.92771],[92.76944,12.92768],[92.76973,12.92757],[92.77008,12.92714],[92.77036,12.92625],[92.77084,12.92584],[92.77033,12.92578],[92.77006,12.92543],[92.76986,12.92533],[92.76911,12.92529],[92.76869,12.92497],[92.76864,12.92447],[92.76888,12.92371],[92.76874,12.92278],[92.76931,12.92162],[92.77012,12.91954],[92.77093,12.91861],[92.77123,12.91805],[92.77153,12.91774],[92.77183,12.91759],[92.77223,12.91761],[92.77226,12.91861],[92.77241,12.91898],[92.77288,12.91966],[92.77307,12.92019],[92.77361,12.92079],[92.77381,12.9212],[92.77403,12.92242],[92.774,12.92353],[92.77499,12.92594],[92.77515,12.9269],[92.77521,12.92814],[92.77493,12.92974],[92.77496,12.93045],[92.77398,12.93222]]],[[[92.93475,12.91992],[92.93472,12.91997],[92.93431,12.91976],[92.93417,12.91996],[92.93391,12.91976],[92.93372,12.91992],[92.93353,12.91955],[92.93333,12.91968],[92.93324,12.91949],[92.93304,12.91956],[92.93301,12.91927],[92.9329,12.91921],[92.93278,12.91926],[92.93275,12.91904],[92.93248,12.91913],[92.9323,12.91912],[92.93214,12.91936],[92.93179,12.91951],[92.93099,12.91923],[92.93053,12.91886],[92.93019,12.9183],[92.93012,12.91782],[92.93022,12.91744],[92.93001,12.91746],[92.92993,12.91767],[92.92977,12.91748],[92.92952,12.91749],[92.92952,12.91731],[92.92928,12.91724],[92.92925,12.91709],[92.92906,12.91695],[92.9293,12.91676],[92.9294,12.91684],[92.92956,12.91672],[92.92966,12.91677],[92.92982,12.91666],[92.92995,12.91679],[92.9302,12.91689],[92.93015,12.91703],[92.93023,12.91722],[92.93108,12.91653],[92.93222,12.91586],[92.93262,12.91524],[92.93257,12.91452],[92.93233,12.91446],[92.93225,12.91434],[92.93235,12.91414],[92.93219,12.91395],[92.93221,12.9137],[92.93199,12.91341],[92.93197,12.91319],[92.93226,12.91302],[92.93228,12.91278],[92.9325,12.91262],[92.93255,12.91229],[92.93268,12.91219],[92.9327,12.91196],[92.93284,12.91187],[92.93291,12.91172],[92.9331,12.91175],[92.93323,12.91157],[92.93339,12.91157],[92.93347,12.91147],[92.93384,12.91177],[92.93407,12.91165],[92.93436,12.91183],[92.93454,12.91181],[92.93468,12.912],[92.93483,12.91199],[92.93495,12.91206],[92.935,12.9119],[92.93559,12.91233],[92.93562,12.91261],[92.93574,12.91271],[92.93576,12.91292],[92.93601,12.91295],[92.936,12.91321],[92.93625,12.91327],[92.9364,12.91361],[92.93664,12.91367],[92.93666,12.91393],[92.93692,12.91411],[92.93687,12.9144],[92.93703,12.91457],[92.93726,12.91454],[92.93739,12.91479],[92.93723,12.91496],[92.93731,12.91515],[92.93724,12.91547],[92.93732,12.91564],[92.93727,12.91593],[92.9374,12.91611],[92.93738,12.91636],[92.9375,12.91655],[92.93742,12.91675],[92.93759,12.91701],[92.93754,12.91713],[92.93758,12.91729],[92.93779,12.91737],[92.93767,12.91766],[92.93772,12.91791],[92.93755,12.91809],[92.93715,12.91809],[92.93702,12.91843],[92.93676,12.91863],[92.9365,12.91871],[92.93643,12.9189],[92.93623,12.919],[92.93635,12.91915],[92.93608,12.91925],[92.93602,12.91947],[92.93579,12.91943],[92.93546,12.91969],[92.93531,12.91953],[92.93506,12.91976],[92.93488,12.91971],[92.93475,12.91992]]],[[[92.76161,12.93645],[92.76148,12.93658],[92.76125,12.93664],[92.76112,12.93627],[92.7608,12.93656],[92.76063,12.93662],[92.76029,12.93657],[92.76016,12.93651],[92.75968,12.93593],[92.75913,12.9354],[92.75908,12.93516],[92.75915,12.93478],[92.75987,12.93398],[92.76028,12.93335],[92.76021,12.9331],[92.75979,12.93265],[92.75975,12.93252],[92.76016,12.93189],[92.76021,12.93167],[92.76009,12.93159],[92.75991,12.93159],[92.75939,12.93189],[92.75925,12.9319],[92.75921,12.93156],[92.75931,12.93116],[92.7598,12.93007],[92.76004,12.92831],[92.76035,12.92752],[92.76076,12.92686],[92.76108,12.9265],[92.76109,12.92588],[92.76138,12.92579],[92.76162,12.92608],[92.76169,12.92632],[92.76186,12.92638],[92.76227,12.92599],[92.76211,12.92565],[92.76229,12.92551],[92.76248,12.92548],[92.76333,12.9258],[92.76377,12.92625],[92.76393,12.92694],[92.76446,12.92818],[92.76536,12.92813],[92.76561,12.92804],[92.76574,12.92821],[92.76558,12.92962],[92.76554,12.93067],[92.76535,12.93178],[92.76508,12.93283],[92.76409,12.93498],[92.76399,12.93513],[92.76375,12.93516],[92.76369,12.93496],[92.76378,12.93465],[92.7637,12.93453],[92.76301,12.93474],[92.76278,12.93493],[92.76248,12.93585],[92.76232,12.93589],[92.76203,12.93562],[92.76161,12.93645]]],[[[92.89749,12.92681],[92.89609,12.92617],[92.89449,12.91856],[92.89241,12.91566],[92.8963,12.91001],[92.89627,12.90496],[92.90036,12.90388],[92.90011,12.90284],[92.89618,12.90426],[92.8952,12.89796],[92.89108,12.89521],[92.88527,12.89341],[92.8776,12.89522],[92.87131,12.89237],[92.8702,12.88903],[92.87442,12.88547],[92.87432,12.88234],[92.87308,12.88082],[92.86539,12.88062],[92.86031,12.87807],[92.86249,12.87828],[92.8617,12.87144],[92.86461,12.86882],[92.8619,12.86859],[92.86243,12.86359],[92.86166,12.86858],[92.86444,12.86854],[92.86151,12.87117],[92.8622,12.87825],[92.85475,12.87757],[92.85285,12.87298],[92.84976,12.87314],[92.84717,12.86918],[92.85189,12.86634],[92.84887,12.86289],[92.84547,12.86199],[92.85078,12.85376],[92.84892,12.8512],[92.85007,12.845],[92.84822,12.84487],[92.84778,12.84742],[92.84604,12.84569],[92.84186,12.84619],[92.83823,12.84417],[92.84192,12.83962],[92.84053,12.83646],[92.83777,12.83531],[92.83705,12.83668],[92.83541,12.83473],[92.8318,12.8364],[92.83096,12.83467],[92.83346,12.82862],[92.83013,12.8285],[92.83044,12.82978],[92.82757,12.832],[92.82618,12.83089],[92.82728,12.82662],[92.82538,12.82559],[92.82682,12.82427],[92.82366,12.82321],[92.82902,12.81923],[92.82944,12.81721],[92.82724,12.81615],[92.82697,12.81397],[92.82841,12.81006],[92.8267,12.81403],[92.82886,12.81889],[92.82344,12.8231],[92.82658,12.8244],[92.82513,12.82568],[92.82702,12.82666],[92.82594,12.83099],[92.82765,12.83223],[92.83309,12.82881],[92.8307,12.83469],[92.83167,12.83689],[92.8355,12.83503],[92.83675,12.837],[92.83792,12.83565],[92.84074,12.83732],[92.84154,12.84063],[92.83922,12.84135],[92.83979,12.84254],[92.83618,12.84512],[92.83625,12.84711],[92.83819,12.84445],[92.84138,12.84638],[92.84554,12.84596],[92.8475,12.84773],[92.84956,12.8451],[92.84871,12.8517],[92.85034,12.85387],[92.84705,12.857],[92.84506,12.86222],[92.85108,12.86632],[92.84814,12.86707],[92.84671,12.86933],[92.84971,12.87399],[92.85268,12.87354],[92.85388,12.87711],[92.84451,12.87483],[92.84256,12.8685],[92.83838,12.86418],[92.83974,12.86139],[92.83807,12.86408],[92.83882,12.86571],[92.83635,12.86586],[92.84046,12.8659],[92.83965,12.87128],[92.83845,12.86911],[92.83886,12.87152],[92.84069,12.86982],[92.83989,12.86812],[92.84145,12.86805],[92.8444,12.87513],[92.8477,12.87607],[92.84227,12.87522],[92.8396,12.87668],[92.84207,12.88588],[92.84196,12.89079],[92.84069,12.89161],[92.83413,12.88568],[92.82975,12.88462],[92.82627,12.8874],[92.82285,12.89594],[92.80884,12.89749],[92.8067,12.88843],[92.80608,12.88932],[92.8078,12.89005],[92.80694,12.89348],[92.80844,12.89309],[92.80804,12.89719],[92.80208,12.89709],[92.79079,12.88994],[92.79136,12.88416],[92.79619,12.88446],[92.79679,12.88061],[92.79563,12.88425],[92.79202,12.88061],[92.79309,12.87687],[92.79186,12.87547],[92.79549,12.87],[92.79189,12.86966],[92.79204,12.86463],[92.79656,12.86507],[92.80026,12.86278],[92.8002,12.86077],[92.8044,12.86107],[92.80017,12.86057],[92.80022,12.86255],[92.79665,12.86483],[92.79276,12.86368],[92.7951,12.86281],[92.79559,12.86045],[92.79918,12.8593],[92.79794,12.85758],[92.80022,12.85699],[92.79993,12.85422],[92.80184,12.85171],[92.79952,12.85043],[92.80041,12.84846],[92.79938,12.85045],[92.80163,12.85168],[92.79966,12.85418],[92.80002,12.85685],[92.79778,12.85709],[92.79877,12.85946],[92.79541,12.8602],[92.79418,12.86286],[92.7884,12.86149],[92.78858,12.85577],[92.79035,12.85581],[92.78972,12.84985],[92.79157,12.85041],[92.79064,12.84892],[92.79175,12.84921],[92.79301,12.84451],[92.79171,12.849],[92.79036,12.84895],[92.79136,12.85028],[92.78955,12.8497],[92.79007,12.85604],[92.78814,12.85563],[92.78725,12.86124],[92.7832,12.86189],[92.7818,12.85998],[92.78117,12.84117],[92.78567,12.83292],[92.78482,12.82466],[92.78056,12.82385],[92.78207,12.80918],[92.78756,12.81462],[92.78921,12.82886],[92.78771,12.81529],[92.78969,12.81553],[92.79196,12.81171],[92.79383,12.81379],[92.80063,12.81283],[92.79791,12.80812],[92.80024,12.80456],[92.79756,12.80553],[92.79906,12.80646],[92.79754,12.80819],[92.79973,12.81343],[92.79612,12.81222],[92.79386,12.81338],[92.7907,12.80759],[92.79255,12.80503],[92.79236,12.79956],[92.79516,12.79908],[92.79301,12.79545],[92.79467,12.79367],[92.79302,12.79488],[92.79245,12.79342],[92.79379,12.79769],[92.79179,12.79734],[92.79494,12.79865],[92.79202,12.79964],[92.79222,12.805],[92.79034,12.8075],[92.7922,12.80968],[92.78983,12.81471],[92.78164,12.80816],[92.78042,12.80505],[92.78037,12.79799],[92.78417,12.78867],[92.78711,12.78651],[92.7835,12.78162],[92.78378,12.77568],[92.78746,12.7792],[92.79086,12.77418],[92.79338,12.77436],[92.79076,12.77393],[92.78749,12.77895],[92.78623,12.77845],[92.78719,12.77677],[92.78499,12.77716],[92.78377,12.77535],[92.78504,12.76708],[92.78383,12.76215],[92.7849,12.76737],[92.78266,12.77091],[92.78265,12.76761],[92.77936,12.76198],[92.7826,12.76778],[92.78231,12.77093],[92.78421,12.77133],[92.7833,12.77546],[92.78127,12.77404],[92.78038,12.77631],[92.7832,12.77572],[92.78296,12.78184],[92.78659,12.78615],[92.7835,12.78845],[92.77943,12.7991],[92.78077,12.80954],[92.77931,12.82412],[92.7721,12.83172],[92.7727,12.84256],[92.76635,12.84842],[92.76595,12.83619],[92.76224,12.83915],[92.76247,12.83528],[92.76492,12.83363],[92.76267,12.82886],[92.76423,12.82707],[92.76384,12.82373],[92.76549,12.82277],[92.76446,12.82102],[92.76554,12.81884],[92.76336,12.8251],[92.76121,12.82638],[92.761,12.82425],[92.75536,12.82323],[92.75511,12.81958],[92.75357,12.81919],[92.75414,12.81769],[92.75344,12.81894],[92.75556,12.82368],[92.76074,12.82455],[92.76085,12.8266],[92.76342,12.82595],[92.76207,12.82876],[92.76426,12.83327],[92.76191,12.83525],[92.76144,12.84211],[92.75661,12.8449],[92.7561,12.84679],[92.75253,12.84805],[92.75359,12.8455],[92.75052,12.84537],[92.74853,12.84347],[92.74676,12.8407],[92.74753,12.8368],[92.7455,12.84283],[92.74296,12.83904],[92.74258,12.82066],[92.74032,12.83648],[92.73912,12.83702],[92.73695,12.82821],[92.73814,12.81184],[92.73535,12.80985],[92.73774,12.80439],[92.73531,12.80725],[92.73533,12.82034],[92.73311,12.82295],[92.73074,12.83599],[92.72883,12.83508],[92.72607,12.82827],[92.72371,12.82852],[92.72207,12.82523],[92.72059,12.81534],[92.72216,12.80991],[92.72074,12.81077],[92.71961,12.80626],[92.72047,12.797],[92.72946,12.79937],[92.73121,12.80171],[92.72961,12.7992],[92.73204,12.79784],[92.73214,12.79453],[92.73746,12.7943],[92.73767,12.79572],[92.73866,12.79473],[92.73703,12.79558],[92.7376,12.79427],[92.73616,12.79336],[92.73904,12.79092],[92.73656,12.79299],[92.73558,12.79221],[92.73528,12.78725],[92.73713,12.78412],[92.73561,12.78487],[92.73525,12.78336],[92.73773,12.77916],[92.73509,12.78297],[92.73521,12.785],[92.73694,12.78415],[92.73561,12.78862],[92.73434,12.78767],[92.73274,12.78931],[92.73519,12.79001],[92.73352,12.79248],[92.73571,12.79364],[92.73211,12.79335],[92.7312,12.79752],[92.72783,12.79918],[92.72477,12.79784],[92.72,12.79029],[92.7248,12.76822],[92.73118,12.7536],[92.72941,12.75055],[92.72968,12.74389],[92.73365,12.73869],[92.73718,12.73864],[92.73744,12.73682],[92.73894,12.73962],[92.74044,12.73905],[92.739,12.73936],[92.73748,12.73656],[92.73961,12.73279],[92.73956,12.72632],[92.74584,12.72282],[92.73942,12.721],[92.73871,12.71756],[92.7397,12.71813],[92.74033,12.71534],[92.73863,12.715],[92.73793,12.71006],[92.73988,12.70207],[92.74258,12.70151],[92.74154,12.70233],[92.74367,12.70404],[92.7436,12.70651],[92.74381,12.7038],[92.74187,12.70233],[92.74413,12.70192],[92.74472,12.69917],[92.74378,12.70186],[92.73691,12.699],[92.73445,12.69968],[92.73105,12.6961],[92.73276,12.69873],[92.72965,12.69869],[92.72642,12.69409],[92.72622,12.69059],[92.73064,12.6907],[92.73482,12.68427],[92.73196,12.6726],[92.73229,12.67418],[92.73585,12.67166],[92.73592,12.67292],[92.7363,12.67162],[92.73806,12.67286],[92.73857,12.67141],[92.74035,12.67297],[92.74305,12.67023],[92.74329,12.6718],[92.74359,12.67077],[92.75,12.67502],[92.762,12.67126],[92.76939,12.6731],[92.77627,12.68486],[92.78302,12.69241],[92.78467,12.708],[92.77725,12.71353],[92.77578,12.71838],[92.78155,12.72009],[92.77883,12.72845],[92.78181,12.73369],[92.77698,12.73478],[92.77287,12.72813],[92.76958,12.72938],[92.76812,12.72607],[92.76929,12.72249],[92.76773,12.72144],[92.76787,12.72351],[92.7616,12.72281],[92.76791,12.72381],[92.76753,12.72177],[92.76876,12.72232],[92.7678,12.726],[92.76912,12.72949],[92.77233,12.72874],[92.77641,12.7352],[92.78067,12.73482],[92.77769,12.73784],[92.78088,12.73599],[92.78125,12.74038],[92.78258,12.73288],[92.77951,12.72804],[92.78314,12.725],[92.7869,12.72678],[92.7897,12.72547],[92.78097,12.72537],[92.78441,12.71288],[92.78195,12.71077],[92.78629,12.70888],[92.7871,12.70278],[92.7862,12.69125],[92.78088,12.67918],[92.77908,12.67102],[92.78183,12.66667],[92.78195,12.6616],[92.78421,12.66025],[92.78127,12.65933],[92.78388,12.65531],[92.78206,12.65468],[92.78273,12.64697],[92.78105,12.64481],[92.77992,12.63093],[92.78599,12.62452],[92.78307,12.61748],[92.78299,12.60645],[92.78049,12.602],[92.78001,12.5941],[92.77742,12.59032],[92.77893,12.57998],[92.77645,12.59047],[92.77983,12.59495],[92.7841,12.62552],[92.77882,12.62964],[92.77888,12.63713],[92.77741,12.6384],[92.77566,12.63074],[92.76953,12.62825],[92.76619,12.63161],[92.76187,12.62442],[92.76523,12.63206],[92.76981,12.6291],[92.7751,12.63136],[92.77628,12.63394],[92.77545,12.63783],[92.77839,12.6412],[92.7783,12.66016],[92.7765,12.66693],[92.77315,12.67039],[92.76943,12.66812],[92.76418,12.66781],[92.7563,12.66925],[92.75231,12.67195],[92.75067,12.66632],[92.74304,12.66769],[92.74061,12.66118],[92.73694,12.65771],[92.73283,12.65711],[92.73156,12.653],[92.7348,12.63903],[92.72852,12.63604],[92.7318,12.63278],[92.73735,12.632],[92.73577,12.62594],[92.73994,12.62273],[92.74077,12.61998],[92.74766,12.62046],[92.74086,12.6197],[92.74003,12.62237],[92.73492,12.62725],[92.7333,12.62407],[92.73477,12.62752],[92.73556,12.62617],[92.73679,12.63192],[92.73165,12.63256],[92.72748,12.63616],[92.72391,12.62629],[92.72047,12.62611],[92.72329,12.6229],[92.72371,12.62015],[92.72115,12.61886],[92.72366,12.61728],[92.72244,12.61536],[92.72338,12.61733],[92.71993,12.61841],[92.72161,12.62278],[92.72022,12.62617],[92.72153,12.62761],[92.71992,12.63641],[92.71825,12.63783],[92.71824,12.64433],[92.71325,12.64235],[92.71483,12.63962],[92.71384,12.63238],[92.71032,12.62577],[92.71126,12.62675],[92.71221,12.62273],[92.70259,12.60479],[92.70188,12.61287],[92.69321,12.60647],[92.68887,12.60892],[92.6858,12.61432],[92.68398,12.60905],[92.68548,12.60201],[92.69317,12.60225],[92.69379,12.60081],[92.70045,12.60022],[92.70223,12.60116],[92.70286,12.59768],[92.70737,12.59401],[92.70352,12.58994],[92.70406,12.58636],[92.70667,12.58572],[92.70437,12.57912],[92.70821,12.57595],[92.70384,12.56557],[92.70804,12.55672],[92.69808,12.54107],[92.69847,12.53537],[92.69961,12.53557],[92.69902,12.52839],[92.69305,12.51559],[92.69347,12.50821],[92.69629,12.51224],[92.69939,12.51162],[92.69944,12.50036],[92.70169,12.50072],[92.70495,12.50572],[92.7036,12.50175],[92.70224,12.50002],[92.69915,12.50002],[92.69846,12.49698],[92.70112,12.49645],[92.70371,12.49889],[92.70357,12.49444],[92.70596,12.49464],[92.70694,12.49279],[92.70586,12.49054],[92.70201,12.49104],[92.69954,12.46984],[92.69489,12.47037],[92.69594,12.4647],[92.69878,12.4664],[92.70019,12.46495],[92.70123,12.46125],[92.69937,12.45662],[92.70266,12.45834],[92.7045,12.45222],[92.70338,12.44959],[92.70005,12.44768],[92.70041,12.43652],[92.69803,12.42977],[92.69488,12.429],[92.69868,12.40855],[92.69513,12.40041],[92.69767,12.37851],[92.69865,12.37723],[92.70246,12.3789],[92.70277,12.3771],[92.70053,12.37597],[92.70454,12.37069],[92.70359,12.36923],[92.70011,12.36992],[92.69817,12.36733],[92.70041,12.3588],[92.6991,12.33861],[92.70027,12.33309],[92.69904,12.32828],[92.70152,12.32733],[92.70399,12.33199],[92.70709,12.32957],[92.70901,12.32997],[92.70667,12.32365],[92.70741,12.31676],[92.71042,12.31022],[92.71249,12.31277],[92.71494,12.31209],[92.71901,12.30371],[92.71786,12.30162],[92.71948,12.30034],[92.72353,12.30257],[92.73156,12.30204],[92.7356,12.31295],[92.73876,12.31497],[92.73898,12.31957],[92.74334,12.32779],[92.74119,12.32947],[92.74155,12.33358],[92.73775,12.33423],[92.7384,12.33598],[92.73806,12.33369],[92.73955,12.33472],[92.74178,12.33372],[92.74168,12.32927],[92.74154,12.33126],[92.74451,12.33369],[92.74397,12.33712],[92.74631,12.3407],[92.74711,12.34928],[92.74316,12.35337],[92.74622,12.35276],[92.7497,12.35641],[92.74831,12.35991],[92.74442,12.35813],[92.74261,12.35946],[92.74357,12.36213],[92.74652,12.36179],[92.74918,12.36562],[92.74669,12.36117],[92.7442,12.36223],[92.74293,12.35931],[92.74854,12.36016],[92.74987,12.3559],[92.74645,12.35239],[92.74372,12.35344],[92.74745,12.34981],[92.74774,12.34442],[92.74445,12.33696],[92.74504,12.33363],[92.74186,12.33085],[92.7436,12.32653],[92.73941,12.31851],[92.73956,12.315],[92.73608,12.31214],[92.73413,12.30243],[92.73534,12.30067],[92.74244,12.30167],[92.74309,12.30438],[92.74217,12.30093],[92.74461,12.29934],[92.74857,12.30348],[92.75014,12.29865],[92.75281,12.29609],[92.75734,12.29856],[92.75683,12.30385],[92.75996,12.30672],[92.76315,12.31425],[92.76416,12.31259],[92.7649,12.32213],[92.76482,12.31359],[92.76245,12.30499],[92.76358,12.30171],[92.76519,12.3035],[92.76829,12.31457],[92.77078,12.3178],[92.76903,12.32201],[92.76913,12.32675],[92.77175,12.32721],[92.7693,12.33025],[92.77193,12.33229],[92.77043,12.33376],[92.77211,12.33214],[92.76952,12.33031],[92.77198,12.32735],[92.76921,12.32648],[92.76949,12.32068],[92.77506,12.31744],[92.77642,12.3231],[92.78001,12.32316],[92.77676,12.32299],[92.77521,12.31959],[92.77663,12.31882],[92.77227,12.31677],[92.77561,12.31608],[92.77757,12.31799],[92.77928,12.31683],[92.77904,12.3185],[92.78228,12.31897],[92.7748,12.31564],[92.77867,12.31307],[92.78406,12.3138],[92.79065,12.31166],[92.79242,12.31388],[92.79091,12.31141],[92.79438,12.30628],[92.80183,12.31324],[92.80981,12.31565],[92.83145,12.30268],[92.83701,12.30646],[92.8338,12.30855],[92.83732,12.30663],[92.84746,12.30828],[92.85222,12.31351],[92.85559,12.31427],[92.85553,12.31802],[92.85377,12.31776],[92.85679,12.31853],[92.85489,12.31949],[92.86012,12.31916],[92.85919,12.32244],[92.86055,12.32349],[92.85676,12.32821],[92.85136,12.32596],[92.84837,12.32808],[92.84744,12.3258],[92.84543,12.32667],[92.84553,12.32886],[92.84282,12.32646],[92.84157,12.32798],[92.84293,12.3294],[92.84116,12.33122],[92.83936,12.33092],[92.83918,12.33252],[92.83186,12.33554],[92.8431,12.33004],[92.84255,12.3268],[92.84547,12.32926],[92.84564,12.32706],[92.84742,12.32613],[92.84838,12.32833],[92.84965,12.32692],[92.85117,12.32801],[92.85152,12.32632],[92.85421,12.32684],[92.85806,12.32947],[92.85472,12.33234],[92.85681,12.34029],[92.85899,12.33863],[92.85775,12.33554],[92.85945,12.33534],[92.85963,12.34192],[92.85663,12.34496],[92.85537,12.34272],[92.85319,12.34285],[92.85465,12.34203],[92.85379,12.34073],[92.85452,12.34201],[92.84789,12.34348],[92.85503,12.34284],[92.85706,12.34521],[92.85987,12.34211],[92.85997,12.33628],[92.86421,12.33626],[92.86507,12.33913],[92.86373,12.33579],[92.86571,12.33339],[92.86819,12.33613],[92.86598,12.33316],[92.86939,12.33126],[92.87037,12.3333],[92.86957,12.3311],[92.87144,12.32997],[92.87618,12.33129],[92.87604,12.33246],[92.87643,12.33144],[92.88302,12.3332],[92.87736,12.33328],[92.87382,12.33703],[92.87326,12.33517],[92.87365,12.33724],[92.87769,12.3336],[92.87721,12.33507],[92.87992,12.33473],[92.87996,12.34205],[92.87839,12.34394],[92.87953,12.34485],[92.8833,12.34247],[92.88554,12.34366],[92.89118,12.33897],[92.89429,12.33397],[92.89897,12.33376],[92.89489,12.33665],[92.89558,12.33877],[92.89193,12.34211],[92.88919,12.34769],[92.88993,12.35],[92.88593,12.35117],[92.88527,12.35531],[92.88333,12.35703],[92.88122,12.35653],[92.87798,12.35966],[92.8763,12.35535],[92.87229,12.35372],[92.86978,12.35746],[92.86804,12.35752],[92.8701,12.35943],[92.86943,12.362],[92.86027,12.36105],[92.85552,12.36708],[92.8535,12.36526],[92.85143,12.36725],[92.85107,12.36527],[92.84653,12.36525],[92.84628,12.36217],[92.8481,12.36078],[92.84603,12.36217],[92.84679,12.36373],[92.84461,12.36317],[92.84577,12.36429],[92.84374,12.36493],[92.84592,12.36453],[92.84539,12.36311],[92.84626,12.36545],[92.84976,12.36574],[92.85082,12.36762],[92.85343,12.36569],[92.85449,12.36757],[92.8585,12.36761],[92.86106,12.36944],[92.85608,12.37299],[92.85172,12.37957],[92.85062,12.3854],[92.84629,12.38515],[92.84423,12.38266],[92.84625,12.38108],[92.84408,12.37944],[92.84456,12.38121],[92.84611,12.38113],[92.84398,12.38253],[92.84601,12.38374],[92.8466,12.38896],[92.84233,12.3918],[92.84486,12.38772],[92.84268,12.39086],[92.84008,12.39058],[92.8395,12.38918],[92.84212,12.38694],[92.84142,12.38537],[92.83871,12.38353],[92.83755,12.38885],[92.83566,12.3838],[92.82995,12.38296],[92.82839,12.38104],[92.83019,12.37832],[92.82754,12.37861],[92.82308,12.37422],[92.82486,12.37629],[92.82124,12.37994],[92.82011,12.37917],[92.82136,12.38006],[92.82506,12.37639],[92.8276,12.37881],[92.83005,12.37846],[92.82813,12.38138],[92.83273,12.38343],[92.8324,12.38573],[92.83534,12.38414],[92.83754,12.38938],[92.83902,12.38753],[92.83884,12.38394],[92.84088,12.38533],[92.84143,12.38689],[92.83893,12.38981],[92.84155,12.39139],[92.83451,12.39462],[92.83543,12.39164],[92.8343,12.39365],[92.83179,12.39346],[92.83114,12.39095],[92.83072,12.39266],[92.82945,12.39191],[92.8307,12.39285],[92.83116,12.39117],[92.83143,12.39366],[92.83387,12.3933],[92.83428,12.39495],[92.83859,12.39425],[92.83764,12.39722],[92.83214,12.3984],[92.83241,12.40063],[92.82766,12.39425],[92.827,12.39531],[92.82476,12.39344],[92.82382,12.39577],[92.82197,12.39589],[92.82204,12.39093],[92.81967,12.38908],[92.82195,12.39115],[92.82189,12.39615],[92.82354,12.39633],[92.82502,12.39367],[92.82869,12.396],[92.82734,12.39797],[92.82515,12.39713],[92.827,12.39837],[92.82906,12.39683],[92.82636,12.40173],[92.82702,12.39958],[92.82542,12.39889],[92.82429,12.3998],[92.82589,12.40005],[92.82165,12.40229],[92.82594,12.40024],[92.8245,12.39959],[92.82557,12.39916],[92.82686,12.39985],[92.82636,12.40211],[92.82883,12.3979],[92.83252,12.40182],[92.83412,12.39814],[92.83743,12.39863],[92.83699,12.40069],[92.83873,12.39958],[92.83998,12.40394],[92.83689,12.40442],[92.83695,12.40634],[92.83749,12.40397],[92.84009,12.40518],[92.8384,12.40863],[92.82875,12.41034],[92.82388,12.40834],[92.82437,12.41179],[92.82305,12.4132],[92.8233,12.41023],[92.81664,12.40982],[92.81761,12.41405],[92.81571,12.41638],[92.81551,12.41322],[92.81039,12.40986],[92.8042,12.41127],[92.80517,12.41001],[92.8036,12.40448],[92.80153,12.40577],[92.79913,12.4008],[92.80134,12.40591],[92.80331,12.40456],[92.80416,12.41174],[92.80692,12.41027],[92.81109,12.41067],[92.81287,12.41199],[92.81373,12.41597],[92.81293,12.41219],[92.81542,12.41387],[92.81575,12.41699],[92.81813,12.41506],[92.81743,12.4106],[92.82309,12.41095],[92.82264,12.41403],[92.82452,12.41305],[92.82536,12.40951],[92.83063,12.41242],[92.82939,12.41154],[92.83033,12.40981],[92.83394,12.41048],[92.83142,12.41818],[92.8276,12.41525],[92.82606,12.41608],[92.82821,12.41592],[92.83022,12.41874],[92.82949,12.41971],[92.8249,12.41877],[92.82472,12.42075],[92.82111,12.42258],[92.82069,12.42555],[92.81533,12.42491],[92.81727,12.42208],[92.81497,12.4249],[92.82091,12.42595],[92.82163,12.42268],[92.8267,12.41915],[92.82647,12.4222],[92.82728,12.4201],[92.82856,12.42087],[92.82797,12.4248],[92.82963,12.42826],[92.82429,12.4306],[92.82384,12.42878],[92.82399,12.43069],[92.82174,12.43171],[92.80959,12.43371],[92.805,12.43876],[92.79461,12.43612],[92.79307,12.43761],[92.7924,12.43584],[92.79039,12.43694],[92.78879,12.43559],[92.78921,12.43669],[92.78724,12.43709],[92.7894,12.43677],[92.78905,12.43573],[92.79039,12.4371],[92.79265,12.43626],[92.79357,12.44626],[92.79018,12.44987],[92.78982,12.44696],[92.78731,12.44672],[92.79002,12.4478],[92.78904,12.45338],[92.79448,12.45407],[92.79238,12.4547],[92.7937,12.45818],[92.79158,12.46009],[92.79106,12.45567],[92.79141,12.4603],[92.79401,12.45823],[92.79269,12.45495],[92.79496,12.45391],[92.78914,12.45259],[92.79345,12.44745],[92.79541,12.44956],[92.79742,12.45393],[92.79569,12.4603],[92.7982,12.46407],[92.79187,12.46868],[92.78648,12.4666],[92.78159,12.46936],[92.78212,12.4679],[92.77919,12.46519],[92.78056,12.46458],[92.77972,12.46238],[92.77868,12.46388],[92.77752,12.46293],[92.77842,12.46015],[92.77732,12.46291],[92.77863,12.46418],[92.77967,12.4627],[92.77905,12.46515],[92.78176,12.4684],[92.77871,12.46976],[92.77373,12.46883],[92.77187,12.47104],[92.77497,12.46899],[92.78254,12.46958],[92.78673,12.46702],[92.79097,12.4691],[92.78542,12.47468],[92.78685,12.47796],[92.78908,12.47723],[92.78824,12.48003],[92.79049,12.48129],[92.7898,12.48342],[92.78661,12.4839],[92.79,12.48358],[92.79073,12.48078],[92.78892,12.47941],[92.78954,12.47711],[92.7869,12.47751],[92.78576,12.47471],[92.79954,12.46466],[92.79711,12.46082],[92.79903,12.45511],[92.7951,12.44489],[92.79585,12.43788],[92.80416,12.44108],[92.80923,12.43623],[92.81949,12.43496],[92.81957,12.43675],[92.81599,12.43551],[92.81022,12.44268],[92.81633,12.44481],[92.81257,12.44582],[92.81149,12.44877],[92.81366,12.45015],[92.81609,12.44713],[92.8178,12.44919],[92.81775,12.45157],[92.81563,12.45068],[92.81525,12.45472],[92.816,12.45072],[92.81766,12.45199],[92.81821,12.44905],[92.81612,12.4468],[92.81307,12.44985],[92.81211,12.44832],[92.81284,12.44635],[92.8168,12.44466],[92.81076,12.44286],[92.81633,12.43657],[92.82015,12.43706],[92.8215,12.43408],[92.83551,12.43071],[92.84091,12.4372],[92.83654,12.4363],[92.83518,12.43874],[92.83242,12.43835],[92.83334,12.44093],[92.82886,12.44199],[92.83373,12.44098],[92.83345,12.43858],[92.83517,12.43942],[92.8343,12.44169],[92.836,12.44361],[92.8346,12.44172],[92.83548,12.4393],[92.83799,12.43921],[92.83606,12.4411],[92.83826,12.43921],[92.83644,12.43869],[92.83658,12.43733],[92.8417,12.43745],[92.83706,12.43076],[92.84566,12.42347],[92.85127,12.42438],[92.8509,12.42869],[92.8493,12.42782],[92.8508,12.42903],[92.85289,12.42388],[92.85627,12.42292],[92.85936,12.42424],[92.85709,12.42772],[92.85627,12.43418],[92.85955,12.43683],[92.85663,12.4344],[92.85836,12.42655],[92.86431,12.42636],[92.86761,12.42251],[92.8709,12.42134],[92.87351,12.41771],[92.87403,12.41342],[92.87757,12.41908],[92.88216,12.42077],[92.88476,12.42452],[92.88339,12.4283],[92.88234,12.42713],[92.88338,12.42848],[92.88393,12.42717],[92.88331,12.43082],[92.88479,12.43126],[92.88402,12.42762],[92.88577,12.42673],[92.8852,12.42549],[92.88865,12.42633],[92.88529,12.42522],[92.88565,12.42205],[92.89234,12.41889],[92.89501,12.41543],[92.89716,12.41594],[92.89941,12.41719],[92.89617,12.4203],[92.89501,12.41973],[92.89586,12.42086],[92.89409,12.42181],[92.89394,12.42515],[92.89178,12.42471],[92.89349,12.42579],[92.88606,12.43485],[92.88373,12.43642],[92.87803,12.43172],[92.87479,12.43129],[92.87258,12.43386],[92.87472,12.43157],[92.87807,12.43195],[92.88338,12.43653],[92.8774,12.44063],[92.87629,12.43814],[92.87699,12.44075],[92.87505,12.44267],[92.87215,12.4401],[92.8632,12.44672],[92.86274,12.44529],[92.86036,12.44971],[92.84866,12.45806],[92.84429,12.46528],[92.84019,12.46563],[92.84083,12.46463],[92.83939,12.46446],[92.84314,12.46788],[92.83855,12.47095],[92.83823,12.4744],[92.84021,12.47574],[92.83723,12.47581],[92.8348,12.48016],[92.83208,12.48061],[92.83431,12.47555],[92.83019,12.47169],[92.83278,12.46951],[92.83127,12.4723],[92.83235,12.47269],[92.83326,12.46948],[92.83031,12.47056],[92.83063,12.47454],[92.82908,12.47162],[92.82557,12.47305],[92.8256,12.47199],[92.82556,12.47329],[92.82873,12.47168],[92.82945,12.47471],[92.83357,12.47539],[92.83157,12.48013],[92.83342,12.48152],[92.83655,12.47938],[92.83763,12.47608],[92.84084,12.47639],[92.83866,12.47362],[92.84051,12.47139],[92.84239,12.47931],[92.83487,12.4858],[92.83398,12.48847],[92.82447,12.48217],[92.82227,12.48475],[92.8158,12.48681],[92.81634,12.48782],[92.8163,12.48657],[92.82261,12.48531],[92.82462,12.48289],[92.83287,12.48926],[92.83559,12.48659],[92.83687,12.49125],[92.82253,12.50002],[92.83759,12.49334],[92.83471,12.49616],[92.83506,12.50142],[92.83714,12.50126],[92.83894,12.49747],[92.8437,12.49833],[92.84574,12.5028],[92.85046,12.50247],[92.85251,12.50574],[92.85073,12.50688],[92.85131,12.50881],[92.85515,12.50976],[92.85657,12.50791],[92.85451,12.50969],[92.85118,12.50786],[92.85292,12.50557],[92.85114,12.50213],[92.84595,12.50249],[92.84507,12.49866],[92.84218,12.49711],[92.83817,12.49738],[92.83692,12.50098],[92.83549,12.50064],[92.83542,12.49643],[92.83835,12.49159],[92.83742,12.48541],[92.84326,12.48034],[92.84319,12.47077],[92.85369,12.45731],[92.85481,12.46126],[92.85209,12.46584],[92.85349,12.47092],[92.85524,12.47119],[92.85263,12.46779],[92.85388,12.46253],[92.85696,12.46463],[92.86035,12.45867],[92.86319,12.45841],[92.85922,12.46173],[92.86236,12.46526],[92.85954,12.46516],[92.85884,12.46665],[92.85959,12.46538],[92.86282,12.46568],[92.85985,12.46177],[92.86386,12.45821],[92.85883,12.45863],[92.85571,12.46394],[92.85545,12.45705],[92.86878,12.44616],[92.87047,12.4474],[92.8674,12.45428],[92.87112,12.45525],[92.87183,12.45747],[92.869,12.45694],[92.87199,12.45806],[92.87139,12.45488],[92.86803,12.45399],[92.87117,12.44815],[92.87557,12.4466],[92.88102,12.45033],[92.8757,12.45287],[92.87607,12.45603],[92.87578,12.45321],[92.87779,12.45191],[92.88261,12.45247],[92.88527,12.45595],[92.88384,12.45777],[92.8805,12.45594],[92.87804,12.45806],[92.88123,12.46442],[92.87861,12.46725],[92.88159,12.46861],[92.88023,12.471],[92.87991,12.46822],[92.87848,12.46919],[92.8797,12.46828],[92.88041,12.47133],[92.88185,12.46873],[92.87892,12.46691],[92.88156,12.46521],[92.88314,12.46653],[92.87869,12.45806],[92.88133,12.45676],[92.88379,12.45853],[92.88622,12.45648],[92.88334,12.45103],[92.87701,12.44509],[92.88361,12.44246],[92.88511,12.44361],[92.88431,12.44528],[92.88604,12.44401],[92.88821,12.44712],[92.88555,12.44685],[92.88571,12.44937],[92.88612,12.44688],[92.89057,12.44904],[92.89501,12.44851],[92.89628,12.4501],[92.89569,12.45434],[92.89276,12.45359],[92.89066,12.45771],[92.88498,12.46028],[92.88884,12.46375],[92.8855,12.45983],[92.89056,12.45821],[92.89269,12.45402],[92.89586,12.45497],[92.89645,12.452],[92.89837,12.45244],[92.89896,12.45109],[92.89678,12.4516],[92.89566,12.44786],[92.88992,12.44787],[92.88445,12.44176],[92.8907,12.43684],[92.89438,12.43845],[92.8948,12.43598],[92.89704,12.43849],[92.89485,12.43582],[92.89454,12.43828],[92.89097,12.43656],[92.89474,12.4307],[92.90803,12.42097],[92.9082,12.41544],[92.90544,12.4077],[92.91078,12.40539],[92.91529,12.40695],[92.91506,12.41184],[92.92009,12.42611],[92.9185,12.42863],[92.92288,12.43465],[92.9218,12.43692],[92.91782,12.43701],[92.91919,12.44068],[92.91325,12.44076],[92.91359,12.44345],[92.91099,12.44439],[92.90793,12.44269],[92.90904,12.43799],[92.90819,12.44389],[92.91482,12.44442],[92.91191,12.44605],[92.91452,12.44792],[92.91425,12.45029],[92.91336,12.4488],[92.91239,12.45057],[92.9134,12.44904],[92.91441,12.45045],[92.91471,12.44786],[92.91236,12.44599],[92.91707,12.44261],[92.91953,12.44422],[92.92213,12.44234],[92.92743,12.44525],[92.93053,12.44925],[92.93344,12.44767],[92.93794,12.44807],[92.94074,12.45022],[92.94301,12.45511],[92.94464,12.45127],[92.94909,12.45671],[92.94536,12.45626],[92.94681,12.45945],[92.94323,12.46079],[92.94507,12.46007],[92.94695,12.46141],[92.94947,12.45795],[92.94759,12.46174],[92.94517,12.46216],[92.94772,12.46289],[92.95105,12.45949],[92.94871,12.4638],[92.95603,12.46634],[92.95784,12.47271],[92.95599,12.47514],[92.94991,12.4762],[92.94449,12.47241],[92.94216,12.46713],[92.93893,12.46911],[92.93376,12.46581],[92.92156,12.46484],[92.91911,12.46964],[92.91945,12.47275],[92.91547,12.473],[92.91673,12.47642],[92.91487,12.47765],[92.91181,12.47104],[92.90717,12.46924],[92.90852,12.46846],[92.90779,12.46722],[92.90825,12.46857],[92.9057,12.47065],[92.90881,12.46981],[92.91134,12.47113],[92.91388,12.47581],[92.91237,12.47833],[92.90828,12.47516],[92.90665,12.47741],[92.90828,12.47537],[92.91203,12.4787],[92.91311,12.47698],[92.91516,12.47811],[92.91913,12.47611],[92.91825,12.4786],[92.92053,12.47998],[92.91993,12.48324],[92.91824,12.48347],[92.91792,12.4813],[92.91688,12.48352],[92.914,12.48366],[92.91371,12.48654],[92.9126,12.48622],[92.91086,12.48933],[92.91429,12.50003],[92.91124,12.48926],[92.91387,12.48685],[92.9142,12.48419],[92.91693,12.48405],[92.91782,12.48167],[92.9182,12.48373],[92.92031,12.48328],[92.92088,12.47988],[92.91841,12.47817],[92.91971,12.47616],[92.91735,12.47677],[92.91617,12.47376],[92.92027,12.47289],[92.91944,12.47093],[92.92178,12.46571],[92.93262,12.4675],[92.9343,12.47009],[92.92977,12.47643],[92.92614,12.47674],[92.93142,12.47783],[92.92968,12.47713],[92.92924,12.47934],[92.93183,12.48133],[92.93074,12.4837],[92.93262,12.48472],[92.93115,12.48723],[92.92902,12.48648],[92.92653,12.48847],[92.92893,12.48923],[92.92721,12.49038],[92.92921,12.48916],[92.92681,12.4886],[92.92919,12.4867],[92.93119,12.48763],[92.93284,12.48524],[92.93172,12.48359],[92.93262,12.4819],[92.93637,12.48143],[92.94062,12.48513],[92.94223,12.49261],[92.94518,12.49498],[92.94402,12.49792],[92.9459,12.49966],[92.95281,12.49378],[92.95076,12.49211],[92.95079,12.48963],[92.95455,12.49143],[92.95626,12.48707],[92.96007,12.48567],[92.96411,12.48723],[92.96491,12.4888],[92.96325,12.48944],[92.96313,12.49233],[92.96883,12.49666],[92.9649,12.5045],[92.96685,12.5102],[92.96568,12.51318],[92.97102,12.51732],[92.96976,12.51944],[92.97438,12.52977],[92.97343,12.53595],[92.97542,12.54301],[92.96918,12.56263],[92.96496,12.56761],[92.96378,12.5746],[92.96132,12.57602],[92.96107,12.585],[92.95597,12.59275],[92.95492,12.60394],[92.95641,12.61429],[92.9588,12.61961],[92.94796,12.62754],[92.94623,12.62484],[92.94348,12.6239],[92.94751,12.62856],[92.9456,12.6299],[92.93709,12.62204],[92.9391,12.61601],[92.93622,12.61857],[92.93526,12.61762],[92.93768,12.61562],[92.92973,12.61692],[92.93438,12.61754],[92.93721,12.62377],[92.94554,12.63135],[92.95414,12.62428],[92.9567,12.62421],[92.95682,12.64029],[92.95926,12.65169],[92.96249,12.65845],[92.96092,12.66902],[92.96525,12.67702],[92.9653,12.68152],[92.96303,12.68559],[92.96547,12.69438],[92.96252,12.6953],[92.96212,12.69714],[92.96481,12.70244],[92.96386,12.7044],[92.97077,12.71297],[92.97347,12.71221],[92.97756,12.70781],[92.98005,12.7094],[92.97674,12.71912],[92.97338,12.72126],[92.9675,12.72051],[92.96444,12.72581],[92.96373,12.73014],[92.96855,12.73978],[92.96163,12.74731],[92.96171,12.75437],[92.95171,12.75711],[92.94823,12.76221],[92.94988,12.77007],[92.94825,12.77094],[92.93894,12.76753],[92.93322,12.77374],[92.92642,12.77439],[92.9334,12.77424],[92.93431,12.78347],[92.93726,12.78299],[92.94145,12.79029],[92.94869,12.7932],[92.94895,12.79613],[92.95112,12.79521],[92.94872,12.79682],[92.94971,12.79857],[92.94867,12.7996],[92.95449,12.80643],[92.9524,12.80864],[92.95071,12.81488],[92.94629,12.81792],[92.94518,12.82111],[92.94667,12.82341],[92.9438,12.82601],[92.94492,12.83269],[92.9476,12.83452],[92.94847,12.83595],[92.94692,12.83557],[92.94704,12.83692],[92.94863,12.8367],[92.94911,12.83819],[92.94356,12.83823],[92.94126,12.83552],[92.93932,12.83681],[92.93733,12.83579],[92.93567,12.83952],[92.93088,12.83835],[92.9319,12.83691],[92.9297,12.83618],[92.93131,12.83501],[92.9278,12.83258],[92.92948,12.83165],[92.92429,12.82954],[92.92555,12.82706],[92.92283,12.82611],[92.92285,12.82208],[92.92573,12.81735],[92.92779,12.81619],[92.92927,12.81776],[92.93058,12.81632],[92.92688,12.81338],[92.92799,12.80925],[92.92442,12.80108],[92.92765,12.80911],[92.92622,12.81305],[92.92976,12.81654],[92.92748,12.81576],[92.92544,12.81724],[92.92264,12.82195],[92.92256,12.82608],[92.92505,12.82733],[92.92413,12.82996],[92.92901,12.83163],[92.92743,12.8327],[92.93092,12.83512],[92.92937,12.83622],[92.93154,12.8369],[92.93041,12.8384],[92.9356,12.8398],[92.93738,12.83624],[92.94026,12.83758],[92.93949,12.84821],[92.94116,12.85599],[92.93781,12.85844],[92.93467,12.85616],[92.93257,12.85811],[92.92638,12.85814],[92.92714,12.8622],[92.92919,12.85884],[92.9284,12.86168],[92.9302,12.86302],[92.93112,12.86761],[92.93044,12.87162],[92.92803,12.87191],[92.92798,12.87398],[92.93043,12.87643],[92.92727,12.87845],[92.92801,12.88271],[92.92463,12.8879],[92.92499,12.88563],[92.92178,12.88558],[92.91893,12.89006],[92.91741,12.88615],[92.91345,12.88905],[92.91248,12.88641],[92.91009,12.88543],[92.90712,12.88537],[92.90589,12.88702],[92.9075,12.89235],[92.91252,12.89978],[92.91,12.89851],[92.90986,12.90361],[92.91948,12.90877],[92.92228,12.91205],[92.92232,12.91539],[92.91647,12.91114],[92.91036,12.90998],[92.90723,12.91244],[92.91261,12.91325],[92.91359,12.91657],[92.91232,12.91934],[92.90717,12.91538],[92.89896,12.91806],[92.89813,12.9144],[92.90078,12.91266],[92.90036,12.91153],[92.89739,12.91411],[92.899,12.91935],[92.90214,12.92008],[92.89749,12.92681]]],[[[92.67727,12.94653],[92.67746,12.94673],[92.67758,12.9469],[92.67757,12.94718],[92.67739,12.94737],[92.67719,12.94753],[92.677,12.94764],[92.67683,12.9476],[92.6766,12.94748],[92.67656,12.94743],[92.67656,12.94724],[92.67663,12.9471],[92.67676,12.94706],[92.67684,12.94691],[92.67678,12.94677],[92.67676,12.94664],[92.6768,12.94653],[92.67701,12.94645],[92.67727,12.94653]]],[[[92.67056,12.94951],[92.67048,12.94957],[92.67026,12.94978],[92.67009,12.9499],[92.67001,12.94993],[92.66987,12.94994],[92.66966,12.9499],[92.66956,12.94983],[92.66949,12.94975],[92.66953,12.94963],[92.66971,12.94934],[92.66972,12.94918],[92.66969,12.94913],[92.6695,12.94907],[92.66944,12.94901],[92.66941,12.94892],[92.66943,12.94874],[92.6695,12.94868],[92.66965,12.94867],[92.66982,12.94872],[92.66986,12.94866],[92.66989,12.94851],[92.66994,12.94844],[92.67,12.94842],[92.67008,12.94842],[92.67037,12.94856],[92.6705,12.94865],[92.67068,12.94869],[92.67074,12.94869],[92.67084,12.9486],[92.67085,12.94841],[92.67091,12.94827],[92.67072,12.94829],[92.67028,12.94813],[92.6701,12.94801],[92.67006,12.94792],[92.67006,12.9478],[92.67011,12.94778],[92.67025,12.94777],[92.67044,12.94782],[92.67058,12.9479],[92.67071,12.94794],[92.67101,12.94817],[92.67099,12.94828],[92.67131,12.94847],[92.67144,12.94849],[92.67152,12.94848],[92.67161,12.94841],[92.67182,12.94835],[92.67198,12.94839],[92.67203,12.94851],[92.67203,12.94867],[92.672,12.94886],[92.67198,12.94891],[92.67198,12.94906],[92.67223,12.94938],[92.67224,12.94953],[92.67217,12.9496],[92.6719,12.94975],[92.67172,12.94978],[92.67139,12.94976],[92.67108,12.94969],[92.6708,12.94954],[92.67069,12.9495],[92.67056,12.94951]]],[[[92.67558,12.94908],[92.67555,12.94935],[92.67543,12.94951],[92.67534,12.94959],[92.67515,12.94971],[92.67494,12.94976],[92.67461,12.94976],[92.67349,12.94959],[92.67274,12.94937],[92.67254,12.94929],[92.67238,12.94917],[92.67225,12.94902],[92.67217,12.94885],[92.67223,12.94869],[92.67238,12.94852],[92.67257,12.94843],[92.67281,12.94843],[92.67312,12.94865],[92.67321,12.94878],[92.6737,12.94879],[92.67425,12.94888],[92.67441,12.94893],[92.67456,12.94893],[92.67465,12.94896],[92.67472,12.94896],[92.67477,12.94883],[92.6747,12.94836],[92.67486,12.94836],[92.67515,12.94855],[92.67544,12.94888],[92.67558,12.94908]]],[[[92.66729,12.9513],[92.66708,12.95131],[92.6669,12.95129],[92.66674,12.95129],[92.66643,12.95117],[92.66627,12.95105],[92.66621,12.95095],[92.6662,12.95072],[92.66625,12.95063],[92.66635,12.95056],[92.66628,12.95046],[92.66627,12.95041],[92.66627,12.95029],[92.66629,12.95022],[92.66643,12.95011],[92.66678,12.95003],[92.66704,12.95006],[92.6672,12.95003],[92.66733,12.94994],[92.66744,12.9498],[92.66766,12.94972],[92.66784,12.94976],[92.66808,12.94975],[92.66816,12.94967],[92.6683,12.94944],[92.66842,12.94946],[92.66851,12.94954],[92.66859,12.94969],[92.66863,12.94983],[92.66863,12.94999],[92.66862,12.95015],[92.6686,12.95021],[92.66847,12.95038],[92.66833,12.95064],[92.66833,12.95073],[92.66836,12.95081],[92.66838,12.951],[92.66836,12.95105],[92.66826,12.95115],[92.66813,12.95119],[92.66769,12.95102],[92.66759,12.95107],[92.6674,12.95123],[92.66737,12.95128],[92.66729,12.9513]]],[[[92.6676,12.95222],[92.66737,12.95223],[92.6672,12.95218],[92.66712,12.95213],[92.66702,12.95204],[92.66699,12.95198],[92.66699,12.95191],[92.667,12.95182],[92.66704,12.95178],[92.66715,12.95177],[92.66729,12.95177],[92.66737,12.95174],[92.66746,12.95167],[92.66759,12.95156],[92.66773,12.95147],[92.66779,12.95147],[92.66786,12.95143],[92.66796,12.95143],[92.66808,12.95145],[92.66816,12.95149],[92.66822,12.95164],[92.66822,12.95172],[92.66817,12.95182],[92.66807,12.95195],[92.66792,12.95205],[92.66768,12.95218],[92.6676,12.95222]]],[[[92.67085,12.95182],[92.67039,12.95237],[92.67024,12.95233],[92.67018,12.95219],[92.67023,12.95188],[92.67015,12.95175],[92.67007,12.95177],[92.66969,12.95191],[92.66955,12.95191],[92.66942,12.95187],[92.66932,12.95179],[92.66923,12.95166],[92.66904,12.95144],[92.66892,12.95096],[92.66891,12.95062],[92.66893,12.95047],[92.66914,12.95022],[92.66925,12.95016],[92.6694,12.95014],[92.66958,12.95017],[92.66983,12.95025],[92.66996,12.95026],[92.67066,12.95007],[92.67092,12.95011],[92.67093,12.95021],[92.67091,12.95031],[92.67069,12.95067],[92.67056,12.95103],[92.67055,12.95123],[92.67061,12.9513],[92.67075,12.95132],[92.67088,12.95122],[92.67095,12.95148],[92.67093,12.95166],[92.67085,12.95182]]],[[[92.89042,12.93276],[92.89035,12.93277],[92.8902,12.93285],[92.89014,12.93282],[92.8899,12.9326],[92.88981,12.93263],[92.88978,12.93276],[92.88968,12.93269],[92.88953,12.93271],[92.88951,12.93288],[92.88914,12.93261],[92.88907,12.93231],[92.88897,12.93215],[92.88916,12.932],[92.88919,12.93172],[92.88939,12.93179],[92.88962,12.93144],[92.88977,12.93152],[92.8899,12.93146],[92.88994,12.93162],[92.89007,12.93165],[92.89015,12.93143],[92.89034,12.93162],[92.89043,12.93153],[92.89057,12.93162],[92.89067,12.93156],[92.89081,12.93174],[92.89109,12.93174],[92.89112,12.93191],[92.89124,12.93185],[92.89132,12.93187],[92.89139,12.93201],[92.89161,12.93203],[92.89166,12.93224],[92.89179,12.93236],[92.89181,12.93243],[92.89164,12.93244],[92.89159,12.93261],[92.89149,12.93262],[92.89142,12.9326],[92.89137,12.93269],[92.89132,12.93269],[92.89115,12.93261],[92.89109,12.93272],[92.89099,12.93267],[92.89086,12.93275],[92.89074,12.93271],[92.89067,12.9327],[92.89065,12.9328],[92.8905,12.93275],[92.89042,12.93276]]],[[[92.66937,12.95222],[92.6696,12.95226],[92.66971,12.95237],[92.66985,12.95256],[92.66993,12.95268],[92.66998,12.9528],[92.66997,12.95288],[92.66991,12.95299],[92.66981,12.95307],[92.66961,12.95317],[92.66948,12.95321],[92.66935,12.95317],[92.66924,12.9531],[92.66913,12.95307],[92.66907,12.95303],[92.66898,12.95293],[92.6689,12.95281],[92.66885,12.95266],[92.66887,12.95249],[92.6689,12.9524],[92.66894,12.95233],[92.66899,12.95228],[92.66905,12.95227],[92.66917,12.95223],[92.66937,12.95222]]],[[[92.87482,12.93489],[92.87574,12.93567],[92.87599,12.93619],[92.87573,12.9367],[92.87482,12.93683],[92.87408,12.9364],[92.87424,12.93507],[92.87382,12.93474],[92.8727,12.93499],[92.87017,12.93384],[92.86705,12.9332],[92.86491,12.9333],[92.86309,12.9337],[92.86203,12.93416],[92.8611,12.9341],[92.85974,12.9336],[92.85848,12.93199],[92.85767,12.93008],[92.85753,12.92881],[92.85768,12.92606],[92.85826,12.92493],[92.86038,12.92251],[92.86128,12.92091],[92.86186,12.919],[92.86268,12.91805],[92.86463,12.91698],[92.86587,12.91746],[92.86829,12.91711],[92.87036,12.91632],[92.87139,12.91583],[92.87164,12.91541],[92.87208,12.91536],[92.87224,12.91546],[92.87225,12.91622],[92.87295,12.91704],[92.87319,12.91779],[92.87307,12.91815],[92.8734,12.91833],[92.87412,12.92138],[92.8741,12.92257],[92.87349,12.92401],[92.87401,12.92463],[92.87511,12.9248],[92.87681,12.92374],[92.87927,12.91997],[92.87955,12.91982],[92.88006,12.92003],[92.88004,12.92084],[92.88075,12.92245],[92.88144,12.92238],[92.88192,12.92195],[92.88199,12.92147],[92.88251,12.9212],[92.88289,12.92156],[92.88325,12.92159],[92.8843,12.9228],[92.88467,12.92285],[92.88519,12.92346],[92.88553,12.92355],[92.88565,12.92426],[92.88537,12.92509],[92.8849,12.92567],[92.88493,12.92595],[92.88456,12.92604],[92.88458,12.9264],[92.88402,12.92695],[92.88423,12.92738],[92.88405,12.92758],[92.8847,12.92821],[92.88509,12.92829],[92.88567,12.92776],[92.88608,12.92768],[92.88611,12.9275],[92.88729,12.92756],[92.88765,12.92827],[92.88747,12.92882],[92.88756,12.9292],[92.88578,12.92989],[92.88548,12.93033],[92.88492,12.93061],[92.88346,12.93043],[92.88293,12.93089],[92.88318,12.93188],[92.88295,12.93204],[92.88265,12.93192],[92.8828,12.93133],[92.88219,12.93069],[92.88178,12.9306],[92.8799,12.93114],[92.87937,12.93152],[92.87978,12.93255],[92.87971,12.93291],[92.87883,12.93285],[92.87773,12.93199],[92.87681,12.93195],[92.87598,12.93309],[92.8763,12.93455],[92.87626,12.9352],[92.87574,12.93506],[92.87505,12.93438],[92.87487,12.93436],[92.87482,12.93489]]],[[[92.66926,12.95401],[92.669,12.95458],[92.6689,12.95505],[92.6688,12.95533],[92.66878,12.95544],[92.66882,12.95585],[92.66878,12.95602],[92.66866,12.95603],[92.6685,12.95573],[92.66821,12.95547],[92.66806,12.95529],[92.66803,12.95521],[92.66805,12.95514],[92.6682,12.95498],[92.66824,12.95487],[92.66821,12.95474],[92.66815,12.95463],[92.66795,12.9546],[92.66785,12.95455],[92.66758,12.95438],[92.66736,12.95402],[92.66727,12.95402],[92.66711,12.9542],[92.66701,12.95419],[92.66685,12.95402],[92.66674,12.95382],[92.6667,12.95357],[92.66671,12.95326],[92.66673,12.95315],[92.6668,12.95311],[92.66696,12.95309],[92.6671,12.95318],[92.66727,12.95339],[92.66736,12.95343],[92.6675,12.95345],[92.66764,12.95339],[92.66762,12.95318],[92.66767,12.95312],[92.66773,12.95312],[92.66799,12.95338],[92.66836,12.95356],[92.66848,12.95357],[92.66858,12.95352],[92.66858,12.9534],[92.66815,12.95306],[92.66808,12.95299],[92.66797,12.95279],[92.66796,12.9527],[92.66799,12.95265],[92.66817,12.95256],[92.66829,12.95256],[92.66844,12.95264],[92.66863,12.95279],[92.66885,12.95305],[92.66902,12.95317],[92.66924,12.9534],[92.6693,12.95354],[92.66932,12.95374],[92.66926,12.95401]]],[[[92.89052,12.93846],[92.89026,12.93842],[92.89,12.93846],[92.88968,12.93841],[92.88955,12.93853],[92.88911,12.93828],[92.88858,12.93778],[92.88779,12.93672],[92.88779,12.93584],[92.88786,12.9348],[92.888,12.93454],[92.8879,12.93406],[92.88783,12.93387],[92.88769,12.93365],[92.8874,12.93335],[92.88741,12.93313],[92.88754,12.93305],[92.88794,12.93303],[92.8883,12.93321],[92.88836,12.93313],[92.88865,12.9332],[92.88896,12.93354],[92.88914,12.93333],[92.88932,12.93342],[92.88941,12.93348],[92.88943,12.9336],[92.88968,12.9337],[92.88975,12.9339],[92.88992,12.9339],[92.88983,12.93409],[92.89,12.93429],[92.88997,12.93447],[92.89,12.93462],[92.89007,12.93471],[92.89015,12.93472],[92.89025,12.93492],[92.8904,12.93494],[92.89048,12.93505],[92.89077,12.93522],[92.89093,12.93538],[92.89114,12.93549],[92.89129,12.93562],[92.89145,12.93565],[92.89157,12.93589],[92.89187,12.9359],[92.89297,12.93653],[92.89319,12.93654],[92.89328,12.93646],[92.89332,12.93684],[92.89341,12.9369],[92.89341,12.93695],[92.8934,12.93705],[92.89329,12.93706],[92.8934,12.93727],[92.89316,12.93733],[92.89327,12.93752],[92.89309,12.93745],[92.89283,12.93747],[92.89279,12.93762],[92.89264,12.93761],[92.89262,12.93772],[92.89244,12.9377],[92.89223,12.93791],[92.89191,12.9379],[92.89169,12.93803],[92.8916,12.93769],[92.89155,12.93773],[92.89153,12.93808],[92.89114,12.93834],[92.8908,12.93836],[92.89061,12.93832],[92.89052,12.93846]]],[[[92.90038,12.94017],[92.90024,12.9402],[92.89997,12.94033],[92.8998,12.94037],[92.89959,12.94045],[92.89933,12.94051],[92.89911,12.94071],[92.89898,12.94089],[92.89883,12.94108],[92.89873,12.94131],[92.89861,12.9415],[92.89854,12.94154],[92.8984,12.94154],[92.89847,12.9413],[92.89858,12.94126],[92.89854,12.94112],[92.89862,12.94105],[92.89875,12.94096],[92.89875,12.94083],[92.89883,12.94073],[92.899,12.94061],[92.899,12.94056],[92.89909,12.94036],[92.89927,12.94036],[92.8993,12.94046],[92.8994,12.94044],[92.89944,12.94028],[92.89952,12.9403],[92.89965,12.94028],[92.8997,12.9402],[92.89986,12.94026],[92.89997,12.94016],[92.90012,12.9401],[92.90038,12.94017]]],[[[92.90038,12.94017],[92.90026,12.93995],[92.9003,12.93987],[92.90039,12.93985],[92.90025,12.93966],[92.90038,12.93964],[92.9004,12.93941],[92.9005,12.93941],[92.9005,12.93931],[92.90058,12.93931],[92.90062,12.93916],[92.90068,12.93909],[92.90078,12.9391],[92.9008,12.93896],[92.90093,12.93892],[92.90096,12.93883],[92.90094,12.93876],[92.90113,12.93883],[92.90119,12.93861],[92.90137,12.93866],[92.90141,12.93859],[92.9014,12.93852],[92.90154,12.93855],[92.90147,12.93845],[92.9017,12.93832],[92.9016,12.93817],[92.90181,12.93806],[92.90201,12.93774],[92.90225,12.93766],[92.9024,12.93748],[92.90249,12.93759],[92.90263,12.93744],[92.90281,12.93737],[92.90285,12.93754],[92.90291,12.93762],[92.90302,12.93761],[92.90301,12.93769],[92.90288,12.93788],[92.90297,12.93807],[92.9029,12.93816],[92.90294,12.93833],[92.90286,12.93843],[92.90279,12.93846],[92.9029,12.93869],[92.90276,12.93882],[92.90274,12.93898],[92.90244,12.93924],[92.9026,12.93941],[92.90251,12.93959],[92.90269,12.93978],[92.90234,12.93997],[92.9023,12.94014],[92.90231,12.94051],[92.90217,12.94039],[92.90203,12.94045],[92.9021,12.94061],[92.902,12.94069],[92.90174,12.94063],[92.90156,12.94049],[92.90106,12.94113],[92.90067,12.94156],[92.90053,12.94167],[92.90039,12.94175],[92.89992,12.9419],[92.89974,12.94192],[92.89943,12.9419],[92.89899,12.94176],[92.89887,12.94169],[92.89881,12.94158],[92.89885,12.94138],[92.8989,12.94132],[92.89967,12.94094],[92.90022,12.94039],[92.90038,12.94017]]],[[[92.90068,12.94226],[92.90051,12.94232],[92.90043,12.94232],[92.90014,12.94232],[92.90006,12.94228],[92.89997,12.94232],[92.89975,12.94232],[92.89965,12.94235],[92.89929,12.94236],[92.8992,12.94242],[92.89912,12.94237],[92.89907,12.9423],[92.8991,12.9422],[92.89925,12.94214],[92.89963,12.94214],[92.90016,12.94209],[92.90061,12.94202],[92.90093,12.94187],[92.90122,12.94168],[92.90138,12.94154],[92.90156,12.94122],[92.90166,12.94098],[92.90169,12.94075],[92.90182,12.94078],[92.90193,12.94078],[92.90193,12.94086],[92.90157,12.94154],[92.90159,12.94162],[92.90147,12.94176],[92.90146,12.94183],[92.90134,12.94193],[92.90128,12.94195],[92.9012,12.94194],[92.90113,12.94205],[92.90096,12.94216],[92.90086,12.94216],[92.90076,12.94221],[92.90068,12.94226]]],[[[92.89887,12.94231],[92.89877,12.94234],[92.89873,12.94242],[92.89857,12.94257],[92.89854,12.94244],[92.89851,12.94237],[92.89842,12.94235],[92.89832,12.94241],[92.89822,12.94236],[92.89828,12.94222],[92.8982,12.94207],[92.89821,12.94195],[92.89825,12.94182],[92.89838,12.94161],[92.8985,12.94161],[92.89863,12.94165],[92.89865,12.94172],[92.89869,12.94184],[92.89879,12.94194],[92.89888,12.94201],[92.89906,12.94213],[92.89899,12.94225],[92.89887,12.94231]]],[[[92.87878,12.96118],[92.87878,12.96159],[92.87886,12.96196],[92.87856,12.96228],[92.87812,12.96272],[92.87771,12.9627],[92.87752,12.96249],[92.87755,12.96228],[92.87784,12.96153],[92.8781,12.96122],[92.87866,12.96091],[92.87878,12.96118]]],[[[92.88278,12.96588],[92.88276,12.966],[92.88272,12.9661],[92.88264,12.96619],[92.88251,12.96627],[92.88241,12.96637],[92.88226,12.96645],[92.88212,12.96652],[92.88196,12.96655],[92.88189,12.96659],[92.8817,12.96656],[92.8816,12.96648],[92.88155,12.96625],[92.88155,12.96596],[92.88162,12.96585],[92.88161,12.96575],[92.8817,12.96579],[92.88175,12.9658],[92.88189,12.96557],[92.88197,12.96549],[92.88218,12.96556],[92.88233,12.96541],[92.88244,12.96539],[92.88255,12.96543],[92.88256,12.96554],[92.88265,12.96554],[92.88275,12.96562],[92.88278,12.9657],[92.88278,12.96588]]],[[[92.69482,12.99135],[92.69279,12.99225],[92.68763,12.9902],[92.68693,12.98744],[92.6823,12.98496],[92.68185,12.98228],[92.6809,12.98251],[92.68019,12.9793],[92.67862,12.9783],[92.67902,12.97618],[92.66971,12.96611],[92.67029,12.96374],[92.66806,12.9572],[92.66896,12.95757],[92.6716,12.95017],[92.67607,12.94989],[92.67713,12.9478],[92.67823,12.94926],[92.67949,12.94854],[92.67753,12.94815],[92.67901,12.94656],[92.67756,12.94295],[92.67893,12.94313],[92.679,12.94219],[92.67621,12.94019],[92.67553,12.93386],[92.6735,12.93445],[92.67428,12.93351],[92.6718,12.93074],[92.67366,12.92923],[92.67196,12.92838],[92.6694,12.92301],[92.66841,12.91849],[92.66959,12.91019],[92.66883,12.90587],[92.66474,12.90247],[92.6666,12.89648],[92.66418,12.89361],[92.6657,12.8894],[92.66346,12.88224],[92.65297,12.86757],[92.64964,12.86659],[92.65008,12.85994],[92.64861,12.86185],[92.64686,12.86201],[92.64965,12.8536],[92.64993,12.84583],[92.65415,12.83453],[92.65978,12.82664],[92.6597,12.81818],[92.66392,12.81268],[92.66553,12.80789],[92.66391,12.79858],[92.66234,12.79624],[92.66086,12.79595],[92.65918,12.79748],[92.6577,12.79532],[92.66351,12.79342],[92.66339,12.7917],[92.66662,12.79108],[92.66534,12.78402],[92.66728,12.78259],[92.66869,12.78352],[92.67301,12.80079],[92.67528,12.80492],[92.67461,12.80731],[92.67711,12.80949],[92.68201,12.80873],[92.68301,12.81198],[92.68351,12.81059],[92.68606,12.81037],[92.68529,12.81255],[92.68743,12.8141],[92.68691,12.81671],[92.68805,12.81697],[92.68614,12.82096],[92.68606,12.8224],[92.68735,12.82301],[92.68551,12.8244],[92.68684,12.82625],[92.68361,12.82978],[92.681,12.82887],[92.67459,12.82264],[92.6766,12.82612],[92.67673,12.82984],[92.6737,12.83196],[92.67606,12.83107],[92.67813,12.83198],[92.67108,12.83762],[92.67229,12.83805],[92.67325,12.83614],[92.67516,12.83608],[92.67478,12.83816],[92.67658,12.83717],[92.67861,12.83913],[92.68283,12.83603],[92.69125,12.83503],[92.6996,12.84023],[92.70293,12.845],[92.70304,12.84693],[92.70145,12.84829],[92.70277,12.85304],[92.70406,12.85281],[92.7082,12.85604],[92.71386,12.86322],[92.71376,12.8668],[92.71871,12.87484],[92.7187,12.8766],[92.71712,12.87801],[92.71274,12.87786],[92.71167,12.88237],[92.70885,12.8833],[92.70576,12.88237],[92.70441,12.88015],[92.70581,12.87959],[92.70413,12.877],[92.70289,12.87796],[92.70237,12.87672],[92.7016,12.87732],[92.70306,12.87819],[92.70402,12.87724],[92.70384,12.88004],[92.70732,12.88393],[92.7128,12.88345],[92.7156,12.88052],[92.71821,12.88132],[92.72066,12.8896],[92.7216,12.89814],[92.71971,12.89927],[92.7217,12.90097],[92.72201,12.90355],[92.7195,12.91067],[92.71972,12.91493],[92.71874,12.9155],[92.71976,12.91998],[92.71807,12.92189],[92.71404,12.92282],[92.72051,12.92497],[92.71972,12.93376],[92.72117,12.93773],[92.72146,12.94457],[92.71933,12.9475],[92.71745,12.94346],[92.71411,12.94275],[92.70978,12.94604],[92.7136,12.94347],[92.71691,12.95054],[92.71667,12.95483],[92.71838,12.95663],[92.71738,12.9564],[92.71913,12.96183],[92.71925,12.98097],[92.71679,12.98315],[92.71233,12.98255],[92.71328,12.98027],[92.70901,12.97997],[92.71052,12.97883],[92.70995,12.97809],[92.7089,12.98005],[92.71286,12.98039],[92.71172,12.98241],[92.71369,12.98359],[92.71342,12.98442],[92.71168,12.98315],[92.70863,12.98676],[92.70995,12.98814],[92.70763,12.98869],[92.70695,12.98781],[92.70526,12.98999],[92.70001,12.98788],[92.69482,12.99135]]],[[[92.88652,12.97895],[92.88658,12.97897],[92.88661,12.97903],[92.88672,12.97907],[92.88679,12.97912],[92.88699,12.97917],[92.88705,12.97922],[92.88704,12.97927],[92.88698,12.9793],[92.88695,12.97938],[92.88706,12.97951],[92.8871,12.97964],[92.88709,12.97973],[92.88702,12.9798],[92.88704,12.97989],[92.88704,12.98016],[92.88696,12.98024],[92.88694,12.98028],[92.88682,12.98037],[92.88668,12.9804],[92.88638,12.98038],[92.88622,12.98028],[92.88603,12.98014],[92.88584,12.9799],[92.88584,12.97971],[92.88584,12.97962],[92.88595,12.97938],[92.88605,12.97928],[92.88611,12.97914],[92.88627,12.97904],[92.88639,12.97903],[92.88647,12.97894],[92.88652,12.97895]]],[[[92.88843,12.98141],[92.88837,12.98144],[92.88832,12.98142],[92.88831,12.98136],[92.88828,12.98131],[92.88819,12.98122],[92.88811,12.98111],[92.8881,12.98092],[92.88814,12.98087],[92.88836,12.98087],[92.88841,12.98082],[92.88844,12.98076],[92.88852,12.98072],[92.88861,12.98072],[92.88871,12.98081],[92.88883,12.98088],[92.88885,12.98095],[92.88885,12.98112],[92.88882,12.98122],[92.88876,12.98124],[92.88869,12.98134],[92.88862,12.98139],[92.88855,12.98142],[92.88848,12.9814],[92.88843,12.98141]]],[[[92.89359,12.98416],[92.89335,12.98422],[92.89325,12.98413],[92.89313,12.98407],[92.89305,12.98399],[92.89301,12.98386],[92.89299,12.98367],[92.89295,12.9835],[92.89276,12.98325],[92.89279,12.98313],[92.89287,12.98309],[92.89301,12.98311],[92.89313,12.98316],[92.89322,12.98309],[92.89331,12.98309],[92.89341,12.98312],[92.89361,12.98343],[92.8937,12.98352],[92.89372,12.98357],[92.89373,12.98362],[92.8938,12.98368],[92.89387,12.98376],[92.89394,12.98392],[92.89393,12.98398],[92.89389,12.9841],[92.89381,12.98412],[92.89366,12.98412],[92.89359,12.98416]]],[[[92.97747,12.9862],[92.9777,12.98631],[92.97784,12.98643],[92.97801,12.98661],[92.97814,12.98697],[92.97821,12.98725],[92.97817,12.98751],[92.97808,12.98765],[92.97792,12.98772],[92.97768,12.98773],[92.97747,12.98764],[92.97727,12.98759],[92.97698,12.98732],[92.97672,12.98687],[92.97681,12.98664],[92.9769,12.9865],[92.97703,12.98632],[92.97723,12.98618],[92.97747,12.9862]]],[[[92.83126,13.00003],[92.8325,13.00138],[92.83274,13.0016],[92.83293,13.00182],[92.83308,13.00205],[92.83305,13.00227],[92.83289,13.00259],[92.83261,13.00273],[92.83251,13.00279],[92.83232,13.00278],[92.8321,13.00266],[92.83152,13.00244],[92.83114,13.00199],[92.83086,13.00138],[92.83081,13.00075],[92.83091,13.0002],[92.83096,13.00009],[92.83106,13.00003],[92.83126,13.00003]]],[[[92.97328,12.99409],[92.97352,12.9942],[92.97329,12.99432],[92.97335,12.99449],[92.97318,12.99442],[92.97288,12.99442],[92.97285,12.99416],[92.97305,12.99412],[92.97327,12.99393],[92.97328,12.99409]]],[[[92.7847,13.01363],[92.7846,13.0136],[92.7845,13.01358],[92.78446,13.0135],[92.7845,13.01341],[92.78457,13.01338],[92.78456,13.0133],[92.78448,13.01324],[92.78447,13.01314],[92.78463,13.01318],[92.78468,13.0132],[92.78474,13.01322],[92.78477,13.01328],[92.78478,13.01335],[92.78481,13.01341],[92.7848,13.01351],[92.78468,13.01348],[92.7847,13.01363]]],[[[92.97052,12.99929],[92.9704,12.99956],[92.97031,12.9996],[92.97022,12.99952],[92.97017,12.99941],[92.97023,12.99923],[92.97031,12.99913],[92.97046,12.9991],[92.97052,12.99929]]],[[[93.00736,12.99919],[93.00611,12.9992],[93.00566,12.99866],[93.00337,12.99797],[93.00379,12.99759],[93.00327,12.99722],[93.00276,12.99758],[93.00052,12.99744],[92.99725,12.99419],[92.99284,12.99193],[92.98841,12.99385],[92.9856,12.99459],[92.98444,12.99445],[92.98414,12.99294],[92.98507,12.99075],[92.98467,12.99056],[92.98508,12.9904],[92.98543,12.98846],[92.98662,12.9873],[92.98711,12.98557],[92.98423,12.98478],[92.98385,12.98241],[92.9829,12.98159],[92.98063,12.98128],[92.97869,12.98023],[92.9787,12.97619],[92.97459,12.97439],[92.972,12.97025],[92.96837,12.97177],[92.96978,12.97511],[92.96923,12.9761],[92.9657,12.97716],[92.96507,12.97804],[92.96575,12.9792],[92.96739,12.98031],[92.96804,12.9797],[92.96989,12.98029],[92.97099,12.98139],[92.97097,12.98247],[92.96964,12.98308],[92.9672,12.98558],[92.96499,12.98658],[92.96417,12.98846],[92.96341,12.98853],[92.96402,12.98912],[92.96344,12.99032],[92.96038,12.99056],[92.95869,12.99019],[92.95783,12.98949],[92.95607,12.98402],[92.95363,12.98278],[92.95112,12.98023],[92.95203,12.97804],[92.95311,12.97735],[92.95372,12.97554],[92.95821,12.97419],[92.95905,12.97344],[92.959,12.97285],[92.95671,12.9713],[92.95681,12.97066],[92.95989,12.97062],[92.96103,12.9703],[92.96145,12.96953],[92.9605,12.96861],[92.95924,12.96844],[92.95985,12.96713],[92.95977,12.96552],[92.95872,12.96523],[92.95716,12.96608],[92.95587,12.96806],[92.95342,12.96856],[92.95258,12.96816],[92.9522,12.96546],[92.95244,12.96347],[92.95296,12.96345],[92.95221,12.96298],[92.95284,12.96239],[92.95357,12.95846],[92.95426,12.95821],[92.95382,12.95834],[92.95371,12.95792],[92.95407,12.95723],[92.95471,12.95746],[92.957,12.95551],[92.96053,12.95406],[92.9687,12.95369],[92.96968,12.95243],[92.96701,12.95027],[92.97192,12.94779],[92.97259,12.94639],[92.97179,12.94563],[92.97005,12.94605],[92.9665,12.94804],[92.96081,12.94993],[92.95865,12.94966],[92.9573,12.94896],[92.95335,12.94484],[92.95153,12.94173],[92.95129,12.94201],[92.95027,12.94107],[92.95019,12.94002],[92.95091,12.93993],[92.95228,12.93819],[92.95221,12.93529],[92.95296,12.93475],[92.95335,12.93499],[92.9532,12.93428],[92.95553,12.93688],[92.9567,12.93971],[92.95884,12.94141],[92.96096,12.94206],[92.96805,12.94248],[92.97021,12.94117],[92.96873,12.93703],[92.96935,12.93471],[92.9698,12.93486],[92.97053,12.93421],[92.97099,12.9345],[92.97114,12.93408],[92.97141,12.93438],[92.97225,12.93354],[92.97514,12.9331],[92.97605,12.93239],[92.97665,12.93169],[92.97769,12.92799],[92.97864,12.92804],[92.9777,12.92925],[92.97822,12.93015],[92.9797,12.93037],[92.98018,12.93097],[92.97982,12.9312],[92.98074,12.93099],[92.98162,12.93159],[92.98141,12.93192],[92.98207,12.93203],[92.98319,12.93545],[92.98319,12.93749],[92.9819,12.93997],[92.98203,12.94074],[92.9814,12.94135],[92.9816,12.94181],[92.98113,12.94219],[92.98127,12.9429],[92.98087,12.94309],[92.97972,12.94729],[92.98291,12.9506],[92.98503,12.95178],[92.98821,12.95477],[92.98785,12.95628],[92.98669,12.95792],[92.98508,12.95903],[92.98131,12.96325],[92.98139,12.9679],[92.98221,12.96869],[92.98505,12.96983],[92.98504,12.97045],[92.98706,12.97251],[92.98868,12.97528],[92.99171,12.97808],[92.99222,12.97894],[92.99248,12.98374],[92.99424,12.98525],[92.99619,12.98586],[93.00052,12.98845],[93.00254,12.99082],[93.00283,12.99044],[93.00391,12.99135],[93.00388,12.99231],[93.00433,12.99179],[93.00526,12.99229],[93.00611,12.99362],[93.00609,12.995],[93.00736,12.9959],[93.00743,12.9976],[93.008,12.99864],[93.00736,12.99919]]],[[[92.98859,13.00151],[92.98858,13.00161],[92.98821,13.00165],[92.98771,13.00152],[92.9877,13.00141],[92.98668,13.00141],[92.98635,13.00119],[92.98601,13.00105],[92.98582,13.00078],[92.98573,13.0],[92.9858,12.99991],[92.98548,12.99971],[92.98525,12.99907],[92.98521,12.99863],[92.98567,12.99789],[92.98612,12.9977],[92.98649,12.99771],[92.98674,12.99783],[92.98679,12.9978],[92.98686,12.99781],[92.98725,12.99795],[92.98743,12.99797],[92.98765,12.9981],[92.98782,12.99831],[92.98802,12.99829],[92.98821,12.99838],[92.98844,12.99874],[92.98864,12.99893],[92.9887,12.99909],[92.9887,12.9992],[92.98864,12.99939],[92.98857,12.99944],[92.98842,12.99947],[92.9882,12.99946],[92.98839,12.99975],[92.98826,13.0],[92.9884,13.00024],[92.98862,13.00044],[92.98891,13.00045],[92.9893,13.00054],[92.98943,13.00075],[92.98931,13.00106],[92.98903,13.00141],[92.98857,13.00141],[92.98859,13.00151]]],[[[92.94928,13.0186],[92.94938,13.01879],[92.94939,13.01902],[92.94924,13.02],[92.94939,13.02151],[92.9493,13.02236],[92.94904,13.02346],[92.94838,13.02468],[92.94749,13.02541],[92.94697,13.02569],[92.94616,13.02592],[92.94533,13.02598],[92.9449,13.02596],[92.94419,13.02556],[92.94403,13.02531],[92.94407,13.02498],[92.94429,13.02472],[92.94491,13.02439],[92.94562,13.02417],[92.94606,13.02376],[92.94647,13.02247],[92.9469,13.02174],[92.94756,13.02022],[92.94796,13.01949],[92.9487,13.01879],[92.94911,13.01854],[92.94928,13.0186]]],[[[92.92984,13.02535],[92.92876,13.02654],[92.92743,13.02704],[92.92348,13.0315],[92.92199,13.03171],[92.92069,13.03131],[92.91855,13.02829],[92.91787,13.02538],[92.9141,13.01941],[92.91423,13.01901],[92.91337,13.01722],[92.91379,13.01602],[92.91338,13.01556],[92.91319,13.01286],[92.91347,13.01098],[92.91676,13.0056],[92.91976,13.00002],[92.92127,12.99989],[92.92387,12.99886],[92.92888,12.99768],[92.93113,12.99813],[92.9314,12.99876],[92.92974,13.00002],[92.931,13.00002],[92.93429,12.99734],[92.93387,12.99707],[92.93402,12.99583],[92.93488,12.99457],[92.93521,12.99452],[92.93531,12.99483],[92.93558,12.99449],[92.93569,12.99479],[92.93611,12.99435],[92.93624,12.99453],[92.93668,12.99439],[92.93689,12.99474],[92.93707,12.99448],[92.9372,12.99479],[92.93739,12.99462],[92.93787,12.99507],[92.938,12.99482],[92.93989,12.99533],[92.94083,12.99498],[92.94055,12.99439],[92.94086,12.99462],[92.94099,12.9943],[92.94147,12.99448],[92.9416,12.99417],[92.942,12.99482],[92.94209,12.9946],[92.94261,12.99496],[92.94274,12.99478],[92.94288,12.99512],[92.9433,12.99531],[92.94342,12.99508],[92.94354,12.99536],[92.94383,12.99515],[92.94383,12.9954],[92.9441,12.99539],[92.94402,12.99568],[92.94433,12.99558],[92.94444,12.99636],[92.94518,12.99673],[92.94516,12.99707],[92.94546,12.99703],[92.94623,12.99874],[92.94386,13.00105],[92.94384,13.00184],[92.94325,13.00251],[92.94253,13.00249],[92.94136,13.00307],[92.94076,13.00474],[92.94089,13.00664],[92.93945,13.00916],[92.93949,13.00974],[92.93914,13.01024],[92.93916,13.0108],[92.93992,13.01132],[92.93972,13.01168],[92.93928,13.01174],[92.9394,13.01205],[92.94027,13.01306],[92.94055,13.01286],[92.9412,13.01331],[92.94058,13.01402],[92.94143,13.01492],[92.94227,13.01647],[92.94257,13.01787],[92.94234,13.01925],[92.94126,13.02063],[92.93976,13.02046],[92.93811,13.02157],[92.93802,13.02235],[92.93943,13.02326],[92.93975,13.02377],[92.93965,13.02511],[92.93903,13.02588],[92.93489,13.02706],[92.93363,13.02675],[92.93083,13.02537],[92.92984,13.02535]]],[[[92.78552,13.05522],[92.78553,13.05533],[92.78557,13.05539],[92.78564,13.0554],[92.78565,13.05545],[92.78562,13.05554],[92.7855,13.05568],[92.78543,13.05564],[92.78532,13.05543],[92.78528,13.05533],[92.78528,13.05526],[92.78538,13.05521],[92.78552,13.05522]]],[[[92.78809,13.06079],[92.78808,13.06092],[92.78796,13.06091],[92.78793,13.06084],[92.78792,13.06079],[92.78786,13.06076],[92.78776,13.06078],[92.78773,13.06067],[92.78768,13.06062],[92.78753,13.06062],[92.78748,13.06056],[92.78748,13.06051],[92.78752,13.06045],[92.7876,13.06045],[92.78772,13.0604],[92.78775,13.06033],[92.78782,13.06025],[92.78796,13.06042],[92.78814,13.06046],[92.78816,13.06061],[92.78809,13.06079]]],[[[92.93194,13.04866],[92.93215,13.04875],[92.93228,13.04892],[92.93307,13.05106],[92.93312,13.05131],[92.93311,13.0515],[92.93306,13.0517],[92.93279,13.05215],[92.93211,13.05371],[92.93183,13.05408],[92.9314,13.05443],[92.9312,13.05447],[92.93102,13.05442],[92.93091,13.05434],[92.93037,13.05327],[92.93025,13.052],[92.93023,13.05116],[92.93029,13.05073],[92.93039,13.0505],[92.93055,13.05038],[92.93078,13.05015],[92.93095,13.04988],[92.93139,13.04895],[92.93155,13.04876],[92.93175,13.04867],[92.93194,13.04866]]],[[[92.79493,13.07527],[92.79503,13.07533],[92.7951,13.07549],[92.79512,13.07565],[92.79511,13.07575],[92.79504,13.07586],[92.79506,13.07602],[92.7951,13.07608],[92.79523,13.07618],[92.79535,13.07638],[92.79529,13.07652],[92.7951,13.07665],[92.79501,13.07677],[92.79496,13.07697],[92.7949,13.07697],[92.79484,13.07693],[92.79478,13.07685],[92.79468,13.07679],[92.79466,13.07673],[92.79473,13.07666],[92.79477,13.0766],[92.79477,13.07655],[92.79472,13.07649],[92.79458,13.07605],[92.79454,13.07597],[92.79451,13.07588],[92.79453,13.07581],[92.79458,13.07577],[92.79462,13.07571],[92.7946,13.07564],[92.79454,13.07549],[92.79459,13.07541],[92.7947,13.0753],[92.79483,13.07523],[92.79489,13.07522],[92.79493,13.07527]]],[[[92.9169,13.06003],[92.91606,13.06257],[92.91577,13.06321],[92.91475,13.06488],[92.91389,13.06669],[92.91345,13.06722],[92.91325,13.06735],[92.91307,13.0673],[92.91287,13.06716],[92.91276,13.06678],[92.91262,13.06443],[92.9124,13.06311],[92.91202,13.06182],[92.91197,13.06114],[92.91203,13.061],[92.91315,13.06018],[92.91328,13.05993],[92.91315,13.05961],[92.91217,13.05899],[92.91199,13.05855],[92.91205,13.05816],[92.91269,13.05749],[92.91306,13.05729],[92.91563,13.05641],[92.91637,13.05601],[92.91728,13.05547],[92.91845,13.05427],[92.91879,13.05422],[92.91893,13.05443],[92.91888,13.05467],[92.91803,13.05769],[92.91783,13.05872],[92.91753,13.05952],[92.91721,13.05983],[92.91698,13.0599],[92.9169,13.06003]]],[[[92.91414,13.06725],[92.91428,13.06737],[92.91437,13.06755],[92.91445,13.06773],[92.91448,13.06797],[92.91435,13.0684],[92.9141,13.06879],[92.91382,13.06899],[92.91358,13.06904],[92.91326,13.06902],[92.91318,13.069],[92.91295,13.06883],[92.91291,13.06876],[92.91294,13.06839],[92.91308,13.06817],[92.91327,13.06793],[92.91347,13.06774],[92.91357,13.06753],[92.91374,13.0673],[92.91383,13.06725],[92.91399,13.0672],[92.91414,13.06725]]],[[[92.91182,13.07415],[92.91178,13.07429],[92.9117,13.07439],[92.91163,13.07444],[92.91164,13.0745],[92.91164,13.07459],[92.91152,13.07487],[92.91135,13.07518],[92.91105,13.07565],[92.91098,13.07584],[92.91079,13.07608],[92.91038,13.07631],[92.91009,13.07641],[92.90983,13.07644],[92.90961,13.07639],[92.90949,13.07629],[92.90943,13.07618],[92.90943,13.0761],[92.90943,13.07562],[92.90946,13.07549],[92.90967,13.07526],[92.90986,13.075],[92.91091,13.07408],[92.91106,13.07402],[92.91111,13.07402],[92.91162,13.07379],[92.91175,13.07376],[92.91182,13.07382],[92.91184,13.07394],[92.91182,13.07415]]],[[[92.72762,13.08991],[92.72787,13.09],[92.72797,13.09007],[92.72834,13.09059],[92.72887,13.09119],[92.72905,13.09118],[92.72911,13.09149],[92.72942,13.09174],[92.72965,13.0922],[92.7297,13.09252],[92.73102,13.09383],[92.73122,13.09427],[92.7313,13.09464],[92.73156,13.09499],[92.73164,13.09521],[92.73158,13.09552],[92.73136,13.09578],[92.73069,13.09601],[92.72998,13.09606],[92.7294,13.09569],[92.72909,13.09538],[92.72883,13.09468],[92.72868,13.09461],[92.72813,13.09389],[92.72784,13.09341],[92.72752,13.09267],[92.72713,13.09135],[92.72699,13.09042],[92.72699,13.09009],[92.7271,13.08991],[92.72738,13.08986],[92.72762,13.08991]]],[[[92.71939,13.09869],[92.71865,13.09911],[92.71794,13.09918],[92.71602,13.09871],[92.71536,13.09888],[92.71482,13.09819],[92.71141,13.09652],[92.70755,13.09635],[92.70429,13.09569],[92.70322,13.09611],[92.7014,13.09807],[92.69973,13.09925],[92.69849,13.09922],[92.69761,13.09892],[92.69512,13.09722],[92.69446,13.0961],[92.69425,13.0951],[92.6939,13.09109],[92.69688,13.08014],[92.69691,13.07702],[92.69729,13.07618],[92.69729,13.07473],[92.69758,13.07337],[92.69781,13.07269],[92.69931,13.07045],[92.70065,13.06982],[92.7034,13.06952],[92.70451,13.06969],[92.70601,13.07086],[92.70603,13.07231],[92.70307,13.07775],[92.70297,13.07887],[92.70323,13.08026],[92.7067,13.08473],[92.70811,13.08746],[92.71145,13.09102],[92.71297,13.0918],[92.7177,13.09338],[92.71931,13.09456],[92.72011,13.0956],[92.72041,13.09698],[92.71993,13.09813],[92.71939,13.09869]]],[[[92.79319,13.09291],[92.79314,13.09294],[92.79309,13.09301],[92.79302,13.09322],[92.79297,13.09331],[92.79288,13.09339],[92.79268,13.09313],[92.79266,13.09306],[92.79265,13.09274],[92.79267,13.09266],[92.79273,13.09267],[92.79281,13.0927],[92.7929,13.09276],[92.79303,13.09281],[92.79314,13.09279],[92.79321,13.09269],[92.79325,13.09256],[92.79328,13.09249],[92.79333,13.0925],[92.79339,13.09253],[92.79345,13.09258],[92.79351,13.09264],[92.79359,13.09273],[92.7936,13.09285],[92.7935,13.09287],[92.79332,13.09288],[92.79319,13.09291]]],[[[92.79303,13.09404],[92.7929,13.09413],[92.79279,13.09412],[92.79278,13.09393],[92.79287,13.09379],[92.79289,13.09371],[92.79293,13.09364],[92.79307,13.09383],[92.79316,13.09384],[92.7933,13.09388],[92.79326,13.09404],[92.79319,13.09408],[92.79311,13.09403],[92.79303,13.09404]]],[[[92.84033,13.14292],[92.84046,13.14297],[92.84055,13.14302],[92.84065,13.14311],[92.84076,13.14335],[92.84078,13.14349],[92.84078,13.1436],[92.84073,13.14376],[92.84068,13.14387],[92.84058,13.14395],[92.84045,13.14394],[92.84034,13.1439],[92.84011,13.1437],[92.84005,13.14361],[92.84002,13.14347],[92.84,13.1433],[92.84,13.1431],[92.84004,13.143],[92.8402,13.14293],[92.84033,13.14292]]],[[[92.80864,13.14807],[92.80868,13.1482],[92.80862,13.14829],[92.80862,13.14845],[92.80864,13.1485],[92.8087,13.14857],[92.8087,13.14866],[92.80861,13.14881],[92.80868,13.14892],[92.80869,13.14897],[92.80865,13.14913],[92.80871,13.14928],[92.80867,13.14937],[92.80867,13.14945],[92.80869,13.14959],[92.80864,13.14967],[92.80861,13.1498],[92.80857,13.1499],[92.80826,13.1497],[92.80806,13.14953],[92.8079,13.14946],[92.80778,13.14933],[92.80779,13.14927],[92.8079,13.14913],[92.80796,13.14902],[92.80795,13.14891],[92.80792,13.1487],[92.80787,13.14865],[92.80775,13.14857],[92.80773,13.14849],[92.80775,13.14835],[92.80775,13.14826],[92.80769,13.14815],[92.80768,13.14808],[92.80777,13.14803],[92.80795,13.14808],[92.80801,13.14802],[92.80814,13.14794],[92.80839,13.14804],[92.80854,13.14794],[92.80858,13.14798],[92.80864,13.14807]]],[[[92.80439,13.15364],[92.80432,13.15377],[92.80425,13.15376],[92.8042,13.15372],[92.80418,13.15364],[92.80412,13.15361],[92.804,13.15362],[92.80385,13.15368],[92.80383,13.15362],[92.80373,13.1534],[92.80353,13.15337],[92.80344,13.1533],[92.80339,13.15319],[92.80336,13.153],[92.80339,13.15294],[92.8035,13.15286],[92.8035,13.15273],[92.80356,13.15262],[92.80363,13.15264],[92.8037,13.15263],[92.80375,13.15257],[92.80374,13.15244],[92.80374,13.15239],[92.8038,13.15237],[92.80398,13.15237],[92.80403,13.15234],[92.80404,13.15226],[92.8042,13.1522],[92.8043,13.15219],[92.80435,13.1522],[92.80444,13.15226],[92.80449,13.15232],[92.80454,13.15249],[92.80475,13.15251],[92.80475,13.15259],[92.80474,13.15265],[92.80475,13.15276],[92.80479,13.15283],[92.8048,13.15291],[92.80479,13.15307],[92.80477,13.15313],[92.80469,13.1532],[92.80466,13.15326],[92.80461,13.15347],[92.80457,13.15352],[92.80444,13.15357],[92.80439,13.15364]]],[[[92.8096,13.16293],[92.80976,13.16296],[92.80976,13.16304],[92.80977,13.16317],[92.8098,13.16326],[92.80976,13.16335],[92.80969,13.16346],[92.80975,13.16351],[92.80978,13.1636],[92.80965,13.16374],[92.80964,13.16394],[92.80955,13.164],[92.80949,13.16391],[92.80945,13.1638],[92.80939,13.16378],[92.80939,13.16368],[92.80947,13.16353],[92.80932,13.16342],[92.80933,13.16336],[92.80938,13.16327],[92.80935,13.16321],[92.80928,13.16313],[92.80941,13.16302],[92.80945,13.16296],[92.8095,13.16285],[92.8096,13.16293]]],[[[92.81008,13.16712],[92.80999,13.16716],[92.8099,13.16728],[92.80984,13.16732],[92.8096,13.1674],[92.80954,13.1674],[92.80944,13.16733],[92.80933,13.16716],[92.80923,13.16713],[92.80922,13.16701],[92.80927,13.16696],[92.80939,13.16696],[92.80948,13.16691],[92.80952,13.16684],[92.80953,13.16676],[92.80965,13.16675],[92.80977,13.16683],[92.80986,13.1668],[92.81007,13.16671],[92.81023,13.16662],[92.81029,13.16651],[92.81043,13.16645],[92.81046,13.1665],[92.81046,13.1666],[92.81044,13.1667],[92.81029,13.16706],[92.81021,13.16708],[92.81016,13.16709],[92.81008,13.16712]]],[[[92.80957,13.16919],[92.80949,13.16923],[92.8094,13.16919],[92.80914,13.16905],[92.80918,13.16897],[92.80925,13.16895],[92.80932,13.16895],[92.80939,13.16892],[92.80945,13.16888],[92.8097,13.16874],[92.8097,13.16868],[92.80973,13.1686],[92.8099,13.16853],[92.81,13.16852],[92.81015,13.16858],[92.81027,13.1686],[92.81032,13.16856],[92.81042,13.16856],[92.81049,13.1686],[92.81056,13.16867],[92.81061,13.16873],[92.81059,13.16882],[92.8105,13.16892],[92.81038,13.16898],[92.8102,13.16901],[92.81004,13.16906],[92.8099,13.16919],[92.80966,13.16917],[92.80957,13.16919]]],[[[92.79425,13.16755],[92.7949,13.16758],[92.79548,13.16772],[92.79635,13.168],[92.79647,13.16884],[92.79632,13.16991],[92.7961,13.17073],[92.79524,13.17127],[92.79426,13.17142],[92.79314,13.1714],[92.79237,13.1706],[92.79246,13.16935],[92.79294,13.16852],[92.79323,13.16811],[92.79311,13.16795],[92.79312,13.16785],[92.79324,13.16767],[92.79365,13.16757],[92.79425,13.16755]]],[[[92.79225,13.17158],[92.79221,13.17169],[92.79213,13.17174],[92.79203,13.17154],[92.79195,13.17152],[92.79185,13.17156],[92.7918,13.17157],[92.79174,13.17147],[92.79174,13.17138],[92.79167,13.17132],[92.79154,13.17128],[92.79159,13.17122],[92.79174,13.17116],[92.79182,13.17111],[92.79186,13.17105],[92.79187,13.17091],[92.79204,13.17091],[92.79217,13.17085],[92.79224,13.17092],[92.79228,13.17101],[92.79242,13.17111],[92.79254,13.17119],[92.79258,13.17124],[92.79246,13.17129],[92.79236,13.17144],[92.79225,13.17158]]],[[[92.82537,13.20903],[92.82515,13.20878],[92.82505,13.20882],[92.82495,13.20898],[92.82488,13.20882],[92.82477,13.20873],[92.82468,13.20873],[92.82459,13.20899],[92.82448,13.20882],[92.82435,13.20875],[92.82425,13.20876],[92.82421,13.2087],[92.82409,13.20869],[92.82393,13.20855],[92.82376,13.20861],[92.82366,13.20841],[92.82357,13.20844],[92.82354,13.20857],[92.82327,13.20827],[92.82316,13.20841],[92.82296,13.20805],[92.82273,13.2082],[92.82268,13.20785],[92.82246,13.20783],[92.82261,13.20763],[92.82238,13.20727],[92.82255,13.20723],[92.82249,13.20694],[92.82267,13.20694],[92.82281,13.20697],[92.82292,13.20695],[92.82299,13.20675],[92.8231,13.20685],[92.82322,13.2068],[92.82331,13.20703],[92.82358,13.20708],[92.82353,13.20733],[92.82381,13.20743],[92.82387,13.20763],[92.82417,13.20777],[92.82438,13.20776],[92.82481,13.20808],[92.82484,13.2082],[92.82505,13.20807],[92.82517,13.20824],[92.82534,13.20821],[92.82541,13.2084],[92.82565,13.20839],[92.82579,13.2087],[92.82601,13.20872],[92.82588,13.20894],[92.82558,13.20895],[92.82537,13.20903]]],[[[92.82728,13.20942],[92.82718,13.20957],[92.82716,13.20971],[92.82733,13.20985],[92.82709,13.21005],[92.82709,13.21019],[92.82732,13.21041],[92.82709,13.21045],[92.82705,13.21062],[92.82697,13.21073],[92.82694,13.21083],[92.82671,13.21107],[92.82662,13.21124],[92.82645,13.2114],[92.82629,13.21146],[92.82615,13.21144],[92.82603,13.21138],[92.82592,13.21135],[92.82577,13.21134],[92.82553,13.21129],[92.82559,13.21119],[92.82561,13.21104],[92.82553,13.21101],[92.82547,13.21089],[92.8255,13.21069],[92.82551,13.21055],[92.82546,13.21049],[92.82548,13.21039],[92.82572,13.21008],[92.82572,13.20992],[92.82569,13.20977],[92.82594,13.20972],[92.82598,13.20951],[92.82621,13.20949],[92.8262,13.20921],[92.82644,13.20924],[92.8266,13.20894],[92.82691,13.20909],[92.82697,13.20917],[92.82716,13.20926],[92.82728,13.20942]]],[[[92.82853,13.21047],[92.82859,13.21066],[92.82866,13.21077],[92.82868,13.21088],[92.82844,13.2109],[92.82844,13.21097],[92.82851,13.2111],[92.82825,13.2111],[92.82821,13.21115],[92.82826,13.21133],[92.82823,13.21139],[92.82803,13.21138],[92.82793,13.21144],[92.82782,13.21163],[92.82771,13.21165],[92.82771,13.21158],[92.82768,13.21143],[92.82761,13.21133],[92.82743,13.21129],[92.82731,13.21121],[92.82755,13.21107],[92.82761,13.21101],[92.82764,13.21094],[92.82764,13.21082],[92.82761,13.21069],[92.82794,13.21065],[92.82791,13.2105],[92.82783,13.21033],[92.82812,13.21041],[92.82828,13.21048],[92.8284,13.2105],[92.82853,13.21047]]],[[[93.05942,13.22379],[93.05873,13.22622],[93.05851,13.22662],[93.05833,13.22678],[93.05832,13.22701],[93.05795,13.22723],[93.05741,13.22741],[93.05682,13.22733],[93.05624,13.22691],[93.05581,13.22642],[93.05557,13.22578],[93.05571,13.22494],[93.05608,13.22427],[93.05677,13.22382],[93.05706,13.22299],[93.05738,13.2227],[93.05779,13.22191],[93.0585,13.22122],[93.06005,13.22021],[93.06037,13.21985],[93.06074,13.21975],[93.06104,13.21985],[93.0613,13.22021],[93.06132,13.22068],[93.06114,13.2211],[93.06088,13.22145],[93.05999,13.22213],[93.05961,13.22252],[93.05964,13.22266],[93.05942,13.22379]]],[[[93.06054,13.22482],[93.06081,13.22507],[93.06104,13.22551],[93.061,13.22618],[93.06102,13.22722],[93.06096,13.22769],[93.06073,13.22794],[93.06022,13.2282],[93.05971,13.22833],[93.05925,13.22811],[93.05904,13.22755],[93.0591,13.22705],[93.05949,13.22606],[93.05999,13.22505],[93.06011,13.22487],[93.06028,13.22479],[93.06054,13.22482]]],[[[92.83909,13.2486],[92.83926,13.2487],[92.83938,13.24887],[92.83934,13.24904],[92.83918,13.24916],[92.83899,13.24915],[92.83881,13.24907],[92.83869,13.2489],[92.83875,13.24873],[92.83887,13.24863],[92.83895,13.2486],[92.83909,13.2486]]],[[[93.04923,13.26369],[93.04913,13.26371],[93.04868,13.26365],[93.04857,13.26369],[93.04843,13.26377],[93.04826,13.26375],[93.04823,13.26359],[93.0483,13.26339],[93.04824,13.26332],[93.04796,13.26334],[93.04786,13.26328],[93.04786,13.26319],[93.0482,13.26294],[93.04814,13.2628],[93.04819,13.26272],[93.04835,13.26272],[93.04835,13.26258],[93.04863,13.26222],[93.04874,13.26214],[93.0488,13.26219],[93.04888,13.2623],[93.04889,13.26238],[93.04923,13.26241],[93.04922,13.26274],[93.04934,13.2628],[93.04946,13.26278],[93.04953,13.2629],[93.04943,13.26301],[93.04937,13.26325],[93.04931,13.26328],[93.04925,13.26335],[93.04929,13.26356],[93.04923,13.26369]]],[[[92.8001,13.28552],[92.8002,13.28558],[92.80029,13.28572],[92.80033,13.28603],[92.80023,13.28623],[92.80019,13.28633],[92.8002,13.28645],[92.80026,13.28665],[92.80025,13.28677],[92.80009,13.2869],[92.79989,13.28673],[92.79981,13.28665],[92.79978,13.28644],[92.79983,13.28627],[92.79984,13.28619],[92.79977,13.28596],[92.79976,13.28578],[92.79978,13.28568],[92.79991,13.28554],[92.80001,13.28552],[92.8001,13.28552]]],[[[92.81583,13.28808],[92.81563,13.28819],[92.81504,13.28813],[92.81463,13.28827],[92.81451,13.28827],[92.81439,13.28819],[92.81431,13.28799],[92.81409,13.28801],[92.81375,13.28787],[92.81367,13.28747],[92.81335,13.2875],[92.81321,13.28745],[92.81308,13.28731],[92.81307,13.28714],[92.81321,13.28688],[92.8136,13.28639],[92.81368,13.28603],[92.81382,13.28583],[92.81432,13.28562],[92.81466,13.28562],[92.8149,13.28518],[92.81512,13.28466],[92.81538,13.2845],[92.81556,13.28367],[92.81573,13.28346],[92.81603,13.28329],[92.81599,13.28254],[92.81605,13.28239],[92.81617,13.28228],[92.81642,13.28227],[92.81645,13.282],[92.81654,13.28179],[92.81676,13.28162],[92.81697,13.28171],[92.81729,13.28227],[92.8174,13.28236],[92.81776,13.28234],[92.81796,13.28252],[92.81796,13.28302],[92.81789,13.28363],[92.81812,13.28401],[92.8183,13.28461],[92.81886,13.28542],[92.81898,13.28535],[92.8192,13.28538],[92.8192,13.28571],[92.81918,13.28583],[92.81889,13.28609],[92.81873,13.28596],[92.81848,13.28602],[92.8184,13.28617],[92.81833,13.2867],[92.81821,13.28691],[92.81807,13.28691],[92.81783,13.28676],[92.81774,13.28674],[92.81761,13.28709],[92.81759,13.28734],[92.8174,13.28755],[92.81722,13.28764],[92.81706,13.2876],[92.81691,13.2875],[92.81679,13.2875],[92.81657,13.2878],[92.81645,13.28789],[92.81604,13.28793],[92.81583,13.28808]]],[[[93.0679,13.26663],[93.06798,13.26676],[93.06802,13.26682],[93.06802,13.26693],[93.06801,13.26701],[93.06799,13.26715],[93.06794,13.26717],[93.06784,13.26716],[93.06768,13.26708],[93.06757,13.26694],[93.06757,13.2668],[93.06758,13.26662],[93.06773,13.26658],[93.0679,13.26663]]],[[[93.0684,13.2672],[93.06847,13.26728],[93.06848,13.26739],[93.06846,13.26752],[93.06839,13.26759],[93.06823,13.26755],[93.06806,13.26747],[93.06802,13.26733],[93.06804,13.26721],[93.06809,13.26718],[93.06823,13.26716],[93.0684,13.2672]]],[[[93.06819,13.26776],[93.06826,13.26784],[93.06827,13.26796],[93.06825,13.26808],[93.06818,13.26815],[93.06802,13.26811],[93.06785,13.26803],[93.06781,13.26789],[93.06783,13.26777],[93.06788,13.26774],[93.06802,13.26772],[93.06819,13.26776]]],[[[93.06842,13.2686],[93.0685,13.26866],[93.0685,13.26889],[93.06842,13.269],[93.06833,13.26903],[93.06826,13.26897],[93.06818,13.26878],[93.06824,13.26864],[93.06834,13.2686],[93.06842,13.2686]]],[[[93.07089,13.27263],[93.07095,13.27264],[93.07098,13.27272],[93.071,13.27283],[93.07094,13.27291],[93.07087,13.27294],[93.07077,13.2729],[93.07072,13.27284],[93.07072,13.27273],[93.07076,13.27264],[93.07082,13.27263],[93.07089,13.27263]]],[[[93.0704,13.27285],[93.07051,13.2729],[93.07054,13.273],[93.07054,13.27308],[93.07041,13.27315],[93.07029,13.27306],[93.07027,13.27295],[93.07028,13.27287],[93.07033,13.27285],[93.0704,13.27285]]],[[[93.07004,13.27304],[93.07013,13.27312],[93.07013,13.27321],[93.07011,13.2733],[93.07006,13.27335],[93.06991,13.27336],[93.06982,13.27324],[93.06982,13.27307],[93.06987,13.27301],[93.06994,13.27299],[93.07004,13.27304]]],[[[93.07109,13.27314],[93.07112,13.27328],[93.07112,13.27344],[93.07114,13.27355],[93.07108,13.27362],[93.07095,13.27355],[93.07091,13.27341],[93.07091,13.27325],[93.07093,13.27314],[93.07109,13.27314]]],[[[93.07066,13.27349],[93.07069,13.27356],[93.07069,13.27373],[93.07056,13.2738],[93.07047,13.27371],[93.07047,13.27362],[93.0705,13.27349],[93.07066,13.27349]]],[[[93.07171,13.27366],[93.07178,13.27375],[93.07179,13.27386],[93.07177,13.27399],[93.0717,13.27406],[93.07154,13.27402],[93.07137,13.27393],[93.07134,13.27379],[93.07135,13.27368],[93.0714,13.27364],[93.07154,13.27363],[93.07171,13.27366]]],[[[93.07021,13.27372],[93.07032,13.27377],[93.07041,13.27384],[93.07043,13.27397],[93.07044,13.27409],[93.07039,13.27419],[93.07031,13.27424],[93.07024,13.27421],[93.07012,13.27415],[93.07008,13.27402],[93.07007,13.27389],[93.07008,13.2738],[93.07009,13.27373],[93.07021,13.27372]]],[[[93.07111,13.27391],[93.07118,13.27397],[93.07118,13.2742],[93.0711,13.27432],[93.07101,13.27434],[93.07094,13.27428],[93.07086,13.27409],[93.07092,13.27395],[93.07102,13.27391],[93.07111,13.27391]]],[[[93.0707,13.27454],[93.07078,13.27467],[93.07083,13.27473],[93.07083,13.27484],[93.07082,13.27492],[93.07079,13.27506],[93.07074,13.27508],[93.07065,13.27507],[93.07049,13.27499],[93.07037,13.27485],[93.07037,13.27471],[93.07039,13.27453],[93.07053,13.27449],[93.0707,13.27454]]],[[[93.03295,13.27973],[93.03304,13.28013],[93.03287,13.2804],[93.03258,13.28068],[93.0322,13.28083],[93.03173,13.28075],[93.0314,13.2806],[93.03125,13.28045],[93.03152,13.28019],[93.03165,13.27979],[93.03207,13.27953],[93.03263,13.27943],[93.03295,13.27973]]],[[[93.01495,13.28543],[93.01492,13.28556],[93.01464,13.2858],[93.01422,13.28588],[93.01383,13.28584],[93.01355,13.2856],[93.01344,13.28538],[93.01339,13.28512],[93.01341,13.2848],[93.01355,13.28464],[93.01369,13.28461],[93.01364,13.28437],[93.01369,13.2841],[93.01379,13.2839],[93.01393,13.28378],[93.01403,13.28361],[93.01448,13.28363],[93.01435,13.28336],[93.01449,13.28325],[93.01473,13.28315],[93.01535,13.28306],[93.01562,13.28331],[93.01553,13.28356],[93.01522,13.28383],[93.01563,13.28399],[93.0159,13.28407],[93.01617,13.28435],[93.0164,13.28441],[93.01652,13.28479],[93.01651,13.28502],[93.01596,13.28531],[93.01561,13.28531],[93.01501,13.28519],[93.01495,13.28543]]],[[[93.02123,13.29434],[93.02133,13.29439],[93.02139,13.29451],[93.0214,13.2946],[93.02139,13.29467],[93.02133,13.29474],[93.02105,13.29469],[93.021,13.2946],[93.02097,13.29454],[93.02096,13.29444],[93.02103,13.29436],[93.02114,13.29434],[93.02123,13.29434]]],[[[93.02169,13.29501],[93.02183,13.2951],[93.02191,13.29522],[93.0219,13.29531],[93.02177,13.29535],[93.02169,13.29535],[93.02145,13.29522],[93.02139,13.2951],[93.02142,13.29502],[93.02155,13.29497],[93.02169,13.29501]]],[[[92.98472,13.29847],[92.98493,13.29899],[92.98509,13.29946],[92.9851,13.29969],[92.98512,13.2997],[92.98511,13.29979],[92.98512,13.29987],[92.9851,13.30001],[92.98396,13.29979],[92.98332,13.29952],[92.98314,13.29937],[92.98312,13.29929],[92.9831,13.29926],[92.98301,13.29901],[92.98309,13.29849],[92.9835,13.29835],[92.98365,13.29833],[92.98377,13.29826],[92.98401,13.29817],[92.98472,13.29847]]],[[[93.04901,13.29499],[93.0491,13.29529],[93.04892,13.29546],[93.04915,13.29562],[93.04928,13.29587],[93.04918,13.29611],[93.049,13.29594],[93.04878,13.29562],[93.04851,13.29553],[93.04853,13.2951],[93.04836,13.2951],[93.04799,13.29505],[93.04764,13.29508],[93.04718,13.29556],[93.04673,13.29533],[93.04654,13.29544],[93.0456,13.29504],[93.04516,13.29464],[93.04481,13.29442],[93.04469,13.29417],[93.04487,13.29387],[93.04574,13.29383],[93.04586,13.29396],[93.04601,13.29342],[93.04641,13.29322],[93.04708,13.2934],[93.04743,13.29345],[93.04789,13.29329],[93.04852,13.29322],[93.0491,13.29371],[93.04938,13.29363],[93.04962,13.2938],[93.04971,13.29421],[93.04971,13.29436],[93.04941,13.2944],[93.0487,13.29386],[93.04817,13.2943],[93.04842,13.29454],[93.04866,13.29491],[93.04901,13.29499]]],[[[93.08012,13.29486],[93.08028,13.29489],[93.08032,13.29504],[93.08023,13.29511],[93.08016,13.29513],[93.07994,13.29513],[93.07974,13.29498],[93.0798,13.29486],[93.07994,13.29485],[93.08012,13.29486]]],[[[93.07571,13.29539],[93.07586,13.29546],[93.07587,13.29563],[93.07586,13.2957],[93.07577,13.29581],[93.07568,13.29576],[93.07558,13.29576],[93.07558,13.29555],[93.07561,13.29539],[93.07571,13.29539]]],[[[93.07605,13.29613],[93.07607,13.29587],[93.07607,13.29557],[93.0762,13.29556],[93.0763,13.29563],[93.07645,13.29583],[93.07636,13.29601],[93.07624,13.2961],[93.07605,13.29613]]],[[[93.07746,13.29566],[93.0776,13.29574],[93.0776,13.29594],[93.07752,13.29602],[93.07739,13.29601],[93.0773,13.29588],[93.0773,13.29575],[93.07736,13.29566],[93.07746,13.29566]]],[[[93.078,13.29567],[93.07819,13.29567],[93.07822,13.29581],[93.07819,13.29593],[93.07807,13.29604],[93.07788,13.29601],[93.07783,13.29589],[93.07783,13.29581],[93.07786,13.29569],[93.07792,13.29566],[93.078,13.29567]]],[[[93.07684,13.29578],[93.0769,13.29581],[93.07696,13.29588],[93.07696,13.29608],[93.07684,13.29616],[93.0767,13.29607],[93.07668,13.29593],[93.07668,13.29582],[93.07676,13.29578],[93.07684,13.29578]]],[[[93.07605,13.29613],[93.07595,13.29623],[93.07587,13.29627],[93.07574,13.2962],[93.07565,13.29604],[93.07567,13.29593],[93.07575,13.29589],[93.07589,13.29589],[93.07601,13.29593],[93.07605,13.29613]]],[[[93.07863,13.29603],[93.07863,13.29617],[93.07856,13.29631],[93.07849,13.29634],[93.07838,13.29612],[93.07843,13.29603],[93.07851,13.29597],[93.07863,13.29603]]],[[[93.07624,13.29627],[93.07624,13.29637],[93.07611,13.29658],[93.07593,13.29654],[93.07593,13.29635],[93.07605,13.29624],[93.07624,13.29627]]],[[[93.07755,13.29614],[93.07762,13.29614],[93.0777,13.29621],[93.0777,13.29635],[93.07764,13.29649],[93.07743,13.29642],[93.07743,13.29621],[93.07746,13.29614],[93.07755,13.29614]]],[[[93.07872,13.29652],[93.07878,13.29658],[93.07878,13.29667],[93.07877,13.29678],[93.07862,13.29687],[93.0785,13.29673],[93.0785,13.29658],[93.07856,13.29654],[93.07865,13.29652],[93.07872,13.29652]]],[[[93.08201,13.2971],[93.08212,13.29725],[93.08213,13.29739],[93.08205,13.29746],[93.08193,13.29752],[93.08179,13.29746],[93.08176,13.29738],[93.08176,13.29717],[93.08178,13.29707],[93.08187,13.29704],[93.08201,13.2971]]],[[[93.08,13.29749],[93.08004,13.29767],[93.08003,13.29778],[93.08,13.29786],[93.07993,13.29793],[93.07979,13.29778],[93.0797,13.29766],[93.0797,13.29753],[93.07976,13.29745],[93.07989,13.29742],[93.08,13.29749]]],[[[93.08103,13.29854],[93.08098,13.2986],[93.08092,13.29861],[93.08076,13.29855],[93.08073,13.29841],[93.08069,13.29847],[93.08056,13.29839],[93.08054,13.29826],[93.08054,13.29815],[93.08065,13.29809],[93.08079,13.29809],[93.0809,13.29826],[93.08081,13.29836],[93.08081,13.29841],[93.08088,13.29841],[93.08102,13.29839],[93.08103,13.29854]]],[[[93.08137,13.29857],[93.08144,13.29868],[93.08144,13.29879],[93.08146,13.29892],[93.0812,13.29889],[93.08112,13.29873],[93.08112,13.29861],[93.08126,13.29857],[93.08137,13.29857]]],[[[93.0821,13.29969],[93.08211,13.29982],[93.08212,13.29991],[93.0821,13.29996],[93.08201,13.30001],[93.08191,13.29995],[93.08191,13.29964],[93.08198,13.29963],[93.0821,13.29969]]],[[[93.08255,13.29991],[93.08259,13.29998],[93.08259,13.30009],[93.08252,13.30018],[93.08238,13.30024],[93.08233,13.30024],[93.08227,13.30008],[93.08231,13.29991],[93.08246,13.29988],[93.08255,13.29991]]],[[[93.08304,13.30015],[93.083,13.3003],[93.0829,13.30033],[93.08283,13.30033],[93.08282,13.30026],[93.08283,13.30015],[93.08292,13.30011],[93.08304,13.30015]]],[[[93.02186,13.31504],[93.02187,13.31515],[93.02181,13.31523],[93.0217,13.31534],[93.0216,13.31533],[93.02157,13.31528],[93.02153,13.31519],[93.02156,13.31503],[93.02171,13.31497],[93.02186,13.31504]]],[[[93.02232,13.31564],[93.02237,13.31575],[93.02237,13.31586],[93.02228,13.31596],[93.02218,13.31599],[93.0221,13.31594],[93.02207,13.31586],[93.02208,13.31574],[93.02221,13.31564],[93.02232,13.31564]]],[[[93.02209,13.31626],[93.02219,13.31636],[93.0222,13.31644],[93.02217,13.31656],[93.02206,13.3166],[93.02198,13.31653],[93.0219,13.31649],[93.02188,13.31636],[93.022,13.31622],[93.02209,13.31626]]],[[[93.02142,13.31815],[93.02155,13.31819],[93.02152,13.31841],[93.02133,13.31846],[93.02123,13.31828],[93.02127,13.31815],[93.02142,13.31815]]],[[[93.005,13.3065],[93.0048,13.30694],[93.00536,13.30786],[93.00524,13.30927],[93.00538,13.31053],[93.00699,13.31329],[93.00768,13.31483],[93.00804,13.31629],[93.00803,13.31747],[93.00856,13.32002],[93.00829,13.32071],[93.00783,13.32089],[93.0069,13.32064],[93.00488,13.31939],[93.00257,13.31725],[93.00245,13.3159],[93.00147,13.31382],[93.0,13.31298],[92.99914,13.31128],[92.9968,13.30787],[92.99544,13.30473],[92.99517,13.3029],[92.99468,13.30103],[92.99391,13.29992],[92.99391,13.29948],[92.99434,13.29848],[92.99487,13.29759],[92.99523,13.2974],[92.99592,13.29826],[92.99645,13.29982],[92.99696,13.30018],[92.99795,13.30051],[93.00022,13.3002],[93.00045,13.30048],[93.00055,13.30114],[93.0004,13.30183],[93.00047,13.30304],[93.00117,13.30379],[93.00242,13.30435],[93.00371,13.30375],[93.00529,13.30357],[93.00759,13.30374],[93.01081,13.30285],[93.01115,13.30253],[93.01091,13.30156],[93.01142,13.30114],[93.01283,13.30287],[93.01293,13.3034],[93.01246,13.30601],[93.0118,13.30725],[93.01125,13.30793],[93.00984,13.30922],[93.00865,13.30988],[93.00777,13.31005],[93.007,13.30984],[93.0065,13.30941],[93.00604,13.3087],[93.00564,13.3076],[93.00555,13.30626],[93.0053,13.30624],[93.005,13.3065]]],[[[93.00547,13.32279],[93.00504,13.32296],[93.00354,13.32311],[93.00298,13.32291],[93.00247,13.32301],[93.00146,13.32291],[93.00089,13.32263],[93.0,13.32277],[92.99961,13.32274],[92.99721,13.32215],[92.99676,13.32182],[92.99668,13.32186],[92.99657,13.3218],[92.99537,13.32091],[92.99432,13.31969],[92.99425,13.31933],[92.99434,13.31895],[92.99585,13.31771],[92.99719,13.31696],[92.99776,13.31682],[92.99832,13.31654],[92.99934,13.31624],[93.00022,13.31624],[93.0012,13.31725],[93.00162,13.3178],[93.00237,13.31932],[93.00309,13.32],[93.00517,13.3212],[93.00564,13.32164],[93.006,13.32213],[93.00595,13.32234],[93.00573,13.3226],[93.00547,13.32279]]],[[[93.0228,13.32884],[93.02139,13.32929],[93.02023,13.32943],[93.01862,13.32918],[93.01796,13.32918],[93.0175,13.32938],[93.0169,13.32923],[93.01612,13.32791],[93.01592,13.32678],[93.01557,13.32642],[93.01549,13.32585],[93.0156,13.32475],[93.01526,13.32368],[93.01515,13.32171],[93.01524,13.31959],[93.01484,13.31707],[93.01444,13.31701],[93.01453,13.31381],[93.01408,13.31164],[93.01436,13.31103],[93.01434,13.31041],[93.01385,13.30872],[93.01405,13.30813],[93.01658,13.3081],[93.01768,13.30783],[93.01863,13.30706],[93.02062,13.30453],[93.021,13.30436],[93.02108,13.30394],[93.02128,13.30394],[93.021,13.30364],[93.02093,13.30301],[93.0212,13.3016],[93.02159,13.30163],[93.02207,13.30194],[93.02232,13.30249],[93.0222,13.30277],[93.023,13.30598],[93.02314,13.30758],[93.02275,13.30863],[93.02253,13.30886],[93.02253,13.30919],[93.02151,13.31003],[93.0218,13.31118],[93.02069,13.31182],[93.02032,13.31247],[93.02072,13.31556],[93.02012,13.31598],[93.0198,13.31646],[93.01985,13.3167],[93.02056,13.31728],[93.02029,13.32147],[93.02054,13.32267],[93.02073,13.32305],[93.02114,13.32322],[93.0214,13.32385],[93.02138,13.32433],[93.02164,13.32447],[93.02132,13.32519],[93.0214,13.32543],[93.02187,13.32635],[93.02243,13.32611],[93.02293,13.32629],[93.02336,13.32611],[93.02388,13.32614],[93.02402,13.32645],[93.02431,13.32653],[93.02431,13.32683],[93.02453,13.32712],[93.02427,13.32818],[93.02379,13.32816],[93.02365,13.32838],[93.0228,13.32884]]],[[[92.9691,13.3392],[92.96887,13.33928],[92.96864,13.33905],[92.96846,13.33878],[92.96839,13.33842],[92.96821,13.33805],[92.96798,13.33806],[92.96844,13.33891],[92.96843,13.33904],[92.96823,13.33918],[92.96717,13.33895],[92.96635,13.33868],[92.96579,13.33825],[92.9654,13.33787],[92.96477,13.33697],[92.96449,13.3361],[92.96447,13.33584],[92.96401,13.33556],[92.96392,13.33542],[92.9639,13.33518],[92.96396,13.33507],[92.96441,13.33498],[92.96464,13.33496],[92.96476,13.335],[92.9652,13.33532],[92.96525,13.33469],[92.96509,13.33477],[92.96496,13.33459],[92.96504,13.33399],[92.96515,13.33375],[92.96547,13.33337],[92.96609,13.33281],[92.96661,13.33264],[92.96677,13.3327],[92.96685,13.33255],[92.96702,13.33246],[92.96715,13.33249],[92.96751,13.33298],[92.96769,13.3334],[92.96768,13.33414],[92.96735,13.33478],[92.96731,13.33514],[92.96746,13.3357],[92.96786,13.33634],[92.96821,13.33665],[92.96845,13.33703],[92.96898,13.33747],[92.96909,13.33773],[92.96903,13.33802],[92.96914,13.3381],[92.96924,13.33829],[92.96956,13.33859],[92.96967,13.33897],[92.96969,13.33914],[92.96964,13.3392],[92.96932,13.33911],[92.9691,13.3392]]],[[[93.00894,13.33726],[93.00835,13.33757],[93.00803,13.33741],[93.00803,13.33723],[93.00828,13.33728],[93.00836,13.33711],[93.00812,13.33698],[93.00806,13.33702],[93.00779,13.3371],[93.00737,13.33705],[93.00702,13.33682],[93.0066,13.33639],[93.00634,13.33593],[93.00632,13.33573],[93.00642,13.33557],[93.00659,13.33551],[93.00661,13.33508],[93.00714,13.33517],[93.00784,13.33555],[93.00829,13.33575],[93.00885,13.33655],[93.00894,13.33726]]],[[[93.01341,13.33699],[93.01378,13.33705],[93.01404,13.33717],[93.01431,13.33736],[93.01459,13.3378],[93.01499,13.33821],[93.01532,13.33874],[93.01537,13.33903],[93.01508,13.3393],[93.01447,13.33919],[93.01423,13.33919],[93.01371,13.33908],[93.01322,13.33886],[93.01294,13.33859],[93.01267,13.33808],[93.01258,13.33763],[93.0126,13.33758],[93.01241,13.33749],[93.01249,13.33713],[93.01285,13.33689],[93.01341,13.33699]]],[[[93.01977,13.34514],[93.01938,13.34558],[93.01888,13.34516],[93.01916,13.34502],[93.01923,13.34492],[93.01857,13.34524],[93.01816,13.34562],[93.01787,13.34564],[93.01756,13.34553],[93.01716,13.34513],[93.01662,13.34472],[93.01578,13.34325],[93.0156,13.3426],[93.01578,13.34155],[93.01642,13.33952],[93.01634,13.33904],[93.01604,13.33898],[93.01576,13.33874],[93.01573,13.3384],[93.01592,13.3381],[93.01644,13.33777],[93.01693,13.33795],[93.01727,13.33815],[93.01764,13.33803],[93.01766,13.3378],[93.01725,13.33707],[93.01719,13.33676],[93.01743,13.33667],[93.01846,13.3372],[93.01906,13.33771],[93.01956,13.33752],[93.02014,13.33811],[93.02025,13.33874],[93.02005,13.33909],[93.01975,13.3392],[93.01915,13.33898],[93.0192,13.33888],[93.01882,13.33914],[93.01853,13.33958],[93.01844,13.34009],[93.01847,13.34034],[93.01909,13.34051],[93.01929,13.3408],[93.01934,13.34144],[93.0195,13.34216],[93.02001,13.34284],[93.02026,13.34338],[93.02037,13.34425],[93.02023,13.34465],[93.01977,13.34514]]],[[[93.0364,13.33966],[93.0369,13.34004],[93.03744,13.34084],[93.03779,13.34172],[93.03835,13.34281],[93.03857,13.34337],[93.0386,13.34372],[93.03829,13.34426],[93.03809,13.34448],[93.0376,13.34461],[93.03735,13.3446],[93.03612,13.34391],[93.03531,13.34279],[93.03526,13.34192],[93.03545,13.34076],[93.03611,13.33963],[93.0364,13.33966]]],[[[92.82962,13.36832],[92.82979,13.36849],[92.82984,13.36867],[92.82982,13.36894],[92.82976,13.36908],[92.82949,13.36932],[92.82924,13.36937],[92.82914,13.36932],[92.82899,13.36915],[92.82888,13.3689],[92.82891,13.36862],[92.82904,13.36837],[92.8292,13.36826],[92.82938,13.36823],[92.82962,13.36832]]],[[[93.03612,13.36058],[93.03639,13.36083],[93.03628,13.3611],[93.03614,13.36133],[93.03563,13.36165],[93.03515,13.36154],[93.03497,13.36148],[93.03497,13.36117],[93.03528,13.36092],[93.0357,13.3606],[93.03612,13.36058]]],[[[93.03849,13.36365],[93.03962,13.36476],[93.04033,13.36652],[93.04049,13.36776],[93.0403,13.36809],[93.0402,13.36815],[93.03907,13.36729],[93.03785,13.36646],[93.03669,13.36543],[93.03613,13.36414],[93.03648,13.36331],[93.03698,13.36302],[93.03771,13.36292],[93.03849,13.36365]]],[[[93.08087,13.3662],[93.08094,13.36629],[93.08097,13.36636],[93.08093,13.36642],[93.08082,13.36642],[93.08072,13.36638],[93.08064,13.36631],[93.08064,13.36624],[93.08067,13.36616],[93.08076,13.36615],[93.08087,13.3662]]],[[[93.07545,13.36606],[93.07549,13.36615],[93.07609,13.36615],[93.07609,13.36662],[93.07552,13.36715],[93.07496,13.36706],[93.07449,13.36687],[93.07398,13.36675],[93.07397,13.36656],[93.07352,13.36618],[93.07343,13.36627],[93.07301,13.36636],[93.07247,13.36583],[93.07211,13.36557],[93.07225,13.36513],[93.07281,13.36462],[93.07328,13.3643],[93.07368,13.36405],[93.07409,13.36389],[93.07436,13.36408],[93.07435,13.36449],[93.07524,13.36384],[93.07522,13.36335],[93.07537,13.36298],[93.07625,13.3625],[93.07659,13.36257],[93.07695,13.36284],[93.07729,13.36322],[93.07743,13.36351],[93.07734,13.36383],[93.07695,13.36475],[93.07627,13.36493],[93.07599,13.36472],[93.07515,13.36556],[93.0758,13.36544],[93.07566,13.36583],[93.07545,13.36606]]],[[[93.0813,13.36638],[93.08137,13.36642],[93.0814,13.36649],[93.08138,13.36657],[93.08134,13.36664],[93.08122,13.36659],[93.08113,13.36655],[93.08108,13.36647],[93.08108,13.3664],[93.08118,13.36636],[93.0813,13.36638]]],[[[93.08084,13.36666],[93.08088,13.36671],[93.08089,13.3668],[93.08083,13.36689],[93.08074,13.36691],[93.08064,13.36686],[93.08062,13.36678],[93.08064,13.36666],[93.08071,13.36662],[93.08084,13.36666]]],[[[93.08225,13.36727],[93.08232,13.36738],[93.08232,13.36747],[93.08223,13.36751],[93.08215,13.36751],[93.08207,13.36747],[93.08201,13.36743],[93.082,13.3673],[93.08213,13.36723],[93.08225,13.36727]]],[[[93.08131,13.36695],[93.08162,13.36695],[93.08181,13.36741],[93.0821,13.36757],[93.08264,13.36821],[93.08287,13.36859],[93.08293,13.36923],[93.08246,13.36942],[93.08214,13.36969],[93.08196,13.36998],[93.0817,13.37027],[93.08122,13.37021],[93.08038,13.36977],[93.08031,13.36915],[93.07986,13.36893],[93.07948,13.36867],[93.07931,13.3685],[93.07922,13.36827],[93.07926,13.36808],[93.07946,13.36775],[93.07974,13.36747],[93.0806,13.3672],[93.08067,13.36698],[93.081,13.36697],[93.081,13.36683],[93.08106,13.36677],[93.08118,13.36677],[93.08127,13.36681],[93.08131,13.36687],[93.08131,13.36695]]],[[[93.03592,13.3738],[93.03632,13.37424],[93.03602,13.37463],[93.03531,13.37463],[93.03468,13.3746],[93.03482,13.37401],[93.03547,13.37359],[93.03592,13.3738]]],[[[93.0473,13.37357],[93.0449,13.37515],[93.04455,13.37517],[93.04439,13.37499],[93.04328,13.37435],[93.04128,13.37365],[93.03948,13.37345],[93.03761,13.37363],[93.03658,13.37401],[93.03648,13.37264],[93.03621,13.37135],[93.03634,13.37062],[93.03679,13.37008],[93.03811,13.36957],[93.03877,13.36944],[93.03964,13.36944],[93.04036,13.36907],[93.04078,13.36752],[93.04038,13.36582],[93.04038,13.36538],[93.04078,13.36533],[93.04144,13.36567],[93.04424,13.36639],[93.04534,13.36698],[93.04616,13.36835],[93.04641,13.36829],[93.04722,13.36898],[93.04748,13.36939],[93.04745,13.37001],[93.04708,13.37045],[93.04687,13.37109],[93.04714,13.372],[93.0473,13.37357]]],[[[93.04461,13.37547],[93.04473,13.37552],[93.04482,13.37562],[93.04487,13.37585],[93.04485,13.37618],[93.04472,13.37648],[93.04454,13.37657],[93.04438,13.37657],[93.04417,13.37641],[93.0441,13.37623],[93.04408,13.37611],[93.04417,13.37591],[93.04442,13.3755],[93.04451,13.37548],[93.04461,13.37547]]],[[[93.0778,13.37642],[93.07791,13.37644],[93.07798,13.37652],[93.07799,13.37665],[93.07793,13.37677],[93.07778,13.37682],[93.07768,13.37677],[93.07762,13.37671],[93.07761,13.3766],[93.07761,13.37652],[93.07768,13.37642],[93.0778,13.37642]]],[[[93.08001,13.37664],[93.08006,13.3767],[93.08005,13.37691],[93.08006,13.37701],[93.07993,13.37706],[93.07978,13.37701],[93.07973,13.37695],[93.07971,13.37687],[93.0797,13.37677],[93.07974,13.37666],[93.07991,13.37661],[93.08001,13.37664]]],[[[93.07724,13.37714],[93.07731,13.3772],[93.07732,13.37731],[93.07718,13.37739],[93.07709,13.3774],[93.07701,13.37737],[93.077,13.37723],[93.07706,13.37713],[93.07714,13.3771],[93.07724,13.37714]]],[[[93.07775,13.37719],[93.07784,13.37728],[93.07784,13.37737],[93.07779,13.37744],[93.07769,13.37748],[93.07758,13.37746],[93.07752,13.37737],[93.07753,13.37729],[93.07755,13.37721],[93.07763,13.37717],[93.07775,13.37719]]],[[[93.07962,13.37739],[93.07947,13.3775],[93.07902,13.37775],[93.07868,13.37742],[93.07837,13.37749],[93.07822,13.37744],[93.07811,13.37738],[93.07803,13.37723],[93.07809,13.37703],[93.07854,13.37639],[93.07872,13.37622],[93.07922,13.3761],[93.07963,13.37618],[93.07976,13.37631],[93.07978,13.37647],[93.07958,13.37675],[93.07932,13.37699],[93.07924,13.37709],[93.07933,13.37706],[93.07945,13.37706],[93.07962,13.37718],[93.07962,13.37739]]],[[[93.06002,13.36911],[93.05948,13.37061],[93.05978,13.37248],[93.05637,13.37989],[93.05656,13.38097],[93.05376,13.38307],[93.05213,13.38177],[93.04965,13.37752],[93.04901,13.37451],[93.04785,13.3736],[93.04729,13.37122],[93.04769,13.36926],[93.04587,13.36732],[93.04597,13.36686],[93.04748,13.36758],[93.04732,13.36644],[93.0483,13.36647],[93.04962,13.36522],[93.04806,13.36587],[93.04682,13.36572],[93.04677,13.36654],[93.0456,13.36672],[93.03993,13.36468],[93.03893,13.36277],[93.0407,13.36231],[93.0417,13.36496],[93.04247,13.36528],[93.04302,13.36225],[93.04405,13.36137],[93.04379,13.36109],[93.04249,13.36256],[93.04242,13.36496],[93.04178,13.36458],[93.04088,13.36192],[93.03843,13.36189],[93.03864,13.36055],[93.0401,13.35926],[93.04125,13.35988],[93.04139,13.36083],[93.04207,13.36111],[93.0445,13.35974],[93.04358,13.35933],[93.04239,13.36062],[93.04168,13.36072],[93.04176,13.35967],[93.04092,13.35897],[93.04403,13.3523],[93.04477,13.34744],[93.04424,13.34531],[93.04465,13.34535],[93.03979,13.3394],[93.04078,13.3374],[93.04029,13.33751],[93.03951,13.33019],[93.03875,13.32914],[93.03915,13.32831],[93.0378,13.32603],[93.03841,13.32222],[93.04054,13.32111],[93.04396,13.32092],[93.04576,13.32148],[93.04842,13.32302],[93.05129,13.32722],[93.05233,13.32708],[93.05355,13.32853],[93.05652,13.32977],[93.05847,13.32889],[93.05978,13.32744],[93.06084,13.32323],[93.05988,13.32014],[93.05977,13.3168],[93.06039,13.31359],[93.06244,13.30907],[93.06187,13.30612],[93.06332,13.30392],[93.06439,13.30353],[93.06612,13.30586],[93.06759,13.30625],[93.06908,13.3034],[93.0711,13.30234],[93.06893,13.30059],[93.06878,13.2998],[93.06962,13.29831],[93.07075,13.29754],[93.07411,13.29756],[93.07649,13.29635],[93.07806,13.29629],[93.07792,13.29664],[93.07934,13.29702],[93.08063,13.30052],[93.0805,13.30214],[93.07909,13.30317],[93.07867,13.3044],[93.07688,13.30544],[93.07655,13.30671],[93.07536,13.30725],[93.07395,13.30624],[93.07245,13.30382],[93.07102,13.3046],[93.06921,13.30669],[93.06997,13.30972],[93.07089,13.31081],[93.0701,13.31275],[93.07133,13.31477],[93.07205,13.31817],[93.07148,13.32266],[93.07257,13.32488],[93.07211,13.32507],[93.07252,13.3257],[93.07409,13.32614],[93.07478,13.329],[93.07625,13.33005],[93.07685,13.33029],[93.07881,13.32926],[93.07926,13.33026],[93.07903,13.33139],[93.07964,13.33157],[93.08017,13.33024],[93.083,13.33044],[93.08971,13.33366],[93.0901,13.33606],[93.089,13.33971],[93.08806,13.34604],[93.08726,13.34689],[93.08307,13.34425],[93.08137,13.34396],[93.07985,13.34477],[93.07785,13.3439],[93.07757,13.34465],[93.07973,13.34759],[93.07873,13.34954],[93.07524,13.34858],[93.07443,13.34725],[93.07073,13.3491],[93.06772,13.35321],[93.06366,13.36087],[93.0629,13.36134],[93.06248,13.36103],[93.06156,13.36232],[93.06124,13.36327],[93.06183,13.36328],[93.06193,13.36405],[93.06142,13.36826],[93.06002,13.36911]]],[[[93.0625,13.38672],[93.06256,13.38707],[93.06217,13.38724],[93.06168,13.387],[93.06136,13.3867],[93.06152,13.38642],[93.06204,13.38656],[93.062,13.38649],[93.06186,13.38645],[93.06167,13.38632],[93.06147,13.38606],[93.06123,13.38558],[93.06082,13.38583],[93.0601,13.38588],[93.05978,13.38577],[93.05941,13.38555],[93.05964,13.38512],[93.06009,13.38454],[93.06031,13.38451],[93.0606,13.38412],[93.06062,13.38388],[93.06012,13.38387],[93.06009,13.3831],[93.0603,13.38274],[93.06081,13.38249],[93.06173,13.38281],[93.06271,13.38384],[93.06319,13.38453],[93.06353,13.38473],[93.06433,13.3844],[93.06469,13.38464],[93.06495,13.38487],[93.06548,13.38491],[93.06632,13.38532],[93.06675,13.38559],[93.0669,13.38594],[93.06642,13.38677],[93.06569,13.38687],[93.06521,13.38661],[93.06462,13.38609],[93.06421,13.38606],[93.06395,13.38644],[93.06333,13.38648],[93.0625,13.38672]]],[[[93.08324,13.39621],[93.0833,13.3963],[93.08328,13.39648],[93.08322,13.39658],[93.08311,13.39661],[93.08303,13.39659],[93.08293,13.3964],[93.08299,13.39623],[93.08309,13.39615],[93.08324,13.39621]]],[[[93.08273,13.39674],[93.08282,13.39702],[93.08284,13.39731],[93.08277,13.39749],[93.08261,13.39756],[93.08254,13.39776],[93.0826,13.39795],[93.08225,13.39835],[93.08209,13.39836],[93.08194,13.39828],[93.08181,13.39804],[93.08157,13.3978],[93.08144,13.39762],[93.08153,13.39734],[93.08154,13.39703],[93.08181,13.39678],[93.08194,13.39679],[93.08164,13.39656],[93.0817,13.39642],[93.08183,13.39626],[93.08219,13.39612],[93.08261,13.39608],[93.08275,13.39614],[93.08273,13.39674]]],[[[92.84679,13.41926],[92.84691,13.41934],[92.84701,13.41946],[92.84717,13.41958],[92.84723,13.41967],[92.84723,13.41974],[92.84708,13.41996],[92.84709,13.42016],[92.84695,13.42031],[92.84685,13.42038],[92.84678,13.42038],[92.84671,13.42038],[92.84662,13.42032],[92.84643,13.42018],[92.84606,13.41975],[92.84604,13.41969],[92.84604,13.41957],[92.84613,13.41946],[92.84619,13.41942],[92.84636,13.41936],[92.84649,13.41927],[92.84661,13.41924],[92.84679,13.41926]]],[[[92.86243,13.42105],[92.86288,13.42133],[92.86292,13.42151],[92.86298,13.4216],[92.86269,13.42187],[92.86212,13.42218],[92.86228,13.42242],[92.86227,13.42256],[92.8618,13.42257],[92.8617,13.42251],[92.86154,13.42245],[92.86144,13.42238],[92.86144,13.42233],[92.86149,13.42222],[92.86156,13.42217],[92.86163,13.42203],[92.86125,13.42166],[92.86118,13.42137],[92.86118,13.42125],[92.86145,13.4211],[92.86171,13.4208],[92.86188,13.42074],[92.86203,13.42078],[92.86216,13.42075],[92.86243,13.42105]]],[[[92.81537,13.42041],[92.81507,13.42127],[92.81589,13.42288],[92.81592,13.42327],[92.81568,13.42488],[92.81459,13.42676],[92.81379,13.42754],[92.81336,13.42859],[92.81319,13.4303],[92.81294,13.43087],[92.81202,13.43177],[92.81166,13.43207],[92.81079,13.43203],[92.81051,13.43184],[92.8087,13.43047],[92.80801,13.43019],[92.80754,13.42963],[92.80707,13.42858],[92.80646,13.4281],[92.80642,13.42663],[92.80568,13.42455],[92.80519,13.42221],[92.80518,13.42133],[92.80573,13.41944],[92.80612,13.41864],[92.80646,13.41839],[92.8075,13.41866],[92.80831,13.42052],[92.80855,13.42074],[92.80906,13.42081],[92.80928,13.42061],[92.80925,13.41899],[92.80972,13.41782],[92.80971,13.41718],[92.81013,13.41666],[92.81098,13.41472],[92.81061,13.41286],[92.80998,13.41184],[92.80984,13.41109],[92.80888,13.40901],[92.8083,13.40833],[92.80795,13.40733],[92.80744,13.40689],[92.80735,13.40649],[92.80622,13.40558],[92.80575,13.40449],[92.8055,13.40202],[92.80767,13.40054],[92.80945,13.39996],[92.8111,13.39984],[92.8126,13.40051],[92.81429,13.40082],[92.81509,13.40123],[92.81592,13.40194],[92.81654,13.40331],[92.81729,13.40364],[92.81758,13.40399],[92.81752,13.40457],[92.81729,13.40484],[92.81778,13.40673],[92.8184,13.4076],[92.81805,13.40886],[92.81802,13.40984],[92.81818,13.41016],[92.81803,13.41064],[92.8186,13.41155],[92.81863,13.41259],[92.81841,13.4132],[92.81787,13.41362],[92.81769,13.41462],[92.81773,13.41503],[92.81856,13.41598],[92.81868,13.41652],[92.81811,13.41717],[92.81566,13.41805],[92.81598,13.41828],[92.81595,13.41866],[92.81565,13.41901],[92.81537,13.42041]]],[[[93.09487,13.42026],[93.09553,13.42105],[93.09568,13.42151],[93.09534,13.42167],[93.09575,13.42257],[93.09572,13.4232],[93.09499,13.4232],[93.09421,13.4229],[93.09351,13.4229],[93.09291,13.42269],[93.09207,13.42266],[93.09096,13.42211],[93.08933,13.42105],[93.08912,13.42068],[93.08896,13.42065],[93.08903,13.41999],[93.08876,13.41987],[93.08778,13.41865],[93.08759,13.41803],[93.08598,13.41643],[93.0858,13.4161],[93.08614,13.41422],[93.08566,13.4136],[93.0859,13.41326],[93.0857,13.41329],[93.08581,13.41256],[93.08561,13.41193],[93.08581,13.41172],[93.08589,13.41136],[93.08614,13.41109],[93.08625,13.41008],[93.0867,13.4097],[93.08685,13.41003],[93.0875,13.40921],[93.0888,13.40805],[93.08934,13.40731],[93.09021,13.40678],[93.09083,13.40711],[93.09088,13.40772],[93.09147,13.40877],[93.09172,13.4098],[93.09142,13.41138],[93.09085,13.41174],[93.09066,13.41174],[93.09075,13.41231],[93.09217,13.41574],[93.09287,13.41642],[93.0934,13.41721],[93.09361,13.41773],[93.09343,13.41837],[93.0936,13.41837],[93.09393,13.4186],[93.09397,13.41899],[93.09382,13.4193],[93.09356,13.41974],[93.09326,13.41992],[93.09393,13.41971],[93.09487,13.42026]]],[[[92.84338,13.43821],[92.84309,13.4383],[92.84308,13.43852],[92.84357,13.44006],[92.8441,13.44336],[92.84406,13.446],[92.84266,13.44911],[92.8417,13.45038],[92.84119,13.45047],[92.83988,13.44972],[92.83785,13.44724],[92.83661,13.44628],[92.83442,13.44144],[92.83362,13.44064],[92.83204,13.4396],[92.83206,13.43926],[92.83157,13.43913],[92.83113,13.43933],[92.82821,13.43946],[92.82656,13.4391],[92.82509,13.4397],[92.82418,13.43963],[92.82344,13.43842],[92.82266,13.43811],[92.82175,13.43732],[92.82064,13.4358],[92.81991,13.43525],[92.81952,13.43212],[92.81902,13.43136],[92.81925,13.43098],[92.81835,13.42983],[92.81866,13.42927],[92.81851,13.42864],[92.81873,13.4283],[92.81834,13.42745],[92.81826,13.42659],[92.81877,13.42546],[92.81894,13.42422],[92.81959,13.42358],[92.81988,13.42222],[92.82028,13.42205],[92.8204,13.42162],[92.82069,13.42145],[92.82081,13.42062],[92.8213,13.4205],[92.8225,13.41959],[92.82314,13.41971],[92.82365,13.41953],[92.82417,13.4198],[92.82505,13.41957],[92.82574,13.41978],[92.82648,13.4194],[92.82764,13.4193],[92.82892,13.41863],[92.83098,13.41838],[92.83226,13.41875],[92.83316,13.41937],[92.83413,13.41932],[92.83556,13.42013],[92.83738,13.41998],[92.83869,13.42074],[92.83959,13.42188],[92.83977,13.42281],[92.84034,13.423],[92.84048,13.42344],[92.84135,13.42437],[92.8415,13.42512],[92.8422,13.42536],[92.84306,13.42633],[92.84314,13.42667],[92.84288,13.4269],[92.84306,13.42741],[92.84405,13.42819],[92.8446,13.42826],[92.84499,13.42887],[92.84527,13.43031],[92.84579,13.43053],[92.84606,13.43094],[92.84385,13.43423],[92.84388,13.43514],[92.84366,13.43568],[92.84385,13.43693],[92.84338,13.43821]]],[[[93.07218,13.43228],[93.07172,13.43201],[93.07151,13.43207],[93.07124,13.43192],[93.07087,13.43141],[93.06973,13.43058],[93.0696,13.42999],[93.06925,13.42936],[93.06877,13.42887],[93.06863,13.42844],[93.06755,13.42704],[93.06718,13.42686],[93.06739,13.42652],[93.06701,13.42601],[93.06666,13.42513],[93.06602,13.42443],[93.06614,13.4233],[93.06588,13.42309],[93.06572,13.42313],[93.06553,13.42264],[93.0656,13.42072],[93.06605,13.41943],[93.06602,13.41852],[93.06618,13.41806],[93.06666,13.41804],[93.0669,13.41789],[93.06738,13.41669],[93.06689,13.41596],[93.06691,13.41506],[93.06718,13.41451],[93.06755,13.41471],[93.0677,13.41455],[93.06748,13.41452],[93.06797,13.41319],[93.06853,13.41278],[93.06963,13.41258],[93.0706,13.41287],[93.07134,13.41334],[93.07108,13.41528],[93.07054,13.4179],[93.07022,13.41825],[93.07009,13.41882],[93.07011,13.41932],[93.0705,13.42087],[93.07051,13.42171],[93.07024,13.42269],[93.07024,13.42354],[93.07072,13.42514],[93.07102,13.4255],[93.07118,13.42614],[93.07116,13.42696],[93.07172,13.42846],[93.07229,13.43083],[93.07266,13.43141],[93.07257,13.43189],[93.07218,13.43228]]],[[[93.0741,13.43213],[93.07421,13.43233],[93.07428,13.43248],[93.07441,13.43253],[93.07437,13.43285],[93.07425,13.43314],[93.07409,13.43341],[93.07342,13.43337],[93.07324,13.43323],[93.07312,13.43298],[93.07304,13.43279],[93.07307,13.43248],[93.07333,13.43208],[93.07365,13.43195],[93.0741,13.43213]]],[[[93.07756,13.43318],[93.07769,13.43333],[93.07777,13.43359],[93.07735,13.43375],[93.07695,13.43379],[93.07616,13.43385],[93.07585,13.43375],[93.07575,13.43331],[93.07604,13.43313],[93.07601,13.43307],[93.07605,13.4329],[93.07615,13.43283],[93.07621,13.43269],[93.07604,13.43254],[93.07611,13.43218],[93.07649,13.43196],[93.07703,13.43215],[93.07729,13.43236],[93.07749,13.43269],[93.07732,13.43286],[93.0772,13.43286],[93.0773,13.43309],[93.07738,13.43308],[93.07756,13.43318]]],[[[93.08684,13.43107],[93.08704,13.43128],[93.08738,13.43174],[93.08755,13.4321],[93.08755,13.4325],[93.08752,13.43278],[93.08742,13.43292],[93.08715,13.43311],[93.0869,13.433],[93.08667,13.43269],[93.08659,13.43237],[93.08671,13.43165],[93.08654,13.43144],[93.08652,13.43117],[93.08666,13.43107],[93.08684,13.43107]]],[[[92.86945,13.45359],[92.86962,13.45362],[92.86974,13.45375],[92.86981,13.45389],[92.86984,13.45406],[92.8698,13.45417],[92.86975,13.45422],[92.86956,13.45418],[92.86942,13.45403],[92.86931,13.45382],[92.86932,13.45372],[92.8694,13.4536],[92.86945,13.45359]]],[[[93.09726,13.43879],[93.09664,13.43841],[93.09651,13.43824],[93.09574,13.43808],[93.09563,13.43788],[93.09548,13.43779],[93.09546,13.4376],[93.09488,13.43745],[93.09468,13.43723],[93.09459,13.43694],[93.09433,13.43689],[93.09431,13.4365],[93.09469,13.4364],[93.09474,13.43616],[93.09491,13.43608],[93.09481,13.43583],[93.09459,13.43581],[93.09442,13.43562],[93.09418,13.43555],[93.09419,13.43463],[93.09428,13.43425],[93.09445,13.43394],[93.09479,13.4341],[93.09482,13.43422],[93.09495,13.43394],[93.0954,13.4336],[93.09563,13.43332],[93.0958,13.43292],[93.09579,13.43141],[93.09598,13.43115],[93.09635,13.43109],[93.09732,13.4305],[93.09815,13.43027],[93.09971,13.43003],[93.10039,13.42968],[93.10109,13.42959],[93.10126,13.42915],[93.10161,13.42896],[93.1024,13.42893],[93.10268,13.42914],[93.10312,13.42894],[93.10357,13.42888],[93.10442,13.42911],[93.1048,13.4295],[93.10477,13.42985],[93.10507,13.43017],[93.10485,13.43033],[93.10484,13.43046],[93.10505,13.43065],[93.10508,13.43082],[93.10484,13.4311],[93.10475,13.43142],[93.10457,13.43167],[93.10462,13.43217],[93.1045,13.43294],[93.10423,13.43304],[93.10416,13.43374],[93.10421,13.4345],[93.10447,13.4345],[93.10456,13.43472],[93.10426,13.43525],[93.10433,13.43565],[93.10419,13.43575],[93.10307,13.43578],[93.10301,13.43591],[93.10238,13.43591],[93.10183,13.43611],[93.10054,13.43638],[93.10017,13.43624],[93.09992,13.43604],[93.09944,13.4359],[93.0984,13.43596],[93.09802,13.43619],[93.09787,13.4364],[93.09805,13.43654],[93.0979,13.43667],[93.09814,13.43678],[93.09795,13.43743],[93.0981,13.43751],[93.09816,13.43855],[93.09783,13.43857],[93.09768,13.43873],[93.09745,13.43865],[93.09726,13.43879]]],[[[92.8633,13.46079],[92.86375,13.46087],[92.86413,13.46087],[92.86429,13.4609],[92.86449,13.46105],[92.86495,13.46155],[92.86517,13.46167],[92.86538,13.46166],[92.86558,13.4617],[92.86593,13.46186],[92.86647,13.46239],[92.86691,13.46266],[92.86721,13.46315],[92.86724,13.46332],[92.86703,13.46374],[92.8672,13.46407],[92.8672,13.4642],[92.86713,13.46428],[92.86695,13.46436],[92.8666,13.46431],[92.86619,13.46419],[92.86564,13.46412],[92.86536,13.46399],[92.86506,13.46393],[92.86464,13.46366],[92.86437,13.46341],[92.86416,13.46308],[92.8638,13.46269],[92.86338,13.46246],[92.86318,13.46222],[92.86315,13.46211],[92.86317,13.46198],[92.86325,13.46183],[92.86342,13.46167],[92.86342,13.46162],[92.86336,13.4615],[92.86308,13.46117],[92.86298,13.46099],[92.86307,13.46082],[92.86321,13.46078],[92.8633,13.46079]]],[[[92.87375,13.51355],[92.87343,13.51415],[92.873,13.51377],[92.8728,13.51338],[92.87206,13.51316],[92.87039,13.51425],[92.8693,13.51439],[92.86884,13.51434],[92.86735,13.51277],[92.86715,13.51195],[92.86609,13.51077],[92.86494,13.50782],[92.86462,13.50639],[92.86486,13.50555],[92.86474,13.50473],[92.86511,13.50313],[92.86574,13.5028],[92.86741,13.50235],[92.86907,13.50167],[92.87102,13.50159],[92.87251,13.50176],[92.87329,13.50339],[92.87332,13.50493],[92.8737,13.50523],[92.87385,13.50571],[92.87388,13.50704],[92.87367,13.50746],[92.87326,13.50785],[92.87291,13.50868],[92.87296,13.50889],[92.87288,13.50938],[92.87288,13.50958],[92.8732,13.50959],[92.87398,13.51105],[92.8736,13.51184],[92.87401,13.5124],[92.87403,13.51273],[92.87375,13.51355]]],[[[92.90599,13.52148],[92.90594,13.52153],[92.9059,13.52163],[92.9057,13.52156],[92.90561,13.52132],[92.90547,13.5213],[92.90544,13.52122],[92.90533,13.52114],[92.90535,13.52091],[92.90525,13.52102],[92.90523,13.52108],[92.90504,13.52106],[92.90498,13.52088],[92.90488,13.52064],[92.90502,13.5204],[92.90518,13.52045],[92.90505,13.52025],[92.90511,13.51997],[92.90548,13.52006],[92.90552,13.52023],[92.90559,13.52001],[92.90579,13.5199],[92.90598,13.52005],[92.90638,13.52006],[92.90666,13.5203],[92.90659,13.52056],[92.90646,13.52063],[92.90657,13.52087],[92.9065,13.52092],[92.90645,13.52099],[92.9065,13.52112],[92.90639,13.5212],[92.90647,13.52129],[92.90654,13.52131],[92.90649,13.52145],[92.90628,13.52148],[92.90624,13.52141],[92.90608,13.5214],[92.90599,13.52148]]],[[[92.98466,13.53003],[92.98455,13.52999],[92.98455,13.52994],[92.98451,13.52989],[92.98441,13.52993],[92.98411,13.52982],[92.98413,13.52975],[92.98411,13.52971],[92.98406,13.52969],[92.98409,13.52946],[92.98413,13.52935],[92.98418,13.52932],[92.98419,13.52927],[92.98417,13.52922],[92.98412,13.5292],[92.98413,13.52913],[92.98427,13.52899],[92.98426,13.52875],[92.98456,13.5284],[92.98492,13.52869],[92.98491,13.52895],[92.98498,13.5292],[92.98521,13.52937],[92.98503,13.52963],[92.9849,13.52974],[92.9848,13.52977],[92.98479,13.52982],[92.98481,13.52986],[92.98466,13.53003]]],[[[92.87498,13.54085],[92.87447,13.54091],[92.87417,13.54113],[92.87386,13.54125],[92.87372,13.54127],[92.87359,13.54119],[92.87364,13.54093],[92.87373,13.54071],[92.87375,13.54046],[92.8734,13.53967],[92.87328,13.53924],[92.87321,13.53887],[92.87327,13.5383],[92.87344,13.53735],[92.87353,13.53714],[92.87369,13.53703],[92.8742,13.53719],[92.87451,13.53722],[92.87471,13.53711],[92.87474,13.53697],[92.87464,13.53661],[92.87495,13.5364],[92.87494,13.53617],[92.87488,13.53603],[92.87515,13.53589],[92.87509,13.53549],[92.87541,13.53529],[92.8757,13.53528],[92.87622,13.53552],[92.87638,13.53582],[92.87678,13.53637],[92.87692,13.53674],[92.8768,13.53705],[92.87688,13.53714],[92.87735,13.53741],[92.87764,13.53782],[92.87772,13.53821],[92.87764,13.53857],[92.87739,13.53887],[92.87637,13.53972],[92.87664,13.53976],[92.87685,13.53989],[92.87692,13.54006],[92.87684,13.54027],[92.87656,13.54045],[92.87603,13.54063],[92.87525,13.54068],[92.87498,13.54085]]],[[[92.90853,13.53835],[92.90715,13.53818],[92.90694,13.53801],[92.90676,13.53761],[92.90645,13.53759],[92.90623,13.53737],[92.90532,13.53724],[92.90473,13.53724],[92.90412,13.53691],[92.90369,13.53585],[92.90306,13.53515],[92.90284,13.5345],[92.90283,13.53303],[92.90318,13.53248],[92.9028,13.53157],[92.90338,13.53087],[92.90376,13.53028],[92.90452,13.52939],[92.90575,13.52921],[92.9063,13.52928],[92.90704,13.53022],[92.90753,13.53061],[92.90815,13.53017],[92.90857,13.53029],[92.90865,13.53107],[92.9106,13.53267],[92.9112,13.53298],[92.91133,13.53326],[92.91159,13.53328],[92.91198,13.53385],[92.91212,13.53424],[92.91206,13.53535],[92.91219,13.53691],[92.91183,13.53748],[92.91071,13.53809],[92.91016,13.53803],[92.90997,13.5375],[92.90853,13.53835]]],[[[92.97883,13.53553],[92.97873,13.53573],[92.97862,13.53581],[92.97841,13.53622],[92.97849,13.53643],[92.97827,13.53664],[92.97805,13.53671],[92.97778,13.53664],[92.97766,13.53655],[92.97759,13.53645],[92.97762,13.53629],[92.9778,13.536],[92.9778,13.53572],[92.97793,13.53552],[92.97822,13.53555],[92.97836,13.53541],[92.97836,13.53535],[92.97864,13.53535],[92.97883,13.53553]]],[[[92.91479,13.54127],[92.91528,13.54131],[92.91577,13.54164],[92.91626,13.54204],[92.91645,13.54236],[92.91652,13.54283],[92.91631,13.54337],[92.91613,13.54369],[92.91542,13.54402],[92.91483,13.54417],[92.91439,13.5442],[92.91366,13.54388],[92.91325,13.5434],[92.91299,13.5428],[92.91303,13.54223],[92.91335,13.54161],[92.91378,13.54122],[92.91479,13.54127]]],[[[92.98639,13.53413],[92.9865,13.53507],[92.98643,13.53606],[92.98625,13.53654],[92.98562,13.53734],[92.98415,13.53801],[92.98315,13.53822],[92.98272,13.53818],[92.98249,13.53771],[92.98254,13.53723],[92.98226,13.53666],[92.98179,13.53604],[92.98206,13.53584],[92.98213,13.53558],[92.98201,13.53514],[92.98169,13.53513],[92.98139,13.53463],[92.98153,13.53422],[92.98198,13.53385],[92.98249,13.53364],[92.98288,13.53364],[92.98321,13.53348],[92.98265,13.53285],[92.98177,13.53252],[92.98057,13.53305],[92.97993,13.53389],[92.97947,13.53469],[92.97894,13.53496],[92.97852,13.53496],[92.97818,13.53457],[92.97829,13.53404],[92.97863,13.53313],[92.97911,13.53229],[92.97952,13.53197],[92.97962,13.53167],[92.97919,13.53164],[92.97887,13.5313],[92.97843,13.53115],[92.97839,13.53076],[92.97876,13.53036],[92.98022,13.53068],[92.98066,13.53056],[92.98239,13.5296],[92.98383,13.52895],[92.98394,13.5295],[92.98382,13.5298],[92.98419,13.53004],[92.98434,13.53029],[92.98471,13.53009],[92.98519,13.52972],[92.98543,13.52973],[92.98565,13.53026],[92.98616,13.53217],[92.98639,13.53413]]],[[[93.05723,13.5668],[93.05706,13.56688],[93.05681,13.56732],[93.05606,13.56725],[93.0558,13.56685],[93.05558,13.56695],[93.05534,13.56692],[93.05522,13.56698],[93.05475,13.5668],[93.05392,13.56673],[93.0527,13.56654],[93.05214,13.56638],[93.05117,13.56595],[93.05076,13.56547],[93.05056,13.5651],[93.05041,13.56399],[93.05053,13.56316],[93.05067,13.56271],[93.05109,13.56188],[93.05131,13.56164],[93.05188,13.56078],[93.05223,13.56002],[93.05223,13.55984],[93.05239,13.55977],[93.05288,13.55891],[93.05299,13.55891],[93.05332,13.55946],[93.05315,13.55966],[93.05314,13.55979],[93.05397,13.56084],[93.05519,13.56185],[93.05564,13.56213],[93.05591,13.56269],[93.05588,13.5633],[93.056,13.56363],[93.05588,13.56399],[93.05635,13.56544],[93.05643,13.56597],[93.05631,13.56623],[93.05607,13.56623],[93.05629,13.56631],[93.05657,13.56619],[93.05701,13.56628],[93.05723,13.5668]]],[[[93.00043,13.57251],[93.0,13.57268],[92.99974,13.57171],[92.99897,13.57093],[92.99847,13.57095],[92.99822,13.57068],[92.99824,13.57021],[92.99952,13.56894],[92.99977,13.56872],[93.0,13.56861],[93.0002,13.56864],[93.00027,13.5686],[93.0006,13.56865],[93.00082,13.56883],[93.00103,13.56911],[93.00107,13.56943],[93.00231,13.5707],[93.00233,13.57084],[93.00229,13.57111],[93.00187,13.57152],[93.00136,13.57179],[93.00118,13.57199],[93.00112,13.57224],[93.001,13.57233],[93.00081,13.57234],[93.00043,13.57251]]],[[[92.82853,13.21047],[92.82684,13.20796],[92.82373,13.20707],[92.82261,13.20451],[92.8191,13.20773],[92.81607,13.20446],[92.81495,13.20004],[92.81626,13.19715],[92.81813,13.20264],[92.82149,13.20299],[92.81957,13.20062],[92.8195,13.19688],[92.81778,13.1981],[92.81659,13.19585],[92.81773,13.194],[92.82018,13.19509],[92.82178,13.19309],[92.82084,13.18613],[92.81649,13.18541],[92.81604,13.18348],[92.81859,13.18185],[92.81913,13.18323],[92.82321,13.18287],[92.82212,13.18118],[92.82382,13.1794],[92.82492,13.1814],[92.8237,13.18283],[92.82646,13.18271],[92.82898,13.17845],[92.8346,13.17529],[92.8352,13.16574],[92.83909,13.16536],[92.83748,13.1622],[92.84279,13.16179],[92.84381,13.16313],[92.84451,13.16123],[92.84829,13.16293],[92.84918,13.16112],[92.84834,13.16278],[92.84441,13.16087],[92.84402,13.16289],[92.8433,13.16152],[92.83716,13.16199],[92.83839,13.1654],[92.83513,13.16487],[92.83399,13.17062],[92.82996,13.17145],[92.82636,13.17502],[92.82513,13.17109],[92.82779,13.16765],[92.82703,13.1634],[92.82448,13.16119],[92.81934,13.16213],[92.81803,13.16352],[92.82421,13.16196],[92.82647,13.16367],[92.82726,13.16731],[92.8233,13.17435],[92.8194,13.17237],[92.81416,13.17473],[92.81297,13.17262],[92.81502,13.1721],[92.81501,13.16974],[92.81094,13.16846],[92.81172,13.15799],[92.80793,13.15379],[92.8093,13.15187],[92.81633,13.14974],[92.81759,13.15013],[92.81704,13.15185],[92.82041,13.14506],[92.82656,13.1505],[92.83071,13.15103],[92.83262,13.14957],[92.8331,13.14425],[92.83811,13.14863],[92.83711,13.14531],[92.84191,13.14681],[92.84355,13.14174],[92.84538,13.14138],[92.84702,13.14321],[92.84657,13.14822],[92.84843,13.15022],[92.84681,13.14821],[92.84671,13.13856],[92.8419,13.13935],[92.83872,13.13484],[92.84337,13.13559],[92.84094,13.1257],[92.84335,13.12414],[92.84326,13.12202],[92.84631,13.12198],[92.84722,13.11815],[92.84634,13.1214],[92.84327,13.12171],[92.84065,13.12541],[92.84101,13.1279],[92.83945,13.12556],[92.83914,13.12717],[92.83399,13.13039],[92.83616,13.12426],[92.83371,13.1262],[92.83324,13.12336],[92.82967,13.12524],[92.83075,13.1277],[92.82893,13.13224],[92.82513,13.12856],[92.8257,13.1311],[92.82307,13.1348],[92.81857,13.13314],[92.81832,13.12793],[92.80848,13.12728],[92.81389,13.11773],[92.81408,13.11393],[92.8176,13.11366],[92.81804,13.11631],[92.81916,13.11518],[92.82361,13.11598],[92.8239,13.1137],[92.82936,13.10892],[92.82504,13.11265],[92.8214,13.11176],[92.8196,13.10627],[92.82129,13.10259],[92.8188,13.10253],[92.82184,13.09614],[92.82058,13.09121],[92.81904,13.09717],[92.81556,13.10026],[92.81378,13.09895],[92.81301,13.10306],[92.80558,13.10092],[92.80653,13.09243],[92.80466,13.08727],[92.80897,13.08353],[92.80629,13.08017],[92.81117,13.08101],[92.81051,13.07763],[92.81308,13.07607],[92.81351,13.07273],[92.81704,13.07597],[92.81864,13.0751],[92.81718,13.0756],[92.81412,13.07231],[92.81125,13.07676],[92.80825,13.07189],[92.80906,13.07591],[92.80453,13.07483],[92.80098,13.08146],[92.79765,13.08148],[92.79683,13.08272],[92.7987,13.08251],[92.80152,13.08566],[92.80082,13.09135],[92.79428,13.09053],[92.79284,13.09198],[92.79629,13.08133],[92.79539,13.07669],[92.79655,13.07608],[92.79518,13.07604],[92.79663,13.07511],[92.79676,13.06799],[92.79576,13.06415],[92.79339,13.06299],[92.79171,13.05335],[92.79923,13.04339],[92.79604,13.04718],[92.79241,13.04769],[92.79602,13.0389],[92.79166,13.03779],[92.79192,13.03292],[92.79458,13.03015],[92.78796,13.01955],[92.79183,13.01268],[92.79507,13.01282],[92.79742,13.01022],[92.80022,13.00986],[92.80167,13.01236],[92.80489,13.01264],[92.80411,13.00837],[92.80537,13.00639],[92.80772,13.00905],[92.81134,13.01008],[92.81431,13.00685],[92.81581,13.01208],[92.8174,13.01188],[92.81737,13.01557],[92.81479,13.01625],[92.81316,13.02161],[92.81135,13.02042],[92.81277,13.02185],[92.81505,13.01669],[92.81763,13.01593],[92.81818,13.01232],[92.82048,13.01215],[92.82308,13.01306],[92.82603,13.01767],[92.8292,13.01608],[92.83163,13.02045],[92.83391,13.02094],[92.83503,13.01905],[92.83502,13.02191],[92.83714,13.02307],[92.83537,13.02191],[92.83531,13.01874],[92.83401,13.02053],[92.83211,13.02009],[92.82929,13.01524],[92.82596,13.01675],[92.82281,13.0074],[92.82479,13.00359],[92.82962,13.00193],[92.82955,12.9995],[92.83311,13.00472],[92.83166,12.99856],[92.83585,12.99497],[92.83693,12.99715],[92.83799,12.99408],[92.8405,12.99438],[92.83985,12.9932],[92.84198,12.99138],[92.83964,12.99305],[92.84025,12.99427],[92.83772,12.99401],[92.8369,12.99684],[92.83563,12.99456],[92.83413,12.99687],[92.829,12.99924],[92.8283,13.00229],[92.82644,13.00263],[92.82606,12.99906],[92.82466,12.99848],[92.82618,13.00233],[92.82286,13.00651],[92.81959,13.00544],[92.81833,13.00065],[92.81547,12.99877],[92.80702,12.99901],[92.80763,12.99571],[92.80587,12.99496],[92.81079,12.99445],[92.81253,12.99176],[92.81663,12.99078],[92.81818,12.98595],[92.82168,12.98266],[92.8205,12.98027],[92.8217,12.98048],[92.82204,12.97711],[92.82148,12.98047],[92.81969,12.97912],[92.82145,12.98271],[92.81537,12.98708],[92.81158,12.98313],[92.81112,12.97251],[92.81077,12.98422],[92.80451,12.98336],[92.80215,12.98512],[92.79954,12.99188],[92.79411,12.98744],[92.79247,12.98017],[92.79715,12.97262],[92.79558,12.96763],[92.7969,12.96352],[92.79144,12.9695],[92.78998,12.96093],[92.79223,12.95733],[92.79057,12.95355],[92.79104,12.95184],[92.79535,12.94956],[92.80096,12.95217],[92.79837,12.9506],[92.79989,12.94866],[92.79909,12.94701],[92.80034,12.94729],[92.7978,12.94321],[92.8023,12.93841],[92.8003,12.93813],[92.79951,12.93421],[92.79821,12.93886],[92.79802,12.93638],[92.79229,12.93101],[92.79228,12.9281],[92.79441,12.9259],[92.79315,12.92354],[92.79501,12.91885],[92.79395,12.91389],[92.79725,12.91114],[92.80212,12.89885],[92.80438,12.90012],[92.80428,12.90635],[92.80609,12.90795],[92.80838,12.90616],[92.80975,12.90919],[92.80817,12.90589],[92.80605,12.90758],[92.80466,12.90627],[92.80457,12.90042],[92.82385,12.89696],[92.82651,12.893],[92.82775,12.89375],[92.82708,12.89823],[92.82864,12.89936],[92.82736,12.89816],[92.82793,12.89368],[92.82647,12.89258],[92.82878,12.88684],[92.83837,12.89276],[92.8426,12.89219],[92.84354,12.88761],[92.84132,12.8822],[92.84121,12.877],[92.87272,12.88352],[92.86946,12.88689],[92.86861,12.89046],[92.87032,12.89647],[92.87504,12.9019],[92.87494,12.90817],[92.87037,12.90969],[92.8642,12.90284],[92.8604,12.90311],[92.85859,12.90532],[92.8577,12.91331],[92.84968,12.91097],[92.84477,12.91263],[92.84978,12.91118],[92.85884,12.91789],[92.85595,12.92635],[92.85576,12.93368],[92.85233,12.93407],[92.84916,12.93195],[92.85037,12.93017],[92.8461,12.92951],[92.84448,12.9303],[92.84523,12.93199],[92.84436,12.93125],[92.84261,12.93341],[92.84537,12.93219],[92.84568,12.92982],[92.8504,12.93047],[92.84881,12.93183],[92.8503,12.93284],[92.84793,12.93466],[92.84912,12.93934],[92.84809,12.93489],[92.84997,12.93326],[92.8561,12.93519],[92.85224,12.94367],[92.85013,12.94452],[92.84878,12.94246],[92.84548,12.94404],[92.84917,12.94304],[92.8492,12.95055],[92.84742,12.95141],[92.84807,12.94743],[92.84233,12.94615],[92.84293,12.94288],[92.84001,12.94991],[92.84118,12.94787],[92.84484,12.94894],[92.84503,12.95348],[92.84418,12.95189],[92.84186,12.9527],[92.84409,12.95443],[92.8434,12.95679],[92.84439,12.95435],[92.84214,12.95255],[92.84386,12.95225],[92.84484,12.95382],[92.84597,12.95111],[92.84501,12.94854],[92.84235,12.94845],[92.84203,12.94714],[92.84797,12.94815],[92.84702,12.95173],[92.84821,12.95417],[92.85055,12.95469],[92.84735,12.95547],[92.85032,12.95791],[92.84808,12.95984],[92.85128,12.96102],[92.84853,12.95987],[92.85057,12.95774],[92.84778,12.95573],[92.85421,12.95472],[92.84841,12.9537],[92.84995,12.95038],[92.84942,12.94557],[92.85391,12.94357],[92.85517,12.94459],[92.85412,12.94739],[92.85533,12.94456],[92.85366,12.94019],[92.85803,12.93512],[92.87045,12.9353],[92.87619,12.94485],[92.87263,12.94919],[92.87253,12.95377],[92.87651,12.95996],[92.87327,12.964],[92.88029,12.9685],[92.87771,12.97346],[92.87961,12.97386],[92.8821,12.97804],[92.8821,12.98085],[92.88029,12.98005],[92.8802,12.98169],[92.88606,12.98597],[92.88656,12.9913],[92.88443,12.993],[92.88618,12.99889],[92.88308,13.00042],[92.88301,13.00225],[92.88487,13.00331],[92.88301,13.00544],[92.88501,13.00339],[92.88327,13.00055],[92.88645,12.99893],[92.88538,12.99409],[92.8884,12.99688],[92.89028,12.99673],[92.88773,13.00003],[92.88605,13.00728],[92.8906,12.99702],[92.885,12.99288],[92.88765,12.99131],[92.8862,12.98246],[92.89028,12.98932],[92.89621,12.99531],[92.89859,12.99386],[92.8956,12.98595],[92.89949,12.9845],[92.90139,12.98594],[92.90613,12.98357],[92.9046,12.97986],[92.90726,12.97774],[92.90493,12.97681],[92.90403,12.97386],[92.90534,12.96617],[92.90899,12.96287],[92.90701,12.96057],[92.90675,12.95401],[92.90769,12.94901],[92.91046,12.94531],[92.91404,12.94802],[92.91388,12.95035],[92.91261,12.94683],[92.91054,12.94662],[92.9123,12.94736],[92.91546,12.95459],[92.91485,12.9504],[92.91626,12.95485],[92.9198,12.95806],[92.92733,12.95674],[92.93176,12.96309],[92.93072,12.96562],[92.92993,12.96236],[92.92844,12.96659],[92.9331,12.96672],[92.93249,12.96517],[92.9347,12.96451],[92.93924,12.96828],[92.93863,12.97237],[92.93728,12.96838],[92.93419,12.96617],[92.93731,12.97023],[92.93624,12.97369],[92.93784,12.97417],[92.93862,12.97901],[92.93648,12.98286],[92.93128,12.98259],[92.9308,12.98432],[92.93322,12.98559],[92.93303,12.99129],[92.93142,12.99076],[92.93305,12.98941],[92.92789,12.99094],[92.91839,12.98728],[92.91687,12.98953],[92.91783,12.99117],[92.91474,12.99366],[92.91516,12.99886],[92.91281,13.00483],[92.91057,13.00575],[92.90142,13.00201],[92.901,13.00625],[92.89719,13.00797],[92.89919,13.00946],[92.89658,13.00925],[92.89631,13.01087],[92.89427,13.01111],[92.89981,13.00968],[92.89775,13.00806],[92.9015,13.00637],[92.90159,13.00244],[92.90243,13.00759],[92.90416,13.0067],[92.90457,13.00347],[92.91047,13.00752],[92.90606,13.015],[92.90093,13.01392],[92.90599,13.01647],[92.90444,13.02135],[92.90173,13.02188],[92.89534,13.01808],[92.89635,13.02008],[92.89855,13.01988],[92.9022,13.02274],[92.90825,13.0194],[92.91481,13.0325],[92.92111,13.03969],[92.92124,13.04426],[92.9153,13.05492],[92.91229,13.05668],[92.8971,13.05815],[92.88966,13.05068],[92.88914,13.04703],[92.88651,13.0439],[92.88144,13.04837],[92.87472,13.04837],[92.87518,13.04532],[92.87348,13.04639],[92.87258,13.04352],[92.87335,13.04677],[92.87501,13.04547],[92.87408,13.04851],[92.8792,13.0489],[92.876,13.05364],[92.87006,13.0548],[92.86679,13.05253],[92.86994,13.05132],[92.86829,13.04931],[92.8693,13.04691],[92.86356,13.04365],[92.86895,13.04697],[92.8678,13.04932],[92.86962,13.05109],[92.86634,13.0525],[92.87111,13.05556],[92.8636,13.05901],[92.86303,13.06143],[92.8655,13.06444],[92.86028,13.0656],[92.85459,13.06296],[92.84993,13.06333],[92.84887,13.05923],[92.85082,13.05521],[92.84592,13.0548],[92.84359,13.05089],[92.84555,13.05444],[92.84339,13.0573],[92.84436,13.06044],[92.84167,13.06001],[92.84434,13.06095],[92.84447,13.05626],[92.84944,13.05485],[92.84839,13.0595],[92.84959,13.06387],[92.85481,13.06364],[92.85961,13.06642],[92.85773,13.07052],[92.84793,13.0733],[92.84629,13.07514],[92.84826,13.07686],[92.84656,13.07502],[92.8478,13.07369],[92.85805,13.07136],[92.85867,13.07502],[92.85363,13.07772],[92.85803,13.0799],[92.8541,13.07765],[92.85899,13.0752],[92.85863,13.07044],[92.86041,13.06663],[92.86654,13.06455],[92.86416,13.05968],[92.87605,13.05497],[92.88578,13.04536],[92.88909,13.05217],[92.89506,13.05866],[92.91011,13.06132],[92.91214,13.06679],[92.91177,13.07112],[92.90842,13.07661],[92.89983,13.08129],[92.89831,13.09345],[92.88557,13.0923],[92.88572,13.09585],[92.89123,13.10116],[92.88897,13.1071],[92.88681,13.10791],[92.88396,13.10625],[92.88171,13.10777],[92.88088,13.10489],[92.87688,13.10207],[92.8732,13.10346],[92.87667,13.10239],[92.87668,13.10371],[92.88032,13.10519],[92.88149,13.1084],[92.88388,13.10664],[92.88876,13.10793],[92.88847,13.11392],[92.88213,13.12312],[92.88303,13.12802],[92.87822,13.13147],[92.87635,13.135],[92.87809,13.13798],[92.87455,13.13642],[92.87322,13.13745],[92.87583,13.13763],[92.87342,13.14012],[92.87668,13.14189],[92.87299,13.14908],[92.87577,13.1483],[92.87717,13.14991],[92.8758,13.14759],[92.87325,13.14866],[92.87737,13.14118],[92.87392,13.13953],[92.87834,13.13849],[92.87693,13.13509],[92.88386,13.12807],[92.8829,13.1232],[92.88751,13.11794],[92.89229,13.10331],[92.89242,13.10076],[92.88812,13.09676],[92.88711,13.09334],[92.89245,13.09593],[92.89886,13.09551],[92.90054,13.09222],[92.90087,13.08187],[92.90401,13.07947],[92.90817,13.07948],[92.91009,13.08145],[92.91223,13.07998],[92.91016,13.08108],[92.90853,13.07924],[92.91356,13.07465],[92.91283,13.07156],[92.91713,13.06571],[92.91958,13.05623],[92.92259,13.05349],[92.92708,13.05574],[92.92459,13.06484],[92.92852,13.06846],[92.92848,13.07241],[92.92897,13.06843],[92.9251,13.06428],[92.9274,13.05596],[92.93315,13.05807],[92.93455,13.0606],[92.93579,13.07735],[92.93377,13.08923],[92.93621,13.09207],[92.9356,13.09357],[92.93849,13.09199],[92.93964,13.09387],[92.93817,13.1064],[92.93685,13.10828],[92.93768,13.10519],[92.93589,13.10458],[92.93359,13.10929],[92.93627,13.10481],[92.93717,13.10832],[92.93921,13.10415],[92.94183,13.11117],[92.94212,13.11779],[92.94365,13.12228],[92.9457,13.12372],[92.94131,13.13215],[92.94166,13.13375],[92.94405,13.134],[92.93927,13.13998],[92.94008,13.14109],[92.94292,13.13989],[92.94185,13.14247],[92.94048,13.14214],[92.93997,13.14559],[92.94122,13.14552],[92.9408,13.14254],[92.94329,13.13975],[92.93975,13.14013],[92.94445,13.13391],[92.94164,13.13224],[92.94614,13.12351],[92.9426,13.11738],[92.94084,13.10519],[92.94318,13.10446],[92.94167,13.10209],[92.94398,13.10355],[92.94185,13.10181],[92.94278,13.10436],[92.94039,13.10406],[92.94077,13.09459],[92.93935,13.08867],[92.94559,13.08966],[92.93989,13.08808],[92.93895,13.09106],[92.9349,13.08928],[92.93665,13.08391],[92.93883,13.08264],[92.93669,13.08364],[92.93792,13.07791],[92.94159,13.07898],[92.93813,13.07726],[92.93729,13.06545],[92.9399,13.06324],[92.94612,13.06707],[92.94647,13.06931],[92.94955,13.06769],[92.9504,13.07005],[92.95598,13.07282],[92.95398,13.07254],[92.9529,13.07019],[92.95601,13.06916],[92.95673,13.06564],[92.95577,13.06434],[92.95581,13.0689],[92.95257,13.06999],[92.95075,13.0699],[92.94987,13.06744],[92.94663,13.06882],[92.94656,13.06661],[92.9386,13.06072],[92.93814,13.05886],[92.93928,13.05656],[92.94344,13.05467],[92.94522,13.05579],[92.94429,13.05451],[92.94541,13.05298],[92.94847,13.0515],[92.94753,13.05055],[92.94817,13.05182],[92.94302,13.05407],[92.9356,13.05283],[92.93314,13.04805],[92.9332,13.04224],[92.93474,13.03787],[92.93905,13.03388],[92.94962,13.02834],[92.95295,13.01873],[92.95964,13.01423],[92.96367,13.01496],[92.9707,13.01147],[92.97415,13.01308],[92.97443,13.01592],[92.96866,13.01814],[92.9694,13.02171],[92.96592,13.0275],[92.96731,13.02993],[92.96989,13.0281],[92.97924,13.02638],[92.98196,13.02425],[92.9866,13.02543],[92.99862,13.02418],[92.99794,13.02602],[92.99165,13.02761],[92.99123,13.03144],[92.99394,13.03481],[92.99383,13.0314],[93.0,13.03151],[93.00098,13.02813],[93.00344,13.02816],[93.0091,13.03514],[93.01089,13.04],[93.00979,13.04269],[93.01371,13.04402],[93.01293,13.04871],[93.01994,13.04955],[93.02319,13.05783],[93.02989,13.0672],[93.02574,13.07418],[93.02931,13.08055],[93.03258,13.0801],[93.03433,13.08142],[93.03529,13.08982],[93.03351,13.09264],[93.03462,13.09897],[93.03276,13.10262],[93.03159,13.11447],[93.03323,13.12176],[93.03016,13.12736],[93.03696,13.14055],[93.03355,13.16294],[93.03703,13.17158],[93.03175,13.17858],[93.03516,13.18692],[93.03613,13.19501],[93.04546,13.21057],[93.04234,13.22215],[93.04377,13.2227],[93.04553,13.21895],[93.04723,13.22421],[93.05336,13.22601],[93.05416,13.23077],[93.05683,13.23291],[93.05588,13.24165],[93.05793,13.24936],[93.05582,13.25527],[93.06022,13.26304],[93.06352,13.26324],[93.0658,13.27378],[93.04719,13.26129],[93.04402,13.25835],[93.04371,13.25427],[93.04364,13.25813],[93.04664,13.2606],[93.04441,13.26293],[93.04585,13.26501],[93.04237,13.26589],[93.03974,13.26977],[93.04663,13.27865],[93.04572,13.28275],[93.04205,13.27978],[93.03885,13.28146],[93.03608,13.27868],[93.03313,13.2797],[93.03355,13.27761],[93.02535,13.28257],[93.01835,13.27795],[93.016,13.27888],[93.01353,13.27651],[93.01109,13.27682],[93.00941,13.28184],[93.01614,13.28959],[93.01544,13.29209],[93.01155,13.29402],[93.01202,13.29559],[93.01763,13.29365],[93.02103,13.29487],[93.02101,13.29677],[93.02001,13.29831],[93.01754,13.29645],[93.01669,13.29823],[93.014,13.29791],[93.0096,13.30061],[93.00548,13.29656],[93.0075,13.29193],[93.00513,13.29719],[93.01023,13.30226],[93.00253,13.30391],[93.00068,13.30219],[93.00084,13.29873],[92.99789,13.30023],[92.99504,13.29712],[92.99336,13.2994],[92.98636,13.29916],[92.9972,13.29019],[92.99972,13.28555],[92.99881,13.2822],[93.0,13.28085],[92.99792,13.28209],[92.99894,13.28495],[92.99505,13.28286],[92.9944,13.27977],[92.99459,13.28337],[92.99643,13.28313],[92.99872,13.28601],[92.99251,13.29211],[92.98657,13.29064],[92.99078,13.28816],[92.9886,13.28621],[92.99035,13.28841],[92.98636,13.28957],[92.98271,13.28583],[92.98347,13.28303],[92.98134,13.28295],[92.98106,13.28125],[92.97996,13.28077],[92.97802,13.28335],[92.97723,13.28177],[92.97386,13.28191],[92.9737,13.2836],[92.97677,13.28218],[92.97836,13.28381],[92.98063,13.28153],[92.98115,13.28341],[92.98316,13.28329],[92.98167,13.28829],[92.98429,13.28721],[92.98616,13.2915],[92.99055,13.29191],[92.9827,13.29923],[92.98681,13.30114],[92.99367,13.30137],[92.99697,13.31489],[92.99089,13.31568],[92.98916,13.3175],[92.98836,13.31637],[92.99111,13.31389],[92.98864,13.31146],[92.99227,13.30991],[92.98876,13.31087],[92.98819,13.31219],[92.99073,13.31448],[92.98805,13.31583],[92.9875,13.31812],[92.98474,13.31787],[92.98476,13.32064],[92.98013,13.32153],[92.97727,13.32479],[92.96921,13.32423],[92.96461,13.32834],[92.95933,13.32789],[92.95901,13.32544],[92.96179,13.32332],[92.9607,13.32031],[92.95827,13.32248],[92.95263,13.31955],[92.94939,13.32084],[92.94843,13.31738],[92.94947,13.32119],[92.95264,13.32007],[92.96118,13.32308],[92.95754,13.3265],[92.95558,13.32531],[92.95191,13.32694],[92.95569,13.32577],[92.95932,13.32908],[92.95789,13.3304],[92.95978,13.3314],[92.95517,13.33691],[92.95559,13.3394],[92.95816,13.33905],[92.95537,13.3438],[92.94996,13.34482],[92.94959,13.34151],[92.94928,13.34474],[92.95064,13.34528],[92.94947,13.3491],[92.9454,13.35102],[92.94936,13.35006],[92.95082,13.34586],[92.95462,13.34428],[92.96002,13.34666],[92.95891,13.3486],[92.96104,13.3483],[92.96211,13.35482],[92.95743,13.36022],[92.95382,13.35863],[92.95387,13.36057],[92.95082,13.36153],[92.95429,13.3609],[92.95404,13.35909],[92.9575,13.36069],[92.96098,13.35677],[92.9653,13.36008],[92.97304,13.35934],[92.96925,13.35891],[92.9679,13.35701],[92.9702,13.35294],[92.96905,13.35017],[92.97095,13.34682],[92.9758,13.35132],[92.97495,13.34264],[92.97791,13.33976],[92.97998,13.33205],[92.98416,13.32802],[92.98807,13.32963],[92.98716,13.33391],[92.98858,13.34164],[92.99919,13.35049],[93.00021,13.34922],[93.00454,13.3522],[93.01075,13.35265],[93.01527,13.34868],[93.01879,13.34943],[93.02379,13.34774],[93.026,13.34437],[93.02883,13.34586],[93.03144,13.3439],[93.03401,13.34916],[93.04116,13.35154],[93.04112,13.3552],[93.03634,13.36017],[93.03153,13.35996],[93.03113,13.35856],[93.02887,13.3604],[93.02712,13.35807],[93.02438,13.35759],[93.02903,13.36083],[93.03296,13.3606],[93.03573,13.36544],[93.04005,13.36823],[93.0363,13.36982],[93.03433,13.3744],[93.02433,13.37212],[93.01683,13.37512],[93.01438,13.37128],[93.01736,13.36994],[93.01413,13.37074],[93.01641,13.37535],[93.00885,13.37935],[93.00824,13.38329],[93.0039,13.38614],[93.00318,13.3896],[92.99688,13.38466],[93.00014,13.38343],[93.00014,13.38188],[92.99383,13.37984],[92.99491,13.37634],[92.99226,13.38029],[92.99237,13.37832],[92.98873,13.37678],[92.98875,13.37889],[92.98311,13.37729],[92.97963,13.37992],[92.98529,13.37776],[92.98679,13.37858],[92.9859,13.38001],[92.98907,13.3791],[92.98875,13.37732],[92.99192,13.37871],[92.99114,13.38087],[92.99992,13.38224],[92.99678,13.38376],[92.99641,13.38757],[92.99715,13.38558],[92.99966,13.38667],[93.00373,13.39163],[93.00027,13.39266],[92.99921,13.39595],[93.00047,13.39289],[93.00365,13.39239],[93.00383,13.38729],[93.00875,13.38356],[93.00992,13.37912],[93.01288,13.3773],[93.02497,13.37322],[93.02471,13.37489],[93.02626,13.37396],[93.02751,13.37652],[93.02671,13.37362],[93.03289,13.37589],[93.03788,13.37541],[93.0367,13.37768],[93.03848,13.3796],[93.03579,13.37878],[93.03606,13.38142],[93.03411,13.38146],[93.03548,13.38189],[93.03618,13.37904],[93.03884,13.37983],[93.03712,13.37731],[93.0399,13.37524],[93.04353,13.37763],[93.04136,13.38025],[93.04192,13.38196],[93.04189,13.37999],[93.04704,13.37461],[93.04803,13.37874],[93.04568,13.37724],[93.0495,13.38112],[93.05112,13.3898],[93.05352,13.38941],[93.05553,13.39206],[93.05975,13.39122],[93.06039,13.39284],[93.06361,13.39024],[93.06337,13.39224],[93.06518,13.39141],[93.06419,13.39431],[93.0685,13.39663],[93.06946,13.40785],[93.06479,13.40631],[93.06139,13.40199],[93.06004,13.40268],[93.05956,13.39844],[93.0584,13.39902],[93.06192,13.41795],[93.06106,13.42147],[93.05776,13.42024],[93.05458,13.41214],[93.04633,13.40456],[93.04445,13.40612],[93.04525,13.40945],[93.04148,13.41443],[93.04041,13.41356],[93.03949,13.41587],[93.03606,13.41704],[93.03612,13.42075],[93.03918,13.4237],[93.03904,13.42791],[93.03259,13.42521],[93.03018,13.4283],[93.01525,13.43194],[93.01303,13.43067],[93.01442,13.43237],[93.01312,13.43394],[93.00798,13.4332],[93.00527,13.43152],[93.00751,13.42669],[93.01319,13.42519],[93.0134,13.42219],[93.01031,13.42233],[93.01033,13.42054],[93.00751,13.41821],[93.0099,13.4227],[93.0123,13.42272],[93.013,13.42486],[93.00768,13.42523],[93.00544,13.43095],[93.00056,13.43247],[93.00006,13.43582],[92.99241,13.4327],[92.99039,13.42712],[92.98909,13.42741],[92.99024,13.42818],[92.98882,13.43046],[92.99088,13.42986],[92.99168,13.43204],[92.99022,13.43584],[92.99212,13.43737],[92.99079,13.43808],[92.99274,13.4374],[92.991,13.43574],[92.99155,13.43409],[92.9938,13.43349],[92.99702,13.43559],[92.99652,13.44106],[92.99735,13.43639],[93.00071,13.43615],[93.00177,13.4326],[93.00525,13.43236],[93.01186,13.43512],[93.0154,13.43379],[93.01637,13.43538],[93.01327,13.43843],[93.00787,13.43765],[93.01271,13.43888],[93.01286,13.44373],[93.01277,13.44043],[93.01661,13.43618],[93.01654,13.43215],[93.01844,13.43164],[93.02598,13.43406],[93.03152,13.4326],[93.03426,13.43579],[93.0329,13.43793],[93.0352,13.43752],[93.0366,13.44129],[93.034,13.44225],[93.03351,13.44454],[93.03637,13.44447],[93.03647,13.44757],[93.03561,13.44866],[93.03352,13.4447],[93.035,13.44904],[93.03346,13.45122],[93.03465,13.45232],[93.0299,13.46108],[93.02746,13.46184],[93.02564,13.46064],[93.017,13.46326],[93.01447,13.4546],[93.01156,13.45329],[93.01045,13.45678],[93.01144,13.45881],[93.00781,13.45906],[93.00872,13.46149],[93.00562,13.46179],[93.00511,13.46328],[93.00946,13.4613],[93.00806,13.45937],[93.01202,13.45881],[93.0108,13.45691],[93.01192,13.45361],[93.0144,13.45532],[93.01862,13.4663],[93.02288,13.46808],[93.03099,13.4646],[93.03372,13.46586],[93.035,13.47203],[93.03383,13.47468],[93.03781,13.48028],[93.03398,13.48481],[93.03624,13.48408],[93.03916,13.48634],[93.04057,13.4923],[93.03969,13.49771],[93.04317,13.50491],[93.04232,13.51016],[93.04352,13.51473],[93.04214,13.51905],[93.04447,13.5254],[93.04421,13.52971],[93.04085,13.53532],[93.04053,13.54212],[93.02733,13.5794],[93.02518,13.57978],[93.01423,13.57223],[93.01383,13.56901],[93.01644,13.56873],[93.01633,13.5675],[93.01388,13.56634],[93.01352,13.56839],[93.01185,13.5667],[93.0118,13.56065],[93.01323,13.55965],[93.01052,13.54866],[93.00696,13.55499],[93.00832,13.55913],[93.00368,13.56626],[92.99716,13.56783],[92.98924,13.57507],[92.98585,13.5738],[92.98209,13.56944],[92.98225,13.56545],[92.98545,13.5666],[92.98231,13.56146],[92.98367,13.55673],[92.97918,13.55518],[92.97886,13.54975],[92.98297,13.54468],[92.98299,13.53958],[92.98503,13.53978],[92.98727,13.53707],[92.99033,13.53735],[92.98957,13.53885],[92.99103,13.53906],[92.9898,13.5387],[92.99051,13.53711],[92.98733,13.53642],[92.98576,13.52894],[92.98827,13.52815],[92.987,13.52354],[92.99102,13.52325],[92.99474,13.52015],[92.99549,13.5248],[93.0,13.52391],[92.99576,13.52442],[92.99541,13.5199],[92.99273,13.52156],[92.99057,13.51788],[92.989,13.51913],[92.98785,13.51775],[92.98884,13.5195],[92.99071,13.51838],[92.99201,13.52202],[92.98621,13.52302],[92.98703,13.52769],[92.97964,13.52698],[92.98066,13.52994],[92.9782,13.52923],[92.97154,13.54401],[92.96521,13.54998],[92.96307,13.54924],[92.96335,13.54704],[92.95855,13.54286],[92.95599,13.54547],[92.94972,13.54471],[92.94771,13.54278],[92.94771,13.53926],[92.94557,13.53778],[92.94124,13.53778],[92.93567,13.54176],[92.92433,13.53991],[92.92247,13.53775],[92.92046,13.5393],[92.91808,13.53867],[92.91355,13.5351],[92.91138,13.52742],[92.91444,13.52043],[92.91694,13.52105],[92.91771,13.52322],[92.92101,13.52097],[92.91909,13.52366],[92.92425,13.52113],[92.93026,13.52407],[92.93082,13.52587],[92.92996,13.52334],[92.93265,13.52078],[92.93803,13.53159],[92.93732,13.5264],[92.93945,13.52507],[92.94179,13.52618],[92.94078,13.52309],[92.94361,13.5234],[92.94408,13.52001],[92.94517,13.52008],[92.94387,13.51976],[92.94325,13.52316],[92.94046,13.522],[92.94133,13.52584],[92.93943,13.52467],[92.93612,13.52718],[92.93291,13.52025],[92.92867,13.52334],[92.92615,13.52162],[92.92716,13.51468],[92.92151,13.51351],[92.91952,13.51658],[92.91739,13.51709],[92.91326,13.51236],[92.91241,13.50839],[92.9144,13.50619],[92.91862,13.50995],[92.92225,13.50937],[92.92412,13.50503],[92.92399,13.5015],[92.92272,13.50136],[92.92722,13.49931],[92.92972,13.49602],[92.9348,13.50002],[92.9304,13.4952],[92.92748,13.4977],[92.9294,13.49137],[92.92674,13.48254],[92.92818,13.48148],[92.9318,13.48238],[92.93282,13.48102],[92.92762,13.47513],[92.92828,13.47406],[92.93106,13.47489],[92.93222,13.47186],[92.93006,13.47117],[92.92634,13.47325],[92.92211,13.47146],[92.92275,13.46716],[92.91957,13.46832],[92.92133,13.46344],[92.91891,13.45999],[92.91902,13.45663],[92.92074,13.45746],[92.92037,13.45502],[92.92028,13.45735],[92.91837,13.4565],[92.9185,13.46111],[92.92016,13.46281],[92.91557,13.46347],[92.92079,13.46305],[92.9187,13.46788],[92.92254,13.4682],[92.92106,13.47235],[92.92711,13.47402],[92.92698,13.47612],[92.93182,13.48074],[92.92469,13.48079],[92.92832,13.49154],[92.9249,13.49892],[92.91575,13.50068],[92.91234,13.49842],[92.9044,13.4983],[92.90186,13.49629],[92.90064,13.49344],[92.90311,13.49112],[92.90127,13.4873],[92.90219,13.48498],[92.89795,13.47715],[92.89325,13.47746],[92.89436,13.47263],[92.89726,13.4711],[92.89531,13.46962],[92.89866,13.46739],[92.89822,13.46515],[92.8984,13.46722],[92.8949,13.46989],[92.8964,13.47141],[92.89553,13.47216],[92.89103,13.46911],[92.88787,13.46903],[92.89108,13.46961],[92.89404,13.4724],[92.89312,13.47675],[92.89106,13.47852],[92.8862,13.47928],[92.87537,13.47645],[92.875,13.47207],[92.87371,13.47155],[92.86887,13.474],[92.87026,13.46956],[92.86952,13.46299],[92.87422,13.45964],[92.87099,13.4579],[92.87308,13.45624],[92.87092,13.45412],[92.87083,13.44513],[92.87738,13.44237],[92.87836,13.44335],[92.88024,13.43956],[92.87919,13.43575],[92.884,13.43151],[92.88715,13.43276],[92.88971,13.42788],[92.88984,13.42372],[92.89293,13.42575],[92.89779,13.42606],[92.89748,13.42783],[92.89899,13.42876],[92.89858,13.42616],[92.89001,13.42306],[92.88668,13.43197],[92.88313,13.43125],[92.87868,13.4357],[92.87321,13.43636],[92.87147,13.43333],[92.87745,13.43374],[92.87744,13.4315],[92.88113,13.43087],[92.8799,13.42885],[92.87333,13.42731],[92.87245,13.42483],[92.86828,13.42467],[92.86687,13.42226],[92.8679,13.41607],[92.87216,13.41472],[92.87362,13.41223],[92.8745,13.40207],[92.87964,13.39727],[92.8829,13.39622],[92.88577,13.39974],[92.88212,13.40427],[92.88446,13.407],[92.88675,13.40584],[92.88658,13.40171],[92.89219,13.40297],[92.89602,13.40126],[92.89185,13.40437],[92.89359,13.40797],[92.89578,13.40835],[92.89476,13.40974],[92.89679,13.41261],[92.89517,13.40966],[92.8963,13.40817],[92.8938,13.40743],[92.89226,13.40404],[92.8954,13.40312],[92.89679,13.40096],[92.89722,13.40317],[92.89943,13.4028],[92.89716,13.40276],[92.89804,13.40161],[92.89661,13.39929],[92.8932,13.39674],[92.88984,13.39979],[92.88788,13.39956],[92.88691,13.39793],[92.88897,13.39485],[92.89313,13.39593],[92.89526,13.39215],[92.89901,13.39111],[92.89873,13.38914],[92.90325,13.39072],[92.90396,13.39434],[92.90289,13.38764],[92.90725,13.38267],[92.91034,13.38482],[92.91191,13.38287],[92.91497,13.38254],[92.9214,13.39021],[92.92477,13.39021],[92.91804,13.38605],[92.91598,13.38241],[92.91194,13.38243],[92.91003,13.38433],[92.90598,13.38238],[92.90234,13.38753],[92.90291,13.38994],[92.89848,13.38854],[92.89863,13.39104],[92.89495,13.39174],[92.89389,13.39478],[92.89214,13.3956],[92.88908,13.3942],[92.88576,13.39804],[92.87985,13.39127],[92.88117,13.389],[92.8817,13.3922],[92.88352,13.39215],[92.8828,13.39029],[92.88452,13.38885],[92.88235,13.38351],[92.88481,13.38305],[92.88604,13.38494],[92.88766,13.38385],[92.88516,13.38284],[92.88457,13.38038],[92.88601,13.37867],[92.88334,13.3762],[92.8874,13.37361],[92.8855,13.37121],[92.88827,13.37141],[92.88735,13.36882],[92.88552,13.36905],[92.8857,13.36722],[92.88502,13.36939],[92.88802,13.37042],[92.88512,13.37081],[92.88702,13.37307],[92.88587,13.37483],[92.88292,13.37515],[92.88553,13.37915],[92.88441,13.38323],[92.882,13.38325],[92.88396,13.38874],[92.88243,13.39],[92.88312,13.39222],[92.88159,13.38864],[92.87917,13.39111],[92.88271,13.39508],[92.87893,13.39613],[92.87299,13.40239],[92.87278,13.40878],[92.87048,13.41399],[92.86225,13.41435],[92.86134,13.41265],[92.86331,13.4118],[92.85988,13.40943],[92.85369,13.4093],[92.85132,13.40995],[92.85061,13.41587],[92.84859,13.41835],[92.84754,13.41745],[92.85016,13.41219],[92.8451,13.41228],[92.84206,13.40965],[92.84175,13.40695],[92.84589,13.40369],[92.84124,13.40574],[92.83886,13.40119],[92.83729,13.39212],[92.84001,13.39057],[92.84042,13.38845],[92.84431,13.39255],[92.84331,13.38809],[92.84443,13.38696],[92.85037,13.38991],[92.85084,13.38591],[92.85811,13.38521],[92.86263,13.39064],[92.86238,13.40129],[92.86358,13.38982],[92.85887,13.38394],[92.86576,13.38798],[92.86705,13.39077],[92.86974,13.39068],[92.86745,13.39049],[92.86709,13.38852],[92.85736,13.38044],[92.85284,13.37955],[92.85067,13.37626],[92.85016,13.37279],[92.85198,13.37007],[92.84975,13.36703],[92.85168,13.36379],[92.8485,13.36304],[92.85101,13.35941],[92.85436,13.35918],[92.84999,13.35937],[92.84788,13.36346],[92.85122,13.36433],[92.8493,13.36631],[92.85139,13.37045],[92.84935,13.37781],[92.84715,13.37645],[92.84434,13.37888],[92.84005,13.37858],[92.8364,13.37523],[92.83333,13.37475],[92.83356,13.37327],[92.83585,13.37285],[92.83605,13.36953],[92.83217,13.3704],[92.83002,13.36909],[92.83124,13.3657],[92.8327,13.36549],[92.83154,13.36409],[92.83367,13.36261],[92.83143,13.36088],[92.83302,13.35589],[92.82985,13.35508],[92.82772,13.35029],[92.82885,13.34925],[92.83129,13.35039],[92.83076,13.3477],[92.83339,13.34684],[92.8286,13.34211],[92.83311,13.33829],[92.82552,13.33392],[92.82696,13.33265],[92.82406,13.33053],[92.82296,13.32358],[92.82531,13.3216],[92.82563,13.31629],[92.82767,13.31608],[92.82559,13.31358],[92.82231,13.31782],[92.82046,13.31085],[92.82493,13.30399],[92.82709,13.30624],[92.82993,13.30338],[92.83357,13.30365],[92.83497,13.30693],[92.83888,13.30745],[92.83442,13.30536],[92.83555,13.30367],[92.83986,13.30452],[92.84082,13.3012],[92.83346,13.29591],[92.83459,13.29163],[92.83804,13.28815],[92.83207,13.28712],[92.82809,13.29071],[92.82327,13.28965],[92.82086,13.28369],[92.8214,13.2806],[92.81939,13.27905],[92.82205,13.27391],[92.81358,13.27549],[92.8111,13.27083],[92.81414,13.26815],[92.81768,13.26996],[92.81957,13.2683],[92.82034,13.27068],[92.82425,13.27024],[92.827,13.26646],[92.83271,13.26828],[92.83667,13.26316],[92.83775,13.25902],[92.83854,13.26117],[92.84505,13.26058],[92.84913,13.26232],[92.85061,13.2653],[92.84946,13.26323],[92.85769,13.25259],[92.85665,13.25425],[92.8592,13.25687],[92.86158,13.25384],[92.862,13.25556],[92.86435,13.25443],[92.86465,13.25628],[92.86884,13.25501],[92.86717,13.25679],[92.8704,13.25831],[92.86787,13.25648],[92.86885,13.2546],[92.86499,13.25584],[92.86362,13.25374],[92.86203,13.25497],[92.86239,13.25294],[92.85945,13.2565],[92.85718,13.25442],[92.85802,13.25226],[92.85467,13.25406],[92.85513,13.25059],[92.85411,13.25431],[92.85515,13.25587],[92.85186,13.25698],[92.85017,13.26217],[92.8513,13.2516],[92.84753,13.24335],[92.84164,13.24347],[92.83902,13.2459],[92.8425,13.24082],[92.85152,13.23966],[92.85484,13.23396],[92.85181,13.22815],[92.85587,13.22389],[92.85602,13.21964],[92.85094,13.21344],[92.85444,13.21321],[92.84858,13.21241],[92.84894,13.20839],[92.85461,13.20969],[92.85857,13.20673],[92.86212,13.2066],[92.85858,13.20072],[92.86381,13.19608],[92.85785,13.19601],[92.85573,13.19054],[92.85792,13.18821],[92.85878,13.19243],[92.86051,13.19203],[92.86143,13.18503],[92.86312,13.18483],[92.86091,13.18552],[92.86043,13.19174],[92.85928,13.19211],[92.85828,13.18767],[92.85538,13.19074],[92.85717,13.19622],[92.86293,13.19647],[92.85822,13.20077],[92.86124,13.20638],[92.85848,13.20613],[92.85419,13.20905],[92.84832,13.20808],[92.84781,13.21273],[92.85519,13.21947],[92.85224,13.22186],[92.85514,13.22017],[92.85522,13.22289],[92.85096,13.22786],[92.8536,13.23392],[92.85042,13.23863],[92.8397,13.23918],[92.84105,13.24089],[92.83668,13.24393],[92.83315,13.24144],[92.83198,13.24332],[92.83046,13.24305],[92.82551,13.23717],[92.82682,13.23394],[92.82473,13.22297],[92.82935,13.22483],[92.82248,13.21671],[92.82347,13.21548],[92.82373,13.21651],[92.832,13.21544],[92.82853,13.21047]]],[[[94.26511,13.46335],[94.26427,13.46371],[94.26357,13.46436],[94.26258,13.46615],[94.26213,13.46647],[94.26151,13.46644],[94.25988,13.4658],[94.25878,13.46473],[94.25856,13.46395],[94.25828,13.46376],[94.25702,13.46374],[94.25632,13.46442],[94.25485,13.46468],[94.25321,13.46591],[94.25249,13.46605],[94.25241,13.46555],[94.25273,13.46454],[94.25127,13.46178],[94.24991,13.46026],[94.24757,13.4598],[94.24617,13.45705],[94.24313,13.45223],[94.24197,13.44915],[94.24101,13.44825],[94.23991,13.4481],[94.23945,13.44775],[94.23911,13.44672],[94.23948,13.44622],[94.23936,13.44379],[94.23979,13.44042],[94.24018,13.44011],[94.24116,13.44021],[94.2423,13.43913],[94.24328,13.43557],[94.24444,13.43411],[94.24472,13.43339],[94.2453,13.43286],[94.24672,13.43247],[94.24696,13.43309],[94.24722,13.43309],[94.24804,13.43246],[94.24923,13.43225],[94.25255,13.43287],[94.25293,13.43255],[94.25318,13.43139],[94.25339,13.43195],[94.25334,13.43302],[94.25392,13.43405],[94.25439,13.43418],[94.25605,13.43616],[94.25697,13.43654],[94.25743,13.4373],[94.25878,13.43694],[94.26106,13.43832],[94.26322,13.44079],[94.26495,13.44342],[94.26551,13.44536],[94.26527,13.44683],[94.26552,13.44946],[94.26642,13.4513],[94.26676,13.45419],[94.26622,13.45517],[94.26457,13.45706],[94.26444,13.45776],[94.26547,13.46066],[94.26627,13.46231],[94.26726,13.46331],[94.2674,13.46391],[94.26713,13.46405],[94.26562,13.46322],[94.26511,13.46335]]],[[[92.90178,13.6039],[92.90158,13.60416],[92.9011,13.60423],[92.90023,13.60382],[92.89876,13.60394],[92.89854,13.60332],[92.89807,13.60335],[92.89774,13.60307],[92.89526,13.60334],[92.89394,13.60313],[92.89248,13.60257],[92.89192,13.60274],[92.89135,13.6025],[92.89104,13.60199],[92.88782,13.59922],[92.88539,13.59761],[92.88472,13.59648],[92.88453,13.59553],[92.88398,13.59509],[92.88228,13.59186],[92.88265,13.59129],[92.88215,13.59065],[92.88211,13.58965],[92.88156,13.58884],[92.88135,13.58827],[92.88142,13.58767],[92.88076,13.58628],[92.88059,13.58502],[92.88077,13.58481],[92.88008,13.58258],[92.88022,13.58006],[92.87981,13.57797],[92.88006,13.57753],[92.88277,13.57509],[92.88333,13.57421],[92.8842,13.57374],[92.88585,13.57365],[92.88709,13.57388],[92.88871,13.5747],[92.88961,13.57557],[92.8918,13.58211],[92.89382,13.58556],[92.89485,13.5861],[92.89549,13.58758],[92.89624,13.58802],[92.89668,13.5879],[92.89743,13.58827],[92.89844,13.58888],[92.8988,13.58984],[92.90033,13.59048],[92.90046,13.59081],[92.89991,13.59196],[92.89996,13.59253],[92.90053,13.59261],[92.90099,13.59302],[92.90098,13.59329],[92.90071,13.59337],[92.90148,13.59366],[92.90227,13.59433],[92.90294,13.59447],[92.90327,13.59488],[92.90361,13.59451],[92.90393,13.59447],[92.90518,13.59821],[92.90453,13.59827],[92.90393,13.59874],[92.90352,13.59986],[92.90371,13.59998],[92.90386,13.60075],[92.90365,13.60153],[92.9032,13.60233],[92.90178,13.6039]]],[[[93.01501,13.63136],[93.01514,13.63159],[93.01502,13.63175],[93.01491,13.63205],[93.0148,13.63227],[93.01462,13.63207],[93.01474,13.63192],[93.01461,13.63178],[93.01441,13.63162],[93.01445,13.63146],[93.01437,13.63136],[93.01424,13.63125],[93.01425,13.63104],[93.01418,13.63075],[93.01449,13.63077],[93.01471,13.63057],[93.0148,13.63037],[93.01466,13.63024],[93.01447,13.63014],[93.01434,13.63037],[93.01409,13.63044],[93.01406,13.63031],[93.01442,13.63004],[93.01442,13.62992],[93.01481,13.62973],[93.01473,13.62958],[93.01455,13.62949],[93.0144,13.62933],[93.01472,13.62934],[93.0152,13.62977],[93.01523,13.63024],[93.01501,13.63136]]],[[[93.01403,13.63363],[93.01374,13.63368],[93.01372,13.63377],[93.01378,13.63394],[93.01363,13.63434],[93.0137,13.63453],[93.01387,13.63481],[93.01392,13.63502],[93.01348,13.63517],[93.01354,13.63487],[93.0133,13.63464],[93.01328,13.63442],[93.0129,13.63445],[93.01287,13.63438],[93.01318,13.63405],[93.01324,13.63375],[93.013,13.63358],[93.01298,13.6333],[93.01283,13.63309],[93.01317,13.63292],[93.0136,13.63318],[93.0136,13.6334],[93.01369,13.63338],[93.01378,13.63321],[93.0141,13.63306],[93.01403,13.63363]]],[[[93.01045,13.63867],[93.01041,13.63881],[93.01037,13.63885],[93.01008,13.63885],[93.01023,13.63861],[93.01035,13.63849],[93.01045,13.63867]]],[[[93.03507,13.64126],[93.03525,13.6416],[93.03527,13.64242],[93.03523,13.64304],[93.03498,13.64353],[93.03484,13.64365],[93.03456,13.64349],[93.03457,13.64317],[93.03445,13.64274],[93.03435,13.64255],[93.03429,13.64237],[93.03424,13.64205],[93.03433,13.64183],[93.03442,13.64151],[93.03463,13.64127],[93.03507,13.64126]]],[[[93.03442,13.64497],[93.03467,13.64518],[93.03461,13.64556],[93.03442,13.6459],[93.03463,13.64634],[93.03474,13.64687],[93.03427,13.64682],[93.03396,13.6465],[93.03364,13.64637],[93.03353,13.64603],[93.03349,13.64563],[93.03332,13.64545],[93.03338,13.64511],[93.03375,13.64492],[93.03442,13.64497]]],[[[93.06393,13.65494],[93.06226,13.65576],[93.06159,13.65583],[93.05521,13.65477],[93.05347,13.65355],[93.05261,13.65369],[93.05148,13.65229],[93.05111,13.65114],[93.05138,13.65072],[93.05089,13.6491],[93.04998,13.64804],[93.04935,13.64665],[93.04903,13.64641],[93.0488,13.64679],[93.04898,13.64811],[93.04863,13.64863],[93.04748,13.64908],[93.04625,13.64853],[93.04514,13.64737],[93.04482,13.64571],[93.04502,13.64461],[93.04554,13.64398],[93.04559,13.64329],[93.04522,13.64228],[93.04541,13.64174],[93.04447,13.64094],[93.04405,13.64089],[93.04381,13.64274],[93.04298,13.64296],[93.04269,13.64269],[93.04212,13.64012],[93.04093,13.63845],[93.04107,13.63704],[93.04175,13.63551],[93.04122,13.63483],[93.04116,13.63418],[93.04157,13.63127],[93.04188,13.63085],[93.04247,13.63068],[93.04163,13.62968],[93.04181,13.62759],[93.04257,13.62692],[93.04298,13.62716],[93.04398,13.62593],[93.04402,13.62434],[93.04441,13.6244],[93.04394,13.62246],[93.04399,13.62172],[93.04436,13.62097],[93.04539,13.62057],[93.04613,13.61984],[93.04728,13.62071],[93.0474,13.62114],[93.04761,13.6202],[93.04827,13.62013],[93.04878,13.62063],[93.04901,13.62168],[93.04838,13.62186],[93.04919,13.62544],[93.05001,13.62611],[93.05086,13.62769],[93.05197,13.63075],[93.05304,13.63274],[93.05312,13.6335],[93.05467,13.63624],[93.0546,13.63739],[93.05515,13.6389],[93.0551,13.64011],[93.05555,13.64085],[93.05513,13.64267],[93.05742,13.6445],[93.05987,13.64474],[93.06235,13.64575],[93.06434,13.64733],[93.06508,13.64851],[93.06652,13.64971],[93.06701,13.65061],[93.06759,13.65029],[93.06825,13.65071],[93.06824,13.65134],[93.06764,13.65123],[93.06783,13.65219],[93.06762,13.65271],[93.06573,13.65468],[93.06515,13.65458],[93.06446,13.65505],[93.0642,13.65469],[93.06429,13.65429],[93.0639,13.65429],[93.06393,13.65494]]],[[[93.03027,13.66275],[93.0302,13.66344],[93.02975,13.66361],[93.02976,13.66334],[93.03018,13.66269],[93.03027,13.66275]]],[[[93.10833,13.65575],[93.10835,13.656],[93.10854,13.65628],[93.10833,13.65651],[93.10804,13.65651],[93.10802,13.65623],[93.10794,13.65603],[93.10799,13.65578],[93.10833,13.65575]]],[[[93.10631,13.65752],[93.10634,13.65783],[93.10623,13.6581],[93.10592,13.65823],[93.10569,13.65803],[93.10574,13.65773],[93.10584,13.6576],[93.10592,13.65752],[93.10631,13.65752]]],[[[93.11081,13.6574],[93.11074,13.6576],[93.11068,13.65778],[93.1105,13.65796],[93.11035,13.65783],[93.11035,13.65745],[93.11045,13.6573],[93.11066,13.65722],[93.11081,13.6574]]],[[[93.10768,13.66082],[93.10784,13.66097],[93.10786,13.6612],[93.10773,13.6614],[93.10735,13.66165],[93.10717,13.6615],[93.10717,13.66132],[93.10719,13.66112],[93.10732,13.66074],[93.10768,13.66082]]],[[[93.01549,13.67696],[93.0107,13.67692],[93.00978,13.67632],[93.01079,13.67519],[93.01031,13.67486],[93.01051,13.67441],[93.00704,13.67534],[93.00586,13.6749],[93.00372,13.67317],[93.00436,13.6726],[93.00445,13.67131],[93.00543,13.67046],[93.00512,13.66958],[93.00606,13.66835],[93.00471,13.6661],[93.00595,13.66508],[93.0082,13.66445],[93.00951,13.66326],[93.01001,13.66505],[93.01106,13.66543],[93.01168,13.66506],[93.01048,13.66491],[93.00988,13.66397],[93.00996,13.66297],[93.00956,13.66275],[93.00769,13.66415],[93.00608,13.66432],[93.00425,13.66603],[93.00403,13.66864],[93.00499,13.67007],[93.00403,13.67172],[93.00362,13.67075],[93.00299,13.67091],[93.00282,13.67266],[92.99989,13.67189],[92.99806,13.67078],[92.99756,13.67118],[92.99721,13.67048],[92.99563,13.67042],[92.99414,13.66979],[92.99352,13.66999],[92.99155,13.66866],[92.98923,13.66899],[92.98839,13.66793],[92.98689,13.66777],[92.98711,13.66854],[92.98355,13.66816],[92.98324,13.6673],[92.98231,13.66719],[92.98211,13.6666],[92.98169,13.66655],[92.98146,13.66718],[92.97967,13.66661],[92.97901,13.66587],[92.97913,13.66534],[92.97797,13.66549],[92.9774,13.66435],[92.9766,13.66428],[92.97428,13.66152],[92.97433,13.66048],[92.97537,13.66202],[92.97667,13.66184],[92.97658,13.66102],[92.97526,13.65952],[92.97558,13.65831],[92.97357,13.65898],[92.97494,13.65751],[92.97396,13.65647],[92.97407,13.65559],[92.97233,13.65553],[92.97149,13.65408],[92.97132,13.64966],[92.97167,13.64735],[92.9736,13.64391],[92.97511,13.64255],[92.97576,13.64304],[92.97616,13.64441],[92.97619,13.64652],[92.97705,13.6481],[92.97719,13.65001],[92.97862,13.65068],[92.97865,13.64866],[92.97932,13.64787],[92.98022,13.648],[92.9815,13.64937],[92.9815,13.64724],[92.97996,13.64721],[92.98063,13.64697],[92.98167,13.64524],[92.98113,13.64183],[92.98258,13.64074],[92.98408,13.6405],[92.98644,13.64063],[92.98672,13.64027],[92.9883,13.64111],[92.98857,13.64212],[92.98804,13.64332],[92.98812,13.64527],[92.98928,13.64476],[92.98955,13.6451],[92.99024,13.64489],[92.98999,13.64378],[92.99047,13.64334],[92.99038,13.64275],[92.99149,13.64196],[92.9929,13.64189],[92.99342,13.64275],[92.99429,13.64262],[92.99581,13.64403],[92.99614,13.64531],[92.99536,13.64591],[92.99598,13.64646],[92.99721,13.64601],[92.99769,13.64636],[92.99767,13.64726],[92.99819,13.64723],[92.99857,13.64606],[92.99961,13.64698],[93.0,13.64686],[93.00022,13.64576],[93.00091,13.64641],[93.00093,13.6483],[93.00136,13.64855],[93.0022,13.6475],[93.00273,13.64573],[93.00421,13.64652],[93.00572,13.6466],[93.00595,13.64517],[93.00739,13.64606],[93.00884,13.64467],[93.00914,13.64497],[93.00958,13.6428],[93.01336,13.64334],[93.01355,13.6408],[93.01231,13.63957],[93.0121,13.63859],[93.01296,13.63781],[93.01421,13.63762],[93.01286,13.63697],[93.0129,13.6361],[93.01477,13.63595],[93.01589,13.63462],[93.01596,13.63287],[93.01558,13.63241],[93.01614,13.62869],[93.01707,13.62963],[93.01743,13.62869],[93.01706,13.62736],[93.01758,13.62711],[93.01909,13.62758],[93.02007,13.62671],[93.02028,13.62579],[93.01697,13.62312],[93.0181,13.62204],[93.01843,13.6225],[93.01975,13.62212],[93.02061,13.62405],[93.02241,13.62425],[93.0228,13.62352],[93.02482,13.62501],[93.02776,13.62494],[93.02856,13.62544],[93.02873,13.62666],[93.02953,13.62789],[93.03032,13.6285],[93.03105,13.62848],[93.03132,13.62991],[93.03257,13.63122],[93.03247,13.63206],[93.03186,13.63228],[93.03189,13.63333],[93.03227,13.63326],[93.03197,13.63475],[93.03119,13.63568],[93.03074,13.63538],[93.02897,13.63746],[93.02936,13.63792],[93.02853,13.6403],[93.02807,13.6445],[93.02636,13.64709],[93.0257,13.6492],[93.02559,13.65001],[93.02606,13.6506],[93.02554,13.65119],[93.02583,13.65174],[93.0251,13.65435],[93.02509,13.65641],[93.02467,13.65688],[93.02558,13.66068],[93.02477,13.66222],[93.02519,13.66338],[93.02405,13.66578],[93.0243,13.66616],[93.02316,13.66694],[93.02435,13.66675],[93.02559,13.66768],[93.02543,13.66813],[93.02306,13.66876],[93.02174,13.66971],[93.02226,13.67006],[93.02201,13.66971],[93.02263,13.66954],[93.02469,13.67003],[93.02608,13.67082],[93.02628,13.67177],[93.0251,13.6729],[93.02437,13.67291],[93.02455,13.67356],[93.02299,13.67509],[93.02017,13.67625],[93.01988,13.67383],[93.01877,13.6759],[93.01728,13.6767],[93.01549,13.67696]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-AP","area_level":"State","area_name":"Andhra Pradesh","geometry_source":"SOI_States","same_as":"LGD/28/State"},"geometry":{"type":"Polygon","coordinates":[[[84.67778,19.16639],[84.67419,19.16646],[84.67252,19.16455],[84.67091,19.16604],[84.66874,19.16299],[84.66793,19.15417],[84.67102,19.15623],[84.67166,19.14822],[84.66974,19.13794],[84.66669,19.13184],[84.66732,19.12986],[84.65995,19.1315],[84.65426,19.12937],[84.64408,19.13372],[84.64363,19.12971],[84.63102,19.12968],[84.62978,19.12668],[84.61416,19.12789],[84.6072,19.12918],[84.60328,19.13193],[84.59553,19.13245],[84.59601,19.12879],[84.60285,19.12662],[84.60186,19.12318],[84.60552,19.11754],[84.60841,19.10753],[84.61128,19.10685],[84.60955,19.10078],[84.61867,19.10008],[84.61965,19.1044],[84.62548,19.09909],[84.6249,19.09564],[84.62268,19.09386],[84.62501,19.09166],[84.62411,19.08831],[84.626,19.08767],[84.62549,19.08491],[84.63042,19.08439],[84.63193,19.08656],[84.6312,19.0821],[84.63433,19.08867],[84.63678,19.08595],[84.63684,19.08974],[84.64424,19.09291],[84.64704,19.09626],[84.65319,19.09309],[84.65897,19.09443],[84.65868,19.09196],[84.66388,19.08757],[84.66347,19.0824],[84.67085,19.07633],[84.66948,19.07438],[84.66308,19.07461],[84.66113,19.06304],[84.65758,19.06431],[84.65796,19.06556],[84.65467,19.0659],[84.65394,19.06754],[84.64161,19.06727],[84.63711,19.05998],[84.63101,19.06042],[84.62987,19.0617],[84.63064,19.0646],[84.62782,19.06621],[84.61831,19.06587],[84.61705,19.06093],[84.62243,19.05985],[84.62074,19.05614],[84.61761,19.05453],[84.61343,19.05657],[84.61281,19.05353],[84.61427,19.05194],[84.60585,19.0417],[84.60198,19.03244],[84.6009,19.02479],[84.59693,19.02595],[84.59486,19.02497],[84.59415,19.02226],[84.59154,19.02296],[84.58167,19.03009],[84.58126,19.03752],[84.58329,19.04248],[84.57729,19.04047],[84.57868,19.04566],[84.58305,19.04924],[84.58152,19.05302],[84.58182,19.05891],[84.58046,19.06002],[84.58338,19.06815],[84.5831,19.07273],[84.5747,19.06757],[84.57158,19.06958],[84.57388,19.07327],[84.57286,19.07372],[84.5566,19.05658],[84.54327,19.05505],[84.52613,19.04604],[84.52412,19.0487],[84.51638,19.04843],[84.51173,19.04024],[84.50532,19.03386],[84.50047,19.03317],[84.49437,19.029],[84.48877,19.01951],[84.48502,19.01924],[84.48264,19.01657],[84.48293,19.00487],[84.47889,18.98846],[84.47603,18.98804],[84.47434,18.99176],[84.47027,18.99142],[84.46678,18.99388],[84.46489,18.99373],[84.46474,18.99161],[84.46059,18.99306],[84.46036,18.99678],[84.45582,18.99733],[84.45438,19.0],[84.44961,19.003],[84.44483,19.00445],[84.44161,19.00353],[84.44056,19.00741],[84.43712,19.00713],[84.4316,19.01348],[84.42458,19.01395],[84.42573,19.01921],[84.42109,19.02199],[84.42201,19.01275],[84.42406,19.0132],[84.42824,19.00767],[84.4325,19.00655],[84.43222,18.99505],[84.4433,18.9905],[84.44468,18.98326],[84.45243,18.97598],[84.44773,18.97557],[84.44505,18.97324],[84.44605,18.97193],[84.44168,18.96865],[84.43734,18.97037],[84.43107,18.96919],[84.42941,18.96486],[84.432,18.96229],[84.43243,18.95909],[84.42601,18.95275],[84.42422,18.94725],[84.43103,18.93585],[84.42768,18.93209],[84.43857,18.93157],[84.43947,18.92708],[84.43802,18.92046],[84.43111,18.91666],[84.42839,18.90902],[84.42443,18.91035],[84.42053,18.91767],[84.41857,18.91732],[84.41676,18.9146],[84.42047,18.91089],[84.42219,18.90541],[84.42134,18.90116],[84.41802,18.8972],[84.41288,18.89717],[84.40971,18.89512],[84.40009,18.89531],[84.39412,18.90081],[84.39353,18.90433],[84.38556,18.90036],[84.37893,18.90422],[84.37814,18.90329],[84.38505,18.89783],[84.38515,18.89592],[84.39033,18.89582],[84.39596,18.89307],[84.39752,18.89028],[84.39833,18.88368],[84.39761,18.88204],[84.39518,18.88202],[84.39537,18.87977],[84.39213,18.8763],[84.38811,18.88424],[84.38148,18.88643],[84.38335,18.88286],[84.38256,18.88142],[84.37427,18.88652],[84.37068,18.88662],[84.36495,18.88969],[84.36027,18.89455],[84.36255,18.88715],[84.37259,18.87807],[84.37882,18.87815],[84.3842,18.87414],[84.37899,18.8717],[84.37733,18.86451],[84.37423,18.86139],[84.3699,18.86084],[84.3665,18.86402],[84.3645,18.86133],[84.36206,18.86088],[84.35779,18.8693],[84.35605,18.86935],[84.33681,18.89021],[84.33053,18.88322],[84.3256,18.87609],[84.33094,18.86769],[84.33306,18.86051],[84.34163,18.85426],[84.34499,18.84905],[84.36123,18.84216],[84.36126,18.8389],[84.36385,18.83712],[84.3596,18.83121],[84.35211,18.83149],[84.35066,18.82775],[84.35201,18.82711],[84.35125,18.8227],[84.34941,18.82006],[84.34266,18.82222],[84.33932,18.81969],[84.3341,18.81996],[84.33437,18.81771],[84.33106,18.81785],[84.33105,18.81501],[84.33424,18.81519],[84.33692,18.81156],[84.34183,18.80898],[84.34455,18.8018],[84.33901,18.80226],[84.3381,18.80045],[84.33613,18.80107],[84.33645,18.79844],[84.32659,18.79879],[84.32454,18.79484],[84.32493,18.79044],[84.32126,18.78649],[84.31259,18.79037],[84.30898,18.79414],[84.30592,18.79423],[84.30499,18.79826],[84.28866,18.80466],[84.28877,18.79842],[84.28649,18.7923],[84.26812,18.78456],[84.26097,18.78322],[84.25592,18.78799],[84.24903,18.78579],[84.24314,18.78862],[84.24358,18.79152],[84.24128,18.79138],[84.2408,18.79714],[84.23674,18.79855],[84.23383,18.79477],[84.23225,18.79715],[84.22631,18.79877],[84.2239,18.79709],[84.22185,18.79783],[84.21919,18.79492],[84.2144,18.79542],[84.21377,18.794],[84.21891,18.79119],[84.21746,18.78997],[84.20758,18.78915],[84.20045,18.79049],[84.20011,18.79221],[84.1981,18.79081],[84.19534,18.79168],[84.19342,18.78759],[84.19468,18.78332],[84.18994,18.7777],[84.18271,18.78196],[84.17577,18.78008],[84.17229,18.7829],[84.16972,18.78822],[84.16559,18.78776],[84.1635,18.7893],[84.15834,18.78686],[84.15843,18.78289],[84.15651,18.78458],[84.15176,18.78354],[84.14622,18.77716],[84.14039,18.77727],[84.13891,18.7688],[84.14199,18.7643],[84.13809,18.76149],[84.13256,18.7606],[84.12979,18.76512],[84.12468,18.76394],[84.12238,18.76794],[84.11771,18.76554],[84.11349,18.76687],[84.10327,18.76027],[84.09688,18.76054],[84.08946,18.75678],[84.08959,18.76399],[84.08475,18.76427],[84.08523,18.76649],[84.08117,18.76419],[84.08034,18.76535],[84.07642,18.76445],[84.07373,18.77582],[84.06922,18.77815],[84.06799,18.78231],[84.06201,18.78138],[84.05991,18.78242],[84.06056,18.78489],[84.05727,18.78937],[84.06163,18.79073],[84.06137,18.79234],[84.05728,18.79276],[84.05988,18.79918],[84.0511,18.79908],[84.04669,18.80161],[84.04599,18.80506],[84.04426,18.80606],[84.04561,18.81288],[84.03848,18.81643],[84.03778,18.81305],[84.03296,18.8116],[84.02483,18.81548],[84.02522,18.81705],[84.02252,18.8159],[84.01912,18.81792],[84.01917,18.81645],[84.01547,18.81706],[84.01744,18.8128],[84.01573,18.80875],[84.0099,18.81169],[84.00522,18.80874],[84.00107,18.81139],[83.99567,18.81127],[83.99385,18.81361],[83.98721,18.8115],[83.98845,18.8109],[83.98686,18.81005],[83.97785,18.81417],[83.96509,18.81462],[83.96281,18.81289],[83.96096,18.81408],[83.95539,18.80649],[83.95016,18.80518],[83.94174,18.80833],[83.94232,18.81546],[83.9381,18.81585],[83.93754,18.81816],[83.93465,18.81815],[83.93463,18.81628],[83.93165,18.81588],[83.92634,18.82243],[83.92328,18.82183],[83.92263,18.82359],[83.91767,18.8243],[83.9158,18.82796],[83.91199,18.82596],[83.90476,18.8274],[83.89963,18.8244],[83.89613,18.81564],[83.89316,18.81447],[83.89116,18.82509],[83.88773,18.83096],[83.8687,18.85076],[83.85137,18.85956],[83.84601,18.8691],[83.84368,18.87627],[83.8489,18.8999],[83.84579,18.91358],[83.8434,18.91716],[83.84032,18.91851],[83.83071,18.91475],[83.82658,18.91628],[83.82894,18.9306],[83.81973,18.93926],[83.81901,18.9452],[83.82176,18.96023],[83.81052,18.98522],[83.80893,18.99228],[83.79686,19.00092],[83.79512,19.00368],[83.79348,19.00824],[83.79469,19.01798],[83.78052,19.01862],[83.77791,19.01753],[83.77806,19.01547],[83.78128,19.01394],[83.78198,19.00839],[83.7717,19.00808],[83.76486,19.0054],[83.76281,18.99849],[83.76065,19.0026],[83.755,18.9986],[83.75155,18.99868],[83.74753,18.99591],[83.74485,18.98798],[83.74807,18.97404],[83.75531,18.97132],[83.75407,18.96717],[83.75896,18.95061],[83.76163,18.95046],[83.7639,18.95293],[83.76965,18.95476],[83.77258,18.94432],[83.77622,18.94525],[83.77885,18.93666],[83.78446,18.9336],[83.78505,18.92379],[83.78789,18.91587],[83.77824,18.91136],[83.77184,18.91465],[83.76939,18.9143],[83.76317,18.92728],[83.75386,18.92513],[83.74766,18.93708],[83.74681,18.94358],[83.74054,18.95007],[83.73879,18.96036],[83.7344,18.96918],[83.73246,18.97991],[83.73301,18.98771],[83.71817,18.99342],[83.7142,18.99299],[83.71362,18.99739],[83.70948,19.00264],[83.70883,19.00559],[83.71031,19.00718],[83.71807,19.01043],[83.72121,19.00931],[83.72389,19.01025],[83.73002,19.02196],[83.72447,19.02054],[83.71616,19.02368],[83.70969,19.02464],[83.70462,19.02341],[83.70014,19.02545],[83.69853,19.03188],[83.69302,19.03861],[83.6912,19.0473],[83.68525,19.05853],[83.67659,19.0652],[83.67463,19.07208],[83.66436,19.07571],[83.66102,19.08114],[83.66038,19.08442],[83.66389,19.09219],[83.66282,19.09895],[83.65758,19.10255],[83.65557,19.1088],[83.65105,19.10935],[83.65045,19.11739],[83.64704,19.1184],[83.64964,19.12326],[83.65436,19.12213],[83.65496,19.12962],[83.65271,19.13156],[83.64675,19.12981],[83.64212,19.13192],[83.63701,19.13148],[83.6317,19.14084],[83.63494,19.14966],[83.63441,19.15183],[83.63768,19.15316],[83.63392,19.15946],[83.62603,19.16267],[83.62779,19.15665],[83.62747,19.15065],[83.62229,19.14782],[83.6208,19.14168],[83.61876,19.14132],[83.61596,19.13705],[83.60797,19.13969],[83.6047,19.13599],[83.60165,19.13553],[83.59913,19.13016],[83.59781,19.11881],[83.60341,19.11213],[83.61061,19.09606],[83.60307,19.09259],[83.60119,19.09491],[83.59295,19.09267],[83.58559,19.08656],[83.58471,19.08371],[83.58702,19.06936],[83.58405,19.06508],[83.58446,19.05757],[83.57977,19.06054],[83.57497,19.0614],[83.56342,19.05785],[83.56035,19.0645],[83.56338,19.07052],[83.567,19.07174],[83.56017,19.08707],[83.55444,19.08653],[83.54905,19.08052],[83.54853,19.07787],[83.55561,19.06336],[83.55541,19.05806],[83.55757,19.0562],[83.55168,19.05455],[83.54688,19.04372],[83.54173,19.04148],[83.53984,19.03347],[83.54149,19.02961],[83.53671,19.0095],[83.53457,19.01309],[83.52591,19.01284],[83.52474,19.01452],[83.52249,19.01207],[83.51624,19.01661],[83.50378,19.01873],[83.50094,19.02066],[83.49546,19.03185],[83.49747,19.03454],[83.49647,19.03547],[83.50847,19.03554],[83.51482,19.02846],[83.5193,19.03907],[83.51313,19.04838],[83.5168,19.05708],[83.51304,19.06068],[83.51099,19.06627],[83.51171,19.07032],[83.50555,19.06605],[83.50178,19.06589],[83.5006,19.06063],[83.48884,19.07335],[83.48084,19.0785],[83.48265,19.08134],[83.48183,19.08513],[83.48633,19.08755],[83.4834,19.09226],[83.47366,19.09527],[83.46798,19.09312],[83.46726,19.08769],[83.46971,19.08572],[83.47049,19.08712],[83.47646,19.08567],[83.47837,19.07927],[83.47299,19.07705],[83.47036,19.08014],[83.46627,19.0799],[83.4631,19.07597],[83.46495,19.07452],[83.4652,19.07101],[83.46229,19.06377],[83.46782,19.06316],[83.4692,19.0611],[83.46952,19.05765],[83.46783,19.05514],[83.47093,19.04864],[83.47072,19.04291],[83.48335,19.03355],[83.4794,19.02212],[83.47958,19.01771],[83.48251,19.01509],[83.48142,19.00979],[83.47968,19.00847],[83.47159,19.00723],[83.46152,19.01234],[83.45225,19.01259],[83.45157,19.00978],[83.44994,19.00966],[83.45066,19.00453],[83.45531,18.99683],[83.45527,18.99126],[83.466,18.99355],[83.46784,18.99108],[83.46418,18.9801],[83.46856,18.98037],[83.46981,18.96932],[83.46783,18.96455],[83.46474,18.96271],[83.46183,18.95478],[83.44586,18.95776],[83.44354,18.96095],[83.44589,18.96591],[83.44033,18.97162],[83.43888,18.97639],[83.4351,18.97586],[83.4292,18.98042],[83.42636,18.98501],[83.41964,18.98893],[83.41532,18.98918],[83.41999,18.99793],[83.41961,19.00026],[83.41706,19.00206],[83.41584,19.0005],[83.4141,19.00368],[83.41128,19.00026],[83.40955,19.00433],[83.4043,19.0046],[83.40422,19.00667],[83.40201,19.00628],[83.40047,19.0094],[83.39598,19.00954],[83.39469,19.00596],[83.38459,19.00126],[83.37261,19.00226],[83.36662,19.0061],[83.36703,19.00935],[83.36529,19.01018],[83.36695,19.01172],[83.36605,19.01287],[83.36748,19.01648],[83.35805,19.01938],[83.34802,19.01692],[83.34292,19.01814],[83.34003,19.00885],[83.33695,19.00597],[83.33636,19.00294],[83.33878,18.99701],[83.33126,18.99899],[83.32721,19.0024],[83.32237,18.99951],[83.31665,19.00126],[83.31065,18.99867],[83.31033,18.99568],[83.3159,18.98717],[83.31523,18.9832],[83.3176,18.98029],[83.31874,18.97341],[83.3283,18.96703],[83.33148,18.96908],[83.33482,18.96852],[83.33252,18.95767],[83.33374,18.95494],[83.33902,18.95278],[83.33784,18.94629],[83.32711,18.94462],[83.32486,18.93748],[83.3265,18.93198],[83.33392,18.92878],[83.33342,18.92621],[83.33522,18.92493],[83.34844,18.92629],[83.34385,18.94112],[83.35017,18.94327],[83.35086,18.9474],[83.34828,18.96038],[83.35092,18.96679],[83.35474,18.9673],[83.36154,18.96315],[83.36713,18.96301],[83.3684,18.96059],[83.36584,18.95694],[83.36838,18.9533],[83.37128,18.94265],[83.38303,18.93694],[83.38738,18.93298],[83.38202,18.92729],[83.37735,18.92561],[83.3706,18.92604],[83.36919,18.92986],[83.37015,18.94172],[83.36098,18.94083],[83.35248,18.94346],[83.35343,18.9306],[83.35749,18.92392],[83.35914,18.91688],[83.3617,18.91599],[83.35983,18.91471],[83.36239,18.91476],[83.36901,18.90809],[83.37512,18.90897],[83.38181,18.91389],[83.38503,18.91332],[83.3932,18.90763],[83.38465,18.90386],[83.37833,18.89695],[83.38353,18.89036],[83.39151,18.88695],[83.39183,18.88229],[83.39881,18.87796],[83.40703,18.87715],[83.41024,18.87432],[83.41475,18.87496],[83.40487,18.86191],[83.40437,18.84756],[83.40588,18.84252],[83.40413,18.84299],[83.37833,18.83066],[83.37519,18.83635],[83.37174,18.83902],[83.37044,18.84291],[83.36815,18.84406],[83.36394,18.84228],[83.35868,18.83493],[83.34934,18.83013],[83.34777,18.82711],[83.33796,18.82436],[83.32825,18.81808],[83.32814,18.81213],[83.33062,18.80635],[83.3194,18.80477],[83.30931,18.8095],[83.29787,18.8017],[83.28434,18.79788],[83.27527,18.7829],[83.28137,18.7746],[83.27135,18.76464],[83.26255,18.76976],[83.25339,18.76756],[83.24325,18.76828],[83.2346,18.77406],[83.22461,18.77509],[83.22235,18.77277],[83.22813,18.76102],[83.22772,18.75524],[83.22537,18.75091],[83.21741,18.74445],[83.21464,18.73337],[83.21245,18.73049],[83.21128,18.73254],[83.21269,18.73758],[83.20737,18.74576],[83.20801,18.74912],[83.20655,18.75144],[83.19319,18.75312],[83.17791,18.77086],[83.16505,18.76894],[83.16415,18.7669],[83.15648,18.76823],[83.15228,18.77269],[83.15181,18.77607],[83.13903,18.78536],[83.11515,18.76809],[83.12114,18.76584],[83.12363,18.76052],[83.12221,18.7575],[83.11242,18.75281],[83.10761,18.74706],[83.10169,18.73275],[83.09477,18.73138],[83.09261,18.72353],[83.07279,18.70554],[83.07137,18.70164],[83.07501,18.70126],[83.06278,18.68363],[83.05802,18.66531],[83.04423,18.65844],[83.025,18.65441],[83.02264,18.65122],[83.01702,18.65022],[83.01313,18.64605],[83.01963,18.63512],[83.0089,18.62685],[83.00575,18.62169],[82.99957,18.61953],[83.00047,18.60798],[83.01521,18.60544],[83.01501,18.60209],[83.01269,18.59936],[83.01356,18.59436],[83.0188,18.59347],[83.02379,18.58965],[83.02759,18.59257],[83.04444,18.59947],[83.04672,18.59875],[83.05279,18.60068],[83.0531,18.58813],[83.04008,18.58648],[83.03766,18.58102],[83.03127,18.57785],[83.02976,18.57351],[83.03315,18.56979],[83.03843,18.55587],[83.04535,18.54418],[83.05496,18.54398],[83.06193,18.54205],[83.07124,18.54976],[83.07885,18.55039],[83.08094,18.55402],[83.08381,18.55166],[83.08951,18.55299],[83.09504,18.54664],[83.09353,18.53984],[83.08927,18.53891],[83.08364,18.53106],[83.07701,18.52615],[83.07507,18.51457],[83.06401,18.50228],[83.06048,18.50205],[83.05797,18.49684],[83.05521,18.49566],[83.05511,18.48561],[83.03765,18.46862],[83.03073,18.46627],[83.02095,18.45624],[83.02461,18.44846],[83.03289,18.44796],[83.03668,18.4427],[83.04094,18.44079],[83.03776,18.43454],[83.04313,18.42596],[83.04253,18.42423],[83.04598,18.42667],[83.0508,18.43413],[83.05856,18.43668],[83.05998,18.43696],[83.0634,18.43207],[83.06731,18.43009],[83.0655,18.42299],[83.05744,18.41937],[83.06425,18.40941],[83.07684,18.4054],[83.07705,18.40335],[83.05449,18.37999],[83.04308,18.37937],[83.03923,18.38345],[83.03222,18.3835],[83.02951,18.38609],[83.02579,18.38693],[83.02192,18.3917],[83.01598,18.38705],[83.01179,18.38864],[83.00528,18.38276],[82.99683,18.38552],[82.99208,18.37856],[82.99027,18.3806],[82.98728,18.37884],[82.98811,18.37766],[82.98219,18.36812],[82.98318,18.36644],[82.97047,18.36001],[82.96699,18.35893],[82.96011,18.36641],[82.95373,18.36157],[82.93973,18.36082],[82.92603,18.36814],[82.9222,18.37542],[82.91786,18.37528],[82.91308,18.36848],[82.91089,18.37295],[82.90192,18.37407],[82.89419,18.38157],[82.89341,18.38701],[82.89072,18.3905],[82.89778,18.4035],[82.895,18.4241],[82.88156,18.42068],[82.8764,18.42163],[82.8713,18.41846],[82.85641,18.42544],[82.85242,18.4192],[82.84863,18.42372],[82.84584,18.43375],[82.83638,18.43709],[82.83595,18.43929],[82.83122,18.44229],[82.8238,18.4435],[82.82322,18.44726],[82.81564,18.4509],[82.80314,18.44925],[82.79538,18.43971],[82.78216,18.43079],[82.78289,18.42261],[82.78743,18.41917],[82.78688,18.41071],[82.79549,18.40909],[82.79954,18.40675],[82.79383,18.40135],[82.79146,18.39614],[82.79386,18.38602],[82.78265,18.38189],[82.78478,18.38041],[82.78876,18.3718],[82.79056,18.36319],[82.77639,18.34924],[82.77409,18.34032],[82.77112,18.33758],[82.76845,18.33806],[82.76482,18.33616],[82.7633,18.33891],[82.75969,18.33961],[82.7581,18.33763],[82.75919,18.33403],[82.7563,18.33331],[82.75518,18.33019],[82.75064,18.33092],[82.74785,18.32897],[82.74287,18.32999],[82.73831,18.32695],[82.74098,18.32261],[82.73605,18.32311],[82.73427,18.32024],[82.72491,18.32453],[82.71502,18.32252],[82.70856,18.31584],[82.70938,18.31318],[82.70166,18.31064],[82.69452,18.31228],[82.69195,18.30764],[82.68442,18.30359],[82.68018,18.30335],[82.67632,18.30656],[82.66677,18.29803],[82.66225,18.2983],[82.65742,18.29607],[82.65494,18.29699],[82.65119,18.30186],[82.64265,18.30203],[82.64072,18.29623],[82.64382,18.28801],[82.65224,18.28114],[82.64854,18.27287],[82.64279,18.27155],[82.64228,18.26377],[82.64712,18.26223],[82.65095,18.251],[82.65249,18.25],[82.64863,18.245],[82.63768,18.2367],[82.63187,18.23926],[82.62755,18.24458],[82.62353,18.24632],[82.61385,18.25842],[82.60721,18.2614],[82.60422,18.26469],[82.59691,18.26479],[82.59678,18.27437],[82.58779,18.27606],[82.58805,18.2803],[82.59215,18.28035],[82.59406,18.2847],[82.59419,18.28697],[82.59102,18.28978],[82.5952,18.29184],[82.59467,18.29822],[82.59866,18.30419],[82.59647,18.30639],[82.59606,18.31028],[82.58517,18.30846],[82.58131,18.31517],[82.58389,18.31976],[82.58847,18.31788],[82.59488,18.32888],[82.60125,18.32534],[82.60894,18.32713],[82.6112,18.33371],[82.60854,18.34004],[82.60288,18.34435],[82.60204,18.35228],[82.61452,18.35091],[82.62123,18.35971],[82.60599,18.36606],[82.60573,18.37005],[82.60322,18.37265],[82.60612,18.37567],[82.60529,18.38203],[82.60152,18.37937],[82.59952,18.37979],[82.59644,18.38297],[82.5948,18.38923],[82.58863,18.39163],[82.58387,18.38673],[82.57583,18.39623],[82.571,18.39467],[82.56243,18.39996],[82.55533,18.39363],[82.55218,18.39791],[82.54088,18.39943],[82.53553,18.40617],[82.54709,18.41261],[82.54719,18.41429],[82.5433,18.41402],[82.54141,18.42191],[82.54562,18.4224],[82.54574,18.42752],[82.55201,18.42857],[82.55058,18.4333],[82.55815,18.43966],[82.55652,18.44297],[82.56095,18.44518],[82.5614,18.44849],[82.55659,18.44982],[82.55482,18.45448],[82.55258,18.45504],[82.54876,18.45305],[82.54237,18.45763],[82.54134,18.45416],[82.54447,18.44938],[82.53956,18.4436],[82.53726,18.44643],[82.53325,18.45866],[82.52739,18.45966],[82.52834,18.46421],[82.52389,18.46349],[82.51942,18.4656],[82.51945,18.46722],[82.52477,18.4717],[82.53084,18.47303],[82.53419,18.47773],[82.53189,18.48049],[82.52785,18.48065],[82.5283,18.48305],[82.53327,18.48828],[82.53199,18.49243],[82.52789,18.49386],[82.52649,18.49629],[82.52966,18.5013],[82.52698,18.50588],[82.53216,18.51099],[82.52597,18.51632],[82.52028,18.51759],[82.51228,18.51805],[82.50433,18.51387],[82.49405,18.52455],[82.48627,18.52805],[82.48759,18.53261],[82.48395,18.53545],[82.48134,18.54061],[82.484,18.54332],[82.49234,18.54179],[82.4935,18.54364],[82.4919,18.54763],[82.48898,18.54934],[82.48275,18.54872],[82.47347,18.54258],[82.46838,18.53464],[82.46412,18.53287],[82.46098,18.5255],[82.44475,18.51409],[82.4431,18.50877],[82.43861,18.50682],[82.43715,18.50094],[82.43404,18.49857],[82.43414,18.49696],[82.43774,18.49576],[82.43743,18.49381],[82.42254,18.47805],[82.41497,18.47443],[82.40352,18.46422],[82.3968,18.45421],[82.39603,18.44917],[82.38665,18.44501],[82.382,18.43258],[82.37574,18.43003],[82.36421,18.42154],[82.37093,18.41425],[82.37522,18.40634],[82.37962,18.4038],[82.38148,18.38964],[82.38607,18.38627],[82.38402,18.3845],[82.38555,18.36751],[82.37682,18.35984],[82.36988,18.35851],[82.36818,18.35386],[82.36449,18.35277],[82.36311,18.34422],[82.34899,18.33044],[82.34694,18.32883],[82.34409,18.33079],[82.33813,18.32803],[82.33822,18.32671],[82.34048,18.32241],[82.34902,18.31652],[82.35432,18.31722],[82.35587,18.31592],[82.364,18.31846],[82.36753,18.32371],[82.37509,18.32869],[82.37807,18.32706],[82.38427,18.3296],[82.38896,18.32851],[82.39283,18.32596],[82.39506,18.31564],[82.39157,18.3098],[82.39234,18.29795],[82.38089,18.28544],[82.37831,18.28434],[82.3765,18.28068],[82.3659,18.27761],[82.35894,18.28146],[82.34467,18.28055],[82.34044,18.27223],[82.34005,18.26234],[82.33612,18.26117],[82.33336,18.25291],[82.33354,18.25107],[82.33586,18.25],[82.33653,18.24077],[82.32674,18.23638],[82.32441,18.23121],[82.33144,18.22513],[82.33706,18.2243],[82.32843,18.21608],[82.32489,18.21041],[82.31084,18.20409],[82.31354,18.19715],[82.31248,18.19135],[82.31545,18.18403],[82.33737,18.17218],[82.34617,18.17292],[82.35337,18.17169],[82.35912,18.1627],[82.37232,18.14816],[82.36875,18.14317],[82.36753,18.13716],[82.36325,18.13481],[82.35963,18.13629],[82.35493,18.14247],[82.34137,18.15011],[82.34018,18.15057],[82.3388,18.14692],[82.33868,18.14417],[82.34213,18.13724],[82.3342,18.12686],[82.33616,18.12415],[82.33377,18.11925],[82.33567,18.11375],[82.33579,18.10586],[82.3385,18.09911],[82.347,18.09825],[82.34958,18.08563],[82.34732,18.07998],[82.35178,18.07659],[82.34708,18.06995],[82.34388,18.05799],[82.33414,18.05133],[82.33199,18.05246],[82.33214,18.05511],[82.33002,18.05809],[82.32225,18.05991],[82.31897,18.05707],[82.32223,18.04862],[82.31985,18.04476],[82.31658,18.04744],[82.30774,18.04511],[82.30726,18.05005],[82.31033,18.05393],[82.30617,18.05571],[82.29874,18.05528],[82.30012,18.06321],[82.30436,18.0664],[82.3044,18.06812],[82.30201,18.06916],[82.2972,18.06707],[82.29138,18.06891],[82.28767,18.06272],[82.28349,18.0645],[82.27698,18.0582],[82.27261,18.05722],[82.26961,18.05194],[82.26894,18.04519],[82.26161,18.04185],[82.26901,18.03402],[82.27355,18.02134],[82.26878,18.00094],[82.26558,17.99863],[82.24796,17.99778],[82.24405,17.99838],[82.23724,18.00255],[82.22225,18.00168],[82.2082,18.01044],[82.2046,18.01501],[82.20531,18.01837],[82.19737,18.01774],[82.1878,18.01473],[82.18354,18.0191],[82.17862,18.02039],[82.18432,18.02879],[82.16884,18.05195],[82.15827,18.05034],[82.15321,18.04787],[82.14678,18.05231],[82.14483,18.04885],[82.13718,18.04394],[82.13349,18.05989],[82.12498,18.05967],[82.12063,18.06423],[82.11365,18.06123],[82.10787,18.06326],[82.10203,18.06024],[82.0964,18.0634],[82.09609,18.06743],[82.08709,18.06893],[82.07664,18.07522],[82.07082,18.06909],[82.06695,18.05739],[82.06156,18.05545],[82.05042,18.05814],[82.04044,18.05731],[82.03758,18.06698],[82.03232,18.06932],[82.02829,18.06462],[82.01973,18.0633],[82.00739,18.05632],[82.00673,18.0451],[82.01166,18.03524],[82.00935,18.03007],[82.00177,18.03002],[81.99427,18.02731],[81.99127,18.01951],[81.98251,18.01813],[81.97606,18.01047],[81.96894,18.00598],[81.96297,17.99925],[81.94602,17.99575],[81.93657,17.99028],[81.91991,17.99121],[81.90903,17.98422],[81.90518,17.97732],[81.89337,17.97624],[81.88175,17.96883],[81.86649,17.96329],[81.84323,17.95696],[81.83099,17.95793],[81.81911,17.95169],[81.80989,17.95098],[81.79707,17.93728],[81.7947,17.93294],[81.79349,17.92548],[81.79013,17.92081],[81.77841,17.91284],[81.77138,17.91246],[81.76881,17.90688],[81.76467,17.90334],[81.72562,17.87886],[81.70917,17.872],[81.70436,17.87768],[81.70411,17.88271],[81.70113,17.88795],[81.70222,17.89627],[81.70123,17.89948],[81.69853,17.90135],[81.69475,17.89872],[81.6861,17.8853],[81.67452,17.88818],[81.66973,17.88655],[81.66219,17.8816],[81.65431,17.86908],[81.65202,17.8561],[81.64171,17.84132],[81.63015,17.83202],[81.62235,17.83345],[81.61875,17.82381],[81.61655,17.82208],[81.60689,17.82583],[81.59419,17.83404],[81.57432,17.83717],[81.57039,17.83531],[81.56369,17.82571],[81.54684,17.82472],[81.53781,17.82159],[81.53018,17.82291],[81.51841,17.81626],[81.50478,17.81629],[81.49534,17.81255],[81.49005,17.81269],[81.48627,17.81434],[81.48551,17.82022],[81.48152,17.82358],[81.47784,17.83499],[81.47392,17.83797],[81.47182,17.83615],[81.46905,17.83622],[81.46011,17.82957],[81.44419,17.82497],[81.44088,17.82533],[81.43672,17.83162],[81.43412,17.83193],[81.43048,17.83006],[81.42582,17.82191],[81.4156,17.81342],[81.41397,17.81359],[81.41016,17.81859],[81.40165,17.82095],[81.39655,17.82023],[81.39181,17.81542],[81.39313,17.80767],[81.39185,17.79418],[81.38656,17.79487],[81.38544,17.79844],[81.37731,17.80446],[81.35878,17.80948],[81.35411,17.81229],[81.34845,17.81233],[81.3456,17.8103],[81.32612,17.81395],[81.30497,17.80866],[81.26626,17.80952],[81.24838,17.81666],[81.2393,17.82602],[81.21561,17.83451],[81.19931,17.84693],[81.17065,17.85476],[81.16613,17.8576],[81.15728,17.85043],[81.14213,17.84146],[81.12792,17.827],[81.10244,17.81603],[81.09397,17.80927],[81.09046,17.80241],[81.08559,17.79802],[81.08978,17.79104],[81.096,17.77449],[81.10388,17.7732],[81.10426,17.77201],[81.09565,17.7622],[81.08258,17.7531],[81.06983,17.74071],[81.05817,17.73309],[81.05051,17.73401],[81.04416,17.74042],[81.04056,17.74761],[81.02763,17.74813],[81.01592,17.74503],[80.99132,17.74992],[80.98423,17.75566],[80.97688,17.77632],[80.97342,17.78012],[80.97217,17.77796],[80.96587,17.77978],[80.96343,17.77739],[80.95532,17.77462],[80.95562,17.77291],[80.94631,17.76019],[80.92785,17.76178],[80.92338,17.75729],[80.91946,17.7562],[80.91757,17.74811],[80.915,17.74836],[80.91444,17.75046],[80.91273,17.74948],[80.91458,17.74653],[80.913,17.74592],[80.90237,17.7462],[80.88555,17.73568],[80.89076,17.72188],[80.89099,17.71368],[80.89475,17.70291],[80.89079,17.68976],[80.8764,17.66838],[80.87667,17.65502],[80.88008,17.64796],[80.89704,17.64064],[80.9381,17.63258],[80.95236,17.63703],[80.96237,17.64572],[80.98006,17.65261],[80.99209,17.65346],[81.00526,17.64876],[81.00955,17.64365],[81.00704,17.62171],[80.99592,17.62908],[80.98411,17.62621],[80.97552,17.61914],[80.96931,17.59838],[80.97673,17.58719],[80.98283,17.58274],[80.9888,17.57242],[80.9984,17.56468],[81.00281,17.55061],[81.00843,17.547],[81.01368,17.53662],[81.01483,17.52213],[81.0199,17.52003],[81.04721,17.51951],[81.08007,17.51505],[81.09135,17.50565],[81.09756,17.50426],[81.10111,17.5056],[81.11746,17.52207],[81.1245,17.52706],[81.12728,17.52642],[81.13848,17.51624],[81.14051,17.50466],[81.14487,17.49508],[81.14215,17.48859],[81.15968,17.48437],[81.14825,17.46365],[81.17555,17.46364],[81.17233,17.44904],[81.18298,17.44025],[81.1933,17.43563],[81.2027,17.43395],[81.2023,17.44066],[81.20526,17.44959],[81.21176,17.44174],[81.21905,17.44228],[81.22143,17.43944],[81.23633,17.43558],[81.24269,17.43206],[81.24551,17.43303],[81.25974,17.42222],[81.26854,17.41826],[81.30051,17.41271],[81.31238,17.40872],[81.31859,17.39842],[81.32264,17.37455],[81.31647,17.369],[81.31631,17.36448],[81.31199,17.36069],[81.3053,17.34591],[81.30111,17.34066],[81.28852,17.32807],[81.27851,17.32341],[81.27403,17.31719],[81.26825,17.32003],[81.24567,17.32579],[81.24463,17.32309],[81.23913,17.32349],[81.23913,17.32084],[81.23357,17.32036],[81.22205,17.32149],[81.21031,17.32605],[81.19041,17.32481],[81.18137,17.30445],[81.17666,17.28767],[81.17957,17.27837],[81.17818,17.26904],[81.18394,17.25835],[81.18759,17.25465],[81.18609,17.24849],[81.17502,17.23697],[81.17301,17.23203],[81.17398,17.23034],[81.15947,17.2308],[81.1276,17.22431],[81.10943,17.22347],[81.09037,17.2196],[81.07961,17.21528],[81.05461,17.22487],[81.05559,17.21956],[81.0495,17.20707],[81.04357,17.20233],[81.03687,17.19248],[81.03127,17.19033],[81.01543,17.1944],[81.00862,17.19186],[80.99845,17.19046],[80.99436,17.19132],[80.97629,17.20027],[80.96029,17.20407],[80.94128,17.21929],[80.91888,17.21974],[80.91676,17.21609],[80.91676,17.21096],[80.92105,17.20028],[80.91845,17.18974],[80.92267,17.18859],[80.92643,17.18348],[80.9252,17.16775],[80.92309,17.16129],[80.92399,17.15785],[80.91659,17.15369],[80.90703,17.15385],[80.8924,17.15937],[80.87944,17.16083],[80.8777,17.14981],[80.87825,17.13514],[80.87364,17.12877],[80.8693,17.12669],[80.86774,17.12313],[80.86833,17.12027],[80.87348,17.1141],[80.87643,17.10559],[80.87389,17.09854],[80.87521,17.09545],[80.86758,17.08045],[80.86871,17.078],[80.87611,17.07488],[80.87716,17.07043],[80.87149,17.06984],[80.86551,17.05856],[80.85911,17.05261],[80.85584,17.04652],[80.84531,17.03997],[80.84079,17.04671],[80.82882,17.05277],[80.81041,17.05532],[80.79874,17.06124],[80.79046,17.06346],[80.76498,17.06661],[80.75089,17.07262],[80.74647,17.07777],[80.74465,17.07694],[80.73888,17.07959],[80.7368,17.07769],[80.71058,17.08188],[80.70536,17.08078],[80.69945,17.08379],[80.69898,17.0816],[80.69634,17.08006],[80.69729,17.07679],[80.69496,17.07414],[80.67967,17.07203],[80.6764,17.07075],[80.67347,17.06664],[80.67107,17.07004],[80.6664,17.06748],[80.65381,17.06861],[80.64992,17.07137],[80.65709,17.08956],[80.65889,17.09156],[80.66805,17.09493],[80.67055,17.10119],[80.6656,17.10512],[80.64924,17.11136],[80.64204,17.1159],[80.64548,17.12352],[80.6363,17.12853],[80.6279,17.1299],[80.61825,17.12842],[80.61699,17.13158],[80.6064,17.13518],[80.60054,17.14228],[80.58002,17.15307],[80.56318,17.1331],[80.55732,17.13212],[80.55429,17.1336],[80.54882,17.13079],[80.54234,17.1246],[80.52759,17.11891],[80.51408,17.12205],[80.51288,17.10925],[80.5055,17.09824],[80.50403,17.09264],[80.51008,17.0869],[80.5054,17.06846],[80.49767,17.06265],[80.49093,17.05097],[80.486,17.05208],[80.47138,17.05037],[80.46486,17.03002],[80.4533,17.03476],[80.43863,17.03758],[80.43172,17.05552],[80.41705,17.07361],[80.41855,17.07843],[80.41779,17.08788],[80.41896,17.0923],[80.40903,17.0915],[80.40785,17.08785],[80.40443,17.08676],[80.40382,17.08196],[80.40063,17.08196],[80.39102,17.07467],[80.38573,17.06793],[80.39166,17.0613],[80.39382,17.05477],[80.39849,17.0526],[80.39825,17.04909],[80.39593,17.04633],[80.39576,17.03573],[80.4074,17.02561],[80.40703,17.0158],[80.38785,17.00927],[80.38692,17.00459],[80.37576,16.9887],[80.36662,16.98144],[80.3634,16.97607],[80.37136,16.97581],[80.40765,16.96397],[80.4194,16.96257],[80.44967,16.95476],[80.46743,16.94545],[80.47302,16.93848],[80.48203,16.93213],[80.49345,16.92743],[80.49559,16.94999],[80.49923,16.95633],[80.50546,16.95654],[80.5261,16.94788],[80.5347,16.96141],[80.54577,16.95693],[80.56702,16.94316],[80.57349,16.94132],[80.57547,16.93814],[80.58098,16.93615],[80.58132,16.93252],[80.58406,16.9288],[80.5904,16.92709],[80.59171,16.92299],[80.59691,16.92386],[80.60194,16.91859],[80.59234,16.90744],[80.58712,16.90418],[80.58768,16.90229],[80.59482,16.89889],[80.59591,16.88462],[80.57756,16.87895],[80.56831,16.86939],[80.57119,16.86112],[80.57014,16.84852],[80.56285,16.83284],[80.56553,16.82684],[80.57741,16.82333],[80.58455,16.81295],[80.5944,16.80281],[80.61297,16.79354],[80.59711,16.79221],[80.59685,16.7902],[80.58879,16.78532],[80.58716,16.78225],[80.58495,16.78355],[80.57687,16.77715],[80.57024,16.76801],[80.55158,16.77501],[80.52619,16.77459],[80.50439,16.77869],[80.49405,16.78369],[80.4863,16.79111],[80.46445,16.79545],[80.46383,16.80536],[80.46614,16.81635],[80.46424,16.81998],[80.46016,16.82004],[80.45327,16.82301],[80.45007,16.82723],[80.44141,16.83078],[80.44088,16.83427],[80.4382,16.83425],[80.4344,16.83743],[80.42859,16.83812],[80.42971,16.84673],[80.42794,16.84688],[80.42771,16.8498],[80.41212,16.8519],[80.38526,16.86329],[80.38413,16.86525],[80.37883,16.86156],[80.38278,16.8549],[80.37837,16.85199],[80.38347,16.85003],[80.4078,16.84823],[80.40422,16.83205],[80.39971,16.83355],[80.39668,16.8275],[80.39237,16.82793],[80.39084,16.82474],[80.38607,16.8249],[80.38733,16.81896],[80.38601,16.81625],[80.38317,16.81581],[80.38043,16.81745],[80.3737,16.82823],[80.37961,16.84108],[80.37339,16.8395],[80.37407,16.85239],[80.34938,16.85912],[80.3409,16.8597],[80.34401,16.87437],[80.3217,16.87963],[80.32497,16.90033],[80.32381,16.90643],[80.31561,16.9155],[80.31159,16.91666],[80.31387,16.92483],[80.31309,16.94053],[80.31647,16.94844],[80.30502,16.9537],[80.30659,16.97379],[80.29352,16.97666],[80.29027,16.98108],[80.29436,16.99383],[80.29359,16.99633],[80.28266,17.00767],[80.27047,17.00399],[80.2669,17.00134],[80.26488,16.99724],[80.25686,16.99893],[80.25607,17.0011],[80.2404,17.00215],[80.24007,17.00512],[80.22616,17.01532],[80.22287,17.00784],[80.21143,17.01027],[80.20206,17.01703],[80.19958,17.02649],[80.20409,17.03829],[80.19645,17.04403],[80.192,17.03354],[80.19263,17.02675],[80.18729,17.01995],[80.18038,17.01902],[80.17773,17.0166],[80.17017,17.01683],[80.16776,17.00559],[80.16202,17.00494],[80.15729,17.00741],[80.15336,17.00694],[80.14637,17.00026],[80.14024,16.99059],[80.12786,16.99227],[80.12048,16.99122],[80.1204,16.98789],[80.10963,16.98721],[80.10255,16.99096],[80.09516,16.99065],[80.09411,16.97558],[80.09156,16.96832],[80.08338,16.97018],[80.05544,16.97142],[80.05743,16.96404],[80.05245,16.95987],[80.04822,16.94943],[80.0519,16.9421],[80.05059,16.93642],[80.04455,16.92926],[80.0404,16.91808],[80.02706,16.91754],[80.02456,16.91506],[80.01738,16.91497],[80.01242,16.89268],[80.00458,16.88105],[80.00508,16.87645],[80.00156,16.86769],[79.99876,16.86521],[80.00363,16.8639],[80.00395,16.86179],[80.01704,16.85423],[80.02901,16.85202],[80.04684,16.85334],[80.0464,16.83868],[80.04818,16.83323],[80.0595,16.82519],[80.07079,16.8213],[80.07106,16.81809],[80.07325,16.81719],[80.06982,16.80833],[80.0706,16.80169],[80.06645,16.78641],[80.05386,16.76543],[80.05496,16.74465],[80.03664,16.72766],[80.03004,16.71441],[80.02215,16.71033],[80.00758,16.70884],[79.99741,16.70209],[79.97938,16.66534],[79.96307,16.64353],[79.94975,16.6359],[79.93415,16.63157],[79.91011,16.63392],[79.89372,16.65011],[79.89065,16.65888],[79.88551,16.68735],[79.87753,16.6973],[79.85885,16.70465],[79.85106,16.70584],[79.82816,16.69378],[79.82109,16.69151],[79.81726,16.69187],[79.8112,16.69568],[79.79887,16.71068],[79.79251,16.7255],[79.78583,16.73014],[79.77399,16.73078],[79.74461,16.71908],[79.72932,16.69551],[79.72289,16.69028],[79.71389,16.68924],[79.68154,16.69437],[79.66219,16.68665],[79.64828,16.67003],[79.63309,16.66042],[79.62149,16.66318],[79.60632,16.67131],[79.59892,16.67323],[79.59218,16.66988],[79.57563,16.64978],[79.54209,16.63225],[79.52942,16.63064],[79.51037,16.63574],[79.50385,16.63592],[79.49401,16.63304],[79.48333,16.6231],[79.45958,16.62366],[79.44717,16.61971],[79.43914,16.61291],[79.43305,16.59075],[79.41864,16.58025],[79.39682,16.57978],[79.37677,16.58275],[79.35369,16.57927],[79.34011,16.58264],[79.32643,16.57646],[79.30824,16.57415],[79.29552,16.56301],[79.29102,16.56157],[79.28136,16.56061],[79.26164,16.56692],[79.25684,16.56582],[79.25222,16.55925],[79.25027,16.54715],[79.24477,16.53181],[79.24125,16.52917],[79.22856,16.52477],[79.22088,16.51434],[79.21483,16.48791],[79.2146,16.48348],[79.21706,16.47756],[79.23336,16.4592],[79.21795,16.45382],[79.21156,16.44739],[79.20772,16.38475],[79.20844,16.37929],[79.21243,16.37347],[79.2102,16.35823],[79.21433,16.34935],[79.23359,16.336],[79.2343,16.33384],[79.23381,16.32199],[79.23104,16.31433],[79.23038,16.28249],[79.22459,16.27119],[79.22266,16.24186],[79.22063,16.23408],[79.21655,16.2274],[79.20628,16.22091],[79.17191,16.2104],[79.15695,16.20929],[79.146,16.21397],[79.12377,16.23102],[79.11972,16.23194],[79.10864,16.22848],[79.10158,16.22282],[79.09443,16.22429],[79.08411,16.23012],[79.07211,16.22707],[79.05858,16.23519],[79.04802,16.23867],[79.02918,16.24174],[79.00951,16.24021],[78.98572,16.21071],[78.96774,16.21112],[78.96027,16.20907],[78.94896,16.20354],[78.93001,16.19805],[78.91106,16.18843],[78.9054,16.18359],[78.90376,16.17935],[78.9047,16.17458],[78.91054,16.16407],[78.91503,16.14851],[78.9225,16.14003],[78.92428,16.13578],[78.92438,16.13084],[78.92162,16.12282],[78.92203,16.10431],[78.91793,16.10003],[78.90611,16.09483],[78.8956,16.08558],[78.88905,16.08519],[78.88698,16.09848],[78.87939,16.11761],[78.87651,16.13553],[78.87215,16.14397],[78.86463,16.14702],[78.85248,16.14886],[78.83385,16.14448],[78.83304,16.13732],[78.84241,16.09521],[78.84171,16.0826],[78.83776,16.07186],[78.82765,16.06082],[78.8194,16.0483],[78.80202,16.03841],[78.79305,16.02537],[78.78315,16.02029],[78.76613,16.01644],[78.75296,16.01628],[78.74091,16.00866],[78.7355,16.00815],[78.72357,16.02012],[78.69937,16.02715],[78.68119,16.03479],[78.67262,16.04587],[78.66814,16.0545],[78.65042,16.07199],[78.65022,16.07881],[78.62724,16.08764],[78.60996,16.08713],[78.60163,16.08393],[78.59625,16.07797],[78.59239,16.0691],[78.58694,16.06344],[78.55763,16.04497],[78.55176,16.0428],[78.54205,16.04417],[78.52292,16.05369],[78.49865,16.05997],[78.47477,16.0685],[78.44111,16.07443],[78.43451,16.0712],[78.42867,16.07318],[78.40789,16.07481],[78.40145,16.07201],[78.39763,16.06613],[78.38439,16.0646],[78.36542,16.04678],[78.36197,16.0458],[78.34773,16.04747],[78.32656,16.03674],[78.32208,16.02868],[78.32193,16.01711],[78.31226,16.01151],[78.29942,16.01154],[78.27719,16.02432],[78.26698,16.02715],[78.26086,16.02582],[78.25749,16.02135],[78.25551,16.01285],[78.25982,15.99556],[78.25126,15.97681],[78.25333,15.96633],[78.25208,15.95383],[78.25362,15.94254],[78.25162,15.93522],[78.23214,15.92399],[78.20451,15.91798],[78.18443,15.90982],[78.17944,15.90193],[78.18993,15.89227],[78.18661,15.88481],[78.17667,15.87676],[78.17534,15.85808],[78.16679,15.85463],[78.15877,15.85376],[78.13554,15.8547],[78.13007,15.8507],[78.13428,15.84402],[78.134,15.83626],[78.13011,15.83809],[78.12332,15.83671],[78.11123,15.83836],[78.09879,15.83601],[78.08355,15.84092],[78.08488,15.84506],[78.07511,15.84718],[78.07136,15.85037],[78.07152,15.86175],[78.05583,15.86633],[78.05621,15.87465],[78.04682,15.8749],[78.04494,15.90414],[78.03189,15.90735],[78.031,15.90296],[78.02551,15.90236],[78.01503,15.87599],[78.0088,15.86478],[78.00886,15.86175],[77.99696,15.86632],[77.97533,15.88334],[77.94905,15.88476],[77.93696,15.8835],[77.88798,15.90608],[77.87822,15.90522],[77.87005,15.89724],[77.86232,15.88636],[77.85851,15.88371],[77.84597,15.88212],[77.83873,15.88509],[77.81983,15.87783],[77.80352,15.87413],[77.79292,15.87648],[77.78236,15.87617],[77.77723,15.88077],[77.76687,15.88614],[77.76079,15.88462],[77.74405,15.8861],[77.73881,15.88803],[77.73133,15.8937],[77.7241,15.89581],[77.71273,15.89452],[77.69275,15.88331],[77.6592,15.8855],[77.63647,15.89606],[77.62505,15.90904],[77.61139,15.91793],[77.59504,15.91185],[77.58966,15.9129],[77.58081,15.91848],[77.54898,15.91912],[77.53246,15.92409],[77.51493,15.92618],[77.49874,15.93318],[77.466,15.9345],[77.4296,15.94906],[77.42257,15.94749],[77.41434,15.94203],[77.39769,15.94448],[77.3901,15.9415],[77.37948,15.9398],[77.36125,15.94942],[77.34814,15.95132],[77.32406,15.95016],[77.31143,15.9534],[77.30107,15.958],[77.28468,15.95381],[77.24887,15.96456],[77.23547,15.95714],[77.21859,15.95795],[77.20495,15.95504],[77.18529,15.95674],[77.17409,15.95077],[77.15507,15.95003],[77.14314,15.9447],[77.13585,15.93758],[77.10255,15.92872],[77.07476,15.91202],[77.06256,15.89678],[77.05589,15.88154],[77.03369,15.85889],[77.02519,15.83751],[77.03585,15.82955],[77.04069,15.83274],[77.04256,15.82884],[77.04766,15.83004],[77.04809,15.82797],[77.05098,15.8304],[77.05344,15.82884],[77.05888,15.82999],[77.0652,15.82819],[77.06373,15.80319],[77.06712,15.80269],[77.06717,15.78774],[77.06641,15.78505],[77.06094,15.78626],[77.05695,15.7687],[77.05231,15.76987],[77.05106,15.76452],[77.05646,15.76283],[77.05431,15.75617],[77.04799,15.75622],[77.04594,15.74036],[77.04938,15.74004],[77.0491,15.73026],[77.07969,15.72751],[77.07887,15.71625],[77.08741,15.71549],[77.08257,15.6987],[77.08064,15.69853],[77.07869,15.69514],[77.09379,15.69038],[77.09503,15.68836],[77.10923,15.68146],[77.10928,15.67988],[77.1142,15.67798],[77.11339,15.67569],[77.12137,15.67109],[77.12014,15.66761],[77.12888,15.66586],[77.12142,15.63108],[77.11564,15.63251],[77.10832,15.63783],[77.10625,15.63744],[77.10747,15.64003],[77.1034,15.64284],[77.10136,15.6485],[77.09095,15.65339],[77.087,15.65763],[77.08319,15.65915],[77.07173,15.64665],[77.04599,15.63864],[77.03432,15.6368],[77.03412,15.63456],[77.03043,15.63449],[77.03007,15.62683],[77.03146,15.62683],[77.03111,15.62099],[77.03272,15.62063],[77.0313,15.61159],[77.03291,15.60498],[77.02624,15.58174],[77.03132,15.54408],[77.03136,15.50709],[77.03004,15.50265],[77.02884,15.50046],[77.02279,15.50224],[77.01479,15.50183],[77.00946,15.50461],[76.99233,15.50579],[76.97453,15.51051],[76.97384,15.49953],[76.9771,15.48976],[76.99121,15.4829],[76.9973,15.47801],[77.01077,15.44874],[77.0275,15.43974],[77.03353,15.43289],[77.03484,15.43029],[77.0339,15.41927],[77.02897,15.40768],[77.02923,15.40436],[77.03294,15.39971],[77.03963,15.39702],[77.04725,15.39002],[77.04742,15.3834],[77.04135,15.37099],[77.04183,15.36192],[77.04474,15.35569],[77.05903,15.34896],[77.0649,15.34355],[77.06601,15.33774],[77.06373,15.32802],[77.07439,15.32589],[77.10145,15.33368],[77.1131,15.33368],[77.11259,15.32743],[77.11701,15.32574],[77.11838,15.29485],[77.15158,15.29243],[77.15194,15.27568],[77.1471,15.27495],[77.14714,15.27292],[77.15285,15.27406],[77.15926,15.26784],[77.16693,15.26858],[77.16767,15.2585],[77.14378,15.25721],[77.14304,15.25184],[77.14054,15.25172],[77.14028,15.24748],[77.13622,15.24096],[77.13283,15.24169],[77.13251,15.23969],[77.12639,15.24044],[77.12512,15.22694],[77.14766,15.22391],[77.14719,15.22081],[77.15197,15.21757],[77.15166,15.2147],[77.15482,15.21482],[77.15931,15.201],[77.16195,15.20111],[77.16619,15.18834],[77.16913,15.17135],[77.16742,15.17125],[77.16736,15.16815],[77.16487,15.1682],[77.16283,15.15736],[77.14076,15.15859],[77.13541,15.14975],[77.13472,15.14829],[77.13714,15.1478],[77.13779,15.14353],[77.149,15.14142],[77.14975,15.13976],[77.15728,15.14047],[77.15633,15.12293],[77.15017,15.11161],[77.14208,15.10457],[77.13694,15.10425],[77.13696,15.10234],[77.13012,15.10077],[77.12821,15.07231],[77.12081,15.054],[77.1195,15.04569],[77.11527,15.0464],[77.11293,15.03406],[77.09366,15.03614],[77.09085,15.02933],[77.08475,15.03071],[77.08245,15.00608],[77.06902,15.00476],[77.04412,15.00984],[77.05043,15.02447],[77.04956,15.03308],[77.04032,15.0331],[77.03595,15.03128],[77.00408,15.03383],[77.00303,15.03091],[76.98603,15.02649],[76.98522,15.01519],[76.96592,15.01804],[76.9496,15.03037],[76.93586,15.02941],[76.92222,15.03128],[76.91837,15.03552],[76.90722,15.03252],[76.89498,15.03707],[76.87716,15.03021],[76.87784,15.03546],[76.86919,15.05342],[76.86519,15.05522],[76.86589,15.05968],[76.86411,15.05803],[76.86087,15.05979],[76.86143,15.06198],[76.85459,15.06512],[76.83602,15.07923],[76.82377,15.08001],[76.81161,15.08638],[76.80024,15.09583],[76.79392,15.09185],[76.79235,15.08757],[76.78602,15.08781],[76.7853,15.08231],[76.78215,15.07733],[76.77787,15.07987],[76.77669,15.0784],[76.77989,15.07604],[76.77524,15.07225],[76.77361,15.05912],[76.77663,15.05468],[76.78035,15.04269],[76.78343,15.04261],[76.78575,15.03715],[76.78572,15.02768],[76.79013,15.02071],[76.78712,15.00793],[76.78363,15.00478],[76.77874,15.00456],[76.77503,14.99306],[76.77238,14.99084],[76.76957,14.99176],[76.76786,14.9901],[76.76057,14.98986],[76.76654,14.97562],[76.77761,14.97545],[76.79627,14.96917],[76.81828,14.96944],[76.8285,14.95646],[76.83411,14.95646],[76.83527,14.96003],[76.84194,14.96641],[76.86746,14.96982],[76.86609,14.95753],[76.86962,14.93771],[76.86384,14.89558],[76.84733,14.89598],[76.84548,14.88929],[76.84552,14.88718],[76.85247,14.88697],[76.85145,14.88335],[76.85339,14.88321],[76.85388,14.86918],[76.85719,14.86911],[76.85489,14.85892],[76.85541,14.84878],[76.85406,14.84323],[76.84179,14.83655],[76.8455,14.83405],[76.84601,14.82205],[76.85456,14.81809],[76.85398,14.80944],[76.85146,14.8086],[76.83737,14.81056],[76.83675,14.79077],[76.83257,14.79039],[76.83239,14.79291],[76.81908,14.79312],[76.82034,14.78888],[76.81766,14.7876],[76.80296,14.7856],[76.79383,14.7854],[76.78864,14.78697],[76.78846,14.78582],[76.78396,14.78697],[76.78269,14.78594],[76.78898,14.77228],[76.78953,14.76006],[76.79415,14.75127],[76.80294,14.74188],[76.78651,14.70843],[76.78622,14.69578],[76.77527,14.68096],[76.77253,14.63911],[76.76692,14.61827],[76.76499,14.60212],[76.78023,14.59306],[76.78033,14.59704],[76.78184,14.5965],[76.78337,14.58044],[76.79136,14.55465],[76.79786,14.54917],[76.80282,14.5422],[76.80628,14.53106],[76.81254,14.53173],[76.81941,14.52994],[76.82346,14.52682],[76.83101,14.53036],[76.83282,14.52911],[76.83549,14.5213],[76.8419,14.51937],[76.84923,14.51258],[76.8556,14.50959],[76.8592,14.49746],[76.86246,14.49276],[76.8651,14.47823],[76.86796,14.47404],[76.88427,14.47708],[76.88387,14.47927],[76.88651,14.48353],[76.88925,14.48317],[76.90069,14.48921],[76.92091,14.49052],[76.94339,14.48948],[76.94875,14.48914],[76.95,14.48676],[76.97481,14.48533],[76.97544,14.47786],[76.97167,14.46814],[76.9684,14.46511],[76.96833,14.46179],[76.9598,14.45021],[76.9568,14.45198],[76.95037,14.45237],[76.94596,14.45255],[76.94479,14.4509],[76.94779,14.41316],[76.94676,14.40615],[76.94271,14.39934],[76.93142,14.41052],[76.91583,14.42069],[76.9046,14.40392],[76.89863,14.39795],[76.88482,14.39571],[76.88375,14.36466],[76.88201,14.35971],[76.88464,14.34754],[76.89228,14.34126],[76.90339,14.32268],[76.90787,14.32295],[76.9272,14.31451],[76.94565,14.31318],[76.95672,14.29435],[76.94738,14.28617],[76.93877,14.28301],[76.93711,14.28034],[76.92818,14.2793],[76.9249,14.27378],[76.9358,14.25937],[76.94006,14.24461],[76.95194,14.2419],[76.95983,14.24496],[76.96983,14.24337],[76.9762,14.24613],[76.9856,14.24733],[76.99194,14.24141],[76.99894,14.24087],[77.00566,14.23579],[77.00848,14.238],[77.03036,14.24227],[77.03054,14.24419],[77.03614,14.24487],[77.03605,14.24674],[77.05246,14.2455],[77.05773,14.2438],[77.05694,14.24067],[77.06028,14.2362],[77.06007,14.23228],[77.0618,14.22946],[77.06776,14.2284],[77.07589,14.22336],[77.08117,14.21415],[77.1008,14.21714],[77.11486,14.22314],[77.11667,14.22638],[77.11565,14.23758],[77.11832,14.24481],[77.11533,14.25453],[77.11856,14.25682],[77.12048,14.26293],[77.11119,14.26158],[77.11169,14.26536],[77.11019,14.26827],[77.11552,14.27424],[77.11564,14.29248],[77.12588,14.30042],[77.13226,14.31066],[77.13633,14.32302],[77.137,14.33176],[77.1357,14.33687],[77.1389,14.33997],[77.15266,14.33914],[77.15734,14.3421],[77.16675,14.34212],[77.16932,14.33544],[77.17868,14.33548],[77.17795,14.33422],[77.18104,14.33038],[77.18404,14.33247],[77.19742,14.32118],[77.21347,14.31878],[77.22867,14.3212],[77.2382,14.31736],[77.24734,14.31781],[77.25387,14.32223],[77.25336,14.32526],[77.25828,14.32748],[77.25858,14.33092],[77.26357,14.3328],[77.26931,14.33211],[77.27712,14.33754],[77.28388,14.33753],[77.28484,14.3401],[77.28657,14.3401],[77.28744,14.32716],[77.28854,14.32714],[77.28883,14.30547],[77.28795,14.29876],[77.28289,14.28607],[77.28354,14.28274],[77.28933,14.2813],[77.30534,14.28344],[77.31426,14.28051],[77.33016,14.27986],[77.33906,14.2769],[77.36382,14.27583],[77.36186,14.26875],[77.36383,14.25469],[77.36012,14.24531],[77.35949,14.23401],[77.36637,14.23285],[77.37917,14.22648],[77.3842,14.22095],[77.38322,14.20744],[77.38667,14.20352],[77.38709,14.20002],[77.3926,14.19884],[77.40077,14.20321],[77.41027,14.20571],[77.41413,14.20476],[77.41828,14.20907],[77.41939,14.21162],[77.41769,14.22584],[77.41212,14.22769],[77.41148,14.23238],[77.40967,14.23192],[77.40883,14.25985],[77.40694,14.25969],[77.40538,14.26669],[77.39578,14.26612],[77.38736,14.27087],[77.38877,14.28084],[77.38664,14.28167],[77.38514,14.29268],[77.3824,14.29901],[77.37782,14.30139],[77.37703,14.3076],[77.37904,14.32272],[77.38555,14.3279],[77.38909,14.33313],[77.39417,14.33659],[77.40644,14.33775],[77.41213,14.33651],[77.42308,14.32818],[77.4284,14.32864],[77.43126,14.31296],[77.43806,14.31638],[77.44622,14.31747],[77.44518,14.29523],[77.44813,14.28261],[77.45063,14.28279],[77.45028,14.28071],[77.45965,14.2805],[77.46606,14.28309],[77.47893,14.29216],[77.48312,14.29071],[77.48712,14.28172],[77.49076,14.2813],[77.49275,14.27815],[77.49828,14.27885],[77.50386,14.26375],[77.50221,14.2614],[77.50341,14.25977],[77.49652,14.23691],[77.49237,14.23484],[77.49373,14.23301],[77.49279,14.23101],[77.49592,14.23199],[77.49449,14.22424],[77.50328,14.21054],[77.50133,14.20477],[77.50465,14.19398],[77.51703,14.18604],[77.51703,14.18281],[77.5152,14.18294],[77.51343,14.17785],[77.51434,14.17665],[77.51065,14.17305],[77.50351,14.15712],[77.49961,14.1598],[77.48813,14.16167],[77.48083,14.16474],[77.46809,14.16489],[77.467,14.17164],[77.45682,14.16962],[77.44575,14.1717],[77.4302,14.17046],[77.4226,14.17298],[77.42277,14.17644],[77.42036,14.17695],[77.40785,14.17352],[77.39372,14.17425],[77.39162,14.17282],[77.39474,14.1687],[77.39488,14.16077],[77.38925,14.15965],[77.38804,14.15363],[77.38507,14.15326],[77.38335,14.14413],[77.37894,14.13584],[77.35785,14.13032],[77.35171,14.1311],[77.35148,14.12037],[77.34747,14.10364],[77.34978,14.10313],[77.35355,14.10969],[77.36168,14.11533],[77.37566,14.11868],[77.3821,14.1235],[77.39061,14.12664],[77.39736,14.12544],[77.39724,14.12318],[77.40103,14.12018],[77.40092,14.11871],[77.39761,14.10955],[77.38881,14.09948],[77.38618,14.09756],[77.38127,14.09784],[77.37562,14.07935],[77.37361,14.07701],[77.36366,14.07301],[77.36054,14.06256],[77.34593,14.05967],[77.3405,14.06019],[77.33509,14.0454],[77.3323,14.03069],[77.38491,14.01603],[77.39016,14.0167],[77.38765,14.00571],[77.37967,13.98984],[77.38164,13.97623],[77.39569,13.98373],[77.42589,13.98611],[77.42766,13.97968],[77.43402,13.98016],[77.43788,13.97552],[77.43475,13.96438],[77.43531,13.95766],[77.43758,13.95551],[77.43536,13.94751],[77.43072,13.94508],[77.41209,13.94556],[77.41488,13.93663],[77.41588,13.9242],[77.4349,13.91967],[77.43504,13.91501],[77.43227,13.91054],[77.42835,13.90908],[77.42841,13.90593],[77.42283,13.90282],[77.42051,13.89933],[77.41057,13.89631],[77.40546,13.88945],[77.39874,13.88813],[77.39994,13.89646],[77.39788,13.90618],[77.38717,13.90625],[77.36849,13.90295],[77.35763,13.90337],[77.35445,13.90411],[77.35293,13.9139],[77.35016,13.91341],[77.34784,13.91596],[77.35521,13.93076],[77.36745,13.94968],[77.37129,13.95275],[77.34949,13.95814],[77.35385,13.96279],[77.35213,13.96875],[77.35595,13.97908],[77.35934,13.98383],[77.36109,13.99081],[77.34818,13.99447],[77.33622,13.99537],[77.33686,14.00447],[77.32268,14.02301],[77.32223,14.02999],[77.31081,14.03253],[77.30658,14.032],[77.30142,14.02741],[77.29827,14.02161],[77.29209,14.02001],[77.28188,14.01291],[77.275,14.01128],[77.27931,14.02602],[77.27876,14.03241],[77.27686,14.03197],[77.27732,14.03465],[77.27036,14.03448],[77.26312,14.02873],[77.26059,14.02886],[77.25679,14.02238],[77.24817,14.01757],[77.24535,14.01194],[77.21982,14.01357],[77.21572,14.01088],[77.20997,14.01104],[77.20467,14.00825],[77.174,14.01298],[77.17095,14.012],[77.17283,14.00108],[77.14922,14.00116],[77.14107,14.00386],[77.14173,14.0132],[77.14036,14.01796],[77.1364,14.0229],[77.13184,14.04392],[77.1274,14.04701],[77.10237,14.04524],[77.09512,14.04244],[77.07892,14.04264],[77.07532,14.04348],[77.07612,14.05327],[77.06742,14.05202],[77.04571,14.05669],[77.03476,14.0557],[77.03152,14.05646],[77.02768,14.06175],[77.02544,14.06573],[77.02888,14.07781],[77.0298,14.08817],[77.01842,14.09463],[77.01912,14.09639],[77.01467,14.1],[77.01636,14.10424],[77.02406,14.11261],[77.02181,14.12325],[77.02622,14.12502],[77.02586,14.12994],[77.0201,14.1309],[77.02183,14.15195],[77.02041,14.15716],[77.02603,14.17479],[77.02333,14.17669],[77.00546,14.18397],[76.99644,14.18027],[76.98377,14.17882],[76.97065,14.18241],[76.9606,14.18177],[76.95903,14.18262],[76.95976,14.18395],[76.95736,14.18811],[76.95114,14.19266],[76.94757,14.19818],[76.94271,14.1954],[76.94248,14.19109],[76.94467,14.18657],[76.94208,14.18067],[76.94237,14.17333],[76.92192,14.16942],[76.91975,14.16446],[76.90966,14.16796],[76.90054,14.16757],[76.89966,14.16923],[76.89837,14.16755],[76.89453,14.16781],[76.89052,14.14282],[76.88591,14.13824],[76.88952,14.13562],[76.9048,14.13364],[76.91284,14.12881],[76.91757,14.12884],[76.92498,14.13711],[76.93112,14.13102],[76.93587,14.12885],[76.93658,14.12428],[76.94426,14.12074],[76.94569,14.11821],[76.95353,14.09966],[76.9484,14.09205],[76.95941,14.09163],[76.97345,14.08352],[76.97497,14.08091],[76.97526,14.074],[76.97757,14.07129],[76.97646,14.06528],[76.97174,14.05802],[76.9586,14.05704],[76.95031,14.05356],[76.93238,14.05392],[76.9344,14.04464],[76.93113,14.0302],[76.93502,14.0328],[76.94016,14.0295],[76.94347,14.02974],[76.94378,14.0233],[76.94994,14.01509],[76.96539,14.0115],[76.98197,14.00163],[76.99637,13.99051],[76.99949,13.99034],[77.00033,13.98942],[76.99618,13.97676],[76.99377,13.96256],[77.00627,13.95646],[77.01421,13.95487],[77.02437,13.93995],[77.03704,13.93695],[77.04166,13.93343],[77.04422,13.91476],[77.04729,13.9066],[77.03222,13.90518],[77.02303,13.9026],[77.02325,13.89593],[77.02063,13.89235],[77.02032,13.88843],[77.01625,13.88441],[77.01847,13.87254],[77.01319,13.87152],[77.01422,13.86031],[77.00654,13.85206],[76.9968,13.84895],[76.99223,13.84901],[76.9889,13.83526],[76.98289,13.8289],[76.97802,13.82687],[76.97641,13.81732],[76.98974,13.81294],[76.99169,13.80267],[76.98919,13.79463],[76.9852,13.7908],[76.9929,13.77075],[76.9945,13.75999],[76.99839,13.75505],[76.99687,13.74775],[76.9985,13.74557],[77.0165,13.73851],[77.01658,13.74586],[77.01868,13.74867],[77.01735,13.7561],[77.02388,13.7679],[77.02447,13.77922],[77.04337,13.77779],[77.04406,13.77084],[77.04861,13.77018],[77.05184,13.76418],[77.05804,13.7603],[77.05897,13.75716],[77.05749,13.75296],[77.0602,13.75283],[77.05991,13.74933],[77.0647,13.74383],[77.06978,13.74522],[77.07589,13.74284],[77.08563,13.74244],[77.08396,13.74577],[77.08383,13.75664],[77.08547,13.76234],[77.09022,13.76236],[77.09044,13.76714],[77.10596,13.76776],[77.11788,13.7645],[77.12233,13.7613],[77.13684,13.7583],[77.13983,13.7611],[77.14087,13.76504],[77.15111,13.76621],[77.17305,13.76201],[77.17851,13.78268],[77.17559,13.7836],[77.16516,13.79447],[77.16285,13.79846],[77.1621,13.80476],[77.15752,13.80603],[77.16258,13.80866],[77.16279,13.81237],[77.15952,13.81686],[77.16265,13.81684],[77.16772,13.82121],[77.16868,13.82962],[77.16549,13.83311],[77.15368,13.83414],[77.15601,13.84435],[77.13217,13.8462],[77.1282,13.85646],[77.13604,13.85652],[77.14764,13.86848],[77.16858,13.86449],[77.17136,13.87111],[77.16876,13.88052],[77.16876,13.88957],[77.16205,13.89906],[77.16193,13.90662],[77.16992,13.92061],[77.18471,13.92519],[77.18808,13.91391],[77.19084,13.91187],[77.18584,13.89233],[77.18568,13.87617],[77.18139,13.86984],[77.20043,13.86304],[77.20991,13.87807],[77.2102,13.88494],[77.21313,13.88619],[77.21555,13.88617],[77.21703,13.88374],[77.21541,13.86791],[77.21985,13.86772],[77.22401,13.88122],[77.22483,13.88292],[77.22666,13.88216],[77.22989,13.89161],[77.23065,13.90333],[77.23562,13.90414],[77.23647,13.90102],[77.24514,13.90301],[77.24827,13.90121],[77.24778,13.88832],[77.24472,13.88327],[77.24868,13.87352],[77.24636,13.86791],[77.25911,13.86314],[77.25615,13.85167],[77.25669,13.84652],[77.28027,13.85105],[77.28828,13.84748],[77.29016,13.84825],[77.29492,13.8574],[77.29638,13.85701],[77.30358,13.86203],[77.31055,13.86288],[77.31149,13.86658],[77.31646,13.86327],[77.31907,13.85722],[77.32145,13.85592],[77.32165,13.84702],[77.32514,13.84538],[77.32307,13.84],[77.32469,13.83989],[77.32538,13.83324],[77.33684,13.83275],[77.34555,13.8411],[77.35328,13.84552],[77.35732,13.8513],[77.36243,13.85425],[77.37364,13.85263],[77.37689,13.85069],[77.38119,13.84729],[77.3794,13.84084],[77.3819,13.83936],[77.39938,13.84105],[77.41554,13.83973],[77.4197,13.84161],[77.42683,13.84112],[77.42917,13.8448],[77.43252,13.84322],[77.43132,13.83665],[77.4274,13.8322],[77.42737,13.82834],[77.42364,13.82374],[77.41643,13.80876],[77.41611,13.80668],[77.4185,13.80624],[77.41967,13.8096],[77.42865,13.80681],[77.42827,13.80347],[77.42549,13.80322],[77.42257,13.79909],[77.43703,13.7967],[77.44059,13.80657],[77.44533,13.81102],[77.45479,13.80985],[77.45746,13.80722],[77.46423,13.80792],[77.46459,13.80608],[77.46463,13.80318],[77.46087,13.803],[77.45649,13.78872],[77.46138,13.78839],[77.46043,13.78047],[77.46379,13.7715],[77.46515,13.75868],[77.47055,13.75802],[77.46765,13.75317],[77.46667,13.73997],[77.46464,13.73413],[77.46336,13.72292],[77.46508,13.71088],[77.46166,13.70965],[77.45007,13.7109],[77.45074,13.70483],[77.4525,13.70405],[77.453,13.69601],[77.45459,13.69564],[77.45466,13.69104],[77.45609,13.69072],[77.45533,13.68226],[77.47424,13.68611],[77.48788,13.68666],[77.48783,13.68917],[77.49211,13.68981],[77.49122,13.69519],[77.48789,13.69977],[77.48827,13.70415],[77.48652,13.7041],[77.48504,13.71478],[77.51417,13.71321],[77.51451,13.70502],[77.51237,13.69725],[77.51963,13.69627],[77.52126,13.69213],[77.52505,13.69101],[77.52834,13.69301],[77.53437,13.707],[77.53664,13.7306],[77.5271,13.74152],[77.52195,13.74456],[77.52556,13.7533],[77.54086,13.75595],[77.54744,13.7529],[77.5493,13.74887],[77.54929,13.74064],[77.55375,13.73654],[77.5589,13.72353],[77.56093,13.72234],[77.56485,13.72618],[77.57168,13.7382],[77.57712,13.73831],[77.58055,13.73508],[77.58685,13.73349],[77.59602,13.74819],[77.59997,13.75076],[77.61361,13.75192],[77.62443,13.73523],[77.63058,13.73592],[77.63359,13.73958],[77.63697,13.73941],[77.64171,13.74222],[77.64188,13.74783],[77.63591,13.74948],[77.62964,13.7542],[77.62521,13.75298],[77.61884,13.75496],[77.61769,13.76268],[77.62107,13.76844],[77.64599,13.77876],[77.65149,13.78413],[77.66135,13.78538],[77.66984,13.78391],[77.68008,13.78678],[77.68146,13.7796],[77.67987,13.77233],[77.67761,13.76669],[77.67172,13.76048],[77.67962,13.76218],[77.69518,13.7707],[77.70329,13.76979],[77.70846,13.74102],[77.71514,13.74376],[77.71736,13.74107],[77.7201,13.75597],[77.71999,13.7651],[77.72222,13.76885],[77.71974,13.775],[77.71868,13.7841],[77.71951,13.78809],[77.72194,13.79],[77.72228,13.79394],[77.71931,13.80027],[77.72929,13.80221],[77.73158,13.80757],[77.74072,13.81242],[77.74514,13.81013],[77.74793,13.81039],[77.76351,13.81722],[77.78153,13.81829],[77.78876,13.82316],[77.78909,13.83047],[77.78426,13.83439],[77.7822,13.83894],[77.78227,13.84408],[77.79301,13.84894],[77.80808,13.85059],[77.81203,13.84898],[77.81485,13.85778],[77.82019,13.86321],[77.82225,13.86474],[77.83023,13.86558],[77.83707,13.86974],[77.82733,13.87444],[77.82813,13.87654],[77.83554,13.88097],[77.83196,13.89567],[77.82682,13.89921],[77.81999,13.89978],[77.81618,13.90298],[77.81703,13.90831],[77.81349,13.91462],[77.81484,13.93193],[77.82659,13.94472],[77.8308,13.94039],[77.83882,13.93589],[77.85485,13.93818],[77.86861,13.93601],[77.89569,13.94104],[77.89891,13.93064],[77.89535,13.92563],[77.89582,13.92036],[77.89968,13.91659],[77.9054,13.91644],[77.91542,13.90785],[77.92677,13.90533],[77.93713,13.91866],[77.9462,13.93534],[77.95451,13.93854],[77.95734,13.93672],[77.96,13.94051],[77.96195,13.95497],[77.96422,13.95556],[77.96743,13.96016],[77.9794,13.95862],[77.98753,13.9555],[77.98025,13.92786],[77.98376,13.91576],[77.9831,13.90487],[77.98662,13.903],[77.98459,13.8974],[77.95213,13.88983],[77.94908,13.88645],[77.94906,13.8707],[77.95416,13.85516],[77.9548,13.84224],[77.95368,13.83856],[77.95625,13.83593],[77.95614,13.83122],[77.95242,13.82908],[77.95298,13.82735],[77.96054,13.82945],[77.9761,13.82949],[77.98298,13.84727],[77.98722,13.85407],[77.98885,13.85377],[77.98951,13.8626],[77.99206,13.86882],[77.99832,13.86908],[78.00048,13.87293],[78.01158,13.87194],[78.01672,13.86496],[78.02123,13.86383],[78.03185,13.86425],[78.04133,13.86027],[78.04619,13.86213],[78.04625,13.86635],[78.05011,13.87186],[78.05083,13.87599],[78.04887,13.89609],[78.06065,13.89196],[78.06225,13.8908],[78.06183,13.88842],[78.0643,13.88664],[78.079,13.88116],[78.08054,13.86754],[78.08261,13.86429],[78.08191,13.86124],[78.08994,13.8647],[78.094,13.86481],[78.10185,13.8617],[78.11478,13.86289],[78.11681,13.85883],[78.11654,13.85187],[78.12363,13.84535],[78.1222,13.83895],[78.12547,13.83201],[78.11479,13.81199],[78.11375,13.80747],[78.12269,13.79878],[78.12662,13.78711],[78.12216,13.78132],[78.11919,13.77251],[78.1138,13.76343],[78.09988,13.75846],[78.09152,13.74228],[78.09832,13.73779],[78.10433,13.73654],[78.11101,13.7258],[78.11585,13.72253],[78.1208,13.71562],[78.11471,13.70342],[78.11322,13.69274],[78.09242,13.69117],[78.0921,13.69256],[78.08588,13.69219],[78.08014,13.69664],[78.07268,13.69848],[78.06908,13.69781],[78.06961,13.6908],[78.07089,13.68846],[78.07359,13.68773],[78.07124,13.68238],[78.06731,13.6797],[78.06572,13.67614],[78.07701,13.67335],[78.07855,13.66727],[78.08974,13.6591],[78.0869,13.65117],[78.08711,13.64307],[78.09895,13.6428],[78.10225,13.65106],[78.10847,13.65311],[78.11429,13.65736],[78.12557,13.65585],[78.13055,13.65914],[78.13391,13.6595],[78.1465,13.65671],[78.15613,13.65862],[78.16758,13.65583],[78.16907,13.65394],[78.16822,13.63285],[78.17505,13.63061],[78.2042,13.62842],[78.20232,13.61943],[78.20377,13.61828],[78.20333,13.60651],[78.19901,13.59924],[78.19026,13.59014],[78.18961,13.57521],[78.19297,13.56485],[78.20292,13.56878],[78.20784,13.57699],[78.21408,13.58323],[78.21621,13.59062],[78.21923,13.59246],[78.22622,13.58744],[78.23258,13.58598],[78.23509,13.59106],[78.23439,13.59712],[78.23634,13.59858],[78.24211,13.59565],[78.24369,13.59684],[78.24929,13.59088],[78.25804,13.58569],[78.2586,13.58301],[78.27048,13.58815],[78.30773,13.59222],[78.31496,13.59142],[78.32617,13.59484],[78.34657,13.5905],[78.34863,13.58687],[78.36124,13.58899],[78.36493,13.58808],[78.36531,13.58951],[78.38429,13.59186],[78.39346,13.59066],[78.39617,13.58817],[78.402,13.58797],[78.40155,13.5785],[78.40667,13.57686],[78.39313,13.55256],[78.39364,13.54063],[78.38411,13.5249],[78.38552,13.51556],[78.37532,13.50895],[78.37685,13.50524],[78.37485,13.5027],[78.37805,13.50017],[78.37879,13.48204],[78.37082,13.46952],[78.37236,13.46335],[78.37456,13.46195],[78.37285,13.45214],[78.37573,13.44389],[78.37836,13.44372],[78.37897,13.44007],[78.3764,13.43945],[78.3756,13.43738],[78.37751,13.43188],[78.37744,13.42403],[78.38075,13.41887],[78.37922,13.41483],[78.38106,13.40882],[78.38168,13.39698],[78.37878,13.38365],[78.37236,13.37846],[78.36906,13.37319],[78.36508,13.3618],[78.36581,13.35865],[78.36967,13.35826],[78.37083,13.36151],[78.3761,13.36113],[78.37764,13.36315],[78.39486,13.35433],[78.39321,13.35074],[78.4084,13.34569],[78.40868,13.34288],[78.40729,13.33752],[78.39302,13.33376],[78.38487,13.33489],[78.38842,13.3391],[78.38768,13.3428],[78.38303,13.34359],[78.37825,13.33719],[78.37715,13.33197],[78.38713,13.33179],[78.39216,13.3253],[78.39927,13.32069],[78.4011,13.31547],[78.41888,13.32057],[78.42176,13.32827],[78.42795,13.33129],[78.44038,13.32843],[78.44124,13.32489],[78.44001,13.32181],[78.44421,13.30811],[78.45263,13.31008],[78.45772,13.31384],[78.46666,13.31512],[78.46948,13.31709],[78.47015,13.31983],[78.4769,13.32264],[78.4834,13.32117],[78.48363,13.31304],[78.48124,13.31018],[78.47931,13.30129],[78.49674,13.29861],[78.49878,13.29956],[78.50485,13.29137],[78.514,13.29059],[78.51335,13.28523],[78.51993,13.28277],[78.51979,13.27711],[78.52165,13.27616],[78.52196,13.273],[78.52651,13.27162],[78.52667,13.26842],[78.53218,13.26694],[78.53639,13.27241],[78.53932,13.28787],[78.54533,13.28789],[78.55411,13.28317],[78.56164,13.28851],[78.56499,13.29546],[78.56492,13.30691],[78.56321,13.30939],[78.56555,13.312],[78.56954,13.30922],[78.57149,13.30337],[78.57755,13.29528],[78.57634,13.28499],[78.57865,13.28035],[78.58736,13.28064],[78.58764,13.27125],[78.5853,13.2622],[78.57906,13.25366],[78.57014,13.2471],[78.5705,13.24259],[78.57194,13.24259],[78.56873,13.2374],[78.5664,13.22085],[78.57855,13.21802],[78.5787,13.21299],[78.57626,13.21151],[78.57112,13.21204],[78.56779,13.20152],[78.56053,13.19877],[78.55006,13.20018],[78.54976,13.18969],[78.55582,13.18864],[78.56646,13.19182],[78.5673,13.19326],[78.57606,13.18669],[78.57648,13.17455],[78.57977,13.16736],[78.57649,13.16712],[78.57337,13.1689],[78.56873,13.16562],[78.5682,13.16176],[78.55011,13.16419],[78.5414,13.15574],[78.54087,13.15348],[78.54836,13.14854],[78.54465,13.142],[78.53126,13.14137],[78.52667,13.13894],[78.52608,13.13407],[78.52334,13.13045],[78.52156,13.13013],[78.52151,13.13181],[78.51704,13.13159],[78.51893,13.12511],[78.51853,13.11982],[78.52303,13.11841],[78.52262,13.11496],[78.52527,13.11445],[78.52683,13.11222],[78.53745,13.10861],[78.53851,13.10573],[78.53246,13.10567],[78.52448,13.1012],[78.52285,13.09772],[78.52339,13.09469],[78.51607,13.09655],[78.50947,13.0915],[78.50862,13.07902],[78.51077,13.07803],[78.51512,13.06997],[78.51568,13.06551],[78.51425,13.06186],[78.49806,13.0612],[78.48736,13.05236],[78.47849,13.05454],[78.47796,13.05009],[78.47312,13.04292],[78.4648,13.04466],[78.4622,13.04321],[78.46141,13.02569],[78.46482,13.02042],[78.46345,13.01634],[78.46454,13.01179],[78.46361,13.00532],[78.46826,13.00462],[78.4677,12.99854],[78.47187,12.99262],[78.47481,12.99144],[78.46858,12.98272],[78.46746,12.97502],[78.45972,12.97725],[78.45269,12.97677],[78.43533,12.98104],[78.43248,12.97796],[78.43474,12.97144],[78.43272,12.9678],[78.43797,12.96399],[78.43458,12.96079],[78.4297,12.95913],[78.42916,12.95746],[78.41927,12.95868],[78.4215,12.95463],[78.42038,12.94774],[78.41376,12.94835],[78.41116,12.94527],[78.41355,12.93932],[78.41309,12.9334],[78.4152,12.93336],[78.41574,12.92968],[78.41789,12.92789],[78.41882,12.92172],[78.42282,12.92335],[78.42818,12.93209],[78.43802,12.92901],[78.44453,12.91963],[78.4523,12.91767],[78.45925,12.90873],[78.4667,12.90541],[78.46946,12.88964],[78.46477,12.86676],[78.46205,12.87106],[78.46411,12.8777],[78.45589,12.88747],[78.44882,12.8901],[78.44724,12.89221],[78.44923,12.89824],[78.44396,12.903],[78.44649,12.90819],[78.44558,12.9118],[78.43884,12.91366],[78.43495,12.91184],[78.4359,12.90945],[78.4337,12.90454],[78.43039,12.90479],[78.42865,12.90208],[78.41221,12.90323],[78.4089,12.90927],[78.39867,12.91731],[78.3964,12.90731],[78.3887,12.90686],[78.38576,12.90937],[78.38563,12.91144],[78.37825,12.91385],[78.37672,12.91794],[78.36026,12.93693],[78.35637,12.93887],[78.35587,12.94074],[78.3541,12.93969],[78.34971,12.93571],[78.35385,12.93025],[78.34905,12.92899],[78.3466,12.91404],[78.34197,12.9119],[78.34407,12.9085],[78.33973,12.90318],[78.33106,12.90187],[78.32631,12.9045],[78.32353,12.90178],[78.3225,12.89749],[78.32407,12.89291],[78.32033,12.88726],[78.32169,12.88556],[78.32918,12.88459],[78.33088,12.88536],[78.33179,12.88884],[78.33452,12.88921],[78.33799,12.88621],[78.33708,12.88236],[78.33224,12.8807],[78.33102,12.87558],[78.31363,12.87645],[78.31559,12.86755],[78.31245,12.85852],[78.2821,12.85931],[78.27171,12.86696],[78.2684,12.86769],[78.26527,12.86201],[78.25814,12.8604],[78.25366,12.8622],[78.2522,12.86055],[78.25234,12.82894],[78.25056,12.81221],[78.24656,12.80166],[78.24564,12.78826],[78.23898,12.76838],[78.23095,12.76066],[78.23214,12.75304],[78.23579,12.74585],[78.23609,12.7381],[78.24088,12.73271],[78.24101,12.72994],[78.23117,12.71256],[78.22712,12.71483],[78.21807,12.7088],[78.21346,12.71098],[78.21217,12.70763],[78.2074,12.70836],[78.20544,12.70572],[78.20772,12.70483],[78.20713,12.70221],[78.20936,12.70252],[78.20994,12.7005],[78.20419,12.6959],[78.19932,12.69538],[78.20101,12.69174],[78.20362,12.69306],[78.21235,12.68848],[78.21059,12.68608],[78.23212,12.6872],[78.23771,12.68576],[78.23929,12.70101],[78.24456,12.70633],[78.27215,12.70467],[78.2765,12.70155],[78.28645,12.68901],[78.29559,12.67526],[78.29647,12.67104],[78.30133,12.66758],[78.30099,12.66587],[78.30603,12.66627],[78.31837,12.66192],[78.32581,12.65524],[78.33107,12.65303],[78.33221,12.64926],[78.34359,12.64874],[78.35212,12.64158],[78.35565,12.63646],[78.36286,12.63434],[78.37143,12.62711],[78.37942,12.62501],[78.39251,12.62738],[78.41261,12.62686],[78.42707,12.63524],[78.43483,12.62955],[78.45846,12.62964],[78.46497,12.62403],[78.47172,12.63204],[78.47056,12.64459],[78.47478,12.64763],[78.47051,12.65056],[78.4679,12.67589],[78.4845,12.67166],[78.48484,12.67329],[78.49933,12.67509],[78.50012,12.67991],[78.50386,12.68191],[78.50252,12.68416],[78.50406,12.68346],[78.50336,12.68991],[78.50744,12.69141],[78.50291,12.69191],[78.50399,12.69864],[78.49941,12.69925],[78.49932,12.70161],[78.49658,12.70325],[78.50193,12.70445],[78.50396,12.71123],[78.50307,12.71677],[78.51178,12.7077],[78.51462,12.70791],[78.51448,12.71037],[78.51901,12.71035],[78.52001,12.71201],[78.51753,12.71469],[78.51983,12.71557],[78.52024,12.71868],[78.51781,12.72012],[78.51658,12.7187],[78.50927,12.72423],[78.50597,12.72252],[78.50644,12.72434],[78.50427,12.72494],[78.50161,12.73116],[78.49696,12.73134],[78.49269,12.73564],[78.48909,12.74198],[78.49317,12.74715],[78.50527,12.74296],[78.50714,12.73711],[78.51383,12.73447],[78.51162,12.72685],[78.51392,12.72527],[78.51808,12.72484],[78.51917,12.73628],[78.52092,12.73613],[78.52271,12.71921],[78.52703,12.72149],[78.52507,12.71542],[78.53323,12.71398],[78.53752,12.71699],[78.53697,12.71332],[78.54428,12.71094],[78.53996,12.70822],[78.53774,12.71045],[78.53505,12.70732],[78.53275,12.71158],[78.52961,12.71022],[78.5313,12.69702],[78.53491,12.69112],[78.54091,12.69067],[78.55588,12.70016],[78.55662,12.70361],[78.55488,12.70752],[78.56159,12.71001],[78.55604,12.71519],[78.55442,12.71928],[78.56055,12.72716],[78.56386,12.73762],[78.55532,12.73928],[78.55616,12.74271],[78.56012,12.74378],[78.5597,12.74919],[78.5632,12.75132],[78.55834,12.74994],[78.55826,12.75371],[78.55563,12.75579],[78.56153,12.76145],[78.56558,12.75936],[78.56839,12.76693],[78.57656,12.76738],[78.57605,12.77191],[78.59252,12.78268],[78.59307,12.79823],[78.60116,12.80368],[78.60039,12.81842],[78.60776,12.8219],[78.60156,12.8508],[78.61309,12.86794],[78.61669,12.88858],[78.62286,12.90425],[78.62686,12.90732],[78.63345,12.92611],[78.63344,12.93175],[78.65226,12.9291],[78.65701,12.93211],[78.64612,12.94589],[78.63824,12.96408],[78.64717,12.96624],[78.64002,12.97098],[78.6209,12.99124],[78.63001,12.9945],[78.63462,13.0008],[78.64513,13.00623],[78.65208,13.01359],[78.65552,13.01525],[78.65621,13.03117],[78.70527,13.01524],[78.71452,13.06868],[78.74029,13.064],[78.75178,13.05494],[78.7943,13.06658],[78.79763,13.07485],[78.81314,13.08914],[78.8208,13.08776],[78.84204,13.07861],[78.86111,13.08366],[78.87097,13.08188],[78.8698,13.08952],[78.8751,13.09682],[78.88142,13.09818],[78.89121,13.09715],[78.89569,13.09512],[78.89219,13.08976],[78.88895,13.07336],[78.89129,13.06881],[78.89164,13.03306],[78.91563,13.03356],[78.92912,13.03649],[78.93155,13.03469],[78.93575,13.03479],[78.93711,13.03043],[78.94081,13.03641],[78.93374,13.03926],[78.92916,13.04576],[78.92175,13.04701],[78.91751,13.04362],[78.90612,13.04512],[78.90368,13.04771],[78.9126,13.06593],[78.91657,13.06731],[78.91949,13.06486],[78.92174,13.06609],[78.92394,13.08081],[78.9275,13.08183],[78.94148,13.07852],[78.94919,13.08399],[78.94958,13.08017],[78.95545,13.07584],[78.96073,13.07612],[78.96213,13.07873],[78.96879,13.07786],[78.97028,13.07471],[78.97144,13.077],[78.97019,13.07965],[78.9723,13.08381],[78.98252,13.08641],[78.995,13.08661],[79.00392,13.0846],[79.00369,13.08321],[79.00817,13.08071],[79.0095,13.07723],[79.01533,13.07694],[79.01656,13.07455],[79.02299,13.07379],[79.02438,13.07187],[79.02869,13.07262],[79.02974,13.07098],[79.03156,13.07203],[79.0346,13.06998],[79.03695,13.07059],[79.03628,13.06546],[79.03869,13.06114],[79.0634,13.05311],[79.06452,13.05006],[79.06287,13.04064],[79.07394,13.03285],[79.08091,13.02573],[79.08682,13.02801],[79.09114,13.02607],[79.09831,13.02606],[79.10747,13.03828],[79.11448,13.03927],[79.12754,13.03557],[79.13734,13.03481],[79.14831,13.02466],[79.16312,13.02027],[79.16831,13.02426],[79.17109,13.02398],[79.17186,13.02728],[79.17583,13.0271],[79.17642,13.02885],[79.18112,13.02974],[79.1822,13.03187],[79.18483,13.02985],[79.1885,13.04195],[79.193,13.0467],[79.19189,13.04835],[79.18271,13.04732],[79.18044,13.04885],[79.17966,13.0545],[79.1921,13.05615],[79.19134,13.05856],[79.18474,13.0568],[79.1783,13.05919],[79.18007,13.06431],[79.18732,13.06066],[79.18809,13.06566],[79.19212,13.06743],[79.1908,13.07335],[79.18401,13.07273],[79.18565,13.07522],[79.18533,13.07967],[79.18324,13.08193],[79.18137,13.0799],[79.18066,13.08424],[79.18766,13.08346],[79.18855,13.0879],[79.19069,13.08873],[79.1931,13.08229],[79.19829,13.08134],[79.20086,13.08883],[79.20964,13.09272],[79.21277,13.09244],[79.22461,13.1008],[79.23443,13.10523],[79.23427,13.11466],[79.23841,13.11855],[79.23038,13.12637],[79.22937,13.13158],[79.23287,13.13937],[79.22829,13.13998],[79.22315,13.14356],[79.22197,13.14624],[79.21922,13.14562],[79.21599,13.14781],[79.21003,13.14846],[79.21469,13.15696],[79.21811,13.15685],[79.21811,13.15536],[79.22732,13.15562],[79.22561,13.15886],[79.22969,13.16199],[79.23493,13.17084],[79.23951,13.17197],[79.24269,13.171],[79.24111,13.15961],[79.24312,13.15858],[79.24421,13.15274],[79.24208,13.14963],[79.24339,13.15115],[79.24496,13.14882],[79.24244,13.14795],[79.24018,13.14437],[79.24527,13.13828],[79.25391,13.14577],[79.2547,13.14919],[79.25221,13.15772],[79.25327,13.16026],[79.25746,13.16074],[79.25928,13.15887],[79.26037,13.15956],[79.26027,13.15214],[79.26167,13.15187],[79.26209,13.14904],[79.2674,13.14967],[79.26975,13.15375],[79.27454,13.15567],[79.27736,13.15622],[79.28034,13.15287],[79.28402,13.12277],[79.28567,13.12376],[79.28874,13.12199],[79.3044,13.12662],[79.31246,13.12614],[79.29926,13.11866],[79.29877,13.11571],[79.30154,13.11366],[79.29584,13.11237],[79.29431,13.1096],[79.29815,13.10696],[79.30169,13.10778],[79.30719,13.10552],[79.30931,13.10781],[79.30991,13.11201],[79.31615,13.11163],[79.31903,13.11333],[79.31192,13.11657],[79.3213,13.11702],[79.32424,13.11854],[79.31867,13.12347],[79.32677,13.12608],[79.32902,13.13052],[79.33962,13.13045],[79.34131,13.13682],[79.34464,13.13667],[79.34356,13.13102],[79.34514,13.12913],[79.34511,13.12127],[79.3536,13.12053],[79.3605,13.12354],[79.36175,13.12875],[79.36516,13.13067],[79.36552,13.13393],[79.36339,13.13897],[79.36114,13.13864],[79.35996,13.15197],[79.35746,13.15594],[79.35612,13.16458],[79.36342,13.16595],[79.37011,13.16281],[79.38004,13.16293],[79.3806,13.16896],[79.37924,13.17151],[79.36952,13.17291],[79.3727,13.17884],[79.37555,13.1777],[79.38228,13.17962],[79.38773,13.17753],[79.38561,13.18305],[79.37814,13.18471],[79.37281,13.18772],[79.37403,13.18926],[79.38739,13.1891],[79.39202,13.19238],[79.3958,13.19182],[79.3962,13.18868],[79.39906,13.18781],[79.40084,13.19166],[79.40919,13.19404],[79.41017,13.19051],[79.42114,13.18908],[79.42146,13.1906],[79.4262,13.19049],[79.43843,13.18818],[79.43729,13.19106],[79.43315,13.19252],[79.43238,13.19697],[79.43566,13.19721],[79.43956,13.20589],[79.44385,13.20778],[79.44119,13.20827],[79.43622,13.21274],[79.43738,13.21955],[79.43947,13.21968],[79.43971,13.21764],[79.44853,13.21569],[79.4538,13.21694],[79.45329,13.23849],[79.44149,13.23799],[79.43882,13.23436],[79.44,13.2306],[79.43087,13.22985],[79.42987,13.23121],[79.43507,13.23223],[79.43979,13.23586],[79.43149,13.23607],[79.43138,13.23828],[79.43813,13.24003],[79.43768,13.24289],[79.43243,13.24326],[79.42769,13.24155],[79.42459,13.24334],[79.42143,13.24213],[79.4185,13.24296],[79.41966,13.24572],[79.41704,13.24585],[79.42214,13.2494],[79.42264,13.25132],[79.41686,13.25168],[79.41617,13.26041],[79.41308,13.26295],[79.40847,13.26391],[79.40842,13.26527],[79.41142,13.26465],[79.41396,13.26641],[79.41759,13.27177],[79.43373,13.27499],[79.43472,13.28907],[79.43576,13.29128],[79.44631,13.29162],[79.44542,13.30125],[79.43054,13.30025],[79.42004,13.28955],[79.41883,13.28975],[79.41841,13.29352],[79.41958,13.29523],[79.41577,13.29958],[79.4053,13.29757],[79.40217,13.29971],[79.39412,13.29993],[79.38984,13.29743],[79.38866,13.30978],[79.38189,13.30749],[79.38349,13.31326],[79.38781,13.31805],[79.39347,13.3176],[79.39576,13.31572],[79.39783,13.31736],[79.40202,13.31735],[79.4019,13.32148],[79.39876,13.32167],[79.39836,13.3302],[79.40248,13.33023],[79.40536,13.33504],[79.41254,13.33295],[79.41291,13.32993],[79.41472,13.33003],[79.42099,13.33629],[79.43167,13.33671],[79.43259,13.34539],[79.43573,13.34814],[79.43543,13.35171],[79.44766,13.34632],[79.45311,13.33988],[79.45626,13.33857],[79.46407,13.34172],[79.46544,13.33873],[79.47281,13.33924],[79.47457,13.34109],[79.48049,13.34],[79.49971,13.34779],[79.49738,13.33204],[79.51008,13.33417],[79.51108,13.34197],[79.52179,13.34181],[79.52594,13.34439],[79.53557,13.33819],[79.53731,13.33865],[79.54185,13.3273],[79.53936,13.32188],[79.54411,13.31678],[79.54217,13.31024],[79.53486,13.30137],[79.53508,13.29802],[79.53826,13.2959],[79.5371,13.29443],[79.54123,13.29244],[79.53878,13.28785],[79.53515,13.28509],[79.53366,13.27908],[79.5346,13.2754],[79.54002,13.27236],[79.55841,13.27272],[79.57349,13.25936],[79.57927,13.25779],[79.58257,13.25734],[79.59131,13.26143],[79.59384,13.26641],[79.5946,13.27174],[79.59266,13.27506],[79.59489,13.27605],[79.59606,13.28485],[79.60579,13.2882],[79.60869,13.28749],[79.60609,13.27955],[79.61412,13.2827],[79.61955,13.27956],[79.62768,13.27015],[79.63164,13.2697],[79.63204,13.2713],[79.63406,13.27157],[79.63155,13.27719],[79.63436,13.27743],[79.63326,13.28238],[79.63805,13.28425],[79.63834,13.28744],[79.63948,13.277],[79.64127,13.27559],[79.64248,13.29015],[79.65179,13.29183],[79.65458,13.28563],[79.65783,13.28385],[79.65891,13.28669],[79.66387,13.28977],[79.66664,13.28598],[79.66471,13.28194],[79.66539,13.27872],[79.66857,13.28114],[79.67134,13.28012],[79.67425,13.28177],[79.67814,13.29741],[79.68261,13.29582],[79.68126,13.28799],[79.68319,13.28819],[79.68943,13.28303],[79.69046,13.28033],[79.69393,13.2798],[79.69367,13.27348],[79.68881,13.27087],[79.69082,13.26768],[79.69426,13.2705],[79.69575,13.26728],[79.6933,13.26309],[79.69172,13.26355],[79.69112,13.26098],[79.68913,13.26094],[79.68951,13.26374],[79.68771,13.2667],[79.68057,13.26456],[79.68026,13.26224],[79.67829,13.26165],[79.68024,13.25276],[79.68427,13.24443],[79.68914,13.23983],[79.69268,13.24065],[79.69594,13.23856],[79.69307,13.24329],[79.69634,13.24325],[79.69825,13.25099],[79.70098,13.25303],[79.70327,13.2511],[79.70912,13.25104],[79.70897,13.24808],[79.71255,13.24467],[79.71124,13.2425],[79.71407,13.23573],[79.7061,13.2342],[79.70224,13.22415],[79.70271,13.2224],[79.70794,13.22151],[79.71186,13.21927],[79.71196,13.21777],[79.71641,13.21642],[79.71839,13.21652],[79.72165,13.22346],[79.72588,13.22166],[79.7314,13.22245],[79.73028,13.23253],[79.73281,13.23327],[79.73264,13.23688],[79.73732,13.23653],[79.73908,13.2295],[79.74277,13.22829],[79.74247,13.22526],[79.74797,13.22167],[79.751,13.21642],[79.75008,13.20799],[79.75499,13.20648],[79.75984,13.20744],[79.76096,13.21526],[79.76425,13.21911],[79.76756,13.21806],[79.76884,13.21931],[79.76977,13.21771],[79.77394,13.21916],[79.77292,13.21546],[79.77548,13.21531],[79.77796,13.22359],[79.78115,13.22339],[79.78478,13.2279],[79.79309,13.2293],[79.79325,13.22641],[79.79449,13.22632],[79.79473,13.2421],[79.78721,13.24518],[79.7816,13.25159],[79.76119,13.25752],[79.75164,13.26537],[79.74808,13.27099],[79.74172,13.27095],[79.74025,13.27376],[79.73504,13.27594],[79.73281,13.28214],[79.73065,13.28287],[79.73404,13.28902],[79.73924,13.29135],[79.74423,13.28859],[79.75242,13.29166],[79.75675,13.29529],[79.76028,13.30161],[79.76121,13.30707],[79.76186,13.31264],[79.76027,13.3182],[79.76814,13.31392],[79.77042,13.30922],[79.7752,13.30598],[79.78023,13.30615],[79.78559,13.29666],[79.79173,13.29352],[79.80164,13.3005],[79.80476,13.30744],[79.8036,13.31098],[79.80788,13.31413],[79.8089,13.31725],[79.81736,13.31855],[79.82919,13.31751],[79.83609,13.31422],[79.84805,13.3166],[79.85326,13.31596],[79.85355,13.32071],[79.86281,13.31692],[79.86807,13.33107],[79.87763,13.32428],[79.88085,13.32478],[79.8829,13.32332],[79.8835,13.33286],[79.90381,13.34043],[79.90516,13.34353],[79.91038,13.34727],[79.91485,13.34814],[79.9149,13.35156],[79.91336,13.35224],[79.91681,13.35808],[79.91597,13.35987],[79.92529,13.35836],[79.92921,13.35562],[79.9313,13.35151],[79.93311,13.35192],[79.93377,13.35448],[79.93512,13.35411],[79.93591,13.35644],[79.93801,13.35552],[79.94099,13.36128],[79.9429,13.36127],[79.9422,13.36356],[79.94565,13.36374],[79.94542,13.36822],[79.94947,13.37548],[79.94919,13.37767],[79.94505,13.38178],[79.94766,13.38173],[79.94822,13.38324],[79.94999,13.37981],[79.9539,13.37712],[79.95805,13.37918],[79.96275,13.39136],[79.96145,13.3956],[79.95623,13.39714],[79.94436,13.39687],[79.94128,13.40061],[79.9457,13.40773],[79.94138,13.41015],[79.94221,13.4128],[79.93839,13.4128],[79.93774,13.41489],[79.93457,13.41645],[79.94184,13.41672],[79.93961,13.42503],[79.94818,13.42503],[79.94948,13.42375],[79.95255,13.42584],[79.95572,13.42521],[79.95507,13.42238],[79.95665,13.42219],[79.95749,13.42356],[79.96197,13.42338],[79.96579,13.42657],[79.97073,13.4273],[79.97334,13.42967],[79.97287,13.43972],[79.97111,13.44026],[79.97242,13.46909],[79.9824,13.47046],[79.98408,13.47958],[80.00749,13.47864],[80.00762,13.48135],[80.01352,13.48519],[80.01584,13.48903],[80.01444,13.49612],[80.0159,13.49795],[80.03,13.49819],[80.04662,13.49368],[80.04842,13.51225],[80.03552,13.51831],[80.02719,13.5137],[80.01952,13.51925],[80.01765,13.52956],[80.00799,13.52581],[80.00052,13.52568],[79.9986,13.54272],[80.01689,13.54718],[80.02177,13.54495],[80.0239,13.54604],[80.02844,13.53882],[80.0398,13.53901],[80.04304,13.53745],[80.05693,13.53664],[80.06275,13.54536],[80.0684,13.54461],[80.08126,13.54975],[80.08864,13.5354],[80.08284,13.5328],[80.07714,13.5268],[80.07819,13.48881],[80.10306,13.48695],[80.10093,13.48985],[80.10516,13.49335],[80.10821,13.48892],[80.11151,13.49328],[80.11277,13.50595],[80.11884,13.50369],[80.12674,13.50463],[80.13171,13.50144],[80.13921,13.50427],[80.14553,13.49949],[80.14514,13.49142],[80.15384,13.49089],[80.16304,13.48823],[80.17712,13.49117],[80.18653,13.49065],[80.20995,13.48628],[80.2106,13.49048],[80.2146,13.49027],[80.21383,13.4861],[80.22589,13.48507],[80.2352,13.474],[80.24097,13.47331],[80.24181,13.47065],[80.25111,13.50277],[80.26405,13.56264],[80.26854,13.56454],[80.24257,13.61644],[80.23728,13.63596],[80.23365,13.65845],[80.23387,13.69676],[80.23753,13.72386],[80.25366,13.78091],[80.25309,13.78592],[80.25033,13.79694],[80.24284,13.81225],[80.22659,13.85499],[80.22088,13.87495],[80.21912,13.87823],[80.21753,13.87663],[80.21837,13.88052],[80.19816,13.91717],[80.18139,13.96167],[80.14978,14.03177],[80.14303,14.05677],[80.1421,14.07465],[80.13614,14.08539],[80.13378,14.09691],[80.12932,14.12558],[80.12641,14.16432],[80.12702,14.19219],[80.13105,14.22737],[80.13011,14.23116],[80.1317,14.23185],[80.13869,14.25349],[80.13903,14.26917],[80.14292,14.28661],[80.15267,14.31421],[80.16513,14.34065],[80.17165,14.37342],[80.17498,14.44342],[80.17314,14.44315],[80.17497,14.44464],[80.17542,14.44814],[80.1729,14.44921],[80.17549,14.44982],[80.17874,14.492],[80.17875,14.49438],[80.17728,14.49498],[80.17881,14.49584],[80.18542,14.547],[80.19466,14.57762],[80.19551,14.58583],[80.1931,14.59318],[80.17817,14.60319],[80.17118,14.61166],[80.15127,14.66812],[80.14207,14.70351],[80.13773,14.70419],[80.13123,14.72109],[80.12119,14.73064],[80.11787,14.73601],[80.11433,14.73651],[80.11152,14.74107],[80.09772,14.77955],[80.08875,14.82364],[80.08437,14.88325],[80.06749,14.93239],[80.05281,15.01175],[80.04698,15.08018],[80.05443,15.1185],[80.0615,15.14144],[80.07039,15.16534],[80.07965,15.18109],[80.07603,15.17923],[80.07085,15.1826],[80.0784,15.18951],[80.0822,15.19183],[80.08361,15.19112],[80.08903,15.21193],[80.08889,15.23573],[80.08799,15.23769],[80.08712,15.23694],[80.08843,15.22394],[80.08343,15.22241],[80.08749,15.2245],[80.08404,15.23033],[80.08213,15.23092],[80.08071,15.24104],[80.08183,15.24921],[80.08271,15.24751],[80.084,15.24841],[80.08675,15.23894],[80.08816,15.23882],[80.08239,15.25268],[80.08236,15.26323],[80.08621,15.28188],[80.08474,15.28334],[80.08642,15.2824],[80.09838,15.31148],[80.10251,15.31567],[80.10586,15.32404],[80.11025,15.34547],[80.12183,15.36787],[80.14181,15.39546],[80.18311,15.44196],[80.20012,15.46502],[80.20496,15.47389],[80.20798,15.48045],[80.20615,15.48436],[80.20816,15.48368],[80.21052,15.49351],[80.20383,15.4946],[80.19885,15.49314],[80.20143,15.50076],[80.1988,15.503],[80.20171,15.50154],[80.2032,15.503],[80.20305,15.5061],[80.19638,15.50423],[80.19423,15.50501],[80.19692,15.50514],[80.19585,15.50712],[80.19923,15.50556],[80.20361,15.50794],[80.20253,15.51157],[80.20479,15.50824],[80.20959,15.51147],[80.20213,15.5154],[80.21103,15.51202],[80.2128,15.5153],[80.21534,15.51574],[80.21452,15.51825],[80.21598,15.51801],[80.21605,15.51959],[80.21367,15.51964],[80.21296,15.52203],[80.21431,15.52143],[80.214,15.52619],[80.2177,15.52561],[80.21849,15.52333],[80.22479,15.53348],[80.22334,15.53604],[80.22573,15.54001],[80.2232,15.54082],[80.21973,15.53834],[80.22363,15.54117],[80.22603,15.54058],[80.22602,15.54795],[80.22677,15.54932],[80.22791,15.54681],[80.22683,15.55378],[80.22903,15.5689],[80.22468,15.56827],[80.22684,15.56958],[80.22637,15.57096],[80.22974,15.57056],[80.23329,15.5842],[80.232,15.58621],[80.23087,15.58425],[80.22923,15.58709],[80.23205,15.58711],[80.23104,15.58911],[80.23376,15.5863],[80.23506,15.59059],[80.23416,15.5925],[80.22762,15.59211],[80.22714,15.59319],[80.22659,15.58923],[80.22552,15.59306],[80.22238,15.58268],[80.22527,15.59354],[80.22413,15.59497],[80.22866,15.5941],[80.23064,15.59712],[80.23325,15.5962],[80.23473,15.59905],[80.22781,15.60284],[80.22561,15.60096],[80.22063,15.60092],[80.22905,15.60425],[80.23167,15.6028],[80.23342,15.60411],[80.23239,15.60272],[80.23369,15.60147],[80.23481,15.60301],[80.23721,15.60067],[80.24131,15.61132],[80.24145,15.61339],[80.23994,15.61364],[80.24225,15.61425],[80.24502,15.62032],[80.23973,15.62055],[80.23972,15.62164],[80.24273,15.62184],[80.24279,15.62487],[80.24279,15.62241],[80.24394,15.62218],[80.24395,15.62485],[80.24533,15.62156],[80.24787,15.62579],[80.24681,15.62733],[80.24571,15.62523],[80.24343,15.62543],[80.24314,15.63011],[80.24776,15.62721],[80.24913,15.62795],[80.26959,15.66559],[80.27649,15.67408],[80.28416,15.68777],[80.31068,15.71804],[80.34561,15.75121],[80.38309,15.77732],[80.42769,15.80265],[80.42856,15.80468],[80.43306,15.80545],[80.4968,15.83583],[80.52799,15.84581],[80.53646,15.8523],[80.54395,15.85147],[80.57453,15.86244],[80.60473,15.87026],[80.63539,15.87513],[80.64024,15.87724],[80.67666,15.88027],[80.67904,15.88145],[80.68061,15.8854],[80.68592,15.88152],[80.72735,15.87886],[80.74847,15.87404],[80.76743,15.86474],[80.77388,15.86627],[80.77494,15.86373],[80.77848,15.86446],[80.78169,15.8631],[80.79406,15.85362],[80.80702,15.84045],[80.81259,15.83113],[80.81266,15.81395],[80.81561,15.8107],[80.80948,15.81174],[80.80246,15.8161],[80.80091,15.80579],[80.79144,15.82066],[80.79254,15.81562],[80.79068,15.81773],[80.7912,15.82242],[80.7887,15.83237],[80.78582,15.83075],[80.7804,15.83869],[80.78027,15.84164],[80.77963,15.8353],[80.78947,15.81509],[80.79425,15.80134],[80.80418,15.78429],[80.80726,15.77045],[80.8116,15.76256],[80.81363,15.74911],[80.81753,15.74936],[80.81775,15.7404],[80.81577,15.73317],[80.81707,15.72715],[80.81532,15.73284],[80.81645,15.74134],[80.81455,15.73927],[80.81328,15.72867],[80.81558,15.72085],[80.82235,15.71063],[80.81671,15.71699],[80.81358,15.72518],[80.81143,15.72706],[80.81024,15.73526],[80.79855,15.74371],[80.79122,15.75363],[80.79082,15.76075],[80.79242,15.7672],[80.79132,15.76635],[80.79087,15.76794],[80.78929,15.76387],[80.79036,15.76867],[80.79821,15.77384],[80.79965,15.77677],[80.79046,15.76986],[80.78772,15.76426],[80.78843,15.75723],[80.79016,15.75267],[80.79808,15.74242],[80.80923,15.73497],[80.80964,15.72193],[80.81571,15.71342],[80.82152,15.70934],[80.8257,15.70788],[80.82898,15.70942],[80.83184,15.7055],[80.85002,15.70586],[80.92574,15.71872],[80.932,15.72368],[80.93484,15.71754],[80.93466,15.71448],[80.93722,15.7144],[80.96208,15.72707],[80.96237,15.73357],[80.96427,15.73417],[80.96706,15.73164],[80.9715,15.73269],[81.00846,15.75293],[81.01015,15.7565],[81.00951,15.76184],[81.00425,15.76047],[81.00598,15.75865],[81.00478,15.75677],[80.99932,15.75887],[80.99845,15.76969],[81.00496,15.76574],[81.01194,15.76599],[81.01445,15.77127],[81.00969,15.78085],[81.00912,15.78864],[81.00725,15.79006],[81.00905,15.79461],[81.00824,15.79741],[81.01134,15.80152],[81.01604,15.79784],[81.01863,15.7922],[81.02056,15.79301],[81.01698,15.80729],[81.01294,15.81333],[81.00718,15.81667],[81.00578,15.82815],[81.0034,15.83417],[81.00477,15.8378],[81.01219,15.84542],[81.01491,15.85057],[81.04082,15.87459],[81.05664,15.89416],[81.05537,15.89721],[81.05812,15.89678],[81.0715,15.91111],[81.10872,15.94538],[81.13255,15.96208],[81.13486,15.9647],[81.13344,15.96977],[81.13485,15.97216],[81.14144,15.96875],[81.14805,15.9737],[81.14837,15.97907],[81.14518,15.98679],[81.14272,15.99941],[81.14408,16.00059],[81.14554,16.01295],[81.14962,16.02435],[81.17672,16.07189],[81.19137,16.10282],[81.19764,16.12344],[81.20149,16.14393],[81.20015,16.14454],[81.20239,16.14692],[81.20266,16.15687],[81.20445,16.15831],[81.20613,16.17127],[81.20928,16.18089],[81.20844,16.18582],[81.20636,16.18578],[81.21022,16.19277],[81.21376,16.20722],[81.23154,16.23743],[81.24804,16.25784],[81.24619,16.25887],[81.24875,16.25856],[81.26373,16.27344],[81.26506,16.27814],[81.27,16.27907],[81.30535,16.30353],[81.34161,16.32206],[81.39072,16.3396],[81.39379,16.34247],[81.39856,16.34045],[81.42805,16.34715],[81.48366,16.35313],[81.48724,16.35507],[81.49139,16.35274],[81.531,16.35242],[81.53754,16.35147],[81.54076,16.3474],[81.58017,16.34437],[81.62732,16.33798],[81.67551,16.32869],[81.69064,16.32747],[81.69952,16.32417],[81.70706,16.31782],[81.71921,16.31558],[81.71912,16.31128],[81.71656,16.30728],[81.72079,16.30686],[81.73554,16.3161],[81.74721,16.32116],[81.74937,16.32037],[81.78708,16.33819],[81.78667,16.34033],[81.82275,16.35873],[81.85881,16.37542],[81.87081,16.37979],[81.87351,16.37946],[81.87815,16.38263],[81.93941,16.39538],[81.94867,16.3962],[81.95773,16.39237],[81.96359,16.4027],[81.97045,16.40756],[81.99334,16.41932],[81.9983,16.42025],[82.08626,16.46826],[82.14073,16.49367],[82.20174,16.52516],[82.23119,16.54081],[82.2297,16.54343],[82.23491,16.54601],[82.24457,16.55003],[82.24853,16.54945],[82.26707,16.55372],[82.28719,16.55374],[82.29948,16.55594],[82.31186,16.56151],[82.31285,16.56349],[82.31367,16.55874],[82.31344,16.56482],[82.31067,16.56774],[82.30864,16.56696],[82.3097,16.56465],[82.30537,16.5651],[82.30087,16.56239],[82.30147,16.5673],[82.29915,16.57224],[82.29982,16.5693],[82.29826,16.56713],[82.30039,16.5672],[82.29877,16.56105],[82.29964,16.55819],[82.29815,16.5592],[82.29705,16.55708],[82.28999,16.55487],[82.29032,16.55608],[82.28099,16.55865],[82.29163,16.55981],[82.2937,16.55805],[82.29591,16.56461],[82.29474,16.56666],[82.29738,16.56586],[82.29711,16.5676],[82.29368,16.56758],[82.29515,16.56481],[82.29346,16.56305],[82.28269,16.56234],[82.27688,16.55939],[82.27236,16.55991],[82.26974,16.56291],[82.26691,16.56098],[82.26308,16.56302],[82.27656,16.57093],[82.28583,16.57338],[82.28752,16.57298],[82.28728,16.57096],[82.29882,16.58644],[82.29946,16.59201],[82.29533,16.59836],[82.29464,16.60254],[82.2849,16.59999],[82.28638,16.60613],[82.29042,16.60975],[82.287,16.61508],[82.2878,16.61721],[82.28523,16.62085],[82.28682,16.6215],[82.28426,16.62603],[82.29562,16.62602],[82.29772,16.63396],[82.29993,16.63634],[82.29601,16.62603],[82.30144,16.63387],[82.30037,16.62841],[82.30141,16.62809],[82.30449,16.63674],[82.30297,16.62979],[82.30373,16.63071],[82.30418,16.62879],[82.3075,16.63993],[82.30856,16.63035],[82.30673,16.62311],[82.30846,16.62461],[82.30896,16.62952],[82.30971,16.62687],[82.31077,16.62867],[82.31214,16.62708],[82.31434,16.63246],[82.30997,16.6393],[82.30875,16.6534],[82.31282,16.66801],[82.31241,16.65328],[82.31716,16.64269],[82.32104,16.64124],[82.31981,16.63902],[82.32147,16.63145],[82.3201,16.62652],[82.32421,16.62145],[82.32551,16.61685],[82.32555,16.61041],[82.3235,16.60441],[82.32497,16.6022],[82.32422,16.60012],[82.32249,16.6002],[82.32262,16.59577],[82.31796,16.58718],[82.31407,16.58667],[82.31072,16.59273],[82.30925,16.59263],[82.3165,16.58325],[82.31482,16.58111],[82.31782,16.58171],[82.31569,16.57896],[82.31462,16.57979],[82.31359,16.57486],[82.31887,16.57683],[82.32553,16.59707],[82.32905,16.61448],[82.32365,16.62908],[82.32276,16.6419],[82.31697,16.65863],[82.31729,16.66227],[82.3227,16.67304],[82.34555,16.69651],[82.35668,16.70389],[82.36534,16.70665],[82.36323,16.70959],[82.35988,16.71084],[82.36002,16.70705],[82.35496,16.70428],[82.35629,16.70901],[82.35374,16.71362],[82.34963,16.71605],[82.34645,16.71564],[82.34579,16.71462],[82.35169,16.71331],[82.3506,16.71112],[82.35216,16.71139],[82.354,16.70563],[82.34337,16.69732],[82.34317,16.69511],[82.33782,16.68976],[82.32768,16.68501],[82.33538,16.69008],[82.3338,16.69674],[82.33469,16.69908],[82.34118,16.70527],[82.34493,16.70455],[82.3389,16.71471],[82.33334,16.71673],[82.33927,16.71612],[82.34199,16.72975],[82.34298,16.75096],[82.34434,16.75101],[82.34519,16.75409],[82.35854,16.81402],[82.35847,16.82418],[82.36527,16.87599],[82.36647,16.90835],[82.35968,16.95832],[82.35565,16.96779],[82.34951,16.97691],[82.33919,16.98612],[82.33037,16.98957],[82.32669,16.98876],[82.32539,16.98624],[82.32878,16.98256],[82.33317,16.98078],[82.34019,16.96695],[82.35215,16.96064],[82.35771,16.95003],[82.36334,16.91732],[82.36197,16.89753],[82.36323,16.8892],[82.36157,16.85445],[82.35937,16.85518],[82.35487,16.85124],[82.35144,16.85187],[82.34942,16.8505],[82.33607,16.85656],[82.32131,16.85335],[82.32209,16.85249],[82.31854,16.85047],[82.3204,16.84897],[82.31842,16.84938],[82.31719,16.84563],[82.31423,16.84588],[82.31122,16.85482],[82.30796,16.85778],[82.30601,16.8557],[82.30726,16.85812],[82.30158,16.86264],[82.29425,16.86502],[82.28226,16.86483],[82.28396,16.86974],[82.28188,16.87196],[82.27636,16.86999],[82.27522,16.86752],[82.27407,16.86893],[82.27275,16.86806],[82.26599,16.86982],[82.26307,16.87594],[82.26374,16.87977],[82.25982,16.88445],[82.25547,16.88526],[82.25139,16.88136],[82.24953,16.87761],[82.25088,16.8767],[82.24907,16.87599],[82.25024,16.88275],[82.24899,16.89413],[82.24706,16.89995],[82.24144,16.90804],[82.24304,16.91784],[82.24671,16.91785],[82.26431,16.93818],[82.27115,16.9413],[82.27363,16.94703],[82.27788,16.9507],[82.27346,16.94759],[82.27055,16.94142],[82.26493,16.93891],[82.26966,16.94172],[82.27153,16.9472],[82.27712,16.9517],[82.27138,16.94795],[82.2694,16.95009],[82.26864,16.95654],[82.27053,16.95717],[82.26981,16.95997],[82.27431,16.97007],[82.27596,16.98124],[82.27971,16.9847],[82.27981,16.99424],[82.28676,17.01253],[82.30249,17.03813],[82.31931,17.05785],[82.44309,17.17481],[82.50027,17.22019],[82.56194,17.26157],[82.67638,17.32873],[82.72635,17.35488],[82.81664,17.39401],[82.82124,17.39796],[82.88866,17.42673],[82.95261,17.45733],[82.97478,17.46611],[82.99733,17.48257],[83.01763,17.50596],[83.03255,17.5144],[83.06516,17.52504],[83.1127,17.54575],[83.14875,17.5572],[83.21647,17.5955],[83.23853,17.62995],[83.24828,17.63765],[83.25941,17.64316],[83.26106,17.64717],[83.25989,17.64952],[83.28222,17.66034],[83.28515,17.66633],[83.29487,17.67452],[83.29543,17.68133],[83.29753,17.68527],[83.29691,17.69332],[83.30438,17.69894],[83.30598,17.69749],[83.30602,17.701],[83.31821,17.71],[83.33775,17.71947],[83.3464,17.72615],[83.34696,17.72796],[83.34422,17.731],[83.34395,17.73764],[83.35054,17.74621],[83.35071,17.75034],[83.35459,17.75598],[83.35966,17.76104],[83.37355,17.76837],[83.3858,17.77735],[83.38721,17.77976],[83.38512,17.78359],[83.38902,17.79024],[83.39826,17.80009],[83.41087,17.80936],[83.41145,17.81371],[83.41618,17.82255],[83.41625,17.83368],[83.41231,17.83592],[83.41127,17.83948],[83.4077,17.83955],[83.4071,17.84103],[83.41088,17.84202],[83.40961,17.8436],[83.41158,17.84384],[83.4215,17.85783],[83.44372,17.87278],[83.44753,17.88025],[83.45564,17.88763],[83.45532,17.89634],[83.45865,17.90109],[83.47043,17.91205],[83.48786,17.92419],[83.51302,17.93727],[83.51457,17.9411],[83.52503,17.94728],[83.52008,17.95149],[83.52489,17.94752],[83.53175,17.95113],[83.53236,17.95419],[83.5436,17.96303],[83.55079,17.97582],[83.5583,17.98243],[83.561,17.98849],[83.55906,17.99119],[83.55885,17.99659],[83.56937,18.0118],[83.60475,18.03728],[83.63289,18.05442],[83.66049,18.07582],[83.70733,18.10603],[83.75059,18.12925],[83.80526,18.15404],[83.8058,18.15545],[83.79832,18.16066],[83.80028,18.16106],[83.79652,18.16437],[83.79497,18.1684],[83.80154,18.16248],[83.80168,18.16448],[83.80272,18.16279],[83.80428,18.16336],[83.80352,18.15996],[83.80993,18.15603],[83.86039,18.17428],[83.87239,18.1824],[83.87846,18.19027],[83.88817,18.19549],[83.91368,18.20468],[83.93588,18.20904],[83.99716,18.24119],[84.00526,18.24676],[84.07096,18.27659],[84.08211,18.28654],[84.07879,18.28774],[84.08252,18.28793],[84.10042,18.29629],[84.12686,18.31337],[84.12914,18.31706],[84.12638,18.33391],[84.1269,18.34385],[84.13073,18.34529],[84.15065,18.37727],[84.2105,18.43391],[84.21529,18.43895],[84.21391,18.43945],[84.21498,18.4413],[84.21632,18.4398],[84.23123,18.45478],[84.28294,18.49953],[84.32295,18.52874],[84.35473,18.55491],[84.35751,18.56359],[84.35542,18.5663],[84.3566,18.57205],[84.36669,18.59088],[84.38505,18.61035],[84.43985,18.6595],[84.4372,18.65795],[84.44032,18.66144],[84.442,18.67182],[84.44863,18.6855],[84.46966,18.71443],[84.50516,18.75207],[84.53419,18.77417],[84.5515,18.79049],[84.55409,18.79605],[84.5541,18.80384],[84.55784,18.81775],[84.56259,18.8249],[84.57491,18.83765],[84.57669,18.84591],[84.5871,18.86744],[84.6049,18.89112],[84.63673,18.92225],[84.671,18.95248],[84.68448,18.96747],[84.68437,18.96892],[84.67749,18.96695],[84.67645,18.96791],[84.68695,18.97087],[84.7077,18.99824],[84.7116,19.00711],[84.71982,19.01572],[84.76146,19.07912],[84.75109,19.08444],[84.7082,19.11572],[84.7028,19.11786],[84.70144,19.12219],[84.70252,19.12586],[84.69784,19.12644],[84.70612,19.14103],[84.70036,19.14297],[84.70126,19.14462],[84.70005,19.14439],[84.70118,19.14706],[84.71052,19.14646],[84.71485,19.15232],[84.71201,19.15828],[84.70998,19.15967],[84.70473,19.1593],[84.7034,19.16117],[84.69692,19.16076],[84.69622,19.15945],[84.6929,19.16121],[84.68435,19.15999],[84.68073,19.16528],[84.67778,19.16639]],[[84.34953,18.79096],[84.35327,18.78989],[84.35171,18.78577],[84.34953,18.79096]],[[84.33888,18.78994],[84.33936,18.77869],[84.3363,18.78287],[84.32927,18.7872],[84.33111,18.78954],[84.33888,18.78994]],[[82.21502,16.75572],[82.21892,16.76023],[82.22547,16.7637],[82.22961,16.76236],[82.22758,16.75689],[82.21783,16.74331],[82.21879,16.73999],[82.22824,16.7304],[82.23485,16.72927],[82.2715,16.73151],[82.28851,16.73491],[82.29688,16.75312],[82.3015,16.75518],[82.30553,16.75253],[82.30885,16.74551],[82.31062,16.73504],[82.30264,16.71826],[82.293,16.70966],[82.28417,16.70533],[82.26128,16.70192],[82.25437,16.70362],[82.23524,16.71677],[82.22327,16.72186],[82.21037,16.71976],[82.20141,16.72052],[82.18691,16.72833],[82.18245,16.73711],[82.18814,16.7401],[82.19656,16.73922],[82.20459,16.74848],[82.21502,16.75572]],[[79.84291,13.32465],[79.84567,13.32758],[79.84765,13.32435],[79.85005,13.32374],[79.84337,13.32167],[79.84291,13.32465]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-AR","area_level":"State","area_name":"Arunachal Pradesh","geometry_source":"SOI_States","same_as":"LGD/12/State"},"geometry":{"type":"Polygon","coordinates":[[[96.1535,29.37381],[96.14057,29.40205],[96.12076,29.41409],[96.10524,29.43001],[96.08926,29.45264],[96.08125,29.46108],[96.06732,29.46595],[96.05689,29.46494],[96.04275,29.46073],[96.03063,29.45334],[96.00882,29.42772],[95.99863,29.42072],[95.9767,29.41348],[95.94181,29.38765],[95.93273,29.3861],[95.91969,29.3871],[95.90352,29.39084],[95.86175,29.39512],[95.83844,29.3712],[95.83099,29.35883],[95.81113,29.3596],[95.80271,29.34942],[95.78213,29.34139],[95.78095,29.35576],[95.77688,29.36165],[95.76571,29.35635],[95.7595,29.3468],[95.75256,29.3442],[95.73722,29.3319],[95.72838,29.31863],[95.721,29.3127],[95.7056,29.30445],[95.68899,29.30461],[95.68453,29.29714],[95.67154,29.28235],[95.65983,29.27157],[95.64445,29.26332],[95.63148,29.25998],[95.62484,29.25235],[95.61926,29.2497],[95.608,29.25323],[95.59716,29.25985],[95.58303,29.26061],[95.57807,29.25387],[95.5722,29.22281],[95.56374,29.21667],[95.54091,29.21753],[95.52693,29.21566],[95.52697,29.20515],[95.53667,29.1692],[95.53072,29.13049],[95.51754,29.1336],[95.49673,29.14225],[95.48099,29.14307],[95.48108,29.12229],[95.47723,29.08708],[95.46645,29.06646],[95.44935,29.04415],[95.4403,29.0366],[95.42774,29.04112],[95.42122,29.04136],[95.41065,29.03052],[95.39873,29.03119],[95.38506,29.03527],[95.36825,29.03635],[95.34809,29.04114],[95.32244,29.05066],[95.30464,29.05966],[95.28792,29.06264],[95.27033,29.05849],[95.26007,29.05408],[95.24872,29.0614],[95.24202,29.06355],[95.24559,29.07632],[95.24172,29.11061],[95.19428,29.10798],[95.16631,29.10895],[95.10637,29.11891],[95.10194,29.12933],[95.09505,29.13959],[95.06739,29.1477],[95.03657,29.15209],[95.01644,29.15827],[94.99277,29.17076],[94.97982,29.17335],[94.97297,29.16593],[94.97528,29.15654],[94.98159,29.15156],[94.99949,29.15024],[95.01213,29.14695],[95.02245,29.13394],[95.01358,29.13018],[94.98833,29.13748],[94.97741,29.14286],[94.96665,29.15206],[94.95841,29.15639],[94.93252,29.15558],[94.91578,29.15207],[94.90753,29.1564],[94.89393,29.16927],[94.87867,29.17503],[94.86376,29.17647],[94.84354,29.17426],[94.81064,29.16196],[94.80413,29.16241],[94.79965,29.16589],[94.79561,29.17343],[94.79352,29.18854],[94.79641,29.19895],[94.79301,29.2153],[94.78141,29.23095],[94.7413,29.27474],[94.72292,29.29132],[94.70967,29.30009],[94.68861,29.31795],[94.66319,29.32925],[94.64507,29.33937],[94.63098,29.34124],[94.62771,29.33465],[94.62253,29.31428],[94.60463,29.28905],[94.59732,29.28355],[94.57872,29.27457],[94.57391,29.24965],[94.56518,29.23559],[94.55071,29.22075],[94.53441,29.21456],[94.51311,29.21282],[94.48673,29.21338],[94.45913,29.21755],[94.43812,29.22319],[94.42982,29.21962],[94.37488,29.18495],[94.36788,29.15842],[94.36249,29.1526],[94.3528,29.14811],[94.32962,29.1464],[94.30491,29.1476],[94.29366,29.14535],[94.27717,29.12595],[94.25777,29.1086],[94.2241,29.08783],[94.18606,29.02873],[94.17658,29.00703],[94.17013,28.97163],[94.16446,28.95746],[94.14985,28.94401],[94.07467,28.89093],[94.05367,28.87264],[94.03663,28.85113],[94.01336,28.84507],[94.00724,28.8407],[94.00255,28.82267],[93.9867,28.80376],[94.01051,28.77875],[94.0103,28.77279],[94.00659,28.76739],[93.97295,28.74322],[93.97118,28.71532],[93.96176,28.6936],[93.94673,28.67393],[93.93563,28.66611],[93.9214,28.66983],[93.90168,28.67942],[93.86168,28.70627],[93.8506,28.70704],[93.8385,28.70162],[93.83205,28.6951],[93.78414,28.66336],[93.75309,28.68279],[93.73988,28.68455],[93.68782,28.67439],[93.65616,28.65846],[93.61945,28.65339],[93.58887,28.65413],[93.53573,28.66066],[93.52241,28.65907],[93.51416,28.68172],[93.49615,28.68597],[93.48414,28.68314],[93.47796,28.67565],[93.4748,28.66067],[93.4705,28.65265],[93.46704,28.65465],[93.45275,28.67504],[93.44597,28.67472],[93.41422,28.6542],[93.40601,28.65128],[93.37937,28.64783],[93.36215,28.64225],[93.33917,28.64325],[93.33336,28.63908],[93.32792,28.6287],[93.32786,28.61723],[93.32492,28.60918],[93.31464,28.60941],[93.30749,28.60551],[93.30162,28.59895],[93.30146,28.59322],[93.30674,28.57925],[93.30462,28.57142],[93.29512,28.56088],[93.29112,28.55356],[93.28613,28.53958],[93.28205,28.51029],[93.27774,28.50131],[93.26836,28.49507],[93.24372,28.48414],[93.22857,28.4742],[93.21842,28.46047],[93.20957,28.45192],[93.1956,28.44506],[93.18045,28.43488],[93.19338,28.42361],[93.20974,28.41895],[93.22013,28.41371],[93.22422,28.4055],[93.2228,28.33529],[93.21796,28.32608],[93.20649,28.32155],[93.18939,28.31834],[93.1608,28.31919],[93.12918,28.32799],[93.12217,28.32838],[93.11929,28.32175],[93.11039,28.31214],[93.10083,28.3078],[93.09052,28.30587],[93.07194,28.30769],[93.04967,28.30266],[93.02234,28.31039],[93.02289,28.29007],[93.02827,28.26869],[93.0197,28.26099],[92.9973,28.22943],[92.98413,28.25239],[92.97593,28.25877],[92.96271,28.25856],[92.94354,28.24747],[92.92284,28.24],[92.91346,28.23182],[92.90568,28.21191],[92.89688,28.20515],[92.85263,28.1826],[92.8361,28.1791],[92.82558,28.17906],[92.81806,28.19115],[92.81852,28.21025],[92.81477,28.21104],[92.80603,28.20691],[92.78586,28.18651],[92.74608,28.1581],[92.70027,28.13577],[92.68795,28.1274],[92.67967,28.11919],[92.68037,28.11416],[92.67623,28.09846],[92.66534,28.06999],[92.66654,28.06375],[92.67024,28.06082],[92.68174,28.05726],[92.70039,28.04856],[92.72071,28.03051],[92.73534,28.01136],[92.74243,27.99259],[92.71356,27.95537],[92.68787,27.92669],[92.65771,27.9019],[92.65013,27.89989],[92.6267,27.89864],[92.61531,27.89454],[92.57106,27.83964],[92.55621,27.82436],[92.52771,27.84852],[92.51596,27.85254],[92.50336,27.85395],[92.49253,27.85055],[92.48376,27.84281],[92.46602,27.81778],[92.45627,27.81412],[92.44741,27.81451],[92.43195,27.82098],[92.42302,27.83068],[92.4163,27.83055],[92.38976,27.82143],[92.38538,27.8172],[92.38783,27.80593],[92.3851,27.80063],[92.35812,27.79828],[92.31922,27.78815],[92.31277,27.78849],[92.30202,27.80204],[92.29119,27.82491],[92.28484,27.84365],[92.28224,27.86185],[92.27754,27.86909],[92.26846,27.8721],[92.21866,27.86951],[92.15868,27.83958],[92.10948,27.80947],[92.05143,27.76393],[92.04335,27.76285],[92.00268,27.77225],[91.99353,27.77118],[91.98081,27.7643],[91.97152,27.7569],[91.96979,27.75],[91.9639,27.75103],[91.95768,27.74848],[91.94997,27.73736],[91.9277,27.72259],[91.92128,27.72363],[91.91253,27.73092],[91.90369,27.73223],[91.88829,27.72621],[91.8824,27.72724],[91.87785,27.7285],[91.87553,27.7345],[91.87129,27.73814],[91.86219,27.73969],[91.85901,27.7426],[91.85856,27.7481],[91.85203,27.75965],[91.85068,27.77616],[91.8446,27.78221],[91.83631,27.78518],[91.8308,27.79313],[91.82857,27.80535],[91.82415,27.81448],[91.82068,27.81596],[91.81244,27.80483],[91.78776,27.80776],[91.77887,27.8062],[91.76131,27.79996],[91.70983,27.80797],[91.70131,27.81309],[91.67221,27.84568],[91.66318,27.85295],[91.64036,27.85536],[91.6294,27.85978],[91.61726,27.85657],[91.60623,27.86013],[91.60228,27.86407],[91.59277,27.85413],[91.58913,27.8568],[91.58862,27.85988],[91.58486,27.86218],[91.57554,27.86429],[91.57375,27.85589],[91.56989,27.84801],[91.56522,27.85274],[91.55791,27.8563],[91.55463,27.85454],[91.55359,27.85136],[91.55402,27.8463],[91.56084,27.8388],[91.56232,27.82996],[91.56703,27.82595],[91.56737,27.82094],[91.56598,27.81861],[91.57263,27.8167],[91.5763,27.81186],[91.58103,27.81199],[91.58585,27.81732],[91.59185,27.81911],[91.59774,27.81801],[91.60036,27.82269],[91.60755,27.82389],[91.61464,27.82185],[91.62028,27.81561],[91.62831,27.81089],[91.63508,27.80294],[91.63378,27.79604],[91.63732,27.79407],[91.63645,27.78809],[91.63823,27.78385],[91.63785,27.78028],[91.63996,27.77402],[91.64484,27.76999],[91.6454,27.76338],[91.64307,27.76103],[91.6419,27.75228],[91.63504,27.74689],[91.63463,27.745],[91.63889,27.73581],[91.63411,27.72258],[91.63152,27.71981],[91.63192,27.71679],[91.62685,27.7158],[91.62998,27.70862],[91.62855,27.69943],[91.61967,27.69385],[91.60722,27.69081],[91.60425,27.68347],[91.59619,27.67978],[91.59378,27.67005],[91.58714,27.66694],[91.58252,27.66254],[91.57745,27.66257],[91.57307,27.66069],[91.57061,27.6508],[91.56407,27.6414],[91.56218,27.63185],[91.5647,27.62576],[91.58437,27.60822],[91.58262,27.60461],[91.57018,27.59449],[91.56631,27.58306],[91.57189,27.57958],[91.57193,27.57495],[91.57398,27.57252],[91.57985,27.5697],[91.58343,27.56545],[91.58215,27.55676],[91.58896,27.5517],[91.59373,27.54206],[91.60195,27.54063],[91.60405,27.54231],[91.60788,27.54189],[91.61229,27.54369],[91.61195,27.54118],[91.6145,27.53717],[91.61391,27.53181],[91.62211,27.52017],[91.62403,27.51415],[91.63421,27.50852],[91.63774,27.50425],[91.64496,27.50201],[91.65245,27.48304],[91.65923,27.48347],[91.67217,27.49317],[91.68487,27.49695],[91.68481,27.50044],[91.69506,27.50533],[91.70195,27.49885],[91.71356,27.49348],[91.71459,27.48727],[91.71775,27.4851],[91.71462,27.47454],[91.73274,27.46935],[91.74708,27.47256],[91.75224,27.47568],[91.76298,27.47498],[91.76808,27.47374],[91.76589,27.47067],[91.76697,27.46476],[91.78077,27.46604],[91.7887,27.4701],[91.79584,27.47095],[91.79815,27.47429],[91.80115,27.47234],[91.81365,27.47438],[91.8209,27.47203],[91.82525,27.46785],[91.84159,27.47683],[91.8486,27.48646],[91.8551,27.48214],[91.86083,27.48476],[91.86438,27.48289],[91.86905,27.4791],[91.8716,27.4708],[91.87619,27.47117],[91.87951,27.47455],[91.88768,27.47617],[91.89789,27.47122],[91.90828,27.47286],[91.91222,27.47178],[91.92312,27.47404],[91.93142,27.4659],[91.93722,27.46506],[91.94364,27.45974],[91.94682,27.4618],[91.95181,27.46005],[91.96154,27.46068],[91.97282,27.46722],[91.97888,27.46334],[91.98908,27.46752],[91.99468,27.47849],[92.00032,27.47904],[92.00702,27.47659],[92.01083,27.47972],[92.01489,27.47887],[92.01631,27.48077],[92.01937,27.47805],[92.01929,27.47269],[92.02339,27.46197],[92.02217,27.44802],[92.02643,27.44274],[92.0268,27.44012],[92.03234,27.44057],[92.033,27.43858],[92.03728,27.43895],[92.04254,27.43523],[92.04202,27.43102],[92.04423,27.42672],[92.04248,27.41854],[92.04369,27.41481],[92.04897,27.40704],[92.05375,27.40403],[92.05453,27.40105],[92.05847,27.39971],[92.05481,27.39606],[92.0544,27.38284],[92.04899,27.37676],[92.04824,27.36313],[92.05011,27.35706],[92.05503,27.3527],[92.05277,27.35129],[92.05961,27.34656],[92.06252,27.34221],[92.06458,27.32698],[92.07815,27.31304],[92.08896,27.30457],[92.0998,27.30237],[92.12017,27.29031],[92.12498,27.28202],[92.12458,27.27802],[92.11995,27.2718],[92.11313,27.27006],[92.10945,27.27085],[92.10347,27.26866],[92.09451,27.27126],[92.0869,27.26927],[92.07535,27.27819],[92.07203,27.27807],[92.07031,27.27624],[92.06707,27.27717],[92.0613,27.27253],[92.04517,27.26858],[92.04293,27.2616],[92.038,27.25842],[92.03844,27.25444],[92.04017,27.25582],[92.04591,27.25559],[92.0592,27.2518],[92.06251,27.2441],[92.06737,27.24203],[92.07257,27.23311],[92.07056,27.2276],[92.06928,27.21373],[92.06243,27.20893],[92.05838,27.19031],[92.05211,27.18492],[92.03709,27.1793],[92.03575,27.17507],[92.02672,27.16828],[92.02873,27.15732],[92.0324,27.15277],[92.03218,27.14605],[92.0353,27.14085],[92.0358,27.13491],[92.03253,27.12439],[92.02743,27.11846],[92.02313,27.10955],[92.03017,27.0998],[92.02961,27.09493],[92.03195,27.09202],[92.03081,27.07992],[92.03764,27.07033],[92.03681,27.06314],[92.04325,27.05663],[92.04412,27.05136],[92.05616,27.05142],[92.07052,27.04398],[92.07302,27.04452],[92.07645,27.04159],[92.08175,27.04082],[92.08308,27.03408],[92.0789,27.02872],[92.07842,27.01736],[92.09507,27.0123],[92.09478,27.00924],[92.10355,27.00398],[92.10418,26.99864],[92.10825,26.98979],[92.10497,26.98664],[92.10476,26.97991],[92.11811,26.97437],[92.12098,26.96036],[92.11355,26.95049],[92.11568,26.94499],[92.11861,26.94228],[92.11817,26.9386],[92.11516,26.93421],[92.11685,26.92547],[92.11521,26.91375],[92.11777,26.9089],[92.11675,26.89749],[92.11438,26.89358],[92.12002,26.88898],[92.16986,26.89165],[92.1948,26.88996],[92.23802,26.90579],[92.25519,26.90961],[92.27609,26.902],[92.30296,26.90714],[92.30266,26.92264],[92.36319,26.93454],[92.3671,26.92868],[92.39833,26.92469],[92.41201,26.94276],[92.42581,26.94104],[92.44747,26.95881],[92.49686,26.96337],[92.55419,26.95744],[92.58334,26.95954],[92.6448,26.98666],[92.66745,27.02712],[92.67248,27.03165],[92.67752,27.03166],[92.68761,27.02717],[92.69265,27.02718],[92.69771,27.02268],[92.71283,27.02271],[92.72292,27.01821],[92.73299,27.02275],[92.75315,27.02278],[92.76322,27.02731],[92.77835,27.02282],[92.79348,27.02285],[92.82374,27.00934],[92.83886,27.00485],[92.85727,27.00164],[92.88661,26.99975],[92.91841,26.98231],[92.91553,26.97392],[92.91715,26.96293],[92.98189,26.93605],[93.02186,26.91342],[93.06272,26.92227],[93.08823,26.91439],[93.10737,26.92576],[93.17256,26.93599],[93.20095,26.94322],[93.24682,26.95125],[93.3241,26.96008],[93.38049,26.95922],[93.44877,26.95078],[93.46249,26.93788],[93.47065,26.9366],[93.47473,26.93932],[93.48626,26.94228],[93.4891,26.93618],[93.50728,26.94394],[93.52477,26.94853],[93.54101,26.94897],[93.54494,26.95123],[93.54915,26.95001],[93.55966,26.95271],[93.58667,26.95047],[93.61473,26.9603],[93.66506,26.96851],[93.67567,26.97459],[93.69367,26.989],[93.70891,27.00811],[93.72338,27.02081],[93.73298,27.02594],[93.74353,27.02769],[93.76742,27.03944],[93.76673,27.05291],[93.76799,27.05445],[93.76786,27.05128],[93.77185,27.05408],[93.77087,27.06204],[93.77828,27.04894],[93.77957,27.05806],[93.78109,27.05882],[93.78119,27.06552],[93.78304,27.06435],[93.78379,27.05145],[93.78942,27.0506],[93.79383,27.05452],[93.79441,27.06192],[93.79522,27.05701],[93.80022,27.05785],[93.79879,27.06239],[93.79304,27.06828],[93.79378,27.07234],[93.79527,27.07246],[93.79684,27.06527],[93.80336,27.05806],[93.80768,27.05981],[93.81139,27.05894],[93.80841,27.06593],[93.81074,27.06747],[93.81499,27.06146],[93.82121,27.0644],[93.82199,27.06777],[93.82741,27.06594],[93.82923,27.06681],[93.82861,27.06885],[93.8298,27.06797],[93.83567,27.0743],[93.8356,27.0782],[93.8332,27.08156],[93.83777,27.08537],[93.8315,27.08678],[93.8314,27.09091],[93.82667,27.09697],[93.82556,27.10359],[93.8266,27.11206],[93.82507,27.11642],[93.81994,27.12275],[93.81405,27.12128],[93.80943,27.12334],[93.81294,27.1293],[93.81212,27.13113],[93.80702,27.13066],[93.80319,27.13278],[93.79691,27.12894],[93.79447,27.13452],[93.79597,27.13765],[93.80539,27.13713],[93.80599,27.14876],[93.82535,27.16848],[93.83871,27.17234],[93.85987,27.19348],[93.86423,27.19615],[93.8994,27.23909],[93.92824,27.26422],[93.95527,27.29326],[93.99125,27.32835],[94.01157,27.3385],[94.02211,27.3462],[94.0258,27.34484],[94.02784,27.34684],[94.03026,27.34566],[94.03092,27.34839],[94.04055,27.3515],[94.05404,27.36034],[94.05981,27.36154],[94.06146,27.36373],[94.06085,27.3653],[94.06921,27.37346],[94.07575,27.38968],[94.0896,27.40705],[94.10494,27.41397],[94.11786,27.42969],[94.12769,27.43459],[94.13146,27.44092],[94.15538,27.45697],[94.15508,27.4591],[94.15942,27.46162],[94.15667,27.47486],[94.16454,27.47678],[94.16913,27.48123],[94.17623,27.48215],[94.1842,27.48665],[94.18928,27.4924],[94.20064,27.49488],[94.20905,27.49253],[94.214,27.5008],[94.22082,27.50528],[94.26826,27.52084],[94.25749,27.53703],[94.25687,27.54171],[94.2594,27.54905],[94.2587,27.55546],[94.24672,27.56947],[94.23481,27.56916],[94.22495,27.57409],[94.22283,27.5882],[94.22664,27.59774],[94.21337,27.6002],[94.20951,27.60508],[94.20959,27.60891],[94.21736,27.60725],[94.22279,27.61141],[94.23756,27.63268],[94.24847,27.634],[94.25146,27.63763],[94.25441,27.63565],[94.26171,27.63587],[94.26741,27.62949],[94.26711,27.62735],[94.26558,27.62421],[94.2631,27.62426],[94.26058,27.62187],[94.26094,27.6181],[94.25468,27.61579],[94.25426,27.61423],[94.2564,27.61051],[94.27247,27.60294],[94.27465,27.59983],[94.27381,27.59497],[94.2774,27.58944],[94.2883,27.58926],[94.28985,27.59616],[94.29826,27.60193],[94.30182,27.60102],[94.30926,27.59078],[94.32278,27.58864],[94.32432,27.58462],[94.33283,27.58695],[94.33697,27.57919],[94.33824,27.58122],[94.34492,27.58213],[94.35068,27.57711],[94.35914,27.57693],[94.36401,27.57435],[94.36989,27.57475],[94.3765,27.58237],[94.3819,27.5816],[94.38859,27.58479],[94.39239,27.58902],[94.40161,27.58498],[94.41846,27.59752],[94.43168,27.60033],[94.43171,27.59162],[94.43333,27.58842],[94.4396,27.58122],[94.45133,27.57176],[94.45494,27.5666],[94.45644,27.55984],[94.46173,27.55524],[94.46791,27.56115],[94.4778,27.57614],[94.49896,27.57217],[94.50141,27.57399],[94.50247,27.57741],[94.51385,27.58011],[94.52151,27.58455],[94.52201,27.59142],[94.52958,27.59139],[94.53214,27.59457],[94.53596,27.59253],[94.54459,27.60103],[94.55532,27.60075],[94.56222,27.6049],[94.56857,27.60234],[94.57409,27.60381],[94.57685,27.60589],[94.57974,27.6123],[94.58755,27.61846],[94.59559,27.61968],[94.60001,27.61817],[94.60289,27.62123],[94.60659,27.61862],[94.61438,27.62397],[94.62087,27.62495],[94.62347,27.62781],[94.62846,27.62454],[94.63319,27.62416],[94.64137,27.62944],[94.64668,27.63807],[94.6574,27.64178],[94.66265,27.64533],[94.67275,27.64722],[94.67911,27.64515],[94.68268,27.64589],[94.68665,27.65099],[94.6838,27.66017],[94.68791,27.66514],[94.6909,27.66174],[94.70049,27.66145],[94.70904,27.65658],[94.71602,27.65753],[94.72051,27.66692],[94.72514,27.669],[94.72897,27.66453],[94.73573,27.66329],[94.74137,27.65989],[94.75431,27.66055],[94.76093,27.66504],[94.76916,27.67952],[94.77866,27.6797],[94.78411,27.6839],[94.78905,27.68518],[94.79187,27.68809],[94.79373,27.69518],[94.79698,27.69563],[94.80828,27.69198],[94.82078,27.69208],[94.84097,27.70061],[94.84783,27.70557],[94.84841,27.71711],[94.85235,27.7276],[94.92233,27.74992],[95.30876,27.86801],[95.37958,27.83918],[95.52013,27.88124],[95.52616,27.89062],[95.53404,27.89814],[95.53994,27.89646],[95.54427,27.89978],[95.54219,27.90627],[95.54467,27.91084],[95.55383,27.91373],[95.56354,27.91926],[95.56481,27.92927],[95.56859,27.9359],[95.576,27.9397],[95.58611,27.93672],[95.59371,27.94677],[95.60528,27.95462],[95.82388,27.97148],[95.97129,27.96272],[95.9652,27.95167],[95.95456,27.94114],[95.9483,27.93712],[95.94924,27.9312],[95.95476,27.9312],[95.94855,27.92439],[95.95269,27.92009],[95.94712,27.91745],[95.94266,27.91069],[95.93815,27.91253],[95.93553,27.90749],[95.94105,27.90561],[95.92983,27.90274],[95.93178,27.90014],[95.93775,27.8982],[95.92849,27.89513],[95.92785,27.8987],[95.92633,27.89888],[95.92597,27.89534],[95.91923,27.89504],[95.9237,27.8881],[95.91768,27.89007],[95.9155,27.88939],[95.9168,27.885],[95.92076,27.88464],[95.92509,27.88168],[95.91944,27.8806],[95.91555,27.88376],[95.91702,27.88046],[95.91454,27.87576],[95.91012,27.87241],[95.9107,27.87019],[95.90729,27.87044],[95.90859,27.86871],[95.90658,27.866],[95.90335,27.86891],[95.90169,27.86847],[95.90146,27.86648],[95.90492,27.86212],[95.89475,27.862],[95.89534,27.85737],[95.89025,27.85999],[95.89114,27.85685],[95.88845,27.85657],[95.88366,27.84611],[95.87041,27.83267],[95.85439,27.83002],[95.83776,27.82412],[95.83807,27.81023],[95.82659,27.80872],[95.81665,27.80269],[95.81092,27.79653],[95.80955,27.78908],[95.80392,27.7846],[95.80035,27.77369],[95.7944,27.76908],[95.78689,27.75967],[95.776,27.75362],[95.77798,27.74246],[95.78055,27.73692],[95.77938,27.73371],[95.76557,27.72639],[95.75903,27.72704],[95.75415,27.7257],[95.75249,27.72423],[95.75226,27.72092],[95.75419,27.71842],[95.76536,27.71466],[95.76251,27.71316],[95.76418,27.71113],[95.7629,27.70902],[95.76803,27.70209],[95.76455,27.6997],[95.76573,27.69757],[95.76378,27.69376],[95.76539,27.69077],[95.76715,27.69049],[95.76787,27.68699],[95.77331,27.6849],[95.77723,27.68755],[95.78293,27.68721],[95.783,27.68464],[95.78513,27.68514],[95.78616,27.68175],[95.79046,27.68014],[95.77906,27.67728],[95.77514,27.67432],[95.77197,27.66409],[95.77297,27.66204],[95.77043,27.6577],[95.77432,27.6508],[95.78622,27.64632],[95.78784,27.64396],[95.79015,27.64476],[95.79578,27.64173],[95.79603,27.63786],[95.79443,27.63887],[95.7883,27.63484],[95.7895,27.62631],[95.77957,27.62564],[95.77853,27.62398],[95.77832,27.61938],[95.78003,27.61662],[95.78514,27.61561],[95.79034,27.61174],[95.78943,27.604],[95.79064,27.59965],[95.79533,27.59766],[95.80557,27.60095],[95.8158,27.59867],[95.81845,27.59539],[95.8138,27.58898],[95.81192,27.58322],[95.81434,27.57425],[95.82344,27.57448],[95.83335,27.56002],[95.8363,27.55926],[95.84127,27.56205],[95.8529,27.55279],[95.86074,27.5431],[95.86263,27.54537],[95.8703,27.54528],[95.87371,27.547],[95.8758,27.54649],[95.87665,27.54428],[95.8785,27.51876],[95.87584,27.51242],[95.8788,27.50489],[95.8843,27.50105],[95.88685,27.49708],[95.88003,27.49703],[95.8743,27.49325],[95.87294,27.49078],[95.87389,27.48116],[95.87154,27.47611],[95.87069,27.46665],[95.85655,27.46126],[95.85332,27.45691],[95.85675,27.44493],[95.84947,27.44161],[95.84682,27.43856],[95.84729,27.43619],[95.84234,27.42775],[95.84451,27.42158],[95.85002,27.41781],[95.85296,27.41111],[95.86014,27.40801],[95.8625,27.40945],[95.86245,27.41153],[95.85702,27.41564],[95.85714,27.41988],[95.87088,27.42635],[95.87567,27.43479],[95.87875,27.43612],[95.88322,27.43532],[95.88494,27.43212],[95.88395,27.41402],[95.88759,27.41166],[95.8883,27.40899],[95.88403,27.4025],[95.88573,27.39815],[95.89099,27.40121],[95.89867,27.41286],[95.90001,27.42202],[95.90798,27.43435],[95.91089,27.43577],[95.91823,27.43473],[95.92787,27.43847],[95.93444,27.43564],[95.94131,27.43729],[95.94745,27.43299],[95.94519,27.42664],[95.95113,27.42397],[95.95475,27.41962],[95.95675,27.4265],[95.96034,27.42903],[95.9632,27.42721],[95.96179,27.41801],[95.96456,27.41805],[95.96547,27.42701],[95.96935,27.42789],[95.96962,27.4235],[95.97408,27.42169],[95.97539,27.41939],[95.97515,27.41746],[95.97078,27.41683],[95.97022,27.41491],[95.97405,27.41137],[95.9833,27.41183],[95.98456,27.40445],[95.99014,27.40236],[95.99349,27.39639],[95.99647,27.3946],[95.99817,27.38789],[96.01788,27.36943],[96.01775,27.36492],[96.0127,27.36503],[96.00753,27.36063],[96.00249,27.36074],[95.9965,27.35636],[95.99329,27.35794],[95.98921,27.3565],[95.98688,27.34561],[95.97654,27.33738],[95.97158,27.33655],[95.97101,27.33282],[95.96529,27.32788],[95.96772,27.32567],[95.97209,27.32744],[95.97556,27.32446],[95.96912,27.32241],[95.96276,27.32314],[95.96103,27.31644],[95.95505,27.31768],[95.95656,27.31257],[95.96004,27.31095],[95.95343,27.30892],[95.94663,27.30379],[95.94172,27.30523],[95.93756,27.30082],[95.93012,27.30028],[95.91799,27.29134],[95.91478,27.29201],[95.91338,27.28914],[95.90717,27.28897],[95.90606,27.28222],[95.90111,27.28392],[95.89721,27.28216],[95.89709,27.28054],[95.90435,27.27392],[95.90008,27.27425],[95.89945,27.26868],[95.89356,27.26757],[95.89462,27.26101],[95.89418,27.25692],[95.89243,27.25528],[95.88132,27.25591],[95.8765,27.25964],[95.86937,27.26002],[95.86383,27.26644],[95.85643,27.27106],[95.85382,27.2792],[95.85931,27.28722],[95.8505,27.28659],[95.82332,27.27887],[95.81538,27.27854],[95.80516,27.27295],[95.80553,27.2758],[95.79945,27.27655],[95.80262,27.28294],[95.80089,27.28427],[95.79954,27.28234],[95.79522,27.28253],[95.7879,27.27865],[95.78818,27.27672],[95.78059,27.27246],[95.77958,27.26975],[95.77525,27.27041],[95.76518,27.26726],[95.75686,27.26864],[95.7477,27.26575],[95.74211,27.26666],[95.73618,27.26326],[95.73469,27.26039],[95.72713,27.25965],[95.72021,27.24948],[95.71378,27.25024],[95.71198,27.25284],[95.70788,27.25006],[95.70151,27.24857],[95.69236,27.25321],[95.68153,27.25174],[95.67603,27.24696],[95.63234,27.22968],[95.61903,27.23248],[95.61757,27.2309],[95.6122,27.23021],[95.61062,27.2276],[95.60382,27.22422],[95.58757,27.22294],[95.58454,27.22489],[95.58298,27.22851],[95.58046,27.22781],[95.57826,27.23207],[95.57456,27.23436],[95.57727,27.23807],[95.5752,27.23978],[95.57465,27.24364],[95.56431,27.24467],[95.55808,27.24898],[95.55354,27.24886],[95.55099,27.25045],[95.55195,27.25315],[95.54823,27.25394],[95.54851,27.25732],[95.54512,27.25999],[95.54203,27.25901],[95.53711,27.2625],[95.53515,27.26156],[95.53452,27.26459],[95.53264,27.26147],[95.53028,27.26135],[95.52989,27.26454],[95.52789,27.26308],[95.52539,27.26372],[95.51705,27.25751],[95.51147,27.26191],[95.50917,27.26204],[95.50467,27.24936],[95.49963,27.24618],[95.49209,27.24554],[95.48426,27.24125],[95.48293,27.23652],[95.47884,27.23406],[95.47966,27.23096],[95.47745,27.22676],[95.47147,27.22272],[95.47244,27.21893],[95.46754,27.21832],[95.46716,27.21337],[95.45758,27.20878],[95.45589,27.20253],[95.45842,27.20018],[95.45914,27.19543],[95.46246,27.19437],[95.46017,27.19134],[95.4666,27.18164],[95.45952,27.17569],[95.46471,27.17221],[95.46551,27.16636],[95.46252,27.16171],[95.45332,27.15733],[95.45965,27.15374],[95.46222,27.14966],[95.45748,27.14413],[95.45657,27.14055],[95.45817,27.13796],[95.45327,27.12943],[95.44941,27.12968],[95.4493,27.13459],[95.44441,27.13521],[95.44242,27.13139],[95.44473,27.12879],[95.4406,27.12874],[95.43961,27.12592],[95.42065,27.12578],[95.39854,27.10872],[95.38464,27.10554],[95.38199,27.10028],[95.38302,27.0982],[95.37467,27.09268],[95.37012,27.09449],[95.3712,27.10079],[95.36376,27.10255],[95.36865,27.10709],[95.3649,27.10818],[95.35476,27.10391],[95.32927,27.08766],[95.31681,27.08281],[95.30004,27.07005],[95.29183,27.06649],[95.27632,27.05219],[95.27524,27.04997],[95.27768,27.04832],[95.27585,27.04408],[95.27713,27.04238],[95.27158,27.04118],[95.26339,27.03507],[95.26007,27.03555],[95.25844,27.03382],[95.25899,27.03027],[95.25657,27.03041],[95.24644,27.0238],[95.24384,27.02606],[95.23947,27.03639],[95.23302,27.03748],[95.23223,27.04275],[95.22933,27.04152],[95.23108,27.03909],[95.23032,27.0357],[95.22687,27.03443],[95.22353,27.03606],[95.21919,27.03195],[95.2154,27.03016],[95.21386,27.03096],[95.21069,27.02854],[95.20948,27.0304],[95.21062,27.03097],[95.20752,27.03045],[95.20723,27.03234],[95.20527,27.03241],[95.20466,27.03771],[95.20322,27.03588],[95.19666,27.03699],[95.19618,27.03184],[95.19479,27.0312],[95.19321,27.03172],[95.19424,27.03413],[95.19289,27.03578],[95.19452,27.01027],[95.19696,27.00079],[95.19668,26.9939],[95.19313,26.99237],[95.19204,26.98453],[95.19726,26.98008],[95.20459,26.97921],[95.20677,26.97713],[95.20204,26.97668],[95.20337,26.97333],[95.20558,26.96957],[95.21184,26.96484],[95.20355,26.95706],[95.21019,26.95324],[95.20602,26.95112],[95.21117,26.93137],[95.21378,26.9286],[95.22228,26.92882],[95.22603,26.92501],[95.23064,26.91495],[95.23063,26.9131],[95.22863,26.91224],[95.23076,26.90398],[95.22797,26.89267],[95.23048,26.88515],[95.22656,26.87997],[95.21448,26.8812],[95.20949,26.87995],[95.208,26.87607],[95.20307,26.87222],[95.18114,26.8592],[95.1824,26.854],[95.19221,26.84394],[95.19392,26.84371],[95.19432,26.84585],[95.20083,26.84325],[95.20519,26.84502],[95.20299,26.84058],[95.1971,26.83719],[95.19562,26.83424],[95.20337,26.80594],[95.21162,26.79259],[95.21805,26.78772],[95.23146,26.78344],[95.2367,26.78331],[95.23816,26.78106],[95.24135,26.78145],[95.22809,26.77184],[95.2296,26.76606],[95.22048,26.75586],[95.21651,26.75396],[95.21566,26.74969],[95.21776,26.74564],[95.21736,26.74155],[95.21324,26.73543],[95.21252,26.72943],[95.22454,26.71792],[95.22598,26.71093],[95.23241,26.70624],[95.22998,26.69112],[95.23224,26.68223],[95.23321,26.68109],[95.23474,26.68257],[95.24917,26.68371],[95.25706,26.67623],[95.25888,26.67188],[95.25693,26.66788],[95.25657,26.66145],[95.25866,26.65575],[95.27433,26.65863],[95.2816,26.65589],[95.2839,26.65684],[95.29191,26.6525],[95.30396,26.65101],[95.31361,26.6627],[95.31709,26.66472],[95.32639,26.6645],[95.32731,26.66862],[95.33478,26.67203],[95.33579,26.67448],[95.34671,26.67535],[95.35143,26.67201],[95.35574,26.67266],[95.36054,26.67104],[95.36681,26.67552],[95.37382,26.68414],[95.39477,26.68529],[95.40113,26.6893],[95.40301,26.69497],[95.40924,26.69573],[95.41185,26.69405],[95.41753,26.6942],[95.42908,26.70085],[95.43138,26.7007],[95.43206,26.71628],[95.4462,26.72685],[95.45294,26.73383],[95.45909,26.74388],[95.46714,26.74468],[95.4739,26.74117],[95.48276,26.74705],[95.48199,26.74999],[95.48421,26.75714],[95.48987,26.7635],[95.49226,26.77269],[95.49533,26.77543],[95.49589,26.77877],[95.50502,26.79254],[95.50396,26.79496],[95.50742,26.80452],[95.5074,26.8088],[95.51453,26.80951],[95.52228,26.8135],[95.52445,26.8221],[95.53192,26.82726],[95.53601,26.82723],[95.53831,26.8319],[95.54313,26.83538],[95.55197,26.83186],[95.55688,26.83264],[95.55665,26.82985],[95.56477,26.81943],[95.57045,26.81595],[95.58636,26.81723],[95.59534,26.81466],[95.60002,26.81147],[95.60849,26.81286],[95.61264,26.82508],[95.62055,26.83116],[95.62726,26.84301],[95.62681,26.84741],[95.62953,26.85774],[95.62678,26.86198],[95.63415,26.86801],[95.63188,26.87363],[95.64464,26.8764],[95.64672,26.8845],[95.65101,26.88682],[95.65302,26.89178],[95.66066,26.89545],[95.667,26.90286],[95.67512,26.90093],[95.6795,26.89572],[95.68615,26.89554],[95.69048,26.8927],[95.69481,26.89205],[95.70645,26.88194],[95.70624,26.88056],[95.71364,26.88014],[95.71637,26.87846],[95.72414,26.8822],[95.73429,26.8938],[95.74065,26.89388],[95.74491,26.89633],[95.74669,26.90386],[95.75124,26.90878],[95.74666,26.91631],[95.74679,26.92265],[95.7499,26.92359],[95.74789,26.92583],[95.75552,26.92957],[95.75684,26.93204],[95.75615,26.93512],[95.76005,26.93685],[95.75963,26.94542],[95.755,26.95384],[95.75906,26.95464],[95.76084,26.95875],[95.7603,26.96392],[95.76507,26.9684],[95.7681,26.97652],[95.78115,26.97779],[95.78343,26.99012],[95.79634,26.99774],[95.80222,27.00649],[95.80203,27.0145],[95.80365,27.01555],[95.8106,27.01359],[95.81207,27.01461],[95.81382,27.01234],[95.82269,27.00959],[95.82562,27.01023],[95.83006,27.00748],[95.83585,27.00923],[95.8425,27.01394],[95.851,27.01427],[95.85761,27.01185],[95.86307,27.01344],[95.87008,27.0127],[95.87576,27.01445],[95.8759,27.01925],[95.87915,27.0229],[95.88658,27.02611],[95.88908,27.02378],[95.89495,27.02596],[95.90137,27.0326],[95.90423,27.03875],[95.911,27.0367],[95.91777,27.04093],[95.92249,27.04158],[95.926,27.04492],[95.93365,27.04572],[95.94596,27.05165],[95.95351,27.06633],[95.95591,27.07778],[95.96501,27.08693],[95.96378,27.09244],[95.9675,27.09547],[95.96862,27.09989],[95.98571,27.11312],[95.98797,27.1199],[95.99204,27.12282],[95.99856,27.13497],[96.01051,27.14224],[96.0099,27.14547],[96.01466,27.15],[96.01604,27.15793],[96.01856,27.16082],[96.01969,27.16641],[96.01827,27.16959],[96.02296,27.18008],[96.03158,27.18602],[96.03983,27.18761],[96.05428,27.19603],[96.05714,27.20124],[96.06346,27.20361],[96.06405,27.20586],[96.07175,27.20523],[96.07741,27.20835],[96.07799,27.21055],[96.08275,27.21288],[96.08919,27.21981],[96.09061,27.22333],[96.09957,27.22435],[96.11192,27.23175],[96.12108,27.23159],[96.12458,27.2355],[96.13105,27.23657],[96.13685,27.24137],[96.14447,27.24129],[96.1495,27.24297],[96.15556,27.24835],[96.15807,27.24739],[96.18529,27.24891],[96.19358,27.26152],[96.20444,27.25995],[96.20638,27.26149],[96.20899,27.26107],[96.21081,27.26233],[96.21048,27.26485],[96.21396,27.26552],[96.22422,27.27258],[96.22799,27.27868],[96.23147,27.27611],[96.24537,27.27642],[96.24797,27.27258],[96.25558,27.2747],[96.25926,27.2722],[96.26107,27.27317],[96.27102,27.27154],[96.27547,27.27946],[96.27457,27.28339],[96.28391,27.28471],[96.29498,27.29165],[96.30727,27.29428],[96.31155,27.29185],[96.32309,27.29058],[96.32609,27.28887],[96.33033,27.28967],[96.33087,27.28725],[96.33966,27.28503],[96.34591,27.28552],[96.34916,27.28852],[96.34934,27.29316],[96.35247,27.29509],[96.35813,27.29015],[96.36723,27.28683],[96.36799,27.28967],[96.37021,27.28997],[96.375,27.2853],[96.38232,27.28678],[96.38684,27.28463],[96.40191,27.29109],[96.40289,27.2932],[96.40495,27.28943],[96.40799,27.2877],[96.40965,27.29064],[96.41438,27.29331],[96.41575,27.29735],[96.42133,27.30145],[96.4355,27.30236],[96.44065,27.30633],[96.4441,27.30186],[96.44898,27.303],[96.45083,27.30142],[96.45483,27.30235],[96.45715,27.30649],[96.46244,27.30617],[96.47038,27.30068],[96.48098,27.29931],[96.48856,27.29628],[96.48901,27.30111],[96.49058,27.30263],[96.50155,27.29887],[96.50814,27.29912],[96.50912,27.2972],[96.5123,27.29671],[96.51233,27.29252],[96.51575,27.29036],[96.51783,27.28563],[96.51898,27.28706],[96.52385,27.28655],[96.5314,27.2966],[96.54269,27.3021],[96.54255,27.30902],[96.5505,27.31294],[96.55122,27.31846],[96.5534,27.31814],[96.55527,27.32038],[96.55786,27.31838],[96.56408,27.31845],[96.56784,27.32231],[96.57067,27.32198],[96.5744,27.32405],[96.58406,27.3341],[96.58932,27.3356],[96.59572,27.33387],[96.59526,27.34051],[96.59105,27.34631],[96.5913,27.34845],[96.5952,27.34998],[96.60036,27.35498],[96.59926,27.35598],[96.60335,27.35921],[96.60531,27.36555],[96.62461,27.36665],[96.64768,27.35916],[96.6609,27.36428],[96.66547,27.36103],[96.6702,27.36093],[96.67236,27.35697],[96.67528,27.36125],[96.69749,27.35766],[96.70206,27.35974],[96.70095,27.36278],[96.7027,27.36496],[96.70352,27.37213],[96.70489,27.37204],[96.71179,27.37003],[96.72136,27.36342],[96.72952,27.3621],[96.72985,27.35942],[96.74009,27.35754],[96.74577,27.3582],[96.74652,27.356],[96.74928,27.35569],[96.75169,27.35227],[96.75667,27.35444],[96.76308,27.35405],[96.76692,27.35705],[96.77062,27.35584],[96.77439,27.35171],[96.78127,27.35055],[96.78761,27.34783],[96.78906,27.34573],[96.79666,27.34563],[96.80152,27.33939],[96.80512,27.32894],[96.81324,27.32167],[96.82242,27.30822],[96.83489,27.30294],[96.83802,27.30032],[96.83859,27.29716],[96.84798,27.29028],[96.84753,27.28699],[96.85018,27.27825],[96.84705,27.2711],[96.85098,27.26968],[96.85722,27.26277],[96.86299,27.2595],[96.86857,27.2584],[96.88474,27.25966],[96.8841,27.25574],[96.88672,27.25345],[96.88766,27.24669],[96.88224,27.24284],[96.88138,27.23929],[96.88208,27.23645],[96.88772,27.23565],[96.88504,27.23156],[96.88523,27.22647],[96.88143,27.22488],[96.87703,27.22032],[96.86721,27.21696],[96.8608,27.2107],[96.85477,27.21024],[96.8588,27.20316],[96.85921,27.19761],[96.85718,27.19592],[96.85684,27.19296],[96.86496,27.18878],[96.87441,27.18068],[96.88297,27.17833],[96.90108,27.16873],[96.90839,27.16868],[96.91245,27.16611],[96.92203,27.16536],[96.93199,27.16158],[96.93917,27.1619],[96.94332,27.16378],[96.95272,27.16225],[96.95534,27.16437],[96.96398,27.16135],[96.96504,27.15803],[96.98483,27.1543],[96.99145,27.1452],[96.9933,27.13999],[97.00531,27.14091],[97.01969,27.13292],[97.02466,27.1319],[97.02604,27.12948],[97.03027,27.13155],[97.03595,27.12433],[97.03349,27.11827],[97.04065,27.11623],[97.04448,27.11284],[97.04459,27.10789],[97.04956,27.10518],[97.05219,27.10615],[97.05804,27.10016],[97.06221,27.09856],[97.06344,27.09145],[97.06695,27.09151],[97.07118,27.08922],[97.07667,27.09866],[97.08721,27.09482],[97.09631,27.09589],[97.09794,27.09854],[97.09489,27.10345],[97.10035,27.10836],[97.10643,27.10389],[97.11932,27.10387],[97.12456,27.09566],[97.13551,27.09365],[97.13852,27.09105],[97.14432,27.09976],[97.14433,27.10336],[97.14855,27.10721],[97.14811,27.11322],[97.14966,27.11676],[97.15665,27.11855],[97.16179,27.12289],[97.16113,27.12888],[97.1659,27.13514],[97.16385,27.14224],[97.15982,27.14636],[97.15093,27.14981],[97.15111,27.15331],[97.14667,27.16491],[97.13859,27.16414],[97.13259,27.17017],[97.12451,27.17428],[97.12172,27.18342],[97.12209,27.1899],[97.11072,27.19669],[97.10766,27.20116],[97.09048,27.21362],[97.09269,27.22599],[97.09048,27.22818],[97.08851,27.23821],[97.07402,27.24684],[97.07374,27.25153],[97.06893,27.25724],[97.05493,27.26571],[97.05621,27.27006],[97.05478,27.27512],[97.05095,27.27562],[97.05108,27.27746],[97.04802,27.28021],[97.04107,27.28218],[97.03788,27.28645],[97.03497,27.29507],[97.02909,27.30131],[97.02982,27.30524],[97.02827,27.30794],[97.02515,27.3064],[97.02224,27.30704],[97.0201,27.3103],[97.01711,27.31058],[97.01532,27.31307],[97.00921,27.31052],[97.008,27.31343],[96.99811,27.31898],[96.99525,27.32527],[96.9958,27.33261],[96.99272,27.33625],[96.99054,27.34377],[96.98065,27.34554],[96.97845,27.35658],[96.97068,27.36627],[96.96213,27.37312],[96.96748,27.38151],[96.96654,27.38577],[96.96027,27.39433],[96.96231,27.40165],[96.96056,27.40409],[96.95399,27.40693],[96.94444,27.40861],[96.94061,27.41312],[96.93439,27.41577],[96.93164,27.41939],[96.9317,27.42297],[96.93387,27.42624],[96.93262,27.4309],[96.92572,27.43604],[96.91633,27.44637],[96.90789,27.44832],[96.90324,27.45273],[96.90711,27.47762],[96.91053,27.48087],[96.9108,27.48645],[96.91782,27.49709],[96.92298,27.50201],[96.92827,27.51157],[96.92982,27.52418],[96.92473,27.53328],[96.91301,27.54388],[96.91223,27.58053],[96.90119,27.5801],[96.89671,27.5815],[96.89571,27.58729],[96.89675,27.60926],[96.89838,27.61421],[96.90711,27.61643],[96.91676,27.62507],[96.94172,27.66074],[96.98306,27.66428],[96.99788,27.69181],[97.03616,27.74239],[97.04261,27.74662],[97.05604,27.74191],[97.06443,27.74725],[97.06952,27.74701],[97.07724,27.74113],[97.08488,27.73861],[97.09078,27.73832],[97.09385,27.74009],[97.09883,27.74679],[97.10246,27.75786],[97.10184,27.76531],[97.104,27.76975],[97.11343,27.77432],[97.11909,27.78338],[97.13254,27.78775],[97.14569,27.80458],[97.16463,27.81059],[97.16956,27.81633],[97.17313,27.82621],[97.18413,27.83429],[97.18847,27.84365],[97.2196,27.86366],[97.23303,27.87616],[97.24902,27.8993],[97.25791,27.90364],[97.27116,27.90442],[97.309,27.91499],[97.31323,27.91382],[97.31581,27.90341],[97.32531,27.89599],[97.33925,27.89075],[97.35708,27.87885],[97.36835,27.87829],[97.37359,27.88018],[97.37978,27.8971],[97.37732,27.91349],[97.38074,27.92481],[97.37641,27.93292],[97.37719,27.94102],[97.38241,27.95104],[97.37393,27.96176],[97.37298,27.96803],[97.39129,27.98888],[97.3926,28.00102],[97.41012,28.00517],[97.41251,28.00887],[97.4129,28.01484],[97.40996,28.01953],[97.40442,28.02148],[97.40382,28.02463],[97.39735,28.02902],[97.38714,28.02953],[97.37568,28.04016],[97.37532,28.04711],[97.38012,28.05477],[97.38095,28.05927],[97.37748,28.05993],[97.36076,28.05574],[97.32578,28.0527],[97.31747,28.0579],[97.31136,28.06777],[97.31043,28.07452],[97.31564,28.08431],[97.3226,28.0921],[97.3306,28.09911],[97.34226,28.10428],[97.34724,28.11049],[97.34614,28.11437],[97.32975,28.12835],[97.32439,28.13746],[97.32444,28.14249],[97.3279,28.15021],[97.34482,28.16157],[97.35658,28.17247],[97.3598,28.18499],[97.36385,28.18909],[97.37759,28.18864],[97.40116,28.18148],[97.40281,28.18187],[97.40104,28.19225],[97.38956,28.20694],[97.37837,28.21779],[97.3366,28.23638],[97.31544,28.24772],[97.29526,28.26188],[97.28494,28.26526],[97.27205,28.26661],[97.25175,28.26594],[97.23946,28.26822],[97.23036,28.27393],[97.22671,28.28463],[97.20933,28.28763],[97.18368,28.28362],[97.1711,28.28567],[97.1645,28.29245],[97.15483,28.31086],[97.14046,28.32758],[97.12778,28.3368],[97.10569,28.34696],[97.08131,28.35052],[97.07531,28.34961],[97.06484,28.34198],[97.04789,28.33897],[97.02677,28.3206],[97.01182,28.31031],[96.99685,28.30408],[96.98761,28.30333],[96.97879,28.31403],[96.96323,28.32026],[96.95318,28.32839],[96.93655,28.33515],[96.92584,28.33685],[96.91381,28.35703],[96.90399,28.36921],[96.88967,28.37849],[96.86357,28.37157],[96.85118,28.3633],[96.83454,28.36072],[96.79733,28.36244],[96.77692,28.36481],[96.77029,28.36703],[96.76154,28.3746],[96.75882,28.38358],[96.7568,28.39993],[96.74085,28.41381],[96.72726,28.42208],[96.70428,28.42696],[96.68179,28.43563],[96.65816,28.45272],[96.64114,28.45779],[96.62176,28.45483],[96.5869,28.45567],[96.57075,28.45232],[96.52689,28.42318],[96.50538,28.41098],[96.49346,28.41055],[96.4713,28.41583],[96.45713,28.41382],[96.43429,28.38731],[96.42769,28.37565],[96.4246,28.36382],[96.42362,28.35119],[96.41738,28.34094],[96.39548,28.33592],[96.39212,28.33869],[96.38827,28.34723],[96.36996,28.36332],[96.36825,28.37153],[96.36893,28.37891],[96.36258,28.38636],[96.31668,28.37757],[96.30721,28.38252],[96.30102,28.39282],[96.29058,28.39972],[96.27727,28.40364],[96.2608,28.4041],[96.25339,28.40704],[96.27756,28.42395],[96.31572,28.44408],[96.3255,28.45466],[96.34945,28.46726],[96.36208,28.48034],[96.36356,28.48745],[96.36012,28.49382],[96.35146,28.50375],[96.32946,28.51713],[96.31858,28.52596],[96.34475,28.55401],[96.35718,28.55347],[96.3917,28.55581],[96.40001,28.55928],[96.40139,28.5695],[96.39937,28.577],[96.40203,28.58095],[96.41052,28.58273],[96.42484,28.58211],[96.42967,28.59098],[96.45545,28.61114],[96.47447,28.62178],[96.48732,28.63341],[96.48736,28.63891],[96.48247,28.65323],[96.4669,28.67518],[96.47063,28.67885],[96.491,28.68441],[96.50736,28.69564],[96.52502,28.70108],[96.55566,28.70116],[96.57931,28.71159],[96.59253,28.72463],[96.60424,28.74443],[96.61014,28.76687],[96.60899,28.77983],[96.60323,28.793],[96.55687,28.84143],[96.52609,28.88246],[96.53011,28.91025],[96.50802,28.95185],[96.50938,28.96637],[96.49216,28.95971],[96.48122,28.95852],[96.46944,28.97122],[96.46467,28.98314],[96.4659,28.99527],[96.49089,29.03337],[96.50069,29.05278],[96.5128,29.06969],[96.51358,29.07396],[96.49847,29.07127],[96.47707,29.06313],[96.46229,29.0566],[96.4537,29.04909],[96.43558,29.04103],[96.42314,29.03751],[96.39994,29.03588],[96.3565,29.03703],[96.34139,29.03433],[96.32691,29.02802],[96.29401,29.00815],[96.27941,28.99467],[96.26769,28.97915],[96.22017,28.92977],[96.21138,28.92799],[96.20512,28.92276],[96.18191,28.91034],[96.16825,28.89872],[96.16087,28.89783],[96.15947,28.90721],[96.15543,28.91789],[96.1349,28.93523],[96.14044,28.94241],[96.14229,28.95667],[96.1718,28.96979],[96.17325,28.99171],[96.17147,28.99919],[96.14093,29.05828],[96.1288,29.07049],[96.12031,29.07442],[96.10206,29.07899],[96.12802,29.08629],[96.15606,29.09182],[96.17359,29.09922],[96.18235,29.1053],[96.19163,29.11591],[96.20074,29.13345],[96.21052,29.14809],[96.2325,29.15195],[96.24495,29.16576],[96.27408,29.16573],[96.31627,29.17064],[96.34201,29.17838],[96.35025,29.18448],[96.3653,29.22517],[96.37398,29.23436],[96.37912,29.24345],[96.38083,29.25461],[96.37908,29.26711],[96.36958,29.28734],[96.36382,29.29165],[96.3543,29.29205],[96.34652,29.28928],[96.34444,29.28125],[96.3405,29.27401],[96.30945,29.26434],[96.29529,29.25466],[96.28957,29.24463],[96.28236,29.24231],[96.26298,29.24169],[96.25414,29.23944],[96.24379,29.23939],[96.23548,29.24189],[96.22373,29.25122],[96.19178,29.29006],[96.18646,29.30246],[96.17992,29.30751],[96.17524,29.31678],[96.17449,29.32302],[96.17852,29.33719],[96.1765,29.34515],[96.16972,29.35594],[96.1535,29.37381]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-AS","area_level":"State","area_name":"Assam","geometry_source":"SOI_States","same_as":"LGD/18/State"},"geometry":{"type":"Polygon","coordinates":[[[93.24961,24.97312],[93.25203,24.97645],[93.24934,24.97704],[93.24944,24.97934],[93.25343,24.98207],[93.25141,24.98601],[93.25704,24.99607],[93.25298,24.99734],[93.25277,24.99891],[93.25416,25.00023],[93.25863,24.99948],[93.25987,25.00113],[93.25738,25.00474],[93.25259,25.00093],[93.2505,25.00432],[93.24878,25.00299],[93.24888,24.99891],[93.24686,24.99738],[93.24439,24.99809],[93.2442,25.00326],[93.24178,25.00393],[93.24472,25.01171],[93.24767,25.0149],[93.24374,25.01612],[93.24388,25.01829],[93.24728,25.01799],[93.24908,25.02009],[93.25395,25.02058],[93.2525,25.02293],[93.25404,25.02547],[93.25117,25.02585],[93.25135,25.02714],[93.25379,25.02716],[93.25989,25.03497],[93.25835,25.03802],[93.25962,25.04121],[93.26219,25.04072],[93.26605,25.04384],[93.26227,25.04591],[93.2642,25.04936],[93.27045,25.05077],[93.27215,25.04844],[93.27451,25.05094],[93.27731,25.04957],[93.28007,25.051],[93.27966,25.04722],[93.2827,25.04901],[93.28346,25.045],[93.28718,25.04701],[93.28897,25.04568],[93.29136,25.04864],[93.29368,25.04633],[93.2948,25.05107],[93.2988,25.05195],[93.29941,25.04935],[93.29754,25.04658],[93.29996,25.04604],[93.3021,25.05424],[93.30079,25.05586],[93.30423,25.05562],[93.30556,25.05743],[93.30259,25.06137],[93.30282,25.06436],[93.31492,25.08462],[93.32188,25.09082],[93.32754,25.0934],[93.33237,25.09352],[93.3317,25.09605],[93.33354,25.09799],[93.33246,25.10073],[93.33808,25.1099],[93.33675,25.1116],[93.34141,25.11383],[93.33933,25.11549],[93.3422,25.11989],[93.34118,25.12306],[93.34526,25.12346],[93.34172,25.12671],[93.34534,25.13034],[93.34238,25.13749],[93.34751,25.13877],[93.34518,25.15074],[93.34657,25.15708],[93.34401,25.15913],[93.34587,25.16981],[93.34981,25.1795],[93.3515,25.17966],[93.35134,25.1832],[93.35496,25.18593],[93.35412,25.18767],[93.35616,25.18896],[93.35737,25.1876],[93.35671,25.19188],[93.35999,25.19185],[93.35938,25.19531],[93.36562,25.19808],[93.3661,25.2061],[93.37072,25.20789],[93.36894,25.21097],[93.37383,25.21182],[93.37338,25.21484],[93.37671,25.21788],[93.37561,25.22014],[93.38178,25.2229],[93.38127,25.22736],[93.38465,25.23136],[93.38426,25.23352],[93.38164,25.23431],[93.38269,25.23725],[93.38096,25.23794],[93.38112,25.23963],[93.38334,25.24228],[93.3866,25.24278],[93.39259,25.24997],[93.39366,25.25474],[93.40116,25.26062],[93.40668,25.26078],[93.41594,25.26427],[93.42053,25.27746],[93.4267,25.27964],[93.42752,25.28324],[93.43078,25.28295],[93.43606,25.28782],[93.44532,25.29134],[93.45536,25.29347],[93.46316,25.30147],[93.4673,25.30166],[93.4705,25.30506],[93.46663,25.31182],[93.45343,25.32146],[93.45667,25.32986],[93.45542,25.33214],[93.45651,25.33538],[93.45205,25.33596],[93.44843,25.34064],[93.45196,25.34703],[93.45158,25.35395],[93.45875,25.36068],[93.4638,25.35964],[93.46501,25.36067],[93.47253,25.37428],[93.47177,25.37589],[93.47361,25.37928],[93.47299,25.38599],[93.4632,25.39559],[93.45966,25.40323],[93.45933,25.40837],[93.46232,25.41785],[93.45833,25.42592],[93.45819,25.43098],[93.45543,25.4344],[93.45029,25.43565],[93.44333,25.4411],[93.43952,25.44101],[93.43753,25.44304],[93.43855,25.44551],[93.43639,25.44818],[93.42561,25.44832],[93.41995,25.44496],[93.41555,25.44498],[93.41041,25.44987],[93.40872,25.44829],[93.40247,25.45078],[93.40064,25.45636],[93.3973,25.46026],[93.394,25.45844],[93.39166,25.46178],[93.39034,25.46038],[93.38834,25.46349],[93.39041,25.46444],[93.38691,25.46611],[93.38682,25.46883],[93.38446,25.46916],[93.38898,25.47254],[93.3892,25.47638],[93.38661,25.47778],[93.3891,25.47843],[93.39142,25.48216],[93.38672,25.48296],[93.38463,25.4851],[93.38655,25.48726],[93.38386,25.48794],[93.38551,25.49039],[93.37738,25.49298],[93.37667,25.49753],[93.36752,25.49924],[93.36706,25.50096],[93.3692,25.50353],[93.36433,25.50376],[93.364,25.50653],[93.36213,25.50671],[93.36158,25.51234],[93.35686,25.5137],[93.35769,25.51527],[93.35509,25.52478],[93.35266,25.5283],[93.34997,25.52868],[93.35034,25.532],[93.34833,25.52994],[93.34508,25.53419],[93.34057,25.53495],[93.34036,25.53284],[93.33498,25.53442],[93.33639,25.53873],[93.33378,25.53959],[93.33299,25.54236],[93.33049,25.54203],[93.33036,25.54368],[93.32722,25.54467],[93.32702,25.54649],[93.32924,25.54879],[93.33261,25.54838],[93.33708,25.55283],[93.33575,25.55398],[93.33798,25.55687],[93.34328,25.56004],[93.35216,25.55999],[93.35461,25.55552],[93.35644,25.55619],[93.35872,25.55463],[93.35847,25.55726],[93.36406,25.5612],[93.36159,25.56387],[93.36245,25.566],[93.36554,25.56518],[93.36951,25.57042],[93.37539,25.57308],[93.3743,25.57709],[93.37983,25.57658],[93.38159,25.58197],[93.37835,25.5826],[93.38206,25.58396],[93.38341,25.58792],[93.38575,25.58705],[93.38695,25.58997],[93.3856,25.59277],[93.38929,25.5911],[93.39243,25.5959],[93.39403,25.59607],[93.3947,25.59445],[93.39695,25.59703],[93.39878,25.59603],[93.39947,25.59907],[93.40287,25.60216],[93.40127,25.60577],[93.40152,25.61109],[93.40626,25.6114],[93.40783,25.61441],[93.41101,25.61359],[93.41048,25.61654],[93.41436,25.61805],[93.41373,25.62099],[93.41835,25.61764],[93.42161,25.61824],[93.42226,25.62043],[93.41997,25.6247],[93.42455,25.62547],[93.42491,25.6303],[93.42738,25.63253],[93.43043,25.62947],[93.43366,25.62943],[93.43457,25.63119],[93.43726,25.63166],[93.43736,25.63481],[93.44162,25.63468],[93.44216,25.63817],[93.44437,25.63961],[93.44666,25.6346],[93.44948,25.63561],[93.44959,25.63953],[93.45509,25.63385],[93.4609,25.63231],[93.4606,25.63678],[93.45573,25.63869],[93.45731,25.64114],[93.46046,25.64062],[93.46417,25.64462],[93.47204,25.64239],[93.4688,25.64433],[93.47149,25.6454],[93.47383,25.64401],[93.47675,25.64777],[93.48174,25.6445],[93.48294,25.64546],[93.48144,25.65123],[93.48521,25.64833],[93.48777,25.65139],[93.4868,25.65312],[93.48802,25.65431],[93.49122,25.6532],[93.49655,25.65453],[93.49998,25.66072],[93.50646,25.66415],[93.50551,25.66642],[93.5066,25.66788],[93.5098,25.66847],[93.50744,25.67251],[93.51114,25.67209],[93.51409,25.67707],[93.51835,25.67943],[93.51754,25.68229],[93.51372,25.68282],[93.51265,25.68459],[93.52048,25.69161],[93.52249,25.69757],[93.52396,25.69592],[93.5236,25.6926],[93.52747,25.69119],[93.53123,25.69257],[93.53207,25.69698],[93.53629,25.7018],[93.54117,25.69884],[93.54192,25.70459],[93.54802,25.71172],[93.54319,25.71464],[93.54305,25.72096],[93.53955,25.72256],[93.54306,25.72585],[93.54245,25.73094],[93.54588,25.73147],[93.54943,25.72932],[93.54958,25.73274],[93.55526,25.73363],[93.5543,25.73783],[93.56151,25.73777],[93.56351,25.74472],[93.56697,25.74725],[93.56633,25.75475],[93.56833,25.75499],[93.57029,25.75276],[93.57322,25.75412],[93.57243,25.75644],[93.56827,25.75681],[93.56794,25.75843],[93.57683,25.75687],[93.57775,25.75449],[93.58548,25.75797],[93.58234,25.76055],[93.58592,25.76615],[93.58951,25.76606],[93.59167,25.76253],[93.59851,25.7688],[93.60056,25.76516],[93.60265,25.76508],[93.60504,25.7749],[93.61029,25.77375],[93.61272,25.77656],[93.61742,25.77599],[93.6201,25.78023],[93.6185,25.7837],[93.62252,25.78497],[93.6232,25.78733],[93.62675,25.78961],[93.6234,25.7973],[93.62669,25.79715],[93.62776,25.79888],[93.6247,25.80256],[93.62951,25.80156],[93.63289,25.80276],[93.6317,25.80664],[93.63495,25.80927],[93.6331,25.81138],[93.6386,25.80979],[93.63816,25.81563],[93.64347,25.81577],[93.64431,25.8187],[93.64651,25.81973],[93.64614,25.82238],[93.6516,25.81986],[93.65481,25.82364],[93.66054,25.82161],[93.66496,25.82318],[93.66829,25.82183],[93.66764,25.82596],[93.67116,25.82405],[93.67262,25.82764],[93.67863,25.82841],[93.68068,25.83343],[93.67945,25.83503],[93.68056,25.83835],[93.69022,25.84069],[93.68565,25.84367],[93.6883,25.84595],[93.69143,25.84385],[93.69469,25.84799],[93.69923,25.84657],[93.70113,25.84957],[93.69965,25.84551],[93.70088,25.84327],[93.70781,25.84781],[93.71183,25.84414],[93.71432,25.84451],[93.70208,25.85154],[93.68153,25.90439],[93.68476,25.9037],[93.69398,25.91172],[93.70088,25.91066],[93.70545,25.91492],[93.70663,25.91883],[93.71362,25.91681],[93.71869,25.91985],[93.72821,25.92058],[93.73397,25.92389],[93.73615,25.92276],[93.73703,25.92515],[93.73864,25.92532],[93.73655,25.92767],[93.73953,25.92982],[93.73953,25.93179],[93.74764,25.93492],[93.75131,25.93281],[93.75202,25.93596],[93.7462,25.9387],[93.74512,25.94234],[93.74714,25.94318],[93.75038,25.94087],[93.75246,25.94212],[93.75293,25.94667],[93.75846,25.94551],[93.75865,25.95262],[93.76181,25.95114],[93.76421,25.95444],[93.76419,25.95085],[93.76796,25.95101],[93.76823,25.95359],[93.76355,25.95937],[93.76952,25.95875],[93.77003,25.96126],[93.76814,25.96742],[93.76458,25.96853],[93.76545,25.96975],[93.77142,25.96799],[93.77358,25.97048],[93.77719,25.96824],[93.77715,25.96644],[93.77446,25.96553],[93.77509,25.96139],[93.77861,25.9603],[93.7769,25.95812],[93.78032,25.95648],[93.78327,25.95041],[93.78589,25.94967],[93.78734,25.94658],[93.78463,25.94387],[93.78726,25.94389],[93.78674,25.93821],[93.78989,25.93392],[93.78647,25.9321],[93.7879,25.93146],[93.78735,25.93013],[93.78998,25.92975],[93.78901,25.92806],[93.79099,25.92623],[93.78915,25.92226],[93.79052,25.92006],[93.78872,25.91689],[93.79186,25.91556],[93.79216,25.91291],[93.7943,25.91266],[93.79426,25.90756],[93.79201,25.9066],[93.79567,25.90651],[93.79568,25.90024],[93.79401,25.89952],[93.79352,25.89556],[93.79537,25.89238],[93.79205,25.89134],[93.79203,25.88914],[93.7892,25.88967],[93.78416,25.88434],[93.78476,25.87995],[93.78735,25.87688],[93.78517,25.87005],[93.78895,25.87011],[93.78984,25.86781],[93.78497,25.86426],[93.78443,25.85842],[93.78141,25.85649],[93.77853,25.85687],[93.78113,25.85401],[93.77754,25.84981],[93.78111,25.84459],[93.77782,25.84241],[93.77816,25.84012],[93.78036,25.84086],[93.78145,25.8395],[93.78033,25.83543],[93.78479,25.82903],[93.78424,25.82617],[93.78709,25.82216],[93.78751,25.81576],[93.79005,25.81123],[93.79547,25.80893],[93.80384,25.81142],[93.8063,25.81689],[93.81639,25.82261],[93.82115,25.83874],[93.82526,25.8444],[93.82972,25.84651],[93.83048,25.84925],[93.8397,25.85661],[93.85226,25.85823],[93.85857,25.85369],[93.86918,25.85093],[93.87611,25.84248],[93.8818,25.84335],[93.88654,25.84832],[93.88997,25.85864],[93.89604,25.85786],[93.90195,25.87085],[93.90751,25.87252],[93.91157,25.87652],[93.91088,25.87945],[93.916,25.8837],[93.93398,25.88525],[93.93542,25.89445],[93.93797,25.89631],[93.94432,25.89552],[93.94501,25.89764],[93.95166,25.89857],[93.95977,25.90211],[93.96107,25.90123],[93.9667,25.90589],[93.97121,25.91276],[93.9787,25.91673],[93.97799,25.92807],[93.96996,25.93678],[93.96871,25.95726],[93.95415,25.96926],[93.95915,25.99433],[93.953,26.00297],[93.96054,26.01536],[93.9627,26.02576],[93.96247,26.03654],[93.97039,26.04035],[93.97076,26.04642],[93.98739,26.06679],[93.98153,26.08124],[93.98274,26.08336],[93.98865,26.08634],[93.98948,26.09753],[93.99793,26.10956],[93.99577,26.1122],[93.98874,26.11082],[93.98676,26.1139],[93.99387,26.11866],[93.99349,26.12394],[93.99782,26.12877],[93.98887,26.1282],[93.98724,26.13108],[93.99086,26.13364],[93.99831,26.13124],[94.00217,26.13443],[94.0036,26.14423],[94.00083,26.14698],[93.99591,26.14642],[93.99452,26.14831],[93.99658,26.15347],[94.0011,26.1552],[94.00366,26.16011],[94.00137,26.16578],[94.00261,26.17087],[94.00108,26.17227],[94.00781,26.1825],[94.01536,26.18402],[94.02179,26.19381],[94.03203,26.19754],[94.03646,26.22605],[94.0424,26.2345],[94.04769,26.24936],[94.05608,26.25501],[94.06786,26.25697],[94.07092,26.26232],[94.07462,26.26438],[94.07471,26.27304],[94.07224,26.27611],[94.07473,26.2836],[94.0841,26.28334],[94.08427,26.28897],[94.09778,26.30196],[94.10078,26.30863],[94.09971,26.3139],[94.10251,26.31523],[94.10505,26.31995],[94.10968,26.31992],[94.11206,26.31799],[94.12168,26.31776],[94.11498,26.32395],[94.11593,26.32969],[94.11975,26.3288],[94.12492,26.33081],[94.12838,26.33036],[94.13873,26.33628],[94.14099,26.33531],[94.14101,26.33137],[94.14506,26.33059],[94.14758,26.33346],[94.16287,26.33551],[94.16718,26.33932],[94.17164,26.33796],[94.17456,26.34046],[94.17759,26.34642],[94.17261,26.35059],[94.16871,26.35093],[94.16706,26.34799],[94.16203,26.34716],[94.16016,26.35429],[94.17113,26.36275],[94.17411,26.37072],[94.17223,26.37365],[94.17758,26.38201],[94.17319,26.40328],[94.17401,26.40951],[94.17191,26.41584],[94.17572,26.42443],[94.17173,26.42978],[94.17613,26.43642],[94.18523,26.45843],[94.19405,26.46124],[94.20266,26.46906],[94.20249,26.47278],[94.20751,26.48647],[94.22127,26.49813],[94.23662,26.50614],[94.24872,26.52497],[94.24782,26.52821],[94.25332,26.53279],[94.25634,26.54122],[94.27064,26.54928],[94.27151,26.55155],[94.28479,26.56107],[94.28127,26.54865],[94.28614,26.54251],[94.28194,26.54059],[94.28096,26.53506],[94.28291,26.5294],[94.28176,26.5245],[94.28656,26.51522],[94.28582,26.51234],[94.28338,26.51075],[94.28323,26.50497],[94.29006,26.48877],[94.28975,26.47971],[94.2923,26.47757],[94.29157,26.47522],[94.29324,26.47429],[94.29343,26.4711],[94.29928,26.46682],[94.29992,26.46365],[94.30351,26.46416],[94.30578,26.46323],[94.30671,26.46079],[94.30798,26.46253],[94.31662,26.45832],[94.31844,26.46528],[94.32385,26.46551],[94.32128,26.47102],[94.32257,26.47244],[94.31956,26.47421],[94.3216,26.47566],[94.32647,26.47544],[94.32552,26.48195],[94.33041,26.4795],[94.332,26.48058],[94.33394,26.47933],[94.33631,26.48205],[94.33944,26.4805],[94.34081,26.48554],[94.34386,26.48471],[94.34469,26.48875],[94.34686,26.486],[94.34927,26.4911],[94.35285,26.49006],[94.35011,26.49243],[94.34665,26.49207],[94.34947,26.49377],[94.34957,26.49626],[94.35296,26.49928],[94.35064,26.50242],[94.34763,26.5032],[94.34779,26.50446],[94.35421,26.50306],[94.35748,26.50518],[94.36271,26.50566],[94.36563,26.50354],[94.36843,26.50596],[94.36932,26.50466],[94.37217,26.50604],[94.37468,26.50845],[94.3713,26.51443],[94.3731,26.51494],[94.37508,26.51282],[94.37626,26.51382],[94.37608,26.51567],[94.37336,26.51711],[94.37565,26.51818],[94.37614,26.52178],[94.3782,26.52117],[94.38095,26.5258],[94.3852,26.52578],[94.38544,26.53053],[94.39,26.52691],[94.39142,26.53035],[94.39326,26.52738],[94.39577,26.52733],[94.39759,26.52988],[94.39525,26.53361],[94.39819,26.53525],[94.40088,26.53415],[94.39777,26.53862],[94.3999,26.5403],[94.40265,26.53947],[94.40272,26.54135],[94.3966,26.54271],[94.40111,26.54289],[94.40308,26.54525],[94.40616,26.54403],[94.4062,26.54584],[94.40123,26.54828],[94.40627,26.54919],[94.40498,26.5542],[94.402,26.55467],[94.40648,26.55575],[94.40342,26.55827],[94.40734,26.56033],[94.40657,26.56186],[94.40411,26.56143],[94.40621,26.56271],[94.40585,26.56788],[94.41125,26.57215],[94.40993,26.57652],[94.41338,26.57719],[94.41163,26.57943],[94.4122,26.58297],[94.40959,26.58483],[94.40938,26.5877],[94.40749,26.5879],[94.40767,26.59163],[94.40188,26.59356],[94.40259,26.60313],[94.40507,26.60389],[94.40556,26.60563],[94.40292,26.61057],[94.42574,26.61715],[94.4356,26.62204],[94.45128,26.63629],[94.45273,26.63407],[94.45515,26.63547],[94.4536,26.63194],[94.45793,26.6336],[94.46549,26.63306],[94.4598,26.63685],[94.45908,26.64461],[94.45315,26.65255],[94.4541,26.65391],[94.45845,26.65354],[94.46028,26.66163],[94.48506,26.66785],[94.49267,26.66589],[94.50147,26.67229],[94.50514,26.67865],[94.50905,26.68023],[94.50825,26.6853],[94.51038,26.68477],[94.51329,26.68009],[94.51758,26.68193],[94.5177,26.68732],[94.52081,26.69416],[94.5207,26.69921],[94.52421,26.69576],[94.52654,26.69895],[94.5336,26.70131],[94.53926,26.70618],[94.54519,26.70523],[94.54791,26.70632],[94.5503,26.70172],[94.55503,26.70507],[94.56235,26.70507],[94.56098,26.70056],[94.56243,26.69553],[94.55939,26.68643],[94.56649,26.68356],[94.57157,26.68664],[94.56747,26.68748],[94.5664,26.69007],[94.56788,26.69292],[94.57209,26.69457],[94.57732,26.70066],[94.58246,26.69739],[94.59388,26.6972],[94.59153,26.70016],[94.59444,26.70226],[94.59252,26.70496],[94.59337,26.71497],[94.5973,26.71679],[94.60228,26.71162],[94.60334,26.71235],[94.60109,26.71455],[94.60241,26.71653],[94.60153,26.71911],[94.59416,26.71908],[94.59109,26.7206],[94.59292,26.72325],[94.59215,26.72488],[94.59562,26.72629],[94.59355,26.73146],[94.59707,26.73455],[94.60608,26.73389],[94.60769,26.73721],[94.60964,26.73694],[94.60806,26.72883],[94.61582,26.72656],[94.62066,26.72313],[94.61897,26.713],[94.6203,26.71212],[94.62427,26.71529],[94.63582,26.71709],[94.64164,26.72041],[94.64876,26.72042],[94.65302,26.71875],[94.69235,26.73193],[94.70717,26.74631],[94.73689,26.76372],[94.74068,26.77184],[94.74018,26.77598],[94.74835,26.7727],[94.75182,26.76619],[94.75833,26.76601],[94.76059,26.77541],[94.7668,26.77756],[94.7674,26.78534],[94.77022,26.78904],[94.77374,26.79061],[94.77566,26.78976],[94.78873,26.79556],[94.79117,26.79975],[94.79978,26.79978],[94.80272,26.80132],[94.80319,26.80617],[94.79578,26.81008],[94.79525,26.81442],[94.80379,26.81367],[94.80622,26.81513],[94.80646,26.81842],[94.81446,26.81954],[94.81317,26.83365],[94.81562,26.8373],[94.81945,26.83759],[94.82112,26.8417],[94.81749,26.84751],[94.8242,26.85424],[94.82866,26.85532],[94.83454,26.86035],[94.83647,26.86877],[94.8432,26.86851],[94.85012,26.87459],[94.85107,26.8811],[94.85784,26.88848],[94.85845,26.89221],[94.86523,26.90398],[94.86601,26.90873],[94.87359,26.91752],[94.89064,26.92954],[94.89782,26.93125],[94.90245,26.93467],[94.91437,26.93677],[94.91672,26.94125],[94.92349,26.94637],[94.92561,26.94079],[94.93085,26.9369],[94.93085,26.93256],[94.94026,26.93356],[94.94186,26.93531],[94.95324,26.93761],[94.9555,26.9401],[94.9575,26.93748],[94.96124,26.93712],[94.96718,26.92351],[94.9765,26.92128],[94.98262,26.913],[94.98998,26.91421],[94.99129,26.92081],[95.00025,26.91951],[95.00415,26.92089],[95.01676,26.92106],[95.03413,26.9356],[95.04408,26.93874],[95.04969,26.93876],[95.06786,26.9483],[95.08504,26.95164],[95.10181,26.96179],[95.10608,26.96549],[95.10792,26.97594],[95.11196,26.98066],[95.12421,26.98544],[95.1388,26.99485],[95.14476,26.99585],[95.15018,26.99924],[95.18237,27.02544],[95.19306,27.03593],[95.19424,27.03413],[95.19321,27.03172],[95.19479,27.0312],[95.19618,27.03184],[95.19666,27.03699],[95.20322,27.03588],[95.20466,27.03771],[95.20527,27.03241],[95.20723,27.03234],[95.20752,27.03045],[95.21062,27.03097],[95.20948,27.0304],[95.21069,27.02854],[95.21386,27.03096],[95.2154,27.03016],[95.21919,27.03195],[95.22353,27.03606],[95.22687,27.03443],[95.23032,27.0357],[95.23108,27.03909],[95.22933,27.04152],[95.23223,27.04275],[95.23302,27.03748],[95.23947,27.03639],[95.24384,27.02606],[95.24644,27.0238],[95.25657,27.03041],[95.25899,27.03027],[95.25844,27.03382],[95.26007,27.03555],[95.26339,27.03507],[95.27158,27.04118],[95.27713,27.04238],[95.27585,27.04408],[95.27768,27.04832],[95.27524,27.04997],[95.27632,27.05219],[95.29183,27.06649],[95.30004,27.07005],[95.31681,27.08281],[95.32927,27.08766],[95.35476,27.10391],[95.3649,27.10818],[95.36865,27.10709],[95.36376,27.10255],[95.3712,27.10079],[95.37012,27.09449],[95.37467,27.09268],[95.38302,27.0982],[95.38199,27.10028],[95.38464,27.10554],[95.39854,27.10872],[95.42065,27.12578],[95.43961,27.12592],[95.4406,27.12874],[95.44473,27.12879],[95.44242,27.13139],[95.44441,27.13521],[95.4493,27.13459],[95.44941,27.12968],[95.45327,27.12943],[95.45817,27.13796],[95.45657,27.14055],[95.45748,27.14413],[95.46222,27.14966],[95.45965,27.15374],[95.45332,27.15733],[95.46252,27.16171],[95.46551,27.16636],[95.46471,27.17221],[95.45952,27.17569],[95.4666,27.18164],[95.46017,27.19134],[95.46246,27.19437],[95.45914,27.19543],[95.45842,27.20018],[95.45589,27.20253],[95.45758,27.20878],[95.46716,27.21337],[95.46754,27.21832],[95.47244,27.21893],[95.47147,27.22272],[95.47745,27.22676],[95.47966,27.23096],[95.47884,27.23406],[95.48293,27.23652],[95.48426,27.24125],[95.49209,27.24554],[95.49963,27.24618],[95.50467,27.24936],[95.50881,27.26187],[95.51147,27.26191],[95.51504,27.25794],[95.5182,27.25756],[95.52551,27.26377],[95.52789,27.26308],[95.53012,27.26449],[95.52982,27.26182],[95.53162,27.26105],[95.53452,27.26459],[95.53515,27.26156],[95.53711,27.2625],[95.54203,27.25901],[95.54512,27.25999],[95.54851,27.25732],[95.54823,27.25394],[95.55195,27.25315],[95.55099,27.25045],[95.55354,27.24886],[95.55808,27.24898],[95.56431,27.24467],[95.57465,27.24364],[95.5752,27.23978],[95.57727,27.23807],[95.57456,27.23436],[95.57826,27.23207],[95.58046,27.22781],[95.58298,27.22851],[95.58454,27.22489],[95.58757,27.22294],[95.60382,27.22422],[95.61062,27.2276],[95.6122,27.23021],[95.61757,27.2309],[95.61903,27.23248],[95.63234,27.22968],[95.67603,27.24696],[95.68153,27.25174],[95.69236,27.25321],[95.70151,27.24857],[95.70788,27.25006],[95.71198,27.25284],[95.71378,27.25024],[95.72021,27.24948],[95.72713,27.25965],[95.73469,27.26039],[95.73618,27.26326],[95.74211,27.26666],[95.7477,27.26575],[95.75686,27.26864],[95.76518,27.26726],[95.77525,27.27041],[95.77958,27.26975],[95.78059,27.27246],[95.78818,27.27672],[95.7879,27.27865],[95.79522,27.28253],[95.79954,27.28234],[95.80089,27.28427],[95.80262,27.28294],[95.79945,27.27655],[95.80553,27.2758],[95.80516,27.27295],[95.81538,27.27854],[95.82332,27.27887],[95.8505,27.28659],[95.85931,27.28722],[95.85382,27.2792],[95.85643,27.27106],[95.86383,27.26644],[95.86937,27.26002],[95.8765,27.25964],[95.88132,27.25591],[95.89243,27.25528],[95.89418,27.25692],[95.89462,27.26101],[95.89356,27.26757],[95.89945,27.26868],[95.90008,27.27425],[95.90435,27.27392],[95.89709,27.28054],[95.89721,27.28216],[95.90111,27.28392],[95.90606,27.28222],[95.90717,27.28897],[95.91338,27.28914],[95.91478,27.29201],[95.91799,27.29134],[95.93012,27.30028],[95.93756,27.30082],[95.94172,27.30523],[95.94663,27.30379],[95.95343,27.30892],[95.96004,27.31095],[95.95656,27.31257],[95.95505,27.31768],[95.96103,27.31644],[95.96276,27.32314],[95.96912,27.32241],[95.97556,27.32446],[95.97209,27.32744],[95.96772,27.32567],[95.96529,27.32788],[95.97101,27.33282],[95.97158,27.33655],[95.97654,27.33738],[95.98688,27.34561],[95.98921,27.3565],[95.99329,27.35794],[95.9965,27.35636],[96.00249,27.36074],[96.00753,27.36063],[96.0127,27.36503],[96.01775,27.36492],[96.01788,27.36943],[95.99817,27.38789],[95.99647,27.3946],[95.99349,27.39639],[95.99014,27.40236],[95.98456,27.40445],[95.9833,27.41183],[95.97405,27.41137],[95.97022,27.41491],[95.97078,27.41683],[95.97515,27.41746],[95.97539,27.41939],[95.97408,27.42169],[95.96962,27.4235],[95.96935,27.42789],[95.96547,27.42701],[95.96456,27.41805],[95.96179,27.41801],[95.9632,27.42721],[95.96034,27.42903],[95.95675,27.4265],[95.95475,27.41962],[95.95113,27.42397],[95.94519,27.42664],[95.94745,27.43299],[95.94131,27.43729],[95.93444,27.43564],[95.92787,27.43847],[95.91823,27.43473],[95.91089,27.43577],[95.90798,27.43435],[95.90001,27.42202],[95.89867,27.41286],[95.89099,27.40121],[95.88573,27.39815],[95.88403,27.4025],[95.8883,27.40899],[95.88759,27.41166],[95.88395,27.41402],[95.88494,27.43212],[95.88322,27.43532],[95.87875,27.43612],[95.87567,27.43479],[95.87088,27.42635],[95.85714,27.41988],[95.85702,27.41564],[95.86245,27.41153],[95.8625,27.40945],[95.86014,27.40801],[95.85296,27.41111],[95.85002,27.41781],[95.84451,27.42158],[95.84234,27.42775],[95.84729,27.43619],[95.84682,27.43856],[95.84947,27.44161],[95.85675,27.44493],[95.85332,27.45691],[95.85655,27.46126],[95.87069,27.46665],[95.87154,27.47611],[95.87389,27.48116],[95.87294,27.49078],[95.8743,27.49325],[95.88003,27.49703],[95.88685,27.49708],[95.8843,27.50105],[95.8788,27.50489],[95.87584,27.51242],[95.8785,27.51876],[95.87665,27.54428],[95.8758,27.54649],[95.87371,27.547],[95.8703,27.54528],[95.86263,27.54537],[95.86074,27.5431],[95.8529,27.55279],[95.84127,27.56205],[95.8363,27.55926],[95.83335,27.56002],[95.82344,27.57448],[95.81434,27.57425],[95.81192,27.58322],[95.8138,27.58898],[95.81845,27.59539],[95.8158,27.59867],[95.80557,27.60095],[95.79533,27.59766],[95.79064,27.59965],[95.78943,27.604],[95.79034,27.61174],[95.78514,27.61561],[95.78003,27.61662],[95.77832,27.61938],[95.77853,27.62398],[95.77957,27.62564],[95.7895,27.62631],[95.7883,27.63484],[95.79443,27.63887],[95.79603,27.63786],[95.79578,27.64173],[95.79015,27.64476],[95.78784,27.64396],[95.78622,27.64632],[95.77432,27.6508],[95.77043,27.6577],[95.77297,27.66204],[95.77197,27.66409],[95.77514,27.67432],[95.77906,27.67728],[95.79046,27.68014],[95.78616,27.68175],[95.78513,27.68514],[95.783,27.68464],[95.78293,27.68721],[95.77723,27.68755],[95.77331,27.6849],[95.76787,27.68699],[95.76715,27.69049],[95.76539,27.69077],[95.76378,27.69376],[95.76573,27.69757],[95.76455,27.6997],[95.76803,27.70209],[95.7629,27.70902],[95.76418,27.71113],[95.76251,27.71316],[95.76536,27.71466],[95.75419,27.71842],[95.75226,27.72092],[95.75249,27.72423],[95.75415,27.7257],[95.75903,27.72704],[95.76557,27.72639],[95.77938,27.73371],[95.78055,27.73692],[95.77798,27.74246],[95.776,27.75362],[95.78689,27.75967],[95.7944,27.76908],[95.80035,27.77369],[95.80392,27.7846],[95.80955,27.78908],[95.81092,27.79653],[95.81665,27.80269],[95.82659,27.80872],[95.83807,27.81023],[95.83776,27.82412],[95.85439,27.83002],[95.87041,27.83267],[95.88366,27.84611],[95.88845,27.85657],[95.89114,27.85685],[95.89025,27.85999],[95.89534,27.85737],[95.89475,27.862],[95.90492,27.86212],[95.90146,27.86648],[95.90169,27.86847],[95.90335,27.86891],[95.90658,27.866],[95.90859,27.86871],[95.90729,27.87044],[95.9107,27.87019],[95.91012,27.87241],[95.91454,27.87576],[95.91702,27.88046],[95.91555,27.88376],[95.91944,27.8806],[95.92509,27.88168],[95.92076,27.88464],[95.9168,27.885],[95.9155,27.88939],[95.91768,27.89007],[95.9237,27.8881],[95.91923,27.89504],[95.92597,27.89534],[95.92633,27.89888],[95.92785,27.8987],[95.92849,27.89513],[95.93775,27.8982],[95.93178,27.90014],[95.92983,27.90274],[95.94105,27.90561],[95.93553,27.90749],[95.93815,27.91253],[95.94266,27.91069],[95.94712,27.91745],[95.95269,27.92009],[95.94855,27.92439],[95.95476,27.9312],[95.94924,27.9312],[95.9483,27.93712],[95.95456,27.94114],[95.9652,27.95167],[95.97174,27.96245],[95.82388,27.97148],[95.60528,27.95462],[95.59371,27.94677],[95.58611,27.93672],[95.576,27.9397],[95.56859,27.9359],[95.56481,27.92927],[95.56354,27.91926],[95.55383,27.91373],[95.54467,27.91084],[95.54219,27.90627],[95.54427,27.89978],[95.53994,27.89646],[95.53404,27.89814],[95.52616,27.89062],[95.52013,27.88124],[95.37958,27.83918],[95.30876,27.86801],[94.92233,27.74992],[94.85235,27.7276],[94.84841,27.71711],[94.84783,27.70557],[94.84097,27.70061],[94.82078,27.69208],[94.80828,27.69198],[94.79698,27.69563],[94.79373,27.69518],[94.79187,27.68809],[94.78905,27.68518],[94.78411,27.6839],[94.77866,27.6797],[94.76916,27.67952],[94.76093,27.66504],[94.75431,27.66055],[94.74137,27.65989],[94.73573,27.66329],[94.72897,27.66453],[94.72514,27.669],[94.72051,27.66692],[94.71602,27.65753],[94.70904,27.65658],[94.70049,27.66145],[94.6909,27.66174],[94.68791,27.66514],[94.6838,27.66017],[94.68665,27.65099],[94.68268,27.64589],[94.67911,27.64515],[94.67275,27.64722],[94.66265,27.64533],[94.6574,27.64178],[94.64668,27.63807],[94.64137,27.62944],[94.63319,27.62416],[94.62846,27.62454],[94.62347,27.62781],[94.62087,27.62495],[94.61438,27.62397],[94.60659,27.61862],[94.60289,27.62123],[94.60001,27.61817],[94.59559,27.61968],[94.58755,27.61846],[94.57974,27.6123],[94.57685,27.60589],[94.57409,27.60381],[94.56857,27.60234],[94.56222,27.6049],[94.55532,27.60075],[94.54459,27.60103],[94.53596,27.59253],[94.53214,27.59457],[94.52958,27.59139],[94.52201,27.59142],[94.52151,27.58455],[94.51385,27.58011],[94.50247,27.57741],[94.50141,27.57399],[94.49896,27.57217],[94.4778,27.57614],[94.46791,27.56115],[94.46173,27.55524],[94.45644,27.55984],[94.45494,27.5666],[94.45133,27.57176],[94.4396,27.58122],[94.43333,27.58842],[94.43171,27.59162],[94.43168,27.60033],[94.41846,27.59752],[94.40161,27.58498],[94.39239,27.58902],[94.38859,27.58479],[94.3819,27.5816],[94.3765,27.58237],[94.36989,27.57475],[94.36401,27.57435],[94.35914,27.57693],[94.35068,27.57711],[94.34492,27.58213],[94.33824,27.58122],[94.33697,27.57919],[94.33283,27.58695],[94.32432,27.58462],[94.32278,27.58864],[94.30926,27.59078],[94.30182,27.60102],[94.29826,27.60193],[94.28985,27.59616],[94.2883,27.58926],[94.2774,27.58944],[94.27381,27.59497],[94.27465,27.59983],[94.27247,27.60294],[94.2564,27.61051],[94.25426,27.61423],[94.25468,27.61579],[94.26094,27.6181],[94.26058,27.62187],[94.2631,27.62426],[94.26558,27.62421],[94.26711,27.62735],[94.26741,27.62949],[94.26171,27.63587],[94.25441,27.63565],[94.25146,27.63763],[94.24847,27.634],[94.23756,27.63268],[94.22279,27.61141],[94.21736,27.60725],[94.20959,27.60891],[94.20951,27.60508],[94.21337,27.6002],[94.22664,27.59774],[94.22283,27.5882],[94.22495,27.57409],[94.23481,27.56916],[94.24672,27.56947],[94.2587,27.55546],[94.2594,27.54905],[94.25687,27.54171],[94.25749,27.53703],[94.26826,27.52084],[94.22082,27.50528],[94.214,27.5008],[94.20905,27.49253],[94.20064,27.49488],[94.18928,27.4924],[94.1842,27.48665],[94.17623,27.48215],[94.16913,27.48123],[94.16454,27.47678],[94.15667,27.47486],[94.15942,27.46162],[94.15508,27.4591],[94.15538,27.45697],[94.13146,27.44092],[94.12769,27.43459],[94.11786,27.42969],[94.10494,27.41397],[94.0896,27.40705],[94.07575,27.38968],[94.06921,27.37346],[94.06085,27.3653],[94.06146,27.36373],[94.05981,27.36154],[94.05404,27.36034],[94.04055,27.3515],[94.03092,27.34839],[94.03026,27.34566],[94.02784,27.34684],[94.0258,27.34484],[94.02211,27.3462],[94.01157,27.3385],[93.99125,27.32835],[93.95527,27.29326],[93.92824,27.26422],[93.8994,27.23909],[93.86423,27.19615],[93.85987,27.19348],[93.83871,27.17234],[93.82535,27.16848],[93.80599,27.14876],[93.80539,27.13713],[93.79597,27.13765],[93.79447,27.13452],[93.79691,27.12894],[93.80319,27.13278],[93.80702,27.13066],[93.81212,27.13113],[93.81294,27.1293],[93.80943,27.12334],[93.81405,27.12128],[93.81994,27.12275],[93.82507,27.11642],[93.8266,27.11206],[93.82556,27.10359],[93.82667,27.09697],[93.8314,27.09091],[93.8315,27.08678],[93.83777,27.08537],[93.8332,27.08156],[93.8356,27.0782],[93.83567,27.0743],[93.8298,27.06797],[93.82861,27.06885],[93.82923,27.06681],[93.82741,27.06594],[93.82199,27.06777],[93.82121,27.0644],[93.81499,27.06146],[93.81074,27.06747],[93.80841,27.06593],[93.81139,27.05894],[93.80768,27.05981],[93.80336,27.05806],[93.79684,27.06527],[93.79527,27.07246],[93.79378,27.07234],[93.79304,27.06828],[93.79879,27.06239],[93.80022,27.05785],[93.79522,27.05701],[93.79441,27.06192],[93.79383,27.05452],[93.78942,27.0506],[93.78379,27.05145],[93.78304,27.06435],[93.78119,27.06552],[93.78109,27.05882],[93.77957,27.05806],[93.77828,27.04894],[93.77087,27.06204],[93.77185,27.05408],[93.76786,27.05128],[93.76799,27.05445],[93.76673,27.05291],[93.76742,27.03944],[93.74353,27.02769],[93.73298,27.02594],[93.72338,27.02081],[93.70891,27.00811],[93.69367,26.989],[93.67077,26.97149],[93.65744,26.96632],[93.62746,26.96316],[93.61473,26.9603],[93.58667,26.95047],[93.56036,26.95273],[93.54915,26.95001],[93.54494,26.95123],[93.54101,26.94897],[93.52112,26.9477],[93.50575,26.94339],[93.4891,26.93618],[93.48626,26.94228],[93.47473,26.93932],[93.47065,26.9366],[93.46249,26.93788],[93.44877,26.95078],[93.38049,26.95922],[93.32272,26.96001],[93.24682,26.95125],[93.20095,26.94322],[93.17256,26.93599],[93.10737,26.92576],[93.08823,26.91439],[93.06272,26.92227],[93.02186,26.91342],[92.98189,26.93605],[92.91715,26.96293],[92.91553,26.97392],[92.91841,26.98231],[92.88661,26.99975],[92.85727,27.00164],[92.83886,27.00485],[92.82374,27.00934],[92.79348,27.02285],[92.77835,27.02282],[92.76322,27.02731],[92.75315,27.02278],[92.73299,27.02275],[92.72292,27.01821],[92.71283,27.02271],[92.69771,27.02268],[92.69265,27.02718],[92.68761,27.02717],[92.67752,27.03166],[92.67248,27.03165],[92.66745,27.02712],[92.6448,26.98666],[92.58334,26.95954],[92.55419,26.95744],[92.49686,26.96337],[92.44747,26.95881],[92.42581,26.94104],[92.41201,26.94276],[92.39833,26.92469],[92.3671,26.92868],[92.36319,26.93454],[92.30266,26.92264],[92.30296,26.90714],[92.27609,26.902],[92.25519,26.90961],[92.23802,26.90579],[92.1948,26.88996],[92.16986,26.89165],[92.12002,26.88898],[92.11438,26.89358],[92.10192,26.88106],[92.10265,26.86717],[92.0782,26.85554],[92.05672,26.84738],[92.01713,26.85001],[91.9835,26.85819],[91.97047,26.87066],[91.96421,26.88253],[91.9436,26.89499],[91.89174,26.91906],[91.88494,26.91667],[91.85911,26.91334],[91.82415,26.86404],[91.72081,26.81181],[91.70459,26.81295],[91.6898,26.80645],[91.62552,26.82087],[91.59242,26.80519],[91.49511,26.79121],[91.46395,26.80235],[91.44555,26.81222],[91.40765,26.8396],[91.37601,26.79523],[91.33725,26.78086],[91.29663,26.78697],[91.27709,26.80031],[91.23689,26.812],[91.19213,26.81342],[91.14585,26.81087],[91.09756,26.82199],[91.05406,26.78099],[90.99187,26.79064],[90.95928,26.78448],[90.95692,26.78162],[90.9565,26.78777],[90.81643,26.77598],[90.74236,26.77483],[90.71728,26.76827],[90.69326,26.77064],[90.67598,26.78409],[90.64657,26.77658],[90.63444,26.79381],[90.58455,26.80374],[90.54661,26.81664],[90.41665,26.90453],[90.35656,26.90066],[90.35027,26.88913],[90.34779,26.87529],[90.3003,26.84822],[90.28329,26.85283],[90.24878,26.85904],[90.2305,26.85891],[90.20077,26.83529],[90.18767,26.80681],[90.19452,26.77327],[90.13988,26.75362],[90.04955,26.73037],[90.00824,26.73215],[89.96706,26.72347],[89.89734,26.72434],[89.86292,26.73707],[89.85895,26.73492],[89.86449,26.73002],[89.86207,26.71645],[89.86552,26.70551],[89.86334,26.70081],[89.87477,26.68227],[89.87235,26.67248],[89.87419,26.66672],[89.87078,26.66065],[89.87046,26.65533],[89.87693,26.64851],[89.86713,26.63494],[89.85916,26.62956],[89.85825,26.62338],[89.86415,26.61573],[89.87842,26.61553],[89.87953,26.6093],[89.87377,26.59134],[89.8826,26.58339],[89.87292,26.5783],[89.87116,26.57907],[89.86599,26.57677],[89.86449,26.57324],[89.86736,26.56948],[89.86899,26.55387],[89.86318,26.54164],[89.86586,26.53228],[89.85662,26.52073],[89.85604,26.51478],[89.85878,26.51261],[89.85676,26.5066],[89.85683,26.50076],[89.85884,26.49991],[89.85397,26.49183],[89.85414,26.48817],[89.85633,26.4854],[89.86237,26.48355],[89.86159,26.48188],[89.86482,26.46912],[89.86863,26.46861],[89.87244,26.4645],[89.87043,26.4567],[89.87215,26.45207],[89.8642,26.44676],[89.86266,26.44292],[89.85856,26.43957],[89.8587,26.43556],[89.85568,26.4326],[89.85772,26.42993],[89.85587,26.42492],[89.84916,26.42279],[89.84976,26.42046],[89.85671,26.41494],[89.85748,26.41198],[89.83525,26.41202],[89.83297,26.40838],[89.83243,26.40001],[89.82995,26.397],[89.83031,26.39358],[89.83219,26.39182],[89.8376,26.39098],[89.84328,26.3938],[89.8472,26.3989],[89.84781,26.40415],[89.84988,26.40359],[89.85734,26.39613],[89.85542,26.39087],[89.8589,26.38403],[89.8545,26.38216],[89.85148,26.38525],[89.84705,26.38525],[89.84302,26.37781],[89.83967,26.37862],[89.83525,26.38396],[89.83202,26.38392],[89.82592,26.37763],[89.82948,26.37078],[89.82764,26.36631],[89.82207,26.36315],[89.82197,26.35967],[89.82577,26.35485],[89.82276,26.35163],[89.81538,26.35258],[89.81283,26.3571],[89.81331,26.36151],[89.81998,26.36663],[89.82192,26.37181],[89.8201,26.37024],[89.81372,26.37105],[89.80482,26.36284],[89.79305,26.35868],[89.78318,26.3514],[89.78154,26.34163],[89.78373,26.33209],[89.78107,26.32786],[89.76926,26.32429],[89.76909,26.32129],[89.76428,26.31607],[89.76031,26.3166],[89.75535,26.32321],[89.75124,26.32095],[89.75414,26.30222],[89.76089,26.2921],[89.75812,26.28779],[89.7478,26.29126],[89.74484,26.29689],[89.73691,26.29261],[89.72632,26.29471],[89.72139,26.29951],[89.72585,26.30722],[89.72371,26.30928],[89.71981,26.30732],[89.71783,26.29582],[89.72413,26.28764],[89.735,26.27767],[89.73854,26.26994],[89.73428,26.26703],[89.73557,26.26149],[89.734,26.25941],[89.72202,26.25746],[89.71258,26.26191],[89.71471,26.26994],[89.71155,26.27126],[89.70585,26.27043],[89.70262,26.25786],[89.70583,26.25621],[89.71443,26.25825],[89.71708,26.25737],[89.71845,26.25585],[89.71648,26.24753],[89.71788,26.24515],[89.72629,26.24287],[89.73183,26.23988],[89.73216,26.23783],[89.72707,26.23316],[89.7141,26.23025],[89.71364,26.22212],[89.71004,26.21784],[89.70447,26.21719],[89.70119,26.21994],[89.70039,26.21845],[89.70211,26.2152],[89.7075,26.21228],[89.71287,26.21246],[89.7257,26.21818],[89.73171,26.21616],[89.73323,26.21199],[89.72721,26.20596],[89.71916,26.20662],[89.7116,26.20297],[89.71781,26.20135],[89.72037,26.1956],[89.71911,26.19229],[89.71307,26.18772],[89.7061,26.18773],[89.6986,26.19118],[89.70328,26.18299],[89.70354,26.17805],[89.71014,26.17242],[89.71365,26.17266],[89.72235,26.17771],[89.73293,26.17753],[89.73655,26.17279],[89.7289,26.17411],[89.72748,26.17196],[89.72886,26.16794],[89.72184,26.16747],[89.71698,26.16536],[89.71943,26.16631],[89.72049,26.1563],[89.74305,26.15932],[89.74766,26.15737],[89.75328,26.14842],[89.75403,26.1394],[89.76314,26.13704],[89.76657,26.13048],[89.76525,26.12478],[89.75543,26.11371],[89.75617,26.10936],[89.75787,26.10786],[89.76504,26.10954],[89.76832,26.10791],[89.76995,26.10453],[89.77632,26.10579],[89.77865,26.10813],[89.78316,26.10598],[89.78584,26.10136],[89.78338,26.1012],[89.78179,26.09823],[89.78437,26.0987],[89.78602,26.09633],[89.7831,26.09357],[89.78132,26.08344],[89.78514,26.08334],[89.79063,26.08929],[89.79485,26.08751],[89.79502,26.0833],[89.79014,26.07539],[89.7966,26.07631],[89.79495,26.07288],[89.79815,26.06572],[89.79557,26.06458],[89.79853,26.06507],[89.7973,26.06312],[89.79881,26.05958],[89.78535,26.05686],[89.78475,26.05138],[89.78731,26.05093],[89.78868,26.04871],[89.7792,26.04439],[89.77365,26.03764],[89.77657,26.03493],[89.77989,26.04042],[89.78765,26.04037],[89.78948,26.03962],[89.78768,26.03602],[89.79064,26.03429],[89.79305,26.03594],[89.79234,26.04058],[89.79364,26.04233],[89.80183,26.04026],[89.8023,26.03824],[89.7993,26.03518],[89.7978,26.03074],[89.79371,26.02813],[89.79399,26.02266],[89.79156,26.02087],[89.78782,26.02139],[89.78804,26.01921],[89.79159,26.01815],[89.7954,26.02181],[89.79419,26.02226],[89.79503,26.02319],[89.79772,26.02452],[89.8023,26.03226],[89.80504,26.04341],[89.80742,26.044],[89.81141,26.04083],[89.81388,26.03178],[89.81932,26.02582],[89.81536,26.02021],[89.81622,26.01698],[89.81896,26.01564],[89.82204,26.00993],[89.81919,26.00411],[89.82043,25.99756],[89.8186,25.99586],[89.81487,25.99787],[89.82027,25.98764],[89.82424,25.98495],[89.83594,25.98242],[89.83663,25.98657],[89.83322,25.99063],[89.83334,25.99554],[89.83093,26.00183],[89.83114,26.00985],[89.83584,26.0126],[89.84409,26.00619],[89.8477,26.00067],[89.84728,25.99677],[89.85042,25.98996],[89.86708,25.98258],[89.86728,25.97978],[89.86926,25.98149],[89.871,25.98079],[89.87333,25.97588],[89.86684,25.97203],[89.85623,25.96877],[89.84898,25.97097],[89.843,25.97085],[89.84108,25.96828],[89.83856,25.96785],[89.83854,25.96585],[89.84298,25.96409],[89.84719,25.95671],[89.8445,25.95476],[89.84934,25.94911],[89.8306,25.95517],[89.82568,25.95153],[89.82539,25.9455],[89.84235,25.94431],[89.83915,25.94108],[89.84274,25.94003],[89.84503,25.94003],[89.84858,25.94288],[89.86884,25.94439],[89.87619,25.94683],[89.88708,25.9452],[89.87811,25.92777],[89.87818,25.92423],[89.86232,25.90736],[89.86078,25.90733],[89.85683,25.8997],[89.84829,25.89208],[89.8488,25.88784],[89.83257,25.87061],[89.83568,25.85996],[89.83384,25.85406],[89.83528,25.84073],[89.82723,25.83294],[89.81654,25.8143],[89.8265,25.81021],[89.82997,25.80063],[89.82949,25.79642],[89.83127,25.79107],[89.83395,25.78836],[89.83398,25.78295],[89.83828,25.77603],[89.84033,25.76673],[89.84135,25.75899],[89.83649,25.75095],[89.82696,25.74036],[89.82837,25.72825],[89.83513,25.71576],[89.84926,25.71512],[89.85053,25.71296],[89.85193,25.70664],[89.84669,25.69562],[89.85171,25.68697],[89.85853,25.67974],[89.86355,25.66555],[89.86681,25.66277],[89.87109,25.66255],[89.87987,25.63687],[89.88179,25.62586],[89.88251,25.6172],[89.8788,25.60154],[89.87329,25.58761],[89.87564,25.58114],[89.87215,25.57317],[89.87292,25.56949],[89.87039,25.56808],[89.86729,25.56219],[89.86604,25.54619],[89.86301,25.5432],[89.85127,25.53863],[89.86013,25.51682],[89.86964,25.51091],[89.86679,25.50793],[89.85803,25.50652],[89.85564,25.50353],[89.85391,25.50424],[89.8552,25.49746],[89.84931,25.4928],[89.8505,25.48573],[89.84929,25.47392],[89.85225,25.47243],[89.85225,25.46588],[89.86543,25.47169],[89.87169,25.47735],[89.87228,25.48594],[89.87669,25.4955],[89.87681,25.5008],[89.87287,25.50742],[89.88594,25.50792],[89.88411,25.51424],[89.8807,25.51674],[89.88349,25.51911],[89.87995,25.518],[89.87734,25.51962],[89.87335,25.51689],[89.87347,25.51945],[89.87174,25.51853],[89.87149,25.52192],[89.86883,25.52149],[89.86794,25.52424],[89.86808,25.52987],[89.87883,25.5377],[89.87495,25.54373],[89.87836,25.55033],[89.8853,25.55499],[89.89247,25.55583],[89.89865,25.56051],[89.90157,25.55894],[89.90747,25.56135],[89.90959,25.56045],[89.91225,25.56317],[89.93687,25.5644],[89.94106,25.56826],[89.9538,25.57079],[89.9605,25.57445],[89.97216,25.57349],[89.97542,25.57611],[89.97854,25.58696],[89.9835,25.59125],[89.98771,25.59155],[89.99556,25.58624],[90.003,25.58542],[90.01112,25.59669],[90.01098,25.60156],[90.01685,25.60187],[90.01742,25.60502],[90.02025,25.60749],[90.0176,25.60788],[90.01859,25.61133],[90.01639,25.6098],[90.00984,25.61549],[90.00925,25.61919],[90.00421,25.62024],[90.00697,25.62332],[90.00412,25.62674],[89.99882,25.6224],[89.99519,25.62465],[89.99175,25.62408],[89.98318,25.62679],[89.98335,25.63055],[89.97916,25.63878],[89.96485,25.6468],[89.96293,25.64948],[89.95045,25.6556],[89.94674,25.66187],[89.94715,25.66615],[89.94544,25.66788],[89.94744,25.67103],[89.94292,25.67223],[89.94442,25.67926],[89.93752,25.68587],[89.93627,25.68975],[89.92358,25.69449],[89.91871,25.70515],[89.91348,25.70856],[89.9026,25.72526],[89.89913,25.72642],[89.89867,25.72957],[89.89569,25.73155],[89.8944,25.73494],[89.89474,25.74497],[89.8997,25.74714],[89.92608,25.73836],[89.93758,25.74543],[89.93523,25.75449],[89.94205,25.75584],[89.95478,25.76718],[89.95761,25.77539],[89.95536,25.77776],[89.95935,25.77993],[89.95439,25.78797],[89.95528,25.79653],[89.95843,25.80128],[89.95452,25.80391],[89.95584,25.81119],[89.94854,25.81509],[89.95106,25.82106],[89.9483,25.82352],[89.94826,25.82547],[89.95768,25.82911],[89.9587,25.82593],[89.95403,25.82504],[89.95416,25.82127],[89.962,25.82019],[89.96765,25.82252],[89.9637,25.82823],[89.96397,25.83306],[89.96587,25.83243],[89.96791,25.82777],[89.97109,25.82637],[89.9778,25.82793],[89.97793,25.83222],[89.98145,25.83551],[89.99126,25.83496],[90.00359,25.83924],[90.004,25.8413],[89.99894,25.84279],[90.0007,25.8462],[90.00916,25.84581],[90.01575,25.85073],[90.01745,25.85307],[90.01703,25.85622],[90.01912,25.85592],[90.02233,25.86014],[90.02382,25.86722],[90.02288,25.86997],[90.01949,25.87315],[90.01428,25.87188],[90.00563,25.87847],[90.01107,25.88461],[90.01386,25.88494],[90.01937,25.89208],[90.02523,25.89569],[90.03366,25.89445],[90.03419,25.89172],[90.04249,25.88767],[90.04344,25.89209],[90.04138,25.89407],[90.04644,25.89591],[90.04767,25.89982],[90.05544,25.90057],[90.05652,25.9032],[90.05558,25.90574],[90.06242,25.91022],[90.06055,25.91346],[90.06705,25.91299],[90.07054,25.91843],[90.07251,25.91852],[90.07591,25.91489],[90.08624,25.91947],[90.08542,25.92547],[90.08795,25.92555],[90.09113,25.92848],[90.09409,25.92782],[90.09211,25.93807],[90.098,25.93741],[90.10137,25.94023],[90.10108,25.94323],[90.10669,25.94231],[90.1049,25.94452],[90.10756,25.94914],[90.11231,25.95198],[90.11627,25.95688],[90.12054,25.95783],[90.11978,25.9541],[90.13172,25.95874],[90.14054,25.9573],[90.13938,25.95964],[90.14382,25.96014],[90.15109,25.96669],[90.15847,25.95715],[90.16576,25.95576],[90.17692,25.95895],[90.17721,25.95527],[90.17859,25.95522],[90.1808,25.94977],[90.18688,25.94409],[90.18876,25.94583],[90.18691,25.94685],[90.18739,25.94987],[90.19083,25.95121],[90.19242,25.95525],[90.19983,25.95695],[90.20287,25.96086],[90.20994,25.95966],[90.21149,25.95259],[90.27058,25.96031],[90.32478,25.9734],[90.32792,25.97501],[90.33153,25.98765],[90.34036,25.98834],[90.34307,25.99631],[90.34671,25.99785],[90.34971,26.00413],[90.37218,26.01127],[90.39975,26.01252],[90.40539,26.00898],[90.41115,26.00042],[90.41549,25.99882],[90.41684,25.9915],[90.42519,25.98884],[90.43022,25.98895],[90.43328,25.99132],[90.43747,25.99172],[90.44374,25.99597],[90.47613,26.00959],[90.48866,26.00339],[90.50254,25.99146],[90.50964,25.98049],[90.52046,25.97052],[90.5318,25.95601],[90.535,25.94959],[90.53416,25.93896],[90.52069,25.92597],[90.518,25.91568],[90.50855,25.9015],[90.51498,25.8961],[90.52139,25.89848],[90.52642,25.90484],[90.53749,25.9112],[90.53814,25.91375],[90.54912,25.91543],[90.55006,25.91684],[90.54838,25.9192],[90.54448,25.92055],[90.5438,25.92359],[90.54888,25.9214],[90.55242,25.92275],[90.57673,25.93675],[90.57706,25.94451],[90.57977,25.95127],[90.58382,25.956],[90.58787,25.95807],[90.59069,25.95606],[90.59967,25.95513],[90.6049,25.94709],[90.62412,25.93918],[90.62312,25.93506],[90.61231,25.92566],[90.60627,25.91662],[90.6136,25.89932],[90.62187,25.89784],[90.62494,25.89826],[90.6308,25.90628],[90.63067,25.9095],[90.62613,25.90974],[90.62619,25.91335],[90.63164,25.91983],[90.67265,25.93464],[90.68833,25.94891],[90.70765,25.95208],[90.71385,25.95167],[90.71759,25.95494],[90.71901,25.95454],[90.71994,25.94879],[90.72447,25.94678],[90.73247,25.9521],[90.73833,25.95271],[90.73776,25.9557],[90.74282,25.95799],[90.74442,25.95506],[90.7481,25.95672],[90.74569,25.9519],[90.74776,25.9483],[90.7404,25.93939],[90.74672,25.92809],[90.75009,25.93301],[90.75139,25.9323],[90.75279,25.93427],[90.75463,25.93344],[90.75415,25.92943],[90.74696,25.92481],[90.74779,25.91886],[90.73898,25.91616],[90.74245,25.91239],[90.74531,25.91177],[90.74714,25.91554],[90.75107,25.91827],[90.76052,25.92188],[90.76067,25.91567],[90.75679,25.91343],[90.75668,25.91099],[90.76638,25.90764],[90.7781,25.90861],[90.77805,25.9112],[90.78117,25.91127],[90.78338,25.92177],[90.78532,25.92429],[90.78449,25.92513],[90.79638,25.94052],[90.80915,25.94741],[90.80788,25.95097],[90.80905,25.95244],[90.8162,25.94893],[90.81927,25.95032],[90.82441,25.9454],[90.8259,25.94869],[90.83291,25.94586],[90.83619,25.94842],[90.83547,25.93661],[90.83904,25.94131],[90.84234,25.94212],[90.84436,25.94597],[90.84847,25.94438],[90.87483,25.94255],[90.87169,25.94763],[90.87669,25.94942],[90.88108,25.94283],[90.88049,25.95049],[90.88453,25.95031],[90.88581,25.94492],[90.88966,25.94318],[90.89003,25.93807],[90.89745,25.93748],[90.89442,25.93118],[90.90529,25.9289],[90.90617,25.92502],[90.91684,25.91406],[90.91951,25.91522],[90.91543,25.9204],[90.91424,25.92571],[90.91557,25.93075],[90.91481,25.93589],[90.91734,25.94441],[90.91949,25.94445],[90.92194,25.94134],[90.92392,25.94287],[90.93386,25.93977],[90.93999,25.9473],[90.94743,25.94809],[90.94547,25.94487],[90.94614,25.94101],[90.95704,25.93496],[90.96662,25.91406],[90.969,25.90375],[90.96598,25.88844],[90.96886,25.88522],[90.97605,25.88967],[91.00066,25.88794],[91.00103,25.88582],[91.0106,25.88417],[91.01791,25.88456],[91.02522,25.88878],[91.03055,25.8858],[91.02791,25.86933],[91.01402,25.85687],[91.01531,25.8484],[91.01148,25.84591],[91.01221,25.84178],[91.01024,25.83733],[91.00798,25.83796],[91.00693,25.83249],[91.0014,25.8251],[91.00601,25.82038],[91.02245,25.82377],[91.02863,25.83116],[91.03208,25.83285],[91.0325,25.835],[91.03923,25.83689],[91.04822,25.8492],[91.06721,25.84663],[91.0785,25.85274],[91.07298,25.84589],[91.07324,25.84046],[91.07186,25.83876],[91.06773,25.83681],[91.06641,25.83886],[91.05937,25.83666],[91.05773,25.83177],[91.05297,25.83181],[91.04888,25.82927],[91.06213,25.82078],[91.06697,25.82573],[91.07714,25.82894],[91.12036,25.83293],[91.12946,25.84261],[91.13611,25.84263],[91.14755,25.85049],[91.1599,25.84995],[91.17362,25.8444],[91.18023,25.84397],[91.18399,25.8504],[91.1892,25.85171],[91.19583,25.86139],[91.19756,25.84954],[91.20364,25.84321],[91.19729,25.83524],[91.19468,25.83486],[91.19446,25.82728],[91.18937,25.82374],[91.18631,25.81836],[91.19044,25.81143],[91.18419,25.79889],[91.18207,25.7836],[91.1784,25.78016],[91.17826,25.77735],[91.18513,25.77199],[91.18416,25.76643],[91.18929,25.76395],[91.18894,25.75045],[91.19048,25.74783],[91.21012,25.72549],[91.22245,25.72256],[91.24552,25.7333],[91.26453,25.74585],[91.27454,25.75045],[91.27898,25.75736],[91.28863,25.7655],[91.29004,25.77264],[91.29456,25.77592],[91.29556,25.78018],[91.30185,25.78648],[91.30259,25.7899],[91.30971,25.79888],[91.31472,25.80959],[91.32075,25.81572],[91.32232,25.82153],[91.33432,25.83307],[91.33326,25.83675],[91.33535,25.84054],[91.34404,25.83712],[91.34672,25.84003],[91.35216,25.83856],[91.35774,25.84149],[91.36583,25.84003],[91.37105,25.84262],[91.3729,25.84672],[91.38114,25.84563],[91.39314,25.84759],[91.40273,25.8514],[91.40617,25.85006],[91.41346,25.85356],[91.42247,25.85447],[91.42817,25.85264],[91.43583,25.84356],[91.44515,25.83974],[91.44838,25.84189],[91.44861,25.845],[91.46178,25.85434],[91.46308,25.857],[91.46947,25.85916],[91.4779,25.85727],[91.48366,25.86417],[91.49577,25.86382],[91.49737,25.86109],[91.50342,25.86425],[91.51372,25.86397],[91.52236,25.87285],[91.52795,25.87316],[91.53043,25.87125],[91.53043,25.88163],[91.53519,25.88388],[91.53299,25.88815],[91.52772,25.89085],[91.52555,25.89091],[91.52129,25.88346],[91.52131,25.87511],[91.51383,25.86622],[91.51142,25.86534],[91.4912,25.86594],[91.47538,25.86988],[91.47604,25.87252],[91.47481,25.87402],[91.47784,25.88048],[91.47837,25.88747],[91.484,25.89304],[91.49191,25.89585],[91.49943,25.89119],[91.5039,25.89117],[91.49874,25.89599],[91.50421,25.90288],[91.50488,25.90777],[91.52057,25.91681],[91.52097,25.91906],[91.53302,25.92657],[91.53695,25.93121],[91.53658,25.93577],[91.53255,25.92989],[91.52276,25.92531],[91.51791,25.91966],[91.51299,25.91678],[91.50955,25.91721],[91.50467,25.91139],[91.50318,25.91415],[91.50447,25.91672],[91.50124,25.91886],[91.50177,25.92429],[91.50325,25.92683],[91.50675,25.92842],[91.50796,25.93228],[91.51381,25.93289],[91.51515,25.94123],[91.51982,25.93988],[91.51658,25.95571],[91.51808,25.95973],[91.52217,25.95947],[91.5253,25.96163],[91.52865,25.96064],[91.53036,25.96307],[91.53562,25.9623],[91.5354,25.96673],[91.53836,25.97141],[91.54272,25.97317],[91.5447,25.97591],[91.54673,25.97511],[91.55125,25.9766],[91.5517,25.98503],[91.55745,25.99274],[91.5606,26.00092],[91.56507,26.00201],[91.56363,26.00749],[91.57217,26.01536],[91.56919,26.01844],[91.57073,26.02568],[91.57984,26.03325],[91.58872,26.02956],[91.59407,26.02168],[91.59389,26.01978],[91.59753,26.01807],[91.60023,26.02161],[91.61953,26.02596],[91.62635,26.02213],[91.6311,26.02197],[91.6324,26.01902],[91.63118,26.01775],[91.63267,26.01655],[91.6316,26.01472],[91.6349,26.01214],[91.63275,26.01114],[91.63324,26.00849],[91.63135,26.0075],[91.62816,26.00074],[91.63023,25.99013],[91.62624,25.98887],[91.62606,25.98668],[91.62853,25.98244],[91.62825,25.97615],[91.64071,25.96376],[91.63436,25.96051],[91.6294,25.94715],[91.62982,25.94325],[91.62616,25.94219],[91.62289,25.94479],[91.61188,25.94503],[91.60947,25.93739],[91.62139,25.93222],[91.62432,25.92957],[91.62525,25.92608],[91.63056,25.92483],[91.63221,25.92179],[91.6365,25.92133],[91.65149,25.90628],[91.66342,25.90776],[91.6706,25.90415],[91.67884,25.91625],[91.68808,25.92021],[91.68943,25.92462],[91.69893,25.93501],[91.70113,25.93563],[91.7024,25.94127],[91.71348,25.94405],[91.71333,25.94573],[91.72011,25.9536],[91.72024,25.96085],[91.72252,25.96572],[91.71978,25.96583],[91.72111,25.96855],[91.72007,25.98177],[91.72153,25.98833],[91.71962,25.9929],[91.72172,26.0015],[91.72156,26.01219],[91.72504,26.0202],[91.72303,26.03513],[91.72535,26.04618],[91.7337,26.0492],[91.73298,26.05088],[91.73519,26.05132],[91.73471,26.05363],[91.7369,26.05625],[91.73349,26.05623],[91.73072,26.05758],[91.73106,26.05893],[91.74291,26.06303],[91.74315,26.0653],[91.75554,26.06793],[91.75707,26.07036],[91.76273,26.07235],[91.763,26.07461],[91.77728,26.08935],[91.78332,26.08809],[91.78586,26.08401],[91.79136,26.08523],[91.80035,26.10004],[91.80292,26.09526],[91.80562,26.09912],[91.80904,26.09779],[91.81014,26.10329],[91.81702,26.11115],[91.82023,26.11255],[91.82023,26.11641],[91.8254,26.11941],[91.83085,26.11844],[91.83736,26.11224],[91.84828,26.10807],[91.85101,26.1084],[91.86072,26.10289],[91.86393,26.10263],[91.86576,26.10042],[91.87364,26.10063],[91.87917,26.09798],[91.87964,26.09604],[91.87687,26.09165],[91.87845,26.08978],[91.87661,26.07667],[91.87265,26.06791],[91.87028,26.05451],[91.87192,26.05096],[91.8673,26.04202],[91.87095,26.04271],[91.87202,26.04462],[91.87475,26.04302],[91.8731,26.03881],[91.8762,26.03641],[91.87517,26.03511],[91.87916,26.03437],[91.87893,26.03115],[91.88304,26.0261],[91.8858,26.02804],[91.88874,26.02787],[91.89783,26.0234],[91.9023,26.02237],[91.90518,26.02387],[91.90851,26.02097],[91.91469,26.0205],[91.91299,26.01471],[91.91479,26.01399],[91.90975,26.01267],[91.91332,26.0094],[91.90976,26.00877],[91.91059,26.00737],[91.91417,26.0072],[91.91228,26.00492],[91.9144,25.9988],[91.91898,25.99783],[91.92496,25.99939],[91.92827,26.00236],[91.93115,26.01236],[91.93397,26.01027],[91.94718,26.01317],[91.9478,26.01529],[91.95137,26.01466],[91.96191,26.01892],[91.96195,26.02026],[91.97317,26.02211],[91.97897,26.02748],[91.98357,26.0258],[91.98617,26.02898],[91.98546,26.03103],[91.98906,26.03853],[91.99476,26.03849],[91.99922,26.03579],[92.00411,26.03557],[92.00622,26.03855],[92.01044,26.03665],[92.01327,26.03844],[92.0165,26.03705],[92.01845,26.03919],[92.02404,26.03781],[92.03062,26.03958],[92.0344,26.03892],[92.03633,26.03621],[92.04069,26.03651],[92.04814,26.03277],[92.05143,26.03279],[92.05796,26.03482],[92.06679,26.03508],[92.07791,26.04229],[92.09729,26.04922],[92.1088,26.05068],[92.1199,26.04596],[92.1214,26.04388],[92.12821,26.04568],[92.13262,26.04424],[92.13421,26.05245],[92.13754,26.05504],[92.14339,26.05604],[92.15224,26.06678],[92.15471,26.06715],[92.1694,26.07764],[92.1788,26.07819],[92.17878,26.07569],[92.17617,26.07429],[92.17608,26.07023],[92.17804,26.06855],[92.18029,26.07117],[92.18181,26.06906],[92.18734,26.0693],[92.18613,26.06765],[92.18716,26.06657],[92.19101,26.06884],[92.19265,26.06733],[92.20042,26.06962],[92.20651,26.06814],[92.20627,26.06963],[92.20817,26.07047],[92.21548,26.06841],[92.22054,26.0703],[92.22223,26.06809],[92.22859,26.0668],[92.22944,26.06462],[92.24163,26.06177],[92.25052,26.06453],[92.25832,26.06346],[92.26095,26.06614],[92.26746,26.06676],[92.26888,26.06817],[92.27166,26.06523],[92.27489,26.06565],[92.27061,26.06404],[92.26949,26.06057],[92.26395,26.05736],[92.26357,26.05431],[92.26814,26.05143],[92.27003,26.04745],[92.26901,26.04282],[92.26108,26.04164],[92.26508,26.0361],[92.26347,26.03313],[92.25681,26.0287],[92.25329,26.029],[92.24858,26.02338],[92.24373,26.02152],[92.24286,26.02039],[92.24452,26.01819],[92.23504,26.01223],[92.23387,26.00912],[92.22775,26.00856],[92.2248,26.00599],[92.22032,26.00569],[92.21911,26.00389],[92.2119,26.00455],[92.20915,25.99792],[92.20385,26.00122],[92.20101,25.99516],[92.19754,25.99456],[92.19631,25.99085],[92.19855,25.98822],[92.18846,25.98455],[92.18469,25.9858],[92.18088,25.98501],[92.17872,25.97742],[92.17441,25.9739],[92.16932,25.97338],[92.16421,25.97028],[92.16213,25.96656],[92.16152,25.96025],[92.16405,25.95781],[92.1573,25.95263],[92.1571,25.94919],[92.15244,25.94432],[92.15252,25.93959],[92.16015,25.93532],[92.15922,25.93322],[92.16093,25.92815],[92.15682,25.91463],[92.15461,25.91377],[92.15474,25.91099],[92.16242,25.91116],[92.17555,25.90737],[92.17757,25.90885],[92.17656,25.91042],[92.18173,25.91126],[92.18608,25.91663],[92.18947,25.91457],[92.19453,25.91846],[92.19633,25.91575],[92.19404,25.91167],[92.20105,25.90845],[92.20228,25.90633],[92.20443,25.90914],[92.21727,25.9115],[92.22556,25.90917],[92.22281,25.90639],[92.22085,25.90026],[92.2157,25.89995],[92.21498,25.8953],[92.19901,25.88899],[92.18755,25.8772],[92.18363,25.87688],[92.17724,25.87275],[92.1762,25.8682],[92.1801,25.85823],[92.17759,25.8581],[92.1775,25.8515],[92.17261,25.8499],[92.17301,25.84718],[92.16981,25.83886],[92.16623,25.83529],[92.16202,25.83554],[92.16417,25.83301],[92.16081,25.83061],[92.16235,25.82724],[92.16128,25.82059],[92.16023,25.81979],[92.15695,25.82158],[92.15575,25.81889],[92.1511,25.81664],[92.15258,25.81178],[92.1487,25.80594],[92.14996,25.79489],[92.14636,25.78412],[92.15266,25.778],[92.14782,25.77295],[92.15092,25.76655],[92.15025,25.76361],[92.15543,25.7574],[92.15556,25.75112],[92.16282,25.74387],[92.16271,25.74086],[92.16191,25.73663],[92.15445,25.72501],[92.14817,25.72527],[92.14425,25.71681],[92.14773,25.70946],[92.15083,25.70778],[92.15241,25.70861],[92.15478,25.70621],[92.15465,25.69788],[92.15684,25.69582],[92.15598,25.69167],[92.16053,25.68412],[92.1596,25.67624],[92.15615,25.67218],[92.16486,25.66663],[92.1702,25.66713],[92.17343,25.67414],[92.17748,25.67431],[92.17997,25.67807],[92.18775,25.68408],[92.19662,25.68642],[92.20081,25.69227],[92.20809,25.69557],[92.20986,25.69917],[92.21685,25.70481],[92.22113,25.71327],[92.22503,25.71609],[92.23168,25.71594],[92.23286,25.70886],[92.23445,25.70758],[92.23876,25.7106],[92.24734,25.71314],[92.25114,25.71082],[92.25485,25.7126],[92.26437,25.70909],[92.27128,25.71126],[92.27715,25.71547],[92.29301,25.71645],[92.29715,25.71998],[92.30213,25.72086],[92.31134,25.72789],[92.31695,25.72242],[92.32416,25.72472],[92.33351,25.72412],[92.34583,25.72918],[92.35324,25.73975],[92.36093,25.73665],[92.36427,25.73735],[92.36894,25.74729],[92.37376,25.75041],[92.37869,25.74839],[92.38402,25.75452],[92.38543,25.75051],[92.38205,25.74632],[92.38178,25.74204],[92.38784,25.74415],[92.39766,25.74045],[92.40662,25.7446],[92.40803,25.74349],[92.40718,25.74187],[92.41432,25.74146],[92.41458,25.73996],[92.40912,25.73375],[92.41165,25.73003],[92.42205,25.7299],[92.43118,25.73218],[92.43294,25.72696],[92.44429,25.7197],[92.4477,25.70901],[92.44399,25.70736],[92.44036,25.70824],[92.43789,25.7058],[92.44065,25.6916],[92.45031,25.68529],[92.45532,25.68492],[92.46327,25.68101],[92.46797,25.67552],[92.47033,25.67515],[92.4972,25.62439],[92.50609,25.6214],[92.50563,25.61631],[92.50948,25.61559],[92.51507,25.61834],[92.51643,25.61506],[92.53338,25.61495],[92.53585,25.61315],[92.53886,25.61358],[92.53922,25.61158],[92.55417,25.6148],[92.5541,25.61303],[92.55673,25.61141],[92.55548,25.60178],[92.55217,25.60254],[92.55439,25.59957],[92.55332,25.59739],[92.55659,25.59648],[92.55467,25.59533],[92.55432,25.5883],[92.55494,25.58457],[92.55877,25.58012],[92.55622,25.57665],[92.55673,25.57096],[92.57249,25.55735],[92.57542,25.55851],[92.58236,25.55763],[92.58407,25.55045],[92.58996,25.5526],[92.59482,25.55159],[92.59998,25.55504],[92.60193,25.56193],[92.62205,25.56515],[92.63017,25.57167],[92.63431,25.5813],[92.64171,25.58851],[92.64947,25.5922],[92.65299,25.59093],[92.65865,25.57813],[92.65831,25.57406],[92.66146,25.57219],[92.65748,25.56975],[92.65679,25.56085],[92.64542,25.55574],[92.64206,25.54158],[92.64284,25.53481],[92.63776,25.53024],[92.63191,25.52774],[92.62769,25.52197],[92.6202,25.51606],[92.60908,25.51181],[92.5999,25.50635],[92.5973,25.50246],[92.59109,25.50115],[92.57365,25.49048],[92.56436,25.47361],[92.56467,25.46548],[92.56655,25.46336],[92.56881,25.4637],[92.57446,25.46626],[92.58036,25.47208],[92.58259,25.47107],[92.58411,25.4656],[92.59189,25.47042],[92.59564,25.4702],[92.59861,25.46814],[92.60045,25.46475],[92.59761,25.45067],[92.60461,25.4476],[92.60307,25.43513],[92.60698,25.42763],[92.6045,25.4209],[92.60663,25.41323],[92.61126,25.41517],[92.6151,25.42111],[92.61858,25.423],[92.62461,25.42092],[92.62764,25.42197],[92.62838,25.42388],[92.62525,25.43114],[92.62565,25.43492],[92.63584,25.42732],[92.63672,25.42141],[92.63956,25.41757],[92.64708,25.42824],[92.65362,25.43352],[92.65442,25.4326],[92.65146,25.42584],[92.6519,25.41924],[92.65641,25.41154],[92.66164,25.40635],[92.66353,25.4065],[92.66752,25.41483],[92.67353,25.41402],[92.67778,25.40702],[92.68815,25.40208],[92.69283,25.39767],[92.69828,25.38632],[92.70176,25.38448],[92.70988,25.38451],[92.71794,25.37263],[92.72375,25.37882],[92.73802,25.37933],[92.73326,25.37272],[92.73236,25.36892],[92.73879,25.36695],[92.73955,25.36131],[92.74641,25.35833],[92.74995,25.34994],[92.7499,25.3441],[92.7546,25.34238],[92.75593,25.33864],[92.76107,25.33352],[92.76373,25.33358],[92.76991,25.33821],[92.7818,25.33318],[92.78693,25.31437],[92.78154,25.30769],[92.78132,25.30498],[92.78343,25.29944],[92.78723,25.29621],[92.7873,25.29003],[92.7925,25.28256],[92.78749,25.27409],[92.77974,25.27353],[92.77665,25.27003],[92.76862,25.26812],[92.7692,25.26559],[92.77775,25.25818],[92.77497,25.252],[92.77118,25.25099],[92.76646,25.25214],[92.76263,25.24927],[92.76189,25.24653],[92.77016,25.23733],[92.77167,25.22998],[92.78203,25.23016],[92.78911,25.22468],[92.80152,25.22024],[92.80291,25.21617],[92.79503,25.20975],[92.78605,25.20935],[92.78192,25.20325],[92.77621,25.19961],[92.76747,25.20349],[92.76281,25.20159],[92.75484,25.20183],[92.7468,25.20651],[92.74287,25.20665],[92.73722,25.20054],[92.71614,25.19578],[92.70924,25.19007],[92.70262,25.18838],[92.6939,25.17924],[92.68338,25.17954],[92.67724,25.18254],[92.66863,25.17656],[92.66796,25.17408],[92.66348,25.17667],[92.65843,25.17195],[92.65802,25.15884],[92.65576,25.15495],[92.65209,25.1523],[92.63868,25.14773],[92.62831,25.1381],[92.62729,25.13095],[92.62888,25.12618],[92.62143,25.11503],[92.61632,25.1158],[92.6089,25.12262],[92.59501,25.1222],[92.59282,25.12589],[92.58808,25.12878],[92.5832,25.12811],[92.57661,25.13099],[92.56818,25.12824],[92.56061,25.13032],[92.55536,25.12695],[92.53836,25.13349],[92.5249,25.13519],[92.52245,25.13922],[92.52064,25.13695],[92.52265,25.13303],[92.5231,25.12597],[92.53942,25.09905],[92.53396,25.09898],[92.53052,25.10031],[92.52782,25.104],[92.51995,25.10594],[92.50892,25.10422],[92.49696,25.10951],[92.49102,25.10769],[92.48063,25.10831],[92.47743,25.10019],[92.47731,25.09078],[92.47941,25.08661],[92.47716,25.08501],[92.47758,25.08255],[92.47411,25.08197],[92.47535,25.07777],[92.47067,25.0766],[92.47202,25.07463],[92.47203,25.06725],[92.46843,25.06589],[92.46535,25.05867],[92.46357,25.05808],[92.46366,25.05494],[92.46023,25.05729],[92.45698,25.05407],[92.45705,25.04667],[92.46051,25.04873],[92.46238,25.04813],[92.46429,25.04362],[92.46298,25.03958],[92.46429,25.03744],[92.45981,25.03704],[92.45277,25.04075],[92.44907,25.04057],[92.4443,25.04519],[92.43828,25.04387],[92.43819,25.03465],[92.43223,25.03513],[92.42925,25.02915],[92.42528,25.02956],[92.42592,25.02006],[92.42424,25.01937],[92.4242,25.00949],[92.41635,24.98992],[92.42051,24.99033],[92.42208,24.98849],[92.42033,24.96595],[92.4237,24.96484],[92.44273,24.9662],[92.44763,24.965],[92.45763,24.9706],[92.46059,24.96981],[92.46818,24.96302],[92.46837,24.95991],[92.46616,24.95707],[92.45373,24.95365],[92.44974,24.94999],[92.44787,24.9437],[92.44927,24.93876],[92.47565,24.94177],[92.48361,24.94728],[92.48762,24.94677],[92.484,24.92845],[92.48756,24.92062],[92.4946,24.91586],[92.49289,24.9061],[92.49684,24.90202],[92.49116,24.89146],[92.4923,24.87557],[92.48957,24.87256],[92.48787,24.87283],[92.48792,24.87131],[92.4793,24.87246],[92.47614,24.86734],[92.461,24.87314],[92.4448,24.87198],[92.44114,24.86848],[92.44106,24.86051],[92.4374,24.85561],[92.4254,24.85285],[92.41466,24.8583],[92.40637,24.85894],[92.40299,24.85575],[92.40278,24.8497],[92.4001,24.84865],[92.38494,24.85227],[92.38405,24.85834],[92.37748,24.8631],[92.37701,24.87056],[92.37474,24.87395],[92.37168,24.87491],[92.3634,24.87191],[92.36132,24.87819],[92.35436,24.87947],[92.348,24.89162],[92.34584,24.89124],[92.34428,24.88852],[92.34404,24.88019],[92.33922,24.87826],[92.32868,24.88881],[92.32675,24.89641],[92.32289,24.89718],[92.3161,24.89519],[92.30695,24.90203],[92.30626,24.9098],[92.30349,24.9136],[92.29943,24.91572],[92.29483,24.91549],[92.28665,24.91202],[92.28206,24.90585],[92.27179,24.90492],[92.267,24.90692],[92.25912,24.90663],[92.24837,24.90887],[92.24201,24.90469],[92.23561,24.90287],[92.23287,24.90015],[92.23611,24.89914],[92.23666,24.89195],[92.23948,24.89189],[92.23944,24.89001],[92.24723,24.88752],[92.2481,24.88549],[92.24683,24.87199],[92.24486,24.87125],[92.24627,24.86749],[92.23821,24.86816],[92.23493,24.86139],[92.23589,24.859],[92.23981,24.8577],[92.24146,24.84202],[92.24251,24.84045],[92.25497,24.83845],[92.25024,24.83586],[92.25172,24.83421],[92.24837,24.8323],[92.24908,24.82975],[92.25225,24.8305],[92.253,24.83215],[92.26929,24.82983],[92.27308,24.82744],[92.27278,24.82132],[92.27629,24.81544],[92.27385,24.81412],[92.2762,24.81032],[92.27424,24.80653],[92.27531,24.80371],[92.27312,24.80019],[92.27889,24.79742],[92.28108,24.79061],[92.28854,24.78818],[92.28742,24.78741],[92.28892,24.78449],[92.28792,24.77919],[92.28471,24.77461],[92.2818,24.77532],[92.28507,24.76848],[92.28574,24.76294],[92.29013,24.75971],[92.2798,24.74817],[92.28035,24.74579],[92.27916,24.7453],[92.28192,24.74338],[92.28126,24.74226],[92.29603,24.73646],[92.29388,24.73461],[92.2942,24.7317],[92.28536,24.71984],[92.27621,24.71074],[92.27499,24.70808],[92.27612,24.70744],[92.26786,24.69435],[92.265,24.6905],[92.26161,24.69012],[92.25892,24.68619],[92.2578,24.68286],[92.25988,24.68145],[92.25442,24.67803],[92.25453,24.67496],[92.25712,24.67318],[92.25165,24.65996],[92.24847,24.65835],[92.24708,24.65474],[92.24984,24.64796],[92.24829,24.63772],[92.24354,24.6254],[92.24399,24.61652],[92.24235,24.61537],[92.24239,24.61153],[92.23925,24.60777],[92.23539,24.59755],[92.2363,24.59456],[92.23302,24.57847],[92.23459,24.57776],[92.23461,24.57515],[92.23221,24.57139],[92.23114,24.53121],[92.2238,24.51745],[92.22011,24.51631],[92.21294,24.50401],[92.23044,24.50171],[92.2312,24.49521],[92.23658,24.48871],[92.2349,24.48692],[92.23665,24.48459],[92.23348,24.48419],[92.23133,24.48004],[92.23475,24.47457],[92.23147,24.47352],[92.2306,24.47143],[92.23018,24.46151],[92.23637,24.45819],[92.23487,24.45261],[92.23889,24.4475],[92.24437,24.44437],[92.24649,24.4452],[92.25313,24.44232],[92.25347,24.44031],[92.2594,24.43921],[92.25936,24.43403],[92.25689,24.43202],[92.25654,24.42484],[92.25448,24.42053],[92.26328,24.41119],[92.26349,24.40947],[92.26172,24.40869],[92.26414,24.39895],[92.26933,24.39847],[92.27081,24.39628],[92.26911,24.39254],[92.27202,24.39236],[92.27409,24.38832],[92.26864,24.38406],[92.27289,24.37897],[92.26806,24.37811],[92.26814,24.36788],[92.26573,24.36602],[92.21287,24.24993],[92.42253,24.25486],[92.41936,24.22613],[92.42117,24.21811],[92.41858,24.21264],[92.41876,24.20469],[92.42132,24.20126],[92.41917,24.19194],[92.43237,24.18448],[92.43573,24.17929],[92.43401,24.17513],[92.43792,24.16951],[92.43584,24.16513],[92.43642,24.15303],[92.44046,24.15275],[92.4428,24.15446],[92.44912,24.14397],[92.45058,24.14714],[92.45237,24.1442],[92.45673,24.14436],[92.46101,24.13764],[92.46379,24.13889],[92.46331,24.13687],[92.46498,24.13614],[92.46568,24.13865],[92.4686,24.14023],[92.47257,24.1399],[92.47462,24.14364],[92.47896,24.14232],[92.47858,24.14413],[92.48061,24.14541],[92.47705,24.1474],[92.4807,24.15003],[92.48184,24.15597],[92.47943,24.15661],[92.48342,24.15826],[92.48241,24.16061],[92.48392,24.16317],[92.49039,24.16279],[92.49421,24.16018],[92.50151,24.16039],[92.50335,24.16343],[92.50618,24.16413],[92.50327,24.16777],[92.50753,24.16706],[92.51004,24.1646],[92.51141,24.16541],[92.50691,24.16988],[92.51441,24.16946],[92.51468,24.17072],[92.51211,24.17048],[92.50997,24.17246],[92.51552,24.17886],[92.51934,24.1739],[92.52404,24.17144],[92.53017,24.17632],[92.52893,24.17808],[92.53421,24.18015],[92.53111,24.18511],[92.53464,24.19367],[92.53784,24.19677],[92.53669,24.20126],[92.54048,24.20358],[92.54201,24.20752],[92.54096,24.21024],[92.54326,24.21147],[92.5423,24.21344],[92.54712,24.22016],[92.54675,24.22991],[92.54848,24.23186],[92.54687,24.23297],[92.54705,24.23645],[92.5509,24.24722],[92.55595,24.24681],[92.56261,24.2512],[92.57213,24.25188],[92.58903,24.24877],[92.59571,24.25049],[92.60605,24.24845],[92.6123,24.25347],[92.61416,24.25595],[92.61311,24.25865],[92.61971,24.28713],[92.61591,24.28958],[92.61819,24.29818],[92.6183,24.30745],[92.6195,24.30801],[92.61955,24.31354],[92.62361,24.32028],[92.62374,24.3228],[92.62155,24.32371],[92.62368,24.32728],[92.62234,24.32811],[92.62243,24.33134],[92.62477,24.33408],[92.63024,24.33362],[92.63569,24.3367],[92.63869,24.33445],[92.63542,24.33356],[92.6363,24.33134],[92.64036,24.33361],[92.63872,24.32842],[92.64576,24.32778],[92.64617,24.33095],[92.64923,24.3286],[92.65011,24.3316],[92.65172,24.33105],[92.65161,24.33547],[92.65911,24.3419],[92.65768,24.34438],[92.66062,24.34405],[92.66137,24.34816],[92.66316,24.34882],[92.66427,24.34606],[92.66562,24.34964],[92.6663,24.3463],[92.66894,24.34609],[92.67339,24.34964],[92.67716,24.35015],[92.6791,24.3478],[92.68484,24.34654],[92.68376,24.35046],[92.68976,24.3536],[92.68925,24.35524],[92.69151,24.35754],[92.69117,24.36252],[92.69476,24.36536],[92.69282,24.36847],[92.69533,24.36885],[92.69764,24.3743],[92.70361,24.37545],[92.70409,24.38464],[92.70566,24.38438],[92.70734,24.38699],[92.70647,24.39215],[92.70928,24.39337],[92.70922,24.39735],[92.71327,24.40332],[92.71138,24.40722],[92.71509,24.40954],[92.7129,24.41121],[92.71509,24.41498],[92.71739,24.4156],[92.71797,24.42015],[92.72286,24.42811],[92.72171,24.43195],[92.72612,24.43851],[92.7275,24.44642],[92.73365,24.45474],[92.74051,24.46855],[92.74698,24.48703],[92.75082,24.49209],[92.74937,24.49517],[92.75422,24.502],[92.75189,24.50401],[92.75215,24.50623],[92.75613,24.50957],[92.75604,24.51126],[92.75805,24.51102],[92.75765,24.51254],[92.763,24.52113],[92.7967,24.43283],[92.80127,24.42965],[92.80116,24.42535],[92.8027,24.42436],[92.80179,24.42058],[92.79937,24.41913],[92.80434,24.41753],[92.80685,24.41885],[92.809,24.41569],[92.8088,24.41268],[92.81161,24.41328],[92.81007,24.41186],[92.81216,24.41148],[92.81245,24.40928],[92.81894,24.41005],[92.81768,24.40802],[92.82016,24.40371],[92.82995,24.40029],[92.82314,24.38647],[92.82661,24.38123],[92.82573,24.37703],[92.82959,24.37359],[92.83575,24.37849],[92.83985,24.3767],[92.84336,24.37787],[92.84523,24.3797],[92.84624,24.386],[92.86094,24.3985],[92.8688,24.39465],[92.87334,24.39486],[92.88369,24.40241],[92.88856,24.39833],[92.89145,24.40045],[92.8908,24.39833],[92.89256,24.39747],[92.89297,24.39268],[92.90288,24.39107],[92.90392,24.3922],[92.90287,24.39577],[92.90671,24.40276],[92.90707,24.41129],[92.90934,24.41291],[92.91096,24.41197],[92.90927,24.41014],[92.92199,24.40352],[92.92037,24.40088],[92.92436,24.39789],[92.92419,24.39605],[92.92753,24.39648],[92.9312,24.39301],[92.9347,24.39282],[92.9367,24.39839],[92.93931,24.40072],[92.94546,24.40005],[92.94761,24.40236],[92.95117,24.40299],[92.95329,24.40158],[92.9564,24.39329],[92.95928,24.3919],[92.96622,24.39685],[92.9685,24.4012],[92.97384,24.40571],[92.97366,24.4083],[92.98482,24.40565],[92.99201,24.39914],[92.99429,24.39894],[92.99896,24.40014],[93.004,24.40706],[93.00647,24.40744],[93.00753,24.40945],[93.00578,24.40931],[93.00598,24.41065],[93.00885,24.41168],[93.01195,24.41672],[93.01507,24.41553],[93.01617,24.40871],[93.02344,24.40675],[93.03247,24.40856],[93.04164,24.41301],[93.04265,24.42055],[93.03728,24.42362],[93.03292,24.42875],[93.03642,24.44222],[93.03572,24.45976],[93.03811,24.46193],[93.04366,24.46177],[93.04556,24.46328],[93.04637,24.47357],[93.04024,24.48631],[93.03256,24.4953],[93.04277,24.50479],[93.04273,24.50635],[93.03721,24.50939],[93.03874,24.51287],[93.04131,24.51557],[93.05013,24.51943],[93.05055,24.5232],[93.04719,24.52857],[93.04999,24.54421],[93.05701,24.55441],[93.06052,24.55358],[93.0617,24.54731],[93.06462,24.54679],[93.07081,24.55805],[93.06917,24.56188],[93.05818,24.57384],[93.06216,24.57624],[93.07574,24.57505],[93.0844,24.57113],[93.08916,24.57337],[93.09321,24.5815],[93.10184,24.58079],[93.10436,24.58238],[93.10158,24.58759],[93.09359,24.5917],[93.08921,24.59238],[93.08027,24.59011],[93.07115,24.60064],[93.07394,24.60561],[93.08421,24.6136],[93.07714,24.62008],[93.07568,24.62454],[93.07872,24.62885],[93.08521,24.62817],[93.08728,24.62967],[93.08763,24.63699],[93.08319,24.64981],[93.08625,24.65273],[93.09537,24.65283],[93.09647,24.66426],[93.10415,24.67416],[93.10191,24.6807],[93.09011,24.67717],[93.09229,24.68548],[93.09126,24.68803],[93.08184,24.70216],[93.07355,24.70781],[93.07738,24.71296],[93.08292,24.70867],[93.08662,24.70953],[93.0901,24.71432],[93.09079,24.71818],[93.09325,24.71891],[93.09037,24.72139],[93.09065,24.72508],[93.09589,24.72421],[93.0971,24.73195],[93.10776,24.74144],[93.10272,24.74685],[93.1016,24.74277],[93.09988,24.74317],[93.09833,24.74675],[93.10112,24.74958],[93.09825,24.75437],[93.10238,24.75922],[93.10361,24.7672],[93.10028,24.7736],[93.10052,24.77942],[93.10522,24.78111],[93.1043,24.78631],[93.10611,24.78844],[93.10481,24.79128],[93.10839,24.79184],[93.10798,24.79487],[93.1114,24.80058],[93.10943,24.81148],[93.12137,24.81922],[93.12194,24.81662],[93.1179,24.80925],[93.11886,24.80766],[93.12703,24.80876],[93.13176,24.80521],[93.13483,24.81058],[93.13857,24.80999],[93.13471,24.80813],[93.1411,24.80126],[93.14175,24.79728],[93.14626,24.79744],[93.15117,24.79468],[93.15115,24.79228],[93.1485,24.78908],[93.14946,24.78737],[93.15424,24.78871],[93.15987,24.79338],[93.16109,24.79623],[93.16952,24.80138],[93.17357,24.80123],[93.17359,24.796],[93.17572,24.79373],[93.17935,24.79721],[93.17995,24.80307],[93.19153,24.8044],[93.19697,24.81157],[93.19006,24.81864],[93.19591,24.83091],[93.19165,24.83299],[93.19161,24.8344],[93.19327,24.83557],[93.19779,24.83416],[93.20061,24.83876],[93.19917,24.83931],[93.19611,24.83669],[93.19197,24.83972],[93.19203,24.84179],[93.19489,24.84433],[93.2006,24.8413],[93.20155,24.84206],[93.20126,24.84854],[93.19812,24.85301],[93.19483,24.85385],[93.19955,24.85515],[93.20407,24.85105],[93.20687,24.85576],[93.21003,24.85608],[93.21361,24.86063],[93.21471,24.86529],[93.2169,24.86535],[93.22145,24.86951],[93.22036,24.87352],[93.22644,24.87283],[93.22196,24.87766],[93.22151,24.88152],[93.22492,24.88018],[93.22774,24.88503],[93.23279,24.88466],[93.23155,24.88754],[93.22799,24.88834],[93.22602,24.89193],[93.22758,24.89293],[93.23212,24.89188],[93.22961,24.89782],[93.23849,24.8987],[93.2408,24.90336],[93.24032,24.90513],[93.23778,24.90582],[93.2352,24.91141],[93.24406,24.91055],[93.24884,24.91485],[93.24597,24.92525],[93.23934,24.92437],[93.23849,24.92568],[93.24471,24.9325],[93.2451,24.93539],[93.24264,24.93611],[93.23713,24.93253],[93.23681,24.93716],[93.24492,24.94119],[93.24762,24.9398],[93.25127,24.94064],[93.25097,24.94341],[93.24732,24.94512],[93.24913,24.94817],[93.24536,24.95081],[93.25,24.95514],[93.26087,24.95855],[93.26301,24.96134],[93.26092,24.97146],[93.25716,24.97362],[93.24961,24.97312]],[[89.80674,26.3491],[89.8161,26.34278],[89.81937,26.33683],[89.81968,26.33302],[89.82303,26.32978],[89.82024,26.32325],[89.81741,26.32094],[89.80283,26.32965],[89.79983,26.32973],[89.79612,26.33299],[89.79806,26.33785],[89.79341,26.34139],[89.78972,26.34183],[89.79408,26.34383],[89.79559,26.34937],[89.7977,26.35032],[89.80674,26.3491]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-BR","area_level":"State","area_name":"Bihar","geometry_source":"SOI_States","same_as":"LGD/10/State"},"geometry":{"type":"Polygon","coordinates":[[[84.10906,27.52112],[84.10498,27.52105],[84.0977,27.51709],[84.09985,27.51045],[84.09868,27.5053],[84.09713,27.5049],[84.09869,27.50257],[84.09484,27.48902],[84.09131,27.48908],[84.0895,27.48594],[84.08491,27.48336],[84.07798,27.48423],[84.07453,27.48247],[84.07448,27.48046],[84.07119,27.48162],[84.06949,27.48058],[84.0663,27.46933],[84.06166,27.46669],[84.0624,27.46428],[84.05908,27.46157],[84.06013,27.45795],[84.0621,27.45671],[84.06014,27.45437],[84.06116,27.45271],[84.05524,27.44988],[84.05156,27.44263],[84.04354,27.44341],[84.03704,27.44228],[84.03635,27.44081],[84.03189,27.44157],[84.03121,27.43859],[84.02742,27.43968],[84.02574,27.43819],[84.02741,27.43584],[84.02693,27.43354],[84.02187,27.43333],[84.01962,27.43616],[84.01581,27.43488],[84.01241,27.4385],[84.00882,27.43801],[84.00841,27.44027],[84.00549,27.43982],[84.00528,27.44246],[84.00245,27.4424],[84.00135,27.44003],[83.99949,27.44226],[83.99838,27.44105],[83.99669,27.44605],[83.98746,27.44332],[83.9846,27.44384],[83.97808,27.43969],[83.9777,27.44189],[83.97549,27.44306],[83.97343,27.44187],[83.96731,27.4461],[83.95729,27.4426],[83.94604,27.4409],[83.94093,27.44845],[83.93464,27.44833],[83.93348,27.45047],[83.91388,27.4409],[83.89123,27.43887],[83.87549,27.43539],[83.86482,27.43865],[83.85568,27.44581],[83.85047,27.44678],[83.84726,27.44564],[83.84299,27.44171],[83.8373,27.43161],[83.83307,27.42932],[83.83311,27.42508],[83.84304,27.41419],[83.85603,27.40488],[83.8599,27.39484],[83.8782,27.38448],[83.88251,27.37858],[83.88325,27.37424],[83.88021,27.36534],[83.87201,27.35778],[83.86394,27.34723],[83.86234,27.33568],[83.83657,27.32222],[83.84542,27.31518],[83.85266,27.31729],[83.85934,27.30807],[83.87144,27.30724],[83.90076,27.32569],[83.91663,27.32654],[83.92548,27.32141],[83.93247,27.31139],[83.9342,27.30653],[83.93407,27.29975],[83.92983,27.29269],[83.91258,27.27756],[83.90681,27.27564],[83.90502,27.27349],[83.90507,27.25762],[83.9121,27.24576],[83.9193,27.24454],[83.9233,27.24178],[83.9324,27.23936],[83.95341,27.23625],[83.96081,27.23148],[83.96332,27.22851],[83.96254,27.22664],[83.97018,27.22399],[83.97274,27.21819],[83.96752,27.21306],[83.96747,27.20951],[83.97177,27.20845],[83.98696,27.19753],[83.98882,27.18843],[83.99339,27.18164],[83.99418,27.17517],[83.99327,27.17317],[83.98844,27.1716],[83.97874,27.16487],[83.97536,27.15582],[83.95906,27.13688],[83.9628,27.12769],[83.95952,27.12207],[83.95219,27.11862],[83.94767,27.11249],[83.94647,27.09082],[83.95284,27.08493],[83.9644,27.08412],[83.96698,27.08712],[83.9784,27.09076],[83.98926,27.09085],[83.99999,27.10029],[84.0032,27.10186],[84.00877,27.09924],[84.01644,27.10542],[84.02201,27.10413],[84.02397,27.10012],[84.03034,27.09763],[84.03037,27.09384],[84.02494,27.09248],[84.02862,27.08603],[84.02048,27.07941],[84.0166,27.0718],[84.00396,27.07152],[84.00006,27.06859],[84.0056,27.06023],[84.01189,27.05698],[84.018,27.05602],[84.02818,27.04947],[84.03132,27.04563],[84.03908,27.04404],[84.04714,27.04576],[84.0495,27.04327],[84.04953,27.03502],[84.04413,27.02318],[84.04425,27.01672],[84.03731,27.00908],[84.0459,27.005],[84.05281,26.99695],[84.05256,26.9947],[84.0567,26.98966],[84.054,26.98517],[84.04785,26.9846],[84.04576,26.98224],[84.05379,26.97523],[84.053,26.9675],[84.05483,26.96006],[84.0528,26.95498],[84.04597,26.95245],[84.04201,26.9468],[84.03491,26.94521],[84.03214,26.94118],[84.03497,26.9382],[84.04311,26.9405],[84.04654,26.93916],[84.04323,26.93179],[84.05336,26.92967],[84.05621,26.92311],[84.05997,26.92019],[84.05909,26.91646],[84.05309,26.9096],[84.05237,26.90641],[84.05528,26.90263],[84.05806,26.90189],[84.06085,26.89563],[84.06027,26.8881],[84.06699,26.88849],[84.07521,26.88342],[84.07822,26.87904],[84.08141,26.87737],[84.08421,26.87744],[84.08736,26.88169],[84.09433,26.88162],[84.09649,26.87623],[84.09814,26.87594],[84.1045,26.88191],[84.10676,26.88774],[84.10758,26.89693],[84.11042,26.8986],[84.11587,26.89494],[84.11636,26.88912],[84.11795,26.88771],[84.129,26.8932],[84.13128,26.88445],[84.13547,26.88333],[84.14,26.88463],[84.14153,26.88712],[84.14641,26.88542],[84.14771,26.88228],[84.14351,26.87961],[84.14709,26.87245],[84.14233,26.87153],[84.14037,26.8676],[84.14061,26.85265],[84.14584,26.8481],[84.14917,26.84258],[84.15622,26.83756],[84.1661,26.83377],[84.1776,26.83239],[84.18174,26.83348],[84.18679,26.84164],[84.1833,26.84751],[84.19013,26.85847],[84.19303,26.86075],[84.19786,26.85955],[84.20611,26.86172],[84.21949,26.8716],[84.23557,26.86771],[84.25409,26.85659],[84.25693,26.84922],[84.26181,26.84258],[84.2601,26.83351],[84.26093,26.83022],[84.25354,26.82523],[84.25036,26.81933],[84.25682,26.81823],[84.25421,26.81243],[84.26,26.80699],[84.25998,26.80503],[84.25717,26.78938],[84.25,26.77373],[84.23258,26.75367],[84.24067,26.73872],[84.24942,26.72916],[84.25542,26.72662],[84.26629,26.73995],[84.27568,26.74197],[84.28579,26.74993],[84.30587,26.74949],[84.31421,26.73904],[84.31468,26.73531],[84.31811,26.73199],[84.32424,26.71516],[84.32586,26.71415],[84.33006,26.6841],[84.33503,26.68155],[84.34304,26.6809],[84.35018,26.67805],[84.37658,26.6775],[84.40391,26.67177],[84.40516,26.67303],[84.4063,26.67092],[84.41041,26.67025],[84.41122,26.65036],[84.40978,26.64674],[84.41327,26.63733],[84.41971,26.62682],[84.4104,26.62322],[84.39988,26.62454],[84.39073,26.62109],[84.38619,26.62168],[84.37879,26.6147],[84.36487,26.61632],[84.35399,26.61998],[84.33502,26.61555],[84.33163,26.61249],[84.3258,26.61162],[84.3191,26.61151],[84.316,26.61448],[84.30727,26.61632],[84.30542,26.61427],[84.30325,26.61444],[84.30011,26.60378],[84.29582,26.60446],[84.29451,26.6026],[84.28582,26.6058],[84.28453,26.59959],[84.28132,26.5996],[84.26792,26.60165],[84.2686,26.60361],[84.26647,26.60574],[84.23956,26.61001],[84.2391,26.61298],[84.22923,26.61315],[84.22928,26.61654],[84.22795,26.61751],[84.21108,26.62001],[84.20848,26.62276],[84.20119,26.62477],[84.17443,26.62427],[84.17362,26.62282],[84.16927,26.62264],[84.16029,26.62451],[84.15662,26.62697],[84.15885,26.63213],[84.1587,26.6362],[84.14516,26.63472],[84.13632,26.63603],[84.13055,26.63346],[84.11251,26.6344],[84.11197,26.63064],[84.10296,26.63351],[84.1006,26.63595],[84.0865,26.63914],[84.0884,26.63487],[84.08735,26.62585],[84.0852,26.62383],[84.08863,26.61784],[84.08636,26.6124],[84.08998,26.60693],[84.08909,26.60302],[84.08488,26.59828],[84.08329,26.59249],[84.07784,26.59033],[84.07504,26.58591],[84.0756,26.58341],[84.06611,26.57699],[84.06688,26.57269],[84.06064,26.5682],[84.05838,26.56327],[84.05941,26.56128],[84.0551,26.55838],[84.05633,26.54417],[84.04812,26.5364],[84.02381,26.53191],[84.01406,26.52738],[84.00832,26.52194],[84.00649,26.52226],[84.00685,26.52528],[83.99882,26.52723],[83.99264,26.53317],[83.98274,26.53153],[83.97613,26.53351],[83.97511,26.52785],[83.97652,26.52583],[83.97151,26.51761],[83.97184,26.51421],[83.97362,26.51266],[83.97201,26.51028],[83.97391,26.5083],[83.97083,26.50751],[83.96347,26.50808],[83.96194,26.51023],[83.9517,26.50887],[83.94901,26.5102],[83.9484,26.51476],[83.95261,26.51635],[83.95279,26.51776],[83.94668,26.51878],[83.94036,26.52524],[83.93462,26.52513],[83.93124,26.52032],[83.92706,26.51888],[83.9223,26.51961],[83.9164,26.51667],[83.90809,26.51908],[83.90606,26.51265],[83.90674,26.50938],[83.91517,26.50284],[83.9124,26.49773],[83.91269,26.48388],[83.9106,26.48322],[83.90962,26.47569],[83.91231,26.4757],[83.90973,26.46616],[83.91146,26.45591],[83.90923,26.45375],[83.90786,26.44729],[83.91104,26.44705],[83.91056,26.44991],[83.92445,26.44449],[83.94678,26.44098],[83.94624,26.43862],[83.96333,26.4373],[83.98101,26.4328],[83.99126,26.43224],[83.9979,26.44681],[84.00763,26.44396],[84.01683,26.44755],[84.02379,26.44025],[84.02442,26.43424],[84.02261,26.43089],[84.03486,26.41946],[84.03386,26.41165],[84.04097,26.41269],[84.03968,26.41089],[84.0412,26.40726],[84.04363,26.40951],[84.04951,26.40711],[84.04937,26.40374],[84.05287,26.4046],[84.05538,26.4022],[84.06313,26.40072],[84.06244,26.39842],[84.06547,26.39647],[84.06513,26.39285],[84.06798,26.39108],[84.06816,26.38827],[84.07581,26.38644],[84.07609,26.38507],[84.07918,26.38465],[84.07917,26.38251],[84.08401,26.38178],[84.08771,26.38416],[84.08876,26.38678],[84.09929,26.3846],[84.1029,26.38571],[84.12199,26.38512],[84.12466,26.38304],[84.1356,26.38171],[84.13752,26.37794],[84.16113,26.37407],[84.16378,26.37544],[84.17542,26.37309],[84.17644,26.37128],[84.1759,26.3606],[84.17284,26.3535],[84.17254,26.33435],[84.18597,26.3129],[84.18394,26.3087],[84.17774,26.3032],[84.17451,26.29227],[84.17662,26.26454],[84.17278,26.26151],[84.16408,26.25911],[84.16117,26.25592],[84.1615,26.25032],[84.16621,26.24095],[84.16309,26.24184],[84.15116,26.25779],[84.14655,26.25521],[84.13222,26.25903],[84.12917,26.25555],[84.12726,26.258],[84.12169,26.25887],[84.12002,26.25807],[84.11679,26.24974],[84.11968,26.24791],[84.11744,26.24011],[84.10708,26.24123],[84.10602,26.23669],[84.09949,26.23732],[84.09812,26.23332],[84.09104,26.23378],[84.09017,26.23034],[84.08764,26.23036],[84.08825,26.22353],[84.08641,26.21875],[84.08022,26.21971],[84.08016,26.2223],[84.06346,26.22415],[84.06208,26.22227],[84.0512,26.22915],[84.04213,26.22996],[84.0377,26.23206],[84.03823,26.23699],[84.02726,26.23965],[84.02466,26.23777],[84.01923,26.23894],[84.0156,26.23377],[84.01231,26.2324],[84.01579,26.22239],[84.02302,26.22002],[84.02859,26.2203],[84.03121,26.21689],[84.02766,26.21432],[84.02907,26.21119],[84.03188,26.2094],[84.03924,26.20905],[84.03835,26.20097],[84.03538,26.19863],[84.03235,26.19984],[84.02859,26.19565],[84.02663,26.19691],[84.01606,26.19592],[84.01026,26.1911],[84.00801,26.18741],[84.00938,26.17559],[84.0187,26.16747],[84.03345,26.16069],[84.03436,26.15119],[84.02744,26.1424],[84.04345,26.13484],[84.05012,26.13002],[84.05177,26.12056],[84.05004,26.12001],[84.04873,26.10906],[84.05597,26.09999],[84.08867,26.10024],[84.10381,26.09274],[84.11777,26.07998],[84.13729,26.05221],[84.17246,26.0246],[84.17003,25.98768],[84.17567,25.99137],[84.17463,25.99284],[84.17604,25.99652],[84.18648,25.99345],[84.19628,25.98788],[84.20153,25.99036],[84.20708,25.99983],[84.21307,25.9949],[84.21768,25.99473],[84.23929,25.98506],[84.24513,25.98063],[84.24491,25.97579],[84.28229,25.95878],[84.29691,25.94517],[84.31187,25.94377],[84.35395,25.95878],[84.38737,25.93733],[84.4119,25.93078],[84.41376,25.923],[84.41987,25.91351],[84.42496,25.90167],[84.4289,25.89751],[84.42756,25.89124],[84.43531,25.88987],[84.43662,25.8916],[84.4544,25.88773],[84.45953,25.88815],[84.46015,25.88951],[84.4724,25.88171],[84.47852,25.88506],[84.49015,25.88645],[84.48949,25.88832],[84.51075,25.87176],[84.53398,25.87637],[84.54322,25.85996],[84.54066,25.85966],[84.5337,25.86403],[84.52322,25.86029],[84.53076,25.8535],[84.53052,25.83161],[84.54861,25.82854],[84.55087,25.84068],[84.55211,25.84018],[84.58178,25.82508],[84.62457,25.79217],[84.62347,25.7708],[84.61941,25.7724],[84.61835,25.77129],[84.61346,25.77577],[84.60738,25.77141],[84.60622,25.76127],[84.60296,25.76194],[84.6107,25.75469],[84.62535,25.74753],[84.63178,25.73928],[84.63465,25.72794],[84.63017,25.72885],[84.62884,25.72617],[84.62743,25.7263],[84.6112,25.73108],[84.6114,25.73249],[84.60776,25.73533],[84.60032,25.73837],[84.56028,25.7369],[84.5642,25.71377],[84.5618,25.6858],[84.55743,25.67951],[84.55532,25.68009],[84.55645,25.68195],[84.55105,25.68585],[84.53519,25.69077],[84.53944,25.72673],[84.53446,25.72423],[84.52887,25.68249],[84.52005,25.67496],[84.50775,25.68185],[84.5054,25.67692],[84.50437,25.67764],[84.49934,25.67468],[84.49606,25.67674],[84.49196,25.67649],[84.49361,25.69084],[84.4708,25.68724],[84.46588,25.69168],[84.46606,25.69535],[84.46893,25.69662],[84.46829,25.69853],[84.46249,25.69767],[84.46423,25.70077],[84.46217,25.70928],[84.45289,25.70943],[84.45351,25.71433],[84.44425,25.71065],[84.44428,25.70849],[84.44041,25.70836],[84.44029,25.71106],[84.42965,25.71162],[84.43155,25.70768],[84.42808,25.70119],[84.42768,25.69362],[84.42318,25.69367],[84.41477,25.69804],[84.40674,25.69842],[84.40109,25.70834],[84.40654,25.71598],[84.40058,25.72492],[84.39851,25.72555],[84.40004,25.72937],[84.38439,25.73277],[84.38782,25.7376],[84.39012,25.73691],[84.39363,25.7442],[84.3917,25.74516],[84.38495,25.74751],[84.37783,25.73928],[84.37374,25.74429],[84.37177,25.74203],[84.3769,25.73715],[84.37522,25.73533],[84.36518,25.74256],[84.33634,25.74423],[84.32842,25.73193],[84.32956,25.70866],[84.32435,25.67103],[84.31703,25.66729],[84.31689,25.67249],[84.29918,25.67194],[84.29798,25.67739],[84.29291,25.67565],[84.28761,25.67755],[84.28815,25.67326],[84.29139,25.67065],[84.29954,25.6685],[84.30026,25.66539],[84.29451,25.66113],[84.27686,25.66041],[84.27436,25.66289],[84.22322,25.66251],[84.20601,25.66946],[84.19889,25.70208],[84.17454,25.71763],[84.17423,25.72062],[84.16993,25.72291],[84.16694,25.72158],[84.16298,25.72487],[84.15449,25.72744],[84.15467,25.72924],[84.15086,25.72925],[84.14897,25.72695],[84.15275,25.72695],[84.1557,25.72385],[84.1526,25.72346],[84.14981,25.7188],[84.14174,25.71609],[84.12988,25.71779],[84.13525,25.72403],[84.14164,25.72174],[84.14223,25.72815],[84.1399,25.73166],[84.12913,25.72371],[84.10506,25.72122],[84.08896,25.71309],[84.07516,25.69527],[84.08512,25.65258],[84.08128,25.63631],[84.04616,25.62691],[84.01741,25.61469],[83.95837,25.57082],[83.92459,25.55431],[83.91419,25.54521],[83.90209,25.52403],[83.89418,25.51992],[83.87621,25.51806],[83.87416,25.50953],[83.87742,25.50392],[83.87781,25.49925],[83.87159,25.49313],[83.87074,25.48751],[83.8636,25.48441],[83.85675,25.46857],[83.83278,25.45761],[83.83049,25.45838],[83.82489,25.4658],[83.81656,25.46276],[83.81269,25.45364],[83.81281,25.4482],[83.81959,25.45026],[83.82537,25.4459],[83.84192,25.44692],[83.84652,25.4388],[83.84635,25.43435],[83.83299,25.43103],[83.83179,25.43217],[83.83288,25.43566],[83.82914,25.43621],[83.82151,25.43434],[83.8124,25.42962],[83.80156,25.42983],[83.80006,25.42775],[83.80096,25.42549],[83.81302,25.4231],[83.81439,25.42121],[83.80784,25.4091],[83.78965,25.39677],[83.78481,25.3963],[83.7763,25.39903],[83.77278,25.39816],[83.76914,25.39339],[83.76897,25.38636],[83.75778,25.38952],[83.75499,25.39225],[83.75651,25.39675],[83.76628,25.3974],[83.76627,25.40095],[83.75546,25.40447],[83.74507,25.40046],[83.74351,25.40787],[83.74059,25.41063],[83.73407,25.4062],[83.73235,25.39815],[83.73059,25.39743],[83.72446,25.40001],[83.71743,25.39752],[83.71362,25.3935],[83.71012,25.38604],[83.70661,25.38635],[83.70526,25.39468],[83.70396,25.39633],[83.70168,25.39616],[83.69448,25.38895],[83.69655,25.38247],[83.69059,25.38395],[83.68206,25.37862],[83.68401,25.37626],[83.68938,25.37571],[83.69453,25.37123],[83.69371,25.36963],[83.67666,25.36434],[83.66392,25.37283],[83.66709,25.36272],[83.66439,25.36191],[83.65986,25.36373],[83.65595,25.36836],[83.65794,25.35963],[83.65453,25.35688],[83.65135,25.3574],[83.64916,25.35398],[83.65281,25.34834],[83.64933,25.3445],[83.6488,25.33927],[83.6463,25.34247],[83.64219,25.33973],[83.63371,25.34321],[83.63515,25.33584],[83.63414,25.33435],[83.62989,25.33386],[83.62844,25.32852],[83.62404,25.32872],[83.62138,25.33147],[83.61685,25.33206],[83.6081,25.33152],[83.60601,25.3287],[83.59628,25.32767],[83.58742,25.32175],[83.58574,25.31531],[83.58062,25.3171],[83.57624,25.31504],[83.5771,25.31011],[83.57372,25.30613],[83.57073,25.30718],[83.57348,25.31249],[83.57206,25.31466],[83.5617,25.31359],[83.5573,25.31148],[83.55392,25.31481],[83.53991,25.31579],[83.53715,25.313],[83.53729,25.30977],[83.54723,25.31406],[83.55376,25.31022],[83.55409,25.30849],[83.54514,25.30675],[83.5428,25.30408],[83.53837,25.30436],[83.53401,25.29735],[83.52808,25.30247],[83.52346,25.30256],[83.5237,25.29614],[83.52694,25.29298],[83.51525,25.2847],[83.51104,25.28879],[83.50892,25.28844],[83.50546,25.28104],[83.50199,25.2824],[83.50447,25.28658],[83.50228,25.28747],[83.49797,25.28584],[83.49739,25.28035],[83.49138,25.27991],[83.49107,25.28278],[83.49337,25.28491],[83.49354,25.2877],[83.49235,25.28973],[83.49038,25.28948],[83.48995,25.28404],[83.48699,25.28359],[83.48532,25.27932],[83.48003,25.27625],[83.4768,25.27181],[83.47971,25.26752],[83.47701,25.26151],[83.47066,25.2576],[83.46792,25.25234],[83.46268,25.25036],[83.45299,25.25627],[83.45009,25.26104],[83.447,25.2599],[83.44651,25.25752],[83.44302,25.25456],[83.44214,25.25915],[83.43896,25.25783],[83.44077,25.25331],[83.43703,25.24887],[83.43623,25.24424],[83.43366,25.24553],[83.43269,25.25045],[83.42721,25.25367],[83.42475,25.25182],[83.42741,25.24791],[83.42672,25.24639],[83.42182,25.24652],[83.41798,25.25066],[83.40991,25.24661],[83.40886,25.24079],[83.4128,25.23885],[83.41361,25.23549],[83.41257,25.23495],[83.4077,25.23952],[83.40626,25.23773],[83.40657,25.23381],[83.40928,25.22932],[83.40277,25.22437],[83.40206,25.2212],[83.40384,25.21315],[83.40204,25.20906],[83.4009,25.20952],[83.40217,25.21278],[83.39761,25.21631],[83.39524,25.21452],[83.39586,25.20759],[83.39312,25.20434],[83.39038,25.20496],[83.38971,25.21008],[83.38622,25.21215],[83.38248,25.2107],[83.38353,25.20328],[83.38194,25.20175],[83.37269,25.20033],[83.3663,25.19536],[83.36339,25.19822],[83.35725,25.19966],[83.3538,25.18886],[83.35195,25.18866],[83.34979,25.18489],[83.35353,25.18333],[83.35297,25.17864],[83.35637,25.17763],[83.35163,25.16296],[83.3513,25.15701],[83.36341,25.15347],[83.36379,25.13789],[83.36191,25.13268],[83.36817,25.12989],[83.36737,25.12523],[83.36606,25.12511],[83.36328,25.11118],[83.35009,25.11328],[83.35069,25.10507],[83.34819,25.1006],[83.34727,25.0868],[83.34411,25.08615],[83.34131,25.08154],[83.34042,25.06865],[83.33594,25.06146],[83.34275,25.05987],[83.34335,25.05088],[83.33571,25.05093],[83.32434,25.03733],[83.3248,25.02473],[83.32141,25.02467],[83.32022,25.01726],[83.32658,25.01291],[83.33412,25.0141],[83.34981,25.00925],[83.35254,24.99656],[83.3502,24.99018],[83.34337,24.9812],[83.34503,24.97215],[83.34311,24.96307],[83.3437,24.96206],[83.34983,24.96306],[83.35502,24.95663],[83.35969,24.95615],[83.36145,24.95372],[83.36105,24.94228],[83.3649,24.9375],[83.36094,24.93237],[83.36285,24.92773],[83.36224,24.91827],[83.36367,24.91301],[83.3623,24.90902],[83.35645,24.90747],[83.35458,24.90547],[83.35745,24.90051],[83.36588,24.89302],[83.36479,24.89085],[83.35826,24.89077],[83.35827,24.88813],[83.36946,24.87987],[83.36801,24.87668],[83.36088,24.87424],[83.35743,24.87091],[83.36928,24.86231],[83.37674,24.86014],[83.37657,24.85639],[83.38051,24.85371],[83.37995,24.84952],[83.38142,24.84652],[83.38682,24.83975],[83.39252,24.8406],[83.39283,24.8361],[83.39659,24.83235],[83.3951,24.82617],[83.40136,24.81888],[83.40185,24.8139],[83.39925,24.80895],[83.39374,24.80476],[83.39583,24.80001],[83.39964,24.79666],[83.39118,24.78947],[83.39325,24.78653],[83.39305,24.78273],[83.39699,24.78179],[83.39778,24.77811],[83.40794,24.77411],[83.41282,24.77502],[83.42197,24.7694],[83.42783,24.76829],[83.42784,24.7631],[83.43485,24.76079],[83.43744,24.75734],[83.44138,24.75645],[83.44156,24.75097],[83.44864,24.73833],[83.45083,24.73855],[83.45319,24.735],[83.45733,24.7338],[83.4581,24.73135],[83.46227,24.73309],[83.4709,24.73237],[83.48934,24.73633],[83.48833,24.72279],[83.48544,24.71535],[83.48513,24.70167],[83.48974,24.70045],[83.49529,24.70452],[83.49864,24.70333],[83.50054,24.69732],[83.49886,24.69486],[83.50701,24.69282],[83.5108,24.68578],[83.51776,24.68301],[83.51684,24.68112],[83.52038,24.6775],[83.50915,24.67119],[83.50399,24.6663],[83.50049,24.65125],[83.50288,24.6478],[83.50479,24.6469],[83.5099,24.6483],[83.52019,24.64106],[83.52981,24.64303],[83.52679,24.63001],[83.52476,24.62943],[83.52469,24.62782],[83.53153,24.62696],[83.5437,24.62828],[83.54798,24.62328],[83.54327,24.6173],[83.54192,24.61275],[83.53042,24.6124],[83.5273,24.60587],[83.52353,24.60313],[83.52266,24.59855],[83.52435,24.58894],[83.528,24.58627],[83.53022,24.58205],[83.52881,24.57458],[83.5301,24.56732],[83.52829,24.56158],[83.52275,24.55568],[83.52228,24.54766],[83.49712,24.5391],[83.49861,24.5318],[83.5033,24.52535],[83.55093,24.52331],[83.57252,24.51655],[83.597,24.51246],[83.6289,24.51249],[83.65239,24.5148],[83.68816,24.51368],[83.69196,24.51106],[83.72057,24.50345],[83.74647,24.51017],[83.75554,24.50972],[83.78479,24.52077],[83.80018,24.52953],[83.8165,24.52908],[83.86176,24.53673],[83.87315,24.53175],[83.88862,24.53787],[83.90926,24.54121],[83.93613,24.54912],[83.94307,24.55816],[83.95533,24.56789],[83.96732,24.58157],[83.96897,24.58565],[83.97542,24.59141],[83.99401,24.6317],[84.00779,24.64289],[84.02078,24.63835],[84.02731,24.63349],[84.02333,24.63142],[84.02439,24.6286],[84.03344,24.63003],[84.03437,24.62287],[84.03308,24.62038],[84.03719,24.62061],[84.03922,24.61768],[84.04257,24.6186],[84.04532,24.61422],[84.0447,24.61116],[84.04893,24.6117],[84.05202,24.60992],[84.05088,24.60801],[84.04871,24.609],[84.0469,24.60418],[84.04893,24.60404],[84.05032,24.60005],[84.05721,24.59248],[84.05095,24.58664],[84.05419,24.58491],[84.06176,24.58646],[84.06491,24.58103],[84.06061,24.57365],[84.06366,24.57339],[84.06359,24.57078],[84.06831,24.5706],[84.06885,24.56728],[84.07287,24.56721],[84.07332,24.56293],[84.07562,24.56139],[84.07249,24.55909],[84.07273,24.55472],[84.07504,24.55311],[84.07763,24.54633],[84.07807,24.54042],[84.08564,24.53764],[84.08528,24.53454],[84.08923,24.5358],[84.09322,24.53365],[84.08883,24.5297],[84.08716,24.52124],[84.08857,24.51776],[84.08634,24.51705],[84.08462,24.51356],[84.08784,24.51274],[84.08563,24.50518],[84.09197,24.50431],[84.0922,24.50262],[84.08905,24.50182],[84.08991,24.49777],[84.0919,24.49774],[84.09441,24.49322],[84.09828,24.49267],[84.1,24.48537],[84.10432,24.48053],[84.11081,24.47674],[84.11722,24.48046],[84.12474,24.48074],[84.12514,24.49191],[84.12726,24.49509],[84.13011,24.49751],[84.13715,24.49797],[84.14053,24.50053],[84.1343,24.52432],[84.14428,24.53825],[84.15374,24.53582],[84.15958,24.53229],[84.16349,24.5334],[84.16421,24.52818],[84.15732,24.52247],[84.15246,24.51517],[84.15368,24.51157],[84.16975,24.50333],[84.17863,24.50564],[84.18408,24.51383],[84.18495,24.51959],[84.18467,24.52144],[84.1815,24.52082],[84.17396,24.53789],[84.17318,24.5447],[84.18432,24.54479],[84.18794,24.5488],[84.18723,24.55293],[84.19993,24.554],[84.1993,24.54694],[84.20198,24.54358],[84.2095,24.54101],[84.2095,24.53418],[84.21506,24.53272],[84.21869,24.53385],[84.22088,24.54609],[84.23333,24.54986],[84.2364,24.54932],[84.23627,24.53892],[84.24235,24.54145],[84.24459,24.53674],[84.24963,24.53471],[84.25096,24.53236],[84.25045,24.52795],[84.25679,24.52688],[84.25902,24.53434],[84.26386,24.53444],[84.26483,24.53813],[84.26812,24.5383],[84.26929,24.54319],[84.27738,24.54378],[84.27986,24.54787],[84.27372,24.55042],[84.27384,24.55403],[84.27088,24.55411],[84.27053,24.56001],[84.28155,24.55887],[84.28947,24.56282],[84.29684,24.56058],[84.29974,24.5464],[84.31137,24.53447],[84.313,24.53018],[84.31241,24.52346],[84.32247,24.5167],[84.32222,24.50809],[84.32741,24.50053],[84.32642,24.49398],[84.32753,24.49236],[84.32745,24.48734],[84.31518,24.48618],[84.30849,24.48173],[84.30374,24.48053],[84.2961,24.47348],[84.29603,24.4699],[84.2915,24.46642],[84.29255,24.46147],[84.29702,24.45498],[84.29738,24.44939],[84.32179,24.44637],[84.32512,24.43905],[84.32798,24.43908],[84.3356,24.43149],[84.33521,24.42928],[84.33681,24.42885],[84.33557,24.4249],[84.33343,24.42604],[84.32869,24.42511],[84.32445,24.42747],[84.3206,24.42329],[84.32053,24.42107],[84.32282,24.41794],[84.3297,24.4192],[84.33035,24.42171],[84.33453,24.42064],[84.33298,24.41834],[84.33363,24.41269],[84.33035,24.41059],[84.33314,24.4047],[84.34455,24.39945],[84.34162,24.39355],[84.34929,24.39076],[84.36142,24.389],[84.36328,24.38832],[84.36348,24.38548],[84.36919,24.38544],[84.37346,24.38346],[84.3787,24.38798],[84.38824,24.38929],[84.38671,24.38523],[84.38882,24.38451],[84.38694,24.38233],[84.39353,24.37667],[84.39387,24.37339],[84.39862,24.37274],[84.40657,24.37489],[84.40521,24.37038],[84.40057,24.36678],[84.40036,24.36463],[84.41004,24.36258],[84.41651,24.359],[84.43111,24.35652],[84.42732,24.35513],[84.42498,24.34919],[84.42301,24.33549],[84.4244,24.32984],[84.45128,24.33281],[84.45183,24.3373],[84.45961,24.33709],[84.4655,24.33151],[84.46376,24.32802],[84.46797,24.32445],[84.46512,24.32272],[84.46639,24.31731],[84.47228,24.31466],[84.47717,24.31714],[84.48449,24.31267],[84.48986,24.31646],[84.49572,24.32361],[84.49546,24.32534],[84.50529,24.33133],[84.50762,24.32481],[84.50536,24.3245],[84.50345,24.32053],[84.4991,24.3198],[84.4975,24.31626],[84.48861,24.3152],[84.48435,24.30197],[84.48879,24.30085],[84.49057,24.30394],[84.49682,24.29958],[84.4942,24.29612],[84.48916,24.29452],[84.49174,24.28615],[84.4959,24.28607],[84.50188,24.28839],[84.50464,24.296],[84.50701,24.29789],[84.50985,24.30523],[84.50997,24.31605],[84.51674,24.31773],[84.52319,24.33297],[84.53144,24.33821],[84.52452,24.35005],[84.53512,24.36315],[84.52833,24.37115],[84.52782,24.37574],[84.53221,24.37833],[84.54038,24.37597],[84.54692,24.37725],[84.54966,24.37345],[84.55379,24.37286],[84.55497,24.37523],[84.55922,24.37618],[84.56829,24.38217],[84.57236,24.38262],[84.57441,24.38563],[84.5741,24.38916],[84.56594,24.39246],[84.5621,24.39663],[84.56564,24.40129],[84.56819,24.40944],[84.57845,24.41028],[84.58275,24.41312],[84.58438,24.41267],[84.58855,24.40856],[84.58683,24.40058],[84.59172,24.40117],[84.59455,24.40484],[84.59678,24.40509],[84.60281,24.40345],[84.60448,24.40127],[84.61482,24.39894],[84.61682,24.4017],[84.61992,24.40076],[84.62207,24.40372],[84.62728,24.40179],[84.63079,24.40544],[84.63619,24.40045],[84.64266,24.39885],[84.64478,24.3991],[84.64626,24.40311],[84.64995,24.398],[84.65639,24.39669],[84.66109,24.39193],[84.66507,24.39088],[84.66809,24.39859],[84.66877,24.40282],[84.66761,24.4044],[84.67033,24.40492],[84.67018,24.40853],[84.6686,24.40972],[84.67448,24.41095],[84.67336,24.41692],[84.67596,24.42601],[84.6705,24.42812],[84.67231,24.43149],[84.67909,24.43559],[84.68208,24.44481],[84.68119,24.44623],[84.68532,24.45512],[84.68827,24.45785],[84.6915,24.45779],[84.70254,24.46223],[84.7033,24.46607],[84.70775,24.46764],[84.7102,24.47124],[84.71617,24.47211],[84.72069,24.46861],[84.72918,24.47015],[84.74311,24.48498],[84.7464,24.48613],[84.74805,24.496],[84.75558,24.49996],[84.76343,24.50025],[84.77795,24.50448],[84.78609,24.50383],[84.78951,24.5077],[84.78946,24.51828],[84.79732,24.52258],[84.79661,24.52555],[84.80189,24.53074],[84.80826,24.52204],[84.82556,24.52543],[84.83894,24.51261],[84.83985,24.50671],[84.83822,24.49768],[84.83534,24.49648],[84.83378,24.49359],[84.83537,24.48512],[84.83292,24.47021],[84.84061,24.46889],[84.84011,24.46078],[84.83707,24.4591],[84.8401,24.45219],[84.84878,24.45445],[84.85091,24.46204],[84.85401,24.46671],[84.86321,24.46111],[84.86399,24.45727],[84.87096,24.45829],[84.8725,24.46649],[84.8748,24.46721],[84.87971,24.46603],[84.88281,24.46205],[84.8846,24.46499],[84.88728,24.46328],[84.88566,24.45885],[84.8867,24.45323],[84.88528,24.45252],[84.88593,24.44564],[84.88466,24.4408],[84.88744,24.43196],[84.8849,24.4279],[84.88548,24.42575],[84.88228,24.42477],[84.89128,24.4146],[84.89264,24.40504],[84.90421,24.39546],[84.90499,24.3901],[84.90898,24.38354],[84.90034,24.37682],[84.90383,24.37225],[84.9162,24.3733],[84.92286,24.37753],[84.93748,24.37992],[84.94081,24.37625],[84.95479,24.37133],[84.9609,24.37342],[84.97489,24.37471],[84.98124,24.38084],[84.98382,24.38747],[84.99693,24.3947],[84.9983,24.39756],[85.00269,24.39728],[85.01912,24.4091],[85.03117,24.41457],[85.03874,24.41195],[85.04234,24.41428],[85.04591,24.40914],[85.06111,24.40586],[85.06297,24.40692],[85.06907,24.42221],[85.08102,24.43304],[85.07981,24.41546],[85.08187,24.41391],[85.08202,24.4159],[85.08309,24.41558],[85.08107,24.40599],[85.08313,24.39971],[85.07833,24.39669],[85.07733,24.39306],[85.08006,24.39342],[85.07324,24.37823],[85.07404,24.37703],[85.08533,24.37608],[85.08905,24.3725],[85.09869,24.37359],[85.10343,24.37708],[85.10269,24.38487],[85.11681,24.39143],[85.11662,24.3935],[85.12306,24.40198],[85.12765,24.402],[85.13261,24.4051],[85.1438,24.40718],[85.15222,24.41202],[85.16229,24.41262],[85.16541,24.41943],[85.16965,24.42125],[85.1739,24.42062],[85.17535,24.42385],[85.17034,24.42914],[85.17035,24.43316],[85.16657,24.43658],[85.16392,24.44389],[85.15719,24.4444],[85.15443,24.44817],[85.15529,24.45252],[85.15405,24.45499],[85.16075,24.46034],[85.16731,24.46112],[85.17217,24.45904],[85.18057,24.46245],[85.19127,24.46307],[85.1999,24.46047],[85.20293,24.46133],[85.20658,24.46733],[85.2221,24.46509],[85.22584,24.46313],[85.23221,24.47309],[85.2369,24.47105],[85.24128,24.47521],[85.24202,24.47958],[85.24017,24.4815],[85.24545,24.48471],[85.24911,24.49073],[85.26697,24.49126],[85.27486,24.49317],[85.28233,24.49167],[85.28488,24.49464],[85.28387,24.49883],[85.28558,24.5023],[85.28343,24.50332],[85.28057,24.51247],[85.28333,24.51698],[85.28137,24.52022],[85.28809,24.52326],[85.30403,24.52319],[85.3222,24.51999],[85.33389,24.52169],[85.33609,24.52332],[85.35087,24.523],[85.36559,24.52573],[85.3729,24.52497],[85.39193,24.53035],[85.39207,24.53481],[85.39428,24.53972],[85.39671,24.54007],[85.39749,24.5448],[85.37111,24.5528],[85.37078,24.55535],[85.38435,24.55549],[85.385,24.55193],[85.38861,24.5493],[85.40099,24.54535],[85.40448,24.54186],[85.41334,24.54136],[85.43226,24.53171],[85.43,24.52955],[85.43463,24.52852],[85.43396,24.53114],[85.43679,24.53426],[85.43925,24.53319],[85.44429,24.5342],[85.45028,24.53715],[85.45959,24.53624],[85.46542,24.53913],[85.47141,24.54475],[85.49166,24.5481],[85.49902,24.54615],[85.50883,24.53766],[85.50952,24.53155],[85.5073,24.52531],[85.51839,24.52615],[85.52396,24.52127],[85.52736,24.52398],[85.53816,24.52785],[85.54078,24.53051],[85.54545,24.54803],[85.54381,24.55692],[85.5423,24.5576],[85.54074,24.56272],[85.54456,24.56331],[85.55627,24.55801],[85.56023,24.55274],[85.5615,24.55868],[85.56787,24.55834],[85.57177,24.56182],[85.57224,24.5654],[85.56977,24.56933],[85.57161,24.5747],[85.56718,24.57679],[85.56627,24.57881],[85.566,24.58725],[85.57224,24.59621],[85.58077,24.60068],[85.58946,24.59678],[85.5922,24.59744],[85.59419,24.59448],[85.5981,24.59615],[85.60199,24.59556],[85.61191,24.58791],[85.61473,24.58074],[85.62028,24.57992],[85.62686,24.58186],[85.63184,24.57888],[85.65005,24.57592],[85.65135,24.57447],[85.65809,24.57803],[85.66738,24.57889],[85.67753,24.59067],[85.67712,24.59457],[85.67396,24.59747],[85.6756,24.60515],[85.6741,24.61133],[85.6762,24.61662],[85.67333,24.62097],[85.6722,24.62969],[85.66744,24.63683],[85.66867,24.64059],[85.66494,24.64288],[85.66256,24.64964],[85.66488,24.65224],[85.66455,24.65476],[85.66752,24.65745],[85.66677,24.66087],[85.65999,24.66764],[85.66052,24.67236],[85.65414,24.67418],[85.64991,24.68046],[85.64921,24.68477],[85.682,24.69192],[85.68913,24.69808],[85.69783,24.71085],[85.7001,24.7171],[85.70826,24.72591],[85.70631,24.73212],[85.70775,24.73721],[85.70646,24.73726],[85.70679,24.74072],[85.70935,24.74266],[85.70937,24.74635],[85.70383,24.75134],[85.70456,24.76714],[85.70965,24.76703],[85.70668,24.76838],[85.70955,24.77685],[85.70736,24.77976],[85.72235,24.7857],[85.7236,24.79706],[85.7291,24.79838],[85.73076,24.80238],[85.73089,24.81335],[85.73673,24.82106],[85.75742,24.81319],[85.76216,24.81277],[85.76871,24.80783],[85.76804,24.80393],[85.77828,24.79663],[85.78001,24.79946],[85.78909,24.79647],[85.80957,24.79402],[85.81064,24.79901],[85.81527,24.80405],[85.82043,24.80764],[85.82732,24.80827],[85.85493,24.80799],[85.86723,24.80425],[85.88942,24.79236],[85.88928,24.78974],[85.88609,24.78687],[85.88658,24.78406],[85.90006,24.77281],[85.90021,24.77049],[85.91392,24.74999],[85.92517,24.74095],[85.93663,24.73515],[85.9444,24.73357],[85.9585,24.7323],[85.96905,24.73313],[85.9718,24.73651],[85.97348,24.74285],[85.98008,24.74882],[85.99644,24.75319],[86.00507,24.76188],[86.02421,24.76668],[86.03236,24.77075],[86.03755,24.77648],[86.04558,24.77642],[86.0551,24.77969],[86.05852,24.77173],[86.0569,24.76107],[86.05411,24.75623],[86.04688,24.75266],[86.04323,24.74763],[86.0351,24.74636],[86.03709,24.74113],[86.0558,24.74605],[86.06631,24.75165],[86.09073,24.746],[86.10741,24.7348],[86.1094,24.7307],[86.10869,24.7272],[86.1164,24.71731],[86.11652,24.71229],[86.119,24.71118],[86.12836,24.69865],[86.12902,24.68623],[86.13232,24.67901],[86.1319,24.67589],[86.12475,24.67111],[86.12706,24.66687],[86.12509,24.65457],[86.11522,24.64395],[86.11715,24.63949],[86.1199,24.63875],[86.11852,24.6359],[86.12045,24.63544],[86.1214,24.6317],[86.11946,24.62993],[86.11865,24.62578],[86.12196,24.62206],[86.12104,24.61849],[86.12496,24.61417],[86.12532,24.61148],[86.12922,24.611],[86.13326,24.60519],[86.14135,24.60704],[86.15072,24.60255],[86.15184,24.60081],[86.15022,24.59513],[86.1615,24.58625],[86.17945,24.58509],[86.18048,24.58368],[86.1858,24.58595],[86.19448,24.58565],[86.19727,24.58824],[86.20765,24.59113],[86.21445,24.59493],[86.21635,24.59854],[86.21336,24.60235],[86.2143,24.61379],[86.2183,24.61101],[86.22216,24.6109],[86.22417,24.60679],[86.22954,24.60572],[86.23834,24.60013],[86.2408,24.59696],[86.24154,24.59001],[86.2461,24.58761],[86.25454,24.58709],[86.25695,24.58057],[86.25921,24.57867],[86.2626,24.57927],[86.26282,24.58396],[86.26434,24.58425],[86.2677,24.58055],[86.27467,24.57713],[86.27508,24.57975],[86.26946,24.58477],[86.27455,24.58658],[86.28152,24.58511],[86.28492,24.58786],[86.28799,24.587],[86.29192,24.5884],[86.29745,24.5851],[86.30074,24.58608],[86.30302,24.58328],[86.30917,24.58389],[86.30856,24.58846],[86.31412,24.58702],[86.31748,24.58823],[86.31936,24.58596],[86.32321,24.58679],[86.31613,24.58128],[86.31761,24.57741],[86.30709,24.57139],[86.30744,24.56723],[86.30403,24.56581],[86.30084,24.56012],[86.30278,24.55924],[86.30414,24.5529],[86.30804,24.54881],[86.29999,24.53627],[86.29713,24.5361],[86.29747,24.53351],[86.29929,24.53034],[86.30569,24.52769],[86.30557,24.51941],[86.30913,24.51248],[86.30898,24.50976],[86.30331,24.50545],[86.29942,24.5],[86.29887,24.49525],[86.29378,24.48817],[86.29338,24.48121],[86.29042,24.4789],[86.28183,24.47911],[86.27601,24.4658],[86.29858,24.45965],[86.29986,24.45848],[86.29456,24.45601],[86.29494,24.45092],[86.29972,24.44773],[86.31355,24.44706],[86.31738,24.44152],[86.33144,24.44437],[86.33485,24.44245],[86.34394,24.44398],[86.34498,24.44724],[86.3499,24.44739],[86.35816,24.42926],[86.36727,24.42448],[86.36857,24.41869],[86.37465,24.41705],[86.37746,24.41958],[86.37806,24.41623],[86.38115,24.41291],[86.39675,24.40374],[86.397,24.39836],[86.40004,24.39853],[86.40242,24.39677],[86.40426,24.38855],[86.41213,24.38097],[86.42044,24.37867],[86.42355,24.37951],[86.42778,24.37715],[86.43255,24.38014],[86.4449,24.36783],[86.45603,24.37197],[86.4579,24.3782],[86.46713,24.38107],[86.46672,24.38484],[86.47193,24.39335],[86.4701,24.39741],[86.47146,24.40152],[86.47075,24.40567],[86.46789,24.40616],[86.46689,24.41013],[86.46915,24.41535],[86.46918,24.41986],[86.4665,24.42135],[86.4665,24.42386],[86.46866,24.42627],[86.47702,24.42451],[86.47943,24.42794],[86.49128,24.42808],[86.49421,24.44082],[86.49677,24.44375],[86.49532,24.45626],[86.48673,24.46414],[86.49086,24.46718],[86.49031,24.47132],[86.49447,24.47338],[86.49184,24.47585],[86.49536,24.4831],[86.49434,24.4862],[86.49708,24.49025],[86.5004,24.48944],[86.50268,24.49324],[86.50078,24.50404],[86.50957,24.52219],[86.51535,24.52537],[86.51751,24.53033],[86.52936,24.54028],[86.53629,24.53585],[86.54153,24.54034],[86.55232,24.53597],[86.55336,24.5435],[86.56379,24.55255],[86.55834,24.55824],[86.55918,24.56227],[86.56163,24.56222],[86.56647,24.56649],[86.56981,24.56471],[86.58029,24.56653],[86.58922,24.5793],[86.58887,24.58853],[86.59716,24.59657],[86.59819,24.59991],[86.60307,24.60194],[86.60329,24.60838],[86.61459,24.60831],[86.6148,24.60609],[86.61299,24.60651],[86.61092,24.60399],[86.61042,24.5987],[86.62439,24.59938],[86.62281,24.59626],[86.62417,24.58857],[86.64575,24.58063],[86.65173,24.5704],[86.67024,24.56488],[86.68077,24.57099],[86.68598,24.56995],[86.69162,24.57612],[86.70159,24.57329],[86.72308,24.58399],[86.73469,24.57949],[86.73528,24.58455],[86.74163,24.58712],[86.74668,24.5943],[86.74984,24.59507],[86.74825,24.60576],[86.75399,24.6213],[86.75869,24.61938],[86.76494,24.61945],[86.77324,24.62181],[86.78238,24.61897],[86.78505,24.61651],[86.78901,24.61869],[86.8036,24.60187],[86.81124,24.59827],[86.80716,24.59261],[86.81171,24.58254],[86.80537,24.57827],[86.80263,24.5736],[86.80315,24.57033],[86.81192,24.56905],[86.81597,24.57016],[86.81825,24.57318],[86.82161,24.57451],[86.82355,24.57239],[86.83183,24.5716],[86.83465,24.57508],[86.84265,24.57423],[86.84364,24.56854],[86.84145,24.56333],[86.843,24.5581],[86.85019,24.55851],[86.85684,24.55488],[86.86013,24.55638],[86.86202,24.56081],[86.86043,24.56381],[86.86362,24.5666],[86.86901,24.56547],[86.87672,24.56803],[86.88051,24.57219],[86.8821,24.5713],[86.88303,24.56726],[86.88795,24.5648],[86.88687,24.55884],[86.8935,24.55782],[86.89506,24.56082],[86.90249,24.55273],[86.90356,24.54752],[86.91458,24.54221],[86.9175,24.5467],[86.91596,24.55452],[86.91761,24.56086],[86.91539,24.56236],[86.91472,24.56831],[86.90937,24.57246],[86.91327,24.5774],[86.90895,24.5825],[86.90732,24.58816],[86.90933,24.59518],[86.9144,24.60041],[86.9195,24.60212],[86.9191,24.60486],[86.92214,24.61014],[86.92678,24.61374],[86.92892,24.6212],[86.92761,24.62451],[86.93277,24.63061],[86.93668,24.63031],[86.94494,24.63583],[86.94206,24.63873],[86.9421,24.64129],[86.93902,24.64341],[86.93759,24.65017],[86.9582,24.64759],[86.95599,24.64026],[86.95342,24.63972],[86.95324,24.63491],[86.95134,24.63347],[86.95279,24.63147],[86.95774,24.6318],[86.96154,24.63463],[86.96927,24.63536],[86.97758,24.63957],[86.98065,24.63479],[86.98521,24.63278],[86.98751,24.62769],[86.99268,24.62584],[86.9961,24.62011],[87.00632,24.62296],[87.00764,24.62887],[87.01076,24.63119],[87.02127,24.62946],[87.02415,24.62418],[87.02305,24.6157],[87.03623,24.61388],[87.03811,24.61723],[87.04477,24.61297],[87.04662,24.60947],[87.05064,24.60878],[87.04898,24.62403],[87.04615,24.62987],[87.05244,24.64127],[87.05058,24.64463],[87.05067,24.65161],[87.05341,24.65743],[87.05407,24.66934],[87.05975,24.67632],[87.05975,24.6826],[87.06194,24.68879],[87.06549,24.689],[87.06975,24.69506],[87.06805,24.70339],[87.07258,24.71472],[87.07823,24.71935],[87.07714,24.72157],[87.08074,24.72907],[87.07656,24.73017],[87.07861,24.7366],[87.0729,24.73703],[87.07386,24.74137],[87.07007,24.74348],[87.06964,24.74556],[87.07021,24.74764],[87.07942,24.74888],[87.0781,24.75243],[87.08431,24.75613],[87.0786,24.76833],[87.08002,24.77455],[87.07871,24.77753],[87.08357,24.78192],[87.08535,24.78632],[87.08801,24.78634],[87.09289,24.79191],[87.09574,24.80272],[87.08578,24.80363],[87.08355,24.80606],[87.07331,24.8086],[87.07434,24.81985],[87.07736,24.82528],[87.08521,24.8236],[87.0912,24.82547],[87.10072,24.84002],[87.10177,24.8437],[87.10038,24.84768],[87.09878,24.84786],[87.10612,24.85506],[87.11007,24.85701],[87.12059,24.85519],[87.1291,24.86173],[87.13242,24.86261],[87.13478,24.85961],[87.14259,24.8606],[87.14449,24.86331],[87.14069,24.86408],[87.14091,24.86591],[87.14734,24.87109],[87.15555,24.88502],[87.15543,24.89282],[87.15098,24.89879],[87.1538,24.89997],[87.1519,24.90373],[87.14806,24.90357],[87.14733,24.90991],[87.14414,24.9106],[87.14236,24.91372],[87.14292,24.92218],[87.14961,24.92659],[87.15174,24.93156],[87.15091,24.93478],[87.14364,24.94414],[87.14881,24.95987],[87.14728,24.96476],[87.14914,24.96896],[87.14612,24.97357],[87.14891,24.9776],[87.15126,24.98725],[87.14923,24.99896],[87.15032,25.00255],[87.14561,25.00981],[87.14697,25.01334],[87.14623,25.02001],[87.14964,25.02518],[87.15858,25.02857],[87.16322,25.03776],[87.16698,25.03997],[87.16587,25.04613],[87.17182,25.04828],[87.17773,25.06298],[87.18196,25.06697],[87.18942,25.06799],[87.19225,25.06685],[87.19452,25.0689],[87.1927,25.07008],[87.19368,25.07204],[87.19561,25.07078],[87.19921,25.07285],[87.201,25.07872],[87.20795,25.08237],[87.21273,25.08195],[87.21429,25.09123],[87.2374,25.08584],[87.23767,25.09233],[87.23981,25.09209],[87.24054,25.09797],[87.24436,25.10143],[87.24688,25.09966],[87.24934,25.10012],[87.24883,25.10132],[87.25095,25.10201],[87.25034,25.10573],[87.26318,25.10331],[87.26368,25.09964],[87.26705,25.09791],[87.26982,25.09397],[87.2954,25.08854],[87.29812,25.09976],[87.29522,25.10236],[87.29793,25.11205],[87.2962,25.11336],[87.30295,25.13424],[87.30685,25.13641],[87.30574,25.13794],[87.30664,25.14079],[87.30494,25.14289],[87.30797,25.14741],[87.31198,25.14877],[87.31437,25.16028],[87.31647,25.16026],[87.31899,25.16477],[87.31422,25.16881],[87.3154,25.18013],[87.32084,25.18995],[87.31823,25.19526],[87.32281,25.20628],[87.32729,25.22362],[87.33324,25.22268],[87.33428,25.21613],[87.35988,25.21188],[87.37152,25.20625],[87.3751,25.21505],[87.37809,25.21691],[87.38315,25.22435],[87.38753,25.22293],[87.39139,25.22787],[87.40098,25.2269],[87.40319,25.2253],[87.40349,25.22241],[87.41185,25.21893],[87.41183,25.21507],[87.42255,25.21393],[87.42604,25.21111],[87.44089,25.20473],[87.44472,25.20456],[87.45885,25.19685],[87.46113,25.19776],[87.4626,25.19487],[87.47781,25.19414],[87.4764,25.23785],[87.49058,25.26127],[87.50049,25.25979],[87.49881,25.26258],[87.50079,25.26679],[87.49538,25.27145],[87.49864,25.27673],[87.49001,25.28044],[87.4861,25.29727],[87.49003,25.29729],[87.49371,25.30751],[87.50162,25.29233],[87.51683,25.29335],[87.52588,25.28433],[87.53236,25.28028],[87.54272,25.28094],[87.54281,25.29446],[87.54659,25.30802],[87.54854,25.32117],[87.5477,25.32373],[87.55029,25.32418],[87.55169,25.3325],[87.56266,25.33399],[87.57097,25.33327],[87.57454,25.34068],[87.58251,25.34316],[87.58389,25.34918],[87.59185,25.34188],[87.5841,25.33144],[87.59349,25.32513],[87.59228,25.3224],[87.61197,25.31266],[87.61331,25.31547],[87.61743,25.3181],[87.62699,25.31163],[87.63044,25.31969],[87.63588,25.31582],[87.63524,25.31389],[87.63667,25.31314],[87.63782,25.31479],[87.65501,25.30757],[87.65682,25.3087],[87.66368,25.30807],[87.66467,25.31124],[87.66565,25.30915],[87.66674,25.31077],[87.66874,25.30842],[87.67516,25.30703],[87.6755,25.31054],[87.67317,25.31286],[87.69208,25.31153],[87.68685,25.30918],[87.68431,25.30965],[87.68478,25.30687],[87.6954,25.30668],[87.69862,25.30396],[87.6954,25.30004],[87.69968,25.2971],[87.69632,25.29394],[87.69309,25.28511],[87.71152,25.27459],[87.71134,25.25764],[87.74325,25.26411],[87.76718,25.26098],[87.77633,25.25659],[87.79671,25.25198],[87.79822,25.24985],[87.80127,25.24921],[87.80093,25.247],[87.8057,25.2431],[87.8273,25.23529],[87.83534,25.24047],[87.83662,25.24581],[87.84063,25.25012],[87.84855,25.25397],[87.85029,25.25296],[87.85527,25.25527],[87.85553,25.25991],[87.85343,25.2636],[87.85701,25.26965],[87.86069,25.26963],[87.86241,25.27411],[87.86143,25.28142],[87.85543,25.29689],[87.83903,25.30109],[87.83093,25.3073],[87.82636,25.31352],[87.81831,25.31882],[87.80506,25.32456],[87.79596,25.3262],[87.78818,25.33906],[87.79355,25.36695],[87.79231,25.37355],[87.77929,25.37308],[87.76966,25.37898],[87.76588,25.38527],[87.76829,25.39274],[87.76787,25.39826],[87.77253,25.40422],[87.76388,25.4075],[87.76451,25.41378],[87.76794,25.41344],[87.77045,25.40957],[87.77519,25.40891],[87.77636,25.41309],[87.77407,25.41827],[87.77432,25.42353],[87.76993,25.42621],[87.77136,25.42898],[87.774,25.42962],[87.77431,25.43214],[87.78133,25.43254],[87.78726,25.4504],[87.79678,25.4475],[87.79694,25.44501],[87.80231,25.44473],[87.81167,25.43555],[87.82478,25.43795],[87.82681,25.44107],[87.82572,25.44545],[87.82747,25.44764],[87.8289,25.44683],[87.83096,25.45221],[87.83013,25.46085],[87.83964,25.46137],[87.83935,25.46784],[87.85428,25.46672],[87.8558,25.47098],[87.86053,25.47108],[87.86152,25.46914],[87.86346,25.46911],[87.86288,25.46397],[87.86931,25.469],[87.86886,25.47301],[87.86489,25.47995],[87.86781,25.49385],[87.87482,25.50469],[87.87989,25.5042],[87.88637,25.50808],[87.88677,25.51036],[87.88333,25.51694],[87.88437,25.52057],[87.88714,25.51819],[87.89018,25.51827],[87.89285,25.51267],[87.8982,25.5117],[87.89786,25.50491],[87.90276,25.50532],[87.90439,25.50939],[87.90891,25.50882],[87.90682,25.51174],[87.91093,25.51575],[87.90834,25.51866],[87.91273,25.52577],[87.91837,25.52659],[87.91696,25.53295],[87.92555,25.53377],[87.92772,25.5372],[87.94635,25.53547],[87.94708,25.53908],[87.95111,25.53836],[87.95419,25.53977],[87.95671,25.53739],[87.96333,25.53954],[87.96408,25.5369],[87.9667,25.53664],[87.97655,25.5247],[87.98078,25.52454],[87.986,25.52664],[87.9909,25.52538],[87.99135,25.52287],[87.9938,25.52241],[87.98502,25.51533],[87.98902,25.51181],[87.99415,25.51199],[87.99511,25.50797],[87.99288,25.50723],[87.99321,25.50372],[87.99578,25.49954],[88.00698,25.49705],[88.00672,25.51014],[88.01352,25.51121],[88.00952,25.50488],[88.01038,25.5016],[88.01412,25.49938],[88.01806,25.50186],[88.02466,25.50165],[88.02244,25.49828],[88.03028,25.49154],[88.03594,25.49212],[88.03769,25.48978],[88.04514,25.4891],[88.04983,25.48596],[88.05126,25.49006],[88.05627,25.49119],[88.0654,25.49013],[88.07132,25.48426],[88.07338,25.48431],[88.07159,25.49337],[88.07269,25.49429],[88.07139,25.49587],[88.07175,25.50616],[88.07324,25.50817],[88.07653,25.5081],[88.06655,25.51039],[88.0665,25.51275],[88.07089,25.51576],[88.07113,25.51745],[88.06447,25.52524],[88.05959,25.52838],[88.05784,25.53404],[88.05317,25.53515],[88.04736,25.53955],[88.04204,25.53742],[88.03728,25.53832],[88.03582,25.54479],[88.03372,25.54724],[88.03833,25.55299],[88.03553,25.55253],[88.03043,25.55595],[88.02699,25.55609],[88.02582,25.55886],[88.02892,25.56078],[88.03048,25.56567],[88.03255,25.56676],[88.03417,25.56392],[88.03851,25.5694],[88.03397,25.57097],[88.02825,25.56999],[88.02554,25.57207],[88.02402,25.5762],[88.02772,25.57665],[88.02881,25.5811],[88.02625,25.57877],[88.02464,25.58278],[88.02545,25.58622],[88.02026,25.59115],[88.02406,25.59206],[88.02816,25.59092],[88.02969,25.59261],[88.02938,25.59706],[88.03097,25.60007],[88.02521,25.5983],[88.02421,25.60204],[88.0311,25.60174],[88.03332,25.59983],[88.03982,25.60106],[88.04001,25.60334],[88.03322,25.60347],[88.03008,25.6053],[88.03708,25.60921],[88.04323,25.60865],[88.04287,25.61077],[88.03728,25.61633],[88.03508,25.62394],[88.04067,25.63211],[88.04471,25.6341],[88.04782,25.63145],[88.04978,25.63452],[88.05526,25.63782],[88.05396,25.63918],[88.04911,25.63754],[88.0463,25.63475],[88.04112,25.64259],[88.0368,25.64164],[88.03783,25.64727],[88.04024,25.64723],[88.04359,25.6431],[88.04474,25.64589],[88.04817,25.64622],[88.04853,25.64961],[88.04564,25.65596],[88.05012,25.66076],[88.04659,25.66273],[88.04783,25.66905],[88.0459,25.67898],[88.05165,25.68351],[88.05257,25.6862],[88.04865,25.69709],[88.04279,25.70199],[88.04053,25.69756],[88.03764,25.69698],[88.03594,25.70111],[88.0325,25.70336],[88.0291,25.70109],[88.0312,25.69791],[88.03084,25.6945],[88.02065,25.69586],[88.01851,25.699],[88.02107,25.70969],[88.01247,25.71018],[88.00195,25.71568],[87.99885,25.7219],[87.99233,25.72314],[87.98919,25.72619],[87.98476,25.7243],[87.98247,25.71998],[87.9657,25.72562],[87.96633,25.7328],[87.96102,25.73638],[87.96137,25.73866],[87.95544,25.74181],[87.95223,25.74619],[87.94626,25.74624],[87.94765,25.74752],[87.94705,25.75161],[87.94623,25.75254],[87.94365,25.75087],[87.94759,25.75764],[87.94239,25.75966],[87.94219,25.76941],[87.93788,25.77214],[87.93797,25.77393],[87.9353,25.77471],[87.93263,25.77295],[87.93424,25.77179],[87.93363,25.76943],[87.92611,25.77279],[87.92568,25.77567],[87.92392,25.77638],[87.91931,25.77458],[87.90706,25.77354],[87.909,25.77173],[87.90768,25.76969],[87.90609,25.77143],[87.90417,25.77113],[87.902,25.77622],[87.90345,25.77791],[87.90318,25.78151],[87.90425,25.78247],[87.90609,25.78012],[87.90685,25.7809],[87.90382,25.80202],[87.90164,25.80225],[87.90797,25.80342],[87.90564,25.80756],[87.89946,25.80749],[87.90384,25.814],[87.90752,25.812],[87.90796,25.81568],[87.91435,25.81134],[87.91588,25.8164],[87.90889,25.81988],[87.90558,25.81981],[87.90442,25.82248],[87.89911,25.82461],[87.89962,25.8258],[87.8978,25.82707],[87.89956,25.82867],[87.90168,25.82793],[87.90254,25.83052],[87.89724,25.83161],[87.89752,25.83024],[87.89501,25.82923],[87.89609,25.82804],[87.89357,25.8275],[87.88804,25.83066],[87.89121,25.83218],[87.89204,25.83534],[87.89408,25.83396],[87.89607,25.83707],[87.90099,25.83269],[87.90285,25.83395],[87.89673,25.83794],[87.90421,25.83645],[87.90209,25.84207],[87.90326,25.84254],[87.90592,25.83969],[87.90855,25.84107],[87.90541,25.84039],[87.9036,25.84287],[87.90779,25.84527],[87.91208,25.85112],[87.91412,25.85145],[87.91469,25.85395],[87.91131,25.85273],[87.90829,25.85407],[87.90608,25.85782],[87.90187,25.85793],[87.90256,25.86168],[87.89211,25.86574],[87.88862,25.86511],[87.88707,25.8612],[87.88271,25.85936],[87.87565,25.86061],[87.87437,25.86822],[87.87338,25.86612],[87.86979,25.86657],[87.86953,25.86863],[87.86806,25.86865],[87.8587,25.86479],[87.85017,25.8696],[87.82983,25.87065],[87.82748,25.87468],[87.82925,25.87774],[87.82572,25.87774],[87.82602,25.88033],[87.82234,25.88195],[87.82332,25.88559],[87.82178,25.88752],[87.82683,25.89408],[87.82505,25.89715],[87.81959,25.90034],[87.82136,25.90298],[87.82258,25.91213],[87.81983,25.914],[87.81689,25.91283],[87.81518,25.91486],[87.81647,25.91202],[87.81553,25.91022],[87.81206,25.90997],[87.80803,25.91216],[87.80757,25.91609],[87.81207,25.91595],[87.813,25.91764],[87.80885,25.92069],[87.809,25.92837],[87.80737,25.92985],[87.81187,25.93015],[87.81262,25.93211],[87.81605,25.93172],[87.81959,25.93394],[87.83311,25.92791],[87.83843,25.93149],[87.83473,25.93168],[87.83935,25.93811],[87.83695,25.94228],[87.83403,25.94216],[87.8337,25.94585],[87.83826,25.95203],[87.83596,25.95831],[87.83668,25.96012],[87.84657,25.96334],[87.84574,25.96684],[87.84706,25.96937],[87.84577,25.96958],[87.84472,25.97393],[87.84708,25.97467],[87.84464,25.97691],[87.84413,25.98133],[87.84575,25.98557],[87.84513,25.99412],[87.84794,25.99369],[87.84945,25.99543],[87.85141,26.00228],[87.85041,26.00345],[87.85422,26.01008],[87.85446,26.01253],[87.85045,26.01416],[87.85446,26.01667],[87.85646,26.02158],[87.85725,26.02808],[87.85452,26.02936],[87.85422,26.03183],[87.85593,26.03598],[87.86426,26.03648],[87.87833,26.04953],[87.88301,26.04684],[87.88924,26.0486],[87.89045,26.04962],[87.89039,26.05792],[87.8924,26.06116],[87.89878,26.064],[87.90124,26.06291],[87.90699,26.07234],[87.91008,26.07137],[87.91687,26.07706],[87.92053,26.07569],[87.92805,26.08307],[87.93136,26.08202],[87.93178,26.08029],[87.93064,26.07031],[87.93635,26.0686],[87.93492,26.06368],[87.9455,26.06076],[87.94886,26.0619],[87.95012,26.06055],[87.95033,26.06562],[87.95264,26.06461],[87.95452,26.06567],[87.95482,26.06903],[87.95196,26.068],[87.94855,26.0696],[87.95232,26.07188],[87.95039,26.07421],[87.95335,26.0753],[87.95291,26.07647],[87.95521,26.07474],[87.95808,26.07632],[87.9655,26.07405],[87.97279,26.07743],[87.98219,26.07376],[87.98562,26.07766],[87.98224,26.07987],[87.98202,26.08366],[87.9782,26.0838],[87.97666,26.08707],[87.97075,26.08867],[87.97152,26.09293],[87.96361,26.09463],[87.96653,26.0955],[87.96664,26.09686],[87.96747,26.0961],[87.96843,26.09688],[87.96714,26.09786],[87.97176,26.10057],[87.97343,26.09956],[87.97624,26.10194],[87.9772,26.1005],[87.97752,26.10272],[87.97861,26.10117],[87.98212,26.10324],[87.9823,26.10189],[87.9868,26.10141],[87.98689,26.10275],[87.98335,26.10427],[87.98464,26.1067],[87.98647,26.1066],[87.98585,26.10927],[87.98773,26.10977],[87.98577,26.11344],[87.98511,26.11143],[87.98376,26.11571],[87.97427,26.11664],[87.97152,26.11536],[87.96927,26.11762],[87.9708,26.12046],[87.97939,26.12228],[87.97955,26.12342],[87.97534,26.12426],[87.97615,26.12528],[87.97981,26.1243],[87.9814,26.12606],[87.98153,26.12769],[87.97849,26.13015],[87.97919,26.13797],[87.97245,26.14],[87.9749,26.14337],[87.98131,26.14458],[87.98375,26.14212],[87.98588,26.14268],[87.98502,26.14565],[87.99207,26.15096],[87.99439,26.14341],[87.99988,26.1384],[88.00625,26.14574],[88.01077,26.14477],[88.01415,26.14931],[88.00783,26.15805],[88.00998,26.16154],[88.01434,26.15857],[88.01968,26.15982],[88.02416,26.16526],[88.02648,26.16544],[88.02829,26.17004],[88.03177,26.16998],[88.03293,26.17321],[88.03149,26.17521],[88.03723,26.17871],[88.04983,26.17607],[88.0508,26.17218],[88.05771,26.17278],[88.05907,26.1705],[88.0657,26.17517],[88.06497,26.17699],[88.06888,26.17685],[88.06949,26.17413],[88.07185,26.1742],[88.07804,26.1798],[88.07581,26.18252],[88.07621,26.18532],[88.08174,26.18683],[88.08543,26.19103],[88.08932,26.19073],[88.09134,26.20214],[88.09424,26.20256],[88.09371,26.20367],[88.09579,26.20488],[88.09781,26.20359],[88.09823,26.20528],[88.10113,26.20601],[88.10087,26.20753],[88.10361,26.20778],[88.10314,26.21124],[88.10541,26.21438],[88.11146,26.21545],[88.11111,26.2177],[88.11658,26.21915],[88.11442,26.22372],[88.12573,26.22776],[88.12987,26.22502],[88.13089,26.22715],[88.13982,26.22719],[88.14176,26.23164],[88.1366,26.23248],[88.13674,26.24122],[88.14112,26.2434],[88.14265,26.25047],[88.1444,26.25224],[88.15241,26.25349],[88.15434,26.25452],[88.15544,26.25811],[88.16048,26.25689],[88.16324,26.25341],[88.16822,26.25815],[88.17177,26.25565],[88.17419,26.25579],[88.17947,26.26331],[88.17901,26.2691],[88.18265,26.27044],[88.18318,26.27368],[88.19732,26.27186],[88.20159,26.28092],[88.21063,26.27779],[88.21322,26.28043],[88.21335,26.28404],[88.21712,26.28445],[88.22693,26.2909],[88.22591,26.29407],[88.22818,26.29566],[88.22671,26.30362],[88.23061,26.30792],[88.22943,26.31037],[88.23184,26.3087],[88.23165,26.30582],[88.2357,26.30333],[88.23987,26.31155],[88.24554,26.31454],[88.2442,26.32201],[88.24674,26.32428],[88.24725,26.32812],[88.24805,26.32636],[88.24923,26.32793],[88.25439,26.32699],[88.25779,26.33195],[88.25778,26.33552],[88.26688,26.33508],[88.26838,26.33799],[88.27088,26.33753],[88.27114,26.33593],[88.26915,26.33275],[88.26652,26.33187],[88.26877,26.33141],[88.26979,26.32787],[88.27469,26.32857],[88.27603,26.33224],[88.27987,26.33196],[88.28115,26.34202],[88.2782,26.3432],[88.27891,26.34939],[88.28433,26.34965],[88.28539,26.35238],[88.29035,26.35142],[88.29139,26.34923],[88.29353,26.35082],[88.29369,26.35293],[88.289,26.35396],[88.29089,26.35827],[88.29019,26.35997],[88.28273,26.35757],[88.27981,26.35968],[88.27884,26.36668],[88.2765,26.36826],[88.27674,26.37252],[88.27444,26.37624],[88.27626,26.37944],[88.27194,26.37783],[88.26767,26.38141],[88.2663,26.3792],[88.26148,26.37762],[88.25756,26.38128],[88.25533,26.3774],[88.24678,26.37538],[88.24657,26.37418],[88.24047,26.3752],[88.23221,26.3796],[88.23401,26.38066],[88.23321,26.38634],[88.22704,26.38947],[88.22794,26.39275],[88.23439,26.39476],[88.23826,26.39886],[88.23923,26.40344],[88.24756,26.40752],[88.25242,26.41605],[88.25489,26.41707],[88.26455,26.41541],[88.26825,26.41758],[88.26958,26.42045],[88.26701,26.42285],[88.26305,26.42283],[88.26341,26.42877],[88.2594,26.42863],[88.25846,26.43218],[88.25085,26.43315],[88.25108,26.4359],[88.24817,26.43668],[88.24286,26.44872],[88.24382,26.45384],[88.24245,26.45235],[88.23417,26.45151],[88.22515,26.45366],[88.22275,26.45913],[88.21845,26.46259],[88.21773,26.46591],[88.214,26.46858],[88.20982,26.46923],[88.21171,26.47182],[88.22117,26.47153],[88.22424,26.47799],[88.22436,26.48195],[88.21986,26.48352],[88.21246,26.48325],[88.21177,26.48164],[88.2138,26.47808],[88.21577,26.47805],[88.21073,26.47309],[88.20331,26.47432],[88.20296,26.47636],[88.19577,26.47513],[88.19162,26.47767],[88.19066,26.48205],[88.18786,26.48491],[88.18618,26.48377],[88.18504,26.48607],[88.17989,26.48764],[88.1818,26.49253],[88.17885,26.4946],[88.1797,26.49958],[88.18358,26.50041],[88.18511,26.50405],[88.19113,26.50853],[88.19128,26.51153],[88.1951,26.51414],[88.19884,26.51266],[88.20316,26.51313],[88.20233,26.51511],[88.20415,26.52129],[88.20609,26.52111],[88.20877,26.52441],[88.22968,26.53504],[88.22931,26.54006],[88.22556,26.54721],[88.22566,26.55097],[88.228,26.55295],[88.22549,26.55675],[88.21871,26.55666],[88.21095,26.56092],[88.20822,26.55006],[88.21624,26.54869],[88.2119,26.54443],[88.20765,26.54539],[88.20525,26.54349],[88.21294,26.54243],[88.21398,26.54156],[88.21161,26.53994],[88.20398,26.54113],[88.20137,26.53954],[88.20212,26.54375],[88.19627,26.54392],[88.19541,26.54796],[88.17939,26.54825],[88.17562,26.54053],[88.17623,26.53537],[88.17278,26.53597],[88.16786,26.54076],[88.16654,26.53553],[88.15635,26.53002],[88.15035,26.53181],[88.14738,26.52263],[88.14004,26.52422],[88.13498,26.52338],[88.13377,26.51684],[88.13005,26.51602],[88.12515,26.52053],[88.12386,26.5241],[88.11727,26.52761],[88.11697,26.53273],[88.11173,26.53119],[88.11003,26.53606],[88.10442,26.53744],[88.10339,26.53973],[88.09807,26.53795],[88.09897,26.53476],[88.10368,26.53607],[88.10246,26.5306],[88.10473,26.52776],[88.103,26.51825],[88.0951,26.51641],[88.09579,26.51026],[88.09024,26.50725],[88.09233,26.5047],[88.09857,26.50591],[88.10017,26.49417],[88.10548,26.4893],[88.10141,26.48455],[88.10021,26.48025],[88.10698,26.47574],[88.10486,26.47223],[88.09781,26.4725],[88.10371,26.46817],[88.10293,26.46557],[88.09208,26.46331],[88.09701,26.45217],[88.09598,26.43999],[88.09423,26.43718],[88.08587,26.43182],[88.08371,26.42591],[88.07775,26.41924],[88.06959,26.41365],[88.0713,26.40814],[88.06873,26.40791],[88.06676,26.40963],[88.06419,26.40817],[88.06317,26.41047],[88.05992,26.40958],[88.05686,26.40779],[88.05767,26.40669],[88.05554,26.4026],[88.0544,26.40281],[88.05561,26.40053],[88.05267,26.4014],[88.05185,26.39917],[88.0514,26.40059],[88.04758,26.40106],[88.04529,26.3997],[88.04651,26.39751],[88.04388,26.39676],[88.04538,26.39631],[88.03791,26.39378],[88.03666,26.39012],[88.0345,26.39191],[88.03464,26.38826],[88.03206,26.38791],[88.03097,26.38232],[88.03016,26.38322],[88.02724,26.38161],[88.0284,26.37884],[88.0316,26.37805],[88.03073,26.37589],[88.02916,26.37623],[88.03007,26.37405],[88.02751,26.37103],[88.02776,26.36912],[88.03112,26.36661],[88.0305,26.36492],[88.00658,26.361],[88.00439,26.36438],[88.00172,26.3652],[88.00277,26.36626],[88.00001,26.36656],[87.99801,26.36495],[87.99535,26.36601],[87.99206,26.37137],[87.99192,26.39256],[87.96598,26.39719],[87.93229,26.418],[87.92694,26.4178],[87.92583,26.42806],[87.91807,26.42987],[87.91599,26.43183],[87.9176,26.43486],[87.92453,26.43847],[87.92514,26.44484],[87.92405,26.44668],[87.89874,26.44871],[87.90981,26.45756],[87.90021,26.4773],[87.88829,26.48676],[87.88598,26.47641],[87.86333,26.46795],[87.86281,26.46458],[87.85843,26.4639],[87.85964,26.45953],[87.85824,26.45659],[87.8626,26.45311],[87.86093,26.45122],[87.86143,26.44888],[87.85103,26.44528],[87.84883,26.43646],[87.82833,26.44],[87.82973,26.45002],[87.82314,26.45354],[87.81724,26.45918],[87.79359,26.46857],[87.79194,26.46892],[87.79087,26.46661],[87.78951,26.46943],[87.78641,26.46753],[87.79011,26.46579],[87.78912,26.46432],[87.78652,26.46582],[87.78632,26.46303],[87.78883,26.4621],[87.78832,26.46074],[87.78483,26.45863],[87.78278,26.45407],[87.77796,26.45373],[87.77898,26.45062],[87.77401,26.45036],[87.77692,26.44761],[87.77561,26.44279],[87.77791,26.44223],[87.77442,26.44042],[87.77301,26.43599],[87.77497,26.43529],[87.7764,26.43685],[87.77791,26.43566],[87.77593,26.42948],[87.77403,26.43111],[87.77265,26.42996],[87.77542,26.42696],[87.77047,26.42752],[87.77606,26.42519],[87.77298,26.42022],[87.77617,26.42183],[87.77326,26.41923],[87.77126,26.42155],[87.76739,26.41815],[87.76819,26.41484],[87.76559,26.41316],[87.76731,26.41116],[87.76476,26.40988],[87.75388,26.40797],[87.74844,26.41795],[87.73932,26.41759],[87.73394,26.40761],[87.72308,26.41253],[87.72399,26.41562],[87.7223,26.4195],[87.72126,26.41875],[87.71817,26.42242],[87.71393,26.42283],[87.71368,26.42518],[87.71107,26.42748],[87.6983,26.42834],[87.69231,26.43566],[87.67756,26.43546],[87.67813,26.41583],[87.6502,26.40596],[87.65188,26.39342],[87.6326,26.39369],[87.61735,26.38996],[87.61234,26.381],[87.6104,26.38078],[87.59241,26.38165],[87.59299,26.39221],[87.57871,26.39582],[87.5671,26.40123],[87.56503,26.40003],[87.55301,26.40566],[87.5477,26.41837],[87.53439,26.42162],[87.51654,26.43079],[87.49174,26.43625],[87.46675,26.44019],[87.46378,26.43951],[87.44348,26.43313],[87.42786,26.42237],[87.41907,26.42268],[87.38855,26.4191],[87.37619,26.40702],[87.36889,26.40794],[87.35639,26.38793],[87.35352,26.37202],[87.35841,26.36105],[87.34109,26.34752],[87.33701,26.3516],[87.32211,26.36006],[87.31358,26.36764],[87.31253,26.37157],[87.30159,26.36612],[87.28955,26.37372],[87.27264,26.37254],[87.26602,26.37388],[87.26441,26.38768],[87.26589,26.39054],[87.26626,26.40565],[87.26105,26.40927],[87.25618,26.41107],[87.24987,26.40951],[87.24696,26.41412],[87.22882,26.41359],[87.22622,26.41074],[87.22656,26.40899],[87.22397,26.40871],[87.22389,26.40582],[87.21913,26.40284],[87.21713,26.40656],[87.21109,26.40919],[87.21242,26.41305],[87.18579,26.41421],[87.1892,26.40534],[87.17299,26.40334],[87.16256,26.4039],[87.13931,26.41479],[87.09165,26.45029],[87.0805,26.5214],[87.07612,26.53741],[87.07282,26.54196],[87.07318,26.57732],[87.07182,26.58581],[87.04467,26.58723],[87.04255,26.56833],[87.01536,26.53204],[86.99088,26.52308],[86.97941,26.52515],[86.97531,26.52005],[86.96134,26.52404],[86.95953,26.52039],[86.94646,26.52078],[86.94457,26.5173],[86.93216,26.51695],[86.92869,26.49756],[86.92999,26.48968],[86.89369,26.488],[86.894,26.48659],[86.89168,26.48619],[86.89016,26.48176],[86.89286,26.47761],[86.8919,26.47637],[86.89364,26.47647],[86.89224,26.47553],[86.89357,26.47373],[86.89274,26.47199],[86.89384,26.47214],[86.89253,26.46915],[86.89467,26.46925],[86.89527,26.46739],[86.89423,26.46193],[86.88463,26.4614],[86.87944,26.45709],[86.8753,26.45751],[86.87594,26.45542],[86.87337,26.45405],[86.87079,26.45549],[86.86656,26.45474],[86.86663,26.45629],[86.86482,26.45591],[86.86531,26.45762],[86.86141,26.45795],[86.86173,26.45636],[86.85986,26.45599],[86.85592,26.44865],[86.84586,26.4483],[86.84689,26.44195],[86.8446,26.4428],[86.84222,26.44021],[86.83921,26.44066],[86.83987,26.44211],[86.83781,26.4426],[86.83671,26.44007],[86.83499,26.44112],[86.83377,26.4391],[86.79757,26.44821],[86.7665,26.45944],[86.76274,26.45581],[86.76409,26.45155],[86.76034,26.45185],[86.7602,26.44814],[86.75405,26.44679],[86.75275,26.4455],[86.75337,26.4424],[86.74976,26.44135],[86.74755,26.4362],[86.74397,26.43561],[86.74476,26.43398],[86.74729,26.43374],[86.74722,26.42818],[86.74375,26.4276],[86.74086,26.42476],[86.73785,26.42583],[86.73752,26.42343],[86.73298,26.42465],[86.7314,26.42262],[86.72966,26.42294],[86.73073,26.42639],[86.72903,26.42699],[86.72751,26.42504],[86.72551,26.42632],[86.72027,26.43486],[86.70031,26.43724],[86.69859,26.44276],[86.69557,26.4447],[86.69639,26.44885],[86.69323,26.4512],[86.63803,26.46333],[86.63696,26.46607],[86.63403,26.46579],[86.63345,26.46432],[86.62995,26.46857],[86.62947,26.46639],[86.62694,26.46703],[86.62952,26.46893],[86.62597,26.46933],[86.62731,26.47542],[86.6296,26.47763],[86.62808,26.4788],[86.62693,26.47695],[86.62605,26.48039],[86.62183,26.48169],[86.62109,26.48415],[86.61808,26.4837],[86.61402,26.48697],[86.61156,26.48563],[86.58828,26.49348],[86.57025,26.49656],[86.57072,26.49777],[86.56926,26.49749],[86.56374,26.5035],[86.56146,26.50983],[86.55442,26.5161],[86.55442,26.5188],[86.55602,26.51784],[86.55567,26.52184],[86.555,26.52423],[86.55131,26.52457],[86.55095,26.53018],[86.54809,26.53141],[86.54155,26.53872],[86.52335,26.54361],[86.51551,26.53922],[86.49863,26.5421],[86.45594,26.56797],[86.42993,26.57314],[86.39522,26.58506],[86.3971,26.59332],[86.35633,26.60429],[86.3415,26.60594],[86.33908,26.60893],[86.34082,26.6119],[86.34217,26.61144],[86.34484,26.61691],[86.33289,26.61914],[86.30785,26.61996],[86.29304,26.61311],[86.27586,26.61728],[86.2531,26.61468],[86.25269,26.61711],[86.24791,26.61239],[86.24922,26.609],[86.24646,26.60735],[86.24421,26.60892],[86.24432,26.60607],[86.24238,26.60572],[86.2432,26.60295],[86.24054,26.60359],[86.24002,26.60147],[86.23741,26.60169],[86.23753,26.59953],[86.23478,26.59813],[86.23436,26.5907],[86.23124,26.59321],[86.23082,26.5915],[86.22373,26.59145],[86.21768,26.58848],[86.21272,26.5927],[86.20789,26.59301],[86.20548,26.59665],[86.2018,26.59458],[86.2006,26.59724],[86.19829,26.59348],[86.1963,26.59394],[86.19699,26.59804],[86.19493,26.59851],[86.19674,26.60119],[86.19581,26.60762],[86.19065,26.61181],[86.19438,26.61222],[86.19224,26.61484],[86.18286,26.61392],[86.17593,26.61549],[86.17421,26.6139],[86.17144,26.61704],[86.16765,26.61408],[86.1616,26.61491],[86.15533,26.60989],[86.14566,26.6086],[86.14262,26.60516],[86.13633,26.60634],[86.13975,26.61674],[86.14105,26.6168],[86.13876,26.62885],[86.11958,26.63006],[86.07405,26.64974],[86.0698,26.65734],[86.02758,26.66679],[86.0189,26.66114],[86.01211,26.65986],[86.01162,26.65517],[86.00394,26.65613],[86.00053,26.65483],[85.99042,26.65734],[85.97581,26.65845],[85.97361,26.65508],[85.97007,26.65504],[85.96745,26.65172],[85.9647,26.65256],[85.9633,26.65021],[85.96012,26.65101],[85.9598,26.64944],[85.95658,26.64872],[85.95334,26.64366],[85.95398,26.639],[85.95259,26.63711],[85.95564,26.63086],[85.95153,26.62438],[85.94946,26.62494],[85.94643,26.62184],[85.94818,26.61396],[85.94079,26.61357],[85.93809,26.61659],[85.93277,26.61393],[85.9291,26.61681],[85.92708,26.60979],[85.91385,26.60884],[85.91289,26.60448],[85.90919,26.60459],[85.90055,26.60047],[85.90072,26.59503],[85.89617,26.59376],[85.89199,26.59471],[85.88748,26.58297],[85.87974,26.58412],[85.87886,26.58203],[85.87322,26.57897],[85.87086,26.57984],[85.86862,26.5753],[85.85865,26.56894],[85.85839,26.57163],[85.85678,26.57226],[85.85185,26.5686],[85.84921,26.569],[85.84859,26.57698],[85.85808,26.58988],[85.85126,26.60868],[85.8312,26.61154],[85.83062,26.60162],[85.81774,26.6028],[85.8036,26.61496],[85.80177,26.62427],[85.76982,26.62987],[85.75933,26.63642],[85.7486,26.63885],[85.73566,26.65159],[85.73418,26.65076],[85.73547,26.65267],[85.73225,26.65386],[85.73231,26.65561],[85.735,26.65738],[85.73671,26.66416],[85.73024,26.66584],[85.73068,26.66781],[85.72912,26.66739],[85.72564,26.67065],[85.72683,26.67395],[85.72363,26.67425],[85.72488,26.68224],[85.72352,26.68323],[85.72546,26.68488],[85.72339,26.68683],[85.7253,26.69732],[85.72332,26.69982],[85.7248,26.70033],[85.72433,26.7034],[85.72648,26.70674],[85.72499,26.7071],[85.72478,26.70989],[85.72803,26.71758],[85.7258,26.72094],[85.72947,26.72502],[85.72805,26.72981],[85.73133,26.73054],[85.7296,26.73395],[85.73065,26.73611],[85.73398,26.73713],[85.72872,26.74984],[85.73514,26.77798],[85.73448,26.79587],[85.72876,26.80287],[85.72878,26.80834],[85.72113,26.82036],[85.70432,26.83229],[85.68103,26.84322],[85.64242,26.85327],[85.63455,26.87221],[85.6239,26.87378],[85.60708,26.85753],[85.58566,26.84736],[85.58634,26.85279],[85.58387,26.85813],[85.57826,26.85675],[85.57864,26.85915],[85.57556,26.86099],[85.57237,26.85744],[85.56598,26.8411],[85.55783,26.84431],[85.55365,26.83452],[85.54329,26.83838],[85.51971,26.81455],[85.50713,26.81668],[85.4977,26.8119],[85.49892,26.81041],[85.49686,26.8092],[85.49795,26.80776],[85.49548,26.80156],[85.4968,26.79925],[85.49564,26.79703],[85.47918,26.80215],[85.4779,26.79288],[85.47348,26.79017],[85.4653,26.78801],[85.46416,26.78889],[85.45456,26.78178],[85.45191,26.78138],[85.43267,26.79009],[85.42997,26.78677],[85.42618,26.78608],[85.41843,26.79034],[85.40774,26.79135],[85.40291,26.78314],[85.39812,26.77886],[85.39244,26.7754],[85.38444,26.77426],[85.37511,26.76091],[85.37083,26.75836],[85.36816,26.75865],[85.36175,26.7628],[85.35539,26.76013],[85.33451,26.74167],[85.32289,26.74522],[85.31917,26.74927],[85.3071,26.75194],[85.26056,26.75538],[85.23999,26.76196],[85.23249,26.7624],[85.21955,26.75895],[85.21103,26.75843],[85.20473,26.76273],[85.20106,26.76866],[85.19726,26.76967],[85.1915,26.78207],[85.19467,26.7843],[85.19292,26.7904],[85.18656,26.7909],[85.18599,26.79556],[85.18058,26.79558],[85.17938,26.79827],[85.18248,26.80072],[85.17674,26.80962],[85.17703,26.81496],[85.1847,26.82197],[85.19121,26.83082],[85.19281,26.83851],[85.19097,26.84995],[85.19313,26.86332],[85.19084,26.86982],[85.16513,26.86861],[85.13995,26.87112],[85.13497,26.86773],[85.12381,26.87141],[85.10538,26.8717],[85.09988,26.87106],[85.09603,26.86694],[85.09025,26.86888],[85.08646,26.86681],[85.08621,26.8635],[85.08987,26.85966],[85.08701,26.85891],[85.08753,26.85644],[85.08388,26.85353],[85.08365,26.85628],[85.08161,26.8552],[85.0817,26.85683],[85.07993,26.85637],[85.07822,26.85866],[85.07699,26.85816],[85.07811,26.8555],[85.07657,26.85668],[85.07613,26.85549],[85.0666,26.85373],[85.06601,26.85059],[85.06413,26.84953],[85.06179,26.85351],[85.06508,26.85633],[85.06268,26.85638],[85.06331,26.85818],[85.06141,26.85679],[85.06278,26.85555],[85.06104,26.85396],[85.05801,26.85586],[85.05695,26.85286],[85.05863,26.85044],[85.05751,26.84905],[85.02397,26.85438],[85.03081,26.85853],[85.03048,26.86185],[85.02724,26.86113],[85.02668,26.86241],[85.02885,26.86337],[85.02854,26.86643],[85.03206,26.86699],[85.02984,26.87024],[85.03086,26.87436],[85.03685,26.87406],[85.03869,26.87749],[85.04267,26.87413],[85.04266,26.87725],[85.04442,26.87917],[85.04704,26.87814],[85.05339,26.88059],[85.05353,26.88199],[85.05079,26.88183],[85.04933,26.88456],[85.05184,26.88293],[85.05483,26.88431],[85.05619,26.88106],[85.0612,26.88659],[85.05938,26.88493],[85.0524,26.88594],[85.05369,26.88891],[85.05083,26.88947],[85.02271,26.89161],[85.00496,26.89474],[84.99284,26.903],[84.9931,26.90563],[84.99542,26.90646],[85.00227,26.90373],[85.00006,26.91188],[84.96806,26.91614],[84.97101,26.91723],[84.97043,26.92],[84.97196,26.92161],[84.96963,26.92476],[84.97206,26.92619],[84.97033,26.92895],[84.97691,26.93228],[84.97841,26.93614],[84.97517,26.93926],[84.97851,26.94009],[84.96533,26.95658],[84.96621,26.9581],[84.96258,26.96053],[84.95357,26.96003],[84.92985,26.96869],[84.90927,26.96809],[84.89896,26.97014],[84.89656,26.97306],[84.89198,26.97278],[84.89265,26.96965],[84.89158,26.96968],[84.8902,26.97139],[84.89061,26.97453],[84.88801,26.97762],[84.86476,26.98424],[84.85879,26.98917],[84.85571,26.98639],[84.85745,26.99045],[84.85506,26.99339],[84.85761,26.9926],[84.85669,26.99635],[84.85778,26.99762],[84.85379,26.99888],[84.84962,26.9977],[84.85272,27.00118],[84.85133,27.00229],[84.85207,27.00563],[84.85505,27.00769],[84.8254,27.02091],[84.81674,27.02058],[84.81334,27.01818],[84.81175,27.02048],[84.81208,27.01567],[84.81055,27.01841],[84.80854,27.01806],[84.80684,27.01415],[84.8108,27.01443],[84.80983,27.0109],[84.80802,27.01209],[84.80698,27.01082],[84.80685,27.008],[84.80806,27.00762],[84.80152,27.00495],[84.80047,27.00088],[84.79725,27.00422],[84.79356,26.99584],[84.79058,26.99722],[84.79195,26.99791],[84.79117,26.99958],[84.78858,26.99694],[84.78831,26.99868],[84.7862,26.99851],[84.78776,27.00315],[84.78697,27.00523],[84.78899,27.00891],[84.78679,27.00904],[84.78574,27.01094],[84.7848,27.00758],[84.78274,27.01411],[84.77342,27.01774],[84.76489,27.01315],[84.76038,27.00506],[84.75674,27.00285],[84.73304,27.01423],[84.72149,27.01405],[84.71876,27.01754],[84.71729,27.01723],[84.71669,27.01972],[84.71468,27.0196],[84.71328,27.02175],[84.70962,27.02132],[84.70127,27.027],[84.68172,27.03153],[84.64339,27.04614],[84.6429,27.04859],[84.64449,27.04895],[84.64308,27.05063],[84.64647,27.05206],[84.64442,27.05638],[84.64575,27.05852],[84.64286,27.05943],[84.64537,27.06383],[84.64311,27.06601],[84.64742,27.07105],[84.64616,27.07565],[84.64717,27.07643],[84.64859,27.07469],[84.64926,27.07714],[84.65194,27.07846],[84.65293,27.07755],[84.65285,27.08069],[84.65587,27.07921],[84.65845,27.07986],[84.65832,27.08104],[84.6541,27.08181],[84.65464,27.08388],[84.65758,27.0827],[84.66268,27.08701],[84.66472,27.08632],[84.66304,27.08936],[84.66596,27.08759],[84.66657,27.09054],[84.66884,27.08968],[84.67032,27.09105],[84.66803,27.09274],[84.66379,27.09238],[84.66438,27.09459],[84.66717,27.09337],[84.66979,27.09818],[84.67282,27.09538],[84.67449,27.09591],[84.67562,27.10381],[84.67347,27.10607],[84.67486,27.10886],[84.6706,27.10718],[84.66977,27.10955],[84.6724,27.11398],[84.67684,27.11519],[84.67542,27.12305],[84.67861,27.12626],[84.67933,27.13225],[84.67759,27.13316],[84.68384,27.14355],[84.68344,27.15048],[84.68049,27.15175],[84.68264,27.15241],[84.68678,27.15837],[84.6846,27.16085],[84.68177,27.15924],[84.67711,27.16263],[84.6776,27.16639],[84.68116,27.16889],[84.67988,27.17044],[84.67617,27.16935],[84.67565,27.17124],[84.68343,27.17749],[84.6819,27.18025],[84.68572,27.18105],[84.68349,27.1823],[84.68395,27.1843],[84.68113,27.18388],[84.68183,27.18583],[84.67969,27.18517],[84.68201,27.18832],[84.68351,27.19625],[84.68026,27.20014],[84.68557,27.20616],[84.68565,27.20859],[84.68718,27.2089],[84.6847,27.21285],[84.68689,27.2133],[84.68754,27.21521],[84.69114,27.21482],[84.68935,27.21912],[84.68973,27.22266],[84.68684,27.22389],[84.685,27.23136],[84.65125,27.29235],[84.63567,27.31808],[84.62189,27.33693],[84.61845,27.33773],[84.60643,27.33567],[84.60143,27.33865],[84.58656,27.34106],[84.56639,27.34725],[84.53347,27.35012],[84.52044,27.35368],[84.51841,27.3521],[84.51384,27.35267],[84.4857,27.35827],[84.47636,27.36232],[84.47249,27.35544],[84.47034,27.35471],[84.46618,27.35654],[84.4649,27.35945],[84.44688,27.36351],[84.44423,27.36838],[84.44044,27.37048],[84.43574,27.36916],[84.42444,27.37182],[84.42088,27.36969],[84.41354,27.37074],[84.40986,27.36849],[84.40592,27.37043],[84.39926,27.36922],[84.39655,27.37046],[84.39188,27.36799],[84.3881,27.37193],[84.37361,27.3766],[84.37012,27.37423],[84.36429,27.37319],[84.36303,27.37447],[84.3608,27.37344],[84.35714,27.37477],[84.34744,27.37461],[84.33792,27.37784],[84.33311,27.37727],[84.32807,27.38066],[84.31752,27.3819],[84.31211,27.38621],[84.30495,27.38786],[84.30049,27.39066],[84.2973,27.38881],[84.29537,27.38489],[84.29238,27.38481],[84.28555,27.39106],[84.28311,27.39653],[84.27691,27.39575],[84.27587,27.40148],[84.27956,27.40666],[84.2775,27.40914],[84.27834,27.41581],[84.27332,27.42151],[84.27305,27.42846],[84.26793,27.43203],[84.26683,27.43457],[84.26181,27.43553],[84.25852,27.43919],[84.26009,27.44557],[84.25555,27.44908],[84.25426,27.45405],[84.24607,27.45307],[84.24234,27.4547],[84.2397,27.45245],[84.23083,27.45628],[84.22683,27.45113],[84.22063,27.44811],[84.22071,27.44118],[84.20893,27.4426],[84.20614,27.44672],[84.2077,27.44902],[84.20678,27.45254],[84.208,27.4563],[84.20422,27.45946],[84.20947,27.46561],[84.20543,27.47043],[84.19498,27.47354],[84.19145,27.47002],[84.1869,27.47009],[84.1795,27.47579],[84.17576,27.47415],[84.171,27.47541],[84.1709,27.47923],[84.16692,27.47984],[84.16691,27.48187],[84.16287,27.48416],[84.15428,27.48398],[84.15216,27.48661],[84.14913,27.48591],[84.14744,27.49388],[84.14456,27.4964],[84.15021,27.5009],[84.14844,27.50304],[84.1498,27.5043],[84.14944,27.50905],[84.15186,27.51044],[84.15009,27.51268],[84.15137,27.51667],[84.14586,27.51866],[84.14364,27.51694],[84.13872,27.51774],[84.13013,27.51179],[84.12419,27.51084],[84.11726,27.51339],[84.11684,27.51917],[84.11098,27.51943],[84.10906,27.52112]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-CG","area_level":"State","area_name":"Chhattisgarh","geometry_source":"SOI_States","same_as":"LGD/22/State"},"geometry":{"type":"Polygon","coordinates":[[[83.34603,24.09744],[83.33621,24.09882],[83.32145,24.10602],[83.31475,24.09097],[83.3056,24.07964],[83.29946,24.07893],[83.2874,24.05511],[83.28211,24.04973],[83.284,24.03953],[83.28345,24.03242],[83.27911,24.01827],[83.27275,24.01817],[83.26363,24.00924],[83.25976,24.00947],[83.25768,24.01311],[83.25188,24.01491],[83.24259,24.01159],[83.24114,24.0053],[83.24243,23.99718],[83.23366,23.99607],[83.23143,23.99398],[83.2305,23.98877],[83.22361,23.98665],[83.22333,23.98421],[83.22691,23.97788],[83.21967,23.97294],[83.21861,23.96898],[83.22282,23.9622],[83.22313,23.95815],[83.21994,23.95271],[83.22003,23.94885],[83.21552,23.94551],[83.21599,23.9379],[83.21193,23.93574],[83.20846,23.93057],[83.20382,23.92868],[83.20794,23.92424],[83.20792,23.92139],[83.19843,23.91406],[83.19464,23.91433],[83.19317,23.91693],[83.18976,23.91735],[83.18803,23.91452],[83.18129,23.9151],[83.17827,23.91216],[83.17467,23.9123],[83.17119,23.90777],[83.16367,23.90877],[83.15948,23.90738],[83.15422,23.90404],[83.15277,23.89947],[83.15384,23.89673],[83.14822,23.89329],[83.14759,23.88898],[83.14148,23.88492],[83.12568,23.88279],[83.11167,23.87906],[83.09775,23.87324],[83.08189,23.87046],[83.07505,23.87012],[83.07115,23.87421],[83.06213,23.87394],[83.05248,23.87953],[83.01871,23.87947],[83.00125,23.87679],[83.00163,23.87364],[82.99722,23.87259],[82.98284,23.87416],[82.97458,23.87163],[82.94788,23.87142],[82.93662,23.87707],[82.93065,23.88946],[82.92722,23.89229],[82.9117,23.8975],[82.90516,23.89789],[82.88471,23.90884],[82.87725,23.91779],[82.86522,23.9264],[82.86111,23.93893],[82.85828,23.93926],[82.85335,23.94547],[82.84865,23.94535],[82.84112,23.95066],[82.83699,23.9568],[82.82672,23.9623],[82.81261,23.95987],[82.801,23.96096],[82.79837,23.95081],[82.79002,23.946],[82.78589,23.94089],[82.77662,23.93667],[82.77034,23.93699],[82.76201,23.93383],[82.75446,23.93419],[82.75609,23.92503],[82.75526,23.92171],[82.75238,23.91979],[82.715,23.92139],[82.71085,23.92368],[82.70351,23.92449],[82.69803,23.91992],[82.69342,23.9202],[82.68888,23.9098],[82.6834,23.90929],[82.68058,23.90715],[82.67638,23.90925],[82.67466,23.90674],[82.67115,23.90579],[82.66159,23.90764],[82.65106,23.88948],[82.65123,23.88676],[82.66845,23.87179],[82.66448,23.86255],[82.66022,23.86284],[82.66156,23.85693],[82.66047,23.85514],[82.65157,23.85548],[82.65058,23.85685],[82.65287,23.85879],[82.64958,23.86025],[82.64683,23.85914],[82.64721,23.85597],[82.6451,23.85511],[82.64718,23.85369],[82.64714,23.84872],[82.64244,23.84694],[82.63814,23.84798],[82.63674,23.84448],[82.63917,23.84165],[82.63534,23.83771],[82.62954,23.83879],[82.60756,23.83329],[82.60224,23.8303],[82.59995,23.82653],[82.58862,23.82144],[82.58361,23.82071],[82.58181,23.82301],[82.57922,23.82241],[82.57776,23.82423],[82.5732,23.82406],[82.56937,23.8203],[82.56476,23.82074],[82.56322,23.82285],[82.55425,23.8262],[82.54674,23.82619],[82.54749,23.82255],[82.53307,23.82215],[82.53355,23.82023],[82.53834,23.8202],[82.5388,23.81637],[82.54844,23.80855],[82.55147,23.79064],[82.54181,23.79149],[82.53813,23.79425],[82.53549,23.7908],[82.52446,23.78374],[82.51097,23.78602],[82.4974,23.7849],[82.48893,23.78995],[82.48418,23.80035],[82.47919,23.80246],[82.47906,23.80595],[82.46926,23.81106],[82.45378,23.81155],[82.44691,23.80455],[82.44065,23.80279],[82.4379,23.80374],[82.43574,23.80262],[82.43431,23.805],[82.42326,23.80459],[82.3932,23.79994],[82.39287,23.80324],[82.39062,23.8052],[82.37697,23.81104],[82.36924,23.80905],[82.36405,23.80994],[82.36352,23.80803],[82.35265,23.80353],[82.33947,23.80862],[82.33466,23.80255],[82.33086,23.80616],[82.3175,23.81176],[82.31152,23.8102],[82.30578,23.81172],[82.30483,23.80739],[82.29877,23.807],[82.29181,23.80982],[82.28164,23.81698],[82.27211,23.81708],[82.26061,23.82124],[82.25013,23.81568],[82.24331,23.80852],[82.23728,23.80532],[82.23181,23.80531],[82.22704,23.80829],[82.22551,23.82008],[82.20631,23.82741],[82.20811,23.83493],[82.21197,23.83585],[82.21532,23.84102],[82.21178,23.852],[82.20128,23.84864],[82.19714,23.84165],[82.18887,23.84259],[82.18622,23.83867],[82.18085,23.83628],[82.17856,23.82161],[82.17146,23.81824],[82.16383,23.82068],[82.14206,23.81555],[82.14172,23.81689],[82.12929,23.81903],[82.12337,23.82205],[82.11659,23.81701],[82.10665,23.81868],[82.09544,23.81553],[82.09418,23.81668],[82.08327,23.81542],[82.07764,23.81864],[82.07233,23.81704],[82.06173,23.81916],[82.05358,23.81838],[82.05244,23.82165],[82.04924,23.82422],[82.03842,23.82684],[82.03876,23.83313],[82.04087,23.83292],[82.04127,23.83688],[82.04405,23.83883],[82.04418,23.84165],[82.03475,23.84641],[82.02047,23.84907],[82.00881,23.86108],[82.00093,23.86218],[81.98907,23.86043],[81.98599,23.86192],[81.98171,23.86089],[81.97721,23.85624],[81.97033,23.85723],[81.9654,23.85591],[81.96359,23.85361],[81.96027,23.85553],[81.9578,23.85228],[81.95556,23.85341],[81.95417,23.85712],[81.94993,23.85665],[81.94608,23.85877],[81.94692,23.86189],[81.93848,23.86235],[81.93823,23.86409],[81.94046,23.86559],[81.93965,23.86775],[81.92893,23.87072],[81.92046,23.87061],[81.9204,23.86732],[81.91615,23.85951],[81.91044,23.85722],[81.90866,23.85108],[81.90629,23.84992],[81.90609,23.84606],[81.902,23.84486],[81.89875,23.84072],[81.89223,23.84052],[81.88816,23.83555],[81.86771,23.83414],[81.86628,23.82869],[81.86307,23.82446],[81.8382,23.8211],[81.83653,23.81998],[81.83688,23.8162],[81.82916,23.81503],[81.82751,23.81381],[81.82738,23.8106],[81.82282,23.80772],[81.815,23.80645],[81.80874,23.81342],[81.7959,23.81489],[81.79313,23.80991],[81.79112,23.80935],[81.77316,23.8164],[81.76212,23.82361],[81.75451,23.83075],[81.74285,23.83377],[81.73736,23.83918],[81.73223,23.84086],[81.72846,23.83902],[81.72547,23.83982],[81.72504,23.84463],[81.72969,23.84894],[81.73198,23.85668],[81.7202,23.86221],[81.70749,23.86113],[81.70728,23.86505],[81.70974,23.87125],[81.7077,23.87419],[81.70384,23.87593],[81.70731,23.88236],[81.70265,23.88619],[81.69044,23.88476],[81.68754,23.90648],[81.68256,23.9114],[81.67231,23.91339],[81.67172,23.91955],[81.66858,23.92496],[81.66238,23.92427],[81.65778,23.91634],[81.63847,23.91083],[81.63645,23.90759],[81.63218,23.90582],[81.62076,23.90673],[81.60902,23.9032],[81.60836,23.90149],[81.61047,23.89877],[81.61157,23.89229],[81.60375,23.88471],[81.60424,23.88175],[81.62221,23.87024],[81.61426,23.8617],[81.60493,23.86149],[81.60318,23.85371],[81.60772,23.84639],[81.6122,23.84315],[81.61132,23.83701],[81.61323,23.83448],[81.61675,23.83345],[81.62241,23.83538],[81.63242,23.83593],[81.63584,23.83451],[81.63746,23.82767],[81.64162,23.82058],[81.64132,23.81474],[81.64665,23.8115],[81.65145,23.79906],[81.64947,23.78336],[81.64445,23.77482],[81.64466,23.77013],[81.65203,23.76537],[81.67668,23.75685],[81.68185,23.7533],[81.68676,23.7475],[81.67917,23.74234],[81.67847,23.73937],[81.68606,23.73304],[81.68953,23.72377],[81.69591,23.72132],[81.68502,23.70021],[81.68408,23.69092],[81.66596,23.685],[81.66062,23.68466],[81.65555,23.68202],[81.65422,23.6778],[81.6563,23.67214],[81.65517,23.66314],[81.64455,23.65718],[81.61457,23.66292],[81.61933,23.65839],[81.62033,23.65143],[81.6142,23.62244],[81.60651,23.61387],[81.6111,23.60327],[81.61197,23.59525],[81.60834,23.59659],[81.60359,23.59336],[81.59811,23.59423],[81.59681,23.59236],[81.593,23.59601],[81.5897,23.59603],[81.58497,23.59455],[81.57668,23.58534],[81.58402,23.55358],[81.61032,23.55508],[81.61409,23.54567],[81.61247,23.54086],[81.61323,23.53343],[81.61633,23.53075],[81.61627,23.52843],[81.61368,23.52758],[81.61375,23.52168],[81.61537,23.51946],[81.61152,23.51588],[81.61232,23.51021],[81.62537,23.49676],[81.62705,23.49132],[81.62921,23.49215],[81.6321,23.49017],[81.63728,23.49036],[81.64222,23.49689],[81.64218,23.49895],[81.64849,23.49975],[81.6537,23.49806],[81.65459,23.50194],[81.65817,23.50491],[81.65954,23.51177],[81.66237,23.51414],[81.65891,23.529],[81.66812,23.53295],[81.68005,23.52925],[81.69034,23.52837],[81.69964,23.52202],[81.70204,23.52452],[81.702,23.52801],[81.70594,23.52908],[81.71108,23.53488],[81.7145,23.53597],[81.71539,23.54073],[81.72253,23.5433],[81.72152,23.54721],[81.72431,23.55026],[81.72523,23.55687],[81.72802,23.55649],[81.73636,23.56646],[81.73761,23.56507],[81.74238,23.56615],[81.74664,23.5698],[81.75265,23.56795],[81.7548,23.56559],[81.75826,23.54987],[81.77164,23.55054],[81.80191,23.5484],[81.80907,23.54934],[81.81698,23.54087],[81.81959,23.52972],[81.81758,23.52212],[81.82069,23.51524],[81.83643,23.51091],[81.83965,23.51089],[81.84398,23.5144],[81.85026,23.51355],[81.85218,23.51529],[81.86369,23.51757],[81.86912,23.51293],[81.8756,23.51271],[81.88126,23.51507],[81.89368,23.52446],[81.89685,23.52465],[81.90444,23.52955],[81.90787,23.53533],[81.91853,23.535],[81.92329,23.53266],[81.93785,23.51631],[81.93763,23.51374],[81.94234,23.50569],[81.94782,23.5011],[81.95791,23.5007],[81.95503,23.4854],[81.95499,23.46717],[81.95783,23.46532],[81.96472,23.4657],[81.96904,23.46035],[81.97036,23.45558],[81.97688,23.45181],[81.97599,23.44862],[81.9804,23.44704],[81.97779,23.44197],[81.98382,23.43457],[81.98177,23.43366],[81.98169,23.43094],[81.9839,23.42928],[81.97674,23.4238],[81.98254,23.42016],[81.98533,23.41449],[81.98843,23.41453],[81.99056,23.41849],[81.99969,23.42156],[82.0024,23.41696],[82.00955,23.41199],[82.01182,23.41592],[82.02548,23.42488],[82.02578,23.41999],[82.03275,23.40999],[82.03063,23.40824],[82.02569,23.40969],[82.02385,23.40867],[82.0238,23.40676],[82.02907,23.4002],[82.02116,23.39177],[82.0219,23.38732],[82.03231,23.38242],[82.03685,23.38874],[82.04447,23.38005],[82.056,23.37678],[82.05876,23.37875],[82.06406,23.39294],[82.07112,23.39121],[82.07704,23.39494],[82.08217,23.39347],[82.08601,23.39699],[82.09148,23.39828],[82.09301,23.39747],[82.09204,23.39364],[82.09348,23.39286],[82.10341,23.39824],[82.10494,23.39698],[82.10524,23.39256],[82.11377,23.38416],[82.1118,23.36613],[82.11011,23.36317],[82.11714,23.35546],[82.12374,23.35372],[82.14091,23.36181],[82.14575,23.36118],[82.15383,23.35036],[82.16208,23.34284],[82.16373,23.33467],[82.18281,23.32737],[82.19208,23.32677],[82.19396,23.32384],[82.19939,23.31343],[82.19479,23.30859],[82.19741,23.30688],[82.19603,23.30371],[82.19732,23.30066],[82.19671,23.29728],[82.19382,23.29522],[82.19221,23.28849],[82.19474,23.28439],[82.19338,23.27797],[82.1888,23.2735],[82.18533,23.2739],[82.17435,23.2687],[82.17229,23.2584],[82.16829,23.25515],[82.16964,23.25174],[82.16651,23.25008],[82.16718,23.24589],[82.16276,23.24509],[82.15978,23.24633],[82.15308,23.23047],[82.14527,23.22672],[82.14841,23.2211],[82.14762,23.21897],[82.15361,23.21274],[82.14976,23.20373],[82.14925,23.19738],[82.14398,23.19514],[82.14825,23.18895],[82.14364,23.18711],[82.14464,23.17954],[82.14905,23.17737],[82.1495,23.17548],[82.14854,23.17113],[82.14435,23.16565],[82.14516,23.16341],[82.16092,23.16205],[82.16226,23.15728],[82.16136,23.14311],[82.15687,23.13847],[82.1407,23.13293],[82.13664,23.12544],[82.13791,23.112],[82.12225,23.1038],[82.11609,23.1056],[82.1111,23.10935],[82.09787,23.10852],[82.0935,23.10907],[82.09216,23.11237],[82.08042,23.11269],[82.0749,23.11484],[82.07222,23.11832],[82.07008,23.1165],[82.06681,23.11676],[82.0664,23.11498],[82.06193,23.11241],[82.06005,23.10848],[82.05513,23.10685],[82.05323,23.09966],[82.04781,23.09644],[82.04906,23.09383],[82.04665,23.09248],[82.0471,23.09135],[82.04366,23.09035],[82.04372,23.08851],[82.03419,23.08005],[82.02808,23.08024],[82.02753,23.08222],[82.02257,23.07944],[82.01961,23.08104],[82.01857,23.0841],[82.01755,23.08243],[82.01276,23.08217],[82.01174,23.08004],[82.00783,23.07912],[82.00445,23.08119],[82.00042,23.08105],[81.99774,23.08441],[81.99432,23.08355],[81.99114,23.08661],[81.98948,23.08431],[81.98827,23.08614],[81.98565,23.08587],[81.98533,23.08267],[81.98241,23.08265],[81.98127,23.08015],[81.98086,23.08263],[81.97717,23.08101],[81.97621,23.07898],[81.96789,23.08072],[81.96341,23.07821],[81.96317,23.07519],[81.94225,23.07897],[81.94604,23.07628],[81.94506,23.07258],[81.94685,23.0691],[81.9439,23.06739],[81.94294,23.06477],[81.93781,23.06525],[81.9374,23.06188],[81.92955,23.06164],[81.93027,23.05904],[81.92678,23.05758],[81.92904,23.04983],[81.92449,23.04711],[81.9215,23.04081],[81.92561,23.0292],[81.93183,23.02548],[81.92951,23.02273],[81.92977,23.02061],[81.93673,23.01617],[81.93955,23.00953],[81.93914,23.00462],[81.94544,22.99582],[81.94476,22.98917],[81.95048,22.98293],[81.94621,22.97392],[81.94781,22.96754],[81.94631,22.95678],[81.91892,22.94655],[81.91274,22.94165],[81.90469,22.93145],[81.89815,22.92593],[81.8904,22.92266],[81.87824,22.90981],[81.86912,22.91733],[81.86611,22.91581],[81.86552,22.91274],[81.86933,22.9098],[81.86811,22.90209],[81.86949,22.89451],[81.86163,22.88926],[81.85319,22.89089],[81.84626,22.88672],[81.84207,22.88775],[81.83824,22.88525],[81.83837,22.88278],[81.83392,22.8809],[81.82748,22.8828],[81.81758,22.88228],[81.77568,22.87444],[81.77746,22.86752],[81.7749,22.86391],[81.77729,22.85549],[81.77653,22.85164],[81.77401,22.85022],[81.76784,22.83541],[81.76135,22.83029],[81.76946,22.82776],[81.77766,22.81643],[81.77791,22.81328],[81.78178,22.81095],[81.78413,22.7987],[81.78193,22.79607],[81.78098,22.78994],[81.7837,22.78395],[81.78358,22.77918],[81.79439,22.76646],[81.78848,22.76355],[81.77928,22.75086],[81.77307,22.75055],[81.76902,22.74187],[81.76993,22.73558],[81.75573,22.73379],[81.75359,22.72852],[81.75344,22.72102],[81.76115,22.69753],[81.77284,22.6847],[81.77237,22.66821],[81.75704,22.6472],[81.75263,22.64449],[81.74998,22.64558],[81.74847,22.64837],[81.74901,22.65178],[81.75202,22.65437],[81.75029,22.65935],[81.7464,22.66291],[81.74299,22.67254],[81.73953,22.67509],[81.73947,22.67212],[81.72785,22.67535],[81.72526,22.67308],[81.72272,22.65706],[81.71314,22.64809],[81.69889,22.64476],[81.68877,22.64847],[81.68332,22.64691],[81.67451,22.63755],[81.67205,22.63256],[81.66904,22.63196],[81.66244,22.62681],[81.6609,22.61929],[81.65274,22.61856],[81.64725,22.61326],[81.64571,22.60487],[81.64803,22.5977],[81.64649,22.59341],[81.64943,22.58895],[81.64498,22.58686],[81.64548,22.58444],[81.64896,22.58496],[81.64971,22.58145],[81.65184,22.58085],[81.65783,22.58444],[81.65517,22.57881],[81.65556,22.57582],[81.65618,22.57229],[81.65993,22.56946],[81.65346,22.56302],[81.64929,22.56328],[81.64277,22.55971],[81.63874,22.5611],[81.63625,22.56005],[81.63519,22.56528],[81.62903,22.56336],[81.62404,22.55588],[81.62869,22.54442],[81.62194,22.53802],[81.61542,22.53692],[81.61321,22.53867],[81.60499,22.53461],[81.59998,22.53526],[81.59634,22.53653],[81.59183,22.54522],[81.58623,22.54392],[81.56955,22.55073],[81.56283,22.5475],[81.56275,22.54236],[81.56303,22.53396],[81.57003,22.53227],[81.56253,22.53344],[81.55895,22.53079],[81.55296,22.53105],[81.54608,22.52758],[81.54098,22.53304],[81.53267,22.53853],[81.52223,22.53901],[81.52134,22.5366],[81.52344,22.53217],[81.51824,22.5198],[81.51049,22.52196],[81.50931,22.52606],[81.49665,22.51952],[81.49553,22.51426],[81.49744,22.51164],[81.49442,22.50501],[81.48938,22.50317],[81.48631,22.49376],[81.48701,22.49024],[81.48471,22.48783],[81.47856,22.49222],[81.4728,22.49374],[81.46301,22.49307],[81.45884,22.48947],[81.45257,22.49581],[81.44942,22.49576],[81.44689,22.49343],[81.44261,22.49435],[81.44397,22.49072],[81.45108,22.4866],[81.44724,22.48465],[81.44254,22.4792],[81.4464,22.47618],[81.45088,22.47859],[81.45019,22.47124],[81.44662,22.46976],[81.44903,22.46752],[81.45589,22.4695],[81.4573,22.47168],[81.45893,22.46929],[81.45528,22.46688],[81.44737,22.46588],[81.44102,22.47178],[81.44293,22.4738],[81.44153,22.47991],[81.43921,22.48212],[81.43221,22.47921],[81.42784,22.47981],[81.42278,22.47005],[81.42451,22.46327],[81.4287,22.45689],[81.42295,22.44769],[81.4067,22.44095],[81.39641,22.44008],[81.39298,22.44904],[81.39006,22.45226],[81.39045,22.45582],[81.38811,22.45921],[81.39006,22.46331],[81.38865,22.46821],[81.39125,22.47109],[81.3915,22.47771],[81.38406,22.48976],[81.38619,22.49855],[81.38206,22.50982],[81.37582,22.51105],[81.37063,22.51488],[81.36136,22.515],[81.36059,22.51204],[81.35431,22.51126],[81.35388,22.51423],[81.3506,22.51759],[81.34006,22.51951],[81.33474,22.52424],[81.32653,22.52614],[81.32287,22.52302],[81.32338,22.51893],[81.31839,22.51686],[81.31721,22.51461],[81.31993,22.50705],[81.31985,22.50323],[81.3182,22.50186],[81.32089,22.49523],[81.31813,22.49392],[81.32225,22.49118],[81.3228,22.48916],[81.32049,22.48596],[81.31518,22.48777],[81.31373,22.48292],[81.30729,22.48191],[81.29995,22.49029],[81.29178,22.49429],[81.28127,22.50295],[81.27329,22.49319],[81.26907,22.49432],[81.26213,22.49327],[81.25978,22.48513],[81.26193,22.47217],[81.24831,22.45878],[81.23219,22.45216],[81.20774,22.45659],[81.20612,22.46084],[81.19946,22.46303],[81.20145,22.4682],[81.19992,22.4852],[81.19767,22.48957],[81.19352,22.49095],[81.18697,22.48884],[81.17269,22.48791],[81.16724,22.47797],[81.16282,22.47455],[81.15512,22.45491],[81.1497,22.45313],[81.14103,22.45423],[81.12701,22.44923],[81.12053,22.4458],[81.11116,22.43757],[81.10882,22.42876],[81.11034,22.41744],[81.10834,22.40096],[81.10598,22.38769],[81.10366,22.38337],[81.10867,22.37382],[81.11312,22.35327],[81.12121,22.3426],[81.11355,22.32413],[81.11894,22.30922],[81.11872,22.29126],[81.10799,22.2845],[81.10185,22.2783],[81.09731,22.26898],[81.09153,22.249],[81.08241,22.24383],[81.07955,22.23938],[81.07771,22.23904],[81.07604,22.24465],[81.07261,22.24837],[81.05961,22.24429],[81.05006,22.24455],[81.03791,22.23389],[81.02705,22.22892],[81.02364,22.22928],[81.01946,22.22118],[81.02176,22.21212],[81.03037,22.20317],[81.03164,22.19965],[81.02901,22.1925],[81.03066,22.1874],[81.02553,22.1874],[81.02243,22.18947],[81.01666,22.18553],[81.01716,22.17961],[81.02675,22.16639],[81.02631,22.16284],[81.02221,22.15773],[81.02378,22.14867],[81.02191,22.13273],[81.01368,22.13367],[80.99906,22.13132],[80.99487,22.13302],[80.98895,22.12825],[80.9826,22.1257],[80.97814,22.12011],[80.98096,22.11021],[80.98434,22.11456],[80.99048,22.11355],[81.00316,22.10106],[81.00666,22.09995],[81.01133,22.09557],[81.00612,22.09219],[81.00145,22.0835],[81.00458,22.07536],[81.0067,22.075],[81.00895,22.07177],[81.0062,22.06321],[81.00317,22.05849],[80.99488,22.05861],[80.99439,22.04924],[80.98967,22.05138],[80.98354,22.0486],[80.98054,22.05471],[80.9694,22.05799],[80.96918,22.06671],[80.97213,22.07891],[80.97166,22.08305],[80.96655,22.09353],[80.96101,22.10003],[80.96076,22.10357],[80.95698,22.11042],[80.94758,22.11827],[80.92195,22.11995],[80.91469,22.11319],[80.90793,22.10957],[80.89707,22.06478],[80.89295,22.06308],[80.88901,22.0571],[80.88611,22.05915],[80.88251,22.05856],[80.88216,22.05248],[80.8858,22.04962],[80.87579,22.03853],[80.87695,22.03391],[80.87578,22.01104],[80.86575,21.99426],[80.85914,21.97078],[80.85267,21.95731],[80.84087,21.95558],[80.83849,21.95797],[80.83606,21.95453],[80.82881,21.95871],[80.82549,21.95842],[80.8275,21.95617],[80.82602,21.95284],[80.82913,21.95355],[80.82747,21.95127],[80.82898,21.94838],[80.83318,21.95011],[80.83129,21.94729],[80.83404,21.94575],[80.83647,21.94974],[80.83753,21.94698],[80.84304,21.94612],[80.84204,21.94415],[80.84589,21.94208],[80.84139,21.94117],[80.84571,21.93985],[80.84581,21.93397],[80.8477,21.93253],[80.84765,21.93074],[80.84562,21.93043],[80.8461,21.92624],[80.83925,21.92305],[80.83981,21.91945],[80.83623,21.91461],[80.835,21.90834],[80.83212,21.90797],[80.83614,21.907],[80.83339,21.90213],[80.83477,21.89574],[80.83205,21.89035],[80.83394,21.89105],[80.83276,21.88911],[80.83499,21.88559],[80.84326,21.88239],[80.84279,21.88064],[80.84504,21.87767],[80.84295,21.87607],[80.84621,21.87387],[80.84991,21.87625],[80.84956,21.87344],[80.85331,21.87257],[80.85272,21.87048],[80.84909,21.87113],[80.84576,21.86975],[80.84276,21.86533],[80.84539,21.86475],[80.84524,21.86233],[80.84741,21.86354],[80.8487,21.8619],[80.8465,21.85997],[80.84929,21.85917],[80.85024,21.85588],[80.85256,21.85486],[80.85094,21.8521],[80.84654,21.85281],[80.83937,21.84784],[80.84127,21.83978],[80.83891,21.84002],[80.8407,21.83867],[80.83868,21.83836],[80.83837,21.8367],[80.84247,21.83553],[80.84518,21.82882],[80.84039,21.81823],[80.84143,21.81539],[80.83906,21.81327],[80.84036,21.8124],[80.83751,21.80945],[80.83956,21.80721],[80.83809,21.80531],[80.8395,21.80323],[80.83862,21.80231],[80.84018,21.80215],[80.83567,21.79717],[80.83663,21.7961],[80.83205,21.7942],[80.83181,21.78946],[80.82984,21.78916],[80.83022,21.78678],[80.82618,21.78298],[80.8262,21.78159],[80.82954,21.77994],[80.82709,21.77863],[80.82821,21.77621],[80.82358,21.77499],[80.82274,21.77289],[80.82406,21.77218],[80.82263,21.7714],[80.82458,21.77045],[80.82133,21.768],[80.82278,21.76795],[80.822,21.76602],[80.81864,21.7656],[80.81712,21.76213],[80.81563,21.75573],[80.81661,21.75399],[80.82017,21.75402],[80.81974,21.74802],[80.80926,21.74843],[80.80451,21.74662],[80.80326,21.74447],[80.78543,21.74031],[80.78446,21.74287],[80.78585,21.74876],[80.77963,21.7507],[80.77627,21.75363],[80.77792,21.75477],[80.77203,21.75852],[80.75938,21.75918],[80.75599,21.76206],[80.74747,21.75554],[80.74034,21.74413],[80.73781,21.73626],[80.73987,21.732],[80.73338,21.72777],[80.734,21.72053],[80.73206,21.71366],[80.72614,21.71367],[80.72568,21.71214],[80.72902,21.70692],[80.73397,21.70594],[80.73513,21.70389],[80.73233,21.69816],[80.73414,21.69451],[80.733,21.69266],[80.72978,21.69206],[80.72531,21.68128],[80.72145,21.677],[80.71598,21.67473],[80.71918,21.66849],[80.71801,21.66619],[80.71526,21.66578],[80.7163,21.66328],[80.71439,21.66155],[80.71708,21.66008],[80.71928,21.64537],[80.72685,21.64562],[80.72764,21.63666],[80.72958,21.63403],[80.72901,21.62686],[80.73157,21.62651],[80.7291,21.62056],[80.73095,21.61735],[80.7234,21.61405],[80.72297,21.61203],[80.72498,21.60955],[80.72191,21.60955],[80.71705,21.60297],[80.71879,21.60037],[80.71637,21.59907],[80.71808,21.5932],[80.71543,21.5903],[80.71861,21.58743],[80.71536,21.58505],[80.7255,21.58009],[80.72891,21.57258],[80.72867,21.56995],[80.72571,21.5691],[80.72598,21.56635],[80.72117,21.56122],[80.72238,21.55993],[80.71999,21.555],[80.72455,21.55267],[80.72763,21.54869],[80.73419,21.54577],[80.74078,21.53923],[80.73048,21.5156],[80.73365,21.51279],[80.7315,21.50818],[80.73321,21.50066],[80.72929,21.49896],[80.7276,21.4962],[80.73289,21.48434],[80.73716,21.48098],[80.73775,21.47312],[80.73493,21.45991],[80.73001,21.45256],[80.72355,21.4443],[80.71429,21.43619],[80.70682,21.43307],[80.70574,21.43088],[80.70719,21.42546],[80.70655,21.41156],[80.69993,21.40458],[80.70055,21.3966],[80.69716,21.39343],[80.69911,21.39094],[80.69029,21.37207],[80.68739,21.36996],[80.68493,21.37015],[80.6802,21.36486],[80.68188,21.35995],[80.67648,21.35101],[80.67778,21.34881],[80.6716,21.34577],[80.67242,21.34096],[80.67114,21.33825],[80.66418,21.33733],[80.66005,21.33408],[80.66314,21.33437],[80.66556,21.32825],[80.6712,21.32565],[80.67487,21.32185],[80.67534,21.31775],[80.68156,21.31357],[80.6789,21.30333],[80.67957,21.29884],[80.66997,21.29116],[80.66124,21.29107],[80.65881,21.28669],[80.65908,21.28195],[80.65071,21.27738],[80.64917,21.27352],[80.64879,21.26216],[80.64384,21.25147],[80.63926,21.24732],[80.635,21.24748],[80.62312,21.24009],[80.61702,21.22929],[80.61378,21.22657],[80.60592,21.2242],[80.59819,21.22548],[80.58758,21.2221],[80.5779,21.21749],[80.56977,21.20581],[80.55947,21.2021],[80.54144,21.20109],[80.52963,21.20533],[80.51776,21.19281],[80.51499,21.18303],[80.50927,21.18601],[80.50731,21.18463],[80.50259,21.18532],[80.50045,21.18273],[80.49361,21.1796],[80.49206,21.17702],[80.48675,21.17676],[80.47861,21.17068],[80.4757,21.17099],[80.47337,21.17368],[80.46405,21.17463],[80.46081,21.16476],[80.46104,21.15727],[80.45875,21.15005],[80.44471,21.12196],[80.44517,21.12068],[80.45474,21.11828],[80.45819,21.11387],[80.4536,21.11156],[80.45345,21.11268],[80.4478,21.11242],[80.44647,21.1048],[80.43915,21.09656],[80.44164,21.0936],[80.44087,21.08984],[80.44629,21.08412],[80.44652,21.07341],[80.44966,21.06918],[80.44718,21.06326],[80.44956,21.06029],[80.4495,21.05726],[80.45393,21.05306],[80.4512,21.04284],[80.45264,21.03883],[80.45064,21.03684],[80.4495,21.03032],[80.44472,21.02799],[80.44012,21.02808],[80.43923,21.02184],[80.43581,21.02023],[80.42888,21.01169],[80.4251,21.01138],[80.42426,21.0085],[80.42581,21.00597],[80.43518,21.00148],[80.44377,20.99404],[80.44288,20.98645],[80.44553,20.97977],[80.44376,20.97719],[80.44535,20.97063],[80.4547,20.9528],[80.45472,20.94659],[80.46175,20.93984],[80.46175,20.93332],[80.4637,20.9292],[80.49295,20.92933],[80.50327,20.93135],[80.51907,20.92982],[80.53448,20.93459],[80.53902,20.93258],[80.54606,20.93501],[80.54628,20.93199],[80.54203,20.93022],[80.54294,20.92535],[80.54178,20.92392],[80.5481,20.91184],[80.55612,20.8892],[80.55393,20.87158],[80.55653,20.86089],[80.55504,20.84658],[80.55654,20.83784],[80.56123,20.83058],[80.56181,20.82437],[80.55859,20.81158],[80.54917,20.79606],[80.55219,20.78087],[80.55166,20.76403],[80.55867,20.75122],[80.56276,20.74732],[80.56284,20.734],[80.56001,20.7262],[80.56515,20.71079],[80.56729,20.70737],[80.57485,20.70405],[80.5818,20.69741],[80.58765,20.6847],[80.58368,20.67662],[80.58013,20.67292],[80.55697,20.67023],[80.55247,20.66809],[80.54491,20.66028],[80.53078,20.66011],[80.51793,20.65506],[80.49565,20.63685],[80.49415,20.6125],[80.49675,20.6024],[80.50284,20.59382],[80.50441,20.58335],[80.52093,20.58048],[80.53884,20.585],[80.54497,20.59018],[80.55783,20.59434],[80.56439,20.60362],[80.58077,20.60836],[80.60141,20.60879],[80.60502,20.60743],[80.61231,20.60051],[80.62829,20.60009],[80.63186,20.5984],[80.62406,20.59205],[80.62323,20.58923],[80.61735,20.58575],[80.62555,20.57813],[80.62108,20.57443],[80.62096,20.57006],[80.62587,20.56846],[80.62659,20.56381],[80.62406,20.55903],[80.62431,20.55577],[80.61843,20.55529],[80.61774,20.55212],[80.61527,20.5499],[80.61797,20.54658],[80.62132,20.5328],[80.61796,20.52545],[80.62088,20.52589],[80.61732,20.51517],[80.61885,20.51434],[80.61722,20.51066],[80.61932,20.50577],[80.61471,20.49256],[80.61635,20.48836],[80.6126,20.46193],[80.60217,20.44996],[80.60266,20.44621],[80.60805,20.44388],[80.61289,20.43871],[80.61364,20.43498],[80.60813,20.42415],[80.60009,20.41801],[80.59892,20.41058],[80.59148,20.39307],[80.59473,20.3858],[80.59729,20.38596],[80.59658,20.38384],[80.6038,20.38124],[80.61075,20.37506],[80.60948,20.36985],[80.6159,20.35991],[80.61511,20.35179],[80.61881,20.34913],[80.61854,20.34473],[80.62158,20.33956],[80.6258,20.33692],[80.62635,20.33263],[80.62237,20.32541],[80.61485,20.32239],[80.61052,20.3184],[80.58808,20.31792],[80.5592,20.30851],[80.54958,20.30896],[80.54604,20.30603],[80.54618,20.29766],[80.5435,20.29353],[80.5322,20.28086],[80.52256,20.27354],[80.51882,20.26617],[80.48991,20.27826],[80.47913,20.2783],[80.46694,20.27612],[80.44721,20.26246],[80.4369,20.26117],[80.42205,20.25349],[80.41678,20.24882],[80.39814,20.24427],[80.39526,20.24501],[80.39519,20.23701],[80.40483,20.21873],[80.42205,20.2068],[80.42101,20.19617],[80.41211,20.19447],[80.40069,20.18972],[80.39659,20.1739],[80.38854,20.1652],[80.40182,20.14724],[80.42593,20.13993],[80.42959,20.1361],[80.43338,20.13533],[80.45545,20.13793],[80.45465,20.14525],[80.45664,20.1493],[80.46015,20.15094],[80.46616,20.15042],[80.48508,20.14387],[80.49695,20.14553],[80.50559,20.14444],[80.50993,20.1413],[80.51241,20.13584],[80.53067,20.13172],[80.54034,20.12285],[80.55207,20.11796],[80.55193,20.10933],[80.54772,20.10542],[80.544,20.09564],[80.55491,20.07969],[80.55681,20.07188],[80.55437,20.06543],[80.55109,20.06164],[80.54931,20.05525],[80.55098,20.04164],[80.54684,20.02898],[80.54587,20.02116],[80.54697,20.01795],[80.54256,20.01077],[80.54985,20.00081],[80.5496,19.98597],[80.54378,19.97754],[80.53764,19.97379],[80.5378,19.96956],[80.5358,19.96553],[80.53939,19.96256],[80.53721,19.95931],[80.5389,19.95189],[80.53164,19.94857],[80.52989,19.93947],[80.52561,19.93731],[80.52362,19.93379],[80.50965,19.93105],[80.50474,19.92855],[80.50002,19.92861],[80.49593,19.93106],[80.48875,19.93061],[80.48073,19.93437],[80.47842,19.93844],[80.47998,19.94092],[80.47912,19.944],[80.47316,19.95095],[80.46603,19.94818],[80.45216,19.9576],[80.43015,19.94064],[80.41125,19.93849],[80.41257,19.92464],[80.40795,19.91271],[80.41388,19.90745],[80.42371,19.90259],[80.43322,19.90284],[80.45038,19.89633],[80.45717,19.89897],[80.46203,19.90438],[80.46862,19.90756],[80.47414,19.90381],[80.49143,19.90201],[80.49958,19.89084],[80.50582,19.87065],[80.49952,19.86968],[80.48629,19.86359],[80.48253,19.85881],[80.48417,19.85423],[80.48102,19.84927],[80.47869,19.83932],[80.4719,19.83556],[80.46908,19.82702],[80.46007,19.82299],[80.44072,19.81033],[80.42968,19.80714],[80.42158,19.8134],[80.41306,19.81639],[80.40162,19.81704],[80.40769,19.806],[80.4017,19.7962],[80.40488,19.79372],[80.42416,19.79916],[80.43949,19.79606],[80.4493,19.78977],[80.46426,19.79578],[80.46803,19.78882],[80.48083,19.78129],[80.48266,19.77274],[80.48903,19.77041],[80.49131,19.77529],[80.48999,19.79015],[80.48595,19.79648],[80.48497,19.80248],[80.47565,19.80362],[80.46888,19.81045],[80.48058,19.82751],[80.50037,19.82771],[80.50404,19.83085],[80.52021,19.83172],[80.5463,19.81827],[80.54522,19.80608],[80.54756,19.7949],[80.54244,19.78345],[80.54261,19.77992],[80.54374,19.7758],[80.55261,19.76556],[80.56215,19.76097],[80.57146,19.75923],[80.57382,19.75481],[80.58206,19.75082],[80.5842,19.74737],[80.58141,19.746],[80.58489,19.74408],[80.58647,19.74114],[80.5901,19.74222],[80.59438,19.73917],[80.59897,19.74031],[80.60572,19.73673],[80.61106,19.73817],[80.61397,19.73503],[80.6211,19.73303],[80.62676,19.72578],[80.64013,19.72531],[80.6502,19.71143],[80.65641,19.70709],[80.66344,19.70593],[80.67222,19.70072],[80.67425,19.68441],[80.66734,19.65771],[80.66637,19.63799],[80.66262,19.62248],[80.66533,19.61188],[80.67027,19.60932],[80.68847,19.61317],[80.70567,19.61398],[80.71465,19.6167],[80.73034,19.61018],[80.73308,19.6063],[80.74085,19.60623],[80.74588,19.60154],[80.75752,19.59667],[80.76,19.59165],[80.76532,19.59039],[80.76943,19.58667],[80.76703,19.57491],[80.77511,19.56251],[80.78113,19.56375],[80.78944,19.56042],[80.797,19.56248],[80.80633,19.56896],[80.81079,19.5689],[80.81615,19.5712],[80.82396,19.56672],[80.83559,19.56636],[80.83946,19.55941],[80.84065,19.55425],[80.8394,19.54921],[80.8437,19.53845],[80.84967,19.5345],[80.8499,19.52891],[80.85621,19.523],[80.86448,19.52004],[80.86851,19.52177],[80.87314,19.5187],[80.88369,19.52617],[80.8912,19.52051],[80.89496,19.51962],[80.89471,19.50962],[80.89321,19.50727],[80.89428,19.50369],[80.89294,19.5023],[80.89502,19.50079],[80.89768,19.48045],[80.89343,19.46658],[80.88001,19.4503],[80.87363,19.44499],[80.86437,19.44403],[80.85674,19.44604],[80.85345,19.44475],[80.85049,19.44669],[80.84759,19.44539],[80.84242,19.44691],[80.83013,19.44319],[80.82795,19.44014],[80.82306,19.43985],[80.81253,19.43276],[80.79585,19.43226],[80.79932,19.42272],[80.80429,19.41946],[80.80447,19.41195],[80.81223,19.40636],[80.81665,19.39715],[80.81733,19.38391],[80.82067,19.38116],[80.82839,19.38008],[80.84185,19.37191],[80.84905,19.36974],[80.85285,19.3639],[80.84608,19.35525],[80.83036,19.34818],[80.81007,19.33621],[80.80609,19.32751],[80.79883,19.32662],[80.79567,19.3234],[80.79022,19.3236],[80.77421,19.31358],[80.76861,19.30362],[80.76304,19.29719],[80.75974,19.29584],[80.75949,19.29125],[80.75573,19.28927],[80.75096,19.28776],[80.74313,19.28902],[80.74229,19.28708],[80.73832,19.28546],[80.72656,19.28718],[80.71076,19.28176],[80.70417,19.28309],[80.70185,19.2821],[80.69931,19.28474],[80.6957,19.28433],[80.6897,19.28698],[80.68865,19.29517],[80.69315,19.31555],[80.68613,19.32673],[80.6799,19.33033],[80.67313,19.33001],[80.65405,19.32281],[80.64836,19.31572],[80.64699,19.31649],[80.63649,19.31333],[80.63151,19.30717],[80.62329,19.30572],[80.61498,19.30983],[80.61254,19.30952],[80.60789,19.31823],[80.60766,19.32613],[80.59003,19.35177],[80.59084,19.3577],[80.58822,19.37026],[80.5918,19.37591],[80.58045,19.39861],[80.57708,19.40184],[80.57307,19.40246],[80.56248,19.3991],[80.5521,19.38854],[80.54417,19.38388],[80.53843,19.37779],[80.52033,19.34777],[80.50681,19.34242],[80.49574,19.34323],[80.48834,19.34177],[80.4825,19.33814],[80.47705,19.32992],[80.47134,19.31383],[80.46303,19.30092],[80.45736,19.28834],[80.45473,19.27499],[80.44603,19.26417],[80.42987,19.25408],[80.39847,19.2474],[80.39359,19.24501],[80.38631,19.233],[80.38391,19.21591],[80.38511,19.21151],[80.3918,19.20263],[80.39435,19.19637],[80.39384,19.1878],[80.38766,19.18051],[80.34789,19.16012],[80.34778,19.15236],[80.34068,19.14621],[80.33308,19.14552],[80.32743,19.13511],[80.33,19.13272],[80.33123,19.12795],[80.33068,19.12049],[80.33621,19.11185],[80.33962,19.10011],[80.32792,19.09505],[80.33114,19.08135],[80.32892,19.07591],[80.32967,19.07011],[80.31996,19.06588],[80.29734,19.04901],[80.29638,19.04688],[80.29824,19.04128],[80.30288,19.03491],[80.30516,19.02735],[80.30313,19.02216],[80.29153,19.00922],[80.28705,19.00682],[80.27401,18.99469],[80.27298,18.99144],[80.27393,18.96651],[80.26907,18.94807],[80.27088,18.93848],[80.2762,18.92977],[80.30006,18.91084],[80.3155,18.88949],[80.32619,18.8809],[80.33524,18.86865],[80.34926,18.8478],[80.35172,18.8416],[80.35431,18.82646],[80.35274,18.81898],[80.35035,18.81484],[80.3418,18.8124],[80.323,18.79897],[80.31401,18.79993],[80.30599,18.79794],[80.29994,18.79445],[80.29149,18.78347],[80.28845,18.77738],[80.28837,18.77378],[80.27679,18.76659],[80.27394,18.76551],[80.26217,18.7701],[80.25671,18.76998],[80.2477,18.7642],[80.24443,18.7579],[80.25974,18.74232],[80.27004,18.72561],[80.28361,18.71751],[80.28649,18.71143],[80.30072,18.69214],[80.30643,18.68137],[80.31867,18.64215],[80.32749,18.63538],[80.33102,18.62821],[80.3342,18.61338],[80.3463,18.59528],[80.34978,18.59379],[80.35563,18.59464],[80.36215,18.59915],[80.36295,18.60323],[80.36616,18.60706],[80.37516,18.61066],[80.37827,18.60891],[80.38845,18.59666],[80.39415,18.60061],[80.39585,18.60493],[80.40914,18.60979],[80.42,18.6104],[80.42241,18.61512],[80.42762,18.61288],[80.43039,18.61646],[80.45612,18.62936],[80.46554,18.62394],[80.47752,18.62584],[80.47917,18.62873],[80.48826,18.63109],[80.5016,18.62157],[80.51466,18.61933],[80.51883,18.61431],[80.51929,18.60865],[80.52813,18.60266],[80.53074,18.59894],[80.53525,18.59074],[80.53451,18.58835],[80.54228,18.58691],[80.55643,18.57974],[80.56749,18.57125],[80.57141,18.56468],[80.59096,18.5579],[80.59991,18.55304],[80.61064,18.54237],[80.6185,18.52767],[80.62276,18.52856],[80.63109,18.5219],[80.63757,18.52253],[80.64094,18.51151],[80.63685,18.50702],[80.63721,18.50435],[80.6513,18.4859],[80.65531,18.47586],[80.67334,18.46656],[80.67873,18.46077],[80.6861,18.45826],[80.68806,18.44736],[80.69576,18.44457],[80.70172,18.44459],[80.70531,18.43986],[80.69824,18.43756],[80.6962,18.42473],[80.69895,18.42143],[80.71827,18.40973],[80.72083,18.41104],[80.72286,18.41518],[80.73487,18.41284],[80.73217,18.40122],[80.71968,18.3908],[80.72276,18.38456],[80.7294,18.37884],[80.73023,18.37592],[80.7269,18.36913],[80.7315,18.35491],[80.74214,18.3411],[80.74765,18.32996],[80.74872,18.30892],[80.75772,18.30191],[80.75874,18.2993],[80.75683,18.29506],[80.75949,18.28987],[80.76186,18.28823],[80.76914,18.28763],[80.77548,18.2782],[80.78063,18.26605],[80.78983,18.26412],[80.79415,18.25963],[80.79424,18.25248],[80.79265,18.24945],[80.77678,18.24285],[80.7372,18.22209],[80.73682,18.17733],[80.74497,18.17033],[80.77544,18.16674],[80.79911,18.16817],[80.81326,18.18019],[80.81747,18.18911],[80.82407,18.19104],[80.8226,18.22411],[80.82359,18.23608],[80.83672,18.23892],[80.84343,18.23244],[80.86052,18.23199],[80.86594,18.23013],[80.87261,18.21058],[80.87097,18.20479],[80.86391,18.20265],[80.85521,18.20416],[80.85291,18.202],[80.85854,18.18645],[80.85708,18.17442],[80.8604,18.16139],[80.86016,18.14786],[80.86545,18.14145],[80.86667,18.13692],[80.89108,18.13598],[80.91417,18.14117],[80.9399,18.15543],[80.94164,18.15662],[80.94236,18.16038],[80.95162,18.16366],[80.95766,18.17355],[80.97903,18.17541],[80.97874,18.1508],[80.95551,18.12906],[80.95178,18.09012],[80.94926,18.08286],[80.95344,18.07863],[80.96733,18.0517],[80.96976,18.04385],[80.96426,18.03814],[80.96954,18.03175],[80.97326,18.02364],[80.97987,18.00196],[80.98784,17.94445],[80.99834,17.91679],[80.99934,17.90329],[80.99417,17.8809],[80.99655,17.87175],[80.99645,17.84907],[81.00323,17.83062],[81.00346,17.81952],[81.00822,17.79937],[81.01901,17.79084],[81.03176,17.78847],[81.03898,17.78415],[81.04662,17.78231],[81.07326,17.78645],[81.08583,17.79948],[81.09046,17.80241],[81.09397,17.80927],[81.09766,17.81237],[81.11179,17.82088],[81.12792,17.827],[81.14213,17.84146],[81.15728,17.85043],[81.16613,17.8576],[81.17065,17.85476],[81.19931,17.84693],[81.21561,17.83451],[81.2393,17.82602],[81.24838,17.81666],[81.26626,17.80952],[81.30497,17.80866],[81.32612,17.81395],[81.3456,17.8103],[81.34845,17.81233],[81.35411,17.81229],[81.35878,17.80948],[81.37731,17.80446],[81.38544,17.79844],[81.38656,17.79487],[81.39257,17.79416],[81.39309,17.80808],[81.3885,17.82761],[81.40326,17.84943],[81.40382,17.85301],[81.39427,17.86928],[81.39548,17.88321],[81.39927,17.89192],[81.40329,17.89579],[81.40834,17.89596],[81.4167,17.89282],[81.42145,17.88838],[81.43534,17.88082],[81.44463,17.88575],[81.44811,17.88974],[81.4475,17.89849],[81.45282,17.90756],[81.45337,17.91463],[81.44992,17.92403],[81.44911,17.93193],[81.45291,17.93637],[81.45984,17.95295],[81.47211,17.9605],[81.47609,17.96934],[81.48295,17.97682],[81.47762,17.98841],[81.48028,17.99779],[81.47991,18.00439],[81.48312,18.02705],[81.48015,18.03369],[81.48041,18.05074],[81.48264,18.05567],[81.49069,18.06284],[81.4966,18.07095],[81.49963,18.07985],[81.51286,18.09869],[81.51509,18.12276],[81.51289,18.13575],[81.51382,18.14054],[81.51832,18.14816],[81.52413,18.15081],[81.52582,18.1534],[81.526,18.16042],[81.52373,18.16589],[81.51776,18.17546],[81.50992,18.17949],[81.507,18.1862],[81.50941,18.19457],[81.51326,18.20054],[81.51552,18.21324],[81.51983,18.21766],[81.51992,18.22199],[81.52426,18.22751],[81.52593,18.23355],[81.53045,18.24028],[81.52766,18.25094],[81.52464,18.25586],[81.52524,18.25771],[81.53527,18.26838],[81.54128,18.27006],[81.55084,18.2693],[81.56433,18.2752],[81.57346,18.28264],[81.58551,18.29643],[81.5929,18.30071],[81.5976,18.30891],[81.60054,18.30969],[81.61653,18.30735],[81.62811,18.31384],[81.63965,18.31794],[81.64452,18.31818],[81.65132,18.32153],[81.66223,18.32123],[81.66217,18.32498],[81.65192,18.33254],[81.64966,18.3369],[81.65087,18.34062],[81.65914,18.34656],[81.75006,18.35275],[81.76887,18.41709],[81.79502,18.44072],[81.85621,18.4914],[81.85783,18.49477],[81.85611,18.50092],[81.85699,18.50743],[81.86825,18.52492],[81.87968,18.52524],[81.88927,18.53816],[81.8979,18.53509],[81.90901,18.53807],[81.90587,18.54516],[81.90141,18.54861],[81.90862,18.553],[81.9057,18.56307],[81.90592,18.56455],[81.91036,18.56577],[81.91069,18.57063],[81.91557,18.57281],[81.91777,18.5708],[81.92084,18.57269],[81.92678,18.56673],[81.92971,18.56613],[81.9381,18.5666],[81.94508,18.57014],[81.95057,18.57002],[81.95051,18.57485],[81.95331,18.57671],[81.95291,18.58282],[81.95607,18.58393],[81.95984,18.58948],[81.96364,18.59044],[81.9634,18.5941],[81.96085,18.59662],[81.95098,18.60095],[81.94429,18.60075],[81.93693,18.60557],[81.93506,18.60736],[81.93515,18.61265],[81.93014,18.61858],[81.90848,18.62856],[81.89459,18.62954],[81.89521,18.63282],[81.89887,18.63523],[81.89405,18.64228],[81.8982,18.65441],[81.89501,18.65445],[81.89377,18.65746],[81.89835,18.65854],[81.90089,18.66137],[81.91526,18.6513],[81.92173,18.64291],[81.93637,18.6448],[81.94303,18.64317],[81.94894,18.64371],[81.95316,18.65404],[81.95279,18.65954],[81.95508,18.66422],[81.9616,18.67028],[81.96915,18.67339],[81.96075,18.68863],[81.96294,18.68898],[81.97098,18.69864],[81.9889,18.70528],[81.99473,18.70468],[81.99859,18.70691],[81.99992,18.71108],[82.00583,18.71465],[82.00879,18.71255],[82.01674,18.7195],[82.02815,18.72121],[82.03092,18.72379],[82.04021,18.72391],[82.04812,18.7214],[82.05365,18.72361],[82.05609,18.7229],[82.05877,18.71934],[82.06277,18.71902],[82.06505,18.72007],[82.06742,18.7265],[82.07456,18.72462],[82.07653,18.72211],[82.08497,18.71859],[82.08688,18.72142],[82.08606,18.72795],[82.08836,18.72977],[82.08769,18.73113],[82.09352,18.74681],[82.09258,18.75268],[82.08874,18.76019],[82.09158,18.76573],[82.09782,18.76384],[82.10576,18.76731],[82.11101,18.76588],[82.11536,18.76901],[82.12082,18.76975],[82.13342,18.76536],[82.13362,18.76811],[82.13133,18.77011],[82.13349,18.78045],[82.13567,18.78148],[82.13842,18.77837],[82.14057,18.77846],[82.14738,18.78097],[82.15217,18.7853],[82.15736,18.78548],[82.1608,18.78992],[82.16017,18.79523],[82.16544,18.79862],[82.16453,18.80192],[82.15652,18.80433],[82.1602,18.80807],[82.16137,18.81252],[82.16615,18.81407],[82.16029,18.81987],[82.16896,18.83602],[82.16574,18.84387],[82.16747,18.85235],[82.16303,18.85415],[82.1602,18.8614],[82.16509,18.86487],[82.16737,18.87362],[82.16104,18.87713],[82.16041,18.87891],[82.16506,18.88322],[82.16932,18.88189],[82.17666,18.88709],[82.17516,18.89161],[82.17615,18.90267],[82.18109,18.90694],[82.19251,18.90751],[82.20085,18.91359],[82.2183,18.92252],[82.22728,18.91904],[82.23091,18.91967],[82.23696,18.91423],[82.24605,18.91911],[82.23911,18.96229],[82.23276,19.01794],[82.22988,19.02741],[82.20225,19.06664],[82.20472,19.0756],[82.21495,19.08599],[82.21855,19.09302],[82.21842,19.09727],[82.21414,19.09985],[82.21294,19.09798],[82.20971,19.09968],[82.20648,19.0964],[82.20491,19.09714],[82.20499,19.10115],[82.20735,19.10228],[82.20518,19.107],[82.20298,19.10811],[82.20633,19.11507],[82.20581,19.11694],[82.209,19.12052],[82.20582,19.12413],[82.19739,19.12164],[82.19058,19.1289],[82.18247,19.13169],[82.17686,19.11857],[82.17361,19.11841],[82.17033,19.12041],[82.16921,19.12805],[82.1661,19.1327],[82.16682,19.1361],[82.17574,19.13866],[82.16983,19.14525],[82.17154,19.15021],[82.17656,19.14921],[82.18093,19.15082],[82.17768,19.15251],[82.17721,19.15561],[82.1713,19.15653],[82.17018,19.16116],[82.17492,19.16288],[82.17874,19.15964],[82.17753,19.15567],[82.1822,19.15929],[82.18614,19.16635],[82.18395,19.16849],[82.17811,19.16937],[82.17604,19.17208],[82.17671,19.17347],[82.18205,19.17416],[82.18106,19.17858],[82.17514,19.18182],[82.18046,19.19168],[82.16758,19.19526],[82.16171,19.20225],[82.16582,19.21145],[82.16877,19.21294],[82.15942,19.22296],[82.15784,19.2275],[82.15843,19.26517],[82.16594,19.28769],[82.17441,19.29453],[82.17668,19.29948],[82.17917,19.31897],[82.18122,19.32339],[82.19412,19.32594],[82.19013,19.32676],[82.18801,19.32892],[82.18789,19.33476],[82.18604,19.33741],[82.17789,19.34005],[82.17866,19.34337],[82.16904,19.34598],[82.165,19.34899],[82.15413,19.3498],[82.15244,19.35274],[82.14878,19.35298],[82.14839,19.36491],[82.14725,19.36549],[82.14896,19.36953],[82.14774,19.37182],[82.15135,19.37331],[82.15327,19.37702],[82.15648,19.3773],[82.16004,19.37707],[82.16219,19.37436],[82.16661,19.37277],[82.17192,19.37262],[82.17353,19.37717],[82.17553,19.37664],[82.17883,19.37905],[82.178,19.3825],[82.18183,19.3842],[82.18099,19.38618],[82.18225,19.38874],[82.18074,19.39241],[82.18431,19.40049],[82.18208,19.40293],[82.18244,19.40943],[82.1852,19.41369],[82.18927,19.41536],[82.18944,19.42753],[82.18619,19.42665],[82.17819,19.43661],[82.17149,19.43719],[82.13524,19.43178],[82.13525,19.43038],[82.1273,19.43051],[82.12614,19.42909],[82.11353,19.44826],[82.11342,19.46036],[82.10282,19.46611],[82.10734,19.47504],[82.10796,19.49428],[82.09797,19.49893],[82.10025,19.51659],[82.07603,19.52363],[82.06542,19.51057],[82.05134,19.50816],[82.03851,19.50913],[82.02908,19.50775],[82.03156,19.51104],[82.03185,19.51453],[82.03406,19.51453],[82.03643,19.51978],[82.03729,19.52825],[82.03988,19.53018],[82.04326,19.52986],[82.04647,19.53397],[82.04772,19.53345],[82.04749,19.53965],[82.05071,19.54882],[82.04551,19.56053],[82.04949,19.56841],[82.04811,19.56913],[82.04985,19.57403],[82.04875,19.57827],[82.04465,19.58178],[82.04337,19.589],[82.04048,19.59164],[82.03988,19.59764],[82.04627,19.60728],[82.05066,19.60808],[82.05061,19.61677],[82.05571,19.6231],[82.0561,19.62596],[82.05902,19.62818],[82.05646,19.63312],[82.05701,19.63951],[82.05473,19.6405],[82.05192,19.64657],[82.05351,19.6528],[82.05551,19.65446],[82.05194,19.66095],[82.05362,19.66539],[82.05532,19.66566],[82.05187,19.68047],[82.0491,19.68493],[82.04459,19.70053],[82.04475,19.70888],[82.05102,19.71909],[82.04924,19.72872],[82.05094,19.73642],[82.0504,19.74581],[82.05564,19.74998],[82.05598,19.75297],[82.06361,19.75902],[82.06047,19.76663],[82.06623,19.78315],[82.06555,19.79066],[82.06239,19.79254],[82.06022,19.79637],[82.05636,19.79485],[82.0564,19.79302],[82.05298,19.79229],[82.04868,19.79696],[82.03105,19.79781],[82.00989,19.80422],[82.00368,19.80257],[81.99537,19.79682],[81.99191,19.79959],[81.98595,19.80109],[81.98656,19.80428],[81.96537,19.8369],[81.96813,19.85989],[81.94106,19.87288],[81.89968,19.8872],[81.86965,19.90254],[81.85316,19.91848],[81.85181,19.92315],[81.8568,19.94754],[81.84502,19.95184],[81.84528,19.95953],[81.85536,19.97228],[81.86057,20.00351],[81.86654,20.01105],[81.86503,20.0267],[81.86882,20.03191],[81.86943,20.04126],[81.87598,20.05206],[81.88191,20.04434],[81.8873,20.04402],[81.89528,20.04824],[81.90144,20.05791],[81.91606,20.07198],[81.92138,20.07997],[81.92276,20.08716],[81.92601,20.09173],[81.93387,20.09604],[81.93384,20.09821],[81.93713,20.10235],[81.93852,20.10156],[81.94638,20.10513],[81.95815,20.09785],[81.96333,20.09045],[81.97589,20.08171],[81.98386,20.07324],[81.98416,20.06803],[81.98739,20.06133],[81.99534,20.05357],[82.00337,20.05334],[82.00325,20.05513],[82.00575,20.05561],[82.01227,20.05391],[82.01768,20.049],[82.02272,20.03215],[82.02155,20.02371],[82.03256,20.01572],[82.04,20.0226],[82.03734,20.02795],[82.03804,20.03012],[82.04121,20.03096],[82.04297,20.03491],[82.04815,20.03482],[82.04782,20.03672],[82.0564,20.04174],[82.05909,20.04498],[82.05901,20.04775],[82.06219,20.04922],[82.06065,20.05113],[82.06296,20.05204],[82.06354,20.05453],[82.07047,20.05695],[82.08543,20.05072],[82.08459,20.04605],[82.0864,20.04524],[82.08946,20.03906],[82.10228,20.04004],[82.10213,20.03629],[82.10383,20.03569],[82.1032,20.03107],[82.10547,20.0306],[82.10695,20.02725],[82.11018,20.02752],[82.11652,20.02116],[82.12679,20.0148],[82.12849,20.0142],[82.13633,20.01893],[82.13981,20.01873],[82.15347,20.00756],[82.16058,20.00912],[82.17123,20.00551],[82.17125,20.00078],[82.17369,19.99996],[82.17478,19.99675],[82.17691,19.99731],[82.18033,19.99114],[82.18347,19.98959],[82.18519,19.9873],[82.18425,19.98419],[82.1931,19.9871],[82.2101,19.98625],[82.21671,19.99706],[82.22929,19.99982],[82.23712,20.00333],[82.2462,19.99535],[82.25001,19.98906],[82.25625,19.98345],[82.26917,19.97526],[82.27487,19.96304],[82.27581,19.94859],[82.30159,19.90271],[82.30312,19.88939],[82.32634,19.86161],[82.3307,19.84485],[82.34395,19.83509],[82.34889,19.83657],[82.35985,19.84699],[82.36142,19.85075],[82.36446,19.85101],[82.36463,19.85469],[82.36041,19.85731],[82.36085,19.8628],[82.3752,19.85964],[82.38365,19.86988],[82.38295,19.87386],[82.39248,19.88205],[82.39487,19.88802],[82.40178,19.88994],[82.40524,19.89426],[82.41196,19.89851],[82.41858,19.89985],[82.41802,19.90407],[82.4262,19.90546],[82.43006,19.90401],[82.43335,19.90556],[82.43711,19.90494],[82.44599,19.91019],[82.45217,19.90871],[82.46422,19.90085],[82.47228,19.90158],[82.4729,19.90703],[82.48417,19.90791],[82.49161,19.90345],[82.49734,19.90413],[82.5049,19.89972],[82.50287,19.89447],[82.50547,19.88986],[82.5118,19.88813],[82.51912,19.89097],[82.5233,19.88308],[82.53142,19.87824],[82.53491,19.88689],[82.54214,19.88348],[82.54839,19.8757],[82.55596,19.88066],[82.56104,19.87433],[82.57302,19.87755],[82.58289,19.86942],[82.59713,19.87269],[82.60343,19.86699],[82.60256,19.86305],[82.6002,19.86019],[82.59628,19.85883],[82.59687,19.8552],[82.59041,19.85245],[82.59062,19.84892],[82.58772,19.84868],[82.58863,19.84338],[82.5839,19.84358],[82.57974,19.84011],[82.57579,19.83339],[82.57604,19.82892],[82.5794,19.83032],[82.57777,19.82498],[82.57914,19.82354],[82.57853,19.81801],[82.5762,19.81474],[82.57858,19.81108],[82.57599,19.80822],[82.58469,19.80235],[82.5827,19.795],[82.58449,19.78825],[82.58177,19.78321],[82.58359,19.78164],[82.58348,19.7788],[82.59181,19.77586],[82.59489,19.77529],[82.59529,19.77847],[82.60215,19.78112],[82.60378,19.78812],[82.62713,19.79366],[82.63282,19.80119],[82.63663,19.81293],[82.64175,19.81454],[82.6476,19.81954],[82.65216,19.83217],[82.66592,19.83039],[82.67802,19.83212],[82.69325,19.83038],[82.70392,19.83201],[82.7116,19.84038],[82.71293,19.84481],[82.7114,19.85063],[82.71384,19.85264],[82.7177,19.85292],[82.71979,19.85685],[82.71959,19.86743],[82.72173,19.87292],[82.72458,19.87554],[82.71405,19.87781],[82.71355,19.88344],[82.70741,19.90204],[82.70909,19.9056],[82.70737,19.91299],[82.71276,19.91852],[82.71118,19.92545],[82.71307,19.93846],[82.72049,19.94829],[82.71552,19.95363],[82.71472,19.95767],[82.71752,19.96555],[82.71814,19.98914],[82.71575,19.99227],[82.71545,19.99593],[82.70727,19.99905],[82.69958,19.99757],[82.69267,20.0],[82.67012,20.00108],[82.65198,20.00589],[82.64271,20.00366],[82.64298,20.00641],[82.64151,20.00671],[82.6333,20.00487],[82.62114,19.9923],[82.60502,19.99014],[82.59573,19.99157],[82.59034,19.99373],[82.58328,20.00318],[82.57734,20.00672],[82.55011,20.01777],[82.53445,20.01785],[82.53318,20.0153],[82.50911,20.01816],[82.49373,20.02437],[82.47857,20.03817],[82.47001,20.03591],[82.46067,20.0419],[82.45753,20.03997],[82.44801,20.04066],[82.44052,20.04318],[82.43003,20.04961],[82.41682,20.05215],[82.40954,20.05179],[82.39829,20.05818],[82.39839,20.06269],[82.39583,20.06897],[82.40149,20.08102],[82.39976,20.0898],[82.40143,20.09607],[82.39818,20.10169],[82.39767,20.12377],[82.39423,20.12992],[82.39315,20.13761],[82.3858,20.14644],[82.3872,20.14905],[82.39415,20.15263],[82.39374,20.15704],[82.39001,20.1637],[82.39491,20.17012],[82.40471,20.17598],[82.40453,20.17787],[82.40754,20.18123],[82.41158,20.18149],[82.41408,20.18986],[82.41347,20.19935],[82.42062,20.20492],[82.42048,20.21308],[82.42247,20.22082],[82.41507,20.22681],[82.41063,20.24265],[82.41123,20.24538],[82.42233,20.24797],[82.41778,20.25232],[82.41601,20.25728],[82.41139,20.26011],[82.41234,20.26704],[82.41596,20.27205],[82.42503,20.27522],[82.43287,20.28181],[82.43557,20.28548],[82.43781,20.29441],[82.42998,20.30099],[82.43077,20.31402],[82.42104,20.32411],[82.41737,20.32425],[82.41295,20.328],[82.40887,20.32778],[82.40916,20.33253],[82.40151,20.33758],[82.40038,20.34158],[82.40627,20.35299],[82.40505,20.35804],[82.40915,20.36293],[82.4112,20.37129],[82.41805,20.38211],[82.41769,20.38772],[82.42117,20.39285],[82.41661,20.40765],[82.43201,20.41664],[82.42966,20.42787],[82.43786,20.43439],[82.43398,20.44567],[82.42573,20.44533],[82.42706,20.46906],[82.41763,20.48174],[82.4158,20.48151],[82.41079,20.46813],[82.40798,20.46733],[82.40855,20.46324],[82.40427,20.46005],[82.40191,20.46193],[82.39798,20.46192],[82.39606,20.45957],[82.39478,20.46229],[82.39764,20.46484],[82.39784,20.47295],[82.39608,20.47766],[82.39203,20.47869],[82.39374,20.4825],[82.39316,20.48643],[82.3906,20.48619],[82.39109,20.49243],[82.38834,20.49536],[82.38953,20.49801],[82.388,20.51073],[82.3897,20.5176],[82.37825,20.52203],[82.36806,20.52386],[82.35765,20.52933],[82.34861,20.54667],[82.3357,20.5551],[82.33223,20.56191],[82.33488,20.5646],[82.33337,20.56855],[82.34335,20.57152],[82.34836,20.5764],[82.35064,20.58127],[82.34679,20.5906],[82.34408,20.59289],[82.34374,20.59577],[82.3457,20.59656],[82.34485,20.59848],[82.34713,20.60254],[82.35256,20.60298],[82.3559,20.60925],[82.35865,20.60848],[82.36226,20.60991],[82.36292,20.61412],[82.36543,20.61588],[82.36452,20.62218],[82.37095,20.62599],[82.3765,20.63241],[82.37467,20.63907],[82.36848,20.64923],[82.36997,20.65556],[82.36875,20.65959],[82.37382,20.6674],[82.36705,20.68019],[82.36034,20.68356],[82.355,20.69319],[82.35041,20.70634],[82.35076,20.71728],[82.35401,20.71966],[82.34556,20.73159],[82.35355,20.73592],[82.34171,20.76776],[82.34364,20.77095],[82.34386,20.79223],[82.34611,20.79763],[82.34202,20.80472],[82.34317,20.80893],[82.34112,20.81249],[82.34102,20.82083],[82.33934,20.82577],[82.34157,20.83283],[82.33953,20.84684],[82.34446,20.85637],[82.34676,20.87704],[82.35119,20.88974],[82.36376,20.88849],[82.35947,20.87381],[82.36461,20.87067],[82.37592,20.86798],[82.38505,20.87409],[82.38967,20.87532],[82.38924,20.87409],[82.39557,20.87003],[82.40545,20.87019],[82.40751,20.86576],[82.40685,20.85928],[82.41287,20.85086],[82.40995,20.8456],[82.4101,20.84229],[82.41673,20.83866],[82.41995,20.83156],[82.42731,20.83155],[82.43934,20.83564],[82.44353,20.83437],[82.44367,20.831],[82.44728,20.82996],[82.44902,20.83101],[82.45437,20.82765],[82.46449,20.829],[82.46878,20.83518],[82.46539,20.84295],[82.47044,20.84808],[82.48108,20.85131],[82.48668,20.86165],[82.48598,20.87028],[82.49107,20.88063],[82.48699,20.90504],[82.48874,20.9094],[82.50443,20.91959],[82.51594,20.92176],[82.52711,20.934],[82.54303,20.93661],[82.55915,20.94794],[82.57138,20.97226],[82.58051,20.97973],[82.58878,20.99355],[82.61136,21.01297],[82.61333,21.02285],[82.62879,21.03804],[82.62979,21.04094],[82.6261,21.04854],[82.61788,21.05468],[82.61725,21.05986],[82.61186,21.06919],[82.61198,21.07469],[82.61651,21.07918],[82.62964,21.07882],[82.63311,21.08319],[82.63389,21.08776],[82.63733,21.09319],[82.64582,21.1],[82.64991,21.10647],[82.64845,21.10956],[82.64215,21.11122],[82.63974,21.11574],[82.64191,21.12007],[82.65276,21.12871],[82.65198,21.13325],[82.64395,21.13487],[82.63727,21.14474],[82.63722,21.15073],[82.64061,21.15487],[82.65549,21.15714],[82.66405,21.155],[82.68415,21.16106],[82.68554,21.16497],[82.693,21.16574],[82.69708,21.1642],[82.69573,21.16053],[82.69983,21.1577],[82.70526,21.15808],[82.71067,21.16085],[82.72119,21.15767],[82.72115,21.16585],[82.73683,21.16533],[82.74057,21.16347],[82.75001,21.16411],[82.75591,21.16643],[82.7575,21.16355],[82.7601,21.1652],[82.76298,21.16262],[82.76334,21.16409],[82.76581,21.16278],[82.76504,21.16173],[82.76782,21.16056],[82.76713,21.15901],[82.77435,21.15413],[82.7794,21.15358],[82.78077,21.14967],[82.78564,21.14487],[82.79368,21.14255],[82.79666,21.14865],[82.79622,21.15065],[82.80032,21.15595],[82.80502,21.15592],[82.81197,21.16107],[82.826,21.16368],[82.82802,21.16544],[82.83126,21.16467],[82.84276,21.16772],[82.8471,21.16653],[82.85088,21.16863],[82.8501,21.16161],[82.85246,21.15954],[82.8556,21.16147],[82.85959,21.15977],[82.86643,21.16282],[82.8717,21.15748],[82.87255,21.16238],[82.87636,21.16355],[82.87852,21.15858],[82.87818,21.15345],[82.88218,21.14843],[82.89393,21.15637],[82.89548,21.16098],[82.90211,21.16699],[82.91022,21.1652],[82.91498,21.16196],[82.92094,21.16347],[82.93225,21.16308],[82.93387,21.16399],[82.93497,21.16833],[82.9377,21.16985],[82.93996,21.16635],[82.93998,21.16093],[82.94768,21.16178],[82.94757,21.16453],[82.94286,21.17164],[82.94682,21.1755],[82.94384,21.17785],[82.94903,21.1839],[82.95916,21.18888],[82.96099,21.19266],[82.96493,21.19327],[82.96743,21.18307],[82.96556,21.17533],[82.96739,21.17484],[82.97001,21.17886],[82.97534,21.18215],[82.97787,21.18258],[82.98325,21.18006],[82.98809,21.18281],[82.99,21.18183],[82.98056,21.17003],[82.98607,21.16811],[82.99319,21.17111],[82.99652,21.16968],[83.00135,21.17057],[83.00376,21.16693],[82.99332,21.16189],[82.9924,21.15856],[82.98576,21.15104],[82.99032,21.13986],[82.99373,21.14084],[82.99545,21.13853],[82.99936,21.13891],[83.00155,21.13687],[83.00458,21.13696],[83.01013,21.14257],[83.01005,21.14474],[83.016,21.14631],[83.0203,21.14346],[83.02304,21.13656],[83.02891,21.13513],[83.03338,21.1373],[83.03482,21.13663],[83.03383,21.13193],[83.03865,21.13173],[83.04525,21.12401],[83.05233,21.12627],[83.05603,21.12231],[83.06611,21.12076],[83.06851,21.11685],[83.075,21.11365],[83.07725,21.11407],[83.07781,21.11195],[83.0849,21.11295],[83.09011,21.11113],[83.09442,21.11328],[83.09709,21.11016],[83.10128,21.10999],[83.11354,21.11266],[83.1216,21.1099],[83.1241,21.1067],[83.13149,21.10581],[83.13867,21.10951],[83.14065,21.11234],[83.13893,21.11333],[83.14743,21.11856],[83.15733,21.13107],[83.16464,21.13523],[83.16691,21.13879],[83.17104,21.13617],[83.17425,21.13673],[83.17769,21.13511],[83.19255,21.13951],[83.1982,21.14583],[83.19656,21.15143],[83.19836,21.15346],[83.19852,21.16426],[83.20462,21.1657],[83.20284,21.17764],[83.20511,21.17943],[83.20933,21.18945],[83.21462,21.19479],[83.21053,21.20504],[83.21275,21.2102],[83.21706,21.21331],[83.21857,21.22089],[83.21758,21.22597],[83.2189,21.22861],[83.22215,21.22872],[83.21765,21.25485],[83.22167,21.26007],[83.22295,21.26577],[83.23191,21.27272],[83.23796,21.26961],[83.23933,21.27363],[83.24627,21.28116],[83.25059,21.28238],[83.25583,21.28212],[83.26777,21.27756],[83.27095,21.27257],[83.27491,21.28581],[83.27859,21.28932],[83.27927,21.29496],[83.27629,21.3023],[83.27205,21.30188],[83.26883,21.30507],[83.26208,21.30783],[83.25734,21.3205],[83.26283,21.33027],[83.26653,21.33086],[83.25769,21.3336],[83.2578,21.33555],[83.26868,21.34549],[83.27469,21.36383],[83.27424,21.37729],[83.26873,21.37859],[83.28405,21.38033],[83.28606,21.37761],[83.31137,21.37084],[83.32297,21.3624],[83.34385,21.35836],[83.34718,21.35629],[83.34772,21.35375],[83.35461,21.35429],[83.36686,21.34936],[83.36977,21.34671],[83.37888,21.34455],[83.38549,21.3463],[83.39183,21.34264],[83.40688,21.35163],[83.40802,21.36137],[83.40062,21.36391],[83.39687,21.36756],[83.40051,21.37588],[83.3972,21.38803],[83.39893,21.40534],[83.39346,21.40771],[83.38529,21.41537],[83.37815,21.42683],[83.37587,21.42806],[83.37428,21.43498],[83.37124,21.43551],[83.37362,21.44239],[83.36686,21.44555],[83.35437,21.44807],[83.35147,21.46003],[83.34655,21.4716],[83.34574,21.47962],[83.34706,21.48898],[83.34061,21.49517],[83.33788,21.5021],[83.34304,21.50965],[83.34962,21.51265],[83.35204,21.52115],[83.35709,21.52808],[83.35866,21.53824],[83.3614,21.53916],[83.36014,21.54285],[83.36427,21.545],[83.36451,21.54704],[83.3662,21.54663],[83.36766,21.54932],[83.36598,21.55081],[83.36999,21.55252],[83.36978,21.55646],[83.37316,21.55816],[83.37187,21.5596],[83.37033,21.55875],[83.37186,21.56442],[83.3693,21.56668],[83.36989,21.56806],[83.36748,21.56874],[83.36775,21.57209],[83.36497,21.57608],[83.36895,21.585],[83.36694,21.58666],[83.36893,21.58898],[83.36774,21.59172],[83.37051,21.59126],[83.36966,21.60051],[83.38014,21.60813],[83.38304,21.61426],[83.38268,21.62013],[83.38943,21.61769],[83.39246,21.62729],[83.39559,21.62709],[83.40347,21.63094],[83.40907,21.6372],[83.41504,21.6408],[83.42757,21.64352],[83.42884,21.64723],[83.44265,21.65541],[83.45076,21.65075],[83.44438,21.63929],[83.44292,21.63142],[83.44463,21.63043],[83.44397,21.624],[83.45247,21.62241],[83.45227,21.61287],[83.45506,21.61241],[83.45611,21.61],[83.4606,21.6078],[83.46627,21.60955],[83.46986,21.62154],[83.47349,21.62737],[83.47356,21.63249],[83.48619,21.63009],[83.48961,21.63146],[83.48955,21.63487],[83.49193,21.63818],[83.48714,21.6399],[83.48661,21.64413],[83.46976,21.64873],[83.44813,21.65754],[83.44248,21.66129],[83.43127,21.67421],[83.41869,21.68065],[83.42216,21.68705],[83.42385,21.68721],[83.42287,21.68884],[83.42483,21.69248],[83.42882,21.69462],[83.43165,21.69991],[83.44077,21.6989],[83.4517,21.69542],[83.45948,21.69855],[83.46106,21.70909],[83.47336,21.72064],[83.47784,21.73054],[83.4813,21.73113],[83.48018,21.73396],[83.4852,21.74517],[83.48932,21.74539],[83.48744,21.74895],[83.47605,21.75238],[83.48218,21.7656],[83.47617,21.78078],[83.46939,21.78756],[83.47279,21.78747],[83.47547,21.79126],[83.47761,21.79083],[83.48365,21.79419],[83.48712,21.80036],[83.4878,21.80731],[83.49374,21.813],[83.49291,21.81837],[83.50593,21.80796],[83.52259,21.79945],[83.52587,21.7983],[83.5287,21.79955],[83.54104,21.79931],[83.54273,21.80573],[83.53741,21.81308],[83.5401,21.82204],[83.53119,21.82625],[83.53187,21.83096],[83.54163,21.83826],[83.55177,21.84071],[83.56318,21.8374],[83.56848,21.83317],[83.57691,21.8313],[83.57885,21.83245],[83.57791,21.83752],[83.58145,21.83817],[83.58708,21.84352],[83.59089,21.8511],[83.57421,21.87511],[83.57644,21.88237],[83.58081,21.88327],[83.57783,21.8892],[83.58155,21.88985],[83.58708,21.89453],[83.58523,21.89964],[83.58597,21.90213],[83.5947,21.90343],[83.597,21.906],[83.59848,21.90497],[83.60294,21.90858],[83.60592,21.91412],[83.60157,21.91806],[83.59987,21.92207],[83.59036,21.9297],[83.55672,21.93535],[83.55915,21.94505],[83.56169,21.94801],[83.54204,21.96211],[83.53901,21.96599],[83.53716,21.97796],[83.54355,21.98762],[83.54331,21.99385],[83.55615,22.00782],[83.53979,22.02167],[83.53647,22.0296],[83.53672,22.04348],[83.54374,22.05697],[83.54781,22.05915],[83.5469,22.057],[83.55035,22.05335],[83.55398,22.05292],[83.55429,22.05437],[83.55737,22.05371],[83.55822,22.05485],[83.58178,22.05458],[83.58307,22.05023],[83.58671,22.04873],[83.58988,22.05445],[83.59617,22.05789],[83.60152,22.05877],[83.6034,22.06383],[83.60642,22.06659],[83.59358,22.07421],[83.57694,22.09032],[83.56284,22.0962],[83.56181,22.09892],[83.56435,22.106],[83.57592,22.1209],[83.58321,22.12507],[83.59369,22.14029],[83.60815,22.15437],[83.61333,22.1777],[83.62725,22.20378],[83.64951,22.22334],[83.65531,22.22004],[83.66447,22.22879],[83.66577,22.23273],[83.69105,22.24273],[83.69147,22.24412],[83.70516,22.24685],[83.71306,22.24272],[83.7212,22.24304],[83.72821,22.24134],[83.72949,22.24282],[83.74436,22.23963],[83.75775,22.24034],[83.75768,22.24714],[83.75971,22.25121],[83.76645,22.25563],[83.77289,22.25571],[83.77558,22.25734],[83.77673,22.2613],[83.77524,22.26166],[83.77472,22.26477],[83.77679,22.26627],[83.77665,22.26985],[83.77975,22.27383],[83.79223,22.27648],[83.79604,22.28247],[83.79485,22.28595],[83.80278,22.29015],[83.80926,22.28895],[83.81691,22.29088],[83.81906,22.28957],[83.81985,22.29129],[83.82636,22.29282],[83.82727,22.29387],[83.82285,22.30128],[83.826,22.3055],[83.82198,22.31153],[83.82815,22.31752],[83.83056,22.3234],[83.83524,22.32228],[83.85029,22.32523],[83.85288,22.32712],[83.85493,22.33453],[83.85431,22.33764],[83.86024,22.33875],[83.86041,22.34047],[83.86399,22.34163],[83.86426,22.34328],[83.86932,22.34125],[83.87207,22.33778],[83.87921,22.33538],[83.89033,22.33655],[83.90132,22.33936],[83.90252,22.34659],[83.90652,22.35129],[83.92328,22.35841],[83.93269,22.35396],[83.94329,22.35471],[83.94822,22.35632],[83.95499,22.36166],[83.97025,22.3588],[83.98253,22.36733],[83.99667,22.37199],[84.00578,22.37368],[84.01029,22.37158],[84.00638,22.3822],[84.01318,22.39427],[84.01339,22.39742],[84.02006,22.40856],[84.02347,22.40945],[84.02468,22.4155],[84.03027,22.42008],[84.03034,22.42664],[84.03879,22.4297],[84.04172,22.43499],[84.04725,22.43823],[84.04489,22.45286],[84.0464,22.45535],[84.04542,22.4626],[84.04725,22.46922],[84.04075,22.4731],[84.0266,22.47532],[84.01742,22.48925],[84.00287,22.49332],[83.99785,22.49762],[83.98023,22.50222],[83.98048,22.50757],[83.97466,22.51189],[83.97741,22.51587],[83.98099,22.51615],[83.98091,22.52155],[83.98673,22.52554],[83.99489,22.5281],[83.99761,22.53103],[84.00292,22.53033],[84.00439,22.52757],[84.00768,22.52612],[84.01233,22.52753],[84.0097,22.52842],[84.01002,22.53168],[84.00285,22.5459],[84.00765,22.55246],[84.00951,22.57305],[84.02417,22.58581],[84.02443,22.5918],[84.03422,22.59231],[84.04183,22.59537],[84.04885,22.5953],[84.05413,22.59811],[84.05766,22.60577],[84.06375,22.60859],[84.0696,22.62043],[84.08402,22.63812],[84.09343,22.63494],[84.11081,22.63975],[84.12348,22.63705],[84.13979,22.63823],[84.15247,22.6368],[84.15627,22.63853],[84.16328,22.64543],[84.18803,22.65523],[84.20019,22.66646],[84.2079,22.66838],[84.21308,22.66771],[84.21319,22.66576],[84.21754,22.66582],[84.22412,22.66989],[84.23321,22.67924],[84.23475,22.68611],[84.2382,22.69145],[84.23293,22.70033],[84.23413,22.71054],[84.23209,22.72555],[84.22985,22.72807],[84.23127,22.73996],[84.25557,22.7601],[84.25965,22.76699],[84.27595,22.76871],[84.28534,22.76323],[84.2874,22.76401],[84.29213,22.7747],[84.29114,22.78338],[84.29794,22.79427],[84.29934,22.79589],[84.30578,22.79707],[84.3075,22.80077],[84.3151,22.80065],[84.31573,22.81192],[84.32243,22.82102],[84.32533,22.83498],[84.3252,22.83765],[84.32174,22.83774],[84.32422,22.85094],[84.33478,22.86155],[84.34423,22.85898],[84.34924,22.86098],[84.35199,22.86499],[84.35945,22.86052],[84.3697,22.86358],[84.3726,22.86532],[84.37336,22.87159],[84.38051,22.87667],[84.37919,22.88377],[84.38261,22.89025],[84.38289,22.89526],[84.37568,22.90069],[84.37519,22.9045],[84.37754,22.90963],[84.38136,22.91268],[84.38789,22.91421],[84.39283,22.91943],[84.39555,22.92873],[84.39368,22.94245],[84.38457,22.95068],[84.38149,22.96651],[84.37532,22.97689],[84.3729,22.97838],[84.365,22.97423],[84.35107,22.97812],[84.34376,22.97614],[84.33955,22.97999],[84.32811,22.9819],[84.31928,22.97721],[84.31898,22.97361],[84.31291,22.97186],[84.30763,22.96743],[84.29055,22.96395],[84.28109,22.96369],[84.27385,22.98209],[84.27417,22.98428],[84.27607,22.98421],[84.27853,22.98704],[84.27671,22.99067],[84.27853,22.99288],[84.27702,22.99339],[84.27422,22.9902],[84.27055,22.98922],[84.26713,22.9832],[84.2629,22.98084],[84.2611,22.97715],[84.25302,22.97293],[84.24881,22.97382],[84.24104,22.98361],[84.23393,22.98242],[84.23035,22.98333],[84.21918,22.97913],[84.21656,22.98904],[84.20768,22.9999],[84.20085,23.00534],[84.20345,23.01446],[84.20167,23.02107],[84.19674,23.02421],[84.1858,23.02709],[84.18024,23.02444],[84.17812,23.01203],[84.17524,23.00954],[84.17869,23.00055],[84.175,22.99711],[84.1761,22.98492],[84.17808,22.98112],[84.17551,22.97601],[84.17178,22.97076],[84.14925,22.96567],[84.1463,22.97707],[84.14732,22.98801],[84.13818,23.00402],[84.1402,23.00957],[84.13395,23.02021],[84.13122,23.02235],[84.12555,23.03648],[84.12697,23.04419],[84.12473,23.04785],[84.12689,23.05782],[84.13389,23.06863],[84.13346,23.08309],[84.12617,23.08933],[84.12211,23.08797],[84.11574,23.09003],[84.11297,23.09688],[84.10898,23.0983],[84.10566,23.10509],[84.09323,23.11045],[84.09317,23.11278],[84.08205,23.11215],[84.07241,23.109],[84.0664,23.11067],[84.06259,23.11341],[84.0583,23.12617],[84.04921,23.13451],[84.04485,23.1348],[84.03747,23.13988],[84.03669,23.14817],[84.03248,23.15415],[84.03239,23.16048],[84.04294,23.18265],[84.05653,23.19317],[84.05843,23.19994],[84.0622,23.20261],[84.06317,23.20565],[84.05576,23.22028],[84.05908,23.23599],[84.05383,23.24375],[84.05373,23.2473],[84.05985,23.26879],[84.0646,23.27472],[84.06248,23.28843],[84.06812,23.29378],[84.06219,23.30766],[84.07428,23.32917],[84.07482,23.33312],[84.06872,23.33824],[84.06658,23.34405],[84.06016,23.3502],[84.05433,23.3524],[84.05205,23.35928],[84.0535,23.36482],[84.05236,23.36726],[84.04822,23.3697],[84.05084,23.37477],[84.03642,23.37852],[84.02386,23.3765],[84.0163,23.36961],[84.01189,23.35447],[84.0048,23.35401],[84.0026,23.35735],[83.98028,23.36459],[83.98026,23.36811],[83.97075,23.37914],[83.96882,23.38341],[83.96994,23.38383],[83.96795,23.38541],[83.96914,23.38667],[83.967,23.38758],[83.96848,23.38919],[83.9675,23.39101],[83.96889,23.39082],[83.9688,23.39349],[83.97284,23.39989],[83.97148,23.40088],[83.97215,23.40267],[83.97509,23.40313],[83.97719,23.41087],[83.98016,23.41266],[83.97814,23.41415],[83.9809,23.41929],[83.98048,23.42152],[83.98576,23.42583],[83.9837,23.42627],[83.98364,23.42853],[83.98616,23.43057],[83.98332,23.43139],[83.98531,23.43504],[83.97869,23.44737],[83.97483,23.45124],[83.97394,23.45985],[83.98482,23.46571],[83.98891,23.47874],[83.99852,23.48678],[84.00113,23.4937],[84.00078,23.49693],[84.00736,23.49768],[84.01465,23.5035],[84.01516,23.509],[84.01858,23.5174],[84.01747,23.52261],[84.02159,23.52767],[84.02084,23.53097],[84.02806,23.5456],[84.02654,23.55295],[84.02438,23.55556],[84.02644,23.55677],[84.02954,23.5664],[84.02805,23.57777],[84.02977,23.58576],[84.02815,23.59371],[84.03006,23.6],[84.02851,23.60233],[84.02086,23.60442],[84.01673,23.60842],[84.01109,23.62061],[84.00771,23.6223],[84.0087,23.62785],[84.01393,23.63021],[84.01659,23.63438],[83.99714,23.63448],[83.98736,23.63229],[83.98065,23.63365],[83.97951,23.62872],[83.98045,23.62489],[83.9755,23.62571],[83.97349,23.62401],[83.97275,23.62592],[83.96935,23.62669],[83.96134,23.62518],[83.94775,23.6267],[83.94252,23.62599],[83.93191,23.62041],[83.93056,23.61826],[83.93065,23.61124],[83.93382,23.60736],[83.93299,23.60075],[83.93912,23.59031],[83.93803,23.58425],[83.9398,23.57086],[83.93769,23.56899],[83.91879,23.57636],[83.90857,23.57625],[83.90017,23.58015],[83.89939,23.58241],[83.89445,23.58265],[83.88806,23.57876],[83.85305,23.58705],[83.84468,23.58665],[83.8386,23.58939],[83.82587,23.59071],[83.81537,23.5962],[83.81205,23.58895],[83.80722,23.58747],[83.80542,23.58882],[83.80438,23.59537],[83.80064,23.60202],[83.79452,23.6051],[83.78987,23.60456],[83.77966,23.60711],[83.77248,23.6109],[83.77637,23.61759],[83.77514,23.62194],[83.77235,23.62378],[83.75945,23.62601],[83.75192,23.63867],[83.75321,23.64339],[83.76058,23.6479],[83.76112,23.65146],[83.74623,23.66299],[83.73885,23.66677],[83.72286,23.68586],[83.72302,23.68876],[83.73212,23.695],[83.73507,23.70031],[83.74212,23.70383],[83.74607,23.71949],[83.73948,23.73432],[83.73774,23.76049],[83.73411,23.7647],[83.72431,23.76872],[83.72159,23.77149],[83.72262,23.78658],[83.71266,23.80068],[83.70514,23.80387],[83.70439,23.80661],[83.70764,23.81741],[83.70535,23.82076],[83.70259,23.82297],[83.69149,23.82642],[83.68873,23.82558],[83.68528,23.82033],[83.68282,23.81938],[83.67869,23.82168],[83.67434,23.82717],[83.66449,23.82766],[83.66335,23.83119],[83.66849,23.83666],[83.66656,23.84428],[83.65949,23.84926],[83.65464,23.8499],[83.64338,23.84693],[83.61809,23.85549],[83.61029,23.85397],[83.5897,23.86331],[83.58242,23.86351],[83.57466,23.86121],[83.57119,23.86214],[83.56894,23.86618],[83.56949,23.86908],[83.58353,23.87778],[83.58603,23.88261],[83.58576,23.8864],[83.57633,23.89291],[83.57043,23.89445],[83.55915,23.8929],[83.55344,23.89807],[83.54692,23.9143],[83.54924,23.93102],[83.54739,23.93754],[83.53536,23.95246],[83.52649,23.9605],[83.5226,23.97033],[83.5153,23.98069],[83.51549,23.98999],[83.5138,23.99635],[83.52293,24.00636],[83.5239,24.01138],[83.51617,24.02245],[83.51594,24.02696],[83.50826,24.03116],[83.49975,24.03256],[83.49353,24.03631],[83.47781,24.04119],[83.45289,24.04199],[83.44487,24.05282],[83.43777,24.05817],[83.43773,24.07622],[83.43225,24.08598],[83.42671,24.08648],[83.42122,24.08272],[83.40664,24.08044],[83.40111,24.09203],[83.38829,24.09996],[83.36424,24.10329],[83.35449,24.1002],[83.34934,24.0963],[83.34603,24.09744]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-CH","area_level":"State","area_name":"Chandigarh","geometry_source":"SOI_States","same_as":"LGD/4/State"},"geometry":{"type":"Polygon","coordinates":[[[76.77233,30.79414],[76.77151,30.79521],[76.76744,30.79423],[76.76117,30.7911],[76.75726,30.78685],[76.75171,30.78424],[76.75234,30.78025],[76.74331,30.77592],[76.7455,30.77227],[76.74374,30.77142],[76.74299,30.76942],[76.73019,30.76465],[76.7267,30.76527],[76.72568,30.76642],[76.7207,30.76316],[76.71847,30.7639],[76.71579,30.76273],[76.71392,30.76309],[76.7136,30.76199],[76.71076,30.76098],[76.70533,30.75602],[76.70707,30.75382],[76.70794,30.74973],[76.70715,30.74782],[76.7059,30.7474],[76.70664,30.74465],[76.70518,30.74292],[76.70747,30.73945],[76.71419,30.74093],[76.71572,30.73721],[76.72127,30.72997],[76.72576,30.72783],[76.72957,30.72348],[76.7311,30.72356],[76.73121,30.71741],[76.72855,30.71578],[76.73137,30.71258],[76.72909,30.71177],[76.73003,30.70683],[76.7391,30.70575],[76.73936,30.70033],[76.7379,30.69981],[76.73962,30.69806],[76.73932,30.69286],[76.74717,30.6955],[76.74777,30.68754],[76.75026,30.68831],[76.75276,30.68449],[76.75931,30.68656],[76.76431,30.68636],[76.77018,30.67982],[76.7744,30.6721],[76.77687,30.67035],[76.77899,30.67119],[76.78145,30.67427],[76.78995,30.6756],[76.79672,30.66751],[76.80047,30.6702],[76.80259,30.66649],[76.80876,30.66732],[76.81167,30.67004],[76.8165,30.67138],[76.81691,30.67296],[76.82092,30.67489],[76.821,30.67757],[76.82199,30.67844],[76.82745,30.68213],[76.82914,30.68093],[76.82922,30.68196],[76.83189,30.68323],[76.82762,30.68767],[76.82621,30.68668],[76.82516,30.68825],[76.82755,30.6898],[76.82738,30.69197],[76.83022,30.69345],[76.8286,30.69465],[76.83528,30.70155],[76.83555,30.70358],[76.84392,30.70798],[76.84723,30.71228],[76.84832,30.7153],[76.84677,30.71689],[76.84945,30.71827],[76.84503,30.71719],[76.84357,30.71921],[76.84607,30.72229],[76.8494,30.72339],[76.84639,30.72968],[76.84822,30.7303],[76.84742,30.73141],[76.84319,30.73111],[76.84184,30.73272],[76.83716,30.73345],[76.8315,30.73951],[76.83686,30.74266],[76.83494,30.74184],[76.83343,30.74655],[76.83384,30.74983],[76.83902,30.7512],[76.8358,30.75581],[76.82635,30.7633],[76.82421,30.76096],[76.82011,30.76085],[76.81813,30.75743],[76.81768,30.75409],[76.81561,30.75271],[76.80537,30.76497],[76.81812,30.77129],[76.81957,30.77365],[76.81812,30.77544],[76.81865,30.77791],[76.81544,30.77801],[76.81352,30.78017],[76.81212,30.77925],[76.80917,30.77936],[76.80744,30.77739],[76.80213,30.77557],[76.79818,30.77206],[76.79834,30.77111],[76.79578,30.77095],[76.79169,30.76871],[76.79047,30.77071],[76.78348,30.77057],[76.77959,30.77769],[76.7873,30.77895],[76.78278,30.78917],[76.77556,30.79051],[76.77233,30.79414]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-DH","area_level":"State","area_name":"The Dadra And Nagar Haveli And Daman And Diu","geometry_source":"SOI_States","same_as":"LGD/38/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.96297,20.33248],[72.96112,20.33242],[72.96058,20.32859],[72.95935,20.32559],[72.95705,20.32372],[72.95664,20.32038],[72.95574,20.31808],[72.95459,20.31624],[72.95277,20.31401],[72.95451,20.31124],[72.9553,20.31051],[72.95657,20.30959],[72.95986,20.30792],[72.96449,20.30464],[72.96586,20.30261],[72.96701,20.29991],[72.96841,20.29793],[72.96959,20.29702],[72.97084,20.29686],[72.97101,20.29797],[72.97193,20.29995],[72.97225,20.30139],[72.97239,20.30407],[72.97357,20.30556],[72.97286,20.30865],[72.97415,20.31036],[72.97719,20.31207],[72.97868,20.31514],[72.98239,20.31831],[72.98256,20.32036],[72.97946,20.32743],[72.9791,20.33224],[72.9741,20.33188],[72.96958,20.33266],[72.9647,20.33237],[72.96297,20.33248]]],[[[73.09699,20.35993],[73.0958,20.36133],[73.08906,20.35869],[73.08845,20.35033],[73.09027,20.34393],[73.08782,20.34124],[73.08453,20.33182],[73.07717,20.32348],[73.07027,20.32547],[73.06665,20.33003],[73.04924,20.32441],[73.04174,20.32599],[73.0377,20.31767],[73.03561,20.2932],[73.03429,20.29163],[73.02661,20.29067],[73.01532,20.29402],[73.01669,20.31037],[73.01241,20.30933],[73.01217,20.31169],[73.00615,20.3128],[73.00942,20.30981],[73.01157,20.30039],[73.01005,20.29121],[73.00483,20.28917],[73.00102,20.29197],[72.99682,20.29076],[72.99441,20.29231],[72.98728,20.29087],[72.98536,20.28808],[72.98117,20.28927],[72.98193,20.2755],[72.97119,20.26906],[72.96223,20.27134],[72.96184,20.27502],[72.95568,20.27891],[72.95529,20.2842],[72.95205,20.28408],[72.9482,20.28777],[72.94505,20.28849],[72.94164,20.29309],[72.9357,20.29462],[72.93133,20.29288],[72.92858,20.28631],[72.9208,20.28368],[72.9202,20.28117],[72.91724,20.2808],[72.91601,20.27601],[72.91213,20.275],[72.91171,20.27026],[72.91752,20.26339],[72.91848,20.25856],[72.92366,20.25661],[72.93064,20.24441],[72.93761,20.24482],[72.95398,20.23826],[72.95829,20.23539],[72.96059,20.23033],[72.96595,20.22487],[72.96451,20.2138],[72.96164,20.20944],[72.95985,20.20122],[72.96178,20.19203],[72.96085,20.18605],[72.96303,20.18221],[72.96893,20.18342],[72.97676,20.1809],[72.97688,20.17865],[72.97372,20.17383],[72.9744,20.16025],[72.96158,20.1371],[72.96082,20.13328],[72.96358,20.12604],[72.96852,20.12366],[72.9705,20.11561],[72.97736,20.11278],[72.9796,20.11569],[72.99182,20.1177],[72.99535,20.13231],[72.9946,20.13882],[72.9975,20.14276],[72.99922,20.14257],[73.00329,20.14034],[73.005,20.13588],[73.01165,20.13402],[73.0132,20.12956],[72.99961,20.12302],[73.00074,20.1123],[73.01043,20.10578],[73.0137,20.09648],[73.02183,20.09],[73.02336,20.08472],[73.03048,20.07966],[73.0402,20.06643],[73.04738,20.0657],[73.05062,20.06374],[73.05206,20.08529],[73.05519,20.09987],[73.06369,20.09959],[73.06817,20.09679],[73.08059,20.09495],[73.08096,20.09233],[73.08355,20.09117],[73.10226,20.09124],[73.10604,20.08754],[73.10606,20.07417],[73.10846,20.0753],[73.11198,20.07117],[73.11192,20.07427],[73.11434,20.07624],[73.11893,20.07509],[73.11905,20.07866],[73.1241,20.07797],[73.1255,20.0835],[73.13071,20.08175],[73.13336,20.08618],[73.13639,20.08637],[73.13707,20.07913],[73.14247,20.0803],[73.14309,20.07643],[73.14669,20.07386],[73.14869,20.07485],[73.14919,20.079],[73.15464,20.07576],[73.15185,20.07256],[73.15447,20.07042],[73.15579,20.06588],[73.15716,20.06587],[73.15644,20.06352],[73.1635,20.06055],[73.16513,20.05524],[73.16776,20.05577],[73.17071,20.05204],[73.17663,20.05195],[73.17798,20.04703],[73.18332,20.05028],[73.19092,20.04959],[73.1921,20.05471],[73.18615,20.05917],[73.18925,20.07325],[73.18853,20.0781],[73.19691,20.07594],[73.19816,20.07785],[73.20475,20.07996],[73.20952,20.085],[73.2139,20.11899],[73.20302,20.1196],[73.19745,20.12632],[73.18964,20.12731],[73.18699,20.12945],[73.18465,20.14469],[73.18538,20.15584],[73.1883,20.15859],[73.18967,20.16426],[73.20104,20.16531],[73.20554,20.16417],[73.21416,20.17171],[73.21819,20.18152],[73.21772,20.18593],[73.20825,20.1895],[73.2067,20.18812],[73.19881,20.19446],[73.19172,20.19743],[73.19003,20.1951],[73.17795,20.19264],[73.1788,20.19775],[73.17675,20.19933],[73.17147,20.19844],[73.16873,20.20302],[73.16829,20.20823],[73.15718,20.19835],[73.15225,20.2039],[73.14757,20.20074],[73.13852,20.20451],[73.13753,20.20759],[73.13299,20.20577],[73.13261,20.19196],[73.13492,20.18499],[73.13896,20.18447],[73.14187,20.17736],[73.13604,20.17003],[73.13248,20.16942],[73.12841,20.17344],[73.11918,20.16821],[73.11948,20.16404],[73.11566,20.16222],[73.11481,20.15894],[73.11652,20.15582],[73.11566,20.15217],[73.11365,20.15209],[73.10811,20.15784],[73.09941,20.15622],[73.0903,20.16032],[73.08704,20.17032],[73.07928,20.17324],[73.07358,20.15562],[73.07066,20.15558],[73.06024,20.16189],[73.06041,20.16687],[73.06264,20.16975],[73.0628,20.17761],[73.05953,20.19393],[73.05322,20.19543],[73.0488,20.20086],[73.0534,20.20539],[73.05996,20.22334],[73.06257,20.22403],[73.06365,20.22776],[73.07051,20.2321],[73.08244,20.23089],[73.08549,20.22764],[73.08927,20.22676],[73.09774,20.2293],[73.09901,20.23194],[73.0973,20.23867],[73.10627,20.24619],[73.107,20.25077],[73.11399,20.25831],[73.126,20.26076],[73.13053,20.26949],[73.13123,20.27503],[73.13728,20.27314],[73.13997,20.27379],[73.14227,20.27642],[73.14222,20.2811],[73.14585,20.28858],[73.15173,20.29203],[73.15367,20.28523],[73.15823,20.28131],[73.16494,20.28399],[73.1663,20.28787],[73.16579,20.29407],[73.16349,20.2982],[73.16623,20.30527],[73.16573,20.31043],[73.15941,20.30885],[73.15078,20.31834],[73.12944,20.31832],[73.12645,20.3088],[73.12695,20.30551],[73.12189,20.30419],[73.11661,20.30616],[73.11154,20.30405],[73.10852,20.30527],[73.10281,20.30178],[73.10037,20.30482],[73.10291,20.31413],[73.10843,20.32457],[73.10804,20.33103],[73.11125,20.33777],[73.10803,20.33902],[73.10738,20.34391],[73.10398,20.34755],[73.10478,20.34994],[73.10169,20.35474],[73.09864,20.3547],[73.09699,20.35993]],[[72.98987,20.21333],[72.98377,20.21306],[72.97905,20.21558],[72.97478,20.21927],[72.97462,20.22573],[72.97923,20.23403],[72.98951,20.2388],[72.9984,20.23675],[73.00832,20.22896],[73.00255,20.22063],[73.00113,20.21444],[72.99295,20.21499],[72.98987,20.21333]]],[[[72.86796,20.46336],[72.859,20.46499],[72.85583,20.47116],[72.85022,20.47456],[72.84839,20.47802],[72.84627,20.47803],[72.84647,20.47139],[72.8442,20.46683],[72.83712,20.46191],[72.83544,20.45991],[72.83308,20.45512],[72.82565,20.4464],[72.8212,20.43682],[72.82008,20.43292],[72.82089,20.42337],[72.81902,20.42178],[72.81856,20.4189],[72.81708,20.41751],[72.81663,20.40667],[72.81516,20.40312],[72.81332,20.3901],[72.80965,20.38235],[72.80524,20.37606],[72.8046,20.37227],[72.80991,20.37224],[72.82616,20.36642],[72.83039,20.36794],[72.83594,20.37332],[72.84087,20.37346],[72.84423,20.37494],[72.85614,20.37203],[72.85813,20.37404],[72.86419,20.37519],[72.86569,20.37226],[72.87667,20.36977],[72.88297,20.37231],[72.89067,20.37265],[72.89149,20.37565],[72.89615,20.37907],[72.89619,20.38035],[72.8869,20.38545],[72.8871,20.38818],[72.88362,20.39122],[72.88276,20.39785],[72.88508,20.39788],[72.8877,20.40003],[72.88999,20.39898],[72.89187,20.39916],[72.89485,20.40158],[72.8959,20.40116],[72.89793,20.40235],[72.90041,20.40526],[72.90259,20.4058],[72.90329,20.40978],[72.90177,20.41021],[72.90405,20.41498],[72.90041,20.41687],[72.8979,20.42061],[72.8932,20.42173],[72.89172,20.42137],[72.89111,20.41961],[72.88919,20.41904],[72.88323,20.41992],[72.88167,20.41948],[72.8802,20.41702],[72.87533,20.41681],[72.8743,20.41487],[72.87175,20.41389],[72.87018,20.41385],[72.86842,20.4164],[72.8649,20.41731],[72.86253,20.4168],[72.85725,20.41892],[72.85838,20.42314],[72.86023,20.42489],[72.86109,20.4276],[72.86507,20.42908],[72.86836,20.43459],[72.8698,20.43952],[72.87484,20.44557],[72.87685,20.44464],[72.8789,20.44166],[72.88771,20.43825],[72.89016,20.43865],[72.89144,20.4409],[72.89532,20.44431],[72.88797,20.4506],[72.88713,20.45492],[72.888,20.46071],[72.88655,20.46233],[72.87725,20.46176],[72.87047,20.46349],[72.86796,20.46336]]],[[[70.92536,20.73799],[70.92429,20.74066],[70.91949,20.7431],[70.91586,20.74203],[70.91339,20.74014],[70.91142,20.73736],[70.91011,20.73684],[70.90535,20.73656],[70.89387,20.73239],[70.88245,20.73095],[70.87713,20.72763],[70.87597,20.72575],[70.87574,20.72316],[70.87213,20.71835],[70.87085,20.71026],[70.87139,20.70711],[70.87422,20.70641],[70.87467,20.7089],[70.87677,20.70968],[70.88774,20.70928],[70.89315,20.70764],[70.898,20.70456],[70.89895,20.70286],[70.89691,20.70102],[70.89766,20.70007],[70.89996,20.69964],[70.90975,20.70083],[70.91021,20.70133],[70.90955,20.70191],[70.91053,20.70226],[70.91183,20.70139],[70.91137,20.7],[70.91332,20.69951],[70.91701,20.70207],[70.91468,20.70221],[70.91564,20.70303],[70.91505,20.7053],[70.91556,20.70688],[70.91769,20.70922],[70.91977,20.71052],[70.92804,20.71227],[70.93234,20.71191],[70.93768,20.71037],[70.93843,20.70981],[70.93781,20.7087],[70.93821,20.70795],[70.94433,20.70588],[70.94532,20.70641],[70.94812,20.70568],[70.94893,20.70687],[70.94981,20.7058],[70.95075,20.70611],[70.95095,20.70495],[70.95231,20.70402],[70.95505,20.70451],[70.95968,20.70714],[70.961,20.70728],[70.96181,20.70613],[70.9636,20.70586],[70.96933,20.70795],[70.97052,20.70702],[70.97126,20.70435],[70.97304,20.70514],[70.97369,20.70301],[70.97418,20.70454],[70.97525,20.70484],[70.97696,20.7028],[70.9799,20.70595],[70.9852,20.70927],[70.98612,20.70899],[70.987,20.71032],[70.98931,20.70935],[70.99116,20.7107],[70.99189,20.7103],[70.99442,20.71127],[70.99738,20.71393],[70.99845,20.71715],[70.99774,20.71833],[70.99554,20.71947],[70.99331,20.72262],[70.99308,20.72657],[70.99757,20.73263],[71.0,20.73394],[71.0,20.7352],[71.00738,20.73752],[71.00231,20.74182],[70.99949,20.74223],[70.9987,20.74044],[70.9956,20.73884],[70.99307,20.73578],[70.99051,20.73541],[70.9887,20.73342],[70.98448,20.73225],[70.98101,20.72269],[70.97402,20.72787],[70.96435,20.72961],[70.9633,20.73357],[70.96041,20.73672],[70.95414,20.73492],[70.94695,20.7346],[70.93851,20.73243],[70.93172,20.73689],[70.92708,20.73696],[70.92536,20.73799]]],[[[71.15536,20.76009],[71.15544,20.76039],[71.15544,20.76065],[71.15526,20.76105],[71.15507,20.76116],[71.15471,20.76125],[71.15338,20.76143],[71.1529,20.76162],[71.15257,20.76192],[71.15209,20.76277],[71.15209,20.76337],[71.15201,20.76372],[71.15177,20.76391],[71.15159,20.76393],[71.15132,20.76387],[71.15117,20.76369],[71.15117,20.76355],[71.15124,20.76309],[71.15133,20.76284],[71.15147,20.76214],[71.1515,20.76177],[71.15145,20.76155],[71.1513,20.7613],[71.15099,20.76095],[71.1505,20.76064],[71.14999,20.76007],[71.14987,20.75975],[71.14991,20.75943],[71.1502,20.75919],[71.15071,20.75906],[71.15108,20.75907],[71.15152,20.75912],[71.15255,20.75954],[71.15316,20.75984],[71.15342,20.75988],[71.15368,20.75984],[71.15407,20.7596],[71.15443,20.75951],[71.15464,20.75952],[71.15511,20.75977],[71.15536,20.76009]]],[[[71.14734,20.77136],[71.14639,20.77134],[71.14675,20.7707],[71.14665,20.77036],[71.14642,20.77008],[71.14642,20.76997],[71.14643,20.76979],[71.14668,20.76931],[71.14645,20.76862],[71.14677,20.76777],[71.14615,20.76313],[71.14592,20.76066],[71.14607,20.75898],[71.14712,20.75876],[71.14733,20.75848],[71.14808,20.75825],[71.14843,20.75861],[71.14846,20.75965],[71.14833,20.75998],[71.14836,20.76045],[71.14846,20.76072],[71.14937,20.7613],[71.14972,20.7619],[71.14958,20.76271],[71.14924,20.76329],[71.14883,20.76616],[71.14913,20.76637],[71.14949,20.77028],[71.14976,20.77144],[71.14734,20.77136]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-DL","area_level":"State","area_name":"Delhi","geometry_source":"SOI_States","same_as":"LGD/7/State"},"geometry":{"type":"Polygon","coordinates":[[[77.09917,28.87068],[77.09385,28.87153],[77.08756,28.87533],[77.08683,28.88089],[77.08266,28.8835],[77.07765,28.87718],[77.07924,28.87195],[77.07461,28.86752],[77.07175,28.86893],[77.06924,28.86719],[77.06098,28.87104],[77.05781,28.86775],[77.04569,28.84746],[77.04513,28.84093],[77.04184,28.83786],[77.04261,28.83426],[77.04023,28.83206],[77.02333,28.83936],[77.00744,28.84071],[76.99928,28.83788],[76.99481,28.83951],[76.98724,28.8353],[76.98591,28.82939],[76.97969,28.82123],[76.97668,28.82222],[76.97308,28.82685],[76.96701,28.82805],[76.96432,28.82546],[76.96347,28.82226],[76.96487,28.8204],[76.96176,28.81481],[76.95101,28.81818],[76.94835,28.81537],[76.94576,28.81069],[76.94614,28.80623],[76.94189,28.79866],[76.94604,28.79797],[76.95385,28.79091],[76.95007,28.78326],[76.94981,28.77706],[76.95557,28.76778],[76.94651,28.7588],[76.94449,28.75407],[76.95828,28.74323],[76.95593,28.73823],[76.96006,28.73274],[76.9594,28.72925],[76.9482,28.71299],[76.96783,28.69963],[76.95803,28.68463],[76.9538,28.66772],[76.95241,28.66961],[76.94885,28.67019],[76.93534,28.66786],[76.92496,28.65015],[76.9365,28.63783],[76.94446,28.63329],[76.94299,28.628],[76.93457,28.61835],[76.91978,28.63163],[76.91429,28.63235],[76.90647,28.6238],[76.89327,28.63169],[76.88785,28.63166],[76.8824,28.62279],[76.87734,28.60883],[76.87176,28.60286],[76.86788,28.59063],[76.86431,28.586],[76.84611,28.5848],[76.83953,28.58279],[76.83889,28.57328],[76.84083,28.57109],[76.84241,28.5563],[76.84646,28.54975],[76.86472,28.5435],[76.86738,28.53555],[76.87321,28.53275],[76.87458,28.52701],[76.87703,28.5244],[76.88713,28.52057],[76.88041,28.5062],[76.88569,28.50245],[76.88545,28.50114],[76.89223,28.50083],[76.89862,28.50874],[76.90302,28.50893],[76.90793,28.51381],[76.9144,28.51167],[76.92079,28.50698],[76.92734,28.51051],[76.93349,28.5097],[76.94166,28.50454],[76.95167,28.50422],[76.97075,28.5152],[76.9781,28.52132],[76.98276,28.51712],[76.99039,28.5135],[76.99519,28.51672],[76.99656,28.51975],[77.01022,28.51435],[77.01711,28.52083],[77.01455,28.52395],[77.00023,28.53209],[77.00665,28.54141],[77.01544,28.53974],[77.02404,28.53309],[77.03176,28.53157],[77.04851,28.52074],[77.04624,28.5167],[77.05895,28.51264],[77.06682,28.51201],[77.0718,28.52019],[77.09313,28.5141],[77.09853,28.51104],[77.09592,28.50652],[77.09681,28.5058],[77.11697,28.49636],[77.12073,28.49594],[77.11469,28.48097],[77.11297,28.47123],[77.11078,28.47131],[77.12185,28.45851],[77.12363,28.44546],[77.12859,28.44093],[77.14108,28.4367],[77.14831,28.4374],[77.15507,28.43209],[77.1623,28.42894],[77.16593,28.42569],[77.16517,28.41423],[77.17114,28.40924],[77.17145,28.40626],[77.17448,28.40467],[77.18437,28.41043],[77.19053,28.40721],[77.21601,28.41146],[77.21661,28.40973],[77.22852,28.41391],[77.23841,28.42083],[77.24918,28.42406],[77.25016,28.42608],[77.25264,28.43291],[77.24883,28.43292],[77.24909,28.44609],[77.24619,28.45345],[77.24251,28.45615],[77.23441,28.45472],[77.23292,28.45791],[77.23559,28.47112],[77.2433,28.47882],[77.26945,28.48664],[77.27206,28.4908],[77.27653,28.49328],[77.29027,28.49654],[77.3006,28.49417],[77.30079,28.48985],[77.30653,28.48939],[77.3141,28.48361],[77.31837,28.48737],[77.32683,28.49011],[77.33611,28.50519],[77.34544,28.51325],[77.34741,28.51839],[77.34704,28.52083],[77.33399,28.52541],[77.33017,28.53228],[77.32472,28.53492],[77.3209,28.5409],[77.30379,28.55243],[77.29997,28.55976],[77.30123,28.5627],[77.29709,28.56597],[77.30005,28.5758],[77.29838,28.58015],[77.31017,28.59046],[77.3134,28.59659],[77.32517,28.59805],[77.32836,28.60016],[77.33677,28.60181],[77.34168,28.60606],[77.34242,28.60888],[77.34147,28.61698],[77.34256,28.62197],[77.33063,28.63139],[77.3237,28.63432],[77.31627,28.64121],[77.31988,28.65109],[77.32076,28.66349],[77.32372,28.66896],[77.3236,28.67671],[77.3301,28.67822],[77.33292,28.68196],[77.3303,28.69039],[77.32327,28.69858],[77.32574,28.70285],[77.32445,28.7065],[77.32543,28.70888],[77.33108,28.7131],[77.32206,28.7121],[77.31773,28.71398],[77.30623,28.71326],[77.29904,28.70985],[77.29678,28.70444],[77.29152,28.70615],[77.28736,28.71027],[77.28624,28.71453],[77.28909,28.71682],[77.28883,28.71957],[77.29077,28.72238],[77.28628,28.72458],[77.27644,28.73545],[77.27291,28.73627],[77.26082,28.73416],[77.25519,28.73974],[77.25456,28.74356],[77.2562,28.74388],[77.25918,28.75],[77.25637,28.7562],[77.24878,28.75528],[77.23556,28.76092],[77.23588,28.77073],[77.23179,28.77079],[77.23145,28.77441],[77.22187,28.77739],[77.23415,28.78372],[77.22854,28.78653],[77.2143,28.78524],[77.20263,28.79246],[77.19913,28.79923],[77.2013,28.81294],[77.21896,28.80824],[77.22026,28.81914],[77.22439,28.82532],[77.223,28.83338],[77.21665,28.84151],[77.21732,28.85133],[77.21424,28.85582],[77.19771,28.85923],[77.18142,28.85751],[77.1754,28.85832],[77.17306,28.85723],[77.1721,28.84991],[77.16595,28.84907],[77.15678,28.83897],[77.15775,28.83669],[77.14597,28.83792],[77.14241,28.83886],[77.14202,28.84705],[77.14531,28.85364],[77.14199,28.85624],[77.14255,28.85971],[77.14032,28.86206],[77.13222,28.8636],[77.12337,28.85762],[77.12086,28.85836],[77.12084,28.85994],[77.10983,28.87007],[77.09917,28.87068]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-GA","area_level":"State","area_name":"Goa","geometry_source":"SOI_States","same_as":"LGD/30/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.0863,14.8995],[74.08654,14.89961],[74.0865,14.89965],[74.08608,14.89983],[74.08566,14.89987],[74.08536,14.89984],[74.08511,14.89956],[74.08506,14.89914],[74.08519,14.89878],[74.08528,14.89863],[74.08555,14.89844],[74.0863,14.8995]]],[[[73.68138,15.7296],[73.68116,15.72966],[73.68088,15.72954],[73.68093,15.72935],[73.67847,15.72896],[73.67811,15.72875],[73.67837,15.72802],[73.67834,15.72727],[73.6774,15.7264],[73.67717,15.72651],[73.67695,15.72635],[73.67699,15.72594],[73.67777,15.72576],[73.67929,15.72578],[73.68064,15.72517],[73.68108,15.72464],[73.68098,15.72428],[73.6805,15.72371],[73.68041,15.72312],[73.67936,15.72217],[73.6798,15.72215],[73.68031,15.72193],[73.67993,15.72115],[73.68026,15.72116],[73.68081,15.72184],[73.68279,15.72232],[73.68332,15.72206],[73.68338,15.72116],[73.68317,15.72091],[73.68332,15.7209],[73.68286,15.72076],[73.68303,15.72038],[73.68355,15.7204],[73.68374,15.72063],[73.68436,15.72091],[73.68452,15.72084],[73.68446,15.72047],[73.68475,15.72025],[73.68516,15.72041],[73.68558,15.72085],[73.68621,15.72087],[73.68703,15.72124],[73.68737,15.72279],[73.68786,15.72358],[73.68866,15.72351],[73.68889,15.72268],[73.68952,15.72257],[73.69102,15.72257],[73.69172,15.72177],[73.69283,15.72146],[73.69328,15.72184],[73.69575,15.7217],[73.69602,15.72181],[73.69638,15.72224],[73.69667,15.72279],[73.69667,15.72321],[73.69598,15.7236],[73.6958,15.72414],[73.69521,15.72396],[73.69362,15.72415],[73.6931,15.7264],[73.69296,15.72656],[73.69253,15.72822],[73.69221,15.72815],[73.6908,15.72923],[73.68755,15.72988],[73.68521,15.72981],[73.6815,15.72946],[73.68138,15.7296]]],[[[73.86772,15.78438],[73.86596,15.78556],[73.86481,15.79082],[73.8675,15.79703],[73.85571,15.80102],[73.85277,15.79708],[73.85047,15.78964],[73.84707,15.7858],[73.85267,15.78092],[73.84985,15.77954],[73.84391,15.78113],[73.8408,15.77612],[73.83849,15.76756],[73.82975,15.76433],[73.83083,15.75399],[73.82662,15.74336],[73.81824,15.73947],[73.81258,15.74245],[73.80943,15.74203],[73.80664,15.73768],[73.79723,15.73422],[73.79316,15.73723],[73.78893,15.73484],[73.78754,15.72826],[73.78497,15.72613],[73.77035,15.73031],[73.76517,15.73387],[73.74284,15.73657],[73.73485,15.72952],[73.73185,15.7205],[73.72631,15.71705],[73.72351,15.71727],[73.7246,15.71968],[73.71995,15.72377],[73.7167,15.7244],[73.71047,15.72408],[73.70121,15.72046],[73.69916,15.718],[73.69368,15.71796],[73.69177,15.71998],[73.68948,15.71912],[73.69378,15.70675],[73.6943,15.69952],[73.69775,15.69607],[73.69838,15.69099],[73.70081,15.69045],[73.70264,15.68631],[73.70494,15.67485],[73.71137,15.66316],[73.71511,15.64774],[73.72082,15.635],[73.71985,15.63429],[73.72214,15.63224],[73.72282,15.62675],[73.72394,15.6278],[73.72636,15.62656],[73.7334,15.61395],[73.73602,15.61149],[73.74022,15.61202],[73.74467,15.60569],[73.74124,15.60525],[73.73875,15.60781],[73.73207,15.60695],[73.73415,15.60103],[73.73195,15.59777],[73.73438,15.59252],[73.73222,15.58859],[73.73563,15.5854],[73.7408,15.57061],[73.74185,15.56244],[73.74629,15.55974],[73.7499,15.5626],[73.74923,15.56057],[73.75545,15.54507],[73.76792,15.49914],[73.76732,15.49647],[73.76558,15.49587],[73.76659,15.49281],[73.76861,15.49285],[73.7696,15.48997],[73.77372,15.49044],[73.77569,15.48906],[73.78153,15.47563],[73.78971,15.4638],[73.78781,15.46219],[73.786,15.43727],[73.79177,15.41747],[73.7896,15.41204],[73.78416,15.41261],[73.78369,15.4081],[73.78946,15.39915],[73.79198,15.39893],[73.79004,15.39675],[73.79059,15.39386],[73.79504,15.39241],[73.80397,15.39373],[73.80596,15.39182],[73.80793,15.3791],[73.81057,15.38176],[73.80779,15.3773],[73.8092,15.37539],[73.81181,15.37582],[73.81653,15.37209],[73.82166,15.37185],[73.82295,15.36966],[73.82857,15.36798],[73.83182,15.36951],[73.83585,15.36599],[73.83755,15.36124],[73.84267,15.35839],[73.85133,15.35899],[73.85391,15.36399],[73.86298,15.36474],[73.86366,15.36796],[73.87127,15.36922],[73.87918,15.3619],[73.88415,15.35326],[73.89449,15.33084],[73.90213,15.30963],[73.92833,15.22856],[73.94918,15.14477],[73.9565,15.1355],[73.95027,15.14028],[73.94649,15.1408],[73.9427,15.13401],[73.93679,15.13216],[73.93636,15.13102],[73.94045,15.12806],[73.94142,15.12554],[73.94132,15.11659],[73.93791,15.11692],[73.93609,15.11028],[73.93381,15.11205],[73.92659,15.10813],[73.91848,15.10621],[73.92282,15.10633],[73.92281,15.10427],[73.92571,15.10387],[73.92767,15.09532],[73.92231,15.08853],[73.9173,15.0875],[73.91629,15.08464],[73.91284,15.08365],[73.91645,15.08415],[73.91788,15.08201],[73.92309,15.08547],[73.92633,15.08477],[73.93167,15.08241],[73.93274,15.07719],[73.93672,15.07698],[73.9422,15.07312],[73.95499,15.07193],[73.95462,15.06919],[73.95745,15.06912],[73.96347,15.06465],[73.96746,15.06462],[73.96726,15.06142],[73.97035,15.05884],[73.97213,15.05108],[73.97505,15.04894],[73.98012,15.0518],[73.98029,15.05468],[73.98328,15.0529],[73.98836,15.05514],[73.98397,15.05291],[73.98074,15.05403],[73.99112,15.03164],[73.99043,15.02877],[73.98627,15.02751],[73.98814,15.02566],[73.98612,15.02442],[73.98842,15.02446],[73.98965,15.02248],[73.98948,15.01892],[73.99386,15.01654],[73.99785,15.0199],[73.99962,15.0174],[74.00185,15.01812],[74.00336,15.01504],[74.00713,15.016],[74.01369,15.009],[74.01755,15.01605],[74.02104,15.01717],[74.02092,15.01419],[74.01863,15.01519],[74.01696,15.01117],[74.02194,15.00992],[74.02648,15.00642],[74.02749,15.00248],[74.02447,15.00141],[74.02957,15.00084],[74.02793,14.99679],[74.03277,14.99831],[74.03545,14.99226],[74.03964,14.99271],[74.04104,14.99543],[74.04002,14.99245],[74.03613,14.99184],[74.0392,14.98395],[74.03536,14.98201],[74.04063,14.9809],[74.05006,14.95726],[74.04774,14.95259],[74.04839,14.9491],[74.04499,14.94857],[74.04566,14.9473],[74.04353,14.94643],[74.04541,14.94455],[74.04435,14.94199],[74.04786,14.93334],[74.04636,14.93196],[74.04718,14.92902],[74.0447,14.92859],[74.04606,14.92349],[74.04279,14.92209],[74.04454,14.91607],[74.04798,14.9141],[74.05709,14.91345],[74.06087,14.90914],[74.0649,14.90826],[74.06709,14.90583],[74.06839,14.90833],[74.07133,14.90611],[74.07538,14.90854],[74.08111,14.90908],[74.08421,14.90441],[74.08353,14.90086],[74.08537,14.90032],[74.08819,14.90343],[74.09028,14.90341],[74.09453,14.91099],[74.10163,14.91579],[74.1048,14.9129],[74.10851,14.91394],[74.10962,14.91697],[74.11462,14.91836],[74.11998,14.9169],[74.12423,14.92532],[74.12983,14.92547],[74.13504,14.92209],[74.14015,14.92323],[74.14572,14.91895],[74.15342,14.91714],[74.16212,14.91214],[74.16619,14.91655],[74.16591,14.91859],[74.16258,14.92689],[74.15855,14.93023],[74.15624,14.93887],[74.15426,14.93984],[74.15547,14.9422],[74.15416,14.94343],[74.15833,14.94931],[74.15915,14.95585],[74.16077,14.95555],[74.16361,14.95848],[74.17138,14.95719],[74.17476,14.95853],[74.17946,14.95705],[74.17836,14.95367],[74.17972,14.9508],[74.19126,14.94501],[74.19476,14.93994],[74.19466,14.93709],[74.19166,14.93304],[74.20154,14.92572],[74.20913,14.93806],[74.21263,14.94027],[74.21164,14.94354],[74.21366,14.94769],[74.21755,14.94595],[74.22596,14.95046],[74.2298,14.9505],[74.23175,14.95337],[74.23286,14.96412],[74.2367,14.96685],[74.24755,14.96192],[74.24923,14.95904],[74.2526,14.95909],[74.25527,14.97042],[74.2591,14.97006],[74.26099,14.97647],[74.26432,14.97852],[74.2577,14.98823],[74.25212,14.99268],[74.25361,14.99815],[74.26807,15.00201],[74.26647,15.00689],[74.27245,15.01425],[74.28341,15.02353],[74.28326,15.03157],[74.28824,15.03674],[74.29649,15.04121],[74.29461,15.04917],[74.29025,15.05361],[74.28951,15.06482],[74.28373,15.06613],[74.28073,15.06882],[74.27969,15.08808],[74.27524,15.09595],[74.27265,15.0975],[74.27655,15.10538],[74.28266,15.10674],[74.28288,15.11303],[74.28488,15.11391],[74.28519,15.13672],[74.28358,15.14287],[74.28513,15.14903],[74.29135,15.14891],[74.29567,15.15124],[74.31425,15.17752],[74.31417,15.18054],[74.31738,15.18375],[74.31696,15.18626],[74.31039,15.19468],[74.30862,15.20179],[74.31005,15.20629],[74.30575,15.2094],[74.30452,15.21672],[74.30221,15.21801],[74.30144,15.21705],[74.29986,15.21993],[74.30161,15.22434],[74.2915,15.23382],[74.2867,15.23281],[74.28114,15.23626],[74.25955,15.24102],[74.2522,15.25103],[74.25469,15.25407],[74.25111,15.25885],[74.26103,15.26019],[74.27149,15.28113],[74.27633,15.28353],[74.28179,15.28042],[74.28765,15.28389],[74.29335,15.28451],[74.29433,15.28919],[74.30796,15.28333],[74.31963,15.28344],[74.32057,15.2847],[74.32637,15.28374],[74.33644,15.29494],[74.32443,15.30991],[74.31702,15.32912],[74.31722,15.33517],[74.32184,15.3436],[74.31604,15.35997],[74.31626,15.363],[74.3232,15.36768],[74.3086,15.37445],[74.29871,15.38194],[74.28299,15.38294],[74.27587,15.39159],[74.2783,15.40569],[74.27432,15.41358],[74.27041,15.41596],[74.26878,15.4191],[74.26992,15.42604],[74.27689,15.43521],[74.27506,15.43646],[74.27737,15.44049],[74.27545,15.44919],[74.26398,15.47236],[74.25091,15.49159],[74.25229,15.49934],[74.25517,15.50307],[74.27148,15.51085],[74.27647,15.51489],[74.27847,15.51748],[74.27815,15.52285],[74.2817,15.52613],[74.28265,15.53142],[74.27792,15.54611],[74.2653,15.55837],[74.26315,15.56394],[74.26129,15.56481],[74.25833,15.56169],[74.24967,15.56765],[74.24519,15.5666],[74.25053,15.57737],[74.24874,15.58038],[74.26025,15.59263],[74.25999,15.60672],[74.2643,15.61551],[74.25859,15.62078],[74.25848,15.6234],[74.25372,15.62674],[74.24826,15.6229],[74.24416,15.62611],[74.25198,15.65431],[74.25044,15.65726],[74.24485,15.6582],[74.24299,15.66244],[74.23817,15.66362],[74.2394,15.66461],[74.23636,15.66858],[74.22979,15.66638],[74.22841,15.66444],[74.2246,15.66626],[74.22378,15.66898],[74.21802,15.66435],[74.21765,15.6623],[74.21515,15.66287],[74.21772,15.65836],[74.22222,15.65685],[74.22216,15.65564],[74.21745,15.65274],[74.20513,15.65103],[74.20175,15.65634],[74.20406,15.66368],[74.18684,15.66745],[74.1861,15.6745],[74.19039,15.67632],[74.18989,15.67911],[74.1891,15.68059],[74.18155,15.68215],[74.17668,15.67987],[74.17208,15.674],[74.16737,15.67201],[74.16558,15.65438],[74.16442,15.6535],[74.15747,15.65468],[74.15435,15.6499],[74.14909,15.65197],[74.14112,15.6511],[74.13554,15.64837],[74.11758,15.65215],[74.11613,15.64918],[74.11411,15.64879],[74.11389,15.64613],[74.10706,15.64645],[74.09753,15.64102],[74.09429,15.64237],[74.07849,15.63176],[74.07011,15.62916],[74.06577,15.62968],[74.06342,15.62645],[74.06182,15.6266],[74.06161,15.62853],[74.0506,15.62487],[74.03116,15.62261],[74.0254,15.60944],[74.0208,15.60609],[74.00884,15.61016],[73.99336,15.61064],[73.99052,15.61223],[73.97905,15.62713],[73.97078,15.62741],[73.96786,15.63058],[73.96739,15.63531],[73.96177,15.64168],[73.9614,15.64934],[73.96782,15.66025],[73.96571,15.66943],[73.96269,15.67326],[73.96376,15.69232],[73.95909,15.69809],[73.95923,15.70006],[73.95294,15.69953],[73.95152,15.69645],[73.94651,15.69781],[73.9437,15.69694],[73.94856,15.70354],[73.94928,15.70865],[73.94717,15.70983],[73.9498,15.7107],[73.94918,15.71156],[73.95233,15.7144],[73.94595,15.7212],[73.94174,15.72919],[73.94087,15.73811],[73.93873,15.74333],[73.9148,15.74544],[73.90698,15.74997],[73.90699,15.74797],[73.89918,15.746],[73.89288,15.74939],[73.8757,15.75128],[73.87288,15.75468],[73.87306,15.76088],[73.87701,15.76442],[73.87506,15.76716],[73.87735,15.76808],[73.88009,15.77432],[73.87787,15.77563],[73.87716,15.77437],[73.87351,15.77709],[73.86985,15.78354],[73.86772,15.78438]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-GJ","area_level":"State","area_name":"Gujarat","geometry_source":"SOI_States","same_as":"LGD/24/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.0014,20.21582],[73.00255,20.22063],[73.00562,20.2234],[73.00832,20.22896],[73.00548,20.23197],[72.9984,20.23675],[72.98951,20.2388],[72.97923,20.23403],[72.97462,20.22573],[72.97478,20.21927],[72.97905,20.21558],[72.98377,20.21306],[72.99029,20.21335],[72.99286,20.21421],[72.99295,20.21499],[73.00008,20.21429],[73.00113,20.21444],[73.0014,20.21582]]],[[[71.25606,20.81164],[71.25653,20.81184],[71.25675,20.81201],[71.25688,20.81228],[71.25707,20.81258],[71.25713,20.81276],[71.25713,20.81316],[71.25706,20.81334],[71.25698,20.81345],[71.25646,20.81385],[71.25631,20.81394],[71.25619,20.81398],[71.25608,20.81399],[71.25467,20.814],[71.25456,20.81398],[71.25415,20.81351],[71.25408,20.81332],[71.25416,20.81253],[71.25423,20.81235],[71.25467,20.81172],[71.25494,20.81164],[71.25591,20.81161],[71.25606,20.81164]]],[[[71.262,20.81504],[71.262,20.81523],[71.26207,20.81544],[71.26215,20.81556],[71.26293,20.81606],[71.26315,20.81634],[71.2631,20.81658],[71.26293,20.81682],[71.26277,20.81691],[71.26253,20.81692],[71.26221,20.81699],[71.26205,20.817],[71.26192,20.81697],[71.26098,20.81615],[71.26079,20.81596],[71.26074,20.81571],[71.26077,20.81541],[71.26081,20.81522],[71.26096,20.81499],[71.26109,20.81487],[71.26192,20.81486],[71.262,20.81504]]],[[[71.27065,20.81926],[71.27089,20.81938],[71.27104,20.81958],[71.2711,20.8198],[71.27108,20.82021],[71.27104,20.82036],[71.27093,20.82046],[71.27053,20.82056],[71.27029,20.82065],[71.27018,20.82077],[71.27019,20.82122],[71.27012,20.8213],[71.26946,20.82131],[71.26911,20.82124],[71.26889,20.82115],[71.26889,20.82001],[71.26936,20.81946],[71.26976,20.81929],[71.27024,20.81921],[71.27065,20.81926]]],[[[71.3042,20.83196],[71.30481,20.83229],[71.30491,20.83244],[71.3049,20.83254],[71.30481,20.83257],[71.30471,20.83255],[71.30449,20.83243],[71.30393,20.83223],[71.3037,20.83209],[71.30354,20.83195],[71.30342,20.83191],[71.30331,20.83191],[71.30317,20.83195],[71.30313,20.83201],[71.30297,20.83201],[71.30292,20.83197],[71.30291,20.83192],[71.30293,20.8318],[71.30297,20.83173],[71.30298,20.83168],[71.30293,20.83161],[71.30284,20.83157],[71.30255,20.83162],[71.30242,20.83152],[71.3024,20.83135],[71.3025,20.83108],[71.30262,20.83098],[71.3028,20.83092],[71.30314,20.83098],[71.30324,20.83112],[71.30324,20.83134],[71.3034,20.83153],[71.3037,20.83177],[71.3042,20.83196]]],[[[71.30916,20.83258],[71.30919,20.8328],[71.30916,20.83285],[71.30906,20.83289],[71.30894,20.83286],[71.3088,20.83276],[71.30866,20.8327],[71.30794,20.83263],[71.30784,20.8326],[71.30768,20.83253],[71.3076,20.83241],[71.30761,20.83234],[71.30771,20.83227],[71.30799,20.83228],[71.30833,20.83239],[71.30883,20.83252],[71.30901,20.83249],[71.30916,20.83258]]],[[[71.30407,20.83379],[71.30414,20.83418],[71.30399,20.83438],[71.30359,20.83437],[71.30322,20.83419],[71.30284,20.83406],[71.30277,20.83394],[71.30286,20.83381],[71.30317,20.83372],[71.30378,20.83368],[71.30407,20.83379]]],[[[71.45739,20.87864],[71.45731,20.87881],[71.45719,20.87887],[71.45716,20.87897],[71.45708,20.87897],[71.45693,20.87892],[71.45683,20.87881],[71.45679,20.87847],[71.45643,20.8786],[71.45619,20.87851],[71.45605,20.87834],[71.45605,20.87819],[71.45618,20.87806],[71.45629,20.87793],[71.45623,20.8778],[71.45611,20.87765],[71.45604,20.87744],[71.45609,20.8773],[71.45618,20.87727],[71.45665,20.8773],[71.45674,20.87727],[71.45678,20.87714],[71.45699,20.8771],[71.45756,20.8774],[71.45799,20.87719],[71.45826,20.87725],[71.4583,20.87735],[71.45827,20.87767],[71.4584,20.8777],[71.45873,20.8777],[71.45895,20.87772],[71.45913,20.87781],[71.45918,20.87799],[71.45911,20.87811],[71.45884,20.87819],[71.45823,20.87822],[71.45841,20.87828],[71.45863,20.87832],[71.4587,20.87843],[71.45869,20.87867],[71.45851,20.8788],[71.45831,20.87891],[71.45797,20.87897],[71.45789,20.87894],[71.45771,20.87883],[71.45761,20.8787],[71.45755,20.87857],[71.45739,20.87864]]],[[[71.53549,20.90268],[71.53562,20.90269],[71.53579,20.90277],[71.53595,20.90287],[71.5361,20.90301],[71.53615,20.90311],[71.53616,20.90317],[71.53614,20.90324],[71.53605,20.90331],[71.5359,20.90333],[71.53559,20.90328],[71.5354,20.90324],[71.53523,20.90322],[71.53509,20.9032],[71.53497,20.90316],[71.53483,20.90311],[71.53473,20.90304],[71.53468,20.90294],[71.53469,20.90287],[71.53473,20.90281],[71.5348,20.90276],[71.53498,20.9027],[71.53515,20.90267],[71.53532,20.90266],[71.53549,20.90268]]],[[[71.54819,20.91195],[71.54836,20.91206],[71.54845,20.9122],[71.54851,20.91238],[71.54847,20.91254],[71.54839,20.91264],[71.54803,20.91281],[71.54767,20.91291],[71.54733,20.91305],[71.54719,20.91317],[71.54714,20.91327],[71.54706,20.91337],[71.54699,20.9134],[71.5469,20.91341],[71.54678,20.91336],[71.54671,20.9133],[71.54664,20.91317],[71.54654,20.91305],[71.54638,20.91297],[71.54614,20.91289],[71.546,20.91281],[71.54587,20.91267],[71.54576,20.91246],[71.54574,20.91225],[71.54578,20.91204],[71.54591,20.91181],[71.54612,20.91175],[71.54651,20.9118],[71.54683,20.91175],[71.54751,20.91178],[71.54819,20.91195]]],[[[71.54518,20.91344],[71.54533,20.9135],[71.54552,20.91363],[71.54561,20.91376],[71.54567,20.91393],[71.54564,20.9141],[71.54554,20.91422],[71.54542,20.91428],[71.54531,20.91428],[71.54505,20.91407],[71.54496,20.91395],[71.54486,20.91377],[71.54476,20.91361],[71.54475,20.91352],[71.54483,20.91344],[71.54491,20.9134],[71.54503,20.9134],[71.54518,20.91344]]],[[[71.52079,20.91285],[71.52106,20.91297],[71.52125,20.9131],[71.5213,20.9132],[71.52132,20.9133],[71.5213,20.91338],[71.52126,20.91347],[71.52113,20.91353],[71.52091,20.91358],[71.52074,20.91357],[71.52054,20.91351],[71.52047,20.91347],[71.52021,20.91327],[71.52016,20.91316],[71.52018,20.91304],[71.52028,20.91294],[71.52046,20.91286],[71.5206,20.91283],[71.52079,20.91285]]],[[[71.51823,20.91255],[71.51753,20.9133],[71.517,20.91347],[71.51611,20.91346],[71.51254,20.91098],[71.51203,20.9102],[71.51253,20.90994],[71.51258,20.90929],[71.5129,20.90923],[71.51293,20.90887],[71.51196,20.90803],[71.51116,20.90876],[71.5109,20.90884],[71.51082,20.90836],[71.51136,20.90769],[71.51061,20.90698],[71.51049,20.90643],[71.50992,20.90608],[71.50955,20.90536],[71.50887,20.90516],[71.50801,20.90438],[71.50702,20.90311],[71.507,20.90287],[71.50779,20.90308],[71.50831,20.9021],[71.50907,20.90181],[71.50974,20.90183],[71.5104,20.9022],[71.51076,20.90197],[71.51285,20.90197],[71.51345,20.90265],[71.51416,20.90216],[71.51472,20.90213],[71.51637,20.9025],[71.51719,20.90332],[71.51771,20.90355],[71.52007,20.9031],[71.52043,20.90266],[71.52124,20.90273],[71.52144,20.90259],[71.52238,20.90286],[71.52286,20.90319],[71.52515,20.90331],[71.52534,20.9032],[71.52545,20.90257],[71.52638,20.90296],[71.52687,20.903],[71.5269,20.90267],[71.5271,20.90264],[71.52819,20.90264],[71.52864,20.90292],[71.52921,20.90255],[71.52959,20.90259],[71.52982,20.90282],[71.5305,20.90232],[71.53243,20.90294],[71.53084,20.90352],[71.53135,20.90359],[71.53137,20.90407],[71.53097,20.90435],[71.53018,20.90453],[71.53007,20.90497],[71.52989,20.90508],[71.52888,20.90535],[71.52812,20.90536],[71.52726,20.90596],[71.52672,20.90588],[71.52626,20.90604],[71.52607,20.90579],[71.52607,20.90544],[71.52457,20.90477],[71.5244,20.90462],[71.52446,20.90434],[71.52431,20.90417],[71.52355,20.9042],[71.5245,20.90492],[71.52296,20.90425],[71.52397,20.90526],[71.52385,20.90549],[71.52193,20.90502],[71.52156,20.90514],[71.52093,20.90586],[71.52049,20.90663],[71.51856,20.9111],[71.51863,20.9119],[71.51937,20.91261],[71.51936,20.91282],[71.51823,20.91255]]],[[[72.36084,21.59216],[72.3611,21.59285],[72.36119,21.59356],[72.36116,21.59569],[72.36029,21.59657],[72.3595,21.59822],[72.35828,21.59924],[72.35708,21.60059],[72.35623,21.60125],[72.35522,21.60187],[72.35456,21.60213],[72.35289,21.60499],[72.35204,21.60616],[72.35119,21.60772],[72.35074,21.60836],[72.35031,21.60843],[72.34909,21.60592],[72.34964,21.60491],[72.3498,21.60366],[72.35043,21.60205],[72.35097,21.60126],[72.35131,21.60052],[72.35276,21.59925],[72.35356,21.59756],[72.35433,21.59513],[72.35438,21.59364],[72.3551,21.59249],[72.35592,21.5924],[72.35743,21.59196],[72.35874,21.59181],[72.36035,21.592],[72.36084,21.59216]]],[[[72.7676,21.65702],[72.76265,21.65637],[72.75586,21.65127],[72.75039,21.65147],[72.74002,21.64476],[72.725,21.6454],[72.71705,21.64766],[72.6919,21.64401],[72.68073,21.64584],[72.6719,21.64532],[72.6266,21.62883],[72.61836,21.62125],[72.61839,21.61258],[72.61499,21.60579],[72.61118,21.60176],[72.61253,21.59493],[72.60809,21.59155],[72.60695,21.58758],[72.60583,21.57535],[72.60782,21.56752],[72.60645,21.56459],[72.60725,21.56068],[72.61146,21.55225],[72.61742,21.54697],[72.60846,21.55133],[72.5988,21.54867],[72.60265,21.55659],[72.59856,21.56461],[72.60047,21.57793],[72.59904,21.58025],[72.59358,21.58164],[72.59194,21.58499],[72.58366,21.58452],[72.58017,21.58571],[72.57844,21.58351],[72.58397,21.58083],[72.58261,21.57922],[72.58078,21.57946],[72.58399,21.57658],[72.5813,21.57682],[72.57619,21.57146],[72.57697,21.56499],[72.57576,21.56013],[72.57707,21.55854],[72.57529,21.55628],[72.57661,21.55485],[72.57475,21.55084],[72.57717,21.54259],[72.57853,21.54215],[72.57698,21.54203],[72.57853,21.53544],[72.57519,21.53233],[72.58059,21.529],[72.59081,21.53476],[72.59619,21.53563],[72.60824,21.53289],[72.60964,21.53173],[72.60604,21.53098],[72.61133,21.5305],[72.61771,21.53572],[72.62391,21.53797],[72.62136,21.53744],[72.62196,21.53864],[72.6257,21.53938],[72.63443,21.53861],[72.63684,21.53317],[72.64221,21.53225],[72.64647,21.53713],[72.64461,21.54218],[72.64692,21.54758],[72.65976,21.55691],[72.67055,21.57308],[72.67325,21.57529],[72.67844,21.57522],[72.69242,21.58139],[72.69512,21.58847],[72.70152,21.58797],[72.70194,21.59207],[72.70238,21.5878],[72.70616,21.58591],[72.7139,21.59075],[72.71754,21.58985],[72.71881,21.59165],[72.72103,21.58476],[72.72489,21.58579],[72.72594,21.58763],[72.72563,21.58602],[72.7277,21.58577],[72.7411,21.59734],[72.74798,21.60058],[72.75251,21.60011],[72.76447,21.60696],[72.77065,21.60905],[72.79323,21.60845],[72.81256,21.618],[72.81978,21.62386],[72.82592,21.63562],[72.82541,21.63974],[72.8159,21.65285],[72.80674,21.65044],[72.79643,21.65068],[72.77927,21.6532],[72.7676,21.65702]]],[[[69.33941,22.38597],[69.33719,22.38642],[69.33632,22.38684],[69.33513,22.38662],[69.33492,22.38585],[69.33435,22.38506],[69.33367,22.38458],[69.33295,22.38468],[69.33187,22.38432],[69.33181,22.38331],[69.33001,22.38228],[69.32893,22.3821],[69.32845,22.38259],[69.32776,22.38289],[69.32476,22.38241],[69.32336,22.38129],[69.32377,22.38081],[69.32389,22.38028],[69.32504,22.37874],[69.32835,22.37508],[69.32905,22.37469],[69.33013,22.37453],[69.33082,22.37478],[69.33137,22.37455],[69.33203,22.37385],[69.3327,22.37282],[69.33333,22.37411],[69.33398,22.37637],[69.33707,22.37779],[69.33806,22.37936],[69.33982,22.38039],[69.33916,22.38314],[69.33976,22.3844],[69.33941,22.38597]]],[[[69.62893,22.45885],[69.62516,22.4587],[69.6212,22.45734],[69.62091,22.45679],[69.61665,22.45442],[69.61609,22.45296],[69.6143,22.45197],[69.60327,22.44866],[69.59792,22.44617],[69.59549,22.44445],[69.5908,22.4397],[69.58991,22.43732],[69.58993,22.43565],[69.59154,22.43227],[69.59035,22.43072],[69.59522,22.42631],[69.5964,22.42444],[69.60223,22.42165],[69.60681,22.41717],[69.6365,22.40572],[69.63817,22.40741],[69.63878,22.40919],[69.64163,22.41273],[69.64247,22.415],[69.64604,22.41704],[69.64849,22.42041],[69.6554,22.42385],[69.65683,22.42538],[69.65681,22.42694],[69.6541,22.43025],[69.6512,22.43044],[69.65049,22.43124],[69.64786,22.43676],[69.6473,22.43961],[69.64745,22.44171],[69.6462,22.44455],[69.64112,22.44902],[69.63926,22.4497],[69.63562,22.45241],[69.62893,22.45885]]],[[[69.13752,22.47622],[69.13695,22.47669],[69.1332,22.47651],[69.13098,22.47563],[69.12683,22.47498],[69.11869,22.4708],[69.11777,22.47077],[69.1137,22.46814],[69.1082,22.46618],[69.10414,22.46533],[69.09397,22.46091],[69.09276,22.45793],[69.09322,22.45578],[69.09439,22.45378],[69.09462,22.45007],[69.09329,22.44934],[69.09298,22.44856],[69.09313,22.44806],[69.09388,22.4479],[69.09417,22.44684],[69.09303,22.44673],[69.09439,22.44584],[69.0957,22.44576],[69.09649,22.44425],[69.0964,22.44344],[69.09598,22.44336],[69.09556,22.44401],[69.09559,22.44329],[69.09517,22.44309],[69.0963,22.44273],[69.09646,22.44117],[69.09563,22.43994],[69.09282,22.43955],[69.09147,22.4382],[69.09091,22.43826],[69.09087,22.43576],[69.08973,22.43398],[69.0868,22.43286],[69.08567,22.43197],[69.0863,22.43055],[69.08545,22.42775],[69.0857,22.42706],[69.08456,22.42545],[69.08408,22.42293],[69.08445,22.42216],[69.08556,22.42159],[69.08579,22.42096],[69.08726,22.42137],[69.08837,22.42237],[69.08934,22.4257],[69.09025,22.42716],[69.09276,22.42945],[69.09527,22.43105],[69.09876,22.43126],[69.09897,22.43219],[69.10042,22.43301],[69.10363,22.4328],[69.10751,22.43688],[69.10834,22.43697],[69.10695,22.44013],[69.10654,22.44443],[69.10764,22.44841],[69.10878,22.4487],[69.1078,22.45028],[69.10778,22.45131],[69.10895,22.45127],[69.10982,22.45268],[69.10928,22.45261],[69.10934,22.45389],[69.10869,22.45423],[69.10864,22.4557],[69.10822,22.45585],[69.10731,22.45925],[69.10779,22.46046],[69.11056,22.46327],[69.11165,22.46424],[69.11401,22.46522],[69.11542,22.46679],[69.11663,22.46658],[69.12283,22.46806],[69.12785,22.46536],[69.12881,22.46568],[69.13065,22.46544],[69.13179,22.46649],[69.13242,22.46645],[69.13544,22.46484],[69.1385,22.46239],[69.13992,22.46376],[69.14206,22.46307],[69.14292,22.46066],[69.14157,22.4548],[69.14273,22.45195],[69.14372,22.4507],[69.14474,22.45045],[69.14379,22.45237],[69.14274,22.45723],[69.14297,22.45825],[69.14627,22.46248],[69.14702,22.46588],[69.15016,22.46831],[69.15024,22.46884],[69.14868,22.47051],[69.14787,22.47214],[69.14801,22.47328],[69.14158,22.47676],[69.13752,22.47622]]],[[[70.05155,22.54493],[70.04894,22.54773],[70.04903,22.54863],[70.04786,22.5496],[70.0482,22.55059],[70.04723,22.55115],[70.04702,22.55195],[70.04591,22.55213],[70.04392,22.55352],[70.04016,22.55284],[70.04007,22.55219],[70.04045,22.55049],[70.04015,22.54745],[70.03905,22.54447],[70.03796,22.54394],[70.03882,22.53978],[70.03787,22.53873],[70.03619,22.53885],[70.0356,22.53749],[70.03556,22.53685],[70.03509,22.53642],[70.03491,22.53559],[70.03575,22.53434],[70.03801,22.5341],[70.03915,22.53374],[70.03928,22.53171],[70.04004,22.53105],[70.04096,22.53105],[70.0411,22.5292],[70.04246,22.52965],[70.04224,22.52767],[70.04259,22.52644],[70.0437,22.52565],[70.04401,22.52577],[70.04483,22.52461],[70.04611,22.52362],[70.04822,22.52375],[70.05159,22.52724],[70.05166,22.52802],[70.05328,22.5306],[70.05406,22.53117],[70.0543,22.53192],[70.05254,22.53407],[70.05143,22.53499],[70.05006,22.53696],[70.05149,22.53705],[70.05157,22.53813],[70.05125,22.53795],[70.05079,22.53842],[70.0505,22.53834],[70.05031,22.53871],[70.04995,22.53834],[70.04902,22.5389],[70.04894,22.53936],[70.05013,22.54008],[70.05145,22.54018],[70.052,22.54075],[70.05173,22.54202],[70.05365,22.54265],[70.05396,22.54209],[70.05518,22.5413],[70.05545,22.54027],[70.05709,22.53817],[70.0572,22.53694],[70.05785,22.53742],[70.05937,22.53743],[70.05814,22.53949],[70.05732,22.54024],[70.05725,22.54165],[70.05588,22.54211],[70.05568,22.54243],[70.05588,22.54272],[70.05531,22.54408],[70.05449,22.54501],[70.05438,22.54585],[70.05362,22.54575],[70.05333,22.54396],[70.05155,22.54493]]],[[[70.25765,23.1738],[70.25646,23.17377],[70.25662,23.17062],[70.25781,23.17064],[70.25765,23.1738]]],[[[70.25254,23.17584],[70.25268,23.1774],[70.24957,23.17698],[70.24962,23.17632],[70.2496,23.17555],[70.24978,23.17528],[70.25217,23.17548],[70.25225,23.17411],[70.25261,23.17087],[70.25384,23.17109],[70.25361,23.17457],[70.25573,23.17493],[70.25566,23.17536],[70.25599,23.17538],[70.25585,23.17593],[70.2525,23.17548],[70.25254,23.17584]]],[[[68.52924,23.68865],[68.52611,23.6897],[68.52532,23.68969],[68.52566,23.68864],[68.52681,23.68818],[68.52655,23.68751],[68.52722,23.687],[68.52679,23.68339],[68.52662,23.67729],[68.52572,23.67361],[68.5249,23.6662],[68.52417,23.66192],[68.52183,23.65875],[68.5209,23.65676],[68.52147,23.65522],[68.52158,23.65394],[68.52204,23.65348],[68.52377,23.65376],[68.52493,23.65425],[68.52567,23.6549],[68.52572,23.6551],[68.5253,23.65537],[68.525,23.6553],[68.52443,23.65457],[68.52287,23.65474],[68.52268,23.65513],[68.52285,23.65598],[68.52253,23.65678],[68.52266,23.65702],[68.52318,23.6571],[68.52351,23.65642],[68.52382,23.65647],[68.52485,23.65795],[68.52426,23.65868],[68.52432,23.65904],[68.52703,23.66135],[68.52818,23.66203],[68.53075,23.66298],[68.53391,23.66208],[68.53369,23.66255],[68.53203,23.66327],[68.53202,23.66361],[68.53239,23.66405],[68.53219,23.66467],[68.53265,23.66523],[68.53491,23.66644],[68.53526,23.66706],[68.53441,23.66734],[68.53394,23.66812],[68.5335,23.66825],[68.53287,23.66784],[68.53206,23.66673],[68.53112,23.66672],[68.53103,23.66737],[68.53071,23.6675],[68.53084,23.66799],[68.53008,23.66874],[68.53025,23.66904],[68.52946,23.66906],[68.52931,23.66925],[68.52925,23.66952],[68.52995,23.67047],[68.52885,23.67121],[68.52907,23.67243],[68.52863,23.6734],[68.5287,23.674],[68.529,23.67424],[68.5299,23.67429],[68.53211,23.673],[68.5334,23.67328],[68.53465,23.67273],[68.53619,23.67335],[68.5367,23.67256],[68.53769,23.67262],[68.53788,23.67099],[68.53895,23.67053],[68.54244,23.67129],[68.54369,23.67131],[68.54445,23.67213],[68.54397,23.67257],[68.54395,23.67293],[68.54684,23.67443],[68.54743,23.67495],[68.54745,23.67541],[68.54641,23.67564],[68.54626,23.67632],[68.54531,23.67674],[68.54515,23.67731],[68.54454,23.67725],[68.54454,23.67834],[68.54342,23.67902],[68.54399,23.68023],[68.54452,23.68074],[68.54421,23.68234],[68.54109,23.68333],[68.54041,23.68388],[68.53974,23.68384],[68.53957,23.68453],[68.53926,23.68472],[68.53812,23.68443],[68.53799,23.68472],[68.53886,23.68514],[68.53887,23.68546],[68.53857,23.68564],[68.53438,23.68497],[68.53432,23.68427],[68.53391,23.68359],[68.53412,23.68279],[68.53479,23.68248],[68.53529,23.68172],[68.53511,23.68018],[68.53543,23.67827],[68.53499,23.678],[68.534,23.67836],[68.53365,23.67822],[68.53287,23.6763],[68.53204,23.67561],[68.52981,23.67569],[68.52974,23.67628],[68.53088,23.67698],[68.5311,23.67735],[68.52947,23.67847],[68.52937,23.67915],[68.53152,23.67987],[68.53246,23.68133],[68.5321,23.68216],[68.53231,23.68337],[68.53123,23.68324],[68.53063,23.68355],[68.53037,23.68664],[68.53118,23.68699],[68.53222,23.68683],[68.53402,23.68854],[68.53374,23.68886],[68.53254,23.68841],[68.53114,23.68877],[68.52924,23.68865]]],[[[71.28591,24.61683],[71.1134,24.67526],[71.09649,24.68872],[71.08543,24.67193],[71.07473,24.66192],[71.06633,24.65911],[71.06379,24.65572],[71.0492,24.64839],[71.00946,24.63542],[71.00713,24.62861],[70.99882,24.62184],[70.98626,24.59546],[70.98943,24.58483],[70.99246,24.56385],[70.98735,24.54342],[71.00303,24.53002],[71.00521,24.52302],[71.0,24.48634],[70.99604,24.47502],[70.99864,24.47247],[70.99637,24.4659],[70.99857,24.44443],[71.00425,24.44569],[71.01021,24.44425],[71.03754,24.43194],[71.0439,24.43417],[71.06756,24.43692],[71.10307,24.4357],[71.12553,24.42008],[71.12184,24.40566],[71.11824,24.40153],[71.10805,24.39671],[71.08432,24.39445],[71.08189,24.39291],[71.06668,24.37689],[71.05727,24.36148],[71.04948,24.35597],[71.04205,24.35388],[71.04213,24.35125],[71.03992,24.35327],[71.0202,24.34737],[71.00355,24.35096],[70.98654,24.36471],[70.95537,24.34861],[70.94768,24.34805],[70.92366,24.32773],[70.92477,24.32588],[70.91866,24.32292],[70.91719,24.32061],[70.87867,24.3014],[70.88263,24.29981],[70.87715,24.298],[70.87451,24.29449],[70.87575,24.28023],[70.88285,24.27282],[70.9092,24.26283],[70.90726,24.25878],[70.88449,24.25048],[70.87661,24.24575],[70.85223,24.24507],[70.83619,24.23149],[70.82654,24.22683],[70.80546,24.22085],[70.7402,24.21904],[70.7139,24.21565],[70.70054,24.21866],[70.69646,24.21743],[70.69842,24.22027],[70.66694,24.21958],[70.6435,24.22489],[70.58562,24.24736],[70.58278,24.24392],[70.58196,24.24794],[70.57123,24.25173],[70.5744,24.26415],[70.58482,24.27798],[70.58453,24.29036],[70.57944,24.29529],[70.58177,24.30447],[70.56271,24.34995],[70.56204,24.35446],[70.58045,24.36327],[70.59898,24.40596],[70.60247,24.40812],[70.57312,24.42236],[70.55777,24.4198],[70.54968,24.4144],[70.5486,24.41186],[70.54745,24.41338],[70.53476,24.40789],[70.51533,24.40406],[70.4761,24.38979],[70.4387,24.38332],[70.41168,24.37561],[70.39837,24.36712],[70.39091,24.35988],[70.37642,24.35553],[70.36846,24.35077],[70.36309,24.35065],[70.3542,24.35411],[70.34559,24.35158],[70.32559,24.35188],[70.30522,24.34683],[70.26586,24.33368],[70.25949,24.33105],[70.25469,24.32616],[70.25065,24.32442],[70.2142,24.32121],[70.19906,24.31448],[70.16591,24.30348],[70.13937,24.3029],[70.10987,24.29497],[70.06681,24.19916],[70.05105,24.1896],[70.03866,24.17646],[70.02506,24.17128],[69.73121,24.17106],[69.59445,24.2924],[69.56368,24.28149],[69.54416,24.2785],[69.5107,24.26971],[69.49401,24.26778],[69.46974,24.27112],[69.44599,24.28033],[69.40498,24.2712],[69.37628,24.26949],[69.36685,24.27014],[69.31274,24.2816],[69.19375,24.23611],[69.09475,24.27449],[69.09367,24.27133],[69.0879,24.26932],[69.08287,24.26511],[69.0339,24.23955],[69.03083,24.23539],[69.01615,24.22567],[69.00533,24.22312],[68.99363,24.22431],[68.98474,24.22761],[68.97324,24.26017],[68.96734,24.27173],[68.94528,24.30249],[68.90675,24.27979],[68.8975,24.26369],[68.8928,24.25147],[68.8899,24.23789],[68.88029,24.21657],[68.87492,24.21233],[68.86482,24.21278],[68.8574,24.21431],[68.84767,24.23925],[68.84388,24.26008],[68.84339,24.27794],[68.83071,24.31186],[68.82631,24.31736],[68.82041,24.31234],[68.80823,24.3136],[68.7647,24.29584],[68.76571,24.28771],[68.76829,24.28241],[68.76935,24.26439],[68.76564,24.20782],[68.76252,24.11431],[68.75303,23.97131],[68.39738,23.97048],[68.38966,23.96659],[68.38581,23.96951],[68.3833,23.97771],[68.3786,23.98446],[68.36893,23.98477],[68.35037,23.97601],[68.33903,23.96695],[68.3357,23.9563],[68.33832,23.9364],[68.33471,23.92713],[68.32865,23.92235],[68.31894,23.9221],[68.28918,23.93198],[68.28299,23.93173],[68.27574,23.92877],[68.27143,23.92466],[68.258,23.90302],[68.25217,23.8969],[68.23084,23.88573],[68.2231,23.88499],[68.21689,23.88249],[68.20865,23.87546],[68.19953,23.84709],[68.19808,23.83608],[68.19854,23.81324],[68.20345,23.78967],[68.20264,23.76667],[68.18464,23.73733],[68.18165,23.72163],[68.18976,23.71722],[68.19178,23.70735],[68.19682,23.70298],[68.19848,23.69461],[68.2057,23.68034],[68.20666,23.66889],[68.20475,23.66201],[68.20177,23.65867],[68.18807,23.65859],[68.18257,23.65504],[68.18725,23.65544],[68.19579,23.65224],[68.20847,23.65067],[68.19643,23.65034],[68.18632,23.64528],[68.18595,23.64122],[68.18239,23.63848],[68.17751,23.62786],[68.17766,23.61919],[68.1805,23.60704],[68.18103,23.60938],[68.18386,23.60787],[68.19512,23.58874],[68.20767,23.58616],[68.20728,23.58467],[68.20383,23.58634],[68.2016,23.58531],[68.19221,23.5867],[68.18537,23.59555],[68.18371,23.59016],[68.18459,23.58572],[68.18823,23.58181],[68.19924,23.57943],[68.20775,23.58334],[68.21526,23.58211],[68.21993,23.57972],[68.22012,23.57814],[68.22211,23.57869],[68.22155,23.57711],[68.22456,23.57728],[68.22229,23.57505],[68.22362,23.5739],[68.22971,23.57459],[68.22986,23.57668],[68.23174,23.57651],[68.22956,23.57799],[68.24631,23.57256],[68.24415,23.57058],[68.25417,23.56991],[68.25961,23.56686],[68.26632,23.56702],[68.26563,23.56352],[68.27267,23.56429],[68.27808,23.55973],[68.28187,23.56613],[68.29098,23.57137],[68.30811,23.57559],[68.33415,23.57863],[68.35087,23.58493],[68.38893,23.59562],[68.39471,23.60103],[68.39819,23.60761],[68.39771,23.61321],[68.40155,23.62613],[68.4035,23.65772],[68.40907,23.67917],[68.41272,23.70297],[68.41903,23.7179],[68.41885,23.72709],[68.42098,23.73321],[68.42772,23.73715],[68.43484,23.73898],[68.43886,23.73567],[68.44507,23.73507],[68.45516,23.74098],[68.46396,23.74224],[68.47318,23.73909],[68.47266,23.73747],[68.47563,23.73502],[68.48842,23.73162],[68.50572,23.74092],[68.50876,23.75049],[68.51153,23.74833],[68.51935,23.74765],[68.52108,23.74389],[68.5232,23.74656],[68.527,23.74582],[68.5307,23.7536],[68.55176,23.77901],[68.55537,23.78649],[68.57171,23.80706],[68.574,23.81374],[68.58083,23.82099],[68.60265,23.82952],[68.65548,23.83279],[68.65836,23.83345],[68.67186,23.84344],[68.68823,23.84645],[68.69271,23.84442],[68.70007,23.83808],[68.70831,23.83427],[68.71124,23.83017],[68.69385,23.81817],[68.68149,23.79496],[68.67909,23.79557],[68.67253,23.80404],[68.6608,23.79617],[68.65675,23.79821],[68.65179,23.79438],[68.63529,23.76102],[68.63897,23.75356],[68.64453,23.75053],[68.64196,23.74271],[68.64396,23.74136],[68.64816,23.74358],[68.64843,23.74213],[68.64577,23.74081],[68.64885,23.7389],[68.64609,23.73994],[68.6468,23.73802],[68.6421,23.73943],[68.64062,23.73864],[68.6409,23.73618],[68.63793,23.73904],[68.63834,23.74224],[68.63495,23.73876],[68.63004,23.7415],[68.62848,23.73899],[68.61848,23.73802],[68.61831,23.73459],[68.61528,23.73595],[68.61365,23.73184],[68.61368,23.72861],[68.61568,23.72587],[68.62163,23.72444],[68.62869,23.73451],[68.63116,23.73281],[68.63216,23.72782],[68.62318,23.72577],[68.62215,23.72115],[68.62093,23.72261],[68.62021,23.72036],[68.61891,23.7214],[68.61829,23.71993],[68.61494,23.72029],[68.61277,23.71795],[68.61013,23.72102],[68.60726,23.72149],[68.6055,23.71957],[68.60258,23.72362],[68.59682,23.72405],[68.59988,23.72144],[68.59521,23.71979],[68.59235,23.71369],[68.59646,23.71402],[68.60046,23.70879],[68.59566,23.70797],[68.59514,23.70591],[68.59267,23.70659],[68.58724,23.70263],[68.58459,23.70402],[68.58486,23.70677],[68.58076,23.70515],[68.58124,23.70782],[68.57962,23.70724],[68.57972,23.70893],[68.57742,23.70681],[68.57175,23.7088],[68.57203,23.71338],[68.56957,23.71514],[68.57324,23.71547],[68.57161,23.71693],[68.57372,23.71711],[68.56919,23.7177],[68.5733,23.72144],[68.56712,23.72146],[68.55719,23.71663],[68.54997,23.70101],[68.54829,23.69181],[68.55188,23.69455],[68.55228,23.69698],[68.55067,23.69794],[68.55255,23.69934],[68.55769,23.69444],[68.55713,23.68922],[68.56483,23.69],[68.56819,23.68773],[68.56796,23.68494],[68.56469,23.68399],[68.56287,23.68855],[68.56154,23.68869],[68.5626,23.68356],[68.56074,23.68272],[68.56018,23.67761],[68.55161,23.66557],[68.55262,23.66417],[68.55129,23.66218],[68.54799,23.66091],[68.54862,23.65828],[68.54071,23.65751],[68.54291,23.65324],[68.53931,23.65287],[68.53923,23.65537],[68.53832,23.65264],[68.53491,23.65022],[68.53351,23.65095],[68.53499,23.65307],[68.53275,23.65198],[68.5325,23.65332],[68.52073,23.64959],[68.51991,23.64641],[68.52046,23.64481],[68.52218,23.64495],[68.52181,23.64212],[68.52456,23.64341],[68.52716,23.64811],[68.53337,23.64924],[68.53314,23.64679],[68.52902,23.64667],[68.52966,23.64273],[68.52602,23.63929],[68.52936,23.63734],[68.52902,23.6358],[68.51694,23.63543],[68.51462,23.63831],[68.51191,23.63841],[68.51383,23.64406],[68.51064,23.63948],[68.50793,23.62198],[68.51123,23.62169],[68.51535,23.62392],[68.51571,23.6214],[68.51195,23.61918],[68.51468,23.6184],[68.51238,23.61522],[68.50957,23.61407],[68.50929,23.61623],[68.50591,23.61775],[68.50536,23.61473],[68.5073,23.61458],[68.50221,23.61284],[68.50235,23.60955],[68.51055,23.61183],[68.50888,23.6094],[68.50912,23.6113],[68.50627,23.61039],[68.50113,23.60449],[68.49646,23.60586],[68.49537,23.60365],[68.49291,23.60583],[68.49394,23.60054],[68.49755,23.60061],[68.49507,23.59918],[68.49366,23.59305],[68.49451,23.58907],[68.49763,23.59071],[68.49207,23.58602],[68.4904,23.57953],[68.4928,23.57477],[68.49481,23.5592],[68.49243,23.55387],[68.48359,23.54871],[68.48962,23.5398],[68.49062,23.53223],[68.4943,23.52677],[68.49433,23.51812],[68.5008,23.51304],[68.50073,23.51161],[68.50236,23.51259],[68.50334,23.51058],[68.50456,23.51334],[68.50252,23.50719],[68.50501,23.50284],[68.50242,23.50193],[68.50453,23.49947],[68.51294,23.50104],[68.51206,23.4994],[68.51367,23.49596],[68.51179,23.49476],[68.5174,23.49036],[68.51771,23.48642],[68.51298,23.48735],[68.51277,23.48459],[68.51818,23.47119],[68.52117,23.46856],[68.51922,23.46478],[68.52219,23.46459],[68.52139,23.46118],[68.52878,23.44991],[68.53073,23.44946],[68.5322,23.45249],[68.53038,23.45318],[68.52922,23.45707],[68.53558,23.46048],[68.53417,23.45635],[68.54075,23.45847],[68.54379,23.4655],[68.54627,23.46506],[68.54382,23.46286],[68.54602,23.46],[68.54322,23.45718],[68.54208,23.45891],[68.5393,23.45373],[68.5416,23.45202],[68.53621,23.4516],[68.532,23.44861],[68.53063,23.4452],[68.53338,23.43671],[68.53518,23.43669],[68.53519,23.4339],[68.54235,23.42503],[68.54775,23.42454],[68.54829,23.42291],[68.54331,23.42193],[68.54349,23.42021],[68.54772,23.41706],[68.55885,23.41629],[68.5628,23.41828],[68.56587,23.41721],[68.57034,23.40379],[68.57427,23.40692],[68.57657,23.40559],[68.5753,23.40262],[68.5832,23.40291],[68.58368,23.40011],[68.59032,23.39316],[68.59486,23.39158],[68.5995,23.38609],[68.60856,23.38286],[68.61089,23.38003],[68.60914,23.37909],[68.60991,23.37676],[68.60688,23.37667],[68.60959,23.372],[68.61049,23.37498],[68.61373,23.37545],[68.61751,23.37308],[68.62038,23.37401],[68.61645,23.37147],[68.61198,23.3717],[68.61194,23.36913],[68.62581,23.3649],[68.62511,23.35917],[68.62914,23.35791],[68.62584,23.35479],[68.63041,23.35447],[68.62735,23.3516],[68.63252,23.35254],[68.633,23.35094],[68.62912,23.3489],[68.63387,23.34943],[68.63686,23.34707],[68.63696,23.34358],[68.63964,23.34303],[68.639,23.34111],[68.63615,23.34099],[68.63596,23.33889],[68.64055,23.33945],[68.64213,23.33549],[68.64808,23.33701],[68.644,23.33502],[68.6437,23.33345],[68.65262,23.33555],[68.64251,23.33228],[68.64379,23.32592],[68.64003,23.32319],[68.64096,23.32159],[68.64423,23.32127],[68.64671,23.3112],[68.65234,23.30314],[68.65529,23.30347],[68.6556,23.30913],[68.65809,23.31196],[68.65553,23.31326],[68.65672,23.31657],[68.65309,23.31689],[68.65468,23.32143],[68.65178,23.32609],[68.65425,23.32742],[68.65242,23.32834],[68.65578,23.33007],[68.65574,23.33383],[68.65986,23.33417],[68.6612,23.33646],[68.66116,23.34383],[68.65888,23.34556],[68.66051,23.34745],[68.67028,23.34317],[68.66964,23.34004],[68.66515,23.33635],[68.66826,23.33149],[68.67917,23.33112],[68.68499,23.32885],[68.67925,23.31998],[68.67882,23.31562],[68.6814,23.31185],[68.69281,23.30883],[68.6984,23.31346],[68.71351,23.31796],[68.71369,23.31647],[68.70764,23.31361],[68.71297,23.30718],[68.71164,23.30432],[68.71399,23.29563],[68.70968,23.29161],[68.70263,23.29255],[68.69931,23.28419],[68.70833,23.28833],[68.71187,23.28672],[68.71222,23.28527],[68.70664,23.28047],[68.70816,23.27972],[68.71222,23.28265],[68.71262,23.28053],[68.71007,23.27598],[68.7061,23.27406],[68.70555,23.27072],[68.71462,23.26865],[68.71684,23.26509],[68.72417,23.26679],[68.72577,23.26448],[68.72425,23.26304],[68.72571,23.25913],[68.72452,23.25513],[68.7225,23.25562],[68.72386,23.25841],[68.72311,23.26105],[68.71474,23.26412],[68.71094,23.26177],[68.70987,23.25836],[68.70589,23.2542],[68.70446,23.25],[68.70523,23.2462],[68.70366,23.24205],[68.7014,23.24132],[68.702,23.24006],[68.69981,23.24063],[68.69293,23.23506],[68.68717,23.2349],[68.68385,23.23236],[68.68123,23.23296],[68.67718,23.22906],[68.67562,23.22949],[68.67415,23.23326],[68.66803,23.23158],[68.65954,23.23208],[68.65812,23.22962],[68.65628,23.23131],[68.65352,23.23115],[68.64554,23.22524],[68.64368,23.22243],[68.64512,23.22063],[68.64293,23.21802],[68.63061,23.21745],[68.62593,23.21328],[68.62201,23.21269],[68.62099,23.20573],[68.6232,23.20519],[68.62304,23.2088],[68.62814,23.21187],[68.63804,23.21119],[68.64077,23.21606],[68.64079,23.21304],[68.64495,23.21452],[68.6547,23.21159],[68.65993,23.21466],[68.66203,23.21795],[68.66917,23.2182],[68.67107,23.2112],[68.67034,23.20749],[68.67372,23.20189],[68.66971,23.19815],[68.66245,23.20085],[68.65955,23.1977],[68.6634,23.18996],[68.66768,23.1874],[68.6701,23.182],[68.67563,23.18106],[68.67671,23.17825],[68.68076,23.17902],[68.68022,23.17399],[68.6826,23.17585],[68.67881,23.16841],[68.68048,23.16776],[68.68293,23.15896],[68.6817,23.15792],[68.67795,23.16269],[68.6765,23.16212],[68.68278,23.15269],[68.68797,23.15245],[68.68972,23.15428],[68.69508,23.15542],[68.70219,23.14869],[68.70601,23.14851],[68.71225,23.15143],[68.71246,23.1475],[68.71554,23.14459],[68.71305,23.14136],[68.71965,23.13731],[68.72441,23.13649],[68.72587,23.13458],[68.72413,23.13175],[68.72796,23.13464],[68.73189,23.13418],[68.73246,23.1276],[68.73429,23.12609],[68.73323,23.11953],[68.73946,23.11556],[68.73979,23.11951],[68.74232,23.11796],[68.73993,23.11395],[68.74412,23.11318],[68.74586,23.11002],[68.7492,23.11355],[68.74987,23.11706],[68.75326,23.11749],[68.75443,23.12303],[68.76298,23.12114],[68.76503,23.12376],[68.76637,23.12259],[68.77006,23.12448],[68.76998,23.12181],[68.77499,23.12289],[68.77653,23.12033],[68.78364,23.12001],[68.78491,23.11521],[68.77319,23.11674],[68.77142,23.11637],[68.7709,23.11369],[68.76942,23.11465],[68.76884,23.11304],[68.77075,23.11144],[68.76861,23.11067],[68.76828,23.11235],[68.76678,23.1107],[68.76611,23.10758],[68.76812,23.10608],[68.7668,23.10291],[68.76449,23.10708],[68.76119,23.10113],[68.76301,23.10068],[68.76513,23.09603],[68.76172,23.09705],[68.76114,23.10007],[68.76011,23.09977],[68.76377,23.09359],[68.76189,23.09241],[68.76097,23.09362],[68.76094,23.09046],[68.77272,23.08042],[68.77234,23.07831],[68.77404,23.08055],[68.78154,23.08328],[68.7737,23.07969],[68.77311,23.07756],[68.77708,23.07888],[68.77848,23.07755],[68.77003,23.07734],[68.7705,23.07893],[68.76848,23.07793],[68.76514,23.07902],[68.76945,23.07987],[68.76312,23.08058],[68.76436,23.08118],[68.76374,23.08433],[68.76122,23.08464],[68.76093,23.08614],[68.76373,23.08741],[68.75862,23.0891],[68.756,23.08466],[68.76007,23.08616],[68.75716,23.08361],[68.75169,23.08866],[68.74986,23.08801],[68.75859,23.08035],[68.78373,23.07349],[68.8118,23.05878],[68.81195,23.06098],[68.80964,23.06059],[68.80324,23.06487],[68.80527,23.06524],[68.80768,23.06277],[68.80907,23.06449],[68.80879,23.062],[68.81174,23.0614],[68.81257,23.06815],[68.80972,23.0743],[68.81515,23.07703],[68.81612,23.06253],[68.81764,23.0627],[68.82075,23.06822],[68.81793,23.0619],[68.81893,23.05987],[68.82157,23.06133],[68.82206,23.0565],[68.82402,23.05547],[68.82337,23.05698],[68.82565,23.05593],[68.82718,23.05782],[68.82458,23.0624],[68.82943,23.05718],[68.83194,23.05813],[68.83103,23.05636],[68.83505,23.05058],[68.83665,23.05319],[68.83442,23.05278],[68.8342,23.05661],[68.83764,23.05517],[68.8387,23.0585],[68.83959,23.05741],[68.84179,23.05858],[68.83712,23.0521],[68.83908,23.05026],[68.84351,23.05382],[68.84321,23.05011],[68.84702,23.04844],[68.84546,23.04699],[68.83906,23.04732],[68.84097,23.04887],[68.83594,23.0507],[68.83672,23.04637],[68.84207,23.04666],[68.84188,23.04442],[68.84011,23.04429],[68.85263,23.03946],[68.85423,23.03739],[68.85592,23.03843],[68.85719,23.03716],[68.85577,23.0353],[68.86079,23.03431],[68.86246,23.03181],[68.86923,23.03435],[68.86848,23.0323],[68.87169,23.03299],[68.87189,23.03165],[68.87084,23.03203],[68.87102,23.02924],[68.86934,23.02747],[68.8689,23.02943],[68.86453,23.03023],[68.8676,23.03034],[68.86743,23.03151],[68.86217,23.03145],[68.85206,23.03692],[68.85017,23.03937],[68.84853,23.03875],[68.83242,23.04743],[68.82002,23.05648],[68.81296,23.05793],[68.86843,23.02723],[68.87458,23.02114],[68.91783,22.99616],[68.91781,22.9941],[68.92197,22.99525],[68.92548,22.99356],[68.93117,22.98716],[68.94056,22.98037],[68.94968,22.97751],[68.95494,22.97297],[68.97231,22.96345],[68.9808,22.96082],[69.00574,22.94696],[69.01983,22.94211],[69.02678,22.93722],[69.04377,22.92994],[69.09989,22.89611],[69.13124,22.87229],[69.15008,22.86621],[69.17493,22.85143],[69.17725,22.85188],[69.16685,22.85895],[69.17206,22.86034],[69.17392,22.85947],[69.17479,22.85609],[69.1778,22.85569],[69.18118,22.85777],[69.1842,22.85354],[69.18603,22.85455],[69.18671,22.852],[69.18863,22.8531],[69.19418,22.85186],[69.19324,22.84996],[69.19441,22.84873],[69.1924,22.84822],[69.19188,22.84625],[69.19627,22.84546],[69.19379,22.84379],[69.19583,22.83803],[69.19886,22.83783],[69.20323,22.84166],[69.20416,22.84095],[69.20128,22.83747],[69.22182,22.83612],[69.22756,22.83733],[69.2345,22.83351],[69.24773,22.82973],[69.25401,22.82985],[69.26791,22.8252],[69.28582,22.82755],[69.30169,22.8334],[69.31397,22.83327],[69.33545,22.82797],[69.34776,22.82075],[69.35804,22.82169],[69.37988,22.81674],[69.38122,22.81877],[69.38105,22.81703],[69.38449,22.81733],[69.38145,22.81582],[69.39745,22.81111],[69.40965,22.80402],[69.44369,22.78009],[69.44487,22.78084],[69.43444,22.78804],[69.43811,22.78708],[69.44637,22.78082],[69.44531,22.77977],[69.45878,22.77802],[69.47176,22.77375],[69.47779,22.77455],[69.48012,22.77683],[69.49109,22.77755],[69.49457,22.78],[69.47881,22.77666],[69.46998,22.77645],[69.46923,22.77882],[69.45971,22.78281],[69.46031,22.78417],[69.4579,22.78669],[69.45087,22.78674],[69.44081,22.79421],[69.4395,22.79703],[69.43822,22.7957],[69.43683,22.79905],[69.43576,22.79786],[69.43367,22.799],[69.43576,22.79999],[69.43084,22.80128],[69.43211,22.80318],[69.41863,22.80813],[69.41683,22.81066],[69.41836,22.8128],[69.42175,22.80905],[69.42453,22.81309],[69.42686,22.80963],[69.4287,22.81041],[69.43462,22.80821],[69.43872,22.81066],[69.44427,22.8109],[69.44799,22.80821],[69.44893,22.81181],[69.45202,22.80832],[69.45463,22.81316],[69.45734,22.81428],[69.45765,22.80862],[69.45864,22.81103],[69.46352,22.80396],[69.46788,22.8033],[69.46836,22.80184],[69.46587,22.80071],[69.46792,22.79834],[69.47734,22.79552],[69.48322,22.79905],[69.48285,22.80569],[69.48744,22.79981],[69.49291,22.79954],[69.49428,22.79691],[69.50211,22.79982],[69.50467,22.79896],[69.5035,22.80316],[69.50534,22.8089],[69.50868,22.80541],[69.51161,22.80516],[69.5114,22.80724],[69.51314,22.80687],[69.51358,22.80499],[69.51637,22.80497],[69.51852,22.80287],[69.52349,22.80257],[69.5242,22.80397],[69.52702,22.80185],[69.52716,22.80351],[69.53082,22.79988],[69.53216,22.80044],[69.53052,22.80219],[69.53337,22.80183],[69.53042,22.80565],[69.53284,22.80601],[69.53439,22.80858],[69.53701,22.80406],[69.54003,22.80485],[69.54104,22.80726],[69.54346,22.80598],[69.54664,22.80681],[69.54617,22.8089],[69.54824,22.80723],[69.55687,22.80732],[69.55727,22.81071],[69.56028,22.81114],[69.56117,22.8096],[69.56406,22.81122],[69.5635,22.81235],[69.56499,22.81178],[69.56486,22.81356],[69.56727,22.81203],[69.56937,22.81587],[69.57101,22.80963],[69.57596,22.81039],[69.57798,22.81293],[69.57577,22.81772],[69.57823,22.81539],[69.58175,22.81674],[69.58122,22.81397],[69.58404,22.81238],[69.58775,22.81549],[69.58854,22.8117],[69.59163,22.81438],[69.59348,22.81178],[69.59743,22.81013],[69.59885,22.81194],[69.60049,22.80533],[69.60591,22.80295],[69.60854,22.80604],[69.61189,22.80571],[69.61326,22.80868],[69.61828,22.81225],[69.62302,22.81117],[69.62523,22.80851],[69.62781,22.81028],[69.63119,22.80887],[69.63428,22.81176],[69.63691,22.80827],[69.63642,22.80559],[69.64023,22.80444],[69.64594,22.81],[69.64791,22.80594],[69.64633,22.80585],[69.64594,22.80354],[69.64742,22.79619],[69.6524,22.79581],[69.65466,22.79731],[69.6564,22.79614],[69.66454,22.79901],[69.66612,22.79746],[69.66691,22.79925],[69.67165,22.8004],[69.68355,22.8003],[69.68713,22.80252],[69.68952,22.80675],[69.69151,22.80382],[69.70604,22.80465],[69.70799,22.80586],[69.7056,22.80919],[69.70926,22.80768],[69.70903,22.80977],[69.71079,22.80863],[69.71212,22.81082],[69.7117,22.80792],[69.71316,22.806],[69.71689,22.8097],[69.7199,22.80889],[69.72005,22.81112],[69.72214,22.80989],[69.72488,22.81535],[69.73198,22.81645],[69.73027,22.82098],[69.73099,22.81875],[69.73434,22.81688],[69.74162,22.82027],[69.74557,22.82063],[69.74853,22.81865],[69.77527,22.83025],[69.78164,22.83461],[69.78366,22.83924],[69.78983,22.84227],[69.79486,22.84841],[69.80388,22.85179],[69.81235,22.84997],[69.82788,22.85798],[69.83528,22.85949],[69.83169,22.86024],[69.83748,22.86017],[69.83676,22.86127],[69.83925,22.86284],[69.85627,22.86872],[69.87881,22.87109],[69.87993,22.87187],[69.87777,22.87261],[69.87765,22.87416],[69.8878,22.8711],[69.88717,22.87553],[69.89065,22.87553],[69.89107,22.87289],[69.89348,22.873],[69.89443,22.87083],[69.89636,22.87063],[69.89781,22.87322],[69.89874,22.87126],[69.90153,22.87281],[69.89971,22.87358],[69.91026,22.87856],[69.91367,22.88293],[69.91194,22.88651],[69.91522,22.88527],[69.91505,22.88766],[69.91615,22.88582],[69.91816,22.88601],[69.91717,22.88731],[69.91972,22.88687],[69.9193,22.89007],[69.92363,22.88974],[69.93047,22.89406],[69.92705,22.89603],[69.93227,22.89475],[69.93346,22.89585],[69.93215,22.89701],[69.93612,22.89679],[69.93704,22.89835],[69.9587,22.89862],[69.96224,22.89359],[69.95903,22.89928],[69.96571,22.89884],[69.98212,22.90285],[69.98476,22.91458],[69.99594,22.914],[70.01214,22.91825],[70.01675,22.92024],[70.02197,22.92544],[70.0273,22.92696],[70.02713,22.92872],[70.02421,22.92905],[70.02721,22.93204],[70.02625,22.9397],[70.0292,22.94285],[70.02976,22.94642],[70.03185,22.94584],[70.03655,22.95269],[70.04602,22.95123],[70.04957,22.95452],[70.05273,22.9546],[70.05841,22.95793],[70.05952,22.96362],[70.08372,22.96801],[70.08504,22.96899],[70.08386,22.97341],[70.08053,22.97571],[70.09287,22.97433],[70.10384,22.98001],[70.11879,22.99201],[70.11822,22.99683],[70.12209,22.99659],[70.12525,23.00483],[70.13297,23.01102],[70.13499,23.02138],[70.13843,23.02123],[70.13902,23.02644],[70.14184,23.02695],[70.14722,23.03268],[70.15012,23.03124],[70.15046,23.03361],[70.14821,23.03482],[70.15814,23.0323],[70.14796,23.02042],[70.14221,23.00893],[70.13379,23.00157],[70.12896,22.99045],[70.12974,22.98817],[70.13364,22.98577],[70.13341,22.98111],[70.12118,22.96895],[70.11996,22.96539],[70.12112,22.96263],[70.12551,22.95975],[70.13355,22.95875],[70.16439,22.93828],[70.18038,22.93755],[70.20742,22.94373],[70.22641,22.95182],[70.23074,22.95516],[70.22862,22.95999],[70.23025,22.97266],[70.22552,22.98658],[70.22396,23.00557],[70.22082,23.01344],[70.22214,23.01538],[70.22018,23.01522],[70.22228,23.03545],[70.21961,23.04124],[70.21799,23.05257],[70.21922,23.06081],[70.21783,23.06427],[70.21364,23.06323],[70.21647,23.06591],[70.21082,23.07463],[70.18862,23.07281],[70.18614,23.06834],[70.16995,23.05741],[70.17152,23.05092],[70.1696,23.04284],[70.16259,23.04061],[70.15987,23.03502],[70.14929,23.037],[70.15084,23.03957],[70.15326,23.03821],[70.15671,23.04532],[70.16473,23.05384],[70.16816,23.06324],[70.1657,23.06473],[70.16494,23.06741],[70.16777,23.06439],[70.17554,23.0702],[70.17714,23.06927],[70.17953,23.07092],[70.18169,23.07519],[70.18032,23.07543],[70.18063,23.07687],[70.18363,23.07968],[70.17388,23.0774],[70.18766,23.09502],[70.19207,23.10346],[70.20156,23.11431],[70.2073,23.12562],[70.20839,23.13592],[70.21281,23.13985],[70.20877,23.16035],[70.21831,23.16626],[70.23854,23.16488],[70.23968,23.16698],[70.23619,23.16815],[70.23619,23.1703],[70.2462,23.17635],[70.24511,23.17311],[70.24976,23.17278],[70.24646,23.17647],[70.24968,23.17789],[70.26757,23.17846],[70.26876,23.18247],[70.2837,23.19825],[70.29153,23.1991],[70.29331,23.2111],[70.29665,23.21374],[70.29567,23.21896],[70.30193,23.22369],[70.30825,23.22251],[70.31178,23.21942],[70.31899,23.21975],[70.32386,23.21812],[70.32281,23.22172],[70.32767,23.22627],[70.33278,23.22273],[70.33776,23.22262],[70.34162,23.21986],[70.34563,23.22098],[70.36636,23.21986],[70.36399,23.22245],[70.36551,23.22498],[70.3694,23.22492],[70.36989,23.22751],[70.37801,23.23164],[70.38567,23.23339],[70.3887,23.23086],[70.39515,23.23097],[70.40301,23.2354],[70.42476,23.23725],[70.43631,23.23338],[70.43223,23.2299],[70.43168,23.22273],[70.42803,23.21755],[70.45147,23.20447],[70.46101,23.2039],[70.47571,23.19968],[70.48879,23.19143],[70.49164,23.18609],[70.49966,23.18129],[70.50124,23.17812],[70.51156,23.17736],[70.5237,23.17938],[70.53527,23.17934],[70.57896,23.17771],[70.61791,23.18183],[70.63831,23.18662],[70.64902,23.19204],[70.64438,23.20117],[70.6457,23.20232],[70.64464,23.20822],[70.65207,23.21691],[70.6508,23.2239],[70.6562,23.22131],[70.66223,23.22234],[70.66526,23.2241],[70.66532,23.22711],[70.6678,23.22315],[70.66724,23.21957],[70.67548,23.22209],[70.67817,23.21986],[70.67715,23.21843],[70.68156,23.21779],[70.68198,23.21585],[70.68047,23.21449],[70.68775,23.21546],[70.68496,23.21367],[70.68769,23.21254],[70.68311,23.21231],[70.68691,23.20932],[70.6922,23.2094],[70.69392,23.21191],[70.69855,23.21172],[70.7005,23.21442],[70.71185,23.21565],[70.71317,23.20995],[70.71587,23.21269],[70.7192,23.21236],[70.72461,23.20581],[70.728,23.20586],[70.73089,23.20784],[70.72423,23.21421],[70.72391,23.21766],[70.73246,23.21939],[70.73152,23.22084],[70.73292,23.22236],[70.73314,23.22078],[70.73705,23.22274],[70.74452,23.22088],[70.74963,23.23507],[70.76768,23.2461],[70.77677,23.24959],[70.78281,23.24951],[70.80166,23.23468],[70.81225,23.23007],[70.82321,23.23476],[70.8331,23.24989],[70.87068,23.22981],[70.89313,23.2247],[70.8602,23.20847],[70.86094,23.20584],[70.87329,23.20399],[70.87115,23.20022],[70.86133,23.19779],[70.86031,23.19516],[70.86292,23.19236],[70.87422,23.19175],[70.87858,23.19005],[70.88537,23.18377],[70.89057,23.18267],[70.89584,23.18383],[70.90882,23.19357],[70.9189,23.19838],[70.95188,23.19713],[70.95923,23.19482],[70.91942,23.17936],[70.90157,23.17076],[70.8653,23.17147],[70.84864,23.16931],[70.84741,23.16873],[70.84787,23.1625],[70.84397,23.1601],[70.84754,23.15814],[70.84478,23.1547],[70.8466,23.1524],[70.83645,23.15408],[70.83485,23.15523],[70.83631,23.15778],[70.83539,23.15889],[70.8308,23.15911],[70.82756,23.15742],[70.82509,23.15259],[70.82764,23.14892],[70.833,23.14577],[70.8404,23.14512],[70.84807,23.142],[70.85639,23.13433],[70.85822,23.12971],[70.85703,23.12536],[70.84852,23.1201],[70.84777,23.11696],[70.84226,23.11724],[70.84243,23.10912],[70.84083,23.10889],[70.83801,23.11326],[70.83576,23.11187],[70.83537,23.10372],[70.83844,23.09198],[70.83676,23.09174],[70.83167,23.09635],[70.83367,23.08835],[70.82856,23.07991],[70.82588,23.08118],[70.8252,23.09214],[70.8219,23.09478],[70.82365,23.09842],[70.8295,23.10021],[70.82975,23.10537],[70.82315,23.11037],[70.82777,23.11193],[70.82698,23.11414],[70.82935,23.11512],[70.82801,23.1165],[70.82956,23.11865],[70.82863,23.1217],[70.83359,23.12171],[70.82966,23.12599],[70.83394,23.12646],[70.83448,23.12841],[70.82717,23.13392],[70.82187,23.13269],[70.81531,23.13685],[70.81575,23.1383],[70.8205,23.13942],[70.82021,23.14139],[70.81713,23.14166],[70.81667,23.14819],[70.813,23.14801],[70.8173,23.15416],[70.81503,23.15504],[70.81857,23.1586],[70.81607,23.16457],[70.81228,23.1605],[70.80936,23.16459],[70.80768,23.16095],[70.80284,23.15906],[70.79625,23.15929],[70.79544,23.15345],[70.78718,23.15069],[70.78523,23.15211],[70.78509,23.15514],[70.79358,23.16105],[70.79183,23.1651],[70.78832,23.16637],[70.78414,23.1591],[70.78144,23.15842],[70.77601,23.16266],[70.7725,23.16307],[70.77458,23.16678],[70.77386,23.16804],[70.76762,23.16703],[70.764,23.16574],[70.76563,23.16436],[70.75996,23.16045],[70.76587,23.15351],[70.76544,23.14538],[70.76096,23.14461],[70.75664,23.14169],[70.74837,23.1462],[70.69367,23.12014],[70.66309,23.09728],[70.65826,23.09567],[70.63855,23.08117],[70.63139,23.06939],[70.62933,23.06247],[70.62215,23.06029],[70.60969,23.06359],[70.59712,23.06094],[70.59373,23.05498],[70.60026,23.0423],[70.60216,23.03425],[70.58753,23.03057],[70.57938,23.03518],[70.57221,23.03714],[70.5617,23.029],[70.54722,22.99687],[70.54166,22.95958],[70.53785,22.96475],[70.52725,22.96348],[70.52314,22.96467],[70.5124,22.96014],[70.49066,22.96686],[70.47921,22.97486],[70.4752,22.97471],[70.46259,22.966],[70.44561,22.9665],[70.43984,22.96835],[70.43266,22.96706],[70.43925,22.96402],[70.45781,22.949],[70.46874,22.94438],[70.4803,22.9371],[70.49231,22.93417],[70.50885,22.93711],[70.51386,22.93651],[70.51945,22.93501],[70.52028,22.93215],[70.52581,22.93173],[70.53965,22.9255],[70.53515,22.91206],[70.53186,22.90771],[70.53049,22.90824],[70.53013,22.91234],[70.52233,22.91476],[70.51309,22.90581],[70.49999,22.89811],[70.49109,22.88989],[70.49436,22.88006],[70.4855,22.88155],[70.48187,22.8713],[70.47717,22.86723],[70.47966,22.86185],[70.47261,22.85163],[70.46232,22.83131],[70.4393,22.82748],[70.4334,22.81879],[70.41331,22.81839],[70.39621,22.80261],[70.36112,22.78256],[70.32328,22.74891],[70.31592,22.7443],[70.31512,22.74605],[70.31022,22.74329],[70.29307,22.72813],[70.27869,22.72527],[70.28039,22.71866],[70.27492,22.71525],[70.26813,22.70525],[70.26802,22.68725],[70.26865,22.68306],[70.27345,22.67894],[70.273,22.67209],[70.264,22.6699],[70.2666,22.66307],[70.26383,22.6585],[70.26351,22.65346],[70.25545,22.64947],[70.24765,22.64029],[70.23695,22.63226],[70.23346,22.63146],[70.23295,22.6328],[70.22892,22.62567],[70.22478,22.62422],[70.21951,22.61419],[70.21597,22.61402],[70.21093,22.61104],[70.20906,22.607],[70.21076,22.60601],[70.21104,22.59863],[70.20801,22.59834],[70.20554,22.59408],[70.20457,22.59638],[70.19928,22.59705],[70.19861,22.58777],[70.20409,22.582],[70.19457,22.58275],[70.17918,22.56752],[70.17605,22.54438],[70.1789,22.54207],[70.18508,22.54306],[70.1834,22.5241],[70.18473,22.52217],[70.17288,22.52566],[70.17198,22.52931],[70.16348,22.52663],[70.14917,22.51197],[70.13276,22.51718],[70.12415,22.51262],[70.11887,22.50583],[70.12085,22.49303],[70.12021,22.48635],[70.11811,22.48703],[70.11767,22.49891],[70.11629,22.50104],[70.10826,22.49757],[70.08583,22.49406],[70.08574,22.49871],[70.08261,22.49785],[70.08126,22.49953],[70.08468,22.50053],[70.08612,22.50394],[70.09024,22.50568],[70.09122,22.50816],[70.08651,22.50947],[70.08665,22.51184],[70.08119,22.51455],[70.07673,22.51536],[70.07318,22.51388],[70.07312,22.51783],[70.05705,22.50667],[70.04757,22.50493],[70.03131,22.50841],[70.02887,22.5047],[70.02769,22.50789],[70.0207,22.50715],[70.01724,22.50586],[70.01544,22.50177],[70.0103,22.49992],[69.99944,22.50886],[69.9911,22.51056],[69.98985,22.5085],[69.98766,22.51047],[69.98561,22.50826],[69.98929,22.50547],[69.98464,22.50479],[69.98475,22.50235],[69.98158,22.49975],[69.98299,22.49711],[69.97936,22.49547],[69.97871,22.49146],[69.98157,22.48998],[69.98025,22.48788],[69.98382,22.48483],[69.98222,22.48028],[69.98668,22.47721],[69.97982,22.47379],[69.97926,22.46817],[69.97498,22.46934],[69.97055,22.46817],[69.96425,22.47769],[69.96172,22.4783],[69.95674,22.47834],[69.95755,22.47502],[69.95051,22.47235],[69.93985,22.48279],[69.93646,22.47889],[69.93504,22.4713],[69.93741,22.46327],[69.92568,22.46448],[69.92055,22.46092],[69.91867,22.46392],[69.91493,22.46546],[69.9132,22.4644],[69.91427,22.45987],[69.9191,22.45646],[69.91328,22.45542],[69.91366,22.45178],[69.90666,22.44846],[69.90754,22.45132],[69.90426,22.45034],[69.90337,22.45405],[69.90236,22.45166],[69.89989,22.45496],[69.90041,22.45644],[69.89681,22.45622],[69.89564,22.45666],[69.89688,22.45756],[69.89459,22.4579],[69.8878,22.45464],[69.8777,22.44431],[69.87558,22.43898],[69.87653,22.43595],[69.87438,22.43402],[69.87365,22.42967],[69.87064,22.42732],[69.87237,22.42364],[69.871,22.42297],[69.86716,22.42736],[69.86714,22.43315],[69.86529,22.43316],[69.86363,22.43565],[69.85686,22.43709],[69.85256,22.43998],[69.83282,22.44707],[69.8327,22.44197],[69.8263,22.42568],[69.82207,22.42143],[69.82257,22.41761],[69.81988,22.4171],[69.81598,22.41271],[69.81383,22.40911],[69.81483,22.4058],[69.80936,22.40148],[69.8139,22.39883],[69.81371,22.39532],[69.80984,22.39446],[69.81089,22.38992],[69.80868,22.38747],[69.80929,22.38617],[69.8036,22.38276],[69.80058,22.38283],[69.79549,22.37928],[69.79653,22.37774],[69.79185,22.38017],[69.79124,22.38357],[69.79555,22.38926],[69.79758,22.40458],[69.79727,22.40596],[69.79321,22.4073],[69.78972,22.41377],[69.78581,22.41316],[69.78091,22.41672],[69.77931,22.41639],[69.7739,22.42394],[69.7645,22.43168],[69.75908,22.4433],[69.75619,22.43894],[69.75472,22.43016],[69.74604,22.42805],[69.73962,22.43217],[69.74514,22.4316],[69.74766,22.43313],[69.743,22.44191],[69.7409,22.44132],[69.74013,22.44312],[69.73723,22.44345],[69.73283,22.44283],[69.73479,22.44451],[69.74023,22.44456],[69.74163,22.44639],[69.73478,22.44922],[69.74191,22.44867],[69.74354,22.45118],[69.74045,22.45325],[69.74366,22.45262],[69.74367,22.45894],[69.74076,22.46174],[69.74024,22.46527],[69.73446,22.47021],[69.7363,22.47694],[69.73301,22.48238],[69.73663,22.48448],[69.73069,22.48455],[69.71815,22.47594],[69.71327,22.47505],[69.71231,22.47102],[69.70049,22.46087],[69.69615,22.45253],[69.69462,22.44269],[69.69896,22.43621],[69.7054,22.43372],[69.70019,22.42341],[69.69912,22.41452],[69.69559,22.4129],[69.70063,22.41151],[69.70173,22.40683],[69.69974,22.40003],[69.70216,22.39869],[69.70055,22.39625],[69.69423,22.39503],[69.67788,22.39727],[69.67349,22.39433],[69.66974,22.3972],[69.66983,22.39492],[69.66688,22.39311],[69.66091,22.39624],[69.66324,22.3933],[69.66354,22.38832],[69.66137,22.38769],[69.65925,22.37945],[69.65594,22.37559],[69.65569,22.37049],[69.65779,22.36622],[69.65537,22.35957],[69.64921,22.35722],[69.63545,22.35818],[69.62316,22.36487],[69.62113,22.37183],[69.62122,22.36761],[69.61681,22.36851],[69.61522,22.36466],[69.61893,22.35785],[69.61644,22.35318],[69.61838,22.35136],[69.61598,22.34764],[69.61735,22.34542],[69.61361,22.34493],[69.61312,22.34954],[69.6094,22.35255],[69.60725,22.34683],[69.60346,22.34574],[69.60028,22.34739],[69.59766,22.34616],[69.5914,22.35966],[69.58881,22.36199],[69.58564,22.35984],[69.58296,22.36114],[69.57958,22.36736],[69.57437,22.36748],[69.56975,22.36331],[69.56934,22.3593],[69.56706,22.35656],[69.56459,22.35522],[69.56132,22.35584],[69.56231,22.3602],[69.5601,22.36368],[69.56025,22.36716],[69.55952,22.36621],[69.55749,22.36876],[69.54789,22.37254],[69.54345,22.37697],[69.54044,22.37721],[69.53761,22.37595],[69.53732,22.37274],[69.53478,22.37088],[69.53302,22.37218],[69.52799,22.37198],[69.52325,22.36979],[69.51587,22.37306],[69.49948,22.36633],[69.49026,22.3527],[69.48891,22.34656],[69.49028,22.33744],[69.4829,22.33391],[69.47819,22.33428],[69.47126,22.33232],[69.47012,22.33043],[69.46518,22.32856],[69.46068,22.32854],[69.45585,22.33218],[69.4434,22.33031],[69.44262,22.32858],[69.4408,22.32888],[69.43593,22.32174],[69.43356,22.32023],[69.43101,22.32089],[69.42319,22.31601],[69.39203,22.31595],[69.38116,22.31879],[69.37898,22.32099],[69.37607,22.31918],[69.36343,22.31714],[69.35673,22.31963],[69.3528,22.32389],[69.35403,22.3258],[69.35175,22.32685],[69.34178,22.32496],[69.33703,22.32803],[69.33273,22.32783],[69.33128,22.32548],[69.33239,22.32204],[69.33594,22.32264],[69.34007,22.31303],[69.33605,22.30507],[69.33055,22.30212],[69.33146,22.30131],[69.32787,22.30354],[69.32424,22.30284],[69.32553,22.30013],[69.32243,22.29256],[69.31691,22.28953],[69.31438,22.28982],[69.31248,22.28705],[69.29823,22.28784],[69.29542,22.2841],[69.2928,22.28679],[69.29563,22.28108],[69.29381,22.27709],[69.27986,22.26989],[69.28015,22.25932],[69.28383,22.25458],[69.27995,22.25935],[69.27951,22.26994],[69.25282,22.26644],[69.25,22.26458],[69.24981,22.26116],[69.24486,22.25905],[69.24462,22.25629],[69.24297,22.25854],[69.24052,22.25837],[69.2395,22.25678],[69.24074,22.25533],[69.236,22.25034],[69.2336,22.24992],[69.23509,22.24086],[69.23363,22.23511],[69.23431,22.23132],[69.2366,22.22966],[69.23759,22.22271],[69.22184,22.21646],[69.22031,22.21463],[69.22226,22.21195],[69.21282,22.21035],[69.2115,22.21946],[69.19519,22.22533],[69.19434,22.23398],[69.1903,22.24364],[69.18464,22.2402],[69.19007,22.23485],[69.18169,22.2325],[69.17915,22.22814],[69.18046,22.22372],[69.17853,22.21284],[69.17656,22.21498],[69.16911,22.21524],[69.16756,22.21245],[69.16922,22.20824],[69.16716,22.20399],[69.16122,22.20231],[69.15697,22.19547],[69.14816,22.19502],[69.1364,22.19555],[69.13467,22.20222],[69.13943,22.21098],[69.13379,22.22264],[69.13951,22.22543],[69.14836,22.23638],[69.15394,22.24873],[69.15031,22.25125],[69.14848,22.25756],[69.15592,22.26279],[69.15573,22.26711],[69.15406,22.26695],[69.15458,22.26946],[69.15736,22.2724],[69.16073,22.28425],[69.15844,22.28657],[69.16045,22.29591],[69.15756,22.29862],[69.15722,22.3026],[69.16007,22.30164],[69.16064,22.30656],[69.1568,22.31599],[69.16497,22.32334],[69.16926,22.33349],[69.16789,22.33877],[69.16943,22.34255],[69.16689,22.34464],[69.16409,22.34353],[69.16478,22.34658],[69.16336,22.34861],[69.17,22.35037],[69.17252,22.34958],[69.17286,22.34759],[69.17539,22.34788],[69.17329,22.35145],[69.1774,22.35615],[69.1718,22.35519],[69.17093,22.35269],[69.16907,22.35416],[69.17039,22.35471],[69.17121,22.35985],[69.17364,22.36046],[69.17262,22.36301],[69.1761,22.36514],[69.17704,22.36743],[69.17536,22.36775],[69.17885,22.36909],[69.18025,22.36778],[69.18093,22.37066],[69.179,22.37213],[69.17693,22.36966],[69.17373,22.37078],[69.17246,22.36893],[69.16948,22.36868],[69.17065,22.37186],[69.16797,22.37066],[69.16787,22.37325],[69.17222,22.37322],[69.17273,22.37503],[69.17423,22.37454],[69.17332,22.37725],[69.18156,22.37938],[69.18436,22.3844],[69.18504,22.38334],[69.19016,22.38672],[69.18855,22.38744],[69.18972,22.38868],[69.19276,22.38666],[69.19753,22.38783],[69.19683,22.39098],[69.1998,22.39072],[69.19707,22.39462],[69.20092,22.40136],[69.19694,22.40185],[69.19784,22.40058],[69.19529,22.39958],[69.19568,22.40093],[69.19266,22.4011],[69.19681,22.40318],[69.19184,22.403],[69.19042,22.40036],[69.18768,22.40252],[69.18904,22.40641],[69.19046,22.40689],[69.19129,22.40507],[69.18988,22.40862],[69.19177,22.41004],[69.19663,22.40372],[69.191,22.41396],[69.19188,22.41115],[69.18978,22.41046],[69.18742,22.41329],[69.18952,22.41599],[69.19133,22.4156],[69.19483,22.42185],[69.18251,22.42083],[69.17583,22.42296],[69.17334,22.42069],[69.17605,22.42259],[69.18247,22.41961],[69.17996,22.41822],[69.17755,22.41349],[69.17548,22.41561],[69.17483,22.41398],[69.17236,22.41367],[69.17119,22.40942],[69.16796,22.41077],[69.16885,22.40748],[69.16439,22.4064],[69.16336,22.40419],[69.1569,22.4056],[69.1571,22.40805],[69.16032,22.4109],[69.15629,22.40867],[69.16305,22.41196],[69.16037,22.41212],[69.15625,22.41038],[69.15111,22.40471],[69.15146,22.39976],[69.14917,22.40029],[69.14733,22.39778],[69.14505,22.39781],[69.14376,22.39917],[69.14652,22.40001],[69.14543,22.40126],[69.14201,22.40048],[69.14296,22.39845],[69.14159,22.39806],[69.1385,22.4016],[69.13607,22.39832],[69.13317,22.39746],[69.13306,22.39543],[69.1303,22.39509],[69.13234,22.39294],[69.13015,22.39234],[69.12912,22.39006],[69.13088,22.3886],[69.1294,22.38835],[69.12985,22.38532],[69.12761,22.38362],[69.12738,22.37874],[69.12117,22.37564],[69.12827,22.38662],[69.12798,22.39511],[69.11138,22.40649],[69.11049,22.40994],[69.09959,22.40824],[69.09831,22.40391],[69.10215,22.40238],[69.10337,22.39893],[69.09745,22.39348],[69.094,22.39445],[69.08793,22.3923],[69.086,22.39338],[69.08401,22.38925],[69.08185,22.3882],[69.07815,22.38791],[69.07777,22.38925],[69.07079,22.38793],[69.07009,22.3853],[69.06924,22.38774],[69.06496,22.38934],[69.06083,22.38333],[69.06197,22.38755],[69.05762,22.38744],[69.06272,22.39092],[69.0559,22.39311],[69.05489,22.3918],[69.05648,22.39082],[69.05332,22.38861],[69.0527,22.39069],[69.05512,22.394],[69.05383,22.39688],[69.05119,22.39612],[69.04901,22.39789],[69.04668,22.3945],[69.04555,22.39539],[69.04505,22.39239],[69.04335,22.39336],[69.04353,22.39061],[69.04235,22.39356],[69.04059,22.39218],[69.03968,22.39387],[69.04003,22.38856],[69.03955,22.39119],[69.03787,22.38983],[69.03836,22.3923],[69.03549,22.39027],[69.03397,22.39397],[69.03935,22.39973],[69.03744,22.4026],[69.03974,22.40399],[69.03914,22.40905],[69.04163,22.41096],[69.03998,22.41092],[69.04062,22.41371],[69.04682,22.4232],[69.04437,22.4267],[69.04458,22.43033],[69.04121,22.43209],[69.04358,22.43697],[69.03807,22.44272],[69.03947,22.44571],[69.0469,22.44798],[69.05166,22.44581],[69.05029,22.44326],[69.04575,22.44336],[69.04647,22.44014],[69.04971,22.43776],[69.06598,22.45303],[69.07124,22.45263],[69.07409,22.45411],[69.07641,22.46548],[69.08362,22.47459],[69.07878,22.47967],[69.06928,22.47844],[69.06812,22.48138],[69.06152,22.47178],[69.05513,22.46644],[69.02926,22.45374],[69.00725,22.4404],[68.99207,22.41902],[68.98448,22.41344],[68.97841,22.40414],[68.98065,22.40231],[68.98954,22.40458],[68.99562,22.40483],[68.99693,22.40362],[68.99666,22.40497],[68.99951,22.40648],[69.0,22.4041],[68.99637,22.4016],[68.99208,22.4027],[68.98177,22.4016],[68.97713,22.40355],[68.96814,22.38896],[68.96516,22.37819],[68.95738,22.36827],[68.95819,22.35155],[68.95449,22.34589],[68.95569,22.33765],[68.94996,22.33182],[68.94232,22.33214],[68.93576,22.31183],[68.93998,22.2945],[68.95181,22.27172],[68.95176,22.26071],[68.95423,22.25695],[68.95364,22.24521],[68.95837,22.24055],[68.95822,22.2381],[68.96174,22.23833],[68.96493,22.23459],[68.97019,22.23819],[68.97376,22.23654],[68.97219,22.23517],[68.97281,22.23255],[68.97079,22.23692],[68.96586,22.23408],[68.9812,22.2123],[69.01815,22.17226],[69.05469,22.12947],[69.0919,22.0952],[69.10962,22.07101],[69.18667,21.98886],[69.19236,21.9834],[69.19715,21.98139],[69.21655,21.95751],[69.22413,21.95213],[69.23855,21.93587],[69.2442,21.93356],[69.28366,21.89364],[69.29126,21.88946],[69.31595,21.86834],[69.3169,21.86779],[69.31828,21.87208],[69.31972,21.87127],[69.3174,21.86661],[69.32977,21.85546],[69.35396,21.83789],[69.36481,21.83456],[69.37034,21.83025],[69.37311,21.83215],[69.37202,21.8291],[69.39986,21.79686],[69.4165,21.78309],[69.43297,21.76669],[69.44259,21.76165],[69.45271,21.75],[69.46444,21.74418],[69.4774,21.73447],[69.51032,21.70022],[69.56619,21.6515],[69.58543,21.63728],[69.58966,21.63659],[69.58958,21.63827],[69.59146,21.63868],[69.60221,21.63716],[69.61596,21.62455],[69.67374,21.56329],[69.70636,21.53536],[69.75505,21.48024],[69.81521,21.41693],[69.92354,21.29046],[70.00089,21.20628],[70.02724,21.18093],[70.04768,21.15695],[70.0924,21.11333],[70.09845,21.10817],[70.10609,21.10453],[70.12282,21.08853],[70.13911,21.07616],[70.14359,21.06934],[70.16647,21.05052],[70.18135,21.03606],[70.22136,21.00306],[70.23423,20.99648],[70.25683,20.97323],[70.27742,20.95966],[70.28751,20.95074],[70.30809,20.93883],[70.3228,20.92604],[70.33883,20.91748],[70.34622,20.91542],[70.35394,20.90751],[70.36322,20.90094],[70.37008,20.89974],[70.37335,20.89648],[70.36976,20.90083],[70.37123,20.90056],[70.37065,20.90206],[70.37364,20.90345],[70.37362,20.90208],[70.37509,20.90296],[70.37815,20.90009],[70.38545,20.8974],[70.3865,20.89524],[70.39574,20.89151],[70.41369,20.87547],[70.42475,20.86224],[70.43125,20.86058],[70.43772,20.8529],[70.4427,20.85349],[70.44708,20.85043],[70.44742,20.84841],[70.45222,20.84808],[70.46834,20.83903],[70.47394,20.8397],[70.48022,20.83552],[70.48572,20.83521],[70.48763,20.82988],[70.49018,20.82783],[70.5,20.82256],[70.5084,20.82098],[70.5114,20.81738],[70.51615,20.81677],[70.51967,20.81452],[70.51972,20.81266],[70.52299,20.81254],[70.52344,20.81055],[70.52677,20.81091],[70.53454,20.80738],[70.53714,20.80383],[70.54127,20.80322],[70.54199,20.80183],[70.54823,20.80432],[70.55183,20.80342],[70.56231,20.79245],[70.57039,20.79238],[70.57471,20.79072],[70.58567,20.78159],[70.59082,20.78119],[70.59983,20.77744],[70.60949,20.77642],[70.61188,20.77431],[70.61092,20.77252],[70.61216,20.77111],[70.62113,20.77064],[70.62793,20.76608],[70.6346,20.76456],[70.6336,20.76648],[70.63487,20.76708],[70.64287,20.76293],[70.64583,20.76344],[70.64603,20.76104],[70.64915,20.76126],[70.65727,20.75567],[70.66289,20.75776],[70.66301,20.76097],[70.66682,20.76097],[70.66849,20.76017],[70.66817,20.75877],[70.67447,20.75655],[70.68526,20.74809],[70.69462,20.74405],[70.70385,20.7366],[70.70743,20.73628],[70.71404,20.73163],[70.71543,20.73244],[70.72152,20.7297],[70.72464,20.72682],[70.72967,20.72697],[70.73355,20.72253],[70.73797,20.72173],[70.74234,20.71854],[70.74961,20.71758],[70.75609,20.72197],[70.76622,20.72024],[70.77261,20.71589],[70.78809,20.7112],[70.80228,20.70064],[70.80755,20.70028],[70.82158,20.69345],[70.82179,20.69136],[70.83899,20.6901],[70.83487,20.69705],[70.83275,20.69743],[70.83862,20.70355],[70.84414,20.70647],[70.85901,20.70611],[70.86739,20.70355],[70.87301,20.70448],[70.87422,20.70641],[70.87139,20.70711],[70.87079,20.70887],[70.87213,20.71835],[70.87807,20.72854],[70.88405,20.73144],[70.89387,20.73239],[70.91011,20.73684],[70.91586,20.74203],[70.91949,20.7431],[70.92429,20.74066],[70.9266,20.73706],[70.93172,20.73689],[70.93851,20.73243],[70.96041,20.73672],[70.96435,20.72961],[70.97402,20.72787],[70.98101,20.72269],[70.98448,20.73225],[70.99307,20.73578],[70.99949,20.74223],[71.00231,20.74182],[71.00807,20.73694],[71.01902,20.73808],[71.04144,20.73485],[71.04463,20.7327],[71.04383,20.73106],[71.04616,20.73043],[71.05077,20.73048],[71.06058,20.73606],[71.06461,20.73343],[71.06689,20.73567],[71.07182,20.73459],[71.08082,20.7383],[71.08141,20.74043],[71.07969,20.74181],[71.08109,20.74259],[71.07301,20.74332],[71.07477,20.7435],[71.07414,20.74505],[71.07649,20.74354],[71.07903,20.75067],[71.08651,20.75555],[71.11165,20.75732],[71.11744,20.75424],[71.12025,20.75554],[71.12336,20.75465],[71.12797,20.75774],[71.13497,20.75616],[71.14585,20.7578],[71.14639,20.77134],[71.15096,20.77156],[71.15615,20.77771],[71.1607,20.7799],[71.18458,20.78398],[71.20286,20.78919],[71.20356,20.7918],[71.20778,20.7925],[71.20731,20.79496],[71.20399,20.79474],[71.20916,20.80085],[71.21753,20.80201],[71.21845,20.80338],[71.23197,20.80411],[71.23629,20.80713],[71.23933,20.81173],[71.24698,20.81212],[71.25201,20.81518],[71.25801,20.8163],[71.26784,20.8225],[71.27334,20.82326],[71.27849,20.82725],[71.28258,20.82695],[71.29014,20.83024],[71.29395,20.82823],[71.29603,20.83028],[71.29451,20.83398],[71.29692,20.83169],[71.29709,20.83524],[71.30207,20.83541],[71.32173,20.84665],[71.33169,20.84721],[71.3471,20.85229],[71.35086,20.85024],[71.35228,20.85299],[71.35436,20.8505],[71.36408,20.85358],[71.36585,20.85188],[71.37687,20.85701],[71.38407,20.85676],[71.38497,20.85826],[71.38133,20.85947],[71.38182,20.86392],[71.37574,20.86503],[71.37434,20.8674],[71.37992,20.87426],[71.38605,20.87592],[71.39231,20.87494],[71.39553,20.87217],[71.39416,20.86774],[71.39686,20.86517],[71.40453,20.86813],[71.41035,20.86791],[71.41197,20.86651],[71.42225,20.86948],[71.42039,20.86653],[71.43998,20.86952],[71.44605,20.87703],[71.44706,20.87614],[71.45007,20.8776],[71.4488,20.87942],[71.44966,20.88086],[71.46293,20.88004],[71.4702,20.88727],[71.47705,20.88894],[71.47917,20.89721],[71.48253,20.90015],[71.48178,20.90633],[71.48857,20.91351],[71.49713,20.91773],[71.50521,20.91799],[71.5,20.91875],[71.5,20.92049],[71.50667,20.91877],[71.50322,20.92158],[71.50311,20.92668],[71.50916,20.93276],[71.50801,20.93296],[71.5103,20.93581],[71.50946,20.94188],[71.51665,20.94812],[71.52374,20.94795],[71.5275,20.95096],[71.53024,20.94378],[71.53311,20.94331],[71.54508,20.95002],[71.54895,20.94917],[71.55008,20.95223],[71.55269,20.95017],[71.55529,20.9524],[71.55637,20.95164],[71.55544,20.94996],[71.56558,20.94895],[71.56855,20.95304],[71.57977,20.95374],[71.5802,20.95745],[71.58898,20.96043],[71.59214,20.96001],[71.59685,20.96644],[71.59988,20.96653],[71.59766,20.96364],[71.60005,20.96292],[71.61073,20.96621],[71.61292,20.96859],[71.61077,20.96987],[71.61071,20.97382],[71.60749,20.97796],[71.61201,20.97487],[71.61598,20.97598],[71.61784,20.97383],[71.61883,20.97714],[71.61852,20.97126],[71.61508,20.96887],[71.61715,20.96699],[71.61974,20.9692],[71.62058,20.96722],[71.6282,20.96871],[71.64138,20.97525],[71.64771,20.97465],[71.65002,20.97838],[71.63884,20.97731],[71.63696,20.97765],[71.63677,20.98071],[71.64222,20.98997],[71.64708,20.9942],[71.66652,20.99843],[71.67131,20.99785],[71.67575,20.9949],[71.67737,20.99556],[71.67701,21.00175],[71.67859,20.99585],[71.68191,20.99655],[71.6832,20.99711],[71.68105,21.00171],[71.68285,21.00384],[71.7001,21.01046],[71.71668,21.02075],[71.72841,21.02122],[71.73156,21.0187],[71.73562,21.02107],[71.73955,21.01696],[71.74327,21.01965],[71.75154,21.0193],[71.75301,21.02223],[71.75993,21.02184],[71.76097,21.02056],[71.76437,21.02154],[71.76496,21.02303],[71.76337,21.02474],[71.76532,21.02659],[71.76926,21.02579],[71.7757,21.03029],[71.78439,21.03003],[71.7863,21.03321],[71.78292,21.03308],[71.77757,21.03736],[71.78054,21.03919],[71.79031,21.04132],[71.79272,21.04004],[71.79173,21.03617],[71.79351,21.03833],[71.80586,21.03806],[71.80654,21.03973],[71.80547,21.0389],[71.80316,21.04312],[71.80398,21.04471],[71.80194,21.04456],[71.80289,21.04846],[71.8017,21.04726],[71.79948,21.0485],[71.79763,21.05522],[71.80051,21.05885],[71.81308,21.06747],[71.8222,21.07094],[71.82435,21.07071],[71.8249,21.0691],[71.82827,21.06936],[71.84286,21.07721],[71.84702,21.07798],[71.84779,21.07623],[71.84979,21.07635],[71.85165,21.08151],[71.85156,21.07919],[71.85457,21.08195],[71.85672,21.08138],[71.86024,21.08574],[71.86638,21.0885],[71.86823,21.0865],[71.87064,21.08914],[71.873,21.08909],[71.87385,21.08729],[71.87897,21.08875],[71.8878,21.09924],[71.88809,21.10215],[71.89833,21.10994],[71.92092,21.11325],[71.92487,21.11226],[71.93009,21.11603],[71.93857,21.11669],[71.93978,21.1148],[71.93968,21.11913],[71.942,21.12087],[71.95077,21.12077],[71.95334,21.12348],[71.96235,21.12435],[71.9739,21.12223],[71.97201,21.12735],[71.97625,21.13324],[71.98661,21.13789],[71.99766,21.13959],[71.9966,21.14191],[72.00405,21.14185],[72.00523,21.13818],[72.00803,21.13778],[72.01023,21.13467],[72.00835,21.14494],[72.0107,21.1486],[72.01779,21.15391],[72.03648,21.15956],[72.03869,21.16259],[72.04586,21.16331],[72.05043,21.16943],[72.05772,21.17371],[72.06279,21.17375],[72.06217,21.17578],[72.0644,21.17822],[72.07405,21.18067],[72.07554,21.18311],[72.07901,21.18409],[72.07937,21.18592],[72.0869,21.18775],[72.08589,21.19031],[72.08767,21.19188],[72.11205,21.19863],[72.10948,21.21002],[72.10122,21.21725],[72.1,21.22062],[72.09758,21.22113],[72.09564,21.22453],[72.09047,21.22784],[72.08474,21.23649],[72.08267,21.24514],[72.09754,21.26354],[72.09839,21.27937],[72.10367,21.28076],[72.11148,21.29294],[72.10784,21.30247],[72.11243,21.30565],[72.12515,21.32838],[72.13278,21.33764],[72.13246,21.3391],[72.15586,21.3606],[72.15721,21.36546],[72.16765,21.37621],[72.17169,21.38741],[72.21061,21.42104],[72.21977,21.43498],[72.22516,21.43972],[72.22667,21.44574],[72.23535,21.45601],[72.23667,21.46526],[72.24358,21.47386],[72.24282,21.47559],[72.24557,21.48225],[72.24847,21.48511],[72.25315,21.49837],[72.25606,21.50249],[72.25678,21.51106],[72.26496,21.5372],[72.26586,21.54535],[72.26469,21.55518],[72.26822,21.56293],[72.26996,21.57264],[72.2804,21.59081],[72.28836,21.59718],[72.29411,21.60826],[72.30234,21.61762],[72.30613,21.62601],[72.30582,21.63336],[72.30149,21.64527],[72.30523,21.6463],[72.3042,21.6473],[72.3053,21.64907],[72.30274,21.64965],[72.30031,21.65324],[72.29224,21.67279],[72.29105,21.67925],[72.28215,21.6907],[72.28342,21.69246],[72.27937,21.69323],[72.28021,21.69466],[72.28322,21.69433],[72.28284,21.69696],[72.27162,21.70539],[72.25509,21.73259],[72.25,21.74257],[72.23658,21.77999],[72.22828,21.79295],[72.20282,21.81906],[72.20485,21.82382],[72.21031,21.81896],[72.21212,21.82104],[72.22005,21.81965],[72.23548,21.81204],[72.24146,21.82378],[72.24246,21.82981],[72.21723,21.86701],[72.20833,21.88653],[72.2042,21.89107],[72.20523,21.89693],[72.20304,21.91285],[72.20603,21.92281],[72.20586,21.92989],[72.20856,21.94261],[72.20633,21.94841],[72.21167,21.96207],[72.23642,21.97099],[72.24172,21.97577],[72.26887,21.9706],[72.27255,21.98445],[72.28043,22.0],[72.28461,22.01337],[72.29088,22.02361],[72.30003,22.03337],[72.40228,22.1124],[72.43345,22.14025],[72.49941,22.17923],[72.52035,22.20511],[72.53132,22.2158],[72.54373,22.22307],[72.5629,22.23052],[72.57476,22.23269],[72.62418,22.23391],[72.662,22.2233],[72.69516,22.2008],[72.69896,22.19991],[72.71269,22.20912],[72.7401,22.22029],[72.77516,22.22919],[72.79485,22.24189],[72.80273,22.25228],[72.81585,22.25532],[72.8335,22.27151],[72.84062,22.27502],[72.84922,22.27495],[72.84878,22.2485],[72.8538,22.23885],[72.8485,22.24036],[72.84792,22.23872],[72.84985,22.23573],[72.84769,22.23486],[72.84685,22.23764],[72.84261,22.23975],[72.84105,22.23705],[72.84181,22.23155],[72.83364,22.227],[72.83192,22.22832],[72.82957,22.22689],[72.82731,22.22913],[72.82627,22.22423],[72.82247,22.22816],[72.82059,22.22454],[72.81845,22.22422],[72.82319,22.22089],[72.81893,22.21588],[72.82322,22.21461],[72.82064,22.21106],[72.82233,22.21177],[72.82271,22.20922],[72.78276,22.19287],[72.78268,22.15757],[72.77418,22.16119],[72.76021,22.17141],[72.74625,22.1739],[72.74404,22.17272],[72.74359,22.17435],[72.74021,22.17388],[72.73647,22.1761],[72.73319,22.17542],[72.73387,22.17743],[72.72615,22.1814],[72.72212,22.18123],[72.72306,22.18252],[72.72158,22.18352],[72.70906,22.18561],[72.70469,22.18243],[72.69568,22.18729],[72.68508,22.19624],[72.6746,22.20015],[72.66843,22.20459],[72.6686,22.20216],[72.67113,22.19991],[72.67064,22.19685],[72.66628,22.20028],[72.66283,22.19939],[72.66133,22.20154],[72.65953,22.19943],[72.659,22.20183],[72.66445,22.20741],[72.65777,22.21232],[72.65671,22.21096],[72.65437,22.214],[72.65228,22.21017],[72.65208,22.21447],[72.64996,22.21546],[72.63838,22.217],[72.61569,22.21605],[72.59383,22.20798],[72.59078,22.20475],[72.59118,22.20271],[72.59806,22.20561],[72.59382,22.20273],[72.59463,22.20043],[72.598,22.19965],[72.59473,22.19851],[72.59319,22.20034],[72.59104,22.19903],[72.58935,22.20298],[72.5866,22.20246],[72.58862,22.20509],[72.58096,22.19915],[72.57546,22.19079],[72.58313,22.1881],[72.57829,22.18749],[72.57253,22.18932],[72.56395,22.1783],[72.54819,22.14499],[72.54713,22.14156],[72.54821,22.13606],[72.54452,22.1322],[72.54316,22.12634],[72.54643,22.11132],[72.54087,22.0915],[72.5385,22.08954],[72.54007,22.08577],[72.54719,22.08374],[72.54724,22.07884],[72.54654,22.0748],[72.54213,22.07981],[72.53717,22.07554],[72.53688,22.06076],[72.54207,22.03827],[72.5401,22.03288],[72.5481,22.01427],[72.54854,21.99105],[72.54733,21.9878],[72.53781,21.98653],[72.53778,21.98326],[72.537,21.98672],[72.5337,21.98693],[72.53374,21.98261],[72.53866,21.98189],[72.52814,21.98226],[72.52811,21.97784],[72.53856,21.97752],[72.53746,21.97707],[72.53774,21.97209],[72.53332,21.97243],[72.53341,21.96809],[72.53113,21.96827],[72.5311,21.9659],[72.53986,21.96527],[72.53976,21.96175],[72.53838,21.96001],[72.53432,21.96208],[72.52589,21.95987],[72.53054,21.95508],[72.53269,21.95855],[72.54134,21.9589],[72.54123,21.96522],[72.54786,21.96439],[72.54748,21.9543],[72.545,21.94932],[72.53629,21.9498],[72.53343,21.94669],[72.54069,21.94391],[72.53926,21.94221],[72.53173,21.94369],[72.52797,21.93702],[72.53079,21.93597],[72.52851,21.93445],[72.53025,21.93215],[72.52911,21.93115],[72.53308,21.92596],[72.53707,21.9276],[72.53899,21.91706],[72.54536,21.91099],[72.54931,21.91393],[72.56404,21.91766],[72.5804,21.92454],[72.58803,21.92241],[72.60788,21.93302],[72.62449,21.94738],[72.63999,21.95683],[72.67209,21.95569],[72.68056,21.95927],[72.68374,21.95432],[72.69176,21.95211],[72.70781,21.9534],[72.71166,21.95602],[72.71523,21.96637],[72.71412,21.97262],[72.70965,21.97924],[72.71512,21.98271],[72.72268,21.99493],[72.72522,21.99647],[72.72857,21.99558],[72.73556,21.98679],[72.73339,21.98146],[72.73515,21.97673],[72.74637,21.97057],[72.74829,21.96746],[72.74674,21.96175],[72.74113,21.95506],[72.7324,21.95023],[72.71941,21.93922],[72.69772,21.93854],[72.69477,21.94173],[72.6919,21.94187],[72.69775,21.88891],[72.69309,21.88677],[72.69127,21.88258],[72.68363,21.88506],[72.67092,21.89572],[72.65916,21.89141],[72.65466,21.89529],[72.64817,21.89731],[72.64563,21.89569],[72.64522,21.88819],[72.63878,21.89015],[72.63302,21.88044],[72.62335,21.88375],[72.62308,21.87714],[72.6162,21.86043],[72.61033,21.83968],[72.62043,21.82993],[72.61704,21.82713],[72.61778,21.82574],[72.6143,21.82138],[72.59302,21.80492],[72.59505,21.80222],[72.59412,21.80007],[72.59931,21.79829],[72.59963,21.79227],[72.61004,21.79018],[72.61001,21.78915],[72.60195,21.78977],[72.60139,21.78651],[72.60339,21.78504],[72.60212,21.78566],[72.60102,21.78407],[72.60342,21.77636],[72.60116,21.767],[72.60296,21.76365],[72.6064,21.76504],[72.60426,21.75525],[72.60717,21.75305],[72.6027,21.7539],[72.59962,21.75],[72.59796,21.75148],[72.59676,21.74976],[72.59185,21.74863],[72.59205,21.74695],[72.58769,21.74669],[72.58479,21.74277],[72.57873,21.74115],[72.57689,21.73893],[72.57474,21.74014],[72.56806,21.73872],[72.55856,21.73204],[72.5459,21.73502],[72.53897,21.73105],[72.53247,21.7181],[72.53185,21.69618],[72.5337,21.67445],[72.53705,21.66625],[72.54355,21.66051],[72.54853,21.65869],[72.5576,21.65952],[72.5705,21.66801],[72.59574,21.68024],[72.60517,21.68327],[72.60068,21.68598],[72.60809,21.68806],[72.61045,21.68457],[72.62156,21.68225],[72.63762,21.68077],[72.63927,21.68174],[72.63801,21.68214],[72.63897,21.68391],[72.64476,21.68172],[72.65586,21.68083],[72.6571,21.68209],[72.66014,21.68107],[72.66889,21.68482],[72.6666,21.68564],[72.66626,21.68775],[72.67134,21.68904],[72.67177,21.68744],[72.67489,21.68641],[72.67496,21.68446],[72.68534,21.68147],[72.69224,21.68131],[72.69814,21.68438],[72.71291,21.67958],[72.73808,21.69097],[72.74591,21.68846],[72.7498,21.68129],[72.75263,21.68149],[72.75475,21.67576],[72.76221,21.67002],[72.77658,21.66535],[72.78983,21.66325],[72.80129,21.65769],[72.81777,21.6583],[72.84412,21.68016],[72.85359,21.6854],[72.86191,21.68759],[72.86313,21.68632],[72.88052,21.68632],[72.92278,21.67598],[72.92526,21.67866],[72.92772,21.67826],[72.92777,21.67621],[72.93072,21.67753],[72.93819,21.67671],[72.96114,21.68189],[72.96298,21.67403],[72.94103,21.66906],[72.90683,21.6649],[72.90721,21.6668],[72.89498,21.67505],[72.87724,21.67256],[72.87403,21.66917],[72.87284,21.66348],[72.87334,21.64492],[72.86791,21.64222],[72.85359,21.64825],[72.84168,21.65582],[72.82846,21.65091],[72.83179,21.64105],[72.83015,21.62845],[72.82033,21.61111],[72.80956,21.60339],[72.80185,21.60062],[72.79772,21.5956],[72.80224,21.58721],[72.79084,21.58854],[72.78509,21.58735],[72.77388,21.57146],[72.76878,21.57041],[72.76689,21.57398],[72.76629,21.5707],[72.76759,21.5694],[72.76357,21.56888],[72.76261,21.5733],[72.75942,21.56949],[72.76211,21.56678],[72.7589,21.566],[72.7584,21.56813],[72.75627,21.56557],[72.75445,21.56628],[72.75477,21.56434],[72.76006,21.56033],[72.76133,21.56458],[72.76851,21.56499],[72.77022,21.56252],[72.76723,21.55626],[72.76247,21.55146],[72.76277,21.54887],[72.76064,21.55001],[72.76034,21.54781],[72.75007,21.54171],[72.75,21.52752],[72.74273,21.52859],[72.74185,21.53043],[72.74018,21.52935],[72.73929,21.53088],[72.73711,21.53047],[72.7403,21.53262],[72.73875,21.53403],[72.7323,21.53036],[72.73098,21.53029],[72.731,21.53281],[72.72577,21.52997],[72.72998,21.52714],[72.72387,21.52874],[72.72255,21.52613],[72.72216,21.52969],[72.71892,21.52799],[72.71682,21.52914],[72.71523,21.526],[72.71459,21.52794],[72.71197,21.52725],[72.71489,21.52201],[72.71216,21.52315],[72.71076,21.52123],[72.70787,21.52844],[72.70616,21.52628],[72.70283,21.52567],[72.69023,21.50838],[72.68698,21.50142],[72.67704,21.50303],[72.67579,21.5021],[72.66182,21.47691],[72.65582,21.46917],[72.625,21.44759],[72.6022,21.4385],[72.60181,21.43652],[72.5925,21.42839],[72.5866,21.4197],[72.57958,21.41386],[72.57923,21.40917],[72.58134,21.40849],[72.58524,21.40232],[72.60027,21.40015],[72.61495,21.40575],[72.61127,21.40154],[72.61312,21.40011],[72.62847,21.4089],[72.63935,21.42087],[72.6388,21.41757],[72.64234,21.42071],[72.64172,21.41896],[72.64568,21.41948],[72.65406,21.43292],[72.65816,21.43675],[72.6611,21.4439],[72.67943,21.4456],[72.68377,21.45491],[72.6873,21.45244],[72.68376,21.44436],[72.67933,21.43996],[72.66515,21.43626],[72.65289,21.4214],[72.64143,21.41209],[72.62472,21.40056],[72.60992,21.3947],[72.60117,21.38862],[72.60098,21.32767],[72.59795,21.31737],[72.5975,21.30554],[72.60034,21.28987],[72.61046,21.28076],[72.60806,21.27351],[72.60932,21.26892],[72.61983,21.25368],[72.62226,21.24259],[72.63045,21.23435],[72.64523,21.22516],[72.65735,21.22465],[72.65568,21.22233],[72.65559,21.21802],[72.6521,21.21469],[72.63806,21.21111],[72.63933,21.20277],[72.63456,21.19052],[72.62862,21.14412],[72.62522,21.12985],[72.61906,21.11462],[72.6199,21.10075],[72.62325,21.09308],[72.6312,21.08619],[72.63536,21.08456],[72.64154,21.08515],[72.64705,21.08765],[72.65623,21.10234],[72.66496,21.10834],[72.66982,21.11504],[72.66987,21.10586],[72.67544,21.10327],[72.68633,21.09392],[72.68431,21.08805],[72.68479,21.08297],[72.69558,21.08479],[72.69546,21.09517],[72.70247,21.09616],[72.70416,21.08995],[72.70331,21.08684],[72.70991,21.07983],[72.73391,21.07741],[72.74119,21.07446],[72.74099,21.0705],[72.75001,21.06368],[72.74893,21.05722],[72.74062,21.05143],[72.73611,21.05093],[72.72947,21.06092],[72.72618,21.06103],[72.72475,21.05837],[72.72599,21.0473],[72.72273,21.04323],[72.72216,21.03773],[72.7264,21.01474],[72.72767,21.01459],[72.73087,21.00253],[72.73254,21.00154],[72.73321,20.99228],[72.73899,20.98132],[72.74372,20.95895],[72.75465,20.93866],[72.76501,20.9351],[72.76976,20.93755],[72.77403,20.93679],[72.78757,20.94361],[72.79861,20.94424],[72.80908,20.94683],[72.82037,20.9523],[72.81377,20.94256],[72.81273,20.93711],[72.81436,20.93446],[72.81637,20.93419],[72.81998,20.9275],[72.80527,20.92633],[72.7921,20.91819],[72.7871,20.91955],[72.78449,20.92524],[72.78095,20.92472],[72.78017,20.92115],[72.7855,20.91148],[72.81798,20.83445],[72.82466,20.82419],[72.82741,20.8129],[72.8323,20.80728],[72.83924,20.80525],[72.83921,20.80055],[72.82866,20.79902],[72.82021,20.7938],[72.82273,20.79099],[72.82551,20.78137],[72.8387,20.76828],[72.8377,20.76519],[72.84826,20.76194],[72.85294,20.75681],[72.854,20.75164],[72.84969,20.75009],[72.8488,20.74446],[72.8542,20.71496],[72.86496,20.68874],[72.87598,20.64925],[72.87944,20.64319],[72.88426,20.6403],[72.88422,20.6355],[72.89789,20.58663],[72.89695,20.5684],[72.89068,20.55704],[72.88599,20.54243],[72.88991,20.53288],[72.88776,20.53247],[72.88624,20.52678],[72.88883,20.50899],[72.88594,20.49768],[72.87989,20.49245],[72.87256,20.4932],[72.86556,20.48305],[72.85812,20.46564],[72.87725,20.46176],[72.88655,20.46233],[72.888,20.46071],[72.88797,20.4506],[72.89532,20.44431],[72.89016,20.43865],[72.88771,20.43825],[72.8789,20.44166],[72.87484,20.44557],[72.8698,20.43952],[72.86507,20.42908],[72.86109,20.4276],[72.85725,20.41978],[72.86043,20.41741],[72.86842,20.4164],[72.87049,20.41381],[72.8743,20.41487],[72.87533,20.41681],[72.8802,20.41702],[72.88167,20.41948],[72.88919,20.41904],[72.8932,20.42173],[72.8979,20.42061],[72.90041,20.41687],[72.90405,20.41498],[72.90177,20.41021],[72.90329,20.40978],[72.90259,20.4058],[72.89187,20.39916],[72.8877,20.40003],[72.88276,20.39785],[72.88362,20.39122],[72.8871,20.38818],[72.8869,20.38545],[72.89659,20.37987],[72.89149,20.37565],[72.89067,20.37265],[72.88297,20.37231],[72.87667,20.36977],[72.86569,20.37226],[72.86394,20.37521],[72.85813,20.37404],[72.85614,20.37203],[72.84577,20.37489],[72.83594,20.37332],[72.82925,20.36728],[72.82379,20.36722],[72.81409,20.35285],[72.80315,20.34946],[72.79402,20.35053],[72.79128,20.34919],[72.77881,20.335],[72.7761,20.32529],[72.77439,20.30179],[72.76765,20.29741],[72.76335,20.29931],[72.75744,20.29203],[72.75373,20.26045],[72.74242,20.2412],[72.74657,20.22627],[72.74864,20.20693],[72.75049,20.20372],[72.74739,20.19745],[72.74445,20.18195],[72.74551,20.16527],[72.7426,20.15928],[72.74292,20.14041],[72.74122,20.14026],[72.74,20.13481],[72.74931,20.13137],[72.76057,20.13122],[72.76269,20.12982],[72.76732,20.13151],[72.77728,20.13166],[72.79411,20.12334],[72.79221,20.13282],[72.78758,20.13872],[72.78743,20.14394],[72.78527,20.14512],[72.78862,20.14932],[72.79723,20.14967],[72.79927,20.15156],[72.80016,20.1501],[72.80585,20.15447],[72.80605,20.15311],[72.81069,20.15159],[72.81516,20.14469],[72.81888,20.14467],[72.82447,20.14202],[72.82237,20.15498],[72.81632,20.15669],[72.81645,20.16034],[72.81963,20.16477],[72.82009,20.17542],[72.818,20.1826],[72.81604,20.18444],[72.82526,20.18899],[72.8297,20.18805],[72.83255,20.18984],[72.83695,20.18846],[72.83089,20.19677],[72.83345,20.20247],[72.83607,20.20341],[72.83568,20.20507],[72.83903,20.20913],[72.86118,20.20761],[72.85874,20.22474],[72.8705,20.22832],[72.87518,20.22601],[72.87912,20.22691],[72.88961,20.22024],[72.89306,20.22584],[72.89942,20.22784],[72.90177,20.22505],[72.90808,20.22342],[72.92123,20.22271],[72.92228,20.22083],[72.93445,20.21595],[72.94144,20.21701],[72.94951,20.21585],[72.9625,20.20965],[72.96451,20.2138],[72.96595,20.22487],[72.96491,20.22674],[72.96059,20.23033],[72.95829,20.23539],[72.95398,20.23826],[72.93761,20.24482],[72.93064,20.24441],[72.9232,20.2572],[72.91838,20.25868],[72.91752,20.26339],[72.91171,20.27026],[72.91239,20.27535],[72.91601,20.27601],[72.91724,20.2808],[72.9202,20.28117],[72.9208,20.28368],[72.92858,20.28631],[72.93201,20.29349],[72.93795,20.29439],[72.94164,20.29309],[72.94505,20.28849],[72.9482,20.28777],[72.95205,20.28408],[72.95529,20.2842],[72.95568,20.27891],[72.96184,20.27502],[72.96223,20.27134],[72.97119,20.26906],[72.98193,20.2755],[72.98117,20.28927],[72.98536,20.28808],[72.98728,20.29087],[72.99441,20.29231],[72.99682,20.29076],[73.00102,20.29197],[73.00483,20.28917],[73.01005,20.29121],[73.01157,20.30039],[73.00942,20.30981],[73.00615,20.3128],[73.01217,20.31169],[73.01241,20.30933],[73.01669,20.31037],[73.01532,20.29402],[73.02661,20.29067],[73.03429,20.29163],[73.03561,20.2932],[73.0377,20.31767],[73.04174,20.32599],[73.04924,20.32441],[73.06665,20.33003],[73.07027,20.32547],[73.07717,20.32348],[73.08453,20.33182],[73.08782,20.34124],[73.09027,20.34393],[73.08845,20.35033],[73.08906,20.35869],[73.0958,20.36133],[73.0983,20.35838],[73.09864,20.3547],[73.10169,20.35474],[73.10478,20.34994],[73.10398,20.34755],[73.10738,20.34391],[73.10803,20.33902],[73.11125,20.33777],[73.10804,20.33103],[73.10843,20.32457],[73.10291,20.31413],[73.10037,20.30482],[73.10281,20.30178],[73.10852,20.30527],[73.11154,20.30405],[73.11661,20.30616],[73.12189,20.30419],[73.12695,20.30551],[73.12645,20.3088],[73.12944,20.31832],[73.15078,20.31834],[73.15941,20.30885],[73.16573,20.31043],[73.16623,20.30527],[73.16349,20.2982],[73.16579,20.29407],[73.1663,20.28787],[73.16494,20.28399],[73.15823,20.28131],[73.15367,20.28523],[73.15173,20.29203],[73.14585,20.28858],[73.14222,20.2811],[73.14227,20.27642],[73.13997,20.27379],[73.13728,20.27314],[73.13123,20.27503],[73.13053,20.26949],[73.126,20.26076],[73.11399,20.25831],[73.107,20.25077],[73.10627,20.24619],[73.0973,20.23867],[73.09901,20.23194],[73.09774,20.2293],[73.08927,20.22676],[73.08549,20.22764],[73.08244,20.23089],[73.07051,20.2321],[73.06365,20.22776],[73.06257,20.22403],[73.05996,20.22334],[73.05507,20.21224],[73.05446,20.20742],[73.04885,20.20021],[73.05322,20.19543],[73.05953,20.19393],[73.0628,20.17761],[73.06264,20.16975],[73.06041,20.16687],[73.06024,20.16189],[73.06431,20.15865],[73.07358,20.15562],[73.07928,20.17324],[73.08704,20.17032],[73.0903,20.16032],[73.09941,20.15622],[73.10811,20.15784],[73.11365,20.15209],[73.11566,20.15217],[73.11652,20.15582],[73.11481,20.15894],[73.11566,20.16222],[73.11948,20.16404],[73.11918,20.16821],[73.12841,20.17344],[73.13248,20.16942],[73.13604,20.17003],[73.14187,20.17736],[73.13896,20.18447],[73.13492,20.18499],[73.1339,20.18783],[73.13261,20.19196],[73.13299,20.20577],[73.13753,20.20759],[73.13852,20.20451],[73.14757,20.20074],[73.15225,20.2039],[73.15718,20.19835],[73.16829,20.20823],[73.16873,20.20302],[73.17147,20.19844],[73.17675,20.19933],[73.1788,20.19775],[73.17795,20.19264],[73.19003,20.1951],[73.19172,20.19743],[73.19881,20.19446],[73.2067,20.18812],[73.20825,20.1895],[73.21772,20.18593],[73.21819,20.18152],[73.21416,20.17171],[73.20554,20.16417],[73.20104,20.16531],[73.18967,20.16426],[73.1883,20.15859],[73.18538,20.15584],[73.18452,20.14725],[73.18776,20.1286],[73.19745,20.12632],[73.20302,20.1196],[73.21057,20.12049],[73.21701,20.12861],[73.21793,20.13665],[73.22568,20.14015],[73.22678,20.13358],[73.22495,20.1238],[73.22929,20.12263],[73.24323,20.12812],[73.24673,20.12652],[73.24925,20.12233],[73.2547,20.12693],[73.2539,20.13796],[73.25741,20.13765],[73.26515,20.14026],[73.27923,20.15014],[73.28157,20.16686],[73.28118,20.19001],[73.28305,20.19805],[73.28901,20.19817],[73.29328,20.20445],[73.29983,20.20954],[73.30516,20.20858],[73.31405,20.20214],[73.32444,20.20619],[73.33647,20.20017],[73.34384,20.19938],[73.34639,20.20931],[73.3565,20.213],[73.35925,20.21151],[73.36126,20.20765],[73.35347,20.20282],[73.3536,20.20036],[73.36475,20.19558],[73.36653,20.19636],[73.36624,20.20391],[73.37456,20.2047],[73.37814,20.21095],[73.3825,20.21173],[73.38638,20.20939],[73.38575,20.19615],[73.38867,20.19277],[73.39121,20.19369],[73.39448,20.19864],[73.40588,20.19549],[73.41651,20.19829],[73.42121,20.20659],[73.42011,20.211],[73.41557,20.2127],[73.41714,20.21457],[73.41784,20.22235],[73.4164,20.22422],[73.4136,20.22434],[73.41191,20.23207],[73.41447,20.23594],[73.41044,20.23851],[73.41741,20.24273],[73.41252,20.24449],[73.41533,20.25071],[73.4113,20.25322],[73.41612,20.25868],[73.4138,20.25965],[73.41552,20.26195],[73.41215,20.26551],[73.41494,20.26631],[73.41581,20.26838],[73.41311,20.26921],[73.41285,20.27095],[73.41503,20.27488],[73.4179,20.27332],[73.41919,20.27555],[73.42319,20.27477],[73.4277,20.28012],[73.42394,20.29151],[73.42022,20.29736],[73.42043,20.30735],[73.41873,20.31397],[73.41535,20.31742],[73.41681,20.32017],[73.41617,20.32479],[73.41381,20.32572],[73.41847,20.33052],[73.41718,20.33514],[73.41423,20.33612],[73.41216,20.34358],[73.41329,20.34613],[73.4092,20.34922],[73.40986,20.35093],[73.41366,20.35221],[73.4134,20.35673],[73.41178,20.3639],[73.40644,20.3734],[73.40605,20.3847],[73.40343,20.38637],[73.40086,20.3856],[73.3882,20.37386],[73.38419,20.37204],[73.3801,20.37895],[73.37977,20.3935],[73.38783,20.39841],[73.39592,20.39633],[73.39801,20.40383],[73.40009,20.40605],[73.40592,20.40297],[73.40487,20.40998],[73.41232,20.41075],[73.41402,20.41622],[73.41718,20.41309],[73.41957,20.41307],[73.41854,20.41793],[73.42312,20.42216],[73.4211,20.43003],[73.42856,20.44208],[73.4315,20.44971],[73.43101,20.45441],[73.43296,20.45364],[73.43546,20.45584],[73.44483,20.47478],[73.45625,20.47833],[73.45721,20.48835],[73.45912,20.49184],[73.46767,20.49647],[73.46874,20.50585],[73.46691,20.50923],[73.46987,20.52031],[73.49027,20.53389],[73.49362,20.53807],[73.49117,20.54092],[73.4831,20.54104],[73.4753,20.54333],[73.4792,20.56024],[73.47315,20.58464],[73.46357,20.58952],[73.45908,20.58942],[73.44947,20.59404],[73.43561,20.5933],[73.42958,20.5952],[73.42909,20.59788],[73.43151,20.60015],[73.42646,20.60198],[73.42824,20.60651],[73.42555,20.6088],[73.42562,20.61188],[73.42351,20.61421],[73.42518,20.61719],[73.42112,20.62587],[73.4186,20.62773],[73.41515,20.62631],[73.41087,20.62718],[73.40721,20.62397],[73.40704,20.62744],[73.40996,20.62998],[73.40738,20.63263],[73.4071,20.63533],[73.39812,20.64073],[73.39411,20.64078],[73.39256,20.6451],[73.39224,20.64929],[73.3957,20.65269],[73.40618,20.6549],[73.41245,20.66147],[73.41966,20.66068],[73.43012,20.66412],[73.43469,20.67048],[73.43204,20.67726],[73.4443,20.6811],[73.44845,20.69312],[73.44749,20.69555],[73.44341,20.69665],[73.44078,20.69984],[73.44494,20.7099],[73.44847,20.71325],[73.44918,20.71718],[73.45927,20.7166],[73.46694,20.72206],[73.47465,20.72039],[73.47563,20.70986],[73.48016,20.70709],[73.48367,20.70141],[73.484,20.69156],[73.49027,20.68638],[73.48626,20.67516],[73.48374,20.67631],[73.48216,20.67976],[73.47856,20.67666],[73.47963,20.67221],[73.48439,20.67016],[73.48459,20.66558],[73.48922,20.6637],[73.4878,20.66288],[73.48923,20.65573],[73.49562,20.65361],[73.49757,20.65859],[73.50251,20.66227],[73.50452,20.67068],[73.51133,20.66576],[73.5179,20.66743],[73.52049,20.67885],[73.52158,20.67528],[73.53279,20.67274],[73.53322,20.66924],[73.53827,20.66516],[73.5508,20.64856],[73.55785,20.64587],[73.56185,20.6504],[73.56664,20.64842],[73.56836,20.65141],[73.57716,20.64639],[73.58357,20.64478],[73.58541,20.64212],[73.58914,20.64172],[73.59599,20.63611],[73.59951,20.6369],[73.61274,20.62442],[73.61519,20.62482],[73.61475,20.62178],[73.61686,20.61792],[73.62228,20.61424],[73.62129,20.61248],[73.62731,20.59642],[73.62683,20.58548],[73.62968,20.58126],[73.64502,20.57398],[73.65139,20.56856],[73.65268,20.56487],[73.65798,20.56468],[73.66086,20.56247],[73.66912,20.56348],[73.68489,20.57366],[73.69538,20.57837],[73.69968,20.57525],[73.71547,20.57644],[73.72497,20.57386],[73.73233,20.57442],[73.73401,20.57191],[73.74198,20.56884],[73.74456,20.56492],[73.74621,20.56875],[73.75547,20.57084],[73.76074,20.57374],[73.7636,20.58674],[73.76763,20.58655],[73.77539,20.60022],[73.77799,20.59944],[73.79127,20.60527],[73.79727,20.6026],[73.7971,20.59886],[73.7984,20.59868],[73.80706,20.60839],[73.8077,20.60752],[73.81727,20.61357],[73.82601,20.61246],[73.83237,20.61882],[73.83839,20.62046],[73.83307,20.63797],[73.83274,20.64572],[73.83297,20.6486],[73.83831,20.65495],[73.83909,20.65877],[73.83658,20.66427],[73.83099,20.67032],[73.83062,20.6751],[73.81721,20.67204],[73.81692,20.67915],[73.81185,20.69203],[73.82543,20.70072],[73.83123,20.70031],[73.83544,20.7021],[73.83916,20.69802],[73.85051,20.69585],[73.85517,20.69225],[73.85624,20.70039],[73.86083,20.70028],[73.85969,20.70317],[73.86262,20.70324],[73.86371,20.70739],[73.86677,20.71058],[73.86858,20.72003],[73.87073,20.72102],[73.87442,20.72953],[73.88107,20.73116],[73.88253,20.73343],[73.88754,20.73144],[73.89551,20.73166],[73.89738,20.72904],[73.90475,20.72529],[73.90555,20.72681],[73.91205,20.72457],[73.91733,20.72485],[73.91787,20.72956],[73.92726,20.73434],[73.92956,20.72761],[73.93175,20.73282],[73.94266,20.74208],[73.9416,20.74642],[73.93803,20.74922],[73.94106,20.75249],[73.94131,20.75833],[73.93882,20.76034],[73.93186,20.76062],[73.93473,20.77331],[73.93298,20.79187],[73.93612,20.8009],[73.93193,20.8089],[73.93815,20.81422],[73.9421,20.8235],[73.94404,20.82377],[73.94056,20.82847],[73.93925,20.83725],[73.94033,20.83945],[73.92935,20.84236],[73.92761,20.84736],[73.92512,20.84831],[73.92372,20.85138],[73.92454,20.85862],[73.92264,20.8624],[73.9248,20.86648],[73.92337,20.8745],[73.92557,20.87737],[73.92573,20.8885],[73.92216,20.89231],[73.91754,20.90778],[73.90009,20.92078],[73.8882,20.93359],[73.89231,20.95571],[73.89901,20.9603],[73.90798,20.95974],[73.90846,20.96692],[73.90332,20.97219],[73.9013,20.9823],[73.89641,20.98202],[73.89239,20.97947],[73.87148,20.98572],[73.86902,20.98526],[73.86632,20.9899],[73.862,20.99039],[73.85404,20.99474],[73.83881,21.00754],[73.83304,21.00957],[73.81866,21.02211],[73.815,21.0235],[73.81018,21.02834],[73.80872,21.02777],[73.81018,21.02834],[73.79553,21.04452],[73.8109,21.05949],[73.80774,21.08489],[73.7941,21.07144],[73.78033,21.06453],[73.76021,21.0694],[73.75765,21.072],[73.74516,21.07761],[73.72993,21.08243],[73.73302,21.09825],[73.74376,21.11518],[73.73198,21.10443],[73.72968,21.09987],[73.70549,21.10843],[73.70305,21.11233],[73.70315,21.11865],[73.68895,21.10079],[73.6772,21.10856],[73.6519,21.1076],[73.64638,21.12125],[73.63103,21.12328],[73.61846,21.11846],[73.61191,21.13808],[73.61763,21.1427],[73.60513,21.14401],[73.60077,21.15022],[73.59879,21.15663],[73.57852,21.15048],[73.57688,21.15667],[73.58328,21.16101],[73.57764,21.16792],[73.57742,21.17075],[73.58101,21.16945],[73.59385,21.17439],[73.5996,21.1817],[73.60645,21.17876],[73.60579,21.17008],[73.60779,21.15898],[73.61472,21.15578],[73.62927,21.15492],[73.62994,21.14883],[73.62743,21.14335],[73.63464,21.14088],[73.64336,21.13957],[73.65753,21.14585],[73.66494,21.1473],[73.66424,21.15327],[73.66749,21.15463],[73.67271,21.15443],[73.68164,21.15124],[73.70178,21.15369],[73.70134,21.14631],[73.70659,21.14462],[73.71074,21.14543],[73.71305,21.14247],[73.71897,21.13976],[73.71849,21.14157],[73.72102,21.14204],[73.73181,21.14097],[73.73321,21.14235],[73.7332,21.14832],[73.73742,21.15022],[73.73712,21.15325],[73.73408,21.15798],[73.72852,21.16194],[73.72975,21.16538],[73.74009,21.17112],[73.74019,21.16761],[73.75757,21.16743],[73.77231,21.16464],[73.7736,21.16866],[73.78135,21.1711],[73.7847,21.18399],[73.79356,21.18175],[73.8027,21.17492],[73.81576,21.17396],[73.81987,21.18673],[73.82298,21.18514],[73.8259,21.18715],[73.82605,21.20013],[73.81543,21.19735],[73.81296,21.20573],[73.81074,21.20762],[73.81181,21.23123],[73.82846,21.23998],[73.82749,21.25217],[73.82238,21.2611],[73.82287,21.27086],[73.82507,21.27136],[73.82654,21.26772],[73.84971,21.27472],[73.8597,21.27151],[73.86338,21.27266],[73.87961,21.26596],[73.89743,21.27225],[73.9021,21.27757],[73.90873,21.27867],[73.91897,21.28555],[73.92224,21.28964],[73.93242,21.29072],[73.94217,21.29927],[73.94235,21.32563],[73.94585,21.34357],[73.94918,21.35116],[73.94475,21.38112],[73.94408,21.39997],[73.93893,21.40502],[73.94692,21.40493],[73.95179,21.39527],[73.95947,21.39543],[73.95952,21.39695],[73.97045,21.39782],[73.97803,21.40734],[73.97692,21.41193],[73.98222,21.4079],[73.98698,21.41124],[74.00254,21.41746],[74.00293,21.41947],[74.00087,21.42084],[74.00262,21.42141],[74.00829,21.42287],[74.00895,21.41954],[74.01506,21.42128],[74.0234,21.41779],[74.04462,21.41919],[74.04827,21.4234],[74.0491,21.42831],[74.04768,21.43527],[74.04965,21.44021],[74.0457,21.44618],[74.04994,21.4529],[74.0532,21.45469],[74.053,21.45627],[74.05715,21.45939],[74.05967,21.4594],[74.06143,21.46197],[74.06293,21.47455],[74.06955,21.47229],[74.07276,21.46877],[74.07418,21.46563],[74.07297,21.46379],[74.07495,21.46379],[74.07393,21.46127],[74.07544,21.4598],[74.0723,21.45703],[74.09459,21.45573],[74.10071,21.44763],[74.1165,21.45241],[74.11716,21.46208],[74.12053,21.46343],[74.11996,21.46538],[74.12518,21.46665],[74.13373,21.46586],[74.13584,21.45612],[74.1483,21.458],[74.14766,21.46141],[74.15524,21.46295],[74.15881,21.46649],[74.15805,21.46755],[74.16122,21.4689],[74.17297,21.46852],[74.1735,21.46637],[74.18232,21.46925],[74.18349,21.46125],[74.18641,21.46112],[74.18773,21.45819],[74.19531,21.46053],[74.19612,21.4583],[74.19782,21.45875],[74.19716,21.46098],[74.20928,21.46219],[74.20891,21.46704],[74.21416,21.48168],[74.23435,21.48229],[74.23571,21.46777],[74.24742,21.46886],[74.25356,21.46774],[74.25592,21.47678],[74.27732,21.47937],[74.27734,21.48251],[74.30414,21.48811],[74.30389,21.49945],[74.32079,21.4985],[74.3226,21.51748],[74.32148,21.52957],[74.32525,21.53229],[74.32554,21.53607],[74.33084,21.53553],[74.33122,21.5395],[74.32793,21.53944],[74.32834,21.54278],[74.33233,21.54348],[74.33116,21.55242],[74.32518,21.55139],[74.32261,21.54911],[74.32156,21.55231],[74.31475,21.55117],[74.30324,21.55223],[74.30382,21.56547],[74.30246,21.56636],[74.29553,21.56907],[74.2956,21.56708],[74.2846,21.56643],[74.28453,21.5651],[74.27672,21.56225],[74.27853,21.5536],[74.26906,21.55293],[74.26641,21.54259],[74.26332,21.54261],[74.26318,21.53985],[74.23622,21.5397],[74.23631,21.5484],[74.23458,21.5484],[74.23494,21.55088],[74.23104,21.55095],[74.23197,21.55361],[74.22901,21.55446],[74.22757,21.54879],[74.22042,21.5469],[74.21585,21.54109],[74.20845,21.53677],[74.20291,21.53641],[74.20008,21.53284],[74.19584,21.53206],[74.19554,21.53748],[74.19321,21.53761],[74.19338,21.53938],[74.18822,21.54072],[74.18761,21.5428],[74.18272,21.54232],[74.18252,21.54545],[74.1751,21.55643],[74.17648,21.55762],[74.17586,21.569],[74.16674,21.56904],[74.15586,21.5683],[74.15396,21.55682],[74.13894,21.55503],[74.13696,21.54686],[74.13612,21.54929],[74.1298,21.55118],[74.12011,21.55139],[74.12013,21.55625],[74.11755,21.55614],[74.11556,21.5533],[74.11665,21.55084],[74.11319,21.54878],[74.10995,21.55624],[74.10446,21.55643],[74.09731,21.55525],[74.09645,21.55124],[74.08698,21.55157],[74.08504,21.55535],[74.07922,21.55442],[74.08158,21.54875],[74.07319,21.54792],[74.06697,21.55028],[74.0599,21.5503],[74.05403,21.55791],[74.05378,21.54751],[74.05118,21.54668],[74.04935,21.54823],[74.04881,21.54469],[74.04694,21.54468],[74.04748,21.54738],[74.04454,21.54816],[74.04361,21.54248],[74.03644,21.54557],[74.03831,21.54579],[74.03746,21.55063],[74.03501,21.55034],[74.03498,21.54553],[74.03091,21.54515],[74.02044,21.54996],[74.0103,21.5492],[74.00584,21.55276],[74.00345,21.5453],[74.00032,21.54565],[74.00233,21.54155],[73.99742,21.53901],[73.99581,21.53871],[73.99633,21.5402],[73.99319,21.5433],[73.98281,21.54073],[73.98108,21.54361],[73.97419,21.54328],[73.97493,21.53424],[73.98127,21.52781],[73.98227,21.5226],[73.97743,21.52168],[73.97626,21.52316],[73.97132,21.52351],[73.9663,21.52207],[73.96281,21.52769],[73.96035,21.54164],[73.95508,21.54083],[73.95418,21.5337],[73.95595,21.5253],[73.95421,21.5241],[73.95521,21.52035],[73.95212,21.51909],[73.95175,21.51269],[73.94657,21.51434],[73.94593,21.51679],[73.93206,21.51226],[73.92926,21.5237],[73.92739,21.5251],[73.92159,21.52508],[73.92175,21.52116],[73.91682,21.51959],[73.91198,21.52273],[73.90423,21.52451],[73.90532,21.51576],[73.87983,21.5052],[73.87847,21.5049],[73.87706,21.51216],[73.87201,21.51073],[73.86857,21.51085],[73.8686,21.51274],[73.8643,21.51257],[73.86632,21.50703],[73.87264,21.5064],[73.87183,21.5048],[73.86912,21.50108],[73.86436,21.50094],[73.86383,21.49817],[73.86001,21.49976],[73.85356,21.49747],[73.84606,21.5094],[73.83843,21.51556],[73.8349,21.52058],[73.83296,21.53706],[73.82914,21.54559],[73.82723,21.54585],[73.8278,21.55444],[73.8253,21.55513],[73.82228,21.56179],[73.82334,21.56439],[73.81712,21.58113],[73.81748,21.58802],[73.81542,21.58888],[73.81413,21.60109],[73.81209,21.6029],[73.80016,21.60368],[73.79667,21.60574],[73.78772,21.6165],[73.78137,21.61859],[73.78268,21.62208],[73.78051,21.62859],[73.78502,21.62901],[73.78805,21.6341],[73.80158,21.63714],[73.80471,21.63952],[73.81232,21.64008],[73.81426,21.64417],[73.81759,21.64197],[73.82173,21.64342],[73.8248,21.63978],[73.83038,21.64237],[73.8321,21.63835],[73.83603,21.63918],[73.83466,21.63435],[73.83859,21.63308],[73.84594,21.63974],[73.84977,21.63913],[73.85167,21.64648],[73.86004,21.64233],[73.86715,21.64604],[73.87419,21.64756],[73.88378,21.65334],[73.88801,21.65325],[73.88863,21.66077],[73.89459,21.67598],[73.89161,21.68106],[73.89182,21.69215],[73.8903,21.69797],[73.88389,21.70523],[73.88632,21.70667],[73.88061,21.71559],[73.86761,21.71834],[73.85836,21.7265],[73.85327,21.73538],[73.84681,21.73728],[73.83751,21.74553],[73.83366,21.75492],[73.828,21.75647],[73.82486,21.75956],[73.82374,21.7626],[73.82494,21.76523],[73.83361,21.77165],[73.8347,21.77405],[73.83414,21.7762],[73.82957,21.77755],[73.82945,21.78594],[73.8371,21.78733],[73.83816,21.78875],[73.83449,21.7921],[73.82734,21.79248],[73.82696,21.79793],[73.83295,21.80095],[73.82807,21.80407],[73.82743,21.80991],[73.82239,21.8113],[73.80784,21.80981],[73.8043,21.8197],[73.79595,21.82473],[73.80732,21.83633],[73.81386,21.83979],[73.84232,21.844],[73.86976,21.84107],[73.8758,21.84367],[73.888,21.85521],[73.90058,21.85795],[73.90782,21.85706],[73.92096,21.86103],[73.96539,21.88432],[74.0039,21.90025],[74.02358,21.91092],[74.02886,21.91214],[74.03122,21.91406],[74.03123,21.91609],[74.04789,21.925],[74.08405,21.93373],[74.1059,21.94323],[74.12822,21.94978],[74.13609,21.95018],[74.13938,21.94547],[74.14647,21.94672],[74.14685,21.95289],[74.14417,21.95313],[74.14188,21.95574],[74.14301,21.9584],[74.14755,21.96072],[74.1458,21.96207],[74.14335,21.96124],[74.14276,21.96362],[74.1413,21.96384],[74.13984,21.96764],[74.14178,21.9702],[74.14034,21.97267],[74.14421,21.9754],[74.14754,21.97415],[74.14989,21.97517],[74.14865,21.98343],[74.15059,21.98659],[74.14796,21.98848],[74.1455,21.98774],[74.14374,21.99085],[74.14022,21.99048],[74.12722,21.99559],[74.12044,21.9957],[74.11843,21.99893],[74.11491,21.9979],[74.1128,21.99945],[74.09944,21.9995],[74.09801,21.99831],[74.09677,22.0],[74.09991,22.0],[74.09968,22.00142],[74.09638,22.00989],[74.09214,22.01483],[74.095,22.01898],[74.11428,22.02444],[74.11566,22.02548],[74.11535,22.02978],[74.12123,22.03219],[74.12155,22.03467],[74.12366,22.03609],[74.14015,22.04032],[74.13899,22.0434],[74.13144,22.04622],[74.13141,22.04783],[74.13629,22.05293],[74.15502,22.05781],[74.15444,22.05894],[74.16008,22.05882],[74.16104,22.06024],[74.15862,22.06971],[74.16395,22.07344],[74.16472,22.08285],[74.17865,22.08548],[74.17594,22.08969],[74.17034,22.09181],[74.16936,22.09694],[74.16714,22.09735],[74.16929,22.1006],[74.16285,22.1018],[74.15694,22.09962],[74.15371,22.1004],[74.15256,22.10601],[74.12849,22.09465],[74.12627,22.0984],[74.12446,22.09791],[74.12885,22.12104],[74.12833,22.12449],[74.12335,22.12761],[74.12278,22.13568],[74.12456,22.13608],[74.1269,22.1431],[74.13055,22.14443],[74.13017,22.1547],[74.13145,22.15897],[74.13386,22.16054],[74.13178,22.1631],[74.12486,22.16413],[74.12144,22.1674],[74.12265,22.17206],[74.12022,22.179],[74.1208,22.18224],[74.11883,22.18298],[74.11813,22.18535],[74.12165,22.19474],[74.11738,22.20647],[74.1222,22.21043],[74.12233,22.2124],[74.11708,22.21612],[74.11273,22.21404],[74.11105,22.2181],[74.10621,22.22025],[74.09721,22.21835],[74.09633,22.21996],[74.09204,22.2205],[74.07217,22.21916],[74.06933,22.23272],[74.07404,22.23819],[74.0839,22.23925],[74.08718,22.24279],[74.08388,22.24694],[74.07504,22.24756],[74.07448,22.26564],[74.06777,22.26541],[74.06592,22.26889],[74.0588,22.27462],[74.05472,22.28284],[74.05597,22.28992],[74.05238,22.29409],[74.05432,22.29748],[74.05376,22.30375],[74.05906,22.30577],[74.05958,22.3037],[74.06244,22.30492],[74.06144,22.31168],[74.06458,22.33186],[74.07157,22.33599],[74.0722,22.34348],[74.06956,22.34895],[74.06647,22.35019],[74.06477,22.35461],[74.067,22.35634],[74.06789,22.3599],[74.07078,22.36129],[74.08261,22.36171],[74.088,22.3598],[74.09207,22.36085],[74.09567,22.37111],[74.10507,22.37182],[74.11209,22.36688],[74.11367,22.35715],[74.11776,22.35616],[74.12123,22.35767],[74.12512,22.3561],[74.12739,22.3415],[74.12531,22.33742],[74.12786,22.33274],[74.13411,22.3326],[74.14214,22.32712],[74.14448,22.32819],[74.1506,22.32684],[74.15408,22.3296],[74.1562,22.32726],[74.16457,22.3243],[74.19033,22.32026],[74.19283,22.3324],[74.1922,22.34633],[74.19343,22.34891],[74.19828,22.34412],[74.20277,22.34852],[74.20404,22.36671],[74.20783,22.36466],[74.21057,22.36069],[74.22388,22.35637],[74.22451,22.36051],[74.22214,22.36463],[74.22495,22.36875],[74.22236,22.37505],[74.22371,22.37994],[74.24329,22.37605],[74.24276,22.38242],[74.25103,22.38262],[74.25429,22.38583],[74.25674,22.39965],[74.2707,22.39269],[74.27483,22.3921],[74.27941,22.3948],[74.28906,22.39229],[74.29118,22.39401],[74.26746,22.40555],[74.27059,22.41315],[74.26261,22.41816],[74.26248,22.4236],[74.2532,22.43096],[74.25279,22.43295],[74.23628,22.4352],[74.2274,22.43892],[74.22623,22.43762],[74.22159,22.43776],[74.21524,22.4413],[74.21338,22.43151],[74.20162,22.43451],[74.20422,22.45142],[74.20246,22.45638],[74.20323,22.46704],[74.19898,22.47297],[74.1934,22.47548],[74.1879,22.47551],[74.18706,22.4721],[74.18227,22.46775],[74.17993,22.46222],[74.18058,22.45464],[74.18534,22.45096],[74.18413,22.44154],[74.1695,22.43926],[74.16975,22.43183],[74.16528,22.43021],[74.16045,22.43121],[74.15553,22.43633],[74.15254,22.44306],[74.15526,22.4541],[74.14921,22.45566],[74.14276,22.44687],[74.13585,22.44717],[74.13395,22.44592],[74.13056,22.43958],[74.1311,22.43777],[74.12903,22.43606],[74.13016,22.43504],[74.1282,22.43522],[74.12796,22.42691],[74.12629,22.42667],[74.12773,22.42643],[74.12775,22.42204],[74.12474,22.41733],[74.11911,22.41876],[74.11667,22.42445],[74.1093,22.42638],[74.10684,22.42971],[74.10491,22.42951],[74.10445,22.43627],[74.10341,22.43727],[74.10132,22.43527],[74.09975,22.43804],[74.09841,22.44872],[74.09697,22.45027],[74.1004,22.45146],[74.10156,22.45555],[74.1034,22.45574],[74.10415,22.46453],[74.09544,22.46818],[74.09064,22.46634],[74.08566,22.46991],[74.07533,22.4643],[74.076,22.46941],[74.07353,22.47765],[74.07646,22.48358],[74.07885,22.48527],[74.08217,22.48444],[74.08601,22.47681],[74.08754,22.48222],[74.0852,22.48799],[74.08619,22.49158],[74.08253,22.49571],[74.08252,22.50678],[74.07742,22.50606],[74.07196,22.50821],[74.05437,22.50956],[74.04972,22.49951],[74.04642,22.4992],[74.0438,22.49658],[74.0408,22.48655],[74.0367,22.48694],[74.03339,22.4899],[74.02938,22.50795],[74.03851,22.51584],[74.03902,22.52151],[74.03678,22.52525],[74.03789,22.53451],[74.04149,22.54225],[74.0542,22.54928],[74.07464,22.5514],[74.08408,22.54475],[74.09926,22.53835],[74.1013,22.53442],[74.1073,22.53941],[74.11184,22.53967],[74.12159,22.5282],[74.1271,22.52687],[74.12684,22.52447],[74.13054,22.52393],[74.13309,22.52025],[74.15067,22.52127],[74.15037,22.52897],[74.15607,22.53488],[74.16264,22.53808],[74.17069,22.54715],[74.18031,22.54818],[74.18951,22.5536],[74.1901,22.55947],[74.1833,22.56649],[74.18578,22.56582],[74.19359,22.56882],[74.20048,22.56573],[74.20369,22.56873],[74.2046,22.56581],[74.21003,22.56426],[74.21125,22.57486],[74.22183,22.58357],[74.22543,22.59604],[74.23112,22.60794],[74.23137,22.6118],[74.24066,22.61187],[74.24351,22.62051],[74.2496,22.61969],[74.2534,22.62148],[74.25512,22.62349],[74.25358,22.63466],[74.25882,22.63685],[74.26356,22.64397],[74.26667,22.64211],[74.26615,22.63835],[74.27182,22.63916],[74.27737,22.646],[74.29321,22.63791],[74.31197,22.63645],[74.3148,22.63387],[74.32372,22.63595],[74.32278,22.6407],[74.32935,22.64173],[74.33212,22.63872],[74.3376,22.64029],[74.35909,22.63399],[74.37451,22.63594],[74.37906,22.63443],[74.37961,22.64037],[74.38429,22.64629],[74.38066,22.6584],[74.38198,22.66751],[74.39498,22.68564],[74.3944,22.69961],[74.39781,22.70387],[74.39953,22.70938],[74.39694,22.71355],[74.4017,22.73097],[74.40891,22.74026],[74.41388,22.74304],[74.41602,22.7488],[74.41596,22.75406],[74.41792,22.75625],[74.42136,22.75675],[74.43554,22.7826],[74.43788,22.79204],[74.43378,22.8079],[74.44922,22.8083],[74.46477,22.81639],[74.4706,22.84107],[74.47604,22.8531],[74.47626,22.85533],[74.4702,22.86377],[74.46876,22.86941],[74.47025,22.87753],[74.46399,22.88644],[74.46389,22.89827],[74.46076,22.90684],[74.45754,22.91193],[74.44941,22.91739],[74.44683,22.92108],[74.44406,22.91875],[74.44095,22.91851],[74.43363,22.91249],[74.43323,22.91795],[74.41848,22.91704],[74.41052,22.91184],[74.4136,22.90609],[74.40824,22.90617],[74.40445,22.90359],[74.4041,22.8993],[74.40166,22.89773],[74.39341,22.8966],[74.38546,22.90455],[74.37756,22.9072],[74.3706,22.92173],[74.3625,22.92606],[74.35905,22.93007],[74.35735,22.93401],[74.35767,22.93921],[74.3395,22.95289],[74.33741,22.95669],[74.33936,22.96472],[74.34969,22.97147],[74.35045,22.97428],[74.36104,22.97659],[74.36546,22.9759],[74.36368,22.98167],[74.34938,23.00685],[74.34686,23.01399],[74.34638,23.02531],[74.34392,23.02971],[74.33979,23.03267],[74.32758,23.0366],[74.32193,23.04122],[74.31818,23.0621],[74.31133,23.07419],[74.29783,23.08398],[74.28287,23.08853],[74.27889,23.09219],[74.27712,23.0994],[74.28577,23.11257],[74.28712,23.11712],[74.27837,23.12499],[74.27437,23.13075],[74.26747,23.15835],[74.2611,23.16497],[74.24736,23.17143],[74.24286,23.17734],[74.2408,23.18469],[74.23164,23.17727],[74.23137,23.17893],[74.22379,23.18151],[74.21252,23.18367],[74.21256,23.18693],[74.20712,23.18909],[74.20292,23.19031],[74.20121,23.1893],[74.19578,23.18054],[74.1886,23.17815],[74.1887,23.1752],[74.18293,23.16634],[74.18542,23.15682],[74.17888,23.14728],[74.17244,23.15454],[74.16679,23.15572],[74.15448,23.15649],[74.15407,23.15204],[74.15273,23.15239],[74.14794,23.15766],[74.14526,23.16836],[74.1412,23.17315],[74.12148,23.17619],[74.11638,23.18466],[74.11902,23.1919],[74.11921,23.204],[74.13007,23.21115],[74.12814,23.21388],[74.12862,23.21666],[74.13447,23.22303],[74.13116,23.22923],[74.13373,23.22986],[74.1325,23.23159],[74.13258,23.24078],[74.13008,23.24512],[74.13201,23.2472],[74.13077,23.25649],[74.13237,23.25925],[74.13264,23.26619],[74.12793,23.26899],[74.10922,23.27436],[74.10755,23.28444],[74.10058,23.29381],[74.09617,23.29325],[74.08593,23.29804],[74.08298,23.29609],[74.07176,23.29886],[74.04829,23.29332],[74.03816,23.29345],[74.03883,23.29857],[74.0424,23.30029],[74.04486,23.30881],[74.04086,23.30873],[74.03552,23.30501],[74.03307,23.30599],[74.03075,23.31291],[74.02481,23.32106],[74.02865,23.33167],[74.00439,23.33592],[73.98758,23.33576],[73.9814,23.33814],[73.97915,23.35901],[73.98041,23.36238],[73.97706,23.36485],[73.97553,23.37152],[73.97114,23.37431],[73.96681,23.3749],[73.96176,23.37244],[73.95986,23.37771],[73.9575,23.37954],[73.95227,23.37518],[73.93801,23.36794],[73.93697,23.36058],[73.93941,23.34441],[73.93566,23.33973],[73.91858,23.33547],[73.90094,23.33597],[73.89193,23.33411],[73.8896,23.33637],[73.89266,23.34828],[73.89078,23.34889],[73.89131,23.35048],[73.88979,23.35091],[73.88723,23.35728],[73.88034,23.3585],[73.87433,23.36367],[73.87408,23.37073],[73.87246,23.37247],[73.87374,23.37515],[73.87248,23.37587],[73.87376,23.37686],[73.87297,23.37945],[73.87191,23.37726],[73.86776,23.37805],[73.86921,23.38191],[73.86636,23.38126],[73.86585,23.38422],[73.86178,23.38363],[73.86084,23.38567],[73.86338,23.38725],[73.86361,23.38949],[73.85927,23.39214],[73.85817,23.39624],[73.85004,23.40198],[73.84932,23.40548],[73.84556,23.40752],[73.84566,23.41045],[73.84087,23.41335],[73.83963,23.41882],[73.83509,23.42044],[73.83413,23.42362],[73.83023,23.42623],[73.83313,23.43582],[73.8318,23.44045],[73.82868,23.44383],[73.82871,23.44769],[73.8186,23.43846],[73.80344,23.43777],[73.79447,23.43112],[73.78628,23.43023],[73.77898,23.4313],[73.77657,23.43779],[73.77229,23.43782],[73.77056,23.44807],[73.76723,23.45312],[73.75573,23.45432],[73.75645,23.45018],[73.74988,23.44074],[73.73658,23.42981],[73.735,23.42549],[73.72875,23.42321],[73.72081,23.41013],[73.71371,23.41381],[73.71451,23.41673],[73.71122,23.42187],[73.70808,23.42232],[73.71045,23.42536],[73.70799,23.43116],[73.71165,23.43392],[73.71164,23.4355],[73.70511,23.4382],[73.70686,23.44564],[73.70427,23.45144],[73.6974,23.45667],[73.69539,23.45591],[73.69212,23.45843],[73.68523,23.45359],[73.67391,23.45411],[73.66052,23.44803],[73.64746,23.43645],[73.64619,23.44142],[73.63602,23.44906],[73.62721,23.44857],[73.63067,23.45792],[73.63432,23.46238],[73.63344,23.46995],[73.64033,23.48272],[73.63917,23.48708],[73.64072,23.49641],[73.64533,23.49769],[73.64962,23.49647],[73.65636,23.50746],[73.65532,23.5124],[73.65052,23.51855],[73.63307,23.52869],[73.63514,23.53836],[73.63311,23.55509],[73.63662,23.5646],[73.64058,23.56802],[73.64719,23.56606],[73.64968,23.5681],[73.64416,23.57226],[73.64761,23.57462],[73.64336,23.59437],[73.64503,23.59678],[73.64485,23.60411],[73.64898,23.60837],[73.65566,23.62129],[73.64067,23.62821],[73.62678,23.64187],[73.62072,23.64574],[73.61548,23.65212],[73.59818,23.65389],[73.57902,23.65261],[73.57266,23.65377],[73.56855,23.6529],[73.54647,23.62599],[73.53301,23.61955],[73.53118,23.61418],[73.52487,23.61184],[73.52308,23.6069],[73.50639,23.61903],[73.50346,23.61832],[73.5027,23.6228],[73.50379,23.62443],[73.49377,23.63234],[73.50573,23.63884],[73.50877,23.64439],[73.50582,23.64701],[73.49943,23.64682],[73.49951,23.64873],[73.49661,23.64916],[73.50388,23.65672],[73.50841,23.69549],[73.50518,23.69881],[73.50739,23.70304],[73.49066,23.7069],[73.48141,23.7042],[73.47352,23.70523],[73.47142,23.71973],[73.46037,23.72731],[73.45674,23.73352],[73.45011,23.73336],[73.44921,23.73481],[73.44668,23.7444],[73.44869,23.7511],[73.44773,23.75287],[73.43658,23.75696],[73.43189,23.75652],[73.43063,23.75804],[73.43115,23.76125],[73.42702,23.76009],[73.42433,23.76164],[73.41928,23.76951],[73.41641,23.77032],[73.41802,23.77681],[73.41078,23.78016],[73.40858,23.77917],[73.40025,23.78506],[73.39919,23.78312],[73.39446,23.78293],[73.38624,23.77666],[73.38282,23.76824],[73.37077,23.76526],[73.37152,23.77049],[73.36724,23.77437],[73.36656,23.77704],[73.36377,23.77815],[73.36333,23.78223],[73.35606,23.78502],[73.35184,23.7914],[73.35872,23.79568],[73.36791,23.81423],[73.36811,23.8226],[73.36638,23.82218],[73.36508,23.82376],[73.36855,23.83188],[73.36686,23.83664],[73.36771,23.83946],[73.35783,23.84661],[73.35384,23.85285],[73.35607,23.85457],[73.35572,23.85923],[73.35813,23.86194],[73.36112,23.8727],[73.3652,23.87548],[73.36605,23.87833],[73.36802,23.87833],[73.37101,23.89114],[73.37771,23.89615],[73.37863,23.90453],[73.38382,23.90886],[73.38746,23.91591],[73.39516,23.91902],[73.40039,23.91683],[73.40652,23.91651],[73.40899,23.92158],[73.41455,23.92159],[73.42006,23.92488],[73.42083,23.93082],[73.41692,23.93465],[73.4163,23.93787],[73.41324,23.93916],[73.41491,23.94458],[73.41303,23.94596],[73.41421,23.955],[73.41323,23.95883],[73.41604,23.97016],[73.41496,23.98578],[73.40458,23.9908],[73.39788,23.98951],[73.40375,23.9933],[73.40799,24.00809],[73.40666,24.01852],[73.39848,24.03751],[73.40276,24.03848],[73.40255,24.0443],[73.39719,24.0506],[73.3947,24.05101],[73.39521,24.05282],[73.38625,24.06473],[73.3703,24.07637],[73.36737,24.07583],[73.36532,24.07906],[73.36087,24.08128],[73.36205,24.08628],[73.36071,24.08749],[73.36088,24.09631],[73.36284,24.10063],[73.36199,24.10466],[73.34778,24.10638],[73.34408,24.10017],[73.33903,24.09841],[73.33575,24.09979],[73.33489,24.10288],[73.3334,24.10325],[73.33301,24.10869],[73.32701,24.10922],[73.32212,24.09682],[73.32595,24.07696],[73.32397,24.07413],[73.32406,24.06964],[73.31632,24.0576],[73.31739,24.05321],[73.30835,24.04793],[73.30732,24.04566],[73.30045,24.04631],[73.29736,24.04353],[73.29063,24.03326],[73.28985,24.02666],[73.28673,24.02467],[73.28614,24.02177],[73.28311,24.01887],[73.27938,24.02031],[73.27548,24.0191],[73.27047,24.02103],[73.26533,24.02032],[73.261,24.01771],[73.25844,24.01197],[73.25237,24.00948],[73.24933,24.00319],[73.24279,24.00228],[73.23988,24.00343],[73.23741,24.00744],[73.23663,24.01234],[73.23353,24.01255],[73.22975,24.01567],[73.22937,24.02211],[73.21074,24.02885],[73.21086,24.03153],[73.20891,24.03389],[73.19955,24.03623],[73.19314,24.041],[73.20238,24.05099],[73.20531,24.06139],[73.21265,24.07585],[73.20119,24.08003],[73.19435,24.08516],[73.1837,24.08546],[73.18357,24.08958],[73.17514,24.09422],[73.15892,24.09833],[73.15499,24.10869],[73.15719,24.10953],[73.15353,24.11278],[73.13812,24.12221],[73.13001,24.12228],[73.12522,24.12486],[73.12216,24.13065],[73.11042,24.14231],[73.10637,24.14201],[73.10343,24.14375],[73.10386,24.14988],[73.09916,24.15947],[73.07413,24.18053],[73.06971,24.19098],[73.06545,24.1939],[73.07093,24.19679],[73.07703,24.20518],[73.07927,24.2051],[73.07671,24.21396],[73.07901,24.22059],[73.09223,24.22334],[73.09712,24.23108],[73.09014,24.23383],[73.08804,24.23263],[73.08791,24.23382],[73.09338,24.23798],[73.09536,24.24935],[73.1036,24.25549],[73.10715,24.26394],[73.11834,24.26868],[73.12029,24.27204],[73.12395,24.27124],[73.12545,24.27343],[73.13099,24.28867],[73.13544,24.30843],[73.14087,24.31109],[73.16652,24.29925],[73.16922,24.3003],[73.17359,24.30859],[73.17372,24.31906],[73.17623,24.32473],[73.17456,24.33007],[73.17656,24.33428],[73.17635,24.33788],[73.18166,24.34332],[73.18621,24.33974],[73.18659,24.33546],[73.1885,24.33363],[73.19857,24.33193],[73.20626,24.35126],[73.20903,24.35216],[73.21926,24.3639],[73.21721,24.36752],[73.20668,24.37466],[73.19919,24.37651],[73.18147,24.36625],[73.17137,24.35542],[73.16482,24.356],[73.15856,24.3541],[73.15534,24.35614],[73.15257,24.35384],[73.14589,24.35673],[73.13347,24.36665],[73.131,24.3656],[73.1243,24.36729],[73.12092,24.37009],[73.11186,24.37341],[73.1076,24.37753],[73.10534,24.38259],[73.10227,24.38172],[73.10269,24.38743],[73.10002,24.39039],[73.09006,24.38625],[73.0875,24.38663],[73.0765,24.3966],[73.08112,24.40128],[73.08672,24.41253],[73.09019,24.41409],[73.10025,24.4261],[73.10283,24.43301],[73.09839,24.44801],[73.10006,24.45427],[73.10328,24.45576],[73.10182,24.47081],[73.09381,24.47154],[73.09113,24.4751],[73.09589,24.49012],[73.08788,24.49765],[73.08178,24.49717],[73.08044,24.49424],[73.07786,24.49477],[73.07434,24.49303],[73.07178,24.49091],[73.07306,24.48678],[73.07013,24.48687],[73.06803,24.48326],[73.06086,24.48361],[73.06108,24.48075],[73.0573,24.47769],[73.04857,24.47426],[73.04932,24.46887],[73.03707,24.46677],[73.03721,24.46444],[73.03523,24.46385],[73.03235,24.46688],[73.02894,24.46527],[73.02066,24.46585],[73.0201,24.46445],[73.01102,24.4666],[73.00382,24.46638],[73.00145,24.46928],[73.00666,24.47544],[73.00425,24.48147],[73.00098,24.48355],[72.99101,24.4776],[72.98619,24.4694],[72.96796,24.45091],[72.97487,24.44948],[72.97316,24.44368],[72.97395,24.44116],[72.98048,24.43774],[72.98121,24.43438],[72.97631,24.42756],[72.97332,24.42654],[72.97008,24.41523],[72.96836,24.41494],[72.96671,24.41092],[72.96193,24.40593],[72.95519,24.40284],[72.95361,24.39233],[72.96031,24.39098],[72.97436,24.38275],[72.97754,24.37682],[72.97763,24.37352],[72.97512,24.3688],[72.96862,24.36798],[72.95403,24.35636],[72.95094,24.35636],[72.93821,24.3483],[72.92755,24.34496],[72.91979,24.34442],[72.91363,24.338],[72.91073,24.33721],[72.89115,24.35697],[72.86997,24.36586],[72.8698,24.36378],[72.85858,24.36974],[72.85767,24.36818],[72.85568,24.36864],[72.85408,24.37131],[72.84976,24.37204],[72.83649,24.36916],[72.81478,24.37023],[72.8085,24.36676],[72.80582,24.36294],[72.77141,24.36823],[72.74939,24.36504],[72.73086,24.3643],[72.72433,24.36762],[72.7199,24.37478],[72.69191,24.40612],[72.68915,24.41173],[72.67977,24.44293],[72.6875,24.4526],[72.68823,24.45781],[72.68336,24.46388],[72.68088,24.46514],[72.67094,24.46488],[72.65633,24.46222],[72.61357,24.47231],[72.57594,24.47885],[72.53824,24.51968],[72.53598,24.51761],[72.53525,24.50567],[72.5335,24.50381],[72.52631,24.50323],[72.52019,24.5],[72.51449,24.48396],[72.5048,24.4716],[72.50444,24.45837],[72.49319,24.45908],[72.50042,24.41705],[72.47499,24.4144],[72.45724,24.4148],[72.45841,24.42487],[72.45209,24.43397],[72.45146,24.44211],[72.44804,24.44779],[72.44389,24.44996],[72.43378,24.46011],[72.43022,24.48017],[72.44293,24.50398],[72.44368,24.50898],[72.44143,24.51136],[72.44108,24.51533],[72.43631,24.51715],[72.43383,24.51588],[72.42533,24.51758],[72.42344,24.51669],[72.42015,24.5201],[72.41633,24.52117],[72.41297,24.51725],[72.40004,24.51447],[72.39172,24.51085],[72.38858,24.50768],[72.38573,24.51187],[72.38234,24.51104],[72.37969,24.51239],[72.37646,24.52469],[72.3709,24.53101],[72.36816,24.53734],[72.36751,24.53977],[72.36986,24.5437],[72.36752,24.54772],[72.36123,24.5478],[72.3605,24.55092],[72.35836,24.5509],[72.35796,24.55564],[72.35429,24.55656],[72.35373,24.56376],[72.34874,24.56245],[72.34095,24.56322],[72.33093,24.5693],[72.32687,24.55802],[72.3304,24.55454],[72.32899,24.55241],[72.32688,24.55397],[72.3236,24.55132],[72.30186,24.55021],[72.29934,24.54729],[72.29543,24.54663],[72.2893,24.54802],[72.29013,24.55074],[72.2855,24.56536],[72.27521,24.56523],[72.27131,24.56136],[72.26473,24.56028],[72.26321,24.56501],[72.2531,24.5751],[72.25148,24.58025],[72.2464,24.58561],[72.24847,24.58934],[72.25688,24.59417],[72.25845,24.5983],[72.2643,24.60006],[72.26435,24.60448],[72.27634,24.60753],[72.28535,24.60714],[72.28975,24.60387],[72.29519,24.60941],[72.29739,24.60897],[72.30325,24.60573],[72.30328,24.60343],[72.30538,24.60279],[72.30462,24.59898],[72.30728,24.59788],[72.30778,24.59589],[72.31357,24.59402],[72.33062,24.59955],[72.33559,24.59858],[72.33851,24.60015],[72.33867,24.6056],[72.34393,24.60963],[72.34531,24.61563],[72.34319,24.62119],[72.34764,24.62605],[72.34733,24.62846],[72.33795,24.63007],[72.33545,24.6333],[72.32022,24.61778],[72.31517,24.61995],[72.30499,24.61755],[72.29715,24.62479],[72.2892,24.61953],[72.28298,24.62575],[72.27366,24.62837],[72.27068,24.63052],[72.27223,24.63704],[72.27084,24.63757],[72.26789,24.6368],[72.26312,24.63093],[72.25469,24.62488],[72.24857,24.6269],[72.24229,24.63458],[72.23698,24.63539],[72.234,24.64043],[72.23037,24.64061],[72.22687,24.63916],[72.21669,24.6269],[72.21033,24.62685],[72.20221,24.62311],[72.19475,24.62302],[72.19779,24.6167],[72.19657,24.61472],[72.19203,24.62005],[72.18389,24.61973],[72.17034,24.62318],[72.16481,24.62128],[72.16033,24.63526],[72.15026,24.64367],[72.12819,24.6417],[72.12457,24.6386],[72.11699,24.64336],[72.11496,24.64843],[72.10877,24.64665],[72.10762,24.649],[72.10248,24.65046],[72.09806,24.65612],[72.08982,24.6587],[72.09002,24.66414],[72.08721,24.67002],[72.08614,24.67759],[72.09275,24.68195],[72.09116,24.69097],[72.0852,24.70641],[72.06133,24.71211],[72.04853,24.71056],[72.04258,24.70437],[72.03494,24.70245],[72.02846,24.69733],[72.01783,24.69478],[72.0125,24.69058],[72.00593,24.69043],[72.00143,24.68841],[72.0011,24.69488],[71.99516,24.69317],[71.99383,24.69506],[71.98385,24.68595],[71.98275,24.673],[71.9883,24.65753],[71.97744,24.65692],[71.96425,24.64583],[71.95528,24.64524],[71.94618,24.64109],[71.93987,24.6338],[71.93864,24.6365],[71.93601,24.6354],[71.9255,24.63604],[71.91544,24.64951],[71.91164,24.65857],[71.91701,24.66029],[71.92032,24.66416],[71.92017,24.67092],[71.91861,24.67211],[71.9075,24.67756],[71.89952,24.67674],[71.88823,24.67214],[71.88503,24.67755],[71.87655,24.68164],[71.87175,24.68177],[71.86135,24.6723],[71.85777,24.66617],[71.85749,24.6522],[71.86539,24.63071],[71.85562,24.62207],[71.85217,24.60936],[71.83783,24.6213],[71.83084,24.62339],[71.82127,24.62017],[71.81604,24.62032],[71.8059,24.62675],[71.80253,24.63113],[71.81039,24.65606],[71.80296,24.67165],[71.79153,24.67734],[71.78027,24.67491],[71.77269,24.67587],[71.76243,24.66863],[71.74774,24.66507],[71.73556,24.66005],[71.70636,24.6613],[71.6971,24.65445],[71.69043,24.6542],[71.67745,24.64631],[71.66448,24.64344],[71.66271,24.64442],[71.65537,24.63919],[71.64724,24.64458],[71.64392,24.64393],[71.63994,24.65128],[71.63875,24.65954],[71.62888,24.65992],[71.62737,24.66427],[71.62474,24.66386],[71.62686,24.66712],[71.62415,24.66972],[71.61926,24.6674],[71.61682,24.67087],[71.6111,24.67299],[71.6076,24.67655],[71.58975,24.66716],[71.58453,24.67005],[71.5777,24.6814],[71.573,24.68342],[71.56021,24.67852],[71.54183,24.67576],[71.5289,24.6847],[71.52134,24.68317],[71.51375,24.67892],[71.50264,24.68214],[71.5,24.68043],[71.49136,24.67926],[71.47917,24.67965],[71.46199,24.66652],[71.44772,24.66839],[71.42901,24.65692],[71.42258,24.64783],[71.39838,24.64078],[71.39623,24.63503],[71.39116,24.63129],[71.38299,24.63366],[71.38129,24.62887],[71.3778,24.62597],[71.37327,24.6277],[71.36934,24.62642],[71.36713,24.6293],[71.35864,24.63075],[71.34817,24.66094],[71.3135,24.64765],[71.30437,24.63528],[71.30455,24.62866],[71.298,24.62612],[71.29882,24.62419],[71.29115,24.61762],[71.28591,24.61683]],[[74.1657,22.41612],[74.17214,22.41875],[74.17523,22.41806],[74.17545,22.40156],[74.17966,22.39684],[74.17916,22.38799],[74.16515,22.39725],[74.16504,22.40587],[74.15737,22.41164],[74.15811,22.41428],[74.16068,22.41363],[74.1657,22.41612]],[[72.9553,20.31051],[72.95277,20.31421],[72.95574,20.31808],[72.95705,20.32372],[72.95935,20.32559],[72.96112,20.33242],[72.9791,20.33224],[72.98239,20.31831],[72.97286,20.30865],[72.97357,20.30556],[72.97084,20.29686],[72.96841,20.29793],[72.96449,20.30464],[72.9553,20.31051]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-HP","area_level":"State","area_name":"Himachal Pradesh","geometry_source":"SOI_States","same_as":"LGD/2/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.92211,30.8822],[76.92203,30.88261],[76.92173,30.88309],[76.92057,30.88339],[76.91979,30.88384],[76.91804,30.88594],[76.91769,30.88646],[76.91749,30.88628],[76.91726,30.88565],[76.91715,30.88466],[76.9172,30.88423],[76.91741,30.88346],[76.91773,30.88305],[76.91812,30.88271],[76.91955,30.88222],[76.91982,30.88199],[76.92024,30.88199],[76.92126,30.88125],[76.92152,30.88097],[76.92191,30.88069],[76.92235,30.88047],[76.92227,30.87927],[76.9225,30.87825],[76.92273,30.87747],[76.92302,30.87684],[76.92351,30.87629],[76.92424,30.87645],[76.92371,30.87785],[76.92311,30.87991],[76.92278,30.88034],[76.92211,30.8822]]],[[[76.80258,33.25385],[76.79915,33.25624],[76.793,33.25636],[76.78484,33.25346],[76.77743,33.25377],[76.77174,33.25102],[76.77069,33.24944],[76.77312,33.24215],[76.77941,33.23812],[76.77584,33.22049],[76.77161,33.21856],[76.77095,33.21304],[76.76659,33.21084],[76.76624,33.20789],[76.75781,33.19539],[76.75009,33.19149],[76.75018,33.18806],[76.74676,33.18308],[76.74682,33.17841],[76.72895,33.1767],[76.71997,33.18168],[76.70932,33.1807],[76.70726,33.17687],[76.69963,33.17317],[76.6859,33.17352],[76.67166,33.17066],[76.66461,33.17128],[76.655,33.16375],[76.64837,33.164],[76.64444,33.16187],[76.63941,33.16166],[76.62338,33.16691],[76.61257,33.17338],[76.61107,33.18734],[76.60626,33.19043],[76.60134,33.18861],[76.59863,33.19027],[76.59718,33.19572],[76.59923,33.20307],[76.59589,33.20591],[76.59112,33.20486],[76.58337,33.20662],[76.57266,33.20633],[76.56165,33.20954],[76.54719,33.19855],[76.53686,33.20012],[76.52288,33.19588],[76.50931,33.19584],[76.50175,33.18988],[76.48064,33.17887],[76.47278,33.17976],[76.46639,33.18241],[76.45437,33.17944],[76.44483,33.18147],[76.43571,33.18029],[76.42826,33.18197],[76.42033,33.18766],[76.41416,33.18505],[76.4039,33.18579],[76.4011,33.18289],[76.39785,33.18212],[76.39089,33.17385],[76.37661,33.16533],[76.36846,33.15346],[76.3621,33.1532],[76.345,33.14364],[76.3263,33.12734],[76.31486,33.12505],[76.31341,33.12267],[76.30522,33.11962],[76.30029,33.11235],[76.28595,33.10239],[76.28848,33.09872],[76.28305,33.08636],[76.28282,33.07684],[76.28366,33.07191],[76.28929,33.06794],[76.29041,33.05985],[76.2897,33.0568],[76.27632,33.05105],[76.27495,33.04076],[76.27291,33.03705],[76.25535,33.03405],[76.24623,33.02728],[76.24277,33.02082],[76.22071,33.02288],[76.21233,33.01645],[76.2035,33.01599],[76.18009,33.02054],[76.17559,33.01813],[76.1679,33.00856],[76.16034,33.00663],[76.13631,33.00959],[76.1072,33.00606],[76.10793,33.0],[76.1038,32.99119],[76.10629,32.98688],[76.09416,32.96516],[76.09218,32.96334],[76.08224,32.96157],[76.08302,32.95525],[76.06831,32.9519],[76.06126,32.94095],[76.03883,32.93575],[76.03436,32.93174],[76.032,32.92691],[76.03314,32.92137],[76.02719,32.91571],[76.00912,32.9087],[76.00234,32.90152],[75.99895,32.90204],[75.99651,32.89935],[75.98124,32.8951],[75.97537,32.88648],[75.96971,32.88505],[75.95011,32.87283],[75.94106,32.87828],[75.92827,32.88979],[75.91886,32.90576],[75.91293,32.90671],[75.90385,32.91279],[75.89914,32.91221],[75.88875,32.91454],[75.88328,32.91868],[75.87679,32.91948],[75.873,32.92385],[75.86708,32.92276],[75.85933,32.9254],[75.85185,32.92493],[75.84519,32.92846],[75.8377,32.92802],[75.83264,32.92403],[75.82427,32.91131],[75.81895,32.90753],[75.81715,32.89937],[75.81259,32.89311],[75.79625,32.88426],[75.80598,32.8768],[75.80947,32.86931],[75.81083,32.86033],[75.81693,32.85879],[75.81862,32.85273],[75.82636,32.85001],[75.82988,32.84503],[75.84047,32.84343],[75.84244,32.83769],[75.84608,32.83507],[75.84819,32.83648],[75.85266,32.83438],[75.86563,32.8203],[75.86504,32.81338],[75.87909,32.81121],[75.88421,32.80193],[75.88582,32.78225],[75.8965,32.77492],[75.89795,32.76917],[75.90478,32.76478],[75.92135,32.74771],[75.92295,32.74368],[75.91833,32.73482],[75.91829,32.72715],[75.90695,32.71607],[75.90483,32.70889],[75.89738,32.69754],[75.90046,32.69353],[75.89719,32.68552],[75.89723,32.67747],[75.89883,32.67319],[75.89693,32.6721],[75.89754,32.66978],[75.89307,32.6664],[75.89218,32.6588],[75.88583,32.65218],[75.88677,32.6504],[75.89311,32.64861],[75.89784,32.65432],[75.90626,32.65814],[75.91499,32.6531],[75.91503,32.6436],[75.9188,32.64456],[75.92031,32.64289],[75.92341,32.64274],[75.93323,32.64711],[75.93381,32.64265],[75.92881,32.63717],[75.93087,32.63176],[75.92734,32.63133],[75.9242,32.63675],[75.91863,32.63311],[75.91913,32.62969],[75.9155,32.62771],[75.91858,32.62172],[75.91636,32.61443],[75.90591,32.60759],[75.90503,32.60037],[75.89769,32.59066],[75.89273,32.58896],[75.88404,32.58982],[75.87895,32.58698],[75.87993,32.57799],[75.87771,32.56915],[75.86974,32.5661],[75.86614,32.56246],[75.87333,32.55413],[75.87321,32.54947],[75.8549,32.5369],[75.85564,32.53004],[75.85383,32.5277],[75.83826,32.52232],[75.83669,32.51847],[75.83882,32.5137],[75.83153,32.51438],[75.83033,32.51324],[75.83221,32.5107],[75.83579,32.51156],[75.84012,32.50937],[75.84413,32.50266],[75.84415,32.49966],[75.85343,32.48752],[75.8764,32.47034],[75.88079,32.46417],[75.88591,32.46363],[75.90277,32.45233],[75.90103,32.44893],[75.90573,32.44088],[75.90555,32.43766],[75.92018,32.43009],[75.91994,32.42305],[75.91669,32.42001],[75.92159,32.41023],[75.93028,32.40223],[75.93115,32.39942],[75.93799,32.39754],[75.93651,32.39742],[75.93309,32.39158],[75.92873,32.39461],[75.92363,32.39123],[75.92003,32.39681],[75.91772,32.39483],[75.91452,32.39552],[75.90798,32.39334],[75.90494,32.39598],[75.90208,32.3941],[75.8939,32.3933],[75.88671,32.3962],[75.8736,32.39568],[75.86474,32.38879],[75.8565,32.38487],[75.85241,32.37949],[75.84477,32.36486],[75.8455,32.35907],[75.84381,32.35531],[75.83445,32.35728],[75.82749,32.35023],[75.81121,32.34849],[75.80751,32.34071],[75.81295,32.33506],[75.81483,32.33018],[75.80157,32.32836],[75.78172,32.31011],[75.77232,32.28936],[75.74667,32.27722],[75.7132,32.27218],[75.65809,32.25113],[75.64087,32.25222],[75.63671,32.24995],[75.63205,32.24405],[75.61846,32.23757],[75.61805,32.23581],[75.62226,32.23387],[75.63561,32.23167],[75.63732,32.22272],[75.63665,32.21984],[75.63261,32.21716],[75.6263,32.21602],[75.62583,32.20983],[75.62744,32.20684],[75.62377,32.19004],[75.63157,32.1896],[75.63304,32.18687],[75.63752,32.18704],[75.63772,32.1925],[75.64537,32.19248],[75.65534,32.19677],[75.65789,32.19382],[75.66192,32.19291],[75.66312,32.18958],[75.65988,32.18781],[75.65936,32.18371],[75.65669,32.18289],[75.65901,32.18278],[75.65831,32.17817],[75.66702,32.17839],[75.66615,32.16474],[75.66369,32.16429],[75.66346,32.16218],[75.67268,32.15922],[75.66002,32.13665],[75.6257,32.11874],[75.62727,32.11733],[75.62646,32.1074],[75.61981,32.09743],[75.61428,32.09441],[75.60016,32.09244],[75.59581,32.08574],[75.59691,32.08209],[75.59459,32.0784],[75.59579,32.07443],[75.59482,32.06947],[75.60003,32.06867],[75.60155,32.06554],[75.6307,32.07419],[75.63429,32.07124],[75.64622,32.07274],[75.65432,32.07732],[75.66292,32.07573],[75.66324,32.07401],[75.67425,32.0704],[75.67412,32.06711],[75.67767,32.06333],[75.69291,32.06043],[75.70332,32.05515],[75.71207,32.03998],[75.72386,32.03259],[75.74295,32.03945],[75.75084,32.03768],[75.76498,32.01991],[75.77979,32.00465],[75.79966,31.99375],[75.82171,31.98392],[75.85106,31.98201],[75.85698,31.9738],[75.87426,31.96946],[75.88303,31.96889],[75.88268,31.96582],[75.8925,31.96178],[75.90371,31.95272],[75.91041,31.95011],[75.91157,31.93982],[75.91556,31.93101],[75.93665,31.89882],[75.93875,31.89105],[75.94512,31.88361],[75.9612,31.85485],[75.96597,31.83827],[75.97091,31.83342],[75.97123,31.82846],[75.97486,31.82835],[75.98649,31.81792],[75.98654,31.81224],[75.9835,31.81161],[75.98195,31.814],[75.97857,31.813],[75.97561,31.81875],[75.97327,31.81843],[75.96941,31.82383],[75.96737,31.82381],[75.9581,31.81841],[75.95699,31.8163],[75.9475,31.81301],[75.94182,31.81269],[75.93668,31.81541],[75.95307,31.78957],[75.95312,31.78329],[75.96022,31.78113],[75.96323,31.77388],[75.96341,31.76879],[75.96624,31.76654],[75.97066,31.75649],[75.97235,31.75096],[75.97112,31.74918],[75.97515,31.74373],[75.97542,31.74251],[75.97248,31.74145],[75.97265,31.73856],[75.97445,31.73488],[75.97842,31.73366],[75.97946,31.72602],[75.98322,31.72147],[75.98305,31.71881],[75.98872,31.7127],[75.98895,31.70767],[75.99296,31.7034],[75.99165,31.70142],[75.9931,31.69685],[75.99835,31.68956],[76.00078,31.68853],[76.00143,31.68337],[76.00574,31.676],[76.00673,31.66314],[76.00966,31.65335],[76.01965,31.64886],[76.01738,31.6466],[76.02227,31.63961],[76.01794,31.63313],[76.02451,31.62457],[76.02862,31.62288],[76.02929,31.61892],[76.03668,31.61325],[76.03788,31.60952],[76.04135,31.61068],[76.04617,31.60364],[76.04856,31.60271],[76.05376,31.60586],[76.05585,31.6055],[76.05822,31.60177],[76.05752,31.59746],[76.05881,31.59594],[76.05378,31.59322],[76.05802,31.58885],[76.05629,31.58533],[76.05971,31.58132],[76.06456,31.57963],[76.06668,31.57322],[76.07252,31.56974],[76.07331,31.56393],[76.07738,31.56076],[76.08196,31.55186],[76.08515,31.54852],[76.08923,31.54762],[76.08966,31.5451],[76.0919,31.54415],[76.09218,31.54071],[76.09861,31.53725],[76.09942,31.53504],[76.09807,31.53265],[76.10266,31.52506],[76.1019,31.52239],[76.10369,31.52058],[76.10644,31.51004],[76.11003,31.50687],[76.11295,31.50012],[76.12069,31.49766],[76.11916,31.49316],[76.12075,31.4893],[76.11705,31.48301],[76.1209,31.48015],[76.12165,31.47732],[76.1277,31.47453],[76.12871,31.47178],[76.13069,31.47104],[76.13028,31.46505],[76.13468,31.46141],[76.13545,31.45867],[76.13313,31.45189],[76.13899,31.4487],[76.14043,31.44158],[76.14495,31.43679],[76.14532,31.43413],[76.15231,31.43362],[76.15672,31.43076],[76.16254,31.42117],[76.16013,31.41539],[76.16831,31.41044],[76.16654,31.40575],[76.16979,31.39895],[76.16857,31.39625],[76.15402,31.3829],[76.14728,31.3803],[76.1473,31.36463],[76.14863,31.36093],[76.14689,31.35898],[76.14898,31.35742],[76.14936,31.35326],[76.15212,31.35272],[76.15331,31.34954],[76.15769,31.34706],[76.159,31.34369],[76.1761,31.34197],[76.17882,31.34047],[76.18138,31.33365],[76.17982,31.30653],[76.18432,31.30565],[76.1863,31.30209],[76.19099,31.29999],[76.21397,31.29939],[76.23914,31.30885],[76.25099,31.30767],[76.25671,31.31034],[76.26481,31.31],[76.26934,31.31192],[76.27081,31.30237],[76.27555,31.3004],[76.28691,31.30735],[76.28924,31.30622],[76.29043,31.30918],[76.30391,31.31358],[76.31079,31.31795],[76.31057,31.31916],[76.32238,31.32161],[76.31352,31.32914],[76.30765,31.34235],[76.33146,31.34642],[76.33021,31.3481],[76.3356,31.34949],[76.3375,31.33983],[76.34391,31.3402],[76.34503,31.34305],[76.34687,31.34319],[76.34753,31.34667],[76.35161,31.34658],[76.35148,31.34524],[76.35316,31.34496],[76.35354,31.34786],[76.34712,31.34895],[76.34622,31.35486],[76.34228,31.35496],[76.34292,31.36345],[76.34049,31.36336],[76.34161,31.37878],[76.32976,31.37905],[76.33168,31.38407],[76.33174,31.38728],[76.33046,31.38726],[76.33109,31.40163],[76.34205,31.40139],[76.34295,31.39862],[76.34293,31.40254],[76.34587,31.40308],[76.34733,31.39816],[76.35228,31.39831],[76.35834,31.40355],[76.36726,31.40437],[76.37173,31.40946],[76.37223,31.41397],[76.37045,31.41729],[76.37303,31.41734],[76.3713,31.42017],[76.37252,31.42499],[76.37037,31.43007],[76.3713,31.43298],[76.37317,31.43333],[76.37311,31.43713],[76.37621,31.43748],[76.3796,31.43331],[76.37955,31.42844],[76.38392,31.4259],[76.38284,31.42363],[76.38599,31.42182],[76.38974,31.41652],[76.38755,31.40944],[76.39708,31.40792],[76.39956,31.39975],[76.40357,31.39583],[76.40328,31.39239],[76.39812,31.39377],[76.39345,31.39119],[76.39271,31.38906],[76.40061,31.37957],[76.40368,31.37828],[76.40757,31.37078],[76.40726,31.36728],[76.41956,31.3493],[76.42409,31.34931],[76.42679,31.34486],[76.4252,31.33958],[76.43233,31.32656],[76.43587,31.32637],[76.43754,31.32221],[76.44322,31.31753],[76.44685,31.31698],[76.45431,31.31228],[76.46349,31.30195],[76.46281,31.29878],[76.45722,31.29513],[76.44037,31.28789],[76.43999,31.27872],[76.4413,31.27922],[76.44272,31.27728],[76.45937,31.28623],[76.45955,31.28892],[76.4635,31.29412],[76.47437,31.30235],[76.47913,31.30867],[76.48517,31.3045],[76.48801,31.29674],[76.49102,31.29423],[76.49089,31.28825],[76.49421,31.28905],[76.49672,31.28534],[76.49491,31.28082],[76.49757,31.26986],[76.50095,31.27003],[76.50391,31.26688],[76.5064,31.26772],[76.52165,31.28033],[76.52743,31.27717],[76.52794,31.27343],[76.52971,31.27226],[76.52899,31.27083],[76.53055,31.27105],[76.52859,31.2681],[76.5289,31.26565],[76.52393,31.26228],[76.5238,31.25814],[76.53143,31.25639],[76.53934,31.26105],[76.53998,31.26626],[76.53773,31.27055],[76.54109,31.27496],[76.54293,31.28243],[76.5513,31.27875],[76.54883,31.27427],[76.55021,31.26987],[76.54747,31.26727],[76.54847,31.26606],[76.54361,31.2589],[76.54427,31.25617],[76.54921,31.25275],[76.55284,31.25512],[76.55648,31.2524],[76.56002,31.25276],[76.56546,31.26179],[76.56954,31.26141],[76.57196,31.26479],[76.5713,31.26617],[76.57515,31.27023],[76.57915,31.27111],[76.58351,31.27615],[76.58775,31.2742],[76.59235,31.26836],[76.59184,31.26593],[76.59627,31.26116],[76.60108,31.25909],[76.6119,31.24912],[76.61029,31.24381],[76.59834,31.23955],[76.59471,31.23424],[76.59522,31.22686],[76.59279,31.22583],[76.59161,31.22295],[76.58854,31.22295],[76.58901,31.21929],[76.59237,31.2175],[76.59057,31.21453],[76.59268,31.21476],[76.59257,31.21126],[76.60082,31.21259],[76.60102,31.2148],[76.60353,31.21436],[76.60635,31.21661],[76.61296,31.21737],[76.62765,31.22622],[76.63154,31.22359],[76.63536,31.22438],[76.64167,31.22302],[76.63711,31.22066],[76.63686,31.21761],[76.63456,31.2178],[76.64254,31.21427],[76.64542,31.20906],[76.63536,31.20195],[76.61779,31.19286],[76.61488,31.18964],[76.61346,31.18413],[76.60978,31.18097],[76.59682,31.17799],[76.59857,31.17454],[76.60321,31.17505],[76.60491,31.17674],[76.60715,31.17425],[76.60553,31.17239],[76.6076,31.17065],[76.6031,31.16473],[76.60526,31.16017],[76.60233,31.15297],[76.60605,31.15169],[76.60746,31.14869],[76.60993,31.14957],[76.6123,31.14803],[76.60912,31.14321],[76.61041,31.14059],[76.60405,31.13337],[76.605,31.13079],[76.60089,31.12838],[76.602,31.12354],[76.61323,31.1223],[76.61662,31.11607],[76.62384,31.11639],[76.62498,31.11516],[76.63102,31.11691],[76.63328,31.11554],[76.63623,31.11649],[76.63858,31.108],[76.63741,31.10313],[76.63191,31.09997],[76.6322,31.09781],[76.62537,31.09077],[76.62315,31.07963],[76.61658,31.07771],[76.61721,31.0676],[76.62295,31.05457],[76.61097,31.04583],[76.61608,31.03651],[76.61677,31.03048],[76.62295,31.0258],[76.62905,31.02362],[76.62692,31.02308],[76.62647,31.02113],[76.62501,30.99864],[76.63373,30.99605],[76.63848,30.99014],[76.65162,30.98783],[76.66149,30.98074],[76.66441,30.98175],[76.67312,30.97438],[76.67386,30.96871],[76.68395,30.96786],[76.70055,30.97098],[76.7085,30.97029],[76.71176,30.96461],[76.71722,30.96011],[76.72234,30.9615],[76.73371,30.94934],[76.73714,30.94961],[76.73617,30.94711],[76.73772,30.94044],[76.73658,30.93837],[76.73978,30.93618],[76.73943,30.93379],[76.74696,30.93014],[76.7485,30.92673],[76.75652,30.92815],[76.75985,30.92633],[76.76019,30.92293],[76.76633,30.92107],[76.76666,30.91709],[76.77222,30.91006],[76.77187,30.90684],[76.77609,30.90597],[76.78683,30.91334],[76.79816,30.91524],[76.81114,30.92401],[76.82311,30.92818],[76.8293,30.91662],[76.82646,30.91313],[76.82998,30.90714],[76.83404,30.9045],[76.84104,30.89166],[76.84459,30.88926],[76.85109,30.88995],[76.85606,30.88424],[76.8604,30.88367],[76.863,30.87762],[76.86719,30.87604],[76.86958,30.87312],[76.87837,30.87574],[76.87595,30.8809],[76.8853,30.88296],[76.88733,30.88553],[76.89535,30.88698],[76.89495,30.89042],[76.89909,30.8927],[76.90862,30.89416],[76.90953,30.897],[76.91687,30.90077],[76.91795,30.88758],[76.92055,30.88725],[76.92139,30.88505],[76.92566,30.88481],[76.92746,30.88596],[76.92482,30.88991],[76.92839,30.89145],[76.93096,30.88774],[76.93647,30.88464],[76.93615,30.87777],[76.93015,30.87624],[76.93107,30.87316],[76.92658,30.87257],[76.92839,30.87142],[76.93311,30.87444],[76.9364,30.87457],[76.93838,30.87106],[76.93546,30.86969],[76.94303,30.85997],[76.94383,30.85294],[76.94862,30.85337],[76.95125,30.85052],[76.944,30.83766],[76.94895,30.82443],[76.94264,30.81743],[76.94594,30.81842],[76.94861,30.8167],[76.94891,30.81407],[76.9508,30.81383],[76.95189,30.81756],[76.96007,30.82731],[76.96208,30.82139],[76.96209,30.82362],[76.96512,30.82556],[76.97046,30.82465],[76.97391,30.81854],[76.97817,30.81691],[76.97758,30.81235],[76.98452,30.81226],[76.98659,30.81399],[76.99724,30.81219],[77.00016,30.81073],[77.00278,30.80564],[77.01069,30.8097],[77.01252,30.80919],[77.01196,30.80014],[77.01513,30.79309],[77.01241,30.78803],[77.01786,30.78603],[77.0166,30.78572],[77.01548,30.78088],[77.0169,30.7801],[77.01823,30.78277],[77.01859,30.7803],[77.01425,30.77566],[77.00897,30.77355],[77.00587,30.77411],[77.00127,30.77044],[77.00794,30.76919],[77.01042,30.76703],[77.01469,30.76786],[77.01861,30.76554],[77.01893,30.75469],[77.01624,30.75033],[77.02038,30.75245],[77.02109,30.74888],[77.01775,30.74828],[77.01751,30.74342],[77.027,30.73687],[77.03309,30.73864],[77.0335,30.74029],[77.04562,30.74133],[77.04162,30.7502],[77.04479,30.75164],[77.04838,30.74923],[77.04719,30.75295],[77.05547,30.74543],[77.06258,30.74568],[77.06806,30.74094],[77.07802,30.74401],[77.09353,30.74233],[77.10126,30.734],[77.10951,30.72918],[77.1141,30.72857],[77.11536,30.72482],[77.11146,30.72143],[77.11348,30.72079],[77.11373,30.71819],[77.12034,30.71878],[77.12439,30.72177],[77.12796,30.7161],[77.12885,30.71075],[77.13761,30.70618],[77.14219,30.69946],[77.14788,30.69947],[77.15483,30.6926],[77.16121,30.69093],[77.16719,30.6839],[77.16175,30.68305],[77.16089,30.68021],[77.16658,30.67485],[77.16853,30.66954],[77.16822,30.66408],[77.16281,30.65468],[77.16304,30.65084],[77.16476,30.65126],[77.16771,30.64237],[77.17691,30.63697],[77.17334,30.63332],[77.1714,30.62755],[77.17255,30.61954],[77.17058,30.61365],[77.1727,30.61114],[77.1708,30.60437],[77.17377,30.60055],[77.16427,30.59437],[77.16557,30.5916],[77.15941,30.58887],[77.16111,30.58661],[77.15764,30.58399],[77.15317,30.58336],[77.14821,30.57675],[77.14018,30.57808],[77.13765,30.57162],[77.13829,30.56894],[77.13428,30.56955],[77.12173,30.56294],[77.12793,30.55672],[77.13568,30.54302],[77.14536,30.53645],[77.15232,30.53431],[77.17034,30.53337],[77.17288,30.53231],[77.17258,30.53021],[77.17446,30.52921],[77.18119,30.52788],[77.18722,30.52372],[77.19504,30.52257],[77.19786,30.5195],[77.19681,30.51729],[77.20132,30.5153],[77.20939,30.50003],[77.21304,30.49639],[77.20907,30.48274],[77.21351,30.46841],[77.21652,30.47067],[77.22101,30.4799],[77.22809,30.48545],[77.23034,30.48334],[77.23238,30.4845],[77.23751,30.48267],[77.24153,30.48306],[77.251,30.47698],[77.25266,30.47847],[77.25476,30.47665],[77.26536,30.47683],[77.26615,30.47434],[77.27245,30.46955],[77.27426,30.45875],[77.27826,30.45846],[77.27973,30.46025],[77.28333,30.45777],[77.28809,30.45765],[77.29117,30.45923],[77.28988,30.4604],[77.29107,30.46061],[77.29285,30.45951],[77.29182,30.45699],[77.29439,30.45451],[77.30392,30.45199],[77.30783,30.45273],[77.30683,30.45025],[77.30872,30.44916],[77.31667,30.44814],[77.31923,30.4503],[77.31924,30.44796],[77.3211,30.44807],[77.32588,30.45168],[77.32823,30.45575],[77.33267,30.45766],[77.34188,30.45994],[77.34669,30.45783],[77.35358,30.46075],[77.35481,30.4557],[77.36346,30.44325],[77.36398,30.43437],[77.36723,30.44222],[77.37768,30.44087],[77.38756,30.442],[77.39049,30.4414],[77.38967,30.43476],[77.39137,30.43167],[77.399,30.43138],[77.40022,30.4288],[77.40353,30.43088],[77.40831,30.42872],[77.40652,30.42791],[77.40614,30.4256],[77.40399,30.42533],[77.40434,30.42214],[77.39864,30.41742],[77.40523,30.41019],[77.40954,30.40979],[77.40948,30.41534],[77.41587,30.41909],[77.41742,30.42538],[77.42197,30.42512],[77.43598,30.43278],[77.44274,30.43974],[77.44542,30.44476],[77.44963,30.4485],[77.45159,30.44827],[77.45612,30.45854],[77.45901,30.4581],[77.4662,30.45001],[77.46144,30.44388],[77.46156,30.43461],[77.45396,30.43373],[77.45369,30.43035],[77.44636,30.42294],[77.445,30.41867],[77.43376,30.41702],[77.43038,30.41169],[77.42382,30.41075],[77.42289,30.40408],[77.43849,30.40404],[77.44532,30.396],[77.45445,30.40081],[77.46271,30.40098],[77.46567,30.4025],[77.4735,30.401],[77.47954,30.40602],[77.49294,30.41169],[77.49871,30.40582],[77.50161,30.4087],[77.49995,30.41888],[77.50299,30.42983],[77.51538,30.44514],[77.5198,30.44539],[77.52555,30.44053],[77.52543,30.43332],[77.52883,30.42241],[77.53639,30.41076],[77.54796,30.40037],[77.54679,30.39601],[77.55714,30.38808],[77.58016,30.37734],[77.58563,30.37947],[77.5847,30.38529],[77.57512,30.39921],[77.57232,30.41045],[77.57427,30.41338],[77.58619,30.42158],[77.59184,30.42341],[77.59613,30.42729],[77.62268,30.43466],[77.62595,30.43469],[77.63192,30.43125],[77.637,30.43319],[77.6415,30.43179],[77.64507,30.43255],[77.64865,30.44032],[77.649,30.44515],[77.65237,30.44805],[77.66298,30.44704],[77.67077,30.44419],[77.69025,30.44802],[77.69794,30.45586],[77.7072,30.45924],[77.72098,30.473],[77.73172,30.47314],[77.7394,30.47602],[77.76436,30.49108],[77.77567,30.49431],[77.78307,30.50058],[77.79986,30.50106],[77.80829,30.50478],[77.81739,30.50633],[77.82022,30.52499],[77.82526,30.52594],[77.82682,30.52775],[77.82767,30.53274],[77.81994,30.54682],[77.8226,30.55378],[77.81785,30.56102],[77.81399,30.56008],[77.80637,30.55449],[77.79964,30.55766],[77.79718,30.55406],[77.79411,30.5532],[77.78357,30.55983],[77.77403,30.55784],[77.76752,30.56535],[77.76714,30.57115],[77.76066,30.57752],[77.75664,30.58561],[77.74838,30.59145],[77.74315,30.59311],[77.74325,30.59616],[77.74679,30.59746],[77.74325,30.60149],[77.7461,30.60389],[77.7519,30.60178],[77.75564,30.60469],[77.76435,30.59592],[77.77167,30.5969],[77.77241,30.59855],[77.77022,30.6049],[77.77107,30.61053],[77.76894,30.61452],[77.77111,30.61638],[77.78025,30.61284],[77.78672,30.61431],[77.79626,30.61365],[77.79255,30.62091],[77.78614,30.62442],[77.78605,30.62994],[77.79062,30.634],[77.78639,30.6367],[77.78674,30.6417],[77.78123,30.64667],[77.78603,30.65182],[77.78687,30.65498],[77.79249,30.65693],[77.79253,30.65869],[77.7895,30.66223],[77.78445,30.65956],[77.78119,30.65997],[77.77458,30.66476],[77.77251,30.6691],[77.76421,30.67082],[77.75975,30.67309],[77.75916,30.67577],[77.74741,30.67985],[77.74675,30.68304],[77.74841,30.68775],[77.74694,30.69443],[77.75258,30.69665],[77.7504,30.70011],[77.75582,30.70692],[77.74562,30.71387],[77.74741,30.71697],[77.74669,30.71972],[77.73659,30.72415],[77.7373,30.73034],[77.73319,30.73534],[77.72836,30.73414],[77.72153,30.7416],[77.70879,30.73972],[77.70505,30.74275],[77.70243,30.74627],[77.70517,30.75078],[77.70896,30.75249],[77.70378,30.76516],[77.71512,30.77072],[77.72136,30.77579],[77.73187,30.79187],[77.73294,30.80108],[77.73497,30.80448],[77.7456,30.81314],[77.74837,30.82163],[77.76128,30.82607],[77.75768,30.83513],[77.74402,30.84659],[77.74587,30.85112],[77.75418,30.85547],[77.75719,30.85998],[77.7561,30.87268],[77.75822,30.8768],[77.76321,30.8804],[77.77341,30.87754],[77.77613,30.87541],[77.77738,30.86315],[77.77923,30.86037],[77.78624,30.85715],[77.80568,30.85321],[77.80359,30.86499],[77.79886,30.86804],[77.80138,30.89332],[77.80883,30.8967],[77.81528,30.90438],[77.81587,30.91032],[77.81094,30.91663],[77.8133,30.92187],[77.81153,30.92327],[77.80493,30.92359],[77.79182,30.92173],[77.78653,30.92026],[77.78473,30.91715],[77.78265,30.91673],[77.7718,30.91861],[77.76752,30.91733],[77.76589,30.91968],[77.7628,30.91818],[77.76394,30.93045],[77.75274,30.93381],[77.75404,30.93754],[77.75075,30.94349],[77.74901,30.95348],[77.75409,30.96448],[77.76659,30.97013],[77.76917,30.97419],[77.77238,30.97435],[77.79367,30.96875],[77.81398,30.95383],[77.82436,30.9505],[77.82862,30.95329],[77.83473,30.95205],[77.8376,30.95317],[77.83769,30.95518],[77.83219,30.95959],[77.82419,30.95711],[77.81438,30.96178],[77.8163,30.97278],[77.82243,30.97655],[77.82406,30.98047],[77.82513,30.98509],[77.82417,30.98842],[77.83182,30.99399],[77.82199,31.00429],[77.82501,31.0098],[77.80994,31.01099],[77.80751,31.01621],[77.807,31.02677],[77.81145,31.03163],[77.81747,31.03304],[77.82288,31.02928],[77.82982,31.02876],[77.82137,31.04274],[77.82162,31.04671],[77.81604,31.04998],[77.81679,31.05669],[77.81136,31.0591],[77.82296,31.05866],[77.82205,31.05519],[77.82436,31.05545],[77.82893,31.05827],[77.83806,31.07265],[77.85124,31.07337],[77.86374,31.09396],[77.86047,31.10159],[77.86382,31.10851],[77.87323,31.11497],[77.87845,31.11633],[77.87803,31.11503],[77.88052,31.11479],[77.88241,31.11772],[77.88913,31.1195],[77.89089,31.12223],[77.88905,31.13299],[77.89401,31.13396],[77.90045,31.1422],[77.89874,31.15023],[77.90131,31.15182],[77.90787,31.15404],[77.91581,31.15389],[77.92152,31.15047],[77.92479,31.15043],[77.93516,31.15469],[77.94316,31.16126],[77.95149,31.16131],[77.95362,31.16595],[77.9589,31.17092],[77.96732,31.17337],[77.97327,31.16615],[77.98059,31.16212],[77.98472,31.15695],[77.99094,31.16005],[78.00082,31.16195],[78.00863,31.16082],[78.01445,31.15778],[78.02062,31.15155],[78.03034,31.15097],[78.02971,31.16411],[78.03384,31.16971],[78.04104,31.17292],[78.04264,31.1785],[78.05121,31.17989],[78.06596,31.18717],[78.08774,31.18724],[78.09714,31.18421],[78.10362,31.18538],[78.12348,31.20015],[78.1286,31.20078],[78.13338,31.20833],[78.14768,31.21059],[78.14842,31.2137],[78.15362,31.21822],[78.1581,31.2189],[78.16023,31.22548],[78.16715,31.22465],[78.17381,31.22684],[78.17976,31.22565],[78.18703,31.22705],[78.19218,31.22476],[78.19566,31.21971],[78.19948,31.2172],[78.20916,31.22012],[78.21244,31.21957],[78.21517,31.222],[78.21626,31.22971],[78.22032,31.23394],[78.22643,31.23501],[78.23709,31.23267],[78.24317,31.2293],[78.24695,31.23041],[78.25071,31.23331],[78.24951,31.24004],[78.25539,31.23851],[78.26047,31.23975],[78.26264,31.24519],[78.26868,31.24858],[78.26908,31.25232],[78.2735,31.25589],[78.27603,31.26151],[78.27996,31.26247],[78.28287,31.26621],[78.29188,31.25995],[78.29642,31.26113],[78.30255,31.25902],[78.30633,31.25989],[78.31045,31.27109],[78.31006,31.27409],[78.30804,31.27554],[78.31116,31.28314],[78.31678,31.28153],[78.31803,31.27892],[78.33187,31.27761],[78.33991,31.28267],[78.34561,31.28059],[78.35197,31.2806],[78.37032,31.28633],[78.38354,31.28248],[78.3863,31.27143],[78.38951,31.2742],[78.39617,31.27531],[78.39772,31.26622],[78.40717,31.25621],[78.40283,31.24789],[78.40695,31.24219],[78.4142,31.23961],[78.42074,31.24405],[78.42591,31.24425],[78.43116,31.25275],[78.43425,31.25458],[78.43658,31.25412],[78.44359,31.24435],[78.44999,31.24064],[78.45571,31.24102],[78.45771,31.23778],[78.46174,31.23603],[78.47286,31.21845],[78.4798,31.21378],[78.48145,31.20451],[78.48427,31.20121],[78.48375,31.19894],[78.50756,31.19587],[78.52652,31.19646],[78.55162,31.19991],[78.56549,31.21348],[78.56807,31.21915],[78.57486,31.22122],[78.57824,31.22526],[78.5895,31.22667],[78.59676,31.22512],[78.60092,31.2281],[78.60934,31.22926],[78.62257,31.22407],[78.62597,31.21787],[78.63655,31.21484],[78.64704,31.21472],[78.6493,31.21087],[78.64907,31.20217],[78.65732,31.19573],[78.65654,31.19357],[78.66001,31.19108],[78.65801,31.18504],[78.66172,31.18923],[78.66735,31.19075],[78.6719,31.19688],[78.67882,31.19625],[78.68677,31.19776],[78.695,31.19217],[78.70336,31.189],[78.7097,31.1897],[78.71833,31.18777],[78.72838,31.18965],[78.75641,31.18783],[78.76518,31.18576],[78.77916,31.18889],[78.79675,31.19641],[78.80991,31.19828],[78.81641,31.19437],[78.81738,31.18961],[78.8143,31.18754],[78.81047,31.18026],[78.81072,31.17187],[78.81304,31.16888],[78.81807,31.16778],[78.82489,31.16351],[78.82296,31.15774],[78.82734,31.15262],[78.83121,31.1406],[78.83814,31.13834],[78.84147,31.12971],[78.84801,31.12511],[78.85352,31.12208],[78.86524,31.12001],[78.87289,31.10886],[78.88543,31.09872],[78.89064,31.0969],[78.90044,31.09979],[78.9086,31.09886],[78.91231,31.10208],[78.91273,31.10764],[78.92057,31.11072],[78.92593,31.10944],[78.93223,31.10068],[78.94512,31.10057],[78.95073,31.09798],[78.96308,31.10118],[78.97299,31.10808],[78.99004,31.10852],[78.99855,31.10995],[79.00216,31.11242],[79.00892,31.10992],[79.0068,31.11853],[79.00366,31.12154],[78.9996,31.13469],[78.99076,31.13806],[78.98758,31.14329],[78.99083,31.14816],[78.98822,31.15421],[78.9905,31.16127],[78.98591,31.17383],[78.98373,31.17613],[78.9808,31.17616],[78.9792,31.17902],[78.97266,31.17991],[78.95753,31.18659],[78.95831,31.19037],[78.948,31.19851],[78.94703,31.20279],[78.94383,31.20648],[78.94868,31.21331],[78.94773,31.21677],[78.93113,31.21605],[78.92605,31.22007],[78.92609,31.2231],[78.92206,31.22531],[78.92203,31.23154],[78.91761,31.24576],[78.9161,31.24859],[78.91155,31.25147],[78.9121,31.25515],[78.89879,31.26272],[78.89703,31.27688],[78.89241,31.28789],[78.87271,31.30914],[78.85465,31.32346],[78.86381,31.34641],[78.85877,31.36637],[78.84793,31.3792],[78.83624,31.38489],[78.82357,31.38643],[78.79201,31.39554],[78.80034,31.4033],[78.81093,31.40917],[78.81659,31.41928],[78.81871,31.42885],[78.8181,31.44036],[78.81278,31.44974],[78.79551,31.4627],[78.77357,31.47394],[78.76663,31.48642],[78.75737,31.48765],[78.74315,31.4804],[78.73624,31.48057],[78.73428,31.48498],[78.73522,31.49296],[78.72839,31.51477],[78.72898,31.51981],[78.73595,31.52854],[78.74705,31.53861],[78.7574,31.54238],[78.76981,31.54257],[78.7784,31.54819],[78.78386,31.55663],[78.79072,31.56104],[78.80295,31.56303],[78.81891,31.57224],[78.82934,31.58491],[78.84581,31.59833],[78.85334,31.60743],[78.85199,31.61688],[78.83994,31.62811],[78.80699,31.64711],[78.80034,31.65787],[78.79822,31.68181],[78.79483,31.68253],[78.78692,31.67855],[78.77581,31.67697],[78.7627,31.67938],[78.75402,31.68565],[78.74485,31.70044],[78.74134,31.72111],[78.73143,31.73384],[78.72839,31.74174],[78.73327,31.74938],[78.74069,31.75341],[78.74119,31.75761],[78.73195,31.75926],[78.72016,31.76451],[78.70985,31.78662],[78.70991,31.79976],[78.7143,31.80745],[78.72168,31.81529],[78.73202,31.82289],[78.74021,31.83746],[78.74584,31.85564],[78.74512,31.87055],[78.74764,31.87924],[78.75277,31.88474],[78.75014,31.90448],[78.76157,31.91283],[78.7707,31.92265],[78.77816,31.93516],[78.78015,31.95195],[78.78615,31.97307],[78.78855,31.99323],[78.78555,31.99731],[78.75811,32.00095],[78.73536,32.02328],[78.71891,32.03572],[78.70777,32.04686],[78.69619,32.0627],[78.68343,32.07271],[78.67396,32.0854],[78.66593,32.10178],[78.6566,32.11148],[78.62122,32.11153],[78.61767,32.11523],[78.61401,32.12232],[78.6148,32.13329],[78.61139,32.14248],[78.59979,32.14983],[78.59678,32.15391],[78.59623,32.15777],[78.60788,32.16781],[78.61376,32.17537],[78.61445,32.18125],[78.61257,32.19499],[78.61469,32.20881],[78.60841,32.21909],[78.58795,32.2361],[78.57347,32.24454],[78.55948,32.24869],[78.54589,32.24771],[78.49628,32.23747],[78.46317,32.24024],[78.46084,32.24171],[78.4635,32.24742],[78.47376,32.25844],[78.47997,32.26895],[78.48341,32.28139],[78.48479,32.34914],[78.49674,32.36171],[78.50579,32.36646],[78.51479,32.37504],[78.52175,32.39185],[78.53341,32.41038],[78.53351,32.41546],[78.5228,32.4223],[78.503,32.41972],[78.49577,32.42202],[78.48975,32.43482],[78.47586,32.44871],[78.46555,32.45466],[78.46088,32.46184],[78.46003,32.46742],[78.4621,32.47234],[78.46724,32.47785],[78.46688,32.48763],[78.46125,32.5038],[78.44299,32.51041],[78.43492,32.50981],[78.42863,32.50736],[78.4253,32.50891],[78.4175,32.51931],[78.40987,32.52401],[78.39952,32.5246],[78.39894,32.5209],[78.39419,32.5148],[78.38601,32.51301],[78.37856,32.50645],[78.36514,32.4994],[78.36761,32.49373],[78.36654,32.48544],[78.36378,32.48227],[78.34971,32.47746],[78.34998,32.47334],[78.35314,32.46994],[78.34897,32.46433],[78.34055,32.46273],[78.32844,32.46501],[78.32575,32.45964],[78.32844,32.45403],[78.33446,32.45066],[78.33271,32.44609],[78.32913,32.44337],[78.31144,32.44633],[78.30741,32.45209],[78.30019,32.45548],[78.29785,32.46234],[78.28737,32.46299],[78.28473,32.46854],[78.28566,32.47155],[78.29127,32.47532],[78.28953,32.47934],[78.28575,32.48239],[78.28995,32.48514],[78.29264,32.48984],[78.29252,32.49897],[78.30113,32.50387],[78.3067,32.5115],[78.30455,32.51743],[78.30866,32.52555],[78.30697,32.53754],[78.30904,32.5431],[78.31297,32.54511],[78.3155,32.54967],[78.31245,32.55147],[78.31445,32.55991],[78.31355,32.56591],[78.33149,32.57662],[78.34328,32.57808],[78.35056,32.58896],[78.3629,32.58966],[78.36617,32.59366],[78.37859,32.59794],[78.37961,32.60455],[78.38414,32.60894],[78.3896,32.60999],[78.39079,32.61488],[78.39753,32.61761],[78.40231,32.61707],[78.40363,32.61967],[78.40966,32.62313],[78.40838,32.6271],[78.40135,32.62831],[78.39161,32.63343],[78.38786,32.64078],[78.38775,32.64514],[78.38142,32.65413],[78.38651,32.66468],[78.38714,32.67725],[78.39168,32.68537],[78.40074,32.6942],[78.39721,32.6985],[78.39699,32.70757],[78.38887,32.71184],[78.38537,32.71956],[78.38466,32.7317],[78.38944,32.74069],[78.38656,32.74523],[78.38596,32.74965],[78.388,32.75669],[78.3649,32.75334],[78.35705,32.7577],[78.33326,32.74971],[78.31285,32.73978],[78.30988,32.7351],[78.30585,32.73248],[78.3139,32.72081],[78.31473,32.71739],[78.30685,32.71043],[78.30602,32.70712],[78.30179,32.70411],[78.2946,32.70363],[78.29318,32.70034],[78.27391,32.70253],[78.26849,32.7011],[78.26054,32.7029],[78.25577,32.69706],[78.2538,32.69202],[78.25441,32.68918],[78.2459,32.6716],[78.23223,32.67171],[78.21895,32.66463],[78.20394,32.66706],[78.20129,32.67043],[78.19692,32.67052],[78.17576,32.68101],[78.17115,32.68047],[78.16548,32.68311],[78.15836,32.68399],[78.14973,32.68175],[78.14238,32.68183],[78.14788,32.67187],[78.14719,32.65396],[78.13664,32.65447],[78.1271,32.65223],[78.12062,32.66073],[78.11676,32.66027],[78.11049,32.66277],[78.0926,32.64784],[78.09592,32.6444],[78.0992,32.63644],[78.09886,32.63036],[78.09171,32.62851],[78.08753,32.62465],[78.08134,32.62622],[78.07471,32.63094],[78.06788,32.62663],[78.06088,32.62642],[78.05639,32.63468],[78.04702,32.64531],[78.04276,32.64032],[78.03402,32.63693],[78.03345,32.63381],[78.02516,32.62723],[78.02903,32.6235],[78.01589,32.61961],[78.01282,32.62181],[78.01186,32.62499],[78.00329,32.62457],[77.99623,32.62683],[77.99151,32.63064],[77.9917,32.63254],[77.98757,32.63614],[77.98466,32.6415],[77.97056,32.64636],[77.97227,32.65292],[77.97091,32.65497],[77.96585,32.65757],[77.95512,32.65819],[77.94744,32.66088],[77.9428,32.66559],[77.94096,32.6734],[77.93457,32.68114],[77.93106,32.68201],[77.92665,32.68628],[77.91862,32.69054],[77.91829,32.69627],[77.92246,32.69905],[77.92155,32.70316],[77.92282,32.70643],[77.92163,32.70844],[77.92455,32.71127],[77.92485,32.71723],[77.92803,32.722],[77.93439,32.72586],[77.93161,32.73171],[77.9263,32.73482],[77.92703,32.73648],[77.93066,32.73696],[77.92926,32.74253],[77.93291,32.74655],[77.93143,32.75048],[77.93413,32.7565],[77.93293,32.76129],[77.92723,32.76572],[77.92572,32.772],[77.91624,32.77384],[77.90368,32.77188],[77.89456,32.77826],[77.89183,32.78287],[77.88419,32.78755],[77.88795,32.79869],[77.8811,32.80413],[77.88209,32.81036],[77.87851,32.81918],[77.87127,32.82248],[77.86919,32.82703],[77.8554,32.83234],[77.84687,32.83898],[77.83901,32.84201],[77.83532,32.84067],[77.83244,32.83627],[77.82612,32.83619],[77.81593,32.8483],[77.80549,32.84988],[77.79766,32.85629],[77.79186,32.85593],[77.78096,32.86579],[77.78398,32.88285],[77.78947,32.89061],[77.79327,32.8931],[77.80246,32.89333],[77.80667,32.89556],[77.81069,32.90016],[77.81175,32.90454],[77.81063,32.90703],[77.79973,32.91244],[77.79456,32.91999],[77.7876,32.92347],[77.77183,32.93802],[77.7658,32.94154],[77.76475,32.94358],[77.76651,32.94629],[77.76354,32.94905],[77.75091,32.95456],[77.74977,32.95773],[77.7445,32.962],[77.74101,32.96903],[77.73282,32.97178],[77.73095,32.97455],[77.72494,32.96932],[77.71957,32.96866],[77.7141,32.97633],[77.71315,32.98246],[77.6975,32.97938],[77.69778,32.98271],[77.68952,32.98802],[77.68249,32.9888],[77.68072,32.98379],[77.68202,32.97477],[77.67873,32.96958],[77.67407,32.96735],[77.67413,32.96119],[77.66413,32.95831],[77.65601,32.95888],[77.65269,32.95488],[77.64358,32.94922],[77.64316,32.94651],[77.60311,32.94293],[77.59436,32.92594],[77.57725,32.91445],[77.56372,32.9123],[77.55039,32.90031],[77.54539,32.8916],[77.53847,32.88608],[77.51258,32.87736],[77.50149,32.88558],[77.49719,32.88037],[77.49103,32.87961],[77.48619,32.87369],[77.48082,32.87054],[77.47494,32.86161],[77.4692,32.85868],[77.46119,32.85998],[77.45207,32.86409],[77.44782,32.87026],[77.44796,32.87531],[77.44481,32.8799],[77.43956,32.87924],[77.43331,32.87593],[77.42798,32.87561],[77.41344,32.88412],[77.4045,32.88274],[77.39589,32.87717],[77.39422,32.87132],[77.38779,32.86355],[77.38146,32.86192],[77.37459,32.85494],[77.37587,32.84918],[77.37988,32.84454],[77.37924,32.83892],[77.3766,32.83708],[77.37287,32.8232],[77.35315,32.81599],[77.33896,32.81678],[77.33679,32.81904],[77.33602,32.82498],[77.33203,32.8261],[77.32968,32.83047],[77.327,32.83149],[77.32534,32.83551],[77.32874,32.84297],[77.3219,32.85154],[77.30949,32.8516],[77.30086,32.84986],[77.29044,32.85708],[77.28607,32.86449],[77.27399,32.87385],[77.26629,32.86883],[77.26269,32.86409],[77.25427,32.86394],[77.25524,32.86602],[77.25331,32.86934],[77.25,32.87236],[77.24426,32.87267],[77.23759,32.88018],[77.23726,32.88335],[77.23997,32.88439],[77.24299,32.89216],[77.23367,32.89444],[77.21913,32.90407],[77.20292,32.90655],[77.19341,32.9164],[77.19287,32.92344],[77.18797,32.92874],[77.1785,32.92313],[77.17393,32.91333],[77.17044,32.91067],[77.15574,32.91158],[77.15988,32.91304],[77.16389,32.91823],[77.16171,32.93171],[77.16454,32.93648],[77.15947,32.93825],[77.16194,32.95064],[77.16113,32.95266],[77.14873,32.95616],[77.14922,32.96058],[77.14736,32.9657],[77.14912,32.96848],[77.15052,32.97817],[77.14678,32.97851],[77.14217,32.98149],[77.13372,32.98007],[77.11602,32.98467],[77.11161,32.97914],[77.11076,32.97514],[77.09684,32.9715],[77.08652,32.97241],[77.08185,32.97528],[77.08266,32.97844],[77.08016,32.98301],[77.07119,32.98441],[77.05704,32.9916],[77.04739,32.99862],[77.03894,32.99765],[77.03163,32.98971],[77.02387,32.99132],[77.00949,32.98866],[76.9959,32.99757],[76.99231,33.00179],[76.98901,33.00262],[76.98082,33.0],[76.97135,33.00028],[76.96812,33.00418],[76.96373,33.00517],[76.9606,33.00914],[76.96145,33.01129],[76.95966,33.01534],[76.9507,33.01818],[76.94097,33.02832],[76.93299,33.02817],[76.92869,33.03166],[76.92577,33.03827],[76.92546,33.04742],[76.91421,33.06338],[76.91089,33.07601],[76.9052,33.07952],[76.90569,33.08504],[76.90996,33.08962],[76.90929,33.09381],[76.89771,33.09869],[76.89749,33.10085],[76.89255,33.10591],[76.89327,33.10992],[76.88892,33.11722],[76.8851,33.12138],[76.87724,33.11884],[76.87051,33.11336],[76.86243,33.11272],[76.85507,33.11438],[76.84923,33.12043],[76.85291,33.12569],[76.84891,33.12871],[76.84299,33.13033],[76.84397,33.13778],[76.83881,33.14122],[76.83481,33.14065],[76.83005,33.14284],[76.82964,33.14659],[76.82537,33.14817],[76.818,33.15709],[76.8167,33.16034],[76.81737,33.16673],[76.81291,33.17191],[76.81354,33.17724],[76.81884,33.17989],[76.82238,33.18507],[76.81739,33.19414],[76.82364,33.19762],[76.8293,33.20325],[76.83446,33.20485],[76.83406,33.20859],[76.83131,33.20995],[76.83176,33.21233],[76.82561,33.21569],[76.82839,33.21856],[76.82771,33.22257],[76.83185,33.22911],[76.83769,33.23403],[76.84052,33.23959],[76.84461,33.24227],[76.84317,33.24674],[76.83071,33.24919],[76.82352,33.24333],[76.8224,33.23678],[76.82006,33.23584],[76.80684,33.24498],[76.80258,33.25385]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-HR","area_level":"State","area_name":"Haryana","geometry_source":"SOI_States","same_as":"LGD/6/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[76.43919,28.11075],[76.44028,28.11501],[76.44137,28.11686],[76.44121,28.11895],[76.44074,28.12078],[76.43623,28.12683],[76.4357,28.12788],[76.43571,28.12929],[76.43326,28.13034],[76.4332,28.13222],[76.43295,28.13224],[76.43294,28.13242],[76.4336,28.13641],[76.43128,28.13792],[76.42928,28.13851],[76.4289,28.1384],[76.42791,28.1346],[76.42733,28.1335],[76.42693,28.13209],[76.42579,28.12984],[76.42418,28.12725],[76.42316,28.12611],[76.42257,28.12488],[76.42181,28.12252],[76.42263,28.12223],[76.42374,28.12081],[76.42333,28.1197],[76.42352,28.11694],[76.42289,28.115],[76.42285,28.11432],[76.42849,28.11075],[76.43047,28.10974],[76.43219,28.10974],[76.43453,28.10908],[76.43538,28.11012],[76.43964,28.11012],[76.43919,28.11075]]],[[[76.84459,30.88926],[76.84104,30.89166],[76.83404,30.9045],[76.82998,30.90714],[76.82646,30.91313],[76.8293,30.91662],[76.82606,30.92065],[76.82739,30.92122],[76.82515,30.92635],[76.8224,30.92854],[76.81114,30.92401],[76.79816,30.91524],[76.78683,30.91334],[76.77609,30.90597],[76.77735,30.89686],[76.78557,30.87641],[76.79074,30.87031],[76.80179,30.86584],[76.80472,30.86059],[76.81467,30.85244],[76.81316,30.84818],[76.814,30.84299],[76.82297,30.84477],[76.82614,30.84076],[76.82982,30.83907],[76.83742,30.8361],[76.84344,30.83596],[76.8467,30.83391],[76.84584,30.83156],[76.84815,30.82868],[76.84884,30.81414],[76.84533,30.80719],[76.84688,30.80368],[76.85417,30.79919],[76.85699,30.79475],[76.85268,30.79349],[76.8507,30.7911],[76.85437,30.78726],[76.84178,30.77446],[76.84257,30.7715],[76.84028,30.77062],[76.83897,30.7659],[76.84015,30.75889],[76.83745,30.75415],[76.83902,30.7512],[76.83384,30.74983],[76.83475,30.74217],[76.83686,30.74266],[76.8315,30.73951],[76.83716,30.73345],[76.84184,30.73272],[76.84319,30.73111],[76.84742,30.73141],[76.84822,30.7303],[76.84639,30.72968],[76.8494,30.72339],[76.84607,30.72229],[76.84357,30.71921],[76.84503,30.71719],[76.84945,30.71827],[76.84677,30.71689],[76.84835,30.71446],[76.84413,30.7082],[76.83555,30.70358],[76.83528,30.70155],[76.8286,30.69465],[76.83022,30.69345],[76.82738,30.69197],[76.82755,30.6898],[76.82516,30.68825],[76.82621,30.68668],[76.82762,30.68767],[76.83189,30.68323],[76.82914,30.68093],[76.83129,30.67903],[76.83002,30.67586],[76.83204,30.67095],[76.83154,30.66475],[76.83257,30.66312],[76.84579,30.66864],[76.84809,30.66591],[76.84469,30.66239],[76.84496,30.65902],[76.84686,30.65666],[76.85119,30.65819],[76.85302,30.6572],[76.86201,30.66359],[76.86831,30.67346],[76.87645,30.68051],[76.87426,30.67391],[76.87122,30.64212],[76.8748,30.64085],[76.87758,30.64415],[76.88512,30.64528],[76.89646,30.63583],[76.89595,30.63305],[76.89281,30.63104],[76.89555,30.62892],[76.89972,30.62814],[76.90278,30.62437],[76.91008,30.62615],[76.91307,30.61686],[76.9133,30.61397],[76.91184,30.61303],[76.91352,30.61141],[76.916,30.60989],[76.9199,30.61176],[76.92601,30.61006],[76.92234,30.60559],[76.92717,30.60361],[76.92022,30.59323],[76.90966,30.59188],[76.9198,30.58516],[76.91514,30.58218],[76.91494,30.5784],[76.91772,30.57601],[76.90897,30.56469],[76.91533,30.56192],[76.91754,30.55911],[76.91616,30.55366],[76.90494,30.54295],[76.89395,30.54864],[76.88718,30.55103],[76.8865,30.54983],[76.88816,30.54589],[76.89607,30.53812],[76.90215,30.53644],[76.90622,30.53712],[76.91249,30.53395],[76.91224,30.53038],[76.9156,30.52571],[76.92149,30.52619],[76.93202,30.52219],[76.92924,30.51709],[76.92859,30.50755],[76.93117,30.50036],[76.91893,30.48944],[76.91078,30.49428],[76.90871,30.49188],[76.90362,30.49139],[76.89896,30.48879],[76.89804,30.48376],[76.91218,30.47376],[76.91381,30.46767],[76.89956,30.44865],[76.90537,30.44493],[76.90487,30.44323],[76.90274,30.44408],[76.89755,30.4371],[76.90505,30.43407],[76.91229,30.44291],[76.90638,30.43357],[76.91649,30.42623],[76.91237,30.42051],[76.9171,30.41599],[76.91915,30.40924],[76.91805,30.40837],[76.91936,30.40741],[76.91235,30.40063],[76.91972,30.39866],[76.92273,30.40107],[76.93315,30.40155],[76.94146,30.39535],[76.93868,30.38609],[76.9349,30.38188],[76.92262,30.3746],[76.91686,30.36491],[76.90678,30.36139],[76.90271,30.36195],[76.89826,30.35882],[76.89029,30.36943],[76.89137,30.37377],[76.89796,30.3821],[76.89507,30.38471],[76.8951,30.38694],[76.88623,30.39404],[76.88335,30.39208],[76.8807,30.3939],[76.88394,30.39768],[76.88213,30.40082],[76.88434,30.40428],[76.88089,30.40612],[76.88336,30.40865],[76.87444,30.40947],[76.8683,30.41394],[76.85613,30.41765],[76.8542,30.4212],[76.85439,30.42548],[76.85002,30.43347],[76.85103,30.43525],[76.84679,30.43808],[76.84374,30.43736],[76.83775,30.43156],[76.83623,30.42961],[76.83824,30.42762],[76.82748,30.41607],[76.82183,30.41268],[76.81647,30.41334],[76.80926,30.41764],[76.80177,30.41367],[76.79514,30.41866],[76.79022,30.41455],[76.78704,30.41621],[76.77433,30.4264],[76.77728,30.43105],[76.78487,30.43535],[76.7811,30.43992],[76.77429,30.44328],[76.76556,30.43249],[76.75793,30.42982],[76.75,30.42983],[76.74105,30.42622],[76.74105,30.42424],[76.73504,30.41908],[76.74011,30.41208],[76.73799,30.40835],[76.72822,30.40036],[76.72515,30.40218],[76.72221,30.399],[76.71455,30.40244],[76.71511,30.39745],[76.71285,30.3902],[76.71864,30.38248],[76.71761,30.38004],[76.71949,30.37877],[76.7296,30.38226],[76.73124,30.37966],[76.71871,30.36658],[76.71991,30.36333],[76.72571,30.36185],[76.73339,30.36883],[76.73524,30.36785],[76.73755,30.37042],[76.74541,30.36783],[76.74929,30.3618],[76.74892,30.35699],[76.75113,30.3553],[76.74522,30.35049],[76.74609,30.34953],[76.73847,30.34632],[76.73262,30.34832],[76.72737,30.34106],[76.72975,30.33882],[76.72229,30.33324],[76.71639,30.33602],[76.71102,30.3258],[76.70487,30.32588],[76.70005,30.32805],[76.69563,30.32157],[76.68859,30.32727],[76.68209,30.31979],[76.68558,30.31755],[76.68647,30.31426],[76.67804,30.30583],[76.68079,30.30313],[76.67486,30.29935],[76.66768,30.30284],[76.66543,30.3059],[76.65955,30.29989],[76.65568,30.29839],[76.65002,30.29067],[76.63887,30.28439],[76.63542,30.28959],[76.63216,30.28385],[76.63036,30.27738],[76.63144,30.27609],[76.6256,30.2712],[76.62723,30.26938],[76.62343,30.26455],[76.62053,30.26495],[76.61441,30.2725],[76.61163,30.26953],[76.60973,30.27039],[76.6087,30.2679],[76.60113,30.27032],[76.59292,30.26174],[76.58802,30.26483],[76.58649,30.26854],[76.58382,30.27022],[76.58063,30.2652],[76.57514,30.26188],[76.57193,30.26524],[76.56203,30.26195],[76.55959,30.26484],[76.55668,30.26244],[76.55736,30.25341],[76.56005,30.24519],[76.55345,30.22996],[76.54523,30.23001],[76.54311,30.22839],[76.54567,30.22555],[76.54856,30.22514],[76.56075,30.22892],[76.56377,30.2353],[76.56621,30.23531],[76.56786,30.23809],[76.58111,30.24657],[76.5879,30.25396],[76.59066,30.25341],[76.59155,30.25576],[76.59633,30.25521],[76.60371,30.25188],[76.6061,30.24835],[76.60599,30.24567],[76.60293,30.24133],[76.62326,30.23142],[76.62751,30.22719],[76.62332,30.21982],[76.6164,30.21632],[76.61484,30.21353],[76.61553,30.21168],[76.62171,30.20764],[76.63575,30.20683],[76.63932,30.20878],[76.65426,30.20347],[76.65064,30.19314],[76.65713,30.18712],[76.65404,30.18397],[76.65165,30.17753],[76.64803,30.17542],[76.64604,30.17639],[76.64187,30.171],[76.63543,30.16998],[76.63828,30.1781],[76.6355,30.18454],[76.6456,30.18807],[76.63944,30.19437],[76.6303,30.19853],[76.61854,30.20055],[76.61419,30.20443],[76.6101,30.19847],[76.61099,30.19634],[76.60731,30.19178],[76.6234,30.18017],[76.62373,30.17503],[76.62893,30.16889],[76.63272,30.16936],[76.63931,30.15263],[76.64374,30.15021],[76.6353,30.14664],[76.63272,30.14183],[76.62353,30.14019],[76.61279,30.12672],[76.60307,30.1186],[76.59895,30.11209],[76.58655,30.11072],[76.5727,30.09906],[76.56055,30.09338],[76.55638,30.08251],[76.55,30.07885],[76.54565,30.07932],[76.54596,30.0764],[76.54376,30.07427],[76.53528,30.0731],[76.52685,30.07696],[76.52248,30.07411],[76.50828,30.07031],[76.50871,30.07895],[76.51037,30.08231],[76.50208,30.09192],[76.49798,30.09449],[76.49129,30.09462],[76.48206,30.09753],[76.47276,30.09767],[76.46255,30.10102],[76.45712,30.11014],[76.45633,30.11543],[76.45998,30.12944],[76.45801,30.1302],[76.45803,30.13183],[76.45557,30.13042],[76.45088,30.13216],[76.4439,30.13046],[76.44053,30.13142],[76.43749,30.13623],[76.4377,30.14222],[76.43977,30.14367],[76.43224,30.14695],[76.42859,30.15055],[76.43349,30.15584],[76.43652,30.15595],[76.44058,30.16584],[76.43492,30.17549],[76.43039,30.17797],[76.43382,30.18071],[76.43433,30.18311],[76.42274,30.19224],[76.40641,30.19034],[76.40362,30.18666],[76.40298,30.18211],[76.39636,30.17958],[76.38718,30.17059],[76.39349,30.16694],[76.3914,30.16432],[76.39503,30.15797],[76.40178,30.15379],[76.41009,30.14504],[76.40684,30.14491],[76.4009,30.13889],[76.39765,30.14017],[76.39111,30.1348],[76.39598,30.12612],[76.39486,30.12198],[76.39845,30.12057],[76.40006,30.11667],[76.38888,30.11323],[76.36791,30.1176],[76.3622,30.12012],[76.36076,30.12255],[76.36695,30.12418],[76.36132,30.12973],[76.35929,30.13974],[76.35306,30.14301],[76.35049,30.14683],[76.34749,30.1453],[76.34688,30.14277],[76.33781,30.14327],[76.33395,30.14199],[76.33351,30.13817],[76.34206,30.12634],[76.35217,30.12178],[76.36023,30.12017],[76.35443,30.11687],[76.34615,30.10618],[76.34626,30.10388],[76.34473,30.10477],[76.34415,30.10082],[76.33991,30.0987],[76.33119,30.09966],[76.32176,30.09506],[76.3193,30.09577],[76.31955,30.09707],[76.30757,30.10872],[76.2966,30.1144],[76.29063,30.10774],[76.28534,30.10618],[76.27855,30.11027],[76.27518,30.11459],[76.26778,30.11442],[76.25369,30.12157],[76.25311,30.12308],[76.25548,30.12372],[76.25565,30.12605],[76.24694,30.13054],[76.24401,30.12819],[76.24227,30.12938],[76.24322,30.13239],[76.23252,30.13975],[76.23438,30.14493],[76.22688,30.14454],[76.22434,30.14696],[76.21901,30.1477],[76.21649,30.15023],[76.21629,30.15293],[76.21469,30.1532],[76.2146,30.15617],[76.20767,30.15699],[76.20773,30.14427],[76.21519,30.13959],[76.21516,30.13489],[76.22428,30.12708],[76.21593,30.12374],[76.20804,30.13402],[76.20474,30.13307],[76.20244,30.13605],[76.19695,30.13246],[76.19638,30.12345],[76.21107,30.12056],[76.21709,30.12281],[76.22028,30.11527],[76.21629,30.1128],[76.21677,30.11001],[76.2238,30.11162],[76.22982,30.10669],[76.2344,30.105],[76.23634,30.10657],[76.23832,30.10561],[76.23689,30.10387],[76.24211,30.10051],[76.24893,30.10383],[76.25173,30.1075],[76.25318,30.10608],[76.25165,30.10444],[76.25249,30.10264],[76.2653,30.09878],[76.26015,30.08741],[76.25354,30.0894],[76.24967,30.08691],[76.24827,30.08482],[76.24929,30.08231],[76.24784,30.08106],[76.2467,30.08213],[76.23672,30.0679],[76.22623,30.05866],[76.22832,30.05285],[76.22181,30.04807],[76.22241,30.03669],[76.22003,30.03411],[76.21396,30.03172],[76.21317,30.0221],[76.23199,30.01521],[76.22556,30.00769],[76.21599,30.00706],[76.20926,30.00406],[76.21148,29.99545],[76.20653,29.99345],[76.21074,29.98815],[76.20806,29.98605],[76.20241,29.98932],[76.20184,29.98475],[76.20592,29.98037],[76.20477,29.97691],[76.20573,29.9743],[76.19809,29.96826],[76.20108,29.96724],[76.2053,29.96158],[76.21274,29.94709],[76.21312,29.94509],[76.21018,29.93961],[76.20352,29.94425],[76.19114,29.94882],[76.18376,29.9483],[76.17818,29.94207],[76.17814,29.93337],[76.17252,29.92882],[76.17197,29.92627],[76.17549,29.92383],[76.17918,29.92264],[76.1814,29.92362],[76.18528,29.92049],[76.18781,29.92063],[76.1893,29.90867],[76.18566,29.89244],[76.18633,29.89083],[76.18974,29.8904],[76.19346,29.88562],[76.19984,29.88841],[76.19943,29.88451],[76.20114,29.88382],[76.20977,29.88589],[76.20868,29.88738],[76.21084,29.89131],[76.21295,29.88704],[76.2174,29.88404],[76.2213,29.88336],[76.22232,29.88495],[76.22626,29.88379],[76.22682,29.88634],[76.2294,29.88563],[76.23829,29.87869],[76.24676,29.87595],[76.24387,29.86893],[76.24382,29.85241],[76.23816,29.85199],[76.23246,29.8537],[76.23047,29.85148],[76.22725,29.85177],[76.22223,29.84873],[76.22062,29.8467],[76.22055,29.83784],[76.21201,29.84301],[76.20269,29.84301],[76.19782,29.84476],[76.18487,29.82272],[76.17374,29.81791],[76.16449,29.81761],[76.15326,29.82003],[76.14549,29.81908],[76.14162,29.81546],[76.14173,29.81083],[76.13323,29.80445],[76.12395,29.79091],[76.11967,29.79228],[76.12001,29.80087],[76.11585,29.80231],[76.10509,29.81183],[76.09808,29.81061],[76.08953,29.80113],[76.085,29.80073],[76.08296,29.78796],[76.08472,29.78452],[76.08265,29.78116],[76.07678,29.77488],[76.07255,29.77858],[76.0671,29.77397],[76.06024,29.76464],[76.05682,29.76536],[76.0544,29.75772],[76.04949,29.75186],[76.04963,29.7481],[76.04385,29.74268],[76.03474,29.74453],[76.03088,29.74765],[76.03068,29.75472],[76.02611,29.75615],[76.02406,29.74898],[76.01938,29.74767],[76.01677,29.743],[76.00711,29.74074],[75.99897,29.74102],[75.9949,29.73926],[75.98889,29.73393],[75.98442,29.72711],[75.97535,29.72864],[75.97346,29.7304],[75.96757,29.72941],[75.95485,29.73193],[75.95073,29.73193],[75.94734,29.72938],[75.94113,29.73154],[75.93869,29.73066],[75.92239,29.73766],[75.91944,29.74133],[75.91497,29.74302],[75.91461,29.74796],[75.90631,29.75333],[75.9027,29.75162],[75.90448,29.74892],[75.9008,29.74888],[75.89884,29.74624],[75.88595,29.74538],[75.88238,29.751],[75.87025,29.7493],[75.86925,29.75197],[75.87036,29.75754],[75.86674,29.76653],[75.85971,29.768],[75.85832,29.7708],[75.85141,29.7727],[75.85356,29.77638],[75.85291,29.77804],[75.84583,29.78227],[75.84368,29.78983],[75.84049,29.78865],[75.83701,29.79425],[75.83799,29.7971],[75.83493,29.8088],[75.83776,29.81302],[75.83484,29.81446],[75.8303,29.81178],[75.82585,29.81451],[75.82243,29.80779],[75.81583,29.80416],[75.80988,29.80563],[75.80565,29.80472],[75.78879,29.8111],[75.78707,29.81606],[75.78297,29.8208],[75.77883,29.82234],[75.75617,29.805],[75.75063,29.8076],[75.74689,29.80732],[75.73782,29.81404],[75.7326,29.81252],[75.72068,29.81354],[75.72097,29.80992],[75.71807,29.80865],[75.71798,29.803],[75.71417,29.80185],[75.7146,29.79598],[75.71275,29.79264],[75.71665,29.78872],[75.71013,29.78041],[75.70981,29.77798],[75.71238,29.77406],[75.71031,29.7706],[75.70739,29.76928],[75.70467,29.76362],[75.70575,29.75968],[75.70925,29.75653],[75.70645,29.7532],[75.70315,29.75228],[75.69136,29.75592],[75.68267,29.76694],[75.68171,29.77227],[75.67717,29.77658],[75.66808,29.7774],[75.66408,29.77521],[75.66098,29.77683],[75.65598,29.77376],[75.65011,29.77569],[75.64246,29.77509],[75.64026,29.7725],[75.63778,29.77389],[75.63518,29.77229],[75.63449,29.75528],[75.62745,29.74836],[75.62057,29.74674],[75.61676,29.74408],[75.60688,29.74893],[75.60527,29.75195],[75.60096,29.74946],[75.58899,29.74688],[75.57998,29.73909],[75.57214,29.74335],[75.56975,29.75679],[75.56212,29.77022],[75.54489,29.77079],[75.5407,29.77358],[75.53796,29.77333],[75.5327,29.77062],[75.52866,29.76316],[75.52492,29.76185],[75.52304,29.7584],[75.52196,29.75983],[75.52327,29.76915],[75.5186,29.77582],[75.50277,29.77788],[75.49729,29.78439],[75.49217,29.78577],[75.48555,29.79152],[75.4796,29.79278],[75.46228,29.8073],[75.45954,29.80751],[75.45519,29.8057],[75.45288,29.80184],[75.45818,29.79475],[75.45605,29.79047],[75.45586,29.78428],[75.45398,29.782],[75.45121,29.78144],[75.44757,29.7838],[75.43837,29.78003],[75.42748,29.77085],[75.42172,29.77301],[75.42142,29.77508],[75.41938,29.77021],[75.41396,29.76999],[75.40632,29.76125],[75.40478,29.73899],[75.40133,29.7402],[75.39645,29.73946],[75.39548,29.73356],[75.39136,29.73279],[75.38819,29.72988],[75.38816,29.72798],[75.39347,29.72198],[75.39075,29.71903],[75.39114,29.71698],[75.38925,29.71613],[75.39214,29.71316],[75.38402,29.7122],[75.38023,29.71421],[75.37865,29.71287],[75.37636,29.71408],[75.373,29.71326],[75.36988,29.71086],[75.37082,29.70446],[75.36465,29.70392],[75.35908,29.7055],[75.35792,29.70439],[75.35861,29.69975],[75.35145,29.69606],[75.34573,29.696],[75.34892,29.68628],[75.35369,29.67959],[75.35426,29.67489],[75.35984,29.66813],[75.36017,29.6626],[75.3581,29.66075],[75.34866,29.66658],[75.34106,29.67525],[75.33377,29.67347],[75.33187,29.66318],[75.32226,29.65161],[75.32102,29.64726],[75.32349,29.64247],[75.31659,29.63062],[75.31117,29.62949],[75.3073,29.62477],[75.29574,29.62503],[75.29492,29.61571],[75.2897,29.60781],[75.30346,29.60258],[75.30564,29.59567],[75.31402,29.58925],[75.31658,29.59038],[75.31994,29.58741],[75.3113,29.58014],[75.30948,29.56083],[75.29831,29.55859],[75.28117,29.56146],[75.28038,29.55397],[75.27327,29.54999],[75.24449,29.54669],[75.23537,29.54207],[75.23911,29.55072],[75.23841,29.55886],[75.23382,29.56432],[75.23443,29.57],[75.23196,29.57479],[75.22682,29.57901],[75.22173,29.58028],[75.22744,29.58721],[75.23538,29.60307],[75.23378,29.60237],[75.2284,29.60543],[75.22149,29.61111],[75.21971,29.61542],[75.20677,29.6219],[75.19685,29.61932],[75.18307,29.6284],[75.18222,29.63596],[75.18763,29.65179],[75.18004,29.65286],[75.17466,29.6556],[75.1676,29.66954],[75.17116,29.67127],[75.17715,29.67063],[75.1796,29.67451],[75.18395,29.67334],[75.18731,29.67593],[75.18815,29.68134],[75.19949,29.68024],[75.2068,29.68751],[75.2078,29.70121],[75.20026,29.70106],[75.1978,29.70325],[75.19689,29.7157],[75.20064,29.72648],[75.21034,29.73881],[75.21749,29.73714],[75.22635,29.72887],[75.23818,29.73995],[75.24135,29.75049],[75.24161,29.75464],[75.23662,29.757],[75.22441,29.78074],[75.22631,29.78913],[75.21629,29.78771],[75.21448,29.79151],[75.20854,29.79267],[75.20968,29.81734],[75.21402,29.82398],[75.21031,29.83288],[75.19652,29.83776],[75.19104,29.84137],[75.1839,29.83363],[75.17593,29.82808],[75.17007,29.82818],[75.16564,29.82604],[75.16023,29.81284],[75.16065,29.80637],[75.1591,29.80133],[75.16665,29.78821],[75.16681,29.78469],[75.15984,29.77901],[75.15099,29.77552],[75.14649,29.78182],[75.14025,29.78614],[75.13686,29.80595],[75.13511,29.80729],[75.12668,29.80688],[75.11826,29.8027],[75.1045,29.8048],[75.10059,29.80708],[75.10034,29.8194],[75.10154,29.82155],[75.1189,29.83158],[75.11139,29.84191],[75.10316,29.84175],[75.0901,29.854],[75.08976,29.85863],[75.09341,29.85797],[75.10686,29.868],[75.11474,29.87865],[75.11043,29.89271],[75.11039,29.90191],[75.1093,29.90409],[75.10733,29.90405],[75.09904,29.91108],[75.09878,29.91278],[75.0888,29.91719],[75.08644,29.91655],[75.08049,29.9008],[75.07533,29.89634],[75.07607,29.89085],[75.07449,29.88225],[75.06999,29.87705],[75.06529,29.87879],[75.05613,29.87809],[75.05187,29.88407],[75.04699,29.88507],[75.03293,29.87981],[75.02255,29.86625],[75.00526,29.86895],[74.99813,29.86623],[74.99099,29.86782],[74.97721,29.88834],[74.97886,29.89431],[74.9529,29.90188],[74.94802,29.90723],[74.94419,29.91609],[74.94174,29.91766],[74.9364,29.92645],[74.93582,29.93068],[74.92698,29.94586],[74.92671,29.95049],[74.9229,29.95211],[74.91901,29.94707],[74.91294,29.94344],[74.90705,29.9406],[74.8972,29.93969],[74.89554,29.94073],[74.90073,29.94546],[74.90298,29.95348],[74.88796,29.96672],[74.87579,29.95761],[74.87057,29.95998],[74.86477,29.96016],[74.85542,29.95649],[74.85059,29.96197],[74.84348,29.9646],[74.83848,29.97115],[74.8285,29.97333],[74.82106,29.97103],[74.82636,29.97722],[74.82433,29.98577],[74.81786,29.9911],[74.81146,29.9924],[74.80607,29.99205],[74.77845,29.97167],[74.77535,29.97334],[74.77108,29.97172],[74.76128,29.97331],[74.75856,29.97244],[74.75833,29.97004],[74.75395,29.96964],[74.75316,29.96731],[74.73898,29.9679],[74.73099,29.96146],[74.70683,29.97054],[74.70687,29.97699],[74.70207,29.97162],[74.70018,29.97272],[74.69438,29.96784],[74.68215,29.94349],[74.67032,29.93964],[74.65169,29.9266],[74.64816,29.91971],[74.64675,29.91128],[74.64958,29.90754],[74.65436,29.90574],[74.65081,29.90508],[74.63032,29.90504],[74.59726,29.91277],[74.5897,29.91698],[74.57988,29.92567],[74.57197,29.92747],[74.55903,29.92728],[74.56068,29.9295],[74.54133,29.94078],[74.53157,29.94967],[74.5186,29.92958],[74.51553,29.91592],[74.50979,29.90842],[74.52187,29.90254],[74.54383,29.90168],[74.55116,29.88271],[74.5588,29.87448],[74.56106,29.86978],[74.55138,29.85276],[74.54419,29.84439],[74.53356,29.83882],[74.50797,29.83329],[74.48464,29.81489],[74.475,29.79288],[74.47334,29.77007],[74.47787,29.74681],[74.50314,29.74275],[74.5347,29.74059],[74.54145,29.75],[74.5486,29.75549],[74.57731,29.75414],[74.57482,29.74879],[74.57811,29.74799],[74.5793,29.74903],[74.57879,29.75223],[74.5814,29.75251],[74.58749,29.76691],[74.60009,29.76649],[74.60334,29.75791],[74.61594,29.75227],[74.60954,29.74323],[74.60815,29.7319],[74.60982,29.72176],[74.60475,29.7049],[74.60018,29.69905],[74.60121,29.69039],[74.59315,29.67676],[74.58548,29.65447],[74.58654,29.64734],[74.59138,29.63954],[74.5893,29.63181],[74.58156,29.62716],[74.58276,29.62329],[74.58032,29.61712],[74.57762,29.60001],[74.57698,29.5718],[74.57497,29.56432],[74.57592,29.56011],[74.58991,29.54791],[74.59519,29.54498],[74.6023,29.54392],[74.6077,29.53887],[74.61185,29.5385],[74.61428,29.53533],[74.61483,29.53116],[74.61903,29.53258],[74.62309,29.53105],[74.62189,29.52225],[74.60977,29.51168],[74.6046,29.50318],[74.60101,29.50106],[74.59973,29.49398],[74.59539,29.48916],[74.59588,29.4804],[74.58639,29.46505],[74.58466,29.45849],[74.57323,29.4651],[74.54377,29.46797],[74.53678,29.45956],[74.53466,29.44772],[74.53644,29.44321],[74.53458,29.43526],[74.53662,29.42455],[74.54926,29.42473],[74.56641,29.42048],[74.57366,29.40648],[74.57392,29.39994],[74.57789,29.3885],[74.58525,29.37852],[74.58973,29.37664],[74.60291,29.36491],[74.60734,29.35623],[74.59929,29.32746],[74.63438,29.32961],[74.65451,29.33294],[74.65209,29.35129],[74.65823,29.37197],[74.67979,29.36926],[74.69097,29.36592],[74.70808,29.36676],[74.71952,29.37001],[74.73921,29.35414],[74.7622,29.35438],[74.77002,29.35691],[74.78189,29.35791],[74.78755,29.36143],[74.82038,29.39721],[74.84482,29.39968],[74.84966,29.40153],[74.85058,29.40359],[74.8714,29.39487],[74.87766,29.38354],[74.90031,29.38476],[74.9168,29.3713],[74.93828,29.36203],[74.93989,29.34002],[74.95453,29.33272],[74.95807,29.32818],[74.9609,29.32025],[74.95534,29.3091],[74.94841,29.30147],[74.95581,29.28615],[74.96117,29.28058],[74.971,29.27908],[74.98326,29.28057],[74.99923,29.27031],[75.01988,29.2862],[75.03482,29.2876],[75.05,29.28608],[75.06041,29.27601],[75.06124,29.26397],[75.07321,29.24783],[75.07419,29.24327],[75.07287,29.23783],[75.07554,29.22969],[75.11961,29.22287],[75.12439,29.23987],[75.13784,29.23873],[75.16283,29.24402],[75.17439,29.25125],[75.16864,29.25875],[75.17623,29.26319],[75.18138,29.26366],[75.18367,29.26689],[75.18801,29.26819],[75.19573,29.26331],[75.19851,29.25326],[75.21014,29.23465],[75.21803,29.23187],[75.23839,29.23024],[75.24207,29.23641],[75.24215,29.24409],[75.24469,29.25],[75.2557,29.25181],[75.28377,29.24979],[75.28497,29.26909],[75.28741,29.27332],[75.29742,29.27182],[75.30579,29.2746],[75.31618,29.28178],[75.32205,29.28949],[75.33504,29.28688],[75.34061,29.28113],[75.34032,29.27347],[75.33865,29.27345],[75.34004,29.26634],[75.33991,29.26346],[75.33846,29.26347],[75.33963,29.25977],[75.33843,29.25886],[75.3396,29.25686],[75.33874,29.25197],[75.33565,29.24796],[75.33585,29.24427],[75.33431,29.24415],[75.33389,29.24116],[75.32812,29.23531],[75.32963,29.23265],[75.34269,29.22929],[75.34984,29.22377],[75.35589,29.22301],[75.35998,29.2272],[75.36129,29.22941],[75.36085,29.23944],[75.36235,29.24443],[75.3753,29.25535],[75.37729,29.25471],[75.37802,29.25683],[75.38518,29.25802],[75.38861,29.26124],[75.39266,29.26135],[75.40547,29.26054],[75.40607,29.25701],[75.40719,29.2583],[75.4107,29.25548],[75.41199,29.24275],[75.40868,29.24189],[75.40776,29.236],[75.40878,29.23506],[75.40526,29.23151],[75.40498,29.22818],[75.40208,29.2271],[75.4023,29.22243],[75.39801,29.22349],[75.39682,29.21754],[75.40293,29.21324],[75.40858,29.21331],[75.40737,29.21107],[75.41102,29.20746],[75.41228,29.19682],[75.41132,29.19392],[75.41179,29.19114],[75.41407,29.18939],[75.41294,29.18772],[75.41438,29.18431],[75.4127,29.18159],[75.40945,29.18021],[75.40588,29.17289],[75.40677,29.16975],[75.39526,29.16775],[75.38125,29.16895],[75.38137,29.15278],[75.3797,29.1508],[75.37874,29.14223],[75.37117,29.14157],[75.3715,29.1381],[75.38439,29.12947],[75.40216,29.1279],[75.40578,29.1198],[75.39387,29.11007],[75.39211,29.10199],[75.3938,29.0982],[75.39693,29.09758],[75.39574,29.09321],[75.39285,29.09285],[75.39099,29.08538],[75.39262,29.08477],[75.3927,29.07845],[75.39421,29.07824],[75.39469,29.07596],[75.39126,29.06273],[75.4106,29.06223],[75.43145,29.05631],[75.44182,29.05754],[75.44386,29.05223],[75.44217,29.05096],[75.4432,29.04804],[75.44622,29.04857],[75.44672,29.04554],[75.45193,29.03917],[75.45045,29.03539],[75.44713,29.03516],[75.44787,29.03044],[75.44632,29.03],[75.44495,29.02438],[75.44295,29.02309],[75.44295,29.02092],[75.44569,29.01797],[75.44572,29.00832],[75.4586,29.0142],[75.4629,29.01247],[75.47261,29.01431],[75.48481,29.01213],[75.50515,29.01179],[75.51558,29.00826],[75.522,29.00375],[75.52039,29.00365],[75.52077,29.0],[75.52337,28.99102],[75.52685,28.98532],[75.52742,28.971],[75.52436,28.9695],[75.52116,28.96287],[75.51475,28.96073],[75.51214,28.95692],[75.51273,28.95528],[75.51003,28.95388],[75.51046,28.95046],[75.50835,28.94831],[75.51187,28.94369],[75.51156,28.94206],[75.50874,28.94224],[75.50569,28.93591],[75.50047,28.93593],[75.50084,28.93393],[75.49413,28.93467],[75.49333,28.93627],[75.49073,28.93441],[75.48422,28.93465],[75.48382,28.9334],[75.47722,28.9347],[75.4734,28.92338],[75.48492,28.90865],[75.48398,28.90753],[75.48728,28.90795],[75.48633,28.9066],[75.48757,28.90317],[75.48981,28.90105],[75.49295,28.90114],[75.49425,28.89739],[75.4966,28.89616],[75.49861,28.87044],[75.49697,28.85697],[75.49847,28.84896],[75.5,28.84728],[75.50202,28.85093],[75.50529,28.85127],[75.50506,28.84435],[75.50767,28.84281],[75.50783,28.83922],[75.51074,28.83828],[75.51532,28.83983],[75.51555,28.83423],[75.52025,28.83399],[75.519,28.82627],[75.52011,28.82218],[75.51855,28.81706],[75.51937,28.81274],[75.51625,28.81242],[75.51182,28.80414],[75.50891,28.80272],[75.50868,28.79564],[75.51068,28.79567],[75.51127,28.79364],[75.50845,28.79131],[75.50609,28.79236],[75.50796,28.78873],[75.50466,28.78769],[75.50326,28.78253],[75.50854,28.78043],[75.51067,28.7811],[75.51405,28.77318],[75.51697,28.77468],[75.51796,28.77308],[75.51655,28.77038],[75.52206,28.7679],[75.52301,28.76608],[75.52147,28.76337],[75.52313,28.76364],[75.52212,28.76101],[75.52404,28.76098],[75.52389,28.75716],[75.52863,28.75217],[75.52914,28.74864],[75.5361,28.74517],[75.53046,28.73825],[75.54002,28.72448],[75.53991,28.72134],[75.53745,28.71801],[75.53993,28.69672],[75.53891,28.69478],[75.54502,28.6831],[75.54121,28.66049],[75.54509,28.65943],[75.54425,28.65415],[75.5498,28.64104],[75.55486,28.64384],[75.56073,28.63592],[75.56152,28.61321],[75.58627,28.61319],[75.58769,28.60799],[75.5911,28.60558],[75.62171,28.60207],[75.62406,28.59564],[75.62322,28.58901],[75.62575,28.57569],[75.62572,28.5658],[75.6317,28.5539],[75.63348,28.54444],[75.63948,28.54416],[75.64524,28.53937],[75.65372,28.53654],[75.6658,28.53599],[75.66845,28.53306],[75.671,28.52534],[75.67093,28.51712],[75.6774,28.51526],[75.68419,28.51097],[75.69022,28.50053],[75.69926,28.4954],[75.70198,28.49177],[75.70795,28.49371],[75.71859,28.49023],[75.72556,28.4895],[75.72902,28.4907],[75.73124,28.486],[75.73947,28.48476],[75.73843,28.47746],[75.73568,28.47594],[75.73567,28.46884],[75.76698,28.4613],[75.78055,28.45689],[75.78349,28.45537],[75.78386,28.45334],[75.78829,28.45355],[75.79213,28.44459],[75.78852,28.43356],[75.78083,28.43289],[75.77977,28.42751],[75.77663,28.42472],[75.76971,28.42277],[75.76672,28.41423],[75.77003,28.41264],[75.77204,28.4074],[75.77632,28.40418],[75.77679,28.40037],[75.78857,28.40415],[75.7886,28.4012],[75.79457,28.39961],[75.79948,28.40377],[75.79957,28.40715],[75.80694,28.40913],[75.80602,28.40585],[75.80982,28.40583],[75.81544,28.40762],[75.81535,28.40964],[75.81867,28.40991],[75.81985,28.40686],[75.82286,28.40562],[75.82216,28.40298],[75.83285,28.40535],[75.83741,28.40209],[75.83745,28.39737],[75.83953,28.39437],[75.84428,28.39461],[75.845,28.39168],[75.85407,28.39174],[75.85475,28.38982],[75.86401,28.389],[75.86395,28.38522],[75.87555,28.38723],[75.8904,28.38308],[75.89308,28.38969],[75.89637,28.39007],[75.89518,28.38762],[75.89761,28.38382],[75.8993,28.38396],[75.89844,28.38033],[75.90021,28.37806],[75.90064,28.37178],[75.90483,28.37327],[75.9084,28.37258],[75.90853,28.37092],[75.91824,28.372],[75.91669,28.36739],[75.92238,28.36642],[75.92355,28.36335],[75.92713,28.3629],[75.92738,28.3598],[75.92955,28.35914],[75.93009,28.34901],[75.92854,28.34312],[75.932,28.3429],[75.93297,28.3366],[75.9385,28.33734],[75.94806,28.33417],[75.95502,28.33377],[75.95517,28.33113],[75.95231,28.33101],[75.95225,28.32921],[75.95679,28.32675],[75.95784,28.31383],[75.97246,28.31858],[75.97342,28.31491],[75.97805,28.30933],[75.97793,28.30187],[75.98178,28.29953],[75.98621,28.29312],[76.00299,28.28404],[76.02633,28.27503],[76.02261,28.27035],[76.02264,28.26735],[76.01508,28.25253],[76.01474,28.25016],[76.01609,28.25019],[76.01296,28.24604],[76.01318,28.24405],[76.01653,28.24119],[76.01611,28.23695],[76.02781,28.23265],[76.02777,28.23136],[76.03721,28.22575],[76.03783,28.22271],[76.056,28.22028],[76.05573,28.21261],[76.05241,28.20402],[76.04744,28.20278],[76.04734,28.19814],[76.05094,28.19807],[76.05149,28.19629],[76.07192,28.19434],[76.07212,28.19018],[76.07437,28.19013],[76.07399,28.17359],[76.07634,28.17334],[76.07618,28.16855],[76.09545,28.15086],[76.095,28.14141],[76.09294,28.14003],[76.08788,28.13998],[76.08441,28.13693],[76.0747,28.13714],[76.06537,28.14153],[76.06966,28.15578],[76.07069,28.16515],[76.06025,28.16691],[76.04225,28.16548],[76.03179,28.16786],[76.03001,28.16409],[76.02612,28.16465],[76.01685,28.15009],[76.00749,28.15315],[76.00405,28.14772],[76.00453,28.14426],[76.00302,28.14318],[76.00061,28.13321],[76.00435,28.13199],[75.99899,28.12277],[75.98819,28.12504],[75.97667,28.12475],[75.96739,28.11382],[75.9617,28.11479],[75.94556,28.10716],[75.9386,28.08794],[75.94986,28.08612],[75.96463,28.08047],[75.97228,28.08327],[75.98343,28.08135],[75.98289,28.07665],[75.98869,28.069],[75.98833,28.0663],[75.98265,28.05741],[75.9793,28.05793],[75.97484,28.05099],[75.98441,28.04709],[75.99287,28.04633],[75.99473,28.0522],[75.99882,28.05714],[76.00766,28.05893],[76.00988,28.06763],[76.01682,28.07466],[76.02324,28.08599],[76.03537,28.08052],[76.03874,28.07822],[76.03727,28.07598],[76.0408,28.07406],[76.03882,28.06933],[76.03371,28.06334],[76.02959,28.06144],[76.02536,28.05424],[76.00828,28.05839],[76.00776,28.05571],[76.01713,28.0527],[76.01867,28.04201],[76.01639,28.03051],[75.99774,28.033],[75.99601,28.03828],[75.99462,28.03852],[75.99352,28.0352],[75.98967,28.03582],[75.98906,28.03361],[75.98348,28.03139],[75.97695,28.03137],[75.97273,28.02364],[75.97112,28.01608],[75.99521,28.00879],[75.99554,28.00689],[75.98993,27.99469],[75.98689,27.99759],[75.97761,28.0002],[75.96672,28.00003],[75.965,27.99632],[75.9658,27.98361],[75.96878,27.98094],[75.98594,27.97862],[75.98989,27.98233],[75.99994,27.97758],[75.99817,27.97529],[75.99456,27.97541],[75.98864,27.96821],[75.98196,27.96533],[75.97783,27.95438],[75.98305,27.95098],[75.97272,27.93267],[75.96816,27.93193],[75.96603,27.93498],[75.95791,27.93591],[75.95795,27.93804],[75.95168,27.94773],[75.93907,27.9406],[75.93236,27.93014],[75.93963,27.92279],[75.93939,27.92109],[75.93697,27.92187],[75.93447,27.91863],[75.93707,27.91777],[75.93828,27.91408],[75.96807,27.91437],[75.9748,27.91179],[75.97317,27.90209],[75.98749,27.90416],[75.97925,27.89555],[75.97531,27.89366],[75.98442,27.88259],[75.97763,27.87379],[75.97936,27.86545],[75.97249,27.8606],[75.97137,27.85197],[75.98703,27.84167],[75.99857,27.83821],[76.00464,27.83445],[76.00646,27.83908],[76.00955,27.84152],[76.02729,27.83852],[76.03022,27.84005],[76.03625,27.8374],[76.04023,27.83894],[76.04087,27.84128],[76.04808,27.83498],[76.06064,27.84828],[76.07489,27.84382],[76.07929,27.84575],[76.08567,27.84471],[76.0862,27.8559],[76.08888,27.86054],[76.09809,27.85686],[76.10587,27.8561],[76.11441,27.85088],[76.1156,27.85207],[76.12333,27.85102],[76.12779,27.84372],[76.1354,27.83929],[76.13227,27.82448],[76.15364,27.81975],[76.15308,27.81537],[76.16053,27.81394],[76.16937,27.80795],[76.17215,27.80515],[76.17214,27.79965],[76.17496,27.79807],[76.18265,27.79862],[76.19226,27.80926],[76.1996,27.82156],[76.20779,27.81866],[76.20754,27.81704],[76.20934,27.81634],[76.21733,27.81681],[76.22518,27.83326],[76.20885,27.84001],[76.21216,27.84644],[76.19381,27.85951],[76.19437,27.87738],[76.20028,27.87824],[76.20209,27.88732],[76.20146,27.89254],[76.18609,27.89899],[76.16821,27.90338],[76.16868,27.91528],[76.17395,27.92982],[76.17705,27.92973],[76.18241,27.95193],[76.17993,27.95287],[76.18066,27.95713],[76.18245,27.96201],[76.18401,27.96181],[76.18664,27.96548],[76.16345,27.97342],[76.16597,27.97691],[76.16693,27.98299],[76.15756,27.98721],[76.15778,27.98898],[76.16138,28.0002],[76.16955,28.00742],[76.17689,28.02155],[76.18539,28.02029],[76.19687,28.01548],[76.20334,28.02803],[76.2148,28.02658],[76.2167,28.03548],[76.20372,28.03775],[76.20181,28.02935],[76.19604,28.03039],[76.18954,28.03445],[76.18878,28.03661],[76.17794,28.0456],[76.1804,28.05452],[76.18879,28.05321],[76.1895,28.05645],[76.19918,28.05571],[76.20113,28.05842],[76.20959,28.05587],[76.20861,28.05227],[76.21934,28.04921],[76.22115,28.05022],[76.2281,28.0484],[76.23072,28.05114],[76.23804,28.04972],[76.24293,28.06436],[76.25552,28.06777],[76.26096,28.06753],[76.28385,28.05698],[76.28418,28.0515],[76.29356,28.0492],[76.29117,28.03457],[76.29216,28.02586],[76.29898,28.02271],[76.31321,28.0189],[76.31357,28.01708],[76.31895,28.01553],[76.32076,28.01598],[76.32298,28.02153],[76.32877,28.01878],[76.34236,28.03058],[76.34965,28.04588],[76.3566,28.06749],[76.35514,28.06811],[76.35567,28.07073],[76.34349,28.0702],[76.34394,28.07142],[76.33302,28.07684],[76.33422,28.07992],[76.32888,28.08768],[76.32323,28.09053],[76.31876,28.08881],[76.30144,28.09787],[76.30927,28.10819],[76.31864,28.10768],[76.33659,28.10261],[76.34646,28.11256],[76.35044,28.1142],[76.35986,28.12492],[76.33315,28.13356],[76.33348,28.13624],[76.33063,28.13704],[76.33182,28.13928],[76.3299,28.14275],[76.32097,28.14856],[76.31523,28.15037],[76.3111,28.14555],[76.29758,28.14912],[76.29787,28.15212],[76.30336,28.15483],[76.30456,28.15932],[76.30163,28.15857],[76.30143,28.16005],[76.28071,28.16553],[76.28243,28.17127],[76.28958,28.17027],[76.29227,28.17922],[76.30523,28.17588],[76.30739,28.17906],[76.30877,28.1789],[76.33318,28.16982],[76.33453,28.17236],[76.34525,28.1694],[76.35785,28.16106],[76.35418,28.1548],[76.35824,28.15492],[76.35657,28.14373],[76.36632,28.13681],[76.38173,28.13324],[76.38473,28.13671],[76.39041,28.13415],[76.39362,28.13749],[76.39568,28.13715],[76.40083,28.14502],[76.43262,28.14092],[76.4374,28.14871],[76.45995,28.14747],[76.46301,28.14811],[76.46634,28.15151],[76.47574,28.14858],[76.47557,28.14345],[76.47131,28.1385],[76.47205,28.13508],[76.47675,28.13205],[76.47638,28.13084],[76.48187,28.12837],[76.48341,28.13081],[76.49193,28.12985],[76.48708,28.11941],[76.49628,28.12007],[76.50268,28.11871],[76.50052,28.11457],[76.49905,28.1002],[76.48002,28.10052],[76.47667,28.10553],[76.47725,28.10797],[76.46369,28.10916],[76.45705,28.10529],[76.45204,28.09122],[76.44784,28.08896],[76.46765,28.07879],[76.4718,28.08024],[76.47891,28.07767],[76.50124,28.05969],[76.49686,28.05381],[76.48943,28.05278],[76.47625,28.05441],[76.47606,28.05721],[76.47238,28.05855],[76.46848,28.05715],[76.46254,28.05911],[76.45868,28.05326],[76.45467,28.04233],[76.46155,28.04053],[76.46482,28.04243],[76.48118,28.04059],[76.48227,28.04187],[76.49742,28.04331],[76.50257,28.03143],[76.51007,28.02966],[76.52041,28.03223],[76.53037,28.04024],[76.54382,28.03421],[76.54096,28.03005],[76.53927,28.0232],[76.54281,28.01777],[76.54546,28.00729],[76.54405,28.00742],[76.54072,28.00217],[76.53639,28.0],[76.54275,27.99948],[76.54109,27.98478],[76.53595,27.97952],[76.53809,27.9677],[76.54472,27.96367],[76.54814,27.96384],[76.56169,27.96613],[76.56442,27.9781],[76.58039,27.9789],[76.58374,27.99167],[76.58799,27.9933],[76.58989,27.99786],[76.60186,27.99952],[76.60619,28.00385],[76.64068,28.00232],[76.65774,28.00743],[76.66816,28.01383],[76.66302,28.02985],[76.65439,28.03468],[76.65865,28.04292],[76.65857,28.04692],[76.65559,28.05312],[76.65192,28.05633],[76.65165,28.06162],[76.65558,28.07574],[76.65727,28.0893],[76.66337,28.0912],[76.68736,28.08765],[76.688,28.09023],[76.685,28.09158],[76.69819,28.11198],[76.70302,28.1076],[76.71206,28.12545],[76.71576,28.12774],[76.74356,28.12103],[76.75313,28.13511],[76.76245,28.14264],[76.77148,28.14501],[76.77637,28.14411],[76.78206,28.14707],[76.78381,28.15091],[76.79481,28.14838],[76.80063,28.16234],[76.80029,28.16446],[76.79606,28.16693],[76.79743,28.16844],[76.79502,28.16939],[76.79573,28.18042],[76.79249,28.18419],[76.79752,28.19181],[76.80036,28.19249],[76.80123,28.18774],[76.80622,28.18654],[76.80916,28.18704],[76.81225,28.19091],[76.81303,28.19328],[76.80478,28.1973],[76.8048,28.20454],[76.8084,28.21086],[76.81279,28.209],[76.83121,28.20917],[76.83818,28.21995],[76.84606,28.21953],[76.84849,28.22162],[76.86814,28.21973],[76.8749,28.21777],[76.87274,28.21505],[76.87306,28.21102],[76.871,28.20659],[76.87471,28.20549],[76.87836,28.20712],[76.88887,28.2032],[76.89088,28.20496],[76.90677,28.20031],[76.90618,28.1973],[76.90205,28.19898],[76.89864,28.19335],[76.89226,28.19323],[76.89162,28.19029],[76.89252,28.18359],[76.90245,28.18111],[76.9015,28.17866],[76.90702,28.17295],[76.90654,28.17189],[76.91973,28.1669],[76.93199,28.15305],[76.95095,28.14988],[76.94816,28.14221],[76.95792,28.14222],[76.97055,28.13843],[76.96195,28.11127],[76.96142,28.09958],[76.95795,28.08751],[76.95791,28.07745],[76.95457,28.07313],[76.95384,28.0626],[76.94839,28.05795],[76.9396,28.04298],[76.93635,28.01206],[76.93061,27.99335],[76.93285,27.98902],[76.93351,27.98161],[76.93794,27.98282],[76.93366,27.97129],[76.9333,27.9617],[76.93074,27.9533],[76.93154,27.92235],[76.95162,27.91803],[76.9496,27.90927],[76.95057,27.89564],[76.94163,27.89708],[76.93766,27.89622],[76.93746,27.87809],[76.94129,27.86418],[76.94148,27.8555],[76.943,27.85357],[76.94232,27.84262],[76.9357,27.82881],[76.91502,27.83454],[76.91358,27.8317],[76.90999,27.8149],[76.91404,27.80811],[76.91861,27.80744],[76.919,27.80414],[76.91363,27.80101],[76.91152,27.79609],[76.91334,27.78859],[76.90904,27.78691],[76.90617,27.78778],[76.90761,27.78235],[76.9064,27.77889],[76.90228,27.77534],[76.90215,27.77136],[76.90365,27.76933],[76.90084,27.76466],[76.90055,27.74737],[76.90169,27.74397],[76.89986,27.73671],[76.89698,27.73812],[76.89255,27.73233],[76.89241,27.72567],[76.89436,27.72435],[76.89452,27.71783],[76.89878,27.71647],[76.90478,27.71734],[76.91423,27.71319],[76.91904,27.7098],[76.92103,27.70309],[76.92473,27.69992],[76.92061,27.69571],[76.91642,27.69813],[76.90863,27.69368],[76.8945,27.70138],[76.88988,27.70075],[76.88934,27.69715],[76.90623,27.68629],[76.89859,27.67754],[76.91089,27.66802],[76.90671,27.66169],[76.91206,27.65797],[76.91155,27.65403],[76.91557,27.65227],[76.92692,27.66126],[76.93223,27.65881],[76.93336,27.65603],[76.93822,27.66647],[76.94377,27.67372],[76.95313,27.66804],[76.95486,27.66469],[76.95876,27.66243],[76.96267,27.66199],[76.96613,27.65839],[76.97937,27.6536],[76.98206,27.67612],[76.98861,27.69299],[76.9872,27.69515],[76.99039,27.7095],[77.0001,27.73697],[77.01152,27.73108],[77.01982,27.74577],[77.02509,27.7439],[77.0261,27.74638],[77.03394,27.74522],[77.03647,27.74861],[77.04507,27.74328],[77.04452,27.7419],[77.04685,27.73972],[77.04614,27.7373],[77.05032,27.73504],[77.04874,27.73153],[77.05963,27.72648],[77.06543,27.7314],[77.07281,27.73115],[77.07724,27.73551],[77.08566,27.73809],[77.08248,27.74588],[77.07819,27.7512],[77.0802,27.75725],[77.07635,27.76632],[77.07456,27.76701],[77.07209,27.76446],[77.06962,27.76747],[77.05955,27.76091],[77.05585,27.76342],[77.05758,27.77001],[77.05614,27.7712],[77.03577,27.78153],[77.0344,27.77811],[77.02658,27.77924],[77.03871,27.81012],[77.04057,27.81257],[77.04438,27.81216],[77.04583,27.81496],[77.04272,27.81828],[77.0448,27.82098],[77.0538,27.81694],[77.05556,27.81792],[77.06386,27.81126],[77.07462,27.81356],[77.08167,27.80625],[77.0808,27.80408],[77.10848,27.78548],[77.1131,27.78642],[77.12285,27.79262],[77.13452,27.78604],[77.1318,27.77807],[77.13522,27.77509],[77.14358,27.78559],[77.15651,27.78453],[77.15855,27.78735],[77.16081,27.79258],[77.16155,27.80329],[77.15655,27.80878],[77.15951,27.81634],[77.16723,27.81295],[77.17985,27.81715],[77.18944,27.80902],[77.1847,27.8025],[77.18242,27.80203],[77.17893,27.80438],[77.17357,27.79441],[77.1691,27.7909],[77.17702,27.78547],[77.1778,27.7871],[77.1833,27.78678],[77.19045,27.79434],[77.19268,27.79412],[77.19857,27.79882],[77.19146,27.80683],[77.19265,27.80817],[77.19135,27.80908],[77.19784,27.81586],[77.20207,27.82376],[77.20338,27.82344],[77.20671,27.81377],[77.21333,27.80765],[77.21065,27.8011],[77.22238,27.79588],[77.22658,27.79858],[77.2326,27.7965],[77.23837,27.79182],[77.23491,27.78929],[77.23389,27.78596],[77.24174,27.78354],[77.24812,27.79119],[77.25237,27.79069],[77.2613,27.80019],[77.26876,27.81494],[77.28372,27.80105],[77.29015,27.81044],[77.29857,27.81519],[77.29648,27.82522],[77.30356,27.82553],[77.30648,27.82752],[77.31081,27.82577],[77.3125,27.82799],[77.3207,27.82534],[77.33643,27.83423],[77.33293,27.83497],[77.33199,27.83746],[77.33516,27.842],[77.33516,27.84742],[77.34833,27.85555],[77.36089,27.85077],[77.36525,27.85379],[77.37704,27.85707],[77.37702,27.85886],[77.38998,27.85731],[77.39703,27.85335],[77.41043,27.85176],[77.42186,27.85438],[77.42233,27.85779],[77.41175,27.86639],[77.41282,27.86978],[77.40932,27.87417],[77.41039,27.87981],[77.41607,27.88379],[77.42013,27.89044],[77.42784,27.88984],[77.42829,27.89092],[77.45004,27.87116],[77.46092,27.8762],[77.47327,27.88452],[77.47876,27.89445],[77.4795,27.89786],[77.47805,27.89851],[77.4807,27.90789],[77.47884,27.91088],[77.48049,27.91503],[77.47709,27.91633],[77.47965,27.92166],[77.47568,27.92474],[77.4775,27.92828],[77.4759,27.92771],[77.47528,27.92925],[77.49224,27.93847],[77.50147,27.92526],[77.50749,27.92562],[77.51676,27.93306],[77.52583,27.92726],[77.52608,27.92538],[77.5293,27.92526],[77.53661,27.93398],[77.53695,27.93797],[77.54608,27.95793],[77.54423,27.96221],[77.51872,27.96213],[77.51697,27.97115],[77.51885,27.97421],[77.52119,27.97651],[77.52946,27.97607],[77.53777,27.97902],[77.5412,27.98182],[77.54243,27.98909],[77.52425,28.0],[77.52403,28.00674],[77.52133,28.01414],[77.50839,28.02277],[77.50821,28.02524],[77.51193,28.02775],[77.51276,28.03189],[77.48841,28.0367],[77.48364,28.04045],[77.48534,28.04464],[77.49306,28.04683],[77.4986,28.05225],[77.50124,28.05852],[77.49979,28.06331],[77.47825,28.08039],[77.47435,28.08672],[77.4784,28.09101],[77.47885,28.09545],[77.48114,28.09754],[77.48211,28.10703],[77.48981,28.10556],[77.49068,28.09716],[77.49218,28.0951],[77.49938,28.09461],[77.50054,28.09702],[77.4979,28.10446],[77.49847,28.10892],[77.5018,28.11477],[77.50938,28.11989],[77.51236,28.12484],[77.51236,28.12714],[77.50908,28.13021],[77.49377,28.13285],[77.49136,28.13654],[77.49219,28.13869],[77.50242,28.14322],[77.50424,28.14543],[77.50469,28.14973],[77.50049,28.1548],[77.5021,28.16118],[77.5112,28.16685],[77.51575,28.1634],[77.52228,28.1612],[77.53696,28.16563],[77.5459,28.17194],[77.54964,28.17975],[77.54795,28.18711],[77.54515,28.19088],[77.5376,28.19035],[77.53062,28.18586],[77.51748,28.19314],[77.51337,28.19183],[77.50853,28.18643],[77.50655,28.18168],[77.50119,28.18167],[77.49839,28.18453],[77.49962,28.19502],[77.49696,28.20535],[77.50206,28.20959],[77.50588,28.20952],[77.51748,28.20459],[77.52196,28.19659],[77.52403,28.19568],[77.53026,28.19861],[77.53466,28.20369],[77.53525,28.21026],[77.53289,28.21442],[77.52143,28.22021],[77.52128,28.22444],[77.52583,28.229],[77.54675,28.23799],[77.55042,28.24236],[77.54461,28.24873],[77.53742,28.24827],[77.53235,28.24495],[77.52471,28.24572],[77.522,28.24227],[77.51877,28.24253],[77.51325,28.24721],[77.50863,28.24655],[77.50955,28.24961],[77.50145,28.25244],[77.49922,28.25],[77.49915,28.24738],[77.49269,28.25198],[77.49079,28.27133],[77.49414,28.27483],[77.49467,28.27276],[77.49877,28.27841],[77.50343,28.28007],[77.50029,28.28152],[77.50173,28.28386],[77.4985,28.2856],[77.50294,28.28908],[77.50707,28.30569],[77.48571,28.32163],[77.48486,28.32569],[77.48195,28.32506],[77.47174,28.32811],[77.47318,28.33255],[77.47121,28.33482],[77.47818,28.33934],[77.49015,28.34345],[77.4963,28.34914],[77.5052,28.36264],[77.50005,28.36564],[77.50482,28.36999],[77.50279,28.36992],[77.49122,28.38515],[77.48281,28.38782],[77.47344,28.39697],[77.47567,28.39957],[77.48021,28.39873],[77.4813,28.40489],[77.48377,28.40809],[77.47763,28.41906],[77.46355,28.41515],[77.46115,28.41767],[77.4625,28.42436],[77.45161,28.42474],[77.45225,28.42688],[77.44126,28.42873],[77.44212,28.43083],[77.43552,28.43095],[77.43921,28.43504],[77.43597,28.43771],[77.43826,28.43868],[77.43343,28.45492],[77.41901,28.45223],[77.40006,28.45564],[77.40809,28.46717],[77.40578,28.46577],[77.39194,28.47203],[77.38734,28.468],[77.38047,28.47027],[77.37818,28.47252],[77.37835,28.47454],[77.37474,28.47648],[77.37006,28.4857],[77.37174,28.49844],[77.36777,28.50025],[77.36269,28.49883],[77.3581,28.50185],[77.35562,28.4992],[77.35247,28.4996],[77.34774,28.50419],[77.34761,28.51046],[77.34511,28.51323],[77.33611,28.50519],[77.32683,28.49011],[77.31837,28.48737],[77.3141,28.48361],[77.30653,28.48939],[77.30079,28.48985],[77.3006,28.49417],[77.29027,28.49654],[77.27653,28.49328],[77.27206,28.4908],[77.26945,28.48664],[77.2433,28.47882],[77.23559,28.47112],[77.23292,28.45791],[77.23441,28.45472],[77.24251,28.45615],[77.24656,28.45271],[77.2492,28.44518],[77.24883,28.43292],[77.25264,28.43291],[77.2493,28.42418],[77.23841,28.42083],[77.22852,28.41391],[77.21661,28.40973],[77.21601,28.41146],[77.19053,28.40721],[77.18437,28.41043],[77.17448,28.40467],[77.17145,28.40626],[77.17114,28.40924],[77.16517,28.41423],[77.16593,28.42569],[77.1623,28.42894],[77.15507,28.43209],[77.14831,28.4374],[77.14108,28.4367],[77.13233,28.43914],[77.12363,28.44546],[77.12185,28.45851],[77.11078,28.47131],[77.11297,28.47123],[77.11469,28.48097],[77.12073,28.49594],[77.11697,28.49636],[77.09681,28.5058],[77.09592,28.50652],[77.09853,28.51104],[77.09345,28.51395],[77.0718,28.52019],[77.06682,28.51201],[77.05895,28.51264],[77.04624,28.5167],[77.04851,28.52074],[77.03176,28.53157],[77.02404,28.53309],[77.01544,28.53974],[77.00665,28.54141],[77.00023,28.53209],[77.01455,28.52395],[77.01711,28.52083],[77.01022,28.51435],[76.99656,28.51975],[76.99519,28.51672],[76.99039,28.5135],[76.98276,28.51712],[76.9781,28.52132],[76.97075,28.5152],[76.95167,28.50422],[76.94166,28.50454],[76.93349,28.5097],[76.92734,28.51051],[76.92079,28.50698],[76.9144,28.51167],[76.90793,28.51381],[76.90302,28.50893],[76.89862,28.50874],[76.89223,28.50083],[76.88545,28.50114],[76.88569,28.50245],[76.88041,28.5062],[76.88713,28.52057],[76.87703,28.5244],[76.87458,28.52701],[76.87321,28.53275],[76.86738,28.53555],[76.86472,28.5435],[76.84536,28.55041],[76.84241,28.5563],[76.84069,28.57166],[76.83889,28.57328],[76.83953,28.58279],[76.84611,28.5848],[76.86315,28.5854],[76.86607,28.58796],[76.87176,28.60286],[76.87734,28.60883],[76.8824,28.62279],[76.88833,28.63196],[76.89327,28.63169],[76.90647,28.6238],[76.91429,28.63235],[76.9202,28.6315],[76.93457,28.61835],[76.94299,28.628],[76.94446,28.63329],[76.9365,28.63783],[76.92496,28.65015],[76.93534,28.66786],[76.94885,28.67019],[76.95241,28.66961],[76.9538,28.66772],[76.95803,28.68463],[76.96783,28.69963],[76.9482,28.71299],[76.9594,28.72925],[76.96006,28.73274],[76.95593,28.73823],[76.95828,28.74323],[76.94449,28.75407],[76.94651,28.7588],[76.95557,28.76778],[76.94981,28.77706],[76.95007,28.78326],[76.95385,28.79091],[76.94604,28.79797],[76.94189,28.79866],[76.94628,28.80662],[76.94591,28.81112],[76.95101,28.81818],[76.96176,28.81481],[76.96487,28.8204],[76.96347,28.82226],[76.96432,28.82546],[76.96701,28.82805],[76.97308,28.82685],[76.97668,28.82222],[76.97969,28.82123],[76.98591,28.82939],[76.98724,28.8353],[76.99481,28.83951],[76.99928,28.83788],[77.00744,28.84071],[77.02333,28.83936],[77.04023,28.83206],[77.04261,28.83426],[77.04184,28.83786],[77.04513,28.84093],[77.04569,28.84746],[77.05781,28.86775],[77.06098,28.87104],[77.06924,28.86719],[77.07175,28.86893],[77.07461,28.86752],[77.07924,28.87195],[77.07765,28.87718],[77.08266,28.8835],[77.08683,28.88089],[77.08756,28.87533],[77.09493,28.87123],[77.10983,28.87007],[77.12084,28.85994],[77.12093,28.85831],[77.1249,28.85763],[77.12548,28.85986],[77.13222,28.8636],[77.14032,28.86206],[77.14255,28.85971],[77.14199,28.85624],[77.14531,28.85364],[77.14202,28.84705],[77.14241,28.83886],[77.15775,28.83669],[77.15678,28.83897],[77.16595,28.84907],[77.1721,28.84991],[77.17306,28.85723],[77.1754,28.85832],[77.18142,28.85751],[77.19771,28.85923],[77.20992,28.85772],[77.20819,28.86184],[77.19495,28.86486],[77.1893,28.86788],[77.19196,28.87502],[77.18868,28.88008],[77.19546,28.88621],[77.20822,28.8881],[77.21541,28.88474],[77.22056,28.87879],[77.22352,28.87855],[77.2281,28.88119],[77.2275,28.89332],[77.23247,28.89795],[77.23262,28.90384],[77.23475,28.90906],[77.23123,28.92053],[77.22489,28.92305],[77.22198,28.92816],[77.214,28.93254],[77.2073,28.93488],[77.20141,28.93392],[77.1959,28.93933],[77.19719,28.94654],[77.19298,28.95891],[77.19533,28.96692],[77.20113,28.97279],[77.20274,28.98526],[77.20188,28.98848],[77.19797,28.99026],[77.19909,28.99203],[77.19766,28.99218],[77.19096,29.00592],[77.19075,29.00939],[77.1931,29.01316],[77.18903,29.02355],[77.18912,29.02767],[77.18511,29.03149],[77.17776,29.02964],[77.16697,29.03382],[77.1669,29.03737],[77.16994,29.03974],[77.17214,29.04648],[77.16804,29.05455],[77.16376,29.07943],[77.16226,29.0809],[77.15669,29.07922],[77.14676,29.08055],[77.14268,29.08359],[77.13397,29.096],[77.13896,29.10801],[77.14608,29.11052],[77.14908,29.11765],[77.14745,29.13352],[77.13596,29.14196],[77.13621,29.14952],[77.1429,29.15623],[77.14356,29.16931],[77.14716,29.18051],[77.14376,29.18313],[77.14018,29.19213],[77.14329,29.19434],[77.1422,29.20408],[77.13433,29.21001],[77.13141,29.21749],[77.13349,29.22347],[77.14785,29.2304],[77.15,29.23276],[77.14875,29.23961],[77.14978,29.25],[77.14539,29.25756],[77.13995,29.26139],[77.13895,29.26784],[77.14386,29.27663],[77.14502,29.2833],[77.14948,29.2881],[77.15066,29.29471],[77.15828,29.30288],[77.16055,29.3134],[77.16031,29.31581],[77.15664,29.31868],[77.15653,29.32279],[77.16115,29.33236],[77.15976,29.33678],[77.15174,29.34111],[77.13528,29.3399],[77.12953,29.34258],[77.12445,29.35143],[77.12896,29.35703],[77.12345,29.36724],[77.1233,29.37034],[77.12703,29.37576],[77.14257,29.37747],[77.15741,29.38731],[77.15347,29.39067],[77.15103,29.38994],[77.1509,29.38716],[77.14737,29.38785],[77.1426,29.39073],[77.13666,29.39677],[77.13569,29.39971],[77.13325,29.40084],[77.13425,29.40477],[77.13184,29.41298],[77.13312,29.41877],[77.14436,29.42653],[77.14842,29.43408],[77.14452,29.44531],[77.13393,29.44751],[77.12321,29.45537],[77.12268,29.46889],[77.13072,29.47591],[77.13331,29.48306],[77.12924,29.49027],[77.1215,29.49536],[77.12118,29.49821],[77.11301,29.5066],[77.10356,29.50726],[77.10122,29.51491],[77.09637,29.51949],[77.09754,29.52735],[77.10248,29.53234],[77.10218,29.53882],[77.10358,29.53902],[77.10835,29.54783],[77.12191,29.55201],[77.12626,29.55618],[77.12684,29.55945],[77.12079,29.56372],[77.12098,29.56647],[77.10501,29.5722],[77.09971,29.57657],[77.09923,29.57914],[77.09579,29.58245],[77.09008,29.5847],[77.0862,29.58439],[77.08395,29.58724],[77.08418,29.59092],[77.08813,29.59406],[77.09515,29.59539],[77.10202,29.59413],[77.10953,29.59743],[77.10863,29.60091],[77.11302,29.61063],[77.10862,29.61344],[77.10378,29.61405],[77.10158,29.61983],[77.10169,29.62152],[77.1047,29.62312],[77.1062,29.63233],[77.11478,29.63828],[77.1188,29.63551],[77.13152,29.64184],[77.1324,29.64725],[77.13716,29.64942],[77.14101,29.65497],[77.13806,29.66663],[77.14257,29.66835],[77.14655,29.67223],[77.14339,29.6749],[77.14245,29.68045],[77.14734,29.68322],[77.15111,29.69045],[77.15655,29.69258],[77.15483,29.69591],[77.1556,29.6993],[77.14941,29.7057],[77.14953,29.70949],[77.14574,29.71097],[77.14501,29.71366],[77.13975,29.7147],[77.13779,29.71755],[77.13423,29.71843],[77.13289,29.72239],[77.13361,29.72847],[77.13907,29.73227],[77.13906,29.73821],[77.13685,29.73962],[77.1355,29.74408],[77.12719,29.7473],[77.12246,29.75124],[77.11998,29.7554],[77.11981,29.76008],[77.12221,29.76708],[77.12531,29.7695],[77.13891,29.76962],[77.14662,29.77183],[77.14745,29.77884],[77.15137,29.7882],[77.15878,29.79231],[77.16429,29.79172],[77.1726,29.80164],[77.17367,29.80505],[77.17249,29.80776],[77.1792,29.81267],[77.17825,29.8458],[77.18323,29.85453],[77.18694,29.85783],[77.18946,29.85847],[77.19314,29.85675],[77.19734,29.85874],[77.19911,29.86287],[77.20135,29.86419],[77.20203,29.8689],[77.20013,29.88949],[77.19363,29.89075],[77.18832,29.89407],[77.18631,29.89813],[77.18576,29.90753],[77.18992,29.91322],[77.19936,29.91423],[77.20163,29.917],[77.21119,29.91866],[77.21748,29.92342],[77.22105,29.93288],[77.22595,29.93435],[77.23631,29.9509],[77.23693,29.95474],[77.24401,29.95979],[77.24687,29.96832],[77.24698,29.97659],[77.26153,29.98288],[77.27766,30.00024],[77.27556,30.00634],[77.27926,30.01216],[77.27956,30.02078],[77.28227,30.02941],[77.27637,30.03755],[77.27778,30.04181],[77.28494,30.0424],[77.29693,30.05332],[77.3002,30.05248],[77.30298,30.0553],[77.3189,30.0565],[77.32846,30.05333],[77.3343,30.05374],[77.34522,30.06932],[77.36264,30.07638],[77.36845,30.0836],[77.37745,30.09002],[77.38239,30.09159],[77.38851,30.08688],[77.39148,30.08988],[77.4062,30.08825],[77.42386,30.10321],[77.41694,30.10544],[77.41023,30.10473],[77.40316,30.11175],[77.40559,30.11389],[77.41227,30.11433],[77.41349,30.11294],[77.42189,30.12859],[77.42505,30.13145],[77.41978,30.13524],[77.4227,30.14011],[77.42279,30.15029],[77.42753,30.1557],[77.42569,30.15812],[77.42976,30.16398],[77.43481,30.16399],[77.43504,30.1608],[77.43643,30.16047],[77.44071,30.16498],[77.44956,30.16578],[77.45781,30.16267],[77.47183,30.18189],[77.4754,30.17912],[77.48053,30.18422],[77.48675,30.19535],[77.49483,30.20401],[77.50462,30.2252],[77.52049,30.24466],[77.53024,30.25048],[77.53825,30.27796],[77.54658,30.28147],[77.56852,30.29898],[77.5831,30.30761],[77.58643,30.31305],[77.58609,30.31541],[77.57856,30.32525],[77.57798,30.33078],[77.5862,30.33942],[77.58853,30.34571],[77.5909,30.34782],[77.59249,30.35479],[77.60185,30.36145],[77.60459,30.36739],[77.5897,30.3746],[77.58564,30.37947],[77.58016,30.37734],[77.57122,30.38084],[77.55324,30.39027],[77.54679,30.39601],[77.54796,30.40037],[77.53639,30.41076],[77.52883,30.42241],[77.52543,30.43332],[77.52555,30.44053],[77.5198,30.44539],[77.51538,30.44514],[77.50299,30.42983],[77.49995,30.41888],[77.50161,30.4087],[77.49871,30.40582],[77.49294,30.41169],[77.47954,30.40602],[77.4735,30.401],[77.46567,30.4025],[77.46271,30.40098],[77.45445,30.40081],[77.44532,30.396],[77.43849,30.40404],[77.42289,30.40408],[77.42382,30.41075],[77.43038,30.41169],[77.43376,30.41702],[77.445,30.41867],[77.44636,30.42294],[77.45369,30.43035],[77.45396,30.43373],[77.46156,30.43461],[77.46144,30.44388],[77.4662,30.45001],[77.45901,30.4581],[77.45612,30.45854],[77.45159,30.44827],[77.44963,30.4485],[77.44542,30.44476],[77.44274,30.43974],[77.43598,30.43278],[77.42197,30.42512],[77.41742,30.42538],[77.41587,30.41909],[77.40948,30.41534],[77.40954,30.40979],[77.40523,30.41019],[77.39864,30.41742],[77.40434,30.42214],[77.40399,30.42533],[77.40614,30.4256],[77.40652,30.42791],[77.40831,30.42872],[77.40353,30.43088],[77.40022,30.4288],[77.399,30.43138],[77.39137,30.43167],[77.38967,30.43476],[77.39049,30.4414],[77.38756,30.442],[77.37768,30.44087],[77.36723,30.44222],[77.36398,30.43437],[77.36346,30.44325],[77.35481,30.4557],[77.35358,30.46075],[77.34669,30.45783],[77.34188,30.45994],[77.33267,30.45766],[77.32823,30.45575],[77.32588,30.45168],[77.3211,30.44807],[77.31924,30.44796],[77.31923,30.4503],[77.31667,30.44814],[77.30872,30.44916],[77.30683,30.45025],[77.30783,30.45273],[77.30392,30.45199],[77.29439,30.45451],[77.29182,30.45699],[77.29285,30.45951],[77.29107,30.46061],[77.28988,30.4604],[77.29117,30.45923],[77.28809,30.45765],[77.28333,30.45777],[77.27973,30.46025],[77.27826,30.45846],[77.27426,30.45875],[77.27245,30.46955],[77.26615,30.47434],[77.26536,30.47683],[77.25476,30.47665],[77.25266,30.47847],[77.251,30.47698],[77.24153,30.48306],[77.23751,30.48267],[77.23238,30.4845],[77.23034,30.48334],[77.22809,30.48545],[77.22101,30.4799],[77.21652,30.47067],[77.21351,30.46841],[77.20907,30.48274],[77.21304,30.49639],[77.20939,30.50003],[77.20132,30.5153],[77.19681,30.51729],[77.19786,30.5195],[77.19504,30.52257],[77.18722,30.52372],[77.18119,30.52788],[77.17446,30.52921],[77.17258,30.53021],[77.17288,30.53231],[77.17034,30.53337],[77.15232,30.53431],[77.14536,30.53645],[77.13568,30.54302],[77.12793,30.55672],[77.12173,30.56294],[77.13428,30.56955],[77.13829,30.56894],[77.13765,30.57162],[77.14018,30.57808],[77.14821,30.57675],[77.15317,30.58336],[77.15764,30.58399],[77.16111,30.58661],[77.15941,30.58887],[77.16557,30.5916],[77.16427,30.59437],[77.17377,30.60055],[77.1708,30.60437],[77.1727,30.61114],[77.17058,30.61365],[77.17255,30.61954],[77.1714,30.62755],[77.17334,30.63332],[77.17691,30.63697],[77.16771,30.64237],[77.16476,30.65126],[77.16304,30.65084],[77.16281,30.65468],[77.16822,30.66408],[77.16853,30.66954],[77.16658,30.67485],[77.16089,30.68021],[77.16175,30.68305],[77.16719,30.6839],[77.16121,30.69093],[77.15483,30.6926],[77.14788,30.69947],[77.14219,30.69946],[77.13761,30.70618],[77.12885,30.71075],[77.12796,30.7161],[77.12439,30.72177],[77.12034,30.71878],[77.11373,30.71819],[77.11348,30.72079],[77.11146,30.72143],[77.11536,30.72482],[77.1141,30.72857],[77.10951,30.72918],[77.10126,30.734],[77.09353,30.74233],[77.07802,30.74401],[77.06806,30.74094],[77.06258,30.74568],[77.05547,30.74543],[77.04719,30.75295],[77.04838,30.74923],[77.04479,30.75164],[77.04162,30.7502],[77.04562,30.74133],[77.0335,30.74029],[77.03309,30.73864],[77.027,30.73687],[77.01751,30.74342],[77.01775,30.74828],[77.02109,30.74888],[77.02038,30.75245],[77.01624,30.75033],[77.01893,30.75469],[77.01861,30.76554],[77.01469,30.76786],[77.01042,30.76703],[77.00794,30.76919],[77.00127,30.77044],[77.00587,30.77411],[77.00897,30.77355],[77.01425,30.77566],[77.01859,30.7803],[77.01823,30.78277],[77.0169,30.7801],[77.01548,30.78088],[77.0166,30.78572],[77.01786,30.78603],[77.01241,30.78803],[77.01513,30.79309],[77.01196,30.80014],[77.01252,30.80919],[77.01069,30.8097],[77.00278,30.80564],[77.00016,30.81073],[76.99724,30.81219],[76.98659,30.81399],[76.98452,30.81226],[76.97758,30.81235],[76.97817,30.81691],[76.97391,30.81854],[76.97046,30.82465],[76.96512,30.82556],[76.96209,30.82362],[76.96208,30.82139],[76.96007,30.82731],[76.95189,30.81756],[76.9508,30.81383],[76.94891,30.81407],[76.94861,30.8167],[76.94594,30.81842],[76.94264,30.81743],[76.94895,30.82443],[76.944,30.83766],[76.95125,30.85052],[76.94862,30.85337],[76.94383,30.85294],[76.94303,30.85997],[76.93546,30.86969],[76.93838,30.87106],[76.9364,30.87457],[76.93311,30.87444],[76.92839,30.87142],[76.92658,30.87257],[76.93107,30.87316],[76.93015,30.87624],[76.93615,30.87777],[76.93647,30.88464],[76.93096,30.88774],[76.92839,30.89145],[76.92482,30.88991],[76.92746,30.88596],[76.92566,30.88481],[76.92139,30.88505],[76.92055,30.88725],[76.91795,30.88758],[76.91687,30.90077],[76.90953,30.897],[76.90862,30.89416],[76.89909,30.8927],[76.89495,30.89042],[76.89535,30.88698],[76.88733,30.88553],[76.8853,30.88296],[76.87595,30.8809],[76.87837,30.87574],[76.86958,30.87312],[76.86719,30.87604],[76.863,30.87762],[76.8604,30.88367],[76.85606,30.88424],[76.85109,30.88995],[76.84459,30.88926]],[[76.91979,30.88384],[76.92203,30.88261],[76.92424,30.87645],[76.92235,30.88047],[76.91741,30.88346],[76.91769,30.88646],[76.91979,30.88384]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-JH","area_level":"State","area_name":"Jharkhand","geometry_source":"SOI_States","same_as":"LGD/20/State"},"geometry":{"type":"Polygon","coordinates":[[[87.58452,25.33348],[87.59185,25.34188],[87.58389,25.34918],[87.58251,25.34316],[87.57454,25.34068],[87.57097,25.33327],[87.56266,25.33399],[87.55169,25.3325],[87.55029,25.32418],[87.5477,25.32373],[87.54854,25.32117],[87.54659,25.30802],[87.54281,25.29446],[87.54341,25.28258],[87.54183,25.28066],[87.53236,25.28028],[87.52588,25.28433],[87.51683,25.29335],[87.50162,25.29233],[87.49362,25.30751],[87.49003,25.29729],[87.4861,25.29727],[87.48602,25.29579],[87.49001,25.28044],[87.49864,25.27673],[87.49538,25.27145],[87.50079,25.26679],[87.49881,25.26258],[87.50049,25.25979],[87.49058,25.26127],[87.4764,25.23785],[87.47781,25.19414],[87.4626,25.19487],[87.46113,25.19776],[87.45885,25.19685],[87.44472,25.20456],[87.44089,25.20473],[87.42604,25.21111],[87.42255,25.21393],[87.41183,25.21507],[87.41185,25.21893],[87.40349,25.22241],[87.40319,25.2253],[87.40098,25.2269],[87.39139,25.22787],[87.38753,25.22293],[87.38315,25.22435],[87.37809,25.21691],[87.3751,25.21505],[87.37152,25.20625],[87.35988,25.21188],[87.33428,25.21613],[87.33324,25.22268],[87.32729,25.22362],[87.32281,25.20628],[87.31823,25.19526],[87.32084,25.18995],[87.3154,25.18013],[87.31422,25.16881],[87.31899,25.16477],[87.31647,25.16026],[87.31437,25.16028],[87.31198,25.14877],[87.30797,25.14741],[87.30494,25.14289],[87.30664,25.14079],[87.30574,25.13794],[87.30685,25.13641],[87.30295,25.13424],[87.2962,25.11336],[87.29793,25.11205],[87.29522,25.10236],[87.29812,25.09976],[87.2954,25.08854],[87.26982,25.09397],[87.26705,25.09791],[87.26368,25.09964],[87.26318,25.10331],[87.25034,25.10573],[87.25095,25.10201],[87.24883,25.10132],[87.24934,25.10012],[87.24688,25.09966],[87.24436,25.10143],[87.24054,25.09797],[87.23981,25.09209],[87.23767,25.09233],[87.2374,25.08584],[87.21429,25.09123],[87.21273,25.08195],[87.20795,25.08237],[87.201,25.07872],[87.19921,25.07285],[87.19561,25.07078],[87.19368,25.07204],[87.1927,25.07008],[87.19452,25.0689],[87.19225,25.06685],[87.18942,25.06799],[87.18196,25.06697],[87.17773,25.06298],[87.17182,25.04828],[87.16587,25.04613],[87.16726,25.04061],[87.16322,25.03776],[87.1589,25.02897],[87.14934,25.02489],[87.14585,25.01886],[87.14697,25.01334],[87.14561,25.00981],[87.15032,25.00255],[87.14923,24.99896],[87.15126,24.98725],[87.14891,24.9776],[87.14612,24.97357],[87.14914,24.96896],[87.14728,24.96476],[87.14881,24.95987],[87.14364,24.94414],[87.15091,24.93478],[87.15174,24.93156],[87.14961,24.92659],[87.14292,24.92218],[87.14232,24.9144],[87.14349,24.91118],[87.14733,24.90991],[87.14806,24.90357],[87.1519,24.90373],[87.1538,24.89997],[87.15098,24.89879],[87.15543,24.89282],[87.15555,24.88502],[87.14734,24.87109],[87.14091,24.86591],[87.14069,24.86408],[87.14449,24.86331],[87.14259,24.8606],[87.13478,24.85961],[87.13242,24.86261],[87.1291,24.86173],[87.12059,24.85519],[87.11007,24.85701],[87.10612,24.85506],[87.09878,24.84786],[87.10038,24.84768],[87.10177,24.8437],[87.10072,24.84002],[87.0912,24.82547],[87.08521,24.8236],[87.07736,24.82528],[87.07434,24.81985],[87.07331,24.8086],[87.08355,24.80606],[87.08578,24.80363],[87.09574,24.80272],[87.09289,24.79191],[87.08801,24.78634],[87.08535,24.78632],[87.08357,24.78192],[87.07871,24.77753],[87.08002,24.77455],[87.0786,24.76833],[87.08431,24.75613],[87.0781,24.75243],[87.07942,24.74888],[87.07021,24.74764],[87.06964,24.74556],[87.07007,24.74348],[87.07386,24.74137],[87.0729,24.73703],[87.07861,24.7366],[87.07656,24.73017],[87.08074,24.72907],[87.07714,24.72157],[87.07823,24.71935],[87.07258,24.71472],[87.06805,24.70339],[87.06975,24.69506],[87.06549,24.689],[87.06194,24.68879],[87.05975,24.6826],[87.05975,24.67632],[87.05407,24.66934],[87.05341,24.65743],[87.05067,24.65161],[87.05058,24.64463],[87.05244,24.64127],[87.04615,24.62987],[87.04898,24.62403],[87.05064,24.60878],[87.04662,24.60947],[87.04477,24.61297],[87.03811,24.61723],[87.03623,24.61388],[87.02305,24.6157],[87.02415,24.62418],[87.02127,24.62946],[87.01076,24.63119],[87.00764,24.62887],[87.00632,24.62296],[86.9961,24.62011],[86.99268,24.62584],[86.98751,24.62769],[86.98521,24.63278],[86.98065,24.63479],[86.97758,24.63957],[86.96927,24.63536],[86.96154,24.63463],[86.95774,24.6318],[86.95279,24.63147],[86.95134,24.63347],[86.95324,24.63491],[86.95342,24.63972],[86.95599,24.64026],[86.9582,24.64759],[86.93759,24.65017],[86.93902,24.64341],[86.9421,24.64129],[86.94206,24.63873],[86.94494,24.63583],[86.93668,24.63031],[86.93277,24.63061],[86.92761,24.62451],[86.92892,24.6212],[86.92678,24.61374],[86.92214,24.61014],[86.9191,24.60486],[86.9195,24.60212],[86.9144,24.60041],[86.90933,24.59518],[86.90732,24.58816],[86.90895,24.5825],[86.91327,24.5774],[86.90937,24.57246],[86.91472,24.56831],[86.91539,24.56236],[86.91761,24.56086],[86.91596,24.55452],[86.9175,24.5467],[86.91458,24.54221],[86.90356,24.54752],[86.90249,24.55273],[86.89506,24.56082],[86.8935,24.55782],[86.88687,24.55884],[86.88795,24.5648],[86.88303,24.56726],[86.8821,24.5713],[86.88051,24.57219],[86.87672,24.56803],[86.86901,24.56547],[86.86362,24.5666],[86.86043,24.56381],[86.86202,24.56081],[86.86013,24.55638],[86.85684,24.55488],[86.85019,24.55851],[86.843,24.5581],[86.84145,24.56333],[86.84364,24.56854],[86.84265,24.57423],[86.83465,24.57508],[86.83183,24.5716],[86.82355,24.57239],[86.82161,24.57451],[86.81825,24.57318],[86.81597,24.57016],[86.81192,24.56905],[86.80315,24.57033],[86.80263,24.5736],[86.80537,24.57827],[86.81171,24.58254],[86.80716,24.59261],[86.81124,24.59827],[86.8036,24.60187],[86.78901,24.61869],[86.78505,24.61651],[86.78238,24.61897],[86.77324,24.62181],[86.76494,24.61945],[86.75869,24.61938],[86.75399,24.6213],[86.74825,24.60576],[86.74984,24.59507],[86.74668,24.5943],[86.74163,24.58712],[86.73528,24.58455],[86.73469,24.57949],[86.72308,24.58399],[86.70159,24.57329],[86.69162,24.57612],[86.68598,24.56995],[86.68077,24.57099],[86.67024,24.56488],[86.65173,24.5704],[86.64575,24.58063],[86.62417,24.58857],[86.62281,24.59626],[86.62439,24.59938],[86.61042,24.5987],[86.61092,24.60399],[86.61299,24.60651],[86.6148,24.60609],[86.61459,24.60831],[86.60329,24.60838],[86.60307,24.60194],[86.59819,24.59991],[86.59716,24.59657],[86.58887,24.58853],[86.58922,24.5793],[86.58029,24.56653],[86.56981,24.56471],[86.56647,24.56649],[86.56163,24.56222],[86.55918,24.56227],[86.55834,24.55824],[86.56379,24.55255],[86.55336,24.5435],[86.55232,24.53597],[86.54153,24.54034],[86.53629,24.53585],[86.52936,24.54028],[86.51751,24.53033],[86.51535,24.52537],[86.50957,24.52219],[86.50078,24.50404],[86.50268,24.49324],[86.5004,24.48944],[86.49708,24.49025],[86.49434,24.4862],[86.49536,24.4831],[86.49184,24.47585],[86.49447,24.47338],[86.49031,24.47132],[86.49086,24.46718],[86.48673,24.46414],[86.49532,24.45626],[86.49677,24.44375],[86.49421,24.44082],[86.49128,24.42808],[86.47943,24.42794],[86.47702,24.42451],[86.46866,24.42627],[86.4665,24.42386],[86.4665,24.42135],[86.46918,24.41986],[86.46915,24.41535],[86.46689,24.41013],[86.46789,24.40616],[86.47075,24.40567],[86.47146,24.40152],[86.4701,24.39741],[86.47193,24.39335],[86.46672,24.38484],[86.46713,24.38107],[86.4579,24.3782],[86.45603,24.37197],[86.4449,24.36783],[86.43255,24.38014],[86.42778,24.37715],[86.42355,24.37951],[86.42044,24.37867],[86.41213,24.38097],[86.40426,24.38855],[86.40242,24.39677],[86.40004,24.39853],[86.397,24.39836],[86.39675,24.40374],[86.38115,24.41291],[86.37806,24.41623],[86.37746,24.41958],[86.37465,24.41705],[86.36857,24.41869],[86.36727,24.42448],[86.35816,24.42926],[86.3499,24.44739],[86.34498,24.44724],[86.34394,24.44398],[86.33485,24.44245],[86.33144,24.44437],[86.31738,24.44152],[86.31355,24.44706],[86.29972,24.44773],[86.29494,24.45092],[86.29456,24.45601],[86.29986,24.45848],[86.29858,24.45965],[86.27601,24.4658],[86.28183,24.47911],[86.29042,24.4789],[86.29338,24.48121],[86.29378,24.48817],[86.29887,24.49525],[86.29942,24.5],[86.30331,24.50545],[86.30898,24.50976],[86.30913,24.51248],[86.30557,24.51941],[86.30569,24.52769],[86.29929,24.53034],[86.29747,24.53351],[86.29713,24.5361],[86.29999,24.53627],[86.30804,24.54881],[86.30414,24.5529],[86.30278,24.55924],[86.30084,24.56012],[86.30403,24.56581],[86.30744,24.56723],[86.30709,24.57139],[86.31761,24.57741],[86.31613,24.58128],[86.32321,24.58679],[86.31936,24.58596],[86.31748,24.58823],[86.31412,24.58702],[86.30856,24.58846],[86.30917,24.58389],[86.30302,24.58328],[86.30074,24.58608],[86.29745,24.5851],[86.29192,24.5884],[86.28799,24.587],[86.28492,24.58786],[86.28152,24.58511],[86.27455,24.58658],[86.26946,24.58477],[86.27508,24.57975],[86.27467,24.57713],[86.2677,24.58055],[86.26434,24.58425],[86.26282,24.58396],[86.2626,24.57927],[86.25921,24.57867],[86.25695,24.58057],[86.25454,24.58709],[86.2461,24.58761],[86.24154,24.59001],[86.2408,24.59696],[86.23834,24.60013],[86.22954,24.60572],[86.22417,24.60679],[86.22216,24.6109],[86.2183,24.61101],[86.2143,24.61379],[86.21336,24.60235],[86.21635,24.59854],[86.21445,24.59493],[86.20765,24.59113],[86.19727,24.58824],[86.19448,24.58565],[86.1858,24.58595],[86.18048,24.58368],[86.17945,24.58509],[86.1615,24.58625],[86.15022,24.59513],[86.15184,24.60081],[86.15072,24.60255],[86.14135,24.60704],[86.13326,24.60519],[86.12922,24.611],[86.12532,24.61148],[86.12496,24.61417],[86.12104,24.61849],[86.12196,24.62206],[86.11865,24.62578],[86.11946,24.62993],[86.1214,24.6317],[86.12045,24.63544],[86.11852,24.6359],[86.1199,24.63875],[86.11715,24.63949],[86.11522,24.64395],[86.12509,24.65457],[86.12706,24.66687],[86.12475,24.67111],[86.1319,24.67589],[86.13232,24.67901],[86.12902,24.68623],[86.12836,24.69865],[86.119,24.71118],[86.11652,24.71229],[86.1164,24.71731],[86.10869,24.7272],[86.1094,24.7307],[86.10741,24.7348],[86.09073,24.746],[86.06631,24.75165],[86.0558,24.74605],[86.03709,24.74113],[86.0351,24.74636],[86.04323,24.74763],[86.04688,24.75266],[86.05411,24.75623],[86.0569,24.76107],[86.05852,24.77173],[86.0551,24.77969],[86.04558,24.77642],[86.03755,24.77648],[86.03236,24.77075],[86.02421,24.76668],[86.00507,24.76188],[85.99644,24.75319],[85.98008,24.74882],[85.97348,24.74285],[85.9718,24.73651],[85.96905,24.73313],[85.9585,24.7323],[85.9444,24.73357],[85.93663,24.73515],[85.92517,24.74095],[85.91392,24.74999],[85.90021,24.77049],[85.90006,24.77281],[85.88658,24.78406],[85.88609,24.78687],[85.88928,24.78974],[85.88942,24.79236],[85.86723,24.80425],[85.85493,24.80799],[85.82732,24.80827],[85.82043,24.80764],[85.81527,24.80405],[85.81064,24.79901],[85.80957,24.79402],[85.78909,24.79647],[85.78001,24.79946],[85.77828,24.79663],[85.76804,24.80393],[85.76871,24.80783],[85.76216,24.81277],[85.75742,24.81319],[85.73673,24.82106],[85.73089,24.81335],[85.73076,24.80238],[85.7291,24.79838],[85.7236,24.79706],[85.72235,24.7857],[85.70736,24.77976],[85.70955,24.77685],[85.70668,24.76838],[85.70965,24.76703],[85.70456,24.76714],[85.70383,24.75134],[85.70937,24.74635],[85.70935,24.74266],[85.70679,24.74072],[85.70646,24.73726],[85.70775,24.73721],[85.70631,24.73212],[85.70826,24.72591],[85.7001,24.7171],[85.69783,24.71085],[85.68913,24.69808],[85.682,24.69192],[85.64921,24.68477],[85.64991,24.68046],[85.65414,24.67418],[85.66052,24.67236],[85.65999,24.66764],[85.66677,24.66087],[85.66752,24.65745],[85.66455,24.65476],[85.66488,24.65224],[85.66256,24.64964],[85.66494,24.64288],[85.66867,24.64059],[85.66744,24.63683],[85.6722,24.62969],[85.67333,24.62097],[85.6762,24.61662],[85.6741,24.61133],[85.6756,24.60515],[85.67396,24.59747],[85.67712,24.59457],[85.67753,24.59067],[85.66738,24.57889],[85.65809,24.57803],[85.65135,24.57447],[85.65005,24.57592],[85.63184,24.57888],[85.62686,24.58186],[85.62028,24.57992],[85.61473,24.58074],[85.61191,24.58791],[85.60199,24.59556],[85.5981,24.59615],[85.59419,24.59448],[85.5922,24.59744],[85.58946,24.59678],[85.58077,24.60068],[85.57224,24.59621],[85.566,24.58725],[85.56627,24.57881],[85.56718,24.57679],[85.57161,24.5747],[85.56977,24.56933],[85.57224,24.5654],[85.57177,24.56182],[85.56787,24.55834],[85.5615,24.55868],[85.56023,24.55274],[85.55627,24.55801],[85.54456,24.56331],[85.54074,24.56272],[85.5423,24.5576],[85.54381,24.55692],[85.54545,24.54803],[85.54078,24.53051],[85.53816,24.52785],[85.52736,24.52398],[85.52396,24.52127],[85.51839,24.52615],[85.5073,24.52531],[85.50952,24.53155],[85.50883,24.53766],[85.49902,24.54615],[85.49166,24.5481],[85.47141,24.54475],[85.46542,24.53913],[85.45959,24.53624],[85.45028,24.53715],[85.44429,24.5342],[85.43925,24.53319],[85.43679,24.53426],[85.43396,24.53114],[85.43463,24.52852],[85.43,24.52955],[85.43226,24.53171],[85.41334,24.54136],[85.40448,24.54186],[85.40099,24.54535],[85.38861,24.5493],[85.385,24.55193],[85.38435,24.55549],[85.37078,24.55535],[85.37111,24.5528],[85.39749,24.5448],[85.39671,24.54007],[85.39428,24.53972],[85.39207,24.53481],[85.39193,24.53035],[85.3729,24.52497],[85.36559,24.52573],[85.35087,24.523],[85.33609,24.52332],[85.33389,24.52169],[85.3222,24.51999],[85.30403,24.52319],[85.28809,24.52326],[85.28137,24.52022],[85.28333,24.51698],[85.28057,24.51247],[85.28343,24.50332],[85.28558,24.5023],[85.28387,24.49883],[85.28488,24.49464],[85.28233,24.49167],[85.27486,24.49317],[85.26697,24.49126],[85.24911,24.49073],[85.24545,24.48471],[85.24017,24.4815],[85.24202,24.47958],[85.24128,24.47521],[85.2369,24.47105],[85.23221,24.47309],[85.22584,24.46313],[85.2221,24.46509],[85.20658,24.46733],[85.20293,24.46133],[85.1999,24.46047],[85.19127,24.46307],[85.18057,24.46245],[85.17217,24.45904],[85.16731,24.46112],[85.16075,24.46034],[85.15405,24.45499],[85.15529,24.45252],[85.15443,24.44817],[85.15719,24.4444],[85.16392,24.44389],[85.16657,24.43658],[85.17035,24.43316],[85.17034,24.42914],[85.17535,24.42385],[85.1739,24.42062],[85.16965,24.42125],[85.16541,24.41943],[85.16229,24.41262],[85.15222,24.41202],[85.1438,24.40718],[85.13261,24.4051],[85.12765,24.402],[85.12306,24.40198],[85.11662,24.3935],[85.11681,24.39143],[85.10269,24.38487],[85.10343,24.37708],[85.09869,24.37359],[85.08905,24.3725],[85.08533,24.37608],[85.07404,24.37703],[85.07324,24.37823],[85.08006,24.39342],[85.07733,24.39306],[85.07833,24.39669],[85.08313,24.39971],[85.08107,24.40599],[85.08309,24.41558],[85.08202,24.4159],[85.08187,24.41391],[85.07981,24.41546],[85.08102,24.43304],[85.06907,24.42221],[85.06297,24.40692],[85.06111,24.40586],[85.04591,24.40914],[85.04234,24.41428],[85.03874,24.41195],[85.03117,24.41457],[85.01912,24.4091],[85.00269,24.39728],[84.9983,24.39756],[84.99693,24.3947],[84.98382,24.38747],[84.98124,24.38084],[84.97489,24.37471],[84.9609,24.37342],[84.95479,24.37133],[84.94081,24.37625],[84.93748,24.37992],[84.92286,24.37753],[84.9162,24.3733],[84.90383,24.37225],[84.90034,24.37682],[84.90898,24.38354],[84.90499,24.3901],[84.90421,24.39546],[84.89264,24.40504],[84.89128,24.4146],[84.88228,24.42477],[84.88548,24.42575],[84.8849,24.4279],[84.88744,24.43196],[84.88466,24.4408],[84.88593,24.44564],[84.88528,24.45252],[84.8867,24.45323],[84.88566,24.45885],[84.88728,24.46328],[84.8846,24.46499],[84.88281,24.46205],[84.87971,24.46603],[84.8748,24.46721],[84.8725,24.46649],[84.87096,24.45829],[84.86399,24.45727],[84.86321,24.46111],[84.85401,24.46671],[84.85091,24.46204],[84.84878,24.45445],[84.8401,24.45219],[84.83707,24.4591],[84.84011,24.46078],[84.84061,24.46889],[84.83292,24.47021],[84.83537,24.48512],[84.83378,24.49359],[84.83534,24.49648],[84.83822,24.49768],[84.83985,24.50671],[84.83894,24.51261],[84.82556,24.52543],[84.80826,24.52204],[84.80189,24.53074],[84.79661,24.52555],[84.79732,24.52258],[84.78946,24.51828],[84.78951,24.5077],[84.78609,24.50383],[84.77795,24.50448],[84.76343,24.50025],[84.75558,24.49996],[84.74805,24.496],[84.7464,24.48613],[84.74311,24.48498],[84.72918,24.47015],[84.72069,24.46861],[84.71617,24.47211],[84.7102,24.47124],[84.70775,24.46764],[84.7033,24.46607],[84.70254,24.46223],[84.6915,24.45779],[84.68827,24.45785],[84.68532,24.45512],[84.68119,24.44623],[84.68208,24.44481],[84.67909,24.43559],[84.67231,24.43149],[84.6705,24.42812],[84.67596,24.42601],[84.67336,24.41692],[84.67448,24.41095],[84.6686,24.40972],[84.67018,24.40853],[84.67033,24.40492],[84.66761,24.4044],[84.66877,24.40282],[84.66809,24.39859],[84.66507,24.39088],[84.66109,24.39193],[84.65639,24.39669],[84.64995,24.398],[84.64626,24.40311],[84.64478,24.3991],[84.64266,24.39885],[84.63619,24.40045],[84.63079,24.40544],[84.62728,24.40179],[84.62207,24.40372],[84.61992,24.40076],[84.61682,24.4017],[84.61482,24.39894],[84.60448,24.40127],[84.60281,24.40345],[84.59678,24.40509],[84.59455,24.40484],[84.59172,24.40117],[84.58683,24.40058],[84.58855,24.40856],[84.58438,24.41267],[84.58275,24.41312],[84.57845,24.41028],[84.56819,24.40944],[84.56564,24.40129],[84.5621,24.39663],[84.56594,24.39246],[84.5741,24.38916],[84.57441,24.38563],[84.57236,24.38262],[84.56829,24.38217],[84.55922,24.37618],[84.55497,24.37523],[84.55379,24.37286],[84.54966,24.37345],[84.54692,24.37725],[84.54038,24.37597],[84.53221,24.37833],[84.52782,24.37574],[84.52833,24.37115],[84.53512,24.36315],[84.52452,24.35005],[84.53144,24.33821],[84.52319,24.33297],[84.51674,24.31773],[84.50997,24.31605],[84.50985,24.30523],[84.50701,24.29789],[84.50464,24.296],[84.50188,24.28839],[84.4959,24.28607],[84.49174,24.28615],[84.48916,24.29452],[84.4942,24.29612],[84.49682,24.29958],[84.49057,24.30394],[84.48879,24.30085],[84.48435,24.30197],[84.48861,24.3152],[84.4975,24.31626],[84.4991,24.3198],[84.50345,24.32053],[84.50536,24.3245],[84.50762,24.32481],[84.50529,24.33133],[84.49546,24.32534],[84.49572,24.32361],[84.48986,24.31646],[84.48449,24.31267],[84.47717,24.31714],[84.47228,24.31466],[84.46639,24.31731],[84.46512,24.32272],[84.46797,24.32445],[84.46376,24.32802],[84.4655,24.33151],[84.45961,24.33709],[84.45183,24.3373],[84.45128,24.33281],[84.4244,24.32984],[84.42301,24.33549],[84.42498,24.34919],[84.42732,24.35513],[84.43111,24.35652],[84.41651,24.359],[84.41004,24.36258],[84.40036,24.36463],[84.40057,24.36678],[84.40521,24.37038],[84.40657,24.37489],[84.39862,24.37274],[84.39387,24.37339],[84.39353,24.37667],[84.38694,24.38233],[84.38882,24.38451],[84.38671,24.38523],[84.38824,24.38929],[84.3787,24.38798],[84.37346,24.38346],[84.36919,24.38544],[84.36348,24.38548],[84.36328,24.38832],[84.36142,24.389],[84.34929,24.39076],[84.34162,24.39355],[84.34455,24.39945],[84.33314,24.4047],[84.33035,24.41059],[84.33363,24.41269],[84.33298,24.41834],[84.33453,24.42064],[84.33035,24.42171],[84.3297,24.4192],[84.32282,24.41794],[84.32053,24.42107],[84.3206,24.42329],[84.32445,24.42747],[84.32869,24.42511],[84.33343,24.42604],[84.33557,24.4249],[84.33681,24.42885],[84.33521,24.42928],[84.3356,24.43149],[84.32798,24.43908],[84.32512,24.43905],[84.32179,24.44637],[84.29738,24.44939],[84.29702,24.45498],[84.29255,24.46147],[84.2915,24.46642],[84.29603,24.4699],[84.2961,24.47348],[84.30374,24.48053],[84.30849,24.48173],[84.31518,24.48618],[84.32745,24.48734],[84.32753,24.49236],[84.32642,24.49398],[84.32741,24.50053],[84.32222,24.50809],[84.32247,24.5167],[84.31241,24.52346],[84.313,24.53018],[84.31137,24.53447],[84.29974,24.5464],[84.29684,24.56058],[84.28947,24.56282],[84.28155,24.55887],[84.27053,24.56001],[84.27088,24.55411],[84.27384,24.55403],[84.27372,24.55042],[84.27986,24.54787],[84.27738,24.54378],[84.26929,24.54319],[84.26812,24.5383],[84.26483,24.53813],[84.26386,24.53444],[84.25902,24.53434],[84.25679,24.52688],[84.25045,24.52795],[84.25096,24.53236],[84.24963,24.53471],[84.24459,24.53674],[84.24235,24.54145],[84.23627,24.53892],[84.2364,24.54932],[84.23333,24.54986],[84.22088,24.54609],[84.21869,24.53385],[84.21506,24.53272],[84.2095,24.53418],[84.2095,24.54101],[84.20198,24.54358],[84.1993,24.54694],[84.19993,24.554],[84.18723,24.55293],[84.18794,24.5488],[84.18432,24.54479],[84.17318,24.5447],[84.17396,24.53789],[84.1815,24.52082],[84.18467,24.52144],[84.18495,24.51959],[84.18408,24.51383],[84.17863,24.50564],[84.16975,24.50333],[84.15368,24.51157],[84.15246,24.51517],[84.15732,24.52247],[84.16421,24.52818],[84.16349,24.5334],[84.15958,24.53229],[84.15374,24.53582],[84.14428,24.53825],[84.1343,24.52432],[84.14053,24.50053],[84.13715,24.49797],[84.13011,24.49751],[84.12726,24.49509],[84.12514,24.49191],[84.12474,24.48074],[84.11722,24.48046],[84.11081,24.47674],[84.10432,24.48053],[84.1,24.48537],[84.09828,24.49267],[84.09441,24.49322],[84.0919,24.49774],[84.08991,24.49777],[84.08905,24.50182],[84.0922,24.50262],[84.09197,24.50431],[84.08563,24.50518],[84.08784,24.51274],[84.08462,24.51356],[84.08634,24.51705],[84.08857,24.51776],[84.08716,24.52124],[84.08883,24.5297],[84.09322,24.53365],[84.08923,24.5358],[84.08528,24.53454],[84.08564,24.53764],[84.07807,24.54042],[84.07763,24.54633],[84.07504,24.55311],[84.07273,24.55472],[84.07249,24.55909],[84.07562,24.56139],[84.07332,24.56293],[84.07287,24.56721],[84.06885,24.56728],[84.06831,24.5706],[84.06359,24.57078],[84.06366,24.57339],[84.06061,24.57365],[84.06491,24.58103],[84.06176,24.58646],[84.05419,24.58491],[84.05095,24.58664],[84.05721,24.59248],[84.05032,24.60005],[84.04893,24.60404],[84.0469,24.60418],[84.04871,24.609],[84.05088,24.60801],[84.05202,24.60992],[84.04893,24.6117],[84.0447,24.61116],[84.04532,24.61422],[84.04257,24.6186],[84.03922,24.61768],[84.03719,24.62061],[84.03308,24.62038],[84.03437,24.62287],[84.03344,24.63003],[84.02439,24.6286],[84.02333,24.63142],[84.02731,24.63349],[84.02078,24.63835],[84.00779,24.64289],[83.99401,24.6317],[83.97542,24.59141],[83.96897,24.58565],[83.96732,24.58157],[83.95533,24.56789],[83.94307,24.55816],[83.93613,24.54912],[83.90926,24.54121],[83.88862,24.53787],[83.87315,24.53175],[83.86176,24.53673],[83.8165,24.52908],[83.80018,24.52953],[83.78479,24.52077],[83.75554,24.50972],[83.74647,24.51017],[83.72057,24.50345],[83.69196,24.51106],[83.68816,24.51368],[83.65239,24.5148],[83.6289,24.51249],[83.597,24.51246],[83.57252,24.51655],[83.55093,24.52331],[83.50463,24.52558],[83.4842,24.52211],[83.46894,24.51673],[83.42943,24.51093],[83.4015,24.50343],[83.39609,24.49447],[83.39837,24.49295],[83.39536,24.48873],[83.3982,24.48542],[83.39353,24.47792],[83.39347,24.47539],[83.39093,24.47358],[83.3904,24.46406],[83.38542,24.45702],[83.38657,24.44816],[83.38981,24.44478],[83.39074,24.43942],[83.39354,24.43743],[83.39412,24.43465],[83.40489,24.436],[83.40331,24.41982],[83.40507,24.40478],[83.41894,24.40621],[83.43002,24.39995],[83.43442,24.40075],[83.43604,24.39925],[83.43268,24.39617],[83.43352,24.39328],[83.43749,24.39209],[83.43976,24.38883],[83.4388,24.38773],[83.44227,24.38608],[83.44537,24.37823],[83.4495,24.37703],[83.44797,24.37373],[83.44854,24.3701],[83.45727,24.36455],[83.44517,24.35884],[83.43947,24.34625],[83.43404,24.34297],[83.43346,24.33878],[83.42097,24.33799],[83.41142,24.33986],[83.3921,24.32478],[83.38777,24.3162],[83.38512,24.31705],[83.38003,24.31313],[83.38023,24.31024],[83.38309,24.30847],[83.38545,24.30403],[83.38623,24.29878],[83.39236,24.29599],[83.40149,24.29554],[83.40177,24.29227],[83.40717,24.28878],[83.40635,24.28596],[83.4091,24.26633],[83.40753,24.26213],[83.40032,24.25639],[83.39764,24.24384],[83.38524,24.23911],[83.38488,24.23605],[83.38115,24.23397],[83.37873,24.23036],[83.37857,24.22666],[83.38134,24.2259],[83.38462,24.22054],[83.38122,24.21709],[83.38301,24.21479],[83.37937,24.21325],[83.37862,24.21076],[83.38065,24.20776],[83.38036,24.20506],[83.38185,24.2046],[83.38139,24.20019],[83.38299,24.19792],[83.37502,24.1861],[83.37177,24.17429],[83.36198,24.15639],[83.36156,24.14884],[83.35876,24.14035],[83.35481,24.13559],[83.35406,24.12491],[83.35037,24.1215],[83.34491,24.11085],[83.32935,24.10132],[83.34775,24.09629],[83.36424,24.10329],[83.38829,24.09996],[83.40111,24.09203],[83.40664,24.08044],[83.42122,24.08272],[83.42671,24.08648],[83.43225,24.08598],[83.43773,24.07622],[83.43777,24.05817],[83.44487,24.05282],[83.45289,24.04199],[83.47781,24.04119],[83.49353,24.03631],[83.49975,24.03256],[83.50826,24.03116],[83.51572,24.02716],[83.51617,24.02245],[83.5239,24.01138],[83.52293,24.00636],[83.5138,23.99635],[83.51549,23.98999],[83.5153,23.98069],[83.5226,23.97033],[83.52649,23.9605],[83.53536,23.95246],[83.54739,23.93754],[83.54924,23.93102],[83.54692,23.9143],[83.55344,23.89807],[83.55915,23.8929],[83.57043,23.89445],[83.57633,23.89291],[83.58576,23.8864],[83.58603,23.88261],[83.58353,23.87778],[83.56949,23.86908],[83.56894,23.86618],[83.57119,23.86214],[83.57466,23.86121],[83.58242,23.86351],[83.5897,23.86331],[83.61029,23.85397],[83.61809,23.85549],[83.64338,23.84693],[83.65464,23.8499],[83.65949,23.84926],[83.66656,23.84428],[83.66849,23.83666],[83.66335,23.83119],[83.66449,23.82766],[83.67434,23.82717],[83.67869,23.82168],[83.68282,23.81938],[83.68528,23.82033],[83.68873,23.82558],[83.69149,23.82642],[83.70259,23.82297],[83.70535,23.82076],[83.70764,23.81741],[83.70439,23.80661],[83.70514,23.80387],[83.71266,23.80068],[83.72262,23.78658],[83.72159,23.77149],[83.72431,23.76872],[83.73411,23.7647],[83.73774,23.76049],[83.73948,23.73432],[83.74607,23.71949],[83.74212,23.70383],[83.73507,23.70031],[83.73212,23.695],[83.72302,23.68876],[83.72286,23.68586],[83.73885,23.66677],[83.74623,23.66299],[83.76112,23.65146],[83.76058,23.6479],[83.75321,23.64339],[83.75192,23.63867],[83.75945,23.62601],[83.77235,23.62378],[83.77514,23.62194],[83.77637,23.61759],[83.77248,23.6109],[83.77532,23.60895],[83.78987,23.60456],[83.79452,23.6051],[83.80064,23.60202],[83.80438,23.59537],[83.80542,23.58882],[83.80722,23.58747],[83.81205,23.58895],[83.81537,23.5962],[83.82587,23.59071],[83.8386,23.58939],[83.84468,23.58665],[83.85305,23.58705],[83.88806,23.57876],[83.89445,23.58265],[83.89939,23.58241],[83.90017,23.58015],[83.90857,23.57625],[83.91879,23.57636],[83.93769,23.56899],[83.9398,23.57086],[83.93803,23.58425],[83.93912,23.59031],[83.93299,23.60075],[83.93382,23.60736],[83.93065,23.61124],[83.93056,23.61826],[83.93191,23.62041],[83.94252,23.62599],[83.94775,23.6267],[83.96134,23.62518],[83.96935,23.62669],[83.97275,23.62592],[83.97349,23.62401],[83.9755,23.62571],[83.98045,23.62489],[83.97951,23.62872],[83.98065,23.63365],[83.98736,23.63229],[83.99714,23.63448],[84.01659,23.63438],[84.01393,23.63021],[84.0087,23.62785],[84.00771,23.6223],[84.01109,23.62061],[84.01673,23.60842],[84.02086,23.60442],[84.02851,23.60233],[84.03006,23.6],[84.02815,23.59371],[84.02977,23.58576],[84.02805,23.57777],[84.02954,23.5664],[84.02644,23.55677],[84.02438,23.55556],[84.02654,23.55295],[84.02806,23.5456],[84.02084,23.53097],[84.02159,23.52767],[84.01747,23.52261],[84.01858,23.5174],[84.01516,23.509],[84.01465,23.5035],[84.00736,23.49768],[84.00078,23.49693],[84.00113,23.4937],[83.99852,23.48678],[83.98891,23.47874],[83.98482,23.46571],[83.97394,23.45985],[83.97483,23.45124],[83.97869,23.44737],[83.98531,23.43504],[83.98332,23.43139],[83.98616,23.43057],[83.98364,23.42853],[83.9837,23.42627],[83.98576,23.42583],[83.98048,23.42152],[83.9809,23.41929],[83.97814,23.41415],[83.98016,23.41266],[83.97719,23.41087],[83.97509,23.40313],[83.97215,23.40267],[83.97148,23.40088],[83.97284,23.39989],[83.9688,23.39349],[83.96889,23.39082],[83.9675,23.39101],[83.96848,23.38919],[83.967,23.38758],[83.96914,23.38667],[83.96795,23.38541],[83.96994,23.38383],[83.96882,23.38341],[83.97075,23.37914],[83.98026,23.36811],[83.98028,23.36459],[84.0026,23.35735],[84.0048,23.35401],[84.01189,23.35447],[84.0163,23.36961],[84.02386,23.3765],[84.03642,23.37852],[84.05084,23.37477],[84.04822,23.3697],[84.05236,23.36726],[84.0535,23.36482],[84.05205,23.35928],[84.05433,23.3524],[84.06016,23.3502],[84.06658,23.34405],[84.06872,23.33824],[84.07482,23.33312],[84.07428,23.32917],[84.06219,23.30766],[84.06812,23.29378],[84.06248,23.28843],[84.0646,23.27472],[84.05985,23.26879],[84.05373,23.2473],[84.05383,23.24375],[84.05908,23.23599],[84.05576,23.22028],[84.06317,23.20565],[84.0622,23.20261],[84.05843,23.19994],[84.05653,23.19317],[84.04294,23.18265],[84.03239,23.16048],[84.03248,23.15415],[84.03669,23.14817],[84.03747,23.13988],[84.04485,23.1348],[84.04921,23.13451],[84.0583,23.12617],[84.06259,23.11341],[84.0664,23.11067],[84.07241,23.109],[84.08205,23.11215],[84.09317,23.11278],[84.09323,23.11045],[84.10566,23.10509],[84.10898,23.0983],[84.11297,23.09688],[84.11574,23.09003],[84.12211,23.08797],[84.12617,23.08933],[84.13346,23.08309],[84.13389,23.06863],[84.12689,23.05782],[84.12473,23.04785],[84.12697,23.04419],[84.12555,23.03648],[84.13122,23.02235],[84.13395,23.02021],[84.1402,23.00957],[84.13818,23.00402],[84.14732,22.98801],[84.1463,22.97707],[84.14925,22.96567],[84.17178,22.97076],[84.17551,22.97601],[84.17808,22.98112],[84.1761,22.98492],[84.175,22.99711],[84.17869,23.00055],[84.17524,23.00954],[84.17812,23.01203],[84.18024,23.02444],[84.1858,23.02709],[84.19674,23.02421],[84.20167,23.02107],[84.20345,23.01446],[84.20085,23.00534],[84.20768,22.9999],[84.21656,22.98904],[84.21871,22.97929],[84.23035,22.98333],[84.23393,22.98242],[84.24104,22.98361],[84.24881,22.97382],[84.25302,22.97293],[84.2611,22.97715],[84.2629,22.98084],[84.26713,22.9832],[84.27055,22.98922],[84.27782,22.99337],[84.2785,22.99193],[84.27671,22.99067],[84.27853,22.98704],[84.27368,22.98365],[84.274,22.98118],[84.27708,22.97176],[84.27913,22.971],[84.27878,22.96691],[84.28054,22.96397],[84.28416,22.96339],[84.30763,22.96743],[84.31291,22.97186],[84.31898,22.97361],[84.31928,22.97721],[84.32811,22.9819],[84.33955,22.97999],[84.34376,22.97614],[84.35107,22.97812],[84.365,22.97423],[84.3729,22.97838],[84.37734,22.97525],[84.3801,22.97044],[84.38457,22.95068],[84.39368,22.94245],[84.3951,22.93694],[84.39485,22.92315],[84.38931,22.91525],[84.38136,22.91268],[84.37754,22.90963],[84.37519,22.9045],[84.37568,22.90069],[84.38242,22.89652],[84.38315,22.89343],[84.37919,22.88377],[84.38051,22.87667],[84.37336,22.87159],[84.3726,22.86532],[84.35945,22.86052],[84.35199,22.86499],[84.34924,22.86098],[84.34423,22.85898],[84.33478,22.86155],[84.33362,22.86057],[84.32299,22.84802],[84.32174,22.83774],[84.3252,22.83765],[84.32533,22.83498],[84.32243,22.82102],[84.31573,22.81192],[84.3151,22.80065],[84.3075,22.80077],[84.30578,22.79707],[84.29934,22.79589],[84.29794,22.79427],[84.29114,22.78338],[84.29224,22.77571],[84.28986,22.77137],[84.28936,22.76612],[84.28534,22.76323],[84.27595,22.76871],[84.25965,22.76699],[84.25557,22.7601],[84.23127,22.73996],[84.22985,22.72807],[84.23209,22.72555],[84.23413,22.71054],[84.23293,22.70033],[84.23821,22.69173],[84.23475,22.68611],[84.23321,22.67924],[84.22412,22.66989],[84.21754,22.66582],[84.21319,22.66576],[84.21308,22.66771],[84.2079,22.66838],[84.20019,22.66646],[84.18803,22.65523],[84.16328,22.64543],[84.15627,22.63853],[84.15247,22.6368],[84.13979,22.63823],[84.12348,22.63705],[84.11081,22.63975],[84.09343,22.63494],[84.08402,22.63812],[84.0696,22.62043],[84.06375,22.60859],[84.05766,22.60577],[84.05413,22.59811],[84.04885,22.5953],[84.04183,22.59537],[84.03422,22.59231],[84.02443,22.5918],[84.02417,22.58581],[84.00951,22.57305],[84.00765,22.55246],[84.00285,22.5459],[84.01002,22.53168],[84.0097,22.52842],[84.01234,22.52769],[84.00921,22.52558],[84.01293,22.52337],[84.02552,22.52575],[84.02962,22.51918],[84.03656,22.51597],[84.04925,22.51704],[84.05306,22.5129],[84.05971,22.51643],[84.06132,22.51324],[84.06454,22.51248],[84.06512,22.50761],[84.07549,22.5062],[84.07528,22.50283],[84.07024,22.50135],[84.07305,22.50097],[84.08088,22.49412],[84.09031,22.48929],[84.10248,22.48408],[84.10795,22.48376],[84.10883,22.48268],[84.10686,22.48274],[84.10631,22.48065],[84.11349,22.47569],[84.12484,22.47493],[84.1288,22.4776],[84.13535,22.47659],[84.137,22.47379],[84.14068,22.47392],[84.14289,22.46423],[84.14138,22.45335],[84.1389,22.44776],[84.14055,22.44139],[84.14093,22.42562],[84.15613,22.40774],[84.16598,22.39985],[84.18489,22.39023],[84.19896,22.37581],[84.25146,22.37808],[84.25561,22.37442],[84.26881,22.35455],[84.27836,22.34928],[84.29004,22.34689],[84.29151,22.34213],[84.29533,22.34102],[84.31336,22.34444],[84.31683,22.34231],[84.32474,22.34528],[84.32994,22.34425],[84.33951,22.34755],[84.36564,22.3482],[84.36789,22.35466],[84.37032,22.35573],[84.37959,22.35262],[84.38302,22.34911],[84.39213,22.34986],[84.39676,22.3474],[84.39969,22.34782],[84.40032,22.34646],[84.41618,22.35281],[84.42041,22.35235],[84.4237,22.35444],[84.42813,22.35327],[84.42998,22.35793],[84.43427,22.36047],[84.43067,22.36404],[84.43226,22.36531],[84.43053,22.36894],[84.43496,22.37417],[84.44953,22.38029],[84.45345,22.37946],[84.45321,22.38105],[84.46118,22.37905],[84.47601,22.38665],[84.48463,22.38885],[84.4844,22.39258],[84.47884,22.39408],[84.48029,22.39798],[84.47793,22.39925],[84.47673,22.40528],[84.47698,22.40801],[84.48069,22.41017],[84.48244,22.41327],[84.48958,22.41364],[84.51064,22.42103],[84.51698,22.41935],[84.52439,22.41998],[84.53054,22.4228],[84.53136,22.4259],[84.5362,22.42737],[84.53806,22.42556],[84.54033,22.42719],[84.54694,22.42607],[84.54929,22.42104],[84.5709,22.4274],[84.59418,22.43006],[84.59785,22.4348],[84.60259,22.42883],[84.6103,22.43094],[84.62196,22.43156],[84.62865,22.43455],[84.65216,22.42621],[84.66806,22.41806],[84.67413,22.42191],[84.676,22.41942],[84.68384,22.41992],[84.69863,22.4164],[84.71556,22.41728],[84.71877,22.4199],[84.74974,22.41899],[84.75206,22.4306],[84.75932,22.44747],[84.76551,22.44865],[84.78875,22.44819],[84.79604,22.44626],[84.7973,22.44864],[84.79907,22.4473],[84.80145,22.44846],[84.80571,22.44767],[84.81252,22.45293],[84.81778,22.44462],[84.81763,22.43761],[84.83738,22.43253],[84.83855,22.43093],[84.84216,22.43174],[84.84223,22.43423],[84.84563,22.43626],[84.85373,22.43592],[84.87307,22.43947],[84.87292,22.44227],[84.88239,22.44847],[84.88509,22.44276],[84.8849,22.43745],[84.88871,22.42921],[84.88559,22.42613],[84.88558,22.42108],[84.89925,22.42343],[84.91023,22.42328],[84.9159,22.42611],[84.92615,22.43495],[84.92656,22.43958],[84.92387,22.44093],[84.92386,22.44355],[84.93194,22.44622],[84.94021,22.4452],[84.9449,22.45246],[84.95667,22.45823],[84.95935,22.44305],[84.96488,22.44933],[84.97302,22.45112],[85.01938,22.4706],[85.03547,22.47378],[85.03718,22.47282],[85.03765,22.47949],[85.03628,22.47937],[85.03595,22.48243],[85.03805,22.48196],[85.03808,22.48043],[85.04165,22.48055],[85.0443,22.48233],[85.05216,22.48251],[85.05968,22.48645],[85.06726,22.48417],[85.06987,22.48017],[85.07179,22.4792],[85.07601,22.48029],[85.078,22.47755],[85.07675,22.46874],[85.07524,22.46862],[85.07403,22.46553],[85.07715,22.46375],[85.06422,22.45424],[85.06029,22.44956],[85.06055,22.44712],[85.06106,22.44513],[85.06683,22.44091],[85.0678,22.42843],[85.07537,22.42055],[85.08208,22.41653],[85.08023,22.41001],[85.08653,22.39942],[85.08622,22.38943],[85.08787,22.38847],[85.08696,22.38254],[85.07739,22.36551],[85.07916,22.36051],[85.07667,22.35621],[85.07892,22.35237],[85.08384,22.34905],[85.08333,22.34534],[85.09461,22.34673],[85.09575,22.34474],[85.09389,22.33328],[85.08939,22.32043],[85.09074,22.31858],[85.09549,22.31571],[85.10069,22.31992],[85.10637,22.32148],[85.11535,22.31978],[85.1181,22.31759],[85.11544,22.31528],[85.11416,22.31045],[85.11601,22.30811],[85.11413,22.30542],[85.116,22.29409],[85.10644,22.2959],[85.09963,22.29357],[85.07061,22.27365],[85.07148,22.27036],[85.07382,22.26876],[85.07218,22.26705],[85.0746,22.26485],[85.07341,22.2629],[85.07664,22.26108],[85.0782,22.25739],[85.07332,22.24805],[85.07025,22.24806],[85.06936,22.24358],[85.07225,22.23772],[85.05849,22.20925],[85.05921,22.206],[85.05582,22.20271],[85.05415,22.19799],[85.04919,22.19541],[85.05369,22.18539],[85.05266,22.18246],[85.05026,22.17916],[85.04283,22.17734],[85.04162,22.17299],[85.0291,22.16349],[85.02834,22.15718],[85.03417,22.14702],[85.03235,22.13475],[85.02751,22.12677],[85.02685,22.12252],[85.01911,22.11577],[84.99948,22.1077],[84.99141,22.09956],[84.98339,22.09552],[84.98456,22.08661],[84.98695,22.08282],[84.99247,22.08123],[85.00569,22.0879],[85.00658,22.09006],[85.00865,22.08886],[85.01174,22.09141],[85.01306,22.09879],[85.0158,22.10361],[85.01765,22.10342],[85.02134,22.10843],[85.02431,22.11036],[85.02892,22.10933],[85.0403,22.11586],[85.05527,22.11568],[85.07046,22.1129],[85.08897,22.10573],[85.09488,22.10836],[85.09574,22.10621],[85.10011,22.10363],[85.10169,22.09812],[85.10057,22.09372],[85.10379,22.08953],[85.10557,22.09023],[85.10881,22.0876],[85.1124,22.08704],[85.11381,22.08354],[85.11251,22.07984],[85.11866,22.0742],[85.12007,22.07018],[85.13179,22.07681],[85.14033,22.07761],[85.14482,22.07974],[85.1548,22.07883],[85.16054,22.07471],[85.16038,22.06966],[85.16512,22.06381],[85.16685,22.0537],[85.17387,22.05138],[85.17083,22.05663],[85.17121,22.06342],[85.16762,22.06951],[85.1746,22.07459],[85.18057,22.07323],[85.18572,22.05921],[85.19817,22.05594],[85.2104,22.04942],[85.21345,22.04969],[85.21508,22.04772],[85.21485,22.04333],[85.21859,22.04093],[85.21687,22.03357],[85.22143,22.01799],[85.22591,22.01609],[85.22921,22.01241],[85.23629,22.0098],[85.23993,22.011],[85.24056,22.01363],[85.24417,22.01581],[85.2517,22.02697],[85.26272,22.05788],[85.27285,22.07359],[85.27513,22.08229],[85.2813,22.09043],[85.30087,22.10703],[85.30965,22.11793],[85.31372,22.1203],[85.31884,22.12083],[85.32351,22.12765],[85.34354,22.12738],[85.34619,22.13026],[85.35059,22.1295],[85.35759,22.12463],[85.36393,22.12346],[85.3653,22.12772],[85.36084,22.13151],[85.36189,22.1411],[85.3603,22.14348],[85.36345,22.14748],[85.36396,22.15214],[85.36654,22.15363],[85.36612,22.15891],[85.37132,22.16103],[85.37511,22.15737],[85.38479,22.15659],[85.39207,22.15903],[85.39785,22.16319],[85.41137,22.16182],[85.42115,22.15878],[85.43412,22.15099],[85.43877,22.15035],[85.44299,22.14667],[85.447,22.14637],[85.46187,22.1399],[85.47069,22.13412],[85.4747,22.12893],[85.48293,22.1276],[85.48991,22.12108],[85.49986,22.12011],[85.51497,22.11564],[85.53413,22.10264],[85.53978,22.10185],[85.53902,22.0971],[85.54298,22.09047],[85.56044,22.09607],[85.56099,22.09178],[85.5662,22.08889],[85.57155,22.09116],[85.58622,22.08654],[85.59023,22.084],[85.59229,22.08044],[85.59718,22.07912],[85.60681,22.07984],[85.61118,22.08704],[85.61388,22.08609],[85.61345,22.08154],[85.62492,22.08209],[85.62888,22.08601],[85.63246,22.08417],[85.63703,22.0871],[85.63981,22.08667],[85.64412,22.09426],[85.65162,22.09544],[85.65527,22.09233],[85.65738,22.08393],[85.66158,22.08334],[85.66406,22.07685],[85.67025,22.07343],[85.67166,22.06748],[85.67844,22.06294],[85.67733,22.05695],[85.68487,22.05423],[85.68938,22.05605],[85.69168,22.06229],[85.70094,22.06173],[85.70917,22.05823],[85.71337,22.06248],[85.718,22.06174],[85.72054,22.06389],[85.7302,22.06528],[85.74015,22.07098],[85.74939,22.07357],[85.75705,22.07831],[85.7574,22.08458],[85.7673,22.09278],[85.78099,22.0965],[85.79017,22.10484],[85.79732,22.10475],[85.79755,22.1084],[85.80117,22.10986],[85.80743,22.11611],[85.82104,22.1065],[85.81305,22.09649],[85.81332,22.09429],[85.81976,22.09643],[85.82177,22.09466],[85.83268,22.09304],[85.83586,22.08016],[85.82266,22.07443],[85.81611,22.07357],[85.79344,22.08181],[85.77494,22.05629],[85.77873,22.04556],[85.78376,22.04018],[85.77959,22.02967],[85.77496,22.02872],[85.76716,22.02349],[85.7608,22.01454],[85.75857,22.00949],[85.76251,22.00125],[85.76299,21.99614],[85.78275,21.98495],[85.78584,21.98704],[85.79041,21.98582],[85.80537,21.98942],[85.81046,21.98631],[85.81699,21.98577],[85.8209,21.97746],[85.82437,21.97545],[85.83258,21.97728],[85.83614,21.98085],[85.85321,21.98376],[85.88208,21.98014],[85.89159,21.98122],[85.8937,21.98229],[85.89385,21.98439],[85.89577,21.98441],[85.89571,21.98324],[85.89871,21.98316],[85.90009,21.97958],[85.9023,21.97833],[85.90218,21.97552],[85.90466,21.97156],[85.90825,21.97067],[85.91123,21.97409],[85.90656,21.97695],[85.91189,21.98017],[85.9102,21.98117],[85.91166,21.98488],[85.90952,21.98782],[85.91221,21.99719],[85.91616,22.00269],[85.91615,22.00878],[85.92295,22.01124],[85.93088,22.02334],[85.94359,22.02036],[85.96504,22.05237],[85.96877,22.0608],[85.98044,22.07521],[85.98642,22.08897],[85.99251,22.09468],[86.00381,22.11386],[86.00738,22.11709],[85.99717,22.12802],[85.99676,22.13245],[85.99877,22.13302],[85.99947,22.13569],[86.00351,22.13957],[86.00551,22.15086],[86.01526,22.16166],[86.01723,22.17162],[86.03143,22.19085],[86.03108,22.19307],[86.01837,22.20533],[86.00286,22.21383],[85.99131,22.22676],[85.98567,22.23714],[85.98092,22.23891],[85.97388,22.24708],[85.9897,22.25441],[85.99064,22.25694],[85.98771,22.26315],[85.98832,22.26697],[85.99871,22.27724],[86.0041,22.28018],[86.00704,22.28461],[86.00611,22.28739],[86.01425,22.29729],[86.01898,22.30038],[86.02218,22.30003],[86.02496,22.3026],[86.02882,22.3007],[86.02942,22.303],[86.03289,22.30329],[86.0341,22.30619],[86.04058,22.30632],[86.04721,22.30896],[86.04716,22.31145],[86.04067,22.31246],[86.03815,22.31036],[86.03236,22.31122],[86.02891,22.30769],[86.02735,22.3093],[86.02257,22.309],[86.01605,22.31437],[86.0137,22.31307],[86.01306,22.31789],[86.01049,22.31787],[86.01193,22.32232],[86.02671,22.33486],[86.01956,22.33903],[86.01075,22.34123],[86.00829,22.34095],[86.00949,22.33957],[86.00783,22.33776],[86.00338,22.33568],[85.99802,22.3416],[85.99821,22.34515],[86.00367,22.34672],[86.00753,22.35151],[86.0108,22.35229],[86.01467,22.35965],[86.01919,22.3609],[86.02176,22.36482],[86.02013,22.37177],[86.02106,22.37618],[86.02475,22.37539],[86.02478,22.37901],[86.02713,22.38056],[86.02521,22.38361],[86.0272,22.38621],[86.02339,22.39001],[86.02395,22.39267],[86.02267,22.39371],[86.02437,22.39622],[86.02087,22.39724],[86.02034,22.40079],[86.01833,22.40247],[86.01925,22.40743],[86.015,22.42873],[86.01069,22.43019],[86.00275,22.42637],[85.98461,22.43545],[85.97288,22.44717],[85.96564,22.45115],[85.96788,22.46119],[85.96035,22.46139],[85.95712,22.46482],[85.9626,22.47279],[85.96274,22.48512],[85.96839,22.48629],[85.97233,22.49169],[85.97096,22.49739],[85.97353,22.49962],[85.9734,22.50586],[85.97815,22.50842],[85.98001,22.51136],[85.98179,22.51092],[85.98514,22.51548],[85.98851,22.51534],[85.98961,22.51669],[85.99349,22.51438],[86.00103,22.51458],[86.00409,22.51776],[86.02091,22.52732],[86.02653,22.52402],[86.03384,22.53449],[86.02403,22.54462],[86.03217,22.55503],[86.04544,22.56751],[86.05131,22.56248],[86.06487,22.55549],[86.06843,22.54987],[86.07546,22.54411],[86.07925,22.53755],[86.09487,22.5195],[86.09715,22.51033],[86.10024,22.50813],[86.10275,22.50024],[86.11663,22.487],[86.12375,22.48861],[86.13373,22.48713],[86.15033,22.48335],[86.15028,22.48021],[86.15632,22.48036],[86.16047,22.48255],[86.17056,22.48138],[86.20029,22.4718],[86.20793,22.47349],[86.21388,22.46644],[86.22258,22.46725],[86.2174,22.46261],[86.22467,22.45252],[86.23725,22.45259],[86.2566,22.44541],[86.26394,22.44534],[86.26846,22.44217],[86.2813,22.44866],[86.29303,22.42668],[86.29633,22.42403],[86.30264,22.4222],[86.30745,22.41531],[86.30644,22.40961],[86.32082,22.39741],[86.32271,22.39264],[86.32063,22.38902],[86.32116,22.38542],[86.32852,22.3778],[86.34028,22.37292],[86.35016,22.36429],[86.35761,22.35423],[86.35814,22.34921],[86.36642,22.34429],[86.37708,22.34163],[86.40828,22.32097],[86.42681,22.31758],[86.42956,22.30832],[86.43501,22.30651],[86.4372,22.30416],[86.43948,22.3036],[86.44403,22.31027],[86.44307,22.32626],[86.44483,22.32866],[86.44652,22.32911],[86.45292,22.32532],[86.46195,22.32611],[86.46362,22.32875],[86.46228,22.32982],[86.46819,22.3304],[86.47147,22.33578],[86.48346,22.33813],[86.48726,22.34768],[86.49289,22.34708],[86.49414,22.34566],[86.49691,22.3472],[86.50225,22.3434],[86.50384,22.33634],[86.50748,22.33465],[86.50818,22.32786],[86.52169,22.32342],[86.52709,22.3235],[86.52783,22.31549],[86.52319,22.31473],[86.52577,22.31103],[86.52545,22.30761],[86.53276,22.30096],[86.53935,22.30476],[86.54074,22.30824],[86.54386,22.30721],[86.54849,22.30136],[86.55407,22.29847],[86.5574,22.29832],[86.56169,22.30172],[86.56887,22.30144],[86.57088,22.30019],[86.57198,22.29618],[86.57686,22.29556],[86.57681,22.30112],[86.58225,22.30165],[86.58506,22.29536],[86.58739,22.29441],[86.58793,22.28999],[86.59272,22.28544],[86.59392,22.28204],[86.59308,22.27856],[86.59976,22.27887],[86.60352,22.28207],[86.61048,22.28335],[86.62177,22.27704],[86.62579,22.27353],[86.62731,22.26951],[86.63218,22.27323],[86.638,22.2711],[86.63971,22.26551],[86.64438,22.26849],[86.64351,22.26466],[86.64673,22.26536],[86.64951,22.26353],[86.65466,22.25073],[86.6513,22.24438],[86.65245,22.23844],[86.65483,22.23593],[86.66082,22.23672],[86.66624,22.24162],[86.66959,22.24254],[86.67239,22.24022],[86.67531,22.22925],[86.68434,22.22241],[86.70346,22.22118],[86.70794,22.2233],[86.71385,22.22005],[86.72086,22.22041],[86.73081,22.21543],[86.74404,22.21598],[86.74978,22.21169],[86.75964,22.21209],[86.77114,22.22035],[86.77641,22.21786],[86.77737,22.22552],[86.77434,22.23221],[86.77768,22.23659],[86.78919,22.23573],[86.78858,22.23166],[86.79491,22.22779],[86.79321,22.2242],[86.78447,22.2306],[86.77819,22.21849],[86.77907,22.21692],[86.78474,22.21505],[86.78904,22.21925],[86.79014,22.21874],[86.79187,22.22183],[86.80241,22.21755],[86.81202,22.24123],[86.80348,22.24322],[86.79925,22.23788],[86.79486,22.24317],[86.7957,22.24874],[86.79226,22.2663],[86.80111,22.2652],[86.79801,22.24702],[86.79995,22.24461],[86.80399,22.24358],[86.8072,22.24723],[86.80906,22.24664],[86.81059,22.24987],[86.80916,22.25025],[86.81359,22.26739],[86.81494,22.26706],[86.8167,22.25455],[86.81825,22.25372],[86.82396,22.26676],[86.83093,22.26322],[86.83784,22.26565],[86.84271,22.26163],[86.84655,22.26404],[86.84942,22.26334],[86.85109,22.26521],[86.85893,22.25798],[86.86343,22.25878],[86.86525,22.26096],[86.86626,22.25892],[86.87186,22.26006],[86.87322,22.25909],[86.87597,22.26065],[86.87644,22.25911],[86.88006,22.25926],[86.8835,22.25716],[86.88502,22.25855],[86.88632,22.25724],[86.88836,22.26137],[86.88753,22.27387],[86.88933,22.27376],[86.88779,22.29746],[86.87583,22.3015],[86.87224,22.30712],[86.86537,22.3081],[86.85012,22.31564],[86.83974,22.31893],[86.83327,22.32491],[86.83157,22.32878],[86.83229,22.34851],[86.84264,22.37221],[86.84088,22.38319],[86.84563,22.39152],[86.84635,22.39908],[86.83129,22.411],[86.80707,22.42126],[86.79389,22.42166],[86.78582,22.42435],[86.76453,22.42726],[86.76187,22.4317],[86.75903,22.44581],[86.76317,22.44838],[86.75101,22.45671],[86.75106,22.46543],[86.74728,22.47478],[86.74987,22.48295],[86.76609,22.48193],[86.76902,22.48009],[86.78429,22.48124],[86.79117,22.47743],[86.79537,22.48042],[86.8016,22.48883],[86.79378,22.49646],[86.79524,22.49938],[86.8008,22.50074],[86.80239,22.50304],[86.80083,22.5055],[86.79769,22.5064],[86.79651,22.50958],[86.79266,22.51132],[86.79319,22.51399],[86.79494,22.51398],[86.79292,22.52498],[86.78685,22.52685],[86.78896,22.53409],[86.78737,22.53817],[86.79026,22.54122],[86.78929,22.549],[86.78418,22.55029],[86.77519,22.5488],[86.7691,22.55458],[86.76662,22.55841],[86.77157,22.56106],[86.77193,22.56464],[86.76774,22.56698],[86.76686,22.57502],[86.75208,22.57852],[86.73149,22.57691],[86.71115,22.58239],[86.68465,22.57833],[86.67926,22.57446],[86.65952,22.57504],[86.65363,22.58181],[86.65703,22.5908],[86.64448,22.59449],[86.63943,22.59782],[86.63813,22.60122],[86.6386,22.60947],[86.63411,22.61039],[86.63538,22.61831],[86.63902,22.62531],[86.63863,22.65078],[86.64239,22.65701],[86.63604,22.66497],[86.62935,22.66669],[86.62353,22.67564],[86.62027,22.67789],[86.61163,22.67991],[86.60849,22.68399],[86.60253,22.68732],[86.58527,22.69108],[86.57224,22.69926],[86.56299,22.7062],[86.56139,22.7093],[86.5442,22.7216],[86.53513,22.71725],[86.52433,22.71943],[86.52033,22.71523],[86.51293,22.71662],[86.51151,22.71197],[86.51345,22.70717],[86.51133,22.705],[86.50001,22.72046],[86.49768,22.72287],[86.49468,22.72328],[86.49321,22.72639],[86.48154,22.72786],[86.48173,22.7302],[86.47364,22.7397],[86.46968,22.7521],[86.46018,22.76191],[86.45793,22.76336],[86.44842,22.76193],[86.43748,22.77126],[86.4301,22.77469],[86.42581,22.77975],[86.42148,22.78014],[86.41761,22.78368],[86.41868,22.78752],[86.41622,22.78886],[86.41633,22.79137],[86.41881,22.79068],[86.42096,22.79281],[86.42327,22.79192],[86.42256,22.79687],[86.42548,22.79931],[86.42339,22.80216],[86.42525,22.80654],[86.42252,22.80998],[86.42848,22.81934],[86.43885,22.83102],[86.43555,22.83592],[86.4334,22.85336],[86.43588,22.85912],[86.43497,22.86051],[86.43969,22.86426],[86.45077,22.86154],[86.45198,22.87292],[86.45481,22.87858],[86.45343,22.88587],[86.45625,22.88577],[86.46004,22.89208],[86.46463,22.89434],[86.46714,22.89993],[86.46543,22.90239],[86.45297,22.90246],[86.44151,22.91629],[86.44048,22.91949],[86.4362,22.92232],[86.43534,22.92519],[86.44201,22.92797],[86.44301,22.93067],[86.4468,22.93071],[86.45131,22.93325],[86.45436,22.93198],[86.45998,22.93506],[86.46535,22.94546],[86.46912,22.94451],[86.47098,22.94893],[86.47632,22.95118],[86.47793,22.94936],[86.47727,22.94609],[86.4853,22.94277],[86.48913,22.93724],[86.49454,22.94326],[86.49524,22.94685],[86.50078,22.94594],[86.5029,22.94897],[86.50258,22.95187],[86.50784,22.95088],[86.5127,22.94776],[86.51921,22.94824],[86.52141,22.95006],[86.52598,22.94761],[86.53004,22.95215],[86.5316,22.96521],[86.54037,22.9668],[86.54478,22.96569],[86.54408,22.96973],[86.55056,22.97799],[86.5475,22.98232],[86.54788,22.98694],[86.54561,22.99028],[86.53991,22.98458],[86.52814,22.98064],[86.52382,22.97713],[86.52684,22.97549],[86.52619,22.97261],[86.52119,22.97071],[86.50862,22.97304],[86.51378,22.97749],[86.50416,22.98611],[86.50115,22.99359],[86.49769,22.99204],[86.48706,22.99243],[86.48037,22.98982],[86.47573,22.99175],[86.47051,22.98889],[86.45155,22.99024],[86.45085,22.98835],[86.44642,22.98824],[86.4423,22.99323],[86.42531,22.99657],[86.41926,23.00027],[86.41825,22.99921],[86.41972,22.99678],[86.41733,22.99705],[86.41716,22.9932],[86.41329,22.99081],[86.41006,22.99113],[86.4084,22.98906],[86.40689,22.98972],[86.40108,22.98086],[86.39855,22.97989],[86.3948,22.98022],[86.38771,22.98531],[86.38541,22.98945],[86.38502,22.99526],[86.38356,22.99428],[86.37275,22.99815],[86.37178,22.99674],[86.3639,22.99958],[86.35443,22.99934],[86.35453,22.99297],[86.34764,22.99662],[86.3437,22.99649],[86.34061,22.99355],[86.33953,22.98981],[86.32593,22.9949],[86.32159,22.99744],[86.31979,23.0006],[86.31612,23.00007],[86.3089,23.00342],[86.30909,23.00705],[86.30224,23.01006],[86.30469,23.0153],[86.30374,23.016],[86.29938,23.00979],[86.29621,23.00968],[86.29212,23.01298],[86.28418,23.00692],[86.27717,23.00738],[86.26787,23.00116],[86.26824,22.99984],[86.26585,22.99798],[86.26056,22.99859],[86.2485,22.99491],[86.24535,22.9982],[86.24306,22.9981],[86.24171,22.99609],[86.22877,22.99512],[86.22269,22.9995],[86.2067,23.00028],[86.2084,23.00651],[86.19807,23.00685],[86.18654,23.00495],[86.18164,23.00899],[86.17898,23.02077],[86.17615,23.02028],[86.17008,23.02244],[86.17049,23.0264],[86.16639,23.02947],[86.16774,23.03256],[86.16544,23.03238],[86.16305,23.02829],[86.15602,23.03117],[86.15804,23.04618],[86.15364,23.0481],[86.15099,23.05154],[86.14198,23.05425],[86.14177,23.06012],[86.14404,23.06351],[86.14366,23.06774],[86.14626,23.07496],[86.13604,23.07724],[86.13394,23.08336],[86.12716,23.08692],[86.12071,23.08483],[86.11519,23.08566],[86.11023,23.08429],[86.10224,23.08653],[86.09802,23.0842],[86.09062,23.08943],[86.09005,23.09471],[86.0757,23.09464],[86.05126,23.10553],[86.05123,23.1095],[86.05411,23.11269],[86.05591,23.12274],[86.04593,23.13599],[86.04606,23.14171],[86.04452,23.14424],[86.03754,23.14711],[86.03464,23.14444],[86.02907,23.14607],[86.02455,23.14428],[86.01831,23.14814],[86.01999,23.15279],[86.0178,23.15471],[86.01345,23.14791],[86.00116,23.14835],[85.99244,23.15194],[85.97596,23.15479],[85.95761,23.16105],[85.95137,23.15173],[85.94269,23.15304],[85.93695,23.15024],[85.9289,23.15105],[85.92771,23.14857],[85.91411,23.14913],[85.90866,23.15397],[85.89454,23.15513],[85.88157,23.17026],[85.88342,23.19497],[85.88252,23.19873],[85.87655,23.2049],[85.86839,23.21828],[85.86381,23.22238],[85.85878,23.22061],[85.85135,23.22234],[85.83658,23.22053],[85.83969,23.22985],[85.83626,23.23794],[85.83861,23.24683],[85.82358,23.25905],[85.81967,23.26812],[85.82863,23.28228],[85.83838,23.3065],[85.84747,23.30969],[85.85069,23.31664],[85.85945,23.32206],[85.86301,23.32775],[85.8682,23.32978],[85.86548,23.33912],[85.86625,23.34152],[85.87258,23.34243],[85.88307,23.35078],[85.87517,23.35983],[85.87476,23.37678],[85.87843,23.38168],[85.87082,23.38607],[85.87081,23.38881],[85.88713,23.39646],[85.89855,23.39355],[85.90254,23.39711],[85.90152,23.40227],[85.89866,23.40502],[85.88673,23.4046],[85.8875,23.40813],[85.89144,23.41022],[85.8896,23.414],[85.88029,23.42239],[85.88663,23.42513],[85.88258,23.43058],[85.87665,23.42967],[85.86389,23.43136],[85.86418,23.43569],[85.86188,23.43906],[85.86193,23.44238],[85.8649,23.4547],[85.86363,23.45861],[85.86573,23.45991],[85.86249,23.46152],[85.868,23.46545],[85.87,23.47495],[85.87364,23.47673],[85.87546,23.47985],[85.88273,23.48095],[85.88715,23.48431],[85.8863,23.48205],[85.89627,23.48377],[85.90014,23.48241],[85.9086,23.48363],[85.91204,23.48084],[85.91524,23.48187],[85.92017,23.47724],[85.93283,23.47291],[85.95324,23.47094],[85.95547,23.47119],[85.95711,23.47441],[85.96277,23.47624],[85.97751,23.47604],[85.98062,23.47815],[85.98897,23.47831],[85.99252,23.48033],[86.00322,23.48177],[86.00537,23.4835],[86.00719,23.48272],[86.00866,23.48431],[86.01673,23.48449],[86.02298,23.48651],[86.03146,23.48365],[86.03726,23.48592],[86.04396,23.48432],[86.05384,23.48706],[86.05472,23.49017],[86.05793,23.49046],[86.05671,23.49508],[86.03819,23.49778],[86.03941,23.50466],[86.03775,23.51066],[86.03924,23.51504],[86.03468,23.51593],[86.03387,23.52267],[86.02895,23.52765],[86.02841,23.53259],[86.02366,23.53692],[86.02818,23.54052],[86.02765,23.54211],[86.01628,23.54732],[86.01782,23.55959],[86.02467,23.56205],[86.03075,23.572],[86.0375,23.57651],[86.04013,23.57526],[86.04206,23.58688],[86.05216,23.58615],[86.0556,23.58294],[86.0657,23.57896],[86.07743,23.57921],[86.07274,23.56884],[86.08087,23.56568],[86.08512,23.56683],[86.09393,23.56324],[86.09907,23.56651],[86.10598,23.56596],[86.10849,23.5697],[86.11584,23.5661],[86.11786,23.56735],[86.12063,23.56618],[86.12394,23.56927],[86.12667,23.5694],[86.12922,23.56774],[86.12693,23.56592],[86.13154,23.56276],[86.13125,23.55929],[86.13662,23.56285],[86.13927,23.55927],[86.14328,23.56405],[86.14724,23.56386],[86.14678,23.56169],[86.14832,23.56081],[86.15835,23.55998],[86.15282,23.55213],[86.15231,23.54912],[86.15805,23.54147],[86.15749,23.53701],[86.15537,23.52962],[86.15031,23.52523],[86.14863,23.51935],[86.1541,23.51273],[86.16239,23.50849],[86.16057,23.50367],[86.15741,23.50064],[86.15961,23.49344],[86.15756,23.48864],[86.15135,23.4822],[86.15361,23.47893],[86.15371,23.47574],[86.15156,23.47433],[86.149,23.4752],[86.14741,23.46841],[86.14883,23.46526],[86.15957,23.46884],[86.16034,23.46591],[86.17829,23.46984],[86.17935,23.46761],[86.18203,23.46697],[86.18172,23.46008],[86.18706,23.45809],[86.19144,23.46018],[86.19503,23.45789],[86.19589,23.45439],[86.19709,23.45553],[86.19889,23.45334],[86.20571,23.45368],[86.20678,23.45],[86.21573,23.44815],[86.22838,23.44288],[86.23075,23.44485],[86.23031,23.45132],[86.23262,23.46224],[86.23496,23.46055],[86.24557,23.45932],[86.24734,23.45838],[86.24747,23.45625],[86.24216,23.45112],[86.24237,23.44653],[86.23655,23.44488],[86.23146,23.43598],[86.23245,23.43253],[86.22987,23.43082],[86.23431,23.42089],[86.24399,23.42375],[86.24886,23.42247],[86.24561,23.4139],[86.24739,23.41114],[86.25148,23.41084],[86.25915,23.41331],[86.26025,23.41782],[86.25221,23.42677],[86.25658,23.43009],[86.26409,23.43077],[86.27183,23.42766],[86.27568,23.43038],[86.28162,23.42855],[86.28949,23.42906],[86.291,23.42635],[86.28959,23.42473],[86.29094,23.41759],[86.30007,23.41276],[86.31055,23.41136],[86.31187,23.41439],[86.31776,23.41641],[86.31572,23.42345],[86.31757,23.42647],[86.31448,23.42668],[86.31185,23.42445],[86.30929,23.42818],[86.30606,23.42958],[86.30577,23.43482],[86.31534,23.44004],[86.31786,23.43983],[86.32057,23.44329],[86.33479,23.44658],[86.33404,23.44463],[86.33644,23.44283],[86.3368,23.44018],[86.34035,23.43954],[86.35146,23.44209],[86.34972,23.45155],[86.35593,23.45038],[86.3597,23.45225],[86.35942,23.45709],[86.35736,23.46073],[86.36306,23.46489],[86.36409,23.47169],[86.37946,23.47364],[86.3773,23.48057],[86.3788,23.48479],[86.37329,23.48298],[86.37061,23.48449],[86.36544,23.48028],[86.36242,23.48425],[86.36644,23.49627],[86.36357,23.50161],[86.36868,23.5025],[86.37519,23.51034],[86.37126,23.51748],[86.36458,23.52172],[86.36828,23.52815],[86.36511,23.53269],[86.36854,23.53525],[86.36726,23.54019],[86.37163,23.54057],[86.37097,23.54262],[86.37856,23.54875],[86.38401,23.55917],[86.38938,23.5612],[86.38845,23.56364],[86.39083,23.56674],[86.38816,23.57395],[86.39946,23.57859],[86.40247,23.57711],[86.40771,23.57877],[86.41045,23.57586],[86.41356,23.57571],[86.41659,23.57839],[86.42123,23.5901],[86.43294,23.59448],[86.43618,23.59903],[86.44708,23.59814],[86.44885,23.6017],[86.4458,23.61529],[86.44643,23.61872],[86.4498,23.62071],[86.45417,23.61954],[86.45696,23.62609],[86.46181,23.6303],[86.47038,23.6305],[86.47955,23.63553],[86.49203,23.63828],[86.51191,23.63171],[86.5252,23.63018],[86.5354,23.63124],[86.5465,23.63764],[86.55662,23.63994],[86.57444,23.64805],[86.58081,23.65548],[86.59897,23.6655],[86.59601,23.67048],[86.59757,23.67376],[86.61157,23.67559],[86.63379,23.67517],[86.65643,23.68429],[86.6756,23.68709],[86.69815,23.69361],[86.70533,23.69714],[86.71495,23.69888],[86.72556,23.69844],[86.73906,23.69423],[86.74191,23.69027],[86.7444,23.68162],[86.74734,23.67879],[86.77076,23.68139],[86.78891,23.68783],[86.79904,23.68903],[86.80581,23.69586],[86.80024,23.69975],[86.79929,23.7037],[86.8082,23.72239],[86.80796,23.72946],[86.81229,23.74476],[86.82609,23.74921],[86.82794,23.7527],[86.82837,23.7602],[86.82585,23.77668],[86.82021,23.78393],[86.81984,23.78825],[86.81932,23.78593],[86.80908,23.79805],[86.80507,23.79889],[86.80336,23.8013],[86.81009,23.82141],[86.80748,23.82281],[86.80389,23.82968],[86.80089,23.82983],[86.79935,23.83182],[86.80476,23.83685],[86.81026,23.83529],[86.81478,23.82994],[86.81603,23.82501],[86.81379,23.82475],[86.81295,23.82075],[86.81551,23.81736],[86.81973,23.81772],[86.82045,23.81555],[86.82654,23.81394],[86.83695,23.81954],[86.84003,23.82248],[86.83879,23.82459],[86.84804,23.82365],[86.8529,23.82495],[86.85502,23.83056],[86.86127,23.83505],[86.86377,23.84057],[86.86265,23.84201],[86.86363,23.84446],[86.87422,23.84731],[86.87997,23.84528],[86.87952,23.83526],[86.88094,23.82901],[86.88646,23.82565],[86.88602,23.8212],[86.8903,23.8205],[86.89457,23.82635],[86.89282,23.83728],[86.88936,23.8393],[86.88635,23.84569],[86.88701,23.85644],[86.88092,23.86037],[86.88024,23.86232],[86.89592,23.87829],[86.90277,23.8812],[86.91328,23.88079],[86.91556,23.88243],[86.93102,23.87055],[86.93323,23.86672],[86.93397,23.85394],[86.93757,23.85041],[86.94515,23.84688],[86.94999,23.84598],[86.96041,23.84828],[86.96347,23.8527],[86.96566,23.86476],[86.96829,23.86748],[86.97324,23.86877],[86.98596,23.8596],[87.011,23.8526],[87.02423,23.84447],[87.03797,23.83921],[87.05159,23.82539],[87.06521,23.81672],[87.07344,23.81486],[87.08138,23.81012],[87.08671,23.80897],[87.089,23.81381],[87.0918,23.81537],[87.09749,23.81249],[87.10392,23.8044],[87.10732,23.80466],[87.10833,23.8082],[87.11643,23.8077],[87.11887,23.80524],[87.11842,23.80251],[87.11266,23.80536],[87.11053,23.80316],[87.11077,23.80036],[87.12178,23.79665],[87.12348,23.79926],[87.13136,23.798],[87.1399,23.80423],[87.14417,23.79905],[87.15049,23.79756],[87.15283,23.80291],[87.15498,23.80337],[87.15859,23.81453],[87.16438,23.81813],[87.16702,23.82453],[87.16331,23.82656],[87.16361,23.82917],[87.16031,23.83113],[87.15674,23.83154],[87.15372,23.82947],[87.13956,23.84841],[87.13002,23.85391],[87.12933,23.86863],[87.13306,23.87019],[87.14831,23.86625],[87.15135,23.86726],[87.15412,23.86542],[87.16575,23.86475],[87.17248,23.85868],[87.17393,23.85475],[87.1799,23.85197],[87.18734,23.85959],[87.19061,23.85738],[87.1961,23.85781],[87.19331,23.85251],[87.18733,23.84877],[87.1889,23.84728],[87.18858,23.84315],[87.19241,23.84365],[87.19627,23.84963],[87.20113,23.85019],[87.20307,23.84775],[87.20581,23.85633],[87.2122,23.85353],[87.21388,23.85056],[87.22058,23.85673],[87.2199,23.85877],[87.22121,23.86057],[87.2232,23.85824],[87.23368,23.85713],[87.23732,23.8544],[87.23048,23.84591],[87.22321,23.84562],[87.2224,23.83767],[87.21654,23.83171],[87.2174,23.82926],[87.22471,23.82764],[87.2279,23.82511],[87.23041,23.82565],[87.23088,23.82868],[87.2387,23.82643],[87.2464,23.83156],[87.24431,23.83205],[87.24893,23.83525],[87.24768,23.83896],[87.25129,23.84051],[87.25494,23.84704],[87.25,23.85004],[87.24906,23.85554],[87.24665,23.85448],[87.2443,23.85694],[87.24429,23.86024],[87.24648,23.86281],[87.24507,23.86486],[87.24873,23.86874],[87.24153,23.86966],[87.24149,23.87641],[87.24457,23.88213],[87.24274,23.88411],[87.24258,23.88815],[87.24406,23.89173],[87.24306,23.89338],[87.24544,23.89528],[87.2444,23.90309],[87.24655,23.9056],[87.24512,23.9082],[87.25216,23.91303],[87.25828,23.90631],[87.25876,23.90329],[87.25457,23.89997],[87.25889,23.89954],[87.25844,23.89409],[87.26225,23.88852],[87.26198,23.88447],[87.26338,23.88248],[87.25905,23.88317],[87.26915,23.87458],[87.27493,23.88175],[87.27543,23.88475],[87.28141,23.88851],[87.28349,23.88945],[87.28377,23.88563],[87.28553,23.88404],[87.2845,23.88892],[87.29111,23.89328],[87.28822,23.89855],[87.29503,23.90234],[87.29125,23.9051],[87.29164,23.9154],[87.28354,23.92091],[87.2882,23.9269],[87.28401,23.92957],[87.28416,23.93831],[87.29082,23.94167],[87.28977,23.9495],[87.29325,23.95863],[87.27979,23.96056],[87.27587,23.96542],[87.27093,23.96747],[87.26587,23.96566],[87.26153,23.96758],[87.26038,23.97216],[87.26262,23.98126],[87.26691,23.98221],[87.26826,23.9891],[87.26522,23.99394],[87.26416,24.00061],[87.26203,24.00322],[87.25343,23.99921],[87.25341,23.99624],[87.2505,23.99704],[87.24091,24.01191],[87.24456,24.01664],[87.23503,24.02018],[87.23289,24.02374],[87.23528,24.02685],[87.23443,24.03249],[87.2405,24.0384],[87.24128,24.04189],[87.2454,24.04506],[87.25353,24.04296],[87.26073,24.03739],[87.2676,24.03776],[87.27552,24.03295],[87.27889,24.03333],[87.28746,24.02886],[87.29258,24.03344],[87.30737,24.03183],[87.31576,24.03556],[87.32701,24.03286],[87.33712,24.03431],[87.33958,24.02652],[87.33629,24.02603],[87.3358,24.02068],[87.32769,24.01855],[87.32319,24.01264],[87.32363,24.00989],[87.31917,24.00848],[87.32203,24.00305],[87.32817,23.99867],[87.33767,24.00002],[87.35199,23.99918],[87.35701,24.00611],[87.35813,24.01183],[87.36042,24.01309],[87.37512,24.00895],[87.3791,24.00652],[87.38015,24.00408],[87.39462,24.00275],[87.403,23.99751],[87.41657,23.99265],[87.42037,23.99343],[87.42141,23.99231],[87.42323,23.9937],[87.42772,23.99235],[87.42922,23.98645],[87.43677,23.98212],[87.44572,23.98209],[87.4495,23.98796],[87.46039,23.98383],[87.46217,23.98907],[87.46169,23.99487],[87.45515,24.0003],[87.4555,24.00191],[87.44525,24.00202],[87.44384,24.00697],[87.44935,24.00878],[87.44876,24.01137],[87.44139,24.01137],[87.4387,24.00894],[87.43834,24.01355],[87.44453,24.0151],[87.44618,24.01377],[87.45089,24.01802],[87.4523,24.01654],[87.45829,24.01669],[87.45936,24.01882],[87.46165,24.01324],[87.46889,24.01405],[87.47235,24.01634],[87.47613,24.01227],[87.4822,24.01618],[87.49148,24.01862],[87.49688,24.02545],[87.50293,24.02608],[87.50359,24.03183],[87.51198,24.03584],[87.50939,24.04695],[87.49351,24.05416],[87.49528,24.05995],[87.49873,24.06153],[87.49985,24.06516],[87.49478,24.0668],[87.49061,24.07059],[87.49272,24.0769],[87.49827,24.07653],[87.50259,24.07379],[87.50608,24.07559],[87.50686,24.07972],[87.51075,24.08225],[87.50832,24.08543],[87.49739,24.08566],[87.48983,24.09011],[87.49225,24.09381],[87.49671,24.09358],[87.49577,24.099],[87.49756,24.09788],[87.50041,24.10184],[87.49576,24.11279],[87.49762,24.11897],[87.50439,24.11418],[87.5111,24.112],[87.51612,24.11421],[87.52191,24.11367],[87.52708,24.10655],[87.53219,24.10835],[87.5331,24.0998],[87.53538,24.09582],[87.54237,24.0912],[87.54306,24.08609],[87.54664,24.08542],[87.55392,24.08879],[87.55992,24.08197],[87.56253,24.0846],[87.56837,24.08557],[87.57091,24.08838],[87.58022,24.08637],[87.57434,24.1002],[87.5742,24.10799],[87.5766,24.11226],[87.5826,24.11312],[87.58702,24.12374],[87.59101,24.12701],[87.59564,24.12623],[87.59802,24.12811],[87.60233,24.12711],[87.61023,24.13253],[87.60496,24.13292],[87.59446,24.1423],[87.59388,24.14534],[87.57711,24.15653],[87.57432,24.16018],[87.57615,24.16128],[87.58155,24.15929],[87.5814,24.16248],[87.58501,24.16449],[87.58735,24.16155],[87.59272,24.16026],[87.59546,24.16138],[87.60637,24.16064],[87.6066,24.16415],[87.6083,24.16578],[87.61334,24.16444],[87.61528,24.16612],[87.62222,24.16338],[87.62438,24.16519],[87.63158,24.16427],[87.63271,24.15969],[87.64008,24.15723],[87.6422,24.15305],[87.653,24.15598],[87.65362,24.1571],[87.65187,24.1577],[87.65313,24.15872],[87.65679,24.15601],[87.65755,24.1589],[87.66432,24.15759],[87.66734,24.15298],[87.66842,24.15457],[87.67345,24.15154],[87.67559,24.15186],[87.67873,24.14808],[87.68224,24.15096],[87.68481,24.14982],[87.68885,24.15174],[87.69442,24.15024],[87.69699,24.15925],[87.6957,24.16159],[87.69681,24.16663],[87.7029,24.1792],[87.70237,24.18076],[87.69867,24.1808],[87.69861,24.18781],[87.68627,24.18943],[87.68216,24.19251],[87.67635,24.19373],[87.67728,24.1986],[87.67589,24.19976],[87.67558,24.20833],[87.66944,24.21012],[87.66714,24.2067],[87.65799,24.20979],[87.65434,24.20773],[87.63861,24.21399],[87.63776,24.21724],[87.6465,24.22549],[87.64479,24.2294],[87.64663,24.23153],[87.64395,24.23547],[87.63365,24.23653],[87.63437,24.24165],[87.64071,24.24843],[87.63878,24.25438],[87.64829,24.25063],[87.65466,24.23853],[87.65917,24.23612],[87.66277,24.23843],[87.6622,24.24492],[87.67234,24.24358],[87.6739,24.24802],[87.67627,24.24897],[87.68754,24.24644],[87.68666,24.2509],[87.6892,24.25326],[87.69036,24.25785],[87.69739,24.25991],[87.69995,24.2627],[87.70589,24.26144],[87.70929,24.27063],[87.70701,24.27578],[87.7133,24.28403],[87.71367,24.2944],[87.7293,24.28842],[87.73226,24.29171],[87.73861,24.29449],[87.73757,24.29611],[87.74315,24.29678],[87.74742,24.29924],[87.74613,24.30123],[87.74821,24.30435],[87.75486,24.31025],[87.7616,24.30847],[87.76297,24.32131],[87.77063,24.32214],[87.76902,24.32792],[87.76257,24.33079],[87.7644,24.33933],[87.76818,24.34472],[87.77123,24.34444],[87.77277,24.34977],[87.77984,24.35842],[87.78369,24.36243],[87.78597,24.36249],[87.79382,24.38307],[87.8011,24.38222],[87.79936,24.38716],[87.79935,24.39421],[87.79407,24.39684],[87.79395,24.39929],[87.79691,24.40218],[87.80219,24.39998],[87.80708,24.40701],[87.80958,24.40701],[87.80848,24.40539],[87.80981,24.40575],[87.81259,24.41188],[87.81128,24.41783],[87.80632,24.42014],[87.80437,24.4127],[87.7999,24.40918],[87.79955,24.41221],[87.79271,24.41477],[87.79331,24.41247],[87.79156,24.41433],[87.78853,24.4145],[87.78883,24.41655],[87.78979,24.42066],[87.79549,24.42143],[87.79415,24.42625],[87.79224,24.42774],[87.79612,24.43502],[87.79456,24.4364],[87.80077,24.43733],[87.80082,24.44092],[87.80394,24.44161],[87.80001,24.44591],[87.80314,24.454],[87.80999,24.45489],[87.81078,24.45651],[87.81355,24.45462],[87.8132,24.45671],[87.81978,24.45453],[87.81893,24.45799],[87.82377,24.45846],[87.82398,24.46517],[87.82119,24.46669],[87.82267,24.47103],[87.81865,24.47226],[87.81835,24.47481],[87.8107,24.47636],[87.81456,24.48864],[87.81662,24.49015],[87.82272,24.48845],[87.82729,24.48927],[87.82443,24.4906],[87.82576,24.49062],[87.82815,24.49862],[87.82384,24.50044],[87.82141,24.4965],[87.82313,24.49461],[87.81712,24.49255],[87.81623,24.49094],[87.81168,24.49077],[87.81131,24.49359],[87.81293,24.49365],[87.81191,24.49665],[87.81341,24.49739],[87.81254,24.49971],[87.81723,24.50061],[87.81348,24.50534],[87.81429,24.50884],[87.81138,24.50905],[87.8117,24.51272],[87.80934,24.51452],[87.80458,24.51097],[87.80459,24.50866],[87.80262,24.50823],[87.80453,24.50274],[87.80312,24.50202],[87.80564,24.50061],[87.80126,24.49372],[87.79866,24.49449],[87.79851,24.49705],[87.79579,24.49981],[87.79663,24.50127],[87.79414,24.50114],[87.796,24.50456],[87.80153,24.50441],[87.80082,24.50588],[87.8024,24.50733],[87.79833,24.50848],[87.79807,24.51137],[87.80194,24.5122],[87.80424,24.51923],[87.80216,24.52375],[87.79923,24.52473],[87.80042,24.53342],[87.79756,24.5388],[87.79957,24.54339],[87.8047,24.54188],[87.80859,24.54669],[87.80388,24.5547],[87.80245,24.56169],[87.79993,24.56137],[87.79988,24.5648],[87.79604,24.56591],[87.79496,24.56955],[87.79246,24.57166],[87.77837,24.57346],[87.77564,24.57124],[87.77019,24.57049],[87.77122,24.58302],[87.79213,24.58319],[87.79601,24.58076],[87.81218,24.57856],[87.81696,24.57339],[87.82534,24.56913],[87.82388,24.56402],[87.8263,24.55872],[87.83283,24.55806],[87.84082,24.55979],[87.84405,24.55743],[87.84792,24.5573],[87.84941,24.55384],[87.85328,24.55764],[87.85235,24.56177],[87.85644,24.5581],[87.86051,24.55883],[87.86087,24.55693],[87.86938,24.55602],[87.86922,24.5645],[87.88927,24.56505],[87.89171,24.56866],[87.89193,24.58418],[87.89774,24.58491],[87.9011,24.58938],[87.90828,24.58892],[87.91328,24.59346],[87.91405,24.59662],[87.91182,24.59793],[87.91318,24.59991],[87.91129,24.60103],[87.91077,24.61043],[87.89254,24.60975],[87.89168,24.60864],[87.89347,24.60548],[87.8873,24.60778],[87.88354,24.61206],[87.88117,24.61167],[87.88039,24.61325],[87.87837,24.61206],[87.87583,24.61523],[87.87811,24.61819],[87.88684,24.61702],[87.89265,24.61354],[87.90603,24.61501],[87.90577,24.62928],[87.90032,24.62559],[87.89744,24.6256],[87.88864,24.62634],[87.88792,24.63034],[87.89185,24.6341],[87.90993,24.6314],[87.91127,24.63797],[87.91414,24.63771],[87.91087,24.65342],[87.9163,24.65829],[87.91661,24.66575],[87.90844,24.66717],[87.90901,24.67],[87.90478,24.67244],[87.89711,24.67255],[87.89071,24.67521],[87.88775,24.67999],[87.89414,24.68701],[87.89767,24.68788],[87.90114,24.69412],[87.90292,24.70514],[87.89992,24.70518],[87.90064,24.71128],[87.90328,24.71464],[87.90724,24.71497],[87.90635,24.71977],[87.90835,24.72162],[87.90401,24.72252],[87.90459,24.72533],[87.89864,24.72369],[87.89001,24.72522],[87.8902,24.72795],[87.88825,24.72891],[87.8888,24.73438],[87.88735,24.73655],[87.8851,24.73679],[87.88545,24.73968],[87.88302,24.74132],[87.87855,24.74179],[87.87939,24.74035],[87.87413,24.73208],[87.86561,24.73203],[87.86353,24.7342],[87.85993,24.73393],[87.84887,24.74019],[87.84302,24.74002],[87.84109,24.74355],[87.83455,24.74892],[87.83221,24.74883],[87.82941,24.75458],[87.82291,24.75481],[87.81656,24.75806],[87.81639,24.75969],[87.82323,24.77006],[87.82702,24.76988],[87.82799,24.77219],[87.82881,24.76913],[87.83015,24.77001],[87.8323,24.78652],[87.83624,24.79021],[87.84071,24.78941],[87.84077,24.78637],[87.8421,24.7857],[87.84024,24.77783],[87.83598,24.77832],[87.8374,24.76579],[87.83817,24.76804],[87.84326,24.76859],[87.84795,24.76345],[87.85228,24.76199],[87.86388,24.77036],[87.86201,24.77254],[87.86542,24.77171],[87.86591,24.77347],[87.86923,24.77503],[87.87014,24.77865],[87.86684,24.77953],[87.86866,24.7836],[87.86864,24.78865],[87.87088,24.79089],[87.86976,24.79391],[87.87387,24.79558],[87.87551,24.79416],[87.87445,24.79083],[87.8783,24.78974],[87.87838,24.79602],[87.88074,24.79834],[87.8816,24.80537],[87.88071,24.808],[87.87462,24.8084],[87.87438,24.81801],[87.87019,24.8203],[87.86912,24.82464],[87.87053,24.82629],[87.87237,24.82476],[87.87507,24.82575],[87.87507,24.82239],[87.87933,24.82249],[87.87982,24.82415],[87.88117,24.82378],[87.88275,24.82953],[87.88505,24.82842],[87.88261,24.82327],[87.88439,24.82322],[87.88615,24.82816],[87.88727,24.82598],[87.88577,24.82367],[87.88802,24.82298],[87.89124,24.82699],[87.89619,24.82286],[87.90027,24.8241],[87.90136,24.8275],[87.89777,24.82768],[87.89604,24.8307],[87.89607,24.83603],[87.89887,24.83708],[87.89875,24.84461],[87.89654,24.84929],[87.89386,24.84974],[87.89133,24.85604],[87.89667,24.85777],[87.89727,24.86165],[87.91005,24.87473],[87.9167,24.88454],[87.95293,24.90776],[87.96083,24.92208],[87.95962,24.92901],[87.9628,24.93706],[87.95895,24.9508],[87.95775,24.97089],[87.95326,24.97708],[87.94482,24.98414],[87.94054,24.99085],[87.92273,25.00058],[87.90593,25.00389],[87.89936,25.00678],[87.85728,25.05463],[87.834,25.06526],[87.80579,25.07265],[87.80237,25.08289],[87.7929,25.09535],[87.78967,25.10442],[87.77903,25.1177],[87.77436,25.12136],[87.7744,25.14405],[87.78778,25.1913],[87.7897,25.20632],[87.7908,25.23442],[87.78916,25.24242],[87.78535,25.24971],[87.77633,25.25659],[87.76718,25.26098],[87.74745,25.26383],[87.71134,25.25764],[87.71152,25.27459],[87.69309,25.28511],[87.69632,25.29394],[87.69968,25.2971],[87.6954,25.30004],[87.69862,25.30396],[87.6954,25.30668],[87.68478,25.30687],[87.68431,25.30965],[87.68685,25.30918],[87.69208,25.31153],[87.67317,25.31286],[87.6755,25.31054],[87.67516,25.30703],[87.66874,25.30842],[87.66674,25.31077],[87.66565,25.30915],[87.66467,25.31124],[87.66368,25.30807],[87.65682,25.3087],[87.65501,25.30757],[87.63782,25.31479],[87.63667,25.31314],[87.63524,25.31389],[87.63588,25.31582],[87.63044,25.31969],[87.62699,25.31163],[87.61743,25.3181],[87.61331,25.31547],[87.61197,25.31266],[87.59228,25.3224],[87.59349,25.32513],[87.5841,25.33144],[87.58452,25.33348]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-JK","area_level":"State","area_name":"Jammu And Kashmir","geometry_source":"SOI_States","same_as":"LGD/1/State"},"geometry":{"type":"Polygon","coordinates":[[[74.5398,35.07498],[74.51974,35.09285],[74.51224,35.10354],[74.49944,35.11559],[74.4585,35.12527],[74.43994,35.12594],[74.43874,35.13007],[74.42705,35.11951],[74.41529,35.11174],[74.41062,35.10129],[74.39956,35.09182],[74.38198,35.06782],[74.37566,35.066],[74.34752,35.06487],[74.30523,35.06763],[74.29271,35.06452],[74.29155,35.05467],[74.28823,35.04768],[74.26517,35.04086],[74.25587,35.0442],[74.24513,35.05211],[74.24141,35.06006],[74.2425,35.07224],[74.24022,35.07914],[74.23523,35.08139],[74.22698,35.0743],[74.22349,35.0736],[74.21993,35.07534],[74.21755,35.08223],[74.22022,35.08859],[74.21514,35.09372],[74.19131,35.09092],[74.15611,35.09088],[74.14467,35.09579],[74.13374,35.10465],[74.13239,35.10293],[74.11915,35.1042],[74.1114,35.1007],[74.10143,35.09914],[74.09387,35.09195],[74.0884,35.0841],[74.08191,35.07944],[74.08082,35.0701],[74.07117,35.05849],[74.07358,35.0546],[74.06674,35.04627],[74.07342,35.04577],[74.07796,35.03865],[74.08943,35.03296],[74.09488,35.03399],[74.09822,35.03218],[74.10588,35.01837],[74.10975,35.01607],[74.0975,35.01048],[74.09482,35.00426],[74.08961,35.00178],[74.06555,34.99779],[74.05932,34.99268],[74.05977,34.98701],[74.06329,34.98328],[74.06103,34.97694],[74.06222,34.97389],[74.06096,34.96773],[74.06442,34.9632],[74.06415,34.95722],[74.07117,34.93548],[74.05367,34.92491],[74.03887,34.92111],[74.0372,34.91923],[74.0365,34.91109],[74.03435,34.90624],[74.03472,34.9015],[74.04197,34.89103],[74.0308,34.88303],[74.02992,34.87628],[74.02043,34.87246],[74.01504,34.87525],[74.00568,34.87327],[74.00051,34.87523],[73.99909,34.86885],[73.99272,34.86592],[73.96744,34.86383],[73.96641,34.8543],[73.96118,34.84307],[73.961,34.83856],[73.95799,34.83554],[73.95135,34.83364],[73.93047,34.83239],[73.92577,34.81756],[73.91937,34.81165],[73.90491,34.81284],[73.89932,34.81877],[73.89499,34.81897],[73.88224,34.81524],[73.87094,34.81407],[73.86299,34.80959],[73.85666,34.80851],[73.84314,34.81428],[73.83771,34.81316],[73.82178,34.7921],[73.81803,34.79132],[73.80078,34.79473],[73.78373,34.79139],[73.77231,34.79611],[73.7563,34.78735],[73.7371,34.77254],[73.72994,34.77222],[73.72236,34.76341],[73.71922,34.75239],[73.71185,34.74294],[73.70766,34.72755],[73.70463,34.72201],[73.68458,34.70753],[73.67897,34.69358],[73.66831,34.68837],[73.66645,34.68319],[73.65905,34.6731],[73.66026,34.6661],[73.66351,34.66322],[73.68772,34.65553],[73.69292,34.6533],[73.695,34.65005],[73.69468,34.64702],[73.69048,34.6411],[73.66773,34.61801],[73.65376,34.60053],[73.65413,34.59641],[73.65986,34.58458],[73.6598,34.57975],[73.65026,34.56196],[73.63733,34.56053],[73.63301,34.56262],[73.62519,34.57558],[73.61115,34.58482],[73.58496,34.58512],[73.57228,34.58367],[73.55613,34.58984],[73.53871,34.57375],[73.53218,34.57098],[73.51716,34.57089],[73.49324,34.57475],[73.47021,34.56848],[73.46394,34.5719],[73.45384,34.57106],[73.45046,34.56994],[73.44825,34.56709],[73.44347,34.55562],[73.4463,34.53961],[73.44087,34.52785],[73.43081,34.52133],[73.43727,34.50654],[73.43517,34.48485],[73.43352,34.48071],[73.42194,34.46605],[73.42578,34.45621],[73.42774,34.42604],[73.42323,34.41886],[73.41617,34.40106],[73.40915,34.37758],[73.39912,34.37548],[73.3961,34.37161],[73.40301,34.36227],[73.4043,34.35432],[73.40786,34.35028],[73.41662,34.35044],[73.42134,34.34666],[73.42994,34.3463],[73.43073,34.34458],[73.42467,34.33894],[73.42507,34.33724],[73.43311,34.32765],[73.4418,34.32465],[73.44452,34.32138],[73.44719,34.31337],[73.44555,34.30313],[73.45224,34.30053],[73.46041,34.28913],[73.46065,34.28691],[73.45558,34.28082],[73.45671,34.27645],[73.45986,34.27621],[73.47199,34.2838],[73.4755,34.29133],[73.47854,34.29131],[73.48084,34.28942],[73.48448,34.27464],[73.47594,34.26774],[73.47304,34.25976],[73.47283,34.2523],[73.48202,34.23086],[73.49854,34.21122],[73.49861,34.20827],[73.49275,34.20157],[73.49438,34.19529],[73.49111,34.18533],[73.49357,34.17607],[73.49084,34.17082],[73.49245,34.16002],[73.4913,34.15375],[73.49355,34.14724],[73.49093,34.13967],[73.49719,34.13245],[73.49443,34.12468],[73.49835,34.1123],[73.49763,34.10486],[73.50129,34.0966],[73.49923,34.08775],[73.49967,34.07457],[73.5078,34.06486],[73.51139,34.04944],[73.51136,34.0326],[73.51789,34.0218],[73.51645,33.99883],[73.52607,33.99142],[73.52778,33.98815],[73.5291,33.9823],[73.5322,33.97816],[73.53254,33.97216],[73.53643,33.96519],[73.53779,33.95634],[73.5454,33.94382],[73.54761,33.93693],[73.55005,33.93383],[73.55772,33.9299],[73.56312,33.92047],[73.58444,33.90496],[73.59284,33.8938],[73.59333,33.87879],[73.58779,33.87444],[73.58716,33.86067],[73.57795,33.84749],[73.5747,33.82245],[73.56971,33.81527],[73.56684,33.80001],[73.55992,33.78133],[73.56383,33.77496],[73.56964,33.77211],[73.57483,33.76329],[73.58396,33.76009],[73.59465,33.75123],[73.59678,33.74714],[73.5987,33.73587],[73.60302,33.72848],[73.60314,33.71509],[73.59715,33.69976],[73.58842,33.69015],[73.57868,33.68358],[73.56746,33.66849],[73.56789,33.66007],[73.57729,33.64227],[73.57774,33.63806],[73.57601,33.63334],[73.56902,33.62465],[73.56715,33.61774],[73.57542,33.61618],[73.58549,33.61673],[73.58827,33.61541],[73.59538,33.60691],[73.59854,33.60017],[73.6009,33.59967],[73.60915,33.6055],[73.6119,33.60378],[73.61172,33.60079],[73.60498,33.58869],[73.60605,33.58665],[73.61079,33.58604],[73.62192,33.58075],[73.62871,33.57106],[73.62527,33.55822],[73.62736,33.54973],[73.62409,33.54328],[73.62441,33.54087],[73.63074,33.53519],[73.64102,33.53174],[73.64177,33.52851],[73.64111,33.52554],[73.6303,33.52442],[73.62045,33.51586],[73.61145,33.51306],[73.61214,33.50883],[73.61941,33.49932],[73.61868,33.49535],[73.6113,33.49927],[73.6054,33.50033],[73.60294,33.49924],[73.60207,33.49668],[73.60509,33.49155],[73.60425,33.48579],[73.61094,33.4823],[73.61047,33.47093],[73.61266,33.47163],[73.61437,33.47615],[73.61867,33.47616],[73.62013,33.4729],[73.61996,33.46251],[73.63053,33.46005],[73.63207,33.45798],[73.63189,33.44759],[73.61592,33.4477],[73.61313,33.44123],[73.60937,33.4382],[73.604,33.44003],[73.59606,33.43898],[73.59594,33.42939],[73.5894,33.42768],[73.58614,33.42523],[73.58671,33.42281],[73.60173,33.42294],[73.60316,33.41908],[73.59912,33.41546],[73.59088,33.41323],[73.58909,33.41131],[73.5885,33.40574],[73.58191,33.40323],[73.58109,33.39555],[73.57332,33.39182],[73.57059,33.38435],[73.57114,33.37936],[73.56513,33.36932],[73.56515,33.36625],[73.57188,33.35665],[73.58147,33.35849],[73.58377,33.35568],[73.57049,33.34298],[73.57111,33.33906],[73.57532,33.33752],[73.5772,33.335],[73.57842,33.32862],[73.58027,33.32719],[73.58307,33.32896],[73.58746,33.33554],[73.59356,33.34007],[73.5955,33.34016],[73.59803,33.33752],[73.59936,33.32951],[73.59763,33.32778],[73.59015,33.32693],[73.5893,33.32354],[73.5942,33.31763],[73.59564,33.30284],[73.60109,33.29871],[73.60828,33.29677],[73.61417,33.29289],[73.60553,33.28541],[73.60651,33.27371],[73.61521,33.25797],[73.6132,33.24821],[73.61941,33.24612],[73.62179,33.23599],[73.62373,33.23437],[73.63631,33.23272],[73.63756,33.23041],[73.6378,33.2257],[73.63173,33.22317],[73.63452,33.21789],[73.63355,33.20764],[73.63531,33.20485],[73.63951,33.20502],[73.64267,33.21925],[73.64762,33.22282],[73.64953,33.22238],[73.65563,33.21171],[73.66418,33.20763],[73.66801,33.20186],[73.66264,33.19171],[73.66642,33.18186],[73.66191,33.1733],[73.66448,33.16135],[73.66024,33.15882],[73.65185,33.15866],[73.64989,33.15658],[73.64869,33.13747],[73.64403,33.13678],[73.6363,33.142],[73.63361,33.14194],[73.6312,33.13952],[73.63127,33.13725],[73.63929,33.12813],[73.63893,33.1258],[73.63132,33.11755],[73.63304,33.09181],[73.6399,33.0831],[73.64944,33.08634],[73.65568,33.08542],[73.65687,33.08312],[73.67284,33.08224],[73.68157,33.08747],[73.68877,33.08667],[73.69134,33.08495],[73.69973,33.08489],[73.70969,33.07943],[73.71572,33.07882],[73.72906,33.07072],[73.74283,33.06615],[73.74986,33.058],[73.74764,33.03596],[73.74911,33.03362],[73.75601,33.02979],[73.75791,33.028],[73.75801,33.02527],[73.76274,33.02335],[73.76443,33.02032],[73.77303,33.01788],[73.78078,33.01253],[73.78435,33.00726],[73.79451,33.00359],[73.79832,32.98894],[73.78994,32.97763],[73.79043,32.96681],[73.79758,32.96594],[73.80931,32.96758],[73.82597,32.97724],[73.82774,32.98795],[73.82566,33.00401],[73.84565,33.0018],[73.86944,33.0028],[73.88054,32.99747],[73.88792,32.99747],[73.89874,33.00223],[73.90826,33.00143],[73.91628,32.99361],[73.92326,32.99065],[73.92499,32.98838],[73.9323,32.98724],[73.94145,32.98243],[73.95386,32.98456],[73.95798,32.987],[73.96464,32.98712],[73.96779,32.98434],[73.97024,32.97739],[73.96949,32.97085],[73.97237,32.96721],[73.97929,32.96644],[73.98951,32.96219],[73.99509,32.96315],[73.99834,32.96203],[74.00618,32.95491],[74.00621,32.9507],[73.99871,32.93948],[73.99815,32.93731],[73.99968,32.9354],[74.0051,32.93558],[74.02446,32.92975],[74.03917,32.93045],[74.04996,32.93467],[74.05816,32.93454],[74.05996,32.93182],[74.05968,32.92008],[74.06352,32.91692],[74.06343,32.91245],[74.06895,32.90956],[74.09047,32.90799],[74.10613,32.90294],[74.11679,32.8976],[74.14426,32.89495],[74.15631,32.89191],[74.16563,32.8869],[74.16871,32.8878],[74.17277,32.88637],[74.17441,32.88901],[74.1788,32.8895],[74.19072,32.88295],[74.19246,32.87497],[74.19426,32.87392],[74.19996,32.8753],[74.21126,32.87343],[74.21416,32.86268],[74.21985,32.86231],[74.21971,32.85583],[74.21801,32.85223],[74.21964,32.84882],[74.23445,32.84809],[74.24409,32.8463],[74.24411,32.84507],[74.26343,32.84209],[74.2663,32.83853],[74.26773,32.83223],[74.27672,32.83161],[74.27666,32.83363],[74.28052,32.83388],[74.3034,32.82984],[74.31283,32.82218],[74.30828,32.80758],[74.31514,32.80479],[74.31448,32.79684],[74.32723,32.79059],[74.33367,32.78035],[74.34223,32.77808],[74.3474,32.77484],[74.35133,32.77464],[74.35505,32.767],[74.391,32.76316],[74.39423,32.77212],[74.40293,32.76738],[74.40705,32.77428],[74.4076,32.77898],[74.41002,32.77948],[74.41526,32.78456],[74.42463,32.78347],[74.42611,32.78523],[74.44447,32.78351],[74.45941,32.78774],[74.46458,32.7759],[74.47596,32.7754],[74.48428,32.76831],[74.48608,32.76445],[74.49668,32.76469],[74.49791,32.76585],[74.50463,32.7641],[74.50531,32.76635],[74.51162,32.76453],[74.51043,32.76249],[74.51525,32.75584],[74.51407,32.75107],[74.51002,32.75102],[74.50943,32.74719],[74.51159,32.7455],[74.52705,32.74681],[74.53185,32.74436],[74.53386,32.74487],[74.53588,32.74986],[74.54212,32.74857],[74.54195,32.75191],[74.54334,32.75254],[74.54405,32.74803],[74.54822,32.74685],[74.54638,32.75001],[74.54703,32.75182],[74.55425,32.75838],[74.56289,32.76012],[74.57034,32.75973],[74.57623,32.75662],[74.5766,32.75449],[74.57402,32.7505],[74.57684,32.7479],[74.58052,32.7485],[74.58239,32.75279],[74.58991,32.75064],[74.59605,32.75646],[74.61347,32.75765],[74.61362,32.75966],[74.6192,32.76068],[74.63426,32.74954],[74.63532,32.75124],[74.63804,32.75153],[74.63824,32.75573],[74.63683,32.75625],[74.63835,32.75862],[74.63036,32.76843],[74.63293,32.77382],[74.63229,32.7764],[74.63967,32.78206],[74.65401,32.78087],[74.65836,32.78765],[74.64543,32.79544],[74.63463,32.80662],[74.63521,32.81177],[74.64052,32.81894],[74.65562,32.8321],[74.65904,32.832],[74.66348,32.82598],[74.66788,32.82504],[74.6835,32.83676],[74.70477,32.84195],[74.70544,32.82577],[74.70395,32.81699],[74.69749,32.8097],[74.69621,32.80504],[74.68416,32.7841],[74.68183,32.7765],[74.67842,32.77256],[74.67679,32.76879],[74.67707,32.76131],[74.67491,32.75599],[74.66457,32.74259],[74.65945,32.73084],[74.65591,32.72796],[74.66186,32.72703],[74.66371,32.72395],[74.65797,32.71505],[74.65789,32.70698],[74.6535,32.69669],[74.66136,32.68653],[74.66695,32.67527],[74.68239,32.67226],[74.68255,32.66883],[74.69526,32.66544],[74.69527,32.66131],[74.68887,32.65192],[74.68072,32.65252],[74.67126,32.64522],[74.67038,32.63895],[74.66778,32.63882],[74.66232,32.63508],[74.6551,32.63695],[74.65604,32.63278],[74.6531,32.63092],[74.657,32.63045],[74.65502,32.62459],[74.65494,32.61521],[74.63905,32.61464],[74.64034,32.60826],[74.63947,32.60348],[74.64159,32.60275],[74.64184,32.60055],[74.64661,32.59916],[74.64682,32.59774],[74.6543,32.59945],[74.65877,32.59685],[74.65711,32.59263],[74.64889,32.58798],[74.64983,32.58241],[74.65469,32.58083],[74.65211,32.56983],[74.65254,32.56296],[74.66273,32.56488],[74.66934,32.56883],[74.67384,32.56798],[74.67449,32.55443],[74.67327,32.55336],[74.66274,32.55383],[74.66171,32.54967],[74.66288,32.54452],[74.6825,32.53532],[74.6888,32.53507],[74.69061,32.53296],[74.69073,32.52348],[74.68423,32.5154],[74.68257,32.5097],[74.68566,32.50664],[74.68482,32.4995],[74.6821,32.49359],[74.68792,32.48687],[74.69358,32.48649],[74.69595,32.48767],[74.69608,32.48951],[74.70026,32.48999],[74.7011,32.49293],[74.70367,32.49139],[74.71018,32.49262],[74.71367,32.48804],[74.71118,32.47818],[74.71419,32.47837],[74.7145,32.47686],[74.71677,32.47814],[74.72746,32.47582],[74.72835,32.48077],[74.75155,32.4783],[74.75463,32.48208],[74.76548,32.48053],[74.77113,32.48128],[74.79477,32.4764],[74.79954,32.47781],[74.8005,32.48232],[74.81282,32.47964],[74.81377,32.48678],[74.81875,32.49791],[74.82423,32.49507],[74.83552,32.49516],[74.84708,32.48918],[74.85864,32.49285],[74.86529,32.48634],[74.87074,32.48596],[74.87728,32.49297],[74.88354,32.49087],[74.88389,32.48875],[74.87914,32.48199],[74.87925,32.47672],[74.90079,32.46738],[74.9066,32.47294],[74.91742,32.46427],[74.92151,32.46501],[74.931,32.47124],[74.93794,32.4713],[74.9362,32.46753],[74.94163,32.46285],[74.94704,32.44842],[74.95266,32.4475],[74.96071,32.4553],[74.96858,32.45934],[74.97129,32.45954],[74.98324,32.45089],[74.98652,32.45044],[74.98874,32.45242],[74.99187,32.45146],[74.99927,32.45745],[75.00329,32.45723],[75.0119,32.46412],[75.0193,32.46616],[75.01975,32.46789],[75.01656,32.47079],[75.01682,32.47946],[75.02802,32.49709],[75.04164,32.48711],[75.04535,32.48831],[75.05477,32.48164],[75.06782,32.47774],[75.06959,32.47791],[75.06994,32.47973],[75.08403,32.472],[75.08554,32.46876],[75.08713,32.4706],[75.09075,32.46926],[75.09268,32.47011],[75.09898,32.47774],[75.10666,32.47406],[75.10874,32.46762],[75.10777,32.46057],[75.11927,32.45422],[75.1186,32.44434],[75.12445,32.43462],[75.1284,32.43352],[75.13323,32.4278],[75.13301,32.42641],[75.12725,32.42551],[75.12663,32.42028],[75.12753,32.41725],[75.13166,32.41447],[75.13142,32.40886],[75.14111,32.41235],[75.15266,32.42108],[75.16012,32.41864],[75.16386,32.42264],[75.17679,32.42137],[75.18033,32.42424],[75.18977,32.42581],[75.192,32.42401],[75.19175,32.42209],[75.19885,32.4216],[75.19958,32.42042],[75.19879,32.41827],[75.2004,32.41379],[75.19916,32.41123],[75.19749,32.40983],[75.19245,32.41012],[75.19241,32.40187],[75.19395,32.40047],[75.20756,32.39469],[75.21187,32.40067],[75.21502,32.40128],[75.22098,32.39821],[75.22294,32.39424],[75.22739,32.39179],[75.22862,32.39286],[75.23082,32.39194],[75.23553,32.38746],[75.24155,32.38518],[75.24482,32.38473],[75.24757,32.38808],[75.25204,32.38958],[75.25594,32.38927],[75.25718,32.38797],[75.25536,32.37684],[75.2571,32.37656],[75.25813,32.37141],[75.26011,32.37033],[75.26503,32.37242],[75.26786,32.37155],[75.2729,32.37512],[75.27538,32.37506],[75.28975,32.36984],[75.28735,32.36068],[75.2883,32.35448],[75.29887,32.35352],[75.29965,32.34645],[75.30216,32.34428],[75.31134,32.3427],[75.32267,32.34353],[75.32683,32.33495],[75.32777,32.32612],[75.33223,32.32668],[75.33543,32.33016],[75.3359,32.33694],[75.33894,32.33564],[75.34072,32.33765],[75.3412,32.34548],[75.34928,32.34526],[75.35574,32.3383],[75.35537,32.3367],[75.36087,32.33492],[75.36348,32.33612],[75.36199,32.3341],[75.36312,32.33294],[75.37068,32.33424],[75.37453,32.33732],[75.37654,32.33431],[75.38029,32.33399],[75.39448,32.32693],[75.39939,32.33002],[75.40219,32.33005],[75.40369,32.32688],[75.40662,32.32889],[75.41051,32.32862],[75.41843,32.32004],[75.43074,32.31506],[75.43161,32.31666],[75.44049,32.31802],[75.44496,32.32121],[75.44813,32.32604],[75.44951,32.32382],[75.4621,32.32706],[75.46778,32.3246],[75.46965,32.32779],[75.46597,32.32917],[75.47187,32.33286],[75.46913,32.33863],[75.47504,32.33993],[75.47505,32.33814],[75.47894,32.33849],[75.48633,32.34197],[75.48649,32.34473],[75.4891,32.34556],[75.49494,32.34113],[75.48807,32.33963],[75.48614,32.33657],[75.48447,32.33758],[75.48151,32.33517],[75.48566,32.32364],[75.48192,32.32029],[75.48639,32.31663],[75.50332,32.31103],[75.50447,32.31269],[75.51153,32.30859],[75.51329,32.30711],[75.50548,32.29669],[75.50393,32.29132],[75.50919,32.28399],[75.51839,32.28165],[75.51866,32.27971],[75.52102,32.2793],[75.52092,32.27724],[75.52618,32.27601],[75.52604,32.27749],[75.53224,32.27783],[75.53683,32.28311],[75.53933,32.29217],[75.53953,32.30022],[75.54221,32.30381],[75.54331,32.3092],[75.54189,32.31559],[75.54284,32.3216],[75.53766,32.3259],[75.53899,32.33423],[75.55033,32.34875],[75.55777,32.35384],[75.55978,32.35698],[75.59531,32.37704],[75.61193,32.37686],[75.63457,32.37991],[75.64652,32.38742],[75.6731,32.39392],[75.67549,32.39386],[75.67981,32.38997],[75.68725,32.39025],[75.70128,32.39944],[75.71134,32.41156],[75.71496,32.40796],[75.72276,32.4056],[75.72269,32.40938],[75.73187,32.42256],[75.73199,32.42499],[75.7275,32.4294],[75.72775,32.43168],[75.72989,32.4329],[75.73815,32.42981],[75.7438,32.4316],[75.74247,32.43363],[75.73714,32.43498],[75.73434,32.43912],[75.7287,32.43911],[75.72661,32.44481],[75.72884,32.44767],[75.72926,32.45267],[75.74151,32.45515],[75.74902,32.45408],[75.75934,32.46052],[75.76273,32.45999],[75.77439,32.46383],[75.80051,32.48513],[75.8136,32.48845],[75.81994,32.49181],[75.8244,32.49593],[75.82632,32.49999],[75.82616,32.50388],[75.83347,32.50346],[75.83425,32.50767],[75.83041,32.51373],[75.83882,32.5137],[75.83669,32.51847],[75.83826,32.52232],[75.85383,32.5277],[75.85564,32.53004],[75.8549,32.5369],[75.87321,32.54947],[75.87333,32.55413],[75.86614,32.56246],[75.86974,32.5661],[75.87771,32.56915],[75.87993,32.57799],[75.87895,32.58698],[75.88404,32.58982],[75.89273,32.58896],[75.89769,32.59066],[75.90503,32.60037],[75.90591,32.60759],[75.91636,32.61443],[75.91858,32.62172],[75.9155,32.62771],[75.91913,32.62969],[75.91863,32.63311],[75.9242,32.63675],[75.92734,32.63133],[75.93071,32.63139],[75.92881,32.63717],[75.93381,32.64265],[75.93323,32.64711],[75.92341,32.64274],[75.92031,32.64289],[75.9188,32.64456],[75.91503,32.6436],[75.91499,32.6531],[75.90626,32.65814],[75.89784,32.65432],[75.89311,32.64861],[75.88677,32.6504],[75.88583,32.65218],[75.89218,32.6588],[75.89307,32.6664],[75.89754,32.66978],[75.89693,32.6721],[75.89883,32.67319],[75.89723,32.67747],[75.89719,32.68552],[75.90046,32.69353],[75.89738,32.69754],[75.90483,32.70889],[75.90695,32.71607],[75.91829,32.72715],[75.91833,32.73482],[75.92297,32.74355],[75.92175,32.74717],[75.90478,32.76478],[75.89795,32.76917],[75.8965,32.77492],[75.88582,32.78225],[75.88421,32.80193],[75.87909,32.81121],[75.86504,32.81338],[75.86563,32.8203],[75.85266,32.83438],[75.84819,32.83648],[75.84608,32.83507],[75.84244,32.83769],[75.84047,32.84343],[75.82988,32.84503],[75.82636,32.85001],[75.81862,32.85273],[75.81693,32.85879],[75.81083,32.86033],[75.80947,32.86931],[75.80598,32.8768],[75.79625,32.88426],[75.81259,32.89311],[75.81715,32.89937],[75.81895,32.90753],[75.82427,32.91131],[75.83073,32.91946],[75.83164,32.92286],[75.83709,32.92777],[75.84519,32.92846],[75.84993,32.9253],[75.85933,32.9254],[75.86565,32.92291],[75.873,32.92385],[75.87679,32.91948],[75.88328,32.91868],[75.88875,32.91454],[75.89914,32.91221],[75.90385,32.91279],[75.91293,32.90671],[75.91886,32.90576],[75.92827,32.88979],[75.94106,32.87828],[75.95011,32.87283],[75.96971,32.88505],[75.97537,32.88648],[75.98124,32.8951],[75.99651,32.89935],[75.99895,32.90204],[76.00234,32.90152],[76.00912,32.9087],[76.02719,32.91571],[76.03314,32.92137],[76.032,32.92691],[76.03436,32.93174],[76.03883,32.93575],[76.06126,32.94095],[76.06831,32.9519],[76.08302,32.95525],[76.08224,32.96157],[76.09218,32.96334],[76.09416,32.96516],[76.10629,32.98688],[76.1038,32.99119],[76.10793,33.0],[76.1072,33.00606],[76.13631,33.00959],[76.16034,33.00663],[76.1679,33.00856],[76.17559,33.01813],[76.18009,33.02054],[76.2035,33.01599],[76.21233,33.01645],[76.22071,33.02288],[76.24277,33.02082],[76.24623,33.02728],[76.25535,33.03405],[76.27291,33.03705],[76.27495,33.04076],[76.27632,33.05105],[76.2897,33.0568],[76.29041,33.05985],[76.28929,33.06794],[76.28366,33.07191],[76.28282,33.07684],[76.28305,33.08636],[76.28848,33.09872],[76.28595,33.10239],[76.30029,33.11235],[76.30522,33.11962],[76.31341,33.12267],[76.31486,33.12505],[76.3263,33.12734],[76.345,33.14364],[76.3621,33.1532],[76.36846,33.15346],[76.37661,33.16533],[76.39089,33.17385],[76.39785,33.18212],[76.4011,33.18289],[76.4039,33.18579],[76.41416,33.18505],[76.42033,33.18766],[76.42826,33.18197],[76.43571,33.18029],[76.44483,33.18147],[76.45437,33.17944],[76.46639,33.18241],[76.47278,33.17976],[76.48064,33.17887],[76.50175,33.18988],[76.50931,33.19584],[76.52288,33.19588],[76.53686,33.20012],[76.54719,33.19855],[76.56165,33.20954],[76.57266,33.20633],[76.58337,33.20662],[76.59112,33.20486],[76.59589,33.20591],[76.59923,33.20307],[76.59718,33.19572],[76.59863,33.19027],[76.60134,33.18861],[76.60626,33.19043],[76.61107,33.18734],[76.61257,33.17338],[76.62543,33.16614],[76.63329,33.16468],[76.63941,33.16166],[76.64444,33.16187],[76.64837,33.164],[76.655,33.16375],[76.66461,33.17128],[76.67166,33.17066],[76.6859,33.17352],[76.69963,33.17317],[76.70726,33.17687],[76.70932,33.1807],[76.71997,33.18168],[76.72895,33.1767],[76.74682,33.17841],[76.74676,33.18308],[76.75018,33.18806],[76.75009,33.19149],[76.75781,33.19539],[76.76624,33.20789],[76.76659,33.21084],[76.77095,33.21304],[76.77161,33.21856],[76.77584,33.22049],[76.77941,33.23812],[76.77312,33.24215],[76.77094,33.24932],[76.75431,33.24868],[76.73705,33.2611],[76.73848,33.26868],[76.7325,33.27554],[76.73271,33.28151],[76.72773,33.28348],[76.72986,33.28871],[76.72847,33.29104],[76.72982,33.29676],[76.73211,33.29933],[76.72865,33.30394],[76.72855,33.30822],[76.72524,33.31134],[76.72588,33.31516],[76.71775,33.32897],[76.71208,33.33108],[76.70408,33.32781],[76.69596,33.32796],[76.68238,33.33677],[76.67388,33.33927],[76.67096,33.34202],[76.67242,33.34916],[76.65929,33.3567],[76.65839,33.36469],[76.65198,33.37044],[76.65148,33.38342],[76.641,33.39098],[76.63647,33.40184],[76.63841,33.40343],[76.63212,33.40919],[76.63612,33.41144],[76.63698,33.41553],[76.62955,33.4239],[76.62896,33.43489],[76.62051,33.43956],[76.61645,33.43992],[76.61327,33.43893],[76.61088,33.4349],[76.60576,33.43167],[76.60021,33.43143],[76.59341,33.42576],[76.58185,33.42579],[76.57795,33.42956],[76.57999,33.43831],[76.57706,33.44335],[76.57654,33.45298],[76.56949,33.46617],[76.56342,33.46252],[76.55764,33.46203],[76.55409,33.46411],[76.54964,33.46405],[76.54548,33.46873],[76.54091,33.47068],[76.53477,33.48219],[76.52784,33.48349],[76.52291,33.49338],[76.51442,33.49514],[76.5078,33.49957],[76.5067,33.50998],[76.50205,33.51598],[76.49927,33.51742],[76.49188,33.51691],[76.47908,33.52683],[76.46995,33.52768],[76.45916,33.53389],[76.45849,33.53852],[76.46467,33.54523],[76.4624,33.55162],[76.45783,33.55428],[76.44879,33.56368],[76.44685,33.56401],[76.44338,33.55979],[76.43996,33.54742],[76.43588,33.54219],[76.4264,33.53728],[76.4152,33.53908],[76.41024,33.54313],[76.37992,33.55292],[76.37928,33.55821],[76.37475,33.56588],[76.38073,33.57695],[76.36646,33.58575],[76.36004,33.59454],[76.35865,33.60369],[76.34692,33.60494],[76.33624,33.61051],[76.3295,33.60427],[76.32218,33.60227],[76.31744,33.60718],[76.30651,33.60956],[76.2996,33.59824],[76.30182,33.58976],[76.31014,33.57861],[76.30978,33.57146],[76.30234,33.56736],[76.27787,33.56752],[76.25965,33.56502],[76.24574,33.54554],[76.24123,33.54831],[76.23192,33.54519],[76.22503,33.54759],[76.21977,33.55532],[76.20914,33.56646],[76.20549,33.56771],[76.20544,33.5692],[76.20648,33.57328],[76.21787,33.57366],[76.22522,33.57728],[76.2314,33.58695],[76.22792,33.5941],[76.22412,33.59684],[76.22422,33.60031],[76.23071,33.60304],[76.23865,33.60244],[76.24034,33.60485],[76.24096,33.60959],[76.23723,33.61759],[76.23281,33.62316],[76.22778,33.62563],[76.22937,33.62983],[76.24891,33.63864],[76.25304,33.63808],[76.26556,33.64351],[76.27048,33.64331],[76.27412,33.65232],[76.28005,33.65469],[76.28465,33.66184],[76.27352,33.66935],[76.2705,33.67559],[76.26621,33.67953],[76.2696,33.6851],[76.26472,33.68942],[76.26569,33.69743],[76.26311,33.70305],[76.26618,33.70694],[76.26324,33.71209],[76.26713,33.71709],[76.26741,33.72468],[76.27117,33.73075],[76.26578,33.73378],[76.26726,33.74038],[76.26547,33.74638],[76.26021,33.75],[76.25002,33.75246],[76.24786,33.75456],[76.24708,33.75853],[76.23611,33.75987],[76.21885,33.75873],[76.21258,33.76118],[76.2108,33.77119],[76.20036,33.77564],[76.19867,33.78723],[76.18474,33.80015],[76.16725,33.79782],[76.16138,33.80185],[76.15975,33.80847],[76.16324,33.81741],[76.16598,33.81935],[76.16264,33.8212],[76.15687,33.82999],[76.15998,33.83692],[76.15425,33.8406],[76.1554,33.84725],[76.14908,33.85015],[76.14951,33.85362],[76.14255,33.86646],[76.13754,33.87008],[76.13847,33.87242],[76.13668,33.8786],[76.12501,33.88528],[76.12296,33.88905],[76.1179,33.88872],[76.10725,33.89185],[76.10024,33.89626],[76.0969,33.90041],[76.09191,33.90243],[76.08258,33.90348],[76.07008,33.90887],[76.04776,33.91242],[76.03804,33.91887],[76.03257,33.91966],[76.03389,33.92417],[76.04137,33.92529],[76.04898,33.93149],[76.04947,33.93386],[76.04826,33.94036],[76.04292,33.95255],[76.02654,33.97163],[76.02436,33.98212],[76.01795,33.97507],[76.01219,33.97439],[76.00542,33.97674],[75.99053,33.97239],[75.9782,33.97219],[75.97271,33.96252],[75.96883,33.96016],[75.96654,33.95452],[75.9587,33.95685],[75.9496,33.95589],[75.94286,33.96046],[75.91745,33.96295],[75.90854,33.96888],[75.89856,33.96744],[75.8932,33.96909],[75.88672,33.96827],[75.87356,33.96205],[75.85249,33.96225],[75.84525,33.95447],[75.83824,33.95496],[75.83065,33.95874],[75.82212,33.96558],[75.81963,33.97221],[75.8256,33.97781],[75.83024,33.9924],[75.84161,33.99957],[75.84371,34.00324],[75.84306,34.00478],[75.8358,34.00714],[75.82783,34.00626],[75.81827,34.00751],[75.81429,34.01451],[75.79984,34.02298],[75.79754,34.02598],[75.79694,34.03045],[75.78671,34.0312],[75.7797,34.03762],[75.76919,34.04128],[75.76769,34.04381],[75.76852,34.05492],[75.75517,34.05674],[75.75,34.05485],[75.74148,34.05616],[75.73703,34.05891],[75.74254,34.07326],[75.73475,34.07895],[75.73337,34.08411],[75.7251,34.08966],[75.72148,34.0944],[75.7188,34.10325],[75.70774,34.10724],[75.69684,34.11343],[75.68736,34.11605],[75.68563,34.12091],[75.69125,34.12761],[75.68316,34.13243],[75.68229,34.13556],[75.68571,34.14216],[75.68235,34.14404],[75.67361,34.14516],[75.66795,34.14429],[75.67016,34.14998],[75.67814,34.15378],[75.68005,34.16246],[75.68448,34.16678],[75.68278,34.17059],[75.68411,34.17802],[75.68805,34.18486],[75.6873,34.18694],[75.69072,34.19527],[75.68529,34.19956],[75.68054,34.20096],[75.67075,34.19803],[75.66242,34.19913],[75.65739,34.20294],[75.6549,34.20796],[75.64812,34.212],[75.63701,34.20979],[75.62607,34.20131],[75.62179,34.20179],[75.6046,34.19519],[75.59336,34.19769],[75.57993,34.21397],[75.57026,34.21137],[75.55533,34.21141],[75.53824,34.22308],[75.53427,34.22366],[75.52973,34.22683],[75.52313,34.229],[75.51459,34.22671],[75.5029,34.23435],[75.49536,34.2324],[75.49696,34.23764],[75.4959,34.24097],[75.48858,34.24662],[75.48238,34.25506],[75.48379,34.2587],[75.48105,34.2624],[75.48295,34.26904],[75.48217,34.27165],[75.47485,34.27759],[75.47011,34.27939],[75.45918,34.27942],[75.45362,34.28592],[75.44424,34.28033],[75.43949,34.27949],[75.43737,34.28248],[75.43087,34.28357],[75.42612,34.28219],[75.42263,34.2839],[75.41922,34.28189],[75.41089,34.28469],[75.4035,34.28469],[75.39284,34.29708],[75.38892,34.30548],[75.39027,34.31103],[75.39605,34.31672],[75.38467,34.32824],[75.38398,34.33672],[75.37602,34.34195],[75.38577,34.34989],[75.38476,34.35402],[75.38051,34.3583],[75.38571,34.36614],[75.37338,34.3715],[75.37676,34.37567],[75.37878,34.38206],[75.37795,34.38511],[75.37714,34.38714],[75.36697,34.39103],[75.3666,34.39774],[75.36963,34.40176],[75.37234,34.4126],[75.36512,34.41848],[75.35738,34.418],[75.3538,34.42456],[75.3351,34.42927],[75.3342,34.43324],[75.3297,34.43623],[75.32754,34.43977],[75.33317,34.44295],[75.33291,34.44709],[75.33049,34.4503],[75.3326,34.45193],[75.33723,34.45167],[75.34016,34.46056],[75.34905,34.46346],[75.35324,34.46879],[75.34965,34.4753],[75.35024,34.48014],[75.34459,34.48505],[75.34292,34.48944],[75.34733,34.49556],[75.34738,34.5027],[75.35293,34.51759],[75.3572,34.52129],[75.36612,34.52145],[75.36418,34.52899],[75.36557,34.5381],[75.36111,34.54017],[75.36176,34.54209],[75.35562,34.54687],[75.35267,34.55315],[75.34416,34.56303],[75.3379,34.56474],[75.33366,34.56801],[75.32853,34.56879],[75.3199,34.56484],[75.31504,34.56965],[75.31181,34.57686],[75.30636,34.57875],[75.29956,34.58694],[75.28971,34.58917],[75.28637,34.59543],[75.27799,34.59439],[75.26912,34.59792],[75.26553,34.60226],[75.25337,34.60413],[75.25326,34.6075],[75.25834,34.61459],[75.25664,34.62151],[75.25407,34.62828],[75.2415,34.63778],[75.23288,34.63616],[75.22993,34.63303],[75.22533,34.63463],[75.22062,34.63383],[75.21272,34.63812],[75.20807,34.63868],[75.20603,34.64378],[75.20948,34.64767],[75.21818,34.6516],[75.20446,34.6535],[75.20791,34.66542],[75.23207,34.69082],[75.25827,34.69757],[75.2543,34.72169],[75.26256,34.73168],[75.26357,34.74458],[75.25093,34.74986],[75.25625,34.77389],[75.23966,34.80183],[75.22324,34.81752],[75.19062,34.83493],[75.17257,34.84267],[75.15809,34.84548],[75.14423,34.85028],[75.14197,34.87495],[75.1013,34.9191],[75.07164,34.9192],[75.06412,34.90524],[75.06362,34.87081],[75.06528,34.85749],[75.06403,34.84711],[75.05712,34.84234],[75.04376,34.84336],[75.0311,34.84843],[75.01634,34.84825],[74.95674,34.80813],[74.95063,34.80174],[74.92982,34.78697],[74.9186,34.78511],[74.90731,34.79253],[74.90145,34.80165],[74.89857,34.80972],[74.88707,34.82228],[74.87215,34.83019],[74.86104,34.82833],[74.85322,34.8311],[74.83969,34.84074],[74.82325,34.83736],[74.81329,34.84362],[74.80757,34.85048],[74.79846,34.85207],[74.78785,34.85246],[74.77694,34.84077],[74.76276,34.84408],[74.75017,34.84499],[74.74026,34.84836],[74.73948,34.85411],[74.72944,34.86325],[74.71669,34.86649],[74.71145,34.88092],[74.70167,34.88303],[74.69822,34.88072],[74.68415,34.8788],[74.66409,34.9004],[74.66253,34.90677],[74.6464,34.90364],[74.63434,34.90986],[74.62008,34.92063],[74.60423,34.9248],[74.59653,34.9218],[74.59032,34.91584],[74.57701,34.91392],[74.56975,34.96228],[74.57053,34.97563],[74.5763,34.98654],[74.58502,34.99794],[74.58778,35.00636],[74.58509,35.01812],[74.57837,35.02432],[74.56047,35.02602],[74.55552,35.03135],[74.53073,35.04618],[74.52907,35.05129],[74.53007,35.06013],[74.53885,35.06856],[74.5398,35.07498]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-KA","area_level":"State","area_name":"Karnataka","geometry_source":"SOI_States","same_as":"LGD/29/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.24167,14.71151],[74.24139,14.71177],[74.24109,14.71192],[74.24085,14.71198],[74.24049,14.7119],[74.2401,14.71175],[74.23955,14.71164],[74.23928,14.71146],[74.23896,14.71136],[74.23863,14.71137],[74.23848,14.71126],[74.2384,14.71102],[74.23765,14.71002],[74.23759,14.70964],[74.23772,14.70927],[74.23814,14.70901],[74.2385,14.70892],[74.23889,14.70875],[74.23961,14.70871],[74.24013,14.70873],[74.24038,14.70897],[74.24051,14.70963],[74.24077,14.70985],[74.24118,14.70996],[74.24149,14.71017],[74.2417,14.7107],[74.2418,14.71116],[74.24167,14.71151]]],[[[74.15677,14.73679],[74.15702,14.73708],[74.15728,14.73751],[74.15754,14.73777],[74.15803,14.73812],[74.15813,14.73838],[74.15808,14.73873],[74.15779,14.7391],[74.15722,14.73934],[74.15671,14.73972],[74.15624,14.74037],[74.15532,14.74122],[74.15424,14.74207],[74.15388,14.74224],[74.15356,14.74228],[74.15339,14.74221],[74.15319,14.74193],[74.15293,14.74123],[74.1524,14.74034],[74.15239,14.74002],[74.15266,14.7398],[74.15353,14.73962],[74.15435,14.73907],[74.155,14.73877],[74.15548,14.73847],[74.15573,14.73814],[74.1558,14.73761],[74.15596,14.73717],[74.15626,14.73686],[74.15661,14.73675],[74.15677,14.73679]]],[[[74.11312,14.75812],[74.11269,14.75857],[74.11213,14.75895],[74.11155,14.75959],[74.11122,14.76013],[74.11116,14.76041],[74.11152,14.76136],[74.11131,14.76168],[74.11091,14.76188],[74.11037,14.76196],[74.10983,14.76186],[74.1093,14.7615],[74.10858,14.76008],[74.10807,14.75963],[74.10786,14.75875],[74.10817,14.75775],[74.10847,14.75752],[74.109,14.75757],[74.10955,14.75744],[74.10989,14.75715],[74.11049,14.75644],[74.1105,14.75613],[74.1097,14.75537],[74.10949,14.75494],[74.10943,14.7545],[74.10954,14.7541],[74.10967,14.75393],[74.11006,14.7539],[74.11048,14.75448],[74.11056,14.75491],[74.11082,14.75524],[74.11138,14.75536],[74.11187,14.75528],[74.11272,14.75474],[74.11312,14.75463],[74.11355,14.75439],[74.11412,14.75428],[74.11469,14.75441],[74.11506,14.7543],[74.11553,14.75428],[74.11574,14.75435],[74.11607,14.75428],[74.11614,14.754],[74.11648,14.75385],[74.11685,14.75383],[74.11719,14.75337],[74.11742,14.75335],[74.11759,14.75347],[74.11757,14.7537],[74.11767,14.75379],[74.11799,14.75375],[74.1183,14.75354],[74.11853,14.75318],[74.11924,14.75282],[74.1195,14.75279],[74.1195,14.75311],[74.11966,14.75334],[74.11969,14.75394],[74.11937,14.75478],[74.11905,14.7552],[74.11842,14.75546],[74.11803,14.75546],[74.11762,14.75575],[74.11718,14.75574],[74.11672,14.75555],[74.11614,14.75567],[74.11485,14.75674],[74.11363,14.75744],[74.11312,14.75812]]],[[[74.08897,14.79371],[74.08906,14.79407],[74.08903,14.79458],[74.08895,14.79478],[74.08904,14.79498],[74.08916,14.79529],[74.08898,14.7955],[74.08725,14.79635],[74.08657,14.79651],[74.08614,14.79649],[74.08599,14.79636],[74.08592,14.79614],[74.08596,14.79593],[74.08639,14.79528],[74.08663,14.79503],[74.08681,14.79488],[74.08704,14.79477],[74.0872,14.79461],[74.08729,14.79447],[74.08727,14.79426],[74.08718,14.79406],[74.08716,14.7939],[74.08717,14.79377],[74.08722,14.79368],[74.08736,14.79356],[74.08754,14.79353],[74.08773,14.79361],[74.08799,14.79359],[74.08813,14.79349],[74.08846,14.79345],[74.08866,14.79346],[74.08878,14.7935],[74.08897,14.79371]]],[[[74.05628,14.81716],[74.05617,14.81725],[74.05596,14.81728],[74.05572,14.81727],[74.05553,14.81716],[74.05523,14.81704],[74.0549,14.81697],[74.05463,14.81697],[74.05432,14.8169],[74.05401,14.81662],[74.05399,14.81634],[74.05402,14.81623],[74.05412,14.81611],[74.05428,14.81601],[74.05446,14.81595],[74.05462,14.81595],[74.05484,14.81606],[74.05501,14.81629],[74.05514,14.81642],[74.05528,14.81647],[74.05547,14.81644],[74.0557,14.8162],[74.05598,14.81608],[74.05628,14.81603],[74.05642,14.81595],[74.05671,14.81552],[74.05713,14.81533],[74.05735,14.8154],[74.05743,14.81552],[74.05733,14.81573],[74.05711,14.81594],[74.05695,14.8162],[74.0569,14.81637],[74.05675,14.81659],[74.05656,14.81674],[74.05637,14.81697],[74.05628,14.81716]]],[[[74.06479,14.81961],[74.06501,14.81975],[74.06545,14.8198],[74.06568,14.8199],[74.06575,14.8201],[74.06565,14.82035],[74.06498,14.82085],[74.06417,14.82134],[74.06392,14.82143],[74.06367,14.82145],[74.06323,14.82136],[74.06308,14.82127],[74.06297,14.82116],[74.06261,14.82113],[74.06229,14.82108],[74.06209,14.82091],[74.06207,14.82075],[74.06211,14.82061],[74.06242,14.82026],[74.06241,14.82011],[74.06228,14.81981],[74.06223,14.81963],[74.06227,14.81952],[74.06266,14.81929],[74.06313,14.81928],[74.06358,14.81943],[74.06387,14.81947],[74.06428,14.8194],[74.06449,14.81946],[74.06479,14.81961]]],[[[74.05905,14.82146],[74.05892,14.82154],[74.05876,14.82175],[74.05861,14.82206],[74.05845,14.8222],[74.05825,14.82223],[74.05806,14.82216],[74.05794,14.82204],[74.05792,14.82184],[74.05802,14.82158],[74.05834,14.82127],[74.05835,14.82119],[74.05814,14.821],[74.05792,14.82059],[74.0579,14.82045],[74.05769,14.82052],[74.05746,14.82066],[74.05721,14.82066],[74.057,14.82058],[74.05676,14.82057],[74.05658,14.82047],[74.05658,14.81979],[74.05672,14.81942],[74.05711,14.81893],[74.05737,14.8188],[74.0576,14.81874],[74.05784,14.81874],[74.05802,14.81886],[74.0581,14.81902],[74.05816,14.8196],[74.05821,14.81964],[74.05845,14.81972],[74.0588,14.81974],[74.05894,14.8196],[74.05912,14.81951],[74.05927,14.81945],[74.05952,14.81948],[74.05965,14.81952],[74.06005,14.8198],[74.06019,14.81981],[74.06048,14.81965],[74.06102,14.81967],[74.0613,14.81978],[74.0615,14.82001],[74.06166,14.82022],[74.06176,14.82051],[74.0618,14.82076],[74.06182,14.82106],[74.0618,14.82132],[74.06166,14.82156],[74.06145,14.82166],[74.06105,14.82171],[74.06049,14.82159],[74.06036,14.82162],[74.06009,14.82176],[74.05988,14.82175],[74.05931,14.82143],[74.05905,14.82146]]],[[[74.09364,14.83582],[74.0938,14.83595],[74.09393,14.8361],[74.09407,14.83629],[74.09415,14.83648],[74.09424,14.8366],[74.0943,14.83663],[74.0947,14.83667],[74.09485,14.83676],[74.09522,14.83708],[74.09557,14.83723],[74.0957,14.83725],[74.09578,14.83731],[74.09585,14.83739],[74.09586,14.83756],[74.09582,14.83783],[74.09568,14.83808],[74.0955,14.83818],[74.09523,14.83827],[74.09512,14.83828],[74.09501,14.83834],[74.09485,14.83846],[74.0947,14.83852],[74.09428,14.83863],[74.09409,14.83873],[74.09389,14.83881],[74.0937,14.83883],[74.09358,14.83879],[74.09345,14.83868],[74.09306,14.8381],[74.09299,14.83791],[74.09287,14.83775],[74.09274,14.83765],[74.09262,14.83724],[74.09254,14.83715],[74.09253,14.8369],[74.09261,14.83676],[74.09283,14.83656],[74.09289,14.83633],[74.09287,14.83615],[74.0929,14.83605],[74.09297,14.83598],[74.09309,14.83588],[74.09328,14.83583],[74.09344,14.83581],[74.09364,14.83582]]],[[[74.10004,14.84466],[74.0997,14.84468],[74.09943,14.84488],[74.09867,14.84521],[74.09838,14.84579],[74.09797,14.84607],[74.09732,14.84639],[74.09709,14.84642],[74.09668,14.84628],[74.09632,14.846],[74.09614,14.84576],[74.09617,14.84558],[74.09639,14.84532],[74.09641,14.84509],[74.09635,14.84489],[74.09638,14.84476],[74.09659,14.84459],[74.09678,14.84429],[74.09665,14.84395],[74.09659,14.84363],[74.0966,14.84325],[74.09676,14.84297],[74.09687,14.84287],[74.09712,14.84278],[74.09737,14.84233],[74.0978,14.84213],[74.09812,14.84207],[74.09869,14.84175],[74.09891,14.84173],[74.09915,14.8418],[74.09949,14.84205],[74.09968,14.84198],[74.09996,14.84174],[74.10009,14.84136],[74.10022,14.84124],[74.10053,14.84116],[74.10074,14.84118],[74.10096,14.84132],[74.10108,14.84151],[74.10085,14.84189],[74.10082,14.84216],[74.10115,14.84248],[74.10122,14.84274],[74.10137,14.84296],[74.1017,14.84311],[74.10187,14.84326],[74.10192,14.84352],[74.1019,14.84369],[74.10163,14.844],[74.10151,14.84419],[74.10142,14.84454],[74.10134,14.84476],[74.10126,14.84483],[74.10103,14.84485],[74.10067,14.84471],[74.10034,14.84465],[74.10004,14.84466]]],[[[74.10782,14.86535],[74.10775,14.86555],[74.10756,14.86571],[74.10703,14.86571],[74.10647,14.86561],[74.10635,14.86551],[74.10628,14.86541],[74.10627,14.86528],[74.1063,14.8651],[74.10642,14.86491],[74.10661,14.86484],[74.10672,14.86486],[74.10677,14.86501],[74.10679,14.86514],[74.10689,14.86516],[74.10705,14.86516],[74.10723,14.86517],[74.10763,14.86513],[74.10775,14.86519],[74.10782,14.86535]]],[[[74.2913,15.83217],[74.27833,15.82929],[74.26171,15.82967],[74.26157,15.82848],[74.26368,15.82433],[74.26896,15.81659],[74.26838,15.81449],[74.26665,15.81209],[74.26619,15.80978],[74.26634,15.80573],[74.26704,15.80386],[74.2668,15.80251],[74.26787,15.80119],[74.26794,15.80027],[74.26647,15.7978],[74.27094,15.79508],[74.27239,15.79642],[74.27486,15.79609],[74.27548,15.79498],[74.27711,15.79425],[74.27796,15.79291],[74.28078,15.79073],[74.28349,15.79022],[74.28485,15.78923],[74.28544,15.78794],[74.28982,15.78773],[74.29013,15.78837],[74.28936,15.78962],[74.28915,15.79142],[74.28962,15.79221],[74.2933,15.79527],[74.29673,15.79414],[74.29787,15.79097],[74.29993,15.79003],[74.30035,15.78919],[74.3014,15.7885],[74.30177,15.78752],[74.30234,15.78746],[74.30301,15.78822],[74.30566,15.78925],[74.30579,15.79008],[74.307,15.7907],[74.30944,15.79118],[74.31029,15.79247],[74.31176,15.79326],[74.31171,15.79412],[74.31243,15.79449],[74.31341,15.79643],[74.31276,15.7976],[74.31291,15.7982],[74.31206,15.79928],[74.31124,15.79938],[74.31007,15.80146],[74.30928,15.80155],[74.3063,15.80342],[74.30455,15.80495],[74.30337,15.80666],[74.30346,15.80721],[74.30047,15.81402],[74.2913,15.83217]]],[[[77.3323,18.45086],[77.3269,18.45175],[77.32642,18.45885],[77.31989,18.45803],[77.31688,18.44799],[77.31685,18.44225],[77.30066,18.43818],[77.30032,18.43639],[77.28717,18.43057],[77.27904,18.4298],[77.27325,18.42302],[77.26565,18.42234],[77.25937,18.41326],[77.24177,18.41261],[77.23476,18.39676],[77.23369,18.3882],[77.23946,18.37861],[77.24842,18.37606],[77.24639,18.37077],[77.23399,18.3698],[77.22583,18.36522],[77.22448,18.35597],[77.22009,18.34927],[77.22958,18.34821],[77.22277,18.33975],[77.21907,18.32573],[77.21478,18.32324],[77.21179,18.31628],[77.20167,18.32217],[77.19871,18.31545],[77.20311,18.30542],[77.20293,18.29773],[77.20555,18.2941],[77.20985,18.29497],[77.20936,18.28772],[77.21301,18.28032],[77.20377,18.28006],[77.19747,18.27661],[77.19541,18.27981],[77.18821,18.28474],[77.17481,18.28486],[77.17073,18.2767],[77.16903,18.26583],[77.17041,18.26431],[77.16975,18.26087],[77.15913,18.25579],[77.15177,18.23802],[77.14863,18.23905],[77.14923,18.2214],[77.15071,18.22216],[77.15152,18.21704],[77.1427,18.21704],[77.14014,18.20772],[77.13464,18.20721],[77.13374,18.20586],[77.12728,18.20767],[77.11129,18.20424],[77.0976,18.19672],[77.09912,18.19199],[77.11634,18.17102],[77.11672,18.16618],[77.11154,18.15583],[77.1069,18.15516],[77.10324,18.15783],[77.09948,18.15819],[77.09132,18.15584],[77.08485,18.15079],[77.06396,18.15065],[77.05865,18.15661],[77.0532,18.15945],[77.05198,18.17323],[77.03318,18.18199],[77.03173,18.17743],[77.02308,18.17565],[77.02565,18.16175],[77.0233,18.15851],[77.00111,18.1609],[77.00179,18.16235],[76.99641,18.1662],[76.9932,18.17581],[76.99401,18.18054],[76.99056,18.18576],[76.99061,18.18999],[76.9784,18.19198],[76.97742,18.18887],[76.9658,18.19007],[76.95193,18.1881],[76.94845,18.16876],[76.94768,18.16641],[76.94608,18.16663],[76.94236,18.15641],[76.93148,18.15965],[76.92396,18.14663],[76.92448,18.14274],[76.9318,18.13353],[76.92025,18.12507],[76.9205,18.11818],[76.92171,18.11555],[76.92486,18.11631],[76.93292,18.11283],[76.93774,18.11491],[76.95427,18.11054],[76.95872,18.10412],[76.96635,18.0982],[76.96493,18.09173],[76.96294,18.08957],[76.94521,18.0832],[76.95144,18.06566],[76.95162,18.06105],[76.95106,18.05776],[76.9449,18.04836],[76.94836,18.0444],[76.95269,18.04394],[76.95231,18.04022],[76.93662,18.03686],[76.91432,18.03536],[76.9123,18.01734],[76.91094,18.01496],[76.90763,18.01422],[76.90564,18.00971],[76.90603,18.00232],[76.90807,17.99952],[76.90671,17.99659],[76.91314,17.99689],[76.91367,17.99322],[76.91226,17.97805],[76.91444,17.96156],[76.91539,17.95711],[76.9183,17.95602],[76.91729,17.94806],[76.92067,17.94157],[76.91898,17.91595],[76.91474,17.91481],[76.90126,17.91724],[76.89899,17.90907],[76.89689,17.91037],[76.89655,17.90575],[76.89384,17.90607],[76.89504,17.90275],[76.89419,17.89983],[76.88849,17.89794],[76.88399,17.89898],[76.88427,17.89429],[76.88139,17.89556],[76.87917,17.89452],[76.87266,17.89808],[76.85264,17.90072],[76.83972,17.89937],[76.83192,17.89526],[76.8312,17.88562],[76.81022,17.88704],[76.80768,17.87802],[76.80819,17.87098],[76.80667,17.87058],[76.79878,17.87154],[76.78839,17.87579],[76.77505,17.87771],[76.77357,17.89046],[76.76816,17.90115],[76.75713,17.89917],[76.73997,17.8997],[76.74125,17.8954],[76.73884,17.8831],[76.73848,17.85668],[76.75149,17.85813],[76.75922,17.85588],[76.7656,17.85128],[76.7675,17.85213],[76.77407,17.84638],[76.77422,17.84197],[76.77931,17.83628],[76.787,17.8332],[76.79039,17.82633],[76.78286,17.81792],[76.78151,17.80939],[76.78259,17.80664],[76.77873,17.80048],[76.77544,17.79829],[76.76651,17.79847],[76.7659,17.79224],[76.76446,17.78896],[76.7621,17.78878],[76.76204,17.78702],[76.75091,17.78705],[76.75074,17.78455],[76.74253,17.78422],[76.74434,17.78034],[76.74065,17.77946],[76.72987,17.78274],[76.73016,17.78385],[76.72094,17.78806],[76.71409,17.78094],[76.71191,17.77327],[76.72107,17.7695],[76.71879,17.75148],[76.72481,17.7511],[76.72404,17.74796],[76.72827,17.73756],[76.69965,17.72725],[76.70433,17.72301],[76.70365,17.71562],[76.70131,17.70907],[76.69254,17.70672],[76.69214,17.70078],[76.69418,17.69568],[76.69083,17.68575],[76.69084,17.681],[76.68738,17.68005],[76.68436,17.68589],[76.67972,17.68635],[76.67492,17.68999],[76.67076,17.69053],[76.66419,17.68756],[76.65973,17.70828],[76.6556,17.71785],[76.65279,17.72213],[76.63326,17.72822],[76.6281,17.75065],[76.63188,17.75464],[76.62243,17.7605],[76.61533,17.7704],[76.61104,17.76936],[76.60696,17.75936],[76.6053,17.75865],[76.59979,17.73271],[76.60108,17.72586],[76.59438,17.72245],[76.58834,17.70758],[76.5822,17.70527],[76.5703,17.70541],[76.5678,17.74248],[76.56396,17.75083],[76.57271,17.76054],[76.56126,17.76462],[76.53069,17.75826],[76.52328,17.7598],[76.52736,17.73784],[76.5239,17.71515],[76.51173,17.71797],[76.50069,17.71842],[76.48723,17.71476],[76.48449,17.67851],[76.48502,17.67098],[76.48975,17.6605],[76.48667,17.65841],[76.45892,17.65812],[76.45286,17.65579],[76.45448,17.64979],[76.44184,17.64931],[76.445,17.64095],[76.43539,17.64626],[76.42919,17.64495],[76.42724,17.63959],[76.42849,17.63379],[76.42679,17.62581],[76.41929,17.60623],[76.41968,17.60371],[76.39305,17.60315],[76.39186,17.60065],[76.3817,17.60225],[76.37764,17.59787],[76.35003,17.5941],[76.33674,17.5973],[76.33156,17.59598],[76.33129,17.59742],[76.33313,17.56499],[76.33503,17.56518],[76.33853,17.5568],[76.34069,17.54247],[76.34875,17.53943],[76.36274,17.53737],[76.36722,17.51945],[76.3646,17.51497],[76.34657,17.51258],[76.34333,17.50066],[76.34576,17.49253],[76.36231,17.49592],[76.37469,17.49565],[76.37552,17.49022],[76.36824,17.4832],[76.35036,17.47417],[76.33321,17.47176],[76.33069,17.47019],[76.33095,17.45567],[76.33343,17.45548],[76.33326,17.4339],[76.35348,17.4373],[76.37151,17.43642],[76.37,17.41694],[76.37107,17.41343],[76.36343,17.37767],[76.38298,17.37397],[76.40912,17.37139],[76.41219,17.35107],[76.40316,17.34997],[76.39661,17.3471],[76.3851,17.32376],[76.38316,17.31453],[76.35401,17.31432],[76.35429,17.3244],[76.34703,17.3442],[76.3453,17.35445],[76.33803,17.35411],[76.3292,17.35081],[76.31434,17.34839],[76.31203,17.34601],[76.31886,17.33814],[76.31766,17.33238],[76.27636,17.33457],[76.27201,17.36059],[76.27004,17.36051],[76.26702,17.36348],[76.26504,17.36171],[76.25073,17.36043],[76.24905,17.36659],[76.25043,17.36968],[76.24458,17.37154],[76.24413,17.37879],[76.24209,17.37884],[76.22853,17.37584],[76.22944,17.36521],[76.21236,17.36199],[76.19639,17.36367],[76.18042,17.35839],[76.17031,17.35262],[76.17264,17.33629],[76.17658,17.32461],[76.17926,17.31857],[76.18325,17.31943],[76.18107,17.30905],[76.17632,17.30079],[76.16508,17.30334],[76.16262,17.34522],[76.14105,17.35349],[76.133,17.35832],[76.11895,17.3705],[76.11299,17.36752],[76.09974,17.36465],[76.08938,17.35313],[76.09347,17.34935],[76.08812,17.34217],[76.0875,17.33651],[76.07913,17.3316],[76.0734,17.33651],[76.07214,17.33531],[76.06463,17.35121],[76.06054,17.35531],[76.05277,17.35579],[76.03775,17.35188],[76.02853,17.35114],[76.01433,17.35353],[76.01019,17.35238],[75.99827,17.33797],[75.9839,17.33622],[75.96871,17.33647],[75.93082,17.32257],[75.9251,17.32575],[75.91008,17.34452],[75.8945,17.35083],[75.89058,17.35652],[75.89018,17.36117],[75.89524,17.37818],[75.89406,17.4012],[75.8919,17.40755],[75.88419,17.41796],[75.87848,17.41813],[75.87651,17.41614],[75.87452,17.41236],[75.8752,17.39809],[75.86088,17.38559],[75.85641,17.38943],[75.85406,17.40449],[75.85108,17.41053],[75.83026,17.42181],[75.82144,17.42122],[75.81898,17.4181],[75.81832,17.40662],[75.81358,17.39572],[75.8151,17.37847],[75.81366,17.37276],[75.80608,17.36802],[75.79294,17.3697],[75.78028,17.37564],[75.77203,17.38574],[75.7679,17.40235],[75.76587,17.4053],[75.75309,17.40713],[75.73359,17.42009],[75.72807,17.41942],[75.71998,17.41152],[75.71244,17.40793],[75.7045,17.40748],[75.69073,17.40947],[75.6835,17.41692],[75.67809,17.43406],[75.6785,17.45109],[75.67588,17.45594],[75.66895,17.45859],[75.65884,17.45806],[75.64879,17.47033],[75.63298,17.47721],[75.62744,17.4625],[75.62161,17.45925],[75.61545,17.43885],[75.61335,17.42474],[75.60958,17.42374],[75.6066,17.42037],[75.61208,17.4074],[75.61352,17.39192],[75.60612,17.39448],[75.60108,17.39031],[75.5936,17.3873],[75.57414,17.3833],[75.57718,17.37591],[75.58085,17.35122],[75.58629,17.35059],[75.59514,17.34621],[75.61003,17.34504],[75.61057,17.33687],[75.61235,17.33689],[75.61209,17.32514],[75.60373,17.3055],[75.62241,17.2951],[75.62547,17.28532],[75.63022,17.28084],[75.62785,17.27434],[75.65417,17.27382],[75.65772,17.26321],[75.65856,17.23867],[75.66191,17.21458],[75.65539,17.20553],[75.64259,17.19765],[75.63985,17.19432],[75.63993,17.18887],[75.62843,17.18866],[75.62886,17.1834],[75.62723,17.18316],[75.62538,17.174],[75.62826,17.16269],[75.6452,17.14421],[75.64757,17.13451],[75.64953,17.13438],[75.65035,17.11569],[75.67229,17.116],[75.67234,17.1014],[75.67579,17.09529],[75.67337,17.0912],[75.67874,17.07715],[75.67672,17.06542],[75.6604,17.0645],[75.65031,17.05726],[75.641,17.03758],[75.64999,17.03224],[75.66969,17.03816],[75.66909,17.00957],[75.66723,17.00576],[75.66572,16.99375],[75.66608,16.97977],[75.66882,16.97983],[75.67184,16.97593],[75.67255,16.97013],[75.67708,16.969],[75.67513,16.96555],[75.67032,16.96205],[75.6554,16.96153],[75.64893,16.95899],[75.64668,16.95469],[75.64476,16.95408],[75.63821,16.95775],[75.63693,16.96854],[75.63393,16.97026],[75.60786,16.971],[75.60824,16.98165],[75.60613,16.99436],[75.60689,17.00457],[75.5731,17.00961],[75.56722,17.00905],[75.56609,16.98138],[75.56765,16.96575],[75.56413,16.96791],[75.53917,16.96548],[75.52931,16.9694],[75.50966,16.95025],[75.50736,16.95083],[75.48908,16.94442],[75.48917,16.95911],[75.48324,16.97599],[75.47856,16.97857],[75.46889,16.97954],[75.46618,16.98131],[75.46555,16.98837],[75.4416,16.98223],[75.43536,16.97345],[75.42788,16.96649],[75.41151,16.97425],[75.39214,16.98009],[75.36854,16.97195],[75.36113,16.96557],[75.35839,16.9649],[75.35853,16.96286],[75.35005,16.95782],[75.32555,16.95582],[75.2796,16.95656],[75.281,16.95305],[75.27938,16.92333],[75.2829,16.90972],[75.28994,16.90403],[75.28203,16.88029],[75.27299,16.8692],[75.26472,16.8628],[75.23766,16.86794],[75.22764,16.84318],[75.2142,16.8417],[75.18185,16.8434],[75.18899,16.87528],[75.17658,16.86771],[75.15555,16.86856],[75.13648,16.87449],[75.13246,16.88942],[75.13484,16.8947],[75.12032,16.90253],[75.11748,16.91344],[75.09631,16.91374],[75.0918,16.92605],[75.09214,16.94011],[75.08933,16.95158],[75.08508,16.95157],[75.07812,16.94883],[75.07435,16.95002],[75.07259,16.94665],[75.06204,16.94152],[75.04454,16.94173],[75.04139,16.94006],[75.04066,16.93644],[75.03787,16.93571],[75.03577,16.93284],[75.0336,16.93372],[75.02906,16.93149],[75.02643,16.93192],[75.0271,16.92945],[75.02523,16.928],[75.02477,16.93964],[75.02659,16.94414],[75.0045,16.94627],[75.00035,16.94985],[74.99291,16.95207],[74.96826,16.95016],[74.96436,16.94763],[74.96751,16.94161],[74.96064,16.93995],[74.96016,16.93726],[74.9605,16.93348],[74.96568,16.92986],[74.96454,16.92678],[74.95826,16.92824],[74.95042,16.93295],[74.9476,16.93935],[74.94117,16.94078],[74.93671,16.9442],[74.93171,16.94476],[74.93056,16.94167],[74.92654,16.93932],[74.92316,16.93931],[74.92178,16.92986],[74.93422,16.92423],[74.93266,16.91891],[74.93827,16.91729],[74.94435,16.91084],[74.95486,16.91017],[74.95535,16.90534],[74.95884,16.90585],[74.96227,16.91058],[74.96364,16.9111],[74.96358,16.90971],[74.96036,16.88095],[74.94458,16.88116],[74.94438,16.8827],[74.93592,16.87924],[74.93522,16.87107],[74.92555,16.87203],[74.92542,16.86772],[74.92402,16.86713],[74.9265,16.86354],[74.91097,16.86404],[74.90152,16.86255],[74.90424,16.85939],[74.90761,16.85017],[74.91029,16.83514],[74.90873,16.8237],[74.91022,16.81659],[74.91082,16.78954],[74.92014,16.7725],[74.88987,16.77126],[74.86936,16.77407],[74.86568,16.76336],[74.84982,16.77276],[74.84451,16.76182],[74.79874,16.75366],[74.79575,16.74775],[74.78337,16.75132],[74.77197,16.75068],[74.76937,16.74481],[74.76505,16.74186],[74.76035,16.74127],[74.75299,16.73309],[74.75276,16.73086],[74.73698,16.72354],[74.73209,16.71832],[74.73035,16.72013],[74.73004,16.71875],[74.72732,16.71909],[74.72718,16.71684],[74.70569,16.71491],[74.69102,16.71554],[74.68855,16.71279],[74.68773,16.7086],[74.68978,16.69726],[74.6894,16.68646],[74.68082,16.68589],[74.68109,16.68091],[74.68886,16.68154],[74.68955,16.67703],[74.67902,16.6731],[74.6795,16.66617],[74.66516,16.66567],[74.65916,16.64734],[74.65348,16.63883],[74.65905,16.63167],[74.66981,16.6294],[74.6766,16.62359],[74.68757,16.61789],[74.68986,16.61314],[74.68698,16.60679],[74.68268,16.6061],[74.67383,16.6092],[74.65999,16.6029],[74.65405,16.60417],[74.64443,16.61029],[74.64001,16.61045],[74.63615,16.60742],[74.63335,16.60036],[74.63323,16.59083],[74.63586,16.58391],[74.63319,16.58321],[74.62863,16.57773],[74.62284,16.57975],[74.6188,16.58407],[74.61708,16.57587],[74.60952,16.56959],[74.60428,16.56898],[74.60196,16.56536],[74.59896,16.56431],[74.58788,16.5661],[74.58403,16.56235],[74.58464,16.55913],[74.5746,16.55894],[74.57381,16.55391],[74.56854,16.55387],[74.56065,16.56262],[74.55639,16.56277],[74.55485,16.56451],[74.55602,16.57356],[74.56466,16.57965],[74.56689,16.58539],[74.55877,16.59465],[74.54349,16.59532],[74.5427,16.62663],[74.54473,16.62898],[74.54449,16.63547],[74.52445,16.63343],[74.50385,16.63356],[74.50024,16.63313],[74.49501,16.62975],[74.48903,16.63014],[74.47672,16.64447],[74.47171,16.66405],[74.46874,16.6638],[74.46408,16.65827],[74.4564,16.65505],[74.45835,16.64868],[74.45478,16.6473],[74.4585,16.63557],[74.46581,16.62472],[74.46574,16.61566],[74.4641,16.61509],[74.46671,16.60682],[74.46345,16.60449],[74.43544,16.60106],[74.42634,16.59574],[74.42215,16.58451],[74.42081,16.58612],[74.40869,16.58323],[74.39663,16.58327],[74.39554,16.57217],[74.39121,16.56655],[74.39291,16.56488],[74.3869,16.55994],[74.38858,16.55076],[74.38715,16.5362],[74.37983,16.52859],[74.37643,16.52913],[74.37081,16.5348],[74.36082,16.53893],[74.35793,16.53834],[74.35774,16.54608],[74.35611,16.54976],[74.35908,16.55575],[74.35625,16.55975],[74.35399,16.55892],[74.35512,16.55506],[74.35028,16.55603],[74.34572,16.555],[74.34446,16.55173],[74.33969,16.54776],[74.33488,16.54788],[74.32517,16.5563],[74.31757,16.55371],[74.31571,16.55445],[74.31512,16.5046],[74.30614,16.50369],[74.30096,16.52317],[74.30261,16.52665],[74.30165,16.52902],[74.2916,16.53388],[74.28909,16.53244],[74.28685,16.52677],[74.28314,16.52459],[74.28075,16.53145],[74.28109,16.5411],[74.27692,16.54542],[74.27054,16.54796],[74.26413,16.53983],[74.26975,16.52217],[74.2761,16.52131],[74.27801,16.50446],[74.26573,16.5011],[74.25251,16.50062],[74.24737,16.49691],[74.25663,16.48954],[74.26077,16.4801],[74.27438,16.48563],[74.27458,16.49403],[74.27966,16.50483],[74.2909,16.5049],[74.29218,16.48571],[74.28845,16.47723],[74.28928,16.46297],[74.29195,16.46175],[74.29705,16.46454],[74.3064,16.45528],[74.31246,16.45324],[74.32044,16.45392],[74.32466,16.45593],[74.33259,16.45476],[74.32971,16.4472],[74.33623,16.44567],[74.33269,16.43685],[74.33674,16.42881],[74.33129,16.42418],[74.32885,16.41905],[74.33505,16.40141],[74.34289,16.40346],[74.3448,16.40553],[74.36369,16.40509],[74.36291,16.39552],[74.35797,16.38954],[74.35701,16.38344],[74.35358,16.38188],[74.35341,16.36642],[74.3473,16.36832],[74.34512,16.37314],[74.34564,16.3769],[74.34121,16.38277],[74.34064,16.38867],[74.33587,16.39374],[74.32749,16.3915],[74.32814,16.38534],[74.32484,16.37829],[74.31719,16.381],[74.32084,16.37589],[74.31898,16.37164],[74.32477,16.35994],[74.32425,16.35743],[74.31789,16.35496],[74.31764,16.35305],[74.32703,16.34251],[74.32648,16.34142],[74.31879,16.34266],[74.31532,16.34008],[74.31656,16.33619],[74.3225,16.33437],[74.31661,16.32656],[74.32064,16.32375],[74.32874,16.32375],[74.33129,16.32067],[74.32461,16.31666],[74.32516,16.31368],[74.32919,16.31221],[74.33322,16.31345],[74.33296,16.31106],[74.33474,16.30903],[74.33192,16.30525],[74.33591,16.30709],[74.34042,16.30244],[74.34028,16.29816],[74.34255,16.29803],[74.34201,16.29118],[74.34,16.29213],[74.33831,16.29001],[74.33472,16.28961],[74.33184,16.29243],[74.32796,16.29325],[74.32469,16.2889],[74.32578,16.28559],[74.32083,16.28448],[74.32245,16.27791],[74.32457,16.27723],[74.32493,16.27176],[74.32846,16.26887],[74.33415,16.2688],[74.33506,16.2704],[74.33333,16.27597],[74.33843,16.2714],[74.34335,16.27309],[74.34205,16.27651],[74.34378,16.27808],[74.35046,16.27537],[74.35363,16.28309],[74.34301,16.29066],[74.3456,16.29376],[74.35101,16.29179],[74.35478,16.29264],[74.3593,16.29058],[74.36253,16.28672],[74.36714,16.26943],[74.37301,16.26164],[74.38064,16.26197],[74.38021,16.27115],[74.38261,16.27736],[74.41051,16.2831],[74.41181,16.28166],[74.41439,16.28265],[74.41595,16.2801],[74.41761,16.258],[74.43577,16.25883],[74.43555,16.25115],[74.45483,16.25339],[74.45609,16.24386],[74.46862,16.24019],[74.47671,16.24943],[74.48048,16.25013],[74.49035,16.23489],[74.49521,16.2349],[74.5031,16.22541],[74.50311,16.22247],[74.49629,16.21667],[74.49593,16.2143],[74.50126,16.20553],[74.508,16.20226],[74.50584,16.20136],[74.50723,16.19653],[74.50624,16.19024],[74.50331,16.18807],[74.49379,16.18645],[74.48955,16.17742],[74.48984,16.16342],[74.48837,16.15726],[74.47983,16.14713],[74.48007,16.14499],[74.48511,16.1423],[74.48587,16.13406],[74.49084,16.11672],[74.49123,16.10431],[74.4851,16.09837],[74.48482,16.09221],[74.48156,16.08889],[74.47273,16.0906],[74.47269,16.09299],[74.46105,16.09978],[74.45868,16.1038],[74.4429,16.10534],[74.42762,16.11197],[74.40997,16.10212],[74.40696,16.09351],[74.39004,16.08946],[74.39182,16.08253],[74.39086,16.08048],[74.38954,16.07979],[74.38362,16.08293],[74.38173,16.0793],[74.37222,16.07821],[74.37151,16.06824],[74.36133,16.05384],[74.36355,16.05303],[74.37252,16.056],[74.37734,16.05512],[74.37457,16.04689],[74.36905,16.03922],[74.3734,16.03644],[74.378,16.0377],[74.38099,16.03548],[74.40209,16.04611],[74.40552,16.05184],[74.42969,16.05915],[74.43422,16.05847],[74.44285,16.05281],[74.45012,16.05401],[74.45714,16.04823],[74.46221,16.04984],[74.46302,16.04162],[74.45649,16.04106],[74.46322,16.03919],[74.45723,16.02697],[74.45535,16.01952],[74.45011,16.01105],[74.45026,16.00855],[74.44691,16.00318],[74.44477,16.00305],[74.44634,15.9971],[74.44464,15.99244],[74.44261,15.99163],[74.44395,15.9864],[74.43787,15.9799],[74.43893,15.97568],[74.43607,15.96747],[74.43099,15.95962],[74.43083,15.95658],[74.38687,15.90498],[74.38778,15.90131],[74.39342,15.90004],[74.39674,15.88036],[74.39279,15.87839],[74.39765,15.86997],[74.40637,15.86445],[74.40617,15.85538],[74.40163,15.85461],[74.40235,15.85227],[74.39754,15.85115],[74.39141,15.85476],[74.38814,15.85425],[74.38693,15.85965],[74.38283,15.86004],[74.38003,15.87629],[74.37675,15.88238],[74.3661,15.89131],[74.36861,15.89436],[74.3647,15.89386],[74.36513,15.8825],[74.36326,15.87492],[74.35794,15.87316],[74.35087,15.86543],[74.34552,15.86229],[74.34661,15.85879],[74.33821,15.85492],[74.345,15.85044],[74.38309,15.8491],[74.38405,15.84012],[74.38104,15.83538],[74.37993,15.83827],[74.3766,15.83335],[74.3774,15.83222],[74.37482,15.83313],[74.37233,15.83022],[74.37074,15.83057],[74.36641,15.82576],[74.36536,15.81927],[74.36062,15.81778],[74.36267,15.81469],[74.36993,15.81146],[74.3703,15.80849],[74.36869,15.80695],[74.37192,15.80098],[74.37039,15.79859],[74.37197,15.79824],[74.36889,15.79174],[74.36904,15.78812],[74.36214,15.78236],[74.35843,15.77483],[74.35025,15.77032],[74.34568,15.76456],[74.34069,15.76467],[74.33747,15.7679],[74.32307,15.77268],[74.31899,15.76622],[74.31862,15.75838],[74.30974,15.75489],[74.31034,15.75157],[74.3079,15.74848],[74.30135,15.74764],[74.29612,15.74442],[74.28729,15.74198],[74.2852,15.74173],[74.28426,15.74366],[74.2736,15.74908],[74.26832,15.75474],[74.26384,15.75296],[74.25554,15.74604],[74.25386,15.74677],[74.25403,15.74515],[74.24026,15.74332],[74.23708,15.74518],[74.23652,15.74822],[74.2337,15.7483],[74.23243,15.75221],[74.22797,15.75603],[74.2265,15.76263],[74.22858,15.7721],[74.23458,15.77858],[74.2335,15.78699],[74.22777,15.7884],[74.22103,15.786],[74.2159,15.78389],[74.21311,15.78006],[74.20897,15.78127],[74.20143,15.75862],[74.18953,15.75212],[74.16156,15.75129],[74.1533,15.74363],[74.15111,15.73987],[74.15097,15.73581],[74.14401,15.73309],[74.14184,15.73433],[74.13396,15.72982],[74.13346,15.72631],[74.13076,15.72336],[74.12582,15.72411],[74.12217,15.72073],[74.1261,15.71846],[74.12618,15.70796],[74.12834,15.70867],[74.13143,15.70587],[74.13213,15.7024],[74.13034,15.70175],[74.13168,15.69354],[74.13072,15.68963],[74.12577,15.68097],[74.10885,15.67269],[74.10261,15.67222],[74.09136,15.67463],[74.08806,15.67226],[74.08828,15.66994],[74.09423,15.66308],[74.10188,15.65839],[74.11094,15.65769],[74.11828,15.652],[74.13554,15.64837],[74.14112,15.6511],[74.14909,15.65197],[74.15435,15.6499],[74.15747,15.65468],[74.16442,15.6535],[74.16558,15.65438],[74.16737,15.67201],[74.17208,15.674],[74.17668,15.67987],[74.18155,15.68215],[74.1891,15.68059],[74.18989,15.67911],[74.19039,15.67632],[74.1861,15.6745],[74.18684,15.66745],[74.20406,15.66368],[74.20175,15.65634],[74.20513,15.65103],[74.21745,15.65274],[74.22216,15.65564],[74.22222,15.65685],[74.21772,15.65836],[74.21515,15.66287],[74.21765,15.6623],[74.21802,15.66435],[74.22378,15.66898],[74.2246,15.66626],[74.22841,15.66444],[74.22979,15.66638],[74.23636,15.66858],[74.2394,15.66461],[74.23817,15.66362],[74.24299,15.66244],[74.24485,15.6582],[74.25044,15.65726],[74.25198,15.65431],[74.24416,15.62611],[74.24826,15.6229],[74.25372,15.62674],[74.25848,15.6234],[74.25859,15.62078],[74.2643,15.61551],[74.25999,15.60672],[74.26025,15.59263],[74.24874,15.58038],[74.25053,15.57737],[74.24519,15.5666],[74.24967,15.56765],[74.25833,15.56169],[74.26129,15.56481],[74.26315,15.56394],[74.2653,15.55837],[74.27792,15.54611],[74.28265,15.53142],[74.2817,15.52613],[74.27815,15.52285],[74.27847,15.51748],[74.27647,15.51489],[74.27148,15.51085],[74.25517,15.50307],[74.25229,15.49934],[74.25091,15.49159],[74.26398,15.47236],[74.27545,15.44919],[74.27737,15.44049],[74.27506,15.43646],[74.27689,15.43521],[74.26992,15.42604],[74.26878,15.4191],[74.27041,15.41596],[74.27432,15.41358],[74.2783,15.40569],[74.27587,15.39159],[74.28299,15.38294],[74.29871,15.38194],[74.3086,15.37445],[74.3232,15.36768],[74.31626,15.363],[74.31604,15.35997],[74.32184,15.3436],[74.31722,15.33517],[74.31702,15.32912],[74.32443,15.30991],[74.33644,15.29494],[74.32637,15.28374],[74.32057,15.2847],[74.31963,15.28344],[74.30796,15.28333],[74.29433,15.28919],[74.29335,15.28451],[74.28765,15.28389],[74.28179,15.28042],[74.27633,15.28353],[74.27149,15.28113],[74.26103,15.26019],[74.25111,15.25885],[74.25469,15.25407],[74.2522,15.25103],[74.25955,15.24102],[74.28114,15.23626],[74.2867,15.23281],[74.2915,15.23382],[74.30161,15.22434],[74.29986,15.21993],[74.30144,15.21705],[74.30221,15.21801],[74.30452,15.21672],[74.30575,15.2094],[74.31005,15.20629],[74.30862,15.20179],[74.31039,15.19468],[74.31696,15.18626],[74.31738,15.18375],[74.31417,15.18054],[74.31425,15.17752],[74.29567,15.15124],[74.29135,15.14891],[74.28513,15.14903],[74.28358,15.14287],[74.28519,15.13672],[74.28488,15.11391],[74.28288,15.11303],[74.28266,15.10674],[74.27655,15.10538],[74.27265,15.0975],[74.27524,15.09595],[74.27969,15.08808],[74.28073,15.06882],[74.28373,15.06613],[74.28951,15.06482],[74.29025,15.05361],[74.29461,15.04917],[74.29649,15.04121],[74.28824,15.03674],[74.28326,15.03157],[74.28341,15.02353],[74.27245,15.01425],[74.26647,15.00689],[74.26807,15.00201],[74.25361,14.99815],[74.25212,14.99268],[74.2577,14.98823],[74.26432,14.97852],[74.26099,14.97647],[74.2591,14.97006],[74.25527,14.97042],[74.2526,14.95909],[74.24923,14.95904],[74.24755,14.96192],[74.2367,14.96685],[74.23286,14.96412],[74.23175,14.95337],[74.2298,14.9505],[74.22596,14.95046],[74.21755,14.94595],[74.21366,14.94769],[74.21164,14.94354],[74.21263,14.94027],[74.20913,14.93806],[74.20154,14.92572],[74.19166,14.93304],[74.19466,14.93709],[74.19476,14.93994],[74.19126,14.94501],[74.17972,14.9508],[74.17836,14.95367],[74.17946,14.95705],[74.17476,14.95853],[74.17138,14.95719],[74.16361,14.95848],[74.16077,14.95555],[74.15915,14.95585],[74.15833,14.94931],[74.15416,14.94343],[74.15547,14.9422],[74.15426,14.93984],[74.15624,14.93887],[74.15855,14.93023],[74.16258,14.92689],[74.16591,14.91859],[74.16619,14.91655],[74.16212,14.91214],[74.15342,14.91714],[74.14572,14.91895],[74.14015,14.92323],[74.13504,14.92209],[74.12983,14.92547],[74.12423,14.92532],[74.11998,14.9169],[74.11462,14.91836],[74.10962,14.91697],[74.10851,14.91394],[74.1048,14.9129],[74.10163,14.91579],[74.09453,14.91099],[74.09028,14.90341],[74.08819,14.90343],[74.08578,14.9009],[74.08503,14.89984],[74.08741,14.89891],[74.09116,14.89987],[74.09648,14.89745],[74.09994,14.88829],[74.09967,14.88075],[74.10588,14.87424],[74.1104,14.86295],[74.11191,14.84679],[74.11493,14.84168],[74.11587,14.84272],[74.11329,14.84572],[74.12322,14.8412],[74.1251,14.83789],[74.12402,14.83197],[74.12618,14.81693],[74.12426,14.805],[74.12205,14.80426],[74.12055,14.80132],[74.11624,14.80204],[74.11334,14.79679],[74.11125,14.79858],[74.11422,14.8023],[74.11262,14.80508],[74.10615,14.80608],[74.10433,14.80449],[74.10218,14.80702],[74.09992,14.80701],[74.09357,14.80574],[74.09277,14.804],[74.09572,14.799],[74.10028,14.79788],[74.10257,14.79327],[74.10831,14.79373],[74.10951,14.79252],[74.11127,14.78983],[74.11019,14.78502],[74.11521,14.78839],[74.11783,14.78655],[74.12156,14.78022],[74.11881,14.77738],[74.11944,14.77399],[74.12058,14.77554],[74.12491,14.77517],[74.12509,14.77767],[74.12812,14.78055],[74.13205,14.78052],[74.13453,14.77814],[74.13715,14.78018],[74.14238,14.77854],[74.15775,14.75993],[74.15774,14.75793],[74.15339,14.75589],[74.15236,14.75183],[74.15055,14.75105],[74.15211,14.74706],[74.15755,14.74493],[74.15825,14.74975],[74.16321,14.75264],[74.17399,14.75186],[74.17572,14.74971],[74.17716,14.75056],[74.185,14.7444],[74.19307,14.7346],[74.19489,14.73054],[74.19268,14.72662],[74.19965,14.72352],[74.20403,14.71928],[74.20843,14.71764],[74.20276,14.73207],[74.20381,14.73639],[74.20868,14.7378],[74.21038,14.73358],[74.21865,14.73752],[74.22181,14.73611],[74.2229,14.7376],[74.22758,14.73804],[74.22613,14.74772],[74.23424,14.74843],[74.24932,14.74118],[74.25044,14.7362],[74.2628,14.71981],[74.26494,14.71288],[74.26186,14.70943],[74.25675,14.70756],[74.25742,14.70634],[74.26088,14.7071],[74.26351,14.7049],[74.26663,14.70542],[74.27234,14.70009],[74.27105,14.69905],[74.28286,14.6753],[74.28032,14.67113],[74.27732,14.67204],[74.27552,14.67018],[74.27771,14.66953],[74.27564,14.66635],[74.27796,14.66588],[74.27938,14.66212],[74.28178,14.66401],[74.2843,14.66357],[74.27968,14.66012],[74.27868,14.6565],[74.28053,14.65639],[74.28227,14.65335],[74.2805,14.64924],[74.28516,14.6471],[74.28452,14.64338],[74.28644,14.63421],[74.2816,14.62648],[74.2793,14.62561],[74.27137,14.63007],[74.27043,14.62698],[74.27358,14.62748],[74.28132,14.61014],[74.28717,14.60506],[74.293,14.59649],[74.2943,14.58955],[74.31473,14.54572],[74.31413,14.54049],[74.31079,14.53878],[74.3108,14.5367],[74.31165,14.5319],[74.31629,14.53087],[74.31599,14.52657],[74.31151,14.52467],[74.31022,14.52137],[74.31358,14.52171],[74.31653,14.51951],[74.32565,14.51985],[74.32669,14.51602],[74.33708,14.51932],[74.34028,14.51466],[74.34471,14.52135],[74.34858,14.52056],[74.35473,14.52217],[74.35989,14.51092],[74.35542,14.50842],[74.35461,14.5025],[74.3605,14.50107],[74.36378,14.49406],[74.38357,14.43951],[74.38238,14.43645],[74.38418,14.43413],[74.38025,14.43128],[74.38414,14.42955],[74.38487,14.42666],[74.38339,14.42452],[74.38111,14.42439],[74.38603,14.41833],[74.3889,14.41978],[74.3938,14.41859],[74.39767,14.40818],[74.40476,14.3753],[74.40243,14.36883],[74.40496,14.36554],[74.40493,14.35768],[74.4125,14.3294],[74.41295,14.31727],[74.41858,14.30459],[74.44304,14.22988],[74.44166,14.22457],[74.44959,14.21616],[74.44891,14.21257],[74.45061,14.21179],[74.4504,14.20856],[74.45291,14.20717],[74.45296,14.20368],[74.45425,14.20311],[74.45347,14.20028],[74.4577,14.19908],[74.46077,14.20113],[74.4639,14.20053],[74.46893,14.18868],[74.47896,14.1438],[74.47709,14.14019],[74.48001,14.13611],[74.48669,14.10516],[74.48567,14.09447],[74.48826,14.09157],[74.48855,14.0866],[74.49257,14.0782],[74.49995,14.04825],[74.50073,14.02915],[74.50299,14.02688],[74.50136,14.02335],[74.50916,14.00765],[74.509,14.00111],[74.51286,13.99649],[74.51398,13.98686],[74.52841,13.97251],[74.53245,13.96482],[74.53436,13.96463],[74.53474,13.96781],[74.53901,13.96439],[74.54202,13.95729],[74.54728,13.95529],[74.54929,13.94915],[74.55717,13.95134],[74.56031,13.94822],[74.56062,13.94567],[74.56352,13.94577],[74.56679,13.9491],[74.56921,13.94678],[74.57823,13.92675],[74.58259,13.92504],[74.58679,13.91827],[74.59606,13.8831],[74.60183,13.87286],[74.60993,13.86555],[74.60901,13.86013],[74.62581,13.79685],[74.64068,13.71842],[74.64555,13.68196],[74.65177,13.66509],[74.65439,13.66389],[74.66364,13.65194],[74.66625,13.63782],[74.66851,13.64017],[74.66937,13.63479],[74.66729,13.63229],[74.68222,13.54281],[74.68883,13.46427],[74.69543,13.45518],[74.6939,13.45357],[74.69237,13.45631],[74.69118,13.45497],[74.69657,13.40528],[74.69491,13.37591],[74.69711,13.34736],[74.69979,13.34646],[74.70031,13.34442],[74.69506,13.34507],[74.69359,13.34371],[74.69829,13.34256],[74.70753,13.33469],[74.71637,13.31258],[74.71896,13.28627],[74.72687,13.265],[74.72928,13.25275],[74.73179,13.25053],[74.736,13.22652],[74.73932,13.22439],[74.73749,13.2236],[74.74406,13.19371],[74.7506,13.17808],[74.76463,13.12269],[74.77859,13.06116],[74.78915,13.00399],[74.79354,12.99598],[74.81219,12.90005],[74.82443,12.84906],[74.83712,12.82398],[74.84676,12.79537],[74.85547,12.78408],[74.86419,12.76138],[74.86543,12.76646],[74.8644,12.77089],[74.86784,12.76587],[74.86721,12.76137],[74.87224,12.76106],[74.87414,12.75494],[74.88231,12.75405],[74.89303,12.76243],[74.89958,12.76258],[74.90763,12.76896],[74.93293,12.78054],[74.94173,12.77998],[74.95069,12.78429],[74.95819,12.78467],[74.95999,12.77889],[74.96293,12.77868],[74.96441,12.78163],[74.96633,12.78079],[74.96654,12.77648],[74.96836,12.77636],[74.98193,12.77963],[74.98244,12.78231],[74.98514,12.78155],[74.98731,12.78296],[74.99209,12.78821],[74.98741,12.79359],[74.98903,12.79546],[74.99122,12.79553],[74.99602,12.7893],[74.99875,12.78908],[74.99831,12.78594],[75.00243,12.78834],[75.00018,12.79022],[75.00316,12.79167],[75.00509,12.79031],[75.00297,12.78438],[75.00339,12.77798],[75.00621,12.77084],[75.00945,12.76751],[75.00606,12.76612],[75.00433,12.76043],[74.99868,12.75699],[74.9966,12.75208],[74.98768,12.74165],[74.98464,12.74308],[74.98403,12.73993],[74.98545,12.73889],[74.98327,12.7372],[74.98559,12.7336],[74.98724,12.73657],[74.98893,12.73629],[74.98881,12.73821],[74.99039,12.73746],[74.99002,12.73608],[74.99135,12.73695],[74.99047,12.73873],[74.99248,12.73989],[75.0,12.73205],[75.0134,12.72795],[75.00494,12.72028],[75.00096,12.71956],[75.00099,12.71639],[75.01504,12.71423],[75.01864,12.72111],[75.02658,12.71931],[75.03358,12.72351],[75.03905,12.72382],[75.04268,12.72077],[75.04431,12.72311],[75.04792,12.7206],[75.05246,12.72008],[75.05034,12.71632],[75.05389,12.71112],[75.0543,12.70713],[75.05189,12.7069],[75.05023,12.70439],[75.05559,12.69346],[75.05385,12.69052],[75.04855,12.69404],[75.04392,12.69264],[75.0405,12.68535],[75.043,12.68224],[75.04146,12.67873],[75.04257,12.67285],[75.04664,12.66757],[75.05397,12.67022],[75.05752,12.66605],[75.05981,12.67177],[75.06525,12.66483],[75.06858,12.66467],[75.07415,12.67225],[75.08517,12.67476],[75.08744,12.6792],[75.0855,12.68247],[75.08558,12.69022],[75.0831,12.69333],[75.08508,12.69567],[75.08115,12.69738],[75.08095,12.69907],[75.08601,12.70403],[75.09232,12.69981],[75.10022,12.69967],[75.10625,12.69681],[75.10727,12.69105],[75.11062,12.69058],[75.11018,12.68845],[75.11259,12.68522],[75.11146,12.68182],[75.11739,12.68128],[75.12213,12.67891],[75.12312,12.68137],[75.12492,12.68148],[75.12841,12.67694],[75.13251,12.67614],[75.13467,12.67805],[75.13764,12.67676],[75.13982,12.68059],[75.14319,12.67839],[75.14639,12.68219],[75.152,12.68324],[75.14903,12.67616],[75.14988,12.67333],[75.16203,12.67196],[75.15212,12.65611],[75.15081,12.65006],[75.13851,12.64344],[75.1433,12.63966],[75.14444,12.64049],[75.15392,12.62497],[75.16068,12.62213],[75.16417,12.62407],[75.16996,12.62227],[75.1829,12.6328],[75.18555,12.63185],[75.18822,12.63314],[75.19374,12.63031],[75.20174,12.63002],[75.20281,12.62759],[75.19877,12.61443],[75.19926,12.61207],[75.20095,12.60961],[75.20674,12.60801],[75.20775,12.60269],[75.20998,12.60023],[75.20786,12.59573],[75.20173,12.59336],[75.20114,12.58773],[75.20949,12.59107],[75.21262,12.57816],[75.21777,12.57636],[75.22032,12.5691],[75.22393,12.57036],[75.22919,12.56853],[75.2375,12.56976],[75.2371,12.57614],[75.23898,12.57802],[75.23867,12.58071],[75.24158,12.58003],[75.2497,12.58457],[75.25178,12.589],[75.25534,12.59138],[75.25684,12.59651],[75.26126,12.59817],[75.266,12.60719],[75.26513,12.61117],[75.26716,12.61466],[75.27261,12.61556],[75.27635,12.61851],[75.2817,12.61644],[75.28598,12.61121],[75.28958,12.6104],[75.29156,12.60195],[75.29907,12.6059],[75.30189,12.60541],[75.31216,12.58972],[75.32701,12.59239],[75.328,12.58429],[75.32643,12.58139],[75.31869,12.57749],[75.31539,12.57254],[75.30804,12.57833],[75.29054,12.58261],[75.28467,12.56957],[75.27855,12.5716],[75.27289,12.56897],[75.27006,12.55845],[75.27215,12.55484],[75.27056,12.54834],[75.27449,12.54022],[75.27396,12.5356],[75.27864,12.53146],[75.28031,12.52531],[75.29135,12.52685],[75.29554,12.52525],[75.29652,12.52319],[75.3041,12.52328],[75.30393,12.50474],[75.31445,12.50292],[75.31503,12.49711],[75.32451,12.49673],[75.333,12.49833],[75.33448,12.49549],[75.33353,12.49205],[75.33742,12.48852],[75.3361,12.47701],[75.34154,12.46912],[75.3366,12.46408],[75.34611,12.46298],[75.35173,12.46488],[75.36082,12.46497],[75.36751,12.47533],[75.371,12.4748],[75.3726,12.47703],[75.3716,12.4869],[75.36864,12.48728],[75.36805,12.49121],[75.37779,12.4951],[75.38223,12.50202],[75.38741,12.5019],[75.39169,12.49936],[75.3946,12.50277],[75.39797,12.50374],[75.40231,12.49793],[75.40806,12.49864],[75.41195,12.50201],[75.41736,12.49844],[75.41869,12.49532],[75.41733,12.49337],[75.42058,12.48852],[75.4203,12.47976],[75.42482,12.47426],[75.42495,12.46951],[75.42326,12.46678],[75.41572,12.46598],[75.41565,12.46216],[75.41332,12.45857],[75.40398,12.45494],[75.39962,12.45493],[75.3934,12.45137],[75.39221,12.45512],[75.38629,12.45828],[75.38187,12.45663],[75.37422,12.45973],[75.37126,12.45656],[75.36617,12.4582],[75.36563,12.45675],[75.37029,12.44887],[75.36885,12.44217],[75.37149,12.43772],[75.36617,12.41183],[75.37144,12.40789],[75.37261,12.40025],[75.37773,12.39842],[75.37924,12.39236],[75.38394,12.39091],[75.38649,12.39237],[75.39229,12.38999],[75.39857,12.38143],[75.4004,12.38074],[75.40154,12.38252],[75.40553,12.37906],[75.41312,12.38029],[75.42193,12.37266],[75.41964,12.35694],[75.41544,12.34961],[75.41168,12.34914],[75.4104,12.34719],[75.41539,12.34006],[75.41619,12.32993],[75.41864,12.32917],[75.42028,12.31898],[75.42716,12.31072],[75.43109,12.31059],[75.43215,12.30899],[75.42829,12.30699],[75.42776,12.30405],[75.42411,12.30292],[75.42515,12.30057],[75.41373,12.29236],[75.41392,12.29067],[75.4211,12.29171],[75.42284,12.2951],[75.4266,12.29561],[75.42738,12.29781],[75.43009,12.29901],[75.43302,12.29734],[75.43635,12.29845],[75.4412,12.2966],[75.44573,12.29763],[75.4599,12.29404],[75.46374,12.2983],[75.47015,12.30071],[75.47547,12.29596],[75.4794,12.29541],[75.48101,12.29217],[75.48663,12.2886],[75.48692,12.28428],[75.49387,12.27279],[75.5054,12.27074],[75.50583,12.26458],[75.51178,12.25958],[75.51159,12.25306],[75.5198,12.24621],[75.51861,12.24351],[75.52111,12.23613],[75.52833,12.23159],[75.52691,12.22569],[75.53969,12.21681],[75.53703,12.20808],[75.53194,12.20567],[75.53261,12.20145],[75.53416,12.20293],[75.53649,12.20128],[75.5398,12.20273],[75.54118,12.19755],[75.54625,12.19794],[75.54859,12.19263],[75.55262,12.19285],[75.55497,12.18318],[75.55851,12.18207],[75.56027,12.17612],[75.56978,12.17285],[75.5772,12.15775],[75.58331,12.15912],[75.58375,12.15699],[75.59046,12.15249],[75.59256,12.14785],[75.5959,12.15432],[75.60197,12.15364],[75.60691,12.15549],[75.61125,12.15262],[75.61496,12.1556],[75.61903,12.15652],[75.63133,12.14878],[75.63605,12.14917],[75.6392,12.14336],[75.63826,12.13895],[75.64205,12.1398],[75.64319,12.13865],[75.64408,12.12552],[75.64753,12.12192],[75.64658,12.1158],[75.64908,12.10933],[75.65276,12.11005],[75.653,12.10791],[75.66198,12.09918],[75.66742,12.09731],[75.67687,12.0982],[75.67988,12.10273],[75.68364,12.10449],[75.68718,12.11025],[75.69554,12.11049],[75.70326,12.10817],[75.70213,12.09229],[75.71307,12.09048],[75.71793,12.08558],[75.71769,12.08229],[75.71545,12.08166],[75.71473,12.07044],[75.72485,12.07318],[75.72774,12.07255],[75.73611,12.07895],[75.74358,12.08017],[75.74712,12.07819],[75.74913,12.08191],[75.75348,12.08413],[75.76282,12.08325],[75.76763,12.08448],[75.78036,12.08251],[75.78542,12.08426],[75.80255,12.07856],[75.80383,12.07516],[75.79867,12.06327],[75.79866,12.05604],[75.79396,12.05503],[75.79966,12.04738],[75.80107,12.03701],[75.81102,12.02857],[75.80993,12.02271],[75.81547,12.02051],[75.82286,12.01337],[75.82325,12.0098],[75.82038,12.00252],[75.82523,12.00273],[75.82563,11.99187],[75.82947,11.98451],[75.83704,11.98093],[75.83971,11.98267],[75.84292,11.98073],[75.84691,11.98201],[75.84955,11.97804],[75.848,11.97495],[75.85011,11.97474],[75.853,11.97159],[75.85367,11.9659],[75.85886,11.95942],[75.86643,11.95738],[75.87045,11.95258],[75.87254,11.9533],[75.88068,11.94971],[75.88602,11.95203],[75.89703,11.94547],[75.89873,11.94666],[75.91399,11.94692],[75.91747,11.94488],[75.92719,11.94337],[75.93078,11.9397],[75.93571,11.94006],[75.93741,11.9421],[75.95174,11.94064],[75.95637,11.9419],[75.9764,11.93371],[75.97927,11.93476],[75.98347,11.93272],[75.99042,11.93471],[75.99391,11.93227],[76.0032,11.93139],[76.00738,11.93902],[76.01312,11.94172],[76.01649,11.9411],[76.02238,11.94397],[76.02676,11.94308],[76.02997,11.94015],[76.03372,11.9403],[76.03907,11.94509],[76.04233,11.94602],[76.04482,11.95054],[76.05204,11.95161],[76.05796,11.95778],[76.06742,11.96333],[76.0701,11.96708],[76.07729,11.96874],[76.0898,11.96743],[76.1123,11.97866],[76.11337,11.89521],[76.11176,11.88736],[76.1149,11.86683],[76.11286,11.85871],[76.11785,11.85719],[76.11704,11.85485],[76.11994,11.85047],[76.13229,11.85387],[76.14608,11.867],[76.1494,11.86642],[76.15603,11.87014],[76.16481,11.86757],[76.1735,11.87121],[76.17881,11.87017],[76.18672,11.87196],[76.19039,11.87121],[76.19838,11.86655],[76.20201,11.86241],[76.20747,11.86154],[76.21026,11.84422],[76.21311,11.84262],[76.20989,11.82817],[76.21709,11.82157],[76.21821,11.81436],[76.22372,11.8082],[76.22935,11.80531],[76.24558,11.80293],[76.25,11.80337],[76.25964,11.80869],[76.27369,11.81063],[76.27687,11.81237],[76.28022,11.81161],[76.28488,11.8003],[76.29024,11.79283],[76.29403,11.79176],[76.30117,11.78563],[76.30558,11.7859],[76.3077,11.78422],[76.31071,11.7673],[76.31362,11.76357],[76.31445,11.75691],[76.31686,11.75259],[76.3196,11.75048],[76.32914,11.74828],[76.33484,11.74464],[76.33974,11.739],[76.3502,11.74024],[76.3525,11.73828],[76.36282,11.74837],[76.36846,11.74814],[76.37699,11.74454],[76.38395,11.7472],[76.39129,11.75477],[76.3934,11.75503],[76.39864,11.75081],[76.40521,11.75637],[76.41423,11.75885],[76.41498,11.7555],[76.4123,11.75182],[76.41241,11.74368],[76.41048,11.74208],[76.41288,11.74011],[76.41817,11.7426],[76.4221,11.73829],[76.42744,11.72631],[76.42411,11.72029],[76.41659,11.71769],[76.41606,11.71296],[76.41401,11.71125],[76.41184,11.7158],[76.40804,11.71477],[76.4056,11.71119],[76.40344,11.71129],[76.40346,11.70776],[76.40524,11.70586],[76.40745,11.70745],[76.40888,11.70639],[76.41087,11.70005],[76.40983,11.69875],[76.41178,11.69783],[76.41238,11.69502],[76.40963,11.69438],[76.41083,11.69367],[76.41026,11.691],[76.40844,11.68972],[76.41305,11.68598],[76.4126,11.68276],[76.41673,11.67174],[76.41951,11.6709],[76.42103,11.67248],[76.42613,11.67114],[76.42818,11.66998],[76.42946,11.66624],[76.43339,11.6668],[76.43533,11.6647],[76.44016,11.66585],[76.44377,11.66359],[76.45514,11.66578],[76.45821,11.66433],[76.47443,11.68122],[76.48262,11.68611],[76.48168,11.69252],[76.48843,11.69135],[76.4936,11.69298],[76.51168,11.70498],[76.53723,11.6908],[76.55056,11.67419],[76.5514,11.67188],[76.54931,11.66498],[76.55006,11.6611],[76.5544,11.65557],[76.55391,11.64571],[76.55873,11.63851],[76.55958,11.63317],[76.56142,11.63268],[76.55995,11.62247],[76.56266,11.62291],[76.56966,11.61806],[76.57521,11.61919],[76.57709,11.61444],[76.57908,11.61573],[76.58379,11.61376],[76.59229,11.61866],[76.59647,11.61625],[76.59761,11.61064],[76.61065,11.61085],[76.61398,11.60755],[76.63046,11.61379],[76.6502,11.61345],[76.67147,11.61591],[76.68459,11.61396],[76.70271,11.61584],[76.72183,11.61439],[76.73684,11.61531],[76.74707,11.61378],[76.75692,11.61844],[76.76482,11.61413],[76.77019,11.61569],[76.77476,11.61234],[76.79153,11.61274],[76.79635,11.60841],[76.80924,11.60838],[76.81757,11.60472],[76.82284,11.60808],[76.83937,11.59699],[76.84694,11.59447],[76.85358,11.59697],[76.85647,11.59928],[76.85724,11.60547],[76.85567,11.60758],[76.85774,11.61016],[76.85812,11.61403],[76.85601,11.61564],[76.85053,11.61596],[76.84884,11.61856],[76.85211,11.62167],[76.84955,11.62107],[76.8496,11.62432],[76.84276,11.62705],[76.84484,11.62815],[76.84513,11.63415],[76.84419,11.63257],[76.83841,11.63538],[76.83463,11.6395],[76.83793,11.64194],[76.83374,11.64896],[76.83626,11.65388],[76.83501,11.65542],[76.83778,11.65621],[76.8387,11.66009],[76.84184,11.66213],[76.84141,11.66595],[76.84365,11.6682],[76.84403,11.67281],[76.84854,11.67969],[76.85276,11.69237],[76.86371,11.70537],[76.86117,11.70722],[76.86263,11.71101],[76.87421,11.72411],[76.88835,11.73364],[76.8881,11.7417],[76.89581,11.75775],[76.89792,11.7706],[76.89661,11.77647],[76.90038,11.78392],[76.908,11.79525],[76.92218,11.79178],[76.93209,11.79279],[76.94239,11.78802],[76.95394,11.79205],[76.95602,11.79115],[76.96118,11.78162],[76.96992,11.77686],[76.97273,11.78038],[76.97533,11.78925],[76.98089,11.79541],[76.9802,11.79853],[76.98365,11.80168],[76.9821,11.80346],[76.98299,11.81185],[76.99354,11.80916],[77.01294,11.81461],[77.01401,11.80621],[77.01622,11.8069],[77.01689,11.81071],[77.02988,11.80467],[77.03065,11.80201],[77.03419,11.79995],[77.03267,11.79589],[77.03534,11.7939],[77.03875,11.79385],[77.03549,11.78314],[77.02886,11.77467],[77.0351,11.76978],[77.04006,11.78062],[77.043,11.78199],[77.04647,11.78762],[77.05043,11.78962],[77.05779,11.78885],[77.06294,11.7904],[77.06692,11.78798],[77.06976,11.78208],[77.0671,11.77831],[77.06126,11.77592],[77.05991,11.77152],[77.05643,11.76978],[77.07109,11.75131],[77.08276,11.73976],[77.08022,11.73598],[77.10501,11.7328],[77.11482,11.72175],[77.11771,11.72107],[77.11814,11.72611],[77.11602,11.72564],[77.11739,11.72847],[77.11535,11.72817],[77.11754,11.73179],[77.11419,11.73447],[77.11484,11.73893],[77.11174,11.74307],[77.11138,11.7504],[77.10855,11.7526],[77.11246,11.75693],[77.11134,11.76367],[77.11266,11.76558],[77.11075,11.77347],[77.11565,11.77472],[77.12276,11.77245],[77.13058,11.7737],[77.13808,11.77264],[77.14709,11.78191],[77.18202,11.78632],[77.18924,11.79252],[77.21752,11.79533],[77.2386,11.79465],[77.2496,11.80418],[77.24988,11.81301],[77.26158,11.81061],[77.27342,11.80534],[77.27443,11.803],[77.28798,11.80044],[77.29385,11.809],[77.31267,11.79354],[77.3277,11.77535],[77.33515,11.77123],[77.36042,11.77947],[77.36485,11.7904],[77.36904,11.78951],[77.37026,11.78666],[77.38802,11.78847],[77.39446,11.78763],[77.41366,11.77467],[77.42223,11.77238],[77.4226,11.76172],[77.42724,11.76087],[77.42894,11.76263],[77.42805,11.76701],[77.43381,11.77814],[77.4422,11.78329],[77.4396,11.78561],[77.4405,11.78883],[77.44662,11.79031],[77.4498,11.79601],[77.45404,11.82023],[77.45697,11.82898],[77.46036,11.83184],[77.46661,11.84708],[77.46624,11.85002],[77.46141,11.85369],[77.46305,11.85885],[77.45994,11.86345],[77.46284,11.8648],[77.46586,11.8742],[77.46048,11.8812],[77.46314,11.88437],[77.46223,11.88796],[77.46398,11.89403],[77.46163,11.89998],[77.47352,11.89918],[77.47478,11.898],[77.47416,11.89439],[77.47722,11.89046],[77.48064,11.89341],[77.48409,11.88801],[77.4862,11.88741],[77.48307,11.89957],[77.49059,11.90849],[77.49089,11.91068],[77.48861,11.91234],[77.49189,11.92119],[77.49287,11.94126],[77.4948,11.94385],[77.50041,11.93998],[77.50492,11.94113],[77.51231,11.93781],[77.51834,11.93822],[77.52824,11.93378],[77.53798,11.93239],[77.54252,11.93816],[77.55818,11.94155],[77.56107,11.94192],[77.57531,11.93648],[77.58596,11.93687],[77.58839,11.93934],[77.59358,11.94022],[77.60345,11.93766],[77.60695,11.94202],[77.61253,11.94241],[77.624,11.94731],[77.62886,11.94637],[77.63944,11.94805],[77.64232,11.95002],[77.64722,11.95049],[77.64871,11.95367],[77.65205,11.95482],[77.65619,11.95346],[77.65738,11.94983],[77.66907,11.94907],[77.67569,11.95198],[77.67451,11.9539],[77.67474,11.96594],[77.69637,12.01577],[77.70891,12.03602],[77.71489,12.04244],[77.72754,12.06204],[77.74271,12.07002],[77.75569,12.07973],[77.76775,12.10664],[77.77259,12.10829],[77.77639,12.11228],[77.77617,12.11732],[77.7738,12.12052],[77.75721,12.13044],[77.74981,12.13846],[77.74679,12.14453],[77.74751,12.15191],[77.74614,12.15737],[77.74274,12.16288],[77.73543,12.16959],[77.73334,12.17808],[77.73062,12.18039],[77.72203,12.18294],[77.71135,12.18243],[77.69864,12.18513],[77.66524,12.19821],[77.65608,12.19955],[77.63763,12.19669],[77.62984,12.20224],[77.62096,12.19988],[77.61075,12.20614],[77.60534,12.20553],[77.59674,12.19927],[77.58042,12.1981],[77.57386,12.20089],[77.56943,12.19974],[77.56531,12.19631],[77.54589,12.20465],[77.54017,12.20238],[77.53585,12.19862],[77.52815,12.19889],[77.51868,12.19448],[77.49271,12.19733],[77.48645,12.20381],[77.47544,12.20559],[77.47191,12.20842],[77.48262,12.22944],[77.48231,12.2331],[77.47849,12.24006],[77.47112,12.24351],[77.47352,12.25561],[77.4782,12.25921],[77.47703,12.26446],[77.47906,12.27127],[77.4851,12.27505],[77.4876,12.2805],[77.49328,12.27887],[77.49674,12.28218],[77.49998,12.28257],[77.50838,12.276],[77.51419,12.27538],[77.52722,12.27877],[77.53284,12.29146],[77.55134,12.29121],[77.5524,12.29745],[77.5579,12.30321],[77.55791,12.30573],[77.566,12.30624],[77.57858,12.33567],[77.59154,12.34014],[77.59869,12.34999],[77.60084,12.35843],[77.60762,12.36105],[77.61302,12.36112],[77.61681,12.3682],[77.61809,12.3811],[77.62058,12.38301],[77.62333,12.41226],[77.62962,12.41832],[77.62909,12.42513],[77.62608,12.43076],[77.62698,12.44112],[77.62915,12.44635],[77.62717,12.45845],[77.62942,12.46065],[77.6306,12.46511],[77.62924,12.46677],[77.63076,12.47027],[77.63314,12.47045],[77.6324,12.47912],[77.63463,12.4876],[77.62948,12.4945],[77.62609,12.49631],[77.61649,12.48284],[77.60742,12.47512],[77.5984,12.47618],[77.59569,12.4748],[77.58368,12.4788],[77.58875,12.48563],[77.5918,12.48518],[77.6024,12.49715],[77.61507,12.50416],[77.61633,12.50918],[77.61242,12.51494],[77.60677,12.51413],[77.59393,12.51608],[77.5872,12.51475],[77.5885,12.52662],[77.58546,12.5368],[77.5864,12.54572],[77.58035,12.55159],[77.58075,12.56571],[77.57934,12.57309],[77.5838,12.57588],[77.58932,12.59268],[77.59142,12.59209],[77.59102,12.61524],[77.59407,12.62106],[77.60623,12.62891],[77.60333,12.63532],[77.60474,12.63759],[77.60073,12.64303],[77.59964,12.64269],[77.59612,12.65028],[77.59887,12.66716],[77.62391,12.6739],[77.63788,12.67571],[77.65991,12.68384],[77.67638,12.67947],[77.67509,12.67309],[77.67714,12.67144],[77.67865,12.66039],[77.68993,12.65899],[77.69219,12.66084],[77.70423,12.6614],[77.71101,12.66712],[77.71159,12.68314],[77.72277,12.67965],[77.72462,12.67119],[77.73993,12.67299],[77.74118,12.67546],[77.74101,12.68577],[77.73502,12.69185],[77.73518,12.69402],[77.73988,12.69988],[77.75995,12.69698],[77.76392,12.69964],[77.76612,12.70799],[77.76575,12.71374],[77.76955,12.71252],[77.77032,12.71787],[77.77445,12.72421],[77.7612,12.72737],[77.76242,12.73531],[77.76835,12.74003],[77.78006,12.74202],[77.78356,12.74121],[77.79274,12.74786],[77.79439,12.75762],[77.7845,12.76238],[77.77884,12.76801],[77.78954,12.78016],[77.79292,12.78798],[77.79856,12.79512],[77.80037,12.79443],[77.80221,12.79626],[77.80403,12.79423],[77.80665,12.79406],[77.80854,12.79673],[77.80728,12.79939],[77.8051,12.7996],[77.8034,12.80481],[77.79973,12.80522],[77.80216,12.817],[77.8099,12.81553],[77.80796,12.82304],[77.80988,12.83153],[77.7959,12.83453],[77.79246,12.8427],[77.79489,12.84562],[77.79675,12.84478],[77.79911,12.85154],[77.80792,12.84767],[77.81555,12.85579],[77.82308,12.85584],[77.82579,12.85994],[77.83246,12.86204],[77.83216,12.86752],[77.83601,12.87033],[77.84261,12.86869],[77.84739,12.86932],[77.85095,12.86611],[77.85748,12.86948],[77.87594,12.8668],[77.87727,12.86862],[77.88254,12.86856],[77.88475,12.87022],[77.89034,12.86966],[77.89492,12.87857],[77.90841,12.87881],[77.90876,12.88484],[77.92187,12.88474],[77.92509,12.89009],[77.92932,12.89092],[77.93601,12.88724],[77.9361,12.88361],[77.93463,12.88066],[77.92714,12.88152],[77.92772,12.87492],[77.94163,12.87274],[77.94178,12.87164],[77.94121,12.86822],[77.93642,12.86667],[77.93559,12.86275],[77.93135,12.86181],[77.92281,12.85556],[77.92424,12.85112],[77.91725,12.83885],[77.91807,12.83135],[77.92056,12.82816],[77.92651,12.83028],[77.92852,12.82678],[77.93434,12.8231],[77.94068,12.82334],[77.94217,12.83121],[77.94661,12.83871],[77.94058,12.84525],[77.93999,12.85314],[77.94365,12.85782],[77.95234,12.85712],[77.95278,12.85013],[77.963,12.85018],[77.96535,12.84818],[77.96257,12.83737],[77.96432,12.83284],[77.9727,12.83282],[77.97405,12.83483],[77.98039,12.83506],[77.97927,12.82704],[77.9868,12.82182],[77.98978,12.82155],[77.98852,12.80819],[77.99562,12.80587],[77.99669,12.80787],[78.00646,12.80858],[78.00975,12.80574],[78.01531,12.81379],[78.01277,12.81882],[78.0058,12.82217],[78.00392,12.8256],[78.01062,12.83091],[78.01466,12.82982],[78.0183,12.83105],[78.01915,12.84394],[78.02433,12.84174],[78.02899,12.84519],[78.0297,12.84891],[78.02407,12.85251],[78.02387,12.8565],[78.03065,12.85802],[78.03073,12.85245],[78.05047,12.84874],[78.05333,12.85385],[78.05905,12.85117],[78.06021,12.84383],[78.0712,12.8424],[78.07652,12.83965],[78.07726,12.8381],[78.07508,12.8362],[78.07386,12.83051],[78.0862,12.83194],[78.08813,12.82787],[78.08753,12.82488],[78.09017,12.8235],[78.09016,12.81736],[78.10473,12.80908],[78.10936,12.80449],[78.12036,12.80171],[78.12188,12.79925],[78.12499,12.79819],[78.12595,12.79168],[78.13126,12.7838],[78.13424,12.78197],[78.13572,12.78309],[78.1363,12.78185],[78.14515,12.78093],[78.16766,12.77008],[78.17163,12.77379],[78.1774,12.77595],[78.18239,12.77425],[78.18426,12.77622],[78.18896,12.77191],[78.19208,12.77428],[78.19516,12.77384],[78.21286,12.76503],[78.22389,12.76588],[78.23095,12.76066],[78.23898,12.76838],[78.24564,12.78826],[78.24656,12.80166],[78.25056,12.81221],[78.25234,12.82894],[78.2522,12.86055],[78.25366,12.8622],[78.25814,12.8604],[78.26527,12.86201],[78.2684,12.86769],[78.27171,12.86696],[78.2821,12.85931],[78.31245,12.85852],[78.31559,12.86755],[78.31363,12.87645],[78.33102,12.87558],[78.33224,12.8807],[78.33708,12.88236],[78.33799,12.88621],[78.33452,12.88921],[78.33179,12.88884],[78.33088,12.88536],[78.32918,12.88459],[78.32169,12.88556],[78.32033,12.88726],[78.32407,12.89291],[78.3225,12.89749],[78.32353,12.90178],[78.32631,12.9045],[78.33106,12.90187],[78.33973,12.90318],[78.34407,12.9085],[78.34197,12.9119],[78.3466,12.91404],[78.34905,12.92899],[78.35385,12.93025],[78.34971,12.93571],[78.35587,12.94074],[78.37672,12.91794],[78.37825,12.91385],[78.38563,12.91144],[78.38576,12.90937],[78.3887,12.90686],[78.3964,12.90731],[78.39867,12.91731],[78.4089,12.90927],[78.41221,12.90323],[78.42865,12.90208],[78.43039,12.90479],[78.4337,12.90454],[78.4359,12.90945],[78.43495,12.91184],[78.43884,12.91366],[78.44558,12.9118],[78.44649,12.90819],[78.44396,12.903],[78.44923,12.89824],[78.44724,12.89221],[78.44882,12.8901],[78.45589,12.88747],[78.46411,12.8777],[78.46205,12.87106],[78.46477,12.86676],[78.46946,12.88964],[78.4667,12.90541],[78.45925,12.90873],[78.4523,12.91767],[78.44453,12.91963],[78.43802,12.92901],[78.42818,12.93209],[78.42282,12.92335],[78.41882,12.92172],[78.41789,12.92789],[78.41574,12.92968],[78.4152,12.93336],[78.41309,12.9334],[78.41355,12.93932],[78.41116,12.94527],[78.41376,12.94835],[78.42038,12.94774],[78.4215,12.95463],[78.41927,12.95868],[78.42916,12.95746],[78.4297,12.95913],[78.43458,12.96079],[78.43797,12.96399],[78.43272,12.9678],[78.43474,12.97144],[78.43248,12.97796],[78.43533,12.98104],[78.45269,12.97677],[78.45972,12.97725],[78.46746,12.97502],[78.46858,12.98272],[78.47481,12.99144],[78.47187,12.99262],[78.4677,12.99854],[78.46826,13.00462],[78.46361,13.00532],[78.46454,13.01179],[78.46345,13.01634],[78.46482,13.02042],[78.46141,13.02569],[78.4622,13.04321],[78.4648,13.04466],[78.47312,13.04292],[78.47796,13.05009],[78.47849,13.05454],[78.48736,13.05236],[78.49806,13.0612],[78.51425,13.06186],[78.51568,13.06551],[78.51512,13.06997],[78.51077,13.07803],[78.50862,13.07902],[78.50947,13.0915],[78.51607,13.09655],[78.52339,13.09469],[78.52285,13.09772],[78.52448,13.1012],[78.53246,13.10567],[78.53851,13.10573],[78.53745,13.10861],[78.52683,13.11222],[78.52527,13.11445],[78.52262,13.11496],[78.52303,13.11841],[78.51853,13.11982],[78.51893,13.12511],[78.51704,13.13159],[78.52151,13.13181],[78.52156,13.13013],[78.52334,13.13045],[78.52608,13.13407],[78.52667,13.13894],[78.53126,13.14137],[78.54465,13.142],[78.54836,13.14854],[78.54087,13.15348],[78.5414,13.15574],[78.55011,13.16419],[78.5682,13.16176],[78.56873,13.16562],[78.57337,13.1689],[78.57649,13.16712],[78.57977,13.16736],[78.57648,13.17455],[78.57606,13.18669],[78.5673,13.19326],[78.56646,13.19182],[78.55582,13.18864],[78.54976,13.18969],[78.55006,13.20018],[78.56053,13.19877],[78.56779,13.20152],[78.57112,13.21204],[78.57626,13.21151],[78.5787,13.21299],[78.57946,13.21563],[78.57644,13.21901],[78.5664,13.22085],[78.56873,13.2374],[78.57194,13.24259],[78.5705,13.24259],[78.57014,13.2471],[78.57906,13.25366],[78.5853,13.2622],[78.58764,13.27125],[78.58736,13.28064],[78.57865,13.28035],[78.57634,13.28499],[78.57755,13.29528],[78.57149,13.30337],[78.56954,13.30922],[78.56555,13.312],[78.56321,13.30939],[78.56492,13.30691],[78.56481,13.29473],[78.56164,13.28851],[78.55639,13.28384],[78.5536,13.28331],[78.54533,13.28789],[78.53932,13.28787],[78.53639,13.27241],[78.53218,13.26694],[78.52667,13.26842],[78.52651,13.27162],[78.52196,13.273],[78.52165,13.27616],[78.51979,13.27711],[78.51993,13.28277],[78.51335,13.28523],[78.514,13.29059],[78.50485,13.29137],[78.49878,13.29956],[78.49674,13.29861],[78.47931,13.30129],[78.48124,13.31018],[78.48363,13.31304],[78.4834,13.32117],[78.4769,13.32264],[78.47015,13.31983],[78.46948,13.31709],[78.46666,13.31512],[78.45772,13.31384],[78.45263,13.31008],[78.44421,13.30811],[78.44001,13.32181],[78.44124,13.32489],[78.44038,13.32843],[78.42795,13.33129],[78.42176,13.32827],[78.41888,13.32057],[78.4011,13.31547],[78.39927,13.32069],[78.39216,13.3253],[78.38713,13.33179],[78.37715,13.33197],[78.37825,13.33719],[78.38303,13.34359],[78.38768,13.3428],[78.38842,13.3391],[78.38487,13.33489],[78.39442,13.33382],[78.40349,13.33606],[78.40729,13.33752],[78.4084,13.34569],[78.39321,13.35074],[78.39486,13.35433],[78.37764,13.36315],[78.3761,13.36113],[78.37083,13.36151],[78.36967,13.35826],[78.36581,13.35865],[78.36508,13.3618],[78.36906,13.37319],[78.37236,13.37846],[78.37878,13.38365],[78.38168,13.39698],[78.38106,13.40882],[78.37922,13.41483],[78.38075,13.41887],[78.37744,13.42403],[78.37751,13.43188],[78.3756,13.43738],[78.3764,13.43945],[78.37897,13.44007],[78.37836,13.44372],[78.37573,13.44389],[78.37285,13.45214],[78.37456,13.46195],[78.37236,13.46335],[78.37082,13.46952],[78.37879,13.48204],[78.37805,13.50017],[78.37485,13.5027],[78.37685,13.50524],[78.37532,13.50895],[78.38552,13.51556],[78.38411,13.5249],[78.39364,13.54063],[78.39313,13.55256],[78.40667,13.57686],[78.40155,13.5785],[78.402,13.58797],[78.39617,13.58817],[78.39346,13.59066],[78.38429,13.59186],[78.36531,13.58951],[78.36493,13.58808],[78.36124,13.58899],[78.34863,13.58687],[78.34657,13.5905],[78.32617,13.59484],[78.31496,13.59142],[78.30773,13.59222],[78.27048,13.58815],[78.2586,13.58301],[78.25804,13.58569],[78.24929,13.59088],[78.24369,13.59684],[78.24211,13.59565],[78.23634,13.59858],[78.23439,13.59712],[78.23509,13.59106],[78.23258,13.58598],[78.22622,13.58744],[78.21923,13.59246],[78.21621,13.59062],[78.21408,13.58323],[78.20784,13.57699],[78.20292,13.56878],[78.19297,13.56485],[78.18961,13.57521],[78.19026,13.59014],[78.19901,13.59924],[78.20333,13.60651],[78.20377,13.61828],[78.20232,13.61943],[78.2042,13.62842],[78.17505,13.63061],[78.16822,13.63285],[78.16907,13.65394],[78.16758,13.65583],[78.15613,13.65862],[78.1465,13.65671],[78.13391,13.6595],[78.13055,13.65914],[78.12557,13.65585],[78.11429,13.65736],[78.10847,13.65311],[78.10225,13.65106],[78.09895,13.6428],[78.08711,13.64307],[78.0869,13.65117],[78.08974,13.6591],[78.07855,13.66727],[78.07701,13.67335],[78.06572,13.67614],[78.06731,13.6797],[78.07124,13.68238],[78.07359,13.68773],[78.07089,13.68846],[78.06961,13.6908],[78.06908,13.69781],[78.07268,13.69848],[78.08014,13.69664],[78.08588,13.69219],[78.0921,13.69256],[78.09242,13.69117],[78.11322,13.69274],[78.11471,13.70342],[78.1208,13.71562],[78.11585,13.72253],[78.11101,13.7258],[78.10433,13.73654],[78.09832,13.73779],[78.09152,13.74228],[78.09988,13.75846],[78.1138,13.76343],[78.11919,13.77251],[78.12216,13.78132],[78.1264,13.78638],[78.12269,13.79878],[78.11375,13.80747],[78.11479,13.81199],[78.1254,13.83161],[78.1222,13.83895],[78.12363,13.84535],[78.11654,13.85187],[78.11681,13.85883],[78.11478,13.86289],[78.10185,13.8617],[78.094,13.86481],[78.08994,13.8647],[78.08191,13.86124],[78.08261,13.86429],[78.08054,13.86754],[78.079,13.88116],[78.0643,13.88664],[78.06183,13.88842],[78.06225,13.8908],[78.06065,13.89196],[78.04887,13.89609],[78.05083,13.87599],[78.05011,13.87186],[78.04625,13.86635],[78.04619,13.86213],[78.04133,13.86027],[78.03185,13.86425],[78.02123,13.86383],[78.01672,13.86496],[78.01158,13.87194],[78.00048,13.87293],[77.99832,13.86908],[77.99206,13.86882],[77.98951,13.8626],[77.98885,13.85377],[77.98722,13.85407],[77.98298,13.84727],[77.9761,13.82949],[77.96054,13.82945],[77.95298,13.82735],[77.95242,13.82908],[77.95614,13.83122],[77.95625,13.83593],[77.95368,13.83856],[77.9548,13.84224],[77.95416,13.85516],[77.94906,13.8707],[77.94908,13.88645],[77.95213,13.88983],[77.98459,13.8974],[77.98662,13.903],[77.9831,13.90487],[77.98376,13.91576],[77.98025,13.92786],[77.98753,13.9555],[77.98262,13.95769],[77.96743,13.96016],[77.96422,13.95556],[77.96195,13.95497],[77.96,13.94051],[77.95734,13.93672],[77.95451,13.93854],[77.9462,13.93534],[77.93713,13.91866],[77.92677,13.90533],[77.91542,13.90785],[77.9054,13.91644],[77.89968,13.91659],[77.89582,13.92036],[77.89535,13.92563],[77.89891,13.93064],[77.89569,13.94104],[77.86861,13.93601],[77.85485,13.93818],[77.83882,13.93589],[77.8308,13.94039],[77.82659,13.94472],[77.81484,13.93193],[77.81349,13.91462],[77.81703,13.90831],[77.81618,13.90298],[77.81999,13.89978],[77.82682,13.89921],[77.83196,13.89567],[77.83554,13.88097],[77.82813,13.87654],[77.82733,13.87444],[77.83707,13.86974],[77.83023,13.86558],[77.82225,13.86474],[77.82019,13.86321],[77.81485,13.85778],[77.81203,13.84898],[77.80808,13.85059],[77.79301,13.84894],[77.78227,13.84408],[77.7822,13.83894],[77.78426,13.83439],[77.78909,13.83047],[77.78876,13.82316],[77.78153,13.81829],[77.76351,13.81722],[77.74793,13.81039],[77.74514,13.81013],[77.74072,13.81242],[77.73158,13.80757],[77.72929,13.80221],[77.71931,13.80027],[77.72228,13.79394],[77.72194,13.79],[77.71951,13.78809],[77.71868,13.7841],[77.71974,13.775],[77.72222,13.76885],[77.71999,13.7651],[77.7201,13.75597],[77.71736,13.74107],[77.71514,13.74376],[77.70846,13.74102],[77.70329,13.76979],[77.69518,13.7707],[77.67962,13.76218],[77.67172,13.76048],[77.67761,13.76669],[77.67987,13.77233],[77.68146,13.7796],[77.68008,13.78678],[77.66984,13.78391],[77.66135,13.78538],[77.65129,13.78407],[77.64599,13.77876],[77.62107,13.76844],[77.6175,13.76193],[77.61884,13.75496],[77.62521,13.75298],[77.62964,13.7542],[77.64223,13.7468],[77.64143,13.74195],[77.63697,13.73941],[77.63359,13.73958],[77.62772,13.7346],[77.62443,13.73523],[77.61361,13.75192],[77.59997,13.75076],[77.59602,13.74819],[77.58685,13.73349],[77.58055,13.73508],[77.57712,13.73831],[77.57168,13.7382],[77.56485,13.72618],[77.56057,13.72241],[77.5589,13.72353],[77.55375,13.73654],[77.54929,13.74064],[77.5493,13.74887],[77.54744,13.7529],[77.54122,13.75594],[77.52727,13.75381],[77.5252,13.75299],[77.52195,13.74456],[77.5271,13.74152],[77.53664,13.7306],[77.53437,13.707],[77.52834,13.69301],[77.52524,13.691],[77.52126,13.69213],[77.51963,13.69627],[77.51237,13.69725],[77.51451,13.70502],[77.51417,13.71321],[77.48504,13.71478],[77.48652,13.7041],[77.48827,13.70415],[77.48789,13.69977],[77.49122,13.69519],[77.49211,13.68981],[77.48783,13.68917],[77.48788,13.68666],[77.47424,13.68611],[77.45533,13.68226],[77.45609,13.69072],[77.45466,13.69104],[77.45459,13.69564],[77.453,13.69601],[77.4525,13.70405],[77.45074,13.70483],[77.45007,13.7109],[77.46166,13.70965],[77.46508,13.71088],[77.46336,13.72292],[77.46464,13.73413],[77.46667,13.73997],[77.46765,13.75317],[77.47055,13.75802],[77.46515,13.75868],[77.46379,13.7715],[77.46043,13.78047],[77.46138,13.78839],[77.45649,13.78872],[77.46087,13.803],[77.46463,13.80318],[77.46459,13.80608],[77.46423,13.80792],[77.45746,13.80722],[77.45479,13.80985],[77.44533,13.81102],[77.44059,13.80657],[77.43703,13.7967],[77.42257,13.79909],[77.42549,13.80322],[77.42827,13.80347],[77.42865,13.80681],[77.41967,13.8096],[77.4185,13.80624],[77.41611,13.80668],[77.41643,13.80876],[77.42364,13.82374],[77.42737,13.82834],[77.4274,13.8322],[77.43132,13.83665],[77.43252,13.84322],[77.42917,13.8448],[77.42683,13.84112],[77.4197,13.84161],[77.41554,13.83973],[77.39938,13.84105],[77.3819,13.83936],[77.3794,13.84084],[77.38119,13.84729],[77.37689,13.85069],[77.37364,13.85263],[77.36243,13.85425],[77.35732,13.8513],[77.35328,13.84552],[77.34555,13.8411],[77.33684,13.83275],[77.32538,13.83324],[77.32469,13.83989],[77.32307,13.84],[77.32514,13.84538],[77.32165,13.84702],[77.32145,13.85592],[77.31907,13.85722],[77.31646,13.86327],[77.31149,13.86658],[77.31055,13.86288],[77.30358,13.86203],[77.29638,13.85701],[77.29492,13.8574],[77.29016,13.84825],[77.28828,13.84748],[77.28027,13.85105],[77.25669,13.84652],[77.25615,13.85167],[77.25911,13.86314],[77.24636,13.86791],[77.24868,13.87352],[77.24472,13.88327],[77.24778,13.88832],[77.24827,13.90121],[77.24514,13.90301],[77.23647,13.90102],[77.23562,13.90414],[77.23065,13.90333],[77.22989,13.89161],[77.22666,13.88216],[77.22483,13.88292],[77.22401,13.88122],[77.21985,13.86772],[77.21541,13.86791],[77.21703,13.88374],[77.21555,13.88617],[77.21313,13.88619],[77.2102,13.88494],[77.20991,13.87807],[77.20043,13.86304],[77.18139,13.86984],[77.18568,13.87617],[77.18584,13.89233],[77.19084,13.91187],[77.18808,13.91391],[77.18471,13.92519],[77.16992,13.92061],[77.16193,13.90662],[77.16205,13.89906],[77.16876,13.88957],[77.16876,13.88052],[77.17136,13.87111],[77.16858,13.86449],[77.14764,13.86848],[77.13604,13.85652],[77.1282,13.85646],[77.13217,13.8462],[77.15601,13.84435],[77.15368,13.83414],[77.16549,13.83311],[77.16868,13.82962],[77.16772,13.82121],[77.16265,13.81684],[77.15952,13.81686],[77.16279,13.81237],[77.16258,13.80866],[77.15752,13.80603],[77.1621,13.80476],[77.16285,13.79846],[77.16516,13.79447],[77.17559,13.7836],[77.17851,13.78268],[77.17305,13.76201],[77.15111,13.76621],[77.14087,13.76504],[77.13983,13.7611],[77.13684,13.7583],[77.12233,13.7613],[77.11788,13.7645],[77.10596,13.76776],[77.09044,13.76714],[77.09022,13.76236],[77.08547,13.76234],[77.08383,13.75664],[77.08396,13.74577],[77.08563,13.74244],[77.07589,13.74284],[77.06978,13.74522],[77.0647,13.74383],[77.05991,13.74933],[77.0602,13.75283],[77.05749,13.75296],[77.05897,13.75716],[77.05804,13.7603],[77.05184,13.76418],[77.04861,13.77018],[77.04406,13.77084],[77.04337,13.77779],[77.02447,13.77922],[77.02388,13.7679],[77.01735,13.7561],[77.01868,13.74867],[77.01658,13.74586],[77.0165,13.73851],[76.9985,13.74557],[76.99687,13.74775],[76.99839,13.75505],[76.9945,13.75999],[76.9929,13.77075],[76.9852,13.7908],[76.98919,13.79463],[76.99169,13.80267],[76.98974,13.81294],[76.97641,13.81732],[76.97802,13.82687],[76.98289,13.8289],[76.9889,13.83526],[76.99223,13.84901],[76.9968,13.84895],[77.00654,13.85206],[77.01422,13.86031],[77.01319,13.87152],[77.01847,13.87254],[77.01625,13.88441],[77.02032,13.88843],[77.02063,13.89235],[77.02325,13.89593],[77.02303,13.9026],[77.03222,13.90518],[77.04729,13.9066],[77.04422,13.91476],[77.04166,13.93343],[77.03704,13.93695],[77.02437,13.93995],[77.01421,13.95487],[77.00627,13.95646],[76.99377,13.96256],[76.99618,13.97676],[77.00033,13.98942],[76.99949,13.99034],[76.99637,13.99051],[76.98197,14.00163],[76.96539,14.0115],[76.94994,14.01509],[76.94378,14.0233],[76.94347,14.02974],[76.94016,14.0295],[76.93502,14.0328],[76.93113,14.0302],[76.9344,14.04464],[76.93238,14.05392],[76.95031,14.05356],[76.9586,14.05704],[76.97174,14.05802],[76.97646,14.06528],[76.97757,14.07129],[76.97526,14.074],[76.97497,14.08091],[76.97345,14.08352],[76.95941,14.09163],[76.9484,14.09205],[76.95353,14.09966],[76.94569,14.11821],[76.94426,14.12074],[76.93658,14.12428],[76.93587,14.12885],[76.93112,14.13102],[76.92498,14.13711],[76.91757,14.12884],[76.91284,14.12881],[76.9048,14.13364],[76.88952,14.13562],[76.88591,14.13824],[76.89052,14.14282],[76.89453,14.16781],[76.89837,14.16755],[76.89966,14.16923],[76.90054,14.16757],[76.90966,14.16796],[76.91975,14.16446],[76.92192,14.16942],[76.94237,14.17333],[76.94208,14.18067],[76.94467,14.18657],[76.94248,14.19109],[76.94271,14.1954],[76.94757,14.19818],[76.95114,14.19266],[76.95736,14.18811],[76.95976,14.18395],[76.95903,14.18262],[76.9606,14.18177],[76.97065,14.18241],[76.98377,14.17882],[76.99644,14.18027],[77.00546,14.18397],[77.02333,14.17669],[77.02603,14.17479],[77.02041,14.15716],[77.02183,14.15195],[77.0201,14.1309],[77.02586,14.12994],[77.02622,14.12502],[77.02181,14.12325],[77.02406,14.11261],[77.01636,14.10424],[77.01467,14.1],[77.01912,14.09639],[77.01842,14.09463],[77.0298,14.08817],[77.02888,14.07781],[77.02544,14.06573],[77.02768,14.06175],[77.03152,14.05646],[77.03476,14.0557],[77.04571,14.05669],[77.06742,14.05202],[77.07612,14.05327],[77.07532,14.04348],[77.07892,14.04264],[77.09512,14.04244],[77.10237,14.04524],[77.1274,14.04701],[77.13184,14.04392],[77.1364,14.0229],[77.14036,14.01796],[77.14173,14.0132],[77.14107,14.00386],[77.14922,14.00116],[77.17283,14.00108],[77.17095,14.012],[77.174,14.01298],[77.20467,14.00825],[77.20997,14.01104],[77.21572,14.01088],[77.21982,14.01357],[77.24535,14.01194],[77.24817,14.01757],[77.25679,14.02238],[77.26059,14.02886],[77.26312,14.02873],[77.27036,14.03448],[77.27732,14.03465],[77.27686,14.03197],[77.27876,14.03241],[77.27931,14.02602],[77.275,14.01128],[77.28188,14.01291],[77.29209,14.02001],[77.29827,14.02161],[77.30142,14.02741],[77.30658,14.032],[77.31081,14.03253],[77.32223,14.02999],[77.32268,14.02301],[77.33686,14.00447],[77.33622,13.99537],[77.34818,13.99447],[77.36109,13.99081],[77.35934,13.98383],[77.35595,13.97908],[77.35213,13.96875],[77.35385,13.96279],[77.34949,13.95814],[77.37129,13.95275],[77.36745,13.94968],[77.35521,13.93076],[77.34784,13.91596],[77.35016,13.91341],[77.35293,13.9139],[77.35445,13.90411],[77.35763,13.90337],[77.36849,13.90295],[77.38717,13.90625],[77.39788,13.90618],[77.39994,13.89646],[77.39874,13.88813],[77.40002,13.88829],[77.40546,13.88945],[77.41057,13.89631],[77.42051,13.89933],[77.42283,13.90282],[77.42841,13.90593],[77.42835,13.90908],[77.43227,13.91054],[77.43504,13.91501],[77.4349,13.91967],[77.41588,13.9242],[77.41488,13.93663],[77.41209,13.94556],[77.43072,13.94508],[77.43536,13.94751],[77.43758,13.95551],[77.43531,13.95766],[77.43475,13.96438],[77.43788,13.97552],[77.43402,13.98016],[77.42766,13.97968],[77.42589,13.98611],[77.39569,13.98373],[77.38164,13.97623],[77.37967,13.98984],[77.38765,14.00571],[77.39016,14.0167],[77.38491,14.01603],[77.3323,14.03069],[77.33509,14.0454],[77.3405,14.06019],[77.34593,14.05967],[77.36054,14.06256],[77.36366,14.07301],[77.37361,14.07701],[77.37562,14.07935],[77.38127,14.09784],[77.38618,14.09756],[77.38881,14.09948],[77.39761,14.10955],[77.40092,14.11871],[77.40103,14.12018],[77.39724,14.12318],[77.39736,14.12544],[77.39061,14.12664],[77.3821,14.1235],[77.37566,14.11868],[77.36168,14.11533],[77.35355,14.10969],[77.34978,14.10313],[77.34747,14.10364],[77.35148,14.12037],[77.35137,14.12998],[77.35171,14.1311],[77.36057,14.13083],[77.37894,14.13584],[77.38335,14.14413],[77.38507,14.15326],[77.38804,14.15363],[77.38925,14.15965],[77.39488,14.16077],[77.39474,14.1687],[77.39162,14.17282],[77.39372,14.17425],[77.40785,14.17352],[77.42036,14.17695],[77.42277,14.17644],[77.4226,14.17298],[77.4302,14.17046],[77.44575,14.1717],[77.45682,14.16962],[77.467,14.17164],[77.46809,14.16489],[77.48083,14.16474],[77.48813,14.16167],[77.49961,14.1598],[77.50351,14.15712],[77.51065,14.17305],[77.51434,14.17665],[77.51343,14.17785],[77.5152,14.18294],[77.51703,14.18281],[77.51707,14.1844],[77.51579,14.18714],[77.50465,14.19398],[77.50133,14.20477],[77.50328,14.21054],[77.49449,14.22424],[77.49592,14.23199],[77.49279,14.23101],[77.49373,14.23301],[77.49237,14.23484],[77.4966,14.23715],[77.50386,14.26375],[77.49828,14.27885],[77.49275,14.27815],[77.49076,14.2813],[77.48712,14.28172],[77.48181,14.29161],[77.47893,14.29216],[77.46606,14.28309],[77.45965,14.2805],[77.45028,14.28071],[77.45063,14.28279],[77.44813,14.28261],[77.44518,14.29523],[77.44622,14.31747],[77.43806,14.31638],[77.43153,14.31286],[77.4284,14.32864],[77.42308,14.32818],[77.41213,14.33651],[77.40776,14.3376],[77.3928,14.33583],[77.37904,14.32272],[77.37707,14.3048],[77.37782,14.30139],[77.3824,14.29901],[77.38514,14.29268],[77.38664,14.28167],[77.38877,14.28084],[77.38736,14.27087],[77.39578,14.26612],[77.40538,14.26669],[77.40694,14.25969],[77.40883,14.25985],[77.40967,14.23192],[77.41148,14.23238],[77.41212,14.22769],[77.41769,14.22584],[77.41939,14.21162],[77.41413,14.20476],[77.4095,14.20554],[77.39199,14.1989],[77.38709,14.20002],[77.38667,14.20352],[77.38322,14.20744],[77.3842,14.22095],[77.37917,14.22648],[77.36637,14.23285],[77.35949,14.23401],[77.36012,14.24531],[77.36383,14.25469],[77.36186,14.26875],[77.36382,14.27583],[77.33906,14.2769],[77.33016,14.27986],[77.31426,14.28051],[77.30534,14.28344],[77.28933,14.2813],[77.28354,14.28274],[77.28289,14.28607],[77.28795,14.29876],[77.28883,14.30547],[77.28854,14.32714],[77.28744,14.32716],[77.28657,14.3401],[77.28484,14.3401],[77.28388,14.33753],[77.27712,14.33754],[77.26931,14.33211],[77.26357,14.3328],[77.25858,14.33092],[77.25828,14.32748],[77.25336,14.32526],[77.25387,14.32223],[77.24734,14.31781],[77.2382,14.31736],[77.22867,14.3212],[77.21347,14.31878],[77.19742,14.32118],[77.18404,14.33247],[77.18104,14.33038],[77.17795,14.33422],[77.17868,14.33548],[77.16932,14.33544],[77.16691,14.34208],[77.15734,14.3421],[77.15266,14.33914],[77.13921,14.34014],[77.1357,14.33687],[77.137,14.33176],[77.13633,14.32302],[77.13059,14.30684],[77.12538,14.29988],[77.11564,14.29248],[77.11552,14.27424],[77.11019,14.26816],[77.11169,14.26536],[77.11119,14.26158],[77.12048,14.26293],[77.11856,14.25682],[77.11533,14.25453],[77.11832,14.24481],[77.11565,14.23758],[77.11667,14.22638],[77.11486,14.22314],[77.10776,14.21991],[77.1008,14.21714],[77.08117,14.21415],[77.07589,14.22336],[77.06776,14.2284],[77.0618,14.22946],[77.06007,14.23228],[77.06028,14.2362],[77.05694,14.24067],[77.05773,14.2438],[77.05246,14.2455],[77.03605,14.24674],[77.03614,14.24487],[77.03054,14.24419],[77.03036,14.24227],[77.00848,14.238],[77.00566,14.23579],[76.99894,14.24087],[76.99194,14.24141],[76.9856,14.24733],[76.9762,14.24613],[76.96983,14.24337],[76.95983,14.24496],[76.95194,14.2419],[76.94006,14.24461],[76.9358,14.25937],[76.9249,14.27378],[76.92818,14.2793],[76.93711,14.28034],[76.93877,14.28301],[76.94738,14.28617],[76.95672,14.29435],[76.94565,14.31318],[76.9272,14.31451],[76.90787,14.32295],[76.90339,14.32268],[76.89228,14.34126],[76.88464,14.34754],[76.88201,14.35971],[76.88375,14.36466],[76.88482,14.39571],[76.89863,14.39795],[76.9046,14.40392],[76.91583,14.42069],[76.93142,14.41052],[76.94271,14.39934],[76.94676,14.40615],[76.94779,14.41316],[76.94479,14.4509],[76.94596,14.45255],[76.95037,14.45237],[76.9568,14.45198],[76.9598,14.45021],[76.96833,14.46179],[76.9684,14.46511],[76.97167,14.46814],[76.97544,14.47786],[76.97481,14.48533],[76.95,14.48676],[76.94875,14.48914],[76.94339,14.48948],[76.92091,14.49052],[76.90069,14.48921],[76.88925,14.48317],[76.88651,14.48353],[76.88387,14.47927],[76.88427,14.47708],[76.86796,14.47404],[76.8651,14.47823],[76.86246,14.49276],[76.8592,14.49746],[76.8556,14.50959],[76.84923,14.51258],[76.8419,14.51937],[76.83549,14.5213],[76.83282,14.52911],[76.83101,14.53036],[76.82346,14.52682],[76.81941,14.52994],[76.81254,14.53173],[76.80628,14.53106],[76.80282,14.5422],[76.79786,14.54917],[76.79136,14.55465],[76.78337,14.58044],[76.78184,14.5965],[76.78033,14.59704],[76.78023,14.59306],[76.76499,14.60212],[76.76692,14.61827],[76.77253,14.63911],[76.77527,14.68096],[76.78622,14.69578],[76.78651,14.70843],[76.80294,14.74188],[76.79415,14.75127],[76.78953,14.76006],[76.78898,14.77228],[76.78269,14.78594],[76.78396,14.78697],[76.78846,14.78582],[76.78864,14.78697],[76.79383,14.7854],[76.80296,14.7856],[76.81766,14.7876],[76.82034,14.78888],[76.81908,14.79312],[76.83239,14.79291],[76.83257,14.79039],[76.83675,14.79077],[76.83737,14.81056],[76.85146,14.8086],[76.85398,14.80944],[76.85456,14.81809],[76.84601,14.82205],[76.8455,14.83405],[76.84179,14.83655],[76.85406,14.84323],[76.85541,14.84878],[76.85489,14.85892],[76.85719,14.86911],[76.85388,14.86918],[76.85339,14.88321],[76.85145,14.88335],[76.85247,14.88697],[76.84552,14.88718],[76.84548,14.88929],[76.84733,14.89598],[76.86384,14.89558],[76.86962,14.93771],[76.86609,14.95753],[76.86746,14.96982],[76.84194,14.96641],[76.83527,14.96003],[76.83411,14.95646],[76.8285,14.95646],[76.81828,14.96944],[76.79627,14.96917],[76.77761,14.97545],[76.76654,14.97562],[76.76057,14.98986],[76.76786,14.9901],[76.76957,14.99176],[76.77238,14.99084],[76.77503,14.99306],[76.77874,15.00456],[76.78363,15.00478],[76.78712,15.00793],[76.79013,15.02071],[76.78572,15.02768],[76.78575,15.03715],[76.78343,15.04261],[76.78035,15.04269],[76.77663,15.05468],[76.77361,15.05912],[76.77524,15.07225],[76.77989,15.07604],[76.77669,15.0784],[76.77787,15.07987],[76.78215,15.07733],[76.7853,15.08231],[76.78602,15.08781],[76.79235,15.08757],[76.79392,15.09185],[76.80024,15.09583],[76.81161,15.08638],[76.82377,15.08001],[76.83602,15.07923],[76.85459,15.06512],[76.86143,15.06198],[76.86087,15.05979],[76.86411,15.05803],[76.86589,15.05968],[76.86519,15.05522],[76.86919,15.05342],[76.87784,15.03546],[76.87716,15.03021],[76.89498,15.03707],[76.90722,15.03252],[76.91837,15.03552],[76.92222,15.03128],[76.93586,15.02941],[76.9496,15.03037],[76.96592,15.01804],[76.98522,15.01519],[76.98603,15.02649],[77.00303,15.03091],[77.00408,15.03383],[77.03595,15.03128],[77.04032,15.0331],[77.04956,15.03308],[77.05043,15.02447],[77.04412,15.00984],[77.06902,15.00476],[77.08245,15.00608],[77.08475,15.03071],[77.09085,15.02933],[77.09366,15.03614],[77.11293,15.03406],[77.11527,15.0464],[77.1195,15.04569],[77.12081,15.054],[77.12821,15.07231],[77.13012,15.10077],[77.13696,15.10234],[77.13694,15.10425],[77.14208,15.10457],[77.15017,15.11161],[77.15633,15.12293],[77.15728,15.14047],[77.14975,15.13976],[77.149,15.14142],[77.13779,15.14353],[77.13714,15.1478],[77.13472,15.14829],[77.13541,15.14975],[77.14076,15.15859],[77.16283,15.15736],[77.16487,15.1682],[77.16736,15.16815],[77.16742,15.17125],[77.16913,15.17135],[77.16619,15.18834],[77.16195,15.20111],[77.15931,15.201],[77.15482,15.21482],[77.15166,15.2147],[77.15197,15.21757],[77.14719,15.22081],[77.14766,15.22391],[77.12512,15.22694],[77.12639,15.24044],[77.13251,15.23969],[77.13283,15.24169],[77.13622,15.24096],[77.14028,15.24748],[77.14054,15.25172],[77.14304,15.25184],[77.14378,15.25721],[77.16767,15.2585],[77.16693,15.26858],[77.15926,15.26784],[77.15285,15.27406],[77.14714,15.27292],[77.1471,15.27495],[77.15194,15.27568],[77.15158,15.29243],[77.11838,15.29485],[77.11701,15.32574],[77.11259,15.32743],[77.1131,15.33368],[77.10145,15.33368],[77.07439,15.32589],[77.06373,15.32802],[77.06601,15.33774],[77.0649,15.34355],[77.05903,15.34896],[77.04474,15.35569],[77.04183,15.36192],[77.04135,15.37099],[77.04742,15.3834],[77.04725,15.39002],[77.03963,15.39702],[77.03294,15.39971],[77.02923,15.40436],[77.02897,15.40768],[77.0339,15.41927],[77.03484,15.43029],[77.03353,15.43289],[77.0275,15.43974],[77.01077,15.44874],[76.9973,15.47801],[76.99121,15.4829],[76.9771,15.48976],[76.97402,15.49823],[76.97453,15.51051],[76.99233,15.50579],[77.00946,15.50461],[77.01479,15.50183],[77.02279,15.50224],[77.02884,15.50046],[77.03004,15.50265],[77.03136,15.50709],[77.03132,15.54408],[77.02624,15.58174],[77.03291,15.60498],[77.0313,15.61159],[77.03272,15.62063],[77.03111,15.62099],[77.03146,15.62683],[77.03007,15.62683],[77.03043,15.63449],[77.03412,15.63456],[77.03432,15.6368],[77.04599,15.63864],[77.07173,15.64665],[77.08319,15.65915],[77.087,15.65763],[77.09095,15.65339],[77.10136,15.6485],[77.1034,15.64284],[77.10747,15.64003],[77.10625,15.63744],[77.10832,15.63783],[77.11564,15.63251],[77.12142,15.63108],[77.12888,15.66586],[77.12014,15.66761],[77.12137,15.67109],[77.11339,15.67569],[77.1142,15.67798],[77.10928,15.67988],[77.10923,15.68146],[77.09503,15.68836],[77.09379,15.69038],[77.07869,15.69514],[77.08064,15.69853],[77.08257,15.6987],[77.08741,15.71549],[77.07887,15.71625],[77.07969,15.72751],[77.0491,15.73026],[77.04938,15.74004],[77.04594,15.74036],[77.04799,15.75622],[77.05431,15.75617],[77.05646,15.76283],[77.05106,15.76452],[77.05231,15.76987],[77.05695,15.7687],[77.06094,15.78626],[77.06641,15.78505],[77.06717,15.78774],[77.06712,15.80269],[77.06373,15.80319],[77.06547,15.82735],[77.06314,15.82958],[77.05888,15.82999],[77.05344,15.82884],[77.05098,15.8304],[77.04809,15.82797],[77.04766,15.83004],[77.04256,15.82884],[77.04069,15.83274],[77.03585,15.82955],[77.02519,15.83751],[77.03262,15.85692],[77.05589,15.88154],[77.06124,15.89448],[77.07103,15.90883],[77.08457,15.91864],[77.10565,15.92998],[77.13733,15.93818],[77.14314,15.9447],[77.15224,15.94908],[77.15933,15.95086],[77.17409,15.95077],[77.18529,15.95674],[77.20495,15.95504],[77.21859,15.95795],[77.23547,15.95714],[77.24887,15.96456],[77.28468,15.95381],[77.30107,15.958],[77.31143,15.9534],[77.32406,15.95016],[77.34814,15.95132],[77.36125,15.94942],[77.3801,15.93977],[77.39769,15.94448],[77.41631,15.94239],[77.42257,15.94749],[77.4296,15.94906],[77.466,15.9345],[77.49874,15.93318],[77.51344,15.92679],[77.51981,15.96691],[77.5164,15.96736],[77.51066,15.97516],[77.51109,15.97937],[77.50955,15.9804],[77.51405,16.00808],[77.50441,16.01133],[77.50434,16.01821],[77.50267,16.01871],[77.50225,16.02247],[77.49745,16.02867],[77.49803,16.02998],[77.49558,16.03098],[77.494,16.03699],[77.49535,16.0417],[77.49787,16.04409],[77.49681,16.04712],[77.49946,16.05372],[77.49651,16.05504],[77.49944,16.06102],[77.50261,16.05881],[77.50688,16.07964],[77.49366,16.08634],[77.50093,16.10619],[77.50875,16.10919],[77.51328,16.10802],[77.51081,16.11227],[77.50231,16.11717],[77.50022,16.12059],[77.48979,16.11962],[77.4916,16.13502],[77.49068,16.15958],[77.48615,16.16298],[77.49132,16.18453],[77.49949,16.19856],[77.49818,16.20956],[77.50115,16.22172],[77.50279,16.22366],[77.51215,16.22092],[77.51499,16.22196],[77.51566,16.22779],[77.51317,16.23085],[77.50356,16.23094],[77.49506,16.22712],[77.49234,16.2293],[77.49298,16.24408],[77.49007,16.25518],[77.5024,16.26306],[77.50514,16.2676],[77.50481,16.2758],[77.51043,16.27459],[77.51386,16.27784],[77.52187,16.27803],[77.5296,16.27548],[77.52933,16.2728],[77.53282,16.27168],[77.5369,16.2668],[77.54082,16.28546],[77.54508,16.29171],[77.56321,16.30164],[77.56888,16.3036],[77.582,16.29134],[77.59781,16.29311],[77.59337,16.29744],[77.59202,16.30217],[77.59538,16.31812],[77.59,16.3255],[77.59083,16.32928],[77.58803,16.33337],[77.59524,16.33963],[77.59392,16.34389],[77.57272,16.34093],[77.555,16.34877],[77.54604,16.35693],[77.53877,16.35821],[77.53143,16.36376],[77.5234,16.37583],[77.51437,16.37497],[77.49535,16.38116],[77.48969,16.38501],[77.47467,16.38177],[77.44098,16.38077],[77.43711,16.37861],[77.42953,16.36966],[77.42095,16.36623],[77.41144,16.36745],[77.4017,16.3713],[77.37805,16.38556],[77.35584,16.38264],[77.3491,16.38385],[77.33342,16.39537],[77.31393,16.39801],[77.3043,16.40173],[77.29745,16.4069],[77.28796,16.40864],[77.27828,16.42217],[77.26895,16.43046],[77.26207,16.45184],[77.24441,16.46331],[77.23576,16.47274],[77.23977,16.47625],[77.24581,16.47773],[77.25073,16.47493],[77.26499,16.47251],[77.294,16.47667],[77.29932,16.48791],[77.29871,16.49616],[77.3203,16.49222],[77.32357,16.48684],[77.32956,16.48591],[77.34309,16.48793],[77.34439,16.48694],[77.34637,16.49037],[77.35143,16.49106],[77.3547,16.48878],[77.36901,16.48867],[77.37007,16.50458],[77.37272,16.50966],[77.37779,16.5137],[77.38144,16.51571],[77.39102,16.5162],[77.39498,16.51969],[77.40221,16.52152],[77.41689,16.5173],[77.41912,16.52238],[77.41902,16.54892],[77.41045,16.549],[77.40376,16.55119],[77.40418,16.55418],[77.39996,16.55573],[77.3975,16.56476],[77.39262,16.56399],[77.39287,16.56997],[77.40001,16.56752],[77.40494,16.57189],[77.41178,16.57086],[77.41537,16.56752],[77.42376,16.56888],[77.42563,16.57219],[77.42855,16.57365],[77.43085,16.57887],[77.43971,16.58715],[77.46222,16.58548],[77.46483,16.59242],[77.46225,16.59766],[77.46391,16.59921],[77.4674,16.59884],[77.4678,16.60976],[77.45819,16.61071],[77.45365,16.61675],[77.45616,16.62299],[77.46392,16.62824],[77.46438,16.6325],[77.46825,16.63595],[77.47086,16.64375],[77.47611,16.65011],[77.47291,16.6528],[77.4624,16.65427],[77.46143,16.65112],[77.45702,16.64968],[77.45649,16.64681],[77.44468,16.63923],[77.44158,16.6411],[77.43434,16.64138],[77.43434,16.64336],[77.4386,16.64533],[77.42972,16.6562],[77.41901,16.65844],[77.41886,16.66857],[77.42817,16.6682],[77.43455,16.67098],[77.44255,16.66985],[77.44423,16.67569],[77.44658,16.67607],[77.44772,16.67931],[77.4639,16.6763],[77.4698,16.68703],[77.46989,16.7056],[77.47139,16.7062],[77.47116,16.71178],[77.47405,16.71656],[77.46381,16.71917],[77.46296,16.71797],[77.46133,16.719],[77.45779,16.71594],[77.45216,16.7196],[77.44718,16.72073],[77.44613,16.71649],[77.44198,16.71703],[77.44123,16.71312],[77.43846,16.71168],[77.4328,16.7173],[77.42767,16.71663],[77.42607,16.72287],[77.43097,16.72312],[77.43036,16.72637],[77.42832,16.7266],[77.42696,16.72891],[77.4298,16.7348],[77.4333,16.73669],[77.44315,16.76251],[77.43788,16.77471],[77.43772,16.78337],[77.4395,16.78913],[77.44107,16.78622],[77.46719,16.78045],[77.4745,16.78124],[77.4765,16.78837],[77.47339,16.78921],[77.47469,16.7931],[77.47426,16.80232],[77.4657,16.80592],[77.46646,16.80832],[77.46244,16.81374],[77.46324,16.82221],[77.45708,16.83018],[77.45948,16.83285],[77.46406,16.85059],[77.46001,16.87468],[77.46036,16.88475],[77.45589,16.88534],[77.45834,16.89409],[77.45646,16.89992],[77.45791,16.90951],[77.4547,16.91037],[77.45402,16.9139],[77.45842,16.91491],[77.4592,16.91731],[77.46652,16.91511],[77.46944,16.9192],[77.46941,16.92806],[77.4642,16.92985],[77.46829,16.93959],[77.46484,16.94418],[77.46721,16.94985],[77.46523,16.95661],[77.46595,16.95893],[77.47215,16.95714],[77.4783,16.96837],[77.48134,16.97043],[77.48289,16.98565],[77.47952,16.99602],[77.48656,17.00321],[77.49187,17.00366],[77.49783,17.00933],[77.5022,17.00937],[77.50253,17.0141],[77.49495,17.02709],[77.49665,17.04272],[77.48811,17.04717],[77.48766,17.04953],[77.48984,17.05054],[77.48345,17.05891],[77.47993,17.0688],[77.47898,17.07263],[77.48194,17.07585],[77.48098,17.07923],[77.47656,17.07943],[77.46725,17.08633],[77.46285,17.09408],[77.46469,17.10776],[77.46362,17.11],[77.45919,17.1091],[77.45563,17.11145],[77.45428,17.11485],[77.44955,17.11502],[77.4458,17.11796],[77.43849,17.11685],[77.436,17.11498],[77.40666,17.12451],[77.40382,17.13292],[77.38454,17.14003],[77.37792,17.13994],[77.37817,17.15266],[77.3669,17.15441],[77.36682,17.15898],[77.36372,17.15878],[77.36261,17.16448],[77.36677,17.1693],[77.3662,17.17221],[77.37001,17.17579],[77.3719,17.18113],[77.36946,17.18632],[77.37335,17.19087],[77.37396,17.19455],[77.37227,17.19556],[77.38174,17.19765],[77.39389,17.1944],[77.39641,17.20753],[77.39839,17.21031],[77.40375,17.20989],[77.40198,17.21412],[77.38876,17.21532],[77.38296,17.21798],[77.38019,17.22253],[77.40495,17.23653],[77.40827,17.24121],[77.41039,17.24041],[77.41145,17.23767],[77.42042,17.23762],[77.42254,17.25076],[77.42633,17.25646],[77.43578,17.26018],[77.444,17.27055],[77.45081,17.27053],[77.45356,17.2761],[77.45854,17.279],[77.45488,17.28724],[77.43793,17.29192],[77.44051,17.3013],[77.44298,17.30122],[77.4456,17.30774],[77.44765,17.3075],[77.44884,17.30962],[77.45219,17.31755],[77.45245,17.32747],[77.45601,17.33124],[77.45706,17.34741],[77.45487,17.35178],[77.45168,17.35268],[77.45106,17.35938],[77.45361,17.37399],[77.4791,17.37072],[77.476,17.36841],[77.47653,17.36371],[77.47443,17.36151],[77.48382,17.355],[77.4882,17.35873],[77.50263,17.35707],[77.51148,17.36058],[77.51576,17.36038],[77.52482,17.3647],[77.5298,17.37071],[77.53315,17.3805],[77.52622,17.38193],[77.52429,17.388],[77.53723,17.40225],[77.53784,17.40609],[77.53607,17.40798],[77.52983,17.40818],[77.51417,17.41418],[77.513,17.43087],[77.5373,17.44375],[77.55269,17.43705],[77.56151,17.43761],[77.57586,17.43071],[77.57619,17.45617],[77.58424,17.4545],[77.60292,17.44415],[77.61427,17.44595],[77.613,17.46683],[77.61523,17.47289],[77.63824,17.47352],[77.64051,17.47646],[77.64479,17.47757],[77.64766,17.48717],[77.64788,17.49608],[77.65689,17.50646],[77.65333,17.49389],[77.65228,17.48285],[77.65544,17.48308],[77.65736,17.48092],[77.67053,17.47789],[77.6768,17.47836],[77.6884,17.4752],[77.68963,17.48281],[77.68801,17.48943],[77.69245,17.49743],[77.6888,17.51094],[77.68772,17.51182],[77.68342,17.50818],[77.67749,17.50998],[77.67545,17.50862],[77.67302,17.50942],[77.66864,17.51161],[77.66654,17.51713],[77.66201,17.52282],[77.64527,17.52238],[77.637,17.52571],[77.62796,17.52363],[77.62339,17.52563],[77.62097,17.5304],[77.61936,17.52887],[77.61206,17.53476],[77.60738,17.53225],[77.60301,17.53584],[77.5969,17.5343],[77.59558,17.54487],[77.59723,17.55373],[77.5938,17.56451],[77.58907,17.5647],[77.5881,17.56],[77.56737,17.55636],[77.56085,17.55257],[77.55424,17.55385],[77.55056,17.55173],[77.54512,17.56439],[77.53744,17.57544],[77.52838,17.57537],[77.51649,17.55915],[77.51544,17.55242],[77.5069,17.54228],[77.50003,17.54672],[77.50043,17.55619],[77.49618,17.55961],[77.49407,17.56836],[77.47805,17.5668],[77.47623,17.57061],[77.47082,17.57186],[77.46181,17.58075],[77.45858,17.57997],[77.45562,17.58233],[77.44312,17.58396],[77.44498,17.58625],[77.44329,17.59169],[77.44614,17.59647],[77.44476,17.60941],[77.44873,17.60934],[77.45115,17.62321],[77.45575,17.63249],[77.45589,17.63418],[77.45208,17.63642],[77.45223,17.64],[77.44972,17.64396],[77.45001,17.65058],[77.44822,17.65112],[77.44893,17.65943],[77.45482,17.67448],[77.45349,17.67711],[77.4537,17.68649],[77.45504,17.68893],[77.45216,17.69114],[77.45243,17.6947],[77.45782,17.6963],[77.45887,17.69862],[77.46748,17.70298],[77.48415,17.7056],[77.48489,17.70914],[77.48601,17.70793],[77.49227,17.70813],[77.49705,17.71551],[77.50914,17.71629],[77.51165,17.72092],[77.51655,17.72016],[77.51824,17.72358],[77.52201,17.72603],[77.52859,17.72517],[77.53133,17.72867],[77.53328,17.72768],[77.54219,17.72894],[77.54596,17.72684],[77.54623,17.73282],[77.54861,17.73577],[77.5567,17.73738],[77.55801,17.74139],[77.56094,17.74281],[77.56439,17.74786],[77.56853,17.74891],[77.56727,17.7596],[77.56915,17.76649],[77.56628,17.76675],[77.55983,17.76342],[77.55486,17.76397],[77.54823,17.76706],[77.54606,17.77166],[77.54026,17.77438],[77.54054,17.77777],[77.53751,17.77993],[77.53439,17.77763],[77.52867,17.78066],[77.527,17.7799],[77.52636,17.78163],[77.52211,17.78055],[77.51751,17.78249],[77.51233,17.78213],[77.50656,17.78595],[77.509,17.78778],[77.51494,17.80545],[77.52294,17.81141],[77.52903,17.81293],[77.52822,17.8279],[77.53238,17.82911],[77.5467,17.82848],[77.54891,17.81938],[77.55403,17.82007],[77.56068,17.83865],[77.56744,17.84542],[77.56484,17.85119],[77.56932,17.85156],[77.57,17.86765],[77.57346,17.86919],[77.5764,17.87542],[77.58059,17.87345],[77.58342,17.87704],[77.59449,17.87233],[77.59908,17.87309],[77.60037,17.8806],[77.59583,17.88136],[77.58599,17.89384],[77.585,17.90193],[77.58606,17.90784],[77.59999,17.90414],[77.60518,17.90781],[77.61904,17.90406],[77.622,17.92957],[77.61868,17.93949],[77.62294,17.94552],[77.63251,17.94667],[77.63289,17.9558],[77.62454,17.9596],[77.63301,17.96738],[77.63329,17.96037],[77.63513,17.95925],[77.63721,17.95232],[77.64062,17.95189],[77.6409,17.95411],[77.64948,17.95002],[77.64951,17.95907],[77.65586,17.96884],[77.64821,17.98026],[77.65204,17.99389],[77.64891,17.99888],[77.63875,17.99645],[77.62779,17.99679],[77.61966,18.00649],[77.60747,18.00985],[77.60794,18.01796],[77.60593,18.02023],[77.60164,18.01984],[77.59586,18.01285],[77.58859,18.01216],[77.58489,18.01679],[77.58325,18.02826],[77.58059,18.03158],[77.56061,18.03622],[77.55379,18.03582],[77.55183,18.0507],[77.54948,18.05124],[77.54961,18.05439],[77.54764,18.05613],[77.54834,18.06521],[77.55742,18.06373],[77.55971,18.07188],[77.56592,18.07667],[77.56943,18.07824],[77.57592,18.07806],[77.58358,18.08246],[77.58551,18.08184],[77.59564,18.08603],[77.5988,18.09333],[77.60155,18.1059],[77.59916,18.12099],[77.59699,18.12367],[77.5944,18.13272],[77.59684,18.15595],[77.5924,18.15544],[77.58422,18.15923],[77.58131,18.16232],[77.57716,18.17249],[77.57472,18.1741],[77.57069,18.19217],[77.56405,18.19426],[77.56346,18.19613],[77.56388,18.20194],[77.56551,18.20418],[77.57215,18.20351],[77.57482,18.20163],[77.58058,18.21385],[77.58531,18.21982],[77.58149,18.22486],[77.58185,18.22697],[77.57988,18.22816],[77.58052,18.23217],[77.57301,18.23944],[77.57178,18.244],[77.57378,18.24499],[77.58315,18.26078],[77.59119,18.26241],[77.59489,18.26531],[77.60117,18.27762],[77.6043,18.27877],[77.60542,18.28135],[77.58185,18.28538],[77.57616,18.28873],[77.57256,18.2933],[77.57021,18.29253],[77.56694,18.28728],[77.56134,18.28495],[77.55411,18.29088],[77.54048,18.29449],[77.53272,18.2987],[77.52373,18.30821],[77.51263,18.3096],[77.50882,18.30428],[77.51109,18.2953],[77.51023,18.29248],[77.51205,18.29074],[77.51156,18.28205],[77.50962,18.28181],[77.50522,18.27702],[77.49866,18.27675],[77.49267,18.2672],[77.48138,18.27236],[77.47973,18.26818],[77.47575,18.26466],[77.46504,18.26254],[77.45233,18.26698],[77.45178,18.26972],[77.44758,18.27],[77.44558,18.27662],[77.44586,18.28381],[77.44035,18.28263],[77.43651,18.29323],[77.43766,18.31031],[77.42831,18.31236],[77.42556,18.30788],[77.41703,18.30643],[77.409,18.30147],[77.40142,18.30449],[77.39485,18.30359],[77.38512,18.30931],[77.36579,18.30712],[77.35672,18.3202],[77.3716,18.32521],[77.37562,18.33205],[77.38094,18.33102],[77.38243,18.34225],[77.38549,18.34081],[77.39016,18.34371],[77.39498,18.3415],[77.39434,18.34743],[77.40015,18.34745],[77.39893,18.35979],[77.39487,18.36845],[77.40984,18.37741],[77.41329,18.38507],[77.41409,18.39311],[77.40357,18.39965],[77.40083,18.39988],[77.40016,18.402],[77.38843,18.39953],[77.37283,18.4011],[77.37233,18.40673],[77.36839,18.41253],[77.37065,18.41879],[77.36726,18.41869],[77.3654,18.42772],[77.36215,18.42989],[77.36446,18.43452],[77.36203,18.43558],[77.36184,18.43728],[77.3675,18.44696],[77.36564,18.45156],[77.35349,18.44767],[77.35107,18.4422],[77.34796,18.43947],[77.3475,18.43396],[77.34522,18.43361],[77.33566,18.44232],[77.33603,18.45015],[77.3323,18.45086]]],[[[77.27885,18.47574],[77.27813,18.47593],[77.2777,18.47661],[77.27605,18.47696],[77.27504,18.47772],[77.27334,18.47439],[77.27215,18.47296],[77.27206,18.47105],[77.27175,18.47054],[77.27177,18.47002],[77.27105,18.46771],[77.27094,18.46675],[77.27127,18.46577],[77.26938,18.46386],[77.26844,18.46077],[77.26775,18.45968],[77.26754,18.45444],[77.26941,18.45439],[77.27243,18.45392],[77.28001,18.45361],[77.28077,18.45378],[77.28178,18.45459],[77.28234,18.45564],[77.28433,18.45519],[77.28477,18.45593],[77.28545,18.45602],[77.28864,18.45534],[77.29064,18.45669],[77.29208,18.45718],[77.29423,18.45882],[77.29595,18.46092],[77.29546,18.46129],[77.29559,18.46239],[77.29613,18.46347],[77.29866,18.46518],[77.29953,18.46488],[77.29992,18.46638],[77.29995,18.47014],[77.30043,18.47139],[77.30029,18.47303],[77.29979,18.47411],[77.29638,18.47702],[77.29275,18.47697],[77.28915,18.4765],[77.28682,18.47436],[77.28559,18.47456],[77.28397,18.47447],[77.28263,18.47494],[77.28051,18.47478],[77.27885,18.47574]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-KL","area_level":"State","area_name":"Kerala","geometry_source":"SOI_States","same_as":"LGD/32/State"},"geometry":{"type":"Polygon","coordinates":[[[74.98903,12.79546],[74.98741,12.79359],[74.99209,12.78821],[74.98514,12.78155],[74.98244,12.78231],[74.98193,12.77963],[74.96686,12.77633],[74.96633,12.78079],[74.96378,12.78151],[74.96293,12.77868],[74.95999,12.77889],[74.95819,12.78467],[74.95112,12.78437],[74.94173,12.77998],[74.93768,12.77952],[74.93541,12.78085],[74.9275,12.77867],[74.91698,12.77223],[74.90763,12.76896],[74.89958,12.76258],[74.89303,12.76243],[74.88231,12.75405],[74.87414,12.75494],[74.87224,12.76106],[74.86434,12.75914],[74.88428,12.7082],[74.88792,12.70654],[74.88694,12.70614],[74.91604,12.6418],[74.92819,12.60695],[74.93329,12.60401],[74.93158,12.60295],[74.9546,12.54733],[74.95614,12.54633],[74.97381,12.50039],[74.98184,12.48449],[74.9843,12.48252],[74.98398,12.47987],[74.99036,12.46884],[74.99807,12.45016],[75.00434,12.44058],[75.01444,12.41704],[75.01924,12.41564],[75.03009,12.39235],[75.03339,12.38998],[75.03606,12.39168],[75.03944,12.38992],[75.05806,12.3517],[75.09654,12.26177],[75.11431,12.21337],[75.11893,12.2036],[75.12335,12.20361],[75.1243,12.20231],[75.1219,12.19747],[75.12466,12.18818],[75.1414,12.14886],[75.1586,12.10273],[75.18522,12.04115],[75.2015,12.00867],[75.20106,12.00609],[75.20458,12.00561],[75.20948,12.01142],[75.21511,12.0102],[75.22105,12.01235],[75.22289,12.01513],[75.22302,12.01929],[75.22911,12.02261],[75.23792,12.0179],[75.25033,12.00819],[75.29485,11.94571],[75.29585,11.94767],[75.30043,11.94787],[75.30144,11.94486],[75.29527,11.94198],[75.29829,11.94098],[75.30797,11.93104],[75.3203,11.9137],[75.32051,11.91129],[75.31842,11.90903],[75.31917,11.90497],[75.32513,11.9047],[75.32397,11.9029],[75.33862,11.88753],[75.35274,11.86942],[75.35568,11.8598],[75.36196,11.85693],[75.3676,11.85125],[75.37145,11.85329],[75.37457,11.85204],[75.37235,11.85602],[75.37478,11.85823],[75.38114,11.85856],[75.38576,11.85634],[75.3948,11.84582],[75.39555,11.84257],[75.40587,11.83552],[75.4233,11.81288],[75.43117,11.80791],[75.43205,11.80952],[75.43605,11.80536],[75.44573,11.78972],[75.44667,11.78202],[75.45386,11.77869],[75.45668,11.77912],[75.45379,11.77662],[75.4537,11.77027],[75.46061,11.76549],[75.46553,11.76718],[75.46809,11.76458],[75.47274,11.76434],[75.47564,11.75937],[75.48295,11.75435],[75.48527,11.74808],[75.49025,11.74487],[75.498,11.73424],[75.50266,11.73557],[75.509,11.73113],[75.51755,11.71593],[75.51511,11.71684],[75.51577,11.71546],[75.51772,11.71451],[75.51778,11.71589],[75.51966,11.71571],[75.52439,11.70803],[75.53004,11.70357],[75.53567,11.70967],[75.5393,11.70901],[75.54423,11.70454],[75.54225,11.70209],[75.54163,11.69601],[75.53623,11.69354],[75.56062,11.64293],[75.58269,11.58527],[75.58979,11.56247],[75.59563,11.55177],[75.59495,11.54968],[75.5991,11.53737],[75.61453,11.49764],[75.61535,11.49472],[75.61406,11.49279],[75.61747,11.48873],[75.61929,11.48058],[75.61785,11.47841],[75.61913,11.48062],[75.61729,11.47944],[75.61764,11.47788],[75.61646,11.47867],[75.61678,11.47641],[75.6209,11.47293],[75.62238,11.47298],[75.62161,11.47473],[75.6264,11.47312],[75.63256,11.46574],[75.63249,11.46271],[75.63419,11.46103],[75.63783,11.46209],[75.63779,11.46485],[75.64412,11.46625],[75.64523,11.4682],[75.65212,11.46652],[75.66014,11.46176],[75.66373,11.46246],[75.67476,11.45209],[75.67489,11.45045],[75.67755,11.44958],[75.67894,11.45109],[75.68161,11.44962],[75.69767,11.42488],[75.71271,11.39316],[75.71529,11.39219],[75.73185,11.35581],[75.73611,11.33959],[75.73224,11.33473],[75.73565,11.33211],[75.73652,11.32472],[75.74132,11.32122],[75.74496,11.32151],[75.74701,11.31837],[75.76413,11.27139],[75.76758,11.25925],[75.76655,11.25854],[75.76811,11.25804],[75.77542,11.23706],[75.78039,11.22835],[75.77913,11.22731],[75.77976,11.22407],[75.79784,11.17729],[75.80084,11.16532],[75.80463,11.1611],[75.80203,11.16004],[75.80391,11.15752],[75.80251,11.15603],[75.80324,11.15505],[75.8059,11.15648],[75.80873,11.15165],[75.81388,11.14899],[75.82566,11.12379],[75.8251,11.1224],[75.82838,11.11914],[75.8467,11.06287],[75.85136,11.03783],[75.86241,11.00141],[75.8628,10.99453],[75.89084,10.87902],[75.9101,10.78613],[75.91119,10.78458],[75.9136,10.7849],[75.91315,10.78083],[75.91736,10.77392],[75.9209,10.76252],[75.98978,10.61313],[76.03186,10.51534],[76.0367,10.50753],[76.03923,10.50854],[76.04001,10.50705],[76.03955,10.50489],[76.06286,10.46191],[76.08169,10.42157],[76.0833,10.42161],[76.08238,10.41967],[76.09801,10.3819],[76.09863,10.38058],[76.10033,10.38147],[76.09922,10.37891],[76.1134,10.34238],[76.13594,10.26096],[76.15287,10.20854],[76.16151,10.18394],[76.16584,10.17798],[76.1669,10.17028],[76.18021,10.13596],[76.20003,10.05892],[76.21263,10.02556],[76.2185,10.00351],[76.2223,10.00001],[76.22291,9.99479],[76.23071,9.97706],[76.23479,9.97527],[76.23811,9.96925],[76.2412,9.96765],[76.23652,9.96463],[76.23799,9.95336],[76.25127,9.9187],[76.26084,9.88117],[76.28109,9.76636],[76.29176,9.66408],[76.29327,9.66307],[76.29196,9.66254],[76.2931,9.65224],[76.29453,9.6523],[76.29318,9.65099],[76.29965,9.60203],[76.29984,9.58968],[76.3012,9.58874],[76.30059,9.58457],[76.30091,9.58311],[76.30165,9.58466],[76.30462,9.55714],[76.30589,9.55729],[76.30474,9.55613],[76.30548,9.5515],[76.30811,9.54293],[76.30717,9.54155],[76.31908,9.48523],[76.34158,9.40337],[76.38083,9.31299],[76.38191,9.31395],[76.38373,9.31131],[76.38229,9.31048],[76.38531,9.30295],[76.39644,9.28138],[76.46054,9.14063],[76.46354,9.13843],[76.46348,9.13703],[76.46232,9.13753],[76.46291,9.13419],[76.49913,9.05822],[76.5212,8.99865],[76.52681,8.97019],[76.53428,8.95124],[76.53732,8.93768],[76.5355,8.93604],[76.53984,8.9389],[76.54165,8.93803],[76.54039,8.93614],[76.54208,8.93601],[76.54176,8.93388],[76.53538,8.93372],[76.53839,8.93278],[76.53954,8.93013],[76.54022,8.93175],[76.54233,8.91312],[76.54673,8.90391],[76.55586,8.89218],[76.56002,8.8894],[76.56552,8.87991],[76.56943,8.88278],[76.57278,8.88291],[76.57943,8.88117],[76.59256,8.87417],[76.61012,8.85943],[76.63143,8.83653],[76.64459,8.81965],[76.65062,8.80875],[76.67205,8.78317],[76.69087,8.75418],[76.6987,8.73795],[76.71485,8.72076],[76.75802,8.66854],[76.89491,8.49669],[76.95492,8.4266],[76.97034,8.40291],[76.97241,8.39647],[76.97222,8.39438],[76.97089,8.39468],[76.97122,8.39197],[76.9751,8.38846],[76.97561,8.38574],[76.97915,8.38411],[76.9791,8.38185],[76.984,8.37981],[76.98638,8.37549],[76.992,8.37752],[76.99758,8.37406],[77.0074,8.36242],[77.01115,8.35474],[77.01276,8.35576],[77.01653,8.35466],[77.02875,8.34759],[77.05996,8.3205],[77.09598,8.29302],[77.09886,8.29896],[77.10163,8.30091],[77.10176,8.30647],[77.10553,8.30692],[77.11308,8.30424],[77.11664,8.31031],[77.12278,8.30901],[77.12448,8.31207],[77.11899,8.31678],[77.11921,8.32106],[77.12959,8.32196],[77.12919,8.32598],[77.13842,8.32753],[77.13979,8.32987],[77.14526,8.32956],[77.14843,8.33199],[77.1536,8.328],[77.16929,8.33295],[77.16993,8.32549],[77.17216,8.32469],[77.17332,8.31976],[77.17578,8.32029],[77.18088,8.32419],[77.16975,8.33474],[77.16997,8.33807],[77.16694,8.34275],[77.171,8.34773],[77.17547,8.34986],[77.17429,8.35863],[77.17072,8.3603],[77.16965,8.36347],[77.16754,8.36343],[77.1666,8.36025],[77.16336,8.36177],[77.15949,8.35916],[77.15741,8.35994],[77.1564,8.35673],[77.15302,8.35514],[77.15354,8.36131],[77.15589,8.36339],[77.15694,8.36741],[77.16034,8.3687],[77.16129,8.37398],[77.15996,8.38124],[77.15592,8.38265],[77.15532,8.3811],[77.15199,8.38129],[77.15111,8.38447],[77.15373,8.38774],[77.16095,8.39017],[77.16594,8.38787],[77.16819,8.38387],[77.17052,8.38736],[77.18167,8.39579],[77.18261,8.40475],[77.19752,8.41994],[77.19656,8.42916],[77.20381,8.43526],[77.20292,8.43633],[77.2066,8.4447],[77.2281,8.44725],[77.22901,8.45061],[77.2273,8.45293],[77.22742,8.45848],[77.22093,8.4658],[77.21407,8.46972],[77.21139,8.47888],[77.21174,8.48397],[77.21381,8.48554],[77.21188,8.49207],[77.20413,8.49645],[77.20468,8.49872],[77.20238,8.50119],[77.21041,8.50701],[77.21431,8.51281],[77.22226,8.51244],[77.22966,8.50898],[77.24012,8.49705],[77.24424,8.49756],[77.2463,8.50235],[77.2513,8.50542],[77.25615,8.50518],[77.25738,8.50705],[77.26171,8.50615],[77.26534,8.51196],[77.26692,8.51987],[77.27426,8.53372],[77.27465,8.53763],[77.28385,8.54673],[77.28236,8.55049],[77.2743,8.55964],[77.27504,8.56564],[77.27066,8.57165],[77.26905,8.57889],[77.26649,8.58077],[77.26643,8.58514],[77.26321,8.58883],[77.25864,8.58922],[77.25517,8.59739],[77.25076,8.59873],[77.24524,8.60344],[77.24573,8.61629],[77.24408,8.62182],[77.23465,8.62685],[77.23219,8.63565],[77.22931,8.63742],[77.22885,8.64027],[77.22483,8.63908],[77.22015,8.64493],[77.21427,8.64914],[77.2117,8.65479],[77.21211,8.65719],[77.20778,8.66083],[77.20837,8.66364],[77.20069,8.66908],[77.20726,8.68068],[77.20672,8.6842],[77.19561,8.70213],[77.19503,8.70776],[77.18998,8.71236],[77.18472,8.71347],[77.1843,8.71639],[77.18079,8.71832],[77.18062,8.72106],[77.17677,8.72613],[77.17911,8.73058],[77.17001,8.74179],[77.16977,8.74743],[77.17163,8.75058],[77.17703,8.74544],[77.18267,8.74278],[77.19246,8.74444],[77.19752,8.75093],[77.19984,8.76079],[77.19733,8.7689],[77.20496,8.76913],[77.2093,8.76535],[77.21795,8.76824],[77.21843,8.77099],[77.21307,8.77862],[77.21471,8.77973],[77.21999,8.77899],[77.22429,8.78362],[77.22971,8.78459],[77.23129,8.79082],[77.23054,8.79783],[77.23275,8.80164],[77.23198,8.80773],[77.24252,8.80979],[77.24708,8.81484],[77.24714,8.82372],[77.25136,8.82712],[77.25309,8.83226],[77.25759,8.83522],[77.25883,8.83862],[77.26276,8.84199],[77.25848,8.85033],[77.25908,8.85317],[77.26171,8.85261],[77.26152,8.85651],[77.25557,8.86112],[77.25568,8.86315],[77.25864,8.86518],[77.25657,8.87757],[77.25456,8.87959],[77.24499,8.88007],[77.23766,8.88567],[77.2384,8.89212],[77.24024,8.89447],[77.23855,8.89774],[77.22795,8.90359],[77.22123,8.90395],[77.21824,8.91869],[77.21423,8.91733],[77.20998,8.9185],[77.20105,8.92456],[77.19473,8.92412],[77.1928,8.9262],[77.19248,8.92855],[77.19714,8.93543],[77.19389,8.94332],[77.19697,8.95169],[77.19629,8.95458],[77.1915,8.95916],[77.1907,8.96562],[77.18555,8.97018],[77.1782,8.9691],[77.17357,8.99123],[77.16167,8.99504],[77.15615,9.00383],[77.15685,9.0075],[77.15275,9.00719],[77.14935,9.00958],[77.15073,9.01489],[77.14656,9.02182],[77.15387,9.02243],[77.1611,9.02944],[77.16212,9.03323],[77.16039,9.03584],[77.16412,9.03841],[77.16747,9.0453],[77.18232,9.04742],[77.18759,9.04314],[77.19171,9.04353],[77.19746,9.04697],[77.19528,9.04934],[77.1969,9.0568],[77.20551,9.06617],[77.20887,9.07404],[77.2057,9.08499],[77.20915,9.08996],[77.21241,9.10048],[77.21877,9.10143],[77.22106,9.10594],[77.22646,9.10819],[77.22844,9.11688],[77.23134,9.11743],[77.24215,9.12505],[77.24728,9.1246],[77.25272,9.13919],[77.26065,9.1443],[77.26072,9.14881],[77.26681,9.15246],[77.26532,9.16307],[77.26714,9.17432],[77.26516,9.18126],[77.26388,9.18411],[77.26095,9.18311],[77.25143,9.18864],[77.25641,9.19598],[77.25611,9.19922],[77.26314,9.19826],[77.26636,9.20045],[77.27034,9.2006],[77.27038,9.20503],[77.2755,9.21169],[77.28171,9.21657],[77.28166,9.22072],[77.27575,9.22898],[77.27411,9.23582],[77.27877,9.23941],[77.27955,9.24383],[77.2774,9.24713],[77.28254,9.256],[77.2815,9.26241],[77.28352,9.26728],[77.28175,9.27232],[77.28853,9.27417],[77.28788,9.28135],[77.28322,9.29131],[77.28299,9.30133],[77.28849,9.30165],[77.28976,9.30403],[77.29368,9.30476],[77.29954,9.31091],[77.29948,9.31418],[77.30252,9.31953],[77.3018,9.32424],[77.29703,9.32951],[77.30099,9.33012],[77.29997,9.33665],[77.3058,9.33779],[77.31562,9.33486],[77.3201,9.33753],[77.32529,9.33711],[77.32603,9.34655],[77.33333,9.35632],[77.33573,9.36392],[77.33732,9.36498],[77.33664,9.37692],[77.33457,9.37821],[77.33455,9.38122],[77.3366,9.38732],[77.33949,9.38741],[77.3414,9.38981],[77.33977,9.39375],[77.3436,9.40084],[77.33685,9.41052],[77.33649,9.41336],[77.33971,9.42072],[77.3446,9.42442],[77.34857,9.43451],[77.34941,9.44118],[77.35639,9.44757],[77.3603,9.45544],[77.366,9.46008],[77.37289,9.45663],[77.37423,9.45349],[77.3772,9.45278],[77.38093,9.45506],[77.38697,9.45565],[77.39261,9.45935],[77.39147,9.46869],[77.39713,9.47134],[77.40172,9.4769],[77.40198,9.47865],[77.39862,9.48163],[77.39931,9.49657],[77.40298,9.50148],[77.40971,9.50556],[77.4124,9.50898],[77.40831,9.51476],[77.40042,9.51786],[77.40331,9.523],[77.40051,9.52736],[77.39595,9.5233],[77.38518,9.51923],[77.38013,9.52536],[77.37693,9.52483],[77.37334,9.52685],[77.37296,9.52989],[77.36874,9.53478],[77.36556,9.53509],[77.36508,9.55273],[77.36126,9.55794],[77.35291,9.55958],[77.35026,9.56708],[77.35297,9.57286],[77.35814,9.57391],[77.35989,9.57738],[77.3583,9.58393],[77.35497,9.58668],[77.35748,9.59443],[77.36085,9.59784],[77.36239,9.59556],[77.36614,9.59596],[77.36581,9.59974],[77.36277,9.6002],[77.36113,9.60226],[77.35459,9.60407],[77.34548,9.58796],[77.34223,9.58101],[77.3419,9.57646],[77.33949,9.57331],[77.33251,9.57881],[77.32536,9.58003],[77.32562,9.58345],[77.32383,9.58516],[77.32618,9.58863],[77.32453,9.59334],[77.3299,9.59899],[77.32815,9.60015],[77.325,9.59768],[77.32241,9.59829],[77.31782,9.6025],[77.31537,9.60071],[77.30381,9.59874],[77.29456,9.58924],[77.29007,9.58869],[77.29034,9.58477],[77.28048,9.57958],[77.27693,9.57575],[77.27201,9.57645],[77.26971,9.57277],[77.26385,9.57374],[77.26145,9.57683],[77.25833,9.57649],[77.25307,9.58297],[77.24277,9.58522],[77.23713,9.58106],[77.2343,9.58155],[77.22249,9.59278],[77.22218,9.59771],[77.21714,9.60162],[77.21444,9.60071],[77.20984,9.60497],[77.21047,9.61086],[77.20896,9.61344],[77.1982,9.61436],[77.19706,9.61085],[77.19082,9.60922],[77.18868,9.6061],[77.17409,9.61119],[77.1703,9.60967],[77.16586,9.61286],[77.16778,9.61502],[77.16911,9.62397],[77.1746,9.62658],[77.17626,9.62948],[77.17415,9.63287],[77.17405,9.63731],[77.17927,9.64486],[77.17958,9.65554],[77.18115,9.65921],[77.18751,9.66144],[77.18682,9.66641],[77.19411,9.67056],[77.20055,9.686],[77.20672,9.69466],[77.20458,9.70158],[77.20195,9.70389],[77.2053,9.71309],[77.20471,9.71656],[77.2061,9.71757],[77.20356,9.72211],[77.20753,9.72476],[77.21838,9.72608],[77.22067,9.72964],[77.22391,9.73037],[77.22184,9.7374],[77.22268,9.73999],[77.21984,9.74208],[77.22023,9.74504],[77.22514,9.75277],[77.22747,9.76421],[77.2324,9.76857],[77.22499,9.77556],[77.22266,9.78779],[77.23601,9.79006],[77.24016,9.79692],[77.24173,9.79579],[77.24667,9.79789],[77.24509,9.80278],[77.24679,9.808],[77.24115,9.81563],[77.23259,9.81742],[77.23273,9.82149],[77.22501,9.8203],[77.22431,9.822],[77.22178,9.82245],[77.22385,9.82385],[77.22378,9.8287],[77.22655,9.83072],[77.22544,9.8333],[77.22753,9.83809],[77.22294,9.84488],[77.22633,9.84634],[77.22814,9.84914],[77.23718,9.85138],[77.23631,9.8596],[77.23269,9.86154],[77.22614,9.86086],[77.22133,9.86313],[77.21245,9.87688],[77.21527,9.87739],[77.21752,9.88435],[77.22075,9.88448],[77.21809,9.89637],[77.21825,9.90429],[77.22258,9.90596],[77.22439,9.90967],[77.23006,9.91247],[77.23056,9.92139],[77.2317,9.92404],[77.23564,9.92637],[77.23433,9.93058],[77.23623,9.93537],[77.2479,9.94685],[77.24654,9.9514],[77.24958,9.95255],[77.25021,9.95118],[77.25296,9.95345],[77.26101,9.95249],[77.26854,9.96091],[77.27105,9.96243],[77.27184,9.96133],[77.27285,9.96419],[77.27218,9.97015],[77.27087,9.97091],[77.27267,9.97634],[77.26796,9.97991],[77.2644,9.98717],[77.26683,9.99029],[77.26177,9.9911],[77.26091,9.99268],[77.2608,9.99576],[77.26613,10.00189],[77.25319,10.01281],[77.25586,10.01453],[77.25744,10.0193],[77.26159,10.0212],[77.2619,10.02973],[77.2548,10.03667],[77.24439,10.05197],[77.23447,10.05984],[77.23144,10.06627],[77.2235,10.06918],[77.22289,10.07298],[77.21984,10.07716],[77.20398,10.08773],[77.20401,10.09728],[77.20293,10.10416],[77.20126,10.10582],[77.20439,10.11247],[77.20648,10.11256],[77.20789,10.1177],[77.21085,10.11816],[77.21643,10.11585],[77.22717,10.12119],[77.23038,10.1205],[77.22992,10.12252],[77.23276,10.12396],[77.23205,10.12528],[77.23373,10.12797],[77.23824,10.13008],[77.24765,10.1305],[77.24895,10.12681],[77.25269,10.12445],[77.26778,10.12161],[77.26836,10.12714],[77.27405,10.12949],[77.27477,10.13255],[77.27453,10.13976],[77.2718,10.14199],[77.27414,10.15767],[77.27292,10.16534],[77.2747,10.17527],[77.27627,10.17571],[77.2753,10.18442],[77.27857,10.19421],[77.28296,10.19659],[77.28482,10.20055],[77.28587,10.20436],[77.28312,10.20865],[77.2873,10.20925],[77.28954,10.21456],[77.29337,10.21529],[77.29496,10.2179],[77.28809,10.23186],[77.28422,10.23342],[77.28194,10.23656],[77.27316,10.23501],[77.26926,10.23704],[77.2686,10.23459],[77.26475,10.23522],[77.26455,10.23233],[77.25972,10.23027],[77.25719,10.25939],[77.26293,10.26333],[77.23931,10.29503],[77.23982,10.29853],[77.23676,10.301],[77.23528,10.30765],[77.23141,10.30842],[77.23093,10.31257],[77.22775,10.31542],[77.22762,10.31995],[77.22957,10.32236],[77.22817,10.32727],[77.22921,10.33065],[77.23317,10.33499],[77.23305,10.33765],[77.23637,10.33889],[77.23584,10.35201],[77.22262,10.35366],[77.20939,10.35302],[77.20465,10.35385],[77.20206,10.35763],[77.19813,10.35673],[77.19605,10.35451],[77.17662,10.35844],[77.16221,10.3489],[77.15128,10.33753],[77.12879,10.32623],[77.12039,10.31796],[77.11024,10.31559],[77.10172,10.31561],[77.0961,10.30898],[77.09136,10.31391],[77.08845,10.30982],[77.07958,10.30301],[77.07261,10.29913],[77.0662,10.2977],[77.063,10.29139],[77.05944,10.29023],[77.05645,10.287],[77.04288,10.28377],[77.0496,10.27808],[77.05268,10.2725],[77.05079,10.26805],[77.05108,10.26211],[77.0429,10.25685],[77.04063,10.25266],[77.03152,10.25226],[77.01749,10.24563],[77.01443,10.24579],[77.01113,10.24009],[77.00547,10.2384],[77.00378,10.23464],[77.001,10.23516],[76.99903,10.23037],[76.99332,10.23045],[76.99046,10.22809],[76.99071,10.22568],[76.9845,10.22298],[76.98245,10.22012],[76.98048,10.22379],[76.97347,10.22543],[76.97229,10.22861],[76.96855,10.23077],[76.96543,10.23074],[76.95888,10.23414],[76.9506,10.23247],[76.94754,10.23687],[76.93936,10.2389],[76.92156,10.23218],[76.9116,10.23529],[76.90826,10.24085],[76.903,10.2403],[76.90546,10.24792],[76.90443,10.25091],[76.90142,10.25116],[76.89741,10.26244],[76.89144,10.26306],[76.88409,10.2709],[76.87342,10.27634],[76.87452,10.29428],[76.87314,10.29848],[76.87052,10.29888],[76.86842,10.29607],[76.86435,10.29532],[76.86239,10.29203],[76.85792,10.29364],[76.8551,10.29285],[76.85126,10.2899],[76.85222,10.2851],[76.84872,10.28528],[76.84824,10.28754],[76.84263,10.29003],[76.84221,10.29247],[76.84478,10.2949],[76.8407,10.29968],[76.83017,10.30386],[76.8287,10.30787],[76.83037,10.30956],[76.83062,10.31454],[76.83297,10.31807],[76.83774,10.33666],[76.83609,10.34044],[76.83631,10.34602],[76.8417,10.35062],[76.84194,10.35359],[76.84601,10.35731],[76.84516,10.36293],[76.84879,10.36823],[76.84389,10.37753],[76.83429,10.38325],[76.8305,10.38966],[76.82366,10.39506],[76.83403,10.40334],[76.8325,10.40568],[76.83358,10.40777],[76.83043,10.4113],[76.82464,10.41012],[76.82253,10.41456],[76.82317,10.41701],[76.81638,10.42352],[76.82833,10.45017],[76.83104,10.50003],[76.8431,10.53729],[76.84205,10.54078],[76.83519,10.5454],[76.83568,10.55787],[76.83914,10.56133],[76.83922,10.56475],[76.8344,10.5703],[76.83357,10.57436],[76.83754,10.58186],[76.83827,10.59667],[76.8374,10.59841],[76.83233,10.59928],[76.82601,10.59613],[76.81731,10.6032],[76.81573,10.60787],[76.81833,10.61115],[76.81631,10.61367],[76.8163,10.61686],[76.81145,10.62001],[76.8101,10.62418],[76.81497,10.62963],[76.81418,10.63586],[76.82113,10.63442],[76.83066,10.63762],[76.83928,10.6343],[76.8462,10.63583],[76.86066,10.63234],[76.86751,10.63325],[76.87346,10.63777],[76.88248,10.63971],[76.88374,10.65],[76.88092,10.65645],[76.88137,10.66126],[76.87814,10.66735],[76.8784,10.67503],[76.87748,10.67673],[76.86958,10.67678],[76.86754,10.67905],[76.86603,10.68531],[76.87084,10.69288],[76.86759,10.69478],[76.88221,10.71734],[76.88635,10.71863],[76.8903,10.71692],[76.89294,10.72146],[76.88864,10.72831],[76.8883,10.73247],[76.89616,10.74533],[76.89631,10.75198],[76.90108,10.75637],[76.90359,10.76111],[76.90258,10.77079],[76.90531,10.77143],[76.90753,10.77799],[76.90721,10.78269],[76.90063,10.80087],[76.90068,10.8073],[76.88899,10.80958],[76.87006,10.80833],[76.86526,10.8129],[76.86396,10.81727],[76.86048,10.81848],[76.85875,10.81667],[76.85258,10.81855],[76.8499,10.81725],[76.84817,10.8188],[76.84508,10.8261],[76.8464,10.82732],[76.84736,10.82633],[76.84855,10.83052],[76.85084,10.82958],[76.85319,10.83292],[76.85378,10.83896],[76.84878,10.84635],[76.84842,10.84939],[76.84168,10.85208],[76.83909,10.85634],[76.83194,10.86013],[76.83076,10.86993],[76.82832,10.87191],[76.81669,10.87274],[76.81434,10.87599],[76.81186,10.87583],[76.81146,10.87788],[76.80813,10.8768],[76.80122,10.88005],[76.7918,10.88111],[76.79092,10.88445],[76.78143,10.89042],[76.77661,10.88917],[76.77438,10.8901],[76.7679,10.88703],[76.76529,10.89118],[76.76125,10.89346],[76.75527,10.8932],[76.75241,10.89506],[76.75,10.89225],[76.74554,10.89268],[76.74079,10.89097],[76.73755,10.89588],[76.73168,10.89765],[76.72345,10.90345],[76.71783,10.90546],[76.7149,10.90861],[76.71264,10.90757],[76.70807,10.9101],[76.69521,10.91023],[76.67675,10.91806],[76.66206,10.92964],[76.65909,10.9305],[76.6558,10.93901],[76.66473,10.94348],[76.66583,10.94742],[76.6636,10.95093],[76.66748,10.95959],[76.66679,10.96833],[76.67389,10.97439],[76.68604,10.9892],[76.68546,10.9938],[76.69416,11.02156],[76.70912,11.03289],[76.71089,11.03872],[76.71542,11.04101],[76.72616,11.04114],[76.73242,11.03844],[76.7376,11.03974],[76.74929,11.03343],[76.7666,11.02909],[76.77365,11.03354],[76.79184,11.03736],[76.79315,11.0434],[76.80086,11.05397],[76.79846,11.05655],[76.79622,11.05585],[76.78779,11.0447],[76.77816,11.04209],[76.76894,11.04343],[76.76203,11.04798],[76.7607,11.05231],[76.75106,11.05541],[76.74613,11.05482],[76.74415,11.05707],[76.74575,11.06002],[76.74257,11.06334],[76.74377,11.06844],[76.74114,11.06973],[76.74104,11.07234],[76.74457,11.07248],[76.74571,11.07564],[76.74798,11.07432],[76.75014,11.07894],[76.75416,11.07779],[76.75453,11.08416],[76.75168,11.09319],[76.74658,11.09251],[76.74376,11.09899],[76.74117,11.09992],[76.73898,11.1043],[76.74077,11.10498],[76.74072,11.10919],[76.7453,11.10848],[76.74742,11.1112],[76.74753,11.12305],[76.74533,11.13019],[76.74705,11.13071],[76.7483,11.13584],[76.74622,11.13771],[76.74245,11.13323],[76.73931,11.13197],[76.7404,11.1337],[76.73503,11.13639],[76.73166,11.13145],[76.72875,11.13045],[76.72871,11.1339],[76.72637,11.13385],[76.72475,11.13855],[76.71742,11.14407],[76.71847,11.14764],[76.71611,11.14915],[76.71003,11.14799],[76.70887,11.14627],[76.71231,11.14424],[76.71238,11.14217],[76.70524,11.1422],[76.70026,11.14655],[76.70206,11.14757],[76.70142,11.1493],[76.69692,11.14979],[76.69552,11.15149],[76.69586,11.15523],[76.69298,11.15585],[76.68956,11.15957],[76.69226,11.16456],[76.69296,11.17236],[76.69647,11.17531],[76.70077,11.17606],[76.70024,11.18182],[76.70659,11.17936],[76.70937,11.18239],[76.71033,11.18784],[76.71378,11.18836],[76.71843,11.18641],[76.72363,11.19238],[76.72904,11.19104],[76.7282,11.19585],[76.72218,11.20363],[76.72659,11.21037],[76.73177,11.21367],[76.73142,11.21559],[76.72823,11.21854],[76.72582,11.21867],[76.72537,11.22581],[76.72175,11.22492],[76.7149,11.23133],[76.71167,11.23175],[76.70709,11.23838],[76.69827,11.2396],[76.68422,11.23374],[76.68531,11.2312],[76.68296,11.23006],[76.68478,11.22773],[76.67752,11.22063],[76.65341,11.21012],[76.62972,11.19417],[76.6009,11.20659],[76.53385,11.19675],[76.51609,11.2043],[76.51048,11.21164],[76.50328,11.21161],[76.47237,11.20875],[76.47347,11.19493],[76.46662,11.19332],[76.45844,11.18768],[76.4519,11.19922],[76.43862,11.19896],[76.43936,11.20296],[76.44896,11.20547],[76.45309,11.23937],[76.4663,11.24512],[76.48711,11.25829],[76.52218,11.27134],[76.52626,11.28826],[76.54576,11.30031],[76.53936,11.30462],[76.5373,11.31404],[76.54997,11.33099],[76.54744,11.34547],[76.54786,11.35889],[76.50818,11.35412],[76.51512,11.35969],[76.51775,11.37156],[76.46208,11.38747],[76.41508,11.42263],[76.4187,11.44178],[76.39768,11.43502],[76.37855,11.44919],[76.37257,11.45101],[76.37149,11.45406],[76.3463,11.46415],[76.34223,11.46759],[76.33815,11.46188],[76.33558,11.46161],[76.32547,11.45333],[76.30515,11.46779],[76.29352,11.46568],[76.29047,11.46957],[76.29289,11.47022],[76.29418,11.47289],[76.28444,11.48292],[76.28157,11.47924],[76.27856,11.47922],[76.27562,11.47687],[76.27044,11.47716],[76.26769,11.48053],[76.2646,11.48089],[76.24757,11.46854],[76.24979,11.49832],[76.25229,11.5],[76.24852,11.50647],[76.24816,11.51649],[76.24422,11.51736],[76.23848,11.52627],[76.24056,11.52781],[76.24453,11.5261],[76.25049,11.52757],[76.25151,11.53778],[76.24977,11.53731],[76.24443,11.54315],[76.24628,11.54628],[76.24237,11.55049],[76.2444,11.55409],[76.24172,11.55637],[76.2406,11.5557],[76.23875,11.55857],[76.23298,11.56925],[76.23452,11.57215],[76.24375,11.57849],[76.24921,11.58007],[76.25351,11.5854],[76.26115,11.5903],[76.2646,11.59094],[76.26493,11.59389],[76.2743,11.59368],[76.27891,11.60094],[76.28609,11.5902],[76.29594,11.59042],[76.29913,11.58281],[76.30013,11.57446],[76.30238,11.57123],[76.31054,11.57739],[76.31592,11.57659],[76.32121,11.58619],[76.33588,11.59574],[76.33996,11.59313],[76.34125,11.58724],[76.35458,11.58931],[76.3671,11.59833],[76.37798,11.60191],[76.37827,11.60851],[76.38393,11.61205],[76.38329,11.62404],[76.3881,11.62967],[76.40689,11.63428],[76.4262,11.63357],[76.43192,11.63092],[76.43455,11.63576],[76.44343,11.64362],[76.44337,11.64933],[76.43637,11.65347],[76.43135,11.6664],[76.42946,11.66624],[76.42818,11.66998],[76.42103,11.67248],[76.41913,11.6709],[76.41593,11.67281],[76.4126,11.68276],[76.41305,11.68598],[76.40844,11.68972],[76.41026,11.691],[76.41083,11.69367],[76.40963,11.69438],[76.41238,11.69502],[76.41178,11.69783],[76.40983,11.69875],[76.41087,11.70005],[76.40888,11.70639],[76.40745,11.70745],[76.40524,11.70586],[76.40346,11.70776],[76.40366,11.71162],[76.4056,11.71119],[76.40853,11.71505],[76.41257,11.71547],[76.41401,11.71125],[76.41606,11.71296],[76.41659,11.71769],[76.42411,11.72029],[76.42744,11.72598],[76.4221,11.73829],[76.41817,11.7426],[76.41288,11.74011],[76.41048,11.74208],[76.41241,11.74368],[76.4123,11.75182],[76.41498,11.7555],[76.41423,11.75885],[76.40521,11.75637],[76.39864,11.75081],[76.3934,11.75503],[76.39129,11.75477],[76.38395,11.7472],[76.37699,11.74454],[76.36846,11.74814],[76.36282,11.74837],[76.3525,11.73828],[76.3502,11.74024],[76.33974,11.739],[76.33484,11.74464],[76.32914,11.74828],[76.3196,11.75048],[76.31686,11.75259],[76.31445,11.75691],[76.31362,11.76357],[76.31071,11.7673],[76.3077,11.78422],[76.30558,11.7859],[76.30117,11.78563],[76.29403,11.79176],[76.29024,11.79283],[76.28488,11.8003],[76.28022,11.81161],[76.27687,11.81237],[76.27369,11.81063],[76.25964,11.80869],[76.25,11.80337],[76.24558,11.80293],[76.22935,11.80531],[76.22372,11.8082],[76.21821,11.81436],[76.21709,11.82157],[76.20989,11.82817],[76.21311,11.84262],[76.21026,11.84422],[76.20747,11.86154],[76.20201,11.86241],[76.19838,11.86655],[76.19039,11.87121],[76.18672,11.87196],[76.17881,11.87017],[76.1735,11.87121],[76.16481,11.86757],[76.15603,11.87014],[76.1494,11.86642],[76.14608,11.867],[76.13229,11.85387],[76.11994,11.85047],[76.11704,11.85485],[76.11785,11.85719],[76.11286,11.85871],[76.1149,11.86683],[76.11176,11.88736],[76.11337,11.89521],[76.1123,11.97866],[76.0898,11.96743],[76.07729,11.96874],[76.0701,11.96708],[76.06742,11.96333],[76.05796,11.95778],[76.05204,11.95161],[76.04482,11.95054],[76.04233,11.94602],[76.03907,11.94509],[76.03372,11.9403],[76.02997,11.94015],[76.02676,11.94308],[76.02238,11.94397],[76.01649,11.9411],[76.01312,11.94172],[76.00738,11.93902],[76.0032,11.93139],[75.99391,11.93227],[75.99042,11.93471],[75.98347,11.93272],[75.97927,11.93476],[75.9764,11.93371],[75.95637,11.9419],[75.95174,11.94064],[75.93741,11.9421],[75.93571,11.94006],[75.93078,11.9397],[75.92719,11.94337],[75.91747,11.94488],[75.91399,11.94692],[75.89873,11.94666],[75.89703,11.94547],[75.88602,11.95203],[75.88068,11.94971],[75.87254,11.9533],[75.87045,11.95258],[75.86643,11.95738],[75.85886,11.95942],[75.85461,11.96411],[75.853,11.97159],[75.85011,11.97474],[75.848,11.97495],[75.84955,11.97804],[75.84691,11.98201],[75.84292,11.98073],[75.83971,11.98267],[75.83704,11.98093],[75.83003,11.984],[75.82726,11.98768],[75.82563,11.99187],[75.82523,12.00273],[75.82038,12.00252],[75.82325,12.0098],[75.82286,12.01337],[75.81547,12.02051],[75.80993,12.02271],[75.81102,12.02857],[75.80107,12.03701],[75.79966,12.04738],[75.79396,12.05503],[75.79866,12.05604],[75.79867,12.06327],[75.80383,12.07516],[75.80255,12.07856],[75.78542,12.08426],[75.78036,12.08251],[75.76763,12.08448],[75.76282,12.08325],[75.75348,12.08413],[75.74913,12.08191],[75.74712,12.07819],[75.74358,12.08017],[75.73611,12.07895],[75.72774,12.07255],[75.72485,12.07318],[75.71473,12.07044],[75.71545,12.08166],[75.71769,12.08229],[75.71793,12.08558],[75.71307,12.09048],[75.70213,12.09229],[75.70326,12.10817],[75.69554,12.11049],[75.68718,12.11025],[75.68364,12.10449],[75.67988,12.10273],[75.67687,12.0982],[75.66742,12.09731],[75.66198,12.09918],[75.653,12.10791],[75.65276,12.11005],[75.64908,12.10933],[75.64658,12.1158],[75.64753,12.12192],[75.64408,12.12552],[75.64319,12.13865],[75.64205,12.1398],[75.63826,12.13895],[75.6392,12.14336],[75.63605,12.14917],[75.63133,12.14878],[75.61903,12.15652],[75.61496,12.1556],[75.61125,12.15262],[75.60691,12.15549],[75.60197,12.15364],[75.5959,12.15432],[75.59293,12.14778],[75.59046,12.15249],[75.58375,12.15699],[75.58331,12.15912],[75.5772,12.15775],[75.56978,12.17285],[75.56159,12.17505],[75.55935,12.1775],[75.55851,12.18207],[75.55497,12.18318],[75.55262,12.19285],[75.54859,12.19263],[75.54625,12.19794],[75.54118,12.19755],[75.5398,12.20273],[75.53649,12.20128],[75.53416,12.20293],[75.53261,12.20145],[75.53194,12.20567],[75.53703,12.20808],[75.53969,12.21681],[75.52691,12.22569],[75.52833,12.23159],[75.52111,12.23613],[75.51861,12.24351],[75.5198,12.24621],[75.51159,12.25306],[75.51178,12.25958],[75.50583,12.26458],[75.5054,12.27074],[75.49387,12.27279],[75.48692,12.28428],[75.48663,12.2886],[75.48101,12.29217],[75.4794,12.29541],[75.47547,12.29596],[75.47015,12.30071],[75.46374,12.2983],[75.4599,12.29404],[75.44573,12.29763],[75.4412,12.2966],[75.43635,12.29845],[75.43302,12.29734],[75.43009,12.29901],[75.42738,12.29781],[75.4266,12.29561],[75.42284,12.2951],[75.4211,12.29171],[75.41356,12.2912],[75.42451,12.29993],[75.42411,12.30292],[75.42776,12.30405],[75.42829,12.30699],[75.43215,12.30899],[75.43109,12.31059],[75.42716,12.31072],[75.42028,12.31898],[75.41864,12.32917],[75.41619,12.32993],[75.41539,12.34006],[75.4104,12.34719],[75.41168,12.34914],[75.41544,12.34961],[75.41964,12.35694],[75.42193,12.37266],[75.41312,12.38029],[75.40553,12.37906],[75.40154,12.38252],[75.4004,12.38074],[75.39857,12.38143],[75.39229,12.38999],[75.38649,12.39237],[75.38394,12.39091],[75.37924,12.39236],[75.37773,12.39842],[75.37261,12.40025],[75.37144,12.40789],[75.36617,12.41183],[75.37149,12.43772],[75.36885,12.44217],[75.37029,12.44887],[75.36563,12.45675],[75.36617,12.4582],[75.37126,12.45656],[75.37422,12.45973],[75.38187,12.45663],[75.38629,12.45828],[75.39221,12.45512],[75.3934,12.45137],[75.39962,12.45493],[75.40398,12.45494],[75.41332,12.45857],[75.41565,12.46216],[75.41572,12.46598],[75.42326,12.46678],[75.42487,12.46892],[75.42482,12.47426],[75.4203,12.47976],[75.42058,12.48852],[75.41733,12.49337],[75.41866,12.49554],[75.41613,12.50003],[75.41195,12.50201],[75.40806,12.49864],[75.403,12.49774],[75.40008,12.5],[75.39905,12.50352],[75.3946,12.50277],[75.39169,12.49936],[75.38741,12.5019],[75.38223,12.50202],[75.37779,12.4951],[75.36805,12.49121],[75.36864,12.48728],[75.3716,12.4869],[75.3726,12.47703],[75.371,12.4748],[75.36751,12.47533],[75.36082,12.46497],[75.35173,12.46488],[75.34611,12.46298],[75.3366,12.46408],[75.34154,12.46912],[75.3361,12.47701],[75.33742,12.48852],[75.33353,12.49205],[75.33448,12.49549],[75.333,12.49833],[75.32451,12.49673],[75.31503,12.49711],[75.31445,12.50292],[75.30456,12.50408],[75.30321,12.51426],[75.3041,12.52328],[75.29652,12.52319],[75.29554,12.52525],[75.29135,12.52685],[75.28031,12.52531],[75.27864,12.53146],[75.27396,12.5356],[75.27449,12.54022],[75.27056,12.54834],[75.27215,12.55484],[75.27006,12.55845],[75.27289,12.56897],[75.27855,12.5716],[75.28467,12.56957],[75.29054,12.58261],[75.30804,12.57833],[75.31539,12.57254],[75.31869,12.57749],[75.32643,12.58139],[75.328,12.58429],[75.32701,12.59239],[75.31216,12.58972],[75.30189,12.60541],[75.29907,12.6059],[75.29156,12.60195],[75.28958,12.6104],[75.28598,12.61121],[75.2817,12.61644],[75.27635,12.61851],[75.27261,12.61556],[75.26716,12.61466],[75.26513,12.61117],[75.266,12.60719],[75.26126,12.59817],[75.25684,12.59651],[75.25534,12.59138],[75.25178,12.589],[75.2497,12.58457],[75.24158,12.58003],[75.23867,12.58071],[75.23898,12.57802],[75.2371,12.57614],[75.2375,12.56976],[75.22919,12.56853],[75.22393,12.57036],[75.22032,12.5691],[75.21777,12.57636],[75.21262,12.57816],[75.20949,12.59107],[75.20114,12.58773],[75.20173,12.59336],[75.20786,12.59573],[75.20998,12.60023],[75.20775,12.60269],[75.20674,12.60801],[75.20095,12.60961],[75.19926,12.61207],[75.19877,12.61443],[75.20281,12.62759],[75.20174,12.63002],[75.19374,12.63031],[75.18822,12.63314],[75.18555,12.63185],[75.1829,12.6328],[75.16996,12.62227],[75.16417,12.62407],[75.16068,12.62213],[75.15392,12.62497],[75.14444,12.64049],[75.1433,12.63966],[75.13851,12.64344],[75.15081,12.65006],[75.15212,12.65611],[75.16203,12.67196],[75.14988,12.67333],[75.14903,12.67616],[75.152,12.68324],[75.14639,12.68219],[75.14319,12.67839],[75.13982,12.68059],[75.13764,12.67676],[75.13467,12.67805],[75.13251,12.67614],[75.12841,12.67694],[75.12492,12.68148],[75.12312,12.68137],[75.12213,12.67891],[75.11739,12.68128],[75.11146,12.68182],[75.11259,12.68522],[75.11018,12.68845],[75.11062,12.69058],[75.10727,12.69105],[75.10625,12.69681],[75.10022,12.69967],[75.09232,12.69981],[75.08601,12.70403],[75.08095,12.69907],[75.08115,12.69738],[75.08508,12.69567],[75.0831,12.69333],[75.08558,12.69022],[75.0855,12.68247],[75.08744,12.6792],[75.08517,12.67476],[75.07415,12.67225],[75.06858,12.66467],[75.06525,12.66483],[75.05981,12.67177],[75.05752,12.66605],[75.05397,12.67022],[75.04664,12.66757],[75.04257,12.67285],[75.04146,12.67873],[75.043,12.68224],[75.0405,12.68535],[75.04392,12.69264],[75.04855,12.69404],[75.05385,12.69052],[75.05559,12.69346],[75.05023,12.70439],[75.05189,12.7069],[75.0543,12.70713],[75.05389,12.71112],[75.05034,12.71632],[75.05246,12.72008],[75.04792,12.7206],[75.04431,12.72311],[75.04268,12.72077],[75.03905,12.72382],[75.03358,12.72351],[75.02658,12.71931],[75.01864,12.72111],[75.01504,12.71423],[75.00099,12.71639],[75.00096,12.71956],[75.00494,12.72028],[75.0134,12.72795],[75.0,12.73205],[74.99248,12.73989],[74.99047,12.73873],[74.99135,12.73695],[74.99002,12.73608],[74.99039,12.73746],[74.98881,12.73821],[74.98893,12.73629],[74.98724,12.73657],[74.98559,12.7336],[74.98327,12.7372],[74.98545,12.73889],[74.98403,12.73993],[74.98464,12.74308],[74.98768,12.74165],[74.9966,12.75208],[74.99868,12.75699],[75.00433,12.76043],[75.00606,12.76612],[75.00945,12.76751],[75.00621,12.77084],[75.00339,12.77798],[75.00297,12.78438],[75.00509,12.79031],[75.00103,12.79142],[75.00018,12.79022],[75.00243,12.78834],[74.99831,12.78594],[74.99875,12.78908],[74.99602,12.7893],[74.99122,12.79553],[74.98903,12.79546]],[[75.53771,11.7628],[75.53862,11.76014],[75.5441,11.7591],[75.54644,11.75627],[75.54472,11.75353],[75.54207,11.73719],[75.54324,11.7344],[75.55562,11.7276],[75.55534,11.72147],[75.5478,11.71543],[75.54578,11.71751],[75.5415,11.71553],[75.5376,11.71607],[75.53653,11.7193],[75.5325,11.71621],[75.53325,11.71391],[75.53737,11.71218],[75.53083,11.71021],[75.531,11.70826],[75.52903,11.70979],[75.53218,11.71393],[75.53156,11.71588],[75.52783,11.71601],[75.52669,11.72663],[75.53082,11.73096],[75.53172,11.73466],[75.53602,11.73355],[75.54011,11.73491],[75.54146,11.73889],[75.54026,11.74847],[75.53744,11.74866],[75.53472,11.7526],[75.53438,11.75638],[75.53123,11.75871],[75.53771,11.7628]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-LA","area_level":"State","area_name":"Ladakh","geometry_source":"SOI_States","same_as":"LGD/37/State"},"geometry":{"type":"Polygon","coordinates":[[[74.71192,37.06379],[74.70886,37.07331],[74.70739,37.08729],[74.69012,37.08814],[74.68117,37.08671],[74.65237,37.07009],[74.6338,37.0637],[74.60479,37.05925],[74.58941,37.05916],[74.58167,37.05757],[74.56812,37.05176],[74.57496,37.04956],[74.57791,37.0458],[74.58042,37.02101],[74.56914,36.9703],[74.56575,36.95926],[74.5641,36.9579],[74.56054,36.9572],[74.55107,36.95907],[74.54255,36.96135],[74.54033,36.96332],[74.53729,36.97737],[74.53431,36.98324],[74.52296,36.99513],[74.45683,36.99829],[74.42642,36.99569],[74.41715,36.99343],[74.41269,36.98452],[74.40818,36.98156],[74.38866,36.97347],[74.37569,36.97338],[74.3508,36.96007],[74.33644,36.94703],[74.32913,36.93815],[74.31482,36.92733],[74.28261,36.90919],[74.24897,36.89361],[74.2211,36.90271],[74.15575,36.91051],[74.1442,36.89092],[74.137,36.86303],[74.1353,36.85013],[74.13346,36.8479],[74.11631,36.83573],[74.08883,36.84214],[74.08552,36.84151],[74.06868,36.8313],[74.04652,36.81082],[74.02778,36.82611],[74.00838,36.83377],[73.99542,36.83417],[73.98196,36.82958],[73.9615,36.83927],[73.95723,36.84338],[73.95056,36.84578],[73.94127,36.86211],[73.9149,36.88298],[73.90675,36.88383],[73.89302,36.87546],[73.88259,36.88098],[73.8705,36.89421],[73.85926,36.89732],[73.82044,36.90309],[73.81017,36.88858],[73.80072,36.8875],[73.79961,36.89359],[73.7941,36.90016],[73.78693,36.90015],[73.77358,36.8963],[73.76555,36.90519],[73.75876,36.90528],[73.75132,36.90969],[73.74486,36.9089],[73.73351,36.89894],[73.72873,36.89799],[73.72055,36.9007],[73.70345,36.91209],[73.69724,36.91431],[73.67109,36.9117],[73.67136,36.90449],[73.66772,36.90035],[73.66529,36.89182],[73.66701,36.88088],[73.6825,36.87344],[73.68726,36.86994],[73.68942,36.86591],[73.70619,36.85795],[73.70697,36.84642],[73.70551,36.83781],[73.71179,36.83437],[73.71984,36.83633],[73.7253,36.83508],[73.73202,36.83098],[73.73663,36.83015],[73.73866,36.82599],[73.74909,36.82737],[73.7544,36.81889],[73.75884,36.81615],[73.77397,36.81503],[73.78813,36.81897],[73.79757,36.8182],[73.79636,36.80248],[73.80041,36.79929],[73.80151,36.79422],[73.8064,36.79083],[73.81479,36.78901],[73.83159,36.79528],[73.83699,36.79513],[73.84011,36.79369],[73.85323,36.77603],[73.86799,36.76632],[73.88222,36.74847],[73.8841,36.7392],[73.88305,36.73304],[73.88529,36.7299],[73.87364,36.72059],[73.87865,36.70709],[73.87178,36.7014],[73.84866,36.70237],[73.81249,36.71477],[73.79555,36.71884],[73.78446,36.71456],[73.77985,36.71039],[73.77478,36.70209],[73.75673,36.70634],[73.73671,36.70885],[73.72707,36.71329],[73.71721,36.71171],[73.70985,36.71233],[73.70362,36.70521],[73.69498,36.69912],[73.69222,36.68912],[73.68311,36.68657],[73.64836,36.69309],[73.638,36.69795],[73.63482,36.69816],[73.62158,36.69034],[73.6156,36.69112],[73.60682,36.69492],[73.59271,36.69284],[73.58654,36.6994],[73.58556,36.70949],[73.5793,36.72238],[73.55433,36.70956],[73.54982,36.71607],[73.5342,36.71138],[73.5199,36.71029],[73.51248,36.72169],[73.50984,36.72193],[73.49763,36.71314],[73.47931,36.71946],[73.4791,36.72312],[73.46857,36.72851],[73.46641,36.73244],[73.46197,36.73505],[73.45866,36.73259],[73.44671,36.72892],[73.43388,36.731],[73.42796,36.73311],[73.42598,36.73626],[73.42532,36.74291],[73.42144,36.74298],[73.41644,36.74102],[73.41017,36.73477],[73.39895,36.73302],[73.39442,36.73007],[73.38988,36.72978],[73.38417,36.7329],[73.37378,36.73106],[73.35158,36.735],[73.35211,36.72824],[73.34833,36.72198],[73.34783,36.7164],[73.34461,36.71472],[73.31079,36.71432],[73.30394,36.70627],[73.29412,36.70423],[73.28572,36.70379],[73.26679,36.70618],[73.25556,36.70452],[73.24612,36.70538],[73.23801,36.71152],[73.2288,36.70149],[73.20955,36.69551],[73.2014,36.69553],[73.19229,36.69773],[73.18669,36.70119],[73.1855,36.70492],[73.18656,36.7103],[73.17504,36.71797],[73.17067,36.72403],[73.17055,36.71913],[73.16788,36.71302],[73.16254,36.70759],[73.13809,36.69851],[73.11644,36.6842],[73.10584,36.68589],[73.09522,36.68336],[73.06765,36.70062],[73.07071,36.67983],[73.08043,36.66998],[73.07802,36.65286],[73.07985,36.6388],[73.07411,36.62878],[73.09629,36.61353],[73.09789,36.60992],[73.09717,36.60599],[73.09395,36.59986],[73.0795,36.5856],[73.07802,36.56918],[73.06195,36.56119],[73.0525,36.54868],[73.05366,36.54094],[73.05195,36.53297],[73.01767,36.52503],[73.00017,36.51809],[72.99916,36.52006],[72.99029,36.51305],[72.97791,36.51152],[72.98276,36.50148],[72.97475,36.49433],[72.97423,36.47537],[72.97477,36.47352],[72.9823,36.47467],[72.98749,36.47284],[72.98792,36.46927],[72.98265,36.46564],[72.98247,36.46171],[72.97936,36.45732],[72.97345,36.45384],[72.96345,36.45838],[72.95558,36.45926],[72.94971,36.46193],[72.94606,36.46621],[72.92859,36.45493],[72.92361,36.45353],[72.90815,36.46092],[72.90461,36.4601],[72.88658,36.44434],[72.85967,36.43556],[72.85915,36.43366],[72.87461,36.41962],[72.87583,36.41693],[72.87067,36.41177],[72.87009,36.40748],[72.8718,36.40038],[72.87554,36.39456],[72.87412,36.39041],[72.86407,36.3789],[72.85097,36.37238],[72.85367,36.36635],[72.84009,36.36733],[72.81608,36.35644],[72.80861,36.351],[72.80603,36.34509],[72.80335,36.33081],[72.79994,36.32794],[72.78887,36.32611],[72.77825,36.3173],[72.7739,36.31593],[72.77032,36.30912],[72.76594,36.30842],[72.7609,36.30463],[72.76094,36.3007],[72.75918,36.29858],[72.75652,36.29727],[72.74825,36.3012],[72.73114,36.29826],[72.72655,36.29073],[72.72113,36.28982],[72.71975,36.28498],[72.71407,36.28474],[72.71341,36.27856],[72.71123,36.27625],[72.70756,36.27439],[72.68056,36.27103],[72.67417,36.26222],[72.68343,36.24929],[72.68483,36.24388],[72.68002,36.24334],[72.67023,36.25454],[72.66509,36.25569],[72.6622,36.25813],[72.64446,36.25841],[72.62396,36.26881],[72.61168,36.26949],[72.60512,36.2634],[72.58466,36.25689],[72.58072,36.25262],[72.57694,36.24255],[72.57274,36.23913],[72.57237,36.22852],[72.57395,36.2238],[72.56486,36.21436],[72.5575,36.21404],[72.54731,36.20541],[72.5505,36.19854],[72.54565,36.19542],[72.54452,36.18683],[72.54018,36.17913],[72.53578,36.17552],[72.53592,36.1733],[72.54913,36.16464],[72.55125,36.16132],[72.55072,36.15002],[72.55346,36.14671],[72.56123,36.14397],[72.5617,36.13989],[72.54781,36.13006],[72.54038,36.12769],[72.53415,36.11666],[72.52762,36.11022],[72.52081,36.09831],[72.51668,36.06733],[72.52592,36.05977],[72.53574,36.04729],[72.55833,36.04611],[72.56435,36.04723],[72.56876,36.04462],[72.5794,36.03583],[72.5846,36.02508],[72.58163,36.02173],[72.58353,36.01707],[72.58086,36.0133],[72.57112,36.00837],[72.56777,36.00284],[72.56878,35.99945],[72.56798,36.00144],[72.56729,35.99813],[72.55932,35.99358],[72.56226,35.98913],[72.55996,35.98696],[72.54883,35.98235],[72.53932,35.98622],[72.53867,35.98512],[72.54246,35.9742],[72.54241,35.96954],[72.53583,35.96107],[72.53445,35.95742],[72.53489,35.95064],[72.52635,35.95029],[72.51308,35.93867],[72.51365,35.93447],[72.51689,35.9321],[72.51503,35.92669],[72.51847,35.90548],[72.53161,35.9031],[72.53953,35.89574],[72.54303,35.89449],[72.55824,35.89766],[72.56057,35.88937],[72.56542,35.88759],[72.57047,35.8821],[72.58002,35.86438],[72.5851,35.85937],[72.60994,35.86156],[72.6188,35.85336],[72.62517,35.8578],[72.62814,35.85786],[72.64967,35.8389],[72.67792,35.82372],[72.68438,35.82253],[72.69987,35.83099],[72.72337,35.8522],[72.72658,35.85305],[72.74294,35.84473],[72.76144,35.8323],[72.76485,35.83315],[72.77519,35.84146],[72.77941,35.8426],[72.78429,35.84145],[72.78652,35.8425],[72.78743,35.85535],[72.78914,35.8577],[72.7966,35.86017],[72.80821,35.8591],[72.81254,35.86586],[72.8157,35.88008],[72.81916,35.88172],[72.83932,35.86713],[72.87278,35.87474],[72.88272,35.8755],[72.89113,35.87374],[72.89357,35.87139],[72.88904,35.85433],[72.88933,35.84884],[72.89245,35.84454],[72.89837,35.84078],[72.91844,35.83906],[72.92959,35.84025],[72.95827,35.84722],[72.97764,35.85743],[72.98708,35.85981],[73.00023,35.85777],[73.0123,35.84929],[73.02882,35.84706],[73.05804,35.86269],[73.06815,35.8777],[73.08388,35.87746],[73.10587,35.85751],[73.12029,35.84782],[73.14076,35.83827],[73.14866,35.83118],[73.14791,35.82875],[73.14119,35.82507],[73.13721,35.81919],[73.1265,35.77623],[73.12642,35.72102],[73.12811,35.71639],[73.13292,35.71078],[73.13796,35.70663],[73.1536,35.70035],[73.15767,35.70007],[73.1624,35.69322],[73.19432,35.67371],[73.21262,35.66892],[73.23118,35.65116],[73.2496,35.63847],[73.25989,35.62893],[73.26868,35.62439],[73.29973,35.61117],[73.32735,35.60622],[73.36348,35.59722],[73.37323,35.58893],[73.39184,35.5677],[73.39812,35.55708],[73.47736,35.5719],[73.48109,35.57125],[73.49592,35.5599],[73.50151,35.55757],[73.50726,35.55794],[73.52212,35.56619],[73.52792,35.5673],[73.53673,35.56348],[73.55025,35.55057],[73.5568,35.54684],[73.5616,35.54639],[73.58667,35.55395],[73.60172,35.55564],[73.60928,35.55816],[73.62212,35.56784],[73.62839,35.56905],[73.63795,35.56296],[73.65182,35.55102],[73.65884,35.54763],[73.67343,35.54465],[73.72126,35.54922],[73.72436,35.54366],[73.72529,35.53486],[73.72961,35.52949],[73.7785,35.52289],[73.78128,35.51241],[73.78542,35.47708],[73.79204,35.45422],[73.7524,35.436],[73.73959,35.42904],[73.72702,35.41899],[73.71486,35.39436],[73.69828,35.37573],[73.69544,35.36907],[73.6939,35.35939],[73.69289,35.35081],[73.69514,35.33221],[73.69484,35.31841],[73.69851,35.3101],[73.72498,35.27305],[73.71906,35.24247],[73.70798,35.22248],[73.72939,35.2097],[73.73353,35.20853],[73.74115,35.21485],[73.75657,35.22293],[73.77051,35.236],[73.80833,35.2395],[73.83481,35.22622],[73.84537,35.22463],[73.85278,35.21406],[73.86119,35.20714],[73.86623,35.20618],[73.89697,35.21169],[73.91521,35.20802],[73.92455,35.2039],[73.9417,35.18646],[73.95684,35.16804],[73.9777,35.18064],[74.0003,35.17999],[73.99963,35.18278],[74.00283,35.18365],[74.00498,35.17747],[74.00476,35.16773],[74.01656,35.16322],[74.02536,35.15269],[74.03381,35.14686],[74.0441,35.14979],[74.05116,35.14651],[74.06341,35.14705],[74.07213,35.15317],[74.08006,35.14949],[74.08517,35.14888],[74.09106,35.14161],[74.09581,35.14074],[74.10663,35.14796],[74.11227,35.14853],[74.11399,35.14421],[74.11364,35.13769],[74.10707,35.13027],[74.10586,35.12572],[74.11099,35.1253],[74.11902,35.11838],[74.12794,35.11612],[74.13367,35.11005],[74.13374,35.10465],[74.14467,35.09579],[74.15611,35.09088],[74.19131,35.09092],[74.21514,35.09372],[74.22022,35.08859],[74.21755,35.08223],[74.21993,35.07534],[74.22349,35.0736],[74.22698,35.0743],[74.23523,35.08139],[74.24022,35.07914],[74.2425,35.07224],[74.24141,35.06006],[74.24513,35.05211],[74.25587,35.0442],[74.26517,35.04086],[74.28823,35.04768],[74.29155,35.05467],[74.29271,35.06452],[74.30523,35.06763],[74.34752,35.06487],[74.37566,35.066],[74.38198,35.06782],[74.39956,35.09182],[74.41062,35.10129],[74.41529,35.11174],[74.42705,35.11951],[74.43874,35.13007],[74.43994,35.12594],[74.4585,35.12527],[74.49944,35.11559],[74.51224,35.10354],[74.51974,35.09285],[74.5398,35.07498],[74.53885,35.06856],[74.53007,35.06013],[74.52907,35.05129],[74.53073,35.04618],[74.55552,35.03135],[74.56047,35.02602],[74.57837,35.02432],[74.58509,35.01812],[74.58778,35.00636],[74.58502,34.99794],[74.5763,34.98654],[74.57053,34.97563],[74.56975,34.96228],[74.57701,34.91392],[74.59032,34.91584],[74.59653,34.9218],[74.60423,34.9248],[74.62008,34.92063],[74.63434,34.90986],[74.6464,34.90364],[74.66253,34.90677],[74.66409,34.9004],[74.68415,34.8788],[74.69822,34.88072],[74.70167,34.88303],[74.71145,34.88092],[74.71669,34.86649],[74.72944,34.86325],[74.73948,34.85411],[74.74026,34.84836],[74.75017,34.84499],[74.76276,34.84408],[74.77694,34.84077],[74.78785,34.85246],[74.79846,34.85207],[74.80757,34.85048],[74.81329,34.84362],[74.82325,34.83736],[74.83969,34.84074],[74.85322,34.8311],[74.86104,34.82833],[74.87215,34.83019],[74.88707,34.82228],[74.89857,34.80972],[74.90145,34.80165],[74.90731,34.79253],[74.9186,34.78511],[74.92982,34.78697],[74.95063,34.80174],[74.95674,34.80813],[75.01634,34.84825],[75.0311,34.84843],[75.04376,34.84336],[75.05712,34.84234],[75.06403,34.84711],[75.06528,34.85749],[75.06362,34.87081],[75.06412,34.90524],[75.07164,34.9192],[75.1013,34.9191],[75.14197,34.87495],[75.14423,34.85028],[75.15809,34.84548],[75.17257,34.84267],[75.19062,34.83493],[75.22324,34.81752],[75.23966,34.80183],[75.25625,34.77389],[75.25093,34.74986],[75.26357,34.74458],[75.26256,34.73168],[75.2543,34.72169],[75.25827,34.69757],[75.23207,34.69082],[75.20791,34.66542],[75.20446,34.6535],[75.21818,34.6516],[75.20948,34.64767],[75.20603,34.64378],[75.20807,34.63868],[75.21272,34.63812],[75.22062,34.63383],[75.22533,34.63463],[75.22993,34.63303],[75.23288,34.63616],[75.2415,34.63778],[75.25407,34.62828],[75.25664,34.62151],[75.25834,34.61459],[75.25326,34.6075],[75.25337,34.60413],[75.26553,34.60226],[75.26912,34.59792],[75.27799,34.59439],[75.28637,34.59543],[75.28971,34.58917],[75.29956,34.58694],[75.30636,34.57875],[75.31181,34.57686],[75.31504,34.56965],[75.3199,34.56484],[75.32853,34.56879],[75.33366,34.56801],[75.3379,34.56474],[75.34416,34.56303],[75.35267,34.55315],[75.35562,34.54687],[75.36176,34.54209],[75.36111,34.54017],[75.36557,34.5381],[75.36418,34.52899],[75.36612,34.52145],[75.3572,34.52129],[75.35293,34.51759],[75.34738,34.5027],[75.34733,34.49556],[75.34292,34.48944],[75.34459,34.48505],[75.35024,34.48014],[75.34965,34.4753],[75.35324,34.46879],[75.34905,34.46346],[75.34016,34.46056],[75.33723,34.45167],[75.3326,34.45193],[75.33049,34.4503],[75.33291,34.44709],[75.33317,34.44295],[75.32754,34.43977],[75.3297,34.43623],[75.3342,34.43324],[75.3351,34.42927],[75.3538,34.42456],[75.35738,34.418],[75.36512,34.41848],[75.37234,34.4126],[75.36963,34.40176],[75.3666,34.39774],[75.36697,34.39103],[75.37714,34.38714],[75.37795,34.38511],[75.37878,34.38206],[75.37676,34.37567],[75.37338,34.3715],[75.38571,34.36614],[75.38051,34.3583],[75.38476,34.35402],[75.38577,34.34989],[75.37602,34.34195],[75.38398,34.33672],[75.38467,34.32824],[75.39605,34.31672],[75.39027,34.31103],[75.38892,34.30548],[75.39284,34.29708],[75.4035,34.28469],[75.41089,34.28469],[75.41922,34.28189],[75.42263,34.2839],[75.42612,34.28219],[75.43087,34.28357],[75.43737,34.28248],[75.43949,34.27949],[75.44424,34.28033],[75.45362,34.28592],[75.45918,34.27942],[75.47011,34.27939],[75.47485,34.27759],[75.48217,34.27165],[75.48295,34.26904],[75.48105,34.2624],[75.48379,34.2587],[75.48238,34.25506],[75.48858,34.24662],[75.4959,34.24097],[75.49696,34.23764],[75.49536,34.2324],[75.5029,34.23435],[75.51459,34.22671],[75.52313,34.229],[75.52973,34.22683],[75.53427,34.22366],[75.53824,34.22308],[75.55533,34.21141],[75.57026,34.21137],[75.57993,34.21397],[75.59336,34.19769],[75.6046,34.19519],[75.62179,34.20179],[75.62607,34.20131],[75.63701,34.20979],[75.64812,34.212],[75.6549,34.20796],[75.65739,34.20294],[75.66242,34.19913],[75.67075,34.19803],[75.68054,34.20096],[75.68529,34.19956],[75.69072,34.19527],[75.6873,34.18694],[75.68805,34.18486],[75.68411,34.17802],[75.68278,34.17059],[75.68448,34.16678],[75.68005,34.16246],[75.67814,34.15378],[75.67016,34.14998],[75.66795,34.14429],[75.67361,34.14516],[75.68235,34.14404],[75.68571,34.14216],[75.68229,34.13556],[75.68316,34.13243],[75.69125,34.12761],[75.68563,34.12091],[75.68736,34.11605],[75.69684,34.11343],[75.70774,34.10724],[75.7188,34.10325],[75.72148,34.0944],[75.7251,34.08966],[75.73337,34.08411],[75.73475,34.07895],[75.74254,34.07326],[75.73703,34.05891],[75.74148,34.05616],[75.75,34.05485],[75.75517,34.05674],[75.76852,34.05492],[75.76769,34.04381],[75.76919,34.04128],[75.7797,34.03762],[75.78671,34.0312],[75.79694,34.03045],[75.79754,34.02598],[75.79984,34.02298],[75.81429,34.01451],[75.81827,34.00751],[75.82783,34.00626],[75.8358,34.00714],[75.84306,34.00478],[75.84371,34.00324],[75.84161,33.99957],[75.83024,33.9924],[75.8256,33.97781],[75.81963,33.97221],[75.82212,33.96558],[75.83065,33.95874],[75.83824,33.95496],[75.84525,33.95447],[75.85249,33.96225],[75.87356,33.96205],[75.88672,33.96827],[75.8932,33.96909],[75.89856,33.96744],[75.90854,33.96888],[75.91745,33.96295],[75.94286,33.96046],[75.9496,33.95589],[75.9587,33.95685],[75.96654,33.95452],[75.96883,33.96016],[75.97271,33.96252],[75.9782,33.97219],[75.99053,33.97239],[76.00542,33.97674],[76.01219,33.97439],[76.01795,33.97507],[76.02436,33.98212],[76.02654,33.97163],[76.04292,33.95255],[76.04826,33.94036],[76.04947,33.93386],[76.04898,33.93149],[76.04137,33.92529],[76.03389,33.92417],[76.03257,33.91966],[76.03804,33.91887],[76.04776,33.91242],[76.07008,33.90887],[76.08258,33.90348],[76.09191,33.90243],[76.0969,33.90041],[76.10024,33.89626],[76.10725,33.89185],[76.1179,33.88872],[76.12296,33.88905],[76.12501,33.88528],[76.13668,33.8786],[76.13847,33.87242],[76.13754,33.87008],[76.14255,33.86646],[76.14951,33.85362],[76.14908,33.85015],[76.1554,33.84725],[76.15425,33.8406],[76.15998,33.83692],[76.15687,33.82999],[76.16264,33.8212],[76.16598,33.81935],[76.16324,33.81741],[76.15975,33.80847],[76.16138,33.80185],[76.16725,33.79782],[76.18474,33.80015],[76.19867,33.78723],[76.20036,33.77564],[76.2108,33.77119],[76.21258,33.76118],[76.21885,33.75873],[76.23611,33.75987],[76.24708,33.75853],[76.24786,33.75456],[76.25002,33.75246],[76.26021,33.75],[76.26547,33.74638],[76.26726,33.74038],[76.26578,33.73378],[76.27117,33.73075],[76.26741,33.72468],[76.26713,33.71709],[76.26324,33.71209],[76.26618,33.70694],[76.26311,33.70305],[76.26569,33.69743],[76.26472,33.68942],[76.2696,33.6851],[76.26621,33.67953],[76.2705,33.67559],[76.27352,33.66935],[76.28465,33.66184],[76.28005,33.65469],[76.27412,33.65232],[76.27048,33.64331],[76.26556,33.64351],[76.25304,33.63808],[76.24891,33.63864],[76.22937,33.62983],[76.22778,33.62563],[76.23281,33.62316],[76.23723,33.61759],[76.24096,33.60959],[76.24034,33.60485],[76.23865,33.60244],[76.23071,33.60304],[76.22422,33.60031],[76.22412,33.59684],[76.22792,33.5941],[76.2314,33.58695],[76.22522,33.57728],[76.21787,33.57366],[76.20648,33.57328],[76.20544,33.5692],[76.20549,33.56771],[76.20914,33.56646],[76.21977,33.55532],[76.22503,33.54759],[76.23192,33.54519],[76.24123,33.54831],[76.24574,33.54554],[76.25965,33.56502],[76.27787,33.56752],[76.30234,33.56736],[76.30978,33.57146],[76.31014,33.57861],[76.30182,33.58976],[76.2996,33.59824],[76.30098,33.60213],[76.30768,33.60963],[76.31744,33.60718],[76.32218,33.60227],[76.3295,33.60427],[76.33624,33.61051],[76.34692,33.60494],[76.35865,33.60369],[76.36004,33.59454],[76.36646,33.58575],[76.38073,33.57695],[76.37475,33.56588],[76.37928,33.55821],[76.37992,33.55292],[76.41024,33.54313],[76.4152,33.53908],[76.4264,33.53728],[76.43508,33.54167],[76.43996,33.54742],[76.44395,33.56055],[76.44735,33.56429],[76.45072,33.5625],[76.45783,33.55428],[76.4624,33.55162],[76.46467,33.54523],[76.45849,33.53852],[76.45916,33.53389],[76.46995,33.52768],[76.47908,33.52683],[76.49188,33.51691],[76.49927,33.51742],[76.50205,33.51598],[76.5067,33.50998],[76.5078,33.49957],[76.51442,33.49514],[76.52291,33.49338],[76.52784,33.48349],[76.53477,33.48219],[76.54091,33.47068],[76.54548,33.46873],[76.54964,33.46405],[76.55409,33.46411],[76.55764,33.46203],[76.56342,33.46252],[76.56949,33.46617],[76.57654,33.45298],[76.57706,33.44335],[76.57999,33.43831],[76.57795,33.42956],[76.58185,33.42579],[76.59341,33.42576],[76.60021,33.43143],[76.60576,33.43167],[76.61088,33.4349],[76.61327,33.43893],[76.61645,33.43992],[76.62051,33.43956],[76.62896,33.43489],[76.62955,33.4239],[76.63698,33.41553],[76.63612,33.41144],[76.63212,33.40919],[76.63841,33.40343],[76.63647,33.40184],[76.641,33.39098],[76.65148,33.38342],[76.65198,33.37044],[76.65839,33.36469],[76.65864,33.35757],[76.67242,33.34916],[76.67102,33.34185],[76.67388,33.33927],[76.68238,33.33677],[76.69647,33.32781],[76.70537,33.32807],[76.71208,33.33108],[76.71775,33.32897],[76.72588,33.31516],[76.72524,33.31134],[76.72855,33.30822],[76.72865,33.30394],[76.73211,33.29933],[76.72982,33.29676],[76.72847,33.29104],[76.72986,33.28871],[76.72773,33.28348],[76.73271,33.28151],[76.7325,33.27554],[76.73848,33.26868],[76.73705,33.2611],[76.75238,33.24959],[76.75648,33.24846],[76.76767,33.24831],[76.77743,33.25377],[76.78484,33.25346],[76.793,33.25636],[76.79915,33.25624],[76.80344,33.25295],[76.80684,33.24498],[76.82006,33.23584],[76.8224,33.23678],[76.82352,33.24333],[76.83071,33.24919],[76.84317,33.24674],[76.84461,33.24227],[76.84052,33.23959],[76.83769,33.23403],[76.83185,33.22911],[76.82771,33.22257],[76.82839,33.21856],[76.82561,33.21569],[76.83176,33.21233],[76.83131,33.20995],[76.83406,33.20859],[76.83446,33.20485],[76.8293,33.20325],[76.82364,33.19762],[76.81739,33.19414],[76.82238,33.18507],[76.81884,33.17989],[76.81354,33.17724],[76.81319,33.171],[76.81737,33.16673],[76.8167,33.16034],[76.82312,33.15037],[76.82964,33.14659],[76.83005,33.14284],[76.83481,33.14065],[76.83881,33.14122],[76.84397,33.13778],[76.84299,33.13033],[76.84891,33.12871],[76.85291,33.12569],[76.84923,33.12043],[76.85507,33.11438],[76.86243,33.11272],[76.87051,33.11336],[76.87724,33.11884],[76.8851,33.12138],[76.89152,33.11412],[76.89327,33.10992],[76.89255,33.10591],[76.89749,33.10085],[76.89771,33.09869],[76.90871,33.09457],[76.90996,33.08962],[76.90569,33.08504],[76.9052,33.07952],[76.91089,33.07601],[76.91421,33.06338],[76.92546,33.04742],[76.92577,33.03827],[76.92869,33.03166],[76.93299,33.02817],[76.94097,33.02832],[76.9507,33.01818],[76.95966,33.01534],[76.96145,33.01129],[76.9606,33.00914],[76.96373,33.00517],[76.96812,33.00418],[76.97135,33.00028],[76.98082,33.0],[76.98901,33.00262],[76.99231,33.00179],[76.9959,32.99757],[77.00949,32.98866],[77.02387,32.99132],[77.03163,32.98971],[77.03894,32.99765],[77.04739,32.99862],[77.05704,32.9916],[77.07119,32.98441],[77.08016,32.98301],[77.08266,32.97844],[77.08185,32.97528],[77.08652,32.97241],[77.09684,32.9715],[77.11076,32.97514],[77.11161,32.97914],[77.11602,32.98467],[77.13372,32.98007],[77.14217,32.98149],[77.14678,32.97851],[77.15052,32.97817],[77.14912,32.96848],[77.14736,32.9657],[77.14922,32.96058],[77.14873,32.95616],[77.16113,32.95266],[77.16194,32.95064],[77.15947,32.93825],[77.16454,32.93648],[77.16171,32.93171],[77.16389,32.91823],[77.15988,32.91304],[77.15574,32.91158],[77.17044,32.91067],[77.17393,32.91333],[77.1785,32.92313],[77.18797,32.92874],[77.19287,32.92344],[77.19341,32.9164],[77.20292,32.90655],[77.21913,32.90407],[77.23367,32.89444],[77.24299,32.89216],[77.23997,32.88439],[77.23726,32.88335],[77.23759,32.88018],[77.24426,32.87267],[77.25,32.87236],[77.25331,32.86934],[77.25524,32.86602],[77.25427,32.86394],[77.26269,32.86409],[77.26629,32.86883],[77.27399,32.87385],[77.28607,32.86449],[77.29044,32.85708],[77.30086,32.84986],[77.30949,32.8516],[77.3219,32.85154],[77.32874,32.84297],[77.32534,32.83551],[77.327,32.83149],[77.32968,32.83047],[77.33203,32.8261],[77.33602,32.82498],[77.33679,32.81904],[77.33857,32.81691],[77.35315,32.81599],[77.37287,32.8232],[77.3766,32.83708],[77.37924,32.83892],[77.37988,32.84454],[77.37587,32.84918],[77.37459,32.85494],[77.38146,32.86192],[77.38779,32.86355],[77.39422,32.87132],[77.39589,32.87717],[77.4045,32.88274],[77.41344,32.88412],[77.42798,32.87561],[77.43331,32.87593],[77.43956,32.87924],[77.44481,32.8799],[77.44796,32.87531],[77.44782,32.87026],[77.45207,32.86409],[77.46119,32.85998],[77.4692,32.85868],[77.47494,32.86161],[77.48082,32.87054],[77.48619,32.87369],[77.49103,32.87961],[77.49719,32.88037],[77.50149,32.88558],[77.51258,32.87736],[77.53847,32.88608],[77.54539,32.8916],[77.55039,32.90031],[77.56372,32.9123],[77.57725,32.91445],[77.59436,32.92594],[77.60311,32.94293],[77.64316,32.94651],[77.64358,32.94922],[77.65269,32.95488],[77.65601,32.95888],[77.66413,32.95831],[77.67413,32.96119],[77.67407,32.96735],[77.67873,32.96958],[77.68202,32.97477],[77.68072,32.98379],[77.68249,32.9888],[77.68952,32.98802],[77.69778,32.98271],[77.6975,32.97938],[77.71315,32.98246],[77.7141,32.97633],[77.71957,32.96866],[77.72494,32.96932],[77.73095,32.97455],[77.73282,32.97178],[77.74101,32.96903],[77.7445,32.962],[77.74977,32.95773],[77.75091,32.95456],[77.76354,32.94905],[77.76651,32.94629],[77.76475,32.94358],[77.7658,32.94154],[77.77183,32.93802],[77.7876,32.92347],[77.79456,32.91999],[77.79973,32.91244],[77.81063,32.90703],[77.81175,32.90454],[77.81069,32.90016],[77.80667,32.89556],[77.80246,32.89333],[77.79327,32.8931],[77.78947,32.89061],[77.78398,32.88285],[77.78096,32.86579],[77.79186,32.85593],[77.79766,32.85629],[77.80549,32.84988],[77.81593,32.8483],[77.82612,32.83619],[77.83244,32.83627],[77.83532,32.84067],[77.83901,32.84201],[77.84687,32.83898],[77.8554,32.83234],[77.86919,32.82703],[77.87127,32.82248],[77.87851,32.81918],[77.88209,32.81036],[77.8811,32.80413],[77.88795,32.79869],[77.88419,32.78755],[77.89183,32.78287],[77.89456,32.77826],[77.90368,32.77188],[77.91624,32.77384],[77.92572,32.772],[77.92723,32.76572],[77.93293,32.76129],[77.93413,32.7565],[77.93143,32.75048],[77.93291,32.74655],[77.92926,32.74253],[77.93066,32.73696],[77.92703,32.73648],[77.9263,32.73482],[77.93161,32.73171],[77.93439,32.72586],[77.92803,32.722],[77.92485,32.71723],[77.92455,32.71127],[77.92163,32.70844],[77.92282,32.70643],[77.92155,32.70316],[77.92246,32.69905],[77.91829,32.69627],[77.91862,32.69054],[77.92665,32.68628],[77.93106,32.68201],[77.93457,32.68114],[77.94096,32.6734],[77.9428,32.66559],[77.94744,32.66088],[77.95512,32.65819],[77.96585,32.65757],[77.97091,32.65497],[77.97227,32.65292],[77.97056,32.64636],[77.98466,32.6415],[77.98757,32.63614],[77.9917,32.63254],[77.99151,32.63064],[77.99623,32.62683],[78.00329,32.62457],[78.01186,32.62499],[78.01282,32.62181],[78.01589,32.61961],[78.02903,32.6235],[78.02516,32.62723],[78.03345,32.63381],[78.03402,32.63693],[78.04276,32.64032],[78.04702,32.64531],[78.05639,32.63468],[78.06088,32.62642],[78.06788,32.62663],[78.07471,32.63094],[78.08134,32.62622],[78.08753,32.62465],[78.09171,32.62851],[78.09886,32.63036],[78.0992,32.63644],[78.09592,32.6444],[78.0926,32.64784],[78.11049,32.66277],[78.11676,32.66027],[78.12062,32.66073],[78.1271,32.65223],[78.13664,32.65447],[78.14719,32.65396],[78.14788,32.67187],[78.14238,32.68183],[78.14973,32.68175],[78.15836,32.68399],[78.16548,32.68311],[78.17115,32.68047],[78.17576,32.68101],[78.19692,32.67052],[78.20129,32.67043],[78.20394,32.66706],[78.21895,32.66463],[78.23223,32.67171],[78.2459,32.6716],[78.25441,32.68918],[78.2538,32.69202],[78.25577,32.69706],[78.26054,32.7029],[78.26849,32.7011],[78.27391,32.70253],[78.29318,32.70034],[78.2946,32.70363],[78.30179,32.70411],[78.30602,32.70712],[78.30685,32.71043],[78.31473,32.71739],[78.3139,32.72081],[78.30585,32.73248],[78.30988,32.7351],[78.31285,32.73978],[78.33326,32.74971],[78.35705,32.7577],[78.3649,32.75334],[78.388,32.75669],[78.38596,32.74965],[78.38656,32.74523],[78.38944,32.74069],[78.38466,32.7317],[78.38537,32.71956],[78.38887,32.71184],[78.39699,32.70757],[78.39721,32.6985],[78.40074,32.6942],[78.39168,32.68537],[78.38714,32.67725],[78.38651,32.66468],[78.38142,32.65413],[78.38775,32.64514],[78.38786,32.64078],[78.39161,32.63343],[78.40135,32.62831],[78.40838,32.6271],[78.40966,32.62313],[78.40363,32.61967],[78.40231,32.61707],[78.39753,32.61761],[78.39079,32.61488],[78.3896,32.60999],[78.38414,32.60894],[78.37961,32.60455],[78.37859,32.59794],[78.36617,32.59366],[78.3629,32.58966],[78.35056,32.58896],[78.34328,32.57808],[78.33149,32.57662],[78.32084,32.57135],[78.31336,32.56556],[78.31447,32.5602],[78.31245,32.55147],[78.3155,32.54967],[78.31297,32.54511],[78.30904,32.5431],[78.30697,32.53754],[78.30866,32.52555],[78.30455,32.51743],[78.3067,32.5115],[78.30113,32.50387],[78.29252,32.49897],[78.29264,32.48984],[78.28995,32.48514],[78.28575,32.48239],[78.28953,32.47934],[78.29127,32.47532],[78.28566,32.47155],[78.28469,32.46887],[78.28737,32.46299],[78.29785,32.46234],[78.30019,32.45548],[78.30741,32.45209],[78.31144,32.44633],[78.32083,32.44403],[78.32982,32.44351],[78.33366,32.44811],[78.33446,32.45066],[78.32844,32.45403],[78.32575,32.45964],[78.32844,32.46501],[78.34055,32.46273],[78.34897,32.46433],[78.35314,32.46994],[78.34998,32.47334],[78.34971,32.47746],[78.36378,32.48227],[78.36654,32.48544],[78.36761,32.49373],[78.36514,32.4994],[78.37856,32.50645],[78.38601,32.51301],[78.39419,32.5148],[78.39894,32.5209],[78.39952,32.5246],[78.40987,32.52401],[78.40727,32.5261],[78.42766,32.56336],[78.45128,32.5776],[78.47556,32.57918],[78.50342,32.58705],[78.51533,32.60406],[78.52431,32.6081],[78.54284,32.60895],[78.56551,32.61485],[78.58771,32.60457],[78.60526,32.59109],[78.61459,32.5981],[78.62934,32.62086],[78.64837,32.64386],[78.6568,32.64914],[78.68026,32.65555],[78.70871,32.65613],[78.722,32.6664],[78.74058,32.69123],[78.7507,32.69276],[78.75321,32.68414],[78.74975,32.66703],[78.74334,32.65498],[78.7622,32.62875],[78.77546,32.62101],[78.78236,32.59581],[78.75916,32.56779],[78.77011,32.52903],[78.77483,32.50537],[78.80455,32.45584],[78.8067,32.44425],[78.82245,32.43388],[78.8394,32.43362],[78.85994,32.41023],[78.94671,32.36125],[78.95876,32.34399],[78.97119,32.33569],[78.98334,32.34844],[79.00355,32.37488],[79.04541,32.38741],[79.09368,32.37713],[79.09924,32.38205],[79.10387,32.39665],[79.1134,32.41081],[79.12976,32.41717],[79.13517,32.4323],[79.12136,32.45814],[79.12505,32.46502],[79.13201,32.46981],[79.13894,32.46859],[79.15347,32.4715],[79.18209,32.47376],[79.23023,32.51329],[79.24093,32.51954],[79.25975,32.52265],[79.28133,32.54774],[79.29357,32.57186],[79.30526,32.58582],[79.31187,32.58763],[79.32497,32.58465],[79.33945,32.57012],[79.36237,32.56625],[79.37299,32.56048],[79.37903,32.53531],[79.38453,32.5228],[79.39662,32.51749],[79.41655,32.51808],[79.42929,32.52353],[79.43866,32.53589],[79.4515,32.55875],[79.45879,32.56589],[79.47472,32.57404],[79.52526,32.63068],[79.53749,32.65959],[79.56724,32.67007],[79.57234,32.68762],[79.58021,32.6935],[79.59241,32.711],[79.60962,32.72323],[79.61186,32.73504],[79.59794,32.74834],[79.59441,32.75948],[79.58815,32.76606],[79.57035,32.7659],[79.55708,32.76772],[79.53811,32.78636],[79.53395,32.80348],[79.51771,32.82659],[79.46549,32.88001],[79.44606,32.91181],[79.43335,32.92378],[79.42096,32.93271],[79.41395,32.94475],[79.3976,32.96185],[79.3771,32.9631],[79.36895,32.96624],[79.37172,32.9768],[79.36817,32.98252],[79.35808,32.98163],[79.35338,32.98386],[79.34623,32.98931],[79.33998,33.00188],[79.32994,33.00698],[79.3249,33.01224],[79.35674,33.01598],[79.38032,33.02767],[79.38715,33.04207],[79.36816,33.08342],[79.37322,33.10638],[79.4228,33.16496],[79.44304,33.20036],[79.45177,33.235],[79.44611,33.25773],[79.39393,33.27446],[79.35558,33.28211],[79.33112,33.2753],[79.30013,33.27327],[79.26134,33.28874],[79.22368,33.29628],[79.14903,33.29388],[79.10769,33.28911],[79.08156,33.29741],[79.01604,33.32834],[78.98703,33.33086],[78.97842,33.33641],[78.9718,33.36399],[78.95537,33.38162],[78.93998,33.41356],[78.92708,33.45429],[78.92747,33.48666],[78.94124,33.51128],[78.94377,33.52607],[78.92325,33.56025],[78.90626,33.57371],[78.90735,33.58262],[78.91452,33.60601],[78.90286,33.62201],[78.90949,33.62924],[78.92716,33.62712],[78.94034,33.61759],[78.96425,33.61373],[78.98946,33.61455],[79.03082,33.62417],[79.06609,33.6193],[79.09537,33.61254],[79.10015,33.61632],[79.09038,33.63578],[79.08171,33.67555],[79.078,33.68608],[79.04632,33.67383],[79.022,33.68615],[79.01611,33.70226],[79.01978,33.71455],[79.03798,33.74538],[79.05872,33.75618],[79.0641,33.76472],[79.06045,33.77583],[79.04361,33.7791],[79.03035,33.78805],[79.01319,33.78294],[79.00961,33.79465],[79.00233,33.80548],[78.98673,33.83623],[78.94534,33.9262],[78.9227,33.95275],[78.91832,33.96392],[78.92565,33.98249],[78.95321,34.01313],[79.00115,34.03361],[79.02483,34.03276],[79.08035,34.00995],[79.11265,34.00894],[79.13823,34.01752],[79.14667,34.03298],[79.14801,34.05507],[79.17293,34.05829],[79.18685,34.04867],[79.20599,34.04039],[79.21841,34.0417],[79.23208,34.0471],[79.2604,34.0374],[79.28294,34.02761],[79.30051,34.02965],[79.37367,34.02675],[79.41551,33.99901],[79.43745,34.01265],[79.44288,34.02117],[79.42985,34.03194],[79.41453,34.04171],[79.42111,34.07594],[79.42751,34.08077],[79.44697,34.08623],[79.46603,34.09412],[79.49595,34.12445],[79.49096,34.14711],[79.49369,34.18468],[79.50372,34.19518],[79.51314,34.20094],[79.53242,34.1992],[79.54006,34.19131],[79.57101,34.21252],[79.59214,34.23582],[79.59739,34.26476],[79.59696,34.278],[79.5796,34.29999],[79.56851,34.3202],[79.56998,34.33687],[79.56136,34.38147],[79.56894,34.40059],[79.5667,34.40559],[79.54333,34.4041],[79.53163,34.40875],[79.52755,34.41632],[79.52803,34.44209],[79.52146,34.45828],[79.52215,34.46362],[79.54035,34.46979],[79.58353,34.4785],[79.59839,34.48676],[79.6148,34.47927],[79.6335,34.47818],[79.65339,34.48057],[79.66286,34.47551],[79.68181,34.47079],[79.72588,34.46976],[79.74442,34.46206],[79.75381,34.46721],[79.79144,34.46675],[79.80385,34.47282],[79.8161,34.48309],[79.82104,34.51446],[79.80911,34.52276],[79.76978,34.53778],[79.76882,34.55227],[79.77709,34.56532],[79.79438,34.58054],[79.78991,34.59055],[79.77549,34.60208],[79.7766,34.61038],[79.82936,34.63555],[79.85824,34.6665],[79.87514,34.66794],[79.87826,34.67486],[79.92156,34.67265],[79.94466,34.6609],[79.97372,34.67681],[80.00427,34.68236],[80.04328,34.68592],[80.06531,34.69286],[80.06932,34.70089],[80.06921,34.76874],[80.075,34.80542],[80.08976,34.82805],[80.12724,34.87255],[80.17142,34.96504],[80.1869,35.008],[80.18805,35.05291],[80.18503,35.13063],[80.19916,35.1533],[80.22623,35.17956],[80.24266,35.20802],[80.25121,35.24802],[80.28392,35.31394],[80.29748,35.35287],[80.29616,35.3902],[80.29848,35.41699],[80.32121,35.43764],[80.33978,35.44967],[80.34508,35.46117],[80.33459,35.49578],[80.32683,35.52892],[80.31463,35.53608],[80.31346,35.54339],[80.31794,35.56456],[80.31171,35.58796],[80.26859,35.61543],[80.21308,35.63866],[80.1289,35.65673],[80.11216,35.68948],[80.10052,35.70616],[80.07751,35.72569],[80.06214,35.7685],[80.04261,35.80269],[80.01569,35.82616],[79.9997,35.82764],[79.9677,35.82518],[79.93834,35.80988],[79.91538,35.7928],[79.90454,35.7782],[79.89896,35.77511],[79.88709,35.77439],[79.82847,35.78692],[79.75109,35.79692],[79.72838,35.81395],[79.68231,35.83247],[79.61925,35.8453],[79.56238,35.86594],[79.53623,35.87964],[79.46804,35.88745],[79.4402,35.89408],[79.43027,35.90814],[79.41035,35.98598],[79.40093,35.99279],[79.35803,35.99173],[79.2517,35.98475],[79.2309,35.97216],[79.21313,35.95452],[79.20449,35.9277],[79.20951,35.90391],[79.21276,35.87787],[79.18164,35.85357],[79.16467,35.83819],[79.14242,35.83476],[79.03225,35.84772],[79.01315,35.85951],[78.98239,35.88966],[78.9692,35.89017],[78.95211,35.87723],[78.92512,35.86751],[78.87223,35.86234],[78.83907,35.85612],[78.81999,35.8565],[78.78622,35.86888],[78.74892,35.86477],[78.72831,35.86467],[78.71053,35.85774],[78.69524,35.859],[78.67331,35.8542],[78.66522,35.8363],[78.64643,35.82107],[78.62168,35.81111],[78.61003,35.81206],[78.56027,35.77777],[78.53416,35.76251],[78.51254,35.77204],[78.47543,35.77503],[78.44267,35.78364],[78.43024,35.77805],[78.42612,35.7682],[78.41594,35.76303],[78.41241,35.75193],[78.40907,35.74861],[78.40866,35.73906],[78.40386,35.73585],[78.33796,35.71894],[78.29793,35.72809],[78.27695,35.71837],[78.27552,35.7125],[78.27749,35.69199],[78.27719,35.67704],[78.28451,35.66449],[78.2827,35.66164],[78.26868,35.65439],[78.26561,35.64742],[78.25588,35.64579],[78.21205,35.666],[78.20699,35.66041],[78.2077,35.64778],[78.19592,35.63493],[78.19744,35.62284],[78.17599,35.62751],[78.16983,35.625],[78.17341,35.60556],[78.17064,35.5944],[78.1596,35.58149],[78.16046,35.57005],[78.16491,35.55174],[78.15724,35.54874],[78.14907,35.5416],[78.13677,35.53657],[78.13158,35.54236],[78.10575,35.55335],[78.09286,35.54956],[78.08435,35.55202],[78.07494,35.55933],[78.05556,35.58179],[78.03688,35.58503],[78.0014,35.58237],[77.99071,35.58499],[77.95781,35.60487],[77.95377,35.60158],[77.96794,35.57177],[77.96346,35.55834],[77.93752,35.51722],[77.93927,35.50691],[77.96032,35.48614],[77.97054,35.4668],[77.986,35.45483],[77.98525,35.4483],[77.97727,35.44892],[77.92932,35.49031],[77.92099,35.48795],[77.9189,35.46955],[77.91208,35.46109],[77.89375,35.46728],[77.88613,35.47743],[77.86949,35.47271],[77.86257,35.47623],[77.85263,35.48537],[77.83799,35.49186],[77.82924,35.5051],[77.82205,35.50624],[77.80963,35.49999],[77.80348,35.49088],[77.78632,35.48798],[77.76739,35.49539],[77.74912,35.50873],[77.73587,35.5211],[77.72616,35.51285],[77.72877,35.47733],[77.70779,35.47292],[77.68575,35.47217],[77.68516,35.46682],[77.67335,35.46591],[77.6531,35.48118],[77.64703,35.47924],[77.63713,35.4692],[77.62862,35.46504],[77.55664,35.47574],[77.49613,35.47778],[77.47426,35.46501],[77.44366,35.45946],[77.41884,35.46664],[77.38524,35.47386],[77.37676,35.48345],[77.36322,35.48682],[77.35468,35.49581],[77.35292,35.50671],[77.34549,35.51921],[77.33008,35.5257],[77.33204,35.53035],[77.36197,35.54316],[77.38866,35.53944],[77.41181,35.5234],[77.43052,35.51367],[77.443,35.51396],[77.45817,35.51884],[77.47342,35.51773],[77.47981,35.52266],[77.48276,35.52962],[77.4735,35.53867],[77.46522,35.55005],[77.47561,35.57143],[77.47188,35.58427],[77.45865,35.59062],[77.44656,35.59389],[77.44013,35.60213],[77.44174,35.61698],[77.44103,35.63737],[77.43794,35.65614],[77.42807,35.65985],[77.41156,35.65626],[77.40281,35.66347],[77.40183,35.68149],[77.38533,35.69165],[77.37801,35.70534],[77.36587,35.71519],[77.34375,35.72096],[77.33555,35.71975],[77.3326,35.71279],[77.32107,35.70105],[77.3124,35.70227],[77.29908,35.708],[77.28744,35.72259],[77.28031,35.71771],[77.27639,35.70842],[77.25834,35.70432],[77.24192,35.70848],[77.21301,35.73325],[77.19164,35.73237],[77.17968,35.73022],[77.16903,35.74054],[77.17636,35.76813],[77.16208,35.76495],[77.15219,35.76864],[77.14578,35.77746],[77.13504,35.78],[77.13234,35.78916],[77.12701,35.79432],[77.11566,35.79811],[77.09111,35.79503],[77.04522,35.77729],[77.01048,35.77491],[77.001,35.77556],[76.98244,35.7876],[76.95699,35.78995],[76.93561,35.78902],[76.92505,35.79333],[76.9038,35.80794],[76.88739,35.81264],[76.86115,35.83595],[76.82353,35.84149],[76.80748,35.84975],[76.79877,35.87963],[76.78299,35.9052],[76.75778,35.932],[76.73939,35.94638],[76.73214,35.95464],[76.73286,35.96176],[76.73626,35.96632],[76.759,35.98034],[76.77036,35.99811],[76.7877,36.01667],[76.81041,36.02292],[76.81345,36.03108],[76.81369,36.04063],[76.7982,36.06199],[76.78375,36.07193],[76.75218,36.08002],[76.72009,36.0977],[76.71526,36.10818],[76.71644,36.12722],[76.71112,36.14013],[76.6703,36.17391],[76.65592,36.19218],[76.64468,36.19771],[76.61691,36.17802],[76.59409,36.17832],[76.56539,36.18617],[76.54929,36.20216],[76.51032,36.21067],[76.48098,36.21973],[76.46825,36.24027],[76.4482,36.24634],[76.43678,36.25783],[76.44566,36.26562],[76.4485,36.27201],[76.4375,36.31035],[76.41339,36.32803],[76.3798,36.3469],[76.35393,36.36945],[76.33992,36.36974],[76.2744,36.35655],[76.2665,36.35884],[76.24409,36.3716],[76.23026,36.38142],[76.20073,36.397],[76.17672,36.40088],[76.16395,36.40645],[76.14462,36.42855],[76.11172,36.45966],[76.09169,36.47462],[76.07115,36.48424],[76.05333,36.4913],[76.01006,36.49513],[75.94504,36.51161],[75.89078,36.53277],[75.8668,36.54555],[75.85243,36.55834],[75.80702,36.56342],[75.74442,36.6077],[75.73466,36.62259],[75.72053,36.63834],[75.66281,36.72166],[75.61272,36.77527],[75.58553,36.78638],[75.48802,36.81639],[75.46327,36.83031],[75.45834,36.84192],[75.44982,36.88893],[75.44183,36.89952],[75.42968,36.90497],[75.41765,36.90326],[75.40878,36.90375],[75.40692,36.90803],[75.41106,36.92152],[75.42488,36.95236],[75.41845,36.9724],[75.41368,36.97743],[75.40369,36.98217],[75.37924,36.97458],[75.36889,36.97516],[75.35443,36.98848],[75.34841,37.00492],[75.35037,37.01912],[75.34657,37.05272],[75.34131,37.06076],[75.33628,37.06283],[75.32078,37.06428],[75.27654,37.06015],[75.21096,37.05002],[75.19693,37.04243],[75.17721,37.02025],[75.15296,36.98816],[75.10915,36.9619],[75.09125,36.96107],[75.05519,36.97432],[75.03708,36.98899],[75.02322,36.99211],[75.01567,36.99072],[74.95402,36.95462],[74.93413,36.93837],[74.91558,36.92026],[74.90976,36.92176],[74.8965,36.94152],[74.83479,37.00526],[74.83347,37.01472],[74.84087,37.03214],[74.8389,37.03584],[74.83583,37.03799],[74.8292,37.03903],[74.80477,37.03498],[74.78331,37.041],[74.76905,37.04122],[74.76019,37.03597],[74.75318,37.02188],[74.74942,37.01939],[74.73817,37.02678],[74.72636,37.0385],[74.71591,37.05365],[74.71192,37.06379]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-LD","area_level":"State","area_name":"Lakshadweep","geometry_source":"SOI_States","same_as":"LGD/31/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.0132,8.30322],[73.01323,8.3033],[73.01323,8.30338],[73.01325,8.30351],[73.01316,8.3036],[73.01308,8.30362],[73.01294,8.30358],[73.01285,8.30348],[73.01286,8.30334],[73.01301,8.30322],[73.01304,8.30319],[73.01312,8.30319],[73.0132,8.30322]]],[[[73.05338,8.27454],[73.06521,8.28616],[73.06566,8.28773],[73.06479,8.29251],[73.06484,8.29496],[73.06539,8.30114],[73.06614,8.30399],[73.06925,8.31146],[73.07481,8.32177],[73.07764,8.3255],[73.07416,8.32185],[73.06788,8.31033],[73.06507,8.30319],[73.06414,8.29757],[73.06286,8.29508],[73.05936,8.29078],[73.05502,8.28323],[73.04699,8.27667],[73.04384,8.27474],[73.03953,8.27338],[73.03356,8.2734],[73.02746,8.27203],[73.02093,8.27261],[73.01933,8.27367],[73.01806,8.27557],[73.01853,8.276],[73.02125,8.27329],[73.02151,8.27359],[73.02065,8.27536],[73.01782,8.27723],[73.017,8.27686],[73.01822,8.27141],[73.02006,8.27002],[73.02385,8.26839],[73.03102,8.26627],[73.03525,8.26563],[73.04199,8.2652],[73.04562,8.26586],[73.04785,8.26744],[73.05338,8.27454]]],[[[73.63003,10.06934],[73.63049,10.0694],[73.63085,10.06963],[73.63093,10.06978],[73.63071,10.06999],[73.63031,10.06997],[73.63006,10.06994],[73.62986,10.06988],[73.62959,10.06972],[73.62958,10.0695],[73.62972,10.06931],[73.63003,10.06934]]],[[[73.63242,10.07037],[73.63238,10.07072],[73.63233,10.07099],[73.6322,10.07109],[73.63196,10.07094],[73.6316,10.07053],[73.63154,10.07012],[73.63167,10.06991],[73.63211,10.06991],[73.63242,10.07037]]],[[[73.63367,10.07264],[73.63398,10.07294],[73.63395,10.07332],[73.63386,10.07342],[73.6336,10.07347],[73.63306,10.07345],[73.6328,10.07328],[73.63285,10.07282],[73.63307,10.07251],[73.63367,10.07264]]],[[[73.63016,10.07428],[73.63032,10.07445],[73.63041,10.07462],[73.63046,10.07483],[73.63042,10.07495],[73.63032,10.07497],[73.6302,10.07492],[73.63003,10.07483],[73.62982,10.07463],[73.62975,10.07446],[73.62973,10.07429],[73.62979,10.07417],[73.62986,10.07414],[73.62997,10.07413],[73.63016,10.07428]]],[[[73.62723,10.07484],[73.62726,10.07496],[73.62763,10.07511],[73.62773,10.07527],[73.62751,10.07539],[73.62726,10.07546],[73.62688,10.07536],[73.62651,10.07505],[73.6262,10.07474],[73.62563,10.07425],[73.62535,10.07394],[73.62544,10.07359],[73.62582,10.07322],[73.62635,10.07329],[73.6271,10.07363],[73.62735,10.07403],[73.62763,10.07428],[73.62797,10.07474],[73.62776,10.07493],[73.62735,10.07474],[73.62723,10.07484]]],[[[73.64693,10.07354],[73.64653,10.07763],[73.647,10.08242],[73.64809,10.08611],[73.64942,10.09484],[73.65073,10.09944],[73.65089,10.10155],[73.65061,10.10297],[73.65039,10.10307],[73.65008,10.09984],[73.64936,10.09658],[73.64792,10.09323],[73.64736,10.08954],[73.64505,10.08373],[73.6433,10.0774],[73.64196,10.07498],[73.63966,10.07225],[73.63804,10.07163],[73.63713,10.07166],[73.63482,10.07268],[73.63438,10.07268],[73.6342,10.07237],[73.63663,10.06854],[73.63894,10.06295],[73.63922,10.06172],[73.63872,10.06097],[73.63887,10.05964],[73.64038,10.05833],[73.64128,10.05812],[73.64384,10.05812],[73.64475,10.05824],[73.64534,10.05861],[73.64603,10.05923],[73.64668,10.06045],[73.64715,10.06667],[73.64693,10.07354]]],[[[73.65171,10.10972],[73.65183,10.11001],[73.6518,10.11031],[73.65169,10.11046],[73.65154,10.11062],[73.65131,10.11063],[73.65116,10.11045],[73.65113,10.11017],[73.65126,10.10984],[73.65149,10.10967],[73.65171,10.10972]]],[[[72.28323,10.04221],[72.28361,10.04236],[72.28421,10.04244],[72.28512,10.04321],[72.28565,10.04357],[72.28629,10.04418],[72.28673,10.04509],[72.2872,10.0458],[72.28796,10.0467],[72.28838,10.04787],[72.28856,10.04882],[72.28868,10.04905],[72.2886,10.05083],[72.28897,10.05207],[72.28974,10.05371],[72.28981,10.05428],[72.28951,10.0542],[72.28912,10.05397],[72.28804,10.05094],[72.28705,10.05008],[72.28668,10.04945],[72.28624,10.04899],[72.28552,10.04843],[72.28479,10.04744],[72.28396,10.04589],[72.2834,10.04399],[72.2826,10.04265],[72.28259,10.04246],[72.28269,10.04227],[72.28294,10.04215],[72.28323,10.04221]]],[[[73.65954,10.15531],[73.65932,10.15643],[73.65882,10.15661],[73.65826,10.15652],[73.6575,10.15615],[73.65713,10.15581],[73.65691,10.15497],[73.65707,10.15378],[73.65732,10.15359],[73.6576,10.15378],[73.6575,10.15458],[73.65757,10.15499],[73.6577,10.15499],[73.65854,10.15294],[73.65851,10.15192],[73.65869,10.15098],[73.65913,10.14965],[73.66079,10.14577],[73.66119,10.14443],[73.66157,10.14177],[73.6611,10.13708],[73.66016,10.13376],[73.66001,10.13165],[73.65966,10.13103],[73.65913,10.13063],[73.65919,10.13035],[73.65966,10.13038],[73.66057,10.131],[73.66119,10.13332],[73.66204,10.13553],[73.66263,10.13758],[73.66335,10.14084],[73.66338,10.14226],[73.66217,10.14617],[73.66113,10.14803],[73.66076,10.14909],[73.66038,10.15051],[73.65954,10.15531]]],[[[72.33731,10.10531],[72.33756,10.10603],[72.33756,10.10644],[72.33638,10.1076],[72.33593,10.10751],[72.33597,10.10715],[72.33648,10.10601],[72.33611,10.10476],[72.33524,10.10258],[72.33436,10.10149],[72.33418,10.10094],[72.33444,10.10087],[72.33485,10.10128],[72.33558,10.10217],[72.33627,10.10351],[72.33662,10.10435],[72.33664,10.10433],[72.33731,10.10531]]],[[[72.33159,10.13125],[72.33134,10.132],[72.33111,10.13379],[72.33102,10.13409],[72.33084,10.1343],[72.33042,10.1346],[72.32998,10.13508],[72.32957,10.1359],[72.32928,10.13693],[72.32896,10.13766],[72.3287,10.13813],[72.32817,10.1386],[72.32784,10.13913],[72.32783,10.13983],[72.32768,10.13991],[72.32736,10.13982],[72.32715,10.13965],[72.32688,10.13903],[72.32691,10.13832],[72.3275,10.13594],[72.32761,10.13384],[72.32753,10.13341],[72.32729,10.13281],[72.32712,10.13252],[72.32653,10.13192],[72.32653,10.13118],[72.32662,10.13095],[72.32679,10.13078],[72.3271,10.13061],[72.32773,10.13053],[72.32821,10.13057],[72.32925,10.13089],[72.32964,10.13095],[72.33032,10.13082],[72.33137,10.13],[72.33184,10.1291],[72.33209,10.12903],[72.33247,10.12914],[72.33258,10.12927],[72.3326,10.12944],[72.33246,10.12972],[72.33215,10.12999],[72.33201,10.13035],[72.33194,10.13076],[72.33159,10.13125]]],[[[72.64338,10.57943],[72.64056,10.58046],[72.63986,10.58035],[72.63984,10.57882],[72.63858,10.57472],[72.63761,10.57321],[72.63653,10.57065],[72.63115,10.56184],[72.62595,10.55435],[72.6244,10.55137],[72.62295,10.54956],[72.62251,10.54912],[72.62142,10.5492],[72.61767,10.54761],[72.61581,10.54538],[72.61577,10.54409],[72.61644,10.54328],[72.6176,10.54328],[72.61933,10.5444],[72.62274,10.54805],[72.62354,10.54941],[72.63549,10.55854],[72.63701,10.55934],[72.63933,10.56003],[72.64163,10.5613],[72.64408,10.56175],[72.64589,10.56243],[72.64893,10.56465],[72.64938,10.56555],[72.65063,10.57037],[72.65009,10.57322],[72.64904,10.57564],[72.64632,10.57917],[72.6456,10.57952],[72.64338,10.57943]]],[[[73.66725,10.81865],[73.66211,10.81835],[73.66058,10.81801],[73.65986,10.81747],[73.65881,10.81557],[73.65875,10.81322],[73.65898,10.81208],[73.66043,10.80874],[73.66289,10.80676],[73.66654,10.80574],[73.67092,10.80508],[73.67389,10.80499],[73.67651,10.80529],[73.68341,10.80729],[73.68946,10.81009],[73.69211,10.81103],[73.69902,10.81281],[73.70044,10.814],[73.70092,10.8154],[73.70066,10.81659],[73.69947,10.81738],[73.69861,10.81747],[73.6898,10.81805],[73.68832,10.81798],[73.6859,10.81745],[73.68091,10.81762],[73.67783,10.81822],[73.67707,10.8182],[73.67571,10.81739],[73.67321,10.81799],[73.67046,10.81809],[73.66975,10.81788],[73.66725,10.81865]]],[[[72.168,10.81605],[72.16807,10.81623],[72.16807,10.8163],[72.16799,10.81636],[72.16783,10.81632],[72.16744,10.81607],[72.16721,10.81597],[72.16669,10.81596],[72.16592,10.8158],[72.16512,10.81534],[72.16414,10.81452],[72.16403,10.81423],[72.16411,10.81404],[72.16422,10.81393],[72.1644,10.81383],[72.16465,10.81381],[72.16532,10.81388],[72.16628,10.81387],[72.16664,10.81382],[72.1675,10.81383],[72.16794,10.81388],[72.16814,10.81393],[72.16824,10.81402],[72.16832,10.81413],[72.16826,10.81429],[72.16782,10.81471],[72.16774,10.81483],[72.16766,10.81509],[72.16774,10.8155],[72.168,10.81605]]],[[[72.20355,10.87961],[72.20033,10.87993],[72.19392,10.87242],[72.19247,10.86868],[72.18741,10.85038],[72.18294,10.84202],[72.17834,10.83194],[72.17072,10.82176],[72.16937,10.81928],[72.17031,10.81954],[72.17211,10.82117],[72.17898,10.82992],[72.18255,10.83841],[72.18847,10.84914],[72.19853,10.86439],[72.20209,10.87045],[72.20522,10.87679],[72.20577,10.87866],[72.2054,10.8796],[72.20355,10.87961]]],[[[72.28812,10.94762],[72.28718,10.94825],[72.28694,10.94825],[72.28667,10.948],[72.28639,10.94743],[72.28585,10.94563],[72.2856,10.94376],[72.28515,10.94222],[72.28483,10.9415],[72.28443,10.93982],[72.28413,10.93921],[72.28396,10.93864],[72.28424,10.93775],[72.28494,10.93733],[72.28611,10.93718],[72.28763,10.9368],[72.2888,10.93678],[72.28936,10.93689],[72.29066,10.93736],[72.29138,10.9378],[72.29179,10.93784],[72.292,10.93805],[72.29198,10.93841],[72.29173,10.93889],[72.29136,10.93932],[72.29011,10.94048],[72.2898,10.94115],[72.28914,10.94368],[72.2888,10.94467],[72.28882,10.94535],[72.28908,10.946],[72.28955,10.94664],[72.29012,10.94718],[72.29104,10.94722],[72.29255,10.94707],[72.29275,10.94717],[72.29271,10.94732],[72.29251,10.94745],[72.28989,10.94753],[72.28846,10.94745],[72.28812,10.94762]]],[[[72.32478,10.95141],[72.3261,10.95221],[72.32636,10.95245],[72.32627,10.95262],[72.32604,10.95262],[72.32427,10.9517],[72.32282,10.9514],[72.32045,10.95108],[72.31805,10.95098],[72.31657,10.95085],[72.31631,10.95074],[72.31573,10.95032],[72.31532,10.9499],[72.31493,10.94928],[72.31468,10.94854],[72.31464,10.94719],[72.31451,10.94615],[72.31466,10.94469],[72.31496,10.94463],[72.31553,10.94465],[72.31695,10.94554],[72.31806,10.94609],[72.3198,10.94711],[72.3227,10.94955],[72.32414,10.95095],[72.32478,10.95141]]],[[[72.33244,10.95302],[72.33257,10.9531],[72.33285,10.95364],[72.33284,10.95378],[72.33273,10.95389],[72.33236,10.95394],[72.33207,10.95383],[72.33155,10.95349],[72.3311,10.95315],[72.33088,10.95296],[72.33043,10.95283],[72.32975,10.95279],[72.3296,10.95274],[72.32959,10.95258],[72.32998,10.95194],[72.33002,10.95193],[72.3302,10.95178],[72.33048,10.95168],[72.33071,10.95166],[72.33095,10.95173],[72.33112,10.95195],[72.33134,10.9523],[72.33203,10.95287],[72.33244,10.95302]]],[[[72.33411,10.95625],[72.33403,10.95637],[72.33386,10.95636],[72.33379,10.95626],[72.33354,10.95603],[72.33338,10.95603],[72.33309,10.95606],[72.33279,10.95612],[72.33255,10.95619],[72.33238,10.95612],[72.33225,10.95603],[72.33217,10.95584],[72.33211,10.95558],[72.33225,10.95546],[72.33249,10.95533],[72.33279,10.95528],[72.3329,10.95523],[72.33304,10.95515],[72.33316,10.95497],[72.33318,10.95475],[72.33306,10.95448],[72.33304,10.95428],[72.33313,10.95415],[72.33329,10.95415],[72.33347,10.95429],[72.33368,10.95452],[72.33383,10.95485],[72.3339,10.9552],[72.33395,10.95558],[72.33406,10.95593],[72.33411,10.95625]]],[[[72.33454,10.95747],[72.33472,10.9577],[72.33476,10.95811],[72.33478,10.95859],[72.33466,10.95892],[72.33444,10.95944],[72.33412,10.95972],[72.3337,10.96031],[72.33355,10.96038],[72.3334,10.96035],[72.33329,10.96016],[72.33331,10.95989],[72.33351,10.95948],[72.33359,10.95917],[72.33361,10.95875],[72.33354,10.95785],[72.33361,10.95749],[72.33384,10.9573],[72.33423,10.95731],[72.33454,10.95747]]],[[[72.71951,11.11504],[72.7197,11.11562],[72.72019,11.11614],[72.72394,11.11914],[72.7266,11.1215],[72.72831,11.12355],[72.73047,11.12676],[72.73157,11.12905],[72.73294,11.13272],[72.73374,11.13545],[72.73381,11.13598],[72.73363,11.13654],[72.73328,11.1372],[72.73292,11.13746],[72.73114,11.13785],[72.73031,11.13788],[72.72929,11.13776],[72.72849,11.13739],[72.72593,11.13527],[72.72244,11.13317],[72.72024,11.13151],[72.71865,11.12972],[72.7178,11.12837],[72.71619,11.12488],[72.71583,11.12274],[72.71585,11.12059],[72.71679,11.11754],[72.71796,11.11638],[72.71872,11.11525],[72.71934,11.11489],[72.71951,11.11504]]],[[[72.76133,11.18393],[72.76233,11.18526],[72.76388,11.19228],[72.76887,11.20677],[72.77491,11.21551],[72.77633,11.21849],[72.77975,11.2323],[72.78187,11.23875],[72.78373,11.24415],[72.78926,11.25658],[72.78984,11.26092],[72.78946,11.26149],[72.78667,11.26009],[72.78513,11.25803],[72.77871,11.24369],[72.77296,11.22335],[72.77168,11.22016],[72.77137,11.21797],[72.76678,11.20479],[72.7639,11.19816],[72.76263,11.19317],[72.76254,11.18875],[72.76193,11.1855],[72.76098,11.18397],[72.76133,11.18393]]],[[[73.00764,11.47085],[73.01011,11.47272],[73.01085,11.47357],[73.01108,11.47429],[73.00975,11.47853],[73.00925,11.48181],[73.00918,11.48868],[73.00625,11.49462],[73.00518,11.49627],[73.00403,11.49759],[73.00263,11.49876],[73.00135,11.4994],[72.99994,11.49965],[72.99878,11.49952],[72.99745,11.49873],[72.99741,11.4983],[72.9984,11.4969],[72.99924,11.4953],[72.99993,11.49492],[73.00125,11.49468],[73.00183,11.49405],[73.00298,11.4899],[73.0038,11.485],[73.00458,11.48235],[73.00516,11.47908],[73.00741,11.47383],[73.00745,11.47337],[73.00644,11.47225],[73.0063,11.47132],[73.00677,11.47089],[73.00764,11.47085]]],[[[72.18965,11.60013],[72.18928,11.60072],[72.18847,11.60172],[72.18813,11.60196],[72.1876,11.60227],[72.18583,11.60306],[72.18555,11.60312],[72.18482,11.60302],[72.18457,11.60284],[72.1845,11.60271],[72.18457,11.60255],[72.18522,11.60179],[72.18551,11.60133],[72.18565,11.60068],[72.18573,11.5999],[72.18596,11.59976],[72.18638,11.59972],[72.18811,11.59986],[72.18904,11.59978],[72.18952,11.59981],[72.18968,11.5999],[72.18965,11.60013]]],[[[72.71147,11.68757],[72.71221,11.68865],[72.71215,11.68873],[72.71529,11.6928],[72.71663,11.69578],[72.71663,11.69873],[72.71637,11.7022],[72.71575,11.70498],[72.71328,11.70185],[72.71293,11.70081],[72.71284,11.69968],[72.70967,11.69361],[72.70853,11.68858],[72.708,11.6871],[72.70737,11.68649],[72.7064,11.68586],[72.70552,11.68587],[72.70502,11.68519],[72.70476,11.68423],[72.70497,11.68355],[72.70545,11.68339],[72.708,11.68344],[72.70874,11.68391],[72.70894,11.6842],[72.70911,11.68407],[72.70948,11.68442],[72.7098,11.68522],[72.70993,11.68524],[72.70994,11.68544],[72.71147,11.68757]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-MH","area_level":"State","area_name":"Maharashtra","geometry_source":"SOI_States","same_as":"LGD/27/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.2856,16.98943],[73.28559,16.98948],[73.28548,16.98951],[73.28543,16.98935],[73.28554,16.98932],[73.2856,16.98943]]],[[[73.12017,17.76655],[73.11994,17.76644],[73.11976,17.76643],[73.11922,17.76599],[73.11948,17.76552],[73.11967,17.76609],[73.11969,17.76616],[73.11976,17.76616],[73.12017,17.76655]]],[[[73.10157,17.80412],[73.10127,17.80471],[73.10112,17.80464],[73.10136,17.80406],[73.10157,17.80412]]],[[[74.44369,22.02241],[74.43164,22.03027],[74.41515,22.02494],[74.38833,22.02075],[74.38406,22.0172],[74.37582,22.00059],[74.36085,21.99031],[74.3507,21.97812],[74.33871,21.97376],[74.31237,21.97353],[74.30089,21.96713],[74.29471,21.95948],[74.29242,21.94681],[74.28952,21.93997],[74.28577,21.93551],[74.28118,21.93311],[74.26248,21.93402],[74.24153,21.93025],[74.19308,21.92597],[74.18184,21.92942],[74.17764,21.93255],[74.16947,21.94347],[74.15743,21.95082],[74.14685,21.95289],[74.14626,21.94644],[74.1403,21.94546],[74.13724,21.94718],[74.13609,21.95018],[74.12822,21.94978],[74.1059,21.94323],[74.08405,21.93373],[74.04789,21.925],[74.03123,21.91609],[74.03122,21.91406],[74.02886,21.91214],[74.02358,21.91092],[74.0039,21.90025],[73.96539,21.88432],[73.92096,21.86103],[73.90782,21.85706],[73.90058,21.85795],[73.88678,21.85466],[73.87744,21.84501],[73.87161,21.84151],[73.86662,21.8409],[73.85524,21.84341],[73.84232,21.844],[73.81944,21.84137],[73.80922,21.83781],[73.79595,21.82473],[73.8043,21.8197],[73.80784,21.80981],[73.82239,21.8113],[73.82743,21.80991],[73.82807,21.80407],[73.83295,21.80095],[73.82696,21.79793],[73.82734,21.79248],[73.83449,21.7921],[73.83816,21.78875],[73.8371,21.78733],[73.82945,21.78594],[73.82957,21.77755],[73.83414,21.7762],[73.8347,21.77405],[73.83361,21.77165],[73.82494,21.76523],[73.82374,21.7626],[73.82486,21.75956],[73.828,21.75647],[73.83366,21.75492],[73.83751,21.74553],[73.84681,21.73728],[73.85327,21.73538],[73.85836,21.7265],[73.86761,21.71834],[73.88061,21.71559],[73.88632,21.70667],[73.88389,21.70523],[73.8903,21.69797],[73.89182,21.69215],[73.89161,21.68106],[73.89459,21.67598],[73.88863,21.66077],[73.88801,21.65325],[73.88378,21.65334],[73.87419,21.64756],[73.86715,21.64604],[73.86004,21.64233],[73.85167,21.64648],[73.84977,21.63913],[73.84594,21.63974],[73.83859,21.63308],[73.83466,21.63435],[73.83603,21.63918],[73.8321,21.63835],[73.83038,21.64237],[73.8248,21.63978],[73.82173,21.64342],[73.81759,21.64197],[73.81426,21.64417],[73.81232,21.64008],[73.80471,21.63952],[73.80158,21.63714],[73.78805,21.6341],[73.78502,21.62901],[73.78051,21.62859],[73.78268,21.62208],[73.78137,21.61859],[73.78772,21.6165],[73.79667,21.60574],[73.80016,21.60368],[73.81209,21.6029],[73.81413,21.60109],[73.81542,21.58888],[73.81748,21.58802],[73.81712,21.58113],[73.82334,21.56439],[73.82228,21.56179],[73.8253,21.55513],[73.8278,21.55444],[73.82723,21.54585],[73.82914,21.54559],[73.83296,21.53706],[73.8349,21.52058],[73.83843,21.51556],[73.84606,21.5094],[73.85356,21.49747],[73.86001,21.49976],[73.86383,21.49817],[73.86436,21.50094],[73.86912,21.50108],[73.87183,21.5048],[73.87264,21.5064],[73.86632,21.50703],[73.8643,21.51257],[73.8686,21.51274],[73.86857,21.51085],[73.87201,21.51073],[73.87706,21.51216],[73.87847,21.5049],[73.87983,21.5052],[73.90532,21.51576],[73.90423,21.52451],[73.91198,21.52273],[73.91682,21.51959],[73.92175,21.52116],[73.92159,21.52508],[73.92739,21.5251],[73.92926,21.5237],[73.93206,21.51226],[73.94593,21.51679],[73.94657,21.51434],[73.95175,21.51269],[73.95212,21.51909],[73.95521,21.52035],[73.95421,21.5241],[73.95595,21.5253],[73.95418,21.5337],[73.95508,21.54083],[73.96035,21.54164],[73.96281,21.52769],[73.9663,21.52207],[73.97132,21.52351],[73.97626,21.52316],[73.97743,21.52168],[73.98227,21.5226],[73.98127,21.52781],[73.97493,21.53424],[73.97419,21.54328],[73.98108,21.54361],[73.98281,21.54073],[73.99319,21.5433],[73.99633,21.5402],[73.99581,21.53871],[73.99742,21.53901],[74.00233,21.54155],[74.00032,21.54565],[74.00345,21.5453],[74.00584,21.55276],[74.0103,21.5492],[74.02044,21.54996],[74.03091,21.54515],[74.03498,21.54553],[74.03501,21.55034],[74.03746,21.55063],[74.03831,21.54579],[74.03644,21.54557],[74.04361,21.54248],[74.04454,21.54816],[74.04748,21.54738],[74.04694,21.54468],[74.04881,21.54469],[74.04935,21.54823],[74.05118,21.54668],[74.05378,21.54751],[74.05403,21.55791],[74.0599,21.5503],[74.06697,21.55028],[74.07319,21.54792],[74.08158,21.54875],[74.07922,21.55442],[74.08504,21.55535],[74.08698,21.55157],[74.09645,21.55124],[74.09731,21.55525],[74.10446,21.55643],[74.10995,21.55624],[74.11319,21.54878],[74.11665,21.55084],[74.11556,21.5533],[74.11755,21.55614],[74.12013,21.55625],[74.12011,21.55139],[74.1298,21.55118],[74.13612,21.54929],[74.13696,21.54686],[74.13894,21.55503],[74.15396,21.55682],[74.15586,21.5683],[74.17586,21.569],[74.17648,21.55762],[74.1751,21.55643],[74.18252,21.54545],[74.18272,21.54232],[74.18761,21.5428],[74.18822,21.54072],[74.19338,21.53938],[74.19321,21.53761],[74.19554,21.53748],[74.19584,21.53206],[74.20008,21.53284],[74.20291,21.53641],[74.20845,21.53677],[74.21585,21.54109],[74.22042,21.5469],[74.22757,21.54879],[74.22901,21.55446],[74.23197,21.55361],[74.23104,21.55095],[74.23494,21.55088],[74.23458,21.5484],[74.23631,21.5484],[74.23622,21.5397],[74.26333,21.5399],[74.26332,21.54261],[74.26641,21.54259],[74.26906,21.55293],[74.27853,21.5536],[74.27672,21.56225],[74.28453,21.5651],[74.2846,21.56643],[74.2956,21.56708],[74.29553,21.56907],[74.30382,21.56547],[74.30324,21.55223],[74.31475,21.55117],[74.32156,21.55231],[74.32261,21.54911],[74.32518,21.55139],[74.33116,21.55242],[74.33233,21.54348],[74.32834,21.54278],[74.32793,21.53944],[74.33122,21.5395],[74.33084,21.53553],[74.32554,21.53607],[74.32525,21.53229],[74.32148,21.52957],[74.3226,21.51748],[74.32079,21.4985],[74.30389,21.49945],[74.30414,21.48811],[74.27734,21.48251],[74.27732,21.47937],[74.25592,21.47678],[74.25356,21.46774],[74.24742,21.46886],[74.23571,21.46777],[74.23435,21.48229],[74.21416,21.48168],[74.20891,21.46704],[74.20928,21.46219],[74.19716,21.46098],[74.19782,21.45875],[74.19612,21.4583],[74.19531,21.46053],[74.18773,21.45819],[74.18641,21.46112],[74.18349,21.46125],[74.18232,21.46925],[74.1735,21.46637],[74.17297,21.46852],[74.16122,21.4689],[74.15805,21.46755],[74.15881,21.46649],[74.15524,21.46295],[74.14766,21.46141],[74.1483,21.458],[74.13584,21.45612],[74.13373,21.46586],[74.12518,21.46665],[74.11996,21.46538],[74.12053,21.46343],[74.11716,21.46208],[74.1165,21.45241],[74.10071,21.44763],[74.09459,21.45573],[74.0723,21.45703],[74.07544,21.4598],[74.07393,21.46127],[74.07495,21.46379],[74.07297,21.46379],[74.07418,21.46563],[74.07276,21.46877],[74.06955,21.47229],[74.06293,21.47455],[74.06143,21.46197],[74.05967,21.4594],[74.05715,21.45939],[74.053,21.45627],[74.0532,21.45469],[74.04994,21.4529],[74.0457,21.44618],[74.04965,21.44021],[74.04768,21.43527],[74.0491,21.42831],[74.04827,21.4234],[74.04462,21.41919],[74.0234,21.41779],[74.01506,21.42128],[74.00895,21.41954],[74.00829,21.42287],[74.00262,21.42141],[74.00087,21.42084],[74.00293,21.41947],[74.00254,21.41746],[73.98698,21.41124],[73.98222,21.4079],[73.97692,21.41193],[73.97803,21.40734],[73.97045,21.39782],[73.95952,21.39695],[73.95947,21.39543],[73.95179,21.39527],[73.94692,21.40493],[73.93893,21.40502],[73.94408,21.39997],[73.94475,21.38112],[73.94918,21.35116],[73.94585,21.34357],[73.94235,21.32563],[73.94217,21.29927],[73.93242,21.29072],[73.92224,21.28964],[73.91897,21.28555],[73.90873,21.27867],[73.9021,21.27757],[73.89743,21.27225],[73.87961,21.26596],[73.86338,21.27266],[73.8597,21.27151],[73.84971,21.27472],[73.82654,21.26772],[73.82507,21.27136],[73.82287,21.27086],[73.82238,21.2611],[73.82749,21.25217],[73.82846,21.23998],[73.81181,21.23123],[73.81074,21.20762],[73.81296,21.20573],[73.81543,21.19735],[73.82605,21.20013],[73.8259,21.18715],[73.82298,21.18514],[73.81987,21.18673],[73.81576,21.17396],[73.8027,21.17492],[73.79356,21.18175],[73.7847,21.18399],[73.78135,21.1711],[73.7736,21.16866],[73.77231,21.16464],[73.75757,21.16743],[73.74019,21.16761],[73.74009,21.17112],[73.72975,21.16538],[73.72852,21.16194],[73.73408,21.15798],[73.73712,21.15325],[73.73742,21.15022],[73.7332,21.14832],[73.73321,21.14235],[73.73181,21.14097],[73.72102,21.14204],[73.71849,21.14157],[73.71897,21.13976],[73.71305,21.14247],[73.71074,21.14543],[73.70659,21.14462],[73.70134,21.14631],[73.70178,21.15369],[73.68164,21.15124],[73.67271,21.15443],[73.66749,21.15463],[73.66424,21.15327],[73.66494,21.1473],[73.65753,21.14585],[73.64336,21.13957],[73.63464,21.14088],[73.62743,21.14335],[73.62994,21.14883],[73.62927,21.15492],[73.61472,21.15578],[73.60779,21.15898],[73.60579,21.17008],[73.60645,21.17876],[73.5996,21.1817],[73.59385,21.17439],[73.58101,21.16945],[73.57742,21.17075],[73.57764,21.16792],[73.58328,21.16101],[73.57688,21.15667],[73.57852,21.15048],[73.59879,21.15663],[73.60077,21.15022],[73.60513,21.14401],[73.61763,21.1427],[73.61191,21.13808],[73.61846,21.11846],[73.63103,21.12328],[73.64638,21.12125],[73.6519,21.1076],[73.6772,21.10856],[73.68895,21.10079],[73.70315,21.11865],[73.70305,21.11233],[73.70549,21.10843],[73.72968,21.09987],[73.73198,21.10443],[73.74376,21.11518],[73.73302,21.09825],[73.72993,21.08243],[73.74516,21.07761],[73.75765,21.072],[73.76021,21.0694],[73.77332,21.07178],[73.7941,21.07144],[73.80774,21.08489],[73.8109,21.05949],[73.79553,21.04452],[73.81018,21.02834],[73.80872,21.02777],[73.81018,21.02834],[73.815,21.0235],[73.81864,21.0221],[73.82932,21.02616],[73.83422,21.02472],[73.83673,21.01918],[73.83534,21.01571],[73.83881,21.00754],[73.85462,20.99436],[73.862,20.99039],[73.86632,20.9899],[73.86902,20.98526],[73.87148,20.98572],[73.89239,20.97947],[73.89641,20.98202],[73.9013,20.9823],[73.90332,20.97219],[73.90846,20.96692],[73.90798,20.95974],[73.89901,20.9603],[73.89231,20.95571],[73.8882,20.93359],[73.90009,20.92078],[73.91754,20.90778],[73.92216,20.89231],[73.92573,20.8885],[73.92557,20.87737],[73.92337,20.8745],[73.9248,20.86648],[73.92264,20.8624],[73.92454,20.85862],[73.92372,20.85138],[73.92512,20.84831],[73.92761,20.84736],[73.92935,20.84236],[73.94033,20.83945],[73.93925,20.83725],[73.94056,20.82847],[73.94404,20.82377],[73.9421,20.8235],[73.93815,20.81422],[73.93193,20.8089],[73.93612,20.8009],[73.93298,20.79187],[73.93473,20.77331],[73.93186,20.76062],[73.93882,20.76034],[73.94131,20.75833],[73.94106,20.75249],[73.93803,20.74922],[73.9416,20.74642],[73.94266,20.74208],[73.93175,20.73282],[73.92956,20.72761],[73.92726,20.73434],[73.91787,20.72956],[73.91733,20.72485],[73.91205,20.72457],[73.90555,20.72681],[73.90475,20.72529],[73.89738,20.72904],[73.89551,20.73166],[73.88754,20.73144],[73.88253,20.73343],[73.88107,20.73116],[73.87442,20.72953],[73.87073,20.72102],[73.86858,20.72003],[73.86677,20.71058],[73.86371,20.70739],[73.86262,20.70324],[73.85969,20.70317],[73.86083,20.70028],[73.85624,20.70039],[73.85517,20.69225],[73.85051,20.69585],[73.83916,20.69802],[73.83544,20.7021],[73.83123,20.70031],[73.82543,20.70072],[73.81185,20.69203],[73.81692,20.67915],[73.81721,20.67204],[73.83062,20.6751],[73.83099,20.67032],[73.83658,20.66427],[73.83909,20.65877],[73.83831,20.65495],[73.83297,20.6486],[73.83274,20.64572],[73.83307,20.63797],[73.83839,20.62046],[73.83237,20.61882],[73.82601,20.61246],[73.81727,20.61357],[73.8077,20.60752],[73.80706,20.60839],[73.7984,20.59868],[73.7971,20.59886],[73.79727,20.6026],[73.79127,20.60527],[73.77799,20.59944],[73.77539,20.60022],[73.76763,20.58655],[73.7636,20.58674],[73.76074,20.57374],[73.75547,20.57084],[73.74621,20.56875],[73.74456,20.56492],[73.74198,20.56884],[73.73401,20.57191],[73.73233,20.57442],[73.72497,20.57386],[73.71547,20.57644],[73.69968,20.57525],[73.69538,20.57837],[73.68489,20.57366],[73.66912,20.56348],[73.66086,20.56247],[73.65798,20.56468],[73.65268,20.56487],[73.65139,20.56856],[73.64502,20.57398],[73.62968,20.58126],[73.62683,20.58548],[73.62731,20.59642],[73.62129,20.61248],[73.62228,20.61424],[73.61686,20.61792],[73.61475,20.62178],[73.61519,20.62482],[73.61274,20.62442],[73.59951,20.6369],[73.59599,20.63611],[73.58914,20.64172],[73.58541,20.64212],[73.58357,20.64478],[73.57716,20.64639],[73.56836,20.65141],[73.56664,20.64842],[73.56185,20.6504],[73.55785,20.64587],[73.5508,20.64856],[73.53827,20.66516],[73.53322,20.66924],[73.53279,20.67274],[73.52158,20.67528],[73.52049,20.67885],[73.5179,20.66743],[73.51133,20.66576],[73.50452,20.67068],[73.50251,20.66227],[73.49757,20.65859],[73.49562,20.65361],[73.48923,20.65573],[73.4878,20.66288],[73.48922,20.6637],[73.48459,20.66558],[73.48439,20.67016],[73.47963,20.67221],[73.47856,20.67666],[73.48216,20.67976],[73.48374,20.67631],[73.48626,20.67516],[73.49027,20.68638],[73.484,20.69156],[73.48367,20.70141],[73.48016,20.70709],[73.47563,20.70986],[73.47465,20.72039],[73.46694,20.72206],[73.45927,20.7166],[73.44918,20.71718],[73.44847,20.71325],[73.44494,20.7099],[73.44078,20.69984],[73.44341,20.69665],[73.44749,20.69555],[73.44845,20.69312],[73.4443,20.6811],[73.43204,20.67726],[73.43469,20.67048],[73.43012,20.66412],[73.41966,20.66068],[73.41245,20.66147],[73.40618,20.6549],[73.3957,20.65269],[73.39224,20.64929],[73.39256,20.6451],[73.39411,20.64078],[73.39812,20.64073],[73.4071,20.63533],[73.40738,20.63263],[73.40996,20.62998],[73.40704,20.62744],[73.40721,20.62397],[73.41087,20.62718],[73.41515,20.62631],[73.4186,20.62773],[73.42112,20.62587],[73.42518,20.61719],[73.42351,20.61421],[73.42562,20.61188],[73.42555,20.6088],[73.42824,20.60651],[73.42646,20.60198],[73.43151,20.60015],[73.42909,20.59788],[73.42958,20.5952],[73.43561,20.5933],[73.44947,20.59404],[73.45908,20.58942],[73.46357,20.58952],[73.47315,20.58464],[73.4792,20.56024],[73.4753,20.54333],[73.4831,20.54104],[73.49117,20.54092],[73.49362,20.53807],[73.49027,20.53389],[73.46987,20.52031],[73.46691,20.50923],[73.46874,20.50585],[73.46767,20.49647],[73.45912,20.49184],[73.45721,20.48835],[73.45625,20.47833],[73.44483,20.47478],[73.43546,20.45584],[73.43296,20.45364],[73.43101,20.45441],[73.4315,20.44971],[73.42856,20.44208],[73.4211,20.43003],[73.42312,20.42216],[73.41854,20.41793],[73.41957,20.41307],[73.41718,20.41309],[73.41402,20.41622],[73.41232,20.41075],[73.40487,20.40998],[73.40592,20.40297],[73.40009,20.40605],[73.39801,20.40383],[73.39592,20.39633],[73.38783,20.39841],[73.37977,20.3935],[73.3801,20.37895],[73.38419,20.37204],[73.3882,20.37386],[73.40086,20.3856],[73.40343,20.38637],[73.40605,20.3847],[73.40644,20.3734],[73.41178,20.3639],[73.4134,20.35673],[73.41366,20.35221],[73.40986,20.35093],[73.4092,20.34922],[73.41329,20.34613],[73.41216,20.34358],[73.41423,20.33612],[73.41718,20.33514],[73.41847,20.33052],[73.41381,20.32572],[73.41617,20.32479],[73.41681,20.32017],[73.41535,20.31742],[73.41873,20.31397],[73.42043,20.30735],[73.42022,20.29736],[73.42394,20.29151],[73.4277,20.28012],[73.42319,20.27477],[73.41919,20.27555],[73.4179,20.27332],[73.41503,20.27488],[73.41285,20.27095],[73.41311,20.26921],[73.41581,20.26838],[73.41494,20.26631],[73.41215,20.26551],[73.41552,20.26195],[73.4138,20.25965],[73.41612,20.25868],[73.4113,20.25322],[73.41533,20.25071],[73.41252,20.24449],[73.41741,20.24273],[73.41044,20.23851],[73.41447,20.23594],[73.41191,20.23207],[73.4136,20.22434],[73.4164,20.22422],[73.41784,20.22235],[73.41714,20.21457],[73.41557,20.2127],[73.42011,20.211],[73.42121,20.20659],[73.41651,20.19829],[73.40588,20.19549],[73.39448,20.19864],[73.39121,20.19369],[73.38867,20.19277],[73.38575,20.19615],[73.38638,20.20939],[73.3825,20.21173],[73.37814,20.21095],[73.37456,20.2047],[73.36624,20.20391],[73.36653,20.19636],[73.36475,20.19558],[73.3536,20.20036],[73.35347,20.20282],[73.36126,20.20765],[73.35925,20.21151],[73.3565,20.213],[73.34639,20.20931],[73.34384,20.19938],[73.33647,20.20017],[73.32444,20.20619],[73.31405,20.20214],[73.30373,20.20919],[73.29803,20.20859],[73.28901,20.19817],[73.28305,20.19805],[73.28118,20.19001],[73.28157,20.16686],[73.27923,20.15014],[73.26515,20.14026],[73.25741,20.13765],[73.2539,20.13796],[73.2547,20.12693],[73.25336,20.12566],[73.24925,20.12233],[73.24673,20.12652],[73.24323,20.12812],[73.22929,20.12263],[73.22704,20.12296],[73.22418,20.12496],[73.22673,20.13293],[73.22568,20.14015],[73.21793,20.13665],[73.21701,20.12861],[73.21247,20.12155],[73.20843,20.12006],[73.2139,20.11899],[73.2097,20.08533],[73.20475,20.07996],[73.19816,20.07785],[73.19691,20.07594],[73.18853,20.0781],[73.18925,20.07325],[73.18615,20.05917],[73.1921,20.05471],[73.19092,20.04959],[73.18332,20.05028],[73.17822,20.04702],[73.17663,20.05195],[73.17071,20.05204],[73.16776,20.05577],[73.16478,20.05562],[73.1635,20.06055],[73.15644,20.06352],[73.15716,20.06587],[73.15579,20.06588],[73.15447,20.07042],[73.15185,20.07256],[73.15464,20.07576],[73.14919,20.079],[73.14869,20.07485],[73.14669,20.07386],[73.14309,20.07643],[73.14247,20.0803],[73.13707,20.07913],[73.13639,20.08637],[73.13336,20.08618],[73.13071,20.08175],[73.1255,20.0835],[73.1241,20.07797],[73.11905,20.07866],[73.11893,20.07509],[73.11434,20.07624],[73.11192,20.07427],[73.11198,20.07117],[73.10846,20.0753],[73.10606,20.07417],[73.10604,20.08754],[73.10226,20.09124],[73.08355,20.09117],[73.08096,20.09233],[73.08059,20.09495],[73.06817,20.09679],[73.06369,20.09959],[73.05519,20.09987],[73.05206,20.08529],[73.05062,20.06374],[73.04738,20.0657],[73.0402,20.06643],[73.03048,20.07966],[73.02336,20.08472],[73.02183,20.09],[73.0137,20.09648],[73.01043,20.10578],[73.00074,20.1123],[72.99961,20.12302],[73.01262,20.12894],[73.01094,20.1346],[73.00891,20.13393],[73.005,20.13588],[73.00329,20.14034],[72.9975,20.14276],[72.99423,20.13744],[72.99535,20.13231],[72.99182,20.1177],[72.9796,20.11569],[72.97736,20.11278],[72.9705,20.11561],[72.96852,20.12366],[72.96358,20.12604],[72.96127,20.13067],[72.96158,20.1371],[72.9744,20.16025],[72.97372,20.17383],[72.97688,20.17865],[72.97676,20.1809],[72.97514,20.18166],[72.96893,20.18342],[72.96303,20.18221],[72.96194,20.18346],[72.95985,20.20122],[72.96198,20.21005],[72.94951,20.21585],[72.94144,20.21701],[72.93445,20.21595],[72.92228,20.22083],[72.92123,20.22271],[72.90808,20.22342],[72.90177,20.22505],[72.89942,20.22784],[72.89306,20.22584],[72.88961,20.22024],[72.87912,20.22691],[72.87518,20.22601],[72.8705,20.22832],[72.85874,20.22474],[72.86118,20.20761],[72.83903,20.20913],[72.83568,20.20507],[72.83607,20.20341],[72.83345,20.20247],[72.83089,20.19677],[72.83695,20.18846],[72.83255,20.18984],[72.8297,20.18805],[72.82526,20.18899],[72.81604,20.18444],[72.818,20.1826],[72.82009,20.17542],[72.81963,20.16477],[72.81645,20.16034],[72.81632,20.15669],[72.82237,20.15498],[72.82447,20.14202],[72.81888,20.14467],[72.81516,20.14469],[72.81069,20.15159],[72.80605,20.15311],[72.80585,20.15447],[72.80016,20.1501],[72.79927,20.15156],[72.79723,20.14967],[72.78862,20.14932],[72.78527,20.14512],[72.78743,20.14394],[72.78758,20.13872],[72.79221,20.13282],[72.79411,20.12334],[72.78531,20.12699],[72.78199,20.12999],[72.77481,20.13215],[72.77346,20.13062],[72.7683,20.13159],[72.76269,20.12982],[72.76057,20.13122],[72.74931,20.13137],[72.74174,20.13459],[72.73767,20.13434],[72.73714,20.12721],[72.74407,20.12413],[72.74659,20.11614],[72.74501,20.11469],[72.74493,20.1177],[72.74309,20.11616],[72.73877,20.11768],[72.73594,20.10663],[72.72906,20.09315],[72.72746,20.08521],[72.72572,20.08404],[72.72601,20.0799],[72.71047,20.07819],[72.70788,20.07003],[72.7151,20.03712],[72.71521,20.02897],[72.71276,20.02249],[72.71768,20.01413],[72.72106,19.9964],[72.72142,19.98894],[72.71664,19.97318],[72.72198,19.97062],[72.72124,19.96898],[72.71519,19.9705],[72.7132,19.96769],[72.70559,19.96658],[72.70083,19.96171],[72.68945,19.95736],[72.68156,19.94224],[72.67506,19.93769],[72.66422,19.93349],[72.66437,19.92971],[72.66868,19.92796],[72.67391,19.92216],[72.67591,19.92378],[72.6788,19.92074],[72.67668,19.91925],[72.67806,19.91703],[72.67675,19.91643],[72.6747,19.90339],[72.67864,19.90032],[72.68062,19.90064],[72.67937,19.89648],[72.68203,19.88952],[72.67906,19.86981],[72.68027,19.8649],[72.67373,19.86443],[72.67157,19.86659],[72.65549,19.86191],[72.65091,19.86492],[72.65049,19.87],[72.64806,19.87005],[72.64593,19.86445],[72.64551,19.85707],[72.64716,19.84737],[72.64516,19.84451],[72.64199,19.84398],[72.64383,19.84149],[72.64322,19.8401],[72.6463,19.83873],[72.64782,19.83323],[72.6514,19.83163],[72.64962,19.82957],[72.65294,19.82652],[72.65128,19.82325],[72.65353,19.82085],[72.65116,19.81691],[72.65398,19.81094],[72.65783,19.8111],[72.65693,19.80835],[72.66768,19.80132],[72.66866,19.80456],[72.6657,19.81387],[72.67132,19.81364],[72.67759,19.80519],[72.68285,19.79349],[72.68458,19.76847],[72.68294,19.76054],[72.68209,19.75971],[72.67587,19.76503],[72.67185,19.76148],[72.67792,19.75007],[72.67408,19.74161],[72.67532,19.72688],[72.67257,19.72255],[72.67552,19.71571],[72.68046,19.71377],[72.68435,19.71457],[72.68519,19.71762],[72.69004,19.71696],[72.69239,19.71946],[72.69707,19.71924],[72.70263,19.71369],[72.70814,19.70381],[72.70771,19.69307],[72.70497,19.68848],[72.70385,19.68817],[72.70374,19.6908],[72.701,19.68484],[72.70281,19.67059],[72.69913,19.66148],[72.70571,19.64957],[72.70733,19.63833],[72.71071,19.63926],[72.719,19.62999],[72.71792,19.62635],[72.7112,19.62593],[72.7103,19.62271],[72.7183,19.62055],[72.72288,19.61758],[72.72477,19.61263],[72.72302,19.61108],[72.72487,19.6111],[72.72534,19.60957],[72.72222,19.60246],[72.71973,19.60301],[72.71823,19.59776],[72.71399,19.59688],[72.70891,19.59876],[72.71146,19.59291],[72.7118,19.58515],[72.71472,19.58161],[72.71012,19.57168],[72.7127,19.56721],[72.71759,19.56457],[72.71553,19.56055],[72.71697,19.55715],[72.71343,19.55392],[72.71598,19.55202],[72.71109,19.54078],[72.71481,19.53654],[72.72013,19.53728],[72.72183,19.53333],[72.72102,19.52456],[72.72238,19.5234],[72.71606,19.51996],[72.72035,19.51171],[72.71973,19.50077],[72.74413,19.49938],[72.74772,19.49654],[72.74729,19.49216],[72.74955,19.48927],[72.74871,19.47065],[72.74345,19.46383],[72.74314,19.45838],[72.74817,19.44783],[72.75363,19.43005],[72.75766,19.39763],[72.75993,19.39271],[72.7541,19.38456],[72.75256,19.37875],[72.74655,19.37955],[72.74469,19.37804],[72.74796,19.37012],[72.75123,19.37026],[72.75661,19.36407],[72.75946,19.36933],[72.76689,19.36508],[72.76844,19.36333],[72.76568,19.36164],[72.79278,19.33375],[72.80019,19.32385],[72.80638,19.32372],[72.81184,19.32782],[72.82046,19.32906],[72.8271,19.33572],[72.82995,19.33462],[72.83023,19.32731],[72.81572,19.31448],[72.80034,19.31335],[72.79503,19.31503],[72.79285,19.31044],[72.78693,19.30768],[72.78387,19.30171],[72.7851,19.29901],[72.78389,19.28161],[72.78283,19.27939],[72.77866,19.27892],[72.78103,19.27012],[72.78322,19.26938],[72.78413,19.26654],[72.78548,19.26677],[72.78384,19.26507],[72.78127,19.24653],[72.77873,19.23963],[72.7805,19.23283],[72.77558,19.22719],[72.77683,19.22166],[72.78143,19.21809],[72.78,19.20857],[72.783,19.20889],[72.7862,19.20449],[72.78509,19.20183],[72.78253,19.20133],[72.78141,19.19543],[72.78222,19.19408],[72.78465,19.19582],[72.78971,19.19475],[72.7926,19.19701],[72.79548,19.19467],[72.79486,19.1747],[72.78579,19.16747],[72.78255,19.16904],[72.78164,19.16788],[72.78181,19.16569],[72.78447,19.16354],[72.78196,19.15929],[72.78328,19.15645],[72.78791,19.15326],[72.78969,19.14733],[72.78815,19.14349],[72.78908,19.13656],[72.78607,19.13352],[72.7941,19.13267],[72.79699,19.13449],[72.79553,19.14139],[72.80051,19.13955],[72.80685,19.15145],[72.81163,19.14523],[72.80608,19.14665],[72.80408,19.14145],[72.81731,19.12699],[72.81931,19.12289],[72.82112,19.12239],[72.82056,19.12057],[72.82576,19.12007],[72.8287,19.11662],[72.82199,19.1192],[72.82118,19.11742],[72.82753,19.09435],[72.82589,19.08473],[72.82816,19.0835],[72.83322,19.08483],[72.82798,19.07739],[72.82516,19.07796],[72.82391,19.0807],[72.82299,19.08005],[72.82189,19.07386],[72.82342,19.06532],[72.82194,19.06038],[72.82445,19.05584],[72.81701,19.04147],[72.8199,19.04096],[72.82708,19.0459],[72.83178,19.05325],[72.83781,19.05194],[72.83863,19.04652],[72.8385,19.03305],[72.8326,19.02368],[72.82647,19.01841],[72.82303,19.0174],[72.82032,19.01933],[72.81746,19.02556],[72.81639,19.0098],[72.81111,19.00152],[72.81304,18.99232],[72.8105,18.98755],[72.81294,18.98776],[72.81376,18.98296],[72.81154,18.97891],[72.80639,18.97704],[72.80406,18.97367],[72.79918,18.95725],[72.7925,18.94991],[72.79332,18.93941],[72.79808,18.94753],[72.8077,18.95513],[72.81218,18.95527],[72.82096,18.94692],[72.82361,18.94125],[72.82357,18.93324],[72.81995,18.92787],[72.82587,18.92577],[72.82559,18.91945],[72.81522,18.90809],[72.81059,18.91097],[72.8051,18.91015],[72.80354,18.90618],[72.80356,18.89881],[72.80874,18.89341],[72.81195,18.89513],[72.81699,18.90125],[72.81699,18.90691],[72.82107,18.91081],[72.82563,18.91254],[72.828,18.91175],[72.82794,18.91471],[72.83156,18.91705],[72.83311,18.92113],[72.83798,18.92564],[72.83493,18.92601],[72.83559,18.92844],[72.84337,18.93029],[72.84847,18.95966],[72.84712,18.96042],[72.84879,18.96105],[72.84612,18.96303],[72.84917,18.96328],[72.84604,18.96481],[72.85007,18.96651],[72.85049,18.96801],[72.84793,18.96953],[72.84906,18.97352],[72.85339,18.97259],[72.85372,18.97368],[72.85054,18.97416],[72.85028,18.97565],[72.8552,18.97596],[72.84885,18.97775],[72.85485,18.97703],[72.8502,18.98024],[72.85682,18.97846],[72.86054,18.98147],[72.85432,18.9972],[72.86014,18.99922],[72.86205,19.00319],[72.86097,19.00444],[72.86248,19.01006],[72.8712,19.0129],[72.87824,19.02194],[72.88523,19.01524],[72.88271,18.99913],[72.87972,18.99296],[72.8804,18.98842],[72.8853,18.98148],[72.89091,18.979],[72.90233,18.97891],[72.92217,18.98415],[72.94711,18.98685],[72.94821,18.96746],[72.95065,18.95951],[72.95493,18.95724],[72.95917,18.95716],[72.9514,18.9518],[72.9456,18.94997],[72.94081,18.94449],[72.94079,18.94155],[72.94448,18.93555],[72.93866,18.92867],[72.94186,18.92309],[72.93935,18.92158],[72.93706,18.90933],[72.92777,18.91443],[72.92101,18.91364],[72.91542,18.90759],[72.90407,18.90444],[72.90182,18.88376],[72.90396,18.8808],[72.91384,18.87581],[72.91549,18.86903],[72.91988,18.86522],[72.91927,18.86307],[72.91599,18.86151],[72.91835,18.85541],[72.9257,18.84857],[72.93484,18.84405],[72.94248,18.84237],[72.95034,18.8449],[72.95512,18.84179],[72.96099,18.84104],[72.96519,18.8426],[72.9692,18.84808],[72.96942,18.85467],[72.97341,18.8628],[72.97602,18.86473],[72.98384,18.86545],[72.99368,18.87227],[72.99539,18.87151],[72.98944,18.86693],[72.98135,18.85675],[72.97509,18.8395],[72.97746,18.83038],[72.98271,18.82341],[72.98493,18.81499],[72.9874,18.81256],[72.99929,18.8092],[72.99891,18.80282],[72.99783,18.8026],[72.98769,18.80476],[72.97846,18.80877],[72.97827,18.8076],[72.994,18.78711],[72.99667,18.77954],[72.99594,18.77302],[72.99279,18.77954],[72.98773,18.78336],[72.96502,18.79506],[72.95869,18.80037],[72.95713,18.79923],[72.95698,18.80301],[72.9495,18.81542],[72.94795,18.81623],[72.94611,18.81273],[72.94466,18.81739],[72.9471,18.8174],[72.94661,18.82481],[72.94515,18.82638],[72.93643,18.82169],[72.93701,18.82411],[72.92739,18.82089],[72.92488,18.81796],[72.92399,18.81266],[72.91555,18.80633],[72.91449,18.80032],[72.90856,18.80014],[72.89904,18.8059],[72.89633,18.80192],[72.88955,18.80053],[72.88642,18.80499],[72.87437,18.80457],[72.87238,18.8057],[72.87165,18.81007],[72.86921,18.81079],[72.86581,18.80762],[72.86524,18.8014],[72.8608,18.79176],[72.86168,18.77956],[72.85865,18.7707],[72.8643,18.75847],[72.86043,18.74223],[72.86254,18.73346],[72.86225,18.72078],[72.8578,18.7062],[72.85105,18.69883],[72.85402,18.69602],[72.85409,18.69336],[72.85717,18.6913],[72.85919,18.68419],[72.8619,18.66435],[72.86071,18.64943],[72.86211,18.64587],[72.86406,18.64543],[72.86272,18.63836],[72.86015,18.63452],[72.86125,18.6297],[72.8644,18.63257],[72.87014,18.63316],[72.87814,18.63081],[72.87846,18.62954],[72.87527,18.6298],[72.87405,18.62803],[72.87557,18.6224],[72.87813,18.62466],[72.87796,18.61795],[72.88016,18.61545],[72.88095,18.61845],[72.88353,18.61712],[72.89151,18.60622],[72.90155,18.58362],[72.90965,18.57341],[72.92116,18.55055],[72.92174,18.54718],[72.90699,18.54103],[72.90532,18.53856],[72.91162,18.51868],[72.91109,18.50256],[72.90565,18.50269],[72.90353,18.49336],[72.90189,18.49266],[72.90189,18.47577],[72.89373,18.47179],[72.89564,18.46373],[72.89482,18.45752],[72.89728,18.45822],[72.90176,18.45144],[72.9071,18.43726],[72.90751,18.43221],[72.90473,18.42918],[72.90976,18.42231],[72.90617,18.41133],[72.90704,18.40299],[72.90935,18.40376],[72.90956,18.39941],[72.91353,18.39764],[72.91326,18.39401],[72.91898,18.39451],[72.92293,18.39308],[72.92595,18.38344],[72.92508,18.37737],[72.91476,18.37087],[72.91305,18.36808],[72.91192,18.36545],[72.91298,18.36163],[72.91569,18.35901],[72.91522,18.35514],[72.91883,18.34861],[72.92209,18.34748],[72.92124,18.34999],[72.92411,18.35108],[72.9276,18.34973],[72.93353,18.35163],[72.9366,18.34955],[72.93515,18.34416],[72.94231,18.34439],[72.946,18.34137],[72.94566,18.33907],[72.94908,18.33878],[72.95387,18.33496],[72.95632,18.32578],[72.96,18.32097],[72.95591,18.31586],[72.96045,18.31184],[72.96419,18.31449],[72.96841,18.30941],[72.97007,18.29985],[72.97306,18.30098],[72.97572,18.29797],[72.97939,18.29788],[72.98648,18.28228],[72.98541,18.27849],[72.98065,18.27665],[72.98115,18.27053],[72.97302,18.26616],[72.97146,18.27309],[72.96431,18.28017],[72.95447,18.27796],[72.9509,18.27998],[72.95091,18.28387],[72.94831,18.285],[72.93805,18.28372],[72.93588,18.28047],[72.9378,18.27518],[72.93528,18.27257],[72.94019,18.26407],[72.9394,18.26034],[72.94313,18.24733],[72.94054,18.24296],[72.94256,18.23408],[72.93826,18.23272],[72.93783,18.2303],[72.93501,18.22861],[72.93387,18.22399],[72.93172,18.2234],[72.93178,18.22042],[72.93873,18.21732],[72.93839,18.21894],[72.94241,18.22046],[72.94508,18.22407],[72.9496,18.22239],[72.95162,18.21972],[72.9564,18.21964],[72.96196,18.21341],[72.96499,18.21224],[72.9682,18.20664],[72.98093,18.19629],[72.98062,18.1872],[72.98866,18.1579],[72.98669,18.15732],[72.98134,18.13703],[72.97103,18.13289],[72.97297,18.12506],[72.97676,18.12039],[72.9774,18.11512],[72.97919,18.11436],[72.97979,18.10807],[72.98382,18.10342],[72.98791,18.10262],[72.99683,18.08421],[72.99916,18.06955],[72.99479,18.06763],[72.99143,18.06155],[72.99038,18.05577],[72.99542,18.05013],[72.9981,18.05076],[73.00086,18.05502],[73.00606,18.05206],[73.00845,18.04986],[73.01444,18.0336],[73.01893,18.03161],[73.02129,18.02745],[73.01014,18.02429],[73.00521,18.02119],[73.00513,18.01967],[73.0085,18.01066],[73.01249,18.01038],[73.01528,18.00767],[73.02111,17.99332],[73.01816,17.99285],[73.01939,17.98984],[73.02728,17.98816],[73.03066,17.9898],[73.04026,17.97844],[73.03824,17.9747],[73.03026,17.96803],[73.03133,17.95541],[73.0288,17.95082],[73.03081,17.94281],[73.03178,17.94105],[73.03582,17.94006],[73.03857,17.93524],[73.04228,17.93363],[73.04643,17.93451],[73.05088,17.93075],[73.05262,17.91055],[73.0547,17.90962],[73.05326,17.90674],[73.05121,17.90634],[73.05473,17.89965],[73.06145,17.89211],[73.06441,17.89024],[73.06796,17.89132],[73.06682,17.88682],[73.07019,17.88212],[73.075,17.88253],[73.07637,17.87849],[73.07557,17.87546],[73.082,17.86687],[73.08149,17.86113],[73.08517,17.85685],[73.08462,17.85326],[73.08729,17.84773],[73.08871,17.83519],[73.09627,17.82585],[73.09434,17.82519],[73.0937,17.81981],[73.09211,17.81661],[73.08975,17.81571],[73.08936,17.81234],[73.09404,17.81171],[73.10315,17.80298],[73.10659,17.79302],[73.11081,17.79019],[73.1102,17.78582],[73.1179,17.76682],[73.12122,17.7667],[73.11867,17.76331],[73.11934,17.75966],[73.12288,17.75327],[73.12589,17.75285],[73.124,17.74879],[73.12516,17.74182],[73.1284,17.73939],[73.12887,17.73136],[73.13153,17.72954],[73.1331,17.72442],[73.13515,17.70865],[73.13264,17.70582],[73.12932,17.70613],[73.12512,17.70153],[73.12532,17.69944],[73.11778,17.69843],[73.11435,17.69517],[73.11428,17.68573],[73.11525,17.68079],[73.1177,17.67902],[73.11909,17.67197],[73.12121,17.67009],[73.12091,17.66746],[73.12485,17.66449],[73.12745,17.65805],[73.1317,17.65622],[73.1348,17.64761],[73.13525,17.64537],[73.13028,17.64291],[73.12755,17.63803],[73.13201,17.63378],[73.13208,17.62988],[73.13512,17.62823],[73.13353,17.62814],[73.13375,17.62519],[73.13832,17.6096],[73.14821,17.59869],[73.15217,17.59971],[73.15273,17.59871],[73.15018,17.57413],[73.14,17.5702],[73.13701,17.56441],[73.1371,17.55589],[73.14114,17.54674],[73.151,17.53767],[73.15383,17.5282],[73.15742,17.52742],[73.16104,17.52874],[73.16615,17.52449],[73.16947,17.51885],[73.17393,17.51691],[73.19218,17.46996],[73.19231,17.46386],[73.1845,17.45571],[73.18581,17.4492],[73.18453,17.44314],[73.18629,17.44135],[73.19698,17.44196],[73.19865,17.43909],[73.19442,17.43688],[73.19245,17.43305],[73.18934,17.43338],[73.186,17.43021],[73.18459,17.41751],[73.1861,17.41501],[73.18331,17.41256],[73.17849,17.41137],[73.17675,17.40781],[73.16885,17.40971],[73.1677,17.40305],[73.17521,17.38963],[73.18333,17.38408],[73.19109,17.38419],[73.19281,17.38762],[73.19642,17.38566],[73.19735,17.38768],[73.20138,17.38736],[73.20047,17.38908],[73.20205,17.38974],[73.20558,17.38733],[73.21067,17.3763],[73.20896,17.37188],[73.21359,17.37016],[73.21132,17.36073],[73.21519,17.35507],[73.2191,17.35307],[73.21462,17.34955],[73.21481,17.34631],[73.22611,17.33434],[73.22945,17.33516],[73.22926,17.33398],[73.2199,17.3331],[73.2189,17.32855],[73.22461,17.3223],[73.23876,17.31704],[73.23794,17.31425],[73.23928,17.30987],[73.23496,17.30369],[73.23663,17.29874],[73.23556,17.28811],[73.25541,17.29078],[73.25877,17.28603],[73.2576,17.27977],[73.24944,17.27993],[73.24783,17.28235],[73.24623,17.28313],[73.24527,17.28179],[73.2406,17.28535],[73.23316,17.28577],[73.22925,17.28248],[73.2251,17.29563],[73.22614,17.30185],[73.22265,17.30633],[73.21151,17.30701],[73.21167,17.30337],[73.20542,17.29916],[73.2015,17.30113],[73.1969,17.3068],[73.19586,17.30497],[73.19246,17.30423],[73.19357,17.30111],[73.19064,17.29931],[73.19519,17.29741],[73.19893,17.2902],[73.20299,17.28922],[73.20353,17.28554],[73.20161,17.28201],[73.20561,17.26957],[73.21004,17.27084],[73.21131,17.27351],[73.21022,17.27804],[73.21777,17.27049],[73.21978,17.27035],[73.22262,17.2654],[73.22124,17.26068],[73.22272,17.2558],[73.22666,17.25648],[73.2285,17.25106],[73.2241,17.24842],[73.23126,17.24673],[73.23467,17.23787],[73.23254,17.23491],[73.23543,17.22762],[73.24155,17.22759],[73.24469,17.22239],[73.24664,17.20431],[73.24253,17.19816],[73.2393,17.20063],[73.23328,17.20152],[73.23163,17.19914],[73.2364,17.19389],[73.23947,17.19433],[73.24493,17.19055],[73.24873,17.1922],[73.25345,17.18831],[73.25896,17.17316],[73.26041,17.16317],[73.26515,17.15513],[73.2682,17.1323],[73.27231,17.12122],[73.27249,17.11885],[73.26891,17.11442],[73.26765,17.11474],[73.26916,17.11273],[73.27778,17.11342],[73.28204,17.10857],[73.28631,17.08447],[73.28348,17.07883],[73.28774,17.07803],[73.28905,17.07441],[73.28875,17.06267],[73.28671,17.05425],[73.27914,17.03756],[73.27666,17.03634],[73.27592,17.03937],[73.27443,17.03965],[73.2677,17.03839],[73.27007,17.04219],[73.26887,17.04486],[73.26519,17.04771],[73.25821,17.04877],[73.25658,17.0434],[73.25868,17.03176],[73.25537,17.02771],[73.25864,17.01986],[73.26151,17.02164],[73.26569,17.02093],[73.26774,17.02499],[73.27209,17.02416],[73.273,17.0224],[73.27604,17.02345],[73.28405,17.0111],[73.28444,17.00383],[73.28181,16.9985],[73.27915,16.9976],[73.28035,16.99895],[73.27696,17.0015],[73.27402,16.99772],[73.27024,16.99997],[73.26781,16.99747],[73.26726,16.99095],[73.27124,16.98509],[73.2743,16.98369],[73.27618,16.98481],[73.27846,16.99063],[73.27706,16.99211],[73.27928,16.9934],[73.29972,16.98188],[73.29542,16.97893],[73.2965,16.96728],[73.2947,16.96684],[73.29308,16.962],[73.2925,16.95501],[73.2885,16.95175],[73.28462,16.95309],[73.28318,16.95037],[73.28791,16.93691],[73.28754,16.93126],[73.2833,16.9308],[73.28363,16.92469],[73.28725,16.92046],[73.28758,16.91641],[73.28609,16.91481],[73.28729,16.91339],[73.2849,16.91146],[73.28527,16.90818],[73.28073,16.90475],[73.28165,16.89809],[73.27858,16.89304],[73.28795,16.89409],[73.28755,16.89729],[73.29387,16.89844],[73.29831,16.89714],[73.303,16.89141],[73.29636,16.88822],[73.28743,16.8809],[73.2876,16.87492],[73.2938,16.8705],[73.2958,16.86036],[73.29558,16.85792],[73.29495,16.85983],[73.28939,16.85837],[73.29354,16.85603],[73.29389,16.85343],[73.29159,16.85221],[73.29373,16.85209],[73.29419,16.85017],[73.2933,16.84756],[73.28914,16.84429],[73.29194,16.84424],[73.29505,16.83913],[73.29391,16.83668],[73.29766,16.824],[73.29557,16.8209],[73.29635,16.81638],[73.30311,16.80948],[73.31619,16.8061],[73.31914,16.79534],[73.31031,16.7845],[73.30795,16.77135],[73.30444,16.76587],[73.30526,16.7508],[73.3071,16.74795],[73.30555,16.74376],[73.30539,16.73028],[73.30981,16.72639],[73.30995,16.72259],[73.312,16.72238],[73.31255,16.72072],[73.31231,16.71505],[73.31641,16.71283],[73.31696,16.70861],[73.31921,16.70639],[73.31805,16.701],[73.31911,16.69774],[73.32972,16.68739],[73.33305,16.65057],[73.33229,16.64785],[73.32823,16.64569],[73.3262,16.64746],[73.32378,16.64678],[73.32206,16.6442],[73.32302,16.63862],[73.32434,16.63609],[73.32745,16.63711],[73.32925,16.63816],[73.32944,16.64179],[73.33572,16.64047],[73.33911,16.63781],[73.34058,16.63013],[73.34222,16.6293],[73.33992,16.62627],[73.33797,16.62761],[73.33401,16.62629],[73.32971,16.62137],[73.33045,16.61986],[73.33354,16.61863],[73.33745,16.6236],[73.34051,16.62097],[73.3457,16.62073],[73.35215,16.62489],[73.35519,16.61895],[73.35232,16.61593],[73.35413,16.6144],[73.35193,16.6103],[73.35345,16.60776],[73.3478,16.61258],[73.3394,16.60468],[73.33527,16.60535],[73.33526,16.60667],[73.33074,16.60863],[73.32712,16.60748],[73.32546,16.60508],[73.32069,16.60687],[73.31742,16.60167],[73.31994,16.59853],[73.31865,16.59302],[73.32218,16.58974],[73.32191,16.584],[73.32335,16.58228],[73.33333,16.57677],[73.33562,16.57975],[73.34024,16.58057],[73.34486,16.57697],[73.34525,16.57258],[73.34467,16.56965],[73.33213,16.56574],[73.32736,16.5659],[73.32782,16.56292],[73.33315,16.55736],[73.32604,16.55696],[73.32492,16.55266],[73.31939,16.55341],[73.31903,16.54964],[73.31612,16.54471],[73.31498,16.54493],[73.31492,16.54158],[73.31087,16.54144],[73.31398,16.53886],[73.31259,16.53532],[73.3169,16.52983],[73.31674,16.52313],[73.31906,16.51889],[73.31695,16.51418],[73.32164,16.51637],[73.32439,16.51462],[73.33317,16.48583],[73.33601,16.48322],[73.33672,16.48019],[73.33982,16.47891],[73.34335,16.47416],[73.34274,16.46841],[73.34549,16.46184],[73.3469,16.45037],[73.35082,16.44389],[73.35867,16.44166],[73.35721,16.43914],[73.35953,16.4285],[73.35769,16.42502],[73.36026,16.42397],[73.36252,16.41808],[73.36611,16.4148],[73.36682,16.40849],[73.36547,16.4045],[73.36796,16.40075],[73.36563,16.3974],[73.37128,16.38956],[73.36851,16.37992],[73.36941,16.37929],[73.36688,16.37789],[73.36739,16.37516],[73.37011,16.37551],[73.37223,16.371],[73.36892,16.36293],[73.37372,16.35995],[73.3783,16.36146],[73.38025,16.36122],[73.38276,16.35799],[73.38668,16.35842],[73.39037,16.34667],[73.38763,16.34325],[73.38613,16.33646],[73.39325,16.33193],[73.39612,16.31935],[73.3945,16.31756],[73.3942,16.31318],[73.39856,16.30789],[73.39986,16.29981],[73.40304,16.29978],[73.40397,16.29826],[73.40682,16.28555],[73.41307,16.26876],[73.41205,16.26753],[73.41466,16.25819],[73.41554,16.25716],[73.41885,16.25808],[73.41529,16.25462],[73.41729,16.24529],[73.41942,16.24329],[73.42326,16.23092],[73.42495,16.22319],[73.42397,16.21823],[73.42672,16.21579],[73.42781,16.20896],[73.42706,16.20365],[73.42987,16.1989],[73.43539,16.19976],[73.43964,16.19133],[73.45782,16.11759],[73.45753,16.10619],[73.46033,16.09665],[73.4586,16.09096],[73.4603,16.0886],[73.46241,16.08931],[73.46492,16.08694],[73.45817,16.08603],[73.45908,16.08365],[73.45736,16.07989],[73.46343,16.07943],[73.46475,16.07616],[73.46453,16.07074],[73.46205,16.06935],[73.46432,16.06933],[73.4649,16.06698],[73.46175,16.06373],[73.45837,16.063],[73.4569,16.06428],[73.45476,16.06194],[73.45687,16.06034],[73.45682,16.05823],[73.45514,16.05861],[73.45721,16.0566],[73.45606,16.05595],[73.45643,16.05268],[73.46007,16.05265],[73.46046,16.05539],[73.46722,16.05373],[73.46911,16.05016],[73.46654,16.04603],[73.47715,16.04141],[73.48436,16.03371],[73.49094,16.01113],[73.48928,15.98849],[73.50182,15.9668],[73.50356,15.96475],[73.50476,15.96531],[73.50244,15.95608],[73.50572,15.94716],[73.5087,15.94597],[73.51011,15.94046],[73.51256,15.9382],[73.51419,15.94059],[73.51683,15.93985],[73.51869,15.94134],[73.5193,15.93855],[73.5308,15.93232],[73.53352,15.9333],[73.53566,15.93916],[73.53572,15.93786],[73.54008,15.93673],[73.54843,15.92779],[73.55478,15.92613],[73.56709,15.91942],[73.56925,15.91295],[73.58119,15.91026],[73.58629,15.91079],[73.58872,15.90803],[73.59179,15.90134],[73.59554,15.89745],[73.59506,15.89361],[73.59898,15.88953],[73.59841,15.887],[73.6117,15.86173],[73.61356,15.85477],[73.61588,15.853],[73.61796,15.85622],[73.62309,15.85545],[73.62822,15.84804],[73.6287,15.84365],[73.63351,15.83608],[73.63354,15.83145],[73.63939,15.82051],[73.63907,15.81816],[73.63603,15.81707],[73.63605,15.81544],[73.64287,15.81126],[73.64541,15.80562],[73.64841,15.80449],[73.65626,15.79576],[73.65416,15.79153],[73.65481,15.78808],[73.6621,15.76666],[73.66435,15.7531],[73.65761,15.74707],[73.65419,15.74815],[73.65371,15.74523],[73.64986,15.7449],[73.65311,15.74437],[73.65533,15.74099],[73.65863,15.742],[73.6608,15.73998],[73.66373,15.74049],[73.66778,15.73557],[73.67091,15.73492],[73.67239,15.73018],[73.67688,15.72589],[73.67847,15.72896],[73.68755,15.72988],[73.69253,15.72822],[73.69362,15.72415],[73.69549,15.72402],[73.69645,15.72701],[73.69799,15.7254],[73.70298,15.72881],[73.70495,15.73122],[73.70353,15.73181],[73.70681,15.73242],[73.70777,15.72949],[73.71428,15.72992],[73.71699,15.72675],[73.72088,15.72567],[73.73174,15.72864],[73.73515,15.73284],[73.74284,15.73657],[73.76517,15.73387],[73.77035,15.73031],[73.78497,15.72613],[73.78754,15.72826],[73.78893,15.73484],[73.79316,15.73723],[73.79723,15.73422],[73.80664,15.73768],[73.80943,15.74203],[73.82095,15.73986],[73.82664,15.74338],[73.8308,15.75387],[73.82975,15.76433],[73.83849,15.76756],[73.8408,15.77612],[73.84391,15.78113],[73.84985,15.77954],[73.85267,15.78092],[73.84707,15.7858],[73.85047,15.78964],[73.85382,15.79861],[73.85571,15.80102],[73.8634,15.79879],[73.8675,15.79703],[73.86481,15.79082],[73.86607,15.78534],[73.86985,15.78354],[73.87644,15.77471],[73.87789,15.77415],[73.87787,15.77563],[73.88009,15.77432],[73.87735,15.76808],[73.87506,15.76716],[73.87701,15.76442],[73.87306,15.76088],[73.87288,15.75468],[73.8757,15.75128],[73.89288,15.74939],[73.89918,15.746],[73.90699,15.74797],[73.90698,15.74997],[73.9148,15.74544],[73.93873,15.74333],[73.94087,15.73811],[73.94174,15.72919],[73.94595,15.7212],[73.95233,15.7144],[73.94918,15.71156],[73.9498,15.7107],[73.94717,15.70983],[73.94928,15.70865],[73.94856,15.70354],[73.9437,15.69694],[73.94651,15.69781],[73.95152,15.69645],[73.95294,15.69953],[73.95923,15.70006],[73.95909,15.69809],[73.96376,15.69232],[73.96269,15.67326],[73.96571,15.66943],[73.96782,15.66025],[73.96256,15.65234],[73.96108,15.64556],[73.96177,15.64168],[73.96739,15.63531],[73.96786,15.63058],[73.97078,15.62741],[73.97905,15.62713],[73.99052,15.61223],[73.99336,15.61064],[74.00884,15.61016],[74.0208,15.60609],[74.0254,15.60944],[74.03116,15.62261],[74.0506,15.62487],[74.06161,15.62853],[74.06317,15.62638],[74.06577,15.62968],[74.07011,15.62916],[74.07849,15.63176],[74.09429,15.64237],[74.09753,15.64102],[74.10706,15.64645],[74.11389,15.64613],[74.11411,15.64879],[74.11826,15.65203],[74.11094,15.65769],[74.1037,15.65761],[74.09423,15.66308],[74.08828,15.66994],[74.0881,15.67247],[74.09136,15.67463],[74.10261,15.67222],[74.10885,15.67269],[74.12577,15.68097],[74.13072,15.68963],[74.13168,15.69354],[74.13034,15.70175],[74.13213,15.7024],[74.13143,15.70587],[74.12834,15.70867],[74.12618,15.70796],[74.1261,15.71846],[74.12217,15.72073],[74.12582,15.72411],[74.13076,15.72336],[74.13346,15.72631],[74.13396,15.72982],[74.14184,15.73433],[74.14401,15.73309],[74.15097,15.73581],[74.15111,15.73987],[74.1533,15.74363],[74.16156,15.75129],[74.18953,15.75212],[74.20143,15.75862],[74.20897,15.78127],[74.21311,15.78006],[74.2159,15.78389],[74.22744,15.78833],[74.2335,15.78699],[74.23458,15.77858],[74.22802,15.7707],[74.2265,15.76263],[74.22763,15.75658],[74.23243,15.75221],[74.2337,15.7483],[74.23652,15.74822],[74.23752,15.74463],[74.24231,15.7432],[74.25403,15.74515],[74.25386,15.74677],[74.25554,15.74604],[74.26384,15.75296],[74.26832,15.75474],[74.2736,15.74908],[74.28426,15.74366],[74.2852,15.74173],[74.28729,15.74198],[74.29612,15.74442],[74.30135,15.74764],[74.3079,15.74848],[74.31034,15.75157],[74.30974,15.75489],[74.31862,15.75838],[74.31899,15.76622],[74.32307,15.77268],[74.33747,15.7679],[74.34069,15.76467],[74.34568,15.76456],[74.35025,15.77032],[74.35843,15.77483],[74.36214,15.78236],[74.36904,15.78812],[74.36889,15.79174],[74.37197,15.79824],[74.37039,15.79859],[74.37192,15.80098],[74.36869,15.80695],[74.3703,15.80849],[74.36993,15.81146],[74.36267,15.81469],[74.36062,15.81778],[74.36536,15.81927],[74.36641,15.82576],[74.37074,15.83057],[74.37233,15.83022],[74.37482,15.83313],[74.3774,15.83222],[74.3766,15.83335],[74.37993,15.83827],[74.38104,15.83538],[74.38405,15.84012],[74.38309,15.8491],[74.345,15.85044],[74.33821,15.85492],[74.34661,15.85879],[74.34552,15.86229],[74.35087,15.86543],[74.35794,15.87316],[74.36326,15.87492],[74.36513,15.8825],[74.3647,15.89386],[74.36861,15.89436],[74.3661,15.89131],[74.37675,15.88238],[74.38003,15.87629],[74.38283,15.86004],[74.38693,15.85965],[74.38814,15.85425],[74.39141,15.85476],[74.39754,15.85115],[74.40235,15.85227],[74.40163,15.85461],[74.40617,15.85538],[74.40637,15.86445],[74.39765,15.86997],[74.39279,15.87839],[74.39674,15.88036],[74.39342,15.90004],[74.38778,15.90131],[74.38687,15.90498],[74.43083,15.95658],[74.43099,15.95962],[74.43607,15.96747],[74.43893,15.97568],[74.43787,15.9799],[74.44395,15.9864],[74.44261,15.99163],[74.44464,15.99244],[74.44634,15.9971],[74.44477,16.00305],[74.44691,16.00318],[74.45026,16.00855],[74.45011,16.01105],[74.45535,16.01952],[74.45723,16.02697],[74.46322,16.03919],[74.45649,16.04106],[74.46302,16.04162],[74.46221,16.04984],[74.45714,16.04823],[74.45012,16.05401],[74.44285,16.05281],[74.43422,16.05847],[74.42969,16.05915],[74.40552,16.05184],[74.40209,16.04611],[74.38099,16.03548],[74.378,16.0377],[74.3734,16.03644],[74.36905,16.03922],[74.37457,16.04689],[74.37734,16.05512],[74.37252,16.056],[74.36355,16.05303],[74.36133,16.05384],[74.37151,16.06824],[74.37222,16.07821],[74.38173,16.0793],[74.38362,16.08293],[74.38954,16.07979],[74.39086,16.08048],[74.39182,16.08253],[74.39004,16.08946],[74.40696,16.09351],[74.40997,16.10212],[74.42762,16.11197],[74.4429,16.10534],[74.45868,16.1038],[74.46105,16.09978],[74.47269,16.09299],[74.47273,16.0906],[74.48156,16.08889],[74.4843,16.09147],[74.4851,16.09837],[74.49123,16.10431],[74.49084,16.11672],[74.48587,16.13406],[74.48511,16.1423],[74.48007,16.14499],[74.47983,16.14713],[74.48837,16.15726],[74.48984,16.16342],[74.48955,16.17742],[74.49379,16.18645],[74.50331,16.18807],[74.50624,16.19024],[74.50723,16.19653],[74.50584,16.20136],[74.508,16.20226],[74.50126,16.20553],[74.49593,16.2143],[74.49629,16.21667],[74.50311,16.22247],[74.5031,16.22541],[74.49521,16.2349],[74.49035,16.23489],[74.48048,16.25013],[74.47671,16.24943],[74.46862,16.24019],[74.45609,16.24386],[74.45483,16.25339],[74.43555,16.25115],[74.43577,16.25883],[74.41761,16.258],[74.41595,16.2801],[74.41439,16.28265],[74.41181,16.28166],[74.40786,16.28329],[74.38261,16.27736],[74.38021,16.27115],[74.38064,16.26197],[74.37301,16.26164],[74.36828,16.26686],[74.36336,16.28504],[74.3593,16.29058],[74.3456,16.29376],[74.3431,16.29035],[74.35371,16.28282],[74.35046,16.27537],[74.34378,16.27808],[74.34205,16.27651],[74.34335,16.27309],[74.33843,16.2714],[74.33333,16.27597],[74.33506,16.2704],[74.33415,16.2688],[74.32846,16.26887],[74.32493,16.27176],[74.32457,16.27723],[74.32245,16.27791],[74.32083,16.28448],[74.32578,16.28559],[74.32469,16.2889],[74.32796,16.29325],[74.33184,16.29243],[74.33472,16.28961],[74.33831,16.29001],[74.34,16.29213],[74.34201,16.29118],[74.34255,16.29803],[74.34028,16.29816],[74.34042,16.30244],[74.33591,16.30709],[74.33192,16.30525],[74.33474,16.30903],[74.33296,16.31106],[74.33322,16.31345],[74.32919,16.31221],[74.32516,16.31368],[74.32461,16.31666],[74.33129,16.32067],[74.32874,16.32375],[74.32064,16.32375],[74.31661,16.32656],[74.3225,16.33437],[74.31656,16.33619],[74.31532,16.34008],[74.31879,16.34266],[74.32648,16.34142],[74.32703,16.34251],[74.31764,16.35305],[74.31789,16.35496],[74.32425,16.35743],[74.32477,16.35994],[74.31898,16.37164],[74.32084,16.37589],[74.31719,16.381],[74.32484,16.37829],[74.32814,16.38534],[74.32749,16.3915],[74.33587,16.39374],[74.34064,16.38867],[74.34121,16.38277],[74.34564,16.3769],[74.34512,16.37314],[74.3473,16.36832],[74.35341,16.36642],[74.35358,16.38188],[74.35701,16.38344],[74.35797,16.38954],[74.36291,16.39552],[74.36369,16.40509],[74.3448,16.40553],[74.34289,16.40346],[74.33505,16.40141],[74.32885,16.41905],[74.33129,16.42418],[74.33674,16.42881],[74.33269,16.43685],[74.33623,16.44567],[74.32971,16.4472],[74.33259,16.45476],[74.32466,16.45593],[74.32044,16.45392],[74.31246,16.45324],[74.3064,16.45528],[74.29705,16.46454],[74.29195,16.46175],[74.28928,16.46297],[74.28845,16.47723],[74.29218,16.48571],[74.2909,16.5049],[74.27966,16.50483],[74.27458,16.49403],[74.27438,16.48563],[74.26077,16.4801],[74.25663,16.48954],[74.24737,16.49691],[74.25251,16.50062],[74.26573,16.5011],[74.27822,16.50491],[74.2761,16.52131],[74.26955,16.52248],[74.26444,16.54044],[74.27054,16.54796],[74.27713,16.54525],[74.28109,16.5411],[74.28075,16.53145],[74.28314,16.52459],[74.28685,16.52677],[74.28909,16.53244],[74.2916,16.53388],[74.30137,16.52927],[74.30264,16.52725],[74.30105,16.52264],[74.30614,16.50369],[74.31512,16.5046],[74.31571,16.55445],[74.31757,16.55371],[74.32517,16.5563],[74.33488,16.54788],[74.33969,16.54776],[74.34446,16.55173],[74.34572,16.555],[74.35028,16.55603],[74.35512,16.55506],[74.35399,16.55892],[74.35625,16.55975],[74.35908,16.55575],[74.35611,16.54976],[74.35774,16.54608],[74.35793,16.53834],[74.36082,16.53893],[74.37081,16.5348],[74.37643,16.52913],[74.37983,16.52859],[74.38715,16.5362],[74.38858,16.55076],[74.3869,16.55994],[74.39291,16.56488],[74.39121,16.56655],[74.39554,16.57217],[74.39663,16.58327],[74.40869,16.58323],[74.42081,16.58612],[74.42215,16.58451],[74.42634,16.59574],[74.43544,16.60106],[74.46345,16.60449],[74.46671,16.60682],[74.4641,16.61509],[74.46574,16.61566],[74.46581,16.62472],[74.4585,16.63557],[74.45478,16.6473],[74.45835,16.64868],[74.4564,16.65505],[74.46408,16.65827],[74.46874,16.6638],[74.47171,16.66405],[74.47672,16.64447],[74.48903,16.63014],[74.49501,16.62975],[74.50024,16.63313],[74.50385,16.63356],[74.52445,16.63343],[74.54449,16.63547],[74.54473,16.62898],[74.5427,16.62663],[74.54349,16.59532],[74.55877,16.59465],[74.56689,16.58539],[74.56466,16.57965],[74.55602,16.57356],[74.55485,16.56451],[74.55639,16.56277],[74.56065,16.56262],[74.56854,16.55387],[74.57381,16.55391],[74.5746,16.55894],[74.58464,16.55913],[74.58403,16.56235],[74.58788,16.5661],[74.59896,16.56431],[74.60196,16.56536],[74.60428,16.56898],[74.60952,16.56959],[74.61708,16.57587],[74.6188,16.58407],[74.62284,16.57975],[74.62863,16.57773],[74.63319,16.58321],[74.63586,16.58391],[74.63323,16.59083],[74.63335,16.60036],[74.63615,16.60742],[74.64001,16.61045],[74.64443,16.61029],[74.65405,16.60417],[74.65999,16.6029],[74.67383,16.6092],[74.68268,16.6061],[74.68698,16.60679],[74.68986,16.61314],[74.68757,16.61789],[74.6766,16.62359],[74.66981,16.6294],[74.65905,16.63167],[74.65348,16.63883],[74.65916,16.64734],[74.66516,16.66567],[74.6795,16.66617],[74.67902,16.6731],[74.68955,16.67703],[74.68886,16.68154],[74.68109,16.68091],[74.68082,16.68589],[74.6894,16.68646],[74.68978,16.69726],[74.68773,16.7086],[74.68855,16.71279],[74.69102,16.71554],[74.70569,16.71491],[74.72718,16.71684],[74.72732,16.71909],[74.73004,16.71875],[74.73035,16.72013],[74.73209,16.71832],[74.73698,16.72354],[74.75276,16.73086],[74.75299,16.73309],[74.76035,16.74127],[74.76505,16.74186],[74.76937,16.74481],[74.77197,16.75068],[74.78337,16.75132],[74.79575,16.74775],[74.79874,16.75366],[74.84451,16.76182],[74.84982,16.77276],[74.86568,16.76336],[74.86936,16.77407],[74.88987,16.77126],[74.92014,16.7725],[74.91082,16.78954],[74.91022,16.81659],[74.90873,16.8237],[74.91029,16.83514],[74.90761,16.85017],[74.90424,16.85939],[74.90152,16.86255],[74.91097,16.86404],[74.9265,16.86354],[74.92402,16.86713],[74.92542,16.86772],[74.92555,16.87203],[74.93522,16.87107],[74.93592,16.87924],[74.94438,16.8827],[74.94458,16.88116],[74.96036,16.88095],[74.96358,16.90971],[74.96364,16.9111],[74.96227,16.91058],[74.95884,16.90585],[74.95535,16.90534],[74.95486,16.91017],[74.94435,16.91084],[74.93827,16.91729],[74.93266,16.91891],[74.93422,16.92423],[74.92178,16.92986],[74.92316,16.93931],[74.92654,16.93932],[74.93056,16.94167],[74.93171,16.94476],[74.93671,16.9442],[74.94117,16.94078],[74.9476,16.93935],[74.95042,16.93295],[74.95826,16.92824],[74.96454,16.92678],[74.96568,16.92986],[74.9605,16.93348],[74.96016,16.93726],[74.96064,16.93995],[74.96751,16.94161],[74.96436,16.94763],[74.96826,16.95016],[74.99291,16.95207],[75.00035,16.94985],[75.0045,16.94627],[75.02659,16.94414],[75.02477,16.93964],[75.02523,16.928],[75.0271,16.92945],[75.02643,16.93192],[75.02906,16.93149],[75.0336,16.93372],[75.03577,16.93284],[75.03787,16.93571],[75.04066,16.93644],[75.04139,16.94006],[75.04454,16.94173],[75.06204,16.94152],[75.07259,16.94665],[75.07435,16.95002],[75.07812,16.94883],[75.08508,16.95157],[75.08933,16.95158],[75.09214,16.94011],[75.0918,16.92605],[75.09631,16.91374],[75.11748,16.91344],[75.12032,16.90253],[75.13484,16.8947],[75.13246,16.88942],[75.13648,16.87449],[75.15555,16.86856],[75.17658,16.86771],[75.18899,16.87528],[75.18185,16.8434],[75.2142,16.8417],[75.22764,16.84318],[75.23766,16.86794],[75.26472,16.8628],[75.27299,16.8692],[75.28203,16.88029],[75.28994,16.90403],[75.2829,16.90972],[75.27938,16.92333],[75.281,16.95305],[75.2796,16.95656],[75.32555,16.95582],[75.35005,16.95782],[75.35853,16.96286],[75.35839,16.9649],[75.36113,16.96557],[75.36854,16.97195],[75.39214,16.98009],[75.41151,16.97425],[75.42788,16.96649],[75.43536,16.97345],[75.4416,16.98223],[75.46555,16.98837],[75.46618,16.98131],[75.46889,16.97954],[75.47856,16.97857],[75.48324,16.97599],[75.48917,16.95911],[75.48908,16.94442],[75.50736,16.95083],[75.50966,16.95025],[75.52931,16.9694],[75.53917,16.96548],[75.56413,16.96791],[75.56765,16.96575],[75.56609,16.98138],[75.56722,17.00905],[75.5731,17.00961],[75.60689,17.00457],[75.60613,16.99436],[75.60824,16.98165],[75.60786,16.971],[75.63393,16.97026],[75.63693,16.96854],[75.63821,16.95775],[75.64476,16.95408],[75.64668,16.95469],[75.64893,16.95899],[75.6554,16.96153],[75.67032,16.96205],[75.67513,16.96555],[75.67708,16.969],[75.67255,16.97013],[75.67184,16.97593],[75.66882,16.97983],[75.66608,16.97977],[75.66572,16.99375],[75.66723,17.00576],[75.66909,17.00957],[75.66969,17.03816],[75.64999,17.03224],[75.641,17.03758],[75.65031,17.05726],[75.6604,17.0645],[75.67672,17.06542],[75.67874,17.07715],[75.67337,17.0912],[75.67579,17.09529],[75.67234,17.1014],[75.67229,17.116],[75.65035,17.11569],[75.64953,17.13438],[75.64757,17.13451],[75.6452,17.14421],[75.62826,17.16269],[75.62538,17.174],[75.62723,17.18316],[75.62886,17.1834],[75.62843,17.18866],[75.63993,17.18887],[75.63985,17.19432],[75.64259,17.19765],[75.65539,17.20553],[75.66191,17.21458],[75.65856,17.23867],[75.65772,17.26321],[75.65417,17.27382],[75.62785,17.27434],[75.63022,17.28084],[75.62547,17.28532],[75.62241,17.2951],[75.60373,17.3055],[75.61209,17.32514],[75.61235,17.33689],[75.61057,17.33687],[75.61003,17.34504],[75.59514,17.34621],[75.58629,17.35059],[75.58085,17.35122],[75.57718,17.37591],[75.57414,17.3833],[75.5936,17.3873],[75.60108,17.39031],[75.60612,17.39448],[75.61352,17.39192],[75.61208,17.4074],[75.6066,17.42037],[75.60958,17.42374],[75.61335,17.42474],[75.61545,17.43885],[75.62161,17.45925],[75.62744,17.4625],[75.63298,17.47721],[75.64879,17.47033],[75.65884,17.45806],[75.66895,17.45859],[75.67588,17.45594],[75.6785,17.45109],[75.67809,17.43406],[75.6835,17.41692],[75.69073,17.40947],[75.7045,17.40748],[75.71244,17.40793],[75.71998,17.41152],[75.72807,17.41942],[75.73359,17.42009],[75.75309,17.40713],[75.76587,17.4053],[75.7679,17.40235],[75.77203,17.38574],[75.78028,17.37564],[75.79294,17.3697],[75.80608,17.36802],[75.81366,17.37276],[75.8151,17.37847],[75.81358,17.39572],[75.81832,17.40662],[75.81898,17.4181],[75.82144,17.42122],[75.83026,17.42181],[75.85108,17.41053],[75.85406,17.40449],[75.85641,17.38943],[75.86088,17.38559],[75.8752,17.39809],[75.87452,17.41236],[75.87651,17.41614],[75.87848,17.41813],[75.88419,17.41796],[75.8919,17.40755],[75.89406,17.4012],[75.89524,17.37818],[75.89018,17.36117],[75.89058,17.35652],[75.8945,17.35083],[75.91008,17.34452],[75.9251,17.32575],[75.93082,17.32257],[75.96871,17.33647],[75.9839,17.33622],[75.99827,17.33797],[76.01019,17.35238],[76.01433,17.35353],[76.02853,17.35114],[76.03775,17.35188],[76.05277,17.35579],[76.06054,17.35531],[76.06463,17.35121],[76.07214,17.33531],[76.0734,17.33651],[76.07913,17.3316],[76.0875,17.33651],[76.08812,17.34217],[76.09347,17.34935],[76.08938,17.35313],[76.09974,17.36465],[76.11299,17.36752],[76.11895,17.3705],[76.133,17.35832],[76.14105,17.35349],[76.16262,17.34522],[76.16508,17.30334],[76.17632,17.30079],[76.18107,17.30905],[76.18325,17.31943],[76.17926,17.31857],[76.17658,17.32461],[76.17264,17.33629],[76.17031,17.35262],[76.18042,17.35839],[76.19639,17.36367],[76.21236,17.36199],[76.22944,17.36521],[76.22853,17.37584],[76.24209,17.37884],[76.24413,17.37879],[76.24458,17.37154],[76.25043,17.36968],[76.24905,17.36659],[76.25073,17.36043],[76.26504,17.36171],[76.26702,17.36348],[76.27004,17.36051],[76.27201,17.36059],[76.27636,17.33457],[76.31766,17.33238],[76.31886,17.33814],[76.31203,17.34601],[76.31434,17.34839],[76.3292,17.35081],[76.33803,17.35411],[76.3453,17.35445],[76.34703,17.3442],[76.35429,17.3244],[76.35401,17.31432],[76.38316,17.31453],[76.3851,17.32376],[76.39661,17.3471],[76.40316,17.34997],[76.41219,17.35107],[76.40912,17.37139],[76.38298,17.37397],[76.36343,17.37767],[76.37107,17.41343],[76.37,17.41694],[76.37151,17.43642],[76.35348,17.4373],[76.33326,17.4339],[76.33343,17.45548],[76.33095,17.45567],[76.33069,17.47019],[76.33321,17.47176],[76.35036,17.47417],[76.36824,17.4832],[76.37552,17.49022],[76.37469,17.49565],[76.36231,17.49592],[76.34576,17.49253],[76.34333,17.50066],[76.34657,17.51258],[76.3646,17.51497],[76.36722,17.51945],[76.36274,17.53737],[76.34875,17.53943],[76.34069,17.54247],[76.33853,17.5568],[76.33503,17.56518],[76.33313,17.56499],[76.33129,17.59742],[76.33156,17.59598],[76.33674,17.5973],[76.35003,17.5941],[76.37764,17.59787],[76.3817,17.60225],[76.39186,17.60065],[76.39305,17.60315],[76.41968,17.60371],[76.41929,17.60623],[76.42679,17.62581],[76.42849,17.63379],[76.42724,17.63959],[76.42919,17.64495],[76.43539,17.64626],[76.445,17.64095],[76.44184,17.64931],[76.45448,17.64979],[76.45286,17.65579],[76.45892,17.65812],[76.48667,17.65841],[76.48975,17.6605],[76.48502,17.67098],[76.48449,17.67851],[76.48723,17.71476],[76.50069,17.71842],[76.51173,17.71797],[76.5239,17.71515],[76.52736,17.73784],[76.52328,17.7598],[76.53069,17.75826],[76.56126,17.76462],[76.57271,17.76054],[76.56396,17.75083],[76.5678,17.74248],[76.5703,17.70541],[76.5822,17.70527],[76.58834,17.70758],[76.59438,17.72245],[76.60108,17.72586],[76.59979,17.73271],[76.6053,17.75865],[76.60696,17.75936],[76.61104,17.76936],[76.61533,17.7704],[76.62243,17.7605],[76.63188,17.75464],[76.6281,17.75065],[76.63326,17.72822],[76.65279,17.72213],[76.6556,17.71785],[76.65973,17.70828],[76.66419,17.68756],[76.67076,17.69053],[76.67492,17.68999],[76.67972,17.68635],[76.68436,17.68589],[76.68738,17.68005],[76.69084,17.681],[76.69083,17.68575],[76.69418,17.69568],[76.69214,17.70078],[76.69254,17.70672],[76.70131,17.70907],[76.70365,17.71562],[76.70433,17.72301],[76.69965,17.72725],[76.72827,17.73756],[76.72404,17.74796],[76.72481,17.7511],[76.71879,17.75148],[76.72107,17.7695],[76.71191,17.77327],[76.71409,17.78094],[76.72094,17.78806],[76.73016,17.78385],[76.72987,17.78274],[76.74065,17.77946],[76.74434,17.78034],[76.74253,17.78422],[76.75074,17.78455],[76.75091,17.78705],[76.76204,17.78702],[76.7621,17.78878],[76.76446,17.78896],[76.7659,17.79224],[76.76651,17.79847],[76.77544,17.79829],[76.77873,17.80048],[76.78259,17.80664],[76.78151,17.80939],[76.78286,17.81792],[76.79039,17.82633],[76.787,17.8332],[76.77931,17.83628],[76.77422,17.84197],[76.77407,17.84638],[76.7675,17.85213],[76.7656,17.85128],[76.75922,17.85588],[76.75149,17.85813],[76.73848,17.85668],[76.73884,17.8831],[76.74125,17.8954],[76.73997,17.8997],[76.75713,17.89917],[76.76816,17.90115],[76.77357,17.89046],[76.77505,17.87771],[76.78839,17.87579],[76.79878,17.87154],[76.80667,17.87058],[76.80819,17.87098],[76.80768,17.87802],[76.81022,17.88704],[76.8312,17.88562],[76.83192,17.89526],[76.83972,17.89937],[76.85264,17.90072],[76.87266,17.89808],[76.87917,17.89452],[76.88139,17.89556],[76.88427,17.89429],[76.88399,17.89898],[76.88849,17.89794],[76.89419,17.89983],[76.89504,17.90275],[76.89384,17.90607],[76.89655,17.90575],[76.89689,17.91037],[76.89899,17.90907],[76.90126,17.91724],[76.91474,17.91481],[76.91898,17.91595],[76.92067,17.94157],[76.91729,17.94806],[76.9183,17.95602],[76.91539,17.95711],[76.91444,17.96156],[76.91226,17.97805],[76.91367,17.99322],[76.91314,17.99689],[76.90671,17.99659],[76.90807,17.99952],[76.90603,18.00232],[76.90564,18.00971],[76.90763,18.01422],[76.91094,18.01496],[76.9123,18.01734],[76.91432,18.03536],[76.93662,18.03686],[76.95231,18.04022],[76.95269,18.04394],[76.94836,18.0444],[76.9449,18.04836],[76.95106,18.05776],[76.95162,18.06105],[76.95144,18.06566],[76.94521,18.0832],[76.96294,18.08957],[76.96493,18.09173],[76.96635,18.0982],[76.95872,18.10412],[76.95427,18.11054],[76.93774,18.11491],[76.93292,18.11283],[76.92486,18.11631],[76.92171,18.11555],[76.9205,18.11818],[76.92025,18.12507],[76.9318,18.13353],[76.92448,18.14274],[76.92396,18.14663],[76.93148,18.15965],[76.94236,18.15641],[76.94608,18.16663],[76.94768,18.16641],[76.94845,18.16876],[76.95193,18.1881],[76.9658,18.19007],[76.97742,18.18887],[76.9784,18.19198],[76.99061,18.18999],[76.99056,18.18576],[76.99401,18.18054],[76.9932,18.17581],[76.99641,18.1662],[77.00179,18.16235],[77.00111,18.1609],[77.0233,18.15851],[77.02565,18.16175],[77.02308,18.17565],[77.03173,18.17743],[77.03318,18.18199],[77.05198,18.17323],[77.0532,18.15945],[77.05865,18.15661],[77.06396,18.15065],[77.08485,18.15079],[77.09132,18.15584],[77.09948,18.15819],[77.10324,18.15783],[77.1069,18.15516],[77.11154,18.15583],[77.11672,18.16618],[77.11634,18.17102],[77.09912,18.19199],[77.0976,18.19672],[77.11129,18.20424],[77.12728,18.20767],[77.13374,18.20586],[77.13464,18.20721],[77.14014,18.20772],[77.1427,18.21704],[77.15152,18.21704],[77.15071,18.22216],[77.14923,18.2214],[77.14863,18.23905],[77.15177,18.23802],[77.15913,18.25579],[77.16975,18.26087],[77.17041,18.26431],[77.16903,18.26583],[77.17073,18.2767],[77.17481,18.28486],[77.18821,18.28474],[77.19541,18.27981],[77.19747,18.27661],[77.20377,18.28006],[77.21301,18.28032],[77.20936,18.28772],[77.20985,18.29497],[77.20555,18.2941],[77.20293,18.29773],[77.20311,18.30542],[77.19871,18.31545],[77.20167,18.32217],[77.21179,18.31628],[77.21478,18.32324],[77.21907,18.32573],[77.22277,18.33975],[77.22958,18.34821],[77.22009,18.34927],[77.22448,18.35597],[77.22583,18.36522],[77.23399,18.3698],[77.24639,18.37077],[77.24842,18.37606],[77.23946,18.37861],[77.23369,18.3882],[77.23476,18.39676],[77.24177,18.41261],[77.25937,18.41326],[77.26565,18.42234],[77.27325,18.42302],[77.27904,18.4298],[77.28717,18.43057],[77.30032,18.43639],[77.30066,18.43818],[77.31685,18.44225],[77.31688,18.44799],[77.31989,18.45803],[77.32642,18.45885],[77.3269,18.45175],[77.33603,18.45015],[77.33566,18.44232],[77.34522,18.43361],[77.3475,18.43396],[77.34796,18.43947],[77.35107,18.4422],[77.35349,18.44767],[77.36564,18.45156],[77.3675,18.44696],[77.36184,18.43728],[77.36203,18.43558],[77.36446,18.43452],[77.36215,18.42989],[77.3654,18.42772],[77.36726,18.41869],[77.37065,18.41879],[77.36839,18.41253],[77.37233,18.40673],[77.37283,18.4011],[77.38843,18.39953],[77.40016,18.402],[77.40083,18.39988],[77.40357,18.39965],[77.41409,18.39311],[77.41329,18.38507],[77.40984,18.37741],[77.39487,18.36845],[77.39893,18.35979],[77.40015,18.34745],[77.39434,18.34743],[77.39498,18.3415],[77.39016,18.34371],[77.38549,18.34081],[77.38243,18.34225],[77.38094,18.33102],[77.37562,18.33205],[77.3716,18.32521],[77.35672,18.3202],[77.36579,18.30712],[77.38512,18.30931],[77.39485,18.30359],[77.40142,18.30449],[77.409,18.30147],[77.41703,18.30643],[77.42556,18.30788],[77.42831,18.31236],[77.43766,18.31031],[77.43651,18.29323],[77.44035,18.28263],[77.44586,18.28381],[77.44558,18.27662],[77.44758,18.27],[77.45178,18.26972],[77.45233,18.26698],[77.46504,18.26254],[77.47575,18.26466],[77.47973,18.26818],[77.48138,18.27236],[77.49267,18.2672],[77.49866,18.27675],[77.50522,18.27702],[77.50962,18.28181],[77.51156,18.28205],[77.51205,18.29074],[77.51023,18.29248],[77.51109,18.2953],[77.50882,18.30428],[77.51254,18.30956],[77.52373,18.30821],[77.53272,18.2987],[77.54003,18.29466],[77.55126,18.29169],[77.55326,18.29809],[77.5714,18.30883],[77.57048,18.31811],[77.56387,18.3223],[77.55802,18.33142],[77.53023,18.33917],[77.52234,18.34647],[77.52021,18.35718],[77.52405,18.3642],[77.52547,18.37271],[77.53561,18.38075],[77.5386,18.38588],[77.54319,18.38609],[77.54592,18.38869],[77.5516,18.3889],[77.55268,18.40169],[77.55676,18.41714],[77.55647,18.41943],[77.5369,18.42425],[77.53731,18.42628],[77.52817,18.42891],[77.52752,18.44211],[77.52849,18.44337],[77.54056,18.44471],[77.54798,18.44323],[77.5602,18.43728],[77.56418,18.4373],[77.56829,18.43947],[77.56907,18.44287],[77.5743,18.4418],[77.5853,18.44679],[77.5861,18.4494],[77.583,18.44994],[77.5836,18.45621],[77.56404,18.46102],[77.55076,18.46041],[77.54856,18.46858],[77.56024,18.46862],[77.56107,18.47026],[77.57286,18.46981],[77.57637,18.48678],[77.59225,18.48472],[77.59428,18.47691],[77.60313,18.47685],[77.60361,18.48368],[77.60623,18.4892],[77.60368,18.49294],[77.60471,18.49637],[77.5944,18.4962],[77.59429,18.49791],[77.58591,18.504],[77.58775,18.51286],[77.59707,18.51588],[77.60028,18.5223],[77.59883,18.52421],[77.60044,18.5273],[77.59657,18.5302],[77.59069,18.52667],[77.59206,18.53232],[77.5953,18.53554],[77.59637,18.54894],[77.61007,18.54988],[77.61056,18.54454],[77.6125,18.54448],[77.61319,18.5491],[77.61604,18.54897],[77.61519,18.55085],[77.62647,18.55189],[77.62925,18.55368],[77.62763,18.54812],[77.634,18.54392],[77.63962,18.55494],[77.64791,18.55493],[77.64771,18.55299],[77.65207,18.55179],[77.64922,18.54119],[77.6459,18.53884],[77.65135,18.53226],[77.65586,18.5309],[77.66166,18.53186],[77.6646,18.5358],[77.68069,18.54525],[77.68833,18.54495],[77.70156,18.55517],[77.71097,18.5563],[77.72325,18.55333],[77.7385,18.55679],[77.73704,18.56384],[77.73961,18.56836],[77.74038,18.57522],[77.74347,18.57762],[77.74607,18.5846],[77.75034,18.58921],[77.7476,18.6032],[77.74557,18.60594],[77.74566,18.62129],[77.73471,18.64101],[77.7305,18.64515],[77.7302,18.65608],[77.73571,18.66099],[77.72997,18.66694],[77.73822,18.6765],[77.74313,18.67827],[77.74369,18.68162],[77.74925,18.68267],[77.75244,18.68934],[77.75059,18.69525],[77.7535,18.70099],[77.75998,18.70684],[77.76815,18.70586],[77.77033,18.70184],[77.77324,18.70136],[77.77191,18.68905],[77.77701,18.68536],[77.78729,18.68264],[77.79035,18.68783],[77.78976,18.69515],[77.79501,18.69704],[77.79622,18.70396],[77.80106,18.70762],[77.80418,18.71318],[77.80425,18.72724],[77.81234,18.73851],[77.81671,18.75064],[77.82679,18.76984],[77.83219,18.78825],[77.83851,18.79683],[77.83995,18.80482],[77.85368,18.80907],[77.85988,18.80905],[77.87141,18.81816],[77.88199,18.8174],[77.90667,18.8267],[77.91226,18.82689],[77.9345,18.82227],[77.94309,18.82481],[77.94854,18.82984],[77.9489,18.84329],[77.93478,18.84514],[77.93745,18.85159],[77.92935,18.85359],[77.93006,18.85873],[77.92514,18.86069],[77.91415,18.86137],[77.91243,18.86507],[77.90323,18.86663],[77.90391,18.88125],[77.89158,18.88141],[77.88481,18.9003],[77.88538,18.9042],[77.87394,18.90767],[77.87317,18.90393],[77.85794,18.90235],[77.84325,18.90869],[77.84791,18.9269],[77.85146,18.92641],[77.85859,18.94911],[77.84194,18.94987],[77.83562,18.94725],[77.83245,18.94163],[77.81925,18.94586],[77.81622,18.94728],[77.81984,18.95444],[77.81621,18.95752],[77.82176,18.97851],[77.80522,18.98186],[77.79114,18.98282],[77.78967,18.97458],[77.78763,18.97265],[77.7715,18.97916],[77.77535,19.00063],[77.77224,19.00363],[77.77034,19.00996],[77.76992,19.02241],[77.76556,19.02431],[77.762,19.03185],[77.76495,19.04714],[77.76481,19.06266],[77.77523,19.05602],[77.7891,19.05567],[77.79331,19.05257],[77.80035,19.05112],[77.7986,19.06145],[77.8001,19.06684],[77.7968,19.07259],[77.79786,19.07516],[77.80167,19.07618],[77.80281,19.07976],[77.80458,19.0918],[77.80312,19.09617],[77.80453,19.10056],[77.80993,19.10473],[77.81814,19.10498],[77.82358,19.09773],[77.82641,19.09664],[77.82953,19.08707],[77.83127,19.08608],[77.8423,19.08801],[77.84858,19.0865],[77.8504,19.08856],[77.85108,19.09203],[77.84621,19.10131],[77.84837,19.11013],[77.84766,19.116],[77.84156,19.11811],[77.83688,19.13401],[77.83406,19.13431],[77.83566,19.13808],[77.83795,19.13765],[77.84322,19.14158],[77.85253,19.15468],[77.85265,19.16682],[77.85453,19.1702],[77.85671,19.17075],[77.85593,19.17711],[77.86049,19.18035],[77.85401,19.18749],[77.84772,19.1896],[77.85149,19.1961],[77.85123,19.19975],[77.85481,19.20277],[77.85819,19.21418],[77.86601,19.2264],[77.86612,19.23261],[77.86814,19.23674],[77.8669,19.23994],[77.87002,19.24418],[77.86947,19.24817],[77.87141,19.25502],[77.8746,19.25364],[77.87502,19.25884],[77.89001,19.26089],[77.89092,19.25928],[77.90285,19.25646],[77.90756,19.26823],[77.90346,19.27796],[77.89419,19.27981],[77.88436,19.27893],[77.86558,19.28382],[77.86495,19.28813],[77.8664,19.29172],[77.86346,19.3042],[77.87283,19.30531],[77.87818,19.30928],[77.89003,19.3133],[77.89432,19.32047],[77.91155,19.31626],[77.9176,19.32328],[77.92331,19.32578],[77.92801,19.33221],[77.93198,19.33467],[77.93824,19.33411],[77.94229,19.34227],[77.94512,19.34245],[77.96186,19.33561],[77.96588,19.32746],[77.97411,19.32262],[77.97763,19.32271],[77.98485,19.30988],[77.99467,19.30539],[77.99868,19.2998],[78.0135,19.29472],[78.01596,19.28757],[78.01424,19.28596],[78.01482,19.27904],[78.04251,19.2706],[78.04184,19.26166],[78.03594,19.25063],[78.04161,19.24343],[78.05568,19.23712],[78.06442,19.24777],[78.0723,19.24925],[78.0791,19.25483],[78.08323,19.24868],[78.08235,19.24322],[78.08915,19.23937],[78.09531,19.24374],[78.11317,19.24442],[78.11522,19.24883],[78.11704,19.24864],[78.13428,19.23889],[78.13709,19.23439],[78.14455,19.2294],[78.15099,19.2295],[78.1584,19.23578],[78.16495,19.23455],[78.17532,19.23758],[78.17702,19.24216],[78.18177,19.24762],[78.17798,19.25391],[78.17964,19.25886],[78.17671,19.26294],[78.17817,19.27251],[78.17667,19.27855],[78.18311,19.28518],[78.19374,19.31489],[78.19021,19.32078],[78.19228,19.32583],[78.18951,19.32897],[78.18324,19.32998],[78.17623,19.33493],[78.17215,19.3493],[78.17206,19.35972],[78.17923,19.36284],[78.17679,19.3674],[78.18767,19.39459],[78.17619,19.41226],[78.18382,19.4122],[78.19244,19.40669],[78.19507,19.40675],[78.19881,19.41016],[78.19919,19.41484],[78.20253,19.4197],[78.21159,19.42848],[78.21996,19.43302],[78.23561,19.42675],[78.23743,19.42873],[78.24451,19.4288],[78.24672,19.43217],[78.24648,19.4352],[78.25338,19.43677],[78.25831,19.44179],[78.26265,19.44306],[78.26374,19.44893],[78.26868,19.44847],[78.27044,19.45616],[78.28697,19.44853],[78.29865,19.45195],[78.30434,19.45614],[78.30922,19.48108],[78.29866,19.49681],[78.29495,19.51317],[78.29701,19.51308],[78.296,19.51737],[78.2904,19.52762],[78.29244,19.52931],[78.29411,19.53479],[78.29323,19.54223],[78.28393,19.54141],[78.27431,19.55397],[78.27525,19.56246],[78.29356,19.55898],[78.29815,19.56404],[78.29729,19.5679],[78.30369,19.56932],[78.30425,19.57269],[78.3009,19.57907],[78.30382,19.58478],[78.30557,19.60707],[78.2939,19.61944],[78.2922,19.62741],[78.29208,19.64223],[78.29046,19.646],[78.28088,19.65093],[78.27901,19.65764],[78.27105,19.65854],[78.27162,19.66191],[78.26891,19.66407],[78.26265,19.66506],[78.26579,19.67309],[78.27108,19.67871],[78.27619,19.69242],[78.28785,19.68804],[78.30019,19.68799],[78.30341,19.6912],[78.31182,19.69105],[78.31573,19.70259],[78.31865,19.70553],[78.34313,19.71325],[78.3435,19.71547],[78.33929,19.72416],[78.33982,19.72696],[78.34285,19.72978],[78.34082,19.73333],[78.34123,19.73576],[78.34464,19.73811],[78.34929,19.73798],[78.35555,19.75201],[78.35893,19.76793],[78.36365,19.77577],[78.36467,19.78123],[78.35744,19.80543],[78.35238,19.8074],[78.3448,19.81337],[78.33402,19.81459],[78.33641,19.83792],[78.31576,19.84256],[78.30146,19.84042],[78.28608,19.84794],[78.28531,19.85662],[78.29188,19.86172],[78.29875,19.87497],[78.30703,19.9143],[78.32432,19.91675],[78.32922,19.91566],[78.33178,19.91337],[78.33409,19.9053],[78.32512,19.89815],[78.32436,19.89483],[78.3274,19.88857],[78.33209,19.8849],[78.33688,19.883],[78.36043,19.8834],[78.36964,19.87977],[78.38067,19.88044],[78.38304,19.87391],[78.38179,19.85704],[78.38646,19.84536],[78.42295,19.81763],[78.43737,19.81364],[78.45196,19.81288],[78.46923,19.81772],[78.47246,19.81734],[78.48315,19.80381],[78.48503,19.79605],[78.49024,19.79268],[78.49521,19.79263],[78.50722,19.79755],[78.50895,19.81205],[78.51502,19.81893],[78.53078,19.81845],[78.53794,19.82005],[78.54229,19.82383],[78.55201,19.82408],[78.56323,19.82108],[78.57229,19.81585],[78.58612,19.81879],[78.60731,19.81761],[78.61115,19.81632],[78.61899,19.80998],[78.62552,19.80816],[78.64274,19.80781],[78.65505,19.80019],[78.66635,19.79975],[78.67513,19.79486],[78.69256,19.79103],[78.70137,19.78674],[78.70609,19.7723],[78.71916,19.76665],[78.72415,19.76775],[78.73002,19.78023],[78.74006,19.78313],[78.74611,19.78117],[78.75171,19.77466],[78.75637,19.77251],[78.77112,19.77938],[78.77734,19.77986],[78.78237,19.77841],[78.7863,19.77653],[78.79563,19.76727],[78.79693,19.76001],[78.80216,19.75653],[78.80691,19.75689],[78.81692,19.76183],[78.82588,19.75514],[78.83351,19.76012],[78.84096,19.76189],[78.8404,19.75634],[78.84532,19.74688],[78.84795,19.7355],[78.85115,19.73613],[78.85237,19.7279],[78.84943,19.72197],[78.85992,19.68949],[78.85715,19.68962],[78.85569,19.68666],[78.85584,19.67731],[78.85192,19.65836],[78.86159,19.65741],[78.86809,19.65903],[78.88673,19.65507],[78.89048,19.65941],[78.88645,19.66245],[78.89601,19.66446],[78.90354,19.67001],[78.90768,19.66799],[78.91165,19.66911],[78.91582,19.6669],[78.91986,19.66697],[78.91972,19.662],[78.94423,19.66174],[78.95556,19.65579],[78.95739,19.64717],[78.96185,19.63744],[78.96119,19.63169],[78.95537,19.61912],[78.95562,19.60017],[78.95914,19.59547],[78.97178,19.59001],[78.97283,19.58239],[78.96487,19.57358],[78.95254,19.56498],[78.94649,19.56161],[78.93767,19.56187],[78.94044,19.55187],[78.9521,19.54886],[78.97422,19.54938],[78.9768,19.55694],[78.97985,19.55766],[78.98125,19.56084],[78.99775,19.54907],[78.99803,19.54008],[79.00687,19.54202],[79.02402,19.54178],[79.03945,19.5476],[79.04601,19.54833],[79.06534,19.53963],[79.06769,19.53566],[79.0769,19.5324],[79.09803,19.53203],[79.10539,19.52238],[79.11434,19.51976],[79.12093,19.512],[79.13311,19.50783],[79.13566,19.50615],[79.13861,19.50048],[79.14299,19.50053],[79.15755,19.48929],[79.16135,19.48826],[79.16783,19.47236],[79.18007,19.46188],[79.19031,19.45898],[79.20821,19.46497],[79.21568,19.46464],[79.22359,19.46907],[79.22319,19.47235],[79.21577,19.48094],[79.21075,19.48174],[79.20685,19.48582],[79.20385,19.49408],[79.20738,19.49763],[79.20746,19.50613],[79.21403,19.51119],[79.22116,19.52099],[79.23373,19.52001],[79.24002,19.53524],[79.23712,19.55714],[79.24622,19.56752],[79.25103,19.5775],[79.25312,19.59329],[79.24441,19.59487],[79.23864,19.60617],[79.24356,19.61669],[79.2511,19.61587],[79.27295,19.59884],[79.28436,19.59552],[79.30684,19.59656],[79.31026,19.57796],[79.30985,19.57151],[79.31393,19.56642],[79.31854,19.5677],[79.31844,19.57672],[79.32618,19.57743],[79.33481,19.57479],[79.35739,19.57758],[79.36573,19.57633],[79.36708,19.57294],[79.36947,19.5727],[79.37275,19.56099],[79.3768,19.55888],[79.38568,19.55833],[79.38732,19.55471],[79.39175,19.55287],[79.39621,19.54806],[79.40171,19.53845],[79.40532,19.53567],[79.42047,19.52976],[79.423,19.53016],[79.42256,19.53804],[79.43333,19.53726],[79.44221,19.52798],[79.44605,19.52692],[79.45327,19.5201],[79.45676,19.51913],[79.46896,19.50957],[79.47142,19.50019],[79.48263,19.50628],[79.49839,19.50569],[79.50076,19.50739],[79.50226,19.51164],[79.51483,19.51944],[79.51859,19.52018],[79.52081,19.53489],[79.51861,19.54311],[79.52922,19.55105],[79.53993,19.55466],[79.54248,19.55423],[79.54538,19.5507],[79.54839,19.53162],[79.55293,19.52417],[79.569,19.51827],[79.58404,19.50913],[79.59615,19.50728],[79.60046,19.50951],[79.60297,19.51455],[79.60604,19.53283],[79.61166,19.54752],[79.61414,19.55968],[79.62792,19.57317],[79.63546,19.57594],[79.65829,19.57971],[79.67532,19.57971],[79.68895,19.58387],[79.709,19.58448],[79.71798,19.58945],[79.73525,19.60496],[79.74308,19.60863],[79.75345,19.60753],[79.77861,19.59967],[79.79858,19.58197],[79.81446,19.5757],[79.82115,19.56422],[79.82125,19.56021],[79.82411,19.55679],[79.8249,19.55053],[79.82842,19.54341],[79.83287,19.53855],[79.84564,19.5328],[79.84817,19.52653],[79.85532,19.52103],[79.86458,19.51051],[79.87095,19.50906],[79.88085,19.50357],[79.90196,19.5009],[79.9145,19.49604],[79.93241,19.47654],[79.94482,19.46981],[79.94822,19.4606],[79.94761,19.44968],[79.95248,19.44095],[79.97239,19.41621],[79.97469,19.41099],[79.9747,19.40436],[79.97794,19.40036],[79.97718,19.39418],[79.97961,19.39033],[79.97938,19.38808],[79.97404,19.3855],[79.97183,19.38156],[79.97142,19.37681],[79.96953,19.37469],[79.97023,19.37103],[79.96797,19.35663],[79.95908,19.33594],[79.95909,19.33086],[79.96557,19.31307],[79.96587,19.30304],[79.96227,19.29735],[79.95482,19.29376],[79.95057,19.28904],[79.93636,19.26413],[79.93085,19.2508],[79.92474,19.2273],[79.92422,19.21546],[79.92545,19.21064],[79.94528,19.17914],[79.9465,19.17425],[79.94567,19.16894],[79.92532,19.15159],[79.87375,19.12405],[79.86146,19.11226],[79.85843,19.10242],[79.85896,19.09276],[79.8634,19.07782],[79.86338,19.06869],[79.866,19.0542],[79.86859,19.04424],[79.8711,19.04102],[79.87704,19.0388],[79.89922,19.04024],[79.92063,19.04971],[79.92892,19.04919],[79.93281,19.0474],[79.93707,19.04269],[79.94038,19.03201],[79.94256,19.00698],[79.9424,19.00066],[79.94096,19.00023],[79.94162,18.99209],[79.95705,18.94288],[79.95742,18.92279],[79.95361,18.9045],[79.95867,18.88861],[79.96161,18.86663],[79.95851,18.85942],[79.94764,18.85018],[79.94138,18.84604],[79.92825,18.84091],[79.91911,18.83382],[79.91503,18.82869],[79.91403,18.82381],[79.92412,18.8069],[79.94949,18.78915],[79.95915,18.7773],[79.96415,18.77382],[79.99305,18.76993],[79.99583,18.77082],[79.99809,18.77592],[80.00099,18.77607],[80.01854,18.77038],[80.02498,18.75494],[80.03455,18.75499],[80.03868,18.75297],[80.04141,18.74299],[80.0528,18.72506],[80.05694,18.72332],[80.06462,18.72326],[80.06926,18.71957],[80.07459,18.71052],[80.08207,18.70725],[80.08851,18.70728],[80.09904,18.69448],[80.10415,18.69157],[80.11225,18.68288],[80.11812,18.68052],[80.12438,18.68136],[80.12856,18.68743],[80.14002,18.693],[80.14846,18.69309],[80.15771,18.70098],[80.16862,18.69971],[80.17416,18.68818],[80.1787,18.68327],[80.19047,18.68046],[80.19657,18.6808],[80.19937,18.68321],[80.20043,18.69256],[80.21277,18.70572],[80.21933,18.70792],[80.22628,18.7056],[80.2304,18.70181],[80.23462,18.70263],[80.23864,18.70573],[80.25223,18.70681],[80.26501,18.7175],[80.26614,18.72055],[80.27242,18.72351],[80.25974,18.74232],[80.24475,18.75661],[80.24512,18.76086],[80.2477,18.7642],[80.25671,18.76998],[80.26217,18.7701],[80.27271,18.76576],[80.27592,18.76611],[80.28837,18.77378],[80.28845,18.77738],[80.29149,18.78347],[80.29994,18.79445],[80.30599,18.79794],[80.31401,18.79993],[80.323,18.79897],[80.3418,18.8124],[80.35141,18.81629],[80.35431,18.82646],[80.35224,18.83994],[80.34926,18.8478],[80.32619,18.8809],[80.31611,18.88876],[80.29979,18.91112],[80.2762,18.92977],[80.27025,18.93988],[80.26912,18.94867],[80.27229,18.95775],[80.27431,18.97119],[80.27341,18.99318],[80.28705,19.00682],[80.29218,19.00983],[80.30313,19.02216],[80.30516,19.02735],[80.30288,19.03491],[80.29824,19.04128],[80.29638,19.04688],[80.29734,19.04901],[80.31996,19.06588],[80.32967,19.07011],[80.32892,19.07591],[80.33114,19.08135],[80.32792,19.09505],[80.33962,19.10011],[80.33621,19.11185],[80.33068,19.12049],[80.33123,19.12795],[80.33,19.13272],[80.32743,19.13511],[80.33308,19.14552],[80.34068,19.14621],[80.34778,19.15236],[80.34789,19.16012],[80.38766,19.18051],[80.39384,19.1878],[80.39435,19.19637],[80.38393,19.21502],[80.38631,19.233],[80.38903,19.23797],[80.3955,19.24647],[80.42987,19.25408],[80.4377,19.25787],[80.44841,19.26663],[80.45473,19.27499],[80.45736,19.28834],[80.46303,19.30092],[80.47134,19.31383],[80.47705,19.32992],[80.48417,19.33971],[80.49574,19.34323],[80.50681,19.34242],[80.52033,19.34777],[80.53843,19.37779],[80.54417,19.38388],[80.5521,19.38854],[80.56248,19.3991],[80.57593,19.40236],[80.58096,19.39789],[80.5918,19.37591],[80.58822,19.37026],[80.59084,19.3577],[80.59003,19.35177],[80.60766,19.32613],[80.60789,19.31823],[80.61254,19.30952],[80.61498,19.30983],[80.62329,19.30572],[80.63151,19.30717],[80.63649,19.31333],[80.64699,19.31649],[80.64836,19.31572],[80.65405,19.32281],[80.67313,19.33001],[80.6799,19.33033],[80.68613,19.32673],[80.69315,19.31555],[80.68865,19.29517],[80.6897,19.28698],[80.6957,19.28433],[80.69931,19.28474],[80.70185,19.2821],[80.70417,19.28309],[80.71076,19.28176],[80.72656,19.28718],[80.73832,19.28546],[80.74229,19.28708],[80.74313,19.28902],[80.75096,19.28776],[80.75914,19.29103],[80.75974,19.29584],[80.76304,19.29719],[80.76861,19.30362],[80.77421,19.31358],[80.79022,19.3236],[80.79567,19.3234],[80.79883,19.32662],[80.80609,19.32751],[80.81007,19.33621],[80.83036,19.34818],[80.84608,19.35525],[80.85285,19.3639],[80.84905,19.36974],[80.84185,19.37191],[80.82839,19.38008],[80.82067,19.38116],[80.81733,19.38391],[80.81665,19.39715],[80.81223,19.40636],[80.80447,19.41195],[80.80429,19.41946],[80.79932,19.42272],[80.79585,19.43226],[80.81253,19.43276],[80.82306,19.43985],[80.82795,19.44014],[80.83013,19.44319],[80.84242,19.44691],[80.84759,19.44539],[80.85049,19.44669],[80.85345,19.44475],[80.85674,19.44604],[80.86437,19.44403],[80.87537,19.44598],[80.88877,19.46052],[80.89488,19.46964],[80.89768,19.48045],[80.89502,19.50079],[80.89294,19.5023],[80.89428,19.50369],[80.89321,19.50727],[80.89471,19.50962],[80.89496,19.51962],[80.8912,19.52051],[80.88369,19.52617],[80.87314,19.5187],[80.86851,19.52177],[80.86448,19.52004],[80.85621,19.523],[80.8499,19.52891],[80.84967,19.5345],[80.8437,19.53845],[80.8394,19.54921],[80.84065,19.55425],[80.83946,19.55941],[80.83478,19.56674],[80.82396,19.56672],[80.81615,19.5712],[80.81079,19.5689],[80.80633,19.56896],[80.797,19.56248],[80.78944,19.56042],[80.78113,19.56375],[80.77511,19.56251],[80.76703,19.57491],[80.76943,19.58667],[80.76836,19.58795],[80.76,19.59165],[80.75752,19.59667],[80.74588,19.60154],[80.74085,19.60623],[80.73308,19.6063],[80.73034,19.61018],[80.71945,19.61538],[80.71328,19.61658],[80.70567,19.61398],[80.68847,19.61317],[80.67027,19.60932],[80.66533,19.61188],[80.66262,19.62248],[80.66637,19.63799],[80.66734,19.65771],[80.67425,19.68441],[80.67222,19.70072],[80.66344,19.70593],[80.65641,19.70709],[80.6502,19.71143],[80.64013,19.72531],[80.62676,19.72578],[80.6211,19.73303],[80.61397,19.73503],[80.61106,19.73817],[80.60572,19.73673],[80.59897,19.74031],[80.59438,19.73917],[80.5901,19.74222],[80.58647,19.74114],[80.58489,19.74408],[80.58141,19.746],[80.5842,19.74737],[80.58206,19.75082],[80.57382,19.75481],[80.57146,19.75923],[80.56215,19.76097],[80.55261,19.76556],[80.54374,19.7758],[80.54261,19.77992],[80.54244,19.78345],[80.54756,19.7949],[80.54522,19.80608],[80.5462,19.81832],[80.52021,19.83172],[80.50404,19.83085],[80.50037,19.82771],[80.48058,19.82751],[80.46888,19.81045],[80.47565,19.80362],[80.48497,19.80248],[80.48595,19.79648],[80.48999,19.79015],[80.49131,19.77529],[80.48903,19.77041],[80.48266,19.77274],[80.48083,19.78129],[80.46803,19.78882],[80.46426,19.79578],[80.4493,19.78977],[80.43949,19.79606],[80.42416,19.79916],[80.40488,19.79372],[80.4017,19.7962],[80.40769,19.806],[80.40162,19.81704],[80.41306,19.81639],[80.42158,19.8134],[80.42968,19.80714],[80.44072,19.81033],[80.46007,19.82299],[80.46908,19.82702],[80.4719,19.83556],[80.47869,19.83932],[80.48102,19.84927],[80.48417,19.85423],[80.48253,19.85881],[80.48629,19.86359],[80.49952,19.86968],[80.50582,19.87065],[80.49958,19.89084],[80.49143,19.90201],[80.47414,19.90381],[80.46862,19.90756],[80.46203,19.90438],[80.45717,19.89897],[80.45038,19.89633],[80.43322,19.90284],[80.42371,19.90259],[80.41388,19.90745],[80.40795,19.91271],[80.41257,19.92464],[80.41125,19.93849],[80.43015,19.94064],[80.45216,19.9576],[80.46603,19.94818],[80.47316,19.95095],[80.47912,19.944],[80.47998,19.94092],[80.47842,19.93844],[80.48073,19.93437],[80.48875,19.93061],[80.49593,19.93106],[80.50002,19.92861],[80.50474,19.92855],[80.50965,19.93105],[80.52362,19.93379],[80.52561,19.93731],[80.52989,19.93947],[80.53164,19.94857],[80.5389,19.95189],[80.53721,19.95931],[80.53939,19.96256],[80.5358,19.96553],[80.5378,19.96956],[80.53764,19.97379],[80.54378,19.97754],[80.5496,19.98597],[80.54985,20.00081],[80.54256,20.01077],[80.54697,20.01795],[80.54587,20.02116],[80.54684,20.02898],[80.55098,20.04164],[80.54931,20.05525],[80.55109,20.06164],[80.55437,20.06543],[80.55681,20.07188],[80.55491,20.07969],[80.544,20.09564],[80.54772,20.10542],[80.55193,20.10933],[80.55207,20.11796],[80.54034,20.12285],[80.53067,20.13172],[80.51241,20.13584],[80.50993,20.1413],[80.50559,20.14444],[80.49695,20.14553],[80.48508,20.14387],[80.46616,20.15042],[80.46015,20.15094],[80.45664,20.1493],[80.45465,20.14525],[80.45545,20.13793],[80.43338,20.13533],[80.42959,20.1361],[80.42593,20.13993],[80.40182,20.14724],[80.38854,20.1652],[80.39659,20.1739],[80.40069,20.18972],[80.41211,20.19447],[80.42101,20.19617],[80.42205,20.2068],[80.40483,20.21873],[80.39519,20.23701],[80.39526,20.24501],[80.39814,20.24427],[80.41678,20.24882],[80.42205,20.25349],[80.4369,20.26117],[80.44721,20.26246],[80.46694,20.27612],[80.47913,20.2783],[80.48991,20.27826],[80.51882,20.26617],[80.52256,20.27354],[80.5322,20.28086],[80.5435,20.29353],[80.54618,20.29766],[80.54604,20.30603],[80.54958,20.30896],[80.5592,20.30851],[80.58808,20.31792],[80.61052,20.3184],[80.61485,20.32239],[80.62237,20.32541],[80.62635,20.33263],[80.6258,20.33692],[80.62158,20.33956],[80.61854,20.34473],[80.61881,20.34913],[80.61511,20.35179],[80.6159,20.35991],[80.60948,20.36985],[80.61075,20.37506],[80.6038,20.38124],[80.59658,20.38384],[80.59729,20.38596],[80.59473,20.3858],[80.59148,20.39307],[80.59892,20.41058],[80.60009,20.41801],[80.60813,20.42415],[80.61364,20.43498],[80.61289,20.43871],[80.60805,20.44388],[80.60266,20.44621],[80.60217,20.44996],[80.6126,20.46193],[80.61635,20.48836],[80.61471,20.49256],[80.61932,20.50577],[80.61722,20.51066],[80.61885,20.51434],[80.61732,20.51517],[80.62088,20.52589],[80.61796,20.52545],[80.62132,20.5328],[80.61797,20.54658],[80.61527,20.5499],[80.61774,20.55212],[80.61843,20.55529],[80.62431,20.55577],[80.62406,20.55903],[80.62659,20.56381],[80.62587,20.56846],[80.62096,20.57006],[80.62108,20.57443],[80.62555,20.57813],[80.61735,20.58575],[80.62323,20.58923],[80.62406,20.59205],[80.63187,20.59839],[80.62829,20.60009],[80.61231,20.60051],[80.60502,20.60743],[80.60141,20.60879],[80.58077,20.60836],[80.56439,20.60362],[80.55783,20.59434],[80.54497,20.59018],[80.53884,20.585],[80.52154,20.58045],[80.50441,20.58335],[80.50284,20.59382],[80.49675,20.6024],[80.49415,20.6125],[80.4942,20.62667],[80.49565,20.63685],[80.49845,20.63942],[80.52129,20.65728],[80.53078,20.66011],[80.54491,20.66028],[80.55324,20.66867],[80.55947,20.67091],[80.58013,20.67292],[80.58368,20.67662],[80.58765,20.6847],[80.5818,20.69741],[80.57485,20.70405],[80.56729,20.70737],[80.56515,20.71079],[80.56001,20.7262],[80.56284,20.734],[80.56276,20.74732],[80.55867,20.75122],[80.55166,20.76403],[80.55219,20.78087],[80.54917,20.79606],[80.55859,20.81158],[80.56181,20.82437],[80.56123,20.83058],[80.55654,20.83784],[80.55504,20.84658],[80.55653,20.86089],[80.55393,20.87158],[80.55612,20.8892],[80.5481,20.91184],[80.54178,20.92392],[80.54294,20.92535],[80.54203,20.93022],[80.54628,20.93199],[80.54613,20.93485],[80.53902,20.93258],[80.53448,20.93459],[80.51907,20.92982],[80.50327,20.93135],[80.49295,20.92933],[80.46363,20.92925],[80.46175,20.93332],[80.46175,20.93984],[80.45472,20.94659],[80.4547,20.9528],[80.44535,20.97063],[80.44376,20.97719],[80.44553,20.97977],[80.44288,20.98645],[80.44377,20.99404],[80.43518,21.00148],[80.42581,21.00597],[80.42419,21.00886],[80.4251,21.01138],[80.42888,21.01169],[80.43581,21.02023],[80.43923,21.02184],[80.44012,21.02808],[80.44472,21.02799],[80.4495,21.03032],[80.45064,21.03684],[80.45264,21.03883],[80.4512,21.04284],[80.45393,21.05306],[80.4495,21.05726],[80.44956,21.06029],[80.44718,21.06326],[80.44966,21.06918],[80.44652,21.07341],[80.44629,21.08412],[80.44087,21.08984],[80.44164,21.0936],[80.43915,21.09656],[80.44647,21.1048],[80.4478,21.11242],[80.45345,21.11268],[80.4536,21.11156],[80.45819,21.11387],[80.45474,21.11828],[80.44517,21.12068],[80.44471,21.12196],[80.45875,21.15005],[80.46104,21.15727],[80.46081,21.16476],[80.46426,21.17503],[80.47337,21.17368],[80.4757,21.17099],[80.47861,21.17068],[80.48675,21.17676],[80.49206,21.17702],[80.49361,21.1796],[80.50045,21.18273],[80.50259,21.18532],[80.50731,21.18463],[80.50927,21.18601],[80.51499,21.18303],[80.51776,21.19281],[80.52963,21.20533],[80.54144,21.20109],[80.55947,21.2021],[80.56977,21.20581],[80.5779,21.21749],[80.58758,21.2221],[80.59819,21.22548],[80.60592,21.2242],[80.61378,21.22657],[80.61702,21.22929],[80.62312,21.24009],[80.635,21.24748],[80.63926,21.24732],[80.64384,21.25147],[80.64879,21.26216],[80.64917,21.27352],[80.65071,21.27738],[80.65908,21.28195],[80.65881,21.28669],[80.66151,21.29131],[80.66997,21.29116],[80.67727,21.29602],[80.67957,21.29884],[80.6789,21.30333],[80.68156,21.31357],[80.67534,21.31775],[80.67487,21.32185],[80.6712,21.32565],[80.66556,21.32825],[80.66495,21.33187],[80.66243,21.33463],[80.65191,21.32713],[80.64491,21.32804],[80.62134,21.32037],[80.61116,21.32761],[80.60891,21.32714],[80.60786,21.32386],[80.5992,21.32712],[80.59779,21.33155],[80.58934,21.3336],[80.59142,21.34092],[80.58947,21.34372],[80.58457,21.34423],[80.58137,21.34699],[80.57657,21.34687],[80.57277,21.3428],[80.5667,21.34565],[80.56756,21.34824],[80.56503,21.3494],[80.56541,21.35399],[80.57019,21.35752],[80.56388,21.36497],[80.56074,21.36365],[80.55841,21.36734],[80.5543,21.3665],[80.55333,21.36856],[80.55083,21.36874],[80.54848,21.37114],[80.54316,21.37071],[80.5392,21.38271],[80.5318,21.38207],[80.52762,21.39487],[80.52519,21.39402],[80.52393,21.39122],[80.51712,21.3952],[80.51501,21.39176],[80.51122,21.39284],[80.50842,21.39082],[80.50168,21.3956],[80.50097,21.39851],[80.49521,21.39658],[80.48752,21.39796],[80.48419,21.39534],[80.48341,21.39881],[80.48109,21.40094],[80.47979,21.39673],[80.47647,21.3949],[80.47364,21.3969],[80.47093,21.39586],[80.46235,21.40263],[80.45756,21.40268],[80.45701,21.40046],[80.45826,21.40036],[80.4558,21.39826],[80.45632,21.39611],[80.4542,21.39526],[80.44973,21.38732],[80.45174,21.37806],[80.44863,21.37205],[80.44612,21.37109],[80.43705,21.37268],[80.43246,21.37383],[80.43061,21.37626],[80.41694,21.3752],[80.41224,21.37672],[80.40676,21.3817],[80.39638,21.40298],[80.39604,21.40811],[80.39812,21.4123],[80.40857,21.41842],[80.40891,21.42104],[80.4046,21.42502],[80.42216,21.44054],[80.4187,21.4426],[80.41799,21.4485],[80.41389,21.45731],[80.41108,21.45988],[80.40906,21.46737],[80.40372,21.46753],[80.39722,21.47159],[80.39042,21.47941],[80.39211,21.4867],[80.38397,21.4901],[80.38477,21.49974],[80.37878,21.51381],[80.37719,21.52225],[80.36015,21.53446],[80.34434,21.53867],[80.33131,21.54754],[80.33068,21.55118],[80.33931,21.55508],[80.33191,21.56093],[80.32775,21.5714],[80.31823,21.57712],[80.30325,21.5748],[80.29806,21.57581],[80.29523,21.58136],[80.29407,21.59332],[80.2813,21.59605],[80.27014,21.61606],[80.25345,21.62475],[80.25,21.62418],[80.24584,21.62049],[80.23529,21.6224],[80.22148,21.62097],[80.21689,21.62565],[80.21898,21.62887],[80.21746,21.63343],[80.21452,21.63017],[80.20883,21.63523],[80.19278,21.63545],[80.18763,21.62854],[80.16909,21.62214],[80.1602,21.61066],[80.15462,21.60647],[80.14411,21.60578],[80.12786,21.61159],[80.11971,21.60988],[80.11797,21.60759],[80.11821,21.59852],[80.11606,21.59325],[80.11072,21.59084],[80.10124,21.58999],[80.09633,21.58504],[80.09013,21.57455],[80.07221,21.55679],[80.06669,21.5542],[80.05611,21.55343],[80.04451,21.55624],[80.03287,21.55621],[80.0041,21.53546],[79.99681,21.53362],[79.9887,21.53693],[79.97952,21.55052],[79.97148,21.55772],[79.96389,21.55835],[79.94821,21.55417],[79.9359,21.55624],[79.92977,21.55258],[79.92219,21.5418],[79.91846,21.52454],[79.9097,21.52277],[79.897,21.52438],[79.89124,21.51819],[79.88224,21.52622],[79.87319,21.52954],[79.86313,21.5308],[79.8507,21.54082],[79.83125,21.54692],[79.82856,21.54887],[79.82151,21.56154],[79.79207,21.58659],[79.7543,21.59549],[79.74186,21.603],[79.73763,21.60386],[79.73281,21.60302],[79.72494,21.59581],[79.71816,21.59306],[79.71201,21.59187],[79.69907,21.5929],[79.69501,21.58539],[79.68955,21.58096],[79.67543,21.5823],[79.66094,21.5769],[79.65837,21.56375],[79.65527,21.55811],[79.65205,21.55598],[79.63959,21.55297],[79.62226,21.55757],[79.6185,21.55726],[79.59997,21.54948],[79.59164,21.54788],[79.58138,21.5413],[79.57598,21.542],[79.56581,21.54764],[79.54061,21.54268],[79.538,21.54551],[79.53752,21.54875],[79.54393,21.55952],[79.54251,21.56823],[79.53206,21.57502],[79.52864,21.57935],[79.51824,21.58036],[79.51203,21.58397],[79.51008,21.59566],[79.511,21.60488],[79.50439,21.61124],[79.50371,21.61459],[79.50713,21.62132],[79.51662,21.62085],[79.51723,21.62575],[79.5161,21.63138],[79.50777,21.63435],[79.50657,21.63896],[79.50427,21.6411],[79.50676,21.64567],[79.50134,21.65171],[79.50135,21.65979],[79.49621,21.66541],[79.49621,21.67422],[79.48072,21.67784],[79.46073,21.68755],[79.4495,21.68206],[79.43525,21.68283],[79.42799,21.68975],[79.4222,21.69182],[79.41566,21.69116],[79.41012,21.68475],[79.40271,21.68221],[79.40044,21.67677],[79.39609,21.67651],[79.39249,21.67412],[79.37465,21.67841],[79.357,21.67925],[79.35237,21.67806],[79.35427,21.68483],[79.34289,21.68396],[79.32455,21.68797],[79.32224,21.68523],[79.31826,21.68851],[79.31141,21.68827],[79.29669,21.69331],[79.29059,21.69254],[79.2886,21.69528],[79.2858,21.69547],[79.28051,21.70172],[79.27791,21.70937],[79.26807,21.71541],[79.24496,21.72148],[79.24193,21.72018],[79.23119,21.72228],[79.23086,21.71875],[79.23522,21.71752],[79.23737,21.71341],[79.23394,21.70858],[79.22679,21.70368],[79.22086,21.69287],[79.22182,21.67704],[79.22906,21.67398],[79.23118,21.67035],[79.23131,21.65698],[79.23031,21.65572],[79.22411,21.65543],[79.22402,21.6488],[79.20899,21.65006],[79.14831,21.66117],[79.14824,21.65087],[79.14528,21.64669],[79.1433,21.63696],[79.13452,21.63321],[79.13034,21.62581],[79.1239,21.62659],[79.12289,21.62493],[79.11862,21.62382],[79.11211,21.62391],[79.10053,21.6176],[79.10207,21.60923],[79.10694,21.60721],[79.10721,21.60503],[79.103,21.60149],[79.09336,21.60161],[79.09396,21.59811],[79.08965,21.59757],[79.08851,21.60395],[79.07647,21.6054],[79.05825,21.60151],[79.05537,21.60148],[79.05294,21.60416],[79.04769,21.60244],[79.04188,21.60473],[79.02484,21.60169],[79.01921,21.60259],[79.01237,21.59945],[79.00291,21.60642],[78.99801,21.61857],[78.99596,21.61696],[78.98714,21.61596],[78.97552,21.61764],[78.97426,21.6128],[78.96993,21.61052],[78.96512,21.60489],[78.952,21.59717],[78.94742,21.59672],[78.94393,21.59215],[78.92997,21.59284],[78.92767,21.5902],[78.91676,21.59092],[78.91571,21.58866],[78.91435,21.58899],[78.9163,21.58759],[78.91652,21.58493],[78.91505,21.58299],[78.91375,21.57099],[78.93194,21.56452],[78.93186,21.56176],[78.92792,21.55958],[78.91817,21.56114],[78.91274,21.5553],[78.9068,21.55326],[78.91338,21.55078],[78.91255,21.54886],[78.9186,21.54713],[78.92555,21.54082],[78.92987,21.54036],[78.92593,21.53269],[78.92743,21.52225],[78.9318,21.52367],[78.93543,21.52283],[78.94439,21.51588],[78.94467,21.51266],[78.9413,21.5113],[78.94025,21.50787],[78.93924,21.49354],[78.93669,21.48577],[78.92306,21.48745],[78.9174,21.49225],[78.89926,21.50046],[78.89518,21.49828],[78.89084,21.48526],[78.87152,21.48969],[78.86763,21.49131],[78.86803,21.49408],[78.86331,21.4927],[78.85586,21.49462],[78.85619,21.49284],[78.85191,21.48972],[78.84844,21.49003],[78.84105,21.487],[78.82975,21.49017],[78.81979,21.48726],[78.81557,21.4877],[78.81516,21.49064],[78.80026,21.49016],[78.79599,21.48554],[78.78998,21.48639],[78.78869,21.48089],[78.78698,21.48089],[78.78663,21.47934],[78.78015,21.47887],[78.77877,21.46936],[78.77613,21.46458],[78.7719,21.47168],[78.7716,21.47672],[78.76881,21.4775],[78.7666,21.4828],[78.76687,21.48904],[78.75663,21.49024],[78.75085,21.49298],[78.74495,21.48101],[78.74559,21.47019],[78.73343,21.46969],[78.731,21.46381],[78.72847,21.46229],[78.70756,21.47063],[78.70738,21.47391],[78.69984,21.47381],[78.70167,21.47632],[78.69335,21.47909],[78.68849,21.47794],[78.69014,21.4802],[78.68891,21.48197],[78.67094,21.48009],[78.66712,21.47709],[78.65931,21.48138],[78.64343,21.48552],[78.62868,21.47568],[78.61997,21.47826],[78.61918,21.48157],[78.60877,21.48906],[78.60301,21.48809],[78.60098,21.4854],[78.59475,21.48848],[78.58534,21.48672],[78.58415,21.49006],[78.58177,21.48995],[78.58249,21.4923],[78.57636,21.49787],[78.57172,21.4989],[78.57315,21.50156],[78.56785,21.50579],[78.56702,21.5097],[78.57015,21.51425],[78.56002,21.51328],[78.55653,21.51555],[78.55598,21.51762],[78.54973,21.51828],[78.54067,21.52372],[78.53076,21.52326],[78.51164,21.52869],[78.50926,21.52602],[78.50472,21.52679],[78.50061,21.51709],[78.49503,21.51725],[78.48694,21.50777],[78.48685,21.50553],[78.4757,21.50571],[78.47522,21.50097],[78.46966,21.50087],[78.46365,21.50383],[78.46068,21.50348],[78.45709,21.49607],[78.453,21.49683],[78.44965,21.49552],[78.44831,21.4998],[78.4445,21.50172],[78.43955,21.5023],[78.4365,21.4995],[78.43391,21.5062],[78.43444,21.51049],[78.43205,21.51444],[78.43705,21.51595],[78.43846,21.51785],[78.43075,21.52489],[78.42979,21.52767],[78.43399,21.53122],[78.43464,21.53409],[78.42424,21.54444],[78.42789,21.55943],[78.42539,21.56527],[78.42536,21.56993],[78.41871,21.57079],[78.41906,21.57985],[78.42159,21.59104],[78.42719,21.59921],[78.41657,21.60111],[78.41266,21.60553],[78.40692,21.60879],[78.39509,21.60761],[78.39285,21.60934],[78.39213,21.61401],[78.3869,21.61479],[78.37264,21.61345],[78.38162,21.59204],[78.3778,21.58373],[78.36306,21.5752],[78.35542,21.57332],[78.34894,21.57863],[78.34852,21.58067],[78.34542,21.58176],[78.34275,21.58906],[78.32661,21.575],[78.32031,21.57205],[78.30817,21.57151],[78.30705,21.56957],[78.30395,21.57045],[78.30297,21.58374],[78.29121,21.58323],[78.28115,21.58524],[78.27522,21.59182],[78.27182,21.59066],[78.26648,21.59173],[78.2644,21.59127],[78.26137,21.58674],[78.2603,21.57966],[78.27327,21.57121],[78.27386,21.56925],[78.24805,21.56232],[78.23958,21.56307],[78.23192,21.55675],[78.22328,21.55316],[78.20547,21.55297],[78.18189,21.55734],[78.17421,21.54726],[78.17286,21.53875],[78.1755,21.5281],[78.17125,21.52558],[78.18263,21.51175],[78.1773,21.5078],[78.17447,21.50798],[78.17621,21.49975],[78.13655,21.47816],[78.12587,21.46984],[78.11335,21.46346],[78.09873,21.45865],[78.08318,21.44602],[78.06606,21.43797],[78.04602,21.43398],[78.04029,21.42845],[78.03009,21.42214],[78.02132,21.41912],[78.01424,21.41856],[78.0091,21.41511],[78.00127,21.41469],[77.98473,21.40319],[77.96512,21.40221],[77.94259,21.39661],[77.94051,21.39037],[77.94119,21.38577],[77.92759,21.38599],[77.91209,21.38113],[77.907,21.37784],[77.88843,21.3781],[77.88327,21.37604],[77.88385,21.38417],[77.86758,21.38787],[77.8568,21.38852],[77.85637,21.39019],[77.84728,21.3925],[77.84262,21.3972],[77.82262,21.40733],[77.80115,21.4096],[77.79828,21.40491],[77.79677,21.38901],[77.76388,21.3814],[77.76122,21.38517],[77.75004,21.38283],[77.74605,21.37849],[77.74057,21.36542],[77.73838,21.36477],[77.73711,21.3622],[77.72329,21.36167],[77.70999,21.35745],[77.70676,21.3682],[77.70739,21.37505],[77.7047,21.377],[77.7006,21.37367],[77.69741,21.3743],[77.69517,21.37876],[77.69708,21.39271],[77.69548,21.39637],[77.69199,21.39757],[77.67866,21.37691],[77.66991,21.36892],[77.66438,21.37451],[77.66648,21.38405],[77.65592,21.38614],[77.65313,21.39146],[77.64936,21.39207],[77.64326,21.38692],[77.63977,21.3887],[77.63265,21.38881],[77.61726,21.38712],[77.6139,21.39205],[77.60497,21.39073],[77.60343,21.38984],[77.60617,21.37357],[77.60826,21.37049],[77.60785,21.36494],[77.60513,21.36244],[77.59482,21.36303],[77.59182,21.36504],[77.58711,21.36284],[77.58528,21.36679],[77.57343,21.37093],[77.57114,21.36867],[77.5635,21.36931],[77.56281,21.37534],[77.55678,21.38364],[77.55967,21.39055],[77.56252,21.39041],[77.56324,21.39315],[77.56146,21.39646],[77.55344,21.4034],[77.54766,21.40532],[77.54829,21.41131],[77.54269,21.41115],[77.53591,21.4177],[77.53172,21.41915],[77.52924,21.4153],[77.52786,21.40563],[77.52473,21.40293],[77.52539,21.39565],[77.52329,21.38894],[77.51854,21.38392],[77.51671,21.38402],[77.51452,21.37594],[77.50221,21.37719],[77.48806,21.37436],[77.48987,21.37796],[77.48694,21.3859],[77.48751,21.40622],[77.47955,21.42025],[77.4766,21.43179],[77.47165,21.43613],[77.47435,21.44659],[77.47171,21.45029],[77.4736,21.45445],[77.46591,21.45982],[77.45982,21.46662],[77.44219,21.46991],[77.44147,21.47505],[77.43874,21.47865],[77.44219,21.48062],[77.44332,21.48725],[77.43539,21.49958],[77.42944,21.50471],[77.42231,21.51748],[77.42252,21.53256],[77.42556,21.53774],[77.44005,21.54478],[77.45009,21.54168],[77.45632,21.54623],[77.45412,21.54958],[77.45489,21.55384],[77.46619,21.55329],[77.47397,21.54952],[77.50519,21.55167],[77.5213,21.54097],[77.53722,21.53652],[77.54714,21.53672],[77.57523,21.52646],[77.59677,21.52711],[77.61148,21.53882],[77.60874,21.54819],[77.59529,21.55943],[77.58214,21.55378],[77.57711,21.55517],[77.57412,21.56469],[77.57464,21.57228],[77.57696,21.57729],[77.57545,21.58144],[77.57268,21.61598],[77.57552,21.62064],[77.5725,21.6287],[77.56417,21.64188],[77.5611,21.6673],[77.55386,21.67896],[77.55097,21.68078],[77.54767,21.69402],[77.5421,21.70614],[77.53322,21.71135],[77.52702,21.71091],[77.52402,21.71262],[77.5231,21.71972],[77.52555,21.72431],[77.51971,21.72524],[77.51196,21.7322],[77.5086,21.73821],[77.50454,21.73944],[77.50221,21.74342],[77.50259,21.74593],[77.49495,21.74831],[77.49051,21.74698],[77.47947,21.75415],[77.47974,21.75944],[77.47795,21.76283],[77.48217,21.76385],[77.48337,21.76595],[77.47909,21.76999],[77.46048,21.76342],[77.45629,21.76021],[77.42946,21.75771],[77.41707,21.75348],[77.40417,21.75242],[77.38124,21.75309],[77.3757,21.75492],[77.37305,21.75372],[77.35903,21.75415],[77.34568,21.75778],[77.32443,21.75274],[77.31579,21.75657],[77.29936,21.75596],[77.28989,21.76034],[77.28047,21.75858],[77.27973,21.75422],[77.28026,21.74908],[77.28729,21.74472],[77.28422,21.7369],[77.29114,21.73285],[77.28722,21.72192],[77.27926,21.72406],[77.27188,21.72814],[77.26756,21.72504],[77.26188,21.71229],[77.25147,21.7128],[77.24438,21.71643],[77.24249,21.7147],[77.23554,21.71635],[77.2323,21.71498],[77.22691,21.71679],[77.22775,21.69953],[77.22078,21.69651],[77.21883,21.69395],[77.21288,21.69501],[77.21042,21.68965],[77.20313,21.69277],[77.19889,21.69778],[77.18813,21.70171],[77.1913,21.71261],[77.19145,21.72075],[77.17603,21.72575],[77.1721,21.72485],[77.1696,21.72225],[77.16964,21.71429],[77.16512,21.71074],[77.14772,21.71252],[77.13919,21.71981],[77.12957,21.72224],[77.1173,21.72149],[77.10796,21.71829],[77.08654,21.71442],[77.07922,21.71994],[77.07322,21.71945],[77.06856,21.71579],[77.06247,21.70718],[77.04363,21.69977],[77.01501,21.68228],[77.00656,21.67914],[76.99649,21.67237],[76.9901,21.6649],[76.97641,21.65738],[76.97237,21.65135],[76.95323,21.64213],[76.94231,21.63209],[76.92836,21.6243],[76.91289,21.61176],[76.90995,21.60832],[76.90863,21.60275],[76.90162,21.59684],[76.89722,21.5961],[76.88569,21.60008],[76.86865,21.60876],[76.85449,21.61332],[76.8499,21.61211],[76.84471,21.6075],[76.8394,21.59331],[76.83291,21.58895],[76.82738,21.58829],[76.80065,21.59495],[76.79526,21.59391],[76.79105,21.58158],[76.784,21.57409],[76.78141,21.56472],[76.78174,21.55158],[76.7891,21.54067],[76.78933,21.53638],[76.78137,21.5293],[76.76881,21.52657],[76.76344,21.52077],[76.7729,21.50572],[76.78073,21.50559],[76.78421,21.50128],[76.78776,21.50114],[76.78767,21.49759],[76.79561,21.48958],[76.79377,21.47965],[76.79138,21.48008],[76.78785,21.47749],[76.78603,21.46582],[76.78402,21.46237],[76.78128,21.45934],[76.76181,21.4523],[76.75496,21.44557],[76.74443,21.43987],[76.73839,21.42969],[76.74102,21.42818],[76.73793,21.4222],[76.74054,21.41757],[76.73958,21.41413],[76.74095,21.41288],[76.73951,21.41056],[76.7262,21.40474],[76.68282,21.37841],[76.62175,21.33229],[76.64563,21.30108],[76.64738,21.30165],[76.65349,21.29352],[76.65482,21.28976],[76.66269,21.28068],[76.6629,21.27596],[76.66164,21.24071],[76.64968,21.24468],[76.64183,21.23713],[76.63481,21.2191],[76.63427,21.21368],[76.63722,21.20271],[76.62349,21.18504],[76.61388,21.19322],[76.60603,21.19034],[76.59955,21.19075],[76.56726,21.19939],[76.56069,21.19862],[76.55177,21.19207],[76.53578,21.18623],[76.53026,21.18193],[76.51102,21.18979],[76.50833,21.19303],[76.5072,21.18872],[76.50254,21.18746],[76.50096,21.18977],[76.5026,21.19321],[76.49878,21.19375],[76.4979,21.19128],[76.49337,21.19394],[76.48066,21.18216],[76.47873,21.14739],[76.46655,21.14266],[76.46823,21.13835],[76.47439,21.13698],[76.46945,21.13366],[76.45814,21.13328],[76.45642,21.12501],[76.45176,21.12125],[76.45537,21.11509],[76.45556,21.10807],[76.44105,21.1062],[76.43783,21.10047],[76.43017,21.10241],[76.4107,21.10244],[76.41262,21.09773],[76.41319,21.08842],[76.40794,21.08941],[76.40422,21.08744],[76.39033,21.08577],[76.38243,21.07962],[76.38424,21.07629],[76.37477,21.07255],[76.37096,21.07273],[76.36631,21.07606],[76.35142,21.07699],[76.33858,21.07152],[76.29985,21.07384],[76.28013,21.07069],[76.27263,21.08874],[76.26038,21.09058],[76.24497,21.09044],[76.23058,21.08833],[76.22466,21.08498],[76.21181,21.08738],[76.20463,21.08539],[76.19248,21.0867],[76.18589,21.08488],[76.18064,21.08031],[76.1674,21.07948],[76.16843,21.08567],[76.17385,21.08968],[76.17044,21.09388],[76.17089,21.10393],[76.16348,21.10488],[76.15862,21.1094],[76.15382,21.10805],[76.13793,21.11985],[76.13232,21.12744],[76.13163,21.1328],[76.13541,21.12921],[76.13715,21.13189],[76.14101,21.12971],[76.14247,21.13515],[76.1347,21.14266],[76.133,21.14823],[76.12838,21.15265],[76.12006,21.15547],[76.11656,21.1538],[76.11348,21.15539],[76.11141,21.16115],[76.11158,21.16677],[76.1138,21.16616],[76.11888,21.17159],[76.12283,21.17312],[76.12379,21.17182],[76.12926,21.17582],[76.13333,21.17596],[76.13386,21.16941],[76.16629,21.16951],[76.16798,21.16638],[76.17169,21.16656],[76.17146,21.17954],[76.1764,21.184],[76.17306,21.18857],[76.16521,21.19047],[76.16629,21.19972],[76.17161,21.19896],[76.17192,21.2053],[76.1697,21.20541],[76.1697,21.20665],[76.16334,21.20651],[76.16326,21.21313],[76.15864,21.21359],[76.16566,21.22162],[76.14204,21.22816],[76.14156,21.24099],[76.1454,21.24365],[76.15143,21.24353],[76.15061,21.2464],[76.15358,21.24622],[76.15226,21.24846],[76.155,21.24967],[76.15387,21.25193],[76.15733,21.25139],[76.15941,21.25359],[76.15936,21.25597],[76.15718,21.25961],[76.15559,21.25702],[76.15429,21.2577],[76.154,21.26513],[76.15193,21.26446],[76.15116,21.26799],[76.14848,21.26906],[76.14663,21.26787],[76.14293,21.28623],[76.12974,21.2867],[76.1259,21.29852],[76.12147,21.32337],[76.11894,21.32597],[76.11668,21.33495],[76.0966,21.37177],[76.04898,21.34972],[76.0305,21.36533],[75.98662,21.36877],[75.96306,21.38971],[75.95222,21.38958],[75.94171,21.38584],[75.92901,21.38659],[75.91066,21.38257],[75.90324,21.3917],[75.89419,21.39129],[75.89003,21.39471],[75.87035,21.39123],[75.86978,21.3864],[75.86415,21.3811],[75.86256,21.38216],[75.86246,21.37992],[75.85604,21.3802],[75.85571,21.38232],[75.85316,21.38338],[75.84794,21.38134],[75.84332,21.38195],[75.84139,21.38454],[75.83417,21.37957],[75.83336,21.37664],[75.83071,21.37696],[75.83073,21.37821],[75.81304,21.37906],[75.80273,21.38457],[75.80093,21.38335],[75.79042,21.3846],[75.78783,21.38281],[75.78646,21.38413],[75.77702,21.38452],[75.77382,21.38205],[75.75514,21.37938],[75.75113,21.38466],[75.73656,21.38827],[75.73253,21.38711],[75.72847,21.38868],[75.71877,21.38436],[75.71617,21.3856],[75.71576,21.38798],[75.70949,21.38619],[75.70324,21.38807],[75.6928,21.38369],[75.69223,21.38487],[75.68761,21.38408],[75.6848,21.38025],[75.67375,21.37708],[75.67009,21.37458],[75.66585,21.37745],[75.65922,21.37641],[75.65772,21.37877],[75.64817,21.37699],[75.64661,21.37874],[75.64127,21.37488],[75.63641,21.37742],[75.62303,21.37502],[75.62352,21.37708],[75.62002,21.37596],[75.6198,21.37897],[75.61667,21.38177],[75.61632,21.38809],[75.61051,21.3907],[75.60729,21.38895],[75.60694,21.39184],[75.60364,21.39123],[75.59921,21.38565],[75.59653,21.38771],[75.59169,21.38624],[75.58734,21.38923],[75.58155,21.38464],[75.57234,21.38247],[75.57145,21.37951],[75.57848,21.37895],[75.57994,21.37774],[75.57895,21.37648],[75.56577,21.37414],[75.56215,21.37629],[75.55717,21.37322],[75.5564,21.37461],[75.55827,21.37852],[75.55593,21.37903],[75.55242,21.3753],[75.54617,21.37242],[75.54645,21.36881],[75.54372,21.36853],[75.5412,21.36934],[75.54138,21.37341],[75.53502,21.37357],[75.53086,21.3787],[75.52551,21.38005],[75.52005,21.38702],[75.51201,21.38209],[75.49755,21.38751],[75.49416,21.38561],[75.47575,21.38658],[75.46794,21.39045],[75.45755,21.38745],[75.44933,21.39041],[75.44015,21.38446],[75.43118,21.38671],[75.42613,21.39101],[75.4204,21.38782],[75.40779,21.38738],[75.39792,21.37988],[75.39018,21.38087],[75.38244,21.37954],[75.37591,21.38661],[75.37541,21.39049],[75.37044,21.39209],[75.36597,21.39649],[75.35716,21.40087],[75.35563,21.40015],[75.35438,21.39316],[75.3516,21.39083],[75.33194,21.39136],[75.31541,21.38793],[75.30785,21.39279],[75.29874,21.38557],[75.29624,21.39023],[75.30013,21.3917],[75.29858,21.40122],[75.3011,21.40994],[75.29533,21.41357],[75.28737,21.41188],[75.28017,21.40723],[75.26422,21.4074],[75.25484,21.40189],[75.24907,21.40348],[75.2414,21.41155],[75.23465,21.41458],[75.2287,21.41426],[75.22119,21.40849],[75.21892,21.40834],[75.20692,21.41272],[75.17999,21.43055],[75.17012,21.43157],[75.12583,21.44926],[75.10716,21.46269],[75.10775,21.46667],[75.10195,21.47428],[75.09745,21.48819],[75.08846,21.50088],[75.08978,21.50346],[75.08921,21.51676],[75.08665,21.51585],[75.08682,21.51789],[75.05332,21.56482],[75.01502,21.56968],[75.01534,21.57523],[74.99906,21.58565],[74.97923,21.59524],[74.93534,21.60598],[74.91033,21.61457],[74.90168,21.62924],[74.89792,21.62826],[74.89139,21.63065],[74.89011,21.62929],[74.88733,21.63159],[74.88589,21.62941],[74.88402,21.63106],[74.87884,21.63008],[74.87803,21.62852],[74.87547,21.63074],[74.87199,21.62982],[74.87181,21.63182],[74.86798,21.63101],[74.8679,21.62848],[74.86538,21.62856],[74.86276,21.63445],[74.85668,21.6266],[74.84988,21.62388],[74.8381,21.62211],[74.83934,21.61881],[74.83133,21.61829],[74.8306,21.61171],[74.82886,21.60979],[74.82649,21.61141],[74.81959,21.6087],[74.81285,21.61078],[74.81232,21.61384],[74.80811,21.61223],[74.80687,21.61463],[74.80285,21.61411],[74.80217,21.6154],[74.79963,21.61435],[74.79808,21.60992],[74.78988,21.61276],[74.78287,21.61069],[74.77536,21.61549],[74.73412,21.62072],[74.70075,21.62758],[74.69989,21.63011],[74.69318,21.63281],[74.68746,21.63159],[74.68516,21.63365],[74.68396,21.6395],[74.67545,21.64472],[74.67747,21.64543],[74.67483,21.6465],[74.67104,21.64552],[74.66836,21.64828],[74.66488,21.6473],[74.66413,21.65253],[74.6224,21.65679],[74.61751,21.66047],[74.58208,21.66499],[74.58386,21.6733],[74.57987,21.68333],[74.56238,21.68343],[74.56238,21.68115],[74.5542,21.68136],[74.55416,21.68573],[74.55756,21.6874],[74.5549,21.69086],[74.55657,21.69282],[74.55538,21.69699],[74.55751,21.70427],[74.556,21.70432],[74.54737,21.7196],[74.53323,21.71689],[74.51386,21.71861],[74.50559,21.72631],[74.50802,21.72754],[74.50772,21.73168],[74.51107,21.73531],[74.51002,21.73743],[74.51204,21.74521],[74.50897,21.75],[74.51309,21.75658],[74.51163,21.75985],[74.51395,21.76569],[74.50972,21.77282],[74.50164,21.78152],[74.49821,21.79009],[74.49974,21.79239],[74.50021,21.80652],[74.50661,21.81638],[74.51001,21.82927],[74.51389,21.86266],[74.51364,21.88997],[74.5228,21.89909],[74.52421,21.91058],[74.51681,21.91582],[74.51266,21.9156],[74.50923,21.92064],[74.51256,21.93189],[74.50839,21.93734],[74.5,21.9393],[74.49712,21.94174],[74.49522,21.94681],[74.48908,21.94341],[74.48467,21.94581],[74.48449,21.94741],[74.49047,21.95123],[74.48873,21.95617],[74.48203,21.95475],[74.48159,21.95917],[74.47384,21.96104],[74.4691,21.95964],[74.46872,21.96108],[74.47137,21.96364],[74.46972,21.9671],[74.4676,21.96558],[74.46385,21.96607],[74.46109,21.96145],[74.45338,21.96194],[74.44451,21.97039],[74.44469,21.97548],[74.43939,21.97672],[74.43883,21.98717],[74.44146,21.99004],[74.43882,21.99089],[74.43978,21.99472],[74.43815,21.99734],[74.43309,21.99764],[74.43233,21.9994],[74.43798,22.00007],[74.44234,22.00318],[74.44536,22.0005],[74.44741,22.00063],[74.45219,22.00423],[74.45142,22.0059],[74.44916,22.00596],[74.44801,22.00919],[74.44363,22.01117],[74.44387,22.01663],[74.43874,22.02084],[74.44369,22.02241]],[[77.26759,18.45811],[77.27127,18.46577],[77.27215,18.47296],[77.27503,18.47773],[77.28051,18.47478],[77.28682,18.47436],[77.28915,18.4765],[77.29629,18.4771],[77.29995,18.47418],[77.29953,18.46488],[77.29613,18.46347],[77.29429,18.45875],[77.28898,18.45533],[77.28485,18.45612],[77.28022,18.45362],[77.27127,18.45397],[77.26747,18.45461],[77.26759,18.45811]],[[74.28485,15.83079],[74.29117,15.83214],[74.30337,15.80666],[74.31291,15.7982],[74.31176,15.79326],[74.30234,15.78746],[74.29787,15.79097],[74.29673,15.79414],[74.2933,15.79527],[74.28915,15.79142],[74.28982,15.78773],[74.28543,15.78795],[74.27486,15.79609],[74.27104,15.79502],[74.26647,15.7978],[74.26794,15.80027],[74.26619,15.80978],[74.26899,15.81657],[74.26166,15.82959],[74.27819,15.82928],[74.28485,15.83079]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-ML","area_level":"State","area_name":"Meghalaya","geometry_source":"SOI_States","same_as":"LGD/17/State"},"geometry":{"type":"Polygon","coordinates":[[[91.83382,26.11576],[91.83085,26.11844],[91.8254,26.11941],[91.8213,26.11751],[91.82023,26.11255],[91.81702,26.11115],[91.81014,26.10329],[91.80904,26.09779],[91.80562,26.09912],[91.80292,26.09526],[91.80035,26.10004],[91.79136,26.08523],[91.78586,26.08401],[91.78332,26.08809],[91.77728,26.08935],[91.763,26.07461],[91.76273,26.07235],[91.75707,26.07036],[91.75554,26.06793],[91.74315,26.0653],[91.74291,26.06303],[91.73106,26.05893],[91.73072,26.05758],[91.73349,26.05623],[91.7369,26.05625],[91.73471,26.05363],[91.73519,26.05132],[91.73298,26.05088],[91.7337,26.0492],[91.72535,26.04618],[91.72303,26.03513],[91.72504,26.0202],[91.72156,26.01219],[91.72172,26.0015],[91.71962,25.9929],[91.72153,25.98833],[91.72007,25.98177],[91.72111,25.96855],[91.71978,25.96583],[91.72252,25.96572],[91.72024,25.96085],[91.72011,25.9536],[91.71333,25.94573],[91.71348,25.94405],[91.7024,25.94127],[91.70113,25.93563],[91.69893,25.93501],[91.68943,25.92462],[91.68808,25.92021],[91.67884,25.91625],[91.6706,25.90415],[91.66342,25.90776],[91.65149,25.90628],[91.6365,25.92133],[91.63221,25.92179],[91.63056,25.92483],[91.62525,25.92608],[91.62432,25.92957],[91.62139,25.93222],[91.60947,25.93739],[91.61188,25.94503],[91.62289,25.94479],[91.62616,25.94219],[91.62982,25.94325],[91.6294,25.94715],[91.63436,25.96051],[91.64071,25.96376],[91.62825,25.97615],[91.62853,25.98244],[91.62606,25.98668],[91.62624,25.98887],[91.63023,25.99013],[91.62816,26.00074],[91.63135,26.0075],[91.63324,26.00849],[91.63275,26.01114],[91.6349,26.01214],[91.6316,26.01472],[91.63267,26.01655],[91.63118,26.01775],[91.6324,26.01902],[91.6311,26.02197],[91.62635,26.02213],[91.61953,26.02596],[91.60023,26.02161],[91.59753,26.01807],[91.59389,26.01978],[91.59407,26.02168],[91.58872,26.02956],[91.57984,26.03325],[91.57073,26.02568],[91.56919,26.01844],[91.57217,26.01536],[91.56363,26.00749],[91.56507,26.00201],[91.5606,26.00092],[91.55745,25.99274],[91.5517,25.98503],[91.55125,25.9766],[91.54673,25.97511],[91.5447,25.97591],[91.54272,25.97317],[91.53836,25.97141],[91.5354,25.96673],[91.53562,25.9623],[91.53036,25.96307],[91.52865,25.96064],[91.5253,25.96163],[91.52217,25.95947],[91.51808,25.95973],[91.51658,25.95571],[91.51982,25.93988],[91.51515,25.94123],[91.51381,25.93289],[91.50796,25.93228],[91.50675,25.92842],[91.50325,25.92683],[91.50177,25.92429],[91.50124,25.91886],[91.50447,25.91672],[91.50318,25.91415],[91.50467,25.91139],[91.50955,25.91721],[91.51299,25.91678],[91.51791,25.91966],[91.52276,25.92531],[91.53255,25.92989],[91.53658,25.93577],[91.53695,25.93121],[91.53302,25.92657],[91.52097,25.91906],[91.52057,25.91681],[91.50488,25.90777],[91.50421,25.90288],[91.49874,25.89599],[91.5039,25.89117],[91.49943,25.89119],[91.49191,25.89585],[91.484,25.89304],[91.47837,25.88747],[91.47784,25.88048],[91.47481,25.87402],[91.47604,25.87252],[91.47538,25.86988],[91.4912,25.86594],[91.51142,25.86534],[91.51383,25.86622],[91.52131,25.87511],[91.52129,25.88346],[91.52555,25.89091],[91.52772,25.89085],[91.53299,25.88815],[91.53519,25.88388],[91.53043,25.88163],[91.53043,25.87125],[91.52795,25.87316],[91.52236,25.87285],[91.51372,25.86397],[91.50342,25.86425],[91.49737,25.86109],[91.49577,25.86382],[91.48366,25.86417],[91.4779,25.85727],[91.46947,25.85916],[91.46308,25.857],[91.46178,25.85434],[91.44861,25.845],[91.44838,25.84189],[91.44515,25.83974],[91.43583,25.84356],[91.42817,25.85264],[91.42247,25.85447],[91.41346,25.85356],[91.40617,25.85006],[91.40273,25.8514],[91.39314,25.84759],[91.38114,25.84563],[91.3729,25.84672],[91.37105,25.84262],[91.36583,25.84003],[91.35774,25.84149],[91.35216,25.83856],[91.34672,25.84003],[91.34404,25.83712],[91.33535,25.84054],[91.33326,25.83675],[91.33432,25.83307],[91.32232,25.82153],[91.32075,25.81572],[91.31472,25.80959],[91.30971,25.79888],[91.30259,25.7899],[91.30185,25.78648],[91.29556,25.78018],[91.29456,25.77592],[91.29004,25.77264],[91.28863,25.7655],[91.27898,25.75736],[91.27454,25.75045],[91.26453,25.74585],[91.24552,25.7333],[91.22245,25.72256],[91.21012,25.72549],[91.19048,25.74783],[91.18894,25.75045],[91.18929,25.76395],[91.18416,25.76643],[91.18513,25.77199],[91.17826,25.77735],[91.1784,25.78016],[91.18207,25.7836],[91.18419,25.79889],[91.19044,25.81143],[91.18631,25.81836],[91.18937,25.82374],[91.19446,25.82728],[91.19468,25.83486],[91.19729,25.83524],[91.20364,25.84321],[91.19756,25.84954],[91.19583,25.86139],[91.1892,25.85171],[91.18399,25.8504],[91.18023,25.84397],[91.17362,25.8444],[91.1599,25.84995],[91.14755,25.85049],[91.13611,25.84263],[91.12946,25.84261],[91.12036,25.83293],[91.07714,25.82894],[91.06697,25.82573],[91.06213,25.82078],[91.04888,25.82927],[91.05297,25.83181],[91.05773,25.83177],[91.05937,25.83666],[91.06641,25.83886],[91.06773,25.83681],[91.07186,25.83876],[91.07324,25.84046],[91.07298,25.84589],[91.0785,25.85274],[91.06721,25.84663],[91.04822,25.8492],[91.03923,25.83689],[91.0325,25.835],[91.03208,25.83285],[91.02863,25.83116],[91.02245,25.82377],[91.00601,25.82038],[91.0014,25.8251],[91.00693,25.83249],[91.00798,25.83796],[91.01024,25.83733],[91.01221,25.84178],[91.01148,25.84591],[91.01531,25.8484],[91.01402,25.85687],[91.02791,25.86933],[91.03055,25.8858],[91.02522,25.88878],[91.01791,25.88456],[91.0106,25.88417],[91.00103,25.88582],[91.00066,25.88794],[90.97605,25.88967],[90.96886,25.88522],[90.96598,25.88844],[90.969,25.90375],[90.96662,25.91406],[90.95704,25.93496],[90.94614,25.94101],[90.94547,25.94487],[90.94743,25.94809],[90.93999,25.9473],[90.93386,25.93977],[90.92392,25.94287],[90.92194,25.94134],[90.91949,25.94445],[90.91734,25.94441],[90.91481,25.93589],[90.91557,25.93075],[90.91424,25.92571],[90.91543,25.9204],[90.91951,25.91522],[90.91684,25.91406],[90.90617,25.92502],[90.90529,25.9289],[90.89442,25.93118],[90.89745,25.93748],[90.89003,25.93807],[90.88966,25.94318],[90.88581,25.94492],[90.88453,25.95031],[90.88049,25.95049],[90.88108,25.94283],[90.87669,25.94942],[90.87169,25.94763],[90.87483,25.94255],[90.84847,25.94438],[90.84436,25.94597],[90.84234,25.94212],[90.83904,25.94131],[90.83547,25.93661],[90.83619,25.94842],[90.83291,25.94586],[90.8259,25.94869],[90.82441,25.9454],[90.81927,25.95032],[90.8162,25.94893],[90.80905,25.95244],[90.80788,25.95097],[90.80915,25.94741],[90.79638,25.94052],[90.78449,25.92513],[90.78532,25.92429],[90.78338,25.92177],[90.78117,25.91127],[90.77805,25.9112],[90.7781,25.90861],[90.76638,25.90764],[90.75668,25.91099],[90.75679,25.91343],[90.76067,25.91567],[90.76052,25.92188],[90.75107,25.91827],[90.74714,25.91554],[90.74531,25.91177],[90.74245,25.91239],[90.73898,25.91616],[90.74779,25.91886],[90.74696,25.92481],[90.75415,25.92943],[90.75463,25.93344],[90.75279,25.93427],[90.75139,25.9323],[90.75009,25.93301],[90.74672,25.92809],[90.7404,25.93939],[90.74776,25.9483],[90.74569,25.9519],[90.7481,25.95672],[90.74442,25.95506],[90.74282,25.95799],[90.73776,25.9557],[90.73833,25.95271],[90.73247,25.9521],[90.72447,25.94678],[90.71994,25.94879],[90.71901,25.95454],[90.71759,25.95494],[90.71385,25.95167],[90.70765,25.95208],[90.68833,25.94891],[90.67265,25.93464],[90.63164,25.91983],[90.62619,25.91335],[90.62613,25.90974],[90.63067,25.9095],[90.6308,25.90628],[90.62494,25.89826],[90.62187,25.89784],[90.6136,25.89932],[90.60627,25.91662],[90.61231,25.92566],[90.62312,25.93506],[90.62412,25.93918],[90.6049,25.94709],[90.59967,25.95513],[90.59069,25.95606],[90.58787,25.95807],[90.58382,25.956],[90.57977,25.95127],[90.57706,25.94451],[90.57673,25.93675],[90.55242,25.92275],[90.54888,25.9214],[90.5438,25.92359],[90.54448,25.92055],[90.54838,25.9192],[90.55006,25.91684],[90.54912,25.91543],[90.53814,25.91375],[90.53749,25.9112],[90.52642,25.90484],[90.52139,25.89848],[90.51498,25.8961],[90.50855,25.9015],[90.518,25.91568],[90.52069,25.92597],[90.53416,25.93896],[90.535,25.94959],[90.5318,25.95601],[90.52046,25.97052],[90.50964,25.98049],[90.50254,25.99146],[90.48866,26.00339],[90.47613,26.00959],[90.44374,25.99597],[90.43747,25.99172],[90.43328,25.99132],[90.43022,25.98895],[90.4241,25.98888],[90.41684,25.9915],[90.41549,25.99882],[90.41115,26.00042],[90.40539,26.00898],[90.39975,26.01252],[90.37218,26.01127],[90.35274,26.00561],[90.34971,26.00413],[90.34671,25.99785],[90.34307,25.99631],[90.34036,25.98834],[90.33153,25.98765],[90.33105,25.98269],[90.32742,25.97437],[90.27058,25.96031],[90.21149,25.95259],[90.20994,25.95966],[90.20287,25.96086],[90.19983,25.95695],[90.19242,25.95525],[90.19083,25.95121],[90.18739,25.94987],[90.18691,25.94685],[90.18876,25.94583],[90.18688,25.94409],[90.1808,25.94977],[90.17859,25.95522],[90.17721,25.95527],[90.17692,25.95895],[90.16576,25.95576],[90.15847,25.95715],[90.15141,25.96667],[90.14382,25.96014],[90.13938,25.95964],[90.14054,25.9573],[90.13172,25.95874],[90.11978,25.9541],[90.12054,25.95783],[90.11685,25.95722],[90.10756,25.94914],[90.1049,25.94452],[90.10669,25.94231],[90.10108,25.94323],[90.10137,25.94023],[90.098,25.93741],[90.09211,25.93807],[90.09409,25.92782],[90.09113,25.92848],[90.08795,25.92555],[90.08542,25.92547],[90.08624,25.91947],[90.07591,25.91489],[90.07251,25.91852],[90.07054,25.91843],[90.06705,25.91299],[90.06055,25.91346],[90.06242,25.91022],[90.05558,25.90574],[90.05652,25.9032],[90.05544,25.90057],[90.04767,25.89982],[90.04644,25.89591],[90.04138,25.89407],[90.04344,25.89209],[90.04249,25.88767],[90.03419,25.89172],[90.03389,25.8944],[90.02523,25.89569],[90.01937,25.89208],[90.01386,25.88494],[90.01107,25.88461],[90.00809,25.88161],[90.00563,25.87847],[90.01428,25.87188],[90.01949,25.87315],[90.02382,25.86722],[90.02233,25.86014],[90.01912,25.85592],[90.01703,25.85622],[90.01745,25.85307],[90.01575,25.85073],[90.00782,25.84517],[90.0007,25.8462],[89.99894,25.84279],[90.004,25.8413],[90.00359,25.83924],[89.99126,25.83496],[89.98145,25.83551],[89.97793,25.83222],[89.9778,25.82793],[89.97109,25.82637],[89.96791,25.82777],[89.96587,25.83243],[89.96397,25.83306],[89.9637,25.82823],[89.96765,25.82252],[89.962,25.82019],[89.95416,25.82127],[89.95403,25.82504],[89.9587,25.82593],[89.95768,25.82911],[89.94826,25.82547],[89.9483,25.82352],[89.95106,25.82106],[89.94854,25.81509],[89.95584,25.81119],[89.95452,25.80391],[89.95843,25.80128],[89.95528,25.79653],[89.95439,25.78797],[89.95935,25.77993],[89.95536,25.77776],[89.95761,25.77539],[89.95478,25.76718],[89.94205,25.75584],[89.93523,25.75449],[89.93774,25.74822],[89.93728,25.74512],[89.92816,25.73904],[89.92428,25.73834],[89.90006,25.74706],[89.89474,25.74497],[89.8944,25.73494],[89.89569,25.73155],[89.89867,25.72957],[89.89913,25.72642],[89.9026,25.72526],[89.91348,25.70856],[89.91871,25.70515],[89.92358,25.69449],[89.93627,25.68975],[89.93752,25.68587],[89.94442,25.67926],[89.94292,25.67223],[89.94744,25.67103],[89.94544,25.66788],[89.94715,25.66615],[89.94674,25.66187],[89.95045,25.6556],[89.96293,25.64948],[89.96485,25.6468],[89.97916,25.63878],[89.98335,25.63055],[89.98318,25.62679],[89.99175,25.62408],[89.99519,25.62465],[89.99882,25.6224],[90.00412,25.62674],[90.00697,25.62332],[90.00421,25.62024],[90.00925,25.61919],[90.00984,25.61549],[90.01639,25.6098],[90.01859,25.61133],[90.0176,25.60788],[90.02025,25.60749],[90.01742,25.60502],[90.01685,25.60187],[90.01098,25.60156],[90.01112,25.59669],[90.003,25.58542],[89.99556,25.58624],[89.98771,25.59155],[89.9835,25.59125],[89.97854,25.58696],[89.97542,25.57611],[89.97216,25.57349],[89.9605,25.57445],[89.9538,25.57079],[89.94106,25.56826],[89.93687,25.5644],[89.91225,25.56317],[89.90959,25.56045],[89.90747,25.56135],[89.90157,25.55894],[89.89865,25.56051],[89.89191,25.55557],[89.8853,25.55499],[89.87717,25.54899],[89.87495,25.54373],[89.87883,25.5377],[89.86808,25.52987],[89.86794,25.52424],[89.86883,25.52149],[89.87149,25.52192],[89.87174,25.51853],[89.87347,25.51945],[89.87335,25.51689],[89.87734,25.51962],[89.87995,25.518],[89.88349,25.51911],[89.8807,25.51674],[89.88411,25.51424],[89.88594,25.50792],[89.87287,25.50742],[89.87681,25.5008],[89.87669,25.4955],[89.87228,25.48594],[89.87169,25.47735],[89.86543,25.47169],[89.85149,25.46549],[89.84301,25.45646],[89.83272,25.43875],[89.82543,25.41335],[89.82707,25.40154],[89.81959,25.38038],[89.82125,25.37424],[89.82144,25.35552],[89.8233,25.34823],[89.8268,25.34676],[89.83211,25.33243],[89.83831,25.32342],[89.8414,25.31479],[89.84161,25.30815],[89.83727,25.30532],[89.83769,25.30236],[89.83118,25.29603],[89.84478,25.29242],[89.84857,25.28938],[89.85397,25.28942],[89.85931,25.28602],[89.8632,25.2879],[89.8766,25.28533],[89.88519,25.28798],[89.88695,25.29164],[89.89009,25.29196],[89.89263,25.29808],[89.89537,25.29919],[89.89923,25.30465],[89.907,25.30773],[89.91455,25.30703],[89.92353,25.30428],[89.9271,25.30133],[89.93903,25.29904],[89.94392,25.30436],[89.94567,25.30286],[89.94695,25.29472],[89.94924,25.29271],[89.9545,25.301],[89.96396,25.30188],[89.96665,25.3037],[89.97708,25.29679],[89.98038,25.29068],[89.98076,25.28085],[89.996,25.27664],[90.00422,25.28055],[90.03376,25.26226],[90.04672,25.26063],[90.05452,25.26136],[90.05954,25.25464],[90.07414,25.24395],[90.0813,25.24037],[90.09426,25.23733],[90.10535,25.22925],[90.11811,25.22346],[90.12813,25.22563],[90.17147,25.22306],[90.18803,25.21512],[90.19196,25.21506],[90.19595,25.21103],[90.20789,25.21021],[90.21521,25.20539],[90.21942,25.20666],[90.22553,25.20047],[90.22867,25.20329],[90.23399,25.2049],[90.249,25.20011],[90.2555,25.19979],[90.25999,25.19711],[90.26406,25.19625],[90.26814,25.19841],[90.28159,25.19531],[90.28655,25.19568],[90.31043,25.18877],[90.31665,25.19286],[90.32339,25.19215],[90.33024,25.19382],[90.33674,25.18948],[90.34676,25.17834],[90.37046,25.16284],[90.40022,25.15898],[90.40448,25.15995],[90.41873,25.15058],[90.44108,25.14451],[90.44639,25.14478],[90.44942,25.14662],[90.45085,25.15239],[90.46355,25.1542],[90.48588,25.16107],[90.48851,25.16411],[90.49926,25.1686],[90.49905,25.17217],[90.50986,25.16942],[90.50864,25.17535],[90.51866,25.17219],[90.52595,25.17382],[90.5353,25.17331],[90.53803,25.17528],[90.54556,25.1736],[90.55134,25.17523],[90.55498,25.17168],[90.55977,25.17354],[90.56409,25.17143],[90.56474,25.17335],[90.56977,25.1736],[90.57598,25.17164],[90.57895,25.17476],[90.58624,25.17349],[90.58787,25.17651],[90.59355,25.17514],[90.59939,25.17654],[90.60468,25.17463],[90.60472,25.17638],[90.60736,25.17614],[90.60939,25.17911],[90.61267,25.17698],[90.61388,25.17367],[90.61648,25.17737],[90.61828,25.17254],[90.62042,25.1744],[90.62518,25.17414],[90.62705,25.17222],[90.63205,25.17355],[90.63456,25.17603],[90.64094,25.17453],[90.64189,25.17667],[90.63879,25.18008],[90.64035,25.18359],[90.64599,25.18083],[90.65114,25.18202],[90.65238,25.18687],[90.65139,25.1881],[90.65256,25.18859],[90.64765,25.19409],[90.64884,25.19488],[90.65238,25.19224],[90.65695,25.18476],[90.66122,25.18904],[90.66342,25.19785],[90.66513,25.19633],[90.66255,25.19158],[90.66379,25.18833],[90.66277,25.18555],[90.66501,25.18417],[90.66545,25.18073],[90.66341,25.17881],[90.66515,25.17627],[90.66381,25.17286],[90.66655,25.1695],[90.66601,25.1658],[90.66995,25.16626],[90.67439,25.17637],[90.67565,25.17638],[90.67515,25.17249],[90.681,25.17232],[90.68617,25.17427],[90.68551,25.17224],[90.68052,25.16932],[90.68215,25.16425],[90.68371,25.16323],[90.68687,25.16483],[90.68993,25.16415],[90.69174,25.16087],[90.69504,25.16002],[90.69807,25.15683],[90.70059,25.15932],[90.69929,25.16116],[90.70064,25.16481],[90.70236,25.16206],[90.70656,25.16109],[90.70784,25.16607],[90.70998,25.16812],[90.71477,25.16757],[90.7175,25.16376],[90.7224,25.1647],[90.72567,25.16311],[90.72662,25.15806],[90.73147,25.15738],[90.73193,25.15498],[90.73328,25.15491],[90.73448,25.15817],[90.73914,25.15767],[90.74193,25.16125],[90.73788,25.16432],[90.73319,25.16202],[90.73422,25.16685],[90.73969,25.16667],[90.73992,25.16929],[90.74186,25.17024],[90.74208,25.16587],[90.74762,25.164],[90.74943,25.16691],[90.75666,25.16976],[90.7576,25.16816],[90.75858,25.16944],[90.75905,25.16782],[90.76041,25.1682],[90.76177,25.16989],[90.75891,25.17245],[90.76326,25.17593],[90.76383,25.17831],[90.76916,25.18261],[90.77552,25.18195],[90.78036,25.18612],[90.78156,25.18071],[90.7842,25.18128],[90.78401,25.17932],[90.78747,25.17873],[90.79473,25.18127],[90.79877,25.17432],[90.8027,25.17274],[90.80546,25.17363],[90.80416,25.16947],[90.80591,25.16594],[90.814,25.16369],[90.81557,25.16394],[90.81385,25.16751],[90.81793,25.16756],[90.81955,25.16261],[90.83664,25.16087],[90.84083,25.16107],[90.84074,25.16432],[90.84201,25.16431],[90.84442,25.15846],[90.84982,25.15764],[90.85419,25.15913],[90.85868,25.15774],[90.85989,25.15833],[90.85811,25.15954],[90.85944,25.16016],[90.86202,25.15763],[90.86592,25.16108],[90.87219,25.15978],[90.87511,25.16351],[90.88399,25.16672],[90.89453,25.16459],[90.89729,25.16626],[90.90462,25.16188],[90.91884,25.16334],[90.92801,25.16222],[90.9465,25.16756],[90.94882,25.17079],[90.96539,25.1709],[90.9731,25.17507],[90.97733,25.17401],[90.98474,25.17498],[91.00197,25.1813],[91.00611,25.18026],[91.00944,25.1832],[91.01878,25.18382],[91.01911,25.18697],[91.03041,25.18511],[91.03839,25.18626],[91.03955,25.18852],[91.04161,25.18764],[91.04997,25.18973],[91.05515,25.19243],[91.06788,25.19153],[91.07188,25.19336],[91.06964,25.19841],[91.12525,25.194],[91.13966,25.19638],[91.15609,25.19621],[91.16032,25.19778],[91.16484,25.19585],[91.19468,25.20182],[91.22327,25.19901],[91.22449,25.20016],[91.23042,25.19689],[91.23326,25.1991],[91.23638,25.19903],[91.23678,25.19696],[91.24734,25.19776],[91.25163,25.19517],[91.25151,25.19912],[91.25979,25.20102],[91.26027,25.2051],[91.26801,25.20724],[91.27618,25.19905],[91.29223,25.19332],[91.28868,25.19012],[91.28657,25.18535],[91.28844,25.18649],[91.29248,25.1838],[91.30013,25.18424],[91.30446,25.1826],[91.31778,25.18367],[91.32432,25.18073],[91.32703,25.17618],[91.33197,25.1774],[91.33752,25.17349],[91.35159,25.17581],[91.35375,25.17126],[91.36098,25.1778],[91.36382,25.17807],[91.3688,25.17062],[91.37642,25.16795],[91.38626,25.16995],[91.38856,25.16757],[91.39865,25.16446],[91.40677,25.16611],[91.41087,25.16366],[91.41286,25.16733],[91.41214,25.16942],[91.41465,25.17113],[91.42261,25.16219],[91.42512,25.15699],[91.43268,25.1568],[91.43718,25.15412],[91.44058,25.14963],[91.44335,25.15069],[91.4496,25.14916],[91.4508,25.15204],[91.45314,25.1526],[91.45702,25.14824],[91.46109,25.15122],[91.46863,25.15179],[91.46951,25.15082],[91.467,25.14379],[91.47045,25.13971],[91.46526,25.13719],[91.46423,25.13481],[91.47102,25.13359],[91.47821,25.13379],[91.47979,25.1353],[91.47801,25.13647],[91.48229,25.13711],[91.48929,25.1351],[91.49195,25.13886],[91.49368,25.13854],[91.49251,25.13687],[91.4996,25.13542],[91.50163,25.14005],[91.50105,25.14306],[91.50955,25.14745],[91.51706,25.14777],[91.5265,25.1445],[91.55721,25.14976],[91.55812,25.15551],[91.56307,25.16064],[91.56695,25.15931],[91.57131,25.1609],[91.57658,25.15982],[91.57157,25.16527],[91.57706,25.17196],[91.58917,25.17167],[91.59207,25.17434],[91.60551,25.17364],[91.60973,25.17705],[91.61518,25.17472],[91.61543,25.16966],[91.60861,25.16983],[91.60406,25.16745],[91.59998,25.1596],[91.60363,25.15901],[91.60264,25.15488],[91.59941,25.15107],[91.60209,25.14272],[91.60377,25.14018],[91.60704,25.14474],[91.61112,25.14627],[91.61226,25.14097],[91.61545,25.14511],[91.62151,25.14341],[91.6232,25.12788],[91.62699,25.12543],[91.63791,25.12254],[91.64206,25.12307],[91.64544,25.12721],[91.65179,25.12745],[91.65277,25.1312],[91.65888,25.13148],[91.66002,25.12704],[91.66503,25.12843],[91.66401,25.13523],[91.66994,25.1379],[91.67564,25.13805],[91.6807,25.13498],[91.68629,25.13773],[91.6918,25.13712],[91.69423,25.14038],[91.69443,25.14548],[91.6988,25.14618],[91.70103,25.15058],[91.70223,25.14893],[91.70355,25.14949],[91.70322,25.15347],[91.7005,25.15573],[91.70378,25.16002],[91.7055,25.15692],[91.70834,25.15909],[91.71434,25.15763],[91.71655,25.15233],[91.73297,25.15022],[91.73176,25.14817],[91.73274,25.14781],[91.73549,25.14973],[91.73637,25.1434],[91.74764,25.14015],[91.74247,25.1446],[91.74407,25.14656],[91.74468,25.15316],[91.74864,25.15618],[91.74983,25.15922],[91.74469,25.16985],[91.74733,25.17399],[91.75603,25.1775],[91.75489,25.17176],[91.75856,25.16837],[91.76354,25.16629],[91.76634,25.16748],[91.77461,25.16313],[91.78837,25.16742],[91.79725,25.16881],[91.80636,25.1682],[91.80707,25.16973],[91.80387,25.17018],[91.80421,25.17177],[91.81765,25.17121],[91.82304,25.17679],[91.8266,25.1762],[91.82704,25.1778],[91.84079,25.1769],[91.8556,25.17249],[91.86152,25.17245],[91.86441,25.17529],[91.87091,25.17431],[91.87598,25.17744],[91.87615,25.17558],[91.88063,25.17292],[91.88449,25.1771],[91.89248,25.17594],[91.8947,25.17624],[91.89388,25.17835],[91.89739,25.17807],[91.89851,25.18008],[91.90742,25.17931],[91.91626,25.18135],[91.93232,25.17942],[91.93289,25.18051],[91.93413,25.17808],[91.96682,25.17638],[91.97167,25.16758],[91.9834,25.17095],[91.99856,25.18401],[92.00376,25.18616],[92.01643,25.18721],[92.01845,25.1827],[92.02619,25.17917],[92.02791,25.18342],[92.03899,25.18231],[92.04055,25.18637],[92.04733,25.18536],[92.04934,25.18538],[92.04938,25.18696],[92.05432,25.18644],[92.05543,25.18426],[92.05601,25.18542],[92.07385,25.18495],[92.07885,25.18096],[92.08323,25.18227],[92.0923,25.17754],[92.10445,25.17463],[92.10526,25.17259],[92.10772,25.1726],[92.10905,25.17035],[92.11795,25.16656],[92.12044,25.16383],[92.13288,25.16015],[92.13286,25.15634],[92.13974,25.15376],[92.13791,25.15189],[92.13408,25.15266],[92.1356,25.15151],[92.13389,25.14833],[92.13519,25.1456],[92.1344,25.14278],[92.14457,25.13966],[92.13955,25.13985],[92.13956,25.14094],[92.13584,25.13874],[92.14736,25.13525],[92.15084,25.13823],[92.15319,25.13621],[92.1527,25.13368],[92.15557,25.13322],[92.16256,25.13621],[92.16568,25.13596],[92.16296,25.1334],[92.15887,25.13299],[92.15945,25.13002],[92.1649,25.13046],[92.15959,25.1266],[92.16479,25.12539],[92.17092,25.12858],[92.17261,25.12675],[92.17624,25.12632],[92.17682,25.12385],[92.17889,25.12613],[92.17936,25.12401],[92.17673,25.12286],[92.18393,25.11792],[92.18863,25.12782],[92.18907,25.13215],[92.1876,25.13264],[92.18933,25.13629],[92.19526,25.13006],[92.1945,25.12564],[92.19696,25.12631],[92.20558,25.12362],[92.21938,25.11701],[92.2197,25.11515],[92.2004,25.11998],[92.20052,25.11729],[92.19617,25.10803],[92.20276,25.10637],[92.20699,25.10867],[92.22186,25.10404],[92.22354,25.10242],[92.22307,25.0982],[92.22755,25.09371],[92.23136,25.09689],[92.25531,25.08525],[92.26676,25.08321],[92.27106,25.08076],[92.27565,25.08088],[92.2784,25.07766],[92.28157,25.07934],[92.28378,25.07654],[92.28747,25.07745],[92.2996,25.07168],[92.30505,25.07048],[92.30651,25.07196],[92.30587,25.0705],[92.31063,25.06902],[92.31411,25.07195],[92.31915,25.06989],[92.31896,25.07424],[92.32236,25.0783],[92.32887,25.07743],[92.33209,25.07909],[92.33838,25.07571],[92.34855,25.07349],[92.34898,25.06091],[92.33818,25.05152],[92.3392,25.05046],[92.3424,25.05422],[92.33931,25.05035],[92.34148,25.04853],[92.34605,25.04905],[92.34743,25.04767],[92.35005,25.0495],[92.35095,25.04836],[92.35429,25.04944],[92.35441,25.04778],[92.35671,25.04744],[92.3566,25.05001],[92.35811,25.05012],[92.35844,25.04721],[92.36076,25.04672],[92.36298,25.04989],[92.3684,25.04621],[92.36906,25.04371],[92.36779,25.04239],[92.36971,25.04088],[92.37087,25.04271],[92.37486,25.04359],[92.37395,25.04254],[92.37691,25.0428],[92.37945,25.03952],[92.38107,25.03974],[92.38063,25.04141],[92.38127,25.03916],[92.38262,25.04047],[92.38327,25.03849],[92.38383,25.04236],[92.3882,25.03972],[92.3928,25.03978],[92.39908,25.03278],[92.4005,25.03408],[92.40229,25.03182],[92.40513,25.03263],[92.41255,25.02873],[92.41698,25.03029],[92.42149,25.0278],[92.42374,25.03002],[92.42925,25.02915],[92.43223,25.03513],[92.43819,25.03465],[92.43828,25.04387],[92.44253,25.04524],[92.44731,25.04333],[92.44907,25.04057],[92.45277,25.04075],[92.45981,25.03704],[92.46429,25.03744],[92.46298,25.03958],[92.46429,25.04362],[92.46238,25.04813],[92.46051,25.04873],[92.45705,25.04667],[92.45698,25.05407],[92.46023,25.05729],[92.46366,25.05494],[92.46357,25.05808],[92.46535,25.05867],[92.46843,25.06589],[92.47203,25.06725],[92.47202,25.07463],[92.47062,25.0764],[92.47535,25.07777],[92.47411,25.08197],[92.47758,25.08255],[92.47716,25.08501],[92.47941,25.08661],[92.47731,25.09078],[92.47743,25.10019],[92.4808,25.10847],[92.49102,25.10769],[92.49696,25.10951],[92.50892,25.10422],[92.51995,25.10594],[92.52782,25.104],[92.53052,25.10031],[92.53396,25.09898],[92.53942,25.09905],[92.5231,25.12597],[92.52265,25.13303],[92.52067,25.13648],[92.52162,25.13903],[92.52344,25.13894],[92.5249,25.13519],[92.53836,25.13349],[92.55536,25.12695],[92.56061,25.13032],[92.56818,25.12824],[92.57661,25.13099],[92.5832,25.12811],[92.58808,25.12878],[92.59282,25.12589],[92.59501,25.1222],[92.6089,25.12262],[92.61632,25.1158],[92.62143,25.11503],[92.62888,25.12618],[92.62729,25.13095],[92.62831,25.1381],[92.63868,25.14773],[92.65209,25.1523],[92.65576,25.15495],[92.65802,25.15884],[92.65843,25.17195],[92.66348,25.17667],[92.66796,25.17408],[92.66863,25.17656],[92.67724,25.18254],[92.68338,25.17954],[92.6939,25.17924],[92.70262,25.18838],[92.70924,25.19007],[92.71614,25.19578],[92.73722,25.20054],[92.74287,25.20665],[92.7468,25.20651],[92.75484,25.20183],[92.76281,25.20159],[92.76747,25.20349],[92.77621,25.19961],[92.78192,25.20325],[92.78605,25.20935],[92.79503,25.20975],[92.80291,25.21617],[92.80152,25.22024],[92.78911,25.22468],[92.78203,25.23016],[92.77167,25.22998],[92.77016,25.23733],[92.76189,25.24653],[92.76263,25.24927],[92.76646,25.25214],[92.77118,25.25099],[92.77497,25.252],[92.77775,25.25818],[92.7692,25.26559],[92.76862,25.26812],[92.77665,25.27003],[92.77974,25.27353],[92.78749,25.27409],[92.7925,25.28256],[92.7873,25.29003],[92.78723,25.29621],[92.78343,25.29944],[92.78132,25.30498],[92.78154,25.30769],[92.78693,25.31437],[92.7818,25.33318],[92.76991,25.33821],[92.76373,25.33358],[92.76107,25.33352],[92.75593,25.33864],[92.7546,25.34238],[92.7499,25.3441],[92.74995,25.34994],[92.74641,25.35833],[92.73955,25.36131],[92.73879,25.36695],[92.73236,25.36892],[92.73326,25.37272],[92.73802,25.37933],[92.72375,25.37882],[92.71794,25.37263],[92.70988,25.38451],[92.70176,25.38448],[92.69828,25.38632],[92.69283,25.39767],[92.68815,25.40208],[92.67778,25.40702],[92.67353,25.41402],[92.66752,25.41483],[92.66353,25.4065],[92.66164,25.40635],[92.65641,25.41154],[92.6519,25.41924],[92.65146,25.42584],[92.65442,25.4326],[92.65362,25.43352],[92.64708,25.42824],[92.63956,25.41757],[92.63672,25.42141],[92.63584,25.42732],[92.62565,25.43492],[92.62525,25.43114],[92.62838,25.42388],[92.62764,25.42197],[92.62461,25.42092],[92.61858,25.423],[92.6151,25.42111],[92.61126,25.41517],[92.60663,25.41323],[92.6045,25.4209],[92.60698,25.42763],[92.60307,25.43513],[92.60461,25.4476],[92.59761,25.45067],[92.60045,25.46475],[92.59861,25.46814],[92.59564,25.4702],[92.59189,25.47042],[92.58411,25.4656],[92.58259,25.47107],[92.58036,25.47208],[92.57446,25.46626],[92.56881,25.4637],[92.56655,25.46336],[92.56467,25.46548],[92.56436,25.47361],[92.57365,25.49048],[92.59109,25.50115],[92.5973,25.50246],[92.5999,25.50635],[92.60908,25.51181],[92.6202,25.51606],[92.62769,25.52197],[92.63191,25.52774],[92.63776,25.53024],[92.64284,25.53481],[92.64206,25.54158],[92.64542,25.55574],[92.65679,25.56085],[92.65748,25.56975],[92.66146,25.57219],[92.65831,25.57406],[92.65865,25.57813],[92.65338,25.59061],[92.64947,25.5922],[92.64171,25.58851],[92.63431,25.5813],[92.63017,25.57167],[92.62278,25.56572],[92.61208,25.56277],[92.60246,25.56222],[92.59998,25.55504],[92.59482,25.55159],[92.58996,25.5526],[92.58407,25.55045],[92.58236,25.55763],[92.57542,25.55851],[92.57249,25.55735],[92.55673,25.57096],[92.55622,25.57665],[92.55877,25.58012],[92.55494,25.58457],[92.55432,25.5883],[92.55467,25.59533],[92.55659,25.59648],[92.55332,25.59739],[92.55439,25.59957],[92.55217,25.60254],[92.55548,25.60178],[92.55673,25.61141],[92.5541,25.61303],[92.55417,25.6148],[92.53922,25.61158],[92.53886,25.61358],[92.53585,25.61315],[92.53338,25.61495],[92.51643,25.61506],[92.51507,25.61834],[92.50948,25.61559],[92.50563,25.61631],[92.50609,25.6214],[92.4972,25.62439],[92.47033,25.67515],[92.46797,25.67552],[92.46327,25.68101],[92.45532,25.68492],[92.45031,25.68529],[92.44065,25.6916],[92.43789,25.7058],[92.44036,25.70824],[92.44399,25.70736],[92.4477,25.70901],[92.44429,25.7197],[92.43294,25.72696],[92.43118,25.73218],[92.42205,25.7299],[92.41165,25.73003],[92.40912,25.73375],[92.41458,25.73996],[92.41432,25.74146],[92.40718,25.74187],[92.40803,25.74349],[92.40662,25.7446],[92.39766,25.74045],[92.38784,25.74415],[92.38178,25.74204],[92.38205,25.74632],[92.38543,25.75051],[92.38402,25.75452],[92.37869,25.74839],[92.37376,25.75041],[92.36894,25.74729],[92.36427,25.73735],[92.36093,25.73665],[92.35324,25.73975],[92.34583,25.72918],[92.33351,25.72412],[92.32416,25.72472],[92.31695,25.72242],[92.31134,25.72789],[92.30213,25.72086],[92.29715,25.71998],[92.29301,25.71645],[92.27715,25.71547],[92.27128,25.71126],[92.26437,25.70909],[92.25485,25.7126],[92.25114,25.71082],[92.24734,25.71314],[92.23876,25.7106],[92.23445,25.70758],[92.23286,25.70886],[92.23168,25.71594],[92.22503,25.71609],[92.22113,25.71327],[92.21685,25.70481],[92.20986,25.69917],[92.20809,25.69557],[92.20081,25.69227],[92.19707,25.68675],[92.1883,25.68441],[92.17997,25.67807],[92.17748,25.67431],[92.17343,25.67414],[92.1702,25.66713],[92.16596,25.66634],[92.1607,25.66884],[92.15615,25.67218],[92.1596,25.67624],[92.16053,25.68412],[92.15598,25.69167],[92.15684,25.69582],[92.15465,25.69788],[92.15478,25.70621],[92.15241,25.70861],[92.15083,25.70778],[92.14773,25.70946],[92.14425,25.71681],[92.14817,25.72527],[92.15445,25.72501],[92.16191,25.73663],[92.16271,25.74086],[92.16282,25.74387],[92.15556,25.75112],[92.15543,25.7574],[92.15025,25.76361],[92.15092,25.76655],[92.14782,25.77295],[92.15266,25.778],[92.14636,25.78412],[92.14996,25.79489],[92.1487,25.80594],[92.15258,25.81178],[92.1511,25.81664],[92.15575,25.81889],[92.15695,25.82158],[92.16023,25.81979],[92.16128,25.82059],[92.16235,25.82724],[92.16081,25.83061],[92.16417,25.83301],[92.16202,25.83554],[92.16623,25.83529],[92.16981,25.83886],[92.17301,25.84718],[92.17261,25.8499],[92.1775,25.8515],[92.17759,25.8581],[92.1801,25.85823],[92.1762,25.8682],[92.17724,25.87275],[92.18363,25.87688],[92.18755,25.8772],[92.19901,25.88899],[92.21498,25.8953],[92.2157,25.89995],[92.22085,25.90026],[92.22281,25.90639],[92.22556,25.90917],[92.21727,25.9115],[92.20443,25.90914],[92.20228,25.90633],[92.20105,25.90845],[92.19404,25.91167],[92.19633,25.91575],[92.19453,25.91846],[92.18947,25.91457],[92.18608,25.91663],[92.18173,25.91126],[92.17656,25.91042],[92.17757,25.90885],[92.17555,25.90737],[92.16242,25.91116],[92.15474,25.91099],[92.15461,25.91377],[92.15682,25.91463],[92.16093,25.92815],[92.15922,25.93322],[92.16015,25.93532],[92.15252,25.93959],[92.15244,25.94432],[92.1571,25.94919],[92.1573,25.95263],[92.16405,25.95781],[92.16152,25.96025],[92.16213,25.96656],[92.16421,25.97028],[92.16932,25.97338],[92.17441,25.9739],[92.17872,25.97742],[92.18088,25.98501],[92.18469,25.9858],[92.18846,25.98455],[92.19855,25.98822],[92.19631,25.99085],[92.19754,25.99456],[92.20101,25.99516],[92.20385,26.00122],[92.20915,25.99792],[92.2119,26.00455],[92.21911,26.00389],[92.22032,26.00569],[92.2248,26.00599],[92.22775,26.00856],[92.23387,26.00912],[92.23504,26.01223],[92.24452,26.01819],[92.24286,26.02039],[92.24373,26.02152],[92.24858,26.02338],[92.25329,26.029],[92.25681,26.0287],[92.26347,26.03313],[92.26508,26.0361],[92.26108,26.04164],[92.26901,26.04282],[92.27003,26.04745],[92.26814,26.05143],[92.26357,26.05431],[92.26395,26.05736],[92.26949,26.06057],[92.27061,26.06404],[92.27489,26.06565],[92.27166,26.06523],[92.26888,26.06817],[92.26746,26.06676],[92.26095,26.06614],[92.25832,26.06346],[92.25052,26.06453],[92.24163,26.06177],[92.22944,26.06462],[92.22859,26.0668],[92.22223,26.06809],[92.22054,26.0703],[92.21548,26.06841],[92.20817,26.07047],[92.20627,26.06963],[92.20651,26.06814],[92.20042,26.06962],[92.19265,26.06733],[92.19101,26.06884],[92.18716,26.06657],[92.18613,26.06765],[92.18734,26.0693],[92.18181,26.06906],[92.18029,26.07117],[92.17804,26.06855],[92.17608,26.07023],[92.17617,26.07429],[92.17878,26.07569],[92.1788,26.07819],[92.1694,26.07764],[92.15471,26.06715],[92.15224,26.06678],[92.14339,26.05604],[92.13754,26.05504],[92.13421,26.05245],[92.13262,26.04424],[92.12821,26.04568],[92.1214,26.04388],[92.1199,26.04596],[92.1088,26.05068],[92.09729,26.04922],[92.07791,26.04229],[92.06679,26.03508],[92.05796,26.03482],[92.05143,26.03279],[92.04814,26.03277],[92.04069,26.03651],[92.03633,26.03621],[92.0344,26.03892],[92.03062,26.03958],[92.02404,26.03781],[92.01845,26.03919],[92.0165,26.03705],[92.01327,26.03844],[92.01044,26.03665],[92.00622,26.03855],[92.00411,26.03557],[91.99922,26.03579],[91.99476,26.03849],[91.98906,26.03853],[91.98546,26.03103],[91.98617,26.02898],[91.98357,26.0258],[91.97897,26.02748],[91.97317,26.02211],[91.96195,26.02026],[91.96191,26.01892],[91.95137,26.01466],[91.9478,26.01529],[91.94718,26.01317],[91.93397,26.01027],[91.93115,26.01236],[91.92827,26.00236],[91.92496,25.99939],[91.91898,25.99783],[91.9144,25.9988],[91.91228,26.00492],[91.91417,26.0072],[91.91059,26.00737],[91.90976,26.00877],[91.91332,26.0094],[91.90975,26.01267],[91.91479,26.01399],[91.91299,26.01471],[91.91469,26.0205],[91.90851,26.02097],[91.90518,26.02387],[91.9023,26.02237],[91.89783,26.0234],[91.88874,26.02787],[91.8858,26.02804],[91.88304,26.0261],[91.87893,26.03115],[91.87916,26.03437],[91.87517,26.03511],[91.8762,26.03641],[91.8731,26.03881],[91.87475,26.04302],[91.87202,26.04462],[91.87095,26.04271],[91.8673,26.04202],[91.87192,26.05096],[91.87028,26.05451],[91.87265,26.06791],[91.87661,26.07667],[91.87845,26.08978],[91.87687,26.09165],[91.87964,26.09604],[91.87917,26.09798],[91.87364,26.10063],[91.86576,26.10042],[91.86393,26.10263],[91.86072,26.10289],[91.85101,26.1084],[91.84828,26.10807],[91.83736,26.11224],[91.83382,26.11576]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-MN","area_level":"State","area_name":"Manipur","geometry_source":"SOI_States","same_as":"LGD/14/State"},"geometry":{"type":"Polygon","coordinates":[[[93.24961,24.97312],[93.25716,24.97362],[93.26092,24.97146],[93.26301,24.96134],[93.26087,24.95855],[93.25,24.95514],[93.24536,24.95081],[93.24913,24.94817],[93.24732,24.94512],[93.25097,24.94341],[93.25127,24.94064],[93.24762,24.9398],[93.24492,24.94119],[93.23681,24.93716],[93.23713,24.93253],[93.24264,24.93611],[93.2451,24.93539],[93.24471,24.9325],[93.23849,24.92568],[93.23934,24.92437],[93.24597,24.92525],[93.24884,24.91485],[93.24406,24.91055],[93.2352,24.91141],[93.23778,24.90582],[93.24032,24.90513],[93.2408,24.90336],[93.23849,24.8987],[93.22961,24.89782],[93.23212,24.89188],[93.22758,24.89293],[93.22602,24.89193],[93.22799,24.88834],[93.23155,24.88754],[93.23279,24.88466],[93.22774,24.88503],[93.22492,24.88018],[93.22151,24.88152],[93.22196,24.87766],[93.22644,24.87283],[93.22036,24.87352],[93.22145,24.86951],[93.2169,24.86535],[93.21471,24.86529],[93.21361,24.86063],[93.21003,24.85608],[93.20687,24.85576],[93.20407,24.85105],[93.19955,24.85515],[93.19483,24.85385],[93.19812,24.85301],[93.20126,24.84854],[93.20155,24.84206],[93.19997,24.84152],[93.19543,24.84433],[93.19231,24.84276],[93.19175,24.84002],[93.19611,24.83669],[93.19969,24.83948],[93.2006,24.83795],[93.19779,24.83416],[93.19327,24.83557],[93.19161,24.8344],[93.19165,24.83299],[93.19591,24.83091],[93.19006,24.81864],[93.19695,24.81136],[93.19112,24.80395],[93.17995,24.80307],[93.17935,24.79721],[93.17615,24.79385],[93.17359,24.796],[93.17357,24.80123],[93.17069,24.80185],[93.16109,24.79623],[93.15987,24.79338],[93.15424,24.78871],[93.14946,24.78737],[93.1485,24.78908],[93.15115,24.79228],[93.15117,24.79468],[93.14626,24.79744],[93.14175,24.79728],[93.1411,24.80126],[93.13471,24.80813],[93.13857,24.80999],[93.13483,24.81058],[93.13176,24.80521],[93.12703,24.80876],[93.11886,24.80766],[93.1179,24.80925],[93.12194,24.81662],[93.12137,24.81922],[93.11528,24.81428],[93.11028,24.81256],[93.10932,24.81069],[93.1114,24.80058],[93.10798,24.79487],[93.10839,24.79184],[93.10481,24.79128],[93.10611,24.78844],[93.1043,24.78631],[93.10522,24.78111],[93.10052,24.77942],[93.10028,24.7736],[93.10361,24.7672],[93.10238,24.75922],[93.09825,24.75437],[93.10112,24.74958],[93.09833,24.74675],[93.09988,24.74317],[93.1016,24.74277],[93.10272,24.74685],[93.10776,24.74144],[93.0971,24.73195],[93.09589,24.72421],[93.09065,24.72508],[93.09037,24.72139],[93.09325,24.71891],[93.09079,24.71818],[93.0901,24.71432],[93.08662,24.70953],[93.08247,24.70884],[93.0776,24.71298],[93.0737,24.70832],[93.07434,24.70646],[93.08241,24.70149],[93.09188,24.68685],[93.09011,24.67717],[93.10191,24.6807],[93.10426,24.67535],[93.09647,24.66426],[93.09537,24.65283],[93.08625,24.65273],[93.08319,24.64981],[93.08763,24.63699],[93.08728,24.62967],[93.08521,24.62817],[93.07872,24.62885],[93.07568,24.62454],[93.07714,24.62008],[93.08421,24.6136],[93.07394,24.60561],[93.07126,24.59963],[93.08027,24.59011],[93.08921,24.59238],[93.09359,24.5917],[93.10158,24.58759],[93.10436,24.58238],[93.10184,24.58079],[93.09321,24.5815],[93.08916,24.57337],[93.0844,24.57113],[93.07616,24.575],[93.06216,24.57624],[93.05851,24.57446],[93.05877,24.57188],[93.06917,24.56188],[93.07081,24.55805],[93.06462,24.54679],[93.0617,24.54731],[93.06052,24.55358],[93.05701,24.55441],[93.04999,24.54421],[93.04719,24.52857],[93.05055,24.5232],[93.05013,24.51943],[93.04131,24.51557],[93.03874,24.51287],[93.03721,24.50939],[93.04273,24.50635],[93.04277,24.50479],[93.03256,24.4953],[93.04024,24.48631],[93.04637,24.47357],[93.04556,24.46328],[93.04366,24.46177],[93.03811,24.46193],[93.03572,24.45976],[93.03642,24.44222],[93.03292,24.42875],[93.03728,24.42362],[93.04265,24.42055],[93.04256,24.41491],[93.04164,24.41301],[93.03521,24.40959],[93.02344,24.40675],[93.01617,24.40871],[93.01507,24.41553],[93.01195,24.41672],[93.00885,24.41168],[93.00598,24.41065],[93.00578,24.40931],[93.00747,24.40973],[93.00675,24.40775],[93.004,24.40706],[92.99831,24.39976],[93.02035,24.38785],[93.01309,24.37735],[93.01811,24.37161],[93.01531,24.35625],[93.01755,24.34422],[93.03932,24.34074],[93.03116,24.31577],[93.01415,24.29056],[93.00701,24.2855],[93.00415,24.27791],[93.00984,24.26909],[93.00266,24.26022],[93.00261,24.25139],[93.0139,24.23378],[93.02245,24.23002],[93.01528,24.22626],[93.01527,24.2225],[93.01954,24.21497],[93.01812,24.20746],[93.01385,24.20497],[93.01246,24.19745],[93.00822,24.19495],[92.99889,24.19497],[92.99894,24.19176],[93.00673,24.17965],[92.99915,24.1715],[93.00127,24.15806],[92.98892,24.15066],[92.98696,24.14781],[92.9887,24.13786],[92.98522,24.12927],[92.9819,24.12637],[92.96943,24.1214],[92.9722,24.11235],[92.9922,24.1142],[93.00544,24.10739],[93.00987,24.10197],[93.01724,24.09887],[93.02305,24.10105],[93.03044,24.09664],[93.03342,24.09257],[93.04939,24.08805],[93.06087,24.09161],[93.07516,24.10027],[93.08515,24.08133],[93.09795,24.07126],[93.09651,24.05365],[93.09936,24.04989],[93.09509,24.04611],[93.09651,24.04234],[93.10646,24.04739],[93.10788,24.05242],[93.11498,24.0537],[93.1164,24.05747],[93.12494,24.06128],[93.13064,24.0701],[93.13065,24.07639],[93.13777,24.08395],[93.14347,24.08524],[93.15401,24.08095],[93.15686,24.07468],[93.16539,24.07217],[93.16251,24.05834],[93.16534,24.05206],[93.17101,24.0508],[93.18947,24.05333],[93.19372,24.04956],[93.21217,24.04706],[93.2207,24.07095],[93.21787,24.07849],[93.21929,24.081],[93.22214,24.08351],[93.23207,24.081],[93.23776,24.08352],[93.24345,24.08227],[93.25911,24.06971],[93.25911,24.06469],[93.26199,24.05715],[93.2577,24.05463],[93.24775,24.03075],[93.25207,24.02574],[93.25064,24.02071],[93.26929,24.0308],[93.27212,24.03708],[93.28071,24.04338],[93.28353,24.0484],[93.29359,24.04841],[93.30785,24.05093],[93.3258,24.05035],[93.32796,24.05347],[93.33212,24.05313],[93.33842,24.06267],[93.33604,24.0634],[93.33716,24.06754],[93.33322,24.07013],[93.33445,24.07431],[93.3309,24.07299],[93.32848,24.07692],[93.32855,24.08115],[93.33068,24.08113],[93.33085,24.08536],[93.33606,24.09049],[93.34453,24.09174],[93.34675,24.09009],[93.34716,24.08757],[93.35115,24.09081],[93.35381,24.09053],[93.34966,24.09518],[93.3468,24.09445],[93.34523,24.09705],[93.34287,24.09723],[93.34194,24.10197],[93.34513,24.10369],[93.34703,24.10292],[93.34882,24.10474],[93.34997,24.10152],[93.34844,24.10124],[93.35078,24.10019],[93.34829,24.09889],[93.35449,24.09889],[93.35451,24.09604],[93.35939,24.09394],[93.35809,24.09104],[93.36456,24.09212],[93.3678,24.09006],[93.37293,24.09076],[93.3839,24.08522],[93.38482,24.08672],[93.39005,24.08265],[93.39484,24.08409],[93.39644,24.08284],[93.39899,24.08518],[93.40552,24.07936],[93.40722,24.0797],[93.40672,24.07635],[93.40958,24.07657],[93.41027,24.07309],[93.4141,24.07407],[93.41442,24.07234],[93.41695,24.07141],[93.41588,24.06923],[93.42167,24.06403],[93.42593,24.05071],[93.42501,24.04536],[93.428,24.04107],[93.4276,24.03721],[93.42992,24.03653],[93.42853,24.03566],[93.42898,24.03299],[93.43327,24.02712],[93.43307,24.02401],[93.44079,24.01472],[93.44321,24.01371],[93.45024,24.01529],[93.45309,24.01362],[93.45311,23.9995],[93.46114,23.99863],[93.46362,23.99406],[93.46265,23.98364],[93.46054,23.98071],[93.4635,23.97337],[93.46616,23.9734],[93.46631,23.97148],[93.47507,23.9615],[93.48146,23.95716],[93.48614,23.95722],[93.48641,23.95577],[93.49012,23.95439],[93.48967,23.95115],[93.49277,23.95057],[93.49494,23.95346],[93.49682,23.95184],[93.49538,23.94962],[93.49892,23.94554],[93.50257,23.94475],[93.50476,23.94219],[93.5148,23.94255],[93.52492,23.95636],[93.53001,23.95455],[93.53449,23.95928],[93.53923,23.96076],[93.54358,23.96086],[93.54547,23.95842],[93.55011,23.95916],[93.55008,23.96166],[93.55276,23.96184],[93.55123,23.9636],[93.55337,23.96428],[93.5536,23.96897],[93.5553,23.97003],[93.55407,23.97218],[93.55567,23.97437],[93.55481,23.97632],[93.5573,23.97822],[93.55745,23.98142],[93.55977,23.98207],[93.56276,23.97887],[93.5648,23.98025],[93.56979,23.97667],[93.57094,23.9775],[93.57044,23.97046],[93.5737,23.96893],[93.57355,23.96672],[93.57631,23.96679],[93.57979,23.96265],[93.58517,23.95995],[93.59166,23.96059],[93.59326,23.96265],[93.59252,23.9638],[93.59641,23.96554],[93.59744,23.9702],[93.5989,23.96938],[93.59896,23.97239],[93.60816,23.97162],[93.60897,23.97762],[93.60783,23.98063],[93.61379,23.99227],[93.61186,23.99732],[93.61724,24.00703],[93.62335,24.01092],[93.62657,24.01107],[93.629,24.00872],[93.6355,24.01061],[93.64245,24.00869],[93.65298,24.00902],[93.65432,24.0082],[93.65341,24.00624],[93.65465,24.00244],[93.66322,24.00149],[93.67164,24.00235],[93.67534,24.00566],[93.68206,24.00715],[93.68443,24.00606],[93.69091,24.00851],[93.70015,24.00418],[93.7174,24.00045],[93.72436,23.99717],[93.7277,23.99903],[93.7357,23.9994],[93.74038,24.00218],[93.7418,23.99682],[93.74409,23.99937],[93.74425,24.00275],[93.7542,24.00542],[93.75777,24.00304],[93.75939,24.00366],[93.75928,24.00151],[93.76137,24.00003],[93.76341,23.99466],[93.76217,23.99121],[93.76495,23.99006],[93.76476,23.98628],[93.76862,23.98236],[93.76788,23.98135],[93.77123,23.97628],[93.77052,23.97448],[93.77359,23.97108],[93.77174,23.96892],[93.78004,23.9645],[93.77947,23.96301],[93.78168,23.96131],[93.78518,23.9617],[93.79253,23.95123],[93.79763,23.94767],[93.79837,23.94179],[93.80084,23.93829],[93.79977,23.93264],[93.80738,23.92708],[93.81596,23.92633],[93.81966,23.92371],[93.82481,23.92653],[93.83327,23.92734],[93.83474,23.93018],[93.83999,23.93202],[93.85937,23.93197],[93.8698,23.93835],[93.87199,23.94126],[93.88288,23.94182],[93.89231,23.94981],[93.8937,23.95314],[93.90259,23.94995],[93.91949,23.95173],[93.93046,23.95025],[93.94423,23.94626],[93.94997,23.94179],[93.95514,23.9343],[93.95442,23.93246],[93.95833,23.92946],[93.96159,23.92792],[93.96194,23.92949],[93.96409,23.92964],[93.97573,23.92469],[93.9807,23.92875],[93.98511,23.92684],[93.9912,23.92756],[93.99131,23.92595],[93.9985,23.92002],[94.00526,23.91895],[94.01934,23.91198],[94.03315,23.89724],[94.04682,23.88818],[94.06217,23.88057],[94.0843,23.88143],[94.09535,23.87154],[94.10229,23.8561],[94.12067,23.83285],[94.12556,23.8333],[94.13314,23.84149],[94.13763,23.85242],[94.14081,23.85384],[94.15147,23.85247],[94.15503,23.85524],[94.15696,23.86352],[94.1622,23.91958],[94.16535,23.92964],[94.17603,23.93327],[94.18686,23.94128],[94.18734,23.9646],[94.19855,23.98791],[94.234,24.03929],[94.23447,24.04306],[94.22995,24.05547],[94.23068,24.05742],[94.23895,24.05778],[94.24273,24.06854],[94.25154,24.08191],[94.25412,24.09212],[94.25489,24.10656],[94.25356,24.12418],[94.25519,24.14064],[94.25987,24.16226],[94.26173,24.16711],[94.27938,24.17591],[94.28319,24.17935],[94.28291,24.20343],[94.2842,24.21236],[94.29271,24.23602],[94.30379,24.24017],[94.31084,24.24594],[94.31532,24.25268],[94.3239,24.27798],[94.32486,24.29096],[94.3236,24.31043],[94.32716,24.32766],[94.32854,24.32972],[94.33516,24.33235],[94.34364,24.33225],[94.354,24.33447],[94.35651,24.34516],[94.38011,24.37464],[94.38057,24.37821],[94.37405,24.38738],[94.36707,24.39298],[94.36713,24.39462],[94.37018,24.39752],[94.39763,24.40729],[94.40869,24.43715],[94.40216,24.44587],[94.40131,24.44948],[94.40308,24.47529],[94.4068,24.47877],[94.42074,24.48028],[94.4252,24.48612],[94.43867,24.51007],[94.45725,24.55241],[94.46154,24.55795],[94.46658,24.56153],[94.48635,24.57003],[94.49225,24.57463],[94.52921,24.61802],[94.54446,24.6449],[94.55007,24.65893],[94.5531,24.68276],[94.55272,24.68994],[94.54827,24.70638],[94.54966,24.71277],[94.55531,24.71483],[94.5679,24.71458],[94.57275,24.71293],[94.57943,24.72371],[94.5782,24.71172],[94.58512,24.70542],[94.59152,24.70951],[94.60163,24.70948],[94.60294,24.71215],[94.60512,24.71231],[94.60735,24.71805],[94.60621,24.72156],[94.60945,24.72483],[94.60906,24.72824],[94.61107,24.72882],[94.61064,24.73319],[94.61321,24.737],[94.61267,24.74018],[94.62936,24.75697],[94.62912,24.76128],[94.62696,24.76397],[94.62777,24.76513],[94.62447,24.76778],[94.62466,24.76986],[94.6225,24.77121],[94.62194,24.77538],[94.61861,24.7798],[94.61902,24.78463],[94.62213,24.78842],[94.62593,24.79954],[94.62966,24.80297],[94.6291,24.81691],[94.63264,24.8234],[94.63366,24.83553],[94.63186,24.83946],[94.64519,24.84922],[94.65045,24.85522],[94.64853,24.86062],[94.65295,24.86335],[94.6542,24.8677],[94.65729,24.8711],[94.65983,24.87233],[94.66297,24.87064],[94.66561,24.87407],[94.67399,24.87509],[94.67555,24.8802],[94.67951,24.88434],[94.68343,24.88726],[94.68795,24.88806],[94.68685,24.89153],[94.69077,24.89909],[94.69043,24.90317],[94.69323,24.90585],[94.6937,24.9121],[94.69658,24.91813],[94.70095,24.92274],[94.70193,24.92938],[94.71024,24.9289],[94.7134,24.93437],[94.70744,24.9422],[94.70603,24.94975],[94.70184,24.95277],[94.70164,24.95585],[94.69665,24.95955],[94.69659,24.96847],[94.70105,24.97449],[94.70265,24.98246],[94.7059,24.98635],[94.72663,24.99958],[94.72658,25.0024],[94.72911,25.00566],[94.72772,25.01017],[94.73858,25.02356],[94.73765,25.02765],[94.74416,25.03727],[94.74212,25.03884],[94.74255,25.045],[94.74423,25.04721],[94.74198,25.05215],[94.74469,25.06003],[94.74337,25.06268],[94.73786,25.06543],[94.74489,25.08064],[94.73966,25.09231],[94.74079,25.10383],[94.73619,25.11032],[94.74076,25.12075],[94.74034,25.12696],[94.73809,25.12837],[94.73661,25.13478],[94.72886,25.13448],[94.71894,25.13843],[94.71514,25.13808],[94.70777,25.14417],[94.70291,25.14542],[94.70063,25.151],[94.69691,25.15484],[94.6918,25.15594],[94.68986,25.15792],[94.68455,25.15143],[94.67995,25.1493],[94.67756,25.15135],[94.67734,25.15457],[94.66903,25.15759],[94.6646,25.16272],[94.6483,25.16828],[94.64014,25.16615],[94.63476,25.172],[94.62855,25.17569],[94.62004,25.18666],[94.61129,25.18201],[94.60583,25.18129],[94.60358,25.18642],[94.59194,25.19283],[94.58899,25.20294],[94.58175,25.21108],[94.57564,25.21412],[94.57853,25.21623],[94.58237,25.22287],[94.58265,25.22742],[94.58552,25.22948],[94.58513,25.23913],[94.58743,25.24554],[94.58575,25.24882],[94.58892,25.25305],[94.58945,25.25698],[94.58479,25.26654],[94.59194,25.27814],[94.59334,25.28587],[94.59856,25.29268],[94.60341,25.30551],[94.60602,25.30636],[94.60412,25.30945],[94.60622,25.31456],[94.61187,25.32119],[94.61208,25.32412],[94.61462,25.32486],[94.61827,25.33045],[94.62361,25.34358],[94.62244,25.34604],[94.62959,25.34934],[94.63125,25.35439],[94.63455,25.35792],[94.6324,25.36068],[94.63364,25.3723],[94.63195,25.38162],[94.63227,25.38902],[94.6346,25.39501],[94.64595,25.40262],[94.64897,25.40642],[94.65594,25.40467],[94.65957,25.40582],[94.66293,25.41006],[94.66274,25.41186],[94.6671,25.41464],[94.67004,25.41883],[94.66981,25.4215],[94.67304,25.42508],[94.67118,25.44286],[94.67524,25.44562],[94.68028,25.45401],[94.66108,25.44941],[94.62813,25.45976],[94.62053,25.46321],[94.60271,25.47662],[94.58607,25.48398],[94.58247,25.48668],[94.58026,25.49111],[94.56989,25.49951],[94.56349,25.50088],[94.55274,25.50709],[94.55661,25.52502],[94.55364,25.52922],[94.55883,25.53401],[94.55523,25.54005],[94.55826,25.54385],[94.55676,25.55486],[94.56005,25.56229],[94.55581,25.56235],[94.55695,25.57271],[94.55114,25.5802],[94.56059,25.59698],[94.56825,25.60568],[94.57396,25.62061],[94.57923,25.62885],[94.59064,25.63819],[94.58241,25.64095],[94.57157,25.63909],[94.57228,25.64722],[94.57685,25.65178],[94.57754,25.655],[94.58071,25.65616],[94.57893,25.65961],[94.58288,25.66618],[94.58084,25.66924],[94.58548,25.67563],[94.59245,25.68128],[94.59113,25.68566],[94.58257,25.68629],[94.56857,25.69209],[94.56355,25.68667],[94.56063,25.67526],[94.54776,25.66187],[94.54731,25.65692],[94.54028,25.65202],[94.53507,25.64556],[94.52709,25.64463],[94.5262,25.63708],[94.52373,25.6388],[94.51974,25.63793],[94.51004,25.62501],[94.50643,25.62443],[94.50421,25.62144],[94.50332,25.61348],[94.50091,25.61152],[94.49737,25.61457],[94.49483,25.61105],[94.48897,25.60889],[94.48673,25.61437],[94.46962,25.61625],[94.44485,25.59574],[94.4434,25.59269],[94.4256,25.58741],[94.41796,25.57069],[94.42068,25.5677],[94.42194,25.55612],[94.42113,25.54759],[94.41582,25.53733],[94.41234,25.53663],[94.40644,25.53823],[94.3841,25.53132],[94.36025,25.51629],[94.32463,25.50322],[94.31629,25.49416],[94.30914,25.48935],[94.29826,25.48955],[94.29464,25.49565],[94.28641,25.50449],[94.28241,25.50667],[94.27552,25.50043],[94.26983,25.49799],[94.25293,25.49845],[94.24775,25.49411],[94.22744,25.4934],[94.22485,25.4911],[94.2187,25.49188],[94.2156,25.49475],[94.21059,25.49536],[94.20857,25.49795],[94.20868,25.50331],[94.20266,25.5068],[94.20265,25.50911],[94.18653,25.52598],[94.18595,25.52984],[94.18973,25.5374],[94.19071,25.54763],[94.18769,25.54616],[94.17862,25.54849],[94.17541,25.54543],[94.16377,25.54228],[94.15939,25.5452],[94.15601,25.55054],[94.14876,25.54314],[94.14406,25.52699],[94.1411,25.52295],[94.1346,25.51902],[94.10199,25.52429],[94.08805,25.52815],[94.08847,25.5334],[94.09213,25.53715],[94.09091,25.54187],[94.08192,25.55519],[94.07603,25.55706],[94.06541,25.55448],[94.06071,25.56187],[94.05017,25.5723],[94.04206,25.57651],[94.03969,25.57304],[94.03507,25.57543],[94.03524,25.5786],[94.03096,25.57707],[94.02949,25.58029],[94.02336,25.58359],[94.02162,25.589],[94.01086,25.59177],[94.00651,25.59105],[94.00378,25.58658],[94.00786,25.57472],[94.00838,25.57093],[94.0065,25.56693],[94.00353,25.56548],[93.99671,25.56953],[93.9766,25.56694],[93.97398,25.56186],[93.96135,25.55229],[93.95353,25.55248],[93.93968,25.5592],[93.92631,25.56119],[93.91553,25.55985],[93.91331,25.56254],[93.88819,25.5643],[93.87461,25.55788],[93.8585,25.55346],[93.8328,25.55905],[93.82978,25.55736],[93.82956,25.55241],[93.82136,25.55201],[93.81965,25.54417],[93.81602,25.5404],[93.81223,25.54148],[93.80416,25.54056],[93.77583,25.53414],[93.76699,25.53639],[93.76733,25.53213],[93.76451,25.5214],[93.76564,25.51382],[93.76061,25.5116],[93.7621,25.496],[93.76566,25.49286],[93.76969,25.49392],[93.78475,25.50255],[93.79353,25.50042],[93.80031,25.49505],[93.81011,25.48073],[93.80521,25.46159],[93.79863,25.45642],[93.78994,25.44468],[93.7864,25.43941],[93.7843,25.43191],[93.77672,25.42553],[93.77726,25.42076],[93.76062,25.4142],[93.74288,25.40181],[93.73628,25.39129],[93.73752,25.38554],[93.73598,25.38052],[93.7193,25.37171],[93.71519,25.3665],[93.71424,25.35774],[93.70779,25.35424],[93.68899,25.35778],[93.68766,25.34361],[93.68331,25.3274],[93.68012,25.32582],[93.66829,25.32492],[93.67015,25.31348],[93.66912,25.30772],[93.66229,25.3045],[93.66093,25.30046],[93.66179,25.29465],[93.6478,25.27526],[93.64606,25.26535],[93.63973,25.26213],[93.63927,25.25626],[93.6173,25.2212],[93.60872,25.20249],[93.60415,25.19836],[93.60043,25.20063],[93.59717,25.1987],[93.59327,25.20062],[93.58918,25.20025],[93.59101,25.20746],[93.58815,25.21025],[93.58647,25.21629],[93.57786,25.22237],[93.57441,25.22206],[93.57105,25.22393],[93.55937,25.243],[93.55098,25.24696],[93.5375,25.24183],[93.52564,25.24484],[93.5169,25.24528],[93.51272,25.24127],[93.50147,25.24065],[93.5005,25.24992],[93.50714,25.27213],[93.50073,25.27231],[93.49127,25.27528],[93.48393,25.2725],[93.47314,25.27563],[93.46899,25.28204],[93.47156,25.29629],[93.47056,25.30505],[93.4673,25.30166],[93.46316,25.30147],[93.45536,25.29347],[93.44532,25.29134],[93.43606,25.28782],[93.43078,25.28295],[93.42752,25.28324],[93.4267,25.27964],[93.42053,25.27746],[93.41594,25.26427],[93.40668,25.26078],[93.40116,25.26062],[93.39366,25.25474],[93.39259,25.24997],[93.3866,25.24278],[93.38334,25.24228],[93.38112,25.23963],[93.38096,25.23794],[93.38269,25.23725],[93.38164,25.23431],[93.38426,25.23352],[93.38465,25.23136],[93.38127,25.22736],[93.38178,25.2229],[93.37561,25.22014],[93.37671,25.21788],[93.37338,25.21484],[93.37383,25.21182],[93.36894,25.21097],[93.37072,25.20789],[93.3661,25.2061],[93.36562,25.19808],[93.35938,25.19531],[93.35999,25.19185],[93.35671,25.19188],[93.35737,25.1876],[93.35616,25.18896],[93.35412,25.18767],[93.35496,25.18593],[93.35134,25.1832],[93.3515,25.17966],[93.34981,25.1795],[93.34587,25.16981],[93.34401,25.15913],[93.34657,25.15708],[93.34518,25.15074],[93.34751,25.13877],[93.34238,25.13749],[93.34534,25.13034],[93.34176,25.12641],[93.34526,25.12346],[93.34118,25.12306],[93.3422,25.11989],[93.33933,25.11549],[93.34133,25.11359],[93.33675,25.1116],[93.33808,25.1099],[93.33246,25.10073],[93.33354,25.09799],[93.3317,25.09605],[93.33216,25.09324],[93.32754,25.0934],[93.32188,25.09082],[93.31492,25.08462],[93.31274,25.07935],[93.30611,25.07164],[93.30631,25.06825],[93.30243,25.06334],[93.30556,25.05743],[93.30423,25.05562],[93.30079,25.05586],[93.3021,25.05424],[93.29996,25.04604],[93.29754,25.04658],[93.29941,25.04935],[93.2988,25.05195],[93.2948,25.05107],[93.29368,25.04633],[93.29136,25.04864],[93.28897,25.04568],[93.28718,25.04701],[93.28346,25.045],[93.2827,25.04901],[93.27966,25.04722],[93.28007,25.051],[93.27731,25.04957],[93.27451,25.05094],[93.27215,25.04844],[93.27045,25.05077],[93.2642,25.04936],[93.26227,25.04591],[93.26605,25.04384],[93.26219,25.04072],[93.25962,25.04121],[93.25835,25.03802],[93.25989,25.03497],[93.25379,25.02716],[93.25135,25.02714],[93.25117,25.02585],[93.25404,25.02547],[93.2525,25.02293],[93.25395,25.02058],[93.24908,25.02009],[93.24728,25.01799],[93.24388,25.01829],[93.24374,25.01612],[93.24767,25.0149],[93.24472,25.01171],[93.24178,25.00393],[93.2442,25.00326],[93.24439,24.99809],[93.24686,24.99738],[93.24888,24.99891],[93.24878,25.00299],[93.2505,25.00432],[93.25259,25.00093],[93.25738,25.00474],[93.25987,25.00113],[93.25863,24.99948],[93.25416,25.00023],[93.25277,24.99891],[93.25298,24.99734],[93.25704,24.99607],[93.25141,24.98601],[93.25343,24.98207],[93.24944,24.97934],[93.24934,24.97704],[93.25203,24.97645],[93.24961,24.97312]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-MP","area_level":"State","area_name":"Madhya Pradesh","geometry_source":"SOI_States","same_as":"LGD/23/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.17214,22.41875],[74.16758,22.41673],[74.16398,22.41567],[74.16292,22.4157],[74.16149,22.41414],[74.16068,22.41363],[74.15918,22.41448],[74.15811,22.41428],[74.15722,22.41342],[74.15712,22.41233],[74.15737,22.41164],[74.15958,22.40959],[74.16351,22.40668],[74.16483,22.40614],[74.16504,22.40587],[74.16497,22.40358],[74.16588,22.39992],[74.16504,22.398],[74.16515,22.39725],[74.16622,22.39649],[74.1674,22.39636],[74.16773,22.39615],[74.1696,22.39389],[74.17033,22.39396],[74.17092,22.3936],[74.17412,22.391],[74.17581,22.39031],[74.17686,22.38967],[74.17889,22.38795],[74.17916,22.38799],[74.17955,22.38874],[74.17925,22.39103],[74.17986,22.39241],[74.17962,22.39306],[74.17951,22.39527],[74.17966,22.39684],[74.17948,22.39732],[74.17861,22.39741],[74.17754,22.39786],[74.17673,22.39865],[74.17556,22.40094],[74.17545,22.40156],[74.17569,22.40372],[74.17633,22.40488],[74.17637,22.40554],[74.17616,22.40609],[74.17498,22.40715],[74.17475,22.40814],[74.17475,22.41009],[74.17552,22.41382],[74.17523,22.41806],[74.17476,22.41831],[74.17395,22.41827],[74.17321,22.41871],[74.17214,22.41875]]],[[[78.49665,25.15368],[78.49866,25.1567],[78.50033,25.15848],[78.50306,25.1632],[78.50535,25.16491],[78.50815,25.16579],[78.51028,25.16827],[78.51298,25.17024],[78.5209,25.17356],[78.52723,25.17718],[78.52963,25.18023],[78.51954,25.18146],[78.51559,25.1809],[78.50842,25.17793],[78.50449,25.17458],[78.5013,25.17063],[78.49992,25.16737],[78.49546,25.1614],[78.49429,25.15779],[78.49295,25.15532],[78.49305,25.15342],[78.49426,25.15265],[78.49665,25.15368]]],[[[78.37276,26.86336],[78.36688,26.86786],[78.35832,26.86956],[78.34232,26.86643],[78.33149,26.86249],[78.30424,26.86245],[78.28726,26.85676],[78.27946,26.85222],[78.27312,26.84294],[78.27467,26.82324],[78.27246,26.81593],[78.26791,26.81358],[78.25824,26.81478],[78.24207,26.82503],[78.22525,26.83065],[78.21847,26.8292],[78.20211,26.82138],[78.17984,26.82553],[78.17353,26.82447],[78.16872,26.82039],[78.16727,26.81541],[78.16838,26.81283],[78.18047,26.80414],[78.18664,26.79609],[78.18761,26.78968],[78.18347,26.78365],[78.15716,26.78379],[78.13284,26.79515],[78.12058,26.79659],[78.11326,26.79484],[78.10743,26.79078],[78.10216,26.78149],[78.10197,26.76764],[78.10609,26.76017],[78.11689,26.75662],[78.12169,26.75328],[78.12371,26.75],[78.12353,26.74688],[78.1184,26.74216],[78.11164,26.74064],[78.10808,26.73751],[78.10137,26.73709],[78.09593,26.7278],[78.09214,26.71495],[78.0956,26.69516],[78.09574,26.68123],[78.09444,26.67815],[78.08973,26.67447],[78.07879,26.67044],[78.07409,26.6706],[78.05601,26.68363],[78.03437,26.68703],[78.03164,26.68631],[78.01796,26.6925],[78.00043,26.69486],[77.99604,26.69257],[77.98476,26.67481],[77.98012,26.67121],[77.95318,26.65894],[77.94303,26.65819],[77.93522,26.66024],[77.91554,26.66102],[77.90426,26.65906],[77.89953,26.65642],[77.89752,26.65285],[77.89811,26.62315],[77.8967,26.61706],[77.89428,26.61471],[77.88577,26.61244],[77.85881,26.6136],[77.85066,26.61254],[77.83578,26.60615],[77.83206,26.59891],[77.82733,26.59605],[77.82704,26.59179],[77.83378,26.58238],[77.83568,26.57603],[77.83251,26.56147],[77.82201,26.54958],[77.81074,26.54719],[77.78371,26.55204],[77.76781,26.54758],[77.75748,26.53984],[77.74591,26.53875],[77.74029,26.52725],[77.73811,26.51421],[77.73374,26.5078],[77.72701,26.50232],[77.71331,26.49827],[77.69129,26.49964],[77.68024,26.50426],[77.67372,26.50283],[77.65984,26.49112],[77.65058,26.4879],[77.63332,26.47869],[77.62747,26.47242],[77.62297,26.46142],[77.61348,26.45272],[77.58903,26.44648],[77.57147,26.43645],[77.5624,26.43684],[77.55867,26.43518],[77.54633,26.41612],[77.53838,26.4113],[77.52146,26.40721],[77.48651,26.41082],[77.45968,26.40378],[77.44874,26.40461],[77.43735,26.40328],[77.43506,26.40004],[77.43505,26.39438],[77.44622,26.37528],[77.44856,26.36753],[77.44468,26.36176],[77.44095,26.36081],[77.41395,26.36344],[77.39705,26.36078],[77.3904,26.35652],[77.37562,26.36557],[77.36837,26.36415],[77.35599,26.35503],[77.34212,26.35181],[77.33525,26.34134],[77.33059,26.34387],[77.32897,26.34255],[77.32139,26.334],[77.31464,26.31872],[77.31762,26.31746],[77.3166,26.31147],[77.29843,26.29102],[77.27898,26.27596],[77.27105,26.26758],[77.25177,26.25978],[77.23089,26.24598],[77.2168,26.24004],[77.21284,26.23377],[77.20389,26.22987],[77.19993,26.22981],[77.17519,26.23892],[77.17145,26.23795],[77.17013,26.23349],[77.16619,26.23226],[77.15254,26.23189],[77.14172,26.23437],[77.13604,26.23345],[77.11643,26.22058],[77.11291,26.21398],[77.11198,26.20235],[77.10596,26.19614],[77.10093,26.18656],[77.09675,26.18324],[77.08226,26.17906],[77.05448,26.17957],[77.02914,26.17119],[77.01525,26.15704],[77.00631,26.15102],[77.00156,26.14246],[77.00288,26.138],[77.00215,26.13399],[76.99761,26.12907],[76.98712,26.12804],[76.97748,26.12486],[76.94766,26.10274],[76.94077,26.10053],[76.93653,26.10177],[76.91811,26.09876],[76.89978,26.0925],[76.90025,26.08708],[76.89772,26.07425],[76.89416,26.06724],[76.88973,26.06266],[76.88485,26.04804],[76.87581,26.04315],[76.86631,26.03436],[76.8568,26.03473],[76.84078,26.02649],[76.83276,26.01871],[76.8262,26.00739],[76.81925,26.00348],[76.80678,25.98981],[76.80252,25.97822],[76.80358,25.97453],[76.80831,25.97324],[76.80745,25.96537],[76.78903,25.94109],[76.78141,25.93845],[76.768,25.93765],[76.74886,25.94047],[76.7464,25.93768],[76.74659,25.9341],[76.75179,25.92817],[76.75765,25.92663],[76.75662,25.92101],[76.75273,25.91734],[76.73323,25.90632],[76.71633,25.90116],[76.70725,25.90051],[76.6872,25.90786],[76.67011,25.91072],[76.64026,25.90761],[76.63575,25.905],[76.63062,25.89914],[76.6261,25.87573],[76.62322,25.87055],[76.61448,25.86844],[76.59409,25.87527],[76.58928,25.87498],[76.58277,25.87105],[76.55611,25.8349],[76.53473,25.81917],[76.52101,25.7936],[76.51548,25.77644],[76.51789,25.76713],[76.51726,25.75523],[76.52088,25.75211],[76.52522,25.74175],[76.52295,25.73746],[76.52377,25.72983],[76.52032,25.72875],[76.5014,25.72997],[76.49109,25.72083],[76.47968,25.71682],[76.47343,25.70992],[76.47199,25.70394],[76.47292,25.69765],[76.47945,25.6842],[76.49144,25.67902],[76.49891,25.67808],[76.50384,25.6732],[76.504,25.66844],[76.49817,25.65675],[76.49661,25.64681],[76.49894,25.63944],[76.50227,25.63762],[76.50559,25.6381],[76.5098,25.6313],[76.51244,25.60695],[76.51116,25.59989],[76.50384,25.5856],[76.50376,25.57977],[76.50552,25.57488],[76.51415,25.56299],[76.51998,25.54727],[76.51661,25.52667],[76.52496,25.51851],[76.53431,25.5144],[76.53775,25.50901],[76.53773,25.50272],[76.55546,25.48257],[76.55807,25.47054],[76.55715,25.4594],[76.55519,25.45446],[76.55598,25.45203],[76.56223,25.44762],[76.56753,25.44034],[76.58243,25.43686],[76.58627,25.43356],[76.59823,25.40543],[76.59847,25.39233],[76.60828,25.39094],[76.61664,25.38076],[76.62279,25.37678],[76.62891,25.37779],[76.63089,25.38123],[76.63556,25.38344],[76.63976,25.38353],[76.64067,25.37953],[76.64383,25.37794],[76.64647,25.37317],[76.64585,25.37072],[76.64936,25.37156],[76.64958,25.36627],[76.65355,25.36711],[76.65406,25.3631],[76.65682,25.3612],[76.65857,25.36154],[76.65883,25.36541],[76.66043,25.36519],[76.66351,25.35795],[76.6688,25.35301],[76.66845,25.35017],[76.67239,25.34809],[76.67532,25.34923],[76.67715,25.34782],[76.67702,25.35012],[76.67903,25.35069],[76.68255,25.34837],[76.68978,25.35235],[76.70028,25.35163],[76.7033,25.34789],[76.71112,25.3461],[76.71998,25.34589],[76.72554,25.34775],[76.73038,25.35171],[76.73381,25.35199],[76.7366,25.34975],[76.7417,25.34885],[76.74649,25.34385],[76.76102,25.34137],[76.75567,25.33107],[76.75566,25.32278],[76.76037,25.31974],[76.76627,25.32022],[76.76971,25.31771],[76.77757,25.31561],[76.78966,25.31954],[76.80027,25.31965],[76.8145,25.32297],[76.82036,25.32628],[76.83078,25.3273],[76.83944,25.3262],[76.85201,25.33203],[76.85728,25.33278],[76.86348,25.33123],[76.86577,25.3285],[76.8704,25.32703],[76.87211,25.32895],[76.88148,25.32413],[76.90154,25.32363],[76.91765,25.30926],[76.92941,25.30319],[76.92739,25.29153],[76.92327,25.28546],[76.9299,25.28297],[76.94662,25.28233],[76.95781,25.28441],[76.95913,25.29487],[76.96125,25.29786],[76.97374,25.30041],[76.98047,25.29793],[76.99688,25.2984],[77.0257,25.29627],[77.03169,25.29439],[77.04377,25.31269],[77.0459,25.32144],[77.05691,25.31655],[77.06395,25.31657],[77.07005,25.31849],[77.07496,25.32522],[77.07523,25.32823],[77.08367,25.33656],[77.10903,25.33063],[77.11249,25.33198],[77.11768,25.32945],[77.12508,25.33027],[77.13503,25.32067],[77.13864,25.32205],[77.14412,25.32053],[77.15374,25.31261],[77.16536,25.30823],[77.17967,25.31191],[77.1856,25.309],[77.20942,25.30631],[77.20919,25.30865],[77.21139,25.30934],[77.20828,25.31434],[77.20555,25.32648],[77.21722,25.32953],[77.21947,25.32779],[77.21988,25.32478],[77.21632,25.32305],[77.21523,25.32034],[77.2175,25.31784],[77.22337,25.31879],[77.22695,25.32526],[77.22578,25.33031],[77.23395,25.33377],[77.22923,25.33761],[77.22566,25.3347],[77.22432,25.33553],[77.22562,25.34237],[77.22815,25.34657],[77.22987,25.36089],[77.22794,25.36867],[77.23157,25.3727],[77.23394,25.3787],[77.23617,25.38039],[77.24395,25.37904],[77.24787,25.38019],[77.25094,25.38794],[77.26694,25.39565],[77.27564,25.40355],[77.27813,25.40918],[77.28635,25.41855],[77.2938,25.4243],[77.30688,25.43026],[77.31546,25.43147],[77.31994,25.42771],[77.33124,25.42746],[77.3349,25.42542],[77.33464,25.42381],[77.34354,25.42078],[77.3442,25.41862],[77.34994,25.4157],[77.3539,25.41889],[77.36094,25.41899],[77.37097,25.40849],[77.368,25.40209],[77.35766,25.39874],[77.3505,25.38407],[77.35166,25.36969],[77.35914,25.36938],[77.36105,25.36461],[77.36413,25.36358],[77.36669,25.36031],[77.36132,25.35876],[77.3616,25.35661],[77.35036,25.32982],[77.34212,25.32177],[77.35282,25.32041],[77.35708,25.32289],[77.358,25.32616],[77.36761,25.3286],[77.36977,25.32725],[77.37171,25.32089],[77.37476,25.32009],[77.37785,25.31572],[77.38148,25.3046],[77.37962,25.29754],[77.381,25.29273],[77.37587,25.28512],[77.37395,25.27452],[77.36266,25.27901],[77.35755,25.27579],[77.35694,25.27384],[77.35417,25.2736],[77.35509,25.26348],[77.35816,25.26178],[77.36225,25.26269],[77.36611,25.25991],[77.36625,25.25766],[77.36905,25.25546],[77.37037,25.24601],[77.38242,25.24569],[77.38662,25.2427],[77.38765,25.23902],[77.39313,25.23376],[77.39442,25.22994],[77.39977,25.22609],[77.4117,25.22401],[77.41468,25.22013],[77.4185,25.19842],[77.42662,25.18807],[77.42197,25.18331],[77.42158,25.18571],[77.41629,25.18611],[77.40945,25.18294],[77.40014,25.18388],[77.40003,25.16556],[77.39468,25.16213],[77.393,25.15923],[77.39469,25.15644],[77.39616,25.13728],[77.39058,25.12339],[77.40128,25.12164],[77.40537,25.11721],[77.40662,25.11169],[77.40219,25.10929],[77.40243,25.11255],[77.39438,25.11992],[77.37558,25.11029],[77.37567,25.10464],[77.35729,25.09351],[77.35043,25.09576],[77.33781,25.09485],[77.33834,25.09217],[77.32191,25.08554],[77.31484,25.08467],[77.31155,25.08242],[77.31078,25.07983],[77.29826,25.08588],[77.29774,25.09123],[77.29159,25.09716],[77.29257,25.10028],[77.28883,25.10601],[77.27461,25.11069],[77.27001,25.11609],[77.25936,25.11089],[77.24879,25.10995],[77.23696,25.10661],[77.22572,25.10895],[77.2151,25.109],[77.2053,25.11387],[77.1959,25.10932],[77.18423,25.10814],[77.17442,25.11181],[77.16876,25.10301],[77.17158,25.09791],[77.16712,25.08461],[77.1494,25.08636],[77.1506,25.09333],[77.14772,25.09511],[77.14149,25.08859],[77.13342,25.08485],[77.12257,25.06665],[77.09598,25.06543],[77.08913,25.06216],[77.08483,25.05424],[77.04278,25.0634],[77.03759,25.06854],[77.0324,25.06895],[77.02969,25.06585],[77.02404,25.06593],[77.01048,25.07345],[76.99907,25.07485],[76.98984,25.07313],[76.9786,25.06639],[76.97464,25.06643],[76.97148,25.06224],[76.97343,25.06076],[76.9733,25.05843],[76.96873,25.05462],[76.9682,25.0511],[76.96584,25.05155],[76.96167,25.05637],[76.95896,25.05217],[76.9523,25.05216],[76.94509,25.04674],[76.93433,25.04563],[76.92572,25.04695],[76.91159,25.043],[76.88754,25.04377],[76.87616,25.0414],[76.8785,25.02848],[76.87604,25.00706],[76.86733,25.00603],[76.86243,25.00255],[76.85678,25.00248],[76.86135,24.99973],[76.86721,24.99016],[76.86729,24.9803],[76.86513,24.9755],[76.86389,24.96552],[76.86239,24.96442],[76.86269,24.9598],[76.86748,24.95649],[76.87196,24.94789],[76.87763,24.9414],[76.88555,24.93873],[76.88937,24.93392],[76.88868,24.92339],[76.89049,24.91969],[76.90937,24.92111],[76.92042,24.91677],[76.92229,24.91249],[76.92141,24.90842],[76.91966,24.90454],[76.91642,24.90426],[76.91382,24.89831],[76.91305,24.88784],[76.92298,24.88036],[76.93263,24.88199],[76.93425,24.87975],[76.93359,24.87508],[76.94396,24.87444],[76.94856,24.86907],[76.94411,24.86537],[76.94054,24.85782],[76.9341,24.85525],[76.92953,24.84867],[76.92496,24.84658],[76.91665,24.84675],[76.90373,24.84238],[76.89789,24.83823],[76.88148,24.8363],[76.86889,24.8395],[76.86208,24.83731],[76.84617,24.83656],[76.84113,24.83458],[76.83257,24.83657],[76.82508,24.83555],[76.8225,24.83214],[76.81197,24.82557],[76.79988,24.82401],[76.80252,24.81885],[76.802,24.81013],[76.80756,24.80419],[76.82349,24.79412],[76.83546,24.77884],[76.84752,24.76927],[76.84925,24.76303],[76.84859,24.75039],[76.8502,24.74658],[76.85613,24.74249],[76.87438,24.74376],[76.8816,24.74675],[76.88948,24.74726],[76.89597,24.74311],[76.90224,24.73341],[76.90749,24.73159],[76.92319,24.74231],[76.93153,24.74364],[76.94353,24.75755],[76.95396,24.76036],[76.96457,24.75455],[76.96907,24.74231],[76.97456,24.7362],[76.97912,24.73516],[76.98946,24.73614],[76.99552,24.73333],[76.9977,24.72783],[76.99788,24.72046],[77.00166,24.71604],[77.01378,24.71218],[77.02582,24.71432],[77.03167,24.71132],[77.04148,24.6994],[77.04132,24.68675],[77.04374,24.67871],[77.05728,24.65383],[77.06499,24.64384],[77.06788,24.63025],[77.06717,24.61579],[77.06867,24.6088],[77.06558,24.60032],[77.06526,24.59427],[77.06983,24.58406],[77.07133,24.57276],[77.06816,24.55581],[77.05975,24.54588],[77.05763,24.53713],[77.05435,24.53181],[77.05471,24.52628],[77.0422,24.52477],[77.03689,24.5279],[77.03511,24.52435],[77.03554,24.52089],[77.03037,24.51895],[77.02933,24.5167],[77.03066,24.50183],[77.02897,24.49608],[77.01183,24.49166],[77.01096,24.48734],[77.01374,24.48325],[77.0088,24.4819],[77.00713,24.47902],[77.00928,24.47808],[77.00882,24.47674],[77.0036,24.47374],[76.98349,24.47279],[76.98234,24.46782],[76.97761,24.46138],[76.96214,24.46165],[76.96079,24.46342],[76.95549,24.46451],[76.95222,24.46386],[76.95095,24.4618],[76.95076,24.46571],[76.94311,24.46514],[76.94106,24.47052],[76.93852,24.47231],[76.9267,24.47408],[76.91842,24.48069],[76.91693,24.48327],[76.91794,24.48555],[76.91615,24.48993],[76.91725,24.4968],[76.91578,24.50264],[76.91979,24.51805],[76.9218,24.52049],[76.92083,24.52854],[76.91667,24.53705],[76.9179,24.54348],[76.90187,24.54585],[76.89433,24.5383],[76.88986,24.52486],[76.88431,24.52145],[76.87307,24.52702],[76.87157,24.53211],[76.87477,24.53363],[76.87666,24.53879],[76.87411,24.53921],[76.86963,24.54437],[76.86192,24.5493],[76.86062,24.54777],[76.83812,24.54561],[76.8216,24.53459],[76.81639,24.53358],[76.81631,24.52441],[76.82275,24.52043],[76.82867,24.51273],[76.82815,24.50313],[76.83666,24.49318],[76.8354,24.48892],[76.84227,24.48832],[76.84661,24.48596],[76.84775,24.47348],[76.85308,24.46589],[76.85116,24.46036],[76.85251,24.45552],[76.85159,24.45012],[76.85007,24.44923],[76.84481,24.45068],[76.84103,24.44355],[76.84108,24.44014],[76.84434,24.43717],[76.84592,24.43078],[76.85045,24.42413],[76.84574,24.41592],[76.83906,24.41317],[76.83738,24.40971],[76.83793,24.40648],[76.84369,24.40305],[76.85069,24.38344],[76.84523,24.37513],[76.85139,24.37052],[76.83735,24.35959],[76.83188,24.35797],[76.83731,24.3464],[76.83787,24.33415],[76.84105,24.32241],[76.85167,24.31234],[76.85688,24.30292],[76.86012,24.29409],[76.86262,24.27332],[76.87351,24.26592],[76.87313,24.26262],[76.87992,24.26028],[76.87963,24.2553],[76.88784,24.25213],[76.88597,24.24778],[76.8882,24.24489],[76.89616,24.24309],[76.90528,24.2368],[76.91265,24.23795],[76.91576,24.22964],[76.91812,24.22994],[76.92294,24.22605],[76.9223,24.2117],[76.93157,24.21035],[76.93347,24.20706],[76.94593,24.20611],[76.9474,24.20131],[76.9472,24.19873],[76.93987,24.19339],[76.93577,24.18373],[76.93143,24.18356],[76.91629,24.18785],[76.9157,24.17353],[76.9095,24.16298],[76.90994,24.15273],[76.90465,24.14385],[76.9006,24.12743],[76.89227,24.12786],[76.89128,24.12673],[76.88602,24.12801],[76.88397,24.13004],[76.8788,24.13023],[76.88009,24.13506],[76.87841,24.13569],[76.85459,24.13583],[76.85377,24.13353],[76.83632,24.12673],[76.83308,24.12202],[76.81158,24.12275],[76.80637,24.11818],[76.80129,24.11667],[76.79613,24.12136],[76.79,24.12272],[76.78822,24.13215],[76.78088,24.1394],[76.77837,24.14699],[76.7738,24.15007],[76.77019,24.16012],[76.75978,24.16014],[76.76078,24.165],[76.75792,24.16826],[76.72619,24.16857],[76.72608,24.16072],[76.71912,24.15869],[76.71143,24.16384],[76.69831,24.16847],[76.69858,24.17193],[76.69296,24.17641],[76.69204,24.18057],[76.6863,24.1862],[76.67589,24.19085],[76.6781,24.20489],[76.69044,24.23057],[76.69436,24.23631],[76.70051,24.23898],[76.70273,24.2432],[76.70148,24.25042],[76.69409,24.26166],[76.69309,24.26793],[76.69523,24.27763],[76.69277,24.28648],[76.69137,24.28574],[76.69275,24.28023],[76.68753,24.27918],[76.68127,24.27507],[76.6781,24.27123],[76.67775,24.26664],[76.66668,24.26365],[76.66513,24.26193],[76.65673,24.26483],[76.65303,24.2635],[76.64347,24.26939],[76.63997,24.26822],[76.6366,24.26425],[76.6372,24.25834],[76.6313,24.26082],[76.62386,24.25915],[76.62257,24.25735],[76.61765,24.25883],[76.61479,24.25362],[76.6112,24.23865],[76.5956,24.24402],[76.58606,24.24444],[76.58354,24.24287],[76.58784,24.23473],[76.59439,24.22844],[76.59523,24.22332],[76.58944,24.21702],[76.58341,24.21627],[76.582,24.21134],[76.57774,24.21175],[76.57025,24.20899],[76.56876,24.20483],[76.56654,24.20338],[76.56427,24.19095],[76.57467,24.18656],[76.57773,24.17917],[76.57489,24.17572],[76.5705,24.17489],[76.56989,24.17802],[76.56618,24.17444],[76.5618,24.17334],[76.55195,24.16328],[76.54469,24.16285],[76.52742,24.15673],[76.52241,24.15707],[76.51537,24.16263],[76.51293,24.16659],[76.50944,24.18213],[76.50873,24.19358],[76.50454,24.20309],[76.49947,24.20607],[76.4958,24.2054],[76.48054,24.20808],[76.47403,24.22217],[76.47048,24.22298],[76.47051,24.22615],[76.46272,24.22322],[76.46052,24.21851],[76.45227,24.20936],[76.43022,24.22131],[76.41622,24.22063],[76.41642,24.21097],[76.42057,24.20864],[76.4148,24.20064],[76.41168,24.20051],[76.40796,24.20352],[76.40158,24.21527],[76.38191,24.221],[76.3729,24.22785],[76.35834,24.23544],[76.35721,24.23974],[76.34856,24.24062],[76.33988,24.24411],[76.32291,24.24554],[76.31911,24.24481],[76.31084,24.23763],[76.30186,24.23608],[76.29568,24.23185],[76.28736,24.22986],[76.2854,24.20954],[76.28232,24.20731],[76.27554,24.21088],[76.26715,24.21036],[76.25813,24.21463],[76.25211,24.21428],[76.23995,24.21889],[76.22765,24.21541],[76.22478,24.21654],[76.21752,24.21126],[76.21255,24.20994],[76.21164,24.21219],[76.2047,24.21725],[76.20333,24.22052],[76.20647,24.22841],[76.20295,24.24476],[76.20214,24.26883],[76.20093,24.27107],[76.19459,24.27319],[76.19729,24.28796],[76.20424,24.29802],[76.20473,24.3009],[76.20286,24.30492],[76.19558,24.31055],[76.18992,24.32342],[76.18552,24.32928],[76.17963,24.31687],[76.17415,24.31268],[76.17411,24.30721],[76.17015,24.30606],[76.16556,24.30789],[76.16461,24.30659],[76.16587,24.29981],[76.16888,24.29707],[76.1647,24.29461],[76.16533,24.29223],[76.16255,24.28473],[76.15968,24.2827],[76.14932,24.28478],[76.14329,24.2829],[76.14054,24.27463],[76.13672,24.27081],[76.14139,24.26718],[76.13905,24.25625],[76.14312,24.25574],[76.14843,24.23203],[76.14512,24.22302],[76.1378,24.21802],[76.13227,24.20856],[76.11738,24.19399],[76.11378,24.16387],[76.1213,24.16301],[76.12442,24.15945],[76.12496,24.15107],[76.12244,24.1377],[76.12679,24.13249],[76.13114,24.11549],[76.12064,24.10821],[76.12679,24.08873],[76.12179,24.0847],[76.11804,24.08712],[76.11457,24.08474],[76.10666,24.08429],[76.10492,24.08744],[76.10062,24.08711],[76.09635,24.08341],[76.0927,24.08253],[76.08927,24.07704],[76.08451,24.07694],[76.07584,24.07084],[76.07275,24.07666],[76.06758,24.07072],[76.06325,24.06827],[76.05767,24.06754],[76.05465,24.06526],[76.04896,24.06667],[76.04543,24.06451],[76.04267,24.06602],[76.03996,24.06316],[76.03681,24.0629],[76.0346,24.05845],[76.03169,24.05787],[76.03056,24.05154],[76.02817,24.05174],[76.02223,24.04724],[76.02202,24.04119],[76.01941,24.03742],[76.0213,24.03419],[76.01067,24.02504],[76.0,24.02089],[75.99702,24.01769],[75.97064,24.02036],[75.96346,24.01871],[75.96222,24.01469],[75.96719,23.99987],[75.96744,23.99123],[75.97243,23.98847],[75.97596,23.98221],[75.98485,23.97403],[75.98391,23.96742],[75.98676,23.95885],[75.98388,23.95027],[75.98761,23.94174],[75.97996,23.93591],[75.98223,23.93104],[75.98136,23.92897],[75.97453,23.92902],[75.96781,23.92416],[75.96038,23.92325],[75.95531,23.92084],[75.95137,23.91553],[75.95303,23.91172],[75.94917,23.9126],[75.94466,23.90896],[75.94389,23.90298],[75.94108,23.90176],[75.94132,23.89946],[75.93944,23.89947],[75.93751,23.89669],[75.93199,23.89622],[75.92858,23.8991],[75.92714,23.89774],[75.9238,23.89847],[75.92178,23.89613],[75.90486,23.88916],[75.89484,23.8894],[75.8871,23.87911],[75.87642,23.88002],[75.87652,23.88524],[75.87479,23.88537],[75.87063,23.89042],[75.85302,23.88748],[75.84878,23.88415],[75.84478,23.88395],[75.84476,23.87619],[75.84056,23.87458],[75.83914,23.87862],[75.83508,23.87684],[75.83547,23.87818],[75.83365,23.87795],[75.83265,23.87992],[75.82087,23.87331],[75.81736,23.86786],[75.803,23.86545],[75.799,23.86856],[75.79385,23.86701],[75.79201,23.85845],[75.78506,23.85282],[75.78329,23.84923],[75.78125,23.84873],[75.77345,23.84814],[75.76454,23.85174],[75.7617,23.86576],[75.76454,23.87555],[75.7527,23.88735],[75.74,23.889],[75.73949,23.89216],[75.73523,23.89811],[75.72711,23.89328],[75.7193,23.89706],[75.71547,23.89305],[75.71028,23.89551],[75.70805,23.8994],[75.70609,23.8991],[75.70427,23.88876],[75.70548,23.88265],[75.70219,23.88173],[75.70157,23.87283],[75.70349,23.87249],[75.70523,23.86858],[75.70894,23.86923],[75.71085,23.86241],[75.72759,23.85872],[75.73522,23.86199],[75.73641,23.85625],[75.73131,23.85313],[75.72565,23.84183],[75.71895,23.84067],[75.72227,23.83536],[75.72404,23.82376],[75.72647,23.82021],[75.72098,23.81875],[75.72159,23.81179],[75.71256,23.81315],[75.7073,23.81123],[75.70621,23.81331],[75.69799,23.81337],[75.69277,23.81645],[75.69012,23.81325],[75.70184,23.78639],[75.69964,23.78034],[75.6965,23.77974],[75.69294,23.77603],[75.68971,23.76216],[75.68672,23.75594],[75.68046,23.76527],[75.67563,23.78189],[75.65998,23.78423],[75.6545,23.7984],[75.65001,23.79546],[75.64401,23.79778],[75.63848,23.79566],[75.62704,23.79544],[75.62045,23.80093],[75.61435,23.80105],[75.60893,23.79755],[75.59844,23.79776],[75.58345,23.79482],[75.58901,23.80978],[75.5806,23.81228],[75.57157,23.80915],[75.56679,23.80958],[75.5593,23.81818],[75.55912,23.82832],[75.56062,23.83142],[75.56669,23.8332],[75.57461,23.82848],[75.57806,23.83121],[75.57933,23.83511],[75.57903,23.8398],[75.57676,23.84231],[75.5665,23.84387],[75.56593,23.85342],[75.56322,23.85758],[75.55308,23.86162],[75.54709,23.86956],[75.53075,23.87662],[75.52149,23.88493],[75.50567,23.88725],[75.50111,23.89779],[75.49165,23.90678],[75.47737,23.91152],[75.46597,23.9121],[75.46206,23.91476],[75.45939,23.92078],[75.46004,23.93242],[75.46531,23.94753],[75.46885,23.97445],[75.47468,23.98284],[75.48323,23.98755],[75.49227,23.99722],[75.50469,24.00596],[75.52105,24.02502],[75.53963,24.00906],[75.54822,24.00721],[75.56551,24.00768],[75.57235,23.99878],[75.57628,23.99716],[75.5758,23.99413],[75.57751,23.99414],[75.57953,23.99839],[75.581,23.99674],[75.58134,23.9914],[75.58791,23.99064],[75.59547,23.99447],[75.59552,23.99],[75.59802,23.99414],[75.60379,23.99545],[75.6071,23.99255],[75.61578,23.99659],[75.61977,23.99495],[75.62581,23.99639],[75.63,23.99505],[75.63502,23.99788],[75.64005,23.99789],[75.64108,24.00075],[75.64752,24.00351],[75.65163,24.00282],[75.65264,24.00397],[75.65049,24.00517],[75.6509,24.00631],[75.6546,24.00641],[75.6581,24.01024],[75.67434,24.01768],[75.67818,24.00731],[75.68772,24.00546],[75.68699,23.98877],[75.6925,23.98696],[75.69882,23.98784],[75.70173,23.96659],[75.71752,23.96686],[75.71828,23.96834],[75.72953,23.97025],[75.72893,23.97317],[75.73067,23.97678],[75.73621,23.97533],[75.74113,23.97694],[75.74145,23.98296],[75.74364,23.98629],[75.7434,23.98847],[75.74194,23.98864],[75.74225,23.99273],[75.75352,23.99098],[75.76534,23.99268],[75.76843,23.99753],[75.7685,24.00092],[75.76399,24.00537],[75.76266,24.00988],[75.77339,24.00787],[75.77677,24.01446],[75.77537,24.01411],[75.77528,24.01699],[75.78309,24.02214],[75.78057,24.03952],[75.78169,24.04253],[75.81045,24.04865],[75.81498,24.05154],[75.83672,24.05706],[75.83503,24.07351],[75.8357,24.09212],[75.81657,24.08547],[75.8057,24.09957],[75.79286,24.09185],[75.78762,24.0987],[75.78913,24.10419],[75.79089,24.10541],[75.7876,24.10479],[75.78327,24.10785],[75.78349,24.11409],[75.77864,24.11926],[75.77357,24.11899],[75.77003,24.11579],[75.76411,24.12119],[75.75449,24.11952],[75.74601,24.12127],[75.75162,24.14771],[75.75917,24.15547],[75.75871,24.15878],[75.76152,24.16209],[75.76031,24.16604],[75.76388,24.17],[75.76376,24.1745],[75.77394,24.18127],[75.77098,24.18897],[75.77259,24.19419],[75.7723,24.20103],[75.77563,24.20773],[75.77907,24.21047],[75.7928,24.21035],[75.7949,24.2147],[75.80737,24.21777],[75.80988,24.225],[75.80936,24.2297],[75.81568,24.22581],[75.81794,24.22947],[75.82365,24.22998],[75.83023,24.23376],[75.8255,24.23696],[75.81802,24.23872],[75.81798,24.24215],[75.81352,24.24537],[75.81474,24.24606],[75.81299,24.25047],[75.81922,24.25697],[75.81153,24.25774],[75.8142,24.2677],[75.81419,24.27128],[75.81257,24.27138],[75.81171,24.27528],[75.81319,24.27841],[75.81679,24.27837],[75.81844,24.28069],[75.81189,24.28549],[75.81365,24.28995],[75.81218,24.29331],[75.80893,24.29409],[75.81073,24.29609],[75.80652,24.29978],[75.80353,24.29843],[75.80183,24.30213],[75.78715,24.29872],[75.78581,24.29664],[75.76647,24.29802],[75.76096,24.3145],[75.75734,24.31925],[75.7488,24.32699],[75.73984,24.33215],[75.73822,24.33482],[75.74318,24.34005],[75.74212,24.34986],[75.7432,24.35168],[75.74075,24.35129],[75.73753,24.35356],[75.73997,24.36096],[75.73898,24.37824],[75.73689,24.3823],[75.73411,24.3784],[75.72949,24.37775],[75.72775,24.39052],[75.72791,24.39641],[75.73148,24.39872],[75.74279,24.39773],[75.74322,24.39934],[75.74952,24.40097],[75.7499,24.40438],[75.75531,24.40653],[75.75469,24.4167],[75.75589,24.42066],[75.74759,24.42289],[75.7476,24.42418],[75.75786,24.43115],[75.76179,24.43086],[75.7632,24.43317],[75.76656,24.43431],[75.77132,24.44172],[75.7741,24.44191],[75.77339,24.4497],[75.78119,24.44962],[75.78606,24.45326],[75.78427,24.4579],[75.78534,24.46788],[75.7894,24.47153],[75.80335,24.46825],[75.81347,24.46202],[75.81445,24.45036],[75.80986,24.43404],[75.81689,24.42942],[75.82484,24.42731],[75.82771,24.42167],[75.83557,24.41487],[75.83879,24.41418],[75.84201,24.41627],[75.84449,24.41549],[75.85548,24.41797],[75.86119,24.42155],[75.87509,24.42636],[75.87575,24.43037],[75.89037,24.43937],[75.90023,24.44222],[75.90306,24.44956],[75.90263,24.45379],[75.90906,24.45501],[75.90886,24.46218],[75.90539,24.47247],[75.91009,24.48309],[75.91164,24.49191],[75.90792,24.49237],[75.90393,24.49691],[75.90282,24.5046],[75.8982,24.50452],[75.88786,24.50807],[75.88988,24.51014],[75.89053,24.51883],[75.90112,24.51879],[75.90777,24.51296],[75.91138,24.5139],[75.92055,24.52166],[75.92334,24.53518],[75.92059,24.53588],[75.9161,24.54266],[75.90596,24.54537],[75.90367,24.54893],[75.90585,24.56276],[75.91219,24.56131],[75.91482,24.569],[75.91446,24.57225],[75.90645,24.57562],[75.89873,24.57628],[75.89412,24.57976],[75.87837,24.58339],[75.87219,24.59034],[75.87115,24.60666],[75.86284,24.60613],[75.86302,24.61003],[75.84924,24.61088],[75.84587,24.60948],[75.84579,24.60764],[75.84166,24.60702],[75.83837,24.59765],[75.83546,24.59495],[75.83253,24.59559],[75.83639,24.60615],[75.83275,24.60505],[75.82588,24.61073],[75.82485,24.61345],[75.82809,24.62043],[75.83716,24.6209],[75.83811,24.6231],[75.84181,24.62385],[75.84215,24.62625],[75.8447,24.62722],[75.8426,24.62808],[75.84627,24.63099],[75.84142,24.63494],[75.84097,24.63811],[75.84876,24.6474],[75.84691,24.65188],[75.84836,24.65749],[75.84691,24.66096],[75.84776,24.66302],[75.84126,24.66544],[75.83845,24.66863],[75.82494,24.66745],[75.82842,24.6722],[75.82853,24.67648],[75.83357,24.6882],[75.8378,24.71801],[75.83732,24.72505],[75.83413,24.72849],[75.83361,24.73185],[75.82646,24.73486],[75.80217,24.75646],[75.79797,24.75631],[75.78473,24.7618],[75.77757,24.76138],[75.76981,24.75843],[75.75683,24.76155],[75.74048,24.75502],[75.68342,24.72512],[75.65772,24.69299],[75.64596,24.68492],[75.61079,24.68041],[75.60851,24.68155],[75.59857,24.69808],[75.59057,24.70578],[75.58457,24.7083],[75.58297,24.71326],[75.58097,24.71177],[75.57534,24.71219],[75.57479,24.70777],[75.56319,24.70736],[75.55388,24.70446],[75.55201,24.70515],[75.54822,24.70294],[75.54009,24.70565],[75.53343,24.71205],[75.53025,24.70948],[75.51835,24.70588],[75.50633,24.69993],[75.48941,24.68665],[75.45646,24.68045],[75.43406,24.68211],[75.3918,24.69038],[75.3707,24.69239],[75.34904,24.7008],[75.32995,24.70298],[75.3204,24.7024],[75.28419,24.70892],[75.26853,24.71475],[75.2649,24.71751],[75.2517,24.7136],[75.24155,24.71344],[75.22838,24.71762],[75.22451,24.71516],[75.21944,24.70255],[75.20807,24.71934],[75.20404,24.73137],[75.19764,24.74325],[75.18763,24.74374],[75.18701,24.7475],[75.1844,24.74855],[75.19037,24.75341],[75.19291,24.77357],[75.20542,24.76946],[75.20811,24.77161],[75.20497,24.77045],[75.20158,24.77174],[75.20745,24.7812],[75.2047,24.7856],[75.20694,24.78837],[75.20727,24.79191],[75.2152,24.80212],[75.21867,24.80512],[75.2217,24.80322],[75.23303,24.80266],[75.24413,24.80471],[75.25032,24.80954],[75.25232,24.81311],[75.25426,24.81848],[75.25396,24.82427],[75.25006,24.82666],[75.24909,24.82982],[75.23238,24.83133],[75.2252,24.83398],[75.22622,24.84038],[75.22409,24.84392],[75.23691,24.84224],[75.24042,24.8457],[75.25023,24.84569],[75.26232,24.84221],[75.27294,24.84284],[75.28996,24.83366],[75.29031,24.8286],[75.2958,24.82026],[75.29486,24.81571],[75.29734,24.81269],[75.29794,24.80714],[75.30473,24.80205],[75.3116,24.80118],[75.31704,24.8039],[75.32843,24.81903],[75.33586,24.82217],[75.34541,24.82168],[75.36268,24.83002],[75.37171,24.83265],[75.38129,24.8382],[75.39602,24.84155],[75.40393,24.84516],[75.41239,24.85213],[75.41857,24.85441],[75.41971,24.85619],[75.41908,24.86201],[75.42576,24.86907],[75.42431,24.88084],[75.4258,24.88429],[75.4217,24.8861],[75.41613,24.88608],[75.40178,24.8827],[75.39598,24.87752],[75.37363,24.86774],[75.35053,24.87365],[75.33829,24.87276],[75.32664,24.87487],[75.32259,24.87315],[75.32277,24.86919],[75.31838,24.86061],[75.3153,24.85791],[75.30805,24.85604],[75.29463,24.85762],[75.29019,24.86621],[75.28111,24.86838],[75.27813,24.87274],[75.27436,24.87478],[75.26343,24.87486],[75.26231,24.88264],[75.2633,24.89108],[75.26507,24.89219],[75.26407,24.89521],[75.26731,24.89944],[75.2727,24.90405],[75.27733,24.89915],[75.2843,24.90796],[75.28674,24.90876],[75.29407,24.90755],[75.29348,24.91129],[75.28779,24.91983],[75.28784,24.92352],[75.27728,24.92494],[75.27926,24.93435],[75.27264,24.93594],[75.27293,24.93818],[75.26892,24.94223],[75.26708,24.94715],[75.26671,24.95088],[75.27082,24.95273],[75.27057,24.95713],[75.27292,24.95971],[75.27389,24.96404],[75.27779,24.96493],[75.27812,24.96375],[75.28219,24.96561],[75.28531,24.96478],[75.28187,24.95309],[75.2884,24.95161],[75.28677,24.94614],[75.29009,24.93766],[75.2977,24.93301],[75.30023,24.93336],[75.30487,24.92866],[75.30141,24.92628],[75.30088,24.92362],[75.30272,24.91987],[75.30859,24.91661],[75.31165,24.90758],[75.31527,24.89443],[75.31512,24.88934],[75.31274,24.88514],[75.31845,24.89416],[75.321,24.91279],[75.32583,24.91947],[75.32909,24.93415],[75.33528,24.94379],[75.33691,24.9554],[75.33157,24.95764],[75.32702,24.96744],[75.32723,24.97097],[75.31847,24.97413],[75.31346,24.98001],[75.31177,24.99537],[75.31653,25.00556],[75.32054,25.00677],[75.33298,25.01665],[75.33926,25.01932],[75.33914,25.01728],[75.35035,25.01753],[75.35021,25.0224],[75.34272,25.03072],[75.34639,25.03073],[75.34718,25.03214],[75.33216,25.04149],[75.32514,25.03917],[75.3011,25.04174],[75.29397,25.03906],[75.28319,25.03806],[75.27385,25.03951],[75.26838,25.04244],[75.2539,25.03949],[75.25,25.0358],[75.24504,25.03502],[75.23012,25.03705],[75.22512,25.0341],[75.22053,25.03704],[75.21784,25.03488],[75.20537,25.03947],[75.19974,25.03667],[75.19859,25.03327],[75.155,25.03399],[75.1521,25.03114],[75.15163,25.02036],[75.15673,25.02112],[75.16388,25.01664],[75.16857,25.00593],[75.16613,25.00592],[75.16633,25.00288],[75.15868,25.0011],[75.15582,24.99364],[75.15312,24.99475],[75.15177,24.98907],[75.14186,24.98993],[75.13936,24.98566],[75.13723,24.98619],[75.13219,24.98361],[75.13023,24.97962],[75.13845,24.97985],[75.14149,24.97818],[75.13559,24.97604],[75.12757,24.96788],[75.11356,24.96681],[75.11508,24.94387],[75.11412,24.93644],[75.11837,24.9256],[75.11677,24.9218],[75.11643,24.91059],[75.11949,24.91018],[75.11592,24.90621],[75.11324,24.89971],[75.11334,24.89724],[75.1161,24.89706],[75.11741,24.89501],[75.1144,24.89277],[75.11625,24.8919],[75.11853,24.88525],[75.11892,24.8823],[75.11693,24.87826],[75.11249,24.87852],[75.09849,24.87245],[75.08719,24.87079],[75.08821,24.87871],[75.07653,24.88068],[75.06544,24.86802],[75.06386,24.86769],[75.06277,24.87148],[75.05531,24.87189],[75.05548,24.86983],[75.05936,24.86688],[75.05993,24.86361],[75.05659,24.86214],[75.05186,24.85589],[75.05131,24.85267],[75.04716,24.84958],[75.04145,24.84921],[75.04196,24.84697],[75.03888,24.84555],[75.03305,24.84441],[75.02099,24.84857],[75.01476,24.854],[75.00831,24.85642],[75.00157,24.85612],[74.99388,24.85346],[74.99218,24.85457],[74.98491,24.8533],[74.98402,24.85685],[74.98057,24.85865],[74.96811,24.85612],[74.95866,24.85819],[74.95676,24.8607],[74.94821,24.86457],[74.95193,24.87416],[74.9519,24.87646],[74.95088,24.87601],[74.95261,24.88068],[74.94925,24.88145],[74.94498,24.87891],[74.94108,24.8794],[74.94128,24.8807],[74.93223,24.88131],[74.93159,24.8754],[74.9267,24.87981],[74.9239,24.8783],[74.92066,24.88487],[74.91553,24.88759],[74.91041,24.89437],[74.91638,24.90729],[74.913,24.90869],[74.91334,24.91618],[74.9078,24.91829],[74.90245,24.93],[74.89195,24.92974],[74.88785,24.93755],[74.8807,24.93736],[74.87939,24.92998],[74.86948,24.92497],[74.86571,24.93502],[74.86258,24.95318],[74.85911,24.95579],[74.85942,24.96158],[74.85756,24.96389],[74.85176,24.96707],[74.84815,24.96614],[74.84263,24.96885],[74.83322,24.95972],[74.83386,24.94413],[74.82638,24.93352],[74.82653,24.92451],[74.82489,24.92291],[74.82529,24.90015],[74.83074,24.88693],[74.83748,24.88726],[74.84037,24.88482],[74.84657,24.8605],[74.84997,24.85737],[74.85107,24.85129],[74.85851,24.83962],[74.86085,24.82246],[74.85953,24.80771],[74.86152,24.80414],[74.8387,24.79804],[74.8405,24.78974],[74.84832,24.77967],[74.84937,24.77613],[74.86017,24.77942],[74.86094,24.78543],[74.85911,24.79588],[74.86043,24.79849],[74.87932,24.79738],[74.88042,24.78941],[74.89211,24.7836],[74.90671,24.78183],[74.91042,24.77042],[74.91453,24.7692],[74.92129,24.7707],[74.93089,24.7791],[74.93739,24.77836],[74.94061,24.77474],[74.94798,24.77199],[74.95343,24.77368],[74.96477,24.76932],[74.96915,24.77061],[74.97202,24.76378],[74.97562,24.76369],[74.98171,24.76412],[74.98441,24.76883],[74.99041,24.76923],[74.99912,24.77475],[75.00149,24.77452],[75.00693,24.77125],[75.01515,24.74012],[75.0144,24.7347],[75.01603,24.73212],[74.99239,24.73175],[74.99388,24.72601],[74.99193,24.69322],[75.00046,24.69184],[75.00172,24.68642],[74.99339,24.68281],[74.98305,24.68195],[74.97631,24.67875],[74.96019,24.67777],[74.96489,24.67029],[74.96076,24.66547],[74.96228,24.65642],[74.96128,24.65604],[74.95855,24.66093],[74.95646,24.65579],[74.95302,24.65374],[74.95403,24.65196],[74.9513,24.64724],[74.94976,24.64972],[74.94741,24.64572],[74.94382,24.64809],[74.9422,24.64714],[74.9441,24.6419],[74.94309,24.6378],[74.9408,24.64059],[74.93915,24.63795],[74.93704,24.63801],[74.93601,24.63979],[74.92917,24.63546],[74.92493,24.63791],[74.91976,24.63625],[74.91724,24.63777],[74.91386,24.637],[74.91149,24.63885],[74.90945,24.63792],[74.90526,24.64087],[74.90136,24.63704],[74.90182,24.63281],[74.89811,24.63757],[74.89861,24.64186],[74.89498,24.64394],[74.89249,24.64249],[74.89402,24.6418],[74.89398,24.63781],[74.88908,24.63383],[74.88323,24.63822],[74.88439,24.64142],[74.8782,24.64681],[74.87655,24.64285],[74.87323,24.64647],[74.87378,24.64968],[74.87166,24.6505],[74.87139,24.65255],[74.87558,24.65266],[74.86837,24.65741],[74.86869,24.66305],[74.86489,24.66549],[74.86499,24.66962],[74.86355,24.66965],[74.86077,24.67436],[74.85796,24.67436],[74.86014,24.67894],[74.85938,24.68284],[74.8525,24.68422],[74.85309,24.67818],[74.8515,24.67767],[74.85018,24.6842],[74.8545,24.68765],[74.84948,24.68791],[74.84639,24.69623],[74.8481,24.69977],[74.84373,24.6987],[74.83583,24.70674],[74.83689,24.70773],[74.82985,24.72042],[74.83044,24.72777],[74.82321,24.73504],[74.8161,24.74801],[74.81441,24.76064],[74.8088,24.78105],[74.79978,24.77907],[74.79921,24.76377],[74.80397,24.73397],[74.78909,24.7318],[74.78484,24.72814],[74.78211,24.72881],[74.7796,24.73245],[74.78761,24.70418],[74.78451,24.70171],[74.78431,24.69176],[74.78074,24.68419],[74.7777,24.68132],[74.77194,24.66148],[74.77428,24.65948],[74.78055,24.6605],[74.78169,24.65818],[74.78394,24.65775],[74.79022,24.65987],[74.79075,24.66508],[74.798,24.66397],[74.80072,24.6666],[74.80359,24.66536],[74.81458,24.66575],[74.81367,24.65932],[74.81626,24.65855],[74.81414,24.65018],[74.81175,24.65205],[74.80631,24.6484],[74.80294,24.6342],[74.79652,24.63467],[74.79128,24.63178],[74.79021,24.62228],[74.79174,24.61977],[74.78575,24.61929],[74.7794,24.61544],[74.78075,24.60536],[74.78282,24.60542],[74.78333,24.59436],[74.78596,24.59416],[74.78643,24.58593],[74.78063,24.58569],[74.77813,24.58147],[74.76685,24.57856],[74.76684,24.57967],[74.7601,24.57944],[74.76007,24.57766],[74.7582,24.57716],[74.75278,24.57964],[74.75198,24.57743],[74.75329,24.57435],[74.74915,24.57464],[74.74351,24.57146],[74.75359,24.5536],[74.75275,24.54408],[74.75553,24.53488],[74.74422,24.53231],[74.74358,24.52748],[74.7458,24.52535],[74.74653,24.51969],[74.74463,24.51346],[74.72467,24.51318],[74.72478,24.51204],[74.71814,24.50898],[74.71216,24.50046],[74.70873,24.48647],[74.72036,24.48916],[74.72795,24.48908],[74.7317,24.4808],[74.74432,24.47372],[74.74609,24.46978],[74.74815,24.46992],[74.75012,24.4667],[74.76566,24.46677],[74.76942,24.46321],[74.77714,24.4605],[74.78694,24.47224],[74.80618,24.4671],[74.81535,24.46847],[74.82176,24.45311],[74.81899,24.45269],[74.81375,24.43674],[74.83009,24.43514],[74.83228,24.43836],[74.83188,24.4421],[74.83393,24.44318],[74.84136,24.44101],[74.84713,24.44244],[74.85141,24.4456],[74.85387,24.44453],[74.85523,24.4409],[74.85379,24.43628],[74.8551,24.42414],[74.8474,24.4204],[74.83977,24.40814],[74.83498,24.40649],[74.83024,24.40152],[74.82519,24.40002],[74.82492,24.38826],[74.82259,24.37959],[74.81731,24.37949],[74.81096,24.38254],[74.80726,24.38083],[74.80842,24.37655],[74.80107,24.36437],[74.80199,24.35855],[74.79406,24.35126],[74.79089,24.34486],[74.78118,24.33834],[74.77886,24.32386],[74.78314,24.31935],[74.78366,24.31451],[74.78075,24.30599],[74.78132,24.28917],[74.77515,24.28242],[74.77461,24.27805],[74.76728,24.27407],[74.74918,24.25841],[74.74711,24.25347],[74.75435,24.24455],[74.75432,24.24217],[74.75874,24.24328],[74.76222,24.24118],[74.77483,24.23871],[74.78687,24.23975],[74.79504,24.24316],[74.81082,24.24418],[74.82328,24.23982],[74.83332,24.23986],[74.83926,24.23727],[74.85178,24.23674],[74.86758,24.24309],[74.87792,24.23782],[74.88714,24.22969],[74.8971,24.22729],[74.89802,24.21434],[74.90577,24.21305],[74.91034,24.21011],[74.907,24.20066],[74.90235,24.19723],[74.89903,24.19067],[74.89447,24.19019],[74.89053,24.18772],[74.8845,24.18224],[74.87975,24.17361],[74.88171,24.1731],[74.8821,24.17028],[74.88473,24.16994],[74.8865,24.16572],[74.88974,24.16545],[74.89064,24.16262],[74.89611,24.15795],[74.8954,24.15306],[74.90207,24.13899],[74.90124,24.12604],[74.90824,24.12124],[74.90352,24.1093],[74.90847,24.10462],[74.9152,24.10262],[74.91817,24.09806],[74.9177,24.09093],[74.92066,24.08685],[74.91874,24.08099],[74.92088,24.08024],[74.9209,24.07754],[74.92747,24.07439],[74.93239,24.07429],[74.94068,24.06992],[74.93839,24.06212],[74.93934,24.05392],[74.94579,24.0495],[74.95531,24.0486],[74.95535,24.04696],[74.96006,24.04603],[74.96057,24.03884],[74.96603,24.03894],[74.96843,24.041],[74.97405,24.04028],[74.97899,24.03672],[74.97868,24.03216],[74.9823,24.02541],[74.97647,24.02063],[74.97226,24.01326],[74.96482,24.00594],[74.96339,24.0022],[74.96315,23.99807],[74.96469,23.99583],[74.9625,23.98918],[74.96272,23.97874],[74.95914,23.97216],[74.9472,23.9626],[74.93075,23.95699],[74.92907,23.95444],[74.92824,23.9394],[74.91651,23.93175],[74.91621,23.92989],[74.92121,23.92413],[74.9209,23.91909],[74.91292,23.91107],[74.91049,23.90629],[74.90819,23.88162],[74.90262,23.87295],[74.90404,23.86925],[74.90367,23.85274],[74.90601,23.84807],[74.9124,23.84595],[74.91384,23.84168],[74.9089,23.83572],[74.91159,23.82614],[74.90854,23.82293],[74.90638,23.81583],[74.90676,23.80444],[74.90389,23.79849],[74.90371,23.79431],[74.92434,23.79662],[74.92848,23.78789],[74.93199,23.7842],[74.93531,23.77329],[74.93882,23.77013],[74.9404,23.76474],[74.93425,23.75792],[74.92452,23.75639],[74.92633,23.7517],[74.93032,23.74956],[74.92996,23.7401],[74.93177,23.73434],[74.9351,23.73284],[74.93638,23.72958],[74.92862,23.72801],[74.92798,23.72406],[74.92526,23.7234],[74.92658,23.72021],[74.92445,23.7184],[74.92023,23.71918],[74.92014,23.71107],[74.9183,23.70563],[74.92159,23.69465],[74.91772,23.69065],[74.89959,23.68402],[74.89946,23.6822],[74.9042,23.68014],[74.90384,23.67474],[74.9071,23.67458],[74.90801,23.6711],[74.91754,23.66941],[74.92168,23.66649],[74.92429,23.65721],[74.92401,23.65065],[74.92841,23.64155],[74.9361,23.63958],[74.93654,23.62877],[74.92735,23.62525],[74.92746,23.6219],[74.92444,23.61999],[74.91499,23.61811],[74.91107,23.61916],[74.91003,23.62222],[74.90679,23.62446],[74.90294,23.6251],[74.90363,23.62314],[74.90087,23.61863],[74.90165,23.61758],[74.89776,23.6161],[74.89361,23.6095],[74.88506,23.6081],[74.88468,23.60663],[74.88208,23.60618],[74.87985,23.59522],[74.86991,23.59193],[74.8709,23.58552],[74.87331,23.58159],[74.87336,23.5769],[74.87137,23.57827],[74.86827,23.57417],[74.85691,23.57393],[74.85351,23.57099],[74.85252,23.56415],[74.85012,23.56068],[74.85089,23.55876],[74.84846,23.55607],[74.84878,23.5544],[74.84663,23.55406],[74.84683,23.55186],[74.84029,23.54988],[74.82923,23.55055],[74.82212,23.54085],[74.81807,23.54237],[74.81032,23.54082],[74.80648,23.53813],[74.8033,23.53308],[74.79901,23.5381],[74.79411,23.55088],[74.77368,23.54437],[74.77092,23.54239],[74.76723,23.53557],[74.76689,23.53086],[74.76237,23.5264],[74.76151,23.52114],[74.73529,23.52057],[74.73468,23.51821],[74.73912,23.51379],[74.73405,23.50818],[74.73294,23.50144],[74.72924,23.49662],[74.72373,23.49629],[74.71872,23.50323],[74.70349,23.50501],[74.69674,23.50266],[74.68653,23.49474],[74.68034,23.49478],[74.68217,23.48789],[74.68131,23.48523],[74.67703,23.48273],[74.66606,23.4825],[74.66642,23.47752],[74.65895,23.4673],[74.65188,23.46228],[74.63872,23.46356],[74.6368,23.46728],[74.63277,23.46951],[74.63354,23.46707],[74.63187,23.46139],[74.61623,23.45978],[74.6127,23.46193],[74.60389,23.45726],[74.60974,23.45367],[74.60991,23.45163],[74.60617,23.44453],[74.59932,23.43726],[74.59907,23.42875],[74.59657,23.42828],[74.59425,23.42415],[74.58718,23.42651],[74.58184,23.42156],[74.57507,23.42321],[74.57235,23.42067],[74.56995,23.4126],[74.57304,23.39636],[74.56657,23.38614],[74.56949,23.37839],[74.56894,23.3763],[74.56513,23.37285],[74.55925,23.37118],[74.55769,23.368],[74.5577,23.36191],[74.55469,23.36129],[74.54663,23.3649],[74.54239,23.36466],[74.53982,23.36187],[74.54156,23.35749],[74.53819,23.34599],[74.5401,23.33625],[74.53527,23.33082],[74.51404,23.32805],[74.51503,23.3161],[74.52362,23.32113],[74.52973,23.32067],[74.53108,23.3128],[74.52792,23.31075],[74.53192,23.30636],[74.53427,23.30065],[74.53957,23.2997],[74.54147,23.28673],[74.54667,23.27712],[74.54967,23.27861],[74.55348,23.27747],[74.55647,23.27843],[74.56337,23.28826],[74.56321,23.29269],[74.56824,23.29518],[74.57437,23.29517],[74.57369,23.28922],[74.57685,23.28481],[74.57934,23.28461],[74.58528,23.27951],[74.58499,23.27694],[74.58922,23.27904],[74.59829,23.27694],[74.60168,23.28023],[74.60795,23.28246],[74.61689,23.27938],[74.62185,23.27367],[74.62484,23.27387],[74.62391,23.27179],[74.62681,23.25869],[74.63856,23.25541],[74.64856,23.25593],[74.66378,23.26741],[74.67314,23.26996],[74.67676,23.27381],[74.68622,23.26759],[74.69243,23.26584],[74.69996,23.26837],[74.70107,23.26466],[74.69878,23.25731],[74.70767,23.25483],[74.71277,23.25053],[74.71297,23.2428],[74.71511,23.23668],[74.70881,23.23142],[74.70589,23.23152],[74.70423,23.22885],[74.69167,23.22559],[74.69207,23.21915],[74.70284,23.21458],[74.71711,23.21961],[74.73401,23.22061],[74.74128,23.22475],[74.74099,23.22643],[74.74752,23.22665],[74.74891,23.22376],[74.74056,23.21768],[74.74443,23.21166],[74.74214,23.20891],[74.72505,23.20089],[74.72453,23.1966],[74.7151,23.19071],[74.70808,23.19423],[74.69881,23.1923],[74.68187,23.19387],[74.67154,23.19996],[74.66425,23.19516],[74.6493,23.17522],[74.63271,23.16395],[74.62494,23.16172],[74.6184,23.15037],[74.60661,23.14256],[74.5965,23.13789],[74.58549,23.13975],[74.57678,23.13418],[74.57223,23.13315],[74.53937,23.1293],[74.54479,23.11971],[74.54642,23.11435],[74.54551,23.10984],[74.53934,23.10334],[74.53144,23.09907],[74.52338,23.09626],[74.51485,23.09628],[74.51028,23.09446],[74.50691,23.0914],[74.50908,23.08675],[74.50586,23.08514],[74.4992,23.08688],[74.49174,23.0859],[74.48924,23.08768],[74.47472,23.08365],[74.47439,23.08166],[74.46702,23.08303],[74.46384,23.08179],[74.45773,23.08463],[74.45408,23.08833],[74.44072,23.09068],[74.44039,23.09518],[74.43225,23.1049],[74.42738,23.1067],[74.42158,23.10437],[74.40631,23.11202],[74.39836,23.11011],[74.39217,23.11117],[74.38974,23.10962],[74.38905,23.11147],[74.3862,23.11152],[74.37741,23.10637],[74.35629,23.08865],[74.35439,23.08604],[74.35589,23.07981],[74.3416,23.0679],[74.33281,23.06219],[74.3209,23.06142],[74.3189,23.05866],[74.32193,23.04122],[74.32758,23.0366],[74.33979,23.03267],[74.34494,23.0284],[74.34665,23.02414],[74.34686,23.01399],[74.34938,23.00685],[74.36532,22.97697],[74.36431,22.97551],[74.36104,22.97659],[74.35045,22.97428],[74.34969,22.97147],[74.33936,22.96472],[74.33741,22.95669],[74.3395,22.95289],[74.35767,22.93921],[74.35735,22.93401],[74.35905,22.93007],[74.3625,22.92606],[74.3706,22.92173],[74.37756,22.9072],[74.38546,22.90455],[74.39341,22.8966],[74.40166,22.89773],[74.4041,22.8993],[74.40445,22.90359],[74.40824,22.90617],[74.4136,22.90609],[74.41052,22.91184],[74.41848,22.91704],[74.43323,22.91795],[74.43363,22.91249],[74.44095,22.91851],[74.44406,22.91875],[74.44683,22.92108],[74.44941,22.91739],[74.45754,22.91193],[74.46076,22.90684],[74.46389,22.89827],[74.46399,22.88644],[74.47025,22.87753],[74.46876,22.86941],[74.4702,22.86377],[74.47643,22.85482],[74.4706,22.84107],[74.46477,22.81639],[74.44922,22.8083],[74.43378,22.8079],[74.43788,22.79204],[74.43554,22.7826],[74.42136,22.75675],[74.41792,22.75625],[74.41596,22.75406],[74.41602,22.7488],[74.41388,22.74304],[74.40891,22.74026],[74.4017,22.73097],[74.39694,22.71355],[74.39953,22.70938],[74.39781,22.70387],[74.3944,22.69961],[74.39498,22.68564],[74.38198,22.66751],[74.38066,22.6584],[74.38429,22.64629],[74.37961,22.64037],[74.37906,22.63443],[74.37451,22.63594],[74.35909,22.63399],[74.3376,22.64029],[74.33212,22.63872],[74.32935,22.64173],[74.32278,22.6407],[74.32372,22.63595],[74.3148,22.63387],[74.31197,22.63645],[74.29321,22.63791],[74.27737,22.646],[74.27182,22.63916],[74.26615,22.63835],[74.26667,22.64211],[74.26356,22.64397],[74.25882,22.63685],[74.25358,22.63466],[74.25512,22.62349],[74.2534,22.62148],[74.2496,22.61969],[74.24351,22.62051],[74.24066,22.61187],[74.23137,22.6118],[74.23112,22.60794],[74.22543,22.59604],[74.22183,22.58357],[74.21125,22.57486],[74.21003,22.56426],[74.2046,22.56581],[74.20369,22.56873],[74.20048,22.56573],[74.19359,22.56882],[74.18578,22.56582],[74.1833,22.56649],[74.1901,22.55947],[74.18951,22.5536],[74.18031,22.54818],[74.17069,22.54715],[74.16009,22.53588],[74.15607,22.53488],[74.15212,22.53038],[74.15242,22.52006],[74.14732,22.51369],[74.14064,22.51765],[74.12803,22.51727],[74.12258,22.52165],[74.10248,22.53103],[74.09462,22.53993],[74.08408,22.54475],[74.07464,22.5514],[74.05656,22.55007],[74.04114,22.54179],[74.03789,22.53451],[74.03678,22.52581],[74.03902,22.52151],[74.03851,22.51584],[74.02938,22.50795],[74.03339,22.4899],[74.0367,22.48694],[74.0408,22.48655],[74.0438,22.49658],[74.04642,22.4992],[74.04972,22.49951],[74.05437,22.50956],[74.07196,22.50821],[74.07742,22.50606],[74.08252,22.50678],[74.08253,22.49571],[74.08619,22.49158],[74.0852,22.48799],[74.08754,22.48222],[74.08601,22.47681],[74.08217,22.48444],[74.07885,22.48527],[74.07646,22.48358],[74.07353,22.47765],[74.076,22.46941],[74.07533,22.4643],[74.08566,22.46991],[74.09064,22.46634],[74.09544,22.46818],[74.10415,22.46453],[74.1034,22.45574],[74.10156,22.45555],[74.1004,22.45146],[74.09697,22.45027],[74.09841,22.44872],[74.09975,22.43804],[74.10132,22.43527],[74.10341,22.43727],[74.10445,22.43627],[74.10491,22.42951],[74.10684,22.42971],[74.1093,22.42638],[74.11667,22.42445],[74.11911,22.41876],[74.12474,22.41733],[74.12775,22.42204],[74.12773,22.42643],[74.12629,22.42667],[74.12796,22.42691],[74.1282,22.43522],[74.13016,22.43504],[74.12903,22.43606],[74.1311,22.43777],[74.13056,22.43958],[74.13395,22.44592],[74.13585,22.44717],[74.14276,22.44687],[74.14921,22.45566],[74.15526,22.4541],[74.15254,22.44306],[74.15553,22.43633],[74.16045,22.43121],[74.16528,22.43021],[74.16975,22.43183],[74.1695,22.43926],[74.18413,22.44154],[74.18534,22.45096],[74.18058,22.45464],[74.17993,22.46222],[74.18227,22.46775],[74.18706,22.4721],[74.1879,22.47551],[74.1934,22.47548],[74.19898,22.47297],[74.20323,22.46704],[74.20246,22.45638],[74.20422,22.45142],[74.20162,22.43451],[74.21338,22.43151],[74.21524,22.4413],[74.22159,22.43776],[74.22623,22.43762],[74.2274,22.43892],[74.23628,22.4352],[74.25279,22.43295],[74.2532,22.43096],[74.26248,22.4236],[74.26261,22.41816],[74.27059,22.41315],[74.26746,22.40555],[74.29118,22.39401],[74.28906,22.39229],[74.27941,22.3948],[74.27483,22.3921],[74.2707,22.39269],[74.25674,22.39965],[74.25429,22.38583],[74.25103,22.38262],[74.24276,22.38242],[74.24329,22.37605],[74.22371,22.37994],[74.22236,22.37505],[74.22495,22.36875],[74.22214,22.36463],[74.22451,22.36051],[74.22388,22.35637],[74.21057,22.36069],[74.20783,22.36466],[74.20404,22.36671],[74.20277,22.34852],[74.19793,22.34265],[74.19614,22.34319],[74.1943,22.3484],[74.1922,22.34633],[74.19283,22.3324],[74.19033,22.32026],[74.16457,22.3243],[74.1562,22.32726],[74.15408,22.3296],[74.1506,22.32684],[74.14448,22.32819],[74.14214,22.32712],[74.13411,22.3326],[74.12786,22.33274],[74.12531,22.33742],[74.12739,22.3415],[74.12512,22.3561],[74.12123,22.35767],[74.11776,22.35616],[74.11367,22.35715],[74.11209,22.36688],[74.10507,22.37182],[74.09567,22.37111],[74.09207,22.36085],[74.088,22.3598],[74.08261,22.36171],[74.07078,22.36129],[74.06789,22.3599],[74.067,22.35634],[74.06477,22.35461],[74.06647,22.35019],[74.06956,22.34895],[74.0722,22.34348],[74.07157,22.33599],[74.06458,22.33186],[74.06144,22.31168],[74.06244,22.30492],[74.05958,22.3037],[74.05906,22.30577],[74.05376,22.30375],[74.05432,22.29748],[74.05238,22.29409],[74.05597,22.28992],[74.05472,22.28284],[74.0588,22.27462],[74.06592,22.26889],[74.06777,22.26541],[74.07448,22.26564],[74.07504,22.24756],[74.08388,22.24694],[74.08718,22.24279],[74.0839,22.23925],[74.07404,22.23819],[74.06933,22.23272],[74.07217,22.21916],[74.09204,22.2205],[74.09633,22.21996],[74.09721,22.21835],[74.10621,22.22025],[74.11105,22.2181],[74.11273,22.21404],[74.11708,22.21612],[74.12233,22.2124],[74.1222,22.21043],[74.11738,22.20647],[74.12165,22.19474],[74.11813,22.18535],[74.11883,22.18298],[74.1208,22.18224],[74.12022,22.179],[74.12265,22.17206],[74.12144,22.1674],[74.12486,22.16413],[74.13178,22.1631],[74.13386,22.16054],[74.13145,22.15897],[74.13017,22.1547],[74.13055,22.14443],[74.1269,22.1431],[74.12456,22.13608],[74.12278,22.13568],[74.12335,22.12761],[74.12833,22.12449],[74.12885,22.12104],[74.12446,22.09791],[74.12627,22.0984],[74.12849,22.09465],[74.15256,22.10601],[74.15371,22.1004],[74.15694,22.09962],[74.16285,22.1018],[74.16929,22.1006],[74.16714,22.09735],[74.16936,22.09694],[74.17034,22.09181],[74.17594,22.08969],[74.17865,22.08548],[74.16472,22.08285],[74.16395,22.07344],[74.15862,22.06971],[74.16104,22.06024],[74.16008,22.05882],[74.15444,22.05894],[74.15502,22.05781],[74.13629,22.05293],[74.13141,22.04783],[74.13144,22.04622],[74.13899,22.0434],[74.14015,22.04032],[74.12366,22.03609],[74.12155,22.03467],[74.12123,22.03219],[74.11535,22.02978],[74.11566,22.02548],[74.11428,22.02444],[74.095,22.01898],[74.09214,22.01483],[74.09638,22.00989],[74.09968,22.00142],[74.09991,22.0],[74.09677,22.0],[74.09801,21.99831],[74.09944,21.9995],[74.1128,21.99945],[74.11491,21.9979],[74.11843,21.99893],[74.12044,21.9957],[74.12722,21.99559],[74.14022,21.99048],[74.14374,21.99085],[74.1455,21.98774],[74.14796,21.98848],[74.15059,21.98659],[74.14865,21.98343],[74.14989,21.97517],[74.14754,21.97415],[74.14421,21.9754],[74.14034,21.97267],[74.14178,21.9702],[74.13984,21.96764],[74.1413,21.96384],[74.14276,21.96362],[74.14335,21.96124],[74.1458,21.96207],[74.14755,21.96072],[74.14296,21.95834],[74.14188,21.95574],[74.14417,21.95313],[74.15949,21.94971],[74.17002,21.94298],[74.17764,21.93255],[74.18184,21.92942],[74.19308,21.92597],[74.24153,21.93025],[74.26248,21.93402],[74.28118,21.93311],[74.28647,21.93611],[74.2912,21.94296],[74.29397,21.95757],[74.29718,21.96338],[74.30764,21.97176],[74.31397,21.97376],[74.33871,21.97376],[74.34842,21.977],[74.35373,21.98032],[74.36085,21.99031],[74.37582,22.00059],[74.38345,22.01619],[74.38712,22.01998],[74.39193,22.02218],[74.41515,22.02494],[74.43164,22.03027],[74.4435,22.02323],[74.43874,22.02084],[74.44387,22.01663],[74.44363,22.01117],[74.44801,22.00919],[74.44916,22.00596],[74.45218,22.00465],[74.44741,22.00063],[74.44536,22.0005],[74.44234,22.00318],[74.43798,22.00007],[74.43233,21.9994],[74.43309,21.99764],[74.43815,21.99734],[74.43978,21.99472],[74.43882,21.99089],[74.44146,21.99004],[74.43883,21.98717],[74.43939,21.97672],[74.44469,21.97548],[74.44451,21.97039],[74.45338,21.96194],[74.46109,21.96145],[74.46385,21.96607],[74.4676,21.96558],[74.46972,21.9671],[74.47137,21.96364],[74.46872,21.96108],[74.4691,21.95964],[74.47384,21.96104],[74.48159,21.95917],[74.48203,21.95475],[74.48873,21.95617],[74.49047,21.95123],[74.48449,21.94741],[74.48467,21.94581],[74.48908,21.94341],[74.49522,21.94681],[74.49712,21.94174],[74.5,21.9393],[74.50839,21.93734],[74.51256,21.93189],[74.50923,21.92064],[74.51266,21.9156],[74.51681,21.91582],[74.52405,21.91116],[74.5228,21.89909],[74.51364,21.88997],[74.51389,21.86266],[74.51001,21.82927],[74.50661,21.81638],[74.50021,21.80652],[74.49974,21.79239],[74.49821,21.79009],[74.50164,21.78152],[74.50972,21.77282],[74.51395,21.76569],[74.51163,21.75985],[74.51309,21.75658],[74.50897,21.75],[74.51204,21.74521],[74.51002,21.73743],[74.51107,21.73531],[74.50772,21.73168],[74.50802,21.72754],[74.50559,21.72631],[74.51386,21.71861],[74.53323,21.71689],[74.54737,21.7196],[74.556,21.70432],[74.55751,21.70427],[74.55538,21.69699],[74.55657,21.69282],[74.5549,21.69086],[74.55756,21.6874],[74.55416,21.68573],[74.5542,21.68136],[74.56238,21.68115],[74.56238,21.68343],[74.57987,21.68333],[74.58386,21.6733],[74.58208,21.66499],[74.61751,21.66047],[74.6224,21.65679],[74.66413,21.65253],[74.66488,21.6473],[74.66836,21.64828],[74.67104,21.64552],[74.67483,21.6465],[74.67747,21.64543],[74.67545,21.64472],[74.68396,21.6395],[74.68516,21.63365],[74.68746,21.63159],[74.69318,21.63281],[74.69989,21.63011],[74.70075,21.62758],[74.73412,21.62072],[74.77536,21.61549],[74.78287,21.61069],[74.78988,21.61276],[74.79808,21.60992],[74.79963,21.61435],[74.80217,21.6154],[74.80285,21.61411],[74.80687,21.61463],[74.80811,21.61223],[74.81232,21.61384],[74.81285,21.61078],[74.81959,21.6087],[74.82649,21.61141],[74.82886,21.60979],[74.8306,21.61171],[74.83133,21.61829],[74.83934,21.61881],[74.8381,21.62211],[74.84988,21.62388],[74.85668,21.6266],[74.86276,21.63445],[74.86538,21.62856],[74.8679,21.62848],[74.86798,21.63101],[74.87181,21.63182],[74.87199,21.62982],[74.87547,21.63074],[74.87803,21.62852],[74.87884,21.63008],[74.88402,21.63106],[74.88589,21.62941],[74.88733,21.63159],[74.89011,21.62929],[74.89139,21.63065],[74.89792,21.62826],[74.90168,21.62924],[74.91033,21.61457],[74.93534,21.60598],[74.97923,21.59524],[74.99906,21.58565],[75.01534,21.57523],[75.01502,21.56968],[75.05332,21.56482],[75.08682,21.51789],[75.08665,21.51585],[75.08921,21.51676],[75.08978,21.50346],[75.08846,21.50088],[75.09745,21.48819],[75.10195,21.47428],[75.10775,21.46667],[75.10716,21.46269],[75.12988,21.44717],[75.17012,21.43157],[75.17999,21.43055],[75.20692,21.41272],[75.2147,21.40957],[75.22119,21.40849],[75.2287,21.41426],[75.23465,21.41458],[75.2414,21.41155],[75.24907,21.40348],[75.25484,21.40189],[75.26422,21.4074],[75.28017,21.40723],[75.28737,21.41188],[75.29533,21.41357],[75.3011,21.40994],[75.29858,21.40122],[75.30013,21.3917],[75.29624,21.39023],[75.29874,21.38557],[75.30785,21.39279],[75.31541,21.38793],[75.33194,21.39136],[75.3516,21.39083],[75.35438,21.39316],[75.35563,21.40015],[75.35716,21.40087],[75.36597,21.39649],[75.37044,21.39209],[75.37541,21.39049],[75.37591,21.38661],[75.38244,21.37954],[75.39018,21.38087],[75.39792,21.37988],[75.40779,21.38738],[75.4204,21.38782],[75.42613,21.39101],[75.43118,21.38671],[75.44015,21.38446],[75.44933,21.39041],[75.45755,21.38745],[75.46794,21.39045],[75.47575,21.38658],[75.49416,21.38561],[75.49755,21.38751],[75.51201,21.38209],[75.52005,21.38702],[75.52551,21.38005],[75.53086,21.3787],[75.53502,21.37357],[75.54138,21.37341],[75.5412,21.36934],[75.54372,21.36853],[75.54645,21.36881],[75.54617,21.37242],[75.55242,21.3753],[75.55593,21.37903],[75.55827,21.37852],[75.5564,21.37461],[75.55717,21.37322],[75.56215,21.37629],[75.56577,21.37414],[75.57895,21.37648],[75.57994,21.37774],[75.57848,21.37895],[75.57145,21.37951],[75.57234,21.38247],[75.58155,21.38464],[75.58734,21.38923],[75.59169,21.38624],[75.59653,21.38771],[75.59921,21.38565],[75.60364,21.39123],[75.60694,21.39184],[75.60729,21.38895],[75.61051,21.3907],[75.61632,21.38809],[75.61667,21.38177],[75.6198,21.37897],[75.62002,21.37596],[75.62352,21.37708],[75.62303,21.37502],[75.63641,21.37742],[75.64127,21.37488],[75.64661,21.37874],[75.64817,21.37699],[75.65772,21.37877],[75.65922,21.37641],[75.66585,21.37745],[75.67009,21.37458],[75.67375,21.37708],[75.6848,21.38025],[75.68761,21.38408],[75.69223,21.38487],[75.6928,21.38369],[75.70324,21.38807],[75.70949,21.38619],[75.71576,21.38798],[75.71617,21.3856],[75.71877,21.38436],[75.72847,21.38868],[75.73253,21.38711],[75.73656,21.38827],[75.75113,21.38466],[75.75514,21.37938],[75.77382,21.38205],[75.77702,21.38452],[75.78646,21.38413],[75.78783,21.38281],[75.79042,21.3846],[75.80093,21.38335],[75.80273,21.38457],[75.81304,21.37906],[75.83073,21.37821],[75.83071,21.37696],[75.83336,21.37664],[75.83417,21.37957],[75.84139,21.38454],[75.84332,21.38195],[75.84794,21.38134],[75.85316,21.38338],[75.85571,21.38232],[75.85604,21.3802],[75.86246,21.37992],[75.86256,21.38216],[75.86415,21.3811],[75.86978,21.3864],[75.87035,21.39123],[75.87505,21.39288],[75.88306,21.39295],[75.88561,21.39471],[75.89036,21.39467],[75.89419,21.39129],[75.90324,21.3917],[75.91066,21.38257],[75.92901,21.38659],[75.94171,21.38584],[75.95222,21.38958],[75.96306,21.38971],[75.98662,21.36877],[76.0305,21.36533],[76.04859,21.34973],[76.0966,21.37177],[76.11668,21.33495],[76.11894,21.32597],[76.12147,21.32337],[76.1259,21.29852],[76.12974,21.2867],[76.14293,21.28623],[76.14663,21.26787],[76.14848,21.26906],[76.15116,21.26799],[76.15193,21.26446],[76.154,21.26513],[76.15429,21.2577],[76.15559,21.25702],[76.15718,21.25961],[76.15936,21.25597],[76.15941,21.25359],[76.15733,21.25139],[76.15387,21.25193],[76.155,21.24967],[76.15226,21.24846],[76.15358,21.24622],[76.15061,21.2464],[76.15143,21.24353],[76.1454,21.24365],[76.14156,21.24099],[76.14204,21.22816],[76.16566,21.22162],[76.15864,21.21359],[76.16326,21.21313],[76.16334,21.20651],[76.1697,21.20665],[76.1697,21.20541],[76.17192,21.2053],[76.17161,21.19896],[76.16629,21.19972],[76.16521,21.19047],[76.17306,21.18857],[76.1764,21.184],[76.17146,21.17954],[76.17169,21.16656],[76.16798,21.16638],[76.16629,21.16951],[76.13386,21.16941],[76.13333,21.17596],[76.12926,21.17582],[76.12379,21.17182],[76.12283,21.17312],[76.11888,21.17159],[76.1138,21.16616],[76.11184,21.16698],[76.11141,21.16115],[76.11539,21.154],[76.12006,21.15547],[76.12863,21.15246],[76.133,21.14823],[76.1347,21.14266],[76.14247,21.13515],[76.14101,21.12971],[76.13715,21.13189],[76.13541,21.12921],[76.13163,21.1328],[76.13232,21.12744],[76.13793,21.11985],[76.15382,21.10805],[76.15862,21.1094],[76.16348,21.10488],[76.17089,21.10393],[76.17044,21.09388],[76.17385,21.08968],[76.16843,21.08567],[76.16685,21.07993],[76.16808,21.07939],[76.18064,21.08031],[76.18589,21.08488],[76.19248,21.0867],[76.20463,21.08539],[76.21181,21.08738],[76.22466,21.08498],[76.23058,21.08833],[76.24497,21.09044],[76.26038,21.09058],[76.27263,21.08874],[76.28013,21.07069],[76.29985,21.07384],[76.33858,21.07152],[76.35142,21.07699],[76.36631,21.07606],[76.37096,21.07273],[76.37477,21.07255],[76.38424,21.07629],[76.38243,21.07962],[76.39033,21.08577],[76.40422,21.08744],[76.40794,21.08941],[76.41319,21.08842],[76.41262,21.09773],[76.4107,21.10244],[76.43017,21.10241],[76.43783,21.10047],[76.44105,21.1062],[76.45609,21.1084],[76.45537,21.11509],[76.45176,21.12125],[76.45642,21.12501],[76.45814,21.13328],[76.46945,21.13366],[76.47439,21.13698],[76.46823,21.13835],[76.46655,21.14266],[76.47873,21.14739],[76.48066,21.18216],[76.49317,21.19386],[76.4979,21.19128],[76.49878,21.19375],[76.5026,21.19321],[76.50096,21.18977],[76.50254,21.18746],[76.5072,21.18872],[76.50833,21.19303],[76.51102,21.18979],[76.53026,21.18193],[76.53578,21.18623],[76.55177,21.19207],[76.56069,21.19862],[76.56726,21.19939],[76.59955,21.19075],[76.60603,21.19034],[76.61388,21.19322],[76.62349,21.18504],[76.63722,21.20271],[76.63427,21.21368],[76.63481,21.2191],[76.64183,21.23713],[76.64968,21.24468],[76.66164,21.24071],[76.6629,21.27596],[76.66269,21.28068],[76.65482,21.28976],[76.65349,21.29352],[76.64738,21.30165],[76.64563,21.30108],[76.62175,21.33229],[76.68282,21.37841],[76.7262,21.40474],[76.73951,21.41056],[76.74095,21.41288],[76.73958,21.41413],[76.74054,21.41757],[76.73793,21.4222],[76.74102,21.42818],[76.73839,21.42969],[76.74443,21.43987],[76.75496,21.44557],[76.76181,21.4523],[76.78128,21.45934],[76.78402,21.46237],[76.78603,21.46582],[76.78785,21.47749],[76.79138,21.48008],[76.79377,21.47965],[76.79561,21.48958],[76.78767,21.49759],[76.78776,21.50114],[76.78421,21.50128],[76.78073,21.50559],[76.7729,21.50572],[76.76344,21.52077],[76.76881,21.52657],[76.78137,21.5293],[76.78933,21.53638],[76.7891,21.54067],[76.78174,21.55158],[76.78141,21.56472],[76.784,21.57409],[76.79105,21.58158],[76.79526,21.59391],[76.80065,21.59495],[76.82738,21.58829],[76.83291,21.58895],[76.8394,21.59331],[76.84471,21.6075],[76.8499,21.61211],[76.85449,21.61332],[76.86865,21.60876],[76.88569,21.60008],[76.89722,21.5961],[76.90162,21.59684],[76.90863,21.60275],[76.90995,21.60832],[76.91289,21.61176],[76.92836,21.6243],[76.94231,21.63209],[76.95323,21.64213],[76.97237,21.65135],[76.97641,21.65738],[76.9901,21.6649],[76.99649,21.67237],[77.00656,21.67914],[77.01501,21.68228],[77.04363,21.69977],[77.06247,21.70718],[77.06856,21.71579],[77.07322,21.71945],[77.07922,21.71994],[77.08654,21.71442],[77.10796,21.71829],[77.1173,21.72149],[77.12957,21.72224],[77.13919,21.71981],[77.14772,21.71252],[77.16512,21.71074],[77.16964,21.71429],[77.1696,21.72225],[77.1721,21.72485],[77.17603,21.72575],[77.19145,21.72075],[77.1913,21.71261],[77.18813,21.70171],[77.19889,21.69778],[77.20313,21.69277],[77.21042,21.68965],[77.21288,21.69501],[77.21883,21.69395],[77.22078,21.69651],[77.22775,21.69953],[77.22691,21.71679],[77.2323,21.71498],[77.23554,21.71635],[77.24249,21.7147],[77.24438,21.71643],[77.25147,21.7128],[77.26188,21.71229],[77.26756,21.72504],[77.27188,21.72814],[77.27926,21.72406],[77.28722,21.72192],[77.29114,21.73285],[77.28422,21.7369],[77.28729,21.74472],[77.28026,21.74908],[77.27973,21.75422],[77.28047,21.75858],[77.28989,21.76034],[77.29936,21.75596],[77.31579,21.75657],[77.32443,21.75274],[77.34568,21.75778],[77.35903,21.75415],[77.37305,21.75372],[77.3757,21.75492],[77.38124,21.75309],[77.40417,21.75242],[77.41707,21.75348],[77.42946,21.75771],[77.45629,21.76021],[77.46048,21.76342],[77.47909,21.76999],[77.48337,21.76595],[77.48217,21.76385],[77.47795,21.76283],[77.47974,21.75944],[77.47947,21.75415],[77.49051,21.74698],[77.49495,21.74831],[77.50267,21.74586],[77.50221,21.74342],[77.50454,21.73944],[77.5086,21.73821],[77.51196,21.7322],[77.51971,21.72524],[77.52555,21.72431],[77.5231,21.71972],[77.52402,21.71262],[77.52702,21.71091],[77.53322,21.71135],[77.54323,21.70428],[77.54767,21.69402],[77.55097,21.68078],[77.55386,21.67896],[77.5611,21.6673],[77.56417,21.64188],[77.5725,21.6287],[77.57552,21.62064],[77.57268,21.61598],[77.57545,21.58144],[77.57696,21.57729],[77.57464,21.57228],[77.57412,21.56469],[77.57711,21.55517],[77.58214,21.55378],[77.59529,21.55943],[77.60874,21.54819],[77.61148,21.53882],[77.59677,21.52711],[77.57523,21.52646],[77.54714,21.53672],[77.53722,21.53652],[77.5213,21.54097],[77.50519,21.55167],[77.47397,21.54952],[77.46619,21.55329],[77.45489,21.55384],[77.45412,21.54958],[77.45632,21.54623],[77.45009,21.54168],[77.44005,21.54478],[77.42556,21.53774],[77.42252,21.53256],[77.42231,21.51748],[77.42944,21.50471],[77.43539,21.49958],[77.44332,21.48725],[77.44219,21.48062],[77.43874,21.47865],[77.44147,21.47505],[77.44219,21.46991],[77.45982,21.46662],[77.46591,21.45982],[77.4736,21.45445],[77.47171,21.45029],[77.47435,21.44659],[77.47165,21.43613],[77.4766,21.43179],[77.47955,21.42025],[77.48751,21.40622],[77.48694,21.3859],[77.48987,21.37796],[77.48806,21.37436],[77.50221,21.37719],[77.51452,21.37594],[77.51671,21.38402],[77.51854,21.38392],[77.52329,21.38894],[77.52539,21.39565],[77.52473,21.40293],[77.52786,21.40563],[77.52924,21.4153],[77.53172,21.41915],[77.53591,21.4177],[77.54269,21.41115],[77.54829,21.41131],[77.54766,21.40532],[77.55344,21.4034],[77.56146,21.39646],[77.56324,21.39315],[77.56252,21.39041],[77.55967,21.39055],[77.55678,21.38364],[77.56281,21.37534],[77.5635,21.36931],[77.57114,21.36867],[77.57343,21.37093],[77.58528,21.36679],[77.58711,21.36284],[77.59182,21.36504],[77.59482,21.36303],[77.60513,21.36244],[77.60785,21.36494],[77.60826,21.37049],[77.60617,21.37357],[77.60343,21.38984],[77.60497,21.39073],[77.6139,21.39205],[77.61726,21.38712],[77.63265,21.38881],[77.63977,21.3887],[77.64326,21.38692],[77.64936,21.39207],[77.65313,21.39146],[77.65592,21.38614],[77.66648,21.38405],[77.66438,21.37451],[77.66991,21.36892],[77.67866,21.37691],[77.69199,21.39757],[77.69548,21.39637],[77.69708,21.39271],[77.69517,21.37876],[77.69741,21.3743],[77.7006,21.37367],[77.7047,21.377],[77.70739,21.37505],[77.70676,21.3682],[77.70999,21.35745],[77.72329,21.36167],[77.73711,21.3622],[77.73838,21.36477],[77.74057,21.36542],[77.74605,21.37849],[77.75004,21.38283],[77.76122,21.38517],[77.76388,21.3814],[77.79677,21.38901],[77.79828,21.40491],[77.80115,21.4096],[77.82262,21.40733],[77.84262,21.3972],[77.84728,21.3925],[77.85637,21.39019],[77.8568,21.38852],[77.86758,21.38787],[77.88385,21.38417],[77.88327,21.37604],[77.88843,21.3781],[77.907,21.37784],[77.91209,21.38113],[77.92759,21.38599],[77.94119,21.38577],[77.94051,21.39037],[77.94259,21.39661],[77.96512,21.40221],[77.98473,21.40319],[78.00127,21.41469],[78.0091,21.41511],[78.01424,21.41856],[78.02132,21.41912],[78.03009,21.42214],[78.04029,21.42845],[78.04602,21.43398],[78.06606,21.43797],[78.08318,21.44602],[78.09873,21.45865],[78.11335,21.46346],[78.12587,21.46984],[78.13655,21.47816],[78.17621,21.49975],[78.17447,21.50798],[78.1773,21.5078],[78.18263,21.51175],[78.17125,21.52558],[78.1755,21.5281],[78.17286,21.53875],[78.17421,21.54726],[78.18189,21.55734],[78.20547,21.55297],[78.22328,21.55316],[78.23192,21.55675],[78.23958,21.56307],[78.24805,21.56232],[78.27386,21.56925],[78.27327,21.57121],[78.2603,21.57966],[78.26137,21.58674],[78.2644,21.59127],[78.26648,21.59173],[78.27182,21.59066],[78.27522,21.59182],[78.28115,21.58524],[78.29121,21.58323],[78.30297,21.58374],[78.30395,21.57045],[78.30705,21.56957],[78.30817,21.57151],[78.32031,21.57205],[78.32661,21.575],[78.34275,21.58906],[78.34542,21.58176],[78.34852,21.58067],[78.34894,21.57863],[78.35542,21.57332],[78.36306,21.5752],[78.3778,21.58373],[78.38162,21.59204],[78.37264,21.61345],[78.38742,21.61484],[78.39243,21.61373],[78.39285,21.60934],[78.39463,21.60779],[78.40692,21.60879],[78.41266,21.60553],[78.41657,21.60111],[78.42719,21.59921],[78.42159,21.59104],[78.41906,21.57985],[78.41871,21.57079],[78.42536,21.56993],[78.42539,21.56527],[78.42789,21.55943],[78.42424,21.54444],[78.43464,21.53409],[78.43399,21.53122],[78.42979,21.52767],[78.43075,21.52489],[78.43846,21.51785],[78.43705,21.51595],[78.43205,21.51444],[78.43444,21.51049],[78.43391,21.5062],[78.4365,21.4995],[78.43955,21.5023],[78.4445,21.50172],[78.44831,21.4998],[78.44965,21.49552],[78.453,21.49683],[78.45709,21.49607],[78.46068,21.50348],[78.46365,21.50383],[78.46966,21.50087],[78.47522,21.50097],[78.4757,21.50571],[78.48685,21.50553],[78.48694,21.50777],[78.49503,21.51725],[78.50061,21.51709],[78.50472,21.52679],[78.50926,21.52602],[78.51164,21.52869],[78.53076,21.52326],[78.54067,21.52372],[78.54973,21.51828],[78.55598,21.51762],[78.55653,21.51555],[78.56002,21.51328],[78.57015,21.51425],[78.56702,21.5097],[78.56785,21.50579],[78.57315,21.50156],[78.57172,21.4989],[78.57636,21.49787],[78.58249,21.4923],[78.58177,21.48995],[78.58415,21.49006],[78.58534,21.48672],[78.59475,21.48848],[78.60098,21.4854],[78.60301,21.48809],[78.60877,21.48906],[78.61918,21.48157],[78.61997,21.47826],[78.62868,21.47568],[78.64343,21.48552],[78.65931,21.48138],[78.66712,21.47709],[78.67094,21.48009],[78.68891,21.48197],[78.69014,21.4802],[78.68849,21.47794],[78.69335,21.47909],[78.70167,21.47632],[78.69984,21.47381],[78.70738,21.47391],[78.70756,21.47063],[78.72847,21.46229],[78.731,21.46381],[78.73343,21.46969],[78.74559,21.47019],[78.74495,21.48101],[78.75085,21.49298],[78.75663,21.49024],[78.76687,21.48904],[78.7666,21.4828],[78.76881,21.4775],[78.7716,21.47672],[78.7719,21.47168],[78.77613,21.46458],[78.77877,21.46936],[78.78015,21.47887],[78.78663,21.47934],[78.78698,21.48089],[78.78869,21.48089],[78.78998,21.48639],[78.79599,21.48554],[78.80026,21.49016],[78.81516,21.49064],[78.81557,21.4877],[78.81979,21.48726],[78.82975,21.49017],[78.84105,21.487],[78.84844,21.49003],[78.85191,21.48972],[78.85619,21.49284],[78.85586,21.49462],[78.86331,21.4927],[78.86803,21.49408],[78.86763,21.49131],[78.87152,21.48969],[78.89084,21.48526],[78.89518,21.49828],[78.89926,21.50046],[78.9174,21.49225],[78.92306,21.48745],[78.93669,21.48577],[78.93924,21.49354],[78.94025,21.50787],[78.9413,21.5113],[78.94467,21.51266],[78.94439,21.51588],[78.93543,21.52283],[78.9318,21.52367],[78.92743,21.52225],[78.92593,21.53269],[78.92987,21.54036],[78.92555,21.54082],[78.9186,21.54713],[78.91255,21.54886],[78.91338,21.55078],[78.9068,21.55326],[78.91274,21.5553],[78.91817,21.56114],[78.92792,21.55958],[78.93186,21.56176],[78.93194,21.56452],[78.91375,21.57099],[78.91505,21.58299],[78.91652,21.58493],[78.9163,21.58759],[78.91435,21.58899],[78.91571,21.58866],[78.91676,21.59092],[78.92767,21.5902],[78.92997,21.59284],[78.94393,21.59215],[78.94742,21.59672],[78.952,21.59717],[78.96512,21.60489],[78.96993,21.61052],[78.97426,21.6128],[78.97552,21.61764],[78.98714,21.61596],[78.99596,21.61696],[78.99801,21.61857],[79.00291,21.60642],[79.01237,21.59945],[79.01921,21.60259],[79.02484,21.60169],[79.04188,21.60473],[79.04769,21.60244],[79.05294,21.60416],[79.05537,21.60148],[79.05825,21.60151],[79.07647,21.6054],[79.08851,21.60395],[79.08965,21.59757],[79.09396,21.59811],[79.09336,21.60161],[79.103,21.60149],[79.10721,21.60503],[79.10694,21.60721],[79.10207,21.60923],[79.10053,21.6176],[79.11211,21.62391],[79.11862,21.62382],[79.12289,21.62493],[79.1239,21.62659],[79.13034,21.62581],[79.13452,21.63321],[79.1433,21.63696],[79.14528,21.64669],[79.14824,21.65087],[79.14831,21.66117],[79.20899,21.65006],[79.22402,21.6488],[79.22411,21.65543],[79.23031,21.65572],[79.23131,21.65698],[79.23118,21.67035],[79.22906,21.67398],[79.22182,21.67704],[79.22086,21.69287],[79.22679,21.70368],[79.23394,21.70858],[79.23737,21.71341],[79.23522,21.71752],[79.23086,21.71875],[79.23119,21.72228],[79.24193,21.72018],[79.24496,21.72148],[79.26807,21.71541],[79.27791,21.70937],[79.28051,21.70172],[79.2858,21.69547],[79.2886,21.69528],[79.29059,21.69254],[79.29669,21.69331],[79.31141,21.68827],[79.31826,21.68851],[79.32224,21.68523],[79.32455,21.68797],[79.34289,21.68396],[79.35427,21.68483],[79.35237,21.67806],[79.357,21.67925],[79.37465,21.67841],[79.39249,21.67412],[79.39609,21.67651],[79.40044,21.67677],[79.40271,21.68221],[79.41012,21.68475],[79.41566,21.69116],[79.4222,21.69182],[79.42799,21.68975],[79.43525,21.68283],[79.4495,21.68206],[79.46073,21.68755],[79.48072,21.67784],[79.49621,21.67422],[79.49621,21.66541],[79.50135,21.65979],[79.50134,21.65171],[79.50676,21.64567],[79.50427,21.6411],[79.50657,21.63896],[79.50777,21.63435],[79.5161,21.63138],[79.51723,21.62575],[79.51662,21.62085],[79.50713,21.62132],[79.50371,21.61459],[79.50439,21.61124],[79.511,21.60488],[79.51008,21.59566],[79.51203,21.58397],[79.51824,21.58036],[79.52864,21.57935],[79.53206,21.57502],[79.54251,21.56823],[79.54393,21.55952],[79.53752,21.54875],[79.538,21.54551],[79.54061,21.54268],[79.56581,21.54764],[79.57598,21.542],[79.58138,21.5413],[79.59164,21.54788],[79.59997,21.54948],[79.6185,21.55726],[79.62226,21.55757],[79.63959,21.55297],[79.65205,21.55598],[79.65527,21.55811],[79.65837,21.56375],[79.66094,21.5769],[79.67543,21.5823],[79.68955,21.58096],[79.69501,21.58539],[79.69907,21.5929],[79.71201,21.59187],[79.71816,21.59306],[79.72494,21.59581],[79.73281,21.60302],[79.73763,21.60386],[79.74186,21.603],[79.7543,21.59549],[79.79207,21.58659],[79.82151,21.56154],[79.82856,21.54887],[79.83125,21.54692],[79.8507,21.54082],[79.86313,21.5308],[79.87319,21.52954],[79.88224,21.52622],[79.89124,21.51819],[79.897,21.52438],[79.9097,21.52277],[79.91846,21.52454],[79.92219,21.5418],[79.92977,21.55258],[79.9359,21.55624],[79.94821,21.55417],[79.96389,21.55835],[79.97148,21.55772],[79.97952,21.55052],[79.9887,21.53693],[79.99681,21.53362],[80.0041,21.53546],[80.03287,21.55621],[80.04451,21.55624],[80.05611,21.55343],[80.06669,21.5542],[80.07221,21.55679],[80.09013,21.57455],[80.09633,21.58504],[80.10124,21.58999],[80.11072,21.59084],[80.11606,21.59325],[80.11821,21.59852],[80.11797,21.60759],[80.11971,21.60988],[80.12786,21.61159],[80.14411,21.60578],[80.15462,21.60647],[80.1602,21.61066],[80.16909,21.62214],[80.18763,21.62854],[80.19278,21.63545],[80.20883,21.63523],[80.21452,21.63017],[80.21746,21.63343],[80.21898,21.62887],[80.21689,21.62565],[80.22148,21.62097],[80.23529,21.6224],[80.24584,21.62049],[80.25,21.62418],[80.25345,21.62475],[80.27014,21.61606],[80.2813,21.59605],[80.29407,21.59332],[80.29523,21.58136],[80.29806,21.57581],[80.30325,21.5748],[80.31823,21.57712],[80.32775,21.5714],[80.33191,21.56093],[80.33931,21.55508],[80.33068,21.55118],[80.33131,21.54754],[80.34434,21.53867],[80.36015,21.53446],[80.37719,21.52225],[80.37878,21.51381],[80.38477,21.49974],[80.38397,21.4901],[80.39211,21.4867],[80.39042,21.47941],[80.39722,21.47159],[80.40372,21.46753],[80.40906,21.46737],[80.41108,21.45988],[80.41389,21.45731],[80.41799,21.4485],[80.4187,21.4426],[80.42216,21.44054],[80.4046,21.42502],[80.40891,21.42104],[80.40857,21.41842],[80.39812,21.4123],[80.39604,21.40811],[80.39638,21.40298],[80.40676,21.3817],[80.41224,21.37672],[80.41694,21.3752],[80.43061,21.37626],[80.43246,21.37383],[80.43705,21.37268],[80.44612,21.37109],[80.44863,21.37205],[80.45174,21.37806],[80.44973,21.38732],[80.4542,21.39526],[80.45632,21.39611],[80.4558,21.39826],[80.45826,21.40036],[80.45701,21.40046],[80.45756,21.40268],[80.46235,21.40263],[80.47093,21.39586],[80.47364,21.3969],[80.47647,21.3949],[80.47979,21.39673],[80.48109,21.40094],[80.48341,21.39881],[80.48419,21.39534],[80.48752,21.39796],[80.49521,21.39658],[80.50097,21.39851],[80.50168,21.3956],[80.50842,21.39082],[80.51122,21.39284],[80.51501,21.39176],[80.51712,21.3952],[80.52393,21.39122],[80.52519,21.39402],[80.52762,21.39487],[80.5318,21.38207],[80.5392,21.38271],[80.54316,21.37071],[80.54848,21.37114],[80.55083,21.36874],[80.55333,21.36856],[80.5543,21.3665],[80.55841,21.36734],[80.56074,21.36365],[80.56388,21.36497],[80.57019,21.35752],[80.56541,21.35399],[80.56503,21.3494],[80.56756,21.34824],[80.5667,21.34565],[80.57277,21.3428],[80.57657,21.34687],[80.58137,21.34699],[80.58457,21.34423],[80.58947,21.34372],[80.59142,21.34092],[80.58934,21.3336],[80.59779,21.33155],[80.59989,21.3268],[80.60786,21.32386],[80.60891,21.32714],[80.61116,21.32761],[80.62134,21.32037],[80.64491,21.32804],[80.65191,21.32713],[80.66163,21.33613],[80.67134,21.33844],[80.67242,21.34096],[80.67128,21.34519],[80.67755,21.34843],[80.67648,21.35101],[80.68188,21.35995],[80.6802,21.36486],[80.68493,21.37015],[80.68739,21.36996],[80.69029,21.37207],[80.69911,21.39094],[80.69716,21.39343],[80.70055,21.3966],[80.69993,21.40458],[80.70687,21.41279],[80.70719,21.42546],[80.70574,21.43088],[80.70682,21.43307],[80.71429,21.43619],[80.7244,21.44518],[80.73493,21.45991],[80.73775,21.47312],[80.73716,21.48098],[80.73289,21.48434],[80.7276,21.4962],[80.72929,21.49896],[80.73321,21.50066],[80.7315,21.50818],[80.73365,21.51279],[80.73048,21.5156],[80.74078,21.53923],[80.73419,21.54577],[80.72763,21.54869],[80.72455,21.55267],[80.71999,21.555],[80.72238,21.55993],[80.72117,21.56122],[80.72598,21.56635],[80.72571,21.5691],[80.72867,21.56995],[80.72891,21.57258],[80.7255,21.58009],[80.71536,21.58505],[80.71861,21.58743],[80.71543,21.5903],[80.71808,21.5932],[80.71637,21.59907],[80.71879,21.60037],[80.71705,21.60297],[80.72191,21.60955],[80.72498,21.60955],[80.72297,21.61203],[80.7234,21.61405],[80.73095,21.61735],[80.7291,21.62056],[80.73157,21.62651],[80.72901,21.62686],[80.72958,21.63403],[80.72764,21.63666],[80.72685,21.64562],[80.71928,21.64537],[80.71708,21.66008],[80.71439,21.66155],[80.7163,21.66328],[80.71526,21.66578],[80.71801,21.66619],[80.71918,21.66849],[80.71598,21.67473],[80.72145,21.677],[80.72531,21.68128],[80.72978,21.69206],[80.733,21.69266],[80.73414,21.69451],[80.73233,21.69816],[80.73513,21.70389],[80.73397,21.70594],[80.72902,21.70692],[80.72568,21.71214],[80.72614,21.71367],[80.73206,21.71366],[80.734,21.72053],[80.73338,21.72777],[80.73987,21.732],[80.73781,21.73626],[80.74034,21.74413],[80.74747,21.75554],[80.75599,21.76206],[80.75938,21.75918],[80.77203,21.75852],[80.77792,21.75477],[80.77627,21.75363],[80.77963,21.7507],[80.78585,21.74876],[80.78446,21.74287],[80.78543,21.74031],[80.80326,21.74447],[80.80451,21.74662],[80.80926,21.74843],[80.81974,21.74802],[80.82017,21.75402],[80.81661,21.75399],[80.81563,21.75573],[80.81712,21.76213],[80.81864,21.7656],[80.822,21.76602],[80.82278,21.76795],[80.82133,21.768],[80.82458,21.77045],[80.82263,21.7714],[80.82406,21.77218],[80.82274,21.77289],[80.82358,21.77499],[80.82821,21.77621],[80.82709,21.77863],[80.82954,21.77994],[80.8262,21.78159],[80.82618,21.78298],[80.83022,21.78678],[80.82984,21.78916],[80.83181,21.78946],[80.83205,21.7942],[80.83663,21.7961],[80.83567,21.79717],[80.84018,21.80215],[80.83862,21.80231],[80.8395,21.80323],[80.83809,21.80531],[80.83956,21.80721],[80.83751,21.80945],[80.84036,21.8124],[80.83906,21.81327],[80.84143,21.81539],[80.84039,21.81823],[80.84518,21.82882],[80.84247,21.83553],[80.83837,21.8367],[80.83868,21.83836],[80.8407,21.83867],[80.83891,21.84002],[80.84127,21.83978],[80.83937,21.84784],[80.84654,21.85281],[80.85094,21.8521],[80.85256,21.85486],[80.85024,21.85588],[80.84929,21.85917],[80.8465,21.85997],[80.8487,21.8619],[80.84741,21.86354],[80.84524,21.86233],[80.84539,21.86475],[80.84276,21.86533],[80.84576,21.86975],[80.84909,21.87113],[80.85272,21.87048],[80.85331,21.87257],[80.84956,21.87344],[80.84991,21.87625],[80.84621,21.87387],[80.84295,21.87607],[80.84504,21.87767],[80.84279,21.88064],[80.84326,21.88239],[80.83499,21.88559],[80.83276,21.88911],[80.83394,21.89105],[80.83205,21.89035],[80.83477,21.89574],[80.83339,21.90213],[80.83614,21.907],[80.83212,21.90797],[80.835,21.90834],[80.83623,21.91461],[80.83981,21.91945],[80.83925,21.92305],[80.8461,21.92624],[80.84562,21.93043],[80.84765,21.93074],[80.8477,21.93253],[80.84581,21.93397],[80.84571,21.93985],[80.84139,21.94117],[80.84589,21.94208],[80.84204,21.94415],[80.84304,21.94612],[80.83753,21.94698],[80.83647,21.94974],[80.83404,21.94575],[80.83129,21.94729],[80.83318,21.95011],[80.82898,21.94838],[80.82747,21.95127],[80.82913,21.95355],[80.82602,21.95284],[80.8275,21.95617],[80.82549,21.95842],[80.82881,21.95871],[80.83606,21.95453],[80.83849,21.95797],[80.84087,21.95558],[80.85267,21.95731],[80.85914,21.97078],[80.86575,21.99426],[80.87578,22.01104],[80.87695,22.03391],[80.87579,22.03853],[80.8858,22.04962],[80.88216,22.05248],[80.88251,22.05856],[80.88611,22.05915],[80.88901,22.0571],[80.89295,22.06308],[80.89707,22.06478],[80.90793,22.10957],[80.91469,22.11319],[80.92195,22.11995],[80.94758,22.11827],[80.95698,22.11042],[80.96076,22.10357],[80.96101,22.10003],[80.96655,22.09353],[80.97166,22.08305],[80.97213,22.07891],[80.96918,22.06671],[80.9694,22.05799],[80.98054,22.05471],[80.98354,22.0486],[80.98967,22.05138],[80.99439,22.04924],[80.99488,22.05861],[81.00317,22.05849],[81.0062,22.06321],[81.00895,22.07177],[81.0067,22.075],[81.00458,22.07536],[81.00145,22.0835],[81.00612,22.09219],[81.01133,22.09557],[81.00666,22.09995],[81.00316,22.10106],[80.99048,22.11355],[80.98434,22.11456],[80.98096,22.11021],[80.97814,22.12011],[80.9826,22.1257],[80.98895,22.12825],[80.99487,22.13302],[80.99906,22.13132],[81.01368,22.13367],[81.02191,22.13273],[81.02378,22.14867],[81.02221,22.15773],[81.02631,22.16284],[81.02675,22.16639],[81.01716,22.17961],[81.01666,22.18553],[81.02243,22.18947],[81.02553,22.1874],[81.03066,22.1874],[81.02901,22.1925],[81.03164,22.19965],[81.03037,22.20317],[81.02176,22.21212],[81.01946,22.22118],[81.02364,22.22928],[81.02705,22.22892],[81.03791,22.23389],[81.05006,22.24455],[81.05961,22.24429],[81.07261,22.24837],[81.07604,22.24465],[81.07771,22.23904],[81.07955,22.23938],[81.08241,22.24383],[81.09153,22.249],[81.09731,22.26898],[81.10185,22.2783],[81.10799,22.2845],[81.11872,22.29126],[81.11894,22.30922],[81.11355,22.32413],[81.12121,22.3426],[81.11312,22.35327],[81.10867,22.37382],[81.10366,22.38337],[81.10598,22.38769],[81.10834,22.40096],[81.11034,22.41744],[81.10882,22.42876],[81.11116,22.43757],[81.12053,22.4458],[81.12701,22.44923],[81.14103,22.45423],[81.1497,22.45313],[81.15512,22.45491],[81.16282,22.47455],[81.16724,22.47797],[81.17269,22.48791],[81.18697,22.48884],[81.19352,22.49095],[81.19767,22.48957],[81.19992,22.4852],[81.20145,22.4682],[81.19946,22.46303],[81.20612,22.46084],[81.20774,22.45659],[81.23219,22.45216],[81.24831,22.45878],[81.26193,22.47217],[81.25978,22.48513],[81.26213,22.49327],[81.26907,22.49432],[81.27329,22.49319],[81.28127,22.50295],[81.29178,22.49429],[81.29995,22.49029],[81.30729,22.48191],[81.31373,22.48292],[81.31518,22.48777],[81.32049,22.48596],[81.3228,22.48916],[81.32225,22.49118],[81.31813,22.49392],[81.32089,22.49523],[81.3182,22.50186],[81.31985,22.50323],[81.31993,22.50705],[81.31721,22.51461],[81.31839,22.51686],[81.32338,22.51893],[81.32287,22.52302],[81.32653,22.52614],[81.33474,22.52424],[81.34006,22.51951],[81.3506,22.51759],[81.35388,22.51423],[81.35431,22.51126],[81.36059,22.51204],[81.36136,22.515],[81.37063,22.51488],[81.37582,22.51105],[81.38206,22.50982],[81.38619,22.49855],[81.38406,22.48976],[81.3915,22.47771],[81.39125,22.47109],[81.38865,22.46821],[81.39006,22.46331],[81.38811,22.45921],[81.39045,22.45582],[81.39006,22.45226],[81.39298,22.44904],[81.39641,22.44008],[81.4067,22.44095],[81.42295,22.44769],[81.4287,22.45689],[81.42451,22.46327],[81.42278,22.47005],[81.42784,22.47981],[81.43221,22.47921],[81.43921,22.48212],[81.44153,22.47991],[81.44293,22.4738],[81.44102,22.47178],[81.44737,22.46588],[81.45528,22.46688],[81.45893,22.46929],[81.4573,22.47168],[81.45589,22.4695],[81.44903,22.46752],[81.44662,22.46976],[81.45019,22.47124],[81.45088,22.47859],[81.4464,22.47618],[81.44254,22.4792],[81.44724,22.48465],[81.45108,22.4866],[81.44397,22.49072],[81.44261,22.49435],[81.44689,22.49343],[81.44942,22.49576],[81.45257,22.49581],[81.45884,22.48947],[81.46301,22.49307],[81.4728,22.49374],[81.47856,22.49222],[81.48471,22.48783],[81.48701,22.49024],[81.48631,22.49376],[81.48938,22.50317],[81.49442,22.50501],[81.49744,22.51164],[81.49553,22.51426],[81.49665,22.51952],[81.50931,22.52606],[81.51049,22.52196],[81.51824,22.5198],[81.52344,22.53217],[81.52134,22.5366],[81.52223,22.53901],[81.53267,22.53853],[81.54098,22.53304],[81.54608,22.52758],[81.55296,22.53105],[81.55895,22.53079],[81.56253,22.53344],[81.57003,22.53227],[81.56303,22.53396],[81.56275,22.54236],[81.56283,22.5475],[81.56955,22.55073],[81.58623,22.54392],[81.59183,22.54522],[81.59634,22.53653],[81.59998,22.53526],[81.60499,22.53461],[81.61321,22.53867],[81.61542,22.53692],[81.62194,22.53802],[81.62869,22.54442],[81.62404,22.55588],[81.62903,22.56336],[81.63519,22.56528],[81.63625,22.56005],[81.63874,22.5611],[81.64277,22.55971],[81.64929,22.56328],[81.65346,22.56302],[81.65993,22.56946],[81.65618,22.57229],[81.65556,22.57582],[81.65517,22.57881],[81.65783,22.58444],[81.65184,22.58085],[81.64971,22.58145],[81.64896,22.58496],[81.64548,22.58444],[81.64498,22.58686],[81.64943,22.58895],[81.64649,22.59341],[81.64803,22.5977],[81.64571,22.60487],[81.64725,22.61326],[81.65274,22.61856],[81.6609,22.61929],[81.66244,22.62681],[81.66904,22.63196],[81.67205,22.63256],[81.67451,22.63755],[81.68332,22.64691],[81.68877,22.64847],[81.69889,22.64476],[81.71314,22.64809],[81.72272,22.65706],[81.72526,22.67308],[81.72785,22.67535],[81.73947,22.67212],[81.73953,22.67509],[81.74299,22.67254],[81.7464,22.66291],[81.75029,22.65935],[81.75202,22.65437],[81.74901,22.65178],[81.74847,22.64837],[81.74998,22.64558],[81.75263,22.64449],[81.75704,22.6472],[81.77237,22.66821],[81.77284,22.6847],[81.76115,22.69753],[81.75344,22.72102],[81.75359,22.72852],[81.75573,22.73379],[81.76993,22.73558],[81.76902,22.74187],[81.77307,22.75055],[81.77928,22.75086],[81.78848,22.76355],[81.79439,22.76646],[81.78358,22.77918],[81.7837,22.78395],[81.78098,22.78994],[81.78193,22.79607],[81.78413,22.7987],[81.78178,22.81095],[81.77791,22.81328],[81.77766,22.81643],[81.76946,22.82776],[81.76135,22.83029],[81.76784,22.83541],[81.77401,22.85022],[81.77653,22.85164],[81.77729,22.85549],[81.7749,22.86391],[81.77746,22.86752],[81.77568,22.87444],[81.81758,22.88228],[81.82748,22.8828],[81.83392,22.8809],[81.83837,22.88278],[81.83824,22.88525],[81.84207,22.88775],[81.84626,22.88672],[81.85319,22.89089],[81.86163,22.88926],[81.86949,22.89451],[81.86811,22.90209],[81.86933,22.9098],[81.86552,22.91274],[81.86611,22.91581],[81.86912,22.91733],[81.87824,22.90981],[81.8904,22.92266],[81.89815,22.92593],[81.90469,22.93145],[81.91274,22.94165],[81.91892,22.94655],[81.94631,22.95678],[81.94781,22.96754],[81.94621,22.97392],[81.95048,22.98293],[81.94476,22.98917],[81.94544,22.99582],[81.93914,23.00462],[81.93955,23.00953],[81.93673,23.01617],[81.92977,23.02061],[81.92951,23.02273],[81.93183,23.02548],[81.92561,23.0292],[81.9215,23.04081],[81.92449,23.04711],[81.92904,23.04983],[81.92678,23.05758],[81.93027,23.05904],[81.92955,23.06164],[81.9374,23.06188],[81.93781,23.06525],[81.94294,23.06477],[81.9439,23.06739],[81.94685,23.0691],[81.94506,23.07258],[81.94604,23.07628],[81.94225,23.07897],[81.96317,23.07519],[81.96341,23.07821],[81.96789,23.08072],[81.97621,23.07898],[81.97717,23.08101],[81.98086,23.08263],[81.98127,23.08015],[81.98241,23.08265],[81.98533,23.08267],[81.98565,23.08587],[81.98827,23.08614],[81.98948,23.08431],[81.99114,23.08661],[81.99432,23.08355],[81.99774,23.08441],[82.00042,23.08105],[82.00445,23.08119],[82.00783,23.07912],[82.01174,23.08004],[82.01276,23.08217],[82.01755,23.08243],[82.01857,23.0841],[82.01961,23.08104],[82.02257,23.07944],[82.02753,23.08222],[82.02808,23.08024],[82.03419,23.08005],[82.04372,23.08851],[82.04366,23.09035],[82.0471,23.09135],[82.04665,23.09248],[82.04906,23.09383],[82.04781,23.09644],[82.05323,23.09966],[82.05513,23.10685],[82.06005,23.10848],[82.06193,23.11241],[82.0664,23.11498],[82.06681,23.11676],[82.07008,23.1165],[82.07222,23.11832],[82.0749,23.11484],[82.08042,23.11269],[82.09216,23.11237],[82.0935,23.10907],[82.09787,23.10852],[82.1111,23.10935],[82.11609,23.1056],[82.12225,23.1038],[82.13791,23.112],[82.13664,23.12544],[82.1407,23.13293],[82.15687,23.13847],[82.16136,23.14311],[82.16226,23.15728],[82.16092,23.16205],[82.14516,23.16341],[82.14435,23.16565],[82.14854,23.17113],[82.1495,23.17548],[82.14905,23.17737],[82.14464,23.17954],[82.14364,23.18711],[82.14825,23.18895],[82.14398,23.19514],[82.14925,23.19738],[82.14976,23.20373],[82.15361,23.21274],[82.14762,23.21897],[82.14841,23.2211],[82.14527,23.22672],[82.15308,23.23047],[82.15978,23.24633],[82.16276,23.24509],[82.16718,23.24589],[82.16651,23.25008],[82.16964,23.25174],[82.16829,23.25515],[82.17229,23.2584],[82.17435,23.2687],[82.18533,23.2739],[82.1888,23.2735],[82.19338,23.27797],[82.19474,23.28439],[82.19221,23.28849],[82.19382,23.29522],[82.19671,23.29728],[82.19732,23.30066],[82.19603,23.30371],[82.19741,23.30688],[82.19479,23.30859],[82.19939,23.31343],[82.19396,23.32384],[82.19208,23.32677],[82.18281,23.32737],[82.16373,23.33467],[82.16208,23.34284],[82.15383,23.35036],[82.14575,23.36118],[82.14091,23.36181],[82.12374,23.35372],[82.11714,23.35546],[82.11011,23.36317],[82.1118,23.36613],[82.11377,23.38416],[82.10524,23.39256],[82.10494,23.39698],[82.10341,23.39824],[82.09348,23.39286],[82.09204,23.39364],[82.09301,23.39747],[82.09148,23.39828],[82.08601,23.39699],[82.08217,23.39347],[82.07704,23.39494],[82.07112,23.39121],[82.06406,23.39294],[82.05876,23.37875],[82.056,23.37678],[82.04447,23.38005],[82.03685,23.38874],[82.03231,23.38242],[82.0219,23.38732],[82.02116,23.39177],[82.02907,23.4002],[82.0238,23.40676],[82.02385,23.40867],[82.02569,23.40969],[82.03063,23.40824],[82.03275,23.40999],[82.02578,23.41999],[82.02548,23.42488],[82.01182,23.41592],[82.00955,23.41199],[82.0024,23.41696],[81.99969,23.42156],[81.99056,23.41849],[81.98843,23.41453],[81.98533,23.41449],[81.98254,23.42016],[81.97674,23.4238],[81.9839,23.42928],[81.98169,23.43094],[81.98177,23.43366],[81.98382,23.43457],[81.97779,23.44197],[81.9804,23.44704],[81.97599,23.44862],[81.97688,23.45181],[81.97036,23.45558],[81.96904,23.46035],[81.96472,23.4657],[81.95783,23.46532],[81.95499,23.46717],[81.95503,23.4854],[81.95791,23.5007],[81.94782,23.5011],[81.94234,23.50569],[81.93763,23.51374],[81.93785,23.51631],[81.92329,23.53266],[81.91853,23.535],[81.90787,23.53533],[81.90444,23.52955],[81.89685,23.52465],[81.89368,23.52446],[81.88126,23.51507],[81.8756,23.51271],[81.86912,23.51293],[81.86369,23.51757],[81.85218,23.51529],[81.85026,23.51355],[81.84398,23.5144],[81.83965,23.51089],[81.83643,23.51091],[81.82069,23.51524],[81.81758,23.52212],[81.81959,23.52972],[81.81698,23.54087],[81.80907,23.54934],[81.80191,23.5484],[81.77164,23.55054],[81.75826,23.54987],[81.7548,23.56559],[81.75265,23.56795],[81.74664,23.5698],[81.74238,23.56615],[81.73761,23.56507],[81.73636,23.56646],[81.72802,23.55649],[81.72523,23.55687],[81.72431,23.55026],[81.72152,23.54721],[81.72253,23.5433],[81.71539,23.54073],[81.7145,23.53597],[81.71108,23.53488],[81.70594,23.52908],[81.702,23.52801],[81.70204,23.52452],[81.69964,23.52202],[81.69034,23.52837],[81.68005,23.52925],[81.66812,23.53295],[81.65891,23.529],[81.66237,23.51414],[81.65954,23.51177],[81.65817,23.50491],[81.65459,23.50194],[81.6537,23.49806],[81.64849,23.49975],[81.64218,23.49895],[81.64222,23.49689],[81.63728,23.49036],[81.6321,23.49017],[81.62921,23.49215],[81.62705,23.49132],[81.62537,23.49676],[81.61232,23.51021],[81.61152,23.51588],[81.61537,23.51946],[81.61375,23.52168],[81.61368,23.52758],[81.61627,23.52843],[81.61633,23.53075],[81.61323,23.53343],[81.61247,23.54086],[81.61409,23.54567],[81.61032,23.55508],[81.58402,23.55358],[81.57668,23.58534],[81.58497,23.59455],[81.5897,23.59603],[81.593,23.59601],[81.59681,23.59236],[81.59811,23.59423],[81.60359,23.59336],[81.60834,23.59659],[81.61197,23.59525],[81.6111,23.60327],[81.60651,23.61387],[81.6142,23.62244],[81.62033,23.65143],[81.61933,23.65839],[81.61457,23.66292],[81.64455,23.65718],[81.65517,23.66314],[81.6563,23.67214],[81.65422,23.6778],[81.65555,23.68202],[81.66062,23.68466],[81.66596,23.685],[81.68408,23.69092],[81.68502,23.70021],[81.69591,23.72132],[81.68953,23.72377],[81.68606,23.73304],[81.67847,23.73937],[81.67917,23.74234],[81.68676,23.7475],[81.68185,23.7533],[81.67668,23.75685],[81.65203,23.76537],[81.64466,23.77013],[81.64445,23.77482],[81.64947,23.78336],[81.65145,23.79906],[81.64665,23.8115],[81.64132,23.81474],[81.64162,23.82058],[81.63746,23.82767],[81.63584,23.83451],[81.63242,23.83593],[81.62241,23.83538],[81.61675,23.83345],[81.61323,23.83448],[81.61132,23.83701],[81.6122,23.84315],[81.60772,23.84639],[81.60318,23.85371],[81.60493,23.86149],[81.61426,23.8617],[81.62221,23.87024],[81.60424,23.88175],[81.60375,23.88471],[81.61157,23.89229],[81.61047,23.89877],[81.60836,23.90149],[81.60902,23.9032],[81.62076,23.90673],[81.63218,23.90582],[81.63645,23.90759],[81.63847,23.91083],[81.65778,23.91634],[81.66238,23.92427],[81.66858,23.92496],[81.67172,23.91955],[81.67231,23.91339],[81.68256,23.9114],[81.68754,23.90648],[81.69044,23.88476],[81.70265,23.88619],[81.70731,23.88236],[81.70384,23.87593],[81.7077,23.87419],[81.70974,23.87125],[81.70728,23.86505],[81.70749,23.86113],[81.7202,23.86221],[81.73198,23.85668],[81.72969,23.84894],[81.72504,23.84463],[81.72547,23.83982],[81.72846,23.83902],[81.73223,23.84086],[81.73736,23.83918],[81.74285,23.83377],[81.75451,23.83075],[81.76212,23.82361],[81.77316,23.8164],[81.79112,23.80935],[81.79313,23.80991],[81.7959,23.81489],[81.80839,23.81349],[81.81558,23.80636],[81.82343,23.80791],[81.82738,23.8106],[81.82751,23.81381],[81.82916,23.81503],[81.83688,23.8162],[81.83653,23.81998],[81.8382,23.8211],[81.86307,23.82446],[81.86628,23.82869],[81.86771,23.83414],[81.88785,23.83542],[81.89223,23.84052],[81.89903,23.84086],[81.902,23.84486],[81.90609,23.84606],[81.90629,23.84992],[81.90866,23.85108],[81.91044,23.85722],[81.91576,23.85893],[81.92147,23.87091],[81.93131,23.87055],[81.93965,23.86775],[81.94046,23.86559],[81.93823,23.86409],[81.93848,23.86235],[81.94692,23.86189],[81.94608,23.85877],[81.94993,23.85665],[81.95417,23.85712],[81.95556,23.85341],[81.9578,23.85228],[81.96027,23.85553],[81.96359,23.85361],[81.9654,23.85591],[81.97033,23.85723],[81.97721,23.85624],[81.98171,23.86089],[81.98599,23.86192],[81.98907,23.86043],[82.00093,23.86218],[82.00881,23.86108],[82.02047,23.84907],[82.03475,23.84641],[82.04418,23.84165],[82.04405,23.83883],[82.04127,23.83688],[82.04087,23.83292],[82.03876,23.83313],[82.03842,23.82684],[82.04924,23.82422],[82.05244,23.82165],[82.05358,23.81838],[82.06173,23.81916],[82.07233,23.81704],[82.07764,23.81864],[82.08327,23.81542],[82.09418,23.81668],[82.09544,23.81553],[82.10665,23.81868],[82.11659,23.81701],[82.12337,23.82205],[82.12929,23.81903],[82.14172,23.81689],[82.14206,23.81555],[82.16383,23.82068],[82.17146,23.81824],[82.17856,23.82161],[82.18085,23.83628],[82.18622,23.83867],[82.18887,23.84259],[82.19714,23.84165],[82.20128,23.84864],[82.21178,23.852],[82.21532,23.84102],[82.21197,23.83585],[82.20811,23.83493],[82.20631,23.82741],[82.22551,23.82008],[82.22704,23.80829],[82.23181,23.80531],[82.23728,23.80532],[82.24331,23.80852],[82.25013,23.81568],[82.26061,23.82124],[82.27211,23.81708],[82.28164,23.81698],[82.29181,23.80982],[82.29877,23.807],[82.30483,23.80739],[82.30578,23.81172],[82.31152,23.8102],[82.3175,23.81176],[82.33086,23.80616],[82.33466,23.80255],[82.33947,23.80862],[82.35265,23.80353],[82.36352,23.80803],[82.36405,23.80994],[82.36924,23.80905],[82.37697,23.81104],[82.39062,23.8052],[82.39287,23.80324],[82.3932,23.79994],[82.42326,23.80459],[82.43431,23.805],[82.43574,23.80262],[82.4379,23.80374],[82.44065,23.80279],[82.44691,23.80455],[82.45378,23.81155],[82.46926,23.81106],[82.47906,23.80595],[82.47919,23.80246],[82.48418,23.80035],[82.48893,23.78995],[82.4974,23.7849],[82.51097,23.78602],[82.5234,23.78368],[82.53549,23.7908],[82.53813,23.79425],[82.54181,23.79149],[82.55147,23.79064],[82.54844,23.80855],[82.5388,23.81637],[82.53834,23.8202],[82.53355,23.82023],[82.53307,23.82215],[82.54749,23.82255],[82.54674,23.82619],[82.55425,23.8262],[82.56322,23.82285],[82.56476,23.82074],[82.56937,23.8203],[82.5732,23.82406],[82.57776,23.82423],[82.57922,23.82241],[82.58181,23.82301],[82.58361,23.82071],[82.58862,23.82144],[82.59995,23.82653],[82.60224,23.8303],[82.60756,23.83329],[82.62954,23.83879],[82.63534,23.83771],[82.63917,23.84165],[82.63674,23.84448],[82.63814,23.84798],[82.64244,23.84694],[82.64714,23.84872],[82.64718,23.85369],[82.6451,23.85511],[82.64721,23.85597],[82.64669,23.85903],[82.6499,23.86019],[82.65301,23.85863],[82.65058,23.85685],[82.6511,23.85571],[82.65997,23.85478],[82.66156,23.85693],[82.66022,23.86284],[82.66448,23.86255],[82.66813,23.87089],[82.66374,23.87718],[82.65123,23.88676],[82.652,23.89186],[82.66159,23.90764],[82.67115,23.90579],[82.67466,23.90674],[82.67638,23.90925],[82.68058,23.90715],[82.6834,23.90929],[82.68888,23.9098],[82.69342,23.9202],[82.69803,23.91992],[82.70351,23.92449],[82.71085,23.92368],[82.715,23.92139],[82.75238,23.91979],[82.75526,23.92171],[82.75609,23.92503],[82.75446,23.93419],[82.76201,23.93383],[82.77034,23.93699],[82.77662,23.93667],[82.78107,23.93836],[82.79837,23.95081],[82.80074,23.9608],[82.81261,23.95987],[82.80783,23.96555],[82.80224,23.9793],[82.80538,23.98012],[82.80533,23.98288],[82.8085,23.98606],[82.80561,23.98992],[82.80458,23.99595],[82.80629,23.99776],[82.80418,24.00352],[82.79989,24.00341],[82.78879,24.00828],[82.78436,24.00464],[82.77564,24.00645],[82.769,24.00568],[82.7507,24.01198],[82.74917,24.02356],[82.74718,24.02727],[82.75558,24.0333],[82.76737,24.04856],[82.77054,24.05632],[82.77402,24.0763],[82.7676,24.07589],[82.76565,24.07083],[82.76305,24.06991],[82.76021,24.07258],[82.75968,24.07773],[82.75343,24.07731],[82.75001,24.07084],[82.74749,24.07103],[82.74475,24.07497],[82.74023,24.07723],[82.73897,24.07576],[82.73314,24.08045],[82.72856,24.07814],[82.71642,24.07772],[82.7139,24.07625],[82.71422,24.07971],[82.71029,24.08101],[82.70987,24.08505],[82.71182,24.08927],[82.70488,24.09487],[82.70776,24.09616],[82.70252,24.09899],[82.69585,24.10004],[82.69262,24.10481],[82.69132,24.10524],[82.69127,24.10337],[82.68706,24.10829],[82.68295,24.10936],[82.6834,24.11184],[82.68022,24.11259],[82.68063,24.11485],[82.67806,24.11479],[82.67715,24.11999],[82.67039,24.11999],[82.66524,24.12449],[82.6643,24.12916],[82.66813,24.13473],[82.66682,24.13693],[82.67052,24.13666],[82.67413,24.14097],[82.6707,24.14712],[82.6773,24.15246],[82.68288,24.15459],[82.69302,24.14873],[82.6949,24.14329],[82.69971,24.13924],[82.70429,24.1393],[82.71051,24.13622],[82.72808,24.13514],[82.7293,24.14796],[82.73585,24.15387],[82.74444,24.16548],[82.7396,24.2001],[82.73481,24.21778],[82.73648,24.22295],[82.75,24.22637],[82.75901,24.23635],[82.75949,24.24117],[82.7555,24.25584],[82.75616,24.26142],[82.7622,24.26958],[82.76989,24.28984],[82.77322,24.30736],[82.76595,24.31361],[82.76604,24.31593],[82.76844,24.31677],[82.76894,24.32403],[82.7715,24.32816],[82.7671,24.33029],[82.76993,24.33301],[82.76838,24.3392],[82.76932,24.34187],[82.77364,24.34342],[82.76925,24.34664],[82.76796,24.35285],[82.76442,24.35454],[82.76688,24.35816],[82.76557,24.35994],[82.76741,24.36085],[82.76514,24.36522],[82.76873,24.36633],[82.76938,24.3707],[82.7643,24.37017],[82.7636,24.37264],[82.76511,24.37537],[82.76021,24.37735],[82.76037,24.37368],[82.75462,24.37375],[82.75591,24.36963],[82.74414,24.37047],[82.73982,24.36736],[82.73195,24.36947],[82.72878,24.36795],[82.72825,24.36899],[82.72384,24.36818],[82.72299,24.37117],[82.71878,24.37402],[82.71947,24.37796],[82.71321,24.38024],[82.72341,24.41679],[82.73921,24.42764],[82.73921,24.43237],[82.73587,24.4311],[82.73439,24.43238],[82.73263,24.43084],[82.73489,24.43545],[82.73089,24.43758],[82.73412,24.44667],[82.73311,24.45024],[82.73111,24.45147],[82.7314,24.45404],[82.7348,24.45678],[82.73636,24.46165],[82.73472,24.47044],[82.73098,24.47089],[82.72989,24.47265],[82.73423,24.47553],[82.73373,24.47857],[82.74012,24.48202],[82.73998,24.48735],[82.74325,24.49177],[82.74356,24.49535],[82.74362,24.49896],[82.73592,24.50174],[82.72927,24.50905],[82.72432,24.50957],[82.72063,24.51403],[82.72312,24.51831],[82.72128,24.52346],[82.72348,24.52547],[82.72094,24.5295],[82.72949,24.53114],[82.73103,24.53508],[82.72804,24.5399],[82.72116,24.54567],[82.71955,24.54944],[82.72065,24.55168],[82.71918,24.55247],[82.72201,24.55529],[82.74237,24.54692],[82.7431,24.55182],[82.74755,24.54978],[82.75164,24.54991],[82.75248,24.54662],[82.74908,24.54331],[82.7526,24.54369],[82.75153,24.53772],[82.75552,24.53745],[82.79131,24.54356],[82.80755,24.54899],[82.80494,24.55607],[82.80564,24.56978],[82.80125,24.57686],[82.80308,24.57912],[82.80272,24.5826],[82.80122,24.583],[82.80318,24.58758],[82.80328,24.59709],[82.80256,24.59819],[82.79866,24.59706],[82.7916,24.59818],[82.78017,24.59462],[82.76546,24.59577],[82.76989,24.59897],[82.77007,24.6037],[82.77955,24.61394],[82.7754,24.61466],[82.77562,24.62047],[82.77227,24.62193],[82.77193,24.6349],[82.7743,24.64177],[82.76208,24.64259],[82.75352,24.64091],[82.75309,24.63695],[82.74633,24.64208],[82.74106,24.64161],[82.73229,24.64428],[82.72813,24.63535],[82.72284,24.6384],[82.71817,24.63467],[82.7168,24.63709],[82.71796,24.64255],[82.70942,24.63907],[82.7067,24.63627],[82.6982,24.6462],[82.69875,24.66253],[82.70179,24.67166],[82.70089,24.67602],[82.68657,24.68579],[82.67615,24.69071],[82.67085,24.69703],[82.65747,24.69511],[82.6366,24.68235],[82.60718,24.67554],[82.59304,24.66878],[82.57984,24.65929],[82.53963,24.64785],[82.52978,24.65253],[82.52295,24.67627],[82.51741,24.67344],[82.51074,24.67527],[82.50506,24.67164],[82.49395,24.67093],[82.48924,24.67137],[82.48353,24.67701],[82.47983,24.67834],[82.46864,24.67562],[82.46832,24.67398],[82.45672,24.67319],[82.45024,24.67441],[82.45373,24.68453],[82.45303,24.68854],[82.43845,24.70101],[82.43049,24.70259],[82.42766,24.70214],[82.4155,24.69226],[82.41577,24.68949],[82.4062,24.68112],[82.40868,24.67933],[82.40677,24.67698],[82.41389,24.67017],[82.4115,24.66531],[82.41202,24.6597],[82.41594,24.65631],[82.41625,24.65271],[82.41845,24.65172],[82.41612,24.64526],[82.41776,24.64127],[82.40968,24.63542],[82.409,24.62524],[82.41321,24.62031],[82.41327,24.61647],[82.41081,24.61374],[82.42202,24.59962],[82.42008,24.59481],[82.41715,24.59435],[82.41611,24.5912],[82.4114,24.59454],[82.40414,24.59632],[82.40197,24.59136],[82.36477,24.5972],[82.35559,24.60423],[82.34963,24.6151],[82.34718,24.61663],[82.34433,24.61553],[82.33864,24.62036],[82.33706,24.61895],[82.33617,24.62],[82.32961,24.61843],[82.32197,24.61246],[82.31964,24.6062],[82.31543,24.60782],[82.30168,24.6078],[82.29896,24.60486],[82.2968,24.60584],[82.29541,24.6089],[82.29996,24.61207],[82.30368,24.62519],[82.30021,24.63433],[82.30188,24.63914],[82.30084,24.64246],[82.3038,24.64376],[82.29998,24.64698],[82.3039,24.65369],[82.29636,24.66125],[82.3036,24.66331],[82.30314,24.6671],[82.29925,24.66726],[82.29836,24.66552],[82.28801,24.66586],[82.2853,24.66838],[82.28519,24.67578],[82.28062,24.67541],[82.26876,24.68341],[82.26286,24.67826],[82.26456,24.67639],[82.27257,24.67541],[82.27255,24.67355],[82.26351,24.66591],[82.26087,24.66131],[82.25527,24.66045],[82.25708,24.66446],[82.25634,24.66861],[82.25419,24.67018],[82.25109,24.66808],[82.249,24.67116],[82.24753,24.66866],[82.24517,24.67092],[82.24011,24.66966],[82.24115,24.66205],[82.23971,24.66127],[82.2351,24.6709],[82.23654,24.6767],[82.2335,24.68099],[82.22971,24.68179],[82.23452,24.68563],[82.2354,24.69039],[82.2394,24.69021],[82.24231,24.69478],[82.24482,24.69202],[82.24693,24.69225],[82.25011,24.69745],[82.24518,24.70351],[82.24616,24.70906],[82.25024,24.70991],[82.25097,24.71147],[82.24982,24.7194],[82.2447,24.7307],[82.24522,24.73279],[82.24771,24.73286],[82.25067,24.73547],[82.25548,24.74824],[82.25558,24.7521],[82.25327,24.75156],[82.25081,24.75732],[82.24947,24.76813],[82.25093,24.76993],[82.24666,24.77104],[82.24614,24.76966],[82.2466,24.76662],[82.24981,24.76284],[82.24874,24.7562],[82.24623,24.75445],[82.24516,24.74441],[82.24257,24.74467],[82.23993,24.75078],[82.23744,24.75174],[82.23791,24.75501],[82.23542,24.7602],[82.23413,24.76059],[82.23324,24.75826],[82.23132,24.75926],[82.23136,24.75598],[82.22646,24.76124],[82.22475,24.75783],[82.22813,24.75436],[82.22689,24.75273],[82.22928,24.74935],[82.22884,24.74558],[82.22227,24.74657],[82.22225,24.74825],[82.21873,24.75013],[82.21585,24.75488],[82.20657,24.74719],[82.20641,24.74352],[82.20957,24.74212],[82.21058,24.73979],[82.21755,24.73746],[82.22003,24.73105],[82.21888,24.72845],[82.2213,24.72721],[82.2213,24.72233],[82.21997,24.72195],[82.21936,24.7246],[82.21574,24.72649],[82.21592,24.73054],[82.21404,24.73443],[82.20914,24.73385],[82.20497,24.73578],[82.20326,24.73404],[82.19953,24.73525],[82.19709,24.73816],[82.19142,24.73759],[82.18815,24.73419],[82.18525,24.73572],[82.18132,24.73256],[82.17745,24.73233],[82.18398,24.73885],[82.18664,24.73863],[82.1975,24.74677],[82.19747,24.74978],[82.20326,24.75834],[82.2037,24.76049],[82.19542,24.76417],[82.20006,24.76862],[82.1949,24.77519],[82.19655,24.77806],[82.20402,24.77623],[82.20944,24.77153],[82.21035,24.77472],[82.21404,24.77287],[82.21792,24.77668],[82.20921,24.77844],[82.21183,24.78671],[82.21512,24.79021],[82.21729,24.79018],[82.21615,24.79414],[82.21215,24.79364],[82.20632,24.79612],[82.2033,24.7923],[82.19542,24.79187],[82.18426,24.79563],[82.18388,24.7989],[82.18876,24.80579],[82.19162,24.80576],[82.19814,24.81627],[82.20359,24.8192],[82.1994,24.81775],[82.1911,24.81069],[82.1848,24.80971],[82.17818,24.81089],[82.17512,24.80091],[82.16996,24.79938],[82.16665,24.80088],[82.16965,24.79805],[82.1789,24.79507],[82.17823,24.79287],[82.17133,24.79059],[82.16774,24.79118],[82.16702,24.78544],[82.15327,24.79158],[82.15092,24.79462],[82.14973,24.79191],[82.14435,24.79702],[82.13866,24.79946],[82.13188,24.79161],[82.13388,24.78798],[82.13009,24.78809],[82.12958,24.78563],[82.12593,24.78831],[82.1231,24.78694],[82.12032,24.78813],[82.11561,24.78444],[82.11218,24.80052],[82.11032,24.80055],[82.1057,24.80538],[82.09765,24.81615],[82.07505,24.82194],[82.07157,24.81918],[82.05143,24.83052],[82.04521,24.82862],[82.03123,24.84024],[82.024,24.8412],[82.01694,24.84598],[82.01072,24.84691],[82.00311,24.84145],[81.99225,24.84224],[81.98531,24.83925],[81.97154,24.83893],[81.96875,24.83618],[81.96792,24.82902],[81.96527,24.82704],[81.96061,24.83654],[81.94417,24.84124],[81.9424,24.8452],[81.94357,24.84658],[81.93794,24.84973],[81.9365,24.85201],[81.93768,24.85285],[81.93272,24.85874],[81.93463,24.86808],[81.93372,24.8707],[81.92801,24.87403],[81.9255,24.8722],[81.92006,24.87432],[81.92057,24.87739],[81.9165,24.8772],[81.91463,24.88072],[81.90789,24.88135],[81.90657,24.88345],[81.90891,24.88574],[81.90495,24.88678],[81.90355,24.89001],[81.90442,24.89139],[81.90284,24.89168],[81.90574,24.89269],[81.90479,24.89507],[81.90786,24.89654],[81.90353,24.89875],[81.90643,24.90026],[81.90671,24.9044],[81.91835,24.91952],[81.91902,24.9219],[81.91755,24.92328],[81.91965,24.92812],[81.91406,24.93626],[81.91036,24.93738],[81.90907,24.94264],[81.91006,24.95243],[81.9075,24.95951],[81.90939,24.9607],[81.90805,24.96847],[81.90751,24.97076],[81.90408,24.9722],[81.90786,24.98012],[81.90517,24.98137],[81.90593,24.98272],[81.90299,24.98374],[81.90146,24.9865],[81.90634,24.99503],[81.90727,25.00567],[81.89812,25.01064],[81.89556,25.00952],[81.89484,25.00782],[81.8974,25.00352],[81.90169,24.9994],[81.89548,24.98968],[81.89131,24.98887],[81.88991,24.99186],[81.8909,24.99576],[81.87688,24.9994],[81.87688,24.99579],[81.87419,24.99517],[81.87255,24.99976],[81.86642,25.00235],[81.86521,25.00087],[81.85955,25.00314],[81.85347,25.00268],[81.84865,25.00822],[81.84874,25.01164],[81.83482,25.01697],[81.8319,25.01213],[81.82568,25.01679],[81.82305,25.01712],[81.81949,25.01414],[81.81772,25.0152],[81.81401,25.01069],[81.81038,25.01269],[81.80464,25.0059],[81.80559,25.00524],[81.80377,25.0017],[81.79221,25.00441],[81.78089,25.01888],[81.758,25.02739],[81.75517,25.03169],[81.755,25.03484],[81.7458,25.03347],[81.7467,25.03742],[81.74188,25.03894],[81.74256,25.04144],[81.74041,25.04483],[81.73151,25.04864],[81.73044,25.04746],[81.72388,25.05017],[81.71909,25.04184],[81.72168,25.04232],[81.72141,25.03825],[81.71331,25.03607],[81.7071,25.03523],[81.68975,25.03895],[81.68872,25.03954],[81.69344,25.0488],[81.69151,25.05148],[81.68862,25.05174],[81.68574,25.05839],[81.68232,25.06119],[81.67797,25.06204],[81.67088,25.05991],[81.6672,25.06136],[81.66856,25.07171],[81.66654,25.07511],[81.66416,25.07259],[81.66267,25.07417],[81.66051,25.07161],[81.6527,25.07082],[81.65148,25.06716],[81.64122,25.05676],[81.63331,25.05934],[81.62765,25.05263],[81.61143,25.0565],[81.61032,25.06107],[81.61692,25.05879],[81.61745,25.06092],[81.60914,25.06562],[81.61054,25.06865],[81.60035,25.07385],[81.60543,25.07848],[81.61579,25.08034],[81.62143,25.09016],[81.62879,25.09128],[81.62861,25.09474],[81.64086,25.09849],[81.63357,25.1027],[81.63206,25.10643],[81.62834,25.10679],[81.63171,25.11178],[81.63294,25.11712],[81.62408,25.12004],[81.6205,25.11565],[81.62365,25.11223],[81.62314,25.11099],[81.61897,25.11013],[81.61632,25.10773],[81.61466,25.10004],[81.61147,25.09506],[81.60832,25.09605],[81.61023,25.10876],[81.60849,25.11174],[81.61011,25.11252],[81.60639,25.11627],[81.60061,25.11627],[81.59696,25.11909],[81.59804,25.12229],[81.6,25.12313],[81.5983,25.12378],[81.60059,25.12403],[81.60233,25.12725],[81.59806,25.13134],[81.60258,25.13615],[81.61046,25.1391],[81.61459,25.14439],[81.62061,25.14029],[81.62332,25.14104],[81.62571,25.14485],[81.62418,25.15614],[81.62621,25.16047],[81.62042,25.16242],[81.61876,25.1674],[81.6154,25.16901],[81.61182,25.16392],[81.60894,25.16469],[81.60463,25.16303],[81.59436,25.16373],[81.58846,25.16577],[81.59508,25.17749],[81.59562,25.18182],[81.58124,25.18965],[81.57357,25.19206],[81.57017,25.19208],[81.56291,25.18651],[81.55594,25.18358],[81.55411,25.18609],[81.54546,25.18506],[81.53991,25.18608],[81.5398,25.18036],[81.53443,25.18066],[81.53284,25.18239],[81.52746,25.18085],[81.52496,25.18386],[81.51858,25.18605],[81.5146,25.18434],[81.51441,25.17953],[81.51248,25.17734],[81.51464,25.17358],[81.51617,25.17407],[81.51792,25.1705],[81.52533,25.16563],[81.52496,25.16457],[81.53099,25.1647],[81.5365,25.16055],[81.52992,25.15161],[81.5227,25.14667],[81.52658,25.14779],[81.5309,25.14521],[81.52724,25.13809],[81.51916,25.14315],[81.51548,25.14304],[81.5139,25.14564],[81.50998,25.14601],[81.5088,25.14782],[81.49951,25.14868],[81.49618,25.14047],[81.49638,25.12898],[81.49388,25.13208],[81.48519,25.13483],[81.48005,25.13255],[81.48076,25.12764],[81.48744,25.12377],[81.48414,25.11595],[81.48866,25.11421],[81.49032,25.10945],[81.49583,25.10853],[81.49826,25.10506],[81.50307,25.10687],[81.5181,25.10074],[81.50665,25.09553],[81.50024,25.09638],[81.50298,25.08971],[81.50108,25.07743],[81.49947,25.07682],[81.49844,25.07874],[81.49364,25.08027],[81.49113,25.07232],[81.48647,25.07346],[81.48205,25.07675],[81.46927,25.07979],[81.46506,25.08381],[81.46733,25.0884],[81.46481,25.09011],[81.45451,25.09039],[81.43677,25.09408],[81.42993,25.09762],[81.42407,25.09809],[81.41759,25.10235],[81.40727,25.10491],[81.41371,25.10792],[81.42717,25.10712],[81.43069,25.10558],[81.43426,25.10723],[81.4445,25.10594],[81.44766,25.10717],[81.4457,25.10926],[81.44668,25.11109],[81.44513,25.11608],[81.4379,25.12389],[81.43693,25.12815],[81.43852,25.13033],[81.42892,25.13049],[81.42561,25.1326],[81.42187,25.12855],[81.4154,25.12844],[81.40619,25.13129],[81.4057,25.12911],[81.40853,25.12523],[81.41429,25.12093],[81.39992,25.11922],[81.39521,25.12274],[81.3954,25.12616],[81.39326,25.12623],[81.39405,25.12924],[81.39261,25.13096],[81.38538,25.13216],[81.38228,25.13608],[81.3709,25.13484],[81.37541,25.13904],[81.37573,25.14173],[81.36882,25.1439],[81.36268,25.15306],[81.3617,25.15923],[81.35728,25.1631],[81.35402,25.16391],[81.35273,25.16202],[81.34528,25.1619],[81.33452,25.16929],[81.32232,25.16193],[81.31956,25.15678],[81.31867,25.14397],[81.32503,25.13651],[81.32401,25.12763],[81.3252,25.12239],[81.32629,25.11921],[81.33108,25.11463],[81.32147,25.11277],[81.32127,25.11877],[81.31857,25.12282],[81.31624,25.12349],[81.3179,25.1254],[81.31569,25.12709],[81.31432,25.13539],[81.31192,25.13756],[81.31322,25.14945],[81.31229,25.15591],[81.3155,25.15888],[81.31343,25.16374],[81.29921,25.16447],[81.29658,25.16269],[81.28897,25.16188],[81.27752,25.166],[81.2751,25.16346],[81.28167,25.15206],[81.27755,25.14651],[81.26615,25.13969],[81.26851,25.13156],[81.26818,25.12809],[81.26276,25.12538],[81.26479,25.12228],[81.26472,25.11669],[81.26133,25.11018],[81.2572,25.11106],[81.25327,25.10776],[81.25214,25.10208],[81.255,25.09854],[81.25849,25.09752],[81.26156,25.08837],[81.26667,25.08439],[81.25949,25.07574],[81.26506,25.07355],[81.2689,25.06745],[81.26204,25.05808],[81.26382,25.05276],[81.25857,25.049],[81.25373,25.0389],[81.2451,25.02752],[81.24183,25.02587],[81.23935,25.01922],[81.22666,25.00196],[81.2208,24.9974],[81.21304,25.0],[81.21208,24.9957],[81.20892,24.99262],[81.21643,24.98627],[81.22087,24.97761],[81.22028,24.97382],[81.20714,24.96448],[81.21443,24.95796],[81.21463,24.94852],[81.21114,24.94614],[81.21318,24.94532],[81.21523,24.93288],[81.2173,24.93239],[81.21935,24.93511],[81.22061,24.93453],[81.21964,24.92862],[81.21387,24.92756],[81.21017,24.92262],[81.2035,24.92476],[81.20162,24.9269],[81.19639,24.92468],[81.19291,24.92535],[81.19162,24.92718],[81.19759,24.92795],[81.2007,24.93178],[81.20719,24.93043],[81.20354,24.93266],[81.20097,24.93801],[81.19737,24.93867],[81.19715,24.94147],[81.19223,24.94501],[81.18881,24.94472],[81.18515,24.95204],[81.17937,24.94988],[81.17221,24.9573],[81.16801,24.95523],[81.16402,24.94265],[81.16606,24.93816],[81.16371,24.93764],[81.16378,24.92831],[81.16132,24.92792],[81.15852,24.92344],[81.16079,24.91912],[81.1602,24.91356],[81.1504,24.9137],[81.14546,24.9103],[81.14512,24.90672],[81.14165,24.90324],[81.13991,24.89675],[81.14124,24.89025],[81.1396,24.88753],[81.12248,24.89967],[81.11808,24.90787],[81.1123,24.90737],[81.10388,24.9183],[81.0963,24.92119],[81.09336,24.92899],[81.09046,24.92887],[81.0897,24.93152],[81.08704,24.93322],[81.0903,24.94494],[81.08451,24.94991],[81.07971,24.94828],[81.0705,24.94984],[81.06625,24.94903],[81.06085,24.95192],[81.05518,24.95216],[81.0499,24.94981],[81.03373,24.95261],[81.02856,24.94859],[81.02585,24.94875],[81.02835,24.94349],[81.02548,24.94475],[81.02419,24.94342],[81.02558,24.94005],[81.01627,24.9515],[81.01354,24.94776],[81.0212,24.93945],[81.02261,24.93578],[81.02885,24.93326],[81.02467,24.93309],[81.02307,24.92762],[81.01718,24.93102],[81.01316,24.92793],[81.00952,24.93599],[81.00451,24.93722],[81.0004,24.93604],[80.99722,24.93288],[80.99653,24.92811],[80.98763,24.92604],[80.98675,24.9232],[80.98276,24.92664],[80.98618,24.9306],[80.98538,24.93288],[80.97385,24.93419],[80.9702,24.93305],[80.96825,24.93003],[80.9646,24.92982],[80.96574,24.92607],[80.96186,24.92576],[80.95992,24.91921],[80.95718,24.91785],[80.95752,24.92181],[80.9557,24.92192],[80.95729,24.92306],[80.95655,24.92989],[80.95879,24.93858],[80.9557,24.94055],[80.94771,24.94097],[80.95405,24.95434],[80.95095,24.95896],[80.95006,24.96441],[80.946,24.96627],[80.93635,24.96198],[80.92835,24.96106],[80.89915,24.94862],[80.89762,24.94503],[80.90016,24.94121],[80.90524,24.93866],[80.90708,24.93505],[80.90447,24.93806],[80.89946,24.94004],[80.89546,24.94511],[80.89172,24.94511],[80.87897,24.93949],[80.87902,24.93677],[80.88083,24.93534],[80.87757,24.9345],[80.87324,24.93581],[80.86073,24.92867],[80.85667,24.93158],[80.85133,24.93157],[80.83744,24.92833],[80.83723,24.92032],[80.83254,24.92001],[80.8298,24.91801],[80.81199,24.92255],[80.81391,24.92743],[80.82005,24.93291],[80.80817,24.93868],[80.80584,24.94368],[80.80993,24.95273],[80.80517,24.95351],[80.79951,24.95854],[80.79518,24.96023],[80.79221,24.96487],[80.7998,24.96841],[80.81137,24.97023],[80.81389,24.96936],[80.81383,24.96749],[80.81588,24.96621],[80.82379,24.96777],[80.82543,24.96966],[80.82587,24.9762],[80.83292,24.98198],[80.84589,24.98392],[80.85174,24.98825],[80.85513,25.00399],[80.84303,25.01962],[80.83655,25.02269],[80.83178,25.03287],[80.84012,25.03342],[80.8464,25.04444],[80.85546,25.04731],[80.86375,25.05652],[80.86966,25.05886],[80.87804,25.06547],[80.87642,25.0734],[80.86915,25.07284],[80.8676,25.07534],[80.86718,25.07951],[80.87959,25.09925],[80.87859,25.1021],[80.87459,25.10415],[80.87423,25.10862],[80.86925,25.11225],[80.86844,25.11568],[80.87494,25.12026],[80.87886,25.12565],[80.87952,25.13834],[80.88863,25.13252],[80.89478,25.13401],[80.89573,25.13529],[80.89454,25.13818],[80.91291,25.15908],[80.90372,25.15931],[80.89891,25.16632],[80.88924,25.17549],[80.88876,25.17812],[80.88618,25.17908],[80.88518,25.1818],[80.88208,25.18244],[80.88197,25.18507],[80.88432,25.18612],[80.88466,25.18794],[80.88057,25.18687],[80.8795,25.18126],[80.87238,25.17809],[80.86879,25.17451],[80.86808,25.17845],[80.86415,25.18278],[80.85717,25.18068],[80.85563,25.18247],[80.84508,25.18494],[80.84415,25.1869],[80.83814,25.18035],[80.83928,25.17994],[80.83879,25.17615],[80.84303,25.17599],[80.84622,25.17172],[80.8491,25.1626],[80.84326,25.15952],[80.83991,25.15549],[80.83982,25.14455],[80.83784,25.14143],[80.83645,25.13056],[80.83808,25.12518],[80.84061,25.1232],[80.83891,25.11893],[80.8407,25.11429],[80.84061,25.10861],[80.83754,25.10593],[80.83911,25.1055],[80.83814,25.10431],[80.83554,25.10513],[80.83605,25.10658],[80.83408,25.10603],[80.83372,25.10349],[80.82989,25.10006],[80.82781,25.11522],[80.82439,25.11613],[80.82665,25.12145],[80.8225,25.12395],[80.81724,25.12423],[80.81597,25.12241],[80.81195,25.12408],[80.81527,25.13165],[80.81319,25.13467],[80.8084,25.13679],[80.80376,25.13757],[80.80078,25.1354],[80.79708,25.13657],[80.79475,25.13059],[80.79136,25.13168],[80.78638,25.12944],[80.78171,25.13363],[80.78417,25.13694],[80.77878,25.14226],[80.77903,25.13861],[80.77206,25.13263],[80.7618,25.13483],[80.75391,25.1328],[80.74545,25.12911],[80.74195,25.12363],[80.73675,25.13536],[80.73258,25.13321],[80.73483,25.13936],[80.7336,25.14048],[80.73189,25.13936],[80.73165,25.14495],[80.73024,25.14632],[80.72763,25.13768],[80.72318,25.13714],[80.72157,25.13529],[80.72042,25.1358],[80.72089,25.13886],[80.71921,25.13467],[80.72011,25.13241],[80.71811,25.13034],[80.70761,25.13054],[80.70439,25.12837],[80.7041,25.12227],[80.70763,25.11765],[80.71087,25.11976],[80.72286,25.12027],[80.72385,25.12158],[80.72735,25.11855],[80.73066,25.11264],[80.72631,25.11116],[80.72324,25.10507],[80.72324,25.09465],[80.72545,25.09143],[80.73512,25.08924],[80.7366,25.09487],[80.74336,25.09272],[80.75193,25.09289],[80.7541,25.09031],[80.7575,25.09083],[80.75524,25.08679],[80.75713,25.08232],[80.76886,25.07923],[80.76999,25.07717],[80.77193,25.07821],[80.78363,25.07595],[80.78409,25.06885],[80.78779,25.06139],[80.78467,25.06167],[80.77576,25.05482],[80.76588,25.05289],[80.76171,25.05601],[80.75206,25.05676],[80.75107,25.05407],[80.74253,25.05383],[80.74303,25.05595],[80.73775,25.05466],[80.73691,25.05296],[80.73431,25.05594],[80.73234,25.06369],[80.72072,25.06401],[80.70838,25.05673],[80.69602,25.05501],[80.69117,25.05173],[80.67974,25.04846],[80.68103,25.05329],[80.68026,25.05771],[80.67581,25.05583],[80.67386,25.06061],[80.68403,25.06773],[80.68244,25.07014],[80.68431,25.07306],[80.68289,25.07429],[80.68501,25.07661],[80.67877,25.07704],[80.67292,25.08252],[80.66915,25.07311],[80.66174,25.06761],[80.65867,25.07091],[80.65839,25.08087],[80.65597,25.08471],[80.65193,25.08378],[80.64768,25.08731],[80.64266,25.08857],[80.64089,25.08724],[80.64166,25.09201],[80.64042,25.09249],[80.63947,25.09081],[80.64097,25.08925],[80.63931,25.08715],[80.63389,25.08765],[80.63421,25.08988],[80.62881,25.09043],[80.62837,25.08716],[80.62581,25.08671],[80.62765,25.08535],[80.62603,25.08294],[80.62394,25.08869],[80.61025,25.09577],[80.60808,25.09843],[80.61133,25.10074],[80.61881,25.10049],[80.62077,25.10498],[80.61875,25.10649],[80.61958,25.10816],[80.62501,25.11127],[80.62445,25.11488],[80.62741,25.11741],[80.63078,25.11598],[80.63237,25.11305],[80.63574,25.11316],[80.63823,25.11687],[80.63254,25.1225],[80.63455,25.12863],[80.62851,25.1334],[80.62237,25.13494],[80.62002,25.13392],[80.61643,25.12835],[80.61161,25.1277],[80.61034,25.12901],[80.61039,25.13631],[80.61268,25.14319],[80.60967,25.14569],[80.60844,25.14983],[80.6019,25.15043],[80.59678,25.14375],[80.59764,25.14125],[80.595,25.1272],[80.59677,25.12791],[80.60003,25.12615],[80.60244,25.12254],[80.60638,25.1212],[80.60719,25.11791],[80.6019,25.11637],[80.60021,25.11391],[80.59756,25.11393],[80.59511,25.10519],[80.59233,25.1032],[80.59613,25.09908],[80.59371,25.0945],[80.59785,25.09117],[80.59772,25.0889],[80.59229,25.0902],[80.59712,25.08185],[80.59603,25.07981],[80.59943,25.08024],[80.5982,25.08726],[80.60281,25.08518],[80.60673,25.08628],[80.6062,25.08016],[80.60986,25.07938],[80.61115,25.07713],[80.61415,25.06921],[80.61446,25.06658],[80.61314,25.0657],[80.60424,25.06901],[80.60328,25.0722],[80.60002,25.07335],[80.59726,25.07768],[80.59621,25.07642],[80.59511,25.07942],[80.58219,25.08212],[80.57586,25.08153],[80.56845,25.08688],[80.56665,25.07802],[80.56812,25.07748],[80.56758,25.07336],[80.55223,25.06282],[80.54528,25.06461],[80.54074,25.07172],[80.53349,25.07014],[80.5216,25.07605],[80.5191,25.08227],[80.52097,25.09109],[80.51419,25.09677],[80.49974,25.10031],[80.4983,25.09659],[80.49311,25.09963],[80.49235,25.09801],[80.48957,25.09852],[80.48791,25.09671],[80.4876,25.09883],[80.48518,25.09794],[80.48272,25.10021],[80.48065,25.09868],[80.48152,25.09587],[80.47953,25.09634],[80.48077,25.09291],[80.48687,25.09018],[80.48858,25.09094],[80.49246,25.08823],[80.50053,25.08722],[80.50663,25.08397],[80.50338,25.07305],[80.49641,25.07295],[80.50183,25.07069],[80.50899,25.05879],[80.50645,25.05384],[80.50097,25.05146],[80.50066,25.04781],[80.50307,25.04524],[80.50058,25.04153],[80.51415,25.04336],[80.51832,25.04094],[80.5323,25.03792],[80.54082,25.03245],[80.54607,25.03242],[80.54816,25.02993],[80.54745,25.02493],[80.54393,25.0198],[80.54167,25.01904],[80.54137,25.01668],[80.54437,25.01405],[80.54339,25.01134],[80.54928,25.0021],[80.54371,25.0029],[80.5386,25.00043],[80.53084,25.00125],[80.52503,25.00356],[80.52359,25.00658],[80.51762,25.00878],[80.51476,25.00295],[80.50962,25.00313],[80.50541,25.00538],[80.50079,25.00447],[80.4993,25.00621],[80.49662,24.99887],[80.4975,24.99565],[80.49259,24.98938],[80.48829,24.98988],[80.48039,24.986],[80.47836,24.97994],[80.47866,24.97395],[80.47644,24.97646],[80.46524,24.97577],[80.45614,24.98164],[80.45943,24.98483],[80.45592,24.99125],[80.46396,24.99538],[80.46285,25.00253],[80.45652,25.00402],[80.45188,24.99944],[80.44691,25.00203],[80.44489,24.99452],[80.43724,24.99433],[80.43718,24.99741],[80.43565,24.99826],[80.43679,25.00148],[80.44288,25.00207],[80.44353,25.0041],[80.44908,25.00283],[80.45484,25.00424],[80.45459,25.00652],[80.45124,25.00991],[80.45317,25.01346],[80.45245,25.01515],[80.44747,25.01422],[80.44411,25.02085],[80.43938,25.02299],[80.43552,25.02155],[80.43309,25.02362],[80.44139,25.03341],[80.44585,25.03736],[80.44767,25.03693],[80.44895,25.04055],[80.45445,25.04222],[80.45636,25.03934],[80.46291,25.03992],[80.46464,25.03575],[80.47435,25.03053],[80.4784,25.0326],[80.48271,25.03111],[80.48485,25.03367],[80.48807,25.03019],[80.48972,25.03134],[80.49532,25.02904],[80.50194,25.03663],[80.48882,25.04348],[80.4865,25.04053],[80.48357,25.0409],[80.48174,25.03802],[80.47515,25.03794],[80.47414,25.04276],[80.47153,25.04239],[80.46999,25.04432],[80.47271,25.04603],[80.46974,25.04719],[80.46885,25.05888],[80.46651,25.06492],[80.46357,25.06803],[80.46185,25.06794],[80.45706,25.06331],[80.45143,25.06221],[80.45146,25.06897],[80.44642,25.07112],[80.45273,25.07503],[80.44996,25.07518],[80.45073,25.07691],[80.44845,25.07864],[80.44401,25.07797],[80.44322,25.07415],[80.43956,25.07514],[80.43727,25.06934],[80.43303,25.06576],[80.42889,25.06565],[80.42835,25.06734],[80.42311,25.06868],[80.41611,25.07318],[80.41615,25.07026],[80.41814,25.06901],[80.41449,25.05731],[80.40872,25.05525],[80.40412,25.06167],[80.40657,25.0637],[80.4053,25.06772],[80.4023,25.06575],[80.40062,25.06957],[80.39954,25.06435],[80.39227,25.06381],[80.39216,25.05847],[80.38846,25.05503],[80.388,25.05091],[80.38097,25.05186],[80.37366,25.05591],[80.37266,25.05336],[80.37483,25.04894],[80.37051,25.04269],[80.37826,25.04043],[80.38536,25.04183],[80.38984,25.03556],[80.38707,25.03246],[80.38568,25.03557],[80.3833,25.03527],[80.37785,25.02702],[80.38702,25.02388],[80.38512,25.01826],[80.3909,25.01615],[80.39144,25.01308],[80.39644,25.01195],[80.39564,25.01021],[80.38732,25.00431],[80.37849,25.00435],[80.37588,25.01467],[80.37746,25.01954],[80.37186,25.02084],[80.36919,25.01993],[80.36295,25.0236],[80.35738,25.01158],[80.35345,25.01339],[80.352,25.01751],[80.34517,25.01673],[80.34166,25.01348],[80.3416,25.01117],[80.33055,24.99233],[80.32314,24.99774],[80.32063,25.00283],[80.31338,25.00352],[80.30741,25.00648],[80.3044,25.01109],[80.30021,25.01283],[80.29975,25.01558],[80.29238,25.0167],[80.27362,25.02597],[80.28835,25.03928],[80.28809,25.04661],[80.28487,25.053],[80.28581,25.05603],[80.29054,25.05954],[80.29691,25.05319],[80.2997,25.05365],[80.30368,25.05175],[80.3029,25.0511],[80.30465,25.05086],[80.30762,25.04642],[80.3114,25.04423],[80.32119,25.04992],[80.33148,25.04798],[80.33419,25.05636],[80.33675,25.05907],[80.34046,25.05862],[80.34067,25.05443],[80.34365,25.05347],[80.34452,25.05574],[80.35071,25.05317],[80.35533,25.05563],[80.3562,25.05736],[80.35423,25.05933],[80.35597,25.06157],[80.34908,25.06242],[80.34578,25.0649],[80.35154,25.08118],[80.34838,25.08278],[80.34843,25.08665],[80.35161,25.08816],[80.35212,25.08906],[80.35034,25.08935],[80.35134,25.09139],[80.35404,25.09155],[80.35654,25.09489],[80.36008,25.09388],[80.36241,25.09756],[80.37048,25.09972],[80.3701,25.10222],[80.37473,25.1087],[80.37608,25.11636],[80.37571,25.11756],[80.37388,25.11654],[80.36915,25.11777],[80.35472,25.12642],[80.35534,25.12849],[80.35232,25.13095],[80.35641,25.13216],[80.35385,25.13595],[80.35456,25.13836],[80.35782,25.1425],[80.36225,25.14437],[80.37348,25.1474],[80.37488,25.14553],[80.37655,25.14583],[80.38508,25.15561],[80.3902,25.15839],[80.40988,25.16296],[80.41989,25.16318],[80.42819,25.16953],[80.43167,25.17762],[80.42209,25.19741],[80.41458,25.20565],[80.41209,25.21324],[80.40773,25.21802],[80.41075,25.22408],[80.40334,25.24403],[80.40013,25.24634],[80.39626,25.24643],[80.38867,25.23751],[80.38358,25.23729],[80.36963,25.24763],[80.36939,25.24953],[80.36587,25.25107],[80.35681,25.2618],[80.35497,25.27092],[80.35143,25.27716],[80.34821,25.27845],[80.32551,25.27823],[80.3108,25.28641],[80.31117,25.29823],[80.31851,25.30506],[80.32136,25.31232],[80.31885,25.32223],[80.32267,25.33209],[80.31819,25.33926],[80.31238,25.34407],[80.30955,25.35436],[80.31127,25.36057],[80.32031,25.36605],[80.31655,25.37761],[80.31541,25.38887],[80.28845,25.41703],[80.28561,25.41711],[80.28506,25.41546],[80.27992,25.42076],[80.26793,25.4221],[80.26384,25.42402],[80.26127,25.41607],[80.25551,25.40956],[80.25554,25.40438],[80.25342,25.40083],[80.24291,25.40357],[80.23616,25.40782],[80.23173,25.40236],[80.22082,25.39674],[80.22036,25.39813],[80.20618,25.40447],[80.20547,25.40682],[80.20756,25.41136],[80.20237,25.41404],[80.196,25.40205],[80.19711,25.40083],[80.19587,25.3991],[80.19655,25.38117],[80.19493,25.37816],[80.189,25.37924],[80.1821,25.3768],[80.16896,25.37686],[80.16734,25.3733],[80.16716,25.36408],[80.16304,25.36299],[80.15808,25.35905],[80.14939,25.35761],[80.14178,25.35066],[80.1311,25.33423],[80.12658,25.34026],[80.11883,25.34329],[80.11737,25.34152],[80.10529,25.34855],[80.10314,25.35154],[80.10096,25.35087],[80.08878,25.35585],[80.08207,25.34463],[80.07267,25.33695],[80.07148,25.33842],[80.06704,25.33943],[80.0647,25.33833],[80.06146,25.34031],[80.04295,25.33802],[80.03895,25.33971],[80.03827,25.3385],[80.03776,25.34027],[80.03342,25.34202],[80.02742,25.33665],[80.02743,25.3346],[80.02584,25.33467],[80.02682,25.33154],[80.02412,25.32947],[80.02338,25.32624],[80.01779,25.32253],[80.01963,25.31579],[80.02426,25.31196],[80.02095,25.30544],[80.02265,25.30349],[80.02221,25.29762],[80.01905,25.29909],[80.01198,25.29563],[80.01093,25.29281],[80.00779,25.29178],[80.00448,25.28796],[80.00192,25.28902],[79.99894,25.28597],[79.99851,25.27754],[80.00109,25.27648],[80.00159,25.27384],[80.00728,25.27214],[80.0043,25.26935],[80.00512,25.26571],[79.98666,25.26739],[79.98078,25.26185],[79.96848,25.26655],[79.96049,25.26423],[79.95325,25.26453],[79.94833,25.26866],[79.9388,25.258],[79.93657,25.25371],[79.93654,25.24754],[79.92762,25.24961],[79.92303,25.24178],[79.92202,25.23184],[79.91755,25.22683],[79.91847,25.23752],[79.91652,25.24462],[79.90749,25.25089],[79.90503,25.24902],[79.90208,25.24079],[79.89631,25.24255],[79.89292,25.24151],[79.87788,25.25102],[79.87239,25.24276],[79.8681,25.24079],[79.86452,25.23635],[79.85732,25.23472],[79.85138,25.23556],[79.85116,25.22702],[79.85275,25.2251],[79.86034,25.22221],[79.86859,25.21649],[79.86577,25.2153],[79.86705,25.21355],[79.86586,25.21178],[79.86366,25.21263],[79.86173,25.20953],[79.86173,25.20476],[79.85602,25.19405],[79.85891,25.19354],[79.86504,25.18804],[79.86537,25.17995],[79.86309,25.17719],[79.87009,25.17227],[79.8656,25.16105],[79.86646,25.14982],[79.86914,25.14767],[79.8734,25.149],[79.88153,25.14205],[79.87491,25.14338],[79.86882,25.14053],[79.86614,25.14106],[79.85162,25.12855],[79.85277,25.12563],[79.85179,25.12171],[79.84683,25.11598],[79.84801,25.11053],[79.85039,25.11023],[79.84983,25.10759],[79.85325,25.10583],[79.85249,25.10288],[79.85427,25.10338],[79.86169,25.09674],[79.85124,25.0942],[79.84504,25.09403],[79.8287,25.09932],[79.82657,25.10626],[79.82397,25.10825],[79.80833,25.11003],[79.80488,25.11309],[79.77262,25.1251],[79.76365,25.13005],[79.76199,25.13427],[79.7485,25.13935],[79.73985,25.13535],[79.73564,25.13129],[79.71725,25.12877],[79.69289,25.13324],[79.68806,25.13267],[79.68336,25.13515],[79.67834,25.13178],[79.67637,25.1243],[79.67322,25.12036],[79.67001,25.12284],[79.66048,25.12471],[79.64922,25.12971],[79.64151,25.12692],[79.6375,25.12906],[79.63642,25.13138],[79.6288,25.13422],[79.62271,25.14061],[79.62154,25.14046],[79.62205,25.13593],[79.62038,25.13447],[79.60834,25.12804],[79.60114,25.12749],[79.59941,25.12814],[79.5998,25.13511],[79.60332,25.14293],[79.60573,25.14343],[79.60762,25.14928],[79.60636,25.14976],[79.60699,25.15277],[79.59981,25.14383],[79.59569,25.14337],[79.59369,25.14898],[79.58914,25.1487],[79.58249,25.15088],[79.57968,25.15346],[79.57805,25.16022],[79.57581,25.16189],[79.57736,25.1626],[79.57725,25.16565],[79.57529,25.16707],[79.57628,25.16822],[79.56936,25.1718],[79.56878,25.16898],[79.56506,25.17063],[79.56041,25.16979],[79.56041,25.16758],[79.5569,25.16365],[79.55164,25.16071],[79.54648,25.14836],[79.54184,25.14284],[79.53891,25.1405],[79.53466,25.14215],[79.53486,25.14002],[79.53238,25.13882],[79.53289,25.13331],[79.52751,25.13109],[79.52391,25.13135],[79.52078,25.12699],[79.51795,25.12703],[79.52112,25.12519],[79.51876,25.1181],[79.52425,25.10716],[79.52611,25.09989],[79.52489,25.09697],[79.52062,25.09762],[79.51873,25.09504],[79.51041,25.09683],[79.50584,25.09545],[79.5036,25.09351],[79.50304,25.08888],[79.5,25.08344],[79.49529,25.08355],[79.4915,25.07965],[79.48284,25.07965],[79.48081,25.08153],[79.47731,25.08179],[79.47528,25.08617],[79.4724,25.08778],[79.46502,25.08805],[79.46823,25.09417],[79.47014,25.10797],[79.47724,25.12745],[79.4715,25.12812],[79.46971,25.12476],[79.4597,25.12006],[79.45211,25.10865],[79.44618,25.10479],[79.44137,25.10395],[79.43892,25.10122],[79.43696,25.10547],[79.4392,25.1278],[79.43527,25.13171],[79.42702,25.13543],[79.4213,25.13543],[79.41577,25.1331],[79.42552,25.13015],[79.42689,25.12583],[79.42613,25.11906],[79.42119,25.11518],[79.41996,25.11106],[79.41439,25.10942],[79.41155,25.11018],[79.40574,25.10636],[79.39308,25.11694],[79.39601,25.12836],[79.38757,25.13031],[79.3907,25.14128],[79.38395,25.14271],[79.3896,25.16545],[79.39225,25.16905],[79.3899,25.17011],[79.39337,25.17318],[79.40307,25.17638],[79.41163,25.1827],[79.41151,25.19059],[79.40836,25.19469],[79.4123,25.19831],[79.41208,25.20032],[79.42172,25.20033],[79.43737,25.19682],[79.44037,25.19882],[79.44883,25.21507],[79.43568,25.21684],[79.43372,25.21763],[79.43266,25.22064],[79.44653,25.2442],[79.45057,25.24379],[79.45351,25.24822],[79.45609,25.2475],[79.46214,25.25627],[79.46246,25.26467],[79.47567,25.26099],[79.47635,25.26508],[79.49307,25.26206],[79.49446,25.26691],[79.48192,25.26854],[79.48154,25.27082],[79.47845,25.27301],[79.4793,25.27843],[79.46722,25.2833],[79.46651,25.27975],[79.46116,25.28252],[79.45858,25.27978],[79.46024,25.27407],[79.46292,25.27221],[79.46227,25.27106],[79.45743,25.26852],[79.45538,25.26905],[79.45013,25.26307],[79.44484,25.25916],[79.4405,25.25807],[79.43745,25.25488],[79.4259,25.25354],[79.40881,25.25609],[79.40678,25.25806],[79.4085,25.26163],[79.40761,25.27392],[79.39457,25.28275],[79.39205,25.27957],[79.38903,25.27958],[79.38665,25.28152],[79.38754,25.28582],[79.36859,25.29246],[79.36734,25.28121],[79.36995,25.2798],[79.37021,25.27651],[79.37307,25.27503],[79.3725,25.27299],[79.37389,25.2725],[79.37021,25.26553],[79.36982,25.25999],[79.3629,25.2617],[79.35528,25.2659],[79.35478,25.26884],[79.35856,25.27679],[79.35661,25.27853],[79.35831,25.28424],[79.35193,25.28334],[79.33615,25.2881],[79.34096,25.29955],[79.34658,25.30508],[79.34136,25.30762],[79.342,25.3105],[79.33965,25.31128],[79.34133,25.31893],[79.34467,25.32301],[79.34697,25.32199],[79.35223,25.32988],[79.34444,25.33232],[79.34209,25.329],[79.33905,25.32922],[79.33097,25.33184],[79.32654,25.33525],[79.30842,25.33401],[79.29989,25.33763],[79.29831,25.33287],[79.29916,25.32878],[79.29568,25.32364],[79.2789,25.32399],[79.27833,25.32015],[79.27052,25.30972],[79.26753,25.28462],[79.26304,25.27218],[79.26676,25.26593],[79.27354,25.26061],[79.27532,25.26327],[79.28182,25.26182],[79.28927,25.27278],[79.28783,25.2737],[79.29008,25.28041],[79.29379,25.28358],[79.30291,25.27429],[79.30336,25.26963],[79.30991,25.26262],[79.31039,25.25989],[79.31652,25.25596],[79.32701,25.25579],[79.32959,25.25761],[79.33521,25.2698],[79.33818,25.26802],[79.34335,25.26896],[79.34736,25.2667],[79.35086,25.26392],[79.34468,25.25],[79.34534,25.23473],[79.34358,25.22706],[79.33908,25.22661],[79.33451,25.22959],[79.33276,25.22828],[79.33607,25.223],[79.34452,25.21726],[79.34772,25.21308],[79.35189,25.21216],[79.34925,25.20654],[79.33836,25.19796],[79.32821,25.20986],[79.32938,25.21146],[79.32779,25.21342],[79.32853,25.22132],[79.32473,25.21851],[79.30899,25.22368],[79.30687,25.22492],[79.30816,25.23194],[79.30522,25.23246],[79.29919,25.23993],[79.2939,25.24033],[79.28499,25.24593],[79.27925,25.24473],[79.28355,25.23798],[79.28596,25.22764],[79.28543,25.22028],[79.28182,25.20891],[79.28462,25.19119],[79.29226,25.18417],[79.29891,25.19146],[79.30143,25.20143],[79.30851,25.19829],[79.31005,25.18188],[79.30869,25.17899],[79.30437,25.17823],[79.31045,25.17213],[79.31363,25.16188],[79.32313,25.14983],[79.31526,25.14715],[79.31365,25.13624],[79.30969,25.13421],[79.30731,25.12947],[79.29661,25.13202],[79.29241,25.13053],[79.28643,25.13139],[79.2879,25.12778],[79.28255,25.11754],[79.27818,25.11743],[79.27772,25.11994],[79.27279,25.12256],[79.27032,25.12053],[79.2659,25.12147],[79.2599,25.12526],[79.26404,25.12824],[79.2649,25.13387],[79.26881,25.13845],[79.26354,25.14071],[79.26646,25.14626],[79.26489,25.15173],[79.26053,25.15307],[79.25556,25.15786],[79.2492,25.15954],[79.23976,25.1576],[79.23234,25.15339],[79.23168,25.15126],[79.22416,25.14605],[79.23634,25.1405],[79.24922,25.1403],[79.24994,25.13871],[79.24611,25.1348],[79.24304,25.12298],[79.24809,25.11686],[79.24514,25.11385],[79.24037,25.11326],[79.22737,25.122],[79.22228,25.11504],[79.21803,25.11291],[79.21718,25.1108],[79.21503,25.11141],[79.21241,25.11399],[79.2136,25.12066],[79.20384,25.12561],[79.20524,25.12915],[79.20246,25.13251],[79.20431,25.13992],[79.19605,25.14284],[79.19221,25.14621],[79.19034,25.14331],[79.18612,25.1442],[79.18515,25.14202],[79.18335,25.14337],[79.17949,25.14078],[79.1766,25.14135],[79.17727,25.13776],[79.17462,25.12821],[79.18729,25.12638],[79.18545,25.12066],[79.186,25.11493],[79.18134,25.11648],[79.1779,25.11558],[79.17424,25.10828],[79.1658,25.10719],[79.16429,25.1088],[79.16226,25.10737],[79.16127,25.10893],[79.15931,25.10744],[79.15772,25.11144],[79.14391,25.11487],[79.14017,25.10858],[79.12402,25.11078],[79.12437,25.11879],[79.13213,25.12711],[79.12126,25.13425],[79.116,25.13965],[79.12609,25.16122],[79.11317,25.16451],[79.09585,25.1747],[79.09461,25.17663],[79.09545,25.18246],[79.09063,25.19081],[79.08815,25.18695],[79.08862,25.18435],[79.08141,25.18134],[79.07678,25.17429],[79.07388,25.17364],[79.07149,25.1702],[79.07124,25.16112],[79.068,25.1497],[79.06299,25.14798],[79.06125,25.14489],[79.05559,25.14133],[79.05548,25.139],[79.0528,25.13816],[79.05081,25.13398],[79.03076,25.13848],[79.02879,25.14178],[79.03342,25.1525],[79.03236,25.15645],[79.03688,25.16139],[79.03184,25.164],[79.03686,25.1666],[79.04004,25.1709],[79.03439,25.1741],[79.03469,25.17799],[79.03157,25.18035],[79.03091,25.18448],[79.04223,25.1967],[79.0445,25.20174],[79.04873,25.20609],[79.05233,25.20744],[79.05402,25.20169],[79.04859,25.19345],[79.05206,25.18743],[79.05967,25.19041],[79.06209,25.19333],[79.06098,25.19518],[79.06205,25.19904],[79.06432,25.19947],[79.06414,25.20169],[79.06242,25.20028],[79.06032,25.20107],[79.06195,25.20665],[79.06057,25.20964],[79.06373,25.21487],[79.06368,25.22176],[79.03365,25.23372],[79.03999,25.24268],[79.03387,25.24285],[79.02847,25.2406],[79.02613,25.24222],[79.02485,25.24087],[79.02177,25.24157],[79.02139,25.24538],[79.01799,25.24927],[79.02432,25.25723],[79.02561,25.26128],[79.02084,25.26444],[79.02285,25.2679],[79.01322,25.27405],[79.01215,25.27243],[78.99437,25.27316],[78.99493,25.26708],[78.98683,25.26414],[78.98522,25.25916],[78.97995,25.25452],[78.97484,25.24049],[78.97472,25.23729],[78.97608,25.23666],[78.98062,25.23994],[78.9846,25.23958],[78.98289,25.23425],[78.99466,25.23222],[79.00119,25.2337],[78.99923,25.23151],[79.00251,25.22795],[79.00103,25.22105],[79.00742,25.212],[79.00614,25.21224],[79.00537,25.20708],[79.00587,25.19505],[78.99277,25.19686],[78.98074,25.20532],[78.9806,25.21146],[78.97594,25.21198],[78.97029,25.21644],[78.96498,25.21718],[78.96308,25.21108],[78.95747,25.21746],[78.95386,25.21896],[78.95165,25.21288],[78.94656,25.21429],[78.93529,25.2107],[78.93433,25.21189],[78.92521,25.20445],[78.90754,25.18479],[78.91189,25.18084],[78.90965,25.17787],[78.90305,25.17492],[78.90303,25.17043],[78.89806,25.16862],[78.89028,25.16066],[78.88771,25.16101],[78.88191,25.15689],[78.8804,25.15762],[78.87865,25.16684],[78.87998,25.17106],[78.87437,25.17241],[78.87285,25.17541],[78.87344,25.18389],[78.87255,25.18656],[78.87064,25.18701],[78.87398,25.19137],[78.88283,25.19794],[78.8868,25.20604],[78.88635,25.21],[78.89058,25.21442],[78.87722,25.22374],[78.87036,25.22643],[78.86953,25.23111],[78.8716,25.23887],[78.87711,25.24507],[78.8795,25.25226],[78.88092,25.25401],[78.88581,25.25375],[78.89338,25.24471],[78.89977,25.24312],[78.90239,25.24589],[78.90385,25.25247],[78.90841,25.25647],[78.91233,25.26924],[78.91703,25.27359],[78.92925,25.26982],[78.93293,25.2633],[78.93759,25.25969],[78.94514,25.25942],[78.94732,25.26179],[78.9546,25.26136],[78.95392,25.26934],[78.94868,25.27418],[78.95551,25.28276],[78.97353,25.27716],[78.97754,25.27673],[78.97992,25.27905],[78.97687,25.28292],[78.97561,25.28814],[78.9689,25.29259],[78.96387,25.29936],[78.95743,25.30224],[78.96029,25.30737],[78.95748,25.31625],[78.95727,25.32494],[78.96151,25.34345],[78.96062,25.34508],[78.95771,25.3459],[78.95318,25.34047],[78.94771,25.34213],[78.94631,25.3339],[78.93774,25.32718],[78.93276,25.32698],[78.93225,25.32517],[78.92793,25.32413],[78.92672,25.32724],[78.93006,25.3295],[78.93222,25.33594],[78.92254,25.3429],[78.92091,25.34359],[78.91619,25.33494],[78.91389,25.33497],[78.91184,25.33256],[78.89601,25.3397],[78.89266,25.33864],[78.88657,25.34339],[78.882,25.34364],[78.88037,25.33211],[78.88125,25.32492],[78.86757,25.32555],[78.86554,25.31844],[78.86262,25.31445],[78.86397,25.31022],[78.87446,25.30845],[78.87088,25.30335],[78.87176,25.29912],[78.8799,25.28598],[78.87498,25.27838],[78.87281,25.28042],[78.86661,25.28039],[78.865,25.2647],[78.85993,25.2577],[78.85629,25.25665],[78.85737,25.24396],[78.85392,25.24107],[78.85214,25.23732],[78.85217,25.23082],[78.84965,25.22879],[78.8428,25.22769],[78.83514,25.24291],[78.83274,25.25252],[78.82291,25.2562],[78.81865,25.26355],[78.80947,25.2706],[78.81088,25.27559],[78.81374,25.27762],[78.81293,25.28006],[78.81808,25.28313],[78.8174,25.29111],[78.82043,25.29609],[78.81845,25.29895],[78.82099,25.30135],[78.8278,25.30141],[78.82857,25.30274],[78.82273,25.3068],[78.81715,25.30668],[78.80391,25.29219],[78.79766,25.28917],[78.79393,25.29117],[78.79117,25.29589],[78.78778,25.29601],[78.79232,25.30809],[78.79824,25.31394],[78.81034,25.30781],[78.81437,25.30851],[78.8193,25.30694],[78.81719,25.30877],[78.82129,25.31151],[78.8219,25.3161],[78.83445,25.32322],[78.83936,25.3318],[78.84207,25.33262],[78.84261,25.33655],[78.84716,25.33678],[78.84616,25.32698],[78.84994,25.33494],[78.84483,25.34202],[78.8413,25.34264],[78.84104,25.34497],[78.84359,25.34947],[78.84731,25.35051],[78.84574,25.35555],[78.85161,25.35746],[78.85701,25.36292],[78.85953,25.36312],[78.85834,25.3644],[78.86154,25.36937],[78.86287,25.37117],[78.86786,25.37244],[78.87178,25.38095],[78.87464,25.3797],[78.88145,25.38226],[78.88024,25.38589],[78.91377,25.38425],[78.91776,25.3961],[78.91981,25.39697],[78.92969,25.39589],[78.93166,25.39988],[78.93506,25.39897],[78.93474,25.39518],[78.93598,25.39513],[78.9402,25.40038],[78.9533,25.39995],[78.95355,25.39815],[78.95647,25.39719],[78.95755,25.39368],[78.95237,25.38854],[78.95103,25.38969],[78.94737,25.38488],[78.94541,25.38561],[78.94212,25.38294],[78.93829,25.37483],[78.92857,25.37834],[78.92861,25.38021],[78.91594,25.38144],[78.91259,25.37712],[78.89908,25.37769],[78.89642,25.37411],[78.89657,25.37186],[78.89968,25.36861],[78.90134,25.36162],[78.91453,25.35762],[78.92325,25.35879],[78.92382,25.35483],[78.92699,25.35161],[78.93871,25.34698],[78.945,25.35041],[78.95044,25.36061],[78.95181,25.36067],[78.95916,25.37151],[78.96354,25.3689],[78.9654,25.37068],[78.97524,25.36607],[78.97896,25.36954],[78.9816,25.36954],[78.98933,25.37404],[78.98619,25.37807],[78.98751,25.38129],[78.96993,25.39011],[78.9733,25.39418],[78.9738,25.39789],[78.97204,25.40298],[78.96846,25.40467],[78.97623,25.41996],[78.96999,25.42323],[78.96974,25.43166],[78.967,25.43462],[78.9603,25.43715],[78.958,25.44028],[78.95348,25.43901],[78.95094,25.44055],[78.95037,25.43733],[78.94678,25.43593],[78.93827,25.42225],[78.93245,25.42404],[78.93151,25.42756],[78.93264,25.4303],[78.92165,25.43242],[78.90887,25.44242],[78.90897,25.44508],[78.91541,25.44626],[78.92351,25.45384],[78.92522,25.45712],[78.92399,25.45949],[78.93602,25.46161],[78.93782,25.46504],[78.94391,25.48293],[78.92671,25.49089],[78.93148,25.49121],[78.93719,25.48933],[78.94216,25.49245],[78.9402,25.49334],[78.94109,25.49503],[78.93676,25.49542],[78.933,25.49936],[78.93499,25.50526],[78.92712,25.5074],[78.9199,25.5154],[78.92244,25.51567],[78.9272,25.52498],[78.93642,25.51979],[78.94685,25.52946],[78.95285,25.53753],[78.94755,25.54086],[78.95179,25.54879],[78.9433,25.55378],[78.94413,25.55627],[78.93649,25.55683],[78.9331,25.55534],[78.93087,25.5509],[78.92795,25.5498],[78.92337,25.53594],[78.92222,25.53605],[78.91618,25.54627],[78.91773,25.54973],[78.91694,25.5525],[78.9112,25.55516],[78.90405,25.55135],[78.90005,25.5522],[78.89686,25.55514],[78.8934,25.55531],[78.88104,25.55297],[78.87692,25.54846],[78.87429,25.54095],[78.87791,25.53681],[78.88644,25.53243],[78.88706,25.52684],[78.88438,25.51558],[78.87611,25.51747],[78.87107,25.5132],[78.86648,25.51205],[78.85216,25.51387],[78.84154,25.51254],[78.83341,25.50264],[78.83282,25.4995],[78.84232,25.49891],[78.84019,25.49336],[78.85436,25.49001],[78.85536,25.48448],[78.85744,25.48424],[78.8603,25.47925],[78.86031,25.47126],[78.86617,25.46567],[78.86547,25.45893],[78.86298,25.45614],[78.86388,25.45124],[78.8607,25.445],[78.85651,25.44668],[78.84891,25.43726],[78.84807,25.42974],[78.84656,25.42869],[78.83782,25.42797],[78.83163,25.43157],[78.82802,25.42825],[78.82357,25.43134],[78.82433,25.4342],[78.82073,25.43869],[78.8234,25.44261],[78.82576,25.44335],[78.84046,25.4417],[78.84184,25.44382],[78.84563,25.44331],[78.84826,25.44595],[78.85207,25.44549],[78.85489,25.44769],[78.83518,25.45479],[78.84089,25.4615],[78.83123,25.46118],[78.82061,25.46774],[78.81593,25.46176],[78.81426,25.45614],[78.81248,25.4566],[78.80917,25.45341],[78.80638,25.45447],[78.81046,25.46142],[78.81797,25.46751],[78.81869,25.47098],[78.8051,25.47533],[78.79669,25.48276],[78.79094,25.48337],[78.78681,25.4795],[78.77632,25.4784],[78.77493,25.47611],[78.7728,25.47627],[78.77104,25.47191],[78.76783,25.46943],[78.75821,25.47553],[78.75622,25.4786],[78.7572,25.48069],[78.74733,25.48476],[78.74784,25.4887],[78.74631,25.48942],[78.74732,25.49461],[78.74283,25.49878],[78.73635,25.49382],[78.73346,25.48943],[78.73183,25.45806],[78.73507,25.45733],[78.73706,25.45499],[78.73745,25.44979],[78.75,25.44858],[78.75236,25.44671],[78.75383,25.44317],[78.75775,25.44025],[78.75611,25.43824],[78.75799,25.43208],[78.76236,25.4269],[78.7707,25.42285],[78.7734,25.42697],[78.77848,25.42917],[78.78212,25.4342],[78.78514,25.43578],[78.80297,25.43716],[78.80951,25.43422],[78.81047,25.43035],[78.82137,25.42258],[78.81974,25.41991],[78.7991,25.42289],[78.79812,25.42084],[78.79977,25.41927],[78.79581,25.41645],[78.78792,25.41986],[78.78251,25.41571],[78.77917,25.41925],[78.77495,25.41987],[78.76738,25.41496],[78.75811,25.4154],[78.74974,25.41106],[78.74686,25.40306],[78.74556,25.40281],[78.74815,25.39099],[78.75,25.39385],[78.75676,25.39506],[78.76479,25.40187],[78.76798,25.40003],[78.76517,25.39091],[78.76134,25.38594],[78.75692,25.38544],[78.75986,25.38166],[78.77366,25.37617],[78.76592,25.36915],[78.77444,25.35614],[78.77459,25.3531],[78.75997,25.35044],[78.75478,25.35147],[78.75278,25.34591],[78.74105,25.34498],[78.738,25.34794],[78.73096,25.34872],[78.72752,25.3443],[78.72412,25.34397],[78.70879,25.35199],[78.70791,25.36309],[78.7136,25.36962],[78.71405,25.37215],[78.70761,25.37193],[78.70301,25.37377],[78.6996,25.38189],[78.69467,25.37386],[78.67536,25.38115],[78.66384,25.38256],[78.65895,25.38529],[78.66629,25.39273],[78.66234,25.39633],[78.66362,25.40088],[78.65916,25.40579],[78.6589,25.4085],[78.66601,25.41581],[78.66831,25.40648],[78.67142,25.40507],[78.6749,25.39957],[78.70307,25.41894],[78.70906,25.42401],[78.71143,25.4281],[78.70257,25.43294],[78.6997,25.43701],[78.69961,25.44009],[78.69655,25.44299],[78.68987,25.44575],[78.68171,25.43322],[78.67041,25.44002],[78.66545,25.43978],[78.65983,25.44166],[78.65625,25.43779],[78.65398,25.43841],[78.65068,25.43637],[78.64321,25.43531],[78.64136,25.43349],[78.64096,25.42942],[78.64456,25.41947],[78.64493,25.41267],[78.63582,25.40069],[78.631,25.3993],[78.62575,25.40123],[78.62362,25.41347],[78.61938,25.41559],[78.61392,25.41458],[78.60967,25.41602],[78.60446,25.41351],[78.60667,25.4113],[78.60111,25.409],[78.60225,25.39916],[78.59843,25.39627],[78.59941,25.39256],[78.59019,25.38603],[78.58364,25.3877],[78.58145,25.38571],[78.57612,25.39073],[78.5665,25.39353],[78.56616,25.3871],[78.56354,25.38326],[78.56289,25.37726],[78.56924,25.37731],[78.57778,25.38124],[78.5857,25.37417],[78.58877,25.36597],[78.58779,25.35588],[78.58475,25.35338],[78.58329,25.34697],[78.57751,25.34384],[78.57083,25.3433],[78.56727,25.34074],[78.56138,25.34122],[78.55281,25.35294],[78.55184,25.3567],[78.53649,25.3602],[78.532,25.35658],[78.53064,25.35148],[78.54123,25.34554],[78.53705,25.33823],[78.54048,25.33011],[78.53964,25.32775],[78.54371,25.32603],[78.54386,25.32418],[78.54694,25.32198],[78.55007,25.32238],[78.55307,25.31964],[78.53754,25.31066],[78.534,25.31013],[78.53119,25.30002],[78.5202,25.29946],[78.5099,25.29555],[78.50657,25.29952],[78.50275,25.30087],[78.50359,25.30407],[78.5006,25.31378],[78.50298,25.3187],[78.5023,25.3209],[78.49717,25.31943],[78.49478,25.31308],[78.48434,25.3009],[78.47804,25.29852],[78.47693,25.29663],[78.47756,25.28948],[78.47295,25.2855],[78.47118,25.29034],[78.46709,25.29076],[78.45379,25.30127],[78.44519,25.29931],[78.44034,25.29547],[78.43893,25.28866],[78.43503,25.28416],[78.43659,25.2827],[78.43829,25.27458],[78.45085,25.26211],[78.46495,25.26659],[78.47289,25.27374],[78.48364,25.27736],[78.48698,25.281],[78.50343,25.28953],[78.50753,25.28454],[78.51056,25.27678],[78.51665,25.27789],[78.53092,25.28465],[78.5318,25.28162],[78.53372,25.28063],[78.53084,25.27711],[78.53361,25.26837],[78.53731,25.26889],[78.54118,25.26568],[78.54527,25.26471],[78.54983,25.26776],[78.55972,25.26359],[78.563,25.26368],[78.56846,25.25978],[78.57204,25.25957],[78.5705,25.25831],[78.57127,25.25722],[78.5779,25.25482],[78.5731,25.24584],[78.56808,25.24084],[78.56744,25.22994],[78.56012,25.222],[78.55554,25.21142],[78.55644,25.21025],[78.56281,25.22148],[78.56819,25.22474],[78.5702,25.22388],[78.57054,25.20519],[78.57639,25.1952],[78.58334,25.18733],[78.60068,25.15539],[78.60333,25.14596],[78.60533,25.12693],[78.60429,25.1175],[78.60568,25.10887],[78.60191,25.09784],[78.60245,25.09442],[78.61326,25.08758],[78.62815,25.0862],[78.63602,25.07717],[78.65262,25.05059],[78.65192,25.03916],[78.65336,25.03145],[78.64572,25.0186],[78.64706,25.00612],[78.64471,25.00332],[78.64401,24.98429],[78.64143,24.98197],[78.6414,24.97778],[78.63893,24.97578],[78.64003,24.97208],[78.633,24.96712],[78.63394,24.96339],[78.63164,24.96162],[78.63173,24.95769],[78.63613,24.95927],[78.65236,24.94784],[78.65284,24.9438],[78.64988,24.94102],[78.65186,24.93838],[78.65577,24.94037],[78.66339,24.93844],[78.66724,24.91379],[78.67656,24.89863],[78.68365,24.89499],[78.69668,24.89318],[78.70503,24.88725],[78.71089,24.87966],[78.72217,24.88166],[78.72913,24.87895],[78.74676,24.86522],[78.7539,24.86883],[78.76219,24.86002],[78.77004,24.85902],[78.77477,24.84975],[78.77357,24.84094],[78.77593,24.83072],[78.78342,24.81612],[78.78984,24.81098],[78.78703,24.80131],[78.77429,24.79462],[78.7704,24.7884],[78.7728,24.78257],[78.77035,24.7747],[78.77135,24.76883],[78.77,24.75808],[78.7766,24.75183],[78.7723,24.74311],[78.77329,24.73117],[78.77685,24.71364],[78.78115,24.70893],[78.781,24.70608],[78.77795,24.69948],[78.77354,24.69662],[78.77098,24.69141],[78.76364,24.69048],[78.76522,24.68087],[78.76147,24.6709],[78.75879,24.66904],[78.75474,24.66915],[78.75051,24.66419],[78.74677,24.66268],[78.74719,24.65651],[78.74393,24.65406],[78.7454,24.6516],[78.74863,24.65106],[78.74919,24.64817],[78.75064,24.64856],[78.74948,24.64676],[78.75196,24.64241],[78.75001,24.64185],[78.7527,24.63401],[78.75208,24.62192],[78.75482,24.61992],[78.75109,24.61721],[78.75457,24.60382],[78.75203,24.60018],[78.76933,24.59417],[78.77657,24.58874],[78.78379,24.58856],[78.799,24.59437],[78.8032,24.59929],[78.80322,24.60353],[78.81145,24.60393],[78.81244,24.6021],[78.81679,24.60099],[78.82383,24.60244],[78.82637,24.6046],[78.83461,24.60456],[78.83776,24.6158],[78.8433,24.62329],[78.84873,24.62213],[78.85253,24.6247],[78.85555,24.61785],[78.85977,24.61764],[78.86623,24.62743],[78.86861,24.6368],[78.86802,24.63999],[78.87447,24.64178],[78.87705,24.64081],[78.87721,24.64221],[78.88323,24.64129],[78.88231,24.64041],[78.88636,24.63737],[78.88555,24.63495],[78.88999,24.63114],[78.88941,24.62962],[78.89218,24.62929],[78.8962,24.62572],[78.89479,24.6213],[78.89701,24.61479],[78.89915,24.61425],[78.90061,24.60722],[78.90207,24.60779],[78.90206,24.60616],[78.91003,24.60297],[78.91114,24.60012],[78.91257,24.60017],[78.91262,24.59074],[78.92015,24.57481],[78.92343,24.5735],[78.92493,24.57499],[78.92921,24.56573],[78.9338,24.56396],[78.93502,24.56076],[78.94645,24.55715],[78.94834,24.55425],[78.94711,24.55071],[78.95321,24.5469],[78.94815,24.54414],[78.94368,24.53451],[78.94648,24.52585],[78.95132,24.51878],[78.94804,24.51515],[78.94726,24.5024],[78.95705,24.49876],[78.96561,24.49792],[78.97152,24.49424],[78.97044,24.48922],[78.96347,24.48353],[78.94312,24.47901],[78.93622,24.47942],[78.92722,24.48207],[78.92792,24.48433],[78.93714,24.49105],[78.9318,24.49138],[78.92719,24.49452],[78.92495,24.49963],[78.92058,24.49972],[78.91634,24.48233],[78.91221,24.47344],[78.9127,24.46558],[78.91485,24.46229],[78.91421,24.45962],[78.91512,24.4582],[78.92827,24.46019],[78.93992,24.45345],[78.94178,24.45107],[78.94272,24.44408],[78.94748,24.43662],[78.9548,24.43703],[78.96096,24.43954],[78.96522,24.43873],[78.98576,24.44168],[78.99365,24.42275],[78.99245,24.41891],[78.98405,24.41026],[78.98435,24.40478],[78.97693,24.38875],[78.97503,24.37857],[78.96991,24.37028],[78.97259,24.35449],[78.9707,24.35138],[78.97145,24.34761],[78.96301,24.34421],[78.94125,24.31529],[78.92365,24.30649],[78.91888,24.30023],[78.90964,24.298],[78.91161,24.288],[78.91866,24.28298],[78.91607,24.26763],[78.90546,24.26453],[78.88437,24.25],[78.88407,24.24335],[78.88805,24.22728],[78.88185,24.21701],[78.8768,24.2138],[78.86095,24.20921],[78.8521,24.21404],[78.84689,24.21377],[78.83807,24.20734],[78.82675,24.19545],[78.82376,24.19685],[78.82177,24.20415],[78.81495,24.2068],[78.81301,24.20354],[78.81221,24.19315],[78.81415,24.18426],[78.81162,24.17998],[78.80553,24.17818],[78.78943,24.17711],[78.78725,24.18266],[78.78554,24.1835],[78.78075,24.19977],[78.78113,24.20605],[78.77699,24.21108],[78.77133,24.21447],[78.76737,24.22021],[78.76751,24.22668],[78.76452,24.2318],[78.76766,24.23879],[78.76865,24.24843],[78.76741,24.25311],[78.76189,24.25954],[78.75987,24.25733],[78.75979,24.24407],[78.75545,24.24112],[78.75496,24.23834],[78.75042,24.23389],[78.7416,24.23384],[78.74042,24.23498],[78.739,24.23808],[78.74181,24.24501],[78.74126,24.24734],[78.73417,24.25241],[78.72789,24.24822],[78.72638,24.24203],[78.72364,24.24],[78.72557,24.23644],[78.70871,24.23431],[78.70306,24.22692],[78.68252,24.23823],[78.66863,24.24004],[78.66664,24.24196],[78.66712,24.24476],[78.66383,24.25067],[78.6643,24.2561],[78.66005,24.26759],[78.64928,24.27163],[78.64565,24.27853],[78.63877,24.28513],[78.63137,24.28643],[78.6258,24.28059],[78.62454,24.28656],[78.62003,24.29032],[78.61997,24.29289],[78.62809,24.30031],[78.62844,24.30394],[78.62624,24.30732],[78.62341,24.3071],[78.61914,24.31033],[78.61821,24.30709],[78.61582,24.30963],[78.60942,24.30855],[78.60365,24.3145],[78.60104,24.32655],[78.59652,24.332],[78.5961,24.33518],[78.58929,24.33772],[78.58429,24.3465],[78.5831,24.34983],[78.586,24.35374],[78.57647,24.35565],[78.575,24.35532],[78.57319,24.35099],[78.56331,24.35798],[78.55934,24.35674],[78.53837,24.36795],[78.52988,24.3681],[78.52991,24.37238],[78.52723,24.37525],[78.52983,24.37891],[78.52729,24.37914],[78.52565,24.38319],[78.51838,24.38782],[78.50223,24.39034],[78.49362,24.38138],[78.48579,24.36934],[78.47429,24.35634],[78.47421,24.34777],[78.47758,24.33848],[78.46366,24.33013],[78.45639,24.32818],[78.45527,24.32407],[78.44389,24.31935],[78.44587,24.31587],[78.43869,24.31254],[78.43762,24.30858],[78.44015,24.29624],[78.43394,24.29127],[78.43388,24.28792],[78.43109,24.28403],[78.4242,24.28558],[78.4184,24.28494],[78.41408,24.27792],[78.41396,24.27298],[78.40997,24.27112],[78.40345,24.2706],[78.40001,24.27202],[78.39813,24.26944],[78.39538,24.26896],[78.39162,24.27068],[78.38852,24.27085],[78.38787,24.26905],[78.38705,24.2709],[78.3849,24.27001],[78.38187,24.27312],[78.38085,24.28041],[78.3781,24.28408],[78.37033,24.28404],[78.36627,24.29107],[78.35816,24.29231],[78.34805,24.29958],[78.34559,24.30624],[78.34587,24.31391],[78.34369,24.31731],[78.33146,24.32393],[78.32908,24.32713],[78.33128,24.33432],[78.34329,24.34462],[78.3468,24.35241],[78.35693,24.36282],[78.35793,24.36758],[78.36967,24.37493],[78.36579,24.38598],[78.3562,24.38543],[78.3489,24.38744],[78.34491,24.39387],[78.34385,24.39914],[78.34075,24.40207],[78.32189,24.4088],[78.307,24.42309],[78.26969,24.44694],[78.26452,24.4531],[78.26416,24.4557],[78.27379,24.46723],[78.27498,24.47392],[78.26802,24.47904],[78.24957,24.48358],[78.24589,24.48614],[78.24406,24.48905],[78.24773,24.5026],[78.24602,24.50954],[78.24442,24.51142],[78.23321,24.51408],[78.22582,24.52011],[78.22574,24.53054],[78.22944,24.53753],[78.24351,24.5442],[78.2561,24.54714],[78.26447,24.5522],[78.26646,24.55939],[78.26482,24.5675],[78.26733,24.57595],[78.27289,24.57941],[78.2733,24.59576],[78.27798,24.61476],[78.27618,24.61948],[78.26532,24.63141],[78.26267,24.646],[78.26405,24.6511],[78.27522,24.65818],[78.2767,24.66299],[78.26534,24.67934],[78.25752,24.70417],[78.25035,24.71148],[78.22614,24.74691],[78.22557,24.75303],[78.23178,24.76236],[78.23505,24.76381],[78.23574,24.77175],[78.23174,24.77714],[78.21668,24.80859],[78.20403,24.8244],[78.1976,24.83978],[78.19347,24.84252],[78.17751,24.84333],[78.17327,24.84669],[78.16897,24.86262],[78.16906,24.86934],[78.17351,24.87864],[78.19495,24.88943],[78.21059,24.89481],[78.22381,24.91531],[78.2494,24.92987],[78.25623,24.9368],[78.26595,24.94102],[78.27093,24.94877],[78.27915,24.95607],[78.28666,24.95814],[78.29459,24.96306],[78.30703,24.97747],[78.31181,24.98563],[78.31682,24.99001],[78.33385,24.9955],[78.34536,25.01208],[78.34737,25.02153],[78.34018,25.04028],[78.33549,25.06656],[78.3355,25.08114],[78.33863,25.08658],[78.36084,25.09573],[78.38345,25.10172],[78.38786,25.10572],[78.39973,25.12411],[78.40682,25.12893],[78.41544,25.12843],[78.43444,25.12014],[78.44682,25.12177],[78.44795,25.12811],[78.44203,25.13094],[78.42737,25.14589],[78.4273,25.15399],[78.43206,25.15517],[78.44785,25.15271],[78.45187,25.15998],[78.45826,25.16372],[78.45155,25.16893],[78.44608,25.16823],[78.44337,25.16548],[78.4234,25.16931],[78.42474,25.17208],[78.41636,25.17644],[78.41664,25.18353],[78.39608,25.18722],[78.39413,25.1935],[78.39466,25.19735],[78.39156,25.19894],[78.39138,25.20119],[78.39829,25.20538],[78.3993,25.20862],[78.41095,25.21267],[78.4049,25.21488],[78.4025,25.2176],[78.39796,25.21822],[78.39672,25.21691],[78.38206,25.22259],[78.37714,25.22784],[78.37852,25.23869],[78.37488,25.23924],[78.37296,25.23719],[78.36739,25.23685],[78.3598,25.24219],[78.37251,25.25991],[78.36877,25.26138],[78.36637,25.26673],[78.36055,25.27272],[78.35709,25.27314],[78.35011,25.27733],[78.35459,25.29225],[78.33397,25.29241],[78.32991,25.29649],[78.3197,25.29883],[78.3166,25.30184],[78.31173,25.3033],[78.31126,25.30519],[78.32274,25.31633],[78.32489,25.31595],[78.32935,25.3196],[78.33055,25.319],[78.3337,25.3226],[78.3387,25.32406],[78.34379,25.32846],[78.33755,25.33025],[78.3373,25.33639],[78.32806,25.35254],[78.31909,25.35496],[78.31605,25.35755],[78.30498,25.3605],[78.3008,25.35993],[78.30611,25.37518],[78.30531,25.37675],[78.30794,25.3812],[78.31685,25.37867],[78.32237,25.38741],[78.33138,25.39075],[78.34053,25.39952],[78.34091,25.40283],[78.33884,25.40698],[78.34309,25.42002],[78.33939,25.42638],[78.3389,25.43102],[78.34179,25.43098],[78.34698,25.43528],[78.34991,25.44096],[78.34902,25.44281],[78.35454,25.45198],[78.3602,25.45147],[78.36219,25.44598],[78.36946,25.43833],[78.37643,25.43865],[78.37766,25.43681],[78.38095,25.44035],[78.39496,25.44421],[78.39722,25.45627],[78.40031,25.46355],[78.40386,25.4671],[78.41411,25.46979],[78.41649,25.47648],[78.42781,25.4712],[78.43131,25.47363],[78.42741,25.48485],[78.42869,25.48785],[78.4193,25.50039],[78.41681,25.5017],[78.41881,25.50902],[78.42059,25.50813],[78.42248,25.51003],[78.42853,25.50993],[78.42885,25.51154],[78.41906,25.51814],[78.42031,25.52403],[78.41934,25.53296],[78.42107,25.53992],[78.42635,25.54279],[78.42783,25.54539],[78.42828,25.55043],[78.4436,25.5632],[78.44937,25.56329],[78.44647,25.56146],[78.44762,25.56072],[78.44656,25.55943],[78.45096,25.55176],[78.4563,25.54806],[78.46469,25.54551],[78.46627,25.55118],[78.46983,25.55348],[78.46657,25.55337],[78.46567,25.55637],[78.46685,25.55932],[78.47537,25.56466],[78.47833,25.56468],[78.47864,25.56741],[78.48332,25.5708],[78.48266,25.57222],[78.48635,25.57436],[78.4871,25.57315],[78.49334,25.5787],[78.49766,25.57779],[78.49986,25.57416],[78.50206,25.57493],[78.50672,25.57297],[78.5066,25.57152],[78.50912,25.57254],[78.51275,25.56931],[78.51912,25.57029],[78.52366,25.56699],[78.52746,25.56801],[78.52837,25.56666],[78.5327,25.57166],[78.54219,25.56535],[78.54248,25.56295],[78.54466,25.56158],[78.55565,25.55928],[78.5587,25.56058],[78.56063,25.55905],[78.56316,25.56274],[78.56675,25.56256],[78.56921,25.56462],[78.58227,25.56138],[78.58774,25.5566],[78.59113,25.55834],[78.59243,25.56319],[78.59802,25.57069],[78.60155,25.56912],[78.61169,25.56987],[78.61078,25.57797],[78.61596,25.58353],[78.61814,25.58366],[78.6308,25.57893],[78.62419,25.56738],[78.6463,25.56075],[78.65867,25.55989],[78.6675,25.5747],[78.67489,25.57733],[78.67886,25.5853],[78.68731,25.58889],[78.69508,25.58783],[78.69942,25.59091],[78.70018,25.59507],[78.7042,25.59791],[78.71634,25.59953],[78.71598,25.6036],[78.71733,25.60533],[78.72065,25.60554],[78.72457,25.60216],[78.73177,25.60625],[78.73531,25.60101],[78.74215,25.59699],[78.74927,25.59877],[78.75032,25.60304],[78.76621,25.6102],[78.77397,25.61205],[78.77881,25.61091],[78.78236,25.61271],[78.79394,25.61242],[78.79799,25.61643],[78.81176,25.62078],[78.81169,25.63208],[78.81613,25.63581],[78.81987,25.64857],[78.8157,25.66233],[78.81878,25.6692],[78.8167,25.67632],[78.8125,25.68105],[78.80716,25.68412],[78.80453,25.69228],[78.79557,25.69672],[78.79511,25.69978],[78.79998,25.70294],[78.79991,25.70507],[78.78363,25.70872],[78.77478,25.717],[78.76333,25.71993],[78.7557,25.73047],[78.75286,25.75],[78.75873,25.75452],[78.77081,25.74863],[78.77356,25.75527],[78.77208,25.75722],[78.77296,25.75861],[78.77628,25.75978],[78.77883,25.75787],[78.78288,25.75848],[78.78628,25.76472],[78.78597,25.76924],[78.79138,25.77581],[78.79785,25.78838],[78.80292,25.79208],[78.80829,25.80097],[78.82862,25.79571],[78.8333,25.80962],[78.82831,25.81434],[78.82046,25.81574],[78.81431,25.80704],[78.81145,25.80769],[78.81143,25.8096],[78.8092,25.80989],[78.80627,25.81309],[78.80777,25.81685],[78.81038,25.8169],[78.81487,25.82236],[78.81844,25.82901],[78.84555,25.82155],[78.84796,25.81517],[78.84564,25.81136],[78.84618,25.80719],[78.84473,25.80605],[78.846,25.80519],[78.84478,25.80456],[78.84753,25.80334],[78.84465,25.80342],[78.84745,25.80268],[78.84595,25.80078],[78.85553,25.79516],[78.85715,25.79182],[78.86364,25.79078],[78.86439,25.79308],[78.86708,25.79321],[78.87039,25.80137],[78.87244,25.80138],[78.87281,25.80832],[78.86997,25.80903],[78.87061,25.81679],[78.87424,25.82215],[78.87193,25.82811],[78.87258,25.83509],[78.8643,25.83594],[78.86209,25.84274],[78.85141,25.83846],[78.8506,25.85218],[78.85241,25.85665],[78.86195,25.86556],[78.86411,25.87141],[78.87306,25.87514],[78.87621,25.87588],[78.88738,25.86849],[78.89168,25.88024],[78.88672,25.88291],[78.88698,25.88471],[78.89481,25.89517],[78.89115,25.89715],[78.88845,25.90422],[78.88337,25.90901],[78.88464,25.91393],[78.89859,25.91794],[78.90566,25.92562],[78.90576,25.92953],[78.90969,25.93153],[78.90825,25.9345],[78.91569,25.93797],[78.91671,25.94005],[78.92154,25.94065],[78.92748,25.94725],[78.93207,25.94745],[78.93609,25.94167],[78.93896,25.94269],[78.93885,25.94427],[78.93329,25.94818],[78.9371,25.95275],[78.93429,25.95314],[78.93484,25.95586],[78.9305,25.95893],[78.93484,25.96137],[78.93473,25.96442],[78.93761,25.96453],[78.93781,25.97377],[78.93494,25.97498],[78.93318,25.97933],[78.93611,25.98184],[78.94068,25.97851],[78.94354,25.97887],[78.95315,25.98906],[78.95298,25.991],[78.94932,25.99123],[78.9483,25.99319],[78.95554,25.99491],[78.95681,25.99654],[78.95606,25.99801],[78.95129,25.99852],[78.9466,26.00116],[78.94449,26.00628],[78.94821,26.00822],[78.94823,26.01051],[78.95351,26.01522],[78.94826,26.02775],[78.95302,26.02934],[78.95455,26.03338],[78.96039,26.03486],[78.9693,26.04563],[78.97389,26.04504],[78.97273,26.05028],[78.97655,26.05104],[78.9769,26.04794],[78.98015,26.04812],[78.98188,26.05161],[78.98614,26.05368],[78.9863,26.06043],[78.98943,26.06284],[78.99069,26.06883],[79.00275,26.06665],[79.00814,26.07542],[79.00841,26.08014],[79.01206,26.08318],[79.01257,26.08991],[79.00866,26.09321],[79.0021,26.09017],[78.99358,26.09371],[78.987,26.0995],[78.97559,26.1052],[78.97746,26.11114],[78.97683,26.11604],[78.96344,26.12216],[78.96237,26.12532],[78.95848,26.12797],[78.94887,26.12868],[78.95157,26.13432],[78.9629,26.13653],[78.96372,26.1404],[78.96565,26.14141],[78.96438,26.14846],[78.96696,26.15014],[78.97996,26.1511],[78.99426,26.1462],[78.99854,26.15001],[79.0049,26.14805],[79.00428,26.14982],[79.00823,26.1564],[79.00476,26.16263],[79.00614,26.16392],[79.00413,26.16638],[79.00529,26.16744],[79.00447,26.16922],[78.99955,26.16993],[78.99471,26.17291],[78.98661,26.18242],[78.98311,26.18436],[78.99367,26.19689],[78.99768,26.19849],[79.00688,26.19167],[79.02583,26.19177],[79.02009,26.19822],[79.02083,26.20021],[79.02783,26.20328],[79.02481,26.2084],[79.02582,26.2201],[79.01363,26.22551],[78.99655,26.22804],[78.98936,26.23498],[78.99169,26.23896],[78.9939,26.23874],[78.9968,26.24189],[79.00372,26.24441],[79.00957,26.24201],[79.01088,26.24468],[79.01944,26.24761],[79.03067,26.23929],[79.0346,26.22537],[79.03786,26.22733],[79.0471,26.22417],[79.05333,26.22804],[79.06344,26.2259],[79.06535,26.22977],[79.06243,26.2365],[79.0642,26.23883],[79.07094,26.24152],[79.06894,26.24317],[79.0697,26.2457],[79.06446,26.2493],[79.05712,26.24904],[79.05343,26.25082],[79.0521,26.2546],[79.04597,26.25645],[79.04564,26.26031],[79.05566,26.25886],[79.05693,26.26025],[79.05351,26.26269],[79.06184,26.27174],[79.06464,26.27704],[79.07453,26.27783],[79.07701,26.28062],[79.08069,26.27841],[79.08443,26.27969],[79.08361,26.27549],[79.08545,26.27622],[79.0857,26.27403],[79.08775,26.27331],[79.0869,26.27139],[79.09065,26.27003],[79.09107,26.27252],[79.09652,26.27849],[79.08989,26.28772],[79.09708,26.29453],[79.0979,26.30093],[79.10193,26.30682],[79.10952,26.30652],[79.11331,26.30464],[79.11368,26.30195],[79.11742,26.29891],[79.11874,26.30104],[79.11753,26.30517],[79.1249,26.31159],[79.11983,26.31258],[79.11625,26.31665],[79.11553,26.32048],[79.12492,26.32241],[79.12515,26.32704],[79.12742,26.32186],[79.13497,26.32474],[79.13263,26.33532],[79.13722,26.33551],[79.13883,26.33751],[79.13413,26.33914],[79.13221,26.33718],[79.12844,26.33888],[79.12711,26.34308],[79.12046,26.34831],[79.1163,26.3483],[79.11568,26.34999],[79.11427,26.3488],[79.11085,26.34961],[79.11095,26.35156],[79.10926,26.35213],[79.10758,26.34963],[79.10475,26.34946],[79.10309,26.35319],[79.09809,26.35555],[79.09387,26.35393],[79.08907,26.35463],[79.08417,26.35927],[79.08731,26.36843],[79.09135,26.37113],[79.09479,26.36967],[79.09637,26.37232],[79.0954,26.37373],[79.09692,26.37549],[79.0943,26.37615],[79.09684,26.381],[79.09639,26.38305],[79.089,26.39663],[79.09187,26.40595],[79.09438,26.40833],[79.09609,26.40798],[79.09435,26.41085],[79.09521,26.41264],[79.0995,26.41201],[79.10025,26.40817],[79.10469,26.40638],[79.12598,26.41125],[79.12528,26.41238],[79.1237,26.41156],[79.12432,26.42261],[79.12828,26.43142],[79.13518,26.44013],[79.12928,26.44047],[79.12703,26.44296],[79.12301,26.44406],[79.1219,26.44705],[79.11801,26.44558],[79.10788,26.44814],[79.09972,26.45259],[79.09607,26.44999],[79.09722,26.44479],[79.0959,26.44259],[79.08784,26.44618],[79.08381,26.44146],[79.08172,26.44297],[79.08132,26.44123],[79.07879,26.44036],[79.07701,26.44214],[79.06989,26.44162],[79.06755,26.4441],[79.06807,26.44598],[79.06382,26.44871],[79.06215,26.45384],[79.0573,26.45249],[79.05262,26.45374],[79.05779,26.46235],[79.0616,26.46532],[79.0717,26.47887],[79.0678,26.4846],[79.06813,26.49662],[79.05632,26.49509],[79.0538,26.50254],[79.04493,26.5103],[79.04862,26.518],[79.0462,26.51821],[79.04183,26.51457],[79.03966,26.51511],[79.0383,26.51845],[79.03981,26.52986],[79.0266,26.53571],[79.02915,26.54317],[79.02834,26.54669],[79.02638,26.54679],[79.01887,26.54095],[79.01712,26.54149],[79.01457,26.54619],[79.00992,26.54322],[79.00774,26.54387],[79.00702,26.54859],[79.01269,26.54912],[79.01441,26.55067],[79.00628,26.55937],[79.00724,26.56546],[79.00021,26.57841],[78.99107,26.57701],[78.98978,26.57845],[78.99004,26.58465],[78.98759,26.58632],[78.98748,26.59283],[78.98914,26.59556],[78.99205,26.59406],[78.99808,26.59763],[79.01706,26.60104],[79.00803,26.62356],[78.99346,26.64191],[79.00863,26.66331],[79.00852,26.66929],[79.00378,26.67374],[78.99457,26.67715],[78.97915,26.67563],[78.9711,26.67145],[78.9572,26.65766],[78.94929,26.65454],[78.94549,26.65482],[78.94298,26.65669],[78.94248,26.66407],[78.94887,26.67492],[78.95772,26.68306],[78.9586,26.68733],[78.95606,26.69168],[78.93438,26.69757],[78.92419,26.70343],[78.91256,26.70683],[78.90683,26.7065],[78.90007,26.70054],[78.88918,26.69696],[78.87236,26.69779],[78.85848,26.70928],[78.84319,26.7283],[78.83194,26.73941],[78.82243,26.75725],[78.81899,26.76094],[78.81239,26.76335],[78.78512,26.75918],[78.77102,26.75908],[78.76674,26.76332],[78.76129,26.78075],[78.75827,26.78452],[78.7536,26.78701],[78.74692,26.78667],[78.73978,26.77694],[78.73621,26.77468],[78.72719,26.77647],[78.72565,26.77905],[78.72988,26.79222],[78.72803,26.79489],[78.7229,26.79727],[78.71084,26.79238],[78.69841,26.79238],[78.68452,26.78875],[78.67739,26.77809],[78.67591,26.76757],[78.67053,26.76241],[78.66291,26.76243],[78.64683,26.76946],[78.62845,26.77323],[78.61931,26.76666],[78.61624,26.75603],[78.613,26.75243],[78.60303,26.75005],[78.59281,26.75234],[78.58161,26.74889],[78.57686,26.74897],[78.57173,26.75167],[78.56478,26.76113],[78.54408,26.76461],[78.52323,26.78031],[78.49779,26.78159],[78.47963,26.78703],[78.4617,26.78819],[78.45317,26.79771],[78.44012,26.81998],[78.43429,26.82571],[78.42765,26.82537],[78.40555,26.81841],[78.39905,26.81848],[78.3929,26.8236],[78.38256,26.84065],[78.37276,26.86336]],[[75.22607,24.84505],[75.22264,24.84409],[75.21794,24.84655],[75.21601,24.85075],[75.20874,24.85403],[75.20814,24.8614],[75.20073,24.86784],[75.20541,24.87701],[75.20847,24.8943],[75.21327,24.89332],[75.21605,24.88896],[75.22027,24.88788],[75.22126,24.88272],[75.2194,24.87561],[75.22163,24.87378],[75.23008,24.87729],[75.23894,24.8866],[75.24296,24.88722],[75.25067,24.88051],[75.24913,24.86707],[75.24672,24.86197],[75.24304,24.86065],[75.23266,24.84812],[75.22607,24.84505]],[[79.39876,25.03372],[79.39496,25.03212],[79.3942,25.03574],[79.38414,25.03854],[79.38429,25.04236],[79.38141,25.04182],[79.37726,25.0452],[79.37402,25.04482],[79.37533,25.05075],[79.36904,25.05432],[79.36202,25.0482],[79.36748,25.04607],[79.36418,25.04098],[79.3598,25.03928],[79.35611,25.04047],[79.35977,25.05345],[79.35622,25.05643],[79.35806,25.05935],[79.3492,25.0625],[79.35113,25.06888],[79.3574,25.06827],[79.36002,25.06325],[79.36534,25.05903],[79.36908,25.05908],[79.37102,25.06293],[79.37981,25.06479],[79.37983,25.06695],[79.37466,25.06773],[79.37957,25.08561],[79.37251,25.09199],[79.37946,25.09897],[79.37969,25.10122],[79.37394,25.10407],[79.36193,25.10623],[79.35639,25.10939],[79.35058,25.11698],[79.35257,25.12298],[79.35506,25.12446],[79.35052,25.12636],[79.35414,25.13021],[79.3582,25.14329],[79.36031,25.14426],[79.3742,25.1426],[79.36382,25.12565],[79.37132,25.12345],[79.3777,25.12518],[79.3809,25.12243],[79.38261,25.11273],[79.38041,25.11142],[79.38037,25.1076],[79.38686,25.1021],[79.38936,25.09177],[79.38719,25.0857],[79.39821,25.0831],[79.40237,25.07869],[79.40503,25.07853],[79.40469,25.0683],[79.40739,25.06478],[79.42591,25.05859],[79.42245,25.05485],[79.42466,25.053],[79.42386,25.045],[79.42204,25.04157],[79.41638,25.04107],[79.41695,25.03777],[79.41394,25.03817],[79.41356,25.03562],[79.4096,25.03386],[79.40181,25.03513],[79.39876,25.03372]],[[79.36677,25.17224],[79.36146,25.1711],[79.35447,25.17589],[79.35952,25.18855],[79.37256,25.18002],[79.36677,25.17224]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-MZ","area_level":"State","area_name":"Mizoram","geometry_source":"SOI_States","same_as":"LGD/15/State"},"geometry":{"type":"Polygon","coordinates":[[[92.7636,24.52112],[92.75777,24.51277],[92.75805,24.51102],[92.75604,24.51126],[92.75613,24.50957],[92.75215,24.50623],[92.75189,24.50401],[92.75422,24.502],[92.74937,24.49517],[92.75082,24.49209],[92.74698,24.48703],[92.74051,24.46855],[92.73365,24.45474],[92.7275,24.44642],[92.72612,24.43851],[92.72171,24.43195],[92.72286,24.42811],[92.71797,24.42015],[92.71739,24.4156],[92.71509,24.41498],[92.7129,24.41121],[92.71509,24.40954],[92.71138,24.40722],[92.71327,24.40332],[92.70922,24.39735],[92.70928,24.39337],[92.70647,24.39215],[92.70734,24.38699],[92.70566,24.38438],[92.70409,24.38464],[92.70361,24.37545],[92.69764,24.3743],[92.69533,24.36885],[92.69282,24.36847],[92.69476,24.36536],[92.69117,24.36252],[92.69151,24.35754],[92.68925,24.35524],[92.68976,24.3536],[92.68376,24.35046],[92.68484,24.34654],[92.6791,24.3478],[92.67716,24.35015],[92.67339,24.34964],[92.66894,24.34609],[92.6663,24.3463],[92.66562,24.34964],[92.66427,24.34606],[92.66316,24.34882],[92.66137,24.34816],[92.66062,24.34405],[92.65768,24.34438],[92.65911,24.3419],[92.65161,24.33547],[92.65172,24.33105],[92.65011,24.3316],[92.64923,24.3286],[92.64617,24.33095],[92.64576,24.32778],[92.63872,24.32842],[92.64036,24.33361],[92.6363,24.33134],[92.63542,24.33356],[92.63869,24.33445],[92.63569,24.3367],[92.63024,24.33362],[92.62477,24.33408],[92.62243,24.33134],[92.62234,24.32811],[92.62368,24.32728],[92.62155,24.32371],[92.62374,24.3228],[92.62361,24.32028],[92.61955,24.31354],[92.6195,24.30801],[92.6183,24.30745],[92.61819,24.29818],[92.61591,24.28958],[92.61971,24.28713],[92.61311,24.25865],[92.61416,24.25595],[92.6123,24.25347],[92.60605,24.24845],[92.59571,24.25049],[92.58903,24.24877],[92.57213,24.25188],[92.56261,24.2512],[92.55595,24.24681],[92.5509,24.24722],[92.54705,24.23645],[92.54687,24.23297],[92.54848,24.23186],[92.54675,24.22991],[92.54712,24.22016],[92.5423,24.21344],[92.54326,24.21147],[92.54096,24.21024],[92.54201,24.20752],[92.54048,24.20358],[92.53669,24.20126],[92.53784,24.19677],[92.53464,24.19367],[92.53111,24.18511],[92.53421,24.18015],[92.52893,24.17808],[92.53017,24.17632],[92.52404,24.17144],[92.51934,24.1739],[92.51552,24.17886],[92.50997,24.17246],[92.51211,24.17048],[92.51468,24.17072],[92.51441,24.16946],[92.50691,24.16988],[92.51141,24.16541],[92.51004,24.1646],[92.50753,24.16706],[92.50327,24.16777],[92.50618,24.16413],[92.50335,24.16343],[92.50151,24.16039],[92.49421,24.16018],[92.49039,24.16279],[92.48371,24.16303],[92.48241,24.16061],[92.48342,24.15826],[92.47943,24.15661],[92.48184,24.15597],[92.4807,24.15003],[92.47705,24.1474],[92.48061,24.14541],[92.47865,24.14426],[92.47868,24.14202],[92.47462,24.14364],[92.47257,24.1399],[92.4686,24.14023],[92.46432,24.13623],[92.46412,24.13862],[92.46101,24.13764],[92.45673,24.14436],[92.45237,24.1442],[92.45058,24.14714],[92.44912,24.14397],[92.4428,24.15446],[92.44046,24.15275],[92.43642,24.15303],[92.43584,24.16513],[92.43792,24.16951],[92.43401,24.17513],[92.43573,24.17929],[92.43237,24.18448],[92.42155,24.1895],[92.4189,24.1927],[92.42132,24.20119],[92.41876,24.20469],[92.41858,24.21264],[92.42117,24.21811],[92.41936,24.22613],[92.42253,24.25486],[92.28959,24.25235],[92.29253,24.25012],[92.29735,24.23149],[92.30428,24.22351],[92.31041,24.22127],[92.31086,24.21784],[92.31627,24.2118],[92.31419,24.20961],[92.3147,24.20639],[92.32154,24.20373],[92.31912,24.19786],[92.32608,24.19707],[92.32177,24.19418],[92.32636,24.19136],[92.32243,24.18872],[92.32545,24.18552],[92.32629,24.18168],[92.33206,24.17956],[92.32653,24.17772],[92.32591,24.17355],[92.32387,24.17123],[92.32442,24.16818],[92.32863,24.16625],[92.32873,24.15507],[92.33173,24.15179],[92.32874,24.14312],[92.3307,24.13969],[92.32456,24.13943],[92.32586,24.13249],[92.32474,24.11968],[92.32711,24.117],[92.3243,24.11507],[92.32502,24.1127],[92.32791,24.11194],[92.32262,24.10439],[92.3269,24.10444],[92.32767,24.10149],[92.32492,24.09759],[92.32482,24.08817],[92.32219,24.08154],[92.32416,24.07926],[92.31925,24.07819],[92.32129,24.07269],[92.31939,24.07012],[92.31656,24.07004],[92.3168,24.06653],[92.31986,24.06374],[92.3163,24.0595],[92.31761,24.05497],[92.31531,24.05315],[92.31273,24.05488],[92.31215,24.05212],[92.31643,24.04561],[92.31201,24.03851],[92.31571,24.03768],[92.31574,24.03487],[92.31211,24.03241],[92.31695,24.03006],[92.31478,24.02595],[92.31982,24.02444],[92.31877,24.02188],[92.31542,24.02337],[92.31395,24.02122],[92.31919,24.01517],[92.32018,24.01226],[92.3189,24.00821],[92.32436,24.00465],[92.32284,24.00273],[92.3262,23.99778],[92.32216,23.99392],[92.32358,23.98854],[92.32141,23.98756],[92.32194,23.9832],[92.32014,23.97902],[92.31731,23.97878],[92.31735,23.97511],[92.31445,23.97284],[92.31039,23.97227],[92.31031,23.96952],[92.3086,23.96808],[92.31,23.96302],[92.30797,23.96056],[92.3092,23.95739],[92.30829,23.95423],[92.31053,23.95234],[92.31092,23.94821],[92.30927,23.94414],[92.31068,23.93483],[92.30899,23.93122],[92.3163,23.92806],[92.31927,23.91569],[92.32519,23.91409],[92.32198,23.91007],[92.32397,23.90487],[92.31811,23.89841],[92.31688,23.8996],[92.31665,23.88907],[92.31286,23.88481],[92.31118,23.88011],[92.31318,23.87747],[92.31063,23.87334],[92.31097,23.86975],[92.31659,23.86527],[92.31503,23.8605],[92.3117,23.86022],[92.30767,23.85691],[92.29934,23.85969],[92.28966,23.86817],[92.28511,23.86715],[92.27927,23.85634],[92.26958,23.84768],[92.26868,23.84218],[92.28086,23.82118],[92.28234,23.81463],[92.26628,23.81591],[92.25706,23.81247],[92.26001,23.79347],[92.26487,23.77316],[92.26731,23.7686],[92.26551,23.76137],[92.26718,23.75164],[92.26553,23.74323],[92.2667,23.73238],[92.26549,23.72501],[92.27969,23.71581],[92.27847,23.71019],[92.28322,23.70674],[92.2848,23.70712],[92.28495,23.70427],[92.28727,23.70153],[92.28935,23.7018],[92.28969,23.69248],[92.29094,23.69083],[92.28959,23.68659],[92.29148,23.68123],[92.28917,23.68034],[92.28359,23.66178],[92.28143,23.66111],[92.27484,23.64952],[92.27303,23.64166],[92.27552,23.64194],[92.28178,23.63856],[92.27664,23.63175],[92.27863,23.62492],[92.28004,23.62556],[92.27913,23.62866],[92.28047,23.63051],[92.28855,23.62887],[92.29604,23.62108],[92.28974,23.61975],[92.28734,23.61674],[92.28726,23.59604],[92.28848,23.59542],[92.28898,23.59813],[92.29141,23.59532],[92.29358,23.59516],[92.29316,23.59334],[92.29652,23.58803],[92.29834,23.5926],[92.30185,23.59243],[92.30159,23.58839],[92.30395,23.58291],[92.30594,23.58297],[92.30821,23.57771],[92.30509,23.57343],[92.30766,23.56901],[92.30681,23.57172],[92.30904,23.57112],[92.30848,23.56551],[92.30694,23.56616],[92.30686,23.56409],[92.3134,23.55636],[92.31274,23.553],[92.31075,23.5555],[92.3092,23.55232],[92.30871,23.54961],[92.31069,23.54706],[92.31008,23.5421],[92.30799,23.54093],[92.30625,23.53504],[92.30904,23.53234],[92.31397,23.53326],[92.31425,23.52944],[92.31626,23.52926],[92.31789,23.52633],[92.31326,23.52075],[92.3136,23.5155],[92.31769,23.51716],[92.31838,23.51492],[92.3156,23.51288],[92.31979,23.51243],[92.31892,23.50332],[92.32283,23.50102],[92.31929,23.50061],[92.32052,23.49445],[92.31743,23.49425],[92.3189,23.49213],[92.32195,23.49177],[92.32195,23.49011],[92.31606,23.48682],[92.32177,23.48289],[92.32094,23.48045],[92.32616,23.4788],[92.32285,23.47892],[92.3237,23.47522],[92.3208,23.47372],[92.32006,23.47529],[92.31713,23.47165],[92.32784,23.46641],[92.3318,23.46606],[92.33066,23.45936],[92.3255,23.45908],[92.32994,23.45404],[92.33157,23.45471],[92.33172,23.45709],[92.3333,23.45593],[92.32708,23.44854],[92.33038,23.44616],[92.33392,23.42883],[92.3353,23.42865],[92.33568,23.43345],[92.33808,23.43176],[92.34137,23.43553],[92.34649,23.43319],[92.34775,23.41281],[92.35256,23.41351],[92.3574,23.4107],[92.35815,23.40477],[92.35542,23.40081],[92.35341,23.40579],[92.35294,23.39939],[92.35453,23.38906],[92.35731,23.39172],[92.35881,23.3907],[92.35601,23.38777],[92.35668,23.38471],[92.35305,23.38286],[92.35266,23.38087],[92.35619,23.37962],[92.36339,23.38102],[92.36511,23.37959],[92.35741,23.37465],[92.35643,23.37235],[92.36027,23.36773],[92.36394,23.36616],[92.37049,23.37358],[92.36926,23.36701],[92.37569,23.36537],[92.37906,23.36183],[92.37642,23.35667],[92.38049,23.35557],[92.38068,23.35118],[92.37619,23.347],[92.37485,23.33735],[92.37209,23.33168],[92.36829,23.32546],[92.36436,23.32292],[92.36804,23.31711],[92.36743,23.32293],[92.36937,23.32244],[92.37136,23.31796],[92.37609,23.31989],[92.37733,23.31833],[92.37626,23.31296],[92.38568,23.3062],[92.38576,23.3031],[92.38305,23.30183],[92.38462,23.29812],[92.38274,23.29611],[92.38469,23.29261],[92.38248,23.29068],[92.38116,23.2851],[92.38814,23.28129],[92.39475,23.2646],[92.3928,23.26382],[92.38874,23.26606],[92.3895,23.25964],[92.39824,23.25613],[92.39546,23.2487],[92.39947,23.24186],[92.40268,23.2423],[92.40419,23.24066],[92.4004,23.23877],[92.40141,23.23658],[92.34678,23.23567],[92.35098,23.23377],[92.35393,23.2198],[92.35298,23.21413],[92.3551,23.2068],[92.35241,23.20631],[92.35491,23.20016],[92.35228,23.19457],[92.35414,23.19012],[92.35334,23.18572],[92.35448,23.18434],[92.35842,23.18488],[92.36128,23.18257],[92.36082,23.18007],[92.35564,23.18021],[92.35445,23.17851],[92.35725,23.17796],[92.35757,23.17178],[92.35903,23.16862],[92.36167,23.16755],[92.36251,23.16489],[92.36094,23.162],[92.36436,23.15662],[92.36212,23.15634],[92.36222,23.15292],[92.36047,23.15284],[92.36034,23.14873],[92.35826,23.14635],[92.36038,23.14686],[92.36096,23.14532],[92.35697,23.13415],[92.363,23.13117],[92.36576,23.12701],[92.3682,23.12726],[92.36046,23.11283],[92.3583,23.10593],[92.36009,23.10534],[92.35801,23.10327],[92.36188,23.10044],[92.36152,23.09824],[92.36696,23.09596],[92.37017,23.09651],[92.36918,23.09512],[92.37135,23.08866],[92.37511,23.08445],[92.37728,23.08698],[92.38005,23.08629],[92.37932,23.08365],[92.38081,23.08051],[92.38548,23.07696],[92.38313,23.07194],[92.38879,23.06484],[92.3875,23.06189],[92.39071,23.06051],[92.39238,23.05645],[92.39058,23.05519],[92.39219,23.05379],[92.39151,23.0521],[92.38998,23.05155],[92.39127,23.04916],[92.38853,23.04926],[92.38954,23.04726],[92.38817,23.03974],[92.38385,23.0379],[92.38254,23.03327],[92.38495,23.02732],[92.38342,23.02632],[92.38372,23.02308],[92.37976,23.01206],[92.38465,23.00964],[92.38334,23.00888],[92.38418,23.00488],[92.38206,23.00087],[92.38529,22.99219],[92.38196,22.98809],[92.38502,22.98611],[92.38421,22.98161],[92.38145,22.9824],[92.37944,22.98069],[92.38145,22.9786],[92.38041,22.97582],[92.37833,22.97677],[92.37434,22.97065],[92.37563,22.96358],[92.37405,22.96129],[92.37727,22.95966],[92.37284,22.95823],[92.37501,22.9561],[92.37449,22.95313],[92.37719,22.95551],[92.37817,22.95206],[92.3758,22.94989],[92.37745,22.94817],[92.37475,22.94744],[92.37269,22.93985],[92.37591,22.93679],[92.37178,22.93617],[92.37309,22.93458],[92.37614,22.93502],[92.37758,22.93181],[92.37642,22.92862],[92.39298,22.93069],[92.39759,22.9297],[92.40132,22.92398],[92.39734,22.91696],[92.4011,22.91195],[92.40325,22.91282],[92.40415,22.91775],[92.40677,22.91784],[92.41302,22.91339],[92.41909,22.91883],[92.42027,22.91835],[92.42025,22.90961],[92.42649,22.89722],[92.43315,22.89171],[92.43373,22.88579],[92.4373,22.88602],[92.44596,22.8971],[92.44924,22.89501],[92.45063,22.89035],[92.44855,22.87637],[92.46047,22.8709],[92.45471,22.86953],[92.45212,22.86494],[92.45268,22.86218],[92.45543,22.86076],[92.46161,22.86154],[92.45979,22.85805],[92.46446,22.85465],[92.46242,22.85231],[92.45831,22.85292],[92.45648,22.85103],[92.46006,22.85033],[92.45846,22.84474],[92.46289,22.84332],[92.46325,22.84175],[92.4578,22.84073],[92.45289,22.84296],[92.46195,22.8308],[92.45532,22.82594],[92.45813,22.82295],[92.45425,22.81886],[92.45905,22.81853],[92.45822,22.81659],[92.461,22.81131],[92.46118,22.80735],[92.4628,22.80747],[92.46259,22.81128],[92.46557,22.80963],[92.46685,22.80758],[92.46485,22.80462],[92.46547,22.80222],[92.47227,22.79586],[92.4691,22.78247],[92.47013,22.7818],[92.47184,22.78376],[92.47295,22.78285],[92.47272,22.77611],[92.47585,22.77118],[92.47287,22.76494],[92.47641,22.76417],[92.47368,22.75971],[92.47691,22.75936],[92.47597,22.75595],[92.47935,22.7528],[92.47384,22.74621],[92.47655,22.74521],[92.48217,22.74699],[92.48871,22.74628],[92.49028,22.74538],[92.49119,22.74101],[92.49395,22.74259],[92.49424,22.74005],[92.49793,22.73989],[92.50136,22.73732],[92.50564,22.73922],[92.5082,22.73645],[92.50905,22.73167],[92.5132,22.73279],[92.50994,22.72863],[92.51194,22.72774],[92.51416,22.72327],[92.51664,22.72236],[92.51756,22.71593],[92.51385,22.71032],[92.5139,22.708],[92.5166,22.70444],[92.51889,22.6879],[92.52327,22.67916],[92.52253,22.67408],[92.52595,22.6731],[92.52607,22.66519],[92.52872,22.66515],[92.52653,22.66047],[92.52868,22.65949],[92.52433,22.65899],[92.52352,22.65624],[92.52441,22.65387],[92.52666,22.65374],[92.5273,22.65077],[92.52462,22.65047],[92.52492,22.64014],[92.52677,22.63934],[92.52654,22.63671],[92.52791,22.63566],[92.52621,22.63357],[92.53249,22.63297],[92.53261,22.6275],[92.52743,22.62078],[92.53002,22.62058],[92.5291,22.61476],[92.53216,22.61167],[92.53536,22.61167],[92.53375,22.6075],[92.52995,22.60914],[92.53043,22.60349],[92.53537,22.60014],[92.53592,22.59571],[92.53782,22.59405],[92.53501,22.59103],[92.53619,22.58942],[92.53937,22.58915],[92.536,22.58663],[92.53297,22.58776],[92.53438,22.58517],[92.53855,22.58591],[92.5371,22.58462],[92.53646,22.57873],[92.53814,22.5751],[92.53264,22.57147],[92.5273,22.57299],[92.52804,22.56562],[92.52167,22.55988],[92.52836,22.55662],[92.53192,22.55221],[92.53155,22.5451],[92.53421,22.54409],[92.53721,22.54517],[92.53704,22.5419],[92.54,22.5406],[92.5386,22.53473],[92.54132,22.53426],[92.54151,22.53037],[92.53919,22.52893],[92.54119,22.52758],[92.54081,22.5256],[92.54376,22.52497],[92.54179,22.52242],[92.54414,22.52134],[92.54569,22.51779],[92.54338,22.51417],[92.54504,22.51352],[92.547,22.51682],[92.54725,22.51508],[92.55128,22.5133],[92.54657,22.50989],[92.55083,22.50961],[92.55022,22.50678],[92.54817,22.50742],[92.54719,22.50352],[92.54932,22.50145],[92.54712,22.50159],[92.54593,22.49948],[92.54335,22.50038],[92.5426,22.49876],[92.54993,22.49733],[92.54951,22.49575],[92.54518,22.49521],[92.54333,22.49325],[92.54346,22.49021],[92.54627,22.48866],[92.54423,22.48294],[92.54561,22.48243],[92.54536,22.47971],[92.54751,22.47593],[92.54554,22.47163],[92.54652,22.4662],[92.54808,22.46569],[92.54635,22.46246],[92.54948,22.45896],[92.54823,22.45741],[92.55015,22.4569],[92.54811,22.45602],[92.55097,22.4544],[92.55142,22.44869],[92.55003,22.44774],[92.55131,22.44594],[92.54946,22.44351],[92.55205,22.44225],[92.55168,22.43769],[92.55425,22.43622],[92.55338,22.43379],[92.55538,22.42921],[92.55124,22.42738],[92.55499,22.42721],[92.55498,22.42508],[92.55639,22.4251],[92.55523,22.42254],[92.55069,22.42257],[92.55457,22.41688],[92.55231,22.41533],[92.55208,22.40897],[92.55457,22.41072],[92.55689,22.40927],[92.55758,22.40716],[92.55478,22.40549],[92.55983,22.40183],[92.55946,22.39984],[92.55595,22.39854],[92.55983,22.39552],[92.55846,22.39408],[92.55975,22.39133],[92.55829,22.39113],[92.56106,22.38932],[92.55944,22.38744],[92.56114,22.38511],[92.55933,22.38186],[92.56338,22.3801],[92.56154,22.37835],[92.562,22.37575],[92.56379,22.37543],[92.56248,22.37166],[92.5674,22.37072],[92.56802,22.36051],[92.57187,22.35864],[92.57094,22.35662],[92.57323,22.34829],[92.5719,22.34663],[92.57332,22.34542],[92.57252,22.34267],[92.57505,22.34216],[92.57367,22.33804],[92.57599,22.33708],[92.57596,22.33516],[92.57408,22.33434],[92.57608,22.33296],[92.57428,22.33166],[92.57578,22.33128],[92.57672,22.32499],[92.58023,22.32498],[92.57847,22.32338],[92.58117,22.32176],[92.57945,22.32104],[92.58045,22.31921],[92.57802,22.31654],[92.57996,22.31493],[92.57856,22.31244],[92.58016,22.31175],[92.57725,22.31115],[92.58137,22.30842],[92.58145,22.3069],[92.57957,22.30613],[92.5803,22.30385],[92.58341,22.30393],[92.58019,22.30261],[92.58333,22.29892],[92.58249,22.29105],[92.58107,22.29047],[92.58259,22.28774],[92.58092,22.28642],[92.58411,22.28468],[92.58185,22.28179],[92.58659,22.28025],[92.58439,22.27905],[92.58633,22.27653],[92.58338,22.27732],[92.5835,22.27617],[92.58073,22.27606],[92.58076,22.2735],[92.58229,22.27411],[92.58317,22.2726],[92.58102,22.26918],[92.58432,22.26735],[92.58403,22.26515],[92.58689,22.26395],[92.58437,22.26151],[92.58673,22.25988],[92.58511,22.2586],[92.58676,22.25906],[92.58703,22.25731],[92.58907,22.25733],[92.5888,22.25558],[92.59077,22.25547],[92.58943,22.25392],[92.59092,22.249],[92.58911,22.24752],[92.59142,22.24653],[92.59046,22.24429],[92.59184,22.23922],[92.58967,22.23567],[92.59161,22.23467],[92.58876,22.23295],[92.59032,22.23284],[92.59068,22.23095],[92.58815,22.23039],[92.58939,22.2259],[92.58809,22.22397],[92.59035,22.22293],[92.58805,22.21598],[92.59179,22.21423],[92.59044,22.21326],[92.5927,22.21147],[92.59361,22.2044],[92.59484,22.2042],[92.59407,22.19596],[92.59568,22.19586],[92.59661,22.19026],[92.595,22.18388],[92.59691,22.1837],[92.5944,22.18122],[92.59706,22.17734],[92.59523,22.17539],[92.60375,22.17161],[92.60713,22.17253],[92.60666,22.16591],[92.60923,22.16402],[92.60744,22.16039],[92.61086,22.13844],[92.60786,22.13331],[92.60783,22.12797],[92.60575,22.12339],[92.59918,22.12314],[92.59446,22.12514],[92.58898,22.13144],[92.59328,22.13739],[92.59259,22.13883],[92.5785,22.14341],[92.57632,22.13958],[92.57735,22.13645],[92.56568,22.13478],[92.56397,22.13352],[92.56262,22.12802],[92.57514,22.11617],[92.57661,22.10497],[92.58257,22.09757],[92.5817,22.09164],[92.58435,22.09002],[92.58334,22.08689],[92.58546,22.08505],[92.58489,22.08251],[92.59065,22.081],[92.58986,22.07062],[92.59222,22.06562],[92.59556,22.06171],[92.60266,22.0611],[92.60035,22.05822],[92.60032,22.05299],[92.59797,22.04937],[92.59914,22.04225],[92.59365,22.04097],[92.59262,22.03744],[92.59362,22.03151],[92.60007,22.02841],[92.60054,22.01973],[92.59749,22.01225],[92.5981,22.00898],[92.60351,22.00104],[92.61,21.99767],[92.61005,21.99279],[92.61276,21.99011],[92.61055,21.98377],[92.60404,21.98263],[92.60322,21.97763],[92.60754,21.97466],[92.62137,21.98013],[92.62391,21.98282],[92.63494,21.98322],[92.63677,21.99011],[92.6419,21.99216],[92.64342,22.00249],[92.65139,22.01002],[92.65161,22.01591],[92.65805,22.01558],[92.6607,22.0133],[92.66678,22.0135],[92.66979,22.00967],[92.67133,22.01109],[92.67975,22.01155],[92.68518,22.04305],[92.68224,22.07288],[92.68177,22.10346],[92.68804,22.10373],[92.68864,22.07271],[92.69043,22.07221],[92.69253,22.0751],[92.69132,22.08854],[92.69244,22.10034],[92.69115,22.10523],[92.69262,22.12096],[92.69202,22.1391],[92.69614,22.1377],[92.69697,22.14243],[92.69475,22.14702],[92.69463,22.15336],[92.69976,22.15507],[92.70084,22.15157],[92.70437,22.15021],[92.7072,22.15185],[92.7104,22.15112],[92.71282,22.14741],[92.7268,22.14911],[92.73538,22.13444],[92.73962,22.13198],[92.74125,22.13282],[92.74208,22.13066],[92.74624,22.13119],[92.74718,22.12778],[92.75356,22.12423],[92.76003,22.12551],[92.7619,22.12039],[92.76413,22.12069],[92.76312,22.11895],[92.76643,22.11916],[92.76571,22.11696],[92.76766,22.11671],[92.76683,22.1141],[92.77039,22.11191],[92.77123,22.10891],[92.77295,22.10902],[92.77449,22.10668],[92.77906,22.10766],[92.79035,22.1048],[92.79255,22.1],[92.79594,22.09891],[92.79725,22.09399],[92.80107,22.09433],[92.80392,22.09801],[92.80659,22.09598],[92.80994,22.09592],[92.81346,22.0891],[92.81767,22.08688],[92.81671,22.08097],[92.81817,22.07495],[92.83674,22.07166],[92.8411,22.0594],[92.84746,22.06054],[92.85237,22.06633],[92.85881,22.06705],[92.86188,22.06271],[92.8634,22.06267],[92.86304,22.0577],[92.86593,22.05156],[92.8636,22.03296],[92.86506,22.02369],[92.87575,22.02115],[92.87994,22.02201],[92.87864,22.01505],[92.89073,22.01202],[92.89219,22.00596],[92.89443,22.00375],[92.89525,21.98939],[92.89776,21.97977],[92.89701,21.97299],[92.90048,21.96437],[92.89894,21.96332],[92.90052,21.95751],[92.89881,21.95595],[92.90153,21.95189],[92.90116,21.94694],[92.90385,21.94004],[92.90614,21.94058],[92.90746,21.94282],[92.90594,21.94361],[92.91146,21.95079],[92.91136,21.96096],[92.91357,21.96514],[92.91145,21.96435],[92.91156,21.96595],[92.91343,21.96736],[92.91534,21.97896],[92.91701,21.98137],[92.91881,21.98124],[92.92013,21.98997],[92.92175,21.9906],[92.92075,21.99183],[92.92997,21.99592],[92.93578,22.0057],[92.93462,22.01069],[92.92895,22.00853],[92.92725,22.01564],[92.93076,22.01757],[92.93997,22.01356],[92.94071,22.01682],[92.94239,22.01668],[92.94214,22.02006],[92.94546,22.02109],[92.95225,22.02971],[92.95703,22.02944],[92.96098,22.02566],[92.96075,22.02171],[92.96503,22.01739],[92.96325,22.01573],[92.96467,22.01495],[92.965,22.01079],[92.96724,22.00967],[92.96819,22.00671],[92.97237,22.00608],[92.97354,22.00044],[92.97792,21.99747],[92.97814,21.98687],[92.98056,21.98006],[92.99382,21.9778],[93.00741,21.98233],[93.00276,21.99692],[93.00181,22.00679],[93.00445,22.01349],[93.00427,22.01705],[92.99481,22.03219],[92.99737,22.03561],[92.99469,22.0422],[92.99808,22.05196],[92.99751,22.05435],[93.00187,22.05791],[93.00127,22.06093],[93.00288,22.0628],[93.0014,22.06681],[93.0066,22.07096],[93.00364,22.07457],[93.00518,22.08003],[93.00845,22.08079],[93.00872,22.08476],[93.01163,22.0884],[93.01058,22.09234],[93.00661,22.09467],[93.00427,22.09997],[93.00453,22.10359],[93.00772,22.10464],[93.0194,22.10114],[93.02533,22.10182],[93.04735,22.09814],[93.05958,22.10125],[93.05779,22.10304],[93.05886,22.10717],[93.05705,22.12137],[93.05441,22.12109],[93.05391,22.12531],[93.04508,22.13359],[93.04496,22.13731],[93.04221,22.13648],[93.03951,22.13855],[93.04409,22.14318],[93.04061,22.1427],[93.03981,22.14526],[93.0372,22.14438],[93.03691,22.14887],[93.04122,22.15069],[93.04455,22.15725],[93.04213,22.1594],[93.04757,22.16226],[93.0491,22.1689],[93.04811,22.17515],[93.04014,22.18688],[93.04212,22.19],[93.03822,22.19503],[93.04301,22.19558],[93.04298,22.19918],[93.04642,22.20244],[93.05052,22.20041],[93.05367,22.20246],[93.05682,22.20081],[93.0633,22.2073],[93.08872,22.19654],[93.10274,22.19948],[93.11104,22.20403],[93.11446,22.19068],[93.11689,22.18934],[93.12337,22.17963],[93.12356,22.17355],[93.15083,22.17626],[93.15585,22.18142],[93.15564,22.18471],[93.15752,22.18593],[93.15728,22.18837],[93.1604,22.19209],[93.16146,22.1971],[93.15709,22.20135],[93.15344,22.209],[93.14864,22.21171],[93.15234,22.21664],[93.1474,22.22934],[93.13994,22.23471],[93.14356,22.23795],[93.1421,22.24546],[93.14833,22.24953],[93.15452,22.24724],[93.16395,22.24998],[93.16756,22.24608],[93.17762,22.24573],[93.19276,22.2546],[93.19904,22.25569],[93.19806,22.26021],[93.20179,22.26257],[93.20181,22.26476],[93.19778,22.27051],[93.19738,22.27877],[93.19359,22.28809],[93.19368,22.29062],[93.19814,22.29121],[93.19918,22.29424],[93.19725,22.29636],[93.19241,22.29742],[93.18957,22.3008],[93.19006,22.3025],[93.1954,22.3017],[93.19053,22.30954],[93.19575,22.31432],[93.18957,22.32044],[93.18905,22.32273],[93.19668,22.32876],[93.19434,22.3338],[93.18583,22.33994],[93.18813,22.34511],[93.18668,22.35988],[93.18801,22.36549],[93.18361,22.37101],[93.18354,22.37436],[93.18607,22.38104],[93.18977,22.38269],[93.18506,22.38717],[93.18445,22.39189],[93.18162,22.39531],[93.18433,22.40194],[93.18746,22.40338],[93.18636,22.40711],[93.18301,22.41041],[93.18154,22.41887],[93.18275,22.42255],[93.18573,22.42401],[93.18529,22.42815],[93.17811,22.4328],[93.17859,22.43722],[93.17694,22.4403],[93.16832,22.44327],[93.16347,22.4513],[93.1509,22.45455],[93.1387,22.45452],[93.13631,22.46159],[93.13085,22.46816],[93.13247,22.47366],[93.13181,22.47772],[93.134,22.48208],[93.13282,22.48789],[93.13456,22.49175],[93.12572,22.50171],[93.12378,22.50838],[93.12821,22.52365],[93.12509,22.52549],[93.10853,22.52482],[93.10655,22.52703],[93.1125,22.53275],[93.10918,22.53705],[93.10933,22.54673],[93.11207,22.55762],[93.11569,22.56373],[93.12285,22.5673],[93.12858,22.57825],[93.13801,22.58284],[93.14031,22.59227],[93.13704,22.598],[93.13735,22.60332],[93.13369,22.61415],[93.12727,22.61706],[93.12797,22.62394],[93.12595,22.62581],[93.12137,22.62566],[93.11645,22.63111],[93.10826,22.63573],[93.10699,22.63997],[93.11081,22.64731],[93.10957,22.65549],[93.10152,22.66071],[93.10157,22.66511],[93.09546,22.67249],[93.09476,22.68053],[93.10089,22.68056],[93.10192,22.68267],[93.10087,22.68611],[93.09661,22.68674],[93.09881,22.69371],[93.09724,22.69839],[93.09306,22.70026],[93.09099,22.70481],[93.09285,22.71278],[93.09785,22.7179],[93.09855,22.72821],[93.106,22.74282],[93.10736,22.75262],[93.10017,22.76388],[93.10231,22.76744],[93.09571,22.7854],[93.09778,22.79263],[93.09472,22.80619],[93.0968,22.80891],[93.10504,22.81234],[93.11055,22.81805],[93.10942,22.82013],[93.10474,22.82107],[93.10338,22.82349],[93.10472,22.82576],[93.11234,22.82796],[93.11331,22.82999],[93.11019,22.83346],[93.11533,22.83597],[93.11812,22.84249],[93.11656,22.84607],[93.11886,22.85869],[93.1173,22.86311],[93.12405,22.86688],[93.12666,22.8706],[93.1275,22.87459],[93.12603,22.87644],[93.12865,22.87852],[93.13435,22.89129],[93.13367,22.89505],[93.1295,22.90126],[93.13117,22.90609],[93.13619,22.91205],[93.13978,22.91351],[93.14332,22.91296],[93.15026,22.90787],[93.16098,22.90877],[93.16454,22.91049],[93.16168,22.91663],[93.15437,22.91733],[93.15277,22.9217],[93.14813,22.92511],[93.1451,22.9323],[93.1461,22.94368],[93.14433,22.94685],[93.13804,22.95056],[93.14059,22.95367],[93.14132,22.95762],[93.13722,22.96176],[93.13576,22.97039],[93.14236,22.97152],[93.14381,22.97488],[93.13915,22.98164],[93.14063,22.98996],[93.13745,22.99181],[93.13194,22.99121],[93.12734,22.99609],[93.12599,23.00263],[93.12017,23.00244],[93.12322,23.00777],[93.12528,23.02427],[93.12827,23.03076],[93.12587,23.03531],[93.12581,23.04072],[93.1271,23.04427],[93.13537,23.04836],[93.13326,23.05474],[93.13392,23.05878],[93.13626,23.06065],[93.14033,23.05895],[93.14015,23.0533],[93.15135,23.05375],[93.15353,23.04631],[93.1528,23.04419],[93.15609,23.04318],[93.15986,23.04431],[93.1604,23.04795],[93.16896,23.04669],[93.17567,23.05405],[93.18461,23.05954],[93.18668,23.05816],[93.18822,23.05219],[93.20152,23.05485],[93.20201,23.05075],[93.20987,23.04854],[93.2113,23.03917],[93.21346,23.03594],[93.21635,23.03604],[93.21742,23.03387],[93.21505,23.0273],[93.2187,23.02394],[93.22499,23.02387],[93.22552,23.02027],[93.22978,23.01993],[93.23069,23.01774],[93.22843,23.01342],[93.22946,23.01165],[93.23551,23.01127],[93.24094,23.00715],[93.24691,23.0066],[93.26399,23.0081],[93.26731,23.01048],[93.27124,23.01073],[93.27501,23.00391],[93.28077,23.00529],[93.28317,23.00837],[93.2904,23.00861],[93.29354,23.00644],[93.30452,23.02022],[93.3071,23.02141],[93.31385,23.01943],[93.31341,23.02622],[93.32031,23.02889],[93.32037,23.03667],[93.32368,23.03598],[93.328,23.0396],[93.32742,23.04752],[93.3336,23.04857],[93.33461,23.05945],[93.34325,23.05819],[93.34041,23.06487],[93.34081,23.0677],[93.34586,23.07097],[93.35206,23.0704],[93.35159,23.07289],[93.34518,23.07513],[93.33926,23.07383],[93.34351,23.08018],[93.34345,23.08595],[93.3464,23.0879],[93.34457,23.09177],[93.34713,23.09301],[93.3506,23.09135],[93.35429,23.09683],[93.35537,23.10372],[93.35851,23.10957],[93.3554,23.11314],[93.35566,23.11605],[93.36321,23.11494],[93.36621,23.12138],[93.37234,23.12605],[93.37759,23.12679],[93.37745,23.13263],[93.38448,23.13261],[93.38561,23.13384],[93.38645,23.14411],[93.38353,23.14449],[93.37828,23.14068],[93.37118,23.14109],[93.36823,23.1441],[93.37139,23.15234],[93.36925,23.15412],[93.37208,23.1593],[93.37123,23.16558],[93.37255,23.17119],[93.36865,23.1753],[93.37431,23.17722],[93.38064,23.18659],[93.37696,23.19026],[93.38027,23.1999],[93.37545,23.20422],[93.37799,23.2068],[93.37832,23.21237],[93.3806,23.21535],[93.38804,23.2152],[93.38861,23.21692],[93.38355,23.22392],[93.38127,23.2243],[93.38206,23.23221],[93.3788,23.23431],[93.37939,23.23781],[93.37621,23.24405],[93.37664,23.24789],[93.36947,23.25044],[93.37169,23.25463],[93.37023,23.25864],[93.37364,23.26126],[93.36988,23.26347],[93.3684,23.26877],[93.36571,23.2692],[93.36916,23.27607],[93.36261,23.27914],[93.36388,23.2815],[93.3669,23.28098],[93.36993,23.28717],[93.366,23.29398],[93.36854,23.30183],[93.36508,23.30634],[93.37162,23.30961],[93.36729,23.31046],[93.36383,23.31323],[93.37157,23.31354],[93.37147,23.31656],[93.36755,23.31974],[93.36692,23.32216],[93.3716,23.32615],[93.37288,23.32942],[93.37009,23.33306],[93.36304,23.33632],[93.35812,23.3423],[93.35829,23.34609],[93.35577,23.35189],[93.36075,23.35631],[93.36587,23.35651],[93.37119,23.35907],[93.37932,23.36083],[93.38141,23.35819],[93.38401,23.36193],[93.38763,23.3594],[93.3893,23.36452],[93.38796,23.36742],[93.3912,23.37004],[93.38694,23.37184],[93.38649,23.37408],[93.39305,23.37503],[93.395,23.37682],[93.39696,23.38354],[93.40165,23.38375],[93.40239,23.38932],[93.39834,23.3928],[93.39813,23.39657],[93.39444,23.39717],[93.39149,23.40828],[93.39079,23.41856],[93.38831,23.42082],[93.38984,23.42389],[93.38929,23.43278],[93.39108,23.44203],[93.38801,23.44638],[93.39055,23.45072],[93.39301,23.44777],[93.39476,23.44807],[93.39296,23.45078],[93.39601,23.45367],[93.39221,23.45737],[93.39419,23.45834],[93.39396,23.46447],[93.39741,23.46629],[93.39931,23.47188],[93.39746,23.47287],[93.39816,23.4748],[93.3954,23.47502],[93.3925,23.47881],[93.39551,23.48132],[93.39599,23.48392],[93.39379,23.48668],[93.39528,23.49147],[93.39472,23.50376],[93.39695,23.50499],[93.39796,23.51056],[93.40157,23.50992],[93.40428,23.51259],[93.4038,23.51672],[93.40875,23.51731],[93.40919,23.52343],[93.41398,23.52954],[93.41854,23.54001],[93.41533,23.54457],[93.41244,23.55644],[93.40906,23.55741],[93.40915,23.55872],[93.41378,23.56027],[93.40982,23.56365],[93.41355,23.56507],[93.41467,23.57116],[93.41812,23.56868],[93.42207,23.57137],[93.42323,23.58444],[93.42856,23.58828],[93.42586,23.59103],[93.42756,23.59411],[93.42585,23.59636],[93.42635,23.5996],[93.42419,23.60083],[93.4257,23.60126],[93.42167,23.60312],[93.42448,23.60491],[93.42164,23.60733],[93.42208,23.61032],[93.42052,23.6116],[93.42243,23.61552],[93.41994,23.62345],[93.42269,23.62458],[93.42157,23.6269],[93.42458,23.62954],[93.42267,23.63116],[93.42338,23.63387],[93.41714,23.63765],[93.41843,23.64671],[93.4165,23.64763],[93.42021,23.64876],[93.41958,23.65008],[93.422,23.65165],[93.42039,23.65332],[93.4241,23.6561],[93.42242,23.65997],[93.4258,23.66222],[93.42559,23.66427],[93.4311,23.67342],[93.43288,23.67304],[93.43143,23.67489],[93.4361,23.67805],[93.43505,23.67913],[93.43691,23.68704],[93.42732,23.68806],[93.42554,23.68928],[93.42519,23.69266],[93.42117,23.69601],[93.41984,23.6986],[93.42133,23.69921],[93.41945,23.70149],[93.41024,23.7038],[93.40929,23.70669],[93.40727,23.70724],[93.40859,23.7087],[93.40614,23.71532],[93.40999,23.71799],[93.41229,23.71743],[93.40934,23.72099],[93.41096,23.72375],[93.4099,23.72675],[93.41095,23.7294],[93.40655,23.73255],[93.40399,23.73774],[93.40377,23.74527],[93.39504,23.74943],[93.39524,23.75386],[93.39155,23.75669],[93.39169,23.76118],[93.39576,23.76886],[93.39409,23.77441],[93.39649,23.7805],[93.3963,23.78653],[93.3977,23.78791],[93.39789,23.79278],[93.40284,23.79709],[93.40326,23.80705],[93.40188,23.81244],[93.3985,23.81528],[93.39668,23.81407],[93.39452,23.81744],[93.39192,23.81644],[93.39005,23.81772],[93.3902,23.82116],[93.39239,23.82342],[93.38846,23.82557],[93.39001,23.83011],[93.38862,23.83288],[93.39016,23.83384],[93.38873,23.83479],[93.38852,23.84071],[93.38496,23.84813],[93.38757,23.85515],[93.38565,23.85854],[93.38879,23.86511],[93.3868,23.86673],[93.38764,23.86866],[93.38476,23.87301],[93.38464,23.87681],[93.38925,23.88884],[93.39003,23.9019],[93.39145,23.90353],[93.3901,23.90603],[93.39182,23.90649],[93.3914,23.91424],[93.39528,23.91537],[93.39162,23.91851],[93.39428,23.92428],[93.39316,23.92567],[93.39067,23.92382],[93.39064,23.92688],[93.39293,23.92913],[93.38682,23.9312],[93.3849,23.9301],[93.3807,23.93453],[93.37838,23.93281],[93.37159,23.93235],[93.36893,23.93018],[93.36874,23.93287],[93.3654,23.93357],[93.36371,23.93835],[93.35933,23.94093],[93.36119,23.94476],[93.3575,23.94545],[93.35565,23.94195],[93.35076,23.94165],[93.35452,23.94329],[93.35316,23.94694],[93.3503,23.94624],[93.34856,23.94805],[93.34876,23.94913],[93.35111,23.94829],[93.35358,23.95107],[93.35285,23.95352],[93.35025,23.95455],[93.35201,23.95729],[93.35114,23.96165],[93.35012,23.96261],[93.34749,23.96126],[93.34672,23.96442],[93.34103,23.96979],[93.34401,23.97124],[93.34328,23.97508],[93.33669,23.97588],[93.33947,23.98056],[93.33328,23.97906],[93.33248,23.98026],[93.33506,23.9826],[93.33415,23.98513],[93.32889,23.9848],[93.32983,23.98658],[93.3375,23.98967],[93.33424,23.99218],[93.3343,23.99772],[93.33221,23.99941],[93.33449,24.00471],[93.33283,24.00761],[93.3335,24.01444],[93.33041,24.01531],[93.3296,24.02044],[93.33157,24.02107],[93.3351,24.01903],[93.33896,24.02148],[93.33779,24.0256],[93.33071,24.02709],[93.33182,24.02997],[93.32591,24.02992],[93.32871,24.0338],[93.33532,24.03563],[93.33239,24.03802],[93.3374,24.03914],[93.33751,24.04117],[93.33406,24.04045],[93.33196,24.04251],[93.32763,24.04237],[93.3258,24.05035],[93.30785,24.05093],[93.29359,24.04841],[93.28353,24.0484],[93.28071,24.04338],[93.27212,24.03708],[93.26929,24.0308],[93.25064,24.02071],[93.25207,24.02574],[93.24775,24.03075],[93.2577,24.05463],[93.26199,24.05715],[93.25911,24.06469],[93.25911,24.06971],[93.24345,24.08227],[93.23776,24.08352],[93.23207,24.081],[93.22214,24.08351],[93.21929,24.081],[93.21787,24.07849],[93.2207,24.07095],[93.21217,24.04706],[93.19372,24.04956],[93.18947,24.05333],[93.17101,24.0508],[93.16534,24.05206],[93.16251,24.05834],[93.16539,24.07217],[93.15686,24.07468],[93.15401,24.08095],[93.14347,24.08524],[93.13777,24.08395],[93.13065,24.07639],[93.13064,24.0701],[93.12494,24.06128],[93.1164,24.05747],[93.11498,24.0537],[93.10788,24.05242],[93.10646,24.04739],[93.09651,24.04234],[93.09509,24.04611],[93.09936,24.04989],[93.09651,24.05365],[93.09795,24.07126],[93.08515,24.08133],[93.07516,24.10027],[93.06087,24.09161],[93.04939,24.08805],[93.03342,24.09257],[93.03044,24.09664],[93.02305,24.10105],[93.01724,24.09887],[93.00987,24.10197],[93.00544,24.10739],[92.9922,24.1142],[92.9722,24.11235],[92.96943,24.1214],[92.9819,24.12637],[92.98522,24.12927],[92.9887,24.13786],[92.98696,24.14781],[92.98892,24.15066],[93.00127,24.15806],[92.99915,24.1715],[93.00673,24.17965],[92.99894,24.19176],[92.99889,24.19497],[93.00822,24.19495],[93.01246,24.19745],[93.01385,24.20497],[93.01812,24.20746],[93.01954,24.21497],[93.01527,24.2225],[93.01528,24.22626],[93.02245,24.23002],[93.0139,24.23378],[93.00261,24.25139],[93.00266,24.26022],[93.00984,24.26909],[93.00415,24.27791],[93.00701,24.2855],[93.01415,24.29056],[93.03116,24.31577],[93.03932,24.34074],[93.01755,24.34422],[93.01531,24.35625],[93.01811,24.37161],[93.01309,24.37735],[93.02035,24.38785],[92.99831,24.39976],[92.99239,24.39895],[92.98482,24.40565],[92.97484,24.40846],[92.96622,24.39685],[92.96017,24.39193],[92.95732,24.39208],[92.95329,24.40158],[92.95117,24.40299],[92.94761,24.40236],[92.94546,24.40005],[92.93914,24.40063],[92.93372,24.39231],[92.92753,24.39648],[92.92419,24.39605],[92.92436,24.39789],[92.92037,24.40088],[92.92199,24.40352],[92.90927,24.41014],[92.91096,24.41197],[92.90934,24.41291],[92.90707,24.41129],[92.90671,24.40276],[92.90287,24.39577],[92.90392,24.3922],[92.90288,24.39107],[92.89297,24.39268],[92.89256,24.39747],[92.8908,24.39833],[92.89145,24.40045],[92.88856,24.39833],[92.88369,24.40241],[92.87334,24.39486],[92.8688,24.39465],[92.86094,24.3985],[92.84624,24.386],[92.84523,24.3797],[92.84336,24.37787],[92.83985,24.3767],[92.83575,24.37849],[92.82937,24.37369],[92.82556,24.37737],[92.82661,24.38123],[92.82314,24.38647],[92.82995,24.40029],[92.82016,24.40371],[92.81768,24.40802],[92.81894,24.41005],[92.81245,24.40928],[92.81216,24.41148],[92.81007,24.41186],[92.81161,24.41328],[92.8088,24.41268],[92.809,24.41569],[92.80685,24.41885],[92.80434,24.41753],[92.79937,24.41913],[92.80179,24.42058],[92.8027,24.42436],[92.80116,24.42535],[92.80127,24.42965],[92.7967,24.43283],[92.7636,24.52112]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-NL","area_level":"State","area_name":"Nagaland","geometry_source":"SOI_States","same_as":"LGD/13/State"},"geometry":{"type":"Polygon","coordinates":[[[95.21117,26.93137],[95.20602,26.95112],[95.21019,26.95324],[95.20355,26.95706],[95.21184,26.96484],[95.20558,26.96957],[95.20337,26.97333],[95.20204,26.97668],[95.20677,26.97713],[95.20459,26.97921],[95.19726,26.98008],[95.19204,26.98453],[95.19313,26.99237],[95.19668,26.9939],[95.19696,27.00079],[95.19452,27.01027],[95.19252,27.03521],[95.15018,26.99924],[95.14476,26.99585],[95.1388,26.99485],[95.12421,26.98544],[95.11196,26.98066],[95.10792,26.97594],[95.10608,26.96549],[95.10181,26.96179],[95.08504,26.95164],[95.06786,26.9483],[95.04969,26.93876],[95.04408,26.93874],[95.03413,26.9356],[95.01676,26.92106],[95.00415,26.92089],[95.00025,26.91951],[94.99129,26.92081],[94.98998,26.91421],[94.98262,26.913],[94.9765,26.92128],[94.96718,26.92351],[94.96124,26.93712],[94.9575,26.93748],[94.9555,26.9401],[94.95324,26.93761],[94.94186,26.93531],[94.94026,26.93356],[94.93085,26.93256],[94.93085,26.9369],[94.92561,26.94079],[94.92349,26.94637],[94.91672,26.94125],[94.91437,26.93677],[94.90245,26.93467],[94.89782,26.93125],[94.89064,26.92954],[94.87359,26.91752],[94.86601,26.90873],[94.86523,26.90398],[94.85845,26.89221],[94.85784,26.88848],[94.85107,26.8811],[94.85012,26.87459],[94.8432,26.86851],[94.83647,26.86877],[94.83454,26.86035],[94.82866,26.85532],[94.8242,26.85424],[94.81749,26.84751],[94.82112,26.8417],[94.81945,26.83759],[94.81562,26.8373],[94.81317,26.83365],[94.81446,26.81954],[94.80646,26.81842],[94.80622,26.81513],[94.80379,26.81367],[94.79525,26.81442],[94.79578,26.81008],[94.80319,26.80617],[94.80272,26.80132],[94.79978,26.79978],[94.79117,26.79975],[94.78873,26.79556],[94.77566,26.78976],[94.77374,26.79061],[94.77022,26.78904],[94.7674,26.78534],[94.7668,26.77756],[94.76059,26.77541],[94.75833,26.76601],[94.75182,26.76619],[94.74835,26.7727],[94.74018,26.77598],[94.74068,26.77184],[94.73689,26.76372],[94.70717,26.74631],[94.69235,26.73193],[94.65302,26.71875],[94.64876,26.72042],[94.64164,26.72041],[94.63582,26.71709],[94.62427,26.71529],[94.6203,26.71212],[94.61897,26.713],[94.62066,26.72313],[94.61582,26.72656],[94.60806,26.72883],[94.60964,26.73694],[94.60769,26.73721],[94.60608,26.73389],[94.59707,26.73455],[94.59355,26.73146],[94.59562,26.72629],[94.59215,26.72488],[94.59292,26.72325],[94.59109,26.7206],[94.59416,26.71908],[94.60153,26.71911],[94.60241,26.71653],[94.60109,26.71455],[94.60334,26.71235],[94.60228,26.71162],[94.5973,26.71679],[94.59337,26.71497],[94.59252,26.70496],[94.59444,26.70226],[94.59153,26.70016],[94.59388,26.6972],[94.58246,26.69739],[94.57732,26.70066],[94.57209,26.69457],[94.56788,26.69292],[94.5664,26.69007],[94.56747,26.68748],[94.57157,26.68664],[94.56649,26.68356],[94.55939,26.68643],[94.56243,26.69553],[94.56098,26.70056],[94.56235,26.70507],[94.55503,26.70507],[94.5503,26.70172],[94.54791,26.70632],[94.54519,26.70523],[94.53926,26.70618],[94.5336,26.70131],[94.52654,26.69895],[94.52421,26.69576],[94.5207,26.69921],[94.52081,26.69416],[94.5177,26.68732],[94.51758,26.68193],[94.51329,26.68009],[94.51038,26.68477],[94.50825,26.6853],[94.50905,26.68023],[94.50514,26.67865],[94.50147,26.67229],[94.49267,26.66589],[94.48506,26.66785],[94.46028,26.66163],[94.45845,26.65354],[94.4541,26.65391],[94.45315,26.65255],[94.45908,26.64461],[94.4598,26.63685],[94.46549,26.63306],[94.45793,26.6336],[94.4536,26.63194],[94.45515,26.63547],[94.45273,26.63407],[94.45128,26.63629],[94.4356,26.62204],[94.42574,26.61715],[94.40292,26.61057],[94.40556,26.60563],[94.40507,26.60389],[94.40259,26.60313],[94.40188,26.59356],[94.40767,26.59163],[94.40749,26.5879],[94.40938,26.5877],[94.40959,26.58483],[94.4122,26.58297],[94.41163,26.57943],[94.41338,26.57719],[94.40993,26.57652],[94.41125,26.57215],[94.40585,26.56788],[94.40621,26.56271],[94.40411,26.56143],[94.40657,26.56186],[94.40734,26.56033],[94.40342,26.55827],[94.40648,26.55575],[94.402,26.55467],[94.40498,26.5542],[94.40627,26.54919],[94.40123,26.54828],[94.4062,26.54584],[94.40616,26.54403],[94.40308,26.54525],[94.40111,26.54289],[94.3966,26.54271],[94.40272,26.54135],[94.40265,26.53947],[94.3999,26.5403],[94.39777,26.53862],[94.40088,26.53415],[94.39819,26.53525],[94.39525,26.53361],[94.39759,26.52988],[94.39577,26.52733],[94.39326,26.52738],[94.39142,26.53035],[94.39,26.52691],[94.38544,26.53053],[94.3852,26.52578],[94.38095,26.5258],[94.3782,26.52117],[94.37614,26.52178],[94.37565,26.51818],[94.37336,26.51711],[94.37608,26.51567],[94.37626,26.51382],[94.37508,26.51282],[94.3731,26.51494],[94.3713,26.51443],[94.37468,26.50845],[94.37217,26.50604],[94.36932,26.50466],[94.36843,26.50596],[94.36563,26.50354],[94.36271,26.50566],[94.35748,26.50518],[94.35421,26.50306],[94.34779,26.50446],[94.34763,26.5032],[94.35064,26.50242],[94.35296,26.49928],[94.34957,26.49626],[94.34947,26.49377],[94.34665,26.49207],[94.35011,26.49243],[94.35285,26.49006],[94.34927,26.4911],[94.34686,26.486],[94.34469,26.48875],[94.34386,26.48471],[94.34081,26.48554],[94.33944,26.4805],[94.33631,26.48205],[94.33394,26.47933],[94.332,26.48058],[94.33041,26.4795],[94.32552,26.48195],[94.32647,26.47544],[94.3216,26.47566],[94.31956,26.47421],[94.32257,26.47244],[94.32128,26.47102],[94.32385,26.46551],[94.31844,26.46528],[94.31662,26.45832],[94.30798,26.46253],[94.30671,26.46079],[94.30578,26.46323],[94.30351,26.46416],[94.29992,26.46365],[94.29928,26.46682],[94.29343,26.4711],[94.29324,26.47429],[94.29157,26.47522],[94.2923,26.47757],[94.28975,26.47971],[94.29006,26.48877],[94.28323,26.50497],[94.28338,26.51075],[94.28582,26.51234],[94.28656,26.51522],[94.28176,26.5245],[94.28291,26.5294],[94.28096,26.53506],[94.28194,26.54059],[94.28614,26.54251],[94.28127,26.54865],[94.28479,26.56107],[94.27151,26.55155],[94.27064,26.54928],[94.25634,26.54122],[94.25332,26.53279],[94.24782,26.52821],[94.24872,26.52497],[94.23662,26.50614],[94.22127,26.49813],[94.20751,26.48647],[94.20249,26.47278],[94.20266,26.46906],[94.19405,26.46124],[94.18523,26.45843],[94.17613,26.43642],[94.17173,26.42978],[94.17572,26.42443],[94.17191,26.41584],[94.17401,26.40951],[94.17319,26.40328],[94.17758,26.38201],[94.17223,26.37365],[94.17411,26.37072],[94.17113,26.36275],[94.16016,26.35429],[94.16203,26.34716],[94.16706,26.34799],[94.16871,26.35093],[94.17261,26.35059],[94.17759,26.34642],[94.17456,26.34046],[94.17164,26.33796],[94.16718,26.33932],[94.16287,26.33551],[94.14758,26.33346],[94.14506,26.33059],[94.14101,26.33137],[94.14099,26.33531],[94.13873,26.33628],[94.12838,26.33036],[94.12492,26.33081],[94.11975,26.3288],[94.11593,26.32969],[94.11498,26.32395],[94.12168,26.31776],[94.11206,26.31799],[94.10968,26.31992],[94.10505,26.31995],[94.10251,26.31523],[94.09971,26.3139],[94.10078,26.30863],[94.09778,26.30196],[94.08427,26.28897],[94.0841,26.28334],[94.07473,26.2836],[94.07224,26.27611],[94.07471,26.27304],[94.07462,26.26438],[94.07092,26.26232],[94.06786,26.25697],[94.05608,26.25501],[94.04769,26.24936],[94.0424,26.2345],[94.03646,26.22605],[94.03203,26.19754],[94.02179,26.19381],[94.01536,26.18402],[94.00781,26.1825],[94.00108,26.17227],[94.00261,26.17087],[94.00137,26.16578],[94.00366,26.16011],[94.0011,26.1552],[93.99658,26.15347],[93.99452,26.14831],[93.99591,26.14642],[94.00083,26.14698],[94.0036,26.14423],[94.00217,26.13443],[93.99831,26.13124],[93.99086,26.13364],[93.98724,26.13108],[93.98887,26.1282],[93.99782,26.12877],[93.99349,26.12394],[93.99387,26.11866],[93.98676,26.1139],[93.98874,26.11082],[93.99577,26.1122],[93.99793,26.10956],[93.98948,26.09753],[93.98865,26.08634],[93.98274,26.08336],[93.98153,26.08124],[93.98739,26.06679],[93.97076,26.04642],[93.97039,26.04035],[93.96247,26.03654],[93.9627,26.02576],[93.96054,26.01536],[93.953,26.00297],[93.95915,25.99433],[93.95415,25.96926],[93.96871,25.95726],[93.96996,25.93678],[93.97799,25.92807],[93.9787,25.91673],[93.97121,25.91276],[93.9667,25.90589],[93.96107,25.90123],[93.95977,25.90211],[93.95166,25.89857],[93.94501,25.89764],[93.94432,25.89552],[93.93797,25.89631],[93.93542,25.89445],[93.93398,25.88525],[93.916,25.8837],[93.91088,25.87945],[93.91157,25.87652],[93.90751,25.87252],[93.90195,25.87085],[93.89604,25.85786],[93.88997,25.85864],[93.88654,25.84832],[93.8818,25.84335],[93.87611,25.84248],[93.86918,25.85093],[93.85857,25.85369],[93.85226,25.85823],[93.8397,25.85661],[93.83048,25.84925],[93.82972,25.84651],[93.82526,25.8444],[93.82115,25.83874],[93.81639,25.82261],[93.8063,25.81689],[93.80384,25.81142],[93.79547,25.80893],[93.79005,25.81123],[93.78751,25.81576],[93.78709,25.82216],[93.78424,25.82617],[93.78479,25.82903],[93.78033,25.83543],[93.78145,25.8395],[93.78036,25.84086],[93.77816,25.84012],[93.77782,25.84241],[93.78111,25.84459],[93.77754,25.84981],[93.78113,25.85401],[93.77853,25.85687],[93.78141,25.85649],[93.78443,25.85842],[93.78497,25.86426],[93.78984,25.86781],[93.78895,25.87011],[93.78517,25.87005],[93.78735,25.87688],[93.78476,25.87995],[93.78416,25.88434],[93.7892,25.88967],[93.79203,25.88914],[93.79205,25.89134],[93.79537,25.89238],[93.79352,25.89556],[93.79401,25.89952],[93.79568,25.90024],[93.79567,25.90651],[93.79201,25.9066],[93.79426,25.90756],[93.7943,25.91266],[93.79216,25.91291],[93.79186,25.91556],[93.78872,25.91689],[93.79052,25.92006],[93.78915,25.92226],[93.79099,25.92623],[93.78901,25.92806],[93.78998,25.92975],[93.78735,25.93013],[93.7879,25.93146],[93.78647,25.9321],[93.78989,25.93392],[93.78674,25.93821],[93.78726,25.94389],[93.78463,25.94387],[93.78734,25.94658],[93.78589,25.94967],[93.78327,25.95041],[93.78032,25.95648],[93.7769,25.95812],[93.77861,25.9603],[93.77509,25.96139],[93.77446,25.96553],[93.77715,25.96644],[93.77719,25.96824],[93.77358,25.97048],[93.77142,25.96799],[93.76545,25.96975],[93.76458,25.96853],[93.76814,25.96742],[93.77003,25.96126],[93.76952,25.95875],[93.76355,25.95937],[93.76823,25.95359],[93.76796,25.95101],[93.76419,25.95085],[93.76421,25.95444],[93.76181,25.95114],[93.75865,25.95262],[93.75846,25.94551],[93.75293,25.94667],[93.75246,25.94212],[93.75038,25.94087],[93.74714,25.94318],[93.74512,25.94234],[93.7462,25.9387],[93.75202,25.93596],[93.75131,25.93281],[93.74764,25.93492],[93.73953,25.93179],[93.73953,25.92982],[93.73655,25.92767],[93.73864,25.92532],[93.73703,25.92515],[93.73615,25.92276],[93.73397,25.92389],[93.72821,25.92058],[93.71869,25.91985],[93.71362,25.91681],[93.70663,25.91883],[93.70545,25.91492],[93.70088,25.91066],[93.69398,25.91172],[93.68476,25.9037],[93.68153,25.90439],[93.70208,25.85154],[93.71432,25.84451],[93.71183,25.84414],[93.70781,25.84781],[93.70088,25.84327],[93.69965,25.84551],[93.70113,25.84957],[93.69923,25.84657],[93.69469,25.84799],[93.69143,25.84385],[93.6883,25.84595],[93.68565,25.84367],[93.69022,25.84069],[93.68056,25.83835],[93.67945,25.83503],[93.68068,25.83343],[93.67863,25.82841],[93.67262,25.82764],[93.67116,25.82405],[93.66764,25.82596],[93.66829,25.82183],[93.66496,25.82318],[93.66054,25.82161],[93.65481,25.82364],[93.6516,25.81986],[93.64614,25.82238],[93.64651,25.81973],[93.64431,25.8187],[93.64347,25.81577],[93.63816,25.81563],[93.6386,25.80979],[93.6331,25.81138],[93.63495,25.80927],[93.6317,25.80664],[93.63289,25.80276],[93.62951,25.80156],[93.6247,25.80256],[93.62776,25.79888],[93.62669,25.79715],[93.6234,25.7973],[93.62675,25.78961],[93.6232,25.78733],[93.62252,25.78497],[93.6185,25.7837],[93.6201,25.78023],[93.61742,25.77599],[93.61272,25.77656],[93.61029,25.77375],[93.60504,25.7749],[93.60265,25.76508],[93.60056,25.76516],[93.59851,25.7688],[93.59167,25.76253],[93.58951,25.76606],[93.58592,25.76615],[93.58234,25.76055],[93.58548,25.75797],[93.57775,25.75449],[93.57683,25.75687],[93.56794,25.75843],[93.56827,25.75681],[93.57243,25.75644],[93.57322,25.75412],[93.57029,25.75276],[93.56833,25.75499],[93.56633,25.75475],[93.56697,25.74725],[93.56351,25.74472],[93.56151,25.73777],[93.5543,25.73783],[93.55526,25.73363],[93.54958,25.73274],[93.54943,25.72932],[93.54588,25.73147],[93.54245,25.73094],[93.54306,25.72585],[93.53955,25.72256],[93.54305,25.72096],[93.54319,25.71464],[93.54802,25.71172],[93.54192,25.70459],[93.54117,25.69884],[93.53629,25.7018],[93.53207,25.69698],[93.53123,25.69257],[93.52747,25.69119],[93.5236,25.6926],[93.52396,25.69592],[93.52249,25.69757],[93.52048,25.69161],[93.51265,25.68459],[93.51372,25.68282],[93.51754,25.68229],[93.51835,25.67943],[93.51409,25.67707],[93.51114,25.67209],[93.50744,25.67251],[93.5098,25.66847],[93.5066,25.66788],[93.50551,25.66642],[93.50646,25.66415],[93.49998,25.66072],[93.49655,25.65453],[93.49122,25.6532],[93.48802,25.65431],[93.4868,25.65312],[93.48777,25.65139],[93.48521,25.64833],[93.48144,25.65123],[93.48294,25.64546],[93.48174,25.6445],[93.47675,25.64777],[93.47383,25.64401],[93.47149,25.6454],[93.4688,25.64433],[93.47204,25.64239],[93.46417,25.64462],[93.46046,25.64062],[93.45731,25.64114],[93.45573,25.63869],[93.4606,25.63678],[93.4609,25.63231],[93.45509,25.63385],[93.44959,25.63953],[93.44948,25.63561],[93.44666,25.6346],[93.44437,25.63961],[93.44216,25.63817],[93.44162,25.63468],[93.43736,25.63481],[93.43726,25.63166],[93.43457,25.63119],[93.43366,25.62943],[93.43043,25.62947],[93.42738,25.63253],[93.42491,25.6303],[93.42455,25.62547],[93.41997,25.6247],[93.42226,25.62043],[93.42161,25.61824],[93.41835,25.61764],[93.41373,25.62099],[93.41436,25.61805],[93.41048,25.61654],[93.41101,25.61359],[93.40783,25.61441],[93.40626,25.6114],[93.40152,25.61109],[93.40127,25.60577],[93.40287,25.60216],[93.39947,25.59907],[93.39878,25.59603],[93.39695,25.59703],[93.3947,25.59445],[93.39403,25.59607],[93.39243,25.5959],[93.38929,25.5911],[93.3856,25.59277],[93.38695,25.58997],[93.38575,25.58705],[93.38341,25.58792],[93.38206,25.58396],[93.37835,25.5826],[93.38159,25.58197],[93.37983,25.57658],[93.3743,25.57709],[93.37539,25.57308],[93.36951,25.57042],[93.36554,25.56518],[93.36245,25.566],[93.36159,25.56387],[93.36406,25.5612],[93.35847,25.55726],[93.35872,25.55463],[93.35644,25.55619],[93.35461,25.55552],[93.35216,25.55999],[93.34328,25.56004],[93.33798,25.55687],[93.33575,25.55398],[93.33708,25.55283],[93.33261,25.54838],[93.32924,25.54879],[93.32669,25.54592],[93.33639,25.53873],[93.33531,25.53422],[93.34036,25.53284],[93.34057,25.53495],[93.34508,25.53419],[93.34833,25.52994],[93.35012,25.53225],[93.34997,25.52868],[93.35266,25.5283],[93.35509,25.52478],[93.35769,25.51527],[93.35686,25.5137],[93.36158,25.51234],[93.36213,25.50671],[93.364,25.50653],[93.36433,25.50376],[93.3692,25.50353],[93.36734,25.49946],[93.37667,25.49753],[93.37738,25.49298],[93.38551,25.49039],[93.38386,25.48794],[93.38655,25.48726],[93.38463,25.4851],[93.38672,25.48296],[93.39142,25.48216],[93.3891,25.47843],[93.38661,25.47778],[93.3892,25.47638],[93.38898,25.47254],[93.38446,25.46916],[93.38682,25.46883],[93.38691,25.46611],[93.39041,25.46444],[93.38834,25.46349],[93.39034,25.46038],[93.39166,25.46178],[93.394,25.45844],[93.3973,25.46026],[93.40064,25.45636],[93.40247,25.45078],[93.40872,25.44829],[93.41041,25.44987],[93.41555,25.44498],[93.41995,25.44496],[93.42561,25.44832],[93.43639,25.44818],[93.43855,25.44551],[93.43753,25.44304],[93.43952,25.44101],[93.44333,25.4411],[93.45029,25.43565],[93.45543,25.4344],[93.45819,25.43098],[93.45833,25.42592],[93.46232,25.41785],[93.45933,25.40837],[93.45966,25.40323],[93.4632,25.39559],[93.47299,25.38599],[93.47361,25.37928],[93.47177,25.37589],[93.47253,25.37428],[93.46501,25.36067],[93.4638,25.35964],[93.45875,25.36068],[93.45158,25.35395],[93.45196,25.34703],[93.44998,25.34537],[93.44851,25.34025],[93.45205,25.33596],[93.45651,25.33538],[93.45542,25.33214],[93.45667,25.32986],[93.45343,25.32146],[93.46663,25.31182],[93.47056,25.30505],[93.47156,25.29629],[93.46899,25.28204],[93.47314,25.27563],[93.48393,25.2725],[93.49127,25.27528],[93.50073,25.27231],[93.50714,25.27213],[93.5005,25.24992],[93.50147,25.24065],[93.51272,25.24127],[93.5169,25.24528],[93.52564,25.24484],[93.5375,25.24183],[93.55098,25.24696],[93.55937,25.243],[93.57105,25.22393],[93.57441,25.22206],[93.57786,25.22237],[93.58647,25.21629],[93.58815,25.21025],[93.59101,25.20746],[93.58918,25.20025],[93.59327,25.20062],[93.59717,25.1987],[93.60043,25.20063],[93.60415,25.19836],[93.60872,25.20249],[93.6173,25.2212],[93.63927,25.25626],[93.63973,25.26213],[93.64606,25.26535],[93.6478,25.27526],[93.66179,25.29465],[93.66093,25.30046],[93.66229,25.3045],[93.66912,25.30772],[93.67015,25.31348],[93.66829,25.32492],[93.68012,25.32582],[93.68331,25.3274],[93.68766,25.34361],[93.68899,25.35778],[93.70779,25.35424],[93.71424,25.35774],[93.71519,25.3665],[93.7193,25.37171],[93.73598,25.38052],[93.73752,25.38554],[93.73628,25.39129],[93.74288,25.40181],[93.76062,25.4142],[93.77726,25.42076],[93.77672,25.42553],[93.7843,25.43191],[93.7864,25.43941],[93.78994,25.44468],[93.79863,25.45642],[93.80521,25.46159],[93.81011,25.48073],[93.80031,25.49505],[93.79353,25.50042],[93.78475,25.50255],[93.76969,25.49392],[93.76566,25.49286],[93.7621,25.496],[93.76061,25.5116],[93.76564,25.51382],[93.76451,25.5214],[93.76733,25.53213],[93.76699,25.53639],[93.77583,25.53414],[93.80416,25.54056],[93.81223,25.54148],[93.81602,25.5404],[93.81965,25.54417],[93.82136,25.55201],[93.82956,25.55241],[93.82978,25.55736],[93.8328,25.55905],[93.8585,25.55346],[93.87461,25.55788],[93.88819,25.5643],[93.89645,25.56458],[93.91331,25.56254],[93.91553,25.55985],[93.92631,25.56119],[93.93968,25.5592],[93.95353,25.55248],[93.96135,25.55229],[93.97398,25.56186],[93.9766,25.56694],[93.99671,25.56953],[94.00353,25.56548],[94.0065,25.56693],[94.00838,25.57093],[94.00786,25.57472],[94.00378,25.58658],[94.00651,25.59105],[94.01086,25.59177],[94.02162,25.589],[94.02336,25.58359],[94.02949,25.58029],[94.03096,25.57707],[94.03524,25.5786],[94.03507,25.57543],[94.03969,25.57304],[94.04206,25.57651],[94.05017,25.5723],[94.06071,25.56187],[94.06541,25.55448],[94.07603,25.55706],[94.08192,25.55519],[94.09091,25.54187],[94.09213,25.53715],[94.08847,25.5334],[94.08805,25.52815],[94.10199,25.52429],[94.1346,25.51902],[94.1411,25.52295],[94.14406,25.52699],[94.14876,25.54314],[94.15601,25.55054],[94.15939,25.5452],[94.16377,25.54228],[94.17541,25.54543],[94.17862,25.54849],[94.18769,25.54616],[94.19071,25.54763],[94.18973,25.5374],[94.18595,25.52984],[94.18653,25.52598],[94.20265,25.50911],[94.20266,25.5068],[94.20868,25.50331],[94.20857,25.49795],[94.21059,25.49536],[94.2156,25.49475],[94.2187,25.49188],[94.22485,25.4911],[94.22744,25.4934],[94.24775,25.49411],[94.25293,25.49845],[94.26983,25.49799],[94.27552,25.50043],[94.28241,25.50667],[94.28641,25.50449],[94.29464,25.49565],[94.29826,25.48955],[94.30914,25.48935],[94.31629,25.49416],[94.32463,25.50322],[94.36025,25.51629],[94.3841,25.53132],[94.40644,25.53823],[94.41234,25.53663],[94.41582,25.53733],[94.42113,25.54759],[94.42194,25.55612],[94.42068,25.5677],[94.41796,25.57069],[94.4256,25.58741],[94.4434,25.59269],[94.44485,25.59574],[94.46962,25.61625],[94.48673,25.61437],[94.48897,25.60889],[94.49483,25.61105],[94.49737,25.61457],[94.50091,25.61152],[94.50332,25.61348],[94.50421,25.62144],[94.50643,25.62443],[94.51004,25.62501],[94.51974,25.63793],[94.52373,25.6388],[94.5262,25.63708],[94.52709,25.64463],[94.53507,25.64556],[94.54028,25.65202],[94.54731,25.65692],[94.54776,25.66187],[94.56063,25.67526],[94.56355,25.68667],[94.56857,25.69209],[94.58257,25.68629],[94.59113,25.68566],[94.59245,25.68128],[94.58548,25.67563],[94.58084,25.66924],[94.58288,25.66618],[94.57893,25.65961],[94.58071,25.65616],[94.57754,25.655],[94.57685,25.65178],[94.57228,25.64722],[94.57157,25.63909],[94.58241,25.64095],[94.59064,25.63819],[94.57923,25.62885],[94.57396,25.62061],[94.56825,25.60568],[94.56059,25.59698],[94.55114,25.5802],[94.55695,25.57271],[94.55581,25.56235],[94.56005,25.56229],[94.55676,25.55486],[94.55826,25.54385],[94.55523,25.54005],[94.55883,25.53401],[94.55364,25.52922],[94.55661,25.52502],[94.55274,25.50709],[94.56349,25.50088],[94.56989,25.49951],[94.58026,25.49111],[94.58247,25.48668],[94.58607,25.48398],[94.60271,25.47662],[94.62053,25.46321],[94.62813,25.45976],[94.64337,25.45568],[94.65386,25.45108],[94.66487,25.44936],[94.68028,25.45401],[94.68128,25.45581],[94.6799,25.4585],[94.68195,25.45939],[94.68362,25.46643],[94.69286,25.46556],[94.70299,25.46793],[94.70998,25.4718],[94.71808,25.46949],[94.71965,25.47224],[94.72511,25.47357],[94.7283,25.47656],[94.74395,25.48112],[94.74692,25.48543],[94.7473,25.48909],[94.75142,25.49389],[94.75769,25.49136],[94.76196,25.48195],[94.78345,25.4804],[94.78869,25.48955],[94.79638,25.49176],[94.80603,25.49182],[94.80799,25.49329],[94.80821,25.49892],[94.8124,25.51125],[94.81587,25.51647],[94.81934,25.51749],[94.82543,25.52376],[94.82347,25.53344],[94.82578,25.54255],[94.82967,25.54371],[94.83426,25.55258],[94.83783,25.55305],[94.84095,25.55689],[94.84333,25.55724],[94.84592,25.56194],[94.85342,25.56432],[94.87968,25.56238],[94.88502,25.56352],[94.88969,25.56664],[94.8985,25.56533],[94.89747,25.57055],[94.89138,25.57822],[94.88163,25.58508],[94.88171,25.59105],[94.89247,25.59738],[94.89812,25.59634],[94.90077,25.59738],[94.90193,25.59945],[94.90958,25.60265],[94.91509,25.60768],[94.91632,25.62141],[94.9219,25.63495],[94.9212,25.63987],[94.92284,25.64542],[94.92533,25.65012],[94.93238,25.65714],[94.93598,25.66761],[94.95005,25.67361],[94.95213,25.67838],[94.96135,25.68506],[94.97064,25.68913],[94.97304,25.69408],[94.98868,25.70655],[94.99192,25.71952],[94.99723,25.72498],[95.00806,25.73091],[95.01518,25.73241],[95.0231,25.73174],[95.02809,25.7378],[95.03987,25.74117],[95.04513,25.75523],[95.04897,25.75935],[95.04403,25.77374],[95.04663,25.77894],[95.04612,25.78451],[95.05001,25.79291],[95.04997,25.79999],[95.03331,25.81424],[95.03323,25.82363],[95.02946,25.83308],[95.03039,25.83837],[95.02306,25.84478],[95.01786,25.86067],[95.00919,25.86661],[95.01028,25.8745],[95.01941,25.88139],[95.01887,25.88547],[95.01177,25.89778],[95.02655,25.9134],[95.02871,25.91368],[95.02823,25.91535],[95.03048,25.91777],[95.03269,25.92492],[95.03135,25.93115],[95.03598,25.92675],[95.04394,25.92686],[95.04674,25.92846],[95.04774,25.93439],[95.05405,25.9381],[95.05883,25.94035],[95.06238,25.94011],[95.06436,25.94265],[95.07308,25.94178],[95.08366,25.94991],[95.0895,25.95049],[95.09561,25.95524],[95.10382,25.96867],[95.10633,25.97108],[95.11016,25.97051],[95.11429,25.97478],[95.11698,25.98496],[95.12611,25.98575],[95.1274,25.99055],[95.13331,25.99591],[95.13489,26.00086],[95.14117,26.00898],[95.14524,26.01103],[95.14507,26.01403],[95.14935,26.0162],[95.15251,26.02123],[95.15906,26.02493],[95.16429,26.04919],[95.17657,26.06413],[95.18345,26.06813],[95.18589,26.0731],[95.18301,26.07505],[95.18195,26.07838],[95.17683,26.08127],[95.17602,26.08406],[95.17012,26.08582],[95.17099,26.08834],[95.16751,26.08933],[95.16533,26.09211],[95.15501,26.08945],[95.15031,26.08645],[95.14735,26.08777],[95.14201,26.09444],[95.13033,26.0945],[95.12267,26.09724],[95.11787,26.10108],[95.11555,26.11285],[95.11977,26.11618],[95.12153,26.1232],[95.12628,26.12852],[95.12592,26.13126],[95.12266,26.13357],[95.12146,26.13869],[95.11901,26.14065],[95.12344,26.14502],[95.11907,26.14845],[95.11963,26.15352],[95.11721,26.15862],[95.11762,26.16392],[95.12665,26.17784],[95.12315,26.18042],[95.12196,26.18523],[95.13174,26.20047],[95.14268,26.21163],[95.13304,26.21535],[95.12779,26.22138],[95.1199,26.22551],[95.1146,26.23289],[95.12004,26.24193],[95.12548,26.24657],[95.12459,26.25017],[95.1273,26.25398],[95.12351,26.25588],[95.11987,26.26369],[95.12076,26.27156],[95.12483,26.27655],[95.12438,26.28628],[95.12806,26.29228],[95.12862,26.29703],[95.12812,26.30224],[95.12249,26.30744],[95.12476,26.31244],[95.12406,26.31516],[95.12607,26.32354],[95.12265,26.32522],[95.1229,26.33052],[95.12692,26.33407],[95.12835,26.33965],[95.12118,26.34962],[95.12318,26.35192],[95.12265,26.35809],[95.12826,26.36514],[95.13214,26.37784],[95.12948,26.38454],[95.12563,26.38778],[95.12078,26.38643],[95.11701,26.39082],[95.10789,26.3954],[95.09977,26.39373],[95.09645,26.40105],[95.1031,26.41244],[95.10386,26.42066],[95.0949,26.43108],[95.09408,26.43542],[95.08429,26.44456],[95.08445,26.44705],[95.07668,26.44586],[95.0729,26.44792],[95.06614,26.44177],[95.06362,26.444],[95.06198,26.45018],[95.06805,26.46229],[95.07161,26.46402],[95.07276,26.47238],[95.07673,26.47645],[95.08298,26.47962],[95.08246,26.48261],[95.0846,26.48332],[95.0841,26.48524],[95.08628,26.48774],[95.09648,26.49277],[95.09934,26.49785],[95.10025,26.50579],[95.1057,26.50822],[95.11454,26.51851],[95.11617,26.524],[95.11364,26.52919],[95.11332,26.53584],[95.10774,26.53959],[95.10755,26.54154],[95.11353,26.54753],[95.12243,26.5515],[95.12296,26.55552],[95.1256,26.55809],[95.13892,26.55656],[95.13851,26.56052],[95.14138,26.56507],[95.14096,26.56741],[95.14727,26.57478],[95.14643,26.57621],[95.14786,26.57914],[95.15419,26.58314],[95.14656,26.59305],[95.1479,26.59711],[95.14661,26.601],[95.1482,26.60646],[95.14728,26.61033],[95.14893,26.61587],[95.16322,26.62166],[95.1675,26.62751],[95.16686,26.63444],[95.17126,26.63574],[95.18068,26.64276],[95.18358,26.64141],[95.18762,26.6428],[95.19178,26.64149],[95.19912,26.64246],[95.20049,26.64545],[95.2096,26.64885],[95.21405,26.65421],[95.21403,26.65705],[95.21964,26.66084],[95.22188,26.66618],[95.22924,26.67366],[95.23321,26.68109],[95.22998,26.69112],[95.23241,26.70624],[95.22598,26.71093],[95.22454,26.71792],[95.21252,26.72943],[95.21324,26.73543],[95.21736,26.74155],[95.21776,26.74564],[95.21566,26.74969],[95.21651,26.75396],[95.22048,26.75586],[95.2296,26.76606],[95.22809,26.77184],[95.24135,26.78145],[95.23816,26.78106],[95.2367,26.78331],[95.23146,26.78344],[95.21805,26.78772],[95.21162,26.79259],[95.20337,26.80594],[95.19562,26.83424],[95.1971,26.83719],[95.20299,26.84058],[95.20519,26.84502],[95.20083,26.84325],[95.19432,26.84585],[95.19392,26.84371],[95.19221,26.84394],[95.1824,26.854],[95.18114,26.8592],[95.20307,26.87222],[95.208,26.87607],[95.20949,26.87995],[95.21448,26.8812],[95.22656,26.87997],[95.23048,26.88515],[95.22797,26.89267],[95.23076,26.90398],[95.22863,26.91224],[95.23063,26.9131],[95.23064,26.91495],[95.22855,26.9205],[95.22228,26.92882],[95.21378,26.9286],[95.21117,26.93137]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-OD","area_level":"State","area_name":"Odisha","geometry_source":"SOI_States","same_as":"LGD/21/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.33623,18.79016],[84.3356,18.79029],[84.33466,18.79019],[84.33111,18.78954],[84.33072,18.78891],[84.3297,18.78883],[84.32927,18.7872],[84.3316,18.78614],[84.33439,18.78436],[84.3363,18.78287],[84.33686,18.78222],[84.33701,18.7814],[84.33727,18.78054],[84.33839,18.77937],[84.33936,18.77869],[84.33914,18.78226],[84.33924,18.78276],[84.33927,18.78428],[84.3392,18.78545],[84.33942,18.78638],[84.33937,18.78661],[84.33866,18.78784],[84.33926,18.78853],[84.33956,18.78911],[84.33959,18.7894],[84.33928,18.7897],[84.33888,18.78994],[84.3383,18.79002],[84.33703,18.78995],[84.33623,18.79016]]],[[[84.35171,18.78577],[84.35191,18.7861],[84.35215,18.78693],[84.35223,18.78758],[84.35245,18.78847],[84.35327,18.78989],[84.35247,18.79046],[84.35223,18.79075],[84.35201,18.79117],[84.35177,18.79133],[84.34968,18.79192],[84.34953,18.79096],[84.34958,18.78932],[84.34968,18.7887],[84.35011,18.78757],[84.35083,18.78677],[84.35131,18.78585],[84.35148,18.78571],[84.35171,18.78577]]],[[[86.78047,20.35814],[86.78093,20.35844],[86.78144,20.35892],[86.78312,20.36081],[86.78379,20.36164],[86.7843,20.36252],[86.78461,20.36345],[86.78454,20.36396],[86.78424,20.36413],[86.78395,20.36412],[86.78343,20.36399],[86.78274,20.36368],[86.78144,20.36232],[86.78083,20.36155],[86.78016,20.36055],[86.77979,20.35956],[86.7797,20.35852],[86.78006,20.35813],[86.78047,20.35814]]],[[[86.79212,20.3817],[86.7924,20.38194],[86.79262,20.38229],[86.79272,20.38299],[86.79259,20.3835],[86.79205,20.384],[86.79185,20.38446],[86.79184,20.38498],[86.79187,20.38567],[86.7918,20.38613],[86.7915,20.38641],[86.79103,20.38639],[86.79075,20.38615],[86.79048,20.38563],[86.79039,20.38482],[86.79041,20.38401],[86.79027,20.38303],[86.79029,20.38228],[86.79054,20.38177],[86.79114,20.38156],[86.79172,20.38152],[86.79212,20.3817]]],[[[86.80554,20.39577],[86.80438,20.39763],[86.8036,20.39818],[86.79922,20.40018],[86.79786,20.40054],[86.79676,20.40039],[86.79648,20.4001],[86.79649,20.39981],[86.79838,20.39912],[86.79856,20.39878],[86.79851,20.39843],[86.79744,20.39747],[86.79711,20.39677],[86.79738,20.39569],[86.79838,20.39526],[86.79916,20.39459],[86.80057,20.39452],[86.80047,20.39388],[86.80002,20.39335],[86.80005,20.39243],[86.79961,20.39144],[86.79963,20.39098],[86.80085,20.39107],[86.8022,20.39088],[86.80287,20.39021],[86.80275,20.38992],[86.80246,20.38985],[86.80145,20.3904],[86.80111,20.39033],[86.79963,20.38919],[86.79938,20.38774],[86.79994,20.38701],[86.79994,20.38667],[86.79967,20.38625],[86.79896,20.38641],[86.7979,20.38856],[86.79769,20.38965],[86.79785,20.39034],[86.79863,20.39129],[86.79856,20.39175],[86.79731,20.39263],[86.79613,20.39484],[86.79588,20.39518],[86.79571,20.39494],[86.79657,20.39186],[86.79657,20.38645],[86.79595,20.3824],[86.79546,20.38117],[86.79543,20.38013],[86.79557,20.37951],[86.79765,20.37663],[86.79792,20.37543],[86.79752,20.3734],[86.79669,20.37211],[86.79581,20.37018],[86.79585,20.36932],[86.79605,20.36852],[86.79838,20.36479],[86.79891,20.36452],[86.79995,20.36466],[86.80268,20.36699],[86.80627,20.37113],[86.80705,20.37237],[86.80748,20.37353],[86.80775,20.37775],[86.80741,20.38465],[86.8064,20.39245],[86.80554,20.39577]]],[[[86.78787,20.38347],[86.7906,20.38701],[86.7941,20.38885],[86.79311,20.39078],[86.79133,20.39901],[86.79188,20.40709],[86.79419,20.4131],[86.79511,20.41722],[86.79821,20.424],[86.80165,20.42952],[86.8068,20.4419],[86.80824,20.45312],[86.80655,20.46228],[86.8029,20.46706],[86.80121,20.47046],[86.79968,20.48142],[86.79806,20.48839],[86.79549,20.49176],[86.79322,20.49324],[86.79621,20.48418],[86.79596,20.47916],[86.79661,20.47527],[86.79759,20.47219],[86.79963,20.46857],[86.79907,20.46797],[86.79885,20.46578],[86.79566,20.45968],[86.79592,20.45889],[86.79747,20.45784],[86.79923,20.45392],[86.79928,20.44523],[86.80005,20.44312],[86.79901,20.43905],[86.79716,20.43859],[86.79264,20.43413],[86.79018,20.43255],[86.79154,20.42845],[86.79144,20.42597],[86.78928,20.41502],[86.79093,20.41104],[86.7889,20.40533],[86.78682,20.4048],[86.78666,20.40428],[86.78886,20.39588],[86.78704,20.38736],[86.78742,20.38634],[86.78703,20.38408],[86.78787,20.38347]]],[[[87.01175,20.71231],[87.01174,20.71283],[87.0119,20.71346],[87.01273,20.71463],[87.01297,20.71521],[87.01307,20.71602],[87.01307,20.71665],[87.01318,20.71717],[87.01306,20.71723],[87.01222,20.71681],[87.0115,20.71588],[87.01128,20.71524],[87.01045,20.71402],[87.00997,20.71361],[87.00921,20.71262],[87.00879,20.71197],[87.00825,20.71168],[87.00789,20.71173],[87.0077,20.7119],[87.0074,20.71207],[87.0068,20.71218],[87.00667,20.71217],[87.00661,20.71194],[87.00668,20.71166],[87.00711,20.71132],[87.00754,20.71121],[87.00778,20.71081],[87.00798,20.71035],[87.00828,20.70995],[87.00865,20.7099],[87.00918,20.71019],[87.00936,20.71054],[87.00965,20.71083],[87.01008,20.71101],[87.0108,20.71108],[87.01109,20.71137],[87.01175,20.71231]]],[[[87.00275,20.71177],[87.00365,20.7123],[87.00442,20.71301],[87.00531,20.71412],[87.0062,20.71505],[87.00778,20.71813],[87.00813,20.71917],[87.00812,20.71952],[87.00764,20.71951],[87.00734,20.71933],[87.00693,20.71869],[87.00592,20.71753],[87.00502,20.71676],[87.00444,20.71589],[87.00378,20.71513],[87.00243,20.71321],[87.00172,20.71193],[87.00173,20.71152],[87.00227,20.71142],[87.00275,20.71177]]],[[[87.05714,20.73021],[87.05756,20.73051],[87.05785,20.73096],[87.0579,20.73122],[87.05778,20.73156],[87.05745,20.73216],[87.05732,20.73221],[87.05693,20.73256],[87.05652,20.73279],[87.05631,20.73286],[87.05595,20.73281],[87.05586,20.73266],[87.05584,20.73246],[87.05587,20.73232],[87.0565,20.73209],[87.05673,20.73195],[87.05688,20.73178],[87.05695,20.73145],[87.05688,20.73095],[87.05674,20.7307],[87.05639,20.73046],[87.05584,20.73023],[87.05491,20.7302],[87.05434,20.73034],[87.0537,20.73043],[87.05348,20.73049],[87.0533,20.73041],[87.05325,20.73022],[87.05346,20.72984],[87.05372,20.72959],[87.05421,20.72959],[87.05574,20.72974],[87.05616,20.72974],[87.05678,20.72992],[87.05714,20.73021]]],[[[87.05184,20.73785],[87.05154,20.73806],[87.05135,20.7383],[87.05104,20.73841],[87.05096,20.73821],[87.05074,20.73794],[87.05083,20.73761],[87.05108,20.7373],[87.05158,20.73689],[87.05206,20.73682],[87.05257,20.73684],[87.05313,20.73709],[87.05252,20.73761],[87.05221,20.73763],[87.0521,20.73756],[87.05184,20.73785]]],[[[87.07416,20.73202],[87.0754,20.73328],[87.07581,20.73396],[87.07634,20.73426],[87.07625,20.73539],[87.07598,20.73597],[87.07609,20.73654],[87.07663,20.73784],[87.07738,20.73882],[87.078,20.73929],[87.07791,20.73994],[87.07796,20.74063],[87.0778,20.74181],[87.07796,20.74261],[87.07783,20.74321],[87.07789,20.74393],[87.07713,20.74396],[87.07652,20.74369],[87.07679,20.74347],[87.0759,20.74192],[87.07708,20.74095],[87.07732,20.74063],[87.07756,20.74002],[87.0774,20.7398],[87.07646,20.73929],[87.07609,20.73897],[87.07598,20.7383],[87.07526,20.73621],[87.07537,20.73578],[87.07469,20.73507],[87.07457,20.73448],[87.07382,20.73356],[87.07209,20.73198],[87.07169,20.73232],[87.07126,20.73235],[87.07117,20.73288],[87.07048,20.73369],[87.06995,20.73387],[87.06955,20.73347],[87.06977,20.73291],[87.07009,20.73271],[87.0702,20.73226],[87.07055,20.7319],[87.07111,20.73158],[87.07145,20.73084],[87.07199,20.73056],[87.07244,20.72869],[87.07351,20.72746],[87.07382,20.72778],[87.0729,20.72933],[87.07277,20.7303],[87.07345,20.73127],[87.07416,20.73202]]],[[[87.05714,20.74542],[87.05482,20.7455],[87.05311,20.74527],[87.05191,20.74527],[87.05112,20.74504],[87.05007,20.7446],[87.04938,20.74403],[87.04965,20.74357],[87.04999,20.74331],[87.05106,20.74354],[87.05188,20.74365],[87.05259,20.74374],[87.05323,20.74374],[87.05467,20.74394],[87.05534,20.74409],[87.05582,20.74435],[87.05793,20.74464],[87.05919,20.74432],[87.05965,20.74386],[87.05934,20.74446],[87.05885,20.74492],[87.05824,20.74521],[87.0576,20.74527],[87.05714,20.74542]]],[[[87.07109,20.73668],[87.07061,20.73722],[87.07035,20.73772],[87.0703,20.73838],[87.07046,20.73898],[87.07106,20.74013],[87.07175,20.74266],[87.07167,20.74376],[87.0717,20.74447],[87.07193,20.74691],[87.07226,20.74784],[87.07246,20.74875],[87.07226,20.74899],[87.07181,20.74895],[87.07104,20.74689],[87.07106,20.74556],[87.07045,20.74251],[87.07035,20.74035],[87.07022,20.73949],[87.07001,20.73891],[87.06971,20.73838],[87.06933,20.73792],[87.06878,20.73763],[87.07066,20.73644],[87.07096,20.73634],[87.07109,20.73668]]],[[[87.09767,20.7482],[87.09726,20.74839],[87.09701,20.74839],[87.0969,20.74832],[87.09683,20.74824],[87.09676,20.74808],[87.09678,20.74794],[87.09689,20.74778],[87.09706,20.74763],[87.09732,20.74753],[87.09788,20.74741],[87.0981,20.7474],[87.09832,20.74747],[87.09841,20.74761],[87.09844,20.74776],[87.09844,20.74792],[87.09842,20.74804],[87.09832,20.74813],[87.09812,20.74817],[87.09791,20.74817],[87.09767,20.7482]]],[[[87.10036,20.74892],[87.1005,20.74931],[87.10056,20.74966],[87.10075,20.75],[87.10112,20.75027],[87.10157,20.75053],[87.10202,20.75068],[87.10191,20.75103],[87.10168,20.75151],[87.10151,20.75145],[87.10092,20.75116],[87.1005,20.75093],[87.10011,20.75079],[87.09969,20.75051],[87.09941,20.75003],[87.09935,20.74961],[87.09938,20.74939],[87.09958,20.749],[87.09983,20.74878],[87.10011,20.74876],[87.10036,20.74892]]],[[[87.08638,20.76383],[87.0859,20.76453],[87.08502,20.76462],[87.08434,20.7643],[87.08372,20.76349],[87.08328,20.76321],[87.08306,20.76327],[87.08292,20.76382],[87.08238,20.76391],[87.08154,20.76278],[87.07989,20.76154],[87.07973,20.76126],[87.0797,20.76098],[87.08062,20.7593],[87.08044,20.75876],[87.07976,20.75846],[87.0792,20.7578],[87.07818,20.75776],[87.0778,20.75722],[87.0768,20.75684],[87.07505,20.75652],[87.07333,20.75594],[87.07285,20.75562],[87.0725,20.75477],[87.07268,20.7541],[87.07308,20.7535],[87.07416,20.75265],[87.07504,20.75266],[87.07778,20.75338],[87.0801,20.75374],[87.08273,20.75394],[87.0838,20.75379],[87.08437,20.75387],[87.08569,20.75354],[87.08651,20.75353],[87.08779,20.75375],[87.08923,20.75349],[87.09091,20.75345],[87.09201,20.75304],[87.09348,20.753],[87.09422,20.75328],[87.09479,20.75419],[87.09522,20.7546],[87.09566,20.75473],[87.09714,20.75474],[87.09752,20.75492],[87.09716,20.75544],[87.09441,20.75646],[87.09289,20.75682],[87.09165,20.75774],[87.08837,20.7606],[87.08726,20.763],[87.08638,20.76383]]],[[[86.98171,20.77771],[86.98294,20.77901],[86.98361,20.78039],[86.98373,20.78133],[86.98335,20.78306],[86.98301,20.78443],[86.98264,20.78482],[86.98197,20.78482],[86.98141,20.78422],[86.98036,20.78278],[86.97882,20.78035],[86.97845,20.77881],[86.97871,20.77799],[86.97924,20.7774],[86.98043,20.77722],[86.98171,20.77771]]],[[[87.07358,20.79111],[87.07122,20.79309],[87.06999,20.79373],[87.06927,20.79386],[87.06878,20.7935],[87.06948,20.79168],[87.06985,20.79116],[87.07071,20.79076],[87.07179,20.79093],[87.07215,20.79056],[87.07208,20.79033],[87.0718,20.79017],[87.07058,20.79027],[87.06948,20.78905],[87.06944,20.78846],[87.06986,20.78839],[87.07034,20.78884],[87.07053,20.78866],[87.07072,20.7887],[87.07083,20.78905],[87.0711,20.7893],[87.07177,20.78939],[87.07317,20.78901],[87.07407,20.7875],[87.07437,20.78251],[87.07475,20.77913],[87.07463,20.77674],[87.07487,20.77543],[87.07418,20.7738],[87.07388,20.77272],[87.07383,20.77094],[87.07295,20.77042],[87.07391,20.7694],[87.0742,20.76794],[87.07478,20.7674],[87.07589,20.77059],[87.07601,20.77202],[87.07542,20.77371],[87.07534,20.77995],[87.07511,20.78329],[87.07475,20.7848],[87.07485,20.78645],[87.07475,20.78902],[87.07436,20.7904],[87.07358,20.79111]]],[[[86.99013,20.80243],[86.99006,20.80298],[86.98985,20.80334],[86.98954,20.80369],[86.98921,20.80388],[86.98777,20.80396],[86.98714,20.80379],[86.98657,20.80344],[86.98611,20.80298],[86.98605,20.80262],[86.98612,20.80231],[86.98658,20.80199],[86.9871,20.80202],[86.98808,20.80221],[86.98851,20.80224],[86.98899,20.80217],[86.98943,20.80198],[86.9898,20.80192],[86.99006,20.80204],[86.99013,20.80243]]],[[[87.4301,21.58621],[87.43031,21.58657],[87.43007,21.5867],[87.42914,21.5863],[87.42739,21.58614],[87.42613,21.58634],[87.42484,21.58572],[87.42184,21.58282],[87.419,21.57872],[87.41742,21.57498],[87.41596,21.5725],[87.4138,21.56968],[87.41321,21.56854],[87.41319,21.56764],[87.41268,21.56514],[87.41299,21.56344],[87.4135,21.5621],[87.41338,21.5609],[87.41371,21.56017],[87.41449,21.56195],[87.41428,21.56339],[87.41441,21.56498],[87.41473,21.56535],[87.41547,21.56557],[87.41627,21.56619],[87.41609,21.56686],[87.41695,21.5681],[87.41698,21.56851],[87.41658,21.56931],[87.41656,21.57],[87.41836,21.57054],[87.41867,21.57133],[87.41851,21.57215],[87.41961,21.5726],[87.41993,21.57297],[87.42119,21.57635],[87.42283,21.5785],[87.42325,21.58007],[87.42507,21.58145],[87.42496,21.58233],[87.42514,21.58251],[87.42704,21.58298],[87.4289,21.58477],[87.42989,21.58548],[87.4301,21.58621]]],[[[86.04544,22.56751],[86.03217,22.55503],[86.02403,22.54462],[86.03384,22.53449],[86.02653,22.52402],[86.02091,22.52732],[86.00409,22.51776],[86.00103,22.51458],[85.99349,22.51438],[85.98961,22.51669],[85.98851,22.51534],[85.98514,22.51548],[85.98179,22.51092],[85.98001,22.51136],[85.97815,22.50842],[85.9734,22.50586],[85.97353,22.49962],[85.97096,22.49739],[85.97233,22.49169],[85.96839,22.48629],[85.96274,22.48512],[85.9626,22.47279],[85.95712,22.46482],[85.96035,22.46139],[85.96788,22.46119],[85.96564,22.45115],[85.97288,22.44717],[85.98461,22.43545],[86.00275,22.42637],[86.01069,22.43019],[86.015,22.42873],[86.01925,22.40743],[86.01833,22.40247],[86.02034,22.40079],[86.02087,22.39724],[86.02437,22.39622],[86.02267,22.39371],[86.02395,22.39267],[86.02339,22.39001],[86.0272,22.38621],[86.02521,22.38361],[86.02713,22.38056],[86.02478,22.37901],[86.02475,22.37539],[86.02106,22.37618],[86.02013,22.37177],[86.02176,22.36482],[86.01919,22.3609],[86.01467,22.35965],[86.0108,22.35229],[86.00753,22.35151],[86.00367,22.34672],[85.99821,22.34515],[85.99802,22.3416],[86.00338,22.33568],[86.00783,22.33776],[86.00949,22.33957],[86.00829,22.34095],[86.01075,22.34123],[86.01956,22.33903],[86.02671,22.33486],[86.01193,22.32232],[86.01049,22.31787],[86.01306,22.31789],[86.0137,22.31307],[86.01605,22.31437],[86.02257,22.309],[86.02735,22.3093],[86.02891,22.30769],[86.03236,22.31122],[86.03815,22.31036],[86.04067,22.31246],[86.04716,22.31145],[86.04721,22.30896],[86.04058,22.30632],[86.0341,22.30619],[86.03289,22.30329],[86.02942,22.303],[86.02882,22.3007],[86.02496,22.3026],[86.02218,22.30003],[86.01898,22.30038],[86.01425,22.29729],[86.00611,22.28739],[86.00704,22.28461],[86.0041,22.28018],[85.99871,22.27724],[85.98832,22.26697],[85.98771,22.26315],[85.99064,22.25694],[85.9897,22.25441],[85.97388,22.24708],[85.98092,22.23891],[85.98567,22.23714],[85.99131,22.22676],[86.00286,22.21383],[86.01837,22.20533],[86.03108,22.19307],[86.03143,22.19085],[86.01723,22.17162],[86.01526,22.16166],[86.00551,22.15086],[86.00351,22.13957],[85.99947,22.13569],[85.99877,22.13302],[85.99676,22.13245],[85.99717,22.12802],[86.00738,22.11709],[86.00381,22.11386],[85.99251,22.09468],[85.98642,22.08897],[85.98044,22.07521],[85.96877,22.0608],[85.96504,22.05237],[85.94359,22.02036],[85.93088,22.02334],[85.92295,22.01124],[85.91615,22.00878],[85.91616,22.00269],[85.91221,21.99719],[85.90952,21.98782],[85.91166,21.98488],[85.9102,21.98117],[85.91189,21.98017],[85.90656,21.97695],[85.91128,21.97341],[85.90689,21.97013],[85.90347,21.97307],[85.90238,21.9782],[85.90009,21.97958],[85.89871,21.98316],[85.89571,21.98324],[85.89577,21.98441],[85.89385,21.98439],[85.8937,21.98229],[85.89159,21.98122],[85.88208,21.98014],[85.85321,21.98376],[85.83614,21.98085],[85.83258,21.97728],[85.82437,21.97545],[85.8209,21.97746],[85.81699,21.98577],[85.81046,21.98631],[85.80537,21.98942],[85.79041,21.98582],[85.78584,21.98704],[85.78275,21.98495],[85.76299,21.99614],[85.76251,22.00125],[85.75857,22.00949],[85.7608,22.01454],[85.76716,22.02349],[85.77496,22.02872],[85.77959,22.02967],[85.78376,22.04018],[85.77873,22.04556],[85.77494,22.05629],[85.79344,22.08181],[85.81611,22.07357],[85.82266,22.07443],[85.83586,22.08016],[85.83268,22.09304],[85.82177,22.09466],[85.81976,22.09643],[85.81332,22.09429],[85.81305,22.09649],[85.82104,22.1065],[85.80743,22.11611],[85.80117,22.10986],[85.79755,22.1084],[85.79732,22.10475],[85.79017,22.10484],[85.78099,22.0965],[85.7673,22.09278],[85.7574,22.08458],[85.75705,22.07831],[85.74939,22.07357],[85.74015,22.07098],[85.7302,22.06528],[85.72054,22.06389],[85.718,22.06174],[85.71337,22.06248],[85.70917,22.05823],[85.70094,22.06173],[85.69168,22.06229],[85.68938,22.05605],[85.68487,22.05423],[85.67733,22.05695],[85.67844,22.06294],[85.67166,22.06748],[85.67025,22.07343],[85.66406,22.07685],[85.66158,22.08334],[85.65738,22.08393],[85.65527,22.09233],[85.65162,22.09544],[85.64412,22.09426],[85.63981,22.08667],[85.63703,22.0871],[85.63246,22.08417],[85.62888,22.08601],[85.62492,22.08209],[85.61345,22.08154],[85.61388,22.08609],[85.61118,22.08704],[85.60681,22.07984],[85.59718,22.07912],[85.59229,22.08044],[85.59023,22.084],[85.58622,22.08654],[85.57155,22.09116],[85.5662,22.08889],[85.56099,22.09178],[85.56044,22.09607],[85.54298,22.09047],[85.53902,22.0971],[85.53978,22.10185],[85.53413,22.10264],[85.52489,22.11002],[85.50978,22.11775],[85.48991,22.12108],[85.48293,22.1276],[85.4747,22.12893],[85.47069,22.13412],[85.46187,22.1399],[85.447,22.14637],[85.44299,22.14667],[85.43877,22.15035],[85.43412,22.15099],[85.42115,22.15878],[85.41137,22.16182],[85.39727,22.1632],[85.39207,22.15903],[85.38255,22.15644],[85.37511,22.15737],[85.37107,22.16099],[85.36579,22.15847],[85.36654,22.15363],[85.36396,22.15214],[85.36345,22.14748],[85.36039,22.14401],[85.36189,22.1411],[85.36084,22.13151],[85.36488,22.12883],[85.36441,22.12371],[85.35939,22.12395],[85.35059,22.1295],[85.34648,22.13025],[85.34354,22.12738],[85.32309,22.1275],[85.31884,22.12083],[85.31058,22.11882],[85.29926,22.10539],[85.2813,22.09043],[85.27513,22.08229],[85.27285,22.07359],[85.26306,22.05868],[85.2517,22.02697],[85.24417,22.01581],[85.24056,22.01363],[85.23993,22.011],[85.23629,22.0098],[85.22921,22.01241],[85.22591,22.01609],[85.22143,22.01799],[85.21687,22.03357],[85.21859,22.04093],[85.21485,22.04333],[85.21508,22.04772],[85.21345,22.04969],[85.2104,22.04942],[85.19817,22.05594],[85.18572,22.05921],[85.18057,22.07323],[85.1746,22.07459],[85.16762,22.06951],[85.17121,22.06342],[85.17083,22.05663],[85.17387,22.05138],[85.16685,22.0537],[85.16512,22.06381],[85.16038,22.06966],[85.16054,22.07471],[85.1548,22.07883],[85.14482,22.07974],[85.14033,22.07761],[85.13179,22.07681],[85.12007,22.07018],[85.11866,22.0742],[85.11251,22.07984],[85.11381,22.08354],[85.1124,22.08704],[85.10881,22.0876],[85.10557,22.09023],[85.10379,22.08953],[85.10057,22.09372],[85.10169,22.09812],[85.10011,22.10363],[85.09574,22.10621],[85.09488,22.10836],[85.08897,22.10573],[85.07046,22.1129],[85.05527,22.11568],[85.03909,22.11562],[85.02892,22.10933],[85.02387,22.11016],[85.01765,22.10342],[85.0158,22.10361],[85.01306,22.09879],[85.01174,22.09141],[85.00865,22.08886],[85.00658,22.09006],[85.00569,22.0879],[84.99369,22.0814],[84.98695,22.08282],[84.98456,22.08661],[84.98339,22.09552],[84.99141,22.09956],[84.99948,22.1077],[85.02358,22.11862],[85.03167,22.13309],[85.03417,22.14702],[85.02834,22.15718],[85.0291,22.16349],[85.04162,22.17299],[85.04283,22.17734],[85.05026,22.17916],[85.05266,22.18246],[85.05369,22.18539],[85.04919,22.19541],[85.05415,22.19799],[85.05582,22.20271],[85.05921,22.206],[85.05849,22.20925],[85.07225,22.23772],[85.06936,22.24358],[85.07025,22.24806],[85.07332,22.24805],[85.0782,22.25739],[85.07664,22.26108],[85.07341,22.2629],[85.0746,22.26485],[85.07218,22.26705],[85.07382,22.26876],[85.07148,22.27036],[85.07061,22.27365],[85.09963,22.29357],[85.10644,22.2959],[85.116,22.29409],[85.11413,22.30542],[85.11601,22.30811],[85.11416,22.31045],[85.11544,22.31528],[85.1181,22.31759],[85.11535,22.31978],[85.10637,22.32148],[85.10069,22.31992],[85.09549,22.31571],[85.09074,22.31858],[85.08939,22.32043],[85.09389,22.33328],[85.09575,22.34474],[85.09461,22.34673],[85.08333,22.34534],[85.08384,22.34905],[85.07892,22.35237],[85.07667,22.35621],[85.07916,22.36051],[85.07739,22.36551],[85.08696,22.38254],[85.08787,22.38847],[85.08622,22.38943],[85.08653,22.39942],[85.08023,22.41001],[85.08208,22.41653],[85.07537,22.42055],[85.0678,22.42843],[85.06683,22.44091],[85.06106,22.44513],[85.06029,22.44956],[85.06422,22.45424],[85.07715,22.46375],[85.07403,22.46553],[85.07524,22.46862],[85.07675,22.46874],[85.078,22.47755],[85.07601,22.48029],[85.07179,22.4792],[85.06726,22.48417],[85.05968,22.48645],[85.05216,22.48251],[85.0443,22.48233],[85.04165,22.48055],[85.03808,22.48043],[85.03805,22.48196],[85.03595,22.48243],[85.03628,22.47937],[85.03765,22.47949],[85.03718,22.47282],[85.03547,22.47378],[85.01938,22.4706],[84.97302,22.45112],[84.96488,22.44933],[84.95935,22.44305],[84.95667,22.45823],[84.9449,22.45246],[84.94021,22.4452],[84.93194,22.44622],[84.92386,22.44355],[84.92387,22.44093],[84.92656,22.43958],[84.92615,22.43495],[84.9159,22.42611],[84.91023,22.42328],[84.89925,22.42343],[84.88558,22.42108],[84.88559,22.42613],[84.88871,22.42921],[84.8849,22.43745],[84.88509,22.44276],[84.88239,22.44847],[84.87292,22.44227],[84.87307,22.43947],[84.85373,22.43592],[84.84563,22.43626],[84.84223,22.43423],[84.84216,22.43174],[84.83855,22.43093],[84.83738,22.43253],[84.81763,22.43761],[84.81778,22.44462],[84.81252,22.45293],[84.80571,22.44767],[84.80145,22.44846],[84.79907,22.4473],[84.7973,22.44864],[84.79604,22.44626],[84.78875,22.44819],[84.76551,22.44865],[84.75932,22.44747],[84.75206,22.4306],[84.74974,22.41899],[84.71877,22.4199],[84.71556,22.41728],[84.69863,22.4164],[84.68384,22.41992],[84.676,22.41942],[84.67413,22.42191],[84.66806,22.41806],[84.65216,22.42621],[84.62865,22.43455],[84.62196,22.43156],[84.6103,22.43094],[84.60259,22.42883],[84.59785,22.4348],[84.59418,22.43006],[84.5709,22.4274],[84.54929,22.42104],[84.54694,22.42607],[84.54033,22.42719],[84.53806,22.42556],[84.5362,22.42737],[84.53136,22.4259],[84.53054,22.4228],[84.52439,22.41998],[84.51698,22.41935],[84.51064,22.42103],[84.48958,22.41364],[84.48244,22.41327],[84.48069,22.41017],[84.47698,22.40801],[84.47673,22.40528],[84.47793,22.39925],[84.48029,22.39798],[84.47884,22.39408],[84.4844,22.39258],[84.48463,22.38885],[84.47601,22.38665],[84.46118,22.37905],[84.45321,22.38105],[84.45345,22.37946],[84.44953,22.38029],[84.43496,22.37417],[84.43053,22.36894],[84.43226,22.36531],[84.43067,22.36404],[84.43427,22.36047],[84.42998,22.35793],[84.42813,22.35327],[84.4237,22.35444],[84.42041,22.35235],[84.41618,22.35281],[84.40032,22.34646],[84.39969,22.34782],[84.39676,22.3474],[84.39213,22.34986],[84.38302,22.34911],[84.37959,22.35262],[84.37032,22.35573],[84.36789,22.35466],[84.36564,22.3482],[84.33951,22.34755],[84.32994,22.34425],[84.32474,22.34528],[84.31683,22.34231],[84.31336,22.34444],[84.29533,22.34102],[84.29151,22.34213],[84.29004,22.34689],[84.27836,22.34928],[84.26881,22.35455],[84.25561,22.37442],[84.25146,22.37808],[84.19896,22.37581],[84.18489,22.39023],[84.16598,22.39985],[84.15613,22.40774],[84.14093,22.42562],[84.14055,22.44139],[84.1389,22.44776],[84.14138,22.45335],[84.14289,22.46423],[84.14068,22.47392],[84.137,22.47379],[84.13535,22.47659],[84.1288,22.4776],[84.12484,22.47493],[84.11349,22.47569],[84.10631,22.48065],[84.10686,22.48274],[84.10883,22.48268],[84.10795,22.48376],[84.10248,22.48408],[84.09031,22.48929],[84.08088,22.49412],[84.07305,22.50097],[84.07024,22.50135],[84.07528,22.50283],[84.07549,22.5062],[84.06512,22.50761],[84.06454,22.51248],[84.06132,22.51324],[84.05971,22.51643],[84.05306,22.5129],[84.04925,22.51704],[84.03656,22.51597],[84.02771,22.5205],[84.02552,22.52575],[84.01293,22.52337],[84.00921,22.52558],[84.01001,22.5264],[84.00439,22.52757],[84.00292,22.53033],[83.99761,22.53103],[83.99489,22.5281],[83.98673,22.52554],[83.98091,22.52155],[83.98099,22.51615],[83.97741,22.51587],[83.97465,22.51203],[83.98048,22.50757],[83.98007,22.50239],[83.99785,22.49762],[84.00287,22.49332],[84.01742,22.48925],[84.0266,22.47532],[84.04075,22.4731],[84.04725,22.46922],[84.04542,22.4626],[84.0464,22.45535],[84.04489,22.45286],[84.04725,22.43823],[84.04172,22.43499],[84.03879,22.4297],[84.03034,22.42664],[84.03027,22.42008],[84.02468,22.4155],[84.02347,22.40945],[84.02006,22.40856],[84.01339,22.39742],[84.01318,22.39427],[84.00638,22.3822],[84.01029,22.37158],[84.00578,22.37368],[83.99667,22.37199],[83.98253,22.36733],[83.97025,22.3588],[83.95499,22.36166],[83.94822,22.35632],[83.94329,22.35471],[83.93269,22.35396],[83.92328,22.35841],[83.90652,22.35129],[83.90252,22.34659],[83.90132,22.33936],[83.89033,22.33655],[83.87921,22.33538],[83.87207,22.33778],[83.86932,22.34125],[83.86426,22.34328],[83.86399,22.34163],[83.86041,22.34047],[83.86024,22.33875],[83.85431,22.33764],[83.85493,22.33453],[83.85288,22.32712],[83.85029,22.32523],[83.83524,22.32228],[83.83056,22.3234],[83.82815,22.31752],[83.82198,22.31153],[83.826,22.3055],[83.82285,22.30128],[83.82727,22.29387],[83.82636,22.29282],[83.81985,22.29129],[83.81906,22.28957],[83.81691,22.29088],[83.80926,22.28895],[83.80278,22.29015],[83.79485,22.28595],[83.79604,22.28247],[83.79223,22.27648],[83.77975,22.27383],[83.77665,22.26985],[83.77679,22.26627],[83.77472,22.26477],[83.77524,22.26166],[83.77673,22.2613],[83.77558,22.25734],[83.77289,22.25571],[83.76645,22.25563],[83.75971,22.25121],[83.75768,22.24714],[83.75775,22.24034],[83.74436,22.23963],[83.72949,22.24282],[83.72821,22.24134],[83.7212,22.24304],[83.71306,22.24272],[83.70516,22.24685],[83.69147,22.24412],[83.69105,22.24273],[83.66577,22.23273],[83.66447,22.22879],[83.65531,22.22004],[83.64951,22.22334],[83.62962,22.20666],[83.61333,22.1777],[83.60815,22.15437],[83.59369,22.14029],[83.58321,22.12507],[83.57592,22.1209],[83.56435,22.106],[83.56181,22.09892],[83.56284,22.0962],[83.57694,22.09032],[83.59358,22.07421],[83.60642,22.06659],[83.6034,22.06383],[83.60152,22.05877],[83.59617,22.05789],[83.58988,22.05445],[83.58671,22.04873],[83.58307,22.05023],[83.58178,22.05458],[83.55822,22.05485],[83.55737,22.05371],[83.55429,22.05437],[83.55398,22.05292],[83.55035,22.05335],[83.5469,22.057],[83.54781,22.05915],[83.54374,22.05697],[83.53672,22.04348],[83.53647,22.0296],[83.53979,22.02167],[83.55615,22.00782],[83.54331,21.99385],[83.54355,21.98762],[83.53716,21.97796],[83.53901,21.96599],[83.54204,21.96211],[83.56169,21.94801],[83.55915,21.94505],[83.55672,21.93535],[83.59036,21.9297],[83.59987,21.92207],[83.60157,21.91806],[83.60592,21.91412],[83.60294,21.90858],[83.59848,21.90497],[83.597,21.906],[83.5947,21.90343],[83.58597,21.90213],[83.58523,21.89964],[83.58708,21.89453],[83.58155,21.88985],[83.57783,21.8892],[83.58081,21.88327],[83.57644,21.88237],[83.57421,21.87511],[83.59089,21.8511],[83.58708,21.84352],[83.58145,21.83817],[83.57791,21.83752],[83.57885,21.83245],[83.57691,21.8313],[83.56848,21.83317],[83.56318,21.8374],[83.55177,21.84071],[83.54163,21.83826],[83.53187,21.83096],[83.53119,21.82625],[83.5401,21.82204],[83.53741,21.81308],[83.54273,21.80573],[83.54104,21.79931],[83.5287,21.79955],[83.52587,21.7983],[83.52259,21.79945],[83.50593,21.80796],[83.49291,21.81837],[83.49374,21.813],[83.4878,21.80731],[83.48712,21.80036],[83.48365,21.79419],[83.47761,21.79083],[83.47547,21.79126],[83.47279,21.78747],[83.46939,21.78756],[83.47617,21.78078],[83.48218,21.7656],[83.47605,21.75238],[83.48744,21.74895],[83.48932,21.74539],[83.4852,21.74517],[83.48018,21.73396],[83.4813,21.73113],[83.47784,21.73054],[83.47336,21.72064],[83.46106,21.70909],[83.45948,21.69855],[83.4517,21.69542],[83.44077,21.6989],[83.43165,21.69991],[83.42882,21.69462],[83.42483,21.69248],[83.42287,21.68884],[83.42385,21.68721],[83.42216,21.68705],[83.41869,21.68065],[83.43127,21.67421],[83.44248,21.66129],[83.44813,21.65754],[83.46976,21.64873],[83.48661,21.64413],[83.48714,21.6399],[83.49193,21.63818],[83.48955,21.63487],[83.48961,21.63146],[83.48619,21.63009],[83.47356,21.63249],[83.47349,21.62737],[83.46986,21.62154],[83.46627,21.60955],[83.4606,21.6078],[83.45611,21.61],[83.45506,21.61241],[83.45227,21.61287],[83.45247,21.62241],[83.44397,21.624],[83.44463,21.63043],[83.44292,21.63142],[83.44438,21.63929],[83.45076,21.65075],[83.44265,21.65541],[83.42884,21.64723],[83.42757,21.64352],[83.41504,21.6408],[83.40907,21.6372],[83.40347,21.63094],[83.39559,21.62709],[83.39246,21.62729],[83.38943,21.61769],[83.38268,21.62013],[83.38304,21.61426],[83.38014,21.60813],[83.36966,21.60051],[83.37051,21.59126],[83.36774,21.59172],[83.36893,21.58898],[83.36694,21.58666],[83.36895,21.585],[83.36497,21.57608],[83.36775,21.57209],[83.36748,21.56874],[83.36989,21.56806],[83.3693,21.56668],[83.37186,21.56442],[83.37033,21.55875],[83.37187,21.5596],[83.37316,21.55816],[83.36978,21.55646],[83.36999,21.55252],[83.36598,21.55081],[83.36766,21.54932],[83.3662,21.54663],[83.36451,21.54704],[83.36427,21.545],[83.36014,21.54285],[83.3614,21.53916],[83.35866,21.53824],[83.35709,21.52808],[83.35204,21.52115],[83.34962,21.51265],[83.34304,21.50965],[83.33788,21.5021],[83.34061,21.49517],[83.34706,21.48898],[83.34574,21.47962],[83.34655,21.4716],[83.35147,21.46003],[83.35437,21.44807],[83.36686,21.44555],[83.37362,21.44239],[83.37124,21.43551],[83.37428,21.43498],[83.37587,21.42806],[83.37815,21.42683],[83.38529,21.41537],[83.39346,21.40771],[83.39893,21.40534],[83.3972,21.38803],[83.40051,21.37588],[83.39687,21.36756],[83.40062,21.36391],[83.40802,21.36137],[83.40675,21.35142],[83.39183,21.34264],[83.38549,21.3463],[83.37888,21.34455],[83.36977,21.34671],[83.36686,21.34936],[83.35461,21.35429],[83.34772,21.35375],[83.34718,21.35629],[83.34385,21.35836],[83.32297,21.3624],[83.31137,21.37084],[83.28606,21.37761],[83.28405,21.38033],[83.26873,21.37859],[83.27424,21.37729],[83.27469,21.36383],[83.26868,21.34549],[83.2578,21.33555],[83.25769,21.3336],[83.26653,21.33086],[83.26283,21.33027],[83.25734,21.3205],[83.26208,21.30783],[83.26883,21.30507],[83.27205,21.30188],[83.27629,21.3023],[83.27927,21.29496],[83.27859,21.28932],[83.27491,21.28581],[83.2713,21.27294],[83.26908,21.27406],[83.26777,21.27756],[83.25583,21.28212],[83.25059,21.28238],[83.24627,21.28116],[83.23933,21.27363],[83.23796,21.26961],[83.23191,21.27272],[83.22295,21.26577],[83.22167,21.26007],[83.21765,21.25485],[83.22215,21.22872],[83.2189,21.22861],[83.21758,21.22597],[83.21857,21.22089],[83.21706,21.21331],[83.21275,21.2102],[83.21053,21.20504],[83.21462,21.19479],[83.20933,21.18945],[83.20511,21.17943],[83.20284,21.17764],[83.20462,21.1657],[83.19852,21.16426],[83.19836,21.15346],[83.19656,21.15143],[83.1981,21.14544],[83.19136,21.13869],[83.17816,21.1352],[83.17104,21.13617],[83.16691,21.13879],[83.16464,21.13523],[83.15733,21.13107],[83.14743,21.11856],[83.13893,21.11333],[83.14065,21.11234],[83.13867,21.10951],[83.13149,21.10581],[83.1241,21.1067],[83.1216,21.1099],[83.11354,21.11266],[83.10128,21.10999],[83.09709,21.11016],[83.09442,21.11328],[83.09011,21.11113],[83.0849,21.11295],[83.07781,21.11195],[83.07725,21.11407],[83.075,21.11365],[83.06851,21.11685],[83.06611,21.12076],[83.05603,21.12231],[83.05233,21.12627],[83.04525,21.12401],[83.03865,21.13173],[83.03383,21.13193],[83.03482,21.13663],[83.03338,21.1373],[83.02891,21.13513],[83.02304,21.13656],[83.0203,21.14346],[83.016,21.14631],[83.01005,21.14474],[83.01013,21.14257],[83.00458,21.13696],[83.00155,21.13687],[82.99936,21.13891],[82.99545,21.13853],[82.99373,21.14084],[82.99039,21.13981],[82.98576,21.15104],[82.9924,21.15856],[82.99332,21.16189],[83.00376,21.16693],[83.00135,21.17057],[82.99652,21.16968],[82.99319,21.17111],[82.98607,21.16811],[82.98056,21.17003],[82.99,21.18183],[82.98809,21.18281],[82.98325,21.18006],[82.97787,21.18258],[82.97534,21.18215],[82.97001,21.17886],[82.96739,21.17484],[82.96556,21.17533],[82.96743,21.18307],[82.96493,21.19327],[82.96099,21.19266],[82.95916,21.18888],[82.94903,21.1839],[82.94384,21.17785],[82.94682,21.1755],[82.94286,21.17164],[82.94757,21.16453],[82.94768,21.16178],[82.93998,21.16093],[82.93996,21.16635],[82.9377,21.16985],[82.93497,21.16833],[82.93387,21.16399],[82.93225,21.16308],[82.92094,21.16347],[82.91498,21.16196],[82.91022,21.1652],[82.90211,21.16699],[82.89548,21.16098],[82.89393,21.15637],[82.88218,21.14843],[82.87818,21.15345],[82.87852,21.15858],[82.87636,21.16355],[82.87255,21.16238],[82.8717,21.15748],[82.86643,21.16282],[82.85959,21.15977],[82.8556,21.16147],[82.85246,21.15954],[82.8501,21.16161],[82.85088,21.16863],[82.8471,21.16653],[82.84276,21.16772],[82.83126,21.16467],[82.82802,21.16544],[82.826,21.16368],[82.81197,21.16107],[82.80502,21.15592],[82.80032,21.15595],[82.79622,21.15065],[82.79666,21.14865],[82.79368,21.14255],[82.78564,21.14487],[82.78077,21.14967],[82.7794,21.15358],[82.77435,21.15413],[82.76713,21.15901],[82.76782,21.16056],[82.76504,21.16173],[82.76581,21.16278],[82.76334,21.16409],[82.76298,21.16262],[82.7601,21.1652],[82.7575,21.16355],[82.75591,21.16643],[82.75001,21.16411],[82.74057,21.16347],[82.73683,21.16533],[82.72115,21.16585],[82.72119,21.15767],[82.71067,21.16085],[82.70526,21.15808],[82.69983,21.1577],[82.69573,21.16053],[82.69708,21.1642],[82.693,21.16574],[82.68554,21.16497],[82.68415,21.16106],[82.66405,21.155],[82.65549,21.15714],[82.64061,21.15487],[82.63722,21.15073],[82.63727,21.14474],[82.64395,21.13487],[82.65198,21.13325],[82.65276,21.12871],[82.64191,21.12007],[82.63974,21.11574],[82.64215,21.11122],[82.64845,21.10956],[82.64991,21.10647],[82.64582,21.1],[82.63733,21.09319],[82.63389,21.08776],[82.63311,21.08319],[82.62964,21.07882],[82.61651,21.07918],[82.61198,21.07469],[82.61186,21.06919],[82.61725,21.05986],[82.61788,21.05468],[82.6261,21.04854],[82.62979,21.04094],[82.62879,21.03804],[82.61333,21.02285],[82.61136,21.01297],[82.58878,20.99355],[82.58051,20.97973],[82.57138,20.97226],[82.55915,20.94794],[82.54303,20.93661],[82.52711,20.934],[82.51594,20.92176],[82.50443,20.91959],[82.48874,20.9094],[82.48699,20.90504],[82.49107,20.88063],[82.48598,20.87028],[82.48668,20.86165],[82.48108,20.85131],[82.47044,20.84808],[82.46539,20.84295],[82.46878,20.83518],[82.46449,20.829],[82.45437,20.82765],[82.44902,20.83101],[82.44728,20.82996],[82.44367,20.831],[82.44353,20.83437],[82.43934,20.83564],[82.42731,20.83155],[82.41995,20.83156],[82.41673,20.83866],[82.4101,20.84229],[82.40995,20.8456],[82.41287,20.85086],[82.40685,20.85928],[82.40751,20.86576],[82.40545,20.87019],[82.39557,20.87003],[82.38924,20.87409],[82.38967,20.87532],[82.38505,20.87409],[82.37592,20.86798],[82.36461,20.87067],[82.35947,20.87381],[82.36376,20.88849],[82.35119,20.88974],[82.34676,20.87704],[82.34446,20.85637],[82.33953,20.84684],[82.34157,20.83283],[82.33934,20.82577],[82.34102,20.82083],[82.34112,20.81249],[82.34317,20.80893],[82.34202,20.80472],[82.34611,20.79763],[82.34386,20.79223],[82.34364,20.77095],[82.34171,20.76776],[82.35355,20.73592],[82.34556,20.73159],[82.35401,20.71966],[82.35076,20.71728],[82.35041,20.70634],[82.355,20.69319],[82.36034,20.68356],[82.36705,20.68019],[82.37382,20.6674],[82.36875,20.65959],[82.36997,20.65556],[82.36848,20.64923],[82.37467,20.63907],[82.3765,20.63241],[82.37095,20.62599],[82.36452,20.62218],[82.36543,20.61588],[82.36292,20.61412],[82.36226,20.60991],[82.35865,20.60848],[82.3559,20.60925],[82.35256,20.60298],[82.34713,20.60254],[82.34485,20.59848],[82.3457,20.59656],[82.34374,20.59577],[82.34408,20.59289],[82.34679,20.5906],[82.35064,20.58127],[82.34836,20.5764],[82.34335,20.57152],[82.33337,20.56855],[82.33488,20.5646],[82.33223,20.56191],[82.3357,20.5551],[82.34861,20.54667],[82.35765,20.52933],[82.36806,20.52386],[82.37825,20.52203],[82.3897,20.5176],[82.388,20.51073],[82.38953,20.49801],[82.38834,20.49536],[82.39109,20.49243],[82.3906,20.48619],[82.39316,20.48643],[82.39374,20.4825],[82.39203,20.47869],[82.39608,20.47766],[82.39784,20.47295],[82.39764,20.46484],[82.39478,20.46229],[82.39606,20.45957],[82.39798,20.46192],[82.40191,20.46193],[82.40427,20.46005],[82.40855,20.46324],[82.40798,20.46733],[82.41079,20.46813],[82.4158,20.48151],[82.41763,20.48174],[82.42706,20.46906],[82.42573,20.44533],[82.43398,20.44567],[82.43786,20.43439],[82.42966,20.42787],[82.43201,20.41664],[82.41661,20.40765],[82.42117,20.39285],[82.41769,20.38772],[82.41805,20.38211],[82.4112,20.37129],[82.40915,20.36293],[82.40505,20.35804],[82.40627,20.35299],[82.40038,20.34158],[82.40151,20.33758],[82.40916,20.33253],[82.40887,20.32778],[82.41295,20.328],[82.41737,20.32425],[82.42104,20.32411],[82.43077,20.31402],[82.42998,20.30099],[82.43781,20.29441],[82.43557,20.28548],[82.43287,20.28181],[82.42503,20.27522],[82.41596,20.27205],[82.41234,20.26704],[82.41139,20.26011],[82.41601,20.25728],[82.41778,20.25232],[82.42233,20.24797],[82.41123,20.24538],[82.41063,20.24265],[82.41507,20.22681],[82.42247,20.22082],[82.42048,20.21308],[82.42062,20.20492],[82.41347,20.19935],[82.41408,20.18986],[82.41158,20.18149],[82.40754,20.18123],[82.40453,20.17787],[82.40471,20.17598],[82.39491,20.17012],[82.39001,20.1637],[82.39374,20.15704],[82.39415,20.15263],[82.3872,20.14905],[82.3858,20.14644],[82.39315,20.13761],[82.39423,20.12992],[82.39767,20.12377],[82.39818,20.10169],[82.40143,20.09607],[82.39976,20.0898],[82.40149,20.08102],[82.39583,20.06897],[82.39839,20.06269],[82.39829,20.05818],[82.40954,20.05179],[82.41682,20.05215],[82.43003,20.04961],[82.44052,20.04318],[82.44801,20.04066],[82.45753,20.03997],[82.46067,20.0419],[82.47001,20.03591],[82.47857,20.03817],[82.49373,20.02437],[82.50911,20.01816],[82.53318,20.0153],[82.53445,20.01785],[82.55011,20.01777],[82.57734,20.00672],[82.58328,20.00318],[82.59034,19.99373],[82.59573,19.99157],[82.60502,19.99014],[82.62114,19.9923],[82.6333,20.00487],[82.64151,20.00671],[82.64298,20.00641],[82.64271,20.00366],[82.65198,20.00589],[82.67012,20.00108],[82.69267,20.0],[82.69958,19.99757],[82.70727,19.99905],[82.71545,19.99593],[82.71575,19.99227],[82.71814,19.98914],[82.71752,19.96555],[82.71472,19.95767],[82.71552,19.95363],[82.72049,19.94829],[82.71307,19.93846],[82.71118,19.92545],[82.71276,19.91852],[82.70737,19.91299],[82.70909,19.9056],[82.70741,19.90204],[82.71355,19.88344],[82.71405,19.87781],[82.72458,19.87554],[82.72173,19.87292],[82.71959,19.86743],[82.71979,19.85685],[82.71816,19.85359],[82.7114,19.85063],[82.71293,19.84481],[82.7114,19.84],[82.70555,19.83302],[82.69671,19.83061],[82.67802,19.83212],[82.66592,19.83039],[82.65216,19.83217],[82.6476,19.81954],[82.64175,19.81454],[82.63663,19.81293],[82.63282,19.80119],[82.62713,19.79366],[82.60378,19.78812],[82.60215,19.78112],[82.59529,19.77847],[82.59489,19.77529],[82.59181,19.77586],[82.58348,19.7788],[82.58359,19.78164],[82.58177,19.78321],[82.58449,19.78825],[82.5827,19.795],[82.58469,19.80235],[82.57599,19.80822],[82.57858,19.81108],[82.5762,19.81474],[82.57853,19.81801],[82.57914,19.82354],[82.57777,19.82498],[82.5794,19.83032],[82.57604,19.82892],[82.57579,19.83339],[82.57974,19.84011],[82.5839,19.84358],[82.58863,19.84338],[82.58772,19.84868],[82.59062,19.84892],[82.59041,19.85245],[82.59687,19.8552],[82.59589,19.85814],[82.6002,19.86019],[82.60343,19.86699],[82.59616,19.87298],[82.58289,19.86942],[82.57302,19.87755],[82.56104,19.87433],[82.55596,19.88066],[82.54839,19.8757],[82.54214,19.88348],[82.53491,19.88689],[82.53142,19.87824],[82.5233,19.88308],[82.51912,19.89097],[82.5118,19.88813],[82.50547,19.88986],[82.50287,19.89447],[82.5049,19.89972],[82.49734,19.90413],[82.49161,19.90345],[82.48417,19.90791],[82.4729,19.90703],[82.47228,19.90158],[82.46422,19.90085],[82.45217,19.90871],[82.44599,19.91019],[82.43711,19.90494],[82.43335,19.90556],[82.43006,19.90401],[82.4262,19.90546],[82.41802,19.90407],[82.41858,19.89985],[82.41196,19.89851],[82.40524,19.89426],[82.40178,19.88994],[82.39487,19.88802],[82.39248,19.88205],[82.38295,19.87386],[82.38365,19.86988],[82.3752,19.85964],[82.36085,19.8628],[82.36041,19.85731],[82.36463,19.85469],[82.36446,19.85101],[82.36142,19.85075],[82.3537,19.84031],[82.34829,19.83613],[82.34424,19.83502],[82.3307,19.84485],[82.32634,19.86161],[82.30312,19.88939],[82.30159,19.90271],[82.27581,19.94859],[82.27487,19.96304],[82.26917,19.97526],[82.25625,19.98345],[82.25001,19.98906],[82.2462,19.99535],[82.23712,20.00333],[82.22929,19.99982],[82.21671,19.99706],[82.2101,19.98625],[82.1931,19.9871],[82.18425,19.98419],[82.18519,19.9873],[82.18347,19.98959],[82.18033,19.99114],[82.17691,19.99731],[82.17478,19.99675],[82.17369,19.99996],[82.17125,20.00078],[82.17123,20.00551],[82.16058,20.00912],[82.15347,20.00756],[82.13981,20.01873],[82.13633,20.01893],[82.12849,20.0142],[82.12679,20.0148],[82.11652,20.02116],[82.11018,20.02752],[82.10695,20.02725],[82.10547,20.0306],[82.1032,20.03107],[82.10383,20.03569],[82.10213,20.03629],[82.10228,20.04004],[82.08946,20.03906],[82.0864,20.04524],[82.08459,20.04605],[82.08543,20.05072],[82.07047,20.05695],[82.06354,20.05453],[82.06296,20.05204],[82.06065,20.05113],[82.06219,20.04922],[82.05901,20.04775],[82.05909,20.04498],[82.0564,20.04174],[82.04782,20.03672],[82.04815,20.03482],[82.04297,20.03491],[82.04121,20.03096],[82.03804,20.03012],[82.03734,20.02795],[82.04,20.0226],[82.03256,20.01572],[82.02155,20.02371],[82.02272,20.03215],[82.01768,20.049],[82.01227,20.05391],[82.00575,20.05561],[82.00325,20.05513],[82.00337,20.05334],[81.99534,20.05357],[81.98739,20.06133],[81.98416,20.06803],[81.98386,20.07324],[81.97589,20.08171],[81.96333,20.09045],[81.95815,20.09785],[81.94638,20.10513],[81.93852,20.10156],[81.93713,20.10235],[81.93384,20.09821],[81.93387,20.09604],[81.92601,20.09173],[81.92276,20.08716],[81.92138,20.07997],[81.91606,20.07198],[81.90144,20.05791],[81.89528,20.04824],[81.8873,20.04402],[81.88191,20.04434],[81.87598,20.05206],[81.86943,20.04126],[81.86882,20.03191],[81.86503,20.0267],[81.86654,20.01105],[81.86057,20.00351],[81.85536,19.97228],[81.84505,19.95782],[81.84502,19.95184],[81.8568,19.94754],[81.85181,19.92315],[81.85316,19.91848],[81.86965,19.90254],[81.89968,19.8872],[81.94106,19.87288],[81.96813,19.85989],[81.96537,19.8369],[81.98656,19.80428],[81.98595,19.80109],[81.99191,19.79959],[81.99537,19.79682],[82.00368,19.80257],[82.00989,19.80422],[82.03105,19.79781],[82.04868,19.79696],[82.05298,19.79229],[82.0564,19.79302],[82.05636,19.79485],[82.06022,19.79637],[82.06239,19.79254],[82.06555,19.79066],[82.06623,19.78315],[82.06047,19.76663],[82.06361,19.75902],[82.05598,19.75297],[82.05564,19.74998],[82.0504,19.74581],[82.05094,19.73642],[82.04924,19.72872],[82.05102,19.71909],[82.04475,19.70888],[82.04459,19.70053],[82.0491,19.68493],[82.05187,19.68047],[82.05532,19.66566],[82.05362,19.66539],[82.05194,19.66095],[82.05551,19.65446],[82.05351,19.6528],[82.05192,19.64657],[82.05473,19.6405],[82.05701,19.63951],[82.05646,19.63312],[82.05902,19.62818],[82.0561,19.62596],[82.05571,19.6231],[82.05061,19.61677],[82.05066,19.60808],[82.04627,19.60728],[82.03988,19.59764],[82.04048,19.59164],[82.04337,19.589],[82.04465,19.58178],[82.04875,19.57827],[82.04985,19.57403],[82.04811,19.56913],[82.04949,19.56841],[82.04551,19.56053],[82.05071,19.54882],[82.04749,19.53965],[82.04772,19.53345],[82.04647,19.53397],[82.04326,19.52986],[82.03988,19.53018],[82.03729,19.52825],[82.03643,19.51978],[82.03406,19.51453],[82.03185,19.51453],[82.03156,19.51104],[82.02908,19.50775],[82.03851,19.50913],[82.05134,19.50816],[82.06542,19.51057],[82.07603,19.52363],[82.10025,19.51659],[82.09797,19.49893],[82.10796,19.49428],[82.10734,19.47504],[82.10282,19.46611],[82.11342,19.46036],[82.11353,19.44826],[82.12614,19.42909],[82.1273,19.43051],[82.13525,19.43038],[82.13524,19.43178],[82.17149,19.43719],[82.17819,19.43661],[82.18619,19.42665],[82.18944,19.42753],[82.18927,19.41536],[82.1852,19.41369],[82.18244,19.40943],[82.18208,19.40293],[82.18431,19.40049],[82.18074,19.39241],[82.18225,19.38874],[82.18099,19.38618],[82.18183,19.3842],[82.178,19.3825],[82.17883,19.37905],[82.17553,19.37664],[82.17353,19.37717],[82.17192,19.37262],[82.16661,19.37277],[82.16219,19.37436],[82.16004,19.37707],[82.15648,19.3773],[82.15327,19.37702],[82.15135,19.37331],[82.14774,19.37182],[82.14896,19.36953],[82.14725,19.36549],[82.14839,19.36491],[82.14878,19.35298],[82.15244,19.35274],[82.15413,19.3498],[82.165,19.34899],[82.16904,19.34598],[82.17866,19.34337],[82.17789,19.34005],[82.18604,19.33741],[82.18789,19.33476],[82.18801,19.32892],[82.19013,19.32676],[82.19412,19.32594],[82.18122,19.32339],[82.17917,19.31897],[82.17668,19.29948],[82.17441,19.29453],[82.16594,19.28769],[82.15843,19.26517],[82.15784,19.2275],[82.15942,19.22296],[82.16877,19.21294],[82.16582,19.21145],[82.16171,19.20225],[82.16758,19.19526],[82.18046,19.19168],[82.17514,19.18182],[82.18106,19.17858],[82.18205,19.17416],[82.17671,19.17347],[82.17604,19.17208],[82.17811,19.16937],[82.18395,19.16849],[82.18614,19.16635],[82.1822,19.15929],[82.17753,19.15567],[82.17874,19.15964],[82.17492,19.16288],[82.17018,19.16116],[82.1713,19.15653],[82.17721,19.15561],[82.17768,19.15251],[82.18093,19.15082],[82.17656,19.14921],[82.17154,19.15021],[82.16983,19.14525],[82.17574,19.13866],[82.16682,19.1361],[82.1661,19.1327],[82.16921,19.12805],[82.17033,19.12041],[82.17361,19.11841],[82.17686,19.11857],[82.18247,19.13169],[82.19058,19.1289],[82.19739,19.12164],[82.20582,19.12413],[82.209,19.12052],[82.20581,19.11694],[82.20633,19.11507],[82.20298,19.10811],[82.20518,19.107],[82.20735,19.10228],[82.20499,19.10115],[82.20491,19.09714],[82.20648,19.0964],[82.20971,19.09968],[82.21294,19.09798],[82.21414,19.09985],[82.21842,19.09727],[82.21855,19.09302],[82.21495,19.08599],[82.20472,19.0756],[82.20225,19.06664],[82.22988,19.02741],[82.23276,19.01794],[82.23911,18.96229],[82.24605,18.91911],[82.23696,18.91423],[82.23091,18.91967],[82.22728,18.91904],[82.2183,18.92252],[82.20085,18.91359],[82.19251,18.90751],[82.18109,18.90694],[82.17615,18.90267],[82.17516,18.89161],[82.17666,18.88709],[82.16932,18.88189],[82.16506,18.88322],[82.16041,18.87891],[82.16104,18.87713],[82.16737,18.87362],[82.16509,18.86487],[82.1602,18.8614],[82.16303,18.85415],[82.16747,18.85235],[82.16574,18.84387],[82.16896,18.83602],[82.16029,18.81987],[82.16615,18.81407],[82.16137,18.81252],[82.1602,18.80807],[82.15652,18.80433],[82.16453,18.80192],[82.16544,18.79862],[82.16017,18.79523],[82.1608,18.78992],[82.15736,18.78548],[82.15217,18.7853],[82.14738,18.78097],[82.14057,18.77846],[82.13842,18.77837],[82.13567,18.78148],[82.13349,18.78045],[82.13133,18.77011],[82.13362,18.76811],[82.13342,18.76536],[82.12082,18.76975],[82.11536,18.76901],[82.11101,18.76588],[82.10576,18.76731],[82.09782,18.76384],[82.09158,18.76573],[82.08874,18.76019],[82.09258,18.75268],[82.09352,18.74681],[82.08769,18.73113],[82.08836,18.72977],[82.08606,18.72795],[82.08688,18.72142],[82.08497,18.71859],[82.07653,18.72211],[82.07456,18.72462],[82.06742,18.7265],[82.06505,18.72007],[82.06277,18.71902],[82.05877,18.71934],[82.05609,18.7229],[82.05365,18.72361],[82.04812,18.7214],[82.04021,18.72391],[82.03092,18.72379],[82.02815,18.72121],[82.01674,18.7195],[82.00879,18.71255],[82.00583,18.71465],[81.99992,18.71108],[81.99859,18.70691],[81.99473,18.70468],[81.9889,18.70528],[81.97098,18.69864],[81.96294,18.68898],[81.96075,18.68863],[81.96915,18.67339],[81.9616,18.67028],[81.95508,18.66422],[81.95279,18.65954],[81.95316,18.65404],[81.94894,18.64371],[81.94303,18.64317],[81.93637,18.6448],[81.92173,18.64291],[81.91526,18.6513],[81.90089,18.66137],[81.89835,18.65854],[81.89377,18.65746],[81.89501,18.65445],[81.8982,18.65441],[81.89405,18.64228],[81.89887,18.63523],[81.89521,18.63282],[81.89459,18.62954],[81.90848,18.62856],[81.93014,18.61858],[81.93515,18.61265],[81.93506,18.60736],[81.93693,18.60557],[81.94429,18.60075],[81.95098,18.60095],[81.96085,18.59662],[81.9634,18.5941],[81.96364,18.59044],[81.95984,18.58948],[81.95607,18.58393],[81.95291,18.58282],[81.95331,18.57671],[81.95051,18.57485],[81.95057,18.57002],[81.94508,18.57014],[81.9381,18.5666],[81.92971,18.56613],[81.92678,18.56673],[81.92084,18.57269],[81.91777,18.5708],[81.91557,18.57281],[81.91069,18.57063],[81.91036,18.56577],[81.90592,18.56455],[81.9057,18.56307],[81.90862,18.553],[81.90141,18.54861],[81.90587,18.54516],[81.90901,18.53807],[81.8979,18.53509],[81.88927,18.53816],[81.87968,18.52524],[81.86825,18.52492],[81.85699,18.50743],[81.85611,18.50092],[81.85783,18.49477],[81.85621,18.4914],[81.79502,18.44072],[81.76887,18.41709],[81.75006,18.35275],[81.65914,18.34656],[81.65087,18.34062],[81.64966,18.3369],[81.65192,18.33254],[81.66217,18.32498],[81.66223,18.32123],[81.65132,18.32153],[81.64452,18.31818],[81.63965,18.31794],[81.62811,18.31384],[81.61653,18.30735],[81.60054,18.30969],[81.5976,18.30891],[81.5929,18.30071],[81.58551,18.29643],[81.57346,18.28264],[81.56433,18.2752],[81.55084,18.2693],[81.54128,18.27006],[81.53527,18.26838],[81.52524,18.25771],[81.52464,18.25586],[81.52766,18.25094],[81.53045,18.24028],[81.52593,18.23355],[81.52426,18.22751],[81.51992,18.22199],[81.51983,18.21766],[81.51552,18.21324],[81.51326,18.20054],[81.50941,18.19457],[81.507,18.1862],[81.50992,18.17949],[81.51776,18.17546],[81.52373,18.16589],[81.526,18.16042],[81.52582,18.1534],[81.52413,18.15081],[81.51832,18.14816],[81.51382,18.14054],[81.51289,18.13575],[81.51509,18.12276],[81.51286,18.09869],[81.49963,18.07985],[81.4966,18.07095],[81.49069,18.06284],[81.48264,18.05567],[81.48041,18.05074],[81.48015,18.03369],[81.48312,18.02705],[81.47991,18.00439],[81.48028,17.99779],[81.47762,17.98841],[81.48295,17.97682],[81.47609,17.96934],[81.47211,17.9605],[81.45984,17.95295],[81.45291,17.93637],[81.44911,17.93193],[81.44992,17.92403],[81.45337,17.91463],[81.45282,17.90756],[81.4475,17.89849],[81.44811,17.88974],[81.44463,17.88575],[81.43534,17.88082],[81.4126,17.89462],[81.40519,17.89619],[81.4002,17.89357],[81.39548,17.88321],[81.39427,17.86928],[81.40382,17.85301],[81.40326,17.84943],[81.39586,17.83734],[81.38907,17.82992],[81.38857,17.82315],[81.39181,17.81542],[81.39655,17.82023],[81.40165,17.82095],[81.41016,17.81859],[81.41397,17.81359],[81.4156,17.81342],[81.42582,17.82191],[81.43048,17.83006],[81.43412,17.83193],[81.43672,17.83162],[81.44088,17.82533],[81.44419,17.82497],[81.46011,17.82957],[81.46905,17.83622],[81.47426,17.83798],[81.47732,17.83588],[81.48018,17.83043],[81.48152,17.82358],[81.48535,17.82059],[81.48627,17.81434],[81.49005,17.81269],[81.49534,17.81255],[81.50478,17.81629],[81.51841,17.81626],[81.53018,17.82291],[81.53781,17.82159],[81.54684,17.82472],[81.56369,17.82571],[81.57039,17.83531],[81.57432,17.83717],[81.59419,17.83404],[81.60689,17.82583],[81.61723,17.8223],[81.62235,17.83345],[81.63015,17.83202],[81.64171,17.84132],[81.65202,17.8561],[81.65431,17.86908],[81.66219,17.8816],[81.66973,17.88655],[81.67452,17.88818],[81.6861,17.8853],[81.69475,17.89872],[81.69853,17.90135],[81.70123,17.89948],[81.70222,17.89627],[81.70113,17.88795],[81.70411,17.88271],[81.70436,17.87768],[81.70917,17.872],[81.72562,17.87886],[81.76467,17.90334],[81.76881,17.90688],[81.77138,17.91246],[81.77841,17.91284],[81.79013,17.92081],[81.79349,17.92548],[81.7947,17.93294],[81.79707,17.93728],[81.80989,17.95098],[81.81911,17.95169],[81.83099,17.95793],[81.84323,17.95696],[81.86649,17.96329],[81.88175,17.96883],[81.89337,17.97624],[81.90518,17.97732],[81.90903,17.98422],[81.91991,17.99121],[81.93657,17.99028],[81.94602,17.99575],[81.96297,17.99925],[81.96894,18.00598],[81.97606,18.01047],[81.98251,18.01813],[81.99127,18.01951],[81.99427,18.02731],[82.00177,18.03002],[82.00935,18.03007],[82.01166,18.03524],[82.00673,18.0451],[82.00623,18.05297],[82.00767,18.05669],[82.0062,18.05772],[82.00768,18.05669],[82.02028,18.0635],[82.02708,18.06403],[82.03232,18.06932],[82.03758,18.06698],[82.04044,18.05731],[82.05042,18.05814],[82.06156,18.05545],[82.06695,18.05739],[82.07082,18.06909],[82.07664,18.07522],[82.08709,18.06893],[82.09609,18.06743],[82.0964,18.0634],[82.10203,18.06024],[82.10787,18.06326],[82.11365,18.06123],[82.12063,18.06423],[82.12498,18.05967],[82.13349,18.05989],[82.13718,18.04394],[82.14483,18.04885],[82.14678,18.05231],[82.15084,18.04994],[82.15536,18.05374],[82.15084,18.04994],[82.15321,18.04787],[82.15827,18.05034],[82.16884,18.05195],[82.18432,18.02879],[82.17862,18.02039],[82.18354,18.0191],[82.1878,18.01473],[82.19737,18.01774],[82.20531,18.01837],[82.2046,18.01501],[82.2082,18.01044],[82.22346,18.0013],[82.23724,18.00255],[82.24405,17.99838],[82.24796,17.99778],[82.25886,17.99771],[82.26801,18.0],[82.27355,18.02134],[82.26901,18.03402],[82.26161,18.04185],[82.26894,18.04519],[82.26961,18.05194],[82.27261,18.05722],[82.27698,18.0582],[82.28349,18.0645],[82.28787,18.0629],[82.29039,18.06706],[82.28309,18.07334],[82.29039,18.06706],[82.29138,18.06891],[82.29615,18.06705],[82.3007,18.06925],[82.3044,18.06812],[82.3038,18.06528],[82.30012,18.06321],[82.29865,18.05557],[82.30617,18.05571],[82.31033,18.05393],[82.30726,18.05005],[82.30818,18.04491],[82.31658,18.04744],[82.32036,18.04498],[82.32223,18.04862],[82.31897,18.05707],[82.32225,18.05991],[82.33002,18.05809],[82.33214,18.05511],[82.33199,18.05246],[82.33414,18.05133],[82.34074,18.05479],[82.34388,18.05799],[82.34708,18.06995],[82.35178,18.07659],[82.34732,18.07998],[82.34958,18.08563],[82.347,18.09825],[82.3385,18.09911],[82.33579,18.10586],[82.33567,18.11375],[82.33377,18.11925],[82.33616,18.12415],[82.3342,18.12686],[82.34209,18.13662],[82.33868,18.14417],[82.33976,18.14983],[82.35493,18.14247],[82.35963,18.13629],[82.36325,18.13481],[82.36753,18.13716],[82.36875,18.14317],[82.37232,18.14816],[82.35912,18.1627],[82.35337,18.17169],[82.34617,18.17292],[82.33737,18.17218],[82.31545,18.18403],[82.31248,18.19135],[82.31354,18.19715],[82.31084,18.20409],[82.32489,18.21041],[82.32843,18.21608],[82.33706,18.2243],[82.33144,18.22513],[82.32441,18.23121],[82.32674,18.23638],[82.33653,18.24077],[82.33586,18.25],[82.33354,18.25107],[82.33336,18.25291],[82.33612,18.26117],[82.34005,18.26234],[82.34044,18.27223],[82.34467,18.28055],[82.35894,18.28146],[82.3659,18.27761],[82.3765,18.28068],[82.37831,18.28434],[82.38089,18.28544],[82.39234,18.29795],[82.39157,18.3098],[82.39506,18.31564],[82.39237,18.32648],[82.38466,18.32963],[82.37807,18.32706],[82.37509,18.32869],[82.36753,18.32371],[82.364,18.31846],[82.35791,18.31615],[82.3522,18.31735],[82.34948,18.31637],[82.33993,18.32296],[82.33318,18.33896],[82.33748,18.3281],[82.3405,18.32821],[82.34409,18.33079],[82.34694,18.32883],[82.36311,18.34422],[82.36449,18.35277],[82.36818,18.35386],[82.36988,18.35851],[82.37682,18.35984],[82.38555,18.36751],[82.38402,18.3845],[82.38607,18.38627],[82.38148,18.38964],[82.37962,18.4038],[82.37522,18.40634],[82.37093,18.41425],[82.36421,18.42154],[82.37574,18.43003],[82.382,18.43258],[82.38555,18.44083],[82.37999,18.43737],[82.38554,18.44083],[82.38768,18.44596],[82.39603,18.44917],[82.3968,18.45421],[82.40352,18.46422],[82.41497,18.47443],[82.42254,18.47805],[82.43743,18.49381],[82.43774,18.49576],[82.43414,18.49696],[82.43404,18.49857],[82.43715,18.50094],[82.43861,18.50682],[82.4431,18.50877],[82.44475,18.51409],[82.46098,18.5255],[82.46412,18.53287],[82.46838,18.53464],[82.47347,18.54258],[82.48275,18.54872],[82.48898,18.54934],[82.4919,18.54763],[82.4935,18.54364],[82.49234,18.54179],[82.484,18.54332],[82.48134,18.54061],[82.48395,18.53545],[82.48759,18.53261],[82.48627,18.52805],[82.49405,18.52455],[82.50433,18.51387],[82.51228,18.51805],[82.52028,18.51759],[82.52597,18.51632],[82.53216,18.51099],[82.52698,18.50588],[82.52966,18.5013],[82.52649,18.49629],[82.52789,18.49386],[82.53199,18.49243],[82.53327,18.48828],[82.5283,18.48305],[82.52785,18.48065],[82.53189,18.48049],[82.53419,18.47773],[82.53084,18.47303],[82.52477,18.4717],[82.51945,18.46722],[82.51942,18.4656],[82.52389,18.46349],[82.52834,18.46421],[82.52739,18.45966],[82.53325,18.45866],[82.53726,18.44643],[82.53956,18.4436],[82.54447,18.44938],[82.54134,18.45416],[82.54237,18.45763],[82.54876,18.45305],[82.55258,18.45504],[82.55482,18.45448],[82.55659,18.44982],[82.5614,18.44849],[82.56095,18.44518],[82.55652,18.44297],[82.55815,18.43966],[82.55058,18.4333],[82.55201,18.42857],[82.54574,18.42752],[82.54562,18.4224],[82.54141,18.42191],[82.5433,18.41402],[82.54719,18.41429],[82.54709,18.41261],[82.53553,18.40617],[82.54088,18.39943],[82.55218,18.39791],[82.55533,18.39363],[82.56243,18.39996],[82.571,18.39467],[82.57583,18.39623],[82.58387,18.38673],[82.58863,18.39163],[82.5948,18.38923],[82.59644,18.38297],[82.59952,18.37979],[82.60152,18.37937],[82.60529,18.38203],[82.60612,18.37567],[82.60322,18.37265],[82.60573,18.37005],[82.60599,18.36606],[82.62123,18.35971],[82.61452,18.35091],[82.60204,18.35228],[82.60288,18.34435],[82.60854,18.34004],[82.6112,18.33371],[82.60894,18.32713],[82.60125,18.32534],[82.59488,18.32888],[82.58847,18.31788],[82.58389,18.31976],[82.58131,18.31517],[82.58517,18.30846],[82.59606,18.31028],[82.59647,18.30639],[82.59866,18.30419],[82.59467,18.29822],[82.5952,18.29184],[82.59102,18.28978],[82.59419,18.28697],[82.59406,18.2847],[82.59215,18.28035],[82.58805,18.2803],[82.58779,18.27606],[82.59678,18.27437],[82.59691,18.26479],[82.60422,18.26469],[82.60721,18.2614],[82.61385,18.25842],[82.62353,18.24632],[82.62755,18.24458],[82.63187,18.23926],[82.63768,18.2367],[82.64863,18.245],[82.65249,18.25],[82.65095,18.251],[82.64712,18.26223],[82.64228,18.26377],[82.64279,18.27155],[82.64854,18.27287],[82.65224,18.28114],[82.64382,18.28801],[82.64072,18.29623],[82.64265,18.30203],[82.65119,18.30186],[82.65494,18.29699],[82.65742,18.29607],[82.66225,18.2983],[82.66677,18.29803],[82.67632,18.30656],[82.68018,18.30335],[82.68442,18.30359],[82.69195,18.30764],[82.69452,18.31228],[82.70166,18.31064],[82.70938,18.31318],[82.70856,18.31584],[82.71502,18.32252],[82.72491,18.32453],[82.73427,18.32024],[82.73605,18.32311],[82.74098,18.32261],[82.73831,18.32695],[82.74287,18.32999],[82.74785,18.32897],[82.75064,18.33092],[82.75518,18.33019],[82.7563,18.33331],[82.75919,18.33403],[82.7581,18.33763],[82.75969,18.33961],[82.7633,18.33891],[82.76482,18.33616],[82.76845,18.33806],[82.77112,18.33758],[82.77409,18.34032],[82.77639,18.34924],[82.79056,18.36319],[82.78876,18.3718],[82.78478,18.38041],[82.78265,18.38189],[82.79386,18.38602],[82.79146,18.39614],[82.79383,18.40135],[82.79954,18.40675],[82.79549,18.40909],[82.78688,18.41071],[82.78743,18.41917],[82.78289,18.42261],[82.78216,18.43079],[82.79538,18.43971],[82.80314,18.44925],[82.81564,18.4509],[82.82322,18.44726],[82.8238,18.4435],[82.83122,18.44229],[82.83595,18.43929],[82.83638,18.43709],[82.84584,18.43375],[82.84863,18.42372],[82.85242,18.4192],[82.85641,18.42544],[82.8713,18.41846],[82.8764,18.42163],[82.88156,18.42068],[82.895,18.4241],[82.89778,18.4035],[82.89072,18.3905],[82.89341,18.38701],[82.89419,18.38157],[82.90192,18.37407],[82.91089,18.37295],[82.91308,18.36848],[82.91786,18.37528],[82.9222,18.37542],[82.92603,18.36814],[82.93973,18.36082],[82.95373,18.36157],[82.96011,18.36641],[82.96699,18.35893],[82.97047,18.36001],[82.98318,18.36644],[82.98219,18.36812],[82.98811,18.37766],[82.98728,18.37884],[82.99027,18.3806],[82.99208,18.37856],[82.99683,18.38552],[83.00528,18.38276],[83.01179,18.38864],[83.01598,18.38705],[83.02192,18.3917],[83.02579,18.38693],[83.02951,18.38609],[83.03222,18.3835],[83.03923,18.38345],[83.04308,18.37937],[83.05449,18.37999],[83.07705,18.40335],[83.07684,18.4054],[83.06425,18.40941],[83.05744,18.41937],[83.0655,18.42299],[83.06731,18.43009],[83.0634,18.43207],[83.05998,18.43696],[83.05856,18.43668],[83.0508,18.43413],[83.04598,18.42667],[83.04253,18.42423],[83.04313,18.42596],[83.03776,18.43454],[83.04094,18.44079],[83.03668,18.4427],[83.03289,18.44796],[83.02461,18.44846],[83.02095,18.45624],[83.03073,18.46627],[83.03765,18.46862],[83.05511,18.48561],[83.05521,18.49566],[83.05797,18.49684],[83.06048,18.50205],[83.06401,18.50228],[83.07507,18.51457],[83.07701,18.52615],[83.08364,18.53106],[83.08927,18.53891],[83.09353,18.53984],[83.09504,18.54664],[83.08951,18.55299],[83.08381,18.55166],[83.08094,18.55402],[83.07885,18.55039],[83.07124,18.54976],[83.06193,18.54205],[83.05496,18.54398],[83.04535,18.54418],[83.03843,18.55587],[83.03315,18.56979],[83.02976,18.57351],[83.03127,18.57785],[83.03766,18.58102],[83.04008,18.58648],[83.0531,18.58813],[83.05279,18.60068],[83.04672,18.59875],[83.04444,18.59947],[83.02759,18.59257],[83.02379,18.58965],[83.0188,18.59347],[83.01356,18.59436],[83.01269,18.59936],[83.01501,18.60209],[83.01521,18.60544],[83.00047,18.60798],[82.99957,18.61953],[83.00575,18.62169],[83.0089,18.62685],[83.01963,18.63512],[83.01313,18.64605],[83.01702,18.65022],[83.02264,18.65122],[83.025,18.65441],[83.04423,18.65844],[83.05802,18.66531],[83.06278,18.68363],[83.07501,18.70126],[83.07137,18.70164],[83.07279,18.70554],[83.09261,18.72353],[83.09477,18.73138],[83.10169,18.73275],[83.10761,18.74706],[83.11242,18.75281],[83.12221,18.7575],[83.12363,18.76052],[83.12114,18.76584],[83.11515,18.76809],[83.13903,18.78536],[83.15181,18.77607],[83.15228,18.77269],[83.15648,18.76823],[83.16415,18.7669],[83.16505,18.76894],[83.17791,18.77086],[83.19319,18.75312],[83.20655,18.75144],[83.20801,18.74912],[83.20737,18.74576],[83.21269,18.73758],[83.21128,18.73254],[83.21245,18.73049],[83.21464,18.73337],[83.21741,18.74445],[83.22537,18.75091],[83.22772,18.75524],[83.22813,18.76102],[83.22235,18.77277],[83.22461,18.77509],[83.2346,18.77406],[83.24325,18.76828],[83.25339,18.76756],[83.26255,18.76976],[83.27135,18.76464],[83.28137,18.7746],[83.27527,18.7829],[83.28434,18.79788],[83.29787,18.8017],[83.30931,18.8095],[83.3194,18.80477],[83.33062,18.80635],[83.32814,18.81213],[83.32825,18.81808],[83.33796,18.82436],[83.34777,18.82711],[83.34934,18.83013],[83.35868,18.83493],[83.36394,18.84228],[83.36815,18.84406],[83.37044,18.84291],[83.37174,18.83902],[83.37519,18.83635],[83.37833,18.83066],[83.40413,18.84299],[83.40588,18.84252],[83.40437,18.84756],[83.40487,18.86191],[83.41475,18.87496],[83.41024,18.87432],[83.40703,18.87715],[83.39881,18.87796],[83.39183,18.88229],[83.39151,18.88695],[83.38353,18.89036],[83.37833,18.89695],[83.38465,18.90386],[83.3932,18.90763],[83.38503,18.91332],[83.38181,18.91389],[83.37512,18.90897],[83.36901,18.90809],[83.36239,18.91476],[83.35983,18.91471],[83.3617,18.91599],[83.35914,18.91688],[83.35749,18.92392],[83.35343,18.9306],[83.35248,18.94346],[83.36098,18.94083],[83.37015,18.94172],[83.36919,18.92986],[83.3706,18.92604],[83.37735,18.92561],[83.38202,18.92729],[83.38738,18.93298],[83.38303,18.93694],[83.37128,18.94265],[83.36838,18.9533],[83.36584,18.95694],[83.3684,18.96059],[83.36713,18.96301],[83.36154,18.96315],[83.35474,18.9673],[83.35092,18.96679],[83.34828,18.96038],[83.35086,18.9474],[83.35017,18.94327],[83.34385,18.94112],[83.34844,18.92629],[83.33522,18.92493],[83.33342,18.92621],[83.33392,18.92878],[83.3265,18.93198],[83.32486,18.93748],[83.32711,18.94462],[83.33784,18.94629],[83.33902,18.95278],[83.33374,18.95494],[83.33252,18.95767],[83.33482,18.96852],[83.33148,18.96908],[83.3283,18.96703],[83.31874,18.97341],[83.3176,18.98029],[83.31523,18.9832],[83.3159,18.98717],[83.31033,18.99568],[83.31065,18.99867],[83.31665,19.00126],[83.32237,18.99951],[83.32721,19.0024],[83.33126,18.99899],[83.33878,18.99701],[83.33636,19.00294],[83.33695,19.00597],[83.34003,19.00885],[83.34292,19.01814],[83.34802,19.01692],[83.35805,19.01938],[83.36748,19.01648],[83.36605,19.01287],[83.36695,19.01172],[83.36529,19.01018],[83.36703,19.00935],[83.36662,19.0061],[83.37261,19.00226],[83.38459,19.00126],[83.39469,19.00596],[83.39598,19.00954],[83.40047,19.0094],[83.40201,19.00628],[83.40422,19.00667],[83.4043,19.0046],[83.40955,19.00433],[83.41128,19.00026],[83.4141,19.00368],[83.41584,19.0005],[83.41706,19.00206],[83.41961,19.00026],[83.41999,18.99793],[83.41532,18.98918],[83.41964,18.98893],[83.42636,18.98501],[83.4292,18.98042],[83.4351,18.97586],[83.43888,18.97639],[83.44033,18.97162],[83.44589,18.96591],[83.44354,18.96095],[83.44586,18.95776],[83.46183,18.95478],[83.46474,18.96271],[83.46783,18.96455],[83.46981,18.96932],[83.46856,18.98037],[83.46418,18.9801],[83.46784,18.99108],[83.466,18.99355],[83.45527,18.99126],[83.45531,18.99683],[83.45066,19.00453],[83.44994,19.00966],[83.45157,19.00978],[83.45225,19.01259],[83.46152,19.01234],[83.47159,19.00723],[83.47968,19.00847],[83.48142,19.00979],[83.48251,19.01509],[83.47958,19.01771],[83.4794,19.02212],[83.48335,19.03355],[83.47072,19.04291],[83.47093,19.04864],[83.46783,19.05514],[83.46952,19.05765],[83.4692,19.0611],[83.46782,19.06316],[83.46229,19.06377],[83.4652,19.07101],[83.46495,19.07452],[83.4631,19.07597],[83.46627,19.0799],[83.47036,19.08014],[83.47299,19.07705],[83.47837,19.07927],[83.47646,19.08567],[83.47049,19.08712],[83.46971,19.08572],[83.46726,19.08769],[83.46798,19.09312],[83.47366,19.09527],[83.4834,19.09226],[83.48633,19.08755],[83.48183,19.08513],[83.48265,19.08134],[83.48084,19.0785],[83.48884,19.07335],[83.5006,19.06063],[83.50178,19.06589],[83.50555,19.06605],[83.51171,19.07032],[83.51099,19.06627],[83.51304,19.06068],[83.5168,19.05708],[83.51313,19.04838],[83.5193,19.03907],[83.51482,19.02846],[83.50847,19.03554],[83.49647,19.03547],[83.49747,19.03454],[83.49546,19.03185],[83.50094,19.02066],[83.50378,19.01873],[83.51624,19.01661],[83.52249,19.01207],[83.52474,19.01452],[83.52591,19.01284],[83.53457,19.01309],[83.53671,19.0095],[83.54149,19.02961],[83.53984,19.03347],[83.54173,19.04148],[83.54688,19.04372],[83.55168,19.05455],[83.55757,19.0562],[83.55541,19.05806],[83.55561,19.06336],[83.54853,19.07787],[83.54905,19.08052],[83.55444,19.08653],[83.56017,19.08707],[83.567,19.07174],[83.56338,19.07052],[83.56035,19.0645],[83.56342,19.05785],[83.57497,19.0614],[83.57977,19.06054],[83.58446,19.05757],[83.58405,19.06508],[83.58702,19.06936],[83.58471,19.08371],[83.58559,19.08656],[83.59295,19.09267],[83.60119,19.09491],[83.60307,19.09259],[83.61061,19.09606],[83.60341,19.11213],[83.59781,19.11881],[83.59913,19.13016],[83.60165,19.13553],[83.6047,19.13599],[83.60797,19.13969],[83.61596,19.13705],[83.61876,19.14132],[83.6208,19.14168],[83.62229,19.14782],[83.62747,19.15065],[83.62779,19.15665],[83.62603,19.16267],[83.63392,19.15946],[83.63768,19.15316],[83.63441,19.15183],[83.63494,19.14966],[83.6317,19.14084],[83.63701,19.13148],[83.64212,19.13192],[83.64675,19.12981],[83.65271,19.13156],[83.65496,19.12962],[83.65436,19.12213],[83.64964,19.12326],[83.64704,19.1184],[83.65045,19.11739],[83.65105,19.10935],[83.65557,19.1088],[83.65758,19.10255],[83.66282,19.09895],[83.66389,19.09219],[83.66038,19.08442],[83.66102,19.08114],[83.66436,19.07571],[83.67463,19.07208],[83.67659,19.0652],[83.68525,19.05853],[83.6912,19.0473],[83.69302,19.03861],[83.69853,19.03188],[83.70014,19.02545],[83.70462,19.02341],[83.70969,19.02464],[83.71616,19.02368],[83.72447,19.02054],[83.73002,19.02196],[83.72389,19.01025],[83.72121,19.00931],[83.71807,19.01043],[83.71031,19.00718],[83.70883,19.00559],[83.70948,19.00264],[83.71362,18.99739],[83.7142,18.99299],[83.71817,18.99342],[83.73301,18.98771],[83.73246,18.97991],[83.7344,18.96918],[83.73879,18.96036],[83.74054,18.95007],[83.74681,18.94358],[83.74766,18.93708],[83.75386,18.92513],[83.76317,18.92728],[83.76939,18.9143],[83.77184,18.91465],[83.77824,18.91136],[83.78789,18.91587],[83.78505,18.92379],[83.78446,18.9336],[83.77885,18.93666],[83.77622,18.94525],[83.77258,18.94432],[83.76965,18.95476],[83.7639,18.95293],[83.76163,18.95046],[83.75896,18.95061],[83.75407,18.96717],[83.75531,18.97132],[83.74807,18.97404],[83.74485,18.98798],[83.74753,18.99591],[83.75155,18.99868],[83.755,18.9986],[83.76065,19.0026],[83.76281,18.99849],[83.76486,19.0054],[83.7717,19.00808],[83.78198,19.00839],[83.78128,19.01394],[83.77806,19.01547],[83.77791,19.01753],[83.78052,19.01862],[83.79469,19.01798],[83.79348,19.00824],[83.79512,19.00368],[83.79686,19.00092],[83.80893,18.99228],[83.81052,18.98522],[83.82176,18.96023],[83.81901,18.9452],[83.81973,18.93926],[83.82894,18.9306],[83.82658,18.91628],[83.83071,18.91475],[83.84032,18.91851],[83.8434,18.91716],[83.84579,18.91358],[83.8489,18.8999],[83.84368,18.87627],[83.84601,18.8691],[83.85137,18.85956],[83.8687,18.85076],[83.88773,18.83096],[83.89116,18.82509],[83.89316,18.81447],[83.89613,18.81564],[83.89963,18.8244],[83.90476,18.8274],[83.91199,18.82596],[83.9158,18.82796],[83.91767,18.8243],[83.92263,18.82359],[83.92328,18.82183],[83.92634,18.82243],[83.93165,18.81588],[83.93463,18.81628],[83.93465,18.81815],[83.93754,18.81816],[83.9381,18.81585],[83.94232,18.81546],[83.94174,18.80833],[83.95016,18.80518],[83.95539,18.80649],[83.96096,18.81408],[83.96281,18.81289],[83.96509,18.81462],[83.97785,18.81417],[83.98686,18.81005],[83.98845,18.8109],[83.98721,18.8115],[83.99385,18.81361],[83.99567,18.81127],[84.00107,18.81139],[84.00522,18.80874],[84.0099,18.81169],[84.01573,18.80875],[84.01744,18.8128],[84.01547,18.81706],[84.01917,18.81645],[84.01912,18.81792],[84.02252,18.8159],[84.02522,18.81705],[84.02483,18.81548],[84.03296,18.8116],[84.03778,18.81305],[84.03848,18.81643],[84.04561,18.81288],[84.04426,18.80606],[84.04599,18.80506],[84.04669,18.80161],[84.0511,18.79908],[84.05988,18.79918],[84.05728,18.79276],[84.06137,18.79234],[84.06163,18.79073],[84.05727,18.78937],[84.06056,18.78489],[84.05991,18.78242],[84.06201,18.78138],[84.06799,18.78231],[84.06922,18.77815],[84.07373,18.77582],[84.07642,18.76445],[84.08034,18.76535],[84.08117,18.76419],[84.08523,18.76649],[84.08475,18.76427],[84.08959,18.76399],[84.08946,18.75678],[84.09688,18.76054],[84.10327,18.76027],[84.11349,18.76687],[84.11771,18.76554],[84.12238,18.76794],[84.12468,18.76394],[84.1293,18.76533],[84.13256,18.7606],[84.1374,18.76124],[84.14199,18.7643],[84.13891,18.7688],[84.14039,18.77727],[84.14622,18.77716],[84.15176,18.78354],[84.15651,18.78458],[84.15843,18.78289],[84.15926,18.78785],[84.1635,18.7893],[84.16559,18.78776],[84.16972,18.78822],[84.17229,18.7829],[84.17577,18.78008],[84.18271,18.78196],[84.18994,18.7777],[84.19468,18.78332],[84.19342,18.78759],[84.19534,18.79168],[84.1981,18.79081],[84.20011,18.79221],[84.20045,18.79049],[84.20758,18.78915],[84.21808,18.79011],[84.21891,18.79119],[84.21377,18.794],[84.2144,18.79542],[84.21919,18.79492],[84.22185,18.79783],[84.2239,18.79709],[84.22631,18.79877],[84.23225,18.79715],[84.23383,18.79477],[84.23674,18.79855],[84.2408,18.79714],[84.24128,18.79138],[84.24358,18.79152],[84.24314,18.78862],[84.24903,18.78579],[84.25592,18.78799],[84.26097,18.78322],[84.26812,18.78456],[84.28649,18.7923],[84.28877,18.79842],[84.28866,18.80466],[84.30499,18.79826],[84.30592,18.79423],[84.30898,18.79414],[84.31259,18.79037],[84.32126,18.78649],[84.32493,18.79044],[84.32454,18.79484],[84.32659,18.79879],[84.33645,18.79844],[84.33613,18.80107],[84.3381,18.80045],[84.33901,18.80226],[84.34455,18.8018],[84.34183,18.80898],[84.33692,18.81156],[84.33424,18.81519],[84.33105,18.81501],[84.33106,18.81785],[84.33437,18.81771],[84.3341,18.81996],[84.33932,18.81969],[84.34266,18.82222],[84.34941,18.82006],[84.35125,18.8227],[84.35201,18.82711],[84.35066,18.82775],[84.35211,18.83149],[84.3596,18.83121],[84.36385,18.83712],[84.36126,18.8389],[84.36123,18.84216],[84.34499,18.84905],[84.34163,18.85426],[84.33306,18.86051],[84.33094,18.86769],[84.3256,18.87609],[84.33053,18.88322],[84.33681,18.89021],[84.35605,18.86935],[84.35779,18.8693],[84.36206,18.86088],[84.3645,18.86133],[84.3665,18.86402],[84.3699,18.86084],[84.37423,18.86139],[84.37733,18.86451],[84.37899,18.8717],[84.3842,18.87414],[84.37882,18.87815],[84.37259,18.87807],[84.36255,18.88715],[84.36027,18.89455],[84.36495,18.88969],[84.37068,18.88662],[84.37427,18.88652],[84.38256,18.88142],[84.38335,18.88286],[84.38148,18.88643],[84.38811,18.88424],[84.39213,18.8763],[84.39537,18.87977],[84.39518,18.88202],[84.39761,18.88204],[84.39833,18.88368],[84.39752,18.89028],[84.39596,18.89307],[84.39033,18.89582],[84.38515,18.89592],[84.38505,18.89783],[84.37814,18.90329],[84.37893,18.90422],[84.38556,18.90036],[84.39353,18.90433],[84.39412,18.90081],[84.40009,18.89531],[84.40971,18.89512],[84.41288,18.89717],[84.41802,18.8972],[84.42134,18.90116],[84.42219,18.90541],[84.42047,18.91089],[84.41676,18.9146],[84.41857,18.91732],[84.42053,18.91767],[84.42443,18.91035],[84.42839,18.90902],[84.43111,18.91666],[84.43802,18.92046],[84.43947,18.92708],[84.43857,18.93157],[84.42768,18.93209],[84.43103,18.93585],[84.42422,18.94725],[84.42601,18.95275],[84.43243,18.95909],[84.432,18.96229],[84.42941,18.96486],[84.43107,18.96919],[84.43734,18.97037],[84.44168,18.96865],[84.44605,18.97193],[84.44505,18.97324],[84.44773,18.97557],[84.45243,18.97598],[84.44468,18.98326],[84.4433,18.9905],[84.43222,18.99505],[84.4325,19.00655],[84.42824,19.00767],[84.42406,19.0132],[84.42201,19.01275],[84.42109,19.02199],[84.42573,19.01921],[84.42458,19.01395],[84.4316,19.01348],[84.43712,19.00713],[84.44056,19.00741],[84.44161,19.00353],[84.44483,19.00445],[84.44961,19.003],[84.45438,19.0],[84.45582,18.99733],[84.46036,18.99678],[84.46059,18.99306],[84.46474,18.99161],[84.46489,18.99373],[84.46678,18.99388],[84.47027,18.99142],[84.47434,18.99176],[84.47603,18.98804],[84.47889,18.98846],[84.48293,19.00487],[84.48264,19.01657],[84.48502,19.01924],[84.48877,19.01951],[84.49437,19.029],[84.50047,19.03317],[84.50532,19.03386],[84.51173,19.04024],[84.51638,19.04843],[84.52412,19.0487],[84.52613,19.04604],[84.54327,19.05505],[84.5566,19.05658],[84.57286,19.07372],[84.57388,19.07327],[84.57158,19.06958],[84.5747,19.06757],[84.57663,19.06761],[84.58295,19.07318],[84.58338,19.06815],[84.58046,19.06002],[84.58182,19.05891],[84.58152,19.05302],[84.58305,19.04924],[84.57868,19.04566],[84.57729,19.04047],[84.58329,19.04248],[84.58126,19.03752],[84.58167,19.03009],[84.59415,19.02226],[84.59568,19.02555],[84.60127,19.02528],[84.60198,19.03244],[84.60585,19.0417],[84.61427,19.05194],[84.61281,19.05353],[84.61343,19.05657],[84.61761,19.05453],[84.62074,19.05614],[84.62242,19.0601],[84.61705,19.06093],[84.61831,19.06587],[84.62782,19.06621],[84.63064,19.0646],[84.62987,19.0617],[84.63101,19.06042],[84.63711,19.05998],[84.64161,19.06727],[84.65394,19.06754],[84.65467,19.0659],[84.65796,19.06556],[84.65758,19.06431],[84.66113,19.06304],[84.66308,19.07461],[84.66948,19.07438],[84.67085,19.07633],[84.66347,19.0824],[84.66388,19.08757],[84.65868,19.09196],[84.65897,19.09443],[84.65319,19.09309],[84.64704,19.09626],[84.64424,19.09291],[84.63684,19.08974],[84.63678,19.08595],[84.63433,19.08867],[84.6312,19.0821],[84.63193,19.08656],[84.63042,19.08439],[84.62549,19.08491],[84.626,19.08767],[84.62411,19.08831],[84.62501,19.09166],[84.62268,19.09386],[84.6249,19.09564],[84.62548,19.09909],[84.61965,19.1044],[84.61867,19.10008],[84.60955,19.10078],[84.61128,19.10685],[84.60841,19.10753],[84.60552,19.11754],[84.60186,19.12318],[84.60285,19.12662],[84.59601,19.12879],[84.59553,19.13245],[84.60328,19.13193],[84.6072,19.12918],[84.61416,19.12789],[84.62978,19.12668],[84.63102,19.12968],[84.64363,19.12971],[84.64408,19.13372],[84.65426,19.12937],[84.65995,19.1315],[84.66732,19.12986],[84.66669,19.13184],[84.66974,19.13794],[84.67166,19.14822],[84.67102,19.15623],[84.66793,19.15417],[84.66874,19.16299],[84.67091,19.16604],[84.67252,19.16455],[84.67327,19.16609],[84.67776,19.16678],[84.68073,19.16528],[84.68435,19.15999],[84.6929,19.16121],[84.69622,19.15945],[84.69692,19.16076],[84.7034,19.16117],[84.70473,19.1593],[84.70998,19.15967],[84.71485,19.15232],[84.71052,19.14646],[84.70118,19.14706],[84.70005,19.14439],[84.70126,19.14462],[84.70036,19.14297],[84.70612,19.14103],[84.69784,19.12644],[84.70252,19.12586],[84.70144,19.12219],[84.7028,19.11786],[84.7082,19.11572],[84.75455,19.08217],[84.76627,19.07814],[84.77965,19.10161],[84.79364,19.12086],[84.80389,19.14521],[84.8178,19.1656],[84.85817,19.21051],[84.93021,19.27621],[84.9836,19.31783],[85.07932,19.37435],[85.09202,19.38806],[85.0938,19.39861],[85.10555,19.41377],[85.16534,19.46157],[85.29348,19.55153],[85.32713,19.57303],[85.38101,19.6034],[85.43051,19.628],[85.49947,19.65711],[85.63703,19.7255],[85.66004,19.73506],[85.66782,19.73686],[85.67799,19.74385],[85.7508,19.76852],[85.78103,19.78094],[85.93435,19.8249],[86.05803,19.84985],[86.14374,19.87351],[86.22371,19.89885],[86.28123,19.92918],[86.30962,19.94127],[86.3295,19.94618],[86.35624,19.94714],[86.38944,19.95528],[86.40854,19.97005],[86.4116,19.97575],[86.39751,19.96951],[86.39135,19.96373],[86.38409,19.9598],[86.38216,19.95943],[86.37977,19.96162],[86.378,19.96683],[86.38461,19.97609],[86.38965,19.97668],[86.39007,19.98123],[86.39352,19.98216],[86.40438,19.99183],[86.41402,19.99732],[86.41404,20.01065],[86.42603,20.03516],[86.43395,20.04635],[86.43396,20.05214],[86.4769,20.09735],[86.49773,20.1268],[86.51266,20.15878],[86.52383,20.17345],[86.53909,20.18648],[86.59557,20.22446],[86.6565,20.25427],[86.67418,20.25987],[86.68019,20.25994],[86.67212,20.2625],[86.67276,20.26575],[86.67119,20.26928],[86.66788,20.27159],[86.66925,20.27572],[86.67193,20.27488],[86.67324,20.27665],[86.67551,20.27511],[86.67364,20.26996],[86.67568,20.26711],[86.67945,20.26757],[86.67984,20.26422],[86.68116,20.27107],[86.72233,20.29028],[86.74753,20.30697],[86.75,20.30891],[86.75097,20.31284],[86.77507,20.33126],[86.78252,20.34088],[86.77812,20.34455],[86.79806,20.36397],[86.79433,20.36922],[86.7915,20.36481],[86.77879,20.35662],[86.78185,20.36586],[86.78894,20.37462],[86.79077,20.36577],[86.79727,20.37576],[86.79243,20.37935],[86.78974,20.37592],[86.78707,20.3785],[86.7886,20.38067],[86.7856,20.38144],[86.78544,20.38015],[86.78445,20.38125],[86.78091,20.37862],[86.78243,20.38573],[86.77657,20.40505],[86.76202,20.39373],[86.75507,20.38448],[86.74645,20.37861],[86.74472,20.37845],[86.75043,20.38384],[86.75124,20.38767],[86.7474,20.38755],[86.74332,20.38044],[86.74587,20.39161],[86.73761,20.3899],[86.74152,20.39591],[86.73924,20.40081],[86.73185,20.39549],[86.73075,20.39255],[86.72438,20.39385],[86.73358,20.4148],[86.73332,20.42216],[86.72857,20.44069],[86.73336,20.46159],[86.74074,20.4712],[86.74186,20.46608],[86.74565,20.46804],[86.75941,20.50038],[86.76579,20.50373],[86.77525,20.52075],[86.78937,20.53393],[86.80844,20.54608],[86.87637,20.59603],[86.9967,20.67293],[87.01653,20.68796],[87.0258,20.69309],[87.03236,20.70005],[87.05343,20.71227],[87.05825,20.71676],[87.057,20.7173],[87.03457,20.70471],[87.02941,20.70409],[87.02614,20.70191],[87.00004,20.69784],[87.00003,20.70149],[87.00552,20.70279],[86.99999,20.70381],[86.99654,20.71216],[87.00201,20.71832],[87.00562,20.73461],[86.99745,20.75073],[86.99248,20.77023],[86.97656,20.77188],[86.96422,20.76728],[86.94416,20.76648],[86.94204,20.77296],[86.95048,20.77415],[86.95022,20.77639],[86.96126,20.78345],[86.96741,20.79139],[86.96879,20.79914],[86.97636,20.81832],[86.98134,20.84561],[86.98088,20.85705],[86.96677,20.873],[86.96216,20.88425],[86.93928,20.92076],[86.93209,20.93764],[86.91835,20.95949],[86.91006,20.97627],[86.89382,21.01334],[86.86994,21.04636],[86.85076,21.08739],[86.84182,21.12483],[86.84154,21.17508],[86.84476,21.18762],[86.85629,21.2056],[86.85481,21.21051],[86.84208,21.20419],[86.8326,21.20609],[86.82935,21.20865],[86.83241,21.20814],[86.83384,21.20992],[86.83353,21.2139],[86.83151,21.21497],[86.84368,21.23243],[86.8522,21.24794],[86.8556,21.25854],[86.88571,21.29894],[86.89006,21.30755],[86.89251,21.31844],[86.89474,21.31589],[86.8975,21.31609],[86.90991,21.32831],[86.9139,21.33458],[86.91175,21.33652],[86.91245,21.33744],[86.92002,21.34094],[86.92406,21.34487],[86.94809,21.37405],[86.94679,21.37558],[86.95098,21.37744],[86.97294,21.40005],[86.97977,21.40746],[86.97928,21.40976],[86.98874,21.41439],[86.99488,21.42109],[86.99773,21.42094],[87.02837,21.44214],[87.05225,21.46127],[87.05556,21.46523],[87.05631,21.46896],[87.07435,21.4714],[87.09754,21.49309],[87.10787,21.5],[87.11371,21.50698],[87.11523,21.51344],[87.1185,21.5171],[87.12199,21.51322],[87.13087,21.51272],[87.16055,21.52947],[87.18687,21.53932],[87.1963,21.54126],[87.19963,21.54474],[87.19948,21.54656],[87.20339,21.54758],[87.204,21.54562],[87.20614,21.54528],[87.24146,21.55175],[87.24265,21.55396],[87.25,21.55678],[87.25171,21.55523],[87.29427,21.55744],[87.3386,21.55652],[87.36188,21.55776],[87.37199,21.56078],[87.4068,21.58271],[87.4084,21.58489],[87.40758,21.58866],[87.43608,21.59713],[87.44772,21.60312],[87.45054,21.60224],[87.48481,21.61246],[87.48453,21.62496],[87.48601,21.63224],[87.48061,21.63321],[87.48118,21.63602],[87.47517,21.64399],[87.47647,21.64693],[87.47196,21.64806],[87.47256,21.65247],[87.46126,21.65037],[87.46037,21.6514],[87.4605,21.65544],[87.46248,21.65844],[87.46128,21.66264],[87.4672,21.66413],[87.46673,21.67857],[87.46945,21.67873],[87.46861,21.68309],[87.47111,21.68389],[87.47084,21.68858],[87.46959,21.68935],[87.47198,21.69065],[87.47123,21.69618],[87.47363,21.69711],[87.4722,21.69815],[87.47307,21.69914],[87.47149,21.69869],[87.47194,21.70244],[87.47018,21.70533],[87.4724,21.70734],[87.47359,21.71457],[87.47123,21.71741],[87.46741,21.71868],[87.46346,21.72538],[87.46386,21.72832],[87.46709,21.72757],[87.46918,21.73252],[87.44478,21.73403],[87.44529,21.7387],[87.45319,21.7378],[87.45432,21.73929],[87.44978,21.74328],[87.44543,21.74379],[87.44723,21.74662],[87.44485,21.74943],[87.44558,21.76804],[87.44401,21.76923],[87.43539,21.77067],[87.4315,21.76931],[87.42459,21.77158],[87.42232,21.76982],[87.41551,21.76949],[87.40413,21.77148],[87.40119,21.76743],[87.39775,21.76658],[87.39553,21.76713],[87.39542,21.77094],[87.39148,21.77096],[87.39128,21.77241],[87.39397,21.7726],[87.39343,21.77621],[87.38506,21.77677],[87.38085,21.77544],[87.37854,21.77277],[87.37401,21.77281],[87.37388,21.76511],[87.36966,21.76543],[87.37302,21.77371],[87.37183,21.77876],[87.3594,21.78259],[87.35915,21.78548],[87.35566,21.78639],[87.35682,21.78945],[87.35552,21.79217],[87.34732,21.79296],[87.33857,21.78476],[87.33603,21.79354],[87.33181,21.79382],[87.32954,21.79057],[87.32544,21.79202],[87.31946,21.79072],[87.31894,21.79462],[87.32164,21.79767],[87.31653,21.79632],[87.31518,21.79392],[87.314,21.79555],[87.31066,21.79385],[87.30963,21.79892],[87.29838,21.80121],[87.29808,21.80487],[87.29589,21.80529],[87.29698,21.81155],[87.29059,21.81132],[87.28869,21.80559],[87.28414,21.80279],[87.28272,21.80276],[87.28285,21.80449],[87.27738,21.80501],[87.27376,21.81029],[87.27601,21.81117],[87.27519,21.81697],[87.2639,21.81858],[87.2642,21.82325],[87.26906,21.82343],[87.27088,21.82706],[87.26852,21.82949],[87.26501,21.83007],[87.26409,21.83562],[87.26542,21.83868],[87.26088,21.84074],[87.25849,21.84408],[87.25954,21.84921],[87.24903,21.85323],[87.2478,21.8609],[87.2514,21.86886],[87.25232,21.87711],[87.24225,21.89247],[87.23426,21.90105],[87.23698,21.9078],[87.2492,21.91515],[87.24977,21.91835],[87.24511,21.92541],[87.24948,21.93598],[87.23903,21.94097],[87.23146,21.95728],[87.22397,21.95684],[87.22279,21.95871],[87.21679,21.96027],[87.21409,21.96357],[87.2106,21.96436],[87.20868,21.96208],[87.20309,21.9629],[87.1995,21.95979],[87.19681,21.95955],[87.17763,21.96964],[87.17041,21.97994],[87.1682,21.97128],[87.16199,21.96761],[87.1636,21.96701],[87.16233,21.96168],[87.16479,21.9609],[87.16066,21.95227],[87.16262,21.94891],[87.1611,21.94398],[87.16328,21.9389],[87.1614,21.93492],[87.15281,21.93322],[87.14155,21.92402],[87.12464,21.92601],[87.11405,21.92432],[87.11282,21.92244],[87.10692,21.92232],[87.10235,21.91506],[87.0971,21.91394],[87.09057,21.90107],[87.09462,21.89829],[87.09885,21.89072],[87.09519,21.88062],[87.09793,21.86692],[87.08426,21.86812],[87.07929,21.86595],[87.07396,21.86724],[87.06131,21.86587],[87.03302,21.87038],[87.03011,21.87448],[87.02608,21.87568],[87.02748,21.87974],[87.0251,21.88109],[87.02557,21.88689],[87.02293,21.89231],[87.00938,21.89978],[87.00468,21.91013],[86.99972,21.91325],[87.00356,21.92049],[87.00145,21.92456],[87.00463,21.92572],[87.00583,21.93753],[87.00943,21.94789],[87.01284,21.9496],[87.02123,21.97267],[87.03035,21.98534],[87.031,21.99705],[87.0274,22.00266],[87.02234,22.01949],[87.0267,22.03709],[87.01906,22.04178],[87.0144,22.04768],[87.00588,22.04872],[86.99776,22.05403],[86.99314,22.05525],[86.97175,22.07239],[86.97103,22.07834],[86.96782,22.08013],[86.96471,22.08574],[86.95796,22.08855],[86.94732,22.0858],[86.93429,22.09048],[86.90585,22.09193],[86.87114,22.09964],[86.86413,22.09935],[86.86022,22.10233],[86.85015,22.10378],[86.84917,22.1],[86.84662,22.10046],[86.84363,22.09631],[86.83374,22.0987],[86.83465,22.10426],[86.82462,22.11892],[86.81892,22.11664],[86.80641,22.11971],[86.80997,22.12741],[86.80479,22.13033],[86.80142,22.12924],[86.79941,22.13037],[86.80229,22.13282],[86.80374,22.13871],[86.80201,22.15071],[86.79385,22.15748],[86.78841,22.15777],[86.78664,22.1538],[86.77964,22.15365],[86.76499,22.14951],[86.73588,22.14943],[86.7277,22.14718],[86.71971,22.14728],[86.71789,22.1658],[86.71921,22.16704],[86.7193,22.17304],[86.71605,22.18172],[86.71637,22.18632],[86.72122,22.18939],[86.71889,22.19905],[86.72496,22.21802],[86.72086,22.22041],[86.71385,22.22005],[86.70794,22.2233],[86.70346,22.22118],[86.68434,22.22241],[86.67531,22.22925],[86.67239,22.24022],[86.66959,22.24254],[86.66624,22.24162],[86.66082,22.23672],[86.65425,22.23627],[86.6513,22.24438],[86.65466,22.25073],[86.64951,22.26353],[86.64673,22.26536],[86.64351,22.26466],[86.64413,22.26867],[86.63971,22.26551],[86.638,22.2711],[86.63218,22.27323],[86.62731,22.26951],[86.62579,22.27353],[86.62177,22.27704],[86.61048,22.28335],[86.60352,22.28207],[86.59976,22.27887],[86.59308,22.27856],[86.59392,22.28204],[86.59272,22.28544],[86.58793,22.28999],[86.58739,22.29441],[86.58506,22.29536],[86.58225,22.30165],[86.57681,22.30112],[86.57686,22.29556],[86.57198,22.29618],[86.57088,22.30019],[86.56887,22.30144],[86.56169,22.30172],[86.5574,22.29832],[86.55407,22.29847],[86.54849,22.30136],[86.54386,22.30721],[86.54074,22.30824],[86.53935,22.30476],[86.53276,22.30096],[86.52545,22.30761],[86.52577,22.31103],[86.52319,22.31473],[86.52783,22.31549],[86.52709,22.3235],[86.52169,22.32342],[86.50818,22.32786],[86.50748,22.33465],[86.50357,22.33676],[86.50212,22.34359],[86.49678,22.34723],[86.49414,22.34566],[86.49289,22.34708],[86.48726,22.34768],[86.48346,22.33813],[86.47147,22.33578],[86.46819,22.3304],[86.46228,22.32982],[86.46362,22.32875],[86.46195,22.32611],[86.45292,22.32532],[86.44527,22.32892],[86.44307,22.32626],[86.44296,22.31767],[86.44461,22.3125],[86.44229,22.30681],[86.43939,22.30358],[86.43034,22.30746],[86.42681,22.31758],[86.40828,22.32097],[86.37708,22.34163],[86.36642,22.34429],[86.35755,22.34977],[86.35761,22.35423],[86.35016,22.36429],[86.34028,22.37292],[86.32852,22.3778],[86.32116,22.38542],[86.32063,22.38902],[86.32271,22.39264],[86.32082,22.39741],[86.30644,22.40961],[86.30745,22.41531],[86.30264,22.4222],[86.29633,22.42403],[86.29303,22.42668],[86.2813,22.44866],[86.26846,22.44217],[86.26394,22.44534],[86.2566,22.44541],[86.23725,22.45259],[86.22467,22.45252],[86.2174,22.46261],[86.22258,22.46725],[86.21388,22.46644],[86.20793,22.47349],[86.20029,22.4718],[86.17056,22.48138],[86.16047,22.48255],[86.15632,22.48036],[86.15028,22.48021],[86.15033,22.48335],[86.13373,22.48713],[86.12375,22.48861],[86.11663,22.487],[86.10275,22.50024],[86.10024,22.50813],[86.09715,22.51033],[86.09487,22.5195],[86.07925,22.53755],[86.07546,22.54411],[86.06843,22.54987],[86.06487,22.55549],[86.05131,22.56248],[86.04544,22.56751]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-PB","area_level":"State","area_name":"Punjab","geometry_source":"SOI_States","same_as":"LGD/3/State"},"geometry":{"type":"Polygon","coordinates":[[[75.84365,32.50341],[75.83903,32.51026],[75.83579,32.51156],[75.83225,32.51072],[75.83425,32.50767],[75.83376,32.50373],[75.82616,32.50388],[75.82632,32.49999],[75.82202,32.4935],[75.8136,32.48845],[75.80051,32.48513],[75.77694,32.46512],[75.76273,32.45999],[75.75934,32.46052],[75.74902,32.45408],[75.74151,32.45515],[75.72979,32.4532],[75.72884,32.44767],[75.72661,32.44481],[75.7287,32.43911],[75.73434,32.43912],[75.73714,32.43498],[75.74247,32.43363],[75.7438,32.4316],[75.73815,32.42981],[75.72989,32.4329],[75.72775,32.43168],[75.7275,32.4294],[75.73199,32.42499],[75.73187,32.42256],[75.72269,32.40938],[75.72276,32.4056],[75.71496,32.40796],[75.71134,32.41156],[75.70128,32.39944],[75.68725,32.39025],[75.67981,32.38997],[75.67549,32.39386],[75.6731,32.39392],[75.64652,32.38742],[75.63457,32.37991],[75.61193,32.37686],[75.59531,32.37704],[75.55978,32.35698],[75.55777,32.35384],[75.55033,32.34875],[75.53929,32.33522],[75.53766,32.3259],[75.54284,32.3216],[75.54189,32.31559],[75.54331,32.3092],[75.54221,32.30381],[75.53953,32.30022],[75.53933,32.29217],[75.53683,32.28311],[75.53224,32.27783],[75.52604,32.27749],[75.52618,32.27601],[75.52092,32.27724],[75.52102,32.2793],[75.51866,32.27971],[75.51839,32.28165],[75.50919,32.28399],[75.50393,32.29132],[75.50548,32.29669],[75.51329,32.30711],[75.51153,32.30859],[75.50447,32.31269],[75.50332,32.31103],[75.48639,32.31663],[75.48192,32.32029],[75.48566,32.32364],[75.48151,32.33517],[75.48447,32.33758],[75.48614,32.33657],[75.48807,32.33963],[75.49494,32.34113],[75.4891,32.34556],[75.48649,32.34473],[75.48633,32.34197],[75.47894,32.33849],[75.47505,32.33814],[75.47504,32.33993],[75.46913,32.33863],[75.47187,32.33286],[75.46597,32.32917],[75.46965,32.32779],[75.46778,32.3246],[75.4621,32.32706],[75.44951,32.32382],[75.44813,32.32604],[75.44496,32.32121],[75.44049,32.31802],[75.43161,32.31666],[75.42999,32.315],[75.41843,32.32004],[75.41051,32.32862],[75.40662,32.32889],[75.40369,32.32688],[75.40219,32.33005],[75.39939,32.33002],[75.39448,32.32693],[75.38029,32.33399],[75.37654,32.33431],[75.37453,32.33732],[75.37068,32.33424],[75.36312,32.33294],[75.36199,32.3341],[75.36348,32.33612],[75.36087,32.33492],[75.35537,32.3367],[75.35574,32.3383],[75.34928,32.34526],[75.3412,32.34548],[75.34072,32.33765],[75.33894,32.33564],[75.3359,32.33694],[75.33543,32.33016],[75.33148,32.32672],[75.33771,32.32184],[75.33661,32.31661],[75.33275,32.31603],[75.33007,32.31256],[75.33499,32.3109],[75.32404,32.30251],[75.3205,32.29739],[75.35024,32.28986],[75.34371,32.27855],[75.37148,32.27961],[75.37788,32.27354],[75.37858,32.27031],[75.38186,32.26895],[75.38069,32.26603],[75.37434,32.26589],[75.37084,32.25756],[75.3705,32.24246],[75.37419,32.24143],[75.37243,32.22605],[75.37156,32.22467],[75.3686,32.22623],[75.36584,32.22392],[75.36547,32.21994],[75.35739,32.21806],[75.34213,32.21703],[75.33671,32.21955],[75.33138,32.21958],[75.32418,32.21109],[75.31638,32.20804],[75.32012,32.20411],[75.31194,32.19938],[75.31033,32.1946],[75.31368,32.18938],[75.31844,32.18744],[75.31637,32.18105],[75.32242,32.1795],[75.31391,32.17211],[75.30678,32.16901],[75.29959,32.15659],[75.2994,32.15331],[75.28782,32.15283],[75.28535,32.15149],[75.27726,32.13697],[75.28345,32.13189],[75.27936,32.11784],[75.27187,32.1127],[75.26273,32.11185],[75.26159,32.11052],[75.26613,32.10892],[75.26645,32.10748],[75.26131,32.10138],[75.24798,32.10095],[75.24511,32.09971],[75.24028,32.09107],[75.23142,32.09161],[75.22924,32.0933],[75.23544,32.1035],[75.22696,32.10678],[75.2262,32.10341],[75.2232,32.10241],[75.2237,32.09816],[75.21773,32.10341],[75.22026,32.10773],[75.21583,32.1211],[75.20246,32.12024],[75.20568,32.10255],[75.2037,32.09927],[75.20405,32.09667],[75.19789,32.09861],[75.19677,32.08604],[75.1985,32.08267],[75.18916,32.08218],[75.17928,32.07623],[75.17424,32.06747],[75.1662,32.07154],[75.15767,32.08175],[75.14242,32.08016],[75.12291,32.08138],[75.12026,32.07857],[75.12084,32.07537],[75.11747,32.07543],[75.11315,32.07186],[75.10857,32.07162],[75.10668,32.06958],[75.10891,32.06473],[75.1049,32.05857],[75.10171,32.05945],[75.09767,32.06622],[75.09121,32.07184],[75.09022,32.06944],[75.09158,32.06583],[75.08403,32.06003],[75.07301,32.05968],[75.0689,32.06352],[75.0715,32.06558],[75.0687,32.06719],[75.06413,32.06559],[75.06801,32.06238],[75.06201,32.05527],[75.05873,32.05278],[75.05376,32.05432],[75.05056,32.05279],[75.0519,32.05142],[75.0407,32.04268],[75.03626,32.04512],[75.03391,32.05067],[75.02385,32.04767],[75.02157,32.04859],[75.01889,32.04703],[75.01787,32.04191],[75.01662,32.04291],[75.01236,32.03575],[75.00478,32.03757],[75.00277,32.04361],[75.00111,32.04116],[74.98524,32.04242],[74.9829,32.04025],[74.97159,32.04262],[74.97806,32.048],[74.97391,32.05348],[74.95284,32.06021],[74.95193,32.05833],[74.94821,32.05935],[74.94941,32.06231],[74.94809,32.06308],[74.92796,32.06646],[74.92519,32.06645],[74.91892,32.06252],[74.91756,32.05812],[74.91258,32.05635],[74.91274,32.05403],[74.90477,32.05022],[74.89158,32.05508],[74.88988,32.05521],[74.88856,32.0526],[74.87955,32.0538],[74.87547,32.05087],[74.87269,32.04404],[74.86892,32.04161],[74.87258,32.04169],[74.8764,32.03424],[74.87998,32.03204],[74.86897,32.02203],[74.86922,32.02798],[74.86557,32.03044],[74.8627,32.02953],[74.86389,32.02457],[74.86562,32.02322],[74.84835,32.02047],[74.8532,32.01356],[74.84678,32.00832],[74.83897,32.00844],[74.82887,31.99862],[74.83136,31.98085],[74.8191,31.95875],[74.81502,31.96051],[74.81094,31.95941],[74.81033,31.96235],[74.80616,31.96285],[74.80238,31.95784],[74.79479,31.95823],[74.78148,31.95571],[74.76842,31.94767],[74.75958,31.95448],[74.75559,31.95575],[74.75657,31.9437],[74.74321,31.93959],[74.7343,31.94515],[74.73088,31.94096],[74.72718,31.94256],[74.72016,31.94143],[74.71527,31.93617],[74.71405,31.93231],[74.71924,31.92369],[74.70774,31.92304],[74.70648,31.9211],[74.70071,31.92346],[74.70061,31.9258],[74.6986,31.92628],[74.6772,31.92614],[74.67432,31.91861],[74.67325,31.92093],[74.66671,31.92273],[74.66835,31.91787],[74.66633,31.91739],[74.66768,31.91652],[74.66335,31.91318],[74.66259,31.91432],[74.6604,31.91354],[74.65844,31.91028],[74.65764,31.90188],[74.6543,31.89958],[74.65089,31.90218],[74.64517,31.89425],[74.63965,31.88996],[74.63631,31.88422],[74.63257,31.88421],[74.62936,31.88212],[74.61583,31.88967],[74.60786,31.89039],[74.60736,31.882],[74.60816,31.87886],[74.61006,31.87852],[74.60663,31.86853],[74.59721,31.86738],[74.59223,31.858],[74.59071,31.84855],[74.58332,31.85189],[74.57316,31.8384],[74.57213,31.83882],[74.5707,31.83694],[74.57044,31.82812],[74.57122,31.81896],[74.57307,31.816],[74.56531,31.80852],[74.55791,31.80477],[74.56712,31.7964],[74.55561,31.79135],[74.55526,31.78617],[74.55141,31.77897],[74.55695,31.77055],[74.55489,31.76694],[74.56179,31.7633],[74.55941,31.75788],[74.54733,31.75216],[74.54743,31.74935],[74.53093,31.74779],[74.51387,31.74012],[74.50888,31.74225],[74.5037,31.74048],[74.50516,31.73999],[74.50407,31.74012],[74.50283,31.73336],[74.50307,31.72853],[74.49062,31.72378],[74.4866,31.715],[74.49932,31.70946],[74.49927,31.70748],[74.50342,31.70265],[74.5019,31.69579],[74.51756,31.6885],[74.52411,31.68698],[74.53496,31.6776],[74.5343,31.67339],[74.52943,31.66921],[74.5287,31.66661],[74.54024,31.66008],[74.5373,31.65328],[74.54105,31.64674],[74.54473,31.64839],[74.54666,31.64566],[74.54797,31.63911],[74.54634,31.63307],[74.55168,31.62361],[74.55106,31.61762],[74.55627,31.61134],[74.55532,31.60784],[74.56777,31.60679],[74.5753,31.60379],[74.57572,31.60079],[74.5785,31.59963],[74.575,31.59742],[74.5808,31.59419],[74.58202,31.58812],[74.5809,31.58727],[74.58578,31.58514],[74.58688,31.5835],[74.58552,31.5814],[74.59175,31.57687],[74.59228,31.57411],[74.60154,31.57278],[74.61106,31.56714],[74.6156,31.56898],[74.61353,31.56718],[74.60888,31.56662],[74.60679,31.56296],[74.61108,31.55896],[74.61615,31.5574],[74.61865,31.55162],[74.61445,31.55109],[74.61498,31.54423],[74.61288,31.54326],[74.61271,31.54108],[74.6143,31.5353],[74.61224,31.5306],[74.6129,31.52734],[74.60403,31.52409],[74.59596,31.52603],[74.58894,31.52163],[74.58433,31.52092],[74.58248,31.51338],[74.58016,31.51113],[74.58365,31.51027],[74.58404,31.50695],[74.58003,31.50726],[74.58713,31.50401],[74.5852,31.50082],[74.5815,31.50064],[74.58115,31.49898],[74.57521,31.50117],[74.57786,31.49856],[74.58728,31.49629],[74.59366,31.49644],[74.5947,31.50155],[74.59941,31.49985],[74.60311,31.50055],[74.60445,31.49868],[74.60977,31.49987],[74.61304,31.49622],[74.61502,31.48835],[74.61864,31.48512],[74.6223,31.4851],[74.62244,31.48191],[74.62383,31.48334],[74.62583,31.48283],[74.62518,31.48596],[74.63223,31.48665],[74.63648,31.48476],[74.63143,31.48148],[74.62929,31.48385],[74.62755,31.4769],[74.6361,31.47759],[74.63845,31.47289],[74.64767,31.4656],[74.65214,31.4573],[74.65314,31.4545],[74.65128,31.45199],[74.64222,31.44964],[74.6386,31.44438],[74.64302,31.43675],[74.65461,31.42601],[74.65191,31.42642],[74.64843,31.42393],[74.64322,31.41604],[74.63361,31.41872],[74.63138,31.42547],[74.62926,31.42585],[74.62744,31.42937],[74.62243,31.43012],[74.61926,31.42002],[74.60893,31.42366],[74.60713,31.42053],[74.60246,31.42051],[74.60141,31.41986],[74.60261,31.41576],[74.59662,31.41623],[74.59417,31.4078],[74.59058,31.401],[74.58725,31.39812],[74.58631,31.38585],[74.58348,31.37904],[74.57817,31.37614],[74.57829,31.37488],[74.57307,31.37403],[74.57161,31.37154],[74.56754,31.37195],[74.55392,31.36666],[74.55165,31.36435],[74.55006,31.35869],[74.55295,31.35605],[74.54875,31.34439],[74.54593,31.34076],[74.54886,31.33483],[74.54359,31.33507],[74.53737,31.33074],[74.53742,31.32676],[74.53386,31.32491],[74.53436,31.32196],[74.53781,31.31946],[74.5339,31.31603],[74.53534,31.31504],[74.53483,31.31347],[74.52916,31.31405],[74.52633,31.31197],[74.53415,31.30508],[74.54065,31.30596],[74.54203,31.30377],[74.53765,31.30095],[74.5312,31.28434],[74.52652,31.2768],[74.52119,31.27208],[74.5206,31.26892],[74.52392,31.26128],[74.53205,31.25234],[74.53273,31.24969],[74.52816,31.24004],[74.51918,31.2336],[74.51971,31.23185],[74.51701,31.22792],[74.5245,31.2203],[74.52362,31.21799],[74.52596,31.21177],[74.52374,31.20811],[74.52513,31.20369],[74.52152,31.20258],[74.52158,31.19678],[74.52011,31.19441],[74.52156,31.19051],[74.51952,31.18385],[74.51076,31.18116],[74.51007,31.17373],[74.51311,31.16411],[74.51099,31.15806],[74.51389,31.15595],[74.51318,31.15359],[74.51523,31.15213],[74.51379,31.13934],[74.51036,31.1319],[74.52473,31.12915],[74.54343,31.121],[74.54836,31.12193],[74.54772,31.11451],[74.54973,31.11267],[74.54907,31.10116],[74.55096,31.09679],[74.5515,31.08639],[74.55824,31.08313],[74.57127,31.08142],[74.57382,31.08576],[74.58881,31.08782],[74.58659,31.09119],[74.58909,31.09248],[74.59084,31.09246],[74.5915,31.08879],[74.60081,31.088],[74.59944,31.09306],[74.6043,31.09322],[74.60436,31.09511],[74.60736,31.09492],[74.61067,31.0993],[74.61004,31.11173],[74.60551,31.11436],[74.59649,31.12758],[74.60305,31.1336],[74.60996,31.13373],[74.61833,31.13132],[74.62188,31.13309],[74.62652,31.13107],[74.63088,31.13271],[74.63229,31.13132],[74.63101,31.12822],[74.63236,31.1215],[74.63623,31.11826],[74.64034,31.11972],[74.64842,31.12807],[74.65294,31.12943],[74.65897,31.13397],[74.66695,31.12432],[74.67319,31.12358],[74.6891,31.12802],[74.68978,31.11829],[74.69808,31.11241],[74.69725,31.1026],[74.70134,31.09726],[74.70232,31.09235],[74.69726,31.08475],[74.69064,31.08149],[74.69593,31.07416],[74.67116,31.05363],[74.65761,31.0501],[74.64588,31.04982],[74.61833,31.04394],[74.61301,31.04479],[74.5968,31.03766],[74.59591,31.04221],[74.59009,31.04995],[74.57442,31.05678],[74.57043,31.05299],[74.56823,31.05469],[74.56144,31.04865],[74.55872,31.03741],[74.55754,31.03826],[74.54797,31.03245],[74.54248,31.01737],[74.53967,31.00884],[74.54404,30.99801],[74.54326,30.99613],[74.54616,30.99242],[74.51615,30.97947],[74.50872,30.96744],[74.50347,30.96479],[74.49789,30.96433],[74.4919,30.97443],[74.48964,30.97251],[74.48136,30.97075],[74.47969,30.97428],[74.45726,30.96464],[74.46641,30.95687],[74.45147,30.95589],[74.45526,30.9514],[74.44206,30.95173],[74.44194,30.94601],[74.43954,30.94219],[74.42892,30.9425],[74.4164,30.94033],[74.41775,30.93769],[74.41387,30.92965],[74.42368,30.92956],[74.42875,30.93123],[74.42353,30.92073],[74.41034,30.92349],[74.41106,30.91964],[74.41861,30.91931],[74.42442,30.91603],[74.42272,30.90778],[74.39729,30.90939],[74.38294,30.89551],[74.37076,30.89518],[74.36591,30.89293],[74.36671,30.8857],[74.36077,30.8737],[74.38209,30.86043],[74.37792,30.85844],[74.37402,30.8598],[74.36943,30.85742],[74.36452,30.85738],[74.36852,30.85184],[74.3672,30.84913],[74.36336,30.84725],[74.35498,30.84839],[74.35407,30.8527],[74.34815,30.85491],[74.33877,30.85267],[74.34056,30.8491],[74.33239,30.85103],[74.32467,30.84956],[74.32039,30.84663],[74.32016,30.84202],[74.32206,30.83867],[74.31931,30.8329],[74.31983,30.8274],[74.31014,30.81863],[74.30246,30.80804],[74.30146,30.80381],[74.29941,30.80458],[74.29488,30.79451],[74.29829,30.79369],[74.3013,30.78975],[74.30682,30.7892],[74.30197,30.77937],[74.28982,30.77518],[74.2867,30.77588],[74.27442,30.77348],[74.26483,30.77709],[74.26017,30.7731],[74.26077,30.76986],[74.27369,30.75346],[74.27448,30.74427],[74.28646,30.7357],[74.28153,30.73089],[74.27483,30.73712],[74.27125,30.73221],[74.26844,30.7344],[74.26912,30.73032],[74.26697,30.72622],[74.2609,30.72311],[74.24841,30.72597],[74.24202,30.72601],[74.2454,30.72452],[74.24527,30.72295],[74.23266,30.72456],[74.22734,30.71883],[74.22762,30.71287],[74.22532,30.71309],[74.22346,30.70994],[74.21924,30.69361],[74.21206,30.68776],[74.20532,30.6761],[74.19797,30.67079],[74.19332,30.66517],[74.18182,30.66151],[74.1774,30.6552],[74.16937,30.64873],[74.16336,30.64842],[74.15954,30.64172],[74.15608,30.64076],[74.15323,30.63505],[74.14782,30.63106],[74.1377,30.62748],[74.12736,30.6348],[74.12861,30.63232],[74.12686,30.62414],[74.12129,30.6226],[74.11807,30.60791],[74.10511,30.61927],[74.09604,30.61161],[74.10195,30.6111],[74.10227,30.60963],[74.1015,30.60333],[74.09531,30.60121],[74.09872,30.59059],[74.09657,30.58724],[74.10213,30.57923],[74.07342,30.55468],[74.07999,30.54847],[74.09095,30.54942],[74.08135,30.53347],[74.07228,30.52291],[74.06353,30.51923],[74.05731,30.51869],[74.05157,30.52768],[74.05001,30.53716],[74.04778,30.53958],[74.03922,30.54262],[74.03796,30.53161],[74.03101,30.52693],[74.02384,30.52607],[74.01203,30.53359],[74.01108,30.5211],[74.01999,30.51417],[73.99269,30.51426],[73.98199,30.50402],[73.97594,30.49412],[73.96366,30.48485],[73.96962,30.4783],[73.96971,30.47528],[73.96413,30.45648],[73.95013,30.46008],[73.94688,30.4639],[73.94753,30.46828],[73.94583,30.46827],[73.94772,30.4839],[73.93445,30.49028],[73.93104,30.4762],[73.93174,30.4672],[73.92775,30.4659],[73.93754,30.45223],[73.9373,30.44507],[73.92626,30.43893],[73.93684,30.43645],[73.94884,30.43694],[73.9601,30.44087],[73.96802,30.44015],[73.97185,30.44411],[73.97379,30.44382],[73.96628,30.43258],[73.9647,30.42456],[73.94865,30.41675],[73.93671,30.40216],[73.92221,30.39809],[73.91957,30.39563],[73.91414,30.38271],[73.90079,30.3731],[73.88405,30.367],[73.87978,30.35972],[73.90265,30.34908],[73.91451,30.33495],[73.93087,30.32007],[73.93997,30.30054],[73.95977,30.27018],[73.96394,30.25722],[73.96423,30.24838],[73.97433,30.18911],[73.97284,30.17742],[73.96833,30.16867],[73.96814,30.14484],[73.97082,30.12541],[73.97565,30.12099],[73.96763,30.11929],[73.95217,30.10434],[73.94952,30.09614],[73.92989,30.06875],[73.90405,30.05012],[73.89362,30.02189],[73.88653,30.01249],[73.88622,29.99603],[73.89539,29.98221],[73.89512,29.97408],[74.13658,29.9654],[74.52716,29.94294],[74.53157,29.94967],[74.54133,29.94078],[74.56068,29.9295],[74.55903,29.92728],[74.57197,29.92747],[74.57988,29.92567],[74.5897,29.91698],[74.59726,29.91277],[74.63032,29.90504],[74.64176,29.90454],[74.65436,29.90574],[74.64958,29.90754],[74.64675,29.91128],[74.64816,29.91971],[74.65169,29.9266],[74.67032,29.93964],[74.68215,29.94349],[74.69438,29.96784],[74.70018,29.97272],[74.70207,29.97162],[74.70687,29.97699],[74.70683,29.97054],[74.73099,29.96146],[74.73898,29.9679],[74.75316,29.96731],[74.75395,29.96964],[74.75833,29.97004],[74.75856,29.97244],[74.76128,29.97331],[74.77108,29.97172],[74.77535,29.97334],[74.77845,29.97167],[74.80607,29.99205],[74.81298,29.99235],[74.82111,29.98922],[74.82433,29.98577],[74.82636,29.97722],[74.82106,29.97103],[74.8285,29.97333],[74.83848,29.97115],[74.84348,29.9646],[74.85059,29.96197],[74.85542,29.95649],[74.86477,29.96016],[74.87057,29.95998],[74.87579,29.95761],[74.88796,29.96672],[74.90298,29.95348],[74.90073,29.94546],[74.89554,29.94073],[74.8972,29.93969],[74.90705,29.9406],[74.91294,29.94344],[74.91901,29.94707],[74.9229,29.95211],[74.92671,29.95049],[74.92698,29.94586],[74.93582,29.93068],[74.9364,29.92645],[74.94174,29.91766],[74.94419,29.91609],[74.94802,29.90723],[74.9529,29.90188],[74.97886,29.89431],[74.97721,29.88834],[74.99099,29.86782],[74.99813,29.86623],[75.00526,29.86895],[75.02255,29.86625],[75.03293,29.87981],[75.04699,29.88507],[75.05187,29.88407],[75.05613,29.87809],[75.06529,29.87879],[75.06999,29.87705],[75.07449,29.88225],[75.07607,29.89085],[75.07533,29.89634],[75.08049,29.9008],[75.08644,29.91655],[75.0888,29.91719],[75.09878,29.91278],[75.09904,29.91108],[75.10733,29.90405],[75.1093,29.90409],[75.11043,29.89271],[75.11474,29.87865],[75.10686,29.868],[75.09341,29.85797],[75.08976,29.85863],[75.09176,29.85171],[75.10316,29.84175],[75.11139,29.84191],[75.11889,29.83195],[75.10154,29.82155],[75.10034,29.8194],[75.10076,29.80678],[75.1045,29.8048],[75.11826,29.8027],[75.12668,29.80688],[75.13511,29.80729],[75.13686,29.80595],[75.14055,29.78558],[75.14649,29.78182],[75.15099,29.77552],[75.1555,29.77688],[75.16299,29.78089],[75.16692,29.78517],[75.16665,29.78821],[75.1591,29.80133],[75.16065,29.80637],[75.16023,29.81284],[75.16407,29.82409],[75.17007,29.82818],[75.17593,29.82808],[75.19149,29.84124],[75.19652,29.83776],[75.21068,29.8324],[75.21402,29.82398],[75.20968,29.81734],[75.20854,29.79267],[75.21448,29.79151],[75.21629,29.78771],[75.22631,29.78913],[75.22475,29.77989],[75.23662,29.757],[75.24161,29.75464],[75.23818,29.73995],[75.22635,29.72887],[75.21749,29.73714],[75.21034,29.73881],[75.20064,29.72648],[75.19689,29.7157],[75.1978,29.70325],[75.20026,29.70106],[75.2078,29.70121],[75.2068,29.68751],[75.19882,29.68],[75.18815,29.68134],[75.18731,29.67593],[75.18395,29.67334],[75.1796,29.67451],[75.17715,29.67063],[75.16757,29.67018],[75.16813,29.66655],[75.17466,29.6556],[75.18004,29.65286],[75.18763,29.65179],[75.18222,29.63596],[75.18307,29.6284],[75.19685,29.61932],[75.20677,29.6219],[75.21971,29.61542],[75.22149,29.61111],[75.2284,29.60543],[75.23378,29.60237],[75.23538,29.60307],[75.22744,29.58721],[75.22173,29.58028],[75.22682,29.57901],[75.23196,29.57479],[75.23443,29.57],[75.23382,29.56432],[75.23841,29.55886],[75.23911,29.55072],[75.23537,29.54207],[75.24449,29.54669],[75.27327,29.54999],[75.28038,29.55397],[75.28117,29.56146],[75.29831,29.55859],[75.30948,29.56083],[75.3113,29.58014],[75.31994,29.58741],[75.31658,29.59038],[75.31402,29.58925],[75.30564,29.59567],[75.30346,29.60258],[75.2897,29.60781],[75.29492,29.61571],[75.29574,29.62503],[75.3073,29.62477],[75.31117,29.62949],[75.31659,29.63062],[75.32349,29.64247],[75.32102,29.64726],[75.32226,29.65161],[75.33187,29.66318],[75.33377,29.67347],[75.34106,29.67525],[75.34866,29.66658],[75.3581,29.66075],[75.36017,29.6626],[75.35984,29.66813],[75.35426,29.67489],[75.35369,29.67959],[75.34892,29.68628],[75.34573,29.696],[75.35145,29.69606],[75.35861,29.69975],[75.35792,29.70439],[75.35908,29.7055],[75.36465,29.70392],[75.37082,29.70446],[75.36988,29.71086],[75.373,29.71326],[75.37636,29.71408],[75.37865,29.71287],[75.38023,29.71421],[75.38402,29.7122],[75.39214,29.71316],[75.38925,29.71613],[75.39114,29.71698],[75.39075,29.71903],[75.39347,29.72198],[75.38816,29.72798],[75.38819,29.72988],[75.39136,29.73279],[75.39548,29.73356],[75.39645,29.73946],[75.40133,29.7402],[75.40478,29.73899],[75.40632,29.76125],[75.41396,29.76999],[75.41938,29.77021],[75.42142,29.77508],[75.42172,29.77301],[75.42748,29.77085],[75.43837,29.78003],[75.44757,29.7838],[75.45121,29.78144],[75.45398,29.782],[75.45586,29.78428],[75.45605,29.79047],[75.45818,29.79475],[75.45288,29.80184],[75.45519,29.8057],[75.45954,29.80751],[75.46228,29.8073],[75.4796,29.79278],[75.48555,29.79152],[75.49217,29.78577],[75.49729,29.78439],[75.50277,29.77788],[75.5186,29.77582],[75.52327,29.76915],[75.52196,29.75983],[75.52304,29.7584],[75.52492,29.76185],[75.52866,29.76316],[75.5327,29.77062],[75.53796,29.77333],[75.5407,29.77358],[75.54489,29.77079],[75.56212,29.77022],[75.56975,29.75679],[75.57214,29.74335],[75.57998,29.73909],[75.58899,29.74688],[75.60096,29.74946],[75.60527,29.75195],[75.60688,29.74893],[75.61676,29.74408],[75.62057,29.74674],[75.62745,29.74836],[75.63449,29.75528],[75.63518,29.77229],[75.63778,29.77389],[75.64026,29.7725],[75.64246,29.77509],[75.65011,29.77569],[75.65598,29.77376],[75.66098,29.77683],[75.66408,29.77521],[75.66808,29.7774],[75.67717,29.77658],[75.68171,29.77227],[75.68267,29.76694],[75.69136,29.75592],[75.70315,29.75228],[75.70645,29.7532],[75.70925,29.75653],[75.70575,29.75968],[75.70467,29.76362],[75.70739,29.76928],[75.71031,29.7706],[75.71238,29.77406],[75.70981,29.77798],[75.71013,29.78041],[75.71665,29.78872],[75.71275,29.79264],[75.7146,29.79598],[75.71417,29.80185],[75.71798,29.803],[75.71807,29.80865],[75.72097,29.80992],[75.72068,29.81354],[75.7326,29.81252],[75.73782,29.81404],[75.74689,29.80732],[75.75063,29.8076],[75.75617,29.805],[75.77883,29.82234],[75.78297,29.8208],[75.78707,29.81606],[75.78879,29.8111],[75.80565,29.80472],[75.80988,29.80563],[75.81583,29.80416],[75.82243,29.80779],[75.82585,29.81451],[75.8303,29.81178],[75.83484,29.81446],[75.83776,29.81302],[75.83493,29.8088],[75.83799,29.7971],[75.83701,29.79425],[75.84049,29.78865],[75.84368,29.78983],[75.84583,29.78227],[75.85291,29.77804],[75.85356,29.77638],[75.85141,29.7727],[75.85832,29.7708],[75.85971,29.768],[75.86674,29.76653],[75.87036,29.75754],[75.86925,29.75197],[75.87025,29.7493],[75.88238,29.751],[75.88595,29.74538],[75.89884,29.74624],[75.9008,29.74888],[75.90448,29.74892],[75.9027,29.75162],[75.90631,29.75333],[75.91461,29.74796],[75.91497,29.74302],[75.91944,29.74133],[75.92239,29.73766],[75.93869,29.73066],[75.94113,29.73154],[75.94734,29.72938],[75.95073,29.73193],[75.95485,29.73193],[75.96757,29.72941],[75.97346,29.7304],[75.97535,29.72864],[75.98442,29.72711],[75.98889,29.73393],[75.9949,29.73926],[75.99897,29.74102],[76.00711,29.74074],[76.01677,29.743],[76.01938,29.74767],[76.02406,29.74898],[76.02611,29.75615],[76.03068,29.75472],[76.03088,29.74765],[76.03474,29.74453],[76.04385,29.74268],[76.04963,29.7481],[76.04949,29.75186],[76.0544,29.75772],[76.05682,29.76536],[76.06024,29.76464],[76.0671,29.77397],[76.07255,29.77858],[76.07678,29.77488],[76.08265,29.78116],[76.08472,29.78452],[76.08296,29.78796],[76.085,29.80073],[76.08953,29.80113],[76.09808,29.81061],[76.10509,29.81183],[76.11585,29.80231],[76.12001,29.80087],[76.11967,29.79228],[76.12395,29.79091],[76.13323,29.80445],[76.14173,29.81083],[76.14162,29.81546],[76.14549,29.81908],[76.15326,29.82003],[76.16449,29.81761],[76.17374,29.81791],[76.18487,29.82272],[76.19782,29.84476],[76.20269,29.84301],[76.21201,29.84301],[76.22055,29.83784],[76.22062,29.8467],[76.22223,29.84873],[76.22725,29.85177],[76.23047,29.85148],[76.23246,29.8537],[76.23816,29.85199],[76.24382,29.85241],[76.24387,29.86893],[76.24676,29.87595],[76.23829,29.87869],[76.2294,29.88563],[76.22682,29.88634],[76.22626,29.88379],[76.22232,29.88495],[76.2213,29.88336],[76.2174,29.88404],[76.21295,29.88704],[76.21084,29.89131],[76.20868,29.88738],[76.20977,29.88589],[76.20114,29.88382],[76.19943,29.88451],[76.19984,29.88841],[76.19346,29.88562],[76.18974,29.8904],[76.18633,29.89083],[76.18566,29.89244],[76.1893,29.90867],[76.18781,29.92063],[76.18528,29.92049],[76.1814,29.92362],[76.17918,29.92264],[76.17549,29.92383],[76.17197,29.92627],[76.17252,29.92882],[76.17814,29.93337],[76.17818,29.94207],[76.18376,29.9483],[76.19114,29.94882],[76.20352,29.94425],[76.21018,29.93961],[76.21312,29.94509],[76.21274,29.94709],[76.2053,29.96158],[76.20108,29.96724],[76.19809,29.96826],[76.20573,29.9743],[76.20477,29.97691],[76.20592,29.98037],[76.20184,29.98475],[76.20241,29.98932],[76.20806,29.98605],[76.21074,29.98815],[76.20653,29.99345],[76.21148,29.99545],[76.20926,30.00406],[76.21599,30.00706],[76.22556,30.00769],[76.23199,30.01521],[76.21317,30.0221],[76.21396,30.03172],[76.22003,30.03411],[76.22241,30.03669],[76.22181,30.04807],[76.22832,30.05285],[76.22623,30.05866],[76.23672,30.0679],[76.2467,30.08213],[76.24784,30.08106],[76.24929,30.08231],[76.24827,30.08482],[76.24967,30.08691],[76.25354,30.0894],[76.26015,30.08741],[76.2653,30.09878],[76.25249,30.10264],[76.25165,30.10444],[76.25318,30.10608],[76.25173,30.1075],[76.24893,30.10383],[76.24211,30.10051],[76.23689,30.10387],[76.23832,30.10561],[76.23634,30.10657],[76.2344,30.105],[76.22982,30.10669],[76.2238,30.11162],[76.21677,30.11001],[76.21629,30.1128],[76.22028,30.11527],[76.21709,30.12281],[76.21107,30.12056],[76.19638,30.12345],[76.19695,30.13246],[76.20244,30.13605],[76.20474,30.13307],[76.20804,30.13402],[76.21593,30.12374],[76.22428,30.12708],[76.21516,30.13489],[76.21519,30.13959],[76.20773,30.14427],[76.20767,30.15699],[76.2146,30.15617],[76.21469,30.1532],[76.21629,30.15293],[76.21649,30.15023],[76.21901,30.1477],[76.22434,30.14696],[76.22688,30.14454],[76.23438,30.14493],[76.23252,30.13975],[76.24322,30.13239],[76.24227,30.12938],[76.24401,30.12819],[76.24694,30.13054],[76.25565,30.12605],[76.25548,30.12372],[76.25311,30.12308],[76.25369,30.12157],[76.26778,30.11442],[76.27518,30.11459],[76.27855,30.11027],[76.28534,30.10618],[76.29063,30.10774],[76.2966,30.1144],[76.30757,30.10872],[76.31955,30.09707],[76.3193,30.09577],[76.32176,30.09506],[76.33119,30.09966],[76.33991,30.0987],[76.34415,30.10082],[76.34473,30.10477],[76.34626,30.10388],[76.34615,30.10618],[76.35443,30.11687],[76.36023,30.12017],[76.35217,30.12178],[76.34206,30.12634],[76.33351,30.13817],[76.33395,30.14199],[76.33781,30.14327],[76.34688,30.14277],[76.34749,30.1453],[76.35049,30.14683],[76.35306,30.14301],[76.35929,30.13974],[76.36132,30.12973],[76.36695,30.12418],[76.36076,30.12255],[76.3622,30.12012],[76.36791,30.1176],[76.38888,30.11323],[76.40006,30.11667],[76.39845,30.12057],[76.39486,30.12198],[76.39598,30.12612],[76.39111,30.1348],[76.39765,30.14017],[76.4009,30.13889],[76.40684,30.14491],[76.41009,30.14504],[76.40178,30.15379],[76.39503,30.15797],[76.3914,30.16432],[76.39349,30.16694],[76.38718,30.17059],[76.39636,30.17958],[76.40298,30.18211],[76.40362,30.18666],[76.40641,30.19034],[76.42274,30.19224],[76.43433,30.18311],[76.43382,30.18071],[76.43039,30.17797],[76.43492,30.17549],[76.44058,30.16584],[76.43652,30.15595],[76.43349,30.15584],[76.42859,30.15055],[76.43224,30.14695],[76.43977,30.14367],[76.4377,30.14222],[76.43749,30.13623],[76.44053,30.13142],[76.4439,30.13046],[76.45088,30.13216],[76.45557,30.13042],[76.45803,30.13183],[76.45801,30.1302],[76.45998,30.12944],[76.45633,30.11543],[76.45712,30.11014],[76.46255,30.10102],[76.47276,30.09767],[76.48206,30.09753],[76.49129,30.09462],[76.49798,30.09449],[76.50208,30.09192],[76.51037,30.08231],[76.50871,30.07895],[76.50828,30.07031],[76.52248,30.07411],[76.52685,30.07696],[76.53528,30.0731],[76.54376,30.07427],[76.54596,30.0764],[76.54565,30.07932],[76.55,30.07885],[76.55638,30.08251],[76.56055,30.09338],[76.5727,30.09906],[76.58655,30.11072],[76.59895,30.11209],[76.60307,30.1186],[76.61279,30.12672],[76.62353,30.14019],[76.63272,30.14183],[76.6353,30.14664],[76.64374,30.15021],[76.63931,30.15263],[76.63272,30.16936],[76.62893,30.16889],[76.62373,30.17503],[76.6234,30.18017],[76.60731,30.19178],[76.61099,30.19634],[76.6101,30.19847],[76.61419,30.20443],[76.61854,30.20055],[76.6303,30.19853],[76.63944,30.19437],[76.6456,30.18807],[76.6355,30.18454],[76.63828,30.1781],[76.63543,30.16998],[76.64187,30.171],[76.64604,30.17639],[76.64803,30.17542],[76.65165,30.17753],[76.65404,30.18397],[76.65713,30.18712],[76.65064,30.19314],[76.65426,30.20347],[76.63932,30.20878],[76.63575,30.20683],[76.62171,30.20764],[76.61553,30.21168],[76.61484,30.21353],[76.6164,30.21632],[76.62332,30.21982],[76.62751,30.22719],[76.62326,30.23142],[76.60293,30.24133],[76.60599,30.24567],[76.6061,30.24835],[76.60371,30.25188],[76.59633,30.25521],[76.59155,30.25576],[76.59066,30.25341],[76.5879,30.25396],[76.58111,30.24657],[76.56786,30.23809],[76.56621,30.23531],[76.56377,30.2353],[76.56075,30.22892],[76.54856,30.22514],[76.54567,30.22555],[76.54311,30.22839],[76.54523,30.23001],[76.55345,30.22996],[76.56005,30.24519],[76.55736,30.25341],[76.55668,30.26244],[76.55959,30.26484],[76.56203,30.26195],[76.57193,30.26524],[76.57514,30.26188],[76.58063,30.2652],[76.58382,30.27022],[76.58649,30.26854],[76.58802,30.26483],[76.59292,30.26174],[76.60113,30.27032],[76.6087,30.2679],[76.60973,30.27039],[76.61163,30.26953],[76.61441,30.2725],[76.62053,30.26495],[76.62343,30.26455],[76.62723,30.26938],[76.6256,30.2712],[76.63144,30.27609],[76.63036,30.27738],[76.63216,30.28385],[76.63542,30.28959],[76.63887,30.28439],[76.65002,30.29067],[76.65568,30.29839],[76.65955,30.29989],[76.66543,30.3059],[76.66768,30.30284],[76.67486,30.29935],[76.68079,30.30313],[76.67804,30.30583],[76.68647,30.31426],[76.68558,30.31755],[76.68209,30.31979],[76.68859,30.32727],[76.69563,30.32157],[76.70005,30.32805],[76.70487,30.32588],[76.71102,30.3258],[76.71639,30.33602],[76.72229,30.33324],[76.72975,30.33882],[76.72737,30.34106],[76.73262,30.34832],[76.73847,30.34632],[76.74609,30.34953],[76.74522,30.35049],[76.75113,30.3553],[76.74892,30.35699],[76.74929,30.3618],[76.74541,30.36783],[76.73755,30.37042],[76.73524,30.36785],[76.73339,30.36883],[76.72571,30.36185],[76.71991,30.36333],[76.71871,30.36658],[76.73124,30.37966],[76.7296,30.38226],[76.71949,30.37877],[76.71761,30.38004],[76.71864,30.38248],[76.71285,30.3902],[76.71511,30.39745],[76.71455,30.40244],[76.72221,30.399],[76.72515,30.40218],[76.72822,30.40036],[76.73799,30.40835],[76.74011,30.41208],[76.73504,30.41908],[76.74105,30.42424],[76.74105,30.42622],[76.75,30.42983],[76.75793,30.42982],[76.76556,30.43249],[76.77429,30.44328],[76.7811,30.43992],[76.78487,30.43535],[76.77728,30.43105],[76.77433,30.4264],[76.78704,30.41621],[76.79022,30.41455],[76.79514,30.41866],[76.80177,30.41367],[76.80926,30.41764],[76.81647,30.41334],[76.82183,30.41268],[76.82748,30.41607],[76.83824,30.42762],[76.83623,30.42961],[76.83775,30.43156],[76.84374,30.43736],[76.84679,30.43808],[76.85103,30.43525],[76.85002,30.43347],[76.85439,30.42548],[76.8542,30.4212],[76.85613,30.41765],[76.8683,30.41394],[76.87444,30.40947],[76.88336,30.40865],[76.88089,30.40612],[76.88434,30.40428],[76.88213,30.40082],[76.88394,30.39768],[76.8807,30.3939],[76.88335,30.39208],[76.88623,30.39404],[76.8951,30.38694],[76.89507,30.38471],[76.89796,30.3821],[76.89137,30.37377],[76.89029,30.36943],[76.89826,30.35882],[76.90271,30.36195],[76.90678,30.36139],[76.91686,30.36491],[76.92262,30.3746],[76.9349,30.38188],[76.93868,30.38609],[76.94146,30.39535],[76.93315,30.40155],[76.92273,30.40107],[76.91972,30.39866],[76.91235,30.40063],[76.91936,30.40741],[76.91805,30.40837],[76.91915,30.40924],[76.9171,30.41599],[76.91237,30.42051],[76.91649,30.42623],[76.90638,30.43357],[76.91229,30.44291],[76.90505,30.43407],[76.89755,30.4371],[76.90274,30.44408],[76.90487,30.44323],[76.90537,30.44493],[76.89956,30.44865],[76.91381,30.46767],[76.91218,30.47376],[76.89804,30.48376],[76.89896,30.48879],[76.90362,30.49139],[76.90871,30.49188],[76.91078,30.49428],[76.91893,30.48944],[76.93117,30.50036],[76.92859,30.50755],[76.92924,30.51709],[76.93202,30.52219],[76.92149,30.52619],[76.9156,30.52571],[76.91224,30.53038],[76.91249,30.53395],[76.90622,30.53712],[76.90215,30.53644],[76.89607,30.53812],[76.88816,30.54589],[76.8865,30.54983],[76.88718,30.55103],[76.89395,30.54864],[76.90494,30.54295],[76.91616,30.55366],[76.91754,30.55911],[76.91533,30.56192],[76.90897,30.56469],[76.91772,30.57601],[76.91494,30.5784],[76.91514,30.58218],[76.9198,30.58516],[76.90966,30.59188],[76.92022,30.59323],[76.92717,30.60361],[76.92234,30.60559],[76.92601,30.61006],[76.9199,30.61176],[76.916,30.60989],[76.91352,30.61141],[76.91184,30.61303],[76.9133,30.61397],[76.91307,30.61686],[76.91008,30.62615],[76.90278,30.62437],[76.89972,30.62814],[76.89555,30.62892],[76.89281,30.63104],[76.89595,30.63305],[76.89646,30.63583],[76.88512,30.64528],[76.87758,30.64415],[76.8748,30.64085],[76.87122,30.64212],[76.87426,30.67391],[76.87645,30.68051],[76.86831,30.67346],[76.85922,30.661],[76.84986,30.65684],[76.84882,30.65787],[76.84686,30.65666],[76.84496,30.65902],[76.84469,30.66239],[76.84809,30.66591],[76.84579,30.66864],[76.83257,30.66312],[76.8313,30.6654],[76.83204,30.67095],[76.83002,30.67586],[76.83129,30.67903],[76.82745,30.68213],[76.82105,30.67768],[76.82092,30.67489],[76.8165,30.67138],[76.80746,30.667],[76.80259,30.66649],[76.80047,30.6702],[76.79672,30.66751],[76.78995,30.6756],[76.78145,30.67427],[76.77687,30.67035],[76.76431,30.68636],[76.75276,30.68449],[76.75026,30.68831],[76.74777,30.68754],[76.74717,30.6955],[76.73932,30.69286],[76.73962,30.69806],[76.7379,30.69981],[76.73936,30.70033],[76.7391,30.70575],[76.73003,30.70683],[76.72909,30.71177],[76.73137,30.71258],[76.72855,30.71578],[76.73121,30.71741],[76.7311,30.72356],[76.72127,30.72997],[76.71419,30.74093],[76.70747,30.73945],[76.70518,30.74292],[76.70664,30.74465],[76.7059,30.7474],[76.70794,30.74973],[76.70533,30.75602],[76.71076,30.76098],[76.71392,30.76309],[76.7207,30.76316],[76.72568,30.76642],[76.73135,30.76489],[76.74375,30.76985],[76.7455,30.77227],[76.74331,30.77592],[76.75234,30.78025],[76.75171,30.78424],[76.75924,30.78819],[76.76172,30.79147],[76.77151,30.79521],[76.77556,30.79051],[76.78278,30.78917],[76.7873,30.77895],[76.77959,30.77769],[76.78348,30.77057],[76.79047,30.77071],[76.79169,30.76871],[76.79834,30.77111],[76.80213,30.77557],[76.80917,30.77936],[76.81352,30.78017],[76.81544,30.77801],[76.81865,30.77791],[76.81812,30.77544],[76.81957,30.77365],[76.81812,30.77129],[76.80537,30.76497],[76.81561,30.75271],[76.81768,30.75409],[76.82011,30.76085],[76.82421,30.76096],[76.82635,30.7633],[76.83745,30.75415],[76.84015,30.75889],[76.83897,30.7659],[76.84028,30.77062],[76.84257,30.7715],[76.84178,30.77446],[76.85437,30.78726],[76.8507,30.7911],[76.85268,30.79349],[76.85699,30.79475],[76.85417,30.79919],[76.84688,30.80368],[76.84533,30.80719],[76.84884,30.81414],[76.84815,30.82868],[76.84584,30.83156],[76.8467,30.83391],[76.84344,30.83596],[76.83742,30.8361],[76.82982,30.83907],[76.82614,30.84076],[76.82297,30.84477],[76.814,30.84299],[76.81316,30.84818],[76.81467,30.85244],[76.80472,30.86059],[76.80179,30.86584],[76.79074,30.87031],[76.78413,30.87826],[76.77771,30.89555],[76.77665,30.9053],[76.77126,30.90769],[76.77222,30.91006],[76.76666,30.91709],[76.76633,30.92107],[76.76019,30.92293],[76.75985,30.92633],[76.75652,30.92815],[76.7485,30.92673],[76.74696,30.93014],[76.73943,30.93379],[76.73978,30.93618],[76.73658,30.93837],[76.73772,30.94044],[76.73617,30.94711],[76.73714,30.94961],[76.73371,30.94934],[76.72234,30.9615],[76.71722,30.96011],[76.71176,30.96461],[76.70812,30.97048],[76.70588,30.96962],[76.70055,30.97098],[76.68395,30.96786],[76.67386,30.96871],[76.67312,30.97438],[76.66441,30.98175],[76.66149,30.98074],[76.65162,30.98783],[76.63848,30.99014],[76.63373,30.99605],[76.62501,30.99864],[76.62647,31.02113],[76.62692,31.02308],[76.62905,31.02362],[76.62295,31.0258],[76.61677,31.03048],[76.61608,31.03651],[76.61097,31.04583],[76.62295,31.05457],[76.61721,31.0676],[76.61658,31.07771],[76.62315,31.07963],[76.62537,31.09077],[76.6322,31.09781],[76.63191,31.09997],[76.63741,31.10313],[76.63858,31.108],[76.63623,31.11649],[76.63328,31.11554],[76.63102,31.11691],[76.62498,31.11516],[76.62384,31.11639],[76.61662,31.11607],[76.61323,31.1223],[76.602,31.12354],[76.60089,31.12838],[76.605,31.13079],[76.60405,31.13337],[76.61041,31.14059],[76.60912,31.14321],[76.6123,31.14803],[76.60993,31.14957],[76.60746,31.14869],[76.60605,31.15169],[76.60233,31.15297],[76.60526,31.16017],[76.6031,31.16473],[76.6076,31.17065],[76.60553,31.17239],[76.60715,31.17425],[76.60491,31.17674],[76.60321,31.17505],[76.59857,31.17454],[76.59682,31.17799],[76.60978,31.18097],[76.61346,31.18413],[76.61488,31.18964],[76.61779,31.19286],[76.63536,31.20195],[76.64542,31.20906],[76.64254,31.21427],[76.63456,31.2178],[76.63686,31.21761],[76.63711,31.22066],[76.64167,31.22302],[76.63536,31.22438],[76.63154,31.22359],[76.62765,31.22622],[76.61296,31.21737],[76.60635,31.21661],[76.60353,31.21436],[76.60102,31.2148],[76.60082,31.21259],[76.59257,31.21126],[76.59268,31.21476],[76.59057,31.21453],[76.59237,31.2175],[76.58901,31.21929],[76.58854,31.22295],[76.59161,31.22295],[76.59279,31.22583],[76.59522,31.22686],[76.59471,31.23424],[76.59834,31.23955],[76.61029,31.24381],[76.6119,31.24912],[76.60108,31.25909],[76.59627,31.26116],[76.59184,31.26593],[76.59235,31.26836],[76.58775,31.2742],[76.58351,31.27615],[76.57915,31.27111],[76.57515,31.27023],[76.5713,31.26617],[76.57196,31.26479],[76.56954,31.26141],[76.56546,31.26179],[76.56002,31.25276],[76.55648,31.2524],[76.55284,31.25512],[76.54921,31.25275],[76.54427,31.25617],[76.54361,31.2589],[76.54847,31.26606],[76.54747,31.26727],[76.55021,31.26987],[76.54883,31.27427],[76.5513,31.27875],[76.54293,31.28243],[76.54109,31.27496],[76.53773,31.27055],[76.53998,31.26626],[76.53934,31.26105],[76.53143,31.25639],[76.5238,31.25814],[76.52393,31.26228],[76.5289,31.26565],[76.52859,31.2681],[76.53055,31.27105],[76.52899,31.27083],[76.52971,31.27226],[76.52794,31.27343],[76.52743,31.27717],[76.52165,31.28033],[76.5064,31.26772],[76.50391,31.26688],[76.50095,31.27003],[76.49757,31.26986],[76.49491,31.28082],[76.49672,31.28534],[76.49421,31.28905],[76.49089,31.28825],[76.49102,31.29423],[76.48801,31.29674],[76.48517,31.3045],[76.47913,31.30867],[76.47437,31.30235],[76.4635,31.29412],[76.45955,31.28892],[76.45937,31.28623],[76.44272,31.27728],[76.4413,31.27922],[76.43999,31.27872],[76.44037,31.28789],[76.45722,31.29513],[76.46281,31.29878],[76.46349,31.30195],[76.45431,31.31228],[76.44685,31.31698],[76.44322,31.31753],[76.43754,31.32221],[76.43587,31.32637],[76.43233,31.32656],[76.4252,31.33958],[76.42679,31.34486],[76.42409,31.34931],[76.41956,31.3493],[76.40726,31.36728],[76.40757,31.37078],[76.40368,31.37828],[76.40061,31.37957],[76.39271,31.38906],[76.39345,31.39119],[76.39812,31.39377],[76.40328,31.39239],[76.40326,31.39668],[76.39956,31.39975],[76.39708,31.40792],[76.38755,31.40944],[76.38964,31.41677],[76.38284,31.42363],[76.38392,31.4259],[76.37967,31.42826],[76.3796,31.43331],[76.37475,31.43819],[76.37037,31.43007],[76.37252,31.42499],[76.3713,31.42017],[76.37303,31.41734],[76.37045,31.41729],[76.37223,31.41397],[76.37173,31.40946],[76.36726,31.40437],[76.35834,31.40355],[76.35228,31.39831],[76.34733,31.39816],[76.34587,31.40308],[76.34293,31.40254],[76.34295,31.39862],[76.34205,31.40139],[76.33109,31.40163],[76.33046,31.38726],[76.33174,31.38728],[76.33168,31.38407],[76.32976,31.37905],[76.34161,31.37878],[76.34049,31.36336],[76.34292,31.36345],[76.34228,31.35496],[76.34622,31.35486],[76.34712,31.34895],[76.35354,31.34786],[76.35316,31.34496],[76.35148,31.34524],[76.35161,31.34658],[76.34753,31.34667],[76.34687,31.34319],[76.34503,31.34305],[76.34391,31.3402],[76.3375,31.33983],[76.3356,31.34949],[76.33021,31.3481],[76.33146,31.34642],[76.30765,31.34235],[76.31352,31.32914],[76.32238,31.32161],[76.31057,31.31916],[76.31079,31.31795],[76.30391,31.31358],[76.29043,31.30918],[76.28924,31.30622],[76.28691,31.30735],[76.27555,31.3004],[76.27081,31.30237],[76.26934,31.31192],[76.26481,31.31],[76.25671,31.31034],[76.25099,31.30767],[76.23914,31.30885],[76.21397,31.29939],[76.19099,31.29999],[76.1863,31.30209],[76.18432,31.30565],[76.17982,31.30653],[76.18138,31.33365],[76.17882,31.34047],[76.1761,31.34197],[76.159,31.34369],[76.15769,31.34706],[76.15331,31.34954],[76.15212,31.35272],[76.14936,31.35326],[76.14898,31.35742],[76.14689,31.35898],[76.14863,31.36093],[76.1473,31.36463],[76.14728,31.3803],[76.15402,31.3829],[76.16857,31.39625],[76.16979,31.39895],[76.16654,31.40575],[76.16831,31.41044],[76.16013,31.41539],[76.16254,31.42117],[76.15672,31.43076],[76.15231,31.43362],[76.14532,31.43413],[76.14495,31.43679],[76.14043,31.44158],[76.13899,31.4487],[76.13313,31.45189],[76.13545,31.45867],[76.13468,31.46141],[76.13028,31.46505],[76.13069,31.47104],[76.12871,31.47178],[76.1277,31.47453],[76.12165,31.47732],[76.1209,31.48015],[76.11705,31.48301],[76.12075,31.4893],[76.11916,31.49316],[76.12069,31.49766],[76.11295,31.50012],[76.11003,31.50687],[76.10644,31.51004],[76.10369,31.52058],[76.1019,31.52239],[76.10266,31.52506],[76.09807,31.53265],[76.09942,31.53504],[76.09861,31.53725],[76.09218,31.54071],[76.0919,31.54415],[76.08966,31.5451],[76.08923,31.54762],[76.08515,31.54852],[76.08196,31.55186],[76.07738,31.56076],[76.07331,31.56393],[76.07252,31.56974],[76.06668,31.57322],[76.06456,31.57963],[76.05971,31.58132],[76.05629,31.58533],[76.05802,31.58885],[76.05378,31.59322],[76.05881,31.59594],[76.05752,31.59746],[76.05822,31.60177],[76.05585,31.6055],[76.05376,31.60586],[76.04856,31.60271],[76.04617,31.60364],[76.04135,31.61068],[76.03788,31.60952],[76.03668,31.61325],[76.02929,31.61892],[76.02862,31.62288],[76.02451,31.62457],[76.01794,31.63313],[76.02227,31.63961],[76.01738,31.6466],[76.01965,31.64886],[76.00966,31.65335],[76.00673,31.66314],[76.00574,31.676],[76.00143,31.68337],[76.00078,31.68853],[75.99835,31.68956],[75.9931,31.69685],[75.99165,31.70142],[75.99296,31.7034],[75.98895,31.70767],[75.98872,31.7127],[75.98305,31.71881],[75.98322,31.72147],[75.97946,31.72602],[75.97842,31.73366],[75.97445,31.73488],[75.97265,31.73856],[75.97248,31.74145],[75.97542,31.74251],[75.97515,31.74373],[75.97112,31.74918],[75.97235,31.75096],[75.97066,31.75649],[75.96624,31.76654],[75.96341,31.76879],[75.96323,31.77388],[75.96022,31.78113],[75.95312,31.78329],[75.95307,31.78957],[75.93668,31.81541],[75.94182,31.81269],[75.9475,31.81301],[75.95699,31.8163],[75.9581,31.81841],[75.96737,31.82381],[75.96941,31.82383],[75.97327,31.81843],[75.97561,31.81875],[75.97857,31.813],[75.98195,31.814],[75.9835,31.81161],[75.98654,31.81224],[75.98649,31.81792],[75.97486,31.82835],[75.97123,31.82846],[75.97091,31.83342],[75.96597,31.83827],[75.9612,31.85485],[75.94512,31.88361],[75.93875,31.89105],[75.93665,31.89882],[75.91556,31.93101],[75.91157,31.93982],[75.91041,31.95011],[75.90371,31.95272],[75.8925,31.96178],[75.88268,31.96582],[75.88303,31.96889],[75.87426,31.96946],[75.85698,31.9738],[75.85106,31.98201],[75.82171,31.98392],[75.79966,31.99375],[75.77979,32.00465],[75.76498,32.01991],[75.75084,32.03768],[75.74295,32.03945],[75.72386,32.03259],[75.71207,32.03998],[75.70332,32.05515],[75.69291,32.06043],[75.67767,32.06333],[75.67412,32.06711],[75.67425,32.0704],[75.66324,32.07401],[75.66292,32.07573],[75.65432,32.07732],[75.64622,32.07274],[75.63429,32.07124],[75.6307,32.07419],[75.60155,32.06554],[75.60003,32.06867],[75.59482,32.06947],[75.59579,32.07443],[75.59459,32.0784],[75.59691,32.08209],[75.59581,32.08574],[75.60016,32.09244],[75.61428,32.09441],[75.61981,32.09743],[75.62646,32.1074],[75.62727,32.11733],[75.6257,32.11874],[75.66002,32.13665],[75.67268,32.15922],[75.66346,32.16218],[75.66369,32.16429],[75.66615,32.16474],[75.66702,32.17839],[75.65831,32.17817],[75.65901,32.18278],[75.65669,32.18289],[75.65936,32.18371],[75.65988,32.18781],[75.66312,32.18958],[75.66192,32.19291],[75.65789,32.19382],[75.65534,32.19677],[75.64537,32.19248],[75.63772,32.1925],[75.63752,32.18704],[75.63304,32.18687],[75.63157,32.1896],[75.62377,32.19004],[75.62744,32.20684],[75.62583,32.20983],[75.6263,32.21602],[75.63261,32.21716],[75.63665,32.21984],[75.63732,32.22272],[75.63561,32.23167],[75.62226,32.23387],[75.61805,32.23581],[75.61846,32.23757],[75.63205,32.24405],[75.63671,32.24995],[75.64087,32.25222],[75.65809,32.25113],[75.7132,32.27218],[75.74667,32.27722],[75.77232,32.28936],[75.78172,32.31011],[75.80157,32.32836],[75.81483,32.33018],[75.81295,32.33506],[75.80751,32.34071],[75.81121,32.34849],[75.82749,32.35023],[75.83445,32.35728],[75.84381,32.35531],[75.8455,32.35907],[75.84477,32.36486],[75.85241,32.37949],[75.8565,32.38487],[75.86474,32.38879],[75.8736,32.39568],[75.88671,32.3962],[75.8939,32.3933],[75.90208,32.3941],[75.90494,32.39598],[75.90798,32.39334],[75.91452,32.39552],[75.91772,32.39483],[75.92003,32.39681],[75.92363,32.39123],[75.92873,32.39461],[75.93309,32.39158],[75.93651,32.39742],[75.93799,32.39754],[75.93115,32.39942],[75.93028,32.40223],[75.92159,32.41023],[75.91669,32.42001],[75.91994,32.42305],[75.92018,32.43009],[75.90555,32.43766],[75.90573,32.44088],[75.90103,32.44893],[75.90277,32.45233],[75.88591,32.46363],[75.88079,32.46417],[75.8764,32.47034],[75.8664,32.4771],[75.86359,32.48112],[75.8567,32.4845],[75.84415,32.49966],[75.84365,32.50341]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-PY","area_level":"State","area_name":"Puducherry","geometry_source":"SOI_States","same_as":"LGD/34/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.80913,10.87788],[79.80961,10.87799],[79.81003,10.87837],[79.81027,10.87954],[79.80976,10.88042],[79.80918,10.88061],[79.80748,10.88064],[79.80682,10.88036],[79.80605,10.87964],[79.80596,10.87906],[79.80695,10.87761],[79.80738,10.8775],[79.80913,10.87788]]],[[[79.73967,10.91984],[79.73984,10.92005],[79.73986,10.92062],[79.73981,10.92097],[79.7397,10.92132],[79.73954,10.92144],[79.7394,10.92145],[79.73917,10.92141],[79.73903,10.92119],[79.73907,10.92089],[79.73912,10.92067],[79.73894,10.92047],[79.73887,10.92036],[79.73883,10.9201],[79.7389,10.91988],[79.73919,10.91974],[79.73967,10.91984]]],[[[79.7223,10.93522],[79.72227,10.9362],[79.72293,10.93623],[79.72299,10.937],[79.72291,10.93714],[79.72256,10.9375],[79.72247,10.93827],[79.72193,10.93823],[79.72177,10.93724],[79.72045,10.93724],[79.72049,10.93623],[79.72189,10.93615],[79.72192,10.93518],[79.7223,10.93518],[79.7223,10.93522]]],[[[79.7197,10.95485],[79.71974,10.95595],[79.71838,10.95591],[79.71834,10.95483],[79.7197,10.95485]]],[[[79.75681,11.00262],[79.75584,11.00379],[79.75392,11.00254],[79.7468,11.00258],[79.74859,10.9979],[79.74842,10.99007],[79.74737,10.9883],[79.75261,10.98802],[79.7529,10.98287],[79.75856,10.98349],[79.75845,10.9798],[79.75571,10.97951],[79.75559,10.97797],[79.75269,10.97775],[79.75284,10.97689],[79.75479,10.97517],[79.75478,10.97188],[79.75674,10.97291],[79.75945,10.97219],[79.76058,10.96809],[79.7628,10.96653],[79.76229,10.96547],[79.76175,10.96637],[79.7617,10.965],[79.76396,10.95976],[79.75887,10.96059],[79.75576,10.95841],[79.74938,10.95846],[79.7461,10.95629],[79.74549,10.96272],[79.74645,10.96488],[79.74477,10.96621],[79.74185,10.96643],[79.74011,10.96435],[79.73896,10.96729],[79.73553,10.9675],[79.73528,10.96941],[79.73191,10.96931],[79.7312,10.97052],[79.73012,10.96949],[79.72604,10.96887],[79.72366,10.96976],[79.72201,10.96824],[79.72176,10.96917],[79.71969,10.96851],[79.72103,10.96505],[79.72048,10.95798],[79.71919,10.95718],[79.72151,10.9557],[79.72146,10.95417],[79.71974,10.95445],[79.71998,10.9526],[79.72474,10.95122],[79.72754,10.95212],[79.72995,10.95089],[79.73269,10.95143],[79.73255,10.95513],[79.73376,10.95479],[79.73358,10.95724],[79.73482,10.95693],[79.73479,10.95772],[79.7367,10.95743],[79.73662,10.95305],[79.73756,10.95258],[79.73718,10.94906],[79.73218,10.94781],[79.73088,10.94441],[79.7275,10.94403],[79.72435,10.94198],[79.72459,10.94086],[79.72549,10.94118],[79.72529,10.9384],[79.72743,10.93794],[79.72338,10.93618],[79.7233,10.93518],[79.725,10.93634],[79.72685,10.93557],[79.72684,10.9365],[79.7296,10.93629],[79.72959,10.93415],[79.72723,10.93527],[79.7259,10.93429],[79.7247,10.92972],[79.73027,10.9285],[79.73042,10.92749],[79.73321,10.92842],[79.736,10.92761],[79.73556,10.92486],[79.73837,10.92486],[79.73754,10.92584],[79.73952,10.92649],[79.73881,10.92346],[79.73978,10.9247],[79.74312,10.92504],[79.7438,10.91916],[79.74211,10.91819],[79.74336,10.91758],[79.74558,10.91947],[79.74512,10.91613],[79.74351,10.91607],[79.74338,10.91483],[79.75377,10.91404],[79.7544,10.91622],[79.75897,10.91661],[79.76243,10.91438],[79.76305,10.91335],[79.76097,10.91239],[79.75757,10.90786],[79.7595,10.90186],[79.75927,10.90093],[79.75789,10.90191],[79.75703,10.89647],[79.758,10.89837],[79.75983,10.89853],[79.76029,10.90048],[79.76175,10.89924],[79.76251,10.90043],[79.76095,10.90065],[79.76137,10.90175],[79.76357,10.89974],[79.76229,10.8992],[79.76238,10.89799],[79.75867,10.89721],[79.75781,10.89478],[79.75586,10.8946],[79.75629,10.89176],[79.75787,10.89147],[79.75836,10.89275],[79.76795,10.89246],[79.76785,10.89355],[79.76529,10.89437],[79.76515,10.89628],[79.777,10.89656],[79.7767,10.90541],[79.77924,10.90527],[79.77707,10.90712],[79.77742,10.90895],[79.77991,10.90881],[79.78213,10.90624],[79.78933,10.90844],[79.79541,10.90274],[79.7947,10.90211],[79.79136,10.90484],[79.792,10.90024],[79.79386,10.89869],[79.79245,10.8984],[79.79127,10.89596],[79.78953,10.89674],[79.78785,10.89551],[79.78256,10.89533],[79.78211,10.89043],[79.78366,10.88848],[79.78996,10.89034],[79.79036,10.89488],[79.79528,10.89085],[79.79469,10.88754],[79.79979,10.88735],[79.80108,10.89009],[79.80433,10.89106],[79.80711,10.8875],[79.81135,10.88844],[79.82328,10.88427],[79.82631,10.88478],[79.82858,10.88378],[79.82855,10.88209],[79.82467,10.88039],[79.82101,10.88136],[79.81931,10.87996],[79.8113,10.88034],[79.81111,10.87557],[79.82241,10.87424],[79.82332,10.87005],[79.82481,10.86903],[79.82491,10.86483],[79.81797,10.86345],[79.8117,10.85965],[79.80966,10.86566],[79.80749,10.86544],[79.80794,10.85562],[79.81376,10.84996],[79.81943,10.84914],[79.81926,10.84738],[79.82108,10.84556],[79.82527,10.84694],[79.82809,10.84967],[79.83107,10.82738],[79.85074,10.82783],[79.85095,10.84997],[79.84984,10.85822],[79.85165,10.87629],[79.85053,10.88557],[79.85218,10.90504],[79.85382,10.98322],[79.85195,10.98384],[79.85067,10.98739],[79.85153,10.99393],[79.83944,10.99584],[79.84013,11.0016],[79.83195,11.00282],[79.82899,11.00179],[79.82793,10.99814],[79.82579,10.99831],[79.823,11.00076],[79.82068,10.99816],[79.8155,11.00387],[79.81412,11.00312],[79.81489,11.00147],[79.81317,10.99915],[79.80815,10.99988],[79.80427,10.99764],[79.80325,10.9952],[79.80627,10.99295],[79.80571,10.99189],[79.80511,10.9928],[79.80383,10.9921],[79.80468,10.99097],[79.80407,10.98697],[79.80298,10.98842],[79.80184,10.98809],[79.79908,10.9859],[79.79947,10.98285],[79.79779,10.98249],[79.79393,10.98309],[79.78641,10.98961],[79.78615,10.99079],[79.78904,10.99124],[79.78655,10.99724],[79.78356,10.99668],[79.78359,10.99478],[79.77894,10.99686],[79.77987,10.9986],[79.76669,10.99733],[79.76327,10.9991],[79.76215,11.00135],[79.76007,10.99902],[79.75885,11.00191],[79.75681,11.00262]],[[79.76277,10.90902],[79.76406,10.91222],[79.76495,10.91129],[79.7639,10.90594],[79.76604,10.90531],[79.76789,10.90177],[79.76398,10.90146],[79.76535,10.90219],[79.76524,10.90354],[79.76218,10.90152],[79.7623,10.90341],[79.76508,10.90415],[79.76368,10.90465],[79.76303,10.90681],[79.76247,10.90623],[79.76277,10.90902]],[[79.76719,10.90119],[79.77043,10.90139],[79.76935,10.89997],[79.76695,10.9002],[79.76782,10.89871],[79.76664,10.89863],[79.76616,10.90061],[79.76719,10.90119]]],[[[75.54163,11.69953],[75.54206,11.70098],[75.54225,11.70209],[75.54343,11.70315],[75.54423,11.70454],[75.54287,11.70539],[75.5393,11.70901],[75.53826,11.70961],[75.53732,11.70971],[75.53567,11.70967],[75.53426,11.70901],[75.53305,11.7058],[75.53209,11.70471],[75.53004,11.70357],[75.53014,11.70345],[75.52998,11.70281],[75.52932,11.70272],[75.52886,11.70228],[75.52904,11.70129],[75.53013,11.70074],[75.53133,11.7003],[75.53172,11.69936],[75.53144,11.69923],[75.5316,11.69876],[75.53223,11.69882],[75.53232,11.69911],[75.53375,11.69799],[75.53483,11.69565],[75.53623,11.69354],[75.53994,11.6962],[75.54097,11.69633],[75.54144,11.69601],[75.54163,11.69601],[75.54148,11.6968],[75.54163,11.6975],[75.54144,11.69754],[75.54149,11.69782],[75.54168,11.69782],[75.54182,11.69847],[75.54149,11.69861],[75.54163,11.69953]]],[[[79.67992,11.81443],[79.67941,11.81458],[79.67593,11.8143],[79.67468,11.80586],[79.67458,11.80354],[79.67575,11.80226],[79.67742,11.7997],[79.67845,11.79842],[79.68005,11.79705],[79.68142,11.79624],[79.68393,11.80217],[79.68563,11.80176],[79.68571,11.80252],[79.68966,11.80214],[79.69057,11.807],[79.69062,11.80857],[79.68945,11.80907],[79.68862,11.81066],[79.68813,11.81224],[79.6853,11.81257],[79.68313,11.81311],[79.67992,11.81443]]],[[[79.69922,11.82304],[79.69459,11.82304],[79.69435,11.81871],[79.69393,11.81682],[79.69299,11.81374],[79.69556,11.81369],[79.69805,11.81378],[79.69918,11.81365],[79.70172,11.81365],[79.70423,11.81347],[79.70413,11.81394],[79.70386,11.81453],[79.70289,11.81577],[79.70275,11.8162],[79.70258,11.8172],[79.70228,11.82098],[79.702,11.82291],[79.70039,11.82293],[79.69922,11.82304]]],[[[75.53831,11.76272],[75.53623,11.7627],[75.53584,11.76228],[75.53575,11.76105],[75.53239,11.75974],[75.53123,11.75871],[75.53189,11.75759],[75.53388,11.75693],[75.53438,11.75638],[75.53472,11.7526],[75.53566,11.75122],[75.53744,11.75038],[75.53744,11.74866],[75.53906,11.74918],[75.54026,11.74847],[75.54169,11.74295],[75.54119,11.73982],[75.54146,11.73889],[75.54092,11.73871],[75.54011,11.73491],[75.53607,11.73435],[75.53602,11.73355],[75.53172,11.73466],[75.53082,11.73096],[75.52961,11.73087],[75.52898,11.73034],[75.52827,11.7295],[75.52763,11.72747],[75.52669,11.72663],[75.52656,11.72606],[75.52727,11.72287],[75.52704,11.72181],[75.52754,11.72149],[75.52708,11.72057],[75.52807,11.71844],[75.52783,11.71601],[75.52815,11.71592],[75.5286,11.71677],[75.52914,11.71676],[75.53071,11.71587],[75.53156,11.71588],[75.53218,11.71393],[75.53079,11.71362],[75.53056,11.71044],[75.53029,11.71009],[75.52903,11.70979],[75.52908,11.70908],[75.53042,11.70884],[75.531,11.70826],[75.53176,11.70896],[75.53083,11.71021],[75.53235,11.71011],[75.53409,11.71095],[75.5359,11.71126],[75.53661,11.71196],[75.53737,11.71218],[75.53692,11.71254],[75.5371,11.71333],[75.5367,11.71351],[75.53581,11.71316],[75.53504,11.7136],[75.53451,11.71325],[75.53392,11.71396],[75.53325,11.71391],[75.53263,11.71515],[75.5325,11.71621],[75.53424,11.71682],[75.53443,11.71771],[75.53653,11.7193],[75.5373,11.71894],[75.5376,11.71607],[75.53881,11.71633],[75.5415,11.71553],[75.5419,11.71571],[75.54226,11.71663],[75.54292,11.71633],[75.54373,11.7165],[75.54404,11.71751],[75.54578,11.71751],[75.54596,11.71685],[75.54677,11.71676],[75.54713,11.71583],[75.5478,11.71543],[75.54829,11.71689],[75.54995,11.71719],[75.55135,11.71905],[75.55426,11.71944],[75.55534,11.72147],[75.55494,11.72372],[75.55562,11.7276],[75.54998,11.73115],[75.54475,11.73267],[75.54465,11.73412],[75.54427,11.73454],[75.54324,11.7344],[75.54207,11.73719],[75.54278,11.74025],[75.54335,11.74136],[75.54298,11.74294],[75.54449,11.74646],[75.54492,11.75023],[75.54443,11.75123],[75.54472,11.75353],[75.54644,11.75627],[75.5441,11.7591],[75.54264,11.75948],[75.54136,11.75937],[75.53935,11.76086],[75.53895,11.76002],[75.53862,11.76014],[75.53831,11.76272]]],[[[79.73772,11.84296],[79.73743,11.84431],[79.73673,11.84421],[79.73821,11.83692],[79.72945,11.83696],[79.73239,11.8334],[79.73166,11.8244],[79.73275,11.8238],[79.73301,11.81813],[79.73479,11.81685],[79.73429,11.81434],[79.73467,11.8131],[79.73592,11.81248],[79.73572,11.80932],[79.7298,11.80926],[79.72987,11.81003],[79.72452,11.81044],[79.72424,11.80751],[79.72553,11.80585],[79.7253,11.80315],[79.72312,11.80285],[79.72262,11.79962],[79.72352,11.79906],[79.72282,11.79649],[79.71702,11.79755],[79.71676,11.79646],[79.71391,11.7963],[79.71236,11.79151],[79.71292,11.79083],[79.71988,11.78495],[79.72186,11.78686],[79.7247,11.7834],[79.72618,11.78252],[79.7319,11.78076],[79.74027,11.78089],[79.74978,11.77609],[79.7551,11.77523],[79.75596,11.77535],[79.7576,11.78345],[79.7584,11.7838],[79.75836,11.78494],[79.75999,11.78702],[79.76096,11.78694],[79.762,11.79079],[79.76315,11.79056],[79.76591,11.79183],[79.76882,11.79073],[79.76886,11.78912],[79.77066,11.78951],[79.77109,11.78814],[79.77038,11.78714],[79.77022,11.78342],[79.77194,11.78218],[79.77478,11.7819],[79.77499,11.78246],[79.77867,11.78113],[79.78049,11.78111],[79.78124,11.7843],[79.78308,11.78495],[79.78443,11.78734],[79.79586,11.78572],[79.79852,11.802],[79.80494,11.82751],[79.80706,11.83349],[79.80225,11.83389],[79.80139,11.83467],[79.80043,11.83766],[79.79829,11.8387],[79.79768,11.83786],[79.79814,11.83465],[79.79384,11.83355],[79.79364,11.83235],[79.79601,11.83324],[79.79868,11.8333],[79.8007,11.83064],[79.80053,11.82903],[79.7984,11.82755],[79.79836,11.82573],[79.79754,11.82456],[79.796,11.8247],[79.79507,11.82569],[79.79625,11.82692],[79.7958,11.8285],[79.79236,11.82755],[79.78739,11.82935],[79.78649,11.83099],[79.78022,11.83184],[79.77838,11.83171],[79.77623,11.82866],[79.77471,11.82864],[79.77438,11.82694],[79.77332,11.82638],[79.77304,11.82267],[79.77114,11.82266],[79.77105,11.82327],[79.77004,11.82344],[79.77013,11.82259],[79.76782,11.8227],[79.76775,11.82334],[79.76499,11.82412],[79.76533,11.83189],[79.76443,11.83373],[79.75571,11.83687],[79.7557,11.83754],[79.75077,11.83863],[79.74868,11.84069],[79.73964,11.84237],[79.73892,11.84365],[79.73772,11.84296]]],[[[79.65295,11.84265],[79.65155,11.84383],[79.64732,11.84422],[79.64719,11.84226],[79.64596,11.84231],[79.64535,11.83906],[79.64578,11.83896],[79.64594,11.83567],[79.64579,11.83502],[79.64461,11.83365],[79.64324,11.82608],[79.64257,11.82578],[79.64189,11.8248],[79.64104,11.82441],[79.64105,11.82279],[79.64434,11.82221],[79.64452,11.82122],[79.64518,11.82098],[79.64501,11.82021],[79.64708,11.81968],[79.64628,11.81637],[79.64786,11.81601],[79.64798,11.81543],[79.65036,11.81521],[79.65272,11.81444],[79.65791,11.81384],[79.65965,11.81287],[79.66066,11.81367],[79.66342,11.81306],[79.66519,11.815],[79.67129,11.81488],[79.67131,11.82365],[79.66595,11.82453],[79.6634,11.82529],[79.66245,11.82581],[79.65946,11.8294],[79.65949,11.83003],[79.66063,11.83263],[79.66189,11.83755],[79.66178,11.83942],[79.65455,11.84186],[79.65295,11.84265]]],[[[79.69984,11.87392],[79.69974,11.87427],[79.69948,11.8743],[79.69903,11.87378],[79.69876,11.87365],[79.69723,11.87408],[79.69712,11.87171],[79.696,11.86035],[79.69907,11.86129],[79.69949,11.86762],[79.69941,11.86912],[79.69984,11.87392]]],[[[79.79332,11.88455],[79.79159,11.885],[79.79125,11.88393],[79.79295,11.88348],[79.79332,11.88455]]],[[[79.63411,11.88106],[79.62989,11.88129],[79.62978,11.88868],[79.62491,11.88925],[79.62496,11.8908],[79.62122,11.8906],[79.61892,11.88637],[79.61847,11.88615],[79.61819,11.88459],[79.61762,11.88435],[79.61711,11.88341],[79.6119,11.87898],[79.60815,11.87686],[79.60741,11.87844],[79.60459,11.88135],[79.60168,11.88267],[79.59941,11.88301],[79.60007,11.87584],[79.60056,11.87568],[79.60138,11.87115],[79.6027,11.87174],[79.60315,11.86875],[79.602,11.85786],[79.60448,11.85873],[79.60564,11.85872],[79.60764,11.8601],[79.61066,11.86002],[79.61021,11.86067],[79.61251,11.86169],[79.61223,11.86263],[79.61406,11.86274],[79.61408,11.86303],[79.61951,11.86269],[79.61973,11.86812],[79.61915,11.87019],[79.62431,11.86948],[79.62846,11.8698],[79.62857,11.86532],[79.62727,11.86482],[79.62692,11.8575],[79.62634,11.85467],[79.62868,11.85389],[79.63615,11.85292],[79.64713,11.85074],[79.64713,11.85016],[79.65284,11.8505],[79.65378,11.85099],[79.65384,11.85174],[79.65685,11.85207],[79.65692,11.85251],[79.65789,11.85266],[79.65869,11.85486],[79.66126,11.8593],[79.66175,11.85935],[79.66165,11.86118],[79.66342,11.86125],[79.66335,11.86545],[79.66276,11.86551],[79.66273,11.86725],[79.65928,11.86773],[79.65923,11.86863],[79.65781,11.8687],[79.65775,11.87009],[79.64858,11.87053],[79.64839,11.88045],[79.64052,11.88059],[79.64116,11.88663],[79.6357,11.88814],[79.6347,11.88876],[79.6345,11.88104],[79.63411,11.88106]]],[[[79.79099,11.89533],[79.78926,11.89584],[79.78902,11.89504],[79.79071,11.89455],[79.79099,11.89533]]],[[[79.68767,11.96911],[79.68785,11.9696],[79.68651,11.97325],[79.68035,11.97286],[79.68019,11.97188],[79.6784,11.97183],[79.67776,11.96886],[79.67678,11.96886],[79.67667,11.96811],[79.67509,11.96832],[79.67483,11.96791],[79.67277,11.96778],[79.66959,11.96856],[79.66756,11.96823],[79.6622,11.96917],[79.66266,11.96682],[79.66198,11.96277],[79.66193,11.96255],[79.66052,11.96258],[79.66002,11.95839],[79.65918,11.9583],[79.65721,11.95861],[79.65612,11.95918],[79.6542,11.9595],[79.65435,11.96052],[79.65379,11.96067],[79.65281,11.95786],[79.65464,11.95349],[79.65542,11.95308],[79.65685,11.95283],[79.65735,11.95248],[79.65823,11.95251],[79.65828,11.9512],[79.6587,11.95106],[79.65878,11.95007],[79.66015,11.95003],[79.66033,11.95028],[79.66123,11.95023],[79.66127,11.9505],[79.6637,11.9509],[79.66465,11.95074],[79.6668,11.94983],[79.67071,11.94935],[79.67093,11.94889],[79.67184,11.94849],[79.67194,11.94812],[79.67322,11.94787],[79.67373,11.9484],[79.67658,11.94845],[79.67669,11.94956],[79.67834,11.95003],[79.68015,11.95172],[79.6828,11.95236],[79.68276,11.95305],[79.68466,11.95335],[79.68462,11.95376],[79.68396,11.95373],[79.68383,11.95435],[79.68352,11.95448],[79.68341,11.95522],[79.68344,11.95632],[79.68381,11.95681],[79.68432,11.96014],[79.68389,11.96041],[79.68464,11.96263],[79.68767,11.96911]]],[[[79.74685,12.00755],[79.74373,12.00364],[79.74152,12.00394],[79.74132,12.00122],[79.73768,12.00095],[79.7375,11.99848],[79.73479,11.99747],[79.73343,11.99326],[79.72057,11.99274],[79.7159,11.98484],[79.71451,11.98497],[79.71465,11.98639],[79.71242,11.98655],[79.70927,11.97581],[79.71602,11.97106],[79.71503,11.96764],[79.71082,11.96728],[79.71021,11.96578],[79.7026,11.96702],[79.70368,11.96547],[79.69797,11.96049],[79.69569,11.96392],[79.69166,11.95132],[79.69576,11.9477],[79.69731,11.94175],[79.70429,11.94017],[79.70653,11.93727],[79.70662,11.93517],[79.71122,11.93307],[79.70795,11.94193],[79.70792,11.94666],[79.70968,11.94996],[79.72089,11.9449],[79.71753,11.92899],[79.72552,11.92316],[79.73221,11.91371],[79.7407,11.90544],[79.73131,11.90321],[79.7305,11.89173],[79.72888,11.89021],[79.72282,11.89172],[79.72331,11.88992],[79.72499,11.88929],[79.72373,11.88861],[79.72097,11.8905],[79.71883,11.89043],[79.71689,11.89279],[79.71119,11.89071],[79.70943,11.893],[79.70528,11.89392],[79.70606,11.89936],[79.70854,11.90158],[79.70895,11.90431],[79.70661,11.90519],[79.7066,11.91362],[79.71795,11.91336],[79.71866,11.91904],[79.6962,11.91917],[79.6956,11.90789],[79.69776,11.9076],[79.6979,11.90473],[79.69762,11.90243],[79.69574,11.90241],[79.69539,11.89479],[79.68716,11.89454],[79.68684,11.88889],[79.68263,11.88878],[79.68282,11.89197],[79.67385,11.89161],[79.674,11.8807],[79.68506,11.88098],[79.68561,11.88488],[79.68468,11.88585],[79.68654,11.88647],[79.69658,11.88667],[79.69686,11.88858],[79.69961,11.88911],[79.70982,11.88929],[79.71072,11.88759],[79.70945,11.88497],[79.70826,11.86909],[79.71271,11.86665],[79.71343,11.86067],[79.71775,11.85414],[79.71975,11.85311],[79.71946,11.85675],[79.72112,11.8625],[79.73259,11.86256],[79.73269,11.86562],[79.7397,11.86464],[79.74195,11.8628],[79.7436,11.85857],[79.74405,11.85292],[79.74246,11.85159],[79.74311,11.84832],[79.74868,11.84908],[79.7504,11.84793],[79.75393,11.85012],[79.75387,11.86593],[79.75549,11.86785],[79.75868,11.86847],[79.75743,11.87607],[79.76399,11.87697],[79.76453,11.87545],[79.76853,11.87593],[79.77009,11.87461],[79.76928,11.86507],[79.77088,11.86133],[79.7695,11.85827],[79.76696,11.858],[79.76513,11.85194],[79.7632,11.85183],[79.76217,11.84839],[79.76433,11.84687],[79.76616,11.84055],[79.77244,11.83662],[79.77588,11.83841],[79.77672,11.8452],[79.78016,11.84811],[79.78173,11.85577],[79.80067,11.85527],[79.8027,11.85401],[79.8031,11.85073],[79.80513,11.84935],[79.80529,11.84766],[79.80774,11.84673],[79.80821,11.84526],[79.80614,11.84044],[79.80656,11.83708],[79.80782,11.83658],[79.81552,11.86043],[79.82269,11.87648],[79.825,11.89065],[79.8343,11.92403],[79.84064,11.95579],[79.83281,11.95652],[79.82885,11.95833],[79.82487,11.96152],[79.82235,11.96577],[79.8185,11.97789],[79.8163,11.97903],[79.8126,11.97789],[79.80981,11.97522],[79.80648,11.96802],[79.80507,11.95326],[79.80334,11.95314],[79.79173,11.95938],[79.78472,11.95986],[79.78348,11.95626],[79.78085,11.95653],[79.77947,11.95356],[79.77677,11.9537],[79.7751,11.94973],[79.7732,11.94908],[79.77153,11.94389],[79.75994,11.9436],[79.7607,11.93202],[79.76099,11.9307],[79.76218,11.93082],[79.7622,11.92854],[79.75726,11.92817],[79.75644,11.92604],[79.75508,11.92601],[79.75512,11.92441],[79.7564,11.92426],[79.75628,11.92039],[79.75027,11.91991],[79.75112,11.92169],[79.74932,11.92216],[79.7487,11.94399],[79.74453,11.96496],[79.72963,11.97067],[79.72452,11.97123],[79.7235,11.97705],[79.72648,11.98576],[79.73041,11.98594],[79.72958,11.98468],[79.73199,11.98148],[79.73569,11.97912],[79.74195,11.97767],[79.74812,11.98475],[79.75191,11.98427],[79.75552,11.98829],[79.76042,11.9892],[79.76207,11.99312],[79.76237,12.00269],[79.74685,12.00755]],[[79.77539,11.90499],[79.77992,11.90413],[79.78767,11.89684],[79.7965,11.89989],[79.79675,11.89429],[79.79483,11.88521],[79.79212,11.88033],[79.79237,11.87685],[79.78959,11.87716],[79.78721,11.87333],[79.78521,11.86283],[79.77833,11.86316],[79.77769,11.86672],[79.7799,11.87239],[79.77967,11.87791],[79.7762,11.87822],[79.77284,11.87522],[79.77356,11.88329],[79.77102,11.88344],[79.77202,11.88537],[79.77053,11.89088],[79.77288,11.90044],[79.7692,11.90066],[79.76925,11.90174],[79.76984,11.90277],[79.77516,11.90183],[79.77539,11.90499]]],[[[79.7924,12.02582],[79.79016,12.02629],[79.78907,12.02645],[79.7888,12.02638],[79.7888,12.02574],[79.78963,12.02425],[79.78998,12.02333],[79.78998,12.02291],[79.78958,12.02092],[79.78953,12.01998],[79.78911,12.01823],[79.79065,12.01775],[79.79262,12.01738],[79.79352,12.01698],[79.79461,12.01683],[79.79494,12.01683],[79.7952,12.01736],[79.7956,12.01749],[79.79618,12.0168],[79.79691,12.0167],[79.80186,12.01707],[79.80202,12.01723],[79.80194,12.01777],[79.80213,12.01861],[79.80252,12.01914],[79.80362,12.01972],[79.80505,12.021],[79.80521,12.02166],[79.80524,12.02237],[79.805,12.02323],[79.80577,12.0242],[79.80567,12.02449],[79.80434,12.02586],[79.80125,12.02596],[79.79821,12.02548],[79.79727,12.02556],[79.79698,12.0257],[79.79586,12.02574],[79.79254,12.02535],[79.7924,12.02582]]],[[[79.62817,12.03226],[79.62553,12.03217],[79.6251,12.03129],[79.62576,12.02853],[79.62725,12.02685],[79.6268,12.02376],[79.6282,12.02335],[79.62804,12.02098],[79.62905,12.0188],[79.62583,12.01539],[79.62071,12.01353],[79.62082,12.01115],[79.61929,12.00483],[79.61968,12.00042],[79.62632,12.00036],[79.62445,11.99208],[79.62361,11.98932],[79.61718,11.98955],[79.61797,11.98498],[79.61977,11.98486],[79.61978,11.98397],[79.62082,11.98394],[79.62085,11.98238],[79.62437,11.98179],[79.62376,11.97857],[79.62457,11.97601],[79.61872,11.97099],[79.61861,11.96995],[79.62245,11.96994],[79.62251,11.96929],[79.62749,11.96815],[79.6266,11.96427],[79.62876,11.9596],[79.6284,11.94514],[79.62475,11.94313],[79.61886,11.94332],[79.61795,11.93604],[79.61851,11.93608],[79.61825,11.93213],[79.61888,11.93028],[79.61849,11.92606],[79.62703,11.92178],[79.62838,11.91948],[79.62532,11.90303],[79.63209,11.90126],[79.63651,11.90142],[79.64071,11.9022],[79.64111,11.90778],[79.65588,11.9079],[79.65605,11.91293],[79.66267,11.9131],[79.6627,11.91517],[79.6611,11.91518],[79.66103,11.91631],[79.66258,11.91645],[79.66267,11.91819],[79.66887,11.91827],[79.669,11.92602],[79.6707,11.93158],[79.66982,11.93162],[79.66977,11.93272],[79.67035,11.93272],[79.66974,11.93499],[79.67035,11.935],[79.6696,11.93553],[79.66933,11.93751],[79.66418,11.93834],[79.66426,11.93698],[79.66067,11.93716],[79.66041,11.94155],[79.65862,11.94197],[79.65865,11.94461],[79.65753,11.94508],[79.65654,11.94702],[79.65748,11.94805],[79.65289,11.94823],[79.65202,11.94357],[79.64721,11.94459],[79.64477,11.94381],[79.64265,11.9421],[79.64251,11.9473],[79.64185,11.94846],[79.64223,11.95399],[79.64731,11.95343],[79.64688,11.95662],[79.64769,11.95843],[79.64761,11.96431],[79.64852,11.96759],[79.64131,11.97053],[79.64032,11.97627],[79.63644,11.97785],[79.6379,11.98487],[79.63917,11.98821],[79.63997,11.98832],[79.64039,11.99103],[79.64148,11.99163],[79.63807,11.99354],[79.63602,11.99604],[79.63645,11.99809],[79.64105,11.99821],[79.64231,11.99923],[79.64389,12.00517],[79.64531,12.00471],[79.64629,12.0105],[79.64593,12.0119],[79.64692,12.01557],[79.64784,12.01581],[79.64733,12.01691],[79.64779,12.01875],[79.651,12.02181],[79.64471,12.02706],[79.63983,12.02783],[79.6375,12.02654],[79.63643,12.02817],[79.63492,12.02839],[79.63526,12.02942],[79.63358,12.02905],[79.63338,12.03024],[79.62817,12.03226]]],[[[79.69701,12.0326],[79.69521,12.03313],[79.69503,12.03393],[79.69379,12.03414],[79.69396,12.03481],[79.69153,12.03467],[79.69147,12.03329],[79.68977,12.02785],[79.68793,12.02785],[79.68755,12.02694],[79.68648,12.02696],[79.68623,12.02626],[79.68507,12.0264],[79.68342,12.02161],[79.6826,12.02177],[79.68146,12.02094],[79.67548,12.02137],[79.67304,12.01703],[79.67324,12.01571],[79.67156,12.01235],[79.67132,12.01006],[79.66163,12.0123],[79.6605,12.0114],[79.65977,12.01062],[79.65989,12.00979],[79.65947,12.00978],[79.65943,12.00814],[79.65799,12.00633],[79.65762,12.00516],[79.65807,12.00441],[79.65796,12.00168],[79.65844,12.00141],[79.65696,11.994],[79.65702,11.99139],[79.66056,11.99028],[79.66086,11.98921],[79.66252,11.98952],[79.66406,11.99043],[79.6673,11.99096],[79.67073,11.99321],[79.67192,11.9947],[79.6739,11.9951],[79.67426,11.99294],[79.67803,11.98625],[79.68093,11.98341],[79.68145,11.98557],[79.68194,11.98568],[79.68318,11.98779],[79.68327,11.98913],[79.68439,11.98974],[79.68547,11.99164],[79.68949,11.99009],[79.69356,11.98997],[79.69402,11.99109],[79.6946,11.99106],[79.69472,11.99199],[79.70144,11.99188],[79.70165,11.99344],[79.70219,11.99342],[79.70232,11.99418],[79.70549,11.99395],[79.7056,11.99461],[79.71464,11.99068],[79.71799,11.99042],[79.7182,11.99157],[79.71771,11.9917],[79.71786,11.9923],[79.71961,11.99222],[79.71967,11.99291],[79.71802,11.99295],[79.71844,11.99519],[79.71746,11.99602],[79.71756,11.99782],[79.71538,11.99825],[79.71513,12.00025],[79.71254,12.0014],[79.71161,12.00237],[79.71141,12.00355],[79.70823,12.0042],[79.70747,12.00597],[79.70645,12.00608],[79.70651,12.00675],[79.70436,12.00746],[79.70428,12.00807],[79.70305,12.00815],[79.70317,12.00962],[79.70251,12.00984],[79.70268,12.01295],[79.7016,12.01383],[79.70275,12.01942],[79.70334,12.01944],[79.70441,12.02704],[79.70423,12.02954],[79.70359,12.03142],[79.7025,12.03211],[79.69769,12.03308],[79.69741,12.03247],[79.69701,12.0326]]],[[[79.85713,12.00677],[79.86404,12.02172],[79.87176,12.03742],[79.87365,12.04203],[79.87241,12.04315],[79.8685,12.04517],[79.84977,12.05131],[79.84777,12.04446],[79.84611,12.04103],[79.84443,12.0361],[79.8439,12.03052],[79.84397,12.02419],[79.84282,12.02217],[79.8414,12.01711],[79.8409,12.01281],[79.84375,12.0114],[79.84988,12.00927],[79.8568,12.00605],[79.85713,12.00677]]],[[[82.21879,16.73999],[82.21783,16.74331],[82.22758,16.75689],[82.22961,16.76236],[82.22547,16.7637],[82.21892,16.76023],[82.21502,16.75572],[82.20459,16.74848],[82.19656,16.73922],[82.18814,16.7401],[82.18245,16.73711],[82.18691,16.72833],[82.20141,16.72052],[82.21037,16.71976],[82.22327,16.72186],[82.23524,16.71677],[82.25437,16.70362],[82.26128,16.70192],[82.27252,16.70274],[82.28417,16.70533],[82.293,16.70966],[82.30264,16.71826],[82.30727,16.72634],[82.31062,16.73504],[82.30885,16.74551],[82.30553,16.75253],[82.3015,16.75518],[82.29688,16.75312],[82.29287,16.74666],[82.28851,16.73491],[82.2715,16.73151],[82.25276,16.73107],[82.23485,16.72927],[82.22824,16.7304],[82.22258,16.73727],[82.21879,16.73999]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-RJ","area_level":"State","area_name":"Rajasthan","geometry_source":"SOI_States","same_as":"LGD/8/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[75.21605,24.88896],[75.21435,24.89207],[75.21327,24.89332],[75.21095,24.89409],[75.20847,24.8943],[75.20805,24.89349],[75.20877,24.89168],[75.2076,24.88788],[75.20541,24.87701],[75.20504,24.87584],[75.20258,24.87293],[75.20073,24.86784],[75.20173,24.86653],[75.2053,24.86475],[75.20645,24.86295],[75.20814,24.8614],[75.20901,24.85901],[75.20874,24.85403],[75.21002,24.85444],[75.21601,24.85075],[75.21794,24.84655],[75.2203,24.84577],[75.22264,24.84409],[75.22607,24.84505],[75.23266,24.84812],[75.23634,24.8518],[75.23783,24.85455],[75.24304,24.86065],[75.24672,24.86197],[75.24913,24.86707],[75.24913,24.87036],[75.25067,24.88051],[75.24656,24.88347],[75.2456,24.88506],[75.24296,24.88722],[75.23894,24.8866],[75.23783,24.88581],[75.23601,24.88321],[75.23312,24.88087],[75.23008,24.87729],[75.22896,24.87654],[75.22615,24.87566],[75.22344,24.87408],[75.22163,24.87378],[75.22018,24.87459],[75.2194,24.87561],[75.21967,24.87928],[75.22126,24.88272],[75.22121,24.88542],[75.22027,24.88788],[75.21772,24.88894],[75.21605,24.88896]]],[[[74.49624,29.94455],[74.13658,29.9654],[73.89512,29.97408],[73.89539,29.98221],[73.88622,29.99603],[73.88653,30.01249],[73.89362,30.02189],[73.90405,30.05012],[73.92989,30.06875],[73.94952,30.09614],[73.95217,30.10434],[73.96763,30.11929],[73.97565,30.12099],[73.97082,30.12541],[73.96814,30.14484],[73.96833,30.16867],[73.97215,30.17524],[73.97383,30.18194],[73.97433,30.18911],[73.97256,30.19815],[73.9097,30.15042],[73.82782,30.09233],[73.81993,30.08529],[73.80656,30.06803],[73.597,30.01898],[73.39693,29.946],[73.33702,29.74518],[73.28389,29.58105],[73.2821,29.57203],[73.08443,29.23627],[73.00436,29.15295],[72.94584,29.02795],[72.73309,28.94809],[72.4794,28.81208],[72.40377,28.783],[72.3907,28.77036],[72.3546,28.73353],[72.29924,28.66975],[72.28072,28.60891],[72.23418,28.47873],[72.20613,28.39427],[72.13224,28.3131],[72.00429,28.21866],[71.92736,28.12174],[71.89834,27.96121],[71.89176,27.95968],[71.88997,27.95481],[71.89176,27.95968],[71.8829,27.95763],[71.66643,27.87776],[71.38306,27.87263],[71.20554,27.83542],[71.15039,27.81371],[71.06199,27.77409],[70.98269,27.74223],[70.9632,27.72938],[70.9512,27.72885],[70.90612,27.70959],[70.87184,27.7056],[70.75932,27.72127],[70.75067,27.73361],[70.73977,27.74192],[70.73241,27.76033],[70.69818,27.81118],[70.68437,27.82819],[70.67849,27.87243],[70.6774,27.92185],[70.59854,27.99315],[70.58946,28.01044],[70.55432,28.02632],[70.50582,28.03704],[70.48874,28.03458],[70.43947,28.02024],[70.37219,28.01183],[70.29618,27.93602],[70.22701,27.90137],[70.20649,27.87921],[70.19765,27.86722],[70.14537,27.8205],[70.1324,27.80596],[70.12361,27.78876],[70.07224,27.66314],[70.0259,27.56292],[69.96629,27.52351],[69.93389,27.49783],[69.89093,27.4335],[69.86248,27.40181],[69.78328,27.34265],[69.76014,27.32103],[69.71352,27.29244],[69.70271,27.28432],[69.64267,27.22336],[69.62794,27.21106],[69.60053,27.19415],[69.58684,27.18332],[69.51331,27.00998],[69.51371,27.00213],[69.49787,26.86835],[69.48848,26.83024],[69.48443,26.80484],[69.48617,26.79802],[69.51031,26.7435],[69.72249,26.65331],[69.7919,26.59831],[69.82312,26.58903],[69.88677,26.57887],[69.93466,26.58153],[70.05623,26.60057],[70.1172,26.58688],[70.13845,26.57162],[70.15502,26.56378],[70.17418,26.55144],[70.17948,26.50574],[70.18351,26.49377],[70.18462,26.48164],[70.1769,26.42401],[70.18536,26.37433],[70.17907,26.34271],[70.16351,26.29493],[70.17505,26.25153],[70.16827,26.21809],[70.14125,26.15579],[70.14342,26.15275],[70.14119,26.15586],[70.13877,26.1533],[70.08339,26.08329],[70.09976,25.93826],[70.17445,25.82837],[70.19711,25.81548],[70.22241,25.79311],[70.24724,25.76161],[70.25169,25.75524],[70.26273,25.72021],[70.26865,25.7136],[70.35856,25.68011],[70.387,25.67383],[70.4486,25.68196],[70.50222,25.68477],[70.53015,25.68348],[70.59395,25.71062],[70.60885,25.71497],[70.64726,25.71261],[70.66007,25.70215],[70.67393,25.67584],[70.67355,25.64466],[70.67021,25.63263],[70.67135,25.61099],[70.66941,25.59354],[70.66714,25.53134],[70.67845,25.5252],[70.67138,25.46093],[70.6728,25.45714],[70.67201,25.42025],[70.66481,25.39688],[70.68718,25.37517],[70.7368,25.33256],[70.75158,25.27782],[70.84219,25.19061],[70.88867,25.14817],[70.91122,25.03084],[70.91978,24.99569],[70.93763,24.93856],[70.94396,24.92546],[70.957,24.91042],[70.99212,24.86344],[71.01801,24.81924],[71.02648,24.80885],[71.03384,24.78804],[71.0653,24.71746],[71.10718,24.67971],[71.1134,24.67526],[71.28782,24.61623],[71.2987,24.62407],[71.298,24.62612],[71.30455,24.62866],[71.30437,24.63528],[71.3135,24.64765],[71.34817,24.66094],[71.35864,24.63075],[71.36713,24.6293],[71.36934,24.62642],[71.37327,24.6277],[71.3778,24.62597],[71.38129,24.62887],[71.38299,24.63366],[71.39116,24.63129],[71.39623,24.63503],[71.39838,24.64078],[71.42258,24.64783],[71.42901,24.65692],[71.44772,24.66839],[71.46199,24.66652],[71.47917,24.67965],[71.49136,24.67926],[71.5,24.68043],[71.50264,24.68214],[71.51375,24.67892],[71.52134,24.68317],[71.5289,24.6847],[71.54183,24.67576],[71.56021,24.67852],[71.573,24.68342],[71.5777,24.6814],[71.58453,24.67005],[71.58975,24.66716],[71.6076,24.67655],[71.6111,24.67299],[71.61682,24.67087],[71.61926,24.6674],[71.62415,24.66972],[71.62686,24.66712],[71.62474,24.66386],[71.62737,24.66427],[71.62888,24.65992],[71.63875,24.65954],[71.63994,24.65128],[71.64392,24.64393],[71.64724,24.64458],[71.65537,24.63919],[71.66271,24.64442],[71.66448,24.64344],[71.67745,24.64631],[71.69043,24.6542],[71.6971,24.65445],[71.70636,24.6613],[71.73556,24.66005],[71.74774,24.66507],[71.76243,24.66863],[71.77269,24.67587],[71.78027,24.67491],[71.79153,24.67734],[71.80296,24.67165],[71.81039,24.65606],[71.80253,24.63113],[71.8059,24.62675],[71.81604,24.62032],[71.82127,24.62017],[71.83084,24.62339],[71.83783,24.6213],[71.85217,24.60936],[71.85562,24.62207],[71.86539,24.63071],[71.85749,24.6522],[71.85777,24.66617],[71.86135,24.6723],[71.87175,24.68177],[71.87655,24.68164],[71.88503,24.67755],[71.88823,24.67214],[71.89952,24.67674],[71.9075,24.67756],[71.91861,24.67211],[71.92017,24.67092],[71.92032,24.66416],[71.91701,24.66029],[71.91164,24.65857],[71.91544,24.64951],[71.9255,24.63604],[71.93601,24.6354],[71.93864,24.6365],[71.93987,24.6338],[71.94618,24.64109],[71.95528,24.64524],[71.96425,24.64583],[71.97744,24.65692],[71.9883,24.65753],[71.98275,24.673],[71.98385,24.68595],[71.99383,24.69506],[71.99516,24.69317],[72.0011,24.69488],[72.00143,24.68841],[72.00593,24.69043],[72.0125,24.69058],[72.01783,24.69478],[72.02846,24.69733],[72.03494,24.70245],[72.04258,24.70437],[72.04853,24.71056],[72.06133,24.71211],[72.0852,24.70641],[72.09116,24.69097],[72.09275,24.68195],[72.08614,24.67759],[72.08721,24.67002],[72.09002,24.66414],[72.08982,24.6587],[72.09806,24.65612],[72.10248,24.65046],[72.10762,24.649],[72.10877,24.64665],[72.11496,24.64843],[72.11699,24.64336],[72.12457,24.6386],[72.12819,24.6417],[72.15026,24.64367],[72.16033,24.63526],[72.16481,24.62128],[72.17034,24.62318],[72.18389,24.61973],[72.19203,24.62005],[72.19657,24.61472],[72.19779,24.6167],[72.19475,24.62302],[72.20221,24.62311],[72.21033,24.62685],[72.21669,24.6269],[72.22687,24.63916],[72.23037,24.64061],[72.234,24.64043],[72.23698,24.63539],[72.24229,24.63458],[72.24857,24.6269],[72.25469,24.62488],[72.26312,24.63093],[72.26789,24.6368],[72.27084,24.63757],[72.27223,24.63704],[72.27068,24.63052],[72.27366,24.62837],[72.28298,24.62575],[72.2892,24.61953],[72.29715,24.62479],[72.30499,24.61755],[72.31517,24.61995],[72.32022,24.61778],[72.33545,24.6333],[72.33795,24.63007],[72.34733,24.62846],[72.34764,24.62605],[72.34319,24.62119],[72.34531,24.61563],[72.34393,24.60963],[72.33867,24.6056],[72.33851,24.60015],[72.33559,24.59858],[72.33062,24.59955],[72.31357,24.59402],[72.30778,24.59589],[72.30728,24.59788],[72.30462,24.59898],[72.30538,24.60279],[72.30328,24.60343],[72.30325,24.60573],[72.29739,24.60897],[72.29519,24.60941],[72.28975,24.60387],[72.28535,24.60714],[72.27634,24.60753],[72.26435,24.60448],[72.2643,24.60006],[72.25845,24.5983],[72.25688,24.59417],[72.24847,24.58934],[72.2464,24.58561],[72.25148,24.58025],[72.2531,24.5751],[72.26321,24.56501],[72.26473,24.56028],[72.27131,24.56136],[72.27521,24.56523],[72.2855,24.56536],[72.29013,24.55074],[72.2893,24.54802],[72.29543,24.54663],[72.29934,24.54729],[72.30186,24.55021],[72.3236,24.55132],[72.32688,24.55397],[72.32899,24.55241],[72.3304,24.55454],[72.32687,24.55802],[72.33093,24.5693],[72.34095,24.56322],[72.34874,24.56245],[72.35373,24.56376],[72.35429,24.55656],[72.35796,24.55564],[72.35836,24.5509],[72.3605,24.55092],[72.36123,24.5478],[72.36752,24.54772],[72.36986,24.5437],[72.36751,24.53977],[72.36816,24.53734],[72.3709,24.53101],[72.37646,24.52469],[72.37969,24.51239],[72.38234,24.51104],[72.38573,24.51187],[72.38858,24.50768],[72.39172,24.51085],[72.40004,24.51447],[72.41297,24.51725],[72.41633,24.52117],[72.42015,24.5201],[72.42344,24.51669],[72.42533,24.51758],[72.43383,24.51588],[72.43631,24.51715],[72.44108,24.51533],[72.44143,24.51136],[72.44368,24.50898],[72.44293,24.50398],[72.43022,24.48017],[72.43378,24.46011],[72.44389,24.44996],[72.44804,24.44779],[72.45146,24.44211],[72.45209,24.43397],[72.45841,24.42487],[72.45724,24.4148],[72.47499,24.4144],[72.50042,24.41705],[72.49319,24.45908],[72.50444,24.45837],[72.5048,24.4716],[72.51449,24.48396],[72.52019,24.5],[72.52631,24.50323],[72.5335,24.50381],[72.53525,24.50567],[72.53598,24.51761],[72.53824,24.51968],[72.57594,24.47885],[72.61357,24.47231],[72.65633,24.46222],[72.67094,24.46488],[72.68088,24.46514],[72.68336,24.46388],[72.68823,24.45781],[72.6875,24.4526],[72.67977,24.44293],[72.68915,24.41173],[72.69191,24.40612],[72.7199,24.37478],[72.72433,24.36762],[72.73086,24.3643],[72.74939,24.36504],[72.77141,24.36823],[72.80582,24.36294],[72.8085,24.36676],[72.81478,24.37023],[72.83649,24.36916],[72.84976,24.37204],[72.85408,24.37131],[72.85568,24.36864],[72.85767,24.36818],[72.85858,24.36974],[72.8698,24.36378],[72.86997,24.36586],[72.89115,24.35697],[72.91073,24.33721],[72.91363,24.338],[72.91979,24.34442],[72.93677,24.34776],[72.95094,24.35636],[72.95403,24.35636],[72.96678,24.36535],[72.9685,24.3689],[72.97755,24.37464],[72.97436,24.38275],[72.95967,24.39127],[72.95441,24.39132],[72.9493,24.39818],[72.9524,24.40253],[72.96193,24.40593],[72.96719,24.41158],[72.96836,24.41494],[72.96558,24.41851],[72.96733,24.42168],[72.9667,24.42385],[72.96993,24.42863],[72.97367,24.43169],[72.97864,24.43186],[72.98121,24.43438],[72.98048,24.43774],[72.97395,24.44116],[72.97316,24.44368],[72.97487,24.44948],[72.96796,24.45091],[72.98619,24.4694],[72.99101,24.4776],[73.00098,24.48355],[73.00425,24.48147],[73.00666,24.47544],[73.00145,24.46928],[73.00382,24.46638],[73.01102,24.4666],[73.0201,24.46445],[73.02066,24.46585],[73.02894,24.46527],[73.03235,24.46688],[73.03523,24.46385],[73.03721,24.46444],[73.03707,24.46677],[73.04932,24.46887],[73.04857,24.47426],[73.0573,24.47769],[73.06108,24.48075],[73.06086,24.48361],[73.06803,24.48326],[73.07013,24.48687],[73.07306,24.48678],[73.07178,24.49091],[73.07434,24.49303],[73.07786,24.49477],[73.08044,24.49424],[73.08178,24.49717],[73.08788,24.49765],[73.09629,24.48974],[73.10279,24.48883],[73.10893,24.48579],[73.11046,24.47488],[73.1092,24.47215],[73.11179,24.46836],[73.11215,24.45992],[73.11021,24.45772],[73.10006,24.45427],[73.09845,24.44622],[73.10283,24.43301],[73.10099,24.42741],[73.09019,24.41409],[73.08672,24.41253],[73.08112,24.40128],[73.0765,24.3966],[73.0875,24.38663],[73.09006,24.38625],[73.10002,24.39039],[73.10269,24.38743],[73.10227,24.38172],[73.10534,24.38259],[73.1076,24.37753],[73.11186,24.37341],[73.12092,24.37009],[73.1243,24.36729],[73.131,24.3656],[73.13347,24.36665],[73.14589,24.35673],[73.15257,24.35384],[73.15534,24.35614],[73.15856,24.3541],[73.16482,24.356],[73.17137,24.35542],[73.18147,24.36625],[73.19919,24.37651],[73.20668,24.37466],[73.21721,24.36752],[73.21926,24.3639],[73.20903,24.35216],[73.20626,24.35126],[73.19857,24.33193],[73.1885,24.33363],[73.18659,24.33546],[73.18621,24.33974],[73.18166,24.34332],[73.17635,24.33788],[73.17656,24.33428],[73.17456,24.33007],[73.17623,24.32473],[73.17372,24.31906],[73.17359,24.30859],[73.16922,24.3003],[73.16652,24.29925],[73.14087,24.31109],[73.13544,24.30843],[73.13099,24.28867],[73.12433,24.27166],[73.11828,24.26674],[73.11021,24.25495],[73.10796,24.25401],[73.1036,24.25549],[73.09536,24.24935],[73.09338,24.23798],[73.08787,24.23492],[73.08804,24.23263],[73.09014,24.23383],[73.09784,24.23094],[73.09871,24.22616],[73.07845,24.21937],[73.07927,24.2051],[73.07703,24.20518],[73.0768,24.20227],[73.06744,24.19469],[73.07665,24.17912],[73.09916,24.15947],[73.10386,24.14988],[73.10343,24.14375],[73.10637,24.14201],[73.11042,24.14231],[73.12216,24.13065],[73.12522,24.12486],[73.13001,24.12228],[73.13812,24.12221],[73.15353,24.11278],[73.15719,24.10953],[73.15499,24.10869],[73.15892,24.09833],[73.17514,24.09422],[73.18318,24.08966],[73.19657,24.08684],[73.19832,24.08427],[73.21323,24.07804],[73.20531,24.06139],[73.20238,24.05099],[73.19314,24.041],[73.19955,24.03623],[73.20891,24.03389],[73.21086,24.03153],[73.21074,24.02885],[73.22937,24.02211],[73.22975,24.01567],[73.23353,24.01255],[73.23663,24.01234],[73.23741,24.00744],[73.23988,24.00343],[73.24279,24.00228],[73.24933,24.00319],[73.25237,24.00948],[73.25844,24.01197],[73.261,24.01771],[73.26533,24.02032],[73.27047,24.02103],[73.27548,24.0191],[73.27938,24.02031],[73.28311,24.01887],[73.28614,24.02177],[73.28673,24.02467],[73.28985,24.02666],[73.29063,24.03326],[73.29736,24.04353],[73.30045,24.04631],[73.30732,24.04566],[73.30835,24.04793],[73.31739,24.05321],[73.31632,24.0576],[73.32406,24.06964],[73.32397,24.07413],[73.32595,24.07696],[73.32212,24.09682],[73.32701,24.10922],[73.36199,24.10466],[73.36284,24.10063],[73.36088,24.09631],[73.36071,24.08749],[73.36205,24.08628],[73.36087,24.08128],[73.36532,24.07906],[73.36737,24.07583],[73.3703,24.07637],[73.38625,24.06473],[73.4047,24.04103],[73.40089,24.03221],[73.40666,24.01852],[73.40799,24.00809],[73.40375,23.9933],[73.39788,23.98951],[73.40458,23.9908],[73.41496,23.98578],[73.41604,23.97016],[73.41323,23.95883],[73.41421,23.955],[73.41303,23.94596],[73.41491,23.94458],[73.41324,23.93916],[73.4163,23.93787],[73.41692,23.93465],[73.42083,23.93082],[73.42006,23.92488],[73.41455,23.92159],[73.40899,23.92158],[73.40652,23.91651],[73.40039,23.91683],[73.39516,23.91902],[73.38746,23.91591],[73.38382,23.90886],[73.37863,23.90453],[73.37771,23.89615],[73.37101,23.89114],[73.36802,23.87833],[73.36605,23.87833],[73.3652,23.87548],[73.36112,23.8727],[73.35813,23.86194],[73.35572,23.85923],[73.35607,23.85457],[73.35384,23.85285],[73.35783,23.84661],[73.36771,23.83946],[73.36686,23.83664],[73.36855,23.83188],[73.36508,23.82376],[73.36638,23.82218],[73.36811,23.8226],[73.36791,23.81423],[73.35872,23.79568],[73.35184,23.7914],[73.35606,23.78502],[73.36333,23.78223],[73.36377,23.77815],[73.36656,23.77704],[73.36724,23.77437],[73.37152,23.77049],[73.37077,23.76526],[73.38282,23.76824],[73.38624,23.77666],[73.39446,23.78293],[73.39919,23.78312],[73.40025,23.78506],[73.40858,23.77917],[73.41078,23.78016],[73.41802,23.77681],[73.41641,23.77032],[73.41928,23.76951],[73.42433,23.76164],[73.42702,23.76009],[73.43115,23.76125],[73.43063,23.75804],[73.43189,23.75652],[73.43658,23.75696],[73.44773,23.75287],[73.44869,23.7511],[73.44668,23.7444],[73.44921,23.73481],[73.45011,23.73336],[73.45674,23.73352],[73.46037,23.72731],[73.47142,23.71973],[73.47352,23.70523],[73.48141,23.7042],[73.49066,23.7069],[73.50739,23.70304],[73.50518,23.69881],[73.50841,23.69549],[73.50388,23.65672],[73.49661,23.64916],[73.49951,23.64873],[73.49943,23.64682],[73.50582,23.64701],[73.50877,23.64439],[73.50573,23.63884],[73.49377,23.63234],[73.50379,23.62443],[73.5027,23.6228],[73.50346,23.61832],[73.50639,23.61903],[73.52308,23.6069],[73.52487,23.61184],[73.53118,23.61418],[73.53301,23.61955],[73.54647,23.62599],[73.56855,23.6529],[73.57266,23.65377],[73.57902,23.65261],[73.59818,23.65389],[73.61548,23.65212],[73.62072,23.64574],[73.62678,23.64187],[73.64067,23.62821],[73.65566,23.62129],[73.64898,23.60837],[73.64485,23.60411],[73.64503,23.59678],[73.64336,23.59437],[73.64761,23.57462],[73.64416,23.57226],[73.64968,23.5681],[73.64719,23.56606],[73.64058,23.56802],[73.63662,23.5646],[73.63311,23.55509],[73.63514,23.53836],[73.63307,23.52869],[73.65052,23.51855],[73.65532,23.5124],[73.65636,23.50746],[73.64962,23.49647],[73.64533,23.49769],[73.64072,23.49641],[73.63917,23.48708],[73.64033,23.48272],[73.63344,23.46995],[73.63432,23.46238],[73.63067,23.45792],[73.62721,23.44857],[73.63602,23.44906],[73.64619,23.44142],[73.64746,23.43645],[73.66052,23.44803],[73.67391,23.45411],[73.68523,23.45359],[73.69212,23.45843],[73.69539,23.45591],[73.6974,23.45667],[73.70427,23.45144],[73.70686,23.44564],[73.70511,23.4382],[73.71164,23.4355],[73.71165,23.43392],[73.70799,23.43116],[73.71045,23.42536],[73.70808,23.42232],[73.71122,23.42187],[73.71451,23.41673],[73.71371,23.41381],[73.72081,23.41013],[73.72875,23.42321],[73.735,23.42549],[73.73658,23.42981],[73.74988,23.44074],[73.75645,23.45018],[73.75573,23.45432],[73.76723,23.45312],[73.77056,23.44807],[73.77229,23.43782],[73.77657,23.43779],[73.77898,23.4313],[73.78628,23.43023],[73.79447,23.43112],[73.80344,23.43777],[73.8186,23.43846],[73.82871,23.44769],[73.82868,23.44383],[73.8318,23.44045],[73.83313,23.43582],[73.83023,23.42623],[73.83413,23.42362],[73.83509,23.42044],[73.83963,23.41882],[73.84087,23.41335],[73.84566,23.41045],[73.84556,23.40752],[73.84932,23.40548],[73.85004,23.40198],[73.85817,23.39624],[73.85927,23.39214],[73.86361,23.38949],[73.86338,23.38725],[73.86084,23.38567],[73.86178,23.38363],[73.86585,23.38422],[73.86636,23.38126],[73.86921,23.38191],[73.86776,23.37805],[73.87191,23.37726],[73.87297,23.37945],[73.87376,23.37686],[73.87248,23.37587],[73.87374,23.37515],[73.87246,23.37247],[73.87408,23.37073],[73.87433,23.36367],[73.88034,23.3585],[73.88723,23.35728],[73.88979,23.35091],[73.89131,23.35048],[73.89078,23.34889],[73.89266,23.34828],[73.8896,23.33637],[73.89193,23.33411],[73.90094,23.33597],[73.91858,23.33547],[73.9337,23.33859],[73.93941,23.34441],[73.93697,23.36058],[73.93801,23.36794],[73.95227,23.37518],[73.9575,23.37954],[73.95986,23.37771],[73.96176,23.37244],[73.96681,23.3749],[73.97421,23.37274],[73.97706,23.36485],[73.98041,23.36238],[73.97915,23.35901],[73.9814,23.33814],[73.98758,23.33576],[74.00439,23.33592],[74.02865,23.33167],[74.02481,23.32106],[74.03075,23.31291],[74.03307,23.30599],[74.03552,23.30501],[74.04086,23.30873],[74.04486,23.30881],[74.0424,23.30029],[74.03883,23.29857],[74.03816,23.29345],[74.04829,23.29332],[74.07138,23.29882],[74.08298,23.29609],[74.08593,23.29804],[74.09617,23.29325],[74.10058,23.29381],[74.10755,23.28444],[74.10922,23.27436],[74.12793,23.26899],[74.13264,23.26619],[74.13237,23.25925],[74.13077,23.25649],[74.13201,23.2472],[74.13008,23.24512],[74.13258,23.24078],[74.1325,23.23159],[74.13373,23.22986],[74.13116,23.22923],[74.13447,23.22303],[74.12862,23.21666],[74.12814,23.21388],[74.13007,23.21115],[74.11921,23.204],[74.11902,23.1919],[74.11638,23.18466],[74.12148,23.17619],[74.1412,23.17315],[74.14526,23.16836],[74.14794,23.15766],[74.15273,23.15239],[74.15407,23.15204],[74.15448,23.15649],[74.16679,23.15572],[74.17244,23.15454],[74.17888,23.14728],[74.18542,23.15682],[74.18293,23.16634],[74.1887,23.1752],[74.1886,23.17815],[74.19578,23.18054],[74.20121,23.1893],[74.20292,23.19031],[74.20712,23.18909],[74.21256,23.18693],[74.21252,23.18367],[74.22379,23.18151],[74.23137,23.17893],[74.23164,23.17727],[74.2408,23.18469],[74.24286,23.17734],[74.24736,23.17143],[74.2611,23.16497],[74.26747,23.15835],[74.27437,23.13075],[74.27837,23.12499],[74.28712,23.11712],[74.28577,23.11257],[74.27712,23.0994],[74.27889,23.09219],[74.28287,23.08853],[74.29469,23.08544],[74.30734,23.07777],[74.31439,23.06993],[74.3189,23.05866],[74.3209,23.06142],[74.33281,23.06219],[74.3416,23.0679],[74.35589,23.07981],[74.35439,23.08604],[74.35629,23.08865],[74.37741,23.10637],[74.3862,23.11152],[74.38905,23.11147],[74.38974,23.10962],[74.39217,23.11117],[74.39836,23.11011],[74.40631,23.11202],[74.42158,23.10437],[74.42738,23.1067],[74.43225,23.1049],[74.44039,23.09518],[74.44072,23.09068],[74.45408,23.08833],[74.45773,23.08463],[74.46384,23.08179],[74.46702,23.08303],[74.47439,23.08166],[74.47472,23.08365],[74.48924,23.08768],[74.49174,23.0859],[74.4992,23.08688],[74.50586,23.08514],[74.50908,23.08675],[74.50691,23.0914],[74.51028,23.09446],[74.51485,23.09628],[74.52338,23.09626],[74.53144,23.09907],[74.53934,23.10334],[74.54551,23.10984],[74.54642,23.11435],[74.54479,23.11971],[74.53937,23.1293],[74.57223,23.13315],[74.57678,23.13418],[74.58549,23.13975],[74.5965,23.13789],[74.60661,23.14256],[74.6184,23.15037],[74.62494,23.16172],[74.63271,23.16395],[74.6493,23.17522],[74.66425,23.19516],[74.67154,23.19996],[74.68187,23.19387],[74.69881,23.1923],[74.70808,23.19423],[74.7151,23.19071],[74.72453,23.1966],[74.72505,23.20089],[74.74214,23.20891],[74.74443,23.21166],[74.74056,23.21768],[74.74891,23.22376],[74.74752,23.22665],[74.74099,23.22643],[74.74128,23.22475],[74.73377,23.22042],[74.73291,23.21757],[74.72637,23.21501],[74.72283,23.21679],[74.71694,23.21578],[74.71566,23.21914],[74.70222,23.21451],[74.69207,23.21915],[74.69167,23.22559],[74.70423,23.22885],[74.70589,23.23152],[74.70881,23.23142],[74.71511,23.23668],[74.71297,23.2428],[74.71277,23.25053],[74.70767,23.25483],[74.69878,23.25731],[74.70107,23.26466],[74.69996,23.26837],[74.69243,23.26584],[74.68622,23.26759],[74.67676,23.27381],[74.67314,23.26996],[74.66378,23.26741],[74.64856,23.25593],[74.63856,23.25541],[74.62681,23.25869],[74.62391,23.27179],[74.62484,23.27387],[74.62185,23.27367],[74.61689,23.27938],[74.60795,23.28246],[74.60168,23.28023],[74.59829,23.27694],[74.58922,23.27904],[74.58499,23.27694],[74.58528,23.27951],[74.57934,23.28461],[74.57685,23.28481],[74.57369,23.28922],[74.57437,23.29517],[74.56824,23.29518],[74.56321,23.29269],[74.56337,23.28826],[74.55647,23.27843],[74.55348,23.27747],[74.54967,23.27861],[74.54667,23.27712],[74.54147,23.28673],[74.53957,23.2997],[74.53427,23.30065],[74.53192,23.30636],[74.52792,23.31075],[74.53108,23.3128],[74.52973,23.32067],[74.52362,23.32113],[74.51503,23.3161],[74.51404,23.32805],[74.53527,23.33082],[74.5401,23.33625],[74.53819,23.34599],[74.54156,23.35749],[74.53982,23.36187],[74.54239,23.36466],[74.54663,23.3649],[74.55469,23.36129],[74.5577,23.36191],[74.55769,23.368],[74.55925,23.37118],[74.56513,23.37285],[74.56894,23.3763],[74.56949,23.37839],[74.56657,23.38614],[74.57304,23.39636],[74.56995,23.4126],[74.57235,23.42067],[74.57507,23.42321],[74.58184,23.42156],[74.58718,23.42651],[74.59425,23.42415],[74.59657,23.42828],[74.59907,23.42875],[74.59932,23.43726],[74.60617,23.44453],[74.60991,23.45163],[74.60974,23.45367],[74.60389,23.45726],[74.6127,23.46193],[74.61623,23.45978],[74.63187,23.46139],[74.63354,23.46707],[74.63277,23.46951],[74.6368,23.46728],[74.63872,23.46356],[74.65188,23.46228],[74.65895,23.4673],[74.66642,23.47752],[74.66606,23.4825],[74.67703,23.48273],[74.68131,23.48523],[74.68217,23.48789],[74.68034,23.49478],[74.68653,23.49474],[74.69674,23.50266],[74.70349,23.50501],[74.71872,23.50323],[74.72373,23.49629],[74.72924,23.49662],[74.73294,23.50144],[74.73405,23.50818],[74.73912,23.51379],[74.73468,23.51821],[74.73529,23.52057],[74.76151,23.52114],[74.76237,23.5264],[74.76689,23.53086],[74.76723,23.53557],[74.77092,23.54239],[74.77368,23.54437],[74.79411,23.55088],[74.79901,23.5381],[74.8033,23.53308],[74.80648,23.53813],[74.81032,23.54082],[74.81807,23.54237],[74.82212,23.54085],[74.82923,23.55055],[74.84029,23.54988],[74.84683,23.55186],[74.84663,23.55406],[74.84878,23.5544],[74.84846,23.55607],[74.85089,23.55876],[74.85012,23.56068],[74.85252,23.56415],[74.85351,23.57099],[74.85691,23.57393],[74.86827,23.57417],[74.87137,23.57827],[74.87336,23.5769],[74.87331,23.58159],[74.8709,23.58552],[74.86991,23.59193],[74.87985,23.59522],[74.88208,23.60618],[74.88468,23.60663],[74.88506,23.6081],[74.89361,23.6095],[74.89776,23.6161],[74.90165,23.61758],[74.90087,23.61863],[74.90363,23.62314],[74.90294,23.6251],[74.90679,23.62446],[74.91003,23.62222],[74.91107,23.61916],[74.91499,23.61811],[74.92444,23.61999],[74.92746,23.6219],[74.92735,23.62525],[74.93654,23.62877],[74.9361,23.63958],[74.92841,23.64155],[74.92401,23.65065],[74.92429,23.65721],[74.92168,23.66649],[74.91754,23.66941],[74.90801,23.6711],[74.9071,23.67458],[74.90384,23.67474],[74.9042,23.68014],[74.89946,23.6822],[74.89959,23.68402],[74.91772,23.69065],[74.92159,23.69465],[74.9183,23.70563],[74.92014,23.71107],[74.92023,23.71918],[74.92445,23.7184],[74.92658,23.72021],[74.92526,23.7234],[74.92798,23.72406],[74.92862,23.72801],[74.93638,23.72958],[74.9351,23.73284],[74.93177,23.73434],[74.92996,23.7401],[74.93032,23.74956],[74.92633,23.7517],[74.92452,23.75639],[74.93425,23.75792],[74.9404,23.76474],[74.93882,23.77013],[74.93531,23.77329],[74.93199,23.7842],[74.92848,23.78789],[74.92434,23.79662],[74.90371,23.79431],[74.90389,23.79849],[74.90676,23.80444],[74.90638,23.81583],[74.90854,23.82293],[74.91159,23.82614],[74.9089,23.83572],[74.91384,23.84168],[74.9124,23.84595],[74.90601,23.84807],[74.90367,23.85274],[74.90404,23.86925],[74.90262,23.87295],[74.90819,23.88162],[74.91049,23.90629],[74.91292,23.91107],[74.9209,23.91909],[74.92121,23.92413],[74.91621,23.92989],[74.91651,23.93175],[74.92824,23.9394],[74.92907,23.95444],[74.93075,23.95699],[74.9472,23.9626],[74.95914,23.97216],[74.96272,23.97874],[74.9625,23.98918],[74.96469,23.99583],[74.96315,23.99807],[74.96339,24.0022],[74.96482,24.00594],[74.97226,24.01326],[74.97647,24.02063],[74.9823,24.02541],[74.97895,24.03125],[74.97817,24.03666],[74.97657,24.03605],[74.97382,24.03979],[74.97144,24.03854],[74.9692,24.04038],[74.96057,24.03884],[74.96006,24.04603],[74.95535,24.04696],[74.95531,24.0486],[74.94579,24.0495],[74.93934,24.05392],[74.9382,24.06308],[74.94068,24.06992],[74.93239,24.07429],[74.92747,24.07439],[74.9209,24.07754],[74.92088,24.08024],[74.91874,24.08099],[74.92066,24.08685],[74.9177,24.09093],[74.91817,24.09806],[74.9152,24.10262],[74.90847,24.10462],[74.90352,24.1093],[74.90824,24.12124],[74.90124,24.12604],[74.90207,24.13899],[74.8954,24.15306],[74.89611,24.15795],[74.89064,24.16262],[74.88974,24.16545],[74.8865,24.16572],[74.88473,24.16994],[74.8821,24.17028],[74.88171,24.1731],[74.87975,24.17361],[74.8845,24.18224],[74.89053,24.18772],[74.89447,24.19019],[74.89903,24.19067],[74.90235,24.19723],[74.907,24.20066],[74.91034,24.21011],[74.90577,24.21305],[74.89802,24.21434],[74.8971,24.22729],[74.88714,24.22969],[74.87792,24.23782],[74.86758,24.24309],[74.85178,24.23674],[74.83926,24.23727],[74.83332,24.23986],[74.82328,24.23982],[74.81082,24.24418],[74.79504,24.24316],[74.78687,24.23975],[74.77483,24.23871],[74.76222,24.24118],[74.75874,24.24328],[74.75432,24.24217],[74.75435,24.24455],[74.74711,24.25347],[74.74918,24.25841],[74.76728,24.27407],[74.77461,24.27805],[74.77515,24.28242],[74.78132,24.28917],[74.78075,24.30599],[74.78366,24.31451],[74.78314,24.31935],[74.77886,24.32386],[74.78118,24.33834],[74.79089,24.34486],[74.79406,24.35126],[74.80199,24.35855],[74.80107,24.36437],[74.80842,24.37655],[74.80726,24.38083],[74.81096,24.38254],[74.81731,24.37949],[74.82259,24.37959],[74.82492,24.38826],[74.82519,24.40002],[74.83024,24.40152],[74.83498,24.40649],[74.83977,24.40814],[74.8474,24.4204],[74.8551,24.42414],[74.85379,24.43628],[74.85523,24.4409],[74.85387,24.44453],[74.85141,24.4456],[74.84713,24.44244],[74.84136,24.44101],[74.83393,24.44318],[74.83188,24.4421],[74.83228,24.43836],[74.83009,24.43514],[74.81375,24.43674],[74.81899,24.45269],[74.82176,24.45311],[74.81535,24.46847],[74.80618,24.4671],[74.78694,24.47224],[74.77714,24.4605],[74.76942,24.46321],[74.76566,24.46677],[74.75012,24.4667],[74.74815,24.46992],[74.74609,24.46978],[74.74432,24.47372],[74.7317,24.4808],[74.72795,24.48908],[74.72036,24.48916],[74.70873,24.48647],[74.71216,24.50046],[74.71814,24.50898],[74.72478,24.51204],[74.72467,24.51318],[74.74463,24.51346],[74.74653,24.51969],[74.7458,24.52535],[74.74358,24.52748],[74.74422,24.53231],[74.75553,24.53488],[74.75275,24.54408],[74.75359,24.5536],[74.74351,24.57146],[74.74915,24.57464],[74.75329,24.57435],[74.75198,24.57743],[74.75278,24.57964],[74.7582,24.57716],[74.76007,24.57766],[74.7601,24.57944],[74.76684,24.57967],[74.76685,24.57856],[74.77813,24.58147],[74.78063,24.58569],[74.78643,24.58593],[74.78596,24.59416],[74.78333,24.59436],[74.78282,24.60542],[74.78075,24.60536],[74.7794,24.61544],[74.78575,24.61929],[74.79174,24.61977],[74.79021,24.62228],[74.79128,24.63178],[74.79652,24.63467],[74.80294,24.6342],[74.80631,24.6484],[74.81175,24.65205],[74.81414,24.65018],[74.81626,24.65855],[74.81367,24.65932],[74.81458,24.66575],[74.80359,24.66536],[74.80072,24.6666],[74.798,24.66397],[74.79075,24.66508],[74.79022,24.65987],[74.78394,24.65775],[74.78169,24.65818],[74.78055,24.6605],[74.77428,24.65948],[74.77194,24.66148],[74.7777,24.68132],[74.78074,24.68419],[74.78431,24.69176],[74.78451,24.70171],[74.78761,24.70418],[74.7796,24.73245],[74.78211,24.72881],[74.78484,24.72814],[74.78909,24.7318],[74.80397,24.73397],[74.79921,24.76377],[74.79978,24.77907],[74.8088,24.78105],[74.81441,24.76064],[74.8161,24.74801],[74.82321,24.73504],[74.83044,24.72777],[74.82985,24.72042],[74.83689,24.70773],[74.83583,24.70674],[74.84373,24.6987],[74.8481,24.69977],[74.84639,24.69623],[74.84948,24.68791],[74.8545,24.68765],[74.85018,24.6842],[74.8515,24.67767],[74.85309,24.67818],[74.8525,24.68422],[74.85938,24.68284],[74.86014,24.67894],[74.85796,24.67436],[74.86077,24.67436],[74.86355,24.66965],[74.86499,24.66962],[74.86489,24.66549],[74.86869,24.66305],[74.86837,24.65741],[74.87558,24.65266],[74.87139,24.65255],[74.87166,24.6505],[74.87378,24.64968],[74.87323,24.64647],[74.87655,24.64285],[74.8782,24.64681],[74.88439,24.64142],[74.88323,24.63822],[74.88908,24.63383],[74.89398,24.63781],[74.89402,24.6418],[74.89249,24.64249],[74.89498,24.64394],[74.89861,24.64186],[74.89811,24.63757],[74.90182,24.63281],[74.90136,24.63704],[74.90526,24.64087],[74.90945,24.63792],[74.91149,24.63885],[74.91386,24.637],[74.91724,24.63777],[74.91976,24.63625],[74.92493,24.63791],[74.92917,24.63546],[74.93601,24.63979],[74.93704,24.63801],[74.93915,24.63795],[74.9408,24.64059],[74.94309,24.6378],[74.9441,24.6419],[74.9422,24.64714],[74.94382,24.64809],[74.94741,24.64572],[74.94976,24.64972],[74.9513,24.64724],[74.95403,24.65196],[74.95302,24.65374],[74.95646,24.65579],[74.95855,24.66093],[74.96128,24.65604],[74.96228,24.65642],[74.96076,24.66547],[74.96489,24.67029],[74.96019,24.67777],[74.97631,24.67875],[74.98305,24.68195],[74.99339,24.68281],[75.00172,24.68642],[75.00046,24.69184],[74.99193,24.69322],[74.99388,24.72601],[74.99239,24.73175],[75.01603,24.73212],[75.0144,24.7347],[75.01515,24.74012],[75.00693,24.77125],[75.00149,24.77452],[74.99912,24.77475],[74.99041,24.76923],[74.98441,24.76883],[74.98171,24.76412],[74.97562,24.76369],[74.97202,24.76378],[74.96915,24.77061],[74.96477,24.76932],[74.95343,24.77368],[74.94798,24.77199],[74.94061,24.77474],[74.93739,24.77836],[74.93089,24.7791],[74.92129,24.7707],[74.91453,24.7692],[74.91042,24.77042],[74.90671,24.78183],[74.89211,24.7836],[74.88042,24.78941],[74.87932,24.79738],[74.86043,24.79849],[74.85911,24.79588],[74.86094,24.78543],[74.86017,24.77942],[74.84937,24.77613],[74.84832,24.77967],[74.8405,24.78974],[74.8387,24.79804],[74.86152,24.80414],[74.85953,24.80771],[74.86085,24.82246],[74.85876,24.83851],[74.85107,24.85129],[74.84997,24.85737],[74.84657,24.8605],[74.84037,24.88482],[74.83748,24.88726],[74.83074,24.88693],[74.82529,24.90015],[74.82489,24.92291],[74.82653,24.92451],[74.82638,24.93352],[74.83386,24.94413],[74.83322,24.95972],[74.84263,24.96885],[74.84815,24.96614],[74.85176,24.96707],[74.85904,24.96223],[74.85911,24.95579],[74.86258,24.95318],[74.86571,24.93502],[74.86948,24.92497],[74.87939,24.92998],[74.8807,24.93736],[74.88785,24.93755],[74.89195,24.92974],[74.90294,24.92951],[74.9078,24.91829],[74.91334,24.91618],[74.913,24.90869],[74.91638,24.90729],[74.91041,24.89437],[74.91694,24.88619],[74.92066,24.88487],[74.9239,24.8783],[74.9267,24.87981],[74.93159,24.8754],[74.93223,24.88131],[74.94128,24.8807],[74.94108,24.8794],[74.94498,24.87891],[74.94925,24.88145],[74.95261,24.88068],[74.95088,24.87601],[74.9519,24.87646],[74.95193,24.87416],[74.94821,24.86457],[74.95676,24.8607],[74.95866,24.85819],[74.96811,24.85612],[74.98057,24.85865],[74.98402,24.85685],[74.98491,24.8533],[74.99218,24.85457],[74.99388,24.85346],[75.00157,24.85612],[75.00831,24.85642],[75.01476,24.854],[75.02099,24.84857],[75.03305,24.84441],[75.03888,24.84555],[75.04196,24.84697],[75.04145,24.84921],[75.04716,24.84958],[75.05131,24.85267],[75.05186,24.85589],[75.05659,24.86214],[75.05993,24.86361],[75.05936,24.86688],[75.05548,24.86983],[75.05531,24.87189],[75.06277,24.87148],[75.06386,24.86769],[75.06544,24.86802],[75.07653,24.88068],[75.08821,24.87871],[75.08719,24.87079],[75.09849,24.87245],[75.11249,24.87852],[75.11693,24.87826],[75.11892,24.8823],[75.11853,24.88525],[75.11625,24.8919],[75.1144,24.89277],[75.11741,24.89501],[75.1161,24.89706],[75.11334,24.89724],[75.11324,24.89971],[75.11592,24.90621],[75.11949,24.91018],[75.11643,24.91059],[75.11677,24.9218],[75.11837,24.9256],[75.11412,24.93644],[75.11508,24.94387],[75.11356,24.96681],[75.12757,24.96788],[75.13559,24.97604],[75.14149,24.97818],[75.13845,24.97985],[75.13023,24.97962],[75.13219,24.98361],[75.13723,24.98619],[75.13936,24.98566],[75.14186,24.98993],[75.15177,24.98907],[75.15312,24.99475],[75.15582,24.99364],[75.15868,25.0011],[75.16633,25.00288],[75.16613,25.00592],[75.16857,25.00593],[75.16388,25.01664],[75.15673,25.02112],[75.15163,25.02036],[75.15136,25.02618],[75.15224,25.03142],[75.15712,25.03587],[75.15536,25.03661],[75.15594,25.03771],[75.16452,25.04186],[75.16412,25.04569],[75.16708,25.04841],[75.17609,25.03975],[75.18391,25.03712],[75.19085,25.03645],[75.19333,25.04364],[75.19685,25.04449],[75.19943,25.04298],[75.1988,25.03771],[75.20537,25.03947],[75.21784,25.03488],[75.22183,25.03678],[75.22512,25.0341],[75.23012,25.03705],[75.24029,25.03514],[75.25,25.0358],[75.2539,25.03949],[75.26838,25.04244],[75.27385,25.03951],[75.28319,25.03806],[75.29397,25.03906],[75.3011,25.04174],[75.32514,25.03917],[75.33216,25.04149],[75.34718,25.03214],[75.34639,25.03073],[75.34272,25.03072],[75.35021,25.0224],[75.35035,25.01753],[75.33914,25.01728],[75.33926,25.01932],[75.33298,25.01665],[75.32054,25.00677],[75.31653,25.00556],[75.31177,24.99537],[75.31346,24.98001],[75.31847,24.97413],[75.32723,24.97097],[75.32702,24.96744],[75.33157,24.95764],[75.33691,24.9554],[75.33528,24.94379],[75.32909,24.93415],[75.32583,24.91947],[75.321,24.91279],[75.31845,24.89416],[75.31274,24.88514],[75.31512,24.88934],[75.31527,24.89443],[75.31165,24.90758],[75.30859,24.91661],[75.30272,24.91987],[75.30088,24.92362],[75.30141,24.92628],[75.30487,24.92866],[75.30023,24.93336],[75.2977,24.93301],[75.29009,24.93766],[75.28677,24.94614],[75.2884,24.95161],[75.28187,24.95309],[75.28531,24.96478],[75.28219,24.96561],[75.27812,24.96375],[75.27779,24.96493],[75.27389,24.96404],[75.27292,24.95971],[75.27057,24.95713],[75.27082,24.95273],[75.26671,24.95088],[75.26708,24.94715],[75.26892,24.94223],[75.27293,24.93818],[75.27264,24.93594],[75.27926,24.93435],[75.27728,24.92494],[75.28784,24.92352],[75.28779,24.91983],[75.29348,24.91129],[75.29407,24.90755],[75.28674,24.90876],[75.2843,24.90796],[75.27733,24.89915],[75.2727,24.90405],[75.26731,24.89944],[75.26407,24.89521],[75.26507,24.89219],[75.2633,24.89108],[75.26231,24.88264],[75.26343,24.87486],[75.27436,24.87478],[75.27813,24.87274],[75.28111,24.86838],[75.29019,24.86621],[75.29463,24.85762],[75.30805,24.85604],[75.3153,24.85791],[75.31838,24.86061],[75.32277,24.86919],[75.32259,24.87315],[75.32664,24.87487],[75.33829,24.87276],[75.35053,24.87365],[75.37363,24.86774],[75.39598,24.87752],[75.40178,24.8827],[75.41613,24.88608],[75.4217,24.8861],[75.4258,24.88429],[75.42431,24.88084],[75.42576,24.86907],[75.41908,24.86201],[75.41971,24.85619],[75.41857,24.85441],[75.41239,24.85213],[75.40393,24.84516],[75.39602,24.84155],[75.38129,24.8382],[75.37171,24.83265],[75.36268,24.83002],[75.34541,24.82168],[75.33586,24.82217],[75.32843,24.81903],[75.31704,24.8039],[75.3116,24.80118],[75.30473,24.80205],[75.29794,24.80714],[75.29734,24.81269],[75.29486,24.81571],[75.2958,24.82026],[75.29031,24.8286],[75.28996,24.83366],[75.27294,24.84284],[75.26232,24.84221],[75.25023,24.84569],[75.24042,24.8457],[75.23691,24.84224],[75.22409,24.84392],[75.22622,24.84038],[75.2252,24.83398],[75.23238,24.83133],[75.24909,24.82982],[75.25006,24.82666],[75.25396,24.82427],[75.25426,24.81848],[75.25232,24.81311],[75.25032,24.80954],[75.24413,24.80471],[75.23303,24.80266],[75.2217,24.80322],[75.21867,24.80512],[75.2152,24.80212],[75.20727,24.79191],[75.20694,24.78837],[75.2047,24.7856],[75.20745,24.7812],[75.20158,24.77174],[75.20497,24.77045],[75.20811,24.77161],[75.20542,24.76946],[75.19291,24.77357],[75.19037,24.75341],[75.1844,24.74855],[75.18701,24.7475],[75.18763,24.74374],[75.19764,24.74325],[75.20404,24.73137],[75.20807,24.71934],[75.21944,24.70255],[75.22451,24.71516],[75.22838,24.71762],[75.24155,24.71344],[75.2517,24.7136],[75.2649,24.71751],[75.26853,24.71475],[75.28419,24.70892],[75.3204,24.7024],[75.32995,24.70298],[75.34904,24.7008],[75.3707,24.69239],[75.3918,24.69038],[75.43406,24.68211],[75.45646,24.68045],[75.48941,24.68665],[75.50633,24.69993],[75.51835,24.70588],[75.53025,24.70948],[75.53343,24.71205],[75.54009,24.70565],[75.54822,24.70294],[75.55201,24.70515],[75.55388,24.70446],[75.56319,24.70736],[75.57479,24.70777],[75.57534,24.71219],[75.58097,24.71177],[75.58297,24.71326],[75.58457,24.7083],[75.59057,24.70578],[75.59857,24.69808],[75.60851,24.68155],[75.61079,24.68041],[75.64596,24.68492],[75.65772,24.69299],[75.68342,24.72512],[75.74048,24.75502],[75.75683,24.76155],[75.76981,24.75843],[75.77757,24.76138],[75.78473,24.7618],[75.79797,24.75631],[75.80217,24.75646],[75.82646,24.73486],[75.83361,24.73185],[75.83413,24.72849],[75.83732,24.72505],[75.8378,24.71801],[75.83357,24.6882],[75.82853,24.67648],[75.82842,24.6722],[75.82494,24.66745],[75.83845,24.66863],[75.84126,24.66544],[75.84776,24.66302],[75.84691,24.66096],[75.84836,24.65749],[75.84691,24.65188],[75.84876,24.6474],[75.84097,24.63811],[75.84142,24.63494],[75.84627,24.63099],[75.8426,24.62808],[75.8447,24.62722],[75.84215,24.62625],[75.84181,24.62385],[75.83811,24.6231],[75.83716,24.6209],[75.82809,24.62043],[75.82485,24.61345],[75.82588,24.61073],[75.83275,24.60505],[75.83639,24.60615],[75.83253,24.59559],[75.83546,24.59495],[75.83837,24.59765],[75.84166,24.60702],[75.84579,24.60764],[75.84587,24.60948],[75.84924,24.61088],[75.86302,24.61003],[75.86284,24.60613],[75.87115,24.60666],[75.87219,24.59034],[75.87837,24.58339],[75.89412,24.57976],[75.89873,24.57628],[75.90645,24.57562],[75.91446,24.57225],[75.91482,24.569],[75.91219,24.56131],[75.90585,24.56276],[75.90367,24.54893],[75.90596,24.54537],[75.9161,24.54266],[75.92059,24.53588],[75.92334,24.53518],[75.92055,24.52166],[75.91138,24.5139],[75.90777,24.51296],[75.90112,24.51879],[75.89053,24.51883],[75.88988,24.51014],[75.88786,24.50807],[75.8982,24.50452],[75.90282,24.5046],[75.90393,24.49691],[75.90792,24.49237],[75.91164,24.49191],[75.91009,24.48309],[75.90539,24.47247],[75.90886,24.46218],[75.90906,24.45501],[75.90263,24.45379],[75.90306,24.44956],[75.90023,24.44222],[75.89037,24.43937],[75.87575,24.43037],[75.87509,24.42636],[75.86119,24.42155],[75.85548,24.41797],[75.84449,24.41549],[75.84201,24.41627],[75.83879,24.41418],[75.83557,24.41487],[75.82771,24.42167],[75.82484,24.42731],[75.81689,24.42942],[75.80986,24.43404],[75.81445,24.45036],[75.81347,24.46202],[75.80335,24.46825],[75.7894,24.47153],[75.78534,24.46788],[75.78427,24.4579],[75.78606,24.45326],[75.78119,24.44962],[75.77339,24.4497],[75.7741,24.44191],[75.77132,24.44172],[75.76656,24.43431],[75.7632,24.43317],[75.76179,24.43086],[75.75786,24.43115],[75.7476,24.42418],[75.74759,24.42289],[75.75589,24.42066],[75.75469,24.4167],[75.75531,24.40653],[75.7499,24.40438],[75.74952,24.40097],[75.74322,24.39934],[75.74279,24.39773],[75.73148,24.39872],[75.72791,24.39641],[75.72775,24.39052],[75.72949,24.37775],[75.73411,24.3784],[75.73689,24.3823],[75.73898,24.37824],[75.73997,24.36096],[75.73753,24.35356],[75.74075,24.35129],[75.7432,24.35168],[75.74212,24.34986],[75.74318,24.34005],[75.73822,24.33482],[75.73984,24.33215],[75.7488,24.32699],[75.75734,24.31925],[75.76096,24.3145],[75.76647,24.29802],[75.78581,24.29664],[75.78715,24.29872],[75.80183,24.30213],[75.80353,24.29843],[75.80652,24.29978],[75.81073,24.29609],[75.80893,24.29409],[75.81218,24.29331],[75.81365,24.28995],[75.81189,24.28549],[75.81844,24.28069],[75.81679,24.27837],[75.81319,24.27841],[75.81171,24.27528],[75.81257,24.27138],[75.81419,24.27128],[75.8142,24.2677],[75.81153,24.25774],[75.81922,24.25697],[75.81299,24.25047],[75.81474,24.24606],[75.81352,24.24537],[75.81798,24.24215],[75.81802,24.23872],[75.8255,24.23696],[75.83023,24.23376],[75.82365,24.22998],[75.81794,24.22947],[75.81568,24.22581],[75.80936,24.2297],[75.80988,24.225],[75.80737,24.21777],[75.7949,24.2147],[75.7928,24.21035],[75.77744,24.20998],[75.77223,24.20055],[75.77259,24.19419],[75.77098,24.18897],[75.77394,24.18127],[75.76376,24.1745],[75.76388,24.17],[75.76031,24.16604],[75.76152,24.16209],[75.75871,24.15878],[75.75917,24.15547],[75.75162,24.14771],[75.75096,24.14333],[75.75583,24.14029],[75.7577,24.13491],[75.7622,24.13073],[75.76412,24.1211],[75.77003,24.11579],[75.77357,24.11899],[75.77864,24.11926],[75.78264,24.11595],[75.78405,24.11228],[75.78327,24.10785],[75.7876,24.10479],[75.79089,24.10541],[75.78913,24.10419],[75.78762,24.0987],[75.79286,24.09185],[75.8057,24.09957],[75.81657,24.08547],[75.8357,24.09212],[75.83503,24.07351],[75.83672,24.05706],[75.81498,24.05154],[75.81045,24.04865],[75.78169,24.04253],[75.78057,24.03952],[75.78309,24.02214],[75.77528,24.01699],[75.77537,24.01411],[75.77677,24.01446],[75.77339,24.00787],[75.76266,24.00988],[75.76399,24.00537],[75.7685,24.00092],[75.76843,23.99753],[75.76534,23.99268],[75.75352,23.99098],[75.74225,23.99273],[75.74194,23.98864],[75.7434,23.98847],[75.74364,23.98629],[75.74145,23.98296],[75.74113,23.97694],[75.73621,23.97533],[75.73067,23.97678],[75.72893,23.97317],[75.72953,23.97025],[75.71828,23.96834],[75.71752,23.96686],[75.70173,23.96659],[75.69882,23.98784],[75.6925,23.98696],[75.68699,23.98877],[75.68772,24.00546],[75.67818,24.00731],[75.67434,24.01768],[75.6581,24.01024],[75.6546,24.00641],[75.6509,24.00631],[75.65049,24.00517],[75.65264,24.00397],[75.65163,24.00282],[75.64752,24.00351],[75.64108,24.00075],[75.64005,23.99789],[75.63502,23.99788],[75.63,23.99505],[75.62581,23.99639],[75.61977,23.99495],[75.61578,23.99659],[75.6071,23.99255],[75.60379,23.99545],[75.59802,23.99414],[75.59552,23.99],[75.59547,23.99447],[75.58791,23.99064],[75.58134,23.9914],[75.581,23.99674],[75.57953,23.99839],[75.57751,23.99414],[75.5758,23.99413],[75.57628,23.99716],[75.57235,23.99878],[75.56551,24.00768],[75.54822,24.00721],[75.53963,24.00906],[75.52105,24.02502],[75.50469,24.00596],[75.49227,23.99722],[75.48323,23.98755],[75.47468,23.98284],[75.46885,23.97445],[75.46531,23.94753],[75.46004,23.93242],[75.45939,23.92078],[75.46206,23.91476],[75.46597,23.9121],[75.47737,23.91152],[75.49165,23.90678],[75.50111,23.89779],[75.50567,23.88725],[75.52149,23.88493],[75.53075,23.87662],[75.54709,23.86956],[75.55308,23.86162],[75.56322,23.85758],[75.56593,23.85342],[75.5665,23.84387],[75.57676,23.84231],[75.57903,23.8398],[75.57933,23.83511],[75.57806,23.83121],[75.57461,23.82848],[75.56669,23.8332],[75.56062,23.83142],[75.55912,23.82832],[75.5593,23.81818],[75.56679,23.80958],[75.57157,23.80915],[75.5806,23.81228],[75.58901,23.80978],[75.58345,23.79482],[75.59844,23.79776],[75.60893,23.79755],[75.61435,23.80105],[75.62045,23.80093],[75.62704,23.79544],[75.63848,23.79566],[75.64401,23.79778],[75.65001,23.79546],[75.6545,23.7984],[75.65998,23.78423],[75.67563,23.78189],[75.68046,23.76527],[75.68672,23.75594],[75.68971,23.76216],[75.69294,23.77603],[75.6965,23.77974],[75.69964,23.78034],[75.70184,23.78639],[75.69012,23.81325],[75.69277,23.81645],[75.69799,23.81337],[75.70621,23.81331],[75.7073,23.81123],[75.71256,23.81315],[75.72159,23.81179],[75.72098,23.81875],[75.72647,23.82021],[75.72404,23.82376],[75.72227,23.83536],[75.71895,23.84067],[75.72565,23.84183],[75.73131,23.85313],[75.73641,23.85625],[75.73522,23.86199],[75.72759,23.85872],[75.71085,23.86241],[75.70894,23.86923],[75.70523,23.86858],[75.70349,23.87249],[75.70157,23.87283],[75.70219,23.88173],[75.70548,23.88265],[75.70427,23.88876],[75.70609,23.8991],[75.70805,23.8994],[75.71028,23.89551],[75.71547,23.89305],[75.7193,23.89706],[75.72711,23.89328],[75.73523,23.89811],[75.73949,23.89216],[75.74,23.889],[75.7527,23.88735],[75.76454,23.87555],[75.7617,23.86576],[75.76454,23.85174],[75.77345,23.84814],[75.78125,23.84873],[75.78329,23.84923],[75.78506,23.85282],[75.79201,23.85845],[75.79385,23.86701],[75.799,23.86856],[75.803,23.86545],[75.81736,23.86786],[75.82087,23.87331],[75.83265,23.87992],[75.83365,23.87795],[75.83547,23.87818],[75.83508,23.87684],[75.83914,23.87862],[75.84056,23.87458],[75.84476,23.87619],[75.84478,23.88395],[75.84878,23.88415],[75.85302,23.88748],[75.87063,23.89042],[75.87479,23.88537],[75.87652,23.88524],[75.87642,23.88002],[75.8871,23.87911],[75.89484,23.8894],[75.90486,23.88916],[75.92178,23.89613],[75.9238,23.89847],[75.92714,23.89774],[75.92858,23.8991],[75.93199,23.89622],[75.93751,23.89669],[75.93944,23.89947],[75.94132,23.89946],[75.94108,23.90176],[75.94389,23.90298],[75.94466,23.90896],[75.94917,23.9126],[75.95303,23.91172],[75.95137,23.91553],[75.95531,23.92084],[75.96038,23.92325],[75.96781,23.92416],[75.97453,23.92902],[75.98136,23.92897],[75.98223,23.93104],[75.97996,23.93591],[75.98761,23.94174],[75.98388,23.95027],[75.98676,23.95885],[75.98391,23.96742],[75.98485,23.97403],[75.97596,23.98221],[75.97243,23.98847],[75.96744,23.99123],[75.96719,23.99987],[75.96222,24.01469],[75.96346,24.01871],[75.97064,24.02036],[75.99702,24.01769],[76.0,24.02089],[76.01067,24.02504],[76.0213,24.03419],[76.01941,24.03742],[76.02202,24.04119],[76.02223,24.04724],[76.02817,24.05174],[76.03056,24.05154],[76.03169,24.05787],[76.0346,24.05845],[76.03681,24.0629],[76.03996,24.06316],[76.04267,24.06602],[76.04543,24.06451],[76.04896,24.06667],[76.05465,24.06526],[76.05767,24.06754],[76.06325,24.06827],[76.06758,24.07072],[76.07275,24.07666],[76.07584,24.07084],[76.08451,24.07694],[76.08927,24.07704],[76.0927,24.08253],[76.09635,24.08341],[76.10062,24.08711],[76.10492,24.08744],[76.10666,24.08429],[76.11457,24.08474],[76.11804,24.08712],[76.12179,24.0847],[76.12679,24.08873],[76.12064,24.10821],[76.13114,24.11549],[76.12679,24.13249],[76.12244,24.1377],[76.12496,24.15107],[76.12442,24.15945],[76.1213,24.16301],[76.11378,24.16387],[76.11738,24.19399],[76.13227,24.20856],[76.1378,24.21802],[76.14512,24.22302],[76.14843,24.23203],[76.14312,24.25574],[76.13905,24.25625],[76.14139,24.26718],[76.13672,24.27081],[76.14054,24.27463],[76.14329,24.2829],[76.14932,24.28478],[76.15968,24.2827],[76.16255,24.28473],[76.16533,24.29223],[76.1647,24.29461],[76.16888,24.29707],[76.16587,24.29981],[76.16461,24.30659],[76.16556,24.30789],[76.17015,24.30606],[76.17411,24.30721],[76.17415,24.31268],[76.17963,24.31687],[76.18552,24.32928],[76.18992,24.32342],[76.19558,24.31055],[76.20286,24.30492],[76.20473,24.3009],[76.20424,24.29802],[76.19729,24.28796],[76.19459,24.27319],[76.20093,24.27107],[76.20214,24.26883],[76.20295,24.24476],[76.20647,24.22841],[76.20333,24.22052],[76.2047,24.21725],[76.21164,24.21219],[76.21255,24.20994],[76.21752,24.21126],[76.22478,24.21654],[76.22765,24.21541],[76.23995,24.21889],[76.25211,24.21428],[76.25813,24.21463],[76.26715,24.21036],[76.27554,24.21088],[76.28232,24.20731],[76.2854,24.20954],[76.28736,24.22986],[76.29568,24.23185],[76.30186,24.23608],[76.31084,24.23763],[76.31911,24.24481],[76.32291,24.24554],[76.33988,24.24411],[76.34856,24.24062],[76.35721,24.23974],[76.35834,24.23544],[76.3729,24.22785],[76.38191,24.221],[76.40158,24.21527],[76.40796,24.20352],[76.41168,24.20051],[76.4148,24.20064],[76.42057,24.20864],[76.41642,24.21097],[76.41622,24.22063],[76.43022,24.22131],[76.45227,24.20936],[76.46052,24.21851],[76.46272,24.22322],[76.47051,24.22615],[76.47048,24.22298],[76.47403,24.22217],[76.48054,24.20808],[76.4958,24.2054],[76.49947,24.20607],[76.50454,24.20309],[76.50873,24.19358],[76.50944,24.18213],[76.51293,24.16659],[76.51537,24.16263],[76.52241,24.15707],[76.52742,24.15673],[76.54469,24.16285],[76.55195,24.16328],[76.5618,24.17334],[76.56618,24.17444],[76.56989,24.17802],[76.5705,24.17489],[76.57489,24.17572],[76.57773,24.17917],[76.57467,24.18656],[76.56427,24.19095],[76.56654,24.20338],[76.56876,24.20483],[76.57025,24.20899],[76.57774,24.21175],[76.582,24.21134],[76.58341,24.21627],[76.58944,24.21702],[76.59523,24.22332],[76.59439,24.22844],[76.58784,24.23473],[76.58354,24.24287],[76.58606,24.24444],[76.5956,24.24402],[76.6112,24.23865],[76.61479,24.25362],[76.61765,24.25883],[76.62257,24.25735],[76.62386,24.25915],[76.6313,24.26082],[76.6372,24.25834],[76.6366,24.26425],[76.63997,24.26822],[76.64347,24.26939],[76.65303,24.2635],[76.65673,24.26483],[76.66513,24.26193],[76.66668,24.26365],[76.67775,24.26664],[76.6781,24.27123],[76.68127,24.27507],[76.68753,24.27918],[76.69275,24.28023],[76.69137,24.28574],[76.69277,24.28648],[76.69523,24.27763],[76.69309,24.26793],[76.69409,24.26166],[76.70148,24.25042],[76.70273,24.2432],[76.70051,24.23898],[76.69436,24.23631],[76.69044,24.23057],[76.6781,24.20489],[76.67589,24.19085],[76.6863,24.1862],[76.69204,24.18057],[76.69296,24.17641],[76.69858,24.17193],[76.69831,24.16847],[76.71143,24.16384],[76.71912,24.15869],[76.72608,24.16072],[76.72619,24.16857],[76.75792,24.16826],[76.76078,24.165],[76.75978,24.16014],[76.77019,24.16012],[76.7738,24.15007],[76.77837,24.14699],[76.78088,24.1394],[76.78822,24.13215],[76.79,24.12272],[76.79613,24.12136],[76.80129,24.11667],[76.80637,24.11818],[76.81158,24.12275],[76.83308,24.12202],[76.83632,24.12673],[76.85377,24.13353],[76.85459,24.13583],[76.87841,24.13569],[76.88009,24.13506],[76.8788,24.13023],[76.88397,24.13004],[76.88602,24.12801],[76.89128,24.12673],[76.89227,24.12786],[76.9006,24.12743],[76.90465,24.14385],[76.90994,24.15273],[76.9095,24.16298],[76.9157,24.17353],[76.91629,24.18785],[76.93143,24.18356],[76.93577,24.18373],[76.93987,24.19339],[76.9472,24.19873],[76.9474,24.20131],[76.94593,24.20611],[76.93347,24.20706],[76.93157,24.21035],[76.9223,24.2117],[76.92294,24.22605],[76.91812,24.22994],[76.91576,24.22964],[76.91265,24.23795],[76.90528,24.2368],[76.89616,24.24309],[76.8882,24.24489],[76.88597,24.24778],[76.88784,24.25213],[76.87963,24.2553],[76.87992,24.26028],[76.87313,24.26262],[76.87351,24.26592],[76.86262,24.27332],[76.86012,24.29409],[76.85688,24.30292],[76.85167,24.31234],[76.84105,24.32241],[76.83787,24.33415],[76.83731,24.3464],[76.83188,24.35797],[76.83735,24.35959],[76.85139,24.37052],[76.84523,24.37513],[76.85069,24.38344],[76.84369,24.40305],[76.83793,24.40648],[76.83738,24.40971],[76.83906,24.41317],[76.84574,24.41592],[76.85045,24.42413],[76.84592,24.43078],[76.84434,24.43717],[76.84108,24.44014],[76.84103,24.44355],[76.84481,24.45068],[76.85007,24.44923],[76.85159,24.45012],[76.85251,24.45552],[76.85116,24.46036],[76.85308,24.46589],[76.84775,24.47348],[76.84661,24.48596],[76.84227,24.48832],[76.8354,24.48892],[76.83666,24.49318],[76.82815,24.50313],[76.82867,24.51273],[76.82275,24.52043],[76.81631,24.52441],[76.81639,24.53358],[76.8216,24.53459],[76.83812,24.54561],[76.86062,24.54777],[76.86192,24.5493],[76.86963,24.54437],[76.87411,24.53921],[76.87666,24.53879],[76.87477,24.53363],[76.87157,24.53211],[76.87307,24.52702],[76.88431,24.52145],[76.88986,24.52486],[76.89433,24.5383],[76.90187,24.54585],[76.9179,24.54348],[76.91667,24.53705],[76.92083,24.52854],[76.9218,24.52049],[76.91979,24.51805],[76.91578,24.50264],[76.91725,24.4968],[76.91615,24.48993],[76.91794,24.48555],[76.91693,24.48327],[76.91842,24.48069],[76.9267,24.47408],[76.93852,24.47231],[76.94106,24.47052],[76.94311,24.46514],[76.95076,24.46571],[76.95095,24.4618],[76.95222,24.46386],[76.95549,24.46451],[76.96079,24.46342],[76.96214,24.46165],[76.97761,24.46138],[76.98234,24.46782],[76.98349,24.47279],[77.0036,24.47374],[77.00882,24.47674],[77.00928,24.47808],[77.00713,24.47902],[77.0088,24.4819],[77.01374,24.48325],[77.01096,24.48734],[77.01183,24.49166],[77.02897,24.49608],[77.03066,24.50183],[77.02933,24.5167],[77.03037,24.51895],[77.03554,24.52089],[77.03511,24.52435],[77.03689,24.5279],[77.0422,24.52477],[77.05471,24.52628],[77.05435,24.53181],[77.05763,24.53713],[77.05975,24.54588],[77.06816,24.55581],[77.07133,24.57276],[77.06983,24.58406],[77.06526,24.59427],[77.06558,24.60032],[77.06867,24.6088],[77.06717,24.61579],[77.06788,24.63025],[77.06499,24.64384],[77.05728,24.65383],[77.04374,24.67871],[77.04132,24.68675],[77.04148,24.6994],[77.03167,24.71132],[77.02582,24.71432],[77.01378,24.71218],[77.00166,24.71604],[76.99788,24.72046],[76.9977,24.72783],[76.99552,24.73333],[76.98946,24.73614],[76.97912,24.73516],[76.97456,24.7362],[76.96907,24.74231],[76.96457,24.75455],[76.95396,24.76036],[76.94353,24.75755],[76.93153,24.74364],[76.92319,24.74231],[76.90749,24.73159],[76.90224,24.73341],[76.89597,24.74311],[76.88948,24.74726],[76.8816,24.74675],[76.87438,24.74376],[76.85613,24.74249],[76.8502,24.74658],[76.84859,24.75039],[76.84925,24.76303],[76.84752,24.76927],[76.83546,24.77884],[76.82349,24.79412],[76.80756,24.80419],[76.802,24.81013],[76.80252,24.81885],[76.79988,24.82401],[76.81197,24.82557],[76.8225,24.83214],[76.82508,24.83555],[76.83257,24.83657],[76.84113,24.83458],[76.84617,24.83656],[76.86208,24.83731],[76.86889,24.8395],[76.88148,24.8363],[76.89789,24.83823],[76.90373,24.84238],[76.91665,24.84675],[76.92496,24.84658],[76.92953,24.84867],[76.9341,24.85525],[76.94054,24.85782],[76.94411,24.86537],[76.94856,24.86907],[76.94396,24.87444],[76.93359,24.87508],[76.93425,24.87975],[76.93263,24.88199],[76.92298,24.88036],[76.91305,24.88784],[76.91382,24.89831],[76.91642,24.90426],[76.91966,24.90454],[76.92141,24.90842],[76.92229,24.91249],[76.92042,24.91677],[76.90937,24.92111],[76.89049,24.91969],[76.88868,24.92339],[76.88937,24.93392],[76.88555,24.93873],[76.87763,24.9414],[76.87196,24.94789],[76.86748,24.95649],[76.86269,24.9598],[76.86239,24.96442],[76.86389,24.96552],[76.86513,24.9755],[76.86729,24.9803],[76.86721,24.99016],[76.86135,24.99973],[76.85678,25.00248],[76.86243,25.00255],[76.86733,25.00603],[76.87604,25.00706],[76.8785,25.02848],[76.87616,25.0414],[76.88754,25.04377],[76.91159,25.043],[76.92572,25.04695],[76.93433,25.04563],[76.94509,25.04674],[76.9523,25.05216],[76.95896,25.05217],[76.96167,25.05637],[76.96584,25.05155],[76.9682,25.0511],[76.96873,25.05462],[76.9733,25.05843],[76.97343,25.06076],[76.97148,25.06224],[76.97464,25.06643],[76.9786,25.06639],[76.98984,25.07313],[76.99907,25.07485],[77.01048,25.07345],[77.02404,25.06593],[77.02969,25.06585],[77.0324,25.06895],[77.03759,25.06854],[77.04278,25.0634],[77.08483,25.05424],[77.08913,25.06216],[77.09598,25.06543],[77.12257,25.06665],[77.13342,25.08485],[77.14149,25.08859],[77.14772,25.09511],[77.1506,25.09333],[77.1494,25.08636],[77.16712,25.08461],[77.17158,25.09791],[77.16876,25.10301],[77.17442,25.11181],[77.18423,25.10814],[77.1959,25.10932],[77.2053,25.11387],[77.2151,25.109],[77.22572,25.10895],[77.23696,25.10661],[77.24879,25.10995],[77.25936,25.11089],[77.27001,25.11609],[77.27461,25.11069],[77.28883,25.10601],[77.29257,25.10028],[77.29159,25.09716],[77.29774,25.09123],[77.29826,25.08588],[77.31078,25.07983],[77.31155,25.08242],[77.31484,25.08467],[77.32191,25.08554],[77.33834,25.09217],[77.33781,25.09485],[77.35043,25.09576],[77.35729,25.09351],[77.37567,25.10464],[77.37558,25.11029],[77.39438,25.11992],[77.40243,25.11255],[77.40219,25.10929],[77.40662,25.11169],[77.40537,25.11721],[77.40128,25.12164],[77.39058,25.12339],[77.39616,25.13728],[77.39469,25.15644],[77.393,25.15923],[77.39468,25.16213],[77.40003,25.16556],[77.40014,25.18388],[77.40945,25.18294],[77.41629,25.18611],[77.42158,25.18571],[77.42197,25.18331],[77.42662,25.18807],[77.4185,25.19842],[77.41468,25.22013],[77.4117,25.22401],[77.39977,25.22609],[77.39442,25.22994],[77.39313,25.23376],[77.38765,25.23902],[77.38662,25.2427],[77.38242,25.24569],[77.37037,25.24601],[77.36905,25.25546],[77.36625,25.25766],[77.36611,25.25991],[77.36225,25.26269],[77.35816,25.26178],[77.35509,25.26348],[77.35417,25.2736],[77.35694,25.27384],[77.35755,25.27579],[77.36266,25.27901],[77.37395,25.27452],[77.37587,25.28512],[77.381,25.29273],[77.37962,25.29754],[77.38148,25.3046],[77.37785,25.31572],[77.37476,25.32009],[77.37171,25.32089],[77.36977,25.32725],[77.36761,25.3286],[77.358,25.32616],[77.35708,25.32289],[77.35282,25.32041],[77.34212,25.32177],[77.35036,25.32982],[77.3616,25.35661],[77.36132,25.35876],[77.36669,25.36031],[77.36413,25.36358],[77.36105,25.36461],[77.35914,25.36938],[77.35166,25.36969],[77.3505,25.38407],[77.35766,25.39874],[77.368,25.40209],[77.37097,25.40849],[77.36094,25.41899],[77.3539,25.41889],[77.34994,25.4157],[77.3442,25.41862],[77.34354,25.42078],[77.33464,25.42381],[77.3349,25.42542],[77.33124,25.42746],[77.31994,25.42771],[77.31546,25.43147],[77.30688,25.43026],[77.2938,25.4243],[77.28635,25.41855],[77.27813,25.40918],[77.27564,25.40355],[77.26694,25.39565],[77.25094,25.38794],[77.24787,25.38019],[77.24395,25.37904],[77.23617,25.38039],[77.23394,25.3787],[77.23157,25.3727],[77.22794,25.36867],[77.22987,25.36089],[77.22815,25.34657],[77.22562,25.34237],[77.22432,25.33553],[77.22566,25.3347],[77.22923,25.33761],[77.23395,25.33377],[77.22578,25.33031],[77.22695,25.32526],[77.22337,25.31879],[77.2175,25.31784],[77.21523,25.32034],[77.21632,25.32305],[77.21988,25.32478],[77.21947,25.32779],[77.21722,25.32953],[77.20555,25.32648],[77.20828,25.31434],[77.21139,25.30934],[77.20919,25.30865],[77.20942,25.30631],[77.1856,25.309],[77.17967,25.31191],[77.16536,25.30823],[77.15374,25.31261],[77.14412,25.32053],[77.13864,25.32205],[77.13503,25.32067],[77.12508,25.33027],[77.11768,25.32945],[77.11249,25.33198],[77.10903,25.33063],[77.08367,25.33656],[77.07523,25.32823],[77.07496,25.32522],[77.07005,25.31849],[77.06395,25.31657],[77.05691,25.31655],[77.0459,25.32144],[77.04377,25.31269],[77.03169,25.29439],[77.0257,25.29627],[76.99688,25.2984],[76.98047,25.29793],[76.97374,25.30041],[76.96065,25.29729],[76.95781,25.28441],[76.94225,25.28216],[76.9299,25.28297],[76.92327,25.28546],[76.92739,25.29153],[76.92941,25.30319],[76.91765,25.30926],[76.90154,25.32363],[76.88148,25.32413],[76.87211,25.32895],[76.8704,25.32703],[76.86577,25.3285],[76.86348,25.33123],[76.85728,25.33278],[76.85201,25.33203],[76.83944,25.3262],[76.83078,25.3273],[76.82036,25.32628],[76.8145,25.32297],[76.80027,25.31965],[76.78966,25.31954],[76.77881,25.31556],[76.76971,25.31771],[76.76627,25.32022],[76.76037,25.31974],[76.75619,25.32257],[76.74028,25.32775],[76.72932,25.32857],[76.72559,25.33129],[76.7237,25.3355],[76.71695,25.33846],[76.71112,25.3461],[76.7033,25.34789],[76.70028,25.35163],[76.68882,25.35225],[76.68255,25.34837],[76.67793,25.35066],[76.67715,25.34782],[76.67532,25.34923],[76.67344,25.34802],[76.6695,25.3491],[76.6688,25.35301],[76.66351,25.35795],[76.66043,25.36519],[76.65883,25.36541],[76.65857,25.36154],[76.65682,25.3612],[76.65406,25.3631],[76.65355,25.36711],[76.64927,25.36662],[76.64936,25.37156],[76.64585,25.37072],[76.64647,25.37317],[76.64383,25.37794],[76.64067,25.37953],[76.63976,25.38353],[76.63556,25.38344],[76.63089,25.38123],[76.62891,25.37779],[76.62279,25.37678],[76.61664,25.38076],[76.60828,25.39094],[76.59847,25.39233],[76.59823,25.40543],[76.58627,25.43356],[76.58243,25.43686],[76.56753,25.44034],[76.56223,25.44762],[76.55598,25.45203],[76.55519,25.45446],[76.55715,25.4594],[76.55807,25.47054],[76.55546,25.48257],[76.53773,25.50272],[76.53775,25.50901],[76.53431,25.5144],[76.52496,25.51851],[76.51661,25.52667],[76.51998,25.54727],[76.51415,25.56299],[76.50552,25.57488],[76.50376,25.57977],[76.50384,25.5856],[76.51116,25.59989],[76.51244,25.60695],[76.5098,25.6313],[76.50559,25.6381],[76.50227,25.63762],[76.49894,25.63944],[76.49661,25.64681],[76.49817,25.65675],[76.504,25.66844],[76.50384,25.6732],[76.49891,25.67808],[76.49144,25.67902],[76.47945,25.6842],[76.47292,25.69765],[76.47199,25.70394],[76.47343,25.70992],[76.47968,25.71682],[76.49109,25.72083],[76.5014,25.72997],[76.52032,25.72875],[76.52377,25.72983],[76.52295,25.73746],[76.52522,25.74175],[76.52088,25.75211],[76.51726,25.75523],[76.51789,25.76713],[76.51548,25.77644],[76.52101,25.7936],[76.53473,25.81917],[76.55611,25.8349],[76.58277,25.87105],[76.58928,25.87498],[76.59409,25.87527],[76.61448,25.86844],[76.62322,25.87055],[76.6261,25.87573],[76.63062,25.89914],[76.63575,25.905],[76.64026,25.90761],[76.67011,25.91072],[76.6872,25.90786],[76.70725,25.90051],[76.71633,25.90116],[76.73323,25.90632],[76.75273,25.91734],[76.75662,25.92101],[76.75765,25.92663],[76.75179,25.92817],[76.74659,25.9341],[76.7464,25.93768],[76.74886,25.94047],[76.768,25.93765],[76.78141,25.93845],[76.78903,25.94109],[76.80745,25.96537],[76.80831,25.97324],[76.80358,25.97453],[76.80252,25.97822],[76.80678,25.98981],[76.81925,26.00348],[76.8262,26.00739],[76.83276,26.01871],[76.84078,26.02649],[76.8568,26.03473],[76.86631,26.03436],[76.87581,26.04315],[76.88485,26.04804],[76.88973,26.06266],[76.89416,26.06724],[76.89772,26.07425],[76.90025,26.08708],[76.89978,26.0925],[76.91811,26.09876],[76.93653,26.10177],[76.94077,26.10053],[76.94766,26.10274],[76.97748,26.12486],[76.98712,26.12804],[76.99761,26.12907],[77.00215,26.13399],[77.00288,26.138],[77.00156,26.14246],[77.00631,26.15102],[77.01525,26.15704],[77.02914,26.17119],[77.05448,26.17957],[77.08226,26.17906],[77.09675,26.18324],[77.10093,26.18656],[77.10596,26.19614],[77.11198,26.20235],[77.11291,26.21398],[77.11643,26.22058],[77.13604,26.23345],[77.14172,26.23437],[77.15254,26.23189],[77.16619,26.23226],[77.17013,26.23349],[77.17145,26.23795],[77.17519,26.23892],[77.19993,26.22981],[77.20389,26.22987],[77.21284,26.23377],[77.2168,26.24004],[77.23089,26.24598],[77.25177,26.25978],[77.27105,26.26758],[77.27898,26.27596],[77.29843,26.29102],[77.3166,26.31147],[77.31762,26.31746],[77.31464,26.31872],[77.32139,26.334],[77.32897,26.34255],[77.33059,26.34387],[77.33525,26.34134],[77.34212,26.35181],[77.35599,26.35503],[77.36837,26.36415],[77.37562,26.36557],[77.3904,26.35652],[77.39705,26.36078],[77.41395,26.36344],[77.44095,26.36081],[77.44468,26.36176],[77.44856,26.36753],[77.44622,26.37528],[77.43505,26.39438],[77.43506,26.40004],[77.43735,26.40328],[77.44874,26.40461],[77.45968,26.40378],[77.48651,26.41082],[77.52146,26.40721],[77.53838,26.4113],[77.54633,26.41612],[77.55867,26.43518],[77.5624,26.43684],[77.57147,26.43645],[77.58903,26.44648],[77.61348,26.45272],[77.62297,26.46142],[77.62747,26.47242],[77.63332,26.47869],[77.65058,26.4879],[77.65984,26.49112],[77.67372,26.50283],[77.68024,26.50426],[77.69129,26.49964],[77.71331,26.49827],[77.72701,26.50232],[77.73374,26.5078],[77.73811,26.51421],[77.74029,26.52725],[77.74591,26.53875],[77.75748,26.53984],[77.76781,26.54758],[77.78371,26.55204],[77.81074,26.54719],[77.82201,26.54958],[77.83251,26.56147],[77.83568,26.57603],[77.83378,26.58238],[77.82704,26.59179],[77.82733,26.59605],[77.83206,26.59891],[77.83578,26.60615],[77.85066,26.61254],[77.85881,26.6136],[77.88577,26.61244],[77.89428,26.61471],[77.8967,26.61706],[77.89811,26.62315],[77.89752,26.65285],[77.89953,26.65642],[77.90426,26.65906],[77.91554,26.66102],[77.93522,26.66024],[77.94303,26.65819],[77.95318,26.65894],[77.98012,26.67121],[77.98476,26.67481],[77.99604,26.69257],[78.00043,26.69486],[78.01796,26.6925],[78.03164,26.68631],[78.03437,26.68703],[78.05601,26.68363],[78.07409,26.6706],[78.07879,26.67044],[78.09267,26.67626],[78.09521,26.67927],[78.09616,26.68488],[78.09233,26.71864],[78.09593,26.7278],[78.10137,26.73709],[78.10808,26.73751],[78.11164,26.74064],[78.1184,26.74216],[78.12353,26.74688],[78.12371,26.75],[78.12065,26.75415],[78.10735,26.75944],[78.10345,26.76332],[78.10122,26.77409],[78.10216,26.78149],[78.10596,26.78888],[78.11426,26.79526],[78.12468,26.79642],[78.14326,26.79117],[78.15619,26.78397],[78.184,26.78382],[78.18761,26.78968],[78.18722,26.79487],[78.18047,26.80414],[78.16838,26.81283],[78.16727,26.81541],[78.16872,26.82039],[78.17233,26.82389],[78.17731,26.82559],[78.20211,26.82138],[78.22228,26.83132],[78.21858,26.8345],[78.22081,26.84012],[78.22017,26.84378],[78.21702,26.84336],[78.21273,26.84613],[78.21176,26.85069],[78.20222,26.86633],[78.19698,26.88218],[78.20006,26.88302],[78.20261,26.88172],[78.20841,26.87197],[78.20862,26.86886],[78.2127,26.86982],[78.21258,26.87137],[78.21922,26.87187],[78.22664,26.87488],[78.23264,26.87428],[78.23421,26.87599],[78.23708,26.88897],[78.24371,26.88869],[78.2469,26.89307],[78.25081,26.89178],[78.25913,26.89674],[78.26229,26.90195],[78.2637,26.90831],[78.27077,26.9151],[78.27226,26.91919],[78.27159,26.92122],[78.26531,26.92259],[78.26485,26.92675],[78.25856,26.93371],[78.25496,26.93531],[78.25364,26.9352],[78.25319,26.93273],[78.25567,26.92866],[78.25462,26.92581],[78.2479,26.92865],[78.24191,26.92614],[78.23862,26.92664],[78.23738,26.93597],[78.23129,26.93658],[78.22669,26.94527],[78.2242,26.94646],[78.22056,26.94343],[78.21643,26.93508],[78.21014,26.93123],[78.20517,26.93263],[78.19766,26.94093],[78.19155,26.94246],[78.18128,26.94084],[78.17199,26.94817],[78.15646,26.94321],[78.15129,26.94801],[78.14727,26.94944],[78.14268,26.94983],[78.1328,26.94737],[78.12451,26.94928],[78.11444,26.944],[78.11177,26.93976],[78.11375,26.93599],[78.12278,26.93452],[78.1232,26.93183],[78.12108,26.93204],[78.12182,26.92258],[78.12019,26.92149],[78.10517,26.92682],[78.10176,26.91783],[78.10158,26.91635],[78.1084,26.91219],[78.11265,26.90291],[78.11293,26.89901],[78.1112,26.89588],[78.10737,26.89638],[78.10434,26.90343],[78.10021,26.9049],[78.09438,26.9033],[78.09867,26.89659],[78.09604,26.89378],[78.07173,26.90637],[78.06695,26.91139],[78.0641,26.90652],[78.05952,26.90885],[78.05585,26.90691],[78.04881,26.91013],[78.04805,26.90747],[78.05126,26.9017],[78.05212,26.89421],[78.05019,26.87578],[78.05172,26.87072],[78.05597,26.86839],[78.04466,26.86998],[78.032,26.8518],[78.02647,26.84953],[78.02224,26.85268],[78.02096,26.85751],[78.03227,26.86516],[78.03528,26.86837],[78.03548,26.8708],[78.03119,26.87363],[78.02423,26.87257],[78.02577,26.8789],[78.02778,26.88044],[78.02722,26.88397],[78.02997,26.8841],[78.03019,26.88603],[78.0234,26.89099],[78.02132,26.90032],[78.01459,26.90291],[78.00963,26.90405],[78.00565,26.90207],[78.00224,26.9029],[77.99303,26.89249],[77.98873,26.89169],[77.98721,26.88935],[77.97645,26.89221],[77.97232,26.89607],[77.97341,26.89821],[77.97139,26.90032],[77.97345,26.90294],[77.97134,26.90587],[77.96958,26.90597],[77.95813,26.89683],[77.94841,26.89358],[77.943,26.89711],[77.93969,26.90678],[77.92577,26.90982],[77.91562,26.90739],[77.91302,26.90886],[77.91558,26.91419],[77.90636,26.91778],[77.90355,26.9146],[77.90686,26.91265],[77.90883,26.90638],[77.90672,26.89286],[77.9089,26.89062],[77.90432,26.88333],[77.89649,26.884],[77.89187,26.88707],[77.8938,26.88892],[77.89248,26.89016],[77.88452,26.89098],[77.88082,26.89945],[77.87756,26.90237],[77.86896,26.90164],[77.86771,26.90628],[77.85782,26.90626],[77.85024,26.91283],[77.84185,26.91257],[77.83638,26.91676],[77.83194,26.91427],[77.82383,26.91993],[77.8215,26.91777],[77.815,26.91975],[77.81021,26.92419],[77.7982,26.916],[77.79299,26.91705],[77.78647,26.92234],[77.78688,26.92386],[77.77949,26.92686],[77.78047,26.92985],[77.77475,26.93215],[77.7606,26.93262],[77.75896,26.93145],[77.75891,26.92648],[77.75318,26.91687],[77.74571,26.92102],[77.744,26.91876],[77.73779,26.92058],[77.73238,26.92015],[77.72492,26.91038],[77.71764,26.89726],[77.723,26.89514],[77.72698,26.89022],[77.7259,26.88876],[77.72788,26.88526],[77.72261,26.87432],[77.70651,26.87684],[77.70124,26.86775],[77.6976,26.86738],[77.69615,26.8677],[77.6943,26.87396],[77.68665,26.87525],[77.68232,26.8694],[77.67643,26.86848],[77.67458,26.86349],[77.67474,26.85755],[77.62976,26.84147],[77.6204,26.8428],[77.61823,26.83204],[77.61034,26.82858],[77.60762,26.8278],[77.60837,26.83912],[77.60081,26.83561],[77.59243,26.82791],[77.57805,26.82721],[77.57448,26.82086],[77.5576,26.81764],[77.54197,26.82242],[77.52569,26.81887],[77.52011,26.82179],[77.51698,26.82578],[77.51761,26.83776],[77.52086,26.83818],[77.52071,26.84152],[77.51771,26.84284],[77.51768,26.84423],[77.50782,26.84571],[77.50117,26.84445],[77.5014,26.83519],[77.49912,26.82412],[77.50069,26.81701],[77.49366,26.80156],[77.49324,26.79767],[77.48747,26.78815],[77.48886,26.78604],[77.48895,26.77904],[77.50256,26.76873],[77.49463,26.75705],[77.48523,26.74801],[77.47804,26.7457],[77.4663,26.74465],[77.46141,26.74198],[77.45456,26.74187],[77.45623,26.74974],[77.46226,26.7574],[77.46367,26.75669],[77.46713,26.76299],[77.47037,26.76466],[77.46745,26.76748],[77.46691,26.77373],[77.45345,26.77788],[77.45151,26.77405],[77.44666,26.77392],[77.44184,26.7686],[77.43832,26.77012],[77.43664,26.76764],[77.43269,26.76784],[77.43428,26.76972],[77.43134,26.77108],[77.43363,26.77344],[77.43319,26.77482],[77.43524,26.77524],[77.43384,26.77957],[77.43708,26.78429],[77.4338,26.78737],[77.43229,26.78703],[77.42827,26.79319],[77.42909,26.80157],[77.42516,26.80152],[77.42061,26.81059],[77.40816,26.81671],[77.39787,26.83037],[77.4052,26.83478],[77.4213,26.83983],[77.42968,26.84708],[77.43116,26.85268],[77.42664,26.859],[77.42728,26.86409],[77.43807,26.86312],[77.4454,26.86826],[77.44842,26.87533],[77.45444,26.87183],[77.45896,26.87284],[77.4619,26.87749],[77.46032,26.88584],[77.46833,26.88722],[77.49026,26.90049],[77.49968,26.90207],[77.52349,26.91114],[77.54292,26.91627],[77.54506,26.91531],[77.55342,26.92004],[77.5832,26.92416],[77.58789,26.93106],[77.58851,26.93552],[77.59109,26.93597],[77.59224,26.94028],[77.59733,26.9383],[77.5975,26.93515],[77.60214,26.93327],[77.62295,26.94978],[77.6299,26.95172],[77.63496,26.95574],[77.64958,26.96288],[77.66088,26.97122],[77.66377,26.96723],[77.66381,26.96426],[77.66545,26.96278],[77.6682,26.96377],[77.66857,26.96174],[77.67092,26.96299],[77.67217,26.95997],[77.6736,26.96378],[77.67692,26.96556],[77.67625,26.97322],[77.69949,26.97512],[77.7224,26.98785],[77.72948,26.98296],[77.73907,26.98422],[77.74347,26.98317],[77.7475,26.98959],[77.74572,26.99505],[77.75327,26.99275],[77.75858,26.99696],[77.75196,26.99778],[77.75029,27.00187],[77.758,27.0018],[77.75999,26.99981],[77.76224,27.00096],[77.76296,27.00685],[77.75986,27.00629],[77.75679,27.01043],[77.75952,27.01798],[77.74954,27.02121],[77.75108,27.02885],[77.74861,27.03086],[77.74111,27.02904],[77.73769,27.02975],[77.73285,27.02353],[77.7293,27.00752],[77.73006,26.99389],[77.71194,26.9971],[77.70526,27.00379],[77.70649,27.0069],[77.70573,27.01446],[77.68962,27.02667],[77.69291,27.03442],[77.69306,27.04085],[77.67977,27.04708],[77.67564,27.04138],[77.67341,27.02887],[77.66558,27.01725],[77.66023,27.02103],[77.6563,27.02098],[77.64221,27.02567],[77.63649,27.01942],[77.63415,27.01245],[77.63003,27.01021],[77.6299,27.01384],[77.62797,27.01507],[77.62853,27.01869],[77.62346,27.02199],[77.61497,27.02353],[77.60182,27.02253],[77.59605,27.02657],[77.59681,27.0327],[77.58209,27.03577],[77.57919,27.03821],[77.56321,27.02937],[77.56714,27.04687],[77.5729,27.04883],[77.57304,27.05275],[77.57531,27.05641],[77.57535,27.05987],[77.57276,27.06451],[77.57722,27.06833],[77.57169,27.07187],[77.56675,27.07319],[77.56583,27.07215],[77.55934,27.07313],[77.55888,27.07196],[77.55687,27.07534],[77.55359,27.07603],[77.54767,27.07154],[77.5447,27.07191],[77.54164,27.06261],[77.53162,27.06457],[77.52555,27.06375],[77.51935,27.06662],[77.52637,27.07824],[77.52636,27.08462],[77.52265,27.08917],[77.51059,27.09042],[77.50762,27.08888],[77.50544,27.0923],[77.51774,27.10246],[77.52039,27.10437],[77.53757,27.09833],[77.53993,27.10623],[77.54329,27.10422],[77.54904,27.10751],[77.55028,27.11128],[77.56248,27.11017],[77.58123,27.11924],[77.58811,27.11652],[77.59266,27.12023],[77.59785,27.118],[77.60446,27.12425],[77.60299,27.12455],[77.60282,27.13276],[77.59897,27.13455],[77.59754,27.1389],[77.59897,27.14345],[77.60032,27.1423],[77.60555,27.14356],[77.61369,27.1506],[77.61415,27.15249],[77.61217,27.15284],[77.61057,27.15581],[77.61005,27.16286],[77.61826,27.16886],[77.61996,27.17355],[77.63434,27.16788],[77.63787,27.16384],[77.64412,27.16555],[77.649,27.17032],[77.6584,27.17011],[77.67301,27.18196],[77.68113,27.1944],[77.67553,27.19807],[77.66564,27.20901],[77.66354,27.20728],[77.65029,27.20807],[77.64671,27.21022],[77.64506,27.21688],[77.64832,27.22353],[77.65255,27.22609],[77.65282,27.23484],[77.64294,27.2349],[77.64554,27.24328],[77.64301,27.24789],[77.63737,27.25098],[77.63318,27.25813],[77.62731,27.2595],[77.62116,27.25519],[77.61643,27.2578],[77.61602,27.26171],[77.61319,27.26582],[77.6171,27.27086],[77.61821,27.26966],[77.62178,27.27505],[77.6147,27.27892],[77.61683,27.28645],[77.6118,27.29078],[77.60629,27.2921],[77.60571,27.29055],[77.59867,27.2972],[77.60052,27.30073],[77.60801,27.30057],[77.61016,27.30614],[77.61449,27.30717],[77.61873,27.31227],[77.6219,27.31305],[77.62231,27.3207],[77.62081,27.3264],[77.62271,27.33619],[77.61636,27.34043],[77.6147,27.33658],[77.61199,27.33623],[77.61254,27.33192],[77.60453,27.33205],[77.6013,27.33429],[77.59965,27.33217],[77.59117,27.33046],[77.58379,27.3213],[77.57878,27.32266],[77.57727,27.32358],[77.57705,27.32794],[77.54794,27.33689],[77.54556,27.34957],[77.53957,27.34795],[77.52952,27.35166],[77.52993,27.35268],[77.52257,27.35725],[77.51969,27.36118],[77.5161,27.36252],[77.51585,27.36793],[77.51326,27.37011],[77.50991,27.36981],[77.50844,27.37182],[77.50953,27.37405],[77.50719,27.37709],[77.48462,27.38353],[77.4727,27.37708],[77.47025,27.38348],[77.43998,27.39033],[77.43806,27.40895],[77.43222,27.41539],[77.4211,27.42202],[77.42584,27.43631],[77.42666,27.44511],[77.42934,27.44455],[77.43264,27.44713],[77.4362,27.44646],[77.43866,27.44905],[77.43662,27.45331],[77.43781,27.45632],[77.43367,27.46],[77.42609,27.46294],[77.42709,27.46417],[77.4257,27.46689],[77.42223,27.46125],[77.41907,27.46996],[77.41576,27.47264],[77.40155,27.4765],[77.39894,27.47945],[77.3988,27.48283],[77.401,27.49727],[77.39898,27.50019],[77.39057,27.5047],[77.39165,27.50814],[77.38739,27.51289],[77.38284,27.51569],[77.37403,27.51186],[77.3679,27.51547],[77.35735,27.51657],[77.33999,27.52662],[77.33869,27.53134],[77.34006,27.53889],[77.34598,27.53874],[77.34916,27.54315],[77.33808,27.54974],[77.33625,27.55767],[77.33681,27.56668],[77.33838,27.56907],[77.33727,27.56976],[77.33959,27.57261],[77.34526,27.57237],[77.34722,27.57473],[77.34724,27.57773],[77.35144,27.58122],[77.35018,27.58344],[77.35822,27.58896],[77.35326,27.59326],[77.34411,27.59708],[77.33453,27.5913],[77.31706,27.60675],[77.31878,27.6108],[77.32721,27.6204],[77.34619,27.6395],[77.35258,27.65124],[77.34478,27.66092],[77.34568,27.67343],[77.34096,27.67676],[77.34455,27.6812],[77.34082,27.68635],[77.3414,27.69508],[77.33846,27.69841],[77.34115,27.70337],[77.33023,27.70906],[77.32929,27.7076],[77.3221,27.70662],[77.31175,27.70869],[77.3097,27.70663],[77.30393,27.71079],[77.30299,27.72591],[77.31938,27.73349],[77.31945,27.73667],[77.31217,27.74194],[77.31414,27.74464],[77.3084,27.75097],[77.30797,27.75281],[77.3117,27.75804],[77.3093,27.75944],[77.30784,27.76721],[77.31275,27.77396],[77.3105,27.7772],[77.31048,27.78288],[77.30868,27.78447],[77.31044,27.78808],[77.30883,27.7869],[77.30596,27.78846],[77.30447,27.79007],[77.30581,27.79105],[77.30286,27.79405],[77.29542,27.79674],[77.28579,27.79621],[77.28518,27.79862],[77.2829,27.79937],[77.28369,27.80107],[77.26876,27.81494],[77.26443,27.80464],[77.25237,27.79069],[77.24812,27.79119],[77.24174,27.78354],[77.2367,27.78452],[77.23382,27.78706],[77.23822,27.79227],[77.2326,27.7965],[77.22658,27.79858],[77.22238,27.79588],[77.21065,27.8011],[77.21333,27.80765],[77.20671,27.81377],[77.20338,27.82344],[77.20207,27.82376],[77.19784,27.81586],[77.19135,27.80908],[77.19265,27.80817],[77.19146,27.80683],[77.19857,27.79882],[77.19268,27.79412],[77.19045,27.79434],[77.1833,27.78678],[77.1778,27.7871],[77.17702,27.78547],[77.1691,27.7909],[77.17357,27.79441],[77.17893,27.80438],[77.18242,27.80203],[77.1847,27.8025],[77.18944,27.80902],[77.17985,27.81715],[77.16723,27.81295],[77.15951,27.81634],[77.15655,27.80878],[77.16155,27.80329],[77.16081,27.79258],[77.15855,27.78735],[77.15651,27.78453],[77.14358,27.78559],[77.13522,27.77509],[77.1318,27.77807],[77.13452,27.78604],[77.12285,27.79262],[77.1131,27.78642],[77.10848,27.78548],[77.0808,27.80408],[77.08167,27.80625],[77.07462,27.81356],[77.06386,27.81126],[77.05556,27.81792],[77.0538,27.81694],[77.0448,27.82098],[77.04272,27.81828],[77.04583,27.81496],[77.04438,27.81216],[77.04057,27.81257],[77.03871,27.81012],[77.02658,27.77924],[77.0344,27.77811],[77.03577,27.78153],[77.05614,27.7712],[77.05758,27.77001],[77.05585,27.76342],[77.05955,27.76091],[77.06962,27.76747],[77.07209,27.76446],[77.07456,27.76701],[77.07635,27.76632],[77.0802,27.75725],[77.07819,27.7512],[77.08248,27.74588],[77.08566,27.73809],[77.07724,27.73551],[77.07281,27.73115],[77.06543,27.7314],[77.05963,27.72648],[77.04874,27.73153],[77.05032,27.73504],[77.04614,27.7373],[77.04685,27.73972],[77.04452,27.7419],[77.04507,27.74328],[77.03647,27.74861],[77.03394,27.74522],[77.0261,27.74638],[77.02509,27.7439],[77.01982,27.74577],[77.01152,27.73108],[77.0001,27.73697],[76.99039,27.7095],[76.9872,27.69515],[76.98861,27.69299],[76.98206,27.67612],[76.97937,27.6536],[76.96613,27.65839],[76.96267,27.66199],[76.95876,27.66243],[76.95486,27.66469],[76.95313,27.66804],[76.94377,27.67372],[76.93822,27.66647],[76.93336,27.65603],[76.93223,27.65881],[76.92692,27.66126],[76.91557,27.65227],[76.91083,27.65467],[76.91206,27.65797],[76.90671,27.66169],[76.91089,27.66802],[76.89859,27.67754],[76.90623,27.68629],[76.89033,27.69571],[76.88988,27.70075],[76.89514,27.70115],[76.90863,27.69368],[76.91642,27.69813],[76.92061,27.69571],[76.92473,27.69992],[76.92103,27.70309],[76.91904,27.7098],[76.91423,27.71319],[76.90478,27.71734],[76.89878,27.71647],[76.89452,27.71783],[76.89436,27.72435],[76.89241,27.72567],[76.89268,27.73346],[76.89698,27.73812],[76.89986,27.73671],[76.90169,27.74397],[76.90055,27.74737],[76.90084,27.76466],[76.90365,27.76933],[76.90215,27.77136],[76.90228,27.77534],[76.9064,27.77889],[76.90761,27.78235],[76.90617,27.78778],[76.90904,27.78691],[76.91334,27.78859],[76.91152,27.79609],[76.91363,27.80101],[76.919,27.80414],[76.91861,27.80744],[76.91404,27.80811],[76.90999,27.8149],[76.91358,27.8317],[76.91502,27.83454],[76.9357,27.82881],[76.94232,27.84262],[76.943,27.85357],[76.94148,27.8555],[76.94129,27.86418],[76.93746,27.87809],[76.93766,27.89622],[76.94163,27.89708],[76.95057,27.89564],[76.9496,27.90927],[76.95162,27.91803],[76.93154,27.92235],[76.93074,27.9533],[76.9333,27.9617],[76.93366,27.97129],[76.93794,27.98282],[76.93351,27.98161],[76.93285,27.98902],[76.93061,27.99335],[76.93635,28.01206],[76.9396,28.04298],[76.94839,28.05795],[76.95384,28.0626],[76.95457,28.07313],[76.95791,28.07745],[76.95795,28.08751],[76.96142,28.09958],[76.96195,28.11127],[76.97055,28.13843],[76.95792,28.14222],[76.94816,28.14221],[76.95095,28.14988],[76.93199,28.15305],[76.91973,28.1669],[76.90654,28.17189],[76.90702,28.17295],[76.9015,28.17866],[76.90245,28.18111],[76.89252,28.18359],[76.89162,28.19029],[76.89226,28.19323],[76.89864,28.19335],[76.90205,28.19898],[76.90618,28.1973],[76.90677,28.20031],[76.89088,28.20496],[76.88887,28.2032],[76.87836,28.20712],[76.87471,28.20549],[76.871,28.20659],[76.87306,28.21102],[76.87274,28.21505],[76.8749,28.21777],[76.85761,28.2212],[76.85498,28.22013],[76.84689,28.22148],[76.84606,28.21953],[76.83818,28.21995],[76.83121,28.20917],[76.81279,28.209],[76.8084,28.21086],[76.8048,28.20454],[76.80478,28.1973],[76.81303,28.19328],[76.81225,28.19091],[76.80916,28.18704],[76.80622,28.18654],[76.80123,28.18774],[76.80036,28.19249],[76.79752,28.19181],[76.79249,28.18419],[76.79573,28.18042],[76.79502,28.16939],[76.79743,28.16844],[76.79606,28.16693],[76.80029,28.16446],[76.80063,28.16234],[76.79481,28.14838],[76.78381,28.15091],[76.78206,28.14707],[76.77637,28.14411],[76.77148,28.14501],[76.76245,28.14264],[76.75313,28.13511],[76.74356,28.12103],[76.71576,28.12774],[76.71206,28.12545],[76.70302,28.1076],[76.69819,28.11198],[76.685,28.09158],[76.688,28.09023],[76.68736,28.08765],[76.66337,28.0912],[76.65716,28.08917],[76.65558,28.07574],[76.65165,28.06162],[76.65192,28.05633],[76.65559,28.05312],[76.65857,28.04692],[76.65865,28.04292],[76.65439,28.03468],[76.66302,28.02985],[76.66816,28.01383],[76.65774,28.00743],[76.64068,28.00232],[76.60619,28.00385],[76.60186,27.99952],[76.58989,27.99786],[76.58799,27.9933],[76.58374,27.99167],[76.58039,27.9789],[76.56442,27.9781],[76.56169,27.96613],[76.54814,27.96384],[76.54472,27.96367],[76.53809,27.9677],[76.53595,27.97952],[76.54109,27.98478],[76.54275,27.99948],[76.53639,28.0],[76.54072,28.00217],[76.54405,28.00742],[76.54546,28.00729],[76.54281,28.01777],[76.53927,28.0232],[76.54096,28.03005],[76.54382,28.03421],[76.53037,28.04024],[76.52041,28.03223],[76.51007,28.02966],[76.50257,28.03143],[76.49742,28.04331],[76.48227,28.04187],[76.48118,28.04059],[76.46482,28.04243],[76.46155,28.04053],[76.45467,28.04233],[76.45868,28.05326],[76.46254,28.05911],[76.46848,28.05715],[76.47238,28.05855],[76.47606,28.05721],[76.47625,28.05441],[76.48943,28.05278],[76.49686,28.05381],[76.50124,28.05969],[76.47891,28.07767],[76.4718,28.08024],[76.46765,28.07879],[76.44784,28.08896],[76.45204,28.09122],[76.45705,28.10529],[76.46369,28.10916],[76.47725,28.10797],[76.47667,28.10553],[76.48002,28.10052],[76.49905,28.1002],[76.50052,28.11457],[76.50268,28.11871],[76.49628,28.12007],[76.48708,28.11941],[76.49193,28.12985],[76.48341,28.13081],[76.48187,28.12837],[76.47638,28.13084],[76.47675,28.13205],[76.47205,28.13508],[76.47131,28.1385],[76.47557,28.14345],[76.47574,28.14858],[76.46634,28.15151],[76.46301,28.14811],[76.45995,28.14747],[76.4374,28.14871],[76.43262,28.14092],[76.40083,28.14502],[76.39568,28.13715],[76.39362,28.13749],[76.39041,28.13415],[76.38473,28.13671],[76.38173,28.13324],[76.36632,28.13681],[76.35657,28.14373],[76.35824,28.15492],[76.35418,28.1548],[76.35785,28.16106],[76.34525,28.1694],[76.33453,28.17236],[76.33318,28.16982],[76.30877,28.1789],[76.30739,28.17906],[76.30523,28.17588],[76.29227,28.17922],[76.28958,28.17027],[76.28243,28.17127],[76.28071,28.16553],[76.30143,28.16005],[76.30163,28.15857],[76.30456,28.15932],[76.30336,28.15483],[76.29787,28.15212],[76.29758,28.14912],[76.3111,28.14555],[76.31523,28.15037],[76.32097,28.14856],[76.3299,28.14275],[76.33182,28.13928],[76.33063,28.13704],[76.33348,28.13624],[76.33315,28.13356],[76.35986,28.12492],[76.35044,28.1142],[76.34646,28.11256],[76.33659,28.10261],[76.31864,28.10768],[76.30927,28.10819],[76.30144,28.09787],[76.31876,28.08881],[76.32323,28.09053],[76.32888,28.08768],[76.33422,28.07992],[76.33302,28.07684],[76.34394,28.07142],[76.34349,28.0702],[76.35567,28.07073],[76.35514,28.06811],[76.3566,28.06749],[76.34965,28.04588],[76.34236,28.03058],[76.32877,28.01878],[76.32298,28.02153],[76.32076,28.01598],[76.31895,28.01553],[76.31357,28.01708],[76.31321,28.0189],[76.29898,28.02271],[76.29216,28.02586],[76.29117,28.03457],[76.29356,28.0492],[76.28418,28.0515],[76.28385,28.05698],[76.26096,28.06753],[76.25552,28.06777],[76.24293,28.06436],[76.23804,28.04972],[76.23072,28.05114],[76.2281,28.0484],[76.22115,28.05022],[76.21934,28.04921],[76.20861,28.05227],[76.20959,28.05587],[76.20113,28.05842],[76.19918,28.05571],[76.1895,28.05645],[76.18879,28.05321],[76.1804,28.05452],[76.17794,28.0456],[76.18878,28.03661],[76.18954,28.03445],[76.19604,28.03039],[76.20181,28.02935],[76.20372,28.03775],[76.2167,28.03548],[76.2148,28.02658],[76.20334,28.02803],[76.19687,28.01548],[76.18539,28.02029],[76.17689,28.02155],[76.16955,28.00742],[76.16138,28.0002],[76.15778,27.98898],[76.15756,27.98721],[76.16693,27.98299],[76.16597,27.97691],[76.16345,27.97342],[76.18664,27.96548],[76.18401,27.96181],[76.18245,27.96201],[76.18066,27.95713],[76.17993,27.95287],[76.18241,27.95193],[76.17705,27.92973],[76.17395,27.92982],[76.16868,27.91528],[76.16821,27.90338],[76.18609,27.89899],[76.20146,27.89254],[76.20209,27.88732],[76.20028,27.87824],[76.19437,27.87738],[76.19381,27.85951],[76.21216,27.84644],[76.20885,27.84001],[76.22518,27.83326],[76.21733,27.81681],[76.20934,27.81634],[76.20754,27.81704],[76.20779,27.81866],[76.1996,27.82156],[76.19226,27.80926],[76.18265,27.79862],[76.17496,27.79807],[76.17214,27.79965],[76.17215,27.80515],[76.16937,27.80795],[76.16053,27.81394],[76.15308,27.81537],[76.15364,27.81975],[76.13227,27.82448],[76.1354,27.83929],[76.12779,27.84372],[76.12333,27.85102],[76.1156,27.85207],[76.11441,27.85088],[76.10587,27.8561],[76.09809,27.85686],[76.08888,27.86054],[76.0862,27.8559],[76.08567,27.84471],[76.07929,27.84575],[76.07489,27.84382],[76.06064,27.84828],[76.04808,27.83498],[76.04087,27.84128],[76.04023,27.83894],[76.03625,27.8374],[76.03022,27.84005],[76.02729,27.83852],[76.00955,27.84152],[76.00646,27.83908],[76.00464,27.83445],[75.99857,27.83821],[75.98703,27.84167],[75.97137,27.85197],[75.97249,27.8606],[75.97936,27.86545],[75.97763,27.87379],[75.98442,27.88259],[75.97531,27.89366],[75.97925,27.89555],[75.98749,27.90416],[75.97317,27.90209],[75.9748,27.91179],[75.96807,27.91437],[75.93828,27.91408],[75.93707,27.91777],[75.93447,27.91863],[75.93697,27.92187],[75.93939,27.92109],[75.93963,27.92279],[75.93236,27.93014],[75.93907,27.9406],[75.95168,27.94773],[75.95795,27.93804],[75.95791,27.93591],[75.96603,27.93498],[75.96816,27.93193],[75.97272,27.93267],[75.98305,27.95098],[75.97783,27.95438],[75.98196,27.96533],[75.98864,27.96821],[75.99456,27.97541],[75.99817,27.97529],[75.99994,27.97758],[75.98989,27.98233],[75.98594,27.97862],[75.96878,27.98094],[75.9658,27.98361],[75.965,27.99632],[75.96672,28.00003],[75.97761,28.0002],[75.98689,27.99759],[75.98993,27.99469],[75.99554,28.00689],[75.99521,28.00879],[75.97112,28.01608],[75.97273,28.02364],[75.97695,28.03137],[75.98348,28.03139],[75.98906,28.03361],[75.98967,28.03582],[75.99352,28.0352],[75.99462,28.03852],[75.99601,28.03828],[75.99774,28.033],[76.01639,28.03051],[76.01867,28.04201],[76.01713,28.0527],[76.00776,28.05571],[76.00828,28.05839],[76.02536,28.05424],[76.02959,28.06144],[76.03371,28.06334],[76.03882,28.06933],[76.0408,28.07406],[76.03727,28.07598],[76.03874,28.07822],[76.03537,28.08052],[76.02324,28.08599],[76.01682,28.07466],[76.00988,28.06763],[76.00766,28.05893],[75.99882,28.05714],[75.99473,28.0522],[75.99287,28.04633],[75.98441,28.04709],[75.97484,28.05099],[75.9793,28.05793],[75.98265,28.05741],[75.98833,28.0663],[75.98869,28.069],[75.98289,28.07665],[75.98343,28.08135],[75.97228,28.08327],[75.96463,28.08047],[75.94986,28.08612],[75.9386,28.08794],[75.94556,28.10716],[75.9617,28.11479],[75.96739,28.11382],[75.97667,28.12475],[75.98819,28.12504],[75.99899,28.12277],[76.00435,28.13199],[76.00061,28.13321],[76.00302,28.14318],[76.00453,28.14426],[76.00405,28.14772],[76.00749,28.15315],[76.01685,28.15009],[76.02612,28.16465],[76.03001,28.16409],[76.03179,28.16786],[76.04225,28.16548],[76.06025,28.16691],[76.07069,28.16515],[76.06966,28.15578],[76.06537,28.14153],[76.0747,28.13714],[76.08441,28.13693],[76.08788,28.13998],[76.09294,28.14003],[76.095,28.14141],[76.09545,28.15086],[76.07618,28.16855],[76.07634,28.17334],[76.07399,28.17359],[76.07437,28.19013],[76.07212,28.19018],[76.07192,28.19434],[76.05149,28.19629],[76.05094,28.19807],[76.04734,28.19814],[76.04744,28.20278],[76.05241,28.20402],[76.05573,28.21261],[76.056,28.22028],[76.03783,28.22271],[76.03721,28.22575],[76.02777,28.23136],[76.02781,28.23265],[76.01611,28.23695],[76.01653,28.24119],[76.01318,28.24405],[76.01296,28.24604],[76.01609,28.25019],[76.01474,28.25016],[76.01508,28.25253],[76.02264,28.26735],[76.02261,28.27035],[76.02633,28.27503],[76.00299,28.28404],[75.98621,28.29312],[75.98178,28.29953],[75.97793,28.30187],[75.97805,28.30933],[75.97342,28.31491],[75.97246,28.31858],[75.95784,28.31383],[75.95679,28.32675],[75.95225,28.32921],[75.95231,28.33101],[75.95517,28.33113],[75.95502,28.33377],[75.94806,28.33417],[75.9385,28.33734],[75.93297,28.3366],[75.932,28.3429],[75.92854,28.34312],[75.93009,28.34901],[75.92955,28.35914],[75.92738,28.3598],[75.92713,28.3629],[75.92355,28.36335],[75.92238,28.36642],[75.91669,28.36739],[75.91824,28.372],[75.90853,28.37092],[75.9084,28.37258],[75.90483,28.37327],[75.90064,28.37178],[75.90021,28.37806],[75.89844,28.38033],[75.8993,28.38396],[75.89761,28.38382],[75.89518,28.38762],[75.89637,28.39007],[75.89308,28.38969],[75.8904,28.38308],[75.87555,28.38723],[75.86395,28.38522],[75.86401,28.389],[75.85475,28.38982],[75.85407,28.39174],[75.845,28.39168],[75.84428,28.39461],[75.83953,28.39437],[75.83745,28.39737],[75.83741,28.40209],[75.83285,28.40535],[75.82216,28.40298],[75.82286,28.40562],[75.81985,28.40686],[75.81867,28.40991],[75.81535,28.40964],[75.81544,28.40762],[75.80982,28.40583],[75.80602,28.40585],[75.80694,28.40913],[75.79957,28.40715],[75.79948,28.40377],[75.79457,28.39961],[75.7886,28.4012],[75.78857,28.40415],[75.77679,28.40037],[75.77632,28.40418],[75.77204,28.4074],[75.77003,28.41264],[75.76672,28.41423],[75.76971,28.42277],[75.77663,28.42472],[75.77977,28.42751],[75.78083,28.43289],[75.78852,28.43356],[75.79213,28.44459],[75.78829,28.45355],[75.78386,28.45334],[75.78349,28.45537],[75.78055,28.45689],[75.76698,28.4613],[75.73567,28.46884],[75.73568,28.47594],[75.73843,28.47746],[75.73947,28.48476],[75.73124,28.486],[75.72902,28.4907],[75.72556,28.4895],[75.71859,28.49023],[75.70795,28.49371],[75.70198,28.49177],[75.69926,28.4954],[75.69022,28.50053],[75.68419,28.51097],[75.6774,28.51526],[75.67093,28.51712],[75.671,28.52534],[75.66845,28.53306],[75.6658,28.53599],[75.65372,28.53654],[75.64524,28.53937],[75.63948,28.54416],[75.63348,28.54444],[75.6317,28.5539],[75.62572,28.5658],[75.62575,28.57569],[75.62322,28.58901],[75.62406,28.59564],[75.62171,28.60207],[75.5911,28.60558],[75.58769,28.60799],[75.58627,28.61319],[75.56152,28.61321],[75.56073,28.63592],[75.55486,28.64384],[75.5498,28.64104],[75.54425,28.65415],[75.54509,28.65943],[75.54121,28.66049],[75.54502,28.6831],[75.53891,28.69478],[75.53993,28.69672],[75.53745,28.71801],[75.53991,28.72134],[75.54002,28.72448],[75.53046,28.73825],[75.5361,28.74517],[75.52914,28.74864],[75.52863,28.75217],[75.52389,28.75716],[75.52404,28.76098],[75.52212,28.76101],[75.52313,28.76364],[75.52147,28.76337],[75.52301,28.76608],[75.52206,28.7679],[75.51655,28.77038],[75.51796,28.77308],[75.51697,28.77468],[75.51405,28.77318],[75.51067,28.7811],[75.50854,28.78043],[75.50326,28.78253],[75.50466,28.78769],[75.50796,28.78873],[75.50609,28.79236],[75.50845,28.79131],[75.51127,28.79364],[75.51068,28.79567],[75.50868,28.79564],[75.50891,28.80272],[75.51182,28.80414],[75.51625,28.81242],[75.51937,28.81274],[75.51855,28.81706],[75.52011,28.82218],[75.519,28.82627],[75.52025,28.83399],[75.51555,28.83423],[75.51532,28.83983],[75.51074,28.83828],[75.50783,28.83922],[75.50767,28.84281],[75.50506,28.84435],[75.50529,28.85127],[75.50202,28.85093],[75.5,28.84728],[75.49847,28.84896],[75.49697,28.85697],[75.49861,28.87044],[75.4966,28.89616],[75.49425,28.89739],[75.49295,28.90114],[75.48981,28.90105],[75.48757,28.90317],[75.48633,28.9066],[75.48728,28.90795],[75.48398,28.90753],[75.48492,28.90865],[75.4734,28.92338],[75.47722,28.9347],[75.48382,28.9334],[75.48422,28.93465],[75.49073,28.93441],[75.49333,28.93627],[75.49413,28.93467],[75.50084,28.93393],[75.50047,28.93593],[75.50569,28.93591],[75.50874,28.94224],[75.51156,28.94206],[75.51187,28.94369],[75.50835,28.94831],[75.51046,28.95046],[75.51003,28.95388],[75.51273,28.95528],[75.51214,28.95692],[75.51475,28.96073],[75.52116,28.96287],[75.52436,28.9695],[75.52742,28.971],[75.52685,28.98532],[75.52337,28.99102],[75.52077,29.0],[75.52039,29.00365],[75.522,29.00375],[75.51558,29.00826],[75.50515,29.01179],[75.48481,29.01213],[75.47261,29.01431],[75.4629,29.01247],[75.4586,29.0142],[75.44572,29.00832],[75.44569,29.01797],[75.44295,29.02092],[75.44295,29.02309],[75.44495,29.02438],[75.44632,29.03],[75.44787,29.03044],[75.44713,29.03516],[75.45045,29.03539],[75.45193,29.03917],[75.44672,29.04554],[75.44622,29.04857],[75.4432,29.04804],[75.44217,29.05096],[75.44386,29.05223],[75.44182,29.05754],[75.43145,29.05631],[75.4106,29.06223],[75.39126,29.06273],[75.39469,29.07596],[75.39421,29.07824],[75.3927,29.07845],[75.39262,29.08477],[75.39099,29.08538],[75.39285,29.09285],[75.39574,29.09321],[75.39693,29.09758],[75.3938,29.0982],[75.39211,29.10199],[75.39387,29.11007],[75.40578,29.1198],[75.40216,29.1279],[75.38439,29.12947],[75.3715,29.1381],[75.37117,29.14157],[75.37874,29.14223],[75.3797,29.1508],[75.38137,29.15278],[75.38125,29.16895],[75.39526,29.16775],[75.40677,29.16975],[75.40588,29.17289],[75.40945,29.18021],[75.4127,29.18159],[75.41438,29.18431],[75.41294,29.18772],[75.41407,29.18939],[75.41179,29.19114],[75.41132,29.19392],[75.41228,29.19682],[75.41102,29.20746],[75.40737,29.21107],[75.40858,29.21331],[75.40293,29.21324],[75.39682,29.21754],[75.39801,29.22349],[75.4023,29.22243],[75.40208,29.2271],[75.40498,29.22818],[75.40526,29.23151],[75.40878,29.23506],[75.40776,29.236],[75.40868,29.24189],[75.41199,29.24275],[75.4107,29.25548],[75.40719,29.2583],[75.40607,29.25701],[75.40547,29.26054],[75.39266,29.26135],[75.38861,29.26124],[75.38518,29.25802],[75.37802,29.25683],[75.37729,29.25471],[75.3753,29.25535],[75.36235,29.24443],[75.36085,29.23944],[75.36129,29.22941],[75.35998,29.2272],[75.35589,29.22301],[75.34984,29.22377],[75.34269,29.22929],[75.32963,29.23265],[75.32812,29.23531],[75.33389,29.24116],[75.33431,29.24415],[75.33585,29.24427],[75.33565,29.24796],[75.33874,29.25197],[75.3396,29.25686],[75.33843,29.25886],[75.33963,29.25977],[75.33846,29.26347],[75.33991,29.26346],[75.34004,29.26634],[75.33865,29.27345],[75.34032,29.27347],[75.34061,29.28113],[75.33504,29.28688],[75.32205,29.28949],[75.31618,29.28178],[75.30579,29.2746],[75.29742,29.27182],[75.28741,29.27332],[75.28497,29.26909],[75.28377,29.24979],[75.2557,29.25181],[75.24469,29.25],[75.24215,29.24409],[75.24207,29.23641],[75.23839,29.23024],[75.21803,29.23187],[75.21014,29.23465],[75.19851,29.25326],[75.19573,29.26331],[75.18801,29.26819],[75.18367,29.26689],[75.18138,29.26366],[75.17623,29.26319],[75.16864,29.25875],[75.17439,29.25125],[75.16283,29.24402],[75.13784,29.23873],[75.12439,29.23987],[75.11961,29.22287],[75.07554,29.22969],[75.07287,29.23783],[75.07419,29.24327],[75.07321,29.24783],[75.06124,29.26397],[75.06041,29.27601],[75.05,29.28608],[75.03482,29.2876],[75.01988,29.2862],[74.99923,29.27031],[74.98326,29.28057],[74.971,29.27908],[74.96117,29.28058],[74.95581,29.28615],[74.94841,29.30147],[74.95534,29.3091],[74.9609,29.32025],[74.95807,29.32818],[74.95453,29.33272],[74.93989,29.34002],[74.93828,29.36203],[74.9168,29.3713],[74.90031,29.38476],[74.87766,29.38354],[74.8714,29.39487],[74.85058,29.40359],[74.84966,29.40153],[74.84482,29.39968],[74.82038,29.39721],[74.78755,29.36143],[74.78189,29.35791],[74.77002,29.35691],[74.7622,29.35438],[74.73921,29.35414],[74.71952,29.37001],[74.70808,29.36676],[74.69097,29.36592],[74.67979,29.36926],[74.65823,29.37197],[74.65209,29.35129],[74.65451,29.33294],[74.63438,29.32961],[74.59929,29.32746],[74.60734,29.35623],[74.60291,29.36491],[74.58973,29.37664],[74.58525,29.37852],[74.57789,29.3885],[74.57392,29.39994],[74.57366,29.40648],[74.56641,29.42048],[74.54926,29.42473],[74.53662,29.42455],[74.53458,29.43526],[74.53644,29.44321],[74.53466,29.44772],[74.53678,29.45956],[74.54377,29.46797],[74.57323,29.4651],[74.58466,29.45849],[74.58639,29.46505],[74.59588,29.4804],[74.59539,29.48916],[74.59973,29.49398],[74.60101,29.50106],[74.6046,29.50318],[74.60977,29.51168],[74.62189,29.52225],[74.62309,29.53105],[74.61903,29.53258],[74.61483,29.53116],[74.61428,29.53533],[74.61185,29.5385],[74.6077,29.53887],[74.6023,29.54392],[74.59519,29.54498],[74.58991,29.54791],[74.57592,29.56011],[74.57497,29.56432],[74.57698,29.5718],[74.57762,29.60001],[74.58032,29.61712],[74.58276,29.62329],[74.58156,29.62716],[74.5893,29.63181],[74.59138,29.63954],[74.58654,29.64734],[74.58548,29.65447],[74.59315,29.67676],[74.60121,29.69039],[74.60018,29.69905],[74.60475,29.7049],[74.60982,29.72176],[74.60815,29.7319],[74.60954,29.74323],[74.61594,29.75227],[74.60334,29.75791],[74.601,29.7659],[74.59634,29.7674],[74.58749,29.76691],[74.5814,29.75251],[74.57879,29.75223],[74.5793,29.74903],[74.5775,29.74784],[74.57482,29.74879],[74.57731,29.75414],[74.55242,29.75567],[74.54614,29.75445],[74.53399,29.7404],[74.50671,29.74231],[74.47787,29.74681],[74.47362,29.76721],[74.47354,29.78632],[74.48352,29.8136],[74.50797,29.83329],[74.53356,29.83882],[74.54419,29.84439],[74.55138,29.85276],[74.56112,29.87004],[74.55116,29.88271],[74.54383,29.90168],[74.52187,29.90254],[74.50979,29.90842],[74.51553,29.91592],[74.5186,29.92958],[74.52716,29.94294],[74.49624,29.94455]],[[76.43453,28.10908],[76.43047,28.10974],[76.42285,28.11432],[76.42374,28.12081],[76.42181,28.12252],[76.42928,28.13851],[76.4336,28.13641],[76.43326,28.13034],[76.43571,28.12929],[76.44104,28.11988],[76.43964,28.11012],[76.43453,28.10908]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-SK","area_level":"State","area_name":"Sikkim","geometry_source":"SOI_States","same_as":"LGD/11/State"},"geometry":{"type":"Polygon","coordinates":[[[88.65081,28.09682],[88.64595,28.09875],[88.63707,28.11611],[88.62874,28.12442],[88.60996,28.12869],[88.60858,28.1226],[88.6177,28.11777],[88.61934,28.09808],[88.6116,28.09905],[88.60523,28.0976],[88.60214,28.09205],[88.60259,28.08917],[88.59123,28.08926],[88.584,28.08331],[88.57494,28.08462],[88.57071,28.08879],[88.56627,28.09033],[88.5597,28.08393],[88.55255,28.08142],[88.55622,28.07348],[88.5487,28.04681],[88.5508,28.03757],[88.54364,28.03325],[88.53271,28.03332],[88.52753,28.03777],[88.52351,28.03499],[88.51968,28.04355],[88.50962,28.04119],[88.50448,28.04782],[88.49562,28.05393],[88.48805,28.04448],[88.48036,28.04254],[88.47444,28.03387],[88.46782,28.01714],[88.46079,28.01455],[88.45638,28.01492],[88.44375,28.00938],[88.43059,28.00809],[88.42461,28.0016],[88.4147,27.99888],[88.41222,27.9945],[88.41077,27.98328],[88.4068,27.98173],[88.40302,27.98263],[88.39907,27.97804],[88.38739,27.97944],[88.38618,27.98142],[88.38091,27.98307],[88.37701,27.98987],[88.37177,27.99108],[88.36958,27.98933],[88.36227,27.9887],[88.35227,27.98995],[88.34566,27.98502],[88.33672,27.98415],[88.3304,27.97318],[88.31792,27.9788],[88.3132,27.97084],[88.30821,27.96711],[88.30347,27.96581],[88.29995,27.96728],[88.28604,27.96626],[88.28056,27.95705],[88.27564,27.9547],[88.26624,27.9573],[88.26112,27.94713],[88.2541,27.94527],[88.25108,27.94235],[88.24151,27.95715],[88.23717,27.97085],[88.22915,27.9659],[88.22505,27.96042],[88.21275,27.96428],[88.20796,27.96166],[88.20493,27.94941],[88.2064,27.94167],[88.20059,27.94169],[88.19534,27.94416],[88.18547,27.94349],[88.17907,27.94919],[88.17056,27.95245],[88.16389,27.95768],[88.1543,27.9574],[88.14521,27.96408],[88.13434,27.95132],[88.12939,27.94937],[88.1356,27.94399],[88.13786,27.93715],[88.13207,27.93287],[88.13065,27.92575],[88.12125,27.92197],[88.11958,27.916],[88.12341,27.90714],[88.1343,27.89705],[88.1399,27.88915],[88.13501,27.88162],[88.14007,27.87741],[88.14899,27.87641],[88.15475,27.87072],[88.16493,27.8683],[88.17407,27.86266],[88.17895,27.85648],[88.18321,27.857],[88.18901,27.85438],[88.19522,27.85454],[88.19762,27.85134],[88.1986,27.84533],[88.2019,27.8425],[88.20206,27.83689],[88.19255,27.83296],[88.18801,27.82546],[88.17359,27.8206],[88.17409,27.81737],[88.18561,27.81058],[88.18742,27.8011],[88.19397,27.79641],[88.19717,27.79117],[88.19529,27.78626],[88.1822,27.77577],[88.18179,27.76941],[88.18366,27.7667],[88.18228,27.76262],[88.17767,27.75844],[88.17837,27.74618],[88.16991,27.74114],[88.16287,27.73977],[88.15848,27.74057],[88.15617,27.73611],[88.15447,27.72854],[88.15537,27.71735],[88.1528,27.71172],[88.14903,27.70815],[88.14757,27.7028],[88.15415,27.6918],[88.14694,27.67934],[88.14721,27.67467],[88.14469,27.66535],[88.1385,27.65833],[88.13215,27.6562],[88.12021,27.64525],[88.12063,27.63843],[88.11698,27.62981],[88.11991,27.62765],[88.11661,27.62404],[88.11697,27.62017],[88.11267,27.615],[88.11385,27.61031],[88.10638,27.60271],[88.09302,27.59788],[88.08183,27.58422],[88.07911,27.57909],[88.08055,27.57753],[88.07548,27.57157],[88.08114,27.56515],[88.07862,27.56041],[88.06906,27.55491],[88.0688,27.54626],[88.0612,27.54029],[88.05865,27.53482],[88.05954,27.5319],[88.0655,27.52947],[88.06626,27.52733],[88.06101,27.5249],[88.05842,27.52042],[88.0581,27.51572],[88.06187,27.51217],[88.05786,27.5092],[88.05515,27.50444],[88.05058,27.50393],[88.04662,27.50095],[88.04408,27.49581],[88.04416,27.48418],[88.04554,27.48152],[88.04414,27.4781],[88.04859,27.47242],[88.05714,27.46691],[88.06052,27.46077],[88.06686,27.45787],[88.06435,27.45365],[88.07244,27.44582],[88.06782,27.43834],[88.07506,27.43322],[88.07315,27.43078],[88.07409,27.42681],[88.06779,27.42533],[88.05819,27.41845],[88.05559,27.41829],[88.05071,27.41298],[88.04963,27.40725],[88.0468,27.40593],[88.04842,27.40103],[88.04475,27.38993],[88.04484,27.37987],[88.04157,27.37293],[88.04183,27.37029],[88.049,27.36005],[88.05762,27.35621],[88.0613,27.34476],[88.06362,27.34085],[88.06486,27.34114],[88.06693,27.33577],[88.06346,27.33433],[88.05974,27.32834],[88.0523,27.32422],[88.04938,27.31829],[88.04879,27.31281],[88.04154,27.30408],[88.04087,27.30137],[88.04461,27.29325],[88.04315,27.2915],[88.03852,27.29188],[88.03205,27.28639],[88.03281,27.28038],[88.03043,27.27194],[88.03188,27.2649],[88.03069,27.26285],[88.03089,27.24991],[88.02783,27.24947],[88.02431,27.24208],[88.02463,27.23762],[88.01939,27.23588],[88.0189,27.22498],[88.01715,27.2255],[88.01233,27.21593],[88.01426,27.21291],[88.02721,27.22082],[88.04309,27.21947],[88.05282,27.21341],[88.0645,27.2144],[88.06552,27.20916],[88.07169,27.20416],[88.07917,27.20109],[88.07272,27.1872],[88.07854,27.18035],[88.07976,27.17437],[88.07741,27.1729],[88.0871,27.16422],[88.08775,27.14615],[88.09671,27.1328],[88.11174,27.13118],[88.12288,27.12132],[88.13523,27.12059],[88.13636,27.11475],[88.13891,27.11391],[88.14404,27.11561],[88.14531,27.11177],[88.14984,27.1139],[88.15178,27.10958],[88.15702,27.11031],[88.15881,27.11355],[88.16213,27.11343],[88.16729,27.12243],[88.1706,27.12263],[88.17232,27.12736],[88.17587,27.12981],[88.17919,27.12983],[88.18101,27.13247],[88.18536,27.13077],[88.18958,27.13322],[88.19203,27.13248],[88.19463,27.13485],[88.20144,27.13143],[88.20572,27.13346],[88.21149,27.12989],[88.21375,27.13196],[88.2157,27.13166],[88.21945,27.12847],[88.2196,27.12511],[88.23002,27.11898],[88.24177,27.1195],[88.24858,27.12435],[88.25906,27.12526],[88.26839,27.12951],[88.27248,27.12815],[88.27421,27.13083],[88.27901,27.13187],[88.28507,27.12692],[88.29033,27.12785],[88.29722,27.12518],[88.29918,27.12833],[88.30229,27.12929],[88.31082,27.12507],[88.31534,27.12615],[88.31645,27.12179],[88.32285,27.11764],[88.32368,27.1105],[88.32109,27.10686],[88.32154,27.10475],[88.32944,27.10777],[88.33537,27.10675],[88.33784,27.10983],[88.34139,27.11012],[88.3457,27.10692],[88.34952,27.0998],[88.35604,27.10102],[88.35682,27.09738],[88.35875,27.09601],[88.37489,27.09748],[88.38737,27.09494],[88.39922,27.09025],[88.41103,27.08895],[88.43295,27.07926],[88.43926,27.08241],[88.45053,27.08389],[88.45958,27.09058],[88.46197,27.09838],[88.46645,27.10274],[88.46787,27.11395],[88.47624,27.1223],[88.48509,27.12092],[88.48748,27.12592],[88.49774,27.12382],[88.49967,27.13091],[88.50593,27.13661],[88.5112,27.13724],[88.51324,27.14075],[88.51769,27.14323],[88.51927,27.14752],[88.53235,27.15006],[88.53346,27.15496],[88.52764,27.1574],[88.53136,27.16514],[88.52758,27.16651],[88.52077,27.17289],[88.52463,27.17389],[88.5315,27.17241],[88.53507,27.17889],[88.53963,27.17738],[88.54298,27.18318],[88.55197,27.1831],[88.55828,27.18561],[88.56721,27.18477],[88.58104,27.18881],[88.58333,27.1876],[88.58594,27.19039],[88.58879,27.18636],[88.59025,27.19033],[88.59286,27.19122],[88.59436,27.18789],[88.59795,27.18981],[88.60162,27.18567],[88.60371,27.18623],[88.61432,27.18169],[88.61871,27.18334],[88.62006,27.18194],[88.62228,27.18245],[88.62289,27.17936],[88.62597,27.18037],[88.62671,27.17755],[88.63424,27.17259],[88.63551,27.16668],[88.63978,27.16484],[88.64681,27.16616],[88.65145,27.16485],[88.65335,27.16193],[88.66026,27.16055],[88.66284,27.16168],[88.67102,27.173],[88.67744,27.17802],[88.68146,27.17973],[88.68805,27.17933],[88.70173,27.17387],[88.70449,27.1697],[88.71012,27.16684],[88.71248,27.16248],[88.71599,27.16003],[88.71781,27.14331],[88.72896,27.13627],[88.73862,27.1354],[88.7493,27.14744],[88.75688,27.1482],[88.76008,27.15218],[88.75946,27.15608],[88.75721,27.15867],[88.75719,27.16539],[88.76461,27.17702],[88.76961,27.18052],[88.77885,27.18353],[88.78676,27.18199],[88.78923,27.1891],[88.78909,27.19383],[88.79881,27.20758],[88.80327,27.22],[88.80205,27.22777],[88.8042,27.23648],[88.8031,27.24784],[88.82816,27.25724],[88.83213,27.26233],[88.86659,27.26463],[88.87911,27.26114],[88.88581,27.26757],[88.89768,27.27019],[88.89998,27.2743],[88.90329,27.27259],[88.90774,27.27704],[88.90843,27.28205],[88.91356,27.29009],[88.90864,27.30342],[88.91857,27.31829],[88.9192,27.32797],[88.9154,27.33071],[88.90578,27.32859],[88.89962,27.33277],[88.89505,27.33218],[88.89147,27.33911],[88.88402,27.34252],[88.88203,27.34625],[88.88537,27.35115],[88.88194,27.35098],[88.88063,27.35254],[88.88109,27.36041],[88.8762,27.36021],[88.87462,27.36271],[88.86675,27.36581],[88.86281,27.36982],[88.86428,27.37865],[88.86095,27.38654],[88.85663,27.3844],[88.84575,27.38488],[88.83767,27.37916],[88.83139,27.38583],[88.83051,27.38997],[88.82331,27.39058],[88.82096,27.39858],[88.81843,27.40146],[88.81258,27.40125],[88.8062,27.4068],[88.80748,27.41126],[88.80486,27.41542],[88.80904,27.4234],[88.80082,27.42259],[88.79987,27.42644],[88.79516,27.42885],[88.79166,27.43843],[88.79429,27.44048],[88.7945,27.44553],[88.79634,27.44731],[88.78929,27.44681],[88.78255,27.44965],[88.78442,27.45865],[88.77936,27.46258],[88.77701,27.46886],[88.78372,27.47475],[88.78062,27.4812],[88.78657,27.48817],[88.78332,27.49549],[88.78332,27.5004],[88.78693,27.50367],[88.78563,27.50654],[88.79059,27.5158],[88.78838,27.52214],[88.79277,27.52474],[88.79282,27.5289],[88.79095,27.53156],[88.78332,27.52918],[88.77733,27.53256],[88.7731,27.54076],[88.77518,27.54452],[88.77301,27.54896],[88.77393,27.55379],[88.77173,27.55807],[88.76375,27.56507],[88.77,27.57126],[88.78139,27.56992],[88.78444,27.57328],[88.79129,27.5751],[88.79083,27.58116],[88.78837,27.58493],[88.79469,27.59025],[88.80473,27.59436],[88.80903,27.60253],[88.80633,27.60892],[88.81166,27.61839],[88.80491,27.62351],[88.80868,27.63444],[88.81119,27.63654],[88.81526,27.64609],[88.81946,27.64639],[88.82278,27.64353],[88.82795,27.64426],[88.83551,27.65034],[88.83572,27.65362],[88.84309,27.65991],[88.84839,27.66801],[88.84759,27.67544],[88.84457,27.67709],[88.84438,27.67965],[88.84192,27.6822],[88.84766,27.69356],[88.84263,27.70288],[88.83827,27.70379],[88.83798,27.70629],[88.83979,27.71123],[88.8563,27.71655],[88.85424,27.72012],[88.85751,27.72682],[88.85669,27.73167],[88.85942,27.73811],[88.86514,27.74225],[88.86161,27.75249],[88.85839,27.75394],[88.85609,27.75229],[88.85328,27.76448],[88.85356,27.76917],[88.85591,27.77077],[88.85492,27.7835],[88.86145,27.79699],[88.86023,27.80295],[88.8581,27.8042],[88.85834,27.8111],[88.85578,27.81508],[88.87171,27.82559],[88.88045,27.82918],[88.88269,27.83427],[88.87994,27.84008],[88.8813,27.84975],[88.88767,27.85618],[88.88505,27.86154],[88.87937,27.86716],[88.87781,27.87576],[88.88263,27.89077],[88.87181,27.89852],[88.87217,27.90119],[88.86918,27.90759],[88.87002,27.9156],[88.8637,27.92134],[88.86041,27.92715],[88.85265,27.92578],[88.84358,27.92881],[88.83694,27.92878],[88.83871,27.94273],[88.84134,27.94415],[88.84289,27.95278],[88.8424,27.96363],[88.84084,27.96634],[88.84299,27.97526],[88.8414,27.98174],[88.84381,27.99042],[88.84371,27.99325],[88.83798,28.00049],[88.83628,28.01481],[88.82263,28.02086],[88.81688,28.02068],[88.81359,28.02244],[88.80307,28.03181],[88.79758,28.04094],[88.79385,28.0434],[88.79288,28.04864],[88.78741,28.05038],[88.78378,28.05395],[88.7776,28.05412],[88.77415,28.0623],[88.77093,28.06587],[88.75629,28.07597],[88.72042,28.07433],[88.70955,28.07764],[88.6972,28.07593],[88.68681,28.07794],[88.68135,28.07691],[88.67844,28.07146],[88.67206,28.07234],[88.66668,28.0761],[88.66434,28.08741],[88.66135,28.08964],[88.65686,28.09004],[88.65538,28.09371],[88.65081,28.09682]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-TN","area_level":"State","area_name":"Tamil Nadu","geometry_source":"SOI_States","same_as":"LGD/33/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.21,8.83922],[78.20954,8.83979],[78.20864,8.84022],[78.20698,8.84182],[78.20662,8.84206],[78.20584,8.84222],[78.20546,8.84209],[78.20525,8.84178],[78.20522,8.8413],[78.20586,8.84057],[78.2068,8.83999],[78.20875,8.83928],[78.20937,8.83836],[78.2103,8.83595],[78.21049,8.83503],[78.21094,8.83421],[78.21192,8.83377],[78.21327,8.83227],[78.21516,8.83183],[78.21615,8.83192],[78.21639,8.83212],[78.21636,8.83333],[78.21651,8.83352],[78.2172,8.83372],[78.21813,8.83364],[78.21883,8.83368],[78.21922,8.8339],[78.21932,8.83417],[78.21921,8.83461],[78.21882,8.83513],[78.21803,8.83684],[78.21744,8.83745],[78.21708,8.83801],[78.21653,8.84082],[78.21622,8.84147],[78.21579,8.84201],[78.21537,8.84215],[78.21286,8.84147],[78.21129,8.84148],[78.21091,8.84139],[78.21063,8.84115],[78.21042,8.84069],[78.21019,8.83925],[78.21009,8.83914],[78.21,8.83922]]],[[[78.22342,8.87278],[78.22299,8.87289],[78.2227,8.87291],[78.22257,8.87291],[78.2222,8.87279],[78.22194,8.8726],[78.22176,8.87217],[78.22181,8.87204],[78.22191,8.872],[78.22212,8.87205],[78.22233,8.87221],[78.2226,8.87231],[78.22286,8.87222],[78.22346,8.87128],[78.22428,8.87035],[78.22458,8.86962],[78.22493,8.86786],[78.22551,8.86681],[78.22592,8.86635],[78.2261,8.8664],[78.2261,8.86689],[78.2257,8.86771],[78.22548,8.86835],[78.22558,8.86854],[78.22574,8.86855],[78.2259,8.86849],[78.22629,8.86773],[78.22642,8.86722],[78.22643,8.86657],[78.22659,8.8663],[78.22666,8.86626],[78.22678,8.86632],[78.22714,8.86681],[78.22755,8.86757],[78.22785,8.8684],[78.22782,8.86933],[78.22767,8.87018],[78.2274,8.87082],[78.22709,8.87119],[78.22519,8.87189],[78.22438,8.87226],[78.22342,8.87278]]],[[[78.27373,8.94396],[78.27371,8.9443],[78.27362,8.94448],[78.27329,8.94456],[78.27309,8.94448],[78.27297,8.94425],[78.27298,8.94378],[78.27291,8.9435],[78.27265,8.9433],[78.27247,8.94329],[78.27201,8.9436],[78.27179,8.94367],[78.27162,8.94355],[78.27148,8.94325],[78.27103,8.94248],[78.27087,8.94235],[78.27069,8.94235],[78.27064,8.94244],[78.27063,8.94253],[78.27069,8.94281],[78.27107,8.94339],[78.27112,8.94353],[78.271,8.94358],[78.27086,8.94356],[78.27062,8.94345],[78.27023,8.94317],[78.26979,8.94247],[78.26946,8.94186],[78.26912,8.94043],[78.26905,8.93989],[78.26924,8.93955],[78.26955,8.93914],[78.2699,8.93903],[78.27044,8.93911],[78.27086,8.93929],[78.27131,8.93961],[78.27205,8.94052],[78.27334,8.94249],[78.27358,8.94329],[78.27373,8.94396]]],[[[78.25309,8.95206],[78.25353,8.95225],[78.25436,8.95275],[78.25506,8.95352],[78.2553,8.95411],[78.25522,8.95457],[78.25504,8.95514],[78.25483,8.95548],[78.25438,8.95582],[78.25318,8.95632],[78.25207,8.95642],[78.25189,8.95639],[78.25166,8.95627],[78.2515,8.95598],[78.25156,8.95572],[78.25174,8.95563],[78.25191,8.95562],[78.25202,8.95555],[78.25201,8.9554],[78.25195,8.95524],[78.25183,8.95509],[78.25139,8.95473],[78.25101,8.95421],[78.25073,8.95367],[78.25054,8.9531],[78.25057,8.95285],[78.25067,8.95267],[78.25096,8.95247],[78.25152,8.95222],[78.25226,8.95198],[78.25309,8.95206]]],[[[78.49274,9.08642],[78.49337,9.08669],[78.49398,9.08729],[78.49467,9.08831],[78.49513,9.08879],[78.49556,9.08936],[78.49566,9.08972],[78.49565,9.0902],[78.49555,9.09066],[78.49522,9.09107],[78.49482,9.09135],[78.49436,9.09155],[78.49379,9.0917],[78.49251,9.09194],[78.49221,9.09205],[78.49047,9.0933],[78.49012,9.09349],[78.48994,9.09343],[78.48983,9.09328],[78.48952,9.092],[78.48857,9.09071],[78.48766,9.08974],[78.4872,9.08914],[78.48722,9.08871],[78.4875,9.08824],[78.48812,9.08774],[78.48958,9.08703],[78.49126,9.08646],[78.49207,9.08637],[78.49274,9.08642]]],[[[78.5368,9.10186],[78.53765,9.10213],[78.5384,9.1026],[78.53909,9.10377],[78.53945,9.10457],[78.53958,9.10513],[78.53952,9.10554],[78.5394,9.10584],[78.53913,9.10605],[78.53888,9.10614],[78.53869,9.10617],[78.53857,9.10613],[78.53835,9.105],[78.53819,9.10479],[78.5379,9.10461],[78.53655,9.10409],[78.53601,9.10377],[78.53548,9.1033],[78.53508,9.10277],[78.53503,9.10246],[78.53507,9.10224],[78.5353,9.10206],[78.53564,9.10192],[78.53615,9.10184],[78.5368,9.10186]]],[[[78.58171,9.11097],[78.5808,9.11162],[78.57986,9.11283],[78.57955,9.1129],[78.57934,9.11282],[78.57849,9.11173],[78.57758,9.11015],[78.57654,9.10924],[78.57622,9.10882],[78.57578,9.10812],[78.57525,9.10664],[78.57495,9.10617],[78.57453,9.10571],[78.57311,9.10467],[78.57192,9.10417],[78.57104,9.10353],[78.57071,9.10283],[78.57059,9.10228],[78.57071,9.10155],[78.57095,9.10113],[78.57161,9.10066],[78.57265,9.10051],[78.57452,9.10102],[78.57506,9.10099],[78.57647,9.10052],[78.57709,9.10054],[78.57858,9.10111],[78.57915,9.10121],[78.57975,9.1011],[78.58011,9.10116],[78.58054,9.10136],[78.58093,9.10173],[78.58128,9.1026],[78.58189,9.1035],[78.58356,9.10453],[78.58442,9.10609],[78.58474,9.10638],[78.58736,9.10655],[78.58785,9.10683],[78.58803,9.10721],[78.58788,9.1077],[78.58677,9.10886],[78.58566,9.11114],[78.58535,9.11134],[78.58438,9.11143],[78.58269,9.11085],[78.5822,9.11081],[78.58171,9.11097]]],[[[79.48929,9.11904],[79.48986,9.11979],[79.49128,9.12112],[79.49285,9.12237],[79.49357,9.12274],[79.49576,9.12293],[79.49659,9.12317],[79.49694,9.1236],[79.49698,9.12393],[79.49651,9.12483],[79.49606,9.12529],[79.49558,9.12549],[79.49492,9.12539],[79.49368,9.12459],[79.49306,9.12448],[79.49211,9.1242],[79.49188,9.12403],[79.49107,9.12292],[79.48973,9.12051],[79.48879,9.11937],[79.48879,9.11909],[79.4889,9.11894],[79.48906,9.11894],[79.48929,9.11904]]],[[[79.48889,9.12751],[79.48897,9.12778],[79.48896,9.128],[79.48886,9.12819],[79.48871,9.12825],[79.4883,9.12823],[79.48764,9.12793],[79.48734,9.12772],[79.48719,9.12755],[79.48712,9.12733],[79.48725,9.12711],[79.48755,9.12702],[79.488,9.12725],[79.48823,9.12725],[79.48831,9.12709],[79.48826,9.12665],[79.48831,9.12652],[79.48858,9.1266],[79.48872,9.12692],[79.48889,9.12751]]],[[[79.48191,9.1302],[79.4817,9.13043],[79.4815,9.13055],[79.48106,9.13061],[79.48063,9.13056],[79.47992,9.13008],[79.47973,9.12989],[79.47973,9.1297],[79.48,9.12962],[79.48069,9.12995],[79.48113,9.13006],[79.48137,9.12997],[79.48145,9.12965],[79.48118,9.12889],[79.48118,9.12874],[79.48131,9.12863],[79.48163,9.12869],[79.48194,9.12925],[79.48203,9.12987],[79.48191,9.1302]]],[[[79.4836,9.13352],[79.48354,9.13393],[79.48347,9.13409],[79.48334,9.13424],[79.48309,9.1343],[79.48287,9.1343],[79.48203,9.13367],[79.48156,9.13311],[79.48151,9.13289],[79.48165,9.1327],[79.48197,9.13284],[79.48244,9.13323],[79.4826,9.13339],[79.48277,9.1334],[79.48283,9.13334],[79.48281,9.13316],[79.48219,9.13234],[79.4821,9.132],[79.48228,9.13184],[79.48262,9.13203],[79.48307,9.13245],[79.48347,9.1331],[79.4836,9.13352]]],[[[79.47394,9.13526],[79.47425,9.13594],[79.47425,9.13624],[79.47396,9.13705],[79.47375,9.13779],[79.47361,9.1384],[79.47288,9.13919],[79.47228,9.13976],[79.4718,9.14004],[79.47129,9.1401],[79.47069,9.13999],[79.46981,9.1394],[79.46981,9.13888],[79.46998,9.1387],[79.47097,9.13866],[79.47116,9.1386],[79.47181,9.13788],[79.47231,9.13769],[79.47347,9.13661],[79.47359,9.13616],[79.47344,9.13557],[79.47336,9.13536],[79.47341,9.13514],[79.47354,9.13501],[79.47369,9.13501],[79.47394,9.13526]]],[[[79.46807,9.14062],[79.4681,9.14086],[79.46796,9.14125],[79.46781,9.14185],[79.46774,9.1425],[79.46764,9.14299],[79.46753,9.14323],[79.46741,9.14338],[79.4662,9.14357],[79.46528,9.14346],[79.46512,9.14332],[79.46507,9.14315],[79.46509,9.14294],[79.46609,9.14196],[79.46751,9.14051],[79.46779,9.14039],[79.46807,9.14062]]],[[[79.45435,9.14372],[79.45443,9.144],[79.4545,9.14464],[79.45463,9.14499],[79.45471,9.14532],[79.45441,9.14561],[79.45413,9.14563],[79.45378,9.1455],[79.45378,9.1439],[79.45397,9.14367],[79.45435,9.14372]]],[[[79.45643,9.14704],[79.45623,9.14739],[79.45599,9.14755],[79.45575,9.14763],[79.45555,9.14763],[79.45537,9.14756],[79.45529,9.14741],[79.45506,9.14707],[79.45508,9.14683],[79.45523,9.14674],[79.45561,9.14683],[79.45573,9.14683],[79.45593,9.14672],[79.45618,9.14656],[79.45643,9.1467],[79.45643,9.14704]]],[[[79.45377,9.14858],[79.45328,9.1493],[79.45298,9.14956],[79.45269,9.14972],[79.45235,9.14978],[79.45197,9.14969],[79.45125,9.14938],[79.45046,9.14859],[79.45022,9.14829],[79.45009,9.14795],[79.45025,9.14765],[79.45046,9.14762],[79.45093,9.1479],[79.45138,9.14788],[79.45243,9.14719],[79.45257,9.14652],[79.45266,9.14642],[79.45322,9.14677],[79.45354,9.14691],[79.45412,9.14702],[79.45432,9.14714],[79.45451,9.1474],[79.45446,9.14773],[79.45377,9.14858]]],[[[79.44502,9.15107],[79.44563,9.15161],[79.44579,9.15206],[79.44568,9.15233],[79.44549,9.15273],[79.44562,9.15308],[79.44574,9.15331],[79.4458,9.15349],[79.44572,9.15366],[79.44552,9.15377],[79.44533,9.15377],[79.44511,9.15366],[79.445,9.15338],[79.44454,9.15234],[79.44446,9.15165],[79.44456,9.1512],[79.4447,9.15103],[79.44502,9.15107]]],[[[79.44582,9.15793],[79.44547,9.15821],[79.44506,9.15821],[79.44448,9.15804],[79.44375,9.15737],[79.4435,9.15693],[79.44358,9.15664],[79.44362,9.15648],[79.44375,9.15634],[79.44413,9.15642],[79.44478,9.15728],[79.44498,9.15737],[79.44533,9.15714],[79.44552,9.15685],[79.44559,9.15667],[79.44625,9.15479],[79.447,9.15282],[79.44729,9.15265],[79.44765,9.15279],[79.44782,9.15321],[79.44767,9.15393],[79.44701,9.15545],[79.44664,9.15605],[79.44618,9.15728],[79.44582,9.15793]]],[[[78.73206,9.15442],[78.73199,9.15518],[78.7318,9.15564],[78.7316,9.15584],[78.73135,9.15591],[78.7311,9.15588],[78.73086,9.15577],[78.73052,9.15543],[78.73026,9.15492],[78.72971,9.15422],[78.72945,9.15408],[78.72918,9.15406],[78.72879,9.15409],[78.72837,9.15392],[78.72813,9.15354],[78.72801,9.15321],[78.72803,9.1528],[78.72816,9.15258],[78.72836,9.15241],[78.72874,9.1522],[78.73042,9.15207],[78.73097,9.15212],[78.73119,9.15227],[78.73188,9.15354],[78.73202,9.15398],[78.73206,9.15442]]],[[[78.69545,9.15057],[78.69589,9.15082],[78.69635,9.15131],[78.6968,9.15207],[78.697,9.15259],[78.69702,9.15326],[78.69688,9.15448],[78.69687,9.15516],[78.69675,9.15567],[78.69652,9.15581],[78.6961,9.15583],[78.69552,9.15563],[78.69486,9.15502],[78.69408,9.15354],[78.69384,9.15286],[78.69375,9.15227],[78.69375,9.15175],[78.69387,9.1512],[78.69422,9.15078],[78.69442,9.15065],[78.69466,9.15055],[78.69508,9.15051],[78.69545,9.15057]]],[[[78.75198,9.15539],[78.7523,9.15542],[78.75243,9.15548],[78.75249,9.15554],[78.75253,9.15561],[78.75254,9.1557],[78.75255,9.1562],[78.75254,9.15635],[78.75251,9.15646],[78.75247,9.15656],[78.7524,9.15668],[78.75227,9.15681],[78.75207,9.15695],[78.75197,9.15701],[78.75186,9.15703],[78.75182,9.15702],[78.75133,9.15681],[78.75101,9.15663],[78.75093,9.15657],[78.7509,9.15651],[78.75088,9.15645],[78.75088,9.15636],[78.75091,9.15618],[78.75099,9.15599],[78.7511,9.15581],[78.75126,9.15563],[78.75145,9.15549],[78.7516,9.15543],[78.75179,9.15539],[78.75198,9.15539]]],[[[78.6985,9.15801],[78.69871,9.15811],[78.69888,9.1583],[78.69895,9.15848],[78.69884,9.15869],[78.69861,9.15874],[78.69842,9.15875],[78.69833,9.15871],[78.69807,9.15852],[78.69795,9.15823],[78.69801,9.15811],[78.69809,9.15797],[78.69829,9.15794],[78.6985,9.15801]]],[[[78.82356,9.16604],[78.82367,9.16611],[78.82365,9.16616],[78.82329,9.1662],[78.82261,9.16645],[78.82226,9.16644],[78.82149,9.16618],[78.81956,9.16523],[78.81931,9.16491],[78.81913,9.16436],[78.81908,9.16367],[78.81915,9.16282],[78.81907,9.16253],[78.8189,9.16227],[78.81867,9.16206],[78.81842,9.1619],[78.81803,9.16174],[78.81781,9.16155],[78.81689,9.16052],[78.81692,9.16037],[78.81701,9.16037],[78.81754,9.16066],[78.81849,9.16066],[78.81865,9.1607],[78.81898,9.16117],[78.81938,9.16204],[78.81998,9.16257],[78.82018,9.16288],[78.82097,9.16344],[78.82105,9.16358],[78.82119,9.16432],[78.82181,9.16468],[78.82217,9.16562],[78.82229,9.16581],[78.82241,9.16591],[78.82264,9.16598],[78.82356,9.16604]]],[[[78.82707,9.16733],[78.82727,9.16763],[78.82778,9.16812],[78.82809,9.16854],[78.82887,9.17008],[78.82904,9.17051],[78.82905,9.17091],[78.82886,9.17248],[78.82867,9.17349],[78.82852,9.17369],[78.82836,9.17343],[78.82799,9.17231],[78.82788,9.17182],[78.82717,9.17063],[78.82687,9.16956],[78.82671,9.1694],[78.82593,9.16895],[78.8256,9.16869],[78.82539,9.16845],[78.82506,9.16782],[78.82459,9.16729],[78.82414,9.16688],[78.82396,9.16658],[78.824,9.16637],[78.82414,9.16623],[78.82494,9.16633],[78.82568,9.16631],[78.82612,9.16635],[78.82659,9.16653],[78.82707,9.16733]]],[[[78.91048,9.186],[78.91049,9.18617],[78.91049,9.18631],[78.91041,9.18646],[78.91023,9.18656],[78.91012,9.18657],[78.91009,9.18654],[78.91004,9.18645],[78.91004,9.18631],[78.91006,9.18614],[78.91013,9.18599],[78.9103,9.18593],[78.91048,9.186]]],[[[78.96983,9.18619],[78.96959,9.18624],[78.9694,9.18638],[78.96933,9.18652],[78.96911,9.1874],[78.96903,9.1876],[78.96886,9.18782],[78.96862,9.18796],[78.9684,9.18801],[78.96812,9.18801],[78.96757,9.18792],[78.96719,9.18772],[78.96685,9.18736],[78.96666,9.18699],[78.96661,9.18649],[78.96664,9.18563],[78.96677,9.18435],[78.96684,9.18387],[78.96695,9.18354],[78.96714,9.18319],[78.96741,9.18292],[78.96768,9.18278],[78.96796,9.1828],[78.96824,9.18299],[78.96844,9.18328],[78.96843,9.18347],[78.96764,9.18455],[78.96759,9.18478],[78.96768,9.18507],[78.96809,9.18574],[78.96862,9.18613],[78.96886,9.18618],[78.96907,9.18602],[78.96935,9.1855],[78.96949,9.1849],[78.96966,9.18467],[78.96989,9.1845],[78.97012,9.18444],[78.9704,9.18451],[78.97091,9.18478],[78.97112,9.18497],[78.97116,9.18514],[78.97112,9.18535],[78.97097,9.18566],[78.97079,9.18587],[78.97065,9.18597],[78.97039,9.18608],[78.97008,9.18617],[78.96983,9.18619]]],[[[78.93735,9.18248],[78.93831,9.18307],[78.94033,9.18332],[78.94288,9.18492],[78.94326,9.18551],[78.94316,9.18667],[78.94348,9.18743],[78.94324,9.18783],[78.94272,9.18796],[78.94074,9.18742],[78.9391,9.18512],[78.93638,9.18344],[78.93288,9.18239],[78.93187,9.18256],[78.92813,9.18456],[78.92519,9.18488],[78.92263,9.18437],[78.919,9.18408],[78.91652,9.18296],[78.91479,9.18278],[78.9137,9.18233],[78.91181,9.18255],[78.90884,9.1815],[78.90718,9.18264],[78.90672,9.18444],[78.90625,9.18519],[78.90465,9.18343],[78.90103,9.18271],[78.89938,9.18069],[78.89847,9.18028],[78.89771,9.18025],[78.89726,9.17967],[78.89761,9.17928],[78.89922,9.17898],[78.90029,9.17837],[78.90143,9.17861],[78.90356,9.17846],[78.90463,9.17919],[78.90578,9.17927],[78.90739,9.18018],[78.90957,9.1797],[78.91098,9.18008],[78.91216,9.18001],[78.91477,9.18111],[78.91747,9.18186],[78.91971,9.18294],[78.92354,9.18332],[78.92726,9.18311],[78.9297,9.18183],[78.93078,9.18152],[78.93382,9.1822],[78.93735,9.18248]]],[[[78.70425,9.18408],[78.70428,9.1842],[78.70419,9.18443],[78.70393,9.18478],[78.70308,9.18548],[78.70252,9.18584],[78.70211,9.18606],[78.70195,9.18604],[78.70191,9.18599],[78.70188,9.18589],[78.7019,9.18582],[78.70251,9.1854],[78.70301,9.18502],[78.70361,9.18454],[78.70415,9.18406],[78.70425,9.18408]]],[[[79.0771,9.20222],[79.07586,9.20234],[79.07337,9.20362],[79.07115,9.20517],[79.07062,9.20653],[79.07074,9.20782],[79.07119,9.20925],[79.07099,9.20984],[79.0704,9.21061],[79.0689,9.21054],[79.06792,9.21014],[79.06747,9.20969],[79.0667,9.20761],[79.06403,9.20636],[79.06007,9.20284],[79.05696,9.19919],[79.05677,9.19802],[79.05736,9.19666],[79.05789,9.19621],[79.05893,9.19602],[79.06192,9.19772],[79.06419,9.19994],[79.06556,9.2006],[79.06647,9.20054],[79.0749,9.19799],[79.07941,9.1962],[79.08138,9.19478],[79.08315,9.19291],[79.08439,9.19214],[79.08635,9.19169],[79.08746,9.19196],[79.08869,9.19281],[79.09103,9.19593],[79.09128,9.19671],[79.09102,9.19755],[79.09023,9.19859],[79.08807,9.20033],[79.08761,9.20013],[79.08722,9.19961],[79.08677,9.19857],[79.08618,9.19876],[79.08579,9.19941],[79.08513,9.19986],[79.08357,9.19985],[79.08311,9.20037],[79.08317,9.20095],[79.08382,9.20173],[79.08388,9.20225],[79.08329,9.20277],[79.08198,9.20321],[79.0801,9.20243],[79.0771,9.20222]]],[[[79.1407,9.21328],[79.14083,9.21341],[79.14113,9.21359],[79.14118,9.21364],[79.14139,9.21378],[79.14157,9.21409],[79.14157,9.2142],[79.14153,9.21425],[79.14117,9.21428],[79.14047,9.2142],[79.14011,9.21418],[79.14,9.21414],[79.13992,9.21409],[79.13985,9.21396],[79.13979,9.21366],[79.1397,9.21346],[79.13959,9.21329],[79.13948,9.21322],[79.13943,9.21322],[79.1394,9.21324],[79.13923,9.21365],[79.13917,9.21371],[79.13913,9.21379],[79.13905,9.21382],[79.13899,9.21379],[79.13895,9.21372],[79.13891,9.21361],[79.13887,9.21335],[79.1389,9.21307],[79.13897,9.21281],[79.13919,9.21272],[79.13953,9.21264],[79.13963,9.21264],[79.13987,9.21271],[79.14,9.21273],[79.14056,9.21306],[79.1407,9.21328]]],[[[79.12555,9.21742],[79.12523,9.21748],[79.12434,9.21734],[79.12425,9.2172],[79.12428,9.21712],[79.12525,9.21643],[79.12554,9.21612],[79.12693,9.21508],[79.12698,9.21494],[79.12676,9.21495],[79.12635,9.21524],[79.12598,9.21529],[79.12525,9.21555],[79.12486,9.21581],[79.1244,9.21589],[79.124,9.21586],[79.12231,9.21614],[79.12224,9.21606],[79.12226,9.21574],[79.12252,9.21543],[79.12413,9.21519],[79.12463,9.21496],[79.1253,9.21486],[79.12602,9.21451],[79.12672,9.21436],[79.1281,9.21391],[79.12859,9.21383],[79.1295,9.21379],[79.13059,9.21384],[79.13128,9.21399],[79.13283,9.21453],[79.13311,9.21465],[79.13331,9.21503],[79.13398,9.21557],[79.134,9.21565],[79.13391,9.2157],[79.13363,9.21569],[79.13321,9.21555],[79.1327,9.21519],[79.13188,9.21474],[79.13159,9.21475],[79.13154,9.21479],[79.13159,9.21487],[79.13292,9.21575],[79.13337,9.21587],[79.13402,9.21589],[79.13411,9.21598],[79.13352,9.21615],[79.13299,9.21616],[79.13263,9.21596],[79.13172,9.21509],[79.13146,9.21505],[79.13087,9.21513],[79.1303,9.21499],[79.12969,9.21499],[79.12937,9.21469],[79.12912,9.21458],[79.12869,9.21483],[79.12773,9.21576],[79.12713,9.21585],[79.12707,9.216],[79.12739,9.21602],[79.12831,9.21588],[79.12868,9.21577],[79.12944,9.21533],[79.13019,9.2152],[79.13064,9.21537],[79.13139,9.21532],[79.13168,9.21538],[79.13183,9.21546],[79.13225,9.21595],[79.13261,9.21617],[79.13321,9.21633],[79.13321,9.21645],[79.13174,9.21625],[79.13111,9.21622],[79.12646,9.21736],[79.12606,9.21736],[79.1256,9.21714],[79.12554,9.2172],[79.12555,9.21742]]],[[[79.23573,9.24348],[79.23561,9.24359],[79.23539,9.24365],[79.23439,9.24328],[79.2338,9.24333],[79.23339,9.24347],[79.2329,9.24356],[79.2328,9.24353],[79.23275,9.24345],[79.23275,9.24308],[79.23285,9.24287],[79.23306,9.24262],[79.23429,9.24144],[79.23491,9.24104],[79.23538,9.24045],[79.23559,9.24027],[79.23583,9.2402],[79.23602,9.2402],[79.23727,9.2405],[79.23814,9.24085],[79.23846,9.24103],[79.23863,9.24121],[79.23866,9.2413],[79.23864,9.24146],[79.23854,9.24177],[79.23846,9.24189],[79.23836,9.24195],[79.23823,9.24197],[79.2377,9.24194],[79.2375,9.24196],[79.23718,9.24204],[79.237,9.24213],[79.23645,9.24263],[79.23573,9.24348]]],[[[79.20045,9.25068],[79.19769,9.25264],[79.19523,9.2529],[79.19089,9.25212],[79.18714,9.25062],[79.18194,9.25012],[79.18042,9.24963],[79.17949,9.24862],[79.179,9.24571],[79.17805,9.24273],[79.17906,9.24012],[79.17931,9.2382],[79.17983,9.23747],[79.18185,9.23699],[79.183,9.23587],[79.18604,9.23541],[79.18685,9.235],[79.18989,9.23095],[79.1915,9.23114],[79.1929,9.23188],[79.19395,9.23208],[79.1976,9.23035],[79.19881,9.23018],[79.1998,9.23036],[79.20086,9.23132],[79.20281,9.23388],[79.20249,9.23687],[79.20304,9.23871],[79.20384,9.23972],[79.20696,9.24029],[79.20898,9.24012],[79.21046,9.24069],[79.21286,9.24044],[79.21418,9.24131],[79.21468,9.24324],[79.2152,9.24405],[79.21839,9.24464],[79.21996,9.24581],[79.22225,9.24594],[79.22319,9.24646],[79.22365,9.24715],[79.22335,9.24832],[79.2228,9.24867],[79.22154,9.24885],[79.21957,9.25026],[79.21785,9.25044],[79.21785,9.25023],[79.2198,9.24986],[79.22202,9.24811],[79.22182,9.24759],[79.22088,9.24733],[79.21947,9.24778],[79.21835,9.24774],[79.21227,9.2464],[79.20781,9.24436],[79.20335,9.24171],[79.20227,9.24149],[79.20179,9.24182],[79.20172,9.24221],[79.20245,9.24409],[79.20329,9.24409],[79.20374,9.24439],[79.20426,9.2456],[79.20653,9.24586],[79.20701,9.24673],[79.2088,9.24722],[79.20894,9.24768],[79.20856,9.24849],[79.20867,9.24888],[79.21269,9.24916],[79.21535,9.25037],[79.21714,9.25015],[79.21774,9.25021],[79.21774,9.25042],[79.20894,9.2507],[79.20691,9.25024],[79.20316,9.24853],[79.20208,9.24895],[79.20045,9.25068]]],[[[79.76894,10.90096],[79.76908,10.90176],[79.7683,10.90159],[79.76719,10.90119],[79.76688,10.90059],[79.76616,10.90061],[79.76606,10.89947],[79.76657,10.89936],[79.76664,10.89863],[79.76782,10.89871],[79.7679,10.89985],[79.76693,10.89997],[79.76695,10.9002],[79.76796,10.90017],[79.76935,10.89997],[79.76955,10.90075],[79.77027,10.90074],[79.77043,10.90139],[79.76949,10.90152],[79.7693,10.9009],[79.76894,10.90096]]],[[[79.76406,10.90731],[79.7651,10.90892],[79.76471,10.91035],[79.76495,10.91129],[79.76406,10.91222],[79.76373,10.90949],[79.76277,10.90902],[79.76247,10.90623],[79.76303,10.90681],[79.76327,10.90519],[79.7637,10.90513],[79.76368,10.90465],[79.76505,10.9046],[79.76508,10.90415],[79.76286,10.90386],[79.76288,10.90343],[79.7623,10.90341],[79.76218,10.90152],[79.76351,10.90158],[79.76361,10.9026],[79.76416,10.9026],[79.76425,10.90347],[79.76524,10.90354],[79.76535,10.90219],[79.76398,10.90209],[79.76398,10.90146],[79.76442,10.90146],[79.7647,10.90177],[79.76561,10.90168],[79.76602,10.90096],[79.76709,10.90156],[79.76789,10.90177],[79.76761,10.9028],[79.7672,10.90268],[79.76709,10.903],[79.7674,10.90332],[79.76709,10.90389],[79.76637,10.90343],[79.76596,10.9043],[79.76604,10.90531],[79.76449,10.9054],[79.76449,10.90586],[79.7639,10.90594],[79.76387,10.90658],[79.76406,10.90731]]],[[[79.78191,11.90229],[79.7815,11.90276],[79.78079,11.90302],[79.77956,11.90436],[79.77882,11.90465],[79.77539,11.90499],[79.77516,11.90183],[79.77198,11.9019],[79.77201,11.90269],[79.76984,11.90277],[79.76925,11.90174],[79.7692,11.90066],[79.77288,11.90044],[79.77286,11.89901],[79.77208,11.89915],[79.77053,11.89088],[79.77107,11.89006],[79.77085,11.88905],[79.77109,11.8875],[79.77178,11.8864],[79.77202,11.88537],[79.77084,11.88403],[79.77102,11.88344],[79.77201,11.88363],[79.77356,11.88329],[79.77284,11.87522],[79.77345,11.87517],[79.7739,11.87654],[79.7762,11.87822],[79.77895,11.87759],[79.77967,11.87791],[79.77952,11.87651],[79.78003,11.87549],[79.7799,11.87239],[79.77924,11.86879],[79.77859,11.86844],[79.77844,11.86767],[79.77769,11.86672],[79.77769,11.86647],[79.77842,11.86655],[79.77833,11.86316],[79.78068,11.86275],[79.78109,11.86281],[79.78137,11.86335],[79.7823,11.86323],[79.78236,11.86279],[79.78521,11.86283],[79.78673,11.86865],[79.78699,11.87018],[79.78678,11.87146],[79.78721,11.87333],[79.78818,11.87368],[79.78825,11.87492],[79.78921,11.87561],[79.78959,11.87716],[79.79023,11.87731],[79.79029,11.87681],[79.79237,11.87685],[79.79258,11.87785],[79.79181,11.87796],[79.79195,11.87954],[79.79212,11.88033],[79.79323,11.88219],[79.79345,11.88365],[79.79483,11.88521],[79.79467,11.88643],[79.79492,11.88801],[79.79566,11.89145],[79.79675,11.89429],[79.79675,11.89811],[79.79649,11.89989],[79.79395,11.89897],[79.79291,11.898],[79.79057,11.89711],[79.78873,11.89676],[79.78767,11.89684],[79.78533,11.89914],[79.78257,11.90127],[79.78191,11.90229]],[[79.78902,11.89504],[79.78926,11.89584],[79.79099,11.89533],[79.79071,11.89455],[79.78902,11.89504]],[[79.79125,11.88393],[79.79159,11.885],[79.79332,11.88455],[79.79295,11.88348],[79.79125,11.88393]]],[[[79.84781,13.32432],[79.84765,13.32435],[79.84752,13.32448],[79.84727,13.32527],[79.84567,13.32758],[79.84508,13.32653],[79.84432,13.32557],[79.84324,13.32498],[79.84291,13.32465],[79.84273,13.32415],[79.84265,13.32324],[79.84268,13.32258],[79.84283,13.32217],[79.84295,13.32195],[79.84316,13.32177],[79.84337,13.32167],[79.84373,13.32163],[79.84407,13.32171],[79.84437,13.32188],[79.8446,13.32209],[79.84477,13.32243],[79.84492,13.32294],[79.84537,13.32311],[79.84561,13.32302],[79.84579,13.3229],[79.846,13.32264],[79.84626,13.32247],[79.84642,13.32246],[79.84667,13.32252],[79.84684,13.32261],[79.84688,13.32282],[79.84658,13.32338],[79.84659,13.32347],[79.8468,13.32368],[79.84698,13.32375],[79.84726,13.32374],[79.84819,13.323],[79.84903,13.32302],[79.84977,13.32318],[79.84992,13.32332],[79.85001,13.32352],[79.85004,13.32399],[79.84965,13.3246],[79.84935,13.32479],[79.84914,13.32481],[79.84807,13.32429],[79.84781,13.32432]]],[[[80.30364,13.47313],[80.29293,13.49599],[80.28121,13.53351],[80.26875,13.56463],[80.26405,13.56264],[80.25111,13.50277],[80.24181,13.47065],[80.24097,13.47331],[80.2352,13.474],[80.22589,13.48507],[80.21383,13.4861],[80.2146,13.49027],[80.2106,13.49048],[80.20995,13.48628],[80.18653,13.49065],[80.17712,13.49117],[80.16304,13.48823],[80.15384,13.49089],[80.14514,13.49142],[80.14553,13.49949],[80.13921,13.50427],[80.13171,13.50144],[80.12674,13.50463],[80.11884,13.50369],[80.11277,13.50595],[80.11151,13.49328],[80.10821,13.48892],[80.10516,13.49335],[80.10093,13.48985],[80.10306,13.48695],[80.07819,13.48881],[80.07714,13.5268],[80.08284,13.5328],[80.08864,13.5354],[80.08126,13.54975],[80.0684,13.54461],[80.06275,13.54536],[80.05693,13.53664],[80.04304,13.53745],[80.0398,13.53901],[80.02844,13.53882],[80.0239,13.54604],[80.02177,13.54495],[80.01689,13.54718],[79.9986,13.54272],[80.00052,13.52568],[80.00799,13.52581],[80.01765,13.52956],[80.01952,13.51925],[80.02719,13.5137],[80.03552,13.51831],[80.04842,13.51225],[80.04662,13.49368],[80.03,13.49819],[80.0159,13.49795],[80.01444,13.49612],[80.01584,13.48903],[80.01352,13.48519],[80.00762,13.48135],[80.00749,13.47864],[79.98408,13.47958],[79.9824,13.47046],[79.97242,13.46909],[79.97111,13.44026],[79.97287,13.43972],[79.97334,13.42967],[79.97073,13.4273],[79.96579,13.42657],[79.96197,13.42338],[79.95749,13.42356],[79.95665,13.42219],[79.95507,13.42238],[79.95572,13.42521],[79.95255,13.42584],[79.94948,13.42375],[79.94818,13.42503],[79.93961,13.42503],[79.94184,13.41672],[79.93457,13.41645],[79.93774,13.41489],[79.93839,13.4128],[79.94221,13.4128],[79.94138,13.41015],[79.9457,13.40773],[79.94128,13.40061],[79.94436,13.39687],[79.95623,13.39714],[79.96145,13.3956],[79.96275,13.39136],[79.95805,13.37918],[79.9539,13.37712],[79.94999,13.37981],[79.94822,13.38324],[79.94766,13.38173],[79.94505,13.38178],[79.94919,13.37767],[79.94947,13.37548],[79.94542,13.36822],[79.94565,13.36374],[79.9422,13.36356],[79.9429,13.36127],[79.94099,13.36128],[79.93801,13.35552],[79.93591,13.35644],[79.93512,13.35411],[79.93377,13.35448],[79.93311,13.35192],[79.9313,13.35151],[79.92921,13.35562],[79.92529,13.35836],[79.91597,13.35987],[79.91681,13.35808],[79.91336,13.35224],[79.9149,13.35156],[79.91485,13.34814],[79.91038,13.34727],[79.90516,13.34353],[79.90381,13.34043],[79.8835,13.33286],[79.8829,13.32332],[79.88085,13.32478],[79.87763,13.32428],[79.86807,13.33107],[79.86281,13.31692],[79.85355,13.32071],[79.85326,13.31596],[79.84805,13.3166],[79.83609,13.31422],[79.82919,13.31751],[79.81736,13.31855],[79.8089,13.31725],[79.80788,13.31413],[79.8036,13.31098],[79.80476,13.30744],[79.80164,13.3005],[79.79173,13.29352],[79.78559,13.29666],[79.78023,13.30615],[79.7752,13.30598],[79.77042,13.30922],[79.76814,13.31392],[79.76027,13.3182],[79.76186,13.31264],[79.76121,13.30707],[79.76028,13.30161],[79.75675,13.29529],[79.75242,13.29166],[79.74423,13.28859],[79.73924,13.29135],[79.73404,13.28902],[79.73065,13.28287],[79.73281,13.28214],[79.73504,13.27594],[79.74025,13.27376],[79.74172,13.27095],[79.74808,13.27099],[79.75164,13.26537],[79.76119,13.25752],[79.7816,13.25159],[79.78721,13.24518],[79.79473,13.2421],[79.79449,13.22632],[79.79325,13.22641],[79.79309,13.2293],[79.78478,13.2279],[79.78115,13.22339],[79.77796,13.22359],[79.77548,13.21531],[79.77292,13.21546],[79.77394,13.21916],[79.76977,13.21771],[79.76884,13.21931],[79.76756,13.21806],[79.76425,13.21911],[79.76096,13.21526],[79.75984,13.20744],[79.75499,13.20648],[79.75008,13.20799],[79.751,13.21642],[79.74797,13.22167],[79.74247,13.22526],[79.74277,13.22829],[79.73908,13.2295],[79.73732,13.23653],[79.73264,13.23688],[79.73281,13.23327],[79.73028,13.23253],[79.7314,13.22245],[79.72588,13.22166],[79.72165,13.22346],[79.71839,13.21652],[79.71641,13.21642],[79.71196,13.21777],[79.71186,13.21927],[79.70794,13.22151],[79.70271,13.2224],[79.70224,13.22415],[79.7061,13.2342],[79.71407,13.23573],[79.71124,13.2425],[79.71255,13.24467],[79.70897,13.24808],[79.70912,13.25104],[79.70327,13.2511],[79.70098,13.25303],[79.69825,13.25099],[79.69634,13.24325],[79.69307,13.24329],[79.69594,13.23856],[79.69268,13.24065],[79.68914,13.23983],[79.68427,13.24443],[79.68024,13.25276],[79.67829,13.26165],[79.68026,13.26224],[79.68057,13.26456],[79.68771,13.2667],[79.68951,13.26374],[79.68913,13.26094],[79.69112,13.26098],[79.69172,13.26355],[79.6933,13.26309],[79.69575,13.26728],[79.69426,13.2705],[79.69082,13.26768],[79.68881,13.27087],[79.69367,13.27348],[79.69393,13.2798],[79.69046,13.28033],[79.68943,13.28303],[79.68319,13.28819],[79.68126,13.28799],[79.68261,13.29582],[79.67814,13.29741],[79.67425,13.28177],[79.67134,13.28012],[79.66857,13.28114],[79.66539,13.27872],[79.66471,13.28194],[79.66664,13.28598],[79.66387,13.28977],[79.65891,13.28669],[79.65783,13.28385],[79.65458,13.28563],[79.65179,13.29183],[79.64248,13.29015],[79.64127,13.27559],[79.63948,13.277],[79.63834,13.28744],[79.63805,13.28425],[79.63326,13.28238],[79.63436,13.27743],[79.63155,13.27719],[79.63406,13.27157],[79.63204,13.2713],[79.63164,13.2697],[79.62768,13.27015],[79.61955,13.27956],[79.61412,13.2827],[79.60609,13.27955],[79.60869,13.28749],[79.60579,13.2882],[79.59606,13.28485],[79.59489,13.27605],[79.59266,13.27506],[79.5946,13.27174],[79.59384,13.26641],[79.59131,13.26143],[79.58257,13.25734],[79.57927,13.25779],[79.57349,13.25936],[79.55841,13.27272],[79.54002,13.27236],[79.5346,13.2754],[79.53366,13.27908],[79.53515,13.28509],[79.53878,13.28785],[79.54123,13.29244],[79.5371,13.29443],[79.53826,13.2959],[79.53508,13.29802],[79.53486,13.30137],[79.54217,13.31024],[79.54411,13.31678],[79.53936,13.32188],[79.54185,13.3273],[79.53731,13.33865],[79.53557,13.33819],[79.52594,13.34439],[79.52179,13.34181],[79.51108,13.34197],[79.51008,13.33417],[79.49738,13.33204],[79.49971,13.34779],[79.48049,13.34],[79.47457,13.34109],[79.47281,13.33924],[79.46544,13.33873],[79.46407,13.34172],[79.45626,13.33857],[79.45311,13.33988],[79.44766,13.34632],[79.43543,13.35171],[79.43573,13.34814],[79.43259,13.34539],[79.43167,13.33671],[79.42099,13.33629],[79.41472,13.33003],[79.41291,13.32993],[79.41254,13.33295],[79.40536,13.33504],[79.40248,13.33023],[79.39836,13.3302],[79.39876,13.32167],[79.4019,13.32148],[79.40202,13.31735],[79.39783,13.31736],[79.39576,13.31572],[79.39347,13.3176],[79.38781,13.31805],[79.38349,13.31326],[79.38189,13.30749],[79.38866,13.30978],[79.38984,13.29743],[79.39412,13.29993],[79.40217,13.29971],[79.4053,13.29757],[79.41577,13.29958],[79.41958,13.29523],[79.41841,13.29352],[79.41883,13.28975],[79.42004,13.28955],[79.43054,13.30025],[79.44542,13.30125],[79.44631,13.29162],[79.43576,13.29128],[79.43472,13.28907],[79.43373,13.27499],[79.41759,13.27177],[79.41396,13.26641],[79.41142,13.26465],[79.40842,13.26527],[79.40847,13.26391],[79.41308,13.26295],[79.41617,13.26041],[79.41686,13.25168],[79.42264,13.25132],[79.42214,13.2494],[79.41704,13.24585],[79.41966,13.24572],[79.4185,13.24296],[79.42143,13.24213],[79.42459,13.24334],[79.42769,13.24155],[79.43243,13.24326],[79.43768,13.24289],[79.43813,13.24003],[79.43138,13.23828],[79.43149,13.23607],[79.43979,13.23586],[79.43507,13.23223],[79.42987,13.23121],[79.43087,13.22985],[79.44,13.2306],[79.43882,13.23436],[79.44149,13.23799],[79.45329,13.23849],[79.4538,13.21694],[79.44853,13.21569],[79.43971,13.21764],[79.43947,13.21968],[79.43738,13.21955],[79.43622,13.21274],[79.44119,13.20827],[79.44385,13.20778],[79.43956,13.20589],[79.43566,13.19721],[79.43238,13.19697],[79.43315,13.19252],[79.43729,13.19106],[79.43843,13.18818],[79.4262,13.19049],[79.42146,13.1906],[79.42114,13.18908],[79.41017,13.19051],[79.40919,13.19404],[79.40084,13.19166],[79.39906,13.18781],[79.3962,13.18868],[79.3958,13.19182],[79.39202,13.19238],[79.38739,13.1891],[79.37403,13.18926],[79.37281,13.18772],[79.37814,13.18471],[79.38561,13.18305],[79.38773,13.17753],[79.38228,13.17962],[79.37555,13.1777],[79.3727,13.17884],[79.36952,13.17291],[79.37924,13.17151],[79.3806,13.16896],[79.38004,13.16293],[79.37011,13.16281],[79.36342,13.16595],[79.35612,13.16458],[79.35746,13.15594],[79.35996,13.15197],[79.36114,13.13864],[79.36339,13.13897],[79.36552,13.13393],[79.36516,13.13067],[79.36175,13.12875],[79.3605,13.12354],[79.3536,13.12053],[79.34511,13.12127],[79.34514,13.12913],[79.34356,13.13102],[79.34464,13.13667],[79.34131,13.13682],[79.33962,13.13045],[79.32902,13.13052],[79.32677,13.12608],[79.31867,13.12347],[79.32424,13.11854],[79.3213,13.11702],[79.31192,13.11657],[79.31903,13.11333],[79.31615,13.11163],[79.30991,13.11201],[79.30931,13.10781],[79.30719,13.10552],[79.30169,13.10778],[79.29815,13.10696],[79.29431,13.1096],[79.29584,13.11237],[79.30154,13.11366],[79.29877,13.11571],[79.29926,13.11866],[79.31246,13.12614],[79.3044,13.12662],[79.28874,13.12199],[79.28567,13.12376],[79.28402,13.12277],[79.28034,13.15287],[79.27736,13.15622],[79.27454,13.15567],[79.26975,13.15375],[79.2674,13.14967],[79.26209,13.14904],[79.26167,13.15187],[79.26027,13.15214],[79.26037,13.15956],[79.25928,13.15887],[79.25746,13.16074],[79.25327,13.16026],[79.25221,13.15772],[79.2547,13.14919],[79.25391,13.14577],[79.24527,13.13828],[79.24018,13.14437],[79.24244,13.14795],[79.24496,13.14882],[79.24339,13.15115],[79.24208,13.14963],[79.24421,13.15274],[79.24312,13.15858],[79.24111,13.15961],[79.24269,13.171],[79.23951,13.17197],[79.23493,13.17084],[79.22969,13.16199],[79.22561,13.15886],[79.22732,13.15562],[79.21811,13.15536],[79.21811,13.15685],[79.21469,13.15696],[79.21003,13.14846],[79.21599,13.14781],[79.21922,13.14562],[79.22197,13.14624],[79.22315,13.14356],[79.22829,13.13998],[79.23287,13.13937],[79.22937,13.13158],[79.23038,13.12637],[79.23841,13.11855],[79.23427,13.11466],[79.23443,13.10523],[79.22461,13.1008],[79.21277,13.09244],[79.20964,13.09272],[79.20086,13.08883],[79.19829,13.08134],[79.1931,13.08229],[79.19069,13.08873],[79.18855,13.0879],[79.18766,13.08346],[79.18066,13.08424],[79.18137,13.0799],[79.18324,13.08193],[79.18533,13.07967],[79.18565,13.07522],[79.18401,13.07273],[79.1908,13.07335],[79.19212,13.06743],[79.18809,13.06566],[79.18732,13.06066],[79.18007,13.06431],[79.1783,13.05919],[79.18474,13.0568],[79.19134,13.05856],[79.1921,13.05615],[79.17966,13.0545],[79.18044,13.04885],[79.18271,13.04732],[79.19189,13.04835],[79.193,13.0467],[79.1885,13.04195],[79.18483,13.02985],[79.1822,13.03187],[79.18112,13.02974],[79.17642,13.02885],[79.17583,13.0271],[79.17186,13.02728],[79.17109,13.02398],[79.16831,13.02426],[79.16312,13.02027],[79.14831,13.02466],[79.13734,13.03481],[79.12754,13.03557],[79.11448,13.03927],[79.10747,13.03828],[79.09831,13.02606],[79.09114,13.02607],[79.08682,13.02801],[79.08091,13.02573],[79.07394,13.03285],[79.06287,13.04064],[79.06452,13.05006],[79.0634,13.05311],[79.03869,13.06114],[79.03628,13.06546],[79.03695,13.07059],[79.0346,13.06998],[79.03156,13.07203],[79.02974,13.07098],[79.02869,13.07262],[79.02438,13.07187],[79.02299,13.07379],[79.01656,13.07455],[79.01533,13.07694],[79.0095,13.07723],[79.00817,13.08071],[79.00369,13.08321],[79.00392,13.0846],[78.995,13.08661],[78.98252,13.08641],[78.9723,13.08381],[78.97019,13.07965],[78.97144,13.077],[78.97028,13.07471],[78.96879,13.07786],[78.96213,13.07873],[78.96073,13.07612],[78.95545,13.07584],[78.94958,13.08017],[78.94919,13.08399],[78.94148,13.07852],[78.9275,13.08183],[78.92394,13.08081],[78.92174,13.06609],[78.91949,13.06486],[78.91657,13.06731],[78.9126,13.06593],[78.90368,13.04771],[78.90612,13.04512],[78.91751,13.04362],[78.92175,13.04701],[78.92916,13.04576],[78.93374,13.03926],[78.94081,13.03641],[78.93711,13.03043],[78.93575,13.03479],[78.93155,13.03469],[78.92912,13.03649],[78.91563,13.03356],[78.89164,13.03306],[78.89129,13.06881],[78.88895,13.07336],[78.89219,13.08976],[78.89569,13.09512],[78.89121,13.09715],[78.88142,13.09818],[78.8751,13.09682],[78.8698,13.08952],[78.87097,13.08188],[78.86111,13.08366],[78.84204,13.07861],[78.8208,13.08776],[78.81314,13.08914],[78.79763,13.07485],[78.7943,13.06658],[78.75178,13.05494],[78.74029,13.064],[78.71452,13.06868],[78.70527,13.01524],[78.65621,13.03117],[78.65552,13.01525],[78.65208,13.01359],[78.64513,13.00623],[78.63462,13.0008],[78.63001,12.9945],[78.6209,12.99124],[78.64002,12.97098],[78.64717,12.96624],[78.63824,12.96408],[78.64612,12.94589],[78.65701,12.93211],[78.65226,12.9291],[78.63344,12.93175],[78.63345,12.92611],[78.62686,12.90732],[78.62286,12.90425],[78.61669,12.88858],[78.61309,12.86794],[78.60156,12.8508],[78.60776,12.8219],[78.60039,12.81842],[78.60116,12.80368],[78.59307,12.79823],[78.59252,12.78268],[78.57605,12.77191],[78.57656,12.76738],[78.56839,12.76693],[78.56558,12.75936],[78.56153,12.76145],[78.55563,12.75579],[78.55826,12.75371],[78.55834,12.74994],[78.5632,12.75132],[78.5597,12.74919],[78.56012,12.74378],[78.55616,12.74271],[78.55532,12.73928],[78.56386,12.73762],[78.56055,12.72716],[78.55442,12.71928],[78.55604,12.71519],[78.56159,12.71001],[78.55488,12.70752],[78.55662,12.70361],[78.55588,12.70016],[78.54091,12.69067],[78.53491,12.69112],[78.5313,12.69702],[78.52961,12.71022],[78.53275,12.71158],[78.53505,12.70732],[78.53774,12.71045],[78.53996,12.70822],[78.54428,12.71094],[78.53697,12.71332],[78.53752,12.71699],[78.53323,12.71398],[78.52507,12.71542],[78.52703,12.72149],[78.52271,12.71921],[78.52092,12.73613],[78.51917,12.73628],[78.51855,12.72633],[78.51669,12.72437],[78.51164,12.72679],[78.51383,12.73447],[78.50714,12.73711],[78.50527,12.74296],[78.49317,12.74715],[78.48909,12.74198],[78.49696,12.73134],[78.50165,12.73111],[78.50427,12.72494],[78.50644,12.72434],[78.50597,12.72252],[78.50927,12.72423],[78.51658,12.7187],[78.51781,12.72012],[78.52024,12.71868],[78.51983,12.71557],[78.51753,12.71469],[78.52001,12.71201],[78.51901,12.71035],[78.51448,12.71037],[78.51462,12.70791],[78.51178,12.7077],[78.50307,12.71677],[78.50396,12.71123],[78.50193,12.70445],[78.49658,12.70325],[78.49932,12.70161],[78.49941,12.69925],[78.50399,12.69864],[78.50291,12.69191],[78.50744,12.69141],[78.50336,12.68991],[78.50406,12.68346],[78.50252,12.68416],[78.50386,12.68191],[78.50012,12.67991],[78.49933,12.67509],[78.48484,12.67329],[78.4845,12.67166],[78.4679,12.67589],[78.47051,12.65056],[78.47478,12.64763],[78.47056,12.64459],[78.47172,12.63204],[78.46492,12.62401],[78.45846,12.62964],[78.43483,12.62955],[78.42707,12.63524],[78.41261,12.62686],[78.39251,12.62738],[78.37942,12.62501],[78.37143,12.62711],[78.36286,12.63434],[78.35565,12.63646],[78.35212,12.64158],[78.34359,12.64874],[78.33221,12.64926],[78.33107,12.65303],[78.32581,12.65524],[78.31837,12.66192],[78.30603,12.66627],[78.30099,12.66587],[78.30133,12.66758],[78.29647,12.67104],[78.29559,12.67526],[78.28645,12.68901],[78.27594,12.70215],[78.27109,12.70506],[78.24456,12.70633],[78.23929,12.70101],[78.23771,12.68576],[78.23212,12.6872],[78.21059,12.68608],[78.21235,12.68848],[78.20986,12.69041],[78.20336,12.69313],[78.20128,12.6916],[78.19964,12.69307],[78.19936,12.69545],[78.20419,12.6959],[78.20994,12.7005],[78.20936,12.70252],[78.20713,12.70221],[78.20772,12.70483],[78.20575,12.7064],[78.2074,12.70836],[78.21217,12.70763],[78.21346,12.71098],[78.21807,12.7088],[78.22712,12.71483],[78.23117,12.71256],[78.24101,12.72994],[78.24088,12.73271],[78.23609,12.7381],[78.23579,12.74585],[78.23214,12.75304],[78.23095,12.76066],[78.22389,12.76588],[78.21286,12.76503],[78.19516,12.77384],[78.19208,12.77428],[78.18896,12.77191],[78.18426,12.77622],[78.18239,12.77425],[78.1774,12.77595],[78.17163,12.77379],[78.16766,12.77008],[78.14515,12.78093],[78.1363,12.78185],[78.13572,12.78309],[78.13424,12.78197],[78.13126,12.7838],[78.12595,12.79168],[78.12499,12.79819],[78.12188,12.79925],[78.12036,12.80171],[78.10936,12.80449],[78.10473,12.80908],[78.09016,12.81736],[78.09017,12.8235],[78.08753,12.82488],[78.08813,12.82787],[78.0862,12.83194],[78.07386,12.83051],[78.07699,12.83912],[78.0712,12.8424],[78.06021,12.84383],[78.05905,12.85117],[78.05356,12.85379],[78.05143,12.85243],[78.05047,12.84874],[78.03073,12.85245],[78.03065,12.85802],[78.02387,12.8565],[78.02407,12.85251],[78.0297,12.84891],[78.02899,12.84519],[78.02433,12.84174],[78.01915,12.84394],[78.0183,12.83105],[78.01466,12.82982],[78.01062,12.83091],[78.00371,12.82478],[78.00736,12.8211],[78.01277,12.81882],[78.01511,12.81337],[78.00975,12.80574],[78.00561,12.80862],[77.99669,12.80787],[77.9952,12.80586],[77.98852,12.80819],[77.98978,12.82155],[77.9868,12.82182],[77.97927,12.82704],[77.98039,12.83506],[77.97405,12.83483],[77.9727,12.83282],[77.96432,12.83284],[77.96257,12.83737],[77.96535,12.84818],[77.963,12.85018],[77.95278,12.85013],[77.95234,12.85712],[77.94365,12.85782],[77.93999,12.85314],[77.94058,12.84525],[77.94661,12.83871],[77.94217,12.83121],[77.94068,12.82334],[77.9348,12.82293],[77.92852,12.82678],[77.92676,12.83017],[77.92056,12.82816],[77.91857,12.83058],[77.91725,12.83885],[77.92424,12.85112],[77.92281,12.85556],[77.93135,12.86181],[77.93559,12.86275],[77.93642,12.86667],[77.94133,12.86874],[77.94163,12.87274],[77.92772,12.87492],[77.92714,12.88152],[77.93463,12.88066],[77.9361,12.88361],[77.93601,12.88724],[77.92932,12.89092],[77.92509,12.89009],[77.92187,12.88474],[77.90876,12.88484],[77.90841,12.87881],[77.89492,12.87857],[77.89034,12.86966],[77.88475,12.87022],[77.88254,12.86856],[77.87727,12.86862],[77.87594,12.8668],[77.85748,12.86948],[77.85095,12.86611],[77.84739,12.86932],[77.84261,12.86869],[77.83601,12.87033],[77.83216,12.86752],[77.83246,12.86204],[77.82579,12.85994],[77.82308,12.85584],[77.81555,12.85579],[77.80792,12.84767],[77.79911,12.85154],[77.79675,12.84478],[77.79489,12.84562],[77.79246,12.8427],[77.7959,12.83453],[77.80988,12.83153],[77.80796,12.82304],[77.8099,12.81553],[77.80216,12.817],[77.79973,12.80522],[77.8034,12.80481],[77.8051,12.7996],[77.80728,12.79939],[77.80854,12.79673],[77.80665,12.79406],[77.80403,12.79423],[77.80221,12.79626],[77.80037,12.79443],[77.79856,12.79512],[77.79292,12.78798],[77.78954,12.78016],[77.77884,12.76801],[77.7845,12.76238],[77.79439,12.75762],[77.79274,12.74786],[77.78356,12.74121],[77.78006,12.74202],[77.76835,12.74003],[77.76242,12.73531],[77.7612,12.72737],[77.77445,12.72421],[77.77032,12.71787],[77.76955,12.71252],[77.76575,12.71374],[77.76612,12.70799],[77.76392,12.69964],[77.75995,12.69698],[77.73988,12.69988],[77.73518,12.69402],[77.73502,12.69185],[77.74101,12.68577],[77.74118,12.67546],[77.73993,12.67299],[77.72462,12.67119],[77.72277,12.67965],[77.71159,12.68314],[77.71101,12.66712],[77.70423,12.6614],[77.69219,12.66084],[77.68993,12.65899],[77.67865,12.66039],[77.67714,12.67144],[77.67509,12.67309],[77.67638,12.67947],[77.65991,12.68384],[77.63788,12.67571],[77.62391,12.6739],[77.59887,12.66716],[77.59612,12.65028],[77.59964,12.64269],[77.60073,12.64303],[77.60474,12.63759],[77.60333,12.63532],[77.60623,12.62891],[77.59407,12.62106],[77.59102,12.61524],[77.59142,12.59209],[77.58932,12.59268],[77.5838,12.57588],[77.57934,12.57309],[77.58075,12.56571],[77.58035,12.55159],[77.5864,12.54572],[77.58546,12.5368],[77.5885,12.52662],[77.5872,12.51475],[77.59393,12.51608],[77.60677,12.51413],[77.61242,12.51494],[77.61633,12.50918],[77.61507,12.50416],[77.6024,12.49715],[77.5918,12.48518],[77.58875,12.48563],[77.58368,12.4788],[77.59569,12.4748],[77.5984,12.47618],[77.60742,12.47512],[77.61649,12.48284],[77.62609,12.49631],[77.62948,12.4945],[77.63463,12.4876],[77.6324,12.47912],[77.63314,12.47045],[77.63076,12.47027],[77.62924,12.46677],[77.6306,12.46511],[77.62942,12.46065],[77.62717,12.45845],[77.62915,12.44635],[77.62698,12.44112],[77.62608,12.43076],[77.62909,12.42513],[77.62962,12.41832],[77.62333,12.41226],[77.62058,12.38301],[77.61809,12.3811],[77.61681,12.3682],[77.61302,12.36112],[77.60762,12.36105],[77.60084,12.35843],[77.59869,12.34999],[77.59154,12.34014],[77.57858,12.33567],[77.566,12.30624],[77.55791,12.30573],[77.5579,12.30321],[77.5524,12.29745],[77.55134,12.29121],[77.53284,12.29146],[77.52722,12.27877],[77.51419,12.27538],[77.50838,12.276],[77.49998,12.28257],[77.49674,12.28218],[77.49328,12.27887],[77.4876,12.2805],[77.4851,12.27505],[77.47906,12.27127],[77.47703,12.26446],[77.4782,12.25921],[77.47352,12.25561],[77.47202,12.24987],[77.47112,12.24351],[77.47849,12.24006],[77.48263,12.2302],[77.47204,12.20789],[77.47544,12.20559],[77.48645,12.20381],[77.49271,12.19733],[77.51868,12.19448],[77.52815,12.19889],[77.53585,12.19862],[77.54017,12.20238],[77.54626,12.20466],[77.5658,12.19633],[77.56943,12.19974],[77.57386,12.20089],[77.58042,12.1981],[77.59674,12.19927],[77.60534,12.20553],[77.61075,12.20614],[77.62096,12.19988],[77.62984,12.20224],[77.63537,12.19744],[77.63999,12.1964],[77.65608,12.19955],[77.66524,12.19821],[77.67722,12.19254],[77.70228,12.18413],[77.7277,12.18153],[77.73334,12.17808],[77.73543,12.16959],[77.74521,12.15929],[77.74746,12.15289],[77.74679,12.14453],[77.75147,12.1362],[77.75721,12.13044],[77.76819,12.12467],[77.77556,12.11844],[77.7759,12.1113],[77.76775,12.10664],[77.75569,12.07973],[77.74271,12.07002],[77.72664,12.06113],[77.69637,12.01577],[77.67474,11.96594],[77.67451,11.9539],[77.67569,11.95198],[77.66907,11.94907],[77.65738,11.94983],[77.65619,11.95346],[77.65205,11.95482],[77.64871,11.95367],[77.64722,11.95049],[77.64232,11.95002],[77.63944,11.94805],[77.62886,11.94637],[77.624,11.94731],[77.61253,11.94241],[77.60695,11.94202],[77.60345,11.93766],[77.59358,11.94022],[77.58839,11.93934],[77.58596,11.93687],[77.57531,11.93648],[77.56107,11.94192],[77.55818,11.94155],[77.54252,11.93816],[77.53798,11.93239],[77.52824,11.93378],[77.51834,11.93822],[77.51231,11.93781],[77.50492,11.94113],[77.50041,11.93998],[77.4948,11.94385],[77.49287,11.94126],[77.49189,11.92119],[77.48861,11.91234],[77.49089,11.91068],[77.49059,11.90849],[77.48307,11.89957],[77.4862,11.88741],[77.48409,11.88801],[77.48064,11.89341],[77.47722,11.89046],[77.47416,11.89439],[77.47478,11.898],[77.47352,11.89918],[77.46163,11.89998],[77.46398,11.89403],[77.46223,11.88796],[77.46314,11.88437],[77.46048,11.8812],[77.46586,11.8742],[77.46284,11.8648],[77.45994,11.86345],[77.46305,11.85885],[77.46141,11.85369],[77.46624,11.85002],[77.46661,11.84708],[77.46036,11.83184],[77.45697,11.82898],[77.45404,11.82023],[77.4498,11.79601],[77.44662,11.79031],[77.4405,11.78883],[77.4396,11.78561],[77.4422,11.78329],[77.43381,11.77814],[77.42805,11.76701],[77.42894,11.76263],[77.42724,11.76087],[77.4226,11.76172],[77.42223,11.77238],[77.41366,11.77467],[77.39446,11.78763],[77.38802,11.78847],[77.37026,11.78666],[77.36904,11.78951],[77.36485,11.7904],[77.36042,11.77947],[77.33515,11.77123],[77.3277,11.77535],[77.31267,11.79354],[77.29385,11.809],[77.28798,11.80044],[77.27443,11.803],[77.27342,11.80534],[77.26158,11.81061],[77.24988,11.81301],[77.2496,11.80418],[77.2386,11.79465],[77.21752,11.79533],[77.18924,11.79252],[77.18202,11.78632],[77.14709,11.78191],[77.13808,11.77264],[77.13058,11.7737],[77.12276,11.77245],[77.11565,11.77472],[77.11075,11.77347],[77.11266,11.76558],[77.11134,11.76367],[77.11246,11.75693],[77.10855,11.7526],[77.11138,11.7504],[77.11174,11.74307],[77.11484,11.73893],[77.11419,11.73447],[77.11754,11.73179],[77.11535,11.72817],[77.11739,11.72847],[77.11602,11.72564],[77.11814,11.72611],[77.11771,11.72107],[77.11482,11.72175],[77.10501,11.7328],[77.08022,11.73598],[77.08276,11.73976],[77.07109,11.75131],[77.05643,11.76978],[77.05991,11.77152],[77.06126,11.77592],[77.0671,11.77831],[77.06976,11.78208],[77.06692,11.78798],[77.06294,11.7904],[77.05779,11.78885],[77.05043,11.78962],[77.04647,11.78762],[77.043,11.78199],[77.04006,11.78062],[77.0351,11.76978],[77.02886,11.77467],[77.03549,11.78314],[77.03875,11.79385],[77.03534,11.7939],[77.03267,11.79589],[77.03419,11.79995],[77.03065,11.80201],[77.02988,11.80467],[77.01689,11.81071],[77.01622,11.8069],[77.01401,11.80621],[77.01294,11.81461],[76.99354,11.80916],[76.9858,11.81187],[76.98215,11.8115],[76.9821,11.80346],[76.98365,11.80168],[76.9802,11.79853],[76.98089,11.79541],[76.97533,11.78925],[76.97273,11.78038],[76.96992,11.77686],[76.96118,11.78162],[76.95602,11.79115],[76.95394,11.79205],[76.94239,11.78802],[76.93209,11.79279],[76.92218,11.79178],[76.908,11.79525],[76.89661,11.77647],[76.89792,11.7706],[76.89625,11.7598],[76.8881,11.7417],[76.88835,11.73364],[76.87421,11.72411],[76.86263,11.71101],[76.86117,11.70722],[76.86371,11.70537],[76.85276,11.69237],[76.84854,11.67969],[76.84403,11.67281],[76.84365,11.6682],[76.84141,11.66595],[76.84184,11.66213],[76.8387,11.66009],[76.83778,11.65621],[76.83501,11.65542],[76.83626,11.65388],[76.83374,11.64896],[76.83793,11.64194],[76.83463,11.6395],[76.83841,11.63538],[76.84419,11.63257],[76.84513,11.63415],[76.84484,11.62815],[76.84276,11.62705],[76.8496,11.62432],[76.84955,11.62107],[76.85211,11.62167],[76.84884,11.61856],[76.85053,11.61596],[76.85601,11.61564],[76.85812,11.61403],[76.85774,11.61016],[76.85567,11.60758],[76.85724,11.60547],[76.85647,11.59928],[76.84694,11.59447],[76.83274,11.60048],[76.82284,11.60808],[76.81757,11.60472],[76.80924,11.60838],[76.79635,11.60841],[76.79153,11.61274],[76.77476,11.61234],[76.77019,11.61569],[76.76482,11.61413],[76.75692,11.61844],[76.74707,11.61378],[76.73684,11.61531],[76.72183,11.61439],[76.70271,11.61584],[76.68459,11.61396],[76.67147,11.61591],[76.6502,11.61345],[76.63046,11.61379],[76.61398,11.60755],[76.61065,11.61085],[76.59761,11.61064],[76.59647,11.61625],[76.59229,11.61866],[76.58379,11.61376],[76.57908,11.61573],[76.57675,11.6145],[76.57521,11.61919],[76.56966,11.61806],[76.56266,11.62291],[76.55995,11.62247],[76.56142,11.63268],[76.55958,11.63317],[76.55873,11.63851],[76.55391,11.64571],[76.5544,11.65557],[76.55006,11.6611],[76.54931,11.66498],[76.5514,11.67188],[76.55056,11.67419],[76.53723,11.6908],[76.51111,11.70498],[76.50459,11.69913],[76.50152,11.69916],[76.4936,11.69298],[76.48843,11.69135],[76.48168,11.69252],[76.48262,11.68611],[76.47443,11.68122],[76.45821,11.66433],[76.45514,11.66578],[76.45035,11.66416],[76.44913,11.6656],[76.44349,11.66359],[76.44041,11.66581],[76.43533,11.6647],[76.43339,11.6668],[76.43136,11.66636],[76.43637,11.65347],[76.44111,11.65132],[76.44406,11.64719],[76.44343,11.64362],[76.43455,11.63576],[76.43248,11.63129],[76.43006,11.63079],[76.4262,11.63357],[76.40689,11.63428],[76.3881,11.62967],[76.38329,11.62404],[76.38393,11.61205],[76.37827,11.60851],[76.37798,11.60191],[76.3671,11.59833],[76.35458,11.58931],[76.3404,11.5872],[76.33996,11.59313],[76.33588,11.59574],[76.32121,11.58619],[76.31592,11.57659],[76.31054,11.57739],[76.30238,11.57123],[76.30013,11.57446],[76.29913,11.58281],[76.29594,11.59042],[76.28609,11.5902],[76.27891,11.60094],[76.2743,11.59368],[76.26493,11.59389],[76.2646,11.59094],[76.26115,11.5903],[76.25351,11.5854],[76.24921,11.58007],[76.24375,11.57849],[76.23308,11.57077],[76.24043,11.5559],[76.2444,11.55409],[76.24237,11.55049],[76.24628,11.54628],[76.24451,11.543],[76.24977,11.53731],[76.25151,11.53778],[76.25049,11.52757],[76.24453,11.5261],[76.24056,11.52781],[76.23848,11.52627],[76.24422,11.51736],[76.24816,11.51649],[76.24852,11.50647],[76.25229,11.5],[76.24979,11.49832],[76.24757,11.46854],[76.2646,11.48089],[76.26769,11.48053],[76.27044,11.47716],[76.27562,11.47687],[76.27856,11.47922],[76.28157,11.47924],[76.28444,11.48292],[76.29418,11.47289],[76.29289,11.47022],[76.29047,11.46957],[76.29352,11.46568],[76.30515,11.46779],[76.32547,11.45333],[76.33558,11.46161],[76.33815,11.46188],[76.34223,11.46759],[76.3463,11.46415],[76.37149,11.45406],[76.37257,11.45101],[76.37855,11.44919],[76.39768,11.43502],[76.4187,11.44178],[76.41508,11.42263],[76.46208,11.38747],[76.51775,11.37156],[76.51512,11.35969],[76.50818,11.35412],[76.54786,11.35889],[76.54744,11.34547],[76.54997,11.33099],[76.5373,11.31404],[76.53936,11.30462],[76.54576,11.30031],[76.52626,11.28826],[76.52218,11.27134],[76.48711,11.25829],[76.4663,11.24512],[76.45309,11.23937],[76.44896,11.20547],[76.43936,11.20296],[76.43862,11.19896],[76.4519,11.19922],[76.45844,11.18768],[76.46662,11.19332],[76.47347,11.19493],[76.47237,11.20875],[76.4828,11.21071],[76.51048,11.21164],[76.51609,11.2043],[76.53385,11.19675],[76.6009,11.20659],[76.62972,11.19417],[76.65341,11.21012],[76.67752,11.22063],[76.68478,11.22773],[76.68296,11.23006],[76.68531,11.2312],[76.68422,11.23374],[76.69827,11.2396],[76.70709,11.23838],[76.71167,11.23175],[76.7149,11.23133],[76.72175,11.22492],[76.72537,11.22581],[76.72582,11.21867],[76.72823,11.21854],[76.73142,11.21559],[76.73177,11.21367],[76.72659,11.21037],[76.72218,11.20363],[76.7282,11.19585],[76.72904,11.19104],[76.72363,11.19238],[76.71843,11.18641],[76.71378,11.18836],[76.71033,11.18784],[76.70937,11.18239],[76.70659,11.17936],[76.70024,11.18182],[76.70077,11.17606],[76.69647,11.17531],[76.69296,11.17236],[76.69226,11.16456],[76.68956,11.15957],[76.69298,11.15585],[76.69586,11.15523],[76.69552,11.15149],[76.69692,11.14979],[76.70142,11.1493],[76.70206,11.14757],[76.70026,11.14655],[76.70524,11.1422],[76.71238,11.14217],[76.71231,11.14424],[76.70887,11.14627],[76.71003,11.14799],[76.71611,11.14915],[76.71847,11.14764],[76.71742,11.14407],[76.72475,11.13855],[76.72637,11.13385],[76.72871,11.1339],[76.72875,11.13045],[76.73166,11.13145],[76.73503,11.13639],[76.7404,11.1337],[76.73931,11.13197],[76.74245,11.13323],[76.74622,11.13771],[76.7483,11.13584],[76.74705,11.13071],[76.74533,11.13019],[76.74753,11.12305],[76.74742,11.1112],[76.7453,11.10848],[76.74072,11.10919],[76.74077,11.10498],[76.73898,11.1043],[76.74117,11.09992],[76.74376,11.09899],[76.74658,11.09251],[76.75168,11.09319],[76.75453,11.08416],[76.75416,11.07779],[76.75014,11.07894],[76.74798,11.07432],[76.74571,11.07564],[76.74457,11.07248],[76.74104,11.07234],[76.74114,11.06973],[76.74377,11.06844],[76.74257,11.06334],[76.74575,11.06002],[76.74415,11.05707],[76.74613,11.05482],[76.75106,11.05541],[76.7607,11.05231],[76.76203,11.04798],[76.76894,11.04343],[76.77816,11.04209],[76.78779,11.0447],[76.79622,11.05585],[76.79846,11.05655],[76.80086,11.05397],[76.79315,11.0434],[76.79184,11.03736],[76.77365,11.03354],[76.7666,11.02909],[76.74929,11.03343],[76.7376,11.03974],[76.73242,11.03844],[76.72616,11.04114],[76.71542,11.04101],[76.71089,11.03872],[76.70912,11.03289],[76.69416,11.02156],[76.68546,10.9938],[76.68604,10.9892],[76.67389,10.97439],[76.66679,10.96833],[76.66748,10.95959],[76.6636,10.95093],[76.66583,10.94742],[76.66473,10.94348],[76.6558,10.93901],[76.65909,10.9305],[76.66206,10.92964],[76.67675,10.91806],[76.69521,10.91023],[76.70807,10.9101],[76.71264,10.90757],[76.7149,10.90861],[76.71783,10.90546],[76.72345,10.90345],[76.73168,10.89765],[76.73755,10.89588],[76.74079,10.89097],[76.74554,10.89268],[76.75,10.89225],[76.75241,10.89506],[76.75527,10.8932],[76.76125,10.89346],[76.76529,10.89118],[76.7679,10.88703],[76.77438,10.8901],[76.77661,10.88917],[76.78143,10.89042],[76.79092,10.88445],[76.7918,10.88111],[76.80122,10.88005],[76.80813,10.8768],[76.81146,10.87788],[76.81186,10.87583],[76.81434,10.87599],[76.81669,10.87274],[76.82832,10.87191],[76.83076,10.86993],[76.83194,10.86013],[76.83909,10.85634],[76.84168,10.85208],[76.84842,10.84939],[76.84878,10.84635],[76.85378,10.83896],[76.85319,10.83292],[76.85084,10.82958],[76.84855,10.83052],[76.84736,10.82633],[76.8464,10.82732],[76.84508,10.8261],[76.84817,10.8188],[76.8499,10.81725],[76.85258,10.81855],[76.85875,10.81667],[76.86048,10.81848],[76.86396,10.81727],[76.86526,10.8129],[76.87006,10.80833],[76.88899,10.80958],[76.90068,10.8073],[76.90063,10.80087],[76.90721,10.78269],[76.90753,10.77799],[76.90531,10.77143],[76.90258,10.77079],[76.90359,10.76111],[76.90108,10.75637],[76.89631,10.75198],[76.89616,10.74533],[76.8883,10.73247],[76.88864,10.72831],[76.89294,10.72146],[76.8903,10.71692],[76.88635,10.71863],[76.88221,10.71734],[76.86759,10.69478],[76.87084,10.69288],[76.86603,10.68531],[76.86754,10.67905],[76.86958,10.67678],[76.87748,10.67673],[76.8784,10.67503],[76.87814,10.66735],[76.88137,10.66126],[76.88092,10.65645],[76.88374,10.65],[76.88248,10.63971],[76.87346,10.63777],[76.86751,10.63325],[76.86066,10.63234],[76.8462,10.63583],[76.83928,10.6343],[76.83066,10.63762],[76.82113,10.63442],[76.81418,10.63586],[76.81497,10.62963],[76.8101,10.62418],[76.81145,10.62001],[76.8163,10.61686],[76.81631,10.61367],[76.81833,10.61115],[76.81573,10.60787],[76.81731,10.6032],[76.82601,10.59613],[76.83233,10.59928],[76.8374,10.59841],[76.83827,10.59667],[76.83754,10.58186],[76.83357,10.57436],[76.8344,10.5703],[76.83922,10.56475],[76.83914,10.56133],[76.83568,10.55787],[76.83519,10.5454],[76.84205,10.54078],[76.8431,10.53729],[76.83104,10.50003],[76.82833,10.45017],[76.81638,10.42352],[76.82317,10.41701],[76.82253,10.41456],[76.82464,10.41012],[76.83043,10.4113],[76.83358,10.40777],[76.8325,10.40568],[76.83403,10.40334],[76.82366,10.39506],[76.8305,10.38966],[76.83429,10.38325],[76.84389,10.37753],[76.84879,10.36823],[76.84516,10.36293],[76.84601,10.35731],[76.84194,10.35359],[76.8417,10.35062],[76.83631,10.34602],[76.83609,10.34044],[76.83774,10.33666],[76.83297,10.31807],[76.83062,10.31454],[76.83037,10.30956],[76.8287,10.30787],[76.83031,10.30363],[76.83732,10.30205],[76.8407,10.29968],[76.84478,10.2949],[76.84221,10.29247],[76.84263,10.29003],[76.84824,10.28754],[76.84872,10.28528],[76.85222,10.2851],[76.85126,10.2899],[76.8551,10.29285],[76.85792,10.29364],[76.86239,10.29203],[76.86435,10.29532],[76.86842,10.29607],[76.87052,10.29888],[76.87314,10.29848],[76.87452,10.29428],[76.87342,10.27634],[76.88409,10.2709],[76.89144,10.26306],[76.89741,10.26244],[76.90142,10.25116],[76.90443,10.25091],[76.90546,10.24792],[76.903,10.2403],[76.90826,10.24085],[76.9116,10.23529],[76.92156,10.23218],[76.93936,10.2389],[76.94754,10.23687],[76.9506,10.23247],[76.95888,10.23414],[76.96543,10.23074],[76.96855,10.23077],[76.97229,10.22861],[76.97347,10.22543],[76.98048,10.22379],[76.98245,10.22012],[76.9845,10.22298],[76.99071,10.22568],[76.99046,10.22809],[76.99332,10.23045],[76.99903,10.23037],[77.001,10.23516],[77.00378,10.23464],[77.00547,10.2384],[77.01113,10.24009],[77.01443,10.24579],[77.01749,10.24563],[77.03152,10.25226],[77.04063,10.25266],[77.0429,10.25685],[77.05108,10.26211],[77.05079,10.26805],[77.05268,10.2725],[77.0496,10.27808],[77.04288,10.28377],[77.05645,10.287],[77.05944,10.29023],[77.063,10.29139],[77.0662,10.2977],[77.07261,10.29913],[77.07958,10.30301],[77.08845,10.30982],[77.09136,10.31391],[77.0961,10.30898],[77.10172,10.31561],[77.11024,10.31559],[77.12039,10.31796],[77.12879,10.32623],[77.15128,10.33753],[77.16221,10.3489],[77.17662,10.35844],[77.19605,10.35451],[77.19813,10.35673],[77.20206,10.35763],[77.20465,10.35385],[77.20939,10.35302],[77.22262,10.35366],[77.23565,10.35225],[77.23637,10.33889],[77.23305,10.33765],[77.23317,10.33499],[77.22921,10.33065],[77.22817,10.32727],[77.22957,10.32236],[77.22762,10.31995],[77.22775,10.31542],[77.23093,10.31257],[77.23141,10.30842],[77.23528,10.30765],[77.23676,10.301],[77.23982,10.29853],[77.23931,10.29503],[77.26293,10.26333],[77.25719,10.25939],[77.25972,10.23027],[77.26455,10.23233],[77.26475,10.23522],[77.2686,10.23459],[77.26926,10.23704],[77.27316,10.23501],[77.28194,10.23656],[77.28422,10.23342],[77.28809,10.23186],[77.29496,10.2179],[77.29337,10.21529],[77.28954,10.21456],[77.2873,10.20925],[77.28312,10.20865],[77.28587,10.20436],[77.28482,10.20055],[77.28296,10.19659],[77.27857,10.19421],[77.2753,10.18442],[77.27627,10.17571],[77.2747,10.17527],[77.27292,10.16534],[77.27414,10.15767],[77.2718,10.14199],[77.27453,10.13976],[77.27477,10.13255],[77.27405,10.12949],[77.26836,10.12714],[77.26778,10.12161],[77.25269,10.12445],[77.24895,10.12681],[77.24765,10.1305],[77.23824,10.13008],[77.23373,10.12797],[77.23205,10.12528],[77.23276,10.12396],[77.22992,10.12252],[77.23038,10.1205],[77.22717,10.12119],[77.21643,10.11585],[77.21085,10.11816],[77.20789,10.1177],[77.20648,10.11256],[77.20462,10.11276],[77.20133,10.10621],[77.20401,10.09728],[77.20398,10.08773],[77.21984,10.07716],[77.22289,10.07298],[77.2235,10.06918],[77.23144,10.06627],[77.23447,10.05984],[77.24439,10.05197],[77.2548,10.03667],[77.2619,10.02973],[77.26159,10.0212],[77.25744,10.0193],[77.25586,10.01453],[77.25319,10.01281],[77.26613,10.00189],[77.2608,9.99576],[77.26091,9.99268],[77.26177,9.9911],[77.26683,9.99029],[77.2644,9.98717],[77.26796,9.97991],[77.27267,9.97634],[77.27087,9.97091],[77.27218,9.97015],[77.27285,9.96419],[77.27184,9.96133],[77.27105,9.96243],[77.26854,9.96091],[77.26101,9.95249],[77.25296,9.95345],[77.25021,9.95118],[77.24958,9.95255],[77.24654,9.9514],[77.2479,9.94685],[77.23623,9.93537],[77.23433,9.93058],[77.23564,9.92637],[77.2317,9.92404],[77.23056,9.92139],[77.23006,9.91247],[77.22439,9.90967],[77.22258,9.90596],[77.21825,9.90429],[77.21809,9.89637],[77.22075,9.88448],[77.21752,9.88435],[77.21527,9.87739],[77.21245,9.87688],[77.22133,9.86313],[77.22614,9.86086],[77.23269,9.86154],[77.23631,9.8596],[77.23718,9.85138],[77.22814,9.84914],[77.22633,9.84634],[77.22294,9.84488],[77.22753,9.83809],[77.22544,9.8333],[77.22655,9.83072],[77.22378,9.8287],[77.22385,9.82385],[77.22178,9.82245],[77.22431,9.822],[77.22501,9.8203],[77.23273,9.82149],[77.23259,9.81742],[77.24115,9.81563],[77.24679,9.808],[77.24509,9.80278],[77.24667,9.79789],[77.24173,9.79579],[77.24016,9.79692],[77.23601,9.79006],[77.22266,9.78779],[77.22499,9.77556],[77.2324,9.76857],[77.22747,9.76421],[77.22514,9.75277],[77.22023,9.74504],[77.21984,9.74208],[77.22268,9.73999],[77.22184,9.7374],[77.22391,9.73037],[77.22067,9.72964],[77.21838,9.72608],[77.20753,9.72476],[77.20356,9.72211],[77.2061,9.71757],[77.20471,9.71656],[77.2053,9.71309],[77.20195,9.70389],[77.20458,9.70158],[77.20672,9.69466],[77.20055,9.686],[77.19411,9.67056],[77.18682,9.66641],[77.18751,9.66144],[77.18115,9.65921],[77.17958,9.65554],[77.17927,9.64486],[77.17405,9.63731],[77.17415,9.63287],[77.17626,9.62948],[77.1746,9.62658],[77.16911,9.62397],[77.16778,9.61502],[77.16586,9.61286],[77.1703,9.60967],[77.17409,9.61119],[77.18868,9.6061],[77.19082,9.60922],[77.19706,9.61085],[77.1982,9.61436],[77.20896,9.61344],[77.21047,9.61086],[77.20984,9.60497],[77.21444,9.60071],[77.21714,9.60162],[77.22218,9.59771],[77.22249,9.59278],[77.2343,9.58155],[77.23713,9.58106],[77.24277,9.58522],[77.25307,9.58297],[77.25833,9.57649],[77.26145,9.57683],[77.26385,9.57374],[77.26971,9.57277],[77.27201,9.57645],[77.27693,9.57575],[77.28048,9.57958],[77.29034,9.58477],[77.29007,9.58869],[77.29456,9.58924],[77.30381,9.59874],[77.31537,9.60071],[77.31782,9.6025],[77.32241,9.59829],[77.325,9.59768],[77.32815,9.60015],[77.3299,9.59899],[77.32453,9.59334],[77.32618,9.58863],[77.32383,9.58516],[77.32562,9.58345],[77.32536,9.58003],[77.33251,9.57881],[77.33949,9.57331],[77.3419,9.57646],[77.34223,9.58101],[77.34548,9.58796],[77.35459,9.60407],[77.36113,9.60226],[77.36277,9.6002],[77.36581,9.59974],[77.36614,9.59596],[77.36239,9.59556],[77.36085,9.59784],[77.35748,9.59443],[77.35497,9.58668],[77.3583,9.58393],[77.35989,9.57738],[77.35814,9.57391],[77.35297,9.57286],[77.35026,9.56708],[77.35291,9.55958],[77.36126,9.55794],[77.36508,9.55273],[77.36556,9.53509],[77.36874,9.53478],[77.37296,9.52989],[77.37334,9.52685],[77.37693,9.52483],[77.38013,9.52536],[77.38518,9.51923],[77.39595,9.5233],[77.40051,9.52736],[77.40331,9.523],[77.40042,9.51786],[77.40831,9.51476],[77.4124,9.50898],[77.40971,9.50556],[77.40298,9.50148],[77.39931,9.49657],[77.39862,9.48163],[77.40198,9.47865],[77.40172,9.4769],[77.39713,9.47134],[77.39147,9.46869],[77.39261,9.45935],[77.38697,9.45565],[77.38093,9.45506],[77.3772,9.45278],[77.37423,9.45349],[77.37289,9.45663],[77.366,9.46008],[77.3603,9.45544],[77.35639,9.44757],[77.34941,9.44118],[77.34857,9.43451],[77.3446,9.42442],[77.33971,9.42072],[77.33649,9.41336],[77.33685,9.41052],[77.3436,9.40084],[77.33977,9.39375],[77.3414,9.38981],[77.33949,9.38741],[77.3366,9.38732],[77.33455,9.38122],[77.33457,9.37821],[77.33664,9.37692],[77.33732,9.36498],[77.33573,9.36392],[77.33333,9.35632],[77.32603,9.34655],[77.32529,9.33711],[77.3201,9.33753],[77.31562,9.33486],[77.3058,9.33779],[77.29997,9.33665],[77.30099,9.33012],[77.29703,9.32951],[77.3018,9.32424],[77.30252,9.31953],[77.29948,9.31418],[77.29954,9.31091],[77.29368,9.30476],[77.28976,9.30403],[77.28849,9.30165],[77.28299,9.30133],[77.28322,9.29131],[77.28788,9.28135],[77.28853,9.27417],[77.28175,9.27232],[77.28352,9.26728],[77.2815,9.26241],[77.28254,9.256],[77.2774,9.24713],[77.27955,9.24383],[77.27877,9.23941],[77.27411,9.23582],[77.27575,9.22898],[77.28166,9.22072],[77.28171,9.21657],[77.2755,9.21169],[77.27038,9.20503],[77.27034,9.2006],[77.26636,9.20045],[77.26314,9.19826],[77.25611,9.19922],[77.25641,9.19598],[77.25143,9.18864],[77.26095,9.18311],[77.26388,9.18411],[77.26516,9.18126],[77.26714,9.17432],[77.26532,9.16307],[77.26681,9.15246],[77.26072,9.14881],[77.26065,9.1443],[77.25272,9.13919],[77.24728,9.1246],[77.24215,9.12505],[77.23134,9.11743],[77.22844,9.11688],[77.22646,9.10819],[77.22106,9.10594],[77.21877,9.10143],[77.21241,9.10048],[77.20915,9.08996],[77.2057,9.08499],[77.20887,9.07404],[77.20551,9.06617],[77.1969,9.0568],[77.19528,9.04934],[77.19746,9.04697],[77.19171,9.04353],[77.18759,9.04314],[77.18232,9.04742],[77.16747,9.0453],[77.16412,9.03841],[77.16039,9.03584],[77.16212,9.03323],[77.1611,9.02944],[77.15387,9.02243],[77.14656,9.02182],[77.15073,9.01489],[77.14935,9.00958],[77.15275,9.00719],[77.15685,9.0075],[77.15615,9.00383],[77.16167,8.99504],[77.17357,8.99123],[77.1782,8.9691],[77.18555,8.97018],[77.1907,8.96562],[77.1915,8.95916],[77.19629,8.95458],[77.19697,8.95169],[77.19389,8.94332],[77.19714,8.93543],[77.19248,8.92855],[77.1928,8.9262],[77.19473,8.92412],[77.20105,8.92456],[77.20998,8.9185],[77.21423,8.91733],[77.21824,8.91869],[77.22123,8.90395],[77.22795,8.90359],[77.23855,8.89774],[77.24024,8.89447],[77.2384,8.89212],[77.23766,8.88567],[77.24499,8.88007],[77.25456,8.87959],[77.25657,8.87757],[77.25864,8.86518],[77.25568,8.86315],[77.25557,8.86112],[77.26152,8.85651],[77.26171,8.85261],[77.25908,8.85317],[77.25848,8.85033],[77.26276,8.84199],[77.25883,8.83862],[77.25759,8.83522],[77.25309,8.83226],[77.25136,8.82712],[77.24714,8.82372],[77.24708,8.81484],[77.24252,8.80979],[77.23198,8.80773],[77.23275,8.80164],[77.23054,8.79783],[77.23129,8.79082],[77.22971,8.78459],[77.22429,8.78362],[77.21999,8.77899],[77.21471,8.77973],[77.21307,8.77862],[77.21843,8.77099],[77.21795,8.76824],[77.2093,8.76535],[77.20496,8.76913],[77.19733,8.7689],[77.19984,8.76079],[77.19752,8.75093],[77.19246,8.74444],[77.18267,8.74278],[77.17703,8.74544],[77.17163,8.75058],[77.16977,8.74743],[77.17001,8.74179],[77.17911,8.73058],[77.17677,8.72613],[77.18062,8.72106],[77.18079,8.71832],[77.1843,8.71639],[77.18472,8.71347],[77.18998,8.71236],[77.19503,8.70776],[77.19561,8.70213],[77.20672,8.6842],[77.20726,8.68068],[77.20069,8.66908],[77.20837,8.66364],[77.20778,8.66083],[77.21211,8.65719],[77.2117,8.65479],[77.21427,8.64914],[77.22015,8.64493],[77.22483,8.63908],[77.22885,8.64027],[77.22931,8.63742],[77.23219,8.63565],[77.23465,8.62685],[77.24408,8.62182],[77.24573,8.61629],[77.24524,8.60344],[77.25076,8.59873],[77.25517,8.59739],[77.25864,8.58922],[77.26321,8.58883],[77.26643,8.58514],[77.26649,8.58077],[77.26905,8.57889],[77.27066,8.57165],[77.27504,8.56564],[77.2743,8.55964],[77.28236,8.55049],[77.28385,8.54673],[77.27465,8.53763],[77.27426,8.53372],[77.26692,8.51987],[77.26534,8.51196],[77.26171,8.50615],[77.25738,8.50705],[77.25615,8.50518],[77.2513,8.50542],[77.2463,8.50235],[77.24424,8.49756],[77.24012,8.49705],[77.22966,8.50898],[77.22226,8.51244],[77.21431,8.51281],[77.21041,8.50701],[77.20238,8.50119],[77.20468,8.49872],[77.20413,8.49645],[77.21188,8.49207],[77.21381,8.48554],[77.21174,8.48397],[77.21139,8.47888],[77.21407,8.46972],[77.22093,8.4658],[77.22742,8.45848],[77.2273,8.45293],[77.22901,8.45061],[77.2281,8.44725],[77.2066,8.4447],[77.20292,8.43633],[77.20381,8.43526],[77.19656,8.42916],[77.19752,8.41994],[77.18261,8.40475],[77.18167,8.39579],[77.17052,8.38736],[77.16819,8.38387],[77.16594,8.38787],[77.16095,8.39017],[77.15373,8.38774],[77.15111,8.38447],[77.15199,8.38129],[77.15532,8.3811],[77.15592,8.38265],[77.15996,8.38124],[77.16129,8.37398],[77.16034,8.3687],[77.15694,8.36741],[77.15589,8.36339],[77.15354,8.36131],[77.15302,8.35514],[77.1564,8.35673],[77.15741,8.35994],[77.15949,8.35916],[77.16336,8.36177],[77.1666,8.36025],[77.16754,8.36343],[77.16965,8.36347],[77.17072,8.3603],[77.17429,8.35863],[77.17547,8.34986],[77.171,8.34773],[77.16694,8.34275],[77.16997,8.33807],[77.16975,8.33474],[77.18061,8.32352],[77.17332,8.31976],[77.17216,8.32469],[77.16993,8.32549],[77.16929,8.33295],[77.1536,8.328],[77.14843,8.33199],[77.14526,8.32956],[77.13979,8.32987],[77.13842,8.32753],[77.12919,8.32598],[77.12959,8.32196],[77.11921,8.32106],[77.11899,8.31678],[77.12448,8.31207],[77.12278,8.30901],[77.11664,8.31031],[77.11308,8.30424],[77.10553,8.30692],[77.10176,8.30647],[77.10163,8.30091],[77.09886,8.29896],[77.09607,8.29317],[77.11148,8.2831],[77.12706,8.27001],[77.14941,8.25559],[77.154,8.25021],[77.16767,8.24001],[77.18591,8.21849],[77.21193,8.20461],[77.22381,8.19632],[77.23074,8.18602],[77.23999,8.1768],[77.24781,8.17282],[77.2556,8.17248],[77.26218,8.16971],[77.28732,8.15558],[77.29823,8.14737],[77.30259,8.14185],[77.30139,8.14065],[77.30416,8.13668],[77.30434,8.13227],[77.3158,8.12184],[77.31805,8.12176],[77.319,8.12388],[77.3214,8.124],[77.32233,8.12246],[77.32364,8.12637],[77.33421,8.12594],[77.35209,8.12243],[77.44473,8.09464],[77.48103,8.0891],[77.48641,8.0897],[77.48675,8.08814],[77.49904,8.08528],[77.52801,8.08116],[77.53251,8.0777],[77.53976,8.07893],[77.55133,8.07803],[77.55309,8.08582],[77.55804,8.08992],[77.56433,8.09234],[77.56151,8.09508],[77.55942,8.09499],[77.55821,8.09772],[77.55863,8.10652],[77.55697,8.11103],[77.55876,8.11929],[77.56606,8.12481],[77.56686,8.12723],[77.57711,8.13672],[77.6092,8.14924],[77.64037,8.15744],[77.64922,8.15932],[77.67425,8.15997],[77.71409,8.16645],[77.72076,8.16872],[77.72348,8.17134],[77.74471,8.17692],[77.75493,8.18352],[77.75566,8.18623],[77.76002,8.18963],[77.7674,8.19386],[77.775,8.19593],[77.78131,8.20104],[77.78413,8.20727],[77.78374,8.21197],[77.78196,8.21436],[77.78377,8.22164],[77.79592,8.23171],[77.80292,8.24017],[77.8181,8.24655],[77.84795,8.25539],[77.87886,8.26825],[77.88917,8.27399],[77.89871,8.28411],[77.90516,8.28825],[77.92742,8.29822],[77.95269,8.31389],[77.95455,8.32031],[77.97175,8.33326],[78.01428,8.35471],[78.06703,8.37285],[78.06699,8.37445],[78.06078,8.37469],[78.0569,8.37941],[78.05692,8.39085],[78.06071,8.40064],[78.06389,8.41799],[78.09641,8.46031],[78.11627,8.47977],[78.13059,8.49691],[78.12608,8.50121],[78.1219,8.5157],[78.12506,8.54033],[78.13207,8.55421],[78.13191,8.56043],[78.13797,8.58596],[78.12729,8.61504],[78.12728,8.63846],[78.12915,8.65579],[78.13144,8.66291],[78.12564,8.66509],[78.12871,8.66787],[78.12921,8.67296],[78.13179,8.676],[78.13205,8.68183],[78.1364,8.69411],[78.15406,8.71222],[78.15535,8.72522],[78.16299,8.74135],[78.16599,8.74398],[78.1811,8.75034],[78.18777,8.75007],[78.19158,8.74792],[78.19287,8.75124],[78.1962,8.7532],[78.1954,8.75727],[78.19749,8.75944],[78.19684,8.76094],[78.19825,8.76108],[78.19814,8.77202],[78.19998,8.77256],[78.19852,8.77406],[78.19913,8.78748],[78.19746,8.78882],[78.19248,8.78681],[78.19409,8.78642],[78.19546,8.77492],[78.19712,8.77403],[78.19657,8.77884],[78.1986,8.7759],[78.1955,8.77063],[78.1967,8.77091],[78.19656,8.76927],[78.19531,8.76982],[78.19626,8.76898],[78.19494,8.76911],[78.19509,8.76701],[78.18959,8.76381],[78.18706,8.76414],[78.18246,8.76604],[78.18133,8.76846],[78.179,8.76668],[78.17747,8.76876],[78.16968,8.77044],[78.16859,8.77147],[78.17016,8.77466],[78.16888,8.77668],[78.16455,8.77756],[78.16279,8.77953],[78.16181,8.77774],[78.16003,8.78432],[78.16153,8.787],[78.16389,8.78389],[78.1611,8.79187],[78.16246,8.79241],[78.16186,8.79764],[78.16156,8.79287],[78.16014,8.79689],[78.15808,8.79696],[78.15967,8.80416],[78.16349,8.80238],[78.16124,8.80513],[78.16303,8.80924],[78.16658,8.81174],[78.16378,8.81234],[78.16326,8.81563],[78.16802,8.82586],[78.16546,8.82834],[78.16477,8.83278],[78.1667,8.84239],[78.16579,8.86573],[78.16693,8.87289],[78.17164,8.88587],[78.1762,8.89138],[78.17998,8.89269],[78.18002,8.90611],[78.18664,8.92359],[78.1984,8.94345],[78.20667,8.95241],[78.21504,8.96604],[78.23982,8.98466],[78.27234,9.00438],[78.35569,9.06803],[78.37643,9.08846],[78.40326,9.10807],[78.41383,9.11395],[78.45427,9.12527],[78.46754,9.12799],[78.48816,9.12897],[78.50273,9.13387],[78.53216,9.13821],[78.56107,9.13651],[78.57825,9.131],[78.58902,9.13998],[78.60159,9.14657],[78.6155,9.15145],[78.65707,9.15769],[78.65723,9.15882],[78.65127,9.15936],[78.64623,9.16643],[78.64326,9.16788],[78.64221,9.17468],[78.64411,9.18041],[78.64899,9.18744],[78.65003,9.18776],[78.64931,9.18523],[78.6638,9.19362],[78.67887,9.19601],[78.68529,9.1956],[78.70361,9.19109],[78.71726,9.18954],[78.71903,9.1921],[78.71602,9.19758],[78.71653,9.20003],[78.72196,9.20562],[78.7326,9.21189],[78.75446,9.2155],[78.76427,9.22138],[78.79434,9.22996],[78.80559,9.23666],[78.82266,9.23936],[78.84982,9.25154],[78.85611,9.25174],[78.8611,9.2554],[78.86774,9.25398],[78.87488,9.25726],[78.8957,9.25154],[78.91615,9.25878],[78.92202,9.26577],[78.92652,9.26771],[78.94899,9.27249],[78.97893,9.27485],[79.01457,9.27072],[79.05215,9.26344],[79.05759,9.26365],[79.06289,9.26154],[79.07372,9.2624],[79.08072,9.26121],[79.09016,9.26165],[79.11087,9.2662],[79.12708,9.27194],[79.14031,9.27315],[79.14622,9.27707],[79.15465,9.27609],[79.15275,9.27791],[79.17822,9.28176],[79.2092,9.2824],[79.20499,9.27768],[79.20503,9.27348],[79.20655,9.27307],[79.20578,9.27514],[79.20725,9.27497],[79.21847,9.27076],[79.22152,9.26592],[79.22167,9.25871],[79.21983,9.25734],[79.22962,9.25975],[79.25296,9.25978],[79.27292,9.25553],[79.29939,9.24676],[79.33432,9.22897],[79.41635,9.17724],[79.42865,9.16751],[79.43465,9.16148],[79.43506,9.15798],[79.43601,9.15848],[79.43584,9.16417],[79.43093,9.1682],[79.42559,9.1762],[79.41525,9.18512],[79.41644,9.1871],[79.41471,9.18594],[79.38871,9.20839],[79.3736,9.2182],[79.35869,9.23284],[79.33464,9.25208],[79.324,9.26358],[79.31472,9.28119],[79.31599,9.28551],[79.31927,9.28672],[79.32712,9.29534],[79.32714,9.29957],[79.33174,9.3034],[79.33505,9.30933],[79.33416,9.31417],[79.32934,9.3201],[79.31491,9.3271],[79.30992,9.32765],[79.30051,9.32238],[79.29072,9.31987],[79.28151,9.31275],[79.27296,9.30237],[79.27125,9.29628],[79.26593,9.29274],[79.22111,9.29134],[79.21458,9.28467],[79.21119,9.28327],[79.18413,9.28281],[79.17262,9.28473],[79.16078,9.28433],[79.1398,9.29188],[79.13588,9.29095],[79.13223,9.28788],[79.12197,9.29131],[79.10537,9.29099],[79.08664,9.29524],[79.06926,9.29575],[79.03679,9.31518],[79.00903,9.33578],[78.98047,9.36124],[78.93634,9.40828],[78.92363,9.42565],[78.90186,9.46494],[78.89844,9.47642],[78.89834,9.4899],[78.90421,9.49681],[78.9098,9.49851],[78.91279,9.49576],[78.91523,9.49903],[78.91322,9.50551],[78.9202,9.52717],[78.91775,9.53769],[78.92014,9.55923],[78.92163,9.56055],[78.92169,9.5663],[78.92541,9.57921],[78.92515,9.585],[78.93419,9.60319],[78.93364,9.60618],[78.94495,9.61866],[78.95429,9.62434],[78.95748,9.63043],[78.95981,9.63093],[78.95819,9.63702],[78.95927,9.64172],[78.96398,9.64056],[78.96606,9.64746],[78.971,9.6557],[78.97434,9.6761],[78.98036,9.68956],[78.98948,9.69922],[78.99027,9.70365],[79.00019,9.71486],[78.99855,9.71655],[78.99912,9.71842],[79.00041,9.71439],[79.00404,9.71812],[79.00323,9.72533],[79.00475,9.7187],[79.00791,9.72476],[79.015,9.73149],[79.01549,9.74032],[79.01315,9.74484],[79.01597,9.74039],[79.01591,9.73232],[79.02071,9.74141],[79.02621,9.74767],[79.02496,9.75139],[79.02238,9.75282],[79.02535,9.75179],[79.02689,9.74827],[79.03182,9.7548],[79.02987,9.76146],[79.03231,9.7553],[79.04123,9.76625],[79.05862,9.77245],[79.0612,9.7809],[79.07066,9.79427],[79.07696,9.79971],[79.07582,9.81221],[79.0767,9.81358],[79.07736,9.80004],[79.07848,9.79998],[79.08267,9.81555],[79.0939,9.82936],[79.08496,9.83465],[79.08966,9.83408],[79.09425,9.83004],[79.09871,9.83384],[79.09497,9.83822],[79.09922,9.83425],[79.10482,9.83794],[79.09882,9.84332],[79.10026,9.84425],[79.10531,9.83891],[79.10868,9.84226],[79.10913,9.84819],[79.1058,9.85384],[79.10759,9.85176],[79.11206,9.8513],[79.11546,9.84907],[79.11636,9.85139],[79.11018,9.85784],[79.11131,9.85876],[79.11931,9.85278],[79.12083,9.85531],[79.1222,9.8603],[79.11295,9.86023],[79.11678,9.86277],[79.11741,9.87112],[79.11481,9.87343],[79.11745,9.87231],[79.1186,9.87845],[79.11583,9.87955],[79.11774,9.88016],[79.11972,9.87764],[79.12158,9.88051],[79.11858,9.88958],[79.11438,9.88924],[79.11127,9.89284],[79.11465,9.88987],[79.11845,9.89065],[79.12404,9.88356],[79.12594,9.89078],[79.12985,9.89584],[79.12783,9.90242],[79.1255,9.90371],[79.12812,9.90277],[79.13146,9.89707],[79.13465,9.89974],[79.13344,9.90373],[79.1351,9.90037],[79.13968,9.90442],[79.13668,9.90964],[79.13991,9.90468],[79.14701,9.91144],[79.13887,9.92086],[79.14371,9.9187],[79.14527,9.92423],[79.14492,9.91871],[79.15051,9.91964],[79.15338,9.92368],[79.15281,9.92823],[79.1552,9.93152],[79.16893,9.94367],[79.18111,9.95794],[79.19846,9.97329],[79.20526,9.98477],[79.21621,9.99671],[79.21488,10.00005],[79.21658,9.99755],[79.24441,10.02722],[79.26611,10.03923],[79.25568,10.04515],[79.25146,10.04458],[79.25053,10.04212],[79.25106,10.04359],[79.24961,10.04381],[79.25509,10.04543],[79.2483,10.05144],[79.24559,10.05689],[79.2445,10.05723],[79.24478,10.05493],[79.24344,10.05712],[79.23929,10.0578],[79.24526,10.05788],[79.24414,10.06296],[79.23847,10.06252],[79.23821,10.06472],[79.24666,10.06473],[79.25049,10.06757],[79.24807,10.07087],[79.24145,10.07191],[79.23945,10.07013],[79.2371,10.07399],[79.23411,10.07059],[79.23661,10.07374],[79.23417,10.07757],[79.23196,10.07689],[79.23324,10.0787],[79.23169,10.08196],[79.22715,10.07358],[79.2303,10.08295],[79.22758,10.0838],[79.22323,10.08122],[79.2275,10.08442],[79.2304,10.08461],[79.23144,10.08298],[79.22598,10.09929],[79.22893,10.10537],[79.22261,10.10552],[79.22178,10.10844],[79.2191,10.10913],[79.2191,10.1126],[79.22312,10.10601],[79.22846,10.10647],[79.22718,10.10934],[79.22935,10.10746],[79.22727,10.11127],[79.2303,10.11833],[79.22717,10.11912],[79.23067,10.11927],[79.2304,10.12472],[79.23339,10.12711],[79.22699,10.1336],[79.22567,10.14583],[79.22819,10.15229],[79.2388,10.15986],[79.23866,10.16543],[79.23611,10.1716],[79.23901,10.1758],[79.24154,10.18487],[79.24708,10.19191],[79.25178,10.19467],[79.25682,10.19559],[79.25735,10.19699],[79.25998,10.19372],[79.2638,10.19727],[79.26382,10.19995],[79.26508,10.19743],[79.26977,10.20648],[79.27735,10.21329],[79.27869,10.21545],[79.27798,10.22206],[79.27648,10.22391],[79.27673,10.22232],[79.27135,10.22479],[79.26716,10.22867],[79.26827,10.23281],[79.28468,10.25149],[79.29846,10.2633],[79.31555,10.27365],[79.32926,10.28436],[79.33823,10.28751],[79.3528,10.28891],[79.36034,10.29123],[79.37916,10.31348],[79.38807,10.31752],[79.3959,10.31864],[79.40321,10.3172],[79.43202,10.31764],[79.50319,10.31497],[79.51292,10.31314],[79.5336,10.32246],[79.54413,10.32489],[79.54922,10.31781],[79.53207,10.31148],[79.53042,10.3102],[79.53167,10.30843],[79.59553,10.30244],[79.64336,10.29426],[79.65538,10.28989],[79.67269,10.28917],[79.71286,10.27916],[79.73385,10.27612],[79.74061,10.27667],[79.74699,10.27458],[79.74991,10.27479],[79.75265,10.27759],[79.75056,10.27341],[79.76766,10.27181],[79.77825,10.27291],[79.77928,10.27493],[79.77754,10.28462],[79.77456,10.28699],[79.77286,10.29134],[79.76789,10.28863],[79.75599,10.29375],[79.75193,10.29759],[79.75105,10.30051],[79.74873,10.30072],[79.74872,10.31438],[79.76271,10.31314],[79.76421,10.3086],[79.76113,10.31001],[79.76005,10.30821],[79.76708,10.3017],[79.77961,10.2921],[79.78339,10.29606],[79.78312,10.29189],[79.78601,10.28973],[79.78746,10.28129],[79.78351,10.27847],[79.78352,10.27427],[79.78009,10.27247],[79.79969,10.27393],[79.80122,10.27475],[79.80186,10.2785],[79.80213,10.27416],[79.81393,10.27562],[79.81591,10.27765],[79.81006,10.28451],[79.81468,10.28289],[79.81332,10.28874],[79.8192,10.27927],[79.81676,10.27584],[79.86032,10.28241],[79.86848,10.28674],[79.87365,10.29177],[79.87643,10.29602],[79.87485,10.29945],[79.87703,10.29761],[79.88044,10.30469],[79.8814,10.32387],[79.87977,10.3253],[79.87946,10.33159],[79.87119,10.36073],[79.86545,10.40134],[79.86682,10.41705],[79.86289,10.47025],[79.8585,10.47229],[79.86239,10.4717],[79.86264,10.47301],[79.85785,10.54749],[79.85894,10.55184],[79.85805,10.56779],[79.85684,10.57181],[79.85279,10.57568],[79.85467,10.57639],[79.85636,10.57358],[79.85732,10.57449],[79.85356,10.61674],[79.85334,10.67648],[79.84102,10.6763],[79.85008,10.68037],[79.8533,10.67942],[79.85036,10.76341],[79.85082,10.82113],[79.84912,10.8248],[79.8525,10.82721],[79.83107,10.82738],[79.82809,10.84967],[79.82108,10.84556],[79.81943,10.84914],[79.81376,10.84996],[79.80794,10.85562],[79.80749,10.86544],[79.80966,10.86566],[79.8117,10.85965],[79.81797,10.86345],[79.82491,10.86483],[79.82241,10.87424],[79.81111,10.87557],[79.8113,10.88034],[79.82467,10.88039],[79.82855,10.88209],[79.82858,10.88378],[79.81135,10.88844],[79.80711,10.8875],[79.80433,10.89106],[79.80108,10.89009],[79.79979,10.88735],[79.79469,10.88754],[79.79528,10.89085],[79.79036,10.89488],[79.78996,10.89034],[79.78366,10.88848],[79.78211,10.89043],[79.78256,10.89533],[79.79127,10.89596],[79.79386,10.89869],[79.792,10.90024],[79.79136,10.90484],[79.79541,10.90274],[79.78933,10.90844],[79.78213,10.90624],[79.77991,10.90881],[79.77742,10.90895],[79.77707,10.90712],[79.77924,10.90527],[79.7767,10.90541],[79.777,10.89656],[79.76515,10.89628],[79.76529,10.89437],[79.76795,10.89246],[79.75629,10.89176],[79.75586,10.8946],[79.76357,10.89974],[79.76137,10.90175],[79.76175,10.89924],[79.76029,10.90048],[79.75703,10.89647],[79.75789,10.90191],[79.7595,10.90186],[79.75757,10.90786],[79.76302,10.91361],[79.75897,10.91661],[79.7544,10.91622],[79.75377,10.91404],[79.74338,10.91483],[79.74512,10.91613],[79.74558,10.91947],[79.74336,10.91758],[79.74211,10.91819],[79.7438,10.91916],[79.74312,10.92504],[79.73881,10.92346],[79.73952,10.92649],[79.73754,10.92584],[79.73837,10.92486],[79.73556,10.92486],[79.736,10.92761],[79.72508,10.92916],[79.7259,10.93429],[79.72723,10.93527],[79.72959,10.93415],[79.7296,10.93629],[79.7233,10.93518],[79.72743,10.93794],[79.72529,10.9384],[79.72549,10.94118],[79.72407,10.94134],[79.72575,10.94332],[79.73088,10.94441],[79.73218,10.94781],[79.73718,10.94906],[79.7367,10.95743],[79.73358,10.95724],[79.73269,10.95143],[79.72995,10.95089],[79.72085,10.95187],[79.71974,10.95445],[79.72146,10.95417],[79.72151,10.9557],[79.71919,10.95718],[79.72048,10.95798],[79.72103,10.96505],[79.71969,10.96851],[79.7312,10.97052],[79.73528,10.96941],[79.73553,10.9675],[79.73896,10.96729],[79.73952,10.96455],[79.74185,10.96643],[79.74638,10.9651],[79.7461,10.95629],[79.74938,10.95846],[79.75576,10.95841],[79.75887,10.96059],[79.76396,10.95976],[79.7617,10.965],[79.7628,10.96653],[79.76058,10.96809],[79.75945,10.97219],[79.75478,10.97188],[79.75479,10.97517],[79.75284,10.97689],[79.75559,10.97797],[79.75571,10.97951],[79.75845,10.9798],[79.75856,10.98349],[79.7529,10.98287],[79.75261,10.98802],[79.74737,10.9883],[79.74859,10.9979],[79.7468,11.00258],[79.7487,11.00327],[79.75392,11.00254],[79.75646,11.00368],[79.76007,10.99902],[79.76215,11.00135],[79.76669,10.99733],[79.77987,10.9986],[79.77894,10.99686],[79.78359,10.99478],[79.78356,10.99668],[79.78655,10.99724],[79.78904,10.99124],[79.78615,10.99079],[79.78641,10.98961],[79.79393,10.98309],[79.79779,10.98249],[79.79947,10.98285],[79.79908,10.9859],[79.80184,10.98809],[79.80407,10.98697],[79.80383,10.9921],[79.80627,10.99295],[79.80325,10.9952],[79.80427,10.99764],[79.80815,10.99988],[79.81317,10.99915],[79.8155,11.00387],[79.82068,10.99816],[79.823,11.00076],[79.82793,10.99814],[79.82899,11.00179],[79.83195,11.00282],[79.84013,11.0016],[79.83944,10.99584],[79.85153,10.99393],[79.85067,10.98739],[79.85195,10.98384],[79.85382,10.98322],[79.85504,11.01284],[79.85703,11.02602],[79.85565,11.04264],[79.85843,11.12927],[79.85662,11.17135],[79.84849,11.23619],[79.83745,11.28952],[79.83429,11.32174],[79.8365,11.33569],[79.8426,11.35074],[79.84095,11.35285],[79.83219,11.35648],[79.83165,11.36115],[79.82309,11.3785],[79.81844,11.39415],[79.81137,11.43029],[79.80306,11.4538],[79.79636,11.46546],[79.79581,11.46455],[79.79476,11.46623],[79.79518,11.4643],[79.79807,11.45857],[79.79384,11.46232],[79.7909,11.47068],[79.77707,11.48855],[79.77562,11.49402],[79.77923,11.50149],[79.77864,11.50643],[79.7707,11.51371],[79.77721,11.50615],[79.77807,11.50273],[79.77824,11.50152],[79.77464,11.50095],[79.77427,11.50369],[79.77273,11.50107],[79.76793,11.51068],[79.7677,11.51372],[79.77189,11.50589],[79.77381,11.50458],[79.77405,11.50616],[79.77053,11.50978],[79.7629,11.52953],[79.75704,11.55615],[79.75736,11.59527],[79.76065,11.62437],[79.77299,11.6856],[79.78657,11.73366],[79.79586,11.78572],[79.78443,11.78734],[79.78124,11.7843],[79.78049,11.78111],[79.77194,11.78218],[79.77022,11.78342],[79.77066,11.78951],[79.76886,11.78912],[79.76882,11.79073],[79.76591,11.79183],[79.762,11.79079],[79.76096,11.78694],[79.7576,11.78345],[79.7551,11.77523],[79.74978,11.77609],[79.74027,11.78089],[79.7319,11.78076],[79.72618,11.78252],[79.72186,11.78686],[79.71988,11.78495],[79.71236,11.79151],[79.71391,11.7963],[79.71702,11.79755],[79.72282,11.79649],[79.72312,11.80285],[79.7253,11.80315],[79.72452,11.81044],[79.73572,11.80932],[79.73479,11.81685],[79.73301,11.81813],[79.73166,11.8244],[79.73239,11.8334],[79.72945,11.83696],[79.73821,11.83692],[79.73673,11.84421],[79.76443,11.83373],[79.76499,11.82412],[79.77013,11.82259],[79.77304,11.82267],[79.77332,11.82638],[79.77838,11.83171],[79.78649,11.83099],[79.79236,11.82755],[79.7958,11.8285],[79.79507,11.82569],[79.79754,11.82456],[79.8007,11.83064],[79.79868,11.8333],[79.79364,11.83235],[79.79384,11.83355],[79.79814,11.83465],[79.79829,11.8387],[79.80225,11.83389],[79.80706,11.83354],[79.80783,11.83658],[79.80656,11.83708],[79.80616,11.84167],[79.80821,11.84526],[79.80067,11.85527],[79.78228,11.85588],[79.78016,11.84811],[79.77672,11.8452],[79.77588,11.83841],[79.77244,11.83662],[79.76819,11.8388],[79.76548,11.84168],[79.76433,11.84687],[79.76217,11.84839],[79.7632,11.85183],[79.76513,11.85194],[79.76696,11.858],[79.7695,11.85827],[79.77088,11.86133],[79.76928,11.86507],[79.77009,11.87461],[79.76853,11.87593],[79.76453,11.87545],[79.76399,11.87697],[79.75743,11.87607],[79.75868,11.86847],[79.75387,11.86593],[79.7541,11.85106],[79.75189,11.84835],[79.74311,11.84832],[79.7436,11.85857],[79.74195,11.8628],[79.73937,11.8647],[79.73269,11.86562],[79.73259,11.86256],[79.72112,11.8625],[79.7189,11.85329],[79.71343,11.86067],[79.71271,11.86665],[79.70826,11.86909],[79.71,11.88921],[79.69961,11.88911],[79.69686,11.88858],[79.69658,11.88667],[79.68654,11.88647],[79.68468,11.88585],[79.68506,11.88098],[79.674,11.8807],[79.67385,11.89161],[79.68282,11.89197],[79.68263,11.88878],[79.68684,11.88889],[79.68716,11.89454],[79.69539,11.89479],[79.69574,11.90241],[79.69762,11.90243],[79.6979,11.90473],[79.69776,11.9076],[79.6956,11.90789],[79.6962,11.91917],[79.71866,11.91904],[79.71795,11.91336],[79.7066,11.91362],[79.70661,11.90519],[79.70895,11.90431],[79.70854,11.90158],[79.70606,11.89936],[79.70528,11.89392],[79.70943,11.893],[79.71119,11.89071],[79.71689,11.89279],[79.71883,11.89043],[79.72373,11.88861],[79.72499,11.88929],[79.72282,11.89172],[79.72888,11.89021],[79.7305,11.89173],[79.73131,11.90321],[79.7407,11.90544],[79.73221,11.91371],[79.72552,11.92316],[79.71753,11.92899],[79.72089,11.9449],[79.70968,11.94996],[79.70792,11.94666],[79.70795,11.94193],[79.71122,11.93307],[79.70662,11.93517],[79.70429,11.94017],[79.69731,11.94175],[79.69576,11.9477],[79.69166,11.95132],[79.69569,11.96392],[79.69797,11.96049],[79.70368,11.96547],[79.7026,11.96702],[79.71021,11.96578],[79.71082,11.96728],[79.71503,11.96764],[79.71602,11.97106],[79.70927,11.97581],[79.71242,11.98655],[79.7159,11.98484],[79.72057,11.99274],[79.73343,11.99326],[79.73479,11.99747],[79.7375,11.99848],[79.73768,12.00095],[79.74132,12.00122],[79.74152,12.00394],[79.74373,12.00364],[79.7465,12.00768],[79.76237,12.00269],[79.76207,11.99312],[79.76042,11.9892],[79.75552,11.98829],[79.75191,11.98427],[79.74812,11.98475],[79.74195,11.97767],[79.73199,11.98148],[79.72958,11.98468],[79.73041,11.98594],[79.72648,11.98576],[79.7235,11.97705],[79.72452,11.97123],[79.74453,11.96496],[79.7487,11.94399],[79.75027,11.91991],[79.75628,11.92039],[79.75508,11.92601],[79.75726,11.92817],[79.7622,11.92854],[79.75994,11.9436],[79.77153,11.94389],[79.77677,11.9537],[79.77947,11.95356],[79.78085,11.95653],[79.78348,11.95626],[79.78472,11.95986],[79.79173,11.95938],[79.80507,11.95326],[79.80648,11.96802],[79.8126,11.97789],[79.8163,11.97903],[79.8185,11.97789],[79.82235,11.96577],[79.82885,11.95833],[79.84064,11.95579],[79.8568,12.00605],[79.8409,12.01281],[79.84397,12.02419],[79.84443,12.0361],[79.84977,12.05131],[79.8685,12.04517],[79.87365,12.04203],[79.87898,12.05449],[79.89671,12.08346],[79.9744,12.2011],[80.01242,12.26271],[80.0151,12.26482],[80.02182,12.2809],[80.03425,12.30175],[80.06983,12.35008],[80.11337,12.40194],[80.15042,12.45442],[80.1558,12.46494],[80.15825,12.47329],[80.16203,12.50823],[80.16132,12.51219],[80.16633,12.52969],[80.18546,12.57432],[80.18681,12.58713],[80.19185,12.60141],[80.19779,12.61485],[80.20072,12.61714],[80.19865,12.62102],[80.19914,12.6253],[80.20833,12.65081],[80.20833,12.65455],[80.2098,12.65402],[80.21227,12.66032],[80.24485,12.74962],[80.25515,12.7827],[80.25457,12.78957],[80.25215,12.79023],[80.24999,12.79431],[80.24824,12.80895],[80.24912,12.8567],[80.2594,12.93455],[80.27209,12.997],[80.27805,13.01622],[80.28106,13.03962],[80.28679,13.06436],[80.29381,13.07943],[80.30092,13.09007],[80.30232,13.09002],[80.30467,13.10023],[80.31079,13.10816],[80.30477,13.1012],[80.3038,13.10259],[80.30207,13.09835],[80.30311,13.09466],[80.30077,13.09118],[80.29488,13.093],[80.29691,13.09926],[80.29969,13.099],[80.29974,13.09761],[80.30173,13.09867],[80.29827,13.10181],[80.30148,13.11208],[80.30353,13.10994],[80.30339,13.10606],[80.30497,13.11007],[80.30042,13.12141],[80.30553,13.13039],[80.29961,13.12293],[80.29686,13.12393],[80.29915,13.12906],[80.29763,13.13004],[80.29784,13.13271],[80.30108,13.13221],[80.30329,13.12939],[80.30423,13.13039],[80.30272,13.13367],[80.29804,13.13475],[80.29844,13.13749],[80.31278,13.16745],[80.31234,13.17053],[80.32008,13.19069],[80.32931,13.22472],[80.33343,13.23483],[80.33188,13.23471],[80.33188,13.23617],[80.33462,13.23863],[80.33824,13.26201],[80.34527,13.27989],[80.34655,13.31327],[80.33975,13.35949],[80.32959,13.40381],[80.32602,13.44168],[80.31709,13.45696],[80.30642,13.46771],[80.30364,13.47313]],[[79.69112,12.03244],[79.69153,12.03467],[79.69396,12.03481],[79.69521,12.03313],[79.70359,12.03142],[79.70441,12.02704],[79.7016,12.01383],[79.70305,12.00815],[79.71513,12.00025],[79.71538,11.99825],[79.71756,11.99782],[79.71802,11.99295],[79.71961,11.99222],[79.71786,11.9923],[79.71799,11.99042],[79.71464,11.99068],[79.7056,11.99461],[79.70232,11.99418],[79.70144,11.99188],[79.69472,11.99199],[79.69356,11.98997],[79.68547,11.99164],[79.68093,11.98341],[79.67803,11.98625],[79.6739,11.9951],[79.66252,11.98952],[79.65702,11.99139],[79.65762,12.00516],[79.65977,12.01062],[79.66163,12.0123],[79.67132,12.01006],[79.67548,12.02137],[79.68342,12.02161],[79.68507,12.0264],[79.68977,12.02785],[79.69112,12.03244]],[[79.79461,12.01683],[79.78911,12.01823],[79.78998,12.02333],[79.7888,12.02638],[79.80434,12.02586],[79.80567,12.02449],[79.80505,12.021],[79.80186,12.01707],[79.79461,12.01683]],[[79.63838,11.98618],[79.63644,11.97785],[79.64032,11.97627],[79.64131,11.97053],[79.64852,11.96759],[79.64731,11.95343],[79.64223,11.95399],[79.64265,11.9421],[79.64721,11.94459],[79.65202,11.94357],[79.65289,11.94823],[79.65748,11.94805],[79.65654,11.94702],[79.65865,11.94461],[79.65862,11.94197],[79.66041,11.94155],[79.66067,11.93716],[79.66426,11.93698],[79.66418,11.93834],[79.66933,11.93751],[79.6707,11.93158],[79.66887,11.91827],[79.66267,11.91819],[79.66258,11.91645],[79.66103,11.91631],[79.66267,11.9131],[79.65605,11.91293],[79.65588,11.9079],[79.64111,11.90778],[79.64071,11.9022],[79.63209,11.90126],[79.62532,11.90303],[79.62796,11.92059],[79.61849,11.92606],[79.61886,11.94332],[79.62475,11.94313],[79.6284,11.94514],[79.62876,11.9596],[79.6266,11.96427],[79.62749,11.96815],[79.61861,11.96995],[79.62457,11.97601],[79.62437,11.98179],[79.62085,11.98238],[79.62082,11.98394],[79.61797,11.98498],[79.61718,11.98955],[79.62361,11.98932],[79.62445,11.99208],[79.62632,12.00036],[79.61968,12.00042],[79.61929,12.00483],[79.62071,12.01353],[79.62583,12.01539],[79.62905,12.0188],[79.6251,12.03129],[79.62817,12.03226],[79.63526,12.02942],[79.6375,12.02654],[79.63983,12.02783],[79.64471,12.02706],[79.651,12.02181],[79.64779,12.01875],[79.64531,12.00471],[79.64389,12.00517],[79.64231,11.99923],[79.63645,11.99809],[79.63617,11.9958],[79.64148,11.99163],[79.63838,11.98618]],[[79.6784,11.97183],[79.68651,11.97325],[79.68785,11.9696],[79.68389,11.96041],[79.68341,11.95522],[79.68466,11.95335],[79.67322,11.94787],[79.6641,11.95086],[79.65878,11.95007],[79.65823,11.95251],[79.65464,11.95349],[79.65281,11.95786],[79.65379,11.96067],[79.66002,11.95839],[79.66052,11.96258],[79.66198,11.96277],[79.6622,11.96917],[79.67667,11.96811],[79.6784,11.97183]],[[79.61711,11.88341],[79.62122,11.8906],[79.62496,11.8908],[79.62491,11.88925],[79.62978,11.88868],[79.62989,11.88129],[79.6345,11.88104],[79.6347,11.88876],[79.64116,11.88663],[79.64052,11.88059],[79.64839,11.88045],[79.64858,11.87053],[79.65775,11.87009],[79.65928,11.86773],[79.66273,11.86725],[79.66342,11.86125],[79.66165,11.86118],[79.65789,11.85266],[79.64713,11.85016],[79.62634,11.85467],[79.62846,11.8698],[79.61915,11.87019],[79.61951,11.86269],[79.61223,11.86263],[79.61066,11.86002],[79.602,11.85786],[79.60315,11.86875],[79.60007,11.87584],[79.59941,11.88301],[79.60459,11.88135],[79.60815,11.87686],[79.61711,11.88341]],[[79.6994,11.87423],[79.69907,11.86129],[79.696,11.86035],[79.69723,11.87408],[79.6994,11.87423]],[[79.64732,11.84422],[79.66178,11.83942],[79.65946,11.8294],[79.6634,11.82529],[79.67131,11.82365],[79.67129,11.81488],[79.66519,11.815],[79.66342,11.81306],[79.65965,11.81287],[79.64634,11.81624],[79.64708,11.81968],[79.64095,11.82337],[79.64324,11.82608],[79.64732,11.84422]],[[79.69711,11.82307],[79.702,11.82291],[79.70423,11.81347],[79.69299,11.81374],[79.69459,11.82304],[79.69711,11.82307]],[[79.68313,11.81311],[79.68813,11.81224],[79.69057,11.807],[79.68966,11.80214],[79.68393,11.80217],[79.68142,11.79624],[79.67458,11.80354],[79.67468,11.80586],[79.67593,11.8143],[79.68313,11.81311]],[[79.72192,10.93518],[79.72045,10.93724],[79.72247,10.93827],[79.72192,10.93518]],[[79.80716,10.87756],[79.80605,10.87964],[79.80976,10.88042],[79.81003,10.87837],[79.80716,10.87756]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-TR","area_level":"State","area_name":"Tripura","geometry_source":"SOI_States","same_as":"LGD/16/State"},"geometry":{"type":"Polygon","coordinates":[[[92.17093,24.53064],[92.16569,24.53141],[92.1657,24.5291],[92.16188,24.52749],[92.15979,24.52932],[92.15882,24.52746],[92.16019,24.52532],[92.1586,24.5232],[92.15496,24.52297],[92.15776,24.52188],[92.15543,24.51803],[92.1582,24.51517],[92.157,24.51249],[92.15612,24.51362],[92.15348,24.51202],[92.15911,24.50717],[92.15231,24.50227],[92.15389,24.49984],[92.15184,24.49944],[92.1505,24.49522],[92.15369,24.49164],[92.15129,24.49115],[92.15195,24.48722],[92.15359,24.48724],[92.1527,24.48147],[92.15724,24.47407],[92.15427,24.47209],[92.15542,24.46967],[92.1582,24.4696],[92.1582,24.46751],[92.15649,24.46858],[92.15561,24.46567],[92.15797,24.46629],[92.15841,24.46378],[92.16043,24.46298],[92.15808,24.45965],[92.16116,24.45873],[92.15955,24.45326],[92.16167,24.45264],[92.1624,24.45093],[92.16101,24.44872],[92.16444,24.44463],[92.16447,24.44077],[92.1626,24.4399],[92.16442,24.43884],[92.16389,24.43657],[92.16632,24.43678],[92.16745,24.43455],[92.166,24.43329],[92.16709,24.43138],[92.16601,24.42812],[92.16913,24.42777],[92.16751,24.42711],[92.16651,24.42168],[92.16396,24.41836],[92.15991,24.42122],[92.16041,24.42252],[92.15642,24.42263],[92.15369,24.42557],[92.14775,24.42104],[92.14545,24.42337],[92.14411,24.42208],[92.1368,24.42496],[92.13669,24.42006],[92.13335,24.41694],[92.13284,24.41434],[92.13262,24.411],[92.1345,24.41008],[92.13516,24.40716],[92.13159,24.40665],[92.12738,24.40165],[92.12846,24.40009],[92.12699,24.39979],[92.12643,24.3968],[92.12257,24.39594],[92.11891,24.39],[92.12078,24.3895],[92.1192,24.38859],[92.12197,24.38703],[92.12287,24.3851],[92.12176,24.38478],[92.12365,24.38468],[92.12135,24.38355],[92.1219,24.38224],[92.1206,24.3834],[92.12045,24.38135],[92.11795,24.38227],[92.11806,24.38054],[92.11333,24.38224],[92.11358,24.3807],[92.11037,24.37981],[92.10743,24.38201],[92.10426,24.38105],[92.10231,24.38295],[92.1001,24.38064],[92.10161,24.37893],[92.10016,24.37585],[92.09742,24.37631],[92.09623,24.37277],[92.09042,24.37162],[92.08626,24.37327],[92.08527,24.37559],[92.04943,24.37541],[92.0483,24.37757],[92.04403,24.37487],[92.0431,24.37749],[92.03846,24.37702],[92.03583,24.38011],[92.03355,24.37864],[92.02686,24.37964],[92.02479,24.3835],[92.02154,24.38332],[92.02362,24.38563],[92.02007,24.38654],[92.00711,24.3815],[92.00445,24.3836],[92.00556,24.38563],[92.00458,24.38751],[91.99644,24.39367],[91.99477,24.39214],[91.99623,24.3906],[91.99501,24.38808],[91.98962,24.39015],[91.99197,24.38917],[91.99209,24.38758],[91.98833,24.38402],[91.98833,24.37908],[91.98579,24.37689],[91.98355,24.37723],[91.98171,24.38101],[91.97199,24.38475],[91.96692,24.37977],[91.96767,24.37868],[91.97226,24.37953],[91.97273,24.37702],[91.96999,24.37474],[91.97384,24.37069],[91.97753,24.37273],[91.97897,24.36958],[91.97829,24.36673],[91.98465,24.36086],[91.9819,24.35902],[91.97964,24.36046],[91.97812,24.35739],[91.986,24.34989],[91.98929,24.34362],[91.99213,24.34337],[91.9931,24.33984],[91.9972,24.33681],[91.99832,24.33174],[91.99501,24.33143],[91.99595,24.32205],[91.99038,24.32393],[91.98558,24.32221],[91.98227,24.32388],[91.98061,24.32835],[91.97714,24.32742],[91.973,24.33389],[91.97105,24.34295],[91.96589,24.34683],[91.969,24.35015],[91.96433,24.35031],[91.9568,24.35663],[91.95016,24.35085],[91.9463,24.35067],[91.9461,24.34836],[91.94338,24.34891],[91.94133,24.34255],[91.93846,24.34323],[91.93491,24.33969],[91.93228,24.34124],[91.92402,24.33592],[91.92193,24.3356],[91.91999,24.33746],[91.94082,24.26809],[91.91139,24.16813],[91.91527,24.16657],[91.9114,24.16402],[91.91395,24.16228],[91.91255,24.1608],[91.91421,24.15941],[91.91305,24.1556],[91.91421,24.15516],[91.9128,24.15451],[91.91454,24.15361],[91.91139,24.15358],[91.91101,24.15212],[91.91306,24.15149],[91.9097,24.15061],[91.91129,24.14901],[91.91021,24.1463],[91.90584,24.14438],[91.90575,24.1386],[91.90214,24.13688],[91.89581,24.13924],[91.89039,24.1365],[91.88901,24.13885],[91.88463,24.1386],[91.88443,24.14256],[91.88207,24.14347],[91.88123,24.14581],[91.87865,24.1462],[91.87782,24.15021],[91.87908,24.15149],[91.87521,24.1551],[91.87731,24.15769],[91.87669,24.16146],[91.87463,24.16143],[91.87519,24.16267],[91.87379,24.16317],[91.87497,24.16631],[91.87338,24.16787],[91.87413,24.16956],[91.87634,24.16972],[91.87554,24.17123],[91.87351,24.17099],[91.87399,24.17447],[91.87151,24.17454],[91.86941,24.17718],[91.86617,24.17648],[91.86515,24.18004],[91.86117,24.1813],[91.86102,24.18286],[91.85917,24.18061],[91.857,24.18224],[91.85563,24.18144],[91.85577,24.18315],[91.85339,24.18335],[91.85512,24.18695],[91.85278,24.18979],[91.84544,24.19138],[91.84719,24.19311],[91.84483,24.19557],[91.84527,24.19736],[91.84399,24.19674],[91.84422,24.19972],[91.84196,24.20134],[91.84399,24.202],[91.84606,24.20059],[91.84916,24.20366],[91.84924,24.20838],[91.85213,24.20862],[91.84983,24.21275],[91.85518,24.21239],[91.85104,24.21666],[91.84864,24.216],[91.84765,24.21783],[91.84569,24.21747],[91.84952,24.2199],[91.84931,24.22118],[91.84307,24.22022],[91.84295,24.22287],[91.84611,24.22417],[91.84471,24.22577],[91.83701,24.22556],[91.83788,24.21875],[91.83123,24.21817],[91.82925,24.21315],[91.82645,24.21361],[91.82372,24.21001],[91.81636,24.20994],[91.8153,24.21203],[91.81254,24.21198],[91.81048,24.21757],[91.80592,24.2187],[91.80708,24.21892],[91.80623,24.22068],[91.80236,24.21934],[91.79879,24.22075],[91.79792,24.21952],[91.79432,24.21953],[91.79388,24.2209],[91.79146,24.21977],[91.74503,24.24697],[91.75937,24.14153],[91.75172,24.14261],[91.7463,24.14114],[91.7448,24.14305],[91.74361,24.14105],[91.74129,24.14281],[91.73952,24.14149],[91.7367,24.14586],[91.73428,24.14365],[91.73244,24.14572],[91.73107,24.14359],[91.72842,24.14324],[91.72675,24.14654],[91.72332,24.14835],[91.72176,24.15248],[91.71679,24.15199],[91.71441,24.15378],[91.7061,24.15428],[91.70641,24.15775],[91.70335,24.16354],[91.69742,24.16365],[91.69496,24.15953],[91.68828,24.16209],[91.68882,24.16417],[91.68444,24.16616],[91.68194,24.17219],[91.68257,24.17414],[91.68018,24.17561],[91.68142,24.17662],[91.68002,24.17663],[91.68117,24.17765],[91.67992,24.17902],[91.68085,24.18397],[91.67887,24.18753],[91.6806,24.18905],[91.67961,24.19347],[91.67731,24.19428],[91.67798,24.19675],[91.6757,24.19775],[91.6767,24.20061],[91.67394,24.2011],[91.67478,24.20205],[91.67276,24.20239],[91.6734,24.20368],[91.67163,24.20443],[91.66968,24.209],[91.66698,24.21052],[91.66789,24.21655],[91.66597,24.2171],[91.66725,24.2183],[91.66804,24.23102],[91.66516,24.23353],[91.66421,24.22909],[91.66279,24.23011],[91.65854,24.22823],[91.65236,24.21956],[91.65078,24.21839],[91.64977,24.22047],[91.64775,24.21849],[91.64892,24.21719],[91.64721,24.2152],[91.65241,24.20943],[91.65115,24.20882],[91.65265,24.20356],[91.65453,24.20252],[91.65311,24.20169],[91.65413,24.19845],[91.65276,24.19819],[91.65259,24.19593],[91.6591,24.19537],[91.65756,24.19318],[91.66013,24.18954],[91.65747,24.18474],[91.65896,24.18306],[91.65687,24.18054],[91.65775,24.17955],[91.65629,24.17615],[91.64676,24.17862],[91.64424,24.1706],[91.64661,24.15663],[91.63445,24.13806],[91.63852,24.1296],[91.6412,24.11308],[91.63955,24.1085],[91.63678,24.10654],[91.63793,24.10292],[91.63526,24.10105],[91.63422,24.1022],[91.63188,24.09985],[91.62925,24.10147],[91.62701,24.09883],[91.62579,24.09928],[91.62492,24.09657],[91.62268,24.0972],[91.62148,24.09521],[91.61982,24.09668],[91.61706,24.09429],[91.61579,24.09544],[91.61141,24.09169],[91.6038,24.09408],[91.60474,24.09579],[91.6029,24.09534],[91.60262,24.09662],[91.60038,24.09529],[91.59925,24.09712],[91.59738,24.09586],[91.59454,24.09653],[91.59538,24.09329],[91.59129,24.09261],[91.59306,24.0892],[91.59845,24.08664],[91.5985,24.08448],[91.59391,24.08265],[91.59189,24.0783],[91.59241,24.0756],[91.58741,24.07488],[91.58607,24.0726],[91.58234,24.07339],[91.57445,24.07998],[91.57297,24.07908],[91.5729,24.07473],[91.55733,24.07683],[91.5453,24.0742],[91.54425,24.07594],[91.50865,24.08641],[91.49766,24.08728],[91.49248,24.09088],[91.49497,24.09555],[91.49177,24.0971],[91.48735,24.09525],[91.48286,24.0978],[91.4781,24.09803],[91.47581,24.10048],[91.4735,24.09978],[91.47316,24.10175],[91.4713,24.09878],[91.46547,24.09863],[91.46254,24.09607],[91.45842,24.09757],[91.45483,24.09656],[91.45427,24.09866],[91.45206,24.09829],[91.44959,24.10147],[91.44304,24.09724],[91.44055,24.10251],[91.43077,24.09993],[91.42999,24.10199],[91.42858,24.10179],[91.42941,24.10425],[91.42809,24.10845],[91.42563,24.10688],[91.41263,24.10993],[91.40378,24.10907],[91.40136,24.10967],[91.40152,24.1115],[91.38721,24.10721],[91.37461,24.10777],[91.37713,24.07984],[91.3966,24.04962],[91.39645,24.04233],[91.39086,24.02578],[91.37334,24.00265],[91.37497,24.00218],[91.37379,23.99757],[91.37544,23.99773],[91.37502,23.99592],[91.37658,23.99662],[91.37623,23.99513],[91.37425,23.99496],[91.37666,23.99265],[91.37831,23.99299],[91.37903,23.99104],[91.37677,23.99059],[91.37851,23.98857],[91.37658,23.9883],[91.3762,23.98671],[91.378,23.98542],[91.37737,23.98266],[91.38015,23.98247],[91.37775,23.98012],[91.37966,23.97901],[91.37953,23.97533],[91.37363,23.97523],[91.36277,23.98315],[91.36166,23.98626],[91.3528,23.98169],[91.34754,23.98421],[91.34122,23.98199],[91.33741,23.98441],[91.33381,23.99063],[91.33006,23.99247],[91.3269,23.99154],[91.3236,23.99448],[91.31493,23.99041],[91.3052,23.99525],[91.30401,23.99801],[91.30146,23.99374],[91.30357,23.98783],[91.29732,23.9763],[91.29979,23.97212],[91.29042,23.96776],[91.28768,23.96801],[91.28775,23.9739],[91.28468,23.97727],[91.28625,23.98193],[91.28469,23.9821],[91.27152,23.9629],[91.26423,23.94422],[91.27291,23.93764],[91.27621,23.92253],[91.27172,23.92465],[91.26395,23.92498],[91.26177,23.92356],[91.25171,23.92607],[91.23302,23.92696],[91.24144,23.92269],[91.24618,23.91308],[91.24483,23.90694],[91.22847,23.89863],[91.22962,23.88059],[91.23183,23.87811],[91.23579,23.87753],[91.24087,23.8617],[91.24889,23.85081],[91.25409,23.83719],[91.24287,23.82296],[91.23757,23.8136],[91.23376,23.81083],[91.23161,23.79818],[91.22664,23.79156],[91.22852,23.78879],[91.22837,23.78557],[91.23053,23.7844],[91.23068,23.76492],[91.22522,23.75653],[91.22636,23.75114],[91.22247,23.74569],[91.21903,23.73643],[91.21776,23.73987],[91.21196,23.74461],[91.21037,23.74916],[91.19663,23.75109],[91.18621,23.75067],[91.183,23.74883],[91.16764,23.74964],[91.15884,23.74165],[91.15708,23.74202],[91.15643,23.73978],[91.15808,23.73926],[91.1492,23.71153],[91.15161,23.70545],[91.15424,23.68839],[91.19382,23.6899],[91.19552,23.69214],[91.20367,23.6854],[91.20853,23.6864],[91.20328,23.68011],[91.20499,23.67975],[91.20238,23.66289],[91.20368,23.65827],[91.20148,23.65597],[91.20501,23.65499],[91.20513,23.65389],[91.2025,23.65391],[91.20459,23.6504],[91.19969,23.64969],[91.19942,23.64658],[91.19073,23.64695],[91.19295,23.65443],[91.18506,23.65664],[91.18286,23.65966],[91.18194,23.65638],[91.17777,23.65854],[91.17651,23.65764],[91.17604,23.65959],[91.17383,23.65635],[91.17039,23.65754],[91.16646,23.66348],[91.16125,23.66385],[91.16152,23.66707],[91.1563,23.67072],[91.16137,23.65431],[91.1587,23.64136],[91.16101,23.63123],[91.15871,23.62893],[91.15814,23.62178],[91.16103,23.61393],[91.15968,23.61129],[91.16375,23.60104],[91.16217,23.59868],[91.1625,23.59504],[91.16875,23.59259],[91.17713,23.5932],[91.17809,23.59175],[91.17527,23.58551],[91.1873,23.57753],[91.18727,23.57314],[91.19515,23.56248],[91.19445,23.54718],[91.19903,23.54733],[91.20199,23.55006],[91.20534,23.54526],[91.20747,23.54536],[91.21047,23.54654],[91.20976,23.54852],[91.21295,23.55041],[91.21301,23.54511],[91.20816,23.54304],[91.20076,23.52002],[91.20784,23.51205],[91.2236,23.51402],[91.21798,23.4995],[91.22346,23.49731],[91.23557,23.50179],[91.23444,23.49614],[91.23723,23.49512],[91.23638,23.48899],[91.24934,23.49017],[91.25224,23.48101],[91.25082,23.46433],[91.25341,23.4614],[91.2535,23.45801],[91.25155,23.45364],[91.25578,23.44736],[91.25646,23.44155],[91.27065,23.4298],[91.26343,23.42372],[91.27644,23.4147],[91.27975,23.3766],[91.28515,23.37701],[91.28854,23.37538],[91.29214,23.37811],[91.29433,23.37468],[91.29375,23.37125],[91.28424,23.37108],[91.28616,23.36309],[91.2949,23.36119],[91.29107,23.35066],[91.30108,23.35159],[91.3149,23.36093],[91.32009,23.36009],[91.31801,23.35297],[91.31261,23.35391],[91.31105,23.35266],[91.31079,23.34238],[91.30512,23.34339],[91.29617,23.34089],[91.28985,23.31852],[91.29624,23.3134],[91.30953,23.31385],[91.31316,23.3063],[91.31496,23.29661],[91.30721,23.29978],[91.30022,23.29245],[91.30234,23.28634],[91.31667,23.28188],[91.31578,23.27943],[91.30979,23.27637],[91.31802,23.25289],[91.32661,23.25229],[91.3255,23.24714],[91.3187,23.24549],[91.31893,23.23985],[91.32365,23.23745],[91.32473,23.16863],[91.32333,23.15801],[91.33312,23.15285],[91.33709,23.13105],[91.34173,23.12874],[91.34187,23.1178],[91.34763,23.11879],[91.34696,23.1023],[91.36979,23.07037],[91.39585,23.05604],[91.39876,23.05651],[91.39924,23.05841],[91.40631,23.05898],[91.41163,23.06231],[91.416,23.06265],[91.41724,23.06497],[91.41087,23.06624],[91.4132,23.06949],[91.41356,23.07587],[91.41617,23.07665],[91.41747,23.08288],[91.40812,23.08346],[91.40523,23.08698],[91.40607,23.09692],[91.40026,23.09642],[91.40342,23.11372],[91.39697,23.11768],[91.3973,23.13014],[91.39203,23.13944],[91.38928,23.15263],[91.38477,23.15615],[91.3852,23.17521],[91.38188,23.17501],[91.38299,23.18448],[91.3799,23.18451],[91.38098,23.19159],[91.38554,23.19184],[91.38776,23.20789],[91.38077,23.20843],[91.38832,23.21467],[91.39213,23.22003],[91.38647,23.22756],[91.40091,23.22911],[91.40025,23.23508],[91.39841,23.23589],[91.39711,23.24115],[91.39255,23.24589],[91.40874,23.24762],[91.40067,23.2561],[91.3973,23.25625],[91.39756,23.26512],[91.40039,23.26571],[91.40559,23.25659],[91.41132,23.25566],[91.40894,23.28519],[91.41374,23.28136],[91.41563,23.28275],[91.41559,23.27927],[91.41775,23.27722],[91.41657,23.27561],[91.41781,23.2762],[91.41964,23.27326],[91.41816,23.26959],[91.41592,23.26948],[91.41742,23.26448],[91.41538,23.26334],[91.41869,23.25831],[91.41831,23.25539],[91.42116,23.26177],[91.42475,23.25964],[91.42489,23.25802],[91.43139,23.26245],[91.44867,23.25985],[91.45421,23.26037],[91.45541,23.25643],[91.44943,23.25196],[91.44873,23.24976],[91.44598,23.25003],[91.44524,23.24707],[91.44717,23.24747],[91.44706,23.24377],[91.45791,23.24599],[91.47027,23.22763],[91.45329,23.22317],[91.45061,23.21941],[91.45825,23.21564],[91.45862,23.21328],[91.47541,23.22036],[91.48443,23.20918],[91.48257,23.19907],[91.47076,23.19642],[91.48493,23.18821],[91.48845,23.19213],[91.4922,23.18881],[91.50323,23.19208],[91.50428,23.18929],[91.5011,23.18527],[91.50754,23.18368],[91.50673,23.17992],[91.49739,23.17978],[91.49174,23.17756],[91.49236,23.17194],[91.49826,23.17165],[91.4948,23.16195],[91.49088,23.1576],[91.49428,23.15221],[91.50722,23.15424],[91.49474,23.14708],[91.49897,23.14378],[91.49873,23.14247],[91.50164,23.14305],[91.50455,23.14031],[91.50819,23.13965],[91.51002,23.14037],[91.50981,23.14319],[91.51532,23.14499],[91.51487,23.13856],[91.50315,23.13049],[91.50381,23.12723],[91.51764,23.12542],[91.51426,23.12255],[91.51542,23.11763],[91.51924,23.11774],[91.52042,23.11443],[91.5123,23.11322],[91.51132,23.10419],[91.52236,23.104],[91.51895,23.09415],[91.52983,23.09166],[91.52998,23.08573],[91.52513,23.08281],[91.53534,23.06331],[91.52584,23.05997],[91.52496,23.05535],[91.53628,23.05451],[91.53049,23.03831],[91.55036,23.03841],[91.53842,23.01919],[91.54822,23.01924],[91.54249,22.99946],[91.54752,22.99418],[91.55704,22.9966],[91.55722,22.97846],[91.57506,22.96864],[91.57676,22.96522],[91.59063,22.97689],[91.59306,22.97263],[91.59923,22.97594],[91.60141,22.9713],[91.6061,22.97191],[91.60563,22.96531],[91.61188,22.96235],[91.6138,22.95837],[91.61233,22.95773],[91.60554,22.96236],[91.60189,22.95891],[91.60017,22.9547],[91.60244,22.95322],[91.60844,22.95721],[91.6096,22.95611],[91.60711,22.95004],[91.61348,22.95238],[91.61584,22.95147],[91.61646,22.94912],[91.61299,22.94957],[91.61272,22.94699],[91.61695,22.94401],[91.61795,22.93853],[91.6203,22.93854],[91.62554,22.94402],[91.62349,22.94939],[91.62701,22.95566],[91.62456,22.96157],[91.62631,22.96219],[91.63095,22.95896],[91.63562,22.96108],[91.6405,22.97033],[91.64081,22.97489],[91.6457,22.97655],[91.64546,22.98502],[91.65003,22.98249],[91.65154,22.97672],[91.65808,22.97811],[91.65632,22.98064],[91.6577,22.98173],[91.66192,22.97916],[91.6646,22.98165],[91.67086,22.97705],[91.67805,22.98077],[91.68177,22.97725],[91.69099,22.98326],[91.69369,22.98829],[91.70326,22.98825],[91.70884,22.98186],[91.71164,22.98358],[91.7121,22.98892],[91.717,22.98665],[91.72062,22.98742],[91.72606,22.99889],[91.74391,23.00643],[91.74536,23.01103],[91.75336,23.02208],[91.76148,23.0262],[91.76109,23.02986],[91.76819,23.03423],[91.77192,23.03303],[91.76773,23.0394],[91.76854,23.04093],[91.77147,23.04129],[91.77441,23.03848],[91.77283,23.03169],[91.77431,23.02708],[91.78061,23.02909],[91.77893,23.03648],[91.7817,23.03391],[91.78413,23.03793],[91.78198,23.04481],[91.78247,23.04842],[91.77729,23.05603],[91.77943,23.05992],[91.77359,23.06631],[91.77452,23.06962],[91.78478,23.07149],[91.78603,23.06822],[91.78896,23.0672],[91.7881,23.07009],[91.78954,23.07167],[91.78982,23.06873],[91.79371,23.06902],[91.79581,23.0673],[91.79356,23.06482],[91.79409,23.06228],[91.79924,23.06494],[91.80603,23.06303],[91.80598,23.06697],[91.81235,23.06625],[91.81156,23.06951],[91.81386,23.07058],[91.81319,23.07352],[91.81605,23.07185],[91.81839,23.07274],[91.81593,23.07467],[91.81788,23.07575],[91.81729,23.07894],[91.81475,23.08058],[91.81828,23.08299],[91.81981,23.07981],[91.82437,23.08343],[91.82278,23.08659],[91.82793,23.08868],[91.82975,23.09166],[91.83139,23.08979],[91.83348,23.09099],[91.83309,23.09257],[91.8358,23.09299],[91.83372,23.09549],[91.8321,23.09474],[91.83119,23.09674],[91.82505,23.09892],[91.82093,23.09972],[91.82068,23.09737],[91.81346,23.0992],[91.81761,23.10201],[91.8178,23.10845],[91.81631,23.10997],[91.81809,23.11204],[91.81562,23.11904],[91.81294,23.11913],[91.81089,23.12165],[91.81262,23.12265],[91.81153,23.12506],[91.81389,23.12881],[91.81233,23.1307],[91.81481,23.13145],[91.81477,23.13332],[91.81161,23.13418],[91.81116,23.13691],[91.81044,23.13369],[91.8081,23.1355],[91.80924,23.13643],[91.80816,23.13904],[91.81108,23.14462],[91.81308,23.14371],[91.81424,23.1451],[91.81013,23.15019],[91.81061,23.15349],[91.80608,23.15733],[91.80695,23.16241],[91.81009,23.16507],[91.80487,23.16805],[91.80575,23.17216],[91.80699,23.17184],[91.80511,23.17412],[91.80672,23.17528],[91.8042,23.17447],[91.80318,23.17668],[91.80627,23.17905],[91.80528,23.18051],[91.79462,23.18669],[91.79825,23.18939],[91.79786,23.19568],[91.79596,23.19557],[91.79472,23.19724],[91.79605,23.19772],[91.79282,23.19903],[91.78887,23.20444],[91.78857,23.20776],[91.79167,23.20762],[91.79262,23.20925],[91.79118,23.20939],[91.79163,23.21235],[91.7879,23.21511],[91.7884,23.21675],[91.79192,23.21814],[91.79022,23.22125],[91.79123,23.22558],[91.78984,23.22509],[91.79108,23.22679],[91.78775,23.22755],[91.78835,23.22875],[91.78419,23.23254],[91.78422,23.23883],[91.7854,23.23899],[91.78362,23.24327],[91.7806,23.24332],[91.78134,23.24148],[91.77972,23.23929],[91.77619,23.24317],[91.78046,23.24697],[91.77851,23.25174],[91.77981,23.25371],[91.77818,23.25643],[91.77702,23.25501],[91.77497,23.25669],[91.77691,23.25731],[91.77756,23.25993],[91.77538,23.26195],[91.7768,23.26341],[91.77709,23.26923],[91.77196,23.27006],[91.76901,23.27319],[91.76669,23.27145],[91.76497,23.27261],[91.76593,23.27358],[91.76345,23.2744],[91.76335,23.27716],[91.76136,23.27705],[91.76277,23.28083],[91.75983,23.28349],[91.76218,23.2849],[91.76061,23.28668],[91.76202,23.28965],[91.7606,23.29127],[91.76286,23.29222],[91.76353,23.29457],[91.76241,23.30294],[91.76521,23.30499],[91.76435,23.30926],[91.76657,23.30917],[91.76999,23.31236],[91.77144,23.31155],[91.77338,23.31587],[91.77933,23.31746],[91.78328,23.32443],[91.79125,23.32608],[91.79341,23.3298],[91.79967,23.33291],[91.80458,23.33227],[91.80825,23.33704],[91.80679,23.33979],[91.80967,23.342],[91.80943,23.34395],[91.81315,23.34584],[91.81533,23.34382],[91.81807,23.34643],[91.81733,23.34756],[91.81927,23.35108],[91.82514,23.35234],[91.8256,23.36311],[91.82846,23.36604],[91.83045,23.36403],[91.83161,23.36506],[91.83242,23.36972],[91.83757,23.37062],[91.83619,23.38644],[91.84186,23.38839],[91.8407,23.39887],[91.8454,23.40056],[91.84499,23.40469],[91.8496,23.40543],[91.85107,23.40406],[91.85474,23.40667],[91.86064,23.40517],[91.86729,23.41249],[91.87376,23.41404],[91.87377,23.4188],[91.87654,23.42232],[91.88701,23.42692],[91.88883,23.42942],[91.88742,23.43289],[91.89113,23.43359],[91.89581,23.4318],[91.8957,23.43333],[91.89902,23.4356],[91.89971,23.4406],[91.90936,23.43655],[91.91346,23.43671],[91.91902,23.4395],[91.92181,23.43798],[91.924,23.43366],[91.93132,23.43445],[91.933,23.43598],[91.93486,23.43522],[91.93429,23.43347],[91.93743,23.43234],[91.94058,23.43533],[91.94261,23.43498],[91.94258,23.44049],[91.94018,23.44733],[91.94089,23.45052],[91.93792,23.45919],[91.93909,23.46161],[91.93666,23.4666],[91.94109,23.46586],[91.945,23.46771],[91.94692,23.46593],[91.9477,23.46956],[91.95544,23.47567],[91.95871,23.47288],[91.95833,23.47941],[91.96218,23.47777],[91.9655,23.47849],[91.96913,23.47638],[91.97039,23.47828],[91.96864,23.48741],[91.97086,23.49197],[91.97283,23.49238],[91.97252,23.49471],[91.97104,23.49414],[91.96853,23.49901],[91.97105,23.50302],[91.96825,23.51018],[91.96467,23.51266],[91.96625,23.51512],[91.96314,23.51632],[91.96434,23.51916],[91.96008,23.51845],[91.95628,23.52571],[91.95903,23.53253],[91.96357,23.53319],[91.96461,23.53525],[91.9568,23.55127],[91.95887,23.55368],[91.95662,23.56028],[91.95947,23.56405],[91.95729,23.56753],[91.95869,23.57146],[91.95543,23.5755],[91.95671,23.58197],[91.95425,23.58677],[91.95557,23.59],[91.95193,23.60044],[91.95353,23.60246],[91.95429,23.60956],[91.95243,23.61132],[91.95195,23.61681],[91.94651,23.62282],[91.94721,23.62837],[91.9451,23.62854],[91.94236,23.6338],[91.94674,23.6375],[91.94492,23.64333],[91.94665,23.64598],[91.94394,23.65183],[91.93995,23.65516],[91.94109,23.6564],[91.9392,23.65947],[91.94113,23.662],[91.9408,23.66806],[91.94212,23.66936],[91.93871,23.67321],[91.93973,23.67521],[91.9371,23.68133],[91.93402,23.68456],[91.93668,23.68796],[91.94076,23.68853],[91.94134,23.6936],[91.94579,23.69422],[91.94756,23.69304],[91.95072,23.69458],[91.95308,23.69278],[91.95789,23.69441],[91.95721,23.69762],[91.95066,23.69958],[91.9523,23.70483],[91.94944,23.70651],[91.95001,23.71086],[91.94828,23.71414],[91.95468,23.72102],[91.95119,23.72114],[91.95067,23.72623],[91.95429,23.72626],[91.95533,23.72863],[91.95428,23.73073],[91.95695,23.73162],[91.95702,23.73399],[91.9598,23.73478],[91.96647,23.73352],[91.96733,23.72944],[91.97827,23.73308],[91.98068,23.72338],[91.98529,23.72293],[91.98517,23.71628],[91.98885,23.70497],[91.98874,23.70099],[91.99326,23.69452],[91.99366,23.68781],[91.99504,23.68725],[91.99683,23.67966],[91.99913,23.67759],[92.00041,23.6707],[92.00617,23.67112],[92.00846,23.6637],[92.01323,23.66343],[92.01505,23.65997],[92.01973,23.66274],[92.0238,23.66273],[92.0223,23.65808],[92.03063,23.65787],[92.03129,23.65585],[92.03895,23.65164],[92.04196,23.64792],[92.04341,23.64856],[92.04654,23.64659],[92.04986,23.64936],[92.05772,23.64847],[92.06334,23.64502],[92.06905,23.64815],[92.07282,23.64652],[92.07659,23.64879],[92.07918,23.64845],[92.0777,23.65435],[92.07926,23.65577],[92.08001,23.66227],[92.07631,23.66804],[92.0783,23.67103],[92.08068,23.67138],[92.08303,23.68005],[92.08746,23.68056],[92.09176,23.67692],[92.09326,23.67835],[92.09969,23.67671],[92.10416,23.68083],[92.10507,23.68433],[92.10399,23.68599],[92.10617,23.68866],[92.11156,23.69007],[92.11417,23.69425],[92.11625,23.69122],[92.11816,23.69106],[92.12084,23.69273],[92.12139,23.69506],[92.12386,23.6955],[92.12298,23.69948],[92.12476,23.70068],[92.12533,23.70653],[92.12897,23.70781],[92.13401,23.71575],[92.13934,23.72018],[92.13855,23.72106],[92.14228,23.7253],[92.14449,23.7334],[92.14872,23.73563],[92.15168,23.73398],[92.15493,23.73436],[92.15612,23.73673],[92.16241,23.73962],[92.16973,23.73968],[92.17291,23.73574],[92.17079,23.73285],[92.17154,23.7266],[92.1696,23.72319],[92.17311,23.71773],[92.17655,23.71641],[92.17771,23.70756],[92.18472,23.70809],[92.18609,23.71098],[92.19354,23.70677],[92.20284,23.70581],[92.20411,23.7019],[92.20703,23.70062],[92.20983,23.69145],[92.21142,23.69054],[92.21092,23.68857],[92.21366,23.68495],[92.21218,23.68084],[92.2073,23.67761],[92.20632,23.67519],[92.20607,23.6695],[92.20749,23.6671],[92.2066,23.661],[92.21086,23.65884],[92.21034,23.65367],[92.21145,23.65277],[92.22262,23.65283],[92.22566,23.6552],[92.22953,23.66612],[92.2331,23.66755],[92.23065,23.67528],[92.23334,23.68123],[92.23203,23.68475],[92.23482,23.68663],[92.23639,23.69286],[92.24038,23.69291],[92.24208,23.69493],[92.24241,23.69916],[92.2396,23.70262],[92.23951,23.70819],[92.23635,23.71209],[92.23917,23.71843],[92.241,23.72071],[92.24915,23.72437],[92.25826,23.72524],[92.26164,23.72344],[92.26548,23.72477],[92.2667,23.73238],[92.26553,23.74323],[92.26718,23.75164],[92.26551,23.76137],[92.26731,23.7686],[92.26487,23.77316],[92.26001,23.79347],[92.2571,23.81277],[92.26628,23.81591],[92.28129,23.81413],[92.28251,23.81539],[92.27807,23.82663],[92.2687,23.84166],[92.26918,23.84691],[92.27927,23.85634],[92.28334,23.86508],[92.2876,23.86848],[92.29048,23.86757],[92.29934,23.85969],[92.30854,23.85679],[92.3117,23.86022],[92.31503,23.8605],[92.31673,23.86435],[92.31421,23.86828],[92.31097,23.86975],[92.31063,23.87334],[92.31318,23.87747],[92.31118,23.88011],[92.31286,23.88481],[92.31665,23.88907],[92.31688,23.8996],[92.31811,23.89841],[92.32397,23.90487],[92.32198,23.91007],[92.32519,23.91409],[92.31927,23.91569],[92.3163,23.92806],[92.30899,23.93122],[92.31068,23.93483],[92.30927,23.94414],[92.31092,23.94821],[92.31053,23.95234],[92.30829,23.95423],[92.3092,23.95739],[92.30797,23.96056],[92.31,23.96302],[92.3086,23.96808],[92.31031,23.96952],[92.31039,23.97227],[92.31445,23.97284],[92.31735,23.97511],[92.31731,23.97878],[92.32014,23.97902],[92.32194,23.9832],[92.32141,23.98756],[92.32358,23.98854],[92.32216,23.99392],[92.3262,23.99778],[92.32284,24.00273],[92.32436,24.00465],[92.3189,24.00821],[92.32018,24.01226],[92.31919,24.01517],[92.31395,24.02122],[92.31542,24.02337],[92.31877,24.02188],[92.31982,24.02444],[92.31478,24.02595],[92.31695,24.03006],[92.31211,24.03241],[92.31574,24.03487],[92.31571,24.03768],[92.31201,24.03851],[92.31643,24.04561],[92.31215,24.05212],[92.31273,24.05488],[92.31531,24.05315],[92.31761,24.05497],[92.3163,24.0595],[92.31986,24.06374],[92.3168,24.06653],[92.31656,24.07004],[92.31939,24.07012],[92.32129,24.07269],[92.31925,24.07819],[92.32416,24.07926],[92.32219,24.08154],[92.32482,24.08817],[92.32492,24.09759],[92.32767,24.10149],[92.3269,24.10444],[92.32262,24.10439],[92.32791,24.11194],[92.32502,24.1127],[92.3243,24.11507],[92.32711,24.117],[92.32474,24.11968],[92.32586,24.13249],[92.32456,24.13943],[92.3307,24.13969],[92.32874,24.14312],[92.33173,24.15179],[92.32873,24.15507],[92.32863,24.16625],[92.32442,24.16818],[92.32387,24.17123],[92.32591,24.17355],[92.32653,24.17772],[92.33206,24.17956],[92.32629,24.18168],[92.32545,24.18552],[92.32243,24.18872],[92.32636,24.19136],[92.32177,24.19418],[92.32608,24.19707],[92.31912,24.19786],[92.32154,24.20373],[92.3147,24.20639],[92.31419,24.20961],[92.31627,24.2118],[92.31086,24.21784],[92.31041,24.22127],[92.30428,24.22351],[92.29735,24.23149],[92.29253,24.25012],[92.28959,24.25235],[92.21287,24.24993],[92.26573,24.36602],[92.26814,24.36788],[92.26806,24.37811],[92.27289,24.37897],[92.26864,24.38406],[92.27409,24.38832],[92.27202,24.39236],[92.26911,24.39254],[92.27081,24.39628],[92.26933,24.39847],[92.26414,24.39895],[92.26172,24.40869],[92.26349,24.40947],[92.26328,24.41119],[92.25448,24.42053],[92.25654,24.42484],[92.25689,24.43202],[92.25936,24.43403],[92.2594,24.43921],[92.25347,24.44031],[92.25313,24.44232],[92.24649,24.4452],[92.24437,24.44437],[92.23889,24.4475],[92.23487,24.45261],[92.23637,24.45819],[92.23018,24.46151],[92.2306,24.47143],[92.23147,24.47352],[92.23475,24.47457],[92.23133,24.48004],[92.23348,24.48419],[92.23665,24.48459],[92.2349,24.48692],[92.23658,24.48871],[92.2312,24.49521],[92.23044,24.50171],[92.20895,24.50412],[92.20764,24.50613],[92.20176,24.50735],[92.19982,24.51124],[92.19599,24.51165],[92.19265,24.51819],[92.18826,24.51883],[92.18802,24.52105],[92.18612,24.5208],[92.18497,24.52322],[92.17619,24.52334],[92.17631,24.52632],[92.1736,24.52718],[92.17093,24.53064]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-TS","area_level":"State","area_name":"Telangana","geometry_source":"SOI_States","same_as":"LGD/36/State"},"geometry":{"type":"Polygon","coordinates":[[[78.33565,19.88358],[78.32876,19.88715],[78.32436,19.89483],[78.32512,19.89815],[78.33409,19.9053],[78.33328,19.91047],[78.3306,19.91469],[78.32184,19.91681],[78.30703,19.9143],[78.29783,19.87225],[78.29188,19.86172],[78.28531,19.85662],[78.28608,19.84794],[78.29975,19.841],[78.30385,19.84032],[78.31576,19.84256],[78.33641,19.83792],[78.33402,19.81459],[78.3448,19.81337],[78.35238,19.8074],[78.35707,19.80577],[78.35889,19.80289],[78.36459,19.78065],[78.36365,19.77577],[78.35893,19.76793],[78.35555,19.75201],[78.34929,19.73798],[78.34464,19.73811],[78.34123,19.73576],[78.34082,19.73333],[78.34285,19.72978],[78.33982,19.72696],[78.33929,19.72416],[78.3435,19.71547],[78.34313,19.71325],[78.31865,19.70553],[78.31573,19.70259],[78.31182,19.69105],[78.30341,19.6912],[78.30019,19.68799],[78.28785,19.68804],[78.27619,19.69242],[78.27108,19.67871],[78.26579,19.67309],[78.26265,19.66506],[78.26891,19.66407],[78.27162,19.66191],[78.27105,19.65854],[78.27901,19.65764],[78.28088,19.65093],[78.29046,19.646],[78.29208,19.64223],[78.2922,19.62741],[78.2939,19.61944],[78.30557,19.60707],[78.30382,19.58478],[78.3009,19.57907],[78.30425,19.57269],[78.30369,19.56932],[78.29729,19.5679],[78.29815,19.56404],[78.29356,19.55898],[78.27525,19.56246],[78.27431,19.55397],[78.28393,19.54141],[78.29323,19.54223],[78.29411,19.53479],[78.29244,19.52931],[78.2904,19.52762],[78.296,19.51737],[78.29701,19.51308],[78.29495,19.51317],[78.29866,19.49681],[78.30922,19.48108],[78.30434,19.45614],[78.29865,19.45195],[78.28697,19.44853],[78.27044,19.45616],[78.26868,19.44847],[78.26374,19.44893],[78.26265,19.44306],[78.25831,19.44179],[78.25338,19.43677],[78.24648,19.4352],[78.24672,19.43217],[78.24451,19.4288],[78.23743,19.42873],[78.23561,19.42675],[78.21996,19.43302],[78.21159,19.42848],[78.20253,19.4197],[78.19919,19.41484],[78.19881,19.41016],[78.19507,19.40675],[78.19244,19.40669],[78.18382,19.4122],[78.17619,19.41226],[78.18767,19.39459],[78.17679,19.3674],[78.17923,19.36284],[78.17206,19.35972],[78.17215,19.3493],[78.17623,19.33493],[78.18324,19.32998],[78.18951,19.32897],[78.19228,19.32583],[78.19021,19.32078],[78.19374,19.31489],[78.18311,19.28518],[78.17667,19.27855],[78.17817,19.27251],[78.17671,19.26294],[78.17964,19.25886],[78.17798,19.25391],[78.18177,19.24762],[78.17702,19.24216],[78.17532,19.23758],[78.16495,19.23455],[78.1584,19.23578],[78.15099,19.2295],[78.14455,19.2294],[78.13709,19.23439],[78.13428,19.23889],[78.11704,19.24864],[78.11522,19.24883],[78.11317,19.24442],[78.09531,19.24374],[78.08915,19.23937],[78.08235,19.24322],[78.08323,19.24868],[78.0791,19.25483],[78.0723,19.24925],[78.06442,19.24777],[78.05568,19.23712],[78.04161,19.24343],[78.03594,19.25063],[78.04184,19.26166],[78.04251,19.2706],[78.01482,19.27904],[78.01424,19.28596],[78.01596,19.28757],[78.0135,19.29472],[77.99868,19.2998],[77.99467,19.30539],[77.98485,19.30988],[77.97763,19.32271],[77.97411,19.32262],[77.96588,19.32746],[77.96186,19.33561],[77.94512,19.34245],[77.94229,19.34227],[77.93824,19.33411],[77.93198,19.33467],[77.92801,19.33221],[77.92331,19.32578],[77.9176,19.32328],[77.91155,19.31626],[77.89432,19.32047],[77.89003,19.3133],[77.87818,19.30928],[77.87283,19.30531],[77.86346,19.3042],[77.8664,19.29172],[77.86495,19.28813],[77.86558,19.28382],[77.88436,19.27893],[77.89419,19.27981],[77.90346,19.27796],[77.90756,19.26823],[77.90285,19.25646],[77.89092,19.25928],[77.89001,19.26089],[77.87502,19.25884],[77.8746,19.25364],[77.87141,19.25502],[77.86947,19.24817],[77.87002,19.24418],[77.8669,19.23994],[77.86814,19.23674],[77.86612,19.23261],[77.86601,19.2264],[77.85819,19.21418],[77.85481,19.20277],[77.85123,19.19975],[77.85149,19.1961],[77.84772,19.1896],[77.85401,19.18749],[77.86049,19.18035],[77.85593,19.17711],[77.85671,19.17075],[77.85453,19.1702],[77.85265,19.16682],[77.85253,19.15468],[77.84322,19.14158],[77.83795,19.13765],[77.83566,19.13808],[77.83406,19.13431],[77.83688,19.13401],[77.84156,19.11811],[77.84766,19.116],[77.84837,19.11013],[77.84621,19.10131],[77.85108,19.09203],[77.8504,19.08856],[77.84858,19.0865],[77.8423,19.08801],[77.83127,19.08608],[77.82953,19.08707],[77.82641,19.09664],[77.82358,19.09773],[77.81814,19.10498],[77.80993,19.10473],[77.80453,19.10056],[77.80312,19.09617],[77.80458,19.0918],[77.80281,19.07976],[77.80167,19.07618],[77.79786,19.07516],[77.7968,19.07259],[77.8001,19.06684],[77.7986,19.06145],[77.80035,19.05112],[77.79331,19.05257],[77.7891,19.05567],[77.77523,19.05602],[77.76481,19.06266],[77.76495,19.04714],[77.76179,19.033],[77.76556,19.02431],[77.76992,19.02241],[77.77034,19.00996],[77.77224,19.00363],[77.77535,19.00063],[77.7715,18.97916],[77.78763,18.97265],[77.78967,18.97458],[77.79114,18.98282],[77.80522,18.98186],[77.82176,18.97851],[77.81621,18.95752],[77.81984,18.95444],[77.81622,18.94728],[77.81925,18.94586],[77.83245,18.94163],[77.83562,18.94725],[77.84194,18.94987],[77.85859,18.94911],[77.85146,18.92641],[77.84791,18.9269],[77.84325,18.90869],[77.85794,18.90235],[77.87317,18.90393],[77.87394,18.90767],[77.88538,18.9042],[77.88481,18.9003],[77.89158,18.88141],[77.90391,18.88125],[77.90323,18.86663],[77.91243,18.86507],[77.91415,18.86137],[77.92514,18.86069],[77.93006,18.85873],[77.92935,18.85359],[77.93745,18.85159],[77.93478,18.84514],[77.9489,18.84329],[77.94828,18.8291],[77.94309,18.82481],[77.9345,18.82227],[77.91226,18.82689],[77.90667,18.8267],[77.88199,18.8174],[77.87141,18.81816],[77.85988,18.80905],[77.85368,18.80907],[77.83995,18.80482],[77.83851,18.79683],[77.83219,18.78825],[77.82679,18.76984],[77.81671,18.75064],[77.81234,18.73851],[77.80425,18.72724],[77.80418,18.71318],[77.80106,18.70762],[77.79622,18.70396],[77.79501,18.69704],[77.78976,18.69515],[77.79035,18.68783],[77.78729,18.68264],[77.77701,18.68536],[77.77191,18.68905],[77.77324,18.70136],[77.77033,18.70184],[77.76815,18.70586],[77.75998,18.70684],[77.7535,18.70099],[77.75059,18.69525],[77.75244,18.68934],[77.74925,18.68267],[77.74369,18.68162],[77.74313,18.67827],[77.73822,18.6765],[77.72997,18.66694],[77.73571,18.66099],[77.7302,18.65608],[77.7305,18.64515],[77.73471,18.64101],[77.74566,18.62129],[77.74557,18.60594],[77.7476,18.6032],[77.75034,18.58921],[77.74607,18.5846],[77.74347,18.57762],[77.74038,18.57522],[77.73961,18.56836],[77.73704,18.56384],[77.7385,18.55679],[77.72325,18.55333],[77.71097,18.5563],[77.70156,18.55517],[77.68833,18.54495],[77.68069,18.54525],[77.6646,18.5358],[77.66166,18.53186],[77.65586,18.5309],[77.65135,18.53226],[77.6459,18.53884],[77.64922,18.54119],[77.65207,18.55179],[77.64771,18.55299],[77.64791,18.55493],[77.63962,18.55494],[77.634,18.54392],[77.62763,18.54812],[77.62925,18.55368],[77.62647,18.55189],[77.61519,18.55085],[77.61604,18.54897],[77.61319,18.5491],[77.6125,18.54448],[77.61056,18.54454],[77.61007,18.54988],[77.59637,18.54894],[77.5953,18.53554],[77.59206,18.53232],[77.59069,18.52667],[77.59657,18.5302],[77.60044,18.5273],[77.59883,18.52421],[77.60028,18.5223],[77.59707,18.51588],[77.58775,18.51286],[77.58591,18.504],[77.59429,18.49791],[77.5944,18.4962],[77.60471,18.49637],[77.60368,18.49294],[77.60623,18.4892],[77.60361,18.48368],[77.60313,18.47685],[77.59428,18.47691],[77.59225,18.48472],[77.57637,18.48678],[77.57286,18.46981],[77.56107,18.47026],[77.56024,18.46862],[77.54856,18.46858],[77.55076,18.46041],[77.56404,18.46102],[77.5836,18.45621],[77.583,18.44994],[77.5861,18.4494],[77.5853,18.44679],[77.5743,18.4418],[77.56907,18.44287],[77.56829,18.43947],[77.56418,18.4373],[77.5602,18.43728],[77.54798,18.44323],[77.54056,18.44471],[77.52849,18.44337],[77.52752,18.44211],[77.52817,18.42891],[77.53731,18.42628],[77.5369,18.42425],[77.55647,18.41943],[77.55676,18.41714],[77.55268,18.40169],[77.5516,18.3889],[77.54592,18.38869],[77.54319,18.38609],[77.5386,18.38588],[77.53561,18.38075],[77.52547,18.37271],[77.52405,18.3642],[77.52021,18.35718],[77.52273,18.3454],[77.53023,18.33917],[77.55802,18.33142],[77.56387,18.3223],[77.57048,18.31811],[77.5714,18.30883],[77.55326,18.29809],[77.5514,18.29191],[77.56212,18.28481],[77.56694,18.28728],[77.57021,18.29253],[77.57256,18.2933],[77.57616,18.28873],[77.58185,18.28538],[77.60542,18.28128],[77.6043,18.27877],[77.60117,18.27762],[77.59445,18.26485],[77.58199,18.25963],[77.57378,18.24499],[77.57178,18.244],[77.57301,18.23944],[77.58052,18.23217],[77.57988,18.22816],[77.58185,18.22697],[77.58149,18.22486],[77.58531,18.21982],[77.58058,18.21385],[77.57482,18.20163],[77.57215,18.20351],[77.56551,18.20418],[77.56388,18.20194],[77.56346,18.19613],[77.56405,18.19426],[77.57069,18.19217],[77.57472,18.1741],[77.57716,18.17249],[77.58131,18.16232],[77.58422,18.15923],[77.5924,18.15544],[77.59684,18.15595],[77.5944,18.13272],[77.59699,18.12367],[77.59916,18.12099],[77.60155,18.1059],[77.5988,18.09333],[77.59564,18.08603],[77.58551,18.08184],[77.58358,18.08246],[77.57592,18.07806],[77.56943,18.07824],[77.56592,18.07667],[77.55971,18.07188],[77.55742,18.06373],[77.54834,18.06521],[77.54764,18.05613],[77.54961,18.05439],[77.54948,18.05124],[77.55183,18.0507],[77.55379,18.03582],[77.56061,18.03622],[77.58059,18.03158],[77.58325,18.02826],[77.58489,18.01679],[77.58859,18.01216],[77.59586,18.01285],[77.60164,18.01984],[77.60593,18.02023],[77.60794,18.01796],[77.60747,18.00985],[77.61966,18.00649],[77.62779,17.99679],[77.63875,17.99645],[77.64891,17.99888],[77.65204,17.99389],[77.64821,17.98026],[77.65586,17.96884],[77.64951,17.95907],[77.64948,17.95002],[77.6409,17.95411],[77.64062,17.95189],[77.63721,17.95232],[77.63513,17.95925],[77.63329,17.96037],[77.63301,17.96738],[77.62454,17.9596],[77.63289,17.9558],[77.63251,17.94667],[77.62294,17.94552],[77.61868,17.93949],[77.622,17.92957],[77.61904,17.90406],[77.60518,17.90781],[77.59999,17.90414],[77.58606,17.90784],[77.585,17.90193],[77.58599,17.89384],[77.59583,17.88136],[77.60037,17.8806],[77.59908,17.87309],[77.59449,17.87233],[77.58342,17.87704],[77.58059,17.87345],[77.5764,17.87542],[77.57346,17.86919],[77.57,17.86765],[77.56932,17.85156],[77.56484,17.85119],[77.56744,17.84542],[77.56068,17.83865],[77.55403,17.82007],[77.54891,17.81938],[77.5467,17.82848],[77.53238,17.82911],[77.52822,17.8279],[77.52903,17.81293],[77.52294,17.81141],[77.51494,17.80545],[77.509,17.78778],[77.50656,17.78595],[77.51233,17.78213],[77.51751,17.78249],[77.52211,17.78055],[77.52636,17.78163],[77.527,17.7799],[77.52867,17.78066],[77.53439,17.77763],[77.53751,17.77993],[77.54054,17.77777],[77.54026,17.77438],[77.54606,17.77166],[77.54823,17.76706],[77.55486,17.76397],[77.55983,17.76342],[77.56628,17.76675],[77.56915,17.76649],[77.56727,17.7596],[77.56853,17.74891],[77.56439,17.74786],[77.56094,17.74281],[77.55801,17.74139],[77.5567,17.73738],[77.54861,17.73577],[77.54623,17.73282],[77.54596,17.72684],[77.54219,17.72894],[77.53328,17.72768],[77.53133,17.72867],[77.52859,17.72517],[77.52201,17.72603],[77.51824,17.72358],[77.51655,17.72016],[77.51165,17.72092],[77.50914,17.71629],[77.49705,17.71551],[77.49227,17.70813],[77.48601,17.70793],[77.48489,17.70914],[77.48415,17.7056],[77.46748,17.70298],[77.45887,17.69862],[77.45782,17.6963],[77.45243,17.6947],[77.45216,17.69114],[77.45504,17.68893],[77.4537,17.68649],[77.45349,17.67711],[77.45482,17.67448],[77.44893,17.65943],[77.44822,17.65112],[77.45001,17.65058],[77.44972,17.64396],[77.45223,17.64],[77.45208,17.63642],[77.45589,17.63418],[77.45575,17.63249],[77.45115,17.62321],[77.44873,17.60934],[77.44476,17.60941],[77.44614,17.59647],[77.44329,17.59169],[77.44498,17.58625],[77.44312,17.58396],[77.45562,17.58233],[77.45858,17.57997],[77.46181,17.58075],[77.47082,17.57186],[77.47623,17.57061],[77.47805,17.5668],[77.49407,17.56836],[77.49618,17.55961],[77.50043,17.55619],[77.50003,17.54672],[77.5069,17.54228],[77.51544,17.55242],[77.51649,17.55915],[77.52838,17.57537],[77.53744,17.57544],[77.54512,17.56439],[77.55056,17.55173],[77.55424,17.55385],[77.56085,17.55257],[77.56737,17.55636],[77.5881,17.56],[77.58907,17.5647],[77.5938,17.56451],[77.59723,17.55373],[77.59558,17.54487],[77.5969,17.5343],[77.60301,17.53584],[77.60738,17.53225],[77.61206,17.53476],[77.61936,17.52887],[77.62097,17.5304],[77.62339,17.52563],[77.62796,17.52363],[77.637,17.52571],[77.64527,17.52238],[77.66201,17.52282],[77.66654,17.51713],[77.66864,17.51161],[77.67302,17.50942],[77.67545,17.50862],[77.67749,17.50998],[77.68342,17.50818],[77.68772,17.51182],[77.6888,17.51094],[77.6924,17.49688],[77.68801,17.48943],[77.68963,17.48281],[77.6884,17.4752],[77.6768,17.47836],[77.67053,17.47789],[77.65736,17.48092],[77.65544,17.48308],[77.65228,17.48285],[77.65333,17.49389],[77.65689,17.50646],[77.64788,17.49608],[77.64766,17.48717],[77.64479,17.47757],[77.64051,17.47646],[77.63824,17.47352],[77.61523,17.47289],[77.613,17.46683],[77.61427,17.44595],[77.60292,17.44415],[77.58424,17.4545],[77.57619,17.45617],[77.57586,17.43071],[77.56151,17.43761],[77.55269,17.43705],[77.5373,17.44375],[77.513,17.43087],[77.51417,17.41418],[77.52983,17.40818],[77.53607,17.40798],[77.53784,17.40609],[77.53723,17.40225],[77.52429,17.388],[77.52622,17.38193],[77.53315,17.3805],[77.5298,17.37071],[77.52482,17.3647],[77.51576,17.36038],[77.51148,17.36058],[77.50263,17.35707],[77.4882,17.35873],[77.48382,17.355],[77.47443,17.36151],[77.47653,17.36371],[77.476,17.36841],[77.4791,17.37072],[77.45361,17.37399],[77.45106,17.35938],[77.45168,17.35268],[77.45487,17.35178],[77.45706,17.34741],[77.45601,17.33124],[77.45245,17.32747],[77.45219,17.31755],[77.44884,17.30962],[77.44765,17.3075],[77.4456,17.30774],[77.44298,17.30122],[77.44051,17.3013],[77.43793,17.29192],[77.45488,17.28724],[77.45854,17.279],[77.45356,17.2761],[77.45081,17.27053],[77.444,17.27055],[77.43578,17.26018],[77.42633,17.25646],[77.42254,17.25076],[77.42042,17.23762],[77.41145,17.23767],[77.41039,17.24041],[77.40827,17.24121],[77.40495,17.23653],[77.38019,17.22253],[77.38296,17.21798],[77.38876,17.21532],[77.40198,17.21412],[77.40375,17.20989],[77.39839,17.21031],[77.39641,17.20753],[77.39389,17.1944],[77.38174,17.19765],[77.37227,17.19556],[77.37396,17.19455],[77.37335,17.19087],[77.36946,17.18632],[77.3719,17.18113],[77.37001,17.17579],[77.3662,17.17221],[77.36677,17.1693],[77.36261,17.16448],[77.36372,17.15878],[77.36682,17.15898],[77.3669,17.15441],[77.37817,17.15266],[77.37792,17.13994],[77.38454,17.14003],[77.40382,17.13292],[77.40666,17.12451],[77.436,17.11498],[77.43849,17.11685],[77.4458,17.11796],[77.44955,17.11502],[77.45428,17.11485],[77.45563,17.11145],[77.45919,17.1091],[77.46362,17.11],[77.46469,17.10776],[77.46285,17.09408],[77.46725,17.08633],[77.47656,17.07943],[77.48098,17.07923],[77.48194,17.07585],[77.47898,17.07263],[77.47993,17.0688],[77.48345,17.05891],[77.48984,17.05054],[77.48766,17.04953],[77.48811,17.04717],[77.49665,17.04272],[77.49495,17.02709],[77.50253,17.0141],[77.5022,17.00937],[77.49783,17.00933],[77.49187,17.00366],[77.48656,17.00321],[77.47952,16.99602],[77.48289,16.98565],[77.48134,16.97043],[77.4783,16.96837],[77.47215,16.95714],[77.46595,16.95893],[77.46523,16.95661],[77.46721,16.94985],[77.46484,16.94418],[77.46829,16.93959],[77.4642,16.92985],[77.46941,16.92806],[77.46944,16.9192],[77.46652,16.91511],[77.4592,16.91731],[77.45842,16.91491],[77.45402,16.9139],[77.4547,16.91037],[77.45791,16.90951],[77.45646,16.89992],[77.45834,16.89409],[77.45589,16.88534],[77.46036,16.88475],[77.46001,16.87468],[77.46406,16.85059],[77.45948,16.83285],[77.45708,16.83018],[77.46324,16.82221],[77.46244,16.81374],[77.46646,16.80832],[77.4657,16.80592],[77.47426,16.80232],[77.47469,16.7931],[77.47339,16.78921],[77.4765,16.78837],[77.4745,16.78124],[77.46719,16.78045],[77.44107,16.78622],[77.4395,16.78913],[77.43772,16.78337],[77.43788,16.77471],[77.44315,16.76251],[77.4333,16.73669],[77.4298,16.7348],[77.42696,16.72891],[77.42832,16.7266],[77.43036,16.72637],[77.43097,16.72312],[77.42607,16.72287],[77.42767,16.71663],[77.4328,16.7173],[77.43846,16.71168],[77.44123,16.71312],[77.44198,16.71703],[77.44613,16.71649],[77.44718,16.72073],[77.45216,16.7196],[77.45779,16.71594],[77.46133,16.719],[77.46296,16.71797],[77.46381,16.71917],[77.47405,16.71656],[77.47116,16.71178],[77.47139,16.7062],[77.46989,16.7056],[77.4698,16.68703],[77.4639,16.6763],[77.44772,16.67931],[77.44658,16.67607],[77.44423,16.67569],[77.44255,16.66985],[77.43455,16.67098],[77.42817,16.6682],[77.41886,16.66857],[77.41901,16.65844],[77.42972,16.6562],[77.4386,16.64533],[77.43434,16.64336],[77.43434,16.64138],[77.44158,16.6411],[77.44468,16.63923],[77.45649,16.64681],[77.45702,16.64968],[77.46143,16.65112],[77.4624,16.65427],[77.47291,16.6528],[77.47611,16.65011],[77.47086,16.64375],[77.46825,16.63595],[77.46438,16.6325],[77.46392,16.62824],[77.45616,16.62299],[77.45365,16.61675],[77.45819,16.61071],[77.4678,16.60976],[77.4674,16.59884],[77.46391,16.59921],[77.46225,16.59766],[77.46483,16.59242],[77.46222,16.58548],[77.43971,16.58715],[77.43085,16.57887],[77.42855,16.57365],[77.42563,16.57219],[77.42376,16.56888],[77.41537,16.56752],[77.41178,16.57086],[77.40494,16.57189],[77.40001,16.56752],[77.39287,16.56997],[77.39262,16.56399],[77.3975,16.56476],[77.39996,16.55573],[77.40418,16.55418],[77.40376,16.55119],[77.41045,16.549],[77.41902,16.54892],[77.41912,16.52238],[77.41689,16.5173],[77.40221,16.52152],[77.39498,16.51969],[77.39102,16.5162],[77.38144,16.51571],[77.37779,16.5137],[77.37272,16.50966],[77.37007,16.50458],[77.36901,16.48867],[77.3547,16.48878],[77.35143,16.49106],[77.34637,16.49037],[77.34439,16.48694],[77.34309,16.48793],[77.32956,16.48591],[77.32357,16.48684],[77.3203,16.49222],[77.29871,16.49616],[77.29932,16.48791],[77.294,16.47667],[77.26499,16.47251],[77.25073,16.47493],[77.24581,16.47773],[77.23977,16.47625],[77.23576,16.47274],[77.24441,16.46331],[77.26207,16.45184],[77.26895,16.43046],[77.27828,16.42217],[77.28796,16.40864],[77.29745,16.4069],[77.3043,16.40173],[77.31393,16.39801],[77.33342,16.39537],[77.3491,16.38385],[77.35584,16.38264],[77.37805,16.38556],[77.4017,16.3713],[77.41144,16.36745],[77.42095,16.36623],[77.42953,16.36966],[77.43711,16.37861],[77.44098,16.38077],[77.47467,16.38177],[77.48969,16.38501],[77.49535,16.38116],[77.51437,16.37497],[77.5234,16.37583],[77.53143,16.36376],[77.53877,16.35821],[77.54604,16.35693],[77.555,16.34877],[77.57272,16.34093],[77.59484,16.34318],[77.59524,16.33963],[77.58803,16.33337],[77.59083,16.32928],[77.59,16.3255],[77.59538,16.31812],[77.59202,16.30217],[77.59337,16.29744],[77.59772,16.29281],[77.582,16.29134],[77.56888,16.3036],[77.56321,16.30164],[77.54508,16.29171],[77.54082,16.28546],[77.5369,16.2668],[77.53282,16.27168],[77.52933,16.2728],[77.5296,16.27548],[77.52187,16.27803],[77.51386,16.27784],[77.51043,16.27459],[77.50481,16.2758],[77.50514,16.2676],[77.5024,16.26306],[77.49008,16.25523],[77.49298,16.24408],[77.49234,16.2293],[77.49506,16.22712],[77.50356,16.23094],[77.51362,16.23075],[77.51555,16.22837],[77.51577,16.2239],[77.51499,16.22196],[77.51215,16.22092],[77.50279,16.22366],[77.50115,16.22172],[77.49818,16.20956],[77.49949,16.19856],[77.49132,16.18453],[77.48615,16.16298],[77.49068,16.15958],[77.4916,16.13502],[77.48979,16.11962],[77.50022,16.12059],[77.50231,16.11717],[77.51081,16.11227],[77.51328,16.10802],[77.50875,16.10919],[77.50093,16.10619],[77.49378,16.08717],[77.49428,16.08565],[77.50601,16.0807],[77.50692,16.07897],[77.50261,16.05881],[77.49944,16.06102],[77.49651,16.05504],[77.49946,16.05372],[77.49681,16.04712],[77.49787,16.04409],[77.49535,16.0417],[77.494,16.03699],[77.49558,16.03098],[77.49803,16.02998],[77.49745,16.02867],[77.50225,16.02247],[77.50267,16.01871],[77.50434,16.01821],[77.50441,16.01133],[77.51405,16.00808],[77.50955,15.9804],[77.51109,15.97937],[77.51066,15.97516],[77.5164,15.96736],[77.51981,15.96691],[77.51344,15.92679],[77.53246,15.92409],[77.54898,15.91912],[77.58081,15.91848],[77.59331,15.91192],[77.59845,15.91241],[77.61139,15.91793],[77.62505,15.90904],[77.63647,15.89606],[77.6592,15.8855],[77.69275,15.88331],[77.71273,15.89452],[77.7241,15.89581],[77.73133,15.8937],[77.73881,15.88803],[77.74405,15.8861],[77.76079,15.88462],[77.76687,15.88614],[77.77723,15.88077],[77.78236,15.87617],[77.79292,15.87648],[77.80537,15.87428],[77.82731,15.88015],[77.83873,15.88509],[77.84597,15.88212],[77.85851,15.88371],[77.86232,15.88636],[77.87005,15.89724],[77.87822,15.90522],[77.88798,15.90608],[77.93696,15.8835],[77.94905,15.88476],[77.97533,15.88334],[77.99696,15.86632],[78.00886,15.86175],[78.0088,15.86478],[78.01503,15.87599],[78.02551,15.90236],[78.031,15.90296],[78.03189,15.90735],[78.04494,15.90414],[78.04682,15.8749],[78.05621,15.87465],[78.05583,15.86633],[78.07152,15.86175],[78.07136,15.85037],[78.07511,15.84718],[78.08488,15.84506],[78.08355,15.84092],[78.09879,15.83601],[78.11123,15.83836],[78.12332,15.83671],[78.13011,15.83809],[78.134,15.83626],[78.13428,15.84402],[78.13007,15.8507],[78.13554,15.8547],[78.15877,15.85376],[78.16679,15.85463],[78.17534,15.85808],[78.17667,15.87676],[78.18661,15.88481],[78.18993,15.89227],[78.17944,15.90193],[78.18443,15.90982],[78.20451,15.91798],[78.23214,15.92399],[78.25162,15.93522],[78.25362,15.94254],[78.25208,15.95383],[78.25333,15.96633],[78.25126,15.97681],[78.25982,15.99556],[78.25551,16.01285],[78.25749,16.02135],[78.26086,16.02582],[78.26698,16.02715],[78.27719,16.02432],[78.29942,16.01154],[78.31226,16.01151],[78.32193,16.01711],[78.32208,16.02868],[78.32656,16.03674],[78.34773,16.04747],[78.36197,16.0458],[78.36542,16.04678],[78.38439,16.0646],[78.39763,16.06613],[78.40145,16.07201],[78.40789,16.07481],[78.42867,16.07318],[78.43451,16.0712],[78.44111,16.07443],[78.47477,16.0685],[78.49865,16.05997],[78.52292,16.05369],[78.54205,16.04417],[78.55176,16.0428],[78.55763,16.04497],[78.58694,16.06344],[78.59239,16.0691],[78.59625,16.07797],[78.60163,16.08393],[78.60996,16.08713],[78.62724,16.08764],[78.65022,16.07881],[78.65042,16.07199],[78.66814,16.0545],[78.67262,16.04587],[78.68119,16.03479],[78.69937,16.02715],[78.72357,16.02012],[78.7355,16.00815],[78.74091,16.00866],[78.75296,16.01628],[78.76613,16.01644],[78.78548,16.02115],[78.79606,16.0284],[78.80121,16.03776],[78.8194,16.0483],[78.82765,16.06082],[78.83706,16.07037],[78.84029,16.07814],[78.84226,16.08591],[78.84231,16.09637],[78.83304,16.13732],[78.83385,16.14448],[78.85248,16.14886],[78.86463,16.14702],[78.87215,16.14397],[78.87651,16.13553],[78.87939,16.11761],[78.88698,16.09848],[78.88905,16.08519],[78.8956,16.08558],[78.90611,16.09483],[78.91793,16.10003],[78.92203,16.10431],[78.92162,16.12282],[78.92438,16.13084],[78.92428,16.13578],[78.9225,16.14003],[78.91503,16.14851],[78.91054,16.16407],[78.9047,16.17458],[78.90376,16.17935],[78.9054,16.18359],[78.91106,16.18843],[78.93001,16.19805],[78.94896,16.20354],[78.96027,16.20907],[78.96774,16.21112],[78.98572,16.21071],[79.00951,16.24021],[79.02918,16.24174],[79.04802,16.23867],[79.05858,16.23519],[79.07211,16.22707],[79.08411,16.23012],[79.09443,16.22429],[79.10158,16.22282],[79.10864,16.22848],[79.11972,16.23194],[79.12377,16.23102],[79.146,16.21397],[79.15695,16.20929],[79.17191,16.2104],[79.20628,16.22091],[79.21655,16.2274],[79.22063,16.23408],[79.22266,16.24186],[79.22459,16.27119],[79.23038,16.28249],[79.23104,16.31433],[79.23381,16.32199],[79.2343,16.33384],[79.23359,16.336],[79.21433,16.34935],[79.2102,16.35823],[79.21243,16.37347],[79.20844,16.37929],[79.20772,16.38475],[79.21156,16.44739],[79.21795,16.45382],[79.23336,16.4592],[79.21706,16.47756],[79.2146,16.48348],[79.21483,16.48791],[79.22088,16.51434],[79.22856,16.52477],[79.24125,16.52917],[79.24477,16.53181],[79.25027,16.54715],[79.25222,16.55925],[79.25684,16.56582],[79.26164,16.56692],[79.28136,16.56061],[79.29102,16.56157],[79.29552,16.56301],[79.30824,16.57415],[79.32643,16.57646],[79.34011,16.58264],[79.35369,16.57927],[79.37677,16.58275],[79.39682,16.57978],[79.41864,16.58025],[79.43305,16.59075],[79.43914,16.61291],[79.44717,16.61971],[79.45958,16.62366],[79.48333,16.6231],[79.49401,16.63304],[79.50385,16.63592],[79.51037,16.63574],[79.52942,16.63064],[79.54209,16.63225],[79.57563,16.64978],[79.59218,16.66988],[79.59892,16.67323],[79.60632,16.67131],[79.62149,16.66318],[79.63309,16.66042],[79.64828,16.67003],[79.66219,16.68665],[79.68154,16.69437],[79.71389,16.68924],[79.72289,16.69028],[79.72932,16.69551],[79.74461,16.71908],[79.77399,16.73078],[79.78583,16.73014],[79.79251,16.7255],[79.79887,16.71068],[79.8112,16.69568],[79.81726,16.69187],[79.82109,16.69151],[79.82816,16.69378],[79.85106,16.70584],[79.85885,16.70465],[79.87753,16.6973],[79.88551,16.68735],[79.89065,16.65888],[79.89372,16.65011],[79.91011,16.63392],[79.93235,16.63131],[79.94975,16.6359],[79.96477,16.64495],[79.97735,16.66228],[79.99741,16.70209],[80.00758,16.70884],[80.02215,16.71033],[80.03004,16.71441],[80.03664,16.72766],[80.05496,16.74465],[80.05386,16.76543],[80.06645,16.78641],[80.0706,16.80169],[80.06982,16.80833],[80.07325,16.81719],[80.07106,16.81809],[80.07079,16.8213],[80.0595,16.82519],[80.04818,16.83323],[80.0464,16.83868],[80.04684,16.85334],[80.02901,16.85202],[80.01704,16.85423],[80.00395,16.86179],[80.00363,16.8639],[79.99876,16.86521],[80.00156,16.86769],[80.00508,16.87645],[80.00458,16.88105],[80.01242,16.89268],[80.01738,16.91497],[80.02456,16.91506],[80.02706,16.91754],[80.0404,16.91808],[80.04455,16.92926],[80.05059,16.93642],[80.0519,16.9421],[80.04822,16.94943],[80.05245,16.95987],[80.05743,16.96404],[80.05544,16.97142],[80.08338,16.97018],[80.09156,16.96832],[80.09411,16.97558],[80.09516,16.99065],[80.10255,16.99096],[80.10963,16.98721],[80.1204,16.98789],[80.12048,16.99122],[80.12786,16.99227],[80.14024,16.99059],[80.14637,17.00026],[80.15336,17.00694],[80.15729,17.00741],[80.16202,17.00494],[80.16776,17.00559],[80.17017,17.01683],[80.17773,17.0166],[80.18038,17.01902],[80.18729,17.01995],[80.19263,17.02675],[80.192,17.03354],[80.19645,17.04403],[80.20409,17.03829],[80.19958,17.02649],[80.20206,17.01703],[80.21143,17.01027],[80.22287,17.00784],[80.22616,17.01532],[80.24007,17.00512],[80.2404,17.00215],[80.25607,17.0011],[80.25686,16.99893],[80.26488,16.99724],[80.2669,17.00134],[80.27047,17.00399],[80.28266,17.00767],[80.29359,16.99633],[80.29436,16.99383],[80.29027,16.98108],[80.29352,16.97666],[80.30659,16.97379],[80.30502,16.9537],[80.31647,16.94844],[80.31309,16.94053],[80.31387,16.92483],[80.31159,16.91666],[80.31561,16.9155],[80.32381,16.90643],[80.32497,16.90033],[80.3217,16.87963],[80.34401,16.87437],[80.3409,16.8597],[80.34938,16.85912],[80.37407,16.85239],[80.37339,16.8395],[80.37961,16.84108],[80.3737,16.82823],[80.38043,16.81745],[80.38317,16.81581],[80.38601,16.81625],[80.38733,16.81896],[80.38607,16.8249],[80.39084,16.82474],[80.39237,16.82793],[80.39668,16.8275],[80.39971,16.83355],[80.40422,16.83205],[80.4078,16.84823],[80.38347,16.85003],[80.37837,16.85199],[80.38278,16.8549],[80.37883,16.86156],[80.38413,16.86525],[80.38526,16.86329],[80.41212,16.8519],[80.42771,16.8498],[80.42794,16.84688],[80.42971,16.84673],[80.42859,16.83812],[80.4344,16.83743],[80.4382,16.83425],[80.44088,16.83427],[80.44141,16.83078],[80.45007,16.82723],[80.45327,16.82301],[80.46016,16.82004],[80.46424,16.81998],[80.46614,16.81635],[80.46383,16.80536],[80.46445,16.79545],[80.4863,16.79111],[80.49405,16.78369],[80.50439,16.77869],[80.52619,16.77459],[80.55158,16.77501],[80.57024,16.76801],[80.57687,16.77715],[80.58495,16.78355],[80.58716,16.78225],[80.58879,16.78532],[80.59685,16.7902],[80.59711,16.79221],[80.61297,16.79354],[80.5944,16.80281],[80.58455,16.81295],[80.57741,16.82333],[80.56553,16.82684],[80.56285,16.83284],[80.57014,16.84852],[80.57119,16.86112],[80.56831,16.86939],[80.57756,16.87895],[80.59591,16.88462],[80.59482,16.89889],[80.58768,16.90229],[80.58712,16.90418],[80.59234,16.90744],[80.60194,16.91859],[80.59691,16.92386],[80.59171,16.92299],[80.5904,16.92709],[80.58406,16.9288],[80.58132,16.93252],[80.58098,16.93615],[80.57547,16.93814],[80.57349,16.94132],[80.56702,16.94316],[80.54577,16.95693],[80.5347,16.96141],[80.5261,16.94788],[80.50546,16.95654],[80.49923,16.95633],[80.49559,16.94999],[80.49345,16.92743],[80.48203,16.93213],[80.47302,16.93848],[80.46743,16.94545],[80.44967,16.95476],[80.4194,16.96257],[80.40765,16.96397],[80.37136,16.97581],[80.3634,16.97607],[80.36662,16.98144],[80.37576,16.9887],[80.38692,17.00459],[80.38785,17.00927],[80.40703,17.0158],[80.4074,17.02561],[80.39576,17.03573],[80.39593,17.04633],[80.39825,17.04909],[80.39849,17.0526],[80.39382,17.05477],[80.39166,17.0613],[80.38573,17.06793],[80.39102,17.07467],[80.40063,17.08196],[80.40382,17.08196],[80.40443,17.08676],[80.40785,17.08785],[80.40903,17.0915],[80.41896,17.0923],[80.41779,17.08788],[80.41855,17.07843],[80.41705,17.07361],[80.43172,17.05552],[80.43863,17.03758],[80.4533,17.03476],[80.46486,17.03002],[80.47138,17.05037],[80.486,17.05208],[80.49093,17.05097],[80.49767,17.06265],[80.5054,17.06846],[80.51008,17.0869],[80.50403,17.09264],[80.5055,17.09824],[80.51288,17.10925],[80.51408,17.12205],[80.52759,17.11891],[80.54234,17.1246],[80.54882,17.13079],[80.55429,17.1336],[80.55732,17.13212],[80.56318,17.1331],[80.58002,17.15307],[80.60054,17.14228],[80.6064,17.13518],[80.61699,17.13158],[80.61825,17.12842],[80.6279,17.1299],[80.6363,17.12853],[80.64548,17.12352],[80.64204,17.1159],[80.64924,17.11136],[80.6656,17.10512],[80.67055,17.10119],[80.66805,17.09493],[80.65889,17.09156],[80.65709,17.08956],[80.64992,17.07137],[80.65381,17.06861],[80.6664,17.06748],[80.67107,17.07004],[80.67347,17.06664],[80.6764,17.07075],[80.67967,17.07203],[80.69496,17.07414],[80.69729,17.07679],[80.69634,17.08006],[80.69898,17.0816],[80.69945,17.08379],[80.70536,17.08078],[80.71058,17.08188],[80.7368,17.07769],[80.73888,17.07959],[80.74465,17.07694],[80.74647,17.07777],[80.75089,17.07262],[80.76498,17.06661],[80.79046,17.06346],[80.79874,17.06124],[80.81041,17.05532],[80.82882,17.05277],[80.84079,17.04671],[80.84531,17.03997],[80.85584,17.04652],[80.85911,17.05261],[80.86551,17.05856],[80.87149,17.06984],[80.87716,17.07043],[80.87611,17.07488],[80.86871,17.078],[80.86758,17.08045],[80.87521,17.09545],[80.87389,17.09854],[80.87643,17.10559],[80.87348,17.1141],[80.86833,17.12027],[80.86774,17.12313],[80.8693,17.12669],[80.87364,17.12877],[80.87825,17.13514],[80.8777,17.14981],[80.87944,17.16083],[80.8924,17.15937],[80.90703,17.15385],[80.91659,17.15369],[80.92399,17.15785],[80.92309,17.16129],[80.9252,17.16775],[80.92643,17.18348],[80.92267,17.18859],[80.91845,17.18974],[80.92105,17.20028],[80.91676,17.21096],[80.91676,17.21609],[80.91888,17.21974],[80.94128,17.21929],[80.96029,17.20407],[80.97629,17.20027],[80.99436,17.19132],[80.99845,17.19046],[81.00862,17.19186],[81.01543,17.1944],[81.03127,17.19033],[81.03687,17.19248],[81.04357,17.20233],[81.0495,17.20707],[81.05559,17.21956],[81.05461,17.22487],[81.07961,17.21528],[81.09037,17.2196],[81.10943,17.22347],[81.1276,17.22431],[81.15947,17.2308],[81.17398,17.23034],[81.17301,17.23203],[81.17502,17.23697],[81.18609,17.24849],[81.18759,17.25465],[81.18394,17.25835],[81.17818,17.26904],[81.17957,17.27837],[81.17666,17.28767],[81.18137,17.30445],[81.19041,17.32481],[81.21031,17.32605],[81.22205,17.32149],[81.23357,17.32036],[81.23913,17.32084],[81.23913,17.32349],[81.24463,17.32309],[81.24567,17.32579],[81.26825,17.32003],[81.27403,17.31719],[81.27851,17.32341],[81.28852,17.32807],[81.30111,17.34066],[81.3053,17.34591],[81.31199,17.36069],[81.31631,17.36448],[81.31647,17.369],[81.32264,17.37455],[81.31859,17.39842],[81.31238,17.40872],[81.30051,17.41271],[81.26854,17.41826],[81.25974,17.42222],[81.24551,17.43303],[81.24269,17.43206],[81.23633,17.43558],[81.22143,17.43944],[81.21905,17.44228],[81.21176,17.44174],[81.20526,17.44959],[81.2023,17.44066],[81.2027,17.43395],[81.1933,17.43563],[81.18298,17.44025],[81.17233,17.44904],[81.17555,17.46364],[81.14825,17.46365],[81.15968,17.48437],[81.14215,17.48859],[81.14487,17.49508],[81.14051,17.50466],[81.13848,17.51624],[81.12728,17.52642],[81.1245,17.52706],[81.11746,17.52207],[81.10111,17.5056],[81.09756,17.50426],[81.09135,17.50565],[81.08007,17.51505],[81.04721,17.51951],[81.0199,17.52003],[81.01483,17.52213],[81.01368,17.53662],[81.00843,17.547],[81.00281,17.55061],[80.9984,17.56468],[80.9888,17.57242],[80.98283,17.58274],[80.97673,17.58719],[80.96931,17.59838],[80.97552,17.61914],[80.98411,17.62621],[80.99592,17.62908],[81.00704,17.62171],[81.00955,17.64365],[81.00526,17.64876],[80.99209,17.65346],[80.98006,17.65261],[80.96237,17.64572],[80.95236,17.63703],[80.9381,17.63258],[80.89704,17.64064],[80.88274,17.64591],[80.87813,17.65067],[80.87607,17.66022],[80.8764,17.66838],[80.89079,17.68976],[80.89475,17.70291],[80.89099,17.71368],[80.89076,17.72188],[80.88555,17.73568],[80.90237,17.7462],[80.913,17.74592],[80.91458,17.74653],[80.91273,17.74948],[80.91444,17.75046],[80.915,17.74836],[80.91757,17.74811],[80.91946,17.7562],[80.92338,17.75729],[80.92785,17.76178],[80.94631,17.76019],[80.95562,17.77291],[80.95532,17.77462],[80.96343,17.77739],[80.96587,17.77978],[80.97217,17.77796],[80.97342,17.78012],[80.97688,17.77632],[80.98423,17.75566],[80.99132,17.74992],[81.01592,17.74503],[81.02763,17.74813],[81.04056,17.74761],[81.04416,17.74042],[81.05051,17.73401],[81.05817,17.73309],[81.06983,17.74071],[81.08258,17.7531],[81.09565,17.7622],[81.10426,17.77201],[81.10388,17.7732],[81.096,17.77449],[81.08978,17.79104],[81.08559,17.79802],[81.07326,17.78645],[81.04662,17.78231],[81.03898,17.78415],[81.03176,17.78847],[81.01767,17.79138],[81.00822,17.79937],[81.00346,17.81952],[81.00323,17.83062],[80.99645,17.84907],[80.99655,17.87175],[80.99417,17.8809],[80.99934,17.90329],[80.99834,17.91679],[80.98784,17.94445],[80.9792,18.00445],[80.97273,18.02483],[80.96954,18.03175],[80.96426,18.03814],[80.96976,18.04385],[80.96905,18.04643],[80.96244,18.06298],[80.95344,18.07863],[80.94926,18.08286],[80.95178,18.09012],[80.95551,18.12906],[80.97874,18.1508],[80.97903,18.17541],[80.95766,18.17355],[80.95162,18.16366],[80.94236,18.16038],[80.94164,18.15662],[80.9399,18.15543],[80.91417,18.14117],[80.89108,18.13598],[80.86667,18.13692],[80.86545,18.14145],[80.86016,18.14786],[80.8604,18.16139],[80.85708,18.17442],[80.85854,18.18645],[80.85291,18.202],[80.85521,18.20416],[80.86391,18.20265],[80.87097,18.20479],[80.87261,18.21058],[80.86594,18.23013],[80.86052,18.23199],[80.84343,18.23244],[80.83672,18.23892],[80.82359,18.23608],[80.8226,18.22411],[80.82407,18.19104],[80.81747,18.18911],[80.81326,18.18019],[80.79911,18.16817],[80.77544,18.16674],[80.76003,18.16763],[80.74497,18.17033],[80.7369,18.17716],[80.7372,18.22209],[80.77678,18.24285],[80.79265,18.24945],[80.79428,18.25456],[80.79406,18.26009],[80.79186,18.26274],[80.78011,18.26663],[80.77548,18.2782],[80.76884,18.28794],[80.76186,18.28823],[80.75949,18.28987],[80.75683,18.29506],[80.75874,18.2993],[80.75772,18.30191],[80.74872,18.30892],[80.74765,18.32996],[80.74214,18.3411],[80.7315,18.35491],[80.7269,18.36913],[80.73023,18.37592],[80.7294,18.37884],[80.72276,18.38456],[80.71968,18.3908],[80.73217,18.40122],[80.73487,18.41284],[80.72286,18.41518],[80.72083,18.41104],[80.71827,18.40973],[80.69895,18.42143],[80.6962,18.42473],[80.69824,18.43756],[80.70531,18.43986],[80.70172,18.44459],[80.69576,18.44457],[80.68806,18.44736],[80.6861,18.45826],[80.67873,18.46077],[80.67334,18.46656],[80.65531,18.47586],[80.6513,18.4859],[80.63721,18.50435],[80.63685,18.50702],[80.64094,18.51151],[80.63757,18.52253],[80.63109,18.5219],[80.62276,18.52856],[80.6185,18.52767],[80.61064,18.54237],[80.59991,18.55304],[80.59096,18.5579],[80.57141,18.56468],[80.56749,18.57125],[80.55643,18.57974],[80.54228,18.58691],[80.53451,18.58835],[80.53525,18.59074],[80.53074,18.59894],[80.52813,18.60266],[80.51929,18.60865],[80.51883,18.61431],[80.51466,18.61933],[80.5016,18.62157],[80.48826,18.63109],[80.47917,18.62873],[80.47752,18.62584],[80.46554,18.62394],[80.45612,18.62936],[80.43039,18.61646],[80.42762,18.61288],[80.42241,18.61512],[80.42,18.6104],[80.40914,18.60979],[80.39585,18.60493],[80.39415,18.60061],[80.38845,18.59666],[80.37827,18.60891],[80.37516,18.61066],[80.36616,18.60706],[80.36295,18.60323],[80.36215,18.59915],[80.35645,18.59508],[80.34812,18.59414],[80.3349,18.61195],[80.33102,18.62821],[80.32749,18.63538],[80.31867,18.64215],[80.30416,18.68604],[80.28417,18.7168],[80.27995,18.72074],[80.27149,18.7233],[80.26614,18.72055],[80.26501,18.7175],[80.25223,18.70681],[80.23864,18.70573],[80.23366,18.70241],[80.22968,18.70186],[80.22628,18.7056],[80.21933,18.70792],[80.21277,18.70572],[80.20043,18.69256],[80.19937,18.68321],[80.19657,18.6808],[80.19047,18.68046],[80.1787,18.68327],[80.17416,18.68818],[80.16862,18.69971],[80.15771,18.70098],[80.14846,18.69309],[80.14002,18.693],[80.12856,18.68743],[80.12438,18.68136],[80.11812,18.68052],[80.11225,18.68288],[80.10415,18.69157],[80.09904,18.69448],[80.08851,18.70728],[80.08207,18.70725],[80.07459,18.71052],[80.06926,18.71957],[80.06462,18.72326],[80.05694,18.72332],[80.0528,18.72506],[80.04141,18.74299],[80.03868,18.75297],[80.03455,18.75499],[80.02498,18.75494],[80.01854,18.77038],[80.00099,18.77607],[79.99809,18.77592],[79.99583,18.77082],[79.99305,18.76993],[79.96415,18.77382],[79.95915,18.7773],[79.94949,18.78915],[79.929,18.80263],[79.92105,18.81023],[79.91403,18.82381],[79.91578,18.82991],[79.92825,18.84091],[79.94138,18.84604],[79.94764,18.85018],[79.95851,18.85942],[79.96161,18.86663],[79.95867,18.88861],[79.95361,18.9045],[79.95742,18.92279],[79.95705,18.94288],[79.94162,18.99209],[79.94096,19.00023],[79.9424,19.00066],[79.94256,19.00698],[79.94026,19.03256],[79.93707,19.04269],[79.93191,19.04808],[79.92792,19.04932],[79.92063,19.04971],[79.89922,19.04024],[79.87704,19.0388],[79.8711,19.04102],[79.86859,19.04424],[79.866,19.0542],[79.86338,19.06869],[79.8634,19.07782],[79.85896,19.09276],[79.85843,19.10242],[79.86146,19.11226],[79.87375,19.12405],[79.92532,19.15159],[79.94567,19.16894],[79.9465,19.17425],[79.94528,19.17914],[79.92545,19.21064],[79.92422,19.21546],[79.92474,19.2273],[79.93085,19.2508],[79.93636,19.26413],[79.95057,19.28904],[79.95482,19.29376],[79.96227,19.29735],[79.96587,19.30304],[79.96557,19.31307],[79.95909,19.33086],[79.95908,19.33594],[79.96797,19.35663],[79.97023,19.37103],[79.96953,19.37469],[79.97142,19.37681],[79.97183,19.38156],[79.97404,19.3855],[79.97846,19.3872],[79.97972,19.3894],[79.97718,19.39418],[79.97794,19.40036],[79.9747,19.40436],[79.97469,19.41099],[79.97239,19.41621],[79.95248,19.44095],[79.94761,19.44968],[79.94822,19.4606],[79.94644,19.46782],[79.94388,19.47071],[79.93241,19.47654],[79.91487,19.49584],[79.90196,19.5009],[79.88085,19.50357],[79.87095,19.50906],[79.86458,19.51051],[79.85532,19.52103],[79.84817,19.52653],[79.84564,19.5328],[79.83287,19.53855],[79.82842,19.54341],[79.8249,19.55053],[79.82411,19.55679],[79.82125,19.56021],[79.82115,19.56422],[79.81483,19.57542],[79.79858,19.58197],[79.77861,19.59967],[79.75345,19.60753],[79.74407,19.6087],[79.73756,19.6064],[79.71798,19.58945],[79.709,19.58448],[79.68895,19.58387],[79.67532,19.57971],[79.65829,19.57971],[79.63546,19.57594],[79.62792,19.57317],[79.61414,19.55968],[79.61166,19.54752],[79.60604,19.53283],[79.60297,19.51455],[79.60046,19.50951],[79.59615,19.50728],[79.58404,19.50913],[79.569,19.51827],[79.55293,19.52417],[79.54839,19.53162],[79.54538,19.5507],[79.54248,19.55423],[79.53993,19.55466],[79.52922,19.55105],[79.51861,19.54311],[79.52081,19.53489],[79.51859,19.52018],[79.51483,19.51944],[79.50226,19.51164],[79.50076,19.50739],[79.49839,19.50569],[79.48263,19.50628],[79.47142,19.50019],[79.46896,19.50957],[79.45676,19.51913],[79.45327,19.5201],[79.44605,19.52692],[79.44221,19.52798],[79.43333,19.53726],[79.42256,19.53804],[79.423,19.53016],[79.42047,19.52976],[79.40532,19.53567],[79.40171,19.53845],[79.39621,19.54806],[79.39175,19.55287],[79.38732,19.55471],[79.38568,19.55833],[79.3768,19.55888],[79.37275,19.56099],[79.36947,19.5727],[79.36708,19.57294],[79.36573,19.57633],[79.35739,19.57758],[79.33481,19.57479],[79.32618,19.57743],[79.31844,19.57672],[79.31854,19.5677],[79.31393,19.56642],[79.30985,19.57151],[79.31026,19.57796],[79.30684,19.59656],[79.28436,19.59552],[79.27295,19.59884],[79.2511,19.61587],[79.24356,19.61669],[79.23864,19.60617],[79.24441,19.59487],[79.25312,19.59329],[79.25103,19.5775],[79.24622,19.56752],[79.23712,19.55714],[79.24002,19.53524],[79.23373,19.52001],[79.22116,19.52099],[79.21403,19.51119],[79.20746,19.50613],[79.20738,19.49763],[79.20385,19.49408],[79.20685,19.48582],[79.21075,19.48174],[79.21577,19.48094],[79.22319,19.47235],[79.22359,19.46907],[79.21568,19.46464],[79.20821,19.46497],[79.19031,19.45898],[79.18007,19.46188],[79.16783,19.47236],[79.16135,19.48826],[79.15755,19.48929],[79.14299,19.50053],[79.13861,19.50048],[79.13566,19.50615],[79.13311,19.50783],[79.12093,19.512],[79.11434,19.51976],[79.10539,19.52238],[79.09803,19.53203],[79.0769,19.5324],[79.06769,19.53566],[79.06534,19.53963],[79.04601,19.54833],[79.03945,19.5476],[79.02402,19.54178],[79.00687,19.54202],[78.99803,19.54008],[78.99775,19.54907],[78.98125,19.56084],[78.97985,19.55766],[78.9768,19.55694],[78.97422,19.54938],[78.9521,19.54886],[78.94044,19.55187],[78.93767,19.56187],[78.94649,19.56161],[78.95254,19.56498],[78.96487,19.57358],[78.97283,19.58239],[78.97178,19.59001],[78.95914,19.59547],[78.95562,19.60017],[78.95537,19.61912],[78.96119,19.63169],[78.96185,19.63744],[78.95739,19.64717],[78.95556,19.65579],[78.94423,19.66174],[78.91972,19.662],[78.91986,19.66697],[78.91582,19.6669],[78.91165,19.66911],[78.90768,19.66799],[78.90354,19.67001],[78.89601,19.66446],[78.88645,19.66245],[78.89048,19.65941],[78.88673,19.65507],[78.86809,19.65903],[78.86159,19.65741],[78.85192,19.65836],[78.85584,19.67731],[78.85569,19.68666],[78.85715,19.68962],[78.85992,19.68949],[78.84943,19.72197],[78.85237,19.7279],[78.85115,19.73613],[78.84795,19.7355],[78.84532,19.74688],[78.8404,19.75634],[78.84096,19.76189],[78.83351,19.76012],[78.82588,19.75514],[78.81692,19.76183],[78.80691,19.75689],[78.80216,19.75653],[78.79693,19.76001],[78.79563,19.76727],[78.7863,19.77653],[78.78237,19.77841],[78.77734,19.77986],[78.77112,19.77938],[78.75637,19.77251],[78.75171,19.77466],[78.74611,19.78117],[78.74006,19.78313],[78.73002,19.78023],[78.72415,19.76775],[78.71916,19.76665],[78.70609,19.7723],[78.70137,19.78674],[78.69256,19.79103],[78.67513,19.79486],[78.66635,19.79975],[78.65505,19.80019],[78.64274,19.80781],[78.62552,19.80816],[78.61899,19.80998],[78.61115,19.81632],[78.60731,19.81761],[78.58612,19.81879],[78.57229,19.81585],[78.56323,19.82108],[78.55201,19.82408],[78.54229,19.82383],[78.53794,19.82005],[78.53078,19.81845],[78.51502,19.81893],[78.50895,19.81205],[78.50722,19.79755],[78.49521,19.79263],[78.49024,19.79268],[78.48503,19.79605],[78.48315,19.80381],[78.47246,19.81734],[78.46923,19.81772],[78.45389,19.81295],[78.43168,19.81488],[78.42295,19.81763],[78.40028,19.83403],[78.38598,19.84609],[78.38179,19.85704],[78.38304,19.87391],[78.38067,19.88044],[78.36964,19.87977],[78.36043,19.8834],[78.33565,19.88358]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-UK","area_level":"State","area_name":"Uttarakhand","geometry_source":"SOI_States","same_as":"LGD/5/State"},"geometry":{"type":"Polygon","coordinates":[[[79.25028,31.25536],[79.25239,31.266],[79.26988,31.27858],[79.27186,31.28319],[79.2715,31.28677],[79.26577,31.29321],[79.25184,31.30177],[79.23921,31.31421],[79.23936,31.31794],[79.2465,31.3253],[79.24648,31.33004],[79.225,31.3387],[79.21157,31.34639],[79.19221,31.36281],[79.18235,31.38517],[79.14357,31.42547],[79.12742,31.43486],[79.10848,31.43763],[79.09956,31.44332],[79.09,31.44499],[79.07788,31.45268],[79.07046,31.4601],[79.06424,31.46208],[79.06174,31.46135],[79.05592,31.455],[79.05247,31.44694],[79.05085,31.44003],[79.05266,31.4231],[79.05151,31.41979],[79.03503,31.40792],[79.02374,31.39637],[79.01763,31.38556],[79.01192,31.36772],[79.01083,31.35708],[78.98991,31.3453],[78.96698,31.33689],[78.94759,31.31952],[78.94422,31.30793],[78.94166,31.27421],[78.93707,31.26062],[78.93269,31.25294],[78.9121,31.25515],[78.9117,31.253],[78.91155,31.25147],[78.9161,31.24859],[78.91919,31.24222],[78.91966,31.23617],[78.92203,31.23154],[78.92206,31.22531],[78.92609,31.2231],[78.92605,31.22007],[78.93113,31.21605],[78.94773,31.21677],[78.94868,31.21331],[78.94383,31.20648],[78.94703,31.20279],[78.948,31.19851],[78.95831,31.19037],[78.95753,31.18659],[78.97266,31.17991],[78.9792,31.17902],[78.9808,31.17616],[78.98373,31.17613],[78.98591,31.17383],[78.9905,31.16127],[78.98822,31.15421],[78.99083,31.14816],[78.98758,31.14329],[78.99076,31.13806],[78.9996,31.13469],[79.00366,31.12154],[79.0068,31.11853],[79.00892,31.10992],[79.00216,31.11242],[78.99855,31.10995],[78.99004,31.10852],[78.97299,31.10808],[78.96308,31.10118],[78.95073,31.09798],[78.94512,31.10057],[78.93223,31.10068],[78.92593,31.10944],[78.92057,31.11072],[78.91273,31.10764],[78.91231,31.10208],[78.9086,31.09886],[78.90044,31.09979],[78.89064,31.0969],[78.88543,31.09872],[78.87289,31.10886],[78.86524,31.12001],[78.85352,31.12208],[78.84801,31.12511],[78.84147,31.12971],[78.83814,31.13834],[78.83121,31.1406],[78.82734,31.15262],[78.82296,31.15774],[78.82489,31.16351],[78.81807,31.16778],[78.81304,31.16888],[78.81072,31.17187],[78.81047,31.18026],[78.8143,31.18754],[78.81738,31.18961],[78.81641,31.19437],[78.80991,31.19828],[78.79675,31.19641],[78.77916,31.18889],[78.76518,31.18576],[78.75641,31.18783],[78.72838,31.18965],[78.71833,31.18777],[78.7097,31.1897],[78.70336,31.189],[78.695,31.19217],[78.68677,31.19776],[78.67882,31.19625],[78.6719,31.19688],[78.66735,31.19075],[78.66172,31.18923],[78.65801,31.18504],[78.66001,31.19108],[78.65654,31.19357],[78.65732,31.19573],[78.64907,31.20217],[78.6493,31.21087],[78.64704,31.21472],[78.63655,31.21484],[78.62597,31.21787],[78.62257,31.22407],[78.60934,31.22926],[78.60092,31.2281],[78.59676,31.22512],[78.5895,31.22667],[78.57824,31.22526],[78.57486,31.22122],[78.56807,31.21915],[78.56549,31.21348],[78.55162,31.19991],[78.52652,31.19646],[78.50756,31.19587],[78.48375,31.19894],[78.48427,31.20121],[78.48145,31.20451],[78.4798,31.21378],[78.47286,31.21845],[78.46174,31.23603],[78.45771,31.23778],[78.45571,31.24102],[78.44999,31.24064],[78.44359,31.24435],[78.43658,31.25412],[78.43425,31.25458],[78.43116,31.25275],[78.42591,31.24425],[78.42074,31.24405],[78.4142,31.23961],[78.40695,31.24219],[78.40283,31.24789],[78.40717,31.25621],[78.39772,31.26622],[78.39617,31.27531],[78.38951,31.2742],[78.3863,31.27143],[78.38354,31.28248],[78.37032,31.28633],[78.35197,31.2806],[78.34561,31.28059],[78.33991,31.28267],[78.33187,31.27761],[78.31803,31.27892],[78.31678,31.28153],[78.31116,31.28314],[78.30804,31.27554],[78.31006,31.27409],[78.31045,31.27109],[78.30633,31.25989],[78.30255,31.25902],[78.29642,31.26113],[78.29188,31.25995],[78.28287,31.26621],[78.27996,31.26247],[78.27603,31.26151],[78.2735,31.25589],[78.26908,31.25232],[78.26868,31.24858],[78.26264,31.24519],[78.26047,31.23975],[78.25539,31.23851],[78.24951,31.24004],[78.25071,31.23331],[78.24695,31.23041],[78.24317,31.2293],[78.23709,31.23267],[78.22643,31.23501],[78.22032,31.23394],[78.21626,31.22971],[78.21517,31.222],[78.21244,31.21957],[78.20916,31.22012],[78.19948,31.2172],[78.19566,31.21971],[78.19218,31.22476],[78.18703,31.22705],[78.17976,31.22565],[78.17381,31.22684],[78.16715,31.22465],[78.16023,31.22548],[78.1581,31.2189],[78.15362,31.21822],[78.14842,31.2137],[78.14768,31.21059],[78.13338,31.20833],[78.1286,31.20078],[78.12348,31.20015],[78.10362,31.18538],[78.09714,31.18421],[78.08774,31.18724],[78.06596,31.18717],[78.05121,31.17989],[78.04264,31.1785],[78.04104,31.17292],[78.03384,31.16971],[78.02971,31.16411],[78.03034,31.15097],[78.02062,31.15155],[78.01445,31.15778],[78.00863,31.16082],[78.00082,31.16195],[77.99094,31.16005],[77.98472,31.15695],[77.98059,31.16212],[77.97327,31.16615],[77.96732,31.17337],[77.9589,31.17092],[77.95362,31.16595],[77.95149,31.16131],[77.94316,31.16126],[77.93516,31.15469],[77.92479,31.15043],[77.92152,31.15047],[77.91581,31.15389],[77.90862,31.15406],[77.89874,31.15023],[77.90045,31.1422],[77.89401,31.13396],[77.88905,31.13299],[77.89068,31.12175],[77.88876,31.11921],[77.88241,31.11772],[77.88052,31.11479],[77.87803,31.11503],[77.87845,31.11633],[77.87323,31.11497],[77.86382,31.10851],[77.86047,31.10159],[77.86374,31.09396],[77.85124,31.07337],[77.83806,31.07265],[77.82893,31.05827],[77.82436,31.05545],[77.82205,31.05519],[77.82296,31.05866],[77.81136,31.0591],[77.81679,31.05669],[77.81604,31.04998],[77.82162,31.04671],[77.82137,31.04274],[77.82982,31.02876],[77.82288,31.02928],[77.81747,31.03304],[77.81145,31.03163],[77.807,31.02677],[77.80751,31.01621],[77.80994,31.01099],[77.82501,31.0098],[77.82199,31.00429],[77.83182,30.99399],[77.82417,30.98842],[77.82513,30.98509],[77.82406,30.98047],[77.82243,30.97655],[77.8163,30.97278],[77.81438,30.96178],[77.82419,30.95711],[77.83219,30.95959],[77.83769,30.95518],[77.8376,30.95317],[77.83473,30.95205],[77.82862,30.95329],[77.82436,30.9505],[77.81398,30.95383],[77.79367,30.96875],[77.77238,30.97435],[77.76917,30.97419],[77.76659,30.97013],[77.75409,30.96448],[77.74901,30.95348],[77.75075,30.94349],[77.75404,30.93754],[77.75274,30.93381],[77.76394,30.93045],[77.7628,30.91818],[77.76589,30.91968],[77.76752,30.91733],[77.7718,30.91861],[77.78265,30.91673],[77.78473,30.91715],[77.78653,30.92026],[77.79182,30.92173],[77.80493,30.92359],[77.81153,30.92327],[77.8133,30.92187],[77.81094,30.91663],[77.81587,30.91032],[77.81528,30.90438],[77.80883,30.8967],[77.80138,30.89332],[77.79886,30.86804],[77.80359,30.86499],[77.80568,30.85321],[77.78624,30.85715],[77.77923,30.86037],[77.77738,30.86315],[77.77613,30.87541],[77.77341,30.87754],[77.76321,30.8804],[77.75822,30.8768],[77.7561,30.87268],[77.75719,30.85998],[77.75418,30.85547],[77.74587,30.85112],[77.74402,30.84659],[77.75768,30.83513],[77.76128,30.82607],[77.74837,30.82163],[77.7456,30.81314],[77.73497,30.80448],[77.73294,30.80108],[77.73187,30.79187],[77.72136,30.77579],[77.71512,30.77072],[77.70378,30.76516],[77.70896,30.75249],[77.70517,30.75078],[77.70243,30.74627],[77.70505,30.74275],[77.70879,30.73972],[77.72153,30.7416],[77.72836,30.73414],[77.73319,30.73534],[77.7373,30.73034],[77.73659,30.72415],[77.74669,30.71972],[77.74741,30.71697],[77.74562,30.71387],[77.75582,30.70692],[77.7504,30.70011],[77.75258,30.69665],[77.74694,30.69443],[77.74841,30.68775],[77.74675,30.68304],[77.74741,30.67985],[77.75916,30.67577],[77.75975,30.67309],[77.76421,30.67082],[77.77251,30.6691],[77.77458,30.66476],[77.78119,30.65997],[77.78445,30.65956],[77.78853,30.66228],[77.79209,30.66017],[77.79249,30.65693],[77.7875,30.65562],[77.78123,30.64667],[77.78674,30.6417],[77.78639,30.6367],[77.79062,30.634],[77.78605,30.62994],[77.78614,30.62442],[77.79255,30.62091],[77.79626,30.61365],[77.78672,30.61431],[77.78025,30.61284],[77.77111,30.61638],[77.76894,30.61452],[77.77107,30.61053],[77.77022,30.6049],[77.77241,30.59855],[77.77167,30.5969],[77.76435,30.59592],[77.75564,30.60469],[77.7519,30.60178],[77.7461,30.60389],[77.74325,30.60149],[77.74679,30.59746],[77.74325,30.59616],[77.74287,30.59385],[77.75664,30.58561],[77.76066,30.57752],[77.76714,30.57115],[77.76752,30.56535],[77.77403,30.55784],[77.78357,30.55983],[77.79411,30.5532],[77.79718,30.55406],[77.79964,30.55766],[77.80637,30.55449],[77.81399,30.56008],[77.81785,30.56102],[77.8226,30.55378],[77.82001,30.54803],[77.82035,30.54519],[77.82351,30.54196],[77.8278,30.531],[77.82586,30.52625],[77.81982,30.52408],[77.81852,30.50807],[77.81505,30.50513],[77.80829,30.50478],[77.79986,30.50106],[77.78221,30.50027],[77.77567,30.49431],[77.76436,30.49108],[77.7394,30.47602],[77.73172,30.47314],[77.72098,30.473],[77.7072,30.45924],[77.69794,30.45586],[77.69025,30.44802],[77.67077,30.44419],[77.66298,30.44704],[77.65237,30.44805],[77.649,30.44515],[77.64865,30.44032],[77.64507,30.43255],[77.6415,30.43179],[77.637,30.43319],[77.63192,30.43125],[77.62595,30.43469],[77.62268,30.43466],[77.59871,30.42816],[77.58445,30.42051],[77.57427,30.41338],[77.57232,30.41045],[77.57604,30.39739],[77.58255,30.39987],[77.58193,30.40134],[77.58546,30.40492],[77.59043,30.40628],[77.59831,30.40488],[77.59963,30.40104],[77.6017,30.3997],[77.60288,30.40293],[77.60505,30.40171],[77.61849,30.40238],[77.62289,30.40519],[77.62504,30.40453],[77.62552,30.40175],[77.62925,30.3979],[77.63591,30.39901],[77.6409,30.40279],[77.64726,30.40473],[77.65279,30.40122],[77.65665,30.40094],[77.65973,30.39056],[77.67242,30.39047],[77.67655,30.38778],[77.67623,30.38032],[77.67808,30.37566],[77.6831,30.37646],[77.68607,30.37925],[77.6904,30.37595],[77.69472,30.36574],[77.70224,30.35562],[77.70608,30.34707],[77.70897,30.345],[77.70978,30.34161],[77.71355,30.3399],[77.72185,30.33021],[77.73209,30.32809],[77.74701,30.3201],[77.76116,30.31829],[77.76578,30.31415],[77.78425,30.30565],[77.78571,30.30298],[77.79424,30.29716],[77.83283,30.28018],[77.83902,30.27453],[77.84075,30.27376],[77.84217,30.27639],[77.84717,30.27659],[77.84653,30.27164],[77.85869,30.27141],[77.86567,30.26582],[77.86933,30.26611],[77.87958,30.26195],[77.88166,30.26227],[77.88574,30.26698],[77.894,30.26537],[77.91089,30.25699],[77.93699,30.24916],[77.93822,30.24384],[77.94147,30.23979],[77.94413,30.23925],[77.94982,30.24231],[77.95151,30.24528],[77.9565,30.24545],[77.9617,30.24237],[77.958,30.24224],[77.94692,30.23406],[77.94602,30.23036],[77.94116,30.22788],[77.93839,30.22434],[77.93793,30.22084],[77.9348,30.21928],[77.93213,30.21439],[77.91894,30.21128],[77.91802,30.20307],[77.91393,30.19647],[77.91483,30.19156],[77.91175,30.18665],[77.91202,30.18253],[77.90028,30.17259],[77.88893,30.15732],[77.88118,30.15073],[77.87688,30.13923],[77.86842,30.12683],[77.86609,30.11913],[77.86042,30.11319],[77.84936,30.1047],[77.84161,30.10265],[77.83682,30.10352],[77.83661,30.09844],[77.83303,30.09458],[77.83428,30.09052],[77.82805,30.08592],[77.82167,30.08568],[77.81045,30.09272],[77.8012,30.09548],[77.79917,30.09047],[77.7997,30.08719],[77.79675,30.08528],[77.79845,30.08355],[77.79477,30.08125],[77.79582,30.07986],[77.79084,30.07502],[77.78113,30.06048],[77.77482,30.05522],[77.77114,30.04802],[77.77005,30.04255],[77.78137,30.0335],[77.77938,30.03067],[77.78549,30.02789],[77.78276,30.02385],[77.78198,30.01863],[77.77581,30.01797],[77.77391,30.01475],[77.77168,30.01498],[77.76196,30.0093],[77.76423,30.00445],[77.75538,29.999],[77.76038,29.99511],[77.75527,29.99198],[77.75034,29.98587],[77.74768,29.986],[77.74371,29.98336],[77.74603,29.98055],[77.7402,29.97529],[77.74062,29.96956],[77.7333,29.95593],[77.73701,29.95376],[77.74836,29.95164],[77.74492,29.94784],[77.74723,29.94664],[77.743,29.94381],[77.74299,29.94094],[77.74062,29.94219],[77.73047,29.9317],[77.74289,29.92493],[77.74298,29.9181],[77.74778,29.91117],[77.73653,29.90666],[77.7386,29.90321],[77.73367,29.90157],[77.73392,29.89964],[77.72927,29.90051],[77.72856,29.89755],[77.73186,29.8928],[77.72507,29.89031],[77.72328,29.88854],[77.72412,29.88678],[77.72275,29.88442],[77.71846,29.8874],[77.71602,29.88588],[77.71471,29.88408],[77.71695,29.87847],[77.72077,29.87616],[77.71521,29.87299],[77.7143,29.86945],[77.71786,29.86679],[77.71864,29.86545],[77.71652,29.86319],[77.72344,29.85505],[77.72567,29.85613],[77.72657,29.85424],[77.74189,29.85185],[77.74389,29.84758],[77.74145,29.84671],[77.74404,29.83988],[77.74022,29.83473],[77.7557,29.8253],[77.75399,29.8208],[77.75899,29.8185],[77.75608,29.81284],[77.75158,29.81068],[77.76322,29.80263],[77.76545,29.79592],[77.77467,29.79102],[77.77219,29.78641],[77.77396,29.78401],[77.77238,29.78],[77.77786,29.77498],[77.77312,29.7687],[77.78036,29.76502],[77.77052,29.75022],[77.76931,29.75059],[77.76953,29.74534],[77.78268,29.73624],[77.76973,29.7176],[77.77172,29.71385],[77.77872,29.71068],[77.78334,29.7094],[77.78558,29.71057],[77.79185,29.70994],[77.8026,29.70339],[77.81048,29.70237],[77.79905,29.68619],[77.80924,29.67986],[77.81534,29.67831],[77.83005,29.6683],[77.83195,29.67041],[77.83568,29.66956],[77.83678,29.67171],[77.83862,29.67049],[77.8431,29.67522],[77.84709,29.67541],[77.85025,29.67998],[77.85373,29.68154],[77.8557,29.68006],[77.86281,29.68945],[77.8656,29.68781],[77.8696,29.68899],[77.87471,29.68729],[77.87948,29.69291],[77.87901,29.70024],[77.88265,29.70243],[77.8909,29.69886],[77.8945,29.69973],[77.89661,29.7022],[77.90207,29.70119],[77.91253,29.69592],[77.91396,29.69848],[77.92007,29.69929],[77.91577,29.70221],[77.91692,29.70556],[77.91979,29.705],[77.92644,29.71422],[77.93457,29.71112],[77.93815,29.71448],[77.94094,29.71084],[77.94554,29.71306],[77.95302,29.70735],[77.94957,29.70413],[77.95098,29.70159],[77.93989,29.69608],[77.94567,29.69182],[77.94589,29.68996],[77.95093,29.68736],[77.94744,29.68309],[77.94937,29.6798],[77.96996,29.66643],[77.96955,29.65623],[77.96645,29.65014],[77.97945,29.64266],[77.98186,29.64512],[77.98379,29.64364],[77.97739,29.63125],[77.97597,29.61738],[77.97769,29.61345],[77.96021,29.61165],[77.94842,29.61691],[77.94277,29.60865],[77.9333,29.60051],[77.94034,29.59271],[77.9675,29.58007],[77.96889,29.58141],[77.97311,29.58031],[77.97493,29.58502],[77.97997,29.58515],[77.98272,29.58356],[77.98645,29.58438],[77.99353,29.59122],[77.99517,29.5958],[77.99617,29.59146],[78.0008,29.58621],[78.0216,29.58085],[78.01524,29.58725],[78.01828,29.5982],[78.03109,29.60832],[78.03307,29.61161],[78.03432,29.61038],[78.04649,29.61607],[78.04885,29.61461],[78.05711,29.62669],[78.05747,29.63069],[78.06855,29.63042],[78.08188,29.62514],[78.08669,29.62503],[78.08146,29.63514],[78.0934,29.64045],[78.10403,29.64123],[78.11929,29.64997],[78.13054,29.65254],[78.13359,29.6595],[78.13758,29.66354],[78.17162,29.69157],[78.18051,29.69683],[78.1884,29.69229],[78.19603,29.69268],[78.20201,29.71443],[78.20358,29.72826],[78.20016,29.73029],[78.20392,29.73727],[78.22165,29.74066],[78.22958,29.73669],[78.24023,29.74143],[78.24592,29.73452],[78.25009,29.73426],[78.25565,29.73825],[78.25975,29.73834],[78.26219,29.74355],[78.26703,29.74284],[78.2683,29.74645],[78.28095,29.75576],[78.28453,29.76178],[78.29268,29.75906],[78.30096,29.76825],[78.30061,29.77104],[78.30363,29.77476],[78.30687,29.77551],[78.30952,29.77996],[78.3129,29.77941],[78.3211,29.7855],[78.32439,29.78986],[78.33074,29.79318],[78.33316,29.79267],[78.33566,29.79661],[78.34929,29.78848],[78.39276,29.76739],[78.40906,29.76338],[78.42851,29.76446],[78.44514,29.75038],[78.45564,29.74515],[78.47369,29.73988],[78.48782,29.73837],[78.50096,29.7329],[78.5102,29.72661],[78.51654,29.7194],[78.51871,29.70177],[78.52145,29.69347],[78.52149,29.65782],[78.53267,29.63875],[78.54081,29.62709],[78.54424,29.62555],[78.56507,29.60109],[78.58036,29.58637],[78.61773,29.55803],[78.62425,29.55654],[78.63851,29.54666],[78.65047,29.546],[78.69972,29.50621],[78.70626,29.50268],[78.71121,29.50036],[78.72009,29.50217],[78.73059,29.50038],[78.73273,29.50199],[78.73819,29.50019],[78.74501,29.50078],[78.74919,29.49596],[78.75359,29.49619],[78.75655,29.49459],[78.75903,29.49064],[78.77757,29.47714],[78.79967,29.46457],[78.81056,29.46581],[78.82274,29.45975],[78.84108,29.45715],[78.88087,29.44338],[78.9002,29.44149],[78.91872,29.43426],[78.92534,29.43383],[78.93634,29.43822],[78.94233,29.43857],[78.94038,29.43756],[78.94024,29.43526],[78.94312,29.43469],[78.93831,29.43401],[78.92571,29.42595],[78.92398,29.41881],[78.91875,29.40988],[78.91838,29.40351],[78.91148,29.39961],[78.91179,29.39375],[78.90507,29.38951],[78.90219,29.38495],[78.89216,29.38096],[78.88734,29.37305],[78.87774,29.37497],[78.87573,29.37198],[78.87958,29.36936],[78.87871,29.36601],[78.86032,29.3582],[78.85193,29.36033],[78.85113,29.35552],[78.85598,29.34972],[78.84987,29.34482],[78.84558,29.34419],[78.84024,29.34597],[78.83576,29.35046],[78.83074,29.35149],[78.82745,29.35421],[78.82834,29.35967],[78.82636,29.36143],[78.8276,29.36377],[78.82586,29.36555],[78.83026,29.36801],[78.82473,29.36713],[78.82215,29.35914],[78.81051,29.34012],[78.7999,29.33458],[78.80286,29.33125],[78.8012,29.32524],[78.80472,29.31925],[78.7982,29.31901],[78.79545,29.31471],[78.79591,29.31177],[78.78955,29.3153],[78.79054,29.31889],[78.7954,29.32501],[78.79309,29.32683],[78.79345,29.32817],[78.79052,29.33059],[78.78679,29.32611],[78.78525,29.32715],[78.77748,29.32573],[78.77333,29.32849],[78.77431,29.33198],[78.76655,29.3374],[78.76081,29.33293],[78.75376,29.33122],[78.75369,29.32732],[78.74955,29.32324],[78.75032,29.31735],[78.74508,29.31794],[78.74068,29.31579],[78.74067,29.32042],[78.73367,29.3219],[78.73577,29.31853],[78.73209,29.31756],[78.73134,29.31352],[78.73518,29.30654],[78.73445,29.30294],[78.72719,29.30551],[78.72299,29.30345],[78.71859,29.30664],[78.71837,29.30342],[78.72269,29.29932],[78.72675,29.2978],[78.72843,29.29922],[78.73452,29.29957],[78.73614,29.29676],[78.76502,29.27931],[78.77321,29.27113],[78.77019,29.26704],[78.77383,29.26199],[78.78509,29.25365],[78.78815,29.25337],[78.78975,29.25496],[78.79189,29.25227],[78.79042,29.25017],[78.79077,29.2469],[78.79324,29.24453],[78.79841,29.24442],[78.80737,29.23668],[78.82008,29.23214],[78.8199,29.23374],[78.82243,29.23332],[78.82571,29.23611],[78.82787,29.23531],[78.83231,29.23675],[78.83816,29.24255],[78.83818,29.24109],[78.8413,29.23969],[78.83946,29.23679],[78.84337,29.23484],[78.84554,29.23677],[78.84954,29.23271],[78.85107,29.23682],[78.85537,29.23852],[78.85834,29.24184],[78.86217,29.23943],[78.85859,29.23299],[78.86304,29.23209],[78.86326,29.23031],[78.87069,29.22725],[78.87264,29.22759],[78.87261,29.23031],[78.87448,29.23025],[78.87423,29.22678],[78.87648,29.22553],[78.87176,29.22257],[78.87583,29.21902],[78.87947,29.21881],[78.88052,29.217],[78.87812,29.21571],[78.87854,29.21426],[78.88328,29.21131],[78.87828,29.20636],[78.8751,29.20651],[78.87522,29.20517],[78.88104,29.19992],[78.8855,29.20317],[78.89062,29.20118],[78.89128,29.19808],[78.88675,29.19508],[78.89006,29.19221],[78.89428,29.19189],[78.89636,29.19358],[78.89974,29.18588],[78.89457,29.18576],[78.89849,29.18181],[78.90317,29.18091],[78.90347,29.17824],[78.90683,29.18006],[78.90875,29.17856],[78.90167,29.16956],[78.90905,29.16354],[78.90801,29.16069],[78.90909,29.15732],[78.90637,29.15174],[78.91287,29.15438],[78.91545,29.15245],[78.91548,29.14994],[78.91205,29.14742],[78.91105,29.14443],[78.91623,29.14067],[78.91621,29.13773],[78.91876,29.13553],[78.90718,29.12741],[78.90633,29.12501],[78.92702,29.11813],[78.93464,29.12964],[78.94286,29.12617],[78.94375,29.12751],[78.95645,29.11989],[78.96417,29.1305],[78.97287,29.12691],[78.97492,29.13145],[78.97468,29.13595],[78.97755,29.1366],[78.97676,29.13855],[78.98234,29.14305],[78.98984,29.13949],[78.99128,29.13068],[78.99665,29.13012],[79.00424,29.1259],[79.00171,29.12226],[79.0035,29.11921],[79.00625,29.11828],[79.00817,29.11191],[79.01419,29.11662],[79.0267,29.11242],[79.03456,29.1177],[79.04063,29.12767],[79.03175,29.1281],[79.02732,29.13244],[79.01921,29.12934],[79.01692,29.13077],[79.01494,29.13395],[79.02111,29.14583],[79.01782,29.15384],[79.01908,29.15572],[79.02382,29.15555],[79.02978,29.14697],[79.03461,29.14407],[79.0374,29.14482],[79.03595,29.15309],[79.03937,29.15841],[79.03237,29.15913],[79.02912,29.16413],[79.03213,29.16843],[79.03584,29.16939],[79.03944,29.16857],[79.04538,29.16418],[79.0505,29.15693],[79.0537,29.15487],[79.05942,29.15542],[79.07487,29.15164],[79.09057,29.14339],[79.10139,29.1341],[79.1119,29.12792],[79.11946,29.12577],[79.12273,29.12734],[79.12492,29.13306],[79.12687,29.13268],[79.14189,29.12433],[79.14082,29.12226],[79.1434,29.12027],[79.15017,29.11867],[79.1535,29.11518],[79.15127,29.11327],[79.15245,29.10712],[79.15084,29.10341],[79.15318,29.10155],[79.14832,29.09914],[79.15153,29.0954],[79.15002,29.09451],[79.14996,29.09176],[79.14327,29.08668],[79.14342,29.08291],[79.14212,29.08194],[79.14181,29.07763],[79.14422,29.07203],[79.1425,29.06695],[79.14587,29.06457],[79.14513,29.06296],[79.14733,29.06226],[79.14876,29.05845],[79.15332,29.05686],[79.16191,29.04896],[79.168,29.04738],[79.17029,29.04861],[79.17511,29.04625],[79.1718,29.04506],[79.17192,29.04264],[79.16916,29.04238],[79.17085,29.03942],[79.168,29.03826],[79.16884,29.03577],[79.16751,29.0322],[79.1644,29.03222],[79.16497,29.02884],[79.16235,29.02921],[79.1622,29.02409],[79.16589,29.02024],[79.16528,29.01779],[79.16843,29.01942],[79.17582,29.01574],[79.17106,29.01187],[79.18094,29.01288],[79.18267,29.01605],[79.18595,29.01764],[79.19384,29.01559],[79.19089,29.01895],[79.19077,29.02318],[79.19426,29.01972],[79.19741,29.02138],[79.20365,29.02074],[79.21173,29.02756],[79.22203,29.01945],[79.23155,29.01512],[79.24495,29.01008],[79.25102,29.01024],[79.24775,29.00334],[79.25913,28.9924],[79.29233,28.97381],[79.29885,28.9728],[79.30727,28.96647],[79.30747,28.96787],[79.31033,28.96799],[79.31092,28.96999],[79.31268,28.96897],[79.31249,28.97131],[79.30986,28.97172],[79.31265,28.97498],[79.31106,28.97526],[79.3119,28.97706],[79.32146,28.9718],[79.33722,28.97213],[79.35627,28.9677],[79.3647,28.96807],[79.36517,28.97074],[79.36099,28.97193],[79.36309,28.97798],[79.36211,28.98145],[79.36763,28.98664],[79.37236,28.98747],[79.37239,28.9846],[79.37769,28.9757],[79.37714,28.97139],[79.38175,28.9698],[79.3821,28.96224],[79.38631,28.95319],[79.3853,28.95177],[79.38733,28.94969],[79.39065,28.94739],[79.40281,28.95001],[79.40471,28.94921],[79.40433,28.95041],[79.4062,28.94985],[79.4054,28.95151],[79.40748,28.95225],[79.41583,28.94382],[79.41558,28.94137],[79.41901,28.94003],[79.41889,28.93298],[79.41584,28.92787],[79.42531,28.92296],[79.42795,28.91978],[79.42689,28.91618],[79.42487,28.91675],[79.427,28.91533],[79.42479,28.91545],[79.42692,28.91442],[79.42513,28.91437],[79.42539,28.91324],[79.42764,28.91269],[79.42511,28.91213],[79.42692,28.91128],[79.42428,28.90841],[79.42532,28.90522],[79.42252,28.90303],[79.42251,28.89948],[79.42466,28.89743],[79.42294,28.89349],[79.42773,28.89298],[79.43099,28.8868],[79.42787,28.87653],[79.42501,28.87366],[79.4249,28.86812],[79.42557,28.86642],[79.44046,28.86174],[79.44518,28.86383],[79.44623,28.86776],[79.45019,28.86772],[79.44979,28.87079],[79.45164,28.87163],[79.46194,28.86676],[79.46611,28.86777],[79.47057,28.86541],[79.47722,28.86457],[79.47892,28.86728],[79.47873,28.87114],[79.49714,28.87287],[79.50992,28.86453],[79.5114,28.86722],[79.52178,28.86474],[79.52351,28.86712],[79.53304,28.86971],[79.53716,28.87694],[79.54166,28.88043],[79.54046,28.88193],[79.54219,28.88453],[79.54595,28.88558],[79.54791,28.89097],[79.54945,28.89008],[79.55494,28.89376],[79.55275,28.8958],[79.55648,28.89926],[79.57062,28.89253],[79.56999,28.88775],[79.57124,28.88646],[79.57755,28.88864],[79.57917,28.88618],[79.57835,28.88349],[79.58427,28.87918],[79.58019,28.87115],[79.58097,28.86616],[79.57349,28.85465],[79.57565,28.85045],[79.58436,28.84627],[79.58751,28.84999],[79.59155,28.8495],[79.5936,28.85204],[79.59712,28.85125],[79.60339,28.85472],[79.6039,28.85683],[79.61331,28.85283],[79.62138,28.86431],[79.62613,28.86662],[79.63092,28.86112],[79.63601,28.86681],[79.64486,28.86343],[79.64745,28.86702],[79.65349,28.86921],[79.65557,28.86841],[79.65605,28.86977],[79.66571,28.86557],[79.66342,28.86194],[79.66744,28.8597],[79.67212,28.85801],[79.67738,28.85927],[79.68189,28.85679],[79.68367,28.85532],[79.68231,28.85347],[79.68316,28.84997],[79.692,28.84788],[79.68996,28.84533],[79.69292,28.84591],[79.70667,28.84101],[79.70752,28.84417],[79.70625,28.84445],[79.70962,28.8511],[79.71855,28.84881],[79.71991,28.84567],[79.72058,28.85027],[79.7234,28.85289],[79.72271,28.85523],[79.72637,28.86097],[79.73652,28.85626],[79.73825,28.85876],[79.74565,28.85992],[79.74907,28.87177],[79.75925,28.87085],[79.76675,28.87493],[79.78082,28.87139],[79.78344,28.87125],[79.78629,28.87341],[79.78861,28.87269],[79.79325,28.88287],[79.7998,28.88748],[79.8147,28.88369],[79.81383,28.88656],[79.81802,28.88781],[79.8293,28.88445],[79.82828,28.87828],[79.83253,28.87099],[79.83546,28.87104],[79.83565,28.87495],[79.84322,28.87588],[79.84565,28.87387],[79.84577,28.86354],[79.8496,28.8593],[79.84505,28.85537],[79.84534,28.85111],[79.84063,28.84768],[79.838,28.84832],[79.83288,28.85532],[79.83074,28.85523],[79.82978,28.85324],[79.83245,28.84584],[79.83634,28.84294],[79.83678,28.83992],[79.83087,28.83778],[79.82727,28.84167],[79.82382,28.83901],[79.8279,28.83695],[79.83131,28.83076],[79.83717,28.83235],[79.83245,28.82354],[79.82915,28.82139],[79.82945,28.81814],[79.82604,28.81493],[79.82429,28.80727],[79.81897,28.80547],[79.8199,28.81216],[79.81645,28.81692],[79.80723,28.80566],[79.80803,28.80091],[79.81394,28.79688],[79.81454,28.79889],[79.81281,28.80196],[79.81457,28.80261],[79.81995,28.79611],[79.82289,28.79563],[79.82432,28.79829],[79.82693,28.79497],[79.83081,28.79773],[79.83308,28.79682],[79.83433,28.79859],[79.83832,28.79753],[79.83986,28.80017],[79.83843,28.80122],[79.84152,28.80427],[79.84609,28.80474],[79.84547,28.80075],[79.84934,28.79964],[79.85237,28.8019],[79.85059,28.80333],[79.85289,28.80613],[79.85031,28.80601],[79.85166,28.80883],[79.85076,28.81045],[79.84659,28.81044],[79.85294,28.81373],[79.85212,28.81566],[79.84661,28.81744],[79.84785,28.81953],[79.8463,28.82318],[79.84863,28.82515],[79.85407,28.82411],[79.85371,28.82603],[79.85083,28.82693],[79.85102,28.82855],[79.85387,28.82699],[79.85772,28.83064],[79.86142,28.83053],[79.85898,28.83166],[79.86061,28.83304],[79.85888,28.8338],[79.86266,28.83706],[79.86319,28.84022],[79.8647,28.83777],[79.86719,28.83954],[79.87025,28.83845],[79.87166,28.84014],[79.87461,28.83634],[79.87337,28.8363],[79.87435,28.83424],[79.87256,28.83156],[79.87573,28.83311],[79.87847,28.83031],[79.87961,28.83241],[79.87857,28.83356],[79.8834,28.83398],[79.88212,28.83693],[79.88822,28.83656],[79.88905,28.83404],[79.89391,28.83146],[79.89199,28.82561],[79.89404,28.82379],[79.89407,28.8204],[79.91453,28.81848],[79.9107,28.81247],[79.91078,28.8099],[79.91552,28.80427],[79.90554,28.80299],[79.87849,28.81483],[79.87348,28.80939],[79.8696,28.80834],[79.87007,28.80576],[79.87473,28.80236],[79.87226,28.79936],[79.87306,28.79728],[79.8833,28.79454],[79.88426,28.79],[79.89728,28.78623],[79.90136,28.78198],[79.90647,28.78196],[79.90982,28.7854],[79.91781,28.78236],[79.91935,28.78412],[79.91884,28.7865],[79.92378,28.78671],[79.92652,28.79001],[79.93982,28.78772],[79.92852,28.77902],[79.92408,28.77316],[79.92699,28.77097],[79.92734,28.76871],[79.93057,28.76802],[79.93323,28.76428],[79.93258,28.76272],[79.9432,28.75989],[79.94315,28.75798],[79.93872,28.75313],[79.93863,28.75038],[79.94359,28.74862],[79.94648,28.74236],[79.94367,28.7348],[79.94596,28.72975],[79.9544,28.72286],[80.03013,28.74863],[80.05227,28.77828],[80.05545,28.78125],[80.06174,28.78319],[80.05867,28.78839],[80.06488,28.79443],[80.0681,28.80284],[80.05922,28.8168],[80.05179,28.82037],[80.05979,28.82539],[80.06292,28.83467],[80.06536,28.8369],[80.05847,28.91663],[80.09632,28.97574],[80.10055,28.9869],[80.11792,28.98155],[80.12669,29.00611],[80.13542,29.0074],[80.13625,29.00959],[80.1245,29.01307],[80.13124,29.0305],[80.12637,29.03194],[80.13718,29.06047],[80.12942,29.06272],[80.14479,29.1022],[80.16509,29.11848],[80.1675,29.12576],[80.17764,29.12854],[80.18319,29.13718],[80.18689,29.13667],[80.1972,29.13058],[80.20309,29.12969],[80.20969,29.12197],[80.23304,29.11849],[80.23868,29.12124],[80.24342,29.12656],[80.24835,29.12803],[80.25534,29.13735],[80.26013,29.1398],[80.2709,29.14087],[80.2727,29.14242],[80.27171,29.14714],[80.26517,29.15351],[80.25825,29.16477],[80.25774,29.16938],[80.26011,29.17248],[80.26043,29.17644],[80.25797,29.18468],[80.25873,29.18703],[80.24059,29.20291],[80.24454,29.21267],[80.24773,29.21628],[80.24786,29.22045],[80.25263,29.22144],[80.2574,29.21798],[80.25804,29.21065],[80.26039,29.20691],[80.27567,29.20666],[80.28146,29.20204],[80.28595,29.19585],[80.29049,29.19554],[80.29373,29.19776],[80.29744,29.20665],[80.29405,29.21182],[80.29608,29.22125],[80.29062,29.23181],[80.30019,29.24164],[80.29855,29.24952],[80.30008,29.25465],[80.29931,29.26102],[80.30465,29.27518],[80.30485,29.28664],[80.30706,29.28969],[80.31101,29.2909],[80.31851,29.3035],[80.316,29.30844],[80.31688,29.31525],[80.30919,29.32253],[80.29576,29.32453],[80.29092,29.33112],[80.29114,29.33604],[80.28475,29.34035],[80.27994,29.34724],[80.27996,29.35907],[80.27145,29.36437],[80.27158,29.37378],[80.27916,29.37884],[80.27309,29.38621],[80.27571,29.39222],[80.2482,29.40619],[80.24206,29.41154],[80.24598,29.41583],[80.24416,29.424],[80.24763,29.43559],[80.24224,29.44288],[80.24498,29.44679],[80.25481,29.44799],[80.25731,29.45174],[80.2661,29.44927],[80.27437,29.45012],[80.27452,29.45231],[80.26921,29.45416],[80.26907,29.45554],[80.27567,29.45852],[80.27928,29.45784],[80.27891,29.45387],[80.28083,29.4516],[80.28813,29.45124],[80.29444,29.45395],[80.2975,29.45173],[80.30178,29.45278],[80.30236,29.45509],[80.28716,29.47357],[80.28694,29.47698],[80.29352,29.47958],[80.29666,29.48526],[80.29622,29.48775],[80.29873,29.49061],[80.30116,29.49029],[80.3047,29.48623],[80.31306,29.48481],[80.31462,29.49039],[80.31313,29.49611],[80.31422,29.49943],[80.3292,29.50575],[80.33213,29.51294],[80.34171,29.51028],[80.34967,29.51921],[80.34863,29.52436],[80.35561,29.52795],[80.35788,29.53277],[80.34857,29.54044],[80.34152,29.54054],[80.34134,29.54242],[80.34563,29.54861],[80.34247,29.55277],[80.34867,29.55535],[80.36358,29.55636],[80.36219,29.56032],[80.36307,29.56393],[80.37849,29.56105],[80.37911,29.57158],[80.38805,29.57146],[80.39101,29.58116],[80.40277,29.58929],[80.40794,29.59597],[80.40893,29.60423],[80.40598,29.6133],[80.40809,29.61521],[80.40818,29.62066],[80.41098,29.62543],[80.41824,29.6267],[80.42087,29.62985],[80.41933,29.63371],[80.42026,29.63833],[80.41432,29.64351],[80.41585,29.65258],[80.41394,29.65431],[80.41012,29.6538],[80.40601,29.65986],[80.39943,29.65855],[80.398,29.65979],[80.3988,29.66211],[80.3904,29.66451],[80.38987,29.67121],[80.38417,29.67509],[80.38486,29.68547],[80.38023,29.68959],[80.37943,29.70089],[80.3767,29.7035],[80.3745,29.71308],[80.37207,29.71549],[80.37587,29.72005],[80.36825,29.72195],[80.36564,29.72638],[80.36664,29.73124],[80.3696,29.734],[80.36432,29.74015],[80.36642,29.74919],[80.36907,29.75105],[80.37179,29.7494],[80.38527,29.75046],[80.38634,29.75135],[80.38484,29.75676],[80.38577,29.75906],[80.39038,29.76049],[80.39425,29.75827],[80.39737,29.75891],[80.39627,29.76528],[80.40067,29.77458],[80.40475,29.778],[80.40368,29.78192],[80.40724,29.78409],[80.40695,29.79474],[80.4127,29.79165],[80.41588,29.79564],[80.42867,29.79785],[80.43503,29.80597],[80.43708,29.80589],[80.43947,29.80184],[80.44347,29.79926],[80.44831,29.79904],[80.45321,29.80217],[80.46432,29.80238],[80.47999,29.79539],[80.49386,29.7958],[80.49431,29.79875],[80.49261,29.80173],[80.49449,29.8019],[80.49574,29.80503],[80.49989,29.80821],[80.49754,29.81111],[80.50109,29.81739],[80.50464,29.81948],[80.50668,29.82302],[80.52195,29.82743],[80.52376,29.82948],[80.5236,29.83245],[80.52779,29.83362],[80.53138,29.83869],[80.53566,29.8389],[80.53873,29.8475],[80.54389,29.84668],[80.54823,29.85036],[80.55312,29.85134],[80.55138,29.85636],[80.55423,29.85946],[80.55427,29.86164],[80.56127,29.86645],[80.55678,29.87036],[80.56555,29.87927],[80.57239,29.89489],[80.56971,29.90875],[80.57411,29.92404],[80.57788,29.92773],[80.58133,29.937],[80.59112,29.9496],[80.60185,29.95813],[80.60868,29.9588],[80.61918,29.96359],[80.62957,29.96543],[80.63702,29.96348],[80.64056,29.95967],[80.64879,29.95573],[80.67455,29.95721],[80.68243,29.9624],[80.68398,29.967],[80.69041,29.97462],[80.69719,29.97978],[80.7,29.97967],[80.70532,29.98627],[80.71227,29.99061],[80.71896,30.00058],[80.737,29.99936],[80.74456,30.00385],[80.74954,30.00901],[80.75391,30.01984],[80.75772,30.0242],[80.75807,30.0283],[80.75562,30.03158],[80.75589,30.03985],[80.75913,30.04269],[80.75849,30.04512],[80.76103,30.04952],[80.77213,30.0541],[80.77651,30.0544],[80.77954,30.05681],[80.78932,30.06958],[80.78988,30.07329],[80.79962,30.08093],[80.80561,30.08999],[80.81373,30.09309],[80.8145,30.09582],[80.81919,30.09683],[80.82071,30.09969],[80.82584,30.10011],[80.82919,30.09729],[80.83977,30.09871],[80.84601,30.10438],[80.84586,30.10697],[80.84189,30.11117],[80.84472,30.11623],[80.85425,30.11908],[80.85496,30.12047],[80.86254,30.12105],[80.86845,30.12619],[80.87477,30.12649],[80.87683,30.13439],[80.87145,30.14759],[80.8704,30.15919],[80.86717,30.1703],[80.86776,30.17387],[80.88197,30.1837],[80.89096,30.19643],[80.89561,30.20839],[80.90273,30.21538],[80.91972,30.2142],[80.9217,30.20517],[80.92131,30.19834],[80.91828,30.18983],[80.94442,30.17869],[80.95001,30.17826],[80.96005,30.17899],[80.99961,30.19252],[81.00745,30.19183],[81.01316,30.1941],[81.03106,30.19638],[81.03503,30.19815],[81.03625,30.20163],[81.04328,30.20456],[81.04661,30.21087],[81.03105,30.22015],[81.03002,30.22184],[81.0314,30.2261],[81.0271,30.22846],[81.03321,30.24639],[81.01243,30.25495],[81.00555,30.26309],[80.98839,30.26542],[80.95749,30.2751],[80.93306,30.2801],[80.89626,30.294],[80.86272,30.29947],[80.82157,30.31556],[80.8007,30.32965],[80.78733,30.34261],[80.78462,30.34987],[80.78565,30.35414],[80.78359,30.35785],[80.75197,30.3935],[80.74572,30.39737],[80.71352,30.40817],[80.67807,30.43745],[80.65202,30.44429],[80.63786,30.45369],[80.61609,30.46515],[80.59801,30.47877],[80.58556,30.48214],[80.5802,30.48093],[80.57659,30.47819],[80.56985,30.46662],[80.56006,30.46637],[80.55554,30.46486],[80.55142,30.46089],[80.54761,30.44859],[80.53908,30.4492],[80.52459,30.46265],[80.5171,30.47318],[80.5095,30.47552],[80.49833,30.48417],[80.45596,30.49422],[80.44769,30.49765],[80.43133,30.50718],[80.42917,30.51096],[80.41948,30.51518],[80.41558,30.52533],[80.41273,30.5252],[80.40686,30.5205],[80.39831,30.51676],[80.38559,30.51505],[80.38283,30.51614],[80.38142,30.52006],[80.37833,30.52188],[80.3739,30.52145],[80.36061,30.52735],[80.31886,30.55938],[80.28307,30.57219],[80.27703,30.56583],[80.27359,30.56504],[80.26623,30.56664],[80.26171,30.56506],[80.25776,30.55884],[80.25325,30.56543],[80.24891,30.5687],[80.22683,30.57895],[80.22736,30.59343],[80.22963,30.60089],[80.2288,30.60349],[80.21709,30.60836],[80.21167,30.62242],[80.21193,30.62481],[80.21872,30.62864],[80.22182,30.63334],[80.22117,30.64182],[80.19716,30.66209],[80.19761,30.68001],[80.19971,30.68305],[80.20407,30.68485],[80.21253,30.68426],[80.2298,30.68728],[80.23457,30.68829],[80.23642,30.69038],[80.23687,30.70747],[80.24762,30.71781],[80.25051,30.73714],[80.25044,30.74235],[80.2429,30.74663],[80.24107,30.75076],[80.23966,30.76206],[80.23018,30.75918],[80.21977,30.75036],[80.21491,30.74906],[80.2001,30.76472],[80.20028,30.77268],[80.20322,30.77652],[80.19836,30.77884],[80.18756,30.78985],[80.18447,30.79724],[80.17777,30.80405],[80.15815,30.80588],[80.15597,30.80487],[80.1542,30.79974],[80.15737,30.78873],[80.15376,30.78743],[80.14354,30.78975],[80.13774,30.7841],[80.13003,30.78198],[80.12242,30.77736],[80.11091,30.7793],[80.09571,30.79089],[80.08901,30.79408],[80.08499,30.80402],[80.07675,30.8155],[80.05747,30.82941],[80.0573,30.83491],[80.05873,30.83737],[80.05602,30.84151],[80.05322,30.84199],[80.04461,30.83562],[80.04203,30.83582],[80.02507,30.84809],[80.01747,30.85556],[80.01225,30.86354],[80.00375,30.86508],[79.99729,30.86909],[79.9925,30.87694],[79.96966,30.88245],[79.96455,30.88603],[79.96215,30.89002],[79.95369,30.88506],[79.94491,30.88616],[79.93564,30.88244],[79.93085,30.88133],[79.9291,30.88243],[79.9251,30.89318],[79.9135,30.90758],[79.91039,30.91507],[79.89026,30.91864],[79.88705,30.93172],[79.88864,30.93929],[79.88496,30.94218],[79.88224,30.95086],[79.88239,30.9554],[79.87583,30.96752],[79.86271,30.97536],[79.85616,30.97742],[79.83858,30.97396],[79.83554,30.97533],[79.82276,30.97339],[79.81637,30.97393],[79.80724,30.98177],[79.80277,30.97929],[79.79862,30.9797],[79.79542,30.98162],[79.79189,30.98836],[79.78086,30.98752],[79.77463,30.98889],[79.75301,31.00786],[79.7471,31.00304],[79.73803,30.98374],[79.73548,30.98154],[79.72669,30.98028],[79.71711,30.976],[79.708,30.97832],[79.70162,30.97308],[79.69796,30.9725],[79.6749,30.98349],[79.66499,30.98292],[79.6634,30.97934],[79.66487,30.96956],[79.6636,30.96653],[79.65849,30.96294],[79.65034,30.96155],[79.63327,30.95338],[79.61985,30.95129],[79.61412,30.94425],[79.60551,30.93982],[79.60346,30.93265],[79.60185,30.93348],[79.60167,30.93995],[79.5967,30.94476],[79.59014,30.94818],[79.58295,30.94968],[79.57176,30.94855],[79.56888,30.95006],[79.56454,30.95721],[79.55559,30.95732],[79.55255,30.96007],[79.54595,30.9712],[79.54034,30.97546],[79.54065,30.97987],[79.54702,30.98553],[79.54844,30.98953],[79.53812,30.99019],[79.5242,31.01445],[79.51903,31.02671],[79.50693,31.03208],[79.49161,31.03354],[79.46859,31.03347],[79.4456,31.02805],[79.43061,31.02862],[79.42476,31.03049],[79.42248,31.04842],[79.42569,31.06636],[79.42457,31.07107],[79.40773,31.07699],[79.40402,31.08704],[79.40212,31.10214],[79.3988,31.10779],[79.33253,31.12735],[79.31748,31.13672],[79.30943,31.14744],[79.3072,31.15778],[79.30096,31.16781],[79.30316,31.19037],[79.2999,31.20573],[79.29262,31.22122],[79.28437,31.23239],[79.28017,31.23496],[79.25707,31.24017],[79.25187,31.24302],[79.25028,31.25536]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-UP","area_level":"State","area_name":"Uttar Pradesh","geometry_source":"SOI_States","same_as":"LGD/9/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.36506,25.14453],[79.36233,25.14386],[79.36031,25.14426],[79.3582,25.14329],[79.35832,25.14126],[79.35414,25.13021],[79.35303,25.12835],[79.35052,25.12636],[79.35117,25.12579],[79.35304,25.12624],[79.35506,25.12446],[79.35365,25.12303],[79.35257,25.12298],[79.35215,25.11987],[79.35023,25.11896],[79.35037,25.1181],[79.35106,25.11598],[79.35255,25.11548],[79.35521,25.11257],[79.35639,25.10939],[79.36193,25.10623],[79.36899,25.10449],[79.37394,25.10407],[79.37969,25.10122],[79.37946,25.09897],[79.37251,25.09199],[79.37377,25.09177],[79.37757,25.08692],[79.37957,25.08561],[79.37789,25.08308],[79.37667,25.07563],[79.37749,25.07542],[79.37466,25.06773],[79.37983,25.06695],[79.37936,25.06577],[79.37981,25.06479],[79.37102,25.06293],[79.37008,25.06227],[79.36982,25.0598],[79.36908,25.05908],[79.36534,25.05903],[79.36347,25.05985],[79.36002,25.06325],[79.3591,25.06608],[79.3574,25.06827],[79.35419,25.068],[79.35113,25.06888],[79.3492,25.0625],[79.35806,25.05935],[79.35843,25.05851],[79.35604,25.05767],[79.35622,25.05643],[79.35977,25.05345],[79.35611,25.04047],[79.3598,25.03928],[79.36418,25.04098],[79.36748,25.04607],[79.36202,25.0482],[79.36403,25.05038],[79.36773,25.05195],[79.3678,25.05437],[79.36904,25.05432],[79.37533,25.05075],[79.37392,25.04817],[79.37402,25.04482],[79.37726,25.0452],[79.37843,25.04318],[79.38141,25.04182],[79.38333,25.04275],[79.38429,25.04236],[79.3847,25.04092],[79.38414,25.03854],[79.3942,25.03574],[79.39527,25.03477],[79.39496,25.03212],[79.39767,25.03284],[79.3998,25.03442],[79.40126,25.03437],[79.40181,25.03513],[79.40409,25.03376],[79.40604,25.03389],[79.40706,25.03507],[79.4096,25.03386],[79.41091,25.03528],[79.41305,25.03527],[79.41394,25.03817],[79.41695,25.03777],[79.41638,25.04107],[79.42024,25.0406],[79.42204,25.04157],[79.42252,25.04397],[79.42386,25.045],[79.42466,25.053],[79.42245,25.05485],[79.42591,25.05859],[79.41938,25.06173],[79.41848,25.06077],[79.41259,25.06384],[79.40984,25.06375],[79.40739,25.06478],[79.4072,25.06595],[79.40596,25.06672],[79.40676,25.0671],[79.40469,25.0683],[79.40485,25.07358],[79.40555,25.07411],[79.40593,25.07678],[79.40488,25.07703],[79.40578,25.07744],[79.40503,25.07853],[79.40416,25.07794],[79.40237,25.07869],[79.39821,25.0831],[79.39432,25.08317],[79.38719,25.0857],[79.38896,25.08845],[79.38936,25.09177],[79.38677,25.09938],[79.38686,25.1021],[79.38037,25.1076],[79.38041,25.11142],[79.38261,25.11273],[79.38139,25.1154],[79.38247,25.11723],[79.38113,25.11986],[79.3809,25.12243],[79.37975,25.12232],[79.3777,25.12518],[79.37524,25.12509],[79.3742,25.12356],[79.37254,25.12427],[79.37132,25.12345],[79.36382,25.12565],[79.3642,25.12763],[79.37064,25.13605],[79.3742,25.1426],[79.37279,25.14334],[79.37105,25.14303],[79.36875,25.14423],[79.36741,25.14388],[79.36506,25.14453]]],[[[79.36626,25.17158],[79.37104,25.17779],[79.37256,25.18002],[79.37227,25.18066],[79.37132,25.18133],[79.37048,25.18171],[79.36731,25.18446],[79.36608,25.18508],[79.36542,25.18525],[79.36405,25.18625],[79.36345,25.18687],[79.35952,25.18855],[79.35936,25.18839],[79.35942,25.18726],[79.35902,25.18533],[79.35853,25.18411],[79.35516,25.17948],[79.35455,25.17733],[79.35447,25.17589],[79.35679,25.17404],[79.36074,25.17173],[79.36146,25.1711],[79.36425,25.17102],[79.36538,25.17111],[79.36626,25.17158]]],[[[77.6017,30.3997],[77.59963,30.40104],[77.59831,30.40488],[77.59043,30.40628],[77.58546,30.40492],[77.58193,30.40134],[77.58255,30.39987],[77.57604,30.39739],[77.5847,30.38529],[77.58563,30.37947],[77.58733,30.37877],[77.58669,30.37693],[77.60459,30.36739],[77.60185,30.36145],[77.59249,30.35479],[77.5909,30.34782],[77.58853,30.34571],[77.5862,30.33942],[77.57798,30.33078],[77.57856,30.32525],[77.58609,30.31541],[77.58629,30.3127],[77.58185,30.30632],[77.56852,30.29898],[77.54658,30.28147],[77.53825,30.27796],[77.53024,30.25048],[77.52049,30.24466],[77.50462,30.2252],[77.49483,30.20401],[77.48675,30.19535],[77.48053,30.18422],[77.4754,30.17912],[77.47183,30.18189],[77.45694,30.16234],[77.44956,30.16578],[77.44071,30.16498],[77.43643,30.16047],[77.43504,30.1608],[77.43481,30.16399],[77.42976,30.16398],[77.42569,30.15812],[77.42753,30.1557],[77.42219,30.14868],[77.4227,30.14011],[77.41978,30.13524],[77.42505,30.13145],[77.42189,30.12859],[77.41349,30.11294],[77.41227,30.11433],[77.40559,30.11389],[77.40316,30.11175],[77.41023,30.10473],[77.41694,30.10544],[77.42386,30.10321],[77.4062,30.08825],[77.39148,30.08988],[77.38851,30.08688],[77.38239,30.09159],[77.37745,30.09002],[77.36845,30.0836],[77.36264,30.07638],[77.34522,30.06932],[77.3343,30.05374],[77.32846,30.05333],[77.3189,30.0565],[77.30298,30.0553],[77.3002,30.05248],[77.29693,30.05332],[77.28494,30.0424],[77.27778,30.04181],[77.27637,30.03755],[77.28227,30.02941],[77.27956,30.02078],[77.27926,30.01216],[77.27556,30.00634],[77.27766,30.00024],[77.26153,29.98288],[77.24698,29.97659],[77.24687,29.96832],[77.24401,29.95979],[77.23693,29.95474],[77.23631,29.9509],[77.22595,29.93435],[77.22105,29.93288],[77.21748,29.92342],[77.21119,29.91866],[77.20402,29.91808],[77.19936,29.91423],[77.19047,29.9135],[77.18797,29.91136],[77.18576,29.90753],[77.18631,29.89813],[77.19086,29.89202],[77.20013,29.88949],[77.20203,29.8689],[77.20135,29.86419],[77.19911,29.86287],[77.19734,29.85874],[77.19314,29.85675],[77.18946,29.85847],[77.18694,29.85783],[77.18323,29.85453],[77.17825,29.8458],[77.1794,29.81308],[77.17249,29.80776],[77.17367,29.80505],[77.1726,29.80164],[77.16429,29.79172],[77.15878,29.79231],[77.15137,29.7882],[77.14745,29.77884],[77.14662,29.77183],[77.13891,29.76962],[77.12531,29.7695],[77.12221,29.76708],[77.11981,29.76008],[77.11998,29.7554],[77.12246,29.75124],[77.12719,29.7473],[77.1355,29.74408],[77.13685,29.73962],[77.13906,29.73821],[77.13907,29.73227],[77.13361,29.72847],[77.13289,29.72239],[77.13423,29.71843],[77.13779,29.71755],[77.13975,29.7147],[77.14501,29.71366],[77.14574,29.71097],[77.14953,29.70949],[77.14941,29.7057],[77.1556,29.6993],[77.15483,29.69591],[77.15655,29.69258],[77.15111,29.69045],[77.14734,29.68322],[77.14245,29.68045],[77.14339,29.6749],[77.14655,29.67223],[77.14257,29.66835],[77.13806,29.66663],[77.14101,29.65497],[77.13716,29.64942],[77.1324,29.64725],[77.13152,29.64184],[77.1188,29.63551],[77.11478,29.63828],[77.1062,29.63233],[77.1047,29.62312],[77.10169,29.62152],[77.10158,29.61983],[77.10378,29.61405],[77.10862,29.61344],[77.11302,29.61063],[77.10863,29.60091],[77.10953,29.59743],[77.10202,29.59413],[77.09515,29.59539],[77.08813,29.59406],[77.08503,29.59218],[77.08395,29.58904],[77.08546,29.5848],[77.09579,29.58245],[77.09923,29.57914],[77.09971,29.57657],[77.10501,29.5722],[77.12098,29.56647],[77.12079,29.56372],[77.12684,29.55945],[77.12626,29.55618],[77.12191,29.55201],[77.10835,29.54783],[77.10358,29.53902],[77.10218,29.53882],[77.10248,29.53234],[77.09754,29.52735],[77.09637,29.51949],[77.10122,29.51491],[77.10356,29.50726],[77.11301,29.5066],[77.12118,29.49821],[77.1215,29.49536],[77.12924,29.49027],[77.13331,29.48306],[77.13072,29.47591],[77.12268,29.46889],[77.12321,29.45537],[77.13393,29.44751],[77.14452,29.44531],[77.14842,29.43408],[77.14436,29.42653],[77.13312,29.41877],[77.13184,29.41298],[77.13425,29.40477],[77.13325,29.40084],[77.13569,29.39971],[77.13666,29.39677],[77.1426,29.39073],[77.14737,29.38785],[77.1509,29.38716],[77.15103,29.38994],[77.15347,29.39067],[77.15741,29.38731],[77.14257,29.37747],[77.12703,29.37576],[77.1233,29.37034],[77.12345,29.36724],[77.12896,29.35703],[77.12445,29.35143],[77.12953,29.34258],[77.13528,29.3399],[77.15174,29.34111],[77.15976,29.33678],[77.16115,29.33236],[77.15653,29.32279],[77.15664,29.31868],[77.16031,29.31581],[77.16055,29.3134],[77.15828,29.30288],[77.15066,29.29471],[77.14948,29.2881],[77.14502,29.2833],[77.14386,29.27663],[77.13895,29.26784],[77.13995,29.26139],[77.14539,29.25756],[77.14978,29.25],[77.14875,29.23961],[77.15,29.23276],[77.14785,29.2304],[77.13349,29.22347],[77.13141,29.21749],[77.13433,29.21001],[77.1422,29.20408],[77.14329,29.19434],[77.14018,29.19213],[77.14376,29.18313],[77.14716,29.18051],[77.14356,29.16931],[77.1429,29.15623],[77.13621,29.14952],[77.13596,29.14196],[77.14745,29.13352],[77.14908,29.11765],[77.14608,29.11052],[77.13896,29.10801],[77.13408,29.09515],[77.14346,29.08267],[77.14676,29.08055],[77.15669,29.07922],[77.16226,29.0809],[77.16376,29.07943],[77.16804,29.05455],[77.17214,29.04648],[77.16994,29.03974],[77.1669,29.03737],[77.16697,29.03382],[77.17776,29.02964],[77.18511,29.03149],[77.18912,29.02767],[77.18903,29.02355],[77.1931,29.01316],[77.19075,29.00939],[77.19096,29.00592],[77.19766,28.99218],[77.19909,28.99203],[77.19797,28.99026],[77.20188,28.98848],[77.20274,28.98526],[77.20113,28.97279],[77.19533,28.96692],[77.19298,28.95891],[77.19719,28.94654],[77.19562,28.94145],[77.19645,28.93821],[77.20141,28.93392],[77.21035,28.93421],[77.22198,28.92816],[77.22489,28.92305],[77.23084,28.92108],[77.2345,28.9108],[77.23288,28.89889],[77.2275,28.89332],[77.22844,28.88221],[77.22667,28.88009],[77.22056,28.87879],[77.21541,28.88474],[77.20599,28.88833],[77.19546,28.88621],[77.18868,28.88008],[77.19196,28.87502],[77.18939,28.86928],[77.19045,28.86651],[77.20819,28.86184],[77.20991,28.85772],[77.21587,28.85407],[77.21732,28.85133],[77.21665,28.84151],[77.223,28.83338],[77.22439,28.82532],[77.22026,28.81914],[77.21896,28.80824],[77.2013,28.81294],[77.19928,28.7977],[77.20421,28.79063],[77.21334,28.78552],[77.22854,28.78653],[77.23415,28.78372],[77.22187,28.77739],[77.23145,28.77441],[77.23179,28.77079],[77.23588,28.77073],[77.23556,28.76092],[77.24878,28.75528],[77.25637,28.7562],[77.25918,28.75],[77.2562,28.74388],[77.25456,28.74356],[77.25519,28.73974],[77.26082,28.73416],[77.27291,28.73627],[77.27644,28.73545],[77.28628,28.72458],[77.29077,28.72238],[77.28883,28.71957],[77.28909,28.71682],[77.28624,28.71453],[77.28736,28.71027],[77.29152,28.70615],[77.29678,28.70444],[77.29904,28.70985],[77.30623,28.71326],[77.31773,28.71398],[77.32206,28.7121],[77.33108,28.7131],[77.32543,28.70888],[77.32445,28.7065],[77.32574,28.70285],[77.32327,28.69858],[77.3303,28.69039],[77.33292,28.68196],[77.3301,28.67822],[77.3236,28.67671],[77.32372,28.66896],[77.32076,28.66349],[77.31988,28.65109],[77.31627,28.64121],[77.3237,28.63432],[77.33063,28.63139],[77.34256,28.62197],[77.34147,28.61698],[77.34242,28.60888],[77.34168,28.60606],[77.33677,28.60181],[77.32836,28.60016],[77.32517,28.59805],[77.3134,28.59659],[77.31017,28.59046],[77.29838,28.58015],[77.30005,28.5758],[77.29709,28.56597],[77.30123,28.5627],[77.29997,28.55976],[77.30379,28.55243],[77.3209,28.5409],[77.32472,28.53492],[77.33017,28.53228],[77.33399,28.52541],[77.34737,28.52055],[77.34543,28.51322],[77.34761,28.51046],[77.34774,28.50419],[77.35163,28.50008],[77.35562,28.4992],[77.3581,28.50185],[77.36269,28.49883],[77.36777,28.50025],[77.37174,28.49844],[77.37006,28.4857],[77.37474,28.47648],[77.37835,28.47454],[77.37818,28.47252],[77.38047,28.47027],[77.38734,28.468],[77.39194,28.47203],[77.40578,28.46577],[77.40809,28.46717],[77.40006,28.45564],[77.41901,28.45223],[77.43343,28.45492],[77.43826,28.43868],[77.43597,28.43771],[77.43921,28.43504],[77.43552,28.43095],[77.44212,28.43083],[77.44126,28.42873],[77.45225,28.42688],[77.45161,28.42474],[77.4625,28.42436],[77.46115,28.41767],[77.46355,28.41515],[77.47763,28.41906],[77.48377,28.40809],[77.4813,28.40489],[77.48021,28.39873],[77.47567,28.39957],[77.47344,28.39697],[77.48281,28.38782],[77.49122,28.38515],[77.50279,28.36992],[77.50482,28.36999],[77.50005,28.36564],[77.5052,28.36264],[77.4963,28.34914],[77.49015,28.34345],[77.47818,28.33934],[77.47121,28.33482],[77.47318,28.33255],[77.47174,28.32811],[77.48195,28.32506],[77.48486,28.32569],[77.48571,28.32163],[77.50707,28.30569],[77.50294,28.28908],[77.4985,28.2856],[77.50173,28.28386],[77.50029,28.28152],[77.50343,28.28007],[77.49877,28.27841],[77.49467,28.27276],[77.49414,28.27483],[77.49079,28.27133],[77.49269,28.25198],[77.49915,28.24738],[77.49922,28.25],[77.50145,28.25244],[77.50955,28.24961],[77.50863,28.24655],[77.51325,28.24721],[77.51877,28.24253],[77.522,28.24227],[77.52471,28.24572],[77.53235,28.24495],[77.53742,28.24827],[77.54461,28.24873],[77.55042,28.24236],[77.54675,28.23799],[77.52583,28.229],[77.52128,28.22444],[77.52143,28.22021],[77.53289,28.21442],[77.53525,28.21026],[77.53466,28.20369],[77.53026,28.19861],[77.52403,28.19568],[77.52196,28.19659],[77.51748,28.20459],[77.50588,28.20952],[77.50206,28.20959],[77.49696,28.20535],[77.49962,28.19502],[77.49839,28.18453],[77.50119,28.18167],[77.50655,28.18168],[77.50853,28.18643],[77.51337,28.19183],[77.51748,28.19314],[77.53062,28.18586],[77.5376,28.19035],[77.54515,28.19088],[77.54795,28.18711],[77.54964,28.17975],[77.5459,28.17194],[77.53696,28.16563],[77.52228,28.1612],[77.51575,28.1634],[77.5112,28.16685],[77.5021,28.16118],[77.50049,28.1548],[77.50469,28.14973],[77.50424,28.14543],[77.50242,28.14322],[77.49219,28.13869],[77.49136,28.13654],[77.49377,28.13285],[77.50908,28.13021],[77.51236,28.12714],[77.51236,28.12484],[77.50938,28.11989],[77.5018,28.11477],[77.49847,28.10892],[77.4979,28.10446],[77.50054,28.09702],[77.49938,28.09461],[77.49218,28.0951],[77.49068,28.09716],[77.48981,28.10556],[77.48262,28.10719],[77.48182,28.09966],[77.47885,28.09545],[77.47873,28.09161],[77.47426,28.08744],[77.47825,28.08039],[77.49979,28.06331],[77.50124,28.05852],[77.4986,28.05225],[77.49306,28.04683],[77.48534,28.04464],[77.48364,28.04045],[77.48841,28.0367],[77.51276,28.03189],[77.51193,28.02775],[77.50821,28.02524],[77.50839,28.02277],[77.52133,28.01414],[77.52403,28.00674],[77.52425,28.0],[77.54243,27.98909],[77.5412,27.98182],[77.53777,27.97902],[77.52946,27.97607],[77.52119,27.97651],[77.51697,27.97115],[77.51872,27.96213],[77.54423,27.96221],[77.54608,27.95793],[77.54499,27.9533],[77.53695,27.93797],[77.53661,27.93398],[77.5293,27.92526],[77.52608,27.92538],[77.52583,27.92726],[77.51676,27.93306],[77.50749,27.92562],[77.50182,27.92522],[77.49732,27.92975],[77.49279,27.93833],[77.48474,27.93495],[77.47528,27.92925],[77.4759,27.92771],[77.4775,27.92828],[77.47568,27.92474],[77.47965,27.92166],[77.47709,27.91633],[77.48049,27.91503],[77.4788,27.90991],[77.4807,27.90789],[77.47921,27.9057],[77.47805,27.89851],[77.4795,27.89786],[77.47744,27.89051],[77.47217,27.88359],[77.45053,27.87103],[77.43936,27.87958],[77.43567,27.88517],[77.42829,27.89092],[77.42784,27.88984],[77.42013,27.89044],[77.41607,27.88379],[77.41039,27.87981],[77.40932,27.87417],[77.41282,27.86978],[77.41175,27.86639],[77.42233,27.85779],[77.42186,27.85438],[77.41043,27.85176],[77.39703,27.85335],[77.38998,27.85731],[77.37702,27.85886],[77.37704,27.85707],[77.36525,27.85379],[77.36089,27.85077],[77.34833,27.85555],[77.33516,27.84742],[77.33516,27.842],[77.33199,27.83746],[77.33293,27.83497],[77.33643,27.83423],[77.33118,27.83105],[77.3207,27.82534],[77.3125,27.82799],[77.31081,27.82577],[77.30648,27.82752],[77.30356,27.82553],[77.29648,27.82522],[77.29857,27.81519],[77.28946,27.80977],[77.28294,27.79979],[77.28666,27.79592],[77.29542,27.79674],[77.30082,27.7954],[77.30581,27.79105],[77.30447,27.79007],[77.30596,27.78846],[77.30883,27.7869],[77.31044,27.78808],[77.30868,27.78447],[77.31048,27.78288],[77.3105,27.7772],[77.31275,27.77396],[77.31045,27.77242],[77.30784,27.76643],[77.3093,27.75944],[77.3117,27.75804],[77.30797,27.75281],[77.31096,27.74687],[77.31414,27.74464],[77.31217,27.74194],[77.31852,27.73811],[77.31938,27.73349],[77.30299,27.72591],[77.30384,27.71109],[77.3097,27.70663],[77.31175,27.70869],[77.3221,27.70662],[77.32929,27.7076],[77.33023,27.70906],[77.34115,27.70337],[77.33846,27.69841],[77.3414,27.69508],[77.34082,27.68635],[77.34455,27.6812],[77.34096,27.67676],[77.34568,27.67343],[77.34478,27.66092],[77.35258,27.65124],[77.34619,27.6395],[77.32721,27.6204],[77.31878,27.6108],[77.31706,27.60675],[77.33453,27.5913],[77.34411,27.59708],[77.35326,27.59326],[77.35822,27.58896],[77.35018,27.58344],[77.35144,27.58122],[77.34724,27.57773],[77.34722,27.57473],[77.34526,27.57237],[77.33959,27.57261],[77.33727,27.56976],[77.33838,27.56907],[77.33681,27.56668],[77.33625,27.55767],[77.33808,27.54974],[77.34916,27.54315],[77.34598,27.53874],[77.34006,27.53889],[77.33869,27.53134],[77.33999,27.52662],[77.35735,27.51657],[77.3679,27.51547],[77.37403,27.51186],[77.38284,27.51569],[77.38739,27.51289],[77.39165,27.50814],[77.39057,27.5047],[77.39898,27.50019],[77.401,27.49727],[77.3988,27.48283],[77.39894,27.47945],[77.40155,27.4765],[77.41576,27.47264],[77.41907,27.46996],[77.42223,27.46125],[77.4257,27.46689],[77.42709,27.46417],[77.42609,27.46294],[77.43367,27.46],[77.43781,27.45632],[77.43662,27.45331],[77.43866,27.44905],[77.4362,27.44646],[77.43264,27.44713],[77.42934,27.44455],[77.42666,27.44511],[77.42584,27.43631],[77.4211,27.42202],[77.43222,27.41539],[77.43806,27.40895],[77.43953,27.39072],[77.47025,27.38348],[77.4727,27.37708],[77.48462,27.38353],[77.50719,27.37709],[77.50953,27.37405],[77.50844,27.37182],[77.50991,27.36981],[77.51326,27.37011],[77.51585,27.36793],[77.5161,27.36252],[77.51969,27.36118],[77.52257,27.35725],[77.52993,27.35268],[77.52952,27.35166],[77.53957,27.34795],[77.54556,27.34957],[77.54794,27.33689],[77.57705,27.32794],[77.57727,27.32358],[77.57878,27.32266],[77.58379,27.3213],[77.59117,27.33046],[77.59965,27.33217],[77.6013,27.33429],[77.60453,27.33205],[77.61254,27.33192],[77.61199,27.33623],[77.6147,27.33658],[77.61636,27.34043],[77.62271,27.33619],[77.62081,27.3264],[77.62231,27.3207],[77.6219,27.31305],[77.61873,27.31227],[77.61449,27.30717],[77.61016,27.30614],[77.60801,27.30057],[77.60052,27.30073],[77.59867,27.2972],[77.60571,27.29055],[77.60629,27.2921],[77.6118,27.29078],[77.61683,27.28645],[77.6147,27.27892],[77.62178,27.27505],[77.61821,27.26966],[77.6171,27.27086],[77.61319,27.26582],[77.61602,27.26171],[77.61643,27.2578],[77.62116,27.25519],[77.62731,27.2595],[77.63318,27.25813],[77.63737,27.25098],[77.64301,27.24789],[77.64554,27.24328],[77.64294,27.2349],[77.65282,27.23484],[77.65255,27.22609],[77.64832,27.22353],[77.64506,27.21688],[77.64671,27.21022],[77.65029,27.20807],[77.66354,27.20728],[77.66564,27.20901],[77.67553,27.19807],[77.68113,27.1944],[77.67301,27.18196],[77.6584,27.17011],[77.649,27.17032],[77.64412,27.16555],[77.63787,27.16384],[77.63434,27.16788],[77.61996,27.17355],[77.61826,27.16886],[77.61005,27.16286],[77.61057,27.15581],[77.61217,27.15284],[77.61415,27.15249],[77.61369,27.1506],[77.60555,27.14356],[77.60032,27.1423],[77.59897,27.14345],[77.59754,27.1389],[77.59897,27.13455],[77.60282,27.13276],[77.60299,27.12455],[77.60446,27.12425],[77.59785,27.118],[77.59266,27.12023],[77.58811,27.11652],[77.58123,27.11924],[77.56248,27.11017],[77.55028,27.11128],[77.54904,27.10751],[77.54329,27.10422],[77.53993,27.10623],[77.53757,27.09833],[77.52039,27.10437],[77.51774,27.10246],[77.50544,27.0923],[77.50762,27.08888],[77.51059,27.09042],[77.52265,27.08917],[77.52636,27.08462],[77.52637,27.07824],[77.51935,27.06662],[77.52555,27.06375],[77.53162,27.06457],[77.54164,27.06261],[77.5447,27.07191],[77.54767,27.07154],[77.55359,27.07603],[77.55687,27.07534],[77.55888,27.07196],[77.55934,27.07313],[77.56583,27.07215],[77.56675,27.07319],[77.57169,27.07187],[77.57722,27.06833],[77.57276,27.06451],[77.57535,27.05987],[77.57531,27.05641],[77.57304,27.05275],[77.5729,27.04883],[77.56714,27.04687],[77.56321,27.02937],[77.57919,27.03821],[77.58209,27.03577],[77.59681,27.0327],[77.59605,27.02657],[77.60182,27.02253],[77.61497,27.02353],[77.62346,27.02199],[77.62853,27.01869],[77.62797,27.01507],[77.6299,27.01384],[77.63003,27.01021],[77.63415,27.01245],[77.63649,27.01942],[77.64221,27.02567],[77.6563,27.02098],[77.66023,27.02103],[77.66558,27.01725],[77.67341,27.02887],[77.67564,27.04138],[77.67977,27.04708],[77.69306,27.04085],[77.69291,27.03442],[77.68962,27.02667],[77.70573,27.01446],[77.70649,27.0069],[77.70526,27.00379],[77.71194,26.9971],[77.73006,26.99389],[77.7293,27.00752],[77.73285,27.02353],[77.73769,27.02975],[77.74111,27.02904],[77.74849,27.03088],[77.75099,27.02904],[77.74954,27.02121],[77.75952,27.01798],[77.75686,27.01009],[77.75986,27.00629],[77.76296,27.00685],[77.76138,26.99998],[77.758,27.0018],[77.75029,27.00187],[77.75196,26.99778],[77.75858,26.99696],[77.75327,26.99275],[77.74572,26.99505],[77.7475,26.98959],[77.74347,26.98317],[77.73907,26.98422],[77.72948,26.98296],[77.7224,26.98785],[77.69949,26.97512],[77.67625,26.97322],[77.67692,26.96556],[77.6736,26.96378],[77.67217,26.95997],[77.67092,26.96299],[77.66857,26.96174],[77.6682,26.96377],[77.66545,26.96278],[77.66381,26.96426],[77.66377,26.96723],[77.66088,26.97122],[77.64958,26.96288],[77.63496,26.95574],[77.6299,26.95172],[77.62295,26.94978],[77.60214,26.93327],[77.5975,26.93515],[77.59733,26.9383],[77.59224,26.94028],[77.59109,26.93597],[77.58851,26.93552],[77.58789,26.93106],[77.5832,26.92416],[77.55342,26.92004],[77.54506,26.91531],[77.54292,26.91627],[77.52349,26.91114],[77.49968,26.90207],[77.49026,26.90049],[77.46833,26.88722],[77.46032,26.88584],[77.4619,26.87749],[77.45896,26.87284],[77.45444,26.87183],[77.44842,26.87533],[77.4454,26.86826],[77.43807,26.86312],[77.42728,26.86409],[77.42664,26.859],[77.43116,26.85268],[77.42968,26.84708],[77.4213,26.83983],[77.4052,26.83478],[77.39787,26.83037],[77.40816,26.81671],[77.42061,26.81059],[77.42516,26.80152],[77.42909,26.80157],[77.42827,26.79319],[77.43229,26.78703],[77.4338,26.78737],[77.43708,26.78429],[77.43384,26.77957],[77.43524,26.77524],[77.43319,26.77482],[77.43363,26.77344],[77.43134,26.77108],[77.43428,26.76972],[77.43269,26.76784],[77.43664,26.76764],[77.43832,26.77012],[77.44184,26.7686],[77.44666,26.77392],[77.45151,26.77405],[77.45345,26.77788],[77.46691,26.77373],[77.46745,26.76748],[77.47037,26.76466],[77.46713,26.76299],[77.46367,26.75669],[77.46214,26.75728],[77.45567,26.74778],[77.45456,26.74187],[77.46036,26.74182],[77.4663,26.74465],[77.47804,26.7457],[77.48523,26.74801],[77.49463,26.75705],[77.50256,26.76873],[77.48895,26.77904],[77.48886,26.78604],[77.48747,26.78815],[77.49324,26.79767],[77.49366,26.80156],[77.50069,26.81701],[77.49912,26.82412],[77.5014,26.83519],[77.50117,26.84445],[77.50782,26.84571],[77.51768,26.84423],[77.51771,26.84284],[77.52071,26.84152],[77.52086,26.83818],[77.51761,26.83776],[77.51698,26.82578],[77.52011,26.82179],[77.52569,26.81887],[77.54197,26.82242],[77.5576,26.81764],[77.57448,26.82086],[77.57805,26.82721],[77.59243,26.82791],[77.60081,26.83561],[77.60837,26.83912],[77.60762,26.8278],[77.61034,26.82858],[77.61823,26.83204],[77.6204,26.8428],[77.62976,26.84147],[77.67474,26.85755],[77.67458,26.86349],[77.67643,26.86848],[77.68232,26.8694],[77.68665,26.87525],[77.6943,26.87396],[77.69615,26.8677],[77.6976,26.86738],[77.70124,26.86775],[77.70651,26.87684],[77.72261,26.87432],[77.72788,26.88526],[77.7259,26.88876],[77.72698,26.89022],[77.723,26.89514],[77.71764,26.89726],[77.72492,26.91038],[77.73238,26.92015],[77.73779,26.92058],[77.744,26.91876],[77.74571,26.92102],[77.75318,26.91687],[77.75891,26.92648],[77.75985,26.93246],[77.77475,26.93215],[77.78047,26.92985],[77.77949,26.92686],[77.78688,26.92386],[77.78647,26.92234],[77.79299,26.91705],[77.7982,26.916],[77.81021,26.92419],[77.815,26.91975],[77.8215,26.91777],[77.82383,26.91993],[77.83194,26.91427],[77.83638,26.91676],[77.84185,26.91257],[77.85024,26.91283],[77.85782,26.90626],[77.86771,26.90628],[77.86896,26.90164],[77.87756,26.90237],[77.88082,26.89945],[77.88452,26.89098],[77.89248,26.89016],[77.8938,26.88892],[77.89187,26.88707],[77.89649,26.884],[77.90432,26.88333],[77.9089,26.89062],[77.90672,26.89286],[77.90883,26.90638],[77.90686,26.91265],[77.90355,26.9146],[77.90636,26.91778],[77.91558,26.91419],[77.91302,26.90886],[77.91562,26.90739],[77.92577,26.90982],[77.93969,26.90678],[77.943,26.89711],[77.94841,26.89358],[77.95813,26.89683],[77.96958,26.90597],[77.97134,26.90587],[77.97345,26.90294],[77.97139,26.90032],[77.97341,26.89821],[77.97232,26.89607],[77.97645,26.89221],[77.98721,26.88935],[77.98873,26.89169],[77.99303,26.89249],[78.00224,26.9029],[78.00565,26.90207],[78.00963,26.90405],[78.01459,26.90291],[78.02132,26.90032],[78.0234,26.89099],[78.03019,26.88603],[78.02997,26.8841],[78.02722,26.88397],[78.02778,26.88044],[78.02577,26.8789],[78.02423,26.87257],[78.03119,26.87363],[78.03548,26.8708],[78.03528,26.86837],[78.03227,26.86516],[78.02096,26.85751],[78.02224,26.85268],[78.02647,26.84953],[78.032,26.8518],[78.04466,26.86998],[78.05597,26.86839],[78.05172,26.87072],[78.05019,26.87578],[78.05212,26.89421],[78.05126,26.9017],[78.04805,26.90747],[78.04881,26.91013],[78.05585,26.90691],[78.05952,26.90885],[78.0641,26.90652],[78.06695,26.91139],[78.07173,26.90637],[78.09604,26.89378],[78.09867,26.89659],[78.09438,26.9033],[78.10021,26.9049],[78.10434,26.90343],[78.10737,26.89638],[78.1112,26.89588],[78.1131,26.89998],[78.11236,26.90358],[78.1084,26.91219],[78.10164,26.91698],[78.10517,26.92682],[78.12019,26.92149],[78.12182,26.92258],[78.12108,26.93204],[78.1232,26.93183],[78.12278,26.93452],[78.11375,26.93599],[78.11177,26.93976],[78.11856,26.94697],[78.12451,26.94928],[78.1328,26.94737],[78.14448,26.94988],[78.15129,26.94801],[78.15646,26.94321],[78.17199,26.94817],[78.18128,26.94084],[78.19155,26.94246],[78.19766,26.94093],[78.20517,26.93263],[78.21014,26.93123],[78.21643,26.93508],[78.22151,26.94472],[78.22496,26.9463],[78.23129,26.93658],[78.23738,26.93597],[78.2383,26.92685],[78.24191,26.92614],[78.2479,26.92865],[78.25419,26.92563],[78.25576,26.92809],[78.25319,26.93273],[78.25364,26.9352],[78.25729,26.93457],[78.26485,26.92675],[78.26531,26.92259],[78.27159,26.92122],[78.27077,26.9151],[78.2637,26.90831],[78.26229,26.90195],[78.25913,26.89674],[78.25081,26.89178],[78.2469,26.89307],[78.24371,26.88869],[78.23708,26.88897],[78.23421,26.87599],[78.23264,26.87428],[78.22664,26.87488],[78.21922,26.87187],[78.21258,26.87137],[78.2127,26.86982],[78.20862,26.86886],[78.20841,26.87197],[78.20261,26.88172],[78.19762,26.88257],[78.19682,26.87952],[78.20222,26.86633],[78.21176,26.85069],[78.21273,26.84613],[78.21702,26.84336],[78.22017,26.84378],[78.22081,26.84012],[78.21858,26.8345],[78.21959,26.83267],[78.222,26.83046],[78.22975,26.82981],[78.24207,26.82503],[78.25996,26.81417],[78.26791,26.81358],[78.27246,26.81593],[78.27489,26.82519],[78.27312,26.84294],[78.27824,26.85086],[78.28251,26.85444],[78.30424,26.86245],[78.33055,26.86238],[78.35391,26.86892],[78.36265,26.86924],[78.3686,26.86709],[78.37276,26.86336],[78.38256,26.84065],[78.3929,26.8236],[78.39905,26.81848],[78.40555,26.81841],[78.42765,26.82537],[78.43429,26.82571],[78.44012,26.81998],[78.45317,26.79771],[78.4617,26.78819],[78.47963,26.78703],[78.49779,26.78159],[78.52323,26.78031],[78.54408,26.76461],[78.56478,26.76113],[78.57173,26.75167],[78.57686,26.74897],[78.58161,26.74889],[78.59281,26.75234],[78.60303,26.75005],[78.613,26.75243],[78.61624,26.75603],[78.61931,26.76666],[78.62845,26.77323],[78.64683,26.76946],[78.66291,26.76243],[78.67053,26.76241],[78.67591,26.76757],[78.67739,26.77809],[78.68452,26.78875],[78.69841,26.79238],[78.71084,26.79238],[78.7229,26.79727],[78.72803,26.79489],[78.72988,26.79222],[78.72565,26.77905],[78.72719,26.77647],[78.73621,26.77468],[78.73978,26.77694],[78.74692,26.78667],[78.7536,26.78701],[78.75827,26.78452],[78.76129,26.78075],[78.76674,26.76332],[78.77102,26.75908],[78.78512,26.75918],[78.81239,26.76335],[78.81899,26.76094],[78.82243,26.75725],[78.83194,26.73941],[78.84319,26.7283],[78.85848,26.70928],[78.87236,26.69779],[78.88918,26.69696],[78.90007,26.70054],[78.90683,26.7065],[78.91256,26.70683],[78.92419,26.70343],[78.93438,26.69757],[78.95606,26.69168],[78.9586,26.68733],[78.95772,26.68306],[78.94887,26.67492],[78.94248,26.66407],[78.94298,26.65669],[78.94549,26.65482],[78.94929,26.65454],[78.9572,26.65766],[78.9711,26.67145],[78.97915,26.67563],[78.99457,26.67715],[79.00378,26.67374],[79.00852,26.66929],[79.00863,26.66331],[78.99346,26.64191],[79.00803,26.62356],[79.01706,26.60104],[78.99808,26.59763],[78.99205,26.59406],[78.98914,26.59556],[78.98748,26.59283],[78.98759,26.58632],[78.99004,26.58465],[78.98978,26.57845],[78.99107,26.57701],[79.00069,26.57798],[79.00724,26.56546],[79.00628,26.55937],[79.01434,26.55105],[79.01269,26.54912],[79.00702,26.54859],[79.00774,26.54387],[79.00992,26.54322],[79.01457,26.54619],[79.01712,26.54149],[79.01887,26.54095],[79.02638,26.54679],[79.02834,26.54669],[79.02915,26.54317],[79.0266,26.53571],[79.03981,26.52986],[79.0383,26.51845],[79.03966,26.51511],[79.04183,26.51457],[79.0462,26.51821],[79.04862,26.518],[79.04493,26.5103],[79.0538,26.50254],[79.05632,26.49509],[79.06813,26.49662],[79.0678,26.4846],[79.0717,26.47887],[79.0616,26.46532],[79.05779,26.46235],[79.05262,26.45374],[79.0573,26.45249],[79.06215,26.45384],[79.06382,26.44871],[79.06807,26.44598],[79.06755,26.4441],[79.06989,26.44162],[79.07701,26.44214],[79.07879,26.44036],[79.08132,26.44123],[79.08172,26.44297],[79.08381,26.44146],[79.08784,26.44618],[79.0959,26.44259],[79.09722,26.44479],[79.09607,26.44999],[79.09972,26.45259],[79.10788,26.44814],[79.11801,26.44558],[79.1219,26.44705],[79.12301,26.44406],[79.12703,26.44296],[79.12928,26.44047],[79.13518,26.44013],[79.12828,26.43142],[79.12432,26.42261],[79.1237,26.41156],[79.12528,26.41238],[79.12598,26.41125],[79.10469,26.40638],[79.10025,26.40817],[79.0995,26.41201],[79.09521,26.41264],[79.09435,26.41085],[79.09609,26.40798],[79.09438,26.40833],[79.09187,26.40595],[79.089,26.39663],[79.09639,26.38305],[79.09684,26.381],[79.0943,26.37615],[79.09692,26.37549],[79.0954,26.37373],[79.09637,26.37232],[79.09479,26.36967],[79.09135,26.37113],[79.08731,26.36843],[79.08424,26.36232],[79.08561,26.36109],[79.08447,26.35811],[79.08907,26.35463],[79.09387,26.35393],[79.09809,26.35555],[79.10309,26.35319],[79.10475,26.34946],[79.10758,26.34963],[79.10926,26.35213],[79.11095,26.35156],[79.11085,26.34961],[79.11628,26.3498],[79.1163,26.3483],[79.12284,26.34693],[79.12779,26.34221],[79.12844,26.33888],[79.13221,26.33718],[79.13413,26.33914],[79.13883,26.33751],[79.13722,26.33551],[79.13263,26.33532],[79.13497,26.32474],[79.12742,26.32186],[79.12515,26.32704],[79.12492,26.32241],[79.11553,26.32048],[79.11625,26.31665],[79.11983,26.31258],[79.1249,26.31159],[79.11753,26.30517],[79.1186,26.30034],[79.11742,26.29891],[79.11368,26.30195],[79.11331,26.30464],[79.10952,26.30652],[79.10193,26.30682],[79.0979,26.30093],[79.09708,26.29453],[79.08989,26.28772],[79.09652,26.27849],[79.09107,26.27252],[79.09065,26.27003],[79.0869,26.27139],[79.08775,26.27331],[79.0857,26.27403],[79.08545,26.27622],[79.08361,26.27549],[79.08443,26.27969],[79.08069,26.27841],[79.07701,26.28062],[79.07453,26.27783],[79.06464,26.27704],[79.06184,26.27174],[79.05351,26.26269],[79.05693,26.26025],[79.05566,26.25886],[79.04564,26.26031],[79.04597,26.25645],[79.0521,26.2546],[79.05343,26.25082],[79.05712,26.24904],[79.06446,26.2493],[79.0697,26.2457],[79.06894,26.24317],[79.07094,26.24152],[79.0642,26.23883],[79.06243,26.2365],[79.06535,26.22977],[79.06344,26.2259],[79.05333,26.22804],[79.0471,26.22417],[79.03786,26.22733],[79.0346,26.22537],[79.03067,26.23929],[79.01944,26.24761],[79.01088,26.24468],[79.00957,26.24201],[79.00372,26.24441],[78.9968,26.24189],[78.9939,26.23874],[78.99169,26.23896],[78.98936,26.23498],[78.99655,26.22804],[79.01363,26.22551],[79.02582,26.2201],[79.02481,26.2084],[79.02783,26.20328],[79.02083,26.20021],[79.02009,26.19822],[79.02583,26.19177],[79.00688,26.19167],[78.99768,26.19849],[78.99367,26.19689],[78.98311,26.18436],[78.98661,26.18242],[78.99471,26.17291],[78.99955,26.16993],[79.00447,26.16922],[79.00529,26.16744],[79.00413,26.16638],[79.00614,26.16392],[79.00476,26.16263],[79.00823,26.1564],[79.00428,26.14982],[79.0049,26.14805],[78.99854,26.15001],[78.99426,26.1462],[78.97996,26.1511],[78.96696,26.15014],[78.96438,26.14846],[78.96565,26.14141],[78.96372,26.1404],[78.9629,26.13653],[78.95157,26.13432],[78.94887,26.12868],[78.95848,26.12797],[78.96237,26.12532],[78.96344,26.12216],[78.97683,26.11604],[78.97746,26.11114],[78.97559,26.1052],[78.987,26.0995],[78.99358,26.09371],[79.0021,26.09017],[79.00866,26.09321],[79.01257,26.08991],[79.01206,26.08318],[79.00841,26.08014],[79.00814,26.07542],[79.00275,26.06665],[78.99069,26.06883],[78.98943,26.06284],[78.9863,26.06043],[78.98614,26.05368],[78.98188,26.05161],[78.98015,26.04812],[78.9769,26.04794],[78.97655,26.05104],[78.97273,26.05028],[78.97389,26.04504],[78.9693,26.04563],[78.96039,26.03486],[78.95455,26.03338],[78.95302,26.02934],[78.94826,26.02775],[78.95351,26.01522],[78.94823,26.01051],[78.94821,26.00822],[78.94449,26.00628],[78.9466,26.00116],[78.95129,25.99852],[78.95606,25.99801],[78.95681,25.99654],[78.95554,25.99491],[78.9483,25.99319],[78.94932,25.99123],[78.95298,25.991],[78.95315,25.98906],[78.94354,25.97887],[78.94068,25.97851],[78.93611,25.98184],[78.93318,25.97933],[78.93494,25.97498],[78.93781,25.97377],[78.93761,25.96453],[78.93473,25.96442],[78.93484,25.96137],[78.9305,25.95893],[78.93484,25.95586],[78.93429,25.95314],[78.9371,25.95275],[78.93329,25.94818],[78.93885,25.94427],[78.93896,25.94269],[78.93609,25.94167],[78.93207,25.94745],[78.92748,25.94725],[78.92154,25.94065],[78.91671,25.94005],[78.91569,25.93797],[78.90825,25.9345],[78.90969,25.93153],[78.90576,25.92953],[78.90566,25.92562],[78.89859,25.91794],[78.88464,25.91393],[78.88337,25.90901],[78.88845,25.90422],[78.89115,25.89715],[78.89481,25.89517],[78.88698,25.88471],[78.88672,25.88291],[78.89168,25.88024],[78.88738,25.86849],[78.87621,25.87588],[78.87306,25.87514],[78.86411,25.87141],[78.86195,25.86556],[78.85241,25.85665],[78.8506,25.85218],[78.85141,25.83846],[78.86209,25.84274],[78.8643,25.83594],[78.87258,25.83509],[78.87193,25.82811],[78.87424,25.82215],[78.87061,25.81679],[78.86997,25.80903],[78.87281,25.80832],[78.87244,25.80138],[78.87039,25.80137],[78.86708,25.79321],[78.86439,25.79308],[78.86364,25.79078],[78.85715,25.79182],[78.85553,25.79516],[78.84595,25.80078],[78.84745,25.80268],[78.84465,25.80342],[78.84753,25.80334],[78.84478,25.80456],[78.846,25.80519],[78.84473,25.80605],[78.84618,25.80719],[78.84564,25.81136],[78.84796,25.81517],[78.84555,25.82155],[78.81844,25.82901],[78.81487,25.82236],[78.81038,25.8169],[78.80777,25.81685],[78.80627,25.81309],[78.8092,25.80989],[78.81143,25.8096],[78.81145,25.80769],[78.81431,25.80704],[78.82046,25.81574],[78.82831,25.81434],[78.8333,25.80962],[78.82862,25.79571],[78.80829,25.80097],[78.80292,25.79208],[78.79785,25.78838],[78.79138,25.77581],[78.78597,25.76924],[78.78628,25.76472],[78.78288,25.75848],[78.77883,25.75787],[78.77628,25.75978],[78.77296,25.75861],[78.77208,25.75722],[78.77356,25.75527],[78.77081,25.74863],[78.75873,25.75452],[78.75286,25.75],[78.7557,25.73047],[78.76333,25.71993],[78.77478,25.717],[78.78363,25.70872],[78.79991,25.70507],[78.79998,25.70294],[78.79511,25.69978],[78.79557,25.69672],[78.80453,25.69228],[78.80716,25.68412],[78.8125,25.68105],[78.8167,25.67632],[78.81878,25.6692],[78.8157,25.66233],[78.81987,25.64857],[78.81613,25.63581],[78.81169,25.63208],[78.81176,25.62078],[78.79799,25.61643],[78.79394,25.61242],[78.78236,25.61271],[78.77881,25.61091],[78.77397,25.61205],[78.76621,25.6102],[78.75032,25.60304],[78.74927,25.59877],[78.74215,25.59699],[78.73531,25.60101],[78.73177,25.60625],[78.72457,25.60216],[78.72065,25.60554],[78.71733,25.60533],[78.71598,25.6036],[78.71634,25.59953],[78.7042,25.59791],[78.70018,25.59507],[78.69942,25.59091],[78.69508,25.58783],[78.68731,25.58889],[78.67886,25.5853],[78.67489,25.57733],[78.6675,25.5747],[78.65867,25.55989],[78.6463,25.56075],[78.62419,25.56738],[78.6308,25.57893],[78.61814,25.58366],[78.61596,25.58353],[78.61078,25.57797],[78.61169,25.56987],[78.60155,25.56912],[78.59802,25.57069],[78.59243,25.56319],[78.59113,25.55834],[78.58774,25.5566],[78.58227,25.56138],[78.56921,25.56462],[78.56675,25.56256],[78.56316,25.56274],[78.56063,25.55905],[78.5587,25.56058],[78.55565,25.55928],[78.54466,25.56158],[78.54248,25.56295],[78.54219,25.56535],[78.5327,25.57166],[78.52837,25.56666],[78.52746,25.56801],[78.52366,25.56699],[78.51912,25.57029],[78.51275,25.56931],[78.50912,25.57254],[78.5066,25.57152],[78.50672,25.57297],[78.50206,25.57493],[78.49986,25.57416],[78.49766,25.57779],[78.49334,25.5787],[78.4871,25.57315],[78.48635,25.57436],[78.48266,25.57222],[78.48332,25.5708],[78.47864,25.56741],[78.47833,25.56468],[78.47537,25.56466],[78.46685,25.55932],[78.46567,25.55637],[78.46657,25.55337],[78.46983,25.55348],[78.46627,25.55118],[78.46469,25.54551],[78.4563,25.54806],[78.45096,25.55176],[78.44656,25.55943],[78.44762,25.56072],[78.44647,25.56146],[78.44937,25.56329],[78.4436,25.5632],[78.42828,25.55043],[78.42783,25.54539],[78.42635,25.54279],[78.42107,25.53992],[78.41934,25.53296],[78.42031,25.52403],[78.41906,25.51814],[78.42885,25.51154],[78.42853,25.50993],[78.42248,25.51003],[78.42059,25.50813],[78.41881,25.50902],[78.41681,25.5017],[78.4193,25.50039],[78.42869,25.48785],[78.42741,25.48485],[78.43131,25.47363],[78.42781,25.4712],[78.41649,25.47648],[78.41411,25.46979],[78.40386,25.4671],[78.40031,25.46355],[78.39722,25.45627],[78.39496,25.44421],[78.38095,25.44035],[78.37766,25.43681],[78.37643,25.43865],[78.36946,25.43833],[78.36219,25.44598],[78.3602,25.45147],[78.35454,25.45198],[78.34902,25.44281],[78.34991,25.44096],[78.34698,25.43528],[78.34179,25.43098],[78.3389,25.43102],[78.33939,25.42638],[78.34309,25.42002],[78.33884,25.40698],[78.34091,25.40283],[78.34053,25.39952],[78.33138,25.39075],[78.32237,25.38741],[78.31685,25.37867],[78.30794,25.3812],[78.30531,25.37675],[78.30611,25.37518],[78.3008,25.35993],[78.30498,25.3605],[78.31605,25.35755],[78.31909,25.35496],[78.32806,25.35254],[78.3373,25.33639],[78.33755,25.33025],[78.34379,25.32846],[78.3387,25.32406],[78.3337,25.3226],[78.33055,25.319],[78.32935,25.3196],[78.32489,25.31595],[78.32274,25.31633],[78.31126,25.30519],[78.31173,25.3033],[78.3166,25.30184],[78.3197,25.29883],[78.32991,25.29649],[78.33397,25.29241],[78.35459,25.29225],[78.35011,25.27733],[78.35709,25.27314],[78.36055,25.27272],[78.36637,25.26673],[78.36877,25.26138],[78.37251,25.25991],[78.3598,25.24219],[78.36739,25.23685],[78.37296,25.23719],[78.37488,25.23924],[78.37852,25.23869],[78.37714,25.22784],[78.38206,25.22259],[78.39672,25.21691],[78.39796,25.21822],[78.4025,25.2176],[78.4049,25.21488],[78.41095,25.21267],[78.3993,25.20862],[78.39829,25.20538],[78.39138,25.20119],[78.39156,25.19894],[78.39466,25.19735],[78.39413,25.1935],[78.39608,25.18722],[78.41664,25.18353],[78.41636,25.17644],[78.42474,25.17208],[78.4234,25.16931],[78.44337,25.16548],[78.44608,25.16823],[78.45155,25.16893],[78.45826,25.16372],[78.45187,25.15998],[78.44785,25.15271],[78.43206,25.15517],[78.4273,25.15399],[78.42737,25.14589],[78.44203,25.13094],[78.44795,25.12811],[78.44682,25.12177],[78.43444,25.12014],[78.41544,25.12843],[78.40682,25.12893],[78.39973,25.12411],[78.38786,25.10572],[78.38345,25.10172],[78.36084,25.09573],[78.33863,25.08658],[78.3355,25.08114],[78.33549,25.06656],[78.34018,25.04028],[78.34737,25.02153],[78.34536,25.01208],[78.33385,24.9955],[78.31682,24.99001],[78.31181,24.98563],[78.30703,24.97747],[78.29459,24.96306],[78.28666,24.95814],[78.27915,24.95607],[78.27093,24.94877],[78.26595,24.94102],[78.25623,24.9368],[78.2494,24.92987],[78.22381,24.91531],[78.21059,24.89481],[78.19495,24.88943],[78.17351,24.87864],[78.16906,24.86934],[78.16897,24.86262],[78.17327,24.84669],[78.17751,24.84333],[78.19347,24.84252],[78.1976,24.83978],[78.20403,24.8244],[78.21668,24.80859],[78.23174,24.77714],[78.23574,24.77175],[78.23505,24.76381],[78.23178,24.76236],[78.22557,24.75303],[78.22614,24.74691],[78.25035,24.71148],[78.25752,24.70417],[78.26534,24.67934],[78.2767,24.66299],[78.27522,24.65818],[78.26405,24.6511],[78.26267,24.646],[78.26532,24.63141],[78.27618,24.61948],[78.27798,24.61476],[78.2733,24.59576],[78.27289,24.57941],[78.26733,24.57595],[78.26482,24.5675],[78.26646,24.55939],[78.26447,24.5522],[78.2561,24.54714],[78.24351,24.5442],[78.22944,24.53753],[78.22591,24.53129],[78.22542,24.52137],[78.22809,24.51738],[78.23321,24.51408],[78.24442,24.51142],[78.24602,24.50954],[78.24773,24.5026],[78.24406,24.48905],[78.24589,24.48614],[78.24957,24.48358],[78.26802,24.47904],[78.27498,24.47392],[78.27379,24.46723],[78.26416,24.4557],[78.26452,24.4531],[78.26969,24.44694],[78.307,24.42309],[78.32189,24.4088],[78.34075,24.40207],[78.34385,24.39914],[78.34491,24.39387],[78.3489,24.38744],[78.3562,24.38543],[78.36579,24.38598],[78.36967,24.37493],[78.35793,24.36758],[78.35693,24.36282],[78.3468,24.35241],[78.34329,24.34462],[78.33442,24.33801],[78.3292,24.32945],[78.32933,24.3265],[78.33146,24.32393],[78.34201,24.31882],[78.34555,24.31447],[78.34559,24.30624],[78.34805,24.29958],[78.35816,24.29231],[78.36627,24.29107],[78.37033,24.28404],[78.3781,24.28408],[78.38085,24.28041],[78.38187,24.27312],[78.38567,24.26967],[78.38705,24.2709],[78.38797,24.26907],[78.38894,24.27093],[78.39538,24.26896],[78.39813,24.26944],[78.40001,24.27202],[78.40358,24.2706],[78.41164,24.27163],[78.41167,24.27282],[78.41396,24.27298],[78.41408,24.27792],[78.4184,24.28494],[78.4242,24.28558],[78.4307,24.28377],[78.43388,24.28792],[78.43394,24.29127],[78.43999,24.29588],[78.43762,24.30858],[78.43869,24.31254],[78.44587,24.31587],[78.44389,24.31935],[78.45527,24.32407],[78.45639,24.32818],[78.46366,24.33013],[78.47758,24.33848],[78.47421,24.34777],[78.47429,24.35634],[78.50048,24.38907],[78.50223,24.39034],[78.51838,24.38782],[78.52565,24.38319],[78.52729,24.37914],[78.52983,24.37891],[78.52723,24.37525],[78.52991,24.37238],[78.52988,24.3681],[78.53837,24.36795],[78.55934,24.35674],[78.56331,24.35798],[78.57319,24.35099],[78.575,24.35532],[78.57647,24.35565],[78.586,24.35374],[78.5831,24.34983],[78.58429,24.3465],[78.58929,24.33772],[78.5961,24.33518],[78.59652,24.332],[78.60104,24.32655],[78.60365,24.3145],[78.60942,24.30855],[78.61582,24.30963],[78.61821,24.30709],[78.61914,24.31033],[78.62341,24.3071],[78.62624,24.30732],[78.62844,24.30394],[78.62809,24.30031],[78.61997,24.29289],[78.62003,24.29032],[78.62454,24.28656],[78.6258,24.28059],[78.63137,24.28643],[78.63877,24.28513],[78.64565,24.27853],[78.64928,24.27163],[78.66005,24.26759],[78.6643,24.2561],[78.66383,24.25067],[78.66712,24.24476],[78.66664,24.24196],[78.66863,24.24004],[78.68252,24.23823],[78.70306,24.22692],[78.70871,24.23431],[78.72557,24.23644],[78.72364,24.24],[78.72638,24.24203],[78.72789,24.24822],[78.73417,24.25241],[78.74126,24.24734],[78.74181,24.24501],[78.739,24.23808],[78.74042,24.23498],[78.7416,24.23384],[78.75042,24.23389],[78.75496,24.23834],[78.75545,24.24112],[78.75979,24.24407],[78.75987,24.25733],[78.76189,24.25954],[78.76741,24.25311],[78.76865,24.24843],[78.76766,24.23879],[78.76452,24.2318],[78.76751,24.22668],[78.76737,24.22021],[78.77133,24.21447],[78.77699,24.21108],[78.78113,24.20605],[78.78075,24.19977],[78.783,24.18915],[78.78943,24.17711],[78.79282,24.17683],[78.79534,24.17813],[78.80621,24.17829],[78.81267,24.18103],[78.81439,24.18589],[78.8122,24.19105],[78.81294,24.20297],[78.81495,24.2068],[78.82177,24.20415],[78.82376,24.19685],[78.82675,24.19545],[78.83807,24.20734],[78.84689,24.21377],[78.8521,24.21404],[78.86095,24.20921],[78.8768,24.2138],[78.88185,24.21701],[78.88805,24.22728],[78.88407,24.24335],[78.88437,24.25],[78.90546,24.26453],[78.91607,24.26763],[78.91866,24.28298],[78.91161,24.288],[78.90964,24.298],[78.91888,24.30023],[78.92365,24.30649],[78.94125,24.31529],[78.96301,24.34421],[78.97145,24.34761],[78.9707,24.35138],[78.97259,24.35449],[78.96991,24.37028],[78.97503,24.37857],[78.97693,24.38875],[78.98435,24.40478],[78.98405,24.41026],[78.99245,24.41891],[78.99365,24.42275],[78.98576,24.44168],[78.96522,24.43873],[78.96096,24.43954],[78.9548,24.43703],[78.94748,24.43662],[78.94272,24.44408],[78.94178,24.45107],[78.93992,24.45345],[78.92827,24.46019],[78.91512,24.4582],[78.91421,24.45962],[78.91485,24.46229],[78.9127,24.46558],[78.91221,24.47344],[78.91634,24.48233],[78.92058,24.49972],[78.92495,24.49963],[78.92719,24.49452],[78.9318,24.49138],[78.93714,24.49105],[78.92792,24.48433],[78.92722,24.48207],[78.93622,24.47942],[78.94312,24.47901],[78.96347,24.48353],[78.97044,24.48922],[78.97152,24.49424],[78.96561,24.49792],[78.95705,24.49876],[78.94726,24.5024],[78.94804,24.51515],[78.95132,24.51878],[78.94648,24.52585],[78.94368,24.53451],[78.94815,24.54414],[78.95321,24.5469],[78.94711,24.55071],[78.94834,24.55425],[78.94645,24.55715],[78.93502,24.56076],[78.9338,24.56396],[78.92921,24.56573],[78.92493,24.57499],[78.92343,24.5735],[78.92015,24.57481],[78.91262,24.59074],[78.91257,24.60017],[78.91114,24.60012],[78.91003,24.60297],[78.90206,24.60616],[78.90207,24.60779],[78.90061,24.60722],[78.89915,24.61425],[78.89701,24.61479],[78.89479,24.6213],[78.8962,24.62572],[78.89218,24.62929],[78.88941,24.62962],[78.88999,24.63114],[78.88555,24.63495],[78.88636,24.63737],[78.88231,24.64041],[78.88323,24.64129],[78.87721,24.64221],[78.87705,24.64081],[78.87447,24.64178],[78.86802,24.63999],[78.86861,24.6368],[78.86623,24.62743],[78.85977,24.61764],[78.85555,24.61785],[78.85253,24.6247],[78.84873,24.62213],[78.8433,24.62329],[78.83776,24.6158],[78.83461,24.60456],[78.82637,24.6046],[78.82383,24.60244],[78.81679,24.60099],[78.81244,24.6021],[78.81145,24.60393],[78.80322,24.60353],[78.8032,24.59929],[78.799,24.59437],[78.78379,24.58856],[78.77657,24.58874],[78.76933,24.59417],[78.75203,24.60018],[78.75457,24.60382],[78.75109,24.61721],[78.75482,24.61992],[78.75208,24.62192],[78.7527,24.63401],[78.75001,24.64185],[78.75196,24.64241],[78.74948,24.64676],[78.75064,24.64856],[78.74919,24.64817],[78.74863,24.65106],[78.7454,24.6516],[78.74393,24.65406],[78.74719,24.65651],[78.74677,24.66268],[78.75051,24.66419],[78.75474,24.66915],[78.75879,24.66904],[78.76147,24.6709],[78.76522,24.68087],[78.76364,24.69048],[78.77098,24.69141],[78.77354,24.69662],[78.77795,24.69948],[78.781,24.70608],[78.78115,24.70893],[78.77685,24.71364],[78.77329,24.73117],[78.7723,24.74311],[78.7766,24.75183],[78.77,24.75808],[78.77135,24.76883],[78.77035,24.7747],[78.7728,24.78257],[78.7704,24.7884],[78.77429,24.79462],[78.78703,24.80131],[78.78984,24.81098],[78.78342,24.81612],[78.77593,24.83072],[78.77357,24.84094],[78.77477,24.84975],[78.77004,24.85902],[78.76219,24.86002],[78.7539,24.86883],[78.74676,24.86522],[78.72913,24.87895],[78.72217,24.88166],[78.71089,24.87966],[78.70503,24.88725],[78.69668,24.89318],[78.68365,24.89499],[78.67656,24.89863],[78.66724,24.91379],[78.66339,24.93844],[78.65577,24.94037],[78.65186,24.93838],[78.64988,24.94102],[78.65284,24.9438],[78.65236,24.94784],[78.63613,24.95927],[78.63173,24.95769],[78.63164,24.96162],[78.63394,24.96339],[78.633,24.96712],[78.64003,24.97208],[78.63893,24.97578],[78.6414,24.97778],[78.64143,24.98197],[78.64401,24.98429],[78.64471,25.00332],[78.64706,25.00612],[78.64572,25.0186],[78.65336,25.03145],[78.65192,25.03916],[78.65262,25.05059],[78.63602,25.07717],[78.62815,25.0862],[78.61326,25.08758],[78.60245,25.09442],[78.60191,25.09784],[78.60568,25.10887],[78.60429,25.1175],[78.60533,25.12693],[78.60333,25.14596],[78.60068,25.15539],[78.58334,25.18733],[78.57639,25.1952],[78.57054,25.20519],[78.5702,25.22388],[78.56819,25.22474],[78.56281,25.22148],[78.55644,25.21025],[78.55554,25.21142],[78.56012,25.222],[78.56744,25.22994],[78.56808,25.24084],[78.5731,25.24584],[78.5779,25.25482],[78.57127,25.25722],[78.5705,25.25831],[78.57204,25.25957],[78.56846,25.25978],[78.563,25.26368],[78.55972,25.26359],[78.54983,25.26776],[78.54527,25.26471],[78.54118,25.26568],[78.53731,25.26889],[78.53361,25.26837],[78.53084,25.27711],[78.53372,25.28063],[78.5318,25.28162],[78.53092,25.28465],[78.51665,25.27789],[78.51056,25.27678],[78.50753,25.28454],[78.50343,25.28953],[78.48698,25.281],[78.48364,25.27736],[78.47289,25.27374],[78.46495,25.26659],[78.45085,25.26211],[78.43829,25.27458],[78.43659,25.2827],[78.43503,25.28416],[78.43893,25.28866],[78.44034,25.29547],[78.44519,25.29931],[78.45379,25.30127],[78.46709,25.29076],[78.47118,25.29034],[78.47295,25.2855],[78.47756,25.28948],[78.47693,25.29663],[78.47804,25.29852],[78.48434,25.3009],[78.49478,25.31308],[78.49717,25.31943],[78.5023,25.3209],[78.50298,25.3187],[78.5006,25.31378],[78.50359,25.30407],[78.50275,25.30087],[78.50657,25.29952],[78.5099,25.29555],[78.5202,25.29946],[78.53119,25.30002],[78.534,25.31013],[78.53754,25.31066],[78.55307,25.31964],[78.55007,25.32238],[78.54694,25.32198],[78.54386,25.32418],[78.54371,25.32603],[78.53964,25.32775],[78.54048,25.33011],[78.53705,25.33823],[78.54123,25.34554],[78.53064,25.35148],[78.532,25.35658],[78.53649,25.3602],[78.55184,25.3567],[78.55281,25.35294],[78.56138,25.34122],[78.56727,25.34074],[78.57083,25.3433],[78.57751,25.34384],[78.58329,25.34697],[78.58475,25.35338],[78.58779,25.35588],[78.58877,25.36597],[78.5857,25.37417],[78.57778,25.38124],[78.56924,25.37731],[78.56289,25.37726],[78.56354,25.38326],[78.56616,25.3871],[78.5665,25.39353],[78.57612,25.39073],[78.58145,25.38571],[78.58364,25.3877],[78.59019,25.38603],[78.59941,25.39256],[78.59843,25.39627],[78.60225,25.39916],[78.60111,25.409],[78.60667,25.4113],[78.60446,25.41351],[78.60967,25.41602],[78.61392,25.41458],[78.61938,25.41559],[78.62362,25.41347],[78.62575,25.40123],[78.631,25.3993],[78.63582,25.40069],[78.64493,25.41267],[78.64456,25.41947],[78.64096,25.42942],[78.64136,25.43349],[78.64321,25.43531],[78.65068,25.43637],[78.65398,25.43841],[78.65625,25.43779],[78.65983,25.44166],[78.66545,25.43978],[78.67041,25.44002],[78.68171,25.43322],[78.68987,25.44575],[78.69655,25.44299],[78.69961,25.44009],[78.6997,25.43701],[78.70257,25.43294],[78.71143,25.4281],[78.70906,25.42401],[78.70307,25.41894],[78.6749,25.39957],[78.67142,25.40507],[78.66831,25.40648],[78.66601,25.41581],[78.6589,25.4085],[78.65916,25.40579],[78.66362,25.40088],[78.66234,25.39633],[78.66629,25.39273],[78.65895,25.38529],[78.66384,25.38256],[78.67536,25.38115],[78.69467,25.37386],[78.6996,25.38189],[78.70301,25.37377],[78.70761,25.37193],[78.71405,25.37215],[78.7136,25.36962],[78.70791,25.36309],[78.70879,25.35199],[78.72412,25.34397],[78.72752,25.3443],[78.73096,25.34872],[78.738,25.34794],[78.74105,25.34498],[78.75278,25.34591],[78.75478,25.35147],[78.75997,25.35044],[78.77459,25.3531],[78.77444,25.35614],[78.76592,25.36915],[78.77366,25.37617],[78.75986,25.38166],[78.75692,25.38544],[78.76134,25.38594],[78.76517,25.39091],[78.76798,25.40003],[78.76479,25.40187],[78.75676,25.39506],[78.75,25.39385],[78.74815,25.39099],[78.74556,25.40281],[78.74686,25.40306],[78.74974,25.41106],[78.75811,25.4154],[78.76738,25.41496],[78.77495,25.41987],[78.77917,25.41925],[78.78251,25.41571],[78.78792,25.41986],[78.79581,25.41645],[78.79977,25.41927],[78.79812,25.42084],[78.7991,25.42289],[78.81974,25.41991],[78.82137,25.42258],[78.81047,25.43035],[78.80951,25.43422],[78.80297,25.43716],[78.78514,25.43578],[78.78212,25.4342],[78.77848,25.42917],[78.7734,25.42697],[78.7707,25.42285],[78.76236,25.4269],[78.75799,25.43208],[78.75611,25.43824],[78.75775,25.44025],[78.75383,25.44317],[78.75236,25.44671],[78.75,25.44858],[78.73745,25.44979],[78.73706,25.45499],[78.73507,25.45733],[78.73183,25.45806],[78.73274,25.48485],[78.73346,25.48943],[78.73635,25.49382],[78.74283,25.49878],[78.74627,25.49662],[78.74541,25.49582],[78.74772,25.49334],[78.74631,25.48942],[78.74784,25.4887],[78.74733,25.48476],[78.7572,25.48069],[78.75622,25.4786],[78.75821,25.47553],[78.76783,25.46943],[78.77104,25.47191],[78.7728,25.47627],[78.77493,25.47611],[78.77632,25.4784],[78.78681,25.4795],[78.79156,25.48342],[78.79669,25.48276],[78.8051,25.47533],[78.81825,25.47165],[78.81797,25.46751],[78.81046,25.46142],[78.80638,25.45447],[78.80917,25.45341],[78.81248,25.4566],[78.81426,25.45614],[78.81593,25.46176],[78.82061,25.46774],[78.83123,25.46118],[78.84089,25.4615],[78.83518,25.45479],[78.85489,25.44769],[78.85207,25.44549],[78.84826,25.44595],[78.84563,25.44331],[78.84184,25.44382],[78.84046,25.4417],[78.82576,25.44335],[78.8234,25.44261],[78.82073,25.43869],[78.82433,25.4342],[78.82357,25.43134],[78.82802,25.42825],[78.83163,25.43157],[78.83756,25.42804],[78.84415,25.42775],[78.84807,25.42974],[78.8484,25.43626],[78.85651,25.44668],[78.8607,25.445],[78.86388,25.45124],[78.86298,25.45614],[78.86547,25.45893],[78.86617,25.46567],[78.86031,25.47126],[78.8603,25.47925],[78.85744,25.48424],[78.85536,25.48448],[78.85565,25.48837],[78.85307,25.49084],[78.84019,25.49336],[78.84232,25.49891],[78.83282,25.4995],[78.83496,25.50582],[78.84154,25.51254],[78.85216,25.51387],[78.86648,25.51205],[78.87107,25.5132],[78.87611,25.51747],[78.88438,25.51558],[78.88706,25.52684],[78.88644,25.53243],[78.87791,25.53681],[78.87429,25.54095],[78.87749,25.54943],[78.88265,25.55396],[78.89524,25.55535],[78.90005,25.5522],[78.90564,25.55123],[78.9112,25.55516],[78.91711,25.55229],[78.91645,25.54555],[78.921,25.5373],[78.92337,25.53594],[78.92795,25.5498],[78.93087,25.5509],[78.9331,25.55534],[78.93937,25.55722],[78.94413,25.55627],[78.9433,25.55378],[78.95179,25.54879],[78.94755,25.54086],[78.95285,25.53753],[78.94685,25.52946],[78.93642,25.51979],[78.9272,25.52498],[78.92244,25.51567],[78.9199,25.5154],[78.92712,25.5074],[78.93499,25.50526],[78.933,25.49936],[78.93676,25.49542],[78.94109,25.49503],[78.9402,25.49334],[78.94216,25.49245],[78.93719,25.48933],[78.92698,25.49185],[78.92681,25.48996],[78.94391,25.48293],[78.93602,25.46161],[78.92399,25.45949],[78.92522,25.45712],[78.92351,25.45384],[78.91541,25.44626],[78.90897,25.44508],[78.90887,25.44242],[78.92165,25.43242],[78.93264,25.4303],[78.93151,25.42756],[78.93245,25.42404],[78.93827,25.42225],[78.94678,25.43593],[78.95037,25.43733],[78.95094,25.44055],[78.95348,25.43901],[78.958,25.44028],[78.9603,25.43715],[78.967,25.43462],[78.96974,25.43166],[78.96999,25.42323],[78.97623,25.41996],[78.96846,25.40467],[78.97204,25.40298],[78.9738,25.39789],[78.9733,25.39418],[78.96993,25.39011],[78.98751,25.38129],[78.98619,25.37807],[78.98933,25.37404],[78.9816,25.36954],[78.97896,25.36954],[78.97524,25.36607],[78.9654,25.37068],[78.96354,25.3689],[78.95916,25.37151],[78.95181,25.36067],[78.95044,25.36061],[78.945,25.35041],[78.93871,25.34698],[78.92699,25.35161],[78.92382,25.35483],[78.92325,25.35879],[78.91453,25.35762],[78.90134,25.36162],[78.89968,25.36861],[78.89657,25.37186],[78.89642,25.37411],[78.89908,25.37769],[78.91259,25.37712],[78.91594,25.38144],[78.92861,25.38021],[78.92857,25.37834],[78.93829,25.37483],[78.94212,25.38294],[78.94541,25.38561],[78.94737,25.38488],[78.95103,25.38969],[78.95237,25.38854],[78.95755,25.39368],[78.95647,25.39719],[78.95355,25.39815],[78.9533,25.39995],[78.9402,25.40038],[78.93598,25.39513],[78.93474,25.39518],[78.93506,25.39897],[78.93166,25.39988],[78.92969,25.39589],[78.91981,25.39697],[78.91776,25.3961],[78.91377,25.38425],[78.88024,25.38589],[78.88145,25.38226],[78.87464,25.3797],[78.87178,25.38095],[78.86786,25.37244],[78.86287,25.37117],[78.86154,25.36937],[78.85834,25.3644],[78.85953,25.36312],[78.85701,25.36292],[78.85161,25.35746],[78.84574,25.35555],[78.84731,25.35051],[78.84359,25.34947],[78.84104,25.34497],[78.8413,25.34264],[78.84483,25.34202],[78.84994,25.33494],[78.84616,25.32698],[78.84716,25.33678],[78.84261,25.33655],[78.84207,25.33262],[78.83936,25.3318],[78.83445,25.32322],[78.8219,25.3161],[78.82129,25.31151],[78.81719,25.30877],[78.8193,25.30694],[78.81437,25.30851],[78.81034,25.30781],[78.79824,25.31394],[78.79232,25.30809],[78.78778,25.29601],[78.79117,25.29589],[78.79393,25.29117],[78.79881,25.28917],[78.80459,25.29282],[78.81715,25.30668],[78.82273,25.3068],[78.82857,25.30274],[78.8278,25.30141],[78.82099,25.30135],[78.81845,25.29895],[78.82043,25.29609],[78.8174,25.29111],[78.81808,25.28313],[78.81293,25.28006],[78.81374,25.27762],[78.81088,25.27559],[78.80947,25.2706],[78.81865,25.26355],[78.82291,25.2562],[78.83274,25.25252],[78.83514,25.24291],[78.8428,25.22769],[78.84965,25.22879],[78.85217,25.23082],[78.85214,25.23732],[78.85392,25.24107],[78.85737,25.24396],[78.85629,25.25665],[78.85993,25.2577],[78.865,25.2647],[78.86661,25.28039],[78.87281,25.28042],[78.87498,25.27838],[78.8799,25.28598],[78.87176,25.29912],[78.87088,25.30335],[78.87446,25.30845],[78.86397,25.31022],[78.86262,25.31445],[78.86554,25.31844],[78.86757,25.32555],[78.88125,25.32492],[78.88037,25.33211],[78.882,25.34364],[78.88657,25.34339],[78.89266,25.33864],[78.89601,25.3397],[78.91184,25.33256],[78.91389,25.33497],[78.91619,25.33494],[78.92091,25.34359],[78.92254,25.3429],[78.93222,25.33594],[78.93006,25.3295],[78.92672,25.32724],[78.92793,25.32413],[78.93225,25.32517],[78.93276,25.32698],[78.93774,25.32718],[78.94631,25.3339],[78.94771,25.34213],[78.95318,25.34047],[78.95771,25.3459],[78.96062,25.34508],[78.96151,25.34345],[78.95727,25.32494],[78.95748,25.31625],[78.96029,25.30737],[78.95743,25.30224],[78.96387,25.29936],[78.9689,25.29259],[78.97561,25.28814],[78.97687,25.28292],[78.97992,25.27905],[78.97754,25.27673],[78.97353,25.27716],[78.95551,25.28276],[78.94868,25.27418],[78.95392,25.26934],[78.9546,25.26136],[78.94732,25.26179],[78.94514,25.25942],[78.93759,25.25969],[78.93293,25.2633],[78.92925,25.26982],[78.91703,25.27359],[78.91233,25.26924],[78.90841,25.25647],[78.90385,25.25247],[78.90239,25.24589],[78.89977,25.24312],[78.89338,25.24471],[78.88581,25.25375],[78.88092,25.25401],[78.87711,25.24507],[78.87176,25.23922],[78.86953,25.23111],[78.87036,25.22643],[78.87722,25.22374],[78.89058,25.21442],[78.88635,25.21],[78.8868,25.20604],[78.88283,25.19794],[78.87398,25.19137],[78.87064,25.18701],[78.87255,25.18656],[78.87344,25.18389],[78.87285,25.17541],[78.87437,25.17241],[78.87998,25.17106],[78.87865,25.16684],[78.8804,25.15762],[78.88191,25.15689],[78.88771,25.16101],[78.89028,25.16066],[78.89806,25.16862],[78.90296,25.17036],[78.90305,25.17492],[78.90965,25.17787],[78.91189,25.18084],[78.90754,25.18479],[78.92521,25.20445],[78.93433,25.21189],[78.93529,25.2107],[78.94656,25.21429],[78.95165,25.21288],[78.95386,25.21896],[78.95747,25.21746],[78.96308,25.21108],[78.96498,25.21718],[78.97029,25.21644],[78.97594,25.21198],[78.9806,25.21146],[78.98074,25.20532],[78.99277,25.19686],[79.00587,25.19505],[79.00537,25.20708],[79.00614,25.21224],[79.00742,25.212],[79.00103,25.22105],[79.00251,25.22795],[78.99923,25.23151],[79.00119,25.2337],[78.99466,25.23222],[78.98289,25.23425],[78.9846,25.23958],[78.98062,25.23994],[78.97608,25.23666],[78.97472,25.23729],[78.97484,25.24049],[78.97995,25.25452],[78.98522,25.25916],[78.98683,25.26414],[78.99493,25.26708],[78.99437,25.27316],[79.01215,25.27243],[79.01322,25.27405],[79.02285,25.2679],[79.02084,25.26444],[79.02561,25.26128],[79.02432,25.25723],[79.01799,25.24927],[79.02139,25.24538],[79.02177,25.24157],[79.02485,25.24087],[79.02613,25.24222],[79.02847,25.2406],[79.03387,25.24285],[79.03999,25.24268],[79.03365,25.23372],[79.06368,25.22176],[79.06373,25.21487],[79.06057,25.20964],[79.06195,25.20665],[79.06032,25.20107],[79.06242,25.20028],[79.06414,25.20169],[79.06432,25.19947],[79.06205,25.19904],[79.06098,25.19518],[79.06209,25.19333],[79.05967,25.19041],[79.05206,25.18743],[79.04859,25.19345],[79.05402,25.20169],[79.05233,25.20744],[79.04873,25.20609],[79.0445,25.20174],[79.04223,25.1967],[79.03091,25.18448],[79.03157,25.18035],[79.03469,25.17799],[79.03439,25.1741],[79.04004,25.1709],[79.03686,25.1666],[79.03184,25.164],[79.03688,25.16139],[79.03236,25.15645],[79.03342,25.1525],[79.02939,25.14378],[79.02938,25.14029],[79.03533,25.13665],[79.05081,25.13398],[79.0528,25.13816],[79.05548,25.139],[79.05559,25.14133],[79.06125,25.14489],[79.06299,25.14798],[79.068,25.1497],[79.07124,25.16112],[79.07149,25.1702],[79.07388,25.17364],[79.07678,25.17429],[79.08141,25.18134],[79.08862,25.18435],[79.08815,25.18695],[79.09063,25.19081],[79.09545,25.18246],[79.09461,25.17663],[79.09585,25.1747],[79.11317,25.16451],[79.12609,25.16122],[79.116,25.13965],[79.12126,25.13425],[79.13213,25.12711],[79.12437,25.11879],[79.12351,25.11491],[79.12402,25.11078],[79.13189,25.10901],[79.14017,25.10858],[79.14391,25.11487],[79.15772,25.11144],[79.15931,25.10744],[79.16127,25.10893],[79.16226,25.10737],[79.16429,25.1088],[79.1658,25.10719],[79.16887,25.10857],[79.17316,25.10782],[79.17544,25.10893],[79.1779,25.11558],[79.18134,25.11648],[79.186,25.11493],[79.18545,25.12066],[79.18729,25.12638],[79.17462,25.12821],[79.17727,25.13776],[79.17618,25.14006],[79.17732,25.14164],[79.18164,25.14144],[79.18315,25.14335],[79.18515,25.14202],[79.18612,25.1442],[79.19034,25.14331],[79.19221,25.14621],[79.19605,25.14284],[79.20431,25.13992],[79.20246,25.13251],[79.20524,25.12915],[79.20384,25.12561],[79.2136,25.12066],[79.21241,25.11399],[79.21503,25.11141],[79.21718,25.1108],[79.21803,25.11291],[79.22228,25.11504],[79.22737,25.122],[79.24037,25.11326],[79.24544,25.11398],[79.24809,25.11686],[79.24304,25.12298],[79.24611,25.1348],[79.24994,25.13871],[79.24922,25.1403],[79.23634,25.1405],[79.22416,25.14605],[79.23168,25.15126],[79.23335,25.1541],[79.2446,25.15905],[79.25151,25.15938],[79.26489,25.15173],[79.26646,25.14626],[79.26354,25.14071],[79.26881,25.13845],[79.2649,25.13387],[79.26404,25.12824],[79.2599,25.12526],[79.2659,25.12147],[79.27032,25.12053],[79.27279,25.12256],[79.27772,25.11994],[79.27818,25.11743],[79.28255,25.11754],[79.2879,25.12778],[79.28711,25.13186],[79.29241,25.13053],[79.29799,25.13188],[79.30697,25.12931],[79.31122,25.13581],[79.31365,25.13624],[79.31526,25.14715],[79.32313,25.14983],[79.31363,25.16188],[79.31045,25.17213],[79.30437,25.17823],[79.30869,25.17899],[79.31005,25.18188],[79.30851,25.19829],[79.30143,25.20143],[79.29891,25.19146],[79.29226,25.18417],[79.28462,25.19119],[79.28182,25.20891],[79.28543,25.22028],[79.28596,25.22764],[79.28355,25.23798],[79.27925,25.24473],[79.28499,25.24593],[79.2939,25.24033],[79.29919,25.23993],[79.30522,25.23246],[79.30816,25.23194],[79.30687,25.22492],[79.30899,25.22368],[79.32473,25.21851],[79.32853,25.22132],[79.32779,25.21342],[79.32938,25.21146],[79.32821,25.20986],[79.33836,25.19796],[79.34925,25.20654],[79.35189,25.21216],[79.34772,25.21308],[79.34452,25.21726],[79.33607,25.223],[79.33276,25.22828],[79.33451,25.22959],[79.33908,25.22661],[79.34358,25.22706],[79.34534,25.23473],[79.34468,25.25],[79.35086,25.26392],[79.34335,25.26896],[79.33818,25.26802],[79.33521,25.2698],[79.32959,25.25761],[79.32701,25.25579],[79.31652,25.25596],[79.31039,25.25989],[79.30991,25.26262],[79.30336,25.26963],[79.30291,25.27429],[79.29379,25.28358],[79.29008,25.28041],[79.28783,25.2737],[79.28927,25.27278],[79.28268,25.26216],[79.27532,25.26327],[79.27354,25.26061],[79.26447,25.26895],[79.26282,25.27339],[79.26753,25.28462],[79.27052,25.30972],[79.27833,25.32015],[79.2789,25.32399],[79.29568,25.32364],[79.29916,25.32878],[79.29831,25.33287],[79.29989,25.33763],[79.30842,25.33401],[79.32654,25.33525],[79.33097,25.33184],[79.33905,25.32922],[79.34209,25.329],[79.34444,25.33232],[79.35223,25.32988],[79.34697,25.32199],[79.34467,25.32301],[79.34133,25.31893],[79.33965,25.31128],[79.342,25.3105],[79.34136,25.30762],[79.34658,25.30508],[79.34096,25.29955],[79.33615,25.2881],[79.35193,25.28334],[79.35831,25.28424],[79.35661,25.27853],[79.35856,25.27679],[79.35478,25.26884],[79.35528,25.2659],[79.3629,25.2617],[79.36982,25.25999],[79.37021,25.26553],[79.37389,25.2725],[79.3725,25.27299],[79.37307,25.27503],[79.37021,25.27651],[79.36995,25.2798],[79.36734,25.28121],[79.36859,25.29246],[79.38754,25.28582],[79.38665,25.28152],[79.38903,25.27958],[79.39205,25.27957],[79.39457,25.28275],[79.40761,25.27392],[79.4085,25.26163],[79.40678,25.25806],[79.40881,25.25609],[79.4259,25.25354],[79.43745,25.25488],[79.4405,25.25807],[79.44484,25.25916],[79.45013,25.26307],[79.45538,25.26905],[79.45743,25.26852],[79.46227,25.27106],[79.46292,25.27221],[79.46024,25.27407],[79.45858,25.27978],[79.46116,25.28252],[79.46651,25.27975],[79.46722,25.2833],[79.4793,25.27843],[79.47845,25.27301],[79.48154,25.27082],[79.48192,25.26854],[79.49446,25.26691],[79.49307,25.26206],[79.47635,25.26508],[79.47567,25.26099],[79.46246,25.26467],[79.46214,25.25627],[79.45609,25.2475],[79.45351,25.24822],[79.45057,25.24379],[79.44653,25.2442],[79.43266,25.22064],[79.43372,25.21763],[79.43568,25.21684],[79.44883,25.21507],[79.44037,25.19882],[79.43737,25.19682],[79.42172,25.20033],[79.41208,25.20032],[79.4123,25.19831],[79.40836,25.19469],[79.41151,25.19059],[79.41163,25.1827],[79.40307,25.17638],[79.39337,25.17318],[79.3899,25.17011],[79.39225,25.16905],[79.3896,25.16545],[79.38395,25.14271],[79.3907,25.14128],[79.38757,25.13031],[79.39601,25.12836],[79.39308,25.11694],[79.40574,25.10636],[79.41155,25.11018],[79.41439,25.10942],[79.41996,25.11106],[79.42119,25.11518],[79.42613,25.11906],[79.42689,25.12583],[79.42552,25.13015],[79.41577,25.1331],[79.4213,25.13543],[79.42702,25.13543],[79.43527,25.13171],[79.4392,25.1278],[79.43696,25.10547],[79.43892,25.10122],[79.44137,25.10395],[79.44618,25.10479],[79.45211,25.10865],[79.4597,25.12006],[79.46971,25.12476],[79.4715,25.12812],[79.47724,25.12745],[79.47014,25.10797],[79.46823,25.09417],[79.46502,25.08805],[79.4724,25.08778],[79.47528,25.08617],[79.47731,25.08179],[79.48081,25.08153],[79.48284,25.07965],[79.4915,25.07965],[79.49529,25.08355],[79.5,25.08344],[79.50304,25.08888],[79.5036,25.09351],[79.50584,25.09545],[79.51041,25.09683],[79.51873,25.09504],[79.52062,25.09762],[79.52489,25.09697],[79.52611,25.09989],[79.52425,25.10716],[79.51876,25.1181],[79.52112,25.12519],[79.51795,25.12703],[79.52078,25.12699],[79.52391,25.13135],[79.52751,25.13109],[79.53289,25.13331],[79.53238,25.13882],[79.53486,25.14002],[79.53466,25.14215],[79.53891,25.1405],[79.54184,25.14284],[79.54648,25.14836],[79.55164,25.16071],[79.5569,25.16365],[79.56041,25.16758],[79.56041,25.16979],[79.56506,25.17063],[79.56878,25.16898],[79.56936,25.1718],[79.57628,25.16822],[79.57529,25.16707],[79.57725,25.16565],[79.57736,25.1626],[79.57581,25.16189],[79.57805,25.16022],[79.57968,25.15346],[79.58249,25.15088],[79.58914,25.1487],[79.59369,25.14898],[79.59569,25.14337],[79.59981,25.14383],[79.60699,25.15277],[79.60636,25.14976],[79.60762,25.14928],[79.60573,25.14343],[79.60332,25.14293],[79.5998,25.13511],[79.59941,25.12814],[79.60114,25.12749],[79.60834,25.12804],[79.62038,25.13447],[79.62205,25.13593],[79.62154,25.14046],[79.62271,25.14061],[79.6288,25.13422],[79.63642,25.13138],[79.6375,25.12906],[79.64151,25.12692],[79.64922,25.12971],[79.66048,25.12471],[79.67001,25.12284],[79.67322,25.12036],[79.67637,25.1243],[79.67834,25.13178],[79.68336,25.13515],[79.68806,25.13267],[79.69289,25.13324],[79.71725,25.12877],[79.73564,25.13129],[79.73985,25.13535],[79.7485,25.13935],[79.76199,25.13427],[79.76365,25.13005],[79.77262,25.1251],[79.80488,25.11309],[79.80833,25.11003],[79.82397,25.10825],[79.82657,25.10626],[79.8287,25.09932],[79.84504,25.09403],[79.86153,25.09621],[79.85775,25.10082],[79.85427,25.10338],[79.85249,25.10288],[79.85325,25.10583],[79.84983,25.10759],[79.85039,25.11023],[79.84801,25.11053],[79.84683,25.11598],[79.85179,25.12171],[79.85277,25.12563],[79.85162,25.12855],[79.86614,25.14106],[79.86882,25.14053],[79.87491,25.14338],[79.88153,25.14205],[79.8734,25.149],[79.86914,25.14767],[79.86646,25.14982],[79.8656,25.16105],[79.87009,25.17227],[79.86309,25.17719],[79.86537,25.17995],[79.86504,25.18804],[79.85891,25.19354],[79.85602,25.19405],[79.86173,25.20476],[79.86173,25.20953],[79.86366,25.21263],[79.86586,25.21178],[79.86705,25.21355],[79.86577,25.2153],[79.86859,25.21649],[79.86034,25.22221],[79.85275,25.2251],[79.85116,25.22702],[79.85138,25.23556],[79.85732,25.23472],[79.86452,25.23635],[79.8681,25.24079],[79.87239,25.24276],[79.87788,25.25102],[79.89292,25.24151],[79.89631,25.24255],[79.90208,25.24079],[79.90503,25.24902],[79.90749,25.25089],[79.91652,25.24462],[79.91847,25.23752],[79.91755,25.22683],[79.92202,25.23184],[79.92303,25.24178],[79.92762,25.24961],[79.93654,25.24754],[79.93657,25.25371],[79.9388,25.258],[79.94833,25.26866],[79.95325,25.26453],[79.96049,25.26423],[79.96848,25.26655],[79.98078,25.26185],[79.98666,25.26739],[80.00512,25.26571],[80.0043,25.26935],[80.00728,25.27214],[80.00159,25.27384],[80.00109,25.27648],[79.99851,25.27754],[79.99894,25.28597],[80.00192,25.28902],[80.00448,25.28796],[80.00779,25.29178],[80.01093,25.29281],[80.01198,25.29563],[80.01905,25.29909],[80.02221,25.29762],[80.02265,25.30349],[80.02095,25.30544],[80.02426,25.31196],[80.01963,25.31579],[80.01779,25.32253],[80.02338,25.32624],[80.02412,25.32947],[80.02682,25.33154],[80.02584,25.33467],[80.02743,25.3346],[80.02742,25.33665],[80.03342,25.34202],[80.03776,25.34027],[80.03827,25.3385],[80.03895,25.33971],[80.04295,25.33802],[80.06146,25.34031],[80.0647,25.33833],[80.06704,25.33943],[80.07148,25.33842],[80.07267,25.33695],[80.08207,25.34463],[80.08878,25.35585],[80.10096,25.35087],[80.10314,25.35154],[80.10529,25.34855],[80.11737,25.34152],[80.11883,25.34329],[80.12658,25.34026],[80.1311,25.33423],[80.14178,25.35066],[80.14939,25.35761],[80.15808,25.35905],[80.16304,25.36299],[80.16716,25.36408],[80.16734,25.3733],[80.16896,25.37686],[80.1821,25.3768],[80.189,25.37924],[80.19493,25.37816],[80.19655,25.38117],[80.19587,25.3991],[80.19711,25.40083],[80.196,25.40205],[80.20237,25.41404],[80.20756,25.41136],[80.20547,25.40682],[80.20618,25.40447],[80.22036,25.39813],[80.22082,25.39674],[80.23173,25.40236],[80.23616,25.40782],[80.24291,25.40357],[80.25342,25.40083],[80.25554,25.40438],[80.25551,25.40956],[80.26127,25.41607],[80.26384,25.42402],[80.26793,25.4221],[80.27992,25.42076],[80.28506,25.41546],[80.28561,25.41711],[80.28845,25.41703],[80.31541,25.38887],[80.31655,25.37761],[80.32031,25.36605],[80.31127,25.36057],[80.30955,25.35436],[80.31238,25.34407],[80.31819,25.33926],[80.32267,25.33209],[80.31885,25.32223],[80.32136,25.31232],[80.31851,25.30506],[80.31117,25.29823],[80.3108,25.28641],[80.32551,25.27823],[80.34821,25.27845],[80.35143,25.27716],[80.35497,25.27092],[80.35681,25.2618],[80.36587,25.25107],[80.36939,25.24953],[80.36963,25.24763],[80.38358,25.23729],[80.38867,25.23751],[80.39626,25.24643],[80.40013,25.24634],[80.40334,25.24403],[80.41075,25.22408],[80.40773,25.21802],[80.41209,25.21324],[80.41458,25.20565],[80.42209,25.19741],[80.43167,25.17762],[80.42819,25.16953],[80.41989,25.16318],[80.40988,25.16296],[80.3902,25.15839],[80.38508,25.15561],[80.37655,25.14583],[80.37488,25.14553],[80.37348,25.1474],[80.36225,25.14437],[80.35782,25.1425],[80.35456,25.13836],[80.35385,25.13595],[80.35641,25.13216],[80.35232,25.13095],[80.35534,25.12849],[80.35472,25.12642],[80.36915,25.11777],[80.37388,25.11654],[80.37571,25.11756],[80.37608,25.11636],[80.37473,25.1087],[80.3701,25.10222],[80.37048,25.09972],[80.36241,25.09756],[80.36008,25.09388],[80.35654,25.09489],[80.35404,25.09155],[80.35134,25.09139],[80.35034,25.08935],[80.35212,25.08906],[80.35161,25.08816],[80.34843,25.08665],[80.34838,25.08278],[80.35154,25.08118],[80.34578,25.0649],[80.34908,25.06242],[80.35597,25.06157],[80.35423,25.05933],[80.3562,25.05736],[80.35533,25.05563],[80.35071,25.05317],[80.34452,25.05574],[80.34365,25.05347],[80.34067,25.05443],[80.34046,25.05862],[80.33675,25.05907],[80.33419,25.05636],[80.33148,25.04798],[80.32119,25.04992],[80.3114,25.04423],[80.30762,25.04642],[80.30465,25.05086],[80.3029,25.0511],[80.30368,25.05175],[80.2997,25.05365],[80.29691,25.05319],[80.29054,25.05954],[80.2849,25.05396],[80.2855,25.04974],[80.28809,25.04661],[80.28787,25.03812],[80.27362,25.02597],[80.29238,25.0167],[80.29975,25.01558],[80.30021,25.01283],[80.3044,25.01109],[80.30826,25.00584],[80.31338,25.00352],[80.32063,25.00283],[80.32314,24.99774],[80.33099,24.9922],[80.34166,25.01348],[80.34517,25.01673],[80.352,25.01751],[80.35345,25.01339],[80.35738,25.01158],[80.36295,25.0236],[80.36919,25.01993],[80.37186,25.02084],[80.37746,25.01954],[80.37588,25.01467],[80.37849,25.00435],[80.38732,25.00431],[80.39388,25.00836],[80.39644,25.01195],[80.39144,25.01308],[80.3909,25.01615],[80.38512,25.01826],[80.38694,25.02395],[80.37785,25.02702],[80.3833,25.03527],[80.38568,25.03557],[80.38707,25.03246],[80.38984,25.03556],[80.38536,25.04183],[80.37826,25.04043],[80.37051,25.04269],[80.37483,25.04894],[80.37266,25.05336],[80.37366,25.05591],[80.38097,25.05186],[80.388,25.05091],[80.38846,25.05503],[80.39216,25.05847],[80.39227,25.06381],[80.39954,25.06435],[80.40062,25.06957],[80.4023,25.06575],[80.4053,25.06772],[80.40657,25.0637],[80.40412,25.06167],[80.40872,25.05525],[80.41449,25.05731],[80.41814,25.06901],[80.41615,25.07026],[80.41611,25.07318],[80.42311,25.06868],[80.42835,25.06734],[80.42889,25.06565],[80.43303,25.06576],[80.43727,25.06934],[80.43956,25.07514],[80.44322,25.07415],[80.44401,25.07797],[80.44965,25.07849],[80.44996,25.07518],[80.45271,25.07474],[80.44642,25.07112],[80.45146,25.06897],[80.45143,25.06221],[80.45706,25.06331],[80.46357,25.06803],[80.46852,25.0606],[80.46974,25.04719],[80.47271,25.04603],[80.46999,25.04432],[80.47153,25.04239],[80.47414,25.04276],[80.47515,25.03794],[80.48174,25.03802],[80.48357,25.0409],[80.4865,25.04053],[80.48882,25.04348],[80.50188,25.03725],[80.49559,25.0291],[80.48972,25.03134],[80.48807,25.03019],[80.48485,25.03367],[80.48271,25.03111],[80.4784,25.0326],[80.47435,25.03053],[80.46464,25.03575],[80.46317,25.03981],[80.45636,25.03934],[80.45445,25.04222],[80.44895,25.04055],[80.44767,25.03693],[80.44585,25.03736],[80.44139,25.03341],[80.43309,25.02374],[80.43552,25.02155],[80.43938,25.02299],[80.44411,25.02085],[80.44747,25.01422],[80.45245,25.01515],[80.45317,25.01346],[80.45124,25.00991],[80.45487,25.00573],[80.45384,25.00313],[80.44353,25.0041],[80.44288,25.00207],[80.43679,25.00148],[80.43565,24.99826],[80.43718,24.99741],[80.43703,24.99452],[80.44476,24.99442],[80.44691,25.00203],[80.45188,24.99944],[80.45652,25.00402],[80.46285,25.00253],[80.46396,24.99538],[80.45592,24.99125],[80.45943,24.98483],[80.45614,24.98164],[80.46524,24.97577],[80.47644,24.97646],[80.47866,24.97395],[80.47836,24.97994],[80.48039,24.986],[80.48829,24.98988],[80.49259,24.98938],[80.4975,24.99565],[80.49662,24.99887],[80.4993,25.00621],[80.50079,25.00447],[80.50541,25.00538],[80.50962,25.00313],[80.51476,25.00295],[80.51762,25.00878],[80.52359,25.00658],[80.52503,25.00356],[80.53084,25.00125],[80.5386,25.00043],[80.54371,25.0029],[80.54948,25.00247],[80.54339,25.01134],[80.54437,25.01405],[80.54137,25.01668],[80.54167,25.01904],[80.54393,25.0198],[80.54745,25.02493],[80.54816,25.02993],[80.54607,25.03242],[80.54082,25.03245],[80.5323,25.03792],[80.51832,25.04094],[80.51415,25.04336],[80.50058,25.04153],[80.50307,25.04524],[80.50066,25.04781],[80.50097,25.05146],[80.50645,25.05384],[80.50899,25.05879],[80.50183,25.07069],[80.49641,25.07295],[80.50338,25.07305],[80.50663,25.08397],[80.50053,25.08722],[80.49246,25.08823],[80.48858,25.09094],[80.48687,25.09018],[80.48077,25.09291],[80.47953,25.09634],[80.48152,25.09587],[80.48065,25.09868],[80.48272,25.10021],[80.48518,25.09794],[80.4876,25.09883],[80.48791,25.09671],[80.48957,25.09852],[80.49235,25.09801],[80.49311,25.09963],[80.4983,25.09659],[80.49974,25.10031],[80.50479,25.09953],[80.51813,25.0947],[80.52097,25.09109],[80.5191,25.08227],[80.5216,25.07605],[80.53349,25.07014],[80.54074,25.07172],[80.5458,25.0644],[80.55223,25.06282],[80.56758,25.07336],[80.56812,25.07748],[80.56665,25.07802],[80.56845,25.08688],[80.57586,25.08153],[80.58219,25.08212],[80.59511,25.07942],[80.59621,25.07642],[80.59726,25.07768],[80.60002,25.07335],[80.60328,25.0722],[80.60424,25.06901],[80.61314,25.0657],[80.61446,25.06658],[80.61415,25.06921],[80.61115,25.07713],[80.60986,25.07938],[80.6062,25.08016],[80.60673,25.08628],[80.60281,25.08518],[80.5982,25.08726],[80.59943,25.08024],[80.59603,25.07981],[80.59712,25.08185],[80.59229,25.0902],[80.59772,25.0889],[80.59785,25.09117],[80.59371,25.0945],[80.59613,25.09908],[80.59233,25.1032],[80.59511,25.10519],[80.59756,25.11393],[80.60021,25.11391],[80.6019,25.11637],[80.60719,25.11791],[80.60638,25.1212],[80.60244,25.12254],[80.60003,25.12615],[80.59677,25.12791],[80.595,25.1272],[80.59764,25.14125],[80.59678,25.14375],[80.6007,25.14985],[80.60654,25.15036],[80.60844,25.14983],[80.60967,25.14569],[80.61268,25.14319],[80.6105,25.13756],[80.61034,25.12901],[80.61221,25.12749],[80.61643,25.12835],[80.62002,25.13392],[80.62237,25.13494],[80.62851,25.1334],[80.63455,25.12863],[80.63254,25.1225],[80.63823,25.11687],[80.63574,25.11316],[80.63237,25.11305],[80.63078,25.11598],[80.62741,25.11741],[80.62445,25.11488],[80.62501,25.11127],[80.61958,25.10816],[80.61875,25.10649],[80.62077,25.10498],[80.61881,25.10049],[80.61133,25.10074],[80.60808,25.09843],[80.61025,25.09577],[80.62394,25.08869],[80.62603,25.08294],[80.62765,25.08535],[80.62581,25.08671],[80.62837,25.08716],[80.62881,25.09043],[80.63421,25.08988],[80.63389,25.08765],[80.63931,25.08715],[80.64097,25.08925],[80.63947,25.09081],[80.64042,25.09249],[80.64166,25.09201],[80.64089,25.08724],[80.64266,25.08857],[80.64768,25.08731],[80.65193,25.08378],[80.65597,25.08471],[80.65839,25.08087],[80.65867,25.07091],[80.66174,25.06761],[80.66915,25.07311],[80.67292,25.08252],[80.67877,25.07704],[80.68501,25.07661],[80.68289,25.07429],[80.68431,25.07306],[80.68244,25.07014],[80.68403,25.06773],[80.67386,25.06061],[80.67581,25.05583],[80.68026,25.05771],[80.68103,25.05329],[80.67974,25.04846],[80.69117,25.05173],[80.69602,25.05501],[80.70838,25.05673],[80.72072,25.06401],[80.73234,25.06369],[80.73431,25.05594],[80.73691,25.05296],[80.73775,25.05466],[80.74303,25.05595],[80.74253,25.05383],[80.75107,25.05407],[80.75206,25.05676],[80.76171,25.05601],[80.76588,25.05289],[80.77576,25.05482],[80.78467,25.06167],[80.78779,25.06139],[80.78409,25.06885],[80.78363,25.07595],[80.77193,25.07821],[80.76999,25.07717],[80.76886,25.07923],[80.75713,25.08232],[80.75524,25.08679],[80.7575,25.09083],[80.7541,25.09031],[80.75193,25.09289],[80.74336,25.09272],[80.7366,25.09487],[80.73512,25.08924],[80.72545,25.09143],[80.72324,25.09465],[80.72324,25.10507],[80.72631,25.11116],[80.73066,25.11264],[80.72735,25.11855],[80.72385,25.12158],[80.72286,25.12027],[80.71087,25.11976],[80.70763,25.11765],[80.7041,25.12227],[80.70439,25.12837],[80.70761,25.13054],[80.71811,25.13034],[80.72011,25.13241],[80.71921,25.13467],[80.72089,25.13886],[80.72042,25.1358],[80.72157,25.13529],[80.72318,25.13714],[80.72763,25.13768],[80.73024,25.14632],[80.73165,25.14495],[80.73189,25.13936],[80.7336,25.14048],[80.73483,25.13936],[80.73258,25.13321],[80.73675,25.13536],[80.74195,25.12363],[80.74545,25.12911],[80.75391,25.1328],[80.7618,25.13483],[80.77206,25.13263],[80.77903,25.13861],[80.77878,25.14226],[80.78417,25.13694],[80.78171,25.13363],[80.78638,25.12944],[80.79136,25.13168],[80.79475,25.13059],[80.79708,25.13657],[80.80078,25.1354],[80.80376,25.13757],[80.8084,25.13679],[80.81319,25.13467],[80.81527,25.13165],[80.81195,25.12408],[80.81597,25.12241],[80.81724,25.12423],[80.8225,25.12395],[80.82665,25.12145],[80.82439,25.11613],[80.82781,25.11522],[80.82989,25.10006],[80.83372,25.10349],[80.83408,25.10603],[80.83605,25.10658],[80.83554,25.10513],[80.83814,25.10431],[80.83911,25.1055],[80.83754,25.10593],[80.84061,25.10861],[80.8407,25.11429],[80.83891,25.11893],[80.84061,25.1232],[80.83808,25.12518],[80.83645,25.13056],[80.83784,25.14143],[80.83982,25.14455],[80.83991,25.15549],[80.84326,25.15952],[80.8491,25.1626],[80.84622,25.17172],[80.84303,25.17599],[80.83879,25.17615],[80.83928,25.17994],[80.83814,25.18035],[80.84415,25.1869],[80.84508,25.18494],[80.85563,25.18247],[80.85717,25.18068],[80.86415,25.18278],[80.86808,25.17845],[80.86879,25.17451],[80.87238,25.17809],[80.8795,25.18126],[80.88057,25.18687],[80.88466,25.18794],[80.88432,25.18612],[80.88197,25.18507],[80.88208,25.18244],[80.88518,25.1818],[80.88618,25.17908],[80.88876,25.17812],[80.88924,25.17549],[80.89891,25.16632],[80.90372,25.15931],[80.91291,25.15908],[80.89454,25.13818],[80.89573,25.13529],[80.89478,25.13401],[80.88863,25.13252],[80.87952,25.13834],[80.87886,25.12565],[80.87494,25.12026],[80.86844,25.11568],[80.86925,25.11225],[80.87423,25.10862],[80.87459,25.10415],[80.87859,25.1021],[80.87959,25.09925],[80.86718,25.07951],[80.8676,25.07534],[80.86915,25.07284],[80.87642,25.0734],[80.87804,25.06547],[80.86966,25.05886],[80.86375,25.05652],[80.85546,25.04731],[80.8464,25.04444],[80.84012,25.03342],[80.83178,25.03287],[80.83655,25.02269],[80.84303,25.01962],[80.85513,25.00399],[80.85174,24.98825],[80.84589,24.98392],[80.83292,24.98198],[80.82587,24.9762],[80.82543,24.96966],[80.82379,24.96777],[80.81588,24.96621],[80.81383,24.96749],[80.81389,24.96936],[80.81137,24.97023],[80.7998,24.96841],[80.79221,24.96487],[80.79518,24.96023],[80.79951,24.95854],[80.80517,24.95351],[80.80993,24.95273],[80.80584,24.94368],[80.80817,24.93868],[80.82005,24.93291],[80.81391,24.92743],[80.81199,24.92255],[80.8298,24.91801],[80.83254,24.92001],[80.83723,24.92032],[80.83744,24.92833],[80.85133,24.93157],[80.85667,24.93158],[80.86073,24.92867],[80.87324,24.93581],[80.87757,24.9345],[80.88083,24.93534],[80.87902,24.93677],[80.87897,24.93949],[80.89172,24.94511],[80.89546,24.94511],[80.89946,24.94004],[80.90447,24.93806],[80.90708,24.93505],[80.90524,24.93866],[80.90016,24.94121],[80.89762,24.94503],[80.89915,24.94862],[80.92835,24.96106],[80.93635,24.96198],[80.946,24.96627],[80.95006,24.96441],[80.95095,24.95896],[80.95405,24.95434],[80.94771,24.94097],[80.9557,24.94055],[80.95879,24.93858],[80.95655,24.92989],[80.95729,24.92306],[80.9557,24.92192],[80.95752,24.92181],[80.95718,24.91785],[80.95992,24.91921],[80.96186,24.92576],[80.96574,24.92607],[80.9646,24.92982],[80.96825,24.93003],[80.9702,24.93305],[80.97385,24.93419],[80.98538,24.93288],[80.98618,24.9306],[80.98276,24.92664],[80.98675,24.9232],[80.98763,24.92604],[80.99653,24.92811],[80.99722,24.93288],[81.0004,24.93604],[81.00451,24.93722],[81.00952,24.93599],[81.01316,24.92793],[81.01718,24.93102],[81.02307,24.92762],[81.02467,24.93309],[81.02885,24.93326],[81.02261,24.93578],[81.0212,24.93945],[81.01354,24.94776],[81.01627,24.9515],[81.02558,24.94005],[81.02419,24.94342],[81.02548,24.94475],[81.02835,24.94349],[81.02585,24.94875],[81.02856,24.94859],[81.03373,24.95261],[81.0499,24.94981],[81.05518,24.95216],[81.06085,24.95192],[81.06625,24.94903],[81.0705,24.94984],[81.07971,24.94828],[81.08451,24.94991],[81.0903,24.94494],[81.08704,24.93322],[81.0897,24.93152],[81.09046,24.92887],[81.09336,24.92899],[81.0963,24.92119],[81.10388,24.9183],[81.1123,24.90737],[81.11808,24.90787],[81.12248,24.89967],[81.1396,24.88753],[81.14124,24.89025],[81.13991,24.89675],[81.14165,24.90324],[81.14512,24.90672],[81.14546,24.9103],[81.1504,24.9137],[81.1602,24.91356],[81.16079,24.91912],[81.15852,24.92344],[81.16132,24.92792],[81.16378,24.92831],[81.16371,24.93764],[81.16606,24.93816],[81.16402,24.94265],[81.16801,24.95523],[81.17221,24.9573],[81.17937,24.94988],[81.18515,24.95204],[81.18881,24.94472],[81.19223,24.94501],[81.19715,24.94147],[81.19737,24.93867],[81.20097,24.93801],[81.20354,24.93266],[81.20719,24.93043],[81.2007,24.93178],[81.19759,24.92795],[81.19162,24.92718],[81.19291,24.92535],[81.19639,24.92468],[81.20162,24.9269],[81.2035,24.92476],[81.21017,24.92262],[81.21387,24.92756],[81.21964,24.92862],[81.22061,24.93453],[81.21935,24.93511],[81.2173,24.93239],[81.21523,24.93288],[81.21318,24.94532],[81.21114,24.94614],[81.21463,24.94852],[81.21443,24.95796],[81.20714,24.96448],[81.22028,24.97382],[81.22087,24.97761],[81.21643,24.98627],[81.20892,24.99262],[81.21208,24.9957],[81.21304,25.0],[81.2208,24.9974],[81.22666,25.00196],[81.23935,25.01922],[81.24183,25.02587],[81.2451,25.02752],[81.25373,25.0389],[81.25857,25.049],[81.26382,25.05276],[81.26204,25.05808],[81.2689,25.06745],[81.26506,25.07355],[81.25949,25.07574],[81.26667,25.08439],[81.26156,25.08837],[81.25849,25.09752],[81.255,25.09854],[81.25214,25.10208],[81.25327,25.10776],[81.2572,25.11106],[81.26133,25.11018],[81.26472,25.11669],[81.26479,25.12228],[81.26276,25.12538],[81.26818,25.12809],[81.26851,25.13156],[81.26615,25.13969],[81.27755,25.14651],[81.28167,25.15206],[81.2751,25.16346],[81.27752,25.166],[81.28897,25.16188],[81.29658,25.16269],[81.29921,25.16447],[81.31343,25.16374],[81.3155,25.15888],[81.31229,25.15591],[81.31322,25.14945],[81.31192,25.13756],[81.31432,25.13539],[81.31569,25.12709],[81.3179,25.1254],[81.31624,25.12349],[81.31857,25.12282],[81.32127,25.11877],[81.32147,25.11277],[81.33108,25.11463],[81.32629,25.11921],[81.3252,25.12239],[81.32401,25.12763],[81.32503,25.13651],[81.31867,25.14397],[81.31956,25.15678],[81.32232,25.16193],[81.33452,25.16929],[81.34528,25.1619],[81.35273,25.16202],[81.35402,25.16391],[81.35728,25.1631],[81.3617,25.15923],[81.36268,25.15306],[81.36882,25.1439],[81.37573,25.14173],[81.37541,25.13904],[81.3709,25.13484],[81.38228,25.13608],[81.38538,25.13216],[81.39261,25.13096],[81.39405,25.12924],[81.39326,25.12623],[81.3954,25.12616],[81.39521,25.12274],[81.39992,25.11922],[81.41429,25.12093],[81.40853,25.12523],[81.4057,25.12911],[81.40619,25.13129],[81.4154,25.12844],[81.42187,25.12855],[81.42561,25.1326],[81.42892,25.13049],[81.43852,25.13033],[81.43693,25.12815],[81.4379,25.12389],[81.44513,25.11608],[81.44668,25.11109],[81.4457,25.10926],[81.44766,25.10717],[81.4445,25.10594],[81.43426,25.10723],[81.43069,25.10558],[81.42717,25.10712],[81.41371,25.10792],[81.40727,25.10491],[81.41759,25.10235],[81.42407,25.09809],[81.42993,25.09762],[81.43677,25.09408],[81.45451,25.09039],[81.46481,25.09011],[81.46733,25.0884],[81.46506,25.08381],[81.46927,25.07979],[81.48205,25.07675],[81.48647,25.07346],[81.49113,25.07232],[81.49364,25.08027],[81.49844,25.07874],[81.49947,25.07682],[81.50108,25.07743],[81.50298,25.08971],[81.50024,25.09638],[81.50665,25.09553],[81.5181,25.10074],[81.50307,25.10687],[81.49826,25.10506],[81.49583,25.10853],[81.49032,25.10945],[81.48866,25.11421],[81.48414,25.11595],[81.48744,25.12377],[81.48076,25.12764],[81.48005,25.13255],[81.48519,25.13483],[81.49388,25.13208],[81.49638,25.12898],[81.49618,25.14047],[81.49951,25.14868],[81.5088,25.14782],[81.50998,25.14601],[81.5139,25.14564],[81.51548,25.14304],[81.51916,25.14315],[81.52724,25.13809],[81.5309,25.14521],[81.52658,25.14779],[81.5227,25.14667],[81.52992,25.15161],[81.5365,25.16055],[81.53099,25.1647],[81.52496,25.16457],[81.52533,25.16563],[81.51792,25.1705],[81.51617,25.17407],[81.51464,25.17358],[81.51248,25.17734],[81.51441,25.17953],[81.5146,25.18434],[81.51858,25.18605],[81.52496,25.18386],[81.52746,25.18085],[81.53284,25.18239],[81.53443,25.18066],[81.5398,25.18036],[81.53991,25.18608],[81.54546,25.18506],[81.55411,25.18609],[81.55594,25.18358],[81.56291,25.18651],[81.57017,25.19208],[81.57857,25.19085],[81.59562,25.18182],[81.59508,25.17749],[81.58846,25.16577],[81.59436,25.16373],[81.60463,25.16303],[81.60894,25.16469],[81.61182,25.16392],[81.6154,25.16901],[81.61876,25.1674],[81.62042,25.16242],[81.62621,25.16047],[81.62418,25.15614],[81.62571,25.14485],[81.62332,25.14104],[81.62061,25.14029],[81.61459,25.14439],[81.61046,25.1391],[81.60258,25.13615],[81.59806,25.13134],[81.60233,25.12725],[81.60059,25.12403],[81.5983,25.12378],[81.6,25.12313],[81.59804,25.12229],[81.59696,25.11909],[81.60061,25.11627],[81.60639,25.11627],[81.61011,25.11252],[81.60849,25.11174],[81.61023,25.10876],[81.60832,25.09605],[81.61147,25.09506],[81.61466,25.10004],[81.61632,25.10773],[81.61897,25.11013],[81.62314,25.11099],[81.62365,25.11223],[81.6205,25.11565],[81.62408,25.12004],[81.63294,25.11712],[81.63171,25.11178],[81.62834,25.10679],[81.63206,25.10643],[81.63357,25.1027],[81.64086,25.09849],[81.62861,25.09474],[81.62879,25.09128],[81.62143,25.09016],[81.61579,25.08034],[81.60543,25.07848],[81.60035,25.07385],[81.61054,25.06865],[81.60914,25.06562],[81.61745,25.06092],[81.61692,25.05879],[81.61032,25.06107],[81.61143,25.0565],[81.62765,25.05263],[81.63331,25.05934],[81.64122,25.05676],[81.65148,25.06716],[81.6527,25.07082],[81.66051,25.07161],[81.66267,25.07417],[81.66416,25.07259],[81.66654,25.07511],[81.66856,25.07171],[81.6672,25.06136],[81.67088,25.05991],[81.67797,25.06204],[81.68232,25.06119],[81.68574,25.05839],[81.68862,25.05174],[81.69151,25.05148],[81.69344,25.0488],[81.68872,25.03954],[81.68975,25.03895],[81.7071,25.03523],[81.71331,25.03607],[81.72141,25.03825],[81.72168,25.04232],[81.71909,25.04184],[81.72388,25.05017],[81.73044,25.04746],[81.73151,25.04864],[81.74041,25.04483],[81.74256,25.04144],[81.74188,25.03894],[81.7467,25.03742],[81.7458,25.03347],[81.755,25.03484],[81.75517,25.03169],[81.758,25.02739],[81.78089,25.01888],[81.79221,25.00441],[81.80377,25.0017],[81.80559,25.00524],[81.80464,25.0059],[81.81038,25.01269],[81.81401,25.01069],[81.81772,25.0152],[81.81949,25.01414],[81.82305,25.01712],[81.82568,25.01679],[81.8319,25.01213],[81.83482,25.01697],[81.84874,25.01164],[81.84865,25.00822],[81.85347,25.00268],[81.85955,25.00314],[81.86521,25.00087],[81.86642,25.00235],[81.87255,24.99976],[81.87419,24.99517],[81.87688,24.99579],[81.87688,24.9994],[81.8909,24.99576],[81.88991,24.99186],[81.89131,24.98887],[81.89548,24.98968],[81.90169,24.9994],[81.8974,25.00352],[81.89484,25.00782],[81.89556,25.00952],[81.89812,25.01064],[81.90727,25.00567],[81.90634,24.99503],[81.90146,24.9865],[81.90299,24.98374],[81.90593,24.98272],[81.90517,24.98137],[81.90786,24.98012],[81.90408,24.9722],[81.90751,24.97076],[81.90805,24.96847],[81.90939,24.9607],[81.9075,24.95951],[81.91006,24.95243],[81.90907,24.94264],[81.91036,24.93738],[81.91406,24.93626],[81.91965,24.92812],[81.91755,24.92328],[81.91902,24.9219],[81.91835,24.91952],[81.90671,24.9044],[81.90643,24.90026],[81.90353,24.89875],[81.90786,24.89654],[81.90479,24.89507],[81.90574,24.89269],[81.90284,24.89168],[81.90442,24.89139],[81.90355,24.89001],[81.90495,24.88678],[81.90891,24.88574],[81.90657,24.88345],[81.90789,24.88135],[81.91463,24.88072],[81.9165,24.8772],[81.92057,24.87739],[81.92006,24.87432],[81.9255,24.8722],[81.92801,24.87403],[81.93372,24.8707],[81.93463,24.86808],[81.93272,24.85874],[81.93768,24.85285],[81.9365,24.85201],[81.93794,24.84973],[81.94357,24.84658],[81.9424,24.8452],[81.94417,24.84124],[81.96061,24.83654],[81.96527,24.82704],[81.96792,24.82902],[81.96875,24.83618],[81.97154,24.83893],[81.98531,24.83925],[81.99225,24.84224],[82.00311,24.84145],[82.01072,24.84691],[82.01694,24.84598],[82.024,24.8412],[82.03123,24.84024],[82.04521,24.82862],[82.05143,24.83052],[82.07157,24.81918],[82.07505,24.82194],[82.09765,24.81615],[82.1057,24.80538],[82.11032,24.80055],[82.11218,24.80052],[82.11561,24.78444],[82.12032,24.78813],[82.1231,24.78694],[82.12593,24.78831],[82.12958,24.78563],[82.13009,24.78809],[82.13388,24.78798],[82.13188,24.79161],[82.13866,24.79946],[82.14435,24.79702],[82.14973,24.79191],[82.15092,24.79462],[82.15327,24.79158],[82.16702,24.78544],[82.16774,24.79118],[82.17133,24.79059],[82.17823,24.79287],[82.1789,24.79507],[82.16965,24.79805],[82.16665,24.80088],[82.16996,24.79938],[82.17512,24.80091],[82.17818,24.81089],[82.1848,24.80971],[82.1911,24.81069],[82.1994,24.81775],[82.20359,24.8192],[82.19814,24.81627],[82.19162,24.80576],[82.18876,24.80579],[82.18388,24.7989],[82.18426,24.79563],[82.19542,24.79187],[82.2033,24.7923],[82.20632,24.79612],[82.21215,24.79364],[82.21615,24.79414],[82.21729,24.79018],[82.21512,24.79021],[82.21183,24.78671],[82.20921,24.77844],[82.21792,24.77668],[82.21404,24.77287],[82.21035,24.77472],[82.20944,24.77153],[82.20402,24.77623],[82.19655,24.77806],[82.1949,24.77519],[82.20006,24.76862],[82.19542,24.76417],[82.2037,24.76049],[82.20326,24.75834],[82.19747,24.74978],[82.1975,24.74677],[82.18664,24.73863],[82.18398,24.73885],[82.17745,24.73233],[82.18132,24.73256],[82.18525,24.73572],[82.18815,24.73419],[82.19142,24.73759],[82.19709,24.73816],[82.19953,24.73525],[82.20326,24.73404],[82.20497,24.73578],[82.20914,24.73385],[82.21404,24.73443],[82.21592,24.73054],[82.21574,24.72649],[82.21936,24.7246],[82.21997,24.72195],[82.2213,24.72233],[82.2213,24.72721],[82.21888,24.72845],[82.22003,24.73105],[82.21755,24.73746],[82.21058,24.73979],[82.20957,24.74212],[82.20641,24.74352],[82.20657,24.74719],[82.21585,24.75488],[82.21873,24.75013],[82.22225,24.74825],[82.22227,24.74657],[82.22884,24.74558],[82.22928,24.74935],[82.22689,24.75273],[82.22813,24.75436],[82.22475,24.75783],[82.22646,24.76124],[82.23136,24.75598],[82.23132,24.75926],[82.23324,24.75826],[82.23413,24.76059],[82.23542,24.7602],[82.23791,24.75501],[82.23744,24.75174],[82.23993,24.75078],[82.24257,24.74467],[82.24516,24.74441],[82.24623,24.75445],[82.24874,24.7562],[82.24981,24.76284],[82.2466,24.76662],[82.24614,24.76966],[82.24666,24.77104],[82.25093,24.76993],[82.24947,24.76813],[82.25081,24.75732],[82.25327,24.75156],[82.25558,24.7521],[82.25548,24.74824],[82.25067,24.73547],[82.24771,24.73286],[82.24522,24.73279],[82.2447,24.7307],[82.24982,24.7194],[82.25097,24.71147],[82.25024,24.70991],[82.24616,24.70906],[82.24518,24.70351],[82.25011,24.69745],[82.24693,24.69225],[82.24482,24.69202],[82.24231,24.69478],[82.2394,24.69021],[82.2354,24.69039],[82.23452,24.68563],[82.22971,24.68179],[82.2335,24.68099],[82.23654,24.6767],[82.2351,24.6709],[82.23971,24.66127],[82.24115,24.66205],[82.24011,24.66966],[82.24517,24.67092],[82.24753,24.66866],[82.249,24.67116],[82.25109,24.66808],[82.25419,24.67018],[82.25634,24.66861],[82.25708,24.66446],[82.25527,24.66045],[82.26087,24.66131],[82.26351,24.66591],[82.27255,24.67355],[82.27257,24.67541],[82.26456,24.67639],[82.26286,24.67826],[82.26876,24.68341],[82.28062,24.67541],[82.28519,24.67578],[82.2853,24.66838],[82.28801,24.66586],[82.29836,24.66552],[82.29925,24.66726],[82.30314,24.6671],[82.3036,24.66331],[82.29636,24.66125],[82.3039,24.65369],[82.29998,24.64698],[82.3038,24.64376],[82.30084,24.64246],[82.30188,24.63914],[82.30021,24.63433],[82.30368,24.62519],[82.29996,24.61207],[82.29541,24.6089],[82.2968,24.60584],[82.29896,24.60486],[82.30168,24.6078],[82.31543,24.60782],[82.31964,24.6062],[82.32197,24.61246],[82.32961,24.61843],[82.33617,24.62],[82.33706,24.61895],[82.33864,24.62036],[82.34433,24.61553],[82.34718,24.61663],[82.34963,24.6151],[82.35559,24.60423],[82.36477,24.5972],[82.40197,24.59136],[82.40414,24.59632],[82.4114,24.59454],[82.41611,24.5912],[82.41715,24.59435],[82.42008,24.59481],[82.42202,24.59962],[82.41081,24.61374],[82.41327,24.61647],[82.41321,24.62031],[82.409,24.62524],[82.40968,24.63542],[82.41776,24.64127],[82.41612,24.64526],[82.41845,24.65172],[82.41625,24.65271],[82.41594,24.65631],[82.41202,24.6597],[82.4115,24.66531],[82.41389,24.67017],[82.40677,24.67698],[82.40868,24.67933],[82.4062,24.68112],[82.41577,24.68949],[82.4155,24.69226],[82.42945,24.70259],[82.43845,24.70101],[82.45303,24.68854],[82.45373,24.68453],[82.45024,24.67441],[82.45672,24.67319],[82.46832,24.67398],[82.46864,24.67562],[82.47983,24.67834],[82.48353,24.67701],[82.48924,24.67137],[82.49395,24.67093],[82.50506,24.67164],[82.51074,24.67527],[82.51741,24.67344],[82.52295,24.67627],[82.52978,24.65253],[82.53963,24.64785],[82.57984,24.65929],[82.59304,24.66878],[82.60718,24.67554],[82.6366,24.68235],[82.65747,24.69511],[82.67085,24.69703],[82.67615,24.69071],[82.68657,24.68579],[82.70089,24.67602],[82.70179,24.67166],[82.69875,24.66253],[82.6982,24.6462],[82.7067,24.63627],[82.70942,24.63907],[82.71796,24.64255],[82.7168,24.63709],[82.71817,24.63467],[82.72284,24.6384],[82.72813,24.63535],[82.73229,24.64428],[82.74106,24.64161],[82.74633,24.64208],[82.75309,24.63695],[82.75352,24.64091],[82.76208,24.64259],[82.7743,24.64177],[82.77193,24.6349],[82.77227,24.62193],[82.77562,24.62047],[82.7754,24.61466],[82.77955,24.61394],[82.77007,24.6037],[82.76989,24.59897],[82.76546,24.59577],[82.78017,24.59462],[82.7916,24.59818],[82.80303,24.59768],[82.80318,24.58758],[82.80122,24.583],[82.80272,24.5826],[82.80308,24.57912],[82.80125,24.57686],[82.80564,24.56978],[82.80494,24.55607],[82.80755,24.54899],[82.79131,24.54356],[82.75552,24.53745],[82.75153,24.53772],[82.7526,24.54369],[82.74908,24.54331],[82.75248,24.54662],[82.75164,24.54991],[82.74755,24.54978],[82.7431,24.55182],[82.74237,24.54692],[82.72201,24.55529],[82.71918,24.55247],[82.72065,24.55168],[82.71955,24.54944],[82.72116,24.54567],[82.72804,24.5399],[82.73103,24.53508],[82.72949,24.53114],[82.72094,24.5295],[82.72348,24.52547],[82.72128,24.52346],[82.72312,24.51831],[82.72063,24.51403],[82.72432,24.50957],[82.72927,24.50905],[82.73592,24.50174],[82.74362,24.49896],[82.74356,24.49535],[82.74325,24.49177],[82.73998,24.48735],[82.74012,24.48202],[82.73373,24.47857],[82.73423,24.47553],[82.72989,24.47265],[82.73098,24.47089],[82.73472,24.47044],[82.73636,24.46165],[82.7348,24.45678],[82.7314,24.45404],[82.73111,24.45147],[82.73311,24.45024],[82.73412,24.44667],[82.73089,24.43758],[82.73489,24.43545],[82.73263,24.43084],[82.73439,24.43238],[82.73587,24.4311],[82.73921,24.43237],[82.73921,24.42764],[82.72341,24.41679],[82.71321,24.38024],[82.71913,24.37833],[82.71902,24.37357],[82.72299,24.37117],[82.72375,24.3682],[82.72597,24.36794],[82.73195,24.36947],[82.73982,24.36736],[82.74414,24.37047],[82.75591,24.36963],[82.7549,24.37409],[82.76037,24.37368],[82.76021,24.37735],[82.76401,24.37627],[82.76519,24.3748],[82.76392,24.37046],[82.76892,24.3709],[82.7697,24.36955],[82.76873,24.36633],[82.76514,24.36522],[82.76741,24.36085],[82.76557,24.35994],[82.76688,24.35816],[82.7645,24.35425],[82.76796,24.35285],[82.76925,24.34664],[82.77364,24.34342],[82.76932,24.34187],[82.76838,24.3392],[82.76993,24.33301],[82.7671,24.33029],[82.7715,24.32816],[82.76894,24.32403],[82.76844,24.31677],[82.76595,24.3157],[82.7661,24.31327],[82.77322,24.30736],[82.77151,24.29504],[82.7622,24.26958],[82.75616,24.26142],[82.7555,24.25584],[82.75788,24.25],[82.75929,24.23706],[82.75,24.22637],[82.73648,24.22295],[82.73471,24.21731],[82.7396,24.2001],[82.74444,24.16548],[82.73585,24.15387],[82.7293,24.14796],[82.72808,24.13514],[82.71051,24.13622],[82.70429,24.1393],[82.69971,24.13924],[82.6949,24.14329],[82.69302,24.14873],[82.68288,24.15459],[82.6773,24.15246],[82.6707,24.14712],[82.67413,24.14097],[82.67052,24.13666],[82.66682,24.13693],[82.66819,24.13497],[82.6643,24.12947],[82.66524,24.12449],[82.67064,24.11988],[82.67715,24.11999],[82.67806,24.11479],[82.68063,24.11485],[82.68022,24.11259],[82.6834,24.11184],[82.68295,24.10936],[82.68706,24.10829],[82.69127,24.10337],[82.69132,24.10524],[82.69262,24.10481],[82.69585,24.10004],[82.70754,24.09639],[82.70488,24.09487],[82.71182,24.08927],[82.70987,24.08505],[82.71029,24.08101],[82.71422,24.07971],[82.7139,24.07625],[82.71642,24.07772],[82.72856,24.07814],[82.73314,24.08045],[82.73897,24.07576],[82.74023,24.07723],[82.74475,24.07497],[82.74749,24.07103],[82.75001,24.07084],[82.75343,24.07731],[82.75968,24.07773],[82.76021,24.07258],[82.76305,24.06991],[82.76565,24.07083],[82.7676,24.07589],[82.77402,24.0763],[82.77054,24.05632],[82.76737,24.04856],[82.75558,24.0333],[82.74718,24.02727],[82.74917,24.02356],[82.7507,24.01198],[82.769,24.00568],[82.77564,24.00645],[82.78436,24.00464],[82.78879,24.00828],[82.79989,24.00341],[82.80418,24.00352],[82.80629,23.99776],[82.80458,23.99595],[82.80561,23.98992],[82.8085,23.98606],[82.80533,23.98288],[82.80538,23.98012],[82.80224,23.9793],[82.80783,23.96555],[82.81258,23.9599],[82.82672,23.9623],[82.83699,23.9568],[82.84112,23.95066],[82.84865,23.94535],[82.85335,23.94547],[82.85828,23.93926],[82.86111,23.93893],[82.86522,23.9264],[82.87725,23.91779],[82.88471,23.90884],[82.90516,23.89789],[82.9117,23.8975],[82.92722,23.89229],[82.93065,23.88946],[82.93662,23.87707],[82.94788,23.87142],[82.97458,23.87163],[82.98284,23.87416],[82.99722,23.87259],[83.00163,23.87364],[83.00125,23.87679],[83.01871,23.87947],[83.03531,23.87965],[83.05425,23.8793],[83.06213,23.87394],[83.07194,23.87388],[83.07505,23.87012],[83.09138,23.87155],[83.11577,23.88019],[83.14148,23.88492],[83.14759,23.88898],[83.14822,23.89329],[83.15384,23.89673],[83.15277,23.89947],[83.15422,23.90404],[83.15948,23.90738],[83.16367,23.90877],[83.17119,23.90777],[83.17467,23.9123],[83.17827,23.91216],[83.18129,23.9151],[83.18803,23.91452],[83.18976,23.91735],[83.19317,23.91693],[83.19464,23.91433],[83.19843,23.91406],[83.20792,23.92139],[83.20794,23.92424],[83.20382,23.92868],[83.20846,23.93057],[83.21193,23.93574],[83.21599,23.9379],[83.21552,23.94551],[83.22003,23.94885],[83.21994,23.95271],[83.22313,23.95815],[83.22282,23.9622],[83.21861,23.96898],[83.21967,23.97294],[83.22691,23.97788],[83.22333,23.98421],[83.22361,23.98665],[83.2305,23.98877],[83.23143,23.99398],[83.23366,23.99607],[83.24243,23.99718],[83.24114,24.0053],[83.24259,24.01159],[83.25188,24.01491],[83.25768,24.01311],[83.25976,24.00947],[83.26363,24.00924],[83.27275,24.01817],[83.27911,24.01827],[83.28345,24.03242],[83.284,24.03953],[83.28211,24.04973],[83.2874,24.05511],[83.29946,24.07893],[83.3056,24.07964],[83.30769,24.08205],[83.31475,24.09097],[83.32145,24.10602],[83.32935,24.10133],[83.33422,24.10411],[83.34491,24.11085],[83.35037,24.1215],[83.35406,24.12491],[83.35481,24.13559],[83.35876,24.14035],[83.36156,24.14884],[83.36198,24.15639],[83.37177,24.17429],[83.37502,24.1861],[83.38299,24.19792],[83.38139,24.20019],[83.38185,24.2046],[83.38036,24.20506],[83.38065,24.20776],[83.37862,24.21076],[83.37937,24.21325],[83.38301,24.21479],[83.38122,24.21709],[83.38462,24.22054],[83.38134,24.2259],[83.37857,24.22666],[83.37873,24.23036],[83.38115,24.23397],[83.38488,24.23605],[83.38524,24.23911],[83.39764,24.24384],[83.40032,24.25639],[83.40753,24.26213],[83.4091,24.26633],[83.40635,24.28596],[83.40717,24.28878],[83.40177,24.29227],[83.40149,24.29554],[83.39236,24.29599],[83.38623,24.29878],[83.38428,24.30659],[83.37998,24.31087],[83.38037,24.31378],[83.38576,24.31728],[83.38777,24.3162],[83.3921,24.32478],[83.41142,24.33986],[83.42097,24.33799],[83.43263,24.33823],[83.43404,24.34297],[83.43947,24.34625],[83.44517,24.35884],[83.45727,24.36455],[83.44854,24.3701],[83.44797,24.37373],[83.4495,24.37703],[83.44537,24.37823],[83.44227,24.38608],[83.4388,24.38773],[83.43976,24.38883],[83.43749,24.39209],[83.43352,24.39328],[83.43268,24.39617],[83.43604,24.39925],[83.43442,24.40075],[83.43002,24.39995],[83.41894,24.40621],[83.40507,24.40478],[83.40331,24.41982],[83.40489,24.436],[83.39412,24.43465],[83.38551,24.45127],[83.38542,24.45702],[83.39068,24.46517],[83.39093,24.47358],[83.39347,24.47539],[83.39353,24.47792],[83.3982,24.48542],[83.39536,24.48873],[83.39837,24.49295],[83.39609,24.49447],[83.39694,24.4969],[83.40315,24.50389],[83.42943,24.51093],[83.46894,24.51673],[83.4842,24.52211],[83.50329,24.52543],[83.49861,24.5318],[83.49712,24.5391],[83.52228,24.54766],[83.52275,24.55568],[83.52829,24.56158],[83.5301,24.56732],[83.52881,24.57458],[83.53022,24.58205],[83.528,24.58627],[83.52435,24.58894],[83.52266,24.59855],[83.52353,24.60313],[83.5273,24.60587],[83.53042,24.6124],[83.54192,24.61275],[83.54327,24.6173],[83.54796,24.62288],[83.5437,24.62828],[83.53153,24.62696],[83.52469,24.62782],[83.52476,24.62943],[83.52679,24.63001],[83.52981,24.64303],[83.52019,24.64106],[83.5099,24.6483],[83.50479,24.6469],[83.50288,24.6478],[83.50049,24.65125],[83.50399,24.6663],[83.50915,24.67119],[83.52038,24.6775],[83.51684,24.68112],[83.51776,24.68301],[83.5108,24.68578],[83.50701,24.69282],[83.49886,24.69486],[83.50054,24.69732],[83.49864,24.70333],[83.49529,24.70452],[83.48974,24.70045],[83.48513,24.70167],[83.48544,24.71535],[83.48833,24.72279],[83.48934,24.73633],[83.4709,24.73237],[83.46227,24.73309],[83.4581,24.73135],[83.45733,24.7338],[83.45319,24.735],[83.45083,24.73855],[83.44864,24.73833],[83.44156,24.75097],[83.44138,24.75645],[83.43744,24.75734],[83.43485,24.76079],[83.42784,24.7631],[83.42783,24.76829],[83.42197,24.7694],[83.41282,24.77502],[83.40794,24.77411],[83.39778,24.77811],[83.39699,24.78179],[83.39305,24.78273],[83.39325,24.78653],[83.39118,24.78947],[83.39964,24.79666],[83.39583,24.80001],[83.39374,24.80476],[83.39925,24.80895],[83.40185,24.8139],[83.40136,24.81888],[83.3951,24.82617],[83.39659,24.83235],[83.39283,24.8361],[83.39252,24.8406],[83.38682,24.83975],[83.38142,24.84652],[83.37995,24.84952],[83.38051,24.85371],[83.37657,24.85639],[83.37674,24.86014],[83.36928,24.86231],[83.35753,24.87054],[83.36088,24.87424],[83.36801,24.87668],[83.36946,24.87987],[83.35827,24.88813],[83.35826,24.89077],[83.36479,24.89085],[83.36588,24.89302],[83.35745,24.90051],[83.35458,24.90547],[83.35645,24.90747],[83.3623,24.90902],[83.36367,24.91301],[83.36224,24.91827],[83.36285,24.92773],[83.36094,24.93237],[83.3649,24.9375],[83.36105,24.94228],[83.36145,24.95372],[83.35969,24.95615],[83.35502,24.95663],[83.34983,24.96306],[83.3437,24.96206],[83.34311,24.96307],[83.34503,24.97215],[83.34337,24.9812],[83.3502,24.99018],[83.35254,24.99656],[83.34981,25.00925],[83.33412,25.0141],[83.32658,25.01291],[83.32022,25.01726],[83.32141,25.02467],[83.3248,25.02473],[83.32434,25.03733],[83.33571,25.05093],[83.34335,25.05088],[83.34275,25.05987],[83.33594,25.06146],[83.34042,25.06865],[83.34131,25.08154],[83.34411,25.08615],[83.34727,25.0868],[83.34819,25.1006],[83.35069,25.10507],[83.35009,25.11328],[83.36328,25.11118],[83.36606,25.12511],[83.36737,25.12523],[83.36817,25.12989],[83.36191,25.13268],[83.36379,25.13789],[83.36341,25.15347],[83.3513,25.15701],[83.35163,25.16296],[83.35637,25.17763],[83.35297,25.17864],[83.35353,25.18333],[83.34979,25.18489],[83.35195,25.18866],[83.3538,25.18886],[83.35725,25.19966],[83.36339,25.19822],[83.3663,25.19536],[83.37269,25.20033],[83.38194,25.20175],[83.38353,25.20328],[83.38248,25.2107],[83.38622,25.21215],[83.38971,25.21008],[83.39038,25.20496],[83.39312,25.20434],[83.39586,25.20759],[83.39524,25.21452],[83.39761,25.21631],[83.40217,25.21278],[83.4009,25.20952],[83.40204,25.20906],[83.40384,25.21315],[83.40206,25.2212],[83.40277,25.22437],[83.40928,25.22932],[83.40657,25.23381],[83.40626,25.23773],[83.4077,25.23952],[83.41257,25.23495],[83.41361,25.23549],[83.4128,25.23885],[83.40886,25.24079],[83.40991,25.24661],[83.41798,25.25066],[83.42182,25.24652],[83.42672,25.24639],[83.42741,25.24791],[83.42475,25.25182],[83.42721,25.25367],[83.43269,25.25045],[83.43366,25.24553],[83.43623,25.24424],[83.43703,25.24887],[83.44077,25.25331],[83.43896,25.25783],[83.44214,25.25915],[83.44302,25.25456],[83.44651,25.25752],[83.447,25.2599],[83.45009,25.26104],[83.45299,25.25627],[83.46268,25.25036],[83.46792,25.25234],[83.47066,25.2576],[83.47701,25.26151],[83.47971,25.26752],[83.4768,25.27181],[83.48003,25.27625],[83.48532,25.27932],[83.48699,25.28359],[83.48995,25.28404],[83.49038,25.28948],[83.49235,25.28973],[83.49354,25.2877],[83.49337,25.28491],[83.49107,25.28278],[83.49138,25.27991],[83.49739,25.28035],[83.49797,25.28584],[83.50228,25.28747],[83.50447,25.28658],[83.50199,25.2824],[83.50546,25.28104],[83.50892,25.28844],[83.51104,25.28879],[83.51525,25.2847],[83.52694,25.29298],[83.5237,25.29614],[83.52346,25.30256],[83.52808,25.30247],[83.53401,25.29735],[83.53837,25.30436],[83.5428,25.30408],[83.54514,25.30675],[83.55409,25.30849],[83.55376,25.31022],[83.54723,25.31406],[83.53729,25.30977],[83.53715,25.313],[83.53991,25.31579],[83.55392,25.31481],[83.5573,25.31148],[83.5617,25.31359],[83.57206,25.31466],[83.57348,25.31249],[83.57073,25.30718],[83.57372,25.30613],[83.5771,25.31011],[83.57624,25.31504],[83.58062,25.3171],[83.58574,25.31531],[83.58742,25.32175],[83.59628,25.32767],[83.60601,25.3287],[83.6081,25.33152],[83.61685,25.33206],[83.62138,25.33147],[83.62404,25.32872],[83.62844,25.32852],[83.62989,25.33386],[83.63414,25.33435],[83.63515,25.33584],[83.63371,25.34321],[83.64219,25.33973],[83.6463,25.34247],[83.6488,25.33927],[83.64933,25.3445],[83.65281,25.34834],[83.64916,25.35398],[83.65135,25.3574],[83.65453,25.35688],[83.65794,25.35963],[83.65595,25.36836],[83.65986,25.36373],[83.66439,25.36191],[83.66709,25.36272],[83.66392,25.37283],[83.67666,25.36434],[83.69371,25.36963],[83.69453,25.37123],[83.68938,25.37571],[83.68401,25.37626],[83.68206,25.37862],[83.69059,25.38395],[83.69655,25.38247],[83.69448,25.38895],[83.70168,25.39616],[83.70396,25.39633],[83.70526,25.39468],[83.70661,25.38635],[83.71012,25.38604],[83.71362,25.3935],[83.71743,25.39752],[83.72446,25.40001],[83.73059,25.39743],[83.73235,25.39815],[83.73407,25.4062],[83.74059,25.41063],[83.74351,25.40787],[83.74507,25.40046],[83.75546,25.40447],[83.76627,25.40095],[83.76628,25.3974],[83.75651,25.39675],[83.75499,25.39225],[83.75778,25.38952],[83.76897,25.38636],[83.76914,25.39339],[83.77278,25.39816],[83.7763,25.39903],[83.78481,25.3963],[83.78965,25.39677],[83.80784,25.4091],[83.81439,25.42121],[83.81302,25.4231],[83.80096,25.42549],[83.80006,25.42775],[83.80156,25.42983],[83.8124,25.42962],[83.82151,25.43434],[83.82914,25.43621],[83.83288,25.43566],[83.83179,25.43217],[83.83299,25.43103],[83.84635,25.43435],[83.84652,25.4388],[83.84192,25.44692],[83.82537,25.4459],[83.81959,25.45026],[83.81281,25.4482],[83.81269,25.45364],[83.81656,25.46276],[83.82489,25.4658],[83.83049,25.45838],[83.83278,25.45761],[83.85675,25.46857],[83.8636,25.48441],[83.87074,25.48751],[83.87159,25.49313],[83.87781,25.49925],[83.87742,25.50392],[83.87416,25.50953],[83.87621,25.51806],[83.89418,25.51992],[83.90209,25.52403],[83.91419,25.54521],[83.92459,25.55431],[83.95837,25.57082],[84.01741,25.61469],[84.04616,25.62691],[84.08128,25.63631],[84.08512,25.65258],[84.07516,25.69527],[84.08896,25.71309],[84.10506,25.72122],[84.12913,25.72371],[84.1399,25.73166],[84.14223,25.72815],[84.14164,25.72174],[84.13525,25.72403],[84.12988,25.71779],[84.14174,25.71609],[84.14981,25.7188],[84.1526,25.72346],[84.1557,25.72385],[84.15275,25.72695],[84.14897,25.72695],[84.15086,25.72925],[84.15467,25.72924],[84.15449,25.72744],[84.16298,25.72487],[84.16694,25.72158],[84.16993,25.72291],[84.17423,25.72062],[84.17454,25.71763],[84.19889,25.70208],[84.20601,25.66946],[84.22322,25.66251],[84.27436,25.66289],[84.27686,25.66041],[84.29451,25.66113],[84.30026,25.66539],[84.29954,25.6685],[84.29139,25.67065],[84.28815,25.67326],[84.28761,25.67755],[84.29291,25.67565],[84.29798,25.67739],[84.29918,25.67194],[84.31689,25.67249],[84.31703,25.66729],[84.32435,25.67103],[84.32956,25.70866],[84.32842,25.73193],[84.33634,25.74423],[84.36518,25.74256],[84.37522,25.73533],[84.3769,25.73715],[84.37177,25.74203],[84.37374,25.74429],[84.37783,25.73928],[84.38495,25.74751],[84.3917,25.74516],[84.39363,25.7442],[84.39012,25.73691],[84.38782,25.7376],[84.38439,25.73277],[84.40004,25.72937],[84.39851,25.72555],[84.40058,25.72492],[84.40654,25.71598],[84.40109,25.70834],[84.40674,25.69842],[84.41477,25.69804],[84.42318,25.69367],[84.42768,25.69362],[84.42808,25.70119],[84.43155,25.70768],[84.42965,25.71162],[84.44029,25.71106],[84.44041,25.70836],[84.44428,25.70849],[84.44425,25.71065],[84.45351,25.71433],[84.45289,25.70943],[84.46217,25.70928],[84.46423,25.70077],[84.46249,25.69767],[84.46829,25.69853],[84.46893,25.69662],[84.46606,25.69535],[84.46588,25.69168],[84.4708,25.68724],[84.49361,25.69084],[84.49196,25.67649],[84.49606,25.67674],[84.49934,25.67468],[84.50437,25.67764],[84.5054,25.67692],[84.50775,25.68185],[84.52005,25.67496],[84.52887,25.68249],[84.53446,25.72423],[84.53944,25.72673],[84.53519,25.69077],[84.55105,25.68585],[84.55645,25.68195],[84.55532,25.68009],[84.55743,25.67951],[84.5618,25.6858],[84.5642,25.71377],[84.56028,25.7369],[84.60032,25.73837],[84.60776,25.73533],[84.6114,25.73249],[84.6112,25.73108],[84.62743,25.7263],[84.62884,25.72617],[84.63017,25.72885],[84.63465,25.72794],[84.63178,25.73928],[84.62535,25.74753],[84.6107,25.75469],[84.60296,25.76194],[84.60622,25.76127],[84.60738,25.77141],[84.61346,25.77577],[84.61835,25.77129],[84.61941,25.7724],[84.62347,25.7708],[84.62457,25.79217],[84.58178,25.82508],[84.55211,25.84018],[84.55087,25.84068],[84.54861,25.82854],[84.53052,25.83161],[84.53076,25.8535],[84.52322,25.86029],[84.5337,25.86403],[84.54066,25.85966],[84.54322,25.85996],[84.53398,25.87637],[84.51075,25.87176],[84.48949,25.88832],[84.49015,25.88645],[84.47852,25.88506],[84.4724,25.88171],[84.46015,25.88951],[84.45953,25.88815],[84.4544,25.88773],[84.43662,25.8916],[84.43531,25.88987],[84.42756,25.89124],[84.4289,25.89751],[84.42496,25.90167],[84.41987,25.91351],[84.41376,25.923],[84.4119,25.93078],[84.38737,25.93733],[84.35395,25.95878],[84.31187,25.94377],[84.29691,25.94517],[84.28229,25.95878],[84.24491,25.97579],[84.24513,25.98063],[84.23929,25.98506],[84.21768,25.99473],[84.21307,25.9949],[84.20708,25.99983],[84.20153,25.99036],[84.19628,25.98788],[84.18648,25.99345],[84.17604,25.99652],[84.17463,25.99284],[84.17567,25.99137],[84.17003,25.98768],[84.17246,26.0246],[84.13729,26.05221],[84.12112,26.07654],[84.10381,26.09274],[84.08867,26.10024],[84.05597,26.09999],[84.04873,26.10906],[84.05004,26.12001],[84.05177,26.12056],[84.05012,26.13002],[84.04345,26.13484],[84.02744,26.1424],[84.03436,26.15119],[84.03345,26.16069],[84.0187,26.16747],[84.00938,26.17559],[84.00801,26.18741],[84.01323,26.19402],[84.01665,26.19605],[84.02663,26.19691],[84.02859,26.19565],[84.03235,26.19984],[84.03538,26.19863],[84.03835,26.20097],[84.03924,26.20905],[84.03188,26.2094],[84.02907,26.21119],[84.02766,26.21432],[84.03121,26.21689],[84.02926,26.21984],[84.02212,26.22017],[84.0153,26.22328],[84.01222,26.23212],[84.0156,26.23377],[84.01923,26.23894],[84.02466,26.23777],[84.02726,26.23965],[84.03823,26.23699],[84.0377,26.23206],[84.04213,26.22996],[84.0512,26.22915],[84.06208,26.22227],[84.06346,26.22415],[84.08016,26.2223],[84.08022,26.21971],[84.08641,26.21875],[84.08825,26.22353],[84.08764,26.23036],[84.09017,26.23034],[84.09104,26.23378],[84.09812,26.23332],[84.09949,26.23732],[84.10602,26.23669],[84.10708,26.24123],[84.11744,26.24011],[84.11968,26.24791],[84.11679,26.24974],[84.12002,26.25807],[84.12169,26.25887],[84.12726,26.258],[84.12917,26.25555],[84.13222,26.25903],[84.14655,26.25521],[84.15116,26.25779],[84.16309,26.24184],[84.16621,26.24095],[84.1615,26.25032],[84.16117,26.25592],[84.16408,26.25911],[84.17278,26.26151],[84.17662,26.26454],[84.17451,26.29227],[84.17774,26.3032],[84.18394,26.3087],[84.18597,26.3129],[84.17254,26.33435],[84.17284,26.3535],[84.1759,26.3606],[84.17668,26.37068],[84.17542,26.37309],[84.16378,26.37544],[84.16113,26.37407],[84.13752,26.37794],[84.1356,26.38171],[84.12466,26.38304],[84.12199,26.38512],[84.1029,26.38571],[84.09929,26.3846],[84.08876,26.38678],[84.08771,26.38416],[84.08401,26.38178],[84.07917,26.38251],[84.07918,26.38465],[84.07609,26.38507],[84.07581,26.38644],[84.06816,26.38827],[84.06798,26.39108],[84.06513,26.39285],[84.06547,26.39647],[84.06244,26.39842],[84.06313,26.40072],[84.05538,26.4022],[84.05287,26.4046],[84.04937,26.40374],[84.04951,26.40711],[84.04363,26.40951],[84.0412,26.40726],[84.03968,26.41089],[84.04097,26.41269],[84.03386,26.41165],[84.03486,26.41946],[84.02261,26.43089],[84.02442,26.43424],[84.02379,26.44025],[84.01683,26.44755],[84.00763,26.44396],[83.9979,26.44681],[83.99126,26.43224],[83.98101,26.4328],[83.96333,26.4373],[83.94624,26.43862],[83.94678,26.44098],[83.92445,26.44449],[83.91056,26.44991],[83.91104,26.44705],[83.90802,26.44709],[83.90923,26.45375],[83.91146,26.45591],[83.90973,26.46616],[83.91231,26.4757],[83.90962,26.47569],[83.9106,26.48322],[83.91269,26.48388],[83.9124,26.49773],[83.91517,26.50284],[83.90674,26.50938],[83.90606,26.51265],[83.90809,26.51908],[83.9164,26.51667],[83.9223,26.51961],[83.92706,26.51888],[83.93124,26.52032],[83.93462,26.52513],[83.94036,26.52524],[83.94668,26.51878],[83.95279,26.51776],[83.95261,26.51635],[83.9484,26.51476],[83.94901,26.5102],[83.9517,26.50887],[83.96194,26.51023],[83.96347,26.50808],[83.97083,26.50751],[83.97391,26.5083],[83.97201,26.51028],[83.97362,26.51266],[83.97184,26.51421],[83.97151,26.51761],[83.97652,26.52583],[83.97511,26.52785],[83.97613,26.53351],[83.98274,26.53153],[83.99264,26.53317],[83.99882,26.52723],[84.00685,26.52528],[84.00649,26.52226],[84.00832,26.52194],[84.01406,26.52738],[84.02381,26.53191],[84.04812,26.5364],[84.05633,26.54417],[84.0551,26.55838],[84.05941,26.56128],[84.05838,26.56327],[84.06064,26.5682],[84.06688,26.57269],[84.06611,26.57699],[84.0756,26.58341],[84.07504,26.58591],[84.07784,26.59033],[84.08329,26.59249],[84.08488,26.59828],[84.08909,26.60302],[84.08998,26.60693],[84.08636,26.6124],[84.08863,26.61784],[84.0852,26.62383],[84.08735,26.62585],[84.0884,26.63487],[84.0865,26.63914],[84.1006,26.63595],[84.10296,26.63351],[84.11197,26.63064],[84.11251,26.6344],[84.13055,26.63346],[84.13632,26.63603],[84.14516,26.63472],[84.1587,26.6362],[84.15885,26.63213],[84.15662,26.62697],[84.16029,26.62451],[84.16927,26.62264],[84.17362,26.62282],[84.17443,26.62427],[84.20119,26.62477],[84.20848,26.62276],[84.21108,26.62001],[84.22795,26.61751],[84.22928,26.61654],[84.22923,26.61315],[84.2391,26.61298],[84.23956,26.61001],[84.26647,26.60574],[84.2686,26.60361],[84.26792,26.60165],[84.28132,26.5996],[84.28453,26.59959],[84.28582,26.6058],[84.29451,26.6026],[84.29582,26.60446],[84.30011,26.60378],[84.30325,26.61444],[84.30542,26.61427],[84.30727,26.61632],[84.316,26.61448],[84.3191,26.61151],[84.3258,26.61162],[84.33163,26.61249],[84.33502,26.61555],[84.35399,26.61998],[84.36487,26.61632],[84.37879,26.6147],[84.38619,26.62168],[84.39073,26.62109],[84.39988,26.62454],[84.4104,26.62322],[84.41971,26.62682],[84.41327,26.63733],[84.40978,26.64674],[84.41122,26.65036],[84.41041,26.67025],[84.4063,26.67092],[84.40516,26.67303],[84.40391,26.67177],[84.37658,26.6775],[84.35018,26.67805],[84.34304,26.6809],[84.33503,26.68155],[84.33006,26.6841],[84.32586,26.71415],[84.32424,26.71516],[84.31811,26.73199],[84.31468,26.73531],[84.31421,26.73904],[84.30587,26.74949],[84.28579,26.74993],[84.27568,26.74197],[84.26629,26.73995],[84.25542,26.72662],[84.24942,26.72916],[84.24067,26.73872],[84.23258,26.75367],[84.25,26.77373],[84.25717,26.78938],[84.25998,26.80503],[84.26,26.80699],[84.25421,26.81243],[84.25682,26.81823],[84.25036,26.81933],[84.25354,26.82523],[84.26093,26.83022],[84.2601,26.83351],[84.26181,26.84258],[84.25693,26.84922],[84.25409,26.85659],[84.23557,26.86771],[84.21949,26.8716],[84.20611,26.86172],[84.19786,26.85955],[84.19303,26.86075],[84.19013,26.85847],[84.1833,26.84751],[84.18679,26.84164],[84.18174,26.83348],[84.1776,26.83239],[84.1661,26.83377],[84.15622,26.83756],[84.14917,26.84258],[84.14584,26.8481],[84.14061,26.85265],[84.14037,26.8676],[84.14233,26.87153],[84.14709,26.87245],[84.14351,26.87961],[84.14771,26.88228],[84.14641,26.88542],[84.14153,26.88712],[84.14,26.88463],[84.13547,26.88333],[84.13128,26.88445],[84.129,26.8932],[84.11795,26.88771],[84.11636,26.88912],[84.11587,26.89494],[84.11042,26.8986],[84.10758,26.89693],[84.10676,26.88774],[84.1045,26.88191],[84.09814,26.87594],[84.09649,26.87623],[84.09433,26.88162],[84.08736,26.88169],[84.08421,26.87744],[84.08141,26.87737],[84.07822,26.87904],[84.07521,26.88342],[84.06699,26.88849],[84.06027,26.8881],[84.06085,26.89563],[84.05806,26.90189],[84.05528,26.90263],[84.05237,26.90641],[84.05309,26.9096],[84.05909,26.91646],[84.05997,26.92019],[84.05621,26.92311],[84.05336,26.92967],[84.04323,26.93179],[84.04654,26.93916],[84.04311,26.9405],[84.03497,26.9382],[84.03214,26.94118],[84.03491,26.94521],[84.04201,26.9468],[84.04597,26.95245],[84.0528,26.95498],[84.05483,26.96006],[84.053,26.9675],[84.05379,26.97523],[84.04576,26.98224],[84.04785,26.9846],[84.054,26.98517],[84.0567,26.98966],[84.05256,26.9947],[84.05281,26.99695],[84.0459,27.005],[84.03731,27.00908],[84.04425,27.01672],[84.04413,27.02318],[84.04953,27.03502],[84.0495,27.04327],[84.04714,27.04576],[84.03908,27.04404],[84.03132,27.04563],[84.02818,27.04947],[84.018,27.05602],[84.01189,27.05698],[84.0056,27.06023],[84.00006,27.06859],[84.00396,27.07152],[84.0166,27.0718],[84.02048,27.07941],[84.02862,27.08603],[84.02494,27.09248],[84.03037,27.09384],[84.03034,27.09763],[84.02397,27.10012],[84.02201,27.10413],[84.01644,27.10542],[84.00877,27.09924],[84.0032,27.10186],[83.99999,27.10029],[83.98926,27.09085],[83.9784,27.09076],[83.96698,27.08712],[83.9644,27.08412],[83.95284,27.08493],[83.94647,27.09082],[83.94767,27.11249],[83.95219,27.11862],[83.95952,27.12207],[83.9628,27.12769],[83.95906,27.13688],[83.97536,27.15582],[83.97874,27.16487],[83.98844,27.1716],[83.99327,27.17317],[83.99418,27.17517],[83.99339,27.18164],[83.98882,27.18843],[83.98696,27.19753],[83.97177,27.20845],[83.96747,27.20951],[83.96752,27.21306],[83.97274,27.21819],[83.97018,27.22399],[83.96254,27.22664],[83.96332,27.22851],[83.96081,27.23148],[83.95341,27.23625],[83.9324,27.23936],[83.9233,27.24178],[83.9193,27.24454],[83.9121,27.24576],[83.90507,27.25762],[83.90469,27.27238],[83.90583,27.27496],[83.91258,27.27756],[83.92087,27.28409],[83.92983,27.29269],[83.93407,27.29975],[83.93383,27.30828],[83.92548,27.32141],[83.91663,27.32654],[83.90237,27.32629],[83.87144,27.30724],[83.85934,27.30807],[83.85266,27.31729],[83.84542,27.31518],[83.83657,27.32222],[83.86234,27.33568],[83.86408,27.34716],[83.83084,27.36979],[83.61425,27.46944],[83.38818,27.47976],[83.39181,27.47794],[83.39223,27.47592],[83.38967,27.47459],[83.38826,27.47078],[83.3953,27.46964],[83.39509,27.46661],[83.39762,27.46552],[83.40108,27.46731],[83.40242,27.46619],[83.39952,27.46296],[83.39999,27.45908],[83.40174,27.45754],[83.39762,27.44825],[83.38351,27.44224],[83.38615,27.43909],[83.38391,27.43628],[83.3916,27.4298],[83.39291,27.42483],[83.40093,27.42092],[83.39971,27.41899],[83.40496,27.41885],[83.40685,27.41535],[83.40917,27.4149],[83.40934,27.41281],[83.40599,27.41137],[83.40539,27.40543],[83.40232,27.40088],[83.39648,27.39598],[83.39279,27.39589],[83.38451,27.39017],[83.38481,27.3857],[83.3879,27.38327],[83.38627,27.38052],[83.38768,27.37562],[83.38214,27.37051],[83.37464,27.37],[83.37213,27.36461],[83.37376,27.35722],[83.36904,27.35779],[83.36802,27.35571],[83.36407,27.35547],[83.35789,27.35072],[83.35923,27.34326],[83.35398,27.34403],[83.35087,27.34227],[83.35224,27.33993],[83.34411,27.33827],[83.34303,27.33505],[83.33717,27.33263],[83.33502,27.33383],[83.33182,27.33284],[83.32723,27.33417],[83.32501,27.33661],[83.31784,27.33742],[83.31885,27.33611],[83.31565,27.33292],[83.31759,27.33016],[83.30847,27.33363],[83.30486,27.3313],[83.30064,27.3345],[83.29488,27.33331],[83.29441,27.33493],[83.29163,27.33493],[83.29292,27.336],[83.27243,27.35263],[83.26532,27.36537],[83.27215,27.38335],[83.23996,27.40641],[83.22573,27.41168],[83.21883,27.41622],[83.21111,27.42349],[83.19591,27.44639],[83.18795,27.45432],[83.16572,27.45746],[83.07722,27.4527],[83.03457,27.44872],[83.01896,27.45391],[82.95409,27.46773],[82.94462,27.47693],[82.93957,27.49104],[82.92929,27.50119],[82.86585,27.49856],[82.83251,27.50194],[82.80144,27.4964],[82.78502,27.5],[82.73555,27.50235],[82.73509,27.50799],[82.73764,27.50863],[82.73656,27.50929],[82.73679,27.51789],[82.73872,27.51855],[82.74317,27.51652],[82.7419,27.52073],[82.7463,27.52067],[82.74718,27.51927],[82.74965,27.52257],[82.74746,27.52281],[82.74931,27.52451],[82.74795,27.52684],[82.74623,27.52562],[82.74704,27.52773],[82.74514,27.5287],[82.74716,27.53129],[82.74434,27.52952],[82.74553,27.53135],[82.74196,27.53165],[82.74451,27.53371],[82.74393,27.53559],[82.74067,27.5363],[82.74324,27.54115],[82.74173,27.54099],[82.74123,27.54265],[82.74273,27.54303],[82.74065,27.54438],[82.74197,27.54606],[82.73901,27.54483],[82.73777,27.54656],[82.74096,27.54995],[82.73881,27.55006],[82.73828,27.55187],[82.74013,27.55132],[82.7412,27.55344],[82.74695,27.55556],[82.74352,27.56029],[82.75085,27.56491],[82.75081,27.56769],[82.74742,27.57252],[82.74922,27.57403],[82.74866,27.57641],[82.75089,27.57698],[82.75235,27.5852],[82.75577,27.5878],[82.75039,27.59369],[82.74504,27.59549],[82.74567,27.60076],[82.73512,27.60993],[82.73666,27.61219],[82.73371,27.61871],[82.73652,27.62242],[82.73112,27.62385],[82.73667,27.62596],[82.73404,27.62876],[82.73838,27.63249],[82.73517,27.63593],[82.73767,27.63742],[82.7366,27.64345],[82.73345,27.64292],[82.73349,27.64645],[82.72887,27.64579],[82.73211,27.64914],[82.72575,27.65838],[82.72333,27.65924],[82.72019,27.65753],[82.71895,27.6589],[82.72022,27.66182],[82.71448,27.6626],[82.7115,27.66529],[82.71558,27.66763],[82.71297,27.67085],[82.7159,27.67291],[82.71595,27.67587],[82.71419,27.67716],[82.71834,27.68736],[82.71574,27.69178],[82.70974,27.69558],[82.70608,27.7017],[82.7054,27.71026],[82.70765,27.72292],[82.70509,27.71663],[82.70209,27.71615],[82.69913,27.72195],[82.69533,27.71816],[82.68904,27.71513],[82.68089,27.71391],[82.6658,27.71594],[82.66432,27.72264],[82.65524,27.71346],[82.63807,27.70911],[82.62735,27.71144],[82.62741,27.70926],[82.61887,27.70233],[82.60519,27.70607],[82.60029,27.70435],[82.59408,27.69737],[82.58509,27.69905],[82.55465,27.68853],[82.54989,27.68888],[82.54128,27.6857],[82.53932,27.68776],[82.53138,27.68652],[82.51661,27.69056],[82.50084,27.68513],[82.49224,27.68437],[82.48989,27.68165],[82.48431,27.68107],[82.48204,27.68316],[82.47331,27.67667],[82.44867,27.67932],[82.43662,27.68598],[82.42711,27.68916],[82.41287,27.69905],[82.40172,27.70372],[82.38273,27.72076],[82.36772,27.74292],[82.33669,27.75461],[82.30346,27.77283],[82.25271,27.81035],[82.23044,27.82114],[82.20831,27.84358],[82.17663,27.85548],[82.15401,27.86681],[82.15024,27.85846],[82.14847,27.85837],[82.12138,27.86585],[82.11392,27.87822],[82.10056,27.88612],[82.09109,27.89455],[82.08979,27.89931],[82.0805,27.90886],[82.06996,27.92365],[82.06214,27.92169],[82.04468,27.9246],[82.02513,27.9251],[81.9913,27.92916],[81.96832,27.92912],[81.96179,27.92332],[81.95939,27.91648],[81.95093,27.91036],[81.9475,27.90334],[81.93822,27.89398],[81.93803,27.88788],[81.92984,27.88265],[81.92523,27.87533],[81.92585,27.85983],[81.90012,27.85358],[81.88496,27.85695],[81.87762,27.86612],[81.83957,27.89137],[81.83409,27.89723],[81.82106,27.90368],[81.80494,27.90332],[81.69844,27.98819],[81.64376,27.99362],[81.63885,27.99734],[81.6273,28.00193],[81.62399,28.0016],[81.61807,28.00946],[81.59604,28.02127],[81.58448,28.02547],[81.54742,28.0493],[81.47828,28.08271],[81.47981,28.1103],[81.48401,28.11857],[81.47368,28.12545],[81.46769,28.12724],[81.44993,28.14085],[81.45023,28.15089],[81.44608,28.1559],[81.44668,28.16102],[81.41769,28.17374],[81.39061,28.17373],[81.37351,28.1773],[81.37228,28.17655],[81.37449,28.1749],[81.36771,28.16754],[81.36702,28.16309],[81.36958,28.16034],[81.37636,28.15914],[81.37758,28.15662],[81.37623,28.14996],[81.37108,28.14349],[81.36717,28.14149],[81.33477,28.14029],[81.31803,28.13367],[81.31536,28.13722],[81.31826,28.14519],[81.32806,28.14808],[81.32038,28.16028],[81.31206,28.1559],[81.31014,28.16039],[81.302,28.16476],[81.30268,28.16768],[81.32135,28.16889],[81.32466,28.17529],[81.31844,28.18251],[81.32094,28.19755],[81.29947,28.22009],[81.29198,28.22292],[81.28601,28.22872],[81.23264,28.28915],[81.23448,28.32474],[81.21914,28.34547],[81.21329,28.35851],[81.2106,28.36083],[81.11632,28.37713],[81.07974,28.38506],[81.04699,28.41043],[81.03567,28.41358],[81.03383,28.3989],[81.01753,28.41547],[81.0342,28.42818],[81.02942,28.43879],[81.01928,28.43147],[81.01261,28.43782],[81.01676,28.45129],[80.99889,28.45306],[80.98895,28.44154],[80.97765,28.44242],[80.97883,28.43415],[80.96497,28.43791],[80.96787,28.44303],[80.96464,28.44484],[80.98017,28.45524],[80.96699,28.45715],[80.96416,28.44962],[80.95173,28.44764],[80.95143,28.45578],[80.94437,28.45493],[80.93202,28.45889],[80.94555,28.46626],[80.94257,28.46889],[80.93237,28.46349],[80.93052,28.45777],[80.91722,28.46005],[80.91954,28.46423],[80.91415,28.46843],[80.91541,28.45764],[80.90556,28.46637],[80.90153,28.48611],[80.90673,28.49014],[80.90874,28.49811],[80.90005,28.50109],[80.89609,28.50702],[80.88542,28.50774],[80.87543,28.51071],[80.86152,28.50439],[80.86595,28.48958],[80.85563,28.49756],[80.84454,28.49575],[80.84386,28.49978],[80.83003,28.5121],[80.81545,28.52071],[80.79968,28.52123],[80.78919,28.52452],[80.78461,28.52936],[80.7896,28.54339],[80.78285,28.54669],[80.76971,28.54995],[80.7686,28.56591],[80.7383,28.57483],[80.73846,28.56639],[80.7244,28.57529],[80.71453,28.5684],[80.70363,28.57922],[80.69045,28.5876],[80.69575,28.60349],[80.67747,28.60445],[80.67974,28.62109],[80.67084,28.62794],[80.66763,28.64219],[80.6513,28.63407],[80.64142,28.64332],[80.63329,28.63748],[80.61161,28.63952],[80.6062,28.65243],[80.58945,28.64804],[80.59743,28.65605],[80.58024,28.66146],[80.59052,28.68004],[80.56866,28.68813],[80.55026,28.69174],[80.53953,28.69076],[80.50593,28.67084],[80.50338,28.66514],[80.51138,28.62323],[80.51477,28.61585],[80.52154,28.57675],[80.52556,28.57319],[80.52983,28.57491],[80.5306,28.57262],[80.52278,28.553],[80.51974,28.55448],[80.51762,28.55196],[80.51501,28.55754],[80.50576,28.56849],[80.49961,28.56973],[80.4937,28.57656],[80.48382,28.58228],[80.48144,28.58532],[80.47422,28.58312],[80.46868,28.58353],[80.47111,28.58481],[80.47204,28.59104],[80.4603,28.61439],[80.46151,28.6155],[80.46345,28.61455],[80.4637,28.61608],[80.45943,28.61771],[80.46139,28.61897],[80.46065,28.62043],[80.45194,28.62886],[80.44272,28.62881],[80.43599,28.63665],[80.42334,28.63777],[80.42291,28.63961],[80.42082,28.63989],[80.41434,28.63947],[80.40435,28.63495],[80.38582,28.63009],[80.37885,28.63036],[80.37635,28.62894],[80.37433,28.63037],[80.37082,28.62956],[80.37086,28.63245],[80.36741,28.63492],[80.361,28.63526],[80.35709,28.64149],[80.36027,28.64581],[80.35593,28.64686],[80.34553,28.65532],[80.32573,28.66648],[80.32509,28.67228],[80.32114,28.68161],[80.32272,28.68691],[80.32101,28.694],[80.31712,28.70014],[80.30796,28.705],[80.29918,28.70672],[80.29786,28.70971],[80.29348,28.71174],[80.27915,28.70972],[80.25652,28.72925],[80.26255,28.73291],[80.26557,28.74361],[80.25658,28.75425],[80.25105,28.75752],[80.24347,28.75579],[80.23692,28.75714],[80.23477,28.75943],[80.21599,28.75557],[80.17069,28.78282],[80.13819,28.81383],[80.11805,28.82898],[80.07482,28.82449],[80.06536,28.8369],[80.06292,28.83467],[80.05979,28.82539],[80.05179,28.82037],[80.05922,28.8168],[80.0681,28.80284],[80.06488,28.79443],[80.05867,28.78839],[80.06174,28.78319],[80.05545,28.78125],[80.05227,28.77828],[80.03013,28.74863],[79.95416,28.72283],[79.94549,28.73058],[79.94369,28.73511],[79.94648,28.74236],[79.94359,28.74862],[79.93863,28.75038],[79.93872,28.75313],[79.94315,28.75798],[79.9432,28.75989],[79.93258,28.76272],[79.93323,28.76428],[79.93057,28.76802],[79.92734,28.76871],[79.92699,28.77097],[79.92408,28.77316],[79.92852,28.77902],[79.93982,28.78772],[79.92652,28.79001],[79.92378,28.78671],[79.91884,28.7865],[79.91935,28.78412],[79.91781,28.78236],[79.90982,28.7854],[79.90647,28.78196],[79.90136,28.78198],[79.89728,28.78623],[79.88426,28.79],[79.8833,28.79454],[79.87306,28.79728],[79.87226,28.79936],[79.87473,28.80236],[79.87007,28.80576],[79.8696,28.80834],[79.87348,28.80939],[79.87849,28.81483],[79.90554,28.80299],[79.91552,28.80427],[79.91078,28.8099],[79.9107,28.81247],[79.91453,28.81848],[79.89407,28.8204],[79.89404,28.82379],[79.89199,28.82561],[79.89391,28.83146],[79.88905,28.83404],[79.88822,28.83656],[79.88212,28.83693],[79.8834,28.83398],[79.87857,28.83356],[79.87961,28.83241],[79.87847,28.83031],[79.87573,28.83311],[79.87256,28.83156],[79.87435,28.83424],[79.87337,28.8363],[79.87461,28.83634],[79.87166,28.84014],[79.87025,28.83845],[79.86719,28.83954],[79.8647,28.83777],[79.86319,28.84022],[79.86266,28.83706],[79.85888,28.8338],[79.86061,28.83304],[79.85898,28.83166],[79.86142,28.83053],[79.85772,28.83064],[79.85387,28.82699],[79.85102,28.82855],[79.85083,28.82693],[79.85371,28.82603],[79.85407,28.82411],[79.84863,28.82515],[79.8463,28.82318],[79.84785,28.81953],[79.84661,28.81744],[79.85212,28.81566],[79.85294,28.81373],[79.84659,28.81044],[79.85076,28.81045],[79.85166,28.80883],[79.85031,28.80601],[79.85289,28.80613],[79.85059,28.80333],[79.85237,28.8019],[79.84934,28.79964],[79.84547,28.80075],[79.84543,28.80483],[79.83935,28.80308],[79.84033,28.80195],[79.83843,28.80122],[79.83986,28.80017],[79.83832,28.79753],[79.83433,28.79859],[79.83308,28.79682],[79.83081,28.79773],[79.82693,28.79497],[79.82432,28.79829],[79.82289,28.79563],[79.81995,28.79611],[79.81457,28.80261],[79.81281,28.80196],[79.81454,28.79889],[79.81394,28.79688],[79.80876,28.80001],[79.80673,28.80318],[79.80723,28.80566],[79.81645,28.81692],[79.8199,28.81216],[79.81897,28.80547],[79.82429,28.80727],[79.82604,28.81493],[79.82945,28.81814],[79.82915,28.82139],[79.83245,28.82354],[79.83717,28.83235],[79.83131,28.83076],[79.8279,28.83695],[79.82382,28.83901],[79.82727,28.84167],[79.83087,28.83778],[79.83678,28.83992],[79.83634,28.84294],[79.83245,28.84584],[79.82978,28.85324],[79.83074,28.85523],[79.83288,28.85532],[79.838,28.84832],[79.84063,28.84768],[79.84534,28.85111],[79.84505,28.85537],[79.8496,28.8593],[79.84577,28.86354],[79.84667,28.86874],[79.84468,28.87503],[79.84101,28.87602],[79.83538,28.87489],[79.83573,28.87143],[79.83308,28.87071],[79.82839,28.87782],[79.8293,28.88445],[79.81802,28.88781],[79.81383,28.88656],[79.8147,28.88369],[79.7998,28.88748],[79.79509,28.88526],[79.78861,28.87269],[79.78629,28.87341],[79.78344,28.87125],[79.76675,28.87493],[79.75925,28.87085],[79.74907,28.87177],[79.74565,28.85992],[79.73825,28.85876],[79.73652,28.85626],[79.72637,28.86097],[79.72271,28.85523],[79.7234,28.85289],[79.72058,28.85027],[79.71991,28.84567],[79.71855,28.84881],[79.70962,28.8511],[79.70625,28.84445],[79.70752,28.84417],[79.70667,28.84101],[79.69292,28.84591],[79.68996,28.84533],[79.692,28.84788],[79.68316,28.84997],[79.68231,28.85347],[79.68367,28.85532],[79.68189,28.85679],[79.67738,28.85927],[79.67212,28.85801],[79.66744,28.8597],[79.66342,28.86194],[79.66571,28.86557],[79.65605,28.86977],[79.65557,28.86841],[79.65349,28.86921],[79.64745,28.86702],[79.64486,28.86343],[79.63601,28.86681],[79.63092,28.86112],[79.62613,28.86662],[79.62138,28.86431],[79.61331,28.85283],[79.6039,28.85683],[79.60339,28.85472],[79.59712,28.85125],[79.5936,28.85204],[79.59155,28.8495],[79.58751,28.84999],[79.58436,28.84627],[79.57565,28.85045],[79.57349,28.85465],[79.58097,28.86616],[79.58019,28.87115],[79.58427,28.87918],[79.57835,28.88349],[79.57917,28.88618],[79.57755,28.88864],[79.57124,28.88646],[79.56999,28.88775],[79.57062,28.89253],[79.55648,28.89926],[79.55275,28.8958],[79.55494,28.89376],[79.54945,28.89008],[79.54791,28.89097],[79.54595,28.88558],[79.54219,28.88453],[79.54046,28.88193],[79.54166,28.88043],[79.53716,28.87694],[79.53304,28.86971],[79.52351,28.86712],[79.52178,28.86474],[79.5114,28.86722],[79.50992,28.86453],[79.50252,28.87055],[79.49683,28.87289],[79.47873,28.87114],[79.47892,28.86728],[79.47722,28.86457],[79.47057,28.86541],[79.46611,28.86777],[79.46194,28.86676],[79.45164,28.87163],[79.44979,28.87079],[79.45019,28.86772],[79.44584,28.8675],[79.44518,28.86383],[79.44172,28.86166],[79.42557,28.86642],[79.42501,28.87366],[79.42787,28.87653],[79.43099,28.8868],[79.42773,28.89298],[79.42294,28.89349],[79.42466,28.89743],[79.4222,28.90134],[79.42532,28.90522],[79.42428,28.90841],[79.42692,28.91128],[79.42511,28.91213],[79.42764,28.91269],[79.42539,28.91324],[79.42513,28.91437],[79.42692,28.91442],[79.42479,28.91545],[79.427,28.91533],[79.42487,28.91675],[79.42689,28.91618],[79.42795,28.91978],[79.42531,28.92296],[79.41584,28.92787],[79.41889,28.93298],[79.41901,28.94003],[79.41558,28.94137],[79.41583,28.94382],[79.40803,28.95193],[79.40615,28.95222],[79.4063,28.95001],[79.40433,28.95041],[79.40471,28.94921],[79.40281,28.95001],[79.39065,28.94739],[79.3853,28.95177],[79.38631,28.95319],[79.3821,28.96224],[79.38175,28.9698],[79.37714,28.97139],[79.37769,28.9757],[79.37239,28.9846],[79.37236,28.98747],[79.36763,28.98664],[79.36211,28.98145],[79.36309,28.97798],[79.36099,28.97193],[79.36517,28.97074],[79.3647,28.96807],[79.35627,28.9677],[79.33722,28.97213],[79.32146,28.9718],[79.3119,28.97706],[79.31106,28.97526],[79.31265,28.97498],[79.30986,28.97172],[79.31249,28.97131],[79.31268,28.96897],[79.31092,28.96999],[79.31033,28.96799],[79.30747,28.96787],[79.30727,28.96647],[79.29885,28.9728],[79.29233,28.97381],[79.25913,28.9924],[79.24775,29.00334],[79.25102,29.01024],[79.24495,29.01008],[79.23155,29.01512],[79.22203,29.01945],[79.21173,29.02756],[79.20365,29.02074],[79.19741,29.02138],[79.19426,29.01972],[79.19077,29.02318],[79.19089,29.01895],[79.19384,29.01559],[79.18595,29.01764],[79.18267,29.01605],[79.18094,29.01288],[79.17106,29.01187],[79.17582,29.01574],[79.16843,29.01942],[79.16528,29.01779],[79.16589,29.02024],[79.1622,29.02409],[79.16235,29.02921],[79.16497,29.02884],[79.1644,29.03222],[79.16751,29.0322],[79.16884,29.03577],[79.168,29.03826],[79.17085,29.03942],[79.16916,29.04238],[79.17192,29.04264],[79.1718,29.04506],[79.17511,29.04625],[79.17029,29.04861],[79.168,29.04738],[79.16191,29.04896],[79.15332,29.05686],[79.14876,29.05845],[79.14733,29.06226],[79.14513,29.06296],[79.14587,29.06457],[79.1425,29.06695],[79.14422,29.07203],[79.14181,29.07763],[79.14212,29.08194],[79.14342,29.08291],[79.14327,29.08668],[79.14996,29.09176],[79.15002,29.09451],[79.15153,29.0954],[79.14832,29.09914],[79.15318,29.10155],[79.15084,29.10341],[79.15245,29.10712],[79.15127,29.11327],[79.1535,29.11518],[79.15017,29.11867],[79.1434,29.12027],[79.14082,29.12226],[79.14189,29.12433],[79.12687,29.13268],[79.12492,29.13306],[79.12273,29.12734],[79.11946,29.12577],[79.1119,29.12792],[79.10139,29.1341],[79.09057,29.14339],[79.07487,29.15164],[79.05942,29.15542],[79.0537,29.15487],[79.0505,29.15693],[79.04538,29.16418],[79.03944,29.16857],[79.03584,29.16939],[79.03213,29.16843],[79.02912,29.16413],[79.03237,29.15913],[79.03937,29.15841],[79.03595,29.15309],[79.0374,29.14482],[79.03461,29.14407],[79.02978,29.14697],[79.02382,29.15555],[79.01908,29.15572],[79.01782,29.15384],[79.02111,29.14583],[79.01494,29.13395],[79.01692,29.13077],[79.01921,29.12934],[79.02732,29.13244],[79.03175,29.1281],[79.04063,29.12767],[79.03456,29.1177],[79.0267,29.11242],[79.01419,29.11662],[79.00817,29.11191],[79.00625,29.11828],[79.0035,29.11921],[79.00171,29.12226],[79.00424,29.1259],[78.99665,29.13012],[78.99128,29.13068],[78.98984,29.13949],[78.98234,29.14305],[78.97676,29.13855],[78.97755,29.1366],[78.97468,29.13595],[78.97492,29.13145],[78.97287,29.12691],[78.96417,29.1305],[78.95645,29.11989],[78.94375,29.12751],[78.94286,29.12617],[78.93464,29.12964],[78.92702,29.11813],[78.90633,29.12501],[78.90718,29.12741],[78.91876,29.13553],[78.91621,29.13773],[78.91623,29.14067],[78.91105,29.14443],[78.91205,29.14742],[78.91548,29.14994],[78.91545,29.15245],[78.91287,29.15438],[78.90637,29.15174],[78.90909,29.15732],[78.90801,29.16069],[78.90905,29.16354],[78.90167,29.16956],[78.90875,29.17856],[78.90683,29.18006],[78.90347,29.17824],[78.90317,29.18091],[78.89849,29.18181],[78.89457,29.18576],[78.89974,29.18588],[78.89636,29.19358],[78.89428,29.19189],[78.89006,29.19221],[78.88675,29.19508],[78.89128,29.19808],[78.89062,29.20118],[78.8855,29.20317],[78.88104,29.19992],[78.87522,29.20517],[78.8751,29.20651],[78.87828,29.20636],[78.88328,29.21131],[78.87854,29.21426],[78.87812,29.21571],[78.88052,29.217],[78.87947,29.21881],[78.87583,29.21902],[78.87176,29.22257],[78.87648,29.22553],[78.87423,29.22678],[78.87448,29.23025],[78.87261,29.23031],[78.87264,29.22759],[78.87069,29.22725],[78.86326,29.23031],[78.86304,29.23209],[78.85859,29.23299],[78.86217,29.23943],[78.85834,29.24184],[78.85537,29.23852],[78.85107,29.23682],[78.84954,29.23271],[78.84554,29.23677],[78.84337,29.23484],[78.83946,29.23679],[78.8413,29.23969],[78.83818,29.24109],[78.83816,29.24255],[78.83231,29.23675],[78.82787,29.23531],[78.82571,29.23611],[78.82243,29.23332],[78.8199,29.23374],[78.82008,29.23214],[78.80737,29.23668],[78.79841,29.24442],[78.79324,29.24453],[78.79077,29.2469],[78.79042,29.25017],[78.79189,29.25227],[78.78975,29.25496],[78.78815,29.25337],[78.78509,29.25365],[78.77383,29.26199],[78.77019,29.26704],[78.77321,29.27113],[78.76502,29.27931],[78.73614,29.29676],[78.73452,29.29957],[78.72843,29.29922],[78.72675,29.2978],[78.72269,29.29932],[78.71837,29.30342],[78.71859,29.30664],[78.72299,29.30345],[78.72719,29.30551],[78.73445,29.30294],[78.73518,29.30654],[78.73134,29.31352],[78.73209,29.31756],[78.73577,29.31853],[78.73367,29.3219],[78.74067,29.32042],[78.74068,29.31579],[78.74508,29.31794],[78.75032,29.31735],[78.74955,29.32324],[78.75369,29.32732],[78.75376,29.33122],[78.76081,29.33293],[78.76655,29.3374],[78.77431,29.33198],[78.77333,29.32849],[78.77748,29.32573],[78.78525,29.32715],[78.78679,29.32611],[78.79052,29.33059],[78.79345,29.32817],[78.79309,29.32683],[78.7954,29.32501],[78.79054,29.31889],[78.78955,29.3153],[78.79591,29.31177],[78.79545,29.31471],[78.7982,29.31901],[78.80472,29.31925],[78.8012,29.32524],[78.80286,29.33125],[78.7999,29.33458],[78.81051,29.34012],[78.82215,29.35914],[78.82473,29.36713],[78.83026,29.36801],[78.82586,29.36555],[78.8276,29.36377],[78.82636,29.36143],[78.82834,29.35967],[78.82745,29.35421],[78.83074,29.35149],[78.83576,29.35046],[78.84024,29.34597],[78.84558,29.34419],[78.84987,29.34482],[78.85598,29.34972],[78.85113,29.35552],[78.85193,29.36033],[78.86032,29.3582],[78.87871,29.36601],[78.87958,29.36936],[78.87573,29.37198],[78.87774,29.37497],[78.88734,29.37305],[78.89216,29.38096],[78.90219,29.38495],[78.90507,29.38951],[78.91179,29.39375],[78.91148,29.39961],[78.91838,29.40351],[78.91875,29.40988],[78.92398,29.41881],[78.92571,29.42595],[78.93831,29.43401],[78.94312,29.43469],[78.94024,29.43526],[78.94038,29.43756],[78.94233,29.43857],[78.93634,29.43822],[78.92534,29.43383],[78.91872,29.43426],[78.9002,29.44149],[78.88087,29.44338],[78.84108,29.45715],[78.82274,29.45975],[78.81056,29.46581],[78.79967,29.46457],[78.77757,29.47714],[78.75903,29.49064],[78.75655,29.49459],[78.75359,29.49619],[78.74919,29.49596],[78.74501,29.50078],[78.73819,29.50019],[78.73273,29.50199],[78.73059,29.50038],[78.72009,29.50217],[78.71121,29.50036],[78.70626,29.50268],[78.69972,29.50621],[78.65047,29.546],[78.63851,29.54666],[78.62425,29.55654],[78.61773,29.55803],[78.58036,29.58637],[78.56507,29.60109],[78.54424,29.62555],[78.54081,29.62709],[78.53267,29.63875],[78.52149,29.65782],[78.52145,29.69347],[78.51871,29.70177],[78.51654,29.7194],[78.5102,29.72661],[78.50096,29.7329],[78.48782,29.73837],[78.47369,29.73988],[78.45564,29.74515],[78.44514,29.75038],[78.42851,29.76446],[78.40906,29.76338],[78.39276,29.76739],[78.34929,29.78848],[78.33566,29.79661],[78.33316,29.79267],[78.33074,29.79318],[78.32439,29.78986],[78.3211,29.7855],[78.3129,29.77941],[78.30952,29.77996],[78.30687,29.77551],[78.30363,29.77476],[78.30061,29.77104],[78.30096,29.76825],[78.29268,29.75906],[78.28453,29.76178],[78.28095,29.75576],[78.2683,29.74645],[78.26703,29.74284],[78.26219,29.74355],[78.25975,29.73834],[78.25565,29.73825],[78.25009,29.73426],[78.24592,29.73452],[78.24023,29.74143],[78.22958,29.73669],[78.22165,29.74066],[78.20392,29.73727],[78.20016,29.73029],[78.20358,29.72826],[78.20201,29.71443],[78.19603,29.69268],[78.1884,29.69229],[78.18051,29.69683],[78.17162,29.69157],[78.13758,29.66354],[78.13359,29.6595],[78.13054,29.65254],[78.11929,29.64997],[78.10403,29.64123],[78.0934,29.64045],[78.08146,29.63514],[78.08669,29.62503],[78.08188,29.62514],[78.06855,29.63042],[78.05747,29.63069],[78.05711,29.62669],[78.04885,29.61461],[78.04649,29.61607],[78.03432,29.61038],[78.03307,29.61161],[78.03109,29.60832],[78.01828,29.5982],[78.01524,29.58725],[78.0216,29.58085],[78.0008,29.58621],[77.99617,29.59146],[77.99517,29.5958],[77.99353,29.59122],[77.98645,29.58438],[77.98272,29.58356],[77.97997,29.58515],[77.97493,29.58502],[77.97311,29.58031],[77.96889,29.58141],[77.9671,29.58014],[77.94034,29.59271],[77.9333,29.60051],[77.94277,29.60865],[77.94842,29.61691],[77.96021,29.61165],[77.97769,29.61345],[77.97597,29.61738],[77.97739,29.63125],[77.98379,29.64364],[77.98186,29.64512],[77.97945,29.64266],[77.96645,29.65014],[77.96955,29.65623],[77.96996,29.66643],[77.94937,29.6798],[77.94744,29.68309],[77.95093,29.68736],[77.94589,29.68996],[77.94567,29.69182],[77.93989,29.69608],[77.95098,29.70159],[77.94957,29.70413],[77.95302,29.70735],[77.94702,29.71248],[77.94094,29.71084],[77.93815,29.71448],[77.93457,29.71112],[77.92644,29.71422],[77.91979,29.705],[77.91692,29.70556],[77.91577,29.70221],[77.92007,29.69929],[77.91396,29.69848],[77.91253,29.69592],[77.90207,29.70119],[77.89661,29.7022],[77.8945,29.69973],[77.8909,29.69886],[77.88265,29.70243],[77.87901,29.70024],[77.87948,29.69291],[77.87471,29.68729],[77.8696,29.68899],[77.8656,29.68781],[77.86281,29.68945],[77.8557,29.68006],[77.85373,29.68154],[77.85025,29.67998],[77.84709,29.67541],[77.8431,29.67522],[77.83862,29.67049],[77.83678,29.67171],[77.83568,29.66956],[77.83195,29.67041],[77.83005,29.6683],[77.81534,29.67831],[77.80924,29.67986],[77.79905,29.68619],[77.81048,29.70237],[77.8026,29.70339],[77.79185,29.70994],[77.78558,29.71057],[77.78334,29.7094],[77.77872,29.71068],[77.77172,29.71385],[77.76973,29.7176],[77.78268,29.73624],[77.76953,29.74534],[77.76931,29.75059],[77.77052,29.75022],[77.78036,29.76502],[77.77312,29.7687],[77.77786,29.77498],[77.77238,29.78],[77.77396,29.78401],[77.77219,29.78641],[77.77467,29.79102],[77.76545,29.79592],[77.76322,29.80263],[77.75158,29.81068],[77.75608,29.81284],[77.75899,29.8185],[77.75399,29.8208],[77.7557,29.8253],[77.74022,29.83473],[77.74404,29.83988],[77.74145,29.84671],[77.74389,29.84758],[77.74189,29.85185],[77.72657,29.85424],[77.72567,29.85613],[77.72344,29.85505],[77.71652,29.86319],[77.71864,29.86545],[77.71786,29.86679],[77.7143,29.86945],[77.71521,29.87299],[77.72077,29.87616],[77.71695,29.87847],[77.71471,29.88408],[77.71602,29.88588],[77.71846,29.8874],[77.72275,29.88442],[77.72412,29.88678],[77.72328,29.88854],[77.72507,29.89031],[77.73186,29.8928],[77.72856,29.89755],[77.72927,29.90051],[77.73392,29.89964],[77.73367,29.90157],[77.7386,29.90321],[77.73653,29.90666],[77.74778,29.91117],[77.74298,29.9181],[77.74289,29.92493],[77.73047,29.9317],[77.74062,29.94219],[77.74299,29.94094],[77.743,29.94381],[77.74723,29.94664],[77.74492,29.94784],[77.74836,29.95164],[77.73701,29.95376],[77.7333,29.95593],[77.74062,29.96956],[77.7402,29.97529],[77.74603,29.98055],[77.74371,29.98336],[77.74768,29.986],[77.75034,29.98587],[77.75527,29.99198],[77.76038,29.99511],[77.75538,29.999],[77.76423,30.00445],[77.76196,30.0093],[77.77168,30.01498],[77.77391,30.01475],[77.77581,30.01797],[77.78198,30.01863],[77.78276,30.02385],[77.78549,30.02789],[77.77938,30.03067],[77.78137,30.0335],[77.77005,30.04255],[77.77114,30.04802],[77.77482,30.05522],[77.78113,30.06048],[77.79084,30.07502],[77.79582,30.07986],[77.79477,30.08125],[77.79845,30.08355],[77.79675,30.08528],[77.7997,30.08719],[77.79917,30.09047],[77.8012,30.09548],[77.81045,30.09272],[77.82167,30.08568],[77.82805,30.08592],[77.83428,30.09052],[77.83303,30.09458],[77.83661,30.09844],[77.83682,30.10352],[77.84161,30.10265],[77.84936,30.1047],[77.86042,30.11319],[77.86609,30.11913],[77.86842,30.12683],[77.87688,30.13923],[77.88118,30.15073],[77.88893,30.15732],[77.90028,30.17259],[77.91202,30.18253],[77.91175,30.18665],[77.91483,30.19156],[77.91393,30.19647],[77.91802,30.20307],[77.91894,30.21128],[77.93213,30.21439],[77.9348,30.21928],[77.93793,30.22084],[77.93839,30.22434],[77.94116,30.22788],[77.94602,30.23036],[77.94692,30.23406],[77.958,30.24224],[77.9617,30.24237],[77.9565,30.24545],[77.95151,30.24528],[77.94982,30.24231],[77.94413,30.23925],[77.94147,30.23979],[77.93822,30.24384],[77.93699,30.24916],[77.91089,30.25699],[77.894,30.26537],[77.88574,30.26698],[77.88166,30.26227],[77.87958,30.26195],[77.86933,30.26611],[77.86567,30.26582],[77.85869,30.27141],[77.84653,30.27164],[77.84717,30.27659],[77.84217,30.27639],[77.84075,30.27376],[77.83902,30.27453],[77.83283,30.28018],[77.79424,30.29716],[77.78571,30.30298],[77.78425,30.30565],[77.76578,30.31415],[77.76116,30.31829],[77.74701,30.3201],[77.73209,30.32809],[77.72185,30.33021],[77.71355,30.3399],[77.70978,30.34161],[77.70897,30.345],[77.70608,30.34707],[77.70224,30.35562],[77.69472,30.36574],[77.6904,30.37595],[77.68607,30.37925],[77.6831,30.37646],[77.67808,30.37566],[77.67623,30.38032],[77.67655,30.38778],[77.67242,30.39047],[77.65973,30.39056],[77.65665,30.40094],[77.65279,30.40122],[77.64726,30.40473],[77.6409,30.40279],[77.63591,30.39901],[77.62925,30.3979],[77.62552,30.40175],[77.62504,30.40453],[77.62289,30.40519],[77.61849,30.40238],[77.60505,30.40171],[77.60288,30.40293],[77.6017,30.3997]],[[78.5013,25.17063],[78.50842,25.17793],[78.51559,25.1809],[78.52963,25.18023],[78.52723,25.17718],[78.51298,25.17024],[78.50306,25.1632],[78.49665,25.15368],[78.49426,25.15265],[78.49295,25.15532],[78.5013,25.17063]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-WB","area_level":"State","area_name":"West Bengal","geometry_source":"SOI_States","same_as":"LGD/19/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[88.01734,21.56009],[88.01728,21.56222],[88.01715,21.56263],[88.01685,21.56295],[88.01633,21.56292],[88.01591,21.56262],[88.01555,21.56216],[88.0149,21.56089],[88.0141,21.55997],[88.01362,21.55992],[88.01323,21.56013],[88.01248,21.56032],[88.01153,21.56013],[88.01037,21.5593],[88.01018,21.55899],[88.00997,21.55823],[88.00964,21.55612],[88.00955,21.55494],[88.00957,21.55418],[88.00979,21.55314],[88.01012,21.55236],[88.01049,21.55181],[88.01087,21.55057],[88.01171,21.54863],[88.01212,21.54793],[88.01281,21.54721],[88.01375,21.54684],[88.01493,21.54682],[88.01547,21.54696],[88.01595,21.54729],[88.01837,21.55112],[88.01856,21.55167],[88.01879,21.55349],[88.01868,21.55556],[88.01813,21.55752],[88.01743,21.55949],[88.01734,21.56009]]],[[[88.17272,21.58416],[88.16992,21.58484],[88.16906,21.58595],[88.16779,21.58674],[88.16593,21.59031],[88.16602,21.59691],[88.16655,21.59774],[88.16646,21.59924],[88.16724,21.60198],[88.16714,21.60296],[88.16546,21.60148],[88.1643,21.59924],[88.16384,21.59656],[88.1638,21.58703],[88.16498,21.58403],[88.16715,21.58201],[88.16924,21.57662],[88.17128,21.5675],[88.17211,21.55942],[88.17406,21.55353],[88.17554,21.55137],[88.1758,21.54965],[88.17817,21.54677],[88.18748,21.54237],[88.19074,21.54202],[88.19401,21.54074],[88.19697,21.54097],[88.19933,21.54213],[88.20406,21.54604],[88.2044,21.54702],[88.202,21.54784],[88.19982,21.54716],[88.19794,21.54595],[88.19722,21.54621],[88.19683,21.54781],[88.19585,21.54754],[88.19454,21.54796],[88.19375,21.54899],[88.19353,21.55102],[88.19247,21.55275],[88.19214,21.55428],[88.19117,21.5548],[88.18859,21.55785],[88.18785,21.56308],[88.18748,21.56408],[88.18636,21.56491],[88.18751,21.56792],[88.18667,21.56913],[88.18669,21.5712],[88.18548,21.57287],[88.18575,21.57498],[88.18492,21.57657],[88.18641,21.58072],[88.18615,21.58195],[88.1848,21.58323],[88.18075,21.58372],[88.17959,21.5848],[88.17513,21.58406],[88.17272,21.58416]]],[[[88.50859,21.59216],[88.50349,21.59513],[88.5006,21.59803],[88.50019,21.59953],[88.49844,21.60102],[88.49624,21.59925],[88.49591,21.59762],[88.4935,21.59473],[88.49377,21.59352],[88.4929,21.59317],[88.49049,21.58893],[88.48801,21.58162],[88.48695,21.57981],[88.48765,21.57948],[88.48715,21.57784],[88.4883,21.57539],[88.48829,21.57405],[88.48739,21.56984],[88.48504,21.56357],[88.48538,21.56258],[88.48477,21.5522],[88.4864,21.54917],[88.48996,21.54696],[88.49265,21.54794],[88.49593,21.54722],[88.49666,21.54789],[88.49746,21.54757],[88.49839,21.54837],[88.49925,21.54793],[88.5,21.54629],[88.49987,21.5429],[88.49811,21.54314],[88.49691,21.54241],[88.49715,21.53985],[88.49953,21.53775],[88.50091,21.53761],[88.50633,21.53416],[88.50858,21.5339],[88.5092,21.53302],[88.511,21.53254],[88.51136,21.53176],[88.51232,21.53168],[88.51308,21.53263],[88.51449,21.53036],[88.51553,21.52969],[88.52104,21.52773],[88.53079,21.52708],[88.53556,21.52759],[88.53837,21.53036],[88.54238,21.53303],[88.54506,21.53305],[88.54786,21.53715],[88.54687,21.53857],[88.544,21.53921],[88.53889,21.54311],[88.53759,21.54681],[88.53708,21.54622],[88.53685,21.54758],[88.5353,21.54991],[88.53512,21.5516],[88.53394,21.55378],[88.53459,21.55523],[88.53367,21.55629],[88.53406,21.55793],[88.53289,21.56006],[88.53276,21.56175],[88.53065,21.56356],[88.53172,21.56458],[88.53259,21.56747],[88.53383,21.56942],[88.53423,21.57079],[88.53395,21.57293],[88.53721,21.5755],[88.5372,21.57801],[88.53373,21.58264],[88.53196,21.58396],[88.52786,21.58537],[88.52039,21.58666],[88.5102,21.59189],[88.50859,21.59216]]],[[[88.94721,21.59571],[88.94744,21.59597],[88.94782,21.59628],[88.94818,21.59692],[88.9482,21.59754],[88.94811,21.59849],[88.94792,21.59909],[88.94766,21.59947],[88.94734,21.59983],[88.94716,21.60028],[88.94687,21.6007],[88.94665,21.60072],[88.94612,21.60056],[88.9453,21.60006],[88.94494,21.59991],[88.94468,21.59954],[88.94468,21.59927],[88.94482,21.59897],[88.94509,21.59857],[88.94524,21.59823],[88.94523,21.59776],[88.94561,21.59654],[88.94621,21.59578],[88.94649,21.59552],[88.94692,21.59545],[88.94721,21.59571]]],[[[88.83401,21.60804],[88.83301,21.60906],[88.83227,21.60879],[88.83167,21.60418],[88.82979,21.60318],[88.83061,21.5972],[88.82945,21.59458],[88.82997,21.59307],[88.82893,21.58602],[88.82924,21.58235],[88.82763,21.57963],[88.82772,21.57859],[88.82682,21.57788],[88.8276,21.57509],[88.82643,21.57451],[88.82601,21.57278],[88.82613,21.57194],[88.82828,21.57261],[88.82975,21.57188],[88.82898,21.57052],[88.82952,21.5662],[88.82677,21.56574],[88.82755,21.56356],[88.82982,21.56022],[88.83038,21.55634],[88.82994,21.55469],[88.83116,21.55381],[88.83039,21.55288],[88.83118,21.55117],[88.83385,21.54979],[88.8357,21.55017],[88.83758,21.54926],[88.83969,21.54909],[88.83974,21.54785],[88.84234,21.54779],[88.84197,21.54616],[88.8426,21.54557],[88.84808,21.54245],[88.84884,21.54058],[88.85226,21.53987],[88.85577,21.53661],[88.85744,21.53751],[88.85818,21.53601],[88.86395,21.53637],[88.8665,21.53551],[88.86859,21.53569],[88.8737,21.53458],[88.87485,21.53544],[88.87609,21.5344],[88.87777,21.53493],[88.88142,21.53416],[88.88503,21.53514],[88.8916,21.53803],[88.89632,21.54165],[88.90068,21.54333],[88.90134,21.54461],[88.90599,21.54756],[88.90572,21.55564],[88.90368,21.56137],[88.89745,21.57525],[88.89624,21.57537],[88.89417,21.5791],[88.89189,21.5812],[88.88889,21.58095],[88.88489,21.58306],[88.87993,21.58871],[88.87858,21.58808],[88.87834,21.58954],[88.87586,21.59258],[88.87298,21.59442],[88.87084,21.59494],[88.86923,21.59659],[88.86708,21.59634],[88.86564,21.59729],[88.86182,21.59748],[88.85558,21.5997],[88.84555,21.60209],[88.8378,21.60478],[88.83698,21.60543],[88.83597,21.6079],[88.83401,21.60804]]],[[[89.15105,21.60004],[89.15079,21.60051],[89.15026,21.60097],[89.14948,21.60121],[89.14876,21.60119],[89.14819,21.60099],[89.14713,21.60011],[89.14671,21.60048],[89.1465,21.60048],[89.14636,21.60038],[89.14561,21.59797],[89.1452,21.59721],[89.14458,21.59651],[89.14392,21.596],[89.14313,21.59564],[89.14102,21.59535],[89.14034,21.59551],[89.13975,21.59602],[89.13941,21.5965],[89.13927,21.59705],[89.13939,21.59776],[89.14002,21.59972],[89.14005,21.60033],[89.13974,21.60083],[89.13919,21.60133],[89.13841,21.60153],[89.13701,21.60141],[89.1364,21.60111],[89.13576,21.60059],[89.13549,21.60006],[89.13516,21.59907],[89.13505,21.59778],[89.13519,21.59642],[89.13551,21.59557],[89.13604,21.59483],[89.13771,21.59347],[89.13889,21.59296],[89.14223,21.59247],[89.14334,21.59245],[89.14453,21.59265],[89.14728,21.59351],[89.14869,21.59447],[89.1504,21.59663],[89.15112,21.59867],[89.15123,21.59953],[89.15105,21.60004]]],[[[88.04293,21.69235],[88.04334,21.69249],[88.0436,21.69267],[88.04393,21.69312],[88.04515,21.69543],[88.04594,21.69739],[88.04602,21.69776],[88.04602,21.69813],[88.04578,21.69888],[88.04559,21.69924],[88.04543,21.6994],[88.04517,21.69942],[88.04487,21.69936],[88.04469,21.69925],[88.04451,21.69907],[88.04441,21.69881],[88.04438,21.69867],[88.0444,21.69782],[88.04404,21.69637],[88.04362,21.69552],[88.04265,21.69294],[88.04264,21.6925],[88.04278,21.69236],[88.04293,21.69235]]],[[[88.05241,21.70232],[88.05226,21.70258],[88.05211,21.70268],[88.05197,21.70266],[88.05107,21.70143],[88.05057,21.70084],[88.05017,21.70025],[88.05007,21.70001],[88.04997,21.69934],[88.04994,21.69745],[88.04966,21.6959],[88.0493,21.69502],[88.0493,21.69473],[88.04941,21.69449],[88.04953,21.69447],[88.0497,21.69453],[88.05029,21.69495],[88.05093,21.69559],[88.05133,21.69623],[88.05155,21.69705],[88.0516,21.69744],[88.05153,21.69886],[88.0516,21.69928],[88.05207,21.70017],[88.05258,21.70089],[88.05289,21.70124],[88.05308,21.70155],[88.05316,21.70182],[88.05317,21.70211],[88.053,21.7023],[88.05277,21.70236],[88.05241,21.70232]]],[[[88.04364,21.70059],[88.04411,21.70094],[88.04425,21.70121],[88.04454,21.70155],[88.04468,21.70183],[88.0447,21.70229],[88.04465,21.70247],[88.04396,21.70365],[88.04387,21.70407],[88.04375,21.70504],[88.04348,21.70596],[88.04348,21.70719],[88.04335,21.70814],[88.04307,21.70872],[88.04283,21.70896],[88.04277,21.70897],[88.0427,21.70893],[88.04248,21.70816],[88.04246,21.70657],[88.04238,21.70616],[88.04245,21.70448],[88.04232,21.70344],[88.04236,21.70306],[88.04281,21.70177],[88.04287,21.70136],[88.04297,21.70107],[88.04309,21.70088],[88.04329,21.70069],[88.04343,21.70058],[88.04364,21.70059]]],[[[88.05318,21.70305],[88.05346,21.7031],[88.05357,21.70319],[88.05406,21.70388],[88.05427,21.70433],[88.0544,21.70472],[88.05444,21.70509],[88.05437,21.70634],[88.05446,21.7067],[88.05505,21.70777],[88.05517,21.70813],[88.05528,21.70888],[88.05545,21.70918],[88.05598,21.70975],[88.05625,21.71014],[88.0563,21.71067],[88.05627,21.7109],[88.05618,21.71109],[88.05575,21.71139],[88.05555,21.71144],[88.05423,21.7113],[88.05391,21.71115],[88.05371,21.71088],[88.05362,21.71049],[88.05365,21.70973],[88.05361,21.70955],[88.05356,21.70935],[88.05301,21.70857],[88.05294,21.70824],[88.05311,21.70737],[88.05307,21.70708],[88.0529,21.70659],[88.05235,21.70555],[88.05218,21.70491],[88.05219,21.70416],[88.05237,21.70361],[88.05269,21.70322],[88.05304,21.70306],[88.05318,21.70305]]],[[[88.63505,21.66294],[88.63696,21.66567],[88.63801,21.66607],[88.63852,21.66655],[88.63825,21.66753],[88.63879,21.66928],[88.64098,21.67267],[88.64195,21.67598],[88.6421,21.67821],[88.64257,21.67879],[88.64238,21.67919],[88.64121,21.67963],[88.63723,21.67978],[88.63516,21.67865],[88.63141,21.67445],[88.63088,21.67329],[88.63045,21.67135],[88.63142,21.67067],[88.63018,21.67037],[88.62998,21.66979],[88.62901,21.66487],[88.62847,21.66378],[88.62866,21.66309],[88.62761,21.6606],[88.62706,21.65769],[88.62706,21.65667],[88.62664,21.65569],[88.62749,21.65536],[88.62776,21.65503],[88.62741,21.65444],[88.62812,21.65364],[88.62812,21.65306],[88.62858,21.65145],[88.62936,21.65109],[88.62971,21.65055],[88.63092,21.64967],[88.63158,21.64941],[88.63232,21.65],[88.63369,21.65043],[88.6356,21.65047],[88.6361,21.65087],[88.63564,21.65171],[88.63564,21.65237],[88.63513,21.65306],[88.63497,21.65382],[88.63505,21.65569],[88.63419,21.65699],[88.634,21.65787],[88.63447,21.65926],[88.63568,21.66057],[88.6363,21.66192],[88.63711,21.6629],[88.63719,21.66381],[88.6377,21.66465],[88.6377,21.66545],[88.6363,21.66425],[88.63536,21.6625],[88.63501,21.66235],[88.63505,21.66294]]],[[[88.30938,21.70486],[88.30661,21.70563],[88.30569,21.69959],[88.31129,21.6891],[88.31453,21.68022],[88.3161,21.67237],[88.31611,21.66274],[88.31391,21.65211],[88.30942,21.63963],[88.30745,21.63247],[88.30645,21.61495],[88.3091,21.608],[88.31785,21.60522],[88.32278,21.60781],[88.32691,21.61322],[88.33956,21.61941],[88.34062,21.62307],[88.3443,21.6276],[88.34615,21.63317],[88.34344,21.63759],[88.35046,21.6468],[88.34976,21.64852],[88.34479,21.64921],[88.34621,21.65162],[88.34643,21.65461],[88.34371,21.6619],[88.34472,21.66395],[88.34754,21.66672],[88.35078,21.67262],[88.3516,21.67486],[88.35142,21.67728],[88.35025,21.68046],[88.34338,21.69209],[88.33367,21.69982],[88.32891,21.70209],[88.32453,21.70306],[88.31915,21.70385],[88.31336,21.70371],[88.30938,21.70486]]],[[[88.18242,21.68823],[88.18483,21.68985],[88.1868,21.69165],[88.18878,21.69425],[88.19042,21.69804],[88.19346,21.70142],[88.19753,21.70422],[88.20188,21.70592],[88.20468,21.70739],[88.20631,21.70865],[88.20719,21.70988],[88.20802,21.71209],[88.20825,21.71346],[88.20579,21.71842],[88.2043,21.7229],[88.20402,21.72507],[88.20366,21.72584],[88.20198,21.72453],[88.19961,21.72212],[88.19516,21.71892],[88.19164,21.71562],[88.18948,21.71333],[88.18581,21.70767],[88.1853,21.70653],[88.18512,21.70537],[88.18234,21.69956],[88.18214,21.6979],[88.18154,21.69607],[88.18145,21.69229],[88.18118,21.69126],[88.18142,21.6905],[88.18082,21.68902],[88.18137,21.68826],[88.18242,21.68823]]],[[[88.74978,21.64962],[88.74379,21.65212],[88.7303,21.66409],[88.70778,21.68137],[88.7018,21.68787],[88.69932,21.69528],[88.69826,21.71045],[88.69483,21.71861],[88.69341,21.72066],[88.69251,21.72016],[88.68666,21.68948],[88.68443,21.68431],[88.68726,21.67931],[88.70636,21.66083],[88.71397,21.65127],[88.7175,21.64401],[88.71884,21.63474],[88.7185,21.62661],[88.71749,21.62278],[88.71209,21.61471],[88.70721,21.59015],[88.70859,21.58472],[88.71544,21.57246],[88.72624,21.56664],[88.73869,21.56402],[88.74203,21.56219],[88.74672,21.56514],[88.75974,21.56478],[88.77611,21.56984],[88.77812,21.5749],[88.79481,21.58212],[88.79705,21.58802],[88.80005,21.59124],[88.79723,21.59708],[88.77604,21.61959],[88.77296,21.62577],[88.77157,21.63178],[88.7738,21.64011],[88.77691,21.64346],[88.77466,21.64929],[88.76898,21.65595],[88.75923,21.65246],[88.75242,21.64801],[88.74978,21.64962]]],[[[88.41516,21.72519],[88.41491,21.72675],[88.41221,21.72841],[88.41121,21.73102],[88.40789,21.73459],[88.40165,21.73728],[88.39898,21.74353],[88.40018,21.75169],[88.39583,21.75464],[88.39451,21.75373],[88.39234,21.74287],[88.39095,21.73838],[88.38912,21.73575],[88.38392,21.73231],[88.37213,21.72955],[88.36927,21.72823],[88.36876,21.72698],[88.37005,21.72443],[88.37253,21.72384],[88.3872,21.72635],[88.39593,21.7253],[88.40129,21.72141],[88.40424,21.71663],[88.40392,21.71356],[88.40474,21.71106],[88.40153,21.7019],[88.39564,21.69448],[88.39058,21.69018],[88.3882,21.68961],[88.3824,21.68284],[88.38254,21.66635],[88.38226,21.66428],[88.38094,21.66289],[88.38548,21.65549],[88.38546,21.6524],[88.38813,21.64251],[88.39091,21.64051],[88.3895,21.63946],[88.38893,21.63677],[88.38603,21.63716],[88.38576,21.63244],[88.38698,21.62961],[88.39301,21.62527],[88.39361,21.62354],[88.39151,21.6186],[88.38638,21.61225],[88.38519,21.6119],[88.38483,21.61036],[88.38806,21.60198],[88.39154,21.59935],[88.39322,21.59941],[88.39641,21.59651],[88.39547,21.59506],[88.39694,21.58993],[88.39937,21.59129],[88.40011,21.5901],[88.40734,21.58987],[88.4077,21.5928],[88.40667,21.59401],[88.40846,21.5956],[88.40704,21.60112],[88.4059,21.60233],[88.41177,21.61178],[88.41516,21.61437],[88.4178,21.6147],[88.42318,21.61737],[88.43046,21.61876],[88.43195,21.62045],[88.43225,21.62589],[88.42866,21.63509],[88.41752,21.64503],[88.41191,21.65277],[88.41105,21.65583],[88.4108,21.6663],[88.41426,21.67261],[88.41185,21.67852],[88.41038,21.67946],[88.4117,21.68237],[88.4113,21.68559],[88.41333,21.69293],[88.41961,21.69837],[88.42756,21.70105],[88.42814,21.70251],[88.42458,21.70825],[88.42272,21.71499],[88.42061,21.71734],[88.42168,21.71814],[88.42001,21.72004],[88.41839,21.71932],[88.41724,21.72037],[88.41489,21.72425],[88.41516,21.72519]]],[[[88.38768,21.76279],[88.38542,21.76407],[88.38284,21.7644],[88.37812,21.76642],[88.37029,21.76376],[88.35988,21.76332],[88.35711,21.76215],[88.35314,21.76179],[88.34763,21.76018],[88.34525,21.75809],[88.34367,21.75483],[88.34302,21.7515],[88.34515,21.73775],[88.34815,21.72903],[88.34853,21.72254],[88.34732,21.7197],[88.34592,21.71792],[88.34157,21.71609],[88.33867,21.7139],[88.33844,21.71158],[88.34095,21.70668],[88.34587,21.69998],[88.35037,21.69233],[88.35175,21.69091],[88.35619,21.68808],[88.35707,21.68646],[88.35982,21.68631],[88.36023,21.68572],[88.36173,21.68611],[88.36308,21.68557],[88.36455,21.68658],[88.3658,21.68845],[88.36537,21.69106],[88.36853,21.69219],[88.36953,21.69393],[88.37082,21.69372],[88.37244,21.69437],[88.37539,21.69703],[88.38349,21.70066],[88.38591,21.70232],[88.39186,21.70784],[88.39451,21.71322],[88.3947,21.71461],[88.39391,21.71604],[88.39153,21.71785],[88.38998,21.71832],[88.38747,21.71858],[88.3764,21.717],[88.37071,21.71793],[88.36732,21.71962],[88.36353,21.72469],[88.36328,21.72591],[88.36392,21.72993],[88.36548,21.73317],[88.37299,21.73708],[88.38301,21.73807],[88.38593,21.74047],[88.3871,21.74343],[88.38731,21.75024],[88.38634,21.75166],[88.38743,21.75454],[88.39011,21.75854],[88.38991,21.76078],[88.38768,21.76279]]],[[[88.19813,21.76905],[88.19747,21.77098],[88.19609,21.77328],[88.19496,21.77553],[88.19386,21.77849],[88.19353,21.77906],[88.19319,21.77958],[88.19289,21.77971],[88.19261,21.77971],[88.19219,21.77931],[88.19192,21.77793],[88.19171,21.77485],[88.19084,21.77156],[88.19029,21.77014],[88.19016,21.76868],[88.19071,21.76594],[88.19101,21.76522],[88.19144,21.76483],[88.19225,21.76478],[88.19263,21.76487],[88.19301,21.76517],[88.19362,21.76612],[88.19388,21.76672],[88.19419,21.76878],[88.19436,21.76901],[88.19451,21.76884],[88.19417,21.76665],[88.19307,21.7647],[88.19294,21.76311],[88.193,21.7625],[88.1924,21.75939],[88.19242,21.75875],[88.19265,21.75819],[88.19306,21.75827],[88.19327,21.75859],[88.19361,21.75951],[88.19378,21.76069],[88.19408,21.76165],[88.19436,21.76206],[88.19467,21.76232],[88.19562,21.7626],[88.1964,21.7632],[88.19709,21.7641],[88.19747,21.76484],[88.1979,21.76624],[88.19788,21.76735],[88.19812,21.76788],[88.19813,21.76905]]],[[[88.30132,21.75184],[88.30112,21.75486],[88.29828,21.76683],[88.29615,21.77068],[88.28911,21.77875],[88.2866,21.76901],[88.28546,21.75491],[88.28419,21.75086],[88.28501,21.75028],[88.2844,21.74926],[88.28347,21.74871],[88.28138,21.74342],[88.27976,21.73492],[88.28171,21.73293],[88.28336,21.72677],[88.28467,21.72404],[88.28536,21.72422],[88.28643,21.72067],[88.28938,21.71742],[88.28934,21.71525],[88.29014,21.71366],[88.29189,21.71206],[88.29254,21.71268],[88.29157,21.71551],[88.29192,21.71631],[88.2933,21.71607],[88.29596,21.71692],[88.29929,21.71492],[88.29913,21.71941],[88.30088,21.7254],[88.30496,21.73246],[88.30469,21.73619],[88.30247,21.74412],[88.30175,21.74774],[88.30173,21.75084],[88.30125,21.75084],[88.30132,21.75184]]],[[[88.60395,21.72556],[88.61355,21.72834],[88.6176,21.73094],[88.61873,21.7325],[88.61968,21.7351],[88.6197,21.73696],[88.61888,21.73919],[88.61682,21.74095],[88.61368,21.74229],[88.60716,21.74354],[88.59845,21.74708],[88.59435,21.75004],[88.59004,21.75233],[88.58726,21.7533],[88.58482,21.75693],[88.58407,21.75973],[88.58408,21.76161],[88.58565,21.76541],[88.58586,21.76719],[88.58486,21.77148],[88.58464,21.77432],[88.58389,21.77618],[88.58223,21.77641],[88.57746,21.77327],[88.57174,21.77143],[88.56929,21.77014],[88.56878,21.7697],[88.57086,21.76668],[88.57308,21.76479],[88.57634,21.76101],[88.57825,21.7599],[88.57917,21.75794],[88.58253,21.75449],[88.58458,21.74843],[88.58489,21.74309],[88.58367,21.73685],[88.57903,21.72879],[88.57902,21.7271],[88.5805,21.72613],[88.58645,21.72427],[88.59353,21.72042],[88.59434,21.72169],[88.59587,21.72248],[88.60167,21.72483],[88.60228,21.72554],[88.60395,21.72556]]],[[[88.18152,21.78383],[88.18317,21.786],[88.18515,21.78903],[88.18569,21.79021],[88.18561,21.79063],[88.18521,21.79149],[88.18232,21.79566],[88.1794,21.79923],[88.17905,21.79933],[88.17634,21.79346],[88.17634,21.7926],[88.17666,21.79134],[88.17782,21.78947],[88.17893,21.78724],[88.18012,21.78513],[88.18082,21.78405],[88.1812,21.7837],[88.18152,21.78383]]],[[[88.6084,21.78459],[88.6031,21.78495],[88.59468,21.78369],[88.59259,21.78316],[88.59044,21.78078],[88.58883,21.77659],[88.58858,21.76304],[88.58739,21.75721],[88.59905,21.75127],[88.60035,21.7494],[88.60253,21.74812],[88.60432,21.74748],[88.61166,21.74724],[88.61567,21.74572],[88.61934,21.74337],[88.62173,21.74005],[88.62312,21.73509],[88.62321,21.73309],[88.62028,21.72804],[88.61049,21.72232],[88.60004,21.71796],[88.59706,21.71568],[88.59723,21.71416],[88.59796,21.71292],[88.60354,21.70777],[88.61092,21.70477],[88.61246,21.70745],[88.61256,21.70882],[88.61616,21.7127],[88.61762,21.71582],[88.6205,21.71858],[88.62364,21.72405],[88.62756,21.72931],[88.62988,21.73614],[88.63003,21.74116],[88.62946,21.74543],[88.62975,21.75147],[88.6293,21.75516],[88.62801,21.7581],[88.62768,21.76141],[88.62527,21.76555],[88.62552,21.76808],[88.62492,21.77009],[88.62568,21.7712],[88.62152,21.78116],[88.62061,21.78238],[88.61861,21.78349],[88.60977,21.78382],[88.6084,21.78459]]],[[[88.42218,21.81058],[88.41988,21.81154],[88.41783,21.8101],[88.3992,21.79229],[88.38706,21.78278],[88.38342,21.77769],[88.38493,21.77422],[88.38817,21.77334],[88.38861,21.76851],[88.39578,21.76168],[88.39657,21.75585],[88.40017,21.75444],[88.40316,21.75611],[88.40365,21.75419],[88.40531,21.75447],[88.40251,21.75085],[88.40114,21.74469],[88.40317,21.73838],[88.41162,21.73446],[88.42138,21.72078],[88.42662,21.71842],[88.42678,21.71513],[88.43008,21.71075],[88.43249,21.70438],[88.43286,21.70219],[88.42885,21.69562],[88.41984,21.69018],[88.41914,21.68293],[88.42102,21.6676],[88.42038,21.65314],[88.43692,21.63249],[88.44113,21.62283],[88.44116,21.61815],[88.43946,21.61316],[88.43463,21.60815],[88.42716,21.60532],[88.43399,21.60371],[88.43977,21.60679],[88.44746,21.60854],[88.45016,21.61177],[88.45529,21.62401],[88.45567,21.62595],[88.45336,21.62582],[88.45946,21.63976],[88.46003,21.64846],[88.46447,21.65657],[88.46514,21.6663],[88.46696,21.66741],[88.46889,21.66649],[88.46898,21.66943],[88.47151,21.67388],[88.46599,21.68745],[88.46003,21.69616],[88.45928,21.70052],[88.45744,21.70387],[88.45491,21.70514],[88.4528,21.71841],[88.45582,21.75003],[88.45305,21.75159],[88.45527,21.75244],[88.45863,21.76361],[88.45825,21.76942],[88.46277,21.78262],[88.47144,21.79247],[88.46642,21.79352],[88.46222,21.78885],[88.45557,21.78913],[88.44713,21.79736],[88.44182,21.80049],[88.43457,21.79813],[88.42999,21.79927],[88.4274,21.80112],[88.42604,21.80919],[88.42218,21.81058]]],[[[88.57968,21.71738],[88.57355,21.72266],[88.57206,21.732],[88.57377,21.74224],[88.57263,21.74784],[88.56812,21.75553],[88.5616,21.76212],[88.56007,21.76792],[88.5599,21.77109],[88.56175,21.77592],[88.56459,21.77962],[88.57404,21.78587],[88.57043,21.79318],[88.56184,21.80249],[88.55697,21.80478],[88.55541,21.80778],[88.54317,21.81171],[88.51617,21.78736],[88.50782,21.77121],[88.50629,21.75836],[88.50819,21.7492],[88.51287,21.73928],[88.51323,21.73566],[88.51817,21.73077],[88.51913,21.72777],[88.51858,21.71341],[88.5223,21.70573],[88.52344,21.70049],[88.52814,21.69242],[88.52588,21.68647],[88.52884,21.6829],[88.53089,21.67084],[88.52986,21.66749],[88.52623,21.66417],[88.52622,21.66287],[88.5311,21.65275],[88.54234,21.6409],[88.5493,21.63841],[88.55649,21.6389],[88.56283,21.63567],[88.56682,21.63507],[88.58187,21.62561],[88.587,21.62015],[88.59492,21.61541],[88.59669,21.6126],[88.60267,21.61254],[88.60608,21.61456],[88.60874,21.61994],[88.60857,21.62255],[88.6078,21.62536],[88.60482,21.62688],[88.59842,21.64335],[88.5945,21.64917],[88.59337,21.65552],[88.59101,21.65834],[88.60269,21.66811],[88.60716,21.6759],[88.6054,21.67872],[88.60862,21.68148],[88.59242,21.69618],[88.58872,21.70405],[88.58841,21.71282],[88.58347,21.71716],[88.57968,21.71738]]],[[[88.19967,21.83595],[88.19791,21.83895],[88.19729,21.84052],[88.19692,21.83979],[88.19675,21.83908],[88.19619,21.83813],[88.19548,21.83742],[88.19453,21.83609],[88.19289,21.83316],[88.19206,21.83123],[88.19206,21.8304],[88.19236,21.82916],[88.19513,21.82463],[88.19555,21.82354],[88.19768,21.82274],[88.19968,21.82075],[88.20179,21.8179],[88.20229,21.82131],[88.20228,21.82273],[88.20191,21.82513],[88.20109,21.82715],[88.20071,21.83075],[88.19967,21.83595]]],[[[88.48318,21.83491],[88.47835,21.83495],[88.47694,21.83406],[88.47512,21.83398],[88.47403,21.83203],[88.47308,21.8293],[88.4676,21.82075],[88.4671,21.82097],[88.46158,21.81877],[88.4581,21.81705],[88.45708,21.81615],[88.45517,21.81553],[88.45189,21.81364],[88.4519,21.81302],[88.45323,21.81079],[88.45751,21.80733],[88.46208,21.80182],[88.46393,21.80021],[88.46985,21.80013],[88.4714,21.79978],[88.47366,21.80019],[88.47772,21.79995],[88.47856,21.80048],[88.48067,21.80053],[88.48546,21.79886],[88.48783,21.80242],[88.49051,21.80393],[88.49375,21.80703],[88.49586,21.80861],[88.49705,21.80907],[88.4999,21.81133],[88.50002,21.81182],[88.49954,21.81259],[88.49882,21.81598],[88.49861,21.81964],[88.49815,21.82112],[88.49716,21.82168],[88.49636,21.82315],[88.49545,21.82325],[88.4955,21.82462],[88.49081,21.82894],[88.48778,21.83428],[88.48673,21.8345],[88.48595,21.83418],[88.48321,21.83416],[88.48318,21.83491]]],[[[88.19072,21.83056],[88.19286,21.83563],[88.19512,21.83904],[88.19521,21.83948],[88.19467,21.84038],[88.19185,21.84346],[88.18812,21.84645],[88.18596,21.84863],[88.18083,21.85301],[88.17683,21.85738],[88.17347,21.86184],[88.17167,21.86499],[88.16916,21.86757],[88.16636,21.86974],[88.16619,21.86825],[88.16665,21.86674],[88.16682,21.86501],[88.16727,21.86386],[88.16792,21.86269],[88.1697,21.86093],[88.17212,21.85774],[88.17483,21.85209],[88.17609,21.84862],[88.17814,21.84472],[88.18236,21.8384],[88.18408,21.83664],[88.18619,21.83374],[88.18876,21.83112],[88.18975,21.83048],[88.19044,21.83035],[88.19072,21.83056]]],[[[88.14858,21.84973],[88.145,21.85617],[88.14094,21.85865],[88.14115,21.86184],[88.13595,21.87535],[88.13181,21.87357],[88.12586,21.86817],[88.12099,21.86272],[88.11714,21.85122],[88.11388,21.85073],[88.1018,21.83255],[88.0961,21.81318],[88.09235,21.80897],[88.08496,21.79403],[88.08403,21.78408],[88.08002,21.7822],[88.07681,21.77742],[88.07341,21.75903],[88.07649,21.75176],[88.07166,21.74941],[88.06996,21.74028],[88.06345,21.73745],[88.06272,21.73547],[88.06559,21.73546],[88.06578,21.73337],[88.05994,21.72996],[88.05521,21.72095],[88.05393,21.71186],[88.05624,21.71157],[88.05693,21.70972],[88.05502,21.7071],[88.05425,21.70029],[88.04977,21.68823],[88.05101,21.68762],[88.04634,21.68697],[88.04335,21.67801],[88.04517,21.67597],[88.04135,21.67556],[88.04191,21.67051],[88.04508,21.66989],[88.04467,21.66658],[88.04318,21.66622],[88.04395,21.66335],[88.04167,21.65539],[88.04169,21.65321],[88.04327,21.65368],[88.0436,21.65163],[88.04135,21.64953],[88.05729,21.63939],[88.06981,21.63601],[88.07039,21.63478],[88.07882,21.63364],[88.08157,21.636],[88.09144,21.6387],[88.0903,21.63142],[88.09134,21.63043],[88.11868,21.6254],[88.1239,21.62573],[88.12774,21.62943],[88.1352,21.62806],[88.14123,21.6333],[88.14261,21.63908],[88.14508,21.63898],[88.14511,21.64696],[88.14344,21.64929],[88.1441,21.66217],[88.14213,21.66347],[88.14331,21.66996],[88.14137,21.67144],[88.14086,21.67483],[88.13473,21.67649],[88.13419,21.67848],[88.14891,21.68009],[88.15324,21.68196],[88.1526,21.69503],[88.15749,21.70826],[88.16533,21.72091],[88.16712,21.73223],[88.17061,21.73632],[88.17125,21.7401],[88.16765,21.75373],[88.16883,21.75564],[88.16891,21.78155],[88.1656,21.79483],[88.16725,21.80295],[88.171,21.80932],[88.16834,21.81358],[88.16866,21.81844],[88.16693,21.8237],[88.1571,21.83209],[88.14858,21.84973]]],[[[88.17427,21.86369],[88.17479,21.8644],[88.17479,21.86492],[88.1742,21.86555],[88.17418,21.86729],[88.17407,21.86774],[88.17357,21.86853],[88.17258,21.86938],[88.17165,21.87065],[88.17064,21.87331],[88.16853,21.87575],[88.1677,21.87685],[88.16677,21.87869],[88.16635,21.87906],[88.16528,21.87916],[88.16502,21.87894],[88.16483,21.87837],[88.16597,21.87608],[88.16701,21.87319],[88.16834,21.87038],[88.16925,21.86879],[88.16975,21.86833],[88.17047,21.86814],[88.17293,21.86492],[88.17383,21.86356],[88.17415,21.86348],[88.17427,21.86369]]],[[[88.56646,21.87999],[88.56211,21.8804],[88.55873,21.87963],[88.55552,21.87772],[88.55459,21.87676],[88.55405,21.87567],[88.55344,21.87211],[88.5539,21.86808],[88.55533,21.86395],[88.5586,21.85695],[88.55946,21.85439],[88.55997,21.85151],[88.5598,21.84679],[88.55826,21.84225],[88.55603,21.83816],[88.55281,21.83437],[88.55188,21.83243],[88.55301,21.83062],[88.55669,21.82769],[88.55739,21.8278],[88.55877,21.8295],[88.56121,21.83483],[88.56261,21.83957],[88.56381,21.8415],[88.56474,21.84386],[88.56541,21.84619],[88.56422,21.84823],[88.56411,21.84892],[88.56491,21.85036],[88.56515,21.852],[88.56534,21.85118],[88.5646,21.84941],[88.56473,21.84826],[88.56527,21.84739],[88.56621,21.84708],[88.56737,21.84878],[88.57305,21.85469],[88.57395,21.85606],[88.57394,21.85964],[88.57425,21.86185],[88.57385,21.86942],[88.57421,21.87554],[88.5744,21.87669],[88.57508,21.8781],[88.57505,21.87899],[88.57442,21.87966],[88.5713,21.87946],[88.56646,21.87999]]],[[[88.56171,21.89724],[88.55519,21.89942],[88.54507,21.90381],[88.543,21.90377],[88.54143,21.90219],[88.541,21.90058],[88.54144,21.89898],[88.54267,21.89754],[88.5468,21.89473],[88.54878,21.89197],[88.54878,21.88692],[88.54998,21.88349],[88.55047,21.87938],[88.54824,21.87552],[88.54262,21.87119],[88.54151,21.86955],[88.54436,21.86089],[88.54326,21.8546],[88.54152,21.8532],[88.53161,21.84882],[88.53089,21.84765],[88.53108,21.84552],[88.53298,21.84118],[88.53356,21.83735],[88.53463,21.83609],[88.53566,21.8335],[88.53792,21.83229],[88.53924,21.83423],[88.53914,21.83694],[88.54238,21.83911],[88.544,21.84299],[88.5427,21.83926],[88.53951,21.83665],[88.5396,21.83425],[88.53881,21.83233],[88.53933,21.8309],[88.54284,21.82961],[88.54411,21.82797],[88.54483,21.82791],[88.5473,21.82158],[88.54792,21.82135],[88.54759,21.82045],[88.54877,21.81787],[88.552,21.81662],[88.55304,21.81661],[88.55417,21.81733],[88.55441,21.82412],[88.55047,21.8309],[88.55027,21.83215],[88.5511,21.83472],[88.55551,21.84081],[88.55777,21.84484],[88.55854,21.85001],[88.55853,21.85212],[88.55762,21.85534],[88.55242,21.86736],[88.55199,21.87174],[88.55298,21.87668],[88.55489,21.87943],[88.55874,21.88139],[88.56841,21.88194],[88.57434,21.8811],[88.57615,21.88306],[88.57559,21.88806],[88.57207,21.89566],[88.57043,21.90049],[88.56995,21.90069],[88.56384,21.89732],[88.56171,21.89724]]],[[[88.13026,21.93016],[88.12869,21.93046],[88.1253,21.93019],[88.12462,21.93061],[88.12363,21.93054],[88.12242,21.92906],[88.12077,21.92795],[88.11849,21.92537],[88.11681,21.92388],[88.11642,21.92339],[88.11535,21.92044],[88.11554,21.91885],[88.1186,21.91293],[88.1191,21.90989],[88.12098,21.90922],[88.12303,21.90699],[88.12372,21.90581],[88.12469,21.9032],[88.12663,21.89997],[88.12755,21.89952],[88.13001,21.89913],[88.13213,21.89972],[88.13333,21.9004],[88.13458,21.90136],[88.13548,21.90257],[88.1377,21.90448],[88.13767,21.90578],[88.13886,21.90637],[88.13974,21.90822],[88.14213,21.91198],[88.14316,21.91431],[88.14502,21.91689],[88.14502,21.91734],[88.1447,21.91768],[88.13867,21.92297],[88.13827,21.92279],[88.13753,21.92163],[88.13705,21.92129],[88.13769,21.92277],[88.13761,21.92343],[88.13664,21.92558],[88.13444,21.92777],[88.1315,21.92968],[88.13026,21.93016]]],[[[88.64859,21.91786],[88.63852,21.9222],[88.63664,21.92178],[88.63117,21.91015],[88.61703,21.89605],[88.60306,21.87448],[88.59791,21.86274],[88.59186,21.85253],[88.58481,21.84498],[88.58021,21.83473],[88.57683,21.81793],[88.57822,21.81349],[88.58631,21.80152],[88.59197,21.79764],[88.59653,21.79709],[88.61002,21.79868],[88.61551,21.79788],[88.62109,21.79664],[88.6314,21.79102],[88.64456,21.78794],[88.64486,21.80768],[88.6459,21.81561],[88.64886,21.82465],[88.65037,21.8369],[88.6505,21.84971],[88.65211,21.85769],[88.65159,21.85977],[88.65464,21.86511],[88.65279,21.87249],[88.65476,21.87538],[88.65667,21.88443],[88.65917,21.88814],[88.66289,21.89788],[88.66595,21.90196],[88.67007,21.91242],[88.67009,21.91422],[88.66501,21.91427],[88.65359,21.91777],[88.64859,21.91786]]],[[[88.93731,21.91475],[88.91744,21.92875],[88.91182,21.93088],[88.90843,21.92434],[88.90259,21.92103],[88.88838,21.91645],[88.88162,21.91698],[88.87489,21.91988],[88.85969,21.91271],[88.8493,21.91272],[88.83861,21.9178],[88.82159,21.93019],[88.81975,21.93061],[88.81901,21.92926],[88.82543,21.91388],[88.83987,21.90639],[88.84964,21.89648],[88.85316,21.88889],[88.85451,21.87968],[88.85374,21.86625],[88.84298,21.85554],[88.8368,21.84303],[88.83739,21.83193],[88.84153,21.81563],[88.83902,21.79444],[88.83491,21.7858],[88.83506,21.78279],[88.85832,21.78104],[88.87334,21.77196],[88.87722,21.76661],[88.88026,21.74586],[88.87161,21.71909],[88.86965,21.70417],[88.87145,21.69483],[88.87969,21.68534],[88.88413,21.66117],[88.89107,21.65239],[88.90473,21.64589],[88.91749,21.63213],[88.92297,21.63231],[88.9286,21.6552],[88.93296,21.66426],[88.94013,21.68904],[88.93949,21.69664],[88.93516,21.70282],[88.92589,21.70612],[88.91467,21.71618],[88.91439,21.73153],[88.92202,21.74183],[88.9223,21.74476],[88.91731,21.75137],[88.91621,21.75905],[88.92084,21.76239],[88.9313,21.74985],[88.93171,21.74443],[88.93091,21.73879],[88.92126,21.72152],[88.93684,21.71267],[88.94639,21.70497],[88.94901,21.70201],[88.95131,21.69385],[88.95283,21.68119],[88.94352,21.66211],[88.94297,21.6567],[88.93872,21.64614],[88.95415,21.62722],[88.97981,21.61541],[88.98947,21.61597],[88.99534,21.62222],[88.99727,21.62197],[88.99914,21.61811],[88.99792,21.61655],[88.99798,21.60323],[89.02378,21.60291],[89.02767,21.60512],[89.03654,21.61833],[89.0352,21.6258],[89.02325,21.63407],[89.01996,21.64043],[89.02133,21.65193],[89.02407,21.65822],[89.02648,21.65819],[89.02701,21.65254],[89.02426,21.64557],[89.02918,21.63513],[89.03788,21.63183],[89.0488,21.62394],[89.05049,21.61557],[89.06813,21.61738],[89.0942,21.64134],[89.09356,21.66368],[89.08126,21.6812],[89.07269,21.68988],[89.06764,21.69107],[89.07186,21.69914],[89.07166,21.70185],[89.07027,21.70615],[89.06409,21.713],[89.06157,21.7223],[89.05561,21.72756],[89.05592,21.73252],[89.03775,21.74449],[89.0323,21.75223],[89.02253,21.76092],[89.01946,21.76615],[89.01237,21.79423],[89.01604,21.81276],[89.02844,21.8314],[89.02915,21.84548],[89.02753,21.85024],[89.03134,21.86396],[89.02482,21.87131],[88.98386,21.89525],[88.93731,21.91475]]],[[[88.56796,21.95848],[88.56343,21.96144],[88.56095,21.96505],[88.55746,21.97218],[88.5563,21.9729],[88.55245,21.97345],[88.54943,21.97312],[88.54547,21.97184],[88.54438,21.97086],[88.54281,21.96498],[88.54267,21.96028],[88.54345,21.95436],[88.54484,21.94917],[88.54716,21.94384],[88.54957,21.94021],[88.5508,21.93587],[88.55123,21.93069],[88.54987,21.923],[88.55213,21.9198],[88.55704,21.91734],[88.56264,21.9155],[88.56679,21.91236],[88.57298,21.90499],[88.57308,21.90216],[88.57492,21.89886],[88.57655,21.89339],[88.58041,21.89254],[88.58257,21.89144],[88.58362,21.89164],[88.58729,21.89395],[88.58951,21.89624],[88.60159,21.9055],[88.60595,21.91138],[88.60685,21.91455],[88.60919,21.91846],[88.60998,21.92471],[88.60929,21.92679],[88.60598,21.93167],[88.59995,21.93731],[88.59488,21.94712],[88.59099,21.95148],[88.57535,21.95953],[88.57206,21.95854],[88.56796,21.95848]]],[[[88.60318,21.99118],[88.60387,21.9936],[88.6071,22.00005],[88.60608,22.00005],[88.60299,21.99745],[88.59964,21.9915],[88.59916,21.991],[88.59697,21.9905],[88.59581,21.98859],[88.59383,21.98832],[88.58811,21.99046],[88.58621,21.99008],[88.58543,21.98963],[88.5859,21.98892],[88.58425,21.98676],[88.57808,21.98209],[88.57657,21.97998],[88.57583,21.97638],[88.576,21.97145],[88.57644,21.97076],[88.5778,21.97067],[88.57776,21.97001],[88.57682,21.97015],[88.57636,21.9697],[88.57679,21.96589],[88.57649,21.96064],[88.57838,21.95898],[88.59197,21.95155],[88.59569,21.9472],[88.60057,21.93786],[88.60303,21.9358],[88.60384,21.93595],[88.60381,21.93509],[88.60451,21.93459],[88.60516,21.93456],[88.60615,21.93565],[88.60813,21.93533],[88.60823,21.93485],[88.60775,21.93459],[88.60892,21.93424],[88.60881,21.93349],[88.60978,21.93294],[88.60875,21.93119],[88.60748,21.93158],[88.60923,21.92965],[88.61039,21.9293],[88.61118,21.92987],[88.60935,21.93084],[88.61027,21.93272],[88.61291,21.93162],[88.61368,21.93213],[88.6145,21.93376],[88.61347,21.93436],[88.61018,21.9341],[88.61038,21.93469],[88.60964,21.93484],[88.6095,21.93533],[88.61227,21.93516],[88.61368,21.93568],[88.61503,21.93751],[88.61378,21.94002],[88.60935,21.94545],[88.60619,21.95074],[88.60337,21.95658],[88.60008,21.96205],[88.59861,21.96758],[88.59916,21.97531],[88.60318,21.99118]]],[[[88.94364,22.00087],[88.94482,21.99329],[88.94436,21.98608],[88.94089,21.97935],[88.93646,21.97457],[88.92611,21.96746],[88.92487,21.96511],[88.92494,21.96127],[88.92842,21.95142],[88.92882,21.94511],[88.93631,21.936],[88.94648,21.92878],[88.9644,21.92467],[88.96763,21.92194],[88.9825,21.91465],[88.99483,21.90616],[88.99951,21.90463],[89.01229,21.90301],[89.01308,21.9074],[89.01441,21.90795],[89.0164,21.91165],[89.01655,21.9139],[89.01931,21.92108],[89.01697,21.92641],[89.0133,21.93152],[89.00685,21.93735],[88.99112,21.94408],[88.98924,21.94782],[88.98857,21.95104],[88.98875,21.95532],[88.9942,21.96484],[89.00495,21.97261],[89.00997,21.9774],[89.00977,21.98033],[89.00654,21.98263],[89.00448,21.98243],[88.99244,21.97242],[88.98759,21.97147],[88.98496,21.97353],[88.98378,21.97602],[88.98439,21.98459],[88.98307,21.98551],[88.97487,21.98674],[88.96885,21.98884],[88.96601,21.99271],[88.96484,21.99554],[88.95616,21.99711],[88.95388,21.99883],[88.9539,21.99996],[88.94628,22.00005],[88.94364,22.00087]]],[[[89.81613,26.34273],[89.80674,26.3491],[89.80228,26.35057],[89.80001,26.35061],[89.7977,26.35032],[89.79559,26.34937],[89.79537,26.34646],[89.79408,26.34383],[89.79159,26.34269],[89.78989,26.34258],[89.78972,26.34183],[89.79015,26.34116],[89.79341,26.34139],[89.7964,26.33969],[89.79806,26.33785],[89.79612,26.33299],[89.79983,26.32973],[89.80283,26.32965],[89.80526,26.32841],[89.808,26.32651],[89.81114,26.32371],[89.8147,26.32165],[89.81741,26.32094],[89.82024,26.32325],[89.82312,26.32794],[89.82303,26.32978],[89.81968,26.33302],[89.81921,26.33489],[89.81937,26.33683],[89.81856,26.33883],[89.81613,26.34273]]],[[[88.03494,27.22098],[88.02673,27.22067],[88.01426,27.21291],[88.0153,27.20937],[88.01164,27.20345],[88.01531,27.2],[88.01599,27.19359],[88.01314,27.18781],[88.01244,27.17787],[88.01922,27.17105],[88.01144,27.16624],[88.01132,27.15907],[88.00936,27.15707],[88.01027,27.1545],[88.0073,27.14316],[88.0009,27.14043],[87.99898,27.13373],[87.99126,27.13071],[87.98896,27.12072],[87.98683,27.11904],[87.98843,27.11871],[87.98982,27.11133],[87.99151,27.11026],[87.99088,27.10561],[87.99527,27.10353],[88.00259,27.10459],[88.01144,27.09718],[88.01528,27.08895],[88.02102,27.08783],[88.02055,27.08268],[88.01583,27.07691],[88.01608,27.07368],[88.0212,27.06861],[88.02303,27.06131],[88.02585,27.05768],[88.02587,27.05395],[88.03036,27.04677],[88.03525,27.04335],[88.03785,27.03632],[88.04558,27.03688],[88.05773,27.03215],[88.05947,27.02942],[88.06999,27.03171],[88.07769,27.03542],[88.08309,27.02914],[88.08408,27.02235],[88.08884,27.01605],[88.08839,27.00829],[88.09214,27.0047],[88.09881,27.00422],[88.10415,26.99765],[88.10886,26.9949],[88.10925,26.99228],[88.11675,26.98778],[88.1344,26.98624],[88.13454,26.98373],[88.13043,26.98052],[88.12439,26.97174],[88.12498,26.96896],[88.12219,26.96399],[88.12343,26.9601],[88.12013,26.95071],[88.12885,26.9392],[88.13757,26.93364],[88.13923,26.92879],[88.1447,26.92248],[88.14384,26.91728],[88.14496,26.91514],[88.13636,26.89852],[88.14581,26.88931],[88.15264,26.88507],[88.15725,26.88512],[88.15754,26.88321],[88.16363,26.87817],[88.16641,26.87013],[88.17184,26.86929],[88.17397,26.86532],[88.17219,26.8608],[88.17446,26.85938],[88.17354,26.85545],[88.1748,26.85315],[88.16762,26.84974],[88.16769,26.84752],[88.17056,26.84479],[88.16776,26.83751],[88.17368,26.83404],[88.17187,26.82733],[88.17897,26.81623],[88.17717,26.80477],[88.18099,26.79614],[88.18294,26.78214],[88.18785,26.77181],[88.18771,26.76215],[88.18605,26.75668],[88.18717,26.7506],[88.18616,26.73891],[88.18238,26.72754],[88.18172,26.71975],[88.17641,26.71059],[88.17289,26.70818],[88.16708,26.6993],[88.16775,26.68396],[88.16414,26.67847],[88.16494,26.66978],[88.16297,26.64597],[88.15789,26.63993],[88.1603,26.63644],[88.15805,26.63581],[88.15721,26.63272],[88.15445,26.63038],[88.147,26.62957],[88.1421,26.62575],[88.13921,26.60675],[88.12991,26.6013],[88.13191,26.59324],[88.12942,26.58749],[88.13003,26.58488],[88.12734,26.58194],[88.13002,26.57949],[88.13038,26.57383],[88.12866,26.57273],[88.125,26.57774],[88.12315,26.57698],[88.12532,26.57464],[88.12361,26.57259],[88.12085,26.57597],[88.11776,26.57454],[88.11909,26.5683],[88.11463,26.57054],[88.11406,26.57263],[88.11258,26.57181],[88.11178,26.56496],[88.11439,26.56692],[88.11511,26.56546],[88.11073,26.56203],[88.11351,26.55869],[88.10953,26.55712],[88.10765,26.56054],[88.10546,26.56105],[88.10532,26.55078],[88.10763,26.55063],[88.11156,26.54512],[88.10349,26.53852],[88.11003,26.53606],[88.11173,26.53119],[88.11697,26.53273],[88.11727,26.52761],[88.12386,26.5241],[88.12515,26.52053],[88.13005,26.51602],[88.13377,26.51684],[88.13498,26.52338],[88.14004,26.52422],[88.14738,26.52263],[88.15035,26.53181],[88.15635,26.53002],[88.16654,26.53553],[88.16786,26.54076],[88.17278,26.53597],[88.17623,26.53537],[88.17562,26.54053],[88.17939,26.54825],[88.19541,26.54796],[88.19627,26.54392],[88.20212,26.54375],[88.20137,26.53954],[88.20398,26.54113],[88.21161,26.53994],[88.21398,26.54156],[88.21294,26.54243],[88.20525,26.54349],[88.20765,26.54539],[88.2119,26.54443],[88.21624,26.54869],[88.20822,26.55006],[88.21095,26.56092],[88.21871,26.55666],[88.22549,26.55675],[88.228,26.55295],[88.22566,26.55097],[88.22556,26.54721],[88.22931,26.54006],[88.22968,26.53504],[88.20877,26.52441],[88.20609,26.52111],[88.20415,26.52129],[88.20233,26.51511],[88.20316,26.51313],[88.19884,26.51266],[88.1951,26.51414],[88.19128,26.51153],[88.19113,26.50853],[88.18511,26.50405],[88.18358,26.50041],[88.1797,26.49958],[88.17885,26.4946],[88.1818,26.49253],[88.17989,26.48764],[88.18504,26.48607],[88.18618,26.48377],[88.18786,26.48491],[88.19066,26.48205],[88.19162,26.47767],[88.19577,26.47513],[88.20296,26.47636],[88.20331,26.47432],[88.21073,26.47309],[88.21577,26.47805],[88.2138,26.47808],[88.21177,26.48164],[88.21246,26.48325],[88.21986,26.48352],[88.22436,26.48195],[88.22424,26.47799],[88.22117,26.47153],[88.21171,26.47182],[88.20982,26.46923],[88.214,26.46858],[88.21773,26.46591],[88.21845,26.46259],[88.22275,26.45913],[88.22515,26.45366],[88.23417,26.45151],[88.24245,26.45235],[88.24382,26.45384],[88.24286,26.44872],[88.24817,26.43668],[88.25108,26.4359],[88.25085,26.43315],[88.25846,26.43218],[88.2594,26.42863],[88.26341,26.42877],[88.26305,26.42283],[88.26701,26.42285],[88.26958,26.42045],[88.26825,26.41758],[88.26455,26.41541],[88.25489,26.41707],[88.25242,26.41605],[88.24756,26.40752],[88.23923,26.40344],[88.23826,26.39886],[88.23439,26.39476],[88.22794,26.39275],[88.22704,26.38947],[88.23321,26.38634],[88.23401,26.38066],[88.23221,26.3796],[88.24047,26.3752],[88.24657,26.37418],[88.24678,26.37538],[88.25533,26.3774],[88.25756,26.38128],[88.26148,26.37762],[88.2663,26.3792],[88.26767,26.38141],[88.27194,26.37783],[88.27626,26.37944],[88.27444,26.37624],[88.27674,26.37252],[88.2765,26.36826],[88.27884,26.36668],[88.27981,26.35968],[88.28273,26.35757],[88.29019,26.35997],[88.29089,26.35827],[88.289,26.35396],[88.29369,26.35293],[88.2938,26.35173],[88.29169,26.34925],[88.29035,26.35142],[88.28599,26.35242],[88.28433,26.34965],[88.27891,26.34939],[88.2782,26.3432],[88.28115,26.34202],[88.27987,26.33196],[88.27603,26.33224],[88.27469,26.32857],[88.26979,26.32787],[88.26877,26.33141],[88.26652,26.33187],[88.26915,26.33275],[88.27114,26.33593],[88.27088,26.33753],[88.26838,26.33799],[88.26688,26.33508],[88.25778,26.33552],[88.25779,26.33195],[88.25439,26.32699],[88.24923,26.32793],[88.24805,26.32636],[88.24725,26.32812],[88.24674,26.32428],[88.2442,26.32201],[88.24554,26.31454],[88.23987,26.31155],[88.2357,26.30333],[88.23165,26.30582],[88.23184,26.3087],[88.22943,26.31037],[88.23061,26.30792],[88.22671,26.30362],[88.22818,26.29566],[88.22591,26.29407],[88.22693,26.2909],[88.21712,26.28445],[88.21335,26.28404],[88.21322,26.28043],[88.21063,26.27779],[88.20159,26.28092],[88.19732,26.27186],[88.18318,26.27368],[88.18265,26.27044],[88.17901,26.2691],[88.17947,26.26331],[88.17419,26.25579],[88.17177,26.25565],[88.16822,26.25815],[88.16324,26.25341],[88.16048,26.25689],[88.15544,26.25811],[88.15434,26.25452],[88.15241,26.25349],[88.1444,26.25224],[88.14265,26.25047],[88.14112,26.2434],[88.13674,26.24122],[88.1366,26.23248],[88.14176,26.23164],[88.13982,26.22719],[88.13089,26.22715],[88.12987,26.22502],[88.12573,26.22776],[88.11442,26.22372],[88.11658,26.21915],[88.11111,26.2177],[88.11146,26.21545],[88.10541,26.21438],[88.10314,26.21124],[88.10361,26.20778],[88.10087,26.20753],[88.10113,26.20601],[88.09823,26.20528],[88.09781,26.20359],[88.09579,26.20488],[88.09371,26.20367],[88.09424,26.20256],[88.09134,26.20214],[88.08932,26.19073],[88.08543,26.19103],[88.08174,26.18683],[88.07621,26.18532],[88.07581,26.18252],[88.07804,26.1798],[88.07185,26.1742],[88.06949,26.17413],[88.06888,26.17685],[88.06497,26.17699],[88.0657,26.17517],[88.05907,26.1705],[88.05771,26.17278],[88.0508,26.17218],[88.04983,26.17607],[88.03723,26.17871],[88.03149,26.17521],[88.03293,26.17321],[88.03177,26.16998],[88.02829,26.17004],[88.02648,26.16544],[88.02416,26.16526],[88.01968,26.15982],[88.01434,26.15857],[88.00998,26.16154],[88.00783,26.15805],[88.01415,26.14931],[88.01077,26.14477],[88.00625,26.14574],[87.99988,26.1384],[87.99439,26.14341],[87.99207,26.15096],[87.98502,26.14565],[87.98588,26.14268],[87.98375,26.14212],[87.98131,26.14458],[87.9749,26.14337],[87.97245,26.14],[87.97919,26.13797],[87.97849,26.13015],[87.98153,26.12769],[87.9814,26.12606],[87.97981,26.1243],[87.97615,26.12528],[87.97534,26.12426],[87.97955,26.12342],[87.97939,26.12228],[87.9708,26.12046],[87.96927,26.11762],[87.97152,26.11536],[87.97427,26.11664],[87.98376,26.11571],[87.98511,26.11143],[87.98577,26.11344],[87.98773,26.10977],[87.98585,26.10927],[87.98647,26.1066],[87.98464,26.1067],[87.98335,26.10427],[87.98689,26.10275],[87.9868,26.10141],[87.9823,26.10189],[87.98212,26.10324],[87.97861,26.10117],[87.97752,26.10272],[87.9772,26.1005],[87.97624,26.10194],[87.97343,26.09956],[87.97176,26.10057],[87.96714,26.09786],[87.96843,26.09688],[87.96747,26.0961],[87.96664,26.09686],[87.96653,26.0955],[87.96361,26.09463],[87.97152,26.09293],[87.97075,26.08867],[87.97666,26.08707],[87.9782,26.0838],[87.98202,26.08366],[87.98224,26.07987],[87.98562,26.07766],[87.98219,26.07376],[87.97279,26.07743],[87.9655,26.07405],[87.95808,26.07632],[87.95521,26.07474],[87.95291,26.07647],[87.95335,26.0753],[87.95039,26.07421],[87.95232,26.07188],[87.94855,26.0696],[87.95196,26.068],[87.95482,26.06903],[87.95452,26.06567],[87.95264,26.06461],[87.95033,26.06562],[87.95012,26.06055],[87.94886,26.0619],[87.9455,26.06076],[87.93492,26.06368],[87.93635,26.0686],[87.93064,26.07031],[87.93178,26.08029],[87.93136,26.08202],[87.92805,26.08307],[87.92053,26.07569],[87.91687,26.07706],[87.91008,26.07137],[87.90699,26.07234],[87.90124,26.06291],[87.89878,26.064],[87.8924,26.06116],[87.89039,26.05792],[87.89045,26.04962],[87.88924,26.0486],[87.88301,26.04684],[87.87833,26.04953],[87.86426,26.03648],[87.85593,26.03598],[87.85422,26.03183],[87.85452,26.02936],[87.85725,26.02808],[87.85646,26.02158],[87.85446,26.01667],[87.85045,26.01416],[87.85446,26.01253],[87.85422,26.01008],[87.85041,26.00345],[87.85141,26.00228],[87.84945,25.99543],[87.84794,25.99369],[87.84513,25.99412],[87.84575,25.98557],[87.84413,25.98133],[87.84464,25.97691],[87.84708,25.97467],[87.84472,25.97393],[87.84577,25.96958],[87.84706,25.96937],[87.84574,25.96684],[87.84657,25.96334],[87.83668,25.96012],[87.83596,25.95831],[87.83826,25.95203],[87.8337,25.94585],[87.83403,25.94216],[87.83695,25.94228],[87.83935,25.93811],[87.83473,25.93168],[87.83843,25.93149],[87.83311,25.92791],[87.81959,25.93394],[87.81605,25.93172],[87.81262,25.93211],[87.81187,25.93015],[87.80737,25.92985],[87.809,25.92837],[87.80885,25.92069],[87.813,25.91764],[87.81207,25.91595],[87.80757,25.91609],[87.80803,25.91216],[87.81206,25.90997],[87.81553,25.91022],[87.81647,25.91202],[87.81518,25.91486],[87.81689,25.91283],[87.81983,25.914],[87.82258,25.91213],[87.82136,25.90298],[87.81959,25.90034],[87.82505,25.89715],[87.82683,25.89408],[87.82178,25.88752],[87.82332,25.88559],[87.82234,25.88195],[87.82602,25.88033],[87.82572,25.87774],[87.82925,25.87774],[87.82748,25.87468],[87.82983,25.87065],[87.85017,25.8696],[87.8587,25.86479],[87.86806,25.86865],[87.86953,25.86863],[87.86979,25.86657],[87.87338,25.86612],[87.87437,25.86822],[87.87565,25.86061],[87.88271,25.85936],[87.88707,25.8612],[87.88862,25.86511],[87.89211,25.86574],[87.90256,25.86168],[87.90187,25.85793],[87.90608,25.85782],[87.90829,25.85407],[87.91131,25.85273],[87.91469,25.85395],[87.91412,25.85145],[87.91208,25.85112],[87.90779,25.84527],[87.9036,25.84287],[87.90541,25.84039],[87.90855,25.84107],[87.90592,25.83969],[87.90326,25.84254],[87.90209,25.84207],[87.90421,25.83645],[87.89673,25.83794],[87.90285,25.83395],[87.90099,25.83269],[87.89607,25.83707],[87.89408,25.83396],[87.89204,25.83534],[87.89121,25.83218],[87.88804,25.83066],[87.89357,25.8275],[87.89609,25.82804],[87.89501,25.82923],[87.89752,25.83024],[87.89724,25.83161],[87.90254,25.83052],[87.90168,25.82793],[87.89956,25.82867],[87.8978,25.82707],[87.89962,25.8258],[87.89911,25.82461],[87.90442,25.82248],[87.90558,25.81981],[87.90889,25.81988],[87.91588,25.8164],[87.91435,25.81134],[87.90796,25.81568],[87.90752,25.812],[87.90384,25.814],[87.89946,25.80749],[87.90564,25.80756],[87.90797,25.80342],[87.90164,25.80225],[87.90382,25.80202],[87.90685,25.7809],[87.90609,25.78012],[87.90425,25.78247],[87.90318,25.78151],[87.90345,25.77791],[87.902,25.77622],[87.90417,25.77113],[87.90609,25.77143],[87.90768,25.76969],[87.909,25.77173],[87.90706,25.77354],[87.91931,25.77458],[87.92392,25.77638],[87.92568,25.77567],[87.92611,25.77279],[87.93363,25.76943],[87.93424,25.77179],[87.93263,25.77295],[87.9353,25.77471],[87.93797,25.77393],[87.93788,25.77214],[87.94219,25.76941],[87.94239,25.75966],[87.94759,25.75764],[87.94365,25.75087],[87.94623,25.75254],[87.94705,25.75161],[87.94765,25.74752],[87.94626,25.74624],[87.95223,25.74619],[87.95544,25.74181],[87.96137,25.73866],[87.96102,25.73638],[87.96633,25.7328],[87.9657,25.72562],[87.98247,25.71998],[87.98476,25.7243],[87.98919,25.72619],[87.99233,25.72314],[87.99885,25.7219],[88.00195,25.71568],[88.01247,25.71018],[88.02107,25.70969],[88.01851,25.699],[88.02065,25.69586],[88.03084,25.6945],[88.0312,25.69791],[88.0291,25.70109],[88.03122,25.7033],[88.03497,25.70208],[88.03764,25.69698],[88.04053,25.69756],[88.04279,25.70199],[88.04814,25.6979],[88.05257,25.6862],[88.05165,25.68351],[88.0459,25.67898],[88.04783,25.66905],[88.04659,25.66273],[88.05012,25.66076],[88.04564,25.65596],[88.04853,25.64961],[88.04817,25.64622],[88.04474,25.64589],[88.04359,25.6431],[88.04024,25.64723],[88.03783,25.64727],[88.0368,25.64164],[88.04112,25.64259],[88.0463,25.63475],[88.04911,25.63754],[88.05396,25.63918],[88.05526,25.63782],[88.04978,25.63452],[88.04782,25.63145],[88.04471,25.6341],[88.04067,25.63211],[88.03508,25.62394],[88.03728,25.61633],[88.04287,25.61077],[88.04323,25.60865],[88.03708,25.60921],[88.03008,25.6053],[88.03322,25.60347],[88.04001,25.60334],[88.03982,25.60106],[88.03332,25.59983],[88.0311,25.60174],[88.02421,25.60204],[88.02521,25.5983],[88.03097,25.60007],[88.02938,25.59706],[88.02969,25.59261],[88.02816,25.59092],[88.02406,25.59206],[88.02026,25.59115],[88.02545,25.58622],[88.02464,25.58278],[88.02625,25.57877],[88.02881,25.5811],[88.02772,25.57665],[88.02402,25.5762],[88.02554,25.57207],[88.02825,25.56999],[88.03397,25.57097],[88.03851,25.5694],[88.03417,25.56392],[88.03255,25.56676],[88.03048,25.56567],[88.02892,25.56078],[88.02582,25.55886],[88.02699,25.55609],[88.03043,25.55595],[88.03553,25.55253],[88.03833,25.55299],[88.03372,25.54724],[88.03582,25.54479],[88.03728,25.53832],[88.04204,25.53742],[88.04736,25.53955],[88.05317,25.53515],[88.05784,25.53404],[88.05959,25.52838],[88.06447,25.52524],[88.07113,25.51745],[88.07089,25.51576],[88.0665,25.51275],[88.06655,25.51039],[88.07653,25.5081],[88.07324,25.50817],[88.07175,25.50616],[88.07139,25.49587],[88.07269,25.49429],[88.07159,25.49337],[88.07338,25.48431],[88.07132,25.48426],[88.0654,25.49013],[88.05627,25.49119],[88.05126,25.49006],[88.04926,25.48601],[88.04514,25.4891],[88.03769,25.48978],[88.03594,25.49212],[88.03028,25.49154],[88.02244,25.49828],[88.02466,25.50165],[88.01806,25.50186],[88.01412,25.49938],[88.01197,25.50037],[88.0093,25.50403],[88.01352,25.51121],[88.00672,25.51014],[88.00698,25.49705],[87.99578,25.49954],[87.99321,25.50372],[87.99288,25.50723],[87.99511,25.50797],[87.99415,25.51199],[87.98902,25.51181],[87.98502,25.51533],[87.9938,25.52241],[87.99135,25.52287],[87.9909,25.52538],[87.986,25.52664],[87.98078,25.52454],[87.97655,25.5247],[87.9667,25.53664],[87.96408,25.5369],[87.96333,25.53954],[87.95671,25.53739],[87.95419,25.53977],[87.95111,25.53836],[87.94708,25.53908],[87.94635,25.53547],[87.92772,25.5372],[87.92555,25.53377],[87.91696,25.53295],[87.91837,25.52659],[87.91273,25.52577],[87.90834,25.51866],[87.91093,25.51575],[87.90682,25.51174],[87.90891,25.50882],[87.90439,25.50939],[87.90276,25.50532],[87.89786,25.50491],[87.8982,25.5117],[87.89285,25.51267],[87.89018,25.51827],[87.88714,25.51819],[87.88437,25.52057],[87.88333,25.51694],[87.88677,25.50895],[87.87989,25.5042],[87.87482,25.50469],[87.87109,25.4974],[87.86895,25.49671],[87.86489,25.47995],[87.8694,25.46949],[87.86323,25.46411],[87.86346,25.46911],[87.86152,25.46914],[87.86053,25.47108],[87.8558,25.47098],[87.85428,25.46672],[87.83935,25.46784],[87.83964,25.46137],[87.83022,25.46105],[87.83096,25.45221],[87.8289,25.44683],[87.82747,25.44764],[87.82572,25.44545],[87.82637,25.43962],[87.82268,25.43708],[87.81167,25.43555],[87.80231,25.44473],[87.79694,25.44501],[87.79678,25.4475],[87.78726,25.4504],[87.78133,25.43254],[87.77431,25.43214],[87.774,25.42962],[87.77136,25.42898],[87.76993,25.42621],[87.77432,25.42353],[87.77407,25.41827],[87.77636,25.41309],[87.77519,25.40891],[87.77045,25.40957],[87.76573,25.41459],[87.76432,25.41314],[87.76388,25.4075],[87.77253,25.40422],[87.76812,25.39893],[87.76829,25.39274],[87.76594,25.38751],[87.76966,25.37898],[87.77929,25.37308],[87.79231,25.37355],[87.79355,25.36695],[87.78818,25.33906],[87.79596,25.3262],[87.80506,25.32456],[87.81831,25.31882],[87.82636,25.31352],[87.83093,25.3073],[87.83903,25.30109],[87.85543,25.29689],[87.86019,25.28578],[87.86241,25.27411],[87.86069,25.26963],[87.85701,25.26965],[87.85343,25.2636],[87.85553,25.25991],[87.85527,25.25527],[87.84154,25.25074],[87.83662,25.24581],[87.83648,25.24192],[87.83476,25.23996],[87.8273,25.23529],[87.82434,25.23653],[87.8378,25.21217],[87.84006,25.2015],[87.82145,25.21054],[87.81722,25.21107],[87.8052,25.21843],[87.79068,25.22165],[87.78791,25.19185],[87.7744,25.14405],[87.77436,25.12136],[87.77903,25.1177],[87.78967,25.10442],[87.7929,25.09535],[87.80237,25.08289],[87.80579,25.07265],[87.834,25.06526],[87.85728,25.05463],[87.89936,25.00678],[87.90593,25.00389],[87.92273,25.00058],[87.94054,24.99085],[87.94482,24.98414],[87.95326,24.97708],[87.95775,24.97089],[87.95895,24.9508],[87.96283,24.93453],[87.95962,24.92901],[87.96083,24.92208],[87.95293,24.90776],[87.9167,24.88454],[87.91005,24.87473],[87.89727,24.86165],[87.89667,24.85777],[87.89133,24.85604],[87.89386,24.84974],[87.89654,24.84929],[87.89875,24.84461],[87.89887,24.83708],[87.89607,24.83603],[87.89604,24.8307],[87.89777,24.82768],[87.90136,24.8275],[87.90027,24.8241],[87.89619,24.82286],[87.89124,24.82699],[87.88802,24.82298],[87.88577,24.82367],[87.88727,24.82598],[87.88615,24.82816],[87.88439,24.82322],[87.88261,24.82327],[87.88505,24.82842],[87.88275,24.82953],[87.88117,24.82378],[87.87982,24.82415],[87.87933,24.82249],[87.87507,24.82239],[87.87507,24.82575],[87.87237,24.82476],[87.87053,24.82629],[87.86912,24.82464],[87.87019,24.8203],[87.87438,24.81801],[87.87462,24.8084],[87.88071,24.808],[87.8816,24.80537],[87.88074,24.79834],[87.87838,24.79602],[87.8783,24.78974],[87.87445,24.79083],[87.87551,24.79416],[87.87387,24.79558],[87.86976,24.79391],[87.87088,24.79089],[87.86864,24.78865],[87.86866,24.7836],[87.86684,24.77953],[87.87014,24.77865],[87.86923,24.77503],[87.86591,24.77347],[87.86542,24.77171],[87.86201,24.77254],[87.86388,24.77036],[87.85228,24.76199],[87.84795,24.76345],[87.84326,24.76859],[87.83817,24.76804],[87.8374,24.76579],[87.83598,24.77832],[87.84024,24.77783],[87.8421,24.7857],[87.84077,24.78637],[87.84071,24.78941],[87.83624,24.79021],[87.8323,24.78652],[87.83015,24.77001],[87.82881,24.76913],[87.82799,24.77219],[87.82702,24.76988],[87.82323,24.77006],[87.81639,24.75969],[87.81656,24.75806],[87.82291,24.75481],[87.82941,24.75458],[87.83221,24.74883],[87.83455,24.74892],[87.84109,24.74355],[87.84302,24.74002],[87.84887,24.74019],[87.85993,24.73393],[87.86353,24.7342],[87.86561,24.73203],[87.87413,24.73208],[87.87939,24.74035],[87.87855,24.74179],[87.88302,24.74132],[87.88545,24.73968],[87.8851,24.73679],[87.88735,24.73655],[87.8888,24.73438],[87.88825,24.72891],[87.8902,24.72795],[87.89001,24.72522],[87.89864,24.72369],[87.90459,24.72533],[87.90401,24.72252],[87.90835,24.72162],[87.90635,24.71977],[87.90724,24.71497],[87.90328,24.71464],[87.90064,24.71128],[87.89992,24.70518],[87.90292,24.70514],[87.90114,24.69412],[87.89767,24.68788],[87.89414,24.68701],[87.88775,24.67999],[87.89071,24.67521],[87.89711,24.67255],[87.90478,24.67244],[87.90901,24.67],[87.90844,24.66717],[87.91661,24.66575],[87.9163,24.65829],[87.91087,24.65342],[87.91414,24.63771],[87.91127,24.63797],[87.90993,24.6314],[87.89185,24.6341],[87.88792,24.63034],[87.88864,24.62634],[87.89744,24.6256],[87.90032,24.62559],[87.90577,24.62928],[87.90603,24.61501],[87.89265,24.61354],[87.88684,24.61702],[87.87811,24.61819],[87.87583,24.61523],[87.87837,24.61206],[87.88039,24.61325],[87.88117,24.61167],[87.88354,24.61206],[87.8873,24.60778],[87.89347,24.60548],[87.89168,24.60864],[87.89254,24.60975],[87.91077,24.61043],[87.91129,24.60103],[87.91318,24.59991],[87.91182,24.59793],[87.91405,24.59662],[87.91328,24.59346],[87.90828,24.58892],[87.9011,24.58938],[87.89774,24.58491],[87.89193,24.58418],[87.89171,24.56866],[87.88927,24.56505],[87.86922,24.5645],[87.86938,24.55602],[87.86087,24.55693],[87.86051,24.55883],[87.85644,24.5581],[87.85235,24.56177],[87.85328,24.55764],[87.84941,24.55384],[87.84792,24.5573],[87.84405,24.55743],[87.84082,24.55979],[87.83283,24.55806],[87.8263,24.55872],[87.82388,24.56402],[87.82534,24.56913],[87.81696,24.57339],[87.81218,24.57856],[87.79601,24.58076],[87.79213,24.58319],[87.77122,24.58302],[87.77019,24.57049],[87.77564,24.57124],[87.77837,24.57346],[87.79246,24.57166],[87.79496,24.56955],[87.79604,24.56591],[87.79988,24.5648],[87.79993,24.56137],[87.80245,24.56169],[87.80388,24.5547],[87.80859,24.54669],[87.8047,24.54188],[87.79957,24.54339],[87.79756,24.5388],[87.80042,24.53342],[87.79923,24.52473],[87.80216,24.52375],[87.80424,24.51923],[87.80194,24.5122],[87.79807,24.51137],[87.79833,24.50848],[87.8024,24.50733],[87.80082,24.50588],[87.80153,24.50441],[87.796,24.50456],[87.79414,24.50114],[87.79663,24.50127],[87.79579,24.49981],[87.79851,24.49705],[87.79866,24.49449],[87.80126,24.49372],[87.80564,24.50061],[87.80312,24.50202],[87.80453,24.50274],[87.80262,24.50823],[87.80459,24.50866],[87.80458,24.51097],[87.80934,24.51452],[87.8117,24.51272],[87.81138,24.50905],[87.81429,24.50884],[87.81348,24.50534],[87.81723,24.50061],[87.81254,24.49971],[87.81341,24.49739],[87.81191,24.49665],[87.81293,24.49365],[87.81131,24.49359],[87.81168,24.49077],[87.81623,24.49094],[87.81712,24.49255],[87.82313,24.49461],[87.82141,24.4965],[87.82384,24.50044],[87.82815,24.49862],[87.82576,24.49062],[87.82443,24.4906],[87.82729,24.48927],[87.82272,24.48845],[87.81662,24.49015],[87.81456,24.48864],[87.8107,24.47636],[87.81835,24.47481],[87.81865,24.47226],[87.82267,24.47103],[87.82119,24.46669],[87.82398,24.46517],[87.82377,24.45846],[87.81893,24.45799],[87.81978,24.45453],[87.8132,24.45671],[87.81355,24.45462],[87.81078,24.45651],[87.80999,24.45489],[87.80314,24.454],[87.80001,24.44591],[87.80394,24.44161],[87.80082,24.44092],[87.80077,24.43733],[87.79456,24.4364],[87.79612,24.43502],[87.79224,24.42774],[87.79415,24.42625],[87.79549,24.42143],[87.78979,24.42066],[87.78883,24.41655],[87.78853,24.4145],[87.79156,24.41433],[87.79331,24.41247],[87.79271,24.41477],[87.79955,24.41221],[87.7999,24.40918],[87.80437,24.4127],[87.80632,24.42014],[87.81128,24.41783],[87.81259,24.41188],[87.80981,24.40575],[87.80848,24.40539],[87.80958,24.40701],[87.80708,24.40701],[87.80219,24.39998],[87.79691,24.40218],[87.79395,24.39929],[87.79407,24.39684],[87.79935,24.39421],[87.79936,24.38716],[87.8011,24.38222],[87.79382,24.38307],[87.78597,24.36249],[87.78369,24.36243],[87.77984,24.35842],[87.77277,24.34977],[87.77123,24.34444],[87.76818,24.34472],[87.7644,24.33933],[87.76257,24.33079],[87.76902,24.32792],[87.77063,24.32214],[87.76297,24.32131],[87.7616,24.30847],[87.75486,24.31025],[87.74821,24.30435],[87.74613,24.30123],[87.74742,24.29924],[87.74315,24.29678],[87.73757,24.29611],[87.73861,24.29449],[87.73226,24.29171],[87.7293,24.28842],[87.71367,24.2944],[87.7133,24.28403],[87.70701,24.27578],[87.70929,24.27063],[87.70589,24.26144],[87.69995,24.2627],[87.69739,24.25991],[87.69036,24.25785],[87.6892,24.25326],[87.68666,24.2509],[87.68754,24.24644],[87.67627,24.24897],[87.6739,24.24802],[87.67234,24.24358],[87.6622,24.24492],[87.66277,24.23843],[87.65917,24.23612],[87.65466,24.23853],[87.64829,24.25063],[87.63878,24.25438],[87.64071,24.24843],[87.63437,24.24165],[87.63365,24.23653],[87.64395,24.23547],[87.64663,24.23153],[87.64479,24.2294],[87.6465,24.22549],[87.63776,24.21724],[87.63861,24.21399],[87.65434,24.20773],[87.65799,24.20979],[87.66714,24.2067],[87.66944,24.21012],[87.67558,24.20833],[87.67589,24.19976],[87.67728,24.1986],[87.67635,24.19373],[87.68216,24.19251],[87.68627,24.18943],[87.69861,24.18781],[87.69867,24.1808],[87.70237,24.18076],[87.7029,24.1792],[87.69681,24.16663],[87.6957,24.16159],[87.69699,24.15925],[87.69442,24.15024],[87.68885,24.15174],[87.68481,24.14982],[87.68224,24.15096],[87.67873,24.14808],[87.67559,24.15186],[87.67345,24.15154],[87.66842,24.15457],[87.66734,24.15298],[87.66432,24.15759],[87.65755,24.1589],[87.65679,24.15601],[87.65313,24.15872],[87.65187,24.1577],[87.65362,24.1571],[87.653,24.15598],[87.6422,24.15305],[87.64008,24.15723],[87.63271,24.15969],[87.63158,24.16427],[87.62438,24.16519],[87.62222,24.16338],[87.61528,24.16612],[87.61334,24.16444],[87.6083,24.16578],[87.6066,24.16415],[87.60637,24.16064],[87.59546,24.16138],[87.59272,24.16026],[87.58735,24.16155],[87.58501,24.16449],[87.5814,24.16248],[87.58155,24.15929],[87.57615,24.16128],[87.57432,24.16018],[87.57711,24.15653],[87.59388,24.14534],[87.59446,24.1423],[87.60496,24.13292],[87.61023,24.13253],[87.60233,24.12711],[87.59802,24.12811],[87.59564,24.12623],[87.59101,24.12701],[87.58702,24.12374],[87.5826,24.11312],[87.5766,24.11226],[87.5742,24.10799],[87.57434,24.1002],[87.58022,24.08637],[87.57091,24.08838],[87.56837,24.08557],[87.56253,24.0846],[87.55992,24.08197],[87.55392,24.08879],[87.54664,24.08542],[87.54306,24.08609],[87.54237,24.0912],[87.53538,24.09582],[87.5331,24.0998],[87.53219,24.10835],[87.52708,24.10655],[87.52191,24.11367],[87.51612,24.11421],[87.5111,24.112],[87.50439,24.11418],[87.49762,24.11897],[87.49576,24.11279],[87.50041,24.10184],[87.49756,24.09788],[87.49577,24.099],[87.49671,24.09358],[87.49225,24.09381],[87.48983,24.09011],[87.49739,24.08566],[87.50832,24.08543],[87.51075,24.08225],[87.50686,24.07972],[87.50608,24.07559],[87.50259,24.07379],[87.49827,24.07653],[87.49272,24.0769],[87.49061,24.07059],[87.49478,24.0668],[87.49985,24.06516],[87.49873,24.06153],[87.49528,24.05995],[87.49351,24.05416],[87.50939,24.04695],[87.51198,24.03584],[87.50359,24.03183],[87.50293,24.02608],[87.49688,24.02545],[87.49148,24.01862],[87.4822,24.01618],[87.47613,24.01227],[87.47235,24.01634],[87.46889,24.01405],[87.46165,24.01324],[87.45936,24.01882],[87.45829,24.01669],[87.4523,24.01654],[87.45089,24.01802],[87.44618,24.01377],[87.44453,24.0151],[87.43834,24.01355],[87.4387,24.00894],[87.44139,24.01137],[87.44876,24.01137],[87.44935,24.00878],[87.44384,24.00697],[87.44525,24.00202],[87.4555,24.00191],[87.45515,24.0003],[87.46169,23.99487],[87.46217,23.98907],[87.46039,23.98383],[87.4495,23.98796],[87.44572,23.98209],[87.43677,23.98212],[87.42922,23.98645],[87.42772,23.99235],[87.42323,23.9937],[87.42141,23.99231],[87.42037,23.99343],[87.41657,23.99265],[87.403,23.99751],[87.39462,24.00275],[87.38015,24.00408],[87.3791,24.00652],[87.37512,24.00895],[87.36042,24.01309],[87.35813,24.01183],[87.35701,24.00611],[87.35199,23.99918],[87.33767,24.00002],[87.32817,23.99867],[87.32203,24.00305],[87.31917,24.00848],[87.32363,24.00989],[87.32319,24.01264],[87.32769,24.01855],[87.3358,24.02068],[87.33629,24.02603],[87.33958,24.02652],[87.33712,24.03431],[87.32701,24.03286],[87.31576,24.03556],[87.30737,24.03183],[87.29258,24.03344],[87.28746,24.02886],[87.27889,24.03333],[87.27552,24.03295],[87.2676,24.03776],[87.26073,24.03739],[87.25353,24.04296],[87.2454,24.04506],[87.24128,24.04189],[87.2405,24.0384],[87.23443,24.03249],[87.23528,24.02685],[87.23289,24.02374],[87.23503,24.02018],[87.24456,24.01664],[87.24091,24.01191],[87.2505,23.99704],[87.25341,23.99624],[87.25343,23.99921],[87.26203,24.00322],[87.26416,24.00061],[87.26522,23.99394],[87.26826,23.9891],[87.26691,23.98221],[87.26262,23.98126],[87.26038,23.97216],[87.26153,23.96758],[87.26587,23.96566],[87.27093,23.96747],[87.27587,23.96542],[87.27979,23.96056],[87.29325,23.95863],[87.28977,23.9495],[87.29082,23.94167],[87.28416,23.93831],[87.28401,23.92957],[87.2882,23.9269],[87.28354,23.92091],[87.29164,23.9154],[87.29125,23.9051],[87.29503,23.90234],[87.28822,23.89855],[87.29111,23.89328],[87.2845,23.88892],[87.28553,23.88404],[87.28377,23.88563],[87.28349,23.88945],[87.28141,23.88851],[87.27543,23.88475],[87.27493,23.88175],[87.26915,23.87458],[87.25905,23.88317],[87.26338,23.88248],[87.26198,23.88447],[87.26225,23.88852],[87.25844,23.89409],[87.25889,23.89954],[87.25457,23.89997],[87.25876,23.90329],[87.25828,23.90631],[87.25216,23.91303],[87.24512,23.9082],[87.24655,23.9056],[87.2444,23.90309],[87.24544,23.89528],[87.24306,23.89338],[87.24406,23.89173],[87.24258,23.88815],[87.24274,23.88411],[87.24457,23.88213],[87.24149,23.87641],[87.24153,23.86966],[87.24873,23.86874],[87.24507,23.86486],[87.24648,23.86281],[87.24429,23.86024],[87.2443,23.85694],[87.24665,23.85448],[87.24906,23.85554],[87.25,23.85004],[87.25494,23.84704],[87.25129,23.84051],[87.24768,23.83896],[87.24893,23.83525],[87.24431,23.83205],[87.2464,23.83156],[87.2387,23.82643],[87.23088,23.82868],[87.23041,23.82565],[87.2279,23.82511],[87.22471,23.82764],[87.2174,23.82926],[87.21654,23.83171],[87.2224,23.83767],[87.22321,23.84562],[87.23048,23.84591],[87.23732,23.8544],[87.23368,23.85713],[87.2232,23.85824],[87.22121,23.86057],[87.2199,23.85877],[87.22058,23.85673],[87.21388,23.85056],[87.2122,23.85353],[87.20581,23.85633],[87.20307,23.84775],[87.20113,23.85019],[87.19627,23.84963],[87.19241,23.84365],[87.18858,23.84315],[87.1889,23.84728],[87.18733,23.84877],[87.19331,23.85251],[87.1961,23.85781],[87.19061,23.85738],[87.18734,23.85959],[87.1799,23.85197],[87.17393,23.85475],[87.17248,23.85868],[87.16575,23.86475],[87.15412,23.86542],[87.15135,23.86726],[87.14831,23.86625],[87.13306,23.87019],[87.12933,23.86863],[87.13002,23.85391],[87.13956,23.84841],[87.15372,23.82947],[87.15674,23.83154],[87.16031,23.83113],[87.16361,23.82917],[87.16331,23.82656],[87.16702,23.82453],[87.16438,23.81813],[87.15859,23.81453],[87.15498,23.80337],[87.15283,23.80291],[87.15049,23.79756],[87.14417,23.79905],[87.1399,23.80423],[87.13136,23.798],[87.12348,23.79926],[87.12178,23.79665],[87.11077,23.80036],[87.11053,23.80316],[87.11266,23.80536],[87.11842,23.80251],[87.11887,23.80524],[87.11643,23.8077],[87.10833,23.8082],[87.10732,23.80466],[87.10392,23.8044],[87.09749,23.81249],[87.0918,23.81537],[87.089,23.81381],[87.08671,23.80897],[87.08138,23.81012],[87.07344,23.81486],[87.06521,23.81672],[87.05159,23.82539],[87.03797,23.83921],[87.02423,23.84447],[87.011,23.8526],[86.98596,23.8596],[86.97324,23.86877],[86.96829,23.86748],[86.96566,23.86476],[86.96347,23.8527],[86.96041,23.84828],[86.94999,23.84598],[86.94515,23.84688],[86.93757,23.85041],[86.93397,23.85394],[86.93323,23.86672],[86.93102,23.87055],[86.91556,23.88243],[86.91328,23.88079],[86.90277,23.8812],[86.89592,23.87829],[86.88024,23.86232],[86.88092,23.86037],[86.88701,23.85644],[86.88635,23.84569],[86.88936,23.8393],[86.89282,23.83728],[86.89457,23.82635],[86.8903,23.8205],[86.88602,23.8212],[86.88646,23.82565],[86.88094,23.82901],[86.87952,23.83526],[86.87997,23.84528],[86.87422,23.84731],[86.86363,23.84446],[86.86265,23.84201],[86.86377,23.84057],[86.86127,23.83505],[86.85502,23.83056],[86.8529,23.82495],[86.84804,23.82365],[86.83879,23.82459],[86.84003,23.82248],[86.83695,23.81954],[86.82654,23.81394],[86.82045,23.81555],[86.81973,23.81772],[86.81551,23.81736],[86.81295,23.82075],[86.81379,23.82475],[86.81603,23.82501],[86.81478,23.82994],[86.81026,23.83529],[86.80476,23.83685],[86.79935,23.83182],[86.80089,23.82983],[86.80389,23.82968],[86.80748,23.82281],[86.81009,23.82141],[86.80336,23.8013],[86.80507,23.79889],[86.80908,23.79805],[86.81932,23.78593],[86.81984,23.78825],[86.82021,23.78393],[86.82585,23.77668],[86.82837,23.7602],[86.82794,23.7527],[86.82609,23.74921],[86.81229,23.74476],[86.80796,23.72946],[86.8082,23.72239],[86.79929,23.7037],[86.80024,23.69975],[86.80581,23.69586],[86.79904,23.68903],[86.78891,23.68783],[86.77076,23.68139],[86.74734,23.67879],[86.7444,23.68162],[86.74191,23.69027],[86.73906,23.69423],[86.72556,23.69844],[86.71495,23.69888],[86.70533,23.69714],[86.69815,23.69361],[86.6756,23.68709],[86.65643,23.68429],[86.63379,23.67517],[86.61157,23.67559],[86.59757,23.67376],[86.59601,23.67048],[86.59897,23.6655],[86.58081,23.65548],[86.57444,23.64805],[86.55662,23.63994],[86.5465,23.63764],[86.5354,23.63124],[86.5252,23.63018],[86.51191,23.63171],[86.49203,23.63828],[86.47955,23.63553],[86.47038,23.6305],[86.46181,23.6303],[86.45696,23.62609],[86.45417,23.61954],[86.4498,23.62071],[86.44643,23.61872],[86.4458,23.61529],[86.44885,23.6017],[86.44708,23.59814],[86.43618,23.59903],[86.43294,23.59448],[86.42123,23.5901],[86.41659,23.57839],[86.41356,23.57571],[86.41045,23.57586],[86.40771,23.57877],[86.40247,23.57711],[86.39946,23.57859],[86.38816,23.57395],[86.39083,23.56674],[86.38845,23.56364],[86.38938,23.5612],[86.38401,23.55917],[86.37856,23.54875],[86.37097,23.54262],[86.37163,23.54057],[86.36726,23.54019],[86.36854,23.53525],[86.36511,23.53269],[86.36828,23.52815],[86.36458,23.52172],[86.37126,23.51748],[86.37519,23.51034],[86.36868,23.5025],[86.36357,23.50161],[86.36644,23.49627],[86.36242,23.48425],[86.36544,23.48028],[86.37061,23.48449],[86.37329,23.48298],[86.3788,23.48479],[86.3773,23.48057],[86.37946,23.47364],[86.36409,23.47169],[86.36306,23.46489],[86.35736,23.46073],[86.35942,23.45709],[86.3597,23.45225],[86.35593,23.45038],[86.34972,23.45155],[86.35146,23.44209],[86.34035,23.43954],[86.3368,23.44018],[86.33644,23.44283],[86.33404,23.44463],[86.33479,23.44658],[86.32057,23.44329],[86.31786,23.43983],[86.31534,23.44004],[86.30577,23.43482],[86.30606,23.42958],[86.30929,23.42818],[86.31185,23.42445],[86.31448,23.42668],[86.31757,23.42647],[86.31572,23.42345],[86.31776,23.41641],[86.31187,23.41439],[86.31055,23.41136],[86.30007,23.41276],[86.29094,23.41759],[86.28959,23.42473],[86.291,23.42635],[86.28949,23.42906],[86.28162,23.42855],[86.27568,23.43038],[86.27183,23.42766],[86.26409,23.43077],[86.25658,23.43009],[86.25221,23.42677],[86.26025,23.41782],[86.25915,23.41331],[86.25148,23.41084],[86.24739,23.41114],[86.24561,23.4139],[86.24886,23.42247],[86.24399,23.42375],[86.23431,23.42089],[86.22987,23.43082],[86.23245,23.43253],[86.23146,23.43598],[86.23655,23.44488],[86.24237,23.44653],[86.24216,23.45112],[86.24747,23.45625],[86.24734,23.45838],[86.24557,23.45932],[86.23496,23.46055],[86.23262,23.46224],[86.23031,23.45132],[86.23075,23.44485],[86.22838,23.44288],[86.21573,23.44815],[86.20678,23.45],[86.20571,23.45368],[86.19889,23.45334],[86.19709,23.45553],[86.19589,23.45439],[86.19503,23.45789],[86.19144,23.46018],[86.18706,23.45809],[86.18172,23.46008],[86.18203,23.46697],[86.17935,23.46761],[86.17829,23.46984],[86.16034,23.46591],[86.15957,23.46884],[86.14883,23.46526],[86.14741,23.46841],[86.149,23.4752],[86.15156,23.47433],[86.15371,23.47574],[86.15361,23.47893],[86.15135,23.4822],[86.15756,23.48864],[86.15961,23.49344],[86.15741,23.50064],[86.16057,23.50367],[86.16239,23.50849],[86.1541,23.51273],[86.14863,23.51935],[86.15031,23.52523],[86.15537,23.52962],[86.15749,23.53701],[86.15805,23.54147],[86.15231,23.54912],[86.15282,23.55213],[86.15835,23.55998],[86.14832,23.56081],[86.14678,23.56169],[86.14724,23.56386],[86.14328,23.56405],[86.13927,23.55927],[86.13662,23.56285],[86.13125,23.55929],[86.13154,23.56276],[86.12693,23.56592],[86.12922,23.56774],[86.12667,23.5694],[86.12394,23.56927],[86.12063,23.56618],[86.11786,23.56735],[86.11584,23.5661],[86.10849,23.5697],[86.10598,23.56596],[86.09907,23.56651],[86.09393,23.56324],[86.08512,23.56683],[86.08087,23.56568],[86.07274,23.56884],[86.07743,23.57921],[86.0657,23.57896],[86.0556,23.58294],[86.05216,23.58615],[86.04206,23.58688],[86.04013,23.57526],[86.0375,23.57651],[86.03075,23.572],[86.02467,23.56205],[86.01782,23.55959],[86.01628,23.54732],[86.02765,23.54211],[86.02818,23.54052],[86.02366,23.53692],[86.02841,23.53259],[86.02895,23.52765],[86.03387,23.52267],[86.03468,23.51593],[86.03924,23.51504],[86.03775,23.51066],[86.03941,23.50466],[86.03819,23.49778],[86.05671,23.49508],[86.05793,23.49046],[86.05472,23.49017],[86.05384,23.48706],[86.04396,23.48432],[86.03726,23.48592],[86.03146,23.48365],[86.02298,23.48651],[86.01673,23.48449],[86.00866,23.48431],[86.00719,23.48272],[86.00537,23.4835],[86.00322,23.48177],[85.99252,23.48033],[85.98897,23.47831],[85.98062,23.47815],[85.97751,23.47604],[85.96277,23.47624],[85.95711,23.47441],[85.95499,23.47102],[85.93283,23.47291],[85.92017,23.47724],[85.91524,23.48187],[85.91204,23.48084],[85.9072,23.48371],[85.8863,23.48205],[85.88715,23.48431],[85.88273,23.48095],[85.87546,23.47985],[85.87364,23.47673],[85.87,23.47495],[85.868,23.46545],[85.86249,23.46152],[85.86573,23.45991],[85.86363,23.45861],[85.8649,23.4547],[85.86193,23.44238],[85.86188,23.43906],[85.86418,23.43569],[85.86389,23.43136],[85.87665,23.42967],[85.88258,23.43058],[85.88663,23.42513],[85.88029,23.42239],[85.8896,23.414],[85.89144,23.41022],[85.8875,23.40813],[85.88673,23.4046],[85.89866,23.40502],[85.90152,23.40227],[85.90254,23.39711],[85.89855,23.39355],[85.88713,23.39646],[85.87081,23.38881],[85.87082,23.38607],[85.87843,23.38168],[85.87476,23.37678],[85.87517,23.35983],[85.88307,23.35078],[85.87258,23.34243],[85.86625,23.34152],[85.86548,23.33912],[85.8682,23.32978],[85.86301,23.32775],[85.85945,23.32206],[85.85069,23.31664],[85.84747,23.30969],[85.83838,23.3065],[85.82863,23.28228],[85.81967,23.26812],[85.82358,23.25905],[85.83861,23.24683],[85.83626,23.23794],[85.83969,23.22985],[85.83658,23.22053],[85.85135,23.22234],[85.85878,23.22061],[85.86381,23.22238],[85.86839,23.21828],[85.87655,23.2049],[85.88252,23.19873],[85.88342,23.19497],[85.88157,23.17026],[85.89454,23.15513],[85.90866,23.15397],[85.91411,23.14913],[85.92771,23.14857],[85.9289,23.15105],[85.93695,23.15024],[85.94269,23.15304],[85.95137,23.15173],[85.95761,23.16105],[85.97596,23.15479],[85.99244,23.15194],[86.00116,23.14835],[86.01345,23.14791],[86.0178,23.15471],[86.01999,23.15279],[86.01831,23.14814],[86.02455,23.14428],[86.02907,23.14607],[86.03464,23.14444],[86.03754,23.14711],[86.04452,23.14424],[86.04606,23.14171],[86.04593,23.13599],[86.05591,23.12274],[86.05411,23.11269],[86.05123,23.1095],[86.05126,23.10553],[86.0757,23.09464],[86.09005,23.09471],[86.09062,23.08943],[86.09802,23.0842],[86.10224,23.08653],[86.11023,23.08429],[86.11519,23.08566],[86.12071,23.08483],[86.12716,23.08692],[86.13394,23.08336],[86.13604,23.07724],[86.14626,23.07496],[86.14366,23.06774],[86.14404,23.06351],[86.14177,23.06012],[86.14198,23.05425],[86.15099,23.05154],[86.15364,23.0481],[86.15804,23.04618],[86.15602,23.03117],[86.16305,23.02829],[86.16544,23.03238],[86.16774,23.03256],[86.16639,23.02947],[86.17049,23.0264],[86.17008,23.02244],[86.17615,23.02028],[86.17898,23.02077],[86.18127,23.0147],[86.18121,23.01003],[86.18503,23.00538],[86.2084,23.00651],[86.2067,23.00028],[86.22269,22.9995],[86.22877,22.99512],[86.24171,22.99609],[86.24306,22.9981],[86.24535,22.9982],[86.2485,22.99491],[86.26056,22.99859],[86.26585,22.99798],[86.26824,22.99984],[86.26787,23.00116],[86.27717,23.00738],[86.28418,23.00692],[86.29212,23.01298],[86.29621,23.00968],[86.29938,23.00979],[86.30374,23.016],[86.30469,23.0153],[86.30224,23.01006],[86.30909,23.00705],[86.3089,23.00342],[86.31612,23.00007],[86.31979,23.0006],[86.32159,22.99744],[86.32593,22.9949],[86.33953,22.98981],[86.34061,22.99355],[86.3437,22.99649],[86.34764,22.99662],[86.35453,22.99297],[86.35443,22.99934],[86.3639,22.99958],[86.37178,22.99674],[86.37275,22.99815],[86.38356,22.99428],[86.38502,22.99526],[86.38541,22.98945],[86.38771,22.98531],[86.3948,22.98022],[86.39855,22.97989],[86.40108,22.98086],[86.40689,22.98972],[86.4084,22.98906],[86.41006,22.99113],[86.41329,22.99081],[86.41716,22.9932],[86.41733,22.99705],[86.41972,22.99678],[86.41825,22.99921],[86.41926,23.00027],[86.42531,22.99657],[86.4423,22.99323],[86.44642,22.98824],[86.45085,22.98835],[86.45155,22.99024],[86.47051,22.98889],[86.47573,22.99175],[86.48037,22.98982],[86.48706,22.99243],[86.49769,22.99204],[86.50115,22.99359],[86.50416,22.98611],[86.51378,22.97749],[86.50862,22.97304],[86.52119,22.97071],[86.52619,22.97261],[86.52684,22.97549],[86.52382,22.97713],[86.52814,22.98064],[86.53991,22.98458],[86.54561,22.99028],[86.54788,22.98694],[86.5475,22.98232],[86.55056,22.97799],[86.54408,22.96973],[86.54478,22.96569],[86.54037,22.9668],[86.5316,22.96521],[86.53004,22.95215],[86.52598,22.94761],[86.52141,22.95006],[86.51921,22.94824],[86.5127,22.94776],[86.50784,22.95088],[86.50258,22.95187],[86.5029,22.94897],[86.50078,22.94594],[86.49524,22.94685],[86.49454,22.94326],[86.48913,22.93724],[86.4853,22.94277],[86.47727,22.94609],[86.47793,22.94936],[86.47632,22.95118],[86.47098,22.94893],[86.46912,22.94451],[86.46535,22.94546],[86.45998,22.93506],[86.45436,22.93198],[86.45131,22.93325],[86.4468,22.93071],[86.44301,22.93067],[86.44201,22.92797],[86.43534,22.92519],[86.4362,22.92232],[86.44048,22.91949],[86.44151,22.91629],[86.45297,22.90246],[86.46543,22.90239],[86.46714,22.89993],[86.46463,22.89434],[86.46004,22.89208],[86.45625,22.88577],[86.45343,22.88587],[86.45481,22.87858],[86.45198,22.87292],[86.45077,22.86154],[86.43969,22.86426],[86.43497,22.86051],[86.43588,22.85912],[86.4334,22.85336],[86.43555,22.83592],[86.43885,22.83102],[86.42848,22.81934],[86.42252,22.80998],[86.42525,22.80654],[86.42339,22.80216],[86.42548,22.79931],[86.42256,22.79687],[86.42327,22.79192],[86.42096,22.79281],[86.41881,22.79068],[86.41633,22.79137],[86.41622,22.78886],[86.41868,22.78752],[86.41761,22.78368],[86.42148,22.78014],[86.42581,22.77975],[86.4301,22.77469],[86.43748,22.77126],[86.44842,22.76193],[86.45793,22.76336],[86.46018,22.76191],[86.46968,22.7521],[86.47364,22.7397],[86.48173,22.7302],[86.48154,22.72786],[86.49321,22.72639],[86.49468,22.72328],[86.49768,22.72287],[86.50001,22.72046],[86.51133,22.705],[86.51345,22.70717],[86.51151,22.71197],[86.51293,22.71662],[86.52033,22.71523],[86.52433,22.71943],[86.53513,22.71725],[86.5442,22.7216],[86.56139,22.7093],[86.56299,22.7062],[86.57224,22.69926],[86.58527,22.69108],[86.60253,22.68732],[86.60849,22.68399],[86.61163,22.67991],[86.62027,22.67789],[86.62353,22.67564],[86.62935,22.66669],[86.63604,22.66497],[86.64239,22.65701],[86.63863,22.65078],[86.63902,22.62531],[86.63538,22.61831],[86.63411,22.61039],[86.6386,22.60947],[86.63813,22.60122],[86.63943,22.59782],[86.64448,22.59449],[86.65703,22.5908],[86.65363,22.58181],[86.65952,22.57504],[86.67926,22.57446],[86.68465,22.57833],[86.71115,22.58239],[86.73149,22.57691],[86.75208,22.57852],[86.76686,22.57502],[86.76774,22.56698],[86.77193,22.56464],[86.77157,22.56106],[86.76662,22.55841],[86.7691,22.55458],[86.77519,22.5488],[86.78418,22.55029],[86.78929,22.549],[86.79026,22.54122],[86.78737,22.53817],[86.78896,22.53409],[86.78685,22.52685],[86.79292,22.52498],[86.79494,22.51398],[86.79319,22.51399],[86.79266,22.51132],[86.79651,22.50958],[86.79769,22.5064],[86.80083,22.5055],[86.80239,22.50304],[86.8008,22.50074],[86.79524,22.49938],[86.79389,22.49719],[86.79469,22.49433],[86.79919,22.49239],[86.8016,22.48883],[86.79257,22.47776],[86.78429,22.48124],[86.76902,22.48009],[86.76609,22.48193],[86.74987,22.48295],[86.74728,22.47478],[86.75106,22.46543],[86.75101,22.45671],[86.76317,22.44838],[86.75903,22.44581],[86.76187,22.4317],[86.76453,22.42726],[86.76647,22.42669],[86.78582,22.42435],[86.79389,22.42166],[86.80707,22.42126],[86.83129,22.411],[86.84635,22.39908],[86.84563,22.39152],[86.84088,22.38319],[86.84264,22.37221],[86.83229,22.34851],[86.8311,22.33476],[86.83211,22.32723],[86.83974,22.31893],[86.85012,22.31564],[86.86537,22.3081],[86.87224,22.30712],[86.87583,22.3015],[86.88779,22.29746],[86.88933,22.27376],[86.88753,22.27387],[86.88836,22.26137],[86.88632,22.25724],[86.88502,22.25855],[86.8835,22.25716],[86.88006,22.25926],[86.87644,22.25911],[86.87597,22.26065],[86.87322,22.25909],[86.87186,22.26006],[86.86626,22.25892],[86.86525,22.26096],[86.86343,22.25878],[86.85893,22.25798],[86.85109,22.26521],[86.84942,22.26334],[86.84655,22.26404],[86.84271,22.26163],[86.83784,22.26565],[86.83093,22.26322],[86.82396,22.26676],[86.81825,22.25372],[86.8167,22.25455],[86.81494,22.26706],[86.81359,22.26739],[86.80916,22.25025],[86.81059,22.24987],[86.80906,22.24664],[86.8072,22.24723],[86.80399,22.24358],[86.79995,22.24461],[86.79801,22.24702],[86.80111,22.2652],[86.79226,22.2663],[86.7957,22.24874],[86.79486,22.24317],[86.79925,22.23788],[86.80348,22.24322],[86.81202,22.24123],[86.80241,22.21755],[86.79187,22.22183],[86.79014,22.21874],[86.78904,22.21925],[86.78474,22.21505],[86.77907,22.21692],[86.77819,22.21849],[86.78447,22.2306],[86.79321,22.2242],[86.79491,22.22779],[86.78858,22.23166],[86.78919,22.23573],[86.77768,22.23659],[86.77434,22.23221],[86.77737,22.22552],[86.77641,22.21786],[86.77114,22.22035],[86.76253,22.21355],[86.75422,22.21144],[86.74978,22.21169],[86.74404,22.21598],[86.73081,22.21543],[86.72496,22.21802],[86.71889,22.19905],[86.72122,22.18939],[86.71637,22.18632],[86.71605,22.18172],[86.7193,22.17304],[86.71921,22.16704],[86.71789,22.1658],[86.71971,22.14728],[86.7277,22.14718],[86.73588,22.14943],[86.76499,22.14951],[86.77964,22.15365],[86.78664,22.1538],[86.78841,22.15777],[86.79385,22.15748],[86.80201,22.15071],[86.80374,22.13871],[86.80229,22.13282],[86.79941,22.13037],[86.80142,22.12924],[86.80479,22.13033],[86.80997,22.12741],[86.80641,22.11971],[86.81892,22.11664],[86.82462,22.11892],[86.83465,22.10426],[86.83374,22.0987],[86.84363,22.09631],[86.84662,22.10046],[86.84917,22.1],[86.85015,22.10378],[86.86022,22.10233],[86.86413,22.09935],[86.87114,22.09964],[86.90585,22.09193],[86.93429,22.09048],[86.94501,22.08597],[86.95796,22.08855],[86.96471,22.08574],[86.96782,22.08013],[86.97103,22.07834],[86.97175,22.07239],[86.99314,22.05525],[86.99776,22.05403],[87.00588,22.04872],[87.0144,22.04768],[87.01906,22.04178],[87.0267,22.03709],[87.02234,22.01949],[87.0274,22.00266],[87.031,21.99705],[87.03035,21.98534],[87.02123,21.97267],[87.01284,21.9496],[87.00943,21.94789],[87.00583,21.93753],[87.00463,21.92572],[87.00145,21.92456],[87.00356,21.92049],[86.99972,21.91325],[87.00468,21.91013],[87.00938,21.89978],[87.02293,21.89231],[87.02557,21.88689],[87.0251,21.88109],[87.02748,21.87974],[87.02608,21.87568],[87.03011,21.87448],[87.0356,21.86917],[87.04327,21.86927],[87.04613,21.8675],[87.04951,21.86817],[87.06131,21.86587],[87.07396,21.86724],[87.07929,21.86595],[87.08426,21.86812],[87.09793,21.86692],[87.09519,21.88062],[87.09885,21.89072],[87.09462,21.89829],[87.09057,21.90107],[87.0971,21.91394],[87.10235,21.91506],[87.10692,21.92232],[87.11282,21.92244],[87.11405,21.92432],[87.12464,21.92601],[87.14155,21.92402],[87.15281,21.93322],[87.1614,21.93492],[87.16328,21.9389],[87.1611,21.94398],[87.16262,21.94891],[87.16066,21.95227],[87.16479,21.9609],[87.16233,21.96168],[87.1636,21.96701],[87.16199,21.96761],[87.1682,21.97128],[87.17041,21.97994],[87.17763,21.96964],[87.19681,21.95955],[87.1995,21.95979],[87.20309,21.9629],[87.20868,21.96208],[87.2106,21.96436],[87.21409,21.96357],[87.21679,21.96027],[87.22279,21.95871],[87.22397,21.95684],[87.23181,21.95704],[87.23903,21.94097],[87.24244,21.93836],[87.24859,21.93695],[87.24981,21.93497],[87.24511,21.92541],[87.24977,21.91835],[87.2492,21.91515],[87.23698,21.9078],[87.23438,21.90064],[87.24225,21.89247],[87.25232,21.87711],[87.2514,21.86886],[87.2478,21.8609],[87.24903,21.85323],[87.25979,21.84883],[87.25849,21.84408],[87.26088,21.84074],[87.26542,21.83868],[87.26409,21.83562],[87.26501,21.83007],[87.26852,21.82949],[87.27088,21.82706],[87.26906,21.82343],[87.2642,21.82325],[87.2639,21.81858],[87.27519,21.81697],[87.27601,21.81117],[87.27376,21.81029],[87.27678,21.8055],[87.28285,21.80449],[87.28272,21.80276],[87.28414,21.80279],[87.28869,21.80559],[87.29059,21.81132],[87.29698,21.81155],[87.29589,21.80529],[87.29808,21.80487],[87.29838,21.80121],[87.30963,21.79892],[87.31066,21.79385],[87.314,21.79555],[87.31518,21.79392],[87.31653,21.79632],[87.32164,21.79767],[87.31894,21.79462],[87.31946,21.79072],[87.32544,21.79202],[87.32954,21.79057],[87.33181,21.79382],[87.33603,21.79354],[87.33857,21.78476],[87.34732,21.79296],[87.35552,21.79217],[87.35682,21.78945],[87.35566,21.78639],[87.35915,21.78548],[87.3594,21.78259],[87.37183,21.77876],[87.37302,21.77371],[87.36966,21.76543],[87.37388,21.76511],[87.37401,21.77281],[87.37854,21.77277],[87.38085,21.77544],[87.38506,21.77677],[87.39343,21.77621],[87.39397,21.7726],[87.39128,21.77241],[87.39148,21.77096],[87.39542,21.77094],[87.39553,21.76713],[87.39775,21.76658],[87.40119,21.76743],[87.40413,21.77148],[87.41919,21.76949],[87.42459,21.77158],[87.4315,21.76931],[87.43539,21.77067],[87.44555,21.76816],[87.44415,21.75649],[87.44523,21.74768],[87.44724,21.74621],[87.44543,21.74379],[87.44978,21.74328],[87.45432,21.73909],[87.45319,21.7378],[87.44529,21.7387],[87.44478,21.73403],[87.46918,21.73252],[87.46709,21.72757],[87.46386,21.72832],[87.46346,21.72538],[87.46741,21.71868],[87.47123,21.71741],[87.47359,21.71457],[87.4724,21.70734],[87.47018,21.70533],[87.47194,21.70244],[87.47149,21.69869],[87.47307,21.69914],[87.4722,21.69815],[87.47363,21.69711],[87.47123,21.69618],[87.47198,21.69065],[87.46959,21.68935],[87.47084,21.68858],[87.47111,21.68389],[87.46861,21.68309],[87.46945,21.67873],[87.46673,21.67857],[87.4672,21.66413],[87.46128,21.66264],[87.46248,21.65844],[87.4605,21.65544],[87.46037,21.6514],[87.46126,21.65037],[87.47256,21.65247],[87.47196,21.64806],[87.47647,21.64693],[87.47517,21.64399],[87.48118,21.63602],[87.48061,21.63321],[87.48601,21.63224],[87.48453,21.62496],[87.48479,21.61126],[87.55172,21.63155],[87.55356,21.63805],[87.55659,21.63498],[87.56418,21.63437],[87.63195,21.6478],[87.64393,21.66311],[87.64658,21.66044],[87.64068,21.65638],[87.6415,21.65196],[87.64482,21.64968],[87.65141,21.64851],[87.67396,21.65253],[87.70849,21.66386],[87.73711,21.6782],[87.73937,21.68109],[87.73181,21.67963],[87.73122,21.682],[87.73666,21.68134],[87.74459,21.68543],[87.7477,21.6889],[87.74827,21.69255],[87.74373,21.6963],[87.74907,21.70081],[87.75116,21.69939],[87.75746,21.70023],[87.75182,21.69954],[87.7568,21.69811],[87.76017,21.70178],[87.76169,21.69793],[87.76968,21.69416],[87.78546,21.6942],[87.80507,21.70342],[87.81312,21.71032],[87.81514,21.71841],[87.81825,21.72146],[87.83398,21.73511],[87.86077,21.75332],[87.86181,21.75625],[87.8556,21.75264],[87.86253,21.75762],[87.86648,21.76665],[87.88353,21.78198],[87.88552,21.78999],[87.88327,21.79335],[87.89443,21.79579],[87.90296,21.80078],[87.90632,21.80116],[87.90676,21.79999],[87.91189,21.80205],[87.91322,21.8032],[87.90924,21.80196],[87.90915,21.8038],[87.91195,21.80484],[87.91208,21.80332],[87.91693,21.80583],[87.94062,21.82345],[87.94781,21.83198],[87.94516,21.83574],[87.94835,21.83337],[87.94922,21.8357],[87.95335,21.8372],[87.95551,21.8417],[87.96808,21.85477],[87.97066,21.86296],[87.97763,21.86864],[87.99718,21.89653],[88.00163,21.90533],[88.0,21.90546],[88.00366,21.906],[88.00182,21.90631],[88.01198,21.92092],[88.01367,21.93251],[88.01662,21.94021],[88.01565,21.94188],[88.01199,21.94129],[88.0108,21.94285],[88.01349,21.942],[88.01813,21.94377],[88.02566,21.96186],[88.03214,21.97135],[88.036,21.98218],[88.04961,22.00081],[88.05242,22.00732],[88.04997,22.01376],[88.05569,22.02018],[88.06308,22.01331],[88.08627,22.02338],[88.12581,22.04983],[88.15366,22.06359],[88.16367,22.07426],[88.17173,22.08007],[88.18341,22.09445],[88.18943,22.10808],[88.19011,22.11627],[88.18117,22.12574],[88.16883,22.14483],[88.16094,22.15059],[88.15798,22.15553],[88.15613,22.15544],[88.15712,22.15627],[88.13668,22.1842],[88.13204,22.18637],[88.12164,22.18677],[88.10337,22.1922],[88.10103,22.19056],[88.09515,22.19099],[88.09125,22.18666],[88.08782,22.18556],[88.0737,22.18713],[88.06669,22.18884],[88.04972,22.20477],[88.03478,22.20893],[88.02927,22.20778],[88.02701,22.20188],[88.02342,22.19969],[88.01744,22.19953],[88.00675,22.20263],[87.99777,22.20843],[87.99186,22.2245],[87.98327,22.23055],[87.98226,22.22914],[87.98621,22.22721],[87.98198,22.22867],[87.9817,22.23189],[87.97523,22.2334],[87.97617,22.22367],[87.98128,22.21899],[87.98387,22.21843],[87.98389,22.21407],[87.9734,22.22279],[87.97302,22.23382],[87.97108,22.23776],[87.95889,22.24447],[87.94764,22.25475],[87.94786,22.2588],[87.95593,22.26973],[87.96836,22.26473],[87.96811,22.25996],[87.96985,22.25617],[87.98649,22.23826],[87.99612,22.23828],[88.00014,22.24296],[88.00694,22.23914],[88.0065,22.23342],[88.02218,22.21777],[88.05301,22.21147],[88.06057,22.20577],[88.08299,22.2364],[88.08312,22.25635],[88.08461,22.25634],[88.08811,22.25333],[88.08768,22.24242],[88.08436,22.23368],[88.06905,22.2135],[88.07278,22.20948],[88.08779,22.20784],[88.10037,22.21002],[88.1168,22.20945],[88.13373,22.20162],[88.1414,22.20199],[88.1564,22.19856],[88.16341,22.1988],[88.17684,22.19389],[88.18614,22.18774],[88.18801,22.18803],[88.18948,22.18377],[88.20531,22.16454],[88.20382,22.16403],[88.20538,22.1642],[88.21043,22.14895],[88.2119,22.12855],[88.21624,22.12248],[88.21688,22.11204],[88.22084,22.10398],[88.22441,22.08992],[88.22316,22.07069],[88.2161,22.05189],[88.21331,22.03387],[88.19806,22.00787],[88.16808,21.97473],[88.15338,21.96432],[88.14975,21.95688],[88.1669,21.93627],[88.17105,21.92856],[88.17361,21.91181],[88.1646,21.89295],[88.16344,21.88367],[88.17434,21.86899],[88.17749,21.86156],[88.17897,21.86177],[88.18394,21.85469],[88.18611,21.85476],[88.1946,21.84556],[88.19979,21.83597],[88.2024,21.82274],[88.2007,21.81089],[88.20229,21.80708],[88.20392,21.80792],[88.20661,21.79687],[88.21156,21.78981],[88.21529,21.77803],[88.21396,21.76842],[88.21565,21.75731],[88.21121,21.72472],[88.21307,21.71826],[88.21949,21.70783],[88.22043,21.70188],[88.21892,21.69811],[88.21337,21.69369],[88.19923,21.68966],[88.19975,21.6827],[88.20586,21.67542],[88.2152,21.67455],[88.22456,21.67596],[88.22978,21.67317],[88.23353,21.66736],[88.23165,21.65628],[88.23749,21.64432],[88.23341,21.63405],[88.22111,21.62385],[88.21846,21.61593],[88.22227,21.61194],[88.23086,21.60944],[88.23628,21.60499],[88.2359,21.60199],[88.24556,21.58751],[88.24332,21.5829],[88.24467,21.5787],[88.23705,21.57654],[88.23953,21.57559],[88.24408,21.56633],[88.24842,21.56174],[88.25508,21.55813],[88.27648,21.55668],[88.29353,21.56303],[88.3103,21.58164],[88.30067,21.58831],[88.29493,21.59585],[88.2878,21.59669],[88.28442,21.60071],[88.28675,21.6046],[88.28503,21.6086],[88.2863,21.60967],[88.28678,21.61729],[88.28888,21.62033],[88.28778,21.62401],[88.29685,21.64261],[88.30265,21.66062],[88.30376,21.67024],[88.30117,21.68242],[88.28193,21.70625],[88.28379,21.70696],[88.27935,21.71408],[88.27543,21.72695],[88.26396,21.72894],[88.2615,21.73216],[88.26917,21.74515],[88.27086,21.74988],[88.2702,21.75364],[88.28172,21.76227],[88.27948,21.76573],[88.28184,21.76881],[88.28646,21.78365],[88.28297,21.78946],[88.28683,21.79165],[88.29055,21.7869],[88.29996,21.78141],[88.2991,21.77707],[88.30235,21.76857],[88.30948,21.73385],[88.30615,21.71768],[88.31107,21.71174],[88.3208,21.70874],[88.32908,21.70904],[88.32488,21.71911],[88.32544,21.72464],[88.32725,21.72649],[88.33112,21.72507],[88.33172,21.71816],[88.33389,21.71393],[88.33573,21.71393],[88.3443,21.72104],[88.3399,21.73947],[88.33977,21.75038],[88.33856,21.75136],[88.34281,21.76133],[88.35531,21.76689],[88.37463,21.76813],[88.37617,21.7814],[88.37937,21.78762],[88.40409,21.80009],[88.41115,21.80519],[88.41758,21.81172],[88.41742,21.81316],[88.42588,21.81452],[88.42555,21.81193],[88.42754,21.80957],[88.42993,21.8006],[88.43285,21.80057],[88.43316,21.80303],[88.43529,21.80112],[88.44516,21.80303],[88.45566,21.79369],[88.45987,21.79206],[88.46069,21.79543],[88.44864,21.80588],[88.44737,21.81299],[88.4491,21.81755],[88.45333,21.82195],[88.45551,21.82395],[88.46423,21.82593],[88.46886,21.83436],[88.47329,21.83753],[88.4842,21.8383],[88.48786,21.84038],[88.48878,21.8509],[88.48304,21.87203],[88.47507,21.88984],[88.45788,21.89453],[88.45066,21.90492],[88.44038,21.9057],[88.43431,21.89897],[88.42135,21.90303],[88.41751,21.89901],[88.41805,21.90261],[88.4212,21.90408],[88.4311,21.9012],[88.43876,21.90601],[88.44959,21.90566],[88.45993,21.89424],[88.47554,21.89036],[88.49216,21.88251],[88.49577,21.88366],[88.49691,21.88612],[88.49687,21.87648],[88.5011,21.8738],[88.50094,21.87172],[88.50467,21.86889],[88.51905,21.85969],[88.52537,21.85261],[88.52869,21.8556],[88.52966,21.85391],[88.53673,21.85622],[88.5392,21.86247],[88.53555,21.86434],[88.52929,21.87221],[88.51863,21.87561],[88.52972,21.8725],[88.53876,21.86324],[88.5377,21.8672],[88.53921,21.87326],[88.5465,21.87894],[88.53746,21.87856],[88.54703,21.88042],[88.54758,21.88206],[88.54605,21.89307],[88.53902,21.89911],[88.53957,21.90296],[88.54141,21.90473],[88.54103,21.90742],[88.56024,21.8989],[88.56525,21.89947],[88.56875,21.90408],[88.56743,21.90751],[88.56061,21.9129],[88.55264,21.91517],[88.54883,21.92027],[88.54859,21.93814],[88.54056,21.94955],[88.54254,21.95064],[88.54122,21.96599],[88.5349,21.96873],[88.54122,21.96716],[88.54404,21.97302],[88.55398,21.97636],[88.55973,21.9713],[88.56751,21.96077],[88.57081,21.95972],[88.57389,21.96109],[88.57534,21.96331],[88.5741,21.9779],[88.58414,21.98971],[88.58089,21.99553],[88.57124,22.00044],[88.57759,21.99861],[88.58116,22.00004],[88.57967,21.99811],[88.58528,21.99035],[88.59504,21.98872],[88.59941,21.99183],[88.60243,21.99725],[88.60897,22.00386],[88.62351,22.01146],[88.63488,22.01077],[88.63731,22.0086],[88.63849,22.00414],[88.63766,21.99997],[88.63262,21.99199],[88.62883,21.97148],[88.6279,21.95886],[88.63072,21.95436],[88.63824,21.94937],[88.64389,21.95239],[88.65682,21.95365],[88.67231,21.94745],[88.67862,21.94309],[88.68962,21.94972],[88.69067,21.95568],[88.69345,21.95566],[88.69558,21.95134],[88.69423,21.96597],[88.68965,21.97163],[88.69417,21.9707],[88.70267,21.98683],[88.7102,21.99595],[88.71367,21.99873],[88.73328,22.00666],[88.75146,22.00623],[88.75188,22.00094],[88.75039,21.99757],[88.74084,21.98796],[88.72549,21.97954],[88.72275,21.93215],[88.71656,21.9207],[88.71587,21.90355],[88.71325,21.88991],[88.69888,21.85907],[88.69604,21.84259],[88.71115,21.80689],[88.71234,21.79977],[88.71128,21.78698],[88.70481,21.77165],[88.69459,21.75344],[88.69376,21.74531],[88.7049,21.71826],[88.71141,21.68958],[88.71762,21.6835],[88.72791,21.67721],[88.74479,21.66083],[88.75,21.65817],[88.75712,21.66272],[88.77026,21.66572],[88.79216,21.65618],[88.79645,21.65592],[88.80794,21.66268],[88.80697,21.67577],[88.80993,21.70448],[88.80687,21.70665],[88.79933,21.7063],[88.7687,21.69369],[88.76384,21.69429],[88.75947,21.69701],[88.75655,21.70297],[88.75758,21.7087],[88.76043,21.71293],[88.76656,21.7171],[88.77757,21.72128],[88.77593,21.72537],[88.75761,21.7285],[88.75235,21.7333],[88.75084,21.73783],[88.75318,21.75204],[88.75977,21.7618],[88.7535,21.76311],[88.74834,21.76621],[88.74553,21.77324],[88.76412,21.78957],[88.77023,21.80545],[88.77483,21.81025],[88.77403,21.81677],[88.77704,21.82544],[88.78115,21.82517],[88.77644,21.81641],[88.7777,21.81052],[88.77167,21.80189],[88.76568,21.78636],[88.75013,21.77049],[88.76218,21.76754],[88.76721,21.76331],[88.76534,21.75915],[88.75715,21.75088],[88.7551,21.74448],[88.75587,21.73532],[88.77704,21.73244],[88.7899,21.73787],[88.78408,21.73982],[88.7835,21.74141],[88.79049,21.75003],[88.79057,21.74676],[88.78605,21.74285],[88.78615,21.74138],[88.79146,21.74008],[88.79383,21.73701],[88.7809,21.73196],[88.78439,21.72337],[88.78391,21.71907],[88.78072,21.71443],[88.76266,21.70443],[88.76271,21.70197],[88.76426,21.70037],[88.7708,21.70132],[88.78581,21.71193],[88.80298,21.71753],[88.80934,21.71576],[88.81459,21.71073],[88.81942,21.70073],[88.81744,21.68719],[88.82216,21.67347],[88.82244,21.66702],[88.82003,21.6579],[88.80449,21.63716],[88.81249,21.62928],[88.81729,21.62731],[88.81864,21.62899],[88.82367,21.62554],[88.82478,21.62734],[88.82812,21.62425],[88.84559,21.6191],[88.84647,21.62337],[88.84409,21.62645],[88.84929,21.62707],[88.84991,21.62808],[88.84716,21.6298],[88.85409,21.63345],[88.86155,21.64094],[88.85736,21.65319],[88.84316,21.68245],[88.84042,21.69927],[88.84116,21.71688],[88.84506,21.73035],[88.85211,21.74415],[88.86314,21.75484],[88.8647,21.76144],[88.86374,21.76359],[88.83258,21.7662],[88.82455,21.77437],[88.82148,21.78144],[88.82242,21.79426],[88.83083,21.80807],[88.82222,21.82598],[88.82007,21.83776],[88.83254,21.867],[88.83822,21.87666],[88.8398,21.88636],[88.83339,21.89638],[88.82763,21.90006],[88.81328,21.90383],[88.79904,21.9221],[88.79987,21.92675],[88.80434,21.93269],[88.80575,21.93807],[88.80944,21.94074],[88.81614,21.94177],[88.82388,21.94105],[88.83079,21.93745],[88.84211,21.92476],[88.85824,21.92036],[88.86767,21.92377],[88.87537,21.92433],[88.882,21.92409],[88.88668,21.92171],[88.89705,21.92413],[88.90436,21.92789],[88.90635,21.93216],[88.90562,21.94957],[88.90829,21.96808],[88.90809,21.97147],[88.90523,21.97467],[88.90313,21.98079],[88.90165,21.99686],[88.90247,22.00385],[88.90808,22.00974],[88.91511,22.00846],[88.91196,21.99544],[88.916,21.98174],[88.91781,21.98093],[88.93293,21.99079],[88.93392,21.9927],[88.93064,22.00052],[88.93565,22.01181],[88.95359,22.01219],[88.9644,22.00609],[88.971,22.00009],[88.96935,21.9938],[88.98378,21.98911],[88.98629,21.98682],[88.98902,21.98341],[88.98829,21.97439],[88.9906,21.97527],[89.00032,21.98767],[89.01374,21.99653],[89.02479,21.9978],[89.02744,22.0011],[89.03038,22.00105],[89.02717,21.99751],[89.01549,21.99498],[89.00123,21.9864],[89.01182,21.98426],[89.01433,21.97999],[89.0141,21.97672],[89.01245,21.97296],[88.99929,21.96001],[89.0,21.95806],[88.99717,21.95724],[88.99739,21.95025],[89.00193,21.94566],[89.0141,21.94062],[89.02831,21.92869],[89.03514,21.92699],[89.06799,21.93165],[89.07626,21.95937],[89.07967,21.98397],[89.07686,22.00841],[89.07274,22.01926],[89.05533,22.04036],[89.04328,22.06167],[89.03786,22.09421],[89.04162,22.10562],[89.05076,22.1162],[89.06146,22.12106],[89.07884,22.13454],[89.09477,22.14279],[89.09804,22.14754],[89.09871,22.15187],[89.09655,22.15671],[89.09115,22.15825],[89.07685,22.14544],[89.07335,22.14532],[89.07107,22.14728],[89.06425,22.1644],[89.06395,22.1691],[89.06486,22.17522],[89.07217,22.18707],[89.07161,22.19689],[89.03889,22.23069],[89.03654,22.23637],[89.0342,22.25826],[89.03032,22.26008],[89.01947,22.25437],[89.01388,22.25396],[89.01294,22.25856],[89.01979,22.26544],[89.02047,22.2685],[88.9951,22.28626],[88.9949,22.29334],[88.99944,22.29701],[89.00783,22.29836],[89.02149,22.29439],[89.02438,22.29604],[89.0243,22.29843],[89.01622,22.30656],[89.01037,22.31553],[89.00042,22.32428],[88.98932,22.32254],[88.98448,22.3267],[88.98875,22.34814],[88.98602,22.35759],[88.98935,22.36428],[88.98232,22.37349],[88.98528,22.3791],[88.99425,22.38873],[88.99004,22.39354],[88.97967,22.40059],[88.97191,22.40989],[88.98411,22.41833],[88.98866,22.42407],[89.00007,22.42984],[88.99909,22.43322],[88.99124,22.44043],[88.98849,22.44511],[88.99414,22.45531],[88.99612,22.46895],[88.99267,22.4735],[88.98098,22.48247],[88.97469,22.49624],[88.96791,22.53457],[88.96186,22.54873],[88.95697,22.55291],[88.94447,22.556],[88.9407,22.56135],[88.94151,22.57547],[88.93851,22.58801],[88.93894,22.59221],[88.9564,22.6061],[88.95965,22.61135],[88.96008,22.61663],[88.95616,22.61876],[88.94145,22.61815],[88.93495,22.6212],[88.93296,22.6261],[88.93192,22.63892],[88.92711,22.64965],[88.92987,22.65121],[88.92869,22.65136],[88.92946,22.65383],[88.9312,22.65289],[88.93056,22.65155],[88.93331,22.65198],[88.93555,22.65571],[88.9333,22.6567],[88.93558,22.65903],[88.93906,22.66041],[88.94187,22.65956],[88.94503,22.66239],[88.94789,22.67759],[88.95559,22.68599],[88.96164,22.68522],[88.96059,22.68721],[88.96237,22.69497],[88.95611,22.70398],[88.95115,22.70698],[88.94837,22.70542],[88.9279,22.71807],[88.92521,22.72793],[88.91816,22.73038],[88.91569,22.73654],[88.9166,22.74393],[88.91796,22.74748],[88.92078,22.74924],[88.92075,22.7532],[88.91765,22.75521],[88.91289,22.75427],[88.911,22.75773],[88.91783,22.77001],[88.92582,22.76987],[88.9267,22.77425],[88.92476,22.77496],[88.92391,22.77956],[88.92938,22.78023],[88.92881,22.78318],[88.93565,22.78186],[88.93567,22.79023],[88.93829,22.79108],[88.93809,22.79297],[88.94331,22.79034],[88.9496,22.7973],[88.95789,22.79586],[88.9599,22.80713],[88.95536,22.80881],[88.95552,22.81181],[88.9599,22.8144],[88.9631,22.81933],[88.96413,22.82919],[88.96846,22.84504],[88.9623,22.85357],[88.9583,22.85647],[88.95741,22.86255],[88.9531,22.86417],[88.9536,22.86748],[88.94974,22.87285],[88.94969,22.87685],[88.94537,22.88067],[88.94203,22.87996],[88.93995,22.87485],[88.92833,22.87249],[88.92459,22.87554],[88.92254,22.8801],[88.91873,22.87725],[88.91623,22.87754],[88.91545,22.88021],[88.9123,22.87992],[88.91204,22.87858],[88.91121,22.8802],[88.90943,22.87986],[88.9123,22.88101],[88.90926,22.88145],[88.90888,22.88502],[88.90542,22.88582],[88.90566,22.88711],[88.90814,22.88706],[88.90597,22.88763],[88.9051,22.88982],[88.90783,22.89362],[88.89793,22.89795],[88.90104,22.90592],[88.89568,22.91307],[88.90554,22.91457],[88.90814,22.91978],[88.90376,22.92292],[88.89102,22.92715],[88.88689,22.93321],[88.89274,22.93793],[88.89426,22.952],[88.87927,22.95401],[88.87608,22.9487],[88.87447,22.94816],[88.86932,22.95144],[88.86084,22.94296],[88.85944,22.94319],[88.85514,22.95792],[88.85705,22.96888],[88.85866,22.97128],[88.86686,22.97482],[88.87097,22.97863],[88.86533,22.98555],[88.86387,22.99292],[88.86541,22.99933],[88.86451,23.00102],[88.86063,23.00267],[88.85146,23.00221],[88.84509,23.00986],[88.84681,23.01098],[88.85475,23.00695],[88.86858,23.00585],[88.87668,23.00325],[88.87975,23.00633],[88.87948,23.0096],[88.87434,23.01027],[88.87448,23.01411],[88.872,23.01676],[88.87247,23.01901],[88.87691,23.02279],[88.87766,23.02611],[88.87851,23.02401],[88.87904,23.02591],[88.88104,23.02569],[88.88005,23.03186],[88.88217,23.03641],[88.88451,23.037],[88.88412,23.04043],[88.88053,23.04088],[88.87489,23.0445],[88.87415,23.06578],[88.86958,23.06768],[88.86676,23.07144],[88.86695,23.07284],[88.86821,23.0717],[88.86763,23.07327],[88.86101,23.07731],[88.86556,23.07773],[88.86367,23.07946],[88.86636,23.08023],[88.86616,23.0861],[88.87029,23.086],[88.87164,23.08675],[88.8707,23.08887],[88.87464,23.08977],[88.8735,23.09555],[88.8718,23.09567],[88.87226,23.09737],[88.86906,23.09735],[88.87012,23.09809],[88.86792,23.09995],[88.86845,23.10107],[88.87121,23.10086],[88.8772,23.10432],[88.87898,23.1032],[88.87923,23.10489],[88.8836,23.10456],[88.88148,23.10902],[88.8828,23.11081],[88.8917,23.10768],[88.89731,23.11201],[88.89987,23.11192],[88.90144,23.11692],[88.90572,23.12186],[88.90592,23.12506],[88.91024,23.12746],[88.91033,23.12974],[88.9179,23.12908],[88.91987,23.14062],[88.92327,23.14512],[88.93084,23.14319],[88.93232,23.15608],[88.93058,23.1577],[88.93113,23.15995],[88.92784,23.16071],[88.92806,23.1626],[88.93015,23.16228],[88.92787,23.16304],[88.93402,23.16176],[88.93413,23.16453],[88.93267,23.16547],[88.93389,23.16982],[88.93534,23.17234],[88.93852,23.17334],[88.93909,23.1768],[88.94421,23.1762],[88.94358,23.17783],[88.94505,23.17789],[88.94623,23.18057],[88.95623,23.1819],[88.95779,23.1832],[88.95833,23.18961],[88.96192,23.19135],[88.96231,23.19314],[88.97534,23.19235],[88.97607,23.18186],[88.97794,23.18375],[88.98038,23.18255],[88.9784,23.18405],[88.9796,23.18693],[88.97816,23.18753],[88.98147,23.19249],[88.98009,23.19371],[88.98234,23.19486],[88.98526,23.20213],[88.98772,23.20265],[88.98604,23.20794],[88.98037,23.20971],[88.97967,23.21286],[88.9843,23.21574],[88.98739,23.21542],[88.99083,23.21267],[88.99572,23.2147],[88.98929,23.21585],[88.9844,23.22168],[88.98281,23.22177],[88.97956,23.21549],[88.98139,23.22221],[88.97593,23.22443],[88.97425,23.22257],[88.97873,23.21448],[88.97325,23.22238],[88.97088,23.22265],[88.96956,23.2203],[88.96478,23.218],[88.96407,23.21466],[88.95224,23.21103],[88.94649,23.20645],[88.94263,23.20611],[88.92952,23.21152],[88.92861,23.21495],[88.92984,23.21559],[88.92666,23.21795],[88.92359,23.21588],[88.92307,23.21807],[88.91674,23.21958],[88.92126,23.218],[88.92102,23.21601],[88.91761,23.21234],[88.91459,23.21347],[88.91667,23.22266],[88.91482,23.22377],[88.91497,23.22883],[88.91214,23.23122],[88.91223,23.2339],[88.90685,23.23597],[88.90523,23.23421],[88.90501,23.23594],[88.90237,23.23326],[88.90069,23.23375],[88.89975,23.23177],[88.89676,23.23287],[88.89496,23.23091],[88.89245,23.23233],[88.89089,23.23092],[88.88676,23.2313],[88.88617,23.22595],[88.88494,23.22945],[88.87553,23.23218],[88.8747,23.23416],[88.86216,23.23423],[88.8613,23.23194],[88.8592,23.23495],[88.85382,23.23633],[88.85374,23.23411],[88.8514,23.23394],[88.85105,23.23083],[88.8449,23.23051],[88.84452,23.23318],[88.84073,23.23564],[88.83651,23.24331],[88.82834,23.23505],[88.82382,23.23341],[88.82328,23.23827],[88.8288,23.24487],[88.81508,23.251],[88.81146,23.25609],[88.80914,23.25123],[88.81048,23.24822],[88.8082,23.24569],[88.80905,23.24491],[88.8059,23.23748],[88.80653,23.23146],[88.80924,23.22852],[88.80851,23.22485],[88.81144,23.22155],[88.80579,23.21878],[88.79576,23.22017],[88.7898,23.21834],[88.7878,23.22228],[88.78337,23.22275],[88.78333,23.22134],[88.77873,23.22069],[88.77731,23.22389],[88.77442,23.22441],[88.77329,23.23101],[88.77656,23.23081],[88.77554,23.23449],[88.77806,23.23609],[88.77613,23.23632],[88.77557,23.23854],[88.77334,23.23845],[88.77429,23.24055],[88.77133,23.24138],[88.76954,23.24484],[88.7597,23.24576],[88.75909,23.24181],[88.75188,23.24018],[88.74691,23.24418],[88.73484,23.2475],[88.72519,23.25332],[88.71889,23.2548],[88.72441,23.27162],[88.7232,23.27329],[88.71437,23.27531],[88.71138,23.27822],[88.7119,23.28537],[88.70895,23.28974],[88.70531,23.29176],[88.69764,23.29174],[88.69636,23.30229],[88.70873,23.31271],[88.71124,23.31274],[88.71264,23.31074],[88.70784,23.30874],[88.70644,23.30434],[88.71545,23.3056],[88.71995,23.30326],[88.719,23.2979],[88.72464,23.2983],[88.72742,23.30201],[88.72695,23.31416],[88.72476,23.31796],[88.73042,23.31958],[88.73164,23.3189],[88.7287,23.31264],[88.7318,23.30803],[88.73926,23.30489],[88.7453,23.30782],[88.74588,23.31454],[88.74967,23.32147],[88.74562,23.32432],[88.7437,23.32791],[88.73266,23.32807],[88.73526,23.33806],[88.73905,23.34345],[88.73694,23.34615],[88.73318,23.34704],[88.73203,23.35199],[88.73434,23.35328],[88.7415,23.34931],[88.74595,23.34901],[88.74651,23.35059],[88.74375,23.35451],[88.74638,23.35633],[88.74572,23.35906],[88.74771,23.362],[88.75816,23.35994],[88.76543,23.36788],[88.76369,23.37201],[88.75854,23.37411],[88.76048,23.37605],[88.75877,23.37931],[88.76087,23.38063],[88.76136,23.38443],[88.76247,23.38441],[88.76133,23.38628],[88.76289,23.38721],[88.7603,23.38673],[88.7596,23.38456],[88.75691,23.3862],[88.75639,23.38841],[88.75294,23.38912],[88.75439,23.39508],[88.74994,23.39673],[88.74926,23.40055],[88.75113,23.40276],[88.75408,23.40253],[88.76123,23.40843],[88.76039,23.41129],[88.75899,23.41054],[88.75799,23.4118],[88.75847,23.41312],[88.75456,23.41419],[88.75444,23.41638],[88.75806,23.42539],[88.76018,23.42417],[88.7613,23.42659],[88.75966,23.42905],[88.76227,23.43157],[88.76101,23.43305],[88.76436,23.44242],[88.76317,23.44276],[88.76428,23.44586],[88.76296,23.44585],[88.7648,23.44649],[88.76431,23.44821],[88.76872,23.44843],[88.77032,23.44625],[88.77203,23.4488],[88.77328,23.44832],[88.7718,23.44658],[88.77333,23.44405],[88.77831,23.44358],[88.77849,23.44192],[88.78223,23.44131],[88.77883,23.43863],[88.77912,23.43729],[88.77956,23.43838],[88.7828,23.43721],[88.78116,23.43825],[88.78231,23.44037],[88.78434,23.4384],[88.78319,23.44185],[88.78507,23.4448],[88.78733,23.44329],[88.78757,23.44464],[88.78933,23.44423],[88.78938,23.44266],[88.78676,23.44205],[88.78873,23.4414],[88.79041,23.44139],[88.78991,23.44392],[88.79254,23.44383],[88.79304,23.4422],[88.79532,23.44302],[88.79333,23.44414],[88.79447,23.44748],[88.79001,23.44912],[88.79196,23.45129],[88.79062,23.45348],[88.79283,23.45538],[88.79085,23.45555],[88.78953,23.4591],[88.79285,23.46105],[88.79049,23.46019],[88.79196,23.46346],[88.78919,23.46428],[88.7899,23.46574],[88.78835,23.46586],[88.78957,23.46668],[88.78798,23.46688],[88.78731,23.46908],[88.7909,23.4719],[88.78974,23.47293],[88.79412,23.48101],[88.79936,23.48218],[88.79952,23.48515],[88.80141,23.48581],[88.79456,23.48558],[88.7985,23.49133],[88.80051,23.49113],[88.79831,23.4927],[88.79795,23.4955],[88.80079,23.49712],[88.79275,23.50287],[88.78971,23.50189],[88.7873,23.4975],[88.7845,23.49717],[88.78354,23.5008],[88.78765,23.50599],[88.78595,23.50724],[88.78638,23.50494],[88.78391,23.50227],[88.77204,23.49779],[88.76825,23.49013],[88.7685,23.48828],[88.77501,23.48239],[88.77489,23.47981],[88.7679,23.48086],[88.76321,23.48879],[88.76068,23.48992],[88.75787,23.48886],[88.75683,23.48618],[88.76171,23.48025],[88.76091,23.47839],[88.75367,23.47896],[88.7463,23.48294],[88.74335,23.47914],[88.7435,23.48132],[88.74142,23.47968],[88.74439,23.48302],[88.74269,23.4866],[88.7371,23.49207],[88.72957,23.4964],[88.7312,23.49832],[88.7304,23.50373],[88.72513,23.51183],[88.72337,23.51295],[88.71879,23.51193],[88.71492,23.50853],[88.70619,23.51705],[88.69947,23.51553],[88.69575,23.51731],[88.69643,23.52567],[88.69172,23.52454],[88.69117,23.53126],[88.68423,23.52933],[88.68612,23.53291],[88.68618,23.5378],[88.67834,23.54583],[88.67371,23.54883],[88.66773,23.54581],[88.66334,23.54732],[88.65978,23.54937],[88.66019,23.55284],[88.65425,23.55615],[88.65358,23.55976],[88.65516,23.56302],[88.64831,23.58043],[88.6509,23.5836],[88.65056,23.58537],[88.64376,23.58933],[88.6457,23.58942],[88.6441,23.59154],[88.63876,23.59074],[88.63827,23.59758],[88.64247,23.60082],[88.64343,23.60693],[88.64603,23.60803],[88.64553,23.60928],[88.64129,23.60892],[88.64053,23.61109],[88.63823,23.61074],[88.6371,23.60674],[88.63317,23.60924],[88.62945,23.60909],[88.62772,23.60654],[88.62494,23.60688],[88.62157,23.60475],[88.62104,23.60263],[88.61817,23.60176],[88.61379,23.60336],[88.60735,23.60019],[88.60493,23.60027],[88.60518,23.60173],[88.60727,23.60296],[88.60838,23.60186],[88.60909,23.60439],[88.60151,23.60685],[88.60627,23.61036],[88.5979,23.60627],[88.59654,23.60447],[88.59719,23.60195],[88.5837,23.60398],[88.58007,23.60297],[88.58126,23.60972],[88.58483,23.61315],[88.58532,23.61654],[88.58821,23.61557],[88.59409,23.6176],[88.59241,23.62654],[88.59498,23.62773],[88.59281,23.62918],[88.59426,23.63157],[88.59264,23.63494],[88.59376,23.64081],[88.57556,23.63876],[88.57107,23.63601],[88.56217,23.63709],[88.56337,23.64546],[88.55821,23.64915],[88.56275,23.65764],[88.56626,23.65685],[88.56961,23.65999],[88.56943,23.66606],[88.57382,23.66694],[88.57221,23.67375],[88.57441,23.67523],[88.57408,23.68097],[88.5729,23.68508],[88.56753,23.68618],[88.56875,23.6893],[88.56787,23.70128],[88.56451,23.71133],[88.56473,23.71307],[88.56788,23.71482],[88.56904,23.72757],[88.57423,23.72888],[88.57369,23.73297],[88.5766,23.73297],[88.57528,23.73824],[88.57367,23.7381],[88.57429,23.73371],[88.57201,23.73375],[88.57213,23.73944],[88.57429,23.73968],[88.57241,23.74758],[88.57026,23.74643],[88.57008,23.74808],[88.57413,23.7496],[88.57601,23.75465],[88.57792,23.75756],[88.58041,23.75789],[88.58081,23.76054],[88.57957,23.7747],[88.5716,23.77508],[88.56503,23.77729],[88.5598,23.78089],[88.56074,23.78402],[88.55604,23.78421],[88.5593,23.78598],[88.57127,23.78303],[88.57813,23.78658],[88.5827,23.79114],[88.58096,23.79509],[88.58164,23.79728],[88.58736,23.79659],[88.59162,23.79783],[88.59295,23.79924],[88.59239,23.80448],[88.5962,23.80489],[88.59605,23.80639],[88.59361,23.80621],[88.59316,23.80796],[88.58761,23.81047],[88.58876,23.81278],[88.58616,23.81276],[88.58672,23.81109],[88.58475,23.81229],[88.58515,23.81365],[88.58952,23.81361],[88.59047,23.81085],[88.59406,23.81121],[88.59446,23.80885],[88.59507,23.81068],[88.59846,23.8108],[88.60213,23.81722],[88.59966,23.82183],[88.58839,23.82778],[88.58652,23.83118],[88.5872,23.84392],[88.58858,23.84829],[88.59152,23.85112],[88.59109,23.85302],[88.58427,23.85505],[88.57838,23.85067],[88.57644,23.85496],[88.57798,23.85771],[88.57564,23.86155],[88.58247,23.8625],[88.58269,23.86674],[88.58471,23.86618],[88.5843,23.86951],[88.58622,23.86932],[88.58749,23.87145],[88.59382,23.86916],[88.5991,23.86948],[88.60805,23.86235],[88.60995,23.86521],[88.60899,23.87275],[88.61644,23.87651],[88.62482,23.87511],[88.62552,23.87236],[88.62396,23.86788],[88.62641,23.86494],[88.63229,23.86649],[88.63773,23.87139],[88.64208,23.86808],[88.6458,23.8697],[88.65151,23.86657],[88.65399,23.86725],[88.65349,23.86547],[88.65461,23.86872],[88.66065,23.86862],[88.66099,23.8707],[88.66759,23.86944],[88.66342,23.878],[88.66428,23.88242],[88.6754,23.88387],[88.68294,23.88862],[88.68839,23.90148],[88.70042,23.89885],[88.70076,23.90108],[88.70434,23.89917],[88.70555,23.90235],[88.70329,23.8999],[88.7024,23.90351],[88.7012,23.90232],[88.70138,23.90461],[88.69996,23.905],[88.70386,23.90719],[88.70136,23.90645],[88.70176,23.90821],[88.69974,23.90803],[88.69933,23.91018],[88.70092,23.91229],[88.70473,23.91257],[88.7064,23.91627],[88.713,23.9125],[88.71507,23.91411],[88.71499,23.91603],[88.72295,23.91632],[88.72488,23.91283],[88.73059,23.91361],[88.72982,23.91091],[88.7334,23.91098],[88.733,23.9132],[88.73544,23.91462],[88.73289,23.92273],[88.73555,23.92292],[88.73418,23.92827],[88.73716,23.92905],[88.73493,23.93292],[88.73656,23.93352],[88.74027,23.93022],[88.74343,23.93017],[88.74002,23.93829],[88.74156,23.93891],[88.73877,23.94954],[88.74249,23.95103],[88.74025,23.95392],[88.73747,23.95336],[88.73358,23.95708],[88.73512,23.95875],[88.73249,23.96113],[88.73573,23.96343],[88.73705,23.97043],[88.73627,23.97907],[88.73824,23.98299],[88.74285,23.98495],[88.74967,23.98526],[88.76425,23.98165],[88.76895,23.9822],[88.7684,23.98606],[88.76242,23.99677],[88.76205,24.00428],[88.76019,24.00606],[88.75259,24.00664],[88.74638,24.00446],[88.74502,24.00553],[88.73645,23.99564],[88.7329,23.99482],[88.72905,23.99611],[88.73164,24.01189],[88.73468,24.01749],[88.74899,24.02216],[88.75749,24.0321],[88.74204,24.03285],[88.74185,24.03525],[88.72475,24.04161],[88.72464,24.0477],[88.74111,24.04855],[88.74163,24.05712],[88.73373,24.06617],[88.7281,24.06409],[88.72546,24.06544],[88.72345,24.06867],[88.72366,24.07302],[88.70401,24.08969],[88.70191,24.09418],[88.70027,24.0943],[88.70143,24.10395],[88.69997,24.10954],[88.69468,24.10956],[88.69319,24.11115],[88.69748,24.12053],[88.70102,24.12168],[88.707,24.11914],[88.74649,24.14706],[88.74338,24.15208],[88.74034,24.16331],[88.73346,24.169],[88.73141,24.17339],[88.73526,24.2115],[88.7345,24.22223],[88.74096,24.25392],[88.73777,24.26103],[88.73816,24.26551],[88.73544,24.2765],[88.72478,24.29779],[88.70623,24.3117],[88.69659,24.31535],[88.65899,24.31439],[88.65253,24.30503],[88.64984,24.30562],[88.64893,24.31092],[88.63429,24.30686],[88.63289,24.30799],[88.62849,24.30509],[88.62356,24.31568],[88.60669,24.31515],[88.6061,24.31026],[88.60332,24.3101],[88.58789,24.31435],[88.58719,24.32405],[88.56769,24.32665],[88.55513,24.29334],[88.52712,24.34438],[88.51861,24.34243],[88.5079,24.34248],[88.49601,24.35443],[88.48371,24.35702],[88.44643,24.37858],[88.43034,24.38373],[88.4249,24.38319],[88.41227,24.37681],[88.38934,24.37188],[88.38014,24.37425],[88.35707,24.37361],[88.33398,24.38139],[88.32659,24.38623],[88.31094,24.40145],[88.28493,24.42216],[88.2814,24.42971],[88.27192,24.44058],[88.26328,24.44597],[88.24895,24.44825],[88.22751,24.4555],[88.21049,24.45775],[88.1984,24.4625],[88.19133,24.46845],[88.18997,24.47417],[88.18497,24.48151],[88.17355,24.49305],[88.15827,24.5021],[88.14953,24.50379],[88.14076,24.51124],[88.09692,24.55645],[88.08947,24.56686],[88.08277,24.58169],[88.07113,24.59789],[88.06919,24.60328],[88.05234,24.62513],[88.04118,24.64331],[88.02794,24.64984],[88.02366,24.65539],[88.00876,24.66783],[88.0418,24.70479],[88.05197,24.71235],[88.05373,24.71087],[88.05597,24.71554],[88.06285,24.7216],[88.0725,24.74364],[88.06576,24.75071],[88.07455,24.76075],[88.06886,24.76375],[88.07111,24.76778],[88.06831,24.76915],[88.07245,24.77296],[88.07787,24.7691],[88.08902,24.7829],[88.09599,24.78022],[88.1061,24.77957],[88.1052,24.80034],[88.1111,24.81285],[88.12354,24.82311],[88.13078,24.80494],[88.13628,24.80528],[88.13384,24.81807],[88.1341,24.82987],[88.13191,24.83601],[88.13378,24.8362],[88.13466,24.83403],[88.14091,24.83438],[88.13963,24.83685],[88.14193,24.84047],[88.14129,24.84182],[88.14712,24.84363],[88.14488,24.84354],[88.14495,24.8511],[88.14686,24.85193],[88.14692,24.85014],[88.1504,24.84995],[88.1504,24.85335],[88.15094,24.84926],[88.15932,24.85016],[88.16044,24.84849],[88.16414,24.85026],[88.16225,24.85797],[88.16951,24.86083],[88.17502,24.86015],[88.17546,24.8618],[88.16589,24.86342],[88.15915,24.87206],[88.16374,24.87796],[88.16108,24.8804],[88.15543,24.8816],[88.15537,24.88364],[88.15268,24.88441],[88.15757,24.89226],[88.16073,24.889],[88.16565,24.88991],[88.16869,24.8882],[88.16751,24.88935],[88.16934,24.89245],[88.16528,24.89536],[88.16194,24.89307],[88.16203,24.89727],[88.15391,24.89959],[88.15546,24.90176],[88.15367,24.90634],[88.14897,24.91122],[88.14382,24.91422],[88.14037,24.91404],[88.13804,24.93616],[88.1455,24.93673],[88.14624,24.93418],[88.1498,24.93246],[88.15752,24.93352],[88.15969,24.938],[88.15839,24.94137],[88.16462,24.94138],[88.165,24.94621],[88.16884,24.9476],[88.17021,24.95036],[88.175,24.94873],[88.17366,24.9471],[88.17549,24.94624],[88.18358,24.95389],[88.18825,24.95157],[88.20173,24.9572],[88.22611,24.95971],[88.23029,24.95698],[88.23706,24.9458],[88.25256,24.93258],[88.26052,24.91918],[88.26422,24.90713],[88.26453,24.8993],[88.25827,24.87755],[88.26382,24.87679],[88.26721,24.87832],[88.26741,24.88731],[88.26898,24.89125],[88.27293,24.89637],[88.27608,24.8978],[88.27767,24.89692],[88.27573,24.8919],[88.2776,24.89168],[88.27813,24.88805],[88.28161,24.89079],[88.28319,24.88911],[88.28624,24.88917],[88.28569,24.88641],[88.29148,24.8894],[88.29685,24.88824],[88.29819,24.8851],[88.30201,24.88584],[88.30074,24.88219],[88.29798,24.88143],[88.30198,24.87473],[88.30192,24.87189],[88.30527,24.87248],[88.30749,24.87751],[88.31275,24.87989],[88.31225,24.88158],[88.31671,24.88065],[88.31737,24.88327],[88.32106,24.88347],[88.3221,24.87888],[88.32092,24.87603],[88.32648,24.87048],[88.33062,24.87014],[88.33311,24.87095],[88.33262,24.87243],[88.33526,24.87426],[88.33431,24.87767],[88.33899,24.87846],[88.34288,24.88437],[88.34264,24.88841],[88.34497,24.88907],[88.3446,24.89142],[88.34701,24.89243],[88.34388,24.89957],[88.33736,24.89967],[88.33278,24.89715],[88.33457,24.90056],[88.33405,24.90483],[88.32775,24.90432],[88.32428,24.91682],[88.32572,24.91889],[88.32976,24.91717],[88.33042,24.92005],[88.33659,24.91868],[88.33498,24.92082],[88.33453,24.92662],[88.33849,24.92679],[88.33718,24.93109],[88.34129,24.93524],[88.33991,24.9382],[88.3409,24.94063],[88.35011,24.94486],[88.35467,24.94203],[88.35799,24.9477],[88.36059,24.94902],[88.35898,24.95171],[88.36404,24.95329],[88.36626,24.95273],[88.36386,24.94874],[88.36659,24.94799],[88.36503,24.94701],[88.36668,24.94491],[88.3697,24.94555],[88.37123,24.94245],[88.37745,24.94299],[88.38161,24.93913],[88.38736,24.93952],[88.38725,24.94229],[88.3889,24.94367],[88.38954,24.94181],[88.39161,24.94296],[88.39417,24.94149],[88.39884,24.94532],[88.40186,24.9508],[88.40052,24.95489],[88.39739,24.95802],[88.39923,24.95909],[88.3934,24.96027],[88.3929,24.96485],[88.39631,24.96526],[88.39468,24.96617],[88.39525,24.96908],[88.39872,24.97304],[88.40381,24.97374],[88.40292,24.97106],[88.40571,24.97235],[88.40364,24.97464],[88.4051,24.97972],[88.4094,24.97744],[88.41095,24.97339],[88.41588,24.97315],[88.41743,24.97483],[88.41628,24.9802],[88.41232,24.9823],[88.41872,24.98318],[88.41661,24.98515],[88.41172,24.98548],[88.41461,24.99517],[88.41359,24.99688],[88.41197,24.99602],[88.41209,24.99881],[88.41796,24.99829],[88.42049,24.99969],[88.4193,25.0018],[88.42209,25.00692],[88.42549,25.0067],[88.42703,25.01229],[88.42557,25.01643],[88.42747,25.00765],[88.43052,25.00809],[88.43406,25.00545],[88.43654,25.00645],[88.43429,25.00692],[88.43688,25.01038],[88.43517,25.01327],[88.43774,25.01431],[88.43742,25.0115],[88.43943,25.01333],[88.44002,25.0115],[88.44221,25.01309],[88.43734,25.01579],[88.44117,25.01788],[88.43889,25.01801],[88.43832,25.02024],[88.44061,25.01879],[88.44151,25.02036],[88.43856,25.02231],[88.44499,25.02617],[88.44432,25.03003],[88.44566,25.03321],[88.45039,25.0338],[88.45266,25.03687],[88.44712,25.04171],[88.43784,25.04308],[88.43552,25.04868],[88.43497,25.05596],[88.43816,25.05729],[88.44234,25.06256],[88.44241,25.06606],[88.45108,25.07517],[88.45287,25.0793],[88.44814,25.08021],[88.44636,25.08296],[88.44724,25.08995],[88.4441,25.09971],[88.44781,25.10963],[88.44552,25.11334],[88.44207,25.11498],[88.4437,25.11836],[88.44229,25.11928],[88.44142,25.12751],[88.44746,25.12807],[88.44831,25.13087],[88.45083,25.13076],[88.45866,25.13557],[88.45692,25.13926],[88.45859,25.14026],[88.46,25.13878],[88.46089,25.14451],[88.45751,25.14785],[88.4614,25.14939],[88.46012,25.15203],[88.45704,25.15308],[88.45977,25.16075],[88.45639,25.1611],[88.45723,25.16462],[88.45277,25.16375],[88.4491,25.17157],[88.44205,25.17434],[88.44544,25.18015],[88.44185,25.18462],[88.44369,25.1973],[88.46343,25.19496],[88.46712,25.19724],[88.47177,25.19744],[88.46986,25.20096],[88.47448,25.20808],[88.47548,25.21338],[88.479,25.21311],[88.47995,25.21115],[88.49915,25.21039],[88.50005,25.20343],[88.51097,25.20235],[88.51227,25.20385],[88.52003,25.20054],[88.53778,25.19782],[88.53248,25.19377],[88.53434,25.19202],[88.53398,25.18752],[88.53733,25.1869],[88.53784,25.18906],[88.54078,25.18903],[88.54213,25.19396],[88.5461,25.19329],[88.54809,25.19522],[88.55761,25.19261],[88.55996,25.1909],[88.5598,25.18437],[88.55576,25.17897],[88.55934,25.17637],[88.56558,25.17509],[88.57083,25.17578],[88.5712,25.17734],[88.57507,25.17607],[88.57964,25.17682],[88.58148,25.18214],[88.58698,25.18224],[88.58936,25.18569],[88.59121,25.18509],[88.59196,25.18716],[88.5899,25.19258],[88.59271,25.19336],[88.59815,25.19043],[88.59908,25.19226],[88.6103,25.19802],[88.61272,25.20417],[88.61778,25.20349],[88.62091,25.20518],[88.63102,25.20171],[88.64289,25.20628],[88.6471,25.20426],[88.66423,25.20278],[88.66692,25.19875],[88.66913,25.19819],[88.67272,25.19833],[88.67582,25.20254],[88.67858,25.20309],[88.67931,25.2049],[88.67799,25.20555],[88.68008,25.2089],[88.68759,25.20915],[88.68866,25.20733],[88.71148,25.20766],[88.71274,25.2061],[88.71525,25.20638],[88.7175,25.20153],[88.7236,25.20224],[88.72451,25.19873],[88.72807,25.19839],[88.72948,25.20001],[88.73301,25.19876],[88.73279,25.19589],[88.73429,25.19477],[88.73348,25.19105],[88.73544,25.18914],[88.73455,25.18461],[88.74023,25.18504],[88.74256,25.18668],[88.74365,25.18341],[88.74901,25.18194],[88.75093,25.18282],[88.74858,25.17935],[88.7491,25.17685],[88.75242,25.17683],[88.75861,25.18662],[88.76703,25.18312],[88.7694,25.18985],[88.77283,25.18942],[88.77367,25.17936],[88.79889,25.17094],[88.80586,25.17045],[88.80595,25.17341],[88.81339,25.17427],[88.81485,25.18491],[88.81778,25.18625],[88.81791,25.1889],[88.82084,25.18851],[88.82097,25.19042],[88.82273,25.18953],[88.82283,25.19101],[88.82741,25.19216],[88.83038,25.20533],[88.83165,25.20655],[88.83675,25.20616],[88.83764,25.2109],[88.84236,25.21062],[88.8412,25.21359],[88.84376,25.21381],[88.84595,25.21089],[88.84775,25.21127],[88.84629,25.2091],[88.85018,25.21012],[88.84863,25.20635],[88.84992,25.20546],[88.84975,25.20174],[88.85161,25.20053],[88.85483,25.19982],[88.85851,25.20235],[88.86492,25.20059],[88.86438,25.18999],[88.87146,25.19133],[88.8716,25.19476],[88.87495,25.19622],[88.87255,25.19008],[88.87526,25.18572],[88.87526,25.17934],[88.88987,25.17836],[88.88942,25.18465],[88.89045,25.18471],[88.89905,25.18244],[88.89966,25.18035],[88.90365,25.17908],[88.91098,25.18031],[88.91267,25.17791],[88.91239,25.16796],[88.91839,25.16729],[88.92308,25.16491],[88.92414,25.17181],[88.92891,25.17439],[88.92781,25.17649],[88.93259,25.18088],[88.939,25.17919],[88.94119,25.17344],[88.94329,25.17349],[88.94588,25.17675],[88.94882,25.17658],[88.94965,25.18118],[88.94355,25.18303],[88.94782,25.18736],[88.94756,25.19445],[88.94242,25.19282],[88.93786,25.19351],[88.93391,25.19973],[88.93728,25.20284],[88.93644,25.21052],[88.93805,25.21174],[88.94132,25.21023],[88.94443,25.20611],[88.95073,25.20631],[88.95197,25.20768],[88.95492,25.20665],[88.95787,25.20911],[88.95941,25.20802],[88.96177,25.20907],[88.95804,25.21443],[88.95779,25.22312],[88.95195,25.23011],[88.95187,25.23327],[88.95436,25.23708],[88.95063,25.24394],[88.95517,25.25031],[88.95494,25.25333],[88.9563,25.25507],[88.95902,25.25436],[88.96978,25.25792],[88.97076,25.2604],[88.97465,25.26014],[88.97587,25.26405],[88.98227,25.26488],[88.98143,25.26713],[88.98391,25.26826],[88.98682,25.27445],[88.99238,25.27367],[88.99325,25.27007],[89.00533,25.26899],[89.00439,25.26506],[89.00763,25.26362],[89.00621,25.2761],[89.00944,25.29903],[89.0089,25.30307],[89.00584,25.30287],[89.00635,25.29989],[89.00338,25.29937],[89.00172,25.29609],[88.99258,25.2962],[88.98992,25.2993],[88.98519,25.2988],[88.98647,25.30189],[88.98349,25.30106],[88.98276,25.30315],[88.98531,25.30594],[88.97593,25.30619],[88.97468,25.3016],[88.97144,25.30094],[88.96101,25.3059],[88.96041,25.30141],[88.95764,25.30075],[88.95585,25.30268],[88.95286,25.302],[88.94996,25.30376],[88.93923,25.30066],[88.93416,25.30385],[88.92946,25.30408],[88.9278,25.3172],[88.928,25.3152],[88.92483,25.31492],[88.92401,25.31202],[88.91552,25.31203],[88.91558,25.31484],[88.91329,25.31546],[88.90974,25.32144],[88.91011,25.32343],[88.9061,25.32787],[88.90629,25.33769],[88.88765,25.3371],[88.8858,25.33298],[88.88854,25.32606],[88.88512,25.32562],[88.87644,25.3332],[88.8757,25.33728],[88.87369,25.33671],[88.87259,25.33948],[88.86648,25.34297],[88.86832,25.344],[88.86892,25.35221],[88.86375,25.35166],[88.86259,25.35507],[88.85571,25.3542],[88.85451,25.3632],[88.84569,25.36206],[88.84576,25.36356],[88.84018,25.36376],[88.84015,25.36808],[88.83784,25.36804],[88.83945,25.37375],[88.83848,25.3814],[88.84172,25.38161],[88.84048,25.38387],[88.8368,25.38435],[88.83696,25.39074],[88.83997,25.3913],[88.84128,25.39337],[88.84086,25.39763],[88.83802,25.39731],[88.83719,25.4018],[88.82375,25.40102],[88.82324,25.40952],[88.8123,25.41054],[88.81647,25.41367],[88.81833,25.41807],[88.82023,25.41794],[88.81964,25.41526],[88.83,25.41694],[88.83078,25.4232],[88.82856,25.42591],[88.82987,25.42759],[88.83445,25.42737],[88.83431,25.43166],[88.83247,25.43152],[88.83211,25.43692],[88.82688,25.43745],[88.82624,25.44448],[88.83183,25.44861],[88.82856,25.44876],[88.83791,25.45331],[88.83933,25.45834],[88.83518,25.46335],[88.83739,25.47281],[88.83359,25.47848],[88.82966,25.49025],[88.81366,25.48798],[88.80958,25.49884],[88.81048,25.5102],[88.80804,25.51313],[88.81053,25.52314],[88.80333,25.52432],[88.79238,25.5227],[88.79252,25.52088],[88.78533,25.51854],[88.78642,25.51641],[88.78244,25.51508],[88.77605,25.51642],[88.77622,25.51858],[88.76783,25.52181],[88.76746,25.52516],[88.75869,25.52524],[88.75821,25.5221],[88.76039,25.52205],[88.76106,25.5168],[88.75924,25.5112],[88.76588,25.50411],[88.76881,25.50338],[88.77081,25.50513],[88.76885,25.49854],[88.76008,25.49275],[88.7537,25.49411],[88.74811,25.4934],[88.74594,25.49181],[88.74503,25.48785],[88.74004,25.4893],[88.742,25.49479],[88.74392,25.49478],[88.74215,25.50499],[88.72649,25.50329],[88.72577,25.5019],[88.72155,25.50154],[88.72122,25.4997],[88.71441,25.4995],[88.71544,25.49852],[88.71335,25.49808],[88.71382,25.49557],[88.71188,25.49677],[88.71329,25.49998],[88.70752,25.49987],[88.70923,25.49672],[88.70805,25.49228],[88.71041,25.4806],[88.70645,25.47982],[88.70753,25.47695],[88.70043,25.47595],[88.6995,25.47119],[88.68854,25.47547],[88.663,25.47364],[88.66025,25.48178],[88.6526,25.48106],[88.64705,25.47782],[88.6427,25.49268],[88.64577,25.4941],[88.64843,25.49306],[88.64836,25.4964],[88.64081,25.49986],[88.62248,25.49696],[88.6197,25.50377],[88.61555,25.50532],[88.61303,25.50987],[88.60738,25.50859],[88.60995,25.51104],[88.60909,25.5163],[88.60243,25.51569],[88.59767,25.50655],[88.59551,25.50588],[88.59089,25.50936],[88.58835,25.50689],[88.58548,25.50973],[88.57286,25.5088],[88.56782,25.5112],[88.5683,25.51391],[88.56018,25.51241],[88.5531,25.51533],[88.55517,25.51962],[88.55493,25.52088],[88.55236,25.52079],[88.54801,25.51816],[88.54836,25.51375],[88.54467,25.51067],[88.54638,25.50834],[88.53995,25.5083],[88.53974,25.51056],[88.54125,25.51165],[88.53946,25.51572],[88.54041,25.51986],[88.53737,25.52102],[88.53803,25.52526],[88.54114,25.5261],[88.53948,25.52664],[88.54026,25.5328],[88.53943,25.53475],[88.5328,25.53222],[88.53309,25.5421],[88.5277,25.54333],[88.52349,25.53516],[88.51872,25.53828],[88.51969,25.54462],[88.5138,25.54752],[88.50909,25.54414],[88.50784,25.54773],[88.50033,25.55076],[88.49756,25.55557],[88.49899,25.55867],[88.49351,25.55885],[88.49371,25.56358],[88.49923,25.57403],[88.49992,25.58395],[88.49442,25.5845],[88.49332,25.58248],[88.49143,25.58295],[88.49131,25.58459],[88.48364,25.5865],[88.48263,25.58222],[88.48108,25.58201],[88.48078,25.58565],[88.47197,25.58524],[88.46956,25.58311],[88.46821,25.58364],[88.46977,25.58851],[88.46575,25.58691],[88.4671,25.58925],[88.46582,25.59183],[88.45947,25.59345],[88.45729,25.59599],[88.45765,25.59868],[88.44435,25.59692],[88.44517,25.60075],[88.44796,25.60158],[88.44962,25.60499],[88.44757,25.6056],[88.44701,25.61422],[88.4451,25.61378],[88.44516,25.61549],[88.4484,25.61855],[88.44873,25.62389],[88.45581,25.62858],[88.4546,25.62918],[88.45488,25.63504],[88.45653,25.64095],[88.45596,25.64442],[88.45399,25.64469],[88.45636,25.65292],[88.45391,25.65697],[88.45382,25.66494],[88.44403,25.66499],[88.43911,25.66778],[88.42459,25.66903],[88.42437,25.67039],[88.42038,25.6703],[88.41866,25.66767],[88.40169,25.67256],[88.40518,25.68422],[88.40183,25.68597],[88.39019,25.68401],[88.38935,25.68887],[88.39151,25.69352],[88.38523,25.69443],[88.38536,25.69565],[88.38328,25.69542],[88.38159,25.69742],[88.3732,25.69777],[88.37149,25.69654],[88.37056,25.70125],[88.37209,25.70777],[88.36979,25.70868],[88.36995,25.70996],[88.37319,25.70947],[88.37546,25.71481],[88.37425,25.71707],[88.37095,25.7157],[88.36576,25.71718],[88.3638,25.72013],[88.3568,25.7213],[88.35885,25.72807],[88.35621,25.72923],[88.35547,25.72718],[88.34762,25.73042],[88.34407,25.72944],[88.34095,25.73478],[88.33729,25.73543],[88.33759,25.73762],[88.32808,25.74006],[88.3258,25.73762],[88.32095,25.73747],[88.32027,25.7418],[88.31831,25.74271],[88.32076,25.74518],[88.31509,25.74655],[88.31717,25.75252],[88.29909,25.76087],[88.30021,25.7627],[88.29842,25.76323],[88.29974,25.7643],[88.2891,25.76782],[88.29084,25.77376],[88.28197,25.77559],[88.27885,25.77414],[88.27652,25.77488],[88.27719,25.77634],[88.27374,25.779],[88.26651,25.78245],[88.26982,25.78464],[88.27003,25.78862],[88.27187,25.79062],[88.26955,25.80818],[88.25966,25.81383],[88.25874,25.81123],[88.24905,25.81208],[88.24864,25.8134],[88.24692,25.80597],[88.24465,25.8072],[88.24456,25.80932],[88.23627,25.80944],[88.23569,25.80658],[88.23016,25.80261],[88.23352,25.80045],[88.23067,25.80045],[88.23226,25.79775],[88.23102,25.79675],[88.22819,25.79677],[88.22647,25.7995],[88.22281,25.79689],[88.21567,25.80143],[88.21538,25.79757],[88.21223,25.79791],[88.21099,25.79616],[88.21031,25.79321],[88.21191,25.79269],[88.21198,25.7941],[88.21268,25.79158],[88.21009,25.79116],[88.20951,25.78681],[88.19949,25.78996],[88.19904,25.79505],[88.19429,25.79805],[88.19481,25.79903],[88.19259,25.80025],[88.19349,25.80153],[88.18377,25.80169],[88.18103,25.79908],[88.1819,25.79616],[88.17991,25.79661],[88.18034,25.79326],[88.17611,25.79383],[88.17311,25.78661],[88.16467,25.78942],[88.15944,25.78761],[88.15907,25.78189],[88.15661,25.78162],[88.15646,25.77854],[88.15149,25.77555],[88.14711,25.77629],[88.14816,25.78141],[88.14524,25.77954],[88.14169,25.78015],[88.14478,25.7876],[88.14426,25.79364],[88.13454,25.79757],[88.12779,25.798],[88.12497,25.79622],[88.11448,25.79794],[88.11582,25.80475],[88.12011,25.81244],[88.11293,25.81561],[88.10702,25.81504],[88.11161,25.82165],[88.10891,25.823],[88.10739,25.82209],[88.10577,25.82625],[88.10117,25.82898],[88.10211,25.83162],[88.10692,25.83392],[88.10838,25.83831],[88.10734,25.84032],[88.10272,25.84089],[88.10143,25.8442],[88.10877,25.84654],[88.11387,25.8545],[88.10981,25.86036],[88.11035,25.86852],[88.10677,25.86897],[88.10503,25.86319],[88.10246,25.86181],[88.10102,25.86317],[88.10203,25.87157],[88.09972,25.87312],[88.09664,25.87117],[88.09417,25.87337],[88.09564,25.87684],[88.09892,25.87853],[88.0969,25.88024],[88.09828,25.8832],[88.10115,25.8847],[88.10302,25.88925],[88.09925,25.89399],[88.09028,25.89652],[88.09072,25.89824],[88.09381,25.899],[88.09037,25.90368],[88.09117,25.90648],[88.09437,25.90848],[88.09182,25.91411],[88.08649,25.91371],[88.08628,25.91747],[88.09468,25.93142],[88.10149,25.93494],[88.10497,25.9331],[88.10547,25.93428],[88.11146,25.93325],[88.11259,25.94347],[88.11792,25.94378],[88.12237,25.94837],[88.11789,25.95591],[88.11403,25.9583],[88.11518,25.96278],[88.11865,25.96259],[88.12427,25.96615],[88.12463,25.96792],[88.1207,25.96884],[88.11929,25.97156],[88.12144,25.97459],[88.12789,25.97661],[88.12903,25.98026],[88.12655,25.98092],[88.1319,25.9898],[88.12901,25.99281],[88.12969,25.99694],[88.13154,25.99691],[88.13252,25.99875],[88.1348,25.99803],[88.13572,26.00059],[88.14021,25.99695],[88.1437,26.00036],[88.14407,26.00756],[88.13971,26.01292],[88.1439,26.01484],[88.14719,26.01364],[88.15,26.01824],[88.15501,26.02004],[88.16094,26.01812],[88.16686,26.02172],[88.17832,26.02144],[88.18321,26.02678],[88.18066,26.03078],[88.17181,26.03278],[88.1712,26.03648],[88.17545,26.03971],[88.16954,26.0452],[88.17107,26.04855],[88.17359,26.04989],[88.17932,26.0465],[88.17606,26.05805],[88.17724,26.05977],[88.18023,26.05824],[88.18567,26.06366],[88.18149,26.06753],[88.18335,26.07289],[88.17355,26.07559],[88.16888,26.08058],[88.1686,26.08355],[88.16275,26.07689],[88.15838,26.07983],[88.1597,26.08363],[88.16487,26.08588],[88.16564,26.08814],[88.16492,26.08961],[88.16127,26.08871],[88.16159,26.09061],[88.15845,26.0953],[88.15934,26.09812],[88.16335,26.10042],[88.16334,26.10728],[88.17201,26.11029],[88.17344,26.11273],[88.1734,26.11899],[88.17839,26.12357],[88.17786,26.12577],[88.1739,26.12826],[88.18004,26.13917],[88.17675,26.14246],[88.17728,26.14806],[88.18176,26.14973],[88.18401,26.15345],[88.19041,26.15529],[88.19508,26.15222],[88.19592,26.15465],[88.1923,26.15504],[88.19154,26.15703],[88.19626,26.15968],[88.19679,26.16349],[88.19929,26.16308],[88.20106,26.15933],[88.20566,26.15924],[88.21622,26.1633],[88.21658,26.16517],[88.21174,26.16736],[88.21443,26.17],[88.21711,26.17027],[88.21832,26.16633],[88.22298,26.16618],[88.22423,26.1693],[88.22694,26.16839],[88.22783,26.16964],[88.22564,26.17128],[88.22619,26.17302],[88.22804,26.17363],[88.22992,26.17184],[88.23339,26.17363],[88.23363,26.17637],[88.23733,26.17731],[88.23329,26.1812],[88.23349,26.18454],[88.23648,26.18267],[88.2416,26.18628],[88.24183,26.18908],[88.24486,26.18946],[88.24348,26.18747],[88.24519,26.18703],[88.24554,26.18992],[88.2495,26.18991],[88.2509,26.18575],[88.25337,26.1851],[88.25354,26.18844],[88.25689,26.18885],[88.25942,26.18649],[88.26372,26.1901],[88.26442,26.18817],[88.26934,26.18648],[88.27132,26.18834],[88.27632,26.18857],[88.2803,26.19511],[88.28421,26.19484],[88.28291,26.19692],[88.28581,26.20015],[88.28764,26.19738],[88.29243,26.20218],[88.2935,26.20132],[88.29224,26.19835],[88.2964,26.20002],[88.29883,26.19727],[88.30088,26.19861],[88.3013,26.20198],[88.30464,26.19908],[88.30847,26.20435],[88.31378,26.20305],[88.31707,26.20487],[88.31984,26.20285],[88.32574,26.20601],[88.32311,26.21022],[88.32659,26.21065],[88.32841,26.21342],[88.33132,26.21288],[88.3312,26.21705],[88.33354,26.21592],[88.33962,26.21749],[88.34784,26.22175],[88.35051,26.22042],[88.3516,26.22268],[88.34993,26.22647],[88.35114,26.22538],[88.35334,26.22663],[88.35101,26.22826],[88.35125,26.23049],[88.35606,26.23272],[88.35657,26.23589],[88.35494,26.23596],[88.35442,26.23831],[88.35856,26.23986],[88.35966,26.24236],[88.35495,26.24532],[88.35122,26.24567],[88.35012,26.24815],[88.35393,26.24677],[88.3538,26.24805],[88.35146,26.25034],[88.34858,26.25028],[88.34965,26.25231],[88.34832,26.25481],[88.35008,26.25644],[88.35141,26.26339],[88.3499,26.26527],[88.352,26.26724],[88.34806,26.26884],[88.35027,26.2719],[88.3488,26.27387],[88.35186,26.27583],[88.35037,26.27547],[88.34918,26.27772],[88.3506,26.27934],[88.34967,26.28225],[88.35268,26.28207],[88.35377,26.28718],[88.35508,26.2855],[88.35899,26.28813],[88.36033,26.29139],[88.36395,26.29423],[88.36313,26.29811],[88.36532,26.3002],[88.36848,26.29957],[88.37022,26.30484],[88.37321,26.3056],[88.37316,26.30283],[88.37496,26.30441],[88.37357,26.30636],[88.37843,26.30538],[88.37952,26.30955],[88.38432,26.30925],[88.38264,26.31016],[88.3836,26.30942],[88.38328,26.31172],[88.38469,26.31104],[88.38466,26.31326],[88.38746,26.31283],[88.38925,26.31492],[88.39026,26.3128],[88.39119,26.31439],[88.39756,26.31542],[88.39838,26.31704],[88.40003,26.31616],[88.39988,26.31724],[88.41298,26.31618],[88.41494,26.31482],[88.41655,26.32165],[88.41565,26.32432],[88.40702,26.32365],[88.40795,26.32766],[88.40378,26.32809],[88.40435,26.32983],[88.40673,26.33023],[88.40897,26.33357],[88.41091,26.33337],[88.41286,26.33748],[88.42459,26.33514],[88.42466,26.3363],[88.43558,26.33577],[88.4364,26.34012],[88.43888,26.34064],[88.43688,26.34159],[88.43887,26.34424],[88.43809,26.34684],[88.44056,26.34841],[88.43921,26.35012],[88.44266,26.35284],[88.44239,26.35571],[88.44414,26.35703],[88.44609,26.3644],[88.45101,26.36608],[88.45171,26.37037],[88.45635,26.37188],[88.45772,26.37666],[88.45907,26.37698],[88.45918,26.37403],[88.45753,26.37137],[88.45995,26.37106],[88.46023,26.3689],[88.45739,26.36654],[88.45733,26.36445],[88.45946,26.36396],[88.45862,26.36211],[88.46244,26.36076],[88.4632,26.35727],[88.46835,26.35863],[88.47181,26.35646],[88.4774,26.35773],[88.47735,26.3539],[88.48023,26.35321],[88.48032,26.35065],[88.48236,26.3497],[88.48847,26.34883],[88.48837,26.35088],[88.49191,26.35141],[88.4884,26.36028],[88.4969,26.35896],[88.50371,26.36025],[88.50572,26.36357],[88.50775,26.36253],[88.50706,26.35644],[88.50548,26.35614],[88.50576,26.35069],[88.50366,26.35033],[88.505,26.34855],[88.50719,26.34875],[88.50756,26.35108],[88.51002,26.3504],[88.50998,26.35275],[88.51855,26.3516],[88.51778,26.35656],[88.52324,26.36054],[88.5213,26.36319],[88.51653,26.36245],[88.51537,26.36533],[88.52216,26.36702],[88.52209,26.37021],[88.52479,26.3748],[88.52322,26.37542],[88.51719,26.37057],[88.51283,26.37777],[88.51575,26.38553],[88.51921,26.39],[88.51678,26.3902],[88.5145,26.38735],[88.51291,26.38763],[88.50505,26.39871],[88.50581,26.40032],[88.51006,26.40162],[88.51057,26.40433],[88.50896,26.40721],[88.5067,26.4069],[88.5028,26.40304],[88.50023,26.40792],[88.49559,26.40954],[88.50275,26.41748],[88.49607,26.41702],[88.49401,26.41874],[88.49412,26.42232],[88.49838,26.42519],[88.49657,26.42765],[88.49082,26.42851],[88.48966,26.43001],[88.48978,26.43187],[88.49559,26.43321],[88.49622,26.43706],[88.49121,26.4402],[88.49083,26.44397],[88.48656,26.44544],[88.48653,26.45057],[88.48076,26.45057],[88.47893,26.4523],[88.47989,26.45493],[88.48429,26.45662],[88.48525,26.46026],[88.45886,26.46662],[88.43741,26.46591],[88.43263,26.469],[88.43362,26.47241],[88.43055,26.47035],[88.42773,26.47301],[88.42284,26.47268],[88.42299,26.46984],[88.42132,26.46801],[88.42254,26.46599],[88.41976,26.46575],[88.41869,26.46927],[88.41536,26.46922],[88.41457,26.47223],[88.4102,26.47494],[88.40865,26.4795],[88.40502,26.48062],[88.40501,26.48581],[88.40247,26.48589],[88.3999,26.48191],[88.39524,26.48159],[88.38855,26.4783],[88.38626,26.48285],[88.37566,26.48397],[88.37449,26.48845],[88.37124,26.48821],[88.36337,26.48689],[88.36053,26.48456],[88.36054,26.48062],[88.362,26.48044],[88.36272,26.47785],[88.36216,26.47357],[88.36607,26.47078],[88.3604,26.46447],[88.36098,26.46112],[88.35902,26.45681],[88.36155,26.45499],[88.35693,26.45228],[88.35482,26.44702],[88.35217,26.44808],[88.35338,26.45115],[88.3483,26.45994],[88.34857,26.46549],[88.34652,26.4659],[88.34705,26.46825],[88.34049,26.46894],[88.34086,26.47817],[88.33508,26.47799],[88.33378,26.47868],[88.33449,26.4815],[88.33187,26.48181],[88.33213,26.49315],[88.33774,26.50051],[88.34469,26.50409],[88.34948,26.50911],[88.35307,26.51592],[88.35191,26.5232],[88.35939,26.53007],[88.35715,26.54177],[88.36532,26.55197],[88.36553,26.55583],[88.37084,26.56029],[88.37163,26.56875],[88.37005,26.57508],[88.3741,26.57925],[88.37604,26.5947],[88.37937,26.59801],[88.38422,26.59868],[88.39013,26.60299],[88.39842,26.60351],[88.39723,26.60671],[88.38788,26.60691],[88.38696,26.61198],[88.38948,26.61478],[88.39643,26.61733],[88.39822,26.62583],[88.40787,26.63066],[88.40926,26.63485],[88.41519,26.63317],[88.41624,26.62842],[88.41445,26.62262],[88.41801,26.62156],[88.41681,26.61321],[88.41998,26.59865],[88.41924,26.59049],[88.42259,26.58277],[88.42117,26.57102],[88.43139,26.54978],[88.43597,26.54503],[88.44308,26.54395],[88.44336,26.53929],[88.44827,26.53529],[88.45648,26.53689],[88.45518,26.53898],[88.45843,26.54023],[88.45745,26.54175],[88.45889,26.54712],[88.46184,26.54687],[88.46256,26.54376],[88.47591,26.54447],[88.47808,26.54193],[88.48501,26.54069],[88.48235,26.53617],[88.48202,26.53134],[88.48297,26.53026],[88.48965,26.53196],[88.4895,26.52704],[88.48534,26.52609],[88.49005,26.52507],[88.48872,26.51791],[88.49061,26.51485],[88.48975,26.51036],[88.49936,26.51227],[88.50007,26.51565],[88.50721,26.51648],[88.51068,26.51074],[88.52139,26.51051],[88.52293,26.5054],[88.51867,26.50127],[88.51997,26.50058],[88.51953,26.49825],[88.52196,26.4978],[88.5245,26.49278],[88.52461,26.4893],[88.52285,26.48929],[88.52287,26.48671],[88.52795,26.48648],[88.52415,26.48564],[88.52768,26.48447],[88.52648,26.48138],[88.55676,26.4848],[88.55461,26.48112],[88.5553,26.47882],[88.55273,26.47724],[88.55262,26.47532],[88.5568,26.47525],[88.55628,26.47281],[88.55398,26.4729],[88.55429,26.47187],[88.56014,26.47304],[88.55764,26.47069],[88.55806,26.46689],[88.5624,26.46713],[88.55949,26.46184],[88.56293,26.45965],[88.55804,26.45905],[88.56093,26.45646],[88.56266,26.45781],[88.57879,26.45666],[88.58458,26.45401],[88.58435,26.45028],[88.58952,26.45135],[88.59184,26.45073],[88.59034,26.44964],[88.59295,26.44981],[88.59313,26.45221],[88.59512,26.45306],[88.59626,26.46942],[88.59475,26.47064],[88.62289,26.47108],[88.62439,26.45394],[88.62684,26.45085],[88.6283,26.44104],[88.62497,26.44041],[88.62504,26.43872],[88.62318,26.43832],[88.62377,26.43479],[88.62777,26.43347],[88.63045,26.43467],[88.63082,26.4314],[88.63515,26.43198],[88.63827,26.42948],[88.6498,26.42959],[88.6517,26.42534],[88.65106,26.42166],[88.64446,26.41875],[88.64657,26.4186],[88.64684,26.41695],[88.65037,26.41744],[88.65057,26.41552],[88.66045,26.41632],[88.66282,26.40986],[88.66772,26.40955],[88.66781,26.40719],[88.67861,26.40802],[88.67904,26.40437],[88.68051,26.40655],[88.68675,26.40603],[88.68566,26.40543],[88.68743,26.40099],[88.68163,26.40206],[88.67917,26.40046],[88.67954,26.40188],[88.6738,26.40089],[88.67353,26.402],[88.66997,26.39761],[88.67198,26.39745],[88.67233,26.3957],[88.67812,26.39558],[88.67815,26.39342],[88.68576,26.39391],[88.68625,26.39563],[88.68917,26.39568],[88.68565,26.39107],[88.68632,26.39019],[88.68778,26.39155],[88.68743,26.38683],[88.6924,26.38641],[88.6988,26.3901],[88.70227,26.38844],[88.70216,26.38575],[88.68493,26.38334],[88.68212,26.3822],[88.68266,26.38048],[88.68101,26.37941],[88.6813,26.3779],[88.68661,26.37881],[88.68534,26.37464],[88.68769,26.37155],[88.68892,26.36495],[88.69065,26.36331],[88.69496,26.36358],[88.69626,26.36195],[88.69147,26.36118],[88.69384,26.35641],[88.69858,26.35673],[88.69786,26.34954],[88.69667,26.34689],[88.6941,26.34673],[88.6951,26.34413],[88.69803,26.34368],[88.69859,26.34112],[88.70402,26.34187],[88.70421,26.33984],[88.70164,26.33878],[88.70323,26.33764],[88.70276,26.33439],[88.70469,26.33248],[88.71015,26.33468],[88.71048,26.3372],[88.71272,26.33842],[88.71177,26.34043],[88.71285,26.34365],[88.72323,26.34314],[88.72432,26.3411],[88.72615,26.34127],[88.72639,26.34411],[88.72935,26.34463],[88.72963,26.34801],[88.73592,26.34797],[88.7352,26.35001],[88.73297,26.35034],[88.73326,26.35383],[88.73759,26.35327],[88.73602,26.35198],[88.73636,26.34944],[88.74397,26.34872],[88.74587,26.34707],[88.74459,26.34342],[88.74429,26.34461],[88.74259,26.3441],[88.74434,26.34081],[88.74331,26.33732],[88.73701,26.33489],[88.73387,26.32866],[88.74112,26.32966],[88.74573,26.33243],[88.74874,26.33193],[88.74651,26.32239],[88.73065,26.32362],[88.73124,26.31835],[88.72632,26.31751],[88.72585,26.31538],[88.72078,26.31432],[88.71882,26.31211],[88.71912,26.31568],[88.71504,26.31797],[88.70635,26.31469],[88.69899,26.31442],[88.69727,26.31212],[88.69647,26.31431],[88.69327,26.31399],[88.69092,26.3184],[88.69262,26.32144],[88.68987,26.32324],[88.69228,26.3256],[88.69679,26.32575],[88.69573,26.32873],[88.691,26.32888],[88.68974,26.323],[88.67988,26.32227],[88.67827,26.32015],[88.67513,26.32007],[88.6753,26.31137],[88.67907,26.31466],[88.68081,26.31154],[88.68256,26.31251],[88.68309,26.30845],[88.67798,26.30695],[88.6802,26.30144],[88.67867,26.29883],[88.66804,26.29717],[88.66967,26.28955],[88.66618,26.28925],[88.66565,26.28486],[88.66964,26.28076],[88.66738,26.27808],[88.66692,26.27324],[88.66763,26.27195],[88.67211,26.27226],[88.67225,26.26849],[88.67187,26.26684],[88.6675,26.2665],[88.66623,26.26266],[88.67679,26.26466],[88.67815,26.26414],[88.67948,26.2589],[88.68324,26.26082],[88.68633,26.26305],[88.68462,26.26567],[88.68602,26.26757],[88.68745,26.26618],[88.69008,26.26665],[88.69011,26.26853],[88.69259,26.26954],[88.6919,26.27252],[88.68988,26.27383],[88.68745,26.27266],[88.68619,26.27367],[88.68607,26.27675],[88.68918,26.27905],[88.6916,26.27636],[88.69619,26.27728],[88.69584,26.27946],[88.69855,26.28041],[88.69802,26.28207],[88.69974,26.28417],[88.7016,26.28322],[88.70138,26.28454],[88.7036,26.28425],[88.70383,26.28553],[88.70656,26.28482],[88.7114,26.28638],[88.71403,26.28571],[88.71325,26.28159],[88.71629,26.28224],[88.71711,26.28108],[88.72115,26.28328],[88.72719,26.29298],[88.73054,26.29127],[88.72969,26.29461],[88.7379,26.29243],[88.74245,26.29522],[88.74084,26.2956],[88.7426,26.29925],[88.74667,26.29966],[88.74732,26.30105],[88.74902,26.30052],[88.74752,26.2955],[88.75858,26.29476],[88.75976,26.30026],[88.76411,26.29889],[88.7719,26.30056],[88.77624,26.30362],[88.78281,26.30316],[88.79356,26.30997],[88.80193,26.30621],[88.81315,26.29711],[88.81911,26.29449],[88.81328,26.28845],[88.81133,26.27734],[88.81002,26.27681],[88.81044,26.27407],[88.81384,26.27337],[88.81499,26.26899],[88.81468,26.26514],[88.81217,26.26477],[88.81376,26.2587],[88.81294,26.25599],[88.81398,26.25425],[88.81909,26.25524],[88.81957,26.25379],[88.82324,26.25334],[88.82348,26.2485],[88.82916,26.24971],[88.82973,26.24639],[88.82673,26.2437],[88.82767,26.23964],[88.83106,26.24018],[88.83196,26.23824],[88.83809,26.23815],[88.83828,26.23225],[88.84173,26.23072],[88.84393,26.23057],[88.84379,26.23253],[88.8519,26.2351],[88.85982,26.23142],[88.87167,26.23404],[88.87289,26.2329],[88.87786,26.23338],[88.87646,26.23719],[88.87769,26.24219],[88.87222,26.23991],[88.87163,26.24495],[88.86815,26.24565],[88.86734,26.24973],[88.86147,26.252],[88.86133,26.26368],[88.86459,26.26873],[88.86139,26.27266],[88.86623,26.2749],[88.86641,26.2794],[88.87043,26.28385],[88.87593,26.28658],[88.89827,26.28864],[88.90903,26.28725],[88.91814,26.28793],[88.9199,26.28447],[88.92628,26.28378],[88.93113,26.27744],[88.93516,26.26701],[88.94024,26.26352],[88.94428,26.25447],[88.95078,26.24771],[88.95314,26.24197],[88.95704,26.24258],[88.95732,26.2403],[88.96539,26.23871],[88.97867,26.24266],[88.97917,26.24479],[88.99303,26.24546],[89.0159,26.24463],[89.0182,26.24367],[89.01826,26.24194],[89.02148,26.245],[89.02734,26.24407],[89.02755,26.24764],[89.03303,26.2467],[89.03536,26.24253],[89.03673,26.24238],[89.03737,26.24572],[89.04602,26.24066],[89.05069,26.24165],[89.04999,26.24537],[89.04798,26.24568],[89.04887,26.2517],[89.05123,26.25268],[89.05131,26.2553],[89.05467,26.25738],[89.05913,26.25397],[89.06264,26.25375],[89.06294,26.25577],[89.06018,26.25678],[89.06065,26.25891],[89.06331,26.25988],[89.06115,26.26397],[89.06111,26.2691],[89.06334,26.27037],[89.0592,26.27624],[89.05389,26.27714],[89.06248,26.27866],[89.06296,26.28169],[89.05751,26.28558],[89.06122,26.29036],[89.05947,26.29343],[89.05648,26.29388],[89.0531,26.29199],[89.05233,26.29602],[89.04587,26.29535],[89.04535,26.29103],[89.04213,26.29003],[89.04632,26.28945],[89.04481,26.28358],[89.04736,26.2826],[89.04778,26.28833],[89.05055,26.28832],[89.04833,26.2858],[89.04818,26.27977],[89.04646,26.28102],[89.04319,26.27996],[89.04464,26.27933],[89.04512,26.27514],[89.03988,26.27652],[89.0402,26.27809],[89.03803,26.27747],[89.04034,26.28074],[89.03741,26.28241],[89.04069,26.28394],[89.04077,26.28577],[89.03855,26.28547],[89.03872,26.28372],[89.03712,26.28312],[89.03146,26.28552],[89.02752,26.28247],[89.02711,26.28562],[89.02482,26.28624],[89.02473,26.28807],[89.02137,26.28755],[89.02008,26.28909],[89.02157,26.29286],[89.02333,26.2933],[89.02123,26.29796],[89.02661,26.3054],[89.0263,26.30692],[89.02178,26.30742],[89.02159,26.30902],[89.01875,26.30711],[89.0201,26.305],[89.01601,26.30346],[89.01636,26.3014],[89.01431,26.30022],[89.01959,26.29495],[89.01841,26.28981],[89.01235,26.29248],[89.01305,26.29801],[89.01055,26.29869],[89.01182,26.30012],[89.00845,26.30161],[89.00685,26.30439],[89.00659,26.30271],[89.00438,26.30366],[89.00495,26.2978],[89.00122,26.29514],[89.00003,26.29068],[88.99574,26.29024],[88.99537,26.29397],[88.99759,26.29963],[88.99606,26.29694],[88.99537,26.29997],[88.9949,26.29667],[88.99263,26.30062],[88.98494,26.30054],[88.98266,26.3095],[88.98587,26.31459],[88.98414,26.31632],[88.98462,26.31796],[88.99493,26.31323],[88.99712,26.31374],[88.99714,26.31638],[88.99428,26.31714],[88.99408,26.31988],[88.99196,26.32038],[88.99152,26.32232],[88.99489,26.32214],[88.99562,26.32072],[88.99801,26.3224],[89.00097,26.32975],[88.99864,26.33182],[88.99202,26.3327],[88.99267,26.33481],[88.99061,26.33535],[88.98916,26.33238],[88.98555,26.33276],[88.98181,26.341],[88.98665,26.34138],[88.98599,26.33982],[88.98876,26.33912],[88.98727,26.33798],[88.99,26.33848],[88.9871,26.34264],[88.98612,26.34708],[88.98773,26.34715],[88.98722,26.34832],[88.98513,26.34991],[88.98536,26.34841],[88.98277,26.34902],[88.98215,26.34748],[88.97782,26.34655],[88.97781,26.34805],[88.97268,26.35169],[88.97053,26.34964],[88.96676,26.35182],[88.96519,26.34869],[88.96141,26.3523],[88.95915,26.34794],[88.96263,26.34545],[88.96172,26.34083],[88.96353,26.33829],[88.96292,26.33627],[88.95948,26.33587],[88.96037,26.33005],[88.95603,26.32999],[88.95469,26.33318],[88.95411,26.3319],[88.95391,26.33304],[88.9523,26.33234],[88.95306,26.34209],[88.95176,26.34259],[88.95603,26.34122],[88.95905,26.34353],[88.95297,26.34621],[88.95241,26.34375],[88.94615,26.34388],[88.94629,26.34583],[88.94987,26.34851],[88.94875,26.35239],[88.95355,26.35615],[88.95814,26.35742],[88.95843,26.36168],[88.95475,26.36179],[88.95336,26.36595],[88.94985,26.36593],[88.94677,26.35569],[88.94145,26.35777],[88.93683,26.35672],[88.93562,26.35865],[88.93094,26.35959],[88.92791,26.36266],[88.92897,26.36372],[88.92608,26.36474],[88.92239,26.36321],[88.91973,26.35931],[88.91865,26.36022],[88.92168,26.36273],[88.92008,26.36623],[88.9143,26.36522],[88.91193,26.36611],[88.91284,26.36842],[88.9114,26.36766],[88.91011,26.3698],[88.91327,26.37422],[88.92008,26.37457],[88.91955,26.37685],[88.9214,26.37718],[88.92061,26.37853],[88.91432,26.3778],[88.91233,26.38028],[88.90909,26.38003],[88.90974,26.38221],[88.91651,26.38483],[88.91643,26.38919],[88.91845,26.39012],[88.91894,26.39426],[88.91822,26.40038],[88.91737,26.4032],[88.91326,26.40323],[88.91257,26.40136],[88.90995,26.40078],[88.90872,26.4037],[88.90616,26.40351],[88.90479,26.40846],[88.90679,26.40665],[88.91281,26.40861],[88.92656,26.40679],[88.93131,26.41419],[88.92907,26.41666],[88.92547,26.4164],[88.92303,26.42336],[88.93129,26.42455],[88.9328,26.42683],[88.92594,26.42762],[88.92619,26.43205],[88.92838,26.43292],[88.93476,26.43145],[88.93809,26.4281],[88.93805,26.4256],[88.94477,26.42559],[88.94282,26.42819],[88.94576,26.42936],[88.94465,26.43185],[88.9512,26.43361],[88.95132,26.435],[88.94691,26.43932],[88.94902,26.4399],[88.94927,26.4429],[88.94676,26.44339],[88.94617,26.44794],[88.95188,26.44842],[88.95128,26.45206],[88.96057,26.44827],[88.96536,26.45149],[88.95978,26.45229],[88.95732,26.45476],[88.95724,26.459],[88.95584,26.46021],[88.96514,26.45781],[88.96631,26.45126],[88.97449,26.45015],[88.97642,26.4462],[88.97731,26.44912],[88.97944,26.44963],[88.97854,26.44616],[88.98327,26.44651],[88.98089,26.44313],[88.98095,26.44175],[88.98424,26.44184],[88.98289,26.43799],[88.97878,26.43599],[88.98028,26.43157],[88.98306,26.43088],[88.98075,26.42527],[88.98364,26.42439],[88.983,26.42104],[88.99277,26.41892],[88.99404,26.41282],[88.99861,26.41388],[88.9953,26.41666],[88.99604,26.4197],[88.99301,26.42031],[88.99374,26.42299],[88.9959,26.42258],[88.99661,26.4205],[89.00548,26.42157],[89.00485,26.41776],[89.00723,26.41273],[89.01794,26.41512],[89.02246,26.41364],[89.02316,26.40833],[89.01895,26.40606],[89.01941,26.40413],[89.02271,26.40392],[89.02203,26.40581],[89.02446,26.40776],[89.02993,26.40707],[89.0294,26.4049],[89.0314,26.40387],[89.03179,26.39955],[89.03438,26.39946],[89.03356,26.39544],[89.03746,26.39517],[89.03784,26.39967],[89.04059,26.40024],[89.05419,26.39862],[89.05573,26.39581],[89.05814,26.39529],[89.05901,26.39882],[89.06149,26.39818],[89.06322,26.40075],[89.06186,26.39782],[89.06337,26.39669],[89.06446,26.39663],[89.06445,26.39895],[89.06728,26.4],[89.06817,26.39768],[89.07123,26.39839],[89.07483,26.39596],[89.07395,26.39111],[89.07534,26.39597],[89.08446,26.39828],[89.08782,26.39656],[89.08555,26.39371],[89.08079,26.39291],[89.07997,26.3915],[89.08134,26.39017],[89.08601,26.39234],[89.09048,26.39176],[89.09199,26.39369],[89.09625,26.39115],[89.09155,26.38898],[89.09005,26.38571],[89.09168,26.3853],[89.09189,26.38274],[89.08909,26.38091],[89.08898,26.37575],[89.09066,26.37469],[89.08846,26.36569],[89.08003,26.36666],[89.07971,26.36282],[89.08294,26.3621],[89.08418,26.36406],[89.08581,26.36386],[89.08581,26.36272],[89.0897,26.36196],[89.08986,26.36049],[89.09832,26.35893],[89.09586,26.35416],[89.09389,26.35459],[89.09333,26.35291],[89.09593,26.35374],[89.09603,26.35016],[89.09795,26.34979],[89.09884,26.34208],[89.09779,26.33977],[89.10028,26.33895],[89.10134,26.33653],[89.09653,26.33394],[89.09535,26.32977],[89.09094,26.32949],[89.09164,26.32799],[89.08801,26.32331],[89.08429,26.32405],[89.08349,26.32236],[89.08579,26.32101],[89.08972,26.32241],[89.09192,26.32029],[89.09363,26.32578],[89.09545,26.32556],[89.09719,26.32928],[89.0994,26.32825],[89.09841,26.32504],[89.10051,26.32331],[89.10433,26.32328],[89.10569,26.3265],[89.11001,26.32525],[89.11274,26.31839],[89.11649,26.31849],[89.1155,26.3199],[89.12364,26.32217],[89.12861,26.32232],[89.12968,26.32048],[89.12446,26.32084],[89.12831,26.3188],[89.13464,26.32135],[89.13631,26.32011],[89.13604,26.31459],[89.12955,26.31284],[89.13483,26.31315],[89.13283,26.31173],[89.13493,26.31126],[89.13604,26.30739],[89.13371,26.3058],[89.12522,26.30534],[89.1257,26.30415],[89.13058,26.30518],[89.13134,26.30089],[89.1288,26.30152],[89.12892,26.30311],[89.12746,26.30156],[89.1287,26.29879],[89.1313,26.30037],[89.1325,26.29872],[89.13116,26.29861],[89.13163,26.29732],[89.12826,26.29785],[89.12737,26.29487],[89.12457,26.29405],[89.12542,26.29093],[89.12213,26.28715],[89.12013,26.28709],[89.11793,26.28982],[89.11681,26.29708],[89.11392,26.29824],[89.11425,26.30364],[89.10908,26.30444],[89.10828,26.31304],[89.10504,26.31383],[89.1061,26.31576],[89.10471,26.3158],[89.10498,26.31311],[89.10236,26.31139],[89.10294,26.30828],[89.09992,26.30457],[89.10757,26.2998],[89.10405,26.29797],[89.10328,26.29446],[89.10715,26.29164],[89.1026,26.28861],[89.10262,26.28167],[89.1001,26.27947],[89.1029,26.27823],[89.10342,26.28102],[89.10602,26.28107],[89.10572,26.27404],[89.10879,26.27557],[89.10941,26.27208],[89.11162,26.27268],[89.12523,26.26346],[89.12535,26.26121],[89.1214,26.2582],[89.12227,26.25552],[89.11988,26.25435],[89.11984,26.25261],[89.12398,26.24974],[89.12615,26.25069],[89.12698,26.24884],[89.13004,26.24879],[89.13216,26.24614],[89.13095,26.24297],[89.13255,26.24188],[89.1319,26.23952],[89.13543,26.24112],[89.136,26.2398],[89.13394,26.23755],[89.137,26.23656],[89.13941,26.23803],[89.14094,26.23584],[89.14126,26.23123],[89.13957,26.22952],[89.14384,26.22126],[89.14209,26.22098],[89.14213,26.21453],[89.14941,26.20905],[89.14718,26.20482],[89.14411,26.20342],[89.14392,26.2003],[89.13938,26.19831],[89.13913,26.19123],[89.1381,26.18838],[89.13553,26.18722],[89.13664,26.18351],[89.13461,26.18117],[89.1371,26.17976],[89.13756,26.17628],[89.14121,26.17581],[89.14103,26.16929],[89.14919,26.17003],[89.15251,26.16448],[89.15728,26.1632],[89.1554,26.15955],[89.14912,26.15943],[89.14854,26.1581],[89.15538,26.13861],[89.16002,26.13962],[89.15925,26.13665],[89.16112,26.13726],[89.16033,26.13538],[89.16253,26.13539],[89.16186,26.13366],[89.16413,26.13334],[89.16442,26.13167],[89.16658,26.13226],[89.16678,26.13018],[89.16796,26.13147],[89.17153,26.13033],[89.17644,26.13181],[89.17959,26.12796],[89.18484,26.12905],[89.18514,26.12673],[89.1861,26.1279],[89.18898,26.12727],[89.18973,26.1245],[89.19133,26.12504],[89.19235,26.12364],[89.19639,26.1257],[89.19509,26.12717],[89.19818,26.12566],[89.20017,26.12848],[89.20308,26.12928],[89.20495,26.12721],[89.20623,26.12817],[89.20632,26.12652],[89.20981,26.12719],[89.21139,26.12422],[89.21438,26.12527],[89.21389,26.12687],[89.21717,26.12708],[89.21711,26.12552],[89.21985,26.12644],[89.21934,26.12426],[89.22333,26.12544],[89.2232,26.12418],[89.22547,26.12425],[89.22693,26.12206],[89.22787,26.12399],[89.22944,26.12385],[89.22849,26.12043],[89.23074,26.1175],[89.22922,26.1166],[89.23182,26.11709],[89.23303,26.113],[89.2355,26.11472],[89.23724,26.11258],[89.23852,26.11468],[89.2399,26.11214],[89.24192,26.11319],[89.2392,26.1115],[89.23944,26.11013],[89.24134,26.11027],[89.23954,26.10924],[89.24031,26.10775],[89.24222,26.10906],[89.2412,26.10625],[89.24294,26.1067],[89.24156,26.10547],[89.24397,26.10618],[89.24415,26.10494],[89.24521,26.10657],[89.24861,26.10343],[89.24772,26.10169],[89.25178,26.10118],[89.2524,26.09784],[89.25033,26.09412],[89.25237,26.09275],[89.25118,26.09274],[89.25162,26.09135],[89.25489,26.09337],[89.25618,26.09174],[89.25882,26.09312],[89.26036,26.0918],[89.26221,26.09398],[89.26339,26.09208],[89.2668,26.09264],[89.2657,26.09233],[89.26587,26.08784],[89.26144,26.08578],[89.2609,26.08285],[89.25686,26.08008],[89.25473,26.07466],[89.25611,26.07154],[89.25441,26.06412],[89.27088,26.05995],[89.2705,26.0619],[89.27621,26.0612],[89.27521,26.06214],[89.2783,26.06648],[89.28105,26.06562],[89.28254,26.06414],[89.28105,26.06191],[89.28171,26.05612],[89.27904,26.05068],[89.27686,26.05139],[89.27576,26.04908],[89.28926,26.04815],[89.29096,26.04525],[89.29169,26.04641],[89.29664,26.04534],[89.29843,26.0502],[89.30044,26.05043],[89.29999,26.04759],[89.30473,26.04714],[89.30348,26.04591],[89.30512,26.04532],[89.30619,26.04652],[89.30592,26.0445],[89.30773,26.0451],[89.30988,26.04162],[89.31734,26.03852],[89.31522,26.03742],[89.31939,26.03919],[89.3237,26.03805],[89.32311,26.03689],[89.32574,26.03628],[89.32567,26.0346],[89.32797,26.03334],[89.3261,26.03201],[89.32897,26.03162],[89.32762,26.03026],[89.32951,26.03025],[89.3289,26.02825],[89.33079,26.02719],[89.33166,26.02944],[89.33325,26.02837],[89.33278,26.02693],[89.33438,26.0275],[89.33522,26.02547],[89.33653,26.02652],[89.33862,26.02391],[89.33525,26.02262],[89.33452,26.02],[89.33745,26.02211],[89.33875,26.01936],[89.33722,26.01998],[89.33733,26.01885],[89.33911,26.01823],[89.33732,26.01802],[89.33977,26.01779],[89.34011,26.01526],[89.34357,26.01459],[89.34372,26.01703],[89.34533,26.01438],[89.34921,26.01614],[89.34682,26.01336],[89.34426,26.01318],[89.34699,26.01135],[89.3484,26.0122],[89.34906,26.01035],[89.35247,26.0101],[89.35348,26.0119],[89.35476,26.01144],[89.35444,26.0088],[89.35606,26.00833],[89.35642,26.0099],[89.35697,26.00797],[89.35948,26.0092],[89.3597,26.00785],[89.36034,26.00922],[89.36472,26.00823],[89.36669,26.01025],[89.37116,26.00894],[89.37248,26.01183],[89.37565,26.00931],[89.38591,26.01075],[89.38941,26.00833],[89.39123,26.00943],[89.39279,26.00719],[89.3945,26.01315],[89.39114,26.01671],[89.39086,26.02292],[89.40302,26.02731],[89.40416,26.03091],[89.4066,26.03151],[89.40485,26.03393],[89.40749,26.03609],[89.40645,26.038],[89.40769,26.03978],[89.40627,26.04028],[89.40742,26.04151],[89.41897,26.04189],[89.42445,26.04418],[89.42272,26.04564],[89.42384,26.04692],[89.4328,26.0375],[89.43359,26.03042],[89.42739,26.01917],[89.42864,26.01448],[89.42674,26.01513],[89.42874,26.01227],[89.43639,26.00938],[89.44716,26.00796],[89.46165,25.99837],[89.47656,25.99798],[89.48035,25.99607],[89.48711,26.00027],[89.49128,26.00596],[89.49689,26.00289],[89.50815,26.00184],[89.5115,26.00331],[89.51423,26.00703],[89.51924,26.00874],[89.52121,26.00856],[89.52207,26.00516],[89.5243,26.00657],[89.52612,26.00474],[89.52983,26.00574],[89.53746,26.00213],[89.53942,26.00537],[89.53678,26.00407],[89.53366,26.00537],[89.53757,26.00674],[89.5409,26.0059],[89.54296,26.0026],[89.54481,26.00259],[89.54497,26.00034],[89.54822,26.00061],[89.54815,25.99858],[89.53821,25.99468],[89.53796,25.9908],[89.53553,25.99017],[89.53608,25.98559],[89.54169,25.98319],[89.53825,25.97319],[89.54157,25.96916],[89.55601,25.96522],[89.5577,25.96536],[89.55782,25.96988],[89.5627,25.97115],[89.56385,25.97876],[89.56597,25.98034],[89.5684,25.97912],[89.56734,25.97103],[89.56891,25.96776],[89.57787,25.96928],[89.57848,25.9734],[89.57671,25.97803],[89.57445,25.97738],[89.57348,25.97857],[89.57641,25.9819],[89.57688,25.97817],[89.58257,25.97908],[89.58518,25.9759],[89.58675,25.98108],[89.5832,25.99019],[89.58625,25.99508],[89.5834,26.00184],[89.58003,26.00212],[89.58156,26.00334],[89.57994,26.00501],[89.58153,26.00582],[89.57875,26.00678],[89.5813,26.01093],[89.57836,26.0216],[89.57872,26.02626],[89.58336,26.02423],[89.58535,26.02628],[89.58326,26.03257],[89.58726,26.03554],[89.58688,26.03831],[89.58946,26.03889],[89.59267,26.03527],[89.59509,26.0352],[89.59775,26.03785],[89.59776,26.04018],[89.5938,26.0411],[89.59223,26.0448],[89.59948,26.04443],[89.60374,26.04853],[89.61283,26.05264],[89.61293,26.05693],[89.60608,26.05921],[89.6054,26.06375],[89.60859,26.06457],[89.60988,26.06042],[89.61166,26.05937],[89.6178,26.06011],[89.61638,26.05566],[89.62051,26.05328],[89.6247,26.057],[89.62791,26.05767],[89.62816,26.06128],[89.63063,26.06266],[89.63567,26.06071],[89.6437,26.06304],[89.64908,26.06136],[89.6499,26.06248],[89.64832,26.0684],[89.63735,26.07477],[89.63357,26.08087],[89.63394,26.08415],[89.6367,26.08576],[89.63688,26.08927],[89.63968,26.09006],[89.63324,26.0944],[89.6321,26.09721],[89.63622,26.09937],[89.63245,26.10173],[89.62996,26.10704],[89.62409,26.10789],[89.62151,26.10035],[89.61619,26.10414],[89.61396,26.10361],[89.61345,26.10131],[89.61729,26.09469],[89.61014,26.09591],[89.60885,26.0941],[89.61026,26.09004],[89.60862,26.08839],[89.60586,26.09333],[89.59743,26.0974],[89.59388,26.10216],[89.59654,26.1043],[89.60031,26.10406],[89.60076,26.10751],[89.59561,26.10781],[89.60084,26.10904],[89.59796,26.11037],[89.59788,26.11298],[89.6031,26.11165],[89.60525,26.10637],[89.61004,26.10858],[89.61622,26.10686],[89.6275,26.11399],[89.63036,26.11827],[89.62925,26.12504],[89.62535,26.1286],[89.62243,26.1258],[89.62051,26.11972],[89.61676,26.12076],[89.61352,26.12737],[89.61204,26.1277],[89.60884,26.12383],[89.60792,26.11872],[89.60424,26.11745],[89.60129,26.12342],[89.60236,26.1219],[89.60389,26.12386],[89.60633,26.12242],[89.60773,26.12486],[89.60429,26.12862],[89.60313,26.12661],[89.60431,26.12465],[89.60271,26.12491],[89.60426,26.12573],[89.5966,26.13503],[89.59831,26.13726],[89.59823,26.13899],[89.5956,26.13989],[89.59818,26.14637],[89.59666,26.14994],[89.59841,26.15046],[89.59792,26.15413],[89.5963,26.15624],[89.5914,26.15761],[89.5958,26.16082],[89.60001,26.16083],[89.60088,26.15814],[89.6044,26.15615],[89.60467,26.1591],[89.60604,26.15765],[89.60805,26.15835],[89.60701,26.15443],[89.60902,26.15362],[89.6114,26.15752],[89.60824,26.15822],[89.61014,26.15958],[89.61015,26.16184],[89.6135,26.16203],[89.61378,26.16618],[89.61976,26.16776],[89.61807,26.16913],[89.61284,26.16733],[89.61123,26.16856],[89.61098,26.17436],[89.6154,26.17303],[89.61515,26.17588],[89.60831,26.17635],[89.60746,26.17914],[89.6102,26.18032],[89.60933,26.17856],[89.61527,26.17643],[89.61483,26.17855],[89.62391,26.17913],[89.62334,26.17429],[89.62172,26.17355],[89.62399,26.17112],[89.62566,26.17627],[89.63249,26.18078],[89.63279,26.17939],[89.6371,26.1788],[89.63748,26.17685],[89.63195,26.17364],[89.63216,26.17189],[89.63792,26.17214],[89.63843,26.16687],[89.6461,26.16444],[89.64933,26.16443],[89.65017,26.16977],[89.65515,26.17038],[89.65494,26.17336],[89.65866,26.17623],[89.65587,26.1787],[89.65548,26.18141],[89.64987,26.17972],[89.64373,26.18278],[89.64032,26.18225],[89.63914,26.17861],[89.63334,26.18044],[89.63311,26.1827],[89.63169,26.18116],[89.62781,26.18391],[89.62767,26.18931],[89.63286,26.19029],[89.62853,26.19183],[89.63018,26.19576],[89.6342,26.19558],[89.63356,26.19478],[89.63605,26.19364],[89.63516,26.19018],[89.63793,26.18971],[89.63804,26.18674],[89.64245,26.18527],[89.64745,26.18519],[89.64556,26.18851],[89.6475,26.18769],[89.65,26.19021],[89.64644,26.19501],[89.64414,26.19491],[89.64185,26.19887],[89.63948,26.19971],[89.63826,26.21044],[89.63266,26.20989],[89.63412,26.21537],[89.63651,26.2176],[89.63365,26.21857],[89.63622,26.22374],[89.63444,26.22941],[89.63778,26.22909],[89.6402,26.22577],[89.64574,26.22555],[89.65046,26.22098],[89.65509,26.22044],[89.65557,26.21908],[89.662,26.21922],[89.66482,26.22112],[89.6719,26.21985],[89.67221,26.22891],[89.6734,26.2316],[89.67734,26.23387],[89.67871,26.23821],[89.68199,26.22752],[89.68424,26.22768],[89.68605,26.23066],[89.68574,26.22654],[89.68749,26.22651],[89.6837,26.22369],[89.68888,26.2227],[89.68942,26.22128],[89.68428,26.2201],[89.67903,26.22409],[89.67941,26.21479],[89.68378,26.20874],[89.69139,26.2135],[89.6915,26.21167],[89.68726,26.20978],[89.68566,26.20687],[89.68105,26.21007],[89.67716,26.20967],[89.67352,26.20568],[89.67347,26.20143],[89.67821,26.1975],[89.68303,26.19926],[89.68635,26.19822],[89.68336,26.19588],[89.68217,26.19242],[89.68739,26.1815],[89.69407,26.17551],[89.70206,26.17398],[89.69785,26.1699],[89.6842,26.16962],[89.68107,26.16613],[89.68132,26.16359],[89.69716,26.15853],[89.70138,26.15175],[89.70997,26.15622],[89.71281,26.16807],[89.71674,26.16824],[89.71698,26.16536],[89.72184,26.16747],[89.72761,26.16735],[89.72886,26.16794],[89.72748,26.17196],[89.7289,26.17411],[89.73655,26.17279],[89.73247,26.17782],[89.72558,26.17798],[89.72235,26.17771],[89.71365,26.17266],[89.70924,26.17281],[89.70354,26.17805],[89.70328,26.18299],[89.6986,26.19118],[89.7061,26.18773],[89.71307,26.18772],[89.71911,26.19229],[89.72037,26.1956],[89.71781,26.20135],[89.7116,26.20297],[89.71916,26.20662],[89.72721,26.20596],[89.73323,26.21199],[89.73171,26.21616],[89.7257,26.21818],[89.71287,26.21246],[89.7075,26.21228],[89.70211,26.2152],[89.70039,26.21845],[89.70119,26.21994],[89.70447,26.21719],[89.71004,26.21784],[89.71364,26.22212],[89.7141,26.23025],[89.72707,26.23316],[89.73216,26.23783],[89.73183,26.23988],[89.72629,26.24287],[89.71788,26.24515],[89.71648,26.24753],[89.71845,26.25585],[89.71708,26.25737],[89.71443,26.25825],[89.70583,26.25621],[89.70262,26.25786],[89.70585,26.27043],[89.71155,26.27126],[89.71471,26.26994],[89.71258,26.26191],[89.72202,26.25746],[89.734,26.25941],[89.73557,26.26149],[89.73428,26.26703],[89.73854,26.26994],[89.735,26.27767],[89.72413,26.28764],[89.71783,26.29582],[89.71981,26.30732],[89.72371,26.30928],[89.72585,26.30722],[89.72139,26.29951],[89.72632,26.29471],[89.73691,26.29261],[89.74484,26.29689],[89.7478,26.29126],[89.75812,26.28779],[89.76089,26.2921],[89.75414,26.30222],[89.75124,26.32095],[89.75535,26.32321],[89.76031,26.3166],[89.76428,26.31607],[89.76909,26.32129],[89.76926,26.32429],[89.78107,26.32786],[89.78373,26.33209],[89.78154,26.34163],[89.78318,26.3514],[89.79305,26.35868],[89.80482,26.36284],[89.81372,26.37105],[89.8201,26.37024],[89.82192,26.37181],[89.81998,26.36663],[89.81331,26.36151],[89.81283,26.3571],[89.81538,26.35258],[89.82276,26.35163],[89.82577,26.35485],[89.82197,26.35967],[89.82207,26.36315],[89.82764,26.36631],[89.82948,26.37078],[89.82592,26.37763],[89.83202,26.38392],[89.83525,26.38396],[89.83967,26.37862],[89.84302,26.37781],[89.84705,26.38525],[89.85148,26.38525],[89.8545,26.38216],[89.8589,26.38403],[89.85542,26.39087],[89.85734,26.39613],[89.84988,26.40359],[89.84781,26.40415],[89.8472,26.3989],[89.84328,26.3938],[89.8376,26.39098],[89.83219,26.39182],[89.83031,26.39358],[89.82995,26.397],[89.83243,26.40001],[89.83297,26.40838],[89.83525,26.41202],[89.85748,26.41198],[89.85671,26.41494],[89.84976,26.42046],[89.84916,26.42279],[89.85587,26.42492],[89.85772,26.42993],[89.85568,26.4326],[89.8587,26.43556],[89.85856,26.43957],[89.86266,26.44292],[89.8642,26.44676],[89.87203,26.45139],[89.87043,26.4567],[89.87244,26.4645],[89.86863,26.46861],[89.86482,26.46912],[89.86159,26.48188],[89.86237,26.48355],[89.85633,26.4854],[89.85414,26.48817],[89.85436,26.4934],[89.85884,26.49991],[89.85683,26.50076],[89.85676,26.5066],[89.85878,26.51261],[89.85604,26.51478],[89.8561,26.51843],[89.86294,26.53003],[89.86586,26.53228],[89.86318,26.54164],[89.86899,26.55387],[89.86736,26.56948],[89.86449,26.57324],[89.86599,26.57677],[89.87116,26.57907],[89.87292,26.5783],[89.8826,26.58339],[89.87377,26.59134],[89.87953,26.6093],[89.87842,26.61553],[89.86415,26.61573],[89.85825,26.62338],[89.85916,26.62956],[89.86713,26.63494],[89.87693,26.64851],[89.87046,26.65533],[89.87013,26.65783],[89.87419,26.66672],[89.87235,26.67248],[89.87458,26.68362],[89.86333,26.70085],[89.81235,26.71063],[89.80659,26.71059],[89.77137,26.701],[89.76667,26.70411],[89.7616,26.71414],[89.75484,26.71749],[89.75516,26.72188],[89.75804,26.72457],[89.75868,26.72883],[89.7528,26.73531],[89.74884,26.73365],[89.74473,26.72882],[89.73918,26.72935],[89.73215,26.72472],[89.73119,26.72561],[89.72408,26.72229],[89.71846,26.72735],[89.71791,26.72976],[89.7077,26.73118],[89.70028,26.73734],[89.6899,26.73307],[89.67685,26.73968],[89.67176,26.73981],[89.66975,26.73874],[89.66943,26.73175],[89.65787,26.71865],[89.64995,26.71734],[89.648,26.72054],[89.63969,26.72237],[89.63513,26.72501],[89.6311,26.71883],[89.62943,26.71952],[89.6274,26.71755],[89.62378,26.71845],[89.62311,26.72345],[89.61845,26.72658],[89.61745,26.72931],[89.62188,26.73492],[89.62242,26.73895],[89.6334,26.74562],[89.64352,26.74854],[89.64572,26.75276],[89.64389,26.76034],[89.64765,26.76167],[89.65017,26.76666],[89.65327,26.76688],[89.65058,26.7763],[89.6467,26.77802],[89.64685,26.77689],[89.64396,26.77698],[89.64073,26.78149],[89.63476,26.78138],[89.63182,26.78306],[89.62092,26.77751],[89.61894,26.7818],[89.61396,26.78605],[89.60003,26.78727],[89.59391,26.7921],[89.58747,26.79195],[89.58088,26.79538],[89.5659,26.79935],[89.56549,26.80308],[89.56208,26.80609],[89.56017,26.81286],[89.55096,26.8121],[89.54828,26.80925],[89.5433,26.81227],[89.53901,26.81215],[89.53387,26.81473],[89.52671,26.81253],[89.5244,26.81424],[89.52561,26.81491],[89.51843,26.81233],[89.51222,26.81432],[89.50094,26.80547],[89.49463,26.80317],[89.48601,26.80296],[89.48249,26.80457],[89.48121,26.80174],[89.46953,26.80269],[89.46104,26.80608],[89.45007,26.81799],[89.44897,26.8264],[89.45035,26.83081],[89.43948,26.84034],[89.42285,26.83604],[89.41382,26.84034],[89.38977,26.84185],[89.38364,26.85908],[89.37898,26.86218],[89.32681,26.84323],[89.32312,26.85112],[89.3185,26.85132],[89.31213,26.84589],[89.29535,26.8396],[89.28109,26.83096],[89.27855,26.82657],[89.27308,26.82737],[89.2642,26.81813],[89.2624,26.81378],[89.23936,26.81869],[89.22898,26.81828],[89.19351,26.81078],[89.1763,26.81914],[89.13448,26.80764],[89.12409,26.82199],[89.11537,26.82421],[89.10287,26.8416],[89.10069,26.84253],[89.10625,26.86035],[89.09251,26.8726],[89.0957,26.89167],[89.07963,26.89701],[89.06945,26.90369],[89.04886,26.89911],[89.0509,26.91597],[89.04076,26.92295],[89.02999,26.92312],[89.02157,26.94069],[88.99181,26.92187],[88.98035,26.91719],[88.94392,26.93415],[88.94914,26.93788],[88.9476,26.94204],[88.95361,26.94734],[88.95466,26.9579],[88.95218,26.96312],[88.95248,26.96841],[88.92168,26.99393],[88.91169,26.98671],[88.90865,26.97946],[88.89781,26.96895],[88.89688,26.96577],[88.88502,26.95631],[88.88352,26.94813],[88.87713,26.94436],[88.87489,26.94867],[88.87415,26.9576],[88.87174,26.95921],[88.87111,26.96252],[88.87351,26.96694],[88.87249,26.97486],[88.87448,26.98257],[88.87028,26.99575],[88.8719,26.99745],[88.87358,27.00966],[88.8754,27.01233],[88.87613,27.02747],[88.87821,27.03457],[88.88103,27.03771],[88.87686,27.04199],[88.87636,27.04504],[88.87911,27.04899],[88.87873,27.0594],[88.88117,27.062],[88.87987,27.06612],[88.87503,27.0704],[88.87699,27.07362],[88.87423,27.0786],[88.87404,27.08659],[88.87564,27.08964],[88.87385,27.09241],[88.87339,27.09844],[88.8711,27.10138],[88.87088,27.10788],[88.86771,27.11244],[88.86661,27.11036],[88.85125,27.10803],[88.84693,27.11229],[88.84248,27.11115],[88.84279,27.11412],[88.83986,27.11636],[88.83364,27.11562],[88.82615,27.12172],[88.81966,27.12213],[88.8117,27.12687],[88.80406,27.13883],[88.80203,27.1395],[88.79235,27.13547],[88.77374,27.13527],[88.76421,27.1402],[88.75465,27.14119],[88.74624,27.14417],[88.73862,27.1354],[88.72896,27.13627],[88.71781,27.14331],[88.71614,27.15977],[88.71248,27.16248],[88.71012,27.16684],[88.70516,27.16908],[88.70173,27.17387],[88.69153,27.17839],[88.68451,27.17989],[88.67801,27.17838],[88.67102,27.173],[88.66284,27.16168],[88.66026,27.16055],[88.65335,27.16193],[88.65145,27.16485],[88.64681,27.16616],[88.63978,27.16484],[88.63551,27.16668],[88.63424,27.17259],[88.62671,27.17755],[88.62597,27.18037],[88.62289,27.17936],[88.62228,27.18245],[88.62006,27.18194],[88.61871,27.18334],[88.61432,27.18169],[88.60371,27.18623],[88.60162,27.18567],[88.59795,27.18981],[88.59436,27.18789],[88.59286,27.19122],[88.59025,27.19033],[88.58879,27.18636],[88.58594,27.19039],[88.58333,27.1876],[88.58104,27.18881],[88.56721,27.18477],[88.55828,27.18561],[88.55197,27.1831],[88.54298,27.18318],[88.53963,27.17738],[88.53507,27.17889],[88.5315,27.17241],[88.52463,27.17389],[88.52077,27.17289],[88.52758,27.16651],[88.53136,27.16514],[88.52764,27.1574],[88.53346,27.15496],[88.53235,27.15006],[88.51927,27.14752],[88.51769,27.14323],[88.51324,27.14075],[88.5112,27.13724],[88.50593,27.13661],[88.49967,27.13091],[88.49774,27.12382],[88.48748,27.12592],[88.48509,27.12092],[88.47624,27.1223],[88.46787,27.11395],[88.46645,27.10274],[88.46197,27.09838],[88.45958,27.09058],[88.45053,27.08389],[88.43926,27.08241],[88.43295,27.07926],[88.41103,27.08895],[88.39922,27.09025],[88.38737,27.09494],[88.37489,27.09748],[88.35875,27.09601],[88.35682,27.09738],[88.35604,27.10102],[88.34952,27.0998],[88.3457,27.10692],[88.34139,27.11012],[88.33784,27.10983],[88.33537,27.10675],[88.32944,27.10777],[88.32154,27.10475],[88.32109,27.10686],[88.32368,27.1105],[88.32285,27.11764],[88.31645,27.12179],[88.31534,27.12615],[88.31082,27.12507],[88.30229,27.12929],[88.29918,27.12833],[88.29722,27.12518],[88.29033,27.12785],[88.28507,27.12692],[88.27901,27.13187],[88.27421,27.13083],[88.27248,27.12815],[88.26839,27.12951],[88.25906,27.12526],[88.24858,27.12435],[88.24177,27.1195],[88.23002,27.11898],[88.2196,27.12511],[88.21945,27.12847],[88.2157,27.13166],[88.21375,27.13196],[88.21149,27.12989],[88.20572,27.13346],[88.20144,27.13143],[88.19463,27.13485],[88.19203,27.13248],[88.18958,27.13322],[88.18536,27.13077],[88.18101,27.13247],[88.17919,27.12983],[88.17587,27.12981],[88.17232,27.12736],[88.1706,27.12263],[88.16729,27.12243],[88.16213,27.11343],[88.15859,27.11346],[88.15635,27.11],[88.15097,27.10997],[88.14984,27.1139],[88.14472,27.11195],[88.14404,27.11561],[88.13891,27.11391],[88.13663,27.11465],[88.13549,27.12048],[88.12354,27.12101],[88.11174,27.13118],[88.09671,27.1328],[88.08885,27.14326],[88.0871,27.16422],[88.07741,27.1729],[88.07976,27.17437],[88.07854,27.18035],[88.07272,27.1872],[88.07917,27.20109],[88.07169,27.20416],[88.06552,27.20916],[88.0645,27.2144],[88.05282,27.21341],[88.04389,27.21923],[88.03494,27.22098]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-CT","area_level":"State","area_name":"Chhattisgarh","geometry_source":"SOI_States","same_as":"ISO-3166-2/IN-CG/State"},"geometry":{"type":"Polygon","coordinates":[[[83.34603,24.09744],[83.33621,24.09882],[83.32145,24.10602],[83.31475,24.09097],[83.3056,24.07964],[83.29946,24.07893],[83.2874,24.05511],[83.28211,24.04973],[83.284,24.03953],[83.28345,24.03242],[83.27911,24.01827],[83.27275,24.01817],[83.26363,24.00924],[83.25976,24.00947],[83.25768,24.01311],[83.25188,24.01491],[83.24259,24.01159],[83.24114,24.0053],[83.24243,23.99718],[83.23366,23.99607],[83.23143,23.99398],[83.2305,23.98877],[83.22361,23.98665],[83.22333,23.98421],[83.22691,23.97788],[83.21967,23.97294],[83.21861,23.96898],[83.22282,23.9622],[83.22313,23.95815],[83.21994,23.95271],[83.22003,23.94885],[83.21552,23.94551],[83.21599,23.9379],[83.21193,23.93574],[83.20846,23.93057],[83.20382,23.92868],[83.20794,23.92424],[83.20792,23.92139],[83.19843,23.91406],[83.19464,23.91433],[83.19317,23.91693],[83.18976,23.91735],[83.18803,23.91452],[83.18129,23.9151],[83.17827,23.91216],[83.17467,23.9123],[83.17119,23.90777],[83.16367,23.90877],[83.15948,23.90738],[83.15422,23.90404],[83.15277,23.89947],[83.15384,23.89673],[83.14822,23.89329],[83.14759,23.88898],[83.14148,23.88492],[83.12568,23.88279],[83.11167,23.87906],[83.09775,23.87324],[83.08189,23.87046],[83.07505,23.87012],[83.07115,23.87421],[83.06213,23.87394],[83.05248,23.87953],[83.01871,23.87947],[83.00125,23.87679],[83.00163,23.87364],[82.99722,23.87259],[82.98284,23.87416],[82.97458,23.87163],[82.94788,23.87142],[82.93662,23.87707],[82.93065,23.88946],[82.92722,23.89229],[82.9117,23.8975],[82.90516,23.89789],[82.88471,23.90884],[82.87725,23.91779],[82.86522,23.9264],[82.86111,23.93893],[82.85828,23.93926],[82.85335,23.94547],[82.84865,23.94535],[82.84112,23.95066],[82.83699,23.9568],[82.82672,23.9623],[82.81261,23.95987],[82.801,23.96096],[82.79837,23.95081],[82.79002,23.946],[82.78589,23.94089],[82.77662,23.93667],[82.77034,23.93699],[82.76201,23.93383],[82.75446,23.93419],[82.75609,23.92503],[82.75526,23.92171],[82.75238,23.91979],[82.715,23.92139],[82.71085,23.92368],[82.70351,23.92449],[82.69803,23.91992],[82.69342,23.9202],[82.68888,23.9098],[82.6834,23.90929],[82.68058,23.90715],[82.67638,23.90925],[82.67466,23.90674],[82.67115,23.90579],[82.66159,23.90764],[82.65106,23.88948],[82.65123,23.88676],[82.66845,23.87179],[82.66448,23.86255],[82.66022,23.86284],[82.66156,23.85693],[82.66047,23.85514],[82.65157,23.85548],[82.65058,23.85685],[82.65287,23.85879],[82.64958,23.86025],[82.64683,23.85914],[82.64721,23.85597],[82.6451,23.85511],[82.64718,23.85369],[82.64714,23.84872],[82.64244,23.84694],[82.63814,23.84798],[82.63674,23.84448],[82.63917,23.84165],[82.63534,23.83771],[82.62954,23.83879],[82.60756,23.83329],[82.60224,23.8303],[82.59995,23.82653],[82.58862,23.82144],[82.58361,23.82071],[82.58181,23.82301],[82.57922,23.82241],[82.57776,23.82423],[82.5732,23.82406],[82.56937,23.8203],[82.56476,23.82074],[82.56322,23.82285],[82.55425,23.8262],[82.54674,23.82619],[82.54749,23.82255],[82.53307,23.82215],[82.53355,23.82023],[82.53834,23.8202],[82.5388,23.81637],[82.54844,23.80855],[82.55147,23.79064],[82.54181,23.79149],[82.53813,23.79425],[82.53549,23.7908],[82.52446,23.78374],[82.51097,23.78602],[82.4974,23.7849],[82.48893,23.78995],[82.48418,23.80035],[82.47919,23.80246],[82.47906,23.80595],[82.46926,23.81106],[82.45378,23.81155],[82.44691,23.80455],[82.44065,23.80279],[82.4379,23.80374],[82.43574,23.80262],[82.43431,23.805],[82.42326,23.80459],[82.3932,23.79994],[82.39287,23.80324],[82.39062,23.8052],[82.37697,23.81104],[82.36924,23.80905],[82.36405,23.80994],[82.36352,23.80803],[82.35265,23.80353],[82.33947,23.80862],[82.33466,23.80255],[82.33086,23.80616],[82.3175,23.81176],[82.31152,23.8102],[82.30578,23.81172],[82.30483,23.80739],[82.29877,23.807],[82.29181,23.80982],[82.28164,23.81698],[82.27211,23.81708],[82.26061,23.82124],[82.25013,23.81568],[82.24331,23.80852],[82.23728,23.80532],[82.23181,23.80531],[82.22704,23.80829],[82.22551,23.82008],[82.20631,23.82741],[82.20811,23.83493],[82.21197,23.83585],[82.21532,23.84102],[82.21178,23.852],[82.20128,23.84864],[82.19714,23.84165],[82.18887,23.84259],[82.18622,23.83867],[82.18085,23.83628],[82.17856,23.82161],[82.17146,23.81824],[82.16383,23.82068],[82.14206,23.81555],[82.14172,23.81689],[82.12929,23.81903],[82.12337,23.82205],[82.11659,23.81701],[82.10665,23.81868],[82.09544,23.81553],[82.09418,23.81668],[82.08327,23.81542],[82.07764,23.81864],[82.07233,23.81704],[82.06173,23.81916],[82.05358,23.81838],[82.05244,23.82165],[82.04924,23.82422],[82.03842,23.82684],[82.03876,23.83313],[82.04087,23.83292],[82.04127,23.83688],[82.04405,23.83883],[82.04418,23.84165],[82.03475,23.84641],[82.02047,23.84907],[82.00881,23.86108],[82.00093,23.86218],[81.98907,23.86043],[81.98599,23.86192],[81.98171,23.86089],[81.97721,23.85624],[81.97033,23.85723],[81.9654,23.85591],[81.96359,23.85361],[81.96027,23.85553],[81.9578,23.85228],[81.95556,23.85341],[81.95417,23.85712],[81.94993,23.85665],[81.94608,23.85877],[81.94692,23.86189],[81.93848,23.86235],[81.93823,23.86409],[81.94046,23.86559],[81.93965,23.86775],[81.92893,23.87072],[81.92046,23.87061],[81.9204,23.86732],[81.91615,23.85951],[81.91044,23.85722],[81.90866,23.85108],[81.90629,23.84992],[81.90609,23.84606],[81.902,23.84486],[81.89875,23.84072],[81.89223,23.84052],[81.88816,23.83555],[81.86771,23.83414],[81.86628,23.82869],[81.86307,23.82446],[81.8382,23.8211],[81.83653,23.81998],[81.83688,23.8162],[81.82916,23.81503],[81.82751,23.81381],[81.82738,23.8106],[81.82282,23.80772],[81.815,23.80645],[81.80874,23.81342],[81.7959,23.81489],[81.79313,23.80991],[81.79112,23.80935],[81.77316,23.8164],[81.76212,23.82361],[81.75451,23.83075],[81.74285,23.83377],[81.73736,23.83918],[81.73223,23.84086],[81.72846,23.83902],[81.72547,23.83982],[81.72504,23.84463],[81.72969,23.84894],[81.73198,23.85668],[81.7202,23.86221],[81.70749,23.86113],[81.70728,23.86505],[81.70974,23.87125],[81.7077,23.87419],[81.70384,23.87593],[81.70731,23.88236],[81.70265,23.88619],[81.69044,23.88476],[81.68754,23.90648],[81.68256,23.9114],[81.67231,23.91339],[81.67172,23.91955],[81.66858,23.92496],[81.66238,23.92427],[81.65778,23.91634],[81.63847,23.91083],[81.63645,23.90759],[81.63218,23.90582],[81.62076,23.90673],[81.60902,23.9032],[81.60836,23.90149],[81.61047,23.89877],[81.61157,23.89229],[81.60375,23.88471],[81.60424,23.88175],[81.62221,23.87024],[81.61426,23.8617],[81.60493,23.86149],[81.60318,23.85371],[81.60772,23.84639],[81.6122,23.84315],[81.61132,23.83701],[81.61323,23.83448],[81.61675,23.83345],[81.62241,23.83538],[81.63242,23.83593],[81.63584,23.83451],[81.63746,23.82767],[81.64162,23.82058],[81.64132,23.81474],[81.64665,23.8115],[81.65145,23.79906],[81.64947,23.78336],[81.64445,23.77482],[81.64466,23.77013],[81.65203,23.76537],[81.67668,23.75685],[81.68185,23.7533],[81.68676,23.7475],[81.67917,23.74234],[81.67847,23.73937],[81.68606,23.73304],[81.68953,23.72377],[81.69591,23.72132],[81.68502,23.70021],[81.68408,23.69092],[81.66596,23.685],[81.66062,23.68466],[81.65555,23.68202],[81.65422,23.6778],[81.6563,23.67214],[81.65517,23.66314],[81.64455,23.65718],[81.61457,23.66292],[81.61933,23.65839],[81.62033,23.65143],[81.6142,23.62244],[81.60651,23.61387],[81.6111,23.60327],[81.61197,23.59525],[81.60834,23.59659],[81.60359,23.59336],[81.59811,23.59423],[81.59681,23.59236],[81.593,23.59601],[81.5897,23.59603],[81.58497,23.59455],[81.57668,23.58534],[81.58402,23.55358],[81.61032,23.55508],[81.61409,23.54567],[81.61247,23.54086],[81.61323,23.53343],[81.61633,23.53075],[81.61627,23.52843],[81.61368,23.52758],[81.61375,23.52168],[81.61537,23.51946],[81.61152,23.51588],[81.61232,23.51021],[81.62537,23.49676],[81.62705,23.49132],[81.62921,23.49215],[81.6321,23.49017],[81.63728,23.49036],[81.64222,23.49689],[81.64218,23.49895],[81.64849,23.49975],[81.6537,23.49806],[81.65459,23.50194],[81.65817,23.50491],[81.65954,23.51177],[81.66237,23.51414],[81.65891,23.529],[81.66812,23.53295],[81.68005,23.52925],[81.69034,23.52837],[81.69964,23.52202],[81.70204,23.52452],[81.702,23.52801],[81.70594,23.52908],[81.71108,23.53488],[81.7145,23.53597],[81.71539,23.54073],[81.72253,23.5433],[81.72152,23.54721],[81.72431,23.55026],[81.72523,23.55687],[81.72802,23.55649],[81.73636,23.56646],[81.73761,23.56507],[81.74238,23.56615],[81.74664,23.5698],[81.75265,23.56795],[81.7548,23.56559],[81.75826,23.54987],[81.77164,23.55054],[81.80191,23.5484],[81.80907,23.54934],[81.81698,23.54087],[81.81959,23.52972],[81.81758,23.52212],[81.82069,23.51524],[81.83643,23.51091],[81.83965,23.51089],[81.84398,23.5144],[81.85026,23.51355],[81.85218,23.51529],[81.86369,23.51757],[81.86912,23.51293],[81.8756,23.51271],[81.88126,23.51507],[81.89368,23.52446],[81.89685,23.52465],[81.90444,23.52955],[81.90787,23.53533],[81.91853,23.535],[81.92329,23.53266],[81.93785,23.51631],[81.93763,23.51374],[81.94234,23.50569],[81.94782,23.5011],[81.95791,23.5007],[81.95503,23.4854],[81.95499,23.46717],[81.95783,23.46532],[81.96472,23.4657],[81.96904,23.46035],[81.97036,23.45558],[81.97688,23.45181],[81.97599,23.44862],[81.9804,23.44704],[81.97779,23.44197],[81.98382,23.43457],[81.98177,23.43366],[81.98169,23.43094],[81.9839,23.42928],[81.97674,23.4238],[81.98254,23.42016],[81.98533,23.41449],[81.98843,23.41453],[81.99056,23.41849],[81.99969,23.42156],[82.0024,23.41696],[82.00955,23.41199],[82.01182,23.41592],[82.02548,23.42488],[82.02578,23.41999],[82.03275,23.40999],[82.03063,23.40824],[82.02569,23.40969],[82.02385,23.40867],[82.0238,23.40676],[82.02907,23.4002],[82.02116,23.39177],[82.0219,23.38732],[82.03231,23.38242],[82.03685,23.38874],[82.04447,23.38005],[82.056,23.37678],[82.05876,23.37875],[82.06406,23.39294],[82.07112,23.39121],[82.07704,23.39494],[82.08217,23.39347],[82.08601,23.39699],[82.09148,23.39828],[82.09301,23.39747],[82.09204,23.39364],[82.09348,23.39286],[82.10341,23.39824],[82.10494,23.39698],[82.10524,23.39256],[82.11377,23.38416],[82.1118,23.36613],[82.11011,23.36317],[82.11714,23.35546],[82.12374,23.35372],[82.14091,23.36181],[82.14575,23.36118],[82.15383,23.35036],[82.16208,23.34284],[82.16373,23.33467],[82.18281,23.32737],[82.19208,23.32677],[82.19396,23.32384],[82.19939,23.31343],[82.19479,23.30859],[82.19741,23.30688],[82.19603,23.30371],[82.19732,23.30066],[82.19671,23.29728],[82.19382,23.29522],[82.19221,23.28849],[82.19474,23.28439],[82.19338,23.27797],[82.1888,23.2735],[82.18533,23.2739],[82.17435,23.2687],[82.17229,23.2584],[82.16829,23.25515],[82.16964,23.25174],[82.16651,23.25008],[82.16718,23.24589],[82.16276,23.24509],[82.15978,23.24633],[82.15308,23.23047],[82.14527,23.22672],[82.14841,23.2211],[82.14762,23.21897],[82.15361,23.21274],[82.14976,23.20373],[82.14925,23.19738],[82.14398,23.19514],[82.14825,23.18895],[82.14364,23.18711],[82.14464,23.17954],[82.14905,23.17737],[82.1495,23.17548],[82.14854,23.17113],[82.14435,23.16565],[82.14516,23.16341],[82.16092,23.16205],[82.16226,23.15728],[82.16136,23.14311],[82.15687,23.13847],[82.1407,23.13293],[82.13664,23.12544],[82.13791,23.112],[82.12225,23.1038],[82.11609,23.1056],[82.1111,23.10935],[82.09787,23.10852],[82.0935,23.10907],[82.09216,23.11237],[82.08042,23.11269],[82.0749,23.11484],[82.07222,23.11832],[82.07008,23.1165],[82.06681,23.11676],[82.0664,23.11498],[82.06193,23.11241],[82.06005,23.10848],[82.05513,23.10685],[82.05323,23.09966],[82.04781,23.09644],[82.04906,23.09383],[82.04665,23.09248],[82.0471,23.09135],[82.04366,23.09035],[82.04372,23.08851],[82.03419,23.08005],[82.02808,23.08024],[82.02753,23.08222],[82.02257,23.07944],[82.01961,23.08104],[82.01857,23.0841],[82.01755,23.08243],[82.01276,23.08217],[82.01174,23.08004],[82.00783,23.07912],[82.00445,23.08119],[82.00042,23.08105],[81.99774,23.08441],[81.99432,23.08355],[81.99114,23.08661],[81.98948,23.08431],[81.98827,23.08614],[81.98565,23.08587],[81.98533,23.08267],[81.98241,23.08265],[81.98127,23.08015],[81.98086,23.08263],[81.97717,23.08101],[81.97621,23.07898],[81.96789,23.08072],[81.96341,23.07821],[81.96317,23.07519],[81.94225,23.07897],[81.94604,23.07628],[81.94506,23.07258],[81.94685,23.0691],[81.9439,23.06739],[81.94294,23.06477],[81.93781,23.06525],[81.9374,23.06188],[81.92955,23.06164],[81.93027,23.05904],[81.92678,23.05758],[81.92904,23.04983],[81.92449,23.04711],[81.9215,23.04081],[81.92561,23.0292],[81.93183,23.02548],[81.92951,23.02273],[81.92977,23.02061],[81.93673,23.01617],[81.93955,23.00953],[81.93914,23.00462],[81.94544,22.99582],[81.94476,22.98917],[81.95048,22.98293],[81.94621,22.97392],[81.94781,22.96754],[81.94631,22.95678],[81.91892,22.94655],[81.91274,22.94165],[81.90469,22.93145],[81.89815,22.92593],[81.8904,22.92266],[81.87824,22.90981],[81.86912,22.91733],[81.86611,22.91581],[81.86552,22.91274],[81.86933,22.9098],[81.86811,22.90209],[81.86949,22.89451],[81.86163,22.88926],[81.85319,22.89089],[81.84626,22.88672],[81.84207,22.88775],[81.83824,22.88525],[81.83837,22.88278],[81.83392,22.8809],[81.82748,22.8828],[81.81758,22.88228],[81.77568,22.87444],[81.77746,22.86752],[81.7749,22.86391],[81.77729,22.85549],[81.77653,22.85164],[81.77401,22.85022],[81.76784,22.83541],[81.76135,22.83029],[81.76946,22.82776],[81.77766,22.81643],[81.77791,22.81328],[81.78178,22.81095],[81.78413,22.7987],[81.78193,22.79607],[81.78098,22.78994],[81.7837,22.78395],[81.78358,22.77918],[81.79439,22.76646],[81.78848,22.76355],[81.77928,22.75086],[81.77307,22.75055],[81.76902,22.74187],[81.76993,22.73558],[81.75573,22.73379],[81.75359,22.72852],[81.75344,22.72102],[81.76115,22.69753],[81.77284,22.6847],[81.77237,22.66821],[81.75704,22.6472],[81.75263,22.64449],[81.74998,22.64558],[81.74847,22.64837],[81.74901,22.65178],[81.75202,22.65437],[81.75029,22.65935],[81.7464,22.66291],[81.74299,22.67254],[81.73953,22.67509],[81.73947,22.67212],[81.72785,22.67535],[81.72526,22.67308],[81.72272,22.65706],[81.71314,22.64809],[81.69889,22.64476],[81.68877,22.64847],[81.68332,22.64691],[81.67451,22.63755],[81.67205,22.63256],[81.66904,22.63196],[81.66244,22.62681],[81.6609,22.61929],[81.65274,22.61856],[81.64725,22.61326],[81.64571,22.60487],[81.64803,22.5977],[81.64649,22.59341],[81.64943,22.58895],[81.64498,22.58686],[81.64548,22.58444],[81.64896,22.58496],[81.64971,22.58145],[81.65184,22.58085],[81.65783,22.58444],[81.65517,22.57881],[81.65556,22.57582],[81.65618,22.57229],[81.65993,22.56946],[81.65346,22.56302],[81.64929,22.56328],[81.64277,22.55971],[81.63874,22.5611],[81.63625,22.56005],[81.63519,22.56528],[81.62903,22.56336],[81.62404,22.55588],[81.62869,22.54442],[81.62194,22.53802],[81.61542,22.53692],[81.61321,22.53867],[81.60499,22.53461],[81.59998,22.53526],[81.59634,22.53653],[81.59183,22.54522],[81.58623,22.54392],[81.56955,22.55073],[81.56283,22.5475],[81.56275,22.54236],[81.56303,22.53396],[81.57003,22.53227],[81.56253,22.53344],[81.55895,22.53079],[81.55296,22.53105],[81.54608,22.52758],[81.54098,22.53304],[81.53267,22.53853],[81.52223,22.53901],[81.52134,22.5366],[81.52344,22.53217],[81.51824,22.5198],[81.51049,22.52196],[81.50931,22.52606],[81.49665,22.51952],[81.49553,22.51426],[81.49744,22.51164],[81.49442,22.50501],[81.48938,22.50317],[81.48631,22.49376],[81.48701,22.49024],[81.48471,22.48783],[81.47856,22.49222],[81.4728,22.49374],[81.46301,22.49307],[81.45884,22.48947],[81.45257,22.49581],[81.44942,22.49576],[81.44689,22.49343],[81.44261,22.49435],[81.44397,22.49072],[81.45108,22.4866],[81.44724,22.48465],[81.44254,22.4792],[81.4464,22.47618],[81.45088,22.47859],[81.45019,22.47124],[81.44662,22.46976],[81.44903,22.46752],[81.45589,22.4695],[81.4573,22.47168],[81.45893,22.46929],[81.45528,22.46688],[81.44737,22.46588],[81.44102,22.47178],[81.44293,22.4738],[81.44153,22.47991],[81.43921,22.48212],[81.43221,22.47921],[81.42784,22.47981],[81.42278,22.47005],[81.42451,22.46327],[81.4287,22.45689],[81.42295,22.44769],[81.4067,22.44095],[81.39641,22.44008],[81.39298,22.44904],[81.39006,22.45226],[81.39045,22.45582],[81.38811,22.45921],[81.39006,22.46331],[81.38865,22.46821],[81.39125,22.47109],[81.3915,22.47771],[81.38406,22.48976],[81.38619,22.49855],[81.38206,22.50982],[81.37582,22.51105],[81.37063,22.51488],[81.36136,22.515],[81.36059,22.51204],[81.35431,22.51126],[81.35388,22.51423],[81.3506,22.51759],[81.34006,22.51951],[81.33474,22.52424],[81.32653,22.52614],[81.32287,22.52302],[81.32338,22.51893],[81.31839,22.51686],[81.31721,22.51461],[81.31993,22.50705],[81.31985,22.50323],[81.3182,22.50186],[81.32089,22.49523],[81.31813,22.49392],[81.32225,22.49118],[81.3228,22.48916],[81.32049,22.48596],[81.31518,22.48777],[81.31373,22.48292],[81.30729,22.48191],[81.29995,22.49029],[81.29178,22.49429],[81.28127,22.50295],[81.27329,22.49319],[81.26907,22.49432],[81.26213,22.49327],[81.25978,22.48513],[81.26193,22.47217],[81.24831,22.45878],[81.23219,22.45216],[81.20774,22.45659],[81.20612,22.46084],[81.19946,22.46303],[81.20145,22.4682],[81.19992,22.4852],[81.19767,22.48957],[81.19352,22.49095],[81.18697,22.48884],[81.17269,22.48791],[81.16724,22.47797],[81.16282,22.47455],[81.15512,22.45491],[81.1497,22.45313],[81.14103,22.45423],[81.12701,22.44923],[81.12053,22.4458],[81.11116,22.43757],[81.10882,22.42876],[81.11034,22.41744],[81.10834,22.40096],[81.10598,22.38769],[81.10366,22.38337],[81.10867,22.37382],[81.11312,22.35327],[81.12121,22.3426],[81.11355,22.32413],[81.11894,22.30922],[81.11872,22.29126],[81.10799,22.2845],[81.10185,22.2783],[81.09731,22.26898],[81.09153,22.249],[81.08241,22.24383],[81.07955,22.23938],[81.07771,22.23904],[81.07604,22.24465],[81.07261,22.24837],[81.05961,22.24429],[81.05006,22.24455],[81.03791,22.23389],[81.02705,22.22892],[81.02364,22.22928],[81.01946,22.22118],[81.02176,22.21212],[81.03037,22.20317],[81.03164,22.19965],[81.02901,22.1925],[81.03066,22.1874],[81.02553,22.1874],[81.02243,22.18947],[81.01666,22.18553],[81.01716,22.17961],[81.02675,22.16639],[81.02631,22.16284],[81.02221,22.15773],[81.02378,22.14867],[81.02191,22.13273],[81.01368,22.13367],[80.99906,22.13132],[80.99487,22.13302],[80.98895,22.12825],[80.9826,22.1257],[80.97814,22.12011],[80.98096,22.11021],[80.98434,22.11456],[80.99048,22.11355],[81.00316,22.10106],[81.00666,22.09995],[81.01133,22.09557],[81.00612,22.09219],[81.00145,22.0835],[81.00458,22.07536],[81.0067,22.075],[81.00895,22.07177],[81.0062,22.06321],[81.00317,22.05849],[80.99488,22.05861],[80.99439,22.04924],[80.98967,22.05138],[80.98354,22.0486],[80.98054,22.05471],[80.9694,22.05799],[80.96918,22.06671],[80.97213,22.07891],[80.97166,22.08305],[80.96655,22.09353],[80.96101,22.10003],[80.96076,22.10357],[80.95698,22.11042],[80.94758,22.11827],[80.92195,22.11995],[80.91469,22.11319],[80.90793,22.10957],[80.89707,22.06478],[80.89295,22.06308],[80.88901,22.0571],[80.88611,22.05915],[80.88251,22.05856],[80.88216,22.05248],[80.8858,22.04962],[80.87579,22.03853],[80.87695,22.03391],[80.87578,22.01104],[80.86575,21.99426],[80.85914,21.97078],[80.85267,21.95731],[80.84087,21.95558],[80.83849,21.95797],[80.83606,21.95453],[80.82881,21.95871],[80.82549,21.95842],[80.8275,21.95617],[80.82602,21.95284],[80.82913,21.95355],[80.82747,21.95127],[80.82898,21.94838],[80.83318,21.95011],[80.83129,21.94729],[80.83404,21.94575],[80.83647,21.94974],[80.83753,21.94698],[80.84304,21.94612],[80.84204,21.94415],[80.84589,21.94208],[80.84139,21.94117],[80.84571,21.93985],[80.84581,21.93397],[80.8477,21.93253],[80.84765,21.93074],[80.84562,21.93043],[80.8461,21.92624],[80.83925,21.92305],[80.83981,21.91945],[80.83623,21.91461],[80.835,21.90834],[80.83212,21.90797],[80.83614,21.907],[80.83339,21.90213],[80.83477,21.89574],[80.83205,21.89035],[80.83394,21.89105],[80.83276,21.88911],[80.83499,21.88559],[80.84326,21.88239],[80.84279,21.88064],[80.84504,21.87767],[80.84295,21.87607],[80.84621,21.87387],[80.84991,21.87625],[80.84956,21.87344],[80.85331,21.87257],[80.85272,21.87048],[80.84909,21.87113],[80.84576,21.86975],[80.84276,21.86533],[80.84539,21.86475],[80.84524,21.86233],[80.84741,21.86354],[80.8487,21.8619],[80.8465,21.85997],[80.84929,21.85917],[80.85024,21.85588],[80.85256,21.85486],[80.85094,21.8521],[80.84654,21.85281],[80.83937,21.84784],[80.84127,21.83978],[80.83891,21.84002],[80.8407,21.83867],[80.83868,21.83836],[80.83837,21.8367],[80.84247,21.83553],[80.84518,21.82882],[80.84039,21.81823],[80.84143,21.81539],[80.83906,21.81327],[80.84036,21.8124],[80.83751,21.80945],[80.83956,21.80721],[80.83809,21.80531],[80.8395,21.80323],[80.83862,21.80231],[80.84018,21.80215],[80.83567,21.79717],[80.83663,21.7961],[80.83205,21.7942],[80.83181,21.78946],[80.82984,21.78916],[80.83022,21.78678],[80.82618,21.78298],[80.8262,21.78159],[80.82954,21.77994],[80.82709,21.77863],[80.82821,21.77621],[80.82358,21.77499],[80.82274,21.77289],[80.82406,21.77218],[80.82263,21.7714],[80.82458,21.77045],[80.82133,21.768],[80.82278,21.76795],[80.822,21.76602],[80.81864,21.7656],[80.81712,21.76213],[80.81563,21.75573],[80.81661,21.75399],[80.82017,21.75402],[80.81974,21.74802],[80.80926,21.74843],[80.80451,21.74662],[80.80326,21.74447],[80.78543,21.74031],[80.78446,21.74287],[80.78585,21.74876],[80.77963,21.7507],[80.77627,21.75363],[80.77792,21.75477],[80.77203,21.75852],[80.75938,21.75918],[80.75599,21.76206],[80.74747,21.75554],[80.74034,21.74413],[80.73781,21.73626],[80.73987,21.732],[80.73338,21.72777],[80.734,21.72053],[80.73206,21.71366],[80.72614,21.71367],[80.72568,21.71214],[80.72902,21.70692],[80.73397,21.70594],[80.73513,21.70389],[80.73233,21.69816],[80.73414,21.69451],[80.733,21.69266],[80.72978,21.69206],[80.72531,21.68128],[80.72145,21.677],[80.71598,21.67473],[80.71918,21.66849],[80.71801,21.66619],[80.71526,21.66578],[80.7163,21.66328],[80.71439,21.66155],[80.71708,21.66008],[80.71928,21.64537],[80.72685,21.64562],[80.72764,21.63666],[80.72958,21.63403],[80.72901,21.62686],[80.73157,21.62651],[80.7291,21.62056],[80.73095,21.61735],[80.7234,21.61405],[80.72297,21.61203],[80.72498,21.60955],[80.72191,21.60955],[80.71705,21.60297],[80.71879,21.60037],[80.71637,21.59907],[80.71808,21.5932],[80.71543,21.5903],[80.71861,21.58743],[80.71536,21.58505],[80.7255,21.58009],[80.72891,21.57258],[80.72867,21.56995],[80.72571,21.5691],[80.72598,21.56635],[80.72117,21.56122],[80.72238,21.55993],[80.71999,21.555],[80.72455,21.55267],[80.72763,21.54869],[80.73419,21.54577],[80.74078,21.53923],[80.73048,21.5156],[80.73365,21.51279],[80.7315,21.50818],[80.73321,21.50066],[80.72929,21.49896],[80.7276,21.4962],[80.73289,21.48434],[80.73716,21.48098],[80.73775,21.47312],[80.73493,21.45991],[80.73001,21.45256],[80.72355,21.4443],[80.71429,21.43619],[80.70682,21.43307],[80.70574,21.43088],[80.70719,21.42546],[80.70655,21.41156],[80.69993,21.40458],[80.70055,21.3966],[80.69716,21.39343],[80.69911,21.39094],[80.69029,21.37207],[80.68739,21.36996],[80.68493,21.37015],[80.6802,21.36486],[80.68188,21.35995],[80.67648,21.35101],[80.67778,21.34881],[80.6716,21.34577],[80.67242,21.34096],[80.67114,21.33825],[80.66418,21.33733],[80.66005,21.33408],[80.66314,21.33437],[80.66556,21.32825],[80.6712,21.32565],[80.67487,21.32185],[80.67534,21.31775],[80.68156,21.31357],[80.6789,21.30333],[80.67957,21.29884],[80.66997,21.29116],[80.66124,21.29107],[80.65881,21.28669],[80.65908,21.28195],[80.65071,21.27738],[80.64917,21.27352],[80.64879,21.26216],[80.64384,21.25147],[80.63926,21.24732],[80.635,21.24748],[80.62312,21.24009],[80.61702,21.22929],[80.61378,21.22657],[80.60592,21.2242],[80.59819,21.22548],[80.58758,21.2221],[80.5779,21.21749],[80.56977,21.20581],[80.55947,21.2021],[80.54144,21.20109],[80.52963,21.20533],[80.51776,21.19281],[80.51499,21.18303],[80.50927,21.18601],[80.50731,21.18463],[80.50259,21.18532],[80.50045,21.18273],[80.49361,21.1796],[80.49206,21.17702],[80.48675,21.17676],[80.47861,21.17068],[80.4757,21.17099],[80.47337,21.17368],[80.46405,21.17463],[80.46081,21.16476],[80.46104,21.15727],[80.45875,21.15005],[80.44471,21.12196],[80.44517,21.12068],[80.45474,21.11828],[80.45819,21.11387],[80.4536,21.11156],[80.45345,21.11268],[80.4478,21.11242],[80.44647,21.1048],[80.43915,21.09656],[80.44164,21.0936],[80.44087,21.08984],[80.44629,21.08412],[80.44652,21.07341],[80.44966,21.06918],[80.44718,21.06326],[80.44956,21.06029],[80.4495,21.05726],[80.45393,21.05306],[80.4512,21.04284],[80.45264,21.03883],[80.45064,21.03684],[80.4495,21.03032],[80.44472,21.02799],[80.44012,21.02808],[80.43923,21.02184],[80.43581,21.02023],[80.42888,21.01169],[80.4251,21.01138],[80.42426,21.0085],[80.42581,21.00597],[80.43518,21.00148],[80.44377,20.99404],[80.44288,20.98645],[80.44553,20.97977],[80.44376,20.97719],[80.44535,20.97063],[80.4547,20.9528],[80.45472,20.94659],[80.46175,20.93984],[80.46175,20.93332],[80.4637,20.9292],[80.49295,20.92933],[80.50327,20.93135],[80.51907,20.92982],[80.53448,20.93459],[80.53902,20.93258],[80.54606,20.93501],[80.54628,20.93199],[80.54203,20.93022],[80.54294,20.92535],[80.54178,20.92392],[80.5481,20.91184],[80.55612,20.8892],[80.55393,20.87158],[80.55653,20.86089],[80.55504,20.84658],[80.55654,20.83784],[80.56123,20.83058],[80.56181,20.82437],[80.55859,20.81158],[80.54917,20.79606],[80.55219,20.78087],[80.55166,20.76403],[80.55867,20.75122],[80.56276,20.74732],[80.56284,20.734],[80.56001,20.7262],[80.56515,20.71079],[80.56729,20.70737],[80.57485,20.70405],[80.5818,20.69741],[80.58765,20.6847],[80.58368,20.67662],[80.58013,20.67292],[80.55697,20.67023],[80.55247,20.66809],[80.54491,20.66028],[80.53078,20.66011],[80.51793,20.65506],[80.49565,20.63685],[80.49415,20.6125],[80.49675,20.6024],[80.50284,20.59382],[80.50441,20.58335],[80.52093,20.58048],[80.53884,20.585],[80.54497,20.59018],[80.55783,20.59434],[80.56439,20.60362],[80.58077,20.60836],[80.60141,20.60879],[80.60502,20.60743],[80.61231,20.60051],[80.62829,20.60009],[80.63186,20.5984],[80.62406,20.59205],[80.62323,20.58923],[80.61735,20.58575],[80.62555,20.57813],[80.62108,20.57443],[80.62096,20.57006],[80.62587,20.56846],[80.62659,20.56381],[80.62406,20.55903],[80.62431,20.55577],[80.61843,20.55529],[80.61774,20.55212],[80.61527,20.5499],[80.61797,20.54658],[80.62132,20.5328],[80.61796,20.52545],[80.62088,20.52589],[80.61732,20.51517],[80.61885,20.51434],[80.61722,20.51066],[80.61932,20.50577],[80.61471,20.49256],[80.61635,20.48836],[80.6126,20.46193],[80.60217,20.44996],[80.60266,20.44621],[80.60805,20.44388],[80.61289,20.43871],[80.61364,20.43498],[80.60813,20.42415],[80.60009,20.41801],[80.59892,20.41058],[80.59148,20.39307],[80.59473,20.3858],[80.59729,20.38596],[80.59658,20.38384],[80.6038,20.38124],[80.61075,20.37506],[80.60948,20.36985],[80.6159,20.35991],[80.61511,20.35179],[80.61881,20.34913],[80.61854,20.34473],[80.62158,20.33956],[80.6258,20.33692],[80.62635,20.33263],[80.62237,20.32541],[80.61485,20.32239],[80.61052,20.3184],[80.58808,20.31792],[80.5592,20.30851],[80.54958,20.30896],[80.54604,20.30603],[80.54618,20.29766],[80.5435,20.29353],[80.5322,20.28086],[80.52256,20.27354],[80.51882,20.26617],[80.48991,20.27826],[80.47913,20.2783],[80.46694,20.27612],[80.44721,20.26246],[80.4369,20.26117],[80.42205,20.25349],[80.41678,20.24882],[80.39814,20.24427],[80.39526,20.24501],[80.39519,20.23701],[80.40483,20.21873],[80.42205,20.2068],[80.42101,20.19617],[80.41211,20.19447],[80.40069,20.18972],[80.39659,20.1739],[80.38854,20.1652],[80.40182,20.14724],[80.42593,20.13993],[80.42959,20.1361],[80.43338,20.13533],[80.45545,20.13793],[80.45465,20.14525],[80.45664,20.1493],[80.46015,20.15094],[80.46616,20.15042],[80.48508,20.14387],[80.49695,20.14553],[80.50559,20.14444],[80.50993,20.1413],[80.51241,20.13584],[80.53067,20.13172],[80.54034,20.12285],[80.55207,20.11796],[80.55193,20.10933],[80.54772,20.10542],[80.544,20.09564],[80.55491,20.07969],[80.55681,20.07188],[80.55437,20.06543],[80.55109,20.06164],[80.54931,20.05525],[80.55098,20.04164],[80.54684,20.02898],[80.54587,20.02116],[80.54697,20.01795],[80.54256,20.01077],[80.54985,20.00081],[80.5496,19.98597],[80.54378,19.97754],[80.53764,19.97379],[80.5378,19.96956],[80.5358,19.96553],[80.53939,19.96256],[80.53721,19.95931],[80.5389,19.95189],[80.53164,19.94857],[80.52989,19.93947],[80.52561,19.93731],[80.52362,19.93379],[80.50965,19.93105],[80.50474,19.92855],[80.50002,19.92861],[80.49593,19.93106],[80.48875,19.93061],[80.48073,19.93437],[80.47842,19.93844],[80.47998,19.94092],[80.47912,19.944],[80.47316,19.95095],[80.46603,19.94818],[80.45216,19.9576],[80.43015,19.94064],[80.41125,19.93849],[80.41257,19.92464],[80.40795,19.91271],[80.41388,19.90745],[80.42371,19.90259],[80.43322,19.90284],[80.45038,19.89633],[80.45717,19.89897],[80.46203,19.90438],[80.46862,19.90756],[80.47414,19.90381],[80.49143,19.90201],[80.49958,19.89084],[80.50582,19.87065],[80.49952,19.86968],[80.48629,19.86359],[80.48253,19.85881],[80.48417,19.85423],[80.48102,19.84927],[80.47869,19.83932],[80.4719,19.83556],[80.46908,19.82702],[80.46007,19.82299],[80.44072,19.81033],[80.42968,19.80714],[80.42158,19.8134],[80.41306,19.81639],[80.40162,19.81704],[80.40769,19.806],[80.4017,19.7962],[80.40488,19.79372],[80.42416,19.79916],[80.43949,19.79606],[80.4493,19.78977],[80.46426,19.79578],[80.46803,19.78882],[80.48083,19.78129],[80.48266,19.77274],[80.48903,19.77041],[80.49131,19.77529],[80.48999,19.79015],[80.48595,19.79648],[80.48497,19.80248],[80.47565,19.80362],[80.46888,19.81045],[80.48058,19.82751],[80.50037,19.82771],[80.50404,19.83085],[80.52021,19.83172],[80.5463,19.81827],[80.54522,19.80608],[80.54756,19.7949],[80.54244,19.78345],[80.54261,19.77992],[80.54374,19.7758],[80.55261,19.76556],[80.56215,19.76097],[80.57146,19.75923],[80.57382,19.75481],[80.58206,19.75082],[80.5842,19.74737],[80.58141,19.746],[80.58489,19.74408],[80.58647,19.74114],[80.5901,19.74222],[80.59438,19.73917],[80.59897,19.74031],[80.60572,19.73673],[80.61106,19.73817],[80.61397,19.73503],[80.6211,19.73303],[80.62676,19.72578],[80.64013,19.72531],[80.6502,19.71143],[80.65641,19.70709],[80.66344,19.70593],[80.67222,19.70072],[80.67425,19.68441],[80.66734,19.65771],[80.66637,19.63799],[80.66262,19.62248],[80.66533,19.61188],[80.67027,19.60932],[80.68847,19.61317],[80.70567,19.61398],[80.71465,19.6167],[80.73034,19.61018],[80.73308,19.6063],[80.74085,19.60623],[80.74588,19.60154],[80.75752,19.59667],[80.76,19.59165],[80.76532,19.59039],[80.76943,19.58667],[80.76703,19.57491],[80.77511,19.56251],[80.78113,19.56375],[80.78944,19.56042],[80.797,19.56248],[80.80633,19.56896],[80.81079,19.5689],[80.81615,19.5712],[80.82396,19.56672],[80.83559,19.56636],[80.83946,19.55941],[80.84065,19.55425],[80.8394,19.54921],[80.8437,19.53845],[80.84967,19.5345],[80.8499,19.52891],[80.85621,19.523],[80.86448,19.52004],[80.86851,19.52177],[80.87314,19.5187],[80.88369,19.52617],[80.8912,19.52051],[80.89496,19.51962],[80.89471,19.50962],[80.89321,19.50727],[80.89428,19.50369],[80.89294,19.5023],[80.89502,19.50079],[80.89768,19.48045],[80.89343,19.46658],[80.88001,19.4503],[80.87363,19.44499],[80.86437,19.44403],[80.85674,19.44604],[80.85345,19.44475],[80.85049,19.44669],[80.84759,19.44539],[80.84242,19.44691],[80.83013,19.44319],[80.82795,19.44014],[80.82306,19.43985],[80.81253,19.43276],[80.79585,19.43226],[80.79932,19.42272],[80.80429,19.41946],[80.80447,19.41195],[80.81223,19.40636],[80.81665,19.39715],[80.81733,19.38391],[80.82067,19.38116],[80.82839,19.38008],[80.84185,19.37191],[80.84905,19.36974],[80.85285,19.3639],[80.84608,19.35525],[80.83036,19.34818],[80.81007,19.33621],[80.80609,19.32751],[80.79883,19.32662],[80.79567,19.3234],[80.79022,19.3236],[80.77421,19.31358],[80.76861,19.30362],[80.76304,19.29719],[80.75974,19.29584],[80.75949,19.29125],[80.75573,19.28927],[80.75096,19.28776],[80.74313,19.28902],[80.74229,19.28708],[80.73832,19.28546],[80.72656,19.28718],[80.71076,19.28176],[80.70417,19.28309],[80.70185,19.2821],[80.69931,19.28474],[80.6957,19.28433],[80.6897,19.28698],[80.68865,19.29517],[80.69315,19.31555],[80.68613,19.32673],[80.6799,19.33033],[80.67313,19.33001],[80.65405,19.32281],[80.64836,19.31572],[80.64699,19.31649],[80.63649,19.31333],[80.63151,19.30717],[80.62329,19.30572],[80.61498,19.30983],[80.61254,19.30952],[80.60789,19.31823],[80.60766,19.32613],[80.59003,19.35177],[80.59084,19.3577],[80.58822,19.37026],[80.5918,19.37591],[80.58045,19.39861],[80.57708,19.40184],[80.57307,19.40246],[80.56248,19.3991],[80.5521,19.38854],[80.54417,19.38388],[80.53843,19.37779],[80.52033,19.34777],[80.50681,19.34242],[80.49574,19.34323],[80.48834,19.34177],[80.4825,19.33814],[80.47705,19.32992],[80.47134,19.31383],[80.46303,19.30092],[80.45736,19.28834],[80.45473,19.27499],[80.44603,19.26417],[80.42987,19.25408],[80.39847,19.2474],[80.39359,19.24501],[80.38631,19.233],[80.38391,19.21591],[80.38511,19.21151],[80.3918,19.20263],[80.39435,19.19637],[80.39384,19.1878],[80.38766,19.18051],[80.34789,19.16012],[80.34778,19.15236],[80.34068,19.14621],[80.33308,19.14552],[80.32743,19.13511],[80.33,19.13272],[80.33123,19.12795],[80.33068,19.12049],[80.33621,19.11185],[80.33962,19.10011],[80.32792,19.09505],[80.33114,19.08135],[80.32892,19.07591],[80.32967,19.07011],[80.31996,19.06588],[80.29734,19.04901],[80.29638,19.04688],[80.29824,19.04128],[80.30288,19.03491],[80.30516,19.02735],[80.30313,19.02216],[80.29153,19.00922],[80.28705,19.00682],[80.27401,18.99469],[80.27298,18.99144],[80.27393,18.96651],[80.26907,18.94807],[80.27088,18.93848],[80.2762,18.92977],[80.30006,18.91084],[80.3155,18.88949],[80.32619,18.8809],[80.33524,18.86865],[80.34926,18.8478],[80.35172,18.8416],[80.35431,18.82646],[80.35274,18.81898],[80.35035,18.81484],[80.3418,18.8124],[80.323,18.79897],[80.31401,18.79993],[80.30599,18.79794],[80.29994,18.79445],[80.29149,18.78347],[80.28845,18.77738],[80.28837,18.77378],[80.27679,18.76659],[80.27394,18.76551],[80.26217,18.7701],[80.25671,18.76998],[80.2477,18.7642],[80.24443,18.7579],[80.25974,18.74232],[80.27004,18.72561],[80.28361,18.71751],[80.28649,18.71143],[80.30072,18.69214],[80.30643,18.68137],[80.31867,18.64215],[80.32749,18.63538],[80.33102,18.62821],[80.3342,18.61338],[80.3463,18.59528],[80.34978,18.59379],[80.35563,18.59464],[80.36215,18.59915],[80.36295,18.60323],[80.36616,18.60706],[80.37516,18.61066],[80.37827,18.60891],[80.38845,18.59666],[80.39415,18.60061],[80.39585,18.60493],[80.40914,18.60979],[80.42,18.6104],[80.42241,18.61512],[80.42762,18.61288],[80.43039,18.61646],[80.45612,18.62936],[80.46554,18.62394],[80.47752,18.62584],[80.47917,18.62873],[80.48826,18.63109],[80.5016,18.62157],[80.51466,18.61933],[80.51883,18.61431],[80.51929,18.60865],[80.52813,18.60266],[80.53074,18.59894],[80.53525,18.59074],[80.53451,18.58835],[80.54228,18.58691],[80.55643,18.57974],[80.56749,18.57125],[80.57141,18.56468],[80.59096,18.5579],[80.59991,18.55304],[80.61064,18.54237],[80.6185,18.52767],[80.62276,18.52856],[80.63109,18.5219],[80.63757,18.52253],[80.64094,18.51151],[80.63685,18.50702],[80.63721,18.50435],[80.6513,18.4859],[80.65531,18.47586],[80.67334,18.46656],[80.67873,18.46077],[80.6861,18.45826],[80.68806,18.44736],[80.69576,18.44457],[80.70172,18.44459],[80.70531,18.43986],[80.69824,18.43756],[80.6962,18.42473],[80.69895,18.42143],[80.71827,18.40973],[80.72083,18.41104],[80.72286,18.41518],[80.73487,18.41284],[80.73217,18.40122],[80.71968,18.3908],[80.72276,18.38456],[80.7294,18.37884],[80.73023,18.37592],[80.7269,18.36913],[80.7315,18.35491],[80.74214,18.3411],[80.74765,18.32996],[80.74872,18.30892],[80.75772,18.30191],[80.75874,18.2993],[80.75683,18.29506],[80.75949,18.28987],[80.76186,18.28823],[80.76914,18.28763],[80.77548,18.2782],[80.78063,18.26605],[80.78983,18.26412],[80.79415,18.25963],[80.79424,18.25248],[80.79265,18.24945],[80.77678,18.24285],[80.7372,18.22209],[80.73682,18.17733],[80.74497,18.17033],[80.77544,18.16674],[80.79911,18.16817],[80.81326,18.18019],[80.81747,18.18911],[80.82407,18.19104],[80.8226,18.22411],[80.82359,18.23608],[80.83672,18.23892],[80.84343,18.23244],[80.86052,18.23199],[80.86594,18.23013],[80.87261,18.21058],[80.87097,18.20479],[80.86391,18.20265],[80.85521,18.20416],[80.85291,18.202],[80.85854,18.18645],[80.85708,18.17442],[80.8604,18.16139],[80.86016,18.14786],[80.86545,18.14145],[80.86667,18.13692],[80.89108,18.13598],[80.91417,18.14117],[80.9399,18.15543],[80.94164,18.15662],[80.94236,18.16038],[80.95162,18.16366],[80.95766,18.17355],[80.97903,18.17541],[80.97874,18.1508],[80.95551,18.12906],[80.95178,18.09012],[80.94926,18.08286],[80.95344,18.07863],[80.96733,18.0517],[80.96976,18.04385],[80.96426,18.03814],[80.96954,18.03175],[80.97326,18.02364],[80.97987,18.00196],[80.98784,17.94445],[80.99834,17.91679],[80.99934,17.90329],[80.99417,17.8809],[80.99655,17.87175],[80.99645,17.84907],[81.00323,17.83062],[81.00346,17.81952],[81.00822,17.79937],[81.01901,17.79084],[81.03176,17.78847],[81.03898,17.78415],[81.04662,17.78231],[81.07326,17.78645],[81.08583,17.79948],[81.09046,17.80241],[81.09397,17.80927],[81.09766,17.81237],[81.11179,17.82088],[81.12792,17.827],[81.14213,17.84146],[81.15728,17.85043],[81.16613,17.8576],[81.17065,17.85476],[81.19931,17.84693],[81.21561,17.83451],[81.2393,17.82602],[81.24838,17.81666],[81.26626,17.80952],[81.30497,17.80866],[81.32612,17.81395],[81.3456,17.8103],[81.34845,17.81233],[81.35411,17.81229],[81.35878,17.80948],[81.37731,17.80446],[81.38544,17.79844],[81.38656,17.79487],[81.39257,17.79416],[81.39309,17.80808],[81.3885,17.82761],[81.40326,17.84943],[81.40382,17.85301],[81.39427,17.86928],[81.39548,17.88321],[81.39927,17.89192],[81.40329,17.89579],[81.40834,17.89596],[81.4167,17.89282],[81.42145,17.88838],[81.43534,17.88082],[81.44463,17.88575],[81.44811,17.88974],[81.4475,17.89849],[81.45282,17.90756],[81.45337,17.91463],[81.44992,17.92403],[81.44911,17.93193],[81.45291,17.93637],[81.45984,17.95295],[81.47211,17.9605],[81.47609,17.96934],[81.48295,17.97682],[81.47762,17.98841],[81.48028,17.99779],[81.47991,18.00439],[81.48312,18.02705],[81.48015,18.03369],[81.48041,18.05074],[81.48264,18.05567],[81.49069,18.06284],[81.4966,18.07095],[81.49963,18.07985],[81.51286,18.09869],[81.51509,18.12276],[81.51289,18.13575],[81.51382,18.14054],[81.51832,18.14816],[81.52413,18.15081],[81.52582,18.1534],[81.526,18.16042],[81.52373,18.16589],[81.51776,18.17546],[81.50992,18.17949],[81.507,18.1862],[81.50941,18.19457],[81.51326,18.20054],[81.51552,18.21324],[81.51983,18.21766],[81.51992,18.22199],[81.52426,18.22751],[81.52593,18.23355],[81.53045,18.24028],[81.52766,18.25094],[81.52464,18.25586],[81.52524,18.25771],[81.53527,18.26838],[81.54128,18.27006],[81.55084,18.2693],[81.56433,18.2752],[81.57346,18.28264],[81.58551,18.29643],[81.5929,18.30071],[81.5976,18.30891],[81.60054,18.30969],[81.61653,18.30735],[81.62811,18.31384],[81.63965,18.31794],[81.64452,18.31818],[81.65132,18.32153],[81.66223,18.32123],[81.66217,18.32498],[81.65192,18.33254],[81.64966,18.3369],[81.65087,18.34062],[81.65914,18.34656],[81.75006,18.35275],[81.76887,18.41709],[81.79502,18.44072],[81.85621,18.4914],[81.85783,18.49477],[81.85611,18.50092],[81.85699,18.50743],[81.86825,18.52492],[81.87968,18.52524],[81.88927,18.53816],[81.8979,18.53509],[81.90901,18.53807],[81.90587,18.54516],[81.90141,18.54861],[81.90862,18.553],[81.9057,18.56307],[81.90592,18.56455],[81.91036,18.56577],[81.91069,18.57063],[81.91557,18.57281],[81.91777,18.5708],[81.92084,18.57269],[81.92678,18.56673],[81.92971,18.56613],[81.9381,18.5666],[81.94508,18.57014],[81.95057,18.57002],[81.95051,18.57485],[81.95331,18.57671],[81.95291,18.58282],[81.95607,18.58393],[81.95984,18.58948],[81.96364,18.59044],[81.9634,18.5941],[81.96085,18.59662],[81.95098,18.60095],[81.94429,18.60075],[81.93693,18.60557],[81.93506,18.60736],[81.93515,18.61265],[81.93014,18.61858],[81.90848,18.62856],[81.89459,18.62954],[81.89521,18.63282],[81.89887,18.63523],[81.89405,18.64228],[81.8982,18.65441],[81.89501,18.65445],[81.89377,18.65746],[81.89835,18.65854],[81.90089,18.66137],[81.91526,18.6513],[81.92173,18.64291],[81.93637,18.6448],[81.94303,18.64317],[81.94894,18.64371],[81.95316,18.65404],[81.95279,18.65954],[81.95508,18.66422],[81.9616,18.67028],[81.96915,18.67339],[81.96075,18.68863],[81.96294,18.68898],[81.97098,18.69864],[81.9889,18.70528],[81.99473,18.70468],[81.99859,18.70691],[81.99992,18.71108],[82.00583,18.71465],[82.00879,18.71255],[82.01674,18.7195],[82.02815,18.72121],[82.03092,18.72379],[82.04021,18.72391],[82.04812,18.7214],[82.05365,18.72361],[82.05609,18.7229],[82.05877,18.71934],[82.06277,18.71902],[82.06505,18.72007],[82.06742,18.7265],[82.07456,18.72462],[82.07653,18.72211],[82.08497,18.71859],[82.08688,18.72142],[82.08606,18.72795],[82.08836,18.72977],[82.08769,18.73113],[82.09352,18.74681],[82.09258,18.75268],[82.08874,18.76019],[82.09158,18.76573],[82.09782,18.76384],[82.10576,18.76731],[82.11101,18.76588],[82.11536,18.76901],[82.12082,18.76975],[82.13342,18.76536],[82.13362,18.76811],[82.13133,18.77011],[82.13349,18.78045],[82.13567,18.78148],[82.13842,18.77837],[82.14057,18.77846],[82.14738,18.78097],[82.15217,18.7853],[82.15736,18.78548],[82.1608,18.78992],[82.16017,18.79523],[82.16544,18.79862],[82.16453,18.80192],[82.15652,18.80433],[82.1602,18.80807],[82.16137,18.81252],[82.16615,18.81407],[82.16029,18.81987],[82.16896,18.83602],[82.16574,18.84387],[82.16747,18.85235],[82.16303,18.85415],[82.1602,18.8614],[82.16509,18.86487],[82.16737,18.87362],[82.16104,18.87713],[82.16041,18.87891],[82.16506,18.88322],[82.16932,18.88189],[82.17666,18.88709],[82.17516,18.89161],[82.17615,18.90267],[82.18109,18.90694],[82.19251,18.90751],[82.20085,18.91359],[82.2183,18.92252],[82.22728,18.91904],[82.23091,18.91967],[82.23696,18.91423],[82.24605,18.91911],[82.23911,18.96229],[82.23276,19.01794],[82.22988,19.02741],[82.20225,19.06664],[82.20472,19.0756],[82.21495,19.08599],[82.21855,19.09302],[82.21842,19.09727],[82.21414,19.09985],[82.21294,19.09798],[82.20971,19.09968],[82.20648,19.0964],[82.20491,19.09714],[82.20499,19.10115],[82.20735,19.10228],[82.20518,19.107],[82.20298,19.10811],[82.20633,19.11507],[82.20581,19.11694],[82.209,19.12052],[82.20582,19.12413],[82.19739,19.12164],[82.19058,19.1289],[82.18247,19.13169],[82.17686,19.11857],[82.17361,19.11841],[82.17033,19.12041],[82.16921,19.12805],[82.1661,19.1327],[82.16682,19.1361],[82.17574,19.13866],[82.16983,19.14525],[82.17154,19.15021],[82.17656,19.14921],[82.18093,19.15082],[82.17768,19.15251],[82.17721,19.15561],[82.1713,19.15653],[82.17018,19.16116],[82.17492,19.16288],[82.17874,19.15964],[82.17753,19.15567],[82.1822,19.15929],[82.18614,19.16635],[82.18395,19.16849],[82.17811,19.16937],[82.17604,19.17208],[82.17671,19.17347],[82.18205,19.17416],[82.18106,19.17858],[82.17514,19.18182],[82.18046,19.19168],[82.16758,19.19526],[82.16171,19.20225],[82.16582,19.21145],[82.16877,19.21294],[82.15942,19.22296],[82.15784,19.2275],[82.15843,19.26517],[82.16594,19.28769],[82.17441,19.29453],[82.17668,19.29948],[82.17917,19.31897],[82.18122,19.32339],[82.19412,19.32594],[82.19013,19.32676],[82.18801,19.32892],[82.18789,19.33476],[82.18604,19.33741],[82.17789,19.34005],[82.17866,19.34337],[82.16904,19.34598],[82.165,19.34899],[82.15413,19.3498],[82.15244,19.35274],[82.14878,19.35298],[82.14839,19.36491],[82.14725,19.36549],[82.14896,19.36953],[82.14774,19.37182],[82.15135,19.37331],[82.15327,19.37702],[82.15648,19.3773],[82.16004,19.37707],[82.16219,19.37436],[82.16661,19.37277],[82.17192,19.37262],[82.17353,19.37717],[82.17553,19.37664],[82.17883,19.37905],[82.178,19.3825],[82.18183,19.3842],[82.18099,19.38618],[82.18225,19.38874],[82.18074,19.39241],[82.18431,19.40049],[82.18208,19.40293],[82.18244,19.40943],[82.1852,19.41369],[82.18927,19.41536],[82.18944,19.42753],[82.18619,19.42665],[82.17819,19.43661],[82.17149,19.43719],[82.13524,19.43178],[82.13525,19.43038],[82.1273,19.43051],[82.12614,19.42909],[82.11353,19.44826],[82.11342,19.46036],[82.10282,19.46611],[82.10734,19.47504],[82.10796,19.49428],[82.09797,19.49893],[82.10025,19.51659],[82.07603,19.52363],[82.06542,19.51057],[82.05134,19.50816],[82.03851,19.50913],[82.02908,19.50775],[82.03156,19.51104],[82.03185,19.51453],[82.03406,19.51453],[82.03643,19.51978],[82.03729,19.52825],[82.03988,19.53018],[82.04326,19.52986],[82.04647,19.53397],[82.04772,19.53345],[82.04749,19.53965],[82.05071,19.54882],[82.04551,19.56053],[82.04949,19.56841],[82.04811,19.56913],[82.04985,19.57403],[82.04875,19.57827],[82.04465,19.58178],[82.04337,19.589],[82.04048,19.59164],[82.03988,19.59764],[82.04627,19.60728],[82.05066,19.60808],[82.05061,19.61677],[82.05571,19.6231],[82.0561,19.62596],[82.05902,19.62818],[82.05646,19.63312],[82.05701,19.63951],[82.05473,19.6405],[82.05192,19.64657],[82.05351,19.6528],[82.05551,19.65446],[82.05194,19.66095],[82.05362,19.66539],[82.05532,19.66566],[82.05187,19.68047],[82.0491,19.68493],[82.04459,19.70053],[82.04475,19.70888],[82.05102,19.71909],[82.04924,19.72872],[82.05094,19.73642],[82.0504,19.74581],[82.05564,19.74998],[82.05598,19.75297],[82.06361,19.75902],[82.06047,19.76663],[82.06623,19.78315],[82.06555,19.79066],[82.06239,19.79254],[82.06022,19.79637],[82.05636,19.79485],[82.0564,19.79302],[82.05298,19.79229],[82.04868,19.79696],[82.03105,19.79781],[82.00989,19.80422],[82.00368,19.80257],[81.99537,19.79682],[81.99191,19.79959],[81.98595,19.80109],[81.98656,19.80428],[81.96537,19.8369],[81.96813,19.85989],[81.94106,19.87288],[81.89968,19.8872],[81.86965,19.90254],[81.85316,19.91848],[81.85181,19.92315],[81.8568,19.94754],[81.84502,19.95184],[81.84528,19.95953],[81.85536,19.97228],[81.86057,20.00351],[81.86654,20.01105],[81.86503,20.0267],[81.86882,20.03191],[81.86943,20.04126],[81.87598,20.05206],[81.88191,20.04434],[81.8873,20.04402],[81.89528,20.04824],[81.90144,20.05791],[81.91606,20.07198],[81.92138,20.07997],[81.92276,20.08716],[81.92601,20.09173],[81.93387,20.09604],[81.93384,20.09821],[81.93713,20.10235],[81.93852,20.10156],[81.94638,20.10513],[81.95815,20.09785],[81.96333,20.09045],[81.97589,20.08171],[81.98386,20.07324],[81.98416,20.06803],[81.98739,20.06133],[81.99534,20.05357],[82.00337,20.05334],[82.00325,20.05513],[82.00575,20.05561],[82.01227,20.05391],[82.01768,20.049],[82.02272,20.03215],[82.02155,20.02371],[82.03256,20.01572],[82.04,20.0226],[82.03734,20.02795],[82.03804,20.03012],[82.04121,20.03096],[82.04297,20.03491],[82.04815,20.03482],[82.04782,20.03672],[82.0564,20.04174],[82.05909,20.04498],[82.05901,20.04775],[82.06219,20.04922],[82.06065,20.05113],[82.06296,20.05204],[82.06354,20.05453],[82.07047,20.05695],[82.08543,20.05072],[82.08459,20.04605],[82.0864,20.04524],[82.08946,20.03906],[82.10228,20.04004],[82.10213,20.03629],[82.10383,20.03569],[82.1032,20.03107],[82.10547,20.0306],[82.10695,20.02725],[82.11018,20.02752],[82.11652,20.02116],[82.12679,20.0148],[82.12849,20.0142],[82.13633,20.01893],[82.13981,20.01873],[82.15347,20.00756],[82.16058,20.00912],[82.17123,20.00551],[82.17125,20.00078],[82.17369,19.99996],[82.17478,19.99675],[82.17691,19.99731],[82.18033,19.99114],[82.18347,19.98959],[82.18519,19.9873],[82.18425,19.98419],[82.1931,19.9871],[82.2101,19.98625],[82.21671,19.99706],[82.22929,19.99982],[82.23712,20.00333],[82.2462,19.99535],[82.25001,19.98906],[82.25625,19.98345],[82.26917,19.97526],[82.27487,19.96304],[82.27581,19.94859],[82.30159,19.90271],[82.30312,19.88939],[82.32634,19.86161],[82.3307,19.84485],[82.34395,19.83509],[82.34889,19.83657],[82.35985,19.84699],[82.36142,19.85075],[82.36446,19.85101],[82.36463,19.85469],[82.36041,19.85731],[82.36085,19.8628],[82.3752,19.85964],[82.38365,19.86988],[82.38295,19.87386],[82.39248,19.88205],[82.39487,19.88802],[82.40178,19.88994],[82.40524,19.89426],[82.41196,19.89851],[82.41858,19.89985],[82.41802,19.90407],[82.4262,19.90546],[82.43006,19.90401],[82.43335,19.90556],[82.43711,19.90494],[82.44599,19.91019],[82.45217,19.90871],[82.46422,19.90085],[82.47228,19.90158],[82.4729,19.90703],[82.48417,19.90791],[82.49161,19.90345],[82.49734,19.90413],[82.5049,19.89972],[82.50287,19.89447],[82.50547,19.88986],[82.5118,19.88813],[82.51912,19.89097],[82.5233,19.88308],[82.53142,19.87824],[82.53491,19.88689],[82.54214,19.88348],[82.54839,19.8757],[82.55596,19.88066],[82.56104,19.87433],[82.57302,19.87755],[82.58289,19.86942],[82.59713,19.87269],[82.60343,19.86699],[82.60256,19.86305],[82.6002,19.86019],[82.59628,19.85883],[82.59687,19.8552],[82.59041,19.85245],[82.59062,19.84892],[82.58772,19.84868],[82.58863,19.84338],[82.5839,19.84358],[82.57974,19.84011],[82.57579,19.83339],[82.57604,19.82892],[82.5794,19.83032],[82.57777,19.82498],[82.57914,19.82354],[82.57853,19.81801],[82.5762,19.81474],[82.57858,19.81108],[82.57599,19.80822],[82.58469,19.80235],[82.5827,19.795],[82.58449,19.78825],[82.58177,19.78321],[82.58359,19.78164],[82.58348,19.7788],[82.59181,19.77586],[82.59489,19.77529],[82.59529,19.77847],[82.60215,19.78112],[82.60378,19.78812],[82.62713,19.79366],[82.63282,19.80119],[82.63663,19.81293],[82.64175,19.81454],[82.6476,19.81954],[82.65216,19.83217],[82.66592,19.83039],[82.67802,19.83212],[82.69325,19.83038],[82.70392,19.83201],[82.7116,19.84038],[82.71293,19.84481],[82.7114,19.85063],[82.71384,19.85264],[82.7177,19.85292],[82.71979,19.85685],[82.71959,19.86743],[82.72173,19.87292],[82.72458,19.87554],[82.71405,19.87781],[82.71355,19.88344],[82.70741,19.90204],[82.70909,19.9056],[82.70737,19.91299],[82.71276,19.91852],[82.71118,19.92545],[82.71307,19.93846],[82.72049,19.94829],[82.71552,19.95363],[82.71472,19.95767],[82.71752,19.96555],[82.71814,19.98914],[82.71575,19.99227],[82.71545,19.99593],[82.70727,19.99905],[82.69958,19.99757],[82.69267,20.0],[82.67012,20.00108],[82.65198,20.00589],[82.64271,20.00366],[82.64298,20.00641],[82.64151,20.00671],[82.6333,20.00487],[82.62114,19.9923],[82.60502,19.99014],[82.59573,19.99157],[82.59034,19.99373],[82.58328,20.00318],[82.57734,20.00672],[82.55011,20.01777],[82.53445,20.01785],[82.53318,20.0153],[82.50911,20.01816],[82.49373,20.02437],[82.47857,20.03817],[82.47001,20.03591],[82.46067,20.0419],[82.45753,20.03997],[82.44801,20.04066],[82.44052,20.04318],[82.43003,20.04961],[82.41682,20.05215],[82.40954,20.05179],[82.39829,20.05818],[82.39839,20.06269],[82.39583,20.06897],[82.40149,20.08102],[82.39976,20.0898],[82.40143,20.09607],[82.39818,20.10169],[82.39767,20.12377],[82.39423,20.12992],[82.39315,20.13761],[82.3858,20.14644],[82.3872,20.14905],[82.39415,20.15263],[82.39374,20.15704],[82.39001,20.1637],[82.39491,20.17012],[82.40471,20.17598],[82.40453,20.17787],[82.40754,20.18123],[82.41158,20.18149],[82.41408,20.18986],[82.41347,20.19935],[82.42062,20.20492],[82.42048,20.21308],[82.42247,20.22082],[82.41507,20.22681],[82.41063,20.24265],[82.41123,20.24538],[82.42233,20.24797],[82.41778,20.25232],[82.41601,20.25728],[82.41139,20.26011],[82.41234,20.26704],[82.41596,20.27205],[82.42503,20.27522],[82.43287,20.28181],[82.43557,20.28548],[82.43781,20.29441],[82.42998,20.30099],[82.43077,20.31402],[82.42104,20.32411],[82.41737,20.32425],[82.41295,20.328],[82.40887,20.32778],[82.40916,20.33253],[82.40151,20.33758],[82.40038,20.34158],[82.40627,20.35299],[82.40505,20.35804],[82.40915,20.36293],[82.4112,20.37129],[82.41805,20.38211],[82.41769,20.38772],[82.42117,20.39285],[82.41661,20.40765],[82.43201,20.41664],[82.42966,20.42787],[82.43786,20.43439],[82.43398,20.44567],[82.42573,20.44533],[82.42706,20.46906],[82.41763,20.48174],[82.4158,20.48151],[82.41079,20.46813],[82.40798,20.46733],[82.40855,20.46324],[82.40427,20.46005],[82.40191,20.46193],[82.39798,20.46192],[82.39606,20.45957],[82.39478,20.46229],[82.39764,20.46484],[82.39784,20.47295],[82.39608,20.47766],[82.39203,20.47869],[82.39374,20.4825],[82.39316,20.48643],[82.3906,20.48619],[82.39109,20.49243],[82.38834,20.49536],[82.38953,20.49801],[82.388,20.51073],[82.3897,20.5176],[82.37825,20.52203],[82.36806,20.52386],[82.35765,20.52933],[82.34861,20.54667],[82.3357,20.5551],[82.33223,20.56191],[82.33488,20.5646],[82.33337,20.56855],[82.34335,20.57152],[82.34836,20.5764],[82.35064,20.58127],[82.34679,20.5906],[82.34408,20.59289],[82.34374,20.59577],[82.3457,20.59656],[82.34485,20.59848],[82.34713,20.60254],[82.35256,20.60298],[82.3559,20.60925],[82.35865,20.60848],[82.36226,20.60991],[82.36292,20.61412],[82.36543,20.61588],[82.36452,20.62218],[82.37095,20.62599],[82.3765,20.63241],[82.37467,20.63907],[82.36848,20.64923],[82.36997,20.65556],[82.36875,20.65959],[82.37382,20.6674],[82.36705,20.68019],[82.36034,20.68356],[82.355,20.69319],[82.35041,20.70634],[82.35076,20.71728],[82.35401,20.71966],[82.34556,20.73159],[82.35355,20.73592],[82.34171,20.76776],[82.34364,20.77095],[82.34386,20.79223],[82.34611,20.79763],[82.34202,20.80472],[82.34317,20.80893],[82.34112,20.81249],[82.34102,20.82083],[82.33934,20.82577],[82.34157,20.83283],[82.33953,20.84684],[82.34446,20.85637],[82.34676,20.87704],[82.35119,20.88974],[82.36376,20.88849],[82.35947,20.87381],[82.36461,20.87067],[82.37592,20.86798],[82.38505,20.87409],[82.38967,20.87532],[82.38924,20.87409],[82.39557,20.87003],[82.40545,20.87019],[82.40751,20.86576],[82.40685,20.85928],[82.41287,20.85086],[82.40995,20.8456],[82.4101,20.84229],[82.41673,20.83866],[82.41995,20.83156],[82.42731,20.83155],[82.43934,20.83564],[82.44353,20.83437],[82.44367,20.831],[82.44728,20.82996],[82.44902,20.83101],[82.45437,20.82765],[82.46449,20.829],[82.46878,20.83518],[82.46539,20.84295],[82.47044,20.84808],[82.48108,20.85131],[82.48668,20.86165],[82.48598,20.87028],[82.49107,20.88063],[82.48699,20.90504],[82.48874,20.9094],[82.50443,20.91959],[82.51594,20.92176],[82.52711,20.934],[82.54303,20.93661],[82.55915,20.94794],[82.57138,20.97226],[82.58051,20.97973],[82.58878,20.99355],[82.61136,21.01297],[82.61333,21.02285],[82.62879,21.03804],[82.62979,21.04094],[82.6261,21.04854],[82.61788,21.05468],[82.61725,21.05986],[82.61186,21.06919],[82.61198,21.07469],[82.61651,21.07918],[82.62964,21.07882],[82.63311,21.08319],[82.63389,21.08776],[82.63733,21.09319],[82.64582,21.1],[82.64991,21.10647],[82.64845,21.10956],[82.64215,21.11122],[82.63974,21.11574],[82.64191,21.12007],[82.65276,21.12871],[82.65198,21.13325],[82.64395,21.13487],[82.63727,21.14474],[82.63722,21.15073],[82.64061,21.15487],[82.65549,21.15714],[82.66405,21.155],[82.68415,21.16106],[82.68554,21.16497],[82.693,21.16574],[82.69708,21.1642],[82.69573,21.16053],[82.69983,21.1577],[82.70526,21.15808],[82.71067,21.16085],[82.72119,21.15767],[82.72115,21.16585],[82.73683,21.16533],[82.74057,21.16347],[82.75001,21.16411],[82.75591,21.16643],[82.7575,21.16355],[82.7601,21.1652],[82.76298,21.16262],[82.76334,21.16409],[82.76581,21.16278],[82.76504,21.16173],[82.76782,21.16056],[82.76713,21.15901],[82.77435,21.15413],[82.7794,21.15358],[82.78077,21.14967],[82.78564,21.14487],[82.79368,21.14255],[82.79666,21.14865],[82.79622,21.15065],[82.80032,21.15595],[82.80502,21.15592],[82.81197,21.16107],[82.826,21.16368],[82.82802,21.16544],[82.83126,21.16467],[82.84276,21.16772],[82.8471,21.16653],[82.85088,21.16863],[82.8501,21.16161],[82.85246,21.15954],[82.8556,21.16147],[82.85959,21.15977],[82.86643,21.16282],[82.8717,21.15748],[82.87255,21.16238],[82.87636,21.16355],[82.87852,21.15858],[82.87818,21.15345],[82.88218,21.14843],[82.89393,21.15637],[82.89548,21.16098],[82.90211,21.16699],[82.91022,21.1652],[82.91498,21.16196],[82.92094,21.16347],[82.93225,21.16308],[82.93387,21.16399],[82.93497,21.16833],[82.9377,21.16985],[82.93996,21.16635],[82.93998,21.16093],[82.94768,21.16178],[82.94757,21.16453],[82.94286,21.17164],[82.94682,21.1755],[82.94384,21.17785],[82.94903,21.1839],[82.95916,21.18888],[82.96099,21.19266],[82.96493,21.19327],[82.96743,21.18307],[82.96556,21.17533],[82.96739,21.17484],[82.97001,21.17886],[82.97534,21.18215],[82.97787,21.18258],[82.98325,21.18006],[82.98809,21.18281],[82.99,21.18183],[82.98056,21.17003],[82.98607,21.16811],[82.99319,21.17111],[82.99652,21.16968],[83.00135,21.17057],[83.00376,21.16693],[82.99332,21.16189],[82.9924,21.15856],[82.98576,21.15104],[82.99032,21.13986],[82.99373,21.14084],[82.99545,21.13853],[82.99936,21.13891],[83.00155,21.13687],[83.00458,21.13696],[83.01013,21.14257],[83.01005,21.14474],[83.016,21.14631],[83.0203,21.14346],[83.02304,21.13656],[83.02891,21.13513],[83.03338,21.1373],[83.03482,21.13663],[83.03383,21.13193],[83.03865,21.13173],[83.04525,21.12401],[83.05233,21.12627],[83.05603,21.12231],[83.06611,21.12076],[83.06851,21.11685],[83.075,21.11365],[83.07725,21.11407],[83.07781,21.11195],[83.0849,21.11295],[83.09011,21.11113],[83.09442,21.11328],[83.09709,21.11016],[83.10128,21.10999],[83.11354,21.11266],[83.1216,21.1099],[83.1241,21.1067],[83.13149,21.10581],[83.13867,21.10951],[83.14065,21.11234],[83.13893,21.11333],[83.14743,21.11856],[83.15733,21.13107],[83.16464,21.13523],[83.16691,21.13879],[83.17104,21.13617],[83.17425,21.13673],[83.17769,21.13511],[83.19255,21.13951],[83.1982,21.14583],[83.19656,21.15143],[83.19836,21.15346],[83.19852,21.16426],[83.20462,21.1657],[83.20284,21.17764],[83.20511,21.17943],[83.20933,21.18945],[83.21462,21.19479],[83.21053,21.20504],[83.21275,21.2102],[83.21706,21.21331],[83.21857,21.22089],[83.21758,21.22597],[83.2189,21.22861],[83.22215,21.22872],[83.21765,21.25485],[83.22167,21.26007],[83.22295,21.26577],[83.23191,21.27272],[83.23796,21.26961],[83.23933,21.27363],[83.24627,21.28116],[83.25059,21.28238],[83.25583,21.28212],[83.26777,21.27756],[83.27095,21.27257],[83.27491,21.28581],[83.27859,21.28932],[83.27927,21.29496],[83.27629,21.3023],[83.27205,21.30188],[83.26883,21.30507],[83.26208,21.30783],[83.25734,21.3205],[83.26283,21.33027],[83.26653,21.33086],[83.25769,21.3336],[83.2578,21.33555],[83.26868,21.34549],[83.27469,21.36383],[83.27424,21.37729],[83.26873,21.37859],[83.28405,21.38033],[83.28606,21.37761],[83.31137,21.37084],[83.32297,21.3624],[83.34385,21.35836],[83.34718,21.35629],[83.34772,21.35375],[83.35461,21.35429],[83.36686,21.34936],[83.36977,21.34671],[83.37888,21.34455],[83.38549,21.3463],[83.39183,21.34264],[83.40688,21.35163],[83.40802,21.36137],[83.40062,21.36391],[83.39687,21.36756],[83.40051,21.37588],[83.3972,21.38803],[83.39893,21.40534],[83.39346,21.40771],[83.38529,21.41537],[83.37815,21.42683],[83.37587,21.42806],[83.37428,21.43498],[83.37124,21.43551],[83.37362,21.44239],[83.36686,21.44555],[83.35437,21.44807],[83.35147,21.46003],[83.34655,21.4716],[83.34574,21.47962],[83.34706,21.48898],[83.34061,21.49517],[83.33788,21.5021],[83.34304,21.50965],[83.34962,21.51265],[83.35204,21.52115],[83.35709,21.52808],[83.35866,21.53824],[83.3614,21.53916],[83.36014,21.54285],[83.36427,21.545],[83.36451,21.54704],[83.3662,21.54663],[83.36766,21.54932],[83.36598,21.55081],[83.36999,21.55252],[83.36978,21.55646],[83.37316,21.55816],[83.37187,21.5596],[83.37033,21.55875],[83.37186,21.56442],[83.3693,21.56668],[83.36989,21.56806],[83.36748,21.56874],[83.36775,21.57209],[83.36497,21.57608],[83.36895,21.585],[83.36694,21.58666],[83.36893,21.58898],[83.36774,21.59172],[83.37051,21.59126],[83.36966,21.60051],[83.38014,21.60813],[83.38304,21.61426],[83.38268,21.62013],[83.38943,21.61769],[83.39246,21.62729],[83.39559,21.62709],[83.40347,21.63094],[83.40907,21.6372],[83.41504,21.6408],[83.42757,21.64352],[83.42884,21.64723],[83.44265,21.65541],[83.45076,21.65075],[83.44438,21.63929],[83.44292,21.63142],[83.44463,21.63043],[83.44397,21.624],[83.45247,21.62241],[83.45227,21.61287],[83.45506,21.61241],[83.45611,21.61],[83.4606,21.6078],[83.46627,21.60955],[83.46986,21.62154],[83.47349,21.62737],[83.47356,21.63249],[83.48619,21.63009],[83.48961,21.63146],[83.48955,21.63487],[83.49193,21.63818],[83.48714,21.6399],[83.48661,21.64413],[83.46976,21.64873],[83.44813,21.65754],[83.44248,21.66129],[83.43127,21.67421],[83.41869,21.68065],[83.42216,21.68705],[83.42385,21.68721],[83.42287,21.68884],[83.42483,21.69248],[83.42882,21.69462],[83.43165,21.69991],[83.44077,21.6989],[83.4517,21.69542],[83.45948,21.69855],[83.46106,21.70909],[83.47336,21.72064],[83.47784,21.73054],[83.4813,21.73113],[83.48018,21.73396],[83.4852,21.74517],[83.48932,21.74539],[83.48744,21.74895],[83.47605,21.75238],[83.48218,21.7656],[83.47617,21.78078],[83.46939,21.78756],[83.47279,21.78747],[83.47547,21.79126],[83.47761,21.79083],[83.48365,21.79419],[83.48712,21.80036],[83.4878,21.80731],[83.49374,21.813],[83.49291,21.81837],[83.50593,21.80796],[83.52259,21.79945],[83.52587,21.7983],[83.5287,21.79955],[83.54104,21.79931],[83.54273,21.80573],[83.53741,21.81308],[83.5401,21.82204],[83.53119,21.82625],[83.53187,21.83096],[83.54163,21.83826],[83.55177,21.84071],[83.56318,21.8374],[83.56848,21.83317],[83.57691,21.8313],[83.57885,21.83245],[83.57791,21.83752],[83.58145,21.83817],[83.58708,21.84352],[83.59089,21.8511],[83.57421,21.87511],[83.57644,21.88237],[83.58081,21.88327],[83.57783,21.8892],[83.58155,21.88985],[83.58708,21.89453],[83.58523,21.89964],[83.58597,21.90213],[83.5947,21.90343],[83.597,21.906],[83.59848,21.90497],[83.60294,21.90858],[83.60592,21.91412],[83.60157,21.91806],[83.59987,21.92207],[83.59036,21.9297],[83.55672,21.93535],[83.55915,21.94505],[83.56169,21.94801],[83.54204,21.96211],[83.53901,21.96599],[83.53716,21.97796],[83.54355,21.98762],[83.54331,21.99385],[83.55615,22.00782],[83.53979,22.02167],[83.53647,22.0296],[83.53672,22.04348],[83.54374,22.05697],[83.54781,22.05915],[83.5469,22.057],[83.55035,22.05335],[83.55398,22.05292],[83.55429,22.05437],[83.55737,22.05371],[83.55822,22.05485],[83.58178,22.05458],[83.58307,22.05023],[83.58671,22.04873],[83.58988,22.05445],[83.59617,22.05789],[83.60152,22.05877],[83.6034,22.06383],[83.60642,22.06659],[83.59358,22.07421],[83.57694,22.09032],[83.56284,22.0962],[83.56181,22.09892],[83.56435,22.106],[83.57592,22.1209],[83.58321,22.12507],[83.59369,22.14029],[83.60815,22.15437],[83.61333,22.1777],[83.62725,22.20378],[83.64951,22.22334],[83.65531,22.22004],[83.66447,22.22879],[83.66577,22.23273],[83.69105,22.24273],[83.69147,22.24412],[83.70516,22.24685],[83.71306,22.24272],[83.7212,22.24304],[83.72821,22.24134],[83.72949,22.24282],[83.74436,22.23963],[83.75775,22.24034],[83.75768,22.24714],[83.75971,22.25121],[83.76645,22.25563],[83.77289,22.25571],[83.77558,22.25734],[83.77673,22.2613],[83.77524,22.26166],[83.77472,22.26477],[83.77679,22.26627],[83.77665,22.26985],[83.77975,22.27383],[83.79223,22.27648],[83.79604,22.28247],[83.79485,22.28595],[83.80278,22.29015],[83.80926,22.28895],[83.81691,22.29088],[83.81906,22.28957],[83.81985,22.29129],[83.82636,22.29282],[83.82727,22.29387],[83.82285,22.30128],[83.826,22.3055],[83.82198,22.31153],[83.82815,22.31752],[83.83056,22.3234],[83.83524,22.32228],[83.85029,22.32523],[83.85288,22.32712],[83.85493,22.33453],[83.85431,22.33764],[83.86024,22.33875],[83.86041,22.34047],[83.86399,22.34163],[83.86426,22.34328],[83.86932,22.34125],[83.87207,22.33778],[83.87921,22.33538],[83.89033,22.33655],[83.90132,22.33936],[83.90252,22.34659],[83.90652,22.35129],[83.92328,22.35841],[83.93269,22.35396],[83.94329,22.35471],[83.94822,22.35632],[83.95499,22.36166],[83.97025,22.3588],[83.98253,22.36733],[83.99667,22.37199],[84.00578,22.37368],[84.01029,22.37158],[84.00638,22.3822],[84.01318,22.39427],[84.01339,22.39742],[84.02006,22.40856],[84.02347,22.40945],[84.02468,22.4155],[84.03027,22.42008],[84.03034,22.42664],[84.03879,22.4297],[84.04172,22.43499],[84.04725,22.43823],[84.04489,22.45286],[84.0464,22.45535],[84.04542,22.4626],[84.04725,22.46922],[84.04075,22.4731],[84.0266,22.47532],[84.01742,22.48925],[84.00287,22.49332],[83.99785,22.49762],[83.98023,22.50222],[83.98048,22.50757],[83.97466,22.51189],[83.97741,22.51587],[83.98099,22.51615],[83.98091,22.52155],[83.98673,22.52554],[83.99489,22.5281],[83.99761,22.53103],[84.00292,22.53033],[84.00439,22.52757],[84.00768,22.52612],[84.01233,22.52753],[84.0097,22.52842],[84.01002,22.53168],[84.00285,22.5459],[84.00765,22.55246],[84.00951,22.57305],[84.02417,22.58581],[84.02443,22.5918],[84.03422,22.59231],[84.04183,22.59537],[84.04885,22.5953],[84.05413,22.59811],[84.05766,22.60577],[84.06375,22.60859],[84.0696,22.62043],[84.08402,22.63812],[84.09343,22.63494],[84.11081,22.63975],[84.12348,22.63705],[84.13979,22.63823],[84.15247,22.6368],[84.15627,22.63853],[84.16328,22.64543],[84.18803,22.65523],[84.20019,22.66646],[84.2079,22.66838],[84.21308,22.66771],[84.21319,22.66576],[84.21754,22.66582],[84.22412,22.66989],[84.23321,22.67924],[84.23475,22.68611],[84.2382,22.69145],[84.23293,22.70033],[84.23413,22.71054],[84.23209,22.72555],[84.22985,22.72807],[84.23127,22.73996],[84.25557,22.7601],[84.25965,22.76699],[84.27595,22.76871],[84.28534,22.76323],[84.2874,22.76401],[84.29213,22.7747],[84.29114,22.78338],[84.29794,22.79427],[84.29934,22.79589],[84.30578,22.79707],[84.3075,22.80077],[84.3151,22.80065],[84.31573,22.81192],[84.32243,22.82102],[84.32533,22.83498],[84.3252,22.83765],[84.32174,22.83774],[84.32422,22.85094],[84.33478,22.86155],[84.34423,22.85898],[84.34924,22.86098],[84.35199,22.86499],[84.35945,22.86052],[84.3697,22.86358],[84.3726,22.86532],[84.37336,22.87159],[84.38051,22.87667],[84.37919,22.88377],[84.38261,22.89025],[84.38289,22.89526],[84.37568,22.90069],[84.37519,22.9045],[84.37754,22.90963],[84.38136,22.91268],[84.38789,22.91421],[84.39283,22.91943],[84.39555,22.92873],[84.39368,22.94245],[84.38457,22.95068],[84.38149,22.96651],[84.37532,22.97689],[84.3729,22.97838],[84.365,22.97423],[84.35107,22.97812],[84.34376,22.97614],[84.33955,22.97999],[84.32811,22.9819],[84.31928,22.97721],[84.31898,22.97361],[84.31291,22.97186],[84.30763,22.96743],[84.29055,22.96395],[84.28109,22.96369],[84.27385,22.98209],[84.27417,22.98428],[84.27607,22.98421],[84.27853,22.98704],[84.27671,22.99067],[84.27853,22.99288],[84.27702,22.99339],[84.27422,22.9902],[84.27055,22.98922],[84.26713,22.9832],[84.2629,22.98084],[84.2611,22.97715],[84.25302,22.97293],[84.24881,22.97382],[84.24104,22.98361],[84.23393,22.98242],[84.23035,22.98333],[84.21918,22.97913],[84.21656,22.98904],[84.20768,22.9999],[84.20085,23.00534],[84.20345,23.01446],[84.20167,23.02107],[84.19674,23.02421],[84.1858,23.02709],[84.18024,23.02444],[84.17812,23.01203],[84.17524,23.00954],[84.17869,23.00055],[84.175,22.99711],[84.1761,22.98492],[84.17808,22.98112],[84.17551,22.97601],[84.17178,22.97076],[84.14925,22.96567],[84.1463,22.97707],[84.14732,22.98801],[84.13818,23.00402],[84.1402,23.00957],[84.13395,23.02021],[84.13122,23.02235],[84.12555,23.03648],[84.12697,23.04419],[84.12473,23.04785],[84.12689,23.05782],[84.13389,23.06863],[84.13346,23.08309],[84.12617,23.08933],[84.12211,23.08797],[84.11574,23.09003],[84.11297,23.09688],[84.10898,23.0983],[84.10566,23.10509],[84.09323,23.11045],[84.09317,23.11278],[84.08205,23.11215],[84.07241,23.109],[84.0664,23.11067],[84.06259,23.11341],[84.0583,23.12617],[84.04921,23.13451],[84.04485,23.1348],[84.03747,23.13988],[84.03669,23.14817],[84.03248,23.15415],[84.03239,23.16048],[84.04294,23.18265],[84.05653,23.19317],[84.05843,23.19994],[84.0622,23.20261],[84.06317,23.20565],[84.05576,23.22028],[84.05908,23.23599],[84.05383,23.24375],[84.05373,23.2473],[84.05985,23.26879],[84.0646,23.27472],[84.06248,23.28843],[84.06812,23.29378],[84.06219,23.30766],[84.07428,23.32917],[84.07482,23.33312],[84.06872,23.33824],[84.06658,23.34405],[84.06016,23.3502],[84.05433,23.3524],[84.05205,23.35928],[84.0535,23.36482],[84.05236,23.36726],[84.04822,23.3697],[84.05084,23.37477],[84.03642,23.37852],[84.02386,23.3765],[84.0163,23.36961],[84.01189,23.35447],[84.0048,23.35401],[84.0026,23.35735],[83.98028,23.36459],[83.98026,23.36811],[83.97075,23.37914],[83.96882,23.38341],[83.96994,23.38383],[83.96795,23.38541],[83.96914,23.38667],[83.967,23.38758],[83.96848,23.38919],[83.9675,23.39101],[83.96889,23.39082],[83.9688,23.39349],[83.97284,23.39989],[83.97148,23.40088],[83.97215,23.40267],[83.97509,23.40313],[83.97719,23.41087],[83.98016,23.41266],[83.97814,23.41415],[83.9809,23.41929],[83.98048,23.42152],[83.98576,23.42583],[83.9837,23.42627],[83.98364,23.42853],[83.98616,23.43057],[83.98332,23.43139],[83.98531,23.43504],[83.97869,23.44737],[83.97483,23.45124],[83.97394,23.45985],[83.98482,23.46571],[83.98891,23.47874],[83.99852,23.48678],[84.00113,23.4937],[84.00078,23.49693],[84.00736,23.49768],[84.01465,23.5035],[84.01516,23.509],[84.01858,23.5174],[84.01747,23.52261],[84.02159,23.52767],[84.02084,23.53097],[84.02806,23.5456],[84.02654,23.55295],[84.02438,23.55556],[84.02644,23.55677],[84.02954,23.5664],[84.02805,23.57777],[84.02977,23.58576],[84.02815,23.59371],[84.03006,23.6],[84.02851,23.60233],[84.02086,23.60442],[84.01673,23.60842],[84.01109,23.62061],[84.00771,23.6223],[84.0087,23.62785],[84.01393,23.63021],[84.01659,23.63438],[83.99714,23.63448],[83.98736,23.63229],[83.98065,23.63365],[83.97951,23.62872],[83.98045,23.62489],[83.9755,23.62571],[83.97349,23.62401],[83.97275,23.62592],[83.96935,23.62669],[83.96134,23.62518],[83.94775,23.6267],[83.94252,23.62599],[83.93191,23.62041],[83.93056,23.61826],[83.93065,23.61124],[83.93382,23.60736],[83.93299,23.60075],[83.93912,23.59031],[83.93803,23.58425],[83.9398,23.57086],[83.93769,23.56899],[83.91879,23.57636],[83.90857,23.57625],[83.90017,23.58015],[83.89939,23.58241],[83.89445,23.58265],[83.88806,23.57876],[83.85305,23.58705],[83.84468,23.58665],[83.8386,23.58939],[83.82587,23.59071],[83.81537,23.5962],[83.81205,23.58895],[83.80722,23.58747],[83.80542,23.58882],[83.80438,23.59537],[83.80064,23.60202],[83.79452,23.6051],[83.78987,23.60456],[83.77966,23.60711],[83.77248,23.6109],[83.77637,23.61759],[83.77514,23.62194],[83.77235,23.62378],[83.75945,23.62601],[83.75192,23.63867],[83.75321,23.64339],[83.76058,23.6479],[83.76112,23.65146],[83.74623,23.66299],[83.73885,23.66677],[83.72286,23.68586],[83.72302,23.68876],[83.73212,23.695],[83.73507,23.70031],[83.74212,23.70383],[83.74607,23.71949],[83.73948,23.73432],[83.73774,23.76049],[83.73411,23.7647],[83.72431,23.76872],[83.72159,23.77149],[83.72262,23.78658],[83.71266,23.80068],[83.70514,23.80387],[83.70439,23.80661],[83.70764,23.81741],[83.70535,23.82076],[83.70259,23.82297],[83.69149,23.82642],[83.68873,23.82558],[83.68528,23.82033],[83.68282,23.81938],[83.67869,23.82168],[83.67434,23.82717],[83.66449,23.82766],[83.66335,23.83119],[83.66849,23.83666],[83.66656,23.84428],[83.65949,23.84926],[83.65464,23.8499],[83.64338,23.84693],[83.61809,23.85549],[83.61029,23.85397],[83.5897,23.86331],[83.58242,23.86351],[83.57466,23.86121],[83.57119,23.86214],[83.56894,23.86618],[83.56949,23.86908],[83.58353,23.87778],[83.58603,23.88261],[83.58576,23.8864],[83.57633,23.89291],[83.57043,23.89445],[83.55915,23.8929],[83.55344,23.89807],[83.54692,23.9143],[83.54924,23.93102],[83.54739,23.93754],[83.53536,23.95246],[83.52649,23.9605],[83.5226,23.97033],[83.5153,23.98069],[83.51549,23.98999],[83.5138,23.99635],[83.52293,24.00636],[83.5239,24.01138],[83.51617,24.02245],[83.51594,24.02696],[83.50826,24.03116],[83.49975,24.03256],[83.49353,24.03631],[83.47781,24.04119],[83.45289,24.04199],[83.44487,24.05282],[83.43777,24.05817],[83.43773,24.07622],[83.43225,24.08598],[83.42671,24.08648],[83.42122,24.08272],[83.40664,24.08044],[83.40111,24.09203],[83.38829,24.09996],[83.36424,24.10329],[83.35449,24.1002],[83.34934,24.0963],[83.34603,24.09744]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-DD","area_level":"State","area_name":"The Dadra And Nagar Haveli And Daman And Diu","geometry_source":"SOI_States","same_as":"ISO-3166-2/IN-DH/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.96297,20.33248],[72.96112,20.33242],[72.96058,20.32859],[72.95935,20.32559],[72.95705,20.32372],[72.95664,20.32038],[72.95574,20.31808],[72.95459,20.31624],[72.95277,20.31401],[72.95451,20.31124],[72.9553,20.31051],[72.95657,20.30959],[72.95986,20.30792],[72.96449,20.30464],[72.96586,20.30261],[72.96701,20.29991],[72.96841,20.29793],[72.96959,20.29702],[72.97084,20.29686],[72.97101,20.29797],[72.97193,20.29995],[72.97225,20.30139],[72.97239,20.30407],[72.97357,20.30556],[72.97286,20.30865],[72.97415,20.31036],[72.97719,20.31207],[72.97868,20.31514],[72.98239,20.31831],[72.98256,20.32036],[72.97946,20.32743],[72.9791,20.33224],[72.9741,20.33188],[72.96958,20.33266],[72.9647,20.33237],[72.96297,20.33248]]],[[[73.09699,20.35993],[73.0958,20.36133],[73.08906,20.35869],[73.08845,20.35033],[73.09027,20.34393],[73.08782,20.34124],[73.08453,20.33182],[73.07717,20.32348],[73.07027,20.32547],[73.06665,20.33003],[73.04924,20.32441],[73.04174,20.32599],[73.0377,20.31767],[73.03561,20.2932],[73.03429,20.29163],[73.02661,20.29067],[73.01532,20.29402],[73.01669,20.31037],[73.01241,20.30933],[73.01217,20.31169],[73.00615,20.3128],[73.00942,20.30981],[73.01157,20.30039],[73.01005,20.29121],[73.00483,20.28917],[73.00102,20.29197],[72.99682,20.29076],[72.99441,20.29231],[72.98728,20.29087],[72.98536,20.28808],[72.98117,20.28927],[72.98193,20.2755],[72.97119,20.26906],[72.96223,20.27134],[72.96184,20.27502],[72.95568,20.27891],[72.95529,20.2842],[72.95205,20.28408],[72.9482,20.28777],[72.94505,20.28849],[72.94164,20.29309],[72.9357,20.29462],[72.93133,20.29288],[72.92858,20.28631],[72.9208,20.28368],[72.9202,20.28117],[72.91724,20.2808],[72.91601,20.27601],[72.91213,20.275],[72.91171,20.27026],[72.91752,20.26339],[72.91848,20.25856],[72.92366,20.25661],[72.93064,20.24441],[72.93761,20.24482],[72.95398,20.23826],[72.95829,20.23539],[72.96059,20.23033],[72.96595,20.22487],[72.96451,20.2138],[72.96164,20.20944],[72.95985,20.20122],[72.96178,20.19203],[72.96085,20.18605],[72.96303,20.18221],[72.96893,20.18342],[72.97676,20.1809],[72.97688,20.17865],[72.97372,20.17383],[72.9744,20.16025],[72.96158,20.1371],[72.96082,20.13328],[72.96358,20.12604],[72.96852,20.12366],[72.9705,20.11561],[72.97736,20.11278],[72.9796,20.11569],[72.99182,20.1177],[72.99535,20.13231],[72.9946,20.13882],[72.9975,20.14276],[72.99922,20.14257],[73.00329,20.14034],[73.005,20.13588],[73.01165,20.13402],[73.0132,20.12956],[72.99961,20.12302],[73.00074,20.1123],[73.01043,20.10578],[73.0137,20.09648],[73.02183,20.09],[73.02336,20.08472],[73.03048,20.07966],[73.0402,20.06643],[73.04738,20.0657],[73.05062,20.06374],[73.05206,20.08529],[73.05519,20.09987],[73.06369,20.09959],[73.06817,20.09679],[73.08059,20.09495],[73.08096,20.09233],[73.08355,20.09117],[73.10226,20.09124],[73.10604,20.08754],[73.10606,20.07417],[73.10846,20.0753],[73.11198,20.07117],[73.11192,20.07427],[73.11434,20.07624],[73.11893,20.07509],[73.11905,20.07866],[73.1241,20.07797],[73.1255,20.0835],[73.13071,20.08175],[73.13336,20.08618],[73.13639,20.08637],[73.13707,20.07913],[73.14247,20.0803],[73.14309,20.07643],[73.14669,20.07386],[73.14869,20.07485],[73.14919,20.079],[73.15464,20.07576],[73.15185,20.07256],[73.15447,20.07042],[73.15579,20.06588],[73.15716,20.06587],[73.15644,20.06352],[73.1635,20.06055],[73.16513,20.05524],[73.16776,20.05577],[73.17071,20.05204],[73.17663,20.05195],[73.17798,20.04703],[73.18332,20.05028],[73.19092,20.04959],[73.1921,20.05471],[73.18615,20.05917],[73.18925,20.07325],[73.18853,20.0781],[73.19691,20.07594],[73.19816,20.07785],[73.20475,20.07996],[73.20952,20.085],[73.2139,20.11899],[73.20302,20.1196],[73.19745,20.12632],[73.18964,20.12731],[73.18699,20.12945],[73.18465,20.14469],[73.18538,20.15584],[73.1883,20.15859],[73.18967,20.16426],[73.20104,20.16531],[73.20554,20.16417],[73.21416,20.17171],[73.21819,20.18152],[73.21772,20.18593],[73.20825,20.1895],[73.2067,20.18812],[73.19881,20.19446],[73.19172,20.19743],[73.19003,20.1951],[73.17795,20.19264],[73.1788,20.19775],[73.17675,20.19933],[73.17147,20.19844],[73.16873,20.20302],[73.16829,20.20823],[73.15718,20.19835],[73.15225,20.2039],[73.14757,20.20074],[73.13852,20.20451],[73.13753,20.20759],[73.13299,20.20577],[73.13261,20.19196],[73.13492,20.18499],[73.13896,20.18447],[73.14187,20.17736],[73.13604,20.17003],[73.13248,20.16942],[73.12841,20.17344],[73.11918,20.16821],[73.11948,20.16404],[73.11566,20.16222],[73.11481,20.15894],[73.11652,20.15582],[73.11566,20.15217],[73.11365,20.15209],[73.10811,20.15784],[73.09941,20.15622],[73.0903,20.16032],[73.08704,20.17032],[73.07928,20.17324],[73.07358,20.15562],[73.07066,20.15558],[73.06024,20.16189],[73.06041,20.16687],[73.06264,20.16975],[73.0628,20.17761],[73.05953,20.19393],[73.05322,20.19543],[73.0488,20.20086],[73.0534,20.20539],[73.05996,20.22334],[73.06257,20.22403],[73.06365,20.22776],[73.07051,20.2321],[73.08244,20.23089],[73.08549,20.22764],[73.08927,20.22676],[73.09774,20.2293],[73.09901,20.23194],[73.0973,20.23867],[73.10627,20.24619],[73.107,20.25077],[73.11399,20.25831],[73.126,20.26076],[73.13053,20.26949],[73.13123,20.27503],[73.13728,20.27314],[73.13997,20.27379],[73.14227,20.27642],[73.14222,20.2811],[73.14585,20.28858],[73.15173,20.29203],[73.15367,20.28523],[73.15823,20.28131],[73.16494,20.28399],[73.1663,20.28787],[73.16579,20.29407],[73.16349,20.2982],[73.16623,20.30527],[73.16573,20.31043],[73.15941,20.30885],[73.15078,20.31834],[73.12944,20.31832],[73.12645,20.3088],[73.12695,20.30551],[73.12189,20.30419],[73.11661,20.30616],[73.11154,20.30405],[73.10852,20.30527],[73.10281,20.30178],[73.10037,20.30482],[73.10291,20.31413],[73.10843,20.32457],[73.10804,20.33103],[73.11125,20.33777],[73.10803,20.33902],[73.10738,20.34391],[73.10398,20.34755],[73.10478,20.34994],[73.10169,20.35474],[73.09864,20.3547],[73.09699,20.35993]],[[72.98987,20.21333],[72.98377,20.21306],[72.97905,20.21558],[72.97478,20.21927],[72.97462,20.22573],[72.97923,20.23403],[72.98951,20.2388],[72.9984,20.23675],[73.00832,20.22896],[73.00255,20.22063],[73.00113,20.21444],[72.99295,20.21499],[72.98987,20.21333]]],[[[72.86796,20.46336],[72.859,20.46499],[72.85583,20.47116],[72.85022,20.47456],[72.84839,20.47802],[72.84627,20.47803],[72.84647,20.47139],[72.8442,20.46683],[72.83712,20.46191],[72.83544,20.45991],[72.83308,20.45512],[72.82565,20.4464],[72.8212,20.43682],[72.82008,20.43292],[72.82089,20.42337],[72.81902,20.42178],[72.81856,20.4189],[72.81708,20.41751],[72.81663,20.40667],[72.81516,20.40312],[72.81332,20.3901],[72.80965,20.38235],[72.80524,20.37606],[72.8046,20.37227],[72.80991,20.37224],[72.82616,20.36642],[72.83039,20.36794],[72.83594,20.37332],[72.84087,20.37346],[72.84423,20.37494],[72.85614,20.37203],[72.85813,20.37404],[72.86419,20.37519],[72.86569,20.37226],[72.87667,20.36977],[72.88297,20.37231],[72.89067,20.37265],[72.89149,20.37565],[72.89615,20.37907],[72.89619,20.38035],[72.8869,20.38545],[72.8871,20.38818],[72.88362,20.39122],[72.88276,20.39785],[72.88508,20.39788],[72.8877,20.40003],[72.88999,20.39898],[72.89187,20.39916],[72.89485,20.40158],[72.8959,20.40116],[72.89793,20.40235],[72.90041,20.40526],[72.90259,20.4058],[72.90329,20.40978],[72.90177,20.41021],[72.90405,20.41498],[72.90041,20.41687],[72.8979,20.42061],[72.8932,20.42173],[72.89172,20.42137],[72.89111,20.41961],[72.88919,20.41904],[72.88323,20.41992],[72.88167,20.41948],[72.8802,20.41702],[72.87533,20.41681],[72.8743,20.41487],[72.87175,20.41389],[72.87018,20.41385],[72.86842,20.4164],[72.8649,20.41731],[72.86253,20.4168],[72.85725,20.41892],[72.85838,20.42314],[72.86023,20.42489],[72.86109,20.4276],[72.86507,20.42908],[72.86836,20.43459],[72.8698,20.43952],[72.87484,20.44557],[72.87685,20.44464],[72.8789,20.44166],[72.88771,20.43825],[72.89016,20.43865],[72.89144,20.4409],[72.89532,20.44431],[72.88797,20.4506],[72.88713,20.45492],[72.888,20.46071],[72.88655,20.46233],[72.87725,20.46176],[72.87047,20.46349],[72.86796,20.46336]]],[[[70.92536,20.73799],[70.92429,20.74066],[70.91949,20.7431],[70.91586,20.74203],[70.91339,20.74014],[70.91142,20.73736],[70.91011,20.73684],[70.90535,20.73656],[70.89387,20.73239],[70.88245,20.73095],[70.87713,20.72763],[70.87597,20.72575],[70.87574,20.72316],[70.87213,20.71835],[70.87085,20.71026],[70.87139,20.70711],[70.87422,20.70641],[70.87467,20.7089],[70.87677,20.70968],[70.88774,20.70928],[70.89315,20.70764],[70.898,20.70456],[70.89895,20.70286],[70.89691,20.70102],[70.89766,20.70007],[70.89996,20.69964],[70.90975,20.70083],[70.91021,20.70133],[70.90955,20.70191],[70.91053,20.70226],[70.91183,20.70139],[70.91137,20.7],[70.91332,20.69951],[70.91701,20.70207],[70.91468,20.70221],[70.91564,20.70303],[70.91505,20.7053],[70.91556,20.70688],[70.91769,20.70922],[70.91977,20.71052],[70.92804,20.71227],[70.93234,20.71191],[70.93768,20.71037],[70.93843,20.70981],[70.93781,20.7087],[70.93821,20.70795],[70.94433,20.70588],[70.94532,20.70641],[70.94812,20.70568],[70.94893,20.70687],[70.94981,20.7058],[70.95075,20.70611],[70.95095,20.70495],[70.95231,20.70402],[70.95505,20.70451],[70.95968,20.70714],[70.961,20.70728],[70.96181,20.70613],[70.9636,20.70586],[70.96933,20.70795],[70.97052,20.70702],[70.97126,20.70435],[70.97304,20.70514],[70.97369,20.70301],[70.97418,20.70454],[70.97525,20.70484],[70.97696,20.7028],[70.9799,20.70595],[70.9852,20.70927],[70.98612,20.70899],[70.987,20.71032],[70.98931,20.70935],[70.99116,20.7107],[70.99189,20.7103],[70.99442,20.71127],[70.99738,20.71393],[70.99845,20.71715],[70.99774,20.71833],[70.99554,20.71947],[70.99331,20.72262],[70.99308,20.72657],[70.99757,20.73263],[71.0,20.73394],[71.0,20.7352],[71.00738,20.73752],[71.00231,20.74182],[70.99949,20.74223],[70.9987,20.74044],[70.9956,20.73884],[70.99307,20.73578],[70.99051,20.73541],[70.9887,20.73342],[70.98448,20.73225],[70.98101,20.72269],[70.97402,20.72787],[70.96435,20.72961],[70.9633,20.73357],[70.96041,20.73672],[70.95414,20.73492],[70.94695,20.7346],[70.93851,20.73243],[70.93172,20.73689],[70.92708,20.73696],[70.92536,20.73799]]],[[[71.15536,20.76009],[71.15544,20.76039],[71.15544,20.76065],[71.15526,20.76105],[71.15507,20.76116],[71.15471,20.76125],[71.15338,20.76143],[71.1529,20.76162],[71.15257,20.76192],[71.15209,20.76277],[71.15209,20.76337],[71.15201,20.76372],[71.15177,20.76391],[71.15159,20.76393],[71.15132,20.76387],[71.15117,20.76369],[71.15117,20.76355],[71.15124,20.76309],[71.15133,20.76284],[71.15147,20.76214],[71.1515,20.76177],[71.15145,20.76155],[71.1513,20.7613],[71.15099,20.76095],[71.1505,20.76064],[71.14999,20.76007],[71.14987,20.75975],[71.14991,20.75943],[71.1502,20.75919],[71.15071,20.75906],[71.15108,20.75907],[71.15152,20.75912],[71.15255,20.75954],[71.15316,20.75984],[71.15342,20.75988],[71.15368,20.75984],[71.15407,20.7596],[71.15443,20.75951],[71.15464,20.75952],[71.15511,20.75977],[71.15536,20.76009]]],[[[71.14734,20.77136],[71.14639,20.77134],[71.14675,20.7707],[71.14665,20.77036],[71.14642,20.77008],[71.14642,20.76997],[71.14643,20.76979],[71.14668,20.76931],[71.14645,20.76862],[71.14677,20.76777],[71.14615,20.76313],[71.14592,20.76066],[71.14607,20.75898],[71.14712,20.75876],[71.14733,20.75848],[71.14808,20.75825],[71.14843,20.75861],[71.14846,20.75965],[71.14833,20.75998],[71.14836,20.76045],[71.14846,20.76072],[71.14937,20.7613],[71.14972,20.7619],[71.14958,20.76271],[71.14924,20.76329],[71.14883,20.76616],[71.14913,20.76637],[71.14949,20.77028],[71.14976,20.77144],[71.14734,20.77136]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-DN","area_level":"State","area_name":"The Dadra And Nagar Haveli And Daman And Diu","geometry_source":"SOI_States","same_as":"ISO-3166-2/IN-DH/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.96297,20.33248],[72.96112,20.33242],[72.96058,20.32859],[72.95935,20.32559],[72.95705,20.32372],[72.95664,20.32038],[72.95574,20.31808],[72.95459,20.31624],[72.95277,20.31401],[72.95451,20.31124],[72.9553,20.31051],[72.95657,20.30959],[72.95986,20.30792],[72.96449,20.30464],[72.96586,20.30261],[72.96701,20.29991],[72.96841,20.29793],[72.96959,20.29702],[72.97084,20.29686],[72.97101,20.29797],[72.97193,20.29995],[72.97225,20.30139],[72.97239,20.30407],[72.97357,20.30556],[72.97286,20.30865],[72.97415,20.31036],[72.97719,20.31207],[72.97868,20.31514],[72.98239,20.31831],[72.98256,20.32036],[72.97946,20.32743],[72.9791,20.33224],[72.9741,20.33188],[72.96958,20.33266],[72.9647,20.33237],[72.96297,20.33248]]],[[[73.09699,20.35993],[73.0958,20.36133],[73.08906,20.35869],[73.08845,20.35033],[73.09027,20.34393],[73.08782,20.34124],[73.08453,20.33182],[73.07717,20.32348],[73.07027,20.32547],[73.06665,20.33003],[73.04924,20.32441],[73.04174,20.32599],[73.0377,20.31767],[73.03561,20.2932],[73.03429,20.29163],[73.02661,20.29067],[73.01532,20.29402],[73.01669,20.31037],[73.01241,20.30933],[73.01217,20.31169],[73.00615,20.3128],[73.00942,20.30981],[73.01157,20.30039],[73.01005,20.29121],[73.00483,20.28917],[73.00102,20.29197],[72.99682,20.29076],[72.99441,20.29231],[72.98728,20.29087],[72.98536,20.28808],[72.98117,20.28927],[72.98193,20.2755],[72.97119,20.26906],[72.96223,20.27134],[72.96184,20.27502],[72.95568,20.27891],[72.95529,20.2842],[72.95205,20.28408],[72.9482,20.28777],[72.94505,20.28849],[72.94164,20.29309],[72.9357,20.29462],[72.93133,20.29288],[72.92858,20.28631],[72.9208,20.28368],[72.9202,20.28117],[72.91724,20.2808],[72.91601,20.27601],[72.91213,20.275],[72.91171,20.27026],[72.91752,20.26339],[72.91848,20.25856],[72.92366,20.25661],[72.93064,20.24441],[72.93761,20.24482],[72.95398,20.23826],[72.95829,20.23539],[72.96059,20.23033],[72.96595,20.22487],[72.96451,20.2138],[72.96164,20.20944],[72.95985,20.20122],[72.96178,20.19203],[72.96085,20.18605],[72.96303,20.18221],[72.96893,20.18342],[72.97676,20.1809],[72.97688,20.17865],[72.97372,20.17383],[72.9744,20.16025],[72.96158,20.1371],[72.96082,20.13328],[72.96358,20.12604],[72.96852,20.12366],[72.9705,20.11561],[72.97736,20.11278],[72.9796,20.11569],[72.99182,20.1177],[72.99535,20.13231],[72.9946,20.13882],[72.9975,20.14276],[72.99922,20.14257],[73.00329,20.14034],[73.005,20.13588],[73.01165,20.13402],[73.0132,20.12956],[72.99961,20.12302],[73.00074,20.1123],[73.01043,20.10578],[73.0137,20.09648],[73.02183,20.09],[73.02336,20.08472],[73.03048,20.07966],[73.0402,20.06643],[73.04738,20.0657],[73.05062,20.06374],[73.05206,20.08529],[73.05519,20.09987],[73.06369,20.09959],[73.06817,20.09679],[73.08059,20.09495],[73.08096,20.09233],[73.08355,20.09117],[73.10226,20.09124],[73.10604,20.08754],[73.10606,20.07417],[73.10846,20.0753],[73.11198,20.07117],[73.11192,20.07427],[73.11434,20.07624],[73.11893,20.07509],[73.11905,20.07866],[73.1241,20.07797],[73.1255,20.0835],[73.13071,20.08175],[73.13336,20.08618],[73.13639,20.08637],[73.13707,20.07913],[73.14247,20.0803],[73.14309,20.07643],[73.14669,20.07386],[73.14869,20.07485],[73.14919,20.079],[73.15464,20.07576],[73.15185,20.07256],[73.15447,20.07042],[73.15579,20.06588],[73.15716,20.06587],[73.15644,20.06352],[73.1635,20.06055],[73.16513,20.05524],[73.16776,20.05577],[73.17071,20.05204],[73.17663,20.05195],[73.17798,20.04703],[73.18332,20.05028],[73.19092,20.04959],[73.1921,20.05471],[73.18615,20.05917],[73.18925,20.07325],[73.18853,20.0781],[73.19691,20.07594],[73.19816,20.07785],[73.20475,20.07996],[73.20952,20.085],[73.2139,20.11899],[73.20302,20.1196],[73.19745,20.12632],[73.18964,20.12731],[73.18699,20.12945],[73.18465,20.14469],[73.18538,20.15584],[73.1883,20.15859],[73.18967,20.16426],[73.20104,20.16531],[73.20554,20.16417],[73.21416,20.17171],[73.21819,20.18152],[73.21772,20.18593],[73.20825,20.1895],[73.2067,20.18812],[73.19881,20.19446],[73.19172,20.19743],[73.19003,20.1951],[73.17795,20.19264],[73.1788,20.19775],[73.17675,20.19933],[73.17147,20.19844],[73.16873,20.20302],[73.16829,20.20823],[73.15718,20.19835],[73.15225,20.2039],[73.14757,20.20074],[73.13852,20.20451],[73.13753,20.20759],[73.13299,20.20577],[73.13261,20.19196],[73.13492,20.18499],[73.13896,20.18447],[73.14187,20.17736],[73.13604,20.17003],[73.13248,20.16942],[73.12841,20.17344],[73.11918,20.16821],[73.11948,20.16404],[73.11566,20.16222],[73.11481,20.15894],[73.11652,20.15582],[73.11566,20.15217],[73.11365,20.15209],[73.10811,20.15784],[73.09941,20.15622],[73.0903,20.16032],[73.08704,20.17032],[73.07928,20.17324],[73.07358,20.15562],[73.07066,20.15558],[73.06024,20.16189],[73.06041,20.16687],[73.06264,20.16975],[73.0628,20.17761],[73.05953,20.19393],[73.05322,20.19543],[73.0488,20.20086],[73.0534,20.20539],[73.05996,20.22334],[73.06257,20.22403],[73.06365,20.22776],[73.07051,20.2321],[73.08244,20.23089],[73.08549,20.22764],[73.08927,20.22676],[73.09774,20.2293],[73.09901,20.23194],[73.0973,20.23867],[73.10627,20.24619],[73.107,20.25077],[73.11399,20.25831],[73.126,20.26076],[73.13053,20.26949],[73.13123,20.27503],[73.13728,20.27314],[73.13997,20.27379],[73.14227,20.27642],[73.14222,20.2811],[73.14585,20.28858],[73.15173,20.29203],[73.15367,20.28523],[73.15823,20.28131],[73.16494,20.28399],[73.1663,20.28787],[73.16579,20.29407],[73.16349,20.2982],[73.16623,20.30527],[73.16573,20.31043],[73.15941,20.30885],[73.15078,20.31834],[73.12944,20.31832],[73.12645,20.3088],[73.12695,20.30551],[73.12189,20.30419],[73.11661,20.30616],[73.11154,20.30405],[73.10852,20.30527],[73.10281,20.30178],[73.10037,20.30482],[73.10291,20.31413],[73.10843,20.32457],[73.10804,20.33103],[73.11125,20.33777],[73.10803,20.33902],[73.10738,20.34391],[73.10398,20.34755],[73.10478,20.34994],[73.10169,20.35474],[73.09864,20.3547],[73.09699,20.35993]],[[72.98987,20.21333],[72.98377,20.21306],[72.97905,20.21558],[72.97478,20.21927],[72.97462,20.22573],[72.97923,20.23403],[72.98951,20.2388],[72.9984,20.23675],[73.00832,20.22896],[73.00255,20.22063],[73.00113,20.21444],[72.99295,20.21499],[72.98987,20.21333]]],[[[72.86796,20.46336],[72.859,20.46499],[72.85583,20.47116],[72.85022,20.47456],[72.84839,20.47802],[72.84627,20.47803],[72.84647,20.47139],[72.8442,20.46683],[72.83712,20.46191],[72.83544,20.45991],[72.83308,20.45512],[72.82565,20.4464],[72.8212,20.43682],[72.82008,20.43292],[72.82089,20.42337],[72.81902,20.42178],[72.81856,20.4189],[72.81708,20.41751],[72.81663,20.40667],[72.81516,20.40312],[72.81332,20.3901],[72.80965,20.38235],[72.80524,20.37606],[72.8046,20.37227],[72.80991,20.37224],[72.82616,20.36642],[72.83039,20.36794],[72.83594,20.37332],[72.84087,20.37346],[72.84423,20.37494],[72.85614,20.37203],[72.85813,20.37404],[72.86419,20.37519],[72.86569,20.37226],[72.87667,20.36977],[72.88297,20.37231],[72.89067,20.37265],[72.89149,20.37565],[72.89615,20.37907],[72.89619,20.38035],[72.8869,20.38545],[72.8871,20.38818],[72.88362,20.39122],[72.88276,20.39785],[72.88508,20.39788],[72.8877,20.40003],[72.88999,20.39898],[72.89187,20.39916],[72.89485,20.40158],[72.8959,20.40116],[72.89793,20.40235],[72.90041,20.40526],[72.90259,20.4058],[72.90329,20.40978],[72.90177,20.41021],[72.90405,20.41498],[72.90041,20.41687],[72.8979,20.42061],[72.8932,20.42173],[72.89172,20.42137],[72.89111,20.41961],[72.88919,20.41904],[72.88323,20.41992],[72.88167,20.41948],[72.8802,20.41702],[72.87533,20.41681],[72.8743,20.41487],[72.87175,20.41389],[72.87018,20.41385],[72.86842,20.4164],[72.8649,20.41731],[72.86253,20.4168],[72.85725,20.41892],[72.85838,20.42314],[72.86023,20.42489],[72.86109,20.4276],[72.86507,20.42908],[72.86836,20.43459],[72.8698,20.43952],[72.87484,20.44557],[72.87685,20.44464],[72.8789,20.44166],[72.88771,20.43825],[72.89016,20.43865],[72.89144,20.4409],[72.89532,20.44431],[72.88797,20.4506],[72.88713,20.45492],[72.888,20.46071],[72.88655,20.46233],[72.87725,20.46176],[72.87047,20.46349],[72.86796,20.46336]]],[[[70.92536,20.73799],[70.92429,20.74066],[70.91949,20.7431],[70.91586,20.74203],[70.91339,20.74014],[70.91142,20.73736],[70.91011,20.73684],[70.90535,20.73656],[70.89387,20.73239],[70.88245,20.73095],[70.87713,20.72763],[70.87597,20.72575],[70.87574,20.72316],[70.87213,20.71835],[70.87085,20.71026],[70.87139,20.70711],[70.87422,20.70641],[70.87467,20.7089],[70.87677,20.70968],[70.88774,20.70928],[70.89315,20.70764],[70.898,20.70456],[70.89895,20.70286],[70.89691,20.70102],[70.89766,20.70007],[70.89996,20.69964],[70.90975,20.70083],[70.91021,20.70133],[70.90955,20.70191],[70.91053,20.70226],[70.91183,20.70139],[70.91137,20.7],[70.91332,20.69951],[70.91701,20.70207],[70.91468,20.70221],[70.91564,20.70303],[70.91505,20.7053],[70.91556,20.70688],[70.91769,20.70922],[70.91977,20.71052],[70.92804,20.71227],[70.93234,20.71191],[70.93768,20.71037],[70.93843,20.70981],[70.93781,20.7087],[70.93821,20.70795],[70.94433,20.70588],[70.94532,20.70641],[70.94812,20.70568],[70.94893,20.70687],[70.94981,20.7058],[70.95075,20.70611],[70.95095,20.70495],[70.95231,20.70402],[70.95505,20.70451],[70.95968,20.70714],[70.961,20.70728],[70.96181,20.70613],[70.9636,20.70586],[70.96933,20.70795],[70.97052,20.70702],[70.97126,20.70435],[70.97304,20.70514],[70.97369,20.70301],[70.97418,20.70454],[70.97525,20.70484],[70.97696,20.7028],[70.9799,20.70595],[70.9852,20.70927],[70.98612,20.70899],[70.987,20.71032],[70.98931,20.70935],[70.99116,20.7107],[70.99189,20.7103],[70.99442,20.71127],[70.99738,20.71393],[70.99845,20.71715],[70.99774,20.71833],[70.99554,20.71947],[70.99331,20.72262],[70.99308,20.72657],[70.99757,20.73263],[71.0,20.73394],[71.0,20.7352],[71.00738,20.73752],[71.00231,20.74182],[70.99949,20.74223],[70.9987,20.74044],[70.9956,20.73884],[70.99307,20.73578],[70.99051,20.73541],[70.9887,20.73342],[70.98448,20.73225],[70.98101,20.72269],[70.97402,20.72787],[70.96435,20.72961],[70.9633,20.73357],[70.96041,20.73672],[70.95414,20.73492],[70.94695,20.7346],[70.93851,20.73243],[70.93172,20.73689],[70.92708,20.73696],[70.92536,20.73799]]],[[[71.15536,20.76009],[71.15544,20.76039],[71.15544,20.76065],[71.15526,20.76105],[71.15507,20.76116],[71.15471,20.76125],[71.15338,20.76143],[71.1529,20.76162],[71.15257,20.76192],[71.15209,20.76277],[71.15209,20.76337],[71.15201,20.76372],[71.15177,20.76391],[71.15159,20.76393],[71.15132,20.76387],[71.15117,20.76369],[71.15117,20.76355],[71.15124,20.76309],[71.15133,20.76284],[71.15147,20.76214],[71.1515,20.76177],[71.15145,20.76155],[71.1513,20.7613],[71.15099,20.76095],[71.1505,20.76064],[71.14999,20.76007],[71.14987,20.75975],[71.14991,20.75943],[71.1502,20.75919],[71.15071,20.75906],[71.15108,20.75907],[71.15152,20.75912],[71.15255,20.75954],[71.15316,20.75984],[71.15342,20.75988],[71.15368,20.75984],[71.15407,20.7596],[71.15443,20.75951],[71.15464,20.75952],[71.15511,20.75977],[71.15536,20.76009]]],[[[71.14734,20.77136],[71.14639,20.77134],[71.14675,20.7707],[71.14665,20.77036],[71.14642,20.77008],[71.14642,20.76997],[71.14643,20.76979],[71.14668,20.76931],[71.14645,20.76862],[71.14677,20.76777],[71.14615,20.76313],[71.14592,20.76066],[71.14607,20.75898],[71.14712,20.75876],[71.14733,20.75848],[71.14808,20.75825],[71.14843,20.75861],[71.14846,20.75965],[71.14833,20.75998],[71.14836,20.76045],[71.14846,20.76072],[71.14937,20.7613],[71.14972,20.7619],[71.14958,20.76271],[71.14924,20.76329],[71.14883,20.76616],[71.14913,20.76637],[71.14949,20.77028],[71.14976,20.77144],[71.14734,20.77136]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-OR","area_level":"State","area_name":"Odisha","geometry_source":"SOI_States","same_as":"ISO-3166-2/IN-OD/State"},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.33623,18.79016],[84.3356,18.79029],[84.33466,18.79019],[84.33111,18.78954],[84.33072,18.78891],[84.3297,18.78883],[84.32927,18.7872],[84.3316,18.78614],[84.33439,18.78436],[84.3363,18.78287],[84.33686,18.78222],[84.33701,18.7814],[84.33727,18.78054],[84.33839,18.77937],[84.33936,18.77869],[84.33914,18.78226],[84.33924,18.78276],[84.33927,18.78428],[84.3392,18.78545],[84.33942,18.78638],[84.33937,18.78661],[84.33866,18.78784],[84.33926,18.78853],[84.33956,18.78911],[84.33959,18.7894],[84.33928,18.7897],[84.33888,18.78994],[84.3383,18.79002],[84.33703,18.78995],[84.33623,18.79016]]],[[[84.35171,18.78577],[84.35191,18.7861],[84.35215,18.78693],[84.35223,18.78758],[84.35245,18.78847],[84.35327,18.78989],[84.35247,18.79046],[84.35223,18.79075],[84.35201,18.79117],[84.35177,18.79133],[84.34968,18.79192],[84.34953,18.79096],[84.34958,18.78932],[84.34968,18.7887],[84.35011,18.78757],[84.35083,18.78677],[84.35131,18.78585],[84.35148,18.78571],[84.35171,18.78577]]],[[[86.78047,20.35814],[86.78093,20.35844],[86.78144,20.35892],[86.78312,20.36081],[86.78379,20.36164],[86.7843,20.36252],[86.78461,20.36345],[86.78454,20.36396],[86.78424,20.36413],[86.78395,20.36412],[86.78343,20.36399],[86.78274,20.36368],[86.78144,20.36232],[86.78083,20.36155],[86.78016,20.36055],[86.77979,20.35956],[86.7797,20.35852],[86.78006,20.35813],[86.78047,20.35814]]],[[[86.79212,20.3817],[86.7924,20.38194],[86.79262,20.38229],[86.79272,20.38299],[86.79259,20.3835],[86.79205,20.384],[86.79185,20.38446],[86.79184,20.38498],[86.79187,20.38567],[86.7918,20.38613],[86.7915,20.38641],[86.79103,20.38639],[86.79075,20.38615],[86.79048,20.38563],[86.79039,20.38482],[86.79041,20.38401],[86.79027,20.38303],[86.79029,20.38228],[86.79054,20.38177],[86.79114,20.38156],[86.79172,20.38152],[86.79212,20.3817]]],[[[86.80554,20.39577],[86.80438,20.39763],[86.8036,20.39818],[86.79922,20.40018],[86.79786,20.40054],[86.79676,20.40039],[86.79648,20.4001],[86.79649,20.39981],[86.79838,20.39912],[86.79856,20.39878],[86.79851,20.39843],[86.79744,20.39747],[86.79711,20.39677],[86.79738,20.39569],[86.79838,20.39526],[86.79916,20.39459],[86.80057,20.39452],[86.80047,20.39388],[86.80002,20.39335],[86.80005,20.39243],[86.79961,20.39144],[86.79963,20.39098],[86.80085,20.39107],[86.8022,20.39088],[86.80287,20.39021],[86.80275,20.38992],[86.80246,20.38985],[86.80145,20.3904],[86.80111,20.39033],[86.79963,20.38919],[86.79938,20.38774],[86.79994,20.38701],[86.79994,20.38667],[86.79967,20.38625],[86.79896,20.38641],[86.7979,20.38856],[86.79769,20.38965],[86.79785,20.39034],[86.79863,20.39129],[86.79856,20.39175],[86.79731,20.39263],[86.79613,20.39484],[86.79588,20.39518],[86.79571,20.39494],[86.79657,20.39186],[86.79657,20.38645],[86.79595,20.3824],[86.79546,20.38117],[86.79543,20.38013],[86.79557,20.37951],[86.79765,20.37663],[86.79792,20.37543],[86.79752,20.3734],[86.79669,20.37211],[86.79581,20.37018],[86.79585,20.36932],[86.79605,20.36852],[86.79838,20.36479],[86.79891,20.36452],[86.79995,20.36466],[86.80268,20.36699],[86.80627,20.37113],[86.80705,20.37237],[86.80748,20.37353],[86.80775,20.37775],[86.80741,20.38465],[86.8064,20.39245],[86.80554,20.39577]]],[[[86.78787,20.38347],[86.7906,20.38701],[86.7941,20.38885],[86.79311,20.39078],[86.79133,20.39901],[86.79188,20.40709],[86.79419,20.4131],[86.79511,20.41722],[86.79821,20.424],[86.80165,20.42952],[86.8068,20.4419],[86.80824,20.45312],[86.80655,20.46228],[86.8029,20.46706],[86.80121,20.47046],[86.79968,20.48142],[86.79806,20.48839],[86.79549,20.49176],[86.79322,20.49324],[86.79621,20.48418],[86.79596,20.47916],[86.79661,20.47527],[86.79759,20.47219],[86.79963,20.46857],[86.79907,20.46797],[86.79885,20.46578],[86.79566,20.45968],[86.79592,20.45889],[86.79747,20.45784],[86.79923,20.45392],[86.79928,20.44523],[86.80005,20.44312],[86.79901,20.43905],[86.79716,20.43859],[86.79264,20.43413],[86.79018,20.43255],[86.79154,20.42845],[86.79144,20.42597],[86.78928,20.41502],[86.79093,20.41104],[86.7889,20.40533],[86.78682,20.4048],[86.78666,20.40428],[86.78886,20.39588],[86.78704,20.38736],[86.78742,20.38634],[86.78703,20.38408],[86.78787,20.38347]]],[[[87.01175,20.71231],[87.01174,20.71283],[87.0119,20.71346],[87.01273,20.71463],[87.01297,20.71521],[87.01307,20.71602],[87.01307,20.71665],[87.01318,20.71717],[87.01306,20.71723],[87.01222,20.71681],[87.0115,20.71588],[87.01128,20.71524],[87.01045,20.71402],[87.00997,20.71361],[87.00921,20.71262],[87.00879,20.71197],[87.00825,20.71168],[87.00789,20.71173],[87.0077,20.7119],[87.0074,20.71207],[87.0068,20.71218],[87.00667,20.71217],[87.00661,20.71194],[87.00668,20.71166],[87.00711,20.71132],[87.00754,20.71121],[87.00778,20.71081],[87.00798,20.71035],[87.00828,20.70995],[87.00865,20.7099],[87.00918,20.71019],[87.00936,20.71054],[87.00965,20.71083],[87.01008,20.71101],[87.0108,20.71108],[87.01109,20.71137],[87.01175,20.71231]]],[[[87.00275,20.71177],[87.00365,20.7123],[87.00442,20.71301],[87.00531,20.71412],[87.0062,20.71505],[87.00778,20.71813],[87.00813,20.71917],[87.00812,20.71952],[87.00764,20.71951],[87.00734,20.71933],[87.00693,20.71869],[87.00592,20.71753],[87.00502,20.71676],[87.00444,20.71589],[87.00378,20.71513],[87.00243,20.71321],[87.00172,20.71193],[87.00173,20.71152],[87.00227,20.71142],[87.00275,20.71177]]],[[[87.05714,20.73021],[87.05756,20.73051],[87.05785,20.73096],[87.0579,20.73122],[87.05778,20.73156],[87.05745,20.73216],[87.05732,20.73221],[87.05693,20.73256],[87.05652,20.73279],[87.05631,20.73286],[87.05595,20.73281],[87.05586,20.73266],[87.05584,20.73246],[87.05587,20.73232],[87.0565,20.73209],[87.05673,20.73195],[87.05688,20.73178],[87.05695,20.73145],[87.05688,20.73095],[87.05674,20.7307],[87.05639,20.73046],[87.05584,20.73023],[87.05491,20.7302],[87.05434,20.73034],[87.0537,20.73043],[87.05348,20.73049],[87.0533,20.73041],[87.05325,20.73022],[87.05346,20.72984],[87.05372,20.72959],[87.05421,20.72959],[87.05574,20.72974],[87.05616,20.72974],[87.05678,20.72992],[87.05714,20.73021]]],[[[87.05184,20.73785],[87.05154,20.73806],[87.05135,20.7383],[87.05104,20.73841],[87.05096,20.73821],[87.05074,20.73794],[87.05083,20.73761],[87.05108,20.7373],[87.05158,20.73689],[87.05206,20.73682],[87.05257,20.73684],[87.05313,20.73709],[87.05252,20.73761],[87.05221,20.73763],[87.0521,20.73756],[87.05184,20.73785]]],[[[87.07416,20.73202],[87.0754,20.73328],[87.07581,20.73396],[87.07634,20.73426],[87.07625,20.73539],[87.07598,20.73597],[87.07609,20.73654],[87.07663,20.73784],[87.07738,20.73882],[87.078,20.73929],[87.07791,20.73994],[87.07796,20.74063],[87.0778,20.74181],[87.07796,20.74261],[87.07783,20.74321],[87.07789,20.74393],[87.07713,20.74396],[87.07652,20.74369],[87.07679,20.74347],[87.0759,20.74192],[87.07708,20.74095],[87.07732,20.74063],[87.07756,20.74002],[87.0774,20.7398],[87.07646,20.73929],[87.07609,20.73897],[87.07598,20.7383],[87.07526,20.73621],[87.07537,20.73578],[87.07469,20.73507],[87.07457,20.73448],[87.07382,20.73356],[87.07209,20.73198],[87.07169,20.73232],[87.07126,20.73235],[87.07117,20.73288],[87.07048,20.73369],[87.06995,20.73387],[87.06955,20.73347],[87.06977,20.73291],[87.07009,20.73271],[87.0702,20.73226],[87.07055,20.7319],[87.07111,20.73158],[87.07145,20.73084],[87.07199,20.73056],[87.07244,20.72869],[87.07351,20.72746],[87.07382,20.72778],[87.0729,20.72933],[87.07277,20.7303],[87.07345,20.73127],[87.07416,20.73202]]],[[[87.05714,20.74542],[87.05482,20.7455],[87.05311,20.74527],[87.05191,20.74527],[87.05112,20.74504],[87.05007,20.7446],[87.04938,20.74403],[87.04965,20.74357],[87.04999,20.74331],[87.05106,20.74354],[87.05188,20.74365],[87.05259,20.74374],[87.05323,20.74374],[87.05467,20.74394],[87.05534,20.74409],[87.05582,20.74435],[87.05793,20.74464],[87.05919,20.74432],[87.05965,20.74386],[87.05934,20.74446],[87.05885,20.74492],[87.05824,20.74521],[87.0576,20.74527],[87.05714,20.74542]]],[[[87.07109,20.73668],[87.07061,20.73722],[87.07035,20.73772],[87.0703,20.73838],[87.07046,20.73898],[87.07106,20.74013],[87.07175,20.74266],[87.07167,20.74376],[87.0717,20.74447],[87.07193,20.74691],[87.07226,20.74784],[87.07246,20.74875],[87.07226,20.74899],[87.07181,20.74895],[87.07104,20.74689],[87.07106,20.74556],[87.07045,20.74251],[87.07035,20.74035],[87.07022,20.73949],[87.07001,20.73891],[87.06971,20.73838],[87.06933,20.73792],[87.06878,20.73763],[87.07066,20.73644],[87.07096,20.73634],[87.07109,20.73668]]],[[[87.09767,20.7482],[87.09726,20.74839],[87.09701,20.74839],[87.0969,20.74832],[87.09683,20.74824],[87.09676,20.74808],[87.09678,20.74794],[87.09689,20.74778],[87.09706,20.74763],[87.09732,20.74753],[87.09788,20.74741],[87.0981,20.7474],[87.09832,20.74747],[87.09841,20.74761],[87.09844,20.74776],[87.09844,20.74792],[87.09842,20.74804],[87.09832,20.74813],[87.09812,20.74817],[87.09791,20.74817],[87.09767,20.7482]]],[[[87.10036,20.74892],[87.1005,20.74931],[87.10056,20.74966],[87.10075,20.75],[87.10112,20.75027],[87.10157,20.75053],[87.10202,20.75068],[87.10191,20.75103],[87.10168,20.75151],[87.10151,20.75145],[87.10092,20.75116],[87.1005,20.75093],[87.10011,20.75079],[87.09969,20.75051],[87.09941,20.75003],[87.09935,20.74961],[87.09938,20.74939],[87.09958,20.749],[87.09983,20.74878],[87.10011,20.74876],[87.10036,20.74892]]],[[[87.08638,20.76383],[87.0859,20.76453],[87.08502,20.76462],[87.08434,20.7643],[87.08372,20.76349],[87.08328,20.76321],[87.08306,20.76327],[87.08292,20.76382],[87.08238,20.76391],[87.08154,20.76278],[87.07989,20.76154],[87.07973,20.76126],[87.0797,20.76098],[87.08062,20.7593],[87.08044,20.75876],[87.07976,20.75846],[87.0792,20.7578],[87.07818,20.75776],[87.0778,20.75722],[87.0768,20.75684],[87.07505,20.75652],[87.07333,20.75594],[87.07285,20.75562],[87.0725,20.75477],[87.07268,20.7541],[87.07308,20.7535],[87.07416,20.75265],[87.07504,20.75266],[87.07778,20.75338],[87.0801,20.75374],[87.08273,20.75394],[87.0838,20.75379],[87.08437,20.75387],[87.08569,20.75354],[87.08651,20.75353],[87.08779,20.75375],[87.08923,20.75349],[87.09091,20.75345],[87.09201,20.75304],[87.09348,20.753],[87.09422,20.75328],[87.09479,20.75419],[87.09522,20.7546],[87.09566,20.75473],[87.09714,20.75474],[87.09752,20.75492],[87.09716,20.75544],[87.09441,20.75646],[87.09289,20.75682],[87.09165,20.75774],[87.08837,20.7606],[87.08726,20.763],[87.08638,20.76383]]],[[[86.98171,20.77771],[86.98294,20.77901],[86.98361,20.78039],[86.98373,20.78133],[86.98335,20.78306],[86.98301,20.78443],[86.98264,20.78482],[86.98197,20.78482],[86.98141,20.78422],[86.98036,20.78278],[86.97882,20.78035],[86.97845,20.77881],[86.97871,20.77799],[86.97924,20.7774],[86.98043,20.77722],[86.98171,20.77771]]],[[[87.07358,20.79111],[87.07122,20.79309],[87.06999,20.79373],[87.06927,20.79386],[87.06878,20.7935],[87.06948,20.79168],[87.06985,20.79116],[87.07071,20.79076],[87.07179,20.79093],[87.07215,20.79056],[87.07208,20.79033],[87.0718,20.79017],[87.07058,20.79027],[87.06948,20.78905],[87.06944,20.78846],[87.06986,20.78839],[87.07034,20.78884],[87.07053,20.78866],[87.07072,20.7887],[87.07083,20.78905],[87.0711,20.7893],[87.07177,20.78939],[87.07317,20.78901],[87.07407,20.7875],[87.07437,20.78251],[87.07475,20.77913],[87.07463,20.77674],[87.07487,20.77543],[87.07418,20.7738],[87.07388,20.77272],[87.07383,20.77094],[87.07295,20.77042],[87.07391,20.7694],[87.0742,20.76794],[87.07478,20.7674],[87.07589,20.77059],[87.07601,20.77202],[87.07542,20.77371],[87.07534,20.77995],[87.07511,20.78329],[87.07475,20.7848],[87.07485,20.78645],[87.07475,20.78902],[87.07436,20.7904],[87.07358,20.79111]]],[[[86.99013,20.80243],[86.99006,20.80298],[86.98985,20.80334],[86.98954,20.80369],[86.98921,20.80388],[86.98777,20.80396],[86.98714,20.80379],[86.98657,20.80344],[86.98611,20.80298],[86.98605,20.80262],[86.98612,20.80231],[86.98658,20.80199],[86.9871,20.80202],[86.98808,20.80221],[86.98851,20.80224],[86.98899,20.80217],[86.98943,20.80198],[86.9898,20.80192],[86.99006,20.80204],[86.99013,20.80243]]],[[[87.4301,21.58621],[87.43031,21.58657],[87.43007,21.5867],[87.42914,21.5863],[87.42739,21.58614],[87.42613,21.58634],[87.42484,21.58572],[87.42184,21.58282],[87.419,21.57872],[87.41742,21.57498],[87.41596,21.5725],[87.4138,21.56968],[87.41321,21.56854],[87.41319,21.56764],[87.41268,21.56514],[87.41299,21.56344],[87.4135,21.5621],[87.41338,21.5609],[87.41371,21.56017],[87.41449,21.56195],[87.41428,21.56339],[87.41441,21.56498],[87.41473,21.56535],[87.41547,21.56557],[87.41627,21.56619],[87.41609,21.56686],[87.41695,21.5681],[87.41698,21.56851],[87.41658,21.56931],[87.41656,21.57],[87.41836,21.57054],[87.41867,21.57133],[87.41851,21.57215],[87.41961,21.5726],[87.41993,21.57297],[87.42119,21.57635],[87.42283,21.5785],[87.42325,21.58007],[87.42507,21.58145],[87.42496,21.58233],[87.42514,21.58251],[87.42704,21.58298],[87.4289,21.58477],[87.42989,21.58548],[87.4301,21.58621]]],[[[86.04544,22.56751],[86.03217,22.55503],[86.02403,22.54462],[86.03384,22.53449],[86.02653,22.52402],[86.02091,22.52732],[86.00409,22.51776],[86.00103,22.51458],[85.99349,22.51438],[85.98961,22.51669],[85.98851,22.51534],[85.98514,22.51548],[85.98179,22.51092],[85.98001,22.51136],[85.97815,22.50842],[85.9734,22.50586],[85.97353,22.49962],[85.97096,22.49739],[85.97233,22.49169],[85.96839,22.48629],[85.96274,22.48512],[85.9626,22.47279],[85.95712,22.46482],[85.96035,22.46139],[85.96788,22.46119],[85.96564,22.45115],[85.97288,22.44717],[85.98461,22.43545],[86.00275,22.42637],[86.01069,22.43019],[86.015,22.42873],[86.01925,22.40743],[86.01833,22.40247],[86.02034,22.40079],[86.02087,22.39724],[86.02437,22.39622],[86.02267,22.39371],[86.02395,22.39267],[86.02339,22.39001],[86.0272,22.38621],[86.02521,22.38361],[86.02713,22.38056],[86.02478,22.37901],[86.02475,22.37539],[86.02106,22.37618],[86.02013,22.37177],[86.02176,22.36482],[86.01919,22.3609],[86.01467,22.35965],[86.0108,22.35229],[86.00753,22.35151],[86.00367,22.34672],[85.99821,22.34515],[85.99802,22.3416],[86.00338,22.33568],[86.00783,22.33776],[86.00949,22.33957],[86.00829,22.34095],[86.01075,22.34123],[86.01956,22.33903],[86.02671,22.33486],[86.01193,22.32232],[86.01049,22.31787],[86.01306,22.31789],[86.0137,22.31307],[86.01605,22.31437],[86.02257,22.309],[86.02735,22.3093],[86.02891,22.30769],[86.03236,22.31122],[86.03815,22.31036],[86.04067,22.31246],[86.04716,22.31145],[86.04721,22.30896],[86.04058,22.30632],[86.0341,22.30619],[86.03289,22.30329],[86.02942,22.303],[86.02882,22.3007],[86.02496,22.3026],[86.02218,22.30003],[86.01898,22.30038],[86.01425,22.29729],[86.00611,22.28739],[86.00704,22.28461],[86.0041,22.28018],[85.99871,22.27724],[85.98832,22.26697],[85.98771,22.26315],[85.99064,22.25694],[85.9897,22.25441],[85.97388,22.24708],[85.98092,22.23891],[85.98567,22.23714],[85.99131,22.22676],[86.00286,22.21383],[86.01837,22.20533],[86.03108,22.19307],[86.03143,22.19085],[86.01723,22.17162],[86.01526,22.16166],[86.00551,22.15086],[86.00351,22.13957],[85.99947,22.13569],[85.99877,22.13302],[85.99676,22.13245],[85.99717,22.12802],[86.00738,22.11709],[86.00381,22.11386],[85.99251,22.09468],[85.98642,22.08897],[85.98044,22.07521],[85.96877,22.0608],[85.96504,22.05237],[85.94359,22.02036],[85.93088,22.02334],[85.92295,22.01124],[85.91615,22.00878],[85.91616,22.00269],[85.91221,21.99719],[85.90952,21.98782],[85.91166,21.98488],[85.9102,21.98117],[85.91189,21.98017],[85.90656,21.97695],[85.91128,21.97341],[85.90689,21.97013],[85.90347,21.97307],[85.90238,21.9782],[85.90009,21.97958],[85.89871,21.98316],[85.89571,21.98324],[85.89577,21.98441],[85.89385,21.98439],[85.8937,21.98229],[85.89159,21.98122],[85.88208,21.98014],[85.85321,21.98376],[85.83614,21.98085],[85.83258,21.97728],[85.82437,21.97545],[85.8209,21.97746],[85.81699,21.98577],[85.81046,21.98631],[85.80537,21.98942],[85.79041,21.98582],[85.78584,21.98704],[85.78275,21.98495],[85.76299,21.99614],[85.76251,22.00125],[85.75857,22.00949],[85.7608,22.01454],[85.76716,22.02349],[85.77496,22.02872],[85.77959,22.02967],[85.78376,22.04018],[85.77873,22.04556],[85.77494,22.05629],[85.79344,22.08181],[85.81611,22.07357],[85.82266,22.07443],[85.83586,22.08016],[85.83268,22.09304],[85.82177,22.09466],[85.81976,22.09643],[85.81332,22.09429],[85.81305,22.09649],[85.82104,22.1065],[85.80743,22.11611],[85.80117,22.10986],[85.79755,22.1084],[85.79732,22.10475],[85.79017,22.10484],[85.78099,22.0965],[85.7673,22.09278],[85.7574,22.08458],[85.75705,22.07831],[85.74939,22.07357],[85.74015,22.07098],[85.7302,22.06528],[85.72054,22.06389],[85.718,22.06174],[85.71337,22.06248],[85.70917,22.05823],[85.70094,22.06173],[85.69168,22.06229],[85.68938,22.05605],[85.68487,22.05423],[85.67733,22.05695],[85.67844,22.06294],[85.67166,22.06748],[85.67025,22.07343],[85.66406,22.07685],[85.66158,22.08334],[85.65738,22.08393],[85.65527,22.09233],[85.65162,22.09544],[85.64412,22.09426],[85.63981,22.08667],[85.63703,22.0871],[85.63246,22.08417],[85.62888,22.08601],[85.62492,22.08209],[85.61345,22.08154],[85.61388,22.08609],[85.61118,22.08704],[85.60681,22.07984],[85.59718,22.07912],[85.59229,22.08044],[85.59023,22.084],[85.58622,22.08654],[85.57155,22.09116],[85.5662,22.08889],[85.56099,22.09178],[85.56044,22.09607],[85.54298,22.09047],[85.53902,22.0971],[85.53978,22.10185],[85.53413,22.10264],[85.52489,22.11002],[85.50978,22.11775],[85.48991,22.12108],[85.48293,22.1276],[85.4747,22.12893],[85.47069,22.13412],[85.46187,22.1399],[85.447,22.14637],[85.44299,22.14667],[85.43877,22.15035],[85.43412,22.15099],[85.42115,22.15878],[85.41137,22.16182],[85.39727,22.1632],[85.39207,22.15903],[85.38255,22.15644],[85.37511,22.15737],[85.37107,22.16099],[85.36579,22.15847],[85.36654,22.15363],[85.36396,22.15214],[85.36345,22.14748],[85.36039,22.14401],[85.36189,22.1411],[85.36084,22.13151],[85.36488,22.12883],[85.36441,22.12371],[85.35939,22.12395],[85.35059,22.1295],[85.34648,22.13025],[85.34354,22.12738],[85.32309,22.1275],[85.31884,22.12083],[85.31058,22.11882],[85.29926,22.10539],[85.2813,22.09043],[85.27513,22.08229],[85.27285,22.07359],[85.26306,22.05868],[85.2517,22.02697],[85.24417,22.01581],[85.24056,22.01363],[85.23993,22.011],[85.23629,22.0098],[85.22921,22.01241],[85.22591,22.01609],[85.22143,22.01799],[85.21687,22.03357],[85.21859,22.04093],[85.21485,22.04333],[85.21508,22.04772],[85.21345,22.04969],[85.2104,22.04942],[85.19817,22.05594],[85.18572,22.05921],[85.18057,22.07323],[85.1746,22.07459],[85.16762,22.06951],[85.17121,22.06342],[85.17083,22.05663],[85.17387,22.05138],[85.16685,22.0537],[85.16512,22.06381],[85.16038,22.06966],[85.16054,22.07471],[85.1548,22.07883],[85.14482,22.07974],[85.14033,22.07761],[85.13179,22.07681],[85.12007,22.07018],[85.11866,22.0742],[85.11251,22.07984],[85.11381,22.08354],[85.1124,22.08704],[85.10881,22.0876],[85.10557,22.09023],[85.10379,22.08953],[85.10057,22.09372],[85.10169,22.09812],[85.10011,22.10363],[85.09574,22.10621],[85.09488,22.10836],[85.08897,22.10573],[85.07046,22.1129],[85.05527,22.11568],[85.03909,22.11562],[85.02892,22.10933],[85.02387,22.11016],[85.01765,22.10342],[85.0158,22.10361],[85.01306,22.09879],[85.01174,22.09141],[85.00865,22.08886],[85.00658,22.09006],[85.00569,22.0879],[84.99369,22.0814],[84.98695,22.08282],[84.98456,22.08661],[84.98339,22.09552],[84.99141,22.09956],[84.99948,22.1077],[85.02358,22.11862],[85.03167,22.13309],[85.03417,22.14702],[85.02834,22.15718],[85.0291,22.16349],[85.04162,22.17299],[85.04283,22.17734],[85.05026,22.17916],[85.05266,22.18246],[85.05369,22.18539],[85.04919,22.19541],[85.05415,22.19799],[85.05582,22.20271],[85.05921,22.206],[85.05849,22.20925],[85.07225,22.23772],[85.06936,22.24358],[85.07025,22.24806],[85.07332,22.24805],[85.0782,22.25739],[85.07664,22.26108],[85.07341,22.2629],[85.0746,22.26485],[85.07218,22.26705],[85.07382,22.26876],[85.07148,22.27036],[85.07061,22.27365],[85.09963,22.29357],[85.10644,22.2959],[85.116,22.29409],[85.11413,22.30542],[85.11601,22.30811],[85.11416,22.31045],[85.11544,22.31528],[85.1181,22.31759],[85.11535,22.31978],[85.10637,22.32148],[85.10069,22.31992],[85.09549,22.31571],[85.09074,22.31858],[85.08939,22.32043],[85.09389,22.33328],[85.09575,22.34474],[85.09461,22.34673],[85.08333,22.34534],[85.08384,22.34905],[85.07892,22.35237],[85.07667,22.35621],[85.07916,22.36051],[85.07739,22.36551],[85.08696,22.38254],[85.08787,22.38847],[85.08622,22.38943],[85.08653,22.39942],[85.08023,22.41001],[85.08208,22.41653],[85.07537,22.42055],[85.0678,22.42843],[85.06683,22.44091],[85.06106,22.44513],[85.06029,22.44956],[85.06422,22.45424],[85.07715,22.46375],[85.07403,22.46553],[85.07524,22.46862],[85.07675,22.46874],[85.078,22.47755],[85.07601,22.48029],[85.07179,22.4792],[85.06726,22.48417],[85.05968,22.48645],[85.05216,22.48251],[85.0443,22.48233],[85.04165,22.48055],[85.03808,22.48043],[85.03805,22.48196],[85.03595,22.48243],[85.03628,22.47937],[85.03765,22.47949],[85.03718,22.47282],[85.03547,22.47378],[85.01938,22.4706],[84.97302,22.45112],[84.96488,22.44933],[84.95935,22.44305],[84.95667,22.45823],[84.9449,22.45246],[84.94021,22.4452],[84.93194,22.44622],[84.92386,22.44355],[84.92387,22.44093],[84.92656,22.43958],[84.92615,22.43495],[84.9159,22.42611],[84.91023,22.42328],[84.89925,22.42343],[84.88558,22.42108],[84.88559,22.42613],[84.88871,22.42921],[84.8849,22.43745],[84.88509,22.44276],[84.88239,22.44847],[84.87292,22.44227],[84.87307,22.43947],[84.85373,22.43592],[84.84563,22.43626],[84.84223,22.43423],[84.84216,22.43174],[84.83855,22.43093],[84.83738,22.43253],[84.81763,22.43761],[84.81778,22.44462],[84.81252,22.45293],[84.80571,22.44767],[84.80145,22.44846],[84.79907,22.4473],[84.7973,22.44864],[84.79604,22.44626],[84.78875,22.44819],[84.76551,22.44865],[84.75932,22.44747],[84.75206,22.4306],[84.74974,22.41899],[84.71877,22.4199],[84.71556,22.41728],[84.69863,22.4164],[84.68384,22.41992],[84.676,22.41942],[84.67413,22.42191],[84.66806,22.41806],[84.65216,22.42621],[84.62865,22.43455],[84.62196,22.43156],[84.6103,22.43094],[84.60259,22.42883],[84.59785,22.4348],[84.59418,22.43006],[84.5709,22.4274],[84.54929,22.42104],[84.54694,22.42607],[84.54033,22.42719],[84.53806,22.42556],[84.5362,22.42737],[84.53136,22.4259],[84.53054,22.4228],[84.52439,22.41998],[84.51698,22.41935],[84.51064,22.42103],[84.48958,22.41364],[84.48244,22.41327],[84.48069,22.41017],[84.47698,22.40801],[84.47673,22.40528],[84.47793,22.39925],[84.48029,22.39798],[84.47884,22.39408],[84.4844,22.39258],[84.48463,22.38885],[84.47601,22.38665],[84.46118,22.37905],[84.45321,22.38105],[84.45345,22.37946],[84.44953,22.38029],[84.43496,22.37417],[84.43053,22.36894],[84.43226,22.36531],[84.43067,22.36404],[84.43427,22.36047],[84.42998,22.35793],[84.42813,22.35327],[84.4237,22.35444],[84.42041,22.35235],[84.41618,22.35281],[84.40032,22.34646],[84.39969,22.34782],[84.39676,22.3474],[84.39213,22.34986],[84.38302,22.34911],[84.37959,22.35262],[84.37032,22.35573],[84.36789,22.35466],[84.36564,22.3482],[84.33951,22.34755],[84.32994,22.34425],[84.32474,22.34528],[84.31683,22.34231],[84.31336,22.34444],[84.29533,22.34102],[84.29151,22.34213],[84.29004,22.34689],[84.27836,22.34928],[84.26881,22.35455],[84.25561,22.37442],[84.25146,22.37808],[84.19896,22.37581],[84.18489,22.39023],[84.16598,22.39985],[84.15613,22.40774],[84.14093,22.42562],[84.14055,22.44139],[84.1389,22.44776],[84.14138,22.45335],[84.14289,22.46423],[84.14068,22.47392],[84.137,22.47379],[84.13535,22.47659],[84.1288,22.4776],[84.12484,22.47493],[84.11349,22.47569],[84.10631,22.48065],[84.10686,22.48274],[84.10883,22.48268],[84.10795,22.48376],[84.10248,22.48408],[84.09031,22.48929],[84.08088,22.49412],[84.07305,22.50097],[84.07024,22.50135],[84.07528,22.50283],[84.07549,22.5062],[84.06512,22.50761],[84.06454,22.51248],[84.06132,22.51324],[84.05971,22.51643],[84.05306,22.5129],[84.04925,22.51704],[84.03656,22.51597],[84.02771,22.5205],[84.02552,22.52575],[84.01293,22.52337],[84.00921,22.52558],[84.01001,22.5264],[84.00439,22.52757],[84.00292,22.53033],[83.99761,22.53103],[83.99489,22.5281],[83.98673,22.52554],[83.98091,22.52155],[83.98099,22.51615],[83.97741,22.51587],[83.97465,22.51203],[83.98048,22.50757],[83.98007,22.50239],[83.99785,22.49762],[84.00287,22.49332],[84.01742,22.48925],[84.0266,22.47532],[84.04075,22.4731],[84.04725,22.46922],[84.04542,22.4626],[84.0464,22.45535],[84.04489,22.45286],[84.04725,22.43823],[84.04172,22.43499],[84.03879,22.4297],[84.03034,22.42664],[84.03027,22.42008],[84.02468,22.4155],[84.02347,22.40945],[84.02006,22.40856],[84.01339,22.39742],[84.01318,22.39427],[84.00638,22.3822],[84.01029,22.37158],[84.00578,22.37368],[83.99667,22.37199],[83.98253,22.36733],[83.97025,22.3588],[83.95499,22.36166],[83.94822,22.35632],[83.94329,22.35471],[83.93269,22.35396],[83.92328,22.35841],[83.90652,22.35129],[83.90252,22.34659],[83.90132,22.33936],[83.89033,22.33655],[83.87921,22.33538],[83.87207,22.33778],[83.86932,22.34125],[83.86426,22.34328],[83.86399,22.34163],[83.86041,22.34047],[83.86024,22.33875],[83.85431,22.33764],[83.85493,22.33453],[83.85288,22.32712],[83.85029,22.32523],[83.83524,22.32228],[83.83056,22.3234],[83.82815,22.31752],[83.82198,22.31153],[83.826,22.3055],[83.82285,22.30128],[83.82727,22.29387],[83.82636,22.29282],[83.81985,22.29129],[83.81906,22.28957],[83.81691,22.29088],[83.80926,22.28895],[83.80278,22.29015],[83.79485,22.28595],[83.79604,22.28247],[83.79223,22.27648],[83.77975,22.27383],[83.77665,22.26985],[83.77679,22.26627],[83.77472,22.26477],[83.77524,22.26166],[83.77673,22.2613],[83.77558,22.25734],[83.77289,22.25571],[83.76645,22.25563],[83.75971,22.25121],[83.75768,22.24714],[83.75775,22.24034],[83.74436,22.23963],[83.72949,22.24282],[83.72821,22.24134],[83.7212,22.24304],[83.71306,22.24272],[83.70516,22.24685],[83.69147,22.24412],[83.69105,22.24273],[83.66577,22.23273],[83.66447,22.22879],[83.65531,22.22004],[83.64951,22.22334],[83.62962,22.20666],[83.61333,22.1777],[83.60815,22.15437],[83.59369,22.14029],[83.58321,22.12507],[83.57592,22.1209],[83.56435,22.106],[83.56181,22.09892],[83.56284,22.0962],[83.57694,22.09032],[83.59358,22.07421],[83.60642,22.06659],[83.6034,22.06383],[83.60152,22.05877],[83.59617,22.05789],[83.58988,22.05445],[83.58671,22.04873],[83.58307,22.05023],[83.58178,22.05458],[83.55822,22.05485],[83.55737,22.05371],[83.55429,22.05437],[83.55398,22.05292],[83.55035,22.05335],[83.5469,22.057],[83.54781,22.05915],[83.54374,22.05697],[83.53672,22.04348],[83.53647,22.0296],[83.53979,22.02167],[83.55615,22.00782],[83.54331,21.99385],[83.54355,21.98762],[83.53716,21.97796],[83.53901,21.96599],[83.54204,21.96211],[83.56169,21.94801],[83.55915,21.94505],[83.55672,21.93535],[83.59036,21.9297],[83.59987,21.92207],[83.60157,21.91806],[83.60592,21.91412],[83.60294,21.90858],[83.59848,21.90497],[83.597,21.906],[83.5947,21.90343],[83.58597,21.90213],[83.58523,21.89964],[83.58708,21.89453],[83.58155,21.88985],[83.57783,21.8892],[83.58081,21.88327],[83.57644,21.88237],[83.57421,21.87511],[83.59089,21.8511],[83.58708,21.84352],[83.58145,21.83817],[83.57791,21.83752],[83.57885,21.83245],[83.57691,21.8313],[83.56848,21.83317],[83.56318,21.8374],[83.55177,21.84071],[83.54163,21.83826],[83.53187,21.83096],[83.53119,21.82625],[83.5401,21.82204],[83.53741,21.81308],[83.54273,21.80573],[83.54104,21.79931],[83.5287,21.79955],[83.52587,21.7983],[83.52259,21.79945],[83.50593,21.80796],[83.49291,21.81837],[83.49374,21.813],[83.4878,21.80731],[83.48712,21.80036],[83.48365,21.79419],[83.47761,21.79083],[83.47547,21.79126],[83.47279,21.78747],[83.46939,21.78756],[83.47617,21.78078],[83.48218,21.7656],[83.47605,21.75238],[83.48744,21.74895],[83.48932,21.74539],[83.4852,21.74517],[83.48018,21.73396],[83.4813,21.73113],[83.47784,21.73054],[83.47336,21.72064],[83.46106,21.70909],[83.45948,21.69855],[83.4517,21.69542],[83.44077,21.6989],[83.43165,21.69991],[83.42882,21.69462],[83.42483,21.69248],[83.42287,21.68884],[83.42385,21.68721],[83.42216,21.68705],[83.41869,21.68065],[83.43127,21.67421],[83.44248,21.66129],[83.44813,21.65754],[83.46976,21.64873],[83.48661,21.64413],[83.48714,21.6399],[83.49193,21.63818],[83.48955,21.63487],[83.48961,21.63146],[83.48619,21.63009],[83.47356,21.63249],[83.47349,21.62737],[83.46986,21.62154],[83.46627,21.60955],[83.4606,21.6078],[83.45611,21.61],[83.45506,21.61241],[83.45227,21.61287],[83.45247,21.62241],[83.44397,21.624],[83.44463,21.63043],[83.44292,21.63142],[83.44438,21.63929],[83.45076,21.65075],[83.44265,21.65541],[83.42884,21.64723],[83.42757,21.64352],[83.41504,21.6408],[83.40907,21.6372],[83.40347,21.63094],[83.39559,21.62709],[83.39246,21.62729],[83.38943,21.61769],[83.38268,21.62013],[83.38304,21.61426],[83.38014,21.60813],[83.36966,21.60051],[83.37051,21.59126],[83.36774,21.59172],[83.36893,21.58898],[83.36694,21.58666],[83.36895,21.585],[83.36497,21.57608],[83.36775,21.57209],[83.36748,21.56874],[83.36989,21.56806],[83.3693,21.56668],[83.37186,21.56442],[83.37033,21.55875],[83.37187,21.5596],[83.37316,21.55816],[83.36978,21.55646],[83.36999,21.55252],[83.36598,21.55081],[83.36766,21.54932],[83.3662,21.54663],[83.36451,21.54704],[83.36427,21.545],[83.36014,21.54285],[83.3614,21.53916],[83.35866,21.53824],[83.35709,21.52808],[83.35204,21.52115],[83.34962,21.51265],[83.34304,21.50965],[83.33788,21.5021],[83.34061,21.49517],[83.34706,21.48898],[83.34574,21.47962],[83.34655,21.4716],[83.35147,21.46003],[83.35437,21.44807],[83.36686,21.44555],[83.37362,21.44239],[83.37124,21.43551],[83.37428,21.43498],[83.37587,21.42806],[83.37815,21.42683],[83.38529,21.41537],[83.39346,21.40771],[83.39893,21.40534],[83.3972,21.38803],[83.40051,21.37588],[83.39687,21.36756],[83.40062,21.36391],[83.40802,21.36137],[83.40675,21.35142],[83.39183,21.34264],[83.38549,21.3463],[83.37888,21.34455],[83.36977,21.34671],[83.36686,21.34936],[83.35461,21.35429],[83.34772,21.35375],[83.34718,21.35629],[83.34385,21.35836],[83.32297,21.3624],[83.31137,21.37084],[83.28606,21.37761],[83.28405,21.38033],[83.26873,21.37859],[83.27424,21.37729],[83.27469,21.36383],[83.26868,21.34549],[83.2578,21.33555],[83.25769,21.3336],[83.26653,21.33086],[83.26283,21.33027],[83.25734,21.3205],[83.26208,21.30783],[83.26883,21.30507],[83.27205,21.30188],[83.27629,21.3023],[83.27927,21.29496],[83.27859,21.28932],[83.27491,21.28581],[83.2713,21.27294],[83.26908,21.27406],[83.26777,21.27756],[83.25583,21.28212],[83.25059,21.28238],[83.24627,21.28116],[83.23933,21.27363],[83.23796,21.26961],[83.23191,21.27272],[83.22295,21.26577],[83.22167,21.26007],[83.21765,21.25485],[83.22215,21.22872],[83.2189,21.22861],[83.21758,21.22597],[83.21857,21.22089],[83.21706,21.21331],[83.21275,21.2102],[83.21053,21.20504],[83.21462,21.19479],[83.20933,21.18945],[83.20511,21.17943],[83.20284,21.17764],[83.20462,21.1657],[83.19852,21.16426],[83.19836,21.15346],[83.19656,21.15143],[83.1981,21.14544],[83.19136,21.13869],[83.17816,21.1352],[83.17104,21.13617],[83.16691,21.13879],[83.16464,21.13523],[83.15733,21.13107],[83.14743,21.11856],[83.13893,21.11333],[83.14065,21.11234],[83.13867,21.10951],[83.13149,21.10581],[83.1241,21.1067],[83.1216,21.1099],[83.11354,21.11266],[83.10128,21.10999],[83.09709,21.11016],[83.09442,21.11328],[83.09011,21.11113],[83.0849,21.11295],[83.07781,21.11195],[83.07725,21.11407],[83.075,21.11365],[83.06851,21.11685],[83.06611,21.12076],[83.05603,21.12231],[83.05233,21.12627],[83.04525,21.12401],[83.03865,21.13173],[83.03383,21.13193],[83.03482,21.13663],[83.03338,21.1373],[83.02891,21.13513],[83.02304,21.13656],[83.0203,21.14346],[83.016,21.14631],[83.01005,21.14474],[83.01013,21.14257],[83.00458,21.13696],[83.00155,21.13687],[82.99936,21.13891],[82.99545,21.13853],[82.99373,21.14084],[82.99039,21.13981],[82.98576,21.15104],[82.9924,21.15856],[82.99332,21.16189],[83.00376,21.16693],[83.00135,21.17057],[82.99652,21.16968],[82.99319,21.17111],[82.98607,21.16811],[82.98056,21.17003],[82.99,21.18183],[82.98809,21.18281],[82.98325,21.18006],[82.97787,21.18258],[82.97534,21.18215],[82.97001,21.17886],[82.96739,21.17484],[82.96556,21.17533],[82.96743,21.18307],[82.96493,21.19327],[82.96099,21.19266],[82.95916,21.18888],[82.94903,21.1839],[82.94384,21.17785],[82.94682,21.1755],[82.94286,21.17164],[82.94757,21.16453],[82.94768,21.16178],[82.93998,21.16093],[82.93996,21.16635],[82.9377,21.16985],[82.93497,21.16833],[82.93387,21.16399],[82.93225,21.16308],[82.92094,21.16347],[82.91498,21.16196],[82.91022,21.1652],[82.90211,21.16699],[82.89548,21.16098],[82.89393,21.15637],[82.88218,21.14843],[82.87818,21.15345],[82.87852,21.15858],[82.87636,21.16355],[82.87255,21.16238],[82.8717,21.15748],[82.86643,21.16282],[82.85959,21.15977],[82.8556,21.16147],[82.85246,21.15954],[82.8501,21.16161],[82.85088,21.16863],[82.8471,21.16653],[82.84276,21.16772],[82.83126,21.16467],[82.82802,21.16544],[82.826,21.16368],[82.81197,21.16107],[82.80502,21.15592],[82.80032,21.15595],[82.79622,21.15065],[82.79666,21.14865],[82.79368,21.14255],[82.78564,21.14487],[82.78077,21.14967],[82.7794,21.15358],[82.77435,21.15413],[82.76713,21.15901],[82.76782,21.16056],[82.76504,21.16173],[82.76581,21.16278],[82.76334,21.16409],[82.76298,21.16262],[82.7601,21.1652],[82.7575,21.16355],[82.75591,21.16643],[82.75001,21.16411],[82.74057,21.16347],[82.73683,21.16533],[82.72115,21.16585],[82.72119,21.15767],[82.71067,21.16085],[82.70526,21.15808],[82.69983,21.1577],[82.69573,21.16053],[82.69708,21.1642],[82.693,21.16574],[82.68554,21.16497],[82.68415,21.16106],[82.66405,21.155],[82.65549,21.15714],[82.64061,21.15487],[82.63722,21.15073],[82.63727,21.14474],[82.64395,21.13487],[82.65198,21.13325],[82.65276,21.12871],[82.64191,21.12007],[82.63974,21.11574],[82.64215,21.11122],[82.64845,21.10956],[82.64991,21.10647],[82.64582,21.1],[82.63733,21.09319],[82.63389,21.08776],[82.63311,21.08319],[82.62964,21.07882],[82.61651,21.07918],[82.61198,21.07469],[82.61186,21.06919],[82.61725,21.05986],[82.61788,21.05468],[82.6261,21.04854],[82.62979,21.04094],[82.62879,21.03804],[82.61333,21.02285],[82.61136,21.01297],[82.58878,20.99355],[82.58051,20.97973],[82.57138,20.97226],[82.55915,20.94794],[82.54303,20.93661],[82.52711,20.934],[82.51594,20.92176],[82.50443,20.91959],[82.48874,20.9094],[82.48699,20.90504],[82.49107,20.88063],[82.48598,20.87028],[82.48668,20.86165],[82.48108,20.85131],[82.47044,20.84808],[82.46539,20.84295],[82.46878,20.83518],[82.46449,20.829],[82.45437,20.82765],[82.44902,20.83101],[82.44728,20.82996],[82.44367,20.831],[82.44353,20.83437],[82.43934,20.83564],[82.42731,20.83155],[82.41995,20.83156],[82.41673,20.83866],[82.4101,20.84229],[82.40995,20.8456],[82.41287,20.85086],[82.40685,20.85928],[82.40751,20.86576],[82.40545,20.87019],[82.39557,20.87003],[82.38924,20.87409],[82.38967,20.87532],[82.38505,20.87409],[82.37592,20.86798],[82.36461,20.87067],[82.35947,20.87381],[82.36376,20.88849],[82.35119,20.88974],[82.34676,20.87704],[82.34446,20.85637],[82.33953,20.84684],[82.34157,20.83283],[82.33934,20.82577],[82.34102,20.82083],[82.34112,20.81249],[82.34317,20.80893],[82.34202,20.80472],[82.34611,20.79763],[82.34386,20.79223],[82.34364,20.77095],[82.34171,20.76776],[82.35355,20.73592],[82.34556,20.73159],[82.35401,20.71966],[82.35076,20.71728],[82.35041,20.70634],[82.355,20.69319],[82.36034,20.68356],[82.36705,20.68019],[82.37382,20.6674],[82.36875,20.65959],[82.36997,20.65556],[82.36848,20.64923],[82.37467,20.63907],[82.3765,20.63241],[82.37095,20.62599],[82.36452,20.62218],[82.36543,20.61588],[82.36292,20.61412],[82.36226,20.60991],[82.35865,20.60848],[82.3559,20.60925],[82.35256,20.60298],[82.34713,20.60254],[82.34485,20.59848],[82.3457,20.59656],[82.34374,20.59577],[82.34408,20.59289],[82.34679,20.5906],[82.35064,20.58127],[82.34836,20.5764],[82.34335,20.57152],[82.33337,20.56855],[82.33488,20.5646],[82.33223,20.56191],[82.3357,20.5551],[82.34861,20.54667],[82.35765,20.52933],[82.36806,20.52386],[82.37825,20.52203],[82.3897,20.5176],[82.388,20.51073],[82.38953,20.49801],[82.38834,20.49536],[82.39109,20.49243],[82.3906,20.48619],[82.39316,20.48643],[82.39374,20.4825],[82.39203,20.47869],[82.39608,20.47766],[82.39784,20.47295],[82.39764,20.46484],[82.39478,20.46229],[82.39606,20.45957],[82.39798,20.46192],[82.40191,20.46193],[82.40427,20.46005],[82.40855,20.46324],[82.40798,20.46733],[82.41079,20.46813],[82.4158,20.48151],[82.41763,20.48174],[82.42706,20.46906],[82.42573,20.44533],[82.43398,20.44567],[82.43786,20.43439],[82.42966,20.42787],[82.43201,20.41664],[82.41661,20.40765],[82.42117,20.39285],[82.41769,20.38772],[82.41805,20.38211],[82.4112,20.37129],[82.40915,20.36293],[82.40505,20.35804],[82.40627,20.35299],[82.40038,20.34158],[82.40151,20.33758],[82.40916,20.33253],[82.40887,20.32778],[82.41295,20.328],[82.41737,20.32425],[82.42104,20.32411],[82.43077,20.31402],[82.42998,20.30099],[82.43781,20.29441],[82.43557,20.28548],[82.43287,20.28181],[82.42503,20.27522],[82.41596,20.27205],[82.41234,20.26704],[82.41139,20.26011],[82.41601,20.25728],[82.41778,20.25232],[82.42233,20.24797],[82.41123,20.24538],[82.41063,20.24265],[82.41507,20.22681],[82.42247,20.22082],[82.42048,20.21308],[82.42062,20.20492],[82.41347,20.19935],[82.41408,20.18986],[82.41158,20.18149],[82.40754,20.18123],[82.40453,20.17787],[82.40471,20.17598],[82.39491,20.17012],[82.39001,20.1637],[82.39374,20.15704],[82.39415,20.15263],[82.3872,20.14905],[82.3858,20.14644],[82.39315,20.13761],[82.39423,20.12992],[82.39767,20.12377],[82.39818,20.10169],[82.40143,20.09607],[82.39976,20.0898],[82.40149,20.08102],[82.39583,20.06897],[82.39839,20.06269],[82.39829,20.05818],[82.40954,20.05179],[82.41682,20.05215],[82.43003,20.04961],[82.44052,20.04318],[82.44801,20.04066],[82.45753,20.03997],[82.46067,20.0419],[82.47001,20.03591],[82.47857,20.03817],[82.49373,20.02437],[82.50911,20.01816],[82.53318,20.0153],[82.53445,20.01785],[82.55011,20.01777],[82.57734,20.00672],[82.58328,20.00318],[82.59034,19.99373],[82.59573,19.99157],[82.60502,19.99014],[82.62114,19.9923],[82.6333,20.00487],[82.64151,20.00671],[82.64298,20.00641],[82.64271,20.00366],[82.65198,20.00589],[82.67012,20.00108],[82.69267,20.0],[82.69958,19.99757],[82.70727,19.99905],[82.71545,19.99593],[82.71575,19.99227],[82.71814,19.98914],[82.71752,19.96555],[82.71472,19.95767],[82.71552,19.95363],[82.72049,19.94829],[82.71307,19.93846],[82.71118,19.92545],[82.71276,19.91852],[82.70737,19.91299],[82.70909,19.9056],[82.70741,19.90204],[82.71355,19.88344],[82.71405,19.87781],[82.72458,19.87554],[82.72173,19.87292],[82.71959,19.86743],[82.71979,19.85685],[82.71816,19.85359],[82.7114,19.85063],[82.71293,19.84481],[82.7114,19.84],[82.70555,19.83302],[82.69671,19.83061],[82.67802,19.83212],[82.66592,19.83039],[82.65216,19.83217],[82.6476,19.81954],[82.64175,19.81454],[82.63663,19.81293],[82.63282,19.80119],[82.62713,19.79366],[82.60378,19.78812],[82.60215,19.78112],[82.59529,19.77847],[82.59489,19.77529],[82.59181,19.77586],[82.58348,19.7788],[82.58359,19.78164],[82.58177,19.78321],[82.58449,19.78825],[82.5827,19.795],[82.58469,19.80235],[82.57599,19.80822],[82.57858,19.81108],[82.5762,19.81474],[82.57853,19.81801],[82.57914,19.82354],[82.57777,19.82498],[82.5794,19.83032],[82.57604,19.82892],[82.57579,19.83339],[82.57974,19.84011],[82.5839,19.84358],[82.58863,19.84338],[82.58772,19.84868],[82.59062,19.84892],[82.59041,19.85245],[82.59687,19.8552],[82.59589,19.85814],[82.6002,19.86019],[82.60343,19.86699],[82.59616,19.87298],[82.58289,19.86942],[82.57302,19.87755],[82.56104,19.87433],[82.55596,19.88066],[82.54839,19.8757],[82.54214,19.88348],[82.53491,19.88689],[82.53142,19.87824],[82.5233,19.88308],[82.51912,19.89097],[82.5118,19.88813],[82.50547,19.88986],[82.50287,19.89447],[82.5049,19.89972],[82.49734,19.90413],[82.49161,19.90345],[82.48417,19.90791],[82.4729,19.90703],[82.47228,19.90158],[82.46422,19.90085],[82.45217,19.90871],[82.44599,19.91019],[82.43711,19.90494],[82.43335,19.90556],[82.43006,19.90401],[82.4262,19.90546],[82.41802,19.90407],[82.41858,19.89985],[82.41196,19.89851],[82.40524,19.89426],[82.40178,19.88994],[82.39487,19.88802],[82.39248,19.88205],[82.38295,19.87386],[82.38365,19.86988],[82.3752,19.85964],[82.36085,19.8628],[82.36041,19.85731],[82.36463,19.85469],[82.36446,19.85101],[82.36142,19.85075],[82.3537,19.84031],[82.34829,19.83613],[82.34424,19.83502],[82.3307,19.84485],[82.32634,19.86161],[82.30312,19.88939],[82.30159,19.90271],[82.27581,19.94859],[82.27487,19.96304],[82.26917,19.97526],[82.25625,19.98345],[82.25001,19.98906],[82.2462,19.99535],[82.23712,20.00333],[82.22929,19.99982],[82.21671,19.99706],[82.2101,19.98625],[82.1931,19.9871],[82.18425,19.98419],[82.18519,19.9873],[82.18347,19.98959],[82.18033,19.99114],[82.17691,19.99731],[82.17478,19.99675],[82.17369,19.99996],[82.17125,20.00078],[82.17123,20.00551],[82.16058,20.00912],[82.15347,20.00756],[82.13981,20.01873],[82.13633,20.01893],[82.12849,20.0142],[82.12679,20.0148],[82.11652,20.02116],[82.11018,20.02752],[82.10695,20.02725],[82.10547,20.0306],[82.1032,20.03107],[82.10383,20.03569],[82.10213,20.03629],[82.10228,20.04004],[82.08946,20.03906],[82.0864,20.04524],[82.08459,20.04605],[82.08543,20.05072],[82.07047,20.05695],[82.06354,20.05453],[82.06296,20.05204],[82.06065,20.05113],[82.06219,20.04922],[82.05901,20.04775],[82.05909,20.04498],[82.0564,20.04174],[82.04782,20.03672],[82.04815,20.03482],[82.04297,20.03491],[82.04121,20.03096],[82.03804,20.03012],[82.03734,20.02795],[82.04,20.0226],[82.03256,20.01572],[82.02155,20.02371],[82.02272,20.03215],[82.01768,20.049],[82.01227,20.05391],[82.00575,20.05561],[82.00325,20.05513],[82.00337,20.05334],[81.99534,20.05357],[81.98739,20.06133],[81.98416,20.06803],[81.98386,20.07324],[81.97589,20.08171],[81.96333,20.09045],[81.95815,20.09785],[81.94638,20.10513],[81.93852,20.10156],[81.93713,20.10235],[81.93384,20.09821],[81.93387,20.09604],[81.92601,20.09173],[81.92276,20.08716],[81.92138,20.07997],[81.91606,20.07198],[81.90144,20.05791],[81.89528,20.04824],[81.8873,20.04402],[81.88191,20.04434],[81.87598,20.05206],[81.86943,20.04126],[81.86882,20.03191],[81.86503,20.0267],[81.86654,20.01105],[81.86057,20.00351],[81.85536,19.97228],[81.84505,19.95782],[81.84502,19.95184],[81.8568,19.94754],[81.85181,19.92315],[81.85316,19.91848],[81.86965,19.90254],[81.89968,19.8872],[81.94106,19.87288],[81.96813,19.85989],[81.96537,19.8369],[81.98656,19.80428],[81.98595,19.80109],[81.99191,19.79959],[81.99537,19.79682],[82.00368,19.80257],[82.00989,19.80422],[82.03105,19.79781],[82.04868,19.79696],[82.05298,19.79229],[82.0564,19.79302],[82.05636,19.79485],[82.06022,19.79637],[82.06239,19.79254],[82.06555,19.79066],[82.06623,19.78315],[82.06047,19.76663],[82.06361,19.75902],[82.05598,19.75297],[82.05564,19.74998],[82.0504,19.74581],[82.05094,19.73642],[82.04924,19.72872],[82.05102,19.71909],[82.04475,19.70888],[82.04459,19.70053],[82.0491,19.68493],[82.05187,19.68047],[82.05532,19.66566],[82.05362,19.66539],[82.05194,19.66095],[82.05551,19.65446],[82.05351,19.6528],[82.05192,19.64657],[82.05473,19.6405],[82.05701,19.63951],[82.05646,19.63312],[82.05902,19.62818],[82.0561,19.62596],[82.05571,19.6231],[82.05061,19.61677],[82.05066,19.60808],[82.04627,19.60728],[82.03988,19.59764],[82.04048,19.59164],[82.04337,19.589],[82.04465,19.58178],[82.04875,19.57827],[82.04985,19.57403],[82.04811,19.56913],[82.04949,19.56841],[82.04551,19.56053],[82.05071,19.54882],[82.04749,19.53965],[82.04772,19.53345],[82.04647,19.53397],[82.04326,19.52986],[82.03988,19.53018],[82.03729,19.52825],[82.03643,19.51978],[82.03406,19.51453],[82.03185,19.51453],[82.03156,19.51104],[82.02908,19.50775],[82.03851,19.50913],[82.05134,19.50816],[82.06542,19.51057],[82.07603,19.52363],[82.10025,19.51659],[82.09797,19.49893],[82.10796,19.49428],[82.10734,19.47504],[82.10282,19.46611],[82.11342,19.46036],[82.11353,19.44826],[82.12614,19.42909],[82.1273,19.43051],[82.13525,19.43038],[82.13524,19.43178],[82.17149,19.43719],[82.17819,19.43661],[82.18619,19.42665],[82.18944,19.42753],[82.18927,19.41536],[82.1852,19.41369],[82.18244,19.40943],[82.18208,19.40293],[82.18431,19.40049],[82.18074,19.39241],[82.18225,19.38874],[82.18099,19.38618],[82.18183,19.3842],[82.178,19.3825],[82.17883,19.37905],[82.17553,19.37664],[82.17353,19.37717],[82.17192,19.37262],[82.16661,19.37277],[82.16219,19.37436],[82.16004,19.37707],[82.15648,19.3773],[82.15327,19.37702],[82.15135,19.37331],[82.14774,19.37182],[82.14896,19.36953],[82.14725,19.36549],[82.14839,19.36491],[82.14878,19.35298],[82.15244,19.35274],[82.15413,19.3498],[82.165,19.34899],[82.16904,19.34598],[82.17866,19.34337],[82.17789,19.34005],[82.18604,19.33741],[82.18789,19.33476],[82.18801,19.32892],[82.19013,19.32676],[82.19412,19.32594],[82.18122,19.32339],[82.17917,19.31897],[82.17668,19.29948],[82.17441,19.29453],[82.16594,19.28769],[82.15843,19.26517],[82.15784,19.2275],[82.15942,19.22296],[82.16877,19.21294],[82.16582,19.21145],[82.16171,19.20225],[82.16758,19.19526],[82.18046,19.19168],[82.17514,19.18182],[82.18106,19.17858],[82.18205,19.17416],[82.17671,19.17347],[82.17604,19.17208],[82.17811,19.16937],[82.18395,19.16849],[82.18614,19.16635],[82.1822,19.15929],[82.17753,19.15567],[82.17874,19.15964],[82.17492,19.16288],[82.17018,19.16116],[82.1713,19.15653],[82.17721,19.15561],[82.17768,19.15251],[82.18093,19.15082],[82.17656,19.14921],[82.17154,19.15021],[82.16983,19.14525],[82.17574,19.13866],[82.16682,19.1361],[82.1661,19.1327],[82.16921,19.12805],[82.17033,19.12041],[82.17361,19.11841],[82.17686,19.11857],[82.18247,19.13169],[82.19058,19.1289],[82.19739,19.12164],[82.20582,19.12413],[82.209,19.12052],[82.20581,19.11694],[82.20633,19.11507],[82.20298,19.10811],[82.20518,19.107],[82.20735,19.10228],[82.20499,19.10115],[82.20491,19.09714],[82.20648,19.0964],[82.20971,19.09968],[82.21294,19.09798],[82.21414,19.09985],[82.21842,19.09727],[82.21855,19.09302],[82.21495,19.08599],[82.20472,19.0756],[82.20225,19.06664],[82.22988,19.02741],[82.23276,19.01794],[82.23911,18.96229],[82.24605,18.91911],[82.23696,18.91423],[82.23091,18.91967],[82.22728,18.91904],[82.2183,18.92252],[82.20085,18.91359],[82.19251,18.90751],[82.18109,18.90694],[82.17615,18.90267],[82.17516,18.89161],[82.17666,18.88709],[82.16932,18.88189],[82.16506,18.88322],[82.16041,18.87891],[82.16104,18.87713],[82.16737,18.87362],[82.16509,18.86487],[82.1602,18.8614],[82.16303,18.85415],[82.16747,18.85235],[82.16574,18.84387],[82.16896,18.83602],[82.16029,18.81987],[82.16615,18.81407],[82.16137,18.81252],[82.1602,18.80807],[82.15652,18.80433],[82.16453,18.80192],[82.16544,18.79862],[82.16017,18.79523],[82.1608,18.78992],[82.15736,18.78548],[82.15217,18.7853],[82.14738,18.78097],[82.14057,18.77846],[82.13842,18.77837],[82.13567,18.78148],[82.13349,18.78045],[82.13133,18.77011],[82.13362,18.76811],[82.13342,18.76536],[82.12082,18.76975],[82.11536,18.76901],[82.11101,18.76588],[82.10576,18.76731],[82.09782,18.76384],[82.09158,18.76573],[82.08874,18.76019],[82.09258,18.75268],[82.09352,18.74681],[82.08769,18.73113],[82.08836,18.72977],[82.08606,18.72795],[82.08688,18.72142],[82.08497,18.71859],[82.07653,18.72211],[82.07456,18.72462],[82.06742,18.7265],[82.06505,18.72007],[82.06277,18.71902],[82.05877,18.71934],[82.05609,18.7229],[82.05365,18.72361],[82.04812,18.7214],[82.04021,18.72391],[82.03092,18.72379],[82.02815,18.72121],[82.01674,18.7195],[82.00879,18.71255],[82.00583,18.71465],[81.99992,18.71108],[81.99859,18.70691],[81.99473,18.70468],[81.9889,18.70528],[81.97098,18.69864],[81.96294,18.68898],[81.96075,18.68863],[81.96915,18.67339],[81.9616,18.67028],[81.95508,18.66422],[81.95279,18.65954],[81.95316,18.65404],[81.94894,18.64371],[81.94303,18.64317],[81.93637,18.6448],[81.92173,18.64291],[81.91526,18.6513],[81.90089,18.66137],[81.89835,18.65854],[81.89377,18.65746],[81.89501,18.65445],[81.8982,18.65441],[81.89405,18.64228],[81.89887,18.63523],[81.89521,18.63282],[81.89459,18.62954],[81.90848,18.62856],[81.93014,18.61858],[81.93515,18.61265],[81.93506,18.60736],[81.93693,18.60557],[81.94429,18.60075],[81.95098,18.60095],[81.96085,18.59662],[81.9634,18.5941],[81.96364,18.59044],[81.95984,18.58948],[81.95607,18.58393],[81.95291,18.58282],[81.95331,18.57671],[81.95051,18.57485],[81.95057,18.57002],[81.94508,18.57014],[81.9381,18.5666],[81.92971,18.56613],[81.92678,18.56673],[81.92084,18.57269],[81.91777,18.5708],[81.91557,18.57281],[81.91069,18.57063],[81.91036,18.56577],[81.90592,18.56455],[81.9057,18.56307],[81.90862,18.553],[81.90141,18.54861],[81.90587,18.54516],[81.90901,18.53807],[81.8979,18.53509],[81.88927,18.53816],[81.87968,18.52524],[81.86825,18.52492],[81.85699,18.50743],[81.85611,18.50092],[81.85783,18.49477],[81.85621,18.4914],[81.79502,18.44072],[81.76887,18.41709],[81.75006,18.35275],[81.65914,18.34656],[81.65087,18.34062],[81.64966,18.3369],[81.65192,18.33254],[81.66217,18.32498],[81.66223,18.32123],[81.65132,18.32153],[81.64452,18.31818],[81.63965,18.31794],[81.62811,18.31384],[81.61653,18.30735],[81.60054,18.30969],[81.5976,18.30891],[81.5929,18.30071],[81.58551,18.29643],[81.57346,18.28264],[81.56433,18.2752],[81.55084,18.2693],[81.54128,18.27006],[81.53527,18.26838],[81.52524,18.25771],[81.52464,18.25586],[81.52766,18.25094],[81.53045,18.24028],[81.52593,18.23355],[81.52426,18.22751],[81.51992,18.22199],[81.51983,18.21766],[81.51552,18.21324],[81.51326,18.20054],[81.50941,18.19457],[81.507,18.1862],[81.50992,18.17949],[81.51776,18.17546],[81.52373,18.16589],[81.526,18.16042],[81.52582,18.1534],[81.52413,18.15081],[81.51832,18.14816],[81.51382,18.14054],[81.51289,18.13575],[81.51509,18.12276],[81.51286,18.09869],[81.49963,18.07985],[81.4966,18.07095],[81.49069,18.06284],[81.48264,18.05567],[81.48041,18.05074],[81.48015,18.03369],[81.48312,18.02705],[81.47991,18.00439],[81.48028,17.99779],[81.47762,17.98841],[81.48295,17.97682],[81.47609,17.96934],[81.47211,17.9605],[81.45984,17.95295],[81.45291,17.93637],[81.44911,17.93193],[81.44992,17.92403],[81.45337,17.91463],[81.45282,17.90756],[81.4475,17.89849],[81.44811,17.88974],[81.44463,17.88575],[81.43534,17.88082],[81.4126,17.89462],[81.40519,17.89619],[81.4002,17.89357],[81.39548,17.88321],[81.39427,17.86928],[81.40382,17.85301],[81.40326,17.84943],[81.39586,17.83734],[81.38907,17.82992],[81.38857,17.82315],[81.39181,17.81542],[81.39655,17.82023],[81.40165,17.82095],[81.41016,17.81859],[81.41397,17.81359],[81.4156,17.81342],[81.42582,17.82191],[81.43048,17.83006],[81.43412,17.83193],[81.43672,17.83162],[81.44088,17.82533],[81.44419,17.82497],[81.46011,17.82957],[81.46905,17.83622],[81.47426,17.83798],[81.47732,17.83588],[81.48018,17.83043],[81.48152,17.82358],[81.48535,17.82059],[81.48627,17.81434],[81.49005,17.81269],[81.49534,17.81255],[81.50478,17.81629],[81.51841,17.81626],[81.53018,17.82291],[81.53781,17.82159],[81.54684,17.82472],[81.56369,17.82571],[81.57039,17.83531],[81.57432,17.83717],[81.59419,17.83404],[81.60689,17.82583],[81.61723,17.8223],[81.62235,17.83345],[81.63015,17.83202],[81.64171,17.84132],[81.65202,17.8561],[81.65431,17.86908],[81.66219,17.8816],[81.66973,17.88655],[81.67452,17.88818],[81.6861,17.8853],[81.69475,17.89872],[81.69853,17.90135],[81.70123,17.89948],[81.70222,17.89627],[81.70113,17.88795],[81.70411,17.88271],[81.70436,17.87768],[81.70917,17.872],[81.72562,17.87886],[81.76467,17.90334],[81.76881,17.90688],[81.77138,17.91246],[81.77841,17.91284],[81.79013,17.92081],[81.79349,17.92548],[81.7947,17.93294],[81.79707,17.93728],[81.80989,17.95098],[81.81911,17.95169],[81.83099,17.95793],[81.84323,17.95696],[81.86649,17.96329],[81.88175,17.96883],[81.89337,17.97624],[81.90518,17.97732],[81.90903,17.98422],[81.91991,17.99121],[81.93657,17.99028],[81.94602,17.99575],[81.96297,17.99925],[81.96894,18.00598],[81.97606,18.01047],[81.98251,18.01813],[81.99127,18.01951],[81.99427,18.02731],[82.00177,18.03002],[82.00935,18.03007],[82.01166,18.03524],[82.00673,18.0451],[82.00623,18.05297],[82.00767,18.05669],[82.0062,18.05772],[82.00768,18.05669],[82.02028,18.0635],[82.02708,18.06403],[82.03232,18.06932],[82.03758,18.06698],[82.04044,18.05731],[82.05042,18.05814],[82.06156,18.05545],[82.06695,18.05739],[82.07082,18.06909],[82.07664,18.07522],[82.08709,18.06893],[82.09609,18.06743],[82.0964,18.0634],[82.10203,18.06024],[82.10787,18.06326],[82.11365,18.06123],[82.12063,18.06423],[82.12498,18.05967],[82.13349,18.05989],[82.13718,18.04394],[82.14483,18.04885],[82.14678,18.05231],[82.15084,18.04994],[82.15536,18.05374],[82.15084,18.04994],[82.15321,18.04787],[82.15827,18.05034],[82.16884,18.05195],[82.18432,18.02879],[82.17862,18.02039],[82.18354,18.0191],[82.1878,18.01473],[82.19737,18.01774],[82.20531,18.01837],[82.2046,18.01501],[82.2082,18.01044],[82.22346,18.0013],[82.23724,18.00255],[82.24405,17.99838],[82.24796,17.99778],[82.25886,17.99771],[82.26801,18.0],[82.27355,18.02134],[82.26901,18.03402],[82.26161,18.04185],[82.26894,18.04519],[82.26961,18.05194],[82.27261,18.05722],[82.27698,18.0582],[82.28349,18.0645],[82.28787,18.0629],[82.29039,18.06706],[82.28309,18.07334],[82.29039,18.06706],[82.29138,18.06891],[82.29615,18.06705],[82.3007,18.06925],[82.3044,18.06812],[82.3038,18.06528],[82.30012,18.06321],[82.29865,18.05557],[82.30617,18.05571],[82.31033,18.05393],[82.30726,18.05005],[82.30818,18.04491],[82.31658,18.04744],[82.32036,18.04498],[82.32223,18.04862],[82.31897,18.05707],[82.32225,18.05991],[82.33002,18.05809],[82.33214,18.05511],[82.33199,18.05246],[82.33414,18.05133],[82.34074,18.05479],[82.34388,18.05799],[82.34708,18.06995],[82.35178,18.07659],[82.34732,18.07998],[82.34958,18.08563],[82.347,18.09825],[82.3385,18.09911],[82.33579,18.10586],[82.33567,18.11375],[82.33377,18.11925],[82.33616,18.12415],[82.3342,18.12686],[82.34209,18.13662],[82.33868,18.14417],[82.33976,18.14983],[82.35493,18.14247],[82.35963,18.13629],[82.36325,18.13481],[82.36753,18.13716],[82.36875,18.14317],[82.37232,18.14816],[82.35912,18.1627],[82.35337,18.17169],[82.34617,18.17292],[82.33737,18.17218],[82.31545,18.18403],[82.31248,18.19135],[82.31354,18.19715],[82.31084,18.20409],[82.32489,18.21041],[82.32843,18.21608],[82.33706,18.2243],[82.33144,18.22513],[82.32441,18.23121],[82.32674,18.23638],[82.33653,18.24077],[82.33586,18.25],[82.33354,18.25107],[82.33336,18.25291],[82.33612,18.26117],[82.34005,18.26234],[82.34044,18.27223],[82.34467,18.28055],[82.35894,18.28146],[82.3659,18.27761],[82.3765,18.28068],[82.37831,18.28434],[82.38089,18.28544],[82.39234,18.29795],[82.39157,18.3098],[82.39506,18.31564],[82.39237,18.32648],[82.38466,18.32963],[82.37807,18.32706],[82.37509,18.32869],[82.36753,18.32371],[82.364,18.31846],[82.35791,18.31615],[82.3522,18.31735],[82.34948,18.31637],[82.33993,18.32296],[82.33318,18.33896],[82.33748,18.3281],[82.3405,18.32821],[82.34409,18.33079],[82.34694,18.32883],[82.36311,18.34422],[82.36449,18.35277],[82.36818,18.35386],[82.36988,18.35851],[82.37682,18.35984],[82.38555,18.36751],[82.38402,18.3845],[82.38607,18.38627],[82.38148,18.38964],[82.37962,18.4038],[82.37522,18.40634],[82.37093,18.41425],[82.36421,18.42154],[82.37574,18.43003],[82.382,18.43258],[82.38555,18.44083],[82.37999,18.43737],[82.38554,18.44083],[82.38768,18.44596],[82.39603,18.44917],[82.3968,18.45421],[82.40352,18.46422],[82.41497,18.47443],[82.42254,18.47805],[82.43743,18.49381],[82.43774,18.49576],[82.43414,18.49696],[82.43404,18.49857],[82.43715,18.50094],[82.43861,18.50682],[82.4431,18.50877],[82.44475,18.51409],[82.46098,18.5255],[82.46412,18.53287],[82.46838,18.53464],[82.47347,18.54258],[82.48275,18.54872],[82.48898,18.54934],[82.4919,18.54763],[82.4935,18.54364],[82.49234,18.54179],[82.484,18.54332],[82.48134,18.54061],[82.48395,18.53545],[82.48759,18.53261],[82.48627,18.52805],[82.49405,18.52455],[82.50433,18.51387],[82.51228,18.51805],[82.52028,18.51759],[82.52597,18.51632],[82.53216,18.51099],[82.52698,18.50588],[82.52966,18.5013],[82.52649,18.49629],[82.52789,18.49386],[82.53199,18.49243],[82.53327,18.48828],[82.5283,18.48305],[82.52785,18.48065],[82.53189,18.48049],[82.53419,18.47773],[82.53084,18.47303],[82.52477,18.4717],[82.51945,18.46722],[82.51942,18.4656],[82.52389,18.46349],[82.52834,18.46421],[82.52739,18.45966],[82.53325,18.45866],[82.53726,18.44643],[82.53956,18.4436],[82.54447,18.44938],[82.54134,18.45416],[82.54237,18.45763],[82.54876,18.45305],[82.55258,18.45504],[82.55482,18.45448],[82.55659,18.44982],[82.5614,18.44849],[82.56095,18.44518],[82.55652,18.44297],[82.55815,18.43966],[82.55058,18.4333],[82.55201,18.42857],[82.54574,18.42752],[82.54562,18.4224],[82.54141,18.42191],[82.5433,18.41402],[82.54719,18.41429],[82.54709,18.41261],[82.53553,18.40617],[82.54088,18.39943],[82.55218,18.39791],[82.55533,18.39363],[82.56243,18.39996],[82.571,18.39467],[82.57583,18.39623],[82.58387,18.38673],[82.58863,18.39163],[82.5948,18.38923],[82.59644,18.38297],[82.59952,18.37979],[82.60152,18.37937],[82.60529,18.38203],[82.60612,18.37567],[82.60322,18.37265],[82.60573,18.37005],[82.60599,18.36606],[82.62123,18.35971],[82.61452,18.35091],[82.60204,18.35228],[82.60288,18.34435],[82.60854,18.34004],[82.6112,18.33371],[82.60894,18.32713],[82.60125,18.32534],[82.59488,18.32888],[82.58847,18.31788],[82.58389,18.31976],[82.58131,18.31517],[82.58517,18.30846],[82.59606,18.31028],[82.59647,18.30639],[82.59866,18.30419],[82.59467,18.29822],[82.5952,18.29184],[82.59102,18.28978],[82.59419,18.28697],[82.59406,18.2847],[82.59215,18.28035],[82.58805,18.2803],[82.58779,18.27606],[82.59678,18.27437],[82.59691,18.26479],[82.60422,18.26469],[82.60721,18.2614],[82.61385,18.25842],[82.62353,18.24632],[82.62755,18.24458],[82.63187,18.23926],[82.63768,18.2367],[82.64863,18.245],[82.65249,18.25],[82.65095,18.251],[82.64712,18.26223],[82.64228,18.26377],[82.64279,18.27155],[82.64854,18.27287],[82.65224,18.28114],[82.64382,18.28801],[82.64072,18.29623],[82.64265,18.30203],[82.65119,18.30186],[82.65494,18.29699],[82.65742,18.29607],[82.66225,18.2983],[82.66677,18.29803],[82.67632,18.30656],[82.68018,18.30335],[82.68442,18.30359],[82.69195,18.30764],[82.69452,18.31228],[82.70166,18.31064],[82.70938,18.31318],[82.70856,18.31584],[82.71502,18.32252],[82.72491,18.32453],[82.73427,18.32024],[82.73605,18.32311],[82.74098,18.32261],[82.73831,18.32695],[82.74287,18.32999],[82.74785,18.32897],[82.75064,18.33092],[82.75518,18.33019],[82.7563,18.33331],[82.75919,18.33403],[82.7581,18.33763],[82.75969,18.33961],[82.7633,18.33891],[82.76482,18.33616],[82.76845,18.33806],[82.77112,18.33758],[82.77409,18.34032],[82.77639,18.34924],[82.79056,18.36319],[82.78876,18.3718],[82.78478,18.38041],[82.78265,18.38189],[82.79386,18.38602],[82.79146,18.39614],[82.79383,18.40135],[82.79954,18.40675],[82.79549,18.40909],[82.78688,18.41071],[82.78743,18.41917],[82.78289,18.42261],[82.78216,18.43079],[82.79538,18.43971],[82.80314,18.44925],[82.81564,18.4509],[82.82322,18.44726],[82.8238,18.4435],[82.83122,18.44229],[82.83595,18.43929],[82.83638,18.43709],[82.84584,18.43375],[82.84863,18.42372],[82.85242,18.4192],[82.85641,18.42544],[82.8713,18.41846],[82.8764,18.42163],[82.88156,18.42068],[82.895,18.4241],[82.89778,18.4035],[82.89072,18.3905],[82.89341,18.38701],[82.89419,18.38157],[82.90192,18.37407],[82.91089,18.37295],[82.91308,18.36848],[82.91786,18.37528],[82.9222,18.37542],[82.92603,18.36814],[82.93973,18.36082],[82.95373,18.36157],[82.96011,18.36641],[82.96699,18.35893],[82.97047,18.36001],[82.98318,18.36644],[82.98219,18.36812],[82.98811,18.37766],[82.98728,18.37884],[82.99027,18.3806],[82.99208,18.37856],[82.99683,18.38552],[83.00528,18.38276],[83.01179,18.38864],[83.01598,18.38705],[83.02192,18.3917],[83.02579,18.38693],[83.02951,18.38609],[83.03222,18.3835],[83.03923,18.38345],[83.04308,18.37937],[83.05449,18.37999],[83.07705,18.40335],[83.07684,18.4054],[83.06425,18.40941],[83.05744,18.41937],[83.0655,18.42299],[83.06731,18.43009],[83.0634,18.43207],[83.05998,18.43696],[83.05856,18.43668],[83.0508,18.43413],[83.04598,18.42667],[83.04253,18.42423],[83.04313,18.42596],[83.03776,18.43454],[83.04094,18.44079],[83.03668,18.4427],[83.03289,18.44796],[83.02461,18.44846],[83.02095,18.45624],[83.03073,18.46627],[83.03765,18.46862],[83.05511,18.48561],[83.05521,18.49566],[83.05797,18.49684],[83.06048,18.50205],[83.06401,18.50228],[83.07507,18.51457],[83.07701,18.52615],[83.08364,18.53106],[83.08927,18.53891],[83.09353,18.53984],[83.09504,18.54664],[83.08951,18.55299],[83.08381,18.55166],[83.08094,18.55402],[83.07885,18.55039],[83.07124,18.54976],[83.06193,18.54205],[83.05496,18.54398],[83.04535,18.54418],[83.03843,18.55587],[83.03315,18.56979],[83.02976,18.57351],[83.03127,18.57785],[83.03766,18.58102],[83.04008,18.58648],[83.0531,18.58813],[83.05279,18.60068],[83.04672,18.59875],[83.04444,18.59947],[83.02759,18.59257],[83.02379,18.58965],[83.0188,18.59347],[83.01356,18.59436],[83.01269,18.59936],[83.01501,18.60209],[83.01521,18.60544],[83.00047,18.60798],[82.99957,18.61953],[83.00575,18.62169],[83.0089,18.62685],[83.01963,18.63512],[83.01313,18.64605],[83.01702,18.65022],[83.02264,18.65122],[83.025,18.65441],[83.04423,18.65844],[83.05802,18.66531],[83.06278,18.68363],[83.07501,18.70126],[83.07137,18.70164],[83.07279,18.70554],[83.09261,18.72353],[83.09477,18.73138],[83.10169,18.73275],[83.10761,18.74706],[83.11242,18.75281],[83.12221,18.7575],[83.12363,18.76052],[83.12114,18.76584],[83.11515,18.76809],[83.13903,18.78536],[83.15181,18.77607],[83.15228,18.77269],[83.15648,18.76823],[83.16415,18.7669],[83.16505,18.76894],[83.17791,18.77086],[83.19319,18.75312],[83.20655,18.75144],[83.20801,18.74912],[83.20737,18.74576],[83.21269,18.73758],[83.21128,18.73254],[83.21245,18.73049],[83.21464,18.73337],[83.21741,18.74445],[83.22537,18.75091],[83.22772,18.75524],[83.22813,18.76102],[83.22235,18.77277],[83.22461,18.77509],[83.2346,18.77406],[83.24325,18.76828],[83.25339,18.76756],[83.26255,18.76976],[83.27135,18.76464],[83.28137,18.7746],[83.27527,18.7829],[83.28434,18.79788],[83.29787,18.8017],[83.30931,18.8095],[83.3194,18.80477],[83.33062,18.80635],[83.32814,18.81213],[83.32825,18.81808],[83.33796,18.82436],[83.34777,18.82711],[83.34934,18.83013],[83.35868,18.83493],[83.36394,18.84228],[83.36815,18.84406],[83.37044,18.84291],[83.37174,18.83902],[83.37519,18.83635],[83.37833,18.83066],[83.40413,18.84299],[83.40588,18.84252],[83.40437,18.84756],[83.40487,18.86191],[83.41475,18.87496],[83.41024,18.87432],[83.40703,18.87715],[83.39881,18.87796],[83.39183,18.88229],[83.39151,18.88695],[83.38353,18.89036],[83.37833,18.89695],[83.38465,18.90386],[83.3932,18.90763],[83.38503,18.91332],[83.38181,18.91389],[83.37512,18.90897],[83.36901,18.90809],[83.36239,18.91476],[83.35983,18.91471],[83.3617,18.91599],[83.35914,18.91688],[83.35749,18.92392],[83.35343,18.9306],[83.35248,18.94346],[83.36098,18.94083],[83.37015,18.94172],[83.36919,18.92986],[83.3706,18.92604],[83.37735,18.92561],[83.38202,18.92729],[83.38738,18.93298],[83.38303,18.93694],[83.37128,18.94265],[83.36838,18.9533],[83.36584,18.95694],[83.3684,18.96059],[83.36713,18.96301],[83.36154,18.96315],[83.35474,18.9673],[83.35092,18.96679],[83.34828,18.96038],[83.35086,18.9474],[83.35017,18.94327],[83.34385,18.94112],[83.34844,18.92629],[83.33522,18.92493],[83.33342,18.92621],[83.33392,18.92878],[83.3265,18.93198],[83.32486,18.93748],[83.32711,18.94462],[83.33784,18.94629],[83.33902,18.95278],[83.33374,18.95494],[83.33252,18.95767],[83.33482,18.96852],[83.33148,18.96908],[83.3283,18.96703],[83.31874,18.97341],[83.3176,18.98029],[83.31523,18.9832],[83.3159,18.98717],[83.31033,18.99568],[83.31065,18.99867],[83.31665,19.00126],[83.32237,18.99951],[83.32721,19.0024],[83.33126,18.99899],[83.33878,18.99701],[83.33636,19.00294],[83.33695,19.00597],[83.34003,19.00885],[83.34292,19.01814],[83.34802,19.01692],[83.35805,19.01938],[83.36748,19.01648],[83.36605,19.01287],[83.36695,19.01172],[83.36529,19.01018],[83.36703,19.00935],[83.36662,19.0061],[83.37261,19.00226],[83.38459,19.00126],[83.39469,19.00596],[83.39598,19.00954],[83.40047,19.0094],[83.40201,19.00628],[83.40422,19.00667],[83.4043,19.0046],[83.40955,19.00433],[83.41128,19.00026],[83.4141,19.00368],[83.41584,19.0005],[83.41706,19.00206],[83.41961,19.00026],[83.41999,18.99793],[83.41532,18.98918],[83.41964,18.98893],[83.42636,18.98501],[83.4292,18.98042],[83.4351,18.97586],[83.43888,18.97639],[83.44033,18.97162],[83.44589,18.96591],[83.44354,18.96095],[83.44586,18.95776],[83.46183,18.95478],[83.46474,18.96271],[83.46783,18.96455],[83.46981,18.96932],[83.46856,18.98037],[83.46418,18.9801],[83.46784,18.99108],[83.466,18.99355],[83.45527,18.99126],[83.45531,18.99683],[83.45066,19.00453],[83.44994,19.00966],[83.45157,19.00978],[83.45225,19.01259],[83.46152,19.01234],[83.47159,19.00723],[83.47968,19.00847],[83.48142,19.00979],[83.48251,19.01509],[83.47958,19.01771],[83.4794,19.02212],[83.48335,19.03355],[83.47072,19.04291],[83.47093,19.04864],[83.46783,19.05514],[83.46952,19.05765],[83.4692,19.0611],[83.46782,19.06316],[83.46229,19.06377],[83.4652,19.07101],[83.46495,19.07452],[83.4631,19.07597],[83.46627,19.0799],[83.47036,19.08014],[83.47299,19.07705],[83.47837,19.07927],[83.47646,19.08567],[83.47049,19.08712],[83.46971,19.08572],[83.46726,19.08769],[83.46798,19.09312],[83.47366,19.09527],[83.4834,19.09226],[83.48633,19.08755],[83.48183,19.08513],[83.48265,19.08134],[83.48084,19.0785],[83.48884,19.07335],[83.5006,19.06063],[83.50178,19.06589],[83.50555,19.06605],[83.51171,19.07032],[83.51099,19.06627],[83.51304,19.06068],[83.5168,19.05708],[83.51313,19.04838],[83.5193,19.03907],[83.51482,19.02846],[83.50847,19.03554],[83.49647,19.03547],[83.49747,19.03454],[83.49546,19.03185],[83.50094,19.02066],[83.50378,19.01873],[83.51624,19.01661],[83.52249,19.01207],[83.52474,19.01452],[83.52591,19.01284],[83.53457,19.01309],[83.53671,19.0095],[83.54149,19.02961],[83.53984,19.03347],[83.54173,19.04148],[83.54688,19.04372],[83.55168,19.05455],[83.55757,19.0562],[83.55541,19.05806],[83.55561,19.06336],[83.54853,19.07787],[83.54905,19.08052],[83.55444,19.08653],[83.56017,19.08707],[83.567,19.07174],[83.56338,19.07052],[83.56035,19.0645],[83.56342,19.05785],[83.57497,19.0614],[83.57977,19.06054],[83.58446,19.05757],[83.58405,19.06508],[83.58702,19.06936],[83.58471,19.08371],[83.58559,19.08656],[83.59295,19.09267],[83.60119,19.09491],[83.60307,19.09259],[83.61061,19.09606],[83.60341,19.11213],[83.59781,19.11881],[83.59913,19.13016],[83.60165,19.13553],[83.6047,19.13599],[83.60797,19.13969],[83.61596,19.13705],[83.61876,19.14132],[83.6208,19.14168],[83.62229,19.14782],[83.62747,19.15065],[83.62779,19.15665],[83.62603,19.16267],[83.63392,19.15946],[83.63768,19.15316],[83.63441,19.15183],[83.63494,19.14966],[83.6317,19.14084],[83.63701,19.13148],[83.64212,19.13192],[83.64675,19.12981],[83.65271,19.13156],[83.65496,19.12962],[83.65436,19.12213],[83.64964,19.12326],[83.64704,19.1184],[83.65045,19.11739],[83.65105,19.10935],[83.65557,19.1088],[83.65758,19.10255],[83.66282,19.09895],[83.66389,19.09219],[83.66038,19.08442],[83.66102,19.08114],[83.66436,19.07571],[83.67463,19.07208],[83.67659,19.0652],[83.68525,19.05853],[83.6912,19.0473],[83.69302,19.03861],[83.69853,19.03188],[83.70014,19.02545],[83.70462,19.02341],[83.70969,19.02464],[83.71616,19.02368],[83.72447,19.02054],[83.73002,19.02196],[83.72389,19.01025],[83.72121,19.00931],[83.71807,19.01043],[83.71031,19.00718],[83.70883,19.00559],[83.70948,19.00264],[83.71362,18.99739],[83.7142,18.99299],[83.71817,18.99342],[83.73301,18.98771],[83.73246,18.97991],[83.7344,18.96918],[83.73879,18.96036],[83.74054,18.95007],[83.74681,18.94358],[83.74766,18.93708],[83.75386,18.92513],[83.76317,18.92728],[83.76939,18.9143],[83.77184,18.91465],[83.77824,18.91136],[83.78789,18.91587],[83.78505,18.92379],[83.78446,18.9336],[83.77885,18.93666],[83.77622,18.94525],[83.77258,18.94432],[83.76965,18.95476],[83.7639,18.95293],[83.76163,18.95046],[83.75896,18.95061],[83.75407,18.96717],[83.75531,18.97132],[83.74807,18.97404],[83.74485,18.98798],[83.74753,18.99591],[83.75155,18.99868],[83.755,18.9986],[83.76065,19.0026],[83.76281,18.99849],[83.76486,19.0054],[83.7717,19.00808],[83.78198,19.00839],[83.78128,19.01394],[83.77806,19.01547],[83.77791,19.01753],[83.78052,19.01862],[83.79469,19.01798],[83.79348,19.00824],[83.79512,19.00368],[83.79686,19.00092],[83.80893,18.99228],[83.81052,18.98522],[83.82176,18.96023],[83.81901,18.9452],[83.81973,18.93926],[83.82894,18.9306],[83.82658,18.91628],[83.83071,18.91475],[83.84032,18.91851],[83.8434,18.91716],[83.84579,18.91358],[83.8489,18.8999],[83.84368,18.87627],[83.84601,18.8691],[83.85137,18.85956],[83.8687,18.85076],[83.88773,18.83096],[83.89116,18.82509],[83.89316,18.81447],[83.89613,18.81564],[83.89963,18.8244],[83.90476,18.8274],[83.91199,18.82596],[83.9158,18.82796],[83.91767,18.8243],[83.92263,18.82359],[83.92328,18.82183],[83.92634,18.82243],[83.93165,18.81588],[83.93463,18.81628],[83.93465,18.81815],[83.93754,18.81816],[83.9381,18.81585],[83.94232,18.81546],[83.94174,18.80833],[83.95016,18.80518],[83.95539,18.80649],[83.96096,18.81408],[83.96281,18.81289],[83.96509,18.81462],[83.97785,18.81417],[83.98686,18.81005],[83.98845,18.8109],[83.98721,18.8115],[83.99385,18.81361],[83.99567,18.81127],[84.00107,18.81139],[84.00522,18.80874],[84.0099,18.81169],[84.01573,18.80875],[84.01744,18.8128],[84.01547,18.81706],[84.01917,18.81645],[84.01912,18.81792],[84.02252,18.8159],[84.02522,18.81705],[84.02483,18.81548],[84.03296,18.8116],[84.03778,18.81305],[84.03848,18.81643],[84.04561,18.81288],[84.04426,18.80606],[84.04599,18.80506],[84.04669,18.80161],[84.0511,18.79908],[84.05988,18.79918],[84.05728,18.79276],[84.06137,18.79234],[84.06163,18.79073],[84.05727,18.78937],[84.06056,18.78489],[84.05991,18.78242],[84.06201,18.78138],[84.06799,18.78231],[84.06922,18.77815],[84.07373,18.77582],[84.07642,18.76445],[84.08034,18.76535],[84.08117,18.76419],[84.08523,18.76649],[84.08475,18.76427],[84.08959,18.76399],[84.08946,18.75678],[84.09688,18.76054],[84.10327,18.76027],[84.11349,18.76687],[84.11771,18.76554],[84.12238,18.76794],[84.12468,18.76394],[84.1293,18.76533],[84.13256,18.7606],[84.1374,18.76124],[84.14199,18.7643],[84.13891,18.7688],[84.14039,18.77727],[84.14622,18.77716],[84.15176,18.78354],[84.15651,18.78458],[84.15843,18.78289],[84.15926,18.78785],[84.1635,18.7893],[84.16559,18.78776],[84.16972,18.78822],[84.17229,18.7829],[84.17577,18.78008],[84.18271,18.78196],[84.18994,18.7777],[84.19468,18.78332],[84.19342,18.78759],[84.19534,18.79168],[84.1981,18.79081],[84.20011,18.79221],[84.20045,18.79049],[84.20758,18.78915],[84.21808,18.79011],[84.21891,18.79119],[84.21377,18.794],[84.2144,18.79542],[84.21919,18.79492],[84.22185,18.79783],[84.2239,18.79709],[84.22631,18.79877],[84.23225,18.79715],[84.23383,18.79477],[84.23674,18.79855],[84.2408,18.79714],[84.24128,18.79138],[84.24358,18.79152],[84.24314,18.78862],[84.24903,18.78579],[84.25592,18.78799],[84.26097,18.78322],[84.26812,18.78456],[84.28649,18.7923],[84.28877,18.79842],[84.28866,18.80466],[84.30499,18.79826],[84.30592,18.79423],[84.30898,18.79414],[84.31259,18.79037],[84.32126,18.78649],[84.32493,18.79044],[84.32454,18.79484],[84.32659,18.79879],[84.33645,18.79844],[84.33613,18.80107],[84.3381,18.80045],[84.33901,18.80226],[84.34455,18.8018],[84.34183,18.80898],[84.33692,18.81156],[84.33424,18.81519],[84.33105,18.81501],[84.33106,18.81785],[84.33437,18.81771],[84.3341,18.81996],[84.33932,18.81969],[84.34266,18.82222],[84.34941,18.82006],[84.35125,18.8227],[84.35201,18.82711],[84.35066,18.82775],[84.35211,18.83149],[84.3596,18.83121],[84.36385,18.83712],[84.36126,18.8389],[84.36123,18.84216],[84.34499,18.84905],[84.34163,18.85426],[84.33306,18.86051],[84.33094,18.86769],[84.3256,18.87609],[84.33053,18.88322],[84.33681,18.89021],[84.35605,18.86935],[84.35779,18.8693],[84.36206,18.86088],[84.3645,18.86133],[84.3665,18.86402],[84.3699,18.86084],[84.37423,18.86139],[84.37733,18.86451],[84.37899,18.8717],[84.3842,18.87414],[84.37882,18.87815],[84.37259,18.87807],[84.36255,18.88715],[84.36027,18.89455],[84.36495,18.88969],[84.37068,18.88662],[84.37427,18.88652],[84.38256,18.88142],[84.38335,18.88286],[84.38148,18.88643],[84.38811,18.88424],[84.39213,18.8763],[84.39537,18.87977],[84.39518,18.88202],[84.39761,18.88204],[84.39833,18.88368],[84.39752,18.89028],[84.39596,18.89307],[84.39033,18.89582],[84.38515,18.89592],[84.38505,18.89783],[84.37814,18.90329],[84.37893,18.90422],[84.38556,18.90036],[84.39353,18.90433],[84.39412,18.90081],[84.40009,18.89531],[84.40971,18.89512],[84.41288,18.89717],[84.41802,18.8972],[84.42134,18.90116],[84.42219,18.90541],[84.42047,18.91089],[84.41676,18.9146],[84.41857,18.91732],[84.42053,18.91767],[84.42443,18.91035],[84.42839,18.90902],[84.43111,18.91666],[84.43802,18.92046],[84.43947,18.92708],[84.43857,18.93157],[84.42768,18.93209],[84.43103,18.93585],[84.42422,18.94725],[84.42601,18.95275],[84.43243,18.95909],[84.432,18.96229],[84.42941,18.96486],[84.43107,18.96919],[84.43734,18.97037],[84.44168,18.96865],[84.44605,18.97193],[84.44505,18.97324],[84.44773,18.97557],[84.45243,18.97598],[84.44468,18.98326],[84.4433,18.9905],[84.43222,18.99505],[84.4325,19.00655],[84.42824,19.00767],[84.42406,19.0132],[84.42201,19.01275],[84.42109,19.02199],[84.42573,19.01921],[84.42458,19.01395],[84.4316,19.01348],[84.43712,19.00713],[84.44056,19.00741],[84.44161,19.00353],[84.44483,19.00445],[84.44961,19.003],[84.45438,19.0],[84.45582,18.99733],[84.46036,18.99678],[84.46059,18.99306],[84.46474,18.99161],[84.46489,18.99373],[84.46678,18.99388],[84.47027,18.99142],[84.47434,18.99176],[84.47603,18.98804],[84.47889,18.98846],[84.48293,19.00487],[84.48264,19.01657],[84.48502,19.01924],[84.48877,19.01951],[84.49437,19.029],[84.50047,19.03317],[84.50532,19.03386],[84.51173,19.04024],[84.51638,19.04843],[84.52412,19.0487],[84.52613,19.04604],[84.54327,19.05505],[84.5566,19.05658],[84.57286,19.07372],[84.57388,19.07327],[84.57158,19.06958],[84.5747,19.06757],[84.57663,19.06761],[84.58295,19.07318],[84.58338,19.06815],[84.58046,19.06002],[84.58182,19.05891],[84.58152,19.05302],[84.58305,19.04924],[84.57868,19.04566],[84.57729,19.04047],[84.58329,19.04248],[84.58126,19.03752],[84.58167,19.03009],[84.59415,19.02226],[84.59568,19.02555],[84.60127,19.02528],[84.60198,19.03244],[84.60585,19.0417],[84.61427,19.05194],[84.61281,19.05353],[84.61343,19.05657],[84.61761,19.05453],[84.62074,19.05614],[84.62242,19.0601],[84.61705,19.06093],[84.61831,19.06587],[84.62782,19.06621],[84.63064,19.0646],[84.62987,19.0617],[84.63101,19.06042],[84.63711,19.05998],[84.64161,19.06727],[84.65394,19.06754],[84.65467,19.0659],[84.65796,19.06556],[84.65758,19.06431],[84.66113,19.06304],[84.66308,19.07461],[84.66948,19.07438],[84.67085,19.07633],[84.66347,19.0824],[84.66388,19.08757],[84.65868,19.09196],[84.65897,19.09443],[84.65319,19.09309],[84.64704,19.09626],[84.64424,19.09291],[84.63684,19.08974],[84.63678,19.08595],[84.63433,19.08867],[84.6312,19.0821],[84.63193,19.08656],[84.63042,19.08439],[84.62549,19.08491],[84.626,19.08767],[84.62411,19.08831],[84.62501,19.09166],[84.62268,19.09386],[84.6249,19.09564],[84.62548,19.09909],[84.61965,19.1044],[84.61867,19.10008],[84.60955,19.10078],[84.61128,19.10685],[84.60841,19.10753],[84.60552,19.11754],[84.60186,19.12318],[84.60285,19.12662],[84.59601,19.12879],[84.59553,19.13245],[84.60328,19.13193],[84.6072,19.12918],[84.61416,19.12789],[84.62978,19.12668],[84.63102,19.12968],[84.64363,19.12971],[84.64408,19.13372],[84.65426,19.12937],[84.65995,19.1315],[84.66732,19.12986],[84.66669,19.13184],[84.66974,19.13794],[84.67166,19.14822],[84.67102,19.15623],[84.66793,19.15417],[84.66874,19.16299],[84.67091,19.16604],[84.67252,19.16455],[84.67327,19.16609],[84.67776,19.16678],[84.68073,19.16528],[84.68435,19.15999],[84.6929,19.16121],[84.69622,19.15945],[84.69692,19.16076],[84.7034,19.16117],[84.70473,19.1593],[84.70998,19.15967],[84.71485,19.15232],[84.71052,19.14646],[84.70118,19.14706],[84.70005,19.14439],[84.70126,19.14462],[84.70036,19.14297],[84.70612,19.14103],[84.69784,19.12644],[84.70252,19.12586],[84.70144,19.12219],[84.7028,19.11786],[84.7082,19.11572],[84.75455,19.08217],[84.76627,19.07814],[84.77965,19.10161],[84.79364,19.12086],[84.80389,19.14521],[84.8178,19.1656],[84.85817,19.21051],[84.93021,19.27621],[84.9836,19.31783],[85.07932,19.37435],[85.09202,19.38806],[85.0938,19.39861],[85.10555,19.41377],[85.16534,19.46157],[85.29348,19.55153],[85.32713,19.57303],[85.38101,19.6034],[85.43051,19.628],[85.49947,19.65711],[85.63703,19.7255],[85.66004,19.73506],[85.66782,19.73686],[85.67799,19.74385],[85.7508,19.76852],[85.78103,19.78094],[85.93435,19.8249],[86.05803,19.84985],[86.14374,19.87351],[86.22371,19.89885],[86.28123,19.92918],[86.30962,19.94127],[86.3295,19.94618],[86.35624,19.94714],[86.38944,19.95528],[86.40854,19.97005],[86.4116,19.97575],[86.39751,19.96951],[86.39135,19.96373],[86.38409,19.9598],[86.38216,19.95943],[86.37977,19.96162],[86.378,19.96683],[86.38461,19.97609],[86.38965,19.97668],[86.39007,19.98123],[86.39352,19.98216],[86.40438,19.99183],[86.41402,19.99732],[86.41404,20.01065],[86.42603,20.03516],[86.43395,20.04635],[86.43396,20.05214],[86.4769,20.09735],[86.49773,20.1268],[86.51266,20.15878],[86.52383,20.17345],[86.53909,20.18648],[86.59557,20.22446],[86.6565,20.25427],[86.67418,20.25987],[86.68019,20.25994],[86.67212,20.2625],[86.67276,20.26575],[86.67119,20.26928],[86.66788,20.27159],[86.66925,20.27572],[86.67193,20.27488],[86.67324,20.27665],[86.67551,20.27511],[86.67364,20.26996],[86.67568,20.26711],[86.67945,20.26757],[86.67984,20.26422],[86.68116,20.27107],[86.72233,20.29028],[86.74753,20.30697],[86.75,20.30891],[86.75097,20.31284],[86.77507,20.33126],[86.78252,20.34088],[86.77812,20.34455],[86.79806,20.36397],[86.79433,20.36922],[86.7915,20.36481],[86.77879,20.35662],[86.78185,20.36586],[86.78894,20.37462],[86.79077,20.36577],[86.79727,20.37576],[86.79243,20.37935],[86.78974,20.37592],[86.78707,20.3785],[86.7886,20.38067],[86.7856,20.38144],[86.78544,20.38015],[86.78445,20.38125],[86.78091,20.37862],[86.78243,20.38573],[86.77657,20.40505],[86.76202,20.39373],[86.75507,20.38448],[86.74645,20.37861],[86.74472,20.37845],[86.75043,20.38384],[86.75124,20.38767],[86.7474,20.38755],[86.74332,20.38044],[86.74587,20.39161],[86.73761,20.3899],[86.74152,20.39591],[86.73924,20.40081],[86.73185,20.39549],[86.73075,20.39255],[86.72438,20.39385],[86.73358,20.4148],[86.73332,20.42216],[86.72857,20.44069],[86.73336,20.46159],[86.74074,20.4712],[86.74186,20.46608],[86.74565,20.46804],[86.75941,20.50038],[86.76579,20.50373],[86.77525,20.52075],[86.78937,20.53393],[86.80844,20.54608],[86.87637,20.59603],[86.9967,20.67293],[87.01653,20.68796],[87.0258,20.69309],[87.03236,20.70005],[87.05343,20.71227],[87.05825,20.71676],[87.057,20.7173],[87.03457,20.70471],[87.02941,20.70409],[87.02614,20.70191],[87.00004,20.69784],[87.00003,20.70149],[87.00552,20.70279],[86.99999,20.70381],[86.99654,20.71216],[87.00201,20.71832],[87.00562,20.73461],[86.99745,20.75073],[86.99248,20.77023],[86.97656,20.77188],[86.96422,20.76728],[86.94416,20.76648],[86.94204,20.77296],[86.95048,20.77415],[86.95022,20.77639],[86.96126,20.78345],[86.96741,20.79139],[86.96879,20.79914],[86.97636,20.81832],[86.98134,20.84561],[86.98088,20.85705],[86.96677,20.873],[86.96216,20.88425],[86.93928,20.92076],[86.93209,20.93764],[86.91835,20.95949],[86.91006,20.97627],[86.89382,21.01334],[86.86994,21.04636],[86.85076,21.08739],[86.84182,21.12483],[86.84154,21.17508],[86.84476,21.18762],[86.85629,21.2056],[86.85481,21.21051],[86.84208,21.20419],[86.8326,21.20609],[86.82935,21.20865],[86.83241,21.20814],[86.83384,21.20992],[86.83353,21.2139],[86.83151,21.21497],[86.84368,21.23243],[86.8522,21.24794],[86.8556,21.25854],[86.88571,21.29894],[86.89006,21.30755],[86.89251,21.31844],[86.89474,21.31589],[86.8975,21.31609],[86.90991,21.32831],[86.9139,21.33458],[86.91175,21.33652],[86.91245,21.33744],[86.92002,21.34094],[86.92406,21.34487],[86.94809,21.37405],[86.94679,21.37558],[86.95098,21.37744],[86.97294,21.40005],[86.97977,21.40746],[86.97928,21.40976],[86.98874,21.41439],[86.99488,21.42109],[86.99773,21.42094],[87.02837,21.44214],[87.05225,21.46127],[87.05556,21.46523],[87.05631,21.46896],[87.07435,21.4714],[87.09754,21.49309],[87.10787,21.5],[87.11371,21.50698],[87.11523,21.51344],[87.1185,21.5171],[87.12199,21.51322],[87.13087,21.51272],[87.16055,21.52947],[87.18687,21.53932],[87.1963,21.54126],[87.19963,21.54474],[87.19948,21.54656],[87.20339,21.54758],[87.204,21.54562],[87.20614,21.54528],[87.24146,21.55175],[87.24265,21.55396],[87.25,21.55678],[87.25171,21.55523],[87.29427,21.55744],[87.3386,21.55652],[87.36188,21.55776],[87.37199,21.56078],[87.4068,21.58271],[87.4084,21.58489],[87.40758,21.58866],[87.43608,21.59713],[87.44772,21.60312],[87.45054,21.60224],[87.48481,21.61246],[87.48453,21.62496],[87.48601,21.63224],[87.48061,21.63321],[87.48118,21.63602],[87.47517,21.64399],[87.47647,21.64693],[87.47196,21.64806],[87.47256,21.65247],[87.46126,21.65037],[87.46037,21.6514],[87.4605,21.65544],[87.46248,21.65844],[87.46128,21.66264],[87.4672,21.66413],[87.46673,21.67857],[87.46945,21.67873],[87.46861,21.68309],[87.47111,21.68389],[87.47084,21.68858],[87.46959,21.68935],[87.47198,21.69065],[87.47123,21.69618],[87.47363,21.69711],[87.4722,21.69815],[87.47307,21.69914],[87.47149,21.69869],[87.47194,21.70244],[87.47018,21.70533],[87.4724,21.70734],[87.47359,21.71457],[87.47123,21.71741],[87.46741,21.71868],[87.46346,21.72538],[87.46386,21.72832],[87.46709,21.72757],[87.46918,21.73252],[87.44478,21.73403],[87.44529,21.7387],[87.45319,21.7378],[87.45432,21.73929],[87.44978,21.74328],[87.44543,21.74379],[87.44723,21.74662],[87.44485,21.74943],[87.44558,21.76804],[87.44401,21.76923],[87.43539,21.77067],[87.4315,21.76931],[87.42459,21.77158],[87.42232,21.76982],[87.41551,21.76949],[87.40413,21.77148],[87.40119,21.76743],[87.39775,21.76658],[87.39553,21.76713],[87.39542,21.77094],[87.39148,21.77096],[87.39128,21.77241],[87.39397,21.7726],[87.39343,21.77621],[87.38506,21.77677],[87.38085,21.77544],[87.37854,21.77277],[87.37401,21.77281],[87.37388,21.76511],[87.36966,21.76543],[87.37302,21.77371],[87.37183,21.77876],[87.3594,21.78259],[87.35915,21.78548],[87.35566,21.78639],[87.35682,21.78945],[87.35552,21.79217],[87.34732,21.79296],[87.33857,21.78476],[87.33603,21.79354],[87.33181,21.79382],[87.32954,21.79057],[87.32544,21.79202],[87.31946,21.79072],[87.31894,21.79462],[87.32164,21.79767],[87.31653,21.79632],[87.31518,21.79392],[87.314,21.79555],[87.31066,21.79385],[87.30963,21.79892],[87.29838,21.80121],[87.29808,21.80487],[87.29589,21.80529],[87.29698,21.81155],[87.29059,21.81132],[87.28869,21.80559],[87.28414,21.80279],[87.28272,21.80276],[87.28285,21.80449],[87.27738,21.80501],[87.27376,21.81029],[87.27601,21.81117],[87.27519,21.81697],[87.2639,21.81858],[87.2642,21.82325],[87.26906,21.82343],[87.27088,21.82706],[87.26852,21.82949],[87.26501,21.83007],[87.26409,21.83562],[87.26542,21.83868],[87.26088,21.84074],[87.25849,21.84408],[87.25954,21.84921],[87.24903,21.85323],[87.2478,21.8609],[87.2514,21.86886],[87.25232,21.87711],[87.24225,21.89247],[87.23426,21.90105],[87.23698,21.9078],[87.2492,21.91515],[87.24977,21.91835],[87.24511,21.92541],[87.24948,21.93598],[87.23903,21.94097],[87.23146,21.95728],[87.22397,21.95684],[87.22279,21.95871],[87.21679,21.96027],[87.21409,21.96357],[87.2106,21.96436],[87.20868,21.96208],[87.20309,21.9629],[87.1995,21.95979],[87.19681,21.95955],[87.17763,21.96964],[87.17041,21.97994],[87.1682,21.97128],[87.16199,21.96761],[87.1636,21.96701],[87.16233,21.96168],[87.16479,21.9609],[87.16066,21.95227],[87.16262,21.94891],[87.1611,21.94398],[87.16328,21.9389],[87.1614,21.93492],[87.15281,21.93322],[87.14155,21.92402],[87.12464,21.92601],[87.11405,21.92432],[87.11282,21.92244],[87.10692,21.92232],[87.10235,21.91506],[87.0971,21.91394],[87.09057,21.90107],[87.09462,21.89829],[87.09885,21.89072],[87.09519,21.88062],[87.09793,21.86692],[87.08426,21.86812],[87.07929,21.86595],[87.07396,21.86724],[87.06131,21.86587],[87.03302,21.87038],[87.03011,21.87448],[87.02608,21.87568],[87.02748,21.87974],[87.0251,21.88109],[87.02557,21.88689],[87.02293,21.89231],[87.00938,21.89978],[87.00468,21.91013],[86.99972,21.91325],[87.00356,21.92049],[87.00145,21.92456],[87.00463,21.92572],[87.00583,21.93753],[87.00943,21.94789],[87.01284,21.9496],[87.02123,21.97267],[87.03035,21.98534],[87.031,21.99705],[87.0274,22.00266],[87.02234,22.01949],[87.0267,22.03709],[87.01906,22.04178],[87.0144,22.04768],[87.00588,22.04872],[86.99776,22.05403],[86.99314,22.05525],[86.97175,22.07239],[86.97103,22.07834],[86.96782,22.08013],[86.96471,22.08574],[86.95796,22.08855],[86.94732,22.0858],[86.93429,22.09048],[86.90585,22.09193],[86.87114,22.09964],[86.86413,22.09935],[86.86022,22.10233],[86.85015,22.10378],[86.84917,22.1],[86.84662,22.10046],[86.84363,22.09631],[86.83374,22.0987],[86.83465,22.10426],[86.82462,22.11892],[86.81892,22.11664],[86.80641,22.11971],[86.80997,22.12741],[86.80479,22.13033],[86.80142,22.12924],[86.79941,22.13037],[86.80229,22.13282],[86.80374,22.13871],[86.80201,22.15071],[86.79385,22.15748],[86.78841,22.15777],[86.78664,22.1538],[86.77964,22.15365],[86.76499,22.14951],[86.73588,22.14943],[86.7277,22.14718],[86.71971,22.14728],[86.71789,22.1658],[86.71921,22.16704],[86.7193,22.17304],[86.71605,22.18172],[86.71637,22.18632],[86.72122,22.18939],[86.71889,22.19905],[86.72496,22.21802],[86.72086,22.22041],[86.71385,22.22005],[86.70794,22.2233],[86.70346,22.22118],[86.68434,22.22241],[86.67531,22.22925],[86.67239,22.24022],[86.66959,22.24254],[86.66624,22.24162],[86.66082,22.23672],[86.65425,22.23627],[86.6513,22.24438],[86.65466,22.25073],[86.64951,22.26353],[86.64673,22.26536],[86.64351,22.26466],[86.64413,22.26867],[86.63971,22.26551],[86.638,22.2711],[86.63218,22.27323],[86.62731,22.26951],[86.62579,22.27353],[86.62177,22.27704],[86.61048,22.28335],[86.60352,22.28207],[86.59976,22.27887],[86.59308,22.27856],[86.59392,22.28204],[86.59272,22.28544],[86.58793,22.28999],[86.58739,22.29441],[86.58506,22.29536],[86.58225,22.30165],[86.57681,22.30112],[86.57686,22.29556],[86.57198,22.29618],[86.57088,22.30019],[86.56887,22.30144],[86.56169,22.30172],[86.5574,22.29832],[86.55407,22.29847],[86.54849,22.30136],[86.54386,22.30721],[86.54074,22.30824],[86.53935,22.30476],[86.53276,22.30096],[86.52545,22.30761],[86.52577,22.31103],[86.52319,22.31473],[86.52783,22.31549],[86.52709,22.3235],[86.52169,22.32342],[86.50818,22.32786],[86.50748,22.33465],[86.50357,22.33676],[86.50212,22.34359],[86.49678,22.34723],[86.49414,22.34566],[86.49289,22.34708],[86.48726,22.34768],[86.48346,22.33813],[86.47147,22.33578],[86.46819,22.3304],[86.46228,22.32982],[86.46362,22.32875],[86.46195,22.32611],[86.45292,22.32532],[86.44527,22.32892],[86.44307,22.32626],[86.44296,22.31767],[86.44461,22.3125],[86.44229,22.30681],[86.43939,22.30358],[86.43034,22.30746],[86.42681,22.31758],[86.40828,22.32097],[86.37708,22.34163],[86.36642,22.34429],[86.35755,22.34977],[86.35761,22.35423],[86.35016,22.36429],[86.34028,22.37292],[86.32852,22.3778],[86.32116,22.38542],[86.32063,22.38902],[86.32271,22.39264],[86.32082,22.39741],[86.30644,22.40961],[86.30745,22.41531],[86.30264,22.4222],[86.29633,22.42403],[86.29303,22.42668],[86.2813,22.44866],[86.26846,22.44217],[86.26394,22.44534],[86.2566,22.44541],[86.23725,22.45259],[86.22467,22.45252],[86.2174,22.46261],[86.22258,22.46725],[86.21388,22.46644],[86.20793,22.47349],[86.20029,22.4718],[86.17056,22.48138],[86.16047,22.48255],[86.15632,22.48036],[86.15028,22.48021],[86.15033,22.48335],[86.13373,22.48713],[86.12375,22.48861],[86.11663,22.487],[86.10275,22.50024],[86.10024,22.50813],[86.09715,22.51033],[86.09487,22.5195],[86.07925,22.53755],[86.07546,22.54411],[86.06843,22.54987],[86.06487,22.55549],[86.05131,22.56248],[86.04544,22.56751]]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-TG","area_level":"State","area_name":"Telangana","geometry_source":"SOI_States","same_as":"ISO-3166-2/IN-TS/State"},"geometry":{"type":"Polygon","coordinates":[[[78.33565,19.88358],[78.32876,19.88715],[78.32436,19.89483],[78.32512,19.89815],[78.33409,19.9053],[78.33328,19.91047],[78.3306,19.91469],[78.32184,19.91681],[78.30703,19.9143],[78.29783,19.87225],[78.29188,19.86172],[78.28531,19.85662],[78.28608,19.84794],[78.29975,19.841],[78.30385,19.84032],[78.31576,19.84256],[78.33641,19.83792],[78.33402,19.81459],[78.3448,19.81337],[78.35238,19.8074],[78.35707,19.80577],[78.35889,19.80289],[78.36459,19.78065],[78.36365,19.77577],[78.35893,19.76793],[78.35555,19.75201],[78.34929,19.73798],[78.34464,19.73811],[78.34123,19.73576],[78.34082,19.73333],[78.34285,19.72978],[78.33982,19.72696],[78.33929,19.72416],[78.3435,19.71547],[78.34313,19.71325],[78.31865,19.70553],[78.31573,19.70259],[78.31182,19.69105],[78.30341,19.6912],[78.30019,19.68799],[78.28785,19.68804],[78.27619,19.69242],[78.27108,19.67871],[78.26579,19.67309],[78.26265,19.66506],[78.26891,19.66407],[78.27162,19.66191],[78.27105,19.65854],[78.27901,19.65764],[78.28088,19.65093],[78.29046,19.646],[78.29208,19.64223],[78.2922,19.62741],[78.2939,19.61944],[78.30557,19.60707],[78.30382,19.58478],[78.3009,19.57907],[78.30425,19.57269],[78.30369,19.56932],[78.29729,19.5679],[78.29815,19.56404],[78.29356,19.55898],[78.27525,19.56246],[78.27431,19.55397],[78.28393,19.54141],[78.29323,19.54223],[78.29411,19.53479],[78.29244,19.52931],[78.2904,19.52762],[78.296,19.51737],[78.29701,19.51308],[78.29495,19.51317],[78.29866,19.49681],[78.30922,19.48108],[78.30434,19.45614],[78.29865,19.45195],[78.28697,19.44853],[78.27044,19.45616],[78.26868,19.44847],[78.26374,19.44893],[78.26265,19.44306],[78.25831,19.44179],[78.25338,19.43677],[78.24648,19.4352],[78.24672,19.43217],[78.24451,19.4288],[78.23743,19.42873],[78.23561,19.42675],[78.21996,19.43302],[78.21159,19.42848],[78.20253,19.4197],[78.19919,19.41484],[78.19881,19.41016],[78.19507,19.40675],[78.19244,19.40669],[78.18382,19.4122],[78.17619,19.41226],[78.18767,19.39459],[78.17679,19.3674],[78.17923,19.36284],[78.17206,19.35972],[78.17215,19.3493],[78.17623,19.33493],[78.18324,19.32998],[78.18951,19.32897],[78.19228,19.32583],[78.19021,19.32078],[78.19374,19.31489],[78.18311,19.28518],[78.17667,19.27855],[78.17817,19.27251],[78.17671,19.26294],[78.17964,19.25886],[78.17798,19.25391],[78.18177,19.24762],[78.17702,19.24216],[78.17532,19.23758],[78.16495,19.23455],[78.1584,19.23578],[78.15099,19.2295],[78.14455,19.2294],[78.13709,19.23439],[78.13428,19.23889],[78.11704,19.24864],[78.11522,19.24883],[78.11317,19.24442],[78.09531,19.24374],[78.08915,19.23937],[78.08235,19.24322],[78.08323,19.24868],[78.0791,19.25483],[78.0723,19.24925],[78.06442,19.24777],[78.05568,19.23712],[78.04161,19.24343],[78.03594,19.25063],[78.04184,19.26166],[78.04251,19.2706],[78.01482,19.27904],[78.01424,19.28596],[78.01596,19.28757],[78.0135,19.29472],[77.99868,19.2998],[77.99467,19.30539],[77.98485,19.30988],[77.97763,19.32271],[77.97411,19.32262],[77.96588,19.32746],[77.96186,19.33561],[77.94512,19.34245],[77.94229,19.34227],[77.93824,19.33411],[77.93198,19.33467],[77.92801,19.33221],[77.92331,19.32578],[77.9176,19.32328],[77.91155,19.31626],[77.89432,19.32047],[77.89003,19.3133],[77.87818,19.30928],[77.87283,19.30531],[77.86346,19.3042],[77.8664,19.29172],[77.86495,19.28813],[77.86558,19.28382],[77.88436,19.27893],[77.89419,19.27981],[77.90346,19.27796],[77.90756,19.26823],[77.90285,19.25646],[77.89092,19.25928],[77.89001,19.26089],[77.87502,19.25884],[77.8746,19.25364],[77.87141,19.25502],[77.86947,19.24817],[77.87002,19.24418],[77.8669,19.23994],[77.86814,19.23674],[77.86612,19.23261],[77.86601,19.2264],[77.85819,19.21418],[77.85481,19.20277],[77.85123,19.19975],[77.85149,19.1961],[77.84772,19.1896],[77.85401,19.18749],[77.86049,19.18035],[77.85593,19.17711],[77.85671,19.17075],[77.85453,19.1702],[77.85265,19.16682],[77.85253,19.15468],[77.84322,19.14158],[77.83795,19.13765],[77.83566,19.13808],[77.83406,19.13431],[77.83688,19.13401],[77.84156,19.11811],[77.84766,19.116],[77.84837,19.11013],[77.84621,19.10131],[77.85108,19.09203],[77.8504,19.08856],[77.84858,19.0865],[77.8423,19.08801],[77.83127,19.08608],[77.82953,19.08707],[77.82641,19.09664],[77.82358,19.09773],[77.81814,19.10498],[77.80993,19.10473],[77.80453,19.10056],[77.80312,19.09617],[77.80458,19.0918],[77.80281,19.07976],[77.80167,19.07618],[77.79786,19.07516],[77.7968,19.07259],[77.8001,19.06684],[77.7986,19.06145],[77.80035,19.05112],[77.79331,19.05257],[77.7891,19.05567],[77.77523,19.05602],[77.76481,19.06266],[77.76495,19.04714],[77.76179,19.033],[77.76556,19.02431],[77.76992,19.02241],[77.77034,19.00996],[77.77224,19.00363],[77.77535,19.00063],[77.7715,18.97916],[77.78763,18.97265],[77.78967,18.97458],[77.79114,18.98282],[77.80522,18.98186],[77.82176,18.97851],[77.81621,18.95752],[77.81984,18.95444],[77.81622,18.94728],[77.81925,18.94586],[77.83245,18.94163],[77.83562,18.94725],[77.84194,18.94987],[77.85859,18.94911],[77.85146,18.92641],[77.84791,18.9269],[77.84325,18.90869],[77.85794,18.90235],[77.87317,18.90393],[77.87394,18.90767],[77.88538,18.9042],[77.88481,18.9003],[77.89158,18.88141],[77.90391,18.88125],[77.90323,18.86663],[77.91243,18.86507],[77.91415,18.86137],[77.92514,18.86069],[77.93006,18.85873],[77.92935,18.85359],[77.93745,18.85159],[77.93478,18.84514],[77.9489,18.84329],[77.94828,18.8291],[77.94309,18.82481],[77.9345,18.82227],[77.91226,18.82689],[77.90667,18.8267],[77.88199,18.8174],[77.87141,18.81816],[77.85988,18.80905],[77.85368,18.80907],[77.83995,18.80482],[77.83851,18.79683],[77.83219,18.78825],[77.82679,18.76984],[77.81671,18.75064],[77.81234,18.73851],[77.80425,18.72724],[77.80418,18.71318],[77.80106,18.70762],[77.79622,18.70396],[77.79501,18.69704],[77.78976,18.69515],[77.79035,18.68783],[77.78729,18.68264],[77.77701,18.68536],[77.77191,18.68905],[77.77324,18.70136],[77.77033,18.70184],[77.76815,18.70586],[77.75998,18.70684],[77.7535,18.70099],[77.75059,18.69525],[77.75244,18.68934],[77.74925,18.68267],[77.74369,18.68162],[77.74313,18.67827],[77.73822,18.6765],[77.72997,18.66694],[77.73571,18.66099],[77.7302,18.65608],[77.7305,18.64515],[77.73471,18.64101],[77.74566,18.62129],[77.74557,18.60594],[77.7476,18.6032],[77.75034,18.58921],[77.74607,18.5846],[77.74347,18.57762],[77.74038,18.57522],[77.73961,18.56836],[77.73704,18.56384],[77.7385,18.55679],[77.72325,18.55333],[77.71097,18.5563],[77.70156,18.55517],[77.68833,18.54495],[77.68069,18.54525],[77.6646,18.5358],[77.66166,18.53186],[77.65586,18.5309],[77.65135,18.53226],[77.6459,18.53884],[77.64922,18.54119],[77.65207,18.55179],[77.64771,18.55299],[77.64791,18.55493],[77.63962,18.55494],[77.634,18.54392],[77.62763,18.54812],[77.62925,18.55368],[77.62647,18.55189],[77.61519,18.55085],[77.61604,18.54897],[77.61319,18.5491],[77.6125,18.54448],[77.61056,18.54454],[77.61007,18.54988],[77.59637,18.54894],[77.5953,18.53554],[77.59206,18.53232],[77.59069,18.52667],[77.59657,18.5302],[77.60044,18.5273],[77.59883,18.52421],[77.60028,18.5223],[77.59707,18.51588],[77.58775,18.51286],[77.58591,18.504],[77.59429,18.49791],[77.5944,18.4962],[77.60471,18.49637],[77.60368,18.49294],[77.60623,18.4892],[77.60361,18.48368],[77.60313,18.47685],[77.59428,18.47691],[77.59225,18.48472],[77.57637,18.48678],[77.57286,18.46981],[77.56107,18.47026],[77.56024,18.46862],[77.54856,18.46858],[77.55076,18.46041],[77.56404,18.46102],[77.5836,18.45621],[77.583,18.44994],[77.5861,18.4494],[77.5853,18.44679],[77.5743,18.4418],[77.56907,18.44287],[77.56829,18.43947],[77.56418,18.4373],[77.5602,18.43728],[77.54798,18.44323],[77.54056,18.44471],[77.52849,18.44337],[77.52752,18.44211],[77.52817,18.42891],[77.53731,18.42628],[77.5369,18.42425],[77.55647,18.41943],[77.55676,18.41714],[77.55268,18.40169],[77.5516,18.3889],[77.54592,18.38869],[77.54319,18.38609],[77.5386,18.38588],[77.53561,18.38075],[77.52547,18.37271],[77.52405,18.3642],[77.52021,18.35718],[77.52273,18.3454],[77.53023,18.33917],[77.55802,18.33142],[77.56387,18.3223],[77.57048,18.31811],[77.5714,18.30883],[77.55326,18.29809],[77.5514,18.29191],[77.56212,18.28481],[77.56694,18.28728],[77.57021,18.29253],[77.57256,18.2933],[77.57616,18.28873],[77.58185,18.28538],[77.60542,18.28128],[77.6043,18.27877],[77.60117,18.27762],[77.59445,18.26485],[77.58199,18.25963],[77.57378,18.24499],[77.57178,18.244],[77.57301,18.23944],[77.58052,18.23217],[77.57988,18.22816],[77.58185,18.22697],[77.58149,18.22486],[77.58531,18.21982],[77.58058,18.21385],[77.57482,18.20163],[77.57215,18.20351],[77.56551,18.20418],[77.56388,18.20194],[77.56346,18.19613],[77.56405,18.19426],[77.57069,18.19217],[77.57472,18.1741],[77.57716,18.17249],[77.58131,18.16232],[77.58422,18.15923],[77.5924,18.15544],[77.59684,18.15595],[77.5944,18.13272],[77.59699,18.12367],[77.59916,18.12099],[77.60155,18.1059],[77.5988,18.09333],[77.59564,18.08603],[77.58551,18.08184],[77.58358,18.08246],[77.57592,18.07806],[77.56943,18.07824],[77.56592,18.07667],[77.55971,18.07188],[77.55742,18.06373],[77.54834,18.06521],[77.54764,18.05613],[77.54961,18.05439],[77.54948,18.05124],[77.55183,18.0507],[77.55379,18.03582],[77.56061,18.03622],[77.58059,18.03158],[77.58325,18.02826],[77.58489,18.01679],[77.58859,18.01216],[77.59586,18.01285],[77.60164,18.01984],[77.60593,18.02023],[77.60794,18.01796],[77.60747,18.00985],[77.61966,18.00649],[77.62779,17.99679],[77.63875,17.99645],[77.64891,17.99888],[77.65204,17.99389],[77.64821,17.98026],[77.65586,17.96884],[77.64951,17.95907],[77.64948,17.95002],[77.6409,17.95411],[77.64062,17.95189],[77.63721,17.95232],[77.63513,17.95925],[77.63329,17.96037],[77.63301,17.96738],[77.62454,17.9596],[77.63289,17.9558],[77.63251,17.94667],[77.62294,17.94552],[77.61868,17.93949],[77.622,17.92957],[77.61904,17.90406],[77.60518,17.90781],[77.59999,17.90414],[77.58606,17.90784],[77.585,17.90193],[77.58599,17.89384],[77.59583,17.88136],[77.60037,17.8806],[77.59908,17.87309],[77.59449,17.87233],[77.58342,17.87704],[77.58059,17.87345],[77.5764,17.87542],[77.57346,17.86919],[77.57,17.86765],[77.56932,17.85156],[77.56484,17.85119],[77.56744,17.84542],[77.56068,17.83865],[77.55403,17.82007],[77.54891,17.81938],[77.5467,17.82848],[77.53238,17.82911],[77.52822,17.8279],[77.52903,17.81293],[77.52294,17.81141],[77.51494,17.80545],[77.509,17.78778],[77.50656,17.78595],[77.51233,17.78213],[77.51751,17.78249],[77.52211,17.78055],[77.52636,17.78163],[77.527,17.7799],[77.52867,17.78066],[77.53439,17.77763],[77.53751,17.77993],[77.54054,17.77777],[77.54026,17.77438],[77.54606,17.77166],[77.54823,17.76706],[77.55486,17.76397],[77.55983,17.76342],[77.56628,17.76675],[77.56915,17.76649],[77.56727,17.7596],[77.56853,17.74891],[77.56439,17.74786],[77.56094,17.74281],[77.55801,17.74139],[77.5567,17.73738],[77.54861,17.73577],[77.54623,17.73282],[77.54596,17.72684],[77.54219,17.72894],[77.53328,17.72768],[77.53133,17.72867],[77.52859,17.72517],[77.52201,17.72603],[77.51824,17.72358],[77.51655,17.72016],[77.51165,17.72092],[77.50914,17.71629],[77.49705,17.71551],[77.49227,17.70813],[77.48601,17.70793],[77.48489,17.70914],[77.48415,17.7056],[77.46748,17.70298],[77.45887,17.69862],[77.45782,17.6963],[77.45243,17.6947],[77.45216,17.69114],[77.45504,17.68893],[77.4537,17.68649],[77.45349,17.67711],[77.45482,17.67448],[77.44893,17.65943],[77.44822,17.65112],[77.45001,17.65058],[77.44972,17.64396],[77.45223,17.64],[77.45208,17.63642],[77.45589,17.63418],[77.45575,17.63249],[77.45115,17.62321],[77.44873,17.60934],[77.44476,17.60941],[77.44614,17.59647],[77.44329,17.59169],[77.44498,17.58625],[77.44312,17.58396],[77.45562,17.58233],[77.45858,17.57997],[77.46181,17.58075],[77.47082,17.57186],[77.47623,17.57061],[77.47805,17.5668],[77.49407,17.56836],[77.49618,17.55961],[77.50043,17.55619],[77.50003,17.54672],[77.5069,17.54228],[77.51544,17.55242],[77.51649,17.55915],[77.52838,17.57537],[77.53744,17.57544],[77.54512,17.56439],[77.55056,17.55173],[77.55424,17.55385],[77.56085,17.55257],[77.56737,17.55636],[77.5881,17.56],[77.58907,17.5647],[77.5938,17.56451],[77.59723,17.55373],[77.59558,17.54487],[77.5969,17.5343],[77.60301,17.53584],[77.60738,17.53225],[77.61206,17.53476],[77.61936,17.52887],[77.62097,17.5304],[77.62339,17.52563],[77.62796,17.52363],[77.637,17.52571],[77.64527,17.52238],[77.66201,17.52282],[77.66654,17.51713],[77.66864,17.51161],[77.67302,17.50942],[77.67545,17.50862],[77.67749,17.50998],[77.68342,17.50818],[77.68772,17.51182],[77.6888,17.51094],[77.6924,17.49688],[77.68801,17.48943],[77.68963,17.48281],[77.6884,17.4752],[77.6768,17.47836],[77.67053,17.47789],[77.65736,17.48092],[77.65544,17.48308],[77.65228,17.48285],[77.65333,17.49389],[77.65689,17.50646],[77.64788,17.49608],[77.64766,17.48717],[77.64479,17.47757],[77.64051,17.47646],[77.63824,17.47352],[77.61523,17.47289],[77.613,17.46683],[77.61427,17.44595],[77.60292,17.44415],[77.58424,17.4545],[77.57619,17.45617],[77.57586,17.43071],[77.56151,17.43761],[77.55269,17.43705],[77.5373,17.44375],[77.513,17.43087],[77.51417,17.41418],[77.52983,17.40818],[77.53607,17.40798],[77.53784,17.40609],[77.53723,17.40225],[77.52429,17.388],[77.52622,17.38193],[77.53315,17.3805],[77.5298,17.37071],[77.52482,17.3647],[77.51576,17.36038],[77.51148,17.36058],[77.50263,17.35707],[77.4882,17.35873],[77.48382,17.355],[77.47443,17.36151],[77.47653,17.36371],[77.476,17.36841],[77.4791,17.37072],[77.45361,17.37399],[77.45106,17.35938],[77.45168,17.35268],[77.45487,17.35178],[77.45706,17.34741],[77.45601,17.33124],[77.45245,17.32747],[77.45219,17.31755],[77.44884,17.30962],[77.44765,17.3075],[77.4456,17.30774],[77.44298,17.30122],[77.44051,17.3013],[77.43793,17.29192],[77.45488,17.28724],[77.45854,17.279],[77.45356,17.2761],[77.45081,17.27053],[77.444,17.27055],[77.43578,17.26018],[77.42633,17.25646],[77.42254,17.25076],[77.42042,17.23762],[77.41145,17.23767],[77.41039,17.24041],[77.40827,17.24121],[77.40495,17.23653],[77.38019,17.22253],[77.38296,17.21798],[77.38876,17.21532],[77.40198,17.21412],[77.40375,17.20989],[77.39839,17.21031],[77.39641,17.20753],[77.39389,17.1944],[77.38174,17.19765],[77.37227,17.19556],[77.37396,17.19455],[77.37335,17.19087],[77.36946,17.18632],[77.3719,17.18113],[77.37001,17.17579],[77.3662,17.17221],[77.36677,17.1693],[77.36261,17.16448],[77.36372,17.15878],[77.36682,17.15898],[77.3669,17.15441],[77.37817,17.15266],[77.37792,17.13994],[77.38454,17.14003],[77.40382,17.13292],[77.40666,17.12451],[77.436,17.11498],[77.43849,17.11685],[77.4458,17.11796],[77.44955,17.11502],[77.45428,17.11485],[77.45563,17.11145],[77.45919,17.1091],[77.46362,17.11],[77.46469,17.10776],[77.46285,17.09408],[77.46725,17.08633],[77.47656,17.07943],[77.48098,17.07923],[77.48194,17.07585],[77.47898,17.07263],[77.47993,17.0688],[77.48345,17.05891],[77.48984,17.05054],[77.48766,17.04953],[77.48811,17.04717],[77.49665,17.04272],[77.49495,17.02709],[77.50253,17.0141],[77.5022,17.00937],[77.49783,17.00933],[77.49187,17.00366],[77.48656,17.00321],[77.47952,16.99602],[77.48289,16.98565],[77.48134,16.97043],[77.4783,16.96837],[77.47215,16.95714],[77.46595,16.95893],[77.46523,16.95661],[77.46721,16.94985],[77.46484,16.94418],[77.46829,16.93959],[77.4642,16.92985],[77.46941,16.92806],[77.46944,16.9192],[77.46652,16.91511],[77.4592,16.91731],[77.45842,16.91491],[77.45402,16.9139],[77.4547,16.91037],[77.45791,16.90951],[77.45646,16.89992],[77.45834,16.89409],[77.45589,16.88534],[77.46036,16.88475],[77.46001,16.87468],[77.46406,16.85059],[77.45948,16.83285],[77.45708,16.83018],[77.46324,16.82221],[77.46244,16.81374],[77.46646,16.80832],[77.4657,16.80592],[77.47426,16.80232],[77.47469,16.7931],[77.47339,16.78921],[77.4765,16.78837],[77.4745,16.78124],[77.46719,16.78045],[77.44107,16.78622],[77.4395,16.78913],[77.43772,16.78337],[77.43788,16.77471],[77.44315,16.76251],[77.4333,16.73669],[77.4298,16.7348],[77.42696,16.72891],[77.42832,16.7266],[77.43036,16.72637],[77.43097,16.72312],[77.42607,16.72287],[77.42767,16.71663],[77.4328,16.7173],[77.43846,16.71168],[77.44123,16.71312],[77.44198,16.71703],[77.44613,16.71649],[77.44718,16.72073],[77.45216,16.7196],[77.45779,16.71594],[77.46133,16.719],[77.46296,16.71797],[77.46381,16.71917],[77.47405,16.71656],[77.47116,16.71178],[77.47139,16.7062],[77.46989,16.7056],[77.4698,16.68703],[77.4639,16.6763],[77.44772,16.67931],[77.44658,16.67607],[77.44423,16.67569],[77.44255,16.66985],[77.43455,16.67098],[77.42817,16.6682],[77.41886,16.66857],[77.41901,16.65844],[77.42972,16.6562],[77.4386,16.64533],[77.43434,16.64336],[77.43434,16.64138],[77.44158,16.6411],[77.44468,16.63923],[77.45649,16.64681],[77.45702,16.64968],[77.46143,16.65112],[77.4624,16.65427],[77.47291,16.6528],[77.47611,16.65011],[77.47086,16.64375],[77.46825,16.63595],[77.46438,16.6325],[77.46392,16.62824],[77.45616,16.62299],[77.45365,16.61675],[77.45819,16.61071],[77.4678,16.60976],[77.4674,16.59884],[77.46391,16.59921],[77.46225,16.59766],[77.46483,16.59242],[77.46222,16.58548],[77.43971,16.58715],[77.43085,16.57887],[77.42855,16.57365],[77.42563,16.57219],[77.42376,16.56888],[77.41537,16.56752],[77.41178,16.57086],[77.40494,16.57189],[77.40001,16.56752],[77.39287,16.56997],[77.39262,16.56399],[77.3975,16.56476],[77.39996,16.55573],[77.40418,16.55418],[77.40376,16.55119],[77.41045,16.549],[77.41902,16.54892],[77.41912,16.52238],[77.41689,16.5173],[77.40221,16.52152],[77.39498,16.51969],[77.39102,16.5162],[77.38144,16.51571],[77.37779,16.5137],[77.37272,16.50966],[77.37007,16.50458],[77.36901,16.48867],[77.3547,16.48878],[77.35143,16.49106],[77.34637,16.49037],[77.34439,16.48694],[77.34309,16.48793],[77.32956,16.48591],[77.32357,16.48684],[77.3203,16.49222],[77.29871,16.49616],[77.29932,16.48791],[77.294,16.47667],[77.26499,16.47251],[77.25073,16.47493],[77.24581,16.47773],[77.23977,16.47625],[77.23576,16.47274],[77.24441,16.46331],[77.26207,16.45184],[77.26895,16.43046],[77.27828,16.42217],[77.28796,16.40864],[77.29745,16.4069],[77.3043,16.40173],[77.31393,16.39801],[77.33342,16.39537],[77.3491,16.38385],[77.35584,16.38264],[77.37805,16.38556],[77.4017,16.3713],[77.41144,16.36745],[77.42095,16.36623],[77.42953,16.36966],[77.43711,16.37861],[77.44098,16.38077],[77.47467,16.38177],[77.48969,16.38501],[77.49535,16.38116],[77.51437,16.37497],[77.5234,16.37583],[77.53143,16.36376],[77.53877,16.35821],[77.54604,16.35693],[77.555,16.34877],[77.57272,16.34093],[77.59484,16.34318],[77.59524,16.33963],[77.58803,16.33337],[77.59083,16.32928],[77.59,16.3255],[77.59538,16.31812],[77.59202,16.30217],[77.59337,16.29744],[77.59772,16.29281],[77.582,16.29134],[77.56888,16.3036],[77.56321,16.30164],[77.54508,16.29171],[77.54082,16.28546],[77.5369,16.2668],[77.53282,16.27168],[77.52933,16.2728],[77.5296,16.27548],[77.52187,16.27803],[77.51386,16.27784],[77.51043,16.27459],[77.50481,16.2758],[77.50514,16.2676],[77.5024,16.26306],[77.49008,16.25523],[77.49298,16.24408],[77.49234,16.2293],[77.49506,16.22712],[77.50356,16.23094],[77.51362,16.23075],[77.51555,16.22837],[77.51577,16.2239],[77.51499,16.22196],[77.51215,16.22092],[77.50279,16.22366],[77.50115,16.22172],[77.49818,16.20956],[77.49949,16.19856],[77.49132,16.18453],[77.48615,16.16298],[77.49068,16.15958],[77.4916,16.13502],[77.48979,16.11962],[77.50022,16.12059],[77.50231,16.11717],[77.51081,16.11227],[77.51328,16.10802],[77.50875,16.10919],[77.50093,16.10619],[77.49378,16.08717],[77.49428,16.08565],[77.50601,16.0807],[77.50692,16.07897],[77.50261,16.05881],[77.49944,16.06102],[77.49651,16.05504],[77.49946,16.05372],[77.49681,16.04712],[77.49787,16.04409],[77.49535,16.0417],[77.494,16.03699],[77.49558,16.03098],[77.49803,16.02998],[77.49745,16.02867],[77.50225,16.02247],[77.50267,16.01871],[77.50434,16.01821],[77.50441,16.01133],[77.51405,16.00808],[77.50955,15.9804],[77.51109,15.97937],[77.51066,15.97516],[77.5164,15.96736],[77.51981,15.96691],[77.51344,15.92679],[77.53246,15.92409],[77.54898,15.91912],[77.58081,15.91848],[77.59331,15.91192],[77.59845,15.91241],[77.61139,15.91793],[77.62505,15.90904],[77.63647,15.89606],[77.6592,15.8855],[77.69275,15.88331],[77.71273,15.89452],[77.7241,15.89581],[77.73133,15.8937],[77.73881,15.88803],[77.74405,15.8861],[77.76079,15.88462],[77.76687,15.88614],[77.77723,15.88077],[77.78236,15.87617],[77.79292,15.87648],[77.80537,15.87428],[77.82731,15.88015],[77.83873,15.88509],[77.84597,15.88212],[77.85851,15.88371],[77.86232,15.88636],[77.87005,15.89724],[77.87822,15.90522],[77.88798,15.90608],[77.93696,15.8835],[77.94905,15.88476],[77.97533,15.88334],[77.99696,15.86632],[78.00886,15.86175],[78.0088,15.86478],[78.01503,15.87599],[78.02551,15.90236],[78.031,15.90296],[78.03189,15.90735],[78.04494,15.90414],[78.04682,15.8749],[78.05621,15.87465],[78.05583,15.86633],[78.07152,15.86175],[78.07136,15.85037],[78.07511,15.84718],[78.08488,15.84506],[78.08355,15.84092],[78.09879,15.83601],[78.11123,15.83836],[78.12332,15.83671],[78.13011,15.83809],[78.134,15.83626],[78.13428,15.84402],[78.13007,15.8507],[78.13554,15.8547],[78.15877,15.85376],[78.16679,15.85463],[78.17534,15.85808],[78.17667,15.87676],[78.18661,15.88481],[78.18993,15.89227],[78.17944,15.90193],[78.18443,15.90982],[78.20451,15.91798],[78.23214,15.92399],[78.25162,15.93522],[78.25362,15.94254],[78.25208,15.95383],[78.25333,15.96633],[78.25126,15.97681],[78.25982,15.99556],[78.25551,16.01285],[78.25749,16.02135],[78.26086,16.02582],[78.26698,16.02715],[78.27719,16.02432],[78.29942,16.01154],[78.31226,16.01151],[78.32193,16.01711],[78.32208,16.02868],[78.32656,16.03674],[78.34773,16.04747],[78.36197,16.0458],[78.36542,16.04678],[78.38439,16.0646],[78.39763,16.06613],[78.40145,16.07201],[78.40789,16.07481],[78.42867,16.07318],[78.43451,16.0712],[78.44111,16.07443],[78.47477,16.0685],[78.49865,16.05997],[78.52292,16.05369],[78.54205,16.04417],[78.55176,16.0428],[78.55763,16.04497],[78.58694,16.06344],[78.59239,16.0691],[78.59625,16.07797],[78.60163,16.08393],[78.60996,16.08713],[78.62724,16.08764],[78.65022,16.07881],[78.65042,16.07199],[78.66814,16.0545],[78.67262,16.04587],[78.68119,16.03479],[78.69937,16.02715],[78.72357,16.02012],[78.7355,16.00815],[78.74091,16.00866],[78.75296,16.01628],[78.76613,16.01644],[78.78548,16.02115],[78.79606,16.0284],[78.80121,16.03776],[78.8194,16.0483],[78.82765,16.06082],[78.83706,16.07037],[78.84029,16.07814],[78.84226,16.08591],[78.84231,16.09637],[78.83304,16.13732],[78.83385,16.14448],[78.85248,16.14886],[78.86463,16.14702],[78.87215,16.14397],[78.87651,16.13553],[78.87939,16.11761],[78.88698,16.09848],[78.88905,16.08519],[78.8956,16.08558],[78.90611,16.09483],[78.91793,16.10003],[78.92203,16.10431],[78.92162,16.12282],[78.92438,16.13084],[78.92428,16.13578],[78.9225,16.14003],[78.91503,16.14851],[78.91054,16.16407],[78.9047,16.17458],[78.90376,16.17935],[78.9054,16.18359],[78.91106,16.18843],[78.93001,16.19805],[78.94896,16.20354],[78.96027,16.20907],[78.96774,16.21112],[78.98572,16.21071],[79.00951,16.24021],[79.02918,16.24174],[79.04802,16.23867],[79.05858,16.23519],[79.07211,16.22707],[79.08411,16.23012],[79.09443,16.22429],[79.10158,16.22282],[79.10864,16.22848],[79.11972,16.23194],[79.12377,16.23102],[79.146,16.21397],[79.15695,16.20929],[79.17191,16.2104],[79.20628,16.22091],[79.21655,16.2274],[79.22063,16.23408],[79.22266,16.24186],[79.22459,16.27119],[79.23038,16.28249],[79.23104,16.31433],[79.23381,16.32199],[79.2343,16.33384],[79.23359,16.336],[79.21433,16.34935],[79.2102,16.35823],[79.21243,16.37347],[79.20844,16.37929],[79.20772,16.38475],[79.21156,16.44739],[79.21795,16.45382],[79.23336,16.4592],[79.21706,16.47756],[79.2146,16.48348],[79.21483,16.48791],[79.22088,16.51434],[79.22856,16.52477],[79.24125,16.52917],[79.24477,16.53181],[79.25027,16.54715],[79.25222,16.55925],[79.25684,16.56582],[79.26164,16.56692],[79.28136,16.56061],[79.29102,16.56157],[79.29552,16.56301],[79.30824,16.57415],[79.32643,16.57646],[79.34011,16.58264],[79.35369,16.57927],[79.37677,16.58275],[79.39682,16.57978],[79.41864,16.58025],[79.43305,16.59075],[79.43914,16.61291],[79.44717,16.61971],[79.45958,16.62366],[79.48333,16.6231],[79.49401,16.63304],[79.50385,16.63592],[79.51037,16.63574],[79.52942,16.63064],[79.54209,16.63225],[79.57563,16.64978],[79.59218,16.66988],[79.59892,16.67323],[79.60632,16.67131],[79.62149,16.66318],[79.63309,16.66042],[79.64828,16.67003],[79.66219,16.68665],[79.68154,16.69437],[79.71389,16.68924],[79.72289,16.69028],[79.72932,16.69551],[79.74461,16.71908],[79.77399,16.73078],[79.78583,16.73014],[79.79251,16.7255],[79.79887,16.71068],[79.8112,16.69568],[79.81726,16.69187],[79.82109,16.69151],[79.82816,16.69378],[79.85106,16.70584],[79.85885,16.70465],[79.87753,16.6973],[79.88551,16.68735],[79.89065,16.65888],[79.89372,16.65011],[79.91011,16.63392],[79.93235,16.63131],[79.94975,16.6359],[79.96477,16.64495],[79.97735,16.66228],[79.99741,16.70209],[80.00758,16.70884],[80.02215,16.71033],[80.03004,16.71441],[80.03664,16.72766],[80.05496,16.74465],[80.05386,16.76543],[80.06645,16.78641],[80.0706,16.80169],[80.06982,16.80833],[80.07325,16.81719],[80.07106,16.81809],[80.07079,16.8213],[80.0595,16.82519],[80.04818,16.83323],[80.0464,16.83868],[80.04684,16.85334],[80.02901,16.85202],[80.01704,16.85423],[80.00395,16.86179],[80.00363,16.8639],[79.99876,16.86521],[80.00156,16.86769],[80.00508,16.87645],[80.00458,16.88105],[80.01242,16.89268],[80.01738,16.91497],[80.02456,16.91506],[80.02706,16.91754],[80.0404,16.91808],[80.04455,16.92926],[80.05059,16.93642],[80.0519,16.9421],[80.04822,16.94943],[80.05245,16.95987],[80.05743,16.96404],[80.05544,16.97142],[80.08338,16.97018],[80.09156,16.96832],[80.09411,16.97558],[80.09516,16.99065],[80.10255,16.99096],[80.10963,16.98721],[80.1204,16.98789],[80.12048,16.99122],[80.12786,16.99227],[80.14024,16.99059],[80.14637,17.00026],[80.15336,17.00694],[80.15729,17.00741],[80.16202,17.00494],[80.16776,17.00559],[80.17017,17.01683],[80.17773,17.0166],[80.18038,17.01902],[80.18729,17.01995],[80.19263,17.02675],[80.192,17.03354],[80.19645,17.04403],[80.20409,17.03829],[80.19958,17.02649],[80.20206,17.01703],[80.21143,17.01027],[80.22287,17.00784],[80.22616,17.01532],[80.24007,17.00512],[80.2404,17.00215],[80.25607,17.0011],[80.25686,16.99893],[80.26488,16.99724],[80.2669,17.00134],[80.27047,17.00399],[80.28266,17.00767],[80.29359,16.99633],[80.29436,16.99383],[80.29027,16.98108],[80.29352,16.97666],[80.30659,16.97379],[80.30502,16.9537],[80.31647,16.94844],[80.31309,16.94053],[80.31387,16.92483],[80.31159,16.91666],[80.31561,16.9155],[80.32381,16.90643],[80.32497,16.90033],[80.3217,16.87963],[80.34401,16.87437],[80.3409,16.8597],[80.34938,16.85912],[80.37407,16.85239],[80.37339,16.8395],[80.37961,16.84108],[80.3737,16.82823],[80.38043,16.81745],[80.38317,16.81581],[80.38601,16.81625],[80.38733,16.81896],[80.38607,16.8249],[80.39084,16.82474],[80.39237,16.82793],[80.39668,16.8275],[80.39971,16.83355],[80.40422,16.83205],[80.4078,16.84823],[80.38347,16.85003],[80.37837,16.85199],[80.38278,16.8549],[80.37883,16.86156],[80.38413,16.86525],[80.38526,16.86329],[80.41212,16.8519],[80.42771,16.8498],[80.42794,16.84688],[80.42971,16.84673],[80.42859,16.83812],[80.4344,16.83743],[80.4382,16.83425],[80.44088,16.83427],[80.44141,16.83078],[80.45007,16.82723],[80.45327,16.82301],[80.46016,16.82004],[80.46424,16.81998],[80.46614,16.81635],[80.46383,16.80536],[80.46445,16.79545],[80.4863,16.79111],[80.49405,16.78369],[80.50439,16.77869],[80.52619,16.77459],[80.55158,16.77501],[80.57024,16.76801],[80.57687,16.77715],[80.58495,16.78355],[80.58716,16.78225],[80.58879,16.78532],[80.59685,16.7902],[80.59711,16.79221],[80.61297,16.79354],[80.5944,16.80281],[80.58455,16.81295],[80.57741,16.82333],[80.56553,16.82684],[80.56285,16.83284],[80.57014,16.84852],[80.57119,16.86112],[80.56831,16.86939],[80.57756,16.87895],[80.59591,16.88462],[80.59482,16.89889],[80.58768,16.90229],[80.58712,16.90418],[80.59234,16.90744],[80.60194,16.91859],[80.59691,16.92386],[80.59171,16.92299],[80.5904,16.92709],[80.58406,16.9288],[80.58132,16.93252],[80.58098,16.93615],[80.57547,16.93814],[80.57349,16.94132],[80.56702,16.94316],[80.54577,16.95693],[80.5347,16.96141],[80.5261,16.94788],[80.50546,16.95654],[80.49923,16.95633],[80.49559,16.94999],[80.49345,16.92743],[80.48203,16.93213],[80.47302,16.93848],[80.46743,16.94545],[80.44967,16.95476],[80.4194,16.96257],[80.40765,16.96397],[80.37136,16.97581],[80.3634,16.97607],[80.36662,16.98144],[80.37576,16.9887],[80.38692,17.00459],[80.38785,17.00927],[80.40703,17.0158],[80.4074,17.02561],[80.39576,17.03573],[80.39593,17.04633],[80.39825,17.04909],[80.39849,17.0526],[80.39382,17.05477],[80.39166,17.0613],[80.38573,17.06793],[80.39102,17.07467],[80.40063,17.08196],[80.40382,17.08196],[80.40443,17.08676],[80.40785,17.08785],[80.40903,17.0915],[80.41896,17.0923],[80.41779,17.08788],[80.41855,17.07843],[80.41705,17.07361],[80.43172,17.05552],[80.43863,17.03758],[80.4533,17.03476],[80.46486,17.03002],[80.47138,17.05037],[80.486,17.05208],[80.49093,17.05097],[80.49767,17.06265],[80.5054,17.06846],[80.51008,17.0869],[80.50403,17.09264],[80.5055,17.09824],[80.51288,17.10925],[80.51408,17.12205],[80.52759,17.11891],[80.54234,17.1246],[80.54882,17.13079],[80.55429,17.1336],[80.55732,17.13212],[80.56318,17.1331],[80.58002,17.15307],[80.60054,17.14228],[80.6064,17.13518],[80.61699,17.13158],[80.61825,17.12842],[80.6279,17.1299],[80.6363,17.12853],[80.64548,17.12352],[80.64204,17.1159],[80.64924,17.11136],[80.6656,17.10512],[80.67055,17.10119],[80.66805,17.09493],[80.65889,17.09156],[80.65709,17.08956],[80.64992,17.07137],[80.65381,17.06861],[80.6664,17.06748],[80.67107,17.07004],[80.67347,17.06664],[80.6764,17.07075],[80.67967,17.07203],[80.69496,17.07414],[80.69729,17.07679],[80.69634,17.08006],[80.69898,17.0816],[80.69945,17.08379],[80.70536,17.08078],[80.71058,17.08188],[80.7368,17.07769],[80.73888,17.07959],[80.74465,17.07694],[80.74647,17.07777],[80.75089,17.07262],[80.76498,17.06661],[80.79046,17.06346],[80.79874,17.06124],[80.81041,17.05532],[80.82882,17.05277],[80.84079,17.04671],[80.84531,17.03997],[80.85584,17.04652],[80.85911,17.05261],[80.86551,17.05856],[80.87149,17.06984],[80.87716,17.07043],[80.87611,17.07488],[80.86871,17.078],[80.86758,17.08045],[80.87521,17.09545],[80.87389,17.09854],[80.87643,17.10559],[80.87348,17.1141],[80.86833,17.12027],[80.86774,17.12313],[80.8693,17.12669],[80.87364,17.12877],[80.87825,17.13514],[80.8777,17.14981],[80.87944,17.16083],[80.8924,17.15937],[80.90703,17.15385],[80.91659,17.15369],[80.92399,17.15785],[80.92309,17.16129],[80.9252,17.16775],[80.92643,17.18348],[80.92267,17.18859],[80.91845,17.18974],[80.92105,17.20028],[80.91676,17.21096],[80.91676,17.21609],[80.91888,17.21974],[80.94128,17.21929],[80.96029,17.20407],[80.97629,17.20027],[80.99436,17.19132],[80.99845,17.19046],[81.00862,17.19186],[81.01543,17.1944],[81.03127,17.19033],[81.03687,17.19248],[81.04357,17.20233],[81.0495,17.20707],[81.05559,17.21956],[81.05461,17.22487],[81.07961,17.21528],[81.09037,17.2196],[81.10943,17.22347],[81.1276,17.22431],[81.15947,17.2308],[81.17398,17.23034],[81.17301,17.23203],[81.17502,17.23697],[81.18609,17.24849],[81.18759,17.25465],[81.18394,17.25835],[81.17818,17.26904],[81.17957,17.27837],[81.17666,17.28767],[81.18137,17.30445],[81.19041,17.32481],[81.21031,17.32605],[81.22205,17.32149],[81.23357,17.32036],[81.23913,17.32084],[81.23913,17.32349],[81.24463,17.32309],[81.24567,17.32579],[81.26825,17.32003],[81.27403,17.31719],[81.27851,17.32341],[81.28852,17.32807],[81.30111,17.34066],[81.3053,17.34591],[81.31199,17.36069],[81.31631,17.36448],[81.31647,17.369],[81.32264,17.37455],[81.31859,17.39842],[81.31238,17.40872],[81.30051,17.41271],[81.26854,17.41826],[81.25974,17.42222],[81.24551,17.43303],[81.24269,17.43206],[81.23633,17.43558],[81.22143,17.43944],[81.21905,17.44228],[81.21176,17.44174],[81.20526,17.44959],[81.2023,17.44066],[81.2027,17.43395],[81.1933,17.43563],[81.18298,17.44025],[81.17233,17.44904],[81.17555,17.46364],[81.14825,17.46365],[81.15968,17.48437],[81.14215,17.48859],[81.14487,17.49508],[81.14051,17.50466],[81.13848,17.51624],[81.12728,17.52642],[81.1245,17.52706],[81.11746,17.52207],[81.10111,17.5056],[81.09756,17.50426],[81.09135,17.50565],[81.08007,17.51505],[81.04721,17.51951],[81.0199,17.52003],[81.01483,17.52213],[81.01368,17.53662],[81.00843,17.547],[81.00281,17.55061],[80.9984,17.56468],[80.9888,17.57242],[80.98283,17.58274],[80.97673,17.58719],[80.96931,17.59838],[80.97552,17.61914],[80.98411,17.62621],[80.99592,17.62908],[81.00704,17.62171],[81.00955,17.64365],[81.00526,17.64876],[80.99209,17.65346],[80.98006,17.65261],[80.96237,17.64572],[80.95236,17.63703],[80.9381,17.63258],[80.89704,17.64064],[80.88274,17.64591],[80.87813,17.65067],[80.87607,17.66022],[80.8764,17.66838],[80.89079,17.68976],[80.89475,17.70291],[80.89099,17.71368],[80.89076,17.72188],[80.88555,17.73568],[80.90237,17.7462],[80.913,17.74592],[80.91458,17.74653],[80.91273,17.74948],[80.91444,17.75046],[80.915,17.74836],[80.91757,17.74811],[80.91946,17.7562],[80.92338,17.75729],[80.92785,17.76178],[80.94631,17.76019],[80.95562,17.77291],[80.95532,17.77462],[80.96343,17.77739],[80.96587,17.77978],[80.97217,17.77796],[80.97342,17.78012],[80.97688,17.77632],[80.98423,17.75566],[80.99132,17.74992],[81.01592,17.74503],[81.02763,17.74813],[81.04056,17.74761],[81.04416,17.74042],[81.05051,17.73401],[81.05817,17.73309],[81.06983,17.74071],[81.08258,17.7531],[81.09565,17.7622],[81.10426,17.77201],[81.10388,17.7732],[81.096,17.77449],[81.08978,17.79104],[81.08559,17.79802],[81.07326,17.78645],[81.04662,17.78231],[81.03898,17.78415],[81.03176,17.78847],[81.01767,17.79138],[81.00822,17.79937],[81.00346,17.81952],[81.00323,17.83062],[80.99645,17.84907],[80.99655,17.87175],[80.99417,17.8809],[80.99934,17.90329],[80.99834,17.91679],[80.98784,17.94445],[80.9792,18.00445],[80.97273,18.02483],[80.96954,18.03175],[80.96426,18.03814],[80.96976,18.04385],[80.96905,18.04643],[80.96244,18.06298],[80.95344,18.07863],[80.94926,18.08286],[80.95178,18.09012],[80.95551,18.12906],[80.97874,18.1508],[80.97903,18.17541],[80.95766,18.17355],[80.95162,18.16366],[80.94236,18.16038],[80.94164,18.15662],[80.9399,18.15543],[80.91417,18.14117],[80.89108,18.13598],[80.86667,18.13692],[80.86545,18.14145],[80.86016,18.14786],[80.8604,18.16139],[80.85708,18.17442],[80.85854,18.18645],[80.85291,18.202],[80.85521,18.20416],[80.86391,18.20265],[80.87097,18.20479],[80.87261,18.21058],[80.86594,18.23013],[80.86052,18.23199],[80.84343,18.23244],[80.83672,18.23892],[80.82359,18.23608],[80.8226,18.22411],[80.82407,18.19104],[80.81747,18.18911],[80.81326,18.18019],[80.79911,18.16817],[80.77544,18.16674],[80.76003,18.16763],[80.74497,18.17033],[80.7369,18.17716],[80.7372,18.22209],[80.77678,18.24285],[80.79265,18.24945],[80.79428,18.25456],[80.79406,18.26009],[80.79186,18.26274],[80.78011,18.26663],[80.77548,18.2782],[80.76884,18.28794],[80.76186,18.28823],[80.75949,18.28987],[80.75683,18.29506],[80.75874,18.2993],[80.75772,18.30191],[80.74872,18.30892],[80.74765,18.32996],[80.74214,18.3411],[80.7315,18.35491],[80.7269,18.36913],[80.73023,18.37592],[80.7294,18.37884],[80.72276,18.38456],[80.71968,18.3908],[80.73217,18.40122],[80.73487,18.41284],[80.72286,18.41518],[80.72083,18.41104],[80.71827,18.40973],[80.69895,18.42143],[80.6962,18.42473],[80.69824,18.43756],[80.70531,18.43986],[80.70172,18.44459],[80.69576,18.44457],[80.68806,18.44736],[80.6861,18.45826],[80.67873,18.46077],[80.67334,18.46656],[80.65531,18.47586],[80.6513,18.4859],[80.63721,18.50435],[80.63685,18.50702],[80.64094,18.51151],[80.63757,18.52253],[80.63109,18.5219],[80.62276,18.52856],[80.6185,18.52767],[80.61064,18.54237],[80.59991,18.55304],[80.59096,18.5579],[80.57141,18.56468],[80.56749,18.57125],[80.55643,18.57974],[80.54228,18.58691],[80.53451,18.58835],[80.53525,18.59074],[80.53074,18.59894],[80.52813,18.60266],[80.51929,18.60865],[80.51883,18.61431],[80.51466,18.61933],[80.5016,18.62157],[80.48826,18.63109],[80.47917,18.62873],[80.47752,18.62584],[80.46554,18.62394],[80.45612,18.62936],[80.43039,18.61646],[80.42762,18.61288],[80.42241,18.61512],[80.42,18.6104],[80.40914,18.60979],[80.39585,18.60493],[80.39415,18.60061],[80.38845,18.59666],[80.37827,18.60891],[80.37516,18.61066],[80.36616,18.60706],[80.36295,18.60323],[80.36215,18.59915],[80.35645,18.59508],[80.34812,18.59414],[80.3349,18.61195],[80.33102,18.62821],[80.32749,18.63538],[80.31867,18.64215],[80.30416,18.68604],[80.28417,18.7168],[80.27995,18.72074],[80.27149,18.7233],[80.26614,18.72055],[80.26501,18.7175],[80.25223,18.70681],[80.23864,18.70573],[80.23366,18.70241],[80.22968,18.70186],[80.22628,18.7056],[80.21933,18.70792],[80.21277,18.70572],[80.20043,18.69256],[80.19937,18.68321],[80.19657,18.6808],[80.19047,18.68046],[80.1787,18.68327],[80.17416,18.68818],[80.16862,18.69971],[80.15771,18.70098],[80.14846,18.69309],[80.14002,18.693],[80.12856,18.68743],[80.12438,18.68136],[80.11812,18.68052],[80.11225,18.68288],[80.10415,18.69157],[80.09904,18.69448],[80.08851,18.70728],[80.08207,18.70725],[80.07459,18.71052],[80.06926,18.71957],[80.06462,18.72326],[80.05694,18.72332],[80.0528,18.72506],[80.04141,18.74299],[80.03868,18.75297],[80.03455,18.75499],[80.02498,18.75494],[80.01854,18.77038],[80.00099,18.77607],[79.99809,18.77592],[79.99583,18.77082],[79.99305,18.76993],[79.96415,18.77382],[79.95915,18.7773],[79.94949,18.78915],[79.929,18.80263],[79.92105,18.81023],[79.91403,18.82381],[79.91578,18.82991],[79.92825,18.84091],[79.94138,18.84604],[79.94764,18.85018],[79.95851,18.85942],[79.96161,18.86663],[79.95867,18.88861],[79.95361,18.9045],[79.95742,18.92279],[79.95705,18.94288],[79.94162,18.99209],[79.94096,19.00023],[79.9424,19.00066],[79.94256,19.00698],[79.94026,19.03256],[79.93707,19.04269],[79.93191,19.04808],[79.92792,19.04932],[79.92063,19.04971],[79.89922,19.04024],[79.87704,19.0388],[79.8711,19.04102],[79.86859,19.04424],[79.866,19.0542],[79.86338,19.06869],[79.8634,19.07782],[79.85896,19.09276],[79.85843,19.10242],[79.86146,19.11226],[79.87375,19.12405],[79.92532,19.15159],[79.94567,19.16894],[79.9465,19.17425],[79.94528,19.17914],[79.92545,19.21064],[79.92422,19.21546],[79.92474,19.2273],[79.93085,19.2508],[79.93636,19.26413],[79.95057,19.28904],[79.95482,19.29376],[79.96227,19.29735],[79.96587,19.30304],[79.96557,19.31307],[79.95909,19.33086],[79.95908,19.33594],[79.96797,19.35663],[79.97023,19.37103],[79.96953,19.37469],[79.97142,19.37681],[79.97183,19.38156],[79.97404,19.3855],[79.97846,19.3872],[79.97972,19.3894],[79.97718,19.39418],[79.97794,19.40036],[79.9747,19.40436],[79.97469,19.41099],[79.97239,19.41621],[79.95248,19.44095],[79.94761,19.44968],[79.94822,19.4606],[79.94644,19.46782],[79.94388,19.47071],[79.93241,19.47654],[79.91487,19.49584],[79.90196,19.5009],[79.88085,19.50357],[79.87095,19.50906],[79.86458,19.51051],[79.85532,19.52103],[79.84817,19.52653],[79.84564,19.5328],[79.83287,19.53855],[79.82842,19.54341],[79.8249,19.55053],[79.82411,19.55679],[79.82125,19.56021],[79.82115,19.56422],[79.81483,19.57542],[79.79858,19.58197],[79.77861,19.59967],[79.75345,19.60753],[79.74407,19.6087],[79.73756,19.6064],[79.71798,19.58945],[79.709,19.58448],[79.68895,19.58387],[79.67532,19.57971],[79.65829,19.57971],[79.63546,19.57594],[79.62792,19.57317],[79.61414,19.55968],[79.61166,19.54752],[79.60604,19.53283],[79.60297,19.51455],[79.60046,19.50951],[79.59615,19.50728],[79.58404,19.50913],[79.569,19.51827],[79.55293,19.52417],[79.54839,19.53162],[79.54538,19.5507],[79.54248,19.55423],[79.53993,19.55466],[79.52922,19.55105],[79.51861,19.54311],[79.52081,19.53489],[79.51859,19.52018],[79.51483,19.51944],[79.50226,19.51164],[79.50076,19.50739],[79.49839,19.50569],[79.48263,19.50628],[79.47142,19.50019],[79.46896,19.50957],[79.45676,19.51913],[79.45327,19.5201],[79.44605,19.52692],[79.44221,19.52798],[79.43333,19.53726],[79.42256,19.53804],[79.423,19.53016],[79.42047,19.52976],[79.40532,19.53567],[79.40171,19.53845],[79.39621,19.54806],[79.39175,19.55287],[79.38732,19.55471],[79.38568,19.55833],[79.3768,19.55888],[79.37275,19.56099],[79.36947,19.5727],[79.36708,19.57294],[79.36573,19.57633],[79.35739,19.57758],[79.33481,19.57479],[79.32618,19.57743],[79.31844,19.57672],[79.31854,19.5677],[79.31393,19.56642],[79.30985,19.57151],[79.31026,19.57796],[79.30684,19.59656],[79.28436,19.59552],[79.27295,19.59884],[79.2511,19.61587],[79.24356,19.61669],[79.23864,19.60617],[79.24441,19.59487],[79.25312,19.59329],[79.25103,19.5775],[79.24622,19.56752],[79.23712,19.55714],[79.24002,19.53524],[79.23373,19.52001],[79.22116,19.52099],[79.21403,19.51119],[79.20746,19.50613],[79.20738,19.49763],[79.20385,19.49408],[79.20685,19.48582],[79.21075,19.48174],[79.21577,19.48094],[79.22319,19.47235],[79.22359,19.46907],[79.21568,19.46464],[79.20821,19.46497],[79.19031,19.45898],[79.18007,19.46188],[79.16783,19.47236],[79.16135,19.48826],[79.15755,19.48929],[79.14299,19.50053],[79.13861,19.50048],[79.13566,19.50615],[79.13311,19.50783],[79.12093,19.512],[79.11434,19.51976],[79.10539,19.52238],[79.09803,19.53203],[79.0769,19.5324],[79.06769,19.53566],[79.06534,19.53963],[79.04601,19.54833],[79.03945,19.5476],[79.02402,19.54178],[79.00687,19.54202],[78.99803,19.54008],[78.99775,19.54907],[78.98125,19.56084],[78.97985,19.55766],[78.9768,19.55694],[78.97422,19.54938],[78.9521,19.54886],[78.94044,19.55187],[78.93767,19.56187],[78.94649,19.56161],[78.95254,19.56498],[78.96487,19.57358],[78.97283,19.58239],[78.97178,19.59001],[78.95914,19.59547],[78.95562,19.60017],[78.95537,19.61912],[78.96119,19.63169],[78.96185,19.63744],[78.95739,19.64717],[78.95556,19.65579],[78.94423,19.66174],[78.91972,19.662],[78.91986,19.66697],[78.91582,19.6669],[78.91165,19.66911],[78.90768,19.66799],[78.90354,19.67001],[78.89601,19.66446],[78.88645,19.66245],[78.89048,19.65941],[78.88673,19.65507],[78.86809,19.65903],[78.86159,19.65741],[78.85192,19.65836],[78.85584,19.67731],[78.85569,19.68666],[78.85715,19.68962],[78.85992,19.68949],[78.84943,19.72197],[78.85237,19.7279],[78.85115,19.73613],[78.84795,19.7355],[78.84532,19.74688],[78.8404,19.75634],[78.84096,19.76189],[78.83351,19.76012],[78.82588,19.75514],[78.81692,19.76183],[78.80691,19.75689],[78.80216,19.75653],[78.79693,19.76001],[78.79563,19.76727],[78.7863,19.77653],[78.78237,19.77841],[78.77734,19.77986],[78.77112,19.77938],[78.75637,19.77251],[78.75171,19.77466],[78.74611,19.78117],[78.74006,19.78313],[78.73002,19.78023],[78.72415,19.76775],[78.71916,19.76665],[78.70609,19.7723],[78.70137,19.78674],[78.69256,19.79103],[78.67513,19.79486],[78.66635,19.79975],[78.65505,19.80019],[78.64274,19.80781],[78.62552,19.80816],[78.61899,19.80998],[78.61115,19.81632],[78.60731,19.81761],[78.58612,19.81879],[78.57229,19.81585],[78.56323,19.82108],[78.55201,19.82408],[78.54229,19.82383],[78.53794,19.82005],[78.53078,19.81845],[78.51502,19.81893],[78.50895,19.81205],[78.50722,19.79755],[78.49521,19.79263],[78.49024,19.79268],[78.48503,19.79605],[78.48315,19.80381],[78.47246,19.81734],[78.46923,19.81772],[78.45389,19.81295],[78.43168,19.81488],[78.42295,19.81763],[78.40028,19.83403],[78.38598,19.84609],[78.38179,19.85704],[78.38304,19.87391],[78.38067,19.88044],[78.36964,19.87977],[78.36043,19.8834],[78.33565,19.88358]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-UL","area_level":"State","area_name":"Uttarakhand","geometry_source":"SOI_States","same_as":"ISO-3166-2/IN-UK/State"},"geometry":{"type":"Polygon","coordinates":[[[79.25028,31.25536],[79.25239,31.266],[79.26988,31.27858],[79.27186,31.28319],[79.2715,31.28677],[79.26577,31.29321],[79.25184,31.30177],[79.23921,31.31421],[79.23936,31.31794],[79.2465,31.3253],[79.24648,31.33004],[79.225,31.3387],[79.21157,31.34639],[79.19221,31.36281],[79.18235,31.38517],[79.14357,31.42547],[79.12742,31.43486],[79.10848,31.43763],[79.09956,31.44332],[79.09,31.44499],[79.07788,31.45268],[79.07046,31.4601],[79.06424,31.46208],[79.06174,31.46135],[79.05592,31.455],[79.05247,31.44694],[79.05085,31.44003],[79.05266,31.4231],[79.05151,31.41979],[79.03503,31.40792],[79.02374,31.39637],[79.01763,31.38556],[79.01192,31.36772],[79.01083,31.35708],[78.98991,31.3453],[78.96698,31.33689],[78.94759,31.31952],[78.94422,31.30793],[78.94166,31.27421],[78.93707,31.26062],[78.93269,31.25294],[78.9121,31.25515],[78.9117,31.253],[78.91155,31.25147],[78.9161,31.24859],[78.91919,31.24222],[78.91966,31.23617],[78.92203,31.23154],[78.92206,31.22531],[78.92609,31.2231],[78.92605,31.22007],[78.93113,31.21605],[78.94773,31.21677],[78.94868,31.21331],[78.94383,31.20648],[78.94703,31.20279],[78.948,31.19851],[78.95831,31.19037],[78.95753,31.18659],[78.97266,31.17991],[78.9792,31.17902],[78.9808,31.17616],[78.98373,31.17613],[78.98591,31.17383],[78.9905,31.16127],[78.98822,31.15421],[78.99083,31.14816],[78.98758,31.14329],[78.99076,31.13806],[78.9996,31.13469],[79.00366,31.12154],[79.0068,31.11853],[79.00892,31.10992],[79.00216,31.11242],[78.99855,31.10995],[78.99004,31.10852],[78.97299,31.10808],[78.96308,31.10118],[78.95073,31.09798],[78.94512,31.10057],[78.93223,31.10068],[78.92593,31.10944],[78.92057,31.11072],[78.91273,31.10764],[78.91231,31.10208],[78.9086,31.09886],[78.90044,31.09979],[78.89064,31.0969],[78.88543,31.09872],[78.87289,31.10886],[78.86524,31.12001],[78.85352,31.12208],[78.84801,31.12511],[78.84147,31.12971],[78.83814,31.13834],[78.83121,31.1406],[78.82734,31.15262],[78.82296,31.15774],[78.82489,31.16351],[78.81807,31.16778],[78.81304,31.16888],[78.81072,31.17187],[78.81047,31.18026],[78.8143,31.18754],[78.81738,31.18961],[78.81641,31.19437],[78.80991,31.19828],[78.79675,31.19641],[78.77916,31.18889],[78.76518,31.18576],[78.75641,31.18783],[78.72838,31.18965],[78.71833,31.18777],[78.7097,31.1897],[78.70336,31.189],[78.695,31.19217],[78.68677,31.19776],[78.67882,31.19625],[78.6719,31.19688],[78.66735,31.19075],[78.66172,31.18923],[78.65801,31.18504],[78.66001,31.19108],[78.65654,31.19357],[78.65732,31.19573],[78.64907,31.20217],[78.6493,31.21087],[78.64704,31.21472],[78.63655,31.21484],[78.62597,31.21787],[78.62257,31.22407],[78.60934,31.22926],[78.60092,31.2281],[78.59676,31.22512],[78.5895,31.22667],[78.57824,31.22526],[78.57486,31.22122],[78.56807,31.21915],[78.56549,31.21348],[78.55162,31.19991],[78.52652,31.19646],[78.50756,31.19587],[78.48375,31.19894],[78.48427,31.20121],[78.48145,31.20451],[78.4798,31.21378],[78.47286,31.21845],[78.46174,31.23603],[78.45771,31.23778],[78.45571,31.24102],[78.44999,31.24064],[78.44359,31.24435],[78.43658,31.25412],[78.43425,31.25458],[78.43116,31.25275],[78.42591,31.24425],[78.42074,31.24405],[78.4142,31.23961],[78.40695,31.24219],[78.40283,31.24789],[78.40717,31.25621],[78.39772,31.26622],[78.39617,31.27531],[78.38951,31.2742],[78.3863,31.27143],[78.38354,31.28248],[78.37032,31.28633],[78.35197,31.2806],[78.34561,31.28059],[78.33991,31.28267],[78.33187,31.27761],[78.31803,31.27892],[78.31678,31.28153],[78.31116,31.28314],[78.30804,31.27554],[78.31006,31.27409],[78.31045,31.27109],[78.30633,31.25989],[78.30255,31.25902],[78.29642,31.26113],[78.29188,31.25995],[78.28287,31.26621],[78.27996,31.26247],[78.27603,31.26151],[78.2735,31.25589],[78.26908,31.25232],[78.26868,31.24858],[78.26264,31.24519],[78.26047,31.23975],[78.25539,31.23851],[78.24951,31.24004],[78.25071,31.23331],[78.24695,31.23041],[78.24317,31.2293],[78.23709,31.23267],[78.22643,31.23501],[78.22032,31.23394],[78.21626,31.22971],[78.21517,31.222],[78.21244,31.21957],[78.20916,31.22012],[78.19948,31.2172],[78.19566,31.21971],[78.19218,31.22476],[78.18703,31.22705],[78.17976,31.22565],[78.17381,31.22684],[78.16715,31.22465],[78.16023,31.22548],[78.1581,31.2189],[78.15362,31.21822],[78.14842,31.2137],[78.14768,31.21059],[78.13338,31.20833],[78.1286,31.20078],[78.12348,31.20015],[78.10362,31.18538],[78.09714,31.18421],[78.08774,31.18724],[78.06596,31.18717],[78.05121,31.17989],[78.04264,31.1785],[78.04104,31.17292],[78.03384,31.16971],[78.02971,31.16411],[78.03034,31.15097],[78.02062,31.15155],[78.01445,31.15778],[78.00863,31.16082],[78.00082,31.16195],[77.99094,31.16005],[77.98472,31.15695],[77.98059,31.16212],[77.97327,31.16615],[77.96732,31.17337],[77.9589,31.17092],[77.95362,31.16595],[77.95149,31.16131],[77.94316,31.16126],[77.93516,31.15469],[77.92479,31.15043],[77.92152,31.15047],[77.91581,31.15389],[77.90862,31.15406],[77.89874,31.15023],[77.90045,31.1422],[77.89401,31.13396],[77.88905,31.13299],[77.89068,31.12175],[77.88876,31.11921],[77.88241,31.11772],[77.88052,31.11479],[77.87803,31.11503],[77.87845,31.11633],[77.87323,31.11497],[77.86382,31.10851],[77.86047,31.10159],[77.86374,31.09396],[77.85124,31.07337],[77.83806,31.07265],[77.82893,31.05827],[77.82436,31.05545],[77.82205,31.05519],[77.82296,31.05866],[77.81136,31.0591],[77.81679,31.05669],[77.81604,31.04998],[77.82162,31.04671],[77.82137,31.04274],[77.82982,31.02876],[77.82288,31.02928],[77.81747,31.03304],[77.81145,31.03163],[77.807,31.02677],[77.80751,31.01621],[77.80994,31.01099],[77.82501,31.0098],[77.82199,31.00429],[77.83182,30.99399],[77.82417,30.98842],[77.82513,30.98509],[77.82406,30.98047],[77.82243,30.97655],[77.8163,30.97278],[77.81438,30.96178],[77.82419,30.95711],[77.83219,30.95959],[77.83769,30.95518],[77.8376,30.95317],[77.83473,30.95205],[77.82862,30.95329],[77.82436,30.9505],[77.81398,30.95383],[77.79367,30.96875],[77.77238,30.97435],[77.76917,30.97419],[77.76659,30.97013],[77.75409,30.96448],[77.74901,30.95348],[77.75075,30.94349],[77.75404,30.93754],[77.75274,30.93381],[77.76394,30.93045],[77.7628,30.91818],[77.76589,30.91968],[77.76752,30.91733],[77.7718,30.91861],[77.78265,30.91673],[77.78473,30.91715],[77.78653,30.92026],[77.79182,30.92173],[77.80493,30.92359],[77.81153,30.92327],[77.8133,30.92187],[77.81094,30.91663],[77.81587,30.91032],[77.81528,30.90438],[77.80883,30.8967],[77.80138,30.89332],[77.79886,30.86804],[77.80359,30.86499],[77.80568,30.85321],[77.78624,30.85715],[77.77923,30.86037],[77.77738,30.86315],[77.77613,30.87541],[77.77341,30.87754],[77.76321,30.8804],[77.75822,30.8768],[77.7561,30.87268],[77.75719,30.85998],[77.75418,30.85547],[77.74587,30.85112],[77.74402,30.84659],[77.75768,30.83513],[77.76128,30.82607],[77.74837,30.82163],[77.7456,30.81314],[77.73497,30.80448],[77.73294,30.80108],[77.73187,30.79187],[77.72136,30.77579],[77.71512,30.77072],[77.70378,30.76516],[77.70896,30.75249],[77.70517,30.75078],[77.70243,30.74627],[77.70505,30.74275],[77.70879,30.73972],[77.72153,30.7416],[77.72836,30.73414],[77.73319,30.73534],[77.7373,30.73034],[77.73659,30.72415],[77.74669,30.71972],[77.74741,30.71697],[77.74562,30.71387],[77.75582,30.70692],[77.7504,30.70011],[77.75258,30.69665],[77.74694,30.69443],[77.74841,30.68775],[77.74675,30.68304],[77.74741,30.67985],[77.75916,30.67577],[77.75975,30.67309],[77.76421,30.67082],[77.77251,30.6691],[77.77458,30.66476],[77.78119,30.65997],[77.78445,30.65956],[77.78853,30.66228],[77.79209,30.66017],[77.79249,30.65693],[77.7875,30.65562],[77.78123,30.64667],[77.78674,30.6417],[77.78639,30.6367],[77.79062,30.634],[77.78605,30.62994],[77.78614,30.62442],[77.79255,30.62091],[77.79626,30.61365],[77.78672,30.61431],[77.78025,30.61284],[77.77111,30.61638],[77.76894,30.61452],[77.77107,30.61053],[77.77022,30.6049],[77.77241,30.59855],[77.77167,30.5969],[77.76435,30.59592],[77.75564,30.60469],[77.7519,30.60178],[77.7461,30.60389],[77.74325,30.60149],[77.74679,30.59746],[77.74325,30.59616],[77.74287,30.59385],[77.75664,30.58561],[77.76066,30.57752],[77.76714,30.57115],[77.76752,30.56535],[77.77403,30.55784],[77.78357,30.55983],[77.79411,30.5532],[77.79718,30.55406],[77.79964,30.55766],[77.80637,30.55449],[77.81399,30.56008],[77.81785,30.56102],[77.8226,30.55378],[77.82001,30.54803],[77.82035,30.54519],[77.82351,30.54196],[77.8278,30.531],[77.82586,30.52625],[77.81982,30.52408],[77.81852,30.50807],[77.81505,30.50513],[77.80829,30.50478],[77.79986,30.50106],[77.78221,30.50027],[77.77567,30.49431],[77.76436,30.49108],[77.7394,30.47602],[77.73172,30.47314],[77.72098,30.473],[77.7072,30.45924],[77.69794,30.45586],[77.69025,30.44802],[77.67077,30.44419],[77.66298,30.44704],[77.65237,30.44805],[77.649,30.44515],[77.64865,30.44032],[77.64507,30.43255],[77.6415,30.43179],[77.637,30.43319],[77.63192,30.43125],[77.62595,30.43469],[77.62268,30.43466],[77.59871,30.42816],[77.58445,30.42051],[77.57427,30.41338],[77.57232,30.41045],[77.57604,30.39739],[77.58255,30.39987],[77.58193,30.40134],[77.58546,30.40492],[77.59043,30.40628],[77.59831,30.40488],[77.59963,30.40104],[77.6017,30.3997],[77.60288,30.40293],[77.60505,30.40171],[77.61849,30.40238],[77.62289,30.40519],[77.62504,30.40453],[77.62552,30.40175],[77.62925,30.3979],[77.63591,30.39901],[77.6409,30.40279],[77.64726,30.40473],[77.65279,30.40122],[77.65665,30.40094],[77.65973,30.39056],[77.67242,30.39047],[77.67655,30.38778],[77.67623,30.38032],[77.67808,30.37566],[77.6831,30.37646],[77.68607,30.37925],[77.6904,30.37595],[77.69472,30.36574],[77.70224,30.35562],[77.70608,30.34707],[77.70897,30.345],[77.70978,30.34161],[77.71355,30.3399],[77.72185,30.33021],[77.73209,30.32809],[77.74701,30.3201],[77.76116,30.31829],[77.76578,30.31415],[77.78425,30.30565],[77.78571,30.30298],[77.79424,30.29716],[77.83283,30.28018],[77.83902,30.27453],[77.84075,30.27376],[77.84217,30.27639],[77.84717,30.27659],[77.84653,30.27164],[77.85869,30.27141],[77.86567,30.26582],[77.86933,30.26611],[77.87958,30.26195],[77.88166,30.26227],[77.88574,30.26698],[77.894,30.26537],[77.91089,30.25699],[77.93699,30.24916],[77.93822,30.24384],[77.94147,30.23979],[77.94413,30.23925],[77.94982,30.24231],[77.95151,30.24528],[77.9565,30.24545],[77.9617,30.24237],[77.958,30.24224],[77.94692,30.23406],[77.94602,30.23036],[77.94116,30.22788],[77.93839,30.22434],[77.93793,30.22084],[77.9348,30.21928],[77.93213,30.21439],[77.91894,30.21128],[77.91802,30.20307],[77.91393,30.19647],[77.91483,30.19156],[77.91175,30.18665],[77.91202,30.18253],[77.90028,30.17259],[77.88893,30.15732],[77.88118,30.15073],[77.87688,30.13923],[77.86842,30.12683],[77.86609,30.11913],[77.86042,30.11319],[77.84936,30.1047],[77.84161,30.10265],[77.83682,30.10352],[77.83661,30.09844],[77.83303,30.09458],[77.83428,30.09052],[77.82805,30.08592],[77.82167,30.08568],[77.81045,30.09272],[77.8012,30.09548],[77.79917,30.09047],[77.7997,30.08719],[77.79675,30.08528],[77.79845,30.08355],[77.79477,30.08125],[77.79582,30.07986],[77.79084,30.07502],[77.78113,30.06048],[77.77482,30.05522],[77.77114,30.04802],[77.77005,30.04255],[77.78137,30.0335],[77.77938,30.03067],[77.78549,30.02789],[77.78276,30.02385],[77.78198,30.01863],[77.77581,30.01797],[77.77391,30.01475],[77.77168,30.01498],[77.76196,30.0093],[77.76423,30.00445],[77.75538,29.999],[77.76038,29.99511],[77.75527,29.99198],[77.75034,29.98587],[77.74768,29.986],[77.74371,29.98336],[77.74603,29.98055],[77.7402,29.97529],[77.74062,29.96956],[77.7333,29.95593],[77.73701,29.95376],[77.74836,29.95164],[77.74492,29.94784],[77.74723,29.94664],[77.743,29.94381],[77.74299,29.94094],[77.74062,29.94219],[77.73047,29.9317],[77.74289,29.92493],[77.74298,29.9181],[77.74778,29.91117],[77.73653,29.90666],[77.7386,29.90321],[77.73367,29.90157],[77.73392,29.89964],[77.72927,29.90051],[77.72856,29.89755],[77.73186,29.8928],[77.72507,29.89031],[77.72328,29.88854],[77.72412,29.88678],[77.72275,29.88442],[77.71846,29.8874],[77.71602,29.88588],[77.71471,29.88408],[77.71695,29.87847],[77.72077,29.87616],[77.71521,29.87299],[77.7143,29.86945],[77.71786,29.86679],[77.71864,29.86545],[77.71652,29.86319],[77.72344,29.85505],[77.72567,29.85613],[77.72657,29.85424],[77.74189,29.85185],[77.74389,29.84758],[77.74145,29.84671],[77.74404,29.83988],[77.74022,29.83473],[77.7557,29.8253],[77.75399,29.8208],[77.75899,29.8185],[77.75608,29.81284],[77.75158,29.81068],[77.76322,29.80263],[77.76545,29.79592],[77.77467,29.79102],[77.77219,29.78641],[77.77396,29.78401],[77.77238,29.78],[77.77786,29.77498],[77.77312,29.7687],[77.78036,29.76502],[77.77052,29.75022],[77.76931,29.75059],[77.76953,29.74534],[77.78268,29.73624],[77.76973,29.7176],[77.77172,29.71385],[77.77872,29.71068],[77.78334,29.7094],[77.78558,29.71057],[77.79185,29.70994],[77.8026,29.70339],[77.81048,29.70237],[77.79905,29.68619],[77.80924,29.67986],[77.81534,29.67831],[77.83005,29.6683],[77.83195,29.67041],[77.83568,29.66956],[77.83678,29.67171],[77.83862,29.67049],[77.8431,29.67522],[77.84709,29.67541],[77.85025,29.67998],[77.85373,29.68154],[77.8557,29.68006],[77.86281,29.68945],[77.8656,29.68781],[77.8696,29.68899],[77.87471,29.68729],[77.87948,29.69291],[77.87901,29.70024],[77.88265,29.70243],[77.8909,29.69886],[77.8945,29.69973],[77.89661,29.7022],[77.90207,29.70119],[77.91253,29.69592],[77.91396,29.69848],[77.92007,29.69929],[77.91577,29.70221],[77.91692,29.70556],[77.91979,29.705],[77.92644,29.71422],[77.93457,29.71112],[77.93815,29.71448],[77.94094,29.71084],[77.94554,29.71306],[77.95302,29.70735],[77.94957,29.70413],[77.95098,29.70159],[77.93989,29.69608],[77.94567,29.69182],[77.94589,29.68996],[77.95093,29.68736],[77.94744,29.68309],[77.94937,29.6798],[77.96996,29.66643],[77.96955,29.65623],[77.96645,29.65014],[77.97945,29.64266],[77.98186,29.64512],[77.98379,29.64364],[77.97739,29.63125],[77.97597,29.61738],[77.97769,29.61345],[77.96021,29.61165],[77.94842,29.61691],[77.94277,29.60865],[77.9333,29.60051],[77.94034,29.59271],[77.9675,29.58007],[77.96889,29.58141],[77.97311,29.58031],[77.97493,29.58502],[77.97997,29.58515],[77.98272,29.58356],[77.98645,29.58438],[77.99353,29.59122],[77.99517,29.5958],[77.99617,29.59146],[78.0008,29.58621],[78.0216,29.58085],[78.01524,29.58725],[78.01828,29.5982],[78.03109,29.60832],[78.03307,29.61161],[78.03432,29.61038],[78.04649,29.61607],[78.04885,29.61461],[78.05711,29.62669],[78.05747,29.63069],[78.06855,29.63042],[78.08188,29.62514],[78.08669,29.62503],[78.08146,29.63514],[78.0934,29.64045],[78.10403,29.64123],[78.11929,29.64997],[78.13054,29.65254],[78.13359,29.6595],[78.13758,29.66354],[78.17162,29.69157],[78.18051,29.69683],[78.1884,29.69229],[78.19603,29.69268],[78.20201,29.71443],[78.20358,29.72826],[78.20016,29.73029],[78.20392,29.73727],[78.22165,29.74066],[78.22958,29.73669],[78.24023,29.74143],[78.24592,29.73452],[78.25009,29.73426],[78.25565,29.73825],[78.25975,29.73834],[78.26219,29.74355],[78.26703,29.74284],[78.2683,29.74645],[78.28095,29.75576],[78.28453,29.76178],[78.29268,29.75906],[78.30096,29.76825],[78.30061,29.77104],[78.30363,29.77476],[78.30687,29.77551],[78.30952,29.77996],[78.3129,29.77941],[78.3211,29.7855],[78.32439,29.78986],[78.33074,29.79318],[78.33316,29.79267],[78.33566,29.79661],[78.34929,29.78848],[78.39276,29.76739],[78.40906,29.76338],[78.42851,29.76446],[78.44514,29.75038],[78.45564,29.74515],[78.47369,29.73988],[78.48782,29.73837],[78.50096,29.7329],[78.5102,29.72661],[78.51654,29.7194],[78.51871,29.70177],[78.52145,29.69347],[78.52149,29.65782],[78.53267,29.63875],[78.54081,29.62709],[78.54424,29.62555],[78.56507,29.60109],[78.58036,29.58637],[78.61773,29.55803],[78.62425,29.55654],[78.63851,29.54666],[78.65047,29.546],[78.69972,29.50621],[78.70626,29.50268],[78.71121,29.50036],[78.72009,29.50217],[78.73059,29.50038],[78.73273,29.50199],[78.73819,29.50019],[78.74501,29.50078],[78.74919,29.49596],[78.75359,29.49619],[78.75655,29.49459],[78.75903,29.49064],[78.77757,29.47714],[78.79967,29.46457],[78.81056,29.46581],[78.82274,29.45975],[78.84108,29.45715],[78.88087,29.44338],[78.9002,29.44149],[78.91872,29.43426],[78.92534,29.43383],[78.93634,29.43822],[78.94233,29.43857],[78.94038,29.43756],[78.94024,29.43526],[78.94312,29.43469],[78.93831,29.43401],[78.92571,29.42595],[78.92398,29.41881],[78.91875,29.40988],[78.91838,29.40351],[78.91148,29.39961],[78.91179,29.39375],[78.90507,29.38951],[78.90219,29.38495],[78.89216,29.38096],[78.88734,29.37305],[78.87774,29.37497],[78.87573,29.37198],[78.87958,29.36936],[78.87871,29.36601],[78.86032,29.3582],[78.85193,29.36033],[78.85113,29.35552],[78.85598,29.34972],[78.84987,29.34482],[78.84558,29.34419],[78.84024,29.34597],[78.83576,29.35046],[78.83074,29.35149],[78.82745,29.35421],[78.82834,29.35967],[78.82636,29.36143],[78.8276,29.36377],[78.82586,29.36555],[78.83026,29.36801],[78.82473,29.36713],[78.82215,29.35914],[78.81051,29.34012],[78.7999,29.33458],[78.80286,29.33125],[78.8012,29.32524],[78.80472,29.31925],[78.7982,29.31901],[78.79545,29.31471],[78.79591,29.31177],[78.78955,29.3153],[78.79054,29.31889],[78.7954,29.32501],[78.79309,29.32683],[78.79345,29.32817],[78.79052,29.33059],[78.78679,29.32611],[78.78525,29.32715],[78.77748,29.32573],[78.77333,29.32849],[78.77431,29.33198],[78.76655,29.3374],[78.76081,29.33293],[78.75376,29.33122],[78.75369,29.32732],[78.74955,29.32324],[78.75032,29.31735],[78.74508,29.31794],[78.74068,29.31579],[78.74067,29.32042],[78.73367,29.3219],[78.73577,29.31853],[78.73209,29.31756],[78.73134,29.31352],[78.73518,29.30654],[78.73445,29.30294],[78.72719,29.30551],[78.72299,29.30345],[78.71859,29.30664],[78.71837,29.30342],[78.72269,29.29932],[78.72675,29.2978],[78.72843,29.29922],[78.73452,29.29957],[78.73614,29.29676],[78.76502,29.27931],[78.77321,29.27113],[78.77019,29.26704],[78.77383,29.26199],[78.78509,29.25365],[78.78815,29.25337],[78.78975,29.25496],[78.79189,29.25227],[78.79042,29.25017],[78.79077,29.2469],[78.79324,29.24453],[78.79841,29.24442],[78.80737,29.23668],[78.82008,29.23214],[78.8199,29.23374],[78.82243,29.23332],[78.82571,29.23611],[78.82787,29.23531],[78.83231,29.23675],[78.83816,29.24255],[78.83818,29.24109],[78.8413,29.23969],[78.83946,29.23679],[78.84337,29.23484],[78.84554,29.23677],[78.84954,29.23271],[78.85107,29.23682],[78.85537,29.23852],[78.85834,29.24184],[78.86217,29.23943],[78.85859,29.23299],[78.86304,29.23209],[78.86326,29.23031],[78.87069,29.22725],[78.87264,29.22759],[78.87261,29.23031],[78.87448,29.23025],[78.87423,29.22678],[78.87648,29.22553],[78.87176,29.22257],[78.87583,29.21902],[78.87947,29.21881],[78.88052,29.217],[78.87812,29.21571],[78.87854,29.21426],[78.88328,29.21131],[78.87828,29.20636],[78.8751,29.20651],[78.87522,29.20517],[78.88104,29.19992],[78.8855,29.20317],[78.89062,29.20118],[78.89128,29.19808],[78.88675,29.19508],[78.89006,29.19221],[78.89428,29.19189],[78.89636,29.19358],[78.89974,29.18588],[78.89457,29.18576],[78.89849,29.18181],[78.90317,29.18091],[78.90347,29.17824],[78.90683,29.18006],[78.90875,29.17856],[78.90167,29.16956],[78.90905,29.16354],[78.90801,29.16069],[78.90909,29.15732],[78.90637,29.15174],[78.91287,29.15438],[78.91545,29.15245],[78.91548,29.14994],[78.91205,29.14742],[78.91105,29.14443],[78.91623,29.14067],[78.91621,29.13773],[78.91876,29.13553],[78.90718,29.12741],[78.90633,29.12501],[78.92702,29.11813],[78.93464,29.12964],[78.94286,29.12617],[78.94375,29.12751],[78.95645,29.11989],[78.96417,29.1305],[78.97287,29.12691],[78.97492,29.13145],[78.97468,29.13595],[78.97755,29.1366],[78.97676,29.13855],[78.98234,29.14305],[78.98984,29.13949],[78.99128,29.13068],[78.99665,29.13012],[79.00424,29.1259],[79.00171,29.12226],[79.0035,29.11921],[79.00625,29.11828],[79.00817,29.11191],[79.01419,29.11662],[79.0267,29.11242],[79.03456,29.1177],[79.04063,29.12767],[79.03175,29.1281],[79.02732,29.13244],[79.01921,29.12934],[79.01692,29.13077],[79.01494,29.13395],[79.02111,29.14583],[79.01782,29.15384],[79.01908,29.15572],[79.02382,29.15555],[79.02978,29.14697],[79.03461,29.14407],[79.0374,29.14482],[79.03595,29.15309],[79.03937,29.15841],[79.03237,29.15913],[79.02912,29.16413],[79.03213,29.16843],[79.03584,29.16939],[79.03944,29.16857],[79.04538,29.16418],[79.0505,29.15693],[79.0537,29.15487],[79.05942,29.15542],[79.07487,29.15164],[79.09057,29.14339],[79.10139,29.1341],[79.1119,29.12792],[79.11946,29.12577],[79.12273,29.12734],[79.12492,29.13306],[79.12687,29.13268],[79.14189,29.12433],[79.14082,29.12226],[79.1434,29.12027],[79.15017,29.11867],[79.1535,29.11518],[79.15127,29.11327],[79.15245,29.10712],[79.15084,29.10341],[79.15318,29.10155],[79.14832,29.09914],[79.15153,29.0954],[79.15002,29.09451],[79.14996,29.09176],[79.14327,29.08668],[79.14342,29.08291],[79.14212,29.08194],[79.14181,29.07763],[79.14422,29.07203],[79.1425,29.06695],[79.14587,29.06457],[79.14513,29.06296],[79.14733,29.06226],[79.14876,29.05845],[79.15332,29.05686],[79.16191,29.04896],[79.168,29.04738],[79.17029,29.04861],[79.17511,29.04625],[79.1718,29.04506],[79.17192,29.04264],[79.16916,29.04238],[79.17085,29.03942],[79.168,29.03826],[79.16884,29.03577],[79.16751,29.0322],[79.1644,29.03222],[79.16497,29.02884],[79.16235,29.02921],[79.1622,29.02409],[79.16589,29.02024],[79.16528,29.01779],[79.16843,29.01942],[79.17582,29.01574],[79.17106,29.01187],[79.18094,29.01288],[79.18267,29.01605],[79.18595,29.01764],[79.19384,29.01559],[79.19089,29.01895],[79.19077,29.02318],[79.19426,29.01972],[79.19741,29.02138],[79.20365,29.02074],[79.21173,29.02756],[79.22203,29.01945],[79.23155,29.01512],[79.24495,29.01008],[79.25102,29.01024],[79.24775,29.00334],[79.25913,28.9924],[79.29233,28.97381],[79.29885,28.9728],[79.30727,28.96647],[79.30747,28.96787],[79.31033,28.96799],[79.31092,28.96999],[79.31268,28.96897],[79.31249,28.97131],[79.30986,28.97172],[79.31265,28.97498],[79.31106,28.97526],[79.3119,28.97706],[79.32146,28.9718],[79.33722,28.97213],[79.35627,28.9677],[79.3647,28.96807],[79.36517,28.97074],[79.36099,28.97193],[79.36309,28.97798],[79.36211,28.98145],[79.36763,28.98664],[79.37236,28.98747],[79.37239,28.9846],[79.37769,28.9757],[79.37714,28.97139],[79.38175,28.9698],[79.3821,28.96224],[79.38631,28.95319],[79.3853,28.95177],[79.38733,28.94969],[79.39065,28.94739],[79.40281,28.95001],[79.40471,28.94921],[79.40433,28.95041],[79.4062,28.94985],[79.4054,28.95151],[79.40748,28.95225],[79.41583,28.94382],[79.41558,28.94137],[79.41901,28.94003],[79.41889,28.93298],[79.41584,28.92787],[79.42531,28.92296],[79.42795,28.91978],[79.42689,28.91618],[79.42487,28.91675],[79.427,28.91533],[79.42479,28.91545],[79.42692,28.91442],[79.42513,28.91437],[79.42539,28.91324],[79.42764,28.91269],[79.42511,28.91213],[79.42692,28.91128],[79.42428,28.90841],[79.42532,28.90522],[79.42252,28.90303],[79.42251,28.89948],[79.42466,28.89743],[79.42294,28.89349],[79.42773,28.89298],[79.43099,28.8868],[79.42787,28.87653],[79.42501,28.87366],[79.4249,28.86812],[79.42557,28.86642],[79.44046,28.86174],[79.44518,28.86383],[79.44623,28.86776],[79.45019,28.86772],[79.44979,28.87079],[79.45164,28.87163],[79.46194,28.86676],[79.46611,28.86777],[79.47057,28.86541],[79.47722,28.86457],[79.47892,28.86728],[79.47873,28.87114],[79.49714,28.87287],[79.50992,28.86453],[79.5114,28.86722],[79.52178,28.86474],[79.52351,28.86712],[79.53304,28.86971],[79.53716,28.87694],[79.54166,28.88043],[79.54046,28.88193],[79.54219,28.88453],[79.54595,28.88558],[79.54791,28.89097],[79.54945,28.89008],[79.55494,28.89376],[79.55275,28.8958],[79.55648,28.89926],[79.57062,28.89253],[79.56999,28.88775],[79.57124,28.88646],[79.57755,28.88864],[79.57917,28.88618],[79.57835,28.88349],[79.58427,28.87918],[79.58019,28.87115],[79.58097,28.86616],[79.57349,28.85465],[79.57565,28.85045],[79.58436,28.84627],[79.58751,28.84999],[79.59155,28.8495],[79.5936,28.85204],[79.59712,28.85125],[79.60339,28.85472],[79.6039,28.85683],[79.61331,28.85283],[79.62138,28.86431],[79.62613,28.86662],[79.63092,28.86112],[79.63601,28.86681],[79.64486,28.86343],[79.64745,28.86702],[79.65349,28.86921],[79.65557,28.86841],[79.65605,28.86977],[79.66571,28.86557],[79.66342,28.86194],[79.66744,28.8597],[79.67212,28.85801],[79.67738,28.85927],[79.68189,28.85679],[79.68367,28.85532],[79.68231,28.85347],[79.68316,28.84997],[79.692,28.84788],[79.68996,28.84533],[79.69292,28.84591],[79.70667,28.84101],[79.70752,28.84417],[79.70625,28.84445],[79.70962,28.8511],[79.71855,28.84881],[79.71991,28.84567],[79.72058,28.85027],[79.7234,28.85289],[79.72271,28.85523],[79.72637,28.86097],[79.73652,28.85626],[79.73825,28.85876],[79.74565,28.85992],[79.74907,28.87177],[79.75925,28.87085],[79.76675,28.87493],[79.78082,28.87139],[79.78344,28.87125],[79.78629,28.87341],[79.78861,28.87269],[79.79325,28.88287],[79.7998,28.88748],[79.8147,28.88369],[79.81383,28.88656],[79.81802,28.88781],[79.8293,28.88445],[79.82828,28.87828],[79.83253,28.87099],[79.83546,28.87104],[79.83565,28.87495],[79.84322,28.87588],[79.84565,28.87387],[79.84577,28.86354],[79.8496,28.8593],[79.84505,28.85537],[79.84534,28.85111],[79.84063,28.84768],[79.838,28.84832],[79.83288,28.85532],[79.83074,28.85523],[79.82978,28.85324],[79.83245,28.84584],[79.83634,28.84294],[79.83678,28.83992],[79.83087,28.83778],[79.82727,28.84167],[79.82382,28.83901],[79.8279,28.83695],[79.83131,28.83076],[79.83717,28.83235],[79.83245,28.82354],[79.82915,28.82139],[79.82945,28.81814],[79.82604,28.81493],[79.82429,28.80727],[79.81897,28.80547],[79.8199,28.81216],[79.81645,28.81692],[79.80723,28.80566],[79.80803,28.80091],[79.81394,28.79688],[79.81454,28.79889],[79.81281,28.80196],[79.81457,28.80261],[79.81995,28.79611],[79.82289,28.79563],[79.82432,28.79829],[79.82693,28.79497],[79.83081,28.79773],[79.83308,28.79682],[79.83433,28.79859],[79.83832,28.79753],[79.83986,28.80017],[79.83843,28.80122],[79.84152,28.80427],[79.84609,28.80474],[79.84547,28.80075],[79.84934,28.79964],[79.85237,28.8019],[79.85059,28.80333],[79.85289,28.80613],[79.85031,28.80601],[79.85166,28.80883],[79.85076,28.81045],[79.84659,28.81044],[79.85294,28.81373],[79.85212,28.81566],[79.84661,28.81744],[79.84785,28.81953],[79.8463,28.82318],[79.84863,28.82515],[79.85407,28.82411],[79.85371,28.82603],[79.85083,28.82693],[79.85102,28.82855],[79.85387,28.82699],[79.85772,28.83064],[79.86142,28.83053],[79.85898,28.83166],[79.86061,28.83304],[79.85888,28.8338],[79.86266,28.83706],[79.86319,28.84022],[79.8647,28.83777],[79.86719,28.83954],[79.87025,28.83845],[79.87166,28.84014],[79.87461,28.83634],[79.87337,28.8363],[79.87435,28.83424],[79.87256,28.83156],[79.87573,28.83311],[79.87847,28.83031],[79.87961,28.83241],[79.87857,28.83356],[79.8834,28.83398],[79.88212,28.83693],[79.88822,28.83656],[79.88905,28.83404],[79.89391,28.83146],[79.89199,28.82561],[79.89404,28.82379],[79.89407,28.8204],[79.91453,28.81848],[79.9107,28.81247],[79.91078,28.8099],[79.91552,28.80427],[79.90554,28.80299],[79.87849,28.81483],[79.87348,28.80939],[79.8696,28.80834],[79.87007,28.80576],[79.87473,28.80236],[79.87226,28.79936],[79.87306,28.79728],[79.8833,28.79454],[79.88426,28.79],[79.89728,28.78623],[79.90136,28.78198],[79.90647,28.78196],[79.90982,28.7854],[79.91781,28.78236],[79.91935,28.78412],[79.91884,28.7865],[79.92378,28.78671],[79.92652,28.79001],[79.93982,28.78772],[79.92852,28.77902],[79.92408,28.77316],[79.92699,28.77097],[79.92734,28.76871],[79.93057,28.76802],[79.93323,28.76428],[79.93258,28.76272],[79.9432,28.75989],[79.94315,28.75798],[79.93872,28.75313],[79.93863,28.75038],[79.94359,28.74862],[79.94648,28.74236],[79.94367,28.7348],[79.94596,28.72975],[79.9544,28.72286],[80.03013,28.74863],[80.05227,28.77828],[80.05545,28.78125],[80.06174,28.78319],[80.05867,28.78839],[80.06488,28.79443],[80.0681,28.80284],[80.05922,28.8168],[80.05179,28.82037],[80.05979,28.82539],[80.06292,28.83467],[80.06536,28.8369],[80.05847,28.91663],[80.09632,28.97574],[80.10055,28.9869],[80.11792,28.98155],[80.12669,29.00611],[80.13542,29.0074],[80.13625,29.00959],[80.1245,29.01307],[80.13124,29.0305],[80.12637,29.03194],[80.13718,29.06047],[80.12942,29.06272],[80.14479,29.1022],[80.16509,29.11848],[80.1675,29.12576],[80.17764,29.12854],[80.18319,29.13718],[80.18689,29.13667],[80.1972,29.13058],[80.20309,29.12969],[80.20969,29.12197],[80.23304,29.11849],[80.23868,29.12124],[80.24342,29.12656],[80.24835,29.12803],[80.25534,29.13735],[80.26013,29.1398],[80.2709,29.14087],[80.2727,29.14242],[80.27171,29.14714],[80.26517,29.15351],[80.25825,29.16477],[80.25774,29.16938],[80.26011,29.17248],[80.26043,29.17644],[80.25797,29.18468],[80.25873,29.18703],[80.24059,29.20291],[80.24454,29.21267],[80.24773,29.21628],[80.24786,29.22045],[80.25263,29.22144],[80.2574,29.21798],[80.25804,29.21065],[80.26039,29.20691],[80.27567,29.20666],[80.28146,29.20204],[80.28595,29.19585],[80.29049,29.19554],[80.29373,29.19776],[80.29744,29.20665],[80.29405,29.21182],[80.29608,29.22125],[80.29062,29.23181],[80.30019,29.24164],[80.29855,29.24952],[80.30008,29.25465],[80.29931,29.26102],[80.30465,29.27518],[80.30485,29.28664],[80.30706,29.28969],[80.31101,29.2909],[80.31851,29.3035],[80.316,29.30844],[80.31688,29.31525],[80.30919,29.32253],[80.29576,29.32453],[80.29092,29.33112],[80.29114,29.33604],[80.28475,29.34035],[80.27994,29.34724],[80.27996,29.35907],[80.27145,29.36437],[80.27158,29.37378],[80.27916,29.37884],[80.27309,29.38621],[80.27571,29.39222],[80.2482,29.40619],[80.24206,29.41154],[80.24598,29.41583],[80.24416,29.424],[80.24763,29.43559],[80.24224,29.44288],[80.24498,29.44679],[80.25481,29.44799],[80.25731,29.45174],[80.2661,29.44927],[80.27437,29.45012],[80.27452,29.45231],[80.26921,29.45416],[80.26907,29.45554],[80.27567,29.45852],[80.27928,29.45784],[80.27891,29.45387],[80.28083,29.4516],[80.28813,29.45124],[80.29444,29.45395],[80.2975,29.45173],[80.30178,29.45278],[80.30236,29.45509],[80.28716,29.47357],[80.28694,29.47698],[80.29352,29.47958],[80.29666,29.48526],[80.29622,29.48775],[80.29873,29.49061],[80.30116,29.49029],[80.3047,29.48623],[80.31306,29.48481],[80.31462,29.49039],[80.31313,29.49611],[80.31422,29.49943],[80.3292,29.50575],[80.33213,29.51294],[80.34171,29.51028],[80.34967,29.51921],[80.34863,29.52436],[80.35561,29.52795],[80.35788,29.53277],[80.34857,29.54044],[80.34152,29.54054],[80.34134,29.54242],[80.34563,29.54861],[80.34247,29.55277],[80.34867,29.55535],[80.36358,29.55636],[80.36219,29.56032],[80.36307,29.56393],[80.37849,29.56105],[80.37911,29.57158],[80.38805,29.57146],[80.39101,29.58116],[80.40277,29.58929],[80.40794,29.59597],[80.40893,29.60423],[80.40598,29.6133],[80.40809,29.61521],[80.40818,29.62066],[80.41098,29.62543],[80.41824,29.6267],[80.42087,29.62985],[80.41933,29.63371],[80.42026,29.63833],[80.41432,29.64351],[80.41585,29.65258],[80.41394,29.65431],[80.41012,29.6538],[80.40601,29.65986],[80.39943,29.65855],[80.398,29.65979],[80.3988,29.66211],[80.3904,29.66451],[80.38987,29.67121],[80.38417,29.67509],[80.38486,29.68547],[80.38023,29.68959],[80.37943,29.70089],[80.3767,29.7035],[80.3745,29.71308],[80.37207,29.71549],[80.37587,29.72005],[80.36825,29.72195],[80.36564,29.72638],[80.36664,29.73124],[80.3696,29.734],[80.36432,29.74015],[80.36642,29.74919],[80.36907,29.75105],[80.37179,29.7494],[80.38527,29.75046],[80.38634,29.75135],[80.38484,29.75676],[80.38577,29.75906],[80.39038,29.76049],[80.39425,29.75827],[80.39737,29.75891],[80.39627,29.76528],[80.40067,29.77458],[80.40475,29.778],[80.40368,29.78192],[80.40724,29.78409],[80.40695,29.79474],[80.4127,29.79165],[80.41588,29.79564],[80.42867,29.79785],[80.43503,29.80597],[80.43708,29.80589],[80.43947,29.80184],[80.44347,29.79926],[80.44831,29.79904],[80.45321,29.80217],[80.46432,29.80238],[80.47999,29.79539],[80.49386,29.7958],[80.49431,29.79875],[80.49261,29.80173],[80.49449,29.8019],[80.49574,29.80503],[80.49989,29.80821],[80.49754,29.81111],[80.50109,29.81739],[80.50464,29.81948],[80.50668,29.82302],[80.52195,29.82743],[80.52376,29.82948],[80.5236,29.83245],[80.52779,29.83362],[80.53138,29.83869],[80.53566,29.8389],[80.53873,29.8475],[80.54389,29.84668],[80.54823,29.85036],[80.55312,29.85134],[80.55138,29.85636],[80.55423,29.85946],[80.55427,29.86164],[80.56127,29.86645],[80.55678,29.87036],[80.56555,29.87927],[80.57239,29.89489],[80.56971,29.90875],[80.57411,29.92404],[80.57788,29.92773],[80.58133,29.937],[80.59112,29.9496],[80.60185,29.95813],[80.60868,29.9588],[80.61918,29.96359],[80.62957,29.96543],[80.63702,29.96348],[80.64056,29.95967],[80.64879,29.95573],[80.67455,29.95721],[80.68243,29.9624],[80.68398,29.967],[80.69041,29.97462],[80.69719,29.97978],[80.7,29.97967],[80.70532,29.98627],[80.71227,29.99061],[80.71896,30.00058],[80.737,29.99936],[80.74456,30.00385],[80.74954,30.00901],[80.75391,30.01984],[80.75772,30.0242],[80.75807,30.0283],[80.75562,30.03158],[80.75589,30.03985],[80.75913,30.04269],[80.75849,30.04512],[80.76103,30.04952],[80.77213,30.0541],[80.77651,30.0544],[80.77954,30.05681],[80.78932,30.06958],[80.78988,30.07329],[80.79962,30.08093],[80.80561,30.08999],[80.81373,30.09309],[80.8145,30.09582],[80.81919,30.09683],[80.82071,30.09969],[80.82584,30.10011],[80.82919,30.09729],[80.83977,30.09871],[80.84601,30.10438],[80.84586,30.10697],[80.84189,30.11117],[80.84472,30.11623],[80.85425,30.11908],[80.85496,30.12047],[80.86254,30.12105],[80.86845,30.12619],[80.87477,30.12649],[80.87683,30.13439],[80.87145,30.14759],[80.8704,30.15919],[80.86717,30.1703],[80.86776,30.17387],[80.88197,30.1837],[80.89096,30.19643],[80.89561,30.20839],[80.90273,30.21538],[80.91972,30.2142],[80.9217,30.20517],[80.92131,30.19834],[80.91828,30.18983],[80.94442,30.17869],[80.95001,30.17826],[80.96005,30.17899],[80.99961,30.19252],[81.00745,30.19183],[81.01316,30.1941],[81.03106,30.19638],[81.03503,30.19815],[81.03625,30.20163],[81.04328,30.20456],[81.04661,30.21087],[81.03105,30.22015],[81.03002,30.22184],[81.0314,30.2261],[81.0271,30.22846],[81.03321,30.24639],[81.01243,30.25495],[81.00555,30.26309],[80.98839,30.26542],[80.95749,30.2751],[80.93306,30.2801],[80.89626,30.294],[80.86272,30.29947],[80.82157,30.31556],[80.8007,30.32965],[80.78733,30.34261],[80.78462,30.34987],[80.78565,30.35414],[80.78359,30.35785],[80.75197,30.3935],[80.74572,30.39737],[80.71352,30.40817],[80.67807,30.43745],[80.65202,30.44429],[80.63786,30.45369],[80.61609,30.46515],[80.59801,30.47877],[80.58556,30.48214],[80.5802,30.48093],[80.57659,30.47819],[80.56985,30.46662],[80.56006,30.46637],[80.55554,30.46486],[80.55142,30.46089],[80.54761,30.44859],[80.53908,30.4492],[80.52459,30.46265],[80.5171,30.47318],[80.5095,30.47552],[80.49833,30.48417],[80.45596,30.49422],[80.44769,30.49765],[80.43133,30.50718],[80.42917,30.51096],[80.41948,30.51518],[80.41558,30.52533],[80.41273,30.5252],[80.40686,30.5205],[80.39831,30.51676],[80.38559,30.51505],[80.38283,30.51614],[80.38142,30.52006],[80.37833,30.52188],[80.3739,30.52145],[80.36061,30.52735],[80.31886,30.55938],[80.28307,30.57219],[80.27703,30.56583],[80.27359,30.56504],[80.26623,30.56664],[80.26171,30.56506],[80.25776,30.55884],[80.25325,30.56543],[80.24891,30.5687],[80.22683,30.57895],[80.22736,30.59343],[80.22963,30.60089],[80.2288,30.60349],[80.21709,30.60836],[80.21167,30.62242],[80.21193,30.62481],[80.21872,30.62864],[80.22182,30.63334],[80.22117,30.64182],[80.19716,30.66209],[80.19761,30.68001],[80.19971,30.68305],[80.20407,30.68485],[80.21253,30.68426],[80.2298,30.68728],[80.23457,30.68829],[80.23642,30.69038],[80.23687,30.70747],[80.24762,30.71781],[80.25051,30.73714],[80.25044,30.74235],[80.2429,30.74663],[80.24107,30.75076],[80.23966,30.76206],[80.23018,30.75918],[80.21977,30.75036],[80.21491,30.74906],[80.2001,30.76472],[80.20028,30.77268],[80.20322,30.77652],[80.19836,30.77884],[80.18756,30.78985],[80.18447,30.79724],[80.17777,30.80405],[80.15815,30.80588],[80.15597,30.80487],[80.1542,30.79974],[80.15737,30.78873],[80.15376,30.78743],[80.14354,30.78975],[80.13774,30.7841],[80.13003,30.78198],[80.12242,30.77736],[80.11091,30.7793],[80.09571,30.79089],[80.08901,30.79408],[80.08499,30.80402],[80.07675,30.8155],[80.05747,30.82941],[80.0573,30.83491],[80.05873,30.83737],[80.05602,30.84151],[80.05322,30.84199],[80.04461,30.83562],[80.04203,30.83582],[80.02507,30.84809],[80.01747,30.85556],[80.01225,30.86354],[80.00375,30.86508],[79.99729,30.86909],[79.9925,30.87694],[79.96966,30.88245],[79.96455,30.88603],[79.96215,30.89002],[79.95369,30.88506],[79.94491,30.88616],[79.93564,30.88244],[79.93085,30.88133],[79.9291,30.88243],[79.9251,30.89318],[79.9135,30.90758],[79.91039,30.91507],[79.89026,30.91864],[79.88705,30.93172],[79.88864,30.93929],[79.88496,30.94218],[79.88224,30.95086],[79.88239,30.9554],[79.87583,30.96752],[79.86271,30.97536],[79.85616,30.97742],[79.83858,30.97396],[79.83554,30.97533],[79.82276,30.97339],[79.81637,30.97393],[79.80724,30.98177],[79.80277,30.97929],[79.79862,30.9797],[79.79542,30.98162],[79.79189,30.98836],[79.78086,30.98752],[79.77463,30.98889],[79.75301,31.00786],[79.7471,31.00304],[79.73803,30.98374],[79.73548,30.98154],[79.72669,30.98028],[79.71711,30.976],[79.708,30.97832],[79.70162,30.97308],[79.69796,30.9725],[79.6749,30.98349],[79.66499,30.98292],[79.6634,30.97934],[79.66487,30.96956],[79.6636,30.96653],[79.65849,30.96294],[79.65034,30.96155],[79.63327,30.95338],[79.61985,30.95129],[79.61412,30.94425],[79.60551,30.93982],[79.60346,30.93265],[79.60185,30.93348],[79.60167,30.93995],[79.5967,30.94476],[79.59014,30.94818],[79.58295,30.94968],[79.57176,30.94855],[79.56888,30.95006],[79.56454,30.95721],[79.55559,30.95732],[79.55255,30.96007],[79.54595,30.9712],[79.54034,30.97546],[79.54065,30.97987],[79.54702,30.98553],[79.54844,30.98953],[79.53812,30.99019],[79.5242,31.01445],[79.51903,31.02671],[79.50693,31.03208],[79.49161,31.03354],[79.46859,31.03347],[79.4456,31.02805],[79.43061,31.02862],[79.42476,31.03049],[79.42248,31.04842],[79.42569,31.06636],[79.42457,31.07107],[79.40773,31.07699],[79.40402,31.08704],[79.40212,31.10214],[79.3988,31.10779],[79.33253,31.12735],[79.31748,31.13672],[79.30943,31.14744],[79.3072,31.15778],[79.30096,31.16781],[79.30316,31.19037],[79.2999,31.20573],[79.29262,31.22122],[79.28437,31.23239],[79.28017,31.23496],[79.25707,31.24017],[79.25187,31.24302],[79.25028,31.25536]]]}} +{"type":"Feature","properties":{"code_scheme":"ISO-3166-2","area_code":"IN-UT","area_level":"State","area_name":"Uttarakhand","geometry_source":"SOI_States","same_as":"ISO-3166-2/IN-UK/State"},"geometry":{"type":"Polygon","coordinates":[[[79.25028,31.25536],[79.25239,31.266],[79.26988,31.27858],[79.27186,31.28319],[79.2715,31.28677],[79.26577,31.29321],[79.25184,31.30177],[79.23921,31.31421],[79.23936,31.31794],[79.2465,31.3253],[79.24648,31.33004],[79.225,31.3387],[79.21157,31.34639],[79.19221,31.36281],[79.18235,31.38517],[79.14357,31.42547],[79.12742,31.43486],[79.10848,31.43763],[79.09956,31.44332],[79.09,31.44499],[79.07788,31.45268],[79.07046,31.4601],[79.06424,31.46208],[79.06174,31.46135],[79.05592,31.455],[79.05247,31.44694],[79.05085,31.44003],[79.05266,31.4231],[79.05151,31.41979],[79.03503,31.40792],[79.02374,31.39637],[79.01763,31.38556],[79.01192,31.36772],[79.01083,31.35708],[78.98991,31.3453],[78.96698,31.33689],[78.94759,31.31952],[78.94422,31.30793],[78.94166,31.27421],[78.93707,31.26062],[78.93269,31.25294],[78.9121,31.25515],[78.9117,31.253],[78.91155,31.25147],[78.9161,31.24859],[78.91919,31.24222],[78.91966,31.23617],[78.92203,31.23154],[78.92206,31.22531],[78.92609,31.2231],[78.92605,31.22007],[78.93113,31.21605],[78.94773,31.21677],[78.94868,31.21331],[78.94383,31.20648],[78.94703,31.20279],[78.948,31.19851],[78.95831,31.19037],[78.95753,31.18659],[78.97266,31.17991],[78.9792,31.17902],[78.9808,31.17616],[78.98373,31.17613],[78.98591,31.17383],[78.9905,31.16127],[78.98822,31.15421],[78.99083,31.14816],[78.98758,31.14329],[78.99076,31.13806],[78.9996,31.13469],[79.00366,31.12154],[79.0068,31.11853],[79.00892,31.10992],[79.00216,31.11242],[78.99855,31.10995],[78.99004,31.10852],[78.97299,31.10808],[78.96308,31.10118],[78.95073,31.09798],[78.94512,31.10057],[78.93223,31.10068],[78.92593,31.10944],[78.92057,31.11072],[78.91273,31.10764],[78.91231,31.10208],[78.9086,31.09886],[78.90044,31.09979],[78.89064,31.0969],[78.88543,31.09872],[78.87289,31.10886],[78.86524,31.12001],[78.85352,31.12208],[78.84801,31.12511],[78.84147,31.12971],[78.83814,31.13834],[78.83121,31.1406],[78.82734,31.15262],[78.82296,31.15774],[78.82489,31.16351],[78.81807,31.16778],[78.81304,31.16888],[78.81072,31.17187],[78.81047,31.18026],[78.8143,31.18754],[78.81738,31.18961],[78.81641,31.19437],[78.80991,31.19828],[78.79675,31.19641],[78.77916,31.18889],[78.76518,31.18576],[78.75641,31.18783],[78.72838,31.18965],[78.71833,31.18777],[78.7097,31.1897],[78.70336,31.189],[78.695,31.19217],[78.68677,31.19776],[78.67882,31.19625],[78.6719,31.19688],[78.66735,31.19075],[78.66172,31.18923],[78.65801,31.18504],[78.66001,31.19108],[78.65654,31.19357],[78.65732,31.19573],[78.64907,31.20217],[78.6493,31.21087],[78.64704,31.21472],[78.63655,31.21484],[78.62597,31.21787],[78.62257,31.22407],[78.60934,31.22926],[78.60092,31.2281],[78.59676,31.22512],[78.5895,31.22667],[78.57824,31.22526],[78.57486,31.22122],[78.56807,31.21915],[78.56549,31.21348],[78.55162,31.19991],[78.52652,31.19646],[78.50756,31.19587],[78.48375,31.19894],[78.48427,31.20121],[78.48145,31.20451],[78.4798,31.21378],[78.47286,31.21845],[78.46174,31.23603],[78.45771,31.23778],[78.45571,31.24102],[78.44999,31.24064],[78.44359,31.24435],[78.43658,31.25412],[78.43425,31.25458],[78.43116,31.25275],[78.42591,31.24425],[78.42074,31.24405],[78.4142,31.23961],[78.40695,31.24219],[78.40283,31.24789],[78.40717,31.25621],[78.39772,31.26622],[78.39617,31.27531],[78.38951,31.2742],[78.3863,31.27143],[78.38354,31.28248],[78.37032,31.28633],[78.35197,31.2806],[78.34561,31.28059],[78.33991,31.28267],[78.33187,31.27761],[78.31803,31.27892],[78.31678,31.28153],[78.31116,31.28314],[78.30804,31.27554],[78.31006,31.27409],[78.31045,31.27109],[78.30633,31.25989],[78.30255,31.25902],[78.29642,31.26113],[78.29188,31.25995],[78.28287,31.26621],[78.27996,31.26247],[78.27603,31.26151],[78.2735,31.25589],[78.26908,31.25232],[78.26868,31.24858],[78.26264,31.24519],[78.26047,31.23975],[78.25539,31.23851],[78.24951,31.24004],[78.25071,31.23331],[78.24695,31.23041],[78.24317,31.2293],[78.23709,31.23267],[78.22643,31.23501],[78.22032,31.23394],[78.21626,31.22971],[78.21517,31.222],[78.21244,31.21957],[78.20916,31.22012],[78.19948,31.2172],[78.19566,31.21971],[78.19218,31.22476],[78.18703,31.22705],[78.17976,31.22565],[78.17381,31.22684],[78.16715,31.22465],[78.16023,31.22548],[78.1581,31.2189],[78.15362,31.21822],[78.14842,31.2137],[78.14768,31.21059],[78.13338,31.20833],[78.1286,31.20078],[78.12348,31.20015],[78.10362,31.18538],[78.09714,31.18421],[78.08774,31.18724],[78.06596,31.18717],[78.05121,31.17989],[78.04264,31.1785],[78.04104,31.17292],[78.03384,31.16971],[78.02971,31.16411],[78.03034,31.15097],[78.02062,31.15155],[78.01445,31.15778],[78.00863,31.16082],[78.00082,31.16195],[77.99094,31.16005],[77.98472,31.15695],[77.98059,31.16212],[77.97327,31.16615],[77.96732,31.17337],[77.9589,31.17092],[77.95362,31.16595],[77.95149,31.16131],[77.94316,31.16126],[77.93516,31.15469],[77.92479,31.15043],[77.92152,31.15047],[77.91581,31.15389],[77.90862,31.15406],[77.89874,31.15023],[77.90045,31.1422],[77.89401,31.13396],[77.88905,31.13299],[77.89068,31.12175],[77.88876,31.11921],[77.88241,31.11772],[77.88052,31.11479],[77.87803,31.11503],[77.87845,31.11633],[77.87323,31.11497],[77.86382,31.10851],[77.86047,31.10159],[77.86374,31.09396],[77.85124,31.07337],[77.83806,31.07265],[77.82893,31.05827],[77.82436,31.05545],[77.82205,31.05519],[77.82296,31.05866],[77.81136,31.0591],[77.81679,31.05669],[77.81604,31.04998],[77.82162,31.04671],[77.82137,31.04274],[77.82982,31.02876],[77.82288,31.02928],[77.81747,31.03304],[77.81145,31.03163],[77.807,31.02677],[77.80751,31.01621],[77.80994,31.01099],[77.82501,31.0098],[77.82199,31.00429],[77.83182,30.99399],[77.82417,30.98842],[77.82513,30.98509],[77.82406,30.98047],[77.82243,30.97655],[77.8163,30.97278],[77.81438,30.96178],[77.82419,30.95711],[77.83219,30.95959],[77.83769,30.95518],[77.8376,30.95317],[77.83473,30.95205],[77.82862,30.95329],[77.82436,30.9505],[77.81398,30.95383],[77.79367,30.96875],[77.77238,30.97435],[77.76917,30.97419],[77.76659,30.97013],[77.75409,30.96448],[77.74901,30.95348],[77.75075,30.94349],[77.75404,30.93754],[77.75274,30.93381],[77.76394,30.93045],[77.7628,30.91818],[77.76589,30.91968],[77.76752,30.91733],[77.7718,30.91861],[77.78265,30.91673],[77.78473,30.91715],[77.78653,30.92026],[77.79182,30.92173],[77.80493,30.92359],[77.81153,30.92327],[77.8133,30.92187],[77.81094,30.91663],[77.81587,30.91032],[77.81528,30.90438],[77.80883,30.8967],[77.80138,30.89332],[77.79886,30.86804],[77.80359,30.86499],[77.80568,30.85321],[77.78624,30.85715],[77.77923,30.86037],[77.77738,30.86315],[77.77613,30.87541],[77.77341,30.87754],[77.76321,30.8804],[77.75822,30.8768],[77.7561,30.87268],[77.75719,30.85998],[77.75418,30.85547],[77.74587,30.85112],[77.74402,30.84659],[77.75768,30.83513],[77.76128,30.82607],[77.74837,30.82163],[77.7456,30.81314],[77.73497,30.80448],[77.73294,30.80108],[77.73187,30.79187],[77.72136,30.77579],[77.71512,30.77072],[77.70378,30.76516],[77.70896,30.75249],[77.70517,30.75078],[77.70243,30.74627],[77.70505,30.74275],[77.70879,30.73972],[77.72153,30.7416],[77.72836,30.73414],[77.73319,30.73534],[77.7373,30.73034],[77.73659,30.72415],[77.74669,30.71972],[77.74741,30.71697],[77.74562,30.71387],[77.75582,30.70692],[77.7504,30.70011],[77.75258,30.69665],[77.74694,30.69443],[77.74841,30.68775],[77.74675,30.68304],[77.74741,30.67985],[77.75916,30.67577],[77.75975,30.67309],[77.76421,30.67082],[77.77251,30.6691],[77.77458,30.66476],[77.78119,30.65997],[77.78445,30.65956],[77.78853,30.66228],[77.79209,30.66017],[77.79249,30.65693],[77.7875,30.65562],[77.78123,30.64667],[77.78674,30.6417],[77.78639,30.6367],[77.79062,30.634],[77.78605,30.62994],[77.78614,30.62442],[77.79255,30.62091],[77.79626,30.61365],[77.78672,30.61431],[77.78025,30.61284],[77.77111,30.61638],[77.76894,30.61452],[77.77107,30.61053],[77.77022,30.6049],[77.77241,30.59855],[77.77167,30.5969],[77.76435,30.59592],[77.75564,30.60469],[77.7519,30.60178],[77.7461,30.60389],[77.74325,30.60149],[77.74679,30.59746],[77.74325,30.59616],[77.74287,30.59385],[77.75664,30.58561],[77.76066,30.57752],[77.76714,30.57115],[77.76752,30.56535],[77.77403,30.55784],[77.78357,30.55983],[77.79411,30.5532],[77.79718,30.55406],[77.79964,30.55766],[77.80637,30.55449],[77.81399,30.56008],[77.81785,30.56102],[77.8226,30.55378],[77.82001,30.54803],[77.82035,30.54519],[77.82351,30.54196],[77.8278,30.531],[77.82586,30.52625],[77.81982,30.52408],[77.81852,30.50807],[77.81505,30.50513],[77.80829,30.50478],[77.79986,30.50106],[77.78221,30.50027],[77.77567,30.49431],[77.76436,30.49108],[77.7394,30.47602],[77.73172,30.47314],[77.72098,30.473],[77.7072,30.45924],[77.69794,30.45586],[77.69025,30.44802],[77.67077,30.44419],[77.66298,30.44704],[77.65237,30.44805],[77.649,30.44515],[77.64865,30.44032],[77.64507,30.43255],[77.6415,30.43179],[77.637,30.43319],[77.63192,30.43125],[77.62595,30.43469],[77.62268,30.43466],[77.59871,30.42816],[77.58445,30.42051],[77.57427,30.41338],[77.57232,30.41045],[77.57604,30.39739],[77.58255,30.39987],[77.58193,30.40134],[77.58546,30.40492],[77.59043,30.40628],[77.59831,30.40488],[77.59963,30.40104],[77.6017,30.3997],[77.60288,30.40293],[77.60505,30.40171],[77.61849,30.40238],[77.62289,30.40519],[77.62504,30.40453],[77.62552,30.40175],[77.62925,30.3979],[77.63591,30.39901],[77.6409,30.40279],[77.64726,30.40473],[77.65279,30.40122],[77.65665,30.40094],[77.65973,30.39056],[77.67242,30.39047],[77.67655,30.38778],[77.67623,30.38032],[77.67808,30.37566],[77.6831,30.37646],[77.68607,30.37925],[77.6904,30.37595],[77.69472,30.36574],[77.70224,30.35562],[77.70608,30.34707],[77.70897,30.345],[77.70978,30.34161],[77.71355,30.3399],[77.72185,30.33021],[77.73209,30.32809],[77.74701,30.3201],[77.76116,30.31829],[77.76578,30.31415],[77.78425,30.30565],[77.78571,30.30298],[77.79424,30.29716],[77.83283,30.28018],[77.83902,30.27453],[77.84075,30.27376],[77.84217,30.27639],[77.84717,30.27659],[77.84653,30.27164],[77.85869,30.27141],[77.86567,30.26582],[77.86933,30.26611],[77.87958,30.26195],[77.88166,30.26227],[77.88574,30.26698],[77.894,30.26537],[77.91089,30.25699],[77.93699,30.24916],[77.93822,30.24384],[77.94147,30.23979],[77.94413,30.23925],[77.94982,30.24231],[77.95151,30.24528],[77.9565,30.24545],[77.9617,30.24237],[77.958,30.24224],[77.94692,30.23406],[77.94602,30.23036],[77.94116,30.22788],[77.93839,30.22434],[77.93793,30.22084],[77.9348,30.21928],[77.93213,30.21439],[77.91894,30.21128],[77.91802,30.20307],[77.91393,30.19647],[77.91483,30.19156],[77.91175,30.18665],[77.91202,30.18253],[77.90028,30.17259],[77.88893,30.15732],[77.88118,30.15073],[77.87688,30.13923],[77.86842,30.12683],[77.86609,30.11913],[77.86042,30.11319],[77.84936,30.1047],[77.84161,30.10265],[77.83682,30.10352],[77.83661,30.09844],[77.83303,30.09458],[77.83428,30.09052],[77.82805,30.08592],[77.82167,30.08568],[77.81045,30.09272],[77.8012,30.09548],[77.79917,30.09047],[77.7997,30.08719],[77.79675,30.08528],[77.79845,30.08355],[77.79477,30.08125],[77.79582,30.07986],[77.79084,30.07502],[77.78113,30.06048],[77.77482,30.05522],[77.77114,30.04802],[77.77005,30.04255],[77.78137,30.0335],[77.77938,30.03067],[77.78549,30.02789],[77.78276,30.02385],[77.78198,30.01863],[77.77581,30.01797],[77.77391,30.01475],[77.77168,30.01498],[77.76196,30.0093],[77.76423,30.00445],[77.75538,29.999],[77.76038,29.99511],[77.75527,29.99198],[77.75034,29.98587],[77.74768,29.986],[77.74371,29.98336],[77.74603,29.98055],[77.7402,29.97529],[77.74062,29.96956],[77.7333,29.95593],[77.73701,29.95376],[77.74836,29.95164],[77.74492,29.94784],[77.74723,29.94664],[77.743,29.94381],[77.74299,29.94094],[77.74062,29.94219],[77.73047,29.9317],[77.74289,29.92493],[77.74298,29.9181],[77.74778,29.91117],[77.73653,29.90666],[77.7386,29.90321],[77.73367,29.90157],[77.73392,29.89964],[77.72927,29.90051],[77.72856,29.89755],[77.73186,29.8928],[77.72507,29.89031],[77.72328,29.88854],[77.72412,29.88678],[77.72275,29.88442],[77.71846,29.8874],[77.71602,29.88588],[77.71471,29.88408],[77.71695,29.87847],[77.72077,29.87616],[77.71521,29.87299],[77.7143,29.86945],[77.71786,29.86679],[77.71864,29.86545],[77.71652,29.86319],[77.72344,29.85505],[77.72567,29.85613],[77.72657,29.85424],[77.74189,29.85185],[77.74389,29.84758],[77.74145,29.84671],[77.74404,29.83988],[77.74022,29.83473],[77.7557,29.8253],[77.75399,29.8208],[77.75899,29.8185],[77.75608,29.81284],[77.75158,29.81068],[77.76322,29.80263],[77.76545,29.79592],[77.77467,29.79102],[77.77219,29.78641],[77.77396,29.78401],[77.77238,29.78],[77.77786,29.77498],[77.77312,29.7687],[77.78036,29.76502],[77.77052,29.75022],[77.76931,29.75059],[77.76953,29.74534],[77.78268,29.73624],[77.76973,29.7176],[77.77172,29.71385],[77.77872,29.71068],[77.78334,29.7094],[77.78558,29.71057],[77.79185,29.70994],[77.8026,29.70339],[77.81048,29.70237],[77.79905,29.68619],[77.80924,29.67986],[77.81534,29.67831],[77.83005,29.6683],[77.83195,29.67041],[77.83568,29.66956],[77.83678,29.67171],[77.83862,29.67049],[77.8431,29.67522],[77.84709,29.67541],[77.85025,29.67998],[77.85373,29.68154],[77.8557,29.68006],[77.86281,29.68945],[77.8656,29.68781],[77.8696,29.68899],[77.87471,29.68729],[77.87948,29.69291],[77.87901,29.70024],[77.88265,29.70243],[77.8909,29.69886],[77.8945,29.69973],[77.89661,29.7022],[77.90207,29.70119],[77.91253,29.69592],[77.91396,29.69848],[77.92007,29.69929],[77.91577,29.70221],[77.91692,29.70556],[77.91979,29.705],[77.92644,29.71422],[77.93457,29.71112],[77.93815,29.71448],[77.94094,29.71084],[77.94554,29.71306],[77.95302,29.70735],[77.94957,29.70413],[77.95098,29.70159],[77.93989,29.69608],[77.94567,29.69182],[77.94589,29.68996],[77.95093,29.68736],[77.94744,29.68309],[77.94937,29.6798],[77.96996,29.66643],[77.96955,29.65623],[77.96645,29.65014],[77.97945,29.64266],[77.98186,29.64512],[77.98379,29.64364],[77.97739,29.63125],[77.97597,29.61738],[77.97769,29.61345],[77.96021,29.61165],[77.94842,29.61691],[77.94277,29.60865],[77.9333,29.60051],[77.94034,29.59271],[77.9675,29.58007],[77.96889,29.58141],[77.97311,29.58031],[77.97493,29.58502],[77.97997,29.58515],[77.98272,29.58356],[77.98645,29.58438],[77.99353,29.59122],[77.99517,29.5958],[77.99617,29.59146],[78.0008,29.58621],[78.0216,29.58085],[78.01524,29.58725],[78.01828,29.5982],[78.03109,29.60832],[78.03307,29.61161],[78.03432,29.61038],[78.04649,29.61607],[78.04885,29.61461],[78.05711,29.62669],[78.05747,29.63069],[78.06855,29.63042],[78.08188,29.62514],[78.08669,29.62503],[78.08146,29.63514],[78.0934,29.64045],[78.10403,29.64123],[78.11929,29.64997],[78.13054,29.65254],[78.13359,29.6595],[78.13758,29.66354],[78.17162,29.69157],[78.18051,29.69683],[78.1884,29.69229],[78.19603,29.69268],[78.20201,29.71443],[78.20358,29.72826],[78.20016,29.73029],[78.20392,29.73727],[78.22165,29.74066],[78.22958,29.73669],[78.24023,29.74143],[78.24592,29.73452],[78.25009,29.73426],[78.25565,29.73825],[78.25975,29.73834],[78.26219,29.74355],[78.26703,29.74284],[78.2683,29.74645],[78.28095,29.75576],[78.28453,29.76178],[78.29268,29.75906],[78.30096,29.76825],[78.30061,29.77104],[78.30363,29.77476],[78.30687,29.77551],[78.30952,29.77996],[78.3129,29.77941],[78.3211,29.7855],[78.32439,29.78986],[78.33074,29.79318],[78.33316,29.79267],[78.33566,29.79661],[78.34929,29.78848],[78.39276,29.76739],[78.40906,29.76338],[78.42851,29.76446],[78.44514,29.75038],[78.45564,29.74515],[78.47369,29.73988],[78.48782,29.73837],[78.50096,29.7329],[78.5102,29.72661],[78.51654,29.7194],[78.51871,29.70177],[78.52145,29.69347],[78.52149,29.65782],[78.53267,29.63875],[78.54081,29.62709],[78.54424,29.62555],[78.56507,29.60109],[78.58036,29.58637],[78.61773,29.55803],[78.62425,29.55654],[78.63851,29.54666],[78.65047,29.546],[78.69972,29.50621],[78.70626,29.50268],[78.71121,29.50036],[78.72009,29.50217],[78.73059,29.50038],[78.73273,29.50199],[78.73819,29.50019],[78.74501,29.50078],[78.74919,29.49596],[78.75359,29.49619],[78.75655,29.49459],[78.75903,29.49064],[78.77757,29.47714],[78.79967,29.46457],[78.81056,29.46581],[78.82274,29.45975],[78.84108,29.45715],[78.88087,29.44338],[78.9002,29.44149],[78.91872,29.43426],[78.92534,29.43383],[78.93634,29.43822],[78.94233,29.43857],[78.94038,29.43756],[78.94024,29.43526],[78.94312,29.43469],[78.93831,29.43401],[78.92571,29.42595],[78.92398,29.41881],[78.91875,29.40988],[78.91838,29.40351],[78.91148,29.39961],[78.91179,29.39375],[78.90507,29.38951],[78.90219,29.38495],[78.89216,29.38096],[78.88734,29.37305],[78.87774,29.37497],[78.87573,29.37198],[78.87958,29.36936],[78.87871,29.36601],[78.86032,29.3582],[78.85193,29.36033],[78.85113,29.35552],[78.85598,29.34972],[78.84987,29.34482],[78.84558,29.34419],[78.84024,29.34597],[78.83576,29.35046],[78.83074,29.35149],[78.82745,29.35421],[78.82834,29.35967],[78.82636,29.36143],[78.8276,29.36377],[78.82586,29.36555],[78.83026,29.36801],[78.82473,29.36713],[78.82215,29.35914],[78.81051,29.34012],[78.7999,29.33458],[78.80286,29.33125],[78.8012,29.32524],[78.80472,29.31925],[78.7982,29.31901],[78.79545,29.31471],[78.79591,29.31177],[78.78955,29.3153],[78.79054,29.31889],[78.7954,29.32501],[78.79309,29.32683],[78.79345,29.32817],[78.79052,29.33059],[78.78679,29.32611],[78.78525,29.32715],[78.77748,29.32573],[78.77333,29.32849],[78.77431,29.33198],[78.76655,29.3374],[78.76081,29.33293],[78.75376,29.33122],[78.75369,29.32732],[78.74955,29.32324],[78.75032,29.31735],[78.74508,29.31794],[78.74068,29.31579],[78.74067,29.32042],[78.73367,29.3219],[78.73577,29.31853],[78.73209,29.31756],[78.73134,29.31352],[78.73518,29.30654],[78.73445,29.30294],[78.72719,29.30551],[78.72299,29.30345],[78.71859,29.30664],[78.71837,29.30342],[78.72269,29.29932],[78.72675,29.2978],[78.72843,29.29922],[78.73452,29.29957],[78.73614,29.29676],[78.76502,29.27931],[78.77321,29.27113],[78.77019,29.26704],[78.77383,29.26199],[78.78509,29.25365],[78.78815,29.25337],[78.78975,29.25496],[78.79189,29.25227],[78.79042,29.25017],[78.79077,29.2469],[78.79324,29.24453],[78.79841,29.24442],[78.80737,29.23668],[78.82008,29.23214],[78.8199,29.23374],[78.82243,29.23332],[78.82571,29.23611],[78.82787,29.23531],[78.83231,29.23675],[78.83816,29.24255],[78.83818,29.24109],[78.8413,29.23969],[78.83946,29.23679],[78.84337,29.23484],[78.84554,29.23677],[78.84954,29.23271],[78.85107,29.23682],[78.85537,29.23852],[78.85834,29.24184],[78.86217,29.23943],[78.85859,29.23299],[78.86304,29.23209],[78.86326,29.23031],[78.87069,29.22725],[78.87264,29.22759],[78.87261,29.23031],[78.87448,29.23025],[78.87423,29.22678],[78.87648,29.22553],[78.87176,29.22257],[78.87583,29.21902],[78.87947,29.21881],[78.88052,29.217],[78.87812,29.21571],[78.87854,29.21426],[78.88328,29.21131],[78.87828,29.20636],[78.8751,29.20651],[78.87522,29.20517],[78.88104,29.19992],[78.8855,29.20317],[78.89062,29.20118],[78.89128,29.19808],[78.88675,29.19508],[78.89006,29.19221],[78.89428,29.19189],[78.89636,29.19358],[78.89974,29.18588],[78.89457,29.18576],[78.89849,29.18181],[78.90317,29.18091],[78.90347,29.17824],[78.90683,29.18006],[78.90875,29.17856],[78.90167,29.16956],[78.90905,29.16354],[78.90801,29.16069],[78.90909,29.15732],[78.90637,29.15174],[78.91287,29.15438],[78.91545,29.15245],[78.91548,29.14994],[78.91205,29.14742],[78.91105,29.14443],[78.91623,29.14067],[78.91621,29.13773],[78.91876,29.13553],[78.90718,29.12741],[78.90633,29.12501],[78.92702,29.11813],[78.93464,29.12964],[78.94286,29.12617],[78.94375,29.12751],[78.95645,29.11989],[78.96417,29.1305],[78.97287,29.12691],[78.97492,29.13145],[78.97468,29.13595],[78.97755,29.1366],[78.97676,29.13855],[78.98234,29.14305],[78.98984,29.13949],[78.99128,29.13068],[78.99665,29.13012],[79.00424,29.1259],[79.00171,29.12226],[79.0035,29.11921],[79.00625,29.11828],[79.00817,29.11191],[79.01419,29.11662],[79.0267,29.11242],[79.03456,29.1177],[79.04063,29.12767],[79.03175,29.1281],[79.02732,29.13244],[79.01921,29.12934],[79.01692,29.13077],[79.01494,29.13395],[79.02111,29.14583],[79.01782,29.15384],[79.01908,29.15572],[79.02382,29.15555],[79.02978,29.14697],[79.03461,29.14407],[79.0374,29.14482],[79.03595,29.15309],[79.03937,29.15841],[79.03237,29.15913],[79.02912,29.16413],[79.03213,29.16843],[79.03584,29.16939],[79.03944,29.16857],[79.04538,29.16418],[79.0505,29.15693],[79.0537,29.15487],[79.05942,29.15542],[79.07487,29.15164],[79.09057,29.14339],[79.10139,29.1341],[79.1119,29.12792],[79.11946,29.12577],[79.12273,29.12734],[79.12492,29.13306],[79.12687,29.13268],[79.14189,29.12433],[79.14082,29.12226],[79.1434,29.12027],[79.15017,29.11867],[79.1535,29.11518],[79.15127,29.11327],[79.15245,29.10712],[79.15084,29.10341],[79.15318,29.10155],[79.14832,29.09914],[79.15153,29.0954],[79.15002,29.09451],[79.14996,29.09176],[79.14327,29.08668],[79.14342,29.08291],[79.14212,29.08194],[79.14181,29.07763],[79.14422,29.07203],[79.1425,29.06695],[79.14587,29.06457],[79.14513,29.06296],[79.14733,29.06226],[79.14876,29.05845],[79.15332,29.05686],[79.16191,29.04896],[79.168,29.04738],[79.17029,29.04861],[79.17511,29.04625],[79.1718,29.04506],[79.17192,29.04264],[79.16916,29.04238],[79.17085,29.03942],[79.168,29.03826],[79.16884,29.03577],[79.16751,29.0322],[79.1644,29.03222],[79.16497,29.02884],[79.16235,29.02921],[79.1622,29.02409],[79.16589,29.02024],[79.16528,29.01779],[79.16843,29.01942],[79.17582,29.01574],[79.17106,29.01187],[79.18094,29.01288],[79.18267,29.01605],[79.18595,29.01764],[79.19384,29.01559],[79.19089,29.01895],[79.19077,29.02318],[79.19426,29.01972],[79.19741,29.02138],[79.20365,29.02074],[79.21173,29.02756],[79.22203,29.01945],[79.23155,29.01512],[79.24495,29.01008],[79.25102,29.01024],[79.24775,29.00334],[79.25913,28.9924],[79.29233,28.97381],[79.29885,28.9728],[79.30727,28.96647],[79.30747,28.96787],[79.31033,28.96799],[79.31092,28.96999],[79.31268,28.96897],[79.31249,28.97131],[79.30986,28.97172],[79.31265,28.97498],[79.31106,28.97526],[79.3119,28.97706],[79.32146,28.9718],[79.33722,28.97213],[79.35627,28.9677],[79.3647,28.96807],[79.36517,28.97074],[79.36099,28.97193],[79.36309,28.97798],[79.36211,28.98145],[79.36763,28.98664],[79.37236,28.98747],[79.37239,28.9846],[79.37769,28.9757],[79.37714,28.97139],[79.38175,28.9698],[79.3821,28.96224],[79.38631,28.95319],[79.3853,28.95177],[79.38733,28.94969],[79.39065,28.94739],[79.40281,28.95001],[79.40471,28.94921],[79.40433,28.95041],[79.4062,28.94985],[79.4054,28.95151],[79.40748,28.95225],[79.41583,28.94382],[79.41558,28.94137],[79.41901,28.94003],[79.41889,28.93298],[79.41584,28.92787],[79.42531,28.92296],[79.42795,28.91978],[79.42689,28.91618],[79.42487,28.91675],[79.427,28.91533],[79.42479,28.91545],[79.42692,28.91442],[79.42513,28.91437],[79.42539,28.91324],[79.42764,28.91269],[79.42511,28.91213],[79.42692,28.91128],[79.42428,28.90841],[79.42532,28.90522],[79.42252,28.90303],[79.42251,28.89948],[79.42466,28.89743],[79.42294,28.89349],[79.42773,28.89298],[79.43099,28.8868],[79.42787,28.87653],[79.42501,28.87366],[79.4249,28.86812],[79.42557,28.86642],[79.44046,28.86174],[79.44518,28.86383],[79.44623,28.86776],[79.45019,28.86772],[79.44979,28.87079],[79.45164,28.87163],[79.46194,28.86676],[79.46611,28.86777],[79.47057,28.86541],[79.47722,28.86457],[79.47892,28.86728],[79.47873,28.87114],[79.49714,28.87287],[79.50992,28.86453],[79.5114,28.86722],[79.52178,28.86474],[79.52351,28.86712],[79.53304,28.86971],[79.53716,28.87694],[79.54166,28.88043],[79.54046,28.88193],[79.54219,28.88453],[79.54595,28.88558],[79.54791,28.89097],[79.54945,28.89008],[79.55494,28.89376],[79.55275,28.8958],[79.55648,28.89926],[79.57062,28.89253],[79.56999,28.88775],[79.57124,28.88646],[79.57755,28.88864],[79.57917,28.88618],[79.57835,28.88349],[79.58427,28.87918],[79.58019,28.87115],[79.58097,28.86616],[79.57349,28.85465],[79.57565,28.85045],[79.58436,28.84627],[79.58751,28.84999],[79.59155,28.8495],[79.5936,28.85204],[79.59712,28.85125],[79.60339,28.85472],[79.6039,28.85683],[79.61331,28.85283],[79.62138,28.86431],[79.62613,28.86662],[79.63092,28.86112],[79.63601,28.86681],[79.64486,28.86343],[79.64745,28.86702],[79.65349,28.86921],[79.65557,28.86841],[79.65605,28.86977],[79.66571,28.86557],[79.66342,28.86194],[79.66744,28.8597],[79.67212,28.85801],[79.67738,28.85927],[79.68189,28.85679],[79.68367,28.85532],[79.68231,28.85347],[79.68316,28.84997],[79.692,28.84788],[79.68996,28.84533],[79.69292,28.84591],[79.70667,28.84101],[79.70752,28.84417],[79.70625,28.84445],[79.70962,28.8511],[79.71855,28.84881],[79.71991,28.84567],[79.72058,28.85027],[79.7234,28.85289],[79.72271,28.85523],[79.72637,28.86097],[79.73652,28.85626],[79.73825,28.85876],[79.74565,28.85992],[79.74907,28.87177],[79.75925,28.87085],[79.76675,28.87493],[79.78082,28.87139],[79.78344,28.87125],[79.78629,28.87341],[79.78861,28.87269],[79.79325,28.88287],[79.7998,28.88748],[79.8147,28.88369],[79.81383,28.88656],[79.81802,28.88781],[79.8293,28.88445],[79.82828,28.87828],[79.83253,28.87099],[79.83546,28.87104],[79.83565,28.87495],[79.84322,28.87588],[79.84565,28.87387],[79.84577,28.86354],[79.8496,28.8593],[79.84505,28.85537],[79.84534,28.85111],[79.84063,28.84768],[79.838,28.84832],[79.83288,28.85532],[79.83074,28.85523],[79.82978,28.85324],[79.83245,28.84584],[79.83634,28.84294],[79.83678,28.83992],[79.83087,28.83778],[79.82727,28.84167],[79.82382,28.83901],[79.8279,28.83695],[79.83131,28.83076],[79.83717,28.83235],[79.83245,28.82354],[79.82915,28.82139],[79.82945,28.81814],[79.82604,28.81493],[79.82429,28.80727],[79.81897,28.80547],[79.8199,28.81216],[79.81645,28.81692],[79.80723,28.80566],[79.80803,28.80091],[79.81394,28.79688],[79.81454,28.79889],[79.81281,28.80196],[79.81457,28.80261],[79.81995,28.79611],[79.82289,28.79563],[79.82432,28.79829],[79.82693,28.79497],[79.83081,28.79773],[79.83308,28.79682],[79.83433,28.79859],[79.83832,28.79753],[79.83986,28.80017],[79.83843,28.80122],[79.84152,28.80427],[79.84609,28.80474],[79.84547,28.80075],[79.84934,28.79964],[79.85237,28.8019],[79.85059,28.80333],[79.85289,28.80613],[79.85031,28.80601],[79.85166,28.80883],[79.85076,28.81045],[79.84659,28.81044],[79.85294,28.81373],[79.85212,28.81566],[79.84661,28.81744],[79.84785,28.81953],[79.8463,28.82318],[79.84863,28.82515],[79.85407,28.82411],[79.85371,28.82603],[79.85083,28.82693],[79.85102,28.82855],[79.85387,28.82699],[79.85772,28.83064],[79.86142,28.83053],[79.85898,28.83166],[79.86061,28.83304],[79.85888,28.8338],[79.86266,28.83706],[79.86319,28.84022],[79.8647,28.83777],[79.86719,28.83954],[79.87025,28.83845],[79.87166,28.84014],[79.87461,28.83634],[79.87337,28.8363],[79.87435,28.83424],[79.87256,28.83156],[79.87573,28.83311],[79.87847,28.83031],[79.87961,28.83241],[79.87857,28.83356],[79.8834,28.83398],[79.88212,28.83693],[79.88822,28.83656],[79.88905,28.83404],[79.89391,28.83146],[79.89199,28.82561],[79.89404,28.82379],[79.89407,28.8204],[79.91453,28.81848],[79.9107,28.81247],[79.91078,28.8099],[79.91552,28.80427],[79.90554,28.80299],[79.87849,28.81483],[79.87348,28.80939],[79.8696,28.80834],[79.87007,28.80576],[79.87473,28.80236],[79.87226,28.79936],[79.87306,28.79728],[79.8833,28.79454],[79.88426,28.79],[79.89728,28.78623],[79.90136,28.78198],[79.90647,28.78196],[79.90982,28.7854],[79.91781,28.78236],[79.91935,28.78412],[79.91884,28.7865],[79.92378,28.78671],[79.92652,28.79001],[79.93982,28.78772],[79.92852,28.77902],[79.92408,28.77316],[79.92699,28.77097],[79.92734,28.76871],[79.93057,28.76802],[79.93323,28.76428],[79.93258,28.76272],[79.9432,28.75989],[79.94315,28.75798],[79.93872,28.75313],[79.93863,28.75038],[79.94359,28.74862],[79.94648,28.74236],[79.94367,28.7348],[79.94596,28.72975],[79.9544,28.72286],[80.03013,28.74863],[80.05227,28.77828],[80.05545,28.78125],[80.06174,28.78319],[80.05867,28.78839],[80.06488,28.79443],[80.0681,28.80284],[80.05922,28.8168],[80.05179,28.82037],[80.05979,28.82539],[80.06292,28.83467],[80.06536,28.8369],[80.05847,28.91663],[80.09632,28.97574],[80.10055,28.9869],[80.11792,28.98155],[80.12669,29.00611],[80.13542,29.0074],[80.13625,29.00959],[80.1245,29.01307],[80.13124,29.0305],[80.12637,29.03194],[80.13718,29.06047],[80.12942,29.06272],[80.14479,29.1022],[80.16509,29.11848],[80.1675,29.12576],[80.17764,29.12854],[80.18319,29.13718],[80.18689,29.13667],[80.1972,29.13058],[80.20309,29.12969],[80.20969,29.12197],[80.23304,29.11849],[80.23868,29.12124],[80.24342,29.12656],[80.24835,29.12803],[80.25534,29.13735],[80.26013,29.1398],[80.2709,29.14087],[80.2727,29.14242],[80.27171,29.14714],[80.26517,29.15351],[80.25825,29.16477],[80.25774,29.16938],[80.26011,29.17248],[80.26043,29.17644],[80.25797,29.18468],[80.25873,29.18703],[80.24059,29.20291],[80.24454,29.21267],[80.24773,29.21628],[80.24786,29.22045],[80.25263,29.22144],[80.2574,29.21798],[80.25804,29.21065],[80.26039,29.20691],[80.27567,29.20666],[80.28146,29.20204],[80.28595,29.19585],[80.29049,29.19554],[80.29373,29.19776],[80.29744,29.20665],[80.29405,29.21182],[80.29608,29.22125],[80.29062,29.23181],[80.30019,29.24164],[80.29855,29.24952],[80.30008,29.25465],[80.29931,29.26102],[80.30465,29.27518],[80.30485,29.28664],[80.30706,29.28969],[80.31101,29.2909],[80.31851,29.3035],[80.316,29.30844],[80.31688,29.31525],[80.30919,29.32253],[80.29576,29.32453],[80.29092,29.33112],[80.29114,29.33604],[80.28475,29.34035],[80.27994,29.34724],[80.27996,29.35907],[80.27145,29.36437],[80.27158,29.37378],[80.27916,29.37884],[80.27309,29.38621],[80.27571,29.39222],[80.2482,29.40619],[80.24206,29.41154],[80.24598,29.41583],[80.24416,29.424],[80.24763,29.43559],[80.24224,29.44288],[80.24498,29.44679],[80.25481,29.44799],[80.25731,29.45174],[80.2661,29.44927],[80.27437,29.45012],[80.27452,29.45231],[80.26921,29.45416],[80.26907,29.45554],[80.27567,29.45852],[80.27928,29.45784],[80.27891,29.45387],[80.28083,29.4516],[80.28813,29.45124],[80.29444,29.45395],[80.2975,29.45173],[80.30178,29.45278],[80.30236,29.45509],[80.28716,29.47357],[80.28694,29.47698],[80.29352,29.47958],[80.29666,29.48526],[80.29622,29.48775],[80.29873,29.49061],[80.30116,29.49029],[80.3047,29.48623],[80.31306,29.48481],[80.31462,29.49039],[80.31313,29.49611],[80.31422,29.49943],[80.3292,29.50575],[80.33213,29.51294],[80.34171,29.51028],[80.34967,29.51921],[80.34863,29.52436],[80.35561,29.52795],[80.35788,29.53277],[80.34857,29.54044],[80.34152,29.54054],[80.34134,29.54242],[80.34563,29.54861],[80.34247,29.55277],[80.34867,29.55535],[80.36358,29.55636],[80.36219,29.56032],[80.36307,29.56393],[80.37849,29.56105],[80.37911,29.57158],[80.38805,29.57146],[80.39101,29.58116],[80.40277,29.58929],[80.40794,29.59597],[80.40893,29.60423],[80.40598,29.6133],[80.40809,29.61521],[80.40818,29.62066],[80.41098,29.62543],[80.41824,29.6267],[80.42087,29.62985],[80.41933,29.63371],[80.42026,29.63833],[80.41432,29.64351],[80.41585,29.65258],[80.41394,29.65431],[80.41012,29.6538],[80.40601,29.65986],[80.39943,29.65855],[80.398,29.65979],[80.3988,29.66211],[80.3904,29.66451],[80.38987,29.67121],[80.38417,29.67509],[80.38486,29.68547],[80.38023,29.68959],[80.37943,29.70089],[80.3767,29.7035],[80.3745,29.71308],[80.37207,29.71549],[80.37587,29.72005],[80.36825,29.72195],[80.36564,29.72638],[80.36664,29.73124],[80.3696,29.734],[80.36432,29.74015],[80.36642,29.74919],[80.36907,29.75105],[80.37179,29.7494],[80.38527,29.75046],[80.38634,29.75135],[80.38484,29.75676],[80.38577,29.75906],[80.39038,29.76049],[80.39425,29.75827],[80.39737,29.75891],[80.39627,29.76528],[80.40067,29.77458],[80.40475,29.778],[80.40368,29.78192],[80.40724,29.78409],[80.40695,29.79474],[80.4127,29.79165],[80.41588,29.79564],[80.42867,29.79785],[80.43503,29.80597],[80.43708,29.80589],[80.43947,29.80184],[80.44347,29.79926],[80.44831,29.79904],[80.45321,29.80217],[80.46432,29.80238],[80.47999,29.79539],[80.49386,29.7958],[80.49431,29.79875],[80.49261,29.80173],[80.49449,29.8019],[80.49574,29.80503],[80.49989,29.80821],[80.49754,29.81111],[80.50109,29.81739],[80.50464,29.81948],[80.50668,29.82302],[80.52195,29.82743],[80.52376,29.82948],[80.5236,29.83245],[80.52779,29.83362],[80.53138,29.83869],[80.53566,29.8389],[80.53873,29.8475],[80.54389,29.84668],[80.54823,29.85036],[80.55312,29.85134],[80.55138,29.85636],[80.55423,29.85946],[80.55427,29.86164],[80.56127,29.86645],[80.55678,29.87036],[80.56555,29.87927],[80.57239,29.89489],[80.56971,29.90875],[80.57411,29.92404],[80.57788,29.92773],[80.58133,29.937],[80.59112,29.9496],[80.60185,29.95813],[80.60868,29.9588],[80.61918,29.96359],[80.62957,29.96543],[80.63702,29.96348],[80.64056,29.95967],[80.64879,29.95573],[80.67455,29.95721],[80.68243,29.9624],[80.68398,29.967],[80.69041,29.97462],[80.69719,29.97978],[80.7,29.97967],[80.70532,29.98627],[80.71227,29.99061],[80.71896,30.00058],[80.737,29.99936],[80.74456,30.00385],[80.74954,30.00901],[80.75391,30.01984],[80.75772,30.0242],[80.75807,30.0283],[80.75562,30.03158],[80.75589,30.03985],[80.75913,30.04269],[80.75849,30.04512],[80.76103,30.04952],[80.77213,30.0541],[80.77651,30.0544],[80.77954,30.05681],[80.78932,30.06958],[80.78988,30.07329],[80.79962,30.08093],[80.80561,30.08999],[80.81373,30.09309],[80.8145,30.09582],[80.81919,30.09683],[80.82071,30.09969],[80.82584,30.10011],[80.82919,30.09729],[80.83977,30.09871],[80.84601,30.10438],[80.84586,30.10697],[80.84189,30.11117],[80.84472,30.11623],[80.85425,30.11908],[80.85496,30.12047],[80.86254,30.12105],[80.86845,30.12619],[80.87477,30.12649],[80.87683,30.13439],[80.87145,30.14759],[80.8704,30.15919],[80.86717,30.1703],[80.86776,30.17387],[80.88197,30.1837],[80.89096,30.19643],[80.89561,30.20839],[80.90273,30.21538],[80.91972,30.2142],[80.9217,30.20517],[80.92131,30.19834],[80.91828,30.18983],[80.94442,30.17869],[80.95001,30.17826],[80.96005,30.17899],[80.99961,30.19252],[81.00745,30.19183],[81.01316,30.1941],[81.03106,30.19638],[81.03503,30.19815],[81.03625,30.20163],[81.04328,30.20456],[81.04661,30.21087],[81.03105,30.22015],[81.03002,30.22184],[81.0314,30.2261],[81.0271,30.22846],[81.03321,30.24639],[81.01243,30.25495],[81.00555,30.26309],[80.98839,30.26542],[80.95749,30.2751],[80.93306,30.2801],[80.89626,30.294],[80.86272,30.29947],[80.82157,30.31556],[80.8007,30.32965],[80.78733,30.34261],[80.78462,30.34987],[80.78565,30.35414],[80.78359,30.35785],[80.75197,30.3935],[80.74572,30.39737],[80.71352,30.40817],[80.67807,30.43745],[80.65202,30.44429],[80.63786,30.45369],[80.61609,30.46515],[80.59801,30.47877],[80.58556,30.48214],[80.5802,30.48093],[80.57659,30.47819],[80.56985,30.46662],[80.56006,30.46637],[80.55554,30.46486],[80.55142,30.46089],[80.54761,30.44859],[80.53908,30.4492],[80.52459,30.46265],[80.5171,30.47318],[80.5095,30.47552],[80.49833,30.48417],[80.45596,30.49422],[80.44769,30.49765],[80.43133,30.50718],[80.42917,30.51096],[80.41948,30.51518],[80.41558,30.52533],[80.41273,30.5252],[80.40686,30.5205],[80.39831,30.51676],[80.38559,30.51505],[80.38283,30.51614],[80.38142,30.52006],[80.37833,30.52188],[80.3739,30.52145],[80.36061,30.52735],[80.31886,30.55938],[80.28307,30.57219],[80.27703,30.56583],[80.27359,30.56504],[80.26623,30.56664],[80.26171,30.56506],[80.25776,30.55884],[80.25325,30.56543],[80.24891,30.5687],[80.22683,30.57895],[80.22736,30.59343],[80.22963,30.60089],[80.2288,30.60349],[80.21709,30.60836],[80.21167,30.62242],[80.21193,30.62481],[80.21872,30.62864],[80.22182,30.63334],[80.22117,30.64182],[80.19716,30.66209],[80.19761,30.68001],[80.19971,30.68305],[80.20407,30.68485],[80.21253,30.68426],[80.2298,30.68728],[80.23457,30.68829],[80.23642,30.69038],[80.23687,30.70747],[80.24762,30.71781],[80.25051,30.73714],[80.25044,30.74235],[80.2429,30.74663],[80.24107,30.75076],[80.23966,30.76206],[80.23018,30.75918],[80.21977,30.75036],[80.21491,30.74906],[80.2001,30.76472],[80.20028,30.77268],[80.20322,30.77652],[80.19836,30.77884],[80.18756,30.78985],[80.18447,30.79724],[80.17777,30.80405],[80.15815,30.80588],[80.15597,30.80487],[80.1542,30.79974],[80.15737,30.78873],[80.15376,30.78743],[80.14354,30.78975],[80.13774,30.7841],[80.13003,30.78198],[80.12242,30.77736],[80.11091,30.7793],[80.09571,30.79089],[80.08901,30.79408],[80.08499,30.80402],[80.07675,30.8155],[80.05747,30.82941],[80.0573,30.83491],[80.05873,30.83737],[80.05602,30.84151],[80.05322,30.84199],[80.04461,30.83562],[80.04203,30.83582],[80.02507,30.84809],[80.01747,30.85556],[80.01225,30.86354],[80.00375,30.86508],[79.99729,30.86909],[79.9925,30.87694],[79.96966,30.88245],[79.96455,30.88603],[79.96215,30.89002],[79.95369,30.88506],[79.94491,30.88616],[79.93564,30.88244],[79.93085,30.88133],[79.9291,30.88243],[79.9251,30.89318],[79.9135,30.90758],[79.91039,30.91507],[79.89026,30.91864],[79.88705,30.93172],[79.88864,30.93929],[79.88496,30.94218],[79.88224,30.95086],[79.88239,30.9554],[79.87583,30.96752],[79.86271,30.97536],[79.85616,30.97742],[79.83858,30.97396],[79.83554,30.97533],[79.82276,30.97339],[79.81637,30.97393],[79.80724,30.98177],[79.80277,30.97929],[79.79862,30.9797],[79.79542,30.98162],[79.79189,30.98836],[79.78086,30.98752],[79.77463,30.98889],[79.75301,31.00786],[79.7471,31.00304],[79.73803,30.98374],[79.73548,30.98154],[79.72669,30.98028],[79.71711,30.976],[79.708,30.97832],[79.70162,30.97308],[79.69796,30.9725],[79.6749,30.98349],[79.66499,30.98292],[79.6634,30.97934],[79.66487,30.96956],[79.6636,30.96653],[79.65849,30.96294],[79.65034,30.96155],[79.63327,30.95338],[79.61985,30.95129],[79.61412,30.94425],[79.60551,30.93982],[79.60346,30.93265],[79.60185,30.93348],[79.60167,30.93995],[79.5967,30.94476],[79.59014,30.94818],[79.58295,30.94968],[79.57176,30.94855],[79.56888,30.95006],[79.56454,30.95721],[79.55559,30.95732],[79.55255,30.96007],[79.54595,30.9712],[79.54034,30.97546],[79.54065,30.97987],[79.54702,30.98553],[79.54844,30.98953],[79.53812,30.99019],[79.5242,31.01445],[79.51903,31.02671],[79.50693,31.03208],[79.49161,31.03354],[79.46859,31.03347],[79.4456,31.02805],[79.43061,31.02862],[79.42476,31.03049],[79.42248,31.04842],[79.42569,31.06636],[79.42457,31.07107],[79.40773,31.07699],[79.40402,31.08704],[79.40212,31.10214],[79.3988,31.10779],[79.33253,31.12735],[79.31748,31.13672],[79.30943,31.14744],[79.3072,31.15778],[79.30096,31.16781],[79.30316,31.19037],[79.2999,31.20573],[79.29262,31.22122],[79.28437,31.23239],[79.28017,31.23496],[79.25707,31.24017],[79.25187,31.24302],[79.25028,31.25536]]]}} diff --git a/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json b/tools/area-lookups/data/areas/lgd-2026-09-03/manifest.json similarity index 81% rename from tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json rename to tools/area-lookups/data/areas/lgd-2026-09-03/manifest.json index faea5714..e8c33597 100644 --- a/tools/area-lookups/data/areas/lgd-2026-09-02/manifest.json +++ b/tools/area-lookups/data/areas/lgd-2026-09-03/manifest.json @@ -1,18 +1,18 @@ { - "snapshot_date": "2026-09-02", - "lgd_snapshot": "02Sep2026", + "snapshot_date": "2026-09-03", + "lgd_snapshot": "03Sep2026", "generated_by": "build_areas.py", "provenance": "https://lgdirectory.gov.in/ (via https://github.com/ramSeraph/opendata, GODL-India)", "components": { - "states": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.02Sep2026.csv.7z", - "districts": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.02Sep2026.csv.7z", - "subdistricts": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.02Sep2026.csv.7z", - "pincode_villages": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.02Sep2026.csv.7z" + "states": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/states.03Sep2026.csv.7z", + "districts": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/districts.03Sep2026.csv.7z", + "subdistricts": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/subdistricts.03Sep2026.csv.7z", + "pincode_villages": "https://github.com/ramSeraph/opendata/releases/download/lgd-latest-extra1/pincode_villages.03Sep2026.csv.7z" }, - "row_count": 25097, + "row_count": 25140, "rows_by_level": { "Country": 1, - "State": 36, + "State": 79, "District": 784, "Block": 7092, "PostalCode": 17184 @@ -44,43 +44,48 @@ "total": 1, "matched": 1, "inherited": 0, + "alias": 0, "empty": 0 }, "State": { - "total": 36, + "total": 79, "matched": 36, "inherited": 0, + "alias": 43, "empty": 0 }, "District": { "total": 784, "matched": 728, "inherited": 56, + "alias": 0, "empty": 0 }, "Block": { "total": 7092, "matched": 0, "inherited": 7092, + "alias": 0, "empty": 0 }, "PostalCode": { "total": 17184, "matched": 0, "inherited": 17184, + "alias": 0, "empty": 0 } }, "name_drift_count": 117, "parent_containment_check": { - "checked": 764, + "checked": 807, "violations": 0, "outliers": [] }, "polygons": { "file": "areas.geojsonl", - "features": 764, - "size_bytes": 11352745, + "features": 807, + "size_bytes": 14289483, "simplify_tolerance_deg": 0.001, "join_key": [ "code_scheme", @@ -96,6 +101,12 @@ "max_area_error_fraction": 0.002323, "max_bbox_shift_deg": 0.000921, "note": "Simplified outlines. Use --with-geometry for full fidelity." + }, + "aliases": { + "rows": 43, + "outlines_repeated": 43, + "broken_targets": [], + "cyclic_chains": [] } } } diff --git a/tools/area-lookups/join_geometry.py b/tools/area-lookups/join_geometry.py index bbc7ec76..6c3aae9d 100644 --- a/tools/area-lookups/join_geometry.py +++ b/tools/area-lookups/join_geometry.py @@ -725,7 +725,8 @@ def run(source, gazdir, cache, with_geometry, inherit, simplify): stats = {} for r in rows: stats.setdefault(r["area_level"], - {"total": 0, "matched": 0, "inherited": 0, "empty": 0}) + {"total": 0, "matched": 0, "inherited": 0, + "alias": 0, "empty": 0}) stats[r["area_level"]]["total"] += 1 # Pass 1: direct joins on the LGD code carried in the boundary layer. @@ -764,6 +765,14 @@ def run(source, gazdir, cache, with_geometry, inherit, simplify): # descendants copy that point. polygons = write_polygons(conf, gazdir, cache, rows, simplify, resolved) + # Alias rows are filled from their canonical row here, for the ordering + # reasons in fill_aliases: after the points are final, before inheritance + # would hand an ISO-3166-2 state a country-level coordinate. + aliases = fill_aliases(gazdir, rows) + for r in rows: + if r.get("same_as") and r["latitude"]: + stats[r["area_level"]]["alias"] += 1 + # Pass 3: inherit downward for anything still unresolved. # # This walks parent-to-child in level order so it completes in one sweep. A @@ -800,11 +809,18 @@ def run(source, gazdir, cache, with_geometry, inherit, simplify): w.writeheader() w.writerows(rows) + # Restated after the alias pass: write_polygons measures the file before + # the alias outlines are appended, so its figure would understate it. + geojsonl = gazdir / "areas.geojsonl" + if geojsonl.exists() and polygons.get("features"): + polygons["size_bytes"] = geojsonl.stat().st_size + polygons["features"] += aliases.get("outlines_repeated", 0) + containment = check_containment(rows) if with_geometry: write_geometry(conf, gazdir, cache, rows) update_manifest(source, conf, gazdir, stats, vintages, dates, drift, - inherit, containment, polygons) + inherit, containment, polygons, aliases) report(areas_csv, stats, drift, conf, containment, polygons) return stats @@ -870,6 +886,120 @@ def check_containment(rows): return {"checked": checked, "violations": len(outliers), "outliers": outliers} +def fill_aliases(gazdir, rows): + """Copy geometry onto alias rows, and repeat their outline under their key. + + The whole point of an alias row is that a publisher sending ISO-3166-2 gets + the same answer as one sending LGD. Doing that by reference would push + same_as resolution into every consumer; doing it by copy keeps the lookup a + single exact match on (code_scheme, area_code, area_level), which is all + the ONIX plugin should have to implement. same_as survives in the CSV for + provenance and for validation, not because anything needs to follow it. + + Runs after write_polygons, so the point it copies is the corrected one, and + before inheritance, so an ISO row takes its state's real geometry instead + of inheriting a country-level point from ISO-3166-1/IN. + """ + aliases = [r for r in rows if r.get("same_as")] + if not aliases: + return {"rows": 0} + + by_key = {} + for r in rows: + by_key[f'{r["code_scheme"]}/{r["area_code"]}/{r["area_level"]}'] = r + + # Resolve each chain to the row that actually owns geometry. A withdrawn ISO + # code points at a current one, which points at LGD, so two hops is the + # legitimate maximum; more than that is a build error, not a hierarchy. + resolved_to, broken, cyclic = {}, [], [] + for r in aliases: + seen, cur = set(), r + while cur is not None and cur.get("same_as"): + key = cur["same_as"] + if key in seen or len(seen) > 4: + cyclic.append(f'{r["code_scheme"]}/{r["area_code"]}') + cur = None + break + seen.add(key) + nxt = by_key.get(key) + if nxt is None: + broken.append(f'{r["code_scheme"]}/{r["area_code"]} -> {key}') + cur = None + break + cur = nxt + if cur is not None and cur is not r: + resolved_to[id(r)] = cur + + # One pass over the outlines, keeping only the geometries an alias needs. + # 43 state polygons is a few MB; holding the whole file would not be. + wanted = set() + for r in aliases: + tgt = resolved_to.get(id(r)) + if tgt is not None and tgt.get("has_polygon") == "true": + wanted.add(f'{tgt["code_scheme"]}/{tgt["area_code"]}/' + f'{tgt["area_level"]}') + + geoms = {} + out = gazdir / "areas.geojsonl" + if wanted and out.exists(): + for line in open(out, encoding="utf-8"): + if not line.strip(): + continue + feat = json.loads(line) + pr = feat.get("properties", {}) + key = f'{pr.get("code_scheme")}/{pr.get("area_code")}/' \ + f'{pr.get("area_level")}' + if key in wanted: + geoms[key] = feat + + filled = with_poly = 0 + with open(out, "a", encoding="utf-8") as fout: + for r in aliases: + tgt = resolved_to.get(id(r)) + if tgt is None: + continue + for col in GEO_COLUMNS: + r[col] = tgt[col] + filled += 1 + + key = f'{tgt["code_scheme"]}/{tgt["area_code"]}/' \ + f'{tgt["area_level"]}' + feat = geoms.get(key) + if feat is None: + # No outline to copy, so the flag has to come back down or the + # CSV would promise a feature this file does not contain. + r["has_polygon"] = "false" + continue + fout.write(json.dumps({ + "type": "Feature", + "properties": {"code_scheme": r["code_scheme"], + "area_code": r["area_code"], + "area_level": r["area_level"], + "area_name": r["area_name"], + "geometry_source": + feat["properties"].get("geometry_source", + ""), + "same_as": r["same_as"]}, + "geometry": feat["geometry"], + }, separators=(",", ":")) + "\n") + with_poly += 1 + + log(f"aliases {filled:,} rows given geometry, " + f"{with_poly:,} outlines repeated") + if broken: + log(f" {len(broken):,} same_as targets do not exist: " + f"{', '.join(broken[:5])}" + (" ..." if len(broken) > 5 else "")) + if cyclic: + log(f" {len(cyclic):,} same_as chains cycle or run too deep: " + f"{', '.join(cyclic[:5])}" + (" ..." if len(cyclic) > 5 else "")) + return { + "rows": filled, + "outlines_repeated": with_poly, + "broken_targets": broken, + "cyclic_chains": cyclic, + } + + def write_polygons(conf, gazdir, cache, rows, tolerance, resolved): """Emit areas.geojsonl: one simplified polygon per directly-joined area. @@ -1065,7 +1195,7 @@ def write_geometry(conf, gazdir, cache, rows): def update_manifest(source, conf, gazdir, stats, vintages, dates, drift, - inherit, containment, polygons): + inherit, containment, polygons, aliases): path = gazdir / "manifest.json" m = json.loads(path.read_text()) if path.exists() else {} m["geometry_populated"] = True @@ -1090,21 +1220,24 @@ def update_manifest(source, conf, gazdir, stats, vintages, dates, drift, "name_drift_count": len(drift), "parent_containment_check": containment, "polygons": polygons, + "aliases": aliases, } path.write_text(json.dumps(m, indent=2) + "\n") def report(areas_csv, stats, drift, conf, containment, polygons): print(f"\n{areas_csv}") - print(f"\n{'level':<12}{'rows':>8}{'joined':>9}{'inherited':>11}" - f"{'empty':>8}{'joined %':>10}") + print(f"\n{'level':<12}{'rows':>8}{'joined':>9}{'alias':>8}" + f"{'inherited':>11}{'empty':>8}{'joined %':>10}") for level in LEVEL_ORDER + [k for k in stats if k not in LEVEL_ORDER]: s = stats.get(level) if not s: continue - pct = 100.0 * s["matched"] / s["total"] if s["total"] else 0.0 + own = s["total"] - s.get("alias", 0) + pct = 100.0 * s["matched"] / own if own else 0.0 print(f"{level:<12}{s['total']:>8,}{s['matched']:>9,}" - f"{s['inherited']:>11,}{s['empty']:>8,}{pct:>9.1f}%") + f"{s.get('alias', 0):>8,}{s['inherited']:>11,}" + f"{s['empty']:>8,}{pct:>9.1f}%") c = containment if c["checked"]: diff --git a/tools/area-lookups/validate.py b/tools/area-lookups/validate.py index af4744f1..5f0b83c4 100644 --- a/tools/area-lookups/validate.py +++ b/tools/area-lookups/validate.py @@ -31,7 +31,7 @@ "snapshot_date", "source_url", "latitude", "longitude", "point_method", "bbox_west", "bbox_south", "bbox_east", "bbox_north", - "geometry_source", "boundary_vintage", "has_polygon", + "geometry_source", "boundary_vintage", "has_polygon", "same_as", ] LEVELS = {"Country", "State", "District", "Block", "Village", "PostalCode"} @@ -231,6 +231,96 @@ def check_parents(rows, keys, rep): sample(mismatched)) +def check_aliases(rows, areas_dir, rep): + """Judge the alias rows, whose whole promise is that they need no follow-up. + + An ISO-3166-2 row exists so a publisher using ISO codes resolves to the + same geometry as one using LGD. That promise is only kept if the alias row + carries the geometry itself, so the test that matters is not "does same_as + point somewhere" but "would a consumer that ignores same_as entirely still + get the right answer". Everything below is written from that angle. + """ + by_key = {} + for r in rows: + by_key[f'{r["code_scheme"]}/{r["area_code"]}/{r["area_level"]}'] = r + aliases = [r for r in rows if r.get("same_as")] + if not aliases: + rep.warn("no alias rows present", + "an ISO-3166-2 reference will not resolve") + return 0 + + geo = ["latitude", "longitude", "bbox_west", "bbox_south", + "bbox_east", "bbox_north", "has_polygon"] + unresolved, cyclic, mismatch, empty, selfref = [], [], [], [], [] + + for r in aliases: + tag = f'{r["code_scheme"]}/{r["area_code"]}/{r["area_level"]}' + if r["same_as"] == tag: + selfref.append(tag) + continue + + # A cycle and a dangling target are different faults and are reported + # separately: every row in a cycle exists, so calling it unresolved + # would send a reader looking for a missing row that is not missing. + seen, cur, looped = set(), r, False + while cur is not None and cur.get("same_as"): + key = cur["same_as"] + if key in seen or len(seen) > 4: + looped = True + break + seen.add(key) + cur = by_key.get(key) + if looped: + cyclic.append(tag) + continue + if cur is None: + unresolved.append(f'{tag} -> {r["same_as"]}') + continue + + # The substantive check: an alias must already hold what its target + # holds, because the plugin is not going to walk the chain. + diff = [c for c in geo if r[c] != cur[c]] + if diff: + mismatch.append(f'{tag} differs from {r["same_as"]} in ' + f'{",".join(diff)}') + if not r["latitude"]: + empty.append(tag) + + rep.check(not selfref, "no alias points at itself", sample(selfref)) + rep.check(not unresolved, "every same_as resolves to a real row", + sample(unresolved)) + rep.check(not cyclic, "no same_as chain cycles or runs too deep", + sample(cyclic)) + rep.check(not mismatch, + "alias geometry is copied, not referenced", sample(mismatch)) + rep.check(not empty, "no alias row was left without a coordinate", + sample(empty)) + + # And the outline has to be reachable under the alias's own key too, or + # has_polygon=true is a promise areas.geojsonl does not keep. + path = areas_dir / "areas.geojsonl" + if path.exists(): + present = set() + for line in open(path, encoding="utf-8"): + if not line.strip(): + continue + try: + pr = json.loads(line).get("properties", {}) + except json.JSONDecodeError: + continue + present.add(f'{pr.get("code_scheme")}/{pr.get("area_code")}/' + f'{pr.get("area_level")}') + absent = [f'{r["code_scheme"]}/{r["area_code"]}/{r["area_level"]}' + for r in aliases if r["has_polygon"] == "true" + and f'{r["code_scheme"]}/{r["area_code"]}/' + f'{r["area_level"]}' not in present] + rep.check(not absent, + "every alias claiming a polygon has one under its own key", + sample(absent)) + + return len(aliases) + + def check_polygons(rows, areas_dir, rep): path = areas_dir / "areas.geojsonl" flags = {r["has_polygon"] for r in rows} @@ -338,10 +428,12 @@ def main(): check_coordinates(rows, rep) check_parents(rows, keys, rep) polys = check_polygons(rows, areas_dir, rep) + nalias = check_aliases(rows, areas_dir, rep) print(f"{areas_csv}") print(f" {len(rows):,} rows, {len(columns)} columns" - + (f", {polys:,} polygons" if polys else "")) + + (f", {polys:,} polygons" if polys else "") + + (f", {nalias:,} alias rows" if nalias else "")) print(f" {rep.checks} checks run") if rep.warnings: From 967f9b85cba0e901b917732da1aad3320e3d2153 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 16:05:49 +0530 Subject: [PATCH 11/12] docs #10: add integration steps to the area lookup README The README covered how to refresh the snapshot but not how to consume it, so the resolution rules that matter lived only in the code: key on three fields and never on areaName, infer areaLevel only where the scheme allows it, gate on has_polygon, and reject inherited points. Replaces the ISO-3166-2 prose with five steps and a three-line example. --- tools/area-lookups/README.md | 56 +++++++++++++++++++++++------------- 1 file changed, 36 insertions(+), 20 deletions(-) diff --git a/tools/area-lookups/README.md b/tools/area-lookups/README.md index 5c2cb81b..7735b01a 100644 --- a/tools/area-lookups/README.md +++ b/tools/area-lookups/README.md @@ -18,6 +18,34 @@ output is not usable, so the refresh is gated on it. Add `--source lgd` to `join_geometry.py` for Block coordinates and 6,967 polygons. +## Integrate + +Cache both files at startup as maps keyed on +`(code_scheme, area_code, area_level)`. Then per `AdministrativeAreaReference`: + +1. **Key on those three fields only.** Ignore `areaName` — 117 areas are + spelled differently upstream. A missing `areaLevel` is safe to infer for + `ISO-3166-1` (Country), `ISO-3166-2` (State) and `IN-PIN` (PostalCode); + never for `LGD`, whose codes repeat across levels. +2. Look the key up in `areas.csv`. +3. If `has_polygon` is `true`, return `areas.geojsonl[key]` — already a valid + Beckn `GeoJSONGeometry`, no conversion needed. +4. Otherwise fall back to the point, but only if `point_method` is not + `inherited:*`, which is an ancestor's coordinate rather than this area's. + GeoJSON order is `[longitude, latitude]`. +5. Append the geometry as a new `coverageAreas` item; keep the coded one, since + each item is a `oneOf`. + +```python +key = (ref["codeScheme"], ref["areaCode"], ref["areaLevel"]) +row = areas[key] # areas.csv +geom = shapes[key] if row["has_polygon"] == "true" else None +``` + +`same_as` needs no handling: alias rows carry their own copy of the geometry. +Skip them only if you scan every feature instead of looking up a key, or a +state will match twice. + --- # Appendix — sources and columns @@ -40,27 +68,15 @@ Two files, joined on the same `(code_scheme, area_code, area_level)` key: unique within a level, not across levels, and 765 codes in this file name a State, a District and a Block at once. -## Resolving an ISO-3166-2 code - -Every OpenAgriNet example that names a State uses `ISO-3166-2` rather than -`LGD`, so the file carries a row per state under both schemes: `IN-KA/State` -alongside `LGD/29/State`. The 7 codes ISO has withdrawn are present too, since -publishers still send them — `IN-TG` was retired in favour of `IN-TS` in -November 2023, and this repository's own examples used it. - -An alias row holds its **own copy** of the point, box and outline, identical to -the row it mirrors. That is deliberate: a consumer resolving an ISO code does -one exact-match lookup on `(code_scheme, area_code, area_level)` and is done. -Nothing has to follow `same_as`, which exists to record where the geometry came -from and to let `validate.py` prove the copy has not drifted. - -The cost is that the 43 state outlines appear twice in `areas.geojsonl`, which -is 2.9 MB of its 14.3 MB. Code scanning every feature for containment should -therefore skip rows with a non-empty `same_as`, or it will report the same -state twice. +Every state is present under both schemes — `ISO-3166-2/IN-KA/State` alongside +`LGD/29/State` — because every OpenAgriNet example that names a State uses ISO +codes. The 7 codes ISO has withdrawn are carried too, as publishers still send +them. ISO codes States and Union Territories only, so District and Block stay +LGD-only. -ISO assigns codes to States and Union Territories only, so District and Block -remain LGD-only. There is nothing below State to translate. +Those alias rows duplicate their state's outline, 2.9 MB of the 14.3 MB file. +`same_as` records which row an alias mirrors, and `validate.py` proves the copy +has not drifted. `has_polygon` says whether an outline exists, so a consumer can tell from the CSV alone without opening the second file. It is `false` for PostalCode at every From bbef871b699a16de68ee196b34cb32119bcf8a2e Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Thu, 3 Sep 2026 16:06:25 +0530 Subject: [PATCH 12/12] chore: ignore local .claude-flow state .DS_Store and .claude were already ignored, but gitignore patterns match exact names, so .claude did not cover .claude-flow. Two directories of per-session scratch were surfacing as untracked; removed, neither held tracked content. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 618e9b42..640eb8ed 100644 --- a/.gitignore +++ b/.gitignore @@ -159,6 +159,7 @@ test_request.json .codex .claude +.claude-flow/ # catalogPublish handler's local output root (config/local-beckn-one-bap.yaml) /catalog/ \ No newline at end of file